summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-11-21 18:18:06 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-11-21 18:18:06 +0100
commit4020858e2a7ca3557d6ddfa40ceec0a191ef2605 (patch)
tree7aa6747d6470b24ac384987610f8416a212e1b50
parentb748bc695362b353af08a9d9019876761500012f (diff)
downloadcoursera-4020858e2a7ca3557d6ddfa40ceec0a191ef2605.zip
coursera-4020858e2a7ca3557d6ddfa40ceec0a191ef2605.tar.gz
Algorithms-II : 1-WordNet: add prototypes and data
-rw-r--r--Algorithms/Part-II/1-WordNet/Outcast.java27
-rw-r--r--Algorithms/Part-II/1-WordNet/SAP.java65
-rw-r--r--Algorithms/Part-II/1-WordNet/WordNet.java58
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph-ambiguous-ancestor.txt13
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph-wordnet.txt75136
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph1.txt13
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph2.txt8
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph3.txt17
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph4.txt12
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph5.txt19
-rw-r--r--Algorithms/Part-II/1-WordNet/data/digraph6.txt10
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms.txt82192
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms100K.txt82192
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms11AmbiguousAncestor.txt12
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms200K.txt82192
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms300K.txt82192
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms6TwoAncestors.txt5
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms8ManyAncestors.txt7
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernyms8WrongBFS.txt7
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernymsInvalidCycle.txt2
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernymsInvalidTwoRoots.txt1
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernymsManyPathsOneAncestor.txt10
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernymsPath15.txt14
-rw-r--r--Algorithms/Part-II/1-WordNet/data/hypernymsTree15.txt14
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast10.txt11
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast10a.txt10
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast11.txt11
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast12.txt12
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast12a.txt12
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast17.txt17
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast2.txt2
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast20.txt20
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast29.txt29
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast3.txt3
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast4.txt4
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast5.txt5
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast5a.txt5
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast7.txt7
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast8.txt8
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast8a.txt8
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast8b.txt8
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast8c.txt8
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast9.txt9
-rw-r--r--Algorithms/Part-II/1-WordNet/data/outcast9a.txt9
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsets.txt82192
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsets11.txt11
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsets15.txt15
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsets3.txt3
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsets6.txt6
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsets8.txt8
-rw-r--r--Algorithms/Part-II/1-WordNet/data/synsetsManyPathsOneAncestor.txt11
-rw-r--r--Algorithms/Part-II/1-WordNet/hypernyms.txt82192
-rwxr-xr-xAlgorithms/Part-II/1-WordNet/run.sh18
-rw-r--r--Algorithms/Part-II/1-WordNet/synsets.txt82192
54 files changed, 651064 insertions, 0 deletions
diff --git a/Algorithms/Part-II/1-WordNet/Outcast.java b/Algorithms/Part-II/1-WordNet/Outcast.java
new file mode 100644
index 0000000..296fd79
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/Outcast.java
@@ -0,0 +1,27 @@
+/* vim: set expandtab tabstop=4 shiftwidth=4 : */
+
+public class Outcast
+{
+ // constructor takes a WordNet object
+ public Outcast(WordNet wordnet)
+ {
+ }
+
+ // given an array of WordNet nouns, return an outcast
+ public String outcast(String[] nouns)
+ {
+ return "";
+ }
+
+ // for unit testing of this class (such as the one below)
+ public static void main(String[] args)
+ {
+ WordNet wordnet = new WordNet(args[0], args[1]);
+ Outcast outcast = new Outcast(wordnet);
+ for (int t = 2; t < args.length; t++) {
+ String[] nouns = In.readStrings(args[t]);
+ StdOut.println(args[t] + ": " + outcast.outcast(nouns));
+ }
+ }
+}
+
diff --git a/Algorithms/Part-II/1-WordNet/SAP.java b/Algorithms/Part-II/1-WordNet/SAP.java
new file mode 100644
index 0000000..864b8d0
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/SAP.java
@@ -0,0 +1,65 @@
+/* vim: set expandtab tabstop=4 shiftwidth=4 : */
+
+public class SAP
+{
+ // data type use space proportional to E + V
+
+ // all methods take time at most proportional to E + V in the worst case
+
+ // constructor takes a digraph (not necessarily a DAG)
+ public SAP(Digraph G)
+ {
+ }
+
+ // length of shortest ancestral path between v and w
+ // -1 if no such path
+ public int length(int v, int w)
+ {
+ // throws java.lang.IndexOutOfBoundsException if args not in [0 ; G.V()-1]
+
+ return -1;
+ }
+
+ // a common ancestor of v and w that participates in a shortest ancestral path
+ // -1 if no such path
+ public int ancestor(int v, int w)
+ {
+ // throws java.lang.IndexOutOfBoundsException if args not in [0 ; G.V()-1]
+
+ return -1;
+ }
+
+ // length of shortest ancestral path between any vertex in v and any vertex in w
+ // -1 if no such path
+ public int length(Iterable<Integer> v, Iterable<Integer> w)
+ {
+ // throws java.lang.IndexOutOfBoundsException if args not in [0 ; G.V()-1]
+
+ return -1;
+ }
+
+ // a common ancestor that participates in shortest ancestral path
+ // -1 if no such path
+ public int ancestor(Iterable<Integer> v, Iterable<Integer> w)
+ {
+ // throws java.lang.IndexOutOfBoundsException if args not in [0 ; G.V()-1]
+
+ return -1;
+ }
+
+ // for unit testing of this class (such as the one below)
+ public static void main(String[] args)
+ {
+ In in = new In(args[0]);
+ Digraph G = new Digraph(in);
+ SAP sap = new SAP(G);
+ while (!StdIn.isEmpty()) {
+ int v = StdIn.readInt();
+ int w = StdIn.readInt();
+ int length = sap.length(v, w);
+ int ancestor = sap.ancestor(v, w);
+ StdOut.printf("length = %d, ancestor = %d\n", length, ancestor);
+ }
+ }
+}
+
diff --git a/Algorithms/Part-II/1-WordNet/WordNet.java b/Algorithms/Part-II/1-WordNet/WordNet.java
new file mode 100644
index 0000000..830ccdf
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/WordNet.java
@@ -0,0 +1,58 @@
+/* vim: set expandtab tabstop=4 shiftwidth=4 : */
+
+public class WordNet
+{
+ // data type space linear in the input size
+
+ // constructor takes the name of the two input files
+ public WordNet(String synsets, String hypernyms)
+ {
+ // time linearithmic in the input size
+
+ // throw a java.lang.IllegalArgumentException
+ // if the input does not correspond to a rooted DAG
+ }
+
+ // the set of nouns (no duplicates), returned as an Iterable
+ public Iterable<String> nouns()
+ {
+ return null;
+ }
+
+ // is the word a WordNet noun?
+ public boolean isNoun(String word)
+ {
+ // run in time logarithmic in the number of nouns
+
+ return false;
+ }
+
+ // distance between nounA and nounB (defined below)
+ public int distance(String nounA, String nounB)
+ {
+ // run in time linear in the size of the WordNet digraph
+
+ // throw java.lang.IllegalArgumentException
+ // unless both of the noun arguments are WordNet nouns
+
+ return 0;
+ }
+
+ // a synset that is the common ancestor of nounA and nounB
+ // in a shortest ancestral path
+ public String sap(String nounA, String nounB)
+ {
+ // run in time linear in the size of the WordNet digraph
+
+ // throw java.lang.IllegalArgumentException
+ // unless both of the noun arguments are WordNet nouns
+
+ return "";
+ }
+
+ // for unit testing of this class
+ public static void main(String[] args)
+ {
+ }
+}
+
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph-ambiguous-ancestor.txt b/Algorithms/Part-II/1-WordNet/data/digraph-ambiguous-ancestor.txt
new file mode 100644
index 0000000..e9ccc4a
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph-ambiguous-ancestor.txt
@@ -0,0 +1,13 @@
+11
+11
+ 0 1
+ 1 2
+ 2 3
+ 4 2
+ 5 4
+ 6 5
+ 6 7
+ 8 7
+ 9 8
+10 9
+ 0 10
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph-wordnet.txt b/Algorithms/Part-II/1-WordNet/data/digraph-wordnet.txt
new file mode 100644
index 0000000..70e1d76
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph-wordnet.txt
@@ -0,0 +1,75136 @@
+81426
+75134
+0 26075
+1 57714
+2 36103
+4 36103
+5 36103
+6 36103
+7 36103
+8 36103
+9 21894
+10 36103
+11 36103
+12 36103
+13 36103
+14 36103
+15 36103
+16 36103
+17 21894
+18 45550
+19 78483
+20 61057
+22 55659
+23 41431
+24 58463
+25 64733
+26 35437
+27 52727
+28 26718
+29 50385
+31 80781
+32 53328
+33 72767
+34 24335
+35 9465
+36 70919
+37 26718
+38 22764
+39 31638
+40 22799
+41 69822
+42 49351
+42 49876
+44 21752
+45 44300
+46 23387
+47 55220
+48 30578
+50 37959
+51 70585
+52 20485
+53 25262
+54 45790
+62 33267
+63 50025
+64 69285
+68 46346
+69 37258
+75 25544
+77 46595
+80 4148
+82 4149
+83 510
+84 511
+85 74586
+86 63831
+87 1580
+87 40462
+89 8141
+90 42277
+91 54465
+92 29741
+94 23585
+98 42277
+101 37258
+103 38084
+104 47665
+105 24231
+106 20580
+107 20580
+110 6867
+111 67657
+112 23775
+113 26178
+114 61675
+115 29741
+116 42277
+117 66676
+118 22530
+119 23534
+120 42273
+121 42277
+123 29159
+124 23533
+125 22530
+126 26178
+127 26174
+128 26184
+130 37112
+131 37111
+132 7624
+134 23534
+136 49818
+137 23534
+139 71701
+140 75682
+141 42277
+142 8477
+143 16839
+144 37112
+145 54465
+146 23776
+147 42277
+148 42273
+149 31614
+150 37112
+152 54255
+153 56503
+154 56504
+155 31614
+156 23290
+159 23533
+160 26178
+161 22210
+162 54465
+163 67657
+164 26178
+165 23776
+166 56504
+167 32241
+168 41669
+169 54255
+170 23534
+171 22798
+171 57458
+172 32241
+173 22421
+174 22530
+175 37258
+176 37257
+177 41669
+178 23776
+179 24461
+180 22530
+181 22530
+182 31614
+183 26178
+189 23534
+192 55644
+194 81317
+200 37258
+202 75418
+203 9465
+205 45303
+208 23534
+209 23533
+210 61014
+213 67657
+215 37112
+216 54465
+218 41668
+219 41669
+223 8397
+224 37258
+228 5168
+229 78956
+230 11311
+231 54255
+232 35723
+236 21394
+237 23447
+238 69181
+240 4047
+241 4051
+242 4040
+244 23534
+247 31542
+249 23776
+250 56504
+252 11774
+256 79427
+257 26178
+258 48207
+261 7624
+262 823
+265 62299
+266 54465
+267 26174
+268 22530
+269 24462
+270 24464
+271 41054
+274 37112
+275 13156
+277 21834
+278 7630
+279 55234
+280 37258
+281 67657
+282 42277
+284 26536
+285 1372
+286 9085
+287 32081
+288 48559
+289 56454
+291 62299
+293 49777
+294 624
+295 27484
+296 3728
+297 76740
+298 34005
+299 10250
+300 34999
+301 42747
+302 42747
+303 42747
+304 39544
+305 60444
+306 2911
+307 58033
+308 80456
+309 21368
+310 54269
+311 54691
+312 12287
+313 58884
+314 54269
+315 42747
+316 18616
+317 80442
+318 30017
+319 48252
+320 5710
+321 17271
+322 32311
+323 46713
+324 57521
+325 46595
+326 76580
+327 23776
+329 66675
+330 26178
+331 43845
+332 43849
+333 43846
+335 23776
+336 46595
+337 53056
+338 21379
+339 29741
+342 26178
+343 47679
+344 23776
+345 8396
+347 66676
+348 7531
+349 41669
+350 56504
+351 31614
+353 21835
+354 63475
+355 42273
+356 42277
+360 26178
+364 24462
+365 24464
+366 56504
+367 29741
+368 62299
+371 12342
+372 8397
+375 54465
+376 54464
+377 54465
+378 32629
+379 21557
+380 21394
+382 32629
+383 36209
+384 12770
+386 75804
+387 26178
+388 29740
+389 26178
+391 23776
+392 10080
+393 56415
+394 66496
+396 16691
+399 8477
+400 20199
+406 12565
+408 12566
+409 624
+411 51957
+414 30769
+417 425
+420 31533
+421 43868
+422 34651
+423 34649
+424 66403
+425 624
+426 28062
+428 26178
+429 26174
+431 6309
+432 9002
+433 56454
+436 43846
+437 62908
+438 62908
+444 69285
+445 4051
+445 47693
+447 41779
+448 43845
+449 43846
+450 42277
+451 42273
+453 26178
+455 62658
+456 37258
+457 26174
+458 26178
+459 54465
+460 54465
+462 26174
+463 58238
+465 22530
+466 22530
+469 37112
+470 42277
+471 6995
+472 43846
+473 26178
+474 26178
+475 42277
+476 53057
+477 37518
+478 67657
+479 8949
+480 6214
+483 47665
+492 69573
+493 58742
+494 62988
+495 53161
+496 23534
+497 23533
+501 293
+502 30254
+503 504
+504 56454
+505 54465
+506 48207
+508 510
+509 511
+510 8949
+511 746
+518 56504
+519 56503
+520 31614
+521 22670
+522 48129
+523 4047
+527 30850
+528 80487
+529 59894
+533 68972
+534 81025
+536 69181
+537 53056
+538 37258
+539 47291
+540 47291
+541 21783
+542 21783
+543 21783
+544 66675
+545 29741
+546 53057
+548 2124
+549 21894
+550 46828
+551 53056
+553 56504
+554 54465
+555 42273
+556 42277
+557 42277
+559 54465
+563 22420
+564 51620
+565 30132
+566 39782
+567 70688
+569 51882
+570 30921
+571 80853
+572 62299
+573 56804
+576 36569
+577 70098
+578 23776
+579 23534
+580 45071
+581 37112
+582 53056
+584 1372
+585 19094
+587 29741
+589 35144
+590 37258
+591 22210
+592 63651
+594 43846
+595 29740
+596 29741
+598 53056
+601 79158
+602 41669
+603 80778
+604 57314
+606 60444
+607 71099
+608 26178
+609 23776
+610 42277
+611 66676
+613 23775
+614 22210
+615 22209
+616 42273
+617 42277
+618 67657
+619 5885
+621 75418
+624 36569
+625 6025
+626 36569
+627 23751
+629 22088
+631 41545
+632 41545
+633 5168
+634 60530
+635 23751
+636 60530
+638 57489
+640 28333
+641 32211
+644 21379
+645 21861
+646 2911
+647 23201
+648 24492
+649 24883
+650 25181
+651 25540
+652 26241
+653 26294
+654 25399
+655 27038
+656 28225
+657 49234
+658 30850
+659 32168
+660 33933
+661 33948
+662 34660
+663 34717
+664 34780
+665 4818
+666 36976
+667 36976
+668 79153
+669 39294
+670 39363
+671 39598
+672 74119
+673 42392
+674 48265
+675 72848
+676 43046
+677 43389
+678 23165
+679 64755
+680 45097
+681 47665
+682 77702
+683 46649
+684 12971
+685 47208
+686 62736
+686 8486
+687 48326
+688 48371
+689 74780
+690 52107
+691 53513
+692 77695
+693 54259
+694 54281
+695 54813
+696 54925
+697 55470
+698 56082
+699 56224
+700 60344
+701 56796
+702 58884
+703 43467
+704 52678
+705 60554
+706 61321
+707 67245
+708 48554
+709 23658
+710 66116
+711 35093
+712 39363
+713 80487
+714 77362
+715 42875
+716 67423
+717 56792
+718 70406
+719 71340
+720 71359
+721 71382
+722 74119
+723 73054
+724 64372
+725 62262
+726 77702
+727 58576
+728 77993
+729 37371
+730 79796
+731 79800
+732 79826
+733 69046
+734 26152
+735 80306
+736 80310
+737 80419
+738 80720
+739 80832
+740 45708
+741 23560
+742 57483
+743 40888
+744 35493
+745 20518
+746 57521
+747 49777
+747 61326
+748 6240
+749 16691
+750 42277
+751 53057
+752 42273
+753 11869
+754 69285
+756 42277
+757 42273
+758 54465
+759 78968
+760 22530
+761 70103
+764 23534
+765 67657
+766 31614
+767 31177
+768 22530
+769 42277
+770 57315
+771 66676
+772 66675
+773 22209
+774 62299
+775 37112
+779 63923
+780 37111
+781 67657
+783 20724
+784 42273
+785 15069
+786 15066
+787 15068
+788 42277
+789 23534
+790 22530
+791 37111
+792 37112
+793 23776
+794 67657
+795 2911
+796 37112
+797 23534
+798 67657
+800 56504
+801 39191
+803 23776
+804 31614
+805 42273
+806 42277
+807 26178
+808 23534
+809 8949
+810 22530
+811 37258
+812 26178
+813 26174
+814 9002
+818 33273
+819 41547
+821 23282
+822 23448
+823 7623
+825 56415
+826 80973
+827 56416
+830 33296
+839 67657
+841 6309
+842 56708
+843 62302
+844 23533
+847 23534
+848 2911
+849 2911
+852 72457
+853 56504
+854 38872
+855 22210
+856 26713
+857 74893
+858 41669
+859 54255
+860 37112
+861 67657
+863 19726
+864 72473
+865 45683
+866 60714
+868 2043
+870 6907
+871 31614
+872 72075
+873 62701
+874 6309
+877 891
+878 15066
+879 3518
+880 15068
+881 15069
+882 40888
+883 35493
+884 20518
+885 624
+886 881
+887 6863
+888 6043
+889 6043
+890 6043
+891 6025
+892 7410
+893 40010
+894 21124
+895 37632
+897 293
+898 56454
+899 897
+901 38087
+902 33327
+903 38084
+905 22877
+906 66675
+908 42277
+909 19733
+910 42273
+911 22530
+912 80977
+913 66676
+915 26178
+916 26174
+917 26174
+918 56504
+919 51545
+920 22530
+921 42277
+923 60841
+930 61675
+931 66675
+932 54255
+933 54254
+934 65040
+936 73125
+937 49284
+938 23533
+939 56416
+940 56504
+941 41669
+942 66676
+943 23534
+944 42273
+945 22927
+946 56416
+947 56415
+948 23534
+949 22530
+950 22530
+954 26178
+955 22530
+956 22530
+957 26174
+966 39102
+967 39101
+968 23776
+969 42273
+970 23776
+971 23534
+972 53057
+973 23776
+974 23534
+975 31614
+976 56708
+977 56707
+978 62302
+979 23534
+982 31614
+983 67657
+984 22530
+985 26178
+986 67657
+987 60530
+989 23569
+990 54465
+992 42277
+996 19733
+998 54465
+999 54464
+1000 54465
+1002 23776
+1008 54465
+1013 16692
+1014 71766
+1016 54465
+1017 1471
+1018 44118
+1019 1472
+1021 2911
+1022 23534
+1025 23696
+1026 31614
+1027 23533
+1028 23533
+1029 23534
+1030 26178
+1032 23534
+1033 53056
+1034 53057
+1035 43849
+1037 23533
+1038 67657
+1039 23534
+1040 67657
+1041 56504
+1042 54465
+1043 54464
+1044 56416
+1045 56415
+1046 68048
+1047 37111
+1048 37112
+1049 54465
+1050 26174
+1051 22530
+1052 42277
+1053 42273
+1054 23533
+1059 29741
+1060 25648
+1061 4040
+1062 37503
+1062 4040
+1064 624
+1066 56792
+1071 7668
+1072 5168
+1073 28604
+1074 63415
+1076 26178
+1077 26174
+1078 22530
+1080 26178
+1081 49777
+1084 37111
+1087 26178
+1091 26178
+1092 16690
+1093 56792
+1096 80963
+1102 29002
+1103 32253
+1104 50924
+1105 16691
+1106 21971
+1107 58492
+1108 37258
+1109 34897
+1110 34897
+1111 37258
+1112 68759
+1113 56503
+1114 67657
+1115 31614
+1121 62302
+1122 67656
+1124 16691
+1125 68993
+1126 16690
+1127 26178
+1129 23534
+1130 22530
+1132 14626
+1132 510
+1133 511
+1137 46594
+1138 37112
+1139 747
+1140 746
+1142 5168
+1143 56416
+1145 7624
+1146 823
+1147 64349
+1148 37258
+1149 31614
+1152 31614
+1153 54465
+1154 26178
+1155 48720
+1157 52280
+1158 42277
+1159 31614
+1160 56415
+1162 59749
+1166 30570
+1167 45711
+1168 54465
+1169 23533
+1170 23776
+1171 54465
+1172 54465
+1173 54465
+1174 37258
+1175 23776
+1177 26178
+1178 26174
+1180 37112
+1181 31614
+1182 29741
+1183 26178
+1184 23202
+1186 62299
+1187 55343
+1189 23706
+1192 23533
+1194 42277
+1195 47613
+1196 56454
+1197 17275
+1198 42273
+1199 23534
+1200 23533
+1201 7624
+1203 21205
+1205 58779
+1206 56416
+1207 56415
+1210 45149
+1211 61493
+1212 26178
+1213 23534
+1214 23776
+1215 37112
+1216 23534
+1217 23776
+1222 47693
+1222 75978
+1224 49777
+1227 42273
+1228 2988
+1229 2989
+1230 23534
+1231 29741
+1232 42277
+1233 56504
+1234 56504
+1238 37112
+1239 37111
+1240 62302
+1242 37258
+1243 37503
+1244 53616
+1245 61541
+1248 42277
+1250 66676
+1251 23626
+1252 35649
+1253 62262
+1254 80306
+1255 624
+1258 26954
+1259 624
+1262 51540
+1264 23533
+1265 23534
+1267 25275
+1268 27631
+1270 5168
+1273 1372
+1274 40462
+1275 9002
+1276 21971
+1277 4041
+1279 56454
+1280 37112
+1281 43846
+1282 21375
+1283 21375
+1284 21375
+1285 43846
+1286 37503
+1287 1851
+1288 15068
+1289 15069
+1292 37258
+1296 21394
+1297 12770
+1300 80514
+1304 36370
+1306 23776
+1308 62299
+1310 26174
+1311 26178
+1314 23534
+1317 61675
+1318 41669
+1321 41053
+1323 22530
+1324 37112
+1327 23569
+1328 56504
+1329 56504
+1331 54465
+1332 3531
+1333 63831
+1337 8396
+1338 37112
+1340 22209
+1341 22210
+1342 80973
+1343 80977
+1344 80977
+1345 48129
+1346 30521
+1348 30521
+1349 56752
+1351 31614
+1352 37111
+1353 37112
+1354 31614
+1355 37911
+1356 64350
+1357 49284
+1358 23585
+1359 4047
+1360 23585
+1360 68768
+1363 8149
+1370 20724
+1372 36569
+1372 61326
+1373 624
+1375 26376
+1376 34005
+1377 10250
+1378 34999
+1379 23532
+1380 49945
+1381 25599
+1382 56699
+1383 59794
+1384 25399
+1385 72848
+1386 70406
+1387 42770
+1388 23533
+1389 54255
+1391 8396
+1392 26178
+1393 69157
+1395 67657
+1396 53056
+1397 43845
+1398 43846
+1399 43844
+1400 23776
+1401 53056
+1402 53057
+1403 53057
+1404 66676
+1405 23534
+1406 42277
+1407 41668
+1408 41669
+1410 8950
+1411 11161
+1412 25275
+1413 23921
+1415 69866
+1416 15068
+1417 23748
+1418 23748
+1419 23748
+1420 23751
+1421 23751
+1422 63239
+1423 49052
+1424 20854
+1425 48129
+1426 23992
+1427 56138
+1428 20895
+1430 16690
+1431 396
+1432 23240
+1433 23533
+1434 23534
+1438 31614
+1439 31614
+1442 67657
+1443 27155
+1444 43862
+1446 43846
+1447 39017
+1448 39017
+1449 37258
+1450 37112
+1451 23812
+1452 39102
+1453 25136
+1454 42277
+1457 8397
+1462 14626
+1463 746
+1466 54465
+1468 34841
+1469 75978
+1471 8949
+1472 746
+1476 26178
+1477 7624
+1481 42273
+1482 42277
+1483 54465
+1484 24461
+1486 46595
+1487 41669
+1493 31533
+1494 27366
+1495 32206
+1496 34990
+1497 67245
+1498 47739
+1499 54592
+1500 64576
+1501 67176
+1502 68145
+1503 16151
+1504 16149
+1505 27745
+1506 72447
+1507 77576
+1508 69129
+1509 49284
+1511 66234
+1512 30375
+1513 32541
+1515 30097
+1516 40691
+1518 26178
+1519 26174
+1520 29741
+1521 23776
+1522 23533
+1523 7630
+1524 8477
+1525 16839
+1526 56504
+1527 42692
+1528 823
+1529 48682
+1530 79516
+1532 23534
+1535 52307
+1536 69275
+1537 69279
+1540 67657
+1543 29404
+1544 12978
+1548 7668
+1552 43571
+1553 1555
+1554 1555
+1555 59334
+1557 26178
+1558 42273
+1559 42277
+1561 23776
+1562 43846
+1563 43845
+1564 43849
+1566 26178
+1567 48564
+1568 23864
+1575 1552
+1576 1555
+1580 36569
+1581 1615
+1584 39336
+1585 32168
+1586 34005
+1587 38044
+1588 23197
+1589 1591
+1590 47040
+1591 2911
+1592 59505
+1593 18616
+1594 79125
+1595 25571
+1596 47665
+1597 66204
+1598 69089
+1600 22469
+1601 75804
+1602 38284
+1603 24071
+1604 24071
+1605 24071
+1606 24071
+1609 6309
+1610 56454
+1611 57521
+1612 46595
+1614 36569
+1615 57521
+1616 46595
+1618 23534
+1620 54465
+1623 62299
+1624 67657
+1626 31614
+1628 9085
+1629 68993
+1631 23776
+1632 23775
+1635 52280
+1636 33563
+1640 53129
+1641 55168
+1642 72946
+1643 21783
+1644 21783
+1645 30375
+1647 35740
+1648 26178
+1651 67657
+1653 18849
+1654 18850
+1655 56454
+1656 40462
+1657 41669
+1658 41668
+1660 12684
+1661 19154
+1662 40498
+1663 79708
+1664 30774
+1665 71959
+1666 23290
+1667 52727
+1668 26718
+1670 31593
+1671 80778
+1673 64099
+1674 32713
+1675 60954
+1676 21561
+1677 78232
+1678 25262
+1679 54043
+1683 21894
+1684 64349
+1685 66260
+1688 16690
+1689 35354
+1691 54465
+1692 23776
+1695 57106
+1696 24335
+1697 24335
+1698 24335
+1699 52285
+1700 24335
+1701 24335
+1702 24335
+1703 24335
+1704 24335
+1705 24335
+1706 24335
+1707 24335
+1708 24461
+1709 31614
+1710 1662
+1710 26140
+1711 1662
+1712 35525
+1715 24461
+1716 24462
+1717 29002
+1719 5629
+1720 9696
+1721 19726
+1724 77295
+1728 37503
+1728 75456
+1729 41203
+1731 19733
+1732 38044
+1734 7577
+1737 1739
+1738 1092
+1739 56454
+1740 18409
+1743 4698
+1744 28341
+1745 27840
+1746 54465
+1748 42277
+1749 8396
+1750 62354
+1755 54465
+1756 26178
+1757 26174
+1758 54464
+1759 54465
+1760 54464
+1762 23533
+1763 23534
+1766 13917
+1771 39068
+1776 9007
+1777 42277
+1778 42273
+1779 6309
+1782 6320
+1784 6320
+1785 44065
+1786 60954
+1787 72332
+1788 35801
+1789 45649
+1789 54403
+1790 62453
+1792 21418
+1793 35802
+1794 73907
+1795 25067
+1796 36458
+1797 21394
+1798 23776
+1799 70219
+1800 29240
+1802 9085
+1803 67656
+1804 23776
+1807 1812
+1808 6577
+1809 45056
+1811 58320
+1812 9002
+1815 58158
+1817 56504
+1818 77452
+1819 21073
+1820 42356
+1824 64349
+1827 1372
+1828 56454
+1834 30263
+1835 30263
+1837 56416
+1840 25014
+1842 26713
+1844 59794
+1845 293
+1846 13066
+1847 67657
+1848 67657
+1849 15066
+1850 15068
+1851 15068
+1852 15069
+1855 19733
+1858 38044
+1859 79125
+1860 39191
+1861 37258
+1865 31493
+1867 54089
+1869 46705
+1870 302
+1877 79992
+1881 19791
+1893 79011
+1894 37112
+1898 60841
+1900 9604
+1901 26178
+1907 23569
+1908 31614
+1909 37911
+1910 47665
+1912 47666
+1914 66676
+1915 63831
+1916 293
+1917 6309
+1918 57521
+1921 54464
+1922 54465
+1925 29741
+1926 57517
+1927 78780
+1930 50901
+1930 63903
+1931 52553
+1932 2272
+1934 79003
+1935 25230
+1936 79003
+1937 53308
+1939 67573
+1941 54464
+1942 54465
+1943 29740
+1944 29741
+1948 42273
+1949 22210
+1958 23256
+1959 67657
+1962 7264
+1963 26607
+1964 35481
+1965 624
+1972 63239
+1973 75985
+1978 58838
+1980 41582
+1981 40887
+1985 68591
+1986 74977
+1987 2870
+1987 66138
+1991 37112
+1994 9077
+1995 38952
+1997 53134
+2000 55463
+2003 34021
+2004 33400
+2005 50189
+2006 75804
+2007 1092
+2007 58172
+2011 57106
+2013 37257
+2014 17064
+2015 35805
+2016 24674
+2022 53057
+2024 17112
+2025 56454
+2027 56415
+2028 22530
+2030 6309
+2031 30928
+2032 43432
+2033 33327
+2034 70098
+2035 79443
+2040 38044
+2041 20831
+2041 70597
+2042 28663
+2043 71941
+2044 76483
+2045 35461
+2049 61157
+2050 59151
+2052 51138
+2056 23776
+2058 3076
+2061 76165
+2063 42273
+2064 23533
+2068 23534
+2071 69188
+2072 74048
+2073 75025
+2074 21107
+2075 80957
+2076 23706
+2077 69188
+2079 35461
+2080 56749
+2081 69290
+2082 22501
+2084 59361
+2085 75508
+2088 48776
+2091 66491
+2092 53291
+2093 59334
+2094 35500
+2097 52280
+2099 42465
+2100 76393
+2101 1372
+2102 40462
+2103 11161
+2106 43432
+2107 293
+2108 46512
+2112 46594
+2113 62302
+2114 46595
+2116 47665
+2121 22203
+2122 54255
+2124 12570
+2125 40464
+2126 324
+2127 54254
+2128 54255
+2129 68508
+2130 42659
+2130 49115
+2140 31533
+2141 4153
+2149 53110
+2151 65485
+2152 7264
+2156 59800
+2157 60995
+2158 69066
+2159 38044
+2160 7577
+2161 54281
+2162 59062
+2163 48554
+2164 67196
+2165 70312
+2166 13166
+2169 80935
+2175 52280
+2178 39191
+2179 43703
+2181 37258
+2182 37112
+2184 63974
+2186 22530
+2190 33844
+2191 49818
+2191 73227
+2192 53057
+2193 23776
+2194 23933
+2195 49777
+2197 52727
+2198 29741
+2198 3848
+2206 54465
+2207 46828
+2208 46827
+2212 77839
+2213 8396
+2218 1372
+2219 56454
+2220 28646
+2221 68048
+2222 46890
+2224 1124
+2225 54465
+2226 23776
+2231 35750
+2232 24080
+2233 2721
+2235 39554
+2235 67152
+2240 56831
+2242 23776
+2243 23775
+2245 16232
+2247 74788
+2248 73125
+2250 17041
+2252 17042
+2254 50271
+2261 37258
+2270 66676
+2271 41299
+2272 3691
+2273 31614
+2275 23534
+2276 20785
+2277 35841
+2280 49777
+2280 61326
+2281 11320
+2282 31939
+2283 293
+2284 28147
+2285 625
+2287 59401
+2292 55871
+2293 55871
+2294 60530
+2298 65996
+2299 11311
+2299 2280
+2300 65225
+2301 2280
+2301 80778
+2302 12978
+2303 14626
+2303 510
+2304 511
+2307 41405
+2308 48012
+2309 23569
+2312 53057
+2314 54465
+2316 43846
+2317 43849
+2318 43845
+2319 43846
+2320 23534
+2321 23534
+2322 23533
+2323 22530
+2324 41668
+2325 41669
+2327 6053
+2328 42273
+2329 22530
+2330 42277
+2331 23776
+2333 56504
+2334 59317
+2337 37112
+2339 23534
+2345 32177
+2346 53057
+2350 29030
+2351 44395
+2352 70219
+2353 45617
+2357 7577
+2359 34485
+2363 9681
+2365 64234
+2367 75978
+2368 37112
+2372 22755
+2376 29030
+2377 8950
+2378 6309
+2379 13131
+2380 79895
+2382 23880
+2383 66675
+2385 13224
+2386 41669
+2387 37428
+2387 61858
+2388 72946
+2389 19726
+2390 43845
+2391 43846
+2392 27080
+2393 43846
+2394 27080
+2395 27080
+2396 27080
+2397 27080
+2398 27080
+2399 27080
+2400 27080
+2401 27080
+2402 27080
+2403 27080
+2404 27080
+2406 19282
+2409 29087
+2410 17275
+2411 56454
+2412 29339
+2414 41995
+2416 68522
+2417 65312
+2418 4408
+2419 32910
+2420 23776
+2422 33563
+2424 53057
+2425 37257
+2426 37258
+2427 22210
+2428 23534
+2429 23533
+2430 26178
+2431 26174
+2432 23533
+2433 23534
+2435 26178
+2436 23966
+2437 30353
+2437 36096
+2438 33468
+2439 65948
+2440 33575
+2441 33470
+2442 81071
+2445 73357
+2447 13254
+2450 60713
+2458 74863
+2461 75003
+2462 31906
+2464 70264
+2465 45617
+2466 62297
+2467 62299
+2468 56504
+2470 80595
+2471 22792
+2472 70098
+2473 75804
+2474 80542
+2481 11246
+2485 72482
+2486 66277
+2487 54465
+2490 52280
+2491 54465
+2492 8536
+2500 37579
+2501 75804
+2502 28845
+2503 74831
+2504 79125
+2505 28646
+2506 67460
+2507 624
+2509 6926
+2510 67657
+2511 49575
+2513 26178
+2514 42273
+2515 66676
+2516 41669
+2518 56454
+2523 15784
+2526 67019
+2527 20550
+2528 44435
+2530 65752
+2531 80209
+2532 67876
+2533 38921
+2536 56504
+2538 70098
+2540 17972
+2541 54464
+2542 54464
+2543 77452
+2546 30206
+2549 51654
+2550 53057
+2552 41802
+2553 55351
+2554 32567
+2555 80943
+2556 3935
+2557 80935
+2558 52553
+2559 16553
+2560 50071
+2561 43647
+2562 34175
+2563 67657
+2566 52280
+2569 46200
+2570 23534
+2571 61675
+2572 37258
+2573 23776
+2574 67657
+2575 22530
+2580 72514
+2581 57515
+2585 54464
+2586 54465
+2592 27435
+2593 23335
+2594 8392
+2595 19246
+2597 8398
+2598 41203
+2600 68993
+2602 57106
+2603 13849
+2604 13180
+2606 62706
+2607 42277
+2609 42273
+2610 33892
+2611 80977
+2612 80973
+2613 31614
+2614 42273
+2615 22530
+2619 26178
+2621 54255
+2623 56504
+2624 37258
+2629 48113
+2631 33723
+2633 39193
+2634 17275
+2635 43718
+2636 56454
+2637 18616
+2638 67655
+2639 77714
+2646 74071
+2652 6907
+2653 2788
+2655 42277
+2657 23776
+2662 30740
+2667 78307
+2669 22670
+2673 21894
+2674 10253
+2675 28747
+2677 32886
+2680 74979
+2682 60416
+2684 38694
+2684 53308
+2685 39717
+2686 56454
+2687 2686
+2688 2686
+2689 80918
+2690 6309
+2691 3572
+2692 72128
+2694 74977
+2697 49284
+2699 3604
+2701 34245
+2703 56504
+2704 56503
+2705 22670
+2706 56504
+2714 61228
+2715 36209
+2720 42277
+2721 54405
+2722 55343
+2723 6923
+2724 6923
+2725 12288
+2726 42273
+2727 37112
+2728 31224
+2732 35740
+2735 56749
+2736 7350
+2737 41189
+2738 26229
+2742 33891
+2743 24132
+2744 54109
+2745 12816
+2749 32127
+2751 23533
+2752 23534
+2753 37258
+2757 23776
+2758 18232
+2759 15611
+2761 6043
+2764 38044
+2765 2481
+2767 23776
+2774 73336
+2775 67856
+2776 51823
+2779 67657
+2780 56707
+2781 62302
+2785 37911
+2786 31614
+2787 61675
+2788 3573
+2789 56708
+2790 54465
+2792 54028
+2792 74893
+2793 26178
+2794 26178
+2795 56415
+2796 26174
+2797 26178
+2798 26178
+2799 26174
+2803 56504
+2805 48406
+2806 25986
+2808 43420
+2809 62207
+2813 865
+2814 41205
+2815 41203
+2816 66499
+2818 54465
+2822 44061
+2823 27434
+2824 22209
+2830 6309
+2831 17112
+2832 56454
+2836 42049
+2837 58320
+2838 67657
+2840 37112
+2842 30263
+2843 66676
+2847 44219
+2851 23202
+2852 23776
+2853 2272
+2856 65476
+2857 52287
+2858 21394
+2859 21394
+2860 21394
+2861 21394
+2862 21394
+2863 21394
+2864 21394
+2866 68381
+2868 6056
+2870 80595
+2871 35856
+2872 26174
+2873 26178
+2877 43432
+2879 18616
+2880 56504
+2881 56503
+2882 54465
+2883 1372
+2884 10812
+2885 38084
+2891 25419
+2892 61208
+2893 64117
+2895 63403
+2896 26253
+2901 68019
+2902 67657
+2903 67656
+2907 21725
+2909 43432
+2910 293
+2911 80860
+2912 19848
+2913 27345
+2917 46682
+2918 40690
+2919 40690
+2920 32209
+2921 58172
+2922 62044
+2924 67657
+2925 26178
+2926 54589
+2929 8368
+2932 37111
+2933 37112
+2937 6309
+2941 1372
+2943 23256
+2945 36381
+2946 33563
+2946 72280
+2947 58463
+2948 64875
+2949 30774
+2950 52120
+2951 30616
+2952 64099
+2953 51439
+2954 52727
+2955 32119
+2956 31571
+2958 41854
+2959 69731
+2960 32946
+2961 32946
+2961 65759
+2962 38564
+2963 38564
+2964 39494
+2965 64099
+2966 26926
+2967 25262
+2968 31709
+2969 33014
+2970 54345
+2971 64090
+2972 55343
+2973 40819
+2974 68759
+2976 66138
+2977 79134
+2978 20668
+2979 54255
+2980 54254
+2983 54465
+2984 23776
+2986 26178
+2987 29740
+2988 14626
+2989 746
+2991 23534
+2992 22209
+2994 54465
+2995 54464
+2996 67657
+2997 67656
+2998 67656
+3001 76884
+3003 39789
+3004 33574
+3006 57813
+3007 25076
+3010 18077
+3011 19154
+3013 5881
+3014 26178
+3017 67657
+3018 110
+3019 11688
+3020 11690
+3021 37258
+3023 28857
+3025 56504
+3025 7546
+3026 23776
+3027 60073
+3028 67586
+3029 54804
+3030 42277
+3031 67104
+3032 29741
+3041 26178
+3043 69475
+3044 58576
+3045 79552
+3046 68895
+3047 68895
+3048 27499
+3049 33296
+3050 43366
+3051 70430
+3052 51878
+3053 10366
+3054 13802
+3055 81281
+3056 62139
+3057 63026
+3058 63923
+3059 64970
+3060 66201
+3061 68130
+3062 69089
+3063 62018
+3064 62262
+3065 80187
+3066 80306
+3067 80595
+3068 624
+3071 51240
+3072 14919
+3074 75566
+3075 37702
+3076 78596
+3077 36482
+3078 22518
+3079 79231
+3080 36482
+3081 36482
+3082 66687
+3083 32634
+3084 79231
+3085 33228
+3086 59260
+3087 42747
+3088 56504
+3090 54465
+3091 23534
+3092 23534
+3093 42273
+3095 50200
+3096 66676
+3097 23534
+3098 23533
+3099 37258
+3100 66676
+3101 23776
+3103 54464
+3104 54465
+3105 67656
+3106 67657
+3107 46595
+3108 54465
+3109 37258
+3110 37112
+3111 46595
+3112 53057
+3116 37258
+3117 56504
+3118 80918
+3119 80918
+3120 37518
+3121 44269
+3122 44269
+3123 44269
+3124 43845
+3125 54255
+3126 27631
+3128 21322
+3129 55196
+3130 4807
+3131 43846
+3134 15069
+3135 57619
+3136 1851
+3138 54254
+3139 54255
+3140 23776
+3141 24459
+3142 24464
+3143 59317
+3144 69095
+3145 37112
+3147 67666
+3148 53057
+3149 23534
+3151 1372
+3152 56454
+3154 6309
+3160 54464
+3161 37258
+3162 3294
+3163 54465
+3164 30740
+3167 43432
+3168 293
+3170 59401
+3173 62297
+3174 62302
+3178 26178
+3179 41607
+3180 23534
+3181 41669
+3182 41669
+3183 26178
+3185 16690
+3186 3187
+3187 16691
+3188 26178
+3190 22420
+3191 58955
+3192 70688
+3193 21855
+3194 80461
+3195 9409
+3196 53059
+3197 54059
+3198 62546
+3199 12974
+3200 62567
+3201 79153
+3202 80494
+3203 13166
+3206 6863
+3207 50385
+3208 23658
+3209 1712
+3210 38044
+3211 79854
+3212 64372
+3214 54255
+3215 47040
+3217 80339
+3218 67657
+3220 54426
+3221 49777
+3224 23534
+3225 23533
+3227 29101
+3228 65040
+3229 37257
+3231 54464
+3232 54465
+3235 37111
+3236 56503
+3241 6043
+3244 45419
+3245 29045
+3246 43846
+3248 34745
+3249 6867
+3266 12978
+3276 3277
+3277 56454
+3280 2823
+3281 77695
+3284 73759
+3285 26719
+3288 26178
+3290 56441
+3291 38921
+3292 23723
+3293 23723
+3294 69190
+3295 30578
+3296 3602
+3297 41539
+3299 76785
+3300 45753
+3304 26174
+3308 37257
+3309 37258
+3311 54465
+3312 23534
+3313 54465
+3315 49777
+3318 54465
+3319 23775
+3320 26174
+3321 22530
+3322 26178
+3323 42273
+3324 54464
+3325 42277
+3326 37258
+3327 23533
+3329 42273
+3330 42277
+3331 42273
+3332 42277
+3334 21894
+3337 42273
+3338 42277
+3339 42277
+3340 42273
+3341 42277
+3342 37258
+3344 74700
+3345 34051
+3346 56415
+3347 37112
+3348 56416
+3350 26174
+3351 26178
+3352 23776
+3353 66676
+3355 56504
+3356 26178
+3357 26174
+3358 747
+3359 746
+3363 37258
+3364 37257
+3366 73907
+3367 2634
+3368 35805
+3369 24674
+3371 23776
+3376 43571
+3377 59334
+3382 29741
+3383 48252
+3384 22530
+3385 22530
+3387 35600
+3389 21898
+3390 28172
+3391 30879
+3392 47594
+3393 28510
+3394 56590
+3395 60289
+3396 42747
+3397 19999
+3399 56441
+3400 38921
+3401 624
+3404 66676
+3405 46827
+3406 46828
+3407 29741
+3408 23534
+3409 26178
+3411 21709
+3419 31359
+3422 80926
+3423 40690
+3424 42984
+3425 33921
+3427 293
+3428 23776
+3429 12288
+3430 59334
+3433 20006
+3434 67657
+3437 80855
+3438 23581
+3439 37289
+3440 37112
+3441 37258
+3442 37257
+3443 29740
+3444 62302
+3445 31614
+3446 56504
+3450 80784
+3452 35428
+3453 60773
+3455 38087
+3456 26178
+3461 66252
+3462 51540
+3463 37258
+3468 46828
+3469 46828
+3470 67657
+3472 17331
+3473 23776
+3474 17330
+3476 16819
+3477 67528
+3478 43867
+3479 54465
+3480 54464
+3481 54465
+3484 32911
+3485 21394
+3486 26174
+3487 22530
+3488 37111
+3489 62302
+3490 26178
+3491 23534
+3492 17330
+3493 15853
+3494 30815
+3496 29921
+3497 29921
+3499 56504
+3500 17041
+3501 43383
+3502 17042
+3503 52143
+3504 77025
+3505 46595
+3506 2911
+3507 26178
+3508 37112
+3509 26178
+3510 26174
+3512 33442
+3518 4040
+3519 4041
+3520 31309
+3521 4051
+3522 72475
+3523 26178
+3524 42273
+3525 42277
+3531 49777
+3532 57521
+3533 80624
+3536 54255
+3537 54390
+3538 56444
+3541 54465
+3542 54464
+3545 38044
+3546 9126
+3547 9125
+3549 54464
+3552 19454
+3553 6622
+3554 54465
+3555 54465
+3556 23533
+3557 37112
+3558 68502
+3559 37111
+3561 67657
+3562 46595
+3563 37258
+3564 37111
+3565 37112
+3567 8141
+3569 29741
+3571 75631
+3572 6309
+3573 9002
+3574 4807
+3575 7410
+3576 37112
+3577 56504
+3579 23776
+3580 37112
+3582 21394
+3583 76037
+3585 43432
+3587 20724
+3588 13166
+3589 13168
+3590 73669
+3591 5630
+3592 19067
+3592 49715
+3593 50385
+3595 21783
+3596 31533
+3597 23776
+3598 42273
+3600 23282
+3601 62679
+3602 62175
+3603 17850
+3604 57833
+3605 28241
+3606 42273
+3607 26178
+3608 67657
+3609 42273
+3610 42277
+3611 42277
+3612 26178
+3613 67657
+3614 75418
+3615 37112
+3616 56504
+3617 80973
+3618 61675
+3619 31614
+3620 26178
+3621 67656
+3622 46594
+3623 46595
+3624 67657
+3627 26178
+3628 23533
+3629 23534
+3630 29741
+3631 23534
+3632 42273
+3633 67657
+3634 67657
+3635 54254
+3636 54255
+3637 23534
+3638 23533
+3639 22530
+3640 66675
+3641 41669
+3642 43845
+3643 43846
+3644 54465
+3645 57315
+3646 54254
+3647 54255
+3648 67657
+3649 67657
+3650 54465
+3651 23533
+3652 54464
+3653 54465
+3654 43846
+3655 43846
+3658 29741
+3659 56504
+3660 26178
+3661 26174
+3663 54464
+3664 54465
+3665 26178
+3666 22530
+3667 35249
+3668 31614
+3669 23776
+3670 35250
+3671 22530
+3672 41669
+3673 23534
+3674 23533
+3675 42273
+3676 42277
+3677 43846
+3681 27484
+3682 72426
+3684 66496
+3685 8095
+3687 2870
+3687 80339
+3688 60202
+3691 324
+3692 293
+3693 43432
+3694 67657
+3695 42277
+3697 42277
+3698 42273
+3699 61675
+3701 18850
+3702 69698
+3703 28245
+3704 52961
+3705 28528
+3706 33575
+3707 53182
+3709 43246
+3710 57632
+3711 8396
+3713 39164
+3714 23533
+3715 23534
+3716 26178
+3718 58729
+3719 16690
+3721 26178
+3722 67657
+3723 46595
+3724 67657
+3725 37258
+3726 66676
+3728 53457
+3729 66675
+3730 23776
+3732 77335
+3733 73338
+3735 72154
+3737 5752
+3743 28750
+3748 66864
+3749 54359
+3755 31614
+3757 61685
+3759 38911
+3763 60892
+3765 64350
+3766 64349
+3767 42273
+3768 42273
+3769 22530
+3770 26174
+3771 22530
+3772 26178
+3773 64351
+3775 57867
+3776 79134
+3777 80339
+3778 13083
+3779 66676
+3792 24674
+3796 17849
+3798 25544
+3799 41685
+3800 31614
+3801 54465
+3802 40448
+3803 4842
+3804 54718
+3805 53291
+3806 7639
+3807 80203
+3808 56752
+3811 41956
+3812 26178
+3817 26178
+3820 15986
+3821 3532
+3823 8001
+3824 30740
+3826 41669
+3827 37258
+3829 31614
+3830 37258
+3831 23534
+3832 23776
+3833 22530
+3834 66676
+3835 22530
+3836 66675
+3838 66676
+3839 66675
+3840 12438
+3841 3840
+3844 26178
+3845 79134
+3846 80339
+3848 29740
+3849 29741
+3850 14353
+3852 15986
+3853 19481
+3856 9125
+3857 9126
+3858 67621
+3861 66918
+3863 30740
+3866 5149
+3867 46060
+3870 38092
+3872 293
+3874 511
+3875 14626
+3875 510
+3876 1846
+3877 60870
+3878 77928
+3880 66138
+3882 29483
+3883 11977
+3884 1846
+3886 8949
+3887 12566
+3889 29346
+3890 28750
+3893 76979
+3895 80199
+3897 48521
+3898 27183
+3899 17275
+3900 30095
+3901 2911
+3902 52819
+3903 56454
+3904 2911
+3905 3903
+3906 2911
+3908 64350
+3909 66676
+3910 42277
+3911 31614
+3912 23776
+3913 42273
+3914 16142
+3915 37258
+3916 8477
+3917 8476
+3919 57315
+3920 49286
+3921 54255
+3923 63049
+3925 34997
+3926 42747
+3927 67621
+3928 47796
+3929 71566
+3930 18616
+3931 3935
+3932 27472
+3933 54464
+3934 17034
+3935 1372
+3938 21861
+3939 2911
+3940 22566
+3941 72350
+3942 68508
+3943 35144
+3944 28728
+3945 26929
+3946 30850
+3947 58576
+3948 7410
+3949 39598
+3950 39598
+3951 48620
+3952 47665
+3953 45696
+3954 79125
+3955 39191
+3956 2911
+3957 52063
+3958 46293
+3959 56454
+3960 57175
+3961 57176
+3962 44121
+3963 18616
+3964 60795
+3965 63841
+3966 63923
+3967 64836
+3968 74926
+3969 67086
+3970 80720
+3972 80542
+3973 14209
+3974 16151
+3975 14208
+3976 16149
+3977 61810
+3978 23776
+3979 37112
+3981 1471
+3982 1472
+3984 1019
+3986 30214
+3987 23781
+3988 23533
+3989 23534
+3990 22530
+3992 1846
+3994 17042
+3995 26178
+3996 31036
+3997 31036
+3998 24461
+3999 64349
+4000 64350
+4001 66676
+4002 54465
+4003 37111
+4004 37112
+4005 56504
+4006 64351
+4007 64350
+4008 66676
+4009 26178
+4010 42273
+4011 31614
+4012 21375
+4013 37910
+4014 67657
+4015 26178
+4016 12565
+4017 12566
+4018 54465
+4019 54465
+4021 31614
+4022 64350
+4024 57106
+4027 61675
+4028 26178
+4029 67657
+4030 26178
+4031 23534
+4032 67657
+4033 5118
+4035 39584
+4036 2911
+4037 2911
+4039 27001
+4040 66499
+4041 41205
+4042 15068
+4043 15068
+4044 15069
+4045 15066
+4047 66494
+4048 53413
+4049 42251
+4050 75980
+4051 41203
+4052 33837
+4054 69181
+4055 41505
+4055 48129
+4055 52553
+4055 65040
+4056 48101
+4057 25618
+4058 42747
+4059 45968
+4060 18616
+4061 28790
+4062 43720
+4063 46154
+4064 32035
+4065 41666
+4066 63653
+4067 47524
+4068 73481
+4069 60344
+4070 70688
+4071 70688
+4072 36208
+4073 2911
+4074 2911
+4075 75978
+4076 4050
+4078 66676
+4079 76003
+4080 32241
+4081 11774
+4082 66676
+4083 67657
+4084 54464
+4085 54465
+4086 46828
+4087 26178
+4088 23533
+4089 42277
+4090 31614
+4091 37112
+4092 37910
+4093 23533
+4094 23776
+4095 67657
+4096 23776
+4099 16927
+4100 57521
+4104 75977
+4105 880
+4106 15068
+4107 1851
+4112 18849
+4113 18850
+4114 43845
+4115 43849
+4116 31614
+4118 41669
+4119 23533
+4120 23533
+4121 67657
+4122 53182
+4124 42273
+4125 23776
+4126 23533
+4127 26178
+4128 26174
+4129 22530
+4130 67657
+4131 31614
+4134 23534
+4135 23533
+4136 54255
+4139 26174
+4140 26178
+4141 5168
+4142 80778
+4144 54255
+4145 67657
+4146 39782
+4147 26178
+4148 3531
+4149 3532
+4150 71892
+4152 41505
+4153 67333
+4154 20475
+4155 32956
+4156 70374
+4157 37816
+4158 23295
+4159 23296
+4160 26178
+4161 31614
+4162 23776
+4163 37257
+4164 26178
+4165 37258
+4166 24231
+4167 72268
+4168 22595
+4169 40637
+4170 63978
+4172 54465
+4173 42277
+4174 5168
+4176 67657
+4177 37112
+4181 28185
+4182 43647
+4183 43846
+4184 43845
+4185 26178
+4186 67657
+4187 22530
+4188 26178
+4193 58547
+4194 72996
+4196 43845
+4197 43846
+4200 43845
+4201 43846
+4202 23619
+4203 37428
+4204 37428
+4207 27000
+4208 29741
+4210 56504
+4218 23533
+4219 37112
+4220 37257
+4221 54465
+4225 77733
+4226 37112
+4229 42273
+4230 23776
+4235 40690
+4237 43846
+4238 21375
+4239 21375
+4240 21375
+4241 21375
+4242 21375
+4243 21375
+4244 67657
+4246 26579
+4247 7630
+4249 13867
+4250 42277
+4251 42273
+4252 67344
+4253 38359
+4254 17109
+4256 66676
+4257 23776
+4258 61675
+4259 67657
+4260 31614
+4264 42273
+4265 2911
+4267 62306
+4268 4309
+4269 23533
+4270 22530
+4271 23533
+4272 23533
+4273 26178
+4274 54255
+4275 26178
+4276 8477
+4277 20199
+4279 37258
+4280 26178
+4282 49284
+4284 20612
+4285 10827
+4286 6025
+4287 8477
+4288 20199
+4289 56504
+4293 67657
+4294 67657
+4296 56504
+4297 26178
+4298 26174
+4299 8949
+4302 23776
+4303 73389
+4304 27631
+4307 72032
+4308 37258
+4309 71685
+4310 26178
+4311 68508
+4312 53056
+4313 53057
+4315 22671
+4317 66676
+4318 22530
+4322 26178
+4323 22530
+4325 47880
+4326 23776
+4327 23776
+4328 26178
+4329 56504
+4331 40389
+4333 17275
+4334 56454
+4335 4334
+4337 52121
+4338 5927
+4339 4663
+4341 64668
+4342 65752
+4344 27001
+4345 22525
+4346 45056
+4347 45056
+4348 22525
+4349 624
+4355 69765
+4357 52401
+4358 72732
+4361 14451
+4363 11256
+4363 42903
+4364 67013
+4365 66676
+4366 66675
+4367 37112
+4369 26178
+4375 53059
+4376 26174
+4377 22530
+4382 52553
+4383 67657
+4385 16907
+4386 16909
+4387 37258
+4388 966
+4389 967
+4390 37111
+4392 56503
+4393 31614
+4394 67657
+4395 5829
+4396 5829
+4397 5829
+4398 15992
+4400 52553
+4401 80963
+4402 50385
+4403 67337
+4404 50313
+4405 36571
+4407 62811
+4408 71615
+4410 60530
+4413 23775
+4414 59337
+4416 37112
+4417 58838
+4418 58838
+4419 21394
+4420 6923
+4421 4408
+4423 55112
+4424 30206
+4426 63154
+4431 59329
+4432 45843
+4434 21490
+4436 43383
+4438 54465
+4439 54465
+4442 19011
+4443 10872
+4444 21487
+4445 17314
+4445 6926
+4446 20651
+4447 23739
+4448 23401
+4448 7585
+4449 4445
+4449 71766
+4450 25648
+4451 61541
+4456 26431
+4457 43432
+4458 293
+4459 15068
+4460 15068
+4461 15069
+4462 15066
+4463 7191
+4464 55265
+4465 7191
+4466 69841
+4467 41545
+4468 58238
+4469 56133
+4471 42273
+4472 62302
+4473 31614
+4474 54465
+4475 41669
+4476 67657
+4477 74926
+4478 67656
+4479 67657
+4480 81338
+4484 624
+4485 47407
+4486 54465
+4489 37112
+4490 23776
+4491 22530
+4492 67657
+4493 37112
+4494 510
+4496 23776
+4497 8149
+4498 9574
+4499 9575
+4500 60530
+4501 54255
+4502 52307
+4504 58835
+4506 34388
+4510 34388
+4511 39164
+4512 39164
+4513 39164
+4514 52279
+4515 25617
+4516 64215
+4518 33812
+4519 60530
+4520 52019
+4521 6306
+4522 23401
+4523 4464
+4525 26178
+4526 26178
+4527 53057
+4528 53056
+4529 37111
+4530 23776
+4531 70974
+4536 75920
+4541 34705
+4542 47167
+4546 14208
+4548 31614
+4549 43430
+4550 56504
+4556 43845
+4557 43846
+4558 5881
+4559 4040
+4560 5882
+4561 4041
+4562 54255
+4563 26178
+4564 26174
+4565 22530
+4566 26178
+4569 56504
+4571 74119
+4572 37258
+4573 46594
+4574 62302
+4575 46595
+4577 37112
+4578 13043
+4582 66676
+4583 53057
+4584 66676
+4585 42273
+4586 42277
+4587 23533
+4589 67657
+4591 47478
+4592 7624
+4593 59337
+4594 33505
+4595 43103
+4596 23534
+4597 23533
+4598 24927
+4598 62301
+4599 24927
+4601 62541
+4602 42652
+4604 67656
+4609 2788
+4610 38086
+4611 40275
+4612 60637
+4613 6056
+4614 6057
+4615 67657
+4618 67657
+4622 4047
+4627 56504
+4629 43846
+4630 43845
+4631 43846
+4632 21375
+4633 21375
+4634 21375
+4635 21375
+4636 21375
+4637 21375
+4638 21375
+4639 21375
+4640 39068
+4641 26174
+4643 26178
+4644 56504
+4645 23533
+4646 42747
+4647 37258
+4648 23534
+4649 46827
+4650 62299
+4651 46828
+4652 24461
+4653 34258
+4654 56504
+4655 38065
+4656 38065
+4657 42273
+4659 42277
+4660 17111
+4662 3588
+4663 56454
+4664 14209
+4665 14208
+4667 80595
+4668 26174
+4669 37112
+4670 34334
+4671 34334
+4674 38092
+4676 42273
+4677 42277
+4678 23776
+4679 26178
+4681 52280
+4682 67657
+4684 34388
+4685 40691
+4686 34388
+4687 40691
+4688 25022
+4690 66496
+4691 21394
+4694 23706
+4695 45746
+4696 41802
+4697 67573
+4698 23285
+4699 66746
+4700 34243
+4701 48548
+4703 36326
+4704 4695
+4705 20892
+4707 40664
+4709 49777
+4714 40752
+4715 14576
+4716 22749
+4718 26174
+4720 26174
+4721 26178
+4723 37258
+4727 52958
+4728 79438
+4729 23534
+4730 23533
+4731 23776
+4732 56416
+4733 62299
+4734 62297
+4735 67657
+4736 43246
+4738 5316
+4740 37258
+4743 26178
+4744 40195
+4746 20955
+4747 23560
+4748 25613
+4749 25617
+4751 57526
+4753 510
+4754 511
+4755 73724
+4756 8949
+4757 4442
+4759 626
+4760 624
+4761 57521
+4763 23776
+4764 23776
+4766 6309
+4768 27582
+4769 26178
+4770 54464
+4771 54465
+4773 34712
+4776 47613
+4778 50385
+4779 52287
+4780 31614
+4783 8536
+4785 17111
+4786 26178
+4787 33881
+4789 22530
+4790 66675
+4791 66676
+4792 54465
+4794 67138
+4796 36209
+4798 43846
+4802 65372
+4803 30003
+4805 33581
+4806 54739
+4807 39638
+4808 21320
+4809 25634
+4810 19007
+4812 31614
+4813 66675
+4814 66676
+4815 66676
+4816 26178
+4818 34256
+4819 35197
+4820 17041
+4821 26952
+4822 17042
+4823 74860
+4824 76785
+4825 7110
+4826 35131
+4826 50999
+4827 20816
+4828 32320
+4829 76785
+4830 62174
+4831 24231
+4832 76786
+4833 76786
+4834 4347
+4835 10252
+4836 37257
+4837 40680
+4839 76879
+4840 78907
+4841 40795
+4842 37707
+4843 79638
+4844 31614
+4845 42277
+4846 22209
+4847 22210
+4848 23533
+4849 23534
+4850 37911
+4851 41669
+4852 41668
+4853 46595
+4854 31614
+4855 61675
+4856 31506
+4857 23534
+4858 54465
+4859 23533
+4860 23534
+4861 4860
+4862 61675
+4863 2559
+4866 19733
+4868 47796
+4869 47483
+4870 56454
+4871 4870
+4872 26174
+4873 22530
+4874 26178
+4875 37112
+4876 37112
+4877 37111
+4880 41669
+4882 23534
+4883 56699
+4885 23533
+4886 67007
+4887 23776
+4895 67657
+4897 54465
+4899 67656
+4900 54465
+4902 21835
+4903 35461
+4904 27440
+4905 46594
+4906 46595
+4909 59282
+4910 23533
+4911 56504
+4912 21107
+4915 65353
+4916 75627
+4918 67743
+4920 46682
+4922 34705
+4923 26178
+4925 67657
+4927 37112
+4929 45303
+4930 45303
+4931 324
+4933 23534
+4934 23533
+4937 67657
+4938 23534
+4939 26178
+4940 37910
+4941 41669
+4942 41668
+4944 46594
+4945 62302
+4946 62302
+4947 31614
+4948 46595
+4949 247
+4951 61675
+4952 29741
+4953 54465
+4954 41669
+4955 45149
+4956 33940
+4957 42273
+4958 42277
+4959 41669
+4960 31614
+4961 22530
+4962 56504
+4963 22530
+4964 67657
+4966 26178
+4967 56415
+4968 23776
+4970 78364
+4971 61539
+4972 23533
+4973 23534
+4974 54464
+4975 54465
+4976 42886
+4977 56504
+4978 37910
+4979 42273
+4980 62299
+4981 54465
+4982 54465
+4983 43707
+4986 42277
+4987 56503
+4988 4987
+4988 56504
+4989 23776
+4990 56416
+4991 56415
+4992 42273
+4993 22530
+4994 42273
+4995 42277
+4996 6309
+4997 56454
+4998 4997
+4999 56504
+5003 37110
+5004 21971
+5005 41669
+5008 54465
+5009 41669
+5010 67657
+5011 6309
+5012 6309
+5013 17112
+5015 56454
+5019 41431
+5020 52120
+5021 52727
+5025 34510
+5026 66943
+5027 76655
+5028 26114
+5029 40695
+5030 59172
+5031 78616
+5032 5517
+5033 2272
+5034 37258
+5035 26178
+5037 62867
+5038 46595
+5039 46595
+5040 43846
+5041 43845
+5042 56504
+5043 56504
+5044 23533
+5045 23534
+5046 42273
+5047 42277
+5048 56504
+5049 42273
+5053 40464
+5056 48577
+5059 17041
+5061 17042
+5062 10208
+5063 67657
+5064 67657
+5066 80499
+5069 6309
+5070 37975
+5071 25426
+5072 2911
+5074 52280
+5075 52280
+5076 54465
+5077 54465
+5078 43303
+5079 17906
+5080 36791
+5081 73213
+5086 41669
+5087 23533
+5088 23534
+5089 75804
+5090 6309
+5091 5763
+5093 51117
+5095 16405
+5096 74746
+5097 26607
+5098 5099
+5099 56454
+5104 2911
+5105 58565
+5109 8998
+5114 9085
+5117 26431
+5118 53830
+5120 37112
+5121 67657
+5123 8399
+5127 77803
+5128 21235
+5129 75991
+5132 42273
+5133 42277
+5134 54464
+5135 54465
+5136 54464
+5137 54465
+5138 54464
+5139 54465
+5140 23776
+5141 54465
+5142 10466
+5142 54464
+5143 67657
+5146 41668
+5148 36806
+5149 33848
+5153 80514
+5154 67657
+5161 35362
+5165 76483
+5166 76444
+5167 61228
+5168 28907
+5169 80916
+5170 40188
+5171 30488
+5172 61228
+5173 70525
+5173 76483
+5186 20567
+5188 39362
+5189 29506
+5190 22002
+5191 59388
+5192 39809
+5194 73104
+5195 39809
+5196 51487
+5197 73104
+5202 22530
+5203 22530
+5204 42277
+5208 7668
+5211 15839
+5212 67657
+5215 76580
+5216 21394
+5217 21394
+5218 19067
+5218 55891
+5219 21394
+5220 21394
+5221 21394
+5228 23776
+5230 510
+5233 511
+5236 624
+5240 26178
+5241 39068
+5243 80778
+5245 25564
+5246 67657
+5249 54465
+5250 54464
+5252 54465
+5253 43845
+5255 29135
+5258 67879
+5259 28083
+5262 62811
+5263 21235
+5264 60530
+5266 60530
+5270 47818
+5271 12199
+5273 61890
+5276 23776
+5277 66676
+5278 56504
+5279 26178
+5280 26174
+5281 23534
+5282 26178
+5283 54465
+5284 37258
+5288 66676
+5290 41669
+5291 41668
+5292 37258
+5295 41669
+5296 40695
+5297 40695
+5298 40695
+5299 40695
+5300 21394
+5301 40695
+5302 40695
+5303 21394
+5304 40695
+5305 40695
+5306 40695
+5307 40695
+5308 50387
+5309 40695
+5310 40695
+5311 40695
+5312 40695
+5313 40695
+5314 64462
+5315 42041
+5316 43246
+5317 68080
+5319 21570
+5320 21289
+5321 33165
+5322 22500
+5323 64795
+5325 23534
+5326 22530
+5327 23534
+5328 23533
+5329 66675
+5330 66676
+5331 22530
+5335 37258
+5336 67657
+5337 64349
+5338 64350
+5339 67657
+5340 54464
+5341 54465
+5342 78684
+5343 22210
+5344 46965
+5345 30046
+5346 33274
+5349 31614
+5350 37911
+5352 68993
+5352 74845
+5355 30017
+5357 78626
+5362 31638
+5365 8397
+5367 17041
+5368 17042
+5369 9156
+5370 9156
+5372 41669
+5373 66676
+5375 23534
+5379 29741
+5380 37257
+5381 62302
+5382 66674
+5384 23533
+5385 27001
+5386 37676
+5387 37677
+5388 31614
+5389 22209
+5390 37258
+5391 54465
+5392 71000
+5393 40661
+5396 41669
+5397 41668
+5398 31614
+5399 56707
+5400 62302
+5401 41669
+5402 56708
+5403 54465
+5404 67657
+5405 75270
+5406 43846
+5407 22530
+5408 37910
+5409 54464
+5410 54465
+5414 56504
+5415 8477
+5416 20199
+5418 23776
+5421 49094
+5423 56504
+5425 37257
+5426 31614
+5428 22798
+5428 57458
+5429 37112
+5430 23776
+5432 13084
+5433 22530
+5434 22530
+5435 26178
+5436 26174
+5437 22530
+5439 42277
+5440 42273
+5442 26174
+5443 37112
+5444 41699
+5449 62299
+5450 62297
+5451 37112
+5452 54465
+5453 29980
+5454 41669
+5455 37258
+5456 31614
+5457 54464
+5458 54465
+5459 67657
+5460 23775
+5461 23776
+5462 66676
+5463 22530
+5464 37257
+5465 37112
+5466 54465
+5469 37112
+5470 21117
+5471 50385
+5473 37502
+5474 56636
+5475 22530
+5476 22209
+5477 31614
+5481 36209
+5482 36209
+5483 36209
+5484 36209
+5485 36209
+5488 58829
+5490 35361
+5494 43432
+5495 293
+5499 62026
+5501 47693
+5501 75978
+5502 48280
+5503 37951
+5504 37951
+5505 37951
+5506 37951
+5507 37951
+5508 48280
+5509 48280
+5510 48280
+5511 48280
+5512 37951
+5513 37951
+5514 37951
+5515 37951
+5516 37951
+5517 37951
+5518 37951
+5519 48280
+5520 37951
+5521 75977
+5526 37112
+5529 26178
+5530 67657
+5531 54465
+5532 31177
+5534 56259
+5540 43571
+5542 38044
+5543 56454
+5544 59334
+5545 5543
+5546 33772
+5547 66324
+5548 10254
+5549 52553
+5550 30882
+5552 31835
+5553 54843
+5554 26664
+5556 44486
+5557 75456
+5558 47215
+5561 76580
+5563 80784
+5565 38459
+5566 76580
+5570 4051
+5571 37503
+5581 64196
+5582 65279
+5584 7624
+5585 823
+5586 59337
+5588 38086
+5589 66494
+5590 23776
+5591 29741
+5593 23533
+5594 41669
+5602 63357
+5603 37258
+5607 41507
+5608 62425
+5610 47895
+5611 46682
+5614 45746
+5615 53056
+5618 66676
+5619 23776
+5620 56504
+5622 80973
+5623 56504
+5624 80977
+5625 71480
+5627 38721
+5628 16531
+5628 53291
+5629 8950
+5630 57521
+5632 56416
+5633 26174
+5634 26178
+5638 54255
+5639 55220
+5641 66675
+5642 26178
+5643 37112
+5644 37111
+5645 23533
+5646 37112
+5647 29602
+5648 52287
+5649 63789
+5650 37503
+5651 56504
+5652 67657
+5654 66676
+5655 41669
+5656 41669
+5657 54465
+5658 41668
+5659 41669
+5664 9113
+5665 80595
+5669 38952
+5671 54464
+5677 26178
+5678 33637
+5679 74586
+5682 34651
+5683 34649
+5684 39065
+5685 25146
+5686 1849
+5687 34965
+5691 51897
+5692 21894
+5700 25544
+5701 37258
+5707 54465
+5709 10253
+5710 19730
+5711 24932
+5712 32189
+5713 34519
+5714 40925
+5715 39598
+5716 62296
+5717 43844
+5718 25430
+5719 25430
+5720 56454
+5721 59669
+5722 63246
+5723 37299
+5724 34395
+5725 26226
+5726 47665
+5731 1581
+5734 23534
+5735 23533
+5736 22820
+5736 41431
+5737 55563
+5738 29510
+5739 77142
+5740 52727
+5741 49619
+5742 72218
+5744 23534
+5745 2559
+5747 30424
+5749 60935
+5751 54972
+5752 58614
+5753 53539
+5754 39532
+5755 33193
+5756 33470
+5757 33926
+5759 45056
+5760 12989
+5763 3691
+5766 7264
+5767 7276
+5769 32955
+5770 66759
+5771 1372
+5773 12050
+5779 56887
+5780 80542
+5781 4047
+5783 28790
+5784 46154
+5785 42747
+5786 29123
+5787 46983
+5788 53059
+5789 3521
+5790 3519
+5791 3519
+5792 31533
+5793 34369
+5794 48331
+5795 23772
+5796 69181
+5799 37111
+5800 62302
+5801 47613
+5802 42000
+5804 56504
+5805 37112
+5807 28845
+5809 42273
+5810 42277
+5811 23534
+5812 23776
+5813 29741
+5814 56504
+5815 61675
+5816 31614
+5817 23776
+5818 62299
+5819 66256
+5820 58565
+5821 66628
+5824 5829
+5825 5829
+5826 5829
+5827 5829
+5828 34387
+5829 32689
+5830 26178
+5831 61675
+5833 56454
+5834 17275
+5835 30740
+5836 66675
+5837 67598
+5838 24630
+5841 35433
+5842 60462
+5843 8141
+5844 22530
+5851 22579
+5854 13070
+5869 72608
+5876 56504
+5878 26178
+5881 293
+5882 324
+5883 38084
+5884 34348
+5885 7410
+5886 34668
+5887 47665
+5888 56454
+5889 5888
+5890 13470
+5891 23239
+5892 23240
+5896 56504
+5903 64349
+5906 50260
+5908 54465
+5917 49284
+5922 58747
+5924 5922
+5927 56454
+5928 37111
+5929 37112
+5930 56504
+5931 37257
+5932 37258
+5933 42277
+5935 3531
+5936 57521
+5937 26178
+5938 26178
+5939 66676
+5940 54465
+5941 66675
+5942 31614
+5943 21073
+5943 39344
+5944 23533
+5947 31467
+5948 63845
+5950 33043
+5951 42273
+5952 39517
+5953 42277
+5954 56504
+5955 42273
+5956 54464
+5957 23776
+5958 54465
+5959 56504
+5960 56504
+5961 22210
+5963 73154
+5965 54465
+5971 49777
+5975 45617
+5980 56504
+5981 42273
+5982 42277
+5983 9465
+5984 56504
+5985 49284
+5986 8141
+5987 4047
+5988 26178
+5989 26174
+5990 22530
+5991 42273
+5992 37112
+5995 22786
+5997 23776
+5999 23776
+6000 17862
+6001 24231
+6003 37111
+6004 37112
+6005 10249
+6006 45746
+6007 56445
+6008 34175
+6009 39068
+6010 66675
+6011 23776
+6012 23776
+6013 56504
+6014 64350
+6015 39830
+6016 41299
+6019 43849
+6021 16188
+6022 72732
+6025 19730
+6026 10253
+6027 48695
+6028 72396
+6032 31609
+6033 20570
+6034 39598
+6035 43389
+6036 47163
+6037 47163
+6038 38202
+6039 42393
+6040 74780
+6041 52276
+6042 27679
+6043 2690
+6044 62310
+6045 63841
+6046 68058
+6047 69791
+6048 71772
+6049 71774
+6050 72159
+6051 72713
+6052 75456
+6053 76985
+6054 79552
+6055 79550
+6056 6043
+6057 6043
+6058 42273
+6059 42277
+6060 54465
+6066 39210
+6067 1980
+6068 66276
+6070 61890
+6071 56504
+6072 56416
+6073 67657
+6075 37258
+6076 24461
+6077 80977
+6078 67657
+6079 43846
+6080 21375
+6081 21375
+6082 43845
+6083 43846
+6084 43845
+6085 43849
+6086 31614
+6087 61675
+6088 49715
+6092 37257
+6093 46594
+6094 23533
+6095 22530
+6096 7624
+6097 23534
+6099 39164
+6100 42273
+6101 26178
+6104 56504
+6105 37258
+6106 23534
+6107 67657
+6108 54255
+6109 18468
+6110 42277
+6111 56504
+6112 47526
+6113 54561
+6114 4047
+6115 56504
+6117 880
+6118 880
+6119 15066
+6120 75978
+6121 52726
+6122 27206
+6135 54201
+6136 64723
+6138 47726
+6139 54465
+6141 56454
+6142 42277
+6143 54464
+6144 41668
+6145 62302
+6146 41669
+6147 54465
+6148 56504
+6149 54255
+6151 75978
+6154 60095
+6155 29741
+6158 54465
+6159 54464
+6160 66676
+6162 56504
+6163 37257
+6163 6164
+6164 62302
+6166 9126
+6170 23776
+6171 54465
+6173 54464
+6174 54465
+6175 67657
+6176 56503
+6177 56504
+6178 23776
+6179 56504
+6180 23776
+6181 23534
+6183 26178
+6185 6240
+6186 75580
+6188 42502
+6190 67657
+6191 26178
+6193 36802
+6194 37258
+6196 67657
+6197 37258
+6198 43845
+6199 43849
+6200 43846
+6201 54465
+6202 53057
+6203 62297
+6204 62299
+6205 2911
+6208 40355
+6209 54464
+6210 54465
+6211 37258
+6212 8949
+6213 6214
+6214 57521
+6215 35413
+6216 80935
+6217 42273
+6218 42277
+6219 23569
+6220 23569
+6222 23938
+6223 11311
+6224 8477
+6225 8476
+6227 8149
+6229 17539
+6233 1808
+6234 56454
+6235 26178
+6240 293
+6241 56454
+6243 64527
+6244 32390
+6245 50863
+6246 64694
+6247 42277
+6249 9193
+6250 54465
+6251 31614
+6252 22530
+6253 62302
+6254 37258
+6255 42277
+6257 55660
+6258 54465
+6259 26178
+6262 37112
+6263 64349
+6264 31614
+6265 37910
+6267 66676
+6268 23534
+6269 54465
+6270 54465
+6271 31614
+6272 37911
+6273 66676
+6274 37112
+6275 48321
+6276 23776
+6277 26178
+6278 51752
+6279 22530
+6280 67657
+6281 67656
+6282 54465
+6284 7531
+6285 72569
+6286 23534
+6287 293
+6287 6309
+6289 1372
+6289 6309
+6290 24492
+6291 77702
+6292 46849
+6293 51553
+6294 59570
+6295 80832
+6296 33949
+6299 50923
+6300 60489
+6301 35428
+6302 19065
+6302 6301
+6303 22530
+6305 23569
+6307 80963
+6308 20724
+6309 36569
+6310 30263
+6312 23626
+6313 28405
+6314 26294
+6315 26376
+6316 27038
+6317 27746
+6318 70670
+6319 30850
+6320 10250
+6321 34717
+6322 34848
+6323 35284
+6324 35413
+6325 36976
+6326 38026
+6327 68177
+6328 67245
+6329 48265
+6330 64755
+6331 45515
+6332 46649
+6333 47037
+6334 48371
+6335 34925
+6336 51874
+6337 52107
+6338 52604
+6339 53513
+6340 77695
+6341 54259
+6342 58546
+6343 67423
+6344 60554
+6345 61141
+6346 48554
+6347 33327
+6348 39363
+6349 67530
+6350 68378
+6351 68395
+6352 27745
+6353 28597
+6354 71340
+6355 71341
+6356 71774
+6357 72365
+6358 17857
+6359 77702
+6360 76873
+6361 58576
+6362 37371
+6363 79796
+6364 79766
+6365 80510
+6366 80772
+6367 41843
+6368 80881
+6369 20518
+6370 52283
+6371 43849
+6372 43846
+6373 7494
+6374 39102
+6375 31614
+6377 22530
+6378 26174
+6379 22530
+6381 68234
+6383 37112
+6384 54465
+6385 56504
+6387 31614
+6388 42277
+6389 11968
+6390 15068
+6391 63485
+6392 72475
+6397 5165
+6398 61228
+6399 5167
+6401 13623
+6402 18806
+6406 43846
+6409 293
+6410 10080
+6411 70018
+6412 68441
+6413 37112
+6414 66676
+6416 49461
+6417 30584
+6418 38092
+6419 62968
+6420 46465
+6421 42273
+6422 22530
+6423 40331
+6425 31614
+6427 2988
+6431 69475
+6436 36381
+6437 30774
+6437 44212
+6437 46811
+6438 29256
+6439 52727
+6440 53328
+6441 49622
+6442 21752
+6443 64090
+6445 71615
+6446 23751
+6447 23776
+6448 71613
+6450 46827
+6451 62302
+6453 37112
+6454 46828
+6457 75631
+6458 76037
+6463 12820
+6464 46595
+6465 26178
+6466 26174
+6467 22530
+6469 69180
+6470 71201
+6472 70499
+6473 17010
+6474 79915
+6475 30521
+6476 53773
+6477 48564
+6478 77598
+6479 36751
+6479 45989
+6480 36221
+6481 52016
+6483 41609
+6483 68234
+6487 44439
+6487 856
+6488 1846
+6489 29143
+6490 76767
+6491 31389
+6492 29162
+6496 27917
+6497 24809
+6498 34812
+6501 60530
+6506 16405
+6511 9084
+6512 9085
+6513 80977
+6514 80973
+6515 80977
+6516 42800
+6517 56088
+6518 56088
+6519 56088
+6520 56088
+6521 56088
+6525 60367
+6526 22367
+6527 63788
+6527 76580
+6528 52382
+6530 59435
+6531 5168
+6536 27521
+6539 59990
+6544 7668
+6546 52280
+6547 60315
+6548 13210
+6549 21407
+6550 21394
+6551 52287
+6552 52287
+6553 49715
+6554 34175
+6555 49715
+6556 42044
+6557 34175
+6558 21394
+6559 51134
+6559 52287
+6560 52287
+6561 34175
+6562 49715
+6563 24769
+6564 26919
+6565 30263
+6566 15992
+6567 49715
+6568 62811
+6569 21235
+6570 60530
+6571 71823
+6573 23776
+6574 54464
+6575 54465
+6577 6634
+6579 22300
+6579 59211
+6580 23534
+6581 38633
+6589 38633
+6591 55659
+6593 52280
+6594 29741
+6596 67152
+6596 67666
+6598 56504
+6601 29240
+6602 58489
+6603 69662
+6604 37112
+6606 46910
+6612 10334
+6615 38044
+6616 14816
+6617 13351
+6618 80973
+6619 62302
+6620 31614
+6621 57495
+6622 19752
+6624 41299
+6625 52287
+6626 21394
+6630 6309
+6632 1808
+6633 56454
+6634 19095
+6636 37258
+6644 10334
+6645 19254
+6648 40427
+6654 71190
+6655 62207
+6656 56416
+6657 56415
+6658 42277
+6659 42273
+6660 43846
+6661 43845
+6665 37258
+6666 37257
+6667 5168
+6669 72880
+6672 43846
+6675 38921
+6676 23202
+6678 51103
+6681 2030
+6682 40462
+6683 5710
+6686 20724
+6687 67657
+6688 70627
+6693 15611
+6695 41651
+6696 78816
+6697 9193
+6698 25426
+6701 44018
+6702 62946
+6703 71382
+6704 73669
+6705 81281
+6706 624
+6709 22995
+6710 22997
+6711 67657
+6712 5029
+6713 13867
+6714 43846
+6715 3575
+6721 19035
+6722 21394
+6723 22530
+6734 27019
+6735 35075
+6736 53065
+6737 50385
+6738 52578
+6739 4694
+6740 56075
+6741 21394
+6743 6498
+6744 23534
+6745 23533
+6746 62359
+6747 23534
+6748 71100
+6749 26174
+6750 26178
+6751 23533
+6752 1615
+6763 33014
+6765 67657
+6767 47864
+6768 30084
+6768 33165
+6769 54465
+6770 79300
+6773 61001
+6774 73134
+6775 43345
+6776 37258
+6777 37257
+6778 40582
+6779 10872
+6782 22315
+6783 69701
+6786 10334
+6788 48750
+6789 29144
+6790 30687
+6791 43862
+6794 510
+6795 511
+6797 67657
+6806 48844
+6807 43571
+6808 59334
+6809 24459
+6810 24464
+6814 624
+6816 67657
+6817 6926
+6818 47143
+6819 6309
+6820 68522
+6821 21396
+6828 52020
+6829 23534
+6830 70688
+6831 37112
+6832 26178
+6833 76580
+6834 76580
+6835 37112
+6849 43647
+6850 60530
+6852 724
+6854 20724
+6855 2722
+6856 32957
+6857 69273
+6859 26178
+6860 26174
+6862 37258
+6863 15853
+6864 10253
+6866 20580
+6867 3203
+6868 43151
+6869 6740
+6876 78110
+6877 80250
+6878 28301
+6879 75142
+6880 38131
+6881 38480
+6882 6881
+6883 43432
+6884 43584
+6885 47483
+6886 42747
+6887 74119
+6888 27638
+6889 73432
+6890 52276
+6891 52276
+6892 36637
+6893 52046
+6894 53479
+6895 54691
+6896 42214
+6897 60633
+6898 14780
+6899 70082
+6900 45056
+6901 54587
+6902 37937
+6903 7645
+6904 75456
+6905 37579
+6906 6880
+6907 6309
+6909 10474
+6912 42984
+6913 64480
+6914 56169
+6918 80001
+6921 63580
+6922 23832
+6923 49777
+6924 23746
+6925 49777
+6926 21235
+6927 4040
+6928 35740
+6932 31762
+6933 15611
+6934 26178
+6935 26174
+6936 37615
+6936 62453
+6941 5709
+6942 19730
+6944 53057
+6946 15622
+6949 29741
+6950 49091
+6951 32368
+6952 43525
+6954 27080
+6955 15611
+6958 51264
+6960 64349
+6961 22530
+6966 42765
+6969 293
+6970 19721
+6972 23533
+6973 26178
+6976 80943
+6977 26178
+6979 37258
+6980 37257
+6982 42277
+6983 51545
+6984 17396
+6985 32241
+6986 5314
+6988 50943
+6989 26174
+6990 26178
+6992 22447
+6993 54552
+6994 50281
+6996 43846
+6997 27080
+6998 27080
+6999 55663
+7000 64733
+7001 58463
+7002 52120
+7003 43111
+7004 33143
+7005 33563
+7006 52727
+7007 45751
+7008 80781
+7009 67868
+7010 37006
+7011 79516
+7014 43432
+7015 293
+7019 23226
+7020 5629
+7021 3591
+7022 42273
+7023 22530
+7025 42277
+7027 3572
+7028 3573
+7038 7145
+7040 26174
+7041 67657
+7043 42277
+7044 23776
+7045 42277
+7048 15853
+7049 37518
+7050 36569
+7051 68476
+7052 66280
+7055 23776
+7058 23534
+7059 53291
+7060 66496
+7061 53482
+7062 22530
+7063 26178
+7064 26178
+7066 25544
+7068 54476
+7069 26178
+7071 46353
+7080 66676
+7082 293
+7083 56454
+7085 42277
+7092 22530
+7096 67181
+7096 69516
+7099 37258
+7106 26768
+7109 22720
+7110 42748
+7114 14918
+7116 55899
+7117 26174
+7118 26178
+7119 8397
+7124 31614
+7125 23533
+7126 23534
+7127 42273
+7128 42277
+7129 43846
+7130 43844
+7131 43844
+7132 43846
+7133 43844
+7134 22210
+7135 31614
+7138 9085
+7140 54109
+7141 53278
+7141 56513
+7144 6907
+7145 3572
+7147 37258
+7149 42856
+7151 26178
+7152 66675
+7153 66676
+7154 26174
+7155 22530
+7158 52280
+7159 37258
+7161 54465
+7162 44341
+7164 43845
+7165 43846
+7166 39017
+7168 23619
+7169 8193
+7172 34418
+7173 50634
+7175 66675
+7176 23534
+7177 27086
+7178 44369
+7179 23533
+7181 37112
+7183 49777
+7187 42273
+7188 42277
+7189 19035
+7190 23706
+7191 23706
+7192 49715
+7193 25613
+7197 79300
+7198 54465
+7200 45232
+7202 20572
+7203 17860
+7205 67657
+7207 9193
+7209 44486
+7210 11257
+7212 37112
+7213 37111
+7214 62302
+7215 37112
+7216 44478
+7217 43612
+7218 37112
+7219 43612
+7220 43612
+7221 43612
+7222 42277
+7223 66676
+7224 26178
+7226 67657
+7227 8486
+7228 43845
+7229 43846
+7230 23533
+7231 54464
+7232 54465
+7233 23533
+7234 22530
+7235 23534
+7236 6043
+7237 6025
+7252 624
+7253 15986
+7254 3532
+7255 56454
+7256 26178
+7258 67656
+7259 62302
+7260 23776
+7261 54464
+7262 54465
+7263 23776
+7264 6309
+7265 19730
+7266 624
+7267 32168
+7268 25426
+7269 25426
+7270 79125
+7271 52046
+7272 55126
+7273 43392
+7274 56454
+7275 62712
+7276 9002
+7277 35493
+7278 72217
+7280 15611
+7282 42273
+7283 42277
+7284 66676
+7285 23533
+7286 23534
+7289 57315
+7292 23775
+7293 63862
+7294 68817
+7295 69272
+7299 67657
+7301 293
+7302 56454
+7303 25592
+7304 432
+7307 52698
+7310 6309
+7316 12150
+7317 2272
+7320 64349
+7321 1846
+7324 78887
+7325 54240
+7332 57106
+7339 42277
+7340 46594
+7341 62302
+7342 31614
+7345 54465
+7346 54464
+7349 1846
+7350 16553
+7351 59394
+7352 60530
+7353 37955
+7354 67011
+7360 24509
+7361 26178
+7362 26174
+7365 16529
+7366 68239
+7367 37258
+7368 54465
+7369 37112
+7370 23776
+7371 67657
+7372 41669
+7373 41668
+7376 29240
+7379 54464
+7380 54465
+7381 57591
+7382 54465
+7383 64349
+7384 23533
+7385 56504
+7386 26178
+7391 56504
+7392 22137
+7393 67657
+7394 67657
+7395 23776
+7396 31614
+7397 46594
+7398 62302
+7399 31614
+7400 21235
+7401 47693
+7401 75978
+7402 29483
+7405 42273
+7406 42277
+7407 42273
+7408 42277
+7410 72473
+7411 17788
+7412 39246
+7413 59010
+7414 59012
+7420 74168
+7425 57314
+7428 72001
+7430 26757
+7431 21381
+7432 61228
+7433 5241
+7434 42574
+7437 48342
+7438 67868
+7439 32648
+7440 70107
+7446 50996
+7450 27579
+7451 35661
+7453 22636
+7458 54464
+7459 54465
+7460 29741
+7463 5629
+7464 17269
+7467 40519
+7468 63421
+7469 41669
+7471 42273
+7472 42277
+7473 4047
+7475 37112
+7476 37111
+7479 56504
+7481 69157
+7482 66676
+7484 63963
+7485 51699
+7488 69791
+7490 26695
+7491 61822
+7492 40686
+7494 57315
+7495 22530
+7496 39102
+7501 68048
+7502 18754
+7503 42962
+7504 37955
+7505 37955
+7506 37258
+7509 78364
+7510 18249
+7511 5767
+7512 41070
+7513 23256
+7514 62709
+7515 15855
+7516 81056
+7517 57313
+7518 30740
+7524 21394
+7526 42974
+7527 73104
+7528 45779
+7529 64251
+7530 45679
+7531 7630
+7532 63474
+7533 25749
+7534 23533
+7535 26178
+7539 80138
+7543 72928
+7544 71823
+7545 62302
+7546 56503
+7547 56504
+7554 38403
+7555 9037
+7557 59282
+7558 73238
+7559 24147
+7565 39068
+7566 21512
+7567 21870
+7568 77176
+7572 33715
+7573 67203
+7576 23776
+7577 45837
+7579 41555
+7580 29159
+7582 24119
+7582 40765
+7582 48974
+7583 20785
+7584 31939
+7585 59394
+7586 56792
+7591 43987
+7597 80935
+7604 37975
+7606 15986
+7619 6309
+7620 7410
+7621 81029
+7623 9002
+7624 6309
+7625 3518
+7626 5790
+7627 21971
+7628 31626
+7629 4807
+7630 7410
+7631 23345
+7631 56272
+7632 56311
+7633 56454
+7634 31631
+7635 60520
+7636 62773
+7637 62773
+7639 31224
+7640 60357
+7642 40063
+7644 70867
+7645 78816
+7646 51401
+7648 71766
+7651 60530
+7652 60530
+7663 76447
+7666 22530
+7667 71739
+7668 28908
+7676 38044
+7677 19733
+7680 63862
+7682 37258
+7686 37112
+7690 39068
+7693 71950
+7694 23776
+7695 46524
+7697 67657
+7698 56504
+7701 62297
+7703 5168
+7706 38072
+7707 26174
+7708 22530
+7709 26178
+7710 17862
+7711 23533
+7718 35649
+7720 57529
+7721 19954
+7722 67657
+7728 13963
+7729 17276
+7730 18825
+7733 79158
+7736 3588
+7737 56454
+7739 3753
+7740 35740
+7741 79242
+7743 31745
+7744 33130
+7746 37112
+7751 62891
+7752 32320
+7753 9193
+7755 38086
+7757 56454
+7758 7757
+7759 47665
+7760 18616
+7761 49904
+7762 57720
+7763 293
+7764 43432
+7765 56454
+7768 73600
+7771 8950
+7772 16232
+7774 56675
+7777 45056
+7778 74926
+7801 58747
+7803 54465
+7805 28724
+7806 3707
+7807 13066
+7808 71766
+7809 12873
+7810 66495
+7811 66495
+7812 52382
+7821 23776
+7822 37257
+7823 62302
+7824 11311
+7825 39246
+7826 27538
+7827 13254
+7829 38044
+7830 17275
+7834 56504
+7835 56504
+7836 42277
+7837 29741
+7838 41669
+7839 67657
+7840 26178
+7841 22530
+7842 43846
+7843 21375
+7844 21375
+7845 21375
+7846 26178
+7847 31614
+7848 43846
+7849 42277
+7850 23776
+7851 26178
+7852 26178
+7853 29741
+7854 50841
+7855 16232
+7856 23533
+7857 46619
+7858 46619
+7859 53759
+7860 46619
+7861 46619
+7862 46619
+7863 30774
+7863 44212
+7864 49796
+7865 41127
+7866 52727
+7867 61686
+7868 54972
+7869 31137
+7870 79171
+7871 66935
+7872 66186
+7873 23776
+7876 56504
+7878 49818
+7879 38921
+7879 67801
+7881 62299
+7882 34936
+7884 35494
+7885 60676
+7887 66675
+7889 53057
+7890 23534
+7891 26174
+7892 26178
+7893 67657
+7894 56503
+7895 56504
+7896 80977
+7897 64349
+7898 64350
+7899 22530
+7900 42273
+7901 42277
+7903 43101
+7904 32035
+7906 18008
+7913 8949
+7914 12668
+7919 19733
+7920 15853
+7920 4761
+7921 30254
+7922 56454
+7923 37112
+7924 68125
+7924 76580
+7925 3935
+7926 3934
+7928 18008
+7929 8477
+7930 26178
+7931 57314
+7936 66676
+7941 37112
+7942 37112
+7946 26178
+7948 42277
+7949 23533
+7951 67657
+7952 56415
+7953 56416
+7954 34218
+7955 67573
+7956 67573
+7957 28241
+7957 53446
+7958 67573
+7964 48576
+7965 28241
+7966 28241
+7967 48265
+7968 28241
+7972 5168
+7973 46595
+7974 37111
+7976 35525
+7978 65339
+7979 20959
+7980 46827
+7981 31614
+7982 37112
+7983 37112
+7984 62299
+7985 37112
+7989 60454
+7997 56416
+7998 324
+7999 32913
+8001 69795
+8007 38092
+8012 38921
+8014 47976
+8016 57106
+8022 10813
+8028 38921
+8028 67801
+8029 67876
+8030 6043
+8031 56133
+8032 4442
+8033 9466
+8035 52055
+8036 23776
+8037 22530
+8039 67657
+8043 8393
+8044 69285
+8046 69285
+8060 26178
+8061 78365
+8062 57315
+8063 43707
+8064 38959
+8071 77956
+8073 29741
+8082 66070
+8089 32177
+8092 24119
+8093 13668
+8094 13669
+8095 13670
+8098 16233
+8103 29741
+8106 13070
+8107 19726
+8110 8477
+8111 20199
+8113 65627
+8114 29071
+8117 31533
+8119 13351
+8120 624
+8122 46492
+8124 54732
+8130 57106
+8138 23776
+8141 49284
+8147 53215
+8148 3187
+8149 49777
+8150 21971
+8151 52046
+8152 31209
+8152 40462
+8157 23776
+8158 67657
+8159 67657
+8162 42984
+8165 63831
+8167 39670
+8173 49284
+8176 23776
+8177 37112
+8178 23776
+8179 56415
+8180 37258
+8181 24462
+8182 24464
+8184 23534
+8185 22530
+8186 23776
+8187 35461
+8188 33581
+8189 56416
+8190 44167
+8191 60462
+8192 77656
+8193 49284
+8194 20955
+8195 36957
+8197 31542
+8198 54255
+8199 63860
+8200 17122
+8201 5015
+8203 77659
+8206 41669
+8207 66676
+8208 66675
+8210 43845
+8211 43849
+8212 43846
+8214 47551
+8215 47551
+8216 47551
+8217 43845
+8218 67657
+8219 37112
+8220 66676
+8221 23533
+8222 53056
+8223 53057
+8224 31614
+8225 54465
+8226 42277
+8229 26174
+8230 22530
+8231 42277
+8232 42273
+8233 42277
+8238 52280
+8253 31614
+8258 67657
+8266 63771
+8268 46852
+8269 25544
+8270 37258
+8272 37258
+8275 56416
+8276 69106
+8278 29741
+8279 52382
+8280 30575
+8281 36304
+8283 57314
+8285 68381
+8288 54465
+8289 11311
+8290 76580
+8294 66252
+8297 31088
+8299 65632
+8302 39463
+8304 9465
+8306 58565
+8307 26178
+8308 37258
+8314 27263
+8315 43997
+8317 56504
+8318 31614
+8319 54465
+8320 66676
+8321 37910
+8322 67657
+8323 54464
+8324 22530
+8325 26178
+8326 22530
+8327 22530
+8328 23776
+8329 64351
+8330 67657
+8331 67657
+8333 42273
+8334 42277
+8335 56504
+8336 64350
+8337 42273
+8338 42277
+8345 37258
+8348 17041
+8349 17042
+8350 23776
+8352 69285
+8353 39632
+8354 9466
+8355 11591
+8356 23586
+8357 37353
+8358 71766
+8359 16529
+8361 23335
+8362 47493
+8363 36379
+8364 32209
+8365 2272
+8367 55660
+8368 39556
+8369 33581
+8372 25076
+8376 2911
+8377 53053
+8378 67086
+8380 18409
+8381 56504
+8382 26178
+8385 2814
+8386 18318
+8387 75978
+8388 37503
+8391 16232
+8392 1372
+8393 66499
+8395 53982
+8396 28908
+8398 41205
+8399 41203
+8401 8391
+8404 40547
+8405 23534
+8406 23533
+8407 57833
+8408 42277
+8409 37111
+8412 67657
+8413 23534
+8414 51885
+8415 42277
+8416 42277
+8417 54464
+8418 54464
+8419 54465
+8420 54465
+8421 42277
+8426 44439
+8427 31614
+8428 80973
+8429 80977
+8430 26174
+8431 26178
+8434 12565
+8435 12566
+8437 36569
+8438 814
+8441 1372
+8442 57521
+8449 31105
+8454 54052
+8465 10792
+8468 10216
+8469 12981
+8472 38921
+8472 67801
+8473 15540
+8474 37258
+8476 746
+8477 8949
+8480 37112
+8483 66676
+8484 56504
+8486 22468
+8488 41995
+8489 41568
+8495 36845
+8498 42273
+8499 42277
+8500 72854
+8501 31614
+8503 39102
+8504 39101
+8505 31614
+8506 68045
+8508 4047
+8509 63133
+8510 68045
+8511 31312
+8512 39707
+8513 62809
+8514 4047
+8517 79997
+8518 81168
+8519 23533
+8520 23534
+8521 34495
+8522 24769
+8523 56075
+8524 58826
+8525 28750
+8526 49715
+8527 25061
+8529 79366
+8531 38090
+8532 54464
+8533 31614
+8534 11314
+8535 11314
+8536 11314
+8537 8536
+8538 11314
+8539 31614
+8540 23776
+8541 23534
+8542 22530
+8544 3588
+8545 56454
+8547 54269
+8548 67655
+8551 38044
+8557 52280
+8560 64297
+8561 45643
+8562 23846
+8563 61858
+8564 80479
+8565 43615
+8566 11311
+8570 78624
+8572 22769
+8573 41571
+8574 40786
+8575 49777
+8577 75979
+8578 15203
+8578 16907
+8579 16909
+8587 58798
+8589 56504
+8592 41669
+8593 74926
+8600 21169
+8601 33235
+8602 25634
+8603 40004
+8604 23401
+8605 59394
+8606 65885
+8607 27679
+8608 33130
+8609 53057
+8610 53056
+8615 67586
+8616 74181
+8617 37112
+8622 48577
+8623 48577
+8624 48577
+8629 37112
+8631 49284
+8645 8931
+8649 33563
+8650 52280
+8657 23585
+8658 61828
+8659 37258
+8660 45536
+8667 37258
+8668 3135
+8669 48780
+8670 28991
+8674 33581
+8675 23776
+8684 37112
+8685 58172
+8686 7264
+8689 6309
+8690 18954
+8691 53053
+8692 56454
+8693 60520
+8694 68508
+8696 18232
+8697 17042
+8698 37258
+8702 10789
+8703 69153
+8704 20955
+8705 51803
+8706 26730
+8706 59596
+8707 39598
+8712 24164
+8712 31182
+8712 56513
+8714 1471
+8715 1472
+8716 56513
+8716 56917
+8722 37503
+8728 1845
+8733 53056
+8734 53057
+8735 58565
+8736 54464
+8737 23534
+8738 23776
+8739 31614
+8740 37258
+8743 43845
+8744 37258
+8745 18616
+8746 37111
+8747 43846
+8748 57315
+8750 63962
+8751 48898
+8752 67656
+8753 54255
+8754 26178
+8755 26174
+8756 56504
+8757 56503
+8758 54464
+8759 54465
+8760 54465
+8761 22210
+8762 54464
+8763 54465
+8764 66675
+8765 23775
+8766 23776
+8767 31614
+8769 54465
+8771 43846
+8772 79897
+8773 43845
+8774 43846
+8775 79897
+8776 79897
+8777 79897
+8778 79897
+8779 79897
+8780 79897
+8781 79897
+8782 79897
+8783 79897
+8784 79897
+8785 43846
+8786 79897
+8787 22210
+8788 22210
+8789 22209
+8790 54465
+8791 54464
+8792 29741
+8793 26178
+8794 26178
+8796 56919
+8797 67657
+8798 37258
+8799 43849
+8800 31614
+8801 41668
+8802 41669
+8803 22530
+8804 22210
+8805 22208
+8806 23776
+8808 42277
+8810 37257
+8811 37258
+8813 22530
+8814 42277
+8815 54465
+8816 23534
+8817 79970
+8818 79971
+8820 23776
+8821 43845
+8822 43849
+8823 23534
+8824 22210
+8825 37258
+8826 53056
+8827 53057
+8828 66676
+8829 54465
+8830 22530
+8831 54465
+8832 23776
+8833 54464
+8834 22530
+8835 30774
+8835 46811
+8836 37202
+8837 52727
+8838 45258
+8840 24490
+8840 63149
+8841 50185
+8849 58371
+8860 1372
+8861 6309
+8862 37258
+8863 26157
+8865 48559
+8870 52876
+8871 63026
+8872 63026
+8873 28873
+8874 6309
+8875 16405
+8876 8877
+8877 56454
+8878 23533
+8879 22530
+8880 66675
+8881 22208
+8882 42277
+8883 26178
+8884 26174
+8885 74893
+8886 26178
+8887 42277
+8888 22530
+8889 54465
+8890 41505
+8891 41505
+8893 624
+8894 53049
+8895 23569
+8896 35048
+8898 23569
+8900 13070
+8900 40462
+8905 66675
+8906 66675
+8910 37112
+8912 37258
+8914 29741
+8915 54255
+8918 510
+8919 511
+8921 624
+8923 9002
+8924 48129
+8925 7504
+8926 21394
+8927 23585
+8928 23534
+8930 5168
+8931 67876
+8932 15335
+8933 61353
+8934 7504
+8935 76444
+8936 39640
+8939 21894
+8940 43497
+8941 77598
+8943 52553
+8946 41906
+8947 50041
+8948 68149
+8949 747
+8950 1372
+8953 21407
+8954 18616
+8955 67655
+8956 79718
+8957 41666
+8958 47282
+8959 31981
+8960 32115
+8961 34007
+8962 59317
+8963 39544
+8964 33342
+8965 29158
+8966 47796
+8967 38005
+8968 47665
+8969 54162
+8970 54438
+8971 54438
+8972 56454
+8973 56474
+8974 55933
+8975 80514
+8976 80514
+8977 47665
+8978 47523
+8979 62747
+8980 15298
+8981 65225
+8982 65225
+8983 65620
+8984 35093
+8985 61858
+8986 37428
+8987 16713
+8988 67051
+8989 2911
+8990 8972
+8991 61228
+8992 76610
+8993 53508
+8994 77084
+8996 624
+8998 9003
+8999 26174
+9001 67657
+9002 57521
+9003 9002
+9006 1372
+9007 11239
+9009 56454
+9011 54464
+9014 31542
+9016 19006
+9016 51805
+9017 31614
+9021 15986
+9022 1808
+9024 21114
+9027 40450
+9034 4694
+9035 40613
+9036 50092
+9037 58838
+9038 31614
+9039 22530
+9040 22530
+9042 50264
+9043 33145
+9045 23569
+9046 21394
+9047 71614
+9048 19035
+9049 19035
+9050 19035
+9051 4694
+9052 19035
+9053 19035
+9054 45880
+9056 19035
+9057 19035
+9058 19035
+9059 50385
+9060 79569
+9062 28094
+9063 50387
+9064 49715
+9065 21894
+9070 7624
+9072 823
+9073 59337
+9074 17041
+9076 3994
+9077 34660
+9078 624
+9080 37112
+9084 1372
+9085 9003
+9086 9087
+9087 56454
+9088 9087
+9090 1372
+9091 50385
+9093 13573
+9094 9095
+9095 56454
+9098 26178
+9100 26174
+9101 29741
+9102 53056
+9103 26178
+9104 10253
+9105 80209
+9106 7028
+9110 9399
+9111 56454
+9112 66051
+9113 6309
+9114 9111
+9115 69791
+9116 65124
+9117 73336
+9118 75804
+9119 79800
+9120 80773
+9121 9113
+9122 9113
+9124 61228
+9125 746
+9126 8949
+9127 52420
+9130 17290
+9133 67657
+9138 37258
+9140 66676
+9146 78268
+9149 31540
+9150 56548
+9155 53953
+9156 28908
+9157 66496
+9158 68759
+9159 12570
+9160 25867
+9161 80487
+9165 37503
+9166 16884
+9168 41668
+9169 62302
+9170 41669
+9171 22530
+9172 22530
+9173 54255
+9174 22530
+9177 1372
+9178 43101
+9179 56454
+9180 1372
+9183 21467
+9189 42273
+9190 42277
+9191 42273
+9192 42277
+9193 6309
+9194 15853
+9197 48252
+9198 80250
+9199 35649
+9200 38480
+9201 46184
+9202 48265
+9203 56454
+9204 60454
+9206 67998
+9207 53703
+9208 9002
+9209 41070
+9219 43432
+9221 33336
+9222 22034
+9222 64694
+9225 53057
+9226 26178
+9227 23534
+9228 47010
+9229 47010
+9230 47010
+9231 47010
+9232 47010
+9233 47010
+9234 47010
+9235 23533
+9236 9465
+9240 80918
+9241 52727
+9242 55512
+9245 21169
+9246 66592
+9259 67657
+9260 42984
+9261 34246
+9264 14098
+9265 51867
+9266 23672
+9267 6056
+9268 22066
+9270 75814
+9271 65318
+9272 6926
+9277 41054
+9278 53727
+9279 74893
+9280 37112
+9281 54465
+9282 50967
+9283 1936
+9285 74738
+9287 37518
+9290 69285
+9291 41203
+9292 37503
+9300 18616
+9301 60590
+9302 65075
+9303 26302
+9304 67879
+9305 19733
+9306 18616
+9307 38044
+9308 37112
+9319 41669
+9322 60533
+9323 42984
+9324 71766
+9326 75978
+9327 21235
+9328 7668
+9330 9339
+9333 51840
+9334 51839
+9336 2911
+9337 58747
+9338 79880
+9339 1372
+9340 585
+9342 2911
+9343 23136
+9344 24708
+9345 24883
+9346 25540
+9347 68654
+9348 79125
+9349 61961
+9350 27991
+9351 30095
+9352 30850
+9353 34651
+9354 36265
+9355 7410
+9356 42765
+9357 42765
+9358 48265
+9359 48326
+9360 25430
+9361 53053
+9362 25181
+9363 54622
+9364 54622
+9365 12096
+9366 56454
+9367 56649
+9368 58576
+9369 75201
+9370 59847
+9371 18616
+9372 61321
+9373 30988
+9374 62546
+9375 43718
+9376 39191
+9377 72747
+9378 63923
+9379 42768
+9380 61961
+9381 74006
+9382 76979
+9383 59894
+9384 81030
+9385 53053
+9386 33442
+9387 80720
+9388 81281
+9391 23563
+9392 37112
+9395 23533
+9396 49777
+9397 67657
+9399 25854
+9400 58619
+9401 8534
+9402 79951
+9403 9006
+9404 9007
+9405 48206
+9406 71661
+9407 76759
+9409 34256
+9417 5168
+9418 42984
+9419 61961
+9420 15066
+9421 15068
+9422 22636
+9427 23686
+9434 80599
+9437 3753
+9438 70189
+9439 51670
+9440 35740
+9442 39598
+9443 51638
+9446 18769
+9447 74357
+9448 67598
+9449 58033
+9450 4807
+9451 45708
+9452 74119
+9453 2911
+9454 20565
+9456 66491
+9457 4050
+9459 8396
+9461 50965
+9462 71219
+9463 8149
+9464 53982
+9465 28908
+9466 66494
+9467 67996
+9469 71598
+9471 80778
+9472 12570
+9475 9651
+9478 34389
+9481 20955
+9482 38868
+9483 80902
+9484 38869
+9485 80904
+9486 64025
+9487 37168
+9488 80902
+9489 67400
+9491 78268
+9492 23069
+9494 32612
+9495 69351
+9497 47665
+9498 47665
+9504 67573
+9507 31745
+9510 32880
+9511 60533
+9512 38168
+9525 71897
+9527 40691
+9528 46457
+9534 78268
+9536 34649
+9537 39068
+9544 80514
+9552 21920
+9553 21921
+9554 42277
+9555 1372
+9556 9557
+9557 56454
+9564 81317
+9565 45149
+9567 62263
+9573 20724
+9574 41205
+9575 56548
+9578 38199
+9579 60932
+9581 22468
+9583 17331
+9585 5166
+9588 43102
+9589 7412
+9590 37111
+9591 62302
+9592 37112
+9594 71739
+9595 7668
+9596 9156
+9597 9156
+9598 56503
+9599 56504
+9601 7668
+9602 68654
+9604 2911
+9605 2178
+9607 56707
+9608 62302
+9609 42984
+9610 64480
+9611 23299
+9612 78479
+9613 53874
+9614 11311
+9615 17237
+9616 46595
+9617 15101
+9622 2911
+9631 62298
+9632 6309
+9636 26178
+9637 75632
+9638 55563
+9639 33143
+9640 52727
+9642 41854
+9645 69269
+9646 75997
+9647 37955
+9648 21071
+9651 18409
+9652 17037
+9653 2283
+9654 285
+9655 5109
+9658 32264
+9661 39707
+9662 26178
+9663 46945
+9666 14209
+9667 14208
+9668 74071
+9669 35338
+9670 2911
+9674 49022
+9675 30426
+9676 23534
+9677 23533
+9679 9652
+9681 18409
+9683 1846
+9685 69072
+9689 8477
+9690 20199
+9695 5629
+9696 17290
+9702 5367
+9703 5368
+9704 624
+9710 22783
+9712 68441
+9716 69285
+9717 18849
+9718 18850
+9721 15986
+9722 1808
+9724 18409
+9728 8477
+9729 15363
+9732 8396
+9735 21232
+9737 8950
+9738 5109
+9740 3531
+9741 57521
+9743 12199
+9748 42273
+9749 42277
+9755 37560
+9756 74893
+9757 18849
+9759 18850
+9760 1372
+9761 56454
+9768 40711
+9769 11688
+9770 11690
+9778 75631
+9780 38901
+9782 9783
+9783 58246
+9785 67657
+9793 891
+9794 12050
+9795 624
+9797 76165
+9798 26337
+9799 2357
+9800 18616
+9801 46087
+9802 22469
+9804 293
+9805 56454
+9806 9805
+9807 54465
+9809 61057
+9812 9813
+9813 52280
+9814 9813
+9815 9813
+9816 5763
+9820 78036
+9821 74893
+9823 59242
+9824 75804
+9828 36942
+9829 40823
+9830 62124
+9831 57127
+9832 51499
+9833 20775
+9835 34003
+9836 72076
+9837 53328
+9838 53328
+9839 63149
+9840 55154
+9841 28246
+9842 52779
+9845 42984
+9846 39137
+9850 12272
+9851 12275
+9852 41205
+9854 17972
+9855 15986
+9856 18954
+9859 67657
+9860 79067
+9862 12261
+9863 3151
+9865 9866
+9866 57521
+9868 5109
+9870 17972
+9872 39902
+9874 1846
+9875 2988
+9876 510
+9877 511
+9882 37258
+9884 8477
+9885 20199
+9886 27906
+9889 36942
+9890 56441
+9891 33009
+9892 28559
+9893 37773
+9897 30707
+9898 41076
+9899 30841
+9900 4688
+9901 6025
+9902 76985
+9903 33442
+9904 9890
+9905 9890
+9906 9890
+9907 10249
+9913 66675
+9914 66676
+9917 1846
+9918 14626
+9919 18051
+9921 22988
+9923 52280
+9925 18849
+9927 18850
+9929 38044
+9930 67657
+9934 9465
+9937 1846
+9940 4203
+9945 80331
+9948 76561
+9952 74527
+9957 74926
+9959 60689
+9962 60416
+9963 6855
+9964 51662
+9965 51662
+9966 37112
+9968 28790
+9971 12565
+9972 12566
+9975 54465
+9977 5629
+9978 17290
+9981 54465
+9982 7623
+9983 52037
+9984 69285
+9987 5629
+9988 3591
+9990 23776
+9992 15986
+9993 14250
+9994 12287
+9995 1846
+9997 28094
+9999 74893
+10005 13067
+10008 1372
+10009 585
+10012 81413
+10013 28503
+10017 37258
+10018 5629
+10019 17290
+10020 2272
+10026 59389
+10029 25201
+10031 8399
+10034 43810
+10040 42277
+10041 8392
+10046 18489
+10048 5629
+10049 17269
+10051 60462
+10052 56092
+10053 9681
+10054 8476
+10056 55132
+10058 60530
+10059 30157
+10061 1372
+10061 40462
+10062 9085
+10064 67856
+10068 13180
+10069 14209
+10070 14208
+10072 17269
+10075 1372
+10076 10078
+10077 10078
+10078 56454
+10080 13066
+10083 19534
+10084 19535
+10088 41699
+10089 53120
+10092 42273
+10093 42277
+10094 56454
+10098 55657
+10099 52120
+10100 49272
+10101 52727
+10103 38150
+10104 62372
+10105 31137
+10106 72271
+10107 64099
+10108 33014
+10109 64090
+10111 37616
+10120 31187
+10121 23775
+10122 67657
+10123 52553
+10124 60530
+10125 62811
+10129 66918
+10130 2911
+10131 42273
+10133 67657
+10135 22530
+10136 54255
+10137 66676
+10138 66675
+10140 7630
+10141 42277
+10143 7624
+10144 43846
+10145 24461
+10146 42277
+10147 23776
+10148 15622
+10149 80778
+10150 80778
+10151 41604
+10152 10151
+10153 76582
+10159 45924
+10161 9466
+10162 46595
+10163 37112
+10164 23776
+10165 62299
+10166 54465
+10167 42277
+10168 22530
+10169 26178
+10170 54465
+10172 54465
+10173 54465
+10174 62299
+10176 10813
+10205 80691
+10207 16549
+10208 63789
+10209 54465
+10210 2815
+10211 37503
+10213 42984
+10214 75991
+10215 57515
+10216 81306
+10218 79077
+10219 50071
+10220 55135
+10222 37561
+10223 37112
+10224 56416
+10225 23533
+10227 64350
+10228 64349
+10229 64351
+10230 23776
+10231 65040
+10232 69181
+10233 42277
+10234 42273
+10235 42273
+10236 42277
+10237 66676
+10238 23533
+10240 44005
+10243 38921
+10243 67801
+10244 6043
+10245 6043
+10247 65796
+10248 58614
+10249 66324
+10250 21111
+10251 23283
+10252 65796
+10253 61086
+10254 62809
+10256 9481
+10258 29660
+10260 72093
+10263 33892
+10266 78307
+10271 6863
+10272 6863
+10274 26174
+10275 26178
+10277 66675
+10278 66676
+10279 53457
+10281 1372
+10282 17972
+10286 56454
+10288 37112
+10289 6309
+10290 10291
+10291 19095
+10294 49284
+10296 54255
+10297 54254
+10300 11164
+10301 7255
+10302 22530
+10303 42273
+10304 26174
+10305 46595
+10307 67657
+10308 26178
+10309 29980
+10312 34917
+10318 23534
+10319 23533
+10320 54465
+10322 47613
+10323 23299
+10326 67606
+10327 16653
+10328 76178
+10329 23776
+10330 41669
+10331 7623
+10332 10340
+10334 34388
+10337 67657
+10338 42277
+10339 42273
+10340 9208
+10341 36569
+10342 49777
+10344 58742
+10345 4807
+10346 72794
+10347 23569
+10348 53482
+10349 31635
+10350 23569
+10351 10350
+10354 23534
+10355 15066
+10357 6309
+10358 1807
+10359 56454
+10361 32909
+10364 54254
+10366 22468
+10368 7110
+10371 54255
+10374 23776
+10375 37258
+10377 25119
+10378 66051
+10379 46084
+10389 23776
+10392 63862
+10399 80963
+10408 1372
+10409 56454
+10410 10409
+10412 42277
+10413 57515
+10414 43845
+10415 43846
+10416 27080
+10417 43849
+10418 79361
+10419 37111
+10422 37258
+10430 41066
+10434 65969
+10436 24459
+10437 79027
+10438 71766
+10439 53493
+10440 62453
+10441 67656
+10447 28993
+10449 29255
+10451 22210
+10452 22209
+10453 37258
+10455 42407
+10456 37112
+10457 37111
+10458 29741
+10461 54465
+10462 56504
+10463 56503
+10465 54464
+10466 22530
+10471 32911
+10472 37257
+10474 59242
+10475 67657
+10476 30537
+10477 59369
+10478 39494
+10479 69181
+10480 50226
+10481 62297
+10482 43846
+10483 49777
+10495 37975
+10497 23776
+10499 54465
+10500 23776
+10501 23776
+10502 23776
+10503 37518
+10504 23533
+10506 23534
+10507 23776
+10508 37258
+10509 67656
+10510 66676
+10511 42277
+10512 41668
+10513 62302
+10514 22530
+10515 31614
+10516 46595
+10517 52678
+10518 52678
+10519 52678
+10520 52678
+10521 43845
+10522 23534
+10523 23533
+10524 42273
+10525 42277
+10526 42277
+10527 54464
+10528 67657
+10529 23534
+10530 22209
+10531 22210
+10532 23534
+10533 41669
+10534 26178
+10535 66675
+10536 66676
+10538 54465
+10541 48209
+10542 7624
+10545 56454
+10546 37258
+10553 7620
+10555 37112
+10556 67657
+10557 23776
+10558 42277
+10559 23776
+10562 12411
+10564 34348
+10565 57495
+10566 36567
+10568 67657
+10569 8149
+10578 29741
+10583 23776
+10584 30157
+10585 56504
+10587 75804
+10590 38921
+10591 23776
+10593 60530
+10596 293
+10597 32253
+10598 38044
+10601 60530
+10602 29571
+10603 46595
+10604 49777
+10609 293
+10612 10614
+10613 10614
+10614 56454
+10615 66676
+10616 43849
+10617 37911
+10619 53526
+10620 41280
+10622 62180
+10623 33265
+10625 6309
+10626 30740
+10627 42984
+10628 41733
+10631 29123
+10632 23776
+10635 37112
+10636 63923
+10637 53056
+10638 62302
+10639 31614
+10640 16692
+10641 53057
+10645 49284
+10646 71304
+10648 21571
+10651 56415
+10652 42277
+10653 56416
+10654 30740
+10656 23534
+10658 67090
+10659 22530
+10660 56504
+10661 26178
+10662 26178
+10663 37112
+10664 26178
+10667 23533
+10668 23534
+10670 37111
+10671 62299
+10672 23776
+10675 38092
+10676 5168
+10681 54255
+10683 23776
+10690 23569
+10691 23569
+10692 42623
+10693 23776
+10695 78046
+10696 62299
+10699 54465
+10700 69744
+10701 43631
+10702 42273
+10703 59317
+10704 42277
+10707 23534
+10708 22530
+10711 56792
+10715 3575
+10716 54255
+10717 53057
+10720 75389
+10721 56387
+10722 56504
+10723 53334
+10725 10813
+10727 21038
+10729 46828
+10730 23533
+10731 67657
+10732 62299
+10734 6309
+10735 1807
+10736 56454
+10737 54465
+10744 58829
+10749 56416
+10750 56415
+10754 6043
+10757 62299
+10759 10357
+10760 1808
+10764 3575
+10769 61890
+10770 58276
+10771 70219
+10772 37257
+10774 22530
+10775 37111
+10776 26178
+10778 42277
+10779 42273
+10780 37258
+10785 25278
+10787 23534
+10789 23751
+10790 44305
+10791 48576
+10792 38102
+10793 48548
+10796 61890
+10799 26178
+10802 37112
+10803 37111
+10804 17323
+10807 37258
+10809 52171
+10810 56504
+10811 10813
+10812 18409
+10813 10812
+10814 41668
+10815 6309
+10818 26413
+10820 41669
+10821 22783
+10822 23776
+10823 67657
+10826 62262
+10827 6043
+10832 23776
+10834 42273
+10835 42277
+10836 26178
+10837 42277
+10838 29741
+10839 26178
+10840 41669
+10841 41668
+10842 37257
+10842 60344
+10843 37258
+10844 67876
+10845 54390
+10848 28750
+10849 28750
+10850 8603
+10851 76582
+10852 24081
+10856 43103
+10859 38480
+10860 22530
+10861 26174
+10862 54464
+10864 4807
+10868 18642
+10869 52119
+10870 60357
+10871 20724
+10872 71598
+10873 58614
+10876 79716
+10877 42277
+10878 80784
+10880 79766
+10881 67657
+10882 79766
+10902 624
+10905 71083
+10908 67657
+10910 36379
+10911 44349
+10913 19730
+10914 10340
+10915 11591
+10916 4047
+10926 16529
+10930 26178
+10931 54465
+10932 41669
+10933 41668
+10934 23534
+10935 79970
+10936 79971
+10937 9478
+10940 1846
+10942 1845
+10943 1846
+10945 13668
+10951 23533
+10955 23534
+10956 62886
+10964 21213
+10965 80943
+10966 30121
+10967 1808
+10968 54465
+10970 21557
+10972 43117
+10973 64117
+10974 62857
+10975 69517
+10976 71113
+10983 42277
+10985 37258
+10987 26178
+10989 13084
+10991 67657
+10992 70995
+10995 26178
+10999 37503
+11000 15068
+11001 15069
+11002 42273
+11003 42277
+11004 54465
+11005 54464
+11008 42273
+11009 42277
+11010 814
+11013 43432
+11014 6309
+11016 1846
+11018 23534
+11019 23533
+11020 54465
+11022 814
+11023 23776
+11024 43845
+11025 43849
+11026 43846
+11027 23776
+11028 37911
+11029 41668
+11030 62302
+11031 31614
+11032 41669
+11033 31614
+11034 23776
+11035 23534
+11036 23533
+11038 814
+11039 23533
+11040 46595
+11041 41669
+11042 23534
+11044 23534
+11045 23533
+11046 81404
+11049 37258
+11051 68508
+11052 34388
+11053 34388
+11055 26178
+11058 56504
+11059 67657
+11060 37112
+11063 34896
+11064 37111
+11065 37112
+11067 55659
+11068 33179
+11069 52727
+11070 43430
+11071 56465
+11072 56465
+11073 56465
+11074 74531
+11075 75579
+11076 78307
+11077 48722
+11078 67902
+11080 22670
+11085 54465
+11086 54086
+11088 56454
+11091 31060
+11092 58838
+11093 72350
+11094 72882
+11097 6309
+11098 17112
+11101 65645
+11102 23776
+11104 42984
+11105 24107
+11106 23533
+11108 23299
+11109 6043
+11113 37258
+11115 37112
+11117 80595
+11118 11725
+11119 43846
+11120 43844
+11121 26178
+11122 23534
+11123 66676
+11124 23534
+11125 26178
+11126 54464
+11127 54465
+11128 42273
+11129 41669
+11130 54465
+11131 67657
+11132 42273
+11133 42277
+11134 293
+11137 52633
+11138 43432
+11139 73296
+11142 43276
+11144 72567
+11145 23776
+11150 53059
+11151 54465
+11152 22530
+11155 52931
+11156 32241
+11158 41301
+11159 59401
+11160 29030
+11161 16232
+11165 64774
+11167 8396
+11168 45056
+11169 23534
+11174 54254
+11175 31614
+11177 26929
+11181 2814
+11182 2815
+11183 75978
+11184 37503
+11186 9150
+11187 37503
+11189 54255
+11190 53057
+11191 14209
+11192 14208
+11195 49777
+11196 21002
+11197 33637
+11200 73733
+11201 76953
+11203 624
+11207 23534
+11208 23533
+11209 32698
+11211 64694
+11212 24538
+11213 23776
+11215 42277
+11218 66252
+11221 42273
+11224 66676
+11225 26174
+11226 22530
+11227 23534
+11228 29980
+11229 37258
+11232 50107
+11234 11236
+11235 293
+11236 56454
+11237 56504
+11238 1372
+11239 19752
+11242 17290
+11243 75285
+11244 1615
+11246 1372
+11247 11239
+11248 56454
+11250 42747
+11251 37258
+11254 1372
+11256 22517
+11257 49777
+11260 510
+11261 511
+11264 43432
+11265 293
+11269 22530
+11270 42277
+11273 42277
+11275 37112
+11277 67657
+11278 67656
+11282 38084
+11283 54019
+11284 4807
+11285 76979
+11286 56454
+11288 25648
+11289 39137
+11290 5629
+11291 13180
+11292 67657
+11293 37258
+11294 37257
+11295 62302
+11296 37258
+11297 37258
+11298 11688
+11299 11690
+11300 56723
+11303 31614
+11304 37258
+11305 79924
+11308 54465
+11309 54465
+11310 54464
+11311 11257
+11312 70974
+11313 49777
+11314 48206
+11315 74093
+11316 11257
+11317 11257
+11317 53831
+11318 27023
+11318 54589
+11320 44065
+11321 11314
+11321 46344
+11328 65621
+11329 18805
+11330 38921
+11331 18806
+11333 6043
+11334 17269
+11335 66499
+11336 1124
+11337 7401
+11339 2272
+11340 31483
+11341 39586
+11342 58838
+11343 3935
+11344 31482
+11345 3934
+11346 13066
+11349 16771
+11351 37112
+11352 23776
+11353 54465
+11354 23534
+11355 3503
+11356 47175
+11357 3503
+11358 47175
+11361 37112
+11363 32177
+11367 31564
+11368 37503
+11369 41203
+11370 54464
+11371 67657
+11372 60202
+11375 81413
+11376 47624
+11377 24708
+11378 37112
+11380 22530
+11381 54465
+11390 15986
+11391 18954
+11395 22530
+11396 23533
+11398 23533
+11399 74860
+11401 52326
+11402 34570
+11403 35536
+11404 70063
+11405 26617
+11405 43880
+11406 31835
+11407 22530
+11408 77771
+11410 7028
+11411 38084
+11412 70010
+11413 70103
+11415 40069
+11417 50863
+11418 32911
+11419 21235
+11420 40464
+11421 13351
+11423 46445
+11424 66763
+11426 67490
+11429 17276
+11430 746
+11431 56503
+11432 43846
+11434 8950
+11435 16232
+11436 51806
+11437 43081
+11439 41669
+11440 41668
+11441 62302
+11442 47613
+11443 42000
+11445 7668
+11446 79486
+11447 21191
+11448 63986
+11449 5547
+11450 44473
+11451 54901
+11452 56708
+11453 56707
+11454 62302
+11457 47693
+11457 75978
+11458 80499
+11461 4047
+11462 29597
+11465 24164
+11466 22530
+11467 60462
+11468 18616
+11470 8477
+11471 20199
+11474 11312
+11475 71766
+11476 21394
+11479 14208
+11481 40535
+11482 74860
+11483 66233
+11484 49731
+11485 39228
+11486 74860
+11487 7274
+11489 79077
+11490 81076
+11491 31736
+11493 26591
+11494 74169
+11497 11498
+11498 73438
+11505 54465
+11511 10845
+11513 33843
+11514 23776
+11517 43276
+11520 41054
+11521 37560
+11522 80112
+11528 32698
+11529 52307
+11533 41669
+11534 41668
+11538 22530
+11539 54465
+11548 74642
+11549 52553
+11552 65040
+11553 62297
+11554 8397
+11562 32911
+11563 21235
+11568 37579
+11569 45578
+11570 624
+11571 3691
+11572 13084
+11576 1846
+11581 34705
+11584 50919
+11585 41757
+11586 75913
+11587 68759
+11589 43832
+11589 61686
+11590 20724
+11591 66492
+11592 27003
+11593 46344
+11594 54248
+11595 66497
+11596 63475
+11597 74880
+11598 511
+11599 510
+11604 41666
+11610 54901
+11611 54901
+11612 54901
+11613 54901
+11614 54901
+11615 54901
+11616 54901
+11617 54901
+11618 52285
+11619 54901
+11620 54901
+11621 54901
+11622 54901
+11623 54901
+11625 66676
+11626 37911
+11627 31614
+11628 23534
+11629 23534
+11630 75787
+11631 75787
+11632 75787
+11633 23533
+11635 2272
+11639 23776
+11641 41669
+11644 73562
+11645 37258
+11646 1471
+11647 1472
+11653 30337
+11654 4047
+11655 32320
+11659 293
+11660 56454
+11661 57495
+11662 56454
+11663 11662
+11668 66601
+11670 40887
+11672 54109
+11674 74357
+11675 42277
+11676 42857
+11679 37160
+11680 37799
+11681 22799
+11682 7668
+11683 5168
+11684 43703
+11685 47665
+11686 12150
+11687 64652
+11688 8949
+11689 40464
+11690 746
+11691 56504
+11692 56503
+11694 37790
+11698 23534
+11700 2911
+11702 54465
+11708 40462
+11711 44439
+11712 62679
+11715 80723
+11723 65766
+11724 62527
+11725 39068
+11734 27798
+11735 55933
+11739 59234
+11741 62174
+11742 62453
+11743 37868
+11744 37258
+11745 22530
+11746 36209
+11747 36209
+11755 13946
+11755 67657
+11756 47318
+11757 43837
+11759 47318
+11760 48580
+11761 7623
+11762 10914
+11764 65025
+11765 67657
+11766 2911
+11768 64863
+11769 43711
+11770 71442
+11771 79796
+11772 2470
+11772 66138
+11773 7494
+11774 32239
+11775 32239
+11776 23534
+11777 23533
+11778 22530
+11779 54465
+11780 54464
+11781 6995
+11782 22210
+11783 54464
+11784 22530
+11785 66675
+11786 26174
+11787 26178
+11788 54465
+11789 54464
+11790 54465
+11791 20690
+11792 67513
+11793 69201
+11800 23776
+11801 43846
+11802 43845
+11804 26178
+11806 26178
+11807 42277
+11808 23534
+11809 26178
+11810 53056
+11811 67657
+11812 67656
+11814 76600
+11819 26174
+11820 26178
+11821 54465
+11822 67657
+11823 67656
+11824 37112
+11825 37258
+11826 54464
+11827 26174
+11828 23776
+11829 4040
+11830 4040
+11831 54465
+11833 29741
+11834 54465
+11835 23533
+11836 23534
+11837 23533
+11838 23534
+11839 26178
+11840 26178
+11842 54465
+11844 23533
+11845 52553
+11852 52280
+11854 42984
+11855 75994
+11861 37560
+11862 23534
+11863 41669
+11864 54254
+11865 54255
+11869 786
+11870 15068
+11871 15069
+11872 510
+11873 511
+11874 23534
+11875 29096
+11876 29096
+11878 22530
+11880 71615
+11881 23776
+11882 42277
+11883 37258
+11885 26178
+11886 22530
+11887 26174
+11888 37111
+11889 37112
+11890 37258
+11892 54464
+11893 44212
+11894 71335
+11895 54465
+11896 68591
+11898 54619
+11900 56416
+11901 24909
+11905 67657
+11906 55563
+11909 75627
+11914 26174
+11915 26178
+11917 36380
+11919 46033
+11920 54465
+11921 42277
+11923 41219
+11924 79134
+11925 66138
+11926 42277
+11928 49282
+11929 26174
+11930 26178
+11931 23532
+11932 56441
+11933 38921
+11936 62299
+11939 67657
+11940 75025
+11944 48101
+11945 29741
+11948 626
+11949 54465
+11953 67657
+11954 36451
+11958 15611
+11960 37258
+11961 31614
+11963 74061
+11965 15069
+11966 15066
+11967 15068
+11968 15068
+11970 11311
+11970 58948
+11971 56504
+11973 28614
+11977 3588
+11978 11977
+11980 17331
+11982 51885
+11983 35649
+11984 37975
+11985 33321
+11986 45164
+11987 51224
+11988 68127
+11989 56454
+11990 11989
+11991 62637
+11992 63777
+11993 70877
+11994 42747
+11999 510
+12005 23226
+12006 65040
+12007 23772
+12008 69181
+12011 40808
+12014 53059
+12015 624
+12016 51697
+12018 510
+12019 511
+12020 23534
+12021 22530
+12022 24461
+12023 24462
+12024 42273
+12025 54465
+12026 41669
+12027 22209
+12028 23776
+12029 54465
+12032 61890
+12033 42277
+12034 42277
+12036 41669
+12037 43846
+12038 42277
+12039 46595
+12040 49181
+12041 54465
+12042 66676
+12043 66676
+12044 67159
+12047 20407
+12050 6025
+12051 7265
+12052 9106
+12053 10913
+12056 49284
+12058 64345
+12061 50124
+12062 32662
+12063 65040
+12064 5168
+12065 60357
+12071 23776
+12072 9681
+12073 10151
+12075 9193
+12077 60530
+12078 25854
+12078 35741
+12079 48727
+12079 58406
+12081 43019
+12082 43987
+12083 62289
+12086 54116
+12087 32948
+12093 34705
+12094 69965
+12095 56718
+12096 30315
+12098 30316
+12104 56504
+12105 26178
+12107 8399
+12108 26174
+12109 45149
+12110 67656
+12111 67656
+12112 26178
+12113 76483
+12114 3934
+12117 55462
+12123 38921
+12124 18232
+12128 69475
+12129 624
+12131 4766
+12132 31542
+12134 57315
+12136 29741
+12138 55913
+12139 50309
+12142 29741
+12143 67868
+12144 9681
+12145 23533
+12146 33442
+12148 54465
+12150 80778
+12151 41158
+12152 76580
+12156 624
+12160 17041
+12161 3994
+12163 45617
+12164 40554
+12165 624
+12172 23776
+12174 67657
+12177 41203
+12178 37503
+12182 37518
+12184 14209
+12185 14208
+12187 56707
+12188 56708
+12191 69032
+12194 74527
+12195 42277
+12196 42273
+12197 29378
+12198 6025
+12199 7623
+12200 8148
+12201 61890
+12203 29741
+12204 45397
+12206 28268
+12207 67876
+12208 6007
+12211 42984
+12212 8477
+12214 20199
+12215 9126
+12216 9125
+12218 510
+12219 511
+12220 46703
+12223 41669
+12224 68591
+12225 7630
+12226 80514
+12227 65672
+12228 5763
+12230 56454
+12231 42273
+12235 42277
+12236 29741
+12237 61675
+12238 26598
+12240 43102
+12242 21366
+12244 54464
+12245 26178
+12248 49509
+12250 23776
+12251 42277
+12254 37112
+12255 26174
+12256 26178
+12258 80001
+12259 2816
+12260 12261
+12261 1611
+12264 37112
+12265 23569
+12267 6309
+12268 57974
+12269 51545
+12270 37258
+12272 13623
+12275 585
+12276 56454
+12277 1372
+12278 30529
+12279 43845
+12280 43849
+12281 37689
+12282 74464
+12283 36304
+12285 39494
+12286 39494
+12287 53457
+12288 66491
+12292 42273
+12293 42277
+12294 23534
+12295 31614
+12297 54465
+12298 54464
+12299 23534
+12301 54574
+12302 37503
+12303 47693
+12303 75978
+12304 54714
+12305 33772
+12306 26929
+12307 47693
+12307 75978
+12308 22530
+12309 37258
+12310 37257
+12315 43152
+12317 11311
+12318 63788
+12321 47087
+12324 624
+12330 35649
+12331 61961
+12339 18616
+12340 37068
+12342 35648
+12349 69201
+12350 29741
+12353 2870
+12353 80339
+12356 19733
+12360 58614
+12361 56569
+12362 52970
+12364 68476
+12365 66499
+12366 12570
+12367 3737
+12374 23256
+12375 67733
+12376 37111
+12380 43846
+12381 56636
+12382 56636
+12383 43845
+12384 15986
+12385 19481
+12389 25391
+12390 47084
+12396 56792
+12398 41189
+12400 34999
+12403 15069
+12404 30748
+12405 6621
+12407 293
+12408 12409
+12409 56454
+12411 52460
+12412 42277
+12419 23363
+12423 48265
+12425 32210
+12427 15839
+12430 37112
+12431 23482
+12432 62296
+12433 28094
+12434 43214
+12435 77156
+12436 40877
+12437 51242
+12438 746
+12440 54465
+12442 80339
+12445 50385
+12448 26178
+12449 26174
+12450 5168
+12451 73587
+12453 38467
+12457 63831
+12458 44017
+12465 31533
+12466 58835
+12468 293
+12471 56454
+12473 57106
+12475 76580
+12476 24119
+12476 36377
+12476 68845
+12477 81061
+12478 76580
+12480 43845
+12481 43849
+12482 30740
+12483 42277
+12484 42273
+12485 22530
+12486 62811
+12487 49783
+12489 9156
+12490 56504
+12492 56960
+12496 56257
+12497 43155
+12499 12570
+12507 76093
+12508 76759
+12509 79003
+12510 42273
+12511 42277
+12512 42277
+12515 26267
+12516 74926
+12519 1611
+12521 51894
+12523 54465
+12524 37258
+12525 42273
+12528 54464
+12531 54464
+12532 45480
+12533 25488
+12539 54465
+12540 56504
+12541 56503
+12542 62302
+12544 23534
+12545 79134
+12546 80339
+12547 54465
+12548 53057
+12549 79134
+12551 43276
+12552 79135
+12553 26178
+12554 26174
+12555 23533
+12556 26178
+12557 23533
+12558 55694
+12559 15986
+12561 7630
+12562 45089
+12563 2272
+12565 8949
+12566 746
+12567 12565
+12569 12566
+12570 66499
+12571 12570
+12572 26178
+12573 26174
+12577 54465
+12578 54464
+12579 42277
+12580 52283
+12581 48909
+12582 43846
+12586 1846
+12587 56416
+12588 22530
+12589 56415
+12590 26178
+12592 56454
+12593 43849
+12595 31542
+12596 7624
+12597 23533
+12598 24461
+12599 24461
+12600 22530
+12601 22530
+12602 26178
+12603 42277
+12604 42273
+12605 22670
+12606 62354
+12607 42273
+12608 54464
+12609 54465
+12610 22530
+12611 54465
+12612 62299
+12613 54465
+12614 37112
+12616 37112
+12617 37111
+12618 62302
+12619 37258
+12620 37112
+12621 54255
+12622 54254
+12623 23534
+12624 54465
+12625 54465
+12626 54464
+12627 23534
+12628 23533
+12629 42984
+12631 67657
+12632 67657
+12633 37111
+12634 37112
+12635 37111
+12636 62302
+12637 29741
+12638 37112
+12639 22530
+12640 23533
+12641 23534
+12643 2911
+12644 22530
+12645 56415
+12646 56416
+12647 42277
+12648 46666
+12649 42273
+12650 22530
+12651 42277
+12652 46666
+12653 42277
+12654 31614
+12655 37911
+12656 24461
+12657 22530
+12658 66447
+12659 30774
+12659 44212
+12660 29510
+12661 43111
+12662 52727
+12664 35738
+12665 44300
+12666 33671
+12667 69270
+12668 746
+12669 23776
+12674 63862
+12675 54465
+12678 9681
+12681 46595
+12684 8949
+12685 19154
+12688 56503
+12689 62302
+12690 56504
+12691 3591
+12694 66676
+12699 293
+12705 45879
+12707 27679
+12711 5763
+12717 13156
+12722 510
+12723 511
+12724 68508
+12727 37258
+12728 38698
+12730 28895
+12733 6897
+12734 29483
+12737 28266
+12741 53057
+12742 54465
+12746 40225
+12751 47665
+12752 37258
+12753 42553
+12754 54465
+12757 22530
+12759 56415
+12760 4442
+12762 66496
+12763 20580
+12764 49715
+12765 49715
+12768 21394
+12769 21394
+12770 75807
+12771 21394
+12772 52287
+12773 21394
+12774 21394
+12775 49715
+12780 21394
+12781 21394
+12782 19067
+12783 53496
+12784 49715
+12785 19067
+12786 40691
+12787 60530
+12788 21394
+12789 58238
+12790 21394
+12791 8120
+12792 66676
+12794 23776
+12795 42277
+12798 1614
+12799 56415
+12800 1471
+12801 1472
+12802 21394
+12804 21394
+12805 21394
+12806 21394
+12809 36209
+12810 40695
+12811 26877
+12812 66499
+12813 4040
+12814 36569
+12816 41405
+12817 66839
+12818 71603
+12820 41404
+12820 71614
+12821 13027
+12822 11314
+12823 9193
+12824 49104
+12826 624
+12828 80599
+12830 22210
+12834 42277
+12836 2280
+12837 49194
+12842 54255
+12843 54254
+12844 22530
+12845 61675
+12847 21467
+12848 57315
+12849 61675
+12851 21322
+12852 16188
+12853 10214
+12854 10340
+12855 42277
+12856 54465
+12857 43846
+12858 79897
+12859 43846
+12860 62908
+12862 54465
+12863 26178
+12864 61541
+12864 75978
+12865 37503
+12866 9193
+12868 22759
+12869 54465
+12870 23534
+12872 79125
+12873 1372
+12874 56454
+12875 12874
+12876 8998
+12877 37111
+12878 37112
+12879 23776
+12880 37112
+12881 41669
+12882 23534
+12883 23533
+12885 57772
+12886 23533
+12889 69095
+12892 56415
+12893 37112
+12896 66676
+12901 54465
+12902 64551
+12904 26178
+12905 42984
+12906 4041
+12907 47693
+12907 75978
+12909 6309
+12912 28094
+12913 22530
+12914 43846
+12915 54465
+12918 624
+12920 50175
+12928 81281
+12929 39133
+12931 36036
+12932 6926
+12935 23772
+12936 31564
+12937 624
+12943 624
+12947 624
+12949 73989
+12950 624
+12953 13224
+12960 18224
+12961 23585
+12962 23585
+12963 41996
+12964 25483
+12965 12973
+12966 12978
+12967 78067
+12968 9409
+12969 79934
+12970 56482
+12971 67490
+12972 71676
+12973 59505
+12974 47469
+12975 42049
+12976 75285
+12977 79427
+12978 79601
+12979 81168
+12980 52553
+12981 5168
+12988 41666
+12989 624
+12992 72032
+12993 57517
+12994 35754
+12995 38044
+12996 47665
+12997 59505
+12998 36569
+12999 42049
+13000 8380
+13002 68508
+13005 22519
+13007 37975
+13010 26152
+13018 52280
+13019 42984
+13020 66252
+13021 33892
+13023 16814
+13024 16815
+13025 15986
+13026 16188
+13027 1846
+13028 21895
+13029 21895
+13035 38872
+13038 39164
+13039 39164
+13040 23776
+13042 3588
+13043 56454
+13045 7504
+13050 57974
+13052 59242
+13055 23776
+13056 43846
+13057 43845
+13058 43849
+13062 24165
+13062 49561
+13062 53278
+13066 13067
+13067 57521
+13068 43432
+13070 293
+13071 56454
+13072 293
+13073 76269
+13075 43846
+13076 62908
+13083 57521
+13084 3778
+13087 54465
+13100 56504
+13101 21700
+13102 9465
+13103 48785
+13104 64350
+13105 24462
+13106 24462
+13107 24462
+13108 58082
+13108 78789
+13109 78789
+13110 15611
+13114 21910
+13117 24231
+13118 52264
+13119 23534
+13120 23533
+13126 53057
+13128 25529
+13129 15839
+13130 15066
+13131 33671
+13132 21394
+13133 74926
+13134 19534
+13135 19535
+13136 37112
+13137 61890
+13141 50863
+13142 75804
+13143 61890
+13144 61890
+13148 6907
+13149 6863
+13151 15856
+13153 13156
+13156 7410
+13157 57318
+13160 66324
+13161 37401
+13165 20724
+13166 626
+13167 43491
+13168 10250
+13169 60465
+13170 34387
+13172 80963
+13175 624
+13179 624
+13180 5630
+13181 40217
+13184 10008
+13185 56454
+13186 13185
+13187 60465
+13198 32987
+13200 12050
+13201 21783
+13202 1849
+13206 39068
+13208 25526
+13209 36569
+13210 624
+13215 32987
+13218 78948
+13220 53514
+13221 54622
+13222 72732
+13223 6309
+13224 16405
+13226 48559
+13227 13229
+13228 53513
+13229 56454
+13230 75804
+13231 24461
+13233 66676
+13234 42277
+13235 46828
+13236 22530
+13237 54465
+13238 23534
+13239 23533
+13240 22210
+13241 54464
+13242 54465
+13243 22530
+13244 42277
+13246 23569
+13247 23569
+13250 53883
+13251 3203
+13253 7668
+13254 5168
+13256 23569
+13261 40462
+13261 5881
+13263 26178
+13264 49715
+13265 31614
+13266 22530
+13270 38436
+13271 26178
+13272 26178
+13274 36569
+13275 26174
+13276 64349
+13278 17972
+13279 54255
+13284 69351
+13286 26664
+13287 53182
+13288 39083
+13289 40011
+13290 58576
+13291 37258
+13293 47071
+13295 1846
+13296 29740
+13297 29741
+13298 26178
+13299 54465
+13300 54465
+13301 26178
+13302 54465
+13304 54255
+13305 54254
+13306 23533
+13307 23534
+13308 26178
+13309 68314
+13310 68315
+13311 37112
+13312 37111
+13314 30774
+13314 44212
+13315 52727
+13316 26718
+13325 34406
+13326 44300
+13327 45790
+13328 44256
+13330 36209
+13337 55223
+13340 41189
+13341 45199
+13342 66492
+13344 63862
+13345 36569
+13346 23569
+13347 48695
+13348 64979
+13349 21394
+13351 11244
+13352 69095
+13353 26178
+13355 37258
+13356 37257
+13358 54465
+13359 54464
+13360 37258
+13362 23776
+13364 7668
+13365 22530
+13366 56415
+13367 56257
+13368 42277
+13375 54464
+13376 54465
+13377 54465
+13378 22530
+13379 22530
+13380 26178
+13382 51107
+13384 23534
+13386 33043
+13387 64349
+13388 64351
+13389 64350
+13390 67657
+13391 26178
+13392 37112
+13393 41861
+13395 23533
+13396 61702
+13397 23534
+13399 58825
+13400 13342
+13401 49715
+13402 21394
+13403 40691
+13404 21394
+13405 58829
+13406 17041
+13407 17042
+13408 42273
+13411 18232
+13412 17042
+13416 28160
+13417 45617
+13418 624
+13419 66770
+13421 52280
+13422 60416
+13423 14626
+13423 510
+13424 511
+13426 54465
+13434 624
+13435 51894
+13436 41699
+13438 34942
+13439 4040
+13440 3519
+13441 17112
+13442 70098
+13444 6863
+13445 6942
+13446 7265
+13447 13451
+13448 9106
+13449 9194
+13450 10340
+13451 7276
+13452 1807
+13453 10913
+13455 18224
+13457 25483
+13458 76269
+13459 33933
+13460 34780
+13461 59505
+13462 48331
+13463 9409
+13464 79934
+13465 56482
+13466 59505
+13467 47469
+13468 64970
+13469 68870
+13470 79427
+13471 79601
+13472 81281
+13473 60949
+13477 37112
+13478 37111
+13479 62302
+13480 41669
+13481 41668
+13482 23776
+13483 41669
+13485 31614
+13486 42277
+13487 43846
+13488 62908
+13491 3591
+13492 8949
+13496 61228
+13497 23848
+13498 23846
+13500 21467
+13501 73155
+13504 5367
+13506 5368
+13509 1092
+13510 56454
+13516 75418
+13517 324
+13518 43846
+13520 67656
+13521 42277
+13523 54465
+13524 9126
+13525 9125
+13526 23533
+13527 23534
+13529 67657
+13530 41669
+13531 9126
+13532 9125
+13533 67657
+13534 23776
+13535 62299
+13538 41669
+13539 54465
+13540 54465
+13541 31614
+13542 31614
+13544 20724
+13546 78336
+13547 31630
+13548 28094
+13549 48579
+13551 66676
+13552 42273
+13553 42277
+13554 42273
+13555 41668
+13556 62302
+13557 41669
+13558 66676
+13559 66676
+13561 31614
+13562 31614
+13563 56504
+13564 31614
+13565 26174
+13566 26178
+13567 42273
+13569 20920
+13570 66431
+13571 66767
+13572 33670
+13573 27001
+13574 37401
+13575 21213
+13576 60530
+13578 23569
+13579 29741
+13580 62302
+13582 31482
+13583 31224
+13584 31483
+13585 61858
+13589 15066
+13590 56504
+13592 23534
+13593 23533
+13594 56503
+13595 62302
+13596 54465
+13598 51305
+13599 36209
+13600 21114
+13602 58565
+13603 54465
+13604 42273
+13605 42277
+13607 23626
+13608 30095
+13609 34660
+13610 2911
+13611 2911
+13612 54622
+13613 80306
+13614 624
+13615 49194
+13616 41669
+13617 26178
+13620 80963
+13621 80963
+13622 58869
+13622 80963
+13623 1372
+13624 23201
+13625 68654
+13626 68870
+13627 48695
+13628 64979
+13631 26174
+13632 26178
+13634 37174
+13636 37112
+13637 8950
+13638 11161
+13643 63860
+13644 56444
+13647 20892
+13651 67657
+13652 22530
+13653 53057
+13654 22530
+13655 54464
+13656 54465
+13657 37111
+13659 56504
+13662 30882
+13664 26178
+13667 37258
+13668 8149
+13669 9574
+13670 9575
+13671 42277
+13672 22530
+13673 26178
+13675 54464
+13676 54465
+13677 54465
+13678 56504
+13679 54465
+13680 56504
+13681 5367
+13683 5368
+13688 9193
+13689 13692
+13690 24461
+13691 22530
+13692 9208
+13696 37112
+13697 42273
+13698 42277
+13699 41668
+13700 9085
+13701 71676
+13702 31614
+13703 22530
+13704 42273
+13705 31614
+13706 22530
+13708 56416
+13709 56415
+13710 7510
+13711 46828
+13712 46828
+13715 73063
+13716 54465
+13717 54464
+13719 22530
+13720 26174
+13722 26178
+13723 17041
+13724 3994
+13725 510
+13729 18839
+13730 38921
+13731 69188
+13732 73540
+13735 26178
+13737 26923
+13739 81317
+13740 54465
+13745 23534
+13746 54465
+13749 54465
+13750 61890
+13751 61890
+13752 61890
+13753 61890
+13758 67656
+13759 54255
+13760 78335
+13764 70219
+13765 6025
+13767 66496
+13768 6043
+13769 66676
+13770 37258
+13771 42277
+13772 67657
+13773 26178
+13774 66676
+13775 80973
+13776 30850
+13779 43846
+13780 23776
+13781 30774
+13782 52727
+13783 80752
+13784 26926
+13785 37006
+13786 26732
+13787 76856
+13788 30317
+13789 38571
+13790 26178
+13791 67657
+13795 31533
+13796 27183
+13797 27366
+13798 32206
+13799 68177
+13800 67245
+13801 47739
+13802 18712
+13803 67176
+13804 61880
+13805 72447
+13806 73985
+13807 77349
+13808 77576
+13809 69129
+13810 81281
+13811 57785
+13812 23776
+13813 26178
+13814 9121
+13815 41798
+13816 15690
+13820 54255
+13821 54254
+13823 42957
+13826 55531
+13827 23938
+13828 23938
+13829 42277
+13831 59522
+13833 26178
+13834 54465
+13835 42277
+13836 23533
+13837 23534
+13839 9085
+13840 68993
+13845 16907
+13846 16909
+13847 6752
+13849 1372
+13850 56454
+13851 13850
+13852 23534
+13853 23533
+13854 814
+13855 37112
+13857 5547
+13858 15824
+13859 10845
+13861 27155
+13864 23534
+13865 45071
+13866 8949
+13867 31542
+13876 62805
+13877 62809
+13878 1092
+13879 40462
+13883 14973
+13884 23533
+13885 23534
+13886 37112
+13891 4047
+13892 56503
+13893 62302
+13897 510
+13898 511
+13899 33894
+13901 33637
+13902 54465
+13903 5168
+13904 16612
+13905 66520
+13908 47121
+13913 19954
+13914 65172
+13915 73308
+13916 3588
+13917 56454
+13918 67657
+13919 10208
+13920 56503
+13921 62302
+13922 26178
+13923 26174
+13928 56504
+13932 23534
+13933 41299
+13936 60169
+13937 54465
+13938 31614
+13939 37006
+13941 37258
+13942 37257
+13944 56504
+13945 67656
+13946 67656
+13947 54465
+13948 42277
+13950 57521
+13951 56454
+13952 45113
+13953 20190
+13954 71766
+13957 42277
+13958 26174
+13959 8141
+13960 54465
+13962 17275
+13963 56454
+13964 42277
+13965 68048
+13966 23534
+13970 42277
+13971 24071
+13972 54465
+13974 46595
+13975 41669
+13976 74061
+13977 15839
+13978 59889
+13980 26174
+13981 62302
+13982 37112
+13984 62299
+13988 38252
+13988 50107
+13988 61858
+13989 6907
+13990 13989
+13992 3591
+13993 60357
+13994 23295
+13996 10870
+13997 44349
+14001 28356
+14002 41668
+14004 67657
+14005 58112
+14010 67657
+14012 52581
+14013 40819
+14014 43846
+14015 43845
+14017 30740
+14021 67657
+14022 49870
+14023 29741
+14024 42277
+14026 81305
+14027 81305
+14029 62299
+14030 62299
+14031 80514
+14032 62018
+14033 54616
+14034 66499
+14035 20298
+14037 75003
+14038 23776
+14039 37112
+14042 1372
+14043 26178
+14044 26174
+14045 26178
+14047 63712
+14049 64099
+14050 52280
+14051 33014
+14052 14076
+14053 5779
+14054 23569
+14056 510
+14057 19547
+14058 49777
+14059 64694
+14059 75854
+14060 24621
+14061 26178
+14062 26174
+14063 22530
+14064 26178
+14065 37258
+14066 37257
+14067 41571
+14068 39703
+14069 36804
+14070 50703
+14071 6193
+14072 58616
+14073 21474
+14074 4047
+14075 38403
+14076 56887
+14079 18986
+14079 67657
+14080 15600
+14081 26178
+14084 69764
+14085 56416
+14086 56415
+14087 21394
+14089 39560
+14092 285
+14093 40464
+14096 72475
+14097 11311
+14097 47252
+14098 6526
+14099 11970
+14101 5168
+14103 14209
+14104 4546
+14110 52280
+14113 31614
+14118 26178
+14119 2988
+14120 2989
+14121 60797
+14123 37112
+14124 61858
+14127 59394
+14132 39068
+14136 22530
+14137 56415
+14138 62297
+14139 22530
+14140 23533
+14141 23534
+14142 67657
+14143 29741
+14144 26178
+14145 26178
+14146 22530
+14148 62307
+14150 67266
+14156 76979
+14157 8534
+14158 47693
+14158 75978
+14160 67657
+14161 26174
+14162 22530
+14163 26174
+14164 26178
+14166 26249
+14167 41669
+14168 43846
+14169 22209
+14172 56504
+14173 22530
+14174 34051
+14175 42273
+14176 23533
+14178 26178
+14179 23534
+14180 8692
+14181 17269
+14182 43846
+14185 32241
+14186 32240
+14188 56504
+14191 7265
+14193 624
+14194 510
+14198 23776
+14200 28417
+14201 62875
+14203 61675
+14204 65040
+14205 9466
+14206 15066
+14207 15067
+14208 746
+14209 8949
+14210 60530
+14214 4309
+14215 22670
+14217 54464
+14218 42277
+14219 38359
+14220 42273
+14221 22530
+14222 42277
+14223 22530
+14224 42273
+14227 26174
+14228 26178
+14230 29741
+14232 23776
+14234 64349
+14235 64350
+14236 23776
+14237 42277
+14238 23533
+14239 23533
+14240 23534
+14241 23534
+14242 37112
+14243 26178
+14244 22530
+14245 42273
+14246 42277
+14247 19641
+14248 57974
+14250 6577
+14251 26178
+14252 53291
+14253 54465
+14254 54465
+14255 54465
+14257 43846
+14258 43845
+14259 43849
+14263 21700
+14265 54255
+14274 38084
+14276 42393
+14277 51932
+14278 10216
+14279 53053
+14280 57157
+14281 80662
+14282 48620
+14283 37112
+14285 43846
+14286 43845
+14289 17275
+14290 18616
+14291 34348
+14292 58747
+14293 21993
+14294 56454
+14297 23776
+14298 54465
+14299 54464
+14300 54465
+14302 14349
+14304 11311
+14306 32390
+14310 71866
+14311 37578
+14313 29741
+14314 54465
+14315 42277
+14316 22530
+14317 42273
+14319 67657
+14320 67657
+14321 54028
+14322 43846
+14323 37518
+14324 43845
+14325 43849
+14326 26178
+14327 5517
+14328 54465
+14329 31614
+14330 37910
+14332 26178
+14333 26174
+14334 8396
+14335 26174
+14336 26178
+14337 56504
+14338 26178
+14339 54464
+14340 22530
+14341 23533
+14342 23534
+14343 56504
+14344 26174
+14345 26178
+14346 43845
+14347 43846
+14348 43846
+14349 40255
+14350 73409
+14351 37911
+14353 67876
+14354 78364
+14355 8149
+14356 26178
+14358 54465
+14359 54465
+14360 67657
+14361 26174
+14362 26178
+14363 22530
+14364 23533
+14365 31614
+14366 41669
+14367 67657
+14369 67656
+14371 42567
+14372 23534
+14383 11097
+14385 54268
+14386 54269
+14387 56454
+14388 14387
+14392 62474
+14393 36569
+14394 68972
+14395 68983
+14396 37112
+14397 26178
+14398 26178
+14399 23534
+14401 41669
+14402 37560
+14403 23534
+14404 56504
+14407 54465
+14408 54465
+14409 54464
+14410 37202
+14412 12967
+14414 16690
+14415 3187
+14416 26174
+14417 26174
+14418 26178
+14419 26178
+14421 56504
+14422 57314
+14424 56415
+14425 56416
+14426 42273
+14427 56504
+14428 22530
+14429 43846
+14430 21375
+14431 21375
+14432 21375
+14433 21375
+14434 21375
+14435 21375
+14436 21375
+14437 21375
+14438 42277
+14439 23776
+14440 37258
+14441 61675
+14442 67657
+14444 42277
+14445 61611
+14446 38824
+14447 42277
+14448 56504
+14449 56504
+14451 36569
+14452 18372
+14453 7410
+14454 66676
+14455 23533
+14456 23534
+14457 23534
+14458 75418
+14459 23533
+14460 41669
+14461 23534
+14462 46594
+14463 46595
+14464 37258
+14465 43846
+14466 27080
+14467 66676
+14468 26178
+14469 56504
+14470 54464
+14471 54465
+14472 52417
+14473 23534
+14474 23533
+14475 32241
+14476 23776
+14477 37258
+14478 54465
+14479 54464
+14480 56415
+14481 62299
+14482 29741
+14483 29740
+14484 31614
+14485 43846
+14486 43844
+14487 43844
+14490 53182
+14491 26178
+14492 39067
+14494 22530
+14496 46595
+14497 26174
+14498 22530
+14499 63651
+14500 67657
+14503 26178
+14504 67657
+14505 23776
+14507 26178
+14508 26178
+14509 52382
+14515 23533
+14516 37258
+14517 23534
+14521 66496
+14522 36973
+14524 64009
+14525 37112
+14526 79906
+14527 69797
+14528 25649
+14531 23776
+14533 51894
+14534 63831
+14535 41669
+14536 14626
+14537 19154
+14538 37112
+14540 67657
+14541 46594
+14543 23776
+14544 56416
+14547 58798
+14549 23534
+14551 71941
+14552 62299
+14553 26178
+14554 26178
+14555 22530
+14556 23534
+14557 23533
+14558 31614
+14559 79134
+14560 14559
+14561 80339
+14562 14559
+14563 66138
+14566 46595
+14567 22210
+14568 57134
+14569 37112
+14570 37111
+14571 62302
+14572 22209
+14573 26178
+14574 26178
+14575 54465
+14576 39068
+14577 26178
+14578 26174
+14579 67657
+14580 37112
+14581 22468
+14582 23776
+14584 26178
+14587 49777
+14589 37910
+14590 67657
+14591 29741
+14593 37112
+14595 55154
+14596 67657
+14597 48206
+14598 67657
+14599 54465
+14601 56021
+14603 55132
+14604 55132
+14608 26174
+14611 66676
+14612 54465
+14613 41669
+14623 31614
+14624 56416
+14625 37258
+14626 8949
+14628 52280
+14629 52280
+14630 37112
+14632 23534
+14633 51545
+14634 38921
+14634 67801
+14635 37111
+14636 62302
+14637 37112
+14638 10252
+14639 4344
+14640 44149
+14641 64349
+14642 43846
+14643 43845
+14645 74957
+14648 26178
+14649 26174
+14650 67656
+14651 54464
+14652 56504
+14653 67657
+14655 42277
+14657 20581
+14658 61541
+14659 21235
+14662 80514
+14663 42273
+14664 41669
+14665 22530
+14666 61675
+14667 67657
+14668 67657
+14669 42277
+14670 54464
+14671 37258
+14673 26178
+14674 22530
+14675 54465
+14676 43846
+14677 22530
+14678 31614
+14679 40103
+14680 56504
+14681 26178
+14682 58565
+14684 56504
+14685 29741
+14687 54465
+14688 22530
+14689 22210
+14690 22209
+14691 35250
+14692 35249
+14693 42277
+14694 42273
+14695 41669
+14696 43846
+14698 62886
+14699 23534
+14700 59088
+14701 40301
+14705 26174
+14706 26178
+14708 48559
+14710 37111
+14711 62302
+14712 37112
+14714 43845
+14715 43846
+14716 21375
+14717 21375
+14721 26178
+14722 26178
+14723 15611
+14727 38086
+14728 55563
+14729 58216
+14731 49715
+14732 56504
+14736 67657
+14737 26174
+14738 26178
+14739 44269
+14740 26178
+14741 26174
+14742 22530
+14743 26178
+14744 46594
+14745 46595
+14746 54255
+14748 42273
+14749 23534
+14750 54465
+14751 26178
+14752 61675
+14753 23776
+14754 67657
+14755 42770
+14756 37794
+14760 1846
+14762 37258
+14764 41989
+14765 29008
+14766 67487
+14767 6309
+14768 59212
+14769 53182
+14770 23290
+14771 30145
+14772 45055
+14773 33627
+14774 72615
+14775 39808
+14776 23775
+14777 62302
+14778 53057
+14779 26178
+14780 65293
+14780 71398
+14781 61171
+14782 43261
+14783 17112
+14784 56454
+14785 23534
+14786 60229
+14788 42277
+14790 68266
+14791 43943
+14795 41829
+14796 24461
+14797 24462
+14798 26178
+14799 41669
+14800 54822
+14801 31614
+14802 80977
+14803 42277
+14804 23534
+14805 67657
+14806 67656
+14807 37111
+14808 62302
+14809 53057
+14810 23534
+14811 37112
+14813 22530
+14814 42273
+14816 1614
+14817 75365
+14818 42277
+14819 42273
+14820 22210
+14821 22209
+14822 31614
+14823 41668
+14824 41669
+14825 43845
+14826 43846
+14827 62908
+14828 62908
+14829 42277
+14830 41669
+14831 42277
+14832 42273
+14833 42277
+14834 37112
+14835 42273
+14836 42277
+14837 72501
+14838 8477
+14839 10054
+14840 42277
+14841 42277
+14843 32311
+14847 5367
+14848 5368
+14849 57594
+14850 67657
+14851 67657
+14852 54464
+14853 54465
+14855 57833
+14858 56504
+14859 56503
+14861 7630
+14863 26178
+14864 23585
+14865 3518
+14865 72475
+14867 23534
+14872 5829
+14873 46828
+14874 23534
+14875 23533
+14876 61675
+14877 42277
+14878 64350
+14879 26178
+14880 26178
+14883 41906
+14884 40083
+14885 35650
+14888 30096
+14892 4695
+14893 50841
+14894 46416
+14898 39724
+14899 21725
+14907 15853
+14908 6309
+14909 14911
+14910 70841
+14911 56454
+14912 29740
+14913 23533
+14914 23534
+14915 26178
+14917 62180
+14918 55890
+14919 9481
+14920 78467
+14924 20724
+14925 79259
+14926 32899
+14927 36454
+14928 58378
+14929 32976
+14930 49715
+14931 59990
+14932 32271
+14933 54464
+14934 56504
+14935 56503
+14936 66676
+14937 510
+14938 511
+14939 67657
+14940 67657
+14943 54464
+14944 54465
+14945 54465
+14946 77773
+14948 24225
+14949 17909
+14950 17740
+14951 43111
+14953 39789
+14954 26769
+14956 37112
+14960 510
+14961 511
+14966 27032
+14967 27033
+14970 15611
+14972 8998
+14973 8998
+14974 23534
+14977 23581
+14978 76165
+14980 2437
+14981 23776
+14982 15066
+14983 15068
+14984 15069
+14985 54465
+14987 47253
+14988 63678
+14989 37412
+14990 52553
+14992 31558
+14993 30687
+14994 30687
+14996 42273
+14997 42277
+15000 34290
+15001 78661
+15002 78661
+15003 19993
+15004 67020
+15005 34290
+15008 39068
+15009 22530
+15010 22763
+15011 47253
+15012 47253
+15013 37111
+15014 62302
+15015 65553
+15016 40275
+15017 43630
+15018 33442
+15020 63845
+15024 26178
+15025 54465
+15026 42277
+15027 42277
+15028 42273
+15029 42277
+15030 37258
+15031 24231
+15032 24231
+15033 62299
+15034 22530
+15035 54465
+15036 54464
+15037 26178
+15038 26174
+15039 22530
+15040 23534
+15041 26178
+15044 54465
+15045 54464
+15046 26178
+15047 60530
+15048 60530
+15051 64099
+15053 8141
+15055 22530
+15057 22530
+15058 67657
+15059 42277
+15060 37111
+15061 62302
+15062 22210
+15063 54465
+15064 66676
+15066 4040
+15067 4041
+15068 36571
+15069 4051
+15071 22210
+15072 37911
+15073 67657
+15074 49575
+15075 49575
+15076 9002
+15077 7276
+15078 51545
+15079 31614
+15080 61675
+15081 71837
+15082 22530
+15085 10271
+15089 29540
+15090 5346
+15091 64395
+15095 46595
+15096 23776
+15097 26178
+15098 26174
+15099 67657
+15101 7264
+15102 61858
+15103 26794
+15104 80464
+15106 68048
+15108 63477
+15109 26178
+15110 42277
+15111 42277
+15112 42277
+15113 42277
+15114 22210
+15115 23534
+15116 66676
+15117 66676
+15118 68048
+15119 37258
+15120 23533
+15121 23534
+15122 43846
+15123 46595
+15124 22530
+15125 24462
+15126 24464
+15127 24461
+15128 42277
+15129 54465
+15130 46595
+15131 46595
+15132 54255
+15133 37112
+15134 41668
+15135 62302
+15136 31614
+15137 41668
+15138 62302
+15139 41669
+15140 23534
+15141 26174
+15142 22530
+15143 26178
+15144 26178
+15145 23533
+15146 22530
+15147 26178
+15148 26174
+15149 67657
+15150 67657
+15151 32287
+15152 72462
+15154 23533
+15155 56504
+15156 28636
+15157 28636
+15158 23776
+15159 23533
+15161 41668
+15162 41669
+15163 37911
+15164 75418
+15165 31614
+15166 56415
+15167 41669
+15168 41666
+15169 22210
+15170 67657
+15171 37112
+15172 26178
+15173 26174
+15174 26178
+15175 66675
+15176 66676
+15177 42277
+15178 37911
+15179 54465
+15180 43707
+15181 43707
+15182 22530
+15183 37258
+15184 56504
+15185 54465
+15186 39102
+15187 26174
+15188 26178
+15189 26178
+15190 43430
+15192 38921
+15195 66676
+15196 66676
+15198 43846
+15199 43845
+15200 41189
+15201 37615
+15203 8949
+15205 8001
+15206 67657
+15207 624
+15210 26178
+15215 23534
+15216 42560
+15217 23776
+15218 23533
+15220 29659
+15221 22530
+15222 54255
+15223 14415
+15225 37112
+15226 37111
+15228 8950
+15229 16232
+15233 16233
+15235 9466
+15236 15066
+15237 20528
+15238 78364
+15239 15069
+15240 73323
+15242 27579
+15243 29500
+15244 29500
+15246 8396
+15247 48727
+15254 23776
+15255 22530
+15258 71304
+15259 71304
+15260 66675
+15261 66676
+15262 26178
+15264 42277
+15267 2911
+15268 23533
+15269 23534
+15270 62880
+15271 72260
+15273 23534
+15275 33073
+15276 31614
+15277 50107
+15278 47665
+15279 42747
+15280 23776
+15281 45310
+15282 26178
+15283 37257
+15284 23534
+15285 77598
+15286 23533
+15287 26178
+15289 61675
+15290 41669
+15291 37258
+15292 67657
+15295 43845
+15296 21467
+15298 26915
+15299 72464
+15301 66675
+15302 66675
+15303 37258
+15304 43703
+15306 27485
+15307 52727
+15308 78050
+15309 67144
+15314 1092
+15315 15316
+15316 56454
+15317 15316
+15318 18409
+15319 37400
+15321 4047
+15322 56257
+15324 46525
+15325 75978
+15327 5367
+15328 5368
+15330 37202
+15334 3203
+15335 17276
+15336 746
+15337 37006
+15338 4688
+15339 22468
+15342 65086
+15346 27352
+15347 80860
+15348 54438
+15349 54086
+15350 46828
+15353 11688
+15354 75331
+15355 11690
+15358 4047
+15360 26178
+15363 8476
+15364 65353
+15365 33563
+15366 52727
+15367 52639
+15368 42805
+15369 38564
+15370 71116
+15371 65353
+15372 55563
+15374 22498
+15376 72475
+15377 76580
+15379 9156
+15380 9156
+15383 42273
+15384 42277
+15388 43846
+15389 43844
+15390 22530
+15391 37258
+15392 62298
+15393 41752
+15394 56504
+15396 37111
+15399 23335
+15400 42277
+15401 9156
+15402 42273
+15403 22530
+15404 8392
+15408 26174
+15411 9156
+15412 41413
+15413 43846
+15414 48101
+15416 38092
+15422 26174
+15423 26178
+15424 74926
+15425 22210
+15426 62302
+15427 23534
+15428 17272
+15431 54465
+15432 22209
+15435 75632
+15436 75631
+15437 54254
+15438 54255
+15439 44130
+15440 23776
+15441 56503
+15443 23226
+15444 37258
+15445 54465
+15446 26174
+15447 23533
+15448 26178
+15451 22530
+15453 69273
+15458 66496
+15458 81315
+15459 37503
+15460 35320
+15461 23776
+15462 22530
+15464 54465
+15466 35768
+15468 62566
+15471 65372
+15472 57515
+15473 52040
+15474 35924
+15475 50417
+15476 81074
+15477 66640
+15479 64530
+15480 55127
+15482 40690
+15483 43829
+15486 75631
+15487 76037
+15489 4449
+15490 4842
+15490 67011
+15491 13131
+15494 42356
+15495 50417
+15496 65871
+15497 26178
+15498 26174
+15499 31224
+15501 22192
+15505 58238
+15506 5241
+15507 62805
+15510 17972
+15513 27954
+15515 8949
+15516 23533
+15518 45837
+15521 79046
+15522 19960
+15523 8149
+15524 9574
+15525 9575
+15526 49505
+15527 66496
+15528 36459
+15529 42273
+15530 67870
+15532 14919
+15535 64064
+15536 42277
+15538 26178
+15540 10254
+15545 66396
+15548 74926
+15549 54465
+15550 69285
+15552 48101
+15553 42277
+15556 67002
+15557 68759
+15558 68759
+15561 23202
+15562 22530
+15563 31614
+15564 62811
+15565 21235
+15567 43101
+15568 60530
+15569 71851
+15570 11595
+15571 11591
+15572 37257
+15573 34177
+15576 42356
+15577 20854
+15578 49505
+15579 23560
+15580 56315
+15583 67002
+15584 67657
+15585 23534
+15586 75787
+15587 75787
+15589 57823
+15590 27687
+15591 46595
+15593 68381
+15594 72268
+15595 27591
+15596 49967
+15599 52088
+15600 72475
+15601 76580
+15610 71739
+15611 28908
+15612 74926
+15614 6789
+15616 26718
+15617 26718
+15618 22764
+15619 49625
+15620 23202
+15621 7630
+15622 15853
+15623 23534
+15624 37111
+15625 62302
+15626 37112
+15627 56504
+15629 65663
+15630 65663
+15631 79007
+15632 26174
+15633 22530
+15635 37494
+15636 37112
+15637 67657
+15638 42277
+15639 42273
+15642 80339
+15644 42273
+15645 54464
+15646 54464
+15647 54465
+15648 42277
+15649 23533
+15650 29741
+15651 24461
+15652 24462
+15653 37112
+15654 37111
+15655 31614
+15656 43846
+15657 41275
+15658 43845
+15661 30882
+15662 624
+15665 42079
+15666 68760
+15667 11314
+15668 48756
+15670 31614
+15671 37910
+15672 37112
+15673 64350
+15674 64349
+15675 62302
+15678 80595
+15679 37112
+15680 33630
+15681 22210
+15682 22530
+15683 66676
+15684 56504
+15685 41669
+15686 41668
+15687 62299
+15688 8397
+15690 30316
+15691 30315
+15697 60533
+15701 34724
+15702 37258
+15706 26178
+15707 68591
+15708 67657
+15710 24461
+15711 22530
+15714 79134
+15715 15642
+15717 2124
+15718 59549
+15719 47613
+15728 50791
+15733 66138
+15734 65861
+15735 52279
+15736 77064
+15737 71124
+15739 26178
+15740 45288
+15741 26178
+15744 42480
+15745 48548
+15747 24770
+15750 29741
+15752 23569
+15754 11363
+15758 5168
+15767 67657
+15776 40789
+15777 43845
+15778 42277
+15780 38252
+15783 59242
+15784 57526
+15785 54972
+15787 45683
+15788 29123
+15789 63031
+15790 53990
+15791 38086
+15792 63338
+15801 72374
+15802 38005
+15803 3195
+15804 72644
+15805 80354
+15806 58542
+15808 22530
+15811 23534
+15814 4047
+15819 22670
+15820 49528
+15822 29482
+15823 9193
+15824 6309
+15825 64234
+15826 3518
+15827 3519
+15828 39707
+15831 8604
+15833 21971
+15834 67733
+15835 31626
+15836 22844
+15836 28241
+15837 53953
+15838 42204
+15839 7410
+15840 48789
+15841 52550
+15842 31631
+15843 57821
+15844 58334
+15845 58492
+15846 53182
+15847 76494
+15848 80984
+15849 4647
+15850 23569
+15851 66440
+15852 64979
+15853 10340
+15854 73594
+15855 58412
+15856 23256
+15858 6309
+15859 15853
+15860 56454
+15861 3521
+15862 39707
+15863 38921
+15863 67801
+15864 15622
+15865 49171
+15866 23586
+15866 48695
+15869 52384
+15870 33892
+15871 53830
+15873 37258
+15875 19726
+15879 26607
+15880 37111
+15881 37258
+15882 64125
+15883 67657
+15884 67656
+15885 62302
+15887 43846
+15889 41505
+15889 8354
+15890 9466
+15891 55343
+15892 55343
+15893 75978
+15894 31614
+15895 23776
+15909 4694
+15910 67510
+15911 55343
+15912 69744
+15916 61675
+15918 70098
+15919 30069
+15920 33337
+15922 49777
+15923 6926
+15927 20580
+15928 21557
+15929 50387
+15929 52283
+15930 39319
+15931 20580
+15932 56504
+15934 23776
+15935 23775
+15936 62302
+15938 33749
+15939 37006
+15942 67657
+15943 23776
+15945 16312
+15948 37112
+15949 22530
+15950 41669
+15955 54465
+15956 26178
+15957 67657
+15958 49284
+15961 53056
+15962 53057
+15963 56752
+15964 42738
+15965 54804
+15967 40660
+15968 28485
+15969 67904
+15980 49613
+15985 52460
+15986 57495
+15987 17112
+15988 5790
+15992 21114
+15993 21926
+15994 60689
+15995 35813
+15996 38480
+15997 56454
+15998 58951
+15999 73975
+16000 2911
+16002 43846
+16003 43845
+16005 67657
+16006 67656
+16009 74878
+16011 65353
+16014 23880
+16015 42277
+16019 43432
+16020 293
+16021 80514
+16022 26174
+16023 26178
+16024 42277
+16026 9339
+16027 9340
+16028 76483
+16029 30774
+16030 29510
+16031 33298
+16032 52727
+16033 61686
+16034 35461
+16035 55911
+16038 37790
+16039 23860
+16039 73003
+16040 62785
+16041 59117
+16043 45288
+16048 11246
+16049 56504
+16050 8604
+16051 66499
+16052 66822
+16053 13692
+16054 20526
+16056 62797
+16058 9193
+16059 67657
+16061 43846
+16062 43845
+16063 56504
+16068 27001
+16070 8149
+16072 41669
+16073 17972
+16074 9156
+16075 29741
+16078 23468
+16079 56504
+16080 26174
+16081 49777
+16084 26178
+16086 13083
+16087 10366
+16088 54465
+16089 53055
+16092 4047
+16093 70995
+16094 80935
+16097 31588
+16105 4047
+16117 23776
+16118 4047
+16124 9150
+16126 22210
+16127 22209
+16132 6819
+16133 52550
+16134 46827
+16135 62302
+16136 29741
+16137 22530
+16140 37579
+16141 12438
+16142 8949
+16143 46828
+16145 62797
+16146 75454
+16147 58565
+16148 42277
+16149 43010
+16149 68224
+16151 42267
+16152 68222
+16153 68222
+16154 42273
+16157 23776
+16158 31177
+16159 26178
+16160 29741
+16163 48559
+16164 37112
+16165 37111
+16166 17275
+16167 58238
+16168 42277
+16169 41669
+16170 41668
+16173 25709
+16176 9180
+16179 23776
+16181 23534
+16182 9193
+16185 14816
+16186 37112
+16187 15986
+16188 19095
+16189 72501
+16191 11311
+16197 1019
+16207 23385
+16211 6309
+16221 37428
+16223 43277
+16228 13066
+16229 37258
+16230 34387
+16231 67657
+16232 8998
+16233 53354
+16234 80542
+16244 35649
+16247 25544
+16248 42115
+16250 37257
+16251 62302
+16252 37258
+16253 17041
+16254 17042
+16259 23776
+16261 23776
+16269 56454
+16274 37111
+16275 62302
+16276 37112
+16278 29741
+16279 37111
+16282 43846
+16283 43849
+16285 58172
+16286 1092
+16287 12570
+16294 72499
+16297 11246
+16299 29741
+16300 23776
+16301 56504
+16302 64350
+16303 37258
+16304 31614
+16305 23534
+16306 54465
+16307 23534
+16308 23533
+16309 26178
+16310 37518
+16311 43845
+16312 23619
+16313 22530
+16314 37112
+16315 42277
+16316 42277
+16319 9193
+16320 9194
+16321 42277
+16330 37112
+16331 37111
+16332 62302
+16336 6043
+16338 37503
+16340 80001
+16341 62110
+16342 23776
+16345 41699
+16346 66956
+16347 23534
+16348 23533
+16349 60594
+16350 23533
+16351 1092
+16353 56454
+16354 16353
+16355 510
+16358 22530
+16359 22530
+16360 66676
+16361 22530
+16362 22530
+16363 22530
+16364 66676
+16365 37111
+16366 37112
+16367 23776
+16368 80339
+16369 79134
+16370 80339
+16371 79134
+16374 45957
+16375 5629
+16376 17269
+16380 47242
+16381 61189
+16382 6907
+16383 8396
+16385 70794
+16388 38921
+16388 67801
+16389 46595
+16390 26178
+16391 67657
+16392 67656
+16394 6309
+16397 32650
+16399 26178
+16400 32177
+16401 22530
+16404 6309
+16405 7276
+16406 6320
+16407 53883
+16408 22210
+16409 31614
+16410 56504
+16411 23533
+16413 42277
+16414 42273
+16415 42277
+16416 23534
+16417 26178
+16418 66676
+16419 36440
+16420 41669
+16421 41666
+16423 67657
+16426 56503
+16429 71000
+16431 37112
+16432 80977
+16433 80973
+16434 56504
+16435 41669
+16436 41668
+16437 31614
+16438 67657
+16439 37910
+16440 22530
+16441 43846
+16442 43845
+16447 29741
+16449 66252
+16451 68759
+16452 61539
+16453 61541
+16454 77061
+16455 56504
+16459 68759
+16460 68759
+16462 23772
+16464 37160
+16471 52283
+16473 71833
+16475 46594
+16476 46595
+16477 42277
+16478 42273
+16479 42277
+16480 23533
+16481 41205
+16483 66676
+16484 66675
+16485 66676
+16486 56504
+16488 56504
+16489 54464
+16490 22530
+16491 54465
+16492 29741
+16493 24119
+16494 43846
+16495 39009
+16496 39009
+16497 39009
+16498 43845
+16499 43849
+16500 22530
+16501 43845
+16502 43846
+16503 57231
+16504 26174
+16505 26178
+16506 23776
+16507 23533
+16508 23534
+16509 42277
+16510 42273
+16511 42277
+16512 42277
+16513 17354
+16514 42273
+16515 22530
+16517 77424
+16518 42277
+16519 23776
+16520 47665
+16521 42277
+16522 42273
+16523 22530
+16524 49777
+16527 22530
+16529 6309
+16530 36587
+16531 80209
+16532 47880
+16533 41241
+16534 71973
+16535 37579
+16536 51587
+16537 42770
+16538 61961
+16539 75804
+16540 37579
+16542 52283
+16543 16529
+16549 6025
+16550 7028
+16551 48559
+16552 79692
+16553 27521
+16553 41607
+16554 65998
+16555 40819
+16556 38435
+16557 26929
+16557 80889
+16561 51105
+16562 39724
+16563 24245
+16566 23776
+16567 23775
+16568 62302
+16570 23776
+16571 23534
+16572 23534
+16573 23533
+16574 42273
+16576 31614
+16578 58172
+16579 9085
+16580 77348
+16581 2559
+16587 19696
+16588 34917
+16590 48577
+16593 67657
+16594 42277
+16596 56504
+16597 23585
+16597 68768
+16599 69634
+16601 6007
+16607 10334
+16608 19254
+16609 43845
+16610 43849
+16611 50385
+16612 21114
+16614 21117
+16615 69275
+16616 69279
+16617 69275
+16618 69279
+16619 69279
+16620 69275
+16621 69279
+16622 69275
+16623 69279
+16624 69275
+16625 69279
+16626 69279
+16627 69275
+16628 69279
+16629 69275
+16630 69279
+16631 69275
+16632 69279
+16633 69275
+16634 56069
+16635 69279
+16636 69275
+16637 69279
+16638 69275
+16639 69279
+16640 69279
+16641 69279
+16642 69275
+16643 69279
+16644 69275
+16645 69279
+16646 71766
+16647 37497
+16648 49715
+16649 34387
+16650 50385
+16651 50385
+16653 74470
+16659 39421
+16660 64723
+16662 42313
+16663 66676
+16664 26178
+16666 41669
+16667 41668
+16668 62302
+16669 42277
+16670 49715
+16671 56284
+16672 54465
+16674 42277
+16675 29741
+16676 56504
+16679 38921
+16682 15986
+16683 16188
+16688 12565
+16689 12566
+16690 3531
+16691 324
+16692 7410
+16695 9126
+16696 9125
+16698 55935
+16699 23776
+16702 46509
+16703 293
+16704 43432
+16705 11311
+16708 76580
+16709 76580
+16710 76580
+16712 8149
+16713 2728
+16714 61858
+16715 56416
+16716 56415
+16717 7668
+16718 39598
+16719 43845
+16720 43846
+16721 4047
+16724 62299
+16728 17111
+16729 17112
+16732 56504
+16733 19721
+16734 23776
+16735 26178
+16736 42277
+16737 23776
+16738 42277
+16742 22530
+16744 42273
+16745 42277
+16746 42277
+16747 24464
+16748 23776
+16749 30157
+16750 32241
+16751 80902
+16752 32955
+16753 66492
+16754 21511
+16755 39732
+16756 43104
+16757 20669
+16758 29541
+16759 75033
+16760 75702
+16761 36454
+16763 47544
+16764 19007
+16765 20955
+16766 62299
+16767 67657
+16768 17261
+16770 20724
+16771 20540
+16772 40711
+16773 66641
+16774 37702
+16775 39722
+16776 62423
+16777 20925
+16779 36751
+16780 32295
+16781 39494
+16782 56504
+16786 26178
+16790 55363
+16792 241
+16802 29560
+16802 31307
+16805 56454
+16806 16805
+16807 57495
+16811 9156
+16812 56441
+16814 14209
+16815 14208
+16817 49777
+16818 4040
+16819 33637
+16820 69285
+16822 71866
+16823 68759
+16825 69285
+16826 8399
+16827 8393
+16829 38921
+16835 8477
+16837 16839
+16838 79958
+16839 8476
+16840 6926
+16846 510
+16847 511
+16848 51062
+16849 9156
+16851 80943
+16852 70974
+16853 9465
+16854 62350
+16859 63475
+16867 43882
+16873 1372
+16878 70098
+16879 62968
+16880 80863
+16882 69285
+16883 76979
+16884 9150
+16885 12570
+16888 9466
+16889 50385
+16890 5109
+16891 2815
+16893 41205
+16894 41203
+16895 37503
+16898 59178
+16899 69285
+16900 8399
+16901 8393
+16903 1845
+16904 1846
+16905 37258
+16906 23772
+16907 8949
+16908 16909
+16909 19154
+16912 69181
+16913 8392
+16914 19246
+16915 69285
+16916 66109
+16918 52635
+16918 69977
+16920 26178
+16921 23533
+16922 23534
+16923 38084
+16924 49176
+16927 15986
+16928 34659
+16929 71112
+16930 52107
+16931 43392
+16932 60795
+16933 72732
+16934 79539
+16935 29229
+16936 9193
+16937 62171
+16940 37258
+16941 37258
+16943 23776
+16951 56454
+16952 293
+16957 61961
+16958 62546
+16960 54465
+16961 80428
+16962 76580
+16963 78351
+16964 76580
+16966 13156
+16967 18232
+16968 37503
+16969 41203
+16972 7630
+16975 41054
+16976 70627
+16977 32265
+16980 42273
+16981 42277
+16983 23776
+16985 42273
+16986 22530
+16987 42277
+16989 36209
+16991 26178
+16992 23776
+16993 67657
+16994 67656
+16996 14098
+17001 39730
+17003 14782
+17007 23533
+17008 23534
+17009 78382
+17010 77186
+17011 77515
+17013 52727
+17017 48206
+17018 37258
+17023 16232
+17027 38044
+17028 1372
+17029 57134
+17032 1372
+17033 16232
+17034 17037
+17035 62805
+17036 23776
+17037 57521
+17038 68759
+17039 48695
+17040 26157
+17041 14626
+17042 746
+17046 22530
+17047 22530
+17048 61675
+17050 11311
+17051 54390
+17054 69095
+17055 21673
+17056 20831
+17056 21672
+17057 68177
+17058 22530
+17059 22209
+17061 67657
+17062 41613
+17063 58515
+17064 55343
+17065 12150
+17067 66676
+17069 23533
+17070 53057
+17073 72732
+17074 80526
+17075 23534
+17076 23534
+17077 26178
+17079 25634
+17080 51349
+17081 56314
+17082 47628
+17083 26174
+17086 67657
+17088 9465
+17089 48206
+17090 69475
+17095 16142
+17096 16141
+17103 70974
+17104 50841
+17105 42984
+17106 78232
+17109 75804
+17111 49777
+17112 1812
+17113 65225
+17115 71124
+17116 75311
+17117 37258
+17118 68381
+17119 6309
+17120 17112
+17122 56454
+17123 6309
+17124 17112
+17126 6309
+17127 49715
+17128 11164
+17131 53056
+17132 53057
+17133 79125
+17134 54465
+17135 68004
+17136 68508
+17145 70974
+17146 70974
+17150 67657
+17151 37065
+17152 24486
+17154 58614
+17157 37690
+17158 67902
+17159 71535
+17161 38308
+17162 52326
+17166 80339
+17167 60530
+17168 5829
+17169 71599
+17170 49715
+17171 58490
+17172 60530
+17173 60530
+17175 59334
+17176 37503
+17178 25618
+17180 50694
+17181 75464
+17182 48576
+17184 53539
+17188 5763
+17189 32450
+17191 71778
+17192 23775
+17193 23776
+17194 41669
+17195 23776
+17196 42277
+17198 42273
+17199 48129
+17200 22530
+17201 56415
+17202 22530
+17203 23534
+17204 23776
+17206 61995
+17208 23776
+17210 8538
+17212 53055
+17215 23569
+17217 49818
+17220 79125
+17221 8397
+17222 26999
+17223 293
+17224 4931
+17227 56454
+17228 17227
+17229 26178
+17231 47121
+17233 77811
+17236 5763
+17237 54400
+17239 23776
+17242 13083
+17243 66676
+17244 46512
+17245 22532
+17247 54063
+17248 80187
+17250 61539
+17251 65843
+17253 67657
+17254 17111
+17255 17112
+17256 67657
+17258 54465
+17259 54464
+17260 1845
+17261 1846
+17262 68508
+17267 66324
+17268 46597
+17269 5630
+17271 293
+17272 56454
+17274 20724
+17275 626
+17276 747
+17277 10250
+17278 43631
+17279 69089
+17280 72914
+17281 60465
+17286 624
+17289 624
+17290 5630
+17291 40217
+17294 10008
+17295 56454
+17296 17295
+17297 60465
+17305 32987
+17308 1849
+17309 23751
+17311 17972
+17312 34659
+17313 36976
+17314 624
+17316 32987
+17318 12050
+17321 73103
+17324 54464
+17325 54465
+17327 29162
+17328 39497
+17329 54109
+17330 6309
+17331 15853
+17332 10253
+17334 624
+17338 81317
+17339 81317
+17340 28032
+17341 28032
+17342 54269
+17343 81317
+17344 81317
+17345 18616
+17346 22468
+17347 26650
+17348 46398
+17349 40275
+17350 25430
+17351 43718
+17352 39191
+17353 54125
+17354 54126
+17355 54126
+17356 68576
+17357 56454
+17358 21573
+17359 2892
+17360 28405
+17361 58576
+17362 59062
+17363 45608
+17364 60252
+17365 37579
+17366 18616
+17367 53057
+17368 56503
+17369 56504
+17370 42273
+17371 42476
+17372 23656
+17372 79271
+17373 39418
+17374 47939
+17376 43405
+17377 37258
+17378 48010
+17380 7624
+17381 56504
+17382 67657
+17384 22530
+17385 23557
+17386 39438
+17387 63682
+17388 32650
+17389 45754
+17390 37904
+17391 23848
+17396 64016
+17397 31745
+17400 71866
+17401 73030
+17402 29741
+17403 29741
+17404 37911
+17406 71408
+17407 37258
+17408 43845
+17409 43849
+17410 43845
+17411 56707
+17412 62302
+17413 56708
+17414 62302
+17415 23533
+17416 23534
+17417 23533
+17418 26178
+17419 26174
+17420 22530
+17421 26178
+17422 66676
+17423 31614
+17424 23533
+17425 49777
+17426 57315
+17427 73155
+17428 42277
+17429 42273
+17430 26178
+17431 42277
+17432 42273
+17435 44439
+17437 54465
+17438 29741
+17440 26178
+17441 23790
+17442 2911
+17443 67657
+17444 56504
+17445 24461
+17446 24462
+17447 24461
+17448 22530
+17449 56504
+17450 56415
+17452 26178
+17453 20868
+17454 27349
+17455 60466
+17456 31711
+17457 44130
+17459 43693
+17460 43244
+17461 49661
+17462 75480
+17463 37906
+17466 63049
+17467 23534
+17468 3503
+17469 58139
+17470 3503
+17471 58139
+17473 37112
+17474 35544
+17475 56504
+17476 31614
+17479 29741
+17483 23534
+17484 42273
+17485 42277
+17486 22530
+17487 42277
+17488 42273
+17489 23533
+17490 17492
+17491 1372
+17492 56454
+17493 72375
+17494 4807
+17496 7577
+17502 17503
+17503 74119
+17504 5168
+17505 17503
+17506 23776
+17509 28333
+17512 42984
+17513 71603
+17514 52578
+17519 50271
+17523 29378
+17524 37258
+17526 73032
+17527 37111
+17528 37112
+17529 23533
+17530 4694
+17531 21835
+17531 47779
+17533 42392
+17534 39395
+17535 45754
+17536 45753
+17538 60530
+17539 23706
+17540 66641
+17541 36970
+17541 69698
+17542 5829
+17545 39068
+17546 39068
+17547 26178
+17548 26174
+17552 26178
+17553 22530
+17555 56949
+17564 29740
+17566 69068
+17567 69089
+17568 21894
+17569 74071
+17572 37112
+17573 41669
+17574 23533
+17575 23534
+17576 56504
+17577 42277
+17578 23776
+17579 17385
+17581 31352
+17582 37258
+17585 26174
+17586 26178
+17587 37257
+17588 22530
+17589 24349
+17591 27021
+17592 26178
+17594 26174
+17595 66676
+17596 58565
+17602 52280
+17607 7494
+17608 42273
+17609 41669
+17610 54465
+17611 26178
+17613 67043
+17614 62063
+17615 26607
+17617 32177
+17618 20554
+17619 47385
+17619 74531
+17620 59369
+17621 26769
+17622 23533
+17623 42277
+17626 61539
+17627 21169
+17628 39705
+17629 61541
+17631 50841
+17632 55154
+17633 23776
+17635 22530
+17636 28249
+17637 35226
+17638 61208
+17639 24225
+17646 30971
+17651 66676
+17654 79158
+17662 43214
+17663 53134
+17664 41752
+17665 70285
+17675 57106
+17678 53057
+17679 56504
+17680 56503
+17681 26178
+17682 22530
+17683 24464
+17684 73765
+17685 73765
+17686 24461
+17687 26178
+17688 77937
+17689 23776
+17691 26174
+17692 22530
+17694 26178
+17695 43846
+17697 42273
+17698 56415
+17699 56416
+17700 67657
+17701 73894
+17702 43846
+17703 21375
+17704 21375
+17705 21375
+17706 43845
+17707 26178
+17708 26174
+17709 22530
+17710 23534
+17711 46719
+17713 67876
+17714 38921
+17714 67801
+17716 26178
+17717 26174
+17718 26178
+17721 37258
+17722 37258
+17723 37258
+17724 37111
+17725 42905
+17725 62916
+17729 37258
+17730 66493
+17730 9466
+17732 24311
+17733 81306
+17734 41564
+17735 5833
+17739 293
+17740 56454
+17745 12570
+17746 57308
+17748 54464
+17749 43846
+17750 27080
+17752 2272
+17753 26178
+17754 26174
+17764 9006
+17766 1688
+17767 23240
+17773 45056
+17775 46595
+17776 33442
+17777 9007
+17778 66822
+17780 42069
+17781 68763
+17782 31609
+17784 38921
+17785 12570
+17786 69285
+17787 64089
+17788 52382
+17789 66491
+17790 32567
+17792 30578
+17793 32642
+17794 32642
+17795 41535
+17796 4694
+17797 47855
+17799 40689
+17800 55197
+17801 54465
+17802 37110
+17803 43718
+17804 2178
+17805 76740
+17808 56454
+17809 26178
+17811 29660
+17813 54465
+17814 38045
+17818 72128
+17822 49795
+17825 1846
+17826 67657
+17828 42747
+17829 40570
+17832 293
+17833 13027
+17835 56454
+17836 6309
+17837 77911
+17838 77908
+17841 16405
+17842 81083
+17843 17846
+17844 54877
+17845 55148
+17846 56454
+17847 67996
+17849 34529
+17850 35737
+17851 75351
+17852 75356
+17853 37112
+17854 67657
+17857 22953
+17858 41635
+17860 10253
+17862 30740
+17863 43432
+17864 61961
+17865 61961
+17866 37579
+17869 31182
+17874 26174
+17875 26174
+17876 54465
+17877 50569
+17880 54465
+17881 23776
+17882 31614
+17883 62299
+17884 37111
+17885 56504
+17886 37112
+17887 42277
+17888 42277
+17889 31614
+17890 54465
+17891 43845
+17892 43846
+17893 22530
+17894 54465
+17896 42273
+17897 42277
+17898 56504
+17899 42273
+17900 68048
+17906 1372
+17908 28062
+17909 56454
+17910 61526
+17911 37112
+17912 26178
+17913 55661
+17914 37112
+17919 64875
+17920 58463
+17921 55663
+17922 33143
+17923 52727
+17924 76314
+17925 76314
+17926 74535
+17927 25564
+17928 51199
+17929 45751
+17930 31404
+17931 38366
+17931 72785
+17932 40844
+17933 33806
+17934 54043
+17935 57106
+17936 23533
+17938 48526
+17939 48521
+17941 68324
+17942 62194
+17943 37112
+17947 53057
+17948 53056
+17949 23533
+17950 54464
+17951 54465
+17952 23534
+17957 54465
+17958 26178
+17960 80973
+17963 6621
+17964 6622
+17965 23776
+17969 14816
+17970 13351
+17971 1372
+17972 9652
+17973 17972
+17974 17972
+17975 17972
+17976 17972
+17977 17972
+17983 38044
+17984 1372
+17987 1372
+17989 40462
+17990 9085
+17991 56454
+17993 23515
+17994 14209
+17995 14208
+17998 66496
+17999 29741
+18006 70002
+18008 68048
+18009 54464
+18011 37579
+18012 37257
+18013 67657
+18014 37258
+18016 54465
+18017 54465
+18018 5629
+18019 17290
+18022 59394
+18023 9465
+18026 75195
+18029 62299
+18030 23776
+18035 75351
+18036 72351
+18037 38921
+18038 67485
+18039 28060
+18040 69199
+18041 51358
+18042 17991
+18047 80483
+18051 746
+18053 66676
+18054 16233
+18055 2815
+18056 2814
+18057 37503
+18059 293
+18060 56454
+18061 18060
+18062 37503
+18063 63861
+18064 69285
+18065 41205
+18066 41203
+18067 61541
+18069 15203
+18071 54464
+18072 54465
+18077 8949
+18078 18077
+18082 23776
+18084 31614
+18086 22210
+18089 37258
+18090 54464
+18091 22530
+18092 54465
+18093 75328
+18094 75328
+18097 14994
+18098 11311
+18104 2911
+18107 35891
+18109 19154
+18110 12272
+18111 15986
+18112 18850
+18117 54465
+18118 49777
+18121 42277
+18122 42277
+18124 46594
+18125 62302
+18126 54465
+18127 46594
+18128 46595
+18129 31614
+18130 46595
+18131 17972
+18132 24165
+18132 53278
+18132 56513
+18133 6752
+18134 54465
+18135 54464
+18139 34936
+18145 49819
+18146 59635
+18149 9465
+18150 21394
+18151 53056
+18152 41669
+18153 23776
+18155 76921
+18156 62354
+18159 66675
+18162 29741
+18164 31614
+18165 64166
+18169 58838
+18170 24804
+18171 17385
+18172 67657
+18174 37112
+18175 31614
+18176 5629
+18177 17269
+18178 22530
+18183 67657
+18185 23533
+18187 624
+18190 56792
+18193 22799
+18194 54464
+18195 31614
+18196 23533
+18198 67657
+18200 2272
+18201 80977
+18202 80973
+18203 56415
+18208 23534
+18209 23533
+18211 37862
+18211 61190
+18212 66676
+18213 75807
+18215 41054
+18215 76944
+18219 42856
+18221 77182
+18222 22530
+18223 34841
+18224 50198
+18225 75861
+18226 68048
+18227 66675
+18228 64307
+18229 66676
+18230 5168
+18232 17041
+18234 46595
+18235 29741
+18236 42277
+18237 75885
+18238 23776
+18239 23533
+18240 26178
+18241 42273
+18242 26174
+18243 42277
+18244 37579
+18245 23533
+18246 23776
+18248 7264
+18249 6309
+18250 7410
+18251 72217
+18253 624
+18257 5168
+18258 52307
+18259 53985
+18260 53985
+18261 30390
+18262 22519
+18263 48376
+18264 42862
+18265 59317
+18266 74006
+18267 68000
+18268 42747
+18269 73577
+18270 77702
+18271 76873
+18273 17972
+18274 56454
+18276 54465
+18277 42277
+18280 7531
+18281 31614
+18282 54255
+18283 37911
+18285 26178
+18286 66676
+18288 49511
+18289 41505
+18289 52553
+18293 67564
+18294 62791
+18295 21235
+18299 37257
+18300 5881
+18301 7624
+18304 22530
+18305 43845
+18306 41668
+18307 41669
+18308 64125
+18311 37258
+18314 37111
+18316 23533
+18317 22530
+18318 2815
+18319 23533
+18320 15611
+18321 23534
+18322 67657
+18324 22530
+18326 37258
+18329 7624
+18330 7624
+18332 12889
+18333 37112
+18334 43846
+18335 24461
+18336 74263
+18339 10334
+18340 15540
+18341 20724
+18343 37258
+18344 17972
+18350 75978
+18351 54465
+18354 79135
+18359 44341
+18368 38480
+18370 6309
+18371 18372
+18372 9002
+18373 26174
+18374 26178
+18375 26174
+18376 56504
+18377 23533
+18378 26178
+18380 46595
+18381 46595
+18384 23776
+18386 42277
+18389 80001
+18390 54465
+18391 54465
+18392 37111
+18393 23776
+18394 39846
+18395 22530
+18396 37258
+18397 22530
+18398 22530
+18401 67657
+18405 8380
+18406 1372
+18407 54922
+18408 75804
+18409 17037
+18410 23534
+18411 26178
+18413 32071
+18419 74926
+18421 72926
+18424 42277
+18426 37258
+18427 37257
+18428 31614
+18429 56504
+18430 43846
+18431 43845
+18433 26178
+18434 26174
+18441 1372
+18442 7577
+18444 47182
+18445 28544
+18446 26174
+18447 22530
+18450 42277
+18451 43842
+18452 23534
+18453 23533
+18454 23533
+18455 23534
+18456 23533
+18458 67657
+18459 23533
+18464 54338
+18464 9466
+18465 9465
+18466 6995
+18467 49461
+18471 59819
+18471 61858
+18472 41189
+18473 66675
+18474 66676
+18481 8949
+18482 12668
+18484 19733
+18489 9002
+18491 5629
+18492 17290
+18495 41669
+18496 26174
+18497 26178
+18498 53057
+18499 23202
+18501 43432
+18502 293
+18504 80595
+18505 79135
+18510 67657
+18512 12684
+18513 54465
+18514 2280
+18515 38084
+18516 18843
+18519 71304
+18520 48536
+18523 66676
+18524 74071
+18527 1846
+18528 14816
+18529 11244
+18530 56454
+18531 67657
+18535 67513
+18537 42273
+18538 22530
+18542 61961
+18543 46595
+18546 23533
+18547 624
+18548 6056
+18549 67247
+18551 432
+18555 25896
+18557 74926
+18563 23776
+18564 37112
+18565 26178
+18566 42277
+18567 42273
+18572 37112
+18573 37911
+18574 42277
+18575 42273
+18576 42277
+18577 42277
+18578 4040
+18579 4051
+18582 56504
+18585 54465
+18586 23776
+18587 54464
+18588 54465
+18591 4047
+18592 56138
+18593 22003
+18594 77181
+18595 21394
+18597 37112
+18598 37111
+18599 64948
+18600 56994
+18601 29624
+18602 12288
+18605 54255
+18607 45752
+18608 43837
+18609 45754
+18610 28750
+18611 36671
+18612 18607
+18613 18607
+18614 18607
+18616 80860
+18617 62257
+18619 37112
+18620 31614
+18621 43846
+18622 50965
+18623 50965
+18624 43845
+18625 43849
+18630 24461
+18635 42277
+18636 42273
+18637 23534
+18641 23534
+18642 51515
+18643 23534
+18644 64350
+18645 64349
+18646 67657
+18647 54464
+18648 54465
+18649 42273
+18650 56504
+18651 42273
+18652 26178
+18653 43846
+18654 21375
+18655 21375
+18656 21375
+18657 21375
+18658 21375
+18659 21375
+18660 43845
+18661 41669
+18662 23534
+18663 43846
+18664 22530
+18665 23776
+18666 29741
+18667 54465
+18668 54465
+18669 56416
+18670 56415
+18671 67657
+18672 42277
+18673 42273
+18674 42273
+18675 56504
+18676 67657
+18678 47121
+18679 23776
+18680 53056
+18682 66676
+18684 42277
+18685 26178
+18688 38044
+18689 36569
+18690 37503
+18691 15069
+18692 37202
+18693 7418
+18694 44315
+18696 4047
+18697 66675
+18698 66676
+18699 23533
+18700 23534
+18701 23776
+18703 23776
+18704 37258
+18705 53087
+18708 56504
+18711 69178
+18712 68177
+18713 22210
+18714 26174
+18715 23534
+18716 26178
+18717 26174
+18718 26174
+18719 22530
+18720 1372
+18721 54415
+18722 78309
+18725 54255
+18727 23534
+18728 23533
+18729 23533
+18732 67656
+18733 67657
+18736 66676
+18738 32911
+18739 65312
+18740 74978
+18744 43152
+18749 43846
+18750 41275
+18751 34387
+18752 41115
+18753 20968
+18754 73125
+18755 64979
+18757 23533
+18758 14209
+18759 14208
+18760 6752
+18761 46595
+18763 1845
+18764 17261
+18766 293
+18767 2126
+18768 3575
+18769 72946
+18770 43846
+18771 43845
+18772 43849
+18773 43846
+18774 43845
+18777 22530
+18782 69829
+18783 81295
+18785 38921
+18787 67876
+18788 23219
+18789 61305
+18790 80001
+18794 53057
+18795 77803
+18796 43846
+18797 43845
+18798 43849
+18800 5629
+18801 17290
+18802 22670
+18803 23534
+18804 18805
+18805 584
+18806 585
+18811 293
+18812 18814
+18813 18814
+18814 56454
+18818 54465
+18819 54464
+18820 19954
+18821 46507
+18823 17276
+18824 18825
+18825 746
+18826 66676
+18829 31614
+18830 26174
+18831 26174
+18832 26178
+18833 18489
+18838 33130
+18839 18849
+18840 53059
+18841 53059
+18842 51699
+18843 38086
+18845 78364
+18846 63338
+18847 28568
+18848 15499
+18849 1372
+18850 585
+18851 18850
+18852 29123
+18854 73190
+18855 25230
+18856 9399
+18857 56454
+18858 76609
+18859 25222
+18861 18849
+18863 18850
+18864 56454
+18869 77814
+18870 70974
+18871 49777
+18872 33894
+18873 69845
+18874 26174
+18875 26178
+18877 37258
+18878 54465
+18880 9193
+18881 9194
+18882 59337
+18884 9126
+18885 9125
+18888 23776
+18890 17041
+18891 17042
+18892 1845
+18894 71017
+18897 38044
+18899 27533
+18900 4047
+18901 69181
+18903 70466
+18905 38822
+18908 18232
+18910 6043
+18911 80973
+18912 80977
+18915 26178
+18918 59250
+18920 56504
+18921 56503
+18922 66675
+18923 57315
+18924 57315
+18926 22530
+18927 26174
+18928 26178
+18929 38901
+18930 66150
+18934 26178
+18935 26174
+18937 58463
+18938 55563
+18939 52727
+18940 59172
+18941 33136
+18942 21036
+18944 3532
+18945 23534
+18946 15986
+18947 14250
+18950 293
+18951 56454
+18952 18951
+18953 3187
+18954 6634
+18956 18849
+18957 18850
+18958 68993
+18959 54464
+18960 54465
+18962 17112
+18963 6309
+18964 56454
+18967 67657
+18969 13156
+18970 37111
+18971 37112
+18973 46060
+18975 74203
+18977 64350
+18978 64349
+18979 64351
+18980 31614
+18983 66676
+18984 38921
+18985 62302
+18986 67656
+18987 54255
+18989 13692
+18990 42277
+18991 1846
+18992 58238
+18993 32914
+19000 62207
+19001 62207
+19002 3518
+19003 3519
+19004 4041
+19005 56416
+19006 59394
+19007 69841
+19008 73104
+19009 54706
+19010 47315
+19011 62809
+19012 16770
+19013 46965
+19014 36946
+19015 32575
+19016 23401
+19016 26796
+19017 42392
+19018 56415
+19019 37503
+19020 15068
+19021 15069
+19022 19023
+19023 56454
+19025 15068
+19026 11968
+19027 49819
+19028 80963
+19029 19035
+19030 19035
+19031 5168
+19032 19035
+19033 19035
+19034 16612
+19035 21114
+19037 41539
+19038 21394
+19039 21558
+19040 21394
+19042 25253
+19043 21394
+19044 28747
+19045 21394
+19045 32077
+19046 52550
+19048 74979
+19049 21394
+19050 21394
+19051 48577
+19052 57579
+19053 52287
+19054 55876
+19056 57563
+19057 21394
+19058 49715
+19059 49715
+19060 21394
+19061 19067
+19062 69554
+19063 40691
+19065 38044
+19066 38694
+19067 50264
+19068 53308
+19082 71766
+19091 26178
+19092 26174
+19094 57521
+19095 19094
+19099 42273
+19107 16232
+19108 43849
+19110 53057
+19111 26178
+19112 71766
+19113 22659
+19115 37518
+19116 61675
+19117 54465
+19118 43846
+19119 22530
+19120 42277
+19121 54465
+19122 66676
+19123 54464
+19124 54465
+19125 37112
+19126 37111
+19127 62302
+19131 79125
+19132 63271
+19133 17275
+19134 56454
+19135 19134
+19137 43846
+19138 43845
+19140 43845
+19141 43849
+19142 43846
+19143 43846
+19145 66496
+19146 66676
+19148 624
+19149 16907
+19150 16909
+19154 746
+19156 73104
+19157 41783
+19158 49284
+19159 4842
+19160 49194
+19162 62299
+19166 53057
+19167 53056
+19168 18849
+19170 18850
+19171 56454
+19172 74071
+19173 63300
+19174 55563
+19175 52727
+19176 51150
+19179 5168
+19180 40654
+19181 79003
+19182 57788
+19183 57624
+19184 45117
+19185 29741
+19186 37258
+19188 8393
+19189 69285
+19190 8399
+19191 8392
+19192 19246
+19193 8397
+19198 74738
+19200 61905
+19201 74763
+19202 46154
+19203 5168
+19204 23776
+19205 23775
+19206 23776
+19207 8141
+19208 13156
+19212 56504
+19214 38921
+19227 36841
+19228 68529
+19231 25419
+19232 2728
+19233 26178
+19234 23534
+19235 23776
+19236 13156
+19240 66675
+19241 66676
+19246 46344
+19251 61428
+19254 34388
+19259 9465
+19263 8399
+19264 68048
+19265 8399
+19266 68759
+19271 41054
+19272 30740
+19273 15611
+19274 56415
+19275 9193
+19276 80577
+19277 45326
+19278 71359
+19281 17275
+19282 56454
+19285 37014
+19287 15611
+19289 77763
+19290 55132
+19292 56416
+19293 59317
+19294 45321
+19295 29602
+19296 35248
+19297 15986
+19298 1808
+19300 53057
+19301 23776
+19302 23775
+19303 23776
+19306 79134
+19307 80339
+19312 624
+19315 71950
+19316 68594
+19320 56636
+19321 19320
+19322 19320
+19329 61675
+19331 76580
+19332 42465
+19333 62110
+19336 37258
+19337 23534
+19339 54465
+19340 54464
+19341 23533
+19343 23534
+19348 52553
+19349 23751
+19352 79048
+19353 23776
+19354 79063
+19357 56028
+19358 67657
+19370 36209
+19371 52553
+19373 62547
+19374 28845
+19375 49777
+19377 23256
+19378 20724
+19379 45845
+19380 54465
+19382 59062
+19383 26178
+19385 6820
+19387 34388
+19392 1372
+19393 12261
+19394 56454
+19396 67657
+19397 16404
+19399 48576
+19400 34484
+19401 34484
+19407 67657
+19409 37112
+19410 22451
+19410 33634
+19411 37112
+19414 62354
+19415 47665
+19416 37258
+19417 27451
+19418 37257
+19419 66676
+19420 66675
+19422 26174
+19424 67657
+19425 23623
+19426 75978
+19429 2345
+19434 47665
+19435 30409
+19436 79125
+19437 35140
+19438 36265
+19439 7976
+19440 54438
+19441 59847
+19442 53714
+19443 26226
+19444 42747
+19445 73705
+19446 76074
+19447 79839
+19448 624
+19449 42747
+19450 80727
+19451 49777
+19454 6621
+19456 37257
+19458 37258
+19460 7510
+19462 37111
+19463 13156
+19465 37112
+19466 41669
+19467 41668
+19470 54465
+19471 54465
+19472 54464
+19473 41054
+19478 23569
+19481 6577
+19487 43846
+19488 43844
+19489 43845
+19490 43846
+19491 21375
+19492 64349
+19493 64351
+19494 64350
+19495 54464
+19497 80339
+19502 10914
+19505 54465
+19506 26178
+19507 55563
+19508 29510
+19509 63405
+19510 52727
+19511 15066
+19511 3531
+19512 48909
+19513 53132
+19515 71766
+19515 80778
+19516 34177
+19522 57106
+19523 42984
+19526 12570
+19527 9150
+19531 79454
+19534 8949
+19535 12438
+19537 8477
+19538 20199
+19539 1581
+19540 69285
+19542 43717
+19547 77299
+19548 70219
+19549 43420
+19550 43420
+19551 43389
+19552 73310
+19554 54715
+19561 2030
+19562 40462
+19563 6863
+19564 43020
+19567 5168
+19575 510
+19577 8149
+19578 67664
+19580 40695
+19589 49777
+19590 21111
+19591 26668
+19595 26668
+19597 19726
+19599 32909
+19602 28477
+19603 32919
+19604 22525
+19611 5168
+19613 624
+19614 624
+19616 33027
+19619 59635
+19620 74926
+19622 36290
+19625 48727
+19636 56749
+19637 56748
+19638 56749
+19639 67319
+19640 45117
+19641 32311
+19642 35461
+19643 79936
+19644 66733
+19644 80778
+19649 73019
+19652 42857
+19658 52280
+19664 63329
+19665 80001
+19667 38921
+19670 74655
+19673 32887
+19674 48559
+19677 21725
+19679 19677
+19680 19677
+19682 66720
+19684 51069
+19689 2788
+19690 30017
+19691 59061
+19692 62968
+19693 63026
+19694 37579
+19695 72713
+19696 80691
+19697 61357
+19699 46594
+19702 24165
+19705 22927
+19706 3604
+19707 27582
+19708 67344
+19711 11966
+19712 11968
+19713 15069
+19716 45056
+19719 12989
+19721 13066
+19725 2152
+19726 3691
+19730 7276
+19732 75804
+19733 626
+19734 43439
+19737 12050
+19738 39776
+19739 42551
+19742 16394
+19743 891
+19746 624
+19748 41522
+19749 68381
+19751 79125
+19752 11244
+19755 56454
+19756 27509
+19757 31542
+19758 65672
+19759 56796
+19760 60554
+19761 44209
+19762 74119
+19763 23772
+19764 20518
+19769 72996
+19773 27841
+19775 20006
+19776 54656
+19777 60889
+19778 38359
+19781 64257
+19782 52826
+19782 6056
+19783 6926
+19784 62811
+19785 60530
+19786 80514
+19789 70596
+19790 54760
+19791 38721
+19792 13461
+19793 18790
+19794 20785
+19802 42380
+19803 11320
+19804 60169
+19805 40695
+19808 32177
+19810 17972
+19811 65225
+19813 31531
+19815 26591
+19819 12258
+19822 69179
+19825 35319
+19826 41203
+19827 59956
+19828 2988
+19830 2989
+19832 21424
+19837 1785
+19838 49777
+19842 70374
+19846 37571
+19848 45056
+19849 64081
+19874 74926
+19879 68441
+19892 61455
+19893 71475
+19894 12978
+19895 67856
+19898 67181
+19899 64527
+19904 59172
+19906 38921
+19907 73628
+19908 31236
+19909 71214
+19910 57637
+19913 39068
+19914 17041
+19915 17042
+19920 13497
+19921 54254
+19922 14209
+19923 4546
+19926 80526
+19927 624
+19929 41407
+19936 65312
+19939 29144
+19942 80784
+19943 21443
+19947 56504
+19948 56504
+19950 33442
+19952 19721
+19953 45288
+19954 62301
+19955 27345
+19960 80545
+19961 31983
+19962 21894
+19967 41669
+19975 68508
+19976 52801
+19978 54561
+19979 7501
+19981 80962
+19982 76931
+19983 19035
+19984 19035
+19985 62449
+19985 69699
+19987 80963
+19990 33145
+19991 27155
+19992 49699
+19993 64979
+19999 60584
+20006 34705
+20008 3934
+20018 64694
+20022 43846
+20023 43844
+20024 43844
+20026 624
+20027 892
+20029 52120
+20030 52727
+20031 44300
+20032 69822
+20033 50008
+20034 41125
+20035 50008
+20036 37172
+20037 41990
+20038 22988
+20039 50700
+20040 77764
+20041 49290
+20042 52120
+20043 69849
+20044 52120
+20045 69849
+20046 69849
+20047 69849
+20048 69849
+20049 69849
+20050 39463
+20050 50635
+20051 65360
+20052 23776
+20053 24462
+20054 31614
+20055 53056
+20056 53057
+20057 56504
+20058 66675
+20060 22530
+20061 26174
+20062 26178
+20065 22209
+20066 22210
+20067 26178
+20068 66675
+20069 66676
+20070 66676
+20071 53057
+20072 33970
+20073 38824
+20075 13027
+20078 42277
+20079 42273
+20080 22530
+20081 43846
+20082 43845
+20083 23534
+20084 37112
+20085 54255
+20086 42277
+20087 56503
+20088 62302
+20089 56504
+20090 55563
+20091 52727
+20092 41125
+20093 81168
+20094 69849
+20095 8477
+20096 20116
+20097 67973
+20099 69157
+20103 18849
+20104 18850
+20114 8477
+20115 20116
+20116 8476
+20119 624
+20122 8477
+20123 20199
+20124 17972
+20128 65225
+20133 1092
+20134 20135
+20135 56454
+20136 20135
+20138 15986
+20142 1662
+20145 23626
+20146 7265
+20148 11182
+20150 14209
+20151 54338
+20151 8354
+20152 38921
+20152 67801
+20154 65124
+20155 75804
+20158 13070
+20159 10080
+20162 77702
+20163 22517
+20171 21386
+20172 32231
+20173 15490
+20174 65312
+20179 80339
+20180 3959
+20181 38921
+20184 11688
+20185 11690
+20186 3934
+20187 6309
+20189 20190
+20190 56454
+20194 26152
+20195 24414
+20196 8477
+20198 20199
+20199 8476
+20201 33224
+20202 52727
+20203 32210
+20204 19726
+20206 54465
+20209 293
+20210 56454
+20211 54465
+20215 293
+20216 20217
+20217 56454
+20218 54100
+20219 46594
+20221 56504
+20222 56503
+20223 56504
+20224 67657
+20227 33936
+20229 54464
+20230 8949
+20231 19154
+20232 54465
+20235 56504
+20237 5090
+20238 8149
+20239 21235
+20243 42273
+20244 41568
+20245 2814
+20246 2815
+20247 54070
+20248 37503
+20249 26178
+20252 22530
+20255 80542
+20260 42277
+20261 38921
+20263 17972
+20266 42977
+20268 53057
+20270 293
+20271 38044
+20273 79134
+20274 66138
+20275 56504
+20276 56503
+20277 24071
+20283 62790
+20284 43647
+20285 8149
+20286 54464
+20287 56504
+20288 37112
+20289 42277
+20290 42273
+20292 74926
+20294 26178
+20295 31614
+20297 37503
+20298 41203
+20299 56504
+20300 56503
+20305 293
+20306 13027
+20307 15203
+20310 69285
+20311 47693
+20311 75978
+20315 64350
+20316 64349
+20317 22530
+20318 29741
+20319 31614
+20320 37911
+20321 67656
+20322 67657
+20323 22530
+20325 70786
+20326 29480
+20327 52272
+20328 18616
+20329 62207
+20330 48899
+20331 59717
+20332 41054
+20333 75029
+20334 28895
+20335 44291
+20336 35437
+20337 78381
+20338 14067
+20339 78268
+20340 70152
+20341 66421
+20342 80737
+20343 37699
+20344 37634
+20345 48714
+20346 36378
+20347 39627
+20348 37450
+20349 20348
+20350 58479
+20351 27700
+20352 56326
+20353 20352
+20354 49777
+20355 53150
+20356 28241
+20357 67403
+20358 51240
+20359 20364
+20360 17789
+20361 31298
+20362 33808
+20363 56447
+20364 17789
+20365 36763
+20366 70327
+20367 30616
+20368 66755
+20369 66756
+20370 65182
+20371 27021
+20372 30084
+20373 20917
+20374 22887
+20375 22888
+20376 27765
+20377 39159
+20378 79519
+20379 30252
+20380 62360
+20381 24224
+20382 58784
+20383 34726
+20384 29369
+20385 56748
+20386 29365
+20386 34940
+20387 70919
+20388 62658
+20389 2911
+20390 54438
+20391 20428
+20392 22636
+20393 37817
+20394 59250
+20395 44439
+20395 49000
+20395 53278
+20396 39802
+20397 20651
+20398 49534
+20399 29256
+20400 49796
+20401 37575
+20401 47139
+20402 70607
+20403 33917
+20404 20895
+20405 33690
+20406 49511
+20407 64979
+20408 32287
+20409 59388
+20410 25648
+20411 36376
+20412 49777
+20413 20956
+20414 32935
+20415 59178
+20416 40283
+20417 58640
+20418 33569
+20419 79410
+20420 16588
+20421 37553
+20422 26209
+20423 67337
+20423 79647
+20424 36560
+20425 66581
+20425 69487
+20426 33342
+20427 64465
+20428 33273
+20429 66875
+20430 73658
+20431 56157
+20432 37645
+20433 66770
+20434 33226
+20435 37955
+20436 4842
+20437 27687
+20438 52571
+20439 49777
+20440 77186
+20441 47143
+20442 33226
+20443 38633
+20444 49792
+20445 33226
+20446 41158
+20447 20443
+20448 37948
+20449 41731
+20450 66972
+20451 30508
+20452 69287
+20453 45193
+20454 20428
+20455 76759
+20456 20455
+20457 52697
+20458 40283
+20459 43578
+20460 54972
+20461 65420
+20462 37457
+20463 66140
+20464 67490
+20465 29090
+20466 24082
+20467 37645
+20468 37542
+20469 45800
+20470 47115
+20471 74893
+20472 20471
+20473 3425
+20474 70017
+20475 66538
+20476 43759
+20477 20342
+20478 36753
+20479 36745
+20480 51836
+20481 58209
+20482 50447
+20483 40148
+20484 20342
+20485 77299
+20486 24667
+20487 61129
+20488 20481
+20489 20521
+20490 53291
+20491 20536
+20492 40478
+20493 30114
+20494 54248
+20495 24018
+20496 72074
+20497 75627
+20498 76215
+20499 36346
+20500 75627
+20501 27412
+20502 30528
+20503 33273
+20504 66154
+20505 33772
+20506 24106
+20507 49194
+20508 37955
+20509 37503
+20510 60362
+20511 71889
+20512 61283
+20513 20514
+20513 34346
+20514 71890
+20515 20514
+20516 71901
+20517 20925
+20518 71603
+20519 59389
+20520 23943
+20521 32295
+20522 59250
+20523 32229
+20524 49738
+20525 72257
+20526 78307
+20527 61686
+20528 66499
+20529 49777
+20530 52435
+20531 56325
+20532 69442
+20533 69438
+20534 40019
+20535 20521
+20536 33186
+20537 66538
+20538 75987
+20539 59993
+20540 20534
+20541 44474
+20542 66640
+20543 59990
+20544 49310
+20545 81056
+20546 70876
+20547 28380
+20548 42987
+20549 64462
+20550 64998
+20551 65645
+20552 65645
+20553 56231
+20554 37541
+20555 39734
+20556 81080
+20557 62679
+20558 74488
+20559 23219
+20560 52020
+20561 63300
+20562 63405
+20563 30652
+20564 58748
+20565 18616
+20566 38072
+20567 21115
+20568 34321
+20569 24231
+20570 36631
+20571 43497
+20572 45770
+20573 39214
+20574 64059
+20575 63626
+20576 48281
+20577 39216
+20578 14919
+20579 46585
+20580 40398
+20581 68763
+20582 40399
+20583 34729
+20584 80970
+20585 66056
+20586 26713
+20587 70995
+20588 77824
+20589 70995
+20590 70995
+20591 47665
+20592 20428
+20593 49904
+20594 61388
+20595 56236
+20596 23177
+20597 57529
+20598 81406
+20599 56236
+20600 53161
+20601 27582
+20602 61702
+20603 52844
+20604 59901
+20605 22002
+20606 72281
+20607 65632
+20608 78307
+20609 60887
+20610 78673
+20611 20939
+20612 68813
+20613 55132
+20614 64181
+20615 49460
+20616 58195
+20617 49930
+20618 37002
+20619 59505
+20620 52049
+20621 20617
+20622 20920
+20623 68492
+20624 23959
+20625 23125
+20626 70876
+20627 20845
+20628 38345
+20629 61287
+20630 20854
+20631 64983
+20631 68306
+20632 20626
+20633 69584
+20634 33086
+20635 38430
+20636 67203
+20637 67203
+20638 79900
+20639 32210
+20640 59180
+20641 23109
+20642 67365
+20643 50447
+20644 46377
+20645 64218
+20646 20855
+20647 21490
+20648 23929
+20649 31939
+20650 33069
+20651 34940
+20652 20651
+20653 20651
+20654 78831
+20655 20651
+20656 43703
+20657 78831
+20658 34726
+20659 78831
+20660 56185
+20661 46965
+20662 57127
+20663 23128
+20664 21010
+20665 21189
+20666 69794
+20667 36933
+20668 53446
+20669 21511
+20670 21098
+20671 39873
+20672 69083
+20673 66260
+20674 46965
+20675 60467
+20676 64306
+20677 57134
+20678 78831
+20679 20920
+20680 20408
+20681 4431
+20682 21490
+20683 81072
+20684 32993
+20685 69794
+20686 45199
+20687 43467
+20688 57134
+20689 66441
+20690 49967
+20691 65965
+20692 57923
+20693 73128
+20694 73125
+20695 73128
+20696 46280
+20697 49459
+20698 43962
+20699 27421
+20700 49689
+20701 66815
+20702 9481
+20703 27421
+20704 14919
+20705 20694
+20706 74966
+20707 66333
+20708 35892
+20709 42213
+20710 63860
+20711 52815
+20712 23723
+20713 30356
+20714 46377
+20715 21029
+20716 46377
+20717 46377
+20718 46377
+20719 47698
+20720 20707
+20721 71593
+20722 33662
+20723 39211
+20724 46344
+20725 49661
+20726 57812
+20727 25434
+20728 79360
+20729 66334
+20730 64979
+20731 30603
+20732 23715
+20733 58640
+20734 36303
+20735 37707
+20736 62443
+20737 40819
+20738 16760
+20739 20736
+20740 20736
+20741 20736
+20742 20736
+20743 25821
+20744 31250
+20745 20428
+20746 70757
+20747 26279
+20748 20804
+20749 37458
+20750 43722
+20751 71633
+20752 59385
+20753 21710
+20754 21720
+20755 22133
+20756 22300
+20757 22300
+20758 68239
+20759 65720
+20760 37615
+20761 29462
+20762 22510
+20763 20758
+20764 51409
+20765 51408
+20765 71830
+20766 22300
+20767 20761
+20768 33272
+20769 20998
+20770 21000
+20771 21001
+20772 57882
+20773 21790
+20774 59970
+20775 43703
+20776 63172
+20777 49777
+20778 47665
+20779 42747
+20780 29155
+20781 37645
+20782 37645
+20783 15784
+20784 44439
+20785 32473
+20786 33093
+20787 70560
+20788 27025
+20789 32511
+20790 37645
+20791 60465
+20792 33086
+20793 30778
+20794 49738
+20795 38901
+20796 47224
+20797 21574
+20798 23090
+20799 36346
+20800 26713
+20801 48851
+20802 20925
+20803 79369
+20804 75356
+20805 71985
+20806 59872
+20807 24459
+20808 12078
+20809 60685
+20810 38673
+20811 68019
+20812 39191
+20813 20626
+20814 33660
+20815 53129
+20816 40984
+20817 49920
+20817 70995
+20818 20817
+20819 20817
+20820 15600
+20820 8509
+20821 62736
+20822 20428
+20823 43703
+20824 24950
+20825 80668
+20826 80669
+20827 77764
+20828 66520
+20829 28401
+20830 36416
+20831 36942
+20832 46492
+20833 56321
+20834 34726
+20835 61685
+20836 50280
+20837 65305
+20838 66761
+20839 55372
+20840 61693
+20841 61694
+20842 49951
+20843 66441
+20844 20626
+20845 21490
+20846 47596
+20847 49345
+20848 63545
+20849 49777
+20850 24769
+20851 42044
+20852 24769
+20853 36244
+20854 20853
+20855 77176
+20856 25094
+20857 46076
+20858 42025
+20859 50198
+20860 79366
+20861 79366
+20862 23287
+20863 71335
+20864 26279
+20865 37457
+20866 66326
+20867 23846
+20868 73975
+20869 46590
+20870 42609
+20871 56703
+20872 31250
+20873 35580
+20874 22517
+20875 62290
+20876 48978
+20877 20428
+20878 23016
+20879 20428
+20880 57280
+20881 36763
+20882 70760
+20883 57385
+20884 25201
+20885 23016
+20886 63963
+20887 53347
+20888 22133
+20889 54478
+20890 74959
+20891 59976
+20892 41054
+20893 62354
+20894 50198
+20895 40561
+20896 38408
+20897 61185
+20898 40885
+20899 28860
+20900 70762
+20901 20955
+20901 61190
+20902 39254
+20903 37692
+20904 36721
+20905 51385
+20906 39463
+20907 69698
+20908 64215
+20909 30774
+20910 46344
+20911 22215
+20912 55132
+20913 55127
+20914 40498
+20915 40498
+20916 22763
+20917 81404
+20918 72596
+20919 68438
+20920 20895
+20921 73104
+20922 63976
+20923 46347
+20924 46347
+20925 63980
+20926 62525
+20927 55168
+20928 38559
+20929 80902
+20930 29782
+20931 49512
+20932 72257
+20933 2949
+20934 20939
+20935 73399
+20936 20955
+20937 25617
+20938 39898
+20939 55037
+20940 30770
+20941 79329
+20942 49777
+20943 21553
+20944 23069
+20945 30954
+20946 31467
+20947 20847
+20948 53301
+20949 62196
+20950 70868
+20951 77241
+20952 77733
+20953 77112
+20954 62791
+20955 20895
+20956 59389
+20957 29250
+20958 64325
+20959 61189
+20960 49777
+20961 28538
+20962 53126
+20963 20959
+20964 35773
+20965 40577
+20966 59791
+20967 17010
+20968 25633
+20969 75002
+20970 55168
+20971 70560
+20972 50263
+20973 23016
+20974 62305
+20975 17620
+20976 62305
+20977 23815
+20978 70757
+20979 77340
+20980 77340
+20981 20618
+20982 58641
+20983 37645
+20984 44279
+20985 45329
+20986 45397
+20987 39776
+20988 52760
+20989 20988
+20990 20988
+20990 57249
+20991 64844
+20992 66549
+20993 68741
+20994 77435
+20995 69593
+20996 69990
+20997 55220
+20998 46345
+20999 59385
+21000 59385
+21001 30784
+21002 59917
+21003 32661
+21004 55485
+21005 33078
+21005 60570
+21006 18211
+21007 42217
+21008 20407
+21009 81061
+21010 59389
+21011 21098
+21012 57135
+21013 36942
+21014 65302
+21015 22691
+21016 58489
+21017 55040
+21018 28896
+21019 28895
+21020 79166
+21021 41666
+21022 38643
+21023 61702
+21024 34769
+21025 24230
+21026 28895
+21027 33069
+21028 49661
+21029 49699
+21030 74156
+21031 23339
+21032 30786
+21033 21027
+21034 50558
+21035 56182
+21036 32211
+21037 45055
+21038 72268
+21039 36456
+21040 73749
+21041 37405
+21042 72981
+21043 75063
+21044 65885
+21045 63881
+21046 37558
+21047 23316
+21048 33086
+21049 56748
+21050 70919
+21051 53803
+21052 49918
+21053 29471
+21054 20415
+21055 25759
+21056 62895
+21057 48978
+21058 45303
+21059 58460
+21060 40069
+21061 58463
+21062 58463
+21063 58463
+21064 22537
+21065 70978
+21066 68492
+21067 64979
+21068 56022
+21069 60685
+21070 68652
+21071 74486
+21072 33715
+21073 24730
+21074 54972
+21075 75262
+21076 59394
+21077 20925
+21078 49511
+21079 41366
+21080 22534
+21081 24224
+21082 60568
+21083 31896
+21084 56352
+21085 54339
+21086 48555
+21087 33226
+21088 36329
+21089 23721
+21090 49777
+21091 49843
+21092 23746
+21093 33582
+21094 22999
+21095 81025
+21096 50576
+21097 40046
+21098 30508
+21099 28920
+21100 65956
+21101 55897
+21102 73576
+21103 21101
+21104 21033
+21105 63029
+21106 37404
+21107 27001
+21108 55221
+21109 49674
+21110 35900
+21111 5547
+21112 47328
+21113 51242
+21114 78309
+21115 47215
+21116 41792
+21117 47215
+21118 67932
+21119 40633
+21120 42400
+21121 58567
+21122 45754
+21123 14919
+21124 53051
+21125 23791
+21126 23125
+21127 49777
+21128 53830
+21129 20623
+21130 40030
+21131 20814
+21132 41547
+21133 49520
+21134 49996
+21135 32575
+21136 21226
+21137 65861
+21138 27021
+21139 32823
+21140 4203
+21141 27817
+21142 43622
+21143 37579
+21144 76475
+21145 49311
+21146 51264
+21147 49777
+21148 63976
+21149 23122
+21150 60367
+21151 23972
+21152 53810
+21153 21126
+21154 80991
+21155 36208
+21156 36210
+21157 34244
+21157 39846
+21158 39846
+21159 39846
+21159 55253
+21160 20415
+21161 73079
+21162 78787
+21163 48358
+21164 48358
+21165 71889
+21166 71890
+21167 71901
+21168 42542
+21169 49777
+21170 22517
+21171 17222
+21172 31610
+21173 21171
+21173 41605
+21174 50270
+21175 21171
+21175 54391
+21176 66801
+21177 55037
+21178 49520
+21179 30508
+21180 30531
+21181 52839
+21182 21181
+21183 40968
+21184 76475
+21185 55049
+21186 22771
+21187 66641
+21188 30521
+21189 70111
+21190 64241
+21191 56752
+21192 22192
+21193 49661
+21194 36056
+21195 39802
+21196 36922
+21197 56896
+21198 23722
+21199 62683
+21200 25752
+21201 75629
+21202 67586
+21203 51806
+21204 73594
+21205 49777
+21206 49777
+21207 21205
+21208 65935
+21209 27074
+21210 54339
+21211 56352
+21212 21211
+21213 49777
+21214 33455
+21215 59214
+21216 80757
+21217 24482
+21218 24484
+21219 23947
+21220 64540
+21221 28529
+21222 21395
+21223 4840
+21224 28543
+21225 21002
+21226 64237
+21227 40887
+21228 71971
+21229 49777
+21230 24083
+21231 22598
+21232 26919
+21233 33605
+21234 74486
+21235 49777
+21236 52314
+21237 67203
+21238 79920
+21239 39181
+21240 52587
+21241 72589
+21242 43722
+21243 47072
+21244 20925
+21245 30524
+21246 22988
+21247 40918
+21248 76854
+21249 20867
+21250 59317
+21251 26170
+21252 46633
+21253 25634
+21254 29528
+21255 52917
+21256 76776
+21257 43103
+21258 21257
+21259 55602
+21260 55608
+21261 55163
+21262 26113
+21263 39920
+21264 39924
+21265 39923
+21266 61694
+21267 38531
+21268 61531
+21269 28189
+21270 31943
+21271 37672
+21272 60462
+21273 39920
+21274 21573
+21275 61541
+21276 61544
+21277 43587
+21278 33193
+21279 69871
+21280 71596
+21281 33193
+21282 36044
+21283 41571
+21284 63720
+21285 69506
+21286 78352
+21287 41571
+21288 39703
+21289 37817
+21290 62026
+21291 49777
+21292 50198
+21292 75859
+21293 23746
+21294 59394
+21295 66441
+21296 23752
+21297 41300
+21298 45072
+21299 77178
+21300 43103
+21301 23966
+21302 51570
+21303 51570
+21304 66431
+21305 66721
+21306 23968
+21307 23715
+21308 72268
+21309 32706
+21310 51123
+21311 21307
+21312 71588
+21313 62459
+21314 21486
+21315 27409
+21316 56665
+21317 43248
+21318 32575
+21319 50160
+21320 21217
+21321 49254
+21322 77656
+21323 79924
+21324 67138
+21325 27618
+21326 33840
+21327 65015
+21328 32560
+21329 58696
+21330 23552
+21331 24836
+21332 289
+21333 26713
+21334 41315
+21335 28189
+21336 26140
+21336 57239
+21337 61493
+21338 53784
+21339 62205
+21340 36942
+21341 55201
+21342 44212
+21343 36162
+21344 33505
+21345 39230
+21346 23864
+21347 62462
+21348 55373
+21349 52910
+21350 33505
+21351 66850
+21352 5167
+21353 41366
+21353 46153
+21354 60142
+21355 61817
+21356 41507
+21357 77385
+21358 21348
+21359 42636
+21360 21027
+21361 49284
+21362 34018
+21363 61702
+21364 21366
+21365 66672
+21366 53457
+21367 49351
+21368 53055
+21369 53810
+21370 53810
+21371 66492
+21372 35340
+21373 46505
+21374 43844
+21375 25104
+21376 30437
+21377 23290
+21378 63329
+21379 36774
+21380 64215
+21381 40188
+21382 76475
+21383 76475
+21384 61228
+21385 31608
+21386 61086
+21387 59352
+21388 24199
+21389 21382
+21390 21386
+21391 58946
+21392 37553
+21393 49370
+21394 21114
+21395 28528
+21396 20921
+21397 73104
+21398 49442
+21399 62245
+21400 53328
+21401 50809
+21402 58224
+21403 30046
+21404 30046
+21405 66649
+21406 27421
+21407 58838
+21408 69506
+21409 69270
+21410 24769
+21411 24769
+21412 69270
+21413 23004
+21414 42747
+21415 42747
+21416 79344
+21417 20724
+21418 20724
+21419 32410
+21420 36942
+21421 59389
+21422 53217
+21423 30784
+21424 26732
+21425 22764
+21426 22793
+21427 49661
+21428 1413
+21429 22602
+21430 21440
+21431 50277
+21432 78364
+21433 74293
+21434 78311
+21435 43703
+21436 78270
+21437 48509
+21438 20920
+21439 32559
+21440 25624
+21441 38559
+21442 37458
+21443 81080
+21444 50181
+21445 21430
+21446 45779
+21447 59389
+21448 59389
+21449 30604
+21450 5320
+21451 64462
+21452 77870
+21453 41571
+21454 37816
+21455 56748
+21456 77659
+21457 64194
+21458 70011
+21459 27573
+21460 66432
+21461 57372
+21462 27582
+21463 49777
+21464 66499
+21465 66498
+21466 78155
+21467 30121
+21468 53129
+21470 33670
+21471 22677
+21472 38633
+21473 74209
+21474 59970
+21475 57939
+21476 32539
+21477 9179
+21478 54737
+21479 54737
+21480 61558
+21481 67490
+21482 26713
+21483 40887
+21484 27582
+21485 62463
+21486 37701
+21487 73125
+21488 32993
+21489 62286
+21490 72268
+21491 28529
+21492 50841
+21493 35331
+21494 31608
+21495 6498
+21496 47665
+21497 68807
+21498 68807
+21499 14070
+21500 40819
+21501 68807
+21502 79103
+21503 77702
+21504 49265
+21505 74893
+21506 32374
+21507 44478
+21508 47665
+21509 7504
+21510 66790
+21511 20955
+21512 45198
+21513 80902
+21514 23739
+21515 55357
+21516 62565
+21517 54815
+21518 22468
+21519 70651
+21520 21610
+21521 37645
+21522 81406
+21523 39811
+21524 39811
+21525 37406
+21526 37400
+21527 68508
+21528 44212
+21529 77289
+21530 60462
+21531 55234
+21532 64979
+21533 60462
+21534 57106
+21535 39532
+21536 38739
+21537 56206
+21538 56206
+21539 61228
+21540 21732
+21541 21673
+21542 55878
+21543 24504
+21543 33575
+21544 25045
+21545 68019
+21546 28132
+21547 33115
+21548 33906
+21549 64306
+21550 33107
+21551 35470
+21552 35471
+21553 36308
+21554 39643
+21555 49265
+21556 42002
+21557 16756
+21558 20581
+21559 11312
+21560 21589
+21561 46525
+21562 46838
+21563 23864
+21564 48092
+21565 48366
+21566 50242
+21567 60678
+21568 54285
+21569 11529
+21570 23861
+21571 55045
+21572 38739
+21573 62290
+21574 62841
+21575 81132
+21576 64636
+21577 43096
+21578 65959
+21579 68019
+21580 68019
+21581 68019
+21582 57577
+21583 69906
+21584 75779
+21585 77065
+21586 70171
+21587 77243
+21588 77299
+21589 43101
+21590 71960
+21591 60708
+21592 77221
+21593 33575
+21594 63376
+21595 23887
+21596 36891
+21597 21624
+21598 34696
+21599 79639
+21600 39916
+21601 51997
+21602 58216
+21603 34911
+21604 34918
+21605 33581
+21606 36454
+21607 41360
+21608 41106
+21609 42738
+21610 36942
+21611 43420
+21612 70750
+21613 27855
+21614 29253
+21615 53023
+21616 52912
+21617 77216
+21618 40674
+21619 49504
+21620 31903
+21621 33858
+21622 48480
+21623 53137
+21624 21630
+21625 30461
+21626 54285
+21627 14926
+21628 52726
+21629 11197
+21630 47428
+21631 34695
+21632 64206
+21633 21608
+21634 21286
+21635 53013
+21636 56755
+21637 72076
+21638 21533
+21639 72280
+21640 80542
+21641 42741
+21642 21608
+21643 71970
+21644 60568
+21645 60575
+21646 23285
+21647 35522
+21648 30157
+21649 43718
+21650 60095
+21651 40148
+21663 23016
+21664 80614
+21665 46610
+21666 28873
+21667 19794
+21668 52912
+21669 60095
+21670 22137
+21671 41498
+21672 36942
+21673 70578
+21674 31841
+21675 79624
+21676 32909
+21677 71318
+21678 79017
+21679 77831
+21680 77832
+21681 24607
+21682 60947
+21683 65645
+21684 26209
+21684 49034
+21685 22636
+21686 62221
+21687 18616
+21688 53055
+21689 77850
+21690 55232
+21691 27203
+21692 70762
+21693 74893
+21694 28006
+21695 51117
+21695 55077
+21696 43279
+21696 60007
+21697 50260
+21698 64428
+21699 71605
+21700 25854
+21700 38641
+21701 53293
+21702 46630
+21703 46345
+21704 76037
+21705 38668
+21706 36495
+21707 38635
+21708 14070
+21709 57967
+21710 59385
+21711 46345
+21712 19954
+21713 18616
+21714 26611
+21715 28172
+21716 57871
+21717 9604
+21718 66649
+21719 21722
+21719 47786
+21720 59385
+21721 30786
+21722 56542
+21723 56030
+21724 45303
+21725 25583
+21726 33715
+21727 64517
+21728 66901
+21729 55220
+21730 52727
+21731 52120
+21732 63608
+21733 79624
+21734 23943
+21735 23424
+21736 23949
+21737 56305
+21738 64325
+21739 42267
+21740 32000
+21741 31274
+21742 60690
+21743 55196
+21744 42924
+21745 72730
+21746 64348
+21747 25383
+21748 25391
+21749 25383
+21750 55517
+21751 64721
+21752 21764
+21753 50704
+21754 55002
+21755 46505
+21756 69870
+21757 55132
+21758 55127
+21759 70760
+21760 36149
+21761 23337
+21762 43259
+21763 40296
+21764 64099
+21765 57372
+21766 36313
+21767 36313
+21768 21790
+21769 74583
+21770 74583
+21771 20476
+21772 35410
+21773 37632
+21774 50761
+21775 77164
+21776 20920
+21777 76866
+21778 78364
+21779 65885
+21780 64446
+21781 64445
+21782 45899
+21783 59394
+21784 23434
+21785 39799
+21786 21099
+21787 29071
+21788 71332
+21789 74494
+21790 59385
+21791 37918
+21792 37918
+21793 49230
+21794 24231
+21795 49323
+21796 61858
+21797 21796
+21798 38901
+21799 71830
+21800 22811
+21801 26713
+21802 33086
+21803 68239
+21804 36057
+21805 55563
+21806 50477
+21807 79369
+21808 55563
+21809 59872
+21810 74893
+21811 59385
+21812 60685
+21813 20792
+21814 55540
+21815 21790
+21816 74959
+21817 46345
+21818 59385
+21819 59385
+21820 74274
+21821 52280
+21822 40819
+21823 70578
+21824 61286
+21825 29483
+21826 76482
+21827 79125
+21828 41707
+21829 20731
+21830 31552
+21831 33917
+21832 53886
+21833 32909
+21834 73594
+21835 74861
+21836 40894
+21837 59901
+21838 59901
+21839 33078
+21839 60570
+21840 21838
+21841 41125
+21842 68508
+21843 55037
+21844 39168
+21845 48965
+21845 67050
+21846 37948
+21847 55223
+21848 48965
+21849 37138
+21850 76002
+21851 66520
+21852 73733
+21853 52034
+21854 38084
+21855 53055
+21856 32053
+21857 20683
+21858 46347
+21859 69878
+21860 52460
+21861 35002
+21862 22494
+21863 71447
+21864 79992
+21865 81025
+21866 62619
+21867 67089
+21868 17385
+21868 81056
+21869 60466
+21870 37795
+21871 23732
+21872 33143
+21873 24082
+21874 21038
+21875 35036
+21876 30578
+21877 70601
+21878 42775
+21879 24538
+21880 33086
+21881 56659
+21882 55201
+21883 58744
+21884 61569
+21885 55220
+21886 76051
+21887 30774
+21888 30782
+21889 60466
+21890 66399
+21891 37460
+21892 66730
+21893 52865
+21894 56272
+21895 29849
+21896 73213
+21897 72355
+21898 2911
+21899 72350
+21900 72355
+21901 23968
+21902 40013
+21903 40015
+21904 55427
+21905 49768
+21906 45059
+21907 36665
+21908 37428
+21909 45060
+21910 45059
+21911 10254
+21912 46345
+21913 21701
+21914 74959
+21915 68763
+21916 22606
+21917 22606
+21918 72427
+21919 44197
+21920 21926
+21921 38672
+21921 39193
+21922 26229
+21923 42553
+21924 64863
+21925 58860
+21926 43718
+21927 59510
+21928 71612
+21929 33756
+21930 45199
+21931 77312
+21932 33342
+21933 23591
+21934 74181
+21935 64723
+21936 20814
+21937 37701
+21938 49744
+21939 78396
+21940 24601
+21941 21940
+21942 56793
+21943 80863
+21944 41054
+21945 53462
+21946 72880
+21947 52727
+21948 73079
+21949 27637
+21950 50337
+21951 58994
+21952 57407
+21953 49738
+21954 5736
+21955 40437
+21956 35192
+21957 26689
+21958 27637
+21959 28014
+21960 36126
+21961 41722
+21962 45375
+21963 50657
+21964 60495
+21965 63575
+21966 34188
+21966 50635
+21967 65904
+21968 27590
+21969 59912
+21970 75831
+21971 30582
+21971 68993
+21972 25101
+21973 23762
+21974 71973
+21975 59480
+21976 59338
+21977 53352
+21978 30582
+21979 22537
+21980 40500
+21981 2911
+21982 25417
+21983 31971
+21984 31989
+21985 47665
+21986 80514
+21987 45617
+21988 55925
+21989 68177
+21990 2911
+21991 56839
+21992 25778
+21993 53055
+21994 75003
+21995 33581
+21996 20820
+21996 27521
+21997 80595
+21998 68957
+21999 55132
+22000 6923
+22001 57188
+22002 46965
+22003 77181
+22004 39434
+22005 40652
+22006 69664
+22007 59388
+22008 30954
+22009 39898
+22010 55224
+22011 62459
+22012 44428
+22013 54438
+22014 55132
+22015 39557
+22016 37758
+22017 22500
+22018 49062
+22019 17029
+22020 70788
+22021 70788
+22022 62124
+22023 62124
+22024 31709
+22025 66486
+22026 68568
+22027 35352
+22028 73696
+22029 78391
+22030 72775
+22031 41507
+22032 22038
+22032 38252
+22033 22038
+22033 38252
+22034 68759
+22035 23796
+22036 34251
+22037 33086
+22038 55563
+22039 33949
+22040 49824
+22041 31051
+22042 42935
+22043 48887
+22044 47665
+22045 22036
+22046 23016
+22047 23516
+22048 73907
+22049 33547
+22050 39154
+22051 61244
+22052 67025
+22053 23016
+22054 49918
+22055 49918
+22056 71633
+22057 21894
+22058 32569
+22059 33542
+22060 28559
+22061 45825
+22062 47665
+22063 71987
+22064 71989
+22065 53291
+22066 28266
+22067 20428
+22068 49777
+22069 23846
+22070 78394
+22071 23548
+22072 79254
+22073 60676
+22074 37356
+22075 50421
+22076 14919
+22077 22074
+22078 81181
+22079 57529
+22080 53055
+22081 22532
+22082 50849
+22083 33273
+22084 40059
+22085 46895
+22086 40887
+22087 78164
+22088 36802
+22089 38559
+22090 41571
+22091 71587
+22092 79488
+22093 56022
+22094 79254
+22095 51335
+22096 67654
+22097 18616
+22098 33077
+22099 79992
+22100 17849
+22101 35737
+22102 27021
+22103 29378
+22104 52314
+22105 28147
+22106 79486
+22107 79489
+22108 74567
+22109 21443
+22110 68177
+22111 67070
+22112 64360
+22113 22112
+22113 38928
+22114 26209
+22115 49504
+22116 39656
+22117 36928
+22118 34113
+22119 42595
+22120 66938
+22121 34190
+22122 73125
+22123 74893
+22124 55563
+22125 65067
+22125 77232
+22126 15298
+22127 26209
+22128 79254
+22129 43586
+22130 43587
+22131 21230
+22132 27861
+22133 59385
+22134 6923
+22135 55618
+22136 46345
+22137 59385
+22138 62354
+22139 74893
+22140 20792
+22141 55635
+22142 28006
+22143 22300
+22144 22758
+22145 30163
+22146 77497
+22147 43587
+22148 60797
+22149 78789
+22150 55610
+22151 33086
+22152 42747
+22153 26044
+22154 53293
+22155 23871
+22156 46505
+22157 61284
+22158 43298
+22159 22153
+22160 29425
+22161 29453
+22162 68239
+22163 58082
+22164 74893
+22165 57035
+22166 54972
+22167 49950
+22168 32295
+22169 46900
+22170 40707
+22171 79632
+22172 31719
+22173 30252
+22173 63604
+22174 68019
+22175 78968
+22176 30084
+22177 24891
+22177 77746
+22178 22177
+22179 15376
+22180 37955
+22181 37503
+22182 64979
+22183 28189
+22184 53810
+22185 6193
+22186 2911
+22187 23591
+22188 43215
+22189 36222
+22190 60774
+22191 54248
+22192 23723
+22193 20540
+22194 64999
+22195 63779
+22196 61016
+22197 39427
+22198 35437
+22199 30616
+22200 30616
+22201 54240
+22202 64668
+22203 38641
+22203 73397
+22204 22203
+22205 31614
+22206 56774
+22207 21630
+22208 78968
+22209 41299
+22210 44496
+22211 22214
+22212 22214
+22213 20924
+22213 51998
+22214 59179
+22215 56022
+22216 56022
+22217 55572
+22218 22086
+22219 43034
+22220 62809
+22221 25634
+22222 33274
+22223 28380
+22224 66666
+22225 19013
+22226 54378
+22227 44009
+22228 23295
+22229 59779
+22230 68177
+22231 50919
+22232 22763
+22233 61016
+22234 21067
+22235 52132
+22236 52396
+22237 40780
+22238 49660
+22239 49661
+22240 39494
+22241 37680
+22242 54248
+22243 36379
+22244 56359
+22245 27021
+22246 42502
+22247 37446
+22248 59178
+22249 74550
+22250 78268
+22251 55220
+22252 30634
+22253 36440
+22254 37862
+22255 23213
+22256 7640
+22257 25038
+22258 45424
+22259 79344
+22260 64478
+22261 46345
+22262 21701
+22263 78789
+22264 40069
+22265 73063
+22266 64325
+22267 62327
+22268 49265
+22269 30784
+22270 23909
+22271 57795
+22271 68845
+22272 61702
+22273 74599
+22274 73331
+22275 20519
+22276 76490
+22277 23560
+22278 22636
+22279 66440
+22280 5320
+22281 67036
+22282 26915
+22283 27679
+22284 66612
+22285 25634
+22286 73311
+22287 45469
+22288 61625
+22289 15600
+22289 8509
+22290 15477
+22291 80883
+22292 80889
+22293 61347
+22294 72345
+22295 61477
+22296 26713
+22297 40637
+22298 73397
+22299 61702
+22300 55220
+22301 31841
+22302 33130
+22303 76338
+22304 65843
+22305 70740
+22306 49879
+22307 32973
+22308 41203
+22309 49264
+22310 60690
+22311 50574
+22312 65844
+22313 34986
+22314 40894
+22315 28899
+22316 64481
+22317 57012
+22318 40819
+22319 40819
+22320 64445
+22321 45072
+22322 25381
+22323 35270
+22324 66992
+22325 64215
+22326 50196
+22327 49342
+22328 40592
+22329 55573
+22330 33970
+22331 43034
+22332 61487
+22333 80883
+22334 66612
+22335 66612
+22336 64178
+22337 45843
+22338 6193
+22339 22340
+22340 48965
+22341 38946
+22342 22519
+22343 66674
+22344 49194
+22345 65312
+22346 37647
+22347 72271
+22348 39175
+22349 50940
+22350 20956
+22351 10474
+22352 10474
+22353 32438
+22354 78831
+22355 67036
+22356 65845
+22357 78364
+22358 33256
+22359 24767
+22360 40887
+22361 40819
+22362 56663
+22363 22311
+22364 46661
+22365 22793
+22365 24465
+22366 59779
+22367 66432
+22368 80991
+22369 22367
+22370 44393
+22371 50008
+22372 31658
+22373 74487
+22374 75603
+22375 3704
+22376 52971
+22377 40263
+22378 42267
+22379 71676
+22380 60616
+22381 38480
+22382 42553
+22383 43718
+22384 39191
+22385 62171
+22386 68508
+22387 47665
+22388 45746
+22389 58948
+22390 49777
+22391 20691
+22392 32795
+22393 61961
+22394 58947
+22395 61086
+22396 70919
+22397 59901
+22398 49220
+22399 74490
+22400 49220
+22401 44197
+22402 25529
+22403 44085
+22404 73331
+22405 19425
+22406 79322
+22407 44386
+22408 24139
+22409 71601
+22410 22404
+22410 51417
+22411 47665
+22412 20690
+22413 18171
+22414 67573
+22415 22654
+22416 49062
+22417 55127
+22418 44320
+22419 55127
+22420 42747
+22421 22722
+22422 35794
+22423 26209
+22424 49363
+22425 49534
+22426 24962
+22427 61702
+22428 72218
+22429 55223
+22430 38633
+22431 53526
+22432 61702
+22433 20428
+22434 29531
+22435 2911
+22436 2911
+22437 25618
+22438 72567
+22439 69976
+22440 28633
+22441 61147
+22442 47665
+22443 42553
+22444 47666
+22445 18616
+22446 37902
+22447 39699
+22448 39700
+22449 56675
+22450 22462
+22450 49918
+22451 49920
+22452 47352
+22453 20051
+22454 22467
+22455 36928
+22456 55220
+22457 20051
+22458 67500
+22459 37948
+22460 55223
+22461 22462
+22461 77824
+22462 60685
+22463 59178
+22464 77348
+22465 54426
+22466 55737
+22467 72322
+22468 18616
+22469 81264
+22470 61702
+22471 78787
+22472 22471
+22473 22471
+22474 64305
+22475 64668
+22476 27561
+22477 22479
+22478 872
+22479 872
+22480 872
+22481 872
+22482 53905
+22483 28305
+22484 62528
+22485 42296
+22486 72446
+22487 58567
+22488 42303
+22489 6926
+22490 47143
+22491 24927
+22492 45828
+22493 59317
+22494 53457
+22495 37786
+22496 37787
+22497 23516
+22498 872
+22499 56433
+22500 63134
+22501 43215
+22502 78307
+22503 78831
+22504 33367
+22505 55127
+22506 30523
+22507 52633
+22508 64462
+22509 61702
+22510 33086
+22511 35284
+22512 38901
+22513 49753
+22514 22135
+22515 38901
+22516 39281
+22517 25634
+22518 70578
+22519 37560
+22520 40012
+22521 22528
+22521 41430
+22522 22532
+22522 57517
+22523 78969
+22524 22532
+22524 45426
+22525 26094
+22526 21493
+22527 52537
+22528 54972
+22529 22528
+22529 58860
+22530 59335
+22531 61858
+22532 22528
+22533 22532
+22534 76560
+22535 76975
+22536 77105
+22537 79202
+22538 25634
+22539 37955
+22540 37701
+22541 57548
+22542 36442
+22543 36378
+22544 61699
+22545 25633
+22546 22544
+22547 20953
+22548 20936
+22549 41998
+22550 20955
+22551 23977
+22552 20960
+22553 75505
+22554 67411
+22555 57529
+22556 37955
+22557 37503
+22558 48509
+22559 50625
+22560 33086
+22561 36877
+22562 47665
+22563 42553
+22564 26229
+22565 45164
+22566 18616
+22567 79254
+22568 53291
+22569 44083
+22570 22224
+22571 41017
+22572 64215
+22573 45350
+22574 27531
+22575 70219
+22576 71632
+22577 24765
+22578 45492
+22579 23384
+22580 24119
+22580 72562
+22581 60685
+22582 13850
+22583 47984
+22584 51097
+22585 20691
+22586 47020
+22587 80970
+22588 21027
+22589 49654
+22590 20854
+22591 36845
+22592 36517
+22593 36841
+22594 5168
+22595 32662
+22596 40780
+22597 32664
+22598 73125
+22599 32909
+22600 27952
+22601 64462
+22602 22447
+22603 57694
+22604 56231
+22605 62290
+22606 66234
+22607 41666
+22608 59388
+22609 23772
+22610 65885
+22611 66367
+22612 22611
+22613 71743
+22614 68897
+22615 25438
+22616 56389
+22617 24725
+22618 73104
+22619 37746
+22620 76849
+22621 62304
+22622 81168
+22623 49737
+22624 2823
+22625 39445
+22626 14773
+22627 66499
+22628 23070
+22629 68045
+22630 50260
+22631 56569
+22632 81170
+22633 72446
+22634 56278
+22635 20428
+22636 49777
+22637 62180
+22638 50761
+22639 49333
+22640 58664
+22641 41952
+22642 56699
+22643 26635
+22644 20428
+22645 39069
+22646 22645
+22647 70478
+22648 37446
+22649 62221
+22650 79254
+22651 38938
+22652 59389
+22653 60685
+22654 49062
+22655 22654
+22656 79831
+22657 73125
+22658 73125
+22659 66628
+22660 62459
+22661 65743
+22662 39493
+22663 48909
+22664 22682
+22665 22932
+22666 52143
+22667 57871
+22668 22679
+22669 22679
+22670 21404
+22671 73104
+22672 13570
+22673 37632
+22673 48509
+22674 47929
+22675 22677
+22676 38633
+22677 57059
+22678 30145
+22679 78067
+22680 25815
+22681 62207
+22682 39176
+22683 35891
+22684 56553
+22685 56553
+22686 30049
+22687 75648
+22688 66239
+22689 14098
+22690 23255
+22691 27434
+22692 45711
+22693 39421
+22694 69600
+22695 75739
+22696 74848
+22697 29513
+22698 30327
+22699 30332
+22700 41101
+22701 42998
+22702 51148
+22703 55390
+22704 39846
+22705 69724
+22706 74928
+22707 75642
+22708 78831
+22709 63134
+22710 38981
+22711 22168
+22712 71851
+22713 66502
+22714 66672
+22715 44087
+22716 66672
+22717 44083
+22718 46846
+22719 39204
+22720 32409
+22721 22215
+22722 32239
+22723 32036
+22724 62609
+22725 81404
+22726 37560
+22727 60489
+22728 40592
+22729 56182
+22730 63815
+22731 22908
+22732 35323
+22733 71607
+22734 71606
+22735 20570
+22736 55127
+22737 66648
+22738 29167
+22739 48620
+22740 49777
+22741 49777
+22742 66498
+22743 63711
+22744 47143
+22745 65255
+22746 38633
+22747 52279
+22748 64318
+22749 55220
+22750 52279
+22751 70161
+22752 13569
+22753 64090
+22754 4840
+22755 46525
+22756 42120
+22757 75508
+22758 55220
+22759 55220
+22760 46465
+22761 46660
+22762 23757
+22763 22759
+22764 64325
+22765 37862
+22766 50015
+22767 55220
+22768 55220
+22769 40787
+22770 40786
+22771 65844
+22772 48334
+22773 69381
+22774 27672
+22775 6474
+22776 31913
+22777 55220
+22778 55201
+22779 55220
+22780 23861
+22781 55220
+22782 55220
+22783 55220
+22784 55220
+22785 66520
+22786 55220
+22787 37955
+22788 25955
+22789 54229
+22790 21404
+22791 53293
+22792 21404
+22793 55037
+22794 70868
+22795 22291
+22796 32035
+22797 21469
+22798 55220
+22799 55220
+22800 33086
+22801 39540
+22802 58492
+22803 31927
+22804 22835
+22805 55037
+22806 46660
+22807 22811
+22808 55563
+22809 22801
+22810 22763
+22811 35692
+22812 22763
+22812 22811
+22813 22801
+22814 58457
+22815 62679
+22816 67036
+22817 37503
+22818 75978
+22819 33731
+22820 50015
+22821 39540
+22822 23029
+22823 37632
+22824 58616
+22825 76671
+22826 66497
+22827 66497
+22828 57106
+22829 67036
+22830 13574
+22831 13570
+22832 66324
+22833 14865
+22834 58457
+22835 55220
+22836 53526
+22837 55221
+22838 55220
+22839 39540
+22840 40819
+22841 11970
+22842 22844
+22843 21381
+22844 23560
+22845 20925
+22846 68396
+22847 59389
+22848 55220
+22849 69729
+22850 61349
+22851 55220
+22852 73030
+22853 38633
+22854 22801
+22855 13570
+22856 67036
+22857 22764
+22858 63733
+22859 63733
+22860 20922
+22861 52279
+22862 55220
+22863 66640
+22864 43213
+22865 22857
+22866 55220
+22867 48361
+22868 58139
+22869 80883
+22870 69505
+22871 30084
+22872 49265
+22873 59150
+22874 26664
+22875 24033
+22876 64462
+22877 39699
+22878 23919
+22879 37817
+22880 49076
+22881 57875
+22882 22877
+22883 75135
+22884 76088
+22885 23958
+22886 75718
+22887 23516
+22888 22434
+22889 22887
+22890 59150
+22891 62507
+22892 73279
+22892 78676
+22893 69532
+22894 49918
+22895 80499
+22896 31185
+22897 67339
+22898 46044
+22899 23356
+22900 71602
+22901 48627
+22902 28241
+22903 64314
+22904 41571
+22905 60599
+22906 56022
+22907 68521
+22908 63815
+22909 49777
+22910 63831
+22911 80475
+22912 59619
+22913 30086
+22914 21700
+22915 23029
+22916 66380
+22917 48091
+22918 59151
+22919 49429
+22920 26754
+22921 30145
+22922 36424
+22923 60685
+22924 79254
+22925 79263
+22926 15785
+22927 27582
+22928 46900
+22929 22948
+22930 37034
+22931 36424
+22932 53803
+22933 52143
+22934 72271
+22935 11670
+22936 50260
+22937 6193
+22938 73397
+22939 78090
+22940 70015
+22941 62209
+22942 68063
+22943 38946
+22944 856
+22945 49220
+22946 28970
+22947 74893
+22948 30145
+22949 28860
+22950 20365
+22951 74693
+22952 73907
+22953 26157
+22954 64325
+22955 22966
+22956 61477
+22957 22948
+22958 22948
+22959 70841
+22960 37902
+22961 21235
+22962 20814
+22963 36313
+22964 40617
+22965 62290
+22966 23623
+22967 56660
+22968 41397
+22969 67036
+22970 41203
+22971 62305
+22972 23016
+22973 57639
+22974 22948
+22975 64314
+22976 67036
+22977 66422
+22978 20341
+22979 14919
+22980 36422
+22981 67036
+22982 64668
+22983 80025
+22984 23616
+22985 40807
+22986 43609
+22987 7568
+22988 40234
+22989 27021
+22990 31939
+22991 3705
+22992 49824
+22993 59247
+22994 58708
+22995 72464
+22996 23005
+22997 49273
+22998 23008
+22999 66687
+23000 23972
+23001 63976
+23002 63241
+23003 26919
+23004 64979
+23005 46965
+23006 23934
+23007 66640
+23008 23448
+23009 63720
+23010 71593
+23011 33218
+23012 53374
+23013 4694
+23014 57372
+23015 40932
+23016 27021
+23017 60464
+23018 20415
+23019 49918
+23020 23017
+23021 23516
+23022 70920
+23023 78831
+23024 77853
+23025 21017
+23026 23016
+23027 25094
+23028 34769
+23029 34529
+23030 60009
+23031 23128
+23032 39191
+23032 62933
+23033 23053
+23034 22932
+23035 26611
+23036 33524
+23037 38796
+23038 43625
+23039 45084
+23040 50962
+23041 43713
+23042 43711
+23043 56111
+23044 47665
+23045 76158
+23046 63931
+23047 14640
+23048 61811
+23049 34774
+23050 67970
+23051 75331
+23052 75332
+23053 43718
+23054 77918
+23055 62286
+23056 29696
+23057 27631
+23058 37579
+23059 38571
+23060 28845
+23061 23069
+23062 43728
+23063 36942
+23064 38828
+23065 66475
+23066 49777
+23067 63241
+23068 39734
+23069 64090
+23070 54609
+23071 66520
+23072 39251
+23073 72005
+23074 43217
+23075 36942
+23076 55003
+23077 64465
+23078 69834
+23079 58838
+23080 49777
+23081 33228
+23082 55267
+23083 43880
+23084 9481
+23085 37699
+23086 27202
+23087 56349
+23088 36928
+23089 39722
+23090 29979
+23091 32674
+23092 40536
+23093 34976
+23094 23102
+23095 37554
+23096 75935
+23097 49661
+23098 49777
+23099 49777
+23100 49777
+23101 41498
+23102 51710
+23103 40786
+23104 29366
+23105 50025
+23106 14919
+23107 23127
+23108 33191
+23109 56752
+23110 21567
+23111 56749
+23112 76502
+23113 70740
+23114 45640
+23115 77387
+23116 43587
+23117 23126
+23118 23128
+23119 64251
+23120 74255
+23121 56456
+23122 20853
+23123 25985
+23124 20849
+23125 74486
+23126 53051
+23127 20626
+23128 33660
+23129 24082
+23130 32981
+23131 28893
+23132 70740
+23133 78961
+23134 33475
+23135 27582
+23136 43718
+23137 39191
+23138 61995
+23139 43706
+23140 68508
+23141 64317
+23142 70867
+23143 72891
+23144 60741
+23145 34018
+23146 57967
+23147 20408
+23148 37703
+23149 23120
+23150 20792
+23151 53315
+23152 35331
+23153 27766
+23154 25800
+23154 77232
+23155 26794
+23156 25225
+23157 70974
+23158 70760
+23159 26920
+23160 75222
+23160 79299
+23161 62290
+23162 26157
+23163 41666
+23164 62207
+23165 78776
+23166 78968
+23167 40434
+23168 39934
+23169 53315
+23170 33310
+23171 48727
+23172 71823
+23173 43246
+23174 24646
+23175 36208
+23176 64979
+23177 23532
+23178 55397
+23179 81406
+23180 56022
+23181 80860
+23182 69199
+23183 81338
+23184 63357
+23185 33442
+23186 40819
+23187 55194
+23188 50577
+23189 28559
+23190 55192
+23191 51123
+23192 23544
+23193 18616
+23194 67667
+23195 43420
+23196 31789
+23197 80860
+23198 41106
+23199 21493
+23200 80991
+23201 33442
+23202 79202
+23203 2911
+23204 35461
+23205 35461
+23206 77515
+23207 77515
+23208 77515
+23209 39399
+23210 77515
+23211 77515
+23212 77515
+23213 60575
+23214 33581
+23215 64361
+23216 35461
+23217 70920
+23218 40028
+23219 33581
+23220 74490
+23221 56451
+23222 26157
+23223 26157
+23224 40888
+23225 49777
+23226 864
+23227 22442
+23228 26235
+23229 51240
+23230 15600
+23231 51240
+23232 37325
+23233 63854
+23234 10249
+23235 63845
+23236 62303
+23237 30084
+23238 66478
+23238 66515
+23239 22733
+23240 22734
+23241 40819
+23242 61147
+23243 23856
+23244 30157
+23245 22587
+23246 65562
+23247 38901
+23248 52482
+23249 53182
+23250 30328
+23251 5752
+23252 34812
+23253 68807
+23254 39924
+23255 36208
+23256 23494
+23257 28241
+23258 24538
+23258 42061
+23259 64048
+23260 73905
+23261 72836
+23262 56389
+23263 74488
+23264 36671
+23265 32409
+23266 32419
+23267 37065
+23268 63788
+23269 6789
+23270 80526
+23271 56718
+23272 23516
+23273 23516
+23274 78831
+23275 34108
+23276 38694
+23277 38957
+23278 53810
+23279 14067
+23280 39252
+23281 23290
+23282 66324
+23283 40058
+23284 50797
+23285 33581
+23286 27021
+23287 40921
+23288 32210
+23289 23286
+23290 78307
+23291 60575
+23292 41511
+23293 74893
+23294 23282
+23295 33581
+23296 41802
+23297 48579
+23298 69342
+23299 22537
+23300 50441
+23301 23286
+23302 33476
+23303 67160
+23304 59317
+23305 80499
+23306 76512
+23307 71676
+23308 37322
+23309 56022
+23310 4203
+23311 69342
+23312 69342
+23313 40390
+23314 30774
+23314 58134
+23315 42581
+23316 40579
+23317 33385
+23318 37559
+23319 74298
+23320 78732
+23321 65844
+23322 23317
+23323 26955
+23324 36791
+23325 71632
+23326 56022
+23327 71851
+23328 4040
+23329 64979
+23330 38703
+23331 23327
+23332 62304
+23333 65933
+23334 23016
+23335 52382
+23336 37887
+23337 64721
+23338 55113
+23339 54996
+23340 64101
+23341 55002
+23342 58489
+23343 26307
+23344 53067
+23345 50196
+23346 37907
+23347 64117
+23348 23396
+23349 31927
+23350 37758
+23351 61363
+23352 53673
+23353 40711
+23354 64317
+23355 42582
+23356 39176
+23357 57035
+23358 56284
+23359 20724
+23360 32318
+23361 79259
+23362 24723
+23363 30424
+23364 52826
+23365 55880
+23366 67400
+23367 47533
+23368 33639
+23369 48092
+23370 72845
+23371 10845
+23372 30140
+23373 24765
+23374 60797
+23375 24723
+23376 31905
+23377 64307
+23378 43101
+23379 64315
+23380 62384
+23381 23387
+23382 23387
+23383 29989
+23384 59444
+23385 68601
+23386 69101
+23387 69471
+23388 70974
+23389 39948
+23390 54360
+23391 49287
+23392 23357
+23393 55890
+23394 43342
+23395 30084
+23396 66819
+23397 53100
+23398 36030
+23399 54611
+23400 65224
+23401 16756
+23402 35120
+23403 22663
+23404 55878
+23405 25045
+23406 30943
+23407 35566
+23408 39920
+23409 55897
+23410 43101
+23411 3503
+23412 58139
+23413 43847
+23414 76513
+23415 47665
+23416 24678
+23417 18616
+23418 64215
+23419 71335
+23420 23772
+23421 48832
+23422 48832
+23423 30524
+23424 61702
+23425 79479
+23426 69841
+23427 31174
+23428 23290
+23429 57225
+23430 53315
+23431 50198
+23432 46344
+23433 73906
+23434 63134
+23435 33078
+23436 33072
+23437 76093
+23438 23432
+23439 37692
+23440 31939
+23441 37408
+23442 49689
+23443 36094
+23444 49534
+23445 20428
+23446 33575
+23447 20679
+23448 20920
+23449 77299
+23450 44302
+23451 62681
+23452 80025
+23453 53308
+23454 63781
+23455 49777
+23456 11490
+23457 56207
+23458 23165
+23459 54804
+23460 23772
+23461 2911
+23462 2911
+23463 62687
+23464 80514
+23465 73063
+23466 54634
+23467 17145
+23468 80970
+23469 46501
+23470 80526
+23471 30888
+23472 68239
+23473 30774
+23474 77547
+23475 20792
+23476 38633
+23476 61388
+23477 33086
+23478 56022
+23479 44212
+23480 28457
+23481 34940
+23482 4747
+23483 4746
+23484 74423
+23485 79248
+23486 31610
+23487 20724
+23488 34975
+23489 24909
+23490 20570
+23491 72898
+23492 39204
+23493 40730
+23494 43213
+23495 47984
+23496 48695
+23497 23585
+23497 68768
+23498 60202
+23499 33522
+23500 64694
+23501 75456
+23502 2911
+23503 26695
+23504 55127
+23505 62327
+23506 26726
+23507 47902
+23508 60685
+23509 20051
+23510 23528
+23511 23516
+23512 68845
+23513 68845
+23514 23513
+23515 49918
+23516 26734
+23517 76167
+23518 23516
+23519 23516
+23520 80045
+23521 37607
+23522 59970
+23523 60690
+23524 49920
+23525 30252
+23526 23531
+23527 20051
+23528 67500
+23529 40932
+23530 60685
+23531 59178
+23532 50569
+23533 41299
+23534 44496
+23535 39874
+23536 59178
+23537 30157
+23538 30157
+23539 78817
+23540 78816
+23541 78816
+23542 58236
+23542 61817
+23543 23560
+23544 69287
+23545 36886
+23546 23543
+23546 79609
+23547 38022
+23548 25646
+23549 33715
+23550 37956
+23551 70919
+23552 64181
+23553 33472
+23554 40886
+23555 27021
+23556 33475
+23557 32909
+23558 72273
+23559 74968
+23560 78311
+23561 53295
+23562 23482
+23563 49436
+23564 57590
+23565 50115
+23566 33148
+23567 49436
+23568 37035
+23569 52037
+23570 27765
+23570 39670
+23571 34590
+23572 78352
+23573 23357
+23574 23410
+23575 61363
+23576 42120
+23577 57821
+23578 70068
+23579 11312
+23580 52895
+23581 34812
+23582 23583
+23582 53594
+23583 73935
+23584 61189
+23585 43647
+23586 41407
+23587 57359
+23588 49989
+23589 23483
+23590 73063
+23591 47665
+23592 29702
+23593 57529
+23594 23960
+23595 80461
+23596 22215
+23597 20353
+23598 62609
+23599 49904
+23600 33772
+23601 56896
+23602 52727
+23603 53123
+23604 22887
+23605 23516
+23606 4337
+23607 58150
+23608 70499
+23609 37955
+23610 69442
+23611 69438
+23612 77853
+23613 52143
+23614 60685
+23615 47665
+23616 43722
+23617 52876
+23618 23616
+23619 43844
+23620 72589
+23621 34767
+23622 66672
+23623 66666
+23624 61699
+23625 66753
+23626 18616
+23627 19954
+23628 69351
+23629 65893
+23630 7583
+23631 34104
+23632 26039
+23633 17636
+23633 28246
+23634 66908
+23635 66908
+23636 65893
+23637 20962
+23638 33660
+23639 42987
+23640 15000
+23641 79166
+23642 32115
+23643 22811
+23644 22137
+23645 47665
+23646 78816
+23647 52587
+23648 25489
+23649 47665
+23650 74761
+23651 22137
+23652 30584
+23653 30585
+23654 79253
+23655 45843
+23656 34405
+23657 65645
+23658 63018
+23659 18857
+23660 36942
+23661 22519
+23662 59229
+23663 37560
+23664 37169
+23665 49255
+23666 36680
+23667 23925
+23668 24836
+23669 25119
+23670 60746
+23671 56022
+23672 53055
+23673 61702
+23674 44365
+23675 47665
+23676 23066
+23677 33547
+23678 22089
+23679 23552
+23680 27758
+23681 28007
+23682 64636
+23683 22300
+23683 68199
+23684 23683
+23684 63357
+23685 43020
+23686 40229
+23687 4466
+23688 79426
+23689 53312
+23690 12570
+23691 47761
+23692 36280
+23693 40686
+23694 24132
+23695 23387
+23696 23090
+23697 55037
+23698 66629
+23699 67902
+23700 22318
+23701 69904
+23702 64090
+23703 54100
+23704 28242
+23705 41106
+23706 44315
+23707 46347
+23708 24023
+23709 64099
+23710 12083
+23711 66649
+23712 66649
+23713 66812
+23714 32909
+23715 36175
+23716 63155
+23717 25628
+23718 49777
+23719 30608
+23720 15001
+23721 20895
+23722 64979
+23723 63164
+23724 78364
+23725 36923
+23726 64181
+23727 37251
+23728 66558
+23729 60533
+23729 65885
+23730 38868
+23731 50198
+23732 37795
+23733 51806
+23734 60533
+23735 66441
+23736 53217
+23737 36933
+23738 54522
+23739 80926
+23740 64064
+23741 69444
+23742 59352
+23743 81046
+23744 4694
+23745 29249
+23746 54945
+23747 20674
+23748 20569
+23749 64064
+23750 14919
+23751 59394
+23752 71589
+23753 19008
+23754 55367
+23755 66431
+23756 30784
+23757 46344
+23758 34245
+23759 68817
+23760 67089
+23761 19007
+23762 20724
+23763 46358
+23764 30350
+23765 32706
+23766 73125
+23767 50232
+23768 37446
+23769 32318
+23770 44036
+23771 30774
+23771 46811
+23772 42747
+23773 73907
+23774 21462
+23775 37111
+23776 37112
+23777 34729
+23778 30578
+23779 73045
+23780 57526
+23781 56092
+23782 25710
+23783 41553
+23784 27027
+23785 52326
+23786 66801
+23787 49777
+23788 22128
+23789 33273
+23790 47665
+23791 41571
+23792 47665
+23793 70760
+23794 75351
+23795 33722
+23796 55220
+23797 57856
+23798 38079
+23799 23810
+23800 57593
+23801 57855
+23802 69862
+23803 80991
+23804 43128
+23805 64428
+23806 23810
+23807 77299
+23808 61693
+23809 68868
+23810 61694
+23811 68475
+23812 53182
+23813 23808
+23814 23810
+23815 50263
+23816 80704
+23817 72172
+23818 73633
+23819 75648
+23820 59180
+23821 37209
+23822 20428
+23823 67036
+23824 60685
+23825 60685
+23826 10286
+23827 65897
+23828 20348
+23829 62214
+23830 66015
+23831 25634
+23832 57795
+23833 60685
+23834 49863
+23835 25821
+23836 43876
+23837 66498
+23838 78155
+23839 37484
+23840 10789
+23841 52850
+23842 60685
+23843 21080
+23844 23513
+23845 57795
+23846 33670
+23847 47339
+23848 33007
+23849 41106
+23850 23856
+23850 44055
+23851 71632
+23852 54476
+23852 64317
+23853 63610
+23854 27027
+23855 39899
+23856 37862
+23857 40965
+23858 45178
+23859 55132
+23860 63712
+23861 79936
+23862 44212
+23863 23864
+23863 39422
+23864 61685
+23865 44242
+23866 57091
+23867 34003
+23868 55037
+23869 54972
+23870 27104
+23870 58451
+23871 76489
+23872 55220
+23873 39898
+23874 11589
+23875 54876
+23876 58489
+23877 58447
+23878 23873
+23879 72257
+23880 68817
+23881 75988
+23882 53469
+23883 11589
+23884 68817
+23885 37906
+23886 22591
+23887 37672
+23888 57127
+23889 35773
+23890 66154
+23891 33273
+23892 36721
+23893 57795
+23894 53277
+23895 47679
+23896 20428
+23897 34153
+23898 29495
+23898 41760
+23899 69644
+23900 29500
+23901 29503
+23902 29500
+23903 47357
+23904 30462
+23905 4698
+23906 23904
+23907 50020
+23908 35158
+23909 74893
+23910 79915
+23911 21811
+23911 22785
+23911 22851
+23911 57241
+23911 62721
+23912 72217
+23913 27863
+23914 21287
+23915 21027
+23916 81046
+23917 33475
+23918 59179
+23919 21322
+23920 34984
+23921 34936
+23922 62425
+23923 36375
+23924 25617
+23925 34984
+23926 79691
+23927 74072
+23928 29090
+23929 20679
+23930 23447
+23931 40393
+23932 23931
+23933 20955
+23934 46347
+23935 43539
+23936 32960
+23937 67521
+23938 23739
+23939 60491
+23940 25094
+23941 23969
+23942 34545
+23943 41137
+23944 72981
+23945 74926
+23946 72121
+23947 23940
+23948 33527
+23949 77112
+23950 79915
+23951 79920
+23952 39421
+23953 75859
+23954 40579
+23955 33605
+23956 49949
+23957 40722
+23958 31939
+23959 32287
+23960 26994
+23961 21284
+23962 59419
+23963 63926
+23964 14919
+23965 76483
+23966 43103
+23967 70375
+23968 64979
+23969 30584
+23970 40004
+23971 58479
+23972 25471
+23973 62678
+23974 33186
+23975 20540
+23976 29979
+23977 29979
+23978 67850
+23979 36219
+23980 43579
+23981 65632
+23982 66801
+23983 20428
+23984 43153
+23985 23984
+23986 27844
+23987 68181
+23988 62397
+23989 42213
+23990 21406
+23991 27074
+23992 27075
+23993 61132
+23994 43054
+23995 44315
+23996 11593
+23997 30488
+23998 33337
+23999 58674
+24000 24029
+24001 43539
+24002 33069
+24003 32946
+24004 22240
+24005 52045
+24006 39494
+24006 74965
+24007 29827
+24008 66641
+24009 59563
+24010 55132
+24011 55127
+24012 71954
+24012 75263
+24013 54228
+24014 75461
+24015 20707
+24016 40611
+24017 62245
+24018 40945
+24018 56308
+24019 67902
+24020 58674
+24021 64694
+24022 20703
+24023 23285
+24024 21462
+24025 22927
+24026 22989
+24027 34245
+24028 3604
+24029 32900
+24030 46800
+24031 49278
+24032 55150
+24033 59516
+24034 61134
+24035 69614
+24036 58489
+24037 17154
+24037 46882
+24038 38516
+24039 56022
+24040 49659
+24041 73126
+24042 49661
+24043 59264
+24044 40807
+24045 69122
+24046 24045
+24047 60603
+24048 51572
+24049 74893
+24050 52974
+24051 45415
+24052 62629
+24053 29706
+24054 63841
+24055 62629
+24056 23516
+24057 78831
+24058 34729
+24059 26241
+24060 59794
+24061 1568
+24062 1568
+24063 37004
+24063 47329
+24064 58998
+24065 39871
+24066 41490
+24067 71794
+24068 73213
+24069 62234
+24070 1196
+24071 48206
+24072 69283
+24073 8940
+24074 41996
+24075 11482
+24076 64187
+24077 34817
+24078 81056
+24079 59912
+24080 59234
+24081 33767
+24082 49777
+24083 40819
+24084 61286
+24085 27202
+24086 24082
+24087 50198
+24088 37404
+24089 73439
+24090 24082
+24091 78919
+24092 4749
+24093 74926
+24094 28460
+24095 20650
+24096 71593
+24097 34695
+24098 33069
+24099 65250
+24100 22764
+24101 40896
+24102 26087
+24103 26088
+24104 29923
+24105 79003
+24106 62808
+24107 49194
+24108 49777
+24109 69841
+24110 42811
+24111 59242
+24112 69453
+24113 77340
+24114 47428
+24115 45815
+24116 81061
+24117 70601
+24118 21691
+24119 37560
+24120 60685
+24121 48997
+24122 42168
+24123 54076
+24124 78874
+24125 28820
+24126 31114
+24127 35900
+24128 24122
+24129 78175
+24130 36942
+24131 24128
+24131 62110
+24132 24128
+24132 54109
+24133 77218
+24134 47875
+24135 33273
+24136 40234
+24137 65743
+24138 22636
+24139 55168
+24140 39916
+24141 12083
+24142 21672
+24143 49824
+24144 50232
+24145 61342
+24146 66592
+24147 65226
+24148 78830
+24149 39920
+24150 39923
+24151 70760
+24152 44113
+24153 57833
+24154 57791
+24155 8940
+24156 8940
+24157 62290
+24158 62360
+24159 40611
+24160 65360
+24161 65362
+24162 59389
+24163 27785
+24164 44439
+24165 44439
+24166 31250
+24167 40896
+24168 25646
+24169 66538
+24170 61625
+24171 33970
+24172 28266
+24173 71466
+24174 40233
+24175 40232
+24176 36928
+24177 21608
+24178 27059
+24179 75816
+24180 39916
+24181 59180
+24182 64636
+24183 74072
+24184 55372
+24185 78917
+24186 61709
+24187 79951
+24188 71174
+24189 46965
+24190 53055
+24191 69573
+24192 56675
+24193 46076
+24194 8397
+24195 21443
+24196 74119
+24197 23108
+24198 73733
+24199 73147
+24200 15001
+24201 58295
+24202 59356
+24203 24222
+24204 25628
+24205 33291
+24206 57694
+24207 24843
+24208 28241
+24209 20724
+24210 49824
+24211 23484
+24212 70974
+24213 24212
+24214 41480
+24215 21266
+24216 54440
+24217 11088
+24218 39191
+24219 43718
+24220 50323
+24221 70291
+24222 66421
+24223 74978
+24224 26994
+24225 54876
+24226 32909
+24227 22002
+24228 69634
+24229 23423
+24230 7567
+24231 74860
+24232 45198
+24233 51710
+24234 33499
+24235 44054
+24236 20480
+24237 21125
+24238 39699
+24239 78367
+24240 78394
+24241 37454
+24242 25437
+24243 49832
+24244 49648
+24245 46882
+24246 23165
+24247 25420
+24248 29199
+24249 27991
+24250 39181
+24251 46220
+24252 79987
+24253 70919
+24254 46613
+24255 70920
+24256 872
+24257 62209
+24258 23516
+24259 54028
+24260 78831
+24261 61544
+24262 64240
+24263 69903
+24264 24266
+24265 46010
+24266 35991
+24267 55351
+24268 22110
+24269 57787
+24270 34164
+24271 38080
+24272 47665
+24273 66495
+24274 52633
+24275 52727
+24276 59385
+24277 67076
+24278 55220
+24279 33086
+24280 46345
+24281 872
+24282 38901
+24283 46345
+24284 12659
+24285 60685
+24286 22763
+24287 26794
+24288 23772
+24289 54374
+24290 78831
+24291 60685
+24292 55512
+24293 35197
+24294 10216
+24295 27335
+24296 28845
+24297 24296
+24298 41511
+24299 69351
+24300 58860
+24301 41113
+24302 45193
+24303 17385
+24304 59505
+24305 33400
+24306 74789
+24307 32275
+24308 13465
+24309 11311
+24310 47299
+24311 30943
+24312 81306
+24313 50799
+24314 49777
+24315 51806
+24316 42747
+24317 46325
+24318 43882
+24319 47665
+24320 44419
+24321 49777
+24322 80159
+24323 49777
+24324 72218
+24325 51349
+24326 45866
+24327 24678
+24328 63357
+24329 70219
+24330 58195
+24331 58195
+24332 51349
+24333 21513
+24334 37539
+24335 20569
+24336 29483
+24337 38533
+24338 28189
+24339 79390
+24340 79390
+24341 11311
+24342 51662
+24343 80778
+24344 71369
+24345 76475
+24346 54706
+24347 22763
+24348 27021
+24349 70494
+24350 62180
+24351 43055
+24352 70920
+24353 64307
+24354 31927
+24355 74490
+24356 63136
+24357 80883
+24358 27531
+24359 63494
+24360 30537
+24361 20868
+24362 20641
+24363 20639
+24364 40925
+24365 40711
+24366 43053
+24367 55040
+24368 36692
+24369 63050
+24370 67573
+24371 76767
+24372 20774
+24373 24723
+24374 25451
+24375 69189
+24376 52581
+24377 20868
+24378 24385
+24379 44065
+24380 74490
+24381 60464
+24382 33470
+24383 68704
+24384 43243
+24385 36891
+24386 36891
+24387 42118
+24388 56158
+24389 42738
+24390 26929
+24391 26923
+24392 47697
+24393 23654
+24394 49951
+24395 37818
+24396 20674
+24397 40058
+24398 68953
+24399 24395
+24400 63896
+24401 24395
+24402 63694
+24403 66943
+24404 38566
+24405 26769
+24406 37198
+24407 23125
+24408 25493
+24408 66412
+24409 66789
+24410 56749
+24411 65745
+24412 53019
+24413 20724
+24414 42203
+24415 20726
+24416 24504
+24417 47912
+24418 75733
+24419 23380
+24420 41106
+24421 21230
+24422 46922
+24423 59228
+24424 68938
+24425 49899
+24426 69189
+24427 55182
+24428 40011
+24429 41157
+24430 33779
+24431 9842
+24432 72396
+24433 72935
+24434 73168
+24435 73432
+24436 49907
+24437 41631
+24438 46421
+24439 74786
+24440 74777
+24441 28222
+24442 73346
+24443 26506
+24444 20714
+24445 54945
+24446 38822
+24447 33137
+24448 33152
+24449 27019
+24450 66324
+24451 34479
+24452 46336
+24453 68381
+24454 74119
+24455 37579
+24456 67266
+24457 1712
+24458 60685
+24459 55727
+24460 42002
+24461 41299
+24462 44496
+24463 59330
+24464 72222
+24465 76975
+24466 30769
+24467 61858
+24468 26100
+24469 55223
+24470 54076
+24471 79202
+24472 59389
+24473 21404
+24474 24459
+24475 64979
+24476 26669
+24477 30691
+24478 36094
+24479 24486
+24480 40585
+24481 49777
+24482 5346
+24483 30489
+24484 77656
+24485 49452
+24486 49777
+24487 22447
+24488 79936
+24489 56022
+24490 21835
+24491 30584
+24492 57183
+24493 46975
+24494 24829
+24495 10248
+24496 34542
+24497 4696
+24498 72614
+24499 65271
+24500 50281
+24501 37644
+24502 62372
+24503 61086
+24504 33637
+24505 49699
+24506 25076
+24507 33637
+24508 33639
+24509 24521
+24510 78365
+24511 54468
+24512 20955
+24513 48177
+24514 51708
+24515 64619
+24516 22055
+24517 33078
+24518 77503
+24519 75010
+24520 28356
+24521 29760
+24522 80778
+24523 54988
+24524 29379
+24525 23285
+24526 23938
+24527 54100
+24528 50421
+24528 68196
+24529 65273
+24530 80545
+24531 6877
+24532 18274
+24533 52562
+24534 21405
+24535 58838
+24536 14919
+24537 51240
+24538 51712
+24539 36457
+24540 36453
+24541 13901
+24542 6958
+24543 40013
+24544 36942
+24545 54732
+24546 29847
+24547 46975
+24548 13510
+24549 41054
+24550 17849
+24551 43000
+24552 63271
+24553 55449
+24554 70974
+24555 21844
+24556 81178
+24557 70264
+24557 80904
+24558 34808
+24559 33891
+24560 26228
+24561 52479
+24562 60633
+24563 29240
+24564 2004
+24565 31181
+24566 40225
+24567 68597
+24568 40204
+24569 23434
+24570 33581
+24571 33068
+24572 37151
+24573 72172
+24574 80023
+24575 80150
+24576 9487
+24577 46588
+24578 20706
+24579 40225
+24580 24572
+24581 65969
+24582 28186
+24583 37138
+24584 20867
+24585 80614
+24586 49918
+24587 49918
+24588 72427
+24589 46505
+24590 18616
+24591 51670
+24592 33581
+24593 33581
+24594 48385
+24595 35648
+24596 35648
+24597 38959
+24598 29199
+24599 28380
+24600 49777
+24601 36653
+24602 25709
+24603 28364
+24604 80119
+24605 80679
+24606 23287
+24607 37167
+24608 25376
+24609 36458
+24610 49777
+24611 50481
+24612 53135
+24613 74942
+24614 51069
+24615 80778
+24616 9482
+24617 46834
+24618 2440
+24619 25439
+24620 27521
+24621 43055
+24622 29716
+24623 41802
+24624 41829
+24625 45766
+24626 23846
+24627 54522
+24628 78673
+24629 71851
+24630 62658
+24631 62658
+24632 55037
+24633 45974
+24634 23975
+24635 66766
+24636 39421
+24637 66380
+24638 43240
+24639 24643
+24640 31185
+24641 57106
+24642 32956
+24643 35808
+24644 35808
+24645 35808
+24646 23960
+24647 40011
+24648 40010
+24649 70876
+24650 56901
+24651 49178
+24652 56206
+24653 61684
+24654 42613
+24655 38912
+24656 45924
+24657 55208
+24658 62453
+24659 53013
+24660 27104
+24661 80514
+24662 29230
+24663 71567
+24664 72449
+24665 42609
+24666 70974
+24667 37956
+24668 31104
+24669 27485
+24670 60090
+24671 23846
+24671 60492
+24672 60971
+24673 67573
+24674 71594
+24675 40292
+24676 59917
+24677 24687
+24678 66520
+24679 24677
+24680 49575
+24681 31718
+24682 28380
+24683 19954
+24684 22468
+24685 65403
+24686 72322
+24687 58955
+24688 24678
+24689 45739
+24690 76694
+24691 45739
+24692 63018
+24693 80526
+24694 21051
+24695 47665
+24696 74490
+24697 19954
+24698 45837
+24699 49192
+24700 41666
+24701 51883
+24702 65400
+24703 78816
+24704 36223
+24705 12230
+24706 15860
+24707 64112
+24708 47665
+24709 39191
+24710 29571
+24711 65124
+24712 40410
+24713 60590
+24714 14150
+24715 48257
+24716 10250
+24717 17459
+24718 57128
+24719 73721
+24720 21155
+24721 57128
+24722 65552
+24723 71202
+24724 76560
+24725 51000
+24726 53729
+24726 71202
+24727 71202
+24728 33575
+24729 61847
+24730 38483
+24731 46905
+24732 27485
+24733 44355
+24734 51748
+24735 31506
+24736 58567
+24737 68347
+24738 73395
+24739 35870
+24740 28316
+24741 54810
+24742 65612
+24743 76067
+24744 62575
+24745 33305
+24746 33305
+24747 29720
+24748 63398
+24749 57134
+24750 62397
+24751 73989
+24752 79454
+24753 33505
+24754 49957
+24755 2179
+24756 62736
+24757 26770
+24758 32311
+24759 74169
+24760 76854
+24761 63068
+24762 42204
+24763 58158
+24764 32560
+24765 51000
+24766 21155
+24767 66421
+24768 73830
+24769 42044
+24770 70499
+24771 24415
+24772 36671
+24773 23438
+24774 33637
+24775 67157
+24776 43837
+24777 70499
+24778 42621
+24779 41794
+24780 20689
+24781 34829
+24782 30644
+24783 31915
+24784 32701
+24785 38345
+24786 40611
+24787 40616
+24788 41159
+24789 45974
+24790 79692
+24791 48082
+24792 52553
+24793 58490
+24794 53481
+24795 37415
+24796 11548
+24797 37529
+24798 67397
+24799 24802
+24800 25149
+24801 73128
+24802 80736
+24803 65969
+24804 42046
+24805 56461
+24806 42033
+24807 42031
+24808 44070
+24809 49824
+24810 43837
+24811 41160
+24812 41159
+24813 50152
+24814 63976
+24815 2911
+24816 67621
+24817 42392
+24818 47277
+24819 24704
+24820 42523
+24821 22598
+24822 37308
+24823 55104
+24824 2071
+24825 72464
+24826 38086
+24827 81028
+24828 2554
+24829 66596
+24830 41906
+24831 50863
+24832 30732
+24833 23918
+24834 22468
+24835 27679
+24836 68045
+24837 25119
+24838 67573
+24839 34408
+24840 49441
+24841 57127
+24842 49396
+24843 47929
+24844 63712
+24845 25016
+24845 67157
+24846 32917
+24847 26664
+24848 74490
+24849 47415
+24850 65431
+24851 26249
+24852 30642
+24853 32210
+24854 40612
+24855 38533
+24856 53123
+24856 57127
+24857 54202
+24858 29961
+24859 49798
+24860 49376
+24861 63133
+24862 11486
+24862 59361
+24863 71556
+24864 32661
+24865 62687
+24866 62687
+24867 17664
+24868 36378
+24869 2911
+24870 37579
+24871 33895
+24872 65258
+24873 30081
+24874 68508
+24875 37579
+24876 37579
+24877 67396
+24878 80679
+24879 75739
+24880 80021
+24881 79259
+24882 30424
+24883 2911
+24884 70264
+24885 65062
+24886 61740
+24887 8369
+24888 46529
+24889 76945
+24890 24891
+24891 69337
+24892 20792
+24893 76181
+24894 71851
+24895 62659
+24896 29264
+24897 49214
+24898 27155
+24899 30221
+24900 79002
+24901 26966
+24902 45384
+24903 57363
+24904 62234
+24905 21487
+24906 64710
+24907 70278
+24908 49849
+24909 55449
+24910 57706
+24911 37033
+24912 52785
+24913 26954
+24914 14766
+24915 73432
+24916 47665
+24917 17029
+24918 70788
+24919 27638
+24920 55563
+24921 25034
+24922 39892
+24923 25034
+24924 25034
+24925 74271
+24926 56022
+24927 34570
+24928 58158
+24929 68149
+24930 35197
+24931 64439
+24932 25599
+24933 27258
+24934 37975
+24935 43631
+24936 30316
+24937 30315
+24938 46986
+24939 24937
+24940 28044
+24941 45825
+24942 25026
+24943 27679
+24944 41374
+24945 35802
+24946 71184
+24947 59782
+24948 72360
+24949 74642
+24950 35187
+24951 45696
+24952 23481
+24953 74168
+24954 42459
+24955 70908
+24956 33639
+24957 20959
+24958 61912
+24959 81141
+24960 12096
+24961 24962
+24962 55132
+24963 23865
+24964 10845
+24965 60935
+24966 72848
+24967 10151
+24968 23335
+24969 58130
+24970 14919
+24971 65562
+24972 76582
+24973 51654
+24974 10252
+24975 10249
+24976 23586
+24977 65905
+24978 68521
+24979 29660
+24980 55903
+24981 72446
+24982 52037
+24983 42120
+24984 21635
+24985 50907
+24986 53979
+24987 81080
+24988 77066
+24989 27815
+24990 43454
+24991 34936
+24992 59782
+24993 77763
+24994 79003
+24995 35627
+24996 33639
+24997 19068
+24997 2684
+24998 28790
+24999 28790
+25000 51699
+25001 50200
+25002 67516
+25003 78799
+25004 28627
+25005 24838
+25006 52119
+25007 19848
+25008 29574
+25009 73315
+25010 47665
+25011 61936
+25012 25014
+25013 25014
+25014 49396
+25015 58684
+25016 55166
+25018 34003
+25019 39327
+25020 65025
+25021 78497
+25022 52314
+25023 33639
+25024 8369
+25025 29696
+25026 39724
+25027 40648
+25028 24909
+25029 42747
+25030 30239
+25031 63712
+25032 41664
+25032 46660
+25033 58489
+25034 24920
+25035 66486
+25036 27026
+25037 57516
+25038 44113
+25039 55541
+25040 55543
+25041 62209
+25042 78831
+25043 79344
+25044 33581
+25045 55890
+25046 74488
+25047 58489
+25048 60465
+25049 27370
+25050 33774
+25051 1423
+25052 74490
+25053 42449
+25054 33068
+25055 53539
+25056 36763
+25057 43828
+25058 49996
+25059 27369
+25060 39445
+25061 48002
+25062 55563
+25063 20679
+25064 58463
+25065 50327
+25066 24671
+25067 24624
+25068 1785
+25068 25076
+25069 25076
+25069 25209
+25070 29240
+25071 77058
+25072 31801
+25073 25083
+25074 32022
+25075 60357
+25076 72614
+25077 25076
+25078 33336
+25079 54522
+25080 68878
+25081 69179
+25082 70342
+25083 72767
+25084 56389
+25085 34972
+25086 53135
+25087 53135
+25088 42692
+25089 74488
+25090 78422
+25091 37975
+25092 60531
+25093 1423
+25094 59182
+25095 38901
+25096 61845
+25097 70161
+25098 71057
+25099 55908
+25100 41116
+25101 63861
+25102 43722
+25103 52876
+25104 43844
+25105 72589
+25106 66672
+25107 56446
+25108 47665
+25109 56821
+25110 23516
+25111 55351
+25112 67876
+25113 78831
+25114 31298
+25115 15836
+25116 57315
+25117 29170
+25118 49234
+25119 79003
+25120 33639
+25121 5316
+25122 45056
+25123 70819
+25124 47533
+25125 43332
+25126 78831
+25127 33637
+25128 33639
+25129 25143
+25129 45495
+25130 68882
+25131 74831
+25132 41666
+25133 30216
+25134 47917
+25135 30855
+25136 39100
+25137 41054
+25138 34542
+25139 1785
+25139 25143
+25140 31801
+25141 32022
+25142 4696
+25143 72614
+25144 33336
+25145 62419
+25146 23846
+25147 68878
+25148 69179
+25149 70341
+25150 72767
+25151 34695
+25152 54359
+25153 54128
+25154 52761
+25155 72924
+25156 62124
+25157 60467
+25158 17029
+25159 68266
+25160 43565
+25161 70788
+25162 50200
+25163 61147
+25164 31593
+25165 31709
+25166 38648
+25167 25162
+25167 27451
+25168 25162
+25168 46492
+25169 25162
+25169 27638
+25170 64015
+25171 48559
+25172 31593
+25173 41752
+25174 24318
+25175 24322
+25176 57134
+25177 25161
+25178 38202
+25179 57134
+25180 19954
+25181 18616
+25182 50799
+25183 78740
+25184 79992
+25185 48023
+25186 22186
+25187 22186
+25188 22468
+25189 26817
+25190 60344
+25191 36175
+25192 36378
+25193 73432
+25194 67393
+25195 69829
+25196 33894
+25197 35296
+25198 76879
+25199 56373
+25200 36315
+25201 41429
+25202 43273
+25203 56022
+25204 32119
+25205 62207
+25206 62425
+25207 65271
+25208 34929
+25209 31981
+25210 23739
+25210 27521
+25211 49798
+25212 20724
+25213 20724
+25214 40682
+25215 72446
+25216 73048
+25217 80158
+25218 53196
+25219 25218
+25220 76671
+25221 76671
+25222 25218
+25222 76940
+25223 79697
+25224 74779
+25225 77299
+25226 49777
+25227 28241
+25228 48578
+25229 37862
+25230 31677
+25230 79647
+25231 29240
+25232 49220
+25233 40894
+25234 69627
+25235 67403
+25236 31673
+25237 42382
+25238 45232
+25239 55132
+25240 55127
+25241 74078
+25242 74078
+25243 41054
+25244 41054
+25245 23938
+25246 67487
+25247 31981
+25248 72880
+25249 67487
+25250 72615
+25251 61189
+25252 21327
+25253 23410
+25254 52119
+25255 73962
+25256 73839
+25257 24671
+25258 33229
+25259 27491
+25260 65511
+25261 23574
+25262 39421
+25263 20724
+25264 72767
+25265 72974
+25266 1413
+25267 79296
+25268 23933
+25269 61129
+25270 64230
+25271 25074
+25272 25076
+25272 45407
+25273 25076
+25273 47534
+25274 67510
+25275 20924
+25276 23933
+25277 46347
+25278 27943
+25279 80428
+25280 35168
+25281 35769
+25282 55909
+25283 63237
+25284 42392
+25285 42582
+25286 23410
+25287 53128
+25288 33669
+25289 62247
+25290 46554
+25291 24496
+25292 60357
+25293 53128
+25294 28341
+25295 79639
+25296 8706
+25297 28600
+25298 74798
+25299 68716
+25300 49957
+25301 56022
+25302 32320
+25303 37443
+25304 32909
+25305 34933
+25306 27019
+25307 35197
+25308 10366
+25309 32977
+25310 32976
+25311 48405
+25312 47666
+25313 79886
+25314 21338
+25315 68612
+25316 68613
+25317 80526
+25318 25694
+25319 80568
+25320 79951
+25321 58596
+25322 18616
+25323 79886
+25324 79880
+25325 51655
+25326 51904
+25327 70264
+25328 54737
+25329 68184
+25330 52253
+25331 46512
+25332 33067
+25333 43246
+25334 1790
+25335 40283
+25336 22226
+25337 7577
+25338 74119
+25339 48576
+25340 68352
+25341 80483
+25342 80487
+25343 62547
+25344 68352
+25345 73705
+25346 76940
+25347 29378
+25348 42655
+25349 5752
+25350 27855
+25351 20679
+25352 31939
+25353 79259
+25354 65343
+25355 76945
+25356 51000
+25357 72332
+25358 56389
+25359 57633
+25360 78887
+25361 36208
+25362 62255
+25363 73821
+25364 63476
+25365 48559
+25366 8706
+25367 56868
+25368 56868
+25369 58334
+25370 47208
+25371 71676
+25372 76781
+25373 50919
+25374 35361
+25375 70578
+25376 73900
+25377 52970
+25378 39463
+25379 27698
+25380 41066
+25381 24567
+25382 52589
+25383 69351
+25384 52587
+25385 2911
+25386 20703
+25386 28420
+25387 35398
+25388 37337
+25389 72730
+25390 76888
+25391 18616
+25392 2911
+25393 69355
+25394 24504
+25395 36458
+25396 37308
+25397 71027
+25398 72946
+25399 29599
+25400 50585
+25401 41666
+25402 20591
+25403 74746
+25404 36791
+25405 31657
+25406 25399
+25406 35253
+25407 81317
+25408 81317
+25409 21379
+25410 53055
+25411 81030
+25412 75134
+25413 54715
+25414 69002
+25415 28172
+25416 8486
+25417 2911
+25418 80526
+25419 46682
+25420 43930
+25421 49777
+25422 46682
+25423 41752
+25424 52876
+25425 80970
+25426 42393
+25427 38980
+25428 13470
+25429 80147
+25430 42393
+25431 77299
+25432 55529
+25433 56844
+25434 29301
+25435 66430
+25436 54580
+25437 26994
+25438 47664
+25439 74490
+25440 27637
+25441 66401
+25442 74490
+25442 79516
+25443 68508
+25444 43862
+25445 47121
+25446 80910
+25447 54414
+25448 57469
+25449 60678
+25450 61238
+25451 57132
+25452 59500
+25453 13131
+25454 71941
+25455 62665
+25456 59877
+25457 73877
+25458 68146
+25459 81315
+25460 80926
+25461 49441
+25462 20920
+25463 68320
+25464 32560
+25465 34170
+25466 43967
+25467 45118
+25468 35794
+25469 34705
+25470 30524
+25471 23004
+25472 80778
+25473 40619
+25474 2911
+25475 21230
+25476 57397
+25477 21155
+25478 25470
+25479 43862
+25480 25419
+25481 47121
+25481 54476
+25482 23380
+25483 67490
+25484 79537
+25485 79791
+25486 45117
+25487 36215
+25488 43882
+25489 60643
+25490 5316
+25491 73691
+25492 73691
+25493 70044
+25494 74527
+25495 25046
+25496 40051
+25497 26943
+25498 30693
+25499 23282
+25500 50863
+25501 53196
+25502 61902
+25503 28222
+25504 31927
+25505 44164
+25506 55037
+25507 23746
+25508 49777
+25509 53962
+25510 79003
+25511 74490
+25512 39024
+25513 15784
+25514 25504
+25515 67573
+25516 74156
+25517 43882
+25518 74258
+25519 70491
+25520 54580
+25521 22901
+25522 78090
+25523 25504
+25524 72690
+25525 43882
+25526 47665
+25527 48564
+25528 62101
+25529 48909
+25530 71597
+25531 56446
+25532 56446
+25533 47665
+25534 31728
+25535 33989
+25536 42859
+25537 64863
+25538 59317
+25539 26262
+25540 18616
+25541 19954
+25542 41666
+25543 39193
+25544 30017
+25545 55135
+25546 58628
+25547 37579
+25548 37579
+25549 37579
+25550 28043
+25551 28475
+25552 42995
+25553 45737
+25554 50974
+25555 35522
+25556 35522
+25557 51068
+25558 73336
+25559 75172
+25560 49978
+25561 75678
+25562 76731
+25563 40877
+25564 73178
+25565 25618
+25566 62908
+25567 47665
+25568 26740
+25569 76702
+25570 19954
+25571 29881
+25572 18616
+25573 70644
+25574 80904
+25575 57800
+25576 32311
+25577 65893
+25578 6498
+25579 35331
+25580 60678
+25581 71941
+25582 39493
+25583 27798
+25584 24994
+25585 27348
+25586 29064
+25587 38533
+25588 75378
+25589 45311
+25590 7956
+25591 38546
+25592 22532
+25592 79880
+25593 78817
+25594 67598
+25595 26611
+25596 7645
+25597 29430
+25598 74219
+25599 50105
+25600 46834
+25601 25593
+25602 37432
+25603 60733
+25604 73363
+25605 74119
+25606 29483
+25607 62791
+25608 25603
+25609 25605
+25610 25603
+25611 71781
+25612 49746
+25613 46965
+25614 62681
+25615 37905
+25616 62679
+25617 30524
+25618 42747
+25619 23972
+25620 22254
+25621 10149
+25621 12570
+25622 62178
+25623 50321
+25624 20955
+25625 20921
+25626 77112
+25627 20955
+25628 64481
+25629 40813
+25630 64464
+25631 25902
+25632 52987
+25633 73104
+25634 53450
+25635 70786
+25636 50260
+25637 59594
+25638 24840
+25639 39326
+25639 66260
+25640 39326
+25641 58944
+25642 58944
+25643 43298
+25644 25678
+25645 67573
+25646 33662
+25647 49163
+25648 6926
+25649 66499
+25650 25094
+25651 36680
+25652 37655
+25653 3078
+25654 60589
+25655 67733
+25656 53607
+25657 20829
+25658 74464
+25659 70090
+25660 42691
+25661 43338
+25662 43342
+25663 7011
+25664 40275
+25665 40275
+25666 64307
+25667 28014
+25668 29329
+25669 74741
+25670 28663
+25671 70596
+25672 57134
+25673 67269
+25674 61363
+25675 57108
+25676 69189
+25677 75733
+25678 76945
+25679 47665
+25680 23911
+25681 22066
+25682 30670
+25683 60169
+25684 23938
+25685 12150
+25686 53347
+25687 21442
+25688 48509
+25689 26775
+25690 64592
+25691 52382
+25692 80111
+25693 42747
+25694 21080
+25695 28268
+25696 50125
+25697 78213
+25698 31185
+25699 35808
+25700 37847
+25701 52245
+25702 43952
+25703 24723
+25704 41424
+25705 59680
+25706 46966
+25707 53830
+25708 53729
+25709 20649
+25710 60462
+25711 34527
+25712 26769
+25713 22165
+25714 28162
+25715 54359
+25716 51553
+25717 69059
+25718 41054
+25719 73985
+25720 38066
+25721 30080
+25722 2911
+25723 44340
+25724 56793
+25725 31571
+25726 29954
+25727 52226
+25728 80028
+25729 64658
+25730 66727
+25731 79632
+25732 34972
+25733 66233
+25734 42593
+25735 76759
+25736 66956
+25737 36458
+25738 61686
+25739 30523
+25740 63473
+25741 63474
+25742 33755
+25743 25761
+25744 69506
+25745 45683
+25746 25745
+25747 72480
+25748 25756
+25749 45664
+25750 65885
+25751 60773
+25752 45665
+25753 61185
+25754 25753
+25755 68323
+25756 53810
+25757 51522
+25758 48959
+25759 77824
+25760 45664
+25761 20920
+25762 25741
+25763 24196
+25764 24196
+25765 7577
+25766 45957
+25767 39885
+25768 46936
+25769 26085
+25770 25634
+25771 4203
+25772 19954
+25773 23422
+25774 25773
+25775 68239
+25776 25775
+25777 53526
+25778 56098
+25778 57064
+25779 33086
+25780 29462
+25781 46345
+25782 26579
+25782 61302
+25783 46345
+25784 45198
+25784 47698
+25785 65861
+25786 49777
+25787 29240
+25788 13584
+25789 56111
+25790 47665
+25791 24216
+25792 73980
+25793 55563
+25794 52500
+25795 39180
+25796 35248
+25797 16404
+25798 821
+25799 25488
+25800 56022
+25801 55563
+25802 28014
+25803 13575
+25804 61421
+25805 28031
+25806 67874
+25807 6923
+25808 46257
+25809 77043
+25810 50020
+25811 69841
+25812 27202
+25813 45199
+25814 45198
+25815 44042
+25816 44046
+25817 29613
+25817 29616
+25818 48892
+25818 51409
+25819 50337
+25820 22820
+25820 57407
+25821 26689
+25822 30157
+25823 36126
+25824 39867
+25825 50657
+25826 60495
+25827 34188
+25827 50635
+25828 65904
+25829 27590
+25830 59912
+25831 75831
+25832 21811
+25833 20612
+25834 77698
+25835 39195
+25836 23292
+25837 52727
+25838 62194
+25839 37587
+25840 77324
+25841 64154
+25842 67334
+25843 53830
+25844 44044
+25845 17788
+25846 45665
+25847 49505
+25848 70264
+25849 51306
+25850 35623
+25851 39177
+25852 46882
+25853 44347
+25854 42999
+25854 53293
+25855 44315
+25856 42676
+25857 33401
+25858 11311
+25859 45759
+25860 32320
+25861 39177
+25862 80462
+25863 36970
+25864 71686
+25865 50345
+25866 59068
+25867 60489
+25868 73633
+25869 47339
+25870 61822
+25871 57408
+25872 59608
+25873 68759
+25874 53328
+25875 35323
+25876 20857
+25877 68759
+25878 24909
+25879 52849
+25880 24538
+25881 68818
+25882 29453
+25883 25882
+25884 22594
+25885 70919
+25886 25885
+25887 68239
+25888 65015
+25889 28503
+25890 32153
+25891 80159
+25892 25891
+25893 3704
+25894 31815
+25895 64636
+25896 65226
+25897 65258
+25898 69189
+25899 78830
+25900 80150
+25901 35605
+25902 72268
+25903 23933
+25904 58822
+25905 73125
+25906 15000
+25907 23066
+25908 27852
+25909 50591
+25910 33669
+25911 25119
+25912 62290
+25913 29816
+25914 65262
+25915 72246
+25916 27616
+25917 43871
+25918 27622
+25919 68817
+25920 38282
+25921 41276
+25922 62546
+25923 47717
+25924 24721
+25925 36891
+25926 26922
+25927 78999
+25928 28530
+25929 41583
+25930 49461
+25931 49459
+25932 44057
+25933 68130
+25934 68816
+25935 47802
+25936 17062
+25937 17396
+25938 37687
+25939 74170
+25940 76635
+25941 54966
+25942 19009
+25943 73163
+25944 61147
+25945 68576
+25946 29240
+25947 22519
+25948 44435
+25949 53729
+25950 2079
+25951 25306
+25952 3601
+25953 80860
+25954 73336
+25955 20239
+25956 50470
+25957 81077
+25958 51000
+25959 62011
+25960 78212
+25961 51797
+25962 33715
+25963 36754
+25964 24573
+25965 26861
+25966 26861
+25967 2178
+25968 37195
+25969 73330
+25970 68239
+25971 79697
+25972 27369
+25973 51343
+25974 64636
+25975 80048
+25976 25972
+25977 38742
+25978 43718
+25979 53216
+25980 37119
+25981 20408
+25982 49254
+25983 49255
+25984 22531
+25985 50198
+25986 60218
+25987 64091
+25988 53328
+25989 21002
+25990 70577
+25991 68548
+25992 27887
+25993 21830
+25994 25985
+25995 25988
+25996 36134
+25997 25988
+25998 30352
+25999 65881
+26000 66995
+26001 36245
+26002 80926
+26003 62978
+26004 27618
+26005 70579
+26006 61341
+26007 48627
+26008 44121
+26009 68857
+26010 75564
+26011 75564
+26012 1785
+26013 36942
+26014 60492
+26015 67573
+26016 75010
+26017 52120
+26018 52119
+26019 52120
+26020 67138
+26021 65562
+26022 32774
+26023 19636
+26024 45503
+26025 42747
+26026 52119
+26027 53539
+26028 29339
+26029 50974
+26030 12150
+26031 61228
+26032 54972
+26033 39421
+26034 72992
+26035 56453
+26036 22594
+26037 61228
+26038 69686
+26039 33637
+26040 33639
+26042 62356
+26043 32211
+26044 33086
+26045 37202
+26046 33137
+26047 54995
+26048 63143
+26049 73043
+26050 24607
+26051 47102
+26052 21074
+26053 64307
+26054 52961
+26055 29490
+26056 70265
+26057 23968
+26058 69834
+26059 55201
+26060 39898
+26061 79125
+26062 26357
+26063 48628
+26064 52999
+26065 70560
+26066 59248
+26067 64999
+26068 37794
+26069 75984
+26070 31506
+26071 23699
+26072 20611
+26073 55165
+26074 30795
+26075 59384
+26076 31009
+26077 31764
+26078 62841
+26079 37859
+26080 59388
+26081 40453
+26082 77107
+26083 74953
+26084 44423
+26085 66324
+26086 26101
+26087 81056
+26088 20691
+26089 47321
+26090 21403
+26091 64317
+26092 55166
+26093 36308
+26094 46344
+26095 68816
+26096 76447
+26097 79573
+26098 36308
+26099 60722
+26100 68818
+26101 52937
+26102 52917
+26103 20724
+26104 31609
+26105 20570
+26106 51784
+26107 53937
+26108 43745
+26109 11589
+26110 32920
+26111 52937
+26112 55223
+26113 55223
+26114 49178
+26115 52937
+26115 73152
+26116 39924
+26117 53450
+26118 61693
+26119 61694
+26120 52105
+26121 37006
+26122 26134
+26123 46911
+26124 68096
+26125 45790
+26126 26125
+26127 26125
+26128 26125
+26129 26125
+26130 31366
+26131 56898
+26132 60462
+26133 74981
+26134 56398
+26135 39924
+26136 75813
+26137 1663
+26138 55694
+26139 44469
+26140 79928
+26141 22517
+26142 26994
+26143 62011
+26144 21630
+26145 42881
+26146 21289
+26147 59242
+26148 58489
+26149 40212
+26150 62892
+26151 19954
+26152 18616
+26153 74808
+26154 71685
+26155 68557
+26156 29183
+26157 78968
+26158 55135
+26159 12150
+26160 3076
+26161 24498
+26162 2911
+26163 54621
+26164 31749
+26165 79153
+26166 43844
+26167 61357
+26168 22523
+26169 47665
+26170 57800
+26171 41666
+26172 80452
+26173 72605
+26174 41299
+26175 40012
+26176 41555
+26177 36942
+26178 44496
+26179 50105
+26180 47665
+26181 59505
+26182 77299
+26183 26157
+26184 26157
+26185 29329
+26186 60954
+26187 81400
+26188 22068
+26189 25119
+26190 3003
+26191 29961
+26192 20831
+26193 70090
+26194 68878
+26195 21074
+26196 8705
+26197 29240
+26198 72397
+26199 6241
+26200 71941
+26201 25614
+26202 22002
+26203 59389
+26204 51570
+26205 4842
+26206 60571
+26207 30352
+26208 62284
+26209 22635
+26209 36298
+26210 60142
+26211 50036
+26212 77286
+26213 22594
+26214 35907
+26215 28845
+26216 46154
+26217 60531
+26218 63653
+26219 26591
+26220 62174
+26221 25616
+26222 65632
+26223 47697
+26224 47698
+26225 47697
+26226 79125
+26227 37579
+26228 65124
+26229 28845
+26230 2474
+26231 37906
+26232 34206
+26233 69616
+26234 69841
+26235 63788
+26236 56972
+26237 30841
+26238 62018
+26239 14919
+26240 55563
+26241 27434
+26242 71973
+26243 61858
+26244 66827
+26245 71302
+26246 43405
+26247 76444
+26248 29755
+26249 68074
+26250 78307
+26251 56877
+26252 43407
+26253 35561
+26254 41808
+26255 30575
+26256 75338
+26257 37168
+26258 78365
+26259 29144
+26260 21440
+26261 52697
+26262 50036
+26263 55104
+26264 74168
+26265 48722
+26266 72351
+26267 39067
+26268 36242
+26269 36591
+26270 49777
+26271 20037
+26272 49152
+26273 37579
+26274 32949
+26275 65632
+26276 61936
+26277 21725
+26278 75351
+26279 75356
+26280 21926
+26281 40393
+26282 79024
+26283 29824
+26284 31087
+26285 37937
+26286 40989
+26287 39808
+26288 71685
+26289 13584
+26290 13582
+26291 2911
+26292 33086
+26293 34897
+26294 47722
+26295 48509
+26296 47802
+26297 80514
+26298 53315
+26299 58033
+26300 79125
+26301 31087
+26302 18616
+26303 39808
+26304 32082
+26305 48832
+26306 32036
+26307 56414
+26308 69686
+26309 33914
+26310 46500
+26311 35284
+26312 39463
+26313 30879
+26314 58009
+26315 79125
+26316 47796
+26317 33320
+26318 52588
+26319 52587
+26320 52589
+26321 21682
+26322 57183
+26323 28512
+26324 32524
+26325 32115
+26326 46075
+26327 73396
+26328 72514
+26329 56969
+26330 73396
+26331 72360
+26332 81074
+26333 40877
+26334 23626
+26335 24698
+26336 69059
+26337 74356
+26338 32735
+26339 48252
+26340 72032
+26341 40819
+26342 24490
+26343 48727
+26344 26152
+26345 26152
+26346 57526
+26347 65975
+26348 67996
+26349 27745
+26350 79125
+26351 28197
+26352 23591
+26353 57991
+26354 29641
+26355 49978
+26356 80452
+26357 30816
+26358 28225
+26359 32596
+26360 34369
+26361 34369
+26362 34750
+26363 35425
+26364 35424
+26365 35650
+26366 22519
+26367 38721
+26368 69302
+26369 28099
+26370 66685
+26371 46965
+26372 16312
+26373 42392
+26374 66080
+26375 45835
+26376 46363
+26377 46476
+26378 28173
+26379 2911
+26380 60462
+26381 47665
+26382 48657
+26383 40894
+26384 49091
+26385 51613
+26386 62296
+26387 19954
+26388 53584
+26389 58984
+26390 54433
+26391 54458
+26392 18616
+26393 26487
+26394 54716
+26395 54714
+26396 64370
+26397 54750
+26398 55196
+26399 56636
+26400 56963
+26401 44473
+26402 57175
+26403 58033
+26404 58576
+26405 58975
+26406 59107
+26407 34596
+26408 79025
+26409 77698
+26410 61094
+26411 33442
+26412 61961
+26413 63018
+26414 65609
+26415 65612
+26416 65620
+26417 67051
+26418 43844
+26419 62296
+26420 26817
+26421 47665
+26422 68236
+26423 66661
+26424 70018
+26425 72514
+26426 62296
+26427 72732
+26428 77362
+26429 73576
+26430 74670
+26431 75427
+26432 43240
+26433 27448
+26434 77923
+26435 12977
+26436 13470
+26437 79552
+26438 79550
+26439 20565
+26440 72360
+26441 2178
+26441 38673
+26442 27609
+26443 50646
+26444 76269
+26445 70044
+26446 40248
+26447 22691
+26448 46500
+26449 13471
+26450 26376
+26451 30517
+26452 54363
+26453 81017
+26454 16149
+26455 38066
+26456 22932
+26457 45472
+26458 80514
+26459 26591
+26460 62296
+26461 47351
+26462 69002
+26463 26792
+26464 29483
+26465 53328
+26466 40955
+26467 34940
+26468 69059
+26469 27705
+26470 35841
+26471 63392
+26472 78175
+26473 12978
+26474 17146
+26475 65240
+26476 50876
+26477 63437
+26478 2911
+26479 47163
+26480 66688
+26481 60746
+26482 23071
+26483 79646
+26484 37560
+26485 54385
+26486 19954
+26487 18616
+26488 68019
+26489 24504
+26490 70620
+26491 70620
+26492 37645
+26493 41666
+26494 2911
+26495 72345
+26496 28897
+26497 52143
+26498 47665
+26499 47665
+26500 47665
+26501 29602
+26502 67485
+26503 52396
+26504 72697
+26505 67116
+26506 23345
+26507 35522
+26508 73907
+26509 67928
+26510 67666
+26511 35561
+26512 51068
+26513 27303
+26514 71894
+26515 20731
+26516 66659
+26517 50069
+26518 46479
+26519 80319
+26520 17849
+26521 37138
+26522 42542
+26523 40015
+26524 39705
+26525 78149
+26526 45782
+26527 30578
+26528 40514
+26529 34669
+26530 70044
+26531 29716
+26532 43497
+26533 30691
+26534 39870
+26535 62658
+26536 25504
+26537 25493
+26538 43961
+26539 73432
+26540 39739
+26541 61147
+26542 58158
+26543 42542
+26544 58257
+26545 37541
+26545 64047
+26546 50721
+26547 42862
+26548 80542
+26549 36891
+26550 40807
+26551 43876
+26552 50036
+26553 30157
+26554 80943
+26555 29242
+26556 40847
+26557 30084
+26558 39656
+26559 52329
+26560 67471
+26561 23623
+26562 75988
+26563 77824
+26564 30157
+26565 43844
+26566 43842
+26567 59150
+26568 26569
+26569 39651
+26570 58708
+26570 58820
+26571 45193
+26572 42119
+26573 27877
+26574 54739
+26575 50863
+26576 42747
+26577 80514
+26578 19794
+26579 21404
+26580 53012
+26581 71823
+26582 80926
+26583 72988
+26584 4204
+26585 26579
+26586 35197
+26587 50036
+26588 47665
+26589 74876
+26590 57778
+26591 23004
+26592 56256
+26593 32327
+26594 32575
+26595 80209
+26596 56268
+26597 61147
+26598 26597
+26599 78003
+26600 49918
+26601 34712
+26602 53415
+26603 47665
+26604 76138
+26605 45674
+26606 59317
+26607 30740
+26608 38480
+26609 21375
+26610 36915
+26611 62296
+26612 42134
+26613 50038
+26614 21635
+26615 61086
+26616 33168
+26617 64307
+26618 36134
+26619 76167
+26620 34526
+26621 34114
+26622 2081
+26623 35911
+26624 23082
+26625 42609
+26626 79263
+26627 70491
+26628 17151
+26629 50797
+26630 62679
+26631 69833
+26632 77733
+26633 31927
+26634 30946
+26635 79254
+26636 22494
+26637 22208
+26638 60105
+26639 66260
+26640 26247
+26641 52971
+26642 79259
+26643 26617
+26644 8968
+26645 60105
+26646 26771
+26647 65281
+26648 39354
+26649 35661
+26650 25599
+26651 26611
+26652 26611
+26653 33945
+26654 59924
+26655 67968
+26656 67970
+26657 54522
+26658 23918
+26659 73578
+26660 69698
+26661 74773
+26662 47738
+26663 22188
+26664 23560
+26665 23282
+26666 71788
+26667 20724
+26668 48627
+26669 33143
+26670 49530
+26671 54104
+26672 29845
+26673 49396
+26674 58691
+26675 48074
+26676 37014
+26677 7567
+26678 52727
+26679 62255
+26680 24668
+26681 20924
+26682 49396
+26683 70152
+26684 61702
+26685 58690
+26686 44398
+26687 24759
+26688 43055
+26689 55220
+26690 41429
+26691 49777
+26692 2911
+26693 49777
+26694 31224
+26695 48727
+26696 37701
+26697 52839
+26698 61086
+26699 25016
+26700 43822
+26701 21372
+26702 24771
+26703 26649
+26704 6924
+26705 43590
+26706 71833
+26707 26307
+26708 26695
+26709 35400
+26710 34398
+26711 34399
+26712 37518
+26713 26715
+26714 38122
+26715 38927
+26716 26587
+26716 40981
+26717 55933
+26718 26695
+26719 28266
+26720 41555
+26721 32999
+26722 67019
+26723 60773
+26724 62328
+26725 26713
+26725 69643
+26726 63702
+26726 79267
+26727 66432
+26728 68522
+26729 72179
+26730 23856
+26731 45422
+26732 26121
+26733 37003
+26734 79001
+26735 48620
+26736 46479
+26737 48559
+26738 61702
+26739 37701
+26740 74119
+26741 55201
+26742 36802
+26743 56774
+26744 47665
+26745 37512
+26746 27777
+26747 30437
+26748 26695
+26749 18616
+26750 26487
+26751 62857
+26752 47665
+26753 59389
+26754 66672
+26755 76475
+26756 45676
+26757 61228
+26758 35241
+26759 42747
+26760 40292
+26761 78212
+26762 36928
+26763 26591
+26764 40292
+26765 26763
+26766 60202
+26767 81075
+26768 76791
+26769 73877
+26770 49372
+26771 74565
+26772 40719
+26773 44212
+26774 56187
+26775 36942
+26776 41314
+26777 23164
+26778 68266
+26779 62476
+26780 42859
+26781 77763
+26782 72452
+26783 48092
+26784 63984
+26785 77598
+26786 54419
+26787 30121
+26788 28455
+26789 77763
+26790 22529
+26791 34933
+26792 31981
+26793 21443
+26794 31224
+26795 31939
+26796 59394
+26797 71031
+26798 38901
+26799 54015
+26800 42747
+26801 80514
+26802 50646
+26803 79174
+26804 23626
+26805 24311
+26806 66629
+26807 37422
+26808 27234
+26809 30541
+26810 38480
+26811 32852
+26812 31008
+26813 2911
+26814 32530
+26815 34651
+26816 74780
+26817 74119
+26818 42747
+26819 39363
+26820 41256
+26821 42393
+26822 42567
+26823 23269
+26824 45696
+26825 45835
+26826 40500
+26827 31717
+26828 12968
+26829 52279
+26830 79766
+26831 79766
+26832 54750
+26833 59505
+26834 38328
+26835 21384
+26836 3076
+26837 58369
+26838 78698
+26839 79125
+26840 60826
+26841 32212
+26842 38167
+26843 47665
+26844 16923
+26845 63026
+26846 26475
+26847 24490
+26848 32689
+26849 68127
+26850 68127
+26851 68127
+26852 66688
+26853 52279
+26854 74119
+26855 29929
+26856 76586
+26857 76598
+26858 33954
+26859 34576
+26860 24604
+26861 2911
+26862 2178
+26863 61811
+26864 81294
+26865 59505
+26866 76269
+26867 42747
+26868 26780
+26869 49777
+26870 77831
+26871 77832
+26872 61147
+26873 68266
+26874 27746
+26875 81017
+26876 58576
+26877 11312
+26878 48674
+26879 59847
+26880 62245
+26881 40877
+26882 60202
+26883 26401
+26883 42969
+26884 5314
+26885 7577
+26886 80778
+26887 68380
+26888 76269
+26889 61874
+26890 48559
+26891 29940
+26892 47665
+26893 75471
+26894 24775
+26895 63721
+26896 36135
+26897 30687
+26898 43444
+26899 30784
+26900 7639
+26901 57152
+26902 41946
+26903 50036
+26904 49641
+26905 33367
+26906 66640
+26907 66260
+26908 80595
+26909 21375
+26910 33400
+26911 42480
+26912 26548
+26913 26952
+26914 68660
+26915 33579
+26916 26915
+26917 74789
+26918 74789
+26919 32689
+26920 70044
+26921 53926
+26922 37689
+26923 74527
+26924 41362
+26925 39421
+26926 63878
+26927 75004
+26928 79366
+26929 60422
+26930 74977
+26931 55265
+26932 55343
+26933 45745
+26934 26919
+26935 45745
+26936 55129
+26937 66576
+26938 50521
+26939 64696
+26940 36637
+26941 33581
+26942 60558
+26943 48576
+26944 63918
+26945 67573
+26946 75958
+26947 26941
+26948 79489
+26949 72446
+26950 72446
+26951 48559
+26952 72268
+26953 33173
+26954 79002
+26955 37578
+26956 78457
+26957 48305
+26958 65226
+26959 65250
+26960 77095
+26961 80223
+26962 47722
+26963 28240
+26964 80926
+26965 48578
+26966 69124
+26967 52119
+26968 69146
+26969 16588
+26970 69189
+26971 32311
+26972 71111
+26973 80023
+26974 75091
+26975 49606
+26976 80562
+26977 26760
+26978 58835
+26979 46714
+26980 52171
+26981 54059
+26982 12973
+26983 71111
+26984 71114
+26985 64970
+26986 27471
+26987 1785
+26988 63026
+26989 22468
+26990 51894
+26991 70264
+26992 76791
+26993 15855
+26994 64215
+26995 35728
+26996 46714
+26997 46882
+26998 46882
+26999 57526
+27000 57526
+27001 44315
+27002 27021
+27003 57526
+27004 68728
+27005 33581
+27006 64215
+27007 33660
+27008 56748
+27009 23377
+27010 24504
+27011 34398
+27012 34570
+27013 46682
+27014 79248
+27015 53182
+27016 53784
+27017 53802
+27018 43330
+27019 76088
+27020 64317
+27021 60465
+27022 62494
+27023 66867
+27024 78208
+27025 55037
+27026 75627
+27026 79267
+27027 46639
+27028 79673
+27029 80020
+27030 49777
+27031 40711
+27032 36304
+27033 36854
+27034 27005
+27035 54609
+27036 50575
+27037 80112
+27038 53055
+27039 23772
+27040 26861
+27041 61932
+27042 66403
+27043 23304
+27044 849
+27045 37428
+27046 72179
+27047 60424
+27048 40585
+27049 68878
+27050 21598
+27051 56562
+27052 25624
+27053 30774
+27054 73036
+27055 75627
+27056 34140
+27057 37579
+27058 37579
+27059 79003
+27060 63246
+27061 40888
+27062 62386
+27063 47414
+27063 78720
+27064 33891
+27065 40656
+27066 79702
+27067 73591
+27068 58167
+27069 35144
+27070 28728
+27071 57637
+27072 67606
+27073 41070
+27074 41501
+27075 21441
+27076 33556
+27077 35805
+27078 50863
+27079 31185
+27080 43844
+27081 55598
+27082 2411
+27083 80016
+27084 14920
+27085 26671
+27086 3503
+27087 51654
+27088 72114
+27089 65979
+27090 55132
+27091 61902
+27092 53026
+27093 24840
+27094 24840
+27095 15963
+27096 67514
+27097 68972
+27098 20341
+27099 48091
+27100 35543
+27101 31328
+27102 1787
+27103 53889
+27104 40846
+27104 57035
+27105 28975
+27106 26549
+27107 29676
+27108 30461
+27109 70867
+27110 58216
+27111 21604
+27112 46290
+27113 65299
+27114 23918
+27115 25169
+27116 25162
+27116 70003
+27117 45878
+27118 41054
+27119 21630
+27119 79631
+27120 49777
+27121 21603
+27122 50863
+27123 27126
+27124 68015
+27125 27114
+27126 27104
+27127 40004
+27128 74565
+27129 27104
+27130 70561
+27131 56718
+27132 41366
+27133 78834
+27134 46965
+27135 29123
+27136 2437
+27137 40535
+27138 71096
+27139 77057
+27140 74058
+27141 74058
+27142 69841
+27143 27141
+27144 50585
+27145 23917
+27146 61345
+27147 75508
+27148 27138
+27149 71096
+27150 25745
+27151 18616
+27152 69351
+27153 27138
+27154 71096
+27155 33476
+27156 22528
+27157 19794
+27158 79003
+27159 59444
+27160 21380
+27161 23625
+27162 30568
+27163 71833
+27164 3923
+27165 22521
+27166 74051
+27167 22529
+27168 22529
+27169 72179
+27170 71676
+27171 59382
+27172 61157
+27173 32617
+27174 29553
+27175 80159
+27176 42118
+27177 71941
+27178 38648
+27179 22691
+27180 46966
+27181 77831
+27182 68857
+27183 68857
+27184 54368
+27185 47121
+27186 64307
+27187 54089
+27188 18616
+27189 63153
+27190 60773
+27191 42266
+27192 73907
+27193 52436
+27194 31608
+27195 70750
+27196 44120
+27197 63931
+27198 56456
+27199 56921
+27200 26883
+27200 50943
+27201 29120
+27202 64537
+27203 64025
+27204 64025
+27205 41116
+27206 69287
+27207 38408
+27208 20724
+27209 20724
+27210 68196
+27211 24504
+27212 41169
+27213 25329
+27214 50864
+27215 66803
+27216 39807
+27217 66991
+27218 41272
+27219 34516
+27220 78661
+27221 34705
+27222 70265
+27223 46902
+27224 43882
+27225 10789
+27226 55449
+27227 74490
+27228 21405
+27229 39732
+27230 39733
+27231 73939
+27232 20703
+27233 20702
+27234 27202
+27235 64440
+27236 54359
+27237 44044
+27238 54712
+27239 78688
+27240 46521
+27241 59786
+27242 70063
+27243 70264
+27244 65762
+27245 59180
+27246 58158
+27247 64283
+27248 14766
+27249 72133
+27250 76953
+27251 56207
+27252 37737
+27253 37542
+27254 49832
+27255 21511
+27256 49660
+27257 64795
+27258 21220
+27259 76067
+27260 22240
+27261 67465
+27262 38169
+27263 43087
+27264 53909
+27265 29767
+27266 50205
+27267 76879
+27268 26769
+27269 29027
+27270 78393
+27271 71218
+27272 73481
+27273 36942
+27274 51822
+27275 34072
+27276 34590
+27277 34940
+27278 54732
+27279 54732
+27280 32108
+27281 73665
+27282 50943
+27283 47665
+27284 47666
+27285 68239
+27286 56022
+27287 68508
+27288 27410
+27289 27411
+27290 27410
+27291 39180
+27292 39180
+27293 60709
+27294 52307
+27295 36569
+27296 50270
+27297 68741
+27298 78364
+27299 76361
+27300 37038
+27301 40629
+27302 38516
+27303 37721
+27304 20792
+27305 20792
+27306 34807
+27307 64033
+27308 38774
+27309 4040
+27310 56022
+27311 50634
+27312 64233
+27313 42816
+27314 68239
+27315 21111
+27316 76955
+27317 47698
+27318 72482
+27319 30081
+27320 65885
+27321 36044
+27322 34290
+27323 71973
+27324 62438
+27325 80773
+27326 60841
+27327 19955
+27328 33167
+27329 27747
+27330 31927
+27331 20625
+27332 48734
+27333 54468
+27334 60495
+27335 74464
+27336 39730
+27337 52382
+27338 62811
+27339 64117
+27340 38108
+27341 52143
+27342 80599
+27343 38633
+27344 26100
+27345 20724
+27346 26101
+27347 43940
+27348 79003
+27349 33639
+27350 79003
+27351 25372
+27352 18616
+27353 66023
+27354 25985
+27355 20724
+27356 32410
+27357 66022
+27358 45739
+27359 7639
+27360 59142
+27361 28105
+27362 29241
+27363 38539
+27364 57445
+27365 60464
+27366 38066
+27367 54360
+27368 62289
+27369 41066
+27370 60462
+27371 27428
+27372 10248
+27373 29571
+27374 68693
+27375 42266
+27376 74093
+27377 59228
+27378 41663
+27379 27802
+27380 53126
+27381 62680
+27382 42266
+27383 65013
+27384 62296
+27385 43844
+27386 63255
+27387 36261
+27388 24465
+27388 26140
+27389 57881
+27390 27389
+27391 40498
+27392 43013
+27393 41054
+27394 25515
+27395 32311
+27396 79125
+27397 53068
+27398 42291
+27399 28044
+27400 42553
+27401 79242
+27402 39634
+27403 39348
+27404 51172
+27405 24410
+27406 46416
+27407 51984
+27408 70636
+27409 56659
+27410 40991
+27411 53125
+27412 40921
+27413 33275
+27414 61685
+27415 79113
+27416 51181
+27417 30650
+27418 48750
+27419 42748
+27420 23418
+27421 29301
+27422 32880
+27423 68508
+27424 27410
+27425 39811
+27426 39363
+27427 59480
+27428 62423
+27429 61228
+27430 33007
+27431 66956
+27432 70264
+27433 21155
+27434 67889
+27435 27434
+27436 22519
+27437 51699
+27438 73346
+27439 43645
+27440 23345
+27441 45117
+27442 75935
+27443 36208
+27444 73877
+27445 24930
+27446 23345
+27447 37446
+27448 57637
+27449 81061
+27450 29873
+27451 73830
+27452 36295
+27453 3601
+27454 79125
+27455 59505
+27456 44121
+27457 24604
+27458 62441
+27459 79003
+27460 33165
+27461 37578
+27462 33639
+27463 1785
+27464 1785
+27465 33637
+27466 37446
+27466 52536
+27467 34932
+27468 60492
+27469 47121
+27470 53738
+27471 44055
+27472 76255
+27473 62442
+27474 28241
+27475 44065
+27476 33336
+27477 27475
+27478 68878
+27479 70219
+27480 72133
+27481 34018
+27482 47624
+27483 57517
+27484 21379
+27485 33637
+27486 32977
+27487 33639
+27488 62514
+27489 66003
+27490 2911
+27491 23285
+27492 69188
+27493 32977
+27494 26769
+27495 25376
+27496 28914
+27497 29008
+27498 32081
+27499 54622
+27500 48657
+27501 51612
+27502 54302
+27503 54302
+27504 46269
+27505 58826
+27506 62473
+27507 69188
+27508 25524
+27509 77935
+27510 81025
+27511 43534
+27512 77961
+27513 62476
+27514 33632
+27515 39790
+27516 72614
+27517 27516
+27518 54941
+27519 67270
+27520 19954
+27521 11257
+27522 11311
+27523 2299
+27524 11257
+27524 64017
+27525 37727
+27526 11311
+27526 53830
+27527 30957
+27528 54832
+27529 80070
+27530 2178
+27531 66412
+27531 74490
+27532 36906
+27533 16770
+27534 64668
+27535 67606
+27536 36591
+27537 73446
+27538 66412
+27538 73900
+27539 38516
+27540 81025
+27541 24723
+27542 2911
+27543 64307
+27544 76742
+27545 50841
+27546 23516
+27547 57791
+27548 78831
+27549 53573
+27550 78831
+27551 50569
+27552 27616
+27553 21169
+27554 64979
+27555 20428
+27556 35187
+27557 41666
+27558 41666
+27559 16770
+27560 64668
+27561 74490
+27562 49622
+27563 62908
+27564 68262
+27565 48780
+27566 27565
+27567 57346
+27568 24245
+27569 29495
+27570 47916
+27571 39290
+27572 32311
+27573 77527
+27574 57811
+27575 67606
+27576 57833
+27577 50263
+27578 78756
+27579 57782
+27580 73539
+27581 5191
+27582 57795
+27583 38395
+27584 57873
+27585 59178
+27586 77824
+27587 57833
+27588 46347
+27589 49785
+27590 26080
+27591 23102
+27592 76093
+27593 33891
+27594 33575
+27595 41666
+27596 28104
+27597 24728
+27598 35628
+27599 37615
+27600 35627
+27601 27725
+27602 53225
+27603 33575
+27604 60887
+27605 33575
+27606 27594
+27607 77111
+27608 80860
+27609 27608
+27610 42049
+27611 30400
+27612 67701
+27613 32347
+27614 44373
+27615 72946
+27616 74044
+27617 33505
+27618 73724
+27619 53131
+27620 79700
+27621 59123
+27622 37906
+27623 35187
+27624 27615
+27625 57372
+27626 43213
+27627 11482
+27628 42203
+27629 38633
+27630 57920
+27631 53315
+27632 29123
+27633 45248
+27634 45696
+27635 75359
+27636 65935
+27637 33949
+27638 80545
+27639 36208
+27640 69294
+27641 55363
+27642 24718
+27643 42747
+27644 29980
+27645 55897
+27646 23345
+27647 25052
+27648 30488
+27649 23380
+27650 59317
+27651 66827
+27652 19961
+27653 78208
+27653 80781
+27654 37883
+27655 63068
+27656 79638
+27657 61086
+27658 30732
+27659 79198
+27660 32560
+27661 32567
+27662 73754
+27663 35197
+27664 47406
+27665 58543
+27666 18616
+27667 19954
+27668 18616
+27669 41161
+27670 44130
+27671 36855
+27672 27669
+27673 27669
+27674 27672
+27675 27672
+27676 27672
+27677 52105
+27678 27672
+27679 24551
+27680 33637
+27681 74743
+27682 38277
+27683 51654
+27684 67071
+27685 68508
+27686 66324
+27687 50379
+27688 25127
+27689 26920
+27690 35172
+27691 43718
+27692 39191
+27693 65117
+27694 47665
+27695 27679
+27696 43019
+27697 50263
+27698 37268
+27699 38995
+27700 46965
+27701 20661
+27702 31711
+27703 60735
+27704 30520
+27705 50447
+27706 50036
+27707 36855
+27708 22002
+27709 70342
+27710 68882
+27711 36415
+27712 35879
+27713 68882
+27714 40331
+27715 18211
+27716 69136
+27717 23543
+27718 27006
+27719 49699
+27720 66399
+27721 16599
+27722 18616
+27723 37720
+27724 32386
+27725 41158
+27726 22312
+27727 65020
+27728 19636
+27729 43893
+27730 55104
+27731 23285
+27732 43000
+27733 75003
+27734 55110
+27735 36637
+27736 27711
+27737 73768
+27738 73769
+27739 27591
+27740 37545
+27741 49684
+27742 25014
+27743 43565
+27744 68266
+27745 61147
+27746 74356
+27747 27021
+27748 47546
+27749 29471
+27750 38516
+27751 49436
+27752 35523
+27753 78806
+27754 62623
+27755 23380
+27756 74786
+27757 74777
+27758 20956
+27759 21528
+27760 66484
+27761 64241
+27762 20255
+27763 39030
+27764 36942
+27765 20956
+27766 36942
+27767 67574
+27768 67835
+27769 59151
+27770 36460
+27771 26673
+27772 44193
+27773 60169
+27774 52921
+27775 46525
+27776 22370
+27777 22525
+27777 78754
+27778 46745
+27779 22371
+27780 73486
+27781 58447
+27782 39525
+27783 78430
+27784 20721
+27785 64033
+27786 69841
+27787 60357
+27788 51806
+27789 73591
+27790 52912
+27791 34729
+27792 69285
+27793 37002
+27794 37956
+27795 63477
+27796 75820
+27797 38830
+27798 21700
+27799 54359
+27800 54611
+27801 56392
+27802 81177
+27803 62289
+27804 64033
+27805 27803
+27805 66827
+27806 67621
+27807 79125
+27808 40275
+27809 62053
+27810 70098
+27811 67586
+27812 19954
+27813 60773
+27814 34940
+27815 41595
+27816 35406
+27817 28249
+27817 30305
+27818 45683
+27819 30740
+27820 16713
+27821 77670
+27822 43405
+27823 34984
+27824 51498
+27825 34705
+27826 46834
+27827 54859
+27828 28249
+27829 54858
+27830 70265
+27831 54770
+27832 45766
+27833 2911
+27834 17442
+27835 57918
+27836 60491
+27837 79981
+27838 45198
+27839 23938
+27839 80778
+27840 33581
+27841 31404
+27842 33468
+27843 73907
+27844 29483
+27845 74490
+27846 36617
+27847 53228
+27848 78457
+27849 69270
+27850 36033
+27851 27852
+27851 32380
+27852 29484
+27853 27844
+27854 31404
+27855 32566
+27856 14917
+27857 47273
+27858 66840
+27859 60677
+27860 26249
+27861 50198
+27862 59619
+27863 29760
+27864 27104
+27865 63096
+27866 49967
+27867 70336
+27868 78212
+27869 27345
+27870 27624
+27871 68149
+27872 60981
+27873 23410
+27874 44406
+27875 30412
+27876 68149
+27877 52974
+27878 50263
+27879 61686
+27880 33560
+27881 52532
+27882 39525
+27883 50263
+27884 47385
+27885 62932
+27886 39177
+27887 64117
+27888 16029
+27889 79697
+27890 71823
+27891 27623
+27892 68262
+27893 27411
+27894 27290
+27895 27412
+27896 43152
+27897 28356
+27898 26664
+27899 33505
+27900 35503
+27901 47738
+27902 68449
+27903 41752
+27904 46686
+27905 28105
+27906 41666
+27907 61961
+27908 43390
+27909 76325
+27910 2911
+27911 74119
+27912 81305
+27913 33940
+27914 27773
+27915 29123
+27916 26493
+27917 54281
+27918 39100
+27919 80514
+27920 27718
+27921 80778
+27922 40571
+27923 8968
+27924 62310
+27925 62310
+27926 59317
+27927 76684
+27928 11482
+27929 11490
+27930 23457
+27931 25383
+27932 70075
+27933 42924
+27934 70076
+27935 25542
+27936 70107
+27937 44322
+27937 65446
+27938 47134
+27939 50418
+27940 41828
+27941 51188
+27942 30215
+27943 24250
+27944 38721
+27945 38721
+27946 60584
+27947 55526
+27948 70375
+27949 23282
+27950 27952
+27950 51105
+27951 55240
+27952 32909
+27953 55154
+27954 75539
+27955 32955
+27956 73935
+27957 41054
+27958 41054
+27959 30523
+27960 36922
+27961 46377
+27962 67856
+27963 36173
+27963 36619
+27964 23357
+27965 70494
+27966 42120
+27967 26506
+27968 51932
+27969 38092
+27970 41054
+27971 35144
+27972 35145
+27973 35144
+27974 35145
+27975 72491
+27976 36265
+27977 66070
+27978 53055
+27979 70219
+27980 33891
+27981 59669
+27982 30881
+27983 23219
+27984 71906
+27985 41295
+27986 36039
+27987 58222
+27988 28528
+27989 80904
+27990 20689
+27991 7577
+27992 20792
+27993 46792
+27994 32661
+27994 77706
+27995 30774
+27995 46811
+27996 46810
+27997 20794
+27997 38901
+27998 20794
+27998 38901
+27999 22798
+28000 73445
+28001 23516
+28002 78831
+28003 29071
+28004 28005
+28005 66801
+28006 55220
+28007 62612
+28008 55208
+28009 72162
+28010 29707
+28011 57173
+28012 30026
+28013 67168
+28014 33949
+28015 69032
+28016 63931
+28017 61933
+28018 22525
+28019 26259
+28020 26203
+28021 55307
+28022 54662
+28023 62567
+28024 43565
+28025 77669
+28026 4755
+28027 54804
+28028 54804
+28029 79784
+28030 79784
+28031 31678
+28032 2911
+28033 47407
+28034 28036
+28035 31903
+28036 7577
+28037 28036
+28038 28032
+28039 71897
+28040 60150
+28041 46220
+28042 54959
+28043 71973
+28044 71973
+28045 27522
+28046 49527
+28047 51570
+28048 31608
+28049 43586
+28050 61147
+28051 29660
+28052 69331
+28053 58158
+28054 43884
+28055 41521
+28056 46682
+28057 4830
+28058 64501
+28059 64551
+28060 21746
+28061 29601
+28062 25399
+28063 43622
+28064 27679
+28065 27679
+28066 28320
+28067 28614
+28068 34848
+28069 68846
+28070 48899
+28071 51833
+28072 52604
+28073 33442
+28074 65612
+28075 15690
+28076 43844
+28077 62296
+28078 28077
+28079 68508
+28080 44167
+28081 71696
+28082 66968
+28083 74219
+28084 76176
+28085 77669
+28086 65781
+28087 81181
+28088 68380
+28089 67778
+28090 54025
+28091 15473
+28092 39067
+28093 72248
+28094 23069
+28095 49876
+28096 81404
+28097 21811
+28097 62308
+28098 25399
+28099 50036
+28100 55104
+28101 57703
+28102 49777
+28103 43107
+28104 27345
+28105 49441
+28106 76906
+28107 39421
+28108 32560
+28109 36593
+28110 46688
+28111 33621
+28112 66421
+28113 59223
+28114 13467
+28115 46703
+28116 17373
+28117 42118
+28118 12458
+28119 19954
+28120 64066
+28121 35144
+28122 35145
+28123 35160
+28124 23908
+28125 33273
+28126 56164
+28127 20920
+28128 2911
+28129 79125
+28130 58274
+28131 50569
+28132 45374
+28133 68727
+28134 41327
+28135 34590
+28136 37579
+28137 1935
+28138 55132
+28139 58472
+28140 30866
+28141 33630
+28142 50043
+28143 44291
+28144 43344
+28145 36942
+28146 44253
+28147 61384
+28148 23516
+28149 30084
+28150 75257
+28151 41736
+28152 62784
+28153 29660
+28154 79003
+28155 33639
+28156 69189
+28157 27987
+28158 75378
+28159 69351
+28160 22468
+28161 28011
+28162 41424
+28163 37778
+28164 2911
+28165 60344
+28166 43783
+28167 41054
+28168 68548
+28169 56792
+28170 52460
+28171 27773
+28172 2911
+28173 2911
+28174 43703
+28175 43658
+28176 47665
+28177 30316
+28178 60105
+28179 26754
+28180 72729
+28181 68130
+28182 23623
+28183 60000
+28184 60289
+28185 43827
+28186 62245
+28187 35501
+28188 36340
+28189 42984
+28190 52460
+28191 70988
+28192 2728
+28193 49441
+28194 58033
+28195 29641
+28196 31971
+28197 74187
+28198 7577
+28199 43703
+28200 60344
+28201 37579
+28202 43565
+28203 28433
+28204 33086
+28205 43420
+28206 55372
+28207 63403
+28208 36942
+28209 71823
+28210 10250
+28211 23683
+28212 43882
+28213 55104
+28214 24839
+28215 80150
+28216 38721
+28217 34787
+28218 77702
+28219 50105
+28220 36300
+28221 55731
+28222 50105
+28223 55727
+28224 33194
+28225 80860
+28226 58616
+28227 36302
+28228 29660
+28229 48470
+28230 27638
+28231 47665
+28232 25356
+28233 70578
+28234 77713
+28235 47665
+28236 22387
+28237 79992
+28238 54972
+28239 34812
+28240 33728
+28241 33581
+28242 34808
+28243 28529
+28244 44315
+28245 76088
+28246 28249
+28247 32209
+28248 33581
+28249 23560
+28250 52862
+28251 68540
+28252 70264
+28253 20725
+28254 20714
+28255 59917
+28256 25488
+28257 72946
+28258 39399
+28259 60464
+28260 57833
+28261 73907
+28262 33457
+28263 28257
+28264 26493
+28265 42393
+28266 78776
+28267 13073
+28268 64118
+28269 80135
+28270 61877
+28271 39069
+28272 39069
+28273 48742
+28274 70478
+28275 41921
+28276 11589
+28277 54285
+28278 32231
+28279 37883
+28280 52132
+28281 30017
+28282 28379
+28283 26760
+28284 58835
+28285 50585
+28286 3601
+28287 36223
+28288 62207
+28289 68882
+28290 54715
+28291 80935
+28292 30378
+28293 22519
+28294 33337
+28295 66688
+28296 32524
+28297 62567
+28298 62533
+28299 69132
+28300 62546
+28301 80935
+28302 22663
+28303 31815
+28304 81025
+28305 77033
+28306 56207
+28307 60582
+28308 36458
+28309 48091
+28310 48682
+28311 20692
+28312 37211
+28313 26920
+28314 27009
+28314 79004
+28315 72243
+28316 49777
+28317 26730
+28318 77693
+28319 69030
+28320 29989
+28321 17386
+28322 63506
+28323 49991
+28324 62255
+28325 28281
+28325 81306
+28326 11256
+28326 30017
+28327 35482
+28328 35483
+28329 23285
+28330 30161
+28331 23295
+28332 32177
+28333 75804
+28334 21443
+28335 25545
+28336 64522
+28337 28334
+28338 21440
+28339 30014
+28340 15965
+28341 39625
+28342 25014
+28343 25529
+28344 26954
+28345 76669
+28346 22601
+28347 39230
+28348 50036
+28349 45311
+28350 55154
+28351 78826
+28352 55154
+28353 50848
+28354 65420
+28355 23716
+28356 27679
+28357 67806
+28358 21418
+28359 44315
+28360 38030
+28361 7577
+28362 30688
+28363 20724
+28364 59911
+28365 56457
+28366 34553
+28367 27515
+28368 70366
+28369 60531
+28370 62541
+28371 48576
+28372 67606
+28373 48092
+28374 49629
+28375 74773
+28376 70677
+28377 54539
+28378 25488
+28379 38571
+28380 33660
+28381 25488
+28382 47202
+28383 33637
+28384 43273
+28385 36325
+28386 6925
+28387 79473
+28388 33327
+28389 24674
+28390 48003
+28391 71407
+28392 71408
+28393 71408
+28394 62298
+28395 25257
+28396 41054
+28397 42049
+28398 23185
+28399 39193
+28400 22537
+28401 66233
+28402 30735
+28403 49605
+28404 52912
+28405 74119
+28406 80306
+28407 47665
+28408 32206
+28409 33194
+28410 80023
+28411 49456
+28412 49163
+28413 38869
+28414 37169
+28415 74119
+28416 32955
+28417 45757
+28418 45746
+28419 59394
+28420 58838
+28421 63975
+28422 55132
+28423 76953
+28424 27316
+28425 76067
+28426 21673
+28427 21672
+28428 41595
+28429 55077
+28430 63083
+28431 33895
+28432 73336
+28433 7577
+28434 10845
+28435 55888
+28436 43839
+28437 33169
+28438 30461
+28438 45971
+28439 31927
+28440 31024
+28441 19954
+28442 62305
+28443 65420
+28444 68040
+28445 70375
+28446 29575
+28447 59970
+28448 48957
+28449 50036
+28450 26591
+28451 35770
+28452 24504
+28453 3605
+28454 21934
+28455 22988
+28456 47415
+28457 30520
+28458 59814
+28459 40680
+28460 40680
+28461 76879
+28462 2911
+28463 2911
+28464 47665
+28465 31835
+28466 70548
+28467 78121
+28468 2728
+28469 65226
+28470 33619
+28471 74071
+28472 44193
+28473 35595
+28474 72449
+28475 37579
+28476 38082
+28477 48095
+28478 30084
+28479 77335
+28480 18608
+28481 49918
+28482 30520
+28483 42120
+28484 20955
+28485 46965
+28486 28410
+28487 54791
+28488 64533
+28489 76824
+28490 33306
+28491 29378
+28491 38943
+28492 77244
+28492 78582
+28493 41360
+28494 77073
+28495 77197
+28496 60678
+28497 73551
+28498 75779
+28499 76341
+28500 78830
+28501 37301
+28502 25384
+28503 80860
+28504 2911
+28505 48265
+28506 2911
+28507 2911
+28508 50863
+28509 12751
+28510 47665
+28511 2911
+28512 70409
+28513 79024
+28514 42747
+28515 22468
+28516 22468
+28517 47071
+28518 19066
+28519 2684
+28520 25127
+28521 50225
+28522 53225
+28523 2911
+28524 76586
+28525 67973
+28526 4449
+28527 23772
+28528 40001
+28529 32666
+28530 69302
+28531 28536
+28532 33194
+28533 21524
+28534 20901
+28535 61086
+28536 40000
+28537 21037
+28538 21405
+28539 29475
+28540 32424
+28541 42775
+28542 36238
+28543 36631
+28544 31493
+28545 57941
+28546 40799
+28547 49719
+28548 50232
+28549 52726
+28550 29542
+28551 24794
+28552 53964
+28553 57923
+28554 61086
+28555 66431
+28556 45808
+28557 74251
+28558 77299
+28559 27421
+28560 32917
+28561 27421
+28562 40004
+28563 27263
+28564 52119
+28565 38574
+28566 78614
+28567 56098
+28568 41158
+28569 30842
+28570 69032
+28571 65015
+28572 52787
+28573 79438
+28574 11311
+28575 6958
+28576 48445
+28577 49777
+28578 76791
+28579 32890
+28580 43420
+28581 55182
+28582 20921
+28583 80902
+28584 53526
+28585 48832
+28586 43745
+28586 44212
+28586 55618
+28587 51408
+28588 10541
+28589 55449
+28590 53312
+28591 70974
+28592 2911
+28593 71047
+28594 51654
+28595 81016
+28596 70264
+28597 70409
+28598 1592
+28599 28529
+28600 40686
+28601 47167
+28602 73446
+28603 33068
+28604 79077
+28605 72614
+28606 67523
+28607 51069
+28608 24994
+28609 60464
+28610 47932
+28611 23457
+28612 28607
+28613 80040
+28614 35741
+28614 43000
+28615 32567
+28616 26229
+28617 37578
+28618 75011
+28619 47665
+28620 28646
+28621 47665
+28622 77860
+28623 77861
+28624 22521
+28625 31998
+28626 68266
+28627 61147
+28628 46547
+28629 52677
+28630 74786
+28631 2911
+28632 33505
+28633 61147
+28634 42747
+28635 2911
+28636 59317
+28637 59317
+28638 59317
+28639 59317
+28640 59321
+28641 79125
+28642 79125
+28643 56721
+28644 73405
+28645 78673
+28646 52753
+28647 12078
+28648 26228
+28649 60105
+28650 79552
+28651 39193
+28652 80668
+28653 80669
+28654 29123
+28655 80514
+28656 47665
+28657 29602
+28658 73575
+28659 75493
+28660 55182
+28661 27021
+28662 41424
+28663 74805
+28664 62304
+28665 24490
+28666 40255
+28667 36942
+28668 23560
+28669 41666
+28670 41666
+28671 61996
+28672 79438
+28673 61164
+28674 47665
+28675 18616
+28676 48092
+28677 73432
+28678 48305
+28679 74488
+28680 68381
+28681 7083
+28682 46345
+28683 21701
+28684 73397
+28684 78789
+28685 67806
+28686 44212
+28687 68498
+28688 45459
+28689 62571
+28690 78196
+28691 31745
+28692 54714
+28693 64709
+28694 20854
+28695 25904
+28696 71941
+28697 20955
+28698 46465
+28699 12977
+28700 47167
+28701 70597
+28702 28380
+28703 43917
+28704 54697
+28705 53126
+28706 33505
+28707 64025
+28708 39372
+28709 33206
+28710 60603
+28711 67868
+28712 67365
+28713 70443
+28714 33306
+28715 29255
+28716 72248
+28717 33143
+28718 67365
+28719 32977
+28720 29660
+28721 29378
+28722 41360
+28723 29030
+28724 44062
+28725 75733
+28726 72625
+28727 70374
+28728 35145
+28729 35144
+28730 22445
+28731 61835
+28732 60079
+28733 60073
+28734 60073
+28735 60073
+28736 18616
+28737 3503
+28738 14766
+28739 32977
+28740 48576
+28741 32977
+28742 66867
+28743 29379
+28744 56775
+28745 53200
+28746 43882
+28747 21232
+28748 32976
+28749 48628
+28750 56069
+28751 56071
+28752 19954
+28753 80855
+28754 29638
+28755 80858
+28756 29638
+28757 75546
+28758 33306
+28759 67606
+28760 53182
+28761 75594
+28762 75596
+28763 32977
+28764 65449
+28765 17637
+28766 67203
+28767 57588
+28768 72983
+28769 22468
+28770 28769
+28771 73571
+28772 43828
+28773 28206
+28774 24231
+28775 79632
+28776 69132
+28777 41553
+28778 52245
+28779 53888
+28780 12973
+28781 35197
+28782 75151
+28783 52245
+28784 47628
+28785 40585
+28786 59385
+28787 46345
+28788 73315
+28789 37750
+28790 74181
+28791 80815
+28792 19999
+28793 59912
+28794 66331
+28795 64499
+28796 23938
+28797 77477
+28798 29794
+28799 29064
+28800 60570
+28801 67100
+28802 60570
+28803 77103
+28804 14919
+28805 55563
+28806 28808
+28807 74272
+28808 61858
+28809 28808
+28810 62809
+28811 34038
+28812 50140
+28813 23871
+28814 27705
+28815 49930
+28816 66827
+28817 9399
+28818 9399
+28819 9399
+28820 66827
+28821 41106
+28822 77312
+28823 28816
+28824 40379
+28825 38635
+28826 21811
+28827 21022
+28828 50477
+28829 38467
+28830 31835
+28831 60408
+28832 32458
+28833 75533
+28834 11482
+28835 75804
+28836 65067
+28837 60130
+28838 55910
+28839 30843
+28840 30461
+28841 35383
+28842 2911
+28843 60785
+28844 37579
+28845 24551
+28846 65781
+28847 31185
+28848 20679
+28849 18616
+28850 79125
+28851 25383
+28852 45738
+28853 18616
+28854 27348
+28855 62053
+28856 59317
+28857 23591
+28858 23071
+28859 47665
+28860 24484
+28861 58860
+28862 59317
+28863 48289
+28864 48288
+28865 74262
+28866 42747
+28867 70219
+28868 30784
+28869 47019
+28870 49534
+28871 79646
+28871 79701
+28872 59814
+28873 72132
+28874 76314
+28875 55563
+28876 33086
+28877 25882
+28878 55220
+28879 26044
+28879 29427
+28880 29453
+28881 68239
+28882 48828
+28883 48887
+28884 26579
+28884 49004
+28885 28875
+28885 32035
+28886 68239
+28887 58082
+28888 59819
+28889 61586
+28890 68239
+28891 68239
+28892 63974
+28893 63966
+28894 62286
+28895 54100
+28896 40819
+28897 15784
+28898 35185
+28899 64721
+28900 28899
+28901 4736
+28902 63246
+28903 47381
+28904 23433
+28905 53328
+28906 75002
+28907 61228
+28908 61228
+28909 81168
+28910 54100
+28911 42747
+28912 81306
+28913 70919
+28914 52460
+28915 81306
+28916 44365
+28917 27578
+28918 76731
+28919 67618
+28920 20955
+28921 37428
+28922 15785
+28923 41054
+28924 55563
+28925 55132
+28926 12570
+28926 67876
+28927 31359
+28928 60722
+28929 40711
+28930 31699
+28931 3074
+28932 39733
+28933 28313
+28934 3074
+28935 30456
+28936 3605
+28937 42120
+28938 75566
+28939 64297
+28940 53481
+28941 11490
+28942 73460
+28943 74316
+28944 75566
+28945 79242
+28946 50585
+28947 25844
+28948 22599
+28949 22599
+28950 52382
+28951 17385
+28952 37689
+28953 2911
+28954 70974
+28955 46853
+28956 34829
+28957 46153
+28958 60884
+28959 30456
+28960 34048
+28961 60271
+28962 69673
+28963 47019
+28964 50117
+28965 64478
+28966 49311
+28967 68651
+28968 62305
+28969 80542
+28970 37701
+28971 45684
+28972 41571
+28973 31051
+28974 53328
+28975 55132
+28976 55127
+28977 46290
+28978 29240
+28979 40887
+28980 74119
+28981 23165
+28982 30216
+28983 62053
+28984 27155
+28985 78803
+28986 53423
+28987 26203
+28988 27565
+28989 73907
+28990 62304
+28991 4918
+28992 48289
+28993 53055
+28994 33852
+28995 21786
+28996 23219
+28997 78780
+28998 73691
+28999 41054
+29000 75425
+29001 29009
+29002 40547
+29003 41054
+29004 65250
+29005 2911
+29006 22519
+29007 22287
+29008 61621
+29009 75599
+29010 62702
+29011 29541
+29012 10474
+29013 59242
+29014 30461
+29015 77580
+29016 61619
+29017 70189
+29018 78208
+29019 57703
+29020 44193
+29021 41054
+29022 76559
+29023 32477
+29024 41054
+29025 33168
+29026 33169
+29027 55903
+29028 44315
+29029 48627
+29030 10872
+29031 63903
+29032 72944
+29033 70092
+29034 70867
+29035 42946
+29036 64297
+29037 42984
+29038 55265
+29039 65224
+29040 59179
+29041 40797
+29042 47121
+29043 62811
+29044 4840
+29045 47665
+29046 78613
+29047 65993
+29048 77090
+29049 42118
+29050 57529
+29051 45614
+29052 47665
+29053 30309
+29054 58860
+29055 10366
+29056 46634
+29057 6925
+29058 70867
+29059 73540
+29060 41798
+29061 59779
+29062 67667
+29063 18616
+29064 33637
+29065 33639
+29066 28401
+29067 62562
+29068 63962
+29069 59142
+29070 30536
+29071 60571
+29072 79824
+29073 26954
+29074 29071
+29075 29071
+29076 64035
+29077 37404
+29078 23029
+29079 41052
+29080 49964
+29081 17029
+29082 81181
+29083 42049
+29084 7577
+29085 26176
+29086 12751
+29087 67880
+29088 22137
+29089 31185
+29090 58485
+29091 57682
+29092 57747
+29093 51153
+29094 68127
+29095 70992
+29096 29117
+29097 71219
+29098 72747
+29099 79880
+29100 29008
+29101 43844
+29102 49777
+29103 43842
+29104 17850
+29105 29106
+29106 33379
+29107 51957
+29108 53942
+29109 52970
+29110 3749
+29111 22468
+29112 58904
+29113 27477
+29114 27471
+29115 50280
+29116 49441
+29117 48080
+29118 75274
+29119 39649
+29120 2911
+29121 49387
+29122 48238
+29123 17850
+29124 29123
+29125 29123
+29126 29123
+29127 5786
+29128 79373
+29129 76037
+29130 42747
+29131 79511
+29132 72946
+29133 74808
+29134 26611
+29135 29430
+29136 74219
+29137 28104
+29138 76440
+29139 24927
+29140 60689
+29141 50204
+29142 74655
+29143 76767
+29144 29599
+29145 22519
+29146 37762
+29147 43718
+29148 39191
+29149 22165
+29150 33637
+29151 62296
+29152 78090
+29153 49942
+29154 3503
+29155 47665
+29156 29155
+29157 57529
+29158 2911
+29159 33790
+29159 71686
+29160 43019
+29161 8705
+29162 29160
+29163 26306
+29164 60611
+29165 12083
+29166 68529
+29167 60722
+29168 28154
+29169 29064
+29170 23573
+29171 46525
+29172 23380
+29173 46525
+29174 27021
+29175 70342
+29176 27155
+29177 24762
+29178 71766
+29179 23576
+29180 56207
+29181 77763
+29182 50122
+29183 71291
+29184 26964
+29185 58862
+29186 67868
+29187 63788
+29188 65692
+29189 33078
+29190 53328
+29191 68995
+29192 51242
+29193 48564
+29194 72217
+29195 68320
+29196 50919
+29197 34590
+29198 41054
+29199 70090
+29200 58195
+29201 75151
+29202 60863
+29203 41752
+29204 21379
+29205 57157
+29206 57158
+29207 31630
+29208 42502
+29209 70264
+29210 66827
+29211 65990
+29212 66827
+29213 43968
+29214 34112
+29215 22713
+29216 25376
+29217 27840
+29218 50473
+29219 24355
+29220 79332
+29221 69287
+29222 21111
+29223 57135
+29224 72475
+29225 62240
+29226 41054
+29227 58882
+29228 24397
+29229 75733
+29230 61822
+29231 54936
+29232 38721
+29233 61421
+29234 40616
+29235 50092
+29236 18169
+29237 53418
+29238 77349
+29239 70499
+29240 47262
+29241 34571
+29242 40846
+29243 64307
+29244 62304
+29245 33774
+29246 36591
+29247 27360
+29248 68972
+29249 20407
+29250 74594
+29251 23147
+29252 27697
+29253 52132
+29254 39427
+29255 39421
+29256 39465
+29257 29249
+29258 79363
+29259 64033
+29260 43812
+29261 49699
+29262 20408
+29263 76682
+29264 68074
+29265 5752
+29266 21934
+29267 22387
+29268 22387
+29269 46293
+29270 44175
+29271 42747
+29272 33442
+29273 71341
+29274 24730
+29275 2911
+29276 61767
+29277 27404
+29278 37862
+29279 68508
+29280 72747
+29281 29275
+29282 29275
+29283 46363
+29284 33639
+29285 74540
+29286 77763
+29287 26734
+29288 22534
+29289 20693
+29290 20693
+29291 34290
+29292 42043
+29293 75384
+29294 75384
+29295 42045
+29296 34936
+29297 79639
+29298 27220
+29299 54722
+29300 33517
+29301 49777
+29302 81063
+29303 40414
+29304 36925
+29305 54732
+29306 29624
+29307 75384
+29308 37956
+29309 74298
+29310 62303
+29311 43703
+29312 47215
+29313 30881
+29314 30882
+29315 46060
+29316 31835
+29317 9399
+29318 68498
+29319 33078
+29320 36802
+29321 49644
+29322 50719
+29323 41900
+29324 26157
+29325 51172
+29326 68498
+29327 68498
+29328 30780
+29329 2911
+29330 23776
+29331 52404
+29332 64325
+29333 70182
+29334 80541
+29335 76910
+29336 17636
+29337 33637
+29338 53889
+29339 61208
+29340 74298
+29341 73907
+29342 72093
+29343 69189
+29344 32698
+29345 32699
+29346 58835
+29347 58836
+29348 52382
+29349 61912
+29350 37301
+29351 23363
+29352 14919
+29353 40636
+29354 66554
+29355 76579
+29356 39783
+29357 53051
+29358 78268
+29359 22517
+29360 39701
+29361 42035
+29362 33370
+29363 74058
+29364 40
+29365 49777
+29366 20853
+29367 20925
+29368 20925
+29369 41595
+29370 30837
+29371 31835
+29372 12970
+29373 30815
+29374 30816
+29375 28268
+29376 40932
+29377 67490
+29378 56774
+29379 80159
+29380 32977
+29381 32977
+29382 41683
+29383 52366
+29384 27104
+29385 68184
+29386 29541
+29387 77089
+29388 32955
+29389 36037
+29390 38131
+29391 54360
+29392 56146
+29393 10872
+29394 52449
+29395 69189
+29396 56755
+29397 76556
+29398 77095
+29399 80150
+29400 80569
+29401 79718
+29402 41424
+29402 48317
+29403 54059
+29404 41219
+29405 18616
+29406 27348
+29407 43718
+29408 39191
+29409 29123
+29410 74219
+29411 29404
+29412 41321
+29413 61147
+29414 69049
+29415 55663
+29416 78307
+29417 63986
+29418 29047
+29419 78614
+29420 10793
+29421 47665
+29422 47666
+29423 42553
+29424 27679
+29425 68239
+29426 20792
+29427 50081
+29428 67181
+29429 67189
+29430 54147
+29431 37138
+29432 20792
+29432 71830
+29433 22763
+29434 60202
+29435 33970
+29436 23209
+29437 23868
+29438 2949
+29439 59389
+29440 76039
+29441 37332
+29441 46136
+29442 33086
+29443 56557
+29444 50477
+29445 43783
+29446 63887
+29447 73213
+29448 71830
+29448 75880
+29449 30769
+29450 37042
+29451 55135
+29452 72114
+29453 68239
+29454 61284
+29455 20792
+29456 36847
+29457 37579
+29458 33086
+29459 46345
+29460 20460
+29461 46345
+29462 20792
+29463 30180
+29464 27348
+29465 44197
+29466 73036
+29467 55154
+29468 27000
+29469 55037
+29470 77824
+29471 3220
+29472 29471
+29473 54426
+29474 60202
+29475 63149
+29476 34211
+29477 29490
+29478 48729
+29479 27205
+29480 25988
+29481 52854
+29482 41945
+29483 44055
+29484 60492
+29485 75003
+29486 75003
+29487 36136
+29488 47665
+29489 42553
+29490 59924
+29490 60202
+29491 29760
+29492 49777
+29493 29484
+29494 59150
+29495 47352
+29496 35600
+29497 73330
+29498 39670
+29498 54877
+29499 12286
+29500 57060
+29501 42739
+29502 57791
+29503 67095
+29504 61701
+29505 75196
+29506 26235
+29507 58489
+29508 15499
+29509 42049
+29510 32987
+29511 53508
+29512 30571
+29513 78831
+29514 79197
+29515 31723
+29516 61147
+29517 58489
+29518 14919
+29519 70208
+29520 55208
+29521 37004
+29522 40120
+29523 37409
+29524 72218
+29525 55223
+29526 74893
+29527 47352
+29528 40711
+29529 39670
+29529 66858
+29530 72162
+29531 37645
+29532 49918
+29533 78817
+29534 78816
+29535 67573
+29536 29484
+29536 45736
+29537 51135
+29538 22877
+29539 62514
+29540 64306
+29541 42356
+29542 9481
+29543 21191
+29544 37403
+29545 29548
+29546 29548
+29547 60722
+29548 64051
+29549 30735
+29550 50719
+29551 23949
+29552 23949
+29553 64051
+29554 21169
+29555 49555
+29556 58202
+29557 73873
+29558 23426
+29559 11490
+29560 35486
+29561 58838
+29562 33639
+29563 55448
+29564 39789
+29565 33637
+29566 35319
+29567 38131
+29568 47128
+29569 31163
+29570 53200
+29571 70152
+29572 69735
+29573 18616
+29574 36265
+29575 48722
+29576 2911
+29577 60426
+29578 2049
+29579 57134
+29580 3366
+29581 26157
+29582 2911
+29583 39191
+29584 47909
+29585 76138
+29586 44315
+29587 55220
+29588 69841
+29589 1415
+29590 56022
+29591 76767
+29592 61996
+29593 61995
+29594 79880
+29595 41321
+29596 30437
+29597 41699
+29598 70374
+29599 62207
+29600 63529
+29601 25205
+29602 47665
+29603 76051
+29604 78489
+29605 43019
+29606 29123
+29607 29660
+29608 66502
+29609 71853
+29610 17029
+29611 70786
+29612 24410
+29613 64381
+29614 29616
+29615 60685
+29616 22820
+29616 61858
+29617 23516
+29618 30801
+29619 57791
+29620 33861
+29621 67152
+29622 43565
+29623 35654
+29624 27155
+29625 60571
+29626 57786
+29627 62108
+29628 80855
+29629 46834
+29630 51593
+29631 24840
+29632 25600
+29633 67873
+29634 72785
+29635 22663
+29636 25529
+29637 48810
+29638 34695
+29639 34977
+29640 25461
+29641 25599
+29642 27114
+29643 51662
+29644 53727
+29645 76524
+29646 59938
+29647 69976
+29648 15298
+29649 31678
+29650 75051
+29651 24509
+29652 59228
+29653 79992
+29654 72946
+29655 44135
+29656 72589
+29657 44003
+29658 46505
+29659 29379
+29660 48409
+29661 55168
+29662 27097
+29663 63889
+29664 32666
+29665 81025
+29666 67387
+29667 51699
+29668 14920
+29669 69471
+29670 30769
+29671 28528
+29672 65346
+29673 36452
+29674 36452
+29675 49341
+29675 77224
+29676 65258
+29677 25634
+29678 8531
+29679 27000
+29680 24678
+29681 67586
+29682 47665
+29683 67598
+29684 66413
+29685 51150
+29686 64549
+29687 35155
+29688 33858
+29689 20856
+29690 24572
+29691 24504
+29692 24318
+29693 30604
+29694 59230
+29695 79454
+29696 80159
+29697 47151
+29698 24081
+29699 33925
+29700 62252
+29701 38359
+29702 22534
+29703 27155
+29704 60685
+29705 42266
+29706 73907
+29707 29071
+29708 33639
+29709 45054
+29710 33639
+29711 27485
+29712 48722
+29713 70320
+29714 38369
+29715 29716
+29716 22165
+29717 74481
+29718 56363
+29719 39438
+29720 25709
+29721 27637
+29722 55168
+29723 55168
+29724 43893
+29725 74481
+29726 38440
+29727 60202
+29728 80150
+29729 20868
+29730 38045
+29731 23016
+29732 25821
+29733 69032
+29734 34807
+29735 23483
+29735 42061
+29736 43207
+29737 51654
+29738 32541
+29739 47665
+29740 37111
+29741 37112
+29742 80662
+29743 41238
+29744 74171
+29745 36751
+29746 40570
+29747 22988
+29748 80514
+29749 73287
+29750 77693
+29751 24927
+29752 35103
+29753 24927
+29754 63976
+29755 46965
+29756 31443
+29757 63963
+29758 41115
+29759 23316
+29760 33637
+29761 49777
+29762 49777
+29763 33639
+29764 33637
+29765 73115
+29766 45841
+29767 48628
+29768 21169
+29769 34570
+29770 43420
+29771 25501
+29772 64230
+29773 73213
+29774 64230
+29775 4432
+29776 20691
+29777 75011
+29778 51654
+29779 51242
+29780 31523
+29781 80942
+29782 69270
+29783 66629
+29784 22311
+29785 81075
+29786 61592
+29787 79701
+29788 45426
+29789 31931
+29790 68460
+29791 80568
+29792 24980
+29793 80044
+29794 52143
+29795 27990
+29796 24839
+29797 20707
+29798 34829
+29799 35017
+29800 36096
+29801 49619
+29802 54100
+29803 29805
+29804 22192
+29805 73885
+29806 58543
+29807 39193
+29808 49777
+29809 30691
+29810 41054
+29811 80863
+29812 34590
+29813 44048
+29814 29483
+29815 33639
+29816 27485
+29817 27485
+29818 64305
+29819 47533
+29820 29819
+29821 42553
+29822 73063
+29823 67586
+29824 2911
+29825 37579
+29826 37578
+29827 33637
+29828 75267
+29829 39494
+29830 65975
+29831 54228
+29832 18616
+29833 67657
+29834 10366
+29835 24927
+29836 27798
+29837 56022
+29838 79017
+29839 65663
+29840 44315
+29841 33637
+29842 71788
+29843 23004
+29844 24730
+29845 33970
+29846 76258
+29847 42303
+29848 76255
+29849 50657
+29850 20339
+29851 63133
+29852 31608
+29853 31608
+29854 31620
+29855 80926
+29856 65861
+29857 60982
+29858 71556
+29859 34808
+29860 31104
+29861 33228
+29862 24668
+29863 7964
+29864 43273
+29865 30841
+29866 30837
+29867 2911
+29868 58904
+29869 64723
+29870 63369
+29871 57885
+29872 59178
+29873 36426
+29874 22876
+29875 17029
+29876 49947
+29877 79076
+29878 79076
+29879 20660
+29879 41441
+29880 36219
+29881 18616
+29882 23321
+29883 40453
+29884 25613
+29885 41583
+29886 45728
+29886 80778
+29887 73397
+29888 80181
+29889 20041
+29890 2911
+29891 53055
+29892 79992
+29893 23739
+29894 48012
+29895 30946
+29896 59110
+29897 47665
+29898 30946
+29899 65893
+29900 22520
+29901 42560
+29902 61406
+29903 67196
+29904 37560
+29905 69976
+29906 45097
+29907 21447
+29908 59389
+29909 67036
+29910 77856
+29911 25914
+29912 40069
+29913 53161
+29914 48966
+29915 64483
+29916 25455
+29917 27202
+29918 53328
+29919 43815
+29920 52846
+29921 25391
+29922 61147
+29923 30784
+29924 30046
+29925 33844
+29926 30787
+29927 68142
+29928 27521
+29929 42747
+29930 72271
+29931 41203
+29932 52396
+29933 36376
+29934 62453
+29935 36942
+29936 23573
+29937 41021
+29938 41238
+29939 49918
+29940 22519
+29941 21217
+29942 45059
+29943 49265
+29944 76722
+29945 68741
+29946 59505
+29947 68142
+29948 3076
+29949 38427
+29950 49699
+29951 21169
+29952 58614
+29953 36456
+29954 33575
+29955 41424
+29956 44056
+29957 76908
+29958 35017
+29959 39789
+29959 65893
+29960 63136
+29961 25076
+29961 41080
+29962 62442
+29963 37545
+29964 20853
+29965 33581
+29966 45056
+29967 56789
+29967 61652
+29968 50191
+29969 50191
+29970 75243
+29971 40613
+29972 27202
+29973 75456
+29974 48358
+29975 64694
+29976 75771
+29977 56615
+29978 23432
+29979 25094
+29980 20724
+29981 33186
+29982 3702
+29983 35461
+29984 64370
+29985 9481
+29986 35197
+29987 43565
+29988 26597
+29989 71676
+29990 48023
+29991 34018
+29992 64727
+29993 64727
+29994 76251
+29995 31298
+29996 31298
+29997 42204
+29998 77763
+29999 59178
+30000 52844
+30001 39445
+30002 75779
+30003 44216
+30004 25378
+30005 50625
+30006 36877
+30007 49938
+30008 74558
+30009 47665
+30010 59254
+30011 35655
+30012 33272
+30013 27348
+30014 54804
+30015 25544
+30016 54414
+30017 27435
+30018 27785
+30019 41555
+30020 43534
+30021 38561
+30022 39294
+30023 27840
+30024 77084
+30025 73486
+30026 65535
+30027 29571
+30028 43718
+30029 59317
+30030 80025
+30031 62397
+30032 79489
+30033 55265
+30034 73907
+30035 66326
+30036 75091
+30037 25038
+30038 72946
+30039 72946
+30040 58999
+30041 41707
+30042 35144
+30043 35145
+30044 24053
+30045 69140
+30046 61682
+30047 59970
+30048 66431
+30049 59427
+30050 51260
+30051 49585
+30052 31551
+30053 30046
+30054 67365
+30055 36244
+30056 33086
+30057 50196
+30058 59178
+30059 79624
+30060 37491
+30061 73125
+30062 63986
+30063 47121
+30064 55899
+30065 23410
+30066 79615
+30067 26506
+30068 71766
+30069 71766
+30070 43246
+30071 32387
+30072 78999
+30073 58383
+30074 63863
+30075 63831
+30076 39791
+30077 30070
+30078 70833
+30079 56389
+30080 67493
+30081 48095
+30082 72075
+30083 36122
+30084 73907
+30085 79516
+30086 67490
+30087 35197
+30088 29329
+30089 42553
+30090 3897
+30091 35002
+30092 62965
+30093 39809
+30094 30084
+30095 33442
+30096 19954
+30097 33442
+30098 30843
+30099 39598
+30100 30097
+30101 79895
+30102 7302
+30103 37002
+30104 30303
+30105 30303
+30106 30303
+30107 30303
+30108 30303
+30109 30303
+30110 34007
+30111 60531
+30112 78464
+30113 22015
+30114 22015
+30115 47665
+30116 63026
+30117 63026
+30118 49777
+30119 63788
+30120 21280
+30121 37862
+30122 67337
+30123 49461
+30124 48271
+30125 4716
+30126 47665
+30127 67598
+30128 59877
+30129 47665
+30130 78816
+30131 52197
+30132 33442
+30133 42553
+30134 42553
+30135 35155
+30136 30132
+30137 50200
+30138 57526
+30139 46033
+30140 45365
+30141 37406
+30142 47816
+30143 23810
+30144 57586
+30145 62679
+30146 74528
+30147 56022
+30148 37645
+30149 23516
+30150 33273
+30151 20533
+30152 66499
+30153 30252
+30154 77824
+30155 39875
+30156 32976
+30157 53450
+30158 39421
+30159 65383
+30160 67573
+30161 67573
+30162 49342
+30163 59389
+30164 69546
+30165 68817
+30166 52326
+30167 40629
+30167 73571
+30168 73571
+30169 41547
+30170 25088
+30171 57134
+30172 27451
+30173 62361
+30174 71189
+30175 61702
+30176 21080
+30177 49918
+30178 76042
+30179 55232
+30180 62912
+30181 30182
+30182 40410
+30183 30182
+30183 58082
+30184 21075
+30185 30181
+30186 30182
+30186 81089
+30187 62354
+30188 30084
+30189 52752
+30190 68172
+30191 13284
+30192 33238
+30193 28249
+30194 21074
+30195 41972
+30196 71791
+30197 33086
+30198 70867
+30199 66491
+30200 36928
+30201 55363
+30202 79003
+30203 49777
+30204 58838
+30205 34445
+30206 36426
+30207 33254
+30208 66422
+30209 34399
+30210 58838
+30211 17490
+30211 43401
+30212 32320
+30213 10736
+30214 57315
+30215 42747
+30216 74119
+30217 43401
+30218 58948
+30219 22594
+30220 60357
+30221 33662
+30222 58616
+30223 43243
+30224 25146
+30225 53190
+30226 31608
+30227 48046
+30228 55443
+30229 63136
+30230 53192
+30231 63136
+30232 26253
+30233 63136
+30234 59605
+30235 30239
+30236 3601
+30237 30238
+30238 3601
+30239 3601
+30240 64653
+30241 72677
+30242 47872
+30243 3600
+30244 42019
+30245 42949
+30245 72677
+30246 20520
+30247 42635
+30248 53125
+30249 30584
+30250 36208
+30251 43401
+30252 64673
+30253 55657
+30254 43401
+30255 55659
+30256 43401
+30257 23532
+30258 55663
+30259 55663
+30260 24225
+30261 80904
+30262 23516
+30263 42044
+30264 30982
+30265 33869
+30266 47384
+30267 74968
+30268 39494
+30268 47033
+30269 68897
+30270 78831
+30271 78831
+30272 78831
+30273 70560
+30274 62791
+30275 63134
+30276 33542
+30277 44312
+30278 30261
+30279 43103
+30280 64636
+30281 20925
+30282 22988
+30283 59381
+30284 20607
+30285 43103
+30286 49194
+30287 21169
+30288 30239
+30289 73907
+30290 35687
+30291 27155
+30292 79638
+30293 61228
+30294 30303
+30295 47612
+30296 65645
+30297 78831
+30298 31176
+30299 22763
+30300 55127
+30301 56414
+30302 22763
+30303 22763
+30304 30303
+30305 50212
+30306 78574
+30307 23483
+30308 45221
+30309 24678
+30310 53979
+30311 59444
+30312 76051
+30313 35595
+30314 52143
+30315 7577
+30316 43019
+30317 27732
+30318 27461
+30319 27485
+30320 58591
+30321 23516
+30322 57833
+30323 78831
+30324 57833
+30325 22434
+30326 29071
+30327 23516
+30328 57833
+30329 26587
+30330 27582
+30331 76249
+30332 78831
+30333 55394
+30334 57833
+30335 41054
+30336 43237
+30337 21280
+30338 20955
+30339 20955
+30340 79880
+30341 56564
+30342 39191
+30343 15499
+30344 55563
+30345 53277
+30346 17354
+30347 17354
+30348 20792
+30349 30351
+30350 32295
+30351 64979
+30352 37956
+30353 50198
+30354 36096
+30355 30352
+30356 24088
+30357 33372
+30358 30691
+30359 12078
+30360 20703
+30361 81046
+30362 30350
+30363 61858
+30364 79880
+30365 56022
+30366 23516
+30367 29071
+30368 33714
+30369 74926
+30370 40752
+30371 72415
+30372 57791
+30373 71332
+30374 78831
+30375 78965
+30376 49918
+30377 20917
+30378 40932
+30379 59150
+30380 36460
+30381 55563
+30382 30381
+30383 73548
+30384 66506
+30385 31465
+30386 30006
+30386 37602
+30387 55661
+30388 24674
+30389 81341
+30390 44017
+30391 56232
+30392 32408
+30393 24308
+30394 47245
+30395 47665
+30396 69786
+30397 28633
+30398 65713
+30399 35297
+30400 62301
+30401 42935
+30402 42049
+30403 74119
+30404 65713
+30405 33894
+30406 34590
+30407 39627
+30408 71368
+30409 41666
+30410 34912
+30411 52726
+30412 27009
+30413 61753
+30414 49376
+30415 30786
+30416 58446
+30417 63398
+30418 34993
+30419 54113
+30420 70264
+30421 62063
+30422 30421
+30423 41631
+30424 69188
+30425 14919
+30426 63682
+30427 50203
+30428 52953
+30429 34172
+30430 14919
+30431 30424
+30432 29660
+30433 34905
+30434 62304
+30435 22534
+30436 69200
+30437 65067
+30437 77232
+30438 48909
+30439 30438
+30440 56022
+30441 56022
+30442 2684
+30443 48576
+30444 35361
+30445 2911
+30446 28873
+30447 19794
+30448 22203
+30448 33790
+30449 81069
+30450 38843
+30451 73816
+30452 75153
+30453 62116
+30454 27679
+30455 70876
+30456 72268
+30457 65113
+30458 58628
+30459 36482
+30460 41054
+30461 39789
+30462 30084
+30463 67573
+30464 23706
+30465 31630
+30466 23751
+30467 59311
+30468 30301
+30469 54272
+30470 65893
+30471 41054
+30472 49777
+30473 77349
+30474 26253
+30475 62255
+30476 52460
+30477 45505
+30478 61822
+30479 47665
+30480 47665
+30481 50675
+30482 35365
+30483 56164
+30484 33009
+30485 47872
+30486 33007
+30487 2911
+30488 63172
+30489 61509
+30490 35822
+30491 22193
+30492 63296
+30493 54590
+30494 23285
+30495 45753
+30496 47222
+30497 14919
+30498 4694
+30499 23264
+30500 71894
+30501 78090
+30502 53021
+30503 42621
+30504 29107
+30505 73575
+30506 23380
+30507 66431
+30508 20920
+30509 33505
+30510 3452
+30511 76085
+30512 31939
+30513 32320
+30514 3452
+30515 37149
+30516 36458
+30517 30524
+30518 30519
+30519 30508
+30520 30508
+30521 56749
+30522 30508
+30523 30508
+30524 30508
+30525 25675
+30526 64979
+30527 52187
+30528 64979
+30529 70750
+30530 6958
+30531 49777
+30532 55154
+30533 77216
+30534 60568
+30535 5321
+30536 27019
+30537 32899
+30538 75606
+30539 54733
+30540 35901
+30541 29989
+30542 77216
+30543 40106
+30544 66502
+30545 62055
+30546 21375
+30547 80914
+30548 39886
+30549 30556
+30550 5321
+30551 31711
+30552 52572
+30553 54438
+30554 2911
+30555 42523
+30556 62194
+30557 16753
+30558 36304
+30559 15600
+30560 14919
+30561 69287
+30562 61477
+30563 10789
+30564 23706
+30565 40166
+30566 28241
+30567 48576
+30568 2949
+30569 31675
+30570 68224
+30571 35655
+30572 49282
+30573 23974
+30574 77112
+30575 30591
+30576 66685
+30577 45687
+30578 81076
+30579 23975
+30580 20959
+30581 63881
+30582 53328
+30583 80757
+30584 23974
+30585 64979
+30586 50247
+30587 64215
+30588 45924
+30589 36755
+30590 36756
+30591 20901
+30592 80883
+30593 46449
+30594 2949
+30594 43745
+30595 81069
+30596 7583
+30597 38435
+30598 80926
+30599 65553
+30600 36439
+30601 25593
+30602 7645
+30603 62459
+30604 34290
+30605 66687
+30606 23918
+30607 39427
+30608 52815
+30609 36645
+30610 23730
+30611 25902
+30612 40843
+30613 20612
+30614 37356
+30615 39948
+30616 39465
+30617 79615
+30618 36942
+30619 29660
+30620 48409
+30621 65226
+30622 38575
+30623 23972
+30623 50320
+30624 77733
+30625 44435
+30626 43333
+30627 25757
+30627 75979
+30628 45199
+30629 40398
+30630 37587
+30631 34712
+30632 3796
+30633 52038
+30634 58614
+30635 42552
+30636 4840
+30637 65013
+30638 14994
+30639 49777
+30640 78797
+30641 16312
+30642 79248
+30643 54617
+30644 37956
+30645 33715
+30646 55343
+30647 64526
+30648 20703
+30649 56447
+30650 42985
+30651 38528
+30652 44130
+30653 35807
+30654 56843
+30655 43424
+30656 62234
+30657 56622
+30658 79017
+30659 33827
+30660 70869
+30661 34484
+30662 56234
+30663 3704
+30664 61344
+30665 56683
+30666 58158
+30667 58158
+30668 40283
+30669 26591
+30670 12967
+30671 38574
+30672 30671
+30673 18616
+30674 58860
+30675 57483
+30676 69858
+30677 25955
+30678 57487
+30679 34819
+30680 24864
+30681 70345
+30682 60892
+30683 75359
+30684 56176
+30685 67998
+30686 27991
+30687 81080
+30688 43454
+30689 36135
+30690 21146
+30691 38345
+30692 20695
+30693 64182
+30694 50155
+30695 11490
+30696 26591
+30697 79949
+30698 58691
+30699 30837
+30700 23448
+30701 30578
+30702 30705
+30703 66331
+30704 65969
+30705 23938
+30706 40616
+30707 11320
+30708 54438
+30709 26923
+30710 80199
+30711 26929
+30712 24780
+30713 64090
+30714 53328
+30715 77598
+30716 30837
+30717 36643
+30718 34408
+30719 65117
+30720 73551
+30721 67573
+30722 30693
+30723 40611
+30724 61996
+30725 41521
+30726 37541
+30727 41098
+30728 62629
+30729 27155
+30730 73665
+30731 35197
+30732 23128
+30733 23975
+30734 72248
+30735 46966
+30736 39802
+30737 6926
+30738 52382
+30739 68080
+30740 35741
+30740 43000
+30741 54438
+30742 51607
+30743 37337
+30744 42996
+30745 62171
+30746 63689
+30747 67266
+30748 80319
+30749 71929
+30750 60616
+30751 77312
+30752 2866
+30753 28845
+30754 40877
+30755 44327
+30756 24909
+30757 25929
+30758 4531
+30759 32579
+30760 49918
+30761 37645
+30762 8393
+30763 23015
+30764 47748
+30765 63980
+30766 30784
+30767 23015
+30768 22343
+30769 54972
+30770 21404
+30771 22311
+30772 27104
+30772 30790
+30773 36308
+30774 55037
+30775 39898
+30776 39924
+30777 39923
+30778 30786
+30779 49824
+30780 55037
+30781 58362
+30782 57528
+30783 12083
+30784 20925
+30785 64215
+30786 30784
+30787 22988
+30788 75813
+30789 79573
+30790 79928
+30791 53937
+30792 78208
+30793 38467
+30794 21167
+30795 68818
+30796 29553
+30797 57531
+30798 31609
+30799 20570
+30800 51784
+30801 65905
+30802 39175
+30803 59178
+30804 74953
+30805 75415
+30806 76004
+30807 34018
+30808 41054
+30809 21894
+30810 35482
+30811 35483
+30812 53480
+30813 31334
+30814 19954
+30815 43718
+30816 38672
+30816 39191
+30817 46505
+30818 24762
+30819 2911
+30820 22468
+30821 29329
+30822 62546
+30823 17638
+30824 76703
+30825 76702
+30826 64967
+30827 64968
+30828 70627
+30829 24311
+30830 864
+30831 47665
+30832 47666
+30833 26929
+30834 10789
+30835 30838
+30836 54941
+30837 56890
+30838 60492
+30839 16770
+30840 30709
+30841 11320
+30842 27021
+30843 27485
+30844 43882
+30845 30084
+30846 59970
+30847 64317
+30848 66332
+30849 19954
+30850 18616
+30851 39193
+30852 28967
+30853 48405
+30854 26611
+30855 58576
+30856 2219
+30857 36311
+30858 56146
+30859 24490
+30860 25438
+30861 67889
+30862 26251
+30863 30524
+30864 33606
+30865 46505
+30866 17850
+30867 76951
+30868 52727
+30869 49152
+30870 73907
+30871 67036
+30872 39525
+30873 27850
+30874 56886
+30875 36135
+30876 38476
+30877 28790
+30878 30882
+30878 81303
+30879 76586
+30880 80487
+30881 63338
+30882 38086
+30883 38143
+30884 33007
+30885 37579
+30886 37579
+30887 18244
+30888 37579
+30889 28043
+30890 30891
+30891 29825
+30892 41374
+30893 37579
+30894 41371
+30895 54837
+30896 47167
+30897 38666
+30898 53423
+30899 26179
+30900 54614
+30901 56864
+30902 37579
+30903 57720
+30904 68165
+30905 68381
+30906 68932
+30907 65620
+30908 71973
+30909 43576
+30910 75060
+30911 80619
+30912 55503
+30913 81141
+30914 63412
+30915 38571
+30916 77362
+30917 52588
+30918 52587
+30919 52589
+30920 47665
+30921 47665
+30922 61557
+30923 46505
+30924 67586
+30925 47665
+30926 32271
+30927 68172
+30928 68172
+30929 65861
+30930 34172
+30931 34172
+30932 51117
+30933 55897
+30934 58216
+30935 14919
+30936 41054
+30937 28845
+30938 30844
+30939 59019
+30940 32311
+30941 42560
+30942 26514
+30943 50799
+30944 36743
+30945 51265
+30946 44055
+30947 25515
+30948 20553
+30949 20553
+30950 63076
+30951 64017
+30951 6958
+30952 74494
+30953 21114
+30954 26203
+30955 31610
+30956 16754
+30957 76475
+30958 49311
+30959 81307
+30960 70876
+30961 37579
+30962 48547
+30963 42553
+30964 33272
+30965 20768
+30966 32344
+30967 41498
+30968 74893
+30969 23101
+30970 32344
+30971 39705
+30972 48119
+30973 42779
+30974 42779
+30975 79516
+30976 34113
+30977 29045
+30978 17857
+30979 62051
+30980 42779
+30981 31675
+30982 46025
+30983 41521
+30984 66819
+30985 73665
+30986 28746
+30987 4203
+30988 61996
+30989 39193
+30990 54023
+30991 73048
+30992 43862
+30993 32093
+30994 67490
+30995 35503
+30996 24352
+30997 31711
+30998 71941
+30999 24840
+31000 60169
+31001 41054
+31002 44474
+31003 30855
+31004 41054
+31005 42652
+31006 38621
+31007 71411
+31008 34409
+31009 69524
+31010 23114
+31011 27704
+31012 26921
+31013 72848
+31014 68522
+31015 50903
+31016 12975
+31017 59970
+31018 72218
+31019 77340
+31020 76002
+31021 71941
+31022 22547
+31023 71941
+31024 39181
+31025 73213
+31026 30659
+31027 62912
+31028 77851
+31029 56414
+31030 78756
+31031 34547
+31032 63860
+31033 21855
+31034 47666
+31035 38171
+31036 40498
+31037 72589
+31038 34570
+31038 62303
+31039 11406
+31040 74893
+31041 69336
+31042 21800
+31043 22848
+31044 22763
+31045 68239
+31046 25778
+31047 21746
+31048 60366
+31049 22848
+31050 20792
+31051 33086
+31052 46792
+31053 30784
+31054 37603
+31055 30774
+31055 44212
+31055 46811
+31056 26579
+31056 37332
+31057 26579
+31057 71823
+31058 36346
+31059 56022
+31060 75481
+31061 48832
+31061 71830
+31062 75481
+31063 42820
+31063 46136
+31063 62839
+31064 46810
+31064 50005
+31065 61858
+31066 31065
+31067 31065
+31068 31065
+31069 31065
+31070 33086
+31071 62364
+31072 28585
+31073 22804
+31074 50665
+31075 22799
+31075 76059
+31076 20792
+31077 22798
+31078 54349
+31078 61511
+31079 59406
+31080 22763
+31081 37839
+31082 42408
+31083 31090
+31084 31096
+31085 26664
+31086 25854
+31087 43000
+31088 31090
+31089 28845
+31090 31087
+31091 26229
+31092 39114
+31093 5786
+31094 42996
+31095 43744
+31096 49104
+31097 31090
+31097 51587
+31098 31087
+31099 12078
+31100 56863
+31101 64551
+31102 68508
+31103 36159
+31104 20920
+31105 36159
+31106 35737
+31107 31203
+31108 16770
+31109 23285
+31110 44009
+31111 63612
+31112 31194
+31113 32318
+31114 78673
+31115 43703
+31116 30815
+31117 29441
+31118 63373
+31119 31606
+31120 62679
+31121 51491
+31122 78268
+31123 57632
+31124 32390
+31125 63903
+31126 37645
+31127 74213
+31128 67500
+31129 49918
+31130 20415
+31131 49918
+31132 53359
+31133 53371
+31134 49876
+31135 44281
+31136 44281
+31137 73332
+31138 25969
+31139 1663
+31140 40069
+31141 28790
+31142 30863
+31143 17295
+31144 13185
+31145 68844
+31146 15784
+31147 25759
+31148 68441
+31149 45904
+31150 39918
+31151 61685
+31152 35503
+31153 50933
+31154 66943
+31155 46327
+31156 31273
+31157 7645
+31158 70265
+31159 37579
+31160 70219
+31161 25564
+31162 76767
+31163 47428
+31164 51654
+31165 73591
+31166 26664
+31167 26920
+31168 75033
+31169 52382
+31170 58798
+31171 22713
+31172 63589
+31173 73633
+31174 58369
+31175 55509
+31176 22517
+31177 41299
+31178 44496
+31179 49918
+31180 49918
+31181 73830
+31182 36377
+31182 57795
+31183 20348
+31184 34812
+31185 18211
+31185 70375
+31186 35800
+31187 58362
+31188 55351
+31189 55394
+31190 68019
+31191 79120
+31192 26121
+31193 66894
+31194 17029
+31195 68522
+31196 55351
+31197 62507
+31198 78831
+31199 23516
+31200 54617
+31201 52245
+31202 71941
+31203 57128
+31204 57106
+31205 53122
+31206 32956
+31207 77349
+31208 35808
+31209 61086
+31210 34256
+31211 41362
+31212 72501
+31213 65117
+31214 37579
+31215 66508
+31216 33524
+31217 71973
+31218 40637
+31219 24678
+31220 41666
+31221 24836
+31222 68239
+31223 20394
+31224 32473
+31225 68596
+31226 17664
+31227 27025
+31228 79251
+31229 61860
+31230 65979
+31231 20925
+31232 31243
+31233 21896
+31234 21896
+31235 56634
+31235 68239
+31236 61858
+31237 7639
+31238 15499
+31239 61858
+31240 74934
+31241 20792
+31242 56022
+31243 55563
+31244 26566
+31245 33086
+31246 53364
+31247 46345
+31248 62364
+31249 20391
+31250 27003
+31251 52326
+31252 28005
+31253 44279
+31254 45329
+31255 45397
+31256 52760
+31257 31256
+31258 31256
+31258 57249
+31259 31252
+31259 39714
+31260 64844
+31261 66549
+31262 22519
+31263 47984
+31264 76492
+31265 21380
+31266 75648
+31267 81075
+31268 48695
+31269 31841
+31270 55132
+31271 64693
+31272 26754
+31273 42747
+31274 56022
+31274 59110
+31275 58986
+31275 77232
+31276 30437
+31276 77232
+31277 30806
+31278 23596
+31279 35654
+31280 54126
+31281 62571
+31282 35522
+31283 48083
+31284 45515
+31285 35522
+31286 79454
+31287 49234
+31288 69338
+31289 58158
+31290 62423
+31291 70219
+31292 24544
+31293 16149
+31294 71587
+31295 79438
+31296 52119
+31298 62194
+31299 16753
+31300 27001
+31301 75972
+31302 2041
+31303 7667
+31304 55963
+31305 29069
+31307 58838
+31308 67510
+31309 66501
+31310 76945
+31311 81168
+31312 66499
+31313 31307
+31314 81139
+31315 60169
+31316 79003
+31317 66708
+31318 46572
+31319 33272
+31320 35186
+31321 49777
+31322 48727
+31323 23869
+31324 42999
+31325 48230
+31326 37199
+31327 46459
+31328 61147
+31329 25854
+31330 42686
+31331 12086
+31332 20768
+31333 63689
+31334 67523
+31335 54268
+31336 24720
+31337 27485
+31338 28609
+31339 35543
+31340 49222
+31341 71368
+31342 28450
+31343 28609
+31344 29760
+31345 77763
+31346 76561
+31347 71368
+31348 31334
+31349 23516
+31350 55351
+31351 78831
+31352 64361
+31353 59381
+31354 46682
+31355 22670
+31355 47972
+31356 68074
+31357 21825
+31358 24927
+31359 18616
+31360 31359
+31361 21811
+31362 43405
+31363 28246
+31364 61845
+31365 65242
+31366 48579
+31367 41987
+31368 42747
+31369 57833
+31370 73907
+31371 56022
+31372 23271
+31373 21375
+31374 24927
+31375 10366
+31376 72350
+31377 24927
+31378 654
+31379 27679
+31380 42767
+31381 74746
+31382 44197
+31383 76600
+31384 81132
+31385 2911
+31386 29733
+31387 55526
+31388 37202
+31389 66447
+31390 32880
+31391 32210
+31392 22763
+31393 26096
+31394 39593
+31395 43215
+31396 53573
+31397 51199
+31398 69194
+31399 67666
+31400 23516
+31401 31394
+31402 31394
+31403 21155
+31404 39421
+31405 51107
+31406 60678
+31407 46344
+31408 65242
+31409 23013
+31410 39494
+31411 74977
+31412 62255
+31413 63398
+31414 67758
+31415 21221
+31416 36145
+31417 21617
+31418 59388
+31419 34398
+31420 34398
+31421 30521
+31422 72679
+31423 29531
+31424 78779
+31425 56748
+31426 70898
+31427 27288
+31428 52639
+31429 37002
+31430 23516
+31431 31430
+31432 31437
+31433 31430
+31434 31430
+31435 31437
+31436 31430
+31437 78831
+31438 78926
+31439 40242
+31440 77289
+31441 66843
+31442 37490
+31443 33273
+31444 40058
+31445 49951
+31446 30337
+31447 79924
+31448 63164
+31449 40580
+31450 40335
+31451 67668
+31452 20867
+31453 29229
+31454 25121
+31455 53429
+31456 31944
+31457 31944
+31458 75683
+31459 31944
+31460 23016
+31461 80353
+31462 80354
+31463 68019
+31464 75222
+31465 62975
+31465 66736
+31466 36763
+31467 57471
+31468 46344
+31469 52561
+31470 25626
+31471 31483
+31472 31482
+31473 40410
+31473 68239
+31474 20792
+31475 65067
+31475 77232
+31476 31482
+31477 31483
+31478 19954
+31479 19954
+31480 55112
+31481 22137
+31482 39191
+31483 43718
+31484 55112
+31485 80355
+31486 46492
+31487 57032
+31488 21111
+31489 57033
+31490 3600
+31491 34387
+31492 39206
+31493 5547
+31494 57941
+31495 58838
+31496 7966
+31497 53093
+31498 27410
+31499 42046
+31500 62285
+31501 71171
+31502 10254
+31503 78335
+31504 62701
+31505 59993
+31506 79300
+31507 3605
+31508 48649
+31509 38869
+31510 52382
+31511 63781
+31512 71606
+31513 31537
+31514 20922
+31515 24082
+31516 55880
+31517 33657
+31518 52561
+31519 64306
+31520 37377
+31521 39920
+31522 39924
+31523 51242
+31524 43497
+31525 31528
+31526 54770
+31527 59329
+31528 48687
+31529 4842
+31530 58838
+31531 45757
+31532 29754
+31533 76447
+31534 54706
+31535 79573
+31536 31467
+31537 31939
+31538 34547
+31539 43238
+31540 71621
+31541 71603
+31542 71621
+31543 40633
+31544 35741
+31545 58158
+31546 78673
+31547 26094
+31548 75421
+31549 72946
+31550 18617
+31551 23715
+31552 23715
+31553 36484
+31554 67203
+31555 52558
+31556 43217
+31557 78570
+31558 23066
+31559 48426
+31560 64450
+31561 64447
+31562 26307
+31563 70086
+31564 31217
+31565 37337
+31566 33895
+31567 31771
+31568 53584
+31569 47665
+31570 3076
+31571 48083
+31572 53100
+31573 70074
+31574 38463
+31575 50267
+31576 58158
+31577 26760
+31578 71486
+31579 55343
+31580 70546
+31581 10361
+31582 23558
+31582 59369
+31583 73815
+31584 61621
+31585 42986
+31586 29660
+31587 35856
+31588 2470
+31588 66138
+31589 35365
+31590 50417
+31591 49504
+31592 28614
+31593 70794
+31594 66208
+31595 57134
+31596 27638
+31597 33100
+31598 64979
+31599 31334
+31600 68127
+31601 68127
+31602 68126
+31603 33382
+31604 33382
+31605 41424
+31606 45937
+31607 62647
+31608 61086
+31609 44315
+31610 39209
+31611 44315
+31612 33336
+31613 39525
+31614 75418
+31615 31614
+31616 49168
+31617 29754
+31618 48509
+31619 53328
+31620 71600
+31621 25277
+31622 4747
+31623 23581
+31624 47596
+31625 10340
+31626 23256
+31627 24640
+31628 33291
+31629 55163
+31630 44473
+31631 57318
+31632 23586
+31633 23586
+31633 48695
+31634 23581
+31635 48693
+31636 53351
+31637 66843
+31638 23433
+31639 57938
+31640 32852
+31641 76093
+31642 56659
+31642 80883
+31643 67573
+31644 68770
+31645 68770
+31646 43405
+31647 15784
+31648 58158
+31649 33582
+31650 57879
+31651 70760
+31652 25038
+31653 73830
+31654 27155
+31655 51429
+31656 73830
+31657 48396
+31658 55154
+31659 26168
+31660 47134
+31661 15577
+31662 36370
+31663 76269
+31664 28605
+31665 62053
+31666 27967
+31667 51984
+31668 15785
+31669 80028
+31670 23766
+31671 23870
+31672 67573
+31673 43261
+31674 70276
+31675 50841
+31676 70264
+31677 49504
+31678 49441
+31679 31678
+31679 59938
+31680 46628
+31681 77112
+31682 68398
+31683 50068
+31684 57812
+31685 63136
+31686 50069
+31687 23282
+31688 77869
+31689 35821
+31690 53303
+31691 50449
+31692 67574
+31693 52865
+31694 68184
+31695 60357
+31696 52833
+31697 42044
+31698 67365
+31699 64117
+31700 41424
+31701 73839
+31702 70219
+31703 73104
+31704 30784
+31705 30163
+31706 23286
+31707 37906
+31708 25526
+31709 57127
+31710 49710
+31711 44130
+31712 36370
+31713 26209
+31714 26209
+31715 69468
+31716 23616
+31717 79125
+31718 45684
+31719 52644
+31720 11340
+31721 11344
+31722 80568
+31723 63794
+31724 15600
+31725 32390
+31726 62790
+31727 37503
+31728 25599
+31729 67090
+31730 39724
+31731 68198
+31732 14919
+31733 50260
+31734 34515
+31735 1792
+31736 40579
+31737 34018
+31738 5323
+31739 73552
+31740 29954
+31741 71941
+31742 39353
+31743 31741
+31744 29762
+31745 33606
+31746 64481
+31747 28555
+31748 43246
+31749 41666
+31750 37847
+31751 809
+31752 38102
+31753 76220
+31754 74642
+31755 33007
+31756 40168
+31757 26096
+31758 26096
+31759 40060
+31760 33273
+31761 75629
+31762 81388
+31763 40819
+31764 55608
+31765 51202
+31766 56125
+31767 33615
+31768 36380
+31769 67036
+31770 1346
+31771 1349
+31772 79125
+31773 78479
+31774 23601
+31775 23846
+31776 72379
+31777 41666
+31778 79125
+31779 41666
+31780 43420
+31781 79125
+31782 79125
+31783 2911
+31784 48810
+31785 48810
+31786 31779
+31787 47665
+31788 42266
+31789 68177
+31790 54524
+31791 58281
+31792 41424
+31793 39645
+31794 23316
+31795 36881
+31796 76759
+31797 39191
+31798 62361
+31799 61147
+31800 55207
+31801 69769
+31802 55200
+31803 22362
+31804 64480
+31805 55463
+31806 67902
+31807 63421
+31808 26597
+31809 27817
+31810 26209
+31811 26209
+31812 74583
+31813 53055
+31814 29755
+31815 41424
+31816 51000
+31817 35513
+31818 26769
+31819 71941
+31820 36942
+31821 33139
+31822 45736
+31823 72625
+31824 51187
+31825 81066
+31826 31404
+31827 68149
+31828 70009
+31829 68832
+31830 40637
+31831 35513
+31832 78831
+31833 20415
+31834 34590
+31835 59717
+31836 44196
+31837 53795
+31838 67573
+31839 64307
+31840 55963
+31841 76489
+31842 23940
+31843 41068
+31844 45629
+31845 61684
+31846 65323
+31847 15474
+31848 76945
+31849 10770
+31850 33691
+31851 34705
+31852 55168
+31853 19697
+31854 55220
+31855 43087
+31856 39805
+31857 75257
+31858 35809
+31859 39764
+31860 66746
+31861 4698
+31862 41688
+31863 77497
+31864 38191
+31865 25634
+31866 33970
+31867 22799
+31868 26095
+31869 33876
+31870 55220
+31871 55885
+31872 32560
+31873 20679
+31874 55886
+31875 70868
+31876 66409
+31877 74496
+31878 75596
+31879 43829
+31880 47355
+31881 3703
+31882 31404
+31883 34175
+31884 34513
+31885 35461
+31886 44478
+31887 44478
+31888 50448
+31889 33788
+31890 37391
+31891 32955
+31892 4751
+31893 34175
+31894 25706
+31895 64979
+31896 37756
+31897 73402
+31898 78396
+31899 43587
+31900 68184
+31901 49777
+31902 42186
+31903 73571
+31904 9504
+31905 43882
+31906 67573
+31907 17154
+31908 38405
+31909 44336
+31910 40877
+31911 29012
+31912 56748
+31913 69287
+31914 23109
+31915 33226
+31916 33226
+31917 15000
+31918 48564
+31919 40498
+31920 26140
+31920 40498
+31921 59333
+31922 7293
+31923 36159
+31924 31921
+31925 1792
+31926 29240
+31927 34590
+31928 31905
+31929 38699
+31929 80276
+31930 46848
+31931 76524
+31932 14766
+31933 28105
+31934 43420
+31935 11311
+31936 34018
+31937 41424
+31938 55449
+31939 33609
+31939 34590
+31940 70264
+31941 34792
+31942 61228
+31943 61685
+31944 23864
+31945 78377
+31946 45384
+31947 74610
+31948 22525
+31949 49284
+31950 31944
+31951 22988
+31952 25765
+31953 65609
+31954 59106
+31955 24488
+31956 69525
+31957 78720
+31958 74367
+31959 11483
+31960 21198
+31961 57346
+31962 26769
+31963 42749
+31964 72355
+31965 44185
+31966 72350
+31967 51699
+31968 40393
+31969 11486
+31970 48300
+31971 47665
+31972 28356
+31973 23163
+31974 50302
+31975 22525
+31976 43020
+31977 32591
+31978 22422
+31979 54349
+31980 37006
+31981 73346
+31982 28241
+31983 45635
+31984 62443
+31985 29379
+31986 33790
+31987 33999
+31988 55343
+31989 41667
+31990 68381
+31991 74893
+31992 36370
+31993 67573
+31994 43844
+31995 35197
+31996 49731
+31997 72128
+31998 49777
+31999 37428
+32000 71676
+32001 18616
+32002 27104
+32003 45465
+32004 45465
+32005 29045
+32006 51878
+32007 63027
+32008 75655
+32009 28018
+32010 24507
+32011 60887
+32012 34515
+32013 37646
+32014 37818
+32014 65281
+32015 64315
+32016 25750
+32017 42051
+32018 78209
+32019 39373
+32020 23081
+32021 52358
+32022 77105
+32023 75456
+32024 29660
+32025 38359
+32026 59591
+32027 34705
+32028 39732
+32029 38575
+32030 29120
+32031 80187
+32032 23739
+32033 21404
+32034 40069
+32035 62333
+32036 43299
+32036 78818
+32037 43405
+32038 2276
+32039 43534
+32040 31318
+32041 43745
+32042 70015
+32043 49824
+32044 56013
+32045 25492
+32046 46880
+32047 62128
+32048 26039
+32049 19015
+32050 41072
+32051 41807
+32052 46977
+32053 19008
+32054 36452
+32055 43420
+32056 33110
+32057 57445
+32058 40894
+32059 65420
+32060 65420
+32061 49832
+32062 70285
+32063 70499
+32064 23654
+32065 56752
+32066 80514
+32067 53059
+32068 53418
+32069 67076
+32070 69122
+32071 5752
+32072 66403
+32073 58742
+32074 56896
+32075 64307
+32076 27594
+32077 16756
+32078 26877
+32079 10248
+32080 53183
+32081 59717
+32082 34590
+32083 46682
+32084 28662
+32085 31905
+32086 46944
+32087 47664
+32088 32082
+32088 59976
+32089 38467
+32090 32081
+32091 64015
+32092 36211
+32093 41054
+32094 65258
+32095 42459
+32096 33505
+32097 81056
+32098 28758
+32099 39193
+32100 47069
+32101 74670
+32102 55563
+32103 32102
+32104 61858
+32105 56022
+32106 2723
+32107 60747
+32108 54359
+32109 47880
+32110 61811
+32111 28380
+32112 1789
+32113 61147
+32114 47208
+32115 39336
+32116 41054
+32117 17664
+32118 72373
+32119 46993
+32120 38634
+32121 38635
+32122 32246
+32123 48230
+32124 43842
+32125 49904
+32126 72596
+32127 40498
+32128 40498
+32129 72415
+32130 57791
+32131 78965
+32132 27155
+32133 38086
+32134 38901
+32135 68601
+32136 77765
+32137 63058
+32138 41471
+32139 73815
+32140 30882
+32141 26157
+32142 79125
+32143 4819
+32144 71973
+32145 30670
+32146 30670
+32147 41588
+32148 36208
+32149 60444
+32150 60444
+32151 57315
+32152 55331
+32153 47121
+32154 72128
+32155 32140
+32156 54941
+32157 26730
+32158 62453
+32159 70086
+32160 26307
+32161 79992
+32162 28415
+32163 71291
+32164 1527
+32165 32977
+32166 39789
+32167 69189
+32168 37122
+32169 47665
+32170 31935
+32171 29240
+32172 34901
+32173 7577
+32174 18616
+32175 47163
+32176 69616
+32177 56259
+32178 23029
+32179 38467
+32180 24838
+32181 60531
+32182 68508
+32183 16819
+32184 43718
+32185 39191
+32186 43019
+32187 41430
+32188 31087
+32189 31087
+32190 18616
+32191 43000
+32192 39193
+32193 60073
+32194 28845
+32195 54094
+32196 12081
+32197 12081
+32198 58862
+32199 57526
+32200 69213
+32201 54782
+32202 74311
+32203 19954
+32204 48780
+32205 68266
+32206 43943
+32207 22529
+32208 32207
+32209 81074
+32210 32223
+32211 32223
+32212 42394
+32213 33813
+32214 36303
+32215 22300
+32215 22862
+32215 59211
+32216 69270
+32217 53328
+32218 54615
+32219 42270
+32220 11970
+32221 23025
+32222 65661
+32223 81063
+32224 32206
+32225 76877
+32226 69662
+32227 42459
+32228 39209
+32229 33563
+32230 9783
+32231 56366
+32232 32229
+32233 32229
+32234 32229
+32235 32229
+32236 32229
+32237 32229
+32238 35083
+32239 50569
+32240 41299
+32241 44496
+32242 68019
+32243 59317
+32244 30312
+32245 59242
+32246 56402
+32247 32246
+32248 39909
+32249 30055
+32250 61086
+32251 25633
+32252 33086
+32253 18616
+32254 69351
+32255 27203
+32256 26611
+32257 26263
+32258 29064
+32259 35361
+32260 31749
+32261 42002
+32262 43844
+32263 38465
+32264 53291
+32265 51599
+32266 12086
+32267 56949
+32268 32275
+32269 69573
+32270 72958
+32271 9399
+32272 75003
+32273 78540
+32274 28172
+32275 28845
+32276 63246
+32277 30843
+32278 6530
+32279 74093
+32280 76768
+32281 65449
+32282 66475
+32283 34817
+32284 49163
+32285 33647
+32286 80883
+32287 64459
+32288 32287
+32289 57873
+32290 32293
+32291 64465
+32292 68807
+32293 68818
+32294 69508
+32295 73104
+32296 51710
+32297 61135
+32298 46634
+32299 33469
+32300 33100
+32301 36928
+32302 43103
+32303 79213
+32304 16151
+32305 16149
+32306 32960
+32307 10872
+32308 58860
+32309 69351
+32310 41511
+32311 46682
+32312 71027
+32313 46705
+32314 46705
+32315 77182
+32316 33714
+32317 77763
+32318 65756
+32319 72690
+32320 32326
+32321 65893
+32322 20724
+32323 32410
+32324 70672
+32325 71245
+32326 35428
+32327 80883
+32328 50549
+32329 20661
+32330 63134
+32331 70775
+32332 43196
+32333 44429
+32334 70974
+32335 50232
+32336 41752
+32337 26208
+32338 43745
+32339 58365
+32340 42553
+32341 73652
+32342 22300
+32343 32896
+32343 66801
+32344 75627
+32344 78787
+32345 75628
+32346 22901
+32347 30317
+32348 31024
+32349 33537
+32350 34793
+32351 55135
+32352 72154
+32353 76500
+32354 78364
+32355 64307
+32356 43648
+32357 43904
+32358 55220
+32359 67805
+32360 60645
+32361 20398
+32362 73566
+32363 61702
+32364 40886
+32365 80738
+32366 36680
+32367 19643
+32368 79936
+32369 68165
+32370 47665
+32371 59970
+32372 23516
+32373 78831
+32374 53055
+32375 24471
+32376 49918
+32377 33917
+32378 33917
+32379 77113
+32380 23746
+32381 49152
+32381 60617
+32382 20724
+32383 41987
+32384 68844
+32385 40069
+32386 49265
+32387 56185
+32388 36753
+32389 46965
+32390 24723
+32391 27886
+32392 24723
+32393 66840
+32394 26611
+32395 51285
+32396 51286
+32397 49234
+32398 60870
+32399 33326
+32400 69328
+32401 29879
+32402 32410
+32403 32973
+32404 23746
+32405 23746
+32406 63474
+32407 3074
+32408 35406
+32409 64537
+32410 46358
+32411 40001
+32412 37033
+32413 32411
+32414 58403
+32415 60797
+32416 49194
+32417 71615
+32418 4515
+32419 49777
+32420 4738
+32421 39445
+32422 35406
+32423 12150
+32424 27001
+32425 39213
+32426 63903
+32427 28248
+32428 45790
+32429 32430
+32430 64694
+32431 50105
+32432 29243
+32433 31283
+32434 24728
+32435 20612
+32436 70098
+32437 80904
+32438 19008
+32439 23754
+32440 21099
+32441 68868
+32442 59242
+32443 33624
+32444 20660
+32445 33385
+32446 34527
+32447 34526
+32448 52051
+32449 71823
+32450 56272
+32451 40888
+32452 33335
+32453 21038
+32454 33337
+32455 33827
+32456 62288
+32457 21489
+32458 21490
+32459 13465
+32460 29471
+32461 32698
+32462 58742
+32463 40832
+32464 25648
+32465 39892
+32466 4515
+32467 6530
+32468 33581
+32469 39874
+32470 39875
+32471 39638
+32472 57529
+32473 79256
+32474 50320
+32475 64981
+32476 65225
+32477 23004
+32478 54972
+32479 43213
+32480 23004
+32481 49777
+32482 49192
+32483 71766
+32484 26209
+32484 79254
+32485 30642
+32486 32485
+32487 32210
+32488 33560
+32489 40357
+32490 32477
+32491 79256
+32492 32569
+32493 69679
+32494 75596
+32495 51524
+32496 70560
+32497 79646
+32498 32473
+32499 31104
+32500 71884
+32501 70786
+32502 75602
+32503 31240
+32504 2280
+32505 55132
+32506 64997
+32507 43019
+32508 30517
+32509 61796
+32510 59990
+32511 79256
+32512 42392
+32513 39638
+32514 59551
+32515 12079
+32516 54177
+32517 49918
+32518 47708
+32519 49918
+32520 37645
+32521 79987
+32522 47665
+32523 47665
+32524 17151
+32525 26193
+32526 57967
+32527 78797
+32528 54472
+32529 44017
+32530 42747
+32531 56022
+32532 58070
+32533 47665
+32534 32538
+32535 41944
+32536 77763
+32537 23438
+32538 43215
+32539 23542
+32540 33581
+32541 78467
+32542 31231
+32543 23290
+32544 40180
+32545 2911
+32546 23434
+32547 51105
+32548 78175
+32549 43930
+32550 31943
+32551 36942
+32552 29731
+32553 76759
+32554 62379
+32555 46688
+32556 72360
+32557 32555
+32558 37699
+32559 25275
+32560 25277
+32561 30114
+32562 56210
+32563 66544
+32564 61912
+32565 31493
+32566 81389
+32567 49777
+32568 21441
+32569 20724
+32570 69662
+32571 69662
+32572 78309
+32573 21783
+32574 54996
+32575 30520
+32576 32573
+32577 53546
+32578 62255
+32579 76884
+32580 47102
+32581 33551
+32582 19013
+32583 59179
+32584 27409
+32585 80860
+32586 64979
+32587 43745
+32588 77827
+32589 66628
+32590 65825
+32591 61189
+32592 20959
+32593 32592
+32594 32591
+32595 20346
+32596 38405
+32597 43805
+32598 24640
+32599 25471
+32600 33009
+32601 42999
+32602 40975
+32603 17850
+32604 33273
+32605 62461
+32606 66483
+32607 21323
+32608 42999
+32609 64297
+32610 75628
+32611 25706
+32612 32909
+32613 49777
+32614 25504
+32615 36942
+32616 51348
+32617 47665
+32618 47666
+32619 54177
+32620 13547
+32621 29712
+32622 48725
+32623 41987
+32624 4431
+32625 32624
+32626 64668
+32627 58567
+32628 79048
+32629 43101
+32630 24081
+32631 46904
+32632 63133
+32633 70978
+32634 32211
+32635 37406
+32636 72005
+32637 32634
+32638 50330
+32639 56361
+32640 47290
+32641 63985
+32642 55897
+32643 52382
+32644 32699
+32645 32642
+32646 14919
+32647 25902
+32648 37955
+32649 11312
+32650 43101
+32651 32596
+32652 42747
+32653 30337
+32654 34818
+32655 58614
+32656 40712
+32657 5168
+32658 25634
+32659 57221
+32660 64236
+32661 73125
+32662 73125
+32663 20690
+32664 40819
+32665 81056
+32666 36044
+32667 33827
+32668 21002
+32669 23482
+32670 49276
+32671 24769
+32672 27815
+32673 34819
+32674 37956
+32675 40001
+32676 42035
+32677 52734
+32678 29800
+32679 20683
+32680 36925
+32681 63474
+32682 76185
+32683 27706
+32684 20814
+32685 58838
+32686 42999
+32687 70264
+32688 28214
+32689 21114
+32690 41547
+32691 24088
+32692 59177
+32693 59394
+32694 30352
+32695 34936
+32696 57030
+32697 14894
+32698 32700
+32699 32700
+32700 55897
+32701 21117
+32702 55343
+32703 57790
+32704 38999
+32705 39913
+32706 33660
+32707 33369
+32708 16753
+32709 58238
+32710 55343
+32711 32710
+32712 32710
+32713 23560
+32714 27988
+32715 40646
+32716 32699
+32717 19009
+32718 69878
+32719 38030
+32720 39020
+32721 13463
+32722 17503
+32723 21415
+32724 21713
+32725 21827
+32726 47665
+32727 23136
+32728 16079
+32729 24250
+32730 24698
+32731 24883
+32732 24937
+32733 1910
+32734 28502
+32735 25382
+32736 25417
+32737 25540
+32738 29071
+32739 27235
+32740 27490
+32741 27634
+32742 28032
+32743 28415
+32744 28621
+32745 28859
+32746 28993
+32747 29083
+32748 29275
+32749 29513
+32750 29585
+32751 29617
+32752 30920
+32753 31174
+32754 34096
+32755 34354
+32756 35747
+32757 35813
+32758 36575
+32759 23975
+32760 37917
+32761 38005
+32762 38066
+32763 38737
+32764 39219
+32765 39335
+32766 40554
+32767 78831
+32768 7293
+32769 41651
+32770 47666
+32771 2911
+32772 43366
+32773 37220
+32774 43398
+32775 43647
+32776 34897
+32777 44209
+32778 45239
+32779 45663
+32780 45914
+32781 25125
+32782 67483
+32783 40083
+32784 40083
+32785 48326
+32786 48343
+32787 48469
+32788 48789
+32789 49234
+32790 49248
+32791 49249
+32792 50924
+32793 51224
+32794 51537
+32795 64518
+32796 42770
+32797 51878
+32798 53053
+32799 53113
+32800 53598
+32801 53802
+32802 54059
+32803 54126
+32804 80514
+32805 54281
+32806 54438
+32807 28911
+32808 55018
+32809 57132
+32810 25455
+32811 55935
+32812 56590
+32813 56636
+32814 56649
+32815 56649
+32816 56699
+32817 56957
+32818 56973
+32819 50247
+32820 57056
+32821 57298
+32822 18712
+32823 58403
+32824 58547
+32825 80306
+32826 59224
+32827 59510
+32828 62139
+32829 62546
+32830 62907
+32831 79805
+32832 63923
+32833 64785
+32834 65222
+32835 22099
+32836 53448
+32837 57720
+32838 68127
+32839 68867
+32840 37490
+32841 70139
+32842 70405
+32843 33442
+32844 71447
+32845 78954
+32846 72419
+32847 72582
+32848 59317
+32849 72914
+32850 73076
+32851 73409
+32852 73439
+32853 73439
+32854 74357
+32855 75487
+32856 76305
+32857 76610
+32858 70602
+32859 47665
+32860 78647
+32861 80483
+32862 79535
+32863 79641
+32864 79000
+32865 79798
+32866 79826
+32867 80134
+32868 38030
+32869 8486
+32870 79841
+32871 59800
+32872 80984
+32873 81168
+32874 81262
+32875 46597
+32876 81332
+32877 64214
+32878 31608
+32879 44412
+32880 49777
+32881 58295
+32882 59356
+32883 58374
+32884 52349
+32885 64372
+32886 80963
+32887 62808
+32888 10254
+32889 37647
+32890 37816
+32891 56749
+32892 46347
+32893 21831
+32894 21111
+32895 44315
+32896 37560
+32897 4040
+32898 23516
+32899 20895
+32900 20540
+32901 33468
+32902 74965
+32903 41106
+32904 24538
+32905 70600
+32906 68475
+32907 39923
+32908 77112
+32909 49777
+32910 71614
+32911 49194
+32912 54489
+32913 44315
+32914 61086
+32915 59790
+32916 80963
+32917 58738
+32918 20681
+32919 5547
+32920 46344
+32921 30629
+32922 51214
+32923 32917
+32924 64214
+32925 16754
+32926 16754
+32927 30508
+32928 4515
+32929 71593
+32930 40652
+32931 30526
+32932 77289
+32933 79632
+32934 31719
+32935 30508
+32936 76341
+32937 74805
+32938 51107
+32939 60582
+32940 60579
+32941 77065
+32942 29760
+32943 81072
+32944 29378
+32945 65975
+32946 59243
+32946 65981
+32947 33181
+32948 33112
+32949 72100
+32950 71796
+32951 77299
+32952 23938
+32953 71587
+32954 72935
+32955 40398
+32956 59394
+32957 43590
+32958 23410
+32959 10872
+32960 71597
+32961 78309
+32962 33022
+32963 39724
+32964 57372
+32965 54572
+32966 19006
+32967 21084
+32968 22361
+32969 22362
+32970 53351
+32971 29556
+32972 64465
+32973 40611
+32974 66431
+32975 53048
+32976 73571
+32977 67573
+32978 23865
+32979 37477
+32980 57590
+32981 40921
+32982 29251
+32983 38366
+32984 54205
+32985 74119
+32986 33073
+32987 37401
+32988 46922
+32989 74878
+32990 55454
+32991 52477
+32992 74878
+32993 30585
+32994 59912
+32995 59912
+32996 57471
+32997 74298
+32998 24572
+32999 65956
+33000 36316
+33001 34190
+33002 76476
+33003 8603
+33004 20407
+33005 47328
+33006 28555
+33007 71596
+33008 46347
+33009 33670
+33010 21441
+33011 32409
+33012 32410
+33013 81056
+33014 64090
+33015 68490
+33016 35194
+33017 58628
+33018 62459
+33019 21486
+33020 33582
+33021 34398
+33022 46921
+33023 49660
+33024 40069
+33025 34454
+33026 49342
+33027 26732
+33028 78273
+33029 65921
+33030 36627
+33031 872
+33032 31224
+33033 37677
+33034 55224
+33035 45843
+33036 26711
+33037 27706
+33038 50256
+33039 53628
+33040 54522
+33041 80377
+33042 33086
+33043 41571
+33044 20483
+33045 33048
+33046 43398
+33047 23260
+33048 58489
+33049 69620
+33050 49777
+33051 32473
+33052 32569
+33053 62701
+33054 23004
+33055 57548
+33056 64979
+33057 21490
+33058 46347
+33059 33056
+33060 47929
+33061 70876
+33062 37560
+33063 36924
+33064 46479
+33065 63455
+33066 29193
+33067 37905
+33068 66431
+33069 60464
+33070 57135
+33071 23434
+33072 34806
+33073 42747
+33074 54972
+33075 58489
+33076 64215
+33077 56272
+33078 57106
+33079 63887
+33080 40385
+33081 4747
+33082 63879
+33083 33077
+33084 21417
+33085 17849
+33086 55037
+33087 80377
+33088 39789
+33089 41006
+33090 27706
+33091 50322
+33092 52396
+33093 10474
+33094 52779
+33095 52999
+33096 56664
+33097 58489
+33098 62108
+33099 69620
+33100 64979
+33101 23102
+33102 50602
+33103 40612
+33104 46585
+33105 33038
+33106 38483
+33107 33108
+33108 44212
+33108 64204
+33109 71712
+33110 70422
+33111 39793
+33112 63691
+33113 24730
+33114 27706
+33115 55154
+33116 33917
+33117 20666
+33118 78928
+33119 57706
+33120 76051
+33121 14919
+33122 50702
+33123 50703
+33124 49777
+33125 77112
+33126 52558
+33127 67850
+33128 33149
+33128 53215
+33129 53220
+33130 54100
+33131 20650
+33132 72228
+33133 54360
+33134 31404
+33135 36037
+33136 33154
+33136 40819
+33137 41943
+33138 44056
+33139 45929
+33140 49824
+33141 35897
+33141 51429
+33142 64099
+33143 78307
+33144 12281
+33145 57826
+33146 59180
+33147 60202
+33148 39924
+33149 33154
+33149 68818
+33150 68953
+33151 70264
+33152 74965
+33153 39923
+33154 49777
+33155 24134
+33156 76715
+33157 23316
+33158 29358
+33159 18616
+33160 33469
+33161 33468
+33162 33475
+33163 62875
+33164 62880
+33165 71788
+33166 33367
+33167 50761
+33168 34590
+33169 20955
+33170 41922
+33171 77894
+33172 36943
+33173 63781
+33174 63172
+33175 59365
+33176 43019
+33177 40185
+33178 42120
+33179 64215
+33180 73757
+33181 49659
+33182 23707
+33183 60981
+33184 56178
+33185 31414
+33186 49163
+33187 21690
+33188 69841
+33189 34811
+33190 61541
+33191 34806
+33192 33186
+33193 50319
+33194 57694
+33195 74878
+33196 61185
+33197 33606
+33198 24718
+33199 45866
+33200 7956
+33201 62124
+33202 24878
+33203 43467
+33204 31630
+33205 33204
+33206 20845
+33207 21490
+33208 71292
+33209 44291
+33210 73907
+33211 29516
+33212 32419
+33213 32410
+33213 54377
+33214 29560
+33215 60797
+33216 55192
+33217 23010
+33218 55194
+33219 75820
+33220 55265
+33221 51122
+33222 1423
+33223 39809
+33224 46965
+33225 64240
+33226 30524
+33227 69794
+33228 31104
+33229 43019
+33230 56256
+33231 33189
+33232 34808
+33233 32331
+33234 49720
+33235 44315
+33236 7954
+33237 55268
+33238 28249
+33238 60746
+33239 51205
+33240 54100
+33241 54984
+33242 20925
+33243 66640
+33244 32298
+33245 56232
+33246 21490
+33247 33917
+33248 20681
+33249 29556
+33250 59180
+33251 51125
+33252 50037
+33253 26770
+33254 37471
+33255 37473
+33256 36619
+33257 33273
+33258 42025
+33259 63979
+33260 20925
+33261 23864
+33262 33112
+33263 21576
+33264 12078
+33265 22988
+33266 32317
+33267 10474
+33268 55731
+33269 23454
+33270 36680
+33271 21277
+33272 42553
+33273 73104
+33274 73104
+33275 1422
+33276 73125
+33277 45676
+33278 63974
+33279 33715
+33280 30491
+33281 52444
+33282 69328
+33283 68185
+33284 73104
+33285 33281
+33286 39699
+33287 50086
+33288 29528
+33289 32022
+33290 71709
+33291 20856
+33292 33714
+33293 38102
+33294 48627
+33295 43204
+33296 12977
+33297 39427
+33298 39465
+33299 21106
+33300 37404
+33301 61685
+33302 22427
+33303 22927
+33304 47335
+33305 57135
+33306 36942
+33307 54972
+33308 20727
+33309 33308
+33310 60568
+33311 33312
+33312 23016
+33313 34729
+33314 23560
+33315 67743
+33316 66672
+33317 79247
+33318 43580
+33319 29329
+33320 42747
+33321 80514
+33322 42747
+33323 23691
+33324 46356
+33325 62207
+33326 51897
+33327 52679
+33328 55366
+33329 54359
+33330 17850
+33331 70264
+33332 9481
+33333 65885
+33334 32909
+33335 55265
+33336 23751
+33337 37559
+33338 3074
+33339 3605
+33340 67573
+33341 75003
+33342 25745
+33343 32909
+33344 81190
+33345 21746
+33346 21131
+33347 37956
+33348 60988
+33349 36175
+33350 7504
+33351 51123
+33352 2462
+33353 63788
+33354 32909
+33355 60202
+33356 6923
+33357 33356
+33358 69318
+33359 48334
+33360 43590
+33361 69268
+33362 45736
+33363 41794
+33364 33167
+33365 31442
+33366 36790
+33367 72172
+33368 26203
+33369 66840
+33370 74058
+33371 32981
+33372 49950
+33373 21490
+33374 66492
+33375 68045
+33376 47330
+33377 69410
+33378 35503
+33379 17850
+33380 42118
+33381 22090
+33382 73104
+33383 49626
+33384 13570
+33385 37461
+33386 70877
+33387 45055
+33388 26594
+33389 54619
+33390 24570
+33391 16033
+33392 33517
+33393 21488
+33394 59474
+33395 33815
+33396 30456
+33397 37526
+33398 37461
+33399 32973
+33400 37647
+33401 32295
+33402 39627
+33403 32575
+33404 40292
+33405 36312
+33406 37704
+33407 35805
+33408 24674
+33409 53124
+33410 56389
+33411 52865
+33412 37497
+33413 16777
+33414 46389
+33415 32993
+33416 43587
+33417 21333
+33417 44439
+33418 26209
+33419 39219
+33420 74893
+33421 35122
+33422 47353
+33423 15785
+33424 72332
+33425 32582
+33426 33936
+33427 20794
+33427 24282
+33428 72268
+33429 40886
+33430 71598
+33431 20724
+33432 23707
+33433 70219
+33434 5547
+33435 52581
+33436 47064
+33437 54619
+33438 62257
+33439 28401
+33440 48983
+33441 72589
+33442 46596
+33443 46505
+33444 49052
+33445 59214
+33446 65844
+33447 52558
+33448 52558
+33449 71823
+33450 64325
+33451 49929
+33452 16770
+33453 29980
+33454 43817
+33455 45843
+33456 33470
+33457 56919
+33458 78831
+33459 49918
+33460 51202
+33461 61189
+33462 80725
+33463 54185
+33464 58334
+33465 42615
+33466 67487
+33467 48555
+33468 66431
+33469 19008
+33470 50212
+33471 6925
+33472 43215
+33473 64370
+33474 33858
+33475 30520
+33476 22534
+33477 64215
+33478 61925
+33479 27848
+33480 23128
+33481 24083
+33482 49456
+33483 55120
+33484 76767
+33485 50940
+33486 17790
+33487 29366
+33488 74169
+33489 74169
+33490 21206
+33491 51570
+33492 40450
+33493 56622
+33494 69940
+33495 60773
+33496 33671
+33497 33493
+33498 29552
+33499 32295
+33500 21831
+33501 68320
+33502 20681
+33503 61286
+33504 36223
+33505 61509
+33506 70610
+33507 32689
+33508 33510
+33509 21189
+33510 63668
+33511 63861
+33512 33511
+33513 33511
+33513 52299
+33514 33511
+33515 33511
+33516 49194
+33517 21169
+33518 35486
+33519 41792
+33520 41794
+33521 68763
+33522 68764
+33523 46134
+33524 33379
+33525 76094
+33526 37540
+33527 51522
+33528 41547
+33529 25761
+33530 65885
+33531 70169
+33532 36454
+33533 78286
+33534 32299
+33535 53628
+33536 4694
+33537 32605
+33538 75003
+33539 68813
+33540 27561
+33541 32582
+33542 32575
+33543 57526
+33544 71973
+33545 67089
+33546 47066
+33547 61564
+33548 52727
+33549 61570
+33550 54966
+33551 23751
+33552 25634
+33553 74298
+33554 33618
+33555 68202
+33556 79222
+33557 4444
+33558 34940
+33559 30528
+33560 61134
+33561 41790
+33562 64999
+33563 58489
+33564 57526
+33565 74893
+33566 36378
+33567 27001
+33568 5947
+33569 74946
+33570 79488
+33571 62808
+33572 49194
+33573 21235
+33574 33370
+33575 36942
+33576 66843
+33577 41572
+33578 33112
+33579 17151
+33580 50417
+33581 23560
+33582 33569
+33583 76094
+33584 50417
+33585 54996
+33586 49824
+33587 60202
+33588 34705
+33589 43454
+33590 59791
+33591 49448
+33592 64979
+33593 23585
+33594 23581
+33595 75978
+33596 35493
+33597 54606
+33598 37356
+33599 37359
+33600 14919
+33601 63418
+33602 33337
+33603 20920
+33604 42213
+33605 16751
+33606 78563
+33607 34831
+33608 42035
+33609 32713
+33610 63755
+33611 54736
+33612 39137
+33613 4840
+33614 31916
+33615 31916
+33616 20956
+33617 77773
+33618 36481
+33619 36657
+33620 70478
+33621 50292
+33622 33469
+33623 76908
+33624 46965
+33625 66649
+33626 30537
+33627 33456
+33628 32899
+33629 10474
+33630 36721
+33631 63870
+33632 23856
+33633 6498
+33634 32896
+33635 49585
+33636 32900
+33637 50212
+33638 29571
+33639 49699
+33640 62791
+33641 74965
+33642 66840
+33643 54972
+33644 49520
+33645 71730
+33646 73066
+33647 33525
+33648 49777
+33649 35431
+33650 32331
+33651 54945
+33652 37632
+33653 37542
+33654 37541
+33655 37643
+33656 33655
+33657 33655
+33658 23454
+33659 20724
+33660 32900
+33661 64230
+33662 32287
+33663 20626
+33664 76088
+33665 80883
+33666 23715
+33667 46966
+33668 53328
+33668 75002
+33669 33008
+33670 49777
+33671 49777
+33672 79081
+33673 37707
+33674 37538
+33675 36347
+33676 69442
+33677 33773
+33678 27730
+33679 37875
+33680 45059
+33681 45289
+33682 58748
+33683 58748
+33684 46965
+33685 36646
+33686 41547
+33687 43815
+33688 44315
+33689 43101
+33690 20955
+33691 61228
+33692 76447
+33693 58696
+33694 43398
+33695 39209
+33696 77407
+33697 32299
+33698 27207
+33699 52187
+33700 39841
+33701 76447
+33702 14911
+33703 30523
+33704 37778
+33705 20867
+33706 50773
+33707 30584
+33708 41507
+33709 76724
+33710 54617
+33711 55448
+33712 25178
+33713 26208
+33714 36942
+33715 81072
+33716 25905
+33717 27844
+33718 40686
+33719 51241
+33720 58822
+33721 59369
+33722 20407
+33723 70327
+33724 80883
+33725 36222
+33726 28240
+33727 27852
+33728 60533
+33729 33723
+33730 13570
+33731 41280
+33732 57682
+33733 13570
+33734 53626
+33735 37162
+33736 31944
+33737 65838
+33738 17029
+33739 33070
+33740 50585
+33741 13570
+33742 78383
+33743 49255
+33744 13570
+33745 13570
+33746 53626
+33747 13570
+33748 32973
+33749 37162
+33750 79255
+33751 32981
+33752 55237
+33753 28108
+33754 23933
+33755 45198
+33756 45199
+33757 22192
+33758 64539
+33759 33342
+33760 81056
+33761 29556
+33762 33189
+33763 68727
+33764 23433
+33765 23432
+33766 50549
+33767 63373
+33768 66431
+33769 20956
+33770 34973
+33771 20955
+33772 33273
+33773 37506
+33774 39133
+33775 55168
+33776 72464
+33777 20707
+33778 3605
+33779 48
+33780 41559
+33781 40808
+33782 33124
+33783 9842
+33784 59180
+33785 67487
+33786 67573
+33787 73439
+33788 74965
+33789 76945
+33790 38633
+33791 14919
+33792 50324
+33793 37643
+33794 50217
+33795 48003
+33796 78497
+33797 47315
+33798 70478
+33799 75629
+33800 20925
+33801 47406
+33802 28950
+33803 32604
+33804 74255
+33805 41108
+33805 9504
+33806 43000
+33807 70264
+33808 31860
+33809 32914
+33810 55267
+33811 62194
+33812 55265
+33813 63419
+33814 20683
+33815 59473
+33816 23707
+33817 33394
+33818 78357
+33819 73998
+33820 23939
+33821 46965
+33822 69701
+33823 66640
+33824 33475
+33825 76094
+33826 10474
+33827 52038
+33828 30222
+33829 32661
+33830 17385
+33831 64240
+33832 70111
+33833 28893
+33834 68882
+33835 66154
+33836 36316
+33837 22002
+33838 67036
+33839 40648
+33840 30508
+33841 37817
+33842 41123
+33843 49777
+33844 36942
+33845 40652
+33846 29378
+33847 30353
+33848 34373
+33849 2437
+33850 62875
+33851 62880
+33852 71788
+33853 33367
+33854 50198
+33855 77216
+33856 50212
+33857 77164
+33858 56893
+33859 52314
+33860 55529
+33861 25708
+33862 81080
+33863 61364
+33864 71587
+33865 30121
+33866 44315
+33867 23707
+33868 67743
+33869 73907
+33870 30523
+33871 79125
+33872 63986
+33873 20724
+33874 20676
+33875 23919
+33876 69409
+33877 32889
+33878 77656
+33879 35197
+33880 66234
+33881 33894
+33882 42121
+33883 51598
+33884 70089
+33885 4531
+33886 75904
+33887 51607
+33888 50919
+33889 47804
+33890 33894
+33891 30524
+33892 23032
+33893 58862
+33894 51607
+33895 61778
+33896 65553
+33897 32344
+33898 50943
+33899 21404
+33899 42787
+33900 33906
+33901 66298
+33902 25854
+33903 30161
+33904 1372
+33905 75629
+33906 55168
+33907 40234
+33908 33906
+33909 28972
+33910 41501
+33911 67973
+33912 2280
+33913 33914
+33914 48559
+33915 29240
+33916 81324
+33917 46347
+33918 60722
+33919 32675
+33920 23751
+33921 58489
+33922 1640
+33923 34562
+33924 31649
+33925 23433
+33926 7663
+33927 33455
+33928 33454
+33929 70978
+33930 76503
+33931 45843
+33932 23437
+33933 65435
+33934 77935
+33935 58955
+33936 57529
+33937 33936
+33938 60512
+33939 60514
+33940 35187
+33941 61912
+33942 46922
+33943 62883
+33944 41161
+33945 33307
+33945 55563
+33946 30212
+33947 16713
+33948 54015
+33949 21894
+33950 25540
+33951 56013
+33952 59819
+33953 67479
+33954 74271
+33955 62120
+33956 39336
+33957 53703
+33958 63870
+33959 39933
+33960 34705
+33961 78574
+33962 32191
+33963 60685
+33964 38621
+33965 11592
+33966 39067
+33967 78918
+33968 33455
+33969 81075
+33970 66641
+33971 75904
+33972 54973
+33973 39199
+33974 39204
+33975 27202
+33976 75745
+33977 55154
+33978 66611
+33979 37956
+33979 52558
+33980 79149
+33981 39724
+33982 37579
+33983 80778
+33984 69351
+33985 37579
+33986 37578
+33987 37579
+33988 48978
+33989 26157
+33990 71291
+33991 61995
+33992 59110
+33993 67493
+33994 22722
+33995 26293
+33996 34007
+33997 2911
+33998 42747
+33999 43844
+34000 74119
+34001 47665
+34002 79125
+34003 66210
+34004 59317
+34005 39336
+34006 39336
+34007 18616
+34008 34002
+34009 22044
+34010 2911
+34011 2911
+34012 18616
+34013 27561
+34014 23219
+34015 73282
+34016 7011
+34017 80369
+34018 53134
+34019 79366
+34020 33306
+34021 41054
+34022 22193
+34023 67606
+34024 70757
+34025 7577
+34026 80035
+34027 56022
+34028 40844
+34029 49918
+34030 50140
+34031 21155
+34032 30758
+34033 52460
+34034 60169
+34035 67365
+34036 42203
+34037 3601
+34038 16770
+34039 3601
+34040 68307
+34041 30461
+34042 24840
+34043 38524
+34044 38788
+34045 45843
+34046 28222
+34047 66499
+34048 47665
+34049 36942
+34050 32214
+34051 37975
+34052 47665
+34053 42553
+34054 47666
+34055 58576
+34056 18616
+34057 34007
+34058 69743
+34059 50223
+34060 33660
+34061 54100
+34062 27360
+34063 2911
+34064 72946
+34065 60948
+34066 78776
+34067 30315
+34068 51394
+34069 30316
+34070 28963
+34071 30315
+34072 80209
+34073 38551
+34074 3503
+34075 64863
+34076 34104
+34077 33073
+34078 71411
+34079 31217
+34080 79992
+34081 34104
+34082 65459
+34083 27086
+34084 40646
+34085 32347
+34086 43625
+34087 45438
+34088 41555
+34089 50646
+34090 31273
+34091 56111
+34092 44373
+34093 58862
+34094 63026
+34095 64549
+34096 47665
+34097 65620
+34098 17162
+34099 78954
+34100 79992
+34101 45422
+34102 74219
+34103 74964
+34104 65124
+34105 34037
+34106 34707
+34107 34921
+34108 55351
+34109 47106
+34110 38030
+34111 23282
+34112 62679
+34113 23285
+34114 35077
+34115 62679
+34116 33165
+34117 12304
+34118 60465
+34119 23282
+34120 33581
+34121 43476
+34122 62630
+34123 14920
+34124 43055
+34125 17636
+34126 17636
+34127 27638
+34128 75564
+34129 45830
+34130 25693
+34131 48780
+34132 80926
+34133 25530
+34134 36618
+34135 43420
+34136 56389
+34137 64117
+34138 55106
+34139 34104
+34140 71408
+34141 72946
+34142 73063
+34143 73907
+34144 4918
+34145 21351
+34146 49879
+34147 62304
+34148 17373
+34149 52970
+34150 73907
+34151 31334
+34152 74620
+34153 23516
+34154 59119
+34155 50285
+34156 50220
+34157 58723
+34158 70833
+34159 76249
+34160 49798
+34161 50576
+34162 4826
+34163 22534
+34164 2911
+34165 34729
+34166 23016
+34167 34166
+34168 60073
+34169 58216
+34170 60982
+34171 2437
+34172 40689
+34173 42031
+34174 32955
+34175 42213
+34176 51241
+34177 23410
+34178 27001
+34179 31205
+34180 42590
+34181 3293
+34182 20724
+34183 60465
+34184 32703
+34185 40580
+34186 39846
+34187 25038
+34188 65301
+34189 68817
+34190 49504
+34191 49699
+34192 39199
+34193 65861
+34194 6480
+34195 60982
+34196 76004
+34197 60981
+34198 66388
+34199 53531
+34200 71593
+34201 36942
+34202 64979
+34203 64251
+34204 78732
+34205 65921
+34206 60313
+34207 73152
+34208 55019
+34209 75002
+34210 57012
+34211 42239
+34211 81074
+34212 43810
+34213 70740
+34214 31610
+34215 68763
+34216 32909
+34217 51105
+34218 60575
+34219 53328
+34220 40297
+34221 40580
+34222 36879
+34223 30784
+34224 33086
+34225 29490
+34226 41424
+34227 70051
+34228 67158
+34229 30523
+34230 49333
+34231 37586
+34232 64822
+34233 36122
+34234 49333
+34235 36378
+34236 49793
+34237 37588
+34238 62089
+34239 62090
+34240 27009
+34241 43335
+34242 63986
+34243 44315
+34244 22534
+34244 62307
+34245 23286
+34246 40148
+34247 73331
+34248 45421
+34249 60487
+34250 34247
+34250 51417
+34251 56022
+34252 42476
+34253 27883
+34254 51803
+34255 79639
+34256 59505
+34257 49938
+34258 40498
+34259 28790
+34260 46661
+34261 77515
+34262 52753
+34263 52752
+34264 74670
+34265 77515
+34266 70607
+34267 70607
+34268 76671
+34269 36614
+34270 74550
+34271 69491
+34272 40819
+34273 63418
+34274 34276
+34275 31943
+34276 65298
+34277 50635
+34278 76447
+34279 68818
+34280 57531
+34281 66641
+34282 80991
+34283 33563
+34284 23808
+34285 55580
+34286 23814
+34287 71877
+34288 42747
+34289 74910
+34290 59613
+34291 22312
+34292 21100
+34293 25751
+34294 33715
+34295 49922
+34296 20703
+34297 20702
+34298 22311
+34299 35501
+34300 10434
+34301 59230
+34302 34290
+34303 34290
+34304 73907
+34305 27155
+34306 29706
+34307 46259
+34308 24909
+34309 42407
+34310 22519
+34311 34297
+34312 40804
+34313 47665
+34314 47666
+34315 78831
+34316 49918
+34317 66399
+34318 23958
+34319 23958
+34320 23958
+34321 23958
+34322 34558
+34323 40393
+34324 47665
+34325 31927
+34326 70011
+34327 24318
+34328 25488
+34329 77515
+34330 70090
+34331 75662
+34332 1793
+34333 24674
+34334 2911
+34335 30740
+34336 49825
+34337 37579
+34338 61996
+34339 75733
+34340 77803
+34341 36569
+34342 60857
+34343 69676
+34344 41424
+34345 34344
+34346 62298
+34347 41054
+34348 2911
+34349 76178
+34350 62296
+34351 29123
+34352 41054
+34353 54100
+34354 69338
+34355 75911
+34356 80815
+34357 67490
+34358 47796
+34359 42747
+34360 47761
+34361 74714
+34362 76138
+34363 58904
+34364 66753
+34365 58862
+34366 40570
+34367 47665
+34368 46398
+34369 63018
+34370 25181
+34371 29932
+34372 35284
+34373 69188
+34374 42515
+34375 25488
+34376 10770
+34377 32977
+34378 66252
+34379 80510
+34380 74893
+34381 40719
+34382 53888
+34383 39326
+34384 42509
+34385 76436
+34386 62354
+34387 21114
+34388 23706
+34389 55265
+34390 55343
+34391 64220
+34392 14919
+34393 34390
+34394 34390
+34395 21230
+34396 74464
+34397 14919
+34398 58489
+34399 50574
+34400 10845
+34401 58403
+34402 34400
+34403 43539
+34404 34399
+34405 23004
+34406 23128
+34407 41062
+34408 75003
+34409 44065
+34410 28895
+34411 49777
+34412 66334
+34413 61824
+34414 31962
+34415 34445
+34416 30691
+34417 33291
+34418 55132
+34419 23316
+34420 23918
+34421 23922
+34422 23967
+34423 32999
+34424 34443
+34425 66628
+34426 26769
+34427 34443
+34428 26253
+34429 20732
+34430 30606
+34431 23444
+34432 23696
+34433 20922
+34434 34503
+34435 35336
+34436 77868
+34437 73801
+34438 36525
+34439 36534
+34440 34445
+34441 37704
+34442 64979
+34443 42120
+34444 52970
+34445 50267
+34446 55220
+34447 25902
+34448 11446
+34449 55128
+34450 34449
+34451 34443
+34452 58819
+34453 58822
+34454 40239
+34455 69735
+34456 62456
+34457 44062
+34458 62902
+34459 42120
+34460 64237
+34461 15526
+34462 67008
+34463 67011
+34464 70255
+34465 70601
+34466 48092
+34467 72756
+34468 72923
+34469 34445
+34470 29754
+34471 22019
+34472 68727
+34473 49777
+34474 75032
+34475 77173
+34476 38870
+34477 10151
+34478 58826
+34479 45056
+34480 42965
+34481 32370
+34482 10789
+34483 44407
+34484 48576
+34485 42962
+34486 31468
+34487 42960
+34488 55443
+34489 32996
+34490 67973
+34491 10252
+34492 34479
+34493 67973
+34494 32996
+34495 60462
+34496 21111
+34497 21230
+34498 21107
+34499 27410
+34500 21111
+34501 69190
+34502 69190
+34503 46347
+34504 74169
+34505 74565
+34506 72907
+34507 72918
+34508 29378
+34509 71302
+34510 41296
+34511 59997
+34512 28245
+34513 73030
+34514 33470
+34515 55154
+34516 32674
+34517 68305
+34518 2437
+34519 72463
+34520 53584
+34521 33936
+34522 77283
+34523 79438
+34524 69698
+34525 41106
+34526 20920
+34527 53129
+34528 37400
+34529 58406
+34530 25493
+34531 29917
+34532 31610
+34533 49950
+34534 69770
+34535 48750
+34536 48756
+34537 70291
+34538 80902
+34539 8706
+34540 55884
+34541 77424
+34542 23850
+34543 81046
+34544 62348
+34545 31539
+34546 32661
+34547 54580
+34548 45753
+34549 48578
+34550 23938
+34551 39525
+34552 32213
+34553 22999
+34554 37579
+34555 60612
+34556 66432
+34557 38493
+34558 34812
+34559 35493
+34560 31087
+34561 78644
+34562 2436
+34563 78736
+34564 78741
+34565 50057
+34566 30070
+34567 23706
+34568 21487
+34569 33169
+34570 57526
+34571 34590
+34572 42120
+34573 42368
+34574 65981
+34575 33169
+34576 33169
+34577 35017
+34578 61620
+34579 62385
+34580 34590
+34581 22192
+34582 40921
+34583 57923
+34584 64317
+34585 27840
+34586 53383
+34587 59260
+34588 71408
+34589 79454
+34590 23560
+34591 64306
+34592 52726
+34593 28249
+34594 25523
+34595 42676
+34596 59179
+34597 40067
+34598 44315
+34599 42676
+34600 30017
+34601 62207
+34602 78365
+34603 54614
+34604 47665
+34605 47665
+34606 52349
+34607 60972
+34608 38621
+34609 56792
+34610 69976
+34611 62649
+34612 56920
+34613 72463
+34614 24944
+34615 2041
+34616 34717
+34617 2178
+34618 12965
+34619 61189
+34620 21205
+34621 27263
+34622 47121
+34623 27513
+34624 30026
+34625 42747
+34626 52460
+34627 41584
+34628 80181
+34629 48289
+34630 46682
+34631 38963
+34632 35140
+34633 22519
+34633 63412
+34634 44291
+34635 12078
+34636 63841
+34637 54804
+34638 39999
+34639 47541
+34640 34643
+34641 21286
+34642 41511
+34643 19939
+34644 67923
+34645 42165
+34646 2911
+34647 67490
+34648 32604
+34649 36116
+34650 34733
+34651 70086
+34652 53802
+34653 67777
+34654 80456
+34655 54089
+34656 59224
+34657 65222
+34658 68165
+34659 23053
+34660 23053
+34661 23032
+34662 28790
+34663 32178
+34664 34651
+34665 23040
+34666 49255
+34667 69137
+34668 7577
+34669 59151
+34670 58158
+34671 30488
+34672 32661
+34673 26591
+34674 32119
+34675 23933
+34676 27704
+34677 38634
+34678 80526
+34679 74503
+34680 27679
+34681 27679
+34682 67973
+34683 64096
+34684 41489
+34685 34764
+34686 35172
+34687 30784
+34688 58158
+34689 3923
+34690 39190
+34691 24318
+34692 26201
+34693 77662
+34694 36721
+34695 9481
+34696 78826
+34697 31608
+34698 20680
+34699 23815
+34700 25329
+34701 19006
+34702 37607
+34703 64051
+34704 34812
+34705 70974
+34706 31748
+34707 65435
+34708 64694
+34709 32023
+34710 68763
+34711 75906
+34712 74893
+34713 31571
+34714 71202
+34715 45933
+34716 79366
+34717 2911
+34718 2178
+34718 2179
+34719 2911
+34720 35339
+34721 43713
+34722 33272
+34723 37374
+34724 45084
+34725 30084
+34726 57781
+34727 52937
+34728 55132
+34729 52018
+34730 61679
+34731 59178
+34732 27155
+34733 78364
+34734 46882
+34735 3074
+34736 34734
+34737 52726
+34738 48628
+34739 67667
+34740 48091
+34741 36409
+34742 34752
+34743 43631
+34744 60105
+34745 41054
+34746 41666
+34747 2911
+34748 2911
+34749 74355
+34750 74356
+34751 36906
+34752 44070
+34753 35822
+34754 44044
+34755 20660
+34756 48003
+34757 56185
+34758 25014
+34759 34533
+34760 36753
+34761 47534
+34762 43113
+34763 50117
+34764 27485
+34765 33639
+34766 60465
+34767 57638
+34768 34613
+34769 36802
+34770 27687
+34771 56752
+34772 74786
+34773 53573
+34774 42541
+34775 49777
+34776 58961
+34777 72076
+34778 70086
+34779 70086
+34780 36116
+34781 53514
+34782 81069
+34783 41409
+34784 34673
+34785 50100
+34786 73981
+34787 29278
+34788 53962
+34789 60655
+34790 58158
+34791 39584
+34792 35741
+34793 76671
+34794 34537
+34795 22468
+34796 30740
+34797 68239
+34798 62137
+34799 64566
+34800 80319
+34801 71685
+34802 63026
+34803 80904
+34804 76066
+34805 22137
+34806 4746
+34807 4746
+34808 4746
+34809 34810
+34810 37955
+34811 20408
+34812 49777
+34813 71096
+34814 48485
+34815 66641
+34816 28212
+34817 64979
+34818 23128
+34819 23723
+34820 40046
+34821 20679
+34822 60773
+34823 23929
+34824 76579
+34825 59116
+34826 22319
+34827 23067
+34828 21395
+34829 59116
+34829 63149
+34830 42041
+34831 34819
+34832 59332
+34833 20707
+34834 74967
+34835 24769
+34836 49777
+34837 20814
+34837 53328
+34838 77744
+34839 77734
+34840 57359
+34841 37955
+34842 25127
+34843 78364
+34844 30521
+34845 60972
+34846 41555
+34847 78776
+34848 59505
+34849 41573
+34850 17503
+34851 29045
+34852 25765
+34853 28231
+34854 28621
+34855 31779
+34856 51224
+34857 59800
+34858 70430
+34859 7577
+34860 72390
+34861 80526
+34862 47665
+34863 22519
+34864 41498
+34865 37632
+34866 22517
+34867 4207
+34868 49590
+34869 56642
+34870 43876
+34871 35481
+34872 35481
+34873 35481
+34874 53291
+34875 53291
+34876 53291
+34877 52396
+34878 35461
+34879 72075
+34880 28242
+34881 46356
+34882 61504
+34883 59385
+34884 59385
+34885 2911
+34886 60202
+34887 34744
+34888 34745
+34889 41666
+34890 67805
+34891 65669
+34891 74893
+34892 50282
+34893 35461
+34894 28356
+34895 21095
+34896 61504
+34897 35144
+34898 68172
+34899 53129
+34900 39638
+34901 23016
+34902 79438
+34903 59317
+34904 57259
+34905 68946
+34906 80147
+34907 49057
+34908 41054
+34909 50849
+34910 31711
+34911 78309
+34912 78309
+34913 72767
+34914 46703
+34915 57635
+34916 39649
+34917 70974
+34918 70974
+34919 39724
+34920 66554
+34921 26039
+34921 45854
+34922 62443
+34923 29483
+34924 26923
+34925 59486
+34926 41829
+34927 80526
+34928 1785
+34928 34929
+34929 72614
+34930 77349
+34931 54941
+34932 23846
+34933 78268
+34934 22599
+34935 25304
+34935 60892
+34936 77186
+34937 77186
+34938 65632
+34939 67319
+34940 81080
+34941 33657
+34942 4694
+34943 52550
+34944 29556
+34945 59791
+34946 53328
+34947 29754
+34948 46479
+34949 52577
+34950 72217
+34951 71628
+34952 20386
+34953 4920
+34954 15499
+34955 31971
+34956 41424
+34957 26293
+34958 39100
+34959 71017
+34960 61434
+34961 41054
+34962 17334
+34963 32186
+34964 49777
+34965 70877
+34966 51202
+34967 64481
+34968 52753
+34969 43560
+34970 75820
+34971 56022
+34972 66233
+34973 49167
+34974 80025
+34975 64051
+34976 40536
+34977 78364
+34978 22479
+34979 23090
+34980 22191
+34981 11589
+34982 78524
+34983 35088
+34984 37471
+34985 34979
+34986 81061
+34987 22517
+34988 78596
+34989 68266
+34990 68804
+34991 57671
+34992 57660
+34993 73432
+34994 46902
+34995 28380
+34996 50919
+34997 75033
+34998 23255
+34999 35002
+35000 34537
+35001 49010
+35002 37065
+35003 56022
+35004 50646
+35005 41371
+35006 71299
+35007 37553
+35008 72880
+35009 23772
+35010 33367
+35011 37586
+35012 81245
+35013 17029
+35014 70786
+35015 70786
+35016 59625
+35017 62290
+35018 20724
+35019 39827
+35020 46220
+35021 37181
+35022 41159
+35023 59595
+35024 1785
+35024 35025
+35025 72614
+35026 35025
+35026 54436
+35027 37579
+35028 52120
+35029 72882
+35030 29979
+35031 40220
+35032 70973
+35033 40613
+35034 50092
+35035 72842
+35036 41689
+35037 50303
+35038 2436
+35039 62831
+35040 49941
+35041 21523
+35042 50427
+35043 4168
+35044 73432
+35045 39649
+35046 27302
+35047 74746
+35048 65226
+35049 53123
+35050 69293
+35051 68305
+35052 30491
+35053 73733
+35054 79125
+35055 24840
+35056 44065
+35057 35087
+35058 69189
+35059 52581
+35060 42049
+35061 74861
+35062 27440
+35063 4809
+35064 30693
+35065 30698
+35066 60678
+35067 67365
+35068 46922
+35069 65271
+35070 33827
+35071 42120
+35072 30222
+35073 47231
+35074 26664
+35075 77289
+35076 62679
+35077 51199
+35078 60677
+35079 79417
+35080 77069
+35081 59389
+35082 29230
+35083 27191
+35084 5947
+35085 21149
+35086 25376
+35087 27538
+35088 34965
+35089 33823
+35090 37818
+35091 80542
+35092 63963
+35093 47665
+35094 34729
+35095 27616
+35096 872
+35097 66671
+35098 35461
+35099 58369
+35100 73658
+35101 48305
+35102 2911
+35103 2911
+35104 58860
+35105 52876
+35106 25739
+35107 22451
+35108 27021
+35109 44044
+35110 65500
+35111 27679
+35112 43889
+35113 22468
+35114 62397
+35115 80479
+35116 34372
+35117 56792
+35118 52779
+35119 2911
+35120 44315
+35121 33771
+35122 70876
+35123 31273
+35124 43176
+35125 62296
+35126 45310
+35127 59246
+35128 43622
+35129 23723
+35130 44374
+35131 66308
+35132 10474
+35133 72747
+35134 4825
+35135 63845
+35136 80428
+35137 63854
+35138 68548
+35139 62296
+35140 33073
+35141 35654
+35142 79003
+35143 73213
+35144 47665
+35145 78816
+35146 4807
+35147 46589
+35148 69063
+35149 17162
+35150 79673
+35151 37560
+35152 80438
+35153 49452
+35154 49832
+35155 23029
+35156 60982
+35157 79125
+35158 20553
+35159 47373
+35160 54414
+35161 27348
+35162 65262
+35163 58751
+35164 33775
+35165 21598
+35165 27104
+35166 53200
+35167 29378
+35168 79639
+35169 43584
+35170 71302
+35171 78364
+35172 26251
+35173 28845
+35174 27718
+35175 58158
+35176 70877
+35177 73665
+35178 53067
+35179 50919
+35180 52460
+35181 35120
+35182 53810
+35183 36942
+35184 52326
+35185 34570
+35186 37542
+35187 23532
+35188 56749
+35189 75924
+35190 72880
+35191 40794
+35192 62680
+35193 2636
+35194 78596
+35195 56789
+35196 39254
+35197 71941
+35198 48963
+35199 20956
+35200 22427
+35201 26101
+35202 30057
+35203 30058
+35204 66294
+35205 61694
+35206 56022
+35207 76037
+35208 35201
+35209 70760
+35210 55132
+35211 76047
+35212 59178
+35213 28438
+35214 68807
+35215 36154
+35216 64314
+35217 61702
+35218 43842
+35219 23165
+35220 62290
+35221 81061
+35222 36942
+35223 81064
+35224 21746
+35225 20428
+35226 71786
+35227 33069
+35228 15784
+35229 57518
+35230 45326
+35231 64307
+35232 1787
+35233 34418
+35234 36872
+35235 64223
+35236 55731
+35237 59501
+35238 29719
+35239 65323
+35240 35228
+35241 30782
+35242 33583
+35243 29106
+35244 72217
+35245 61694
+35246 59369
+35247 45221
+35248 50569
+35249 41299
+35250 44496
+35251 50025
+35252 27521
+35253 81306
+35254 67573
+35255 32976
+35256 66369
+35257 58489
+35258 74119
+35259 26664
+35260 67587
+35261 43703
+35262 77698
+35263 28606
+35264 79366
+35265 79366
+35266 55657
+35267 55657
+35268 79366
+35269 76194
+35270 23585
+35271 59990
+35272 53182
+35273 23380
+35274 47934
+35275 53067
+35276 60300
+35277 27155
+35278 40180
+35279 50204
+35280 48776
+35281 19009
+35282 68883
+35283 43020
+35284 35288
+35285 25529
+35286 31841
+35287 23591
+35288 26157
+35289 55333
+35290 78816
+35291 54253
+35292 4877
+35293 41555
+35294 39645
+35295 33883
+35296 31981
+35297 40570
+35298 56957
+35299 20962
+35300 50086
+35301 72615
+35302 26012
+35303 52076
+35304 2440
+35305 51000
+35306 27009
+35307 30069
+35308 33891
+35309 23380
+35310 60568
+35311 34013
+35312 39874
+35313 39875
+35314 36159
+35315 46572
+35316 72946
+35317 30145
+35318 71017
+35319 41205
+35320 41203
+35321 41409
+35322 36969
+35323 80991
+35324 42984
+35325 78754
+35325 78776
+35326 10248
+35327 60458
+35328 78776
+35329 15691
+35330 20721
+35331 64033
+35332 41377
+35333 23912
+35334 43647
+35335 50272
+35336 23095
+35337 36928
+35338 23959
+35339 35331
+35340 55037
+35341 37653
+35342 29170
+35343 57152
+35344 38394
+35345 47665
+35346 39195
+35347 45260
+35349 63573
+35350 39373
+35351 31944
+35352 31944
+35353 70757
+35354 68993
+35355 81017
+35356 47239
+35357 23521
+35358 41608
+35359 19068
+35360 33639
+35361 33637
+35361 34997
+35362 63931
+35363 33165
+35364 48092
+35365 64652
+35366 62303
+35367 42021
+35368 48305
+35369 44054
+35370 23938
+35371 25761
+35372 28845
+35373 47665
+35374 43876
+35375 38079
+35376 75425
+35377 26741
+35378 56022
+35379 33949
+35380 35366
+35381 74186
+35382 37975
+35383 4709
+35384 30585
+35385 14919
+35386 76002
+35387 76002
+35388 44017
+35389 35609
+35390 14919
+35391 39177
+35392 26249
+35394 67560
+35395 16757
+35396 60742
+35397 60747
+35398 43019
+35399 35741
+35400 20925
+35401 59178
+35402 74557
+35403 36018
+35404 70578
+35405 36223
+35406 58614
+35407 27202
+35408 32295
+35409 35408
+35410 64979
+35411 55563
+35412 55154
+35413 70291
+35414 68378
+35415 62957
+35416 35460
+35417 44055
+35418 48142
+35419 66918
+35420 31717
+35421 41666
+35422 46524
+35423 58948
+35424 2178
+35425 2911
+35426 65487
+35427 1592
+35428 55243
+35429 63734
+35430 20626
+35431 63667
+35432 39427
+35433 42738
+35434 34524
+35435 20706
+35436 50267
+35437 39465
+35438 74298
+35439 37579
+35440 42553
+35441 68508
+35442 32553
+35443 64047
+35444 30633
+35445 21322
+35446 28621
+35447 49737
+35448 70336
+35449 66840
+35450 39146
+35451 25016
+35452 52493
+35453 42258
+35454 62418
+35455 48317
+35456 27441
+35457 64589
+35458 33273
+35459 36717
+35460 33367
+35461 53125
+35462 53125
+35463 38475
+35464 34207
+35465 66355
+35466 59223
+35467 81132
+35468 80668
+35469 80669
+35470 35788
+35471 59940
+35472 2911
+35473 68266
+35474 43943
+35475 61147
+35476 62687
+35477 42461
+35478 60828
+35479 39634
+35480 33742
+35481 37579
+35482 43718
+35483 39191
+35484 64191
+35485 29795
+35486 36304
+35487 14919
+35488 33370
+35489 49496
+35490 46431
+35491 53375
+35492 20922
+35493 60722
+35493 74587
+35494 63419
+35495 38870
+35496 60717
+35497 50810
+35498 28691
+35499 45753
+35500 19011
+35501 36222
+35502 52697
+35503 55135
+35504 40637
+35505 59144
+35506 60466
+35507 45787
+35508 43888
+35509 77200
+35510 37906
+35511 39199
+35512 41409
+35513 70327
+35514 29072
+35515 65858
+35516 70342
+35517 37906
+35518 20481
+35519 27711
+35520 27711
+35521 45326
+35522 35503
+35523 35503
+35524 35503
+35525 35503
+35526 35503
+35527 22726
+35528 52592
+35529 41573
+35530 78831
+35531 66641
+35532 32081
+35533 36222
+35534 75243
+35535 70988
+35536 73691
+35537 29414
+35538 62301
+35539 26506
+35540 61147
+35541 33320
+35542 24909
+35543 35561
+35544 75033
+35545 61818
+35546 53096
+35547 36942
+35548 74805
+35549 61623
+35550 60464
+35551 65020
+35552 70974
+35553 26954
+35554 68149
+35555 53312
+35556 34807
+35557 72946
+35558 60465
+35559 37262
+35560 872
+35561 76759
+35562 67573
+35563 36117
+35564 73540
+35565 39649
+35566 3503
+35567 66375
+35568 26900
+35569 20792
+35570 20792
+35571 59385
+35572 68239
+35573 50477
+35574 49818
+35575 38901
+35576 46345
+35577 40498
+35578 44212
+35579 59385
+35580 74893
+35581 20792
+35582 75813
+35583 23482
+35584 28816
+35585 34936
+35586 35338
+35587 33154
+35588 49959
+35589 70760
+35590 64096
+35590 75814
+35591 81056
+35592 68809
+35593 69865
+35594 54102
+35595 46593
+35596 42747
+35597 50447
+35598 69698
+35599 66599
+35600 61238
+35601 65851
+35602 57902
+35603 40298
+35604 66372
+35605 23856
+35606 57064
+35607 21701
+35608 40410
+35609 67711
+35610 23861
+35611 80593
+35612 40069
+35613 35612
+35614 35612
+35615 73536
+35616 20428
+35617 50005
+35618 22763
+35619 59388
+35620 50940
+35621 81069
+35622 26146
+35623 20612
+35624 74670
+35624 81303
+35625 33637
+35626 71788
+35627 67743
+35628 30461
+35629 62372
+35630 53546
+35631 67758
+35632 56389
+35633 35632
+35634 61157
+35635 61158
+35636 59317
+35637 49938
+35638 48832
+35639 74310
+35640 35637
+35641 52819
+35642 61381
+35643 76003
+35644 81406
+35645 37403
+35646 30222
+35647 45178
+35648 19954
+35649 33442
+35650 35648
+35651 69338
+35652 72747
+35653 56649
+35654 35655
+35655 71676
+35656 35655
+35657 59317
+35658 22798
+35659 2911
+35660 60685
+35661 68019
+35662 22137
+35663 23516
+35664 41774
+35664 56513
+35665 78831
+35666 22137
+35667 78537
+35668 32518
+35669 60095
+35670 73905
+35671 47610
+35672 35671
+35673 36928
+35674 44446
+35675 35680
+35675 44447
+35676 64325
+35677 59389
+35678 72236
+35679 26100
+35680 26101
+35680 55738
+35681 54071
+35682 54076
+35683 47726
+35684 26713
+35685 52998
+35686 61637
+35687 64357
+35688 35687
+35689 73907
+35690 35687
+35691 56868
+35692 55220
+35693 76972
+35694 76975
+35695 56441
+35696 78069
+35697 41604
+35698 56211
+35700 76908
+35701 71302
+35702 22068
+35703 38721
+35704 46075
+35705 35654
+35706 34484
+35707 48756
+35708 79344
+35709 76067
+35710 67400
+35711 49918
+35712 34729
+35713 43034
+35714 23015
+35715 48978
+35716 6525
+35717 23585
+35718 60130
+35719 69290
+35720 30535
+35721 59156
+35722 40585
+35723 7410
+35724 12737
+35725 21855
+35726 18616
+35727 47665
+35728 51655
+35729 30578
+35730 30244
+35731 40877
+35732 42747
+35733 57934
+35734 25816
+35735 42775
+35736 39525
+35737 58406
+35738 32177
+35739 41371
+35740 30017
+35741 43019
+35742 21493
+35743 41382
+35744 6498
+35745 41382
+35746 62397
+35747 42747
+35748 3702
+35749 42750
+35750 27104
+35751 1795
+35752 42567
+35753 80150
+35754 2911
+35755 45913
+35756 30581
+35757 7083
+35758 78654
+35759 58742
+35760 52727
+35761 36415
+35762 29278
+35763 10770
+35764 7577
+35765 25014
+35766 55659
+35767 41602
+35768 22002
+35769 29880
+35770 30520
+35771 56164
+35772 33771
+35773 32999
+35774 75013
+35775 41054
+35776 67621
+35777 42747
+35778 57529
+35779 81001
+35780 36619
+35781 73104
+35782 61086
+35783 12558
+35784 80113
+35785 34530
+35786 36942
+35787 62372
+35788 36942
+35789 66840
+35790 35788
+35791 62296
+35792 64915
+35793 54273
+35794 61147
+35795 58802
+35796 62547
+35797 22468
+35798 28300
+35799 28629
+35800 23482
+35801 60532
+35802 60531
+35803 42691
+35804 52717
+35805 63031
+35806 68763
+35807 53573
+35808 61189
+35809 49777
+35810 35808
+35810 75456
+35811 32380
+35811 35809
+35812 68763
+35813 47665
+35814 52396
+35815 7645
+35816 40717
+35817 22447
+35818 62162
+35819 40717
+35820 68149
+35821 33273
+35822 78907
+35823 30046
+35824 23282
+35825 53129
+35826 81389
+35827 30585
+35828 48657
+35829 56352
+35830 35829
+35831 35784
+35832 67339
+35833 24643
+35834 27623
+35835 7583
+35836 22759
+35837 39340
+35838 30456
+35839 21205
+35840 27074
+35841 49270
+35842 33273
+35843 68698
+35844 61228
+35845 78257
+35846 51198
+35847 21011
+35848 26794
+35849 32596
+35850 55741
+35851 29043
+35852 65234
+35853 52063
+35854 55037
+35855 55135
+35856 15499
+35857 80016
+35858 78663
+35859 33051
+35860 67573
+35861 2280
+35862 74119
+35863 30774
+35864 40514
+35865 69834
+35866 42377
+35867 42356
+35868 69839
+35869 58802
+35870 56207
+35871 77782
+35872 56748
+35873 60492
+35874 26923
+35875 60948
+35876 22517
+35877 26929
+35878 39525
+35879 67906
+35880 77020
+35881 64668
+35882 75553
+35883 35788
+35884 64307
+35885 26925
+35886 70189
+35887 4709
+35888 34613
+35889 36583
+35890 35891
+35891 54810
+35892 20724
+35893 33833
+35894 33844
+35895 39793
+35896 47816
+35897 36942
+35898 35900
+35899 56998
+35900 63984
+35901 65632
+35902 23433
+35903 74965
+35904 49950
+35905 37404
+35906 59912
+35907 5165
+35908 5165
+35909 62681
+35910 63652
+35911 4420
+35912 28907
+35912 28908
+35912 28909
+35913 39191
+35914 65124
+35915 43706
+35916 65124
+35917 41511
+35918 61321
+35919 1415
+35921 53126
+35922 30771
+35923 58640
+35924 49951
+35925 4203
+35926 59993
+35927 59990
+35928 41611
+35929 49527
+35930 30157
+35931 34519
+35932 63845
+35933 41666
+35934 4727
+35935 10770
+35936 73079
+35937 61228
+35938 64696
+35939 29034
+35940 59595
+35941 2911
+35942 50841
+35943 47665
+35944 53055
+35945 58527
+35946 28907
+35947 76476
+35948 67732
+35949 63918
+35950 68763
+35951 68764
+35952 70112
+35953 70115
+35954 34373
+35955 10434
+35956 51098
+35957 35938
+35958 30956
+35959 10770
+35960 35938
+35961 52970
+35962 76447
+35963 70560
+35964 52913
+35965 73978
+35966 33401
+35967 27877
+35968 36222
+35969 40069
+35970 30784
+35977 69391
+35978 69391
+35980 31307
+35981 15600
+35981 8509
+35982 35980
+35983 37497
+35984 33226
+35985 61086
+35986 76444
+35987 23285
+35988 43844
+35989 42661
+35990 27705
+35991 24263
+35992 63134
+35993 38600
+35994 41159
+35995 65796
+35996 49940
+35997 38421
+35998 52037
+35999 73104
+36000 52726
+36001 28410
+36002 55578
+36003 47665
+36004 47665
+36005 47665
+36006 57821
+36007 49777
+36008 23131
+36009 57586
+36010 28409
+36011 80020
+36012 36288
+36013 54743
+36014 37615
+36015 58276
+36016 64533
+36017 70449
+36018 62681
+36019 56631
+36020 70877
+36021 64979
+36022 49831
+36023 49545
+36024 27615
+36025 66193
+36026 61086
+36027 36029
+36027 57200
+36028 49777
+36029 47335
+36030 36044
+36031 26921
+36032 19954
+36033 20724
+36034 66850
+36035 37795
+36036 21870
+36037 42213
+36038 69491
+36039 42046
+36040 29484
+36041 67126
+36042 63980
+36043 46911
+36044 46347
+36045 50303
+36046 71605
+36047 30784
+36048 66746
+36049 14919
+36050 51836
+36051 68655
+36052 47175
+36053 74861
+36054 67510
+36055 39336
+36056 25751
+36057 53055
+36058 33183
+36059 21375
+36060 19595
+36061 58998
+36062 2041
+36063 29845
+36064 29395
+36065 48010
+36066 15002
+36067 79632
+36068 76475
+36069 25488
+36070 51487
+36071 65632
+36072 33581
+36073 25599
+36074 32387
+36075 21910
+36076 36290
+36077 51998
+36078 40664
+36079 24843
+36080 49777
+36081 64530
+36082 37707
+36083 2437
+36084 50198
+36085 79915
+36086 40046
+36087 59116
+36087 63149
+36088 20707
+36089 59178
+36090 20690
+36090 40613
+36091 67817
+36092 15964
+36093 49689
+36094 52815
+36095 58638
+36096 37958
+36097 36094
+36098 49777
+36099 64090
+36100 25617
+36101 50504
+36102 80778
+36103 61228
+36104 24486
+36105 9399
+36106 62875
+36107 62880
+36108 36791
+36108 77167
+36109 23483
+36110 30784
+36111 61685
+36112 80737
+36113 77184
+36114 40680
+36115 51487
+36116 35187
+36117 30301
+36118 40069
+36119 30784
+36120 78956
+36121 23848
+36122 20925
+36123 36220
+36124 59388
+36125 78397
+36126 58446
+36127 22002
+36128 65632
+36129 72281
+36130 64251
+36131 66792
+36132 71603
+36133 72679
+36134 41280
+36135 41284
+36136 61186
+36137 37586
+36138 71959
+36139 40182
+36140 8486
+36141 78776
+36142 55663
+36143 11481
+36144 55657
+36145 64212
+36146 58489
+36147 37202
+36148 54995
+36149 63143
+36150 54995
+36151 30508
+36152 36845
+36153 55659
+36154 50260
+36155 65764
+36156 66850
+36157 66850
+36158 42217
+36159 47887
+36160 56985
+36161 36883
+36162 62397
+36163 59922
+36164 59903
+36165 63050
+36166 74457
+36167 42946
+36168 34542
+36169 23560
+36170 16588
+36171 39177
+36172 43420
+36173 59300
+36174 15479
+36175 73125
+36176 75859
+36177 73125
+36178 37956
+36179 66938
+36180 69620
+36181 36222
+36182 49929
+36183 36188
+36184 29980
+36185 33273
+36186 22498
+36187 20814
+36187 66307
+36188 36220
+36189 55132
+36190 23585
+36191 27064
+36192 27063
+36193 54100
+36194 35223
+36195 57635
+36196 46347
+36197 78811
+36198 36125
+36199 30786
+36200 36122
+36201 33092
+36202 36194
+36203 63691
+36204 55220
+36205 61541
+36206 68768
+36207 66538
+36208 23560
+36209 24231
+36210 30524
+36211 23004
+36212 72217
+36213 23581
+36214 59178
+36215 64251
+36216 23482
+36217 23483
+36218 30687
+36218 4447
+36219 22002
+36220 63980
+36221 22191
+36222 30522
+36223 20894
+36224 36223
+36225 34688
+36226 36879
+36227 71715
+36228 52577
+36229 23960
+36230 48810
+36231 41950
+36232 41790
+36233 30337
+36234 55526
+36235 21010
+36236 22192
+36237 23544
+36238 81054
+36239 21100
+36240 49879
+36241 65844
+36242 36222
+36243 36222
+36244 20679
+36245 50198
+36246 36245
+36247 55783
+36248 5316
+36249 58745
+36250 39409
+36251 37851
+36252 6735
+36253 49534
+36254 55788
+36255 23723
+36256 60462
+36257 74496
+36258 75650
+36259 63962
+36260 36923
+36261 36690
+36262 53856
+36263 57666
+36264 72854
+36265 67889
+36266 46994
+36267 74119
+36268 48750
+36269 8706
+36270 80815
+36271 21375
+36272 77084
+36273 26861
+36274 52460
+36275 47121
+36276 72947
+36277 35770
+36278 22192
+36279 52105
+36280 36680
+36281 36899
+36282 20481
+36283 41157
+36284 42045
+36285 31105
+36286 51123
+36287 20485
+36288 36098
+36289 33670
+36290 33224
+36290 41158
+36291 37468
+36292 61086
+36293 66754
+36294 61383
+36295 39575
+36296 66260
+36297 49777
+36298 49408
+36299 37454
+36300 49408
+36301 62459
+36302 49408
+36303 53374
+36304 63677
+36305 32567
+36306 39327
+36307 72767
+36308 20924
+36309 20724
+36310 64306
+36311 33581
+36312 22659
+36313 51260
+36314 38750
+36315 59394
+36316 63979
+36316 64452
+36317 52314
+36318 33726
+36319 51784
+36320 64089
+36321 57035
+36322 79426
+36323 29249
+36324 23959
+36325 69600
+36326 31539
+36327 34547
+36328 20398
+36329 36415
+36330 20351
+36331 50481
+36332 30456
+36333 66767
+36334 55201
+36335 39493
+36336 37560
+36337 49538
+36338 51836
+36339 68878
+36340 52815
+36341 72306
+36342 43273
+36343 58365
+36344 23545
+36345 50248
+36346 22193
+36347 20694
+36348 37776
+36349 8602
+36350 28458
+36351 40283
+36352 39134
+36353 36222
+36354 41123
+36355 20391
+36356 2080
+36357 56749
+36358 77886
+36359 36942
+36360 35770
+36361 4466
+36362 33086
+36363 59389
+36364 30524
+36365 50105
+36366 40060
+36367 36618
+36368 35768
+36369 22002
+36370 21321
+36371 23004
+36372 47406
+36373 36478
+36374 20345
+36375 63980
+36376 70111
+36377 37645
+36378 30524
+36379 64215
+36380 73104
+36381 75632
+36382 22502
+36383 40851
+36384 54248
+36385 75632
+36386 36383
+36387 36383
+36388 78732
+36389 60310
+36390 34533
+36391 59388
+36392 36378
+36393 43019
+36394 38703
+36395 76131
+36396 40962
+36397 80883
+36398 33273
+36399 8933
+36400 80991
+36401 59446
+36402 54574
+36403 33830
+36404 65653
+36405 58257
+36406 69508
+36407 66523
+36408 5314
+36409 27028
+36410 55663
+36411 55657
+36412 53718
+36413 58193
+36414 27705
+36415 49537
+36416 31404
+36417 55168
+36418 21848
+36419 49777
+36420 23030
+36421 23081
+36422 66649
+36423 24088
+36424 53217
+36425 57194
+36426 66538
+36427 40629
+36428 39010
+36429 36308
+36430 37559
+36431 33525
+36432 59877
+36433 76171
+36434 23095
+36435 71315
+36436 79920
+36437 75063
+36438 33806
+36439 70264
+36440 62461
+36441 63153
+36442 38435
+36443 61791
+36444 36284
+36445 57700
+36446 56157
+36447 81080
+36448 37817
+36449 64476
+36450 64025
+36451 25745
+36452 39724
+36453 49777
+36454 33858
+36455 26202
+36456 40894
+36457 33857
+36458 76255
+36459 65988
+36460 36244
+36461 78688
+36462 48108
+36463 42747
+36464 43246
+36465 52727
+36466 50657
+36467 39474
+36468 27590
+36469 70919
+36470 70757
+36471 39682
+36472 64462
+36473 56162
+36474 36135
+36475 37817
+36476 36472
+36477 36472
+36478 20925
+36479 59299
+36480 22999
+36481 39134
+36482 63241
+36483 33273
+36484 20955
+36485 38869
+36486 49922
+36487 36667
+36488 49858
+36489 30456
+36490 58371
+36491 49777
+36492 22401
+36493 56888
+36494 75882
+36495 50100
+36496 11486
+36497 19993
+36498 68508
+36499 52382
+36500 27348
+36501 81389
+36502 64297
+36503 31608
+36504 60685
+36505 30784
+36506 47406
+36507 32259
+36508 7410
+36509 71593
+36510 49194
+36511 37955
+36512 46347
+36513 65898
+36514 71627
+36515 73147
+36516 71628
+36517 33224
+36518 36845
+36519 78364
+36520 20960
+36521 33226
+36522 36519
+36523 33254
+36524 49774
+36525 70374
+36526 70374
+36527 37727
+36528 64183
+36529 79248
+36530 64178
+36531 39703
+36532 75456
+36533 68198
+36534 4842
+36535 36378
+36536 33400
+36537 5317
+36538 30508
+36539 55220
+36540 58628
+36541 56346
+36542 30604
+36543 36415
+36544 62459
+36545 36377
+36546 66826
+36547 46633
+36548 47812
+36549 78309
+36550 67573
+36551 74464
+36552 30558
+36553 71593
+36554 55037
+36555 40478
+36556 71603
+36557 57787
+36558 59317
+36559 49876
+36560 72268
+36561 23715
+36562 36316
+36563 78307
+36564 32320
+36565 37707
+36566 37655
+36567 60169
+36567 80958
+36568 41054
+36569 49777
+36570 25634
+36571 58238
+36572 29980
+36573 57439
+36574 37702
+36575 37918
+36576 66239
+36577 66850
+36578 22658
+36579 79854
+36580 26577
+36581 73981
+36582 32950
+36583 55132
+36584 55132
+36585 55127
+36586 33505
+36587 5321
+36588 26591
+36589 41820
+36590 46270
+36591 36942
+36592 23739
+36593 21513
+36594 76178
+36595 21894
+36596 70974
+36597 49436
+36598 62327
+36599 63418
+36600 55211
+36601 45808
+36602 36612
+36603 36614
+36604 75505
+36605 52396
+36606 58467
+36607 76769
+36608 36605
+36609 31673
+36610 22528
+36611 27155
+36612 55210
+36613 38516
+36614 55223
+36615 36928
+36616 16770
+36617 36591
+36618 66538
+36619 72268
+36620 30097
+36621 76671
+36622 56305
+36623 59389
+36624 58460
+36625 58460
+36626 58460
+36627 62883
+36628 29430
+36629 58460
+36630 55829
+36631 37907
+36632 21111
+36633 69303
+36634 47215
+36635 20570
+36636 55443
+36637 36244
+36638 42775
+36639 5190
+36640 44302
+36641 53795
+36642 75384
+36643 62681
+36644 66815
+36645 65885
+36646 73104
+36647 78732
+36648 37741
+36649 64462
+36650 58626
+36651 66648
+36652 32498
+36653 33273
+36654 31677
+36655 33086
+36656 34268
+36657 36222
+36658 75655
+36659 63607
+36660 30509
+36661 40060
+36662 24767
+36663 39327
+36664 45059
+36665 55037
+36666 20714
+36667 43827
+36668 60773
+36669 69320
+36670 46412
+36671 41106
+36672 28253
+36673 40613
+36674 59580
+36675 50585
+36676 77186
+36677 63474
+36678 36222
+36679 42045
+36679 58187
+36680 37541
+36681 21100
+36682 30604
+36683 62575
+36684 36517
+36685 27706
+36686 70478
+36687 70919
+36688 57781
+36689 36942
+36690 40921
+36691 36379
+36692 60462
+36693 20345
+36694 27104
+36695 57590
+36696 44320
+36697 52307
+36698 23739
+36699 52581
+36700 21405
+36701 56185
+36702 50100
+36703 37816
+36704 52833
+36705 60733
+36706 29556
+36706 56164
+36707 37541
+36708 37543
+36709 25616
+36710 20694
+36711 49879
+36712 53217
+36713 38437
+36714 38437
+36715 20895
+36716 56664
+36717 28893
+36718 50198
+36719 80883
+36720 66538
+36721 39168
+36722 43889
+36723 52937
+36724 72218
+36725 55223
+36726 74557
+36727 43842
+36728 57278
+36729 70995
+36730 73691
+36731 35660
+36732 20465
+36733 43420
+36734 4727
+36735 36244
+36736 62110
+36737 2911
+36738 79125
+36739 37135
+36740 41214
+36741 30784
+36742 20675
+36743 66432
+36744 26094
+36745 56896
+36746 52727
+36747 53123
+36748 22887
+36749 4337
+36750 58150
+36751 30521
+36752 22371
+36753 56752
+36754 51570
+36755 73125
+36756 72268
+36757 43213
+36758 21084
+36759 45838
+36760 53220
+36761 37955
+36762 37955
+36763 80883
+36764 49951
+36765 36220
+36766 25628
+36767 26110
+36767 60357
+36768 43366
+36769 68257
+36770 49234
+36771 54703
+36772 8975
+36773 45392
+36774 78776
+36775 74119
+36776 68352
+36777 72391
+36778 37428
+36779 80514
+36780 76873
+36781 2911
+36782 65182
+36783 81080
+36784 45060
+36785 21351
+36786 81000
+36787 30770
+36788 57621
+36789 34806
+36790 23433
+36791 36208
+36792 70930
+36793 34973
+36794 38574
+36795 25257
+36796 36884
+36797 66239
+36798 62282
+36799 64451
+36800 45665
+36801 23972
+36802 41571
+36803 49605
+36804 23424
+36805 35408
+36806 75003
+36807 31730
+36808 37119
+36809 55897
+36810 61563
+36811 62784
+36812 76786
+36813 61335
+36814 64539
+36815 46084
+36816 20925
+36817 33273
+36818 41571
+36819 34940
+36820 78268
+36821 21398
+36822 60560
+36823 65935
+36824 77497
+36825 47139
+36826 37714
+36827 5317
+36828 59388
+36829 62374
+36830 72578
+36831 80595
+36832 33639
+36833 23290
+36834 22002
+36835 20920
+36836 71603
+36837 39808
+36838 39811
+36839 62997
+36840 79639
+36841 24486
+36842 79639
+36843 21375
+36844 79426
+36845 33226
+36846 42120
+36847 43402
+36848 64979
+36849 49534
+36850 48576
+36851 49744
+36852 69634
+36853 50761
+36854 23410
+36855 22002
+36856 41115
+36857 33068
+36858 37540
+36859 34912
+36860 49950
+36861 29358
+36862 61134
+36863 65898
+36864 62789
+36865 58835
+36866 50576
+36867 21395
+36868 58412
+36869 57305
+36870 36942
+36871 66008
+36872 39494
+36873 39027
+36874 60982
+36875 34197
+36876 78583
+36877 80114
+36878 31673
+36879 36125
+36880 37536
+36881 32288
+36882 72794
+36883 63540
+36884 37545
+36885 42217
+36886 43817
+36887 61541
+36888 65650
+36889 47929
+36890 43894
+36891 37492
+36892 28482
+36893 67365
+36894 19591
+36895 77340
+36896 55201
+36897 36680
+36898 37655
+36899 4970
+36900 71593
+36901 37821
+36902 35768
+36903 54972
+36904 36188
+36905 76378
+36906 37202
+36907 62443
+36908 30046
+36909 66035
+36910 48851
+36910 50792
+36911 60495
+36912 48810
+36913 66378
+36914 36222
+36915 36879
+36916 41571
+36917 67867
+36918 62575
+36919 34812
+36920 61621
+36921 10254
+36922 49504
+36923 63980
+36924 22002
+36925 39734
+36926 5547
+36927 49505
+36928 59389
+36929 63984
+36930 69287
+36931 21380
+36932 22362
+36933 20856
+36934 64465
+36935 36936
+36936 20428
+36937 73147
+36938 40291
+36939 20431
+36940 20342
+36941 36783
+36942 50212
+36943 40894
+36944 54523
+36945 36791
+36946 39638
+36947 37702
+36948 36082
+36949 16312
+36950 31089
+36951 23591
+36952 16312
+36953 54592
+36954 25649
+36955 37579
+36956 40581
+36957 56157
+36958 18616
+36959 49768
+36960 18224
+36961 45198
+36961 47698
+36962 25750
+36963 64035
+36964 75851
+36965 36222
+36966 31539
+36967 36423
+36968 53810
+36969 21831
+36970 63473
+36971 16753
+36972 39065
+36973 61837
+36974 33261
+36975 68501
+36975 75627
+36976 26442
+36977 2178
+36978 25357
+36979 70988
+36980 22749
+36980 34247
+36981 21065
+36982 62912
+36983 22203
+36984 20428
+36985 46613
+36986 45422
+36987 18616
+36988 18616
+36989 18451
+36990 80456
+36991 27772
+36992 68149
+36993 50624
+36994 62874
+36995 36994
+36996 36994
+36997 70478
+36998 32548
+36999 37138
+37000 80991
+37001 57645
+37002 11490
+37003 36796
+37004 63974
+37005 78586
+37006 23699
+37007 72218
+37008 73633
+37009 53122
+37009 53124
+37010 16771
+37011 64668
+37012 72794
+37013 66774
+37014 38435
+37015 61477
+37016 41068
+37017 33775
+37018 49737
+37019 69419
+37020 61563
+37021 1511
+37022 53220
+37023 61544
+37024 33730
+37025 54980
+37026 53629
+37027 63864
+37028 53221
+37029 80575
+37030 75151
+37031 27207
+37032 53347
+37033 37559
+37034 30771
+37035 55208
+37036 54972
+37037 54229
+37038 52639
+37039 73633
+37040 59385
+37041 44374
+37042 2949
+37042 77232
+37043 62443
+37044 51116
+37045 62687
+37046 79974
+37047 65672
+37048 75798
+37049 41054
+37050 59379
+37051 59388
+37052 74119
+37053 44193
+37054 41054
+37055 36721
+37056 79512
+37057 42929
+37058 55220
+37059 55154
+37060 55351
+37060 57066
+37061 33714
+37062 37615
+37063 53673
+37064 43246
+37065 66674
+37066 62808
+37067 81057
+37068 74893
+37069 81061
+37070 51098
+37071 37634
+37072 44130
+37073 25450
+37074 26726
+37075 45060
+37076 56309
+37077 55208
+37078 63546
+37079 21746
+37079 61710
+37080 42002
+37080 5751
+37081 68596
+37082 25778
+37083 30005
+37084 78789
+37085 20792
+37086 68239
+37087 46882
+37088 30301
+37089 50494
+37090 68177
+37091 35259
+37092 33637
+37093 55154
+37094 31051
+37095 50107
+37095 62839
+37096 79125
+37097 37906
+37098 29978
+37099 62488
+37100 32484
+37101 32481
+37102 20792
+37103 36865
+37104 24426
+37105 50120
+37106 26157
+37107 58269
+37108 58269
+37109 22759
+37110 22467
+37111 41299
+37112 44496
+37113 67868
+37114 63861
+37115 52038
+37116 55040
+37117 17385
+37118 67876
+37119 80896
+37120 36347
+37121 30174
+37122 50105
+37123 22777
+37124 76003
+37125 32900
+37126 69967
+37127 35543
+37128 62296
+37129 39427
+37130 34705
+37131 57833
+37132 37134
+37133 37134
+37134 39918
+37135 43745
+37136 36942
+37137 22432
+37138 41362
+37139 7191
+37140 41362
+37141 41413
+37142 41362
+37143 49777
+37144 52937
+37145 30180
+37146 58268
+37147 40424
+37148 72217
+37149 64979
+37150 30507
+37151 58489
+37152 76215
+37153 37149
+37154 37149
+37155 25853
+37156 22302
+37157 26711
+37158 28899
+37159 55203
+37160 40212
+37161 64465
+37162 37554
+37163 54996
+37164 21010
+37165 49777
+37166 39251
+37167 32288
+37168 33273
+37169 64979
+37170 76500
+37171 64361
+37172 59250
+37173 59242
+37174 57615
+37175 68683
+37176 24502
+37177 59242
+37178 20925
+37179 72676
+37180 37677
+37181 72679
+37182 58269
+37183 70867
+37184 36588
+37185 34807
+37186 76908
+37187 61243
+37188 24105
+37189 39186
+37190 30784
+37191 59389
+37192 20856
+37193 55037
+37194 40752
+37195 51153
+37196 74968
+37197 50841
+37198 54100
+37199 72325
+37200 40629
+37201 53446
+37202 50247
+37203 53182
+37204 35894
+37205 23516
+37206 24012
+37207 29008
+37208 31841
+37209 39486
+37210 32907
+37211 33130
+37212 37689
+37213 61625
+37214 62494
+37215 53132
+37216 78831
+37217 39502
+37218 76338
+37219 29497
+37220 47665
+37221 55201
+37222 62207
+37223 33833
+37224 35894
+37225 37219
+37226 63781
+37227 25436
+37228 63133
+37229 37219
+37230 52727
+37231 51107
+37232 4809
+37233 4810
+37234 22763
+37235 22691
+37236 43000
+37237 39195
+37238 36122
+37239 61702
+37240 39944
+37241 37540
+37242 59178
+37243 27021
+37244 38633
+37245 74557
+37246 36432
+37247 62456
+37248 79047
+37249 61316
+37250 33498
+37251 36885
+37252 47665
+37253 47666
+37254 61767
+37255 42553
+37256 22468
+37257 37111
+37258 37112
+37259 28878
+37260 21404
+37261 71823
+37262 79916
+37263 35308
+37264 32320
+37265 36163
+37266 58412
+37267 22786
+37267 22798
+37268 54248
+37269 3425
+37270 54248
+37271 72172
+37272 33086
+37273 63508
+37274 74896
+37275 73126
+37276 80883
+37277 71315
+37278 41054
+37279 67031
+37280 69525
+37281 38775
+37282 49775
+37283 62490
+37284 62888
+37285 3688
+37286 5321
+37287 5321
+37288 70750
+37289 39065
+37290 29659
+37291 66827
+37292 67573
+37293 71941
+37294 58158
+37295 70750
+37296 71291
+37297 37432
+37298 80456
+37299 39067
+37300 37303
+37301 39724
+37302 23285
+37303 67573
+37304 43882
+37305 74258
+37306 39918
+37307 55104
+37308 60532
+37309 2041
+37310 43240
+37310 45766
+37311 57408
+37312 28154
+37313 62374
+37314 16759
+37315 26927
+37316 48579
+37317 55110
+37318 75033
+37319 37320
+37320 78275
+37321 42407
+37322 23267
+37323 21398
+37324 26235
+37325 51240
+37326 77764
+37327 69524
+37328 21701
+37329 35595
+37330 78307
+37331 49220
+37332 59819
+37333 48832
+37334 5321
+37335 872
+37336 76067
+37337 33272
+37338 49317
+37339 29107
+37340 74779
+37341 46589
+37342 22798
+37343 54349
+37344 48803
+37345 33634
+37346 79410
+37347 60095
+37348 24459
+37349 37322
+37350 78831
+37351 25634
+37352 33274
+37353 30352
+37354 37033
+37355 80703
+37356 58838
+37357 55194
+37358 72218
+37359 45753
+37360 40707
+37361 32693
+37362 54294
+37363 34178
+37364 79254
+37365 61477
+37366 34512
+37367 22693
+37368 56402
+37369 56426
+37370 51875
+37371 59505
+37372 44320
+37373 18616
+37374 50105
+37375 23482
+37376 68763
+37377 37727
+37378 22869
+37379 39434
+37380 20690
+37381 38901
+37382 40580
+37383 40613
+37384 42120
+37385 42615
+37386 53481
+37387 21002
+37388 37803
+37389 54733
+37390 58615
+37391 63802
+37392 19012
+37393 56210
+37394 74496
+37395 75384
+37396 47876
+37397 77221
+37398 77733
+37399 78928
+37400 60678
+37401 63134
+37402 37702
+37403 33660
+37404 71593
+37405 33660
+37406 33771
+37407 65883
+37408 22693
+37409 55731
+37410 65285
+37411 72172
+37412 64179
+37413 64979
+37414 30585
+37415 21115
+37416 32710
+37417 74464
+37418 41996
+37419 41794
+37420 26919
+37421 14919
+37422 66234
+37423 53328
+37424 24607
+37425 35728
+37426 44313
+37427 38467
+37428 5751
+37429 37432
+37430 32663
+37431 65242
+37432 68398
+37433 49520
+37434 58657
+37435 23870
+37436 43952
+37437 21281
+37438 55784
+37439 25624
+37440 22765
+37441 25624
+37442 58819
+37443 64047
+37444 80883
+37445 59317
+37446 71713
+37447 25751
+37448 66367
+37449 71599
+37450 37446
+37451 61086
+37452 40069
+37453 58968
+37454 52817
+37455 37636
+37456 9482
+37457 62463
+37458 37701
+37459 33382
+37460 37149
+37461 72268
+37462 31590
+37463 57523
+37464 36637
+37465 46965
+37466 33226
+37467 46965
+37468 37721
+37469 41161
+37470 37632
+37471 33660
+37472 37702
+37473 23721
+37474 36509
+37475 78407
+37476 69635
+37477 64462
+37478 19007
+37479 36845
+37480 23282
+37481 36560
+37482 46347
+37483 24767
+37484 58257
+37485 58614
+37486 20343
+37487 20343
+37488 37776
+37489 61135
+37490 80704
+37491 80703
+37492 46965
+37493 39617
+37494 54972
+37495 20956
+37496 42738
+37497 33226
+37498 66506
+37499 70255
+37500 51957
+37501 62051
+37502 41264
+37503 42984
+37504 14919
+37505 74966
+37506 77112
+37507 63610
+37508 66579
+37509 63031
+37510 24673
+37511 10992
+37511 24119
+37512 23004
+37513 30517
+37514 22877
+37514 39627
+37515 33273
+37516 74209
+37517 37701
+37518 23619
+37519 69635
+37520 37657
+37521 69634
+37522 53706
+37523 33226
+37524 69635
+37525 37647
+37526 37461
+37527 37750
+37528 73801
+37529 50327
+37530 66304
+37531 28529
+37532 3705
+37533 55443
+37534 50327
+37535 36818
+37536 37471
+37537 36889
+37538 52051
+37539 21038
+37540 32899
+37541 33660
+37542 54580
+37543 25624
+37544 30699
+37545 36244
+37546 15594
+37547 15594
+37548 36638
+37549 69635
+37550 52840
+37551 63373
+37552 77733
+37553 71593
+37554 25094
+37555 49768
+37556 41828
+37557 37615
+37557 72614
+37558 60491
+37559 52038
+37560 49265
+37561 37560
+37562 39030
+37563 66538
+37564 39198
+37565 37404
+37566 66907
+37567 49777
+37568 70876
+37569 46347
+37570 37588
+37571 66422
+37572 37523
+37573 37522
+37574 23958
+37575 37632
+37576 78360
+37577 78361
+37578 33637
+37578 34997
+37579 58406
+37580 33639
+37581 37408
+37582 65258
+37583 33273
+37584 37750
+37585 37536
+37586 78382
+37587 56164
+37588 73015
+37589 78382
+37590 37497
+37591 78382
+37592 13901
+37593 61822
+37594 76940
+37595 80276
+37596 50841
+37597 36878
+37598 79647
+37599 79697
+37600 37632
+37601 78421
+37602 21404
+37603 55201
+37604 31677
+37605 39134
+37606 56187
+37607 37586
+37608 37523
+37609 76684
+37610 49387
+37611 80736
+37612 49617
+37613 33455
+37614 67743
+37615 31399
+37615 62372
+37616 71954
+37617 55372
+37618 20640
+37619 48816
+37620 28773
+37621 43580
+37622 33775
+37623 38564
+37624 47034
+37625 33137
+37626 47089
+37627 27952
+37628 37630
+37629 59903
+37630 72076
+37631 37617
+37632 41571
+37633 27700
+37634 50036
+37635 66538
+37636 49906
+37637 20955
+37638 57202
+37638 76879
+37639 51123
+37640 58386
+37641 61286
+37642 37523
+37643 50217
+37644 50481
+37645 33273
+37646 33273
+37647 73104
+37648 37647
+37649 56171
+37650 37646
+37651 37816
+37652 36473
+37653 33401
+37654 66579
+37655 37473
+37656 37733
+37657 49835
+37658 39705
+37659 20692
+37660 36637
+37661 30128
+37662 51487
+37663 29760
+37664 55529
+37665 58839
+37666 39724
+37667 49844
+37668 31802
+37669 52865
+37670 60466
+37671 37795
+37672 33637
+37673 64370
+37674 43216
+37675 43216
+37676 72676
+37677 72100
+37678 27706
+37679 66303
+37680 77204
+37681 66614
+37682 56752
+37683 30786
+37684 36316
+37685 56893
+37686 66421
+37687 36529
+37688 70374
+37689 39493
+37690 66641
+37691 15594
+37692 32900
+37693 39493
+37694 80568
+37695 22602
+37695 37721
+37696 50810
+37697 49619
+37698 63373
+37699 36244
+37700 51599
+37701 57548
+37702 23959
+37703 64215
+37704 40578
+37705 36884
+37706 37657
+37707 49777
+37708 66767
+37709 78265
+37710 24843
+37711 37517
+37712 40385
+37713 49554
+37714 56231
+37715 78397
+37716 61329
+37717 37588
+37718 23959
+37719 47857
+37720 37816
+37721 37522
+37722 35510
+37723 22312
+37724 22311
+37725 58628
+37726 37461
+37727 66767
+37728 51125
+37729 77339
+37730 50039
+37731 37461
+37732 39292
+37733 37149
+37734 53217
+37735 37676
+37736 50276
+37737 20955
+37738 69634
+37739 30784
+37740 40227
+37741 37477
+37741 37817
+37742 61686
+37743 49769
+37744 53289
+37745 20925
+37746 33226
+37747 22619
+37748 77200
+37749 71939
+37750 71952
+37751 37536
+37752 32899
+37753 23283
+37754 72880
+37755 38952
+37756 72100
+37757 60462
+37758 70898
+37759 50447
+37760 62681
+37761 70560
+37762 22519
+37763 48724
+37764 59976
+37765 59993
+37766 59994
+37767 39944
+37768 53293
+37769 20925
+37770 79697
+37771 54611
+37772 62289
+37773 47872
+37774 64979
+37775 37149
+37776 31598
+37777 37149
+37778 43215
+37779 20835
+37779 39427
+37780 41284
+37781 40292
+37782 59990
+37783 33401
+37784 49554
+37785 22003
+37786 59971
+37787 21217
+37788 59970
+37789 69410
+37790 70578
+37791 27618
+37792 35900
+37793 42120
+37794 23433
+37795 20895
+37796 32666
+37797 33715
+37798 34290
+37799 52280
+37800 53328
+37801 70208
+37802 64370
+37803 32955
+37804 39421
+37805 3147
+37806 29243
+37807 48628
+37808 33627
+37809 64274
+37810 27410
+37811 37415
+37812 38272
+37813 77112
+37814 20955
+37815 21451
+37816 56748
+37817 37645
+37818 77656
+37819 77659
+37820 55220
+37821 69634
+37822 37459
+37823 80883
+37824 18616
+37825 40629
+37826 79853
+37827 37197
+37828 15518
+37829 72103
+37830 21451
+37831 79090
+37832 21038
+37832 81061
+37833 22713
+37834 59426
+37835 11490
+37836 71851
+37837 51592
+37838 74893
+37839 38633
+37840 42775
+37841 34373
+37842 63928
+37843 22720
+37844 26945
+37844 30463
+37845 27622
+37846 28726
+37847 74779
+37848 36753
+37849 27125
+37850 27119
+37851 21206
+37852 74777
+37853 44330
+37854 69634
+37855 69701
+37856 76093
+37857 76094
+37858 10474
+37859 47752
+37860 30508
+37861 33273
+37862 20955
+37863 23918
+37864 37863
+37865 78750
+37866 49918
+37867 60685
+37868 47708
+37869 33078
+37870 34543
+37871 68182
+37872 25383
+37873 18616
+37874 37459
+37875 53129
+37876 47902
+37877 57812
+37878 58489
+37879 27190
+37880 38345
+37881 75419
+37882 49777
+37883 33581
+37884 38366
+37885 33445
+37886 63541
+37887 64223
+37888 32288
+37889 52281
+37890 864
+37891 37955
+37892 69381
+37893 54941
+37894 74078
+37895 72708
+37896 38721
+37897 60947
+37898 64317
+37899 73346
+37900 64979
+37901 43744
+37902 24538
+37903 64979
+37904 23410
+37905 33186
+37906 69634
+37907 21114
+37908 23339
+37909 37526
+37910 26094
+37911 61675
+37912 21589
+37913 57579
+37914 69634
+37915 37910
+37916 37910
+37917 50247
+37918 58489
+37919 69637
+37920 4694
+37921 52314
+37922 80778
+37923 30081
+37924 71638
+37925 15594
+37926 37877
+37927 63246
+37928 74893
+37929 71778
+37930 34480
+37931 16269
+37932 52143
+37933 57871
+37934 75456
+37935 42595
+37936 39789
+37937 47665
+37938 62397
+37939 62397
+37940 51996
+37941 27021
+37942 41547
+37943 23448
+37944 28905
+37945 70491
+37946 79832
+37947 58994
+37948 55210
+37949 62422
+37950 68759
+37951 20569
+37952 55213
+37953 74552
+37954 50923
+37955 25646
+37956 81061
+37957 66641
+37958 32900
+37959 33137
+37960 41987
+37961 59912
+37962 64187
+37963 79125
+37964 58948
+37965 27788
+37966 62875
+37967 62880
+37968 40544
+37969 41280
+37970 58948
+37971 32529
+37972 62207
+37973 52460
+37974 41054
+37975 29144
+37976 78365
+37977 7210
+37978 42354
+37979 47665
+37980 31325
+37981 70578
+37982 26229
+37983 26261
+37984 27785
+37985 39724
+37986 32392
+37987 61228
+37988 47665
+37989 33073
+37990 42560
+37991 61406
+37992 80147
+37993 69485
+37994 2911
+37995 74786
+37996 65226
+37997 67621
+37998 36409
+37999 70374
+38000 73409
+38001 75079
+38002 75079
+38003 79153
+38004 81025
+38005 62736
+38006 29695
+38007 51117
+38008 33007
+38009 32560
+38010 25275
+38011 32560
+38012 41910
+38013 69976
+38014 36885
+38015 67090
+38016 62738
+38017 59591
+38018 37472
+38019 28912
+38020 872
+38021 48093
+38022 7504
+38023 37955
+38024 20239
+38025 71111
+38026 53055
+38027 23255
+38028 51056
+38029 79682
+38030 22468
+38031 19954
+38032 53196
+38033 59974
+38034 49208
+38035 49534
+38036 80542
+38037 60466
+38038 71610
+38039 68080
+38040 21169
+38041 64979
+38042 77853
+38043 62453
+38044 56454
+38045 32320
+38046 74860
+38047 37354
+38048 11490
+38049 11594
+38050 28627
+38051 29413
+38052 48576
+38053 62453
+38054 71302
+38055 33856
+38056 33856
+38057 50863
+38058 31835
+38059 23349
+38060 37579
+38061 55279
+38062 15785
+38063 56022
+38064 46194
+38065 61147
+38066 76781
+38067 74783
+38068 22529
+38069 72133
+38070 68266
+38071 16771
+38072 31608
+38073 51712
+38074 57372
+38075 62304
+38076 2911
+38077 33165
+38078 23295
+38079 67560
+38080 66867
+38081 22517
+38082 23686
+38083 29623
+38084 29885
+38085 42615
+38086 44017
+38087 45503
+38088 53462
+38089 49777
+38090 61847
+38091 63788
+38092 70018
+38093 27131
+38094 75813
+38095 43106
+38096 21010
+38097 42595
+38098 20670
+38099 64979
+38100 20955
+38101 66745
+38102 48627
+38103 26994
+38104 59388
+38105 58369
+38106 21841
+38107 41125
+38108 71593
+38109 33772
+38110 80778
+38111 33505
+38112 49194
+38113 75010
+38114 15600
+38115 57881
+38116 50457
+38117 19394
+38118 39493
+38119 21835
+38120 50863
+38121 80778
+38122 25745
+38123 29475
+38124 7503
+38125 73948
+38126 41666
+38127 41669
+38128 56774
+38129 5344
+38130 61086
+38131 56886
+38132 40028
+38133 20636
+38134 33581
+38135 67573
+38136 24232
+38137 43420
+38138 50910
+38139 58838
+38140 15600
+38140 8509
+38141 51679
+38142 53546
+38143 49777
+38144 54934
+38145 57346
+38146 57382
+38147 70661
+38148 29954
+38149 46336
+38150 22137
+38151 56491
+38152 36860
+38153 76545
+38154 52571
+38155 38806
+38156 49534
+38157 39024
+38158 68538
+38159 80568
+38160 80568
+38161 25515
+38162 67490
+38163 42018
+38164 78831
+38165 42598
+38166 27021
+38167 61873
+38168 72446
+38169 55220
+38170 49699
+38171 33634
+38172 65632
+38173 55132
+38174 55127
+38175 46945
+38176 77121
+38177 81075
+38178 37614
+38179 75553
+38180 32955
+38181 55019
+38182 63880
+38183 21383
+38184 58948
+38185 26577
+38186 53123
+38187 62532
+38188 66753
+38189 25061
+38190 24445
+38191 49777
+38192 56989
+38193 65484
+38194 24250
+38195 40812
+38196 68878
+38197 50863
+38198 74251
+38199 30687
+38200 80568
+38201 64207
+38202 15522
+38203 78060
+38204 45193
+38205 51176
+38206 30740
+38207 72756
+38208 24856
+38209 25488
+38210 37249
+38211 67902
+38212 68510
+38213 34562
+38214 30983
+38215 31791
+38216 34796
+38217 34792
+38218 34993
+38219 25839
+38220 30578
+38221 64677
+38222 23082
+38223 30786
+38224 50247
+38225 38995
+38226 49619
+38227 38131
+38228 38497
+38229 68878
+38230 32320
+38231 22086
+38232 27233
+38233 41474
+38234 42224
+38235 42506
+38236 80568
+38237 8187
+38238 31649
+38239 64271
+38240 51670
+38241 46589
+38242 21311
+38243 57684
+38244 25079
+38245 53493
+38246 65200
+38247 15521
+38248 66281
+38249 38223
+38250 66976
+38251 67089
+38252 68239
+38252 71794
+38253 69983
+38254 40449
+38255 38254
+38256 73563
+38257 65743
+38258 45193
+38259 43967
+38260 66544
+38261 39493
+38262 24496
+38263 75690
+38264 40242
+38265 50863
+38266 25650
+38267 27532
+38268 35055
+38269 57001
+38270 32320
+38271 77201
+38272 32295
+38273 63492
+38274 70929
+38275 74962
+38276 50725
+38277 33229
+38278 49865
+38279 43584
+38280 43584
+38281 42114
+38282 33442
+38283 12970
+38284 61847
+38285 59900
+38286 63338
+38287 21835
+38288 34724
+38289 56692
+38290 62255
+38291 49194
+38292 80420
+38293 59544
+38293 72413
+38294 49832
+38295 60633
+38296 41424
+38297 23917
+38298 45198
+38299 52925
+38300 71475
+38301 62994
+38302 27444
+38303 65013
+38304 25451
+38305 69906
+38306 38346
+38307 41158
+38308 79936
+38309 45791
+38310 68080
+38311 6472
+38312 70952
+38313 71712
+38314 65452
+38315 37414
+38316 70496
+38317 38321
+38318 72891
+38319 73875
+38320 45640
+38321 80990
+38322 36044
+38323 61228
+38324 26152
+38325 27991
+38326 46293
+38327 54616
+38328 55851
+38329 80814
+38330 80848
+38331 79153
+38332 37887
+38333 56305
+38334 77497
+38335 22713
+38336 22763
+38337 22763
+38338 39362
+38339 71137
+38340 47665
+38341 21379
+38342 22983
+38343 7633
+38344 23591
+38345 57704
+38346 80542
+38347 70930
+38348 38528
+38349 75904
+38350 36690
+38351 66380
+38352 38169
+38353 38531
+38354 64590
+38355 80910
+38356 25583
+38357 26919
+38358 36783
+38359 80930
+38360 11312
+38361 81056
+38362 24091
+38363 34695
+38364 23483
+38365 26920
+38366 50196
+38367 80957
+38368 70974
+38369 23581
+38370 66761
+38371 24607
+38372 75521
+38373 31939
+38374 23680
+38375 64590
+38376 32229
+38377 29123
+38378 29123
+38379 53889
+38380 68728
+38381 42313
+38382 50419
+38383 57315
+38384 78365
+38385 21366
+38386 46505
+38387 23591
+38388 38341
+38389 72446
+38390 47665
+38391 30069
+38392 39745
+38393 77763
+38394 62051
+38395 36657
+38396 42002
+38397 37825
+38398 74965
+38399 26920
+38400 62541
+38401 24225
+38402 1279
+38403 38408
+38404 40166
+38405 44472
+38406 39703
+38407 34976
+38408 81061
+38409 50695
+38410 61186
+38411 40965
+38412 32899
+38413 81056
+38414 24091
+38415 66647
+38416 41407
+38417 34590
+38418 24909
+38419 41054
+38420 46501
+38421 42100
+38422 62443
+38423 45640
+38424 67904
+38425 62742
+38426 64590
+38427 37454
+38428 24840
+38429 27840
+38430 60771
+38431 33637
+38431 73571
+38432 56461
+38433 78212
+38434 23485
+38435 66641
+38436 44070
+38437 38395
+38438 41524
+38439 30449
+38440 60202
+38441 23968
+38442 65902
+38443 32977
+38444 51654
+38445 20614
+38446 17385
+38447 39649
+38448 76380
+38449 24504
+38450 48414
+38451 4920
+38452 25295
+38453 49286
+38454 49285
+38455 41349
+38456 66968
+38457 61171
+38458 71124
+38459 79230
+38460 35959
+38461 37198
+38462 24913
+38463 28154
+38464 71302
+38465 36665
+38466 80116
+38467 80781
+38468 38474
+38469 32209
+38470 65262
+38471 66394
+38472 70189
+38473 43240
+38474 55909
+38475 40220
+38476 49777
+38477 23739
+38478 75003
+38479 28746
+38480 68508
+38481 33229
+38482 39966
+38483 31927
+38484 33840
+38485 34591
+38486 24521
+38487 67403
+38488 67573
+38489 50863
+38490 42226
+38491 44196
+38492 56314
+38493 34695
+38494 57800
+38495 42738
+38496 68207
+38497 64257
+38498 25146
+38499 49777
+38500 38501
+38501 39191
+38502 43103
+38503 20925
+38504 53217
+38505 55037
+38506 37702
+38507 73648
+38508 60575
+38509 49092
+38510 42313
+38511 36638
+38512 28627
+38513 28627
+38514 79562
+38515 19954
+38516 76759
+38517 24308
+38518 63610
+38519 63610
+38520 58216
+38521 67194
+38522 80904
+38523 29447
+38524 26253
+38525 53892
+38526 62051
+38527 38521
+38528 47546
+38529 50275
+38530 27019
+38531 33616
+38532 33606
+38533 33606
+38534 33616
+38535 21382
+38536 38529
+38537 71851
+38538 79003
+38539 25854
+38539 79700
+38540 71941
+38541 64117
+38542 9399
+38543 48882
+38544 21108
+38545 53729
+38546 54938
+38547 13899
+38548 13901
+38549 32276
+38550 61686
+38551 39703
+38552 42738
+38553 39190
+38554 28880
+38555 38541
+38556 64257
+38557 55168
+38558 67365
+38559 77112
+38560 45640
+38561 33858
+38562 51107
+38563 61702
+38564 36942
+38565 67365
+38566 66943
+38567 70256
+38568 70256
+38569 41106
+38570 55168
+38571 33660
+38572 17385
+38573 80045
+38574 54572
+38575 80926
+38576 45643
+38577 78586
+38578 19961
+38579 52862
+38580 67667
+38581 37406
+38581 77289
+38582 25708
+38583 50658
+38584 68763
+38585 80150
+38586 65452
+38587 11483
+38588 79259
+38589 33575
+38590 31317
+38591 31317
+38592 50980
+38593 54574
+38594 64451
+38595 25529
+38596 50471
+38597 47428
+38598 62055
+38599 71302
+38600 47812
+38601 11405
+38602 36671
+38603 36753
+38604 55434
+38605 52397
+38606 75003
+38607 41547
+38608 62709
+38609 26228
+38610 61822
+38611 36942
+38612 68859
+38613 81389
+38614 27268
+38615 51468
+38616 38599
+38617 47277
+38618 65182
+38619 49783
+38620 62073
+38621 36409
+38622 7577
+38623 29660
+38624 43711
+38625 38703
+38626 61228
+38627 22525
+38628 35120
+38629 31024
+38630 78393
+38631 50841
+38632 51803
+38633 21404
+38634 21022
+38635 21023
+38636 27337
+38637 49472
+38638 32581
+38639 55220
+38640 32955
+38641 38633
+38642 77066
+38643 49777
+38644 79575
+38645 67856
+38646 70264
+38647 59957
+38648 61157
+38649 71941
+38650 79003
+38651 68804
+38652 48816
+38653 33305
+38654 25251
+38655 33305
+38656 53168
+38657 63403
+38658 71941
+38659 70578
+38660 21234
+38661 55350
+38662 34540
+38663 38505
+38664 61158
+38665 61152
+38666 47546
+38667 73346
+38668 38533
+38669 38533
+38670 38669
+38671 75655
+38672 43703
+38673 38672
+38674 4842
+38675 76037
+38676 22108
+38676 40686
+38677 75787
+38678 79360
+38679 10418
+38680 31677
+38681 37940
+38682 42863
+38683 44115
+38684 71786
+38685 51498
+38686 54858
+38687 57388
+38688 61625
+38689 39932
+38690 57660
+38691 62296
+38692 43844
+38693 69180
+38694 79366
+38695 78946
+38696 38686
+38696 73526
+38697 28242
+38698 58565
+38699 23064
+38700 32713
+38701 22529
+38701 58862
+38702 26861
+38703 33273
+38704 56325
+38705 48206
+38706 47665
+38709 60593
+38710 37955
+38711 37503
+38712 64215
+38713 40652
+38714 75172
+38715 71972
+38716 30774
+38717 32320
+38718 52382
+38719 10151
+38720 10249
+38721 22656
+38722 68878
+38723 63338
+38724 41054
+38725 5607
+38726 48750
+38727 60657
+38728 33272
+38729 26948
+38730 8706
+38731 80116
+38732 38723
+38733 38721
+38734 27477
+38735 27471
+38736 44056
+38737 23165
+38738 62304
+38739 33310
+38740 21075
+38741 54432
+38742 29071
+38743 26734
+38744 66787
+38745 31665
+38746 49751
+38747 67203
+38748 42368
+38749 29540
+38750 46347
+38751 32560
+38752 25276
+38753 21213
+38754 30558
+38755 57128
+38756 33078
+38757 18211
+38758 64551
+38759 38449
+38760 41054
+38761 32081
+38762 31998
+38763 54468
+38764 69068
+38765 70089
+38766 29183
+38767 60935
+38768 10845
+38769 65562
+38770 59379
+38771 73830
+38772 81373
+38773 73981
+38774 78296
+38775 79256
+38776 28964
+38777 66051
+38778 27104
+38779 23591
+38780 80021
+38781 39560
+38782 28306
+38783 57197
+38784 41916
+38785 80218
+38786 36295
+38787 70867
+38788 33971
+38789 40043
+38790 78591
+38791 77675
+38792 29695
+38793 46639
+38794 54732
+38795 60612
+38796 17849
+38797 53859
+38798 56792
+38799 52987
+38800 70750
+38801 47121
+38802 51335
+38803 67157
+38804 65993
+38805 35605
+38806 68654
+38807 41429
+38808 30161
+38809 78384
+38810 21417
+38811 25149
+38812 37202
+38813 54995
+38814 63143
+38815 61117
+38816 71303
+38817 37031
+38818 57132
+38819 22901
+38820 48576
+38821 23560
+38822 33970
+38823 33978
+38824 22988
+38825 36134
+38826 36135
+38827 55397
+38828 33609
+38829 29362
+38830 75647
+38831 23655
+38832 67573
+38833 43105
+38834 43718
+38835 39191
+38836 80306
+38837 45829
+38838 80134
+38839 80819
+38840 59932
+38841 68177
+38842 66688
+38843 60505
+38844 54972
+38845 24504
+38846 45056
+38847 31943
+38848 33644
+38849 33645
+38850 61822
+38851 64307
+38852 80204
+38853 80593
+38854 61822
+38855 34584
+38856 36458
+38857 37432
+38858 74629
+38859 33639
+38860 65893
+38861 33073
+38862 2911
+38863 30216
+38864 80984
+38865 54019
+38866 54732
+38867 61837
+38868 80902
+38869 71593
+38870 49764
+38871 71304
+38872 41189
+38873 77523
+38874 23790
+38875 24708
+38876 26861
+38877 28160
+38878 30855
+38879 51751
+38880 39363
+38881 21926
+38882 2911
+38883 80526
+38884 80514
+38885 42393
+38886 42393
+38887 51224
+38888 51224
+38889 54622
+38890 57666
+38891 76781
+38892 72747
+38893 74296
+38894 77803
+38895 80526
+38896 71315
+38897 44439
+38898 36219
+38899 59180
+38900 35722
+38901 32478
+38902 70265
+38903 32508
+38904 70974
+38905 45617
+38906 80761
+38907 80850
+38908 19954
+38909 40225
+38910 39433
+38911 61489
+38912 55163
+38913 37955
+38914 73754
+38915 20953
+38916 40844
+38917 67011
+38918 44428
+38919 55132
+38920 67876
+38921 41297
+38922 43111
+38923 37645
+38924 72271
+38925 52448
+38926 33565
+38927 49254
+38928 49876
+38929 60685
+38930 73315
+38931 52937
+38932 52448
+38933 57795
+38934 49777
+38935 52448
+38936 72271
+38937 59970
+38938 37446
+38939 37645
+38940 70478
+38941 37645
+38942 37446
+38943 40887
+38944 72271
+38945 37522
+38945 5317
+38946 20428
+38947 74893
+38948 55563
+38949 5320
+38950 73104
+38951 41783
+38952 44439
+38953 36377
+38954 37645
+38955 32666
+38956 20960
+38957 40008
+38958 80525
+38959 26184
+38960 68878
+38961 32320
+38962 21835
+38963 65718
+38964 38959
+38964 81303
+38965 65905
+38966 24018
+38967 23940
+38968 72218
+38969 48092
+38970 20774
+38971 55351
+38972 69137
+38973 42459
+38974 32663
+38975 60935
+38976 65562
+38977 10249
+38978 54253
+38979 49234
+38980 69137
+38981 76502
+38982 53500
+38983 48564
+38984 23449
+38985 67321
+38986 34004
+38987 72369
+38988 65279
+38989 57826
+38990 11482
+38991 30585
+38992 34590
+38993 67901
+38994 34972
+38995 51046
+38996 69320
+38997 38996
+38998 45996
+38999 77112
+39000 57812
+39001 39438
+39002 51000
+39003 65548
+39004 7410
+39005 45528
+39006 56022
+39006 61858
+39007 39005
+39008 57531
+39009 43844
+39010 30306
+39011 43844
+39012 47665
+39013 39193
+39014 78816
+39015 45059
+39016 32889
+39017 43844
+39018 43844
+39019 28341
+39020 50105
+39021 64979
+39022 32604
+39023 57543
+39024 49537
+39025 77580
+39026 63627
+39027 36222
+39028 65141
+39029 25624
+39030 22002
+39031 37400
+39032 60995
+39033 32987
+39034 32987
+39035 32987
+39036 70491
+39037 32987
+39038 30982
+39039 72848
+39040 34006
+39041 80818
+39042 34930
+39043 35890
+39044 41635
+39045 77362
+39046 32524
+39047 47586
+39048 47594
+39049 45715
+39050 51540
+39051 45723
+39052 52139
+39053 43631
+39054 78999
+39055 62736
+39056 68177
+39057 60995
+39058 80819
+39059 36569
+39060 23363
+39061 49619
+39062 42041
+39063 64308
+39064 45679
+39065 33606
+39066 64020
+39067 33616
+39068 23032
+39069 37645
+39070 27631
+39071 59722
+39072 24020
+39072 71491
+39073 36188
+39074 42738
+39075 76368
+39076 44450
+39077 19954
+39078 18616
+39079 72514
+39080 59389
+39081 29483
+39082 66641
+39083 22636
+39084 73658
+39085 65645
+39086 31414
+39087 28099
+39088 59389
+39089 23958
+39090 56311
+39091 64373
+39092 21071
+39093 41203
+39094 37902
+39095 74693
+39096 43101
+39097 37173
+39098 49904
+39099 75280
+39100 50569
+39101 41299
+39102 44496
+39103 59775
+39104 45924
+39105 71869
+39106 37004
+39107 45924
+39108 71869
+39109 37004
+39110 5821
+39111 66611
+39112 42358
+39113 39999
+39114 34799
+39115 76966
+39116 39525
+39117 27882
+39118 61539
+39119 36159
+39120 27700
+39121 46033
+39122 60628
+39123 50923
+39124 26100
+39125 40058
+39126 26101
+39127 39141
+39128 39138
+39129 45057
+39130 45063
+39131 39134
+39132 56285
+39133 62790
+39134 63980
+39135 50800
+39136 60982
+39137 75988
+39138 71606
+39139 20570
+39140 32917
+39141 71607
+39142 68537
+39143 68728
+39144 39243
+39145 43702
+39146 20920
+39147 39146
+39148 68728
+39149 75813
+39150 76927
+39151 67036
+39152 39702
+39153 26648
+39154 37239
+39155 45091
+39156 49777
+39157 60340
+39158 23960
+39159 45113
+39160 39616
+39161 35687
+39162 50569
+39163 20428
+39164 34388
+39165 66496
+39166 43647
+39167 7504
+39168 70995
+39169 39168
+39170 39168
+39170 40302
+39171 48742
+39172 45448
+39173 74896
+39174 80514
+39175 74773
+39176 62207
+39177 70494
+39178 78525
+39179 74428
+39180 71202
+39181 35543
+39182 57673
+39183 44171
+39184 22877
+39185 27292
+39186 64215
+39187 60787
+39188 24708
+39189 32160
+39190 41430
+39191 43703
+39191 64020
+39192 54702
+39193 13284
+39194 69117
+39195 69351
+39196 71416
+39197 936
+39198 6066
+39199 81061
+39200 49483
+39201 46344
+39202 50795
+39203 78033
+39204 70974
+39205 23069
+39206 28543
+39207 14919
+39208 46661
+39209 20955
+39210 33662
+39211 20856
+39212 64048
+39213 40398
+39214 64089
+39215 72217
+39216 64051
+39217 22254
+39218 42267
+39219 71676
+39220 63766
+39221 23165
+39222 23165
+39223 26597
+39224 57720
+39225 73658
+39226 59389
+39227 80737
+39228 23004
+39229 78651
+39230 74893
+39231 25647
+39232 49777
+39233 63373
+39234 63373
+39235 57787
+39236 59369
+39237 61344
+39238 41616
+39239 18839
+39240 20925
+39241 39233
+39242 65645
+39243 70978
+39244 22901
+39245 40819
+39246 66641
+39247 54877
+39248 40302
+39249 79673
+39250 37494
+39251 51803
+39252 37169
+39253 39021
+39254 40885
+39255 42682
+39256 32908
+39257 18712
+39258 56621
+39259 37955
+39260 40205
+39261 59781
+39262 43019
+39263 56389
+39264 71685
+39265 58996
+39266 58277
+39267 37579
+39268 68372
+39269 42380
+39270 52170
+39271 25461
+39271 56268
+39272 34997
+39273 71973
+39274 50260
+39275 64652
+39276 71737
+39277 47665
+39278 37579
+39279 55932
+39280 63779
+39281 33499
+39282 15151
+39283 49167
+39284 69485
+39285 75989
+39286 77112
+39287 14070
+39288 39290
+39289 33173
+39290 78364
+39291 65824
+39292 25613
+39293 36244
+39294 47722
+39295 58994
+39296 69071
+39297 32614
+39298 38725
+39299 23975
+39300 78660
+39301 37202
+39302 72628
+39303 62981
+39304 52120
+39305 65562
+39306 65562
+39307 32774
+39308 58369
+39309 36103
+39310 36103
+39311 76475
+39312 65562
+39313 32320
+39314 57346
+39315 44315
+39316 66216
+39317 52120
+39318 50417
+39319 41699
+39320 38787
+39321 40661
+39322 37495
+39323 11311
+39324 17385
+39325 29071
+39326 64257
+39327 24767
+39328 33056
+39329 23004
+39330 21189
+39331 37540
+39332 36922
+39333 56556
+39333 77132
+39334 52912
+39335 22691
+39336 17151
+39337 61228
+39338 29705
+39339 39427
+39340 39465
+39341 40069
+39342 24723
+39342 39345
+39343 41054
+39344 24730
+39345 36942
+39346 63299
+39347 33476
+39348 61686
+39349 39348
+39350 68844
+39351 54972
+39352 61702
+39353 25599
+39354 64462
+39355 51111
+39356 2081
+39357 62051
+39358 31927
+39359 23555
+39360 64317
+39361 51094
+39362 21169
+39363 2911
+39364 31307
+39365 49461
+39366 73134
+39367 38672
+39367 39191
+39368 14919
+39369 29484
+39370 50533
+39371 58838
+39372 79392
+39373 31104
+39374 63133
+39375 63533
+39376 32689
+39377 43454
+39378 31610
+39379 27001
+39380 31468
+39381 29378
+39382 39399
+39383 2041
+39384 20695
+39385 26536
+39386 28449
+39387 70670
+39388 31841
+39389 37366
+39390 37369
+39391 63383
+39392 35655
+39393 41800
+39394 43736
+39395 43876
+39396 46492
+39397 46838
+39398 72082
+39399 51957
+39400 39918
+39401 54308
+39402 55610
+39403 56268
+39404 56763
+39405 39496
+39406 39427
+39407 65553
+39407 80276
+39408 65718
+39409 66298
+39410 39427
+39411 34170
+39411 76879
+39412 50036
+39413 66260
+39414 71635
+39415 76778
+39416 78047
+39417 28758
+39418 33301
+39419 33627
+39420 33844
+39421 36942
+39422 37492
+39423 39427
+39424 39920
+39425 39924
+39426 53155
+39427 61685
+39428 63374
+39429 78587
+39430 40234
+39431 34695
+39432 70974
+39433 61685
+39434 39898
+39435 73425
+39436 20936
+39437 36925
+39438 77156
+39439 45924
+39440 76023
+39441 30797
+39442 39523
+39442 70212
+39443 51487
+39444 40688
+39445 33306
+39446 36666
+39447 55132
+39448 45924
+39449 55208
+39450 22988
+39451 39421
+39452 29553
+39453 36199
+39454 36654
+39455 71823
+39456 24566
+39457 29255
+39458 30158
+39459 54202
+39460 36416
+39461 50293
+39462 39503
+39463 65298
+39464 72257
+39465 78307
+39466 54229
+39467 61694
+39468 55154
+39469 55610
+39470 69698
+39471 57267
+39472 55208
+39473 37004
+39474 52689
+39475 32435
+39476 39445
+39477 55737
+39478 55741
+39479 77764
+39480 39505
+39481 46344
+39482 55757
+39483 80918
+39484 49605
+39485 24567
+39486 77216
+39487 33844
+39488 39503
+39489 39503
+39490 24127
+39491 35904
+39492 39489
+39493 36942
+39494 40234
+39495 12286
+39496 50200
+39497 39486
+39498 65959
+39499 70578
+39500 74579
+39501 75904
+39502 79362
+39503 20924
+39504 39503
+39505 61694
+39506 32955
+39507 49824
+39508 70600
+39509 20925
+39510 23560
+39511 62396
+39512 45924
+39513 55132
+39514 78175
+39515 30607
+39516 39393
+39517 39421
+39518 63881
+39519 78307
+39520 61694
+39521 59178
+39522 76002
+39523 76004
+39524 21894
+39525 64979
+39526 64979
+39527 66403
+39528 27978
+39529 65079
+39530 62659
+39531 62658
+39532 55037
+39533 40059
+39534 70876
+39535 73633
+39536 39535
+39537 39535
+39538 39209
+39539 45072
+39540 60495
+39541 79936
+39542 46512
+39543 78386
+39544 63967
+39545 21835
+39546 79125
+39547 47665
+39548 65663
+39549 38980
+39550 49575
+39551 48978
+39552 39551
+39553 39551
+39554 65449
+39555 1346
+39556 43246
+39557 37756
+39558 52437
+39559 62246
+39560 52958
+39561 21610
+39562 39564
+39563 39564
+39564 54572
+39565 69905
+39566 52120
+39567 72767
+39568 40614
+39569 65562
+39570 56125
+39571 65334
+39572 22984
+39573 54366
+39574 66538
+39575 37495
+39576 22312
+39577 66538
+39578 40686
+39579 30786
+39580 76931
+39581 21403
+39582 36424
+39583 59005
+39584 78456
+39585 49194
+39586 56621
+39587 53295
+39588 55037
+39589 13905
+39589 63313
+39590 39589
+39591 36265
+39592 22588
+39593 33438
+39594 36424
+39595 62257
+39596 58186
+39597 70757
+39598 18616
+39599 19954
+39600 36456
+39601 59299
+39602 53709
+39603 21027
+39604 30523
+39605 67934
+39606 40894
+39607 47665
+39608 71823
+39609 40824
+39610 78164
+39611 40962
+39612 39218
+39613 39219
+39614 23863
+39615 23290
+39616 55037
+39617 39293
+39618 59427
+39619 52833
+39620 52836
+39621 52396
+39622 39238
+39623 56689
+39624 63670
+39625 8369
+39626 77041
+39627 69940
+39628 39702
+39629 77656
+39630 40639
+39631 37359
+39632 32693
+39633 39331
+39634 36208
+39635 36210
+39636 30687
+39636 76067
+39637 78276
+39638 36791
+39639 33243
+39640 58626
+39641 20415
+39642 50447
+39643 58723
+39644 31925
+39645 31606
+39646 49612
+39647 57673
+39648 39647
+39649 57671
+39650 62290
+39651 22517
+39652 72218
+39653 26101
+39654 29471
+39655 67025
+39656 30157
+39657 73258
+39658 22534
+39659 34190
+39660 25800
+39660 77232
+39661 44374
+39662 7639
+39663 70139
+39664 25613
+39665 23008
+39666 34966
+39667 75655
+39668 27594
+39669 55223
+39670 63974
+39671 48490
+39672 40592
+39673 66896
+39674 56022
+39675 20460
+39676 20460
+39677 15785
+39678 25119
+39679 66520
+39680 55829
+39681 55831
+39682 23016
+39683 49461
+39684 52558
+39685 67876
+39686 10249
+39687 14919
+39688 66649
+39689 78831
+39690 66466
+39691 42738
+39692 72257
+39693 39445
+39694 21404
+39695 80134
+39696 61702
+39697 32999
+39698 41096
+39699 41571
+39700 23424
+39701 49777
+39702 39699
+39703 77112
+39704 22904
+39705 77112
+39706 74878
+39707 56441
+39708 79135
+39709 68502
+39710 58567
+39711 61014
+39712 50281
+39713 67036
+39714 66801
+39715 43257
+39716 50093
+39717 61541
+39718 50574
+39719 55209
+39720 61539
+39721 55890
+39722 20955
+39723 80926
+39724 80926
+39725 28529
+39726 59790
+39727 62245
+39728 73462
+39729 65645
+39730 52382
+39731 73104
+39732 9481
+39733 20920
+39734 20955
+39735 21395
+39736 21405
+39737 33715
+39738 39707
+39739 33273
+39740 48742
+39741 72075
+39742 81001
+39743 33637
+39744 60367
+39745 66538
+39746 49920
+39747 65663
+39748 22088
+39749 75508
+39750 49306
+39751 80114
+39752 32450
+39753 32082
+39754 29370
+39755 52578
+39756 52576
+39757 52577
+39758 40
+39759 67036
+39760 71791
+39761 33086
+39762 59976
+39763 32082
+39764 33894
+39765 22135
+39766 40302
+39767 33086
+39768 13574
+39769 66432
+39770 22758
+39771 33273
+39772 63980
+39773 39790
+39774 59976
+39775 35595
+39776 49918
+39777 26209
+39778 20051
+39779 67500
+39780 49918
+39781 54192
+39782 40554
+39783 64462
+39784 57645
+39785 58729
+39786 37579
+39787 25759
+39788 5547
+39789 23560
+39790 50122
+39791 72075
+39792 37956
+39793 35223
+39794 54518
+39795 63455
+39796 49612
+39797 37817
+39798 61186
+39799 33821
+39800 33475
+39801 64482
+39802 23128
+39803 8573
+39804 30608
+39805 49396
+39806 52726
+39807 66234
+39808 40991
+39809 62681
+39810 33224
+39811 33662
+39812 37905
+39813 74528
+39814 53190
+39815 62174
+39816 27410
+39817 33754
+39818 61822
+39819 53192
+39820 39811
+39821 39824
+39822 56105
+39823 6925
+39824 59369
+39825 39808
+39826 36380
+39827 64025
+39828 67904
+39829 78563
+39830 22111
+39831 72222
+39832 20415
+39833 49918
+39834 25761
+39835 37560
+39836 62290
+39837 39810
+39838 39810
+39839 56659
+39840 47665
+39841 38830
+39842 29532
+39843 69715
+39844 49918
+39845 55351
+39846 45301
+39847 74968
+39848 72218
+39849 55223
+39850 45091
+39851 36614
+39852 36612
+39853 58446
+39854 19009
+39855 5320
+39856 45059
+39857 48727
+39858 29471
+39859 60685
+39860 56919
+39861 49777
+39862 27027
+39863 33476
+39864 58453
+39865 60340
+39866 35687
+39867 57846
+39867 61118
+39868 59917
+39869 21490
+39870 70601
+39871 74486
+39872 6926
+39873 70607
+39874 55208
+39875 40611
+39876 43423
+39877 66672
+39878 72589
+39879 40498
+39880 55351
+39881 40182
+39882 30786
+39883 76975
+39884 29998
+39885 57514
+39886 3293
+39887 45199
+39888 52930
+39889 73754
+39890 22545
+39891 67168
+39892 50725
+39893 43101
+39894 61086
+39895 33009
+39896 27021
+39897 36942
+39898 61685
+39899 43107
+39900 38559
+39901 52912
+39902 45676
+39903 39898
+39904 79920
+39905 13131
+39906 36245
+39907 46541
+39908 40443
+39909 71593
+39910 43497
+39911 52558
+39912 33624
+39913 46347
+39914 24725
+39915 80514
+39916 56763
+39917 30046
+39918 69471
+39919 27725
+39920 49777
+39921 54572
+39922 3707
+39923 23068
+39923 64048
+39924 24538
+39925 67573
+39926 54116
+39927 48937
+39928 39067
+39929 55366
+39930 70974
+39931 63891
+39932 63870
+39933 62372
+39934 63892
+39935 49504
+39936 29189
+39937 49930
+39938 62463
+39939 49777
+39940 62461
+39941 20955
+39942 52558
+39943 39867
+39944 49661
+39945 73104
+39946 40877
+39947 61621
+39948 39949
+39949 11312
+39950 39949
+39951 61228
+39952 21831
+39953 20415
+39954 33273
+39955 64158
+39956 59385
+39957 72217
+39958 23484
+39959 49691
+39960 39963
+39961 57679
+39962 23908
+39963 52132
+39964 19011
+39965 66447
+39966 49504
+39967 45198
+39968 49777
+39969 57128
+39970 29840
+39971 20724
+39972 59608
+39973 70757
+39974 32699
+39975 21835
+39975 42392
+39976 32512
+39977 29366
+39978 33581
+39979 10252
+39980 30508
+39981 33852
+39982 20968
+39983 21783
+39984 21487
+39985 23683
+39986 40498
+39987 49918
+39988 49870
+39988 49904
+39989 40069
+39990 28897
+39991 53359
+39992 21787
+39993 37560
+39994 64131
+39995 73279
+39996 59178
+39997 22519
+39998 35694
+39999 61784
+40000 51806
+40001 59394
+40002 38559
+40003 31493
+40004 49777
+40005 79534
+40006 28542
+40007 49824
+40008 41571
+40009 52912
+40010 50319
+40011 6926
+40012 21128
+40013 49942
+40014 23968
+40015 49941
+40016 52396
+40017 33038
+40018 31555
+40020 34729
+40021 81400
+40022 81401
+40023 81406
+40024 45113
+40025 50569
+40026 50356
+40027 70374
+40028 20638
+40029 30521
+40030 23448
+40031 40612
+40032 36440
+40033 32713
+40034 50025
+40035 77299
+40036 33670
+40037 36314
+40038 34529
+40039 40030
+40040 46880
+40041 43273
+40042 63085
+40043 36671
+40044 27421
+40045 81075
+40046 20707
+40047 33660
+40048 59178
+40049 53328
+40050 23552
+40051 49645
+40052 33637
+40053 81014
+40054 35461
+40055 34570
+40056 59166
+40057 24504
+40058 70876
+40059 45056
+40060 33273
+40061 61541
+40062 63668
+40063 4842
+40064 45056
+40065 37356
+40066 73030
+40067 26295
+40068 56675
+40069 20611
+40069 64325
+40070 23699
+40071 26074
+40072 26075
+40073 48405
+40074 76759
+40075 45061
+40076 21384
+40077 72473
+40078 76051
+40079 42809
+40080 74893
+40081 52761
+40082 74893
+40083 1591
+40084 66612
+40085 65875
+40086 66612
+40087 67036
+40088 26235
+40089 45759
+40090 64372
+40091 37325
+40092 21155
+40093 23380
+40094 41641
+40095 55351
+40096 23552
+40097 30250
+40098 38694
+40099 2911
+40100 21811
+40100 28006
+40101 76444
+40102 77190
+40103 50105
+40104 22606
+40105 50105
+40106 62658
+40107 42941
+40108 60571
+40109 69715
+40110 61208
+40111 45055
+40112 23016
+40113 49918
+40114 27012
+40115 69616
+40116 37955
+40117 37701
+40118 31394
+40119 44348
+40120 67711
+40121 59300
+40122 40304
+40123 49876
+40124 40123
+40125 55217
+40126 55223
+40127 59317
+40128 70994
+40129 64127
+40130 29071
+40131 49918
+40132 66326
+40133 50029
+40134 23516
+40135 78831
+40136 23286
+40137 55573
+40138 29706
+40139 49918
+40140 22909
+40141 40887
+40142 4169
+40143 50102
+40144 60035
+40145 51381
+40146 36656
+40147 53775
+40148 27582
+40149 70478
+40150 33876
+40151 31913
+40152 31913
+40153 29974
+40153 48358
+40153 57882
+40153 78787
+40154 28706
+40155 66612
+40156 28790
+40157 53673
+40158 39846
+40159 67036
+40160 48620
+40161 78914
+40162 49918
+40163 61086
+40164 49674
+40165 61225
+40166 46965
+40167 69287
+40168 27948
+40169 41990
+40170 53671
+40171 26209
+40172 32287
+40173 56305
+40174 61539
+40175 61544
+40176 50102
+40177 32654
+40178 46367
+40179 58798
+40180 71833
+40181 70992
+40182 22534
+40183 36280
+40184 30589
+40185 40618
+40186 59619
+40187 6141
+40188 61228
+40189 35912
+40190 45061
+40191 57372
+40192 57372
+40193 36712
+40194 62667
+40195 74959
+40196 52727
+40197 24465
+40198 46666
+40199 54619
+40200 31528
+40201 31528
+40202 70583
+40203 75624
+40204 68298
+40205 63133
+40206 48687
+40207 36244
+40208 39494
+40209 68882
+40210 37877
+40211 40204
+40212 55000
+40213 40207
+40214 46033
+40215 31394
+40216 68868
+40217 58747
+40218 58838
+40219 23938
+40220 67167
+40221 37794
+40222 41918
+40223 66368
+40223 77435
+40224 72863
+40225 70876
+40226 64252
+40227 33563
+40228 52280
+40229 58792
+40230 37762
+40231 39776
+40232 30145
+40233 34278
+40234 50212
+40235 23723
+40236 50324
+40237 51254
+40238 40204
+40239 32287
+40240 23883
+40241 37917
+40242 36134
+40243 22087
+40243 78410
+40244 41284
+40245 45061
+40246 36517
+40247 65759
+40248 49441
+40249 34192
+40250 23287
+40251 36426
+40252 55563
+40253 28231
+40254 38929
+40254 49471
+40255 59369
+40256 22534
+40257 28242
+40258 63900
+40259 69865
+40260 33581
+40261 72981
+40262 63134
+40263 66491
+40264 56449
+40265 20428
+40266 80918
+40267 58161
+40268 21811
+40269 73332
+40270 62296
+40271 43844
+40272 21811
+40273 50477
+40274 77646
+40275 47407
+40276 74119
+40277 23484
+40278 43862
+40279 79934
+40280 69072
+40281 23286
+40282 52396
+40283 45060
+40284 40060
+40285 36188
+40286 69616
+40287 69865
+40288 78143
+40289 41231
+40290 77548
+40291 49656
+40292 58202
+40293 56162
+40294 41157
+40295 40583
+40296 46965
+40297 56219
+40298 32211
+40299 66616
+40300 39210
+40301 37492
+40302 74893
+40303 20921
+40304 46965
+40305 39292
+40306 39986
+40307 74119
+40308 16093
+40309 40318
+40310 40309
+40311 40309
+40312 40311
+40313 56022
+40314 39656
+40315 26713
+40316 856
+40317 65632
+40318 70995
+40319 22763
+40320 59389
+40321 45465
+40322 72772
+40323 72771
+40324 68610
+40325 31775
+40326 49661
+40327 23544
+40328 72935
+40329 37579
+40330 37862
+40331 67934
+40332 37862
+40333 37496
+40334 66380
+40334 78673
+40335 29556
+40336 24222
+40337 21398
+40338 62290
+40339 47138
+40340 40335
+40341 72280
+40342 44347
+40343 43759
+40344 55154
+40345 33461
+40346 24538
+40347 55135
+40348 70499
+40349 43273
+40350 68571
+40351 75977
+40352 37902
+40353 66985
+40354 77176
+40355 39986
+40356 44380
+40357 23938
+40358 81072
+40359 43837
+40360 64307
+40361 62372
+40362 70106
+40363 67157
+40364 25821
+40365 21788
+40366 78831
+40367 49918
+40368 23553
+40369 59248
+40370 57066
+40370 60571
+40371 69269
+40372 68354
+40373 77379
+40374 68508
+40375 72760
+40376 72756
+40377 57823
+40378 64146
+40379 9399
+40380 32265
+40381 28816
+40382 52912
+40383 37701
+40384 48722
+40385 81061
+40386 23933
+40387 81056
+40388 55037
+40389 76671
+40390 22137
+40391 63626
+40392 47851
+40393 58860
+40394 76240
+40395 77386
+40396 49459
+40397 41205
+40398 59394
+40399 33581
+40400 59394
+40401 20925
+40402 64182
+40403 37955
+40404 28816
+40405 64214
+40406 31608
+40407 25778
+40408 48271
+40409 23959
+40410 59385
+40411 33481
+40412 70974
+40413 61539
+40414 23721
+40415 73125
+40416 40409
+40417 49622
+40418 38156
+40419 23432
+40420 67874
+40421 40424
+40422 77155
+40423 40424
+40424 73331
+40425 22676
+40426 40424
+40426 51417
+40427 27019
+40428 52727
+40429 43882
+40430 41054
+40431 22746
+40432 73948
+40433 23581
+40434 39932
+40435 39933
+40436 22545
+40437 76447
+40438 25633
+40439 50447
+40440 37839
+40441 48832
+40441 55618
+40442 69337
+40443 50005
+40444 39532
+40445 59385
+40446 53528
+40447 32098
+40448 63860
+40449 74966
+40450 56757
+40451 37955
+40452 61539
+40453 61544
+40454 32689
+40455 27155
+40456 70832
+40457 23516
+40458 78831
+40459 67876
+40460 49777
+40461 46347
+40462 46344
+40463 43952
+40464 40462
+40465 23666
+40466 64979
+40467 60489
+40468 22733
+40469 22734
+40470 22733
+40471 22734
+40472 81400
+40473 81401
+40474 23975
+40475 22779
+40476 21817
+40477 40410
+40478 21701
+40478 62306
+40479 21700
+40480 53526
+40481 21815
+40481 44212
+40482 22791
+40483 23004
+40484 79916
+40485 26580
+40486 37007
+40487 30049
+40488 61544
+40489 67868
+40490 58269
+40491 33078
+40492 24507
+40493 37119
+40494 52808
+40495 20691
+40496 53220
+40497 36763
+40498 24459
+40498 56451
+40499 19954
+40500 46507
+40501 46505
+40502 40393
+40503 29483
+40504 46430
+40505 40453
+40506 55132
+40507 52937
+40508 64361
+40509 21746
+40510 25634
+40511 59299
+40512 63455
+40513 11311
+40514 40887
+40515 25169
+40516 46505
+40517 39355
+40518 64451
+40519 40894
+40520 64268
+40521 27765
+40522 56454
+40523 55563
+40524 23532
+40525 37862
+40525 56748
+40526 72588
+40527 56272
+40528 29447
+40529 51487
+40530 52937
+40531 59389
+40532 80737
+40533 55829
+40534 23721
+40535 23090
+40536 24083
+40537 37465
+40538 15069
+40539 37539
+40540 12078
+40540 33176
+40541 33906
+40542 36665
+40543 32666
+40544 40331
+40545 22660
+40546 62011
+40547 78275
+40548 66372
+40549 61228
+40550 61228
+40551 61557
+40552 24507
+40553 46265
+40554 47665
+40555 70112
+40556 70115
+40558 60401
+40559 66372
+40560 40204
+40561 64459
+40562 61685
+40563 23739
+40564 47708
+40565 78776
+40566 79125
+40567 26861
+40568 26861
+40569 47163
+40570 33073
+40571 79125
+40572 52187
+40573 23960
+40574 56748
+40575 32880
+40576 32249
+40577 38750
+40578 49951
+40579 49731
+40580 49950
+40581 77186
+40582 24475
+40583 49333
+40584 53718
+40585 72464
+40586 59178
+40587 36914
+40588 49286
+40589 33463
+40590 50086
+40591 39406
+40592 59389
+40593 38506
+40594 25648
+40595 44044
+40596 11311
+40597 55077
+40598 63680
+40599 21169
+40600 40627
+40601 25816
+40602 36484
+40603 18755
+40604 41922
+40605 49661
+40606 36134
+40607 30145
+40608 42676
+40609 50515
+40610 34985
+40611 50574
+40612 32899
+40613 65113
+40614 50574
+40615 50092
+40616 50576
+40617 49951
+40618 66640
+40619 49167
+40620 21136
+40621 52719
+40622 40302
+40623 37560
+40624 26235
+40625 26235
+40626 79067
+40627 22604
+40628 11311
+40629 23560
+40630 64033
+40631 80943
+40632 30491
+40633 64979
+40634 59924
+40635 40617
+40636 58628
+40637 60567
+40638 59680
+40639 49330
+40640 43785
+40641 49808
+40642 30782
+40643 33827
+40644 46347
+40645 36044
+40646 80904
+40647 46347
+40648 32666
+40649 29370
+40650 29370
+40651 77183
+40652 30526
+40653 56461
+40654 49764
+40655 65754
+40656 39703
+40657 39700
+40658 23424
+40659 23423
+40660 51111
+40661 78596
+40662 33016
+40663 64668
+40664 70876
+40665 67874
+40666 20692
+40667 76094
+40668 76093
+40669 24767
+40670 36619
+40671 23016
+40671 46379
+40672 50379
+40673 43204
+40674 51107
+40675 65631
+40676 26006
+40677 58616
+40678 29249
+40679 61189
+40680 34170
+40681 20920
+40682 63980
+40683 74113
+40684 34543
+40685 39909
+40686 48200
+40687 41427
+40688 51491
+40689 21115
+40690 21107
+40691 21394
+40692 23346
+40693 58827
+40694 34387
+40695 41537
+40696 55897
+40697 69276
+40698 69769
+40699 79063
+40700 41792
+40701 41794
+40702 40700
+40703 50417
+40704 40819
+40705 36529
+40706 66648
+40707 49344
+40708 36238
+40709 37498
+40710 59178
+40711 39251
+40712 30337
+40713 40714
+40714 36942
+40715 31575
+40716 59388
+40717 26246
+40718 27759
+40719 27758
+40720 44212
+40720 79673
+40721 74965
+40722 41314
+40723 54565
+40724 62051
+40725 78673
+40726 41455
+40727 36657
+40728 40580
+40729 36525
+40730 20724
+40731 44054
+40732 7956
+40733 69179
+40734 42480
+40735 60328
+40736 33124
+40737 39290
+40738 64157
+40739 32899
+40740 61363
+40741 36244
+40742 34965
+40743 20485
+40744 43153
+40745 64995
+40746 61541
+40747 61539
+40748 59151
+40749 36637
+40750 62821
+40751 26101
+40752 45301
+40753 21355
+40754 36603
+40755 36612
+40756 58446
+40757 19009
+40758 5320
+40759 42590
+40760 47708
+40761 36627
+40762 33273
+40763 31696
+40764 58453
+40765 74893
+40766 40639
+40767 74439
+40768 8509
+40769 54192
+40770 50506
+40771 27012
+40771 43423
+40772 52326
+40773 46379
+40774 33086
+40775 30786
+40776 35410
+40777 76975
+40778 32981
+40779 72075
+40780 49661
+40781 26253
+40782 27097
+40783 37955
+40784 49488
+40785 39331
+40786 25646
+40787 41571
+40788 59356
+40789 55220
+40790 20956
+40791 39326
+40792 21198
+40793 69486
+40794 21398
+40795 29040
+40796 80937
+40797 51107
+40798 72306
+40799 34290
+40800 36902
+40801 59613
+40802 20693
+40803 65969
+40804 15001
+40805 39210
+40806 33662
+40807 46965
+40808 68816
+40809 50093
+40810 78907
+40811 68815
+40812 63974
+40813 64465
+40814 39717
+40815 59418
+40816 50575
+40817 49777
+40818 25867
+40819 49777
+40820 80757
+40821 70978
+40822 73125
+40823 76094
+40824 72268
+40825 78596
+40826 73125
+40827 40824
+40828 20694
+40829 34986
+40830 36347
+40831 31597
+40832 56231
+40833 69485
+40834 40797
+40835 8704
+40836 33525
+40837 44478
+40838 49659
+40839 58158
+40840 66469
+40841 39254
+40842 45640
+40843 30769
+40844 40843
+40845 74965
+40846 36942
+40847 40843
+40848 74965
+40849 78307
+40850 50260
+40851 54995
+40852 43810
+40853 45924
+40854 36123
+40855 40212
+40856 40889
+40857 69701
+40858 54996
+40859 32713
+40860 34819
+40861 38870
+40862 27421
+40863 32666
+40864 40873
+40865 50417
+40866 20694
+40867 69287
+40868 50260
+40869 32899
+40870 40661
+40871 79426
+40872 49941
+40873 15594
+40874 23654
+40875 35821
+40876 53008
+40877 49152
+40878 61624
+40879 36525
+40880 20341
+40881 36766
+40882 70171
+40883 54285
+40884 64533
+40885 36529
+40886 32899
+40887 52038
+40888 40894
+40889 55000
+40890 59389
+40891 72826
+40892 23585
+40893 23581
+40894 32900
+40895 64979
+40896 47902
+40897 33377
+40898 72826
+40899 39204
+40900 25471
+40901 61186
+40902 55207
+40903 41295
+40904 55886
+40905 76477
+40906 36414
+40907 39944
+40908 21617
+40909 39209
+40910 73788
+40911 73819
+40912 55120
+40913 35800
+40913 64215
+40914 53709
+40915 61563
+40916 34020
+40917 31610
+40918 51867
+40919 70919
+40920 36380
+40921 54248
+40922 21767
+40923 36222
+40924 872
+40925 38132
+40926 22592
+40927 36845
+40928 51491
+40929 37948
+40930 30584
+40931 47387
+40932 27021
+40933 29617
+40934 38564
+40935 40942
+40936 45221
+40937 49248
+40938 49249
+40939 51148
+40940 78831
+40941 36
+40942 59369
+40943 23977
+40944 58626
+40945 69593
+40946 65905
+40947 5194
+40948 49534
+40949 20925
+40950 33291
+40951 33226
+40952 64590
+40953 59696
+40954 40602
+40955 41595
+40956 20959
+40957 39202
+40958 37877
+40959 59760
+40960 70899
+40961 48727
+40962 20925
+40963 66538
+40964 50196
+40965 39209
+40966 74573
+40967 35461
+40968 78342
+40969 78378
+40970 64979
+40971 28893
+40972 49879
+40973 74987
+40974 49054
+40975 57526
+40976 40639
+40977 49506
+40978 37737
+40979 22254
+40980 53295
+40981 59389
+40982 71587
+40983 36379
+40984 40991
+40985 65334
+40986 64979
+40987 49194
+40988 65312
+40989 21217
+40990 78103
+40991 60462
+40992 40932
+40993 53096
+40994 43454
+40995 63541
+40996 49777
+40997 40008
+40997 51111
+40998 37494
+40999 69380
+41000 51111
+41001 78596
+41002 32919
+41003 27012
+41004 80778
+41005 47167
+41006 65905
+41007 37490
+41008 23940
+41009 48092
+41010 45300
+41011 30222
+41012 23071
+41013 24771
+41014 79253
+41015 30642
+41016 31800
+41017 33273
+41018 79248
+41019 33621
+41020 20616
+41021 37560
+41022 56748
+41023 38528
+41024 74565
+41025 67089
+41026 30084
+41027 29341
+41028 54363
+41029 79003
+41030 28989
+41031 23817
+41032 38599
+41033 80778
+41034 70564
+41035 58674
+41036 26635
+41037 48092
+41038 64316
+41039 54363
+41040 31927
+41041 10474
+41042 59212
+41043 54363
+41044 70560
+41045 78084
+41046 54739
+41047 41455
+41048 72248
+41049 8877
+41050 71778
+41051 28380
+41052 41280
+41053 73594
+41054 23560
+41055 73905
+41056 24091
+41057 34808
+41058 41284
+41059 18171
+41060 43645
+41061 36134
+41062 40932
+41063 23004
+41064 74527
+41065 49777
+41066 74528
+41067 40932
+41068 43645
+41069 41096
+41070 78035
+41071 63133
+41072 78979
+41073 43829
+41074 25617
+41075 872
+41076 62443
+41077 41080
+41078 62360
+41079 59723
+41080 54846
+41081 54363
+41081 63357
+41082 26114
+41083 79255
+41084 20679
+41085 78661
+41086 32477
+41087 47245
+41088 64307
+41089 37167
+41090 74044
+41091 62252
+41092 43807
+41093 34726
+41094 25478
+41094 70993
+41095 55063
+41096 45117
+41097 65645
+41098 70919
+41099 49178
+41100 76561
+41101 78831
+41102 33273
+41103 59388
+41104 21511
+41105 23739
+41106 23560
+41107 39253
+41108 23560
+41109 16751
+41110 53225
+41111 32082
+41112 64307
+41113 23070
+41114 38824
+41115 49951
+41116 49950
+41117 65803
+41118 33186
+41119 29030
+41120 49950
+41121 57928
+41122 30049
+41123 58489
+41124 49716
+41125 69662
+41126 34210
+41127 33563
+41127 41123
+41128 64028
+41129 66774
+41130 15000
+41131 80127
+41132 80223
+41133 66867
+41134 64979
+41135 62174
+41136 62174
+41137 20408
+41138 27001
+41139 66185
+41140 49777
+41141 45640
+41142 37465
+41143 37818
+41144 38898
+41145 42969
+41146 39809
+41147 39818
+41148 44336
+41149 28364
+41150 73432
+41151 39649
+41152 39010
+41153 55168
+41154 49408
+41155 41157
+41156 41054
+41157 58202
+41158 46965
+41159 5346
+41160 78268
+41161 59003
+41162 37645
+41163 49788
+41164 53779
+41165 76501
+41166 41571
+41167 79920
+41168 71715
+41169 44315
+41170 40730
+41171 52578
+41172 21487
+41173 33623
+41174 29957
+41175 30491
+41176 33971
+41177 36034
+41178 47328
+41179 77036
+41180 39942
+41181 79936
+41182 60357
+41183 26671
+41184 33051
+41185 32689
+41186 70867
+41187 60678
+41188 60357
+41189 72473
+41190 21375
+41191 56241
+41192 25745
+41193 41189
+41194 52971
+41195 22620
+41196 27623
+41197 38090
+41198 41349
+41199 49284
+41200 57431
+41201 41750
+41202 20679
+41203 25646
+41203 75979
+41204 25646
+41205 40398
+41206 21831
+41207 21513
+41208 42986
+41209 49906
+41210 43197
+41211 41578
+41212 41210
+41213 36135
+41214 12570
+41214 865
+41215 37579
+41216 41405
+41217 26506
+41218 52960
+41219 47167
+41220 61162
+41221 48750
+41222 23484
+41223 48810
+41224 29154
+41225 47173
+41226 50540
+41227 56162
+41228 64307
+41229 50841
+41230 49777
+41231 78183
+41232 38843
+41233 33505
+41234 70089
+41235 35326
+41236 36265
+41237 31038
+41238 27019
+41239 79624
+41240 80514
+41241 53055
+41242 2911
+41243 41666
+41244 47665
+41245 80514
+41246 21375
+41247 61706
+41248 54843
+41249 47665
+41250 47665
+41251 35002
+41252 23790
+41253 47665
+41254 74119
+41255 49496
+41256 80860
+41257 53055
+41258 53055
+41259 28510
+41260 54438
+41261 54438
+41262 80514
+41263 47665
+41264 43844
+41265 47665
+41266 61702
+41267 56171
+41268 66938
+41269 47665
+41270 68004
+41271 68138
+41272 23177
+41273 2911
+41274 36617
+41275 43844
+41276 52417
+41277 78928
+41278 79311
+41279 80673
+41280 73125
+41281 37587
+41282 47254
+41283 59940
+41284 56164
+41285 30687
+41286 78377
+41287 43647
+41288 66685
+41289 48932
+41289 56513
+41290 66867
+41291 72464
+41292 78566
+41293 56157
+41294 40805
+41295 78309
+41296 51515
+41297 22370
+41298 23751
+41299 75418
+41300 66432
+41301 59401
+41302 2221
+41303 31883
+41304 4694
+41305 44407
+41306 29776
+41307 48776
+41308 55209
+41309 65990
+41310 46354
+41311 28860
+41312 47972
+41313 23938
+41314 36942
+41315 40011
+41316 25708
+41317 26510
+41318 58472
+41319 52726
+41320 14924
+41321 60073
+41322 77000
+41323 78801
+41324 31506
+41325 40011
+41326 50470
+41327 56162
+41328 49285
+41329 53051
+41330 34318
+41330 37574
+41331 32713
+41332 81080
+41333 53831
+41334 71594
+41335 42986
+41336 42392
+41337 50981
+41338 50985
+41339 80568
+41340 80568
+41341 80568
+41342 79468
+41343 59722
+41344 44070
+41345 29483
+41346 33078
+41347 34812
+41348 69381
+41349 49285
+41350 41783
+41351 41349
+41352 37645
+41353 41388
+41354 37657
+41355 42965
+41356 32596
+41357 38481
+41358 28409
+41359 21399
+41360 30604
+41361 60579
+41362 42999
+41363 52543
+41364 61171
+41365 49660
+41366 20814
+41367 36637
+41368 60612
+41369 55106
+41370 26861
+41371 80904
+41372 25985
+41373 27521
+41374 28241
+41375 41607
+41376 80930
+41377 54100
+41378 56086
+41379 22055
+41380 59114
+41381 41382
+41382 46852
+41383 48576
+41384 34479
+41385 41371
+41386 10247
+41387 81141
+41388 37756
+41389 29483
+41390 26474
+41391 26203
+41392 66260
+41393 32320
+41394 48316
+41395 23853
+41396 21835
+41397 33476
+41398 50172
+41399 57798
+41400 78003
+41401 23968
+41402 49904
+41403 49904
+41404 49194
+41405 67247
+41406 41405
+41407 64215
+41408 60722
+41409 73989
+41410 33609
+41411 21230
+41412 62373
+41413 20533
+41414 27712
+41415 57812
+41416 66494
+41417 58406
+41418 52938
+41419 77073
+41420 58447
+41421 76477
+41422 21398
+41423 49777
+41424 33575
+41425 31681
+41426 65485
+41427 59877
+41428 49339
+41429 36311
+41430 53276
+41431 79274
+41432 67138
+41433 71833
+41434 30491
+41435 39643
+41436 47325
+41437 55543
+41438 56141
+41439 36887
+41440 57619
+41441 5190
+41442 36019
+41443 68250
+41444 11311
+41445 49527
+41445 6525
+41446 11311
+41447 51570
+41448 14919
+41449 14919
+41450 10250
+41451 60369
+41452 53182
+41453 79366
+41454 79920
+41455 75655
+41456 41154
+41457 27303
+41458 23730
+41459 31711
+41460 27706
+41461 32959
+41462 55909
+41463 52123
+41464 37553
+41465 29462
+41466 53429
+41467 59215
+41468 51125
+41469 74156
+41470 60571
+41471 66380
+41472 23380
+41473 66815
+41474 16760
+41475 27725
+41476 53129
+41477 34984
+41478 34203
+41479 15839
+41480 20724
+41481 23363
+41482 23585
+41483 26760
+41484 856
+41485 25761
+41486 21198
+41487 37702
+41488 23126
+41489 51352
+41490 21198
+41491 31103
+41492 33009
+41493 29043
+41494 37702
+41495 43842
+41496 36265
+41496 81306
+41497 38026
+41498 39699
+41499 34613
+41500 41571
+41501 34519
+41502 63414
+41503 76081
+41504 60531
+41505 48101
+41506 39067
+41507 22528
+41507 27012
+41508 67668
+41509 28790
+41510 55045
+41511 60073
+41512 66204
+41513 34958
+41514 60722
+41515 39177
+41516 23165
+41517 7577
+41518 2554
+41519 81028
+41520 45294
+41521 27021
+41522 41987
+41523 23542
+41524 55448
+41525 33565
+41526 37006
+41527 81001
+41528 27028
+41529 37432
+41530 34811
+41531 61702
+41532 64979
+41533 60315
+41534 60612
+41535 4694
+41536 28188
+41537 45754
+41538 21111
+41539 45746
+41540 68541
+41541 75404
+41542 49194
+41543 32053
+41544 33771
+41545 59394
+41546 4515
+41547 42368
+41548 50324
+41549 41548
+41550 60774
+41551 41548
+41552 20429
+41553 71713
+41554 79920
+41555 42999
+41556 41555
+41557 20925
+41558 22657
+41559 31404
+41560 38081
+41561 54100
+41562 22517
+41563 60678
+41564 64379
+41565 28241
+41566 65699
+41567 24233
+41568 22083
+41569 64215
+41570 23426
+41571 73104
+41572 71838
+41573 61134
+41574 50528
+41575 69599
+41576 2911
+41577 39191
+41578 54523
+41579 35382
+41580 72132
+41581 23120
+41582 39702
+41583 29599
+41584 22533
+41585 69145
+41586 51487
+41587 60858
+41588 47239
+41589 67261
+41590 74876
+41591 21512
+41591 24232
+41592 51491
+41593 69444
+41594 49870
+41595 34936
+41596 41054
+41597 60971
+41598 41666
+41599 43844
+41600 68149
+41601 44478
+41602 22517
+41603 49777
+41604 23335
+41605 17222
+41606 27146
+41607 41603
+41608 35097
+41609 66671
+41610 41602
+41610 54463
+41611 30943
+41611 41603
+41612 66673
+41613 51572
+41614 44386
+41615 44385
+41616 77112
+41617 37955
+41618 4840
+41619 4842
+41620 60682
+41621 23516
+41622 72415
+41623 64627
+41624 78831
+41625 30797
+41626 76483
+41627 63300
+41628 52545
+41629 3959
+41630 59317
+41631 25014
+41632 24909
+41633 57886
+41634 27288
+41635 72448
+41636 71588
+41637 32567
+41638 28249
+41639 32560
+41639 62426
+41640 41080
+41641 26506
+41642 25014
+41643 46418
+41644 32444
+41645 59150
+41646 41645
+41647 41645
+41648 23434
+41649 59178
+41650 63859
+41651 47665
+41652 72350
+41653 57991
+41654 42553
+41655 58269
+41656 47665
+41657 42553
+41658 62120
+41659 56022
+41660 80001
+41661 30121
+41662 55037
+41663 30784
+41664 60495
+41665 55563
+41666 64490
+41667 64490
+41668 41299
+41669 44496
+41670 72589
+41671 62769
+41672 24492
+41673 59819
+41674 20792
+41675 68239
+41676 22789
+41677 71794
+41678 64325
+41679 64901
+41680 20792
+41681 68239
+41682 54229
+41683 26954
+41684 70171
+41685 26964
+41686 61477
+41687 41532
+41688 38633
+41689 4748
+41690 55351
+41691 30769
+41692 74808
+41693 7577
+41694 59361
+41695 71894
+41696 20956
+41697 74893
+41698 61228
+41699 30121
+41700 11405
+41701 39634
+41702 42750
+41703 21380
+41704 74926
+41705 31424
+41706 20428
+41707 55351
+41708 56748
+41709 20920
+41710 45829
+41711 28225
+41712 6193
+41713 30634
+41714 36969
+41715 25646
+41716 60328
+41717 61376
+41718 23555
+41719 23016
+41720 13337
+41721 55127
+41722 22793
+41723 73333
+41724 63604
+41725 2440
+41726 2911
+41727 2911
+41728 42338
+41729 60612
+41730 41729
+41731 78968
+41732 25277
+41733 10844
+41734 71600
+41735 74893
+41736 22769
+41737 40657
+41738 18616
+41739 2911
+41740 20565
+41741 47665
+41742 47665
+41743 71302
+41744 39584
+41745 21855
+41746 41921
+41747 25843
+41748 25843
+41749 60218
+41750 10620
+41751 41058
+41752 54972
+41753 41054
+41754 32903
+41755 28758
+41756 77216
+41757 79537
+41758 34593
+41759 55208
+41760 78003
+41761 27622
+41762 64325
+41763 32035
+41764 32035
+41765 37745
+41766 61118
+41767 21055
+41768 39656
+41769 29702
+41770 37560
+41771 41772
+41772 25759
+41773 49918
+41774 60685
+41775 49918
+41776 64979
+41777 25618
+41778 23797
+41779 38946
+41780 22534
+41780 62307
+41781 52545
+41782 68660
+41783 53347
+41784 22517
+41785 53347
+41786 68895
+41787 34649
+41788 27438
+41789 18755
+41790 64979
+41791 21453
+41792 49777
+41793 52551
+41794 52555
+41795 10252
+41796 10249
+41797 59394
+41798 60357
+41799 66324
+41800 61685
+41801 28529
+41802 60357
+41803 16771
+41804 66324
+41805 16770
+41806 16770
+41807 45056
+41808 16770
+41809 79253
+41810 77195
+41811 39477
+41812 32698
+41813 32494
+41814 23573
+41815 26061
+41816 27991
+41817 79366
+41818 30921
+41819 32318
+41820 34067
+41820 41822
+41821 34925
+41822 35017
+41823 5168
+41824 5168
+41825 61228
+41826 48100
+41827 39690
+41828 54941
+41829 59595
+41830 66280
+41831 68882
+41832 46460
+41833 41829
+41834 1785
+41835 55889
+41836 48578
+41837 23849
+41838 43053
+41839 10474
+41840 54202
+41841 11528
+41842 80819
+41843 56850
+41844 57175
+41845 60357
+41846 68698
+41847 19415
+41848 52588
+41849 60787
+41850 60785
+41851 61043
+41852 55880
+41853 29897
+41854 65647
+41855 68574
+41856 72069
+41857 72128
+41858 12975
+41859 78954
+41860 50280
+41861 39465
+41862 29229
+41863 75988
+41864 76138
+41865 75831
+41866 33007
+41867 67902
+41868 40674
+41869 66712
+41870 80984
+41871 24671
+41872 34932
+41873 64821
+41874 76269
+41875 61129
+41876 15785
+41877 43273
+41878 50575
+41879 81046
+41880 47381
+41881 14068
+41882 47665
+41883 42840
+41884 65431
+41885 52120
+41886 65562
+41887 19068
+41888 65562
+41889 32774
+41890 50450
+41891 77113
+41892 29399
+41893 25439
+41894 36103
+41895 76475
+41896 65562
+41897 25986
+41898 46741
+41899 49274
+41900 41906
+41901 39191
+41902 13466
+41903 52396
+41904 34590
+41905 42747
+41906 18616
+41907 23317
+41908 27514
+41909 21630
+41909 79631
+41910 32564
+41911 30424
+41912 49163
+41913 26635
+41914 66647
+41915 36210
+41916 56315
+41917 49461
+41918 43215
+41919 22192
+41920 39228
+41921 22191
+41922 67036
+41923 61131
+41924 54522
+41925 51699
+41926 41924
+41927 53727
+41928 49121
+41929 49122
+41930 25157
+41931 30687
+41932 41916
+41933 41916
+41934 80860
+41935 64325
+41936 72946
+41937 73907
+41938 80680
+41939 73577
+41940 57720
+41941 37560
+41942 26976
+41943 65965
+41944 53124
+41945 58833
+41946 46882
+41947 75002
+41948 31730
+41949 42944
+41950 37211
+41951 31638
+41952 64345
+41953 62476
+41954 57372
+41955 53374
+41956 25564
+41957 61818
+41958 51823
+41959 41956
+41960 38869
+41961 53810
+41962 36419
+41962 52581
+41963 36415
+41964 60367
+41965 40686
+41966 39634
+41967 40047
+41968 43405
+41969 43245
+41970 73565
+41971 39965
+41972 54972
+41973 69143
+41974 8692
+41975 33971
+41976 58614
+41977 76609
+41978 69612
+41979 47259
+41980 41424
+41981 42741
+41982 36591
+41983 33229
+41984 76178
+41985 30520
+41986 41602
+41986 42903
+41987 70375
+41988 58614
+41989 70044
+41989 81014
+41990 61622
+41991 55168
+41992 41990
+41993 32955
+41994 41699
+41995 49824
+41996 64021
+41997 52358
+41997 68958
+41998 61624
+41999 41666
+42000 22537
+42001 43401
+42002 36942
+42003 39421
+42004 28606
+42005 42002
+42006 60202
+42007 21556
+42008 78384
+42009 57679
+42010 57812
+42011 42787
+42011 64027
+42012 20925
+42013 30508
+42014 23016
+42015 36208
+42016 70219
+42017 72867
+42018 23015
+42019 62372
+42020 30687
+42021 54941
+42022 40612
+42023 21523
+42024 41987
+42025 51123
+42026 62423
+42027 31913
+42028 42101
+42029 33009
+42030 31916
+42031 28529
+42032 39138
+42033 37404
+42034 32689
+42035 58222
+42036 56069
+42037 21511
+42038 22319
+42039 23955
+42039 24015
+42040 3600
+42041 33273
+42042 64087
+42043 43963
+42044 40398
+42045 53774
+42046 29301
+42047 42031
+42048 65729
+42049 59505
+42050 69161
+42051 58674
+42052 59242
+42053 41547
+42054 51123
+42055 58614
+42056 42054
+42057 20724
+42058 60983
+42059 32551
+42060 40611
+42061 48695
+42062 64977
+42063 26332
+42064 38308
+42065 72259
+42066 74427
+42067 57448
+42068 71398
+42069 23958
+42070 47666
+42071 35714
+42071 40992
+42072 34590
+42073 59993
+42074 59995
+42075 49521
+42076 25149
+42077 27461
+42078 58406
+42079 7577
+42080 48092
+42081 48092
+42082 12096
+42083 59976
+42084 26114
+42085 70585
+42086 19641
+42087 46471
+42088 73839
+42089 39722
+42090 76908
+42091 42266
+42092 26763
+42093 57345
+42094 26114
+42094 26332
+42095 49178
+42096 72217
+42097 63974
+42098 76541
+42099 36208
+42100 46965
+42101 31916
+42102 75351
+42103 38307
+42104 32088
+42105 32082
+42105 62344
+42106 59991
+42107 80926
+42108 36837
+42108 53135
+42109 68763
+42110 64979
+42111 46658
+42112 62541
+42113 19960
+42114 19954
+42115 33442
+42116 31989
+42117 33316
+42118 46965
+42119 28458
+42120 23918
+42121 42189
+42122 39532
+42123 77425
+42124 43631
+42125 36304
+42126 34733
+42127 61189
+42128 72747
+42129 21673
+42130 21672
+42131 35781
+42132 22663
+42133 2041
+42134 52402
+42135 59394
+42136 42142
+42137 42125
+42138 32209
+42139 63607
+42140 57577
+42141 57580
+42142 53531
+42143 38131
+42144 38518
+42145 77675
+42146 72935
+42147 36942
+42148 48480
+42149 50232
+42150 49441
+42151 58838
+42152 59107
+42153 70620
+42154 30081
+42155 68184
+42156 68184
+42157 68954
+42158 23345
+42159 73142
+42160 42150
+42160 76729
+42161 79696
+42162 77387
+42163 61189
+42164 30337
+42165 42125
+42165 58838
+42166 79692
+42167 31519
+42168 46525
+42169 20960
+42170 1787
+42171 1787
+42172 25045
+42173 26954
+42174 43876
+42175 27909
+42176 41798
+42177 27817
+42178 47761
+42179 4203
+42180 44212
+42181 39353
+42182 25599
+42183 52970
+42184 49221
+42185 62422
+42186 62136
+42187 24250
+42188 29688
+42189 57967
+42190 48812
+42191 55879
+42192 6688
+42193 68380
+42194 73578
+42195 23317
+42196 28241
+42197 38556
+42198 69330
+42199 79516
+42200 53315
+42201 80530
+42202 79992
+42203 43745
+42204 53854
+42205 30461
+42206 53128
+42207 31608
+42208 73815
+42209 63420
+42210 72766
+42211 2684
+42212 51355
+42213 28528
+42214 58996
+42215 31024
+42216 73754
+42217 77112
+42218 47023
+42219 49339
+42220 32211
+42221 65562
+42222 59351
+42223 63136
+42224 48284
+42225 51593
+42226 73142
+42227 28449
+42228 62437
+42229 60482
+42230 80535
+42231 49777
+42232 21513
+42233 24506
+42234 42258
+42235 49907
+42236 25647
+42237 30046
+42238 74427
+42239 54285
+42240 20668
+42241 36383
+42242 31723
+42243 31609
+42244 46742
+42245 50555
+42246 20777
+42247 80428
+42248 13018
+42249 52899
+42250 56683
+42251 57372
+42252 33862
+42253 62423
+42254 61324
+42255 46755
+42256 63660
+42257 69679
+42258 25617
+42259 73803
+42260 77531
+42261 74427
+42262 50799
+42263 18608
+42264 39133
+42265 81168
+42266 23166
+42267 43000
+42268 22529
+42269 37579
+42270 28844
+42271 31217
+42272 39223
+42273 41299
+42274 80904
+42275 57871
+42276 33895
+42277 44496
+42278 45084
+42279 22532
+42279 45426
+42280 64652
+42281 28607
+42282 75011
+42283 60568
+42284 55143
+42285 33940
+42286 41555
+42286 59382
+42287 56864
+42288 68598
+42289 18872
+42290 73178
+42291 73336
+42292 37579
+42293 27155
+42294 70876
+42295 23160
+42295 27459
+42296 70974
+42297 54813
+42298 51699
+42299 51699
+42300 24544
+42301 80904
+42302 48305
+42303 59596
+42304 28529
+42305 79002
+42306 69072
+42307 44350
+42308 52862
+42309 34018
+42310 67487
+42311 69179
+42312 24909
+42313 57811
+42314 60616
+42315 62372
+42316 24698
+42317 62950
+42318 38524
+42319 60073
+42320 58446
+42321 23623
+42322 23623
+42323 37903
+42324 29599
+42325 46259
+42326 74262
+42327 74262
+42328 46851
+42329 32560
+42330 53182
+42331 22519
+42332 60571
+42333 24487
+42334 41407
+42335 50710
+42336 43882
+42337 74255
+42338 33277
+42339 71970
+42340 33004
+42341 28484
+42342 70043
+42343 75107
+42344 20650
+42345 67902
+42346 25067
+42347 56241
+42348 25986
+42349 57721
+42350 37091
+42350 5554
+42350 72628
+42351 72350
+42352 32320
+42353 34542
+42354 37168
+42355 50497
+42356 49504
+42357 40709
+42358 36884
+42359 63606
+42360 23917
+42361 63670
+42362 42376
+42363 78767
+42364 55220
+42365 59180
+42366 54995
+42367 58489
+42368 30604
+42369 50474
+42370 58860
+42371 61448
+42372 73043
+42373 56756
+42374 30528
+42375 49461
+42376 33086
+42377 70974
+42378 57425
+42379 38102
+42380 43019
+42381 20650
+42382 23560
+42383 60712
+42384 49441
+42385 42204
+42386 25854
+42387 50057
+42388 21080
+42389 71712
+42390 26492
+42391 57795
+42392 39638
+42393 50646
+42394 79259
+42395 53328
+42396 45635
+42397 60747
+42398 75091
+42399 29345
+42400 32699
+42401 55904
+42402 71407
+42403 71408
+42404 36480
+42405 54853
+42406 61028
+42407 64361
+42408 30157
+42409 80181
+42410 23016
+42411 32735
+42412 42113
+42413 51495
+42414 20724
+42415 79489
+42416 79003
+42417 74583
+42418 76080
+42419 70152
+42420 49441
+42421 39885
+42422 43215
+42423 50421
+42424 27920
+42425 76840
+42426 39329
+42427 63392
+42428 41158
+42429 40672
+42430 29516
+42431 47665
+42432 80514
+42433 2911
+42434 18505
+42435 22468
+42436 27352
+42437 27352
+42438 20565
+42439 63789
+42440 35805
+42441 71594
+42442 23345
+42443 79438
+42444 22739
+42445 32586
+42446 17849
+42447 64117
+42448 43243
+42449 74044
+42450 35522
+42451 27021
+42452 25564
+42453 24351
+42454 71766
+42455 41054
+42456 25218
+42457 2911
+42458 41054
+42459 34590
+42460 19638
+42461 22534
+42462 21610
+42463 12150
+42464 42119
+42465 79259
+42466 40318
+42467 23919
+42468 71755
+42469 66253
+42470 39254
+42471 36942
+42472 43293
+42473 42862
+42474 21642
+42475 66072
+42476 46965
+42477 27877
+42478 40807
+42479 27591
+42480 37692
+42481 28311
+42482 60644
+42483 51957
+42483 61621
+42484 77200
+42485 29008
+42486 25990
+42487 21910
+42488 41160
+42489 58196
+42490 34983
+42491 75627
+42492 28613
+42493 77200
+42494 66015
+42495 26941
+42496 39421
+42497 70051
+42498 39399
+42499 38678
+42500 72446
+42501 17373
+42502 27348
+42503 33639
+42504 3737
+42505 27485
+42506 57127
+42507 43534
+42508 62603
+42509 68704
+42510 66918
+42511 23772
+42512 23219
+42513 2071
+42514 35522
+42515 32088
+42516 41946
+42517 37689
+42518 2911
+42519 40571
+42520 68983
+42521 77676
+42522 63687
+42523 27679
+42524 42523
+42525 68266
+42526 72446
+42527 52307
+42528 43027
+42529 68889
+42530 61147
+42531 29989
+42532 50660
+42533 22901
+42534 6923
+42535 37271
+42536 40894
+42537 75351
+42538 38775
+42539 49536
+42540 43087
+42541 42984
+42542 33065
+42543 61702
+42544 64139
+42545 75033
+42546 70730
+42547 50681
+42548 80970
+42549 37692
+42550 51408
+42551 22537
+42552 43213
+42553 42380
+42554 78149
+42555 23030
+42556 41154
+42557 62298
+42558 47665
+42559 67970
+42560 39157
+42560 50105
+42561 52401
+42562 26262
+42563 49648
+42564 54737
+42565 48548
+42566 47665
+42567 80514
+42568 79992
+42569 31366
+42570 62310
+42571 22758
+42572 81303
+42573 80863
+42574 52460
+42575 41054
+42576 32083
+42577 49777
+42578 33654
+42579 20724
+42580 20724
+42581 73208
+42582 20724
+42583 42400
+42584 74072
+42585 30128
+42586 22534
+42587 62307
+42588 42859
+42589 50038
+42590 24224
+42591 25438
+42592 42598
+42593 54432
+42594 21008
+42595 77112
+42596 61702
+42597 36638
+42598 25739
+42599 70919
+42600 43020
+42601 33624
+42602 51655
+42603 80848
+42604 56748
+42605 45711
+42606 77299
+42607 72076
+42608 43243
+42609 21529
+42610 72935
+42611 21589
+42612 34811
+42613 55160
+42614 42676
+42615 77548
+42616 33771
+42617 36162
+42618 21604
+42619 41507
+42620 53129
+42621 54524
+42622 60678
+42623 70773
+42624 55197
+42625 79920
+42626 50276
+42627 76255
+42628 41820
+42629 57225
+42630 46544
+42631 6688
+42632 56259
+42633 76258
+42634 37847
+42635 76255
+42636 36159
+42637 68354
+42638 31404
+42639 17233
+42640 30642
+42641 13570
+42642 52796
+42643 53067
+42644 56889
+42645 42290
+42646 1712
+42647 50447
+42648 73439
+42649 38528
+42650 37690
+42651 46882
+42652 23560
+42653 74893
+42654 36096
+42655 26182
+42655 62994
+42656 39724
+42657 5947
+42658 25225
+42659 58614
+42660 50233
+42661 74779
+42662 23163
+42663 54995
+42664 58489
+42665 33146
+42666 38681
+42667 23163
+42668 23163
+42669 23163
+42670 56014
+42671 69149
+42672 21375
+42673 20925
+42674 54972
+42675 33430
+42676 22525
+42677 35120
+42678 22525
+42679 76881
+42680 10869
+42681 52971
+42682 42740
+42683 41985
+42684 76368
+42685 33771
+42686 40500
+42687 66841
+42688 66380
+42689 42487
+42690 3737
+42691 48355
+42692 33581
+42693 5752
+42694 74529
+42695 44315
+42696 67203
+42697 7956
+42698 67573
+42699 34590
+42700 51080
+42701 51958
+42702 52581
+42703 62246
+42704 79880
+42705 26920
+42706 42691
+42707 28249
+42708 39724
+42709 41160
+42710 53591
+42711 52396
+42712 42747
+42713 26754
+42714 72391
+42715 70276
+42716 70264
+42717 31273
+42718 45419
+42719 76178
+42720 61685
+42721 42031
+42722 42582
+42723 42582
+42724 81021
+42725 21155
+42726 43969
+42727 42525
+42728 42526
+42729 43019
+42730 35857
+42731 26039
+42732 12086
+42733 45117
+42734 39634
+42735 45878
+42736 19640
+42737 21534
+42738 30521
+42739 65632
+42740 56752
+42741 20925
+42742 56750
+42743 37495
+42744 56985
+42745 42741
+42746 27019
+42747 22467
+42748 23432
+42748 36208
+42749 28180
+42750 42748
+42751 49938
+42752 44149
+42753 44176
+42754 69491
+42755 23739
+42755 41607
+42756 49938
+42757 81315
+42758 34435
+42759 25489
+42760 21926
+42761 21926
+42762 23626
+42763 23626
+42764 23626
+42765 30815
+42766 41666
+42767 41666
+42768 2911
+42769 65609
+42770 2911
+42771 76610
+42772 55935
+42773 22811
+42774 19638
+42775 22002
+42776 50710
+42777 64117
+42778 59378
+42779 33310
+42780 59379
+42781 70978
+42782 32908
+42783 54972
+42784 26760
+42785 58996
+42786 27638
+42787 55037
+42788 55037
+42789 34515
+42790 55163
+42791 76096
+42792 30526
+42793 2684
+42794 19068
+42795 2684
+42796 19068
+42797 43282
+42798 24866
+42799 75091
+42800 42548
+42801 45718
+42802 79824
+42803 64551
+42804 28380
+42805 31986
+42806 66867
+42807 42984
+42808 22906
+42809 20524
+42809 38901
+42810 42822
+42811 52970
+42812 55741
+42813 53021
+42814 51957
+42815 21028
+42816 46792
+42817 56022
+42818 20792
+42819 68239
+42820 46809
+42821 62354
+42822 38901
+42823 46810
+42824 20038
+42825 65370
+42826 60685
+42827 22807
+42828 68239
+42829 20792
+42830 69415
+42831 54349
+42832 56098
+42833 58269
+42834 17161
+42835 74893
+42836 62745
+42837 42738
+42838 29067
+42839 29067
+42840 19960
+42841 80608
+42842 30535
+42843 57134
+42844 29495
+42845 74783
+42846 53277
+42847 65632
+42848 42738
+42849 30769
+42850 60685
+42851 73104
+42852 41800
+42853 32949
+42854 30508
+42855 23075
+42856 39465
+42857 54211
+42858 55610
+42859 37374
+42860 42459
+42861 59151
+42862 48003
+42863 42300
+42864 36098
+42865 22488
+42866 21375
+42867 23625
+42868 29847
+42869 49648
+42870 59317
+42871 59317
+42872 53055
+42873 42310
+42874 75733
+42875 12978
+42876 69149
+42877 27848
+42878 28679
+42879 67856
+42880 74169
+42881 75564
+42882 43707
+42883 44355
+42884 68889
+42885 51006
+42886 62207
+42887 81029
+42888 42889
+42889 59223
+42890 68763
+42891 72767
+42892 65254
+42893 73079
+42894 42957
+42895 27840
+42896 42609
+42897 60202
+42898 23869
+42899 77269
+42900 81028
+42901 2554
+42902 66380
+42903 81306
+42904 28132
+42905 54972
+42906 42905
+42906 67805
+42907 55037
+42908 44253
+42909 79005
+42910 21155
+42911 3704
+42912 37756
+42913 49870
+42914 65645
+42915 69409
+42916 60681
+42917 50277
+42918 37776
+42919 31597
+42920 62679
+42921 20615
+42922 62679
+42923 62679
+42924 41555
+42925 21270
+42926 23861
+42927 42925
+42928 21673
+42929 48366
+42929 70597
+42930 47276
+42931 80542
+42932 60885
+42933 60464
+42934 60657
+42935 70051
+42936 23941
+42937 36942
+42938 49152
+42939 41641
+42940 45060
+42941 73907
+42942 60972
+42943 30523
+42944 34590
+42945 36208
+42946 30424
+42947 50345
+42948 68548
+42949 13823
+42950 36928
+42951 73683
+42952 23255
+42953 64035
+42954 23070
+42955 37817
+42956 58489
+42957 70042
+42958 27203
+42959 43246
+42960 61086
+42961 71598
+42962 63031
+42963 44474
+42964 35809
+42965 71594
+42966 40495
+42967 42970
+42968 17029
+42969 42962
+42969 71851
+42970 81056
+42971 53762
+42972 51515
+42973 57431
+42974 35661
+42975 45650
+42976 49918
+42977 66993
+42978 50067
+42979 31916
+42980 31916
+42981 80903
+42982 20955
+42983 40611
+42984 49777
+42985 77299
+42986 11593
+42987 77112
+42988 40292
+42989 77340
+42990 49801
+42991 58614
+42992 29123
+42993 53830
+42994 56406
+42995 37579
+42996 37579
+42997 41070
+42998 59150
+42999 55037
+43000 71786
+43001 33662
+43002 21033
+43003 21848
+43004 24771
+43005 32686
+43006 59388
+43007 32955
+43008 4698
+43009 41140
+43010 42266
+43011 46848
+43012 54611
+43013 49265
+43014 51599
+43015 59388
+43016 75669
+43017 59388
+43018 33609
+43019 42999
+43020 70750
+43021 31977
+43022 30610
+43023 78427
+43024 62736
+43025 70042
+43026 53182
+43027 78969
+43028 27370
+43029 79488
+43030 74490
+43031 59369
+43032 23410
+43033 69270
+43034 25455
+43035 22519
+43036 53935
+43037 80918
+43038 80918
+43039 80918
+43040 48816
+43041 22519
+43042 62296
+43043 67873
+43044 41990
+43045 65631
+43046 33632
+43046 41829
+43047 1785
+43048 32022
+43049 41802
+43050 47534
+43051 43055
+43052 33336
+43053 58839
+43054 62419
+43055 23846
+43055 60492
+43056 68878
+43057 69179
+43058 23295
+43058 23849
+43059 1936
+43060 62397
+43061 60130
+43062 27840
+43063 49272
+43064 23817
+43065 53182
+43066 22595
+43067 71941
+43068 41474
+43069 8368
+43070 74490
+43071 63133
+43072 75955
+43073 77725
+43074 54589
+43075 47893
+43076 62397
+43077 11484
+43078 69893
+43079 23287
+43080 40579
+43080 43077
+43081 65226
+43082 73281
+43083 49699
+43084 68395
+43085 79517
+43086 31939
+43087 34590
+43088 54522
+43089 54523
+43090 54580
+43091 48751
+43092 8704
+43093 67070
+43094 44130
+43095 43094
+43096 49684
+43097 23933
+43098 45679
+43099 36415
+43100 40013
+43101 78309
+43102 30046
+43103 61685
+43104 59394
+43105 49940
+43106 21438
+43107 50281
+43108 71598
+43109 64821
+43110 64636
+43111 78307
+43112 41564
+43113 21601
+43114 40964
+43115 36460
+43116 67196
+43117 29230
+43118 68149
+43119 76816
+43120 76833
+43121 60464
+43122 62255
+43123 53067
+43124 22367
+43125 23101
+43126 58998
+43127 57833
+43128 69381
+43129 53446
+43130 63976
+43131 4698
+43132 36162
+43133 63530
+43134 22523
+43135 43644
+43136 61357
+43137 33224
+43138 23654
+43139 80575
+43140 63896
+43141 66943
+43142 38566
+43143 72756
+43144 21512
+43145 38345
+43146 34217
+43147 10254
+43148 50577
+43149 51075
+43150 40648
+43151 52575
+43152 62790
+43153 77299
+43154 73660
+43155 39556
+43156 5752
+43157 43158
+43158 53067
+43159 4920
+43160 46682
+43161 43167
+43162 14919
+43163 54888
+43164 22367
+43165 55223
+43166 60751
+43167 51244
+43168 35503
+43169 29230
+43170 69950
+43171 77385
+43172 43246
+43173 15091
+43174 51710
+43175 26110
+43175 5752
+43176 42118
+43177 27434
+43178 42686
+43179 75736
+43180 73168
+43181 2911
+43182 26101
+43183 40786
+43184 62397
+43185 79624
+43186 80614
+43187 43167
+43188 74464
+43189 50506
+43190 53774
+43191 60983
+43192 20895
+43193 43876
+43194 80904
+43195 17146
+43196 30687
+43197 33970
+43198 34936
+43198 41281
+43199 47665
+43200 22168
+43201 78338
+43202 43245
+43203 55453
+43204 25761
+43205 55454
+43206 8692
+43207 35544
+43208 76759
+43209 53026
+43210 69471
+43211 40000
+43212 68080
+43213 29981
+43214 73906
+43215 23975
+43216 73106
+43217 37956
+43218 75418
+43219 44472
+43220 41407
+43221 20407
+43222 38784
+43223 29841
+43224 37910
+43225 41299
+43226 44496
+43227 44496
+43228 52726
+43229 44149
+43230 69508
+43231 21710
+43231 44212
+43232 71823
+43233 37955
+43234 61541
+43235 60722
+43236 30337
+43237 54580
+43238 20403
+43239 65661
+43240 23958
+43241 49950
+43242 23004
+43243 23432
+43244 23434
+43245 41057
+43246 58614
+43247 20925
+43248 34806
+43249 52051
+43250 29261
+43251 42221
+43252 20792
+43253 60376
+43254 37169
+43255 37405
+43256 73125
+43257 73125
+43258 12081
+43259 63974
+43260 27202
+43261 33086
+43262 40968
+43263 27021
+43264 41399
+43265 66581
+43266 2911
+43267 23722
+43268 50282
+43269 60464
+43270 76475
+43271 36103
+43272 65562
+43273 36311
+43274 23484
+43275 39966
+43276 80595
+43277 34519
+43277 57534
+43278 61228
+43279 36311
+43280 63492
+43281 77325
+43282 61509
+43283 26229
+43284 30687
+43285 43128
+43286 63541
+43287 52120
+43288 62110
+43289 45556
+43290 55265
+43291 25146
+43292 63136
+43293 60556
+43294 77215
+43295 21196
+43296 38981
+43297 20998
+43298 66515
+43299 43745
+43300 20925
+43301 60566
+43302 22523
+43303 54463
+43304 11257
+43305 6958
+43306 43305
+43307 41446
+43307 43310
+43308 43310
+43309 58520
+43310 36304
+43311 41603
+43312 43305
+43313 29540
+43314 41295
+43315 41295
+43316 39802
+43317 2911
+43318 62299
+43319 79149
+43320 64317
+43321 43319
+43322 53135
+43323 53135
+43324 53135
+43325 40581
+43326 25149
+43327 41054
+43328 35842
+43329 24500
+43330 23418
+43331 66544
+43332 66431
+43333 42044
+43334 39210
+43335 78208
+43336 17636
+43337 49918
+43338 70974
+43339 70824
+43340 24311
+43341 6530
+43342 12083
+43343 64185
+43344 33581
+43345 43246
+43346 42738
+43347 62562
+43348 7577
+43349 60971
+43350 72000
+43351 25616
+43352 25067
+43353 57637
+43354 80883
+43355 29331
+43356 55861
+43357 47065
+43358 25488
+43359 23573
+43360 37091
+43360 5554
+43360 72628
+43361 49094
+43362 24730
+43363 56774
+43364 77218
+43365 46654
+43366 42747
+43367 32320
+43368 57346
+43369 52120
+43370 65562
+43371 65562
+43372 32774
+43373 50450
+43374 37268
+43375 78899
+43376 23286
+43377 35963
+43378 22519
+43378 26725
+43379 22519
+43380 70353
+43381 24674
+43382 45910
+43383 71222
+43384 48445
+43385 8706
+43386 77362
+43387 75804
+43388 28384
+43389 48559
+43390 55103
+43391 46305
+43392 43390
+43393 59317
+43394 43214
+43395 45072
+43396 30769
+43397 60464
+43398 65651
+43399 60218
+43400 43402
+43401 56454
+43402 49818
+43403 37906
+43404 79426
+43405 60465
+43406 61815
+43407 61817
+43408 36198
+43409 73567
+43410 36891
+43411 21496
+43412 80806
+43413 59317
+43414 74296
+43415 80025
+43416 25127
+43417 40583
+43418 31124
+43419 28341
+43420 74497
+43421 40877
+43422 62423
+43423 74968
+43424 74497
+43425 41281
+43426 28206
+43427 74966
+43428 70974
+43429 81056
+43430 49052
+43431 33191
+43432 56454
+43433 54743
+43434 7572
+43435 28528
+43436 75384
+43437 55563
+43438 60633
+43439 2911
+43440 27770
+43441 28356
+43442 46505
+43443 54100
+43444 32908
+43445 38528
+43446 55932
+43447 43693
+43448 18903
+43449 10789
+43450 23752
+43451 53312
+43452 42120
+43453 40686
+43454 34936
+43455 30875
+43456 43454
+43457 33589
+43458 43454
+43459 43454
+43460 37586
+43461 40726
+43462 57191
+43463 54154
+43464 61086
+43465 43470
+43466 15522
+43467 80545
+43468 21397
+43469 63935
+43470 49777
+43471 76094
+43472 62209
+43473 39474
+43474 6479
+43475 64517
+43476 62190
+43477 53328
+43478 52938
+43479 45198
+43480 56659
+43481 57785
+43482 61448
+43483 23282
+43484 63085
+43485 63686
+43486 23868
+43487 43497
+43488 52034
+43489 76476
+43490 52594
+43491 77036
+43492 6926
+43493 62658
+43494 45198
+43495 78457
+43496 43518
+43497 73104
+43498 31528
+43499 31528
+43500 31528
+43501 31528
+43502 31528
+43503 31528
+43504 31528
+43505 31528
+43506 31528
+43507 31528
+43508 43497
+43509 48687
+43510 31529
+43511 31528
+43512 10252
+43513 75745
+43514 52020
+43515 80926
+43516 27320
+43517 39497
+43518 31467
+43519 50646
+43520 39191
+43521 65226
+43522 29601
+43523 59912
+43524 32012
+43525 33905
+43525 61485
+43526 60735
+43527 53100
+43528 36396
+43528 43525
+43529 56272
+43530 75627
+43531 70171
+43532 65631
+43533 21405
+43534 29379
+43535 39560
+43536 43537
+43537 77095
+43538 63271
+43539 65632
+43540 65645
+43541 29507
+43542 30588
+43543 24722
+43544 37794
+43545 56359
+43546 69598
+43547 78918
+43548 57041
+43549 59994
+43550 32735
+43551 20255
+43552 43000
+43553 43990
+43554 30488
+43555 79697
+43556 76085
+43557 42738
+43558 53874
+43559 31611
+43560 57920
+43561 59433
+43562 45676
+43563 59432
+43564 25163
+43565 69125
+43566 57166
+43567 21451
+43568 60642
+43569 23255
+43570 24840
+43571 66491
+43572 23591
+43573 52970
+43574 56447
+43575 78806
+43576 73336
+43577 33693
+43578 66761
+43579 39251
+43580 32012
+43581 21075
+43582 37579
+43583 37579
+43584 28845
+43585 71804
+43586 53051
+43587 37701
+43588 55899
+43589 75133
+43590 66441
+43591 57821
+43592 23255
+43593 41054
+43594 79639
+43595 79639
+43596 60948
+43597 24239
+43598 36021
+43599 32734
+43600 32735
+43601 62379
+43602 40932
+43603 21366
+43604 27411
+43605 31493
+43606 71598
+43607 39185
+43608 49234
+43609 25751
+43610 43611
+43611 18616
+43612 44478
+43613 80514
+43614 53754
+43615 59317
+43616 61557
+43617 61996
+43618 63027
+43619 47665
+43620 8704
+43621 43807
+43622 28266
+43623 58567
+43624 37579
+43625 43584
+43626 25258
+43627 77112
+43628 33273
+43629 46629
+43630 32081
+43631 22208
+43632 21155
+43633 62957
+43634 74783
+43635 37579
+43636 59317
+43637 59317
+43638 23165
+43639 72446
+43640 72499
+43641 29324
+43642 52396
+43643 64390
+43644 41066
+43645 70494
+43646 23283
+43647 71598
+43648 23864
+43649 23007
+43650 62180
+43651 29044
+43652 69189
+43653 63494
+43654 40925
+43655 55040
+43656 63050
+43657 64127
+43658 76767
+43659 46336
+43660 40921
+43661 37401
+43662 53535
+43663 21155
+43664 11405
+43665 34245
+43666 55352
+43667 28268
+43668 33869
+43669 53500
+43670 70832
+43671 74620
+43672 52581
+43673 19848
+43674 27410
+43675 24538
+43676 4344
+43677 62044
+43678 62044
+43679 41060
+43680 43645
+43681 45059
+43682 50036
+43683 78999
+43684 32344
+43685 19794
+43686 76832
+43687 47504
+43688 54932
+43689 54933
+43690 41096
+43691 43889
+43692 43693
+43693 17849
+43694 43019
+43695 33176
+43695 59281
+43696 43693
+43697 43693
+43697 81294
+43698 36928
+43699 66672
+43700 51407
+43701 45467
+43702 64395
+43703 66672
+43704 21351
+43705 64025
+43706 26229
+43707 25205
+43708 32178
+43709 35481
+43710 25854
+43711 37374
+43712 21495
+43713 25854
+43714 71250
+43715 67874
+43716 64652
+43717 68165
+43718 22468
+43719 35016
+43720 28845
+43721 69491
+43722 62303
+43723 33273
+43724 39942
+43725 33615
+43726 78178
+43727 43703
+43728 19954
+43729 48516
+43730 47929
+43731 22602
+43732 71788
+43733 4531
+43734 30881
+43735 33891
+43736 13899
+43737 2911
+43738 47763
+43739 43020
+43740 43298
+43741 28060
+43742 67485
+43743 27298
+43744 29123
+43745 55037
+43746 40846
+43747 30158
+43748 42002
+43749 49737
+43750 55162
+43751 24415
+43752 62051
+43753 43745
+43753 58860
+43754 40234
+43755 64379
+43756 42926
+43757 61686
+43758 77190
+43759 34940
+43760 52382
+43761 26778
+43762 37741
+43763 64462
+43764 31630
+43765 61934
+43766 68490
+43767 33615
+43768 55909
+43769 66008
+43770 36752
+43771 42041
+43772 62745
+43773 28306
+43774 61488
+43775 81030
+43776 13823
+43777 64064
+43778 71017
+43779 67935
+43780 24356
+43781 37428
+43782 75487
+43783 2949
+43784 64215
+43785 33273
+43786 52132
+43787 61423
+43788 68239
+43789 36619
+43790 28482
+43791 20792
+43792 33065
+43793 49011
+43794 48711
+43795 20792
+43796 26760
+43797 58575
+43798 47665
+43799 4647
+43800 30769
+43801 23070
+43802 70974
+43803 36942
+43804 37862
+43805 48722
+43806 20955
+43807 43627
+43808 23856
+43809 20867
+43810 54998
+43811 78583
+43812 38868
+43813 66431
+43814 71597
+43815 59912
+43816 3083
+43817 80883
+43818 22362
+43819 37645
+43820 44468
+43821 49264
+43822 54224
+43823 68817
+43824 37955
+43825 6926
+43826 63416
+43827 56456
+43828 20726
+43829 58222
+43830 4840
+43831 47052
+43832 22193
+43833 15069
+43834 15066
+43835 29233
+43836 21280
+43837 23723
+43838 73907
+43839 30337
+43840 56642
+43841 63988
+43842 81425
+43843 32713
+43844 62290
+43845 41299
+43846 44496
+43847 37374
+43848 37374
+43849 59335
+43850 72946
+43851 49918
+43852 73907
+43853 28384
+43854 33315
+43855 78574
+43856 71371
+43857 72373
+43858 78099
+43859 43952
+43860 22103
+43861 43081
+43862 22533
+43863 32083
+43864 44193
+43865 57636
+43866 32081
+43867 47121
+43868 38972
+43869 38972
+43870 59385
+43871 22501
+43872 27155
+43873 21710
+43873 62306
+43874 53182
+43875 52477
+43876 30461
+43877 53225
+43878 67573
+43879 20649
+43880 50212
+43881 50343
+43882 43880
+43883 32955
+43884 37816
+43885 37839
+43886 74893
+43887 73839
+43888 77388
+43889 5321
+43890 31898
+43891 70995
+43892 80532
+43893 39421
+43894 49222
+43895 38557
+43896 42471
+43897 54940
+43898 58860
+43899 27005
+43900 21894
+43901 57152
+43902 49865
+43903 19013
+43904 58446
+43905 53217
+43906 79255
+43907 34196
+43908 32575
+43909 33891
+43910 37814
+43911 37763
+43912 39329
+43913 41054
+43914 50535
+43915 55045
+43916 70045
+43917 76447
+43918 75718
+43919 32713
+43920 35908
+43921 61175
+43922 64102
+43923 36718
+43924 32715
+43925 23585
+43926 61357
+43927 75977
+43928 76502
+43929 24538
+43930 62305
+43931 25419
+43932 74863
+43933 41054
+43934 49220
+43935 67560
+43936 79166
+43937 69161
+43938 35471
+43939 76847
+43940 42859
+43941 40011
+43942 23063
+43943 71676
+43944 56022
+43945 55563
+43946 72384
+43947 72133
+43948 48305
+43949 43117
+43950 39432
+43951 43117
+43952 48722
+43953 33575
+43954 52279
+43955 34543
+43956 42676
+43957 32591
+43958 81056
+43959 46966
+43960 52795
+43961 80514
+43962 21198
+43963 22192
+43964 49777
+43965 49777
+43966 37847
+43967 65632
+43968 53573
+43969 79486
+43970 52572
+43971 70219
+43972 52572
+43973 19068
+43974 20608
+43975 12150
+43976 21404
+43977 35660
+43978 74193
+43979 49561
+43980 69282
+43981 52633
+43982 45239
+43983 69338
+43984 37579
+43985 70375
+43986 20724
+43987 20724
+43988 46505
+43989 33316
+43990 80542
+43991 62303
+43992 56022
+43993 29030
+43994 22519
+43995 71894
+43996 62307
+43997 37374
+43998 19512
+43999 57064
+43999 57865
+44000 34519
+44001 34545
+44002 26488
+44003 68149
+44004 23995
+44005 63050
+44006 67573
+44007 67573
+44008 34218
+44009 24593
+44010 79002
+44011 79002
+44012 51598
+44013 64185
+44014 71096
+44015 50105
+44016 20792
+44017 26157
+44018 23162
+44019 55563
+44020 2684
+44021 43968
+44022 29495
+44023 50203
+44024 79113
+44025 44023
+44026 28897
+44027 11311
+44028 65743
+44029 39433
+44030 73399
+44031 73398
+44032 23070
+44033 50657
+44034 70974
+44035 52382
+44036 55610
+44037 47682
+44038 57134
+44039 32661
+44040 54523
+44041 30837
+44042 72260
+44043 35822
+44044 49777
+44045 21205
+44046 37862
+44046 79055
+44047 33715
+44048 28241
+44048 62193
+44049 74966
+44050 46512
+44051 81181
+44052 22468
+44053 43935
+44054 33007
+44055 20955
+44056 37862
+44057 22517
+44058 44065
+44059 9481
+44060 68878
+44061 55135
+44062 68727
+44063 29278
+44064 44017
+44064 44057
+44065 40234
+44066 42266
+44067 38086
+44068 59352
+44069 60985
+44070 44046
+44070 44055
+44071 68727
+44072 68727
+44073 27948
+44074 68817
+44075 24504
+44076 32141
+44077 32567
+44078 35486
+44079 39969
+44080 68794
+44081 78263
+44082 66672
+44083 66669
+44084 30157
+44085 66672
+44086 36928
+44087 66672
+44088 62290
+44089 73751
+44090 12150
+44091 49702
+44092 62443
+44093 75003
+44094 52727
+44095 41861
+44096 50337
+44097 20792
+44098 22137
+44098 57882
+44099 45375
+44099 62333
+44100 31986
+44101 50657
+44102 39463
+44103 1712
+44104 60685
+44105 78127
+44106 32981
+44107 68596
+44108 45696
+44109 50841
+44110 23751
+44111 76759
+44112 27335
+44113 57833
+44114 43062
+44115 60685
+44116 5191
+44117 63398
+44118 34940
+44119 60575
+44120 60948
+44121 75564
+44122 69283
+44123 30456
+44124 45407
+44125 45407
+44126 65446
+44127 34170
+44128 43420
+44129 37657
+44130 72075
+44131 33385
+44132 41096
+44133 73066
+44134 68596
+44135 59591
+44136 66591
+44137 68184
+44138 55152
+44139 28790
+44140 39191
+44141 79673
+44142 65893
+44143 61776
+44144 38787
+44145 47150
+44146 77675
+44147 79485
+44148 71591
+44149 60643
+44150 27345
+44151 46336
+44152 23532
+44153 34898
+44154 47665
+44155 48480
+44156 26403
+44157 52752
+44158 12751
+44159 59263
+44160 60532
+44161 60786
+44162 60787
+44163 60785
+44164 62290
+44165 65500
+44166 67529
+44167 71416
+44168 72103
+44169 72360
+44170 73705
+44171 76759
+44172 77670
+44173 48476
+44174 39724
+44175 2911
+44176 21493
+44177 75471
+44178 71823
+44179 71941
+44180 72658
+44181 36208
+44182 78084
+44183 5104
+44184 21855
+44185 42553
+44186 27679
+44187 60616
+44188 21855
+44189 42553
+44190 35144
+44191 63689
+44192 42553
+44193 31939
+44194 24509
+44195 35552
+44196 57673
+44197 56022
+44197 77232
+44198 51820
+44199 56022
+44200 36208
+44201 36208
+44202 38995
+44203 34543
+44204 29240
+44205 50203
+44206 32908
+44207 24723
+44208 78208
+44209 32524
+44210 51677
+44211 73106
+44212 42788
+44213 43745
+44213 48832
+44214 43299
+44215 58447
+44216 77764
+44217 70152
+44218 28455
+44219 28455
+44220 50203
+44221 78582
+44222 49094
+44223 80943
+44224 42344
+44225 36942
+44226 43876
+44227 44115
+44228 46525
+44229 29378
+44230 47384
+44231 47406
+44232 75222
+44233 51957
+44234 65117
+44235 53130
+44236 54308
+44237 54835
+44238 55610
+44239 43753
+44239 48832
+44240 34870
+44241 59669
+44242 63702
+44243 64636
+44244 65553
+44245 44219
+44246 27104
+44247 41106
+44248 75222
+44249 76037
+44250 77864
+44251 80045
+44252 27298
+44253 27006
+44254 41807
+44255 30784
+44256 69136
+44257 27021
+44258 52970
+44259 39724
+44260 54846
+44261 43745
+44261 48832
+44262 49094
+44263 44320
+44264 69752
+44265 40654
+44266 23680
+44267 30784
+44268 62734
+44269 43844
+44270 59178
+44271 23516
+44272 37191
+44273 37195
+44274 52273
+44275 21788
+44276 61117
+44277 78831
+44278 48358
+44279 49918
+44280 70919
+44281 49920
+44282 37948
+44283 55223
+44284 59178
+44285 66269
+44286 43112
+44287 49593
+44288 35308
+44289 23483
+44290 78831
+44291 56414
+44292 39874
+44293 39875
+44294 59178
+44295 39651
+44296 59389
+44297 80904
+44298 62110
+44299 56886
+44300 33134
+44301 46269
+44302 60575
+44303 28845
+44304 50521
+44305 48576
+44306 49777
+44307 38606
+44308 14920
+44309 40028
+44310 38641
+44311 69834
+44312 32410
+44313 71017
+44314 49777
+44315 71598
+44316 47155
+44317 30026
+44318 37687
+44319 24822
+44320 55132
+44321 34972
+44322 37758
+44323 76064
+44324 27334
+44325 1383
+44326 34347
+44327 55503
+44328 25600
+44329 35002
+44330 69122
+44331 71594
+44332 35805
+44333 72248
+44334 24242
+44335 4840
+44336 48209
+44337 1383
+44338 42747
+44339 73066
+44340 28241
+44341 22691
+44342 57934
+44343 51105
+44344 37119
+44345 71973
+44346 74722
+44347 80150
+44348 80160
+44349 55168
+44350 40234
+44351 29767
+44352 44349
+44353 55154
+44354 41321
+44355 53457
+44356 48405
+44357 2911
+44358 61189
+44359 11311
+44360 37579
+44361 80778
+44361 9339
+44362 32450
+44363 55350
+44364 68844
+44365 35737
+44366 44365
+44367 79213
+44368 54397
+44369 56718
+44370 38916
+44371 23482
+44372 49777
+44373 65124
+44374 51000
+44375 35552
+44376 55220
+44377 33547
+44378 66612
+44379 66672
+44380 61147
+44381 59494
+44382 49950
+44383 58835
+44384 52283
+44385 45841
+44386 61699
+44387 4432
+44388 49183
+44389 67508
+44390 31009
+44391 59388
+44392 40819
+44393 51515
+44394 24538
+44395 44406
+44396 47215
+44397 41115
+44398 27104
+44399 22427
+44400 22430
+44401 78309
+44402 39372
+44403 10434
+44404 52895
+44405 47215
+44406 32698
+44407 37948
+44408 66450
+44409 72879
+44410 78928
+44411 49163
+44412 64979
+44413 32439
+44414 29689
+44415 22879
+44416 20724
+44417 52386
+44418 14919
+44419 26094
+44420 61228
+44421 61477
+44422 64033
+44423 27786
+44424 44419
+44425 44131
+44426 74949
+44427 22988
+44428 39916
+44429 54359
+44430 39493
+44431 80595
+44432 55448
+44433 38633
+44433 44432
+44434 58403
+44435 51522
+44436 69975
+44437 59330
+44438 37403
+44439 37560
+44440 26134
+44441 23433
+44442 41125
+44443 63974
+44444 68967
+44445 25646
+44446 26100
+44447 26101
+44448 78831
+44449 57833
+44450 72464
+44451 43718
+44452 39191
+44453 44451
+44454 38171
+44454 47727
+44455 61347
+44456 61477
+44457 76879
+44458 79641
+44459 58640
+44460 64082
+44461 34811
+44462 22083
+44463 46430
+44464 29602
+44465 51487
+44466 28845
+44467 59330
+44468 44447
+44469 26094
+44470 4516
+44471 43213
+44472 40894
+44473 40894
+44473 57106
+44474 23482
+44475 59990
+44476 44474
+44477 22763
+44478 42747
+44479 22759
+44479 22792
+44479 72923
+44479 78941
+44480 58257
+44481 49777
+44482 4040
+44483 4040
+44484 20255
+44485 42960
+44486 11311
+44487 44486
+44488 21487
+44489 45800
+44490 54580
+44491 15576
+44492 78456
+44493 27441
+44494 20968
+44495 43213
+44496 75418
+44497 23776
+44498 67657
+44499 23776
+44500 23776
+44501 23776
+44502 24462
+44503 54465
+44504 54465
+44505 26178
+44506 56504
+44507 23776
+44508 26178
+44509 66676
+44510 53057
+44511 53057
+44512 23776
+44513 67657
+44514 67657
+44515 67657
+44516 53057
+44517 37112
+44518 66676
+44519 66676
+44520 56504
+44521 53057
+44522 53057
+44523 37258
+44524 53057
+44525 23776
+44526 23776
+44527 64350
+44528 67657
+44529 56504
+44530 31178
+44531 22210
+44532 66676
+44533 62299
+44534 23534
+44535 37258
+44536 23776
+44537 54255
+44538 18986
+44538 67657
+44539 41669
+44540 56504
+44541 26178
+44542 66676
+44543 54465
+44544 42277
+44545 26178
+44546 56504
+44547 66676
+44548 31178
+44549 26178
+44550 54255
+44551 67657
+44552 46595
+44553 37258
+44554 64350
+44555 26178
+44556 26178
+44557 23534
+44558 56504
+44559 56504
+44560 37258
+44561 76566
+44562 23776
+44563 23776
+44564 56504
+44565 53057
+44566 53057
+44567 23776
+44568 67657
+44569 67657
+44570 54465
+44571 67657
+44572 64350
+44573 24462
+44574 37112
+44575 66676
+44576 37258
+44577 67657
+44578 35250
+44579 54465
+44580 56504
+44581 37258
+44582 24462
+44583 29741
+44584 56504
+44585 53057
+44586 23776
+44587 37258
+44588 37112
+44589 37258
+44590 37112
+44591 22210
+44592 54465
+44593 66676
+44594 56504
+44595 56504
+44596 56504
+44597 56504
+44598 23776
+44599 23776
+44600 67657
+44601 23534
+44602 56504
+44603 37258
+44604 62299
+44605 43846
+44606 37258
+44607 56504
+44608 37112
+44609 67657
+44610 37112
+44611 67657
+44612 37112
+44613 23776
+44614 23776
+44615 46595
+44616 56504
+44617 66676
+44618 42277
+44619 66676
+44620 46595
+44621 23776
+44622 42277
+44623 42277
+44624 54465
+44625 56416
+44626 24462
+44627 64350
+44628 43846
+44629 41669
+44630 23776
+44631 26178
+44632 23534
+44633 23776
+44634 67657
+44635 54255
+44636 37258
+44637 67657
+44638 53057
+44639 24462
+44640 37258
+44641 23534
+44642 56504
+44643 66676
+44644 23776
+44645 54465
+44646 23776
+44647 37112
+44648 56504
+44649 66676
+44650 37112
+44651 23776
+44652 67657
+44653 56504
+44654 24462
+44655 29741
+44656 66676
+44657 26178
+44658 23776
+44659 64350
+44660 26178
+44661 67657
+44662 53057
+44663 67657
+44664 67657
+44665 56504
+44666 37112
+44667 23534
+44668 56504
+44669 37112
+44670 37112
+44671 23776
+44672 37112
+44673 23534
+44674 41669
+44675 66676
+44676 66676
+44677 54255
+44678 56504
+44679 67657
+44680 67657
+44681 37258
+44682 23534
+44683 22210
+44684 37112
+44685 43846
+44686 64350
+44687 23776
+44688 37258
+44689 66676
+44690 26178
+44691 46595
+44692 24462
+44693 66676
+44694 56504
+44695 43846
+44696 31178
+44697 37258
+44698 37258
+44699 53057
+44700 56504
+44701 23534
+44702 29741
+44703 54465
+44704 29741
+44705 80977
+44706 66676
+44707 66676
+44708 64350
+44709 23776
+44710 46595
+44711 23776
+44712 66676
+44713 37258
+44714 46595
+44715 29741
+44716 23776
+44717 42277
+44718 23776
+44719 37258
+44720 37112
+44721 24462
+44722 67657
+44723 24462
+44724 37112
+44725 64350
+44726 37112
+44727 23776
+44728 37112
+44729 37112
+44730 53057
+44731 37112
+44732 64350
+44733 43846
+44734 23776
+44735 54465
+44736 37258
+44737 54465
+44738 23776
+44739 67657
+44740 23776
+44741 23776
+44742 62299
+44743 62299
+44744 23776
+44745 23776
+44746 64350
+44747 46595
+44748 53057
+44749 67657
+44750 64350
+44751 53057
+44752 23534
+44753 23776
+44754 46595
+44755 54465
+44756 54465
+44757 37112
+44758 54465
+44759 43846
+44760 29741
+44761 23776
+44762 37112
+44763 37258
+44764 23776
+44765 37258
+44766 23776
+44767 43846
+44768 54255
+44769 66676
+44770 37258
+44771 53057
+44772 54465
+44773 54465
+44774 67657
+44775 37112
+44776 53057
+44777 54465
+44778 32241
+44779 67657
+44780 56504
+44781 26178
+44782 26178
+44783 66676
+44784 22210
+44785 37258
+44786 66676
+44787 66676
+44788 67657
+44789 54465
+44790 67657
+44791 23776
+44792 53057
+44792 9102
+44793 23776
+44794 26178
+44795 26178
+44796 37258
+44797 46595
+44798 24462
+44799 53057
+44800 23776
+44801 23776
+44802 24462
+44803 56504
+44804 67657
+44805 41669
+44806 43846
+44807 26178
+44808 54465
+44809 67657
+44810 43846
+44811 24462
+44812 67657
+44813 64350
+44814 37258
+44815 56504
+44816 62299
+44817 24462
+44818 37112
+44819 29741
+44820 37258
+44821 37112
+44822 56416
+44823 37112
+44824 54465
+44825 37112
+44826 29741
+44827 54465
+44828 37112
+44829 54465
+44830 46595
+44831 54255
+44832 37258
+44833 29741
+44834 42277
+44835 23534
+44836 56504
+44837 62299
+44838 56504
+44839 56504
+44840 66676
+44841 67657
+44842 54465
+44843 46595
+44844 67657
+44845 67657
+44846 42277
+44847 66676
+44848 23776
+44849 43846
+44850 66676
+44851 56504
+44852 37258
+44853 43846
+44854 67657
+44855 23776
+44856 24462
+44857 24462
+44858 54465
+44859 32241
+44860 53057
+44861 56416
+44862 23776
+44863 56504
+44864 56416
+44865 56416
+44866 23776
+44867 54255
+44868 64350
+44869 24462
+44870 66676
+44871 26178
+44872 56416
+44873 56504
+44874 56416
+44875 56504
+44876 56504
+44877 23776
+44878 54465
+44879 41669
+44880 23776
+44881 67657
+44882 37112
+44883 42277
+44884 56504
+44885 64350
+44886 67657
+44887 56504
+44888 37258
+44889 41669
+44890 56416
+44891 37112
+44892 23534
+44893 23776
+44894 23776
+44895 56504
+44896 54465
+44897 54465
+44898 67657
+44899 56504
+44900 23776
+44901 62299
+44902 56416
+44903 23776
+44904 66676
+44905 56504
+44906 26178
+44907 64350
+44908 23776
+44909 66676
+44910 56504
+44911 37112
+44912 56504
+44913 23776
+44914 29741
+44915 54465
+44916 37112
+44917 54465
+44918 37112
+44919 26178
+44920 66676
+44921 54465
+44922 41669
+44923 66676
+44924 23776
+44925 67657
+44926 37258
+44927 26178
+44928 43846
+44929 66676
+44930 67657
+44931 37112
+44932 56504
+44933 41669
+44934 37258
+44935 26178
+44936 54465
+44937 43846
+44938 43846
+44939 23776
+44940 37258
+44941 24462
+44942 42277
+44943 43846
+44944 37112
+44945 37112
+44946 80977
+44947 54465
+44948 24462
+44949 31178
+44950 23776
+44951 23776
+44952 53057
+44953 64350
+44954 54255
+44955 23776
+44956 23534
+44957 23776
+44958 37258
+44959 23534
+44960 53057
+44961 43846
+44962 23776
+44963 62299
+44964 67657
+44965 46595
+44966 24462
+44967 67657
+44968 24462
+44969 37258
+44970 29741
+44971 26178
+44972 22210
+44973 37258
+44974 54465
+44975 56504
+44976 56504
+44977 80977
+44978 56504
+44979 56708
+44980 24462
+44981 64350
+44982 56416
+44983 23534
+44984 56504
+44985 37112
+44986 24462
+44987 66676
+44988 66676
+44989 56504
+44990 66676
+44991 64350
+44992 37112
+44993 37258
+44994 23776
+44995 23776
+44996 24462
+44997 24462
+44998 37112
+44999 66676
+45000 66676
+45001 37112
+45002 67657
+45003 80977
+45004 54465
+45005 42277
+45006 54465
+45007 56416
+45008 64350
+45009 24462
+45010 23534
+45011 41669
+45012 23776
+45013 23534
+45014 66676
+45015 26178
+45016 24462
+45017 66676
+45018 24462
+45019 64350
+45020 53057
+45021 26178
+45022 67657
+45023 66676
+45024 23776
+45025 66676
+45026 56504
+45027 56504
+45028 66676
+45029 23776
+45030 23776
+45031 23776
+45032 43846
+45033 24462
+45034 26178
+45035 64350
+45036 23776
+45037 46595
+45038 67657
+45039 41669
+45040 23776
+45041 23776
+45042 37258
+45043 53057
+45044 46595
+45045 23776
+45046 56504
+45047 60294
+45048 30797
+45049 58154
+45050 53125
+45051 38079
+45052 45075
+45053 31562
+45054 40819
+45055 62679
+45056 66324
+45057 39008
+45058 48347
+45059 57528
+45060 20925
+45061 76447
+45062 68818
+45063 39008
+45064 37892
+45065 37887
+45066 55002
+45067 55113
+45068 53182
+45069 64101
+45070 69701
+45071 56718
+45072 64721
+45073 54994
+45074 45062
+45075 45063
+45076 78776
+45077 45749
+45078 41054
+45079 45081
+45080 45077
+45081 59304
+45082 47380
+45083 77646
+45084 47665
+45085 42747
+45086 67490
+45087 22691
+45088 55223
+45089 50160
+45090 73907
+45091 39658
+45092 64357
+45093 63055
+45094 68817
+45095 62304
+45096 26097
+45097 74119
+45098 78954
+45099 23065
+45100 56022
+45101 30774
+45101 69523
+45102 36928
+45103 59427
+45104 62808
+45105 72218
+45106 30689
+45107 78921
+45108 47665
+45109 80860
+45110 46610
+45110 62345
+45111 43214
+45112 26096
+45113 61702
+45114 33583
+45115 45117
+45116 56748
+45117 79248
+45118 49731
+45119 66943
+45120 29476
+45121 20605
+45122 40331
+45123 43345
+45124 29660
+45125 43597
+45126 72935
+45127 46505
+45128 31592
+45129 61767
+45130 35290
+45131 65025
+45132 52907
+45133 31493
+45134 73310
+45135 70219
+45136 22997
+45137 81056
+45138 15152
+45139 64241
+45140 67339
+45141 76953
+45142 36763
+45143 76067
+45144 40585
+45145 48358
+45146 22517
+45147 40001
+45148 52123
+45149 49282
+45150 73043
+45151 23356
+45152 24698
+45153 47665
+45154 24698
+45155 18616
+45156 31562
+45157 32168
+45158 33209
+45159 34048
+45160 72365
+45161 39335
+45162 43390
+45163 48385
+45164 47665
+45165 51299
+45166 56278
+45167 70179
+45168 64015
+45169 61423
+45170 64571
+45171 8975
+45172 15518
+45173 54026
+45174 68177
+45175 68755
+45176 41666
+45177 66201
+45178 68502
+45179 7577
+45180 74357
+45181 21933
+45182 24698
+45183 76873
+45184 79719
+45185 45149
+45186 48978
+45187 52132
+45188 42407
+45189 64360
+45190 18515
+45191 45192
+45192 61709
+45193 28380
+45194 56022
+45195 78756
+45196 43627
+45197 20565
+45198 20855
+45199 69975
+45200 45198
+45201 70264
+45202 75384
+45203 81016
+45204 81014
+45205 71291
+45206 48305
+45207 35553
+45208 29660
+45209 27229
+45210 65632
+45211 52245
+45212 52839
+45213 42603
+45214 70974
+45215 46475
+45216 27637
+45217 37428
+45218 2684
+45219 19068
+45220 62303
+45221 66803
+45222 73907
+45223 25104
+45224 42313
+45225 73907
+45226 23938
+45227 32082
+45228 23063
+45229 52727
+45230 32177
+45231 20724
+45232 53315
+45233 77269
+45234 67880
+45235 32177
+45236 47880
+45237 67146
+45238 71192
+45239 47665
+45240 72350
+45241 42553
+45242 52912
+45243 71685
+45244 25854
+45245 28845
+45246 26229
+45247 30780
+45248 26229
+45249 41054
+45250 22534
+45251 61244
+45252 46596
+45253 67586
+45254 47665
+45255 47665
+45256 67889
+45257 29117
+45258 25376
+45259 70920
+45260 24723
+45261 53830
+45261 80778
+45262 80778
+45263 23739
+45264 41603
+45264 64017
+45265 6923
+45265 80778
+45266 30957
+45267 41616
+45268 30691
+45269 42044
+45270 24780
+45271 31426
+45272 2377
+45273 2377
+45274 39348
+45275 25145
+45276 45198
+45277 15594
+45278 1423
+45279 49774
+45280 45683
+45281 33855
+45282 37699
+45283 66505
+45284 62629
+45285 34729
+45286 2523
+45287 40060
+45288 45060
+45289 49115
+45290 38026
+45291 80035
+45292 54438
+45293 32567
+45294 2554
+45295 50646
+45296 27155
+45297 46966
+45298 25471
+45299 25470
+45300 53718
+45301 59369
+45302 81404
+45303 37645
+45304 73907
+45305 45304
+45306 45304
+45307 73066
+45308 64151
+45309 71602
+45310 71786
+45311 33637
+45312 33639
+45313 56146
+45314 45326
+45315 29245
+45316 35552
+45317 34705
+45318 35543
+45319 64291
+45320 22494
+45321 72565
+45322 42002
+45322 50225
+45323 34705
+45324 29760
+45325 54359
+45326 75033
+45327 80904
+45328 47665
+45329 41021
+45330 56022
+45331 76832
+45332 14780
+45333 32092
+45334 65293
+45335 42476
+45336 41382
+45337 20727
+45338 66672
+45339 10252
+45340 60461
+45341 10789
+45342 15247
+45343 78654
+45344 6768
+45345 6768
+45346 69932
+45347 61564
+45348 42609
+45349 47428
+45350 74942
+45351 23654
+45352 49731
+45353 27877
+45354 27586
+45355 27586
+45356 22782
+45357 18616
+45358 35807
+45359 21534
+45360 27877
+45361 68490
+45362 22927
+45363 47414
+45364 39134
+45365 56315
+45365 72330
+45366 42747
+45367 53055
+45368 74741
+45369 47665
+45370 47665
+45371 34287
+45372 43093
+45373 70762
+45374 1787
+45375 70762
+45376 72424
+45377 61157
+45378 64652
+45379 35637
+45380 57761
+45381 29287
+45382 69525
+45383 23101
+45383 55307
+45384 22083
+45385 78159
+45386 48271
+45387 21126
+45388 21153
+45389 62736
+45390 25471
+45391 28748
+45392 2911
+45393 20694
+45394 80896
+45395 59970
+45396 68762
+45397 49918
+45398 60685
+45399 34726
+45400 64131
+45401 54177
+45402 40877
+45403 32524
+45404 73552
+45405 72273
+45406 31268
+45407 46931
+45408 33841
+45409 32976
+45410 52460
+45411 27879
+45412 52970
+45413 41571
+45414 52970
+45415 52970
+45416 44216
+45417 44216
+45418 42182
+45419 48620
+45420 48358
+45421 34247
+45421 48358
+45422 21719
+45423 37006
+45424 45466
+45425 45467
+45426 30194
+45427 27565
+45428 44324
+45429 59680
+45430 68239
+45431 22137
+45432 77138
+45433 22137
+45434 22820
+45434 61301
+45435 23516
+45436 78831
+45437 70762
+45438 64325
+45439 37138
+45440 27679
+45441 69336
+45442 70919
+45443 45442
+45444 45442
+45445 45442
+45446 39065
+45447 57183
+45448 50274
+45449 22782
+45450 21710
+45451 20792
+45452 22529
+45452 45459
+45453 45459
+45454 43261
+45455 45459
+45456 45459
+45457 21701
+45458 46345
+45459 40410
+45460 62912
+45461 59389
+45462 33832
+45463 20792
+45464 55543
+45465 33450
+45466 59385
+45467 74893
+45468 45469
+45469 29733
+45470 45469
+45471 23483
+45472 37374
+45473 56699
+45474 79601
+45475 34729
+45476 78968
+45477 55572
+45478 46596
+45479 38795
+45480 11670
+45481 49737
+45482 50528
+45483 22691
+45484 70112
+45485 26929
+45486 20960
+45487 56774
+45488 51036
+45489 26923
+45490 79125
+45491 25382
+45492 36942
+45493 39802
+45494 68882
+45495 44065
+45496 27268
+45497 27268
+45498 53135
+45499 48046
+45499 71586
+45500 63136
+45501 23285
+45502 14920
+45503 27434
+45504 47665
+45505 27434
+45506 30740
+45507 7577
+45508 8268
+45509 68212
+45510 25419
+45511 56976
+45512 12078
+45513 59800
+45514 41584
+45515 29324
+45516 1792
+45517 56867
+45518 65700
+45519 35197
+45520 50923
+45521 39065
+45522 45311
+45523 40180
+45524 40585
+45525 61147
+45526 24311
+45527 45526
+45528 7410
+45529 45534
+45530 60714
+45531 61837
+45532 45534
+45533 79610
+45534 60714
+45535 45526
+45536 70291
+45537 50675
+45538 39724
+45539 38956
+45540 50660
+45541 42725
+45542 72246
+45543 20679
+45544 68184
+45545 40611
+45546 36077
+45547 37560
+45548 33086
+45549 63506
+45550 58135
+45551 79926
+45552 50541
+45553 51555
+45554 54025
+45555 57714
+45556 56021
+45557 80778
+45558 45550
+45559 41666
+45560 41736
+45561 42935
+45562 45561
+45563 63931
+45564 35144
+45565 75033
+45566 62403
+45567 55831
+45568 72992
+45569 49210
+45570 34705
+45571 71055
+45571 71766
+45572 10770
+45573 26666
+45574 43455
+45575 51555
+45576 80514
+45577 21746
+45578 80514
+45579 24999
+45580 7412
+45581 3087
+45582 31717
+45583 23165
+45584 63026
+45585 38959
+45586 41666
+45587 41666
+45588 41906
+45589 35541
+45590 47665
+45591 46849
+45592 69820
+45593 33442
+45594 64230
+45595 56324
+45596 56392
+45597 13466
+45598 69980
+45599 61493
+45600 62532
+45601 41666
+45602 52819
+45603 66918
+45604 23165
+45605 70139
+45606 29832
+45607 53055
+45608 76138
+45609 20565
+45610 79974
+45611 59510
+45612 80880
+45613 76475
+45614 80514
+45615 2911
+45616 46098
+45617 80514
+45618 47665
+45619 5547
+45620 80514
+45621 42049
+45622 35654
+45623 23772
+45624 72001
+45625 56013
+45626 74378
+45627 47665
+45628 57314
+45629 59595
+45630 47236
+45631 24504
+45631 45635
+45632 1785
+45632 45635
+45633 10789
+45634 34525
+45635 72614
+45636 45407
+45636 45635
+45637 52717
+45638 45643
+45639 63420
+45640 70342
+45641 80428
+45642 45635
+45642 56774
+45643 60492
+45644 62442
+45645 68759
+45646 77693
+45647 38043
+45648 39544
+45649 39846
+45650 48358
+45651 81338
+45652 79880
+45653 43534
+45654 26954
+45655 26964
+45656 36820
+45657 61157
+45658 81080
+45659 37407
+45660 34729
+45661 24459
+45662 38171
+45663 21198
+45664 56622
+45665 64979
+45666 45708
+45667 30733
+45668 25745
+45669 75861
+45670 7293
+45671 45683
+45672 48238
+45673 64251
+45674 5346
+45675 49777
+45676 61702
+45677 48724
+45678 41366
+45678 46153
+45679 37701
+45680 41366
+45681 17314
+45681 80292
+45682 73754
+45683 49777
+45684 79936
+45685 50246
+45686 43586
+45687 63455
+45688 50266
+45689 34774
+45690 27472
+45691 29507
+45692 29507
+45693 55037
+45694 13623
+45695 55470
+45696 22656
+45697 63338
+45698 24950
+45699 5607
+45700 31385
+45701 60150
+45702 12096
+45703 22529
+45704 53423
+45705 11446
+45706 2911
+45707 35424
+45708 47665
+45709 35461
+45710 53754
+45711 72848
+45712 62638
+45713 76873
+45714 48095
+45715 32524
+45716 28296
+45717 45505
+45718 65692
+45719 56389
+45720 23380
+45721 33994
+45722 26607
+45723 46025
+45724 2911
+45725 47167
+45726 45696
+45727 44327
+45728 32909
+45729 57939
+45730 33827
+45731 79819
+45732 79818
+45733 39181
+45734 34807
+45735 32567
+45736 30687
+45737 73336
+45738 43703
+45739 79125
+45740 7922
+45741 37701
+45742 23524
+45743 31468
+45744 75456
+45745 26919
+45746 62816
+45747 74966
+45748 71593
+45749 71606
+45750 45746
+45751 21405
+45752 2437
+45753 28241
+45754 36631
+45755 49619
+45756 58826
+45757 21107
+45758 30353
+45759 62810
+45760 33775
+45761 2911
+45762 29039
+45763 45759
+45764 14919
+45765 35649
+45766 38467
+45767 78334
+45768 53209
+45768 58035
+45769 44193
+45770 59602
+45771 55154
+45772 23762
+45773 33637
+45774 24840
+45775 68305
+45776 78364
+45777 35361
+45778 58369
+45779 25437
+45780 24242
+45781 76525
+45782 34547
+45783 57259
+45784 12965
+45785 22502
+45786 13570
+45787 65562
+45788 20419
+45789 64994
+45790 65562
+45791 45800
+45792 39557
+45793 30017
+45794 11481
+45795 34972
+45796 68763
+45797 35078
+45798 34976
+45799 30507
+45800 63134
+45801 59338
+45802 28242
+45803 40534
+45804 22826
+45805 41427
+45806 55132
+45807 58520
+45808 68763
+45809 32430
+45810 45806
+45811 31611
+45812 31916
+45813 53123
+45814 36208
+45815 22534
+45816 21318
+45817 28064
+45818 34681
+45819 21524
+45821 23869
+45822 55663
+45823 22983
+45823 77672
+45824 24225
+45825 69351
+45826 75917
+45827 55449
+45828 44369
+45829 71897
+45830 41798
+45831 45826
+45832 4202
+45833 55663
+45834 55663
+45835 7577
+45836 22763
+45836 22848
+45837 47665
+45838 36760
+45839 46585
+45840 53215
+45841 29980
+45842 49456
+45843 53219
+45844 67869
+45845 65973
+45846 38066
+45847 38066
+45848 60590
+45849 60590
+45850 60590
+45851 60589
+45852 18616
+45853 19954
+45854 40043
+45855 46589
+45856 47215
+45857 38719
+45858 10249
+45859 63845
+45860 51245
+45861 52105
+45862 40150
+45863 40148
+45864 56946
+45865 13547
+45866 61722
+45867 71061
+45868 22194
+45869 31405
+45870 31405
+45871 50799
+45872 45871
+45873 10150
+45874 10845
+45875 45881
+45876 40707
+45877 61002
+45878 40894
+45879 45881
+45880 60492
+45881 43124
+45882 45871
+45883 23995
+45884 72988
+45885 40737
+45886 41371
+45887 25232
+45888 42219
+45889 39764
+45890 58944
+45891 66211
+45892 32530
+45893 32347
+45894 26229
+45895 7567
+45896 21512
+45896 7566
+45897 65885
+45898 49777
+45899 45898
+45900 60853
+45901 74219
+45902 33476
+45903 43245
+45904 45821
+45905 52761
+45906 77824
+45907 38171
+45908 80532
+45909 39191
+45910 79125
+45911 25618
+45912 23195
+45913 41666
+45914 53055
+45915 50962
+45916 43713
+45917 53803
+45918 31483
+45919 31482
+45920 43713
+45921 29105
+45922 60954
+45923 32663
+45924 79248
+45925 60202
+45926 49152
+45927 23482
+45928 50330
+45929 45927
+45930 2949
+45931 72217
+45932 24538
+45933 76759
+45934 22372
+45935 27631
+45936 23102
+45937 33771
+45938 45578
+45939 41666
+45940 77693
+45941 79025
+45942 59317
+45943 53753
+45944 43332
+45945 42960
+45946 71017
+45947 79798
+45948 32524
+45949 1591
+45950 79025
+45951 11311
+45952 79951
+45953 42118
+45954 59486
+45955 32177
+45956 41842
+45957 26110
+45957 60357
+45958 36057
+45959 43420
+45960 58158
+45961 25014
+45962 30740
+45963 45967
+45964 51607
+45965 39702
+45966 68491
+45967 41571
+45968 43609
+45969 24232
+45970 5195
+45971 62174
+45972 20618
+45973 50841
+45974 15785
+45975 62116
+45976 35140
+45977 38999
+45978 46882
+45979 76067
+45980 17636
+45980 55363
+45981 79682
+45982 45113
+45983 80778
+45984 45113
+45985 55132
+45986 55132
+45987 64997
+45988 23966
+45989 30521
+45990 38506
+45991 49449
+45992 41800
+45993 50293
+45994 11589
+45995 44324
+45996 41571
+45997 42613
+45998 45799
+45999 19638
+46000 63887
+46001 39933
+46002 63870
+46003 63886
+46004 68508
+46005 20457
+46006 39067
+46007 65537
+46008 76908
+46009 42120
+46010 58860
+46011 64636
+46012 54363
+46013 60202
+46014 11977
+46015 2911
+46016 24224
+46017 66827
+46018 20777
+46019 24048
+46020 57755
+46021 57988
+46022 78161
+46023 17212
+46024 17503
+46025 22731
+46026 24045
+46027 24981
+46028 47722
+46029 27455
+46030 28573
+46031 29540
+46032 30332
+46033 53129
+46034 46075
+46035 38737
+46036 45871
+46037 46036
+46038 46040
+46039 46040
+46040 43124
+46041 46036
+46042 59782
+46043 52120
+46044 7956
+46045 48377
+46046 51638
+46047 53508
+46048 71897
+46049 8975
+46050 22099
+46051 69132
+46052 71022
+46053 71475
+46054 39294
+46055 47722
+46056 54128
+46057 61228
+46058 44478
+46059 79826
+46060 32081
+46061 59317
+46062 51758
+46063 23792
+46064 23356
+46065 63434
+46066 27944
+46067 54804
+46068 54804
+46069 79601
+46070 81257
+46071 32760
+46072 49459
+46073 23380
+46074 66753
+46075 62655
+46076 36803
+46077 45448
+46078 69486
+46079 76951
+46080 9602
+46081 59317
+46082 21713
+46083 21713
+46084 21746
+46085 23458
+46086 66053
+46087 43550
+46088 32734
+46089 43390
+46090 63149
+46091 38282
+46092 23591
+46093 77693
+46094 47665
+46095 45301
+46096 45550
+46097 47524
+46098 51833
+46099 73559
+46100 61286
+46101 51832
+46102 26391
+46103 54614
+46104 55076
+46105 46441
+46106 57102
+46107 58975
+46108 59062
+46109 66629
+46110 71973
+46111 46129
+46112 60826
+46113 74741
+46114 67007
+46115 76884
+46116 71407
+46117 43844
+46118 32524
+46119 70076
+46120 72514
+46121 75427
+46122 43267
+46123 69116
+46124 80848
+46125 25710
+46126 26780
+46127 52396
+46128 71676
+46129 22932
+46130 62547
+46131 46239
+46132 43018
+46133 46240
+46134 28241
+46135 23864
+46136 44212
+46137 80355
+46138 81181
+46139 7639
+46140 68889
+46141 69980
+46142 64081
+46143 49311
+46144 56022
+46145 67573
+46146 68380
+46147 68378
+46148 35486
+46149 49632
+46150 75471
+46151 43175
+46152 49777
+46153 20814
+46154 29476
+46155 72596
+46156 71587
+46157 15785
+46158 27104
+46159 49865
+46160 43943
+46161 74964
+46162 2911
+46163 81332
+46164 21713
+46165 23284
+46166 26152
+46167 52532
+46168 6789
+46169 45617
+46170 51540
+46171 52604
+46172 54714
+46173 57798
+46174 62907
+46175 63018
+46176 70908
+46177 71445
+46178 71772
+46179 24604
+46180 80526
+46181 38300
+46182 68378
+46183 26376
+46184 48559
+46184 65239
+46185 65250
+46186 45696
+46187 41106
+46188 57825
+46189 39445
+46190 33894
+46191 46996
+46192 33894
+46193 77072
+46194 71906
+46195 57694
+46196 26295
+46197 21829
+46198 33017
+46199 57315
+46200 37975
+46201 72605
+46202 13470
+46203 22252
+46204 66827
+46205 43420
+46206 59151
+46207 45961
+46208 37432
+46209 54606
+46210 52445
+46211 76767
+46212 54114
+46213 55037
+46214 58158
+46215 80150
+46216 17636
+46216 69987
+46217 43153
+46218 49777
+46219 18171
+46220 23017
+46221 43578
+46222 70974
+46223 49940
+46224 24509
+46225 30869
+46226 22792
+46226 61016
+46227 57183
+46228 27695
+46229 30316
+46230 12086
+46231 68380
+46232 48516
+46233 46441
+46234 80429
+46235 28062
+46236 78596
+46237 49777
+46238 30316
+46239 55449
+46240 54737
+46241 62738
+46242 36452
+46243 53328
+46244 70284
+46245 2034
+46246 67879
+46247 38671
+46248 41455
+46249 78175
+46250 41054
+46251 23286
+46252 78799
+46253 47665
+46254 60491
+46255 46852
+46256 57918
+46257 23938
+46258 67769
+46259 27021
+46260 36942
+46261 43245
+46262 76908
+46263 73432
+46264 57669
+46265 42049
+46266 1610
+46267 41054
+46268 52120
+46269 49619
+46270 22362
+46271 78661
+46272 40405
+46273 78661
+46274 57812
+46275 49619
+46276 14784
+46277 23482
+46278 78084
+46279 30070
+46280 65650
+46281 55902
+46282 61131
+46283 74527
+46284 21601
+46285 37322
+46286 23918
+46287 24544
+46288 25157
+46288 59549
+46289 25545
+46290 25599
+46291 28759
+46292 46305
+46293 47665
+46294 32902
+46295 34912
+46296 21258
+46297 46305
+46298 43176
+46299 42692
+46300 25613
+46301 45310
+46302 45310
+46303 79125
+46304 56185
+46305 31989
+46306 28231
+46307 42703
+46308 65672
+46309 66569
+46310 67530
+46311 67621
+46312 67871
+46313 55291
+46314 32524
+46315 73104
+46316 66943
+46317 77199
+46318 74770
+46319 79697
+46320 65346
+46321 75307
+46322 70867
+46323 62679
+46324 25617
+46324 30339
+46325 27345
+46326 78190
+46327 48003
+46328 43010
+46329 54760
+46330 23917
+46331 81001
+46332 62437
+46333 49220
+46334 79125
+46335 18769
+46336 41798
+46337 60357
+46338 79992
+46339 2911
+46340 61822
+46341 44174
+46342 72280
+46343 63607
+46344 20540
+46345 28245
+46346 16771
+46347 20895
+46347 40561
+46348 29349
+46349 71604
+46350 50232
+46351 39913
+46352 55209
+46353 64721
+46354 64481
+46355 68266
+46356 69059
+46357 28189
+46358 20955
+46359 31638
+46360 36159
+46361 59912
+46362 80515
+46363 44064
+46364 26861
+46365 62344
+46366 19955
+46367 64035
+46368 59970
+46369 59971
+46370 63962
+46371 69179
+46372 35197
+46373 17385
+46374 2130
+46375 78596
+46376 36923
+46377 63980
+46378 27345
+46379 49265
+46380 58614
+46381 64325
+46382 66470
+46383 49824
+46384 65632
+46385 73439
+46386 52143
+46387 69030
+46388 50324
+46389 63083
+46390 47090
+46391 41511
+46392 39193
+46393 58158
+46394 33017
+46395 53293
+46396 58158
+46397 78393
+46398 61147
+46399 49777
+46400 74789
+46401 37337
+46402 43869
+46403 19954
+46404 18616
+46405 44017
+46406 22799
+46407 53462
+46408 27028
+46408 59382
+46409 43522
+46410 52587
+46411 46505
+46412 23765
+46413 23765
+46414 32400
+46415 60714
+46416 36304
+46417 53190
+46418 36942
+46419 23960
+46420 25146
+46421 55128
+46422 23730
+46423 53192
+46424 63136
+46425 29379
+46426 26954
+46427 46682
+46428 79639
+46429 47290
+46430 864
+46431 38869
+46432 30161
+46433 67573
+46434 71766
+46435 43718
+46436 43718
+46437 39191
+46438 74119
+46439 35654
+46440 2911
+46441 13465
+46442 67019
+46443 32459
+46444 75003
+46445 79638
+46446 43104
+46447 38415
+46448 49777
+46449 44056
+46450 23131
+46451 6399
+46452 7741
+46453 80943
+46454 48576
+46455 25515
+46456 37404
+46457 74965
+46458 40357
+46459 52382
+46460 46890
+46461 40618
+46462 80935
+46463 67606
+46464 80883
+46465 56206
+46466 35168
+46467 43595
+46468 53123
+46469 37403
+46469 62245
+46470 66375
+46471 70577
+46472 71613
+46473 17808
+46474 5720
+46475 7966
+46476 24045
+46477 23255
+46478 50203
+46479 33273
+46480 33127
+46481 46479
+46482 60140
+46483 61822
+46484 26768
+46485 27637
+46486 45550
+46487 2911
+46488 63338
+46489 7755
+46490 30086
+46491 32477
+46492 73830
+46493 61742
+46494 65718
+46495 57134
+46496 63905
+46497 27019
+46498 30652
+46499 28060
+46500 52138
+46501 78654
+46502 66260
+46503 38532
+46504 38534
+46505 40998
+46506 19954
+46507 18616
+46508 51820
+46509 46505
+46510 30866
+46511 46505
+46512 57529
+46513 37428
+46514 47665
+46515 78816
+46516 71973
+46517 49575
+46518 27054
+46519 29123
+46520 45906
+46521 51792
+46522 56272
+46523 62296
+46524 47665
+46525 23345
+46526 70252
+46527 53312
+46528 37499
+46529 43420
+46530 29760
+46531 66378
+46532 36162
+46533 39721
+46534 62400
+46535 59151
+46536 55903
+46537 71353
+46538 52779
+46539 26954
+46540 32560
+46541 70255
+46542 6688
+46543 28249
+46544 20927
+46545 28014
+46546 79485
+46547 26597
+46548 57035
+46549 69679
+46550 24504
+46551 40843
+46552 67923
+46553 71405
+46554 70561
+46555 17145
+46556 35656
+46557 71941
+46558 68889
+46559 73785
+46560 58894
+46561 30412
+46562 27538
+46562 62372
+46563 61822
+46564 39940
+46564 40008
+46565 50379
+46566 30536
+46567 41499
+46568 41501
+46569 46505
+46570 18616
+46571 18616
+46572 30534
+46573 24482
+46574 80926
+46575 46882
+46576 63685
+46577 33547
+46578 27336
+46579 69147
+46580 38533
+46581 13289
+46582 70219
+46583 72622
+46584 55264
+46585 68763
+46586 23849
+46587 23846
+46588 72614
+46589 40711
+46590 23856
+46591 61539
+46592 37955
+46593 72322
+46594 62297
+46595 44496
+46596 18616
+46597 81264
+46598 77851
+46599 62808
+46600 72218
+46601 55223
+46602 20428
+46603 35323
+46604 65894
+46605 44085
+46606 19425
+46607 71601
+46608 72946
+46609 62304
+46610 28891
+46610 56022
+46611 28721
+46612 54025
+46613 77888
+46614 67668
+46615 41219
+46616 68381
+46617 67666
+46618 32980
+46619 43844
+46620 72867
+46621 35805
+46622 71594
+46623 81046
+46624 31528
+46625 38700
+46626 30412
+46627 35494
+46628 35493
+46629 23958
+46630 20555
+46631 42337
+46632 40059
+46633 46632
+46634 58730
+46635 56159
+46636 20670
+46637 60722
+46638 63546
+46639 26994
+46640 37002
+46641 10252
+46642 48576
+46643 62811
+46644 81056
+46645 76759
+46646 48405
+46647 48405
+46648 56792
+46649 18616
+46650 2178
+46651 45643
+46652 64096
+46653 41507
+46654 29660
+46655 47069
+46656 68548
+46657 51803
+46658 42267
+46659 43943
+46660 39540
+46661 59444
+46662 72596
+46663 72596
+46664 55563
+46665 46220
+46666 50940
+46667 43703
+46668 26172
+46669 37579
+46670 24911
+46671 24910
+46672 26087
+46673 26088
+46674 80991
+46675 53347
+46676 44193
+46677 62658
+46678 38308
+46679 46153
+46680 49091
+46681 73578
+46682 27012
+46683 71302
+46684 41937
+46685 41054
+46686 23016
+46687 40659
+46688 21513
+46689 40180
+46690 38901
+46691 32498
+46692 32508
+46693 42974
+46694 38528
+46695 70189
+46696 31815
+46697 64930
+46698 76671
+46699 46709
+46700 46538
+46701 75215
+46702 28105
+46703 32311
+46704 35513
+46705 34705
+46706 76671
+46707 23004
+46708 23004
+46709 53123
+46710 27410
+46711 27706
+46712 55503
+46713 23958
+46714 61936
+46715 2081
+46716 37707
+46717 37162
+46718 72459
+46719 54015
+46720 46688
+46721 78684
+46722 35862
+46723 80514
+46724 48265
+46725 35125
+46726 72747
+46727 70505
+46728 75304
+46729 80530
+46730 80814
+46731 61886
+46731 61896
+46732 9090
+46733 14528
+46734 42267
+46735 43943
+46736 12570
+46736 67876
+46737 12570
+46737 37948
+46738 55135
+46739 61871
+46740 46416
+46741 32774
+46742 62423
+46743 35741
+46744 38480
+46745 56257
+46746 61228
+46747 33401
+46748 48101
+46749 76483
+46750 50280
+46751 63122
+46752 52970
+46753 62180
+46754 23286
+46755 61488
+46756 66544
+46757 48100
+46758 36134
+46759 24353
+46760 70466
+46761 35044
+46762 32320
+46763 32320
+46764 32320
+46765 37847
+46766 47134
+46767 51699
+46768 61228
+46769 53182
+46770 81030
+46771 58369
+46772 13823
+46773 24225
+46774 66820
+46775 17062
+46776 71771
+46777 13823
+46778 55910
+46778 77025
+46779 77014
+46780 66943
+46781 67935
+46782 24356
+46783 75564
+46784 32320
+46785 19992
+46786 27705
+46787 39932
+46788 39933
+46789 42525
+46790 42526
+46791 22529
+46792 68239
+46793 56022
+46793 71655
+46794 40718
+46795 7957
+46796 60558
+46797 63456
+46798 3076
+46799 43882
+46800 36472
+46801 58616
+46802 64451
+46803 64462
+46804 26929
+46805 23864
+46806 26611
+46807 26611
+46808 46815
+46809 59385
+46810 21818
+46811 46344
+46812 47665
+46813 59385
+46813 62839
+46814 54349
+46815 23221
+46816 78776
+46817 50005
+46818 47273
+46819 67606
+46820 76791
+46821 67606
+46822 37579
+46823 52539
+46824 68381
+46825 38698
+46826 32115
+46827 37111
+46828 37112
+46829 46379
+46830 29624
+46831 28356
+46832 68074
+46833 2911
+46834 46882
+46835 24033
+46836 72614
+46837 73815
+46838 63403
+46839 21835
+46840 41828
+46841 47236
+46842 69976
+46843 53550
+46844 76635
+46845 20901
+46846 8368
+46847 25488
+46848 25127
+46849 67490
+46850 75682
+46851 40992
+46852 50841
+46853 81063
+46854 20408
+46855 70491
+46856 70496
+46857 62711
+46858 46892
+46859 34917
+46860 23031
+46861 43166
+46862 21511
+46863 63096
+46864 44193
+46865 39181
+46866 26775
+46866 38699
+46867 28895
+46868 30740
+46869 34793
+46870 38516
+46871 41666
+46872 56146
+46873 52999
+46874 46158
+46875 53784
+46876 24521
+46877 52312
+46878 64636
+46879 64699
+46880 46882
+46880 70367
+46881 52779
+46882 76759
+46883 76940
+46884 29696
+46885 1785
+46886 34542
+46887 4696
+46888 43420
+46889 2049
+46890 66234
+46891 27440
+46892 53182
+46893 29379
+46894 23031
+46895 23817
+46896 71302
+46897 33639
+46898 23017
+46899 21198
+46900 49777
+46901 80903
+46902 23589
+46902 34695
+46903 70978
+46904 33804
+46905 61822
+46906 24840
+46907 21405
+46908 42309
+46909 54609
+46910 76908
+46911 37404
+46912 34290
+46913 53727
+46914 74095
+46915 54272
+46916 43054
+46917 22598
+46918 30628
+46919 66506
+46920 74490
+46921 43104
+46922 68548
+46923 71676
+46924 61563
+46925 20814
+46926 25471
+46927 24840
+46928 20868
+46929 69132
+46930 46589
+46931 31939
+46932 80150
+46933 33775
+46934 81064
+46935 42334
+46936 46589
+46937 63606
+46938 58684
+46939 67153
+46940 45349
+46941 45348
+46942 21630
+46943 80926
+46944 74490
+46945 36208
+46946 40680
+46947 74489
+46948 3688
+46949 55175
+46950 79517
+46951 40688
+46952 70988
+46953 37515
+46954 58838
+46955 74587
+46956 8188
+46957 4466
+46958 53706
+46959 29660
+46960 19394
+46961 20661
+46962 25634
+46963 33274
+46964 72596
+46965 40561
+46966 41571
+46967 48564
+46968 69444
+46969 36173
+46970 59299
+46971 76847
+46972 21443
+46973 42120
+46974 22602
+46975 56231
+46976 49731
+46977 63085
+46978 66302
+46979 60709
+46980 63081
+46981 38980
+46982 66301
+46983 27058
+46984 34649
+46985 72032
+46986 29123
+46987 24482
+46988 21700
+46988 31329
+46989 55040
+46990 29030
+46991 35428
+46992 37617
+46993 33790
+46993 57425
+46994 41666
+46995 47534
+46996 52351
+46997 52351
+46998 63138
+46999 57923
+47000 74528
+47001 67207
+47002 28356
+47003 67805
+47004 15965
+47005 68508
+47006 21221
+47007 25795
+47008 71762
+47009 73213
+47010 76336
+47011 37168
+47012 63909
+47013 76444
+47014 79697
+47015 27203
+47016 17850
+47017 23959
+47018 25067
+47019 74893
+47020 30520
+47021 7577
+47022 33517
+47023 27006
+47024 37169
+47025 73323
+47026 24484
+47027 69338
+47028 26228
+47029 54269
+47030 29378
+47031 57035
+47032 50212
+47033 33069
+47034 40296
+47035 70264
+47036 19954
+47037 52679
+47038 44061
+47039 27906
+47040 35933
+47041 79535
+47042 53055
+47043 29045
+47044 53446
+47045 46088
+47046 46087
+47047 31977
+47048 59107
+47049 80542
+47050 36848
+47051 56631
+47052 76721
+47053 64981
+47054 55113
+47055 61240
+47056 64101
+47057 43467
+47058 20841
+47059 43467
+47060 47065
+47061 70786
+47062 57134
+47063 55194
+47064 32993
+47065 57106
+47066 71952
+47067 74490
+47068 68074
+47069 48405
+47070 48426
+47071 22691
+47072 31181
+47073 74490
+47074 38980
+47075 57134
+47076 42384
+47077 29170
+47078 67606
+47079 53601
+47080 70974
+47081 31656
+47082 57134
+47083 47084
+47084 77809
+47085 68853
+47086 48559
+47087 47167
+47088 47167
+47089 35332
+47090 78367
+47091 41666
+47092 41666
+47093 22691
+47094 33505
+47095 44312
+47096 69180
+47097 21496
+47098 77618
+47099 43774
+47100 56850
+47101 41382
+47102 41377
+47103 28627
+47104 23177
+47105 58948
+47106 37579
+47107 71686
+47108 47224
+47109 66827
+47110 78756
+47111 29955
+47112 30774
+47113 35471
+47114 70757
+47115 41427
+47116 78524
+47117 49517
+47118 36308
+47119 63083
+47120 57091
+47121 47262
+47122 43812
+47123 68882
+47124 24720
+47125 24521
+47126 26203
+47127 69889
+47128 56886
+47129 29378
+47130 29390
+47131 32551
+47132 62175
+47133 23345
+47134 24250
+47135 53312
+47136 23739
+47137 20163
+47138 40028
+47139 39699
+47140 14924
+47141 58820
+47142 36899
+47143 49777
+47144 33639
+47145 81292
+47146 54359
+47146 55449
+47147 64325
+47148 61936
+47149 30412
+47150 33726
+47151 70171
+47152 72946
+47153 27021
+47154 35108
+47155 23282
+47156 56022
+47157 62305
+47158 41409
+47159 35308
+47160 31927
+47161 70089
+47162 37816
+47163 2911
+47164 57986
+47165 24809
+47166 46265
+47167 26184
+47168 55873
+47169 26920
+47170 80514
+47171 58334
+47172 59782
+47173 80514
+47174 49194
+47175 56718
+47176 69116
+47177 47665
+47178 47665
+47179 48092
+47180 67606
+47181 51699
+47182 42924
+47183 41666
+47184 24603
+47185 21845
+47186 47199
+47187 45957
+47188 43208
+47189 47095
+47190 69180
+47191 1527
+47192 41377
+47193 31962
+47194 20679
+47195 51803
+47196 10869
+47197 65258
+47198 43420
+47199 72873
+47200 80679
+47201 35823
+47202 58685
+47203 50232
+47204 35821
+47205 21270
+47206 18616
+47207 19954
+47208 58543
+47209 38162
+47210 78637
+47211 31954
+47212 30774
+47212 58134
+47213 52727
+47214 38081
+47215 52382
+47216 43243
+47217 63702
+47218 76785
+47219 80883
+47220 60828
+47221 53182
+47222 39216
+47223 49778
+47224 38643
+47225 58614
+47226 42904
+47227 51202
+47228 21188
+47229 11490
+47230 74051
+47231 53126
+47232 73907
+47233 73907
+47234 32318
+47235 58706
+47236 73815
+47237 9504
+47238 64117
+47239 61373
+47240 26611
+47241 28729
+47242 28728
+47243 32343
+47244 34398
+47245 44193
+47246 34757
+47247 44256
+47248 44299
+47249 52752
+47250 43053
+47251 53802
+47252 47215
+47253 66649
+47254 66332
+47255 69055
+47256 70264
+47257 71408
+47258 20774
+47259 24723
+47260 60130
+47261 68522
+47262 31939
+47263 25376
+47264 27817
+47265 25376
+47266 47102
+47267 48003
+47268 51172
+47269 56599
+47270 33639
+47271 27012
+47272 48074
+47273 68074
+47274 65998
+47275 68529
+47276 52971
+47277 47231
+47278 61189
+47279 40894
+47280 53550
+47281 40688
+47282 52382
+47283 47222
+47284 47302
+47285 47222
+47286 47302
+47287 24723
+47288 47534
+47289 27477
+47290 55890
+47291 43101
+47292 72879
+47293 79824
+47294 35471
+47295 66819
+47296 47788
+47297 79624
+47298 29230
+47299 51391
+47300 65884
+47301 56748
+47302 14919
+47303 14919
+47304 40877
+47305 70341
+47306 70255
+47307 49699
+47308 20868
+47309 74490
+47310 73724
+47311 25616
+47312 80542
+47313 33665
+47314 80883
+47315 20956
+47316 78427
+47317 33273
+47318 71599
+47319 21513
+47320 43000
+47321 47201
+47322 50232
+47323 47322
+47324 32917
+47325 62193
+47326 64379
+47327 80390
+47328 63976
+47329 61136
+47330 69769
+47331 39493
+47332 20831
+47333 80935
+47334 58838
+47335 37446
+47336 40580
+47337 67874
+47338 56774
+47339 50379
+47340 34519
+47341 37701
+47342 62257
+47343 78756
+47344 62443
+47345 80802
+47346 64636
+47347 75151
+47348 23919
+47348 47353
+47349 29495
+47350 74722
+47351 26357
+47352 29531
+47353 41162
+47353 47352
+47354 74893
+47355 59178
+47356 69117
+47357 78671
+47358 49436
+47359 43105
+47360 74893
+47361 26295
+47362 38102
+47363 23282
+47364 58825
+47365 67856
+47366 17636
+47367 70778
+47368 66324
+47369 47665
+47370 80461
+47371 80514
+47372 54616
+47373 78168
+47374 62296
+47375 80218
+47376 71567
+47377 32989
+47377 53810
+47378 49209
+47379 19954
+47380 39898
+47381 75627
+47382 75628
+47383 65226
+47384 78587
+47385 56206
+47386 33905
+47387 39916
+47388 36942
+47389 47417
+47390 42476
+47391 39398
+47392 53027
+47393 52209
+47394 47380
+47395 47380
+47396 52209
+47397 52209
+47398 47380
+47399 52209
+47400 52209
+47401 22988
+47402 25377
+47403 64307
+47404 33306
+47404 70820
+47405 19643
+47406 36942
+47407 2911
+47408 25007
+47409 23772
+47410 23772
+47411 63434
+47412 79125
+47413 32473
+47414 75629
+47415 33069
+47416 47406
+47417 49254
+47418 47533
+47419 1346
+47420 56749
+47421 1349
+47422 72162
+47423 64257
+47424 76255
+47425 24840
+47426 80943
+47427 22519
+47428 21598
+47429 80020
+47430 68080
+47431 78296
+47432 80418
+47433 20959
+47434 30575
+47435 34792
+47436 49461
+47437 80902
+47438 21894
+47438 55563
+47439 15789
+47440 56329
+47441 55307
+47442 2554
+47443 81028
+47444 45294
+47445 68741
+47446 52725
+47447 68052
+47448 40514
+47449 58651
+47450 77659
+47451 27711
+47452 23290
+47453 55663
+47454 32456
+47454 38824
+47455 55657
+47456 55659
+47457 41631
+47458 64308
+47459 40242
+47460 26061
+47461 43829
+47462 54622
+47463 47665
+47464 47665
+47465 20619
+47466 29582
+47467 44171
+47468 79153
+47469 67490
+47470 50109
+47471 24999
+47472 28790
+47473 66812
+47474 62577
+47475 44174
+47476 40450
+47477 40453
+47478 69616
+47479 52245
+47480 49554
+47481 49510
+47482 23949
+47483 27369
+47484 70920
+47485 39808
+47486 39808
+47487 60464
+47488 27155
+47489 47429
+47490 45829
+47491 62808
+47492 34600
+47492 81306
+47493 37268
+47494 26994
+47495 65885
+47496 50799
+47497 47495
+47498 47495
+47499 47495
+47500 47495
+47501 64214
+47502 47698
+47503 67400
+47504 2911
+47505 60294
+47506 55526
+47507 22988
+47508 80991
+47509 55132
+47510 27410
+47511 42747
+47512 80514
+47513 60462
+47514 76004
+47515 58139
+47516 77646
+47517 20919
+47518 21633
+47519 69698
+47520 872
+47521 33506
+47522 68177
+47523 53055
+47524 62736
+47525 59317
+47526 59317
+47527 59317
+47528 8193
+47529 77659
+47530 46153
+47531 73248
+47532 52383
+47533 23380
+47534 47262
+47535 59317
+47536 59317
+47537 47665
+47538 20821
+47539 80970
+47540 49904
+47541 16588
+47542 16754
+47543 17934
+47544 78583
+47545 43587
+47546 71302
+47547 49470
+47548 36646
+47549 5317
+47550 54966
+47551 41264
+47552 52076
+47553 21421
+47554 23217
+47555 22461
+47556 66387
+47557 55220
+47558 50675
+47559 74773
+47560 36295
+47561 32478
+47562 37645
+47563 37645
+47564 65645
+47565 30282
+47565 55132
+47566 35684
+47567 47573
+47568 72218
+47569 55223
+47570 50530
+47571 73261
+47572 59389
+47573 74893
+47574 61858
+47575 79254
+47576 59385
+47577 79254
+47578 68897
+47579 21573
+47580 55542
+47581 56022
+47582 31051
+47583 60344
+47584 60095
+47585 46900
+47586 45056
+47587 74044
+47588 57833
+47589 78831
+47590 53129
+47591 62308
+47592 62736
+47593 19954
+47594 33442
+47595 73432
+47596 60685
+47597 37034
+47598 61704
+47599 47610
+47600 74893
+47601 26713
+47602 74893
+47603 59385
+47604 54076
+47605 856
+47606 26713
+47606 69845
+47607 47606
+47608 47606
+47609 70478
+47610 33450
+47611 74893
+47612 35660
+47613 79171
+47614 22519
+47615 26587
+47615 73871
+47616 59970
+47617 78831
+47618 59178
+47619 61858
+47620 74893
+47621 73549
+47622 74557
+47623 33420
+47624 62298
+47625 47665
+47626 73432
+47627 39649
+47628 30882
+47629 26157
+47630 30881
+47631 41602
+47632 43844
+47633 60532
+47634 47665
+47635 36004
+47636 67036
+47637 46690
+47638 67584
+47639 22537
+47640 22777
+47640 62912
+47641 23516
+47642 32548
+47643 29071
+47644 53500
+47645 75199
+47646 78831
+47647 47665
+47648 53433
+47649 49876
+47649 53429
+47650 79170
+47651 39999
+47652 79170
+47653 79170
+47654 47649
+47655 66269
+47656 44439
+47657 29471
+47658 20428
+47659 76975
+47660 62875
+47661 55618
+47662 55529
+47663 50093
+47664 39638
+47665 78776
+47666 42553
+47667 47665
+47668 24196
+47669 44149
+47670 47665
+47671 34724
+47672 75425
+47673 34359
+47674 47665
+47675 55220
+47676 22010
+47677 76002
+47678 20724
+47679 30769
+47680 22517
+47681 22525
+47682 22525
+47683 33235
+47684 53539
+47685 63652
+47686 64214
+47687 61541
+47688 23832
+47689 59389
+47690 64215
+47691 63645
+47692 59418
+47693 33662
+47694 9146
+47695 13131
+47696 63419
+47697 23975
+47698 77176
+47699 20854
+47700 73155
+47701 26233
+47702 26209
+47703 37902
+47704 53659
+47705 36116
+47706 76269
+47707 38102
+47708 67951
+47709 67951
+47710 21124
+47711 80992
+47712 34513
+47713 62667
+47714 65079
+47715 40106
+47716 20901
+47717 46993
+47717 59211
+47718 38634
+47719 38635
+47720 30575
+47721 80778
+47722 79438
+47723 67572
+47724 79171
+47725 49876
+47726 22537
+47727 47725
+47728 47726
+47729 47728
+47730 47728
+47731 39776
+47732 47734
+47733 47725
+47734 47726
+47735 81400
+47736 81401
+47737 76051
+47738 68266
+47739 32000
+47739 43010
+47740 46500
+47741 68165
+47742 41054
+47743 36791
+47744 37170
+47745 49693
+47746 60735
+47747 75097
+47748 33086
+47749 31881
+47750 26168
+47751 65323
+47752 58273
+47753 45815
+47754 37733
+47755 55542
+47756 80883
+47757 22764
+47758 21424
+47759 25634
+47760 33274
+47761 50105
+47762 37553
+47763 49777
+47764 69841
+47765 56512
+47766 50940
+47767 25634
+47768 73104
+47769 52727
+47770 81341
+47771 43259
+47772 50841
+47773 13286
+47774 22759
+47775 37202
+47776 54995
+47777 63143
+47778 62875
+47779 73045
+47780 62880
+47781 78956
+47782 55618
+47782 71830
+47783 29462
+47784 22517
+47785 40424
+47786 56542
+47787 66664
+47788 71955
+47789 61817
+47790 47708
+47791 23201
+47792 27664
+47793 76858
+47794 38156
+47795 66898
+47796 54438
+47797 66260
+47797 74893
+47798 2911
+47799 20817
+47800 40309
+47801 19954
+47802 58543
+47803 39193
+47804 66730
+47805 49764
+47806 72545
+47806 77232
+47807 33167
+47808 27012
+47809 30946
+47810 23285
+47811 78084
+47812 62174
+47813 31638
+47814 55434
+47815 35902
+47816 69698
+47817 59394
+47818 47820
+47819 81063
+47820 59480
+47821 36379
+47822 21570
+47823 39354
+47824 39354
+47825 62174
+47826 46585
+47827 44349
+47828 23576
+47829 29170
+47830 26861
+47831 75594
+47832 53282
+47833 45117
+47834 35634
+47835 43241
+47836 23073
+47837 65352
+47838 62742
+47839 58131
+47840 49461
+47841 42003
+47842 37138
+47843 76945
+47844 76762
+47845 52912
+47846 37138
+47847 46913
+47848 79767
+47849 21995
+47850 25377
+47851 29531
+47852 27637
+47853 32465
+47854 32596
+47855 52384
+47856 37356
+47857 40843
+47857 79928
+47858 42031
+47859 65334
+47860 62124
+47861 63133
+47862 23959
+47863 41828
+47864 51188
+47865 37905
+47866 24083
+47867 63133
+47868 44044
+47869 27019
+47870 69179
+47871 70578
+47872 63133
+47873 26927
+47874 37307
+47875 39923
+47876 76368
+47877 76446
+47878 80542
+47879 76409
+47880 56259
+47881 45311
+47882 34940
+47883 37895
+47884 30844
+47885 50260
+47886 30424
+47887 59182
+47888 75913
+47889 39209
+47890 63863
+47891 20777
+47892 34940
+47893 48090
+47894 67400
+47895 39556
+47896 66216
+47897 36857
+47898 52974
+47899 34268
+47900 54713
+47901 47902
+47902 67365
+47903 31521
+47904 15000
+47905 67400
+47906 77243
+47907 47299
+47908 35493
+47909 34936
+47910 79488
+47911 49660
+47912 19547
+47913 43959
+47914 34485
+47915 67863
+47916 70499
+47917 46220
+47918 42325
+47919 62679
+47920 79366
+47921 46356
+47922 66070
+47923 47924
+47924 53067
+47925 57833
+47926 22523
+47927 50379
+47928 35503
+47929 20895
+47930 69950
+47931 23102
+47932 51069
+47933 31443
+47934 74942
+47935 51069
+47936 44308
+47937 40229
+47938 71302
+47939 71302
+47940 37403
+47941 27021
+47942 45259
+47943 24613
+47944 43703
+47945 81312
+47946 26401
+47946 63031
+47947 27263
+47948 64317
+47949 62623
+47950 67560
+47951 71633
+47952 76415
+47953 27155
+47954 42502
+47955 53129
+47956 53129
+47957 22066
+47958 4842
+47959 23295
+47960 39724
+47961 20895
+47962 39724
+47963 39724
+47964 43527
+47965 62203
+47966 46707
+47967 62637
+47968 58158
+47969 32909
+47970 40069
+47971 22135
+47972 55220
+47973 47258
+47974 40390
+47975 54149
+47976 26713
+47977 59388
+47978 29980
+47979 24852
+47980 49625
+47981 22361
+47982 55738
+47983 70762
+47984 68759
+47985 61228
+47986 20691
+47987 53220
+47988 63654
+47989 68768
+47990 65808
+47991 70610
+47992 53356
+47993 24091
+47994 60603
+47995 33701
+47996 48695
+47997 32287
+47998 20570
+47999 52719
+48000 61185
+48001 37691
+48002 36244
+48003 76908
+48004 38169
+48005 40686
+48006 33475
+48007 53328
+48008 20724
+48009 53328
+48010 72767
+48011 33470
+48012 51699
+48013 43969
+48014 60579
+48015 14920
+48016 65434
+48017 56896
+48018 33235
+48019 68537
+48020 58947
+48021 47665
+48022 2911
+48023 74119
+48024 62310
+48025 62310
+48026 47665
+48027 80526
+48028 44017
+48029 39181
+48030 70063
+48031 49282
+48032 71017
+48033 72697
+48034 19547
+48035 62453
+48036 41219
+48037 63606
+48038 36969
+48039 22068
+48040 57346
+48041 29028
+48042 23555
+48043 31801
+48044 32022
+48045 33336
+48046 23846
+48046 60492
+48047 69179
+48048 49121
+48049 73349
+48050 72767
+48051 27485
+48052 50841
+48053 68813
+48054 76759
+48055 46220
+48056 51062
+48057 69485
+48058 62768
+48059 24492
+48060 22519
+48061 79125
+48062 43718
+48063 39191
+48064 39191
+48065 74187
+48066 67160
+48067 71774
+48068 81017
+48069 46398
+48070 52417
+48071 32524
+48072 2684
+48073 24994
+48074 52958
+48075 54572
+48076 33767
+48077 41429
+48078 30161
+48079 53100
+48080 48083
+48081 50901
+48082 32955
+48083 36942
+48084 49534
+48085 21567
+48086 60972
+48087 57706
+48088 24911
+48089 30688
+48090 76067
+48091 44130
+48092 59151
+48093 62423
+48094 72075
+48095 5316
+48096 36300
+48097 62174
+48098 23723
+48099 62443
+48100 52594
+48101 5168
+48102 69179
+48103 64979
+48104 75988
+48105 55201
+48106 68508
+48107 30082
+48108 78654
+48109 39739
+48110 33166
+48111 78410
+48112 70730
+48113 41666
+48114 41666
+48115 54438
+48116 58575
+48117 58576
+48118 55563
+48119 29705
+48120 40877
+48121 59254
+48122 50105
+48123 55542
+48124 80883
+48125 69505
+48126 62290
+48127 70011
+48128 25709
+48129 4047
+48130 68049
+48131 68324
+48132 62174
+48133 79697
+48134 68380
+48135 66745
+48136 53539
+48137 40058
+48138 50187
+48139 24506
+48140 25616
+48141 41371
+48142 23064
+48143 48135
+48144 24807
+48145 21700
+48146 28691
+48147 33130
+48148 25142
+48149 71606
+48150 42960
+48151 63271
+48152 63038
+48153 44054
+48154 43101
+48155 38080
+48156 48606
+48157 33607
+48157 53481
+48158 41987
+48159 79960
+48160 63085
+48161 65549
+48162 31643
+48163 69446
+48164 69699
+48165 31610
+48166 48579
+48167 18752
+48168 61086
+48169 55343
+48170 6925
+48171 28240
+48172 66949
+48173 23448
+48174 21198
+48175 41297
+48176 55343
+48177 78268
+48178 62993
+48179 33273
+48180 23004
+48181 37404
+48182 48187
+48183 63421
+48184 55201
+48185 40225
+48186 22517
+48187 41125
+48188 59787
+48189 58356
+48190 41054
+48191 10247
+48192 10252
+48193 38102
+48194 52279
+48195 39810
+48196 73775
+48197 76953
+48198 68770
+48199 63963
+48200 51487
+48201 37902
+48202 23484
+48203 37539
+48204 55168
+48205 76854
+48206 63815
+48207 63815
+48208 34069
+48209 49777
+48210 75097
+48211 54972
+48212 78286
+48213 78285
+48214 62892
+48215 26594
+48216 12078
+48217 70740
+48218 45815
+48219 48223
+48220 70740
+48221 40199
+48222 70740
+48223 80883
+48224 53219
+48225 25955
+48226 25867
+48227 48223
+48228 64181
+48229 60473
+48230 50105
+48231 69841
+48232 56512
+48233 73104
+48234 71304
+48235 49777
+48236 80170
+48237 80428
+48238 67244
+48239 47665
+48240 74761
+48241 2911
+48242 74746
+48243 47167
+48244 28845
+48245 29123
+48246 59505
+48247 61740
+48248 53584
+48249 55517
+48250 21375
+48251 48644
+48252 25529
+48253 33581
+48254 43420
+48255 77558
+48256 42049
+48257 59505
+48258 80662
+48259 2911
+48260 64304
+48261 48100
+48262 61228
+48263 66787
+48264 64304
+48265 2911
+48266 24815
+48267 32530
+48268 35197
+48269 38574
+48270 45696
+48271 73015
+48272 67244
+48273 30657
+48274 40357
+48275 48200
+48276 74966
+48277 37497
+48278 67244
+48279 67019
+48280 20569
+48281 65885
+48282 40888
+48283 20403
+48284 20569
+48285 21700
+48286 34940
+48287 34590
+48288 67561
+48289 47262
+48290 29955
+48291 36208
+48292 51874
+48293 55470
+48294 62139
+48295 38980
+48296 62768
+48297 32538
+48298 63789
+48298 79386
+48299 58614
+48300 22523
+48301 48396
+48302 35808
+48303 11484
+48304 29955
+48305 49441
+48306 31962
+48307 25149
+48308 41424
+48309 81025
+48310 62053
+48311 46851
+48312 33470
+48313 74965
+48314 57720
+48315 47540
+48316 43424
+48317 24723
+48318 35025
+48319 23185
+48320 32524
+48321 33989
+48322 50901
+48323 3076
+48324 59782
+48325 51172
+48326 79125
+48327 35802
+48328 54100
+48329 31971
+48330 44149
+48331 18616
+48332 14920
+48333 30843
+48334 33273
+48335 8573
+48336 36818
+48337 49777
+48338 65893
+48339 51181
+48340 41054
+48341 30946
+48342 32913
+48343 47665
+48344 29123
+48345 53129
+48346 32981
+48347 73691
+48348 46033
+48349 59419
+48350 46588
+48351 33542
+48352 45047
+48353 55155
+48354 21610
+48355 74527
+48356 72866
+48357 63134
+48358 69283
+48359 76004
+48360 58166
+48361 23016
+48362 21673
+48363 62940
+48364 23016
+48365 22528
+48366 21672
+48367 28663
+48368 42859
+48369 74861
+48370 42747
+48371 18616
+48372 33989
+48373 22215
+48374 63826
+48375 3728
+48376 49234
+48377 59782
+48378 62957
+48379 28320
+48380 64576
+48381 68946
+48382 19415
+48383 79166
+48384 80173
+48385 79000
+48386 70877
+48387 57987
+48388 55572
+48389 69865
+48390 57134
+48391 42965
+48392 35805
+48393 70794
+48394 23165
+48395 53433
+48396 73907
+48397 23484
+48398 63541
+48399 37014
+48400 23805
+48401 41498
+48402 76085
+48403 37575
+48404 23029
+48405 40229
+48406 46588
+48407 30841
+48408 48300
+48409 80159
+48410 77084
+48411 47665
+48412 27347
+48413 27785
+48414 29695
+48415 29832
+48416 29832
+48417 30065
+48418 79028
+48419 52587
+48420 52235
+48421 68576
+48422 54614
+48423 21375
+48424 58033
+48425 62110
+48426 65226
+48427 65250
+48428 53804
+48429 25027
+48430 24909
+48431 37033
+48432 30026
+48433 27021
+48434 33856
+48435 73752
+48436 29264
+48437 43940
+48438 22522
+48439 41054
+48440 52876
+48441 80429
+48442 52460
+48443 52504
+48444 29378
+48445 67153
+48446 22520
+48447 20680
+48448 55135
+48449 56446
+48450 56446
+48451 56111
+48452 29278
+48453 62950
+48454 63405
+48455 80918
+48456 67586
+48457 47665
+48458 33272
+48459 61301
+48460 68508
+48461 44065
+48462 62384
+48463 52417
+48464 52417
+48465 23532
+48466 74119
+48467 65240
+48468 70374
+48469 41667
+48470 80181
+48471 52168
+48472 48445
+48473 35184
+48474 10872
+48475 48810
+48476 40819
+48477 3076
+48478 43086
+48479 44193
+48480 77763
+48481 70276
+48482 48627
+48483 55201
+48484 43587
+48485 55200
+48486 55207
+48487 70797
+48488 30559
+48489 58732
+48490 67573
+48491 70152
+48492 77095
+48493 61228
+48494 33273
+48495 47322
+48496 55201
+48497 29358
+48498 48627
+48499 21115
+48500 77299
+48501 8600
+48502 2450
+48503 73340
+48504 55899
+48505 42120
+48506 75133
+48507 32559
+48508 78270
+48509 47139
+48510 24659
+48511 31102
+48512 80514
+48513 65893
+48514 21528
+48515 28380
+48516 30317
+48517 50943
+48518 53132
+48519 70312
+48520 29329
+48521 61095
+48522 51599
+48523 73336
+48524 70877
+48525 29378
+48526 68508
+48527 14919
+48528 60645
+48529 45056
+48530 62679
+48531 72625
+48532 43345
+48533 73439
+48534 64979
+48535 63033
+48536 56259
+48537 1936
+48538 79573
+48539 62514
+48540 79936
+48541 70876
+48542 25489
+48543 51100
+48544 23762
+48545 73336
+48546 40737
+48547 68381
+48548 28241
+48549 62193
+48550 28241
+48551 20695
+48552 61713
+48553 58732
+48554 36790
+48555 25515
+48556 63415
+48557 72351
+48558 21205
+48559 48756
+48560 47665
+48561 47665
+48562 30697
+48563 76483
+48564 31847
+48565 61228
+48566 37756
+48567 37756
+48568 22498
+48569 46033
+48570 46857
+48571 68372
+48572 80778
+48573 57314
+48574 80916
+48575 61228
+48576 28241
+48576 38102
+48577 7191
+48578 28241
+48579 28241
+48580 41297
+48581 32914
+48582 23995
+48583 62422
+48584 60462
+48585 54490
+48586 28242
+48587 33369
+48588 30257
+48589 42049
+48590 7741
+48591 48776
+48592 11548
+48593 56850
+48594 33581
+48595 50901
+48596 59371
+48597 59976
+48598 59991
+48599 60531
+48600 37948
+48601 35486
+48602 19999
+48603 24913
+48604 28425
+48605 81022
+48606 28428
+48607 66273
+48608 31677
+48609 34698
+48610 79691
+48611 11311
+48612 42859
+48613 33639
+48614 38080
+48615 52971
+48616 28481
+48617 47283
+48618 58742
+48619 30558
+48620 62290
+48621 67574
+48622 67560
+48623 60532
+48624 80428
+48625 80902
+48626 80902
+48627 33581
+48628 64307
+48629 32701
+48630 36926
+48631 36926
+48632 48630
+48633 25617
+48634 2911
+48635 70089
+48636 34696
+48637 70877
+48638 69189
+48639 78596
+48640 35197
+48641 58158
+48642 12970
+48643 26760
+48644 79125
+48645 54832
+48646 18964
+48647 68354
+48648 60464
+48649 3600
+48650 21587
+48651 80668
+48652 80669
+48653 29243
+48654 23454
+48655 76944
+48656 26861
+48657 2911
+48658 2178
+48659 2911
+48660 69491
+48661 21220
+48662 33337
+48663 35120
+48664 55343
+48665 49777
+48666 57159
+48667 69972
+48668 32491
+48669 22601
+48670 22447
+48671 50863
+48672 49777
+48673 33400
+48674 70086
+48675 65459
+48676 62453
+48677 70152
+48678 58158
+48679 66935
+48680 27347
+48681 45650
+48682 29376
+48683 23975
+48684 60250
+48685 63980
+48686 66670
+48687 67203
+48688 27028
+48689 64979
+48690 37955
+48691 37955
+48692 35334
+48693 68759
+48694 21235
+48695 24538
+48696 25745
+48697 48689
+48698 64979
+48699 49504
+48700 54972
+48701 58664
+48702 41571
+48703 77112
+48704 36134
+48705 49168
+48706 55037
+48707 79017
+48708 23352
+48709 48711
+48710 48700
+48710 69926
+48711 59385
+48712 80113
+48713 59389
+48714 69941
+48715 29755
+48716 48711
+48717 17029
+48718 70786
+48719 76790
+48720 22953
+48721 60616
+48722 33660
+48723 43807
+48724 41571
+48725 64979
+48726 27025
+48727 27025
+48728 49342
+48729 40004
+48730 72413
+48731 34964
+48732 24604
+48733 37428
+48734 25647
+48735 25739
+48736 25986
+48737 52120
+48738 65562
+48739 32774
+48740 24225
+48741 51245
+48742 38563
+48743 36803
+48744 11448
+48745 78252
+48746 41413
+48746 60594
+48747 11311
+48748 60465
+48749 79076
+48750 70974
+48751 69161
+48752 76338
+48753 68508
+48754 68529
+48755 77446
+48756 37975
+48757 30488
+48758 23282
+48759 16555
+48760 51654
+48761 52862
+48762 69179
+48763 48750
+48764 62139
+48765 33442
+48766 25014
+48767 58684
+48768 51172
+48769 23846
+48770 77020
+48771 41829
+48772 30732
+48773 35611
+48774 36162
+48775 51957
+48776 54966
+48777 70618
+48778 27813
+48779 34104
+48780 29769
+48781 73754
+48782 30069
+48783 29044
+48784 59228
+48785 70089
+48786 3003
+48787 29027
+48788 81370
+48789 53055
+48790 79125
+48791 77233
+48792 29702
+48793 33273
+48794 55351
+48795 35687
+48796 56916
+48797 40069
+48798 80883
+48799 33041
+48800 61442
+48801 77775
+48802 71833
+48803 22779
+48804 63055
+48805 35660
+48806 20428
+48807 58860
+48808 22799
+48808 78789
+48809 20428
+48810 2911
+48811 41471
+48811 62562
+48812 37501
+48813 49918
+48814 33086
+48815 23756
+48816 27606
+48817 30193
+48818 31522
+48819 63689
+48820 64636
+48821 55168
+48822 48821
+48822 77218
+48823 66181
+48824 46345
+48825 40843
+48825 48828
+48826 24279
+48827 26713
+48828 26044
+48829 23165
+48830 20792
+48831 20792
+48832 59385
+48833 37645
+48834 20428
+48835 20792
+48836 33042
+48837 31063
+48838 76059
+48839 55037
+48840 34247
+48841 34687
+48842 20792
+48843 42790
+48844 77864
+48845 39433
+48846 76059
+48847 20792
+48848 42820
+48848 46136
+48849 72289
+48850 44362
+48851 23868
+48852 27104
+48852 58451
+48853 2436
+48854 27993
+48855 20792
+48856 33086
+48857 42816
+48858 50611
+48859 30005
+48859 64355
+48860 33179
+48861 59819
+48862 74272
+48863 30784
+48864 58754
+48865 20792
+48866 45062
+48867 45075
+48868 64027
+48869 30786
+48870 37892
+48871 37887
+48872 25854
+48873 55127
+48874 22300
+48875 60685
+48876 77340
+48877 74893
+48878 70760
+48879 81404
+48880 64215
+48881 26959
+48882 21493
+48883 52326
+48884 63702
+48885 42790
+48886 33420
+48887 33086
+48888 33086
+48889 22559
+48890 20792
+48891 48890
+48892 28687
+48893 22749
+48894 46345
+48895 55635
+48896 22137
+48897 56098
+48898 32239
+48899 29144
+48900 68396
+48901 55223
+48902 72218
+48903 48904
+48904 55132
+48905 62290
+48906 48904
+48907 22713
+48908 66672
+48909 50105
+48910 71859
+48911 27155
+48912 21811
+48912 62721
+48913 67036
+48914 62303
+48915 29447
+48916 20806
+48917 37645
+48918 47335
+48919 30461
+48920 67036
+48921 44439
+48921 48945
+48922 60685
+48923 48922
+48924 33438
+48925 58186
+48926 64947
+48927 74893
+48928 74893
+48929 61702
+48930 53161
+48931 30175
+48932 74893
+48933 856
+48934 2235
+48935 66387
+48936 48935
+48937 33420
+48938 40910
+48939 37756
+48940 74893
+48941 61361
+48942 36721
+48943 74893
+48944 53230
+48945 55540
+48946 74434
+48947 42407
+48948 56988
+48949 49265
+48950 74893
+48951 80883
+48952 69505
+48953 25032
+48954 79263
+48955 22128
+48956 45303
+48957 61702
+48958 45303
+48959 38946
+48960 27765
+48961 41735
+48961 48973
+48962 69282
+48963 63546
+48964 69593
+48965 48963
+48966 71121
+48967 74893
+48968 60690
+48969 54106
+48970 54747
+48971 58618
+48972 64345
+48973 61702
+48974 45303
+48975 76722
+48976 59514
+48977 29527
+48978 38946
+48979 72280
+48980 27765
+48981 20428
+48982 26713
+48983 17664
+48984 26587
+48985 37906
+48986 64669
+48987 21404
+48988 22316
+48989 49800
+48990 70760
+48991 64462
+48992 64481
+48993 77128
+48994 49941
+48995 64464
+48996 42376
+48997 74962
+48998 29447
+48999 62303
+49000 49024
+49001 74893
+49002 61702
+49003 30175
+49004 68239
+49005 20792
+49006 22876
+49007 60690
+49008 23286
+49009 856
+49010 63721
+49011 48111
+49012 67711
+49013 57660
+49014 52329
+49015 37446
+49016 49351
+49017 57791
+49018 49249
+49019 34726
+49020 74893
+49021 21404
+49022 49628
+49023 74893
+49024 55540
+49025 74893
+49026 20792
+49027 80883
+49028 69505
+49029 45303
+49030 59830
+49031 59830
+49032 49976
+49033 20415
+49034 61702
+49035 38946
+49036 856
+49037 27765
+49038 74893
+49039 38938
+49040 20428
+49041 59389
+49042 20956
+49043 7418
+49044 30221
+49045 58626
+49046 29531
+49047 60690
+49048 42449
+49049 57833
+49050 61702
+49051 64237
+49052 33186
+49053 49052
+49054 49282
+49055 63863
+49056 26713
+49057 45303
+49058 76722
+49059 59514
+49060 26713
+49061 70208
+49062 38563
+49063 49062
+49064 67036
+49065 67036
+49066 45063
+49067 55127
+49068 22014
+49069 46121
+49070 47665
+49071 47666
+49072 58860
+49073 20415
+49074 61685
+49075 41498
+49076 57875
+49077 57879
+49078 23919
+49079 49076
+49080 67036
+49081 53623
+49082 20051
+49083 39875
+49084 59178
+49085 43034
+49086 78956
+49087 80462
+49088 79438
+49089 63923
+49090 58269
+49091 35226
+49092 58614
+49093 37041
+49094 47387
+49095 67297
+49096 18616
+49097 43693
+49098 43693
+49099 43693
+49100 70912
+49101 61232
+49102 24250
+49103 25399
+49104 43693
+49105 35226
+49106 35259
+49107 49115
+49108 49115
+49109 42925
+49110 23850
+49110 33632
+49111 49095
+49112 43693
+49113 39409
+49114 51599
+49115 43246
+49116 43693
+49117 24504
+49118 49092
+49119 41905
+49120 70374
+49121 70907
+49122 70913
+49123 73578
+49124 75425
+49125 76729
+49126 79454
+49127 38539
+49128 70152
+49129 79002
+49130 25617
+49131 49115
+49132 75495
+49133 9399
+49134 49092
+49135 48578
+49136 36452
+49137 61743
+49138 77312
+49139 56474
+49140 48909
+49141 42788
+49142 81399
+49143 81400
+49144 81401
+49145 23267
+49146 49145
+49147 44439
+49148 49091
+49149 54522
+49150 63369
+49151 74860
+49152 66641
+49153 59993
+49154 47692
+49155 36841
+49156 21443
+49157 49152
+49158 49213
+49159 23496
+49160 75597
+49161 62880
+49162 74896
+49163 33662
+49164 59212
+49165 21523
+49166 21534
+49167 49163
+49168 56316
+49169 44212
+49170 61541
+49171 49474
+49172 64979
+49173 36316
+49174 49163
+49175 76094
+49176 18903
+49177 49183
+49178 40579
+49179 33273
+49180 55367
+49181 23869
+49182 74860
+49183 61347
+49184 49180
+49185 59191
+49186 68298
+49187 64462
+49188 68585
+49189 43454
+49190 30578
+49191 59480
+49192 25015
+49193 21235
+49194 59418
+49195 75987
+49196 5168
+49197 18616
+49198 66875
+49199 80991
+49200 52038
+49201 40888
+49202 40887
+49203 37645
+49204 66100
+49205 70750
+49206 59177
+49207 26671
+49208 49537
+49209 52358
+49210 49167
+49211 44480
+49212 49211
+49213 80991
+49214 80991
+49215 53830
+49216 62658
+49217 40166
+49218 33078
+49219 48635
+49220 15785
+49221 43745
+49222 36942
+49223 42119
+49224 55168
+49225 28457
+49226 49802
+49227 9828
+49228 74805
+49229 37591
+49230 78393
+49231 33662
+49232 49231
+49233 53623
+49234 53457
+49235 37322
+49236 50417
+49237 35482
+49238 35483
+49239 40393
+49240 22468
+49241 23516
+49242 49918
+49243 78671
+49244 23516
+49245 78831
+49246 59551
+49247 71303
+49248 23516
+49249 78831
+49250 23516
+49251 78831
+49252 27155
+49253 21217
+49254 60683
+49255 37701
+49256 34945
+49257 78343
+49258 49634
+49259 78343
+49260 73402
+49261 78343
+49262 49231
+49263 49530
+49264 49230
+49265 49254
+49266 64979
+49267 27879
+49268 43745
+49269 33273
+49270 73104
+49271 59993
+49272 53008
+49273 23007
+49274 23485
+49275 66641
+49276 23581
+49277 56022
+49278 66640
+49279 23004
+49280 39228
+49281 33111
+49282 49285
+49283 64720
+49284 49285
+49285 34811
+49286 66648
+49287 49987
+49288 49278
+49289 32974
+49290 61791
+49291 23585
+49292 40185
+49293 50105
+49294 12570
+49294 52382
+49295 10793
+49296 37568
+49297 66875
+49298 20516
+49299 34590
+49300 70877
+49301 56188
+49302 21802
+49303 59385
+49304 77497
+49305 37955
+49306 33978
+49307 39492
+49308 63645
+49309 50712
+49310 64979
+49311 73104
+49312 37414
+49313 50528
+49314 30128
+49315 21848
+49316 33569
+49317 70824
+49318 37465
+49319 24836
+49320 47415
+49321 55829
+49322 31608
+49323 55831
+49324 27001
+49325 73104
+49326 56159
+49327 64979
+49328 63668
+49329 66840
+49330 36379
+49331 49691
+49332 68052
+49333 64979
+49334 30123
+49335 61276
+49336 21349
+49337 40570
+49338 49327
+49339 49327
+49340 24730
+49341 49777
+49342 65743
+49343 74968
+49344 33273
+49345 33273
+49346 50605
+49347 64306
+49348 26071
+49349 30797
+49349 49365
+49350 20407
+49351 49363
+49352 39509
+49353 75508
+49354 22793
+49355 49345
+49356 22764
+49356 44099
+49357 49356
+49358 49356
+49359 49356
+49360 49356
+49361 49356
+49362 23699
+49363 37645
+49364 55217
+49365 55223
+49366 49365
+49367 55220
+49368 49363
+49369 76004
+49370 30528
+49371 6958
+49372 33624
+49373 33505
+49374 49941
+49375 32560
+49376 63881
+49377 27706
+49378 33273
+49379 37645
+49380 37645
+49381 34756
+49382 21403
+49383 35770
+49384 22691
+49385 2911
+49386 35158
+49387 37702
+49388 59994
+49389 22601
+49390 41791
+49391 49255
+49392 46479
+49393 50198
+49394 67244
+49395 62997
+49396 33581
+49397 24523
+49398 26510
+49399 64979
+49400 49634
+49401 73922
+49402 56307
+49403 38869
+49404 78524
+49405 78525
+49406 61686
+49407 29251
+49408 73104
+49409 38831
+49410 22873
+49411 8796
+49412 25419
+49413 24521
+49414 56649
+49415 36223
+49416 54472
+49417 68502
+49418 43152
+49419 49194
+49420 33771
+49421 25648
+49422 23454
+49423 61276
+49424 24081
+49425 38830
+49426 71796
+49427 49541
+49428 36135
+49429 20901
+49430 30687
+49431 43807
+49432 70995
+49433 49517
+49434 78382
+49435 43807
+49436 64291
+49437 59389
+49438 39722
+49439 59178
+49440 49662
+49441 50212
+49442 36244
+49443 55120
+49444 20731
+49445 53626
+49446 50602
+49447 49851
+49448 77733
+49449 32387
+49450 26685
+49451 25628
+49452 37542
+49453 49942
+49454 32713
+49455 43153
+49456 33660
+49457 34819
+49458 38870
+49459 78661
+49460 73015
+49461 21169
+49462 27421
+49463 32666
+49464 71781
+49465 39909
+49466 28409
+49467 58233
+49468 31105
+49469 49468
+49470 64979
+49471 73315
+49472 69410
+49473 50535
+49474 50535
+49475 33256
+49476 20731
+49477 49847
+49478 54972
+49479 61284
+49480 69410
+49481 49278
+49482 74860
+49483 64537
+49484 49493
+49485 30591
+49486 63691
+49487 59990
+49488 40633
+49489 64979
+49490 49942
+49491 49178
+49492 49482
+49493 36942
+49494 20856
+49495 60982
+49496 33369
+49497 63492
+49498 21038
+49499 60570
+49500 43398
+49501 25626
+49502 33273
+49503 56157
+49504 30524
+49505 33273
+49506 49510
+49507 4747
+49508 40794
+49509 40846
+49510 49569
+49511 56757
+49512 39422
+49513 19638
+49514 38556
+49515 43107
+49516 77864
+49517 78405
+49518 40707
+49519 79673
+49520 33273
+49521 20731
+49522 23977
+49523 65893
+49524 32560
+49525 27514
+49526 43952
+49527 66432
+49528 70907
+49529 57132
+49530 32287
+49531 64979
+49532 49649
+49533 64979
+49534 73104
+49535 20925
+49536 77112
+49537 20895
+49538 22191
+49539 41154
+49540 78385
+49541 78143
+49542 24475
+49543 53830
+49543 80778
+49544 11311
+49544 53830
+49545 61699
+49546 79920
+49547 40726
+49548 55122
+49549 50712
+49550 49501
+49551 78404
+49552 49530
+49553 49551
+49554 25094
+49555 77112
+49556 61686
+49557 21038
+49558 25617
+49559 49798
+49560 78264
+49561 44439
+49561 55540
+49562 19007
+49563 27879
+49564 30633
+49565 49552
+49566 49531
+49567 49530
+49568 49566
+49569 29555
+49570 27104
+49571 33086
+49572 23419
+49573 30095
+49574 30095
+49575 18616
+49576 19954
+49577 65650
+49578 59260
+49579 68727
+49580 78342
+49581 53182
+49582 23655
+49583 43540
+49584 59250
+49585 46965
+49586 32889
+49587 40801
+49588 50809
+49589 33078
+49590 28457
+49591 43876
+49592 25614
+49593 35505
+49594 39233
+49595 76767
+49596 58364
+49597 64449
+49598 23423
+49599 39802
+49600 37542
+49601 872
+49602 872
+49603 53051
+49604 63134
+49605 37703
+49606 56748
+49607 25728
+49608 27702
+49609 54104
+49610 57590
+49611 55132
+49612 70876
+49613 27003
+49614 49661
+49615 57278
+49616 51710
+49617 37519
+49618 28380
+49619 42043
+49620 27559
+49621 73128
+49622 75384
+49623 78260
+49624 33733
+49625 61702
+49626 30585
+49627 49531
+49628 37560
+49629 78393
+49630 30379
+49631 56159
+49632 27706
+49633 50256
+49634 64979
+49635 49530
+49636 47023
+49637 49467
+49638 49700
+49639 49626
+49640 50142
+49641 78337
+49642 58273
+49643 50589
+49644 30526
+49645 39575
+49646 49774
+49647 37515
+49648 37169
+49649 78404
+49650 40652
+49651 78394
+49652 33542
+49653 20856
+49654 49614
+49655 49501
+49656 64979
+49657 48238
+49658 48238
+49659 22002
+49660 22191
+49661 30522
+49662 64979
+49663 38272
+49664 43247
+49665 36208
+49666 21513
+49667 61477
+49668 61228
+49669 22988
+49670 35722
+49671 70877
+49672 78364
+49673 49785
+49674 75769
+49675 38869
+49676 14919
+49677 58838
+49678 30585
+49679 78146
+49680 70478
+49681 32705
+49682 20854
+49683 40030
+49684 23918
+49685 40292
+49686 25739
+49687 34389
+49688 37839
+49689 58637
+49690 61345
+49691 49501
+49692 56171
+49693 38272
+49694 50718
+49695 49501
+49696 36885
+49697 23545
+49698 50248
+49699 22193
+49700 63492
+49701 50041
+49702 49501
+49703 37543
+49704 33001
+49705 64309
+49706 40707
+49707 48832
+49708 59332
+49709 62187
+49710 33165
+49711 34223
+49712 30523
+49713 81072
+49714 33715
+49715 21394
+49716 78732
+49717 52187
+49718 68591
+49719 41116
+49720 53328
+49721 42071
+49722 60690
+49723 43298
+49724 57214
+49725 66334
+49726 66378
+49727 70974
+49728 23763
+49729 60202
+49730 66723
+49731 32900
+49732 57385
+49733 65838
+49734 21226
+49735 56307
+49736 70578
+49737 36942
+49738 32478
+49739 61228
+49740 50198
+49741 20731
+49742 63007
+49743 41993
+49744 78168
+49745 29550
+49746 62997
+49747 52037
+49748 57504
+49749 39186
+49750 74893
+49751 22447
+49752 50229
+49753 2911
+49754 79154
+49755 41256
+49756 28397
+49757 61716
+49758 22869
+49759 20690
+49760 42120
+49761 42812
+49762 53021
+49763 58615
+49764 75384
+49765 77221
+49766 63974
+49767 36135
+49768 30585
+49769 77112
+49770 42987
+49771 56157
+49772 40396
+49773 49265
+49774 30351
+49775 59106
+49776 55563
+49777 25634
+49777 30046
+49778 25634
+49779 61057
+49780 77112
+49781 25646
+49782 37955
+49783 49777
+49784 37554
+49785 50191
+49786 24186
+49787 24186
+49788 49536
+49789 58269
+49790 73754
+49791 52633
+49792 20445
+49793 30055
+49794 21404
+49795 32909
+49796 39465
+49797 55343
+49798 30337
+49799 39427
+49800 36100
+49801 30055
+49802 32318
+49803 47414
+49804 49800
+49805 39421
+49806 49769
+49807 61287
+49808 45966
+49809 20504
+49810 34570
+49811 37428
+49812 34570
+49813 21574
+49814 31610
+49815 33608
+49816 39924
+49817 60357
+49818 63980
+49819 19006
+49820 29072
+49821 39143
+49822 28559
+49823 49825
+49824 32675
+49825 28529
+49826 22319
+49827 20935
+49828 49470
+49829 49828
+49830 78394
+49831 61686
+49832 64979
+49833 54366
+49834 30351
+49835 37149
+49836 49852
+49837 55160
+49838 37406
+49839 74965
+49840 11589
+49841 33925
+49842 49327
+49843 76088
+49844 78291
+49845 30351
+49846 5344
+49847 49533
+49848 37454
+49849 15001
+49850 49231
+49851 78164
+49852 36644
+49853 37588
+49854 37717
+49855 76475
+49856 49311
+49857 36071
+49858 41564
+49859 45796
+49860 53312
+49861 40686
+49862 24093
+49863 20428
+49864 56157
+49865 71766
+49866 60685
+49867 14067
+49868 58616
+49869 49473
+49870 49254
+49871 53217
+49872 60682
+49873 34231
+49874 49257
+49875 21403
+49876 32896
+49877 49876
+49878 49551
+49879 65844
+49880 42984
+49881 30578
+49882 22047
+49883 30321
+49884 30332
+49885 3604
+49886 21785
+49887 4694
+49888 40135
+49889 51796
+49890 51800
+49891 55497
+49892 59205
+49893 62263
+49894 64618
+49895 58784
+49896 75918
+49897 76315
+49898 78857
+49899 53860
+49900 64980
+49901 37454
+49902 33043
+49903 36007
+49904 43785
+49905 31948
+49906 64979
+49907 41871
+49908 49684
+49909 42012
+49910 72756
+49911 50521
+49912 64979
+49913 78732
+49914 78917
+49915 52119
+49916 21315
+49917 54995
+49918 74893
+49919 23423
+49920 37560
+49921 21576
+49922 39134
+49923 36891
+49924 49832
+49925 39944
+49926 65632
+49927 76004
+49928 49922
+49929 45843
+49930 36456
+49931 36456
+49932 39839
+49933 56664
+49934 67250
+49935 78144
+49936 56164
+49937 22746
+49938 26754
+49939 42741
+49940 63373
+49941 30055
+49942 36881
+49943 33505
+49944 43102
+49945 33634
+49945 66801
+49946 32668
+49947 54580
+49948 32909
+49949 17385
+49949 58674
+49950 33660
+49951 32287
+49952 49957
+49953 20731
+49954 56337
+49955 28311
+49956 59179
+49957 74977
+49958 66938
+49959 68807
+49960 39924
+49961 68817
+49962 79573
+49963 33503
+49964 49948
+49965 63926
+49966 15594
+49967 72268
+49968 23516
+49969 43539
+49970 20906
+49971 47402
+49972 72257
+49973 76004
+49974 73905
+49975 36928
+49976 73907
+49977 22447
+49978 71823
+49979 40962
+49980 50182
+49981 30524
+49982 31352
+49983 18616
+49984 20959
+49985 51264
+49986 30575
+49987 34811
+49988 74427
+49989 29122
+49990 58406
+49991 26664
+49992 50657
+49993 61329
+49994 26523
+49995 41571
+49996 33069
+49997 46684
+49998 76648
+49999 46380
+50000 29071
+50001 47708
+50002 44212
+50003 55220
+50004 44399
+50005 44400
+50006 37672
+50007 63645
+50008 47690
+50009 77169
+50010 79924
+50011 20533
+50012 33773
+50013 59389
+50014 20920
+50015 55037
+50016 50710
+50017 40060
+50018 78270
+50019 80035
+50020 64979
+50021 34729
+50022 56164
+50023 52727
+50024 32666
+50025 78393
+50026 68759
+50027 61086
+50028 80703
+50029 50122
+50030 71823
+50031 55201
+50032 23063
+50033 37490
+50034 25902
+50035 24704
+50036 49254
+50037 20660
+50038 53777
+50039 56164
+50040 78382
+50041 53293
+50042 48727
+50043 38182
+50044 27348
+50045 29718
+50046 40248
+50047 8486
+50048 26763
+50049 75262
+50050 74242
+50051 80046
+50052 77312
+50053 21375
+50054 38345
+50055 41982
+50056 36208
+50057 27019
+50058 54565
+50059 58742
+50060 60690
+50061 30528
+50062 3600
+50063 65905
+50064 66790
+50065 77763
+50066 37677
+50067 62425
+50068 33273
+50069 33273
+50070 23587
+50071 49777
+50072 23516
+50073 59432
+50074 41921
+50075 55037
+50076 64306
+50077 49347
+50078 55210
+50079 49649
+50080 30797
+50081 33086
+50082 58460
+50083 1663
+50084 49939
+50085 70578
+50086 49951
+50087 33069
+50088 33137
+50089 78586
+50090 78591
+50091 50095
+50092 17385
+50093 63966
+50094 65113
+50095 50574
+50096 61713
+50097 50526
+50098 50545
+50099 78277
+50100 55415
+50101 62456
+50102 81061
+50103 81064
+50104 49634
+50105 23532
+50106 78364
+50107 61388
+50108 66605
+50109 62207
+50110 22517
+50111 50112
+50112 35821
+50113 22877
+50114 62323
+50115 20956
+50116 78175
+50117 49531
+50118 49545
+50119 69287
+50120 23560
+50121 33660
+50122 56893
+50123 49152
+50124 60462
+50125 74528
+50126 28925
+50127 31791
+50128 77186
+50129 53735
+50130 74428
+50131 34527
+50132 34172
+50133 49950
+50134 77057
+50135 47050
+50136 61177
+50137 61135
+50138 69592
+50139 50528
+50140 24490
+50141 50140
+50142 78291
+50143 49444
+50144 36482
+50145 21234
+50146 47417
+50147 71755
+50148 71771
+50149 37543
+50150 64215
+50151 64979
+50152 42041
+50153 71121
+50154 70478
+50155 40611
+50156 58835
+50157 55897
+50158 27001
+50159 14919
+50160 49163
+50161 64025
+50162 50528
+50163 23423
+50164 36396
+50165 33262
+50166 37647
+50167 78183
+50168 78402
+50169 25617
+50170 30604
+50171 60773
+50172 75904
+50173 33607
+50173 53481
+50174 36094
+50175 66367
+50176 66640
+50177 23532
+50178 23217
+50179 34590
+50180 77659
+50181 52382
+50182 50122
+50183 53295
+50184 22988
+50185 23147
+50186 23751
+50187 40399
+50188 35494
+50189 48485
+50190 73870
+50191 39212
+50192 66234
+50193 54606
+50194 14919
+50195 75456
+50196 36942
+50197 21398
+50198 37956
+50199 69506
+50200 36942
+50201 57586
+50202 21601
+50203 50196
+50204 50196
+50205 50204
+50206 59164
+50207 57106
+50208 57108
+50209 63428
+50210 78309
+50211 78583
+50212 23560
+50213 49442
+50214 23435
+50215 23436
+50216 36331
+50217 66767
+50218 79920
+50219 49310
+50220 49531
+50221 26784
+50222 26772
+50223 28249
+50224 64306
+50225 54972
+50226 48358
+50226 49021
+50227 70208
+50228 70212
+50229 37543
+50230 39573
+50231 50324
+50232 64308
+50233 33715
+50234 21406
+50235 31553
+50236 58222
+50237 49777
+50238 65850
+50239 63861
+50240 61171
+50241 45469
+50242 59151
+50243 54565
+50244 78673
+50245 49310
+50246 23723
+50247 58489
+50248 28893
+50249 28899
+50250 33134
+50251 24127
+50252 53634
+50253 46347
+50254 54996
+50255 55132
+50256 73104
+50257 48238
+50258 34570
+50259 74968
+50260 49777
+50261 64214
+50262 36316
+50263 20408
+50264 21114
+50265 49950
+50266 49950
+50267 49956
+50268 22318
+50269 75816
+50270 65645
+50271 75829
+50272 39584
+50273 33100
+50274 78381
+50275 79055
+50276 49808
+50277 49661
+50278 49661
+50279 56352
+50280 54248
+50281 36379
+50282 71952
+50283 32491
+50284 55201
+50285 78309
+50286 49456
+50287 39811
+50288 79349
+50289 36433
+50290 23727
+50291 53634
+50292 20920
+50293 61685
+50294 24794
+50295 78831
+50296 62678
+50297 24843
+50298 29957
+50299 41909
+50300 63474
+50301 39913
+50302 51199
+50303 50292
+50304 32899
+50305 32902
+50306 4403
+50307 33469
+50308 33475
+50309 24652
+50310 70919
+50311 23516
+50312 78831
+50313 50304
+50314 53634
+50315 30207
+50316 24704
+50316 34543
+50317 64112
+50318 42120
+50319 35408
+50320 63373
+50321 25752
+50322 42368
+50323 37862
+50324 60466
+50325 71598
+50326 40799
+50327 65631
+50328 32295
+50329 74528
+50330 64090
+50331 33823
+50332 33134
+50333 74540
+50334 43152
+50335 26674
+50336 55132
+50337 22866
+50338 60462
+50339 50447
+50340 16758
+50341 872
+50342 36208
+50343 34695
+50344 23258
+50345 38131
+50346 53418
+50347 64268
+50348 27711
+50349 25493
+50350 42957
+50351 54051
+50352 36942
+50353 29957
+50354 56105
+50355 33830
+50356 50447
+50357 74620
+50358 30769
+50359 8602
+50360 75642
+50361 44324
+50362 80147
+50363 56891
+50364 33078
+50365 60735
+50366 50710
+50367 51943
+50368 37948
+50369 24022
+50370 29617
+50371 30332
+50372 28458
+50373 33771
+50374 38564
+50375 49248
+50376 51148
+50377 55063
+50378 55223
+50379 59369
+50380 75401
+50381 67089
+50382 74620
+50383 53942
+50384 42615
+50385 50264
+50386 51242
+50387 21114
+50388 75813
+50389 37955
+50390 32981
+50391 21235
+50392 71615
+50393 46347
+50394 29358
+50395 33145
+50396 72218
+50397 29362
+50398 69385
+50399 14919
+50400 37356
+50401 69593
+50402 65905
+50403 20407
+50404 59333
+50405 49684
+50406 61008
+50407 47934
+50408 50305
+50409 38844
+50410 62330
+50411 50412
+50412 60462
+50413 50292
+50414 28893
+50415 39722
+50416 61186
+50417 20694
+50418 40823
+50419 55194
+50420 49777
+50421 21235
+50422 64090
+50423 56336
+50424 66253
+50425 50339
+50426 66431
+50427 69620
+50428 77216
+50429 56307
+50430 70591
+50431 42767
+50432 36942
+50433 62678
+50434 16771
+50435 16770
+50436 33475
+50437 32575
+50438 47902
+50439 50440
+50440 60462
+50441 73907
+50442 59151
+50443 40961
+50444 66801
+50445 22534
+50445 62307
+50446 30404
+50447 22193
+50448 16771
+50449 37756
+50450 57127
+50451 60533
+50452 63976
+50453 43094
+50454 37614
+50455 78831
+50456 40613
+50457 66812
+50458 50092
+50459 70876
+50460 59178
+50461 55727
+50462 69283
+50463 26684
+50463 39993
+50464 14294
+50465 65850
+50466 55351
+50467 37535
+50468 41498
+50469 49391
+50470 23959
+50471 49930
+50472 70786
+50473 70786
+50474 57108
+50475 50471
+50476 38633
+50477 61702
+50478 40660
+50479 48727
+50480 22434
+50481 77112
+50482 50031
+50483 71000
+50484 35461
+50485 50031
+50486 33145
+50487 73922
+50488 78917
+50489 45843
+50490 10474
+50491 63702
+50492 33714
+50493 50036
+50494 22430
+50495 38495
+50496 41564
+50497 50031
+50498 64842
+50499 64843
+50500 44062
+50501 15851
+50502 41122
+50503 43454
+50504 49967
+50505 60570
+50506 69287
+50507 75906
+50508 64237
+50509 33078
+50510 59150
+50511 78665
+50512 49653
+50513 49653
+50514 36627
+50515 33647
+50516 76171
+50517 33274
+50518 59389
+50519 78396
+50520 49777
+50521 40035
+50521 61329
+50522 40029
+50523 40030
+50524 45060
+50525 15784
+50526 56164
+50527 21441
+50528 25094
+50529 61541
+50530 74773
+50531 30784
+50532 36928
+50533 47665
+50534 62912
+50535 64979
+50536 50521
+50537 70478
+50538 58838
+50539 49254
+50540 49266
+50541 78661
+50542 30528
+50543 33559
+50544 30584
+50545 49684
+50546 72676
+50547 76866
+50548 4747
+50549 34806
+50550 34812
+50551 53328
+50552 55448
+50553 66333
+50554 53336
+50555 20702
+50556 50373
+50557 50809
+50558 13570
+50559 43810
+50560 23864
+50561 20428
+50562 30784
+50563 57194
+50564 78739
+50565 48231
+50566 56748
+50567 29430
+50568 37452
+50569 22517
+50570 46936
+50571 62473
+50572 39420
+50573 50093
+50574 80902
+50575 68818
+50576 40819
+50577 42031
+50578 23723
+50579 70988
+50580 38485
+50581 64158
+50582 21230
+50583 21406
+50584 52735
+50585 29301
+50586 10789
+50587 59752
+50588 12282
+50589 61686
+50590 24572
+50591 52726
+50591 66687
+50592 21901
+50593 50591
+50594 63474
+50595 49564
+50596 49442
+50597 27565
+50598 59389
+50599 33582
+50600 30523
+50601 54337
+50602 33468
+50603 33273
+50604 68096
+50605 73754
+50606 32295
+50607 63134
+50608 50519
+50609 68502
+50610 20792
+50611 46792
+50612 30784
+50613 22848
+50613 76513
+50614 65365
+50614 8835
+50615 65365
+50615 8835
+50616 22137
+50617 22792
+50618 33086
+50619 46810
+50620 22848
+50621 64325
+50622 61642
+50623 50616
+50624 50616
+50625 60495
+50626 60497
+50627 65748
+50628 20925
+50629 21576
+50630 2436
+50631 33563
+50632 33273
+50633 20925
+50634 55132
+50635 65298
+50636 60462
+50637 71034
+50638 76004
+50639 71302
+50640 52727
+50641 39679
+50642 28006
+50643 56492
+50644 23715
+50645 24487
+50646 28266
+50647 59178
+50648 55563
+50649 49918
+50650 49918
+50651 74773
+50652 59178
+50653 55351
+50654 37059
+50655 26114
+50656 49918
+50657 55563
+50658 31983
+50659 49441
+50660 48142
+50661 7583
+50662 7583
+50663 3004
+50664 49192
+50665 856
+50666 74272
+50667 55555
+50668 33767
+50669 43342
+50670 39918
+50671 66797
+50672 50205
+50673 11311
+50674 37512
+50675 59365
+50676 61146
+50677 30194
+50678 71449
+50679 22468
+50680 79639
+50681 44193
+50681 80277
+50682 80902
+50683 26920
+50684 24909
+50685 2440
+50686 11311
+50687 47665
+50688 18616
+50689 19954
+50690 80903
+50691 54359
+50692 80904
+50693 48722
+50694 49639
+50695 41922
+50696 33273
+50697 72676
+50698 49273
+50699 44414
+50700 76004
+50701 25867
+50702 50703
+50703 56757
+50704 65787
+50705 50100
+50706 66324
+50707 37955
+50708 21235
+50709 55448
+50710 64979
+50711 23817
+50712 78171
+50713 37484
+50714 49434
+50715 78260
+50716 78183
+50717 63373
+50718 77112
+50719 78409
+50720 23959
+50721 40581
+50722 30528
+50723 63980
+50724 64379
+50725 55201
+50726 37825
+50727 32376
+50728 22603
+50729 22602
+50730 20428
+50730 69601
+50731 40030
+50732 63044
+50733 856
+50734 22654
+50735 49062
+50736 50733
+50736 73871
+50737 27155
+50738 5752
+50739 81387
+50740 36569
+50741 39846
+50743 21421
+50744 21425
+50745 21426
+50746 22764
+50747 50759
+50748 28686
+50749 56492
+50750 50759
+50751 50759
+50752 68239
+50753 20792
+50754 50005
+50755 44083
+50756 22224
+50757 62875
+50758 53129
+50759 53129
+50760 50759
+50761 69635
+50762 69637
+50763 21773
+50764 36316
+50765 58190
+50766 43152
+50767 21235
+50768 40390
+50769 33086
+50770 40069
+50771 73104
+50772 33832
+50773 53123
+50774 40711
+50775 41017
+50776 46384
+50777 34212
+50778 39557
+50779 40204
+50780 70740
+50781 22759
+50782 54378
+50783 21701
+50784 55220
+50785 77435
+50786 55220
+50787 40225
+50788 50759
+50789 30780
+50790 40711
+50791 71823
+50792 23868
+50793 64215
+50794 33662
+50795 61243
+50796 64379
+50797 33662
+50798 43828
+50799 66432
+50800 49619
+50801 63886
+50802 40398
+50803 5752
+50804 20792
+50805 49870
+50806 36802
+50807 35529
+50808 56236
+50809 33068
+50810 78311
+50811 74860
+50812 63980
+50813 63980
+50814 66611
+50815 23655
+50816 31405
+50817 22792
+50818 36610
+50819 61858
+50820 46500
+50821 69351
+50822 41511
+50823 32295
+50824 18616
+50825 80848
+50826 79125
+50827 45084
+50828 59717
+50829 45116
+50830 31962
+50831 45193
+50832 28380
+50833 73576
+50834 73576
+50835 73576
+50836 42725
+50837 43718
+50838 39191
+50839 61740
+50840 71302
+50841 80943
+50842 39191
+50843 1785
+50844 39421
+50845 44065
+50846 42392
+50847 41076
+50848 76759
+50849 29413
+50850 23686
+50851 62453
+50852 23591
+50853 52063
+50854 21375
+50855 79125
+50856 58576
+50857 61961
+50858 62255
+50859 29144
+50860 78999
+50861 61014
+50862 34256
+50863 32081
+50864 81014
+50865 4824
+50866 14150
+50867 29767
+50868 24552
+50869 43718
+50870 54932
+50871 37847
+50872 38651
+50873 52971
+50874 25815
+50875 24232
+50876 47037
+50877 30946
+50878 50848
+50879 70725
+50880 71475
+50881 68378
+50882 73839
+50883 30946
+50884 41054
+50885 10620
+50886 65084
+50887 59110
+50888 7639
+50889 52819
+50890 56022
+50891 32070
+50892 64118
+50893 71223
+50894 42459
+50895 50276
+50896 78258
+50897 29430
+50898 25929
+50899 80510
+50900 34542
+50901 34197
+50902 52833
+50903 3897
+50904 80568
+50905 70449
+50906 33524
+50907 39489
+50908 57130
+50909 33401
+50910 78467
+50911 37579
+50912 69560
+50913 69332
+50914 50919
+50915 35486
+50916 28503
+50917 29005
+50918 42768
+50919 79003
+50920 33639
+50921 26770
+50922 81370
+50923 40894
+50924 2911
+50925 59110
+50926 52415
+50927 29852
+50928 8885
+50929 30872
+50930 29695
+50931 41828
+50932 69904
+50932 72614
+50933 27155
+50934 41521
+50935 48083
+50936 71766
+50936 8950
+50937 46986
+50938 62917
+50939 61147
+50940 23166
+50941 19547
+50942 75151
+50943 63031
+50944 35805
+50945 24721
+50946 41699
+50947 57134
+50948 58614
+50949 40067
+50950 21734
+50951 29378
+50952 36707
+50953 23516
+50954 49918
+50955 38774
+50956 56631
+50957 49918
+50958 59178
+50959 71303
+50960 31835
+50961 44366
+50961 48839
+50962 33524
+50963 55037
+50964 29123
+50965 43844
+50966 72567
+50967 67490
+50968 51306
+50969 65612
+50970 33017
+50971 56182
+50972 56748
+50973 65632
+50974 55135
+50975 80028
+50976 64590
+50977 50863
+50978 28240
+50979 28243
+50980 37862
+50981 21630
+50982 37496
+50983 53040
+50984 43062
+50985 65748
+50986 41455
+50987 65750
+50988 10872
+50989 21640
+50990 50981
+50991 23863
+50992 60464
+50993 48722
+50994 50200
+50995 59317
+50996 54359
+50997 55449
+50998 59248
+50999 47262
+51000 21155
+51001 36037
+51002 42432
+51003 68804
+51004 46356
+51005 3959
+51006 43117
+51007 72133
+51008 35805
+51009 42300
+51010 36942
+51011 42965
+51012 54888
+51013 63398
+51014 63398
+51015 64836
+51016 79573
+51017 73649
+51018 80778
+51019 35118
+51020 49168
+51021 76085
+51022 31090
+51023 35118
+51024 71941
+51025 33865
+51026 29695
+51027 37110
+51028 45086
+51029 37818
+51030 56749
+51031 71594
+51032 22877
+51033 57792
+51034 23073
+51035 75780
+51036 37377
+51037 23067
+51038 23066
+51039 64090
+51040 36755
+51041 50456
+51042 20724
+51043 37802
+51044 34231
+51045 45756
+51046 39724
+51047 48445
+51048 54572
+51049 10789
+51050 52796
+51051 43805
+51052 43959
+51053 67170
+51054 60169
+51055 22501
+51056 53573
+51057 64795
+51058 43968
+51059 67924
+51060 29528
+51061 69925
+51062 34104
+51063 39940
+51064 55343
+51065 80855
+51066 80858
+51067 72625
+51068 35503
+51069 33456
+51070 28606
+51071 32955
+51072 30491
+51073 36178
+51074 66938
+51075 78907
+51076 79992
+51077 15965
+51078 62255
+51079 40405
+51080 25376
+51081 61436
+51082 32591
+51083 23544
+51084 62443
+51085 43959
+51085 45677
+51086 60531
+51087 81164
+51088 12737
+51089 35724
+51090 27459
+51091 7412
+51092 75635
+51093 49571
+51094 70366
+51095 58374
+51096 58367
+51097 61243
+51098 27203
+51099 24263
+51100 25439
+51101 48628
+51102 40894
+51103 63874
+51104 64048
+51105 81056
+51106 63926
+51107 77289
+51108 25276
+51109 23558
+51109 50933
+51110 41521
+51111 39699
+51112 30739
+51113 38562
+51114 52779
+51115 33775
+51115 35897
+51116 22594
+51117 21090
+51117 58838
+51118 32700
+51119 72886
+51120 32700
+51121 14919
+51122 59212
+51123 38750
+51124 36159
+51125 50198
+51126 77112
+51127 51123
+51128 51123
+51129 52895
+51130 51123
+51131 23346
+51132 66995
+51133 76879
+51134 68728
+51135 37490
+51136 80703
+51137 23856
+51137 54815
+51138 27348
+51139 33639
+51140 39969
+51141 80595
+51142 34729
+51143 65833
+51144 61186
+51145 61189
+51146 30875
+51147 54522
+51148 78831
+51149 71701
+51150 43019
+51151 39902
+51152 35432
+51153 48727
+51154 54185
+51155 38672
+51155 39191
+51156 46519
+51157 54815
+51158 51067
+51159 65973
+51160 47880
+51161 78816
+51162 71973
+51163 28845
+51164 75989
+51165 50981
+51166 57633
+51167 49659
+51168 77199
+51169 77200
+51170 66260
+51171 36753
+51172 64257
+51173 25617
+51174 35509
+51175 67606
+51176 29528
+51176 30946
+51177 69189
+51178 44193
+51179 78284
+51180 49777
+51181 23846
+51182 34584
+51183 33470
+51184 50863
+51185 38467
+51186 25149
+51187 51183
+51187 80680
+51188 77019
+51189 25616
+51190 69351
+51191 76325
+51192 62453
+51193 67490
+51194 59317
+51195 53803
+51196 51172
+51197 20920
+51198 42049
+51199 62174
+51200 33475
+51201 33456
+51202 46965
+51203 8486
+51204 43175
+51205 53539
+51206 80510
+51207 51209
+51208 54385
+51209 44017
+51210 33581
+51210 62453
+51211 51209
+51212 70995
+51213 31611
+51214 32424
+51215 2554
+51216 46585
+51217 2554
+51218 2554
+51219 45796
+51220 74095
+51221 72767
+51222 2554
+51223 2911
+51224 35648
+51225 42553
+51226 43703
+51227 48890
+51228 26954
+51229 36627
+51230 2437
+51231 43000
+51232 76113
+51233 70264
+51234 17849
+51235 77548
+51236 77289
+51237 81139
+51238 65400
+51239 63373
+51240 5547
+51241 61544
+51242 20724
+51243 40819
+51244 60137
+51245 27001
+51246 32689
+51247 27493
+51248 31509
+51249 54888
+51250 52562
+51251 52554
+51252 52554
+51253 37152
+51254 57534
+51254 67244
+51255 21106
+51256 51117
+51257 51117
+51258 51240
+51259 31445
+51260 20694
+51261 40763
+51262 33393
+51263 36928
+51264 49777
+51265 17222
+51266 4694
+51267 79641
+51268 62180
+51269 37579
+51270 35808
+51271 72464
+51272 38043
+51273 34007
+51274 34007
+51275 35595
+51276 80510
+51277 47262
+51278 33442
+51279 39191
+51280 56022
+51281 28356
+51282 73396
+51283 25791
+51284 29240
+51285 35144
+51286 28728
+51287 43214
+51288 62453
+51289 73104
+51290 74893
+51291 2911
+51292 73308
+51293 77851
+51294 41909
+51295 61912
+51295 74245
+51296 8001
+51297 22763
+51298 30861
+51299 54810
+51300 58033
+51301 4694
+51302 62638
+51303 50969
+51304 47665
+51305 62638
+51306 51299
+51307 44193
+51308 45829
+51309 56022
+51310 55512
+51311 2025
+51312 52727
+51313 62298
+51314 22468
+51315 52727
+51316 2911
+51317 70786
+51318 54815
+51319 5344
+51320 59389
+51321 48727
+51322 54076
+51323 4516
+51324 65025
+51325 48516
+51326 80542
+51327 55573
+51328 25634
+51329 55132
+51330 22468
+51331 53666
+51332 33936
+51333 51335
+51334 19954
+51335 33442
+51336 21700
+51337 30095
+51338 29183
+51339 80545
+51340 60444
+51341 37579
+51342 3366
+51343 25376
+51344 67345
+51345 21855
+51346 25376
+51347 15569
+51348 66789
+51349 36304
+51350 20403
+51351 59791
+51352 58614
+51353 72501
+51354 33639
+51355 24994
+51356 2911
+51357 68651
+51358 28060
+51359 46140
+51360 40585
+51361 70098
+51362 47624
+51363 41922
+51364 29240
+51365 59970
+51366 23788
+51367 68844
+51368 59389
+51369 49918
+51370 20588
+51371 47708
+51372 49918
+51373 23788
+51374 70995
+51375 48791
+51376 49918
+51377 74893
+51378 43842
+51379 70995
+51380 41021
+51381 62360
+51381 77237
+51382 49918
+51383 55208
+51384 40611
+51385 70995
+51386 51385
+51387 51385
+51388 51385
+51389 49593
+51390 38574
+51391 68660
+51392 18451
+51393 62304
+51394 45825
+51395 8885
+51396 56022
+51397 43745
+51397 48832
+51398 37539
+51399 41219
+51400 41219
+51401 31986
+51401 44400
+51402 68149
+51403 33442
+51404 18616
+51405 39191
+51406 20809
+51407 47786
+51407 51416
+51408 59385
+51409 51408
+51410 46345
+51411 74893
+51412 74893
+51413 58269
+51414 58269
+51415 58269
+51416 56542
+51417 73330
+51418 33639
+51419 48095
+51420 61157
+51421 18616
+51422 18616
+51423 53082
+51424 41321
+51425 48317
+51426 57127
+51427 9838
+51428 80883
+51429 36942
+51430 48080
+51431 28206
+51432 57134
+51433 29475
+51434 48092
+51435 53113
+51436 46922
+51437 74051
+51438 49163
+51439 58369
+51440 59300
+51441 41054
+51442 41054
+51443 55909
+51444 80542
+51445 67876
+51446 10249
+51447 14919
+51448 47299
+51449 11660
+51450 51655
+51451 76879
+51452 80442
+51453 55106
+51454 28154
+51455 32413
+51456 55343
+51457 30942
+51458 55182
+51459 56749
+51460 50086
+51461 56748
+51462 34170
+51463 62473
+51464 73084
+51465 77886
+51466 40711
+51467 27813
+51468 43055
+51469 25617
+51469 62190
+51470 73079
+51471 68813
+51472 52460
+51473 45503
+51474 45407
+51475 6958
+51476 29369
+51477 40672
+51478 32735
+51479 78552
+51480 27906
+51481 55145
+51482 28897
+51483 47665
+51484 56022
+51485 8149
+51486 2684
+51487 33226
+51488 36845
+51489 81389
+51490 62532
+51491 49777
+51492 37167
+51493 17934
+51494 50583
+51495 35656
+51496 41441
+51497 45056
+51498 43876
+51499 55663
+51500 80918
+51501 65632
+51502 55657
+51503 55659
+51504 65632
+51505 24225
+51506 40849
+51507 63300
+51508 63405
+51509 63405
+51510 80918
+51511 71017
+51512 59331
+51513 61214
+51514 67403
+51515 71598
+51516 13951
+51517 64252
+51518 40069
+51519 63633
+51520 74878
+51521 49221
+51522 45664
+51523 55163
+51524 30003
+51525 61704
+51526 65743
+51527 71836
+51527 71839
+51528 64252
+51529 55156
+51530 68817
+51531 51530
+51532 77325
+51533 23672
+51534 79992
+51535 61014
+51536 14920
+51537 32524
+51538 12977
+51539 80369
+51540 12967
+51541 27097
+51542 10250
+51543 10249
+51544 56445
+51545 75418
+51546 46344
+51547 21349
+51548 43917
+51549 68266
+51550 34990
+51551 80369
+51552 50849
+51553 33989
+51554 42747
+51555 79601
+51556 49461
+51557 49461
+51558 65562
+51559 19954
+51560 18616
+51561 61709
+51562 2082
+51563 49777
+51564 49163
+51565 37167
+51566 64015
+51567 52633
+51568 46505
+51569 18616
+51570 66431
+51571 66432
+51572 66432
+51573 57397
+51574 10286
+51575 46589
+51576 47738
+51577 16151
+51578 31298
+51579 35728
+51580 27631
+51581 77851
+51582 38467
+51583 37579
+51584 5344
+51585 76908
+51586 26229
+51587 29123
+51588 76908
+51589 28860
+51590 53830
+51591 66432
+51592 29760
+51593 44350
+51594 81306
+51595 6789
+51596 6789
+51597 24416
+51598 67573
+51599 48142
+51600 29030
+51601 44149
+51602 47962
+51603 50739
+51604 54940
+51605 70819
+51606 75003
+51607 78574
+51608 51598
+51609 51607
+51610 30691
+51611 30691
+51612 62453
+51613 47167
+51614 24984
+51615 26973
+51616 71598
+51617 23482
+51618 76879
+51619 81306
+51620 80514
+51621 46500
+51622 25815
+51623 38084
+51624 65663
+51625 17503
+51626 78309
+51627 48366
+51628 39986
+51629 14070
+51630 23124
+51631 29436
+51632 20724
+51633 73980
+51634 77764
+51635 81022
+51636 28591
+51637 68522
+51638 30216
+51639 79992
+51640 47934
+51641 23555
+51642 31927
+51643 71632
+51643 73481
+51644 52547
+51645 27531
+51646 66260
+51647 64317
+51648 23380
+51649 56748
+51650 49777
+51651 26920
+51652 2043
+51653 23543
+51654 39181
+51655 23345
+51656 64118
+51657 27412
+51658 26511
+51659 39177
+51660 32560
+51661 62473
+51662 54390
+51663 16765
+51664 51662
+51665 51662
+51666 49171
+51667 32213
+51668 58130
+51669 37579
+51670 41054
+51671 51677
+51672 57671
+51673 57673
+51674 46902
+51675 75910
+51676 57660
+51677 73432
+51678 31939
+51679 46220
+51680 33852
+51681 36208
+51682 27339
+51683 61961
+51684 31981
+51685 71941
+51686 34985
+51687 24484
+51688 37446
+51689 33505
+51690 62419
+51691 71231
+51692 26769
+51693 25930
+51694 49777
+51695 36942
+51696 26769
+51697 31041
+51698 28358
+51699 41424
+51700 19954
+51701 37778
+51702 57561
+51703 7577
+51704 48091
+51705 61962
+51706 80181
+51707 51710
+51708 20408
+51709 39290
+51710 47887
+51711 23815
+51712 33662
+51713 74942
+51714 36458
+51715 59223
+51716 63963
+51717 79817
+51718 13071
+51719 54363
+51720 48620
+51721 35144
+51722 35145
+51723 41298
+51724 57881
+51724 78886
+51725 58543
+51726 13284
+51727 32413
+51728 55343
+51729 70098
+51730 43737
+51731 22636
+51732 51553
+51733 15997
+51734 18964
+51735 46846
+51736 17122
+51737 5015
+51738 53182
+51739 58406
+51740 73830
+51741 57134
+51742 21700
+51743 18616
+51744 27441
+51745 8001
+51746 60972
+51747 81016
+51748 39336
+51749 23909
+51750 51749
+51751 47665
+51752 54378
+51753 35728
+51754 6234
+51755 23591
+51756 38202
+51757 30774
+51757 58134
+51758 22691
+51759 79125
+51760 53291
+51761 31483
+51762 31482
+51763 54815
+51764 72545
+51764 77232
+51765 27352
+51766 70189
+51767 57795
+51768 18857
+51769 79691
+51770 27798
+51771 80179
+51772 33017
+51773 898
+51774 54440
+51775 35805
+51776 56022
+51777 12592
+51778 27251
+51779 35361
+51780 68813
+51781 55563
+51782 71778
+51783 29027
+51784 80904
+51785 2075
+51786 32081
+51787 58955
+51788 58955
+51789 36756
+51790 27625
+51791 65365
+51792 11482
+51793 22799
+51793 26689
+51794 51802
+51795 51802
+51796 23516
+51797 33547
+51798 51797
+51798 73552
+51799 78831
+51800 78831
+51801 33547
+51802 53266
+51803 80902
+51804 31608
+51805 66276
+51806 80902
+51807 23739
+51808 33715
+51809 51804
+51810 52382
+51811 54714
+51812 51806
+51813 59970
+51814 66789
+51815 39252
+51816 23516
+51817 78831
+51818 59560
+51819 22208
+51820 22532
+51821 38901
+51822 34018
+51823 41054
+51824 42747
+51825 52404
+51826 41666
+51827 46902
+51828 18616
+51829 80943
+51830 52697
+51831 75480
+51832 53457
+51833 57871
+51834 80903
+51835 53315
+51836 36483
+51837 75820
+51838 46505
+51839 32082
+51840 80903
+51841 73907
+51842 23516
+51843 27155
+51844 29071
+51845 40752
+51846 35661
+51847 69283
+51848 78831
+51849 20956
+51850 41829
+51851 1785
+51852 23846
+51852 60492
+51853 21692
+51854 37452
+51855 40410
+51855 68239
+51856 61228
+51857 20956
+51858 54029
+51859 29462
+51860 29071
+51861 21404
+51862 40498
+51863 21404
+51864 37453
+51865 44439
+51866 33273
+51867 72934
+51868 36380
+51869 30424
+51870 24355
+51871 42145
+51872 33805
+51873 47665
+51874 59317
+51875 79003
+51876 43737
+51877 54272
+51878 59317
+51879 26293
+51880 2911
+51881 30556
+51882 41666
+51883 60073
+51884 77803
+51885 25599
+51886 26229
+51887 75323
+51888 41616
+51889 74763
+51890 59317
+51891 22258
+51892 80851
+51893 81021
+51894 25583
+51895 50223
+51896 45198
+51897 62207
+51898 51904
+51899 20428
+51900 24188
+51901 81071
+51902 52020
+51903 11593
+51904 27019
+51905 61858
+51906 61858
+51907 25490
+51908 38102
+51909 23585
+51909 68768
+51910 43565
+51911 77669
+51912 80354
+51913 43246
+51914 70285
+51915 72271
+51916 74491
+51917 56447
+51918 7645
+51919 45708
+51920 31152
+51921 35439
+51922 51068
+51923 47665
+51924 52727
+51925 34729
+51926 48953
+51927 72271
+51928 10216
+51929 74620
+51930 68660
+51931 46945
+51932 43862
+51933 22533
+51934 70750
+51935 41054
+51936 39371
+51937 52727
+51938 55351
+51939 62372
+51940 56272
+51941 62209
+51942 25599
+51943 37450
+51944 36302
+51945 33016
+51946 20955
+51946 40885
+51947 62379
+51948 51947
+51949 73731
+51950 31672
+51951 51952
+51951 70044
+51952 33581
+51953 34808
+51954 70974
+51955 20415
+51956 58461
+51957 72007
+51958 43882
+51959 48628
+51960 52970
+51961 80926
+51962 29714
+51963 14920
+51964 50940
+51965 69882
+51966 58216
+51967 30298
+51968 70757
+51969 72514
+51970 30069
+51971 64950
+51972 7514
+51973 74558
+51974 80568
+51975 71676
+51976 19954
+51977 18616
+51978 28531
+51979 21406
+51980 21115
+51981 36925
+51982 7568
+51983 53132
+51984 56014
+51985 45756
+51986 66273
+51987 57530
+51988 44492
+51989 32062
+51990 70567
+51991 53878
+51992 34400
+51993 59790
+51994 64214
+51995 62397
+51996 33581
+51997 23448
+51998 23448
+51999 23109
+52000 34696
+52001 42462
+52002 78191
+52003 42313
+52004 32959
+52005 52002
+52006 62397
+52007 52011
+52008 35805
+52009 34480
+52010 1504
+52011 52020
+52012 52895
+52013 36569
+52014 50025
+52015 62180
+52016 51202
+52017 66233
+52018 73907
+52019 5752
+52020 59787
+52021 68708
+52022 59993
+52023 44474
+52024 62701
+52025 23252
+52026 23258
+52027 44176
+52028 44149
+52029 59990
+52030 33069
+52031 77598
+52032 71174
+52033 79900
+52034 60677
+52035 56022
+52036 70969
+52037 32900
+52038 24029
+52039 80883
+52040 47887
+52041 41137
+52042 75904
+52043 34245
+52044 25015
+52045 20856
+52046 52717
+52047 20575
+52048 68763
+52049 68728
+52050 50191
+52051 33068
+52052 78268
+52053 39028
+52054 22904
+52055 13465
+52056 46639
+52057 22529
+52058 34793
+52059 39191
+52060 18616
+52061 20792
+52062 62736
+52063 51957
+52064 62300
+52065 51109
+52066 61993
+52067 71676
+52068 69698
+52069 5611
+52070 34018
+52071 34018
+52072 53134
+52073 76069
+52074 23283
+52075 31927
+52076 42459
+52077 76908
+52078 51069
+52079 32607
+52080 52074
+52081 47708
+52082 39874
+52083 31130
+52084 52085
+52085 49593
+52086 81066
+52087 37975
+52088 52076
+52089 33639
+52090 40819
+52091 39930
+52092 43862
+52093 33327
+52094 59110
+52095 29731
+52096 52076
+52097 52170
+52098 3503
+52099 40292
+52100 27705
+52101 63096
+52102 62532
+52103 70494
+52104 76067
+52105 41595
+52106 19954
+52107 33442
+52108 39190
+52109 22529
+52110 32686
+52111 70899
+52112 28859
+52113 47665
+52114 80802
+52115 54253
+52116 34175
+52117 31506
+52118 34668
+52119 49699
+52120 50247
+52121 46565
+52122 61269
+52123 49777
+52124 62974
+52125 28731
+52126 61442
+52127 81222
+52128 8486
+52129 26337
+52130 25160
+52131 54250
+52132 70898
+52133 78352
+52134 45198
+52135 52831
+52136 33078
+52137 33078
+52137 60570
+52138 32070
+52139 12973
+52140 59505
+52141 59505
+52142 36463
+52143 22517
+52144 77853
+52145 50107
+52146 30769
+52147 23516
+52148 78831
+52149 20415
+52150 72162
+52151 49918
+52152 49918
+52153 30084
+52154 55208
+52155 58723
+52156 73279
+52157 49918
+52158 29706
+52158 72273
+52159 60611
+52160 60612
+52161 59242
+52162 71322
+52163 25377
+52164 39518
+52165 52465
+52166 26769
+52167 38575
+52168 25465
+52169 41424
+52169 67606
+52170 56718
+52171 12150
+52172 65562
+52173 20955
+52174 80025
+52175 79366
+52176 48083
+52177 39809
+52178 50555
+52179 77598
+52180 79488
+52181 46755
+52182 36326
+52183 67333
+52184 21430
+52185 23316
+52186 24085
+52187 61276
+52188 18858
+52189 41321
+52190 53546
+52191 29955
+52192 73665
+52193 9828
+52194 64696
+52195 59142
+52196 48564
+52197 26611
+52198 23772
+52199 23449
+52200 43117
+52201 67196
+52202 50447
+52203 50447
+52204 63296
+52205 61477
+52206 76502
+52207 33660
+52208 36996
+52209 47380
+52210 22671
+52211 50447
+52212 33312
+52213 40112
+52214 44449
+52215 65905
+52216 60556
+52217 47771
+52218 78899
+52219 53538
+52220 37428
+52221 50266
+52222 40998
+52223 79701
+52224 71083
+52225 28249
+52226 69965
+52227 42904
+52228 80943
+52229 42904
+52230 31981
+52231 38738
+52232 70919
+52233 22498
+52234 52840
+52235 53129
+52236 32981
+52237 52826
+52238 33805
+52239 10359
+52240 27637
+52241 69216
+52242 23433
+52243 43420
+52244 59211
+52245 78596
+52246 41096
+52247 71972
+52248 49777
+52249 59782
+52250 20955
+52251 56775
+52252 64257
+52253 23357
+52254 64257
+52255 62397
+52256 70867
+52257 52260
+52258 79647
+52259 44193
+52259 80277
+52260 80904
+52261 29696
+52262 36878
+52263 78688
+52264 48281
+52265 10366
+52266 58576
+52267 58576
+52268 2911
+52269 18616
+52270 68498
+52271 21701
+52272 79344
+52273 50725
+52274 71017
+52275 60998
+52276 2911
+52277 2911
+52278 40804
+52279 50198
+52280 33186
+52281 33186
+52282 52443
+52283 43104
+52283 52287
+52284 71782
+52285 20569
+52286 39909
+52287 21394
+52288 42213
+52289 52280
+52290 52280
+52291 52280
+52292 52280
+52293 52280
+52294 52280
+52295 11852
+52296 52280
+52297 11852
+52298 51242
+52299 52280
+52300 63418
+52301 45808
+52302 64694
+52303 67573
+52304 64979
+52305 52382
+52306 49257
+52307 36304
+52308 41798
+52309 27471
+52310 30424
+52311 43882
+52312 44171
+52313 30774
+52314 64051
+52315 41794
+52316 3027
+52317 27609
+52318 64723
+52319 57700
+52320 33273
+52321 25149
+52322 38784
+52323 52337
+52324 80757
+52325 23285
+52326 60462
+52327 62176
+52328 47628
+52329 73907
+52330 28845
+52331 51593
+52332 26203
+52333 33623
+52334 41207
+52335 59354
+52336 36845
+52337 32880
+52338 31915
+52339 36790
+52340 59338
+52341 48485
+52342 39024
+52343 56675
+52344 73432
+52345 10770
+52348 53182
+52349 45957
+52350 20925
+52351 55563
+52352 21198
+52353 40578
+52354 52383
+52355 872
+52356 69287
+52357 68878
+52358 20959
+52359 62180
+52360 57926
+52361 76502
+52362 33575
+52363 71202
+52364 45930
+52365 62425
+52366 20728
+52367 80680
+52368 20758
+52368 38901
+52369 50107
+52370 31222
+52371 32371
+52372 45310
+52373 61306
+52374 59365
+52375 60990
+52376 49265
+52377 70052
+52378 50447
+52379 18616
+52380 28014
+52381 44213
+52382 49777
+52383 20955
+52384 27001
+52385 63133
+52386 20408
+52387 40015
+52388 39177
+52389 49719
+52390 20963
+52391 20959
+52392 50427
+52393 66401
+52394 22186
+52395 2911
+52396 62303
+52397 69290
+52398 25529
+52399 34046
+52400 32524
+52401 25599
+52402 26611
+52403 28180
+52404 28222
+52405 62296
+52406 41430
+52407 52752
+52408 52753
+52409 50105
+52410 56384
+52411 76877
+52412 68872
+52413 57532
+52414 72690
+52415 48230
+52416 52396
+52417 29601
+52418 53433
+52419 72747
+52420 19011
+52421 53182
+52422 48091
+52423 71695
+52424 55759
+52425 15594
+52426 67066
+52427 49948
+52428 33273
+52429 70090
+52430 75733
+52431 76255
+52432 49603
+52433 37702
+52434 20895
+52435 49538
+52436 26994
+52437 37756
+52438 5168
+52439 16028
+52440 81168
+52441 21191
+52442 30946
+52443 64048
+52444 65743
+52445 49777
+52446 37119
+52447 52862
+52448 37645
+52449 64214
+52450 33715
+52451 61228
+52452 10252
+52453 66576
+52454 21278
+52455 26294
+52456 39251
+52457 68378
+52458 70405
+52459 73149
+52460 22533
+52461 38083
+52462 41666
+52463 31717
+52464 31717
+52465 49441
+52466 69116
+52467 41054
+52468 41953
+52469 50849
+52470 46386
+52471 62907
+52472 2911
+52473 80514
+52474 2911
+52475 80903
+52476 45913
+52477 76476
+52478 61286
+52479 55037
+52480 49453
+52481 41666
+52482 52876
+52483 56022
+52484 6193
+52485 69841
+52486 79817
+52487 39751
+52487 61591
+52488 72985
+52489 45465
+52490 15600
+52490 8509
+52491 39216
+52492 21038
+52493 65861
+52494 50191
+52495 36525
+52496 31643
+52497 17385
+52498 14919
+52499 70312
+52500 67157
+52501 65434
+52502 53123
+52503 81071
+52504 22587
+52505 42984
+52506 21855
+52507 78816
+52508 33654
+52509 23656
+52510 36665
+52511 37401
+52512 76368
+52513 38503
+52514 22746
+52515 62180
+52516 41119
+52517 46851
+52518 60357
+52519 77886
+52520 62136
+52521 63133
+52522 46895
+52523 49777
+52524 23906
+52525 34153
+52526 63136
+52527 59605
+52528 44271
+52529 44277
+52530 47588
+52531 78900
+52532 42526
+52533 49194
+52534 24571
+52535 43000
+52536 53067
+52537 53067
+52538 74490
+52539 35503
+52540 64291
+52541 31927
+52542 37758
+52543 77289
+52544 50980
+52545 53673
+52546 52547
+52547 40711
+52548 52547
+52549 51922
+52549 52539
+52550 32209
+52551 38869
+52552 41547
+52553 48101
+52554 63860
+52555 64059
+52556 21397
+52557 61346
+52558 67203
+52559 36223
+52560 30383
+52561 63133
+52562 74967
+52563 40894
+52564 33394
+52565 52304
+52566 46347
+52567 39688
+52568 25750
+52569 14919
+52570 37361
+52571 57315
+52572 44193
+52573 33100
+52574 23751
+52575 43101
+52576 31523
+52577 45748
+52578 20894
+52579 23346
+52580 7191
+52581 52305
+52581 62810
+52582 14919
+52583 52304
+52584 20895
+52585 53457
+52586 72965
+52587 47665
+52588 62649
+52589 78816
+52590 57269
+52591 68441
+52592 64360
+52593 42384
+52594 76476
+52595 39024
+52596 31939
+52597 36432
+52598 21534
+52599 433
+52600 41983
+52601 64240
+52602 45427
+52603 47231
+52604 67490
+52605 31482
+52606 31483
+52607 18035
+52608 23560
+52609 40500
+52610 47666
+52611 33524
+52612 46986
+52613 42553
+52614 45084
+52615 14640
+52616 51150
+52617 35944
+52618 61811
+52619 42553
+52620 14150
+52621 66688
+52622 42727
+52623 71774
+52624 67245
+52625 67245
+52626 52620
+52627 43710
+52628 65781
+52629 58860
+52630 19954
+52631 18616
+52632 8545
+52633 63815
+52634 77164
+52635 50585
+52636 37699
+52637 42044
+52638 52850
+52639 37268
+52639 43832
+52639 61686
+52640 40921
+52641 69290
+52642 38830
+52643 55454
+52644 76683
+52645 66520
+52646 29243
+52647 55351
+52648 49436
+52649 47524
+52650 63055
+52651 25038
+52652 52589
+52653 52588
+52654 52587
+52655 71973
+52656 16951
+52657 43862
+52658 25929
+52659 47665
+52660 80510
+52661 77693
+52662 53059
+52663 53059
+52664 49234
+52665 47665
+52666 52658
+52667 44193
+52668 70478
+52669 9146
+52670 18616
+52671 50675
+52672 55694
+52673 26138
+52674 81406
+52675 40021
+52676 40022
+52677 50105
+52678 21375
+52679 51897
+52680 2737
+52681 52682
+52682 49876
+52683 57232
+52684 52143
+52685 43631
+52686 55397
+52687 55394
+52688 7633
+52689 39540
+52689 41664
+52690 72482
+52691 72588
+52692 61477
+52693 44206
+52694 38162
+52695 48231
+52696 60685
+52697 50036
+52698 22731
+52699 30014
+52700 59317
+52701 28859
+52702 42747
+52703 30215
+52704 45239
+52705 51638
+52706 51758
+52707 58999
+52708 64015
+52709 63434
+52710 65729
+52711 27944
+52712 54804
+52713 59317
+52714 79601
+52715 80673
+52716 81257
+52717 50191
+52718 49456
+52719 68770
+52720 59786
+52721 16760
+52722 21403
+52723 38169
+52724 41125
+52725 76858
+52726 37957
+52726 75904
+52727 30578
+52728 53342
+52729 24231
+52730 59786
+52731 27104
+52732 52740
+52733 29760
+52734 34819
+52734 37958
+52735 52726
+52736 52862
+52737 51654
+52738 81071
+52739 81071
+52740 30353
+52741 52740
+52742 75546
+52743 63192
+52744 59991
+52745 52739
+52746 23846
+52747 35336
+52748 40300
+52749 50198
+52750 50198
+52751 58849
+52752 47665
+52753 68172
+52754 27705
+52755 12230
+52756 15860
+52757 40390
+52758 72596
+52759 2911
+52760 3220
+52761 26706
+52761 43482
+52762 26713
+52763 70995
+52764 39776
+52765 41021
+52766 26713
+52767 56921
+52768 2832
+52769 38633
+52770 5780
+52771 57059
+52772 65897
+52773 37938
+52774 39625
+52775 22015
+52776 49737
+52777 35077
+52778 65312
+52779 24840
+52780 54104
+52781 77816
+52782 46936
+52783 53546
+52784 55160
+52785 21198
+52786 50577
+52787 28694
+52788 47037
+52789 43462
+52790 57315
+52791 50188
+52792 61509
+52793 30521
+52794 1349
+52795 41571
+52796 43627
+52797 46613
+52798 30608
+52799 16671
+52800 52051
+52801 39491
+52802 37462
+52803 40045
+52804 49456
+52805 69508
+52806 53217
+52807 33186
+52808 53215
+52809 24091
+52810 53221
+52811 40496
+52812 32287
+52813 55563
+52814 53182
+52815 63164
+52816 74594
+52817 24475
+52818 50232
+52819 79125
+52820 30687
+52821 38528
+52822 47546
+52823 66492
+52824 36280
+52825 33018
+52826 21169
+52827 21169
+52828 49194
+52829 39137
+52830 76684
+52831 44435
+52832 39027
+52833 20679
+52834 23933
+52835 75980
+52836 25745
+52837 61539
+52838 49194
+52839 24486
+52840 43497
+52841 43497
+52842 52477
+52843 29240
+52844 64449
+52845 6193
+52846 64051
+52847 14919
+52848 67573
+52849 20724
+52850 36671
+52851 20724
+52852 28241
+52853 29475
+52854 29918
+52855 42058
+52856 64090
+52857 43815
+52858 48695
+52859 59499
+52859 78742
+52860 81056
+52861 27207
+52862 50198
+52863 52840
+52864 52840
+52865 24088
+52866 58490
+52867 62372
+52868 58520
+52869 66864
+52870 58838
+52871 33715
+52872 41547
+52873 68759
+52874 49333
+52875 70995
+52876 43844
+52877 52875
+52878 39168
+52879 52304
+52880 36665
+52881 47665
+52882 29123
+52883 62907
+52884 67586
+52885 34571
+52886 55132
+52887 65992
+52888 36162
+52889 10770
+52890 39024
+52891 62876
+52892 15642
+52893 71851
+52894 17029
+52895 69328
+52896 54039
+52897 23516
+52898 14919
+52899 32698
+52900 52307
+52901 32699
+52902 32461
+52903 32699
+52904 44406
+52905 39371
+52906 32699
+52907 25633
+52908 25633
+52909 40806
+52910 61228
+52911 61228
+52912 22547
+52913 61228
+52914 49777
+52915 53450
+52916 56757
+52917 59388
+52918 63909
+52919 40234
+52920 40234
+52921 52935
+52922 23486
+52923 59388
+52924 36928
+52925 40405
+52926 22770
+52927 43103
+52928 26999
+52929 29362
+52930 50232
+52931 52935
+52932 29845
+52933 58826
+52934 60935
+52935 42652
+52935 66708
+52936 65403
+52937 57531
+52938 41407
+52939 75662
+52940 26695
+52941 43105
+52942 69061
+52943 23938
+52944 43889
+52945 74487
+52946 53134
+52947 53134
+52948 33158
+52949 36459
+52950 29542
+52951 21511
+52952 19636
+52953 33856
+52954 36942
+52955 25493
+52956 38562
+52957 64636
+52958 36942
+52959 1346
+52960 33476
+52961 2441
+52962 55037
+52963 52968
+52964 61653
+52965 30578
+52966 24728
+52967 76178
+52968 23917
+52969 25929
+52970 20906
+52971 72007
+52972 61357
+52973 68698
+52974 79256
+52975 6923
+52976 27591
+52977 49270
+52978 64518
+52979 79259
+52980 37327
+52981 79571
+52982 21011
+52983 20255
+52984 23345
+52985 51894
+52986 20255
+52987 2728
+52988 80699
+52989 34792
+52990 37138
+52991 42002
+52992 2554
+52993 2554
+52994 81028
+52995 45294
+52996 23812
+52997 74071
+52998 61621
+52999 55737
+53000 2554
+53001 23812
+53002 62711
+53003 61605
+53004 66260
+53005 23812
+53006 37688
+53007 37758
+53008 39465
+53009 2554
+53010 23812
+53011 36751
+53012 30517
+53013 21598
+53014 41547
+53015 33858
+53016 16588
+53017 47481
+53018 35486
+53019 22988
+53020 50343
+53021 42382
+53022 49824
+53023 80020
+53024 78663
+53025 45196
+53026 23863
+53027 42476
+53028 49777
+53029 33306
+53030 25527
+53031 28233
+53032 70152
+53033 45294
+53034 31390
+53035 2554
+53036 81028
+53037 26487
+53038 53182
+53039 62883
+53040 32036
+53040 48700
+53041 80860
+53042 62307
+53043 22468
+53044 62304
+53045 43213
+53046 43213
+53047 63943
+53048 70740
+53049 49152
+53050 32973
+53051 41571
+53052 20210
+53053 2911
+53054 17835
+53055 28266
+53056 56503
+53057 56504
+53058 67100
+53059 53055
+53060 53055
+53061 59936
+53062 53055
+53063 70075
+53064 70075
+53065 70076
+53066 51898
+53067 23015
+53068 27615
+53069 27290
+53070 60464
+53071 23204
+53072 24165
+53072 38952
+53073 48409
+53074 80310
+53075 30534
+53076 57833
+53077 58664
+53078 49284
+53079 49284
+53080 73907
+53081 31483
+53082 31482
+53083 51150
+53084 43710
+53085 51498
+53086 51957
+53087 15785
+53087 69342
+53088 41666
+53089 79958
+53090 79697
+53091 6056
+53092 39809
+53093 27410
+53094 40991
+53095 49699
+53096 49699
+53097 66375
+53098 37454
+53099 76471
+53100 66378
+53101 24015
+53102 32955
+53103 39200
+53104 49689
+53105 79573
+53106 72217
+53107 39008
+53108 75789
+53109 50675
+53110 29378
+53111 67996
+53112 70086
+53113 69178
+53114 79438
+53115 58489
+53116 65631
+53117 40393
+53118 61936
+53119 22763
+53120 50107
+53121 71594
+53122 43243
+53123 11484
+53124 43243
+53125 43215
+53126 75904
+53127 39463
+53128 55902
+53129 53539
+53130 62051
+53131 67365
+53132 33470
+53133 20403
+53134 23560
+53135 11484
+53136 55448
+53137 29671
+53138 55162
+53139 38189
+53140 70789
+53141 77563
+53142 43048
+53143 63889
+53144 20955
+53145 50809
+53146 43053
+53147 21106
+53148 53128
+53149 59394
+53150 36311
+53151 38869
+53152 43889
+53153 60678
+53154 60678
+53155 53129
+53156 43889
+53157 23321
+53158 41408
+53159 60678
+53160 53124
+53161 53126
+53162 53129
+53163 53124
+53164 76094
+53165 32700
+53166 59394
+53167 43104
+53168 63881
+53169 74298
+53170 72257
+53171 72773
+53172 65481
+53173 39724
+53174 20612
+53175 21751
+53176 40212
+53177 70757
+53178 22193
+53179 59191
+53180 23076
+53181 66355
+53182 53178
+53183 27410
+53184 54740
+53185 43055
+53186 24356
+53187 39932
+53188 39933
+53189 32524
+53190 43055
+53191 74584
+53192 63136
+53193 53122
+53194 41054
+53195 60202
+53196 80277
+53197 38418
+53198 42862
+53199 61822
+53200 60581
+53201 58839
+53202 53122
+53203 28981
+53204 43943
+53205 46735
+53206 74860
+53207 68266
+53208 68889
+53209 78232
+53210 33547
+53211 23516
+53212 78831
+53213 63068
+53214 60612
+53215 68818
+53216 49777
+53217 48685
+53218 49178
+53219 66431
+53220 68807
+53221 48695
+53222 20570
+53223 23071
+53224 27025
+53225 64307
+53226 50224
+53227 53233
+53228 41424
+53229 53182
+53230 32634
+53231 32902
+53232 31404
+53233 33468
+53234 50008
+53235 55162
+53236 23917
+53237 39205
+53238 41125
+53239 23938
+53240 45634
+53241 42049
+53242 63870
+53243 36791
+53244 62924
+53245 58995
+53246 34593
+53247 51654
+53248 58904
+53249 58860
+53250 41054
+53251 73346
+53252 41752
+53253 41054
+53254 47679
+53255 25929
+53256 30123
+53257 47665
+53258 47665
+53259 31773
+53260 48750
+53261 43114
+53262 35253
+53262 53255
+53263 53255
+53264 53255
+53265 68888
+53266 23558
+53266 40932
+53267 32589
+53268 54363
+53269 24678
+53270 41666
+53271 36028
+53272 65980
+53273 40069
+53274 62360
+53275 74893
+53276 54147
+53277 55220
+53278 55540
+53279 75904
+53280 77824
+53281 60685
+53282 33450
+53283 68441
+53284 77157
+53285 35661
+53286 61136
+53287 54363
+53288 21274
+53289 61485
+53290 44212
+53290 48832
+53291 21700
+53292 45311
+53293 42787
+53294 73106
+53295 42788
+53296 33547
+53297 21528
+53297 35204
+53298 23723
+53299 71823
+53300 53295
+53301 37212
+53302 36878
+53303 37138
+53304 58447
+53305 12659
+53305 35204
+53306 13314
+53307 71556
+53308 79366
+53309 46505
+53310 46507
+53311 33226
+53312 34940
+53312 51491
+53313 41792
+53314 40652
+53315 21700
+53316 53293
+53317 28043
+53318 52862
+53319 11286
+53320 18857
+53321 9203
+53322 20922
+53323 40
+53324 41054
+53325 34349
+53326 17385
+53327 45779
+53328 35904
+53329 23640
+53330 35900
+53331 79402
+53332 30353
+53333 79104
+53334 40498
+53335 49876
+53336 59396
+53337 60599
+53338 10736
+53339 43718
+53340 39191
+53341 20680
+53342 50417
+53343 37955
+53344 37702
+53345 33241
+53346 21405
+53347 81061
+53348 34975
+53349 53351
+53350 66994
+53351 48695
+53352 49777
+53353 50272
+53354 81061
+53355 53351
+53356 81061
+53357 64048
+53358 56028
+53359 60685
+53360 29453
+53360 54349
+53361 63870
+53362 38824
+53363 63891
+53364 62288
+53365 63892
+53366 37892
+53367 37887
+53368 67444
+53369 74181
+53370 52326
+53371 20415
+53372 23960
+53373 55759
+53374 60533
+53375 63976
+53376 65018
+53377 20794
+53378 60202
+53379 40612
+53380 67036
+53380 78223
+53381 22525
+53382 67817
+53383 33856
+53384 26039
+53385 61841
+53386 71302
+53387 54959
+53388 72767
+53389 24045
+53390 24937
+53391 22663
+53392 47722
+53393 2721
+53394 78999
+53395 33326
+53396 39294
+53397 42071
+53397 56062
+53398 58930
+53399 25078
+53400 24671
+53401 59782
+53402 67065
+53403 17062
+53404 70908
+53405 71061
+53406 48579
+53407 56062
+53407 76635
+53408 64967
+53409 64968
+53410 32062
+53411 37902
+53412 24083
+53413 67333
+53414 24263
+53415 26202
+53416 26999
+53417 28410
+53418 58576
+53419 73189
+53420 57741
+53421 70995
+53422 50379
+53423 78756
+53424 49777
+53425 36569
+53426 5070
+53427 29471
+53427 53429
+53428 48405
+53429 37560
+53430 42800
+53431 68522
+53432 54154
+53433 28130
+53434 78284
+53435 21513
+53436 32955
+53437 72869
+53438 39724
+53439 62207
+53440 6992
+53441 33051
+53442 61086
+53443 23433
+53444 56178
+53445 74181
+53446 48627
+53447 28790
+53448 67573
+53449 67574
+53450 58614
+53451 77733
+53452 66544
+53453 50198
+53454 74258
+53455 74181
+53456 56975
+53457 68519
+53458 45212
+53459 54804
+53460 59317
+53461 71676
+53462 40547
+53463 3737
+53464 35655
+53465 49699
+53466 49699
+53467 39428
+53468 36664
+53469 40843
+53470 39421
+53471 53100
+53472 65645
+53473 79764
+53474 50841
+53475 23938
+53476 65645
+53477 46909
+53478 73551
+53479 27679
+53480 37428
+53481 36094
+53482 80883
+53483 23067
+53484 24088
+53485 23487
+53486 70264
+53487 58826
+53488 29378
+53489 47665
+53490 58820
+53491 66943
+53492 64257
+53493 62612
+53494 26168
+53495 61086
+53496 62809
+53497 40799
+53498 60722
+53499 49795
+53500 27021
+53501 62304
+53502 53729
+53503 64117
+53504 53500
+53505 20415
+53506 52396
+53507 72514
+53508 47665
+53509 46389
+53510 61961
+53511 64478
+53512 73336
+53513 70086
+53514 36116
+53515 69126
+53516 60616
+53517 77269
+53518 73336
+53519 53513
+53520 75331
+53521 37579
+53522 70974
+53523 33367
+53524 53500
+53525 64533
+53526 22430
+53527 22427
+53528 33145
+53529 21394
+53530 3074
+53531 45754
+53532 45746
+53533 69446
+53534 59501
+53535 73733
+53536 58195
+53537 60489
+53538 63862
+53539 58614
+53540 80904
+53541 69506
+53542 74584
+53543 50057
+53544 51904
+53545 48727
+53546 41424
+53547 55168
+53548 39789
+53549 33575
+53550 81030
+53551 44299
+53552 59260
+53553 41547
+53554 74965
+53555 60569
+53556 49496
+53557 41424
+53558 67573
+53559 29760
+53560 64306
+53561 62513
+53562 70974
+53563 13286
+53564 13569
+53565 79658
+53566 17145
+53567 71875
+53568 11446
+53569 54113
+53570 50901
+53571 22519
+53572 56283
+53573 56752
+53574 52587
+53575 30084
+53576 24445
+53577 68698
+53578 70868
+53579 16771
+53580 60567
+53581 70868
+53582 70297
+53583 19954
+53584 18616
+53585 62957
+53586 73043
+53587 40618
+53588 61278
+53589 41428
+53590 20404
+53591 20668
+53591 48576
+53592 21829
+53593 37428
+53594 42692
+53595 70089
+53596 27125
+53597 19954
+53598 40851
+53599 81075
+53600 81075
+53601 55132
+53602 28740
+53603 34018
+53604 80070
+53605 2178
+53606 68591
+53607 27205
+53608 24592
+53609 69116
+53610 70409
+53611 23214
+53612 80902
+53613 61544
+53614 32840
+53615 63861
+53616 74966
+53617 74966
+53618 54415
+53619 56985
+53620 39493
+53621 59180
+53622 64098
+53623 41227
+53624 63156
+53625 64183
+53626 66431
+53627 76824
+53628 64979
+53629 40819
+53630 61541
+53631 41455
+53632 40887
+53633 23721
+53634 74485
+53635 64379
+53636 23444
+53637 11590
+53638 77053
+53639 49190
+53640 37707
+53641 23318
+53642 14070
+53643 40645
+53644 19954
+53645 35503
+53646 27021
+53647 35523
+53648 23286
+53649 27021
+53650 38162
+53651 35935
+53652 72836
+53653 29123
+53654 35080
+53655 2911
+53656 62649
+53657 22811
+53658 50761
+53659 49783
+53660 54805
+53661 63471
+53662 78999
+53663 59782
+53664 33321
+53665 25599
+53666 45954
+53667 79153
+53668 34346
+53669 39889
+53670 13467
+53671 55367
+53672 25542
+53673 27155
+53674 3703
+53675 3074
+53676 37908
+53677 46589
+53678 51107
+53679 61228
+53680 52120
+53681 50658
+53682 78232
+53683 77698
+53684 68411
+53685 44043
+53686 33670
+53687 23349
+53688 20724
+53689 29170
+53690 24225
+53691 60169
+53692 78208
+53693 65346
+53694 43718
+53695 39191
+53696 26954
+53697 27440
+53698 23241
+53699 49777
+53700 53710
+53701 58946
+53702 54368
+53703 46853
+53704 76074
+53705 25544
+53706 36802
+53707 22498
+53708 81236
+53709 52639
+53710 38830
+53711 40877
+53712 79934
+53713 33691
+53714 34480
+53715 38092
+53716 41752
+53717 53905
+53718 61136
+53719 23004
+53720 38051
+53721 8704
+53722 22468
+53723 22468
+53724 14917
+53725 33581
+53726 53718
+53727 75910
+53728 10770
+53729 70751
+53730 29030
+53731 42094
+53732 64090
+53733 76824
+53734 50492
+53735 42621
+53736 27619
+53737 22238
+53738 51699
+53739 22086
+53740 48092
+53741 49777
+53742 80902
+53743 33049
+53744 71407
+53745 71408
+53746 64317
+53747 78381
+53748 49533
+53749 56885
+53750 56885
+53751 79915
+53752 21098
+53753 74119
+53754 47665
+53755 73505
+53756 62575
+53757 23817
+53758 25778
+53759 43844
+53760 35323
+53761 72413
+53762 33662
+53763 72246
+53764 29769
+53765 53768
+53766 79454
+53767 77675
+53768 60444
+53769 33670
+53770 44044
+53771 67903
+53772 42045
+53773 41157
+53774 77176
+53775 36188
+53776 37454
+53777 29880
+53778 40807
+53779 22002
+53780 65645
+53781 36671
+53782 4840
+53783 10545
+53784 76671
+53785 20661
+53786 26929
+53787 35959
+53788 23960
+53789 2911
+53790 10251
+53791 77659
+53792 34565
+53793 51904
+53794 32320
+53795 67573
+53796 23363
+53797 53798
+53798 31939
+53799 53798
+53800 53798
+53801 46873
+53802 50105
+53803 48230
+53804 37374
+53805 31998
+53806 68857
+53807 47665
+53808 47666
+53809 53277
+53810 39699
+53811 6193
+53812 68878
+53813 69841
+53814 60590
+53815 30921
+53816 57991
+53817 62081
+53818 22062
+53819 51352
+53820 71597
+53821 7577
+53822 51699
+53823 61341
+53824 52042
+53825 54770
+53826 34373
+53827 71851
+53828 37963
+53829 60444
+53830 49777
+53831 38089
+53832 61992
+53833 51522
+53834 38538
+53835 53810
+53836 57741
+53837 26861
+53838 66185
+53839 53282
+53840 37138
+53841 12078
+53842 43241
+53843 65352
+53844 42003
+53845 37138
+53846 46913
+53847 21217
+53848 79767
+53849 17503
+53850 25377
+53851 20554
+53852 27637
+53853 32596
+53854 40843
+53855 65334
+53856 62124
+53857 8486
+53858 64070
+53859 5314
+53860 63133
+53861 76368
+53862 30844
+53863 25799
+53864 27411
+53865 31608
+53866 75913
+53867 36162
+53868 40993
+53868 71302
+53869 53093
+53870 52326
+53871 66809
+53872 66808
+53873 71332
+53874 78209
+53875 36222
+53876 56893
+53877 56989
+53878 5316
+53879 77349
+53880 70688
+53881 47493
+53882 36379
+53883 71366
+53884 54349
+53885 6926
+53886 41790
+53887 53810
+53888 29123
+53889 38169
+53890 48092
+53891 66233
+53892 54972
+53893 55162
+53894 33273
+53895 23070
+53896 68404
+53897 22531
+53898 38436
+53899 65544
+53900 53347
+53901 32285
+53902 26929
+53903 39180
+53904 68146
+53905 79125
+53906 81025
+53907 71111
+53908 29676
+53909 32976
+53910 29676
+53911 26954
+53912 76622
+53913 79623
+53914 30971
+53915 28971
+53916 71851
+53917 71853
+53918 24372
+53919 23516
+53920 72415
+53921 62507
+53922 57791
+53923 30252
+53924 78831
+53925 78965
+53926 28249
+53927 73575
+53928 34695
+53929 50863
+53930 12083
+53931 80904
+53932 57791
+53933 53941
+53934 30084
+53935 53008
+53936 30123
+53937 52970
+53938 23585
+53939 65295
+53940 65296
+53941 53008
+53942 53008
+53943 1279
+53944 74219
+53945 60773
+53946 20415
+53947 51804
+53948 75419
+53949 68889
+53950 53949
+53951 68502
+53952 50100
+53953 28904
+53954 70700
+53955 4738
+53956 5172
+53957 39120
+53958 72093
+53959 53129
+53960 81170
+53961 29624
+53962 70478
+53963 62809
+53964 55104
+53965 32351
+53966 55267
+53967 39065
+53968 39067
+53969 66827
+53970 55110
+53971 43273
+53972 59151
+53973 66803
+53974 79328
+53975 29471
+53976 56752
+53977 72858
+53978 56896
+53979 27191
+53980 61822
+53981 68177
+53982 28904
+53983 50447
+53984 36208
+53985 80860
+53986 10992
+53986 24119
+53987 10992
+53987 77773
+53988 43969
+53989 36290
+53990 56748
+53991 79470
+53992 47812
+53993 56675
+53994 27877
+53995 65293
+53996 45333
+53997 63329
+53998 61228
+53999 30339
+54000 69143
+54001 31181
+54002 37579
+54003 45650
+54004 55563
+54005 34705
+54006 57134
+54007 49272
+54008 37680
+54009 20550
+54010 62470
+54011 49806
+54012 79924
+54013 53200
+54014 898
+54015 28629
+54016 54191
+54017 7966
+54018 44299
+54019 42747
+54020 29616
+54021 30056
+54022 48208
+54023 28222
+54024 29331
+54025 56718
+54026 7577
+54027 48727
+54028 54039
+54029 29071
+54030 49918
+54031 21055
+54032 60685
+54033 39154
+54034 22457
+54035 22458
+54036 22461
+54037 49918
+54038 78779
+54039 22534
+54040 39175
+54041 54043
+54042 54046
+54043 52761
+54044 31189
+54045 23299
+54046 52760
+54047 26713
+54048 26713
+54049 74773
+54050 38171
+54051 35676
+54052 3220
+54053 59389
+54054 74893
+54055 60722
+54056 56280
+54057 40686
+54058 28094
+54059 80510
+54060 22784
+54060 78787
+54061 70757
+54062 47072
+54063 32524
+54064 60584
+54065 62658
+54066 57133
+54067 40009
+54068 81056
+54069 20792
+54070 33790
+54070 38641
+54070 46802
+54071 55037
+54072 40390
+54073 55540
+54074 49561
+54075 33797
+54076 37745
+54077 59389
+54078 33274
+54079 59381
+54080 40069
+54081 22537
+54082 35437
+54083 4736
+54084 60746
+54085 60741
+54086 58543
+54087 54086
+54088 39193
+54089 13465
+54090 31935
+54091 60612
+54092 60611
+54093 60613
+54094 26229
+54095 60444
+54096 37579
+54097 71710
+54098 51655
+54099 60326
+54100 36942
+54101 59394
+54102 49777
+54103 59394
+54104 55154
+54105 39501
+54106 39501
+54107 27097
+54108 32211
+54109 42168
+54110 52801
+54111 68972
+54112 70265
+54113 73432
+54114 54100
+54115 23566
+54115 33129
+54116 54100
+54117 68728
+54118 34705
+54119 79221
+54120 54832
+54121 72292
+54122 11257
+54123 41054
+54124 65476
+54125 68266
+54126 68857
+54127 68576
+54128 69976
+54129 71031
+54130 32081
+54131 26536
+54132 26954
+54133 41054
+54134 49483
+54135 51823
+54136 20428
+54137 32634
+54138 78822
+54139 37144
+54140 20428
+54141 856
+54142 60685
+54143 39138
+54144 39141
+54145 40592
+54146 26209
+54147 56402
+54147 59385
+54148 37002
+54149 61448
+54150 52417
+54151 35595
+54152 62174
+54153 23286
+54154 60642
+54155 36375
+54156 63031
+54157 35320
+54158 5118
+54159 28561
+54160 10150
+54161 54162
+54162 22467
+54163 58862
+54164 40009
+54165 41054
+54166 66501
+54167 60529
+54168 17029
+54169 33544
+54170 23203
+54171 53962
+54172 80778
+54173 80778
+54174 23581
+54175 16936
+54176 34940
+54177 63686
+54177 64537
+54178 64025
+54179 64542
+54180 40043
+54181 23542
+54182 65262
+54183 70829
+54184 46386
+54185 74439
+54186 66520
+54187 71179
+54188 23876
+54189 44474
+54190 72794
+54191 20407
+54192 58729
+54193 14919
+54194 15785
+54195 56022
+54196 55563
+54197 25882
+54198 29453
+54199 48887
+54200 58088
+54201 74271
+54202 36942
+54203 33637
+54204 58196
+54205 32980
+54206 34042
+54207 872
+54208 37366
+54209 37369
+54210 41860
+54211 54232
+54212 39459
+54213 50041
+54214 65438
+54215 53155
+54216 11919
+54217 42670
+54218 76864
+54219 60495
+54220 54202
+54221 45055
+54222 65975
+54223 66779
+54224 49290
+54225 73569
+54226 37814
+54227 54228
+54228 55372
+54229 23966
+54230 45075
+54231 50675
+54232 22193
+54233 20925
+54234 61686
+54235 44428
+54236 68813
+54237 48843
+54238 55610
+54239 43103
+54240 39465
+54241 54240
+54242 42852
+54243 77764
+54244 39944
+54245 65645
+54246 49461
+54247 68813
+54248 64215
+54249 65645
+54250 49459
+54251 66431
+54252 24927
+54253 22468
+54254 37111
+54255 37112
+54256 80599
+54257 80913
+54258 67542
+54259 34256
+54260 48019
+54261 21379
+54262 54192
+54263 63789
+54264 63845
+54265 63854
+54266 68125
+54267 47796
+54268 19954
+54269 18616
+54270 38575
+54271 40099
+54272 38080
+54273 12150
+54274 24048
+54275 80514
+54276 42609
+54277 74562
+54278 59675
+54279 61996
+54280 58751
+54281 41666
+54282 72514
+54283 41616
+54284 68804
+54285 55526
+54286 33856
+54287 28693
+54288 67521
+54289 29379
+54290 43454
+54291 59332
+54292 71245
+54293 77095
+54294 63334
+54295 24504
+54296 26954
+54297 27485
+54298 54299
+54299 38602
+54300 14924
+54301 77215
+54302 21037
+54303 53328
+54304 74788
+54305 76410
+54306 71912
+54307 27019
+54308 62051
+54309 76816
+54310 29230
+54311 31649
+54312 54322
+54313 36162
+54314 37009
+54315 11200
+54316 60678
+54317 67685
+54318 81142
+54319 37211
+54320 5752
+54321 54888
+54322 29230
+54323 72690
+54324 6926
+54325 43180
+54326 76170
+54327 51348
+54328 74485
+54329 56164
+54330 22901
+54331 48576
+54332 39010
+54333 66867
+54334 44406
+54335 72767
+54336 1640
+54337 5320
+54338 41416
+54339 60474
+54340 9831
+54341 33336
+54342 24671
+54343 53502
+54344 1422
+54345 56311
+54346 74252
+54347 59178
+54348 75771
+54349 77130
+54350 66447
+54351 21382
+54352 52581
+54353 76219
+54354 51125
+54355 49286
+54356 63720
+54357 25478
+54358 15494
+54359 34812
+54360 28528
+54361 63607
+54362 40794
+54363 34268
+54364 40561
+54365 80023
+54366 42337
+54367 33069
+54368 54128
+54369 2911
+54370 20519
+54371 74926
+54372 29132
+54373 29131
+54374 56022
+54375 60685
+54376 81400
+54377 81401
+54378 35187
+54379 61349
+54380 33273
+54381 57915
+54382 37515
+54383 71112
+54384 56219
+54385 64360
+54386 56699
+54387 61389
+54388 49777
+54389 24601
+54390 23335
+54391 17222
+54392 27146
+54393 22788
+54394 30842
+54395 80806
+54396 35097
+54397 11256
+54397 48405
+54398 49022
+54399 66671
+54400 11257
+54400 30943
+54401 59321
+54402 31767
+54403 66671
+54404 66673
+54405 51571
+54406 22781
+54406 40410
+54407 2911
+54408 54413
+54409 40583
+54410 20792
+54411 44386
+54412 12458
+54413 47139
+54414 40583
+54415 64090
+54416 56164
+54417 81080
+54418 41158
+54419 41158
+54420 35144
+54421 54413
+54422 37560
+54423 40583
+54424 47851
+54425 24164
+54426 54422
+54426 77824
+54427 52382
+54428 71055
+54429 40335
+54430 2034
+54431 38721
+54432 61686
+54433 40500
+54434 12458
+54435 54434
+54436 72615
+54437 38667
+54438 2911
+54439 11142
+54440 36336
+54441 37645
+54442 54438
+54443 29341
+54444 76767
+54445 63134
+54446 56164
+54447 56164
+54448 50232
+54449 55932
+54450 51894
+54451 30316
+54452 42380
+54453 56022
+54454 37453
+54455 54359
+54456 79134
+54457 56164
+54458 39336
+54459 18211
+54460 43718
+54461 39191
+54462 57833
+54463 78968
+54464 41299
+54465 44496
+54466 81400
+54467 81401
+54468 40752
+54469 28790
+54470 20051
+54471 37004
+54472 39544
+54473 76033
+54474 57388
+54475 48256
+54476 31939
+54477 71766
+54478 41752
+54479 56649
+54480 56649
+54481 79639
+54482 21375
+54483 48563
+54484 49777
+54485 20960
+54486 48693
+54487 67138
+54488 42595
+54489 58192
+54490 21107
+54491 21230
+54492 69750
+54493 50373
+54494 43104
+54495 37415
+54496 14919
+54497 39204
+54498 23739
+54499 78067
+54500 18864
+54501 1655
+54502 69068
+54503 36791
+54504 81046
+54505 38721
+54506 65885
+54507 5547
+54508 32691
+54509 24082
+54510 50035
+54511 74942
+54512 49596
+54513 54514
+54514 31181
+54515 67586
+54516 47665
+54517 24308
+54518 46682
+54519 46682
+54520 59179
+54521 62247
+54522 56752
+54523 56888
+54524 40544
+54525 56283
+54526 62282
+54527 54832
+54528 13465
+54529 68239
+54530 55563
+54531 21949
+54532 21896
+54533 33086
+54534 20792
+54535 56022
+54536 22519
+54537 25593
+54538 25594
+54539 33637
+54540 31929
+54541 22468
+54542 43718
+54543 39191
+54544 43718
+54545 39191
+54546 22468
+54547 48092
+54548 34571
+54549 21185
+54550 14919
+54551 8704
+54552 21289
+54553 40012
+54554 70478
+54555 60612
+54556 21513
+54556 25478
+54557 16770
+54558 25469
+54559 50198
+54560 49418
+54561 23005
+54562 49731
+54563 23005
+54564 36175
+54565 62051
+54566 60202
+54567 54999
+54568 18616
+54569 56283
+54570 49941
+54571 39492
+54572 30046
+54573 49777
+54574 76051
+54575 68409
+54576 42999
+54577 55103
+54578 40500
+54579 52482
+54580 25626
+54581 43213
+54582 25626
+54583 37839
+54584 63709
+54585 7964
+54586 10252
+54587 35394
+54588 66746
+54589 66867
+54590 48200
+54591 26536
+54592 65718
+54593 70089
+54594 11406
+54595 57315
+54596 68660
+54597 37122
+54598 73515
+54599 57871
+54600 43398
+54601 45711
+54602 56789
+54603 68048
+54604 77269
+54605 45766
+54606 46890
+54607 38518
+54608 21971
+54609 51803
+54610 27155
+54611 54359
+54612 80510
+54613 52833
+54614 59382
+54615 24116
+54616 2911
+54617 66641
+54618 65764
+54619 64121
+54620 57258
+54621 19954
+54622 22468
+54623 21835
+54624 29430
+54625 74964
+54626 44439
+54626 51412
+54627 36963
+54628 63974
+54629 23710
+54630 73576
+54631 41507
+54632 43718
+54633 39191
+54634 47665
+54635 43703
+54636 71987
+54637 53291
+54638 17850
+54639 54440
+54640 67926
+54641 21443
+54642 15785
+54643 1785
+54644 69032
+54645 28845
+54646 75917
+54647 30946
+54648 50263
+54649 81338
+54650 18616
+54651 39190
+54652 27631
+54653 32311
+54654 68508
+54655 36569
+54656 19547
+54657 54988
+54658 37640
+54659 59327
+54660 80428
+54661 10151
+54662 48405
+54663 31459
+54664 79853
+54665 79853
+54666 11767
+54667 68498
+54668 45459
+54669 60616
+54670 32177
+54671 46398
+54672 80510
+54673 22191
+54674 36668
+54675 62187
+54676 27990
+54677 65645
+54678 49718
+54678 54673
+54679 15001
+54680 62209
+54681 78585
+54682 80806
+54683 58367
+54684 63134
+54685 71603
+54686 55888
+54687 10845
+54688 42747
+54689 74119
+54690 39969
+54691 42747
+54692 29158
+54693 61157
+54694 37940
+54695 33272
+54696 72114
+54697 22517
+54698 23240
+54699 39920
+54700 45426
+54701 49234
+54702 57166
+54703 53055
+54704 63926
+54705 51570
+54706 52561
+54707 40686
+54708 50386
+54709 59426
+54710 47666
+54711 17009
+54712 23560
+54713 81069
+54714 20955
+54715 49824
+54716 31608
+54717 54736
+54718 22319
+54719 29303
+54720 56572
+54721 5168
+54722 39143
+54723 39134
+54724 44149
+54725 44176
+54726 57933
+54727 59332
+54728 61008
+54729 73679
+54730 76953
+54731 78661
+54732 32666
+54733 32666
+54734 70280
+54735 34290
+54736 66712
+54737 55443
+54738 80462
+54739 36791
+54740 36210
+54741 49701
+54742 6633
+54743 70252
+54744 20680
+54745 57812
+54746 37405
+54747 52039
+54748 37428
+54749 2911
+54750 26009
+54751 71307
+54752 46882
+54753 55572
+54754 33524
+54755 2911
+54756 18616
+54757 71973
+54758 63246
+54759 12970
+54760 67490
+54761 34745
+54762 78268
+54763 64774
+54764 42204
+54765 75733
+54766 29199
+54767 60935
+54768 50056
+54769 41296
+54770 67334
+54771 19008
+54772 25488
+54773 27987
+54774 33715
+54775 37403
+54776 52862
+54777 19009
+54778 58822
+54779 39573
+54780 49777
+54781 33476
+54782 74310
+54783 35737
+54784 74311
+54785 27155
+54786 60785
+54787 17503
+54788 849
+54789 29045
+54790 79826
+54791 54804
+54792 47665
+54793 41666
+54794 55617
+54795 44478
+54796 80818
+54797 47087
+54798 47087
+54799 48469
+54800 22013
+54801 59317
+54802 80483
+54803 68000
+54804 23165
+54805 19999
+54806 81140
+54807 14919
+54808 29123
+54809 60616
+54810 55593
+54811 62629
+54812 43279
+54813 57183
+54814 71794
+54815 69441
+54816 51242
+54817 24080
+54818 68074
+54819 32177
+54820 47665
+54821 79076
+54822 79076
+54823 5190
+54824 51761
+54825 26302
+54826 29123
+54827 54363
+54828 81413
+54829 34796
+54830 25634
+54831 44385
+54832 77112
+54833 36928
+54834 59317
+54835 22240
+54836 74604
+54837 41555
+54838 63271
+54839 51607
+54840 50658
+54841 50658
+54842 62194
+54843 34590
+54843 37574
+54844 33169
+54845 60532
+54846 64307
+54847 1793
+54847 54845
+54848 70405
+54849 69575
+54850 68704
+54851 21075
+54852 69870
+54853 61376
+54854 52776
+54855 25529
+54856 72325
+54857 79000
+54858 33581
+54859 34695
+54860 63720
+54861 60491
+54862 63862
+54863 63862
+54864 35336
+54865 11589
+54866 11589
+54867 6993
+54868 53312
+54869 58403
+54870 54876
+54871 64033
+54872 54873
+54873 72255
+54874 72256
+54875 72257
+54876 78307
+54877 77340
+54878 80396
+54879 62193
+54880 61688
+54881 65672
+54882 70342
+54883 41098
+54884 54880
+54885 54880
+54886 52374
+54887 43246
+54888 72133
+54889 13284
+54890 41555
+54891 14766
+54892 71833
+54893 45971
+54894 59970
+54895 20415
+54896 39730
+54897 4747
+54898 68759
+54899 24083
+54900 9828
+54901 20569
+54902 14729
+54903 25515
+54904 31609
+54905 33137
+54906 62245
+54907 65225
+54908 69679
+54909 39211
+54910 65980
+54911 80903
+54912 20679
+54913 20680
+54914 14919
+54915 20679
+54916 38108
+54917 76578
+54918 76785
+54919 57529
+54920 30194
+54920 41973
+54921 2911
+54922 80935
+54923 29601
+54924 49918
+54925 63967
+54926 23016
+54927 34729
+54928 20415
+54929 49918
+54930 60685
+54931 62360
+54932 24109
+54933 49777
+54934 42699
+54935 56843
+54936 72614
+54937 11592
+54938 59938
+54939 28316
+54940 49222
+54941 33007
+54942 49222
+54943 38822
+54944 68878
+54945 49777
+54946 34454
+54947 60000
+54948 62255
+54949 45629
+54950 62683
+54951 26921
+54952 42944
+54953 27485
+54954 43837
+54955 57152
+54956 55194
+54957 55193
+54958 73346
+54959 74119
+54960 19954
+54961 19954
+54962 26246
+54963 58836
+54964 23746
+54965 22517
+54966 38089
+54966 66432
+54967 8486
+54968 6923
+54969 25854
+54970 42291
+54971 56723
+54972 55037
+54973 49950
+54974 40234
+54975 23066
+54976 27672
+54977 23723
+54978 80757
+54979 36804
+54980 61541
+54981 29301
+54982 37484
+54983 66475
+54984 64979
+54985 20925
+54986 33505
+54987 46909
+54988 40234
+54989 27146
+54990 60369
+54991 21513
+54992 48485
+54993 19591
+54994 75456
+54995 58362
+54996 28892
+54997 64183
+54998 66431
+54999 16771
+54999 72074
+55000 73125
+55001 30578
+55002 68818
+55003 68807
+55004 20570
+55005 74119
+55006 48000
+55007 29193
+55008 47252
+55008 80778
+55009 80778
+55010 71600
+55011 60442
+55012 60443
+55013 32429
+55014 21130
+55015 78288
+55016 51241
+55017 68045
+55018 2911
+55019 23438
+55020 39791
+55021 27025
+55022 22534
+55023 29841
+55024 55028
+55025 21751
+55026 55028
+55027 55028
+55028 54996
+55029 55028
+55030 80428
+55031 79605
+55032 58520
+55032 80778
+55033 23938
+55034 57372
+55035 23594
+55036 56272
+55037 61682
+55038 63962
+55039 33506
+55040 81061
+55041 47230
+55042 41115
+55043 42699
+55044 61744
+55045 59938
+55046 25504
+55047 59938
+55048 59389
+55049 73104
+55050 35907
+55051 27679
+55052 38795
+55053 55106
+55054 46834
+55055 32567
+55056 73346
+55057 80025
+55058 28438
+55059 64741
+55060 28912
+55061 71017
+55062 59317
+55063 23516
+55064 70832
+55065 78831
+55066 54996
+55067 49661
+55068 40993
+55068 52119
+55069 27412
+55070 53094
+55071 76037
+55072 18616
+55073 40103
+55074 47163
+55075 34936
+55076 38480
+55077 31515
+55077 62810
+55078 14919
+55079 80428
+55080 55077
+55081 14920
+55082 60590
+55083 74965
+55084 61316
+55085 27459
+55086 35805
+55087 42965
+55088 20814
+55089 28621
+55090 68127
+55091 34724
+55092 43390
+55093 45617
+55094 51193
+55095 21375
+55096 52140
+55097 80514
+55098 80514
+55099 68566
+55100 72391
+55101 72499
+55102 41842
+55103 7577
+55104 58406
+55105 58712
+55106 43019
+55107 51348
+55108 34516
+55109 29311
+55110 48564
+55111 52143
+55112 32123
+55113 24199
+55114 36937
+55115 37756
+55116 43430
+55117 76483
+55118 35461
+55119 22092
+55120 49163
+55121 70610
+55122 50142
+55123 50212
+55124 3293
+55125 50095
+55126 33634
+55127 20955
+55128 54523
+55129 55132
+55130 49777
+55131 35361
+55132 50196
+55133 78307
+55134 3503
+55135 43000
+55136 25051
+55137 34408
+55138 12086
+55139 21438
+55140 48305
+55141 48578
+55142 48578
+55143 37579
+55144 51043
+55145 61811
+55146 68086
+55147 76037
+55148 37579
+55149 59916
+55150 60571
+55151 78941
+55152 52895
+55153 65645
+55154 55168
+55155 38435
+55156 39898
+55157 39920
+55158 39924
+55159 56272
+55160 61685
+55161 61722
+55162 74965
+55163 61694
+55164 40681
+55165 30784
+55166 57526
+55167 61541
+55168 36942
+55169 61539
+55170 33273
+55171 30065
+55172 22798
+55173 58269
+55174 36409
+55175 50105
+55176 45629
+55177 79081
+55178 45643
+55179 32320
+55180 47546
+55181 21835
+55182 61329
+55183 30524
+55184 21230
+55185 49768
+55186 33312
+55187 44449
+55188 58784
+55189 24199
+55190 58369
+55191 30084
+55192 37033
+55193 50301
+55194 57706
+55195 55194
+55196 47665
+55197 55210
+55198 29553
+55199 20695
+55200 28241
+55201 77340
+55202 3600
+55203 37003
+55204 40532
+55205 40799
+55206 29776
+55207 40398
+55208 50196
+55209 63418
+55210 29553
+55211 63974
+55212 47324
+55213 64059
+55214 66629
+55215 45808
+55216 52937
+55217 68818
+55218 64694
+55219 30691
+55220 38633
+55221 76004
+55222 52504
+55223 55216
+55224 52443
+55225 60982
+55226 1785
+55227 28746
+55228 69935
+55229 33647
+55230 33647
+55231 22379
+55232 50212
+55233 40059
+55234 32899
+55235 55037
+55236 53293
+55237 55037
+55238 73104
+55239 64447
+55240 77216
+55241 9481
+55242 65334
+55243 34972
+55244 73213
+55245 65346
+55246 18616
+55247 43718
+55248 39191
+55249 39191
+55250 33078
+55251 64085
+55252 41430
+55253 22534
+55253 62307
+55254 29769
+55255 57787
+55256 72747
+55257 80494
+55258 67019
+55259 48702
+55260 48703
+55261 79300
+55262 56022
+55263 62053
+55264 23848
+55265 44315
+55266 23707
+55267 71597
+55268 33824
+55269 58269
+55270 22804
+55271 78307
+55272 33143
+55273 4337
+55274 5190
+55275 78307
+55276 44088
+55277 65632
+55278 27163
+55279 55363
+55280 66056
+55281 61294
+55282 66056
+55283 55415
+55284 39290
+55285 78497
+55286 76051
+55287 20831
+55288 72588
+55289 72589
+55290 72593
+55291 39176
+55292 40849
+55293 24225
+55294 27104
+55294 58451
+55295 76004
+55296 63405
+55297 64085
+55298 55236
+55299 66770
+55300 30163
+55301 30774
+55302 59970
+55303 21802
+55304 74959
+55305 5314
+55306 36686
+55307 68080
+55308 5314
+55309 76138
+55310 22531
+55311 40128
+55312 40128
+55313 48358
+55314 61860
+55315 70992
+55316 70995
+55317 48358
+55318 37816
+55319 36409
+55320 80860
+55321 38504
+55322 25646
+55323 21448
+55324 51520
+55325 75351
+55326 69881
+55327 21277
+55328 57133
+55329 32596
+55330 57129
+55331 68654
+55332 39191
+55333 45739
+55334 55332
+55335 75339
+55336 22811
+55337 59728
+55338 28860
+55339 80926
+55340 40059
+55341 79697
+55342 52727
+55343 23746
+55344 78309
+55345 33068
+55346 24769
+55347 27001
+55348 66441
+55349 29475
+55350 70044
+55351 22534
+55352 27155
+55353 73907
+55354 20722
+55355 66523
+55356 66523
+55357 58367
+55358 24103
+55359 40385
+55360 65965
+55361 64979
+55362 33660
+55363 33581
+55364 20856
+55365 52445
+55366 66640
+55367 25094
+55368 41137
+55369 47033
+55369 55372
+55370 32291
+55371 31009
+55372 36942
+55373 49278
+55374 55373
+55375 68140
+55376 33805
+55377 35823
+55378 76185
+55379 41295
+55380 20724
+55381 41106
+55382 73079
+55383 78410
+55384 30774
+55385 44193
+55386 32000
+55387 22529
+55388 55279
+55389 66867
+55390 23516
+55391 78831
+55392 77824
+55393 74893
+55394 49876
+55395 26209
+55396 39776
+55396 55394
+55397 55351
+55398 20415
+55399 29702
+55400 10474
+55401 74527
+55402 59901
+55403 42743
+55403 74893
+55404 26695
+55405 62286
+55406 45683
+55407 35600
+55408 61477
+55409 71830
+55410 20428
+55411 21380
+55412 59971
+55413 40726
+55414 64462
+55415 64462
+55416 55127
+55417 23943
+55418 50263
+55419 38272
+55420 55414
+55421 61541
+55422 23959
+55423 61086
+55424 33086
+55425 23071
+55426 24678
+55427 32661
+55428 24231
+55429 17385
+55430 50260
+55431 62304
+55432 27021
+55433 41362
+55434 53328
+55435 35197
+55436 57425
+55437 22779
+55438 22779
+55438 24891
+55439 56098
+55440 59970
+55441 22848
+55442 21395
+55443 62193
+55444 51242
+55445 54489
+55446 22807
+55446 49367
+55447 21205
+55448 32713
+55449 27421
+55450 34911
+55451 33856
+55452 73104
+55453 32989
+55454 48689
+55455 50020
+55456 24678
+55457 74064
+55458 78117
+55459 24962
+55460 79361
+55461 43788
+55462 50477
+55463 76037
+55464 26605
+55465 66483
+55466 76251
+55467 34590
+55468 62950
+55469 52017
+55470 69071
+55471 33715
+55472 29627
+55473 76832
+55474 51587
+55475 38092
+55476 62307
+55477 19993
+55478 24490
+55479 66544
+55480 74966
+55481 71600
+55482 49194
+55483 28341
+55484 49282
+55485 26209
+55486 80883
+55487 69505
+55488 72596
+55489 35599
+55490 56151
+55491 28790
+55492 53315
+55493 18616
+55494 62303
+55495 46802
+55496 55509
+55497 23516
+55498 57791
+55499 78831
+55500 61266
+55501 53182
+55502 76824
+55503 41054
+55504 34787
+55505 43020
+55506 10845
+55507 61208
+55508 55500
+55509 45091
+55510 48405
+55511 49777
+55512 27334
+55512 46660
+55513 78776
+55514 52326
+55515 29471
+55516 40182
+55517 2911
+55518 46505
+55519 37646
+55520 58406
+55521 55104
+55522 37303
+55523 50863
+55524 51593
+55525 78662
+55526 32900
+55527 59935
+55528 39486
+55529 77299
+55530 67129
+55531 55529
+55532 14919
+55533 6925
+55534 38102
+55535 80778
+55536 49777
+55537 40424
+55538 20809
+55539 21812
+55540 37645
+55541 65632
+55542 59389
+55543 59389
+55544 55037
+55545 27155
+55546 23516
+55547 78831
+55548 70920
+55549 50433
+55550 31250
+55551 35892
+55552 22007
+55553 33662
+55554 36870
+55555 41968
+55556 68972
+55557 19961
+55558 52037
+55559 55652
+55560 41054
+55561 76178
+55562 2436
+55563 30774
+55564 20795
+55565 39920
+55566 68807
+55567 79609
+55568 80903
+55569 43245
+55570 64721
+55571 69385
+55572 15785
+55573 45060
+55574 79254
+55575 77181
+55576 61487
+55577 61487
+55578 41922
+55579 62904
+55580 61544
+55581 23016
+55582 61294
+55583 28006
+55584 43259
+55585 33442
+55586 33559
+55587 60682
+55588 27155
+55589 23217
+55590 23516
+55591 78831
+55592 70920
+55593 54463
+55594 53217
+55595 22517
+55596 61509
+55597 47925
+55598 52970
+55599 40975
+55600 23864
+55601 55599
+55602 55599
+55603 24659
+55604 40060
+55605 53724
+55606 72217
+55607 63541
+55608 39008
+55609 77646
+55610 55132
+55611 67100
+55612 62782
+55613 67873
+55614 22782
+55615 55220
+55616 20792
+55617 44212
+55617 55618
+55618 21790
+55619 23221
+55620 21701
+55620 43745
+55621 22798
+55622 69337
+55623 22779
+55624 11734
+55625 22759
+55626 61016
+55627 40390
+55628 57064
+55629 51708
+55630 20901
+55631 55629
+55632 40175
+55633 55629
+55634 22807
+55634 49367
+55635 21817
+55636 27993
+55637 20794
+55637 24282
+55638 68199
+55639 36555
+55640 22799
+55641 72923
+55641 76060
+55642 31051
+55643 46345
+55644 31986
+55645 73397
+55646 22404
+55647 43153
+55648 12471
+55649 33498
+55650 27778
+55651 80883
+55652 41922
+55653 34729
+55654 25821
+55655 59970
+55656 70212
+55657 55662
+55657 79366
+55658 43810
+55659 53182
+55659 55662
+55660 54999
+55661 74979
+55662 78307
+55663 54876
+55663 55662
+55664 24091
+55665 30508
+55666 49918
+55667 65449
+55668 68807
+55669 22835
+55670 61001
+55671 23228
+55672 58742
+55673 64131
+55674 26587
+55675 47845
+55676 46500
+55677 73733
+55678 22758
+55679 5104
+55680 24927
+55681 69287
+55682 24592
+55683 42692
+55684 66486
+55685 71884
+55686 70788
+55687 63870
+55688 49866
+55689 57561
+55690 53182
+55691 71778
+55692 22083
+55693 21574
+55694 56022
+55694 77233
+55695 60495
+55696 22792
+55697 24567
+55698 26100
+55699 26101
+55700 20428
+55701 27803
+55702 20428
+55703 40618
+55704 68239
+55705 66056
+55706 856
+55707 26713
+55708 40877
+55709 39138
+55710 39141
+55711 39505
+55712 40592
+55713 29256
+55714 55715
+55715 41990
+55716 43298
+55717 44088
+55718 42856
+55719 57855
+55720 57856
+55721 55663
+55722 55602
+55723 28925
+55724 55659
+55725 55127
+55726 55037
+55727 25634
+55728 60040
+55729 14349
+55730 57903
+55731 39438
+55732 77159
+55733 36584
+55734 31009
+55735 22917
+55736 22502
+55737 54247
+55738 22362
+55739 41809
+55740 68818
+55741 66712
+55742 76483
+55743 45904
+55744 72588
+55745 72589
+55746 72596
+55747 72593
+55748 59178
+55749 68813
+55750 77779
+55751 63300
+55752 39463
+55753 51599
+55754 27104
+55755 37077
+55756 53174
+55757 72256
+55758 72257
+55759 39575
+55760 66260
+55761 61228
+55762 61228
+55763 61228
+55764 61228
+55765 61228
+55766 61228
+55767 61228
+55768 61228
+55769 61228
+55770 61228
+55771 61228
+55772 61228
+55773 28913
+55774 63136
+55775 63136
+55776 27019
+55777 5167
+55778 62679
+55779 25778
+55780 57833
+55781 37905
+55782 23286
+55783 62681
+55784 11311
+55785 58369
+55786 76475
+55787 30327
+55788 30332
+55789 31608
+55790 23654
+55791 30084
+55792 42071
+55793 55390
+55794 57372
+55795 75650
+55796 75771
+55797 76315
+55798 49777
+55799 2554
+55800 81028
+55801 45294
+55802 32713
+55803 26768
+55804 3600
+55805 45472
+55806 7577
+55807 68195
+55808 50658
+55809 48564
+55810 23864
+55811 62252
+55812 78833
+55813 28803
+55814 50124
+55815 3600
+55816 62681
+55817 62681
+55818 40612
+55819 61228
+55820 58520
+55821 43631
+55822 43631
+55823 36460
+55824 61228
+55825 73754
+55826 40561
+55827 66720
+55828 47258
+55829 77299
+55830 70409
+55831 56752
+55832 61086
+55833 40561
+55834 61238
+55835 60678
+55836 22517
+55837 53582
+55838 53582
+55839 13468
+55840 36791
+55841 57967
+55842 39707
+55843 1935
+55844 53182
+55845 4997
+55846 55657
+55847 22502
+55848 22848
+55849 73213
+55850 72550
+55851 43844
+55852 52119
+55853 57561
+55854 53182
+55855 53182
+55856 77020
+55857 37756
+55858 65645
+55859 77292
+55860 53182
+55861 67926
+55862 39290
+55863 78307
+55864 65632
+55865 15474
+55866 11482
+55867 51202
+55868 77773
+55869 40058
+55870 22254
+55871 4842
+55872 47174
+55873 21169
+55874 43104
+55875 79009
+55876 20581
+55877 21230
+55877 55897
+55878 23912
+55879 29249
+55880 30205
+55881 30337
+55882 30339
+55883 30559
+55884 4694
+55885 38518
+55886 43243
+55887 45746
+55888 45759
+55889 48485
+55890 41106
+55891 50264
+55892 50265
+55893 29030
+55894 51242
+55895 52382
+55896 11450
+55897 11312
+55898 53182
+55899 43104
+55900 43104
+55901 52307
+55902 62679
+55903 53446
+55904 65562
+55905 55874
+55906 24538
+55907 16765
+55908 63610
+55909 78284
+55910 78826
+55911 43101
+55912 27001
+55913 71766
+55914 28214
+55915 29064
+55916 31087
+55917 78688
+55918 76249
+55919 64723
+55920 64652
+55921 22519
+55922 37560
+55923 51537
+55924 2911
+55925 80860
+55926 79454
+55927 21375
+55928 54100
+55929 35740
+55930 73540
+55931 36452
+55932 38528
+55933 47665
+55934 55924
+55935 74119
+55936 12150
+55936 55937
+55937 80943
+55938 21405
+55939 60618
+55940 35765
+55941 59257
+55942 75978
+55943 22594
+55944 61228
+55945 7002
+55946 37955
+55947 69030
+55948 56022
+55949 18616
+55950 22150
+55951 26019
+55952 63712
+55953 65353
+55954 75632
+55955 23883
+55956 29256
+55957 55663
+55958 49796
+55959 18814
+55960 55659
+55961 63890
+55962 70264
+55963 47121
+55964 39177
+55965 52120
+55966 67138
+55967 67138
+55968 65562
+55969 32774
+55970 23532
+55971 22502
+55972 76483
+55973 63300
+55974 79362
+55975 63405
+55976 62950
+55977 33310
+55978 28410
+55979 17636
+55980 79856
+55981 80858
+55982 20006
+55983 45829
+55984 10845
+55985 69125
+55986 69354
+55987 20959
+55988 20901
+55989 38824
+55990 49305
+55991 37560
+55992 4169
+55993 49430
+55994 49306
+55995 20565
+55996 2911
+55997 56259
+55998 76945
+55999 58406
+56000 61811
+56001 33229
+56002 51607
+56003 65871
+56004 50260
+56005 58384
+56006 50263
+56007 49286
+56008 44056
+56009 54570
+56010 32909
+56011 33461
+56012 23949
+56013 40629
+56014 40846
+56015 36870
+56016 37699
+56017 60357
+56018 61845
+56019 60357
+56020 70152
+56021 50841
+56022 54972
+56023 51836
+56024 40962
+56025 51546
+56026 58860
+56027 57530
+56028 38539
+56029 50225
+56030 34247
+56031 68818
+56032 45063
+56033 40629
+56034 70152
+56035 56016
+56036 27188
+56037 27188
+56038 2917
+56038 41608
+56039 71589
+56040 33970
+56041 45629
+56042 62026
+56043 62974
+56044 68755
+56045 59990
+56046 70424
+56047 28212
+56048 56777
+56049 28488
+56050 28721
+56050 56051
+56051 29378
+56052 37211
+56053 2684
+56054 19068
+56055 23585
+56056 33517
+56057 23581
+56058 31880
+56059 36222
+56060 53094
+56061 66544
+56062 35714
+56063 36308
+56064 32955
+56065 39920
+56066 39130
+56067 36645
+56068 71017
+56069 40689
+56070 37356
+56071 64529
+56072 14080
+56073 63794
+56074 28241
+56075 45754
+56076 39732
+56077 74078
+56078 29378
+56078 60583
+56079 77527
+56080 43862
+56081 43866
+56082 57183
+56083 2911
+56084 35654
+56085 75882
+56086 72767
+56087 1640
+56088 41416
+56089 9831
+56090 33336
+56091 24671
+56092 30138
+56093 1422
+56094 56311
+56095 74252
+56096 59178
+56097 75771
+56098 77130
+56099 71598
+56100 41921
+56101 21382
+56101 52561
+56102 52581
+56103 78789
+56104 29995
+56105 61189
+56106 32956
+56107 78755
+56108 32956
+56109 24629
+56110 23484
+56111 47665
+56112 47666
+56113 29123
+56114 62289
+56115 33272
+56116 41547
+56117 34695
+56118 11484
+56119 58489
+56120 24674
+56121 35805
+56122 70583
+56123 30578
+56124 53703
+56125 62681
+56126 22502
+56127 58367
+56128 81075
+56129 46525
+56130 46857
+56131 25564
+56132 40603
+56133 81075
+56134 36856
+56135 65193
+56136 38633
+56137 46965
+56138 40561
+56139 49777
+56140 38403
+56141 59247
+56142 56162
+56143 27037
+56144 4204
+56145 37168
+56146 66259
+56147 36651
+56148 38083
+56149 53048
+56150 23434
+56151 19009
+56152 34733
+56153 47139
+56154 78270
+56155 23068
+56156 21149
+56157 56164
+56158 40292
+56159 20445
+56160 27786
+56161 64901
+56162 49163
+56163 37404
+56164 20955
+56165 56188
+56166 33569
+56167 34399
+56168 70342
+56169 40292
+56170 36035
+56171 34936
+56172 30611
+56173 37405
+56174 37404
+56175 72891
+56176 48019
+56177 31897
+56178 49253
+56179 68080
+56180 56164
+56181 27725
+56182 22636
+56183 22877
+56184 45748
+56185 24484
+56186 51515
+56187 49950
+56188 50417
+56189 30687
+56189 52382
+56190 34454
+56191 57372
+56192 56198
+56193 49777
+56194 47139
+56195 56152
+56196 47139
+56197 47139
+56198 47139
+56199 47139
+56200 40297
+56201 64181
+56202 4169
+56203 56188
+56204 63477
+56205 76269
+56206 23345
+56206 64114
+56207 23345
+56208 57580
+56209 58238
+56210 59179
+56211 80902
+56212 43622
+56213 43622
+56214 30610
+56215 75456
+56216 66499
+56217 23960
+56218 72302
+56219 73125
+56220 80428
+56221 42925
+56222 56162
+56223 76580
+56224 60344
+56225 60344
+56226 60344
+56227 28790
+56228 41906
+56229 2474
+56230 66554
+56231 60722
+56232 53831
+56232 80778
+56233 68794
+56234 39730
+56235 77422
+56236 20596
+56237 51069
+56238 74527
+56239 47262
+56240 46882
+56241 47665
+56242 22812
+56243 31445
+56244 59381
+56245 21404
+56246 22763
+56247 30163
+56248 73279
+56248 78676
+56249 23903
+56250 78676
+56251 59972
+56252 45407
+56253 32648
+56254 36244
+56255 33229
+56256 32582
+56257 49777
+56258 28180
+56259 21700
+56260 39143
+56261 21493
+56262 54769
+56263 55578
+56264 58479
+56265 60532
+56266 25854
+56267 39494
+56268 51607
+56269 27461
+56270 41471
+56271 20680
+56272 55037
+56273 54888
+56274 43117
+56275 36944
+56276 55629
+56277 40819
+56278 65663
+56279 77387
+56280 35120
+56281 29240
+56282 48627
+56282 77090
+56283 64979
+56284 71593
+56285 23707
+56286 62808
+56287 70219
+56288 51878
+56289 52460
+56290 42553
+56291 9399
+56292 36708
+56293 29575
+56294 56315
+56295 28173
+56296 22469
+56297 2911
+56298 71973
+56299 47802
+56300 59505
+56301 21146
+56302 23063
+56303 24185
+56304 53613
+56305 74863
+56306 53626
+56307 45843
+56308 69578
+56309 77340
+56310 33273
+56311 37081
+56312 24199
+56313 43213
+56314 23739
+56315 66641
+56316 52382
+56317 66647
+56318 34812
+56319 69032
+56320 29735
+56321 39494
+56322 20255
+56323 43990
+56324 36379
+56325 33773
+56325 57534
+56326 36222
+56327 62791
+56328 38533
+56329 50015
+56330 63682
+56331 63682
+56332 55194
+56333 14919
+56334 49777
+56335 24640
+56336 31185
+56337 40188
+56338 50943
+56339 76494
+56340 44474
+56341 60722
+56342 23581
+56343 49504
+56344 21009
+56345 36130
+56346 64251
+56347 71302
+56348 33970
+56349 45843
+56350 708
+56351 54895
+56352 33665
+56353 56332
+56354 41125
+56355 27561
+56356 27155
+56357 81315
+56358 60570
+56359 77216
+56360 22003
+56361 32977
+56362 33134
+56363 33069
+56364 50247
+56365 20499
+56366 32229
+56367 32231
+56368 20666
+56369 41054
+56370 46741
+56371 71598
+56372 41054
+56373 80116
+56374 80113
+56375 61147
+56376 54185
+56377 38082
+56378 35601
+56379 33179
+56380 74964
+56381 26229
+56382 51587
+56383 75078
+56384 37428
+56385 43844
+56386 79987
+56387 62533
+56388 68165
+56389 36208
+56390 68508
+56391 26591
+56392 50109
+56393 34925
+56394 67490
+56395 67490
+56396 22110
+56397 26100
+56398 26101
+56399 43257
+56400 44447
+56401 11589
+56402 28245
+56403 46846
+56404 41054
+56405 69866
+56406 81080
+56407 54349
+56408 34940
+56409 76817
+56410 60806
+56411 23010
+56412 70995
+56413 56412
+56414 50569
+56415 41299
+56416 44496
+56417 5118
+56418 70017
+56419 22517
+56420 47665
+56421 56022
+56422 55563
+56423 21896
+56424 43718
+56425 39191
+56426 43103
+56427 73147
+56428 56426
+56429 49837
+56429 56426
+56430 56125
+56431 56125
+56432 49459
+56433 61686
+56434 64306
+56435 23868
+56436 8836
+56437 55727
+56438 59180
+56439 61493
+56440 19009
+56441 47253
+56441 67876
+56442 35799
+56443 49194
+56444 67247
+56445 24106
+56446 47665
+56447 31860
+56448 46629
+56449 23610
+56450 56022
+56451 55727
+56452 39137
+56453 39141
+56454 78307
+56455 64187
+56456 55243
+56457 79927
+56458 35428
+56459 25709
+56460 34634
+56461 49777
+56462 33169
+56463 54715
+56464 38345
+56465 43837
+56466 38449
+56467 56468
+56468 29301
+56469 64113
+56470 20854
+56471 53754
+56472 12276
+56473 26209
+56473 77591
+56474 79300
+56475 62892
+56476 43844
+56477 37955
+56478 63978
+56479 64090
+56480 58667
+56481 41054
+56482 63815
+56483 21095
+56484 62397
+56485 36957
+56486 51867
+56487 23185
+56488 68266
+56489 50624
+56490 22135
+56491 56490
+56492 22781
+56493 20792
+56494 56507
+56495 62290
+56496 32484
+56497 32481
+56498 59993
+56499 10474
+56500 43246
+56501 22764
+56502 22467
+56503 41299
+56504 44496
+56505 70560
+56506 35339
+56507 52761
+56508 52760
+56509 74893
+56510 54966
+56511 19009
+56512 23623
+56513 44439
+56514 74860
+56515 77339
+56516 56511
+56517 4809
+56518 4810
+56519 48814
+56520 80991
+56521 49777
+56522 17636
+56523 61189
+56524 52038
+56525 52038
+56526 20962
+56527 14070
+56528 70478
+56529 33086
+56530 57867
+56531 74968
+56532 57106
+56533 21630
+56534 42881
+56535 60095
+56536 69485
+56537 38108
+56538 26923
+56539 54714
+56540 65449
+56541 35225
+56542 29430
+56543 31597
+56544 42553
+56545 31249
+56546 41779
+56547 80883
+56548 75965
+56549 25649
+56550 58369
+56551 78417
+56552 33559
+56553 64359
+56554 75418
+56555 78046
+56556 78386
+56557 59819
+56558 21080
+56559 80542
+56560 65483
+56561 65452
+56561 80542
+56562 49282
+56563 41731
+56564 52819
+56565 79003
+56566 54418
+56567 79880
+56568 29483
+56569 76483
+56570 21384
+56571 69686
+56572 70867
+56573 28438
+56574 35197
+56575 37579
+56576 25603
+56577 37763
+56578 37701
+56579 80991
+56580 24216
+56580 79254
+56581 22519
+56582 47665
+56583 69178
+56584 67471
+56585 55196
+56586 25377
+56587 71676
+56588 56649
+56589 80926
+56590 79125
+56591 41580
+56591 77232
+56592 35807
+56593 79488
+56594 45913
+56595 41547
+56596 66086
+56597 44018
+56598 66086
+56599 53134
+56600 22372
+56601 76945
+56602 54622
+56603 29754
+56604 4694
+56605 46220
+56606 56048
+56607 80926
+56608 41607
+56609 41054
+56610 5751
+56611 30351
+56612 49577
+56613 47201
+56614 38869
+56615 63863
+56616 64462
+56617 49942
+56618 27255
+56619 11670
+56620 78666
+56621 61539
+56622 64979
+56623 38403
+56624 61543
+56625 66273
+56626 36414
+56627 20398
+56628 39219
+56629 49583
+56630 32295
+56631 64979
+56632 33078
+56632 61817
+56633 37703
+56634 32478
+56635 41054
+56636 57097
+56637 71987
+56638 71989
+56639 33813
+56640 25800
+56640 77232
+56641 23290
+56642 28241
+56643 47533
+56644 51331
+56645 61228
+56646 33714
+56647 23958
+56648 38467
+56649 79125
+56650 53448
+56651 57556
+56652 62263
+56653 66875
+56654 56577
+56655 49255
+56656 43020
+56657 66313
+56658 16493
+56659 52051
+56660 22300
+56660 59211
+56661 36928
+56662 67869
+56663 26101
+56664 45838
+56665 73906
+56666 45075
+56667 21881
+56668 52049
+56669 36760
+56670 42965
+56671 42964
+56672 5165
+56673 71302
+56674 39895
+56675 17010
+56676 49425
+56677 20969
+56678 47829
+56679 28249
+56680 79003
+56681 23576
+56682 29240
+56683 69328
+56684 30353
+56685 53483
+56686 36245
+56687 34836
+56688 36098
+56689 70974
+56690 69438
+56691 48092
+56692 51069
+56693 39651
+56694 35338
+56695 61858
+56696 33274
+56697 69793
+56698 62194
+56699 37374
+56700 26262
+56701 68954
+56702 76817
+56703 28130
+56704 54641
+56705 21376
+56706 70620
+56707 41299
+56708 44496
+56709 61557
+56710 33517
+56711 68566
+56712 60492
+56713 60612
+56714 61657
+56715 4701
+56716 25515
+56717 33078
+56718 52677
+56719 52587
+56720 56973
+56721 59317
+56722 1787
+56723 60367
+56724 81177
+56725 58944
+56726 20360
+56727 50160
+56728 17237
+56729 35928
+56730 12079
+56731 11257
+56732 49527
+56732 56723
+56733 27484
+56734 70069
+56735 30157
+56736 80778
+56737 49777
+56738 47628
+56739 53468
+56740 57521
+56741 51570
+56742 47665
+56743 36791
+56744 49166
+56745 49163
+56746 58674
+56747 56283
+56748 30508
+56749 46965
+56750 73104
+56751 64237
+56752 30508
+56753 29008
+56754 41990
+56755 21521
+56755 57556
+56756 73104
+56757 64459
+56758 33273
+56759 20895
+56760 44193
+56761 41054
+56762 33989
+56763 54100
+56764 21403
+56765 22927
+56766 34245
+56767 33769
+56768 53671
+56769 57781
+56770 57782
+56771 53892
+56771 58860
+56772 42580
+56773 80159
+56774 69471
+56775 26954
+56776 63986
+56777 56774
+56778 58835
+56779 35605
+56780 77299
+56781 38581
+56782 38574
+56783 49442
+56784 80158
+56785 54572
+56786 17385
+56787 32473
+56788 54740
+56789 40887
+56790 56831
+56791 63136
+56792 48405
+56793 39556
+56794 56843
+56795 52119
+56796 22468
+56797 40500
+56798 23626
+56799 74119
+56800 67490
+56801 25891
+56802 26493
+56803 67490
+56804 31771
+56805 12242
+56806 22468
+56807 29897
+56808 41666
+56809 43366
+56810 45505
+56811 45723
+56812 47407
+56813 47594
+56814 54438
+56815 51878
+56816 51291
+56817 53059
+56818 28621
+56819 80806
+56820 54622
+56821 47665
+56822 22691
+56823 67490
+56824 4830
+56825 80514
+56826 60520
+56827 67135
+56828 2911
+56829 67621
+56830 68387
+56831 80499
+56832 22018
+56833 71004
+56834 72514
+56835 40500
+56836 75733
+56837 77084
+56838 81332
+56839 21205
+56839 31775
+56840 70499
+56841 30687
+56842 70974
+56843 43420
+56844 78268
+56845 71906
+56846 68081
+56847 58567
+56848 38284
+56849 24725
+56850 67490
+56851 49777
+56852 39493
+56853 47178
+56854 29601
+56855 43114
+56856 28663
+56857 57800
+56858 54938
+56859 38084
+56860 77269
+56861 54522
+56862 37579
+56863 17849
+56864 37579
+56865 76671
+56866 41054
+56867 67263
+56868 59150
+56869 44130
+56870 43246
+56871 39065
+56872 50421
+56873 59151
+56874 48092
+56875 42266
+56876 33639
+56877 71302
+56878 23015
+56879 22918
+56880 20831
+56881 72614
+56882 77763
+56883 22918
+56884 55135
+56885 56283
+56886 25014
+56887 41505
+56888 33228
+56889 30508
+56890 62425
+56891 33078
+56892 20927
+56893 30508
+56894 80943
+56895 59435
+56896 77299
+56897 32955
+56898 64127
+56899 72248
+56900 36963
+56901 44036
+56902 40799
+56903 78688
+56904 30740
+56905 18616
+56906 52727
+56907 52119
+56908 54248
+56909 29462
+56910 46505
+56911 45465
+56912 36899
+56913 40873
+56914 52592
+56915 45465
+56916 62912
+56917 44439
+56918 56385
+56919 55351
+56920 2911
+56921 69283
+56922 71068
+56923 1935
+56924 27817
+56925 72325
+56926 60357
+56927 38737
+56928 4204
+56929 62978
+56930 68177
+56931 37512
+56932 77935
+56933 65234
+56934 41642
+56935 48635
+56936 45116
+56937 45525
+56938 52032
+56939 27732
+56940 22599
+56941 46931
+56942 60892
+56943 51498
+56944 20831
+56945 68660
+56946 51243
+56947 31537
+56948 33639
+56949 38538
+56950 23933
+56951 41943
+56952 40877
+56953 79076
+56954 67397
+56955 48712
+56956 1413
+56957 80984
+56958 79934
+56959 12570
+56960 43101
+56961 12570
+56961 68759
+56962 8524
+56963 43718
+56964 2178
+56965 64307
+56966 40229
+56967 71218
+56968 80514
+56969 36265
+56970 2911
+56971 74725
+56972 80595
+56973 47665
+56974 42267
+56975 61147
+56976 27375
+56976 61147
+56977 73336
+56978 71973
+56979 71202
+56980 67138
+56981 24791
+56982 65975
+56983 56993
+56984 37955
+56985 64099
+56986 21630
+56987 67621
+56988 77216
+56989 64028
+56990 34206
+56991 57867
+56992 57253
+56993 57012
+56994 73043
+56995 24668
+56996 75539
+56997 59180
+56998 39493
+56999 58489
+57000 23339
+57001 46377
+57002 50558
+57003 54248
+57004 41921
+57005 58489
+57006 35900
+57007 37211
+57008 40682
+57009 61228
+57010 64114
+57011 57004
+57012 73149
+57013 78336
+57014 79287
+57015 69267
+57016 78596
+57017 30946
+57018 40050
+57019 30863
+57020 45193
+57021 51495
+57022 33273
+57023 39624
+57024 27000
+57025 49876
+57026 58393
+57027 30864
+57028 52587
+57029 2437
+57030 53532
+57031 58371
+57032 21111
+57032 78497
+57033 44315
+57034 76583
+57035 50212
+57036 23357
+57037 49824
+57038 7577
+57039 36265
+57040 52689
+57041 59993
+57042 59990
+57043 49740
+57044 33258
+57045 57305
+57046 74598
+57047 79076
+57048 53312
+57049 47139
+57050 35160
+57051 48835
+57052 67490
+57053 78056
+57054 68803
+57055 22519
+57056 46476
+57057 45910
+57058 45909
+57059 33721
+57060 22534
+57061 28334
+57062 24081
+57063 71833
+57064 66453
+57065 38721
+57066 74968
+57067 76722
+57068 61702
+57069 23516
+57070 78831
+57071 74968
+57072 20387
+57073 20387
+57074 20387
+57075 20387
+57076 21050
+57077 21050
+57078 21050
+57079 21050
+57080 23551
+57081 23551
+57082 25885
+57083 70919
+57084 71386
+57085 72345
+57086 72345
+57087 24530
+57088 58651
+57089 36671
+57090 11592
+57091 48516
+57092 69625
+57093 51107
+57094 77299
+57095 71712
+57096 21375
+57097 25104
+57098 31943
+57099 78816
+57100 22372
+57101 73539
+57102 8821
+57103 43013
+57104 68508
+57105 70503
+57106 24029
+57107 71939
+57108 20955
+57109 71939
+57110 50200
+57111 34976
+57112 20570
+57113 48579
+57114 78755
+57115 52717
+57116 57107
+57117 60202
+57118 33521
+57119 33522
+57120 65262
+57121 73540
+57122 75456
+57123 41987
+57123 62418
+57124 30946
+57125 65833
+57126 13547
+57127 58362
+57128 59394
+57129 24034
+57130 61186
+57130 61190
+57131 71731
+57132 76447
+57133 71952
+57134 61189
+57135 23581
+57136 23484
+57137 66264
+57138 68759
+57139 48695
+57140 69283
+57141 68711
+57142 73577
+57143 36265
+57144 51299
+57145 54438
+57146 27434
+57147 67621
+57148 76138
+57149 56932
+57150 61869
+57151 61872
+57152 57225
+57153 49865
+57154 23410
+57155 64066
+57156 23418
+57157 55333
+57158 55332
+57159 43862
+57160 67490
+57161 35754
+57162 41054
+57163 76251
+57164 81406
+57165 70086
+57166 26307
+57167 57621
+57168 45916
+57169 72945
+57170 46682
+57171 35361
+57172 57170
+57173 62965
+57174 47665
+57175 35144
+57176 33272
+57177 35145
+57178 62726
+57178 78990
+57179 58860
+57180 62346
+57181 68508
+57182 42553
+57183 29599
+57184 44315
+57185 67521
+57186 67510
+57187 61477
+57188 30526
+57189 21403
+57190 30049
+57191 25634
+57192 22517
+57193 41125
+57194 22002
+57195 22002
+57196 53308
+57197 36028
+57198 20831
+57199 74670
+57200 33273
+57201 78167
+57202 50037
+57203 49777
+57204 15490
+57205 65850
+57206 2911
+57207 58463
+57208 71941
+57209 17385
+57210 31152
+57211 71445
+57212 75172
+57213 53634
+57214 43829
+57215 49799
+57216 13570
+57217 66721
+57218 68541
+57219 74879
+57220 65921
+57221 65921
+57222 60857
+57223 41067
+57224 33575
+57225 42168
+57226 72280
+57227 80926
+57228 59970
+57229 24119
+57229 37561
+57230 61702
+57231 62304
+57232 40498
+57233 27344
+57234 27346
+57235 22763
+57236 39065
+57237 39067
+57238 40498
+57239 62308
+57240 37240
+57240 66260
+57241 38633
+57242 36298
+57243 57833
+57244 36928
+57245 49918
+57246 52761
+57247 52760
+57248 52761
+57249 52760
+57250 41774
+57251 20051
+57252 67500
+57253 54426
+57254 26209
+57255 57791
+57256 49904
+57257 39176
+57258 39176
+57259 73076
+57260 29532
+57261 29500
+57262 34712
+57263 40148
+57264 17664
+57265 47610
+57266 74893
+57267 45924
+57268 61704
+57269 25759
+57270 49918
+57271 71386
+57272 44116
+57273 60685
+57274 79263
+57275 22128
+57276 68441
+57277 45375
+57278 49918
+57279 59178
+57280 76722
+57281 57280
+57282 38952
+57283 52119
+57284 52120
+57285 55663
+57286 55659
+57287 23532
+57288 59178
+57289 59178
+57290 59178
+57291 68498
+57292 25634
+57293 62290
+57294 46512
+57295 49575
+57296 22468
+57297 61269
+57298 22468
+57299 72032
+57300 69002
+57301 12978
+57302 53051
+57303 70760
+57304 61316
+57305 73594
+57306 38403
+57307 25649
+57308 41203
+57309 76094
+57310 23560
+57311 20955
+57312 21532
+57313 73594
+57314 49282
+57315 56562
+57315 57314
+57316 40819
+57317 66826
+57318 20724
+57319 71591
+57320 49057
+57321 40498
+57322 25759
+57323 63413
+57324 22519
+57325 72596
+57326 22537
+57327 69524
+57328 45759
+57329 54487
+57330 72747
+57331 35660
+57332 40752
+57333 58269
+57334 39789
+57335 76872
+57336 31944
+57337 30145
+57338 25821
+57339 61024
+57340 51761
+57341 33442
+57342 23165
+57343 79778
+57344 50071
+57345 48396
+57346 41424
+57347 53182
+57348 79535
+57349 48092
+57350 34268
+57350 39763
+57351 76879
+57352 28105
+57353 80926
+57354 41946
+57355 36208
+57356 27339
+57357 57162
+57358 13071
+57359 64979
+57360 41006
+57361 43303
+57362 59260
+57363 33273
+57364 71587
+57365 18616
+57366 81338
+57367 22759
+57368 57426
+57369 57426
+57370 57426
+57371 38143
+57372 52051
+57373 68323
+57374 66685
+57375 41297
+57376 55427
+57377 36280
+57378 68156
+57379 14993
+57380 75079
+57381 21375
+57382 62372
+57383 49777
+57384 49777
+57385 72268
+57386 22404
+57387 41054
+57388 51349
+57388 80778
+57389 45503
+57390 55663
+57391 55659
+57392 70841
+57393 20428
+57394 76483
+57395 39924
+57396 63300
+57397 61228
+57398 75914
+57399 76178
+57400 71137
+57401 44213
+57402 65828
+57403 57458
+57403 78787
+57404 48832
+57404 71830
+57405 48832
+57406 50477
+57407 61504
+57408 75013
+57409 48317
+57410 76002
+57411 77340
+57412 58269
+57413 58269
+57414 30861
+57415 2911
+57416 52307
+57417 69485
+57418 61347
+57419 45056
+57420 48966
+57421 70478
+57422 71883
+57423 78175
+57424 75813
+57425 38633
+57426 22676
+57427 34793
+57428 31973
+57429 59150
+57430 49964
+57431 33660
+57432 20690
+57433 69287
+57434 71942
+57435 80514
+57436 42432
+57437 79786
+57438 80244
+57439 50470
+57440 44322
+57440 65446
+57441 45617
+57442 54673
+57443 34021
+57444 21624
+57445 33367
+57446 36220
+57447 30523
+57448 27698
+57449 53097
+57450 63118
+57451 7955
+57452 80119
+57453 33547
+57454 27155
+57455 29214
+57456 30084
+57457 33210
+57457 77863
+57458 36204
+57459 55150
+57460 69656
+57461 64981
+57462 23552
+57463 34729
+57464 78831
+57465 43112
+57466 29071
+57467 30084
+57468 39884
+57469 78367
+57470 29582
+57471 49777
+57472 22712
+57473 32671
+57474 31487
+57474 3294
+57475 30205
+57476 36094
+57477 36097
+57478 78661
+57479 71599
+57480 55363
+57481 13993
+57482 16751
+57483 53886
+57484 37955
+57485 22088
+57486 37955
+57487 57471
+57488 21235
+57489 52382
+57489 57488
+57490 63133
+57491 61086
+57492 46347
+57493 30508
+57494 73104
+57495 49777
+57496 70677
+57497 35890
+57498 2911
+57499 52037
+57500 29275
+57501 2911
+57502 29275
+57503 17385
+57504 64979
+57505 71602
+57506 61541
+57507 61539
+57508 74893
+57509 81341
+57510 77702
+57511 20777
+57512 57127
+57513 29846
+57514 23147
+57515 30954
+57516 26208
+57517 41752
+57518 45310
+57519 68807
+57520 49345
+57521 52037
+57522 49959
+57523 23069
+57524 53598
+57525 58489
+57526 78311
+57527 4751
+57528 61509
+57529 62306
+57529 66759
+57530 66789
+57531 68807
+57532 43215
+57533 75980
+57534 29514
+57535 61541
+57536 23585
+57537 61539
+57538 26100
+57539 57543
+57540 63976
+57541 36100
+57542 21149
+57543 64979
+57544 53048
+57545 64979
+57546 30046
+57547 4751
+57548 77112
+57549 78033
+57550 50093
+57551 41203
+57552 76002
+57553 77340
+57554 41157
+57555 72243
+57556 74893
+57557 37575
+57558 18211
+57559 35808
+57560 3707
+57561 53182
+57562 74072
+57563 20581
+57564 55878
+57565 25275
+57566 26681
+57567 21949
+57568 59179
+57569 30643
+57570 57576
+57571 39924
+57572 40234
+57573 57580
+57574 55890
+57575 57580
+57576 55897
+57577 57572
+57578 70161
+57579 43101
+57580 57035
+57581 23285
+57582 62679
+57583 3601
+57584 74738
+57585 64979
+57586 37406
+57587 70171
+57588 39732
+57589 52971
+57590 50196
+57591 74965
+57592 58836
+57593 21604
+57594 21206
+57595 16756
+57596 25045
+57597 32735
+57598 70183
+57599 57684
+57600 58694
+57601 36560
+57602 47876
+57603 40807
+57604 25854
+57605 56185
+57606 24222
+57607 70560
+57608 70494
+57609 22529
+57610 76374
+57611 31681
+57612 70750
+57613 43261
+57614 74893
+57615 31943
+57616 60642
+57617 68817
+57618 31944
+57619 61539
+57620 36483
+57621 76088
+57622 5752
+57623 35503
+57624 59151
+57625 27531
+57626 40711
+57627 78756
+57628 24720
+57629 34767
+57630 53830
+57631 51391
+57632 51000
+57633 18616
+57634 36208
+57635 57624
+57636 31939
+57637 57638
+57638 44193
+57639 5191
+57640 70995
+57641 22598
+57642 53328
+57643 54076
+57644 37892
+57645 54185
+57646 37887
+57647 39067
+57648 14070
+57649 39987
+57650 49920
+57651 69283
+57652 43713
+57653 43718
+57654 39191
+57655 62303
+57656 57621
+57657 62997
+57658 64979
+57659 62711
+57660 49441
+57661 74002
+57662 26121
+57663 52402
+57664 72390
+57665 2911
+57666 75564
+57667 62513
+57668 51823
+57669 39649
+57670 2911
+57671 4747
+57672 46902
+57673 54359
+57674 62993
+57675 18616
+57676 59382
+57677 69351
+57678 57833
+57679 40583
+57680 22781
+57681 73125
+57682 36561
+57683 64240
+57684 36560
+57685 41990
+57686 30607
+57687 30805
+57688 34207
+57689 41557
+57690 49178
+57691 14775
+57692 14773
+57693 66411
+57694 50086
+57695 24610
+57696 62756
+57697 64979
+57698 22191
+57699 36185
+57700 29555
+57701 29556
+57702 49777
+57703 80781
+57704 50198
+57705 20955
+57706 32909
+57707 57706
+57708 2911
+57709 79125
+57710 56972
+57711 35197
+57712 49777
+57713 58614
+57714 69289
+57715 32913
+57716 49699
+57717 43587
+57718 25634
+57719 61716
+57720 80970
+57721 47665
+57722 5129
+57723 23586
+57723 48695
+57724 21235
+57725 32463
+57726 33516
+57727 33517
+57728 55563
+57729 40892
+57730 52826
+57731 52828
+57732 76759
+57733 52808
+57734 22763
+57734 22848
+57735 30774
+57735 58134
+57736 51957
+57737 5194
+57738 50285
+57739 36071
+57740 76475
+57741 24311
+57742 60901
+57743 30328
+57744 70760
+57745 62290
+57746 60682
+57747 71833
+57748 67806
+57749 23585
+57750 22768
+57751 40593
+57752 73104
+57753 56022
+57754 56022
+57755 51571
+57756 55608
+57757 55132
+57758 59970
+57759 20415
+57760 22215
+57761 51479
+57762 57764
+57763 36995
+57764 53359
+57765 55223
+57766 77779
+57767 64131
+57768 51479
+57769 74926
+57770 49593
+57771 76975
+57772 23591
+57773 37553
+57774 49461
+57775 55563
+57776 57778
+57777 58748
+57778 69178
+57779 57778
+57780 58860
+57781 41399
+57782 71833
+57783 3602
+57784 57795
+57785 39808
+57786 57784
+57787 41752
+57788 21404
+57788 62726
+57789 46381
+57790 80297
+57791 62507
+57792 64462
+57793 63167
+57794 27724
+57795 37645
+57796 57794
+57797 74968
+57798 22534
+57799 37701
+57800 57526
+57801 46533
+57802 66908
+57803 44110
+57804 43882
+57805 43827
+57806 36942
+57807 69797
+57808 26157
+57809 62174
+57810 81303
+57811 77269
+57812 49619
+57813 45495
+57814 44065
+57815 40405
+57816 57157
+57817 57158
+57818 49619
+57819 34542
+57820 79952
+57821 79992
+57822 45708
+57823 68728
+57824 32903
+57825 74965
+57826 74965
+57827 72228
+57828 61086
+57829 68717
+57830 23217
+57831 33132
+57832 15589
+57833 73907
+57834 39155
+57835 59970
+57836 57794
+57837 70478
+57838 20415
+57839 25759
+57840 49918
+57841 22362
+57842 26100
+57843 26101
+57844 39656
+57845 54426
+57846 59385
+57847 36721
+57848 54426
+57849 40182
+57850 26081
+57851 77824
+57852 24164
+57852 56513
+57853 36928
+57854 26492
+57855 50445
+57856 71833
+57857 48358
+57858 29769
+57859 53215
+57859 57874
+57860 53220
+57861 72218
+57862 55216
+57863 55223
+57864 77824
+57865 26689
+57866 74895
+57867 60685
+57868 57873
+57868 61704
+57869 62360
+57870 55223
+57871 50105
+57872 68441
+57873 57843
+57874 57842
+57875 37817
+57876 74550
+57877 59178
+57878 63411
+57879 70478
+57880 5320
+57881 76975
+57882 57846
+57883 77646
+57884 44385
+57885 73316
+57886 49777
+57887 43152
+57888 21235
+57889 58190
+57890 59872
+57891 30786
+57892 58485
+57893 36845
+57894 58485
+57895 42120
+57896 52689
+57897 58457
+57898 23870
+57899 42847
+57900 34188
+57900 50635
+57901 73043
+57902 52766
+57903 52761
+57904 49092
+57905 49284
+57906 58193
+57907 39551
+57907 44439
+57908 23185
+57909 34986
+57910 64537
+57911 63889
+57912 61488
+57913 30212
+57914 78497
+57915 23449
+57916 14920
+57917 32541
+57918 54966
+57919 32081
+57920 21380
+57921 49950
+57922 27948
+57923 49950
+57924 50320
+57925 21395
+57926 23542
+57927 46965
+57928 50809
+57929 61629
+57930 70276
+57931 27947
+57931 57923
+57932 22600
+57933 20692
+57934 63686
+57935 64542
+57936 64025
+57937 60202
+57938 21002
+57939 32547
+57940 34975
+57940 57939
+57941 39204
+57942 51104
+57943 41057
+57944 57932
+57945 70320
+57946 72879
+57947 58826
+57948 65772
+57949 72958
+57950 66633
+57951 21405
+57952 66432
+57953 69698
+57954 2219
+57955 20217
+57956 1663
+57957 62687
+57958 33143
+57959 26267
+57960 26270
+57961 50658
+57962 20728
+57963 34547
+57964 62463
+57965 37169
+57966 62181
+57967 39789
+57968 33273
+57969 63903
+57970 35505
+57971 55563
+57972 32320
+57973 42348
+57974 21894
+57975 20728
+57976 28014
+57977 21894
+57978 21896
+57979 23014
+57980 57372
+57981 32246
+57982 32246
+57983 21811
+57983 62308
+57983 78787
+57984 38635
+57985 50477
+57986 64316
+57987 57800
+57988 51572
+57989 28878
+57990 11894
+57991 42747
+57992 48019
+57993 61228
+57994 61228
+57995 76483
+57996 35841
+57997 6477
+57998 61228
+57999 28790
+58000 28790
+58001 28790
+58002 52971
+58003 42309
+58004 73550
+58005 2042
+58006 26157
+58007 34942
+58008 59595
+58009 47722
+58010 2911
+58011 38142
+58012 75546
+58013 53457
+58014 49783
+58015 14894
+58016 58006
+58017 21443
+58018 68763
+58019 70112
+58020 70115
+58021 32524
+58022 54614
+58023 38404
+58024 70560
+58025 79692
+58026 38528
+58027 29240
+58028 44054
+58029 45515
+58030 22254
+58031 37862
+58032 38453
+58033 80860
+58034 58035
+58035 31939
+58036 80902
+58037 31389
+58038 34406
+58039 68323
+58040 37955
+58041 36472
+58042 22346
+58043 58257
+58044 22691
+58045 75010
+58046 50263
+58047 7577
+58048 31944
+58049 70750
+58050 37202
+58051 72628
+58052 32320
+58053 27477
+58054 1785
+58055 27471
+58056 52120
+58057 65562
+58058 36103
+58059 36103
+58060 76475
+58061 65562
+58062 52120
+58063 55447
+58064 31608
+58065 54815
+58066 41054
+58067 65562
+58068 32774
+58069 56022
+58070 55563
+58071 71302
+58072 26267
+58072 31817
+58073 60073
+58074 66671
+58075 29241
+58076 70105
+58077 12571
+58078 41087
+58079 53935
+58080 39261
+58081 34977
+58082 33086
+58083 58094
+58084 25778
+58085 20792
+58086 40498
+58087 44212
+58088 33086
+58089 30784
+58090 59814
+58091 46345
+58092 58094
+58093 46345
+58094 24459
+58095 59385
+58096 56022
+58097 75481
+58098 43870
+58099 22759
+58100 24566
+58101 59389
+58102 37332
+58102 44212
+58103 59389
+58104 33086
+58105 57423
+58106 59819
+58106 62839
+58107 77470
+58108 40069
+58109 40498
+58110 20792
+58111 50005
+58112 18616
+58113 57684
+58114 30774
+58115 51806
+58116 23282
+58117 39811
+58118 25067
+58119 73439
+58120 72076
+58121 7743
+58122 81080
+58123 33717
+58124 70877
+58125 27472
+58126 24144
+58127 23282
+58128 10247
+58129 22087
+58130 39584
+58131 48278
+58132 63133
+58133 74237
+58134 30774
+58134 44212
+58135 55563
+58136 58130
+58137 38869
+58138 37321
+58139 56718
+58140 55759
+58141 39322
+58142 33078
+58143 45117
+58144 49606
+58145 80514
+58146 80479
+58147 15151
+58148 33472
+58149 62679
+58150 30145
+58151 71791
+58152 58151
+58153 62305
+58154 48748
+58155 61936
+58156 26664
+58157 27829
+58158 71941
+58159 3076
+58160 49634
+58161 50710
+58162 33273
+58163 22242
+58164 62841
+58165 65140
+58166 36942
+58167 71938
+58168 78090
+58169 40045
+58170 22660
+58171 78090
+58172 26182
+58173 3601
+58174 60716
+58175 23534
+58176 35773
+58177 61541
+58178 61539
+58179 59300
+58180 23081
+58181 33273
+58182 29766
+58183 56895
+58184 66641
+58185 66499
+58186 45072
+58187 40799
+58188 41950
+58189 40237
+58190 46347
+58191 62290
+58192 39143
+58193 66980
+58194 4842
+58195 52038
+58196 55369
+58197 51123
+58198 66628
+58199 33222
+58200 49426
+58201 66421
+58202 20895
+58203 58948
+58204 43152
+58205 62875
+58206 71598
+58207 41125
+58208 58209
+58209 46347
+58210 73104
+58211 62841
+58212 2437
+58213 62811
+58214 80883
+58215 11312
+58216 55897
+58217 47692
+58218 60722
+58219 37461
+58220 78359
+58221 41157
+58222 42044
+58223 49777
+58224 59389
+58225 43829
+58226 55300
+58227 19547
+58228 48564
+58229 16753
+58230 49835
+58231 29193
+58232 40561
+58233 58210
+58234 63367
+58235 36706
+58236 64268
+58237 78521
+58238 59394
+58239 43152
+58240 37779
+58241 68728
+58242 49777
+58243 30774
+58244 58221
+58245 20480
+58246 73147
+58247 73152
+58248 17850
+58249 31090
+58250 49777
+58251 49777
+58252 26157
+58253 49777
+58254 59395
+58255 24843
+58256 64694
+58257 49777
+58258 49777
+58259 46347
+58260 74094
+58261 72794
+58262 49777
+58263 29659
+58264 49870
+58265 32473
+58266 78521
+58267 65234
+58268 59385
+58269 22749
+58270 42615
+58271 64777
+58272 22781
+58273 37733
+58274 25634
+58275 50263
+58276 49777
+58277 60612
+58278 66908
+58279 36856
+58280 48564
+58281 53729
+58282 63775
+58283 28790
+58284 29974
+58284 56491
+58284 78787
+58285 64085
+58286 64085
+58287 23185
+58288 64085
+58289 79856
+58290 34972
+58291 35461
+58292 37794
+58293 49608
+58294 51214
+58295 33273
+58296 40788
+58297 33393
+58298 30531
+58299 61702
+58300 37400
+58301 32987
+58302 32987
+58303 14771
+58304 80514
+58305 32987
+58306 32987
+58307 70491
+58308 32987
+58309 32987
+58310 73578
+58311 45056
+58312 62773
+58313 26985
+58314 52604
+58315 34930
+58316 80514
+58317 675
+58318 47586
+58319 48113
+58320 12973
+58321 61455
+58322 61872
+58323 45712
+58324 66109
+58325 69101
+58326 28597
+58327 42266
+58328 80369
+58329 63134
+58330 32987
+58331 32987
+58332 80542
+58333 77497
+58334 30801
+58335 43645
+58336 43645
+58337 71302
+58338 74860
+58339 71336
+58340 68808
+58341 72658
+58342 43645
+58343 42840
+58344 41078
+58345 48317
+58346 24504
+58347 26587
+58348 36188
+58349 23380
+58350 80150
+58351 26263
+58352 55104
+58353 39065
+58354 35409
+58355 55223
+58356 53706
+58357 35577
+58358 57429
+58359 60667
+58360 22595
+58361 58838
+58362 81063
+58363 81064
+58364 49710
+58365 53539
+58366 49710
+58367 81075
+58368 21532
+58369 57127
+58370 76719
+58371 36096
+58372 58371
+58373 58371
+58374 27203
+58375 63096
+58376 40045
+58377 59935
+58378 81071
+58379 76088
+58380 58233
+58381 33827
+58382 23267
+58383 22598
+58384 23940
+58385 66687
+58386 58392
+58387 23940
+58388 66991
+58389 58674
+58390 58838
+58391 38750
+58392 49967
+58393 33186
+58394 49163
+58395 23543
+58396 34408
+58397 24352
+58398 49854
+58399 65435
+58400 29123
+58401 29123
+58402 33662
+58403 33665
+58403 74134
+58404 54339
+58405 61652
+58406 42999
+58407 21513
+58408 32840
+58409 35308
+58410 73043
+58411 66614
+58412 41783
+58413 27203
+58414 58412
+58415 81056
+58416 24091
+58417 36970
+58418 66499
+58419 28315
+58420 28316
+58421 61228
+58422 22763
+58423 63652
+58424 58664
+58425 77497
+58426 52727
+58427 49456
+58428 28268
+58429 60465
+58430 58429
+58431 62304
+58432 70152
+58433 67129
+58434 30795
+58435 20724
+58436 36889
+58436 37955
+58437 39924
+58438 27106
+58439 41295
+58440 43745
+58441 54223
+58442 55223
+58443 61693
+58444 61694
+58445 64256
+58446 20925
+58447 22988
+58448 66779
+58449 67465
+58450 75813
+58451 79928
+58452 29942
+58453 40069
+58454 54147
+58455 59381
+58456 73907
+58457 25032
+58458 64357
+58459 64325
+58460 45466
+58461 66980
+58462 74953
+58463 40410
+58464 59381
+58465 3601
+58466 3601
+58467 57833
+58468 59993
+58469 57363
+58470 49777
+58471 73155
+58472 31185
+58473 56850
+58474 64806
+58475 60722
+58476 49783
+58477 27298
+58477 43939
+58478 48748
+58479 22603
+58480 78364
+58481 16771
+58482 54999
+58483 78654
+58484 73132
+58485 30524
+58486 21235
+58487 80778
+58488 20894
+58489 36346
+58490 63149
+58491 70578
+58492 74860
+58493 32960
+58494 45841
+58495 55448
+58496 70899
+58497 4432
+58498 28896
+58499 33130
+58500 28892
+58501 69425
+58502 55002
+58503 74893
+58504 67856
+58505 72464
+58506 20680
+58507 57385
+58508 54995
+58509 37878
+58510 64999
+58511 25649
+58512 24538
+58513 32419
+58514 43093
+58515 66491
+58516 52727
+58517 46629
+58518 37356
+58519 33808
+58520 29553
+58521 66340
+58522 55213
+58523 53597
+58524 66340
+58525 69976
+58526 49777
+58527 30947
+58528 57431
+58529 63633
+58530 21513
+58531 47324
+58532 49858
+58533 21514
+58534 55201
+58535 68763
+58536 21513
+58537 68979
+58538 41424
+58539 29123
+58540 65124
+58541 60616
+58542 62018
+58543 22468
+58544 58144
+58545 33094
+58546 59505
+58547 34256
+58548 69338
+58549 13284
+58550 72355
+58551 72350
+58552 47802
+58553 23516
+58554 59389
+58555 68807
+58556 80390
+58557 49950
+58558 70070
+58559 39083
+58560 55220
+58561 70760
+58562 54478
+58562 62851
+58563 41054
+58564 73481
+58565 7620
+58566 52143
+58567 28629
+58568 80778
+58569 6993
+58570 78268
+58571 6193
+58572 61376
+58573 41022
+58574 22763
+58574 22792
+58575 19954
+58576 18616
+58577 45708
+58578 43996
+58579 53803
+58580 18616
+58581 41666
+58582 41752
+58583 49441
+58584 71676
+58585 26964
+58586 20680
+58587 58585
+58588 60357
+58589 51498
+58590 48578
+58591 30315
+58592 30316
+58593 29471
+58594 65124
+58595 32706
+58596 64154
+58597 55106
+58598 26229
+58599 56744
+58600 69287
+58601 35320
+58602 19954
+58603 18616
+58604 33058
+58605 42595
+58606 41960
+58607 34729
+58608 32540
+58609 26451
+58610 22785
+58610 31051
+58611 57645
+58612 32661
+58613 51125
+58614 61682
+58615 33569
+58616 33662
+58617 39491
+58618 35906
+58619 64099
+58620 26012
+58621 32211
+58622 64099
+58623 52037
+58624 64090
+58625 79255
+58626 65813
+58627 66641
+58628 72268
+58629 63975
+58630 10474
+58631 51126
+58632 80913
+58633 70757
+58634 66499
+58635 67747
+58636 22285
+58637 73104
+58638 81072
+58639 25745
+58640 29766
+58641 872
+58642 24730
+58643 77435
+58644 78831
+58645 72172
+58646 39581
+58647 43201
+58648 62257
+58649 70757
+58650 69941
+58651 38202
+58652 58651
+58653 58651
+58654 57134
+58655 80025
+58656 70757
+58657 49691
+58658 49503
+58659 62791
+58660 36135
+58661 30687
+58662 69525
+58663 49634
+58664 73015
+58665 74084
+58666 55127
+58667 53718
+58668 41115
+58669 32661
+58670 53725
+58671 73142
+58672 28241
+58673 42120
+58674 49777
+58675 11919
+58676 57879
+58677 57879
+58678 22879
+58679 61347
+58680 33125
+58681 79343
+58682 36375
+58683 58947
+58684 24607
+58685 49396
+58686 43081
+58687 72218
+58688 33565
+58689 36331
+58690 47929
+58691 54522
+58692 58690
+58693 66767
+58694 37707
+58695 70208
+58696 33547
+58697 20853
+58698 33556
+58699 64291
+58700 78831
+58701 58641
+58702 70757
+58703 77435
+58704 26905
+58705 31105
+58706 70494
+58707 24843
+58708 33556
+58709 59800
+58710 80545
+58711 46280
+58712 76446
+58713 30488
+58714 28533
+58715 55352
+58716 33869
+58717 53500
+58718 28268
+58719 78831
+58720 74620
+58721 27155
+58722 43648
+58723 23919
+58724 63134
+58725 30046
+58726 60722
+58727 24538
+58728 74439
+58729 49777
+58730 20404
+58731 20853
+58732 61129
+58733 71593
+58734 20955
+58735 61228
+58736 52862
+58737 37560
+58738 27001
+58739 47201
+58740 52576
+58741 61689
+58742 36569
+58743 11312
+58744 63645
+58745 27019
+58746 52119
+58747 35433
+58748 25490
+58749 39223
+58750 62476
+58751 69124
+58752 43246
+58753 68818
+58754 39008
+58755 44017
+58756 80510
+58757 59292
+58758 39006
+58759 74893
+58760 70331
+58761 62875
+58762 62880
+58763 37202
+58764 54995
+58765 63143
+58766 78956
+58767 48832
+58768 22193
+58769 55132
+58770 66493
+58771 50450
+58772 73030
+58773 70899
+58774 57128
+58775 16770
+58776 33078
+58777 52120
+58778 58948
+58779 30301
+58780 69125
+58781 58779
+58782 78956
+58783 38870
+58784 57059
+58785 34695
+58786 34726
+58787 38952
+58788 41006
+58789 41006
+58790 28925
+58791 62011
+58792 78275
+58793 39084
+58794 60401
+58795 53047
+58796 65645
+58797 44044
+58798 54065
+58799 62659
+58800 69941
+58801 55610
+58802 50105
+58803 59317
+58804 23016
+58805 59970
+58806 80568
+58807 25854
+58808 33481
+58809 39827
+58811 5166
+58812 39494
+58813 69179
+58814 81168
+58815 81168
+58816 78756
+58817 22447
+58818 72767
+58819 59179
+58820 78367
+58821 72268
+58822 33660
+58823 23640
+58824 25745
+58825 33755
+58826 62193
+58827 73104
+58828 72879
+58829 67333
+58830 49677
+58831 39724
+58832 28241
+58833 43882
+58834 58838
+58835 52307
+58836 16588
+58837 55522
+58838 70974
+58839 21090
+58840 40709
+58841 40894
+58842 15600
+58843 36159
+58844 40681
+58845 43917
+58846 27019
+58847 23542
+58848 62303
+58849 63887
+58850 33581
+58851 53364
+58852 40292
+58853 35632
+58854 62709
+58855 72248
+58856 45149
+58857 58856
+58858 39410
+58859 55610
+58860 53276
+58861 58880
+58862 39190
+58863 65103
+58864 49826
+58865 50329
+58866 26650
+58867 43876
+58868 41555
+58869 32581
+58870 29386
+58871 32955
+58872 33510
+58873 42002
+58874 43919
+58875 40752
+58876 47406
+58877 49824
+58878 51957
+58879 58868
+58880 59976
+58881 59990
+58882 59993
+58883 59994
+58884 41511
+58885 53130
+58886 63702
+58887 64636
+58888 66249
+58889 69926
+58890 71169
+58891 37512
+58892 29571
+58893 9892
+58894 80045
+58895 29324
+58896 29064
+58897 41054
+58898 80926
+58899 41807
+58900 44380
+58901 28559
+58902 70974
+58903 60202
+58904 69351
+58905 54124
+58906 80170
+58907 80025
+58908 53308
+58909 45256
+58910 62649
+58911 81071
+58912 60603
+58913 17169
+58914 61054
+58915 61058
+58916 58947
+58917 27080
+58918 40819
+58919 11311
+58920 58948
+58921 22034
+58922 57823
+58923 41450
+58924 32177
+58925 81181
+58926 19955
+58927 41119
+58928 80428
+58929 78351
+58930 42747
+58931 47665
+58932 53769
+58933 29483
+58934 38943
+58934 6525
+58935 27336
+58936 80514
+58937 54174
+58937 59990
+58938 67622
+58939 31608
+58940 57637
+58941 69071
+58942 64234
+58943 53762
+58944 58948
+58944 80778
+58945 71851
+58946 21380
+58947 21380
+58948 21169
+58949 62736
+58950 41666
+58951 2911
+58952 23016
+58953 56556
+58954 22529
+58955 57529
+58956 58955
+58957 57833
+58958 34726
+58959 67876
+58960 62808
+58961 22587
+58962 44439
+58963 57856
+58964 57855
+58965 44439
+58966 42743
+58967 54714
+58968 29430
+58969 61702
+58970 74893
+58971 55759
+58972 43703
+58973 58984
+58974 19954
+58975 38672
+58975 66508
+58976 31224
+58977 21375
+58978 2728
+58979 58976
+58980 55909
+58981 41054
+58982 7639
+58983 58862
+58984 43718
+58985 56022
+58986 56022
+58987 73336
+58988 68177
+58989 24538
+58990 68177
+58991 62747
+58992 50576
+58993 52727
+58994 62924
+58995 62924
+58996 37579
+58997 13899
+58998 24044
+58999 61266
+59000 22670
+59001 32209
+59002 52727
+59003 40292
+59004 57699
+59005 37713
+59006 72836
+59007 70752
+59008 22720
+59009 22693
+59010 73104
+59011 57591
+59012 73104
+59013 39065
+59014 22517
+59015 39067
+59016 33647
+59017 53318
+59018 77289
+59019 80442
+59020 40611
+59021 49904
+59022 41125
+59023 72218
+59024 55223
+59025 78310
+59026 43326
+59027 64099
+59028 37271
+59029 47665
+59030 25067
+59031 32774
+59032 32774
+59033 43952
+59034 64153
+59035 61186
+59036 46965
+59037 32774
+59038 32774
+59039 32774
+59040 32774
+59041 32774
+59042 32774
+59043 32774
+59044 24674
+59045 32774
+59046 32774
+59047 32774
+59048 32774
+59049 32774
+59050 32774
+59051 32774
+59052 60722
+59053 39337
+59054 78289
+59055 73734
+59056 27522
+59057 37892
+59058 37887
+59059 49186
+59060 28257
+59061 21855
+59062 78816
+59063 24520
+59064 27679
+59065 60616
+59066 38079
+59067 38328
+59068 28356
+59069 42553
+59070 71408
+59071 52678
+59072 76226
+59073 62309
+59074 81207
+59075 78051
+59076 72248
+59077 37892
+59078 37887
+59079 80896
+59080 52810
+59081 33123
+59082 67036
+59083 15964
+59084 73079
+59085 77656
+59086 55580
+59087 59089
+59088 23532
+59089 37560
+59090 30437
+59091 44084
+59092 44086
+59093 81401
+59094 75427
+59095 20415
+59096 49918
+59097 20415
+59098 44083
+59099 72589
+59100 59781
+59101 52460
+59102 20541
+59103 20925
+59104 61685
+59105 49634
+59106 64979
+59107 56022
+59107 59110
+59108 45310
+59109 27877
+59110 17637
+59111 59641
+59112 76931
+59113 64518
+59114 54737
+59115 77047
+59116 33607
+59117 81025
+59118 68381
+59119 47355
+59120 43876
+59121 73227
+59122 34832
+59123 3703
+59124 31404
+59125 38133
+59126 60532
+59127 50448
+59128 52726
+59129 19009
+59130 55886
+59131 37391
+59132 69268
+59133 21398
+59134 25902
+59135 32955
+59136 46554
+59137 71621
+59138 79949
+59139 73576
+59140 73079
+59141 49777
+59142 46882
+59143 30337
+59144 30520
+59145 73079
+59146 56748
+59147 30488
+59148 50506
+59149 31105
+59150 60571
+59151 23560
+59152 69664
+59153 53126
+59154 72100
+59155 80525
+59156 62255
+59157 80903
+59158 18616
+59159 31835
+59160 32956
+59161 17029
+59162 60712
+59163 64999
+59164 33291
+59165 28185
+59166 29249
+59167 3292
+59168 40799
+59169 26064
+59170 63974
+59171 48490
+59172 59912
+59173 75003
+59174 28536
+59175 20955
+59176 80902
+59177 20921
+59178 55211
+59179 20955
+59180 35900
+59181 63980
+59182 32287
+59183 20955
+59184 32211
+59185 75816
+59186 35769
+59187 61541
+59188 36044
+59189 66712
+59190 41809
+59191 43810
+59192 28559
+59193 62577
+59194 41125
+59195 62379
+59196 32620
+59197 36627
+59198 50477
+59199 81399
+59200 34729
+59201 20415
+59202 33459
+59203 59202
+59204 23516
+59205 78831
+59206 72218
+59207 55223
+59208 60095
+59209 55208
+59210 40611
+59211 57425
+59212 25646
+59213 25646
+59214 33660
+59215 51123
+59216 49904
+59217 34712
+59218 33790
+59218 57425
+59219 38634
+59220 28241
+59221 63026
+59222 46505
+59223 54810
+59224 54810
+59225 54810
+59226 54378
+59227 33804
+59228 69485
+59229 49870
+59230 34290
+59231 61317
+59232 74058
+59233 5317
+59234 78364
+59235 64325
+59236 22764
+59237 20956
+59238 56307
+59239 30870
+59240 34726
+59241 22988
+59242 36942
+59243 55372
+59244 41752
+59245 59246
+59246 45310
+59247 59250
+59248 50196
+59249 59104
+59250 61685
+59251 64896
+59252 23809
+59253 70974
+59254 61694
+59255 8573
+59256 37701
+59257 49777
+59258 49504
+59259 45665
+59260 36718
+59261 72217
+59262 63418
+59263 47665
+59264 37892
+59265 37886
+59266 70419
+59267 40612
+59268 29471
+59269 33713
+59270 21487
+59271 47727
+59272 61347
+59273 21788
+59274 61477
+59275 59317
+59276 52417
+59277 42567
+59278 17503
+59279 14640
+59280 79992
+59281 43713
+59282 53291
+59283 54754
+59284 55935
+59285 57102
+59286 14150
+59287 26431
+59288 71466
+59289 71685
+59290 76600
+59291 76877
+59292 81181
+59293 59286
+59294 43710
+59295 14638
+59295 46134
+59296 19954
+59297 46025
+59298 59300
+59299 17385
+59300 21038
+59301 72360
+59302 72373
+59303 70757
+59304 60678
+59305 60678
+59306 61230
+59307 62252
+59308 46613
+59309 34729
+59310 12973
+59311 57128
+59312 69194
+59313 23285
+59314 23435
+59315 23436
+59316 21012
+59317 42747
+59318 59970
+59319 20415
+59320 59178
+59321 59317
+59322 49918
+59323 49593
+59324 31724
+59325 40807
+59326 77424
+59327 25902
+59328 54248
+59329 73104
+59330 23432
+59331 33273
+59332 32674
+59333 67868
+59334 69285
+59335 75418
+59336 66687
+59337 23586
+59338 59396
+59339 22530
+59340 23960
+59341 59344
+59342 27203
+59343 43217
+59344 21400
+59345 28691
+59346 23437
+59347 66372
+59348 23938
+59348 71766
+59349 23938
+59350 42257
+59351 58489
+59352 67868
+59353 52578
+59354 23081
+59355 15600
+59356 64979
+59357 51117
+59358 33274
+59359 15600
+59360 25891
+59361 25438
+59362 22611
+59363 3425
+59364 63133
+59365 56022
+59366 43401
+59367 25491
+59368 26229
+59369 27021
+59370 21394
+59371 61243
+59372 80545
+59373 64157
+59374 38122
+59375 44009
+59376 59377
+59377 65905
+59378 80545
+59379 59378
+59380 57162
+59381 59369
+59382 41691
+59383 55410
+59384 30797
+59385 33086
+59386 37645
+59387 52980
+59388 57528
+59389 63980
+59390 68817
+59391 59389
+59392 68728
+59393 57134
+59394 71598
+59395 21106
+59396 20955
+59397 59347
+59398 30642
+59399 28546
+59400 39724
+59401 71598
+59402 51804
+59403 78299
+59404 39493
+59405 74966
+59406 50107
+59407 57788
+59408 41054
+59409 49808
+59410 67333
+59411 25319
+59412 32168
+59413 62262
+59414 63026
+59415 72732
+59416 72217
+59417 39722
+59418 23959
+59419 37401
+59420 63547
+59421 69434
+59422 31610
+59423 74861
+59424 72994
+59425 23483
+59426 47665
+59427 25613
+59428 50434
+59429 40618
+59430 17010
+59430 7504
+59431 25646
+59432 20408
+59433 64979
+59434 41547
+59435 34812
+59436 61564
+59437 36162
+59438 20335
+59439 27637
+59440 62290
+59441 60722
+59442 73104
+59443 22137
+59444 37322
+59445 81401
+59446 76051
+59447 59444
+59448 45060
+59449 21894
+59450 45063
+59451 30084
+59452 6958
+59453 49777
+59454 53126
+59455 20163
+59456 76969
+59457 33274
+59458 50187
+59459 57064
+59460 39185
+59461 56022
+59462 69349
+59463 62268
+59464 67586
+59465 75597
+59466 31182
+59467 41990
+59468 41580
+59469 77340
+59470 36614
+59471 36612
+59472 71116
+59473 78358
+59474 59418
+59475 61580
+59476 52038
+59477 61581
+59478 13574
+59479 66004
+59480 81063
+59481 57326
+59482 55216
+59483 72218
+59484 38947
+59485 47428
+59486 50105
+59487 77340
+59488 72218
+59489 59209
+59490 49046
+59491 59779
+59492 28397
+59493 79438
+59494 22691
+59495 60612
+59496 59150
+59497 55563
+59498 74773
+59499 20925
+59500 19638
+59501 44430
+59502 65979
+59503 65975
+59504 39494
+59505 60584
+59506 38773
+59506 71135
+59507 66260
+59508 33622
+59509 80747
+59510 80526
+59511 56022
+59512 39824
+59513 37178
+59514 63702
+59515 47167
+59516 27155
+59517 59389
+59518 28868
+59519 48685
+59520 37579
+59521 65893
+59522 49918
+59523 36347
+59524 52133
+59525 23524
+59526 39656
+59527 25759
+59528 25759
+59529 77340
+59530 27163
+59531 27163
+59532 38953
+59533 24164
+59534 22361
+59535 22362
+59536 54076
+59537 25759
+59538 54375
+59539 59522
+59540 76002
+59541 77340
+59542 44439
+59543 23016
+59544 60685
+59545 68441
+59546 68845
+59547 50940
+59548 59178
+59549 61653
+59550 63054
+59551 59178
+59552 39327
+59553 50940
+59554 49777
+59555 65663
+59556 41666
+59557 20540
+59558 2911
+59559 24152
+59560 49918
+59561 59560
+59562 59560
+59563 55223
+59564 62360
+59565 60685
+59566 44439
+59567 55208
+59568 73030
+59569 43862
+59570 57183
+59571 50109
+59572 48559
+59573 38808
+59574 11660
+59575 22983
+59575 77672
+59576 24225
+59577 25929
+59578 49777
+59579 40577
+59580 39327
+59581 41157
+59582 40819
+59583 65893
+59584 40807
+59585 69794
+59586 49699
+59587 27725
+59588 2912
+59589 49094
+59590 56775
+59591 28241
+59592 37816
+59593 49777
+59594 15784
+59595 23850
+59596 23856
+59597 49777
+59598 59597
+59599 62263
+59600 53539
+59600 72074
+59601 69841
+59602 31939
+59603 40748
+59604 60357
+59605 41871
+59606 41872
+59607 78309
+59608 23958
+59609 44196
+59610 70264
+59611 23358
+59612 42741
+59613 42045
+59614 59591
+59615 73658
+59616 65895
+59617 58742
+59618 36937
+59619 74298
+59620 62245
+59621 60690
+59622 63085
+59623 14917
+59624 14918
+59625 64033
+59626 70578
+59627 49699
+59628 64025
+59629 65645
+59630 33715
+59631 33137
+59632 78586
+59633 78591
+59634 23908
+59635 77656
+59636 50229
+59637 65739
+59638 27032
+59639 72867
+59640 29183
+59641 60462
+59642 74528
+59643 28925
+59644 31791
+59645 53735
+59646 29392
+59647 33670
+59648 44474
+59649 70899
+59650 69289
+59651 71771
+59652 73870
+59653 68700
+59654 59594
+59655 32295
+59656 63134
+59657 40982
+59658 36311
+59659 53315
+59660 23516
+59661 35660
+59662 39159
+59663 78831
+59664 49918
+59665 66672
+59666 41609
+59666 45649
+59667 70757
+59668 34818
+59669 51599
+59670 67394
+59671 76037
+59672 12978
+59673 78067
+59674 34997
+59675 62423
+59676 55220
+59678 53596
+59679 78348
+59680 20550
+59681 61187
+59682 64694
+59683 20956
+59684 23723
+59685 80906
+59686 34584
+59687 22876
+59688 25904
+59689 25905
+59690 54441
+59691 10248
+59692 28410
+59693 29305
+59694 73432
+59695 29847
+59696 30604
+59697 32082
+59698 33000
+59699 32999
+59700 34839
+59701 58576
+59702 38345
+59703 59116
+59704 20921
+59705 47827
+59706 39712
+59707 23091
+59708 23131
+59709 39251
+59710 36925
+59711 40878
+59712 40872
+59713 41564
+59714 42609
+59715 42738
+59716 40051
+59717 44193
+59718 64081
+59719 51699
+59720 36458
+59721 73432
+59722 64117
+59723 49504
+59724 42938
+59725 30112
+59726 66943
+59727 64127
+59728 47414
+59729 29249
+59730 39251
+59731 32331
+59732 53266
+59733 28410
+59734 62174
+59735 14919
+59736 70063
+59737 7743
+59738 24509
+59739 60773
+59740 60774
+59741 63039
+59742 23865
+59743 63870
+59744 64033
+59745 65743
+59746 36942
+59747 74464
+59748 69599
+59749 43087
+59750 51999
+59751 59005
+59752 37404
+59753 70768
+59754 70767
+59755 71017
+59756 73644
+59757 50267
+59758 33226
+59759 80916
+59760 61228
+59761 59760
+59762 61287
+59763 49456
+59764 47052
+59765 57106
+59766 59427
+59767 50566
+59768 74169
+59769 40535
+59770 74298
+59771 51803
+59772 59369
+59773 54574
+59774 71788
+59775 56389
+59776 45649
+59777 59389
+59778 57516
+59779 66672
+59780 59781
+59781 44083
+59782 26184
+59783 59782
+59784 45494
+59785 31555
+59786 28559
+59787 49777
+59788 38574
+59789 58742
+59790 66431
+59791 33771
+59792 73104
+59793 30017
+59794 27435
+59795 61024
+59796 68239
+59797 20792
+59798 68239
+59799 20792
+59800 47665
+59801 58269
+59802 56098
+59803 35856
+59804 5752
+59805 55118
+59806 43420
+59807 51904
+59808 29695
+59809 80514
+59810 38160
+59811 33073
+59812 30770
+59813 40069
+59814 30786
+59815 30786
+59816 49738
+59817 58489
+59818 59389
+59819 33086
+59820 10105
+59821 40069
+59822 59385
+59823 55132
+59824 63841
+59825 75091
+59826 71973
+59827 22502
+59828 56272
+59829 26788
+59830 20792
+59831 26209
+59832 61702
+59833 36337
+59834 27766
+59835 59821
+59836 20925
+59837 47599
+59838 41922
+59839 20971
+59840 22749
+59841 22767
+59842 22763
+59843 55220
+59844 48358
+59845 80883
+59846 74464
+59847 26307
+59848 47546
+59849 24839
+59850 80904
+59851 60788
+59852 34681
+59853 76597
+59854 21375
+59855 67586
+59856 47665
+59857 68236
+59858 70074
+59859 73336
+59860 38481
+59861 70291
+59862 48674
+59863 37560
+59864 44212
+59865 48091
+59866 52326
+59867 49265
+59868 33086
+59869 77195
+59870 33627
+59871 69524
+59872 48860
+59873 18530
+59874 43001
+59875 69980
+59876 67490
+59877 75647
+59878 73281
+59879 65632
+59880 53182
+59881 29378
+59882 31396
+59883 40619
+59884 29500
+59885 39493
+59886 65234
+59887 48405
+59888 61946
+59889 26929
+59890 21146
+59891 27159
+59892 20428
+59893 62207
+59894 74119
+59895 61477
+59896 20683
+59897 25277
+59898 37955
+59899 25646
+59900 21169
+59901 57132
+59902 43969
+59903 20724
+59904 59911
+59905 22525
+59906 34201
+59907 34201
+59908 28364
+59909 25446
+59910 67168
+59911 33637
+59912 32211
+59913 70264
+59914 31405
+59915 43018
+59916 28529
+59917 33660
+59918 54974
+59919 32955
+59920 26706
+59921 55526
+59922 59911
+59923 59909
+59923 80930
+59924 54972
+59925 29688
+59926 30461
+59927 34764
+59928 57660
+59929 28241
+59930 62289
+59931 20727
+59932 80819
+59933 68058
+59934 73816
+59935 60202
+59936 52396
+59937 26664
+59938 59940
+59939 73907
+59940 23560
+59941 25209
+59942 26510
+59943 50204
+59944 58583
+59945 34590
+59946 73205
+59947 44121
+59948 80150
+59949 60972
+59950 79535
+59951 53546
+59952 2450
+59953 39730
+59954 22713
+59955 37579
+59956 66499
+59957 41203
+59958 63881
+59959 66647
+59960 30337
+59961 32311
+59962 78596
+59963 75635
+59964 43439
+59965 30095
+59966 52272
+59967 48100
+59968 33639
+59969 55045
+59970 74893
+59971 41571
+59972 71838
+59973 20498
+59974 78307
+59975 64979
+59976 32082
+59976 32478
+59977 54363
+59978 67529
+59979 29337
+59980 59595
+59981 21561
+59981 44065
+59982 27485
+59983 23075
+59983 28105
+59984 58567
+59985 46140
+59986 32370
+59987 68373
+59988 68231
+59989 77935
+59990 23581
+59991 70974
+59992 53134
+59993 45927
+59994 23483
+59994 42061
+59995 23070
+59996 34695
+59997 44315
+59998 62745
+59999 20925
+60000 46358
+60001 43401
+60002 41054
+60003 60169
+60004 58035
+60005 45746
+60006 40732
+60007 66746
+60008 53383
+60009 75356
+60010 20623
+60011 45347
+60012 74528
+60013 23516
+60014 65588
+60015 78831
+60016 59178
+60017 21725
+60018 46129
+60019 79153
+60020 81181
+60021 57833
+60022 3531
+60023 32491
+60024 78970
+60025 26101
+60025 60040
+60026 27346
+60026 60025
+60027 57833
+60028 23240
+60029 60026
+60030 39126
+60031 23240
+60032 23240
+60033 45063
+60034 23239
+60035 23240
+60036 76759
+60037 23240
+60038 60043
+60039 68818
+60040 39008
+60041 23240
+60041 60684
+60042 60043
+60043 60025
+60043 81401
+60044 41802
+60045 23240
+60046 32981
+60047 26920
+60048 23380
+60049 72177
+60050 56792
+60051 60685
+60052 74494
+60053 54615
+60054 80883
+60055 36928
+60056 43273
+60057 28439
+60058 44055
+60059 55563
+60060 68373
+60061 55602
+60062 62397
+60063 46882
+60064 55045
+60065 39027
+60066 78999
+60067 25038
+60068 79017
+60069 31835
+60070 34542
+60071 23286
+60072 53182
+60073 18616
+60074 31506
+60075 13284
+60076 58862
+60077 33092
+60078 20428
+60079 41321
+60080 43285
+60081 37887
+60082 68498
+60083 45459
+60084 41321
+60085 22468
+60086 18616
+60087 28627
+60088 48405
+60089 2911
+60090 40611
+60090 76908
+60091 33457
+60092 26639
+60093 74893
+60094 56750
+60095 38929
+60096 74893
+60097 81001
+60098 45056
+60099 7577
+60100 49777
+60101 81056
+60102 46004
+60103 62565
+60104 31334
+60105 28845
+60106 25258
+60107 18872
+60108 29532
+60109 34387
+60110 41990
+60111 40752
+60112 20415
+60113 23516
+60114 29471
+60115 29071
+60116 37195
+60117 78831
+60118 49978
+60119 49918
+60120 35684
+60121 35167
+60122 57517
+60123 18616
+60124 40122
+60125 24486
+60126 59507
+60126 73776
+60127 70757
+60128 62385
+60129 60130
+60130 70044
+60131 27001
+60132 27001
+60133 59938
+60134 37559
+60135 47384
+60136 52971
+60137 34976
+60138 39776
+60139 42267
+60140 41571
+60141 59970
+60142 59970
+60143 45056
+60144 46220
+60145 25603
+60146 41498
+60147 22876
+60148 28663
+60149 22879
+60150 12096
+60151 65235
+60152 23772
+60153 24504
+60154 80407
+60155 48316
+60156 13901
+60157 23438
+60158 23285
+60159 63903
+60160 49152
+60161 46554
+60162 80545
+60163 49777
+60164 70835
+60165 19415
+60166 4709
+60167 59317
+60168 58158
+60169 44193
+60170 52541
+60171 56903
+60172 75965
+60173 75965
+60174 25649
+60175 20724
+60176 55363
+60177 75635
+60178 52658
+60179 78212
+60180 76415
+60181 27765
+60182 41054
+60183 55988
+60184 55154
+60185 1663
+60185 20792
+60186 71053
+60187 34241
+60188 76410
+60189 75221
+60190 37138
+60191 45746
+60192 40069
+60193 4807
+60194 49852
+60195 61619
+60196 57064
+60197 35482
+60198 39191
+60199 43718
+60200 39191
+60201 51150
+60202 54972
+60203 23542
+60204 55232
+60205 28420
+60205 31730
+60206 3704
+60207 44056
+60208 31231
+60209 31815
+60210 35561
+60211 38043
+60212 39509
+60213 41424
+60214 36942
+60215 27396
+60216 15501
+60217 12083
+60218 35428
+60219 22468
+60220 62374
+60221 43963
+60222 60678
+60223 39732
+60224 60202
+60225 49470
+60226 76940
+60227 60202
+60228 81075
+60229 79000
+60230 35724
+60231 27203
+60232 29490
+60233 36452
+60234 43196
+60235 34705
+60236 23070
+60237 34695
+60238 80023
+60239 80902
+60240 60202
+60241 23016
+60242 23016
+60243 23016
+60244 29500
+60245 39175
+60246 25759
+60247 76985
+60248 15826
+60249 24311
+60250 22537
+60251 28991
+60252 42553
+60253 47799
+60254 60253
+60255 60202
+60256 69338
+60257 37956
+60258 68878
+60259 20792
+60260 67805
+60261 22468
+60262 73594
+60263 33438
+60264 60265
+60265 66259
+60266 62257
+60267 68897
+60268 66326
+60269 51180
+60270 41198
+60271 63986
+60272 74171
+60273 37688
+60274 60357
+60275 71941
+60276 49929
+60277 29980
+60278 61357
+60279 26302
+60280 33731
+60281 21788
+60282 79880
+60283 51397
+60284 23286
+60285 55694
+60286 81061
+60287 81056
+60288 21064
+60289 60444
+60290 32900
+60291 21710
+60292 60334
+60293 67036
+60294 59250
+60295 52396
+60296 46588
+60297 31882
+60298 50332
+60299 59180
+60300 63899
+60301 64948
+60302 41227
+60303 27582
+60303 36377
+60304 46900
+60305 20348
+60306 54202
+60307 54229
+60308 31352
+60309 60334
+60310 33562
+60311 41122
+60312 64999
+60313 73147
+60314 49918
+60315 43104
+60316 32295
+60317 5546
+60318 57326
+60319 70832
+60320 51654
+60321 64476
+60322 64483
+60323 68741
+60324 60375
+60325 79516
+60326 43273
+60327 42734
+60328 61373
+60329 67021
+60330 17664
+60331 60095
+60332 46900
+60333 23015
+60334 23739
+60335 64464
+60336 47679
+60337 50477
+60338 31317
+60339 45348
+60340 25634
+60341 60344
+60342 26713
+60343 50891
+60344 60340
+60345 57221
+60346 69882
+60347 21375
+60348 57797
+60349 50107
+60350 61389
+60351 39846
+60352 48358
+60353 43032
+60354 49876
+60355 78831
+60356 21870
+60357 45056
+60358 54285
+60359 37906
+60360 60202
+60361 49777
+60362 31724
+60363 67036
+60364 55220
+60365 22534
+60366 62307
+60367 44460
+60368 21185
+60369 64979
+60370 64668
+60371 54995
+60372 21093
+60373 54558
+60374 51654
+60375 60095
+60376 74893
+60377 60304
+60378 43693
+60379 45311
+60380 62344
+60381 62347
+60382 62352
+60383 62174
+60384 33130
+60385 35382
+60386 55352
+60387 33869
+60388 53500
+60389 69715
+60390 62209
+60391 62495
+60392 74262
+60393 74620
+60394 25816
+60395 43405
+60396 58614
+60397 32913
+60398 51240
+60399 31312
+60400 22086
+60401 54998
+60402 26250
+60403 33511
+60404 40238
+60405 30693
+60406 2071
+60407 32701
+60408 50863
+60409 67574
+60410 54523
+60411 76492
+60412 72076
+60413 76342
+60414 25816
+60415 37033
+60416 7191
+60417 21405
+60418 32887
+60419 56445
+60420 65902
+60421 29659
+60422 44055
+60423 54272
+60424 54804
+60425 57439
+60426 48729
+60427 22919
+60428 67874
+60429 64154
+60430 63149
+60430 69269
+60431 52833
+60432 68209
+60433 78831
+60434 49918
+60435 69415
+60436 20348
+60437 80883
+60438 42691
+60439 69194
+60440 69194
+60441 42699
+60441 50056
+60442 53312
+60443 40686
+60444 26157
+60445 22909
+60446 45392
+60447 61147
+60448 26674
+60449 39846
+60450 39846
+60451 23812
+60452 64090
+60453 43702
+60454 47665
+60455 47666
+60456 47163
+60457 67586
+60458 47665
+60459 67598
+60460 47546
+60461 66746
+60462 53539
+60463 33193
+60464 58614
+60465 76088
+60466 23723
+60467 21534
+60468 53129
+60469 75086
+60470 59787
+60471 70786
+60472 80926
+60473 57106
+60474 45841
+60475 60491
+60476 52396
+60477 42752
+60478 22966
+60479 22966
+60480 30157
+60481 27672
+60482 34207
+60483 36617
+60484 36717
+60485 37160
+60486 39120
+60487 62304
+60488 78928
+60489 37702
+60490 49633
+60491 23746
+60492 33670
+60493 53481
+60494 78917
+60495 27003
+60496 43817
+60497 25378
+60498 61694
+60499 28160
+60500 41115
+60501 64240
+60502 30246
+60503 64979
+60504 36756
+60505 54972
+60506 61871
+60507 78739
+60508 74256
+60509 33143
+60510 21235
+60511 80883
+60512 49777
+60513 41794
+60514 28528
+60515 66439
+60516 33715
+60517 30353
+60518 80515
+60519 44064
+60520 61490
+60521 46363
+60522 74119
+60523 79125
+60524 40059
+60525 26039
+60526 29918
+60527 28543
+60528 50551
+60529 71851
+60530 59394
+60531 21280
+60532 71597
+60533 49777
+60534 44056
+60535 12150
+60536 62790
+60537 53132
+60538 62811
+60539 36969
+60540 32959
+60541 79518
+60542 23939
+60543 12978
+60544 4698
+60545 22537
+60546 73281
+60547 18211
+60548 18211
+60549 18211
+60550 30130
+60551 24082
+60552 24674
+60553 35805
+60554 80514
+60555 52477
+60556 43054
+60557 61286
+60558 61286
+60559 42609
+60560 70877
+60561 35600
+60562 52862
+60563 76341
+60564 74169
+60565 59151
+60566 30524
+60567 69287
+60568 79900
+60569 51107
+60570 33078
+60571 73907
+60572 65743
+60573 56749
+60574 36454
+60575 60568
+60576 68538
+60577 56843
+60578 36458
+60579 77299
+60580 61847
+60581 70152
+60582 77095
+60583 78688
+60584 26157
+60585 39810
+60586 66583
+60587 58369
+60588 66943
+60589 39191
+60590 79125
+60591 21553
+60592 20847
+60593 53301
+60594 37377
+60595 49948
+60596 77241
+60597 77733
+60598 79329
+60599 49536
+60600 74084
+60601 50198
+60602 30585
+60603 76447
+60604 61228
+60605 75718
+60606 54899
+60607 40819
+60608 60494
+60609 61175
+60610 64102
+60611 37579
+60612 43000
+60613 68165
+60614 33077
+60615 21074
+60616 33272
+60617 33081
+60618 29490
+60619 31224
+60620 80943
+60621 27155
+60622 73317
+60623 12078
+60624 80913
+60625 53291
+60626 76502
+60627 52726
+60628 53347
+60629 31723
+60630 14919
+60631 25545
+60632 38277
+60633 24551
+60634 69757
+60635 30758
+60636 12078
+60637 55145
+60638 60644
+60639 71941
+60640 11088
+60641 13465
+60642 54739
+60643 60357
+60644 61822
+60645 76444
+60646 64090
+60647 33470
+60647 33765
+60648 62623
+60649 71000
+60650 80680
+60651 78258
+60652 42356
+60653 2911
+60654 40389
+60655 32614
+60656 69834
+60657 60616
+60658 59154
+60659 37956
+60660 50198
+60661 23067
+60662 38743
+60663 79149
+60664 51241
+60665 52460
+60666 53601
+60667 55220
+60668 52558
+60669 52562
+60670 50550
+60671 6525
+60672 23959
+60673 73104
+60674 29754
+60675 23696
+60676 34526
+60677 79900
+60678 53129
+60679 41227
+60680 49875
+60680 55727
+60681 60682
+60682 59389
+60683 33273
+60684 55216
+60685 49254
+60686 64979
+60687 40894
+60688 60677
+60689 29483
+60690 29762
+60690 70478
+60691 32082
+60692 23285
+60693 24557
+60694 68660
+60695 20616
+60696 2690
+60697 4807
+60698 51240
+60699 71600
+60700 21169
+60701 60442
+60702 60443
+60703 78288
+60704 39886
+60705 81062
+60706 4050
+60707 36854
+60708 64306
+60709 43104
+60710 79002
+60711 79692
+60712 31745
+60713 59786
+60714 25745
+60715 36304
+60715 68155
+60716 71593
+60717 28531
+60718 60714
+60719 57372
+60720 53126
+60721 71941
+60722 20955
+60723 40619
+60724 60678
+60725 45924
+60726 54359
+60727 61811
+60728 29123
+60729 13899
+60730 60633
+60731 74311
+60732 30838
+60733 62994
+60734 63922
+60735 49537
+60736 75384
+60737 23070
+60738 35805
+60739 18211
+60740 56794
+60741 48355
+60742 60741
+60743 60746
+60744 79489
+60745 38369
+60746 23560
+60747 17636
+60748 54100
+60749 70106
+60750 2911
+60751 22523
+60752 78364
+60753 62478
+60754 30841
+60755 27321
+60756 65881
+60757 52635
+60757 62482
+60758 46153
+60759 61563
+60760 35501
+60761 59365
+60762 74170
+60763 66544
+60764 65631
+60765 52815
+60766 50800
+60767 66871
+60768 30691
+60769 5168
+60770 65885
+60771 56461
+60772 60771
+60773 34290
+60774 32666
+60775 65631
+60776 44480
+60777 60773
+60778 21351
+60779 27813
+60780 66333
+60781 22192
+60782 36631
+60783 65969
+60784 52727
+60785 52589
+60786 52588
+60787 52587
+60788 34649
+60789 55106
+60790 50863
+60791 32204
+60792 62453
+60792 77763
+60793 71973
+60794 42925
+60795 2911
+60796 69355
+60797 59329
+60798 4431
+60799 65141
+60800 69315
+60801 38291
+60802 42258
+60803 64334
+60804 58822
+60805 71603
+60806 22148
+60807 71766
+60808 36304
+60809 62110
+60810 59179
+60811 61228
+60812 43718
+60813 38672
+60813 39191
+60814 29045
+60815 26611
+60816 49104
+60817 17849
+60818 14640
+60819 17638
+60820 68508
+60821 60826
+60822 80526
+60823 58567
+60824 60826
+60825 76251
+60826 61493
+60827 60826
+60828 33852
+60829 71941
+60830 62649
+60831 52587
+60832 6958
+60833 29123
+60834 27915
+60835 60616
+60836 61086
+60837 23285
+60838 58862
+60839 50569
+60840 22192
+60841 39191
+60841 62933
+60842 43718
+60843 44374
+60844 63261
+60845 24936
+60846 37851
+60847 42301
+60848 48208
+60849 30315
+60850 59847
+60851 68136
+60852 61147
+60853 51940
+60854 46325
+60855 43566
+60856 65727
+60857 67973
+60858 21492
+60859 14919
+60860 31608
+60861 64551
+60862 48700
+60862 78818
+60863 52779
+60864 23356
+60865 15784
+60866 19954
+60867 58543
+60868 39193
+60869 61811
+60870 40547
+60871 2684
+60872 19066
+60873 41666
+60874 20792
+60875 30180
+60876 70919
+60877 21155
+60878 42018
+60879 45259
+60880 78831
+60881 60876
+60882 60876
+60883 72280
+60884 30584
+60885 49780
+60886 58369
+60887 52779
+60888 60169
+60889 67153
+60890 42480
+60891 60077
+60892 69491
+60893 34940
+60893 36038
+60894 61376
+60895 48231
+60895 60328
+60896 63133
+60897 74488
+60898 75003
+60899 35078
+60900 77065
+60901 55223
+60902 77496
+60903 60918
+60904 61388
+60905 49904
+60906 60905
+60907 60905
+60908 60905
+60909 21513
+60909 25478
+60910 27777
+60911 22371
+60912 7011
+60913 36612
+60914 55132
+60915 61376
+60916 60328
+60917 46379
+60918 68642
+60919 57790
+60920 62895
+60921 55759
+60922 53718
+60923 30946
+60924 61189
+60925 80926
+60926 36942
+60927 60464
+60928 46554
+60929 72248
+60930 41006
+60931 22517
+60932 48092
+60933 40730
+60934 70998
+60935 10845
+60936 32250
+60937 60935
+60938 58130
+60939 48724
+60940 11482
+60941 52536
+60942 66380
+60943 48080
+60944 76790
+60945 26923
+60946 49220
+60947 69122
+60948 69122
+60949 60948
+60950 60899
+60951 11406
+60952 24216
+60953 1787
+60954 56207
+60955 50579
+60956 47665
+60957 47665
+60958 77231
+60959 70757
+60960 76264
+60961 23356
+60962 30084
+60963 42018
+60964 49920
+60965 55132
+60966 55127
+60967 30084
+60968 74896
+60969 55135
+60970 24119
+60970 70995
+60971 81069
+60972 39789
+60973 39789
+60974 34197
+60975 74670
+60976 38435
+60977 64425
+60978 34216
+60979 52550
+60980 60981
+60981 50187
+60982 71593
+60983 60773
+60984 37454
+60985 46899
+60986 2071
+60987 33127
+60988 68045
+60989 60982
+60990 81069
+60991 45930
+60992 41918
+60993 34268
+60994 27485
+60995 51224
+60996 66064
+60997 69987
+60998 21155
+60999 39002
+61000 47282
+61001 22988
+61002 31841
+61003 76338
+61004 3737
+61005 64979
+61006 50124
+61007 50036
+61008 40030
+61009 20407
+61010 36690
+61011 4466
+61012 27104
+61013 50521
+61014 72327
+61015 55220
+61016 22763
+61017 24459
+61018 61016
+61019 61016
+61020 61016
+61021 61016
+61022 61021
+61023 40069
+61024 61016
+61025 49436
+61026 5752
+61027 40067
+61028 66499
+61029 62647
+61030 42498
+61031 42394
+61032 42392
+61033 60612
+61034 6633
+61035 80614
+61036 61032
+61037 43401
+61038 36030
+61039 62742
+61040 23213
+61041 48019
+61042 59679
+61043 79992
+61044 56111
+61045 47665
+61046 58860
+61047 58860
+61048 77672
+61049 42113
+61050 19992
+61051 71607
+61052 34951
+61053 31730
+61054 66367
+61055 43827
+61056 58222
+61057 62245
+61058 25750
+61059 76171
+61060 73045
+61061 78789
+61062 62880
+61063 77359
+61064 78956
+61065 23846
+61066 23848
+61067 44134
+61068 22300
+61069 15069
+61070 22901
+61071 59993
+61072 56022
+61073 24891
+61074 77764
+61075 56542
+61076 59819
+61077 38633
+61078 55220
+61079 43744
+61080 74848
+61081 69891
+61082 73402
+61083 74058
+61084 60722
+61085 42747
+61086 46344
+61087 41297
+61088 61086
+61089 65504
+61090 40740
+61091 47665
+61092 44193
+61093 42725
+61094 42553
+61095 71737
+61096 41054
+61097 12086
+61098 71973
+61099 16819
+61100 68508
+61101 2911
+61102 21271
+61102 30790
+61103 37579
+61104 37579
+61105 18616
+61106 18616
+61107 66569
+61108 56111
+61109 40500
+61110 56113
+61111 42553
+61112 60728
+61113 68522
+61114 62171
+61115 40069
+61116 40069
+61117 78090
+61118 22133
+61119 2436
+61120 30784
+61121 59385
+61122 49619
+61123 21890
+61124 38272
+61125 79488
+61126 27305
+61127 41054
+61128 30578
+61129 64230
+61130 11481
+61131 66640
+61132 61686
+61133 33192
+61134 25094
+61135 32287
+61136 69609
+61137 69600
+61138 74490
+61139 62182
+61140 43565
+61141 61147
+61142 61147
+61143 49777
+61144 68239
+61145 20792
+61146 31051
+61147 72446
+61148 42011
+61149 33891
+61150 42013
+61151 32276
+61152 57108
+61153 36892
+61154 69294
+61155 24063
+61156 29242
+61157 50200
+61158 57134
+61159 61276
+61160 36265
+61161 77289
+61162 41219
+61163 59389
+61164 62290
+61165 67998
+61166 23772
+61167 39133
+61168 25067
+61169 70974
+61170 29251
+61171 73104
+61172 49504
+61173 37701
+61174 33124
+61175 75718
+61176 23655
+61177 37636
+61178 42820
+61178 46136
+61179 70757
+61180 38971
+61181 78831
+61182 48092
+61183 48091
+61184 64673
+61185 70375
+61186 36525
+61187 20679
+61188 2437
+61189 40004
+61190 48695
+61191 54359
+61192 40389
+61193 70264
+61194 40399
+61195 23483
+61196 50122
+61197 12150
+61198 72464
+61199 30145
+61200 57791
+61201 23515
+61202 37560
+61203 30084
+61204 68019
+61205 78831
+61206 29532
+61207 69715
+61208 34570
+61209 64862
+61210 56022
+61211 37321
+61212 34570
+61213 31275
+61213 77232
+61214 49220
+61215 61199
+61216 872
+61217 61199
+61218 61199
+61219 48727
+61220 53125
+61221 33476
+61222 58687
+61223 13337
+61224 23516
+61225 49593
+61226 23286
+61227 33476
+61228 43832
+61229 62423
+61230 50447
+61231 64668
+61232 45061
+61233 39809
+61234 80913
+61235 59830
+61236 22947
+61237 27765
+61238 46965
+61239 52280
+61240 56749
+61241 33049
+61242 75002
+61243 64537
+61244 37560
+61245 36614
+61246 36612
+61247 55351
+61248 19547
+61249 74565
+61250 39494
+61251 74968
+61252 70560
+61253 59248
+61254 61199
+61255 78385
+61256 43019
+61257 27415
+61258 62307
+61259 20956
+61260 62305
+61261 73907
+61262 32468
+61263 23616
+61264 55351
+61265 30084
+61266 69715
+61267 49918
+61268 80429
+61269 74119
+61270 69125
+61271 69178
+61272 22811
+61273 52820
+61274 56171
+61275 10248
+61276 38830
+61277 50035
+61278 54202
+61279 41054
+61280 76767
+61281 68239
+61282 20792
+61283 63077
+61284 37178
+61285 21129
+61286 23128
+61287 37701
+61288 62946
+61289 40652
+61290 42775
+61291 54996
+61292 77181
+61293 66583
+61294 856
+61295 56631
+61296 68502
+61297 78831
+61298 70919
+61299 59298
+61300 31913
+61301 59813
+61302 59819
+61303 26693
+61304 73633
+61305 7513
+61306 34018
+61307 41072
+61308 66004
+61309 81080
+61310 28906
+61311 56750
+61312 54100
+61313 73466
+61314 61276
+61315 56098
+61316 33401
+61317 20553
+61318 33690
+61319 37702
+61320 24829
+61321 43718
+61322 2178
+61323 17222
+61324 45841
+61325 4432
+61326 49777
+61327 37356
+61328 37356
+61329 49777
+61330 61347
+61331 49777
+61332 57926
+61333 21513
+61334 30691
+61335 37211
+61336 78730
+61337 40799
+61338 43319
+61339 58490
+61340 49619
+61341 52726
+61342 53481
+61343 64178
+61344 64214
+61345 66439
+61346 66649
+61347 23975
+61348 30123
+61349 37817
+61350 61351
+61350 65114
+61351 75829
+61352 49183
+61353 49777
+61354 41922
+61355 55910
+61355 69471
+61356 36631
+61357 59418
+61358 23004
+61359 31597
+61360 69283
+61361 20956
+61362 49777
+61363 32899
+61364 63373
+61365 66436
+61366 52912
+61367 49943
+61368 37517
+61369 15473
+61370 33180
+61371 44412
+61372 35461
+61373 69841
+61374 56164
+61375 40583
+61376 66661
+61377 66501
+61378 17357
+61379 7302
+61380 10061
+61381 36818
+61382 37701
+61383 70929
+61384 40123
+61385 40123
+61386 22517
+61387 27787
+61388 30769
+61389 50477
+61390 54100
+61391 46882
+61392 68508
+61393 22517
+61394 43911
+61395 49290
+61396 57372
+61397 33017
+61398 70264
+61399 35486
+61400 21513
+61401 33143
+61402 42711
+61403 40846
+61404 66380
+61405 28099
+61406 41555
+61407 72946
+61408 72946
+61409 27422
+61410 55789
+61411 28845
+61412 51244
+61413 51245
+61414 52105
+61415 40150
+61416 73432
+61417 57669
+61418 70899
+61419 71973
+61420 53623
+61421 23066
+61422 62242
+61423 60947
+61424 43300
+61425 15784
+61426 54877
+61427 59385
+61428 50963
+61428 56272
+61429 44326
+61430 43299
+61430 58860
+61431 45062
+61432 39130
+61433 56666
+61434 78208
+61435 57439
+61436 78291
+61437 31897
+61438 20724
+61439 65249
+61440 43827
+61441 72747
+61442 42747
+61443 2071
+61444 12967
+61445 21894
+61446 60105
+61447 7274
+61448 71833
+61449 20956
+61450 59317
+61451 49918
+61452 27155
+61453 35120
+61454 43101
+61455 70291
+61456 61477
+61457 62360
+61458 2911
+61459 14070
+61460 66640
+61461 49273
+61462 59972
+61463 74926
+61464 59317
+61465 22663
+61466 55220
+61467 44447
+61468 61470
+61469 30796
+61470 55223
+61471 20724
+61472 55223
+61473 34116
+61474 66260
+61475 54039
+61476 78831
+61477 61228
+61478 62681
+61479 23004
+61480 37523
+61481 31806
+61482 31806
+61483 31806
+61484 31806
+61485 20925
+61486 56359
+61487 61477
+61488 61228
+61488 61479
+61489 72074
+61490 44064
+61491 50105
+61492 33827
+61493 61490
+61494 80515
+61495 42747
+61496 34372
+61497 37579
+61498 41842
+61499 22300
+61500 46802
+61501 56492
+61502 22798
+61503 68122
+61504 59385
+61505 62354
+61506 74959
+61507 20794
+61507 52318
+61508 37955
+61509 63980
+61510 36924
+61511 76060
+61512 4516
+61513 22779
+61514 79184
+61515 40390
+61516 22749
+61517 21162
+61518 49561
+61519 21162
+61520 22798
+61521 77824
+61522 69283
+61523 52727
+61524 58246
+61525 27348
+61526 2911
+61527 30626
+61528 33342
+61529 42037
+61530 32419
+61531 32410
+61532 6926
+61533 21124
+61534 81341
+61535 52819
+61536 21124
+61537 48693
+61538 68759
+61539 68759
+61540 49777
+61541 37955
+61542 76093
+61543 40865
+61544 48695
+61545 25646
+61546 20570
+61547 63313
+61548 20428
+61549 59178
+61550 49918
+61551 76249
+61552 70974
+61553 56921
+61554 55037
+61555 55694
+61556 74119
+61557 47665
+61558 22879
+61559 70760
+61560 55485
+61561 56504
+61562 71959
+61563 39494
+61564 52051
+61565 75155
+61566 20695
+61567 55526
+61568 37422
+61569 61564
+61570 52049
+61571 21971
+61572 30578
+61573 77152
+61574 53215
+61575 20841
+61576 75465
+61577 81076
+61578 21691
+61579 52049
+61580 53215
+61581 36760
+61582 70760
+61583 50569
+61584 44212
+61585 40069
+61586 68239
+61587 71685
+61588 28209
+61589 44212
+61589 61388
+61590 59385
+61591 53276
+61592 64325
+61593 74957
+61594 28014
+61595 42811
+61596 59830
+61597 49272
+61598 59970
+61599 58849
+61600 4168
+61601 42100
+61602 21280
+61603 30001
+61604 40642
+61605 30786
+61606 30797
+61607 59178
+61608 74557
+61609 39418
+61610 38824
+61611 33970
+61611 40877
+61612 36870
+61612 77156
+61613 39690
+61614 39433
+61615 39474
+61616 39690
+61617 66264
+61618 21691
+61619 23581
+61620 56314
+61621 40234
+61622 61621
+61623 40877
+61624 61791
+61625 63980
+61626 9481
+61627 46000
+61628 46003
+61629 51103
+61630 51105
+61631 53361
+61632 53364
+61633 61625
+61634 75508
+61635 55132
+61636 55130
+61637 55127
+61638 40877
+61639 32381
+61640 44324
+61641 70760
+61642 61858
+61643 79254
+61644 69593
+61645 74528
+61646 30784
+61647 50700
+61648 40498
+61649 77646
+61650 70074
+61651 78917
+61652 33582
+61653 60570
+61654 18211
+61655 27202
+61656 46358
+61657 40888
+61658 72415
+61659 78831
+61660 56841
+61661 34727
+61662 40399
+61663 20792
+61664 22510
+61665 61858
+61666 61858
+61667 61858
+61668 27346
+61669 43842
+61670 66522
+61671 42961
+61672 64570
+61673 61407
+61674 71598
+61675 75418
+61676 44291
+61677 22468
+61678 20407
+61679 22734
+61680 30797
+61681 39210
+61682 40019
+61683 45057
+61684 61001
+61685 57528
+61686 64215
+61687 66388
+61688 76002
+61689 76004
+61690 76824
+61691 23741
+61692 63926
+61693 68818
+61694 57531
+61695 31609
+61696 20570
+61697 51784
+61698 58573
+61699 26994
+61700 64465
+61701 72345
+61702 73104
+61703 26100
+61704 26101
+61705 26994
+61706 47665
+61707 21811
+61708 62299
+61709 62306
+61710 62290
+61711 76004
+61712 77142
+61713 36866
+61714 68818
+61715 52727
+61716 22866
+61717 47665
+61718 55397
+61719 38475
+61720 61185
+61721 57134
+61722 61157
+61722 73830
+61723 71715
+61724 20927
+61725 57115
+61726 54359
+61727 70052
+61728 57109
+61729 71847
+61730 57122
+61731 80679
+61732 41511
+61733 43401
+61734 55896
+61735 28316
+61735 48445
+61736 66508
+61737 42840
+61738 2911
+61739 23356
+61740 26157
+61741 59627
+61742 36942
+61743 46882
+61744 39181
+61745 25145
+61746 25079
+61747 47665
+61748 2280
+61748 6958
+61749 47533
+61750 49777
+61751 41382
+61752 61869
+61753 61872
+61754 77693
+61755 23165
+61756 36854
+61757 36534
+61758 55910
+61759 73839
+61760 76879
+61761 61758
+61762 41631
+61763 53124
+61764 61758
+61765 54609
+61766 20920
+61767 66508
+61768 24994
+61769 66508
+61770 47738
+61771 77675
+61772 25731
+61773 34201
+61774 6925
+61775 55154
+61776 32410
+61777 20853
+61778 55104
+61779 60357
+61780 35525
+61781 39065
+61782 29256
+61783 55659
+61784 22537
+61785 76483
+61786 73432
+61787 63300
+61788 20792
+61789 30578
+61790 61243
+61791 66647
+61792 70876
+61793 49274
+61794 79248
+61795 40706
+61796 27203
+61797 43420
+61798 55963
+61799 62252
+61800 63192
+61801 65434
+61802 80568
+61803 59480
+61804 40895
+61805 25471
+61806 49286
+61807 80025
+61808 80848
+61809 26307
+61810 23569
+61811 60633
+61812 30642
+61813 60633
+61814 67086
+61815 60464
+61816 50810
+61817 4747
+61818 47546
+61819 37756
+61820 60466
+61821 37579
+61822 41054
+61822 61815
+61823 32320
+61824 52460
+61824 61815
+61825 39732
+61826 48627
+61827 46075
+61828 52604
+61829 78816
+61830 74490
+61831 74490
+61832 23219
+61833 56146
+61834 75003
+61835 28629
+61836 66641
+61837 67244
+61838 35227
+61839 39433
+61840 55132
+61841 79423
+61842 29841
+61843 49991
+61844 21375
+61845 50657
+61846 52351
+61847 32529
+61848 36370
+61849 38621
+61850 46476
+61851 37446
+61852 29981
+61853 81017
+61854 41371
+61855 24774
+61856 29688
+61857 81306
+61858 32478
+61859 36666
+61860 32498
+61861 42432
+61862 47802
+61863 63058
+61864 48404
+61865 52460
+61866 8706
+61867 27572
+61868 22062
+61869 43565
+61870 62687
+61871 23345
+61872 61147
+61873 61141
+61874 26597
+61875 66977
+61876 72880
+61877 37579
+61878 32541
+61879 68266
+61880 32000
+61881 25262
+61882 32541
+61883 54100
+61884 32444
+61885 52105
+61886 51107
+61887 76080
+61888 78364
+61889 28409
+61890 33714
+61891 27348
+61892 80847
+61893 47224
+61894 63859
+61895 54298
+61896 61894
+61897 55963
+61898 29760
+61899 46533
+61900 69189
+61901 50204
+61902 35471
+61903 74490
+61904 30946
+61905 51823
+61906 52272
+61907 25501
+61908 75873
+61909 23163
+61910 21811
+61911 66260
+61912 24212
+61913 16588
+61914 75602
+61915 44219
+61916 55603
+61917 26253
+61918 26954
+61919 41054
+61920 39918
+61921 40809
+61922 49737
+61923 67902
+61924 29413
+61925 32977
+61926 34695
+61927 46686
+61928 74741
+61929 60616
+61930 37343
+61931 47665
+61932 47665
+61933 51000
+61934 1641
+61935 77816
+61936 41424
+61937 68373
+61938 35522
+61939 26172
+61940 34953
+61941 58576
+61942 81025
+61943 41054
+61944 56259
+61945 62453
+61946 44056
+61947 44065
+61948 72246
+61949 46882
+61950 37168
+61951 50036
+61952 72826
+61953 52779
+61954 25257
+61954 66727
+61955 21894
+61956 75182
+61957 57992
+61958 29725
+61959 35471
+61960 25821
+61961 33442
+61962 19954
+61963 68387
+61964 25076
+61964 65406
+61965 41666
+61966 46265
+61967 31717
+61968 42203
+61969 21051
+61970 54813
+61971 39193
+61972 68564
+61973 42049
+61974 28296
+61975 72499
+61976 80824
+61977 41842
+61978 77824
+61979 47665
+61980 43713
+61981 47665
+61982 33316
+61983 80514
+61984 77347
+61985 72143
+61986 60972
+61987 1785
+61988 64631
+61989 33457
+61990 47238
+61991 64672
+61992 53706
+61993 44347
+61994 56022
+61995 31224
+61996 42747
+61997 32417
+61998 40570
+61999 3087
+62000 32150
+62001 62296
+62002 43844
+62003 79251
+62004 2911
+62005 32177
+62006 61995
+62007 62296
+62008 52416
+62009 73236
+62010 4830
+62011 33092
+62012 29240
+62013 64154
+62014 23164
+62015 29483
+62016 20956
+62017 55106
+62018 61961
+62019 58542
+62020 56125
+62021 60642
+62022 62687
+62023 22601
+62024 64672
+62025 63769
+62026 79691
+62027 74251
+62028 41054
+62029 24720
+62030 2684
+62031 19066
+62032 19068
+62033 38721
+62034 61934
+62035 48405
+62036 32735
+62037 74119
+62038 80150
+62039 62453
+62040 74746
+62041 57720
+62042 55512
+62043 59435
+62044 69797
+62045 22519
+62046 21521
+62047 69351
+62048 11482
+62049 31390
+62050 41547
+62051 77763
+62052 41906
+62053 77763
+62054 35627
+62055 42412
+62056 27104
+62057 31678
+62058 46882
+62059 14568
+62060 65258
+62061 71368
+62062 31571
+62063 21095
+62064 4203
+62065 42344
+62066 33639
+62067 32955
+62068 61016
+62069 78941
+62070 30780
+62071 72410
+62072 31717
+62073 55132
+62074 23165
+62075 34018
+62076 62441
+62077 1592
+62078 46405
+62079 62532
+62080 78999
+62081 47665
+62082 64979
+62083 41054
+62084 29483
+62085 47894
+62086 33980
+62087 30571
+62088 76067
+62089 62574
+62090 70152
+62091 77918
+62092 72596
+62093 72397
+62094 58269
+62095 40794
+62096 79880
+62097 59444
+62098 29483
+62099 29624
+62100 27431
+62101 49777
+62102 37167
+62103 58543
+62104 39193
+62105 4696
+62106 70955
+62107 23165
+62108 66672
+62109 62108
+62110 42168
+62111 73440
+62112 71766
+62113 69136
+62114 33466
+62115 77269
+62116 40629
+62117 6768
+62118 73550
+62119 73550
+62120 79166
+62121 42523
+62122 28790
+62123 39191
+62124 71952
+62125 62180
+62126 59917
+62127 45800
+62128 26305
+62129 23114
+62130 21825
+62131 76255
+62132 73662
+62133 61961
+62134 62055
+62135 25275
+62136 24671
+62136 76264
+62137 79003
+62138 33639
+62139 29602
+62140 68127
+62141 2911
+62142 46882
+62143 62442
+62144 66614
+62145 25074
+62146 79986
+62147 68196
+62148 79343
+62149 37167
+62150 62307
+62151 74362
+62152 40028
+62153 55455
+62154 72379
+62155 64190
+62156 78008
+62157 78067
+62158 60773
+62159 60639
+62160 39846
+62161 24484
+62162 36729
+62163 62162
+62164 62162
+62165 54656
+62166 67668
+62167 74942
+62168 25149
+62169 80568
+62170 33069
+62171 37579
+62172 70264
+62173 57106
+62174 62679
+62175 45056
+62176 32287
+62177 57714
+62178 43812
+62179 63137
+62180 62679
+62181 65564
+62182 72076
+62183 60567
+62184 33273
+62185 64531
+62186 50809
+62187 23287
+62188 51468
+62189 25816
+62190 27268
+62191 54938
+62191 75013
+62192 57372
+62193 40399
+62194 28241
+62195 16759
+62196 55220
+62197 78996
+62198 33505
+62199 21405
+62200 78734
+62201 23079
+62202 33621
+62203 21114
+62204 66672
+62205 78778
+62206 45113
+62207 54463
+62208 20956
+62209 66672
+62210 21907
+62211 56021
+62212 40630
+62213 28972
+62214 28970
+62215 61822
+62216 23166
+62217 28800
+62218 25333
+62219 81061
+62220 26209
+62220 36370
+62221 41580
+62222 28860
+62223 22603
+62224 54154
+62225 42727
+62226 67245
+62227 42729
+62228 21191
+62229 28573
+62230 79438
+62231 79949
+62232 36865
+62233 64737
+62234 23004
+62235 56446
+62236 45712
+62237 62637
+62238 72106
+62239 36569
+62240 30544
+62241 21829
+62242 53374
+62243 56845
+62244 70974
+62245 49163
+62246 38435
+62247 62245
+62248 42548
+62249 40283
+62250 37615
+62251 26920
+62252 43215
+62253 36380
+62254 63403
+62255 39181
+62255 46882
+62256 872
+62257 41918
+62258 45072
+62259 69189
+62260 74583
+62261 76341
+62262 18616
+62263 30138
+62264 42984
+62265 30138
+62266 28241
+62267 59242
+62268 56315
+62269 44347
+62270 57615
+62271 30138
+62272 68817
+62273 64981
+62274 62790
+62275 25488
+62276 53926
+62277 34590
+62278 54609
+62279 25634
+62280 61710
+62281 32919
+62282 49777
+62283 58375
+62284 63607
+62285 36789
+62286 76094
+62287 32689
+62288 63887
+62289 28248
+62290 25634
+62291 33763
+62292 20959
+62293 30157
+62294 31915
+62295 28543
+62296 37560
+62297 41299
+62298 57517
+62298 62306
+62299 44496
+62300 48230
+62301 54972
+62302 59335
+62303 62304
+62304 57526
+62305 23016
+62306 62301
+62307 62304
+62308 76975
+62309 79202
+62310 47665
+62311 24708
+62312 78816
+62313 29897
+62314 66260
+62315 79641
+62316 6498
+62317 80926
+62318 63248
+62319 32177
+62320 62207
+62321 39722
+62322 20724
+62323 21493
+62324 62290
+62325 64361
+62326 48898
+62327 60642
+62328 40961
+62329 30437
+62330 73106
+62331 54043
+62332 61694
+62333 64325
+62334 32035
+62335 62331
+62336 77824
+62337 22930
+62338 49613
+62339 40069
+62340 62339
+62341 64305
+62342 35687
+62343 72596
+62344 34593
+62344 56272
+62345 28891
+62346 38483
+62347 74527
+62348 21075
+62349 45683
+62350 79537
+62351 70974
+62352 23070
+62353 77670
+62354 71786
+62355 23482
+62356 24504
+62357 27104
+62358 40844
+62359 51951
+62360 59178
+62361 81014
+62362 71709
+62363 49824
+62364 45904
+62365 63670
+62366 70192
+62367 70192
+62368 27755
+62369 59938
+62370 40771
+62371 54617
+62372 70044
+62373 49275
+62374 42545
+62375 33639
+62376 35184
+62377 35522
+62378 40038
+62379 73907
+62380 22625
+62381 70044
+62382 73900
+62383 65893
+62384 70105
+62385 70044
+62386 62372
+62387 65258
+62388 65434
+62389 80199
+62390 50841
+62391 64357
+62392 22930
+62393 75003
+62394 62372
+62395 67529
+62396 70974
+62397 48355
+62398 37956
+62399 33152
+62400 33581
+62401 25488
+62402 67460
+62403 32082
+62404 23070
+62405 58135
+62406 20611
+62407 26693
+62408 27298
+62409 23410
+62410 62785
+62411 71598
+62412 42545
+62413 76817
+62414 35248
+62415 56553
+62416 41098
+62417 34817
+62418 70375
+62419 62247
+62420 20921
+62421 39734
+62422 37862
+62423 22193
+62424 22002
+62425 20955
+62426 20920
+62427 61185
+62428 64481
+62429 71955
+62430 39494
+62431 25988
+62431 64092
+62432 58374
+62433 27202
+62434 68727
+62435 27485
+62436 60491
+62437 72248
+62438 23282
+62439 46336
+62440 62453
+62441 57130
+62442 20920
+62443 29474
+62444 31443
+62445 38403
+62446 53328
+62447 60492
+62448 4420
+62449 33007
+62450 44054
+62451 63633
+62452 59608
+62453 23560
+62454 52594
+62455 22999
+62456 22660
+62457 38750
+62458 24911
+62459 73125
+62460 66908
+62461 41571
+62462 62461
+62463 64979
+62464 50980
+62465 40004
+62466 45966
+62467 60009
+62468 25471
+62469 31103
+62470 20955
+62471 69841
+62472 63861
+62473 2082
+62474 32880
+62475 79392
+62476 72446
+62477 48620
+62478 69328
+62479 55343
+62480 38528
+62481 79373
+62482 21169
+62483 21169
+62484 37356
+62485 20550
+62486 55265
+62487 39789
+62488 59250
+62489 67025
+62490 30782
+62491 59388
+62492 78926
+62493 23267
+62494 55132
+62495 69715
+62496 30084
+62497 72075
+62498 49920
+62499 56703
+62500 22517
+62501 59970
+62502 62498
+62502 62612
+62503 57238
+62504 59317
+62505 62372
+62506 46834
+62507 73907
+62508 57791
+62509 21008
+62510 25734
+62511 42943
+62512 80926
+62513 33094
+62513 46882
+62514 37168
+62515 23765
+62516 46582
+62517 66612
+62518 19547
+62519 38630
+62520 35935
+62521 79486
+62522 80595
+62523 58158
+62524 58158
+62525 73594
+62526 30642
+62527 33067
+62528 62282
+62529 31730
+62530 50196
+62531 55104
+62532 70291
+62533 76759
+62534 80930
+62535 27521
+62536 76426
+62537 41382
+62538 79987
+62539 20006
+62540 64590
+62541 26673
+62542 39421
+62543 39421
+62544 43893
+62545 48092
+62546 43718
+62547 38672
+62547 39191
+62548 14919
+62549 33442
+62550 33442
+62551 64551
+62552 68508
+62553 30824
+62554 30825
+62555 26973
+62556 29631
+62557 61306
+62558 47665
+62559 34705
+62560 78587
+62561 34695
+62562 42382
+62563 43718
+62564 39191
+62565 21155
+62566 7577
+62567 76138
+62568 68894
+62569 7577
+62570 58158
+62571 42590
+62572 5607
+62573 36279
+62574 76067
+62575 21438
+62576 6479
+62577 21205
+62577 44044
+62578 46882
+62579 71941
+62580 48003
+62581 36763
+62582 71600
+62583 37955
+62584 60722
+62585 31724
+62586 61539
+62587 52826
+62588 73104
+62589 66447
+62590 49929
+62591 27773
+62592 70583
+62593 41054
+62594 62808
+62595 67138
+62596 30774
+62597 62596
+62598 77510
+62599 17663
+62600 25493
+62601 51951
+62602 63383
+62603 76556
+62604 55163
+62605 67586
+62606 62612
+62607 78616
+62608 37348
+62609 66801
+62610 62612
+62611 20415
+62612 66801
+62613 61384
+62614 49918
+62615 20428
+62616 37579
+62617 23124
+62618 33894
+62618 79003
+62619 68889
+62620 33891
+62621 38721
+62622 64814
+62623 63334
+62624 30082
+62625 43837
+62626 72075
+62627 33165
+62628 61086
+62629 68019
+62630 44130
+62631 46905
+62632 25295
+62633 27316
+62634 37119
+62635 42459
+62636 3452
+62637 62638
+62638 65612
+62639 79031
+62640 76338
+62641 55124
+62642 29760
+62643 60231
+62644 32551
+62645 43522
+62646 33639
+62647 51654
+62648 68651
+62649 43703
+62650 22525
+62651 33637
+62652 59970
+62653 62305
+62654 55223
+62655 69122
+62656 33442
+62657 37428
+62658 53347
+62659 81056
+62660 62659
+62661 52264
+62661 62659
+62662 62659
+62663 66850
+62664 52863
+62665 78959
+62666 53351
+62667 44472
+62668 40894
+62669 62619
+62670 62453
+62671 59317
+62672 34729
+62673 61317
+62674 37579
+62675 68081
+62676 22517
+62677 72747
+62678 33067
+62679 53539
+62680 49456
+62681 22193
+62682 21524
+62683 78307
+62684 43155
+62685 66475
+62686 30585
+62687 39808
+62688 53182
+62689 75273
+62690 30585
+62691 46535
+62692 79532
+62693 29008
+62694 33834
+62694 62683
+62695 77068
+62696 52382
+62697 71766
+62698 57194
+62699 33193
+62700 59333
+62701 63138
+62702 63134
+62703 25616
+62704 74966
+62705 74977
+62706 59480
+62707 52382
+62708 54622
+62709 23219
+62710 37414
+62711 49737
+62712 72605
+62713 44474
+62714 59990
+62715 23585
+62715 68768
+62716 49731
+62717 77670
+62718 77069
+62719 78316
+62720 40225
+62721 55037
+62722 36848
+62723 62736
+62724 2911
+62725 36057
+62726 30790
+62726 44212
+62727 15680
+62728 62736
+62729 55933
+62730 15680
+62731 69980
+62732 15680
+62733 51491
+62734 51487
+62735 52678
+62736 62290
+62737 62747
+62738 24504
+62739 30698
+62740 55933
+62741 42150
+62742 29483
+62743 22044
+62744 34405
+62745 36033
+62746 42431
+62747 47665
+62748 14767
+62749 30157
+62750 52235
+62751 33921
+62752 33681
+62753 47037
+62754 45786
+62755 59242
+62756 13570
+62757 59250
+62758 33273
+62759 30771
+62760 10248
+62761 25384
+62762 77654
+62763 38359
+62764 62180
+62765 41828
+62766 24250
+62767 25278
+62768 57183
+62769 57183
+62770 81056
+62771 23317
+62772 4050
+62773 47665
+62774 57091
+62775 20581
+62776 20924
+62777 26954
+62778 32701
+62779 4694
+62780 53531
+62781 80935
+62782 58835
+62783 63504
+62784 52307
+62785 72767
+62786 20506
+62787 73142
+62788 78688
+62789 50574
+62790 23321
+62791 62247
+62792 49461
+62793 31745
+62794 49876
+62795 36652
+62796 39999
+62797 78616
+62798 32689
+62799 32689
+62800 23283
+62801 33755
+62802 34203
+62803 33671
+62804 49655
+62805 43647
+62806 29358
+62807 71607
+62808 71598
+62809 78309
+62810 52382
+62811 52382
+62812 62528
+62813 71605
+62814 64048
+62815 59212
+62816 59394
+62817 21106
+62818 35805
+62819 42965
+62820 36791
+62821 50093
+62822 76786
+62823 60444
+62824 34399
+62825 29307
+62826 18616
+62827 67889
+62828 72589
+62829 34398
+62830 62304
+62831 41689
+62832 50105
+62833 2462
+62834 5168
+62835 62174
+62836 62828
+62837 62180
+62838 56022
+62839 79673
+62840 24486
+62841 40060
+62841 49520
+62842 1785
+62843 54436
+62843 73349
+62844 48405
+62845 70189
+62846 38467
+62847 2416
+62848 45138
+62849 4709
+62850 64810
+62851 62883
+62852 62871
+62853 62872
+62854 63841
+62855 23515
+62856 28686
+62857 22587
+62858 80903
+62859 33437
+62860 51479
+62861 26713
+62862 26209
+62863 76131
+62864 39455
+62865 74959
+62866 40410
+62866 62354
+62867 41054
+62868 62865
+62869 74959
+62870 62925
+62871 54966
+62872 19009
+62873 41125
+62874 44439
+62875 62257
+62876 55208
+62877 62871
+62878 62872
+62879 872
+62880 71788
+62881 42407
+62882 50026
+62883 33086
+62884 40069
+62885 30784
+62886 20890
+62887 25634
+62888 59388
+62889 57278
+62890 22763
+62891 57840
+62892 43810
+62893 27019
+62894 60250
+62895 46379
+62896 32239
+62897 59178
+62898 61118
+62899 68502
+62900 52727
+62901 64268
+62902 57106
+62903 68239
+62904 59830
+62905 25634
+62906 33274
+62907 41666
+62908 25104
+62909 20890
+62910 62354
+62911 66612
+62912 29430
+62913 80883
+62914 22087
+62915 26209
+62916 74007
+62917 80883
+62918 67036
+62919 75502
+62920 75965
+62921 75966
+62922 57106
+62923 41430
+62924 78386
+62925 62883
+62926 51479
+62927 73104
+62928 73104
+62929 62354
+62930 79144
+62931 79144
+62932 46706
+62933 43703
+62934 43718
+62935 39191
+62936 31483
+62937 31482
+62938 27745
+62939 46220
+62940 46220
+62941 48406
+62942 6043
+62943 27344
+62944 27346
+62945 68266
+62946 29413
+62947 21155
+62948 46398
+62949 31835
+62950 51904
+62951 43844
+62952 35482
+62953 35483
+62954 61961
+62955 46084
+62956 81236
+62957 23165
+62958 41054
+62959 63963
+62960 63788
+62961 79017
+62962 24913
+62963 42652
+62964 27840
+62965 48405
+62966 65234
+62967 45311
+62968 48405
+62969 67167
+62970 29695
+62971 40883
+62972 32311
+62973 80025
+62974 37975
+62975 40629
+62976 59394
+62977 66730
+62978 27019
+62979 62174
+62980 75010
+62981 1785
+62982 60492
+62983 44065
+62983 75003
+62984 60475
+62985 20707
+62986 67573
+62987 19954
+62988 18616
+62989 79938
+62990 27485
+62991 79076
+62992 52279
+62993 61086
+62994 78268
+62995 65639
+62996 40399
+62997 42041
+62998 23329
+62999 49900
+63000 45515
+63001 71685
+63002 71941
+63003 63031
+63004 27202
+63005 27348
+63006 42862
+63007 39969
+63008 65185
+63009 75733
+63010 34067
+63011 34069
+63012 29123
+63013 60722
+63014 62453
+63015 39290
+63016 60444
+63017 19954
+63018 22468
+63019 41054
+63020 23516
+63021 78831
+63022 44373
+63023 73397
+63024 33881
+63025 78673
+63026 42747
+63027 54438
+63028 42553
+63029 61086
+63030 21783
+63031 44473
+63032 57106
+63033 64979
+63034 33669
+63035 50417
+63036 36378
+63037 32909
+63038 61086
+63039 46344
+63040 20724
+63041 50247
+63042 32466
+63043 71593
+63044 46377
+63045 64067
+63046 70111
+63047 37955
+63048 54128
+63049 30306
+63050 33581
+63051 55148
+63052 72449
+63053 48094
+63054 29071
+63055 22917
+63056 68266
+63057 27745
+63058 55135
+63059 23121
+63060 45737
+63061 20854
+63062 37579
+63063 70508
+63064 28589
+63065 35525
+63066 60637
+63067 51068
+63068 68522
+63069 75678
+63070 31152
+63071 46400
+63072 46398
+63073 45737
+63074 47121
+63075 64157
+63076 4746
+63077 27006
+63078 44439
+63079 61858
+63080 49220
+63081 38066
+63082 22529
+63083 37579
+63084 27461
+63085 45055
+63086 43276
+63087 59151
+63088 31880
+63089 26219
+63090 46977
+63091 63085
+63092 59150
+63093 56885
+63094 78047
+63095 31413
+63096 61335
+63097 70443
+63098 34290
+63099 77017
+63100 29688
+63101 40028
+63102 70869
+63103 78831
+63104 54424
+63105 78779
+63106 44299
+63107 40028
+63108 29199
+63109 30604
+63110 29688
+63111 25564
+63112 29760
+63113 16770
+63114 53328
+63115 43812
+63116 80568
+63117 77809
+63118 63050
+63119 11405
+63120 59993
+63121 30589
+63122 53049
+63123 29008
+63124 29012
+63125 59990
+63126 36443
+63127 42747
+63128 79692
+63129 23960
+63130 40737
+63131 63963
+63132 63130
+63133 73104
+63134 66431
+63135 62679
+63136 67508
+63137 33273
+63138 23959
+63139 59214
+63140 1428
+63141 33505
+63142 66629
+63143 58508
+63144 41990
+63145 30607
+63146 30805
+63147 34207
+63148 41557
+63149 49178
+63150 14773
+63151 14775
+63152 66411
+63153 50086
+63154 39717
+63155 64979
+63156 58257
+63157 62756
+63158 22191
+63159 22801
+63160 76715
+63161 61470
+63162 52283
+63163 11311
+63164 66431
+63165 39783
+63166 5547
+63167 42217
+63168 33771
+63169 46076
+63170 38528
+63171 40786
+63172 25633
+63173 59149
+63174 23066
+63175 55049
+63176 2437
+63177 58573
+63178 33581
+63179 29660
+63180 32687
+63181 53623
+63182 80545
+63183 48405
+63184 58576
+63185 23346
+63186 30946
+63187 67365
+63188 30604
+63189 50811
+63190 55610
+63191 31730
+63192 29476
+63193 30265
+63194 25634
+63195 45896
+63196 50575
+63196 68759
+63197 22595
+63198 63199
+63199 6958
+63200 63199
+63201 29513
+63202 30327
+63203 55390
+63204 57429
+63205 39846
+63206 69724
+63207 74928
+63208 75642
+63209 78831
+63210 63134
+63211 52206
+63212 44419
+63213 44299
+63214 60371
+63215 49918
+63216 48092
+63217 70367
+63218 10793
+63219 26202
+63220 26202
+63221 69416
+63222 74242
+63223 48445
+63224 53328
+63225 79371
+63226 11482
+63227 54896
+63228 58838
+63229 57741
+63230 63227
+63231 44474
+63232 37559
+63233 74893
+63234 62186
+63235 22595
+63236 40148
+63237 22879
+63238 61421
+63239 64240
+63240 36175
+63241 33660
+63242 15600
+63243 23714
+63244 49777
+63245 33173
+63246 33894
+63246 79003
+63247 33639
+63248 33637
+63249 63298
+63250 73336
+63251 44149
+63252 29849
+63253 21894
+63254 62290
+63255 51068
+63256 71973
+63257 48887
+63257 54021
+63258 35922
+63259 25882
+63260 66838
+63260 68239
+63261 29453
+63262 68239
+63263 31052
+63264 35572
+63265 68239
+63266 41681
+63267 50611
+63268 58082
+63269 61281
+63270 38534
+63271 67598
+63271 71737
+63272 79125
+63273 26611
+63274 41666
+63275 41666
+63276 43844
+63277 12432
+63278 44369
+63279 60105
+63280 65226
+63281 68165
+63282 73765
+63283 71411
+63284 2911
+63285 79125
+63286 3503
+63287 79125
+63288 79125
+63289 62296
+63290 43844
+63291 62309
+63292 65553
+63293 53347
+63294 39724
+63295 9105
+63296 63172
+63297 61702
+63298 66766
+63299 55156
+63300 39465
+63301 74931
+63302 55132
+63303 47224
+63304 78816
+63305 59938
+63306 48095
+63307 21206
+63308 31658
+63309 52819
+63310 23239
+63311 33670
+63312 48750
+63313 25854
+63314 30337
+63314 41504
+63315 55104
+63316 51306
+63317 37579
+63318 40389
+63319 43406
+63320 70255
+63321 34984
+63322 73336
+63323 34705
+63324 4203
+63325 30198
+63326 80150
+63327 25529
+63328 79000
+63329 30306
+63330 34695
+63331 70265
+63332 63246
+63333 29067
+63334 24504
+63335 54810
+63336 35891
+63337 68508
+63338 26158
+63339 55449
+63340 27404
+63341 28845
+63342 77269
+63343 30604
+63344 41547
+63345 80020
+63346 43111
+63347 43111
+63348 26770
+63349 25450
+63350 63712
+63351 53291
+63352 41069
+63353 61847
+63354 61340
+63355 63137
+63356 71786
+63357 55220
+63357 76671
+63358 38677
+63359 22165
+63360 26794
+63361 33637
+63362 35823
+63363 51355
+63364 55566
+63365 23739
+63366 61625
+63367 12078
+63368 39679
+63368 57176
+63369 45901
+63370 49777
+63371 59938
+63372 55851
+63373 64979
+63374 61685
+63375 10254
+63376 27594
+63377 27730
+63377 55267
+63378 49461
+63379 78582
+63380 34020
+63381 34510
+63382 37848
+63383 38516
+63383 63403
+63384 22089
+63385 28758
+63386 53476
+63387 53727
+63388 56363
+63389 52312
+63390 24081
+63391 50198
+63392 27725
+63393 39420
+63394 23933
+63395 43054
+63396 62419
+63397 37354
+63398 63403
+63399 69701
+63400 73142
+63401 73248
+63402 36942
+63403 54100
+63403 76759
+63404 33771
+63405 39465
+63406 33154
+63407 29528
+63408 70974
+63409 72767
+63410 34389
+63411 38171
+63412 33634
+63413 22537
+63414 78583
+63415 22765
+63416 78583
+63417 49442
+63418 39734
+63419 32287
+63420 65550
+63421 64051
+63422 42251
+63423 51117
+63424 75733
+63425 14919
+63426 49415
+63427 53220
+63428 61541
+63429 63416
+63430 65804
+63431 65805
+63432 45957
+63433 23772
+63434 46363
+63435 33321
+63436 34025
+63437 67490
+63438 80514
+63439 43703
+63440 45739
+63441 41260
+63442 47665
+63443 43615
+63444 65672
+63445 42747
+63446 42747
+63447 24196
+63448 37428
+63449 80514
+63450 74357
+63451 41842
+63452 77523
+63453 59317
+63454 80526
+63455 23128
+63456 80991
+63457 81000
+63458 19993
+63459 29123
+63460 56792
+63461 34755
+63462 24501
+63463 77659
+63464 55563
+63465 28782
+63466 6470
+63467 70291
+63468 17385
+63469 53277
+63470 69125
+63471 36116
+63472 70841
+63473 80991
+63474 66687
+63475 68048
+63476 66499
+63477 27202
+63478 16753
+63479 67856
+63480 63474
+63481 54597
+63482 21957
+63482 22799
+63483 61539
+63484 74567
+63485 15600
+63486 56624
+63487 50506
+63488 21489
+63489 73419
+63490 29187
+63491 35827
+63492 64979
+63493 30060
+63494 47872
+63495 20955
+63496 40617
+63497 74051
+63498 14919
+63499 30265
+63500 14919
+63501 56750
+63502 20925
+63503 31053
+63504 31493
+63505 21286
+63506 78658
+63507 31748
+63508 21404
+63509 71786
+63510 49699
+63511 30784
+63512 6479
+63513 20605
+63514 39421
+63515 22764
+63516 31597
+63517 40603
+63518 33886
+63519 67902
+63520 36615
+63521 50263
+63522 31560
+63523 59212
+63524 63626
+63525 40942
+63526 55037
+63527 49777
+63528 8705
+63529 22517
+63530 63527
+63531 15069
+63532 5344
+63533 75978
+63534 33221
+63535 36884
+63536 75771
+63537 61652
+63538 74863
+63539 33582
+63540 30351
+63541 73125
+63542 49951
+63543 33130
+63544 78732
+63545 53051
+63546 74594
+63547 37702
+63548 37703
+63549 22749
+63549 45421
+63550 22749
+63550 45421
+63551 33772
+63552 58708
+63553 76966
+63554 77107
+63555 52554
+63556 52558
+63557 67203
+63558 23122
+63559 25905
+63560 63557
+63561 23124
+63562 25908
+63563 25633
+63564 33581
+63565 41057
+63566 21117
+63567 21111
+63568 14919
+63569 31105
+63570 21198
+63571 64158
+63572 20731
+63573 73439
+63574 40618
+63575 21315
+63576 60371
+63577 21317
+63578 75988
+63579 53500
+63580 26071
+63581 33086
+63582 61228
+63583 51124
+63584 31723
+63585 14919
+63586 23848
+63587 40612
+63588 34531
+63589 57106
+63590 57741
+63591 39322
+63592 33368
+63593 29495
+63594 49311
+63595 62286
+63596 55405
+63597 74926
+63598 61185
+63599 14919
+63600 70867
+63601 60773
+63602 78662
+63603 76767
+63604 37004
+63605 58731
+63606 49163
+63607 20955
+63608 73104
+63609 47065
+63610 20955
+63611 42120
+63612 46585
+63613 60774
+63614 63373
+63615 41921
+63616 47429
+63617 43817
+63618 62186
+63619 58615
+63620 61652
+63621 33273
+63622 76475
+63623 70988
+63624 70988
+63625 78831
+63626 38869
+63627 67203
+63628 43125
+63629 79263
+63630 48955
+63631 39364
+63632 28241
+63633 39213
+63634 6958
+63635 29262
+63636 37405
+63637 55220
+63638 81074
+63639 81074
+63640 45838
+63641 53220
+63642 37955
+63643 37955
+63644 69179
+63645 25633
+63646 72464
+63647 25647
+63648 23934
+63649 67573
+63650 63167
+63651 36495
+63652 76447
+63653 45198
+63654 75718
+63655 60494
+63656 61175
+63657 64102
+63658 30339
+63659 37692
+63660 64238
+63661 23960
+63662 32909
+63663 21235
+63664 37955
+63665 75977
+63666 30605
+63667 76502
+63668 64306
+63669 33273
+63670 59389
+63671 4842
+63672 33086
+63673 23283
+63674 66723
+63675 70974
+63676 4531
+63677 49777
+63678 14919
+63679 34172
+63680 47253
+63681 20567
+63682 52382
+63683 43279
+63684 32689
+63685 40406
+63686 63874
+63687 54100
+63688 31571
+63689 54100
+63690 80028
+63691 64795
+63692 64540
+63693 27493
+63694 33337
+63695 63685
+63696 23285
+63697 36854
+63698 64544
+63699 29230
+63700 61619
+63701 60464
+63702 61685
+63703 43105
+63704 71838
+63705 37787
+63706 28741
+63707 24105
+63708 38079
+63709 44320
+63710 62679
+63711 64317
+63712 78307
+63713 79702
+63714 36136
+63715 73015
+63716 49879
+63717 37543
+63718 74499
+63719 51264
+63720 36135
+63721 36134
+63722 23572
+63723 31551
+63724 75977
+63725 60605
+63726 59005
+63727 63721
+63728 33337
+63729 25471
+63730 34681
+63731 53374
+63732 80068
+63733 80542
+63734 44412
+63735 65645
+63736 66520
+63737 55224
+63738 73803
+63739 21002
+63740 68965
+63741 45117
+63741 59333
+63742 79227
+63743 79076
+63744 22517
+63745 60685
+63746 33771
+63747 65645
+63748 27559
+63749 33774
+63750 35501
+63751 25050
+63752 43527
+63753 63760
+63754 49660
+63755 49719
+63756 53328
+63757 74124
+63758 75079
+63759 33006
+63760 40535
+63761 74967
+63762 64673
+63763 72379
+63764 36265
+63765 70994
+63766 26597
+63767 72446
+63768 65420
+63769 71838
+63770 52396
+63771 18616
+63772 18616
+63773 39248
+63774 32986
+63775 28790
+63776 39191
+63777 47665
+63778 63026
+63779 41571
+63780 68490
+63781 77112
+63782 22525
+63783 56675
+63784 80483
+63785 42770
+63786 62180
+63787 2071
+63788 15600
+63788 8509
+63789 72475
+63790 63926
+63791 50500
+63792 34698
+63793 63788
+63794 32917
+63795 64251
+63796 24639
+63797 78364
+63798 59161
+63799 49460
+63800 64215
+63801 22804
+63802 39372
+63803 42619
+63804 32318
+63805 22123
+63806 55201
+63807 37948
+63808 23365
+63809 36616
+63810 38937
+63811 47318
+63812 69847
+63813 63411
+63814 76767
+63815 62207
+63816 14919
+63817 54467
+63818 58489
+63819 29193
+63820 21184
+63821 37917
+63822 50327
+63823 11919
+63824 63818
+63825 31847
+63826 75906
+63827 22779
+63828 45983
+63829 63607
+63830 56723
+63831 49777
+63832 40889
+63833 80883
+63834 44474
+63835 56345
+63836 60467
+63837 47698
+63838 38871
+63839 59369
+63840 38485
+63841 47665
+63842 50924
+63843 60676
+63844 26235
+63845 23335
+63846 74119
+63847 22062
+63848 74204
+63849 33550
+63849 63845
+63850 65562
+63851 10249
+63852 63845
+63853 63845
+63854 23335
+63855 63854
+63856 36094
+63857 1640
+63858 14919
+63859 44411
+63860 78665
+63861 52281
+63862 52280
+63863 67868
+63864 40823
+63865 63862
+63866 63862
+63867 52280
+63868 63862
+63869 63862
+63870 45927
+63871 33970
+63872 41054
+63873 28206
+63874 55232
+63875 67907
+63876 23489
+63877 70265
+63878 33134
+63879 70974
+63880 61250
+63881 54100
+63882 23105
+63883 50041
+63884 28758
+63885 81063
+63886 28529
+63887 81063
+63888 32955
+63889 59180
+63890 78307
+63891 23581
+63892 23483
+63893 59626
+63894 60495
+63895 17789
+63896 35900
+63897 14919
+63898 31860
+63899 62880
+63900 59242
+63901 62880
+63902 63901
+63903 34197
+63904 70876
+63905 29031
+63906 29031
+63907 30559
+63908 51349
+63908 52307
+63909 75769
+63910 44056
+63911 29358
+63912 55880
+63913 65942
+63914 39948
+63915 30626
+63916 53132
+63917 58479
+63918 68763
+63919 54732
+63920 34918
+63920 58836
+63921 79639
+63922 71593
+63923 2911
+63924 47457
+63925 21198
+63926 67203
+63927 63627
+63928 34387
+63929 21889
+63930 29480
+63931 24231
+63932 24232
+63933 80644
+63934 27518
+63935 23846
+63936 23316
+63937 41119
+63938 41119
+63939 21235
+63940 32035
+63941 29883
+63942 61541
+63943 64979
+63944 55002
+63945 23076
+63946 23066
+63947 40578
+63948 30352
+63949 64187
+63950 4694
+63951 77433
+63952 77433
+63953 52833
+63954 58834
+63955 58520
+63956 34940
+63957 74557
+63958 40835
+63959 66712
+63960 55220
+63961 50257
+63962 37167
+63963 47230
+63964 76093
+63965 32291
+63966 76094
+63967 62207
+63968 58334
+63969 71503
+63970 13465
+63971 53526
+63972 63971
+63973 22811
+63974 20955
+63975 63976
+63976 38750
+63977 60947
+63978 81046
+63979 32287
+63980 61682
+63981 55529
+63982 30740
+63983 63887
+63984 63980
+63985 50447
+63986 20724
+63986 46347
+63987 66497
+63988 11450
+63989 28528
+63990 80926
+63991 22786
+63991 54349
+63992 20895
+63993 58838
+63994 45759
+63995 48207
+63996 14919
+63997 32035
+63998 36415
+63999 36419
+64000 34972
+64001 59970
+64002 49918
+64003 72218
+64004 55223
+64005 62360
+64006 14919
+64007 39874
+64008 39875
+64009 28420
+64010 20854
+64011 20849
+64012 41332
+64013 40148
+64014 57064
+64015 29599
+64016 33606
+64017 5906
+64018 40619
+64019 74893
+64020 43000
+64021 34812
+64022 30049
+64023 44212
+64024 63755
+64025 4747
+64026 33505
+64027 30769
+64028 64999
+64029 34206
+64030 36922
+64031 36100
+64032 54736
+64033 49825
+64034 63659
+64035 20895
+64036 40729
+64037 37691
+64038 4746
+64039 34290
+64040 59332
+64041 41532
+64042 65645
+64043 59385
+64044 36378
+64045 50720
+64046 78279
+64047 78596
+64048 9481
+64049 21307
+64050 21309
+64051 21169
+64052 23751
+64053 25067
+64053 72599
+64054 25138
+64054 72599
+64055 27514
+64055 72599
+64056 43046
+64056 72599
+64057 45629
+64057 72599
+64058 59394
+64059 71605
+64060 72599
+64060 75690
+64061 72599
+64061 81029
+64062 40821
+64063 71603
+64064 20577
+64065 33004
+64066 70978
+64067 30642
+64068 70512
+64069 26088
+64070 68202
+64071 35050
+64072 49178
+64073 20693
+64074 60466
+64075 73465
+64076 43962
+64077 29301
+64078 78103
+64079 80702
+64080 36691
+64081 20550
+64082 22367
+64083 20428
+64084 64085
+64085 73331
+64086 33273
+64087 63541
+64088 55203
+64089 74966
+64090 59912
+64091 61186
+64092 22598
+64093 33078
+64094 77057
+64095 36223
+64096 33154
+64096 39920
+64097 62284
+64098 34806
+64099 23569
+64100 66629
+64101 69698
+64102 75718
+64103 38831
+64104 15789
+64105 75384
+64106 78618
+64107 30526
+64108 49194
+64109 46593
+64110 52279
+64111 61228
+64112 66306
+64113 62245
+64114 78826
+64115 22771
+64116 79248
+64117 33581
+64118 33852
+64119 36316
+64120 20835
+64121 66641
+64122 30523
+64123 70974
+64124 45072
+64125 61351
+64126 59242
+64127 59248
+64128 25634
+64129 45650
+64129 51863
+64130 70762
+64131 37446
+64132 35609
+64133 50506
+64134 67036
+64135 32880
+64136 36928
+64137 46377
+64138 22137
+64139 78926
+64140 50506
+64141 33690
+64142 67606
+64143 51699
+64144 76879
+64145 1793
+64146 79489
+64147 34480
+64148 11446
+64149 22786
+64149 22798
+64150 55563
+64151 73015
+64152 49459
+64153 69841
+64154 32706
+64154 72268
+64155 32909
+64156 32909
+64157 27228
+64158 30508
+64159 74967
+64160 28546
+64161 35299
+64162 39486
+64163 2462
+64164 27207
+64165 23739
+64166 36942
+64167 30128
+64168 76502
+64169 936
+64170 52305
+64171 25106
+64172 67668
+64173 57059
+64174 37703
+64175 64117
+64176 67889
+64177 61652
+64178 43817
+64179 36175
+64180 58464
+64181 78596
+64182 40578
+64183 23316
+64184 22193
+64185 49483
+64186 61623
+64187 36884
+64188 21700
+64189 63879
+64190 74488
+64191 58614
+64192 67586
+64193 31610
+64194 49950
+64195 32909
+64196 61685
+64197 27344
+64198 32909
+64199 21710
+64200 43745
+64200 44212
+64201 21701
+64202 25821
+64203 80883
+64204 55037
+64205 40843
+64206 55154
+64207 21630
+64208 21710
+64209 68239
+64210 29462
+64211 35571
+64212 43398
+64213 58403
+64214 63164
+64215 23975
+64216 27288
+64217 72908
+64218 59790
+64219 69794
+64220 29294
+64221 61487
+64222 61487
+64223 22771
+64224 66499
+64225 59264
+64226 24843
+64227 62304
+64228 29462
+64229 64207
+64230 65202
+64231 24570
+64232 64999
+64233 34418
+64234 41070
+64235 66642
+64236 65645
+64237 33660
+64238 72268
+64239 59435
+64240 73125
+64241 64237
+64242 58822
+64243 51806
+64244 74863
+64245 49777
+64246 22300
+64247 4344
+64248 59790
+64249 30353
+64250 59786
+64251 25626
+64252 50401
+64253 57785
+64254 22133
+64255 36326
+64256 43103
+64257 36244
+64258 74965
+64259 46345
+64260 44212
+64261 22791
+64261 48706
+64262 59385
+64263 33930
+64264 36329
+64265 79516
+64266 23219
+64267 7976
+64268 44472
+64269 40894
+64270 64268
+64271 20922
+64272 20724
+64273 33690
+64274 52314
+64274 58838
+64275 33843
+64276 61363
+64277 33835
+64278 63815
+64279 32882
+64280 62666
+64281 56021
+64282 58822
+64283 42041
+64284 45674
+64285 24072
+64286 21053
+64287 39846
+64288 64325
+64289 20415
+64290 49918
+64291 34201
+64292 55223
+64293 40819
+64294 34729
+64295 36614
+64296 36612
+64297 80778
+64298 79062
+64299 33058
+64300 56748
+64301 55563
+64302 70762
+64303 66035
+64304 2911
+64305 40069
+64306 20955
+64307 34590
+64308 23723
+64309 69315
+64310 49465
+64311 40955
+64312 39133
+64313 21235
+64314 32498
+64315 27012
+64316 42461
+64317 31939
+64318 38870
+64319 21287
+64320 64979
+64321 5547
+64322 14919
+64323 65885
+64324 64323
+64325 54147
+64326 59389
+64327 56402
+64328 30784
+64329 64325
+64330 44447
+64331 78616
+64332 58628
+64333 58628
+64334 31520
+64334 36527
+64335 36175
+64336 40179
+64336 71851
+64337 76153
+64338 32035
+64339 32035
+64340 55727
+64341 41125
+64342 64353
+64343 26157
+64344 30311
+64345 67868
+64346 40489
+64347 32213
+64348 55727
+64349 41299
+64350 44496
+64351 59335
+64352 48405
+64353 23240
+64354 24538
+64355 58457
+64356 32435
+64357 55037
+64358 23797
+64359 54463
+64360 49870
+64361 64348
+64362 81400
+64363 81401
+64364 38366
+64365 77497
+64366 33273
+64367 50105
+64368 45902
+64369 40887
+64370 27421
+64371 25745
+64372 21111
+64373 23283
+64374 58838
+64375 31487
+64375 3294
+64376 57439
+64377 80904
+64378 33275
+64379 20955
+64380 43828
+64381 48832
+64382 20567
+64383 55884
+64384 36854
+64385 55901
+64386 79486
+64387 50521
+64388 71606
+64389 31896
+64390 57714
+64391 7293
+64392 63391
+64393 75134
+64394 79574
+64395 37491
+64395 57534
+64396 38501
+64397 28845
+64398 80183
+64399 80926
+64400 64404
+64401 35558
+64402 31831
+64403 51654
+64404 46922
+64405 70009
+64406 48285
+64407 22185
+64408 70995
+64409 50807
+64410 64409
+64411 64409
+64412 33070
+64413 70786
+64414 27687
+64415 73830
+64416 77824
+64417 71627
+64418 71628
+64419 39945
+64420 21811
+64421 46800
+64422 26233
+64423 26209
+64424 40498
+64425 57372
+64426 62307
+64427 23016
+64428 41227
+64429 52727
+64430 46802
+64431 56022
+64432 78776
+64433 78776
+64434 20956
+64434 40147
+64435 30311
+64436 22519
+64437 23982
+64438 70919
+64439 64440
+64440 50105
+64441 70995
+64442 67043
+64443 74029
+64444 15789
+64445 72218
+64446 55223
+64447 58729
+64448 32900
+64449 56757
+64450 64448
+64451 38633
+64452 48685
+64453 50923
+64454 45472
+64455 36928
+64456 36928
+64457 53215
+64457 64464
+64458 32291
+64459 20540
+64460 56125
+64461 59179
+64462 33273
+64463 79573
+64464 68818
+64465 68807
+64466 20570
+64467 64465
+64468 36928
+64469 40148
+64470 61470
+64471 64464
+64472 40813
+64473 49282
+64474 36928
+64475 66640
+64476 55415
+64477 37817
+64478 27585
+64479 76002
+64480 64446
+64481 76004
+64482 55265
+64483 70478
+64484 5320
+64485 38633
+64486 48904
+64487 46363
+64488 40819
+64489 27346
+64490 78776
+64491 34729
+64492 64494
+64493 47665
+64494 23267
+64495 33457
+64496 70919
+64497 62507
+64498 23016
+64499 22135
+64500 43013
+64501 64131
+64502 22264
+64503 68210
+64504 28897
+64505 31405
+64506 76475
+64507 27155
+64508 27001
+64509 21223
+64510 32902
+64511 30626
+64512 36094
+64513 52314
+64514 37559
+64515 64218
+64516 39026
+64517 75378
+64518 32287
+64519 52279
+64520 52849
+64521 58479
+64522 14919
+64523 64214
+64524 59917
+64525 49777
+64526 68763
+64527 46585
+64528 39724
+64529 39732
+64530 21038
+64531 60357
+64532 77243
+64533 33856
+64534 18608
+64535 33581
+64536 25026
+64537 80903
+64538 32900
+64539 28529
+64540 32909
+64541 64979
+64542 42213
+64543 64051
+64544 59786
+64545 6008
+64546 47665
+64547 2728
+64548 2082
+64549 37579
+64550 34529
+64551 17849
+64552 34407
+64553 81017
+64554 34593
+64555 50691
+64556 23516
+64557 66326
+64558 67263
+64559 78831
+64560 35097
+64561 39861
+64562 56723
+64563 26725
+64564 61228
+64565 26548
+64566 60633
+64567 45687
+64568 79166
+64569 25258
+64570 60632
+64571 43844
+64572 61740
+64573 32347
+64574 32347
+64575 42542
+64576 69122
+64577 71357
+64578 40719
+64579 37975
+64580 58334
+64581 63373
+64582 2911
+64583 18616
+64584 22691
+64585 289
+64586 2518
+64587 43718
+64588 39191
+64589 25471
+64590 64257
+64591 43103
+64592 36942
+64593 50036
+64594 39251
+64595 28816
+64596 31678
+64597 23353
+64598 3704
+64598 64592
+64599 48083
+64600 80737
+64601 56896
+64602 80926
+64603 47628
+64604 22519
+64605 74700
+64606 23623
+64607 46377
+64608 22726
+64609 23516
+64610 31418
+64611 33420
+64612 39643
+64613 57791
+64614 66728
+64615 73279
+64616 64609
+64617 69532
+64618 78831
+64619 30180
+64620 54177
+64621 78778
+64622 30084
+64623 36032
+64624 21700
+64625 57901
+64626 61509
+64627 65632
+64627 79267
+64628 52589
+64629 64632
+64630 34410
+64631 44430
+64632 56359
+64633 31404
+64634 22591
+64635 15785
+64636 55154
+64637 70219
+64638 33763
+64639 62513
+64640 20927
+64641 48578
+64642 29541
+64643 64641
+64644 80048
+64645 72806
+64646 78816
+64647 23626
+64648 61811
+64649 39195
+64650 74356
+64651 43805
+64652 56259
+64653 76759
+64654 42329
+64655 27461
+64656 53126
+64657 64653
+64658 63689
+64659 26923
+64660 29474
+64661 2554
+64662 79076
+64663 1785
+64664 40489
+64665 48283
+64666 75991
+64667 27700
+64668 11490
+64669 46358
+64670 62679
+64671 56185
+64672 48092
+64673 20955
+64674 71111
+64675 23591
+64676 71315
+64677 35773
+64678 49221
+64679 21146
+64680 15789
+64681 41314
+64682 45472
+64683 81315
+64684 25127
+64685 48729
+64686 26954
+64687 27268
+64688 26964
+64689 51468
+64690 81306
+64691 72697
+64692 75733
+64693 50105
+64694 39968
+64695 22917
+64696 72697
+64697 72345
+64698 41916
+64699 38043
+64700 45746
+64701 52382
+64701 67876
+64702 70375
+64703 61189
+64704 23484
+64705 38415
+64706 37975
+64706 64690
+64707 37991
+64708 21080
+64709 20854
+64710 20855
+64711 49943
+64712 33715
+64713 15000
+64714 21405
+64715 28543
+64716 50761
+64717 69391
+64718 68957
+64719 20483
+64720 33048
+64721 55003
+64722 58406
+64723 55220
+64724 70877
+64725 49284
+64726 31696
+64727 31677
+64728 31677
+64729 63984
+64730 30339
+64731 64726
+64732 22988
+64733 21802
+64734 21802
+64735 50144
+64736 16451
+64737 33273
+64738 76178
+64739 51677
+64740 73336
+64741 31224
+64742 58132
+64743 43615
+64744 43615
+64745 23772
+64746 22566
+64747 23136
+64748 61648
+64749 80514
+64750 31717
+64751 26293
+64752 39710
+64753 42049
+64754 43615
+64755 44018
+64756 45784
+64757 47407
+64758 53574
+64759 53753
+64760 11548
+64761 55925
+64762 56973
+64763 17362
+64764 60567
+64765 63027
+64766 31749
+64767 68127
+64768 68395
+64769 68566
+64770 55933
+64771 77523
+64772 59510
+64773 26794
+64774 15499
+64775 55121
+64776 55122
+64777 26713
+64778 71941
+64779 22192
+64780 24504
+64781 22192
+64782 16662
+64783 38448
+64784 58836
+64785 47665
+64786 78954
+64787 69153
+64788 48749
+64789 49777
+64790 74893
+64791 39746
+64791 62498
+64792 64379
+64793 64370
+64794 24459
+64795 64257
+64796 43103
+64797 21191
+64798 25891
+64799 65323
+64800 53328
+64801 65118
+64802 55372
+64803 28031
+64804 41829
+64805 50521
+64806 56896
+64807 68354
+64808 42807
+64809 23353
+64810 41499
+64811 80514
+64812 80526
+64813 49777
+64814 26649
+64814 47799
+64815 36707
+64816 44262
+64817 73460
+64818 59260
+64819 25038
+64820 63727
+64821 59581
+64822 36125
+64823 56631
+64824 64499
+64825 49520
+64826 45640
+64827 52572
+64828 45643
+64829 50658
+64830 35935
+64831 30194
+64831 41973
+64832 72177
+64833 59317
+64834 43020
+64835 63963
+64836 62453
+64837 12592
+64838 62304
+64839 38897
+64840 37560
+64841 49920
+64842 20051
+64843 67500
+64844 78537
+64845 26725
+64846 30982
+64847 35649
+64848 54759
+64849 80815
+64850 76781
+64851 19954
+64852 60169
+64853 76945
+64854 76945
+64855 72345
+64856 73279
+64857 44277
+64858 59150
+64859 22763
+64860 22763
+64861 60685
+64862 61244
+64863 56718
+64864 28231
+64865 68727
+64866 75733
+64867 56769
+64868 30688
+64869 21417
+64870 48832
+64871 58549
+64872 21802
+64873 57833
+64874 22798
+64875 21802
+64876 59385
+64877 56022
+64878 74272
+64879 30183
+64880 30784
+64881 39427
+64882 61504
+64883 55037
+64884 55037
+64885 36791
+64886 23581
+64887 38364
+64888 80991
+64889 53293
+64890 56022
+64891 70111
+64892 37892
+64893 37887
+64894 14070
+64895 53962
+64896 76037
+64897 64896
+64898 56022
+64899 44197
+64900 70760
+64901 21894
+64902 68239
+64903 62904
+64904 56022
+64905 76047
+64906 27883
+64907 34695
+64908 56022
+64909 30183
+64910 43034
+64911 67339
+64912 56022
+64913 42049
+64914 20792
+64915 43844
+64916 80722
+64917 74893
+64918 30843
+64919 65893
+64920 2911
+64921 51117
+64922 1655
+64923 433
+64924 52727
+64925 37948
+64925 56841
+64926 71941
+64927 38721
+64928 70466
+64929 40919
+64930 78036
+64931 23285
+64932 63899
+64933 22502
+64934 53129
+64935 23282
+64936 23282
+64937 55132
+64938 79254
+64939 73310
+64940 35256
+64941 72780
+64942 40212
+64943 62892
+64944 21751
+64945 33585
+64946 61228
+64947 35461
+64948 62875
+64949 35805
+64950 72789
+64951 52120
+64952 52120
+64953 56723
+64954 60095
+64955 46900
+64956 48695
+64957 65063
+64958 75893
+64959 16770
+64960 56989
+64961 33970
+64962 57001
+64963 58838
+64964 38348
+64965 38532
+64966 40229
+64967 31563
+64968 31562
+64969 80515
+64970 61490
+64971 68257
+64972 58916
+64973 73658
+64974 4709
+64975 23658
+64976 22003
+64977 73125
+64978 33670
+64979 23975
+64980 36379
+64981 71952
+64982 65564
+64983 50373
+64984 45965
+64985 18616
+64986 43703
+64987 18616
+64988 39191
+64989 39193
+64990 59394
+64991 48214
+64992 64979
+64993 53097
+64994 55127
+64995 80883
+64996 80883
+64997 30771
+64997 55127
+64998 22191
+64999 33186
+65000 37906
+65001 64999
+65002 22193
+65003 65005
+65004 65005
+65005 65009
+65006 51168
+65007 51167
+65008 65009
+65009 61694
+65010 68817
+65011 50761
+65012 50762
+65013 39540
+65014 30740
+65015 33385
+65016 23457
+65017 37707
+65018 37458
+65019 64033
+65020 80926
+65021 19068
+65022 2684
+65023 19066
+65024 21505
+65025 31493
+65026 62423
+65027 76483
+65028 68782
+65029 61228
+65030 59419
+65031 24225
+65032 2684
+65033 32320
+65034 49777
+65035 61824
+65036 31719
+65037 61228
+65038 76483
+65039 68329
+65040 4047
+65041 56792
+65042 53182
+65043 62381
+65044 24225
+65045 66820
+65046 23290
+65047 4694
+65048 73439
+65049 50450
+65050 24351
+65051 24356
+65052 36162
+65053 54941
+65054 32087
+65055 48627
+65056 37906
+65057 29400
+65058 69686
+65059 23409
+65060 72886
+65061 72880
+65062 57128
+65063 44315
+65064 33078
+65065 11481
+65066 70899
+65067 56022
+65068 72974
+65069 65067
+65070 55458
+65071 15785
+65072 30138
+65073 33715
+65074 65002
+65075 59385
+65076 26302
+65077 22594
+65078 59385
+65079 73030
+65080 30293
+65081 71941
+65082 37938
+65083 57556
+65084 57799
+65085 50105
+65086 41604
+65087 41604
+65088 61353
+65089 41076
+65090 30841
+65091 57361
+65092 38084
+65093 31813
+65094 65085
+65095 65087
+65096 65087
+65097 65096
+65098 57999
+65099 14920
+65100 65087
+65101 77511
+65102 59389
+65103 73213
+65104 38901
+65105 12086
+65106 25983
+65107 8704
+65108 54778
+65109 64668
+65110 8603
+65111 47230
+65112 61228
+65113 66687
+65114 43217
+65115 7737
+65116 77609
+65117 53124
+65118 53328
+65119 27572
+65120 40242
+65121 54388
+65122 15354
+65123 23286
+65124 27679
+65125 11446
+65126 52445
+65127 43967
+65128 21403
+65129 59389
+65130 36380
+65131 70877
+65132 30081
+65133 35557
+65134 55896
+65135 24674
+65136 33528
+65137 30221
+65138 57308
+65139 57307
+65140 70618
+65141 28972
+65142 43159
+65143 60971
+65144 72425
+65145 41667
+65146 25523
+65147 73432
+65148 41054
+65149 25530
+65150 22804
+65150 78941
+65151 43718
+65152 39191
+65152 62933
+65153 22594
+65154 22758
+65155 22804
+65156 33086
+65157 33092
+65158 61228
+65159 22451
+65160 55663
+65161 30221
+65162 40617
+65163 33078
+65164 57128
+65165 16770
+65166 44315
+65167 52120
+65168 56723
+65169 70466
+65170 57001
+65171 28895
+65172 18616
+65173 36346
+65174 30535
+65175 25358
+65176 56389
+65177 80181
+65178 33854
+65179 77164
+65180 37958
+65181 60773
+65182 49777
+65183 29760
+65184 56748
+65185 40612
+65186 44073
+65187 47328
+65188 50794
+65189 79987
+65190 9841
+65191 44065
+65192 59595
+65193 44315
+65194 58489
+65195 21869
+65196 77041
+65197 81000
+65198 73125
+65199 60722
+65200 64668
+65201 32909
+65202 65645
+65203 58489
+65204 33118
+65205 16353
+65206 32390
+65207 30535
+65208 51069
+65209 63794
+65210 14919
+65211 24741
+65212 45615
+65213 48095
+65214 75598
+65215 48786
+65216 31962
+65217 26861
+65218 30972
+65219 54959
+65220 42960
+65221 43862
+65222 64015
+65223 80456
+65224 33007
+65225 46344
+65226 33007
+65227 75418
+65228 29072
+65229 55264
+65230 9487
+65231 67302
+65232 71231
+65233 64092
+65234 48405
+65235 42751
+65236 75336
+65237 38574
+65238 29378
+65239 22517
+65240 32524
+65241 80199
+65242 34525
+65243 76550
+65244 1642
+65245 49918
+65246 24216
+65247 57520
+65248 65256
+65249 69391
+65250 23856
+65251 71291
+65252 65251
+65253 70073
+65254 73079
+65255 25867
+65256 37553
+65257 25955
+65258 43420
+65259 35503
+65260 36517
+65261 50205
+65262 74490
+65263 76879
+65264 43968
+65265 44347
+65266 51922
+65266 65259
+65267 66569
+65268 23938
+65269 58158
+65270 40000
+65271 72615
+65272 10789
+65273 34940
+65274 41595
+65275 1785
+65276 34542
+65277 65353
+65278 22502
+65279 55132
+65280 39499
+65281 39499
+65282 42120
+65283 62603
+65284 23516
+65285 23817
+65286 49094
+65287 51389
+65288 57781
+65289 64627
+65290 24573
+65291 78831
+65292 72280
+65293 27877
+65294 41582
+65294 45676
+65295 39898
+65296 42847
+65297 47414
+65298 39898
+65299 39617
+65300 74926
+65301 39690
+65302 20925
+65302 72676
+65303 57833
+65304 41800
+65305 63702
+65306 64896
+65307 57526
+65308 47406
+65309 55168
+65310 29241
+65311 48480
+65312 49777
+65313 30578
+65314 54995
+65315 21284
+65316 49073
+65317 54895
+65318 49194
+65319 30927
+65320 73907
+65321 49918
+65322 27954
+65323 65883
+65324 32902
+65325 39494
+65326 22600
+65327 59009
+65328 23810
+65329 70578
+65330 50280
+65331 27947
+65332 30654
+65333 37407
+65334 43539
+65335 65344
+65336 57931
+65337 73136
+65338 58666
+65339 54572
+65340 65346
+65341 65307
+65342 72257
+65343 73142
+65344 23809
+65345 69560
+65346 39463
+65347 55127
+65348 65349
+65349 37006
+65350 65349
+65351 54972
+65352 65351
+65353 39465
+65354 26101
+65355 2949
+65356 35922
+65357 30797
+65358 31055
+65359 55526
+65360 40877
+65361 72218
+65362 61625
+65363 61624
+65364 49348
+65365 50792
+65366 20919
+65367 68818
+65368 72218
+65369 55216
+65370 49290
+65371 54076
+65372 55610
+65373 65372
+65374 59104
+65375 38901
+65376 61466
+65377 75582
+65378 75584
+65379 64309
+65380 80692
+65381 65324
+65382 80692
+65383 61563
+65384 40234
+65385 35145
+65385 67598
+65386 65389
+65387 67586
+65388 65389
+65389 35144
+65390 50700
+65391 73633
+65392 60462
+65393 23352
+65394 74490
+65395 15367
+65396 78808
+65397 78808
+65398 48628
+65399 30774
+65399 58134
+65400 60073
+65401 77586
+65402 38436
+65403 42652
+65404 25046
+65405 77299
+65406 61822
+65407 79997
+65408 35805
+65409 57934
+65410 63415
+65411 5168
+65412 38043
+65413 81071
+65414 78507
+65415 24504
+65416 22448
+65417 79152
+65418 43615
+65419 54019
+65420 75914
+65421 69875
+65422 44193
+65423 23349
+65424 73336
+65425 78393
+65426 80926
+65427 79992
+65428 21843
+65428 62828
+65429 36279
+65430 34174
+65431 25014
+65432 65449
+65433 24840
+65434 24840
+65435 79438
+65436 50841
+65437 41631
+65438 39923
+65439 41315
+65440 40043
+65441 39808
+65442 54974
+65443 25495
+65444 22901
+65445 76341
+65446 77013
+65447 77856
+65448 56649
+65449 53137
+65450 51199
+65451 75779
+65452 38308
+65453 43555
+65454 69663
+65455 79649
+65456 31465
+65457 64154
+65458 73917
+65459 67339
+65460 35908
+65461 43175
+65462 44320
+65463 23282
+65464 61157
+65465 21687
+65466 23205
+65467 8574
+65468 28790
+65469 53765
+65470 50849
+65471 74547
+65472 29832
+65473 71341
+65474 77668
+65475 77669
+65476 32081
+65477 38599
+65478 40689
+65479 55228
+65480 64035
+65481 65452
+65481 73578
+65482 61228
+65483 69180
+65484 44043
+65485 38280
+65486 27851
+65487 38501
+65488 26229
+65489 32347
+65490 27679
+65491 26229
+65492 64863
+65493 78430
+65494 21440
+65495 65657
+65496 43811
+65497 70503
+65498 5546
+65499 19246
+65500 76759
+65501 35506
+65502 46220
+65503 37743
+65504 44315
+65505 36244
+65506 33797
+65507 24147
+65508 56285
+65509 62680
+65510 79341
+65511 76759
+65512 70018
+65513 51878
+65514 19547
+65515 32909
+65516 43718
+65517 39191
+65518 37579
+65519 37578
+65520 41265
+65521 23434
+65522 50985
+65523 65511
+65524 49609
+65525 21855
+65526 72935
+65527 37816
+65528 23219
+65529 29045
+65530 67487
+65531 59747
+65532 67487
+65533 27155
+65534 41371
+65535 46852
+65536 48576
+65537 6498
+65538 21493
+65539 36125
+65540 23418
+65540 75356
+65541 43815
+65542 68306
+65543 68305
+65544 68312
+65545 78732
+65546 73438
+65547 59396
+65548 53094
+65549 60357
+65550 41106
+65551 53095
+65552 23762
+65553 51599
+65554 22517
+65555 48287
+65556 55132
+65557 10248
+65558 31483
+65559 23335
+65560 22670
+65560 47972
+65561 53122
+65562 63133
+65563 43104
+65564 63133
+65565 58246
+65566 61086
+65567 59338
+65568 32700
+65569 71766
+65570 73015
+65571 8704
+65572 34290
+65573 60774
+65574 65988
+65575 17385
+65576 35660
+65577 26770
+65578 33827
+65579 44315
+65580 33827
+65581 57175
+65582 62575
+65583 33258
+65584 58860
+65585 74598
+65586 21443
+65586 34940
+65587 58904
+65588 67158
+65589 79853
+65590 1346
+65591 64532
+65592 26506
+65593 71545
+65594 36753
+65595 17029
+65596 21304
+65597 65976
+65598 69409
+65599 22636
+65600 46344
+65601 70374
+65602 33181
+65603 32422
+65604 68655
+65605 36582
+65606 37586
+65607 78596
+65608 41946
+65609 27609
+65610 2178
+65610 38673
+65611 43244
+65612 67490
+65613 80926
+65614 59938
+65615 75292
+65616 80943
+65617 41946
+65618 3824
+65619 67769
+65620 32524
+65621 75804
+65622 52816
+65623 64992
+65624 64214
+65625 53291
+65626 54094
+65627 49876
+65628 72460
+65629 55154
+65630 80150
+65631 30604
+65632 54251
+65633 64230
+65634 65631
+65635 65631
+65636 65632
+65637 57183
+65638 75423
+65639 75384
+65640 48091
+65641 67573
+65642 75378
+65643 73015
+65644 31638
+65645 54251
+65646 65844
+65647 41362
+65648 60466
+65649 29475
+65650 56757
+65651 65787
+65652 61541
+65653 75978
+65654 37955
+65655 68404
+65656 53628
+65657 40823
+65658 36316
+65659 70768
+65660 59395
+65661 59396
+65662 21870
+65663 26157
+65664 53134
+65665 28790
+65666 3027
+65667 29132
+65668 74808
+65669 58158
+65670 62453
+65671 75091
+65672 62120
+65673 45913
+65674 59317
+65675 47665
+65676 47665
+65677 47178
+65678 37168
+65679 48627
+65680 77269
+65681 72032
+65682 21811
+65683 2911
+65684 35802
+65685 66991
+65686 44315
+65687 46882
+65688 41752
+65689 34256
+65690 35809
+65691 68508
+65692 78654
+65693 36173
+65694 60612
+65695 57363
+65696 25471
+65697 35892
+65698 36034
+65699 54972
+65700 55135
+65701 12078
+65702 65996
+65703 70548
+65704 39885
+65705 78121
+65706 78816
+65707 24488
+65708 19954
+65709 80863
+65710 52697
+65711 41584
+65712 35784
+65713 59970
+65714 60903
+65715 78809
+65716 71778
+65717 72425
+65718 39338
+65719 26754
+65720 41054
+65721 69624
+65722 36517
+65723 36845
+65724 39181
+65725 31562
+65726 39177
+65727 81017
+65728 74789
+65729 24604
+65730 24045
+65731 26511
+65732 62419
+65733 55563
+65734 4746
+65735 5819
+65736 15576
+65737 15494
+65738 64237
+65739 56748
+65740 39427
+65741 30769
+65742 66813
+65743 20956
+65744 49163
+65745 13569
+65746 33516
+65747 43103
+65748 39916
+65749 36316
+65750 64256
+65751 77864
+65752 33517
+65753 49194
+65754 69593
+65755 74594
+65756 39421
+65757 64537
+65758 33137
+65759 55369
+65760 55371
+65761 50273
+65762 68759
+65763 31745
+65764 53352
+65765 34976
+65766 75906
+65767 23996
+65768 52719
+65769 31801
+65770 51958
+65771 34533
+65772 67573
+65773 75456
+65774 20670
+65775 21130
+65776 59626
+65777 49950
+65778 39493
+65779 63608
+65780 23560
+65781 33806
+65781 56255
+65782 31939
+65783 3452
+65784 21296
+65785 30770
+65786 49359
+65787 33048
+65788 32320
+65789 28529
+65790 35900
+65791 24077
+65792 53481
+65793 46273
+65794 55019
+65795 7504
+65796 64214
+65797 55369
+65798 61228
+65799 61228
+65800 65807
+65801 56022
+65802 61541
+65803 20968
+65804 61539
+65805 49777
+65806 59990
+65807 40806
+65808 20968
+65809 54984
+65810 51202
+65811 63861
+65812 23102
+65813 34806
+65814 33078
+65815 68184
+65816 33072
+65817 21869
+65818 21870
+65819 45749
+65820 52119
+65821 36346
+65822 72832
+65823 38516
+65824 23005
+65825 23008
+65826 23090
+65827 43243
+65828 41066
+65829 42400
+65830 29400
+65831 36854
+65832 23358
+65833 23436
+65834 29392
+65835 65828
+65836 20694
+65837 41137
+65838 41115
+65839 71971
+65840 49849
+65841 56324
+65842 62417
+65843 76093
+65844 76094
+65845 15494
+65846 21307
+65847 23730
+65848 74486
+65849 66767
+65850 25277
+65851 26202
+65852 65743
+65853 29957
+65854 65713
+65855 22781
+65856 68660
+65857 27947
+65858 37543
+65859 66424
+65860 15494
+65861 34984
+65862 28437
+65863 63963
+65864 36312
+65865 62459
+65866 36082
+65867 28892
+65868 66687
+65869 3082
+65870 28233
+65871 55367
+65872 20465
+65873 33072
+65874 69287
+65875 29309
+65876 69410
+65877 65988
+65878 65959
+65879 80737
+65880 20853
+65881 20814
+65882 23723
+65883 16781
+65884 39001
+65885 20849
+65886 43055
+65887 41794
+65888 73104
+65889 63976
+65890 14919
+65891 60626
+65892 57920
+65893 33637
+65894 62304
+65895 42344
+65896 46153
+65897 60532
+65898 27954
+65899 29957
+65900 34408
+65901 65117
+65902 67573
+65903 69276
+65904 73907
+65905 59369
+65906 42041
+65907 63986
+65908 30384
+65909 22713
+65910 21841
+65911 41125
+65912 35308
+65913 24429
+65914 34940
+65915 81080
+65916 69506
+65917 65921
+65918 4810
+65919 25628
+65920 64178
+65921 66431
+65922 49094
+65923 66942
+65924 56748
+65925 50303
+65926 31422
+65927 29090
+65928 61185
+65929 73125
+65930 20691
+65931 71816
+65932 55040
+65933 60570
+65934 17385
+65935 78405
+65936 46890
+65937 20695
+65938 15576
+65939 65988
+65940 23763
+65941 56748
+65942 71804
+65943 35223
+65944 59388
+65945 37354
+65946 20624
+65947 23081
+65948 69320
+65949 55368
+65950 55366
+65951 36627
+65952 50226
+65953 32582
+65954 32582
+65955 21226
+65956 60773
+65957 33917
+65958 40207
+65959 50267
+65960 65959
+65961 65959
+65962 21630
+65962 79631
+65963 55910
+65963 69471
+65964 33526
+65965 40579
+65966 58489
+65967 23929
+65968 20679
+65969 37958
+65970 30484
+65971 32955
+65972 50864
+65973 54100
+65974 71146
+65975 40234
+65976 58838
+65977 51117
+65978 57134
+65979 70578
+65980 34808
+65981 55372
+65982 73935
+65983 24006
+65984 34399
+65985 21511
+65986 66790
+65987 21189
+65988 36244
+65989 48490
+65990 67573
+65991 57425
+65992 41106
+65993 69471
+65994 20731
+65995 40304
+65996 39948
+65997 40034
+65998 64370
+65999 58838
+66000 65999
+66000 69679
+66001 20679
+66002 23516
+66003 60301
+66004 22504
+66005 64729
+66006 33832
+66007 36884
+66008 39421
+66009 49777
+66010 13823
+66011 32518
+66012 14919
+66013 27021
+66014 57059
+66015 66599
+66016 43259
+66017 36347
+66018 43815
+66019 37377
+66020 37710
+66021 58629
+66022 39734
+66023 26039
+66024 62289
+66025 41842
+66026 68378
+66027 32524
+66028 77935
+66029 55470
+66030 58546
+66031 68431
+66032 38300
+66033 79174
+66034 70644
+66035 37100
+66036 62746
+66037 30194
+66038 60520
+66039 5168
+66040 31493
+66041 46075
+66042 42603
+66043 47167
+66044 59061
+66045 58567
+66046 12965
+66047 31813
+66048 58567
+66049 21713
+66050 21732
+66051 21746
+66052 2911
+66053 23626
+66054 24756
+66055 78999
+66056 26706
+66057 28129
+66058 28160
+66059 47241
+66060 47242
+66061 70620
+66062 67856
+66063 23201
+66064 30096
+66065 4203
+66065 56022
+66066 31971
+66067 45721
+66068 35425
+66069 35424
+66070 36265
+66071 38651
+66072 73043
+66073 18712
+66074 43745
+66075 21673
+66075 42394
+66076 21835
+66077 22604
+66078 47665
+66079 6789
+66080 6789
+66081 73043
+66082 45239
+66083 45511
+66084 45708
+66085 45708
+66086 64487
+66087 40500
+66088 46506
+66089 53310
+66090 47163
+66091 47163
+66092 47527
+66093 36358
+66094 47738
+66095 51209
+66096 51335
+66097 19954
+66098 37373
+66099 59819
+66100 79259
+66101 73559
+66102 53135
+66103 80514
+66104 54622
+66105 54781
+66106 55135
+66107 56649
+66108 56963
+66109 58576
+66110 38030
+66111 61455
+66112 33442
+66113 61961
+66114 30017
+66115 63057
+66116 65609
+66117 68266
+66118 67479
+66119 16151
+66120 16149
+66121 19954
+66122 18616
+66123 60147
+66124 64196
+66125 2911
+66126 18616
+66127 62298
+66128 42049
+66129 71443
+66130 71445
+66131 72367
+66132 72732
+66133 77362
+66134 27889
+66135 77523
+66136 78233
+66137 22519
+66138 80595
+66139 19939
+66140 39204
+66141 24091
+66142 28172
+66143 48559
+66144 78335
+66145 22468
+66146 55901
+66147 14893
+66148 71766
+66149 13583
+66150 64741
+66151 36233
+66152 56461
+66153 36347
+66154 36459
+66155 65181
+66156 64709
+66157 36659
+66158 36666
+66159 36884
+66160 21114
+66161 42615
+66162 61753
+66163 67478
+66164 16149
+66165 49777
+66166 38721
+66167 80848
+66168 74187
+66169 40613
+66170 37545
+66171 37795
+66172 41429
+66173 42049
+66174 42049
+66175 38345
+66176 34190
+66177 68378
+66178 76269
+66179 47167
+66180 23260
+66181 30770
+66182 62065
+66183 30786
+66184 53775
+66185 37138
+66186 40069
+66187 37704
+66188 30508
+66189 44348
+66190 75988
+66191 22312
+66192 66613
+66193 39630
+66194 33366
+66195 66611
+66196 74848
+66197 80883
+66198 66611
+66199 76269
+66200 19954
+66201 35648
+66202 28397
+66203 7577
+66204 7577
+66205 54577
+66206 59378
+66207 51883
+66208 69294
+66209 59379
+66210 67157
+66211 72793
+66212 72854
+66213 41990
+66214 35805
+66215 80562
+66216 72789
+66217 39372
+66218 19547
+66219 42964
+66220 20901
+66221 20959
+66222 39952
+66223 50341
+66224 33163
+66225 66940
+66226 40535
+66227 67853
+66228 55104
+66229 37300
+66230 26927
+66231 58839
+66232 52314
+66233 49736
+66234 27202
+66235 64537
+66236 55120
+66237 54606
+66238 79392
+66239 49456
+66240 75771
+66241 75768
+66242 65955
+66243 43294
+66244 59970
+66245 63637
+66246 55448
+66247 41981
+66248 70974
+66249 62289
+66250 59611
+66251 49922
+66252 59252
+66253 61685
+66254 49152
+66255 77178
+66256 61686
+66257 76171
+66258 55610
+66259 36942
+66260 65743
+66261 872
+66262 57833
+66263 29008
+66264 40148
+66265 61343
+66266 78918
+66267 34045
+66268 53626
+66268 54998
+66269 60685
+66270 33265
+66271 42917
+66272 65938
+66273 49504
+66274 4840
+66275 69460
+66276 43647
+66277 34197
+66278 22988
+66279 37955
+66280 59252
+66281 61685
+66282 65645
+66283 25738
+66284 55132
+66285 50481
+66286 856
+66287 26096
+66288 52552
+66289 25854
+66290 31610
+66291 26263
+66292 66428
+66293 37579
+66294 55037
+66295 33905
+66295 63670
+66296 76004
+66297 33906
+66298 80276
+66299 43534
+66300 26229
+66301 23282
+66302 70089
+66303 40743
+66304 60773
+66305 60774
+66306 36560
+66307 33660
+66308 44350
+66309 36856
+66310 46153
+66311 21287
+66312 55264
+66313 59389
+66314 67002
+66315 32710
+66316 67876
+66317 63031
+66318 51491
+66319 40686
+66320 62245
+66321 23410
+66322 55909
+66323 49465
+66324 53539
+66325 22362
+66326 22427
+66327 32376
+66328 58195
+66329 43152
+66330 53886
+66331 81075
+66332 64981
+66333 65969
+66334 55372
+66335 21572
+66336 66380
+66337 76724
+66338 2437
+66338 66341
+66339 54285
+66340 58520
+66341 30353
+66342 49777
+66343 39724
+66344 20567
+66345 40030
+66346 27001
+66347 30352
+66348 71952
+66349 42120
+66350 23163
+66351 37428
+66352 65844
+66353 66969
+66354 36316
+66355 73149
+66356 57012
+66357 60313
+66358 40212
+66359 35462
+66360 71766
+66361 42984
+66362 70899
+66363 66369
+66364 47778
+66365 66369
+66366 66369
+66367 60773
+66368 50757
+66369 62880
+66370 66369
+66371 24573
+66372 64979
+66373 33273
+66374 33771
+66375 33186
+66376 33772
+66377 59389
+66378 33771
+66379 61228
+66380 33775
+66381 58838
+66382 21114
+66383 41125
+66384 53480
+66385 24389
+66386 65871
+66387 39326
+66387 66260
+66388 15576
+66389 40763
+66390 61689
+66391 64089
+66392 47060
+66393 54973
+66394 38518
+66395 38518
+66396 61228
+66397 21381
+66398 5546
+66399 32999
+66400 49465
+66401 73665
+66402 33767
+66403 59317
+66404 8933
+66405 75978
+66406 37955
+66407 52876
+66408 33238
+66409 59179
+66410 33372
+66411 50086
+66412 36942
+66413 23125
+66414 33273
+66415 15576
+66416 50232
+66417 15477
+66418 50416
+66419 50504
+66420 64537
+66421 20895
+66422 70876
+66423 59388
+66424 72268
+66425 46966
+66426 62459
+66427 59388
+66428 15576
+66429 49876
+66430 33468
+66431 20540
+66432 49777
+66433 57432
+66434 52554
+66435 36045
+66436 21084
+66437 39491
+66438 35906
+66439 66431
+66440 73104
+66441 73104
+66442 25634
+66443 31649
+66444 36582
+66445 65645
+66446 64178
+66447 22193
+66448 61541
+66449 11589
+66450 68817
+66451 64979
+66452 75771
+66453 38633
+66454 46377
+66455 40854
+66456 54996
+66457 76462
+66458 21403
+66459 48358
+66460 60574
+66461 70115
+66462 75472
+66463 39421
+66464 65226
+66465 55448
+66466 20925
+66467 20955
+66468 42740
+66469 33226
+66470 41122
+66471 48358
+66472 23763
+66473 24767
+66474 55455
+66475 33468
+66476 30350
+66477 36646
+66478 22844
+66479 25634
+66480 43246
+66481 32605
+66482 35773
+66483 21511
+66484 27705
+66485 71610
+66486 69032
+66487 52833
+66488 63887
+66489 50470
+66490 66499
+66491 66499
+66492 30339
+66493 41698
+66494 48101
+66495 52382
+66495 66499
+66496 43647
+66497 44473
+66498 59418
+66499 49777
+66500 67207
+66501 68763
+66502 66497
+66502 71851
+66503 77128
+66504 33497
+66505 66580
+66506 33226
+66507 33637
+66508 33272
+66509 47329
+66510 40806
+66511 64090
+66512 39427
+66513 61686
+66514 58489
+66515 58614
+66516 4747
+66517 66940
+66518 58384
+66519 54770
+66520 55220
+66521 56284
+66522 33660
+66523 40806
+66524 55366
+66525 46654
+66526 72858
+66527 20351
+66528 60773
+66529 66243
+66530 40743
+66531 72446
+66532 27104
+66533 36942
+66534 75780
+66535 68508
+66536 56792
+66537 46992
+66538 69634
+66539 37497
+66540 37756
+66541 71830
+66542 56894
+66543 47681
+66544 66367
+66545 60774
+66546 23516
+66547 59970
+66548 34244
+66549 41162
+66549 51479
+66550 51479
+66551 78831
+66552 73923
+66553 61185
+66554 81075
+66555 32082
+66556 38435
+66557 60774
+66558 55266
+66559 62174
+66560 23082
+66561 36783
+66562 57530
+66563 66611
+66564 70757
+66565 64305
+66566 59385
+66567 32034
+66567 40069
+66568 75142
+66569 22612
+66570 37530
+66571 66331
+66572 20727
+66573 36044
+66574 52849
+66575 49619
+66576 60771
+66577 59786
+66578 50585
+66579 66424
+66580 66755
+66581 66421
+66582 59332
+66583 65833
+66584 59395
+66585 22003
+66586 59418
+66587 22537
+66588 33435
+66589 41054
+66590 33273
+66591 70264
+66592 42377
+66593 32999
+66594 32999
+66595 23890
+66596 48722
+66597 31467
+66598 48173
+66599 61238
+66600 49777
+66601 42168
+66602 39493
+66603 65226
+66604 33086
+66605 33086
+66606 63373
+66607 33505
+66608 20724
+66609 20724
+66610 36671
+66611 33690
+66612 67036
+66613 78926
+66614 32935
+66615 24445
+66616 40239
+66617 54945
+66618 34290
+66619 66599
+66620 66624
+66621 43785
+66622 39067
+66623 33970
+66624 33978
+66625 59389
+66626 62459
+66627 66611
+66628 72268
+66629 37956
+66630 58158
+66631 49950
+66632 40416
+66633 32909
+66634 27029
+66635 36672
+66636 39722
+66637 33356
+66638 65988
+66639 40583
+66640 33662
+66641 4747
+66642 33917
+66643 27001
+66644 73125
+66645 73125
+66646 67203
+66647 20955
+66648 25094
+66649 57706
+66650 74058
+66651 36316
+66652 33771
+66653 21403
+66654 41125
+66655 39022
+66656 79632
+66657 31719
+66658 66871
+66659 65861
+66660 69941
+66661 81080
+66662 66422
+66663 37472
+66664 24006
+66665 36644
+66666 59389
+66667 65871
+66668 34290
+66669 30157
+66670 31868
+66671 59369
+66672 62303
+66673 74968
+66674 78968
+66675 41299
+66676 44496
+66677 62808
+66678 49194
+66679 64537
+66680 64539
+66681 66306
+66682 40879
+66683 43103
+66684 72989
+66685 48271
+66686 58398
+66687 72268
+66688 69976
+66689 63474
+66690 31610
+66691 33715
+66692 57620
+66693 36482
+66694 43217
+66695 23122
+66696 60983
+66697 66942
+66698 29172
+66699 27948
+66700 67874
+66701 20920
+66702 67874
+66703 50797
+66704 54732
+66705 22657
+66706 67022
+66707 81061
+66708 40234
+66709 59175
+66710 32959
+66711 49777
+66712 50574
+66713 3605
+66714 32452
+66715 74464
+66716 72879
+66717 55503
+66718 57825
+66719 59178
+66720 47665
+66721 53048
+66722 22799
+66723 21111
+66724 21487
+66725 63488
+66726 63668
+66727 23846
+66728 49699
+66729 78167
+66730 24415
+66731 23723
+66732 23544
+66733 71766
+66734 74478
+66735 51904
+66736 75222
+66737 76088
+66738 36942
+66739 28663
+66740 33858
+66741 52727
+66742 37660
+66743 65818
+66744 70438
+66745 21037
+66746 48576
+66747 33691
+66748 14919
+66749 66649
+66750 60773
+66751 61430
+66752 37428
+66753 55037
+66754 36818
+66755 72268
+66756 37956
+66757 39348
+66758 24410
+66759 59385
+66760 62354
+66761 55160
+66762 20924
+66763 67009
+66764 36021
+66765 78421
+66766 39421
+66767 46347
+66768 64896
+66769 76037
+66770 39465
+66771 1412
+66771 25266
+66772 61685
+66773 36884
+66774 27726
+66775 61685
+66776 66527
+66777 47065
+66778 33228
+66779 61685
+66780 59500
+66781 64981
+66782 30461
+66783 31404
+66784 74965
+66785 61504
+66786 59389
+66787 48548
+66788 48548
+66789 23723
+66790 23722
+66791 66790
+66792 48278
+66793 42984
+66794 33660
+66795 55543
+66796 20956
+66797 27766
+66798 20809
+66799 21812
+66800 3604
+66801 37560
+66802 66801
+66803 50379
+66804 65645
+66805 65632
+66805 79267
+66806 60318
+66807 74968
+66808 77027
+66809 49870
+66810 65116
+66811 32214
+66812 32909
+66813 33505
+66814 61652
+66815 77744
+66816 64979
+66817 49534
+66818 5194
+66819 74490
+66820 57127
+66821 77340
+66822 35946
+66823 39898
+66824 28241
+66825 11589
+66826 73125
+66827 28241
+66828 3705
+66829 59786
+66830 49777
+66831 49536
+66832 74119
+66833 74119
+66834 39406
+66835 42356
+66836 74926
+66837 56283
+66838 30769
+66839 49777
+66840 33771
+66841 53097
+66842 66840
+66843 66840
+66844 39864
+66845 43405
+66846 70868
+66847 74094
+66848 56349
+66849 37701
+66850 33224
+66851 69506
+66852 78808
+66853 49448
+66854 25617
+66855 72391
+66856 35144
+66857 73940
+66858 67002
+66859 27766
+66860 74604
+66861 54732
+66862 3705
+66862 37803
+66863 63755
+66864 37802
+66864 55449
+66865 54732
+66866 58615
+66867 80926
+66868 36591
+66869 79518
+66870 75121
+66871 66942
+66872 40577
+66873 21403
+66874 36414
+66875 73981
+66876 36415
+66877 5320
+66878 62507
+66879 49426
+66880 20857
+66881 57825
+66882 57832
+66883 57832
+66884 15298
+66885 43247
+66886 57825
+66887 24507
+66888 66056
+66889 74968
+66890 55351
+66891 79254
+66892 26114
+66893 61858
+66894 49918
+66895 54426
+66896 58276
+66897 63133
+66898 33226
+66899 80737
+66900 62281
+66901 79003
+66902 37481
+66903 56748
+66904 74557
+66905 63610
+66906 29397
+66907 80737
+66908 23282
+66909 70578
+66910 28233
+66911 60491
+66912 61086
+66913 40041
+66914 77422
+66915 34190
+66916 33146
+66917 55367
+66918 72605
+66919 41409
+66920 57840
+66921 33069
+66922 21028
+66923 20428
+66924 23552
+66925 56748
+66926 22168
+66927 41101
+66928 80883
+66929 67465
+66930 33647
+66931 55427
+66932 55367
+66933 23493
+66934 66554
+66935 22537
+66936 79227
+66937 80595
+66938 50198
+66939 77888
+66940 56752
+66941 9842
+66942 46347
+66943 75702
+66944 67904
+66945 21041
+66946 65636
+66947 58838
+66948 60532
+66949 19015
+66950 78481
+66951 64090
+66952 43815
+66953 41203
+66954 28233
+66955 24229
+66956 33865
+66957 30118
+66958 49777
+66959 45138
+66960 2437
+66961 37795
+66962 49482
+66963 38870
+66964 45751
+66965 43876
+66966 23959
+66967 38454
+66968 20535
+66969 30524
+66970 77888
+66971 51123
+66972 30519
+66973 66583
+66974 44349
+66975 70494
+66976 67904
+66977 46936
+66978 36222
+66979 62884
+66980 22866
+66981 30526
+66982 44193
+66983 63980
+66984 76037
+66985 50324
+66986 57194
+66987 22611
+66988 60533
+66989 25014
+66990 41112
+66991 34986
+66992 20707
+66993 78755
+66994 61243
+66995 63976
+66996 38518
+66997 27202
+66998 72988
+66999 2419
+67000 2419
+67001 4408
+67002 21189
+67003 65504
+67004 40538
+67005 20465
+67006 40292
+67007 22002
+67008 46347
+67009 62809
+67010 25646
+67011 65312
+67012 65632
+67013 62110
+67014 38131
+67015 34825
+67016 71598
+67017 43827
+67018 22468
+67019 60773
+67020 58822
+67021 67022
+67022 39199
+67023 25618
+67024 57269
+67025 68441
+67026 22537
+67027 70995
+67028 40106
+67029 61694
+67030 55132
+67031 66766
+67032 54089
+67033 22793
+67034 40894
+67035 53351
+67036 36943
+67037 73125
+67038 70478
+67039 22894
+67040 49876
+67041 47352
+67042 37560
+67043 23524
+67043 24119
+67044 24100
+67045 72218
+67046 55223
+67047 3604
+67048 67432
+67049 34729
+67050 49918
+67051 58792
+67052 68654
+67053 55223
+67054 60685
+67055 67054
+67056 74893
+67057 55208
+67058 40611
+67059 43842
+67059 67054
+67060 67054
+67060 73279
+67061 59178
+67062 22519
+67063 61784
+67064 43844
+67065 62296
+67066 17664
+67067 25618
+67068 72946
+67069 48983
+67070 64361
+67071 56385
+67072 59178
+67073 52727
+67074 55563
+67075 56022
+67076 2911
+67077 44197
+67078 56022
+67079 47780
+67079 60300
+67080 60301
+67081 70919
+67082 67081
+67083 67081
+67084 60301
+67085 58158
+67086 47665
+67087 61811
+67088 53129
+67089 78959
+67090 62658
+67091 73030
+67092 81056
+67093 29200
+67094 49220
+67095 35604
+67096 46461
+67096 49930
+67097 57516
+67098 26401
+67098 63031
+67099 57134
+67100 71952
+67101 74490
+67102 35503
+67103 32661
+67104 73907
+67105 56389
+67106 70920
+67107 62513
+67108 51068
+67109 79423
+67110 48722
+67111 67118
+67112 22866
+67113 78799
+67114 43420
+67115 46975
+67116 58614
+67117 71202
+67118 58395
+67119 79786
+67120 28248
+67121 41666
+67122 21021
+67123 44209
+67124 18616
+67125 80970
+67126 71676
+67127 79135
+67128 77171
+67129 62883
+67130 29430
+67131 59381
+67132 60202
+67133 65612
+67134 80016
+67135 30315
+67136 51607
+67137 61086
+67138 49777
+67139 78661
+67140 69881
+67141 21692
+67141 76975
+67142 78386
+67143 40498
+67144 49876
+67145 67144
+67146 56259
+67147 77527
+67148 30740
+67149 44132
+67150 63963
+67151 68955
+67152 55154
+67153 77299
+67154 23544
+67155 77299
+67156 25376
+67157 39556
+67158 33852
+67159 43246
+67160 43246
+67161 23016
+67162 25376
+67163 52947
+67164 76415
+67165 4363
+67166 37541
+67167 23856
+67168 77289
+67169 27084
+67170 27263
+67171 80181
+67172 46629
+67173 75456
+67174 63389
+67175 68763
+67176 69116
+67177 3152
+67178 22759
+67179 19636
+67180 70438
+67181 42168
+67182 28306
+67183 28602
+67184 46158
+67185 65548
+67186 65550
+67187 26181
+67188 54743
+67189 71766
+67190 12997
+67191 44130
+67192 31711
+67193 78654
+67194 44350
+67195 77675
+67196 43244
+67197 60612
+67198 34705
+67199 68008
+67200 58902
+67201 68149
+67202 44350
+67203 20536
+67204 50324
+67205 62180
+67206 77886
+67207 41119
+67208 51254
+67209 46851
+67210 60357
+67211 23739
+67212 62136
+67213 46895
+67214 49777
+67215 872
+67216 23906
+67217 34153
+67218 63136
+67219 59605
+67220 44271
+67221 47588
+67222 67203
+67223 52558
+67224 52558
+67225 52558
+67226 52558
+67227 52558
+67228 67203
+67229 39026
+67230 67203
+67231 60568
+67232 31528
+67233 31528
+67234 31528
+67235 48687
+67236 48687
+67237 48687
+67238 31528
+67239 48687
+67240 39911
+67241 77435
+67242 78900
+67243 24604
+67244 56622
+67245 42526
+67246 49194
+67247 33517
+67248 56622
+67249 58822
+67250 49831
+67251 28380
+67252 63974
+67253 61702
+67254 73372
+67255 34321
+67256 37579
+67257 73724
+67258 30536
+67259 27411
+67259 67743
+67260 48317
+67261 48317
+67262 26611
+67263 59150
+67264 67263
+67265 67263
+67266 54972
+67267 22519
+67268 71938
+67269 71941
+67270 62397
+67271 44056
+67272 60289
+67273 61493
+67274 33642
+67275 42071
+67276 12150
+67277 76269
+67278 28077
+67279 64424
+67280 50076
+67281 77937
+67282 61847
+67283 14993
+67284 76255
+67285 11248
+67286 39336
+67287 25841
+67288 50180
+67289 24725
+67290 28629
+67291 8603
+67292 32524
+67293 46588
+67294 69194
+67295 45585
+67296 69573
+67297 28241
+67298 46690
+67299 66538
+67300 46692
+67301 79647
+67302 43106
+67303 37647
+67304 33771
+67305 42168
+67306 77659
+67307 43175
+67308 34018
+67309 34018
+67310 55049
+67311 34420
+67312 53312
+67313 52779
+67314 31024
+67315 59500
+67316 67157
+67317 46922
+67318 35433
+67319 39664
+67320 45791
+67321 49777
+67322 62051
+67323 73900
+67324 45679
+67325 77652
+67326 30491
+67327 30491
+67328 23188
+67329 35821
+67330 68096
+67331 37579
+67332 37579
+67333 66492
+67334 35493
+67335 67334
+67336 61716
+67337 60722
+67338 46628
+67339 18211
+67340 71591
+67341 60722
+67342 21235
+67343 71590
+67344 73724
+67345 26954
+67346 2523
+67347 38066
+67348 44291
+67349 59570
+67350 63470
+67351 40500
+67352 69878
+67353 25490
+67354 36208
+67355 61936
+67356 53122
+67357 70974
+67358 54100
+67359 51495
+67360 13510
+67361 32311
+67362 28609
+67363 35654
+67364 61949
+67365 79900
+67366 21398
+67367 28240
+67368 28242
+67369 34912
+67370 38574
+67371 54617
+67372 15785
+67373 43106
+67374 32840
+67375 70374
+67376 60741
+67377 75831
+67378 52016
+67379 25495
+67380 46460
+67381 10793
+67382 27000
+67383 80943
+67384 35284
+67385 821
+67386 29378
+67387 67365
+67388 81000
+67389 52460
+67390 48405
+67391 35197
+67392 34977
+67393 4531
+67394 30881
+67395 13899
+67396 33891
+67397 76067
+67398 37374
+67399 43631
+67400 52105
+67401 33258
+67402 74598
+67403 44193
+67404 76269
+67405 76269
+67406 42567
+67407 65172
+67408 72032
+67409 61147
+67410 55748
+67411 23566
+67412 40234
+67413 32253
+67414 73754
+67415 30585
+67416 57315
+67417 52876
+67418 69059
+67419 74356
+67420 28633
+67421 38524
+67422 27370
+67423 41666
+67424 62907
+67425 28845
+67426 29123
+67427 31775
+67428 23856
+67428 31771
+67429 33196
+67430 34649
+67431 34897
+67432 65067
+67433 61847
+67434 39598
+67435 44149
+67436 22044
+67437 24721
+67438 47921
+67439 61014
+67440 33325
+67441 33187
+67442 80514
+67443 42432
+67444 62290
+67445 47665
+67446 15298
+67447 65672
+67448 42267
+67449 68387
+67450 72391
+67451 45711
+67452 17029
+67452 67458
+67453 79535
+67454 12997
+67455 19999
+67456 63031
+67457 23938
+67458 57134
+67459 21146
+67460 30424
+67461 49121
+67462 74490
+67463 52779
+67464 81315
+67465 50985
+67466 47665
+67467 79259
+67468 42204
+67469 25045
+67470 39920
+67471 52252
+67472 30612
+67472 64204
+67473 42747
+67474 65750
+67475 42209
+67476 76093
+67477 39924
+67478 68266
+67479 68888
+67480 69059
+67481 78258
+67482 47504
+67483 2911
+67484 52032
+67485 28060
+67486 23586
+67487 49441
+67488 24459
+67489 79247
+67490 62207
+67491 40729
+67492 60972
+67493 69125
+67494 39261
+67495 72180
+67496 39261
+67497 36265
+67498 67497
+67499 30774
+67500 37004
+67500 65363
+67501 4716
+67502 50594
+67503 79113
+67504 20724
+67505 39544
+67506 10254
+67507 66957
+67508 20955
+67509 20901
+67510 53328
+67511 19636
+67512 41990
+67513 54615
+67514 35626
+67515 43969
+67516 42621
+67517 64257
+67518 37672
+67519 43335
+67520 33856
+67521 78596
+67522 41990
+67523 76609
+67524 58819
+67525 36222
+67526 26228
+67527 46327
+67528 80150
+67529 35626
+67530 33989
+67531 38090
+67532 70912
+67533 24730
+67534 80587
+67535 77870
+67536 70907
+67537 70913
+67538 76940
+67539 67532
+67540 67537
+67541 67400
+67542 48012
+67543 73225
+67544 51607
+67545 80159
+67546 48404
+67546 61770
+67547 30508
+67548 64551
+67549 58412
+67550 58412
+67551 38459
+67552 23581
+67553 49777
+67554 49777
+67555 44193
+67556 31630
+67557 62658
+67558 67557
+67559 68957
+67560 64307
+67561 64307
+67562 44149
+67563 20816
+67564 34705
+67565 54974
+67566 34695
+67567 28249
+67568 60202
+67568 67567
+67569 76786
+67570 2911
+67571 34256
+67572 27787
+67573 23285
+67574 63134
+67575 30488
+67576 44315
+67577 36807
+67578 52971
+67579 65631
+67580 75627
+67581 32977
+67582 33639
+67583 6923
+67584 70090
+67585 61138
+67586 62303
+67587 58489
+67588 16771
+67589 73907
+67590 71685
+67591 42649
+67592 60571
+67593 62303
+67594 31772
+67595 35017
+67596 62303
+67597 62296
+67598 78816
+67599 42373
+67600 68728
+67601 36928
+67602 66260
+67603 67586
+67604 33274
+67605 73444
+67606 53134
+67607 27514
+67608 27840
+67609 20457
+67610 51867
+67611 52953
+67612 17663
+67613 34705
+67614 36218
+67615 30026
+67616 80904
+67617 21249
+67618 51803
+67619 29602
+67620 25363
+67621 2911
+67622 61995
+67623 73076
+67624 69349
+67625 43718
+67626 39191
+67627 42759
+67628 68654
+67629 55331
+67630 44149
+67631 45084
+67632 45367
+67633 42686
+67634 47796
+67635 48115
+67636 63127
+67637 47796
+67638 65067
+67639 40389
+67640 80568
+67641 72582
+67642 67076
+67643 28179
+67644 12150
+67645 42765
+67646 59317
+67647 67479
+67648 47796
+67649 36208
+67650 47665
+67651 47666
+67652 21155
+67653 52396
+67654 19954
+67655 18616
+67656 37111
+67657 37112
+67658 71466
+67659 24504
+67659 25076
+67660 32986
+67661 30215
+67662 26915
+67663 20970
+67664 49094
+67665 63687
+67666 55168
+67667 67487
+67668 56748
+67669 77178
+67670 69663
+67671 58573
+67672 73907
+67673 66587
+67674 55364
+67675 50107
+67676 21700
+67677 50569
+67678 59669
+67679 66827
+67680 80025
+67681 61627
+67682 61629
+67683 23360
+67684 24840
+67685 67666
+67686 21610
+67687 1641
+67688 27316
+67689 28241
+67690 67573
+67691 29483
+67692 70867
+67693 23772
+67694 47167
+67695 13802
+67696 45617
+67697 68456
+67698 41987
+67699 42266
+67700 45948
+67701 43019
+67702 62344
+67703 56315
+67704 50277
+67705 48445
+67706 73405
+67707 37579
+67708 21534
+67709 67514
+67710 67514
+67711 35461
+67712 80150
+67713 44070
+67714 1785
+67715 44065
+67716 22165
+67717 3084
+67718 45629
+67719 46637
+67720 34527
+67721 47546
+67722 35522
+67723 60529
+67724 23031
+67725 35087
+67726 42502
+67727 21855
+67728 66403
+67729 67490
+67730 60708
+67731 39337
+67732 76341
+67733 23219
+67734 27155
+67735 42965
+67736 24674
+67737 41946
+67738 53703
+67739 52960
+67740 76931
+67741 52726
+67742 68576
+67743 43215
+67744 25564
+67745 77548
+67746 80354
+67747 33853
+67748 67557
+67749 23380
+67750 71851
+67751 76759
+67752 25067
+67753 80904
+67754 48306
+67755 56158
+67756 76719
+67757 41921
+67758 33367
+67759 80943
+67760 65538
+67761 74298
+67762 62789
+67763 36290
+67764 11446
+67765 70974
+67766 36942
+67767 63403
+67768 62255
+67769 63974
+67770 33229
+67771 25599
+67772 2559
+67773 53122
+67774 73838
+67775 23438
+67776 69663
+67777 23856
+67778 48576
+67779 34530
+67780 56796
+67781 43703
+67782 80150
+67783 37296
+67784 10789
+67785 23219
+67786 29230
+67787 72889
+67788 21375
+67789 27535
+67790 29814
+67791 30644
+67792 42767
+67793 62745
+67794 69283
+67795 76816
+67796 60073
+67797 67366
+67798 75690
+67799 21071
+67800 60773
+67801 48580
+67802 33623
+67803 66996
+67804 59901
+67805 52222
+67806 74957
+67807 40248
+67808 26915
+67809 27263
+67810 28306
+67811 21074
+67812 24088
+67813 76928
+67814 72248
+67815 66641
+67816 23071
+67817 79673
+67818 54877
+67819 55220
+67820 2025
+67821 60138
+67822 72427
+67823 55563
+67824 35922
+67825 17991
+67826 15997
+67827 67868
+67828 37405
+67829 47231
+67830 47231
+67830 76578
+67831 29981
+67832 44374
+67833 34251
+67833 77232
+67834 51555
+67835 69342
+67836 38705
+67837 35654
+67838 21610
+67839 73248
+67840 26510
+67841 50849
+67842 14920
+67843 33051
+67844 50675
+67845 38721
+67846 77923
+67847 27021
+67848 47665
+67849 47666
+67850 68080
+67851 73733
+67852 42747
+67853 68378
+67854 62425
+67855 56157
+67856 42699
+67856 43880
+67857 55449
+67858 42941
+67859 43046
+67860 1785
+67861 49781
+67862 64306
+67863 78258
+67864 60633
+67865 36915
+67866 28241
+67867 36517
+67868 37405
+67869 33186
+67870 33691
+67871 37405
+67872 37405
+67873 55129
+67874 67868
+67875 59329
+67876 49777
+67877 14919
+67878 78456
+67879 53315
+67880 29483
+67881 71192
+67882 35805
+67883 42965
+67884 24674
+67885 69189
+67886 32560
+67887 69189
+67888 27687
+67889 40547
+67890 30863
+67891 66387
+67892 32013
+67893 68184
+67894 45311
+67895 32663
+67896 35522
+67897 51068
+67898 25564
+67899 65990
+67900 67923
+67901 68882
+67902 23933
+67903 74171
+67904 43054
+67905 77548
+67906 53573
+67907 61228
+67908 52840
+67909 49699
+67910 69663
+67911 77548
+67912 69620
+67913 66394
+67914 62681
+67915 67907
+67916 49659
+67917 23109
+67918 67901
+67919 72578
+67920 52396
+67921 35087
+67922 30578
+67923 34940
+67924 77299
+67925 55529
+67926 23846
+67927 67856
+67928 36942
+67929 50849
+67930 33009
+67931 59177
+67932 21106
+67933 77019
+67934 36244
+67935 24351
+67936 43060
+67937 47231
+67938 29043
+67939 46305
+67940 70219
+67941 73432
+67942 72622
+67943 61228
+67944 67937
+67945 39372
+67946 71304
+67947 62397
+67948 60741
+67949 67444
+67950 9009
+67951 50036
+67952 27704
+67953 46325
+67954 49202
+67955 30585
+67955 77112
+67956 21235
+67957 54523
+67958 23772
+67959 7577
+67960 48564
+67961 47504
+67962 24621
+67963 55829
+67964 49777
+67965 29107
+67966 48190
+67967 41673
+67968 62296
+67969 34223
+67969 59814
+67970 43844
+67971 22820
+67972 56236
+67973 32880
+67974 33273
+67975 28242
+67976 66898
+67977 74606
+67978 24767
+67979 24243
+67980 33273
+67981 24240
+67982 58158
+67983 76067
+67984 52105
+67985 12965
+67986 80853
+67987 30535
+67988 55563
+67989 30774
+67990 56022
+67991 69911
+67992 79869
+67993 45825
+67994 30315
+67995 80209
+67996 27679
+67997 40271
+67998 7577
+67999 23706
+68000 54804
+68001 52477
+68002 68001
+68003 41641
+68004 25929
+68005 20924
+68006 19954
+68007 2911
+68008 28105
+68009 43862
+68010 68660
+68011 54813
+68012 22691
+68013 43866
+68014 70219
+68015 36845
+68016 36841
+68017 9177
+68018 34570
+68019 30084
+68020 43844
+68021 41022
+68022 29462
+68023 74761
+68024 17852
+68025 68019
+68026 25646
+68027 62811
+68028 8958
+68029 24504
+68030 33639
+68031 80339
+68032 50863
+68033 62575
+68034 32081
+68035 65226
+68036 77620
+68037 44193
+68038 41054
+68039 37691
+68040 41054
+68041 72415
+68042 57791
+68043 78831
+68044 78965
+68045 66492
+68046 49461
+68047 49088
+68048 81061
+68049 48103
+68050 53777
+68051 53774
+68052 51487
+68053 64821
+68054 68053
+68055 66499
+68056 64046
+68057 27155
+68058 69189
+68059 58365
+68060 35503
+68061 61824
+68062 27021
+68063 68074
+68064 72409
+68065 46653
+68066 35523
+68067 13764
+68068 59847
+68069 71556
+68070 43995
+68071 73432
+68072 24504
+68073 54359
+68074 44350
+68075 70265
+68076 52727
+68077 8393
+68078 69870
+68079 61376
+68080 41571
+68081 78276
+68082 54852
+68082 68078
+68083 61376
+68084 13993
+68085 73885
+68086 31903
+68087 60557
+68088 73885
+68089 69980
+68090 48576
+68090 66302
+68091 61477
+68092 69841
+68093 76067
+68094 66302
+68095 30585
+68096 33273
+68097 68882
+68098 23219
+68098 66412
+68099 25709
+68099 33575
+68100 25891
+68101 27094
+68102 46418
+68103 75954
+68104 65645
+68105 30584
+68106 43894
+68107 45310
+68108 58878
+68109 54940
+68110 46413
+68111 55503
+68112 61936
+68113 65431
+68114 65724
+68115 72831
+68116 47665
+68117 58860
+68118 58862
+68119 69351
+68120 35004
+68121 42553
+68122 38901
+68123 5321
+68124 21204
+68125 55430
+68126 47666
+68127 47665
+68128 7639
+68129 46363
+68130 74119
+68131 80514
+68132 72448
+68133 54703
+68134 74620
+68135 70757
+68136 73063
+68137 60073
+68138 35595
+68139 28790
+68140 6309
+68141 22691
+68142 68149
+68143 41054
+68144 68266
+68145 68857
+68146 69124
+68147 36637
+68148 26958
+68149 79002
+68150 54359
+68151 46398
+68152 29240
+68153 39972
+68154 47665
+68155 7410
+68156 5168
+68157 46344
+68158 14919
+68159 45664
+68160 21700
+68161 21523
+68162 12970
+68163 27441
+68164 64979
+68165 37579
+68166 24839
+68167 62374
+68168 27461
+68169 68172
+68170 38480
+68171 43207
+68172 7645
+68173 68165
+68174 58862
+68175 49575
+68176 2911
+68177 22208
+68178 57315
+68179 68522
+68180 61896
+68180 80991
+68181 54732
+68182 54732
+68183 55452
+68184 58713
+68185 21487
+68186 33715
+68187 21223
+68188 28543
+68189 42035
+68190 27190
+68191 59917
+68192 66767
+68193 72879
+68194 40654
+68195 68198
+68196 68198
+68197 20680
+68198 39724
+68199 58269
+68199 68239
+68200 50477
+68201 48890
+68202 64151
+68203 64118
+68204 872
+68205 50791
+68206 45985
+68207 69283
+68208 29071
+68209 40752
+68210 69282
+68211 47533
+68212 80526
+68213 33051
+68214 20924
+68215 78907
+68216 68165
+68217 65424
+68218 42284
+68219 22529
+68220 65609
+68221 65609
+68222 39986
+68223 43013
+68224 71676
+68225 68199
+68226 44006
+68227 70264
+68228 53448
+68229 59786
+68230 77853
+68231 47665
+68232 20415
+68233 49918
+68234 77765
+68235 33272
+68236 67598
+68237 79125
+68238 79125
+68239 33086
+68240 42553
+68241 75351
+68242 27679
+68243 32205
+68244 36658
+68245 42504
+68246 11522
+68247 69170
+68248 56013
+68249 9481
+68250 63058
+68251 34025
+68252 15965
+68253 2911
+68254 20925
+68255 57194
+68256 48576
+68257 2911
+68258 33637
+68259 63676
+68260 55449
+68261 34681
+68262 64215
+68263 69187
+68264 25121
+68265 16819
+68266 69125
+68267 62289
+68268 2911
+68269 47327
+68270 34818
+68271 59148
+68272 68759
+68273 59300
+68274 46153
+68275 46153
+68276 32713
+68276 64214
+68277 36459
+68278 36459
+68279 66711
+68280 21398
+68281 68096
+68282 36459
+68283 66176
+68284 77312
+68285 46802
+68286 28485
+68287 30732
+68288 60169
+68289 55563
+68290 56022
+68291 35805
+68292 24674
+68293 29087
+68294 36265
+68295 53291
+68296 34511
+68297 52727
+68298 64979
+68299 73830
+68300 41054
+68301 63874
+68302 77918
+68303 78540
+68304 70970
+68305 40617
+68306 37794
+68307 57526
+68308 58671
+68309 34976
+68310 23762
+68311 39649
+68312 31104
+68313 55127
+68314 43539
+68315 65632
+68316 35599
+68317 79638
+68318 58130
+68319 48485
+68320 66492
+68321 49011
+68322 71593
+68323 24088
+68324 62175
+68325 66908
+68326 26442
+68327 80510
+68328 2911
+68329 22519
+68330 53666
+68331 42727
+68332 52532
+68333 47665
+68334 69117
+68335 38622
+68336 45472
+68337 72446
+68338 21855
+68339 51832
+68340 49234
+68341 2911
+68342 59993
+68343 67490
+68344 45086
+68345 68130
+68346 69338
+68347 32524
+68348 71774
+68349 79992
+68350 61147
+68351 69976
+68352 80514
+68353 79986
+68354 70219
+68355 19954
+68356 18616
+68357 57529
+68358 35648
+68359 24504
+68360 30687
+68361 24775
+68362 24845
+68363 66688
+68364 26548
+68365 46882
+68366 29841
+68367 62453
+68368 60892
+68369 7577
+68370 68378
+68371 61147
+68372 76489
+68373 32529
+68374 23552
+68375 32059
+68376 78610
+68377 2737
+68378 70291
+68379 30081
+68380 23298
+68381 71411
+68382 70579
+68383 37579
+68384 39724
+68385 42747
+68386 42747
+68387 42747
+68388 21375
+68389 46505
+68390 38528
+68391 76002
+68392 71099
+68393 15499
+68394 59255
+68395 47665
+68396 68398
+68397 32209
+68398 33273
+68399 51991
+68400 59938
+68401 68396
+68402 31677
+68403 53531
+68404 55414
+68405 8949
+68406 25603
+68406 8393
+68407 41070
+68408 10359
+68409 71823
+68410 57781
+68411 78831
+68412 42555
+68413 68048
+68414 18616
+68415 43718
+68416 39191
+68417 30786
+68418 45424
+68419 39191
+68420 23408
+68421 23408
+68422 34251
+68422 77232
+68423 44374
+68424 56022
+68425 69643
+68426 25634
+68427 5751
+68428 45693
+68429 25634
+68430 17862
+68431 80848
+68432 19954
+68433 61716
+68434 35805
+68435 18211
+68436 76042
+68437 70641
+68438 64361
+68439 60685
+68440 55351
+68441 3220
+68442 69385
+68443 29816
+68444 35687
+68445 22137
+68446 56244
+68447 72596
+68448 30437
+68449 32000
+68449 43010
+68450 22529
+68451 59090
+68452 72446
+68453 38467
+68454 59407
+68455 71017
+68456 79125
+68457 71685
+68458 67586
+68459 70919
+68460 43420
+68461 34018
+68462 53546
+68463 24574
+68464 80568
+68465 34480
+68466 37579
+68467 22691
+68468 10366
+68469 42553
+68470 58860
+68471 18274
+68472 71601
+68473 24521
+68474 41054
+68475 40234
+68476 30138
+68477 65883
+68478 75596
+68479 69560
+68480 45966
+68481 41054
+68482 27455
+68483 73432
+68484 79949
+68485 41054
+68486 22469
+68487 19954
+68488 18616
+68489 48729
+68490 33667
+68491 30508
+68492 64979
+68493 21403
+68494 6066
+68495 45759
+68496 11340
+68497 11344
+68498 41465
+68499 41985
+68500 33273
+68501 68500
+68502 56718
+68503 61376
+68504 7630
+68505 59317
+68506 38403
+68507 6193
+68508 33272
+68509 38480
+68510 13899
+68511 63246
+68512 42545
+68513 54253
+68514 37579
+68515 37579
+68516 73190
+68517 43969
+68518 19547
+68519 37065
+68520 37322
+68521 68520
+68522 55135
+68523 4920
+68524 35707
+68525 55135
+68526 62171
+68527 60633
+68528 37579
+68529 63831
+68530 6994
+68531 28845
+68532 24843
+68533 65893
+68534 29230
+68535 55503
+68536 63068
+68537 59787
+68538 24780
+68539 77733
+68540 76221
+68541 76221
+68542 45752
+68543 47665
+68544 47665
+68545 47666
+68546 35737
+68547 47241
+68548 46882
+68549 53597
+68550 41321
+68551 76759
+68552 19954
+68553 38043
+68554 24838
+68555 70353
+68556 65718
+68557 48909
+68558 20533
+68558 61896
+68559 63398
+68560 30081
+68561 69723
+68562 47665
+68563 50841
+68564 53665
+68565 27638
+68566 47665
+68567 57881
+68568 57134
+68569 30488
+68570 21308
+68571 71791
+68572 70011
+68573 61388
+68574 42747
+68575 10248
+68576 29413
+68577 62397
+68578 23432
+68579 74965
+68580 64992
+68581 23131
+68582 68609
+68583 78732
+68584 41803
+68585 37012
+68586 65787
+68587 24486
+68588 28449
+68589 28451
+68590 12078
+68591 34972
+68592 54251
+68593 64230
+68594 49737
+68595 52396
+68596 57127
+68597 55132
+68598 34570
+68599 57005
+68600 41666
+68601 32123
+68602 78660
+68603 79880
+68604 77435
+68605 70919
+68606 74926
+68607 64630
+68608 65420
+68609 55127
+68610 31771
+68611 51867
+68612 70086
+68613 26307
+68614 70074
+68615 37579
+68616 70988
+68617 32311
+68618 74558
+68619 62577
+68620 43844
+68621 30688
+68622 56649
+68623 57529
+68624 33871
+68625 15963
+68626 37579
+68627 40611
+68628 49152
+68629 33273
+68630 45728
+68631 45730
+68632 69943
+68633 55563
+68634 65765
+68635 35897
+68635 39493
+68636 37581
+68637 36872
+68638 61625
+68639 66624
+68640 25455
+68641 78467
+68642 72946
+68643 78467
+68644 79076
+68645 26209
+68645 36370
+68646 29624
+68647 56414
+68648 27155
+68649 41507
+68650 44193
+68651 74893
+68652 33476
+68653 38806
+68654 51942
+68655 49538
+68656 41498
+68657 65200
+68658 39246
+68659 21676
+68660 44193
+68661 51069
+68662 15499
+68663 80514
+68664 46833
+68665 31717
+68666 33634
+68667 43622
+68668 47163
+68669 21835
+68670 42747
+68671 58576
+68672 61932
+68673 72747
+68674 62761
+68675 34002
+68676 46087
+68677 75199
+68678 18616
+68679 50943
+68679 70786
+68680 37443
+68681 30771
+68682 39067
+68683 37677
+68684 72679
+68685 61933
+68686 67856
+68687 70750
+68688 20925
+68689 71302
+68690 70385
+68691 45978
+68692 30770
+68693 22517
+68694 27207
+68695 68703
+68696 1422
+68697 81056
+68698 23282
+68699 49585
+68700 40877
+68701 38408
+68702 45927
+68703 40059
+68704 16773
+68705 20959
+68706 59990
+68707 59991
+68708 57714
+68709 72908
+68710 65449
+68711 71335
+68712 41666
+68713 33073
+68714 47665
+68715 66398
+68716 72882
+68717 53328
+68718 49858
+68719 42120
+68720 29541
+68721 47033
+68722 56022
+68723 66640
+68724 37014
+68725 66647
+68726 66188
+68727 62247
+68728 46344
+68729 33400
+68730 56891
+68731 1610
+68732 79691
+68733 27671
+68734 55572
+68735 42800
+68736 36721
+68737 49870
+68737 49904
+68738 43703
+68739 42321
+68740 42747
+68741 64476
+68742 64483
+68743 37817
+68744 61349
+68745 70750
+68746 70750
+68747 51107
+68748 78268
+68749 55448
+68750 55449
+68751 38551
+68752 25213
+68753 50971
+68754 53315
+68755 75804
+68756 37579
+68757 70750
+68758 56576
+68759 50260
+68760 64694
+68761 21512
+68761 24232
+68762 68759
+68763 39213
+68764 28241
+68765 39211
+68766 39213
+68767 61228
+68768 27001
+68769 22525
+68770 23733
+68771 2041
+68772 26919
+68773 28488
+68774 60899
+68775 5168
+68776 21111
+68777 57934
+68778 71601
+68779 70152
+68780 59747
+68781 40399
+68782 75769
+68783 81169
+68784 24504
+68785 27521
+68785 64696
+68786 76475
+68787 6923
+68788 41607
+68789 50191
+68790 63610
+68791 39216
+68792 71445
+68793 6925
+68794 75456
+68795 81139
+68796 45311
+68797 68149
+68798 76930
+68799 42962
+68800 67735
+68801 42267
+68802 32206
+68803 79410
+68804 61147
+68805 57781
+68806 57835
+68807 24538
+68808 20408
+68809 41350
+68810 57089
+68811 75456
+68812 58668
+68813 50196
+68814 51712
+68815 55633
+68816 66712
+68817 75988
+68818 49777
+68819 53055
+68820 30067
+68821 60495
+68822 68897
+68823 52970
+68824 22002
+68825 27883
+68826 42776
+68827 34418
+68828 69932
+68829 36743
+68830 81046
+68831 35510
+68832 33094
+68832 39181
+68833 81030
+68834 46589
+68835 74783
+68836 12967
+68837 45640
+68838 21689
+68839 78831
+68840 39175
+68841 64315
+68842 49918
+68843 55132
+68844 70762
+68845 60685
+68846 43844
+68847 62296
+68848 49593
+68849 39065
+68850 78364
+68851 34940
+68852 23219
+68853 78364
+68854 71851
+68855 72413
+68856 41666
+68857 61147
+68858 29117
+68859 65124
+68860 33639
+68861 44100
+68862 70367
+68863 51875
+68864 25149
+68865 56775
+68866 80159
+68867 69071
+68868 54247
+68869 21811
+68870 59782
+68871 28449
+68872 62296
+68873 37512
+68874 69980
+68875 48540
+68876 48003
+68877 70052
+68878 58489
+68879 16770
+68880 41115
+68881 36094
+68882 74169
+68883 33489
+68884 26920
+68884 70579
+68885 58839
+68886 60492
+68887 41229
+68888 68889
+68889 72446
+68890 35637
+68891 23177
+68892 55175
+68893 71416
+68894 68888
+68895 42747
+68896 49689
+68897 79254
+68898 62174
+68899 31675
+68900 77299
+68901 49777
+68902 8704
+68903 31677
+68904 31679
+68905 48469
+68906 22519
+68907 65959
+68908 40797
+68909 52382
+68910 26954
+68911 24913
+68912 49777
+68913 35524
+68914 35526
+68915 25276
+68916 37579
+68917 56896
+68918 56777
+68919 39494
+68920 61815
+68921 50657
+68921 68922
+68922 67817
+68923 21691
+68924 58158
+68925 27441
+68926 46882
+68927 21417
+68928 22519
+68929 43405
+68930 32568
+68931 37579
+68932 46853
+68933 58377
+68934 65226
+68935 71000
+68936 80943
+68937 49777
+68938 36942
+68939 55369
+68940 81057
+68941 52436
+68942 49900
+68943 3076
+68944 58158
+68945 47277
+68946 79831
+68947 59782
+68948 59782
+68949 46969
+68950 81061
+68951 71202
+68952 74527
+68953 37689
+68954 64307
+68955 73652
+68956 38131
+68957 37883
+68958 20959
+68959 41070
+68960 55366
+68961 43293
+68962 36791
+68963 24019
+68964 46416
+68965 37692
+68966 41054
+68967 75864
+68968 27207
+68969 68996
+68970 49609
+68971 64206
+68972 41424
+68973 51874
+68974 62649
+68975 55517
+68976 80851
+68977 81025
+68978 67101
+68979 2911
+68980 21095
+68981 36458
+68982 62136
+68983 46882
+68984 32177
+68985 34571
+68986 56174
+68987 41054
+68988 38518
+68989 53135
+68990 71055
+68991 29733
+68992 30353
+68993 59480
+68994 67573
+68995 68048
+68996 81056
+68997 77773
+68998 78831
+68999 62629
+69000 28105
+69001 58520
+69002 58576
+69003 61961
+69004 62255
+69005 80926
+69006 64732
+69007 60584
+69008 34479
+69009 25617
+69010 31329
+69011 58158
+69012 22983
+69013 63860
+69014 48238
+69015 40616
+69016 53718
+69017 37851
+69018 70996
+69019 72281
+69020 67802
+69021 68354
+69022 48054
+69023 58583
+69024 58583
+69025 70073
+69026 58585
+69027 67573
+69028 67777
+69029 66867
+69030 68889
+69031 3438
+69032 62355
+69032 71792
+69033 65220
+69034 41988
+69035 23070
+69036 37632
+69037 68266
+69038 63057
+69039 63057
+69040 38394
+69041 57058
+69042 26246
+69043 20554
+69044 24216
+69045 34897
+69046 34897
+69047 75091
+69048 37456
+69049 64315
+69050 33637
+69051 32239
+69052 35361
+69053 39181
+69054 27019
+69055 77871
+69056 23730
+69057 47665
+69058 23772
+69059 43010
+69059 69719
+69060 25229
+69061 26954
+69062 20255
+69063 29989
+69064 70111
+69065 30843
+69066 61147
+69067 26306
+69068 23164
+69069 39100
+69070 34048
+69071 38721
+69072 38959
+69073 45721
+69074 45721
+69075 7410
+69076 35248
+69077 7639
+69078 44291
+69079 2911
+69080 34348
+69081 47665
+69082 62089
+69083 51867
+69084 51964
+69085 74119
+69086 16588
+69087 79762
+69088 34958
+69089 38972
+69090 50782
+69091 54026
+69092 47665
+69093 66051
+69094 62857
+69095 79778
+69096 57183
+69097 22722
+69098 55879
+69099 10254
+69100 69030
+69101 46558
+69102 67574
+69103 68612
+69104 68613
+69105 52571
+69106 44291
+69107 17151
+69108 23532
+69109 72669
+69110 53055
+69111 23612
+69112 75788
+69113 77668
+69114 68804
+69115 28085
+69116 77935
+69117 39100
+69118 80984
+69119 69199
+69120 38449
+69121 68387
+69122 23162
+69123 30774
+69124 77289
+69125 43000
+69126 37579
+69127 79832
+69128 69199
+69129 62014
+69130 57666
+69131 41424
+69132 36945
+69133 43862
+69134 49482
+69135 32082
+69136 41424
+69137 62014
+69138 40846
+69139 22529
+69140 69143
+69141 33715
+69142 58838
+69143 54972
+69144 44193
+69145 51069
+69146 20680
+69147 56793
+69148 55267
+69149 21630
+69150 39015
+69151 50574
+69152 59180
+69153 47887
+69154 40611
+69155 56210
+69156 36459
+69157 64090
+69158 56210
+69159 32959
+69160 79632
+69161 49777
+69162 58838
+69163 28977
+69164 42120
+69165 52971
+69166 30057
+69167 68708
+69168 59993
+69169 70074
+69170 54438
+69171 56755
+69172 32062
+69173 21713
+69174 30215
+69175 42567
+69176 45617
+69177 68889
+69178 44291
+69179 61228
+69180 61228
+69181 61228
+69182 76502
+69183 21100
+69184 80926
+69185 42553
+69186 4531
+69187 30524
+69188 43882
+69189 74490
+69190 3600
+69191 31927
+69192 68099
+69193 35471
+69194 67574
+69195 16754
+69196 29253
+69197 37401
+69198 52034
+69199 21746
+69200 35660
+69201 58875
+69202 29462
+69203 70995
+69204 36721
+69205 51385
+69206 69283
+69207 73633
+69208 77515
+69209 64405
+69210 37955
+69211 21235
+69212 60841
+69213 69637
+69214 24891
+69215 63136
+69216 65562
+69217 22502
+69218 23938
+69219 44349
+69220 28449
+69221 33827
+69222 36698
+69223 42100
+69224 49777
+69225 24506
+69226 49907
+69227 65562
+69228 49900
+69229 66432
+69230 58130
+69231 74093
+69232 43812
+69233 19955
+69234 46742
+69235 55194
+69236 46857
+69237 47546
+69238 13018
+69239 52299
+69240 52899
+69241 56427
+69242 56683
+69243 46628
+69244 62423
+69245 61324
+69246 63660
+69247 72767
+69248 77531
+69249 39900
+69250 27765
+69251 43243
+69252 32318
+69253 22123
+69254 23365
+69255 36616
+69256 37009
+69257 38937
+69258 39209
+69259 39690
+69260 47851
+69261 46585
+69262 69847
+69263 63411
+69264 6926
+69265 65847
+69266 60467
+69267 78167
+69268 49950
+69269 49950
+69270 21405
+69271 24668
+69272 52283
+69273 23751
+69274 68763
+69275 47215
+69276 23739
+69277 36806
+69278 26184
+69279 14919
+69280 40069
+69281 48358
+69282 59389
+69283 48727
+69284 61477
+69285 41205
+69286 25955
+69287 57106
+69287 81061
+69288 71161
+69289 23282
+69290 60464
+69291 72767
+69292 72797
+69293 23287
+69294 57128
+69295 23410
+69296 69385
+69297 34912
+69298 50841
+69299 75456
+69300 43882
+69301 62257
+69302 27001
+69303 23652
+69304 33143
+69305 60357
+69306 55132
+69307 37955
+69308 21235
+69309 30508
+69310 77164
+69311 45983
+69312 2437
+69313 69315
+69314 51242
+69315 68096
+69316 36631
+69317 46421
+69318 41500
+69319 39421
+69320 77176
+69321 46412
+69322 76085
+69323 26536
+69324 21230
+69325 21115
+69326 43104
+69327 34445
+69328 50324
+69329 72879
+69330 74965
+69331 29378
+69332 53383
+69333 38999
+69334 61702
+69335 21108
+69336 38641
+69336 55220
+69337 69336
+69338 54804
+69339 13471
+69340 54805
+69341 37428
+69342 15785
+69343 56171
+69344 24486
+69345 52839
+69346 40015
+69347 69344
+69348 37251
+69349 47665
+69350 69190
+69351 43703
+69352 59779
+69353 60492
+69354 48727
+69355 80016
+69356 29918
+69357 69364
+69358 46593
+69359 51820
+69360 3292
+69361 59847
+69362 60843
+69363 35187
+69364 43828
+69365 25489
+69366 28845
+69367 65487
+69368 49777
+69369 55154
+69370 51607
+69371 65487
+69372 72322
+69373 24909
+69374 61477
+69375 69179
+69376 56749
+69377 50447
+69378 56207
+69379 23933
+69380 42738
+69381 50260
+69382 58674
+69383 41054
+69384 62453
+69385 60465
+69386 23219
+69387 57127
+69388 53055
+69389 49777
+69390 59389
+69391 71600
+69392 69637
+69393 49194
+69394 25955
+69395 60566
+69396 65729
+69397 19638
+69398 45311
+69399 38803
+69400 10252
+69401 14919
+69402 41547
+69403 45924
+69404 55132
+69405 55127
+69406 45074
+69407 45075
+69408 71307
+69409 23919
+69410 23122
+69411 80935
+69412 32689
+69413 23762
+69414 20925
+69415 22781
+69416 22168
+69417 64215
+69418 39371
+69419 74805
+69420 39371
+69421 20792
+69422 22820
+69422 30774
+69423 61612
+69424 23810
+69425 49777
+69426 63606
+69427 20731
+69427 33346
+69428 64090
+69429 21427
+69430 50515
+69431 64481
+69432 26952
+69433 21440
+69434 24233
+69435 39627
+69436 69434
+69437 33732
+69438 33771
+69439 34985
+69440 56162
+69441 64306
+69442 37506
+69443 48702
+69444 51487
+69445 36845
+69446 24155
+69447 37551
+69448 37545
+69449 69940
+69450 39211
+69451 63779
+69452 40894
+69453 41689
+69454 52168
+69454 69472
+69455 43767
+69456 45966
+69457 47665
+69458 21511
+69459 48991
+69460 49504
+69461 26515
+69462 49799
+69463 50232
+69464 23102
+69465 39286
+69466 59395
+69467 71906
+69468 62831
+69469 63120
+69470 63668
+69471 80159
+69472 60982
+69473 76037
+69474 66563
+69475 61350
+69476 66659
+69477 33773
+69478 56255
+69479 16757
+69480 42169
+69481 73084
+69482 54932
+69483 37786
+69484 20629
+69485 78364
+69486 73402
+69487 33917
+69488 49186
+69489 68181
+69490 35908
+69491 55449
+69492 54714
+69493 69491
+69494 62690
+69495 48426
+69496 68184
+69497 25839
+69498 74965
+69499 56028
+69500 38539
+69501 27292
+69502 39180
+69503 71718
+69504 53671
+69505 53219
+69506 45841
+69507 53215
+69508 53220
+69509 22988
+69510 68782
+69511 61228
+69512 34823
+69513 59993
+69514 79125
+69515 38102
+69516 24122
+69517 62110
+69517 69516
+69518 22594
+69519 62257
+69520 65905
+69521 64668
+69522 78175
+69523 33307
+69524 33306
+69525 35841
+69526 45056
+69527 15367
+69528 54941
+69529 33009
+69530 76066
+69531 59976
+69532 47357
+69533 1640
+69534 1640
+69535 69686
+69536 29071
+69537 40752
+69538 33335
+69539 31610
+69540 64694
+69541 63918
+69542 66501
+69543 77779
+69544 29471
+69545 61541
+69546 55351
+69547 63935
+69548 50450
+69549 77089
+69550 78175
+69551 69686
+69552 42729
+69553 43401
+69554 7191
+69555 29039
+69556 52581
+69557 14919
+69558 65885
+69559 32909
+69560 16781
+69561 30055
+69562 19755
+69563 67586
+69564 55935
+69565 36495
+69566 58946
+69567 78209
+69568 31611
+69569 43200
+69570 79063
+69571 47872
+69572 18530
+69573 2911
+69574 34023
+69575 61134
+69576 73425
+69577 40657
+69578 41137
+69579 33660
+69580 51102
+69581 61541
+69582 64540
+69583 24233
+69584 49456
+69585 23094
+69586 69583
+69587 69583
+69588 33492
+69589 20681
+69590 75086
+69591 33499
+69592 69599
+69593 69578
+69594 63416
+69594 65839
+69595 41666
+69596 55996
+69597 55996
+69598 61686
+69599 41571
+69600 20407
+69601 63546
+69602 63980
+69603 49347
+69604 20939
+69605 55132
+69605 61621
+69606 34245
+69607 47335
+69608 34245
+69609 20955
+69610 76879
+69611 34246
+69612 57781
+69613 57782
+69614 74968
+69615 6193
+69616 49777
+69617 69592
+69618 6234
+69619 10545
+69620 73824
+69621 20617
+69622 40889
+69623 22544
+69624 41571
+69625 40888
+69626 38551
+69627 69624
+69628 45387
+69629 70090
+69630 42711
+69631 37519
+69632 44193
+69633 8940
+69634 30520
+69635 73104
+69636 71914
+69637 46347
+69638 72076
+69639 66850
+69640 69637
+69641 37703
+69642 21235
+69643 49870
+69644 33418
+69645 37914
+69646 20415
+69647 37202
+69648 57128
+69649 16770
+69650 44315
+69651 33078
+69652 75222
+69653 61384
+69654 52120
+69655 58948
+69656 27021
+69657 62303
+69658 66850
+69659 21017
+69660 20428
+69661 21351
+69662 69698
+69663 75640
+69664 59338
+69665 66599
+69666 22988
+69667 47033
+69668 30784
+69669 81046
+69670 21155
+69671 70002
+69672 864
+69673 71851
+69674 42797
+69675 38703
+69676 76173
+69677 27141
+69678 41054
+69679 58216
+69680 25022
+69681 58834
+69682 62784
+69683 35794
+69684 69838
+69685 27948
+69686 61243
+69687 53312
+69688 56511
+69689 59180
+69690 50332
+69691 35900
+69692 57106
+69693 64539
+69694 28503
+69695 20925
+69696 64033
+69697 54611
+69698 59330
+69699 33007
+69700 46344
+69701 62892
+69702 33468
+69703 31404
+69704 53123
+69705 63892
+69706 42049
+69707 22137
+69708 32596
+69709 24500
+69710 52493
+69711 55217
+69712 55216
+69713 78999
+69714 56491
+69715 55351
+69716 45505
+69717 42204
+69718 34127
+69719 61147
+69720 52396
+69721 33273
+69722 67773
+69723 58366
+69724 70919
+69725 63206
+69726 63206
+69727 69415
+69728 48898
+69729 48727
+69730 21692
+69731 45375
+69732 21848
+69733 80510
+69734 66867
+69735 37301
+69736 60492
+69737 78574
+69738 21395
+69739 62174
+69740 68048
+69741 77598
+69742 77548
+69743 30604
+69744 10789
+69745 3605
+69746 33715
+69747 35533
+69748 28543
+69749 40028
+69750 49824
+69751 72879
+69752 73142
+69753 50140
+69754 56796
+69755 78583
+69756 39732
+69757 29696
+69758 37578
+69759 23938
+69760 27141
+69761 33788
+69762 58862
+69763 42553
+69764 27155
+69765 52587
+69766 62917
+69767 40894
+69768 62895
+69769 33337
+69770 55266
+69771 33886
+69772 37202
+69773 57128
+69774 16770
+69775 33078
+69776 73030
+69777 32560
+69778 36208
+69779 46525
+69780 68704
+69781 62683
+69782 25149
+69783 77748
+69784 64721
+69785 62653
+69786 46686
+69787 68972
+69788 68972
+69789 2071
+69790 34373
+69791 72605
+69792 62180
+69793 32913
+69794 21487
+69795 45056
+69796 3605
+69797 55829
+69798 57706
+69799 31730
+69800 70824
+69801 41407
+69802 72628
+69803 21825
+69804 27019
+69805 52120
+69806 31325
+69807 65562
+69808 65562
+69809 50450
+69810 31174
+69811 36103
+69812 76475
+69813 65562
+69814 52120
+69815 52120
+69816 37616
+69817 33715
+69818 59790
+69819 35510
+69820 21487
+69821 66801
+69822 49351
+69822 56513
+69823 79673
+69824 37699
+69825 62289
+69826 41371
+69827 41106
+69828 38394
+69829 57673
+69830 44212
+69831 54308
+69832 28074
+69833 46902
+69834 57671
+69835 69829
+69836 80921
+69837 51593
+69838 48142
+69838 75910
+69839 57660
+69840 67573
+69841 20956
+69842 29980
+69843 41571
+69844 59178
+69845 31249
+69846 22002
+69847 30584
+69848 31227
+69849 31250
+69850 38563
+69851 12150
+69852 59388
+69853 54606
+69854 49777
+69855 33862
+69856 58948
+69857 40330
+69858 37553
+69859 40832
+69860 29193
+69861 22502
+69862 55132
+69863 44315
+69864 52120
+69865 23424
+69866 73163
+69867 69858
+69868 46975
+69869 40581
+69870 62461
+69871 66440
+69872 31174
+69873 57127
+69874 36208
+69875 49832
+69876 24840
+69877 42267
+69878 32000
+69878 43010
+69879 67493
+69880 69525
+69881 32473
+69882 64307
+69883 49899
+69884 71302
+69885 66641
+69886 18616
+69887 66523
+69888 78343
+69889 54739
+69890 45789
+69891 69880
+69892 43125
+69893 49731
+69894 65986
+69895 63645
+69896 42985
+69896 72757
+69897 42985
+69898 27485
+69899 28747
+69900 38518
+69901 3808
+69902 53123
+69903 67487
+69904 23345
+69905 60575
+69906 60568
+69907 76609
+69908 75215
+69909 41054
+69910 71594
+69911 67856
+69912 47802
+69913 71240
+69914 65420
+69915 43952
+69916 21375
+69917 61896
+69917 80755
+69918 54821
+69919 44450
+69920 20665
+69921 8704
+69922 40955
+69923 42041
+69924 50168
+69925 21455
+69926 69342
+69927 58860
+69928 28257
+69929 59061
+69930 59062
+69931 6735
+69932 36691
+69933 36690
+69934 45829
+69935 63789
+69936 41203
+69937 41203
+69938 79486
+69939 37646
+69940 41571
+69941 37588
+69942 39627
+69943 78422
+69944 27074
+69945 31673
+69946 46688
+69947 47665
+69948 38528
+69949 20386
+69950 35503
+69951 27021
+69952 35627
+69953 35627
+69954 35627
+69955 60464
+69956 45640
+69957 52536
+69958 26598
+69959 41054
+69960 71274
+69961 39733
+69962 33560
+69963 22188
+69964 78153
+69965 54114
+69966 63980
+69967 76759
+69968 73443
+69969 21492
+69970 64214
+69971 59912
+69972 51242
+69973 57221
+69974 57221
+69975 37795
+69976 39338
+69977 81080
+69978 40819
+69979 22529
+69980 55128
+69981 41054
+69982 66531
+69983 57127
+69984 69839
+69985 46363
+69986 76730
+69987 49441
+69988 26954
+69989 59975
+69990 33367
+69991 23846
+69992 68797
+69993 58750
+69994 33073
+69995 36654
+69996 11311
+69997 65724
+69998 18616
+69999 28105
+70000 52227
+70000 76671
+70001 42904
+70001 76671
+70002 31835
+70003 58651
+70004 78365
+70005 29881
+70006 36369
+70007 39181
+70008 35513
+70009 68832
+70010 61423
+70011 64307
+70012 64307
+70013 68728
+70014 75378
+70015 59591
+70016 21443
+70017 59389
+70018 27434
+70019 70750
+70020 42984
+70021 53804
+70022 47010
+70023 2041
+70024 27347
+70025 53293
+70025 61388
+70026 7577
+70027 43631
+70028 51291
+70029 47665
+70030 47665
+70031 37937
+70032 8268
+70033 73486
+70034 51699
+70035 72143
+70036 63057
+70037 69179
+70038 41699
+70039 70008
+70040 41371
+70041 40779
+70042 60202
+70043 25501
+70044 23560
+70045 53134
+70046 34695
+70047 22372
+70048 48012
+70049 62386
+70050 53027
+70051 70044
+70052 33078
+70053 61882
+70054 72373
+70055 41054
+70056 44482
+70057 67876
+70058 80428
+70059 10249
+70060 9179
+70061 38721
+70062 70061
+70063 74490
+70064 27561
+70065 49092
+70066 61228
+70067 33639
+70068 22165
+70069 22528
+70070 8669
+70071 34570
+70072 34570
+70073 65251
+70074 34570
+70075 25384
+70076 43550
+70077 34175
+70078 30688
+70079 62384
+70080 34993
+70081 51820
+70082 78767
+70083 79880
+70084 80926
+70085 70255
+70086 69125
+70087 54804
+70088 45239
+70089 33581
+70090 64307
+70091 36222
+70092 48627
+70093 70265
+70094 80926
+70095 15600
+70096 55145
+70097 35144
+70098 80935
+70099 70032
+70100 43447
+70101 52307
+70102 68185
+70103 43276
+70104 36456
+70105 64307
+70106 23377
+70107 41666
+70108 64306
+70109 70105
+70110 70105
+70111 22002
+70112 48574
+70113 30508
+70114 56752
+70115 34912
+70116 9842
+70117 66334
+70118 30526
+70119 49788
+70120 70121
+70121 39986
+70122 38928
+70123 43844
+70124 80778
+70125 36218
+70126 35296
+70127 32320
+70128 79987
+70129 80762
+70130 71594
+70131 27021
+70132 35503
+70133 52727
+70134 52545
+70135 64317
+70136 49918
+70137 60532
+70138 58614
+70139 35654
+70140 28249
+70141 45974
+70142 70579
+70143 18616
+70144 80926
+70145 15785
+70146 34695
+70147 80902
+70148 31989
+70149 80526
+70150 41833
+70151 56456
+70152 79002
+70153 3748
+70154 50198
+70155 33726
+70156 70161
+70157 21406
+70158 29072
+70159 37802
+70160 35495
+70161 57572
+70161 74965
+70162 20006
+70163 28240
+70164 28528
+70165 28242
+70166 49824
+70167 23746
+70168 59787
+70169 27421
+70170 32955
+70171 28529
+70172 21405
+70173 31730
+70174 32955
+70175 22519
+70175 26725
+70176 58826
+70177 67573
+70178 70491
+70179 31562
+70180 70152
+70181 67867
+70182 20660
+70183 80904
+70184 21111
+70185 38359
+70186 40335
+70187 37579
+70188 24559
+70189 44193
+70190 28662
+70191 38467
+70192 43645
+70193 41054
+70194 54359
+70195 23349
+70196 37583
+70197 23025
+70198 41054
+70199 26768
+70200 20565
+70201 19954
+70202 51655
+70203 79997
+70204 28380
+70205 75151
+70206 68361
+70207 27019
+70208 32386
+70209 39015
+70210 21417
+70211 11590
+70212 76004
+70213 77624
+70214 19638
+70215 24486
+70216 33660
+70217 81001
+70218 80863
+70219 43087
+70220 29760
+70221 40846
+70222 49824
+70223 52460
+70224 14782
+70225 70264
+70226 79438
+70227 33581
+70228 27485
+70229 33639
+70230 36942
+70231 51822
+70232 34695
+70233 32092
+70234 70147
+70235 71302
+70236 29957
+70237 21375
+70238 36942
+70239 48366
+70240 30833
+70241 37118
+70241 9339
+70242 33168
+70243 58835
+70244 67460
+70245 61811
+70246 24994
+70247 72729
+70248 70255
+70249 41987
+70250 40686
+70251 54643
+70252 40819
+70253 44044
+70254 60492
+70255 64257
+70256 48200
+70257 25347
+70258 28241
+70259 42209
+70260 34484
+70261 63674
+70262 27207
+70263 36942
+70264 55443
+70265 80904
+70266 31610
+70267 39724
+70268 2041
+70269 27521
+70269 70267
+70270 80904
+70271 12150
+70271 70267
+70272 78299
+70273 75151
+70274 70278
+70275 43645
+70276 55449
+70277 52105
+70278 31745
+70279 21405
+70280 28693
+70281 62738
+70282 25127
+70283 29696
+70284 53328
+70285 43246
+70286 25376
+70287 2523
+70288 23730
+70289 55900
+70290 61961
+70291 79438
+70292 27410
+70293 74489
+70294 60357
+70295 33627
+70296 63136
+70297 45954
+70298 59317
+70299 34346
+70300 70405
+70301 55367
+70302 20689
+70303 49719
+70304 27155
+70305 77057
+70306 37908
+70307 44271
+70308 50658
+70309 77243
+70310 53328
+70311 59336
+70312 60169
+70313 35522
+70314 77057
+70315 68411
+70316 66424
+70317 46911
+70318 23349
+70319 73594
+70320 41987
+70321 24225
+70322 65346
+70323 28616
+70324 24560
+70325 21403
+70326 39190
+70327 36222
+70328 54368
+70329 7577
+70330 46853
+70331 42747
+70332 81236
+70333 52639
+70334 51836
+70335 53881
+70336 38830
+70337 47494
+70338 38947
+70339 49907
+70340 37077
+70341 23933
+70342 54522
+70343 40877
+70344 23933
+70345 26769
+70346 72614
+70347 30612
+70348 27301
+70349 21894
+70350 41828
+70351 23846
+70352 76945
+70353 42168
+70354 70068
+70355 27021
+70356 35522
+70357 24613
+70358 24507
+70359 40092
+70360 50140
+70361 23217
+70362 48127
+70363 64317
+70364 60644
+70365 23219
+70366 64795
+70367 46882
+70368 33639
+70369 42150
+70370 26929
+70371 47121
+70372 80926
+70373 46842
+70374 22254
+70375 71596
+70376 20897
+70377 23968
+70378 25990
+70379 62681
+70380 77424
+70381 67345
+70381 73202
+70382 24397
+70383 62562
+70384 25230
+70385 65452
+70386 60532
+70387 29240
+70388 11405
+70389 67573
+70390 2462
+70391 58341
+70392 40220
+70393 49777
+70394 20680
+70395 62174
+70396 60158
+70397 42567
+70398 45617
+70399 55933
+70400 59321
+70401 74357
+70402 70068
+70403 36942
+70404 78365
+70405 50109
+70406 56392
+70407 49255
+70408 33348
+70409 59505
+70410 58158
+70411 50320
+70412 64981
+70413 36116
+70414 69126
+70415 60616
+70416 32178
+70417 79002
+70418 75564
+70419 62194
+70420 41989
+70421 59912
+70422 36219
+70423 36221
+70424 36222
+70425 53134
+70426 23282
+70427 27345
+70428 17503
+70429 80514
+70430 2911
+70431 45117
+70432 71302
+70433 28534
+70434 28217
+70435 77482
+70436 70432
+70437 40887
+70438 66583
+70439 59595
+70440 29484
+70441 19547
+70442 65959
+70443 60571
+70444 49436
+70445 39918
+70446 71116
+70447 36290
+70448 55154
+70449 26617
+70450 40011
+70451 44308
+70452 64533
+70453 26976
+70454 70452
+70455 37354
+70456 31163
+70457 76255
+70458 4709
+70459 76500
+70460 81080
+70461 15785
+70462 49918
+70463 28897
+70464 52698
+70465 43577
+70466 66432
+70467 43285
+70468 59264
+70469 61086
+70470 24504
+70471 25751
+70472 55886
+70473 47258
+70474 43952
+70475 52477
+70476 53328
+70477 66544
+70478 78268
+70479 67573
+70480 25488
+70481 39181
+70482 56513
+70482 856
+70483 55196
+70484 66056
+70485 75095
+70486 74119
+70487 67431
+70488 45578
+70489 36302
+70490 67573
+70491 60462
+70492 78309
+70493 23286
+70494 74527
+70495 53129
+70496 23652
+70497 22370
+70498 35503
+70499 43246
+70500 45300
+70501 59946
+70502 30556
+70503 37579
+70504 40925
+70505 39230
+70506 43053
+70507 70498
+70508 70498
+70509 62630
+70510 67365
+70511 73733
+70512 23654
+70513 46336
+70514 33602
+70515 57926
+70516 26920
+70517 26920
+70518 32177
+70519 33856
+70520 52971
+70521 53135
+70522 53136
+70523 48563
+70523 70525
+70524 56569
+70524 70525
+70525 34278
+70526 70525
+70526 81170
+70527 50675
+70528 55602
+70529 40314
+70530 66286
+70531 66056
+70532 56023
+70533 62609
+70534 68058
+70535 49585
+70536 70374
+70537 23739
+70538 73281
+70539 74786
+70540 26770
+70541 70494
+70542 79516
+70543 65672
+70544 56206
+70545 65446
+70546 28249
+70547 26681
+70548 39006
+70550 17354
+70551 57400
+70552 70076
+70553 78780
+70554 68955
+70555 19009
+70556 78596
+70557 71941
+70558 79253
+70559 37692
+70560 40945
+70560 56308
+70561 59248
+70562 61357
+70563 32982
+70564 53718
+70565 38345
+70566 43952
+70567 58667
+70568 61189
+70569 53718
+70570 52727
+70571 4337
+70572 70833
+70573 78831
+70574 20415
+70575 39874
+70576 39875
+70577 32900
+70578 32900
+70579 33581
+70580 40578
+70581 45117
+70582 52051
+70583 54995
+70584 49824
+70585 52037
+70586 70601
+70587 45117
+70588 59991
+70589 20724
+70590 49597
+70591 39434
+70592 65645
+70593 28241
+70594 25353
+70595 22242
+70596 32909
+70597 36942
+70598 49731
+70599 70596
+70599 77111
+70600 50267
+70601 57372
+70602 41407
+70603 21534
+70604 70042
+70605 26114
+70606 32909
+70607 49777
+70608 69132
+70609 24725
+70610 49459
+70611 37202
+70612 11311
+70613 11311
+70614 41555
+70615 68449
+70616 79184
+70617 33273
+70618 71952
+70619 77763
+70620 42747
+70621 65893
+70622 41987
+70623 60512
+70624 65858
+70625 53183
+70626 38435
+70627 59819
+70628 32450
+70629 68239
+70630 20792
+70631 33086
+70632 70640
+70633 30774
+70633 69523
+70634 28014
+70635 29427
+70636 62883
+70636 70667
+70637 62354
+70638 67806
+70639 62609
+70640 29339
+70641 41054
+70642 22522
+70643 45301
+70644 46162
+70645 21687
+70646 79125
+70647 71398
+70648 44193
+70649 63870
+70650 3503
+70651 3503
+70652 39261
+70653 22682
+70654 38030
+70655 38030
+70656 70644
+70657 62637
+70658 75182
+70659 75804
+70660 80720
+70661 73900
+70662 15784
+70663 6958
+70664 61228
+70665 76945
+70666 55890
+70667 33086
+70668 37428
+70669 68380
+70670 29989
+70671 43175
+70672 33307
+70672 58135
+70673 63506
+70674 63931
+70675 70679
+70676 61228
+70677 18616
+70678 12992
+70679 22468
+70680 26152
+70681 27993
+70682 71824
+70683 25986
+70684 31051
+70685 2438
+70686 41666
+70687 41666
+70688 42115
+70689 66080
+70690 7577
+70691 46735
+70692 50611
+70693 56375
+70694 51116
+70695 79125
+70696 25181
+70697 33537
+70698 54622
+70699 56013
+70700 30056
+70700 58082
+70701 70644
+70702 38651
+70703 69719
+70704 75033
+70705 62403
+70706 32450
+70707 19954
+70708 68130
+70709 30179
+70710 71762
+70711 50010
+70712 72992
+70713 18616
+70714 18616
+70715 77348
+70716 79974
+70717 80369
+70718 80526
+70719 45723
+70720 58951
+70721 76325
+70722 45622
+70723 38435
+70724 45617
+70725 72446
+70726 50996
+70727 43623
+70728 2911
+70729 79125
+70730 75033
+70731 79125
+70732 80903
+70733 41666
+70734 41666
+70735 47679
+70736 43182
+70737 15785
+70738 47679
+70739 63815
+70740 68298
+70741 7293
+70742 41922
+70743 75627
+70744 27679
+70745 43720
+70746 80542
+70747 71344
+70748 71345
+70749 47665
+70750 49777
+70751 31885
+70752 41006
+70753 27706
+70754 2179
+70755 47055
+70756 50322
+70757 52396
+70758 54895
+70759 61001
+70760 61558
+70761 62108
+70762 64325
+70763 69620
+70764 64979
+70765 57359
+70766 57543
+70767 20694
+70768 39574
+70769 32477
+70770 43430
+70770 75508
+70771 56317
+70772 39492
+70773 54100
+70774 27947
+70775 76502
+70776 40212
+70777 53277
+70778 77747
+70779 57543
+70780 27155
+70781 19642
+70782 19638
+70783 25747
+70784 14919
+70785 70786
+70786 57130
+70786 79313
+70787 15594
+70788 79323
+70789 25061
+70790 50863
+70791 74251
+70792 58542
+70793 42217
+70794 15522
+70795 31163
+70796 78060
+70797 25488
+70798 32560
+70799 34993
+70800 27233
+70801 64207
+70802 65200
+70803 74520
+70804 75384
+70805 70778
+70806 23727
+70807 24496
+70808 75690
+70809 78208
+70810 80483
+70811 8836
+70812 16770
+70813 62443
+70814 50471
+70815 36763
+70816 72794
+70817 49780
+70818 73658
+70819 62562
+70820 20925
+70821 5316
+70822 80023
+70823 36458
+70824 36751
+70825 36219
+70826 22877
+70827 43827
+70828 36188
+70829 81080
+70830 58758
+70831 35461
+70832 30084
+70833 29071
+70834 47258
+70835 49918
+70836 60571
+70837 40199
+70838 38531
+70839 77763
+70840 59369
+70841 48898
+70842 38532
+70843 49461
+70844 10845
+70845 11256
+70846 23000
+70847 21687
+70848 35503
+70849 25564
+70850 35522
+70851 11257
+70852 62298
+70853 21379
+70854 42049
+70855 80514
+70856 18616
+70857 49527
+70858 70152
+70859 51570
+70860 23751
+70861 69285
+70862 73802
+70863 31520
+70864 73509
+70865 73830
+70866 57134
+70867 60357
+70868 62180
+70869 33130
+70870 79231
+70871 56748
+70872 56748
+70873 69769
+70874 79077
+70875 77652
+70876 73104
+70877 37168
+70878 32596
+70879 75602
+70880 1936
+70881 49777
+70882 29711
+70883 37091
+70883 5554
+70883 72628
+70884 32320
+70885 57346
+70886 52120
+70887 65562
+70888 58369
+70889 65562
+70890 50450
+70891 64694
+70892 31609
+70893 36103
+70894 76475
+70895 65562
+70896 52120
+70897 58369
+70898 54248
+70899 64215
+70900 41973
+70901 70876
+70902 54248
+70903 33560
+70904 55129
+70905 58158
+70906 18211
+70907 72614
+70908 65718
+70909 26920
+70909 80159
+70910 70912
+70911 70913
+70912 23846
+70913 23856
+70914 40331
+70915 23219
+70916 70248
+70917 27531
+70918 46956
+70919 57059
+70920 73907
+70921 53868
+70922 59635
+70923 80207
+70924 54900
+70925 22226
+70926 25127
+70927 25577
+70928 33639
+70929 50260
+70930 38435
+70931 36756
+70932 74298
+70933 54617
+70934 27203
+70935 38369
+70936 81069
+70937 49633
+70938 23219
+70939 61936
+70940 67928
+70941 21630
+70942 27263
+70943 29240
+70944 33273
+70945 65524
+70946 51181
+70946 70969
+70947 70973
+70948 48548
+70949 41080
+70950 60408
+70951 14766
+70952 65226
+70953 29676
+70954 66787
+70955 77084
+70956 70499
+70957 79880
+70958 78826
+70959 26921
+70960 32065
+70961 34761
+70962 65025
+70963 67365
+70964 71274
+70965 49777
+70966 80926
+70967 77033
+70968 60741
+70969 23846
+70970 71291
+70971 63031
+70972 39969
+70973 23856
+70974 80926
+70975 65124
+70976 34104
+70977 31799
+70978 73104
+70979 46389
+70980 34570
+70981 15473
+70982 12078
+70983 65764
+70984 33894
+70985 32070
+70986 66538
+70987 52105
+70988 27012
+70988 33476
+70989 74527
+70990 22545
+70991 24504
+70992 29471
+70993 21513
+70994 71833
+70995 37560
+70996 74779
+70997 39427
+70998 41987
+70999 70988
+71000 37006
+71001 49699
+71002 28334
+71003 81315
+71004 53457
+71005 49950
+71006 74779
+71007 74777
+71008 43969
+71009 37758
+71010 68857
+71011 27183
+71012 64694
+71013 71941
+71014 32567
+71015 54804
+71016 31927
+71017 44193
+71018 23380
+71019 20901
+71020 57799
+71021 38080
+71022 50891
+71023 27155
+71024 39638
+71025 69769
+71026 63610
+71027 29240
+71028 54804
+71029 54804
+71030 62773
+71031 23862
+71032 43839
+71033 45414
+71034 65346
+71035 23295
+71035 27486
+71036 14893
+71037 60269
+71038 51171
+71039 31163
+71040 48305
+71041 52141
+71042 53183
+71043 29230
+71044 28241
+71045 79489
+71046 81063
+71047 26664
+71048 36091
+71049 36183
+71050 73774
+71051 53750
+71052 34018
+71053 74251
+71054 76368
+71055 10770
+71056 60169
+71057 69034
+71058 21417
+71059 35985
+71060 70952
+71061 77598
+71062 58158
+71063 49372
+71064 18211
+71065 30351
+71066 38811
+71067 31902
+71068 36280
+71068 72268
+71069 58195
+71070 29876
+71071 52037
+71072 26770
+71073 26769
+71074 48017
+71075 70341
+71076 32596
+71077 20831
+71078 5752
+71079 35505
+71080 62623
+71081 21443
+71082 23345
+71083 73839
+71084 75029
+71085 67567
+71086 69342
+71087 53328
+71088 10789
+71089 60990
+71090 67560
+71091 34984
+71092 67566
+71093 61841
+71094 71262
+71095 51487
+71096 49777
+71097 80926
+71098 49777
+71099 22663
+71100 22663
+71101 75344
+71102 54737
+71103 70152
+71104 724
+71105 77066
+71106 59787
+71107 79079
+71108 60722
+71109 51803
+71110 37591
+71111 78826
+71112 80935
+71113 23846
+71114 23856
+71115 23004
+71116 61702
+71117 61702
+71118 50191
+71119 22947
+71119 71121
+71120 76879
+71121 37645
+71122 63979
+71122 71137
+71123 71121
+71124 66830
+71125 68016
+71125 72756
+71125 75814
+71126 20777
+71127 27538
+71128 29659
+71129 60004
+71130 43882
+71131 61147
+71132 24759
+71133 28810
+71134 57803
+71135 75655
+71136 71116
+71137 20956
+71138 24504
+71139 53889
+71139 71883
+71140 39776
+71141 21280
+71142 71124
+71143 71137
+71143 79486
+71144 49777
+71145 38308
+71146 29760
+71147 25488
+71148 2041
+71149 55261
+71150 30215
+71151 51638
+71152 52633
+71153 15965
+71154 68177
+71155 80147
+71156 58591
+71157 49538
+71158 37268
+71159 52436
+71160 36866
+71161 60465
+71162 72177
+71163 24840
+71164 45643
+71165 54100
+71166 51654
+71167 35510
+71168 71398
+71169 41988
+71170 77670
+71171 71877
+71172 36134
+71173 62385
+71174 36751
+71175 45359
+71176 62453
+71177 42938
+71178 41424
+71179 64127
+71180 22302
+71181 78673
+71182 77935
+71183 28308
+71184 38131
+71185 79451
+71186 69189
+71187 80568
+71188 29540
+71189 43844
+71190 594
+71191 79213
+71192 47880
+71193 70219
+71194 23345
+71195 24730
+71196 76264
+71197 37672
+71198 76255
+71199 63324
+71200 72697
+71201 56185
+71202 23560
+71203 70042
+71204 42621
+71205 40544
+71206 62513
+71207 31939
+71208 43580
+71209 29379
+71210 56219
+71211 33470
+71212 73432
+71213 31927
+71214 51699
+71215 36220
+71216 36188
+71217 56752
+71218 43087
+71219 2911
+71220 81017
+71221 39598
+71222 45909
+71223 59151
+71224 31711
+71225 77387
+71226 27631
+71227 62547
+71228 45232
+71229 64195
+71230 61363
+71231 68149
+71232 79639
+71233 41555
+71234 79673
+71235 43000
+71236 27461
+71237 32687
+71238 28154
+71239 80113
+71240 78406
+71241 31939
+71242 24909
+71243 31940
+71244 63134
+71245 71223
+71246 50447
+71247 63133
+71248 77083
+71249 65895
+71250 71251
+71251 54100
+71252 37601
+71253 39176
+71254 25399
+71255 49629
+71256 25437
+71257 49777
+71258 27037
+71259 74646
+71260 34570
+71261 5314
+71262 78163
+71263 77073
+71264 52633
+71265 54940
+71266 41987
+71267 79202
+71268 63509
+71269 10770
+71270 44291
+71271 2554
+71272 59877
+71273 33310
+71274 31493
+71275 38156
+71276 60532
+71277 73336
+71278 57127
+71279 74604
+71280 79697
+71281 43827
+71282 68149
+71283 51585
+71284 71283
+71285 26769
+71286 27021
+71287 70899
+71288 57741
+71289 25181
+71290 21574
+71291 26954
+71292 28559
+71293 24698
+71294 34175
+71295 3295
+71296 3452
+71297 31506
+71298 50332
+71299 6498
+71300 52119
+71301 48564
+71302 49699
+71303 46565
+71304 49777
+71305 70152
+71306 32687
+71307 67606
+71308 28731
+71309 23772
+71310 46842
+71311 6498
+71312 10252
+71313 26337
+71314 25160
+71315 70898
+71316 22191
+71317 79920
+71318 63412
+71319 68556
+71320 56022
+71321 59970
+71322 27104
+71323 59116
+71323 63149
+71324 72260
+71325 61086
+71326 2594
+71327 32444
+71328 49777
+71329 27704
+71330 23102
+71331 36280
+71332 35678
+71333 40183
+71334 69206
+71335 69575
+71336 40945
+71336 56308
+71337 61136
+71338 27348
+71339 43261
+71340 42267
+71341 71676
+71342 62289
+71343 55470
+71344 41096
+71345 49777
+71346 39698
+71347 67135
+71348 71344
+71349 71345
+71350 20724
+71351 39649
+71352 21574
+71353 21270
+71354 78720
+71355 49731
+71356 50219
+71357 27765
+71358 27104
+71359 2911
+71360 2911
+71361 26783
+71362 68954
+71363 33169
+71364 2911
+71365 54125
+71366 16151
+71367 40843
+71368 33606
+71369 60532
+71370 29659
+71371 30973
+71372 40579
+71373 76609
+71374 67573
+71375 20679
+71376 43387
+71377 39598
+71378 21713
+71379 23772
+71380 34668
+71381 35862
+71382 38013
+71383 45948
+71384 46842
+71385 53270
+71386 57059
+71387 57060
+71388 57063
+71389 62255
+71390 71681
+71391 74296
+71392 8486
+71393 80853
+71394 40500
+71395 42168
+71396 71382
+71397 25854
+71398 75914
+71399 40559
+71400 39253
+71401 28213
+71402 71353
+71403 42118
+71404 42118
+71405 49463
+71406 33015
+71407 62296
+71408 43844
+71409 38622
+71410 37432
+71411 37579
+71412 26249
+71413 26760
+71414 28268
+71415 18616
+71416 44291
+71417 68508
+71418 61141
+71419 14926
+71420 52587
+71421 43622
+71422 61189
+71423 41944
+71424 67339
+71425 44380
+71426 56958
+71427 53293
+71428 41666
+71429 78886
+71430 26261
+71431 63766
+71432 57871
+71433 26929
+71434 65683
+71435 60645
+71436 46087
+71437 58158
+71438 27707
+71439 41424
+71440 56748
+71441 67516
+71442 42747
+71443 68266
+71444 72143
+71445 43010
+71445 61147
+71446 70413
+71447 77935
+71448 76995
+71449 36790
+71450 38648
+71451 74557
+71452 73817
+71453 48750
+71454 78596
+71455 41096
+71456 80028
+71457 41183
+71458 76067
+71459 78364
+71460 63740
+71461 76067
+71462 33654
+71463 78364
+71464 66260
+71464 74893
+71465 49777
+71466 47665
+71467 20778
+71468 33623
+71469 52245
+71470 71337
+71471 49777
+71472 49777
+71473 45311
+71474 61815
+71475 70291
+71476 46541
+71477 63415
+71478 75564
+71479 54743
+71480 67181
+71481 70009
+71482 22601
+71483 35199
+71484 27765
+71485 78364
+71486 23454
+71487 29558
+71488 55503
+71489 67409
+71490 62980
+71491 72757
+71492 64979
+71493 58158
+71494 27765
+71495 71124
+71496 27766
+71497 21572
+71498 70996
+71499 78364
+71500 37167
+71501 76080
+71502 56921
+71503 58334
+71504 58334
+71505 80016
+71506 72747
+71507 28397
+71508 26824
+71509 40500
+71510 36134
+71511 53129
+71512 50965
+71513 39187
+71514 44163
+71515 80514
+71516 54100
+71517 62603
+71518 68352
+71519 43693
+71520 43693
+71521 1790
+71522 8369
+71523 74006
+71524 62736
+71525 26635
+71526 26920
+71527 70965
+71528 32065
+71529 34570
+71530 38505
+71531 22420
+71532 3737
+71533 35226
+71534 41916
+71535 77025
+71536 56774
+71537 36942
+71538 47037
+71539 59717
+71540 39294
+71541 43615
+71542 77346
+71543 30568
+71544 47938
+71545 76609
+71546 28192
+71547 27485
+71548 54793
+71549 49441
+71550 49777
+71551 33606
+71552 68832
+71553 49777
+71554 20925
+71555 79647
+71556 31673
+71557 27813
+71558 28132
+71559 42382
+71560 37672
+71561 41988
+71562 71556
+71563 69685
+71564 31679
+71565 71556
+71566 18616
+71567 79125
+71568 34764
+71569 69719
+71570 64979
+71571 75142
+71572 81317
+71573 42747
+71574 44478
+71575 1349
+71576 35199
+71577 51105
+71578 57431
+71579 75655
+71580 21169
+71581 59317
+71582 20533
+71583 16765
+71584 43046
+71585 1785
+71586 23846
+71586 60492
+71587 71617
+71588 71602
+71589 46347
+71590 22733
+71591 22734
+71592 20681
+71593 46347
+71594 18211
+71595 49194
+71596 40561
+71597 44315
+71598 46344
+71599 71610
+71600 68728
+71601 61558
+71602 62790
+71603 48685
+71604 64465
+71605 66431
+71606 68807
+71607 68818
+71608 69179
+71609 69276
+71610 42037
+71611 80044
+71612 64528
+71613 49194
+71614 54489
+71615 62811
+71616 49461
+71617 57548
+71618 46347
+71619 55266
+71620 49777
+71621 71598
+71622 39584
+71623 26100
+71624 26101
+71625 53215
+71626 53220
+71627 71607
+71628 71606
+71629 20570
+71630 71628
+71631 57879
+71632 48478
+71633 30084
+71634 65893
+71635 65895
+71636 81025
+71637 60897
+71638 10248
+71639 40069
+71640 61376
+71641 7824
+71642 29064
+71643 34681
+71644 24839
+71645 22988
+71646 34455
+71647 56272
+71648 55343
+71649 56022
+71650 55563
+71651 51957
+71652 68239
+71653 68239
+71654 68239
+71655 26044
+71656 35572
+71657 56634
+71657 68239
+71658 68239
+71659 48828
+71660 48887
+71660 54021
+71661 26579
+71661 37602
+71661 49004
+71662 50611
+71663 36877
+71663 74271
+71664 58082
+71665 58091
+71666 61586
+71667 28238
+71668 22300
+71669 74271
+71670 24891
+71671 28238
+71672 65627
+71673 61373
+71674 70494
+71675 75804
+71676 75564
+71677 31563
+71678 31562
+71679 34651
+71680 34649
+71681 77935
+71682 75257
+71683 55040
+71684 41820
+71685 25854
+71686 38641
+71686 57425
+71687 45310
+71688 62801
+71689 57923
+71690 31105
+71691 42461
+71692 60887
+71693 63730
+71694 28356
+71695 62296
+71696 68601
+71697 21221
+71698 70107
+71699 71556
+71700 71762
+71701 79920
+71702 21287
+71703 76336
+71704 77348
+71705 79697
+71706 80134
+71707 1785
+71708 25067
+71709 30769
+71710 20925
+71711 33195
+71712 27006
+71713 49254
+71714 42041
+71715 71952
+71716 79256
+71717 49807
+71718 40296
+71719 55448
+71720 38143
+71721 80113
+71722 45056
+71723 24771
+71724 30769
+71725 33510
+71726 40283
+71727 48347
+71728 38394
+71729 64071
+71730 30524
+71731 60532
+71732 47239
+71733 73166
+71734 58742
+71735 32604
+71736 44120
+71737 78816
+71738 39421
+71739 28904
+71740 30158
+71741 65632
+71742 66259
+71743 39120
+71744 22009
+71745 45988
+71746 46805
+71747 47406
+71748 48576
+71749 42852
+71750 56569
+71751 45047
+71752 23810
+71753 57791
+71754 71755
+71755 65298
+71756 68728
+71757 68868
+71758 74965
+71759 71755
+71760 81170
+71761 40871
+71762 21894
+71763 80926
+71764 42849
+71765 46882
+71766 39949
+71767 80927
+71768 45832
+71769 72854
+71770 20680
+71771 27369
+71772 42525
+71773 23286
+71774 42526
+71774 43010
+71775 44291
+71776 32318
+71776 54202
+71777 70919
+71778 74848
+71779 70786
+71780 70786
+71781 22999
+71782 52314
+71783 52307
+71784 14919
+71785 33195
+71786 55037
+71787 73106
+71788 43215
+71789 61694
+71790 872
+71791 27025
+71792 41918
+71793 45072
+71794 71823
+71795 32879
+71796 27006
+71797 43785
+71798 36644
+71799 20962
+71800 61541
+71801 44374
+71802 32529
+71803 76269
+71804 37701
+71805 33370
+71806 29897
+71807 79174
+71808 77304
+71809 62174
+71810 23380
+71811 57127
+71812 20955
+71813 33078
+71814 42609
+71815 8527
+71816 57134
+71817 34278
+71818 64979
+71819 36346
+71820 64215
+71821 45310
+71822 55037
+71823 56272
+71824 55629
+71825 74169
+71826 55037
+71827 21404
+71828 23756
+71829 42041
+71830 55235
+71831 10094
+71832 59407
+71833 30157
+71834 26095
+71835 36472
+71836 56308
+71837 48358
+71838 61134
+71839 50401
+71840 76088
+71841 53539
+71842 69735
+71843 71124
+71844 49527
+71845 61564
+71846 55132
+71846 57590
+71847 31630
+71848 23494
+71849 71847
+71850 71959
+71851 33078
+71852 71941
+71853 79313
+71854 24906
+71855 61185
+71856 12975
+71857 76269
+71858 59505
+71859 27202
+71860 33070
+71861 17029
+71862 71861
+71863 38370
+71864 70214
+71865 36695
+71866 62658
+71867 62659
+71868 49152
+71869 50196
+71870 49290
+71870 63604
+71871 77747
+71872 55220
+71873 26251
+71874 33207
+71875 59170
+71876 41227
+71877 21169
+71878 40821
+71879 64979
+71880 41281
+71881 53874
+71882 31611
+71883 38633
+71883 48987
+71884 17029
+71885 70788
+71886 62124
+71887 31709
+71888 39191
+71889 54972
+71890 54972
+71891 29462
+71892 54192
+71893 37432
+71894 49870
+71895 49920
+71896 54388
+71897 12096
+71898 74964
+71899 71897
+71900 10789
+71901 20925
+71902 7645
+71903 48405
+71904 22468
+71905 47796
+71906 68080
+71907 70740
+71908 49777
+71909 59180
+71910 78586
+71911 31730
+71912 54100
+71913 42609
+71914 46358
+71915 21762
+71916 66672
+71917 66672
+71918 4050
+71919 38671
+71920 78381
+71921 32320
+71922 80542
+71923 47121
+71924 18616
+71925 39193
+71926 12150
+71927 26255
+71928 26431
+71929 37579
+71930 59114
+71931 41571
+71932 39640
+71933 26401
+71933 7503
+71934 2299
+71935 42999
+71936 51585
+71937 53830
+71938 71952
+71939 69575
+71940 55160
+71941 46965
+71942 30536
+71943 27019
+71944 53126
+71945 33627
+71946 56753
+71947 39231
+71948 56754
+71949 48092
+71950 52281
+71951 63702
+71952 64215
+71953 55127
+71954 65981
+71955 66624
+71956 72253
+71957 72257
+71958 77675
+71959 78307
+71960 19638
+71961 66782
+71962 36942
+71963 36690
+71964 55127
+71965 49777
+71966 66782
+71967 26973
+71968 75845
+71969 75505
+71970 33273
+71971 45665
+71972 71954
+71973 37579
+71974 33077
+71975 63137
+71976 57170
+71977 27461
+71978 71973
+71979 30629
+71980 51875
+71981 62374
+71982 66688
+71983 72578
+71984 32177
+71985 75351
+71986 27679
+71987 30815
+71988 43718
+71989 30816
+71990 34792
+71991 37937
+71992 39191
+71993 39191
+71994 36680
+71995 18821
+71996 54836
+71997 80209
+71998 42553
+71999 46986
+72000 37956
+72001 41106
+72002 20925
+72003 66234
+72004 50
+72005 52037
+72006 72000
+72007 36942
+72008 64090
+72009 57198
+72010 59379
+72011 52479
+72012 64281
+72012 69797
+72013 72550
+72014 61329
+72015 35482
+72016 35483
+72017 68522
+72018 27573
+72019 29838
+72020 32987
+72021 32987
+72022 14771
+72023 70491
+72024 32987
+72025 32987
+72026 80542
+72027 32987
+72028 32987
+72029 80542
+72030 45712
+72031 23772
+72032 18616
+72033 42393
+72034 52604
+72035 28731
+72036 52532
+72037 675
+72038 29045
+72039 47586
+72040 53418
+72041 54253
+72042 51224
+72043 66109
+72044 72106
+72045 79766
+72046 30095
+72047 40887
+72048 23959
+72049 63134
+72050 80984
+72051 32987
+72052 32987
+72053 53270
+72054 77702
+72055 80310
+72056 51269
+72057 40709
+72058 69446
+72059 24081
+72060 34387
+72061 74789
+72062 80847
+72063 68250
+72064 42747
+72065 6498
+72066 25383
+72067 52587
+72068 33272
+72069 25382
+72070 12081
+72071 43919
+72072 42729
+72073 58862
+72074 23975
+72075 22188
+72075 53539
+72076 23282
+72077 23287
+72078 33925
+72079 76444
+72080 9842
+72081 70750
+72082 47406
+72083 47534
+72084 52242
+72085 55223
+72086 46465
+72087 64089
+72088 67465
+72089 72093
+72090 68475
+72091 20955
+72092 81056
+72093 34696
+72093 68475
+72094 31847
+72095 33926
+72096 79417
+72097 63711
+72098 23807
+72099 65632
+72100 23434
+72101 62344
+72102 62443
+72103 46880
+72104 26253
+72105 29814
+72106 43631
+72107 80902
+72108 1642
+72109 60611
+72110 60612
+72111 19748
+72112 37579
+72113 50302
+72114 68508
+72115 74310
+72116 74311
+72117 60612
+72118 43405
+72119 58446
+72120 69559
+72121 33691
+72122 37756
+72123 53182
+72124 56748
+72125 53476
+72126 41054
+72127 74527
+72128 72605
+72129 71073
+72130 43117
+72131 34195
+72132 56022
+72133 14766
+72134 27514
+72135 28401
+72136 33069
+72137 68882
+72138 21080
+72139 25745
+72140 67102
+72141 35525
+72142 62051
+72143 61147
+72144 39421
+72145 55503
+72146 55132
+72147 49802
+72148 33069
+72149 34669
+72150 52779
+72151 65345
+72152 55036
+72153 42204
+72154 80595
+72155 81025
+72156 23317
+72157 27518
+72158 2554
+72159 60584
+72160 47167
+72161 52435
+72162 33578
+72163 39027
+72164 60304
+72165 20348
+72166 26492
+72167 42335
+72168 20163
+72169 30881
+72170 27565
+72171 42747
+72172 64215
+72173 58158
+72174 59995
+72175 79766
+72176 18872
+72177 46882
+72178 70757
+72179 22519
+72180 39261
+72181 42266
+72182 57885
+72183 24838
+72184 49180
+72185 61563
+72186 14919
+72187 78596
+72188 20831
+72189 77763
+72190 26009
+72191 52382
+72192 43101
+72193 62687
+72194 56111
+72195 42553
+72196 52417
+72197 58822
+72198 37579
+72199 75602
+72200 52578
+72201 21405
+72202 75384
+72203 34540
+72204 54285
+72205 66731
+72206 39211
+72207 39231
+72208 50325
+72209 51245
+72210 72238
+72211 62459
+72212 66450
+72213 69769
+72214 78928
+72215 20520
+72216 29542
+72217 40819
+72218 37948
+72219 30524
+72220 70264
+72221 40592
+72222 75418
+72223 43213
+72224 55220
+72225 66444
+72226 47380
+72227 40681
+72228 36755
+72229 57385
+72230 37956
+72231 66843
+72232 60503
+72233 60503
+72234 50260
+72235 40617
+72236 68307
+72237 27348
+72238 23316
+72239 36137
+72240 21713
+72241 65672
+72242 70559
+72243 37690
+72244 26760
+72245 30091
+72246 59248
+72247 61185
+72248 58674
+72249 64637
+72250 23856
+72251 22763
+72252 40877
+72253 72255
+72254 61635
+72255 59248
+72256 30771
+72257 23438
+72258 32981
+72259 53123
+72260 50578
+72261 67329
+72262 63492
+72263 76093
+72264 56146
+72265 55208
+72266 78596
+72267 72187
+72268 20895
+72269 32913
+72270 5168
+72271 37645
+72272 50273
+72273 59369
+72274 24034
+72275 71957
+72276 76002
+72277 76004
+72278 70618
+72279 81056
+72280 65632
+72281 56752
+72282 15473
+72283 39805
+72284 21022
+72285 59352
+72286 49121
+72287 70913
+72288 71449
+72289 56775
+72290 38574
+72291 76342
+72292 55610
+72293 49100
+72294 67365
+72295 65242
+72296 45063
+72297 24220
+72298 37119
+72299 59299
+72300 81057
+72301 63826
+72302 59480
+72303 33007
+72304 80134
+72305 81357
+72306 60774
+72307 35501
+72308 42626
+72309 77733
+72310 44083
+72311 36671
+72312 34398
+72313 34399
+72314 22529
+72315 76781
+72316 79880
+72317 43852
+72318 44083
+72319 74773
+72320 44084
+72321 44086
+72322 78776
+72323 33714
+72324 56703
+72325 19512
+72326 34729
+72327 69122
+72328 27155
+72329 42998
+72330 23560
+72331 45056
+72332 67743
+72333 67743
+72334 20394
+72335 872
+72336 45072
+72337 62875
+72338 72337
+72339 77517
+72340 67758
+72341 66056
+72342 67743
+72343 55132
+72344 1787
+72345 57059
+72346 63709
+72347 10344
+72348 27458
+72349 63672
+72350 42553
+72351 75356
+72352 28845
+72353 26229
+72354 65262
+72355 22468
+72356 2911
+72357 21898
+72358 12086
+72359 23016
+72360 23177
+72361 64090
+72362 43736
+72363 22461
+72364 41666
+72365 34649
+72366 72374
+72367 56236
+72368 12970
+72369 59317
+72370 59317
+72371 59317
+72372 79954
+72373 79953
+72374 47665
+72375 47665
+72376 61845
+72377 23972
+72378 39422
+72379 72614
+72380 49938
+72381 67319
+72382 64117
+72383 49441
+72384 48083
+72385 57346
+72386 47407
+72387 47483
+72388 58860
+72389 55731
+72390 69338
+72391 31989
+72392 53295
+72393 33310
+72394 49699
+72395 33505
+72396 46613
+72397 67668
+72398 38562
+72399 20870
+72400 50416
+72401 64525
+72402 31929
+72403 30946
+72404 30946
+72405 26209
+72406 78817
+72407 7645
+72408 26611
+72409 66326
+72410 22430
+72411 29071
+72412 43852
+72412 57833
+72413 20428
+72414 48727
+72415 57781
+72416 78831
+72417 41752
+72418 73346
+72419 2911
+72420 68912
+72421 52536
+72422 72669
+72423 64118
+72424 20974
+72425 23016
+72426 56022
+72427 72426
+72428 55260
+72429 78468
+72430 47081
+72431 64979
+72432 47298
+72433 72431
+72434 54359
+72435 44065
+72436 42300
+72437 28104
+72438 46902
+72439 72441
+72440 72441
+72441 75910
+72442 42310
+72443 72441
+72444 26209
+72445 54706
+72446 75564
+72447 38013
+72448 49234
+72449 62476
+72450 71681
+72451 42432
+72452 59150
+72453 35461
+72454 36208
+72455 67668
+72456 58642
+72457 43987
+72458 68983
+72459 72690
+72460 40498
+72461 40498
+72462 79266
+72463 30574
+72464 72473
+72465 21074
+72466 51957
+72467 64447
+72468 65553
+72469 49284
+72470 71823
+72471 40478
+72472 66502
+72473 25646
+72474 74880
+72475 52382
+72476 25646
+72477 75978
+72478 25646
+72479 50608
+72480 64214
+72481 30524
+72482 40498
+72483 65979
+72484 55132
+72485 46084
+72486 55132
+72487 55127
+72488 22799
+72488 34247
+72489 36117
+72490 29265
+72491 70939
+72492 59331
+72493 34953
+72494 56207
+72495 36458
+72496 39701
+72497 49777
+72498 53048
+72499 48230
+72500 65893
+72501 37975
+72502 10770
+72503 57781
+72504 58158
+72505 32889
+72506 60642
+72507 80116
+72508 64307
+72509 51997
+72510 64307
+72511 72504
+72512 71083
+72513 25851
+72514 41666
+72515 20415
+72516 78831
+72517 49918
+72518 70919
+72519 48978
+72520 33456
+72521 80855
+72522 80926
+72523 55154
+72524 73839
+72525 60395
+72526 55154
+72527 27155
+72528 26246
+72529 41119
+72530 27585
+72531 34206
+72532 44163
+72533 71973
+72534 36156
+72535 39814
+72536 49914
+72537 37741
+72538 65434
+72539 63875
+72540 70112
+72541 24668
+72542 37746
+72543 80926
+72544 42480
+72545 56022
+72546 73505
+72547 50039
+72548 62575
+72549 49699
+72550 36122
+72551 29043
+72552 21610
+72553 21610
+72554 74966
+72555 61329
+72556 62255
+72557 50421
+72558 50421
+72559 36845
+72560 43034
+72561 23524
+72562 49918
+72563 37634
+72564 20514
+72565 50569
+72566 25230
+72567 28845
+72568 41054
+72569 44496
+72570 74629
+72571 57871
+72572 80943
+72573 63077
+72574 32544
+72575 74486
+72576 57543
+72577 49223
+72578 33637
+72578 35544
+72579 33639
+72580 19961
+72581 34104
+72582 79438
+72583 71210
+72584 41564
+72585 50191
+72586 77083
+72587 72946
+72588 66672
+72589 21365
+72590 56735
+72591 66672
+72592 66672
+72593 52396
+72594 62290
+72595 43842
+72596 64361
+72597 72596
+72598 63334
+72599 9481
+72600 78613
+72601 49777
+72602 23846
+72603 51612
+72604 29378
+72605 48756
+72606 32713
+72606 72614
+72607 44046
+72608 44044
+72609 22069
+72610 22600
+72611 29378
+72612 39206
+72613 57941
+72614 40234
+72615 49441
+72616 55223
+72617 13823
+72618 69287
+72619 51105
+72620 57931
+72621 40237
+72622 23958
+72623 69287
+72624 69287
+72625 62193
+72626 23919
+72627 51957
+72628 62443
+72629 80038
+72630 30694
+72631 50907
+72632 32715
+72633 60556
+72634 15000
+72635 19684
+72636 80040
+72637 31682
+72638 22679
+72639 34004
+72640 62736
+72641 34707
+72642 74206
+72643 38963
+72644 67144
+72645 13461
+72646 40500
+72647 48899
+72648 54059
+72649 59782
+72650 22110
+72651 68177
+72652 68378
+72653 62768
+72654 27746
+72655 69114
+72656 39724
+72657 39724
+72658 59151
+72659 58894
+72660 80119
+72661 41574
+72662 31085
+72663 64593
+72664 23960
+72665 49777
+72666 61388
+72667 71302
+72668 42748
+72669 79810
+72670 50982
+72671 23075
+72672 59976
+72673 59995
+72673 72675
+72674 50841
+72675 23070
+72676 30521
+72677 13823
+72678 45271
+72679 40907
+72680 21835
+72681 41924
+72682 46882
+72683 42567
+72684 59317
+72685 64090
+72686 79323
+72687 69687
+72688 36208
+72689 69180
+72690 39345
+72691 25616
+72692 31677
+72693 24567
+72694 42747
+72695 27703
+72696 29154
+72697 51264
+72698 30882
+72699 26293
+72700 55045
+72701 59062
+72702 77349
+72703 68819
+72704 63644
+72705 79024
+72706 79025
+72707 79700
+72708 26920
+72709 25617
+72710 44341
+72711 17636
+72712 34600
+72713 72128
+72714 42837
+72715 47876
+72716 79835
+72717 55154
+72718 74965
+72719 67926
+72720 72133
+72721 23863
+72722 43117
+72723 50982
+72724 56259
+72725 67529
+72726 80150
+72727 65996
+72728 6958
+72729 62303
+72730 7645
+72731 19954
+72732 33442
+72733 24932
+72734 27798
+72735 21051
+72736 46363
+72737 61961
+72738 37645
+72739 62665
+72740 46880
+72741 42904
+72742 71307
+72743 62305
+72744 45492
+72745 26611
+72746 44347
+72747 2911
+72748 5104
+72749 47665
+72750 34207
+72751 41286
+72752 49777
+72753 44478
+72754 68475
+72755 78596
+72756 69270
+72757 72248
+72758 68475
+72759 79104
+72760 50267
+72761 54896
+72762 59912
+72763 34373
+72764 61847
+72765 54388
+72766 23410
+72767 78309
+72768 67573
+72769 67573
+72770 30065
+72771 21589
+72772 57579
+72773 80542
+72774 32356
+72775 68598
+72776 40180
+72777 68595
+72778 37737
+72779 72778
+72780 66003
+72780 66368
+72781 58489
+72782 43215
+72783 33517
+72784 23560
+72785 46882
+72786 55885
+72787 42962
+72788 68149
+72789 34480
+72790 42964
+72791 23290
+72792 23290
+72793 51699
+72794 55019
+72795 55104
+72796 23290
+72797 23290
+72798 13286
+72799 70876
+72800 67587
+72801 29230
+72802 45683
+72803 23290
+72804 66004
+72805 68857
+72806 79125
+72807 78816
+72808 34542
+72809 1785
+72810 34046
+72811 4696
+72812 61811
+72813 56748
+72814 53881
+72815 50521
+72816 8949
+72817 80292
+72818 74296
+72819 58158
+72820 17386
+72821 58158
+72822 23560
+72823 48641
+72824 41425
+72825 31678
+72826 33112
+72827 15501
+72828 53830
+72829 56749
+72830 33578
+72831 25079
+72832 51607
+72833 31404
+72834 42204
+72835 69125
+72836 36117
+72837 53123
+72838 68932
+72839 28257
+72840 54598
+72841 23219
+72842 20428
+72843 53718
+72844 49777
+72845 23938
+72846 52020
+72847 23938
+72848 67490
+72849 43862
+72850 35933
+72851 3003
+72852 47665
+72853 12970
+72854 72446
+72855 24937
+72856 45739
+72857 58158
+72858 26769
+72859 21443
+72860 69032
+72861 42219
+72862 59329
+72863 73006
+72864 49504
+72865 30769
+72866 21610
+72867 36942
+72868 24840
+72868 72867
+72869 41374
+72870 48405
+72871 20668
+72872 75894
+72873 21417
+72874 47483
+72875 50841
+72876 73571
+72877 72349
+72878 25052
+72879 43104
+72880 73346
+72881 28249
+72882 74860
+72883 57127
+72884 53123
+72885 39724
+72886 32700
+72887 69679
+72888 2911
+72889 2809
+72890 51942
+72891 62397
+72892 38412
+72893 68698
+72894 32024
+72895 62397
+72896 34912
+72897 37405
+72898 37417
+72899 40028
+72900 72207
+72901 41498
+72902 52515
+72903 74464
+72904 64425
+72905 67205
+72906 74616
+72907 34698
+72908 39724
+72909 49922
+72910 2911
+72911 37420
+72912 22519
+72913 73539
+72914 41666
+72915 74296
+72916 48559
+72917 23572
+72918 64034
+72919 77289
+72920 37487
+72921 23282
+72922 49534
+72923 32478
+72924 49605
+72925 80568
+72926 45310
+72927 80926
+72928 38903
+72929 71730
+72930 21896
+72931 67856
+72932 67487
+72933 62397
+72934 72935
+72935 79900
+72936 80047
+72937 50203
+72938 48426
+72939 57886
+72940 74579
+72941 35627
+72942 35627
+72943 38421
+72944 78357
+72945 58946
+72946 62303
+72947 8705
+72948 3808
+72949 43969
+72950 43844
+72951 14739
+72952 19547
+72953 48750
+72954 29043
+72955 33168
+72956 48405
+72957 32977
+72958 2464
+72959 54419
+72960 69194
+72961 58690
+72962 46588
+72963 54397
+72964 66672
+72965 39889
+72966 41054
+72967 72271
+72968 17385
+72969 29980
+72970 37126
+72971 21691
+72972 20724
+72973 24909
+72974 12083
+72975 75384
+72976 46347
+72977 30521
+72978 80943
+72979 19547
+72980 63403
+72981 23960
+72982 14920
+72983 62180
+72984 27345
+72985 75003
+72986 73548
+72987 73550
+72988 76391
+72989 36308
+72990 58860
+72991 79366
+72992 78661
+72993 14920
+72994 42392
+72995 62811
+72996 79361
+72997 78736
+72998 44322
+72998 65446
+72999 54747
+73000 36380
+73001 62974
+73002 68755
+73003 2945
+73004 77218
+73005 33273
+73006 71593
+73007 30531
+73008 76080
+73009 20959
+73010 20398
+73011 73549
+73012 73014
+73013 35549
+73014 25634
+73015 63133
+73016 53328
+73017 56748
+73018 23401
+73019 32689
+73020 59333
+73021 63687
+73022 67574
+73023 19638
+73024 62051
+73025 29660
+73026 59317
+73027 31051
+73028 56022
+73029 42816
+73030 75904
+73031 20415
+73032 47665
+73033 24033
+73034 39998
+73035 26140
+73035 73034
+73036 49870
+73037 32128
+73038 57517
+73039 57346
+73040 60213
+73041 54100
+73042 54100
+73043 30138
+73044 30138
+73045 62257
+73046 76824
+73047 38737
+73048 28266
+73049 22566
+73050 43718
+73051 25618
+73052 30642
+73053 27302
+73054 34066
+73055 42079
+73056 79125
+73057 54253
+73058 68422
+73059 68566
+73060 42465
+73061 54703
+73062 70494
+73063 62912
+73064 47872
+73065 15852
+73066 53718
+73067 72248
+73068 3518
+73069 39100
+73070 73048
+73071 61147
+73072 58667
+73073 20963
+73074 73044
+73075 52970
+73076 59505
+73077 56392
+73078 72093
+73079 25613
+73080 62425
+73081 53135
+73082 70578
+73083 21198
+73084 39404
+73085 33670
+73086 35337
+73087 26664
+73088 28209
+73089 25014
+73090 62136
+73090 73085
+73091 14925
+73092 51170
+73093 51170
+73094 25617
+73095 48742
+73096 63922
+73097 20809
+73098 23772
+73099 60733
+73100 48576
+73101 60685
+73102 49534
+73103 45746
+73104 23975
+73105 39702
+73106 30782
+73107 64274
+73108 40580
+73109 75813
+73110 24769
+73111 31487
+73111 3294
+73112 39143
+73113 45746
+73114 27288
+73115 64462
+73115 75655
+73116 36380
+73117 63903
+73118 69556
+73119 39143
+73120 75404
+73121 77335
+73122 43237
+73123 49488
+73124 7964
+73125 33660
+73126 49166
+73127 33660
+73128 32674
+73129 32320
+73130 58742
+73131 28739
+73132 37955
+73133 67203
+73134 62811
+73135 73134
+73136 37818
+73137 34984
+73138 39433
+73139 34018
+73140 55132
+73141 55163
+73142 41106
+73143 62180
+73144 73438
+73145 55449
+73146 54896
+73147 35924
+73148 61694
+73149 55629
+73150 55002
+73151 28896
+73152 23076
+73153 55154
+73154 20724
+73155 69032
+73156 40408
+73157 23786
+73158 40148
+73159 70876
+73160 81075
+73161 52279
+73162 51242
+73163 34936
+73164 59444
+73165 71083
+73166 20895
+73167 36223
+73168 27538
+73169 71202
+73170 21169
+73171 73167
+73172 22517
+73173 43117
+73174 53886
+73175 42217
+73176 42217
+73177 66372
+73178 35503
+73179 55145
+73180 75011
+73181 33272
+73182 37579
+73183 66827
+73184 25067
+73185 33169
+73186 21598
+73187 27119
+73187 73186
+73188 41909
+73188 73186
+73189 78719
+73190 67573
+73191 30461
+73192 32036
+73193 40931
+73194 29541
+73195 47384
+73196 50660
+73197 62051
+73198 39918
+73199 37198
+73200 77864
+73201 80223
+73202 26954
+73203 64551
+73204 33894
+73205 70152
+73206 34705
+73207 78826
+73208 53137
+73209 68498
+73210 45459
+73211 74893
+73212 79615
+73213 21894
+73214 69987
+73215 20455
+73216 27840
+73217 24721
+73218 26794
+73219 32955
+73220 61157
+73221 39932
+73222 39933
+73223 39934
+73224 49824
+73225 12083
+73226 62374
+73227 64035
+73228 20972
+73229 77269
+73230 20460
+73231 54359
+73232 24567
+73233 22691
+73234 6472
+73235 79003
+73236 76945
+73237 43081
+73238 48426
+73239 48405
+73239 65239
+73240 50841
+73241 67618
+73242 20668
+73243 33771
+73244 72280
+73245 32689
+73246 44349
+73247 55168
+73248 55168
+73249 46933
+73250 23384
+73251 78780
+73252 17636
+73252 22844
+73253 59317
+73254 47505
+73255 78914
+73256 77763
+73257 77886
+73258 26095
+73259 76338
+73260 26611
+73261 71833
+73262 79410
+73263 29585
+73264 80514
+73265 80514
+73266 18617
+73267 48695
+73268 80926
+73269 80926
+73270 21762
+73271 75193
+73272 36942
+73273 36942
+73274 30578
+73275 78047
+73276 69276
+73277 46934
+73278 49145
+73279 60685
+73280 77763
+73281 53573
+73282 74490
+73283 71302
+73284 50450
+73285 26664
+73286 77182
+73287 77182
+73288 18211
+73289 51867
+73290 73540
+73291 2721
+73292 30943
+73293 73292
+73294 41446
+73294 73298
+73295 34729
+73296 2911
+73297 73298
+73298 60367
+73299 3737
+73300 56763
+73301 48405
+73302 15784
+73303 21398
+73304 21302
+73305 34527
+73306 73292
+73307 22502
+73308 22468
+73309 46505
+73310 66664
+73311 40877
+73312 59242
+73313 26065
+73314 66640
+73315 61702
+73316 59178
+73317 31677
+73318 56458
+73319 1644
+73320 21894
+73321 57573
+73322 23664
+73323 66849
+73324 70919
+73325 78831
+73326 76436
+73327 27155
+73328 33086
+73329 59946
+73330 59385
+73331 48358
+73332 21701
+73332 73330
+73333 55208
+73334 47665
+73335 47665
+73336 37579
+73337 55135
+73338 41792
+73339 58836
+73340 23938
+73341 14919
+73342 21453
+73343 68510
+73344 43111
+73345 56022
+73346 49441
+73347 53068
+73348 28614
+73348 54669
+73349 72614
+73350 49441
+73351 60982
+73352 31376
+73353 38435
+73354 62453
+73355 51820
+73356 25067
+73357 79213
+73358 36856
+73359 54817
+73360 61933
+73361 28249
+73362 42560
+73363 47665
+73364 80514
+73365 36627
+73366 34724
+73367 11311
+73368 23772
+73369 69477
+73370 41973
+73371 63974
+73372 20925
+73373 49831
+73374 24242
+73375 42217
+73376 49777
+73377 66672
+73378 72452
+73379 26591
+73380 52697
+73381 49777
+73382 33274
+73383 33273
+73384 70560
+73385 37473
+73386 78467
+73387 35728
+73388 40877
+73389 22988
+73390 59993
+73391 57741
+73392 28971
+73393 28658
+73394 14766
+73395 70291
+73396 70291
+73397 38633
+73398 23423
+73399 20925
+73400 59970
+73401 28362
+73402 77112
+73403 43930
+73404 57821
+73405 65718
+73406 43622
+73407 27104
+73408 76085
+73409 43844
+73410 81281
+73411 45708
+73412 47524
+73413 42393
+73414 73409
+73415 33691
+73416 9482
+73417 39142
+73418 72946
+73419 66367
+73420 51117
+73421 59991
+73422 33207
+73423 36347
+73424 62304
+73425 21453
+73426 30017
+73427 49441
+73428 21455
+73429 74490
+73430 38528
+73431 64636
+73432 69834
+73433 59970
+73434 42107
+73434 44196
+73435 30920
+73436 40279
+73437 73346
+73438 43430
+73439 3292
+73440 46220
+73440 74490
+73441 66685
+73442 53926
+73443 30353
+73444 62304
+73445 42747
+73446 46220
+73447 40234
+73448 43923
+73449 64710
+73450 29378
+73451 65238
+73452 32955
+73453 75953
+73454 28043
+73455 37877
+73456 40646
+73457 49719
+73458 50796
+73459 32852
+73460 59260
+73461 63391
+73462 62245
+73463 68058
+73464 74860
+73465 24909
+73466 69320
+73467 46412
+73468 43273
+73469 21406
+73470 74156
+73471 27511
+73472 38081
+73473 42267
+73474 50585
+73475 73474
+73476 55265
+73477 64214
+73478 59790
+73479 51670
+73480 51677
+73481 48478
+73482 64379
+73483 4066
+73484 64370
+73485 73465
+73486 6498
+73487 21417
+73488 66635
+73489 63246
+73490 73575
+73491 43420
+73492 43420
+73493 50204
+73494 50554
+73495 39724
+73496 65826
+73497 81141
+73498 58406
+73499 45977
+73500 31334
+73501 65645
+73502 30461
+73503 42747
+73504 68660
+73505 77176
+73506 59150
+73507 49603
+73508 23028
+73509 40711
+73510 74196
+73511 78756
+73512 20774
+73513 44193
+73514 49918
+73515 35187
+73516 71594
+73517 69059
+73518 27609
+73519 27727
+73520 34651
+73521 34649
+73522 70291
+73523 54813
+73524 47665
+73525 61961
+73526 41631
+73527 13458
+73528 47665
+73529 69349
+73530 68888
+73531 50105
+73532 21443
+73533 58694
+73534 72961
+73535 30306
+73536 54858
+73537 46084
+73538 34170
+73539 33994
+73540 69188
+73541 73968
+73542 24544
+73543 49606
+73544 25119
+73545 63050
+73546 68279
+73547 49777
+73548 33224
+73549 20895
+73550 73166
+73551 62174
+73552 58696
+73553 51679
+73554 36920
+73555 59332
+73556 59332
+73557 57923
+73558 79259
+73559 52979
+73560 73551
+73561 62443
+73562 51699
+73563 62441
+73564 76492
+73565 51351
+73566 28529
+73567 33146
+73568 30158
+73569 55232
+73570 33637
+73571 23285
+73572 57529
+73573 61713
+73574 64090
+73575 67573
+73576 79438
+73577 45084
+73578 23864
+73579 32889
+73580 1412
+73581 70089
+73582 32889
+73583 3600
+73584 31944
+73585 73588
+73586 38131
+73587 61423
+73588 70578
+73589 12816
+73590 80568
+73591 24488
+73592 14067
+73593 73587
+73594 41783
+73595 27202
+73596 62525
+73597 52820
+73598 2832
+73599 38538
+73600 21725
+73601 70899
+73602 34519
+73603 73754
+73604 47406
+73605 27097
+73606 30973
+73607 62386
+73608 66916
+73609 42924
+73610 30604
+73611 73566
+73612 60579
+73613 59178
+73614 61357
+73615 46589
+73616 59260
+73617 23918
+73618 32564
+73619 46344
+73620 35935
+73621 62745
+73622 69290
+73623 54524
+73624 36679
+73625 60676
+73626 22502
+73627 59123
+73628 30424
+73629 41096
+73630 62745
+73631 27302
+73632 46936
+73633 53125
+73634 61189
+73635 61936
+73636 62742
+73637 65724
+73638 70833
+73639 24668
+73640 46882
+73641 36942
+73642 35460
+73643 33367
+73644 36369
+73645 37168
+73646 57792
+73647 50036
+73648 55120
+73649 23933
+73650 39251
+73651 44320
+73652 42002
+73653 24607
+73654 44193
+73655 23973
+73656 39540
+73657 65013
+73658 78416
+73659 42552
+73660 50521
+73661 81030
+73662 21573
+73663 37645
+73664 33578
+73665 52465
+73666 46944
+73667 24723
+73668 80181
+73669 41666
+73670 47932
+73671 32940
+73672 60579
+73673 38467
+73674 76879
+73675 28694
+73676 50267
+73677 79624
+73678 68807
+73679 62282
+73680 55906
+73681 23763
+73682 33274
+73683 45060
+73684 33367
+73685 39722
+73686 64099
+73687 68306
+73688 68312
+73689 45063
+73690 52326
+73691 52326
+73692 73691
+73693 73691
+73694 73691
+73695 73691
+73696 31944
+73697 62298
+73698 77763
+73699 27335
+73700 72238
+73701 21375
+73702 62821
+73703 36831
+73704 2178
+73705 47665
+73706 26219
+73707 45708
+73708 2911
+73709 35738
+73710 68566
+73711 47555
+73712 49104
+73713 50906
+73714 46293
+73715 23203
+73716 29490
+73717 40570
+73718 40570
+73719 52143
+73720 30585
+73721 54739
+73722 42476
+73723 40736
+73723 58470
+73724 27019
+73725 64268
+73726 33499
+73727 47526
+73728 25490
+73729 52970
+73730 42863
+73731 42741
+73732 77095
+73733 76167
+73734 76167
+73735 40058
+73736 30488
+73737 57715
+73738 21037
+73739 73751
+73740 31675
+73741 31939
+73742 34817
+73743 33009
+73744 32567
+73745 23014
+73746 29200
+73746 57372
+73747 57372
+73748 57372
+73749 70577
+73750 23815
+73751 78507
+73752 69471
+73753 51957
+73754 64215
+73755 64284
+73756 70111
+73757 49661
+73758 67488
+73759 42747
+73760 49870
+73760 71895
+73761 40498
+73762 40069
+73763 40069
+73764 47603
+73765 20915
+73766 22763
+73767 22763
+73768 73646
+73769 43103
+73770 40051
+73771 20618
+73772 23696
+73773 21403
+73774 40779
+73775 73622
+73776 40711
+73777 40907
+73778 39348
+73779 24719
+73780 60169
+73781 65905
+73782 66260
+73783 43420
+73784 55154
+73785 53383
+73786 23938
+73787 32959
+73788 39944
+73789 30535
+73790 57063
+73791 57060
+73792 69987
+73793 49441
+73794 76759
+73795 33498
+73796 34984
+73797 21196
+73798 19547
+73799 74893
+73800 58158
+73801 25277
+73802 51036
+73803 23918
+73804 36458
+73805 68882
+73806 27702
+73807 52382
+73808 66544
+73809 81389
+73810 13571
+73811 59581
+73812 23846
+73813 26877
+73814 58276
+73815 55154
+73816 34018
+73817 34018
+73818 69698
+73819 69662
+73820 39540
+73821 20724
+73822 46087
+73823 30740
+73824 52037
+73824 73819
+73825 59311
+73826 65062
+73827 69294
+73828 43430
+73829 57637
+73830 50200
+73831 51836
+73832 60492
+73833 80926
+73834 27538
+73835 76436
+73836 40500
+73837 35650
+73838 60465
+73839 53926
+73840 58472
+73841 21732
+73842 21493
+73843 52971
+73844 55443
+73845 56013
+73846 56021
+73847 40630
+73848 62742
+73849 43620
+73850 25564
+73851 24490
+73852 43213
+73853 26611
+73854 25159
+73855 28672
+73856 34004
+73857 38651
+73858 44478
+73859 48899
+73860 51495
+73861 54750
+73862 56958
+73863 56975
+73864 62768
+73865 11312
+73866 54740
+73867 33086
+73868 58894
+73869 68813
+73870 56749
+73871 23919
+73872 76906
+73873 76908
+73874 58585
+73875 11484
+73876 53573
+73877 56748
+73878 62307
+73879 62307
+73880 22534
+73881 20255
+73882 43990
+73883 50293
+73884 53688
+73885 27485
+73886 61189
+73887 37118
+73888 73575
+73889 56022
+73890 55563
+73891 73890
+73892 69987
+73892 73665
+73893 45466
+73894 2911
+73895 73030
+73896 56399
+73897 41125
+73898 44468
+73899 50657
+73900 74490
+73901 73213
+73902 53220
+73903 75988
+73904 75988
+73905 4516
+73906 32287
+73907 27021
+73908 60633
+73909 39251
+73910 49777
+73911 71941
+73912 43969
+73913 27538
+73914 59446
+73915 21811
+73915 62308
+73916 62304
+73917 65881
+73918 65965
+73919 57346
+73920 25419
+73921 50481
+73922 42217
+73923 62344
+73924 11311
+73925 72963
+73926 62742
+73927 41371
+73928 61278
+73929 66331
+73930 3605
+73931 65770
+73932 32429
+73933 28241
+73934 14919
+73935 80904
+73936 22901
+73937 80904
+73938 33848
+73939 37251
+73940 40611
+73941 20856
+73942 20520
+73943 67573
+73944 55365
+73945 33078
+73946 61228
+73947 31643
+73948 58614
+73949 61344
+73950 28380
+73951 64979
+73952 49950
+73953 30221
+73954 37579
+73955 48404
+73956 37579
+73957 37579
+73958 37579
+73959 34705
+73960 25989
+73961 33420
+73962 59940
+73963 13286
+73964 36707
+73965 2554
+73966 19547
+73967 58685
+73968 62304
+73969 27021
+73970 14920
+73971 59300
+73972 29044
+73973 23345
+73974 74565
+73975 36244
+73976 22517
+73977 70419
+73978 23791
+73979 20920
+73980 70750
+73981 49530
+73982 45676
+73983 73754
+73984 42217
+73985 44121
+73986 49870
+73987 60972
+73988 43213
+73989 23095
+73990 66672
+73991 37405
+73992 76759
+73993 23016
+73994 70042
+73995 73993
+73996 23581
+73997 20528
+73998 73006
+73999 23016
+74000 78831
+74001 73990
+74002 36942
+74003 63137
+74004 58684
+74005 30311
+74006 2911
+74007 79144
+74008 23703
+74009 50448
+74010 75829
+74011 39842
+74012 60138
+74013 52107
+74014 32698
+74015 72075
+74016 56389
+74017 80902
+74018 75418
+74019 23516
+74020 78831
+74021 20483
+74022 32689
+74023 29378
+74024 15151
+74025 32295
+74026 52019
+74027 33715
+74028 33726
+74029 71598
+74030 50031
+74031 35904
+74032 15600
+74032 8509
+74033 37423
+74034 37882
+74035 60357
+74036 37914
+74037 69290
+74038 58369
+74039 45060
+74040 66839
+74041 39204
+74042 29462
+74043 75418
+74044 41918
+74045 75418
+74046 37258
+74047 23776
+74048 46344
+74049 46346
+74050 47231
+74051 33660
+74052 33569
+74053 75771
+74054 61541
+74055 64979
+74056 50260
+74057 51126
+74058 66441
+74059 33486
+74060 56307
+74061 75418
+74062 52449
+74063 52899
+74064 44212
+74065 70111
+74066 22002
+74067 58131
+74068 68209
+74069 78831
+74070 54008
+74071 54109
+74072 74079
+74073 36458
+74074 76854
+74075 26877
+74076 68209
+74077 58369
+74078 22988
+74079 79639
+74080 33273
+74081 81072
+74082 21487
+74083 33666
+74084 58605
+74085 42984
+74086 23066
+74087 33476
+74088 70750
+74089 20428
+74090 75418
+74091 22530
+74092 22530
+74093 23739
+74094 31649
+74095 49899
+74096 33455
+74097 33454
+74098 36646
+74099 45843
+74100 74084
+74101 49599
+74102 75859
+74103 74101
+74104 33068
+74105 75418
+74106 81046
+74107 81046
+74108 63040
+74109 32935
+74110 60773
+74111 21490
+74112 33756
+74113 46934
+74114 63557
+74115 73466
+74116 33273
+74117 74095
+74118 16771
+74119 2911
+74120 32955
+74121 10434
+74122 56456
+74123 33342
+74124 7566
+74125 51348
+74126 39890
+74127 25633
+74128 21493
+74129 37428
+74130 54999
+74131 33068
+74132 57833
+74133 54984
+74134 80883
+74135 73142
+74136 55037
+74137 74528
+74138 73691
+74139 49747
+74140 73819
+74141 29979
+74142 68728
+74143 58464
+74144 57833
+74145 22763
+74146 76579
+74147 58369
+74148 33796
+74149 22194
+74150 28896
+74151 28895
+74152 23339
+74153 58489
+74154 18608
+74155 31762
+74156 32919
+74157 58742
+74158 74029
+74159 74124
+74160 64379
+74161 59758
+74162 23557
+74163 77098
+74164 75779
+74165 76674
+74166 77095
+74167 66616
+74168 46965
+74169 23929
+74170 64284
+74171 69698
+74172 20925
+74173 20854
+74174 66616
+74175 29462
+74176 57064
+74177 66711
+74178 37579
+74179 35722
+74180 23030
+74181 78776
+74182 24063
+74183 70247
+74184 38532
+74185 43565
+74186 59369
+74187 30011
+74188 31962
+74189 33616
+74190 61857
+74191 66260
+74192 55220
+74193 37453
+74193 62306
+74194 63702
+74195 35401
+74195 49792
+74196 64636
+74197 25228
+74198 59760
+74199 5194
+74199 71119
+74200 55220
+74201 25583
+74202 52460
+74203 41054
+74204 21128
+74205 39190
+74206 64551
+74207 39889
+74208 56178
+74209 59971
+74210 79924
+74211 21315
+74211 39839
+74212 21317
+74213 51487
+74214 49062
+74215 26235
+74216 41619
+74216 74218
+74217 25646
+74218 21235
+74219 74761
+74220 74296
+74221 25593
+74222 25594
+74223 37578
+74224 29123
+74225 26229
+74226 74763
+74227 54622
+74228 68137
+74229 66249
+74230 39187
+74231 44163
+74232 72578
+74233 74964
+74234 38539
+74235 46649
+74236 29132
+74237 45837
+74238 17852
+74239 74219
+74240 29123
+74241 74594
+74242 49163
+74243 61363
+74244 47887
+74245 75814
+74246 27124
+74247 30610
+74248 21487
+74249 62731
+74250 72831
+74251 44193
+74252 62443
+74253 28559
+74254 22999
+74255 64979
+74256 33078
+74257 22901
+74258 16770
+74259 41054
+74260 37579
+74261 47665
+74262 42325
+74263 22759
+74264 74263
+74265 74263
+74266 74263
+74267 74263
+74268 74263
+74269 20792
+74270 74263
+74271 68239
+74272 33086
+74273 74263
+74274 68239
+74275 20792
+74276 22782
+74277 37332
+74277 44212
+74277 62839
+74278 42816
+74278 46136
+74279 59819
+74280 8975
+74281 58269
+74282 48724
+74283 26295
+74284 48409
+74285 32150
+74286 28629
+74287 56013
+74288 67876
+74289 79135
+74290 10250
+74291 48540
+74292 36801
+74293 20724
+74294 19171
+74295 19954
+74296 2911
+74297 20690
+74298 73125
+74299 51123
+74300 74298
+74301 59389
+74302 69180
+74303 52532
+74304 34484
+74305 48789
+74306 68543
+74307 68545
+74308 68782
+74309 71817
+74310 72806
+74311 72807
+74312 72918
+74313 75199
+74314 78613
+74315 55265
+74316 59327
+74317 45664
+74318 72599
+74318 81029
+74319 81028
+74320 66736
+74321 80045
+74322 74196
+74323 40887
+74324 73043
+74325 52970
+74326 49461
+74327 73043
+74328 25229
+74329 67339
+74330 36165
+74331 44347
+74332 7410
+74333 67573
+74334 62139
+74335 36379
+74336 72747
+74337 75425
+74338 69882
+74339 25649
+74340 10770
+74341 25377
+74342 27185
+74342 74362
+74343 40309
+74343 42227
+74344 74325
+74345 36791
+74346 28017
+74347 51661
+74348 29602
+74349 76489
+74350 42655
+74351 38528
+74352 38467
+74353 73948
+74354 40554
+74355 43565
+74356 61147
+74357 42747
+74358 58862
+74359 39195
+74360 33826
+74361 72246
+74362 47121
+74363 37825
+74364 50178
+74365 44149
+74366 55458
+74367 52974
+74368 80514
+74369 78116
+74370 23864
+74371 61238
+74372 49824
+74373 67560
+74374 34793
+74375 48564
+74376 23864
+74377 61238
+74378 65067
+74378 77232
+74379 44193
+74380 60692
+74381 2554
+74382 37497
+74383 74714
+74384 58836
+74385 33115
+74386 75418
+74387 31614
+74388 54319
+74389 32435
+74390 39418
+74391 33492
+74392 39251
+74393 75418
+74394 25816
+74395 41689
+74396 41689
+74397 40135
+74398 55788
+74399 75650
+74400 69933
+74401 23004
+74402 74527
+74403 73043
+74404 49964
+74405 65334
+74406 57826
+74407 49870
+74408 29560
+74409 22047
+74410 30321
+74411 30332
+74412 3604
+74413 21785
+74414 4694
+74415 40135
+74416 51796
+74417 51800
+74418 55497
+74419 59205
+74420 62263
+74421 64618
+74422 58784
+74423 20408
+74424 75918
+74425 76315
+74426 78857
+74427 64980
+74428 21198
+74429 23454
+74430 38109
+74431 39289
+74432 63455
+74433 21084
+74434 46240
+74435 59192
+74436 54498
+74437 56723
+74438 53293
+74439 25646
+74440 78352
+74441 73043
+74442 49777
+74443 75418
+74444 59819
+74445 22559
+74446 75418
+74447 36666
+74448 39722
+74449 39722
+74450 50102
+74451 50103
+74452 66614
+74453 25646
+74454 73691
+74455 52037
+74456 60495
+74457 33581
+74458 68817
+74459 58892
+74460 66554
+74461 58369
+74462 76848
+74463 46965
+74464 17788
+74465 64090
+74466 43815
+74467 59912
+74468 67668
+74469 57059
+74470 55104
+74471 71597
+74472 28726
+74473 39067
+74474 79511
+74475 49660
+74476 71599
+74477 40780
+74478 49699
+74479 39134
+74480 39138
+74481 55154
+74482 31903
+74483 60678
+74484 32700
+74485 20955
+74486 21511
+74487 49942
+74488 74497
+74489 20955
+74490 36942
+74491 32541
+74492 73481
+74493 15000
+74494 60773
+74495 57823
+74496 42120
+74497 33581
+74498 76945
+74499 33446
+74500 55220
+74501 38633
+74502 36928
+74503 24843
+74504 42120
+74505 66839
+74506 41125
+74507 39421
+74508 40892
+74509 49870
+74510 67161
+74511 78831
+74512 78831
+74513 25646
+74514 21235
+74515 23585
+74516 20543
+74517 25930
+74518 69287
+74519 56389
+74520 30604
+74521 32081
+74522 77851
+74523 33547
+74524 42219
+74525 30351
+74526 29847
+74527 23560
+74528 27410
+74529 52326
+74530 23652
+74531 46465
+74532 70161
+74533 43176
+74534 44320
+74535 52953
+74536 54285
+74537 24399
+74538 57577
+74539 79639
+74540 61685
+74541 39293
+74542 70291
+74543 26920
+74544 26954
+74545 25225
+74546 79802
+74547 61147
+74548 49661
+74549 74507
+74550 37948
+74551 51699
+74552 61147
+74553 55216
+74554 67573
+74555 33713
+74555 73316
+74556 38483
+74557 55208
+74558 51654
+74558 74557
+74559 55639
+74560 73803
+74561 55261
+74562 57372
+74563 79017
+74564 23791
+74565 22002
+74566 37720
+74567 23918
+74568 29365
+74569 23585
+74570 23581
+74571 62459
+74572 62459
+74573 36457
+74574 49777
+74575 56723
+74576 78957
+74577 49622
+74578 46060
+74579 62789
+74580 74579
+74581 31878
+74582 55127
+74583 50196
+74584 39920
+74585 73151
+74586 74583
+74587 33690
+74588 49777
+74589 78268
+74590 49777
+74591 22517
+74592 46480
+74593 17169
+74594 33273
+74595 37579
+74596 24839
+74597 45711
+74598 49777
+74599 61702
+74600 23101
+74601 38272
+74602 22769
+74603 20693
+74604 56272
+74605 55162
+74606 36079
+74607 27840
+74608 61231
+74609 24730
+74610 22671
+74611 37813
+74612 64215
+74613 60887
+74614 27948
+74615 71941
+74616 72187
+74617 64370
+74618 16233
+74619 69444
+74620 23555
+74621 69145
+74622 76178
+74623 69833
+74624 10254
+74625 5546
+74626 10249
+74627 43497
+74628 49441
+74629 31678
+74630 68903
+74631 28358
+74632 44193
+74633 33576
+74634 78658
+74635 28364
+74636 26664
+74637 29131
+74638 19547
+74639 7854
+74640 77661
+74641 56877
+74642 59505
+74643 50863
+74644 51613
+74645 8393
+74646 80112
+74647 70877
+74648 23626
+74649 67076
+74650 26152
+74651 22206
+74652 53754
+74653 30855
+74654 36976
+74655 81404
+74656 674
+74657 40500
+74658 48469
+74659 51291
+74660 54253
+74661 55933
+74662 2911
+74663 80306
+74664 61961
+74665 80818
+74666 12975
+74667 74357
+74668 80526
+74669 28405
+74670 23162
+74671 41054
+74672 5607
+74673 37847
+74674 59317
+74675 61186
+74676 37630
+74677 19636
+74678 25626
+74679 21835
+74679 75895
+74680 26769
+74681 61822
+74682 72075
+74683 24730
+74684 34590
+74685 49441
+74686 63373
+74687 26544
+74688 32909
+74689 33261
+74690 24504
+74691 38742
+74692 40236
+74693 40752
+74694 60169
+74695 44193
+74696 24723
+74697 24723
+74698 30161
+74699 36942
+74700 44193
+74701 12150
+74702 22519
+74703 49876
+74704 64605
+74705 12083
+74706 58583
+74707 56748
+74708 69236
+74709 39724
+74710 75564
+74711 31677
+74712 38436
+74713 62296
+74714 80355
+74715 61996
+74716 42747
+74717 2911
+74718 28160
+74719 60590
+74720 60589
+74721 29824
+74722 30815
+74723 47665
+74724 47666
+74725 31329
+74726 47665
+74727 47665
+74728 34067
+74729 34069
+74730 47665
+74731 2911
+74732 43366
+74733 2911
+74734 44634
+74734 52606
+74735 59426
+74736 58381
+74737 58862
+74738 13582
+74739 13584
+74740 79125
+74741 61095
+74742 2911
+74743 61767
+74744 56649
+74745 67598
+74746 28356
+74747 68352
+74748 68574
+74749 42747
+74750 42747
+74751 23028
+74752 47665
+74753 78946
+74754 74119
+74755 79153
+74756 79153
+74757 25526
+74758 47666
+74759 80984
+74760 78756
+74761 42553
+74762 69187
+74763 53830
+74764 45683
+74765 22469
+74766 17850
+74767 21277
+74768 35482
+74769 35483
+74770 19636
+74771 39556
+74772 34892
+74773 39945
+74773 74893
+74774 77886
+74775 77888
+74776 17857
+74777 23846
+74778 23015
+74779 79802
+74780 34649
+74781 54941
+74782 62950
+74783 51461
+74784 55264
+74785 23849
+74785 62975
+74786 73876
+74787 74788
+74788 44193
+74789 40547
+74790 49945
+74791 8268
+74792 20921
+74793 55154
+74793 62453
+74794 26769
+74795 56752
+74796 50943
+74797 34480
+74798 38131
+74799 5947
+74800 23846
+74801 52839
+74802 3688
+74803 70342
+74804 71941
+74805 33775
+74806 46713
+74807 65446
+74808 50204
+74809 25145
+74810 25257
+74811 26233
+74812 39918
+74813 60150
+74814 62647
+74815 30261
+74816 59234
+74817 70113
+74818 54572
+74819 34515
+74820 30424
+74821 30688
+74822 56259
+74823 73346
+74824 43096
+74825 36753
+74826 58158
+74827 68651
+74828 79125
+74829 29131
+74830 42965
+74831 41666
+74832 7577
+74833 75346
+74834 47201
+74835 68266
+74836 68857
+74837 20680
+74838 35656
+74839 64668
+74840 19954
+74841 54622
+74842 41906
+74843 21435
+74844 58665
+74845 68993
+74846 37906
+74847 52049
+74848 52051
+74849 38528
+74850 17849
+74851 81351
+74852 36241
+74853 53629
+74854 80778
+74855 49282
+74856 72464
+74857 56022
+74858 56022
+74859 57221
+74860 70578
+74861 66648
+74862 35323
+74863 53616
+74864 53629
+74865 74860
+74866 60722
+74867 23585
+74868 23581
+74869 50419
+74870 49456
+74871 41914
+74872 58989
+74873 20415
+74874 57797
+74875 59500
+74876 6926
+74877 37702
+74878 41571
+74879 21304
+74880 29476
+74881 73802
+74882 58744
+74883 33078
+74884 33070
+74885 71847
+74886 59311
+74887 34729
+74888 21069
+74889 59389
+74890 66612
+74891 23939
+74892 33335
+74893 40578
+74894 49731
+74895 32438
+74896 66674
+74897 59389
+74898 80883
+74899 35623
+74900 36942
+74901 74965
+74902 53220
+74903 75648
+74904 21099
+74905 33930
+74906 39420
+74907 39404
+74908 59180
+74909 55132
+74910 35623
+74911 23552
+74912 25451
+74913 57106
+74914 50947
+74915 19008
+74916 43905
+74917 35687
+74918 26209
+74919 21406
+74920 62805
+74921 57925
+74922 59395
+74923 54732
+74924 28559
+74925 33041
+74926 74893
+74927 41922
+74928 21069
+74929 53217
+74930 30784
+74931 20925
+74932 75978
+74933 38633
+74934 69575
+74935 55578
+74936 59389
+74937 34389
+74938 80883
+74939 52808
+74940 69505
+74941 69283
+74942 23555
+74943 55351
+74944 49918
+74945 16770
+74946 73824
+74947 73906
+74948 68728
+74949 45838
+74950 64090
+74951 71718
+74952 55558
+74953 30784
+74954 65844
+74955 50260
+74956 39496
+74957 33086
+74958 35270
+74959 62883
+74959 66759
+74960 44474
+74961 70478
+74962 55208
+74963 73907
+74964 74761
+74965 50212
+74966 55629
+74967 62247
+74968 27021
+74969 55037
+74970 53416
+74971 33154
+74971 74464
+74972 3083
+74973 31841
+74974 39493
+74975 37405
+74976 32634
+74977 22193
+74978 74977
+74979 74977
+74980 64090
+74981 68807
+74982 60722
+74983 31418
+74984 10992
+74985 22312
+74986 22318
+74987 25450
+74988 47354
+74989 26726
+74990 61685
+74991 54815
+74992 51103
+74993 9842
+74994 71202
+74995 77851
+74996 68165
+74997 38084
+74998 23909
+74999 57878
+75000 71632
+75001 57127
+75002 23438
+75003 43882
+75004 43882
+75005 44315
+75006 61961
+75007 59941
+75008 75003
+75009 29480
+75010 44055
+75011 35544
+75011 51654
+75012 51958
+75013 53196
+75014 59938
+75015 64450
+75016 31413
+75017 33827
+75018 75010
+75019 64450
+75020 80595
+75021 23432
+75022 23654
+75023 75013
+75024 43207
+75025 47895
+75026 37289
+75027 33639
+75028 72578
+75029 71047
+75030 24847
+75031 30424
+75032 80915
+75033 79609
+75034 25867
+75035 50012
+75036 38648
+75037 73540
+75038 15151
+75039 49950
+75040 50574
+75041 59407
+75042 42859
+75043 68813
+75044 45924
+75045 75046
+75046 55132
+75047 29495
+75048 79343
+75049 75975
+75050 21526
+75051 57346
+75052 30518
+75053 68146
+75054 46834
+75055 80926
+75056 53190
+75057 53192
+75058 43054
+75059 43055
+75060 37579
+75061 33272
+75062 30828
+75062 50675
+75063 33527
+75064 50267
+75065 79624
+75066 62282
+75067 55906
+75068 49641
+75069 71839
+75070 79184
+75071 52143
+75072 27623
+75073 54815
+75074 80025
+75075 75280
+75076 41054
+75077 65431
+75078 29123
+75079 51792
+75080 30946
+75081 76908
+75082 42984
+75083 2911
+75084 49777
+75085 49777
+75086 64090
+75087 60612
+75088 1385
+75089 60616
+75090 80514
+75091 23016
+75092 64118
+75093 66975
+75094 24349
+75095 42619
+75096 72866
+75097 42018
+75098 44299
+75099 67685
+75100 24351
+75101 24356
+75102 43631
+75103 44299
+75104 38574
+75105 75717
+75106 51957
+75107 44196
+75108 30449
+75109 73432
+75110 31939
+75111 13471
+75112 34695
+75113 23017
+75114 62051
+75115 79824
+75116 21451
+75117 74490
+75118 80542
+75119 39336
+75120 1828
+75121 41998
+75122 66544
+75123 36135
+75124 36942
+75125 76407
+75126 33806
+75127 33207
+75128 54522
+75129 6478
+75130 36637
+75131 1346
+75132 25905
+75133 28694
+75134 23933
+75135 75673
+75136 31745
+75137 25844
+75138 45505
+75139 19755
+75140 46441
+75141 68354
+75142 56022
+75143 76665
+75144 40819
+75145 21405
+75146 49552
+75147 31992
+75148 31992
+75149 31992
+75150 41321
+75151 33827
+75152 37540
+75153 52494
+75154 32663
+75155 27948
+75156 71954
+75157 17385
+75158 41987
+75159 62680
+75160 70899
+75161 29045
+75162 35373
+75163 8486
+75164 45617
+75165 7577
+75166 58860
+75167 51806
+75168 57431
+75169 81188
+75170 7577
+75171 47494
+75172 22529
+75173 22529
+75174 24528
+75175 31730
+75176 31657
+75177 43246
+75178 29240
+75179 37579
+75180 22682
+75181 2823
+75182 54759
+75183 25391
+75184 39191
+75185 2911
+75186 45086
+75187 11236
+75188 43420
+75189 38648
+75190 38648
+75191 22536
+75192 41054
+75193 76759
+75194 62541
+75195 62541
+75196 26684
+75197 52987
+75198 77515
+75199 59505
+75200 24927
+75201 18616
+75202 23434
+75203 67195
+75204 59669
+75205 30132
+75206 31483
+75207 39191
+75208 33622
+75209 73633
+75210 62252
+75211 11340
+75212 11344
+75213 66149
+75214 54984
+75215 57526
+75216 59317
+75217 43181
+75218 24674
+75219 35805
+75220 64836
+75221 23387
+75221 55910
+75221 77025
+75222 79003
+75223 33639
+75224 43534
+75225 31404
+75226 23387
+75227 39918
+75228 23282
+75229 43876
+75230 62386
+75231 70068
+75232 70189
+75233 62658
+75234 59993
+75235 49699
+75236 30604
+75237 73566
+75238 38538
+75239 71766
+75240 21630
+75241 34705
+75242 80904
+75243 61504
+75244 20956
+75245 34695
+75246 17386
+75247 47665
+75248 47665
+75249 56022
+75250 76847
+75251 55563
+75252 62372
+75253 76759
+75254 62541
+75255 50574
+75256 35808
+75257 73288
+75258 79697
+75259 81025
+75260 24927
+75261 41054
+75262 71202
+75263 65981
+75264 42108
+75265 55132
+75266 29718
+75267 39494
+75268 55168
+75269 39494
+75270 54222
+75271 60616
+75272 33852
+75273 57445
+75274 34018
+75275 41946
+75276 53875
+75277 33056
+75278 41054
+75279 46945
+75280 42548
+75281 49870
+75282 70760
+75283 43019
+75284 64551
+75285 58792
+75286 54877
+75287 64536
+75288 49777
+75289 80926
+75290 39072
+75291 52779
+75292 71941
+75293 67586
+75294 45089
+75295 30081
+75296 77693
+75297 35805
+75298 71594
+75299 31182
+75300 72360
+75301 23532
+75302 76502
+75303 38933
+75304 79024
+75305 24574
+75306 59369
+75307 62174
+75308 70161
+75309 71833
+75310 66056
+75311 32955
+75312 59369
+75313 38518
+75314 60746
+75315 51904
+75316 37512
+75317 54024
+75318 67586
+75319 23591
+75320 29474
+75321 80464
+75322 29226
+75323 71676
+75324 23502
+75325 47666
+75326 36415
+75327 27155
+75328 63815
+75329 49918
+75330 70920
+75331 61811
+75332 60633
+75333 41054
+75334 56634
+75334 75338
+75335 68508
+75336 48890
+75337 75331
+75338 68239
+75339 47665
+75340 33442
+75341 33442
+75342 43101
+75343 78309
+75344 74464
+75345 75344
+75346 21155
+75347 47665
+75348 47665
+75349 45914
+75350 23380
+75351 69575
+75352 40807
+75353 40945
+75353 56308
+75354 61136
+75355 40180
+75356 64215
+75357 30801
+75358 39525
+75359 49832
+75360 68305
+75361 39067
+75362 23356
+75363 57671
+75364 45728
+75365 68378
+75366 7583
+75367 28233
+75367 38659
+75368 36791
+75369 36210
+75370 52727
+75371 9783
+75372 4807
+75373 52689
+75374 2728
+75375 33086
+75376 18754
+75377 66613
+75378 28241
+75379 52727
+75380 33051
+75381 38959
+75382 59782
+75383 73668
+75384 52798
+75385 30353
+75386 49660
+75387 21198
+75388 23720
+75389 28420
+75390 56059
+75391 23723
+75392 36238
+75393 20695
+75394 32410
+75395 28420
+75396 36222
+75397 35501
+75398 40543
+75399 43217
+75400 10250
+75401 45755
+75402 51242
+75403 52815
+75404 52895
+75405 64089
+75406 65631
+75407 52562
+75408 52816
+75409 49465
+75410 28420
+75411 35808
+75412 23484
+75413 38574
+75414 55610
+75415 65743
+75416 59178
+75417 60741
+75418 26094
+75419 26100
+75420 47816
+75421 74981
+75422 23763
+75423 60771
+75424 57183
+75425 25854
+75426 55104
+75427 47666
+75428 65897
+75429 2911
+75430 25854
+75431 73652
+75432 75427
+75433 24504
+75434 51607
+75435 28356
+75436 69757
+75437 30338
+75438 30843
+75439 75023
+75440 44149
+75441 45766
+75442 72578
+75443 57408
+75444 60531
+75445 67621
+75446 75033
+75447 75003
+75448 76877
+75449 77312
+75450 78540
+75451 70430
+75452 2178
+75453 26229
+75454 28845
+75455 33337
+75456 39216
+75457 20536
+75458 5118
+75459 20574
+75460 14919
+75461 40234
+75462 30352
+75463 75456
+75464 55629
+75465 50191
+75466 33639
+75467 35361
+75468 19954
+75469 18616
+75470 27060
+75471 38721
+75472 22525
+75473 23856
+75474 39209
+75475 38575
+75476 38574
+75477 33917
+75478 63246
+75479 38599
+75480 69634
+75481 30790
+75481 44212
+75482 70042
+75483 35839
+75484 25357
+75485 57431
+75486 61329
+75487 47665
+75488 80926
+75489 21002
+75490 59148
+75491 42509
+75492 36942
+75493 66827
+75494 29278
+75495 72578
+75496 33639
+75497 75505
+75498 55563
+75499 55910
+75499 61771
+75500 43319
+75501 51696
+75502 68763
+75503 69679
+75504 36856
+75505 70974
+75506 40819
+75507 55629
+75508 55629
+75509 35805
+75510 50923
+75511 62808
+75512 40819
+75513 62811
+75514 40012
+75515 40008
+75516 57600
+75517 37632
+75518 56666
+75519 62453
+75520 81315
+75521 38774
+75522 70867
+75523 74490
+75524 45635
+75524 58155
+75525 47932
+75526 76475
+75527 52120
+75528 45640
+75529 20529
+75530 20533
+75531 53821
+75532 10216
+75533 53457
+75534 75533
+75535 57518
+75536 27947
+75537 27952
+75538 28241
+75539 55232
+75540 39425
+75541 32902
+75542 39732
+75543 33337
+75544 41987
+75545 64448
+75546 55526
+75547 22988
+75548 43217
+75549 9842
+75550 2911
+75551 54572
+75552 58195
+75553 70578
+75554 75539
+75555 64450
+75556 77886
+75557 54732
+75558 68813
+75559 55127
+75560 70600
+75561 57833
+75562 21235
+75563 61541
+75564 27191
+75565 64448
+75566 75539
+75567 39383
+75568 2462
+75569 78582
+75570 33827
+75571 75574
+75572 50456
+75573 50844
+75574 80680
+75575 54572
+75576 75557
+75577 62543
+75578 14920
+75579 32902
+75580 78307
+75581 29012
+75582 40877
+75583 40877
+75584 77215
+75585 61624
+75586 33858
+75587 67411
+75588 46554
+75589 23484
+75590 76037
+75591 30581
+75592 40539
+75593 6391
+75594 27954
+75595 65883
+75596 75541
+75597 77764
+75598 59009
+75599 39494
+75600 12285
+75601 57931
+75602 27948
+75603 66633
+75604 67573
+75605 52358
+75606 73142
+75607 69560
+75608 31037
+75609 36569
+75610 33086
+75611 30774
+75612 31250
+75613 40069
+75614 39808
+75615 61487
+75616 61487
+75617 33856
+75618 77243
+75619 25778
+75620 80926
+75621 39348
+75622 79701
+75623 39703
+75624 21099
+75625 32575
+75626 65461
+75627 43832
+75627 61686
+75628 71838
+75629 20925
+75630 45799
+75631 68591
+75631 74977
+75632 78307
+75633 80593
+75634 73591
+75635 62194
+75636 41521
+75637 28241
+75638 13584
+75639 13582
+75640 75647
+75641 23515
+75642 30327
+75643 27155
+75644 29214
+75645 33869
+75646 53500
+75647 64215
+75648 66431
+75649 69506
+75650 78831
+75651 70919
+75652 72480
+75653 49425
+75654 50035
+75655 73104
+75656 36419
+75657 36802
+75658 49777
+75659 37579
+75660 63767
+75661 72628
+75662 25434
+75663 58742
+75664 6498
+75664 75662
+75665 20724
+75666 35654
+75667 37400
+75668 25867
+75669 55243
+75670 29379
+75671 70152
+75672 21513
+75673 58822
+75674 50025
+75675 35144
+75676 49504
+75677 33086
+75678 35503
+75679 21288
+75680 32989
+75681 49918
+75682 33476
+75683 62304
+75684 22902
+75685 32919
+75686 34712
+75687 18864
+75688 9761
+75689 25986
+75690 34542
+75691 1785
+75692 29029
+75693 65272
+75694 32022
+75695 4696
+75696 40113
+75696 75681
+75697 52717
+75698 54941
+75699 23846
+75699 60492
+75700 75699
+75701 65271
+75702 70342
+75703 64117
+75704 70788
+75705 62124
+75706 17029
+75707 37402
+75708 31709
+75709 38648
+75710 68568
+75711 25178
+75712 74944
+75712 75681
+75713 32320
+75714 57346
+75715 27477
+75716 27471
+75717 50109
+75718 45841
+75719 52049
+75720 52187
+75721 54584
+75722 55132
+75723 55132
+75724 55132
+75725 33273
+75726 24566
+75727 73769
+75728 73788
+75729 47258
+75730 78732
+75731 57059
+75732 75731
+75733 70089
+75734 52170
+75735 56718
+75736 3503
+75737 58155
+75738 46223
+75739 23016
+75740 43420
+75741 31658
+75742 65562
+75743 54359
+75744 42941
+75745 52558
+75746 62304
+75747 70075
+75748 10792
+75748 75733
+75749 53315
+75750 78307
+75751 65632
+75752 21403
+75753 36928
+75754 39653
+75755 77824
+75756 21957
+75756 22799
+75757 22792
+75758 55563
+75759 65600
+75760 29193
+75761 22594
+75762 22468
+75763 70179
+75764 70919
+75765 75764
+75766 75764
+75767 37579
+75768 80883
+75769 61228
+75770 64999
+75771 33569
+75772 62681
+75773 73155
+75774 57741
+75775 50232
+75776 33080
+75777 49777
+75778 50324
+75779 73142
+75780 39494
+75781 39749
+75782 52477
+75783 72280
+75784 39809
+75785 39808
+75786 25614
+75787 50105
+75788 52138
+75789 48832
+75790 46610
+75791 39010
+75792 39010
+75793 67773
+75794 67778
+75795 60357
+75796 42609
+75797 75064
+75798 77935
+75799 79299
+75800 72076
+75801 37406
+75802 62263
+75803 76483
+75804 48756
+75805 37579
+75806 71766
+75807 55911
+75808 27019
+75809 25627
+75810 59396
+75811 23284
+75812 49371
+75813 32248
+75814 65312
+75815 74567
+75815 75813
+75816 28810
+75817 62805
+75818 28338
+75819 77186
+75820 40894
+75821 63411
+75822 45983
+75823 13570
+75824 62658
+75825 75828
+75826 23089
+75827 36210
+75828 76414
+75829 55416
+75830 23933
+75831 40809
+75832 34570
+75833 24311
+75834 24707
+75835 80904
+75836 20922
+75837 67377
+75838 38574
+75839 40234
+75840 54941
+75841 40612
+75842 49737
+75843 61912
+75844 65550
+75845 64114
+75846 67573
+75847 77763
+75848 66672
+75849 67070
+75850 77733
+75851 49777
+75852 75851
+75853 4810
+75854 66812
+75855 29199
+75856 23516
+75857 78831
+75858 49949
+75859 40580
+75860 23715
+75861 40579
+75862 43911
+75863 40808
+75864 40611
+75865 66324
+75866 22404
+75867 49870
+75868 33723
+75869 22857
+75870 49356
+75871 74926
+75872 81183
+75873 33827
+75874 52727
+75875 23850
+75876 30571
+75877 20792
+75878 53526
+75879 78941
+75880 33086
+75881 34206
+75882 22759
+75883 22800
+75884 42820
+75885 81077
+75886 46792
+75887 62880
+75888 64451
+75889 31352
+75890 69685
+75891 33418
+75891 74926
+75892 78956
+75893 78968
+75894 58968
+75895 36791
+75896 72588
+75897 72589
+75898 7255
+75899 77764
+75900 57881
+75901 56542
+75902 59819
+75903 40843
+75904 55040
+75905 60567
+75906 27202
+75907 55040
+75908 64090
+75909 39205
+75910 54100
+75911 12083
+75912 60123
+75913 34986
+75914 41569
+75915 30573
+75916 57133
+75917 79256
+75918 78831
+75919 57833
+75920 49009
+75920 56513
+75921 69337
+75921 75752
+75922 55563
+75923 35220
+75924 62304
+75925 27411
+75926 33706
+75927 68807
+75928 70760
+75929 40385
+75930 10845
+75931 31467
+75932 14919
+75933 58825
+75934 75935
+75935 20814
+75936 21511
+75937 32311
+75938 67567
+75939 67560
+75940 41321
+75941 35323
+75942 47414
+75942 61485
+75943 79936
+75944 53751
+75945 54715
+75946 41311
+75947 37166
+75948 37451
+75949 6193
+75950 37068
+75951 25624
+75952 75978
+75953 32956
+75954 11405
+75955 52971
+75956 38403
+75957 66324
+75958 72891
+75959 76341
+75960 64021
+75961 69179
+75962 2518
+75963 29769
+75964 23267
+75965 41203
+75966 25649
+75967 73079
+75968 22256
+75969 21534
+75970 62681
+75971 23286
+75972 62808
+75973 49194
+75974 37902
+75975 74583
+75976 24538
+75977 68759
+75978 37955
+75979 29514
+75980 74966
+75981 52443
+75982 54561
+75983 28006
+75984 64240
+75985 49163
+75986 50260
+75987 33446
+75988 40823
+75989 25646
+75990 68817
+75991 68817
+75992 68817
+75993 68817
+75994 68817
+75995 25646
+75996 25649
+75997 74966
+75998 75813
+75999 49792
+76000 31868
+76000 71834
+76001 55223
+76002 40819
+76003 74896
+76004 55201
+76005 53539
+76006 63645
+76007 63645
+76008 80918
+76009 80542
+76010 27412
+76011 40225
+76012 62841
+76013 63881
+76014 58447
+76015 59970
+76016 60495
+76017 35432
+76018 39690
+76019 39505
+76020 69524
+76021 23221
+76022 27104
+76022 43746
+76023 30058
+76024 30797
+76025 35400
+76026 76037
+76027 61694
+76028 76037
+76029 39433
+76030 45924
+76031 55208
+76032 76037
+76033 37004
+76034 30771
+76034 55127
+76035 45985
+76036 33456
+76037 55132
+76038 55127
+76039 43904
+76040 58447
+76041 76037
+76042 62354
+76043 65905
+76044 78626
+76045 62354
+76046 52326
+76047 66380
+76048 76027
+76049 76004
+76050 77646
+76051 68520
+76052 80896
+76053 1422
+76054 52727
+76055 27590
+76056 30046
+76057 80289
+76058 22792
+76058 78941
+76059 37839
+76060 59385
+76061 57056
+76062 70988
+76063 54972
+76064 37268
+76065 23552
+76066 27006
+76067 34940
+76068 37586
+76069 53067
+76070 64317
+76071 69903
+76072 33639
+76073 29243
+76073 33637
+76074 22420
+76075 22848
+76076 43566
+76077 58380
+76078 70876
+76079 20920
+76080 23560
+76081 46965
+76082 73125
+76083 23975
+76084 20536
+76085 40019
+76086 21524
+76087 41571
+76088 61682
+76089 64214
+76090 36431
+76091 23542
+76092 32955
+76093 50260
+76094 47887
+76095 73115
+76096 27006
+76097 70009
+76098 40498
+76099 76098
+76100 68239
+76101 20792
+76102 22811
+76103 24891
+76103 77746
+76104 54349
+76105 22811
+76106 54349
+76107 59385
+76108 63136
+76109 65562
+76110 50450
+76111 44349
+76112 24506
+76113 54285
+76114 28449
+76115 42100
+76116 49777
+76117 49907
+76118 40613
+76119 37268
+76120 32878
+76121 65905
+76122 13018
+76123 52299
+76124 23187
+76125 60530
+76126 62423
+76127 61324
+76128 65433
+76129 77531
+76130 78899
+76131 38563
+76132 52120
+76133 65562
+76134 76475
+76135 36103
+76136 65562
+76137 58369
+76138 79992
+76139 60251
+76140 52465
+76141 20917
+76142 22887
+76143 54029
+76144 55223
+76145 72415
+76146 74926
+76147 78831
+76148 78965
+76149 30252
+76150 78831
+76151 49593
+76152 27021
+76153 27021
+76154 56022
+76155 55563
+76156 76155
+76157 67922
+76158 2911
+76159 48720
+76160 47665
+76161 70908
+76162 21169
+76163 65234
+76164 22517
+76165 48426
+76166 48427
+76167 67365
+76168 33498
+76169 56022
+76170 25646
+76171 77112
+76172 65562
+76173 27138
+76174 74783
+76175 41377
+76176 59505
+76177 69976
+76178 34018
+76179 76094
+76180 26611
+76181 61147
+76182 50849
+76183 79992
+76184 79624
+76185 36175
+76186 41987
+76187 23007
+76188 67733
+76189 21855
+76190 40220
+76191 70152
+76192 79639
+76193 65279
+76194 37271
+76195 32774
+76196 25067
+76197 53093
+76198 28557
+76199 21601
+76200 77886
+76201 24353
+76202 4156
+76203 2911
+76204 63767
+76205 71253
+76206 33338
+76207 74805
+76208 65234
+76209 32320
+76210 16770
+76211 40390
+76212 69636
+76213 23285
+76214 25614
+76215 69575
+76216 53620
+76217 43810
+76218 50280
+76219 59180
+76220 74119
+76221 24769
+76222 49506
+76223 70264
+76224 40659
+76225 21204
+76226 76324
+76227 77778
+76228 59151
+76229 60568
+76230 64317
+76231 29045
+76232 59970
+76233 71941
+76234 21474
+76235 37787
+76236 74209
+76237 24165
+76238 20415
+76239 32034
+76240 26713
+76241 24119
+76241 64777
+76242 74893
+76243 58723
+76244 54076
+76245 61466
+76246 76004
+76247 61550
+76248 32035
+76249 58723
+76250 31925
+76251 30424
+76252 14919
+76253 72441
+76254 59628
+76255 64257
+76256 30488
+76257 25504
+76258 44046
+76259 76255
+76260 80020
+76261 35471
+76262 20962
+76263 80926
+76264 49777
+76265 36942
+76266 71941
+76267 29103
+76268 17029
+76269 59505
+76270 76269
+76271 34984
+76272 25439
+76273 49608
+76274 75958
+76275 67465
+76276 40686
+76277 34936
+76278 55563
+76279 42071
+76280 34590
+76281 58366
+76282 48092
+76283 42081
+76284 42093
+76285 42094
+76286 50205
+76287 68972
+76288 64307
+76289 60213
+76289 75051
+76290 71941
+76291 26769
+76292 58158
+76293 32524
+76294 72464
+76295 76292
+76296 58166
+76297 35352
+76298 65481
+76299 73578
+76300 71941
+76301 20820
+76302 26769
+76303 35087
+76304 35891
+76305 47665
+76306 47666
+76307 68387
+76308 78954
+76309 61504
+76310 48358
+76311 50621
+76312 29702
+76313 39846
+76314 48358
+76315 78831
+76316 20415
+76317 49918
+76318 22137
+76319 50621
+76320 48358
+76321 48358
+76322 42751
+76323 77348
+76324 50105
+76325 50105
+76326 55563
+76327 2911
+76328 71778
+76329 50999
+76330 78831
+76331 70919
+76332 76331
+76333 76331
+76334 78003
+76335 71941
+76336 20596
+76337 55045
+76338 76489
+76339 30581
+76340 60202
+76341 32674
+76342 63978
+76343 23120
+76344 60558
+76345 69491
+76346 27234
+76347 14894
+76348 25434
+76349 65117
+76350 80574
+76351 41054
+76352 35529
+76353 76908
+76354 41943
+76355 32318
+76356 28405
+76357 70578
+76358 26929
+76359 76335
+76360 25121
+76361 35433
+76362 73724
+76363 54561
+76364 19636
+76364 28860
+76365 19636
+76366 81389
+76367 30946
+76368 61238
+76369 42775
+76370 61228
+76371 32062
+76372 49737
+76373 30536
+76374 59331
+76375 65893
+76376 42747
+76377 25376
+76378 40205
+76379 71278
+76380 34018
+76381 51000
+76382 65258
+76383 67487
+76384 61933
+76385 59760
+76386 33009
+76387 80926
+76388 67606
+76389 25493
+76390 47167
+76391 69194
+76392 49777
+76393 25929
+76394 25599
+76395 80510
+76396 38084
+76397 34634
+76398 35253
+76398 76393
+76399 53059
+76400 23271
+76401 65672
+76402 22110
+76403 66688
+76404 39336
+76405 39814
+76406 42041
+76407 21098
+76408 49339
+76409 67606
+76410 48478
+76411 25929
+76412 76393
+76413 37002
+76414 71047
+76415 67567
+76416 35543
+76417 67560
+76418 61147
+76419 80926
+76420 23070
+76421 37428
+76422 35339
+76423 70247
+76424 6498
+76425 52779
+76426 35331
+76427 60489
+76428 60898
+76429 872
+76430 33009
+76431 36942
+76432 33273
+76433 81139
+76434 37579
+76435 60633
+76436 25376
+76437 14920
+76438 48012
+76439 53129
+76440 65672
+76441 19939
+76442 59786
+76443 38648
+76444 61228
+76445 61228
+76446 56125
+76447 23975
+76448 40807
+76449 1787
+76450 31270
+76451 43894
+76452 27705
+76453 68599
+76454 74805
+76455 60764
+76456 40611
+76457 63652
+76458 70877
+76459 27104
+76460 33637
+76461 31841
+76462 50447
+76463 65645
+76464 30354
+76465 68538
+76466 38345
+76467 40877
+76468 40878
+76469 61228
+76470 60603
+76471 61228
+76472 53481
+76473 54100
+76474 58371
+76475 61228
+76476 61228
+76477 33691
+76478 73147
+76479 69974
+76480 81075
+76481 70578
+76482 57127
+76483 22193
+76484 81388
+76485 81075
+76486 29477
+76487 58839
+76488 31730
+76489 55132
+76490 20955
+76491 31267
+76492 76489
+76493 45760
+76494 61228
+76495 59228
+76496 68717
+76497 68717
+76498 80902
+76499 61086
+76500 41498
+76501 41499
+76502 75640
+76503 66378
+76504 25821
+76505 26011
+76506 55563
+76507 36840
+76508 36029
+76509 50117
+76510 70111
+76511 70051
+76512 32478
+76513 55220
+76514 70877
+76515 27485
+76516 64175
+76517 77771
+76518 18451
+76519 18451
+76520 18451
+76521 18451
+76522 18451
+76523 18451
+76524 76525
+76525 56718
+76526 42935
+76527 71941
+76528 40817
+76529 7854
+76530 78393
+76531 23070
+76532 23070
+76533 74893
+76534 36208
+76535 76178
+76536 17145
+76537 75051
+76538 46705
+76539 32508
+76540 23546
+76541 39808
+76542 49951
+76543 51173
+76544 25149
+76545 64537
+76546 33342
+76547 11406
+76548 38533
+76549 72882
+76550 21230
+76551 77502
+76552 76541
+76553 76786
+76554 18616
+76555 17849
+76556 48317
+76557 3704
+76558 46882
+76558 52779
+76559 47672
+76560 27021
+76561 60202
+76562 76245
+76563 37006
+76564 66942
+76565 20792
+76566 37322
+76567 33179
+76568 47121
+76569 52798
+76570 58825
+76571 24944
+76572 60771
+76573 22468
+76574 12970
+76575 40660
+76576 23423
+76577 36210
+76578 57372
+76579 74050
+76580 23014
+76581 81061
+76582 23014
+76583 36245
+76584 13823
+76585 30575
+76586 59505
+76587 79369
+76588 22988
+76589 52245
+76590 52248
+76591 9761
+76592 52511
+76593 80594
+76594 60633
+76595 8968
+76596 15965
+76597 72446
+76598 42747
+76599 21375
+76600 27679
+76601 30123
+76602 76607
+76603 51599
+76604 6926
+76605 51599
+76606 43207
+76607 8603
+76608 65258
+76609 38641
+76609 62306
+76610 47665
+76611 49824
+76612 68207
+76613 38328
+76614 12432
+76615 62309
+76616 64863
+76617 63334
+76618 70264
+76619 76226
+76620 70276
+76621 71111
+76622 71114
+76623 71113
+76624 22763
+76625 56949
+76626 22758
+76627 33078
+76628 21673
+76629 2041
+76630 80025
+76631 63652
+76632 5165
+76633 6958
+76634 33989
+76635 35714
+76635 40992
+76636 34590
+76637 27021
+76638 60464
+76639 21786
+76640 78454
+76641 68329
+76642 18211
+76643 13951
+76644 64307
+76645 63133
+76646 43070
+76647 81030
+76648 57345
+76649 15518
+76650 54487
+76651 31835
+76652 76651
+76653 31894
+76654 32634
+76655 74805
+76656 41424
+76657 41424
+76658 51069
+76659 31939
+76660 80926
+76661 38485
+76662 24504
+76663 27459
+76664 51592
+76665 63357
+76666 76669
+76667 69188
+76668 71556
+76669 76561
+76670 40389
+76671 50212
+76672 30461
+76673 38374
+76674 37615
+76675 25628
+76676 56456
+76677 60773
+76678 74276
+76679 78789
+76680 49021
+76680 74276
+76681 55567
+76682 39889
+76683 21893
+76684 23959
+76685 52865
+76686 41547
+76687 53675
+76688 53132
+76689 60357
+76690 2462
+76691 39724
+76692 44299
+76693 58269
+76694 24687
+76695 18616
+76696 21819
+76696 71830
+76697 20792
+76698 53423
+76699 46293
+76700 46293
+76701 71737
+76702 71737
+76703 47665
+76704 26611
+76705 33176
+76706 51150
+76707 42380
+76708 72114
+76709 81242
+76710 21894
+76711 38436
+76712 12150
+76713 27202
+76714 29287
+76715 20038
+76716 5165
+76717 43917
+76718 46398
+76719 36456
+76720 62124
+76721 71939
+76722 75725
+76723 64979
+76724 57521
+76725 61579
+76726 71823
+76727 54972
+76728 53784
+76729 36942
+76730 36456
+76731 78756
+76732 42459
+76733 56692
+76734 36689
+76735 26209
+76736 40887
+76737 23532
+76738 42526
+76739 59317
+76740 43631
+76741 71685
+76742 55220
+76743 20617
+76744 40148
+76745 9831
+76746 71811
+76747 63652
+76748 25383
+76749 25391
+76750 38870
+76751 55132
+76752 54039
+76753 20415
+76754 49918
+76755 4832
+76756 69995
+76757 52930
+76758 22611
+76759 49441
+76760 34695
+76761 24504
+76762 21896
+76763 30843
+76764 54359
+76765 70015
+76766 71941
+76767 27155
+76768 64117
+76769 73907
+76770 21398
+76771 64117
+76772 41189
+76773 43844
+76774 36609
+76775 68647
+76776 20774
+76777 63771
+76778 28105
+76778 76671
+76779 43718
+76780 72747
+76781 80119
+76782 36609
+76783 61743
+76783 73839
+76784 71941
+76785 60462
+76786 41066
+76787 27428
+76788 50281
+76789 62397
+76790 62453
+76791 80781
+76792 49699
+76793 32591
+76794 21002
+76795 21107
+76796 38482
+76797 41663
+76798 27802
+76799 52955
+76800 55448
+76801 65013
+76802 51068
+76803 65067
+76804 56022
+76804 77232
+76805 29230
+76806 76816
+76807 78494
+76808 44149
+76809 23483
+76810 69620
+76811 22427
+76812 50320
+76813 39713
+76814 47262
+76815 34901
+76816 54888
+76817 35655
+76818 35529
+76819 33367
+76820 45057
+76821 35323
+76822 76820
+76823 64721
+76824 33366
+76825 52039
+76826 52810
+76827 56745
+76828 80926
+76829 80926
+76830 48722
+76831 32081
+76832 44200
+76833 29230
+76834 79938
+76835 37428
+76836 72396
+76837 47121
+76838 15784
+76839 8368
+76840 52971
+76841 66464
+76842 17029
+76843 71851
+76844 52382
+76845 52970
+76846 28316
+76847 59234
+76848 35611
+76849 71788
+76850 67743
+76851 40846
+76852 42204
+76853 21673
+76853 40846
+76854 23357
+76855 36840
+76856 79639
+76857 77763
+76858 61702
+76859 33844
+76860 81025
+76861 63712
+76862 35433
+76863 47381
+76864 43103
+76865 55132
+76866 56164
+76867 60533
+76868 28845
+76869 60612
+76870 20428
+76871 60105
+76872 34078
+76873 77935
+76874 48365
+76875 58567
+76876 38084
+76877 56718
+76878 59970
+76879 61317
+76880 67573
+76881 59234
+76882 56389
+76883 56748
+76884 68165
+76885 54933
+76886 76264
+76887 30489
+76888 37579
+76889 76871
+76890 71302
+76891 75978
+76892 39120
+76893 49073
+76894 41564
+76895 37503
+76896 44412
+76897 33442
+76898 51515
+76899 39638
+76900 32540
+76900 39638
+76901 25646
+76902 49777
+76903 20407
+76904 61740
+76905 76904
+76906 33624
+76907 40945
+76907 71836
+76908 36244
+76909 71781
+76910 21065
+76911 41569
+76912 78062
+76913 676
+76914 33150
+76915 78060
+76916 43054
+76917 68882
+76918 51997
+76919 49777
+76920 70521
+76921 28334
+76922 46713
+76923 36244
+76924 46459
+76925 35288
+76926 29378
+76927 28529
+76928 77299
+76929 20668
+76930 56022
+76930 77232
+76931 33007
+76932 33007
+76933 41956
+76934 68619
+76935 21220
+76936 39228
+76937 4420
+76938 38426
+76939 77675
+76940 61822
+76941 65258
+76942 24840
+76943 48317
+76944 41054
+76945 33581
+76946 26954
+76947 34897
+76948 67431
+76949 60714
+76950 26693
+76951 42049
+76952 53134
+76953 57032
+76954 21111
+76955 57033
+76956 58838
+76957 32041
+76958 45753
+76959 53532
+76960 55265
+76961 76964
+76962 76964
+76963 54945
+76964 58742
+76965 60677
+76966 49265
+76967 26725
+76968 74926
+76969 70867
+76970 79673
+76971 38787
+76972 36346
+76973 55217
+76974 61470
+76975 62721
+76976 49354
+76977 49870
+76978 66623
+76979 37975
+76980 11328
+76981 30843
+76982 49824
+76983 62974
+76984 38043
+76985 76979
+76986 76979
+76987 70264
+76988 31204
+76989 41780
+76990 38435
+76991 53134
+76992 11484
+76993 36870
+76994 30774
+76995 78586
+76996 36865
+76997 50196
+76998 65365
+76999 22165
+77000 36208
+77001 29707
+77002 77779
+77003 78831
+77004 78780
+77005 49918
+77006 49918
+77007 59178
+77008 46661
+77009 41021
+77010 38364
+77011 60202
+77012 43815
+77013 23560
+77014 25708
+77015 60678
+77016 30535
+77017 67365
+77018 69377
+77019 23856
+77020 43081
+77021 55264
+77022 65967
+77023 20737
+77024 39493
+77025 69471
+77026 48750
+77027 74968
+77028 77339
+77029 48576
+77030 48627
+77031 64590
+77032 39918
+77033 69471
+77034 77675
+77035 50943
+77036 32666
+77037 63733
+77038 64214
+77039 33065
+77040 38345
+77041 64312
+77042 25985
+77043 27202
+77044 36340
+77045 36239
+77046 54177
+77047 43152
+77048 60678
+77049 46585
+77050 69268
+77051 80926
+77052 34698
+77053 11482
+77054 40644
+77055 23772
+77056 61086
+77057 32666
+77058 29474
+77059 50811
+77060 33662
+77061 59473
+77062 21071
+77063 61541
+77064 33517
+77065 20724
+77066 32666
+77067 32899
+77068 33771
+77069 58835
+77070 4694
+77071 50739
+77072 35181
+77073 52034
+77074 46505
+77075 81056
+77076 20959
+77077 20963
+77078 38405
+77079 42556
+77080 77078
+77081 61493
+77082 29706
+77083 34527
+77084 77017
+77085 74464
+77086 25616
+77087 67168
+77088 16555
+77089 33856
+77090 80159
+77091 29029
+77092 3808
+77093 39177
+77094 80514
+77095 64533
+77096 21351
+77097 61822
+77098 41360
+77099 62453
+77100 32958
+77100 55911
+77101 55913
+77102 23938
+77103 50025
+77104 21512
+77105 52382
+77106 32424
+77107 39214
+77108 68763
+77109 26924
+77110 53465
+77111 39724
+77112 23975
+77113 34940
+77114 77113
+77115 79454
+77116 77013
+77117 42313
+77118 63308
+77119 33575
+77120 2474
+77121 42655
+77122 43067
+77123 73205
+77124 71941
+77125 24486
+77126 46588
+77127 33856
+77128 78175
+77129 60466
+77130 64485
+77130 69337
+77131 59329
+77132 41465
+77133 30774
+77134 33137
+77135 78560
+77136 28559
+77137 43154
+77138 77171
+77139 30784
+77140 30784
+77141 25633
+77142 50704
+77143 61544
+77144 61539
+77145 22927
+77146 53216
+77147 81057
+77148 61574
+77149 81057
+77150 81061
+77151 62884
+77152 81074
+77153 59389
+77154 65981
+77155 59938
+77156 39421
+77157 77224
+77158 59389
+77159 20925
+77160 33581
+77161 49777
+77162 30524
+77163 76341
+77164 36044
+77165 67129
+77166 21395
+77167 60202
+77168 59613
+77169 75384
+77170 40652
+77171 40069
+77172 65885
+77173 37684
+77174 56896
+77175 77174
+77176 63164
+77177 45375
+77178 43810
+77179 45844
+77180 30520
+77181 30520
+77182 39421
+77183 50122
+77184 20920
+77185 65743
+77186 56164
+77187 45059
+77188 20920
+77189 81080
+77190 49425
+77191 77299
+77192 59500
+77193 22168
+77194 50733
+77195 69524
+77196 68868
+77197 53137
+77198 81388
+77199 22002
+77200 60567
+77201 78917
+77202 53626
+77202 54998
+77203 45843
+77204 30521
+77205 77178
+77206 59389
+77207 60329
+77208 64090
+77209 77152
+77210 59389
+77211 59389
+77212 31598
+77213 10344
+77213 60892
+77214 65851
+77215 69561
+77216 32899
+77217 32229
+77218 44349
+77219 64345
+77220 64345
+77221 55166
+77222 67667
+77223 33926
+77224 21403
+77225 77181
+77226 33840
+77227 22002
+77228 35087
+77229 53511
+77230 61685
+77231 31598
+77232 17637
+77233 54972
+77234 20925
+77235 20956
+77236 59389
+77237 59178
+77238 56893
+77239 44173
+77240 39421
+77241 37178
+77242 70152
+77243 41106
+77244 32955
+77245 77675
+77246 4727
+77247 55019
+77248 20428
+77249 57194
+77250 28892
+77251 65833
+77252 62441
+77253 36627
+77254 22636
+77255 49777
+77256 33274
+77257 33858
+77258 75978
+77259 37494
+77260 30774
+77261 66719
+77262 4337
+77263 23016
+77264 70833
+77265 36
+77266 60722
+77267 49777
+77268 56492
+77269 36942
+77270 38394
+77271 55154
+77272 29660
+77273 17154
+77274 72360
+77275 26674
+77276 38131
+77277 53124
+77278 74793
+77279 70919
+77280 62880
+77281 64948
+77282 29624
+77283 48750
+77284 2911
+77285 70252
+77286 64462
+77287 55223
+77288 71601
+77289 56752
+77290 21395
+77291 21406
+77292 21890
+77293 24906
+77294 40801
+77295 46460
+77296 50660
+77297 62247
+77298 61228
+77299 49777
+77300 77302
+77301 31717
+77302 52734
+77303 80860
+77304 19638
+77305 23967
+77306 35075
+77307 77289
+77308 56896
+77309 42309
+77310 42296
+77311 42305
+77312 65893
+77313 75013
+77314 58272
+77315 74964
+77316 74527
+77317 33627
+77318 73900
+77319 74786
+77320 40714
+77321 12086
+77322 73772
+77323 34936
+77324 37636
+77325 79926
+77326 63164
+77327 20724
+77328 30843
+77329 44338
+77330 40043
+77331 44056
+77332 70152
+77333 77325
+77334 20724
+77335 56461
+77336 14919
+77337 73439
+77338 46965
+77339 81061
+77340 21513
+77341 23586
+77342 63085
+77343 31709
+77344 64677
+77345 34348
+77346 34925
+77347 43175
+77348 41666
+77349 43631
+77350 43631
+77351 62440
+77352 40063
+77353 49234
+77354 2911
+77355 2911
+77356 21518
+77357 18616
+77358 59061
+77359 62207
+77360 72159
+77361 12975
+77362 72848
+77363 72217
+77364 21513
+77365 74642
+77366 74642
+77367 22953
+77368 76610
+77369 2911
+77370 79535
+77371 62300
+77372 18616
+77373 58155
+77374 23255
+77375 62709
+77376 51107
+77377 77548
+77378 77299
+77379 52243
+77380 66260
+77381 23596
+77382 60094
+77383 79045
+77384 65184
+77385 39015
+77386 60094
+77387 37825
+77388 37825
+77389 65476
+77390 67144
+77391 43682
+77392 51655
+77393 79575
+77394 32559
+77395 37197
+77396 26920
+77397 56316
+77398 22312
+77399 53123
+77400 52383
+77401 74557
+77402 38516
+77403 69069
+77404 59178
+77405 23101
+77406 72482
+77407 76866
+77408 77407
+77409 77407
+77410 77407
+77411 77407
+77412 74498
+77413 2808
+77414 27840
+77415 75003
+77416 33581
+77417 60169
+77418 62443
+77419 3688
+77420 50623
+77421 71914
+77422 63976
+77423 33007
+77424 63976
+77425 21322
+77426 40808
+77427 52314
+77428 24568
+77429 75831
+77430 24659
+77431 4694
+77432 51117
+77433 61228
+77434 34247
+77435 62875
+77436 43215
+77437 38366
+77438 61157
+77439 63899
+77440 22504
+77441 77517
+77442 74582
+77443 33086
+77444 25778
+77445 52695
+77446 71621
+77447 73104
+77448 25646
+77449 19015
+77450 20792
+77451 12760
+77452 75418
+77453 55343
+77454 55157
+77455 55158
+77456 50494
+77457 36304
+77458 23146
+77459 14919
+77460 23128
+77461 60774
+77462 33187
+77463 28688
+77464 70919
+77465 77464
+77466 30311
+77467 57720
+77468 49904
+77468 57278
+77469 62679
+77470 31051
+77471 76059
+77472 20761
+77473 40481
+77474 35577
+77475 42407
+77476 64360
+77477 50105
+77478 14070
+77479 29978
+77480 62488
+77481 49904
+77482 36944
+77483 70112
+77484 37587
+77485 62425
+77486 66687
+77487 33056
+77488 72473
+77489 37303
+77490 26927
+77491 42392
+77492 32495
+77493 32153
+77494 51670
+77495 23903
+77496 80159
+77497 22781
+77498 69904
+77499 56022
+77500 51117
+77501 49777
+77502 17849
+77503 58614
+77504 10770
+77505 18616
+77506 33092
+77507 27622
+77508 34726
+77509 57835
+77510 36942
+77511 62476
+77512 45452
+77512 53276
+77513 77543
+77514 54062
+77515 43810
+77516 55002
+77517 64721
+77518 81077
+77519 58369
+77520 23552
+77521 52120
+77522 52120
+77523 53055
+77524 23532
+77525 77543
+77526 57610
+77527 21155
+77528 23962
+77529 68142
+77530 62883
+77531 61228
+77532 68782
+77533 77497
+77534 54100
+77535 29255
+77536 51080
+77537 23219
+77538 36210
+77539 49319
+77540 20724
+77541 33078
+77542 57128
+77543 16770
+77544 77764
+77545 45459
+77546 56542
+77547 59819
+77548 51107
+77549 46800
+77550 40807
+77551 29954
+77552 73281
+77553 26760
+77554 67606
+77555 43101
+77556 80679
+77557 45459
+77558 78756
+77559 46838
+77560 64872
+77561 32246
+77562 20792
+77563 25061
+77564 56989
+77565 25081
+77566 78060
+77567 30740
+77568 30485
+77569 30485
+77570 23848
+77571 25079
+77572 59282
+77573 57132
+77574 70466
+77575 44437
+77576 61147
+77577 33970
+77578 54248
+77579 57001
+77580 65262
+77581 40612
+77582 38643
+77583 23482
+77584 29624
+77585 44011
+77586 58968
+77587 70760
+77588 36791
+77589 34712
+77590 28238
+77591 31249
+77592 45459
+77593 80883
+77594 81183
+77595 47693
+77595 62920
+77596 66499
+77597 7863
+77598 33224
+77598 74168
+77599 41000
+77600 23219
+77600 55363
+77601 21117
+77602 18694
+77603 25052
+77604 25052
+77605 48695
+77606 23016
+77607 43034
+77608 34726
+77609 26157
+77610 29660
+77611 77602
+77612 57315
+77613 42300
+77614 22488
+77615 77197
+77616 28488
+77617 49904
+77618 56236
+77619 56236
+77620 27638
+77621 57134
+77622 59993
+77623 58033
+77624 23410
+77625 23410
+77626 78309
+77627 55910
+77628 56893
+77629 58835
+77630 58835
+77631 70152
+77631 77627
+77632 74859
+77633 55351
+77634 29471
+77635 77646
+77636 72596
+77637 24231
+77638 29764
+77639 80428
+77640 52235
+77641 60948
+77642 55223
+77643 62139
+77644 36116
+77645 65461
+77646 65743
+77647 80883
+77648 69505
+77649 20724
+77650 52326
+77651 52326
+77652 43968
+77653 22523
+77654 65234
+77655 62116
+77656 46965
+77657 22877
+77658 45113
+77659 61329
+77660 66592
+77661 5316
+77662 65893
+77663 45683
+77664 44193
+77665 35303
+77666 48142
+77667 59608
+77668 42267
+77669 43010
+77669 68224
+77670 46882
+77671 22983
+77671 77672
+77672 80025
+77673 58209
+77674 20485
+77675 56774
+77676 42691
+77677 36037
+77678 41371
+77679 21493
+77680 69752
+77681 78830
+77682 41547
+77683 70174
+77684 49824
+77685 58604
+77686 21442
+77687 47910
+77688 21784
+77689 22498
+77690 49740
+77691 26442
+77692 28222
+77693 43631
+77694 43844
+77695 53514
+77696 54269
+77697 54759
+77698 79125
+77699 34305
+77700 68137
+77701 71189
+77702 43631
+77703 79311
+77704 40603
+77705 29123
+77706 18754
+77707 62443
+77708 74252
+77709 72841
+77710 2243
+77711 48265
+77712 27640
+77713 57134
+77714 79438
+77715 74670
+77716 75564
+77717 22468
+77718 43732
+77719 43732
+77720 29734
+77721 70327
+77722 56158
+77723 25488
+77724 67529
+77724 80150
+77725 24521
+77726 27773
+77727 52885
+77728 53131
+77729 53132
+77730 24730
+77731 43420
+77732 27840
+77733 64214
+77734 77112
+77735 45748
+77736 42044
+77737 50198
+77738 43827
+77739 5547
+77740 21407
+77741 41792
+77742 41794
+77743 14919
+77744 77112
+77745 33158
+77746 50494
+77747 48238
+77748 72785
+77749 40069
+77750 77749
+77751 40390
+77752 42859
+77753 37786
+77754 19636
+77754 28860
+77755 37166
+77756 67144
+77757 37065
+77758 33639
+77759 59299
+77760 46558
+77761 52963
+77761 74555
+77762 39159
+77763 33310
+77764 39493
+77765 73907
+77766 43031
+77767 62603
+77768 52696
+77769 57232
+77770 53295
+77771 71000
+77772 52682
+77773 49876
+77774 42747
+77775 25618
+77776 78776
+77777 21811
+77777 57865
+77777 62308
+77778 30084
+77779 77765
+77780 32601
+77781 23960
+77782 62473
+77783 27485
+77784 33331
+77785 24504
+77786 68660
+77787 15785
+77788 79344
+77789 28358
+77790 34901
+77791 30215
+77792 43612
+77793 64576
+77794 76586
+77795 79024
+77796 25277
+77797 23848
+77798 12276
+77799 23380
+77800 41547
+77801 50191
+77802 81404
+77803 53055
+77804 42759
+77805 59317
+77806 22468
+77807 19954
+77808 19954
+77809 18616
+77810 55503
+77811 20868
+77812 31929
+77813 38806
+77814 46587
+77815 45311
+77816 49396
+77817 79992
+77818 2911
+77819 22062
+77820 38792
+77821 59389
+77822 77823
+77823 74773
+77824 46379
+77825 35676
+77826 79202
+77827 32889
+77828 21453
+77829 24994
+77830 63775
+77831 68266
+77832 43010
+77832 68857
+77833 39219
+77834 68165
+77835 42268
+77836 68381
+77837 3737
+77838 37428
+77839 74670
+77840 62124
+77841 21098
+77842 63607
+77843 21099
+77844 70974
+77845 58860
+77846 22468
+77847 68239
+77848 21896
+77849 59830
+77850 55351
+77851 31835
+77852 21689
+77853 31176
+77854 28920
+77855 49441
+77856 60575
+77857 79254
+77858 75733
+77859 47262
+77860 80668
+77861 80669
+77862 31954
+77863 27155
+77864 67664
+77865 44428
+77866 42727
+77867 52532
+77868 61685
+77869 24488
+77870 37647
+77871 42741
+77872 69758
+77873 31493
+77874 51240
+77875 25277
+77876 47665
+77877 47665
+77878 73104
+77879 38666
+77880 43576
+77881 38481
+77882 59044
+77883 80619
+77884 47665
+77885 42553
+77886 30518
+77887 36924
+77888 56749
+77889 30519
+77890 67668
+77891 41485
+77892 79488
+77893 50086
+77894 40894
+77895 21381
+77896 80916
+77897 23285
+77898 63607
+77899 34515
+77900 39724
+77901 70265
+77902 64025
+77903 30508
+77904 60395
+77905 39827
+77906 43245
+77907 77911
+77908 35145
+77908 67598
+77909 25489
+77910 7645
+77911 35144
+77912 50086
+77913 67365
+77914 44315
+77915 60464
+77916 23934
+77917 67668
+77918 37579
+77919 44299
+77920 40896
+77921 72491
+77922 44299
+77923 62532
+77924 62397
+77925 77312
+77926 62397
+77927 10789
+77928 58955
+77929 40393
+77930 26817
+77931 56022
+77931 59110
+77932 18616
+77933 76945
+77934 31841
+77935 30768
+77936 71973
+77937 38284
+77938 74700
+77938 9438
+77939 32390
+77940 70974
+77941 53347
+77942 76767
+77943 54463
+77944 68502
+77945 29045
+77946 3503
+77947 52445
+77948 69769
+77949 49104
+77950 22600
+77951 32909
+77952 71941
+77953 57461
+77954 59317
+77955 59317
+77956 41054
+77957 49832
+77958 31021
+77959 17386
+77960 65562
+77961 52120
+77962 69692
+77963 76475
+77964 36103
+77965 65562
+77966 25986
+77967 52120
+77968 52120
+77969 52120
+77970 52120
+77971 52120
+77972 52120
+77973 52120
+77974 52120
+77975 52120
+77976 42168
+77977 77976
+77978 77976
+77979 70750
+77980 77890
+77981 54573
+77982 26611
+77983 52970
+77984 36185
+77985 44399
+77986 58748
+77987 79949
+77988 41054
+77989 25488
+77990 44054
+77991 48265
+77992 80926
+77993 74119
+77994 59972
+77995 50981
+77996 70138
+77997 35226
+77998 56749
+77999 71594
+78000 67668
+78001 26253
+78002 21430
+78003 34712
+78004 26157
+78005 76436
+78006 79153
+78007 24403
+78008 68548
+78009 25067
+78010 75733
+78011 3078
+78012 28557
+78013 51885
+78014 24674
+78015 32774
+78016 75135
+78017 30687
+78018 71253
+78019 71253
+78020 73734
+78021 65234
+78022 25986
+78023 58822
+78024 34516
+78025 32320
+78026 10094
+78027 27155
+78028 78831
+78029 38664
+78030 37239
+78031 49918
+78032 59178
+78033 43213
+78034 75418
+78035 30578
+78036 26664
+78037 74860
+78038 36996
+78039 24119
+78039 36996
+78040 78035
+78041 44496
+78042 21894
+78043 72222
+78044 40618
+78045 55040
+78046 63881
+78047 30581
+78048 29661
+78049 41070
+78050 51429
+78051 81071
+78052 49876
+78053 68222
+78054 24471
+78055 35611
+78056 67144
+78057 50967
+78058 58295
+78059 66647
+78060 81063
+78061 62976
+78062 39724
+78063 34695
+78064 23763
+78065 22137
+78066 40686
+78067 60584
+78068 76051
+78069 37118
+78070 67876
+78071 49777
+78072 22763
+78073 47121
+78074 22137
+78075 55220
+78076 24165
+78077 22763
+78078 19171
+78079 66972
+78080 12970
+78081 63645
+78082 32246
+78082 65156
+78083 63645
+78084 23004
+78085 22636
+78086 49415
+78087 46492
+78088 59970
+78089 61244
+78090 52696
+78091 59389
+78092 32376
+78093 27001
+78094 26587
+78095 49918
+78096 49699
+78097 23352
+78098 23516
+78099 57781
+78100 78831
+78101 64979
+78102 74848
+78103 36380
+78104 64979
+78105 41829
+78106 36482
+78107 30281
+78108 30282
+78109 65334
+78110 61858
+78111 26794
+78112 52999
+78113 15826
+78114 62791
+78115 71940
+78116 20906
+78117 72007
+78118 72257
+78119 49938
+78120 47665
+78121 39006
+78122 29071
+78122 41707
+78122 43852
+78123 47708
+78124 78831
+78125 33852
+78126 69891
+78127 29199
+78128 36308
+78129 19015
+78130 30670
+78131 41666
+78132 47665
+78133 40276
+78134 69338
+78135 75733
+78136 2911
+78137 54253
+78138 42747
+78139 37002
+78140 55192
+78141 58839
+78142 37119
+78143 78385
+78144 49531
+78145 57543
+78146 49370
+78147 31597
+78148 20681
+78149 78360
+78150 21939
+78151 37170
+78152 49467
+78153 78084
+78154 49695
+78155 33662
+78156 27006
+78157 49947
+78158 68817
+78159 23975
+78160 68993
+78161 51571
+78162 25745
+78163 77112
+78164 49634
+78165 40970
+78166 40970
+78167 77112
+78168 41571
+78169 61086
+78170 78270
+78171 66431
+78172 33493
+78173 29555
+78174 15151
+78175 32295
+78176 59432
+78177 78359
+78178 49530
+78179 22628
+78179 66492
+78180 35098
+78181 62875
+78182 20792
+78183 50719
+78184 61187
+78185 64694
+78186 27369
+78187 20371
+78188 71701
+78189 23739
+78190 28104
+78191 43420
+78191 74490
+78192 30604
+78193 30612
+78194 69135
+78195 43863
+78196 59175
+78197 54972
+78198 43182
+78198 58366
+78199 35510
+78200 36927
+78201 36929
+78202 41160
+78203 23131
+78204 23090
+78205 40878
+78206 40872
+78207 29646
+78208 44193
+78209 32430
+78210 53266
+78211 48742
+78212 78208
+78213 27021
+78214 77856
+78215 60773
+78216 60774
+78217 28528
+78218 64033
+78219 73875
+78220 69275
+78221 69491
+78222 2911
+78223 73125
+78224 34695
+78225 35433
+78226 76719
+78227 55120
+78228 69881
+78229 49603
+78230 78225
+78231 40535
+78232 78208
+78233 58139
+78234 31608
+78235 1789
+78236 24475
+78237 61329
+78238 53209
+78239 79779
+78240 50324
+78241 69345
+78242 20451
+78243 53752
+78244 57363
+78245 56749
+78246 49434
+78247 49619
+78248 49619
+78249 42043
+78250 67901
+78251 61086
+78252 58276
+78253 73104
+78254 71599
+78255 65117
+78256 61129
+78257 49231
+78258 50710
+78259 49835
+78260 30528
+78261 40970
+78262 60489
+78263 50040
+78264 37454
+78265 78404
+78266 36923
+78267 29261
+78268 49777
+78269 37632
+78270 37701
+78271 49434
+78272 37542
+78273 13570
+78274 62207
+78275 62207
+78276 39702
+78277 56631
+78278 78337
+78279 64979
+78280 49282
+78281 80159
+78282 60889
+78283 22997
+78284 31939
+78285 66372
+78286 70740
+78287 21487
+78288 36754
+78289 37955
+78290 21235
+78291 78661
+78292 61086
+78293 79402
+78294 49833
+78295 49634
+78296 49470
+78297 37101
+78298 55349
+78299 66649
+78300 32955
+78301 51805
+78302 4515
+78303 54337
+78304 20681
+78305 32331
+78306 71938
+78307 36346
+78308 33068
+78309 59394
+78310 80377
+78311 58614
+78312 28245
+78313 30579
+78314 34290
+78315 43829
+78316 78307
+78317 33366
+78318 59916
+78319 33839
+78320 36925
+78321 67869
+78322 64240
+78323 33813
+78324 34515
+78325 21405
+78326 26714
+78327 64996
+78328 16771
+78329 67240
+78330 62304
+78331 75978
+78332 44412
+78333 33662
+78334 27001
+78335 40399
+78336 39213
+78337 50117
+78338 78175
+78339 66324
+78340 78734
+78341 41122
+78342 4466
+78343 64979
+78344 44213
+78345 44046
+78345 79062
+78346 49497
+78347 37733
+78348 30353
+78349 46909
+78350 61686
+78351 80778
+78352 64979
+78353 78270
+78354 49643
+78355 42120
+78356 49643
+78357 78178
+78358 64979
+78359 59433
+78360 75356
+78361 37457
+78362 50117
+78363 49470
+78364 61329
+78365 78364
+78366 59971
+78367 64979
+78368 78084
+78369 75273
+78370 64979
+78371 50718
+78372 63492
+78373 57543
+78374 23329
+78375 37454
+78376 49310
+78377 58233
+78378 78171
+78379 37591
+78380 21453
+78381 49769
+78382 49333
+78383 50481
+78384 68398
+78385 64979
+78386 41465
+78387 37586
+78388 76502
+78389 49695
+78390 78338
+78391 44435
+78392 78084
+78393 49777
+78394 49530
+78395 52833
+78396 37701
+78397 33273
+78398 56162
+78399 24475
+78400 49444
+78401 56885
+78402 50710
+78403 64099
+78404 64979
+78405 77112
+78406 37646
+78407 78163
+78408 9146
+78409 77112
+78410 37586
+78411 30774
+78412 30774
+78413 30774
+78414 30774
+78415 30774
+78416 78166
+78417 50542
+78418 63659
+78419 49569
+78420 49648
+78421 37701
+78422 24475
+78423 60722
+78424 27444
+78425 49660
+78426 65013
+78427 64284
+78428 25451
+78429 24082
+78430 47697
+78431 21572
+78432 50266
+78433 30508
+78434 38346
+78435 59912
+78436 66725
+78437 47033
+78438 49504
+78439 1346
+78440 23608
+78441 6926
+78442 34705
+78443 34590
+78444 34695
+78445 41054
+78446 69839
+78447 34348
+78448 68378
+78449 23772
+78450 27653
+78451 1346
+78452 77216
+78453 25799
+78454 61824
+78455 27411
+78456 31608
+78457 36162
+78458 74428
+78459 50933
+78460 53093
+78461 52326
+78462 66809
+78463 66808
+78464 70494
+78465 26769
+78466 1426
+78467 73900
+78468 61722
+78469 67244
+78470 76759
+78471 23640
+78472 79081
+78473 28845
+78474 52727
+78475 60464
+78476 20959
+78477 60464
+78478 78364
+78479 78364
+78480 73875
+78481 48685
+78482 36044
+78483 61228
+78484 32919
+78485 49504
+78486 78489
+78487 18938
+78488 18938
+78489 59365
+78490 59178
+78491 46345
+78492 58082
+78493 59798
+78494 68239
+78495 26713
+78495 74893
+78496 74893
+78497 45056
+78498 46445
+78499 20692
+78500 23258
+78501 65938
+78502 34547
+78503 64979
+78504 33273
+78505 71603
+78506 79003
+78507 6958
+78508 59385
+78509 74959
+78510 40069
+78511 60685
+78512 29071
+78513 49918
+78514 64131
+78515 66269
+78516 73279
+78517 40410
+78518 29071
+78519 59150
+78520 72345
+78521 78537
+78522 64131
+78523 40051
+78524 57620
+78525 49459
+78526 70877
+78527 21234
+78528 80499
+78529 20792
+78530 26713
+78530 74893
+78531 62562
+78532 30771
+78532 37003
+78533 26488
+78534 37168
+78535 66879
+78536 77027
+78537 49920
+78538 27028
+78539 78784
+78540 63246
+78541 22531
+78542 31245
+78543 40981
+78544 36295
+78545 58397
+78546 22208
+78547 59970
+78548 74968
+78549 28897
+78550 72218
+78551 55223
+78552 60685
+78553 58875
+78554 75091
+78555 42747
+78556 39248
+78556 48965
+78557 35529
+78558 61228
+78559 78583
+78560 40709
+78561 29378
+78562 13996
+78563 49777
+78564 46458
+78565 36100
+78566 32882
+78567 52558
+78568 78563
+78569 29366
+78570 81080
+78571 50327
+78572 52636
+78573 54574
+78574 49441
+78575 23516
+78576 30084
+78577 33723
+78578 78831
+78579 41609
+78580 56621
+78581 37955
+78582 16752
+78583 64979
+78584 16751
+78585 74977
+78586 64090
+78587 41106
+78588 57029
+78589 24671
+78590 80943
+78591 43815
+78592 73104
+78593 78563
+78594 71613
+78595 62629
+78596 24029
+78597 25634
+78598 30687
+78599 73907
+78600 49918
+78601 42461
+78602 49918
+78603 80428
+78604 48776
+78605 40686
+78606 21288
+78607 48100
+78608 39739
+78609 61129
+78610 10870
+78611 20465
+78612 38102
+78613 58276
+78614 52595
+78615 68651
+78616 49354
+78617 60690
+78618 49870
+78619 30084
+78620 33273
+78621 73981
+78622 39739
+78623 60462
+78624 48142
+78625 30461
+78626 42502
+78627 44320
+78628 58614
+78629 22002
+78630 29071
+78631 23516
+78632 37494
+78633 71332
+78634 33723
+78635 49918
+78636 48179
+78637 78164
+78638 49775
+78639 34726
+78640 59300
+78641 41367
+78642 68759
+78643 63373
+78644 63373
+78645 39474
+78646 30782
+78647 42747
+78648 29462
+78649 16757
+78650 70478
+78651 52565
+78652 40390
+78653 59738
+78654 5316
+78655 12150
+78656 45712
+78657 22779
+78658 77325
+78659 15000
+78660 58510
+78661 19993
+78662 22193
+78663 32491
+78664 33691
+78665 49167
+78666 23721
+78667 73125
+78668 81001
+78669 23092
+78670 25646
+78671 73907
+78672 36942
+78673 33775
+78674 49094
+78675 49593
+78676 47352
+78677 49628
+78678 78671
+78679 49918
+78680 29172
+78681 20675
+78682 61824
+78683 40585
+78684 29601
+78685 25646
+78686 20920
+78687 23410
+78688 77675
+78691 23966
+78693 68239
+78694 56022
+78695 59830
+78696 21896
+78697 22763
+78698 59317
+78699 36845
+78699 36957
+78700 55154
+78701 42017
+78702 26508
+78703 59317
+78704 42553
+78705 18035
+78706 42553
+78707 49104
+78708 78703
+78709 64551
+78710 33086
+78711 49777
+78712 37465
+78713 37464
+78714 62679
+78715 23004
+78716 52938
+78717 62180
+78718 78717
+78719 74604
+78720 61485
+78721 66444
+78722 26673
+78723 63702
+78724 22591
+78725 36942
+78726 30026
+78727 63081
+78728 53182
+78729 79184
+78730 30526
+78731 76088
+78732 64999
+78733 73043
+78734 74860
+78735 64206
+78736 56427
+78737 37669
+78738 20955
+78739 49166
+78740 76080
+78741 63980
+78742 61367
+78743 30508
+78744 47726
+78745 37239
+78746 78748
+78746 78831
+78747 60685
+78748 78764
+78749 53765
+78750 78730
+78751 48469
+78752 78730
+78753 80595
+78754 75418
+78755 70375
+78756 55135
+78757 78759
+78758 78759
+78759 63413
+78760 50076
+78761 55132
+78762 39200
+78763 62957
+78764 20428
+78765 24486
+78766 22517
+78767 59976
+78768 62736
+78769 42106
+78770 78334
+78771 72767
+78772 29071
+78773 77779
+78774 26734
+78775 78780
+78776 62290
+78777 78780
+78778 73907
+78779 74968
+78780 62307
+78781 64215
+78782 59389
+78783 49918
+78784 50919
+78785 20415
+78785 74555
+78786 33578
+78787 21403
+78788 37240
+78789 37244
+78790 48358
+78790 78787
+78791 78787
+78792 49593
+78793 59178
+78794 49918
+78795 38901
+78796 61189
+78797 28438
+78798 73888
+78799 67560
+78800 23846
+78801 33581
+78802 26952
+78803 55135
+78804 37579
+78805 37579
+78806 51068
+78807 68615
+78808 78732
+78809 73633
+78810 49765
+78811 21751
+78812 78808
+78813 51885
+78814 76269
+78815 78821
+78816 64020
+78817 47665
+78818 55037
+78819 62301
+78820 79880
+78821 39065
+78822 37138
+78823 36928
+78824 40671
+78825 38157
+78826 33856
+78827 55232
+78828 55037
+78829 49765
+78830 77065
+78831 26734
+78832 40894
+78833 78775
+78834 43246
+78835 67104
+78836 78831
+78837 33547
+78838 45957
+78839 80707
+78840 79348
+78841 81071
+78842 51933
+78843 25891
+78844 54574
+78845 65242
+78846 41054
+78847 68508
+78848 41054
+78849 19512
+78850 25765
+78851 7577
+78852 48620
+78853 41054
+78854 78831
+78855 78831
+78856 78831
+78857 78831
+78858 31832
+78859 78836
+78860 31832
+78861 78836
+78862 78836
+78863 78831
+78864 78869
+78865 51799
+78866 51799
+78867 78831
+78868 31832
+78869 78831
+78870 34231
+78871 23432
+78872 74968
+78873 41732
+78874 71251
+78875 32082
+78876 51953
+78877 48278
+78878 21127
+78879 26741
+78879 49593
+78880 17010
+78881 64673
+78882 81046
+78883 44061
+78884 20051
+78885 23528
+78886 22535
+78887 53457
+78888 26695
+78889 26726
+78890 59150
+78891 31711
+78892 71223
+78893 17385
+78894 78579
+78895 27021
+78896 55162
+78897 21572
+78897 69905
+78898 36942
+78899 30084
+78900 30462
+78901 22434
+78902 29495
+78902 41760
+78903 69644
+78904 23484
+78905 61189
+78906 38784
+78907 51806
+78908 28529
+78909 3292
+78910 29299
+78911 62577
+78912 55449
+78913 51240
+78914 78831
+78915 77747
+78916 28878
+78917 54339
+78918 33665
+78919 34806
+78920 50263
+78921 32823
+78922 61657
+78923 42747
+78924 78926
+78925 35323
+78926 40894
+78927 54642
+78928 42054
+78929 61858
+78930 60691
+78931 76586
+78932 27292
+78933 29560
+78933 31307
+78934 21292
+78935 32477
+78936 18752
+78937 60612
+78938 21404
+78938 55220
+78939 29733
+78939 39634
+78940 56022
+78941 55220
+78942 12967
+78943 67479
+78944 61386
+78945 57833
+78946 80595
+78947 58195
+78948 40233
+78949 40232
+78950 80727
+78951 23432
+78952 28925
+78953 54972
+78954 42747
+78955 70978
+78956 53126
+78957 62658
+78958 21009
+78959 43219
+78960 24091
+78961 50417
+78962 77886
+78963 13823
+78964 53182
+78965 27155
+78966 23516
+78967 78831
+78968 31176
+78969 40992
+78970 60040
+78971 50433
+78972 59419
+78973 872
+78974 24778
+78975 46033
+78976 41945
+78977 33542
+78978 55155
+78979 74527
+78980 21610
+78981 4918
+78982 80532
+78983 43844
+78984 46441
+78985 65334
+78986 49461
+78987 53282
+78988 65334
+78989 78831
+78990 30770
+78991 66269
+78992 73514
+78993 59389
+78994 49918
+78995 22537
+78996 16753
+78997 12975
+78998 29193
+78999 29601
+79000 19512
+79001 77765
+79002 34696
+79003 33637
+79004 44193
+79005 62623
+79006 80778
+79007 79390
+79008 50324
+79009 50325
+79010 69614
+79011 40752
+79012 78831
+79013 30084
+79014 79013
+79015 79013
+79016 31939
+79017 45770
+79018 32689
+79019 67573
+79020 31307
+79021 31307
+79022 34570
+79023 56022
+79024 52587
+79025 79125
+79026 11312
+79027 11312
+79028 37948
+79029 55223
+79030 68763
+79031 24668
+79032 63373
+79033 53375
+79034 64215
+79035 63416
+79036 27840
+79037 37579
+79038 21194
+79039 53311
+79040 28693
+79041 22083
+79042 57134
+79043 61157
+79044 21532
+79045 71941
+79046 55154
+79047 55154
+79048 40498
+79049 63788
+79050 15600
+79051 15600
+79052 36698
+79053 26235
+79054 40398
+79055 77186
+79056 49674
+79057 14919
+79058 36698
+79059 42400
+79060 30426
+79061 21115
+79062 34936
+79063 40689
+79064 62785
+79065 36700
+79066 80428
+79067 45759
+79068 58567
+79069 51240
+79070 14919
+79071 71973
+79072 63148
+79073 72238
+79074 42775
+79075 57188
+79076 78268
+79077 49777
+79078 21217
+79079 24486
+79080 34936
+79081 33670
+79082 30121
+79083 51601
+79084 31396
+79085 2450
+79086 80863
+79087 41054
+79088 40547
+79089 65981
+79090 61625
+79091 29827
+79091 79089
+79092 75270
+79093 59243
+79094 75263
+79094 79089
+79095 54228
+79096 65548
+79097 21523
+79098 23004
+79099 872
+79100 59242
+79101 23996
+79102 79479
+79103 67333
+79104 74579
+79105 29107
+79106 32709
+79107 79373
+79108 52286
+79109 40877
+79110 70930
+79111 7640
+79112 36569
+79113 61329
+79114 30575
+79115 79113
+79116 40583
+79117 77186
+79118 52561
+79118 69760
+79119 75745
+79120 23016
+79121 75020
+79122 61272
+79123 61272
+79124 54413
+79125 78776
+79126 54622
+79127 32524
+79128 20761
+79129 39224
+79130 43711
+79131 20804
+79132 80186
+79133 41371
+79134 45910
+79135 45909
+79136 41663
+79137 80595
+79138 58947
+79139 47101
+79140 55449
+79141 54359
+79142 46345
+79143 62354
+79144 74959
+79145 27451
+79146 79145
+79147 79145
+79148 79145
+79149 56164
+79150 34940
+79151 52839
+79152 77870
+79153 19415
+79154 64741
+79155 61442
+79156 74261
+79157 59800
+79158 27451
+79159 29980
+79160 57115
+79161 54359
+79162 73827
+79163 57134
+79164 57134
+79165 22763
+79166 17151
+79167 45947
+79168 70404
+79169 77157
+79170 47649
+79171 49870
+79172 62612
+79172 79171
+79173 60685
+79174 59505
+79175 38308
+79176 50071
+79177 31717
+79178 80863
+79179 47081
+79180 33273
+79181 21404
+79182 69847
+79183 54411
+79184 38633
+79185 60495
+79186 60495
+79187 62309
+79188 55698
+79189 55223
+79190 23095
+79191 64979
+79192 58632
+79193 66253
+79194 55369
+79195 33138
+79196 45664
+79197 45664
+79198 68808
+79199 57135
+79200 47050
+79201 48508
+79202 49875
+79202 55727
+79203 21397
+79204 54415
+79205 34406
+79206 67490
+79207 50379
+79208 52592
+79209 62495
+79210 55132
+79211 55127
+79212 65720
+79213 27006
+79214 10845
+79215 60935
+79216 65562
+79217 76582
+79218 80428
+79219 60935
+79220 10249
+79221 48083
+79222 61132
+79223 31598
+79224 72257
+79225 61571
+79226 72252
+79227 49286
+79228 69575
+79229 40807
+79230 49777
+79231 55266
+79232 55267
+79233 55266
+79234 55266
+79235 28860
+79236 79231
+79237 52558
+79238 79231
+79239 79242
+79240 58520
+79241 64064
+79242 77299
+79243 23380
+79244 21462
+79245 22927
+79246 34245
+79247 71833
+79248 32900
+79249 37690
+79250 79253
+79251 46800
+79252 49278
+79253 61131
+79254 37446
+79255 61134
+79256 64215
+79257 61642
+79258 79222
+79259 70578
+79260 79255
+79261 69614
+79262 58674
+79263 49777
+79264 29258
+79264 37006
+79265 59369
+79266 30046
+79267 70580
+79268 73147
+79269 61541
+79270 25648
+79271 39901
+79272 61702
+79273 40396
+79274 58406
+79275 23
+79276 23
+79277 1663
+79278 1663
+79279 1663
+79280 1663
+79281 1663
+79282 22820
+79282 79708
+79283 41431
+79284 79283
+79285 79283
+79286 79708
+79287 53889
+79287 58406
+79288 31418
+79289 58485
+79290 35339
+79291 21495
+79292 70995
+79293 48727
+79294 71786
+79295 20925
+79296 20792
+79297 20554
+79298 47845
+79299 39789
+79300 29599
+79301 39223
+79302 59178
+79303 26100
+79304 58838
+79305 14919
+79306 62712
+79307 80883
+79308 80896
+79309 32287
+79310 43427
+79311 42941
+79312 57106
+79313 57108
+79314 39214
+79315 66388
+79316 66391
+79317 39211
+79318 58640
+79319 17385
+79320 53315
+79321 54819
+79322 71938
+79323 32900
+79324 71941
+79325 21398
+79326 32900
+79327 17029
+79328 61678
+79329 45843
+79330 75566
+79331 79323
+79332 60467
+79333 49470
+79334 26114
+79335 70974
+79336 17385
+79337 21099
+79338 41054
+79339 60633
+79340 55037
+79341 55369
+79342 30785
+79343 79344
+79344 49220
+79345 45059
+79346 56793
+79347 45075
+79348 41137
+79349 31104
+79350 66943
+79351 34542
+79352 1785
+79353 4696
+79354 57814
+79355 60492
+79356 63405
+79357 39427
+79358 6480
+79359 77182
+79360 25262
+79361 30158
+79362 55610
+79363 22193
+79364 64537
+79365 22193
+79366 78307
+79367 55610
+79368 64997
+79369 64997
+79370 11312
+79371 71813
+79372 70919
+79373 80926
+79374 69616
+79375 77888
+79376 62304
+79377 60685
+79378 27155
+79379 27028
+79380 70478
+79381 40028
+79383 37211
+79385 47606
+79386 35320
+79387 78831
+79388 31352
+79389 66491
+79390 63789
+79391 37503
+79392 46347
+79393 27001
+79394 58510
+79395 39802
+79396 21382
+79397 2462
+79398 55154
+79399 63504
+79400 67203
+79401 73439
+79402 52562
+79403 77733
+79404 60533
+79405 6926
+79406 37956
+79407 61871
+79408 28246
+79409 23765
+79410 61564
+79411 52727
+79412 79411
+79413 61570
+79414 64156
+79415 59379
+79416 66209
+79417 51107
+79418 77299
+79419 60328
+79420 71941
+79421 63984
+79422 70974
+79423 78364
+79424 36378
+79425 36080
+79426 79920
+79427 26184
+79428 41608
+79429 20415
+79430 49918
+79431 49918
+79432 54972
+79433 43969
+79434 19547
+79435 47947
+79436 46501
+79437 79486
+79438 23162
+79439 62975
+79440 60615
+79441 26229
+79442 27679
+79443 28845
+79444 51599
+79445 32909
+79446 21455
+79447 36482
+79448 33207
+79449 25050
+79450 43527
+79451 68591
+79452 42041
+79453 43805
+79454 80159
+79455 80159
+79456 76556
+79457 80150
+79458 38575
+79459 20006
+79460 59505
+79461 54126
+79462 6958
+79463 17385
+79463 56844
+79464 35199
+79465 60130
+79466 79516
+79467 23286
+79468 63334
+79469 49537
+79470 49777
+79471 68727
+79472 67510
+79473 69735
+79474 19636
+79475 79103
+79476 79624
+79477 3074
+79478 26920
+79479 61702
+79479 79483
+79480 75655
+79481 23938
+79482 49777
+79483 33499
+79484 50036
+79485 26921
+79486 53573
+79487 25437
+79488 77289
+79489 60677
+79490 43968
+79491 29542
+79492 49777
+79493 36783
+79493 69270
+79494 77598
+79495 67573
+79496 20959
+79497 20694
+79498 60575
+79499 66394
+79500 79488
+79501 22901
+79502 22902
+79503 31405
+79504 22092
+79505 79488
+79506 53231
+79507 78299
+79508 72514
+79509 61491
+79510 70219
+79511 73346
+79512 61491
+79513 73802
+79514 37727
+79515 20868
+79516 37883
+79517 58614
+79518 41631
+79519 73691
+79520 43246
+79521 25493
+79522 37168
+79523 31841
+79524 34848
+79525 45097
+79526 60129
+79527 73529
+79528 62382
+79529 15784
+79530 47665
+79531 72514
+79532 65895
+79533 29229
+79534 43882
+79535 51299
+79536 80926
+79537 26920
+79538 72842
+79539 42747
+79540 42747
+79541 70458
+79542 26769
+79543 48017
+79544 79081
+79545 10620
+79546 56929
+79547 24254
+79548 60202
+79549 70974
+79550 39193
+79551 19954
+79552 58543
+79553 26611
+79554 58862
+79555 57170
+79556 35805
+79557 24674
+79558 35809
+79559 25363
+79560 67487
+79561 27624
+79562 77289
+79563 21682
+79564 49511
+79565 42747
+79566 33763
+79567 36219
+79568 31639
+79569 22598
+79570 49777
+79571 69616
+79572 36265
+79573 20924
+79574 22671
+79575 25277
+79576 4840
+79577 24311
+79578 27835
+79579 43827
+79580 24044
+79581 34217
+79582 34936
+79583 81080
+79584 3076
+79585 67339
+79586 70771
+79587 7410
+79588 21155
+79589 23440
+79590 32959
+79591 60530
+79592 58827
+79593 67573
+79594 80420
+79595 32566
+79596 2911
+79597 2911
+79598 22519
+79599 43940
+79600 17029
+79601 59505
+79602 52307
+79603 14919
+79604 14919
+79605 79602
+79606 20724
+79607 20724
+79608 55903
+79609 23543
+79610 40043
+79611 52895
+79612 80943
+79613 22777
+79614 80913
+79615 56792
+79616 30060
+79617 80722
+79618 55895
+79619 43648
+79620 53835
+79621 13901
+79622 47174
+79623 47381
+79624 49967
+79625 75065
+79626 73677
+79627 36368
+79628 76178
+79629 25688
+79630 60676
+79631 47428
+79631 55910
+79632 81046
+79633 55897
+79634 65885
+79635 31745
+79636 44078
+79637 80464
+79638 49777
+79639 55910
+79639 70152
+79640 28268
+79641 26591
+79641 51385
+79642 74789
+79643 61228
+79644 47665
+79645 33272
+79646 79701
+79647 80902
+79648 73728
+79649 71726
+79650 79818
+79651 28536
+79652 41054
+79653 30476
+79654 25119
+79655 36942
+79656 5168
+79657 80926
+79658 69136
+79659 80276
+79660 79657
+79661 52260
+79662 79647
+79663 30535
+79664 9504
+79665 43882
+79666 19181
+79667 79657
+79668 79467
+79669 64652
+79670 38533
+79671 36220
+79672 53774
+79673 54972
+79674 20895
+79675 37737
+79676 37737
+79677 37737
+79678 37737
+79679 60202
+79680 33637
+79681 64016
+79682 70112
+79683 61228
+79684 29240
+79685 29760
+79686 79259
+79687 37578
+79688 9840
+79689 16753
+79690 36304
+79691 80935
+79692 46416
+79693 49777
+79694 23949
+79695 54359
+79696 76945
+79697 26044
+79697 53295
+79698 41106
+79699 39532
+79700 42999
+79701 59976
+79702 58447
+79703 56111
+79704 30604
+79705 79766
+79706 79766
+79707 79802
+79708 79274
+79709 24196
+79710 79752
+79711 25488
+79712 25599
+79713 34681
+79714 26649
+79715 79719
+79716 27348
+79717 23739
+79718 2823
+79719 47761
+79720 28608
+79721 28981
+79722 48480
+79723 45604
+79724 29695
+79725 72390
+79726 18769
+79727 30861
+79728 79766
+79729 39195
+79730 31318
+79731 31841
+79732 31973
+79733 78582
+79734 33510
+79735 36942
+79736 23165
+79737 36925
+79738 34917
+79739 72605
+79740 62736
+79741 39598
+79742 62736
+79743 42002
+79744 32339
+79745 43745
+79745 44212
+79746 44320
+79747 41516
+79748 45311
+79749 18821
+79750 1815
+79751 47202
+79752 47406
+79752 75222
+79753 62736
+79754 47802
+79755 62950
+79756 47665
+79757 23165
+79758 43447
+79759 79003
+79760 51138
+79761 58685
+79761 62975
+79762 39557
+79763 43246
+79764 53129
+79765 79746
+79766 23165
+79767 53129
+79768 53508
+79769 53584
+79770 54308
+79771 55610
+79772 23165
+79773 12086
+79774 62120
+79775 79798
+79776 56385
+79777 79766
+79778 58565
+79779 41189
+79780 58576
+79781 79697
+79782 48813
+79783 54804
+79784 23165
+79785 62453
+79786 54804
+79787 62841
+79788 23850
+79789 64636
+79790 41842
+79791 67490
+79792 67203
+79793 34027
+79793 77232
+79794 79719
+79795 23165
+79796 70405
+79797 70940
+79798 32524
+79799 71709
+79800 72128
+79801 23165
+79802 23856
+79803 23165
+79804 23165
+79805 79719
+79806 68728
+79807 12978
+79808 66736
+79809 35875
+79810 78719
+79811 78779
+79812 41516
+79813 41842
+79814 79454
+79815 52935
+79816 37892
+79817 22691
+79818 59993
+79819 79701
+79820 61858
+79821 59994
+79822 59990
+79823 30536
+79824 79900
+79825 34698
+79826 34897
+79827 34898
+79828 22110
+79829 73439
+79830 41382
+79831 23162
+79832 31493
+79833 52435
+79834 76096
+79835 80116
+79836 33637
+79837 79724
+79838 62438
+79839 47665
+79840 11482
+79841 38737
+79842 55333
+79843 55332
+79844 61091
+79845 63374
+79846 41054
+79847 64306
+79848 32082
+79849 24770
+79850 70991
+79851 76848
+79852 33310
+79853 27019
+79854 23165
+79855 80150
+79856 80150
+79857 29602
+79858 80904
+79859 80918
+79860 43420
+79861 28249
+79862 55132
+79863 872
+79864 37160
+79865 19638
+79866 64196
+79867 74528
+79868 65008
+79869 43539
+79870 68817
+79871 69698
+79872 33306
+79873 37756
+79874 59418
+79875 32909
+79876 4709
+79877 78258
+79878 23772
+79879 52727
+79880 53276
+79881 3749
+79882 32734
+79883 43550
+79884 25618
+79885 68601
+79886 2911
+79887 41511
+79888 60202
+79889 48644
+79890 21573
+79891 64979
+79892 23070
+79893 49659
+79894 54438
+79895 59505
+79896 39246
+79897 21375
+79898 51107
+79899 33273
+79900 23560
+79901 37756
+79902 31103
+79903 29981
+79904 60466
+79905 19547
+79906 77299
+79907 77289
+79908 2911
+79909 33581
+79910 66789
+79911 39180
+79912 50293
+79913 52817
+79914 21403
+79915 70111
+79916 36222
+79917 68266
+79918 69114
+79919 39540
+79920 64215
+79921 24482
+79922 63545
+79923 34479
+79924 42041
+79925 20550
+79926 54977
+79927 64214
+79928 23345
+79929 55910
+79929 69471
+79930 62597
+79931 36879
+79932 20895
+79933 78563
+79934 57183
+79935 64977
+79936 23864
+79937 21114
+79938 78457
+79939 64087
+79940 54617
+79941 65279
+79942 68475
+79943 79002
+79944 71202
+79945 78700
+79946 24962
+79947 54525
+79948 55606
+79949 36791
+79950 34705
+79951 59505
+79952 46902
+79953 58614
+79954 77269
+79955 41054
+79956 55351
+79957 56236
+79958 68177
+79959 37069
+79960 37959
+79961 50105
+79962 26168
+79963 79953
+79964 75262
+79965 41054
+79966 31931
+79967 37207
+79968 22523
+79969 75505
+79970 3503
+79971 52170
+79972 30337
+79973 60532
+79974 22594
+79975 28845
+79976 5168
+79977 7741
+79978 63988
+79979 35844
+79980 40877
+79981 63653
+79982 65897
+79983 24725
+79984 77435
+79985 47483
+79986 50658
+79987 49609
+79988 35522
+79989 70219
+79990 76444
+79991 33492
+79992 78776
+79993 24723
+79994 41382
+79995 46882
+79996 44193
+79997 61228
+79998 61228
+79999 80916
+80000 79997
+80001 35946
+80002 61228
+80003 48188
+80004 66733
+80005 78613
+80006 24509
+80007 69686
+80008 35844
+80009 56844
+80010 68080
+80011 25540
+80012 53821
+80013 72732
+80014 28032
+80015 80526
+80016 25599
+80017 2911
+80018 68597
+80019 58838
+80020 61686
+80021 72614
+80022 49459
+80023 23560
+80024 59233
+80025 78307
+80026 32229
+80027 27031
+80028 27031
+80029 23846
+80030 35765
+80031 41631
+80032 65435
+80033 45736
+80034 20626
+80035 46153
+80036 80159
+80037 32709
+80038 34705
+80039 54846
+80040 23917
+80041 23703
+80042 29762
+80043 73103
+80044 80902
+80045 40629
+80046 79003
+80047 69905
+80048 32977
+80049 46153
+80050 77763
+80051 67036
+80052 25616
+80053 33581
+80054 69145
+80055 76138
+80056 80025
+80057 2554
+80058 81028
+80059 45294
+80060 46593
+80061 21181
+80062 57315
+80063 32987
+80064 32987
+80065 32987
+80066 70491
+80067 32987
+80068 80542
+80069 53662
+80070 26442
+80071 26628
+80072 28621
+80073 30982
+80074 31116
+80075 34006
+80076 77362
+80078 47594
+80079 48113
+80080 51874
+80081 52107
+80082 45723
+80083 52139
+80084 43631
+80085 42214
+80086 78999
+80087 62736
+80088 63026
+80089 22099
+80090 68177
+80091 2911
+80092 68566
+80093 71004
+80094 72106
+80095 75199
+80096 77702
+80097 42747
+80098 80147
+80099 80199
+80100 80310
+80101 61444
+80102 36569
+80103 33442
+80104 76037
+80105 24839
+80106 79361
+80107 38453
+80108 42863
+80109 57388
+80110 44193
+80111 70018
+80112 10248
+80113 33273
+80114 30770
+80115 80943
+80116 30524
+80117 71941
+80118 76085
+80119 26777
+80120 22226
+80121 22529
+80122 69976
+80123 66531
+80124 69061
+80125 48365
+80126 16588
+80127 70152
+80128 46525
+80129 26371
+80130 71461
+80131 28074
+80132 41547
+80133 65861
+80134 30315
+80135 30316
+80136 45825
+80137 42403
+80138 42729
+80139 43919
+80140 58406
+80141 45438
+80142 67970
+80143 47240
+80144 76269
+80145 45830
+80146 32347
+80147 7577
+80148 57720
+80149 49795
+80150 54104
+80151 43105
+80152 47531
+80153 48074
+80154 23691
+80155 46544
+80156 18616
+80157 37756
+80158 30424
+80159 33637
+80159 78826
+80160 55154
+80161 27765
+80162 68727
+80163 74893
+80164 69125
+80165 69178
+80166 53539
+80167 55124
+80168 24913
+80169 37296
+80170 17636
+80171 69729
+80172 35741
+80173 52532
+80174 73811
+80175 25257
+80176 35055
+80177 33017
+80178 13458
+80179 78364
+80180 15784
+80181 50196
+80182 52581
+80183 17849
+80184 42593
+80185 23002
+80186 23177
+80187 32524
+80188 34018
+80189 41054
+80190 50036
+80191 76832
+80192 23739
+80193 46184
+80194 73432
+80195 34792
+80196 14920
+80197 76790
+80198 45515
+80199 75533
+80200 36740
+80201 55168
+80202 25599
+80203 35433
+80204 80593
+80205 56268
+80206 28031
+80207 41667
+80208 46686
+80209 53315
+80210 27348
+80211 51138
+80212 38528
+80213 38528
+80214 71984
+80215 17385
+80216 29044
+80217 38079
+80218 29483
+80219 60532
+80220 60531
+80221 71941
+80222 70578
+80223 20831
+80223 70597
+80224 31405
+80225 49948
+80226 20829
+80227 65451
+80228 57108
+80229 77839
+80230 81281
+80231 58546
+80232 61423
+80233 47851
+80234 12975
+80235 80815
+80236 73396
+80237 67483
+80238 60870
+80239 80514
+80240 28597
+80241 50876
+80242 51613
+80243 12975
+80244 42747
+80245 58567
+80246 21713
+80247 23626
+80248 24756
+80249 66629
+80250 27679
+80251 28032
+80252 28129
+80253 28845
+80254 36057
+80255 31087
+80256 31971
+80257 34750
+80258 34990
+80259 35425
+80260 35650
+80261 36004
+80262 52819
+80263 38026
+80264 73043
+80265 63164
+80266 8963
+80267 41256
+80268 74861
+80269 70688
+80270 42392
+80271 43615
+80272 43622
+80273 43844
+80274 45367
+80275 21894
+80276 48142
+80277 38700
+80278 47381
+80279 47407
+80280 48265
+80281 8575
+80282 32955
+80283 61858
+80284 52460
+80285 65676
+80286 10620
+80287 66233
+80288 53985
+80289 54185
+80290 58984
+80291 54433
+80292 11311
+80292 3531
+80293 38869
+80294 18616
+80295 18616
+80296 54750
+80297 57798
+80298 21894
+80299 55933
+80300 40500
+80301 56963
+80302 56973
+80303 56975
+80304 57175
+80305 37749
+80306 58576
+80307 61568
+80308 60949
+80309 61094
+80310 61961
+80311 61962
+80312 63018
+80313 23772
+80314 67051
+80315 15690
+80316 47665
+80317 43844
+80318 68184
+80319 68508
+80320 69391
+80321 69642
+80322 64297
+80323 71107
+80324 71190
+80325 47665
+80326 71442
+80327 72732
+80328 80282
+80329 73576
+80330 73836
+80331 74514
+80332 65255
+80333 55320
+80334 27448
+80335 3531
+80336 77908
+80337 42904
+80338 80526
+80339 80595
+80340 19939
+80341 3531
+80341 80778
+80342 80802
+80343 81132
+80344 58930
+80345 47738
+80346 81305
+80347 80310
+80348 19636
+80349 35373
+80350 14994
+80351 31977
+80352 69125
+80353 43565
+80354 43010
+80354 71676
+80355 48230
+80356 24411
+80357 33051
+80358 17161
+80359 63437
+80360 71382
+80361 66688
+80362 36290
+80363 79646
+80364 31696
+80365 3531
+80366 68266
+80367 68266
+80368 61147
+80369 68804
+80370 43943
+80371 38340
+80372 46325
+80373 10770
+80374 71941
+80375 70068
+80376 24762
+80377 33186
+80378 75465
+80379 26695
+80380 43990
+80381 52930
+80382 12078
+80383 58369
+80384 66820
+80385 40017
+80386 71475
+80387 80525
+80388 45676
+80389 54732
+80390 64979
+80391 3076
+80392 66956
+80393 4728
+80394 74670
+80395 49876
+80395 66801
+80396 28241
+80397 41332
+80398 23772
+80399 29421
+80400 53754
+80401 55933
+80402 46280
+80403 79951
+80404 34018
+80405 19954
+80406 80903
+80407 25127
+80408 34929
+80409 44299
+80410 34932
+80411 10792
+80412 29012
+80413 33145
+80414 68952
+80415 34021
+80416 21624
+80417 64809
+80418 27698
+80419 38721
+80420 80778
+80421 60828
+80422 53725
+80423 11311
+80424 76475
+80425 54706
+80426 33895
+80427 37428
+80428 54966
+80428 80778
+80429 46713
+80430 30929
+80431 56748
+80432 42594
+80433 49777
+80434 52143
+80435 53750
+80436 54359
+80437 10792
+80438 73104
+80439 64787
+80440 71566
+80441 22442
+80442 23686
+80443 47665
+80444 40276
+80445 35144
+80446 54804
+80447 41122
+80448 62443
+80449 80514
+80450 47665
+80451 43703
+80452 30815
+80453 2911
+80454 34348
+80455 34660
+80456 29144
+80457 38721
+80458 18616
+80459 21855
+80460 34724
+80461 47665
+80462 45503
+80463 54438
+80464 48405
+80465 28993
+80466 48810
+80467 21855
+80468 25526
+80469 47665
+80470 55925
+80471 80673
+80472 80673
+80473 74119
+80474 25526
+80475 63831
+80476 43718
+80477 58591
+80478 58951
+80479 21855
+80480 19415
+80481 78120
+80482 60458
+80482 79992
+80483 52587
+80484 2911
+80485 70620
+80486 36458
+80487 62546
+80488 79125
+80489 66116
+80490 58591
+80491 30315
+80492 30316
+80493 2911
+80494 7577
+80495 68127
+80496 74119
+80497 47665
+80498 69754
+80499 27434
+80500 7645
+80501 72747
+80502 73705
+80503 18616
+80504 75487
+80505 76305
+80506 47665
+80507 80134
+80508 79125
+80509 58894
+80510 29885
+80511 73802
+80512 58901
+80513 33380
+80514 22467
+80514 80516
+80515 26158
+80516 62290
+80517 65527
+80518 52915
+80519 78383
+80520 50481
+80521 21523
+80522 41327
+80523 75365
+80524 39184
+80525 37701
+80526 18616
+80527 75910
+80528 23772
+80529 58576
+80530 47665
+80531 3925
+80532 62296
+80533 79916
+80534 47262
+80535 77598
+80536 42043
+80537 41096
+80538 51170
+80539 41054
+80540 42458
+80541 52958
+80542 79936
+80543 49943
+80544 40719
+80545 50200
+80546 36208
+80547 63400
+80548 32339
+80549 22009
+80550 63026
+80551 79940
+80552 78700
+80553 33581
+80554 77864
+80555 38370
+80556 37038
+80557 40871
+80558 25738
+80559 47457
+80560 40309
+80561 80926
+80562 55154
+80563 39191
+80564 57812
+80565 68149
+80566 12086
+80567 44428
+80568 43420
+80569 59151
+80570 60130
+80571 44130
+80572 61228
+80573 60128
+80574 59151
+80575 37689
+80576 79647
+80577 26617
+80578 27485
+80579 31675
+80580 34705
+80581 36210
+80582 40052
+80583 43420
+80584 59847
+80585 68954
+80586 2071
+80587 80577
+80588 79657
+80589 52532
+80590 70661
+80591 68954
+80592 55154
+80593 73578
+80594 37401
+80595 21700
+80596 35856
+80597 81178
+80598 24839
+80599 27348
+80600 28154
+80601 24994
+80602 68137
+80603 68508
+80604 68309
+80605 44315
+80606 20768
+80607 65609
+80608 45311
+80609 47483
+80610 34695
+80611 63689
+80612 37772
+80613 70991
+80614 59369
+80615 21610
+80616 72891
+80617 21589
+80618 48046
+80619 47546
+80620 80614
+80621 39060
+80622 32642
+80623 53476
+80624 58543
+80625 13286
+80626 70256
+80627 70219
+80628 76644
+80629 24351
+80630 24356
+80631 39598
+80632 22152
+80633 47665
+80634 72419
+80635 23846
+80636 61912
+80637 21398
+80638 50140
+80639 37758
+80640 37758
+80641 35140
+80642 41096
+80643 49777
+80644 44044
+80645 23282
+80646 74169
+80647 14925
+80648 67903
+80649 69636
+80650 23000
+80651 69180
+80652 24927
+80653 18616
+80654 47665
+80655 34898
+80656 80668
+80657 80669
+80658 35425
+80659 2911
+80660 40275
+80661 50924
+80662 57158
+80663 21375
+80664 8968
+80665 68543
+80666 68545
+80667 71817
+80668 72806
+80669 72807
+80670 2911
+80671 16312
+80672 19999
+80673 47665
+80674 42553
+80675 6470
+80676 80926
+80677 33627
+80678 39404
+80679 52961
+80680 33306
+80681 42108
+80682 43387
+80683 48784
+80684 41054
+80685 39181
+80686 44320
+80687 45310
+80688 38182
+80688 49376
+80689 54222
+80690 46882
+80691 75804
+80692 75539
+80693 53528
+80694 70974
+80695 32909
+80696 55503
+80697 52143
+80698 52436
+80699 31404
+80700 54609
+80701 68724
+80702 33662
+80703 77112
+80704 51708
+80705 46211
+80706 78478
+80707 36802
+80708 66687
+80709 63569
+80710 25854
+80711 53328
+80712 43872
+80713 41327
+80714 53706
+80715 29240
+80716 77789
+80717 71304
+80718 28363
+80719 42676
+80720 79125
+80721 53706
+80722 49282
+80723 46975
+80724 76847
+80725 54192
+80726 39598
+80727 2911
+80728 23071
+80729 57645
+80730 23762
+80731 77789
+80732 50965
+80733 60150
+80734 63418
+80735 66902
+80736 66538
+80737 36637
+80738 33226
+80739 74893
+80740 24082
+80741 49783
+80742 38634
+80743 33670
+80744 64694
+80745 36675
+80746 24728
+80747 27624
+80748 27021
+80749 49777
+80750 66839
+80751 36242
+80752 49622
+80753 51351
+80754 21213
+80755 75859
+80756 70607
+80757 49777
+80758 27493
+80759 35280
+80760 38901
+80761 47665
+80762 56749
+80763 76080
+80764 56845
+80765 61326
+80766 13899
+80767 34479
+80768 80475
+80769 42582
+80770 59905
+80771 19939
+80771 81306
+80772 72360
+80773 48559
+80774 56022
+80775 20821
+80776 56022
+80777 57183
+80778 21169
+80778 41603
+80779 31608
+80780 41603
+80781 31939
+80782 21185
+80783 14919
+80784 11311
+80784 52839
+80785 61086
+80786 41616
+80787 54810
+80788 27205
+80789 38795
+80790 71973
+80791 46965
+80792 11311
+80793 80778
+80794 50260
+80795 21127
+80796 5752
+80797 49284
+80798 77693
+80799 22420
+80800 22420
+80801 22663
+80802 23772
+80803 31024
+80804 80805
+80805 38721
+80806 41666
+80807 45826
+80808 33989
+80809 48469
+80810 49088
+80811 73576
+80812 53059
+80813 55103
+80814 47665
+80815 56850
+80816 57821
+80817 64619
+80818 33327
+80819 67490
+80820 45097
+80821 72747
+80822 29430
+80823 59505
+80824 57529
+80825 76269
+80826 47010
+80827 79221
+80828 13471
+80829 48265
+80830 50569
+80831 29733
+80832 70291
+80833 40805
+80834 34698
+80835 39932
+80836 39933
+80837 50841
+80838 27197
+80839 72578
+80839 80841
+80840 24243
+80841 79609
+80842 78067
+80843 64979
+80844 29574
+80845 59809
+80846 42747
+80847 50782
+80848 61740
+80849 21417
+80850 74119
+80851 68972
+80852 70015
+80853 41666
+80854 67973
+80855 34705
+80856 28032
+80857 29980
+80858 80903
+80859 80970
+80860 78776
+80861 17386
+80862 41054
+80863 22522
+80864 69338
+80865 22529
+80866 37802
+80867 45798
+80868 38454
+80869 21051
+80870 80871
+80871 22932
+80872 80871
+80873 3503
+80874 80873
+80875 80514
+80876 52633
+80877 54472
+80878 12970
+80879 67051
+80880 80514
+80881 62567
+80882 53270
+80883 52051
+80884 73125
+80885 59327
+80886 33143
+80887 81056
+80888 76052
+80889 60422
+80890 59330
+80891 29278
+80892 35900
+80893 23069
+80894 49618
+80895 20617
+80896 66234
+80897 81056
+80898 52038
+80899 52037
+80900 65632
+80901 81056
+80902 20955
+80903 64025
+80904 45055
+80905 39898
+80906 31939
+80907 36527
+80908 70189
+80908 80958
+80909 39209
+80910 22517
+80911 21196
+80912 80903
+80913 23482
+80914 71851
+80915 74527
+80916 61228
+80917 51036
+80918 78307
+80919 33124
+80920 33125
+80921 33637
+80922 26920
+80923 27202
+80924 80001
+80925 5169
+80926 49777
+80927 50105
+80928 80927
+80929 54100
+80930 48405
+80931 62996
+80932 50901
+80933 40629
+80934 21487
+80935 37975
+80936 12150
+80936 80926
+80937 78309
+80938 55367
+80939 65965
+80940 50198
+80941 66375
+80942 39732
+80943 39724
+80944 80926
+80945 32999
+80946 80903
+80947 67573
+80948 20955
+80949 55168
+80950 34387
+80951 64089
+80952 70042
+80953 81075
+80954 31610
+80955 72076
+80956 37211
+80957 75003
+80958 22990
+80959 60465
+80960 55307
+80961 21282
+80962 34387
+80963 21783
+80964 61185
+80965 65967
+80966 79573
+80967 59656
+80968 49777
+80969 64214
+80970 50569
+80971 54415
+80972 68972
+80973 41299
+80974 65437
+80975 61147
+80976 44347
+80977 44496
+80978 53457
+80979 44347
+80980 27028
+80981 43298
+80982 48095
+80983 79992
+80984 74119
+80985 40393
+80986 80984
+80987 72555
+80988 21455
+80989 24475
+80990 30524
+80991 20955
+80992 21128
+80993 66850
+80994 40583
+80995 23933
+80996 41054
+80997 76178
+80998 47665
+80999 54451
+81000 45665
+81001 64979
+81002 50535
+81003 19993
+81004 49461
+81005 37786
+81006 35770
+81007 77826
+81008 61086
+81009 81071
+81010 69199
+81011 36082
+81012 31835
+81013 68381
+81014 34590
+81015 44193
+81016 60202
+81017 61147
+81018 6992
+81019 36185
+81020 70152
+81021 60464
+81022 50841
+81023 76586
+81024 13471
+81025 46882
+81026 64601
+81027 73909
+81028 32567
+81029 33632
+81030 31606
+81031 54936
+81032 54941
+81033 67270
+81034 66661
+81035 37515
+81036 49900
+81037 31929
+81038 37167
+81039 55629
+81040 45350
+81041 64317
+81042 61936
+81043 24723
+81044 24723
+81045 76338
+81046 50198
+81047 81046
+81048 81046
+81049 81046
+81050 81046
+81051 81046
+81052 29043
+81053 24668
+81054 36679
+81055 29090
+81056 32909
+81057 53352
+81058 26670
+81059 34712
+81060 57372
+81061 81074
+81062 58809
+81062 81074
+81063 81074
+81064 20955
+81065 23348
+81066 80915
+81067 29760
+81068 36806
+81069 49441
+81070 50041
+81071 60202
+81072 21487
+81072 50198
+81073 23733
+81074 32900
+81075 65965
+81076 74860
+81077 80883
+81078 50040
+81079 59178
+81080 24486
+81081 5190
+81082 49333
+81083 50657
+81084 26597
+81085 80848
+81086 56022
+81087 38383
+81088 33922
+81089 68239
+81090 81093
+81091 20792
+81092 59385
+81093 70995
+81094 81093
+81095 81093
+81096 40498
+81097 29616
+81098 79254
+81099 70995
+81100 15784
+81101 30774
+81101 58134
+81102 71601
+81103 56022
+81104 77237
+81105 42747
+81106 49147
+81107 81106
+81108 59958
+81109 61624
+81110 38703
+81111 65363
+81112 38703
+81113 52727
+81114 27155
+81115 78780
+81116 71830
+81117 61158
+81118 2911
+81119 33922
+81120 33442
+81121 79002
+81122 42946
+81123 10789
+81124 34917
+81125 37408
+81126 59794
+81127 12078
+81128 28614
+81129 44118
+81130 59401
+81131 18769
+81132 79125
+81133 74745
+81134 67598
+81135 79125
+81136 79125
+81137 63859
+81138 64601
+81139 60357
+81140 60357
+81141 39789
+81142 72133
+81143 60357
+81144 65996
+81145 55448
+81146 53135
+81147 54712
+81148 37756
+81149 39808
+81150 53182
+81151 80541
+81152 44118
+81153 77111
+81154 50841
+81155 37666
+81155 77111
+81156 34972
+81157 67873
+81158 71027
+81159 20778
+81160 47245
+81161 51655
+81162 8486
+81163 23591
+81164 71291
+81165 49777
+81166 49876
+81167 21311
+81168 61228
+81169 61228
+81170 61228
+81171 39809
+81172 21384
+81173 81168
+81174 27202
+81175 65234
+81176 62207
+81177 52479
+81178 43844
+81179 81177
+81180 3076
+81181 31224
+81182 68431
+81183 37100
+81184 28397
+81185 12966
+81186 58009
+81187 51808
+81188 54804
+81189 56699
+81190 21746
+81191 33442
+81192 42603
+81193 54813
+81194 38026
+81195 24196
+81196 24196
+81197 69719
+81198 25526
+81199 47665
+81200 48727
+81201 26152
+81202 43390
+81203 33073
+81204 31813
+81205 32374
+81206 30095
+81207 62296
+81208 81207
+81209 37220
+81210 45164
+81211 45367
+81212 45511
+81213 46293
+81214 48265
+81215 48265
+81216 42393
+81217 49876
+81218 42392
+81219 50849
+81220 48385
+81221 79125
+81222 51878
+81223 73559
+81224 53754
+81225 53985
+81226 11311
+81226 13623
+81227 54703
+81228 54781
+81229 68566
+81230 58758
+81231 2911
+81232 61568
+81233 61141
+81234 55377
+81235 53754
+81236 61961
+81237 61962
+81238 79992
+81239 80514
+81240 68352
+81241 45614
+81242 62296
+81243 43844
+81244 74310
+81245 74311
+81246 55320
+81247 71442
+81248 12978
+81249 79766
+81250 13623
+81250 80778
+81251 54760
+81252 33086
+81253 77832
+81254 34990
+81255 56375
+81256 28397
+81257 68378
+81258 71445
+81259 50849
+81260 42727
+81261 67245
+81262 12978
+81263 19954
+81264 18616
+81265 9366
+81266 70404
+81267 45728
+81268 27032
+81269 43514
+81270 31608
+81271 27033
+81272 47665
+81273 47665
+81274 2911
+81275 21311
+81276 50427
+81277 20581
+81278 5165
+81279 60603
+81280 19954
+81281 33442
+81282 63859
+81283 35197
+81284 73768
+81285 55037
+81286 62453
+81287 3076
+81288 70786
+81289 17029
+81290 52727
+81291 8399
+81292 40711
+81293 61539
+81294 35741
+81294 43000
+81295 41054
+81296 59232
+81297 59997
+81298 74490
+81299 68074
+81300 42999
+81301 68019
+81302 68019
+81303 20163
+81304 11311
+81304 21146
+81305 20163
+81305 42266
+81306 20163
+81307 21380
+81308 76475
+81309 55049
+81310 61228
+81311 81307
+81312 32250
+81312 74029
+81313 44110
+81314 4840
+81315 81312
+81316 55563
+81317 2911
+81318 64051
+81319 38102
+81320 33922
+81321 17849
+81322 20210
+81323 30628
+81323 61896
+81324 35595
+81325 31977
+81326 40561
+81327 39421
+81328 48080
+81329 52727
+81330 23279
+81331 29616
+81332 40229
+81333 49234
+81334 45952
+81335 43566
+81336 28856
+81337 19954
+81338 18616
+81339 2592
+81340 30145
+81341 56022
+81341 79799
+81342 58510
+81343 30353
+81344 44055
+81345 62790
+81346 2437
+81346 81343
+81347 48564
+81348 50470
+81349 52299
+81350 52727
+81351 41922
+81352 58461
+81353 75637
+81354 22501
+81355 45617
+81356 35634
+81357 55563
+81358 56022
+81359 28807
+81360 36336
+81361 24678
+81362 59819
+81363 74271
+81364 61858
+81365 71941
+81366 32661
+81367 56022
+81368 55694
+81369 62110
+81370 56022
+81371 55563
+81372 59819
+81373 73830
+81374 60612
+81375 71941
+81376 57400
+81377 14784
+81378 36472
+81379 60462
+81380 37014
+81381 66253
+81382 72464
+81383 7410
+81384 36007
+81385 47880
+81386 81390
+81387 45056
+81388 45056
+81389 60462
+81390 73907
+81391 23576
+81392 66324
+81393 37914
+81394 26919
+81395 32689
+81396 81390
+81397 35486
+81398 25634
+81399 80991
+81400 26100
+81401 26101
+81402 42407
+81403 23976
+81404 22519
+81405 60328
+81406 70760
+81407 50569
+81408 22517
+81409 79251
+81410 72589
+81411 74251
+81412 56958
+81413 7577
+81414 54782
+81415 74311
+81416 76600
+81417 34485
+81418 26168
+81419 27155
+81420 23016
+81421 72589
+81422 30157
+81423 61477
+81424 40069
+81425 49872
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph1.txt b/Algorithms/Part-II/1-WordNet/data/digraph1.txt
new file mode 100644
index 0000000..18d5922
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph1.txt
@@ -0,0 +1,13 @@
+13
+11
+ 7 3
+ 8 3
+ 3 1
+ 4 1
+ 5 1
+ 9 5
+10 5
+11 10
+12 10
+ 1 0
+ 2 0
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph2.txt b/Algorithms/Part-II/1-WordNet/data/digraph2.txt
new file mode 100644
index 0000000..4081822
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph2.txt
@@ -0,0 +1,8 @@
+6
+6
+1 0
+1 2
+2 3
+3 4
+4 5
+5 0
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph3.txt b/Algorithms/Part-II/1-WordNet/data/digraph3.txt
new file mode 100644
index 0000000..aa61206
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph3.txt
@@ -0,0 +1,17 @@
+15
+15
+ 1 2
+ 2 3
+ 3 4
+ 4 5
+ 5 6
+ 6 1
+ 7 8
+ 8 9
+ 9 10
+10 11
+11 12
+12 8
+13 14
+14 0
+ 0 11
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph4.txt b/Algorithms/Part-II/1-WordNet/data/digraph4.txt
new file mode 100644
index 0000000..f8c3166
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph4.txt
@@ -0,0 +1,12 @@
+10
+10
+1 2
+1 7
+2 3
+3 4
+4 5
+5 6
+7 8
+9 0
+8 6
+0 8
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph5.txt b/Algorithms/Part-II/1-WordNet/data/digraph5.txt
new file mode 100644
index 0000000..fa9d1bc
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph5.txt
@@ -0,0 +1,19 @@
+22
+17
+7 8
+8 9
+8 14
+9 10
+11 12
+12 13
+12 19
+13 10
+14 15
+15 16
+16 17
+17 18
+18 12
+19 20
+20 21
+21 0
+0 9
diff --git a/Algorithms/Part-II/1-WordNet/data/digraph6.txt b/Algorithms/Part-II/1-WordNet/data/digraph6.txt
new file mode 100644
index 0000000..e6c423e
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/digraph6.txt
@@ -0,0 +1,10 @@
+8
+8
+0 1
+1 2
+2 3
+3 4
+5 6
+6 7
+7 3
+5 4
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms.txt
new file mode 100644
index 0000000..618a714
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms.txt
@@ -0,0 +1,82192 @@
+0,79541
+1,34093
+2,75958
+3,34093
+4,34093
+5,34093
+6,34093
+7,34093
+8,20120
+9,34093
+10,34093
+11,34093
+12,34093
+13,34093
+14,34093
+15,34093
+16,20120
+17,43603
+18,78883
+19,59938
+20,75956
+21,51068
+22,24828
+23,48597
+24,71451
+25,81463
+26,51677
+27,71611
+28,75566
+29,24828
+30,20978
+31,29653
+32,21013
+33,69388
+34,47569,48084
+35,19983
+36,42338
+37,53717
+38,28591
+39,28597
+40,76057
+41,70206
+42,18793
+43,23428
+44,43858
+45,29509
+46,29509,62089
+47,77192
+48,21444
+49,66703
+50,62852
+51,22850
+52,8652
+53,29509,62089
+54,31233
+55,68796
+56,52904
+57,53480
+58,60448,76134
+59,44438
+60,35243
+61,77192
+62,77192,62095
+63,77192
+64,77192
+65,29509
+66,23693
+67,29509
+68,44703
+69,29509
+70,77192
+71,3798
+72,72961
+73,3797
+74,3799
+75,497
+76,496
+77,74600
+78,1512,38439
+79,59565
+80,7420
+81,40303
+82,52887
+83,27763
+84,8409
+85,21770
+86,56119
+87,75958
+88,75958
+89,40303
+90,56119
+91,23471
+92,35243
+93,77192
+94,36047
+95,45813
+96,22420
+97,18882
+98,18882
+99,35787
+100,56127
+101,6268
+102,67039
+103,21962
+104,24325
+105,60592
+106,27763
+107,40303
+108,65960
+109,20756
+110,21720
+111,40299
+112,40303
+113,29509,62089
+114,27201
+115,21719
+116,20756
+117,24325
+118,24321
+119,24331
+120,56119
+121,35097
+122,35096
+123,65581
+124,6945
+125,29489
+126,66703
+127,21720
+128,72990
+129,48024
+130,21720
+131,55951
+132,80494
+133,75806
+134,40303
+135,7734
+136,30900
+137,15430
+138,35097
+139,52887
+140,21963
+141,40303
+142,40299
+143,29621
+144,35097
+145,55423
+146,52660
+147,55080
+148,55081
+149,29621
+150,35787
+151,77192,62089
+152,21719
+153,24325
+154,20426
+155,52887
+156,67039
+157,24325
+158,21963
+159,55081
+160,30218
+161,39679
+162,52660
+163,21720
+164,21012,56099
+165,30218
+166,20756
+167,35243
+168,35242
+169,39679
+170,21963
+171,22642
+172,20756
+173,20756
+174,29621
+175,24325
+176,77192
+177,56219
+178,25303
+179,15311
+180,21720
+181,52904
+182,21444
+183,54168
+184,55423
+185,82070
+186,13746
+187,13746
+188,55423
+189,617
+190,29509
+191,35243
+192,15311
+193,75510
+194,8652
+195,56119
+196,43355
+197,25303
+198,72966
+199,21720
+200,21719
+201,59891
+202,43104
+203,29509,62089
+204,67039
+205,72990
+206,35097
+207,52887
+208,67462
+209,39678
+210,39679
+211,66703
+212,64747
+213,7658
+214,7658
+215,35243
+216,48957
+217,21443
+218,64747
+219,33928
+220,79419
+221,33711
+222,52660
+223,60620
+224,68544
+225,19649
+226,68678
+227,3701
+228,3705
+229,3695
+230,72961
+231,21720
+232,56219
+233,68544
+234,33327
+235,48957
+236,21963
+237,55081
+238,49182
+239,235
+240,55951
+241,26082
+242,56219
+243,79942
+244,24325
+245,46385
+246,55951
+247,38091
+248,29489
+249,6945
+250,794
+251,68668
+252,6952
+253,61254
+254,52887
+255,24321
+256,20756
+257,22643
+258,22645
+259,39049
+260,36381
+261,6941
+262,35097
+263,12045
+264,39054
+265,39048
+266,6952
+267,35243
+268,67039
+269,40303
+270,76330
+271,1319
+272,46760
+273,55022
+274,1324
+275,61254
+276,31656
+277,60216
+278,608
+279,67849
+280,28486
+281,76958
+282,31976
+283,32456
+284,32988
+285,40752
+286,40752
+287,40752
+288,37532
+289,59286
+290,70033
+291,56701
+292,81095
+293,19623
+294,52675
+295,53150
+296,55051
+297,57617
+298,52675
+299,40752
+300,77641
+301,81080
+302,28028
+303,46431
+304,5190
+305,15816
+306,44816
+307,44826
+308,56171
+309,44703
+310,76782
+311,21963
+312,55951
+313,65959
+314,24325
+315,41878
+316,41882
+317,41879
+318,56189
+319,21963
+320,44703
+321,51396
+322,19634
+323,27763,29780
+324,14307
+325,57109
+326,24325
+327,45826
+328,21963
+329,7657
+330,61086
+331,65960
+332,6867
+333,39679
+334,55081
+335,29621
+336,7658
+337,62512
+338,37623
+339,40299
+340,40303
+341,29509
+342,42436
+343,77192
+344,24325
+345,72990
+346,14489
+347,14489
+348,22643
+349,22645
+350,55081
+351,27763
+352,61254
+353,49817
+354,13088
+355,11277
+356,7658
+357,81781
+358,29197
+359,52887
+360,52886
+361,52887
+362,30618
+363,19796
+364,19649
+365,19649
+366,30618
+367,34198
+368,11668
+369,66703
+370,75942
+371,24325
+372,27762
+373,24325
+374,55951
+375,21963
+376,9215
+377,54979
+378,65764
+379,49817
+380,15310
+381,29509
+382,75958
+383,7734
+384,30900
+385,18520
+386,65763
+387,29509
+388,29509,62089
+389,75958
+390,11476
+391,11475
+392,66703
+393,702,15812
+394,603
+395,39803
+396,50273
+397,70166,70759
+398,21443
+399,28774
+400,49817
+401,702
+402,409
+403,59903
+404,64747
+405,29553
+406,41903
+407,32645
+408,65663
+409,603
+410,26122
+411,61009
+412,24325
+413,24321
+414,1704
+415,5765
+416,8209
+417,55022
+418,77192
+419,72966
+420,41879
+421,61902
+422,61902
+423,36381
+424,18844
+425,62918
+426,2947
+427,21444,58798
+428,68796
+429,3705,45839
+430,5483,6917
+431,39797
+432,41878
+433,41879
+434,40303
+435,40299
+436,29509
+437,24325
+438,61622,9640
+439,61621
+440,35243
+441,24321
+442,24325
+443,52887
+444,52887
+445,42436,72990,1417
+446,24321
+447,56917
+448,57109
+449,20756
+450,20756
+451,55951
+452,24199
+453,35097
+454,40303
+455,6378
+456,41879
+457,24325
+458,24325
+459,40303
+460,51397
+461,35492
+462,67039
+463,30900
+464,5666
+465,724
+466,21443
+467,75958
+468,31457
+469,45813
+470,21443
+471,33688
+472,33688
+473,33688
+474,62015
+475,77192
+476,29509,62089
+477,69102
+478,66040
+479,61991
+480,51502
+481,21720
+482,21719
+483,49817
+484,81781
+485,283
+486,277
+487,28262
+488,489
+489,55022
+490,52887
+491,46385
+492,56119,62089
+493,24199
+494,496
+495,497
+496,724
+497,723
+498,81781
+499,58815,41284
+500,53480,60611,21996
+501,26966
+502,63017
+503,39803,81525
+504,55081
+505,55080
+506,29621
+507,20889
+508,46304
+509,3701
+510,6766
+511,64747
+512,66703
+513,28862
+514,81129
+515,58690
+516,71493
+517,30586
+518,40012,19231
+519,68448
+520,81746
+521,29509
+522,68678
+523,51396
+524,35243
+525,45419
+526,45419
+527,20082
+528,20082
+529,65959
+530,27763
+531,51397
+532,29509
+533,1990
+534,20120
+535,44953
+536,51396
+537,33797,29197
+538,55081
+539,52887
+540,40299
+541,40303
+542,40303
+543,52887
+544,77192,62089
+545,24199
+546,72892
+547,20641
+548,49910
+549,28140
+550,37768
+551,70320
+552,43342
+553,50189
+554,55453
+555,81541
+556,61254
+557,55403
+558,64747
+559,6298
+560,48210
+561,21963
+562,21720
+563,43121
+564,35097
+565,51396
+566,64747
+567,1319
+568,17496
+569,24199
+570,27763
+571,77192
+572,35243
+573,20426
+574,62701
+575,3281
+576,41879
+577,27762
+578,27763
+579,29509
+580,51396
+581,8551
+582,79645
+583,79648
+584,39679
+585,55951
+586,66703
+587,70763
+588,24325
+589,21963
+590,40303
+591,65960
+592,24379,76134,31041,3754,67582,5012
+593,21962
+594,20426
+595,20425
+596,40299
+597,40303
+598,67039
+599,5350
+600,5350
+601,75510
+602,50296
+603,48210
+604,48210
+605,21938
+606,29555
+607,20310
+608,5485
+609,80394
+610,39553
+611,39553
+612,33928
+613,59380
+614,21938
+615,59380
+616,66341
+617,56133
+618,35787
+619,26387
+620,30188
+621,2080
+622,73341
+623,19634
+624,20087
+625,70033
+626,21396
+627,22671
+628,23054
+629,51462
+630,23689
+631,24385
+632,24428
+633,23559
+634,25132
+635,26281
+636,47455
+637,28862
+638,30147
+639,31902
+640,31916
+641,81079
+642,32704
+643,32766
+644,33094
+645,34959
+646,79640
+647,37279
+648,37344
+649,37582
+650,74067
+651,40411
+652,46444
+653,72680
+654,41047
+655,41398
+656,21361
+657,63898
+658,43148
+659,45813
+660,78024
+661,44758
+662,11863
+663,45346
+664,61705,46285
+665,46516
+666,46567
+667,74815
+668,50426
+669,51867
+670,78017
+671,52664
+672,52687
+673,53286
+674,53405
+675,53982
+676,54625
+677,59169
+678,54779
+679,55395
+680,57617
+681,41484
+682,51019
+683,59405
+684,60213
+685,66592
+686,46753
+687,21842
+688,65353
+689,33080
+690,37344
+691,81129
+692,77661
+693,40878
+694,66792
+695,67479
+696,70012
+697,71028
+698,71055
+699,71074
+700,74067
+701,72903
+702,72961
+703,61218
+704,78024
+705,57289
+706,78351
+707,80340
+708,80354
+709,80358
+710,80389
+711,24302
+712,80927
+713,80932
+714,81055
+715,81394
+716,81520
+717,43766
+718,21745
+719,41264
+720,59577
+721,33486
+722,21919
+723,56171
+724,60216,60218
+725,5692
+726,15310
+727,40303
+728,51397
+729,40299
+730,10848
+731,68796
+732,56119
+733,40303
+734,40299
+735,52887
+736,79432
+737,20756
+738,69693
+739,63327
+740,25303
+741,21720
+742,67039
+743,29621
+744,29190
+745,20756
+746,40303
+747,65960
+748,65959
+749,20425
+750,61254
+751,44276
+752,35097
+753,56119
+754,38828
+755,66703
+756,63005
+757,35096
+758,67039
+759,3281
+760,40299
+761,13818
+762,13815
+763,13817
+764,40303
+765,21720
+766,20756
+767,35096
+768,35097
+769,21963
+770,67039
+771,70033
+772,35097
+773,21720
+774,67039
+775,29509
+776,55081
+777,51160
+778,21963
+779,29621
+780,40299
+781,40303
+782,24325
+783,21720
+784,724
+785,20756
+786,35243
+787,24325
+788,24321
+789,8209
+790,60448
+791,60448,21996
+792,60448
+793,29509
+794,6946
+795,55423
+796,54979
+797,81683
+798,54980
+799,43104
+800,23471
+801,31267
+802,81781
+803,57140
+804,31713
+805,36381
+806,60611
+807,81781
+808,64747
+809,72961
+810,67039
+811,5777
+812,5765
+813,55304
+814,61258
+815,21719
+816,1016,67582
+817,56189
+818,21720
+819,55951
+820,31542
+821,72262
+822,55081
+823,43532
+824,20426
+825,39679
+826,52660
+827,35097
+828,67039
+829,66703
+830,18084
+831,80394
+832,62512
+833,6305
+834,29621
+835,5765
+836,48957
+837,5483
+838,12310
+839,13815
+840,3227
+841,13817
+842,13818
+843,41264
+844,33486
+845,21919
+846,603
+847,842
+848,6264
+849,31175
+850,5501
+851,5501
+852,5501
+853,34389
+854,37997
+855,19393
+856,35611
+857,283
+858,277
+859,55022
+860,858
+861,36047
+862,36050
+863,64383
+864,74625
+865,65959
+866,48957
+867,40303
+868,18091
+869,40299
+870,20756
+871,81687
+872,65960
+873,3281
+874,24325
+875,24321
+876,24321
+877,55081
+878,49833
+879,20756
+880,40303
+881,6298
+882,56119
+883,29509
+884,29509,62089
+885,72966
+886,55423
+887,14071
+888,60592
+889,65959
+890,52660
+891,52659
+892,20823
+893,64202
+894,47505
+895,21719
+896,54980
+897,55081
+898,39679
+899,65960
+900,21720
+901,40299
+902,54980
+903,54979
+904,21720
+905,20756
+906,20756
+907,36381
+908,75958
+909,21421,67582
+910,24325
+911,20756
+912,20756
+913,24321
+914,15311
+915,29509,62089
+916,56119
+917,6327
+918,61718
+919,57472
+920,59903
+921,31656
+922,24199
+923,37081
+924,37080
+925,21963
+926,40299
+927,21963
+928,21720
+929,51397
+930,21963
+931,21720
+932,29621
+933,55304
+934,55303
+935,61258
+936,21720
+937,74191
+938,29621
+939,67039
+940,20756
+941,24325
+942,67039
+943,59380
+944,19475
+945,21754
+946,52887
+947,55951
+948,40303
+949,42436,10160
+950,48957
+951,32456
+952,18091
+953,21443
+954,52887
+955,52886
+956,52887
+957,77192
+958,21963
+959,31542
+960,29509,62089
+961,64720
+962,14493
+963,14493
+964,42436
+965,52887
+966,15311
+967,29509,62089
+968,15311
+969,5350
+970,15311
+971,71493
+972,77192
+973,52887
+974,1411
+975,1412
+976,66703
+977,70033
+978,21720
+979,29509
+980,64747
+981,21882
+982,29621
+983,21719
+984,21719
+985,21720
+986,24325
+987,6952
+988,21720
+989,51396
+990,51397
+991,41882
+992,56119
+993,21719
+994,67039
+995,21720
+996,67039
+997,55081
+998,52887
+999,52886
+1000,54980
+1001,54979
+1002,67462
+1003,35096
+1004,35097
+1005,52887
+1006,24321
+1007,20756
+1008,40303
+1009,40299
+1010,21719
+1011,61622
+1012,6952
+1013,21968
+1014,71853
+1015,27763
+1016,3695,35474
+1017,3695
+1018,43104
+1019,603
+1020,64747
+1021,67479
+1022,15326
+1023,46059
+1024,77192
+1025,60611
+1026,65581
+1027,6984
+1028,33928
+1029,26647
+1030,62452
+1031,15311
+1032,24325
+1033,24321
+1034,20756
+1035,31542
+1036,24325
+1037,31542
+1038,70209
+1039,60216
+1040,35096
+1041,31542
+1042,29509
+1043,24325
+1044,76134,67582,5012
+1045,6298
+1046,31542
+1047,24325
+1048,15309
+1049,80106
+1050,80106
+1051,81669
+1052,67479
+1053,34746
+1054,34746
+1055,40974
+1056,59903
+1057,68544
+1058,27053
+1059,30230
+1060,49138
+1061,15310
+1062,20196,78659
+1063,57206
+1064,35243
+1065,32888
+1066,32888
+1067,35243
+1068,68230
+1069,55080
+1070,67039
+1071,29621
+1072,72990
+1073,68544
+1074,35787
+1075,81781
+1076,66703
+1077,61258
+1078,67038
+1079,16385
+1080,15310
+1081,68474
+1082,15309
+1083,24325
+1084,48957
+1085,21720
+1086,20756
+1087,17655
+1088,496,13420
+1089,497
+1090,55423
+1091,66703
+1092,66703
+1093,44702
+1094,35097
+1095,724
+1096,723
+1097,3281
+1098,33928
+1099,54980
+1100,43104
+1101,6945
+1102,794
+1103,63459
+1104,35243
+1105,29621
+1106,38059
+1107,56127
+1108,29621
+1109,52887
+1110,24325
+1111,46929
+1112,53480,60611
+1113,50604
+1114,40303
+1115,29621
+1116,54979
+1117,6327
+1118,21443
+1119,61718
+1120,57472
+1121,28585
+1122,41388
+1123,44407
+1124,52887
+1125,21719
+1126,21963
+1127,52887
+1128,52887
+1129,52887
+1130,35243
+1131,21963
+1132,43226
+1133,24325
+1134,24321
+1135,75078
+1136,35097
+1137,29621
+1138,27763
+1139,24325
+1140,21397
+1141,46148,60448
+1142,61254
+1143,53842
+1144,46070
+1145,21886
+1146,29509
+1147,6952
+1148,21719
+1149,15822
+1150,40303
+1151,45758
+1152,55022
+1153,15820
+1154,40299
+1155,21720
+1156,21719
+1157,6945
+1158,31542
+1159,39803
+1160,54980
+1161,54979
+1162,29509
+1163,66703
+1164,43193
+1165,24325
+1166,21720
+1167,21963
+1168,35097
+1169,21720
+1170,21963
+1171,34389
+1172,29509,62089
+1173,6952
+1174,29509
+1175,76135,45839
+1176,3281
+1177,31542
+1178,70209
+1179,60216
+1180,40299
+1181,2751
+1182,2752
+1183,21720
+1184,27763
+1185,40303
+1186,55081
+1187,55081
+1188,43910
+1189,52344
+1190,21996
+1191,35097
+1192,35096
+1193,61258
+1194,36381
+1195,35243
+1196,35474
+1197,51979
+1198,60450
+1199,60448
+1200,76134
+1201,40303
+1202,702
+1203,65960
+1204,21814
+1205,33639
+1206,61218
+1207,80927
+1208,603
+1209,55951
+1210,28849
+1211,603
+1212,66703
+1213,702
+1214,49829
+1215,29509
+1216,21719
+1217,21720
+1218,23455
+1219,23440
+1220,25721
+1221,75958
+1222,33928
+1223,75958
+1224,1324
+1225,1319
+1226,20196
+1227,8209
+1228,29313
+1229,75958
+1230,55022
+1231,35097
+1232,41879
+1233,19629
+1234,19629
+1235,19629
+1236,41879
+1237,35474
+1238,1757
+1239,13817
+1240,13818
+1241,45853,6624
+1242,76134
+1243,35243
+1244,49162,78038
+1245,21995
+1246,19649
+1247,19649
+1248,11668
+1249,75958
+1250,29509
+1251,81161
+1252,66703
+1253,42436,77375
+1254,61622,51702
+1255,34350
+1256,76134
+1257,21963
+1258,21765,61622
+1259,61254
+1260,28801,60611
+1261,24321
+1262,24325
+1263,49817,8290
+1264,49817,8290
+1265,21720
+1266,6952
+1267,75751
+1268,60592
+1269,39679
+1270,13746
+1271,39803
+1272,50898
+1273,81798
+1274,20756
+1275,35097
+1276,6298
+1277,48957
+1278,21754
+1279,55081
+1280,55081
+1281,15311
+1282,52887
+1283,18149
+1284,62902
+1285,29509
+1286,79850
+1287,65763
+1288,7657
+1289,35097
+1290,75958
+1291,20425
+1292,20426
+1293,81683
+1294,81687
+1295,81687
+1296,46304
+1297,54683
+1298,81781
+1299,29621
+1300,35096
+1301,35097
+1302,29621
+1303,35875
+1304,63460
+1305,47505
+1306,21770
+1307,3701
+1308,68237,21770
+1309,75823
+1310,77192
+1311,8647
+1312,56119
+1313,29197
+1314,15311
+1315,49817
+1316,31656
+1317,30391
+1318,59903
+1319,48210,60218
+1320,603
+1321,14636
+1322,24504
+1323,31976
+1324,32456
+1325,32988
+1326,21718
+1327,48151
+1328,23748
+1329,55294
+1330,58589
+1331,23559
+1332,72680
+1333,70012
+1334,40778
+1335,21719
+1336,52660
+1337,81781
+1338,7657
+1339,24325
+1340,68656
+1341,56119
+1342,67039
+1343,51396
+1344,53916
+1345,41878
+1346,41879
+1347,41877
+1348,21963
+1349,51396
+1350,51397
+1351,51397
+1352,65960
+1353,21720
+1354,40303
+1355,39678
+1356,39679
+1357,72961
+1358,8162
+1359,10220
+1360,76330
+1361,13817
+1362,21932
+1363,21932
+1364,21932
+1365,21938
+1366,21938
+1367,54683
+1368,46304
+1369,29509
+1370,43104
+1371,15309
+1372,380
+1373,1080
+1374,21433
+1375,21719
+1376,21720
+1377,33797,29197,19231
+1378,56119
+1379,15311
+1380,29621
+1381,29621
+1382,27339
+1383,79707,61796
+1384,67039
+1385,29509
+1386,41879
+1387,36987
+1388,36987
+1389,35243
+1390,35097
+1391,22000
+1392,37081
+1393,23300
+1394,40303
+1395,56119,62089
+1396,7658
+1397,7658
+1398,29509
+1399,33753
+1400,34746
+1401,77689
+1402,723
+1403,13420
+1404,72990
+1405,6952
+1406,52887
+1407,5350
+1408,32830
+1409,76135
+1410,76134,67582,3754,5012
+1411,724
+1412,723
+1413,14820
+1414,49817,15027
+1415,6952
+1416,24325
+1417,6945
+1418,77192
+1419,77192
+1420,56119
+1421,40299
+1422,40303
+1423,52887
+1424,22642
+1425,35787
+1426,44703
+1427,39679
+1428,70166
+1429,72966
+1430,57472
+1431,29509
+1432,68668
+1433,29553
+1434,25451
+1435,30183
+1436,32979
+1437,66592
+1438,45886
+1439,53036
+1440,63707
+1441,66523
+1442,67569
+1443,67649
+1444,67651
+1445,68555
+1446,72249
+1447,77883
+1448,80083
+1449,47505
+1450,16912
+1451,64747
+1452,28105
+1453,38676
+1454,55951
+1455,24325
+1456,24321
+1457,27763
+1458,21963
+1459,21719
+1460,6952
+1461,7734
+1462,15430
+1463,55081
+1464,794
+1465,35787
+1466,21720
+1467,49817
+1468,72990
+1469,68790
+1470,68786
+1471,81781
+1472,29509,62089
+1473,67039
+1474,61622
+1475,58227,21765
+1476,27431
+1477,11870
+1478,72700
+1479,55951
+1480,31318
+1481,6984
+1482,29509
+1483,72966
+1484,76134,3754,67582,5012
+1485,41593
+1486,1488
+1487,1488
+1488,58104
+1489,72990,14493
+1490,24325
+1491,40299
+1492,40303
+1493,75958
+1494,21963
+1495,41879
+1496,41878
+1497,41882
+1498,31542
+1499,24325
+1500,14504
+1501,31155
+1502,81781
+1503,77192
+1504,61086
+1505,72966
+1506,1485
+1507,1488
+1508,21443
+1509,31656
+1510,32456
+1511,1549
+1512,48210
+1513,64747
+1514,34746
+1515,50115
+1516,40316
+1517,37317
+1518,40316
+1519,30147
+1520,31976
+1521,36008
+1522,1524
+1523,45172
+1524,70033
+1525,37816
+1526,58287
+1527,77641
+1528,79608
+1529,23719
+1530,45813
+1531,65445
+1532,68584
+1533,72961
+1534,20691
+1535,75942
+1536,36250
+1537,22257
+1538,22257
+1539,22257
+1540,22257
+1541,5777
+1542,43104
+1543,5765
+1544,55022
+1545,56171
+1546,44703
+1547,21443
+1548,48210
+1549,56171
+1550,44703
+1551,2080
+1552,21720
+1553,6298
+1554,52887
+1555,2205
+1556,62512
+1557,61254
+1558,67039
+1559,60448,50638,35917
+1560,29621
+1561,67462
+1562,68474
+1563,8291
+1564,60448,35917
+1565,21963
+1566,21962
+1567,77192
+1568,60611
+1569,50604
+1570,31539
+1571,32473
+1572,66703
+1573,66703
+1574,20082
+1575,77192,62089
+1576,33728
+1577,24325
+1578,81789
+1579,29509
+1580,67039
+1581,1324
+1582,17264
+1583,17265
+1584,55022
+1585,38439
+1586,39679
+1587,39678
+1588,48957
+1589,11589
+1590,17555
+1591,51068
+1592,24828
+1593,25216
+1594,80265
+1595,29607
+1596,81462
+1597,71451
+1598,71611
+1599,63193
+1600,69943
+1601,19800
+1602,78606
+1603,23428
+1604,52435
+1605,75958
+1606,15311
+1607,39803
+1608,20120
+1609,63459
+1610,65509
+1611,29509
+1612,43104
+1613,15309
+1614,33342
+1615,38730
+1616,52887
+1617,21963
+1618,6941
+1619,55734
+1620,58167,31041
+1621,22533
+1622,22533
+1623,22533
+1624,22533
+1625,50608
+1626,22533
+1627,22533
+1628,22533
+1629,22533
+1630,22533
+1631,22533
+1632,22533
+1633,22533
+1634,22642
+1635,29621
+1636,22538,24289
+1637,22538
+1638,72990,60448
+1639,55055,68290
+1640,22642
+1641,22643
+1642,27053
+1643,22674,43104
+1644,5111
+1645,8861
+1646,18084
+1647,56127
+1648,63668
+1649,68544
+1650,48957
+1651,56119
+1652,35474,75548
+1653,65754
+1654,32456
+1655,18091
+1656,36008
+1657,29509,62089
+1658,44013
+1659,48957
+1660,1324
+1661,1663
+1662,1048
+1663,55022
+1664,16858
+1665,50215
+1666,51148
+1667,70426
+1668,25920
+1669,52887
+1670,15657
+1671,40303
+1672,7657
+1673,61311
+1674,29509
+1675,57965
+1676,56119,62089
+1677,20559
+1678,52887
+1679,24325
+1680,24321
+1681,52886
+1682,52887
+1683,52886
+1684,33797,29197
+1685,21719
+1686,21720
+1687,14127
+1688,50215
+1689,56246
+1690,12045
+1691,37043
+1692,81781
+1693,72990
+1694,21443
+1695,32547
+1696,72990
+1697,48957
+1698,8214
+1699,40303
+1700,40299
+1701,5765
+1702,59903
+1703,80106
+1704,5777
+1705,5777
+1706,64747
+1707,19234,30586
+1708,19649
+1709,21963
+1710,27276
+1711,27879
+1712,8291
+1713,67038
+1714,21963
+1715,67546
+1716,68544
+1717,1722
+1718,6001
+1719,43104
+1720,29509,62089
+1721,57011
+1722,8209
+1723,57109
+1724,29509
+1725,56119
+1726,55081
+1727,77753
+1728,19341
+1729,29509
+1730,29509
+1731,29509
+1732,63459
+1733,56119,62089
+1734,1324
+1735,1319
+1736,55022
+1737,77192
+1738,77192
+1739,77192
+1740,56119
+1741,56119,62089
+1742,28269
+1743,28269
+1744,19234
+1745,54980
+1746,25431
+1747,41361
+1748,61086
+1749,24823
+1750,60620
+1751,277
+1752,11957
+1753,67039
+1754,67039
+1755,13815
+1756,13817
+1757,13817
+1758,13818
+1759,81781
+1760,35917
+1761,18091
+1762,32456
+1763,48957
+1764,36008
+1765,79608
+1766,37179
+1767,35243
+1768,32216
+1769,43104
+1770,29513
+1771,68668
+1772,52481
+1773,31041
+1774,285
+1775,48957
+1776,29509,62089
+1777,60611
+1778,68544
+1779,29509
+1780,61796
+1781,80583
+1782,69998
+1783,46149
+1784,29509,62089
+1785,36381
+1786,43671
+1787,19234
+1788,19234
+1789,19231
+1790,19231
+1791,19231
+1792,77192
+1793,81781
+1794,76134
+1795,81781
+1796,68520
+1797,35917
+1798,79479
+1799,35097
+1800,77192
+1801,63668
+1802,38828
+1803,31041,60639
+1804,8775
+1805,24325
+1806,35474
+1807,40065,72990
+1808,25303
+1809,33797,29197
+1810,29509
+1811,21754
+1812,29621
+1813,35875
+1814,76134,3754,67582,5012
+1815,8409
+1816,65960
+1817,62902
+1818,277
+1819,5765
+1820,56171
+1821,75958
+1822,29509,62089
+1823,52886
+1824,52887
+1825,6298
+1826,56119
+1827,27763
+1828,5350
+1829,41284
+1830,50878
+1831,2126
+1832,70166
+1833,77192
+1834,81065
+1835,52886
+1836,52887
+1837,27762
+1838,27763
+1839,77192
+1840,72966
+1841,27255
+1842,40299
+1843,20426
+1844,23440
+1845,61086
+1846,61086
+1847,20427
+1848,61086
+1849,61086
+1850,56219
+1851,61622
+1852,21448
+1853,67039
+1854,81781
+1855,72961
+1856,6624
+1857,24722
+1858,33474
+1859,603
+1860,23471
+1861,23471
+1862,23471
+1863,23471
+1864,71493
+1865,53480
+1866,62260
+1867,76143
+1868,29509
+1869,73084
+1870,56119
+1871,29513
+1872,24249
+1873,68030
+1874,66806
+1875,39803
+1876,68544
+1877,75027
+1878,68059
+1879,2657,65374
+1880,29509
+1881,36381
+1882,74560
+1883,35097
+1884,39623,38735,81781
+1885,63669,61796
+1886,8283
+1887,55692
+1888,21421,53295,67582
+1889,81781,36381
+1890,29509
+1891,53975
+1892,60611
+1893,76134,67582,5012,46148
+1894,31992
+1895,53919
+1896,75942
+1897,56847,1048
+1898,29737,18748
+1899,81781,27598
+1900,55734
+1901,31041
+1902,72990
+1903,35242
+1904,70503
+1905,21444
+1906,56119
+1907,29509,62089
+1908,15311
+1909,71704
+1910,25303
+1911,51397
+1912,5777
+1913,15679
+1914,55022
+1915,29509,62089
+1916,54979
+1917,20756
+1918,56119
+1919,5765
+1920,28934
+1921,41446
+1922,64383
+1923,69688
+1924,79958
+1925,5777
+1926,56119
+1927,42436
+1928,3295
+1929,36008
+1930,48768
+1931,60487
+1932,58798
+1933,27531,76134
+1934,81320
+1935,55951
+1936,77192,62095
+1937,31041
+1938,21963
+1939,81781
+1940,81781
+1941,35412
+1942,76332
+1943,29509
+1944,40299
+1945,21719
+1946,31155
+1947,42436
+1948,77192
+1949,21720
+1950,72990
+1951,25303
+1952,21886
+1953,46935,81781
+1954,77192
+1955,75606
+1956,20946
+1957,55055,67582
+1958,62015
+1959,62015
+1960,65758
+1961,58104
+1962,33492
+1963,61622
+1964,81781
+1965,50604
+1966,43104
+1967,40485
+1968,76573
+1969,1319
+1970,38439
+1971,10220
+1972,29509,62089
+1973,283
+1974,41446
+1975,277
+1976,59565
+1977,74625
+1978,22402
+1979,44702
+1980,61258
+1981,44703
+1982,77192
+1983,30584
+1984,60448,49485
+1985,58798
+1986,50910
+1987,20419
+1988,52660
+1989,39803
+1990,277
+1991,308
+1992,52659
+1993,52660
+1994,38441
+1995,67957
+1996,31041
+1997,29509,62089
+1998,40008
+1999,19234
+2000,60448
+2001,27380
+2002,56246
+2003,68544
+2004,73555
+2005,29553
+2006,29438
+2007,29509
+2008,60448,24379
+2009,32473
+2010,64747
+2011,21444
+2012,56119
+2013,71603
+2014,19858
+2015,64672
+2016,6624
+2017,31041
+2018,48957
+2019,21475
+2020,58595
+2021,59870
+2022,68560
+2023,36008
+2024,44013
+2025,52687
+2026,57810
+2027,46753
+2028,66542
+2029,69908
+2030,12052
+2031,56119
+2032,60620
+2033,15326
+2034,19234
+2035,21444,68520
+2036,60611
+2037,53480
+2038,53480
+2039,50604
+2040,31279,31041
+2041,22850
+2042,66824
+2043,35243
+2044,35097
+2045,32939
+2046,63060
+2047,40012
+2048,20756
+2049,28801
+2050,53480,21996
+2051,54084,48768
+2052,31812
+2053,48024,73095
+2054,51397
+2055,21963
+2056,60620
+2057,27763,3523
+2058,72892
+2059,72892
+2060,74395
+2061,57140
+2062,77192
+2063,77192
+2064,37204
+2065,52887
+2066,44953
+2067,44952
+2068,37127
+2069,29509
+2070,72990
+2071,78176
+2072,7657
+2073,7658
+2074,67462
+2075,7658
+2076,1324
+2077,1319
+2078,55022
+2079,26686
+2080,67462
+2081,23853
+2082,1080
+2083,52887
+2084,21963
+2085,81781
+2086,29845
+2087,43104
+2088,56127
+2089,41422
+2090,22266
+2091,21967
+2092,66703
+2093,43104
+2094,50899
+2095,66703
+2096,24107
+2097,21963
+2098,21962
+2099,72961
+2100,14870
+2101,22056
+2102,72983
+2103,29509
+2104,15623
+2105,77192
+2106,15622
+2107,63586
+2108,48484
+2109,29509
+2110,48957
+2111,29509
+2112,29509
+2113,23471
+2114,56127
+2115,35243
+2116,56119
+2117,72966
+2118,72990
+2119,21443
+2120,68544
+2121,56219
+2122,56119
+2123,43104
+2124,65960
+2125,39294
+2126,3386
+2127,29621
+2128,31041
+2129,21720
+2130,60216
+2131,28801
+2132,19234
+2133,277
+2134,26208
+2135,41181
+2136,58175
+2137,8170,14992
+2138,64747
+2139,55394
+2140,49597
+2141,54398
+2142,54398
+2143,59380
+2144,34746
+2145,68544
+2146,75958
+2147,65233
+2148,11870
+2149,496,13420
+2150,497
+2151,77192
+2152,77192
+2153,39404
+2154,46178
+2155,21754
+2156,72990
+2157,61622,58798
+2158,51397
+2159,29509
+2160,52887
+2161,73412
+2162,41879
+2163,41882
+2164,41878
+2165,41879
+2166,21720
+2167,21720
+2168,21719
+2169,20756
+2170,39678
+2171,39679
+2172,61086
+2173,5510
+2174,40299
+2175,20756
+2176,40303
+2177,21963
+2178,22402
+2179,55081
+2180,58088
+2181,29509
+2182,19389
+2183,35097
+2184,17424
+2185,21720
+2186,60639,31041
+2187,31041
+2188,29509
+2189,61622
+2190,30153
+2191,51397
+2192,51558
+2193,77192
+2194,29513
+2195,29833
+2196,42436
+2197,43672
+2198,45443
+2199,64747
+2200,39803
+2201,43104
+2202,23471
+2203,3281
+2204,61622
+2205,34389
+2206,8841
+2207,62956
+2208,55944
+2209,76135
+2210,35097
+2211,81781
+2212,35787
+2213,80106
+2214,60448,72990
+2215,20969
+2216,19231
+2217,56119
+2218,43104
+2219,5765
+2220,80475
+2221,57140
+2222,22069
+2223,65959
+2224,72966
+2225,12107
+2226,39679
+2227,18084
+2228,41878
+2229,41879
+2230,25175
+2231,41879
+2232,25175
+2233,25175
+2234,25175
+2235,25175
+2236,25175
+2237,25175
+2238,25175
+2239,25175
+2240,25175
+2241,25175
+2242,25175
+2243,64250
+2244,42436,72990
+2245,15822
+2246,15820
+2247,55022
+2248,40011
+2249,29509
+2250,30896
+2251,64490
+2252,30894
+2253,21963
+2254,60611
+2255,31539
+2256,29509
+2257,51397
+2258,35242
+2259,35243
+2260,20426
+2261,21720
+2262,21719
+2263,24325
+2264,24321
+2265,21719
+2266,21720
+2267,48957
+2268,24325
+2269,39803
+2270,29549
+2271,55423
+2272,12138
+2273,76134
+2274,54767,67582
+2275,62015
+2276,29509
+2277,32929
+2278,81781
+2279,69291
+2280,67462
+2281,53480
+2282,74906
+2283,41700
+2284,31542
+2285,19231,21872
+2286,43672
+2287,61252
+2288,61254
+2289,55081
+2290,29509,62089
+2291,81251
+2292,21006
+2293,69688
+2294,75942
+2295,6952
+2296,81781
+2297,27531,71493
+2298,9280
+2299,57140
+2300,10297
+2301,48957
+2302,31041
+2303,61086
+2304,72290
+2305,52887
+2306,57671
+2307,57140
+2308,50604
+2309,52887
+2310,7785
+2311,72961
+2312,5777
+2313,73555
+2314,74625
+2315,72966
+2316,68647
+2317,34506
+2318,35557
+2319,75942
+2320,26884
+2321,74872
+2322,79608
+2323,26686
+2324,66853
+2325,603
+2326,74500
+2327,81781
+2328,67039
+2329,47786
+2330,61086
+2331,24325
+2332,40299
+2333,65960
+2334,39679
+2335,283
+2336,55022
+2337,57671
+2338,48957
+2339,38828
+2340,77689
+2341,77192
+2342,31041
+2343,69744
+2344,64955
+2345,67277
+2346,36892
+2347,6298
+2348,73341
+2349,55081
+2350,48957
+2351,69688
+2352,61086
+2353,16443
+2354,52886
+2355,52886
+2356,77753
+2357,53480,21996
+2358,37191
+2359,28212
+2360,73650
+2361,60984
+2362,49945
+2363,51397
+2364,77192
+2365,53848
+2366,3599
+2367,50878
+2368,15181
+2369,55495
+2370,32155
+2371,67039
+2372,81781
+2373,28801
+2374,50604
+2375,61086
+2376,77192
+2377,44287
+2378,21720
+2379,60592
+2380,35243
+2381,21963
+2382,67039
+2383,20756
+2384,81781
+2385,62956
+2386,42436
+2387,61796
+2388,72323
+2389,56162
+2390,61622
+2391,40065
+2392,60536
+2393,52886
+2394,52887
+2395,29509
+2396,42436
+2397,12045
+2398,21996
+2399,7658
+2400,25519
+2401,17655
+2402,7659
+2403,65754
+2404,66703
+2405,68474
+2406,55734
+2407,31041
+2408,12697
+2409,12066
+2410,37204
+2411,40303
+2412,21444
+2413,40299
+2414,31859
+2415,81687
+2416,81683
+2417,29621
+2418,40299
+2419,20756
+2420,68520
+2421,43104
+2422,72990
+2423,24325
+2424,58798
+2425,52660
+2426,56119
+2427,29509
+2428,55081
+2429,35243
+2430,56119
+2431,77192
+2432,54786
+2433,66842
+2434,46287
+2435,29509
+2436,31700
+2437,15822
+2438,15820
+2439,41743
+2440,55022
+2441,77641
+2442,67037
+2443,78037
+2444,66703
+2445,56119
+2446,36381,61622
+2447,46070
+2448,29509
+2449,29509,62089
+2450,74010
+2451,59413
+2452,39803
+2453,29509
+2454,29509,62089
+2455,6298
+2456,6305
+2457,2586
+2458,21444
+2459,40303
+2460,72990
+2461,21963
+2462,29509,62089
+2463,50110
+2464,18674,67582
+2465,56119,62089
+2466,28747
+2467,29509
+2468,3281
+2469,7658
+2470,29509,62089
+2471,78703
+2472,20946
+2473,20889
+2474,72966
+2475,29509,62089
+2476,48270
+2477,20120
+2478,56115
+2479,26785
+2480,2947
+2481,30871
+2482,4384
+2483,35787
+2484,43104
+2485,75029
+2486,48957
+2487,50115
+2488,59251
+2489,62176
+2490,35787
+2491,18093
+2492,51658,36664
+2493,37708
+2494,55022
+2495,2494
+2496,2494
+2497,81617
+2498,5765
+2499,3278
+2500,71895
+2501,31279,31041
+2502,75027
+2503,29509
+2504,73650
+2505,47505
+2506,20946
+2507,28238
+2508,60611
+2509,32222
+2510,57140
+2511,55081
+2512,55080
+2513,20889
+2514,55081
+2515,81781
+2516,81781
+2517,81781
+2518,39296
+2519,25406
+2520,74625
+2521,76664
+2522,34198
+2523,61622
+2524,25406
+2525,74625
+2526,51702
+2527,40303
+2528,55055
+2529,40299
+2530,35097
+2531,18748
+2532,25431
+2533,33728
+2534,78725
+2535,81781
+2536,47497
+2537,55494
+2538,6709
+2539,61622
+2540,48768
+2541,61622
+2542,22317
+2543,52504
+2544,11714
+2545,29509,62095
+2546,35917,22649
+2547,49817
+2548,30107
+2549,31041
+2550,21719
+2551,21720
+2552,35243
+2553,31041,58167
+2554,57671
+2555,29509
+2556,21963
+2557,16685
+2558,14290
+2559,33810
+2560,5501
+2561,61086
+2562,74271
+2563,36008
+2564,2300
+2565,21444
+2566,21963
+2567,17603
+2568,60448
+2569,29738,67582
+2570,77192
+2571,77192,62095
+2572,73207
+2573,67254
+2574,50125
+2575,72990
+2576,56119
+2577,67039
+2578,55303
+2579,61258
+2580,77192
+2581,61796,50638
+2582,56127
+2583,35875
+2584,29621
+2585,60592
+2586,3279
+2587,55304
+2588,52887
+2589,60448
+2590,24325
+2591,24325
+2592,54979
+2593,24321
+2594,24325
+2595,24325
+2596,24321
+2597,13746
+2598,56119
+2599,31155
+2600,55081
+2601,28801
+2602,81781,54768
+2603,58816
+2604,56119
+2605,67583
+2606,55944
+2607,65753
+2608,65754
+2609,65767
+2610,75823
+2611,52887
+2612,61086
+2613,56119,62089
+2614,29509
+2615,20425
+2616,72961
+2617,56119
+2618,2250
+2619,29509
+2620,1704
+2621,5765
+2622,15679
+2623,55022
+2624,26082
+2625,61086
+2626,21444
+2627,57011
+2628,67039
+2629,76134
+2630,35097
+2631,35342
+2632,28269
+2633,65960
+2634,50481
+2635,61086
+2636,28801
+2637,40008
+2638,62525,81781
+2639,39803,52316
+2640,21397
+2641,21963
+2642,2126
+2643,19231
+2644,46670
+2645,64662
+2646,50610
+2647,19649
+2648,19649
+2649,19649
+2650,19649
+2651,19649
+2652,19649
+2653,19649
+2654,28938
+2655,81781
+2656,42436
+2657,81251
+2658,24321
+2659,24325
+2660,41701
+2661,72990,58068
+2662,32456
+2663,41446
+2664,29509
+2665,77641
+2666,55081
+2667,55080
+2668,52887
+2669,1319
+2670,9898
+2671,36047
+2672,81781
+2673,21444
+2674,79233,30584
+2675,61622
+2676,42436
+2677,61796
+2678,81781
+2679,81781
+2680,48768
+2681,29509
+2682,67039
+2683,67038
+2684,63586
+2685,19959
+2686,19231
+2687,38828
+2688,283
+2689,41446
+2690,277
+2691,13746
+2692,13746
+2693,37408
+2694,38674
+2695,38674
+2696,30187
+2697,56847
+2698,48768
+2699,67039
+2700,24325
+2701,81781
+2702,61622
+2703,77192
+2704,21444
+2705,35096
+2706,35097
+2707,23471
+2708,35171
+2709,29509
+2710,5765
+2711,38828,56230
+2712,58167,31041
+2713,61622
+2714,1319
+2715,43104
+2716,21448
+2717,29509
+2718,63193
+2719,76959
+2720,51068
+2721,29587
+2722,71451
+2723,39871
+2724,69271
+2725,30926
+2726,30926,64961
+2727,36525
+2728,36525
+2729,37479
+2730,77185
+2731,63193
+2732,29419
+2733,23428
+2734,29724
+2735,30986
+2736,52758
+2737,63187
+2738,68230
+2739,81781
+2740,65374
+2741,79618
+2742,52660
+2743,52659
+2744,56246
+2745,38828,27733
+2746,52887
+2747,21963
+2748,55423
+2749,24325
+2750,27762
+2751,13420
+2752,723
+2753,29509,62089
+2754,47503
+2755,21720
+2756,20425
+2757,31542
+2758,52887
+2759,52886
+2760,67039
+2761,67038
+2762,67038
+2763,42436,72990
+2764,30584
+2765,77114
+2766,68647
+2767,31041
+2768,71632
+2769,19231
+2770,16539
+2771,17555
+2772,52904
+2773,5345
+2774,24325
+2775,77192
+2776,56119,62089
+2777,67039
+2778,101
+2779,10680
+2780,10676
+2781,35243
+2782,8409
+2783,26896
+2784,77192,62089
+2785,55081,6879
+2786,21963
+2787,40303
+2788,27763
+2789,68520
+2790,36381,61622
+2791,81781
+2792,43104
+2793,27118
+2794,29509
+2795,29509
+2796,36607
+2797,24325
+2798,702
+2799,68994
+2800,57289
+2801,80080
+2802,68370
+2803,68370
+2804,25584
+2805,31267
+2806,41371
+2807,70038
+2808,50184
+2809,50585
+2810,12655
+2811,82020
+2812,61092
+2813,62029
+2814,63005
+2815,64132
+2816,69207
+2817,67551
+2818,68584
+2819,60960
+2820,61218
+2821,80794
+2822,80927
+2823,81251
+2824,603
+2825,14493
+2826,38227
+2827,62015
+2828,62015
+2829,47814
+2830,55081
+2831,30490
+2832,52887
+2833,21720
+2834,21720
+2835,40299
+2836,11472
+2837,65960
+2838,21720
+2839,21719
+2840,35243
+2841,65960
+2842,21963
+2843,6426
+2844,52886
+2845,52887
+2846,67038
+2847,67039
+2848,44703
+2849,52887
+2850,35243
+2851,35097
+2852,44703
+2853,51397
+2854,29509
+2855,66703
+2856,27118
+2857,35243
+2858,55081
+2859,81617
+2860,35492
+2861,42304
+2862,42304
+2863,42304
+2864,41878
+2865,52660
+2866,25721
+2867,46070
+2868,53690
+2869,4374
+2870,41879
+2871,76134
+2872,28801
+2873,13818
+2874,56274
+2875,1757
+2876,81781
+2877,52659
+2878,52660
+2879,21963
+2880,22640
+2881,22645
+2882,68591
+2883,35097
+2884,66703
+2885,51397
+2886,21720
+2887,1324
+2888,1319
+2889,55022
+2890,60120
+2891,75078
+2892,29509
+2893,29509
+2894,78725
+2895,29509
+2896,52886
+2897,35243
+2898,27323
+2899,52887
+2900,28747
+2901,79850
+2902,283
+2903,41446
+2904,277
+2905,23455
+2906,58175
+2907,66226
+2908,8409
+2909,61252
+2910,61258
+2911,55953
+2912,29509
+2913,72961
+2914,24325
+2915,39612
+2916,21720
+2917,39679
+2918,39679
+2919,24325
+2920,81781,38735
+2921,15309
+2922,2923
+2923,15310
+2924,24325
+2925,12054
+2926,20641
+2927,57689
+2928,20079
+2929,81100
+2930,49156
+2931,51400
+2932,52451
+2933,61510
+2934,11866
+2935,61533
+2936,79640
+2937,81137
+2938,12052
+2939,66703
+2940,80394
+2941,6264
+2942,48597
+2943,21842
+2944,22634
+2945,36008
+2946,80422
+2947,72961
+2948,50215
+2949,52660
+2950,45172
+2951,48957
+2952,80962
+2953,67039
+2954,56119
+2955,31542
+2956,70209
+2957,60216
+2958,21720
+2959,21719
+2960,29509
+2961,27146
+2962,64202
+2963,35242
+2964,81781
+2965,52886
+2966,52887
+2967,31542
+2968,31542
+2969,35096
+2970,55080
+2971,61086
+2972,29509,62089
+2973,74395
+2974,64747
+2975,5501
+2976,77192
+2977,56073
+2978,43467
+2979,27093
+2980,41879
+2981,62512
+2982,32875
+2983,6268
+2984,9043
+2985,56127
+2986,59903
+2987,48957
+2988,63255
+2989,59903
+2990,23471
+2991,27118
+2992,27297
+2993,66703
+2994,27297
+2995,27297
+2996,77192
+2997,27297,63255
+2998,27297,63255
+2999,27297
+3000,11870
+3001,27297
+3002,72961
+3003,27297
+3004,63255
+3005,29509,62089
+3006,27297
+3007,32456
+3008,21443
+3009,3010
+3010,55022
+3011,27297
+3012,59903
+3013,12327
+3014,78017
+3015,27297
+3016,72961
+3017,73674
+3018,24829
+3019,81781,36381
+3020,43226
+3021,9044
+3022,71817
+3023,36892
+3024,39546
+3025,43814
+3026,46070
+3027,56127
+3028,24321
+3029,42151
+3030,61086
+3031,43104
+3032,35242
+3033,35243
+3034,40012
+3035,52887
+3036,21720
+3037,52887
+3038,48957
+3039,70209
+3040,60216
+3041,52887
+3042,31542
+3043,21962
+3044,24321
+3045,20756
+3046,24325
+3047,40299
+3048,52886
+3049,40303
+3050,35243
+3051,21719
+3052,56119
+3053,40299
+3054,40303
+3055,40299
+3056,40303
+3057,57671
+3058,20120
+3059,77192
+3060,60120
+3061,40299
+3062,40303
+3063,40303
+3064,40299
+3065,40303
+3066,35243
+3067,56119
+3068,32028
+3069,54979
+3070,35097
+3071,54980
+3072,61622
+3073,24321
+3074,24325
+3075,21963
+3076,65960
+3077,61622
+3078,55081
+3079,24325
+3080,24321
+3081,724
+3082,723
+3083,43104
+3084,68544
+3085,48957
+3086,35243
+3087,35242
+3088,31542
+3089,2438
+3090,49817
+3091,21963
+3092,77192
+3093,28087
+3094,56127
+3095,46148
+3096,41593
+3097,58104
+3098,71603
+3099,48028,60435
+3100,37204
+3101,78725
+3102,27763
+3103,46431
+3104,20756
+3105,20756
+3106,60611
+3107,33585
+3108,43104
+3109,20123
+3110,26232
+3111,28886
+3112,45738
+3113,26555
+3114,55174
+3115,59110
+3116,40752
+3117,81743
+3118,21443
+3119,71817
+3120,36892
+3121,603
+3122,28801
+3123,64747
+3124,65960
+3125,44952
+3126,44953
+3127,27763
+3128,21720
+3129,24325
+3130,74560,24249
+3131,21444
+3132,81781
+3133,41700
+3134,24249,38047
+3135,72966
+3136,29509,62089
+3137,29509,62089
+3138,29374
+3139,5356
+3140,13746
+3141,38674
+3142,40986
+3143,31889
+3144,31893
+3145,61211
+3146,29522
+3147,277
+3148,21963
+3149,55055
+3150,58104
+3151,56246
+3152,48768
+3153,67039
+3154,75828
+3155,25431,28801
+3156,35097
+3157,35243
+3158,35242
+3159,27762
+3160,61258
+3161,29621
+3162,55081
+3163,29509,62089
+3164,28178
+3165,81467
+3166,19468
+3167,64747
+3168,70426
+3169,36050
+3170,24325
+3171,67546
+3172,29509
+3173,50215
+3174,63329
+3175,65501
+3176,49829
+3177,35243
+3178,55951
+3179,31542
+3180,60448
+3181,72990
+3182,44953
+3183,44953
+3184,67039
+3185,35787
+3186,15876
+3187,21963
+3188,15875
+3189,55607
+3190,52887
+3191,52886
+3192,52887
+3193,56119,62089
+3194,71334
+3195,30895
+3196,19649
+3197,24321
+3198,20756
+3199,35096
+3200,61258
+3201,24325
+3202,21720
+3203,15875
+3204,14516
+3205,28822
+3206,35787
+3207,27933
+3208,27933
+3209,43776
+3210,55081
+3211,15623
+3212,41390
+3213,15622
+3214,77273
+3215,44703
+3216,70033
+3217,24325
+3218,35097
+3219,24325
+3220,24321
+3221,31417
+3222,81781
+3223,37725
+3224,37725
+3225,64250,65570
+3226,81065
+3227,3695
+3228,29313
+3229,29323
+3230,3705
+3231,72283
+3232,24325
+3233,40299
+3234,40303
+3235,64747
+3236,63586,37191
+3237,63586
+3238,61622
+3239,43104
+3240,56171
+3241,81283
+3242,64747
+3243,61086
+3244,52660
+3245,55012
+3246,57223
+3247,28801,60611
+3248,52887
+3249,52886
+3250,62956
+3251,30460
+3252,36008
+3253,8331
+3254,8330
+3255,50215
+3256,52886
+3257,48957
+3258,29509
+3259,17839
+3260,13194
+3261,52887
+3262,52887
+3263,21719
+3264,35097
+3265,35096
+3266,29509
+3267,67039
+3268,44703
+3269,35243
+3270,35096
+3271,35097
+3272,48957
+3273,7420
+3274,68520
+3275,27763
+3276,21996
+3277,75744
+3278,5765
+3279,8209
+3280,4374
+3281,34389
+3282,35097
+3283,55081
+3284,38228
+3285,21963
+3286,35097
+3287,31542
+3288,19649
+3289,76196
+3290,283
+3291,41446
+3292,49019
+3293,30391
+3294,12052
+3295,12054
+3296,73576
+3297,5112
+3298,17468,47925
+3299,48597
+3300,59237
+3301,20082
+3302,29553
+3303,21963
+3304,40299
+3305,6298
+3306,40299
+3307,24325
+3308,67039
+3309,40299
+3310,40303
+3311,40303
+3312,24325
+3313,67039
+3314,75510
+3315,35097
+3316,55081
+3317,81683
+3318,60592
+3319,29621
+3320,24325
+3321,67038
+3322,44702
+3323,44703
+3324,67039
+3325,55951
+3326,31542
+3327,24325
+3328,21719
+3329,21720
+3330,27763
+3331,21720
+3332,40299
+3333,67039
+3334,67039
+3335,52659
+3336,52660
+3337,21720
+3338,21719
+3339,20756
+3340,65959
+3341,39679
+3342,41878
+3343,41879
+3344,52887
+3345,55952
+3346,52659
+3347,52660
+3348,67039
+3349,67039
+3350,52887
+3351,21719
+3352,52886
+3353,52887
+3354,41879
+3355,41879
+3356,14504
+3357,21968
+3358,27763
+3359,55081
+3360,24325
+3361,24321
+3362,81781,36381
+3363,52886
+3364,52887
+3365,24325
+3366,20756
+3367,33238
+3368,29621
+3369,21963
+3370,33239
+3371,20756
+3372,39679
+3373,21720
+3374,21719
+3375,40299
+3376,40303
+3377,41879
+3378,31542
+3379,48957
+3380,67849
+3381,72227
+3382,58798
+3383,7375
+3384,77192
+3385,2657,80962
+3386,308
+3387,283
+3388,277
+3389,41446
+3390,67039
+3391,40303
+3392,61086
+3393,40303
+3394,40299
+3395,60592
+3396,58798
+3397,17265
+3398,24224
+3399,7657
+3400,37150
+3401,77192
+3402,21719
+3403,21720
+3404,24325
+3405,43104
+3406,57456
+3407,15309
+3408,61086
+3409,24325
+3410,67039
+3411,44703
+3412,67039
+3413,35243
+3414,65960
+3415,31542
+3416,65959
+3417,21963
+3418,72990
+3419,21444
+3420,6298
+3421,77192
+3422,38828
+3423,5356
+3424,73650
+3425,26789
+3426,79591
+3427,61086
+3428,7658
+3429,81781
+3430,66703
+3431,3612
+3432,55423
+3433,48957
+3434,56127
+3435,29621
+3436,66703
+3437,6952
+3438,77192
+3439,30584,40012
+3440,60984
+3441,61086
+3442,63460
+3443,63459
+3444,40299
+3445,40299
+3446,20756
+3447,24321
+3448,20756
+3449,24325
+3450,63461
+3451,56520
+3452,56527
+3453,80962
+3454,79618
+3455,11973
+3456,65960
+3457,7766,3119
+3458,29509
+3459,9043
+3460,9043
+3461,7766,9044
+3462,9044
+3463,66703
+3464,9044
+3465,60611
+3466,13769
+3467,29509,62089
+3468,22853
+3469,72966
+3470,79541
+3471,56250
+3472,29509
+3473,63488
+3474,23693
+3475,39698
+3476,29621
+3477,52887
+3478,38426
+3479,65531
+3480,77192
+3481,28006
+3482,51640
+3483,80815
+3484,61796,28938
+3485,39992
+3486,72990,81781
+3487,24325
+3488,66703
+3489,29509
+3490,61086
+3491,61622
+3492,24325
+3493,31041
+3494,50110
+3495,14638
+3496,3240
+3497,43104
+3498,79591
+3499,81781
+3500,39679
+3501,35243
+3502,36381
+3503,29621
+3504,35243
+3505,21720
+3506,21963
+3507,20756
+3508,65960
+3509,20756
+3510,65959
+3511,29509
+3512,65960
+3513,65959
+3514,11363
+3515,3514
+3516,31782
+3517,29509
+3518,31175
+3519,24325
+3520,79618
+3521,80962
+3522,29509
+3523,27762
+3524,27763
+3525,13164
+3526,77192,62089
+3527,14638
+3528,17867
+3529,29509
+3530,29509
+3531,8331
+3532,8330
+3533,67001
+3534,31041
+3535,23471
+3536,66240
+3537,39803
+3538,28747
+3539,29509
+3540,72990
+3541,81781
+3542,19231,70426
+3543,36055
+3544,46070
+3545,277
+3546,496,13420
+3547,497
+3548,72966
+3549,1752
+3550,59745
+3551,78279
+3552,42436,72990
+3553,65374
+3554,29509,62089
+3555,10944
+3556,1752
+3557,61086
+3558,724
+3559,11475
+3560,39803
+3561,27380
+3562,26789
+3563,29509
+3564,72961
+3565,77223
+3566,34746
+3567,80808
+3568,15822
+3569,25282
+3570,15820
+3571,28104
+3572,70033
+3573,51159
+3574,55022
+3575,70033
+3576,3574
+3577,70033
+3578,48957
+3579,63460
+3580,65960
+3581,40303
+3582,29621
+3583,21963
+3584,40299
+3585,14783
+3586,35243
+3587,7734
+3588,7735
+3589,55423
+3590,55952
+3591,52660
+3592,1324
+3593,40752
+3594,67001
+3595,45946
+3596,71279
+3597,25556
+3598,52886
+3599,1319
+3600,15615
+3601,66341
+3602,64720
+3603,20087
+3604,70033
+3605,72142
+3606,67957
+3607,26766
+3608,33134
+3609,25022
+3610,28862
+3611,57289
+3612,34389
+3613,37582
+3614,46818
+3615,45813
+3616,43756
+3617,79608
+3618,70033
+3619,50383
+3620,44384
+3621,55022
+3622,55809
+3623,42154
+3624,77641
+3625,59666
+3626,62910
+3627,63005
+3628,63987
+3629,74973
+3630,66428
+3631,81394
+3632,80106
+3633,13019
+3634,60732
+3635,13020
+3636,21963
+3637,35097
+3638,235
+3639,1411
+3640,1412
+3641,26792
+3642,975
+3643,58798
+3644,28219
+3645,21968
+3646,21719
+3647,21720
+3648,20756
+3649,28035
+3650,1752
+3651,29509,62089
+3652,15622
+3653,24325
+3654,29053
+3655,29053
+3656,22642
+3657,63459
+3658,63460
+3659,65960
+3660,52887
+3661,35096
+3662,35097
+3663,55081
+3664,63461
+3665,63460
+3666,65960
+3667,24325
+3668,40299
+3669,29621
+3670,19629
+3671,35874
+3672,67039
+3673,24325
+3674,11476
+3675,11475
+3676,52887
+3677,52887
+3678,51558
+3679,29621
+3680,63460
+3681,29509
+3682,55734
+3683,31041,60639
+3684,81781
+3685,60592
+3686,24325
+3687,67039
+3688,24325
+3689,21720
+3690,67039
+3691,9141
+3692,70033
+3693,29509
+3694,25094
+3695,65767
+3696,13817
+3697,13818
+3698,13817
+3699,13815
+3700,38227
+3701,65762
+3702,51768
+3703,40276
+3704,76139
+3705,65754
+3706,31801
+3707,81781
+3708,50878,46304,64202,39509
+3709,68678
+3710,46274
+3711,23765
+3712,40752
+3713,44044
+3714,77641
+3715,26827
+3716,41745
+3717,44241
+3718,30020
+3719,39676
+3720,62702
+3721,45668
+3722,73367
+3723,34199
+3724,70033
+3725,76135
+3726,3704
+3727,59588
+3728,65960
+3729,76161
+3730,30218
+3731,49182
+3732,65960
+3733,67039
+3734,52886
+3735,52887
+3736,44953
+3737,24325
+3738,21719
+3739,40303
+3740,29621
+3741,35097
+3742,35874
+3743,21719
+3744,21963
+3745,67039
+3746,21963
+3747,55944
+3748,75958
+3749,15516
+3750,56171
+3751,59903
+3752,68544
+3753,29509
+3754,76134
+3755,841
+3756,13817
+3757,1757
+3758,77192
+3759,42436
+3760,72990,81781
+3761,35412
+3762,17264
+3763,17265
+3764,41878
+3765,41882
+3766,29621
+3767,61622,51702
+3768,39679
+3769,21719
+3770,21719
+3771,67039
+3772,58068,72990
+3773,40299
+3774,21963
+3775,21719
+3776,24325
+3777,24321
+3778,20756
+3779,67039
+3780,29621
+3781,57671
+3782,66703
+3783,21720
+3784,21719
+3785,52660
+3786,29509
+3787,72990
+3788,24321
+3789,24325
+3790,33928
+3791,81462
+3792,39803
+3793,52660
+3794,67039
+3795,37768
+3796,24325
+3797,18149
+3798,30900
+3799,3240
+3800,71633
+3801,31542
+3802,39509
+3803,24325
+3804,29621
+3805,21963
+3806,35242
+3807,24325
+3808,35243
+3809,76330
+3810,52887
+3811,40303
+3812,33928
+3813,79850
+3814,67039
+3815,35097
+3816,28236
+3817,29509,62089
+3818,29509
+3819,29509
+3820,26246
+3821,55495
+3822,41879
+3823,41878
+3824,24325
+3825,67039
+3826,20756
+3827,24325
+3828,61796
+3829,63586
+3830,42436
+3831,38828
+3832,57252
+3833,72843
+3834,29509
+3835,41878
+3836,41879
+3837,14493
+3838,42436
+3839,41878
+3840,41879
+3841,21805
+3842,61796
+3843,42436
+3844,27763
+3845,60448
+3846,55081
+3847,72990
+3848,81781,46935
+3849,21047
+3850,62015
+3851,62015
+3852,62015
+3853,64255,5345
+3854,21719
+3855,35097
+3856,35242
+3857,52887
+3858,29509
+3859,13746
+3860,74117
+3861,78059
+3862,35097
+3863,66703
+3864,42488
+3865,40299
+3866,21963
+3867,77192
+3868,13746
+3869,61796
+3870,69083
+3871,38674
+3872,11472
+3873,41879
+3874,19629
+3875,19629
+3876,19629
+3877,19629
+3878,19629
+3879,19629
+3880,67039
+3881,42436,72990
+3882,24695
+3883,6952
+3884,49817,6224
+3885,12711
+3886,40303
+3887,40299
+3888,66703
+3889,36329
+3890,15676
+3891,55951
+3892,65960
+3893,21963
+3894,60592
+3895,67039
+3896,29621
+3897,72961
+3898,64747
+3899,43104
+3900,40299
+3901,30586
+3902,30317
+3903,21719
+3904,20756
+3905,21719
+3906,21719
+3907,24325
+3908,52660
+3909,24325
+3910,7734
+3911,18520
+3912,8170,974
+3913,35243
+3914,24325
+3915,22402
+3916,47505
+3917,57140
+3918,18910
+3919,9913
+3920,7734
+3921,18520
+3922,55081
+3923,81781,40012
+3924,16912
+3925,66703
+3926,67039
+3927,67039
+3928,69998
+3929,55081
+3930,24325
+3931,24321
+3932,724
+3933,77192
+3934,50215
+3935,21963
+3936,73264
+3937,25721
+3938,71603
+3939,25431
+3940,71786
+3941,35243
+3942,24325
+3943,67957
+3944,51396
+3945,51397
+3946,43104
+3947,46707
+3948,65960
+3949,20756
+3950,61622
+3951,81781
+3952,79850
+3953,24325
+3954,20756
+3955,81781
+3956,21963
+3957,21963
+3958,24325
+3959,55081
+3960,29509
+3961,15822
+3962,15820
+3963,55022
+3964,3963
+3965,56119
+3966,29509,62089
+3967,39803
+3968,64955
+3969,43104
+3970,603
+3971,702
+3972,66703
+3973,66703
+3974,34746
+3975,75078
+3976,69320
+3977,29509
+3978,50721
+3979,72559
+3980,29509
+3981,20444
+3982,13255
+3983,73015
+3984,66346
+3985,65960
+3986,65959
+3987,35097
+3988,31542
+3989,24325
+3990,77192
+3991,77192
+3992,66703
+3993,72966
+3994,78725
+3995,51400
+3996,24321
+3997,20756
+3998,77192
+3999,29509,62095
+4000,56246
+4001,72966
+4002,50878
+4003,67039
+4004,31542
+4005,15499
+4006,15500
+4007,35243
+4008,923
+4009,924
+4010,39962
+4011,35096
+4012,37204
+4013,55080
+4014,29621
+4015,67039
+4016,5297
+4017,5297
+4018,5297
+4019,14644
+4020,27255
+4021,50878
+4022,81669
+4023,48597
+4024,66693
+4025,55423
+4026,61796
+4027,53001
+4028,59380
+4029,21443
+4030,32456
+4031,21962
+4032,58103
+4033,57140
+4034,35097
+4035,57573
+4036,57573
+4037,19649
+4038,30896
+4039,65531
+4040,53599
+4041,28212
+4042,60448
+4043,62164
+4044,56119,62089
+4045,81781
+4046,29509
+4047,77192
+4048,72966
+4049,41390
+4050,53480,60448
+4051,52887
+4052,52887
+4053,29513
+4054,43104
+4055,74500,15858
+4056,21589,44251
+4057,71493,4055
+4058,23791
+4059,60450
+4060,60448
+4061,66703
+4062,283
+4063,283
+4064,41446
+4065,277
+4066,13817
+4067,13817
+4068,13818
+4069,13815
+4070,50912
+4071,39553
+4072,56917
+4073,54677
+4074,36381
+4075,40299
+4076,61258
+4077,29621
+4078,52887
+4079,39679
+4080,67039
+4081,74973
+4082,67038
+4083,67039
+4084,82092
+4085,3969
+4086,66703
+4087,702
+4088,603
+4089,45547
+4090,52887
+4091,75823
+4092,75823
+4093,35097
+4094,21963
+4095,20756
+4096,67039
+4097,35097
+4098,496
+4099,81781
+4100,21963
+4101,53842
+4102,8647
+4103,8748
+4104,8747
+4105,59380
+4106,52660
+4107,58798
+4108,32361
+4109,50215
+4110,29509
+4111,29509
+4112,14493
+4113,37150
+4114,32361
+4115,37150
+4116,37150
+4117,67575
+4118,31781
+4119,59380
+4120,52732
+4121,21589
+4122,31407
+4123,75958
+4124,24325
+4125,11933
+4126,44543
+4127,24325
+4128,51397
+4129,51396
+4130,31811
+4131,35096
+4132,21963
+4133,56246
+4134,73555
+4135,49341
+4136,40065
+4137,76070
+4138,13746
+4139,19231
+4140,81781
+4141,48028,60435
+4142,45302
+4143,78725
+4144,77192
+4145,66703
+4146,13020
+4147,56119
+4148,29621
+4149,54872
+4150,55081
+4151,52344
+4152,21996
+4153,31041
+4154,58798
+4155,40012
+4156,41878
+4157,41879
+4158,5345
+4159,3695
+4160,5346
+4161,29313
+4162,52660
+4163,24325
+4164,24321
+4165,20756
+4166,24325
+4167,68544
+4168,56219
+4169,55081
+4170,63017
+4171,35243
+4172,44702
+4173,61258
+4174,44703
+4175,66344
+4176,35097
+4177,29509
+4178,29509
+4179,38828
+4180,65960
+4181,51397
+4182,65960
+4183,40299
+4184,40303
+4185,21719
+4186,79650,31041
+4187,67039
+4188,29509,62089
+4189,6945
+4190,58103
+4191,31477
+4192,41103
+4193,21720
+4194,21719
+4195,29509,62089
+4196,23853
+4197,67038
+4198,36381,61622
+4199,26602,60435
+4200,19234
+4201,78725
+4202,2586
+4203,36049
+4204,38256
+4205,59502
+4206,5513
+4207,5514
+4208,67039
+4209,32473
+4210,59811,42436
+4211,67039
+4212,31542
+4213,55423
+4214,58798
+4215,3701
+4216,29509
+4217,57671
+4218,48957
+4219,6298
+4220,55081
+4221,31460
+4222,41879
+4223,41878
+4224,41879
+4225,19629
+4226,19629
+4227,19629
+4228,19629
+4229,19629
+4230,19629
+4231,19629
+4232,19629
+4233,37043
+4234,24321
+4235,31542
+4236,24325
+4237,55081
+4238,21719
+4239,35243
+4240,21720
+4241,44952
+4242,61254
+4243,44953
+4244,22642
+4245,32236
+4246,55081
+4247,36033
+4248,36033
+4249,40299
+4250,40065,72990
+4251,40303
+4252,15678
+4253,3295
+4254,3294
+4255,55022
+4256,13019
+4257,13020
+4258,79850
+4259,81251
+4260,24321
+4261,35097
+4262,32311
+4263,32311
+4264,29509,62089
+4265,79850
+4266,36055
+4267,46070
+4268,40299
+4269,40303
+4270,21963
+4271,24325
+4272,63601
+4273,60611
+4274,50604
+4275,67039
+4276,77192
+4277,32361
+4278,38676
+4279,32361
+4280,38676
+4281,23189
+4282,76330
+4283,65764
+4284,19649
+4285,58167,31041
+4286,58798
+4287,75823
+4288,32526
+4289,19164
+4290,38828
+4291,29509
+4292,36381,19231,31041
+4293,61086
+4294,74560
+4295,61622
+4296,38740
+4297,13372
+4298,20963
+4299,74435
+4300,24321
+4301,29509
+4302,24321
+4303,24325
+4304,51148
+4305,35243
+4306,61622
+4307,81781
+4308,21720
+4309,21719
+4310,21963
+4311,54980
+4312,61254
+4313,61252
+4314,67039
+4315,31542
+4316,56127
+4317,35243
+4318,19234
+4319,68520
+4320,24325
+4321,38179
+4322,8170,15623
+4323,23764
+4324,61086
+4325,496
+4326,497
+4327,724
+4328,31304
+4329,29509
+4330,604
+4331,603
+4332,55951
+4333,21963
+4334,21963
+4335,60120
+4336,5765
+4337,48957
+4338,25673
+4339,24325
+4340,52886
+4341,52887
+4342,68230
+4343,24224
+4344,59903
+4345,45758
+4346,80106
+4347,48597
+4348,50610
+4349,29621
+4350,59588
+4351,16912
+4352,7785
+4353,5777
+4354,15678
+4355,24325
+4356,31848
+4357,41700,61796
+4358,20756
+4359,65959
+4360,65960
+4361,52887
+4362,49817
+4363,66482
+4364,35917
+4365,34198
+4366,42436,72990
+4367,41879
+4368,16912
+4369,19231
+4370,28801,60611
+4371,64553
+4372,28014
+4373,33002,19231
+4374,37622
+4375,80421
+4376,29621
+4377,65959
+4378,65960
+4379,65960
+4380,24325
+4381,36381
+4382,15623
+4383,15622
+4384,74903
+4385,30460
+4386,38381
+4387,35242
+4388,34041
+4389,38785
+4390,80184
+4391,29621
+4392,40303
+4393,20425
+4394,20426
+4395,21719
+4396,21720
+4397,35875
+4398,39679
+4399,39678
+4400,44703
+4401,29621
+4402,60592
+4403,29526
+4404,21720
+4405,52887
+4406,21719
+4407,21720
+4408,4407
+4409,60592
+4410,2368
+4411,48957
+4412,32456
+4413,18091
+4414,66341
+4415,45946
+4416,45625
+4417,55022
+4418,4417
+4419,24321
+4420,20756
+4421,24325
+4422,35097
+4423,35097
+4424,35096
+4425,27508
+4426,39679
+4427,48957
+4428,21720
+4429,55294
+4430,29509
+4431,21719
+4432,66340
+4433,21963
+4434,29509,62089
+4435,66703
+4436,42436
+4437,59413
+4438,64747
+4439,43104
+4440,32473
+4441,67039
+4442,61086
+4443,52887
+4444,33797,29197
+4445,67038
+4446,52887
+4447,14504
+4448,33455
+4449,25522
+4450,44702
+4451,44703
+4452,80394
+4453,48957
+4454,21719
+4455,55081
+4456,19376
+4457,28801
+4458,60611
+4459,75741
+4460,29509
+4461,28801
+4462,51718
+4463,24325
+4464,25431
+4465,67039
+4466,48028
+4467,35097
+4468,56520
+4469,43355
+4470,43355
+4471,308
+4472,42436
+4473,21720
+4474,21719
+4475,56189
+4476,77192
+4477,67039
+4478,21720
+4479,24325
+4480,35874
+4481,39679
+4482,39678
+4483,13257
+4484,44702
+4485,61258
+4486,61258
+4487,29621
+4488,44703
+4489,235
+4490,234
+4491,60592
+4492,27763
+4493,52887
+4494,39679
+4495,43193
+4496,40299
+4497,40303
+4498,39679
+4499,29621
+4500,20756
+4501,55081
+4502,20756
+4503,67039
+4504,31542
+4505,24325
+4506,54979
+4507,21963
+4508,61622
+4509,60448
+4510,21719
+4511,21720
+4512,52886
+4513,52887
+4514,40889
+4515,55081
+4516,35874
+4517,40299
+4518,61254
+4519,52887
+4520,52887
+4521,41732
+4522,65581
+4523,61086
+4524,40303
+4525,55080
+4526,55081,4525
+4527,21963
+4528,54980
+4529,54979
+4530,40299
+4531,20756
+4532,40299
+4533,40303
+4534,5765
+4535,55022
+4536,4535
+4537,55081
+4538,48957
+4539,32456
+4540,71493,36381
+4541,54767
+4542,35095
+4543,20196,24036
+4544,39679
+4545,62914
+4546,49817
+4547,52887
+4548,39679
+4549,67039
+4550,5765
+4551,15679
+4552,5777
+4553,55022
+4554,43104
+4555,5765
+4556,60639,31041
+4557,29509
+4558,51068
+4559,69998
+4560,33897
+4561,65581
+4562,32488
+4563,76861
+4564,24261
+4565,61875
+4566,57924
+4567,79031
+4568,5007
+4569,2126
+4570,35243
+4571,24325
+4572,31155
+4573,61858
+4574,44703
+4575,44703
+4576,41879
+4577,41878
+4578,55081
+4579,55081
+4580,21719
+4581,21720
+4582,40299
+4583,40303
+4584,55081
+4585,40299
+4586,55951
+4587,15311
+4588,3281
+4589,38441
+4590,15311
+4591,48768
+4592,46779
+4593,37908,48028
+4594,56119,62089
+4595,15623
+4596,43104
+4597,15622
+4598,50227
+4599,67039
+4600,67039
+4601,58798
+4602,29509,62089
+4603,81142
+4604,29509
+4605,43104
+4606,5765
+4607,23582
+4608,70033
+4609,28801,60611
+4610,50604
+4611,52887
+4612,52887
+4613,41310
+4614,16386
+4615,73081
+4616,15311
+4617,32538
+4618,41607
+4619,41607
+4620,39679
+4621,21719
+4622,21720
+4623,75942
+4624,5765
+4625,5235
+4626,63327
+4627,49353
+4628,25303
+4629,15039
+4630,24722
+4631,4632
+4632,55022
+4633,61622
+4634,66344
+4635,3281
+4636,66703
+4637,57277
+4638,43104
+4639,43104
+4640,56119,62089
+4641,8205
+4642,73555
+4643,27088
+4644,55951
+4645,35787
+4646,8291
+4647,49817
+4648,49817
+4649,24555
+4650,66703
+4651,35097
+4652,67039
+4653,50638
+4654,7660
+4655,30410
+4656,63488
+4657,56189
+4658,78140
+4659,19497
+4660,76149
+4661,25302
+4662,34746
+4663,34746
+4664,40299
+4665,40303
+4666,52886
+4667,52887
+4668,52886
+4669,52887
+4670,52886
+4671,52887
+4672,21963
+4673,52887
+4674,52886,9568
+4675,67039
+4676,29509
+4677,58798,51718
+4678,39678
+4679,29509
+4680,49817
+4681,58798
+4682,59588
+4683,81161
+4684,67039
+4685,19234
+4686,75823
+4687,72990
+4688,49162
+4689,58798
+4690,33355
+4691,28801
+4692,56246
+4693,617
+4694,77192
+4695,81781
+4696,42436,72990
+4697,29509
+4698,77192
+4699,40012
+4700,74560
+4701,37408,48768
+4702,19231
+4703,81781
+4704,40012
+4705,50215
+4706,68481
+4707,19231
+4708,47503
+4709,34746
+4710,58178
+4711,31041
+4712,30635
+4713,20756
+4714,20756
+4715,40303
+4716,29509
+4717,77192
+4718,56230
+4719,6984
+4720,14493
+4721,66071
+4722,67039
+4723,43104
+4724,48028
+4725,76782
+4726,19649
+4727,19649
+4728,54420,17468
+4729,19649
+4730,19649
+4731,19649
+4732,81781
+4733,58798
+4734,67920
+4735,36381,58915
+4736,77192
+4737,58798
+4738,21963
+4739,496
+4740,3969
+4741,497
+4742,66703
+4743,702
+4744,23471
+4745,74625
+4746,603
+4747,24249
+4748,29509
+4749,31041
+4750,24325
+4751,37043
+4752,54786
+4753,31041
+4754,23712
+4755,67039
+4756,21444
+4757,29509
+4758,52887
+4759,52886
+4760,31542
+4761,52887
+4762,41878
+4763,79850
+4764,66703
+4765,30461
+4766,6952
+4767,42436,10160
+4768,61796
+4769,59380
+4770,75958
+4771,59380
+4772,60448
+4773,34389
+4774,58068,72990,1417
+4775,45971
+4776,63017
+4777,60822
+4778,39480
+4779,56127
+4780,21963
+4781,65960
+4782,55081
+4783,24325
+4784,24321
+4785,21720
+4786,24325
+4787,52887
+4788,35243
+4789,72892
+4790,72892
+4791,72990
+4792,65960
+4793,15040
+4794,39679
+4795,39678
+4796,35243
+4797,72966
+4798,19231
+4799,39679
+4800,38680
+4801,38680
+4802,38680
+4803,38680
+4804,19649
+4805,38680
+4806,38680
+4807,19649
+4808,38680
+4809,38680
+4810,38680
+4811,38680
+4812,38680
+4813,48599
+4814,38680
+4815,38680
+4816,38680
+4817,38680
+4818,38680
+4819,38680
+4820,46149
+4821,58798
+4822,21720
+4823,20756
+4824,21720
+4825,21719
+4826,65959
+4827,65960
+4828,20756
+4829,60448,51702
+4830,72966
+4831,53480,60448
+4832,35243
+4833,67039
+4834,63459
+4835,63460
+4836,67039
+4837,52886
+4838,52887
+4839,79110
+4840,20426
+4841,29509,62089
+4842,66703
+4843,29621
+4844,35875
+4845,25303
+4846,74888,68474
+4847,7658
+4848,28028
+4849,32473
+4850,60120
+4851,28801,60611
+4852,79041
+4853,56230
+4854,60448,37204
+4855,51186
+4856,29653
+4857,77192
+4858,56119
+4859,7658
+4860,55423
+4861,15623
+4862,15622
+4863,8360
+4864,8360
+4865,22850
+4866,39679
+4867,65960
+4868,69998
+4869,21720
+4870,14504
+4871,39608
+4872,39608
+4873,27763
+4874,35242
+4875,61258
+4876,65958
+4877,56246
+4878,21719
+4879,35656
+4880,29621
+4881,20425
+4882,35243
+4883,52887
+4884,70656
+4885,81781
+4886,61622
+4887,39679
+4888,39678
+4889,29621
+4890,55303
+4891,61258
+4892,39679
+4893,55304
+4894,52887
+4895,67039
+4896,75344
+4897,41879
+4898,20756
+4899,35874
+4900,52886
+4901,52887
+4902,60448
+4903,81781
+4904,62922
+4905,55081
+4906,7734
+4907,18520
+4908,70166
+4909,21963
+4910,47128
+4911,37908
+4912,19234,70426
+4913,60448
+4914,55081
+4915,29509
+4916,35242
+4917,29621
+4918,56119
+4919,21012,56099
+4920,35097
+4921,21963
+4922,81781
+4923,11974
+4924,20756
+4925,20756
+4926,24325
+4927,24321
+4928,20756
+4929,14493
+4930,40303
+4931,40299
+4932,60448
+4933,24321
+4934,35097
+4935,39713
+4936,78434
+4937,6952
+4938,53480
+4939,32547
+4940,61254
+4941,61252
+4942,35097
+4943,52887
+4944,29621
+4945,39679
+4946,35243
+4947,29621
+4948,52886
+4949,52887
+4950,67039
+4951,21962
+4952,21963
+4953,65960
+4954,20756
+4955,35242
+4956,35097
+4957,52887
+4958,42337
+4959,57140
+4960,35097
+4961,19385
+4962,48597
+4963,35473
+4964,55223
+4965,20756
+4966,20425
+4967,29621
+4968,40012
+4969,20472
+4970,72990
+4971,34198
+4972,34198
+4973,34198
+4974,34198
+4975,34198
+4976,39545
+4977,38091
+4978,57561
+4979,65531
+4980,33353
+4981,77192
+4982,283
+4983,56119,62089
+4984,41446
+4985,277
+4986,29509,62089
+4987,66703
+4988,29509
+4989,60967
+4990,29509
+4991,76135,45839
+4992,46459
+4993,35918
+4994,35918
+4995,35918
+4996,35918
+4997,35918
+4998,46459
+4999,46459
+5000,46459
+5001,46459
+5002,35918
+5003,35918
+5004,35918
+5005,35918
+5006,35918
+5007,35918
+5008,35918
+5009,35918
+5010,46459
+5011,35918
+5012,76134
+5013,81781
+5014,235
+5015,77192
+5016,29509
+5017,35097
+5018,56119,62089
+5019,37408
+5020,24325
+5021,67039
+5022,52887
+5023,29190
+5024,64747
+5025,54813
+5026,81801
+5027,75828
+5028,62852,67582
+5029,48957
+5030,32456
+5031,18091
+5032,41593
+5033,32456
+5034,36008
+5035,55022
+5036,58104
+5037,5035
+5038,72960
+5039,50878
+5040,28889
+5041,66440,71603
+5042,14493
+5043,42531
+5044,3281
+5045,76782
+5046,66703
+5047,9930
+5048,81467
+5049,47394
+5050,39803
+5051,76782
+5052,39802
+5053,16703
+5054,68520
+5055,3705
+5056,35474
+5057,43910
+5058,43104
+5059,29509
+5060,31041
+5061,37908
+5062,61622,29737
+5063,59413
+5064,22402,42436
+5065,60611
+5066,63295
+5067,64453
+5068,31542
+5069,6945
+5070,29489
+5071,794
+5072,58103
+5073,6952
+5074,65581
+5075,36049
+5076,65762
+5077,21963
+5078,27763
+5079,29509
+5080,21719
+5081,39679
+5082,81781
+5083,81781
+5084,29509
+5085,2080
+5086,61796
+5087,18748
+5088,72966
+5089,62390
+5090,35243
+5091,73342
+5092,42436,53277
+5093,52397,31041
+5094,35917
+5095,50346
+5096,73650
+5097,43809
+5098,51396
+5099,50628,1417
+5100,31542
+5101,65960
+5102,21963
+5103,39803
+5104,55081
+5105,81683
+5106,55081
+5107,81687
+5108,71187
+5109,56246,19389
+5110,15160,51640
+5111,8162
+5112,56171
+5113,81781
+5114,54980
+5115,24321
+5116,24325
+5117,29509
+5118,19231
+5119,21596
+5120,52660
+5121,53717
+5122,23440
+5123,65959
+5124,24325
+5125,35097
+5126,35096
+5127,21719
+5128,35097
+5129,27625
+5130,50610
+5131,62853
+5132,35474
+5133,55081
+5134,67039
+5135,61622,36381
+5136,65960
+5137,39679
+5138,39679
+5139,52887
+5140,39678
+5141,39679
+5142,32538
+5143,29549
+5144,29509,62089
+5145,56119,62089
+5146,8319
+5147,81251
+5148,29509,62089
+5149,77192
+5150,21765
+5151,55692
+5152,58798
+5153,52886
+5154,31041
+5155,78725
+5156,35342
+5157,29509,62089
+5158,50912
+5159,81781
+5160,24325
+5161,31616
+5162,74600
+5163,15311
+5164,33797
+5165,32645
+5166,32642
+5167,1755
+5168,32953
+5169,77192,62089
+5170,20430,38509
+5171,76134
+5172,50205
+5173,20120
+5174,29509
+5175,46148
+5176,30584
+5177,29509,62089
+5178,57671,37918
+5179,7658
+5180,29509
+5181,23693
+5182,35243
+5183,71347
+5184,81781
+5185,29509,62089
+5186,19234
+5187,56119
+5188,52887
+5189,29509
+5190,18088
+5191,56115
+5192,23100
+5193,30166
+5194,32497
+5195,38914
+5196,37582
+5197,61251
+5198,41877
+5199,23586
+5200,23586
+5201,55022
+5202,62266
+5203,58462
+5204,35282
+5205,32370
+5206,24371
+5207,45813
+5208,35103
+5209,35103
+5210,31041
+5211,7658
+5212,1511
+5213,3281
+5214,71603,70426
+5215,21720
+5216,21719
+5217,51068
+5218,47830
+5219,71996
+5220,15311
+5221,21720
+5222,2368
+5223,48554
+5224,28438
+5225,22402
+5226,59811
+5227,51894
+5228,75940
+5229,31894
+5230,1317
+5231,43104
+5232,11881
+5233,43104
+5234,43104
+5235,3386
+5236,68544
+5237,43104
+5238,6624
+5239,6637
+5240,5777
+5241,30937
+5242,66052
+5243,1319
+5244,35787
+5245,11018
+5246,73555
+5247,77192
+5248,32473
+5249,32456
+5250,75958
+5251,55487
+5252,3701
+5253,39802
+5254,26827
+5255,44241
+5256,40752
+5257,27167
+5258,45115
+5259,51400
+5260,3230
+5261,3228
+5262,29553
+5263,32345
+5264,46521
+5265,21959
+5266,68678
+5267,48028,48768
+5268,77192
+5269,35096
+5270,61258
+5271,45758
+5272,40018
+5273,66703
+5274,55081
+5275,35097
+5276,60620
+5277,26884
+5278,25303
+5279,40299
+5280,40303
+5281,21720
+5282,21963
+5283,27763
+5284,55081
+5285,60592
+5286,29621
+5287,21963
+5288,61254
+5289,57277
+5290,76134
+5291,76134,55944
+5292,5297
+5293,5297
+5294,5297
+5295,5297
+5296,32362
+5297,30693
+5298,24325
+5299,60592
+5300,15822
+5301,55022
+5302,15820
+5303,28747
+5304,65959
+5305,22808
+5306,21996
+5307,65767
+5308,7420
+5309,65581
+5310,20756
+5311,74811
+5312,9043
+5313,56119
+5314,29509
+5315,48768
+5316,63488
+5317,20804
+5318,49817
+5319,49817
+5320,11961
+5321,13769
+5322,9043
+5323,9043
+5324,9043
+5325,9043
+5326,9043
+5327,9043
+5328,9043
+5329,9043
+5330,62914
+5331,9043,67582
+5332,49817
+5333,9043,67582
+5334,72429
+5335,76134
+5336,49817
+5337,9043
+5338,72960
+5339,48957
+5340,49817
+5341,55081
+5342,22821
+5343,24325
+5344,283
+5345,277
+5346,308
+5347,37704
+5348,36047
+5349,32326
+5350,34389
+5351,32660
+5352,45813
+5353,55022
+5354,5353
+5355,12340
+5356,21432
+5357,21433
+5358,29509
+5359,81781
+5360,22649
+5361,55081
+5362,11714
+5363,37908
+5364,77185
+5365,28801
+5366,20339
+5367,35917
+5368,63459
+5369,29509
+5370,60611
+5371,60620
+5372,52887
+5373,42436,13746
+5374,60536
+5375,40012
+5376,57480
+5377,77192
+5378,79591
+5379,61086
+5380,39803
+5381,47505
+5382,57671
+5383,55423
+5384,79850
+5385,55423
+5386,57474
+5387,8644
+5388,5386
+5389,29509
+5390,3295
+5391,55022
+5392,35096
+5393,35097
+5394,55081
+5395,35242
+5396,35243
+5397,40303
+5398,43104
+5399,18149
+5400,56171
+5401,24325
+5402,24325
+5403,65960
+5404,52887
+5405,65959
+5406,29621
+5407,19341,37324
+5408,21719
+5409,66703
+5410,64250
+5411,62914
+5412,55951
+5413,31014
+5414,40299
+5415,40303
+5416,55081
+5417,40299
+5418,52886
+5419,21963
+5420,52887
+5421,55081
+5422,55081
+5423,20426
+5424,31041
+5425,73014
+5426,63327
+5427,52887
+5428,81781
+5429,61622,36381
+5430,14071
+5431,14071
+5432,66703
+5433,60216
+5434,46149
+5435,12045
+5436,49162
+5437,43672
+5438,48957
+5439,81781
+5440,28938
+5441,77192
+5442,55081
+5443,40299
+5444,40303
+5445,8652
+5446,55081
+5447,47505
+5448,7420
+5449,3701
+5450,24325
+5451,24321
+5452,20756
+5453,40299
+5454,35097
+5455,19966
+5456,81781
+5457,20999
+5458,39803
+5459,21963
+5460,8409
+5461,21963
+5462,16342
+5463,22420
+5464,60448
+5465,35096
+5466,35097
+5467,37043
+5468,70707
+5469,65959
+5470,21963
+5471,21963
+5472,55081
+5473,63460
+5474,37815
+5475,39294
+5476,69363
+5477,43104
+5478,41882
+5479,79650,31041
+5480,14829
+5481,72559
+5482,71334
+5483,5777
+5484,46901
+5485,18088
+5486,56115
+5487,72193
+5488,28546
+5489,29555
+5490,66341
+5491,31175
+5492,18869
+5493,37582
+5494,41398
+5495,45316
+5496,36166
+5497,48870
+5498,74815
+5499,50597
+5500,25770
+5501,2498
+5502,61266
+5503,62910
+5504,67474
+5505,69352
+5506,71500
+5507,71933
+5508,72540
+5509,75548
+5510,77227
+5511,80079
+5512,80080
+5513,5501
+5514,5501
+5515,40299
+5516,40303
+5517,52887
+5518,77192
+5519,22056
+5520,20427
+5521,15311
+5522,55951
+5523,65527,46149
+5524,15311
+5525,60822
+5526,55081
+5527,54980
+5528,67039
+5529,77192
+5530,35243
+5531,22642
+5532,81687
+5533,67039
+5534,15326
+5535,41879
+5536,19629
+5537,19629
+5538,41878
+5539,41879
+5540,41878
+5541,41882
+5542,29621
+5543,60592
+5544,47925
+5545,38173
+5546,76664
+5547,6952
+5548,35242
+5549,44702
+5550,21719
+5551,20756
+5552,6945
+5553,21720
+5554,29509
+5555,37150
+5556,40299
+5557,24325
+5558,60448
+5559,60448
+5560,55081
+5561,35243
+5562,21720
+5563,67039
+5564,52660
+5565,16912
+5566,40303
+5567,55081
+5568,45670
+5569,3701
+5570,55081
+5571,43104
+5572,841
+5573,841
+5574,13815
+5575,76135
+5576,25303
+5577,5576
+5578,5576
+5579,5576,11852
+5580,5576
+5581,5576
+5582,5576
+5583,5576
+5584,5576
+5585,5576
+5586,5576
+5587,3281
+5588,24199
+5589,63863
+5590,52604
+5591,68520
+5592,45873
+5593,52887
+5594,283
+5595,40303
+5596,52886
+5597,39678
+5598,61258
+5599,39679
+5600,52887
+5601,55081
+5602,52660
+5603,76134,46899
+5604,76135
+5605,11472
+5606,21996,53480
+5607,59126
+5608,27763
+5609,6952
+5610,15311
+5611,52887
+5612,52886
+5613,65960
+5614,25302
+5615,55081
+5616,35242,5617
+5617,61258
+5618,31542
+5619,8331
+5620,29509,62095
+5621,27118
+5622,21963
+5623,52887
+5624,8302
+5625,52886
+5626,52887
+5627,67039
+5628,55080
+5629,55081
+5630,21963
+5631,55081
+5632,21963
+5633,21720
+5634,6952
+5635,24325
+5636,283
+5637,5692
+5638,75684
+5639,28801
+5640,40514
+5641,58798
+5642,67039
+5643,24325
+5644,6952
+5645,35243
+5646,41297
+5647,67039
+5648,35243
+5649,41878
+5650,41882
+5651,41879
+5652,52887
+5653,51397
+5654,61252
+5655,61254
+5656,70033
+5657,70033
+5658,60611
+5659,71584
+5660,38332
+5661,52886
+5662,52887
+5663,35243
+5664,5666
+5665,724
+5666,56171
+5667,33408
+5668,81635
+5669,40299
+5670,40303
+5671,67957
+5672,21754
+5673,21754
+5674,29509
+5675,52904
+5676,7734
+5677,7735
+5678,29509
+5679,8647
+5680,32473
+5681,16058
+5682,8650,64250
+5683,25303
+5684,1719
+5685,1718
+5686,55022
+5687,24325
+5688,49817
+5689,49817
+5690,49817
+5691,283
+5692,277
+5693,55022
+5694,79850
+5695,63651
+5696,30374
+5697,49079
+5698,73863
+5699,40303
+5700,32456
+5701,8397
+5702,52887
+5703,29621
+5704,20756
+5705,61258
+5706,35243
+5707,40303
+5708,43116
+5709,22450
+5710,5709
+5711,5709
+5712,5709
+5713,5709
+5714,5709
+5715,54184
+5716,52887
+5717,24325
+5718,29509
+5719,42436
+5720,35097
+5721,63459
+5722,29621
+5723,35874
+5724,53480
+5725,65960
+5726,21720
+5727,52887
+5728,52887
+5729,29621
+5730,35875
+5731,65960
+5732,35097
+5733,46510
+5734,21963
+5735,24325
+5736,50053
+5737,20756
+5738,67039
+5739,67038
+5740,52887
+5741,66703
+5742,6867
+5743,72388
+5744,21720
+5745,5765,277
+5746,31656
+5747,5765,1319
+5748,22671
+5749,78024
+5750,44976
+5751,49842
+5752,58356
+5753,81520
+5754,77192
+5755,36381
+5756,49136
+5757,59331
+5758,33422
+5759,17465,5758
+5760,20756
+5761,6426
+5762,21754
+5763,31656
+5764,30391
+5765,48210
+5766,28269
+5767,43104
+5768,81669
+5769,21814
+5770,26457
+5771,24428
+5772,24504
+5773,25132
+5774,41587
+5775,70302
+5776,28862
+5777,32456
+5778,32704
+5779,32837
+5780,33271
+5781,33408
+5782,34959
+5783,35992
+5784,67608
+5785,66592
+5786,46444
+5787,63898
+5788,43566
+5789,44758
+5790,45170
+5791,46567
+5792,32915
+5793,50179
+5794,50426
+5795,50934
+5796,51867
+5797,78017
+5798,52664
+5799,57254
+5800,66792
+5801,59405
+5802,60024
+5803,46753
+5804,64383
+5805,37344
+5806,66901
+5807,67819
+5808,67836
+5809,68555
+5810,26639
+5811,70320
+5812,71028
+5813,71500
+5814,72157
+5815,74809
+5816,78024
+5817,77101
+5818,57289
+5819,80340
+5820,80354
+5821,80324
+5822,81153
+5823,81454
+5824,39860
+5825,81572
+5826,21919
+5827,61748
+5828,41882
+5829,41879
+5830,6840
+5831,37081
+5832,29621
+5833,55951
+5834,20756
+5835,24321
+5836,20756
+5837,24379,46148
+5838,67668
+5839,20575
+5840,35097
+5841,52887
+5842,11472
+5843,55081
+5844,29621
+5845,40303
+5846,10935
+5847,13817
+5848,72283
+5849,21432
+5850,20575
+5851,29509
+5852,81462
+5853,62512
+5854,1319
+5855,55423
+5856,74666
+5857,56127
+5858,41879
+5859,29549
+5860,75823
+5861,277
+5862,9215
+5863,67883
+5864,35097
+5865,65960
+5866,74867
+5867,47673
+5868,36055
+5869,61967
+5870,44567
+5871,40299
+5872,20756
+5873,25303
+5874,29621
+5875,57671
+5876,2751
+5877,50215
+5878,59903
+5879,63586
+5880,68994
+5881,63327
+5882,25303
+5883,62853,31949
+5884,25303
+5885,51068
+5886,51677
+5887,47833
+5888,19983
+5889,63187
+5890,43682
+5891,71334
+5892,21938
+5893,21963
+5894,71332
+5895,36350
+5896,44952
+5897,61258
+5898,39803
+5899,35097
+5900,44953
+5901,49817
+5902,60611
+5903,75744
+5904,76196
+5905,19231
+5906,19231
+5907,49817
+5908,29509
+5909,11717
+5910,44703
+5911,24325
+5912,24321
+5913,20756
+5914,48957
+5915,38545
+5916,50339
+5917,31041,60639
+5918,67668,39614
+5919,20575
+5920,35917
+5921,39803
+5922,20635,42481
+5923,1752
+5924,27204
+5925,65579
+5926,28801,60611
+5927,29509
+5928,25984
+5929,22984
+5930,31846
+5931,29549
+5932,59380
+5933,77192
+5934,77192
+5935,62176
+5936,48957
+5937,15039
+5938,49817
+5939,56230
+5940,71624
+5941,81781
+5942,8290
+5943,81687
+5944,81683
+5945,81687
+5946,40807
+5947,54632
+5948,54632
+5949,54632
+5950,54632
+5951,54632
+5952,75958
+5953,75958
+5954,47265
+5955,62852,76782
+5956,33928
+5957,39803
+5958,74525
+5959,11480
+5960,57109
+5961,52811
+5962,14504
+5963,39803
+5964,58798
+5965,31533
+5966,77192
+5967,77192
+5968,77192
+5969,6984
+5970,60611
+5971,50604
+5972,59139
+5973,19658
+5974,18444
+5975,19649
+5976,50610
+5977,50610
+5978,47925
+5979,32155
+5980,47925
+5981,40063
+5982,32155
+5983,19649
+5984,49372,50610
+5985,50610
+5986,32155
+5987,47925
+5988,34647
+5989,25016
+5990,28269
+5991,14644
+5992,47925
+5993,61796
+5994,59380
+5995,71557
+5996,27738
+5997,21963
+5998,52886
+5999,52887
+6000,40012
+6001,6054
+6002,55951
+6003,57963,20517
+6004,21720
+6005,36602
+6006,81781
+6007,49817
+6008,7766
+6009,49817
+6010,7766
+6011,7766
+6012,56802
+6013,36602
+6014,53480
+6015,57140
+6016,50604
+6017,27763
+6018,29509
+6019,67049,66500
+6020,43104
+6021,55081
+6022,57140
+6023,29509
+6024,57187
+6025,69197
+6026,35097
+6027,31279
+6028,81781
+6029,30584
+6030,20339
+6031,22386
+6032,4389
+6033,9444
+6034,32456
+6035,48957
+6036,36008
+6037,13590
+6038,12225
+6039,81683
+6040,61258
+6041,29621
+6042,56142
+6043,13746
+6044,39294
+6045,50610
+6046,19649
+6047,28080
+6048,43104
+6049,5777
+6050,5765
+6051,62733
+6052,1718
+6053,55022
+6054,17497
+6055,29509
+6056,35243
+6057,20339
+6058,4389
+6059,5576
+6060,5576
+6061,5576
+6062,5576
+6063,5576
+6064,9444
+6065,17645
+6066,75958
+6067,51558
+6068,40288
+6069,40288
+6070,28842
+6071,28801
+6072,28801
+6073,70860
+6074,61159
+6075,54980
+6076,54979
+6077,40303
+6078,40299
+6079,41879
+6080,41878
+6081,61622,48634
+6082,70426
+6083,81781
+6084,35243
+6085,35242
+6086,33928
+6087,77192
+6088,46059
+6089,42436,72990
+6090,41879
+6091,5777
+6092,81781
+6093,36892
+6094,21397
+6095,73650
+6096,49340
+6097,1919
+6098,22649
+6099,81781
+6100,38439
+6101,5190
+6102,36381
+6103,38828
+6104,67039
+6105,29509
+6106,66703
+6107,46070
+6108,61086
+6109,14290
+6110,77192
+6111,39658
+6112,8397
+6113,23582
+6114,34990
+6115,702
+6116,42050
+6117,61942
+6118,71074
+6119,73576
+6120,82020
+6121,603
+6122,51148
+6123,28801
+6124,21209
+6125,21208
+6126,67039
+6127,4815
+6128,12711
+6129,41879
+6130,3281
+6131,19231
+6132,19234
+6133,19234
+6134,61086
+6135,33797
+6136,17434
+6137,19649
+6138,20756
+6139,68801
+6140,75958
+6141,75958
+6142,48028
+6143,81781
+6144,13746
+6145,48028
+6146,48028
+6147,40012
+6148,51404
+6149,48597
+6150,50907
+6151,32527
+6152,54617
+6153,19649
+6154,81781
+6155,21720
+6156,21719
+6157,61316
+6158,21720
+6159,70764
+6160,24321
+6161,24325
+6162,21719
+6163,1549
+6164,31542
+6165,12045
+6166,29509
+6167,42237
+6168,77192
+6169,77192
+6170,61086
+6171,29509
+6172,29509
+6173,66703
+6174,30986
+6175,14504
+6176,67039
+6177,22032
+6178,46018
+6179,52887
+6180,71603
+6181,60611
+6182,59875
+6183,72990
+6184,72519
+6185,35243
+6186,35242
+6187,38565
+6188,69335
+6189,71347
+6190,53480,60611
+6191,20529
+6192,69237
+6193,20339
+6194,4389
+6195,9444
+6196,51148
+6197,496
+6198,497
+6199,72990
+6200,65767
+6201,66703
+6202,67039
+6203,58798
+6204,81781
+6205,5777
+6206,6298
+6207,21428
+6208,7766
+6209,37693
+6210,67582
+6211,47059
+6212,41593
+6213,58104
+6214,22640
+6215,22645
+6216,31041
+6217,60611
+6218,42436,35103
+6219,603
+6220,80106
+6221,67039
+6222,74500
+6223,45280
+6224,5765
+6225,19647
+6226,39803
+6227,39803
+6228,72966
+6229,29509
+6230,62956,81781,617,68290
+6231,46148
+6232,21720
+6233,70320
+6234,35097
+6235,24325
+6236,76782
+6237,76782
+6238,35097
+6239,20946
+6240,77192
+6241,49817
+6242,7766
+6243,49817
+6244,7766
+6245,5411
+6246,49817
+6247,49817
+6248,49817
+6249,49817
+6250,77192
+6251,61086
+6252,63488
+6253,55495
+6254,59380
+6255,72961
+6256,30391
+6257,26105
+6258,68783
+6259,56119,62089
+6260,24325
+6261,24321
+6262,38828
+6263,35243
+6264,14516
+6265,68520
+6266,56115
+6267,18882
+6268,2938
+6269,41153
+6270,6152
+6271,43104
+6272,62176
+6273,66341
+6274,6298
+6275,65579
+6276,80106
+6277,78477
+6278,80868
+6279,26354
+6280,75204
+6281,36101
+6282,36452
+6283,41446
+6284,41606
+6285,45625
+6286,74067
+6287,25729
+6288,69408
+6289,50597
+6290,34613
+6291,50364
+6292,51834
+6293,53150
+6294,40241
+6295,59497
+6296,61776
+6297,69673
+6298,43104
+6299,53030
+6300,44232
+6301,35908
+6302,75548
+6303,35557
+6304,6281
+6305,5765
+6306,29079
+6307,60611
+6308,50985
+6309,29509
+6310,56520,20535
+6311,40986
+6312,63603
+6313,70874
+6314,12045
+6315,12045
+6316,48028
+6317,80591
+6318,39623
+6319,37127
+6320,62626
+6321,22019
+6322,3695
+6323,33728
+6324,43104
+6325,72961
+6326,12045
+6327,29771
+6328,14290
+6329,24325
+6330,24321
+6331,35595,61415
+6332,82163
+6333,57140
+6334,37127
+6335,43104
+6336,5191
+6337,18088
+6338,21443
+6339,51397
+6340,8409
+6341,14301
+6342,38828,56246
+6343,37204
+6344,27763
+6345,61622
+6346,25175
+6347,14290
+6348,36381
+6349,58798,21674
+6350,51702
+6351,63459
+6352,20756
+6353,60611
+6354,79850
+6355,81781
+6356,36381
+6357,79850
+6358,29509
+6359,18079
+6360,277
+6361,69083
+6362,21719
+6363,24325
+6364,21444,37908
+6365,28938
+6366,24325
+6367,48768
+6368,35243
+6369,35242
+6370,56119
+6371,40303
+6372,49833
+6373,30218
+6374,24224
+6375,24321
+6376,24325
+6377,60445
+6378,55952
+6379,41879
+6380,25175
+6381,25175
+6382,51068
+6383,43812
+6384,81463
+6385,67272
+6386,34989
+6387,19231
+6388,283
+6389,41446
+6390,277
+6391,60611
+6392,81781
+6393,56119
+6394,21420
+6395,5111
+6396,3297
+6397,40299
+6398,20756
+6399,77192
+6400,40303
+6401,6952
+6402,3278
+6403,3279
+6404,29509
+6405,21995
+6406,77192
+6407,58798
+6408,39803
+6409,55423
+6410,48957
+6411,55951
+6412,43104
+6413,6514
+6414,37127,35342
+6415,24321
+6416,67039
+6417,20575
+6418,40303
+6419,21963
+6420,40303
+6421,79850
+6422,43104
+6423,14516
+6424,35492
+6425,48210
+6426,67920
+6427,65533
+6428,43104
+6429,21996
+6430,21963
+6431,76330
+6432,37204
+6433,21720
+6434,51640
+6435,65764
+6436,51843
+6437,20756
+6438,24325
+6439,24325
+6440,24325
+6441,35787
+6442,23693
+6443,77192
+6444,24325
+6445,53480
+6446,44446
+6447,81781
+6448,68290
+6449,60620
+6450,77192
+6451,23471
+6452,48957
+6453,29509,62089
+6454,23471
+6455,65960
+6456,283
+6457,277
+6458,55022
+6459,21443
+6460,40303
+6461,60611
+6462,66703
+6463,72990
+6464,56133,72283
+6465,7658
+6466,66703
+6467,20756
+6468,72961
+6469,55951
+6470,6426
+6471,69042,66528
+6472,19234
+6473,61622,36381
+6474,35243
+6475,46148
+6476,81781
+6477,30405
+6478,13746
+6479,47503
+6480,42436,59576
+6481,29509
+6482,70426,19234
+6483,21444
+6484,66703
+6485,19231
+6486,18748
+6487,24321
+6488,24325
+6489,7658
+6490,29509,62095
+6491,6298
+6492,55423
+6493,81781
+6494,29621
+6495,21719
+6496,21720
+6497,40299
+6498,40303
+6499,41879
+6500,41877
+6501,41877
+6502,41879
+6503,41877
+6504,20426
+6505,29621
+6506,31121,38029
+6507,56127
+6508,8291
+6509,48768
+6510,52504
+6511,51626,55091
+6512,21444
+6513,58798
+6514,3278
+6515,43104
+6516,35243
+6517,7658
+6518,53480
+6519,24325
+6520,65959
+6521,65960
+6522,24321
+6523,20756
+6524,39803
+6525,28801,60611
+6526,50604
+6527,35243
+6528,43104
+6529,52887
+6530,42381
+6531,29509,62089
+6532,41878
+6533,41879
+6534,36987
+6535,5350
+6536,21805
+6537,7467
+6538,22850
+6539,60611
+6540,32390
+6541,48851
+6542,81781
+6543,65959
+6544,21720
+6545,42410
+6546,21719
+6547,57140
+6548,35097
+6549,67462
+6550,31542
+6551,70209
+6552,60216
+6553,71853
+6554,40299
+6555,40303
+6556,17434
+6557,34416
+6558,43858
+6559,47925
+6560,25303
+6561,35342
+6562,57109,36381
+6563,52887
+6564,29509
+6565,31782
+6566,18871
+6567,16340
+6568,37693
+6569,67039
+6570,29509
+6571,8397
+6572,49817
+6573,29509,62089
+6574,35097
+6575,35096
+6576,61258
+6577,35097
+6578,41635
+6579,35097
+6580,41635
+6581,41635
+6582,41635
+6583,40303
+6584,65960
+6585,24325
+6586,29276
+6587,67039
+6588,46285
+6589,41878
+6590,41879
+6591,21719
+6592,52886
+6593,52887
+6594,21719
+6595,20756
+6596,21720
+6597,5501
+6598,9043
+6599,9043
+6600,9043
+6601,9043
+6602,9043
+6603,9043
+6604,53295,59588
+6605,56119
+6606,74625
+6607,66042
+6608,56119,62089
+6609,3969
+6610,702
+6611,1324
+6612,603
+6613,14638
+6614,3240
+6615,55022
+6616,24325
+6617,49951
+6618,67038
+6619,61258
+6620,21963
+6621,52886
+6622,52887
+6623,21963
+6624,5765
+6625,18088
+6626,603
+6627,30147
+6628,23582
+6629,23582
+6630,79608
+6631,50364
+6632,53616
+6633,41401
+6634,55022
+6635,69688
+6636,61680
+6637,8209
+6638,33486
+6639,71997
+6640,5777
+6641,14290
+6642,8170,974
+6643,40299
+6644,40303
+6645,65960
+6646,21719
+6647,21720
+6648,31041
+6649,52461
+6650,55952
+6651,63586
+6652,56189
+6653,21962
+6654,62938
+6655,68289
+6656,68782
+6657,77192
+6658,61086
+6659,19311
+6660,67039
+6661,283
+6662,277
+6663,55022
+6664,23740
+6665,416
+6666,68520,58798
+6667,46148
+6668,28801
+6669,30461,63255
+6670,5765
+6671,81781
+6672,75823
+6673,47497
+6674,19231
+6675,34746
+6676,43313
+6677,2126
+6678,81781,36381
+6679,19231
+6680,63459
+6681,1752
+6682,66703
+6683,34746
+6684,79338
+6685,21444
+6686,56246
+6687,35917,60611
+6688,51200,61622
+6689,21443
+6690,62176
+6691,55734
+6692,49817
+6693,55951
+6694,78038
+6695,48768,48028
+6696,39623
+6697,49341
+6698,40303
+6699,44702
+6700,61258
+6701,29621
+6702,61622
+6703,57671,21444
+6704,52887
+6705,52886
+6706,40065
+6707,57109,36381
+6708,1752
+6709,15181
+6710,58168
+6711,59380
+6712,35922
+6713,66344
+6714,15311
+6715,19234
+6716,29509
+6717,81781
+6718,72990
+6719,24325
+6720,24321
+6721,57140
+6722,29509,62089
+6723,15159
+6724,67675
+6725,35243
+6726,52887
+6727,35097
+6728,21963
+6729,67039
+6730,39679
+6731,39678
+6732,33753
+6733,45412
+6734,27276
+6735,21995,69083
+6736,31041
+6737,52886
+6738,52887
+6739,56244
+6740,52887
+6741,63459
+6742,21719
+6743,55081
+6744,24325
+6745,77192
+6746,29509
+6747,32473
+6748,31041
+6749,55081
+6750,67039
+6751,67039
+6752,21963
+6753,29621
+6754,44702
+6755,61258
+6756,29621
+6757,19497
+6758,76135,45839
+6759,27506
+6760,72961
+6761,34746
+6762,40299
+6763,40303
+6764,40299
+6765,40303
+6766,72281
+6767,57748
+6768,57750
+6769,40012
+6770,60611
+6771,53480
+6772,6766
+6773,9280
+6774,74131
+6775,33688
+6776,11714,63294
+6777,37908
+6778,61622,57109,36381
+6779,55951
+6780,81781
+6781,43104
+6782,71748
+6783,27738
+6784,76664
+6785,4751
+6786,69628
+6787,73555
+6788,74625
+6789,46536
+6790,75553
+6791,69697
+6792,81781
+6793,20559
+6794,48768
+6795,36381
+6796,77192
+6797,81781
+6798,40012
+6799,46145
+6800,25669
+6801,79458
+6802,80184
+6803,29509
+6804,81781
+6805,29509
+6806,50110
+6807,52886
+6808,52887
+6809,27763
+6810,81781
+6811,81781
+6812,5111
+6813,15814
+6814,31656
+6815,61622
+6816,38496
+6817,62459
+6818,39679
+6819,59576
+6820,40299
+6821,40303
+6822,3701
+6823,82163
+6824,35097
+6825,35096
+6826,29609,22922
+6827,48768
+6828,55081
+6829,39803
+6830,68656
+6831,65960
+6832,72990
+6833,63047
+6834,49997
+6835,81781
+6836,49817
+6837,69352
+6838,17744
+6839,74560
+6840,55952
+6841,20756
+6842,37081
+6843,11714
+6844,81781
+6845,55423
+6846,67462
+6847,35243
+6848,69751
+6849,29509,62089
+6850,16702
+6851,5239
+6852,21448
+6853,41000
+6854,61677
+6855,66926
+6856,81781
+6857,55950
+6858,28747
+6859,62956
+6860,40065
+6861,58853
+6862,31041
+6863,29509
+6864,19649
+6865,58798
+6866,40975
+6867,6952
+6868,21719
+6869,24325
+6870,75823
+6871,38517
+6872,33797,29197
+6873,81781
+6874,31041
+6875,22649
+6876,72769
+6877,71557
+6878,61258
+6879,55080
+6880,55081
+6881,56119
+6882,29509
+6883,27118
+6884,27118
+6885,43776
+6886,56127
+6887,61381
+6888,8242
+6889,77192
+6890,58050
+6891,73106
+6892,22332
+6893,29509
+6894,66703
+6895,55423
+6896,56127
+6897,61086
+6898,37043
+6899,19231
+6900,58798
+6901,42436,13746
+6902,19231,36381,32964,35400,76113
+6903,79650
+6904,21963
+6905,81781
+6906,81781
+6907,47194,38753,22305
+6908,25431
+6909,64535
+6910,56246
+6911,61622
+6912,29509
+6913,42020
+6914,24107
+6915,31974
+6916,31542
+6917,48957
+6918,81635
+6919,34662
+6920,80416
+6921,64747
+6922,77192
+6923,44437
+6924,62470
+6925,35944
+6926,66540
+6927,14638
+6928,50215
+6929,34746
+6930,76664,68202
+6931,44131
+6932,50215
+6933,64747
+6934,56127
+6935,34746
+6936,21443
+6937,27255
+6938,21443
+6939,15326
+6940,5765
+6941,34389
+6942,81751
+6943,1704
+6944,1704
+6945,5765
+6946,8209
+6947,3227
+6948,12522
+6949,20196
+6950,29639
+6951,4374
+6952,34389
+6953,54825,80512
+6954,54865
+6955,55022
+6956,29644
+6957,59365
+6958,61746
+6959,49341
+6960,38047
+6961,66703
+6962,50110
+6963,29509
+6964,71493
+6965,25499
+6966,64747
+6967,59380
+6968,59380
+6969,51559
+6970,81781
+6971,48957
+6972,68544
+6973,56917
+6974,29509
+6975,77192
+6976,29509
+6977,77192
+6978,25406
+6979,76633
+6980,62892
+6981,66042
+6982,20756
+6983,71465
+6984,26948
+6985,61196
+6986,62015,67582,5012
+6987,76134,3754,67582,5012
+6988,62015
+6989,62015
+6990,62015
+6991,62015
+6992,32456
+6993,36008
+6994,18091
+6995,29509
+6996,40065
+6997,62938
+6998,46215
+6999,35243
+7000,72990
+7001,14071
+7002,81781
+7003,35097
+7004,31041
+7005,40012
+7006,4708
+7007,37043
+7008,81781,51558
+7009,81781
+7010,71695
+7011,21963
+7012,44626
+7013,58798
+7014,67039
+7015,55081
+7016,20297
+7017,21444
+7018,61252
+7019,49485,35342
+7020,33928
+7021,42436
+7022,29509
+7023,81663
+7024,24321
+7025,20756
+7026,31542
+7027,24325
+7028,16342
+7029,21719
+7030,29509
+7031,48957
+7032,61086
+7033,48957
+7034,64747
+7035,56127
+7036,33639
+7037,48957
+7038,67039
+7039,79850
+7040,48957
+7041,72961
+7042,29509,62089
+7043,29509
+7044,23471
+7045,15820
+7046,17244
+7047,79648
+7048,79648
+7049,79645
+7050,3295
+7051,56119
+7052,3294
+7053,55022
+7054,29509
+7055,33728
+7056,3433
+7057,49341
+7058,66344
+7059,35097
+7060,48028
+7061,60435
+7062,43104
+7063,75078
+7064,61884
+7065,283
+7066,283
+7067,55022
+7068,7067
+7069,77641
+7070,56376
+7071,48111
+7072,277
+7073,41446
+7074,55022
+7075,39803
+7076,73502
+7077,19231
+7078,72961
+7079,8162
+7080,14870
+7081,15311
+7082,68668
+7083,43104
+7084,43104
+7085,74973
+7086,44599
+7087,44599
+7088,44599
+7089,44599
+7090,44599
+7091,44599
+7092,44599
+7093,44599,1509
+7094,44599
+7095,44599
+7096,44599
+7097,44599
+7098,44599
+7099,44599
+7100,44599
+7101,44599
+7102,44599
+7103,44599
+7104,44599
+7105,44599
+7106,44599
+7107,44599
+7108,57474
+7109,39803
+7110,52887
+7111,29509
+7112,31529
+7113,28413
+7114,11957
+7115,71493
+7116,11768
+7117,65763
+7118,49817
+7119,49817
+7120,49817
+7121,49817
+7122,49817
+7123,49817
+7124,62956
+7125,40969,71603
+7126,21963
+7127,35242
+7128,61258
+7129,37232
+7130,12138
+7131,15822
+7132,36008
+7133,15820
+7134,3281
+7135,3281
+7136,30585
+7137,55081
+7138,55081
+7139,40303
+7140,27763
+7141,39679
+7142,67039
+7143,24325
+7144,20756
+7145,41879
+7146,19629
+7147,19629
+7148,19629
+7149,24325
+7150,29621
+7151,41879
+7152,40303
+7153,21963
+7154,24325
+7155,24325
+7156,27763
+7157,8162
+7158,21719
+7159,44727
+7160,44727
+7161,52128
+7162,44727
+7163,44727
+7164,44727
+7165,51068
+7166,53454
+7167,29152
+7168,79658
+7169,65425
+7170,21963
+7171,63327
+7172,25303
+7173,55081
+7174,28801
+7175,48024
+7176,36892,67195
+7177,8551
+7178,61254
+7179,32926
+7180,38059
+7181,6952
+7182,33485
+7183,14493
+7184,80047
+7185,65959
+7186,24249,60448
+7187,51397
+7188,21720
+7189,24321
+7190,24325
+7191,67039
+7192,55080
+7193,55081
+7194,81687
+7195,63459
+7196,63460
+7197,20756
+7198,40299
+7199,40303
+7200,38624
+7201,54440
+7202,30020
+7203,77192
+7204,16479
+7205,63327
+7206,25303
+7207,81781
+7208,55718
+7209,67462
+7210,28801
+7211,724
+7212,11573
+7213,37693
+7214,29509,62089
+7215,32456
+7216,18091
+7217,32869,14516
+7218,28262
+7219,55022
+7220,35097
+7221,76782,67546
+7222,3599
+7223,3600
+7224,29509
+7225,16479
+7226,7734
+7227,24325
+7228,81781
+7229,42488
+7230,60620
+7231,72990
+7232,65960
+7233,81781
+7234,21996
+7235,617
+7236,56127
+7237,35097
+7238,35097
+7239,31041
+7240,81781
+7241,66824
+7242,24325
+7243,29509
+7244,40303
+7245,21719
+7246,63488
+7247,67039
+7248,54979
+7249,54980
+7250,21996
+7251,38828
+7252,28801
+7253,63586
+7254,81781
+7255,46444
+7256,26298
+7257,29509
+7258,28556
+7259,21996
+7260,33928
+7261,44703
+7262,35096
+7263,57671
+7264,52904
+7265,44952
+7266,29621
+7267,35097
+7268,35097
+7269,61254
+7270,35097
+7271,54615
+7272,75958
+7273,29509,62089
+7274,59296
+7275,77192
+7276,29509,62089
+7277,29509
+7278,72990
+7279,77214
+7280,9280
+7281,53480
+7282,54980
+7283,308
+7284,39803
+7285,35342
+7286,52461
+7287,81781
+7288,49817
+7289,32473
+7290,36055
+7291,49162
+7292,28546
+7293,56219
+7294,81781
+7295,36892
+7296,617
+7297,46140
+7298,55734
+7299,31041
+7300,55423
+7301,31041
+7302,42181
+7303,29509
+7304,23471
+7305,9899
+7306,19231
+7307,42436,3147
+7308,77192
+7309,29509,62089
+7310,56119
+7311,36892,67195
+7312,67277
+7313,5501
+7314,54677
+7315,31304
+7316,8653
+7317,7658
+7318,21963
+7319,20756
+7320,56119
+7321,67039
+7322,13746
+7323,30584
+7324,81781
+7325,7653
+7326,28556
+7327,68796
+7328,68796
+7329,29509
+7330,48768
+7331,75958
+7332,75958
+7333,29513
+7334,46149
+7335,28546
+7336,73650
+7337,19234
+7338,63669
+7339,9043
+7340,9043
+7341,77192
+7342,24325
+7343,55952
+7344,40065,35342
+7345,26602
+7346,63669
+7347,42436,53277
+7348,81781
+7349,81781
+7350,35342
+7351,51559
+7352,78308
+7353,72966
+7354,27763
+7355,13746
+7356,66824
+7357,19231
+7358,13746
+7359,53959
+7360,53959
+7361,52461
+7362,36381
+7363,81781
+7364,72966
+7365,60448
+7366,60435
+7367,78725
+7368,35917,68290
+7369,30153
+7370,42436,3147
+7371,81781
+7372,22305
+7373,12523
+7374,12525
+7375,12524
+7376,58798
+7377,28801
+7378,14871
+7379,77192
+7380,21444
+7381,61086
+7382,81065
+7383,27763
+7384,23184
+7385,77192
+7386,11961
+7387,18084
+7388,6298
+7389,56119
+7390,7734
+7391,18520
+7392,36381,72990
+7393,64827
+7394,36710
+7395,702
+7396,48957
+7397,29553
+7398,56127
+7399,603
+7400,12225
+7401,21443
+7402,44593
+7403,60611
+7404,68027
+7405,63002
+7406,24224
+7407,81781
+7408,55734
+7409,31041
+7410,37127
+7411,19234
+7412,13746
+7413,77192
+7414,50638
+7415,50638
+7416,50110,71334
+7417,21963
+7418,51702
+7419,63669
+7420,47505
+7421,60611,37408
+7422,65581
+7423,36381
+7424,6952
+7425,72961
+7426,51558
+7427,2923
+7428,20196,78659
+7429,50364
+7430,38439,29222
+7431,21443
+7432,6952
+7433,81781
+7434,55951
+7435,21963
+7436,67039
+7437,67039
+7438,29509,62089
+7439,60448
+7440,40986
+7441,38313
+7442,38735
+7443,62902
+7444,12045
+7445,37656
+7446,81781
+7447,48028
+7448,57140
+7449,43104
+7450,12045
+7451,55951
+7452,72966
+7453,21963
+7454,35097
+7455,21963
+7456,54979
+7457,35243
+7458,22643
+7459,22645
+7460,6952
+7461,21720
+7462,20756
+7463,21963
+7464,54980
+7465,42197
+7466,47505
+7467,47505
+7468,29513
+7469,33327
+7470,52660
+7471,62934
+7472,81781
+7473,36381
+7474,60620,60611
+7475,39679
+7476,65960
+7477,65959
+7478,18674
+7479,41878
+7480,41882
+7481,41879
+7482,56119,62089
+7483,45694
+7484,45694
+7485,45694
+7486,41878
+7487,16347
+7488,16340
+7489,67039
+7490,35097
+7491,65960
+7492,21719
+7493,51396
+7494,51397
+7495,29621
+7496,52887
+7497,40303
+7498,19231
+7499,81781
+7500,24321
+7501,20756
+7502,40303
+7503,40299
+7504,40303
+7505,44596
+7506,60611
+7507,617,58068
+7508,28801
+7509,50604
+7510,9043
+7511,9044
+7512,9043
+7513,9044
+7514,9043
+7515,9045,7766
+7516,9043
+7517,9044
+7518,9043
+7519,9043
+7520,9045,7766
+7521,9043
+7522,9043
+7523,63843
+7524,29621
+7525,19234
+7526,6952
+7527,68520
+7528,6952
+7529,67039
+7530,60448
+7531,29509
+7532,60448
+7533,55767
+7534,29509
+7535,31542
+7536,55951
+7537,62835
+7538,60448
+7539,23693
+7540,1751
+7541,1752
+7542,35243
+7543,49162,22922
+7544,35243
+7545,6952
+7546,6952
+7547,54980
+7548,68602
+7549,29509
+7550,27763
+7551,55951
+7552,53480,48768
+7553,49817
+7554,46148
+7555,52887
+7556,52904
+7557,76782
+7558,61622
+7559,21996
+7560,21996
+7561,65501
+7562,77192
+7563,31298,60435
+7564,29104
+7565,32473
+7566,57140
+7567,60611
+7568,64527
+7569,57140
+7570,8652
+7571,61622
+7572,57277
+7573,24325
+7574,35243
+7575,60639
+7576,11714
+7577,60611
+7578,60620
+7579,81781
+7580,25359
+7581,42030
+7582,6952
+7583,55081
+7584,29621
+7585,52887
+7586,65960
+7587,35874
+7588,67039
+7589,52886
+7590,20756
+7591,24325
+7592,20756
+7593,20756
+7594,21963
+7595,63461
+7596,67039
+7597,67039
+7598,28801
+7599,40299
+7600,40303
+7601,55081
+7602,63460
+7603,40299
+7604,40303
+7605,20946
+7606,28801
+7607,81781
+7608,81781
+7609,49817
+7610,8170,12401
+7611,35243
+7612,77192
+7613,53278
+7614,15623
+7615,15622
+7616,21963
+7617,71493,81781
+7618,68796
+7619,37614
+7620,8653
+7621,10585
+7622,21771
+7623,35339
+7624,71493
+7625,15159
+7626,46050
+7627,21525
+7628,30187
+7629,2126
+7630,53480
+7631,54184
+7632,30584
+7633,26602
+7634,55438
+7635,64380
+7636,77192
+7637,70033
+7638,51393
+7639,66428
+7640,64747
+7641,16858
+7642,55081
+7643,24325
+7644,11714
+7645,33592
+7646,2607
+7647,16768
+7648,76135
+7649,35474
+7650,31041,31279
+7651,42436,39859,72990
+7652,14870
+7653,65767
+7654,1319
+7655,64747
+7656,52371
+7657,26948
+7658,34389
+7659,65753
+7660,65754
+7661,43104
+7662,7652
+7663,21996,53480
+7664,77192
+7665,21720
+7666,21719
+7667,40303
+7668,35096
+7669,53704
+7670,57308
+7671,67039
+7672,21720
+7673,50192
+7674,40303
+7675,40303
+7676,52886
+7677,52886
+7678,52887
+7679,52887
+7680,40303
+7681,37693
+7682,62089,29509
+7683,21765
+7684,22516
+7685,42481
+7686,29621
+7687,81683
+7688,81687
+7689,24321
+7690,24325
+7691,48957
+7692,40008
+7693,24224
+7694,11476
+7695,11475
+7696,35103,11714
+7697,48210
+7698,789
+7699,75958
+7700,75958
+7701,56171
+7702,1319
+7703,72990
+7704,29509
+7705,60620
+7706,72966,62089
+7707,60448
+7708,32923
+7709,58024
+7710,29509,62089
+7711,60620
+7712,28801
+7713,35917
+7714,52444
+7715,12045
+7716,50110
+7717,19231
+7718,68520
+7719,28801
+7720,81781
+7721,21444
+7722,28801
+7723,61622
+7724,43701
+7725,57671,37918
+7726,61622
+7727,11873
+7728,77192
+7729,61086
+7730,36892,67195
+7731,14236
+7732,35243
+7733,29509
+7734,724
+7735,723
+7736,48957
+7737,58798
+7738,35097
+7739,57671
+7740,57671,37918
+7741,65960
+7742,55081
+7743,48768
+7744,66824,71603
+7745,72272
+7746,29513
+7747,40011
+7748,43112
+7749,81781
+7750,49485
+7751,42511
+7752,38173
+7753,40299
+7754,40303
+7755,72685
+7756,29621
+7757,42436
+7758,37081
+7759,37080
+7760,29621
+7761,67459
+7762,47265
+7763,3701
+7764,73018
+7765,29327
+7766,37693
+7767,61793
+7768,3701
+7769,5777,68868
+7770,26488
+7771,80589
+7772,81907
+7773,21719
+7774,21720
+7775,32473
+7776,34647
+7777,54617
+7778,26789
+7779,61622
+7780,58798
+7781,52886
+7782,29621
+7783,46387
+7784,46387
+7785,46387
+7786,7785
+7787,46387
+7788,29621
+7789,21963
+7790,21720
+7791,20756
+7792,29509
+7793,3294
+7794,55022
+7795,3295
+7796,52675
+7797,67037
+7798,31041
+7799,29509,62089
+7800,36008
+7801,56119
+7802,72966,62089
+7803,48957
+7804,27297
+7805,68290
+7806,50604
+7807,42436
+7808,76134
+7809,60786
+7810,81121
+7811,41638
+7812,52904
+7813,79039
+7814,13746
+7815,50638
+7816,48028
+7817,33753
+7818,30584
+7819,15499,13944
+7820,15500
+7821,19231
+7822,61622
+7823,40065,60435
+7824,76134,37204
+7825,24224
+7826,617
+7827,61622
+7828,57531
+7829,39803
+7830,55081
+7831,70426,19234
+7832,54211
+7833,39679
+7834,74973
+7835,63564
+7836,60639
+7837,21444
+7838,5350
+7839,63327
+7840,25303
+7841,25770
+7842,51397
+7843,51396
+7844,77192
+7845,56127
+7846,8551
+7847,12045
+7848,66965
+7849,74146
+7850,35097
+7851,38322
+7852,77192,62095
+7853,63668
+7854,66703
+7855,46779
+7856,46779
+7857,46779
+7858,26298
+7859,61622
+7860,29509,62089
+7861,61796,42436
+7862,35097
+7863,39803
+7864,47505
+7865,64250
+7866,19231
+7867,48768
+7868,46215
+7869,37191
+7870,74191
+7871,81781
+7872,81781,27508
+7873,22001
+7874,79850
+7875,29509
+7876,66703
+7877,55423
+7878,8148
+7879,81781
+7880,55423
+7881,22001
+7882,31539
+7883,50604
+7884,56535
+7885,39803
+7886,56246
+7887,66703
+7888,56189
+7889,68544
+7890,21770
+7891,60750
+7892,35243
+7893,43587
+7894,21996
+7895,28938
+7896,48028,22402,40012
+7897,81781
+7898,61622
+7899,61622,57109,36381
+7900,35243
+7901,2874
+7902,35342
+7903,56230
+7904,29509,62089
+7905,21963
+7906,68288
+7907,38404
+7908,74625
+7909,56189
+7910,60445
+7911,60448
+7912,31041
+7913,47503
+7914,35097
+7915,54441
+7916,56847
+7917,72961
+7918,80106
+7919,5765
+7920,17362
+7921,51393
+7922,55022
+7923,59365
+7924,67957
+7925,5777
+7926,16685
+7927,15622
+7928,35243
+7929,13735
+7930,81781
+7931,21444
+7932,37582
+7933,29509
+7934,26602
+7935,35917
+7936,617
+7937,29195,22350,55091
+7938,29509
+7939,1411
+7940,1412
+7941,55520,55091
+7942,69998
+7943,65531
+7944,50701
+7945,49817
+7946,60448
+7947,35474
+7948,40012
+7949,37204
+7950,69363
+7951,43112
+7952,32923
+7953,1751
+7954,81781
+7955,60620
+7956,24249
+7957,60611
+7958,51396
+7959,51397
+7960,57277
+7961,52886
+7962,21720
+7963,21963
+7964,29621
+7965,35243
+7966,29509
+7967,29509
+7968,41878
+7969,35243
+7970,77641
+7971,35096
+7972,41879
+7973,55952
+7974,31542
+7975,67038
+7976,52660
+7977,24325
+7978,24321
+7979,55081
+7980,55080
+7981,52886
+7982,52887
+7983,52887
+7984,20426
+7985,52886
+7986,52887
+7987,65959
+7988,21962
+7989,21963
+7990,29621
+7991,31542
+7992,52887
+7993,6952
+7994,41879
+7995,80477
+7996,41878
+7997,41879
+7998,80477
+7999,80477
+8000,80477
+8001,80477
+8002,80477
+8003,80477
+8004,80477
+8005,80477
+8006,80477
+8007,80477
+8008,41879
+8009,80477
+8010,20426
+8011,20426
+8012,20425
+8013,52887
+8014,52886
+8015,27763
+8016,24325
+8017,24325
+8018,6952
+8019,67039
+8020,35243
+8021,41882
+8022,29621
+8023,39678
+8024,39679
+8025,20756
+8026,20426
+8027,20422
+8028,21963
+8029,21996,60448
+8030,40303
+8031,55951
+8032,35242
+8033,35243
+8034,16912
+8035,20756
+8036,40303
+8037,52887
+8038,21720
+8039,80562
+8040,34389
+8041,21963
+8042,41878
+8043,41882
+8044,21720
+8045,20426
+8046,35243
+8047,51396
+8048,51397
+8049,65960
+8050,52887
+8051,20756
+8052,52887
+8053,21963
+8054,52886
+8055,20756
+8056,51068
+8057,43309
+8058,22669,62159
+8059,25303
+8060,25303
+8061,25303
+8062,25303
+8063,25303
+8064,66703
+8065,50215
+8066,57067
+8067,25303
+8068,25303
+8069,25303
+8070,25303
+8071,25303
+8072,39803
+8073,16912
+8074,29509
+8075,43104
+8076,1319
+8077,5765
+8078,59903
+8079,35243
+8080,24306
+8081,31041
+8082,46760
+8083,61622,36381
+8084,55951
+8085,48957
+8086,5777
+8087,51216
+8088,62029
+8089,62029
+8090,26914
+8091,5765
+8092,15039
+8093,8094
+8094,55022
+8095,21719
+8096,20756
+8097,65959
+8098,20422
+8099,40303
+8100,24325
+8101,24321
+8102,24325
+8103,40303
+8104,20756
+8105,52887
+8106,39509
+8107,39509
+8108,702
+8109,77192
+8110,603
+8111,51389
+8112,21754
+8113,33040
+8114,77341
+8115,21754
+8116,12045
+8117,11961,38439
+8118,15311
+8119,70426
+8120,24379,67582
+8121,76134,67582
+8122,65959
+8123,65959
+8124,80394
+8125,48957
+8126,6298
+8127,35097
+8128,38091
+8129,35243
+8130,55423
+8131,27763
+8132,52660
+8133,55423
+8134,496
+8135,497
+8136,702
+8137,66703
+8138,603
+8139,43104
+8140,8209
+8141,46304
+8142,65760
+8143,19649
+8144,21770
+8145,21720
+8146,15311
+8147,33928
+8148,67277
+8149,30900
+8150,14063
+8151,65760
+8152,20427
+8153,29509,62089
+8154,20120
+8155,29509
+8156,50878
+8157,26298
+8158,1324
+8159,39925
+8160,48254
+8161,67574
+8162,1319
+8163,65064
+8164,57472
+8165,19658
+8166,77641
+8167,67037
+8168,80275
+8169,39676
+8170,45412
+8171,29968
+8172,30094
+8173,31978
+8174,58088
+8175,37532
+8176,36089
+8177,27200
+8178,35971
+8179,45813
+8180,52560
+8181,52857
+8182,55022
+8183,55044
+8184,81161
+8185,81161
+8186,45813
+8187,61715
+8188,64073
+8189,64819
+8190,33080
+8191,60786
+8192,71446
+8193,65385
+8194,66016
+8195,66393
+8196,70033
+8197,8182
+8198,76664
+8199,51862
+8200,77341
+8201,702
+8202,21765
+8203,603
+8204,72966
+8205,8210
+8206,24321
+8207,66703
+8208,67039
+8209,56171
+8210,8209
+8211,59903
+8212,32456
+8213,1319
+8214,10289
+8215,72961
+8216,55022
+8217,7658
+8218,52886
+8219,31542
+8220,66703
+8221,33327
+8222,46149
+8223,78682,50112
+8224,29621
+8225,36381
+8226,21459
+8227,58798
+8228,1718
+8229,14638
+8230,80421
+8231,19382
+8232,68544
+8233,21443
+8234,38427
+8235,72961
+8236,62015
+8237,62015
+8238,62015
+8239,62015
+8240,29509
+8241,32527
+8242,57573
+8243,29621
+8244,20756
+8245,20756
+8246,39803
+8247,48480
+8248,31117
+8249,77192
+8250,21754
+8251,19649
+8252,71333
+8253,17434
+8254,17434
+8255,17434
+8256,32527
+8257,17434
+8258,17434
+8259,43949
+8260,75958
+8261,17434
+8262,17434
+8263,17434
+8264,58168
+8265,48597
+8266,80099
+8267,47128
+8268,26155
+8269,48599
+8270,47925
+8271,20120
+8272,52678
+8273,6426
+8274,36381
+8275,43104
+8276,6945
+8277,29489
+8278,68544
+8279,58103
+8280,702
+8281,15623
+8282,3652
+8283,81079
+8284,603
+8285,55951
+8286,35097
+8287,61086
+8288,1324
+8289,80106
+8290,1319
+8291,8210
+8292,8293
+8293,55022
+8294,8293
+8295,1324
+8296,1319
+8297,48597
+8298,43104
+8299,57985
+8300,8301
+8301,55022
+8302,48957
+8303,5777
+8304,24325
+8305,3754,67582,5012
+8306,24321
+8307,27763
+8308,51396
+8309,24325
+8310,6403
+8311,56115
+8312,80821
+8313,75958
+8314,75958
+8315,68544
+8316,30231
+8317,55022
+8318,65289
+8319,5765
+8320,8317
+8321,69352
+8322,64293
+8323,73207
+8324,75942
+8325,80358
+8326,81456
+8327,8319
+8328,8319
+8329,76664
+8330,723
+8331,724
+8332,50741
+8333,66703
+8334,66703
+8335,15835
+8336,81781
+8337,81781
+8338,67039
+8339,59565
+8340,64255
+8341,63327
+8342,25303
+8343,35243
+8344,48957
+8345,65960
+8346,66703
+8347,39803
+8348,29509
+8349,81781
+8350,59565
+8351,15311
+8352,5350
+8353,55127
+8354,29560
+8355,56119
+8356,75958
+8357,75958
+8358,75958
+8359,52342
+8360,26948
+8361,65764
+8362,68230
+8363,11480
+8364,24021
+8365,48957
+8366,56127
+8367,48957
+8368,35474
+8369,15475
+8370,58068
+8371,39678
+8372,61258
+8373,39679
+8374,20756
+8375,20756
+8376,52660
+8377,20756
+8378,49831
+8379,32456
+8380,1319
+8381,54440
+8382,55022
+8383,1319
+8384,59565
+8385,61086
+8386,29509
+8387,19713
+8388,49019
+8389,49019
+8390,49019
+8391,49019
+8392,49019
+8393,40299
+8394,40303
+8395,40299
+8396,40303
+8397,5765
+8398,14516
+8399,59903
+8400,46149
+8401,46431
+8402,80868
+8403,33639
+8404,36452
+8405,44273
+8406,46444
+8407,55022
+8408,59296
+8409,72961
+8410,67410
+8411,8209
+8412,5777
+8413,77192
+8414,48957
+8415,43928
+8416,33688
+8417,29197
+8418,31041
+8419,51718
+8420,283
+8421,41446
+8422,61086
+8423,50742
+8424,73863,20261
+8425,20427
+8426,48957
+8427,51397
+8428,24325
+8429,21720
+8430,45142
+8431,45142
+8432,45142
+8433,45142
+8434,45142
+8435,45142
+8436,45142
+8437,21719
+8438,8652
+8439,8551
+8440,8551
+8441,29509,62089
+8442,51068
+8443,54029
+8444,29509
+8445,47503
+8446,19438
+8447,55668
+8448,77192
+8449,77192
+8450,77192
+8451,42436,13746
+8452,19234,61796
+8453,81781
+8454,29549,61796
+8455,70426
+8456,70426
+8457,42436
+8458,72966
+8459,67039
+8460,40986
+8461,32224
+8462,29509,62095
+8463,59565
+8464,24224
+8465,61746
+8466,50173
+8467,21856
+8468,5513
+8469,20286
+8470,53480
+8471,75955
+8472,64496
+8473,74500
+8474,35917
+8475,81781
+8476,81781
+8477,48768
+8478,52094
+8479,74939
+8480,35097
+8481,52887
+8482,49185
+8483,29509,62089
+8484,74769
+8485,75955
+8486,35492
+8487,22382
+8488,66824
+8489,68796
+8490,65754
+8491,35474
+8492,75958
+8493,56119
+8494,51558
+8495,77192
+8496,75958
+8497,32456
+8498,48957
+8499,77641
+8500,59452
+8501,64240
+8502,24437
+8503,67280
+8504,18091
+8505,77641
+8506,36008
+8507,35097
+8508,81781
+8509,9043
+8510,9043
+8511,49817
+8512,66703
+8513,66703
+8514,32929
+8515,1016,67582
+8516,63586,60448
+8517,23471
+8518,39679
+8519,79591
+8520,33797,29197
+8521,59376
+8522,71493
+8523,76134
+8524,76135
+8525,19497
+8526,6984
+8527,14504
+8528,8536
+8529,21443
+8530,1324
+8531,77689
+8532,70033
+8533,57474
+8534,80460
+8535,568
+8536,1319
+8537,75958
+8538,70033
+8539,21337
+8540,22887
+8541,23054
+8542,23689
+8543,68122
+8544,79608
+8545,60899
+8546,26051
+8547,28104
+8548,28862
+8549,32645
+8550,34249
+8551,34389
+8552,40772
+8553,46444
+8554,46516
+8555,23586
+8556,51393
+8557,51462
+8558,53072
+8559,53072
+8560,54485
+8561,55022
+8562,55236
+8563,75266
+8564,57289
+8565,58647
+8566,77641
+8567,60213
+8568,28997
+8569,61510
+8570,72575
+8571,63005
+8572,40776
+8573,60899
+8574,73943
+8575,77223
+8576,58690
+8577,81752
+8578,51393
+8579,31417
+8580,81394
+8581,82020
+8582,52904
+8583,61622
+8584,21748
+8585,35097
+8586,55951
+8587,63564
+8588,21719
+8589,60216
+8590,67039
+8591,48957
+8592,57337
+8593,7783
+8594,80540
+8595,8214
+8596,8213
+8597,46384
+8598,71380
+8599,76981
+8600,35342,28938
+8601,75958
+8602,46149
+8603,54423,53295
+8604,63255
+8605,29509,62089
+8606,61622
+8607,13746
+8608,72966
+8609,33928
+8610,40986
+8611,60899
+8612,13815
+8613,13817
+8614,20858
+8615,75958
+8616,61086
+8617,35917
+8618,21444
+8619,81781
+8620,63327
+8621,25303
+8622,29509
+8623,79591
+8624,49817
+8625,76134,3754,67582,5012
+8626,33728
+8627,3433
+8628,29509
+8629,37582
+8630,49929
+8631,56119
+8632,75958
+8633,78100
+8634,74344
+8635,66977
+8636,56701
+8637,4374
+8638,43766
+8639,74067
+8640,70033
+8641,51558
+8642,65758
+8643,3704
+8644,15785,8647,63327
+8645,7657
+8646,37127,51991
+8647,60216
+8648,49181
+8649,70890
+8650,8647
+8651,52371
+8652,26948
+8653,65762
+8654,67408
+8655,40012
+8656,71315
+8657,64250,8650
+8658,11480
+8659,61622
+8660,21459,6888
+8661,8813
+8662,29509
+8663,72990
+8664,32363
+8665,79650,31041
+8666,29509
+8667,45853
+8668,78647
+8669,25303
+8670,74921
+8671,68869
+8672,55951
+8673,45813
+8674,45813
+8675,63327
+8676,25303
+8677,39859
+8678,29197
+8679,29509
+8680,6846,25303
+8681,9043
+8682,1016,5848,67582
+8683,76134,62525,3754,67582,5012
+8684,59376
+8685,30865
+8686,36135
+8687,39803
+8688,62015
+8689,62015
+8690,62015
+8691,36738
+8692,45847,67582
+8693,21765
+8694,78725
+8695,13746
+8696,13746
+8697,81781,51148
+8698,77192
+8699,71639
+8700,42436
+8701,10300
+8702,38676
+8703,44560
+8704,60611
+8705,60611
+8706,38828
+8707,70426,19231
+8708,63327
+8709,25303
+8710,32642
+8711,37043
+8712,43701
+8713,37909
+8714,60487
+8715,21444
+8716,56224
+8717,50110
+8718,81161
+8719,77192
+8720,81781
+8721,36381,61622
+8722,70426
+8723,31041
+8724,1324
+8725,66703
+8726,20146
+8727,40303
+8728,1319
+8729,8730
+8730,55022
+8731,59565
+8732,27653
+8733,8170,11914
+8734,42436,46148,13165
+8735,65763
+8736,25303
+8737,82070
+8738,43193
+8739,60611
+8740,61220
+8741,29648,48634
+8742,81781
+8743,49817
+8744,59565
+8745,43104
+8746,30391
+8747,55127
+8748,65753
+8749,36163
+8750,1016
+8751,50701
+8752,20690
+8753,1016,67582
+8754,43104
+8755,15876
+8756,25303
+8757,33930
+8758,45866
+8759,25303
+8760,47433
+8761,35096
+8762,61258
+8763,35097
+8764,14493
+8765,71465
+8766,6984
+8767,8360
+8768,8360
+8769,55080
+8770,55081
+8771,75958
+8772,6984
+8773,68122
+8774,72966
+8775,70033
+8776,63586
+8777,55303
+8778,61258
+8779,40986
+8780,63603
+8781,21488
+8782,71584
+8783,44703
+8784,13847
+8785,37908
+8786,14504
+8787,8740,74414,58389
+8788,14504
+8789,70033
+8790,8788
+8791,8788
+8792,8788
+8793,8788
+8794,8788
+8795,60120
+8796,25431
+8797,37693
+8798,5765
+8799,59903
+8800,56219
+8801,67936
+8802,24325
+8803,49654
+8804,51068
+8805,55423
+8806,39871
+8807,7658
+8808,70026
+8809,76155
+8810,35922
+8811,56119
+8812,31041
+8813,16858
+8814,15618
+8815,271
+8816,4641
+8817,81781
+8818,75958
+8819,30242
+8820,21444
+8821,48957
+8822,37693
+8823,24325
+8824,45077
+8825,34746
+8826,77192
+8827,13019
+8828,13020
+8829,74010
+8830,33323
+8831,7658
+8832,72990
+8833,22382
+8834,47243
+8835,62734
+8836,21720
+8837,21719
+8838,29509
+8839,8814
+8840,7658
+8841,16858
+8842,14871
+8843,1752
+8844,59903
+8845,68566
+8846,49817
+8847,55423
+8848,8551
+8849,7734
+8850,18520
+8851,74625
+8852,56119
+8853,29509
+8854,43104
+8855,5111
+8856,66703
+8857,55423
+8858,29509
+8859,58798
+8860,29509
+8861,15835
+8862,4861
+8863,4862
+8864,603
+8865,66703
+8866,702
+8867,29509
+8868,29509
+8869,60448
+8870,20996
+8871,75958
+8872,67883
+8873,34746
+8874,68544
+8875,29509
+8876,68796
+8877,17264
+8878,17265
+8879,64747
+8880,43104
+8881,14638
+8882,1718
+8883,49019
+8884,16858
+8885,61622
+8886,19231
+8887,72961
+8888,7734
+8889,14091
+8890,28842
+8891,33797
+8892,7657
+8893,7658
+8894,66703
+8895,19494
+8896,43104
+8897,8162
+8898,4641
+8899,28842
+8900,18149
+8901,56171
+8902,60611
+8903,11148
+8904,56119
+8905,56127
+8906,29509
+8907,29509
+8908,40299
+8909,40303
+8910,73555
+8911,48957
+8912,36381
+8913,29509
+8914,72990
+8915,35534
+8916,74939
+8917,17264
+8918,17265
+8919,1324
+8920,1319
+8921,55022
+8922,29509
+8923,35400
+8924,19231
+8925,30584,19231
+8926,61622
+8927,29737
+8928,10300
+8929,38699
+8930,10680
+8931,10676
+8932,28801
+8933,10300
+8934,50820,81781
+8935,41016
+8936,29963
+8937,33797,29197,19231
+8938,19234
+8939,60611
+8940,75744
+8941,56127
+8942,36872
+8943,24224
+8944,8945
+8945,56925
+8946,24249
+8947,35342
+8948,67039
+8949,13746
+8950,19870
+8951,37408
+8952,61086
+8953,77192
+8954,32473
+8955,58798
+8956,11018
+8957,12310
+8958,603
+8959,702
+8960,76332
+8961,24470
+8962,24974
+8963,77641
+8964,44171
+8965,20691
+8966,283
+8967,277
+8968,55022
+8969,8968
+8970,52887
+8971,72990
+8972,59938
+8973,8170,14992
+8974,21996
+8975,8976
+8976,50604
+8977,8976
+8978,8976
+8979,5235
+8980,29509
+8981,72990
+8982,31041
+8983,74939
+8984,81781
+8985,58004
+8986,75942
+8987,81781
+8988,37908
+8989,50215
+8990,50638,61622
+8991,77192
+8992,37127
+8993,40986
+8994,37123
+8995,29509
+8996,19379
+8997,31041
+8998,11217
+8999,11220
+9000,65753
+9001,72990
+9002,16443
+9003,17362
+9004,29509
+9005,56119
+9006,67039
+9007,79537
+9008,5350
+9009,2888
+9010,11205
+9011,75958
+9012,9013
+9013,56171
+9014,65763
+9015,4641
+9016,72990
+9017,16443
+9018,59413
+9019,15311
+9020,1752
+9021,2751
+9022,496
+9023,497
+9024,53376
+9025,60448
+9026,40012
+9027,56119
+9028,35243
+9029,55423
+9030,7734
+9031,18520
+9032,25973
+9033,39803
+9034,29509
+9035,34924
+9036,70426,44596
+9037,75823
+9038,29737,29549
+9039,4281
+9040,5485
+9041,77227
+9042,31417
+9043,49817
+9044,49817
+9045,49817
+9046,72284
+9047,56127
+9048,77192
+9049,77192
+9050,56119
+9051,56119
+9052,65959
+9053,65960
+9054,82163
+9055,56119
+9056,1752
+9057,13420
+9058,16514
+9059,81781
+9060,21200
+9061,60611
+9062,50604
+9063,58798
+9064,17264
+9065,17265
+9066,32456
+9067,36008
+9068,67039
+9069,29509
+9070,15311
+9071,56119
+9072,8652
+9073,66703
+9074,35342
+9075,29509,62089
+9076,1752
+9077,29509
+9078,39859
+9079,29677
+9080,50215
+9081,29509
+9082,66703
+9083,77192
+9084,80953
+9085,28801
+9086,58798
+9087,76757
+9088,32547
+9089,53480
+9090,20535
+9091,74537
+9092,36381
+9093,58798
+9094,58798
+9095,35917
+9096,74973
+9097,43104
+9098,61622
+9099,79850
+9100,59251
+9101,6257
+9102,49951
+9103,49951
+9104,35097
+9105,77192
+9106,26827
+9107,76134,46148
+9108,29509
+9109,11476
+9110,11475
+9111,29509,62089
+9112,56127
+9113,52887
+9114,22649
+9115,48957
+9116,81781
+9117,52887
+9118,6946
+9119,68796
+9120,62512
+9121,59903
+9122,5111
+9123,3297
+9124,29509
+9125,21963
+9126,56119
+9127,14638
+9128,13063
+9129,55051
+9130,1752
+9131,72990
+9132,26155
+9133,37127
+9134,74939
+9135,67462
+9136,44695
+9137,28842
+9138,40012
+9139,35787
+9140,11958
+9141,59903
+9142,23471
+9143,1319
+9144,568
+9145,73555
+9146,80106
+9147,82176
+9148,26548
+9149,69029
+9150,59576,71493
+9151,72961
+9152,35243
+9153,5111
+9154,15835
+9155,2126
+9156,31279
+9157,56520
+9158,79850,48957
+9159,58798
+9160,6624
+9161,24224
+9162,58162
+9163,79650
+9164,23365
+9165,22382
+9166,7660
+9167,20946
+9168,53480
+9169,41842
+9170,20559
+9171,28801
+9172,72990
+9173,21586
+9174,48028
+9175,40303
+9176,7654
+9177,68783,75958
+9178,29509
+9179,37693
+9180,40012
+9181,16932
+9182,28801
+9183,5111
+9184,15814
+9185,21996
+9186,65581
+9187,54636
+9188,8841
+9189,7735
+9190,29509
+9191,53624
+9192,64747
+9193,59380
+9194,28164
+9195,66703
+9196,1319,38439
+9197,8291
+9198,43104
+9199,67254
+9200,75958
+9201,40012
+9202,29509
+9203,12066
+9204,13019
+9205,13020
+9206,39859
+9207,15814
+9208,56119
+9209,1324
+9210,1319
+9211,9213
+9212,9213
+9213,55022
+9214,37127
+9215,11957
+9216,22056
+9217,20427
+9218,17915
+9219,17916
+9220,3612
+9221,29509
+9222,8551
+9223,39713
+9224,51461
+9225,36381
+9226,29509
+9227,40299
+9228,40303
+9229,1324
+9230,55022
+9231,48957
+9232,56119
+9233,34746
+9234,51068
+9235,21444
+9236,36117
+9237,61335
+9238,29152
+9239,63193
+9240,30986
+9241,63187
+9242,3281
+9243,60493
+9244,38828
+9245,77192
+9246,81781
+9247,56119
+9248,81781
+9249,29509,62089
+9250,57671
+9251,29197
+9252,29199
+9253,21962
+9254,67039
+9255,50878
+9256,61796
+9257,43104
+9258,59903
+9259,68544
+9260,66240
+9261,70033
+9262,40299
+9263,21444
+9264,67039
+9265,53568
+9266,20756
+9267,52660
+9268,65960
+9269,65959
+9270,68520
+9271,6952
+9272,40303
+9273,43104
+9274,6945
+9275,41879
+9276,22642
+9277,40303
+9278,21963
+9279,14301
+9280,39608
+9281,76779
+9282,55951
+9283,77192
+9284,77192
+9285,71493
+9286,37127
+9287,43997
+9288,61033
+9289,8653
+9290,44703
+9291,35097
+9292,21963
+9293,61254
+9294,52887
+9295,40303
+9296,20756
+9297,24325
+9298,52887
+9299,29509,62089
+9300,52887
+9301,52887
+9302,61254
+9303,29509
+9304,9899
+9305,55951
+9306,50215
+9307,50215
+9308,50215
+9309,50215
+9310,50215
+9311,56127
+9312,35787
+9313,50215
+9314,50215
+9315,50215
+9316,50215
+9317,50215
+9318,50215
+9319,66026
+9320,50215
+9321,50215
+9322,50215
+9323,50215
+9324,50215
+9325,66026
+9326,50215
+9327,50215
+9328,50215
+9329,50215
+9330,50215
+9331,61086
+9332,50215
+9333,50215
+9334,50215
+9335,66026
+9336,81360
+9337,7658
+9338,15178
+9339,52887
+9340,2608
+9341,35474
+9342,56189
+9343,40986
+9344,76149
+9345,56162
+9346,38364
+9347,31041,31279
+9348,35535
+9349,35097
+9350,54980
+9351,21719
+9352,25303
+9353,63460
+9354,63459
+9355,63461
+9356,21963
+9357,64202
+9358,68678
+9359,40303
+9360,40299
+9361,40299
+9362,40303
+9363,65960
+9364,21719
+9365,48957
+9366,43104
+9367,29509
+9368,36892,67195
+9369,5501
+9370,5501
+9371,39803
+9372,48768,48028
+9373,60611
+9374,77192
+9375,45215
+9376,34990
+9377,31859
+9378,37204
+9379,60536
+9380,21996,48768
+9381,28801
+9382,61086
+9383,19234
+9384,6264
+9385,6264
+9386,6298
+9387,24321
+9388,24325
+9389,72966
+9390,65959
+9391,65960
+9392,51814
+9393,29509
+9394,16443
+9395,1319
+9396,60448
+9397,55951
+9398,1324
+9399,55022
+9400,53480,21996
+9401,35097
+9402,5765
+9403,9404
+9404,17497
+9405,43104
+9406,68544
+9407,47505
+9408,77192
+9409,52660
+9410,52659
+9411,46935,81781
+9412,29509,62095
+9413,10223
+9414,20756
+9415,40299
+9416,24321
+9417,44703
+9418,51148
+9419,67039
+9420,24325
+9421,29621
+9422,77192
+9423,29509
+9424,79850
+9425,28080
+9426,75958
+9427,75958
+9428,75958
+9429,21720
+9430,21719
+9431,52887
+9432,75958
+9433,45758
+9434,21488
+9435,56127
+9436,31041
+9437,15272
+9438,76345
+9439,21963
+9440,39679
+9441,6946
+9442,9453
+9443,70515
+9444,32361
+9445,58815
+9446,32558
+9447,40303
+9448,67039
+9449,40303
+9450,40299
+9451,48210
+9452,60216
+9453,8411
+9454,43104
+9455,604
+9456,4374
+9457,72623
+9458,73980
+9459,21754
+9460,51843
+9461,29648
+9462,8409
+9463,21444
+9464,21720
+9465,13815
+9466,1719
+9467,5765
+9468,1717
+9469,55022
+9470,70426,30584
+9471,55423
+9472,19231
+9473,52659
+9474,31656
+9475,30584
+9476,36726
+9477,617
+9478,75078
+9479,52660
+9480,29509
+9481,75958
+9482,21963
+9483,35243
+9484,75823
+9485,28801
+9486,77192
+9487,81781
+9488,57140
+9489,19234
+9490,53295,67582
+9491,58798
+9492,71493,81781
+9493,77192
+9494,21963
+9495,33998
+9496,23751
+9497,62938
+9498,21444
+9499,35342
+9500,19234
+9501,29509,62089
+9502,50346
+9503,37127,46935
+9504,81669
+9505,58853,20946
+9506,58853,20946
+9507,58853,20946
+9508,55951
+9509,27092
+9510,21765,46935
+9511,39803
+9512,63586
+9513,1319
+9514,55022
+9515,9514
+9516,1324
+9517,40303
+9518,56162
+9519,41878
+9520,41879
+9521,25175
+9522,41882
+9523,79867
+9524,35096
+9525,55951
+9526,70426,44596,31041
+9527,35243
+9528,19231
+9529,73794
+9530,71493
+9531,617
+9532,42436
+9533,40012
+9534,57140
+9535,29509
+9536,21443
+9537,79541
+9538,58798
+9539,22640
+9540,79495
+9541,51848
+9542,61415
+9543,67038
+9544,31041
+9545,66703
+9546,53480,60448
+9547,29509
+9548,32473
+9549,27044
+9550,29509
+9551,27287
+9552,19234
+9553,20426
+9554,20425
+9555,35243
+9556,29509
+9557,40423
+9558,35097
+9559,35096
+9560,27763
+9561,32263
+9562,19231
+9563,52887
+9564,55081
+9565,55080
+9566,48957
+9567,52886
+9568,20756
+9569,66703
+9570,60611
+9571,75823
+9572,2250
+9573,30895
+9574,35242
+9575,66824,71603
+9576,67039
+9577,68678
+9578,48439
+9579,61252
+9580,41879
+9581,31542
+9582,70209
+9583,60216
+9584,62015,67582
+9585,62015
+9586,62015
+9587,62015
+9588,62015
+9589,43104
+9590,29509
+9591,29509
+9592,81781
+9593,57671,68520,37908,21444
+9594,35944
+9595,49817
+9596,21963
+9597,37127
+9598,52887
+9599,21963
+9600,21963
+9601,21963
+9602,35492
+9603,21719
+9604,56219
+9605,21720
+9606,21963
+9607,35243
+9608,67038
+9609,65960
+9610,40303
+9611,39678
+9612,61258
+9613,20756
+9614,29621
+9615,44703
+9616,51019
+9617,51019
+9618,51019
+9619,51019
+9620,41878
+9621,21720
+9622,21719
+9623,40299
+9624,40303
+9625,40303
+9626,52886
+9627,67039
+9628,21720
+9629,20425
+9630,20426
+9631,21720
+9632,39679
+9633,24325
+9634,65959
+9635,65960
+9636,31542
+9637,52887
+9638,81781
+9639,52461
+9640,6945
+9641,235
+9642,283
+9643,55022
+9644,35243
+9645,35342
+9646,21443
+9647,21443
+9648,81781
+9649,36381
+9650,66703
+9651,6941
+9652,25303
+9653,35097
+9654,67039
+9655,21963
+9656,40303
+9657,21963
+9658,61086
+9659,54266
+9660,43104
+9661,55240
+9662,32326
+9663,56142
+9664,49166
+9665,20946
+9666,67039
+9667,8647
+9668,25303
+9669,81781
+9670,72546,49420
+9671,66824,60639
+9672,50110
+9673,38828
+9674,81781
+9675,38783
+9676,27763
+9677,77192
+9678,77192
+9679,77192
+9680,29509
+9681,61086
+9682,21963
+9683,28164
+9684,55081
+9685,20427
+9686,56119
+9687,75942
+9688,55423
+9689,61622
+9690,36892
+9691,59903
+9692,21963
+9693,28801
+9694,59380
+9695,59380
+9696,75958
+9697,283
+9698,277
+9699,30230
+9700,36008
+9701,23796
+9702,48957
+9703,59380
+9704,27592
+9705,44703
+9706,31542
+9707,60216
+9708,70209
+9709,56119
+9710,283
+9711,277
+9712,34746
+9713,75958
+9714,9716
+9715,9716
+9716,55022
+9717,65960
+9718,41882
+9719,35875
+9720,58798
+9721,51881
+9722,35342
+9723,31231
+9724,5777
+9725,5765
+9726,28747
+9727,29509
+9728,29509
+9729,27167
+9730,21963
+9731,8409
+9732,68544
+9733,35097
+9734,63005
+9735,51396
+9736,61258
+9737,29621
+9738,15311
+9739,51397
+9740,64255
+9741,29509
+9742,19234
+9743,47505
+9744,39803
+9745,19809
+9746,56119
+9747,56119
+9748,54979
+9749,40303
+9750,54980
+9751,28747
+9752,29509
+9753,21720
+9754,29509,62089
+9755,20756
+9756,55081
+9757,24325
+9758,24325
+9759,35097
+9760,24325
+9761,6298
+9762,66703
+9763,21719
+9764,21720
+9765,68520,21444
+9766,35096
+9767,61254
+9768,21963
+9769,36055
+9770,50638,13746
+9771,72966
+9772,33928
+9773,53861
+9774,32473
+9775,71624
+9776,22402
+9777,52660
+9778,27297
+9779,21963
+9780,36381
+9781,61622
+9782,25499
+9783,58262
+9784,74888
+9785,3612
+9786,21754
+9787,21754
+9788,40627
+9789,21963
+9790,25431
+9791,78409
+9792,61254
+9793,17348
+9794,29509
+9795,52887
+9796,69295
+9797,41657
+9798,40299
+9799,40303
+9800,68520
+9801,24224
+9802,21720
+9803,20756
+9804,57671
+9805,57671
+9806,67479
+9807,60611
+9808,49341
+9809,28801
+9810,3281
+9811,52660
+9812,51397
+9813,56119,62089
+9814,74560
+9815,55081
+9816,51686
+9817,63017
+9818,9899
+9819,60639,31041
+9820,62512
+9821,44953
+9822,21719
+9823,67039
+9824,61254
+9825,1719
+9826,5765
+9827,1717
+9828,55022
+9829,52887
+9830,31542
+9831,70759
+9832,66703
+9833,21967
+9834,39803
+9835,66703
+9836,57561
+9837,39803
+9838,72966
+9839,66703
+9840,66703
+9841,54980
+9842,54979
+9843,51148
+9844,74191
+9845,29509,62089
+9846,5501
+9847,617
+9848,54767,38828
+9849,61254
+9850,43104
+9851,9467
+9852,1718
+9853,46148
+9854,56119
+9855,75078
+9856,3281
+9857,19231
+9858,31041
+9859,55423
+9860,3281
+9861,60822
+9862,69818
+9863,35242
+9864,53480
+9865,20756
+9866,35096
+9867,24325
+9868,29509,62089
+9869,40303
+9870,40299
+9871,35243
+9872,51898
+9873,51897
+9874,51898
+9875,50899
+9876,23442
+9877,60448
+9878,21720
+9879,60611
+9880,29509
+9881,60620
+9882,60822
+9883,31041
+9884,60374
+9885,24325
+9886,21443
+9887,55423
+9888,35097
+9889,35096
+9890,29509,15869
+9891,66703
+9892,79076
+9893,35243
+9894,12045
+9895,50490
+9896,55081
+9897,9899
+9898,16858
+9899,9898
+9900,39678
+9901,5765
+9902,73650
+9903,8409
+9904,24538
+9905,56119
+9906,39679
+9907,20996
+9908,21963
+9909,67039
+9910,56119
+9911,81781
+9912,61218
+9913,5501
+9914,29509
+9915,48957
+9916,71685
+9917,61622
+9918,21963
+9919,21444
+9920,40299
+9921,40303
+9922,24325
+9923,40303
+9924,27763
+9925,24325
+9926,39679
+9927,39678
+9928,35242,59169
+9929,35243
+9930,52805
+9931,62512
+9932,75958
+9933,26789
+9934,26789
+9935,53384
+9936,76779
+9937,15634
+9938,19234
+9939,60611
+9940,41103
+9941,82163
+9942,72990,68230
+9943,36452
+9944,20756
+9945,24321
+9946,52886
+9947,6298
+9948,4374
+9949,19231
+9950,77192
+9951,29509,62095
+9952,17078
+9953,8647
+9954,8650
+9955,40303
+9956,81467
+9957,35787
+9958,67039
+9959,63017
+9960,9044
+9961,9044
+9962,9044
+9963,9044
+9964,9044,67582
+9965,9044
+9966,9044
+9967,9044
+9968,9044
+9969,9044
+9970,9044
+9971,9044
+9972,9044
+9973,9044
+9974,9044
+9975,9044
+9976,702
+9977,35787
+9978,603
+9979,29509
+9980,55718
+9981,61622
+9982,21996
+9983,67039
+9984,27738
+9985,43104
+9986,18088
+9987,9453
+9988,10585
+9989,3701
+9990,37204
+9991,61622
+9992,21996
+9993,61622
+9994,59903
+9995,19379
+9996,76664
+9997,59903
+9998,72961
+9999,15159
+10000,52259
+10001,58798
+10002,81781
+10003,24325
+10004,52887
+10005,39679
+10006,39678
+10007,21720
+10008,80562
+10009,8664
+10010,75958
+10011,35917
+10012,1752
+10013,56119,62089
+10014,1751
+10015,1752
+10016,77192
+10017,65764
+10018,12523
+10019,29509
+10020,29509
+10021,40012
+10022,29509
+10023,29509
+10024,21719
+10025,40012,68446
+10026,36381
+10027,63668
+10028,21720
+10029,61877
+10030,29509
+10031,70166
+10032,60448,61622
+10033,42436
+10034,42436
+10035,1537
+10036,31766
+10037,19475
+10038,81643
+10039,28129
+10040,1718
+10041,52887
+10042,77192
+10043,19796
+10044,3281
+10045,69043
+10046,19231
+10047,6846,25303
+10048,1017,5848,67582
+10049,61086
+10050,31041
+10051,60448
+10052,40303
+10053,14504
+10054,35243
+10055,29509
+10056,24325
+10057,19231
+10058,11974
+10059,29509
+10060,67039
+10061,31542
+10062,56119
+10063,24325
+10064,29509,62089
+10065,43104
+10066,76134
+10067,35474
+10068,13817
+10069,13818
+10070,40299
+10071,40303
+10072,52887
+10073,52886
+10074,21444
+10075,61086
+10076,40299
+10077,40303
+10078,789
+10079,5777
+10080,56119
+10081,41446
+10082,5765
+10083,29509
+10084,1752
+10085,48957
+10086,21720
+10087,21719
+10088,52887
+10089,43104
+10090,789
+10091,21963
+10092,41878
+10093,41882
+10094,41879
+10095,21963
+10096,35875
+10097,39678
+10098,61258
+10099,29621
+10100,39679
+10101,29621
+10102,21963
+10103,21720
+10104,21719
+10105,43104
+10106,789
+10107,21719
+10108,44703
+10109,39679
+10110,21720
+10111,81781
+10112,21720
+10113,21719
+10114,82167
+10115,29509
+10116,29509
+10117,35243
+10118,43104
+10119,67957
+10120,32361
+10121,32361
+10122,31542
+10123,24325
+10124,42436
+10125,42488
+10126,55081
+10127,67039
+10128,35097
+10129,42436,10160
+10130,68520
+10131,32886
+10132,35096
+10133,35097
+10134,81781
+10135,51068
+10136,54872
+10137,55034
+10138,55034
+10139,55034
+10140,74539
+10141,75683
+10142,78703
+10143,75976
+10144,31079
+10145,4566
+10146,20889
+10147,42436
+10148,31041
+10149,32929
+10150,61622
+10151,52887
+10152,52478
+10153,62176
+10154,55022
+10155,46148
+10156,49817
+10157,29076
+10158,43104
+10159,1704
+10160,5765
+10161,15679
+10162,80106
+10163,60611,60448
+10164,64846
+10165,21963
+10166,72990,60448
+10167,40986
+10168,22292
+10169,21719
+10170,41284
+10171,21488
+10172,5501
+10173,66703
+10174,38828
+10175,74625
+10176,35243
+10177,60620
+10178,35097
+10179,29509
+10180,10711
+10181,41879
+10182,41877
+10183,24325
+10184,21720
+10185,65960
+10186,21720
+10187,24325
+10188,52886
+10189,52887
+10190,40299
+10191,39679
+10192,52887
+10193,67039
+10194,40299
+10195,40303
+10196,277
+10197,48957
+10198,283
+10199,50969
+10200,41446
+10201,73165
+10202,48957
+10203,41280
+10204,66703
+10205,21443
+10206,72386
+10207,21963
+10208,13746
+10209,72966
+10210,70426
+10211,51400
+10212,52887
+10213,20756
+10214,56119
+10215,51271
+10216,30218
+10217,36381
+10218,74969
+10219,58175
+10220,14870
+10221,66703
+10222,56246
+10223,42020
+10224,61086
+10225,7657
+10226,43104
+10227,21720
+10228,61796
+10229,41279
+10230,67184
+10231,27253
+10232,52659
+10233,29621
+10234,58798
+10235,25022
+10236,67462
+10237,56230,46148
+10238,72961
+10239,2607
+10240,2608
+10241,76135
+10242,35474
+10243,65763
+10244,8353
+10245,35474
+10246,31041,31279
+10247,52660
+10248,51397
+10249,13019
+10250,29509
+10251,81781
+10252,68520
+10253,60448
+10254,77192
+10255,702
+10256,603
+10257,53118,31522
+10258,46148
+10259,2205
+10260,21720
+10261,21719
+10262,72990
+10263,21963
+10264,48957
+10265,40303
+10266,55423
+10267,38436
+10268,65501
+10269,75958
+10270,56119
+10271,40299
+10272,10300
+10273,63327
+10274,25303
+10275,65960
+10276,24321
+10277,20756
+10278,21720
+10279,29621
+10280,35243
+10281,29509,62089
+10282,81781
+10283,48319
+10284,283
+10285,10287
+10286,277
+10287,55022
+10288,55081
+10289,18109
+10290,1319
+10291,21443
+10292,59903
+10293,15835
+10294,75358
+10295,1549
+10296,1324
+10297,1319
+10298,10289
+10299,55022
+10300,72961
+10301,29549,54398
+10302,40752
+10303,35243
+10304,48957
+10305,32456
+10306,1319
+10307,61086
+10308,56119
+10309,60448
+10310,496
+10311,497
+10312,58798
+10313,283
+10314,41446
+10315,277
+10316,20946
+10317,61622
+10318,27702
+10319,20756
+10320,40303
+10321,29509,62089
+10322,68230
+10323,40303
+10324,81781
+10325,35097
+10326,46145
+10327,67039
+10328,67038
+10329,81781
+10330,48957
+10331,32456
+10332,5765
+10333,36047
+10334,15310
+10335,4374
+10336,77223
+10337,55022
+10338,37127
+10339,23791
+10340,37123
+10341,5111
+10342,12066
+10343,67039
+10344,35243
+10345,35242
+10346,61258
+10347,35243
+10348,35243
+10349,10680
+10350,10676
+10351,15311
+10352,36381
+10353,29621
+10354,35243
+10355,47503
+10356,56127
+10357,52887
+10358,52887
+10359,52886
+10360,48957
+10361,56119
+10362,56119
+10363,3281
+10364,3281
+10365,29509
+10366,29509
+10367,64820
+10368,17226
+10369,17227
+10370,43104
+10371,5501
+10372,15814
+10373,65767
+10374,1080
+10375,6758
+10376,29509
+10377,2126
+10378,3600
+10379,11957
+10380,56133,72990
+10381,53480
+10382,69330
+10383,61622
+10384,35097
+10385,21963
+10386,52887
+10387,21720
+10388,45309
+10389,45309
+10390,63327
+10391,58798
+10392,35097
+10393,25406
+10394,48957
+10395,38676
+10396,78598
+10397,29580
+10398,35474
+10399,65754
+10400,52886
+10401,67039
+10402,56119
+10403,56219
+10404,82176
+10405,45769
+10406,35097
+10407,72961
+10408,20756
+10409,52887
+10410,2947
+10411,77192
+10412,37204
+10413,81781
+10414,29509
+10415,21444
+10416,77192
+10417,81781
+10418,17362
+10419,35917
+10420,58798,37918
+10421,43112
+10422,20756
+10423,21719
+10424,61086
+10425,21719
+10426,22850
+10427,20756
+10428,78104
+10429,75958
+10430,6403
+10431,36047
+10432,69598
+10433,69693
+10434,81781
+10435,30896,66344
+10436,49079
+10437,30895
+10438,19497
+10439,38441
+10440,12225
+10441,18008
+10442,56119
+10443,78580
+10444,44542
+10445,7658
+10446,29509,62089
+10447,29509
+10448,15820
+10449,723
+10450,55080
+10451,41879
+10452,66344
+10453,8162
+10454,14870
+10455,61086
+10456,39679
+10457,39678
+10458,61258
+10459,45758
+10460,40018
+10461,54527
+10462,6984
+10463,55304
+10464,55303
+10465,61258
+10466,8409
+10467,63017
+10468,76135,45839
+10469,81142
+10470,37408
+10471,60448
+10472,27620
+10473,3701
+10474,15311
+10475,61086
+10476,22350
+10477,20756
+10478,77641
+10479,21443
+10480,7734
+10481,18520
+10482,64250
+10483,77192,62089
+10484,69308
+10485,19649
+10486,21356
+10487,54437
+10488,61622
+10489,13020
+10490,43104
+10491,6846,25303
+10492,1017,5848,67582
+10493,56917
+10494,53480
+10495,10496
+10496,73321
+10497,33797
+10498,26602
+10499,70426
+10500,36381,61622
+10501,39803
+10502,68544
+10503,52887
+10504,81781
+10505,21443
+10506,77192
+10507,54768
+10508,46935
+10509,29509
+10510,4130
+10511,21963
+10512,14504
+10513,75940,74414
+10514,41280
+10515,56117
+10516,29509,62089
+10517,35534
+10518,81781
+10519,58798
+10520,19231
+10521,42436,72990
+10522,49485,28938
+10523,21443
+10524,32456
+10525,41146
+10526,39679
+10527,39678
+10528,36381
+10529,55180
+10530,61086
+10531,20756
+10532,52887
+10533,48957
+10534,66344,61622
+10535,61622
+10536,47503
+10537,70426
+10538,19234
+10539,24379,67582
+10540,19231,30584
+10541,50878
+10542,62015
+10543,48957,6298
+10544,64202
+10545,61252
+10546,7658
+10547,61622
+10548,30584
+10549,30584
+10550,30584
+10551,60448,37127,66344
+10552,30584
+10553,39296
+10554,30895
+10555,19497
+10556,8650,55324
+10557,14071
+10558,14071
+10559,70471,67582
+10560,64255
+10561,3969
+10562,702
+10563,35557
+10564,43631
+10565,603
+10566,3386
+10567,11974
+10568,61622
+10569,56119
+10570,29509
+10571,1752
+10572,11017
+10573,81781
+10574,617
+10575,19231
+10576,72969
+10577,77192
+10578,49134
+10579,39774
+10580,76062
+10581,68230
+10582,50701
+10583,65765
+10584,62512
+10585,65759
+10586,74926
+10587,496
+10588,497
+10589,702
+10590,3969
+10591,23471
+10592,78725
+10593,39676
+10594,8170,17951
+10595,77192,62089
+10596,31041
+10597,75078,53365
+10598,33797,29197
+10599,53379
+10600,53379
+10601,53379
+10602,53379
+10603,53379
+10604,53379
+10605,53379
+10606,53379
+10607,53379
+10608,50608
+10609,53379
+10610,53379
+10611,53379
+10612,53379
+10613,53379
+10614,61622
+10615,65960
+10616,35875
+10617,29621
+10618,21720
+10619,21720
+10620,75924
+10621,75924
+10622,75924
+10623,21719
+10624,72585
+10625,2126
+10626,29509
+10627,22032
+10628,58798
+10629,21963
+10630,55423
+10631,39679
+10632,6846,25303
+10633,1016,5848,67582
+10634,73459
+10635,35243
+10636,1411
+10637,1412
+10638,81781
+10639,48957
+10640,27738
+10641,79850
+10642,79850
+10643,28346
+10644,3701
+10645,30300
+10646,81781
+10647,81781
+10648,283
+10649,277
+10650,55022
+10651,56142
+10652,55022
+10653,10652
+10654,48957
+10655,32456
+10656,81781
+10657,65882
+10658,48768,21586
+10659,53537
+10660,48768
+10661,52504
+10662,14493
+10663,74344
+10664,40303
+10665,60611
+10666,47503
+10667,35150
+10668,35777
+10669,21013
+10670,6984
+10671,33928
+10672,41729
+10673,43313
+10674,63790
+10675,38441
+10676,723
+10677,55081
+10678,55080
+10679,61622
+10680,724
+10681,35766
+10682,6298
+10683,40012
+10684,57140
+10685,21720
+10686,69744
+10687,22850
+10688,52887
+10689,29509
+10690,29509,62089
+10691,59576
+10692,56119
+10693,29509
+10694,38439
+10695,77192
+10696,77192
+10697,42481
+10698,61646
+10699,61796
+10700,81781
+10701,81398
+10702,66824,71603
+10703,45866
+10704,48768,53060
+10705,75828
+10706,81781
+10707,22850,30009
+10708,37204
+10709,64967
+10710,61489
+10711,37043
+10712,21444
+10713,55423
+10714,13746
+10715,81781
+10716,46148
+10717,38517
+10718,60448
+10719,20946
+10720,54467
+10721,42436
+10722,37127
+10723,50110
+10724,14422
+10725,61415
+10726,35843
+10727,35243
+10728,20756
+10729,34198
+10730,34198
+10731,29509
+10732,47582
+10733,55951
+10734,29509
+10735,36607
+10736,77192
+10737,77192
+10738,67039,12784
+10739,45452
+10740,41870
+10741,65695
+10742,45452
+10743,46780
+10744,6946
+10745,9987
+10746,29509
+10747,67039
+10748,70033
+10749,68544
+10750,64015
+10751,41736
+10752,71146
+10753,80354
+10754,2291,65374
+10755,6840
+10756,21720
+10757,21719
+10758,20756
+10759,52887
+10760,52886
+10761,6378
+10762,20426
+10763,52886
+10764,20756
+10765,65959
+10766,24321
+10767,24325
+10768,52887
+10769,52886
+10770,52887
+10771,68481
+10772,68705
+10773,37693
+10774,72990
+10775,60611
+10776,20575
+10777,57140
+10778,66703
+10779,21963
+10780,41879
+10781,41878
+10782,76134
+10783,24325
+10784,21443
+10785,24325
+10786,40303
+10787,21720
+10788,24325
+10789,51396
+10790,67039
+10791,67038
+10792,30490
+10793,76802
+10794,77192
+10795,72966
+10796,67546
+10797,75828
+10798,24321
+10799,24325
+10800,52887
+10801,67039
+10802,67038
+10803,35097
+10804,35243
+10805,52886
+10806,24321
+10807,21963
+10808,3695
+10809,3695
+10810,52887
+10811,40065,60435
+10812,27763
+10813,52887
+10814,21719
+10815,21720
+10816,21719
+10817,21720
+10818,24325
+10819,24325
+10820,11472
+10821,52887
+10822,81781
+10823,21719
+10824,50878
+10825,29509
+10826,29509
+10827,73555
+10828,36381
+10829,49341,51702
+10830,55055,25431
+10831,50604
+10832,28801
+10833,40986
+10834,76152
+10835,21444
+10836,31041
+10837,13314
+10838,55951
+10839,36939
+10840,35534
+10841,21720
+10842,39679
+10843,52659
+10844,52660
+10845,63564
+10846,63564
+10847,63564
+10848,762
+10849,13817
+10850,13818
+10851,496
+10852,497
+10853,21720
+10854,27141
+10855,31041
+10856,20756
+10857,31542
+10858,71334
+10859,21963
+10860,40303
+10861,35243
+10862,79650
+10863,24325
+10864,20756
+10865,24321
+10866,35096
+10867,35097
+10868,35243
+10869,38569
+10870,52886
+10871,52887
+10872,68059
+10873,43102
+10874,53069
+10875,55423
+10876,54980
+10877,53060
+10878,33592
+10879,19234
+10880,67039
+10881,14504
+10882,75940,48100
+10883,71853
+10884,57109,61622
+10885,29549
+10886,48768
+10887,24321
+10888,24325
+10889,29509
+10890,77192
+10891,52887
+10892,40303
+10893,39803
+10894,79618
+10895,65374
+10896,40303
+10897,70426
+10898,24321
+10899,24325
+10900,21718
+10901,71817
+10902,36892
+10903,79471
+10904,66703
+10905,61254
+10906,71347
+10907,65758,81781
+10908,67039
+10909,29509
+10910,56127
+10911,64747
+10912,46274
+10913,27763
+10914,35917
+10915,43104
+10916,604
+10917,52887
+10918,76664
+10919,43104
+10920,38228
+10921,67039
+10922,15785
+10923,49817
+10924,27245
+10925,14290
+10926,29509,62089
+10927,35243
+10928,29621
+10929,61086
+10930,74000
+10931,22649
+10932,13818
+10933,13815
+10934,13817
+10935,13817
+10936,59565
+10937,54811
+10938,55081
+10939,72990
+10940,26656
+10941,66703
+10942,57932
+10943,29509
+10944,3294
+10945,10944
+10946,66341
+10947,15876
+10948,80106
+10949,50192
+10950,33639
+10951,35944
+10952,31292
+10953,43211
+10954,49468
+10955,67548
+10956,55022
+10957,10956
+10958,61599
+10959,62842
+10960,70524
+10961,40752
+10962,12054
+10963,56119
+10964,31041
+10965,24224
+10966,496
+10967,29509,62095
+10968,29509
+10969,63327
+10970,25303
+10971,39803
+10972,21420
+10973,64202
+10974,21959
+10975,68678
+10976,68520,57671,21444
+10977,60611
+10978,38798
+10979,81781
+10980,27506
+10981,702
+10982,51400
+10983,603
+10984,49992
+10985,39802
+10986,497
+10987,496
+10988,21720
+10989,20756
+10990,22642
+10991,22643
+10992,40299
+10993,52887
+10994,39679
+10995,20425
+10996,21963
+10997,52887
+10998,21443
+10999,32456
+11000,60822
+11001,40303
+11002,40303
+11003,31542
+11004,39679
+11005,41879
+11006,40303
+11007,44703
+11008,47404
+11009,52887
+11010,65960
+11011,65960
+11012,66506
+11013,43104
+11014,55951
+11015,18720
+11016,46149
+11017,43104
+11018,5485
+11019,6625
+11020,8310
+11021,9986
+11022,76664
+11023,36381,58915
+11024,47505
+11025,43104
+11026,6298
+11027,77192
+11028,30647
+11029,64202
+11030,33928
+11031,56219
+11032,22056
+11033,43104
+11034,21444
+11035,39802
+11036,21963
+11037,8841
+11038,9280
+11039,29509
+11040,8397
+11041,31041
+11042,59380
+11043,66703
+11044,42020
+11045,60448
+11046,60448,37127
+11047,13735
+11048,61625
+11049,36381
+11050,22922
+11051,81781
+11052,58798
+11053,60611
+11054,21444
+11055,81781
+11056,42436
+11057,61622
+11058,55081
+11059,24325
+11060,29509
+11061,7660
+11062,24321
+11063,43193
+11064,67038
+11065,67038
+11066,24325
+11067,5350
+11068,3600
+11069,23471
+11070,53974
+11071,27255
+11072,48957
+11073,61086
+11074,48957
+11075,14504
+11076,36892
+11077,16685
+11078,53480
+11079,29509
+11080,702
+11081,68994
+11082,603
+11083,39802
+11084,4336
+11085,33327
+11086,6952
+11087,55952
+11088,56119
+11089,27763
+11090,69363
+11091,54444
+11092,48520
+11093,38173
+11094,66344
+11095,27763
+11096,67272
+11097,8841
+11098,21719
+11099,58798
+11100,52887
+11101,67462
+11102,76782
+11103,702
+11104,66703
+11105,603
+11106,60120
+11107,77192
+11108,15623
+11109,3652
+11110,66703
+11111,702
+11112,31085
+11113,43672
+11114,38537
+11115,603
+11116,76782
+11117,33797
+11118,50110
+11119,81781
+11120,21996
+11121,19525
+11122,22402,42436
+11123,21963
+11124,19231
+11125,67039
+11126,81781
+11127,81781
+11128,65754
+11129,35474
+11130,13088
+11131,49817
+11132,7658
+11133,35492
+11134,72990
+11135,13019
+11136,16914
+11137,55303
+11138,55304
+11139,29509,62089
+11140,66703
+11141,23471
+11142,53480
+11143,74537
+11144,40303
+11145,40299
+11146,27405
+11147,5485
+11148,6946
+11149,7427
+11150,60822
+11151,58798,68520
+11152,27763
+11153,43449
+11154,56119,62089
+11155,67277
+11156,37702
+11157,63327
+11158,71493
+11159,40986
+11160,7734
+11161,18520
+11162,8331
+11163,8330
+11164,66703
+11165,496
+11166,497
+11167,43125
+11168,25495
+11169,39679
+11170,68059
+11171,6952
+11172,34746
+11173,81161
+11174,64873
+11175,5235
+11176,5777
+11177,55022
+11178,40299
+11179,36381
+11180,77192
+11181,8409
+11182,40303
+11183,27763
+11184,60592
+11185,24711
+11186,36381
+11187,62408
+11188,15311
+11189,48957
+11190,52886
+11191,24325
+11192,72990
+11193,47722
+11194,48957
+11195,21963
+11196,40303
+11197,29509,62089
+11198,46148
+11199,35097
+11200,24321
+11201,24325
+11202,6952
+11203,2609
+11204,11205
+11205,1545
+11206,62932,5777
+11207,56119
+11208,35097
+11209,21754
+11210,80591
+11211,18844
+11212,5765
+11213,56638
+11214,49833
+11215,35243
+11216,58798
+11217,1319
+11218,43104
+11219,1324
+11220,568
+11221,55022
+11222,1319
+11223,41878
+11224,41882
+11225,79471
+11226,49162
+11227,61086
+11228,37127
+11229,40299
+11230,40303
+11231,21720
+11232,29621
+11233,24224
+11234,52887
+11235,52886
+11236,21720
+11237,66703
+11238,53012
+11239,35474
+11240,76135,45839
+11241,25022
+11242,76135,45839
+11243,20756
+11244,35243
+11245,35242
+11246,77192
+11247,77192
+11248,13746
+11249,19234
+11250,41155
+11251,56119,62089
+11252,52904
+11253,62852
+11254,55423
+11255,20946
+11256,45222
+11257,81781
+11258,702
+11259,603
+11260,77192
+11261,29509,62089
+11262,43104
+11263,77192
+11264,23471
+11265,33639
+11266,60899
+11267,29509
+11268,53118
+11269,60448
+11270,37204
+11271,31041
+11272,56119
+11273,33797
+11274,77641
+11275,35051
+11276,37693
+11277,33638
+11278,36946
+11279,22845
+11280,22845
+11281,42436
+11282,81781
+11283,72966
+11284,68705
+11285,27763
+11286,79541
+11287,72966
+11288,2657,80962
+11289,29509
+11290,48957
+11291,18091
+11292,38517
+11293,75823
+11294,65763
+11295,67920
+11296,65767
+11297,11480
+11298,31041
+11299,19231,30584
+11300,60448
+11301,68520
+11302,61622
+11303,61622
+11304,21448
+11305,67120
+11306,13020
+11307,35096
+11308,75958
+11309,43104
+11310,40288
+11311,41879
+11312,55223
+11313,55223
+11314,41878
+11315,14638
+11316,17867
+11317,72990,81781
+11318,66703
+11319,23471
+11320,23550
+11321,45217
+11322,67479
+11323,71493
+11324,61033
+11325,40065
+11326,20946
+11327,24249
+11328,77192
+11329,39183
+11330,29509
+11331,32988
+11332,28801
+11333,63327
+11334,13818
+11335,28754
+11336,6042
+11337,75958
+11338,277
+11339,11340
+11340,55022
+11341,283
+11342,29509
+11343,40303
+11344,34389
+11345,3281
+11346,74191
+11347,72990
+11348,617,40065
+11349,61622,32691
+11350,21550
+11351,66824
+11352,81781
+11353,77192
+11354,46444
+11355,14504
+11356,30186
+11357,48768,58798
+11358,9930
+11359,49162
+11360,35097
+11361,26155
+11362,50603
+11363,723
+11364,28801
+11365,52887
+11366,56119
+11367,80962
+11368,63327
+11369,58798
+11370,48597
+11371,57140
+11372,29509
+11373,24325
+11374,24321
+11375,33928
+11376,73488
+11377,39803
+11378,36434
+11379,58798
+11380,74191,39623
+11381,29509,62089
+11382,62902
+11383,55423
+11384,64747
+11385,55423
+11386,56127
+11387,79850
+11388,66035
+11389,29553
+11390,61764
+11391,61796,37204
+11392,277
+11393,283
+11394,28546
+11395,55022
+11396,55734
+11397,31041
+11398,39803
+11399,76782
+11400,76782
+11401,72990
+11402,41878
+11403,41882
+11404,28747
+11405,40303
+11406,40299
+11407,20756
+11408,61796
+11409,2141
+11410,8360
+11411,55081
+11412,56189
+11413,55565
+11414,75958
+11415,75958
+11416,29509,62089
+11417,48957
+11418,11480
+11419,61796
+11420,42488
+11421,53480,21996
+11422,60620,20575
+11423,57140
+11424,60445
+11425,28801
+11426,40299
+11427,40303
+11428,40303
+11429,29509
+11430,58798
+11431,74973
+11432,20632
+11433,77192
+11434,1545
+11435,29509
+11436,50201
+11437,81781
+11438,52887
+11439,35243
+11440,40299
+11441,81781
+11442,63668
+11443,52886
+11444,58798
+11445,29509,62089
+11446,52886
+11447,43531
+11448,23643
+11449,29648
+11450,60445,51148
+11451,66703
+11452,26012
+11453,66703
+11454,52887
+11455,55081
+11456,55080
+11457,61258
+11458,31542
+11459,21720
+11460,79618
+11461,80962
+11462,52887
+11463,51397
+11464,56119,62089
+11465,24325
+11466,24321
+11467,21719
+11468,24325
+11469,21719
+11470,14638
+11471,62932
+11472,6952
+11473,2126
+11474,22850
+11475,723
+11476,724
+11477,11476
+11478,77192
+11479,11475
+11480,65767
+11481,11480
+11482,24325
+11483,24321
+11484,81781,61622
+11485,35103
+11486,31041
+11487,52887
+11488,52886
+11489,40303
+11490,61748
+11491,47127
+11492,41879
+11493,48768
+11494,55423
+11495,29509
+11496,1752
+11497,54980
+11498,20756
+11499,54979
+11500,24325
+11501,1324
+11502,55022
+11503,41882
+11504,29509
+11505,33327
+11506,6945
+11507,21719
+11508,22642
+11509,22642
+11510,20756
+11511,20756
+11512,24325
+11513,40303
+11514,40299
+11515,20889
+11516,61311
+11517,40299
+11518,52886
+11519,52887
+11520,20756
+11521,52887
+11522,61254
+11523,52887
+11524,35097
+11525,37127
+11526,35097
+11527,35096
+11528,61258
+11529,35243
+11530,35097
+11531,52660
+11532,52659
+11533,21720
+11534,52887
+11535,52887
+11536,52886
+11537,21720
+11538,21719
+11539,55951
+11540,67039
+11541,67039
+11542,35096
+11543,35097
+11544,35096
+11545,61258
+11546,27763
+11547,35097
+11548,20756
+11549,21719
+11550,21720
+11551,29509
+11552,70033
+11553,20756
+11554,54979
+11555,54980
+11556,40303
+11557,44777
+11558,40299
+11559,20756
+11560,40303
+11561,44777
+11562,40303
+11563,29621
+11564,35875
+11565,22642
+11566,20756
+11567,51068
+11568,56119
+11569,33726
+11570,42338
+11571,35706
+11572,68780
+11573,723
+11574,21963
+11575,29509
+11576,81781
+11577,15311
+11578,55423
+11579,62938
+11580,52887
+11581,77192
+11582,30391
+11583,8841
+11584,29509
+11585,29509,62089
+11586,44703
+11587,29509
+11588,29509
+11589,724
+11590,17555
+11591,63327
+11592,25303
+11593,55080
+11594,61258
+11595,55081
+11596,3297
+11597,56119
+11598,37204
+11599,65960
+11600,29509
+11601,29509
+11602,34746
+11603,283
+11604,277
+11605,15311
+11606,66703
+11607,77192
+11608,15311
+11609,29509
+11610,66703
+11611,64747
+11612,77192
+11613,65763
+11614,5235
+11615,29509
+11616,29509
+11617,55423
+11618,55423
+11619,29509
+11620,12045
+11621,15311
+11622,29509
+11623,38828,72990
+11624,29509,62089
+11625,496
+11626,497
+11627,67957
+11628,48957
+11629,55329
+11630,35243
+11631,53480
+11632,26936
+11633,29509,62089
+11634,42436,37693
+11635,27506
+11636,37693
+11637,80106
+11638,55951
+11639,77689
+11640,23471
+11641,51397
+11642,52887
+11643,77192
+11644,61086
+11645,81781
+11646,38209
+11647,72966
+11648,56119
+11649,72990
+11650,27738
+11651,35243
+11652,52887
+11653,29509,62089
+11654,35787
+11655,20756
+11656,77192
+11657,54979
+11658,36644
+11659,65764
+11660,18882
+11661,47925
+11662,47925
+11663,21938
+11664,33888
+11665,7256
+11666,19649
+11667,19649
+11668,75945
+11669,19649
+11670,50610
+11671,19649
+11672,19649
+11673,47925
+11674,75958
+11675,75958
+11676,75958
+11677,51189
+11678,19649
+11679,19649
+11680,17468
+11681,71988
+11682,47925
+11683,17468
+11684,38676
+11685,59380
+11686,19649
+11687,56917
+11688,19649
+11689,7399
+11690,65960
+11691,28801
+11692,21963
+11693,40303
+11694,48957
+11695,32456
+11696,1548
+11697,54979
+11698,1411
+11699,1412
+11700,19649
+11701,19649
+11702,19649
+11703,19649
+11704,19649
+11705,56219
+11706,75823
+11707,34198
+11708,38680
+11709,24977
+11710,3695
+11711,48210
+11712,65767
+11713,77192
+11714,39404
+11715,71321
+11716,19234
+11717,39403,71333
+11718,11918
+11719,46387
+11720,8397
+11721,47327
+11722,702
+11723,603
+11724,49817
+11725,66703
+11726,20426
+11727,60611
+11728,64250
+11729,34746
+11730,40303
+11731,10300
+11732,34746
+11733,61789
+11734,25303
+11735,72990
+11736,43104,75078
+11737,19389
+11738,52660
+11739,52659
+11740,20756
+11741,60592
+11742,79076
+11743,19713
+11744,55952
+11745,60592
+11746,6952
+11747,14829
+11748,9344
+11749,9453
+11750,40303
+11751,52887
+11752,41879
+11753,80477
+11754,41879
+11755,61902
+11756,76664
+11757,52887
+11758,24325
+11759,60450,76135
+11760,35474
+11761,8397
+11762,66703
+11763,20973
+11764,52887
+11765,21720
+11766,1324
+11767,79608
+11768,1319
+11769,55022
+11770,11769
+11771,8205
+11772,35096
+11773,35097
+11774,21963
+11775,35097
+11776,39679
+11777,21720
+11778,21719
+11779,5350
+11780,56430
+11781,21719
+11782,14504
+11783,8740,74414,58389
+11784,68591
+11785,6952
+11786,15311
+11787,54979
+11788,35097
+11789,28801,60611
+11790,14493
+11791,65960
+11792,16703
+11793,61622
+11794,14493
+11795,21444
+11796,52887
+11797,63677
+11798,32370
+11799,24325
+11800,40986
+11801,29313
+11802,76135,45839
+11803,59564
+11804,5765
+11805,5777
+11806,48957
+11807,26155
+11808,20756
+11809,41879
+11810,52887
+11811,66703
+11812,702
+11813,603
+11814,68520
+11815,58374
+11816,48957
+11817,30461
+11818,48957
+11819,77192
+11820,2947
+11821,48957
+11822,82020
+11823,46149
+11824,37119
+11825,74500
+11826,43104
+11827,21959
+11828,29580
+11829,603
+11830,2080
+11831,43104
+11832,48957
+11833,3969
+11834,702
+11835,603
+11836,29509
+11837,48957
+11838,3969
+11839,702
+11840,603
+11841,77192
+11842,79820
+11843,603
+11844,702
+11845,30460
+11846,29509,62095
+11847,75958
+11848,66703
+11849,73084
+11850,48957
+11851,1533
+11852,81170
+11853,21770
+11854,40012
+11855,23631
+11856,11865
+11857,11870
+11858,78432
+11859,40068
+11860,49156
+11861,80522
+11862,55057
+11863,66862
+11864,71398
+11865,58287
+11866,62055
+11867,40068
+11868,75358
+11869,79942
+11870,80132
+11871,81907
+11872,50878
+11873,33928
+11874,3969
+11875,29509,62095
+11876,702
+11877,23471
+11878,27118
+11879,73341
+11880,39676
+11881,603
+11882,32456
+11883,48957
+11884,71786
+11885,56166
+11886,33741
+11887,36008
+11888,45813
+11889,58287
+11890,48210
+11891,7641
+11892,29509
+11893,67957
+11894,77192
+11895,29509,62089
+11896,20745
+11897,21996
+11898,48957
+11899,35944
+11900,2947
+11901,24302
+11902,62981
+11903,21459,76134
+11904,19231
+11905,29509
+11906,29509,62089
+11907,29509,62089
+11908,53480,60611
+11909,50604
+11910,40986
+11911,65501
+11912,31859
+11913,42436,53277
+11914,15407
+11915,15406
+11916,14638
+11917,14829
+11918,1752
+11919,20121
+11920,20121
+11921,80394
+11922,66703
+11923,29509
+11924,56119
+11925,55951
+11926,43532
+11927,38091
+11928,29509
+11929,37150
+11930,37150
+11931,21963
+11932,3295
+11933,3294
+11934,55022
+11935,29509
+11936,65760
+11937,24379,67582
+11938,33688
+11939,33688
+11940,62015
+11941,56638
+11942,43701
+11943,58004
+11944,35342,81781
+11945,56119
+11946,21963
+11947,41879
+11948,41878
+11949,41882
+11950,46148
+11951,76134
+11952,31041
+11953,47770,51626,22351
+11954,60448
+11955,66703
+11956,283
+11957,11958
+11958,56171
+11959,41446
+11960,283
+11961,277
+11962,55022
+11963,277
+11964,57223
+11965,41879
+11966,61902
+11967,48957
+11968,33797
+11969,29509
+11970,6952
+11971,66703
+11972,46070
+11973,56171
+11974,3455
+11975,71624
+11976,56230
+11977,52887
+11978,46962
+11979,15311
+11980,20339
+11981,29509
+11982,15311
+11983,15311
+11984,15311
+11985,8551
+11986,15311
+11987,15311
+11988,15311
+11989,55951
+11990,66703
+11991,55081
+11992,8652
+11993,603
+11994,46998
+11995,63460
+11996,22643
+11997,22643
+11998,22643
+11999,79224
+12000,14290
+12001,13746
+12002,29509
+12003,12045
+12004,59565
+12005,40685
+12006,29513
+12007,28801,60435
+12008,22420
+12009,50584
+12010,21720
+12011,21719
+12012,53480
+12013,77192,62095
+12014,77192
+12015,22649
+12016,68520
+12017,51397
+12018,77192
+12019,23679
+12020,13815
+12021,19649
+12022,74973
+12023,17915
+12024,17916
+12025,35097
+12026,60822
+12027,6298
+12028,29509,62089
+12029,48957
+12030,49079
+12031,75942
+12032,60822
+12033,60822
+12034,31542
+12035,6305
+12036,43701
+12037,71624
+12038,6264
+12039,31459
+12040,14517
+12041,43104
+12042,12045
+12043,81781
+12044,28801
+12045,34389
+12046,55955
+12047,43104
+12048,72990
+12049,43104
+12050,31656
+12051,30391
+12052,604
+12053,41509
+12054,32456
+12055,59305
+12056,32362
+12057,77637
+12058,81669
+12059,3969
+12060,702
+12061,603
+12062,56127
+12063,73555
+12064,702
+12065,603
+12066,5112
+12067,38201
+12068,48957
+12069,1324
+12070,9143
+12071,55022
+12072,12071
+12073,59305
+12074,55423
+12075,77192
+12076,66703
+12077,61729
+12078,68544
+12079,16638
+12080,1324
+12081,32473
+12082,29509
+12083,32473
+12084,43104
+12085,11018
+12086,20082
+12087,1755
+12088,26411
+12089,5777
+12090,35787
+12091,37043
+12092,35787
+12093,23675
+12094,34959
+12095,48210
+12096,24224
+12097,32473
+12098,43104
+12099,43104
+12100,59542
+12101,35787
+12102,79410
+12103,15040
+12104,51868
+12105,53072
+12106,72559
+12107,15039
+12108,5765
+12109,68544
+12110,46760
+12111,12113
+12112,51867
+12113,55022
+12114,75942
+12115,22642
+12116,21992
+12117,65960
+12118,40303
+12119,44953
+12120,20756
+12121,52887
+12122,21720
+12123,21719
+12124,20426
+12125,52886
+12126,52887
+12127,20756
+12128,40303
+12129,56119
+12130,21754
+12131,21754
+12132,59903
+12133,2947
+12134,52264
+12135,2938
+12136,48957
+12137,6984
+12138,33928
+12139,29509
+12140,21754
+12141,29509
+12142,14504
+12143,61622
+12144,43104
+12145,5345,38439
+12146,34746
+12147,24325
+12148,47925
+12149,29621
+12150,20756
+12151,48028,60435
+12152,61182
+12153,25303
+12154,24325
+12155,24325
+12156,49836
+12157,48210
+12158,24321
+12159,63459
+12160,35787
+12161,16443
+12162,52660
+12163,55423
+12164,29509
+12165,33797
+12166,15311
+12167,5350
+12168,57289
+12169,35243
+12170,29509
+12171,79850
+12172,1752
+12173,27762
+12174,27763
+12175,24325
+12176,52887
+12177,52887
+12178,24325
+12179,52887
+12180,79850
+12181,52660
+12182,52659
+12183,21719
+12184,21720
+12185,24325
+12186,12107
+12187,67751
+12188,67752
+12189,35097
+12190,35096
+12191,6952
+12192,51068
+12193,24828
+12194,81781
+12195,36381
+12196,81781
+12197,81781
+12198,81781
+12199,58798
+12200,36381
+12201,19231
+12202,67762
+12203,42338
+12204,42290
+12205,48957
+12206,34198
+12207,29509,62089
+12208,53210
+12209,81781
+12210,31533
+12211,29509
+12212,66703
+12213,63327
+12214,25303
+12215,13746
+12216,39183
+12217,65759
+12218,60448
+12219,62938
+12220,48210
+12221,21754
+12222,46901
+12223,19649
+12224,21443
+12225,10295
+12226,68591
+12227,24325
+12228,16912
+12229,35243
+12230,35242
+12231,24224
+12232,52887
+12233,52886
+12234,35243
+12235,63668
+12236,21963
+12237,31542
+12238,6984
+12239,20756
+12240,54979
+12241,40303
+12242,66703
+12243,29509
+12244,29509,62089
+12245,36381
+12246,12045
+12247,67979
+12248,52886
+12249,52887
+12250,52887
+12251,20756
+12252,20756
+12253,24325
+12254,55951
+12255,38091
+12256,21720
+12257,55951
+12258,31014
+12259,63459
+12260,63461
+12261,63460
+12262,67039
+12263,24325
+12264,35097
+12265,60611
+12266,21719
+12267,21720
+12268,31041
+12269,12217
+12270,47925
+12271,19649
+12272,38676
+12273,19649
+12274,57561
+12275,15623
+12276,15622
+12277,40299
+12278,77192
+12279,63586,69029
+12280,16685
+12281,15622
+12282,702
+12283,66703
+12284,78725
+12285,46610
+12286,43672
+12287,603
+12288,60611
+12289,50604
+12290,59251
+12291,496,13420
+12292,497
+12293,55423
+12294,52887
+12295,50215
+12296,74666
+12297,56189
+12298,48957
+12299,27088
+12300,702
+12301,72966
+12302,603
+12303,39713
+12304,50201
+12305,49817,67582
+12306,32931
+12307,3695
+12308,3228
+12309,15679
+12310,5485
+12311,69688
+12312,43172
+12313,6264
+12314,6337
+12315,6625
+12316,12320
+12317,8310
+12318,8398
+12319,9453
+12320,6637
+12321,1717
+12322,9986
+12323,15812
+12324,81170
+12325,65579
+12326,23631
+12327,25518
+12328,76441
+12329,31902
+12330,32766
+12331,58287
+12332,46521
+12333,49156
+12334,80522
+12335,55057
+12336,58287
+12337,62055
+12338,64132
+12339,68344
+12340,79942
+12341,80132
+12342,82020
+12343,59827
+12344,68520
+12345,64415
+12346,43776
+12347,35097
+12348,35096
+12349,61258
+12350,39679
+12351,39678
+12352,21963
+12353,39679
+12354,38173
+12355,29621
+12356,40303
+12357,41879
+12358,61902
+12359,49162
+12360,19231
+12361,3297
+12362,724
+12363,50346
+12364,61182
+12365,72966
+12366,76664
+12367,22032
+12368,6952
+12369,19713
+12370,73015
+12371,22034
+12372,56127
+12373,55423
+12374,29509
+12375,4862
+12376,76330
+12377,4861
+12378,1324
+12379,1048
+12380,55022
+12381,61622,53480,21996
+12382,29509
+12383,61086
+12384,26411
+12385,29509
+12386,75510
+12387,308
+12388,41879
+12389,29509
+12390,67038
+12391,40303
+12392,81781
+12393,52887
+12394,8331
+12395,8330
+12396,21719
+12397,21720
+12398,55767
+12399,67039
+12400,39679
+12401,8331
+12402,8330
+12403,67039
+12404,21963
+12405,61254
+12406,28801
+12407,2947
+12408,39679
+12409,52887
+12410,52887
+12411,29621
+12412,29621
+12413,21996
+12414,30391
+12415,48028
+12416,78723
+12417,26155
+12418,57932
+12419,65960
+12420,40299
+12421,40303
+12422,40299
+12423,39678
+12424,61258
+12425,39679
+12426,65960
+12427,65960
+12428,31542
+12429,29621
+12430,29621
+12431,55081
+12432,29621
+12433,24321
+12434,24325
+12435,40299
+12436,57140
+12437,59380
+12438,14504
+12439,21754
+12440,27763
+12441,61258
+12442,29509,62089
+12443,66703
+12444,75958
+12445,58168
+12446,13815
+12447,55081
+12448,70426,31041
+12449,21720
+12450,21719
+12451,55080
+12452,61258
+12453,52887
+12454,81781
+12455,49552
+12456,34198
+12457,19382
+12458,60120
+12459,57277
+12460,52887
+12461,40299
+12462,40303
+12463,702
+12464,21814
+12465,28104
+12466,81079
+12467,70033
+12468,70033
+12469,53072
+12470,80927
+12471,603
+12472,39679
+12473,24325
+12474,55951
+12475,55767,37204
+12476,81669
+12477,81669
+12478,81669,57602
+12479,21396
+12480,68122
+12481,68344
+12482,46901
+12483,76134,60448
+12484,66703
+12485,24321
+12486,24325
+12487,55951
+12488,31542,35163
+12489,72961
+12490,35097
+12491,8162
+12492,10220
+12493,29509
+12494,21443
+12495,29509
+12496,43104
+12497,61789
+12498,55012
+12499,29509
+12500,70166
+12501,19164
+12502,74117
+12503,31279
+12504,13088
+12505,67039
+12506,20756
+12507,51397
+12508,20756
+12509,52886
+12510,52887
+12511,35096
+12512,77192
+12513,55081
+12514,55661
+12515,55951
+12516,28889
+12517,46215
+12518,24325
+12519,72990
+12520,60448
+12521,35243
+12522,3228
+12523,8647
+12524,8747
+12525,8748
+12526,40303
+12527,20756
+12528,24325
+12529,81781
+12530,52886
+12531,52887
+12532,52887
+12533,55081
+12534,52887
+12535,55081
+12536,4861
+12537,4862
+12538,66703
+12539,29509,62089
+12540,23471
+12541,29509
+12542,36381
+12543,8397
+12544,12547
+12545,22642
+12546,20756
+12547,8411
+12548,5350
+12549,56119,62089
+12550,37671
+12551,35097
+12552,40299
+12553,40303
+12554,39678
+12555,8291
+12556,71398
+12557,29621
+12558,40299
+12559,20756
+12560,20756
+12561,40299
+12562,29621
+12563,20756
+12564,29509
+12565,54980
+12566,54979
+12567,6850
+12568,44953
+12569,44953
+12570,28801
+12571,14638
+12572,21872
+12573,72913
+12574,52887
+12575,52886
+12576,39803
+12577,20756
+12578,24321
+12579,48768,48028
+12580,24325
+12581,15623
+12582,3652
+12583,496
+12584,56119
+12585,9045,7766
+12586,17258
+12587,36892
+12588,37704
+12589,77192
+12590,24325
+12591,66703
+12592,25018
+12593,29509
+12594,82070
+12595,52887
+12596,6952
+12597,66703
+12598,66703
+12599,21443
+12600,43817
+12601,21720
+12602,66759
+12603,52887
+12604,61622
+12605,29509
+12606,52887
+12607,60822
+12608,60822
+12609,60822
+12610,60822
+12611,48028,65531
+12612,58853,30945
+12613,22032
+12614,77192
+12615,67038
+12616,52660
+12617,78725
+12618,77192
+12619,29509
+12620,5485
+12621,78510
+12622,78725
+12623,65764
+12624,5501
+12625,65960
+12626,35243
+12627,40303
+12628,67039
+12629,24325
+12630,65960
+12631,81683
+12632,28862
+12633,64747
+12634,31279
+12635,41879
+12636,21963
+12637,51068
+12638,81431
+12639,29419
+12640,34989
+12641,24841
+12642,77083
+12643,28322
+12644,24325
+12645,67039
+12646,57472
+12647,68668
+12648,43104
+12649,29553
+12650,25451
+12651,30183
+12652,67608
+12653,66592
+12654,45886
+12655,56618
+12656,66523
+12657,60808
+12658,72249
+12659,73923
+12660,77666
+12661,77883
+12662,80083
+12663,82020
+12664,56444
+12665,21963
+12666,24325
+12667,8327
+12668,60639,72990
+12669,29509
+12670,77192
+12671,52660
+12672,52659
+12673,79650
+12674,48028
+12675,81781,35342
+12676,40303
+12677,34990
+12678,58305
+12679,62089
+12680,24325
+12681,52887
+12682,40303
+12683,21719
+12684,21720
+12685,10300
+12686,68474
+12687,15404
+12688,8291
+12689,22850
+12690,617
+12691,617,58915
+12692,34746
+12693,15500
+12694,15499
+12695,6163
+12696,1324
+12697,1319
+12698,55022
+12699,12698
+12700,21720
+12701,21719
+12702,789
+12703,35097
+12704,35787
+12705,46070
+12706,21443
+12707,32456
+12708,21720
+12709,43121
+12710,724
+12711,33327
+12712,38173
+12713,76664
+12714,38228
+12715,29509,62089
+12716,52944
+12717,43104
+12718,75958
+12719,75958
+12720,61788
+12721,61793
+12722,1048
+12723,75958
+12724,31041
+12725,61622
+12726,13731
+12727,21719
+12728,21720
+12729,35097
+12730,73650
+12731,21444
+12732,21968
+12733,77192
+12734,3701
+12735,55080
+12736,61258
+12737,43701
+12738,77192
+12739,64747
+12740,496
+12741,497
+12742,52887
+12743,6952
+12744,33928
+12745,68785
+12746,6952
+12747,3295
+12748,69751
+12749,82151
+12750,77192,62095
+12751,56119
+12752,81482
+12753,64344
+12754,73177
+12755,3294
+12756,55022
+12757,67039
+12758,50227
+12759,55080
+12760,61258
+12761,24325
+12762,24321
+12763,55951
+12764,28849
+12765,31656
+12766,39803
+12767,55081
+12768,43910
+12769,61086
+12770,21681
+12771,21720
+12772,39294
+12773,29962
+12774,39803
+12775,52887
+12776,29621
+12777,34989
+12778,35787
+12779,35243
+12780,35242
+12781,29509
+12782,55081
+12783,67038
+12784,67038
+12785,52887
+12786,40303
+12787,65581
+12788,32456
+12789,8213
+12790,56171
+12791,55022
+12792,38404
+12793,67201
+12794,20690
+12795,35917
+12796,40303
+12797,24321
+12798,7420
+12799,52887
+12800,15822
+12801,15820
+12802,55022
+12803,40303
+12804,67462
+12805,21720
+12806,24237
+12807,56119,62089
+12808,66703
+12809,40303
+12810,22257
+12811,52887
+12812,14127
+12813,44703
+12814,39679
+12815,74000
+12816,14504
+12817,58685
+12818,71347,37127
+12819,24321
+12820,61258
+12821,35097
+12822,55951
+12823,77192
+12824,56119
+12825,61254
+12826,78725
+12827,36216,60786,48319
+12828,6305
+12829,12828
+12830,7658
+12831,3297
+12832,38828
+12833,73650
+12834,68027
+12835,81781
+12836,26409
+12837,39678
+12838,29509
+12839,67039
+12840,56785
+12841,46148
+12842,74560
+12843,57391
+12844,57391
+12845,67039
+12846,29549
+12847,50910
+12848,41879
+12849,41878
+12850,60448
+12851,28747
+12852,66703
+12853,55423
+12854,56133
+12855,67039
+12856,27763
+12857,40303
+12858,64250
+12859,58798
+12860,61254
+12861,61254
+12862,81161
+12863,60960
+12864,53066
+12865,65767
+12866,18614
+12867,71347
+12868,75057
+12869,21963
+12870,35097
+12871,75751
+12872,43104
+12873,1319
+12874,12688
+12875,24325
+12876,24321
+12877,24325
+12878,7658
+12879,29509
+12880,63193
+12881,53480,60448
+12882,50604
+12883,30986
+12884,12900
+12885,5251
+12886,8291
+12887,21754
+12888,6952
+12889,496
+12890,24325
+12891,24321
+12892,20756
+12893,24325
+12894,56219
+12895,35243
+12896,35242
+12897,19718
+12898,3701
+12899,61381
+12900,55487
+12901,81781
+12902,28801,24249
+12903,67039,17393
+12904,24325
+12905,43104
+12906,34746
+12907,54980
+12908,54979
+12909,19649
+12910,9931
+12911,29509
+12912,617
+12913,38441
+12914,271
+12915,81781
+12916,29509,62089
+12917,1017,59588
+12918,33928
+12919,55951
+12920,13019
+12921,4146
+12922,39623
+12923,1017,54768,67582
+12924,62015
+12925,62015
+12926,57140
+12927,50604
+12928,28801
+12929,80394
+12930,29621
+12931,75828
+12932,60620
+12933,33797
+12934,31542
+12935,24325
+12936,2751
+12937,2752
+12938,59668
+12939,21444
+12940,35097
+12941,60786
+12942,6298
+12943,37204
+12944,58168
+12945,59670
+12946,68647
+12947,66703
+12948,37043
+12949,38828
+12950,65064
+12951,66703
+12952,20756
+12953,54979
+12954,61252
+12955,20756
+12956,21719
+12957,21720
+12958,67039
+12959,27763
+12960,24325
+12961,24325
+12962,20756
+12963,66703
+12964,61796
+12965,55951
+12966,31542
+12967,21444
+12968,53480,21996
+12969,60448,51991
+12970,77223
+12971,7783
+12972,76135,45839
+12973,55055
+12974,67039
+12975,24321
+12976,20756
+12977,24321
+12978,24325
+12979,55951
+12980,24391
+12981,39679
+12982,41879
+12983,20425
+12984,59903
+12985,80106
+12986,55081
+12987,20756
+12988,32028
+12989,40299
+12990,10300
+12991,21719
+12992,55951
+12993,24325
+12994,21720
+12995,15814
+12996,41879
+12997,6322
+12998,30218
+12999,30217
+13000,46070
+13001,55081
+13002,3969
+13003,702
+13004,6625
+13005,603
+13006,60120
+13007,496
+13008,66703
+13009,23471
+13010,77192
+13011,21963
+13012,26469
+13013,43814
+13014,75958
+13015,60592
+13016,64202
+13017,13815
+13018,13816
+13019,724
+13020,723
+13021,59380
+13022,75958
+13023,29509
+13024,49817,3119
+13025,30317
+13026,20889
+13027,35050
+13028,10300
+13029,52886
+13030,40303
+13031,36329
+13032,40299
+13033,20756
+13034,40303
+13035,20756
+13036,40299
+13037,71493
+13038,81781
+13039,24321
+13040,24325
+13041,48961
+13042,27763
+13043,29509
+13044,21963
+13045,72990
+13046,63459
+13047,63460
+13048,21963
+13049,40303
+13050,21719
+13051,21719
+13052,21720
+13053,21720
+13054,35097
+13055,24325
+13056,20756
+13057,40299
+13058,40303
+13059,10300
+13060,29509
+13061,56638
+13062,60120
+13063,6001
+13064,24325
+13065,51640
+13066,52887
+13067,52887
+13068,52887
+13069,71493
+13070,41879
+13071,41878
+13072,41882
+13073,56230
+13074,30700
+13075,60448
+13076,39803
+13077,52660
+13078,6952
+13079,29509
+13080,55951
+13081,31542
+13082,42436
+13083,37704
+13084,8291
+13085,44599
+13086,80106
+13087,36047
+13088,34389
+13089,48870
+13090,50248
+13091,50231
+13092,51393
+13093,81329
+13094,46818
+13095,35097
+13096,72966
+13097,41879
+13098,41878
+13099,15822
+13100,24224
+13101,15820
+13102,77641
+13103,32326
+13104,57474
+13105,20217
+13106,55022
+13107,44543
+13108,29509
+13109,21963
+13110,52887
+13111,52886
+13112,52887
+13113,1016,67582
+13114,33688
+13115,52904
+13116,39803
+13117,30374
+13118,77192
+13119,27088,70166
+13120,61622
+13121,71607
+13122,35558
+13123,56127
+13124,27763
+13125,52887
+13126,40303
+13127,20756
+13128,40299
+13129,70707
+13130,81781
+13131,67039
+13132,67039
+13133,52420
+13134,41879
+13135,35492
+13136,41878
+13137,41882
+13138,24325
+13139,5007
+13140,52887
+13141,29621
+13142,35874
+13143,6952
+13144,24325
+13145,24321
+13146,7657
+13147,24321
+13148,24325
+13149,55081
+13150,24325
+13151,52886
+13152,20756
+13153,21719
+13154,21720
+13155,55081
+13156,24321
+13157,24325
+13158,41878
+13159,41879
+13160,41879
+13161,73291
+13162,35875
+13163,38059
+13164,67277
+13165,8647
+13166,24325
+13167,61086
+13168,52887
+13169,52887
+13170,67039
+13171,24321
+13172,24325
+13173,20756
+13174,21719
+13175,29621
+13176,39679
+13177,67039
+13178,68520
+13179,67038
+13180,29509
+13181,40578
+13182,21720
+13183,32467
+13184,3982
+13185,62914
+13186,49817
+13187,49817
+13188,49817
+13189,49817
+13190,49817
+13191,29509
+13192,61086
+13193,10160
+13194,18109
+13195,56219
+13196,52674
+13197,52675
+13198,55022
+13199,13198
+13200,21443
+13201,32456
+13202,43104
+13203,48210
+13204,68448
+13205,68461
+13206,35097
+13207,24325
+13208,24325
+13209,21720
+13210,41607
+13211,39679
+13212,21720
+13213,55081
+13214,56119
+13215,67920
+13216,52887
+13217,52886
+13218,52887
+13219,16914
+13220,43104
+13221,15309
+13222,2923
+13223,24321
+13224,24321
+13225,24325
+13226,24325
+13227,31542
+13228,72966
+13229,54979
+13230,54980
+13231,40299
+13232,55081
+13233,20756
+13234,41879
+13235,19629
+13236,19629
+13237,19629
+13238,19629
+13239,19629
+13240,19629
+13241,19629
+13242,19629
+13243,40303
+13244,21963
+13245,35243
+13246,60592
+13247,67039
+13248,59564
+13249,40303
+13250,36795
+13251,40303
+13252,55081
+13253,55081
+13254,43104
+13255,48210
+13256,16822
+13257,34389
+13258,65960
+13259,21719
+13260,21720
+13261,21720
+13262,75510
+13263,21719
+13264,39679
+13265,21720
+13266,44702
+13267,44703
+13268,35243
+13269,41879
+13270,25175
+13271,65960
+13272,24325
+13273,55081
+13274,52886
+13275,52887
+13276,50737
+13277,21720
+13278,21719
+13279,30218
+13280,21963
+13281,35243
+13282,52887
+13283,52886
+13284,54979
+13285,61254
+13286,27763
+13287,27762
+13288,29621
+13289,41879
+13290,41877
+13291,41877
+13292,70426
+13293,63586
+13294,24325
+13295,6298
+13296,20756
+13297,58798,68520
+13298,44703
+13299,24321
+13300,20756
+13301,62701
+13302,67039
+13303,42436
+13304,19234
+13305,24325
+13306,67039
+13307,21963
+13308,31542
+13309,24325
+13310,24325
+13311,39803
+13312,43104
+13313,8409
+13314,43342
+13315,13746
+13316,21719
+13317,35243
+13318,21720
+13319,72966
+13320,74625
+13321,39803
+13322,65764
+13323,55423
+13324,63097
+13325,35097
+13326,69363
+13327,39048
+13328,43107
+13329,21963
+13330,77192
+13331,50201
+13332,62902
+13333,39679
+13334,13420
+13335,17555
+13336,35097
+13337,35412
+13338,67039
+13339,44702
+13340,79850
+13341,21963
+13342,54980
+13343,60620
+13344,61622
+13345,57531
+13346,77192
+13347,21720
+13348,66703
+13349,61254
+13350,24325
+13351,24325
+13352,20756
+13353,21720
+13354,21719
+13355,29621
+13356,79618
+13357,13356
+13358,80962
+13359,13356
+13360,65374
+13361,29509
+13362,36381
+13363,44703
+13364,20426
+13365,35097
+13366,35096
+13367,61258
+13368,20425
+13369,24325
+13370,24325
+13371,52887
+13372,37043
+13373,24325
+13374,24321
+13375,67039
+13376,35097
+13377,20690
+13378,21963
+13379,36381,57109
+13380,24325
+13381,29509
+13382,31542
+13383,35874
+13384,60216
+13385,70209
+13386,67039
+13387,27763
+13388,55423
+13389,35097
+13390,31041
+13391,67039
+13392,46384
+13393,67039
+13394,52887
+13395,37204
+13396,60611
+13397,53624
+13398,53624
+13399,36381
+13400,72990
+13401,72990
+13402,24321
+13403,29509
+13404,77192
+13405,65960
+13406,52887
+13407,39679
+13408,62015
+13409,62015
+13410,62015
+13411,62015
+13412,62015
+13413,62015
+13414,62015
+13415,62015
+13416,31460
+13417,29621
+13418,54980
+13419,35243
+13420,724
+13421,60611
+13422,39119
+13423,50604
+13424,50604
+13425,35097
+13426,29509
+13427,21720
+13428,49833
+13429,36892,67195
+13430,35096
+13431,61258
+13432,35097
+13433,30461
+13434,63459
+13435,41879
+13436,41878
+13437,61086
+13438,75005
+13439,77192
+13440,61086
+13441,24325
+13442,24321
+13443,67038
+13444,52886
+13445,55081
+13446,67039
+13447,81781,61622
+13448,40303
+13449,60448
+13450,18880
+13451,60450
+13452,19497
+13453,56127
+13454,66703
+13455,81161
+13456,40299
+13457,39679
+13458,20756
+13459,60592
+13460,67039
+13461,67039
+13462,40303
+13463,52886
+13464,35243
+13465,36381
+13466,24325
+13467,20756
+13468,52887
+13469,41879
+13470,20756
+13471,29621
+13472,38088
+13473,55081
+13474,24325
+13475,57277
+13476,26411
+13477,55081
+13478,27763
+13479,38173
+13480,52887
+13481,20756
+13482,20426
+13483,20425
+13484,33239
+13485,33238
+13486,40303
+13487,40299
+13488,39679
+13489,41879
+13490,70166
+13491,61877
+13492,21720
+13493,57838
+13494,79846
+13495,81781
+13496,81781
+13497,38173
+13498,24321
+13499,24325
+13500,60448
+13501,46760
+13502,29509
+13503,35096
+13504,61258
+13505,35097
+13506,24236
+13507,41878
+13508,41879
+13509,19629
+13510,19629
+13511,39803
+13512,21968
+13513,14504
+13514,24325
+13515,24325
+13516,14290
+13517,77192
+13518,30461
+13519,25486
+13520,36049
+13521,66703
+13522,55081
+13523,55423
+13524,13717
+13525,77192
+13526,67039
+13527,24321
+13528,24325
+13529,42304
+13530,24325
+13531,24321
+13532,20756
+13533,24325
+13534,44702
+13535,44703
+13536,52660
+13537,81781,61622
+13538,40299
+13539,21720
+13540,52887
+13541,24325
+13542,60592
+13543,21963
+13544,67039
+13545,35773
+13546,19231
+13547,61086
+13548,6298
+13549,1752
+13550,5777
+13551,35243
+13552,79167,51942
+13553,40004
+13554,27059
+13555,5765
+13556,21962
+13557,61258
+13558,51397
+13559,24325
+13560,15679
+13561,55022
+13562,21720
+13563,59048
+13564,13746
+13565,40303
+13566,40012
+13567,58798
+13568,72892
+13569,77585
+13570,22642
+13571,22643
+13572,24325
+13573,39679
+13574,53295
+13575,29621
+13576,81687
+13577,40303
+13578,21720
+13579,67039
+13580,67038
+13581,35096
+13582,61258
+13583,51397
+13584,21720
+13585,35097
+13586,11472
+13587,20756
+13588,40299
+13589,21443
+13590,1548
+13591,75450
+13592,40303
+13593,40299
+13594,20426
+13595,20425
+13596,29621
+13597,39678
+13598,39679
+13599,41878
+13600,41879
+13601,61902
+13602,61902
+13603,40303
+13604,39679
+13605,40303
+13606,40299
+13607,40303
+13608,35097
+13609,40299
+13610,40303
+13611,72310
+13612,7734
+13613,9189
+13614,40303
+13615,40303
+13616,53118
+13617,29509
+13618,42436,72990
+13619,4861
+13620,4862
+13621,56246
+13622,67039
+13623,67039
+13624,52886
+13625,52887
+13626,30490
+13627,71624
+13628,74625
+13629,55081
+13630,55080
+13631,15438
+13632,43104
+13633,6952
+13634,24325
+13635,21770
+13636,61622
+13637,21720
+13638,77192
+13639,60448
+13640,75958
+13641,75958
+13642,75958
+13643,5297
+13644,44953
+13645,21720
+13646,21719
+13647,60592
+13648,40303
+13649,63460
+13650,24325
+13651,24325
+13652,56119
+13653,61086
+13654,39925
+13655,38067
+13656,33640
+13657,56119,62089
+13658,56119
+13659,28106
+13660,29509,62089
+13661,56119
+13662,56119
+13663,32526
+13664,31041
+13665,81781
+13666,81781
+13667,29509,62095
+13668,29509
+13669,29509,62089
+13670,56119
+13671,29509,62089
+13672,77192,62089
+13673,62089,29509
+13674,5777
+13675,5765
+13676,14516
+13677,13679
+13678,70482
+13679,55022
+13680,27762
+13681,21719
+13682,21720
+13683,24325
+13684,6952
+13685,41016
+13686,81781
+13687,22402
+13688,57075
+13689,30953
+13690,47925
+13691,58798
+13692,30249
+13693,52886
+13694,55081
+13695,55080
+13696,65960
+13697,496
+13698,497
+13699,61796,54425
+13700,39202
+13701,67039
+13702,67039
+13703,17978
+13704,66703
+13705,52886
+13706,52887
+13707,52887
+13708,29509
+13709,31307
+13710,78106
+13711,31041,60639
+13712,81781,61622
+13713,57671
+13714,35097
+13715,60611
+13716,42436,72990
+13717,496
+13718,497
+13719,8170,496
+13720,81781
+13721,81781
+13722,81781
+13723,50215
+13724,25126
+13725,25127
+13726,56119
+13727,56119
+13728,14290
+13729,7658
+13730,8205
+13731,8205
+13732,21720
+13733,68520
+13734,25303
+13735,21765
+13736,76332
+13737,38059
+13738,25234
+13739,21963
+13740,13815
+13741,13817
+13742,13818
+13743,52887
+13744,77192
+13745,62731
+13746,45383
+13747,35394
+13748,50878
+13749,66824
+13750,29574
+13751,56119
+13752,40299
+13753,40303
+13754,55951
+13755,6941
+13756,71624
+13757,28801
+13758,37043
+13759,20756
+13760,20977
+13761,45383
+13762,35096
+13763,61258
+13764,73507
+13765,38256
+13766,41654
+13767,31417
+13768,2947
+13769,62914
+13770,77192
+13771,78725
+13772,48957
+13773,24325
+13774,52887
+13775,40303
+13776,40303
+13777,40299
+13778,40303
+13779,35243
+13780,22420
+13781,22420
+13782,61254
+13783,20756
+13784,52887
+13785,52886
+13786,24325
+13787,24321
+13788,20756
+13789,21720
+13790,24325
+13791,55951
+13792,24199
+13793,52887
+13794,52886
+13795,24325
+13796,59380
+13797,59380
+13798,60611
+13799,31041
+13800,63193
+13801,16912
+13802,7420
+13803,67462
+13804,20756
+13805,14504
+13806,20756
+13807,67039
+13808,40303
+13809,35096
+13810,61258
+13811,20426
+13812,52887
+13813,65960
+13814,38059
+13815,3695
+13816,29313
+13817,34546
+13818,3705
+13819,6952
+13820,20426
+13821,35875
+13822,67039
+13823,47786
+13824,47786
+13825,8209
+13826,6637
+13827,49833
+13828,29621
+13829,60592
+13830,71576
+13831,20756
+13832,71334
+13833,57109
+13834,9384
+13835,6298
+13836,25303
+13837,72966
+13838,29509
+13839,40488
+13840,23471
+13841,44703
+13842,21963
+13843,24325
+13844,24321
+13845,67039
+13846,43104
+13847,6624
+13848,24897
+13849,81103
+13850,67462
+13851,25303
+13852,62516
+13853,24325
+13854,40303
+13855,40303
+13856,40303
+13857,40303
+13858,20426
+13859,21720
+13860,65960
+13861,65960
+13862,67462
+13863,35243
+13864,21719
+13865,21720
+13866,41879
+13867,44703
+13868,20756
+13869,22643
+13870,22645
+13871,22642
+13872,40303
+13873,52887
+13874,44703
+13875,44703
+13876,52660
+13877,35097
+13878,39678
+13879,61258
+13880,29621
+13881,39678
+13882,61258
+13883,39679
+13884,21720
+13885,24321
+13886,20756
+13887,24325
+13888,24325
+13889,21719
+13890,20756
+13891,24325
+13892,24321
+13893,67039
+13894,67039
+13895,55951
+13896,21719
+13897,55081
+13898,26676
+13899,26676
+13900,21963
+13901,21719
+13902,5350
+13903,39678
+13904,39679
+13905,35875
+13906,75510
+13907,29621
+13908,54979
+13909,39679
+13910,39676
+13911,20426
+13912,67039
+13913,35097
+13914,24325
+13915,24321
+13916,24325
+13917,65959
+13918,65960
+13919,40303
+13920,35875
+13921,52887
+13922,41732
+13923,41732
+13924,20756
+13925,35243
+13926,55081
+13927,52887
+13928,37081
+13929,24321
+13930,24325
+13931,24325
+13932,54872
+13933,21996
+13934,36892
+13935,49817
+13936,49817
+13937,65960
+13938,65960
+13939,31041
+13940,41879
+13941,41878
+13942,39183
+13943,29509
+13944,724
+13945,29509
+13946,67039
+13947,603
+13948,48957
+13949,30870
+13950,24325
+13951,71685
+13952,21444
+13953,8409
+13954,13020
+13955,75958
+13956,21720
+13957,40572
+13958,21963
+13959,21719
+13960,63669
+13961,59432
+13962,20756
+13963,52660
+13964,13222
+13965,80106
+13966,35097
+13967,35096
+13968,43104
+13969,8162
+13970,14870
+13971,29509
+13972,31542
+13973,79850
+13974,14871
+13975,58167,31041
+13976,8653
+13977,13815
+13978,13818
+13979,73193
+13980,60620
+13981,25669
+13982,27524
+13983,27524
+13984,66703
+13985,7657
+13986,29509,62089
+13987,76134
+13988,7658
+13989,61622
+13990,72990
+13991,56119
+13992,21963
+13993,20756
+13994,61086
+13995,55951
+13996,70990
+13997,65959
+13998,65960
+13999,24325
+14000,47497,81781
+14001,40303
+14002,81781
+14003,56119
+14004,70033
+14005,21719
+14006,21720
+14007,53861
+14008,21720
+14009,64747
+14010,31043
+14011,29621
+14012,21963
+14013,43362
+14014,24325
+14015,35242
+14016,21720
+14017,79552
+14018,21719
+14019,24325
+14020,49817
+14021,60592
+14022,39679
+14023,35243
+14024,67039
+14025,53480,60448
+14026,6952
+14027,41878
+14028,19713
+14029,1012
+14030,55952
+14031,65959
+14032,65959
+14033,35243
+14034,31542
+14035,51068
+14036,78413
+14037,66491
+14038,50701
+14039,75958
+14040,59903
+14041,1324
+14042,1048
+14043,14044
+14044,55022
+14045,14044
+14046,16858
+14047,75958
+14048,36892
+14049,37693
+14050,36892
+14051,3701
+14052,73650
+14053,44628
+14054,76135
+14055,54636
+14056,4861
+14057,4862
+14058,60120
+14059,2947
+14060,63488
+14061,27255
+14062,2938
+14063,15820
+14064,30900
+14065,723
+14066,34989
+14067,4281
+14068,20690
+14069,71685
+14070,43104
+14071,64255
+14072,25406
+14073,27255
+14074,1533
+14075,25438
+14076,81549
+14077,52857
+14078,52478
+14079,44953
+14080,34389
+14081,29509
+14082,10680
+14083,10676
+14084,617
+14085,60448,51991
+14086,3701
+14087,72961
+14088,24325
+14089,56119
+14090,29509
+14091,7735
+14092,51068
+14093,40810
+14094,36525
+14095,5350
+14096,56119
+14097,76782
+14098,67936
+14099,8360
+14100,8360
+14101,81065
+14102,31041,60639
+14103,40299
+14104,40303
+14105,29509
+14106,36381,61622
+14107,60448,72990
+14108,41879
+14109,41877
+14110,20756
+14111,35243
+14112,55081
+14113,19385
+14114,35096
+14115,7658
+14116,8170,15623
+14117,55423
+14118,40303
+14119,8360
+14120,40299
+14121,20756
+14122,7654
+14123,55423
+14124,32538,30453
+14125,72966
+14126,24321
+14127,22382
+14128,14127
+14129,8360
+14130,39411
+14131,41879
+14132,46274
+14133,14871
+14134,36055
+14135,31041
+14136,49817
+14137,14136
+14138,15311
+14139,46145
+14140,24321
+14141,24325
+14142,74973
+14143,20426
+14144,61258
+14145,21720
+14146,81781
+14147,52887
+14148,20425
+14149,74191,61796
+14150,75745
+14151,75744
+14152,52659
+14153,52660
+14154,57901
+14155,21963
+14156,55080
+14157,21420
+14158,57671
+14159,35243
+14160,52887
+14161,24321
+14162,21719
+14163,24325
+14164,77192
+14165,66703
+14166,20756
+14167,29509
+14168,68783
+14169,60445
+14170,39803
+14171,38828,38447
+14172,72919
+14173,82066,33302
+14174,33302
+14175,35474
+14176,33305
+14177,21963
+14178,20756
+14179,36381
+14180,52887
+14181,31041
+14182,61086
+14183,61531
+14184,29509
+14185,60611
+14186,64553
+14187,56162
+14188,29509
+14189,13746
+14190,38674
+14191,48801
+14192,75958
+14193,65000
+14194,60611
+14195,75744
+14196,76196
+14197,81065
+14198,4057
+14199,63282,5485
+14200,29509,62089
+14201,46149
+14202,24325
+14203,24321
+14204,66703
+14205,75958
+14206,75958
+14207,8170,12280
+14208,56917
+14209,4751
+14210,61788
+14211,75958,75954
+14212,68544
+14213,16443
+14214,77192
+14215,19231,40012
+14216,26016
+14217,48957
+14218,724
+14219,21719
+14220,56127
+14221,49341,30896
+14222,74560
+14223,8647
+14224,8748
+14225,8747
+14226,65764
+14227,40299
+14228,67267
+14229,77192
+14230,63488
+14231,63157
+14232,40303
+14233,72892
+14234,24325
+14235,28938
+14236,72960
+14237,31041
+14238,20535
+14239,28801
+14240,60448
+14241,46149
+14242,22649
+14243,74973
+14244,52887
+14245,68796
+14246,57671
+14247,46274
+14248,40303
+14249,55951
+14250,46149
+14251,68230
+14252,68230
+14253,29509
+14254,57671
+14255,21397
+14256,20756
+14257,29621
+14258,61796
+14259,66703
+14260,54440
+14261,59380
+14262,10583
+14263,10585
+14264,35242
+14265,32160
+14266,31041
+14267,46149
+14268,44440
+14269,54683
+14270,67039
+14271,21720
+14272,75924
+14273,75924
+14274,31542
+14275,44703
+14276,59565
+14277,67822
+14278,25303
+14279,70360,617
+14280,76782
+14281,2080
+14282,2080
+14283,75958
+14284,75958
+14285,75958
+14286,75958
+14287,75958
+14288,75958
+14289,71465
+14290,26948
+14291,25673,74973
+14292,56119,62089
+14293,41388
+14294,58798
+14295,24828
+14296,24828
+14297,20978
+14298,47835
+14299,21397
+14300,6952
+14301,14516
+14302,21720
+14303,35096
+14304,61258
+14305,35097
+14306,55081
+14307,16914
+14308,79475
+14309,24321
+14310,20756
+14311,29509
+14312,35097
+14313,67039
+14314,40303
+14315,40299
+14316,59160
+14317,66703
+14318,80962
+14319,43104
+14320,40299
+14321,52886
+14322,52886
+14323,52887
+14324,40303
+14325,21719
+14326,27763
+14327,22642
+14328,22643
+14329,35097
+14330,35096
+14331,29621
+14332,41879
+14333,39271
+14334,41878
+14335,3969
+14336,702
+14337,28889
+14338,603
+14339,40065,30453
+14340,235
+14341,40098
+14342,68229
+14343,46387
+14344,46966
+14345,64747
+14346,29621
+14347,35874
+14348,35097
+14349,63460
+14350,63459
+14351,61258
+14352,66703
+14353,6298
+14354,81251
+14355,35097
+14356,31609
+14357,20426
+14358,20756
+14359,65960
+14360,55081
+14361,39679
+14362,39678
+14363,61254
+14364,7658
+14365,37127
+14366,36381
+14367,52461
+14368,9043
+14369,9043
+14370,9043
+14371,59376
+14372,51702,69029
+14373,21444
+14374,19231
+14375,32713
+14376,35243
+14377,21459,72990
+14378,81781
+14379,72966
+14380,24325
+14381,68059
+14382,67039
+14383,30554
+14384,22642
+14385,20756
+14386,56230
+14387,53480
+14388,79618
+14389,14318
+14390,71347
+14391,1990
+14392,45758
+14393,14820
+14394,56119,62089
+14395,24199
+14396,79541
+14397,2225
+14398,61622
+14399,61622
+14400,61622
+14401,31041
+14402,49010
+14403,69998
+14404,66703
+14405,29509
+14406,38404
+14407,65374
+14408,50602
+14409,77318
+14410,70796
+14411,39803
+14412,24325
+14413,43341
+14414,24325
+14415,21996
+14416,46747
+14417,46755
+14418,55661
+14419,29509
+14420,43104
+14421,27763
+14422,56119
+14423,21754
+14424,29509
+14425,52983
+14426,29197
+14427,59252
+14428,58108
+14429,33928
+14430,61033
+14431,81781
+14432,38517
+14433,28801
+14434,44513
+14435,70426,29549
+14436,66344
+14437,39803
+14438,67039
+14439,19231
+14440,61622
+14441,22850
+14442,46148
+14443,36381
+14444,63017
+14445,28801
+14446,39803
+14447,38779
+14448,41878
+14449,40303
+14450,42436
+14451,36216
+14452,29509
+14453,77192
+14454,58004
+14455,44708
+14456,36049
+14457,62367
+14458,77192
+14459,77192
+14460,48028,60435
+14461,29509
+14462,64747
+14463,72990
+14464,47497
+14465,56127
+14466,72166
+14467,35971
+14468,2930
+14469,72468
+14470,80977
+14471,57248
+14472,61086
+14473,20756
+14474,31041
+14475,68520
+14476,21720
+14477,37908
+14478,60611
+14479,3701
+14480,63586
+14481,33797,19234
+14482,46935
+14483,35917
+14484,20889
+14485,47738
+14486,45412
+14487,27507
+14488,11148
+14489,5765
+14490,8397
+14491,3227
+14492,3228
+14493,37693
+14494,37704
+14495,8241
+14496,46696
+14497,65961
+14498,20196,24036
+14499,67120
+14500,29639
+14501,26298,21057
+14502,52342
+14503,40231
+14504,34389
+14505,47001
+14506,50874
+14507,29644
+14508,56480
+14509,57035
+14510,57206
+14511,51523
+14512,76683
+14513,81694
+14514,4239
+14515,21754
+14516,9453
+14517,21448
+14518,5777
+14519,5765
+14520,14516
+14521,55022
+14522,3230
+14523,37693
+14524,67195,36892
+14525,14301
+14526,46901,21771
+14527,14870
+14528,31041
+14529,50704
+14530,56119
+14531,31859
+14532,52211
+14533,39859
+14534,35243
+14535,55951
+14536,18084
+14537,35342,81781
+14538,13746
+14539,13746
+14540,24722
+14541,35096
+14542,35243
+14543,63222
+14544,67039
+14545,67038
+14546,61258
+14547,29509
+14548,56119
+14549,41879
+14550,73121
+14551,7620,39509
+14552,8653
+14553,53842
+14554,53842
+14555,76135
+14556,29621
+14557,21963
+14558,36459
+14559,38828
+14560,38828
+14561,61796
+14562,35917
+14563,68544
+14564,61086
+14565,13735
+14566,31041
+14567,36381,61622
+14568,29509
+14569,29509,62089
+14570,77192
+14571,32527
+14572,53842
+14573,69295
+14574,81781
+14575,58798
+14576,22979
+14577,60592
+14578,29509
+14579,69688
+14580,28079
+14581,75057
+14582,74500
+14583,34990
+14584,58798
+14585,81781,60448
+14586,18882
+14587,19796
+14588,61748,48599
+14589,37303
+14590,18882
+14591,55081
+14592,34746
+14593,57671
+14594,21963
+14595,21962
+14596,61258
+14597,25495
+14598,51477
+14599,34989
+14600,31041,60639
+14601,60639
+14602,67039
+14603,21963
+14604,7658
+14605,14950
+14606,66703
+14607,43104
+14608,35097
+14609,20756
+14610,39679
+14611,39803
+14612,39859
+14613,81781
+14614,62914
+14615,52887
+14616,24325
+14617,67039
+14618,47505
+14619,39803
+14620,32456
+14621,51396
+14622,51397
+14623,35917,617
+14624,81781
+14625,55423
+14626,21674
+14627,51991,60448
+14628,28226
+14629,65763
+14630,81781
+14631,21996
+14632,40012
+14633,70426
+14634,47825
+14635,37704
+14636,32456
+14637,50784
+14638,56142
+14639,15679
+14640,12522
+14641,66341
+14642,32481
+14643,66703
+14644,19382
+14645,20152
+14646,71536
+14647,33803
+14648,36452
+14649,55022
+14650,57685
+14651,73913
+14652,70033
+14653,80106
+14654,41879
+14655,41878
+14656,78899
+14657,67039
+14658,67038
+14659,81065
+14660,22850
+14661,25303
+14662,28801
+14663,60611
+14664,22069
+14665,40303
+14666,77192
+14667,28938
+14668,283
+14669,41446
+14670,277
+14671,81161
+14672,24321
+14673,24325
+14674,40303
+14675,21443
+14676,8536
+14677,8535
+14678,51068
+14679,33455
+14680,54443
+14681,77637
+14682,77637
+14683,35766
+14684,72850,72842
+14685,61759
+14686,57868
+14687,66703
+14688,43341
+14689,21444
+14690,21444
+14691,48957
+14692,10300
+14693,10297
+14694,55081
+14695,46696
+14696,65767
+14697,66127
+14698,12547
+14699,54223
+14700,61774
+14701,8397
+14702,66703
+14703,67039
+14704,15499,68383
+14705,41879
+14706,41878
+14707,55081
+14708,20559
+14709,72966
+14710,64747
+14711,66703
+14712,25094
+14713,72990
+14714,8647
+14715,81781
+14716,39679
+14717,16443
+14718,8360
+14719,27763
+14720,77192,62095
+14721,31542
+14722,55081
+14723,24321
+14724,31542
+14725,60216
+14726,70209
+14727,24325
+14728,34746
+14729,11973
+14730,50585
+14731,52887
+14732,51395
+14733,61086
+14734,60639,31041
+14735,3701
+14736,70651
+14737,81635
+14738,48957
+14739,77192
+14740,29603
+14741,48957
+14742,66703
+14743,66703
+14744,29509,62089
+14745,63488,62089
+14746,66703
+14747,77192
+14748,3701
+14749,32456
+14750,66703
+14751,68701
+14752,29509,62089
+14753,32456
+14754,48957
+14755,48957
+14756,72966
+14757,48957
+14758,32456
+14759,21963
+14760,3701
+14761,48957
+14762,20427
+14763,55423
+14764,57140
+14765,74269
+14766,8353
+14767,75958
+14768,20426
+14769,20425
+14770,29509
+14771,29509
+14772,72966
+14773,20427
+14774,6224
+14775,50874
+14776,44952
+14777,61258
+14778,27763
+14779,20756
+14780,77192
+14781,81781
+14782,35557
+14783,724
+14784,11363
+14785,44953
+14786,79675
+14787,61774
+14788,75544
+14789,57277
+14790,40303
+14791,66703
+14792,67656
+14793,67656
+14794,40299
+14795,33797
+14796,617,40065
+14797,21963
+14798,29190
+14799,24325
+14800,27763
+14801,72966
+14802,50215
+14803,46760
+14804,35097
+14805,35096
+14806,15820
+14807,56917
+14808,40303
+14809,39679
+14810,39678
+14811,71856
+14812,29509
+14813,23855
+14814,14820
+14815,29509
+14816,8383
+14817,29509
+14818,66703
+14819,21963
+14820,17655
+14821,21720
+14822,8397
+14823,32456
+14824,48957
+14825,13590
+14826,35097
+14827,14638
+14828,72310
+14829,17497
+14830,49353
+14831,63327
+14832,39480
+14833,77192
+14834,29509
+14835,29509
+14836,975
+14837,29509,62095
+14838,23471
+14839,79076
+14840,29509,62095
+14841,23471
+14842,66703
+14843,79076
+14844,29509
+14845,56119
+14846,21574
+14847,29509
+14848,46070
+14849,64747
+14850,29509
+14851,5765
+14852,5777
+14853,56119
+14854,77192
+14855,77192
+14856,29509
+14857,56119
+14858,29509
+14859,56119
+14860,75955
+14861,81781
+14862,81781
+14863,79850
+14864,24224
+14865,57223
+14866,11957
+14867,35243
+14868,32362
+14869,67039
+14870,8205
+14871,51709
+14872,81193
+14873,29509
+14874,29509
+14875,42436
+14876,77192
+14877,48957
+14878,29509
+14879,59588,47503
+14880,77192
+14881,29509
+14882,33639
+14883,72966
+14884,77341
+14885,23693
+14886,40141
+14887,77192
+14888,35242
+14889,61258
+14890,35243
+14891,15622
+14892,15623
+14893,56219
+14894,29509,62089
+14895,29509
+14896,56119
+14897,21963
+14898,29509,62089
+14899,21963
+14900,29509
+14901,66703
+14902,29509
+14903,29509
+14904,29509
+14905,29509
+14906,29509
+14907,55022
+14908,48957
+14909,56119
+14910,32456
+14911,66703
+14912,35096
+14913,61258
+14914,35097
+14915,20946,51558
+14916,27763
+14917,35096
+14918,61625,9640
+14919,29509
+14920,41879
+14921,41882
+14922,77192
+14923,1048
+14924,56847
+14925,11480
+14926,81065
+14927,29509
+14928,77192
+14929,7658
+14930,61086
+14931,77192
+14932,72308
+14933,29509
+14934,10300
+14935,10297
+14936,43701
+14937,27763
+14938,21963
+14939,55081
+14940,63460
+14941,35243
+14942,29621
+14943,21720
+14944,52887
+14945,21720
+14946,21719
+14947,24325
+14948,35492
+14949,41878
+14950,21805
+14951,20756
+14952,35097
+14953,40303
+14954,40303
+14955,8409
+14956,48957
+14957,8397
+14958,8398
+14959,40303
+14960,29509
+14961,68544
+14962,58798
+14963,26602
+14964,48270
+14965,81781
+14966,15311
+14967,55951
+14968,35097
+14969,35096
+14970,61258
+14971,36381,38735
+14972,2947
+14973,29509
+14974,5501
+14975,72281
+14976,34935,35474
+14977,31041
+14978,80591
+14979,61054
+14980,21963
+14981,14504
+14982,8740,74414,58389
+14983,39713
+14984,21720
+14985,21719
+14986,59456
+14987,21719
+14988,1048
+14989,1324
+14990,55022
+14991,14990
+14992,496
+14993,49817
+14994,77192
+14995,20756
+14996,20756
+14997,65960
+14998,20756
+14999,20756
+15000,20756
+15001,65960
+15002,35096
+15003,35097
+15004,21963
+15005,80962
+15006,79618
+15007,80962
+15008,79618
+15009,29509,62089
+15010,66703
+15011,5111
+15012,15814
+15013,7658
+15014,5032,65531
+15015,43104
+15016,60076
+15017,6305
+15018,7657
+15019,52773
+15020,42436,53277
+15021,36892,67195
+15022,44703
+15023,24325
+15024,67039
+15025,67038
+15026,46148
+15027,5765
+15028,43104
+15029,64747
+15030,29509
+15031,30636
+15032,81781
+15033,24325
+15034,30153
+15035,20756
+15036,43104
+15037,59903
+15038,5765
+15039,6637
+15040,5777
+15041,52264
+15042,20426
+15043,29621
+15044,55081
+15045,21719
+15046,39803
+15047,40303
+15048,40299
+15049,40303
+15050,21720
+15051,24325
+15052,65960
+15053,34422
+15054,39679
+15055,39676
+15056,28801
+15057,67039
+15058,66703
+15059,29509
+15060,55080
+15061,32547
+15062,21996
+15063,70656
+15064,81781
+15065,35097
+15066,81687
+15067,81683
+15068,55081
+15069,39679
+15070,39678
+15071,29621
+15072,67039
+15073,35874
+15074,20756
+15075,41879
+15076,41878
+15077,60620,46145
+15078,46148
+15079,46148
+15080,21432
+15081,27763
+15082,72990
+15083,65501
+15084,31041,60639
+15085,60448
+15086,60450
+15087,55081
+15088,28801
+15089,31041
+15090,43112,38447,38828
+15091,68230
+15092,60448
+15093,21959
+15094,57140
+15095,35150
+15096,31041
+15097,27738
+15098,60639,31041
+15099,31041
+15100,31713
+15101,37127
+15102,61748
+15103,60620,46145
+15104,71572
+15105,54768,60448,35917,58167
+15106,44702
+15107,44703
+15108,40303
+15109,40299
+15110,40303
+15111,21719
+15112,65753
+15113,21443
+15114,65960
+15115,65959
+15116,65960
+15117,55081
+15118,42436
+15119,55081
+15120,52886
+15121,20756
+15122,52887
+15123,27763
+15124,41879
+15125,36982
+15126,36982
+15127,36982
+15128,41878
+15129,41882
+15130,40303
+15131,20756
+15132,41878
+15133,41879
+15134,24321
+15135,24325
+15136,21963
+15137,21719
+15138,21720
+15139,40303
+15140,40299
+15141,40303
+15142,40303
+15143,15897
+15144,40299
+15145,20756
+15146,68268
+15147,77725
+15148,40303
+15149,21963
+15150,45813
+15151,40303
+15152,40299
+15153,20756
+15154,70209
+15155,60216
+15156,20756
+15157,31542
+15158,40012
+15159,5765
+15160,80821
+15161,46035
+15162,39236
+15163,71719
+15164,35557
+15165,49877
+15166,40778
+15167,60899
+15168,75942
+15169,35557
+15170,5777
+15171,61748
+15172,15159
+15173,70761
+15174,19231
+15175,38828
+15176,81781
+15177,42436
+15178,5485
+15179,6403
+15180,46760
+15181,52811,39612
+15182,81582,25022
+15183,29509
+15184,31041
+15185,36381
+15186,63669
+15187,63669
+15188,21963
+15189,21962
+15190,61258
+15191,31542
+15192,21963
+15193,21720
+15194,21720
+15195,21719
+15196,40299
+15197,55951
+15198,29621
+15199,43104
+15200,56847
+15201,8291
+15202,77646
+15203,2368
+15204,23471
+15205,68544
+15206,68544
+15207,28801
+15208,79591
+15209,18052
+15210,49341
+15211,46779
+15212,70707
+15213,29509,62095
+15214,76330
+15215,67039
+15216,40303
+15217,29509
+15218,55081
+15219,69173
+15220,52999
+15221,4389
+15222,37702
+15223,5576
+15224,5576
+15225,5576
+15226,5576
+15227,5576
+15228,9444
+15229,17645
+15230,41878
+15231,41882
+15232,48597
+15233,76330
+15234,19385
+15235,68786
+15236,68790
+15237,68786
+15238,68790
+15239,68790
+15240,68786
+15241,68790
+15242,68786
+15243,68790
+15244,68786
+15245,68790
+15246,68790
+15247,68786
+15248,68790
+15249,68786
+15250,68790
+15251,68786
+15252,68790
+15253,68786
+15254,68790
+15255,68786
+15256,68790
+15257,68786
+15258,68790
+15259,68790
+15260,68786
+15261,68790
+15262,68790
+15263,68786
+15264,68790
+15265,71493
+15266,35620
+15267,47925
+15268,32362
+15269,48597
+15270,48597
+15271,77192
+15272,74469
+15273,54636
+15274,61622
+15275,40969
+15276,44563
+15277,68520
+15278,44596,31041
+15279,37405
+15280,63863
+15281,66703
+15282,65960
+15283,24325
+15284,5350
+15285,39679
+15286,39678
+15287,61258
+15288,10300
+15289,40303
+15290,47925
+15291,52887
+15292,6952
+15293,40303
+15294,27763
+15295,55081
+15296,75823
+15297,42436,10160
+15298,36892
+15299,67577
+15300,64747
+15301,14638
+15302,14829
+15303,19231
+15304,77192
+15305,40012
+15306,29509,62089
+15307,11476
+15308,11475
+15309,18149
+15310,308
+15311,34389
+15312,61086
+15313,8331
+15314,8330
+15315,72990,36381,60448
+15316,50215
+15317,54468
+15318,21963
+15319,51718
+15320,283
+15321,44611
+15322,277
+15323,41446
+15324,52904
+15325,49817
+15326,81635
+15327,40012
+15328,76782
+15329,76782
+15330,76782
+15331,56119
+15332,8647
+15333,54980
+15334,54979
+15335,6984
+15336,37582
+15337,41878
+15338,41879
+15339,3701
+15340,12324
+15341,56127
+15342,61254
+15343,8170,3531
+15344,43104
+15345,5777
+15346,15678
+15347,15679
+15348,61182
+15349,56127
+15350,55081
+15351,18079
+15352,21963
+15353,24325
+15354,40303
+15355,21963
+15356,40303
+15357,60639
+15358,69248
+15359,31542
+15360,20756
+15361,54768
+15362,40299
+15363,40303
+15364,40303
+15365,22645
+15366,21963
+15367,28164
+15368,30218
+15369,81781
+15370,61254
+15371,67039
+15372,15807
+15373,31041
+15374,5350
+15375,55081
+15376,80394
+15377,52904
+15378,65763
+15379,24325
+15380,29509,62089
+15381,58798
+15382,46070
+15383,53861
+15384,80106
+15385,228
+15386,22386
+15387,4389
+15388,66703
+15389,66703
+15390,29509,62089
+15391,61796
+15392,77399
+15393,59903
+15394,61622
+15395,32456
+15396,48957
+15397,55022
+15398,15397
+15399,56142
+15400,66703
+15401,64250
+15402,29509
+15403,8360
+15404,71817
+15405,37693
+15406,13020
+15407,13019
+15408,58798
+15409,3695
+15410,68796
+15411,36381,61622
+15412,71607
+15413,68230
+15414,7658
+15415,68796
+15416,7660
+15417,7653
+15418,15311
+15419,36892
+15420,29509,62089
+15421,70514
+15422,37908
+15423,21996
+15424,66703
+15425,59850,77306
+15426,7734
+15427,15430
+15428,55423
+15429,80547
+15430,7735
+15431,74500
+15432,8653
+15433,74191,35917
+15434,29609,22922
+15435,81781,36381
+15436,46935
+15437,33797,29197
+15438,496
+15439,497
+15440,49291
+15441,8360
+15442,33797,19234
+15443,8652
+15444,61307
+15445,29509
+15446,81781
+15447,61622
+15448,52904
+15449,62512
+15450,3612
+15451,56127
+15452,66703
+15453,79076
+15454,29509
+15455,21995
+15456,36381
+15457,41917
+15458,36381
+15459,39803
+15460,77192
+15461,55423
+15462,617
+15463,42436
+15464,1319
+15465,60620
+15466,36381
+15467,41181
+15468,21443
+15469,61967
+15470,69688
+15471,81552
+15472,61622
+15473,68796
+15474,77223
+15475,8353
+15476,11480
+15477,48957
+15478,61086
+15479,8653
+15480,48597
+15481,4641
+15482,2608
+15483,75958
+15484,65753
+15485,65754
+15486,35474
+15487,29509
+15488,49341
+15489,57934
+15490,68796
+15491,7660
+15492,7653
+15493,60611
+15494,1751
+15495,1752
+15496,35243
+15497,21959
+15498,15500
+15499,724
+15500,17555
+15501,31041
+15502,29509
+15503,68678
+15504,7654
+15505,68796
+15506,65347
+15507,81781
+15508,39803
+15509,24325
+15510,21719
+15511,21720
+15512,36047
+15513,47400
+15514,31041
+15515,43104
+15516,14638
+15517,32652
+15518,37582
+15519,70777
+15520,50426
+15521,41401
+15522,59666
+15523,72559
+15524,80067
+15525,27267
+15526,8397
+15527,61127
+15528,8409
+15529,48957
+15530,35243
+15531,35243
+15532,19234
+15533,21963
+15534,61622
+15535,68691
+15536,55951
+15537,41279
+15538,37408
+15539,37908
+15540,283
+15541,55022
+15542,277
+15543,64747
+15544,64747
+15545,64747
+15546,64747
+15547,60899
+15548,61510
+15549,12045
+15550,52887
+15551,76782
+15552,76782
+15553,55951
+15554,12045
+15555,16685
+15556,35474
+15557,65754
+15558,72961
+15559,48028
+15560,67952
+15561,43104
+15562,30243
+15563,43104
+15564,77300
+15565,40299
+15566,40303
+15567,71624
+15568,21963
+15569,60120
+15570,40299
+15571,20756
+15572,40303
+15573,77192
+15574,34198
+15575,61622,27738
+15576,24325
+15577,21963
+15578,67039
+15579,67038
+15580,81781
+15581,59565
+15582,37127,63586
+15583,36381
+15584,70426,71603
+15585,1016,67582
+15586,39803
+15587,61775
+15588,35891
+15589,35917
+15590,34746
+15591,21719
+15592,21720
+15593,15311
+15594,55423
+15595,34746
+15596,59903
+15597,46384
+15598,35243
+15599,33002,19231
+15600,39803
+15601,37408,38029
+15602,81781
+15603,65581
+15604,12697
+15605,8205
+15606,1324
+15607,48957
+15608,56119
+15609,36008
+15610,1319
+15611,81781
+15612,48768,53060
+15613,1319
+15614,14870
+15615,15618
+15616,61788
+15617,21963
+15618,56171
+15619,68230
+15620,46901
+15621,24306
+15622,723
+15623,13420
+15624,29509
+15625,29509
+15626,75958
+15627,20756
+15628,20756
+15629,60592
+15630,58798
+15631,52805
+15632,76330
+15633,42436
+15634,68591
+15635,20756
+15636,20425
+15637,24199
+15638,67039
+15639,57218
+15640,28571
+15641,65960
+15642,55951
+15643,21719
+15644,51397
+15645,55951
+15646,77192
+15647,72559
+15648,81176
+15649,21720
+15650,21720
+15651,24325
+15652,21996
+15653,24321
+15654,8170,7926
+15655,61622
+15656,67039
+15657,7658
+15658,8652
+15659,46384
+15660,68994
+15661,4389
+15662,62015
+15663,27297
+15664,73555
+15665,14783
+15666,14784
+15667,77192
+15668,7658
+15669,60445
+15670,19234
+15671,63586
+15672,19231
+15673,40986
+15674,56119
+15675,12042
+15676,75942
+15677,71856
+15678,5765,60216
+15679,1722
+15680,59970
+15681,62922
+15682,35243
+15683,67822
+15684,5765
+15685,15679
+15686,5777
+15687,55022
+15688,5765
+15689,15679
+15690,5777
+15691,5765
+15692,47925
+15693,10223
+15694,28801
+15695,31041
+15696,51396
+15697,51397
+15698,52887
+15699,67416
+15700,67957
+15701,37127
+15702,70426
+15703,68520
+15704,72990
+15705,38828
+15706,9465
+15707,74191
+15708,70426
+15709,29509
+15710,81781
+15711,71493,72990
+15712,67039
+15713,66703
+15714,43701
+15715,57958
+15716,35666
+15717,75976
+15718,71245
+15719,39803
+15720,81781
+15721,29513
+15722,80962
+15723,59380
+15724,5297
+15725,71317
+15726,47925
+15727,57190
+15728,59380
+15729,59380
+15730,21443
+15731,58104
+15732,35474
+15733,76134
+15734,23765
+15735,60448,1417
+15736,48913
+15737,75557
+15738,28801
+15739,29509
+15740,56119
+15741,29513
+15742,61086
+15743,5235
+15744,14504
+15745,21962
+15746,21963
+15747,39679
+15748,21963
+15749,40303
+15750,29509
+15751,40299
+15752,46304
+15753,20756
+15754,54979
+15755,20756
+15756,21720
+15757,21963
+15758,73555
+15759,61086
+15760,21963
+15761,29509
+15762,7787
+15763,49817
+15764,51395
+15765,32456
+15766,21443
+15767,21754
+15768,28801,48028
+15769,48024
+15770,40288
+15771,81781,61786
+15772,7658
+15773,4471
+15774,59903
+15775,283
+15776,277
+15777,55022
+15778,15777
+15779,24325
+15780,48957
+15781,32473
+15782,61086
+15783,61086
+15784,5235
+15785,47265
+15786,21963
+15787,31041
+15788,25303
+15789,11973
+15790,65960
+15791,44614
+15792,20758
+15793,34746
+15794,52455
+15795,80794
+15796,81781
+15797,60448
+15798,36381
+15799,67039
+15800,15678
+15801,15679
+15802,67039
+15803,28801
+15804,52887
+15805,52886
+15806,1751
+15807,1752
+15808,67957
+15809,21444
+15810,22923,31041
+15811,29509,62089
+15812,43104
+15813,44705
+15814,5112
+15815,283
+15816,277
+15817,55022
+15818,31656
+15819,30391
+15820,604
+15821,724
+15822,32456
+15823,41657
+15824,68584
+15825,72754
+15826,59305
+15827,1533
+15828,29509
+15829,3969
+15830,702
+15831,603
+15832,68544
+15833,702
+15834,603
+15835,5112
+15836,38201
+15837,48957
+15838,1324
+15839,9143
+15840,55022
+15841,15840
+15842,59305
+15843,66703
+15844,61729
+15845,68544
+15846,48957
+15847,16638
+15848,1324
+15849,32473
+15850,43104
+15851,43104
+15852,1755
+15853,21938
+15854,31542
+15855,16443
+15856,32652
+15857,34959
+15858,603
+15859,61622
+15860,43104
+15861,11018
+15862,58798
+15863,15864
+15864,72961
+15865,32456
+15866,72958
+15867,29509
+15868,77185
+15869,5777
+15870,52886
+15871,52887
+15872,60620
+15873,27204
+15874,52504
+15875,5765
+15876,14516
+15877,56115
+15878,80106
+15879,603
+15880,21543
+15881,29555
+15882,8241
+15883,82070
+15884,82070
+15885,26091
+15886,26091
+15887,52675
+15888,82070
+15889,82070
+15890,20690
+15891,24765
+15892,44491
+15893,38256
+15894,23586
+15895,41743
+15896,52520
+15897,52521
+15898,52521
+15899,55022
+15900,19811
+15901,26457
+15902,26455
+15903,57289
+15904,57810
+15905,43662
+15906,59071
+15907,35557
+15908,77641
+15909,51397
+15910,55080
+15911,55081
+15912,40299
+15913,81781
+15914,35243
+15915,46176
+15916,29509
+15917,6945
+15918,55081
+15919,67039
+15920,28842
+15921,20756
+15922,62736
+15923,30636
+15924,43815
+15925,35877
+15926,22034
+15927,21444
+15928,38828
+15929,60448,71347
+15930,61622,51702
+15931,60448
+15932,61622
+15933,71607
+15934,72877
+15935,27763
+15936,27763
+15937,35875
+15938,48768,37908
+15939,71103
+15940,35243
+15941,41878
+15942,41882
+15943,41878
+15944,55303
+15945,61258
+15946,55304
+15947,61258
+15948,21719
+15949,21720
+15950,21719
+15951,24325
+15952,24321
+15953,20756
+15954,24325
+15955,65960
+15956,29621
+15957,21719
+15958,55952
+15959,40303
+15960,40299
+15961,24325
+15962,40303
+15963,40299
+15964,72892
+15965,40012
+15966,42481
+15967,81781
+15968,52887
+15969,27763
+15970,60448
+15971,24325
+15972,67039
+15973,55081
+15974,22642
+15975,22643
+15976,22642
+15977,20756
+15978,55081
+15979,54979
+15980,48957
+15981,24325
+15982,29509
+15983,22516
+15984,62053
+15985,62348
+15986,21720
+15987,56811
+15988,56811
+15989,29509
+15990,35097
+15991,33532
+15992,55081
+15993,29621
+15994,79591
+15995,61086
+15996,27763
+15997,29509
+15998,29509
+15999,72966
+16000,21720
+16001,40299
+16002,40303
+16003,20756
+16004,40303
+16005,40299
+16006,21719
+16007,32456
+16008,16010
+16009,1319
+16010,55022
+16011,72167
+16012,4374
+16013,29509
+16014,44013
+16015,33797,29197
+16016,64747
+16017,56119
+16018,56119
+16019,29509
+16020,29509
+16021,16022
+16022,74067
+16023,33928
+16024,16022
+16025,21963
+16026,81781
+16027,48957
+16028,26387
+16029,77192
+16030,30896
+16031,40986
+16032,71321
+16033,50907
+16034,73342
+16035,69363
+16036,26602
+16037,48484
+16038,78725
+16039,19231,35400
+16040,48768
+16041,49341,38828
+16042,27405
+16043,35243
+16044,74191,39623
+16045,72879
+16046,35096
+16047,35097
+16048,21719
+16049,32527
+16050,37623,45930
+16051,66824,36632
+16052,40411
+16053,37379
+16054,43815
+16055,43814
+16056,25406
+16057,59380
+16058,21886
+16059,65925
+16060,34950,69235
+16061,5297
+16062,73015,53861
+16063,29509,62089
+16064,37043
+16065,37043
+16066,24325
+16067,24321
+16068,81781
+16069,57671
+16070,49341
+16071,24325
+16072,20756
+16073,60536
+16074,81781
+16075,81781
+16076,27738
+16077,39623
+16078,60448
+16079,29540
+16080,37408,48768
+16081,60646
+16082,58798
+16083,27762
+16084,56189
+16085,68562
+16086,68584
+16087,20120
+16088,74010
+16089,81781
+16090,23238
+16091,35097
+16092,39679
+16093,21719
+16094,21720
+16095,55081
+16096,40303
+16097,21963
+16098,55951
+16099,35243
+16100,81781
+16101,26602
+16102,24321
+16103,24325
+16104,35242
+16105,20756
+16106,79650
+16107,24325
+16108,81781
+16109,24321
+16110,65960
+16111,57277
+16112,72892
+16113,617
+16114,40012
+16115,63593
+16116,61622
+16117,50604
+16118,35342
+16119,81781
+16120,60448
+16121,19231
+16122,6840
+16123,40299
+16124,39679
+16125,52887
+16126,24325
+16127,60536
+16128,66385
+16129,61004
+16130,24722
+16131,42436
+16132,74539,45524
+16133,21719
+16134,40303
+16135,56119
+16136,81781
+16137,60448
+16138,60450
+16139,81781
+16140,21963
+16141,31279
+16142,20756
+16143,21444
+16144,49485
+16145,28938
+16146,49341
+16147,39623,74191
+16148,40012
+16149,76664
+16150,55154
+16151,24350
+16152,36381
+16153,65960
+16154,81781,18748
+16155,24236
+16156,79645
+16157,79648
+16158,73555
+16159,73555
+16160,73555
+16161,73555
+16162,73555
+16163,73555
+16164,73555
+16165,73650
+16166,40008,19231
+16167,29509
+16168,35340
+16169,77192
+16170,31041
+16171,31041
+16172,31041
+16173,55734
+16174,31041
+16175,19234
+16176,70426,19234
+16177,51397
+16178,55081
+16179,55080
+16180,24325
+16181,20756
+16182,22645
+16183,73680
+16184,73680
+16185,22642
+16186,24325
+16187,78288
+16188,21963
+16189,21444
+16190,24321
+16191,20756
+16192,36381
+16193,24325
+16194,41879
+16195,19231
+16196,40299
+16197,54979
+16198,54980
+16199,67039
+16200,73824
+16201,41879
+16202,19629
+16203,19629
+16204,19629
+16205,41878
+16206,24325
+16207,24321
+16208,20756
+16209,21720
+16210,44832
+16211,67277
+16212,36892,67195
+16213,58798
+16214,46148
+16215,24325
+16216,24321
+16217,24325
+16218,29509
+16219,19385
+16220,35243
+16221,35243
+16222,35243
+16223,35096
+16224,61910,40907
+16225,81781
+16226,66703
+16227,43104
+16228,35243
+16229,65761,8653
+16230,61622,32538
+16231,29509
+16232,283
+16233,43104
+16234,277
+16235,55022
+16236,16235
+16237,29509
+16238,81781
+16239,29509
+16240,69751
+16241,11480
+16242,55946
+16243,72990
+16244,52886
+16245,41879
+16246,25175
+16247,72990
+16248,2126
+16249,24325
+16250,24321
+16251,42436
+16252,37204
+16253,31041
+16254,53384
+16255,63564
+16256,21444
+16257,72990
+16258,58798
+16259,48957
+16260,8213
+16261,43104
+16262,1613
+16263,21433
+16264,71347
+16265,74117
+16266,66703
+16267,77192
+16268,72990
+16269,43104
+16270,21443
+16271,44703
+16272,31417
+16273,8214
+16274,38517
+16275,66127
+16276,40087
+16277,68236
+16278,77192,62089
+16279,36892
+16280,80485
+16281,68796
+16282,11480
+16283,63185
+16284,77192
+16285,30634
+16286,30634
+16287,39542
+16288,46007
+16289,29509,62089
+16290,38675
+16291,53702
+16292,52887
+16293,41743
+16294,76958
+16295,15822
+16296,66703
+16297,55022
+16298,24325
+16299,32473
+16300,7658
+16301,52887
+16302,36009
+16303,25303
+16304,66703
+16305,32473
+16306,71895
+16307,71624
+16308,56119
+16309,21443
+16310,60258
+16311,39803
+16312,38828
+16313,1752
+16314,67039
+16315,56189,54266
+16316,40752
+16317,38555
+16318,29509,62089
+16319,19234
+16320,277
+16321,11918
+16322,283
+16323,55022
+16324,5765
+16325,15040
+16326,76134
+16327,15039
+16328,81811
+16329,16332
+16330,53355
+16331,53640
+16332,55022
+16333,67408
+16334,60487
+16335,35097
+16336,67039
+16337,53636
+16338,67936
+16339,61622
+16340,56115
+16341,27260
+16342,28747
+16343,41446
+16344,60899
+16345,60899
+16346,35557
+16347,5777
+16348,35917
+16349,29195
+16350,72966
+16351,73084
+16352,14504
+16353,62015
+16354,24321
+16355,24321
+16356,52887
+16357,48787
+16358,81781
+16359,61622
+16360,52887
+16361,21963
+16362,29621
+16363,61254
+16364,35096
+16365,55081
+16366,35097
+16367,40303
+16368,40303
+16369,29621
+16370,52887
+16371,41878
+16372,41879
+16373,20756
+16374,52887
+16375,36381,61622
+16376,40299
+16377,40303
+16378,55081
+16379,40299
+16380,67462
+16381,29509
+16382,29509
+16383,70166
+16384,70166
+16385,1324
+16386,1319
+16387,34746
+16388,26122
+16389,55022
+16390,16389
+16391,35097
+16392,24325
+16393,54185
+16394,35097
+16395,72961
+16396,31279
+16397,24224
+16398,57140,54962
+16399,51068
+16400,74544
+16401,23712
+16402,49438
+16403,43812
+16404,29418
+16405,72610,36335
+16406,38837
+16407,31775
+16408,52435
+16409,55734
+16410,21719
+16411,72961
+16412,46726
+16413,67763
+16414,75751
+16415,35097
+16416,29509
+16417,29509
+16418,29509
+16419,51397
+16420,51396
+16421,21719
+16422,52886
+16423,52887
+16424,21720
+16425,46148
+16426,29509
+16427,74625
+16428,64747
+16429,52887
+16430,24325
+16431,29509
+16432,81683
+16433,68520
+16434,13746,28938
+16435,6042
+16436,13194
+16437,21963
+16438,81781,60448
+16439,66703
+16440,48957
+16441,13590
+16442,12225
+16443,8814
+16444,16443
+16445,16443
+16446,16443
+16447,16443
+16448,16443
+16449,29509
+16450,29509
+16451,59903
+16452,56119
+16453,48957
+16454,48957
+16455,36008
+16456,1319
+16457,29509
+16458,53537
+16459,1319
+16460,38439
+16461,8291
+16462,1324
+16463,55022
+16464,80394
+16465,21701
+16466,13019
+16467,13020
+16468,34746
+16469,48768,60536
+16470,65764
+16471,27763
+16472,72966
+16473,66703
+16474,33797
+16475,72990
+16476,56119,62089
+16477,58167,31041
+16478,16479
+16479,67462
+16480,52886
+16481,29509
+16482,35242
+16483,67039
+16484,35243
+16485,67277
+16486,52887
+16487,52887
+16488,5111
+16489,15835
+16490,72961
+16491,57140
+16492,58168
+16493,8652
+16494,29509,62095
+16495,23471
+16496,75260
+16497,29509
+16498,29509,62089
+16499,61254
+16500,21963
+16501,67462
+16502,71493
+16503,19234
+16504,28938
+16505,36892
+16506,29509,62089
+16507,43104
+16508,21444
+16509,29509
+16510,81125
+16511,29509
+16512,58798
+16513,61086
+16514,723
+16515,55951
+16516,65960
+16517,2608
+16518,2607
+16519,35474
+16520,283
+16521,277
+16522,55022
+16523,16522
+16524,62935
+16525,68796
+16526,65753
+16527,60450
+16528,65754
+16529,35474
+16530,3612
+16531,13944
+16532,77192
+16533,52886
+16534,52887
+16535,18748
+16536,27255
+16537,77192
+16538,29509,62089
+16539,10944
+16540,16539
+16541,40012
+16542,56119
+16543,20427
+16544,21963
+16545,81781
+16546,29621
+16547,75958
+16548,20426
+16549,40012
+16550,49817
+16551,35243
+16552,52886
+16553,20756
+16554,52887
+16555,75408
+16556,75408
+16557,43104
+16558,29509
+16559,47231
+16560,52904
+16561,39803
+16562,56119
+16563,15311
+16564,56246
+16565,68544
+16566,70033
+16567,1533
+16568,48957
+16569,33876
+16570,61622
+16571,17555
+16572,14638
+16573,17265
+16574,11217
+16575,32964,61622
+16576,40012
+16577,49162
+16578,24224
+16579,52887
+16580,31542
+16581,60216
+16582,70209
+16583,40303
+16584,40303
+16585,37127
+16586,44702
+16587,61258
+16588,52887
+16589,44702
+16590,44703
+16591,29621
+16592,44703
+16593,16443
+16594,51626,22351,55091
+16595,6163
+16596,52887
+16597,52886
+16598,31041,55740
+16599,19234
+16600,13746
+16601,32926
+16602,56119
+16603,31041
+16604,47128
+16605,71624
+16606,61033
+16607,48025
+16608,68095
+16609,61622
+16610,71624
+16611,8652
+16612,19649
+16613,51396
+16614,39679
+16615,21963
+16616,15438
+16617,77158
+16618,61311
+16619,56119
+16620,56119
+16621,65959
+16622,58853,60448
+16623,29509
+16624,27763
+16625,31041
+16626,29621
+16627,63266
+16628,31542
+16629,21434
+16630,57140
+16631,67039
+16632,14504
+16633,35097
+16634,29621
+16635,5111
+16636,15814
+16637,20756
+16638,29771
+16639,58029
+16640,75751
+16641,74941
+16642,67039
+16643,29509
+16644,21719
+16645,48957
+16646,603
+16647,66703
+16648,702
+16649,67479
+16650,27738
+16651,61622
+16652,21013
+16653,52886
+16654,29621
+16655,21719
+16656,15464,55438
+16657,67039
+16658,29509
+16659,2126
+16660,81687
+16661,81683
+16662,54979
+16663,36381
+16664,10300,74271
+16665,57218,54768
+16666,67582
+16667,21995
+16668,21720
+16669,21719
+16670,11472
+16671,65960
+16672,75945
+16673,19234
+16674,60120
+16675,61086
+16676,76134
+16677,37408,48768
+16678,77453
+16679,20756
+16680,67462
+16681,65959
+16682,65960
+16683,33928
+16684,16914
+16685,15623
+16686,64747
+16687,44703
+16688,27763
+16689,40303
+16690,76033
+16691,21963
+16692,21719
+16693,24325
+16694,40299
+16695,24321
+16696,40303
+16697,35557
+16698,21719
+16699,21963
+16700,61086
+16701,6624
+16702,5765
+16703,34389
+16704,71997
+16705,61086
+16706,603
+16707,77192
+16708,77192
+16709,702
+16710,33928
+16711,50630
+16712,52374
+16713,28394
+16714,20745
+16715,46572
+16716,40864
+16717,58088
+16718,73943
+16719,40752
+16720,73478
+16721,78024
+16722,77101
+16723,81781
+16724,16443
+16725,1319
+16726,55022
+16727,1324
+16728,52887
+16729,40303
+16730,60448,21996
+16731,11472
+16732,6867
+16733,29621
+16734,52660
+16735,35875
+16736,66703
+16737,24325
+16738,65960
+16739,6952
+16740,50878,39509
+16741,34746
+16742,33797,29197
+16743,72992
+16744,61767
+16745,19497
+16746,29509
+16747,56117
+16748,16914
+16749,35242
+16750,5345
+16751,6945
+16752,29509
+16753,29509
+16754,20756
+16755,41878
+16756,39678
+16757,39679
+16758,63222
+16759,16914
+16760,72990
+16761,35243
+16762,56127
+16763,14493
+16764,35096
+16765,60448
+16766,21719
+16767,20756
+16768,2608
+16769,21719
+16770,14290
+16771,21720
+16772,67039
+16773,61086
+16774,20756
+16775,55951
+16776,35243
+16777,61622
+16778,43104
+16779,6945
+16780,6945
+16781,29509,62089
+16782,11784
+16783,35097
+16784,41879
+16785,22642
+16786,74242
+16787,4389
+16788,5576
+16789,9444
+16790,14236
+16791,30391
+16792,80106
+16793,35243
+16794,16443
+16795,61622
+16796,26012
+16797,71334
+16798,1016,67582
+16799,29855
+16800,76135
+16801,52887
+16802,60611
+16803,21432
+16804,79619
+16805,37408
+16806,60611
+16807,60611
+16808,31041
+16809,42381
+16810,12045
+16811,81781
+16812,19234
+16813,63586
+16814,21444
+16815,22032
+16816,29509
+16817,5350
+16818,36452
+16819,43104
+16820,5765
+16821,16822
+16822,8209
+16823,24321
+16824,24325
+16825,24321
+16826,55081
+16827,21719
+16828,24325
+16829,46148
+16830,44703
+16831,44703
+16832,77192
+16833,43104
+16834,21963
+16835,29509,62089
+16836,40303
+16837,46935,27738
+16838,43104
+16839,80591
+16840,52887
+16841,52887
+16842,35096
+16843,21963
+16844,20756
+16845,35243
+16846,20756
+16847,20756
+16848,15311
+16849,29509
+16850,67039
+16851,66703
+16852,14493
+16853,1324
+16854,1319
+16855,7641
+16856,53402
+16857,75942
+16858,15618
+16859,21720
+16860,24325
+16861,16341
+16862,43104
+16863,3612
+16864,64747
+16865,58798
+16866,21443
+16867,74973
+16868,21765
+16869,72767
+16870,66703
+16871,29509
+16872,40303
+16873,75823
+16874,35243
+16875,35242
+16876,29621
+16877,55081
+16878,41879
+16879,41878
+16880,76134
+16881,24325
+16882,24321
+16883,29509
+16884,29513
+16885,77192
+16886,77192
+16887,48957
+16888,68544
+16889,1319
+16890,3695
+16891,26587
+16892,24321
+16893,20756
+16894,37127
+16895,82163
+16896,40303
+16897,21720
+16898,21719
+16899,21719
+16900,21720
+16901,21719
+16902,57671
+16903,67039
+16904,21719
+16905,56119
+16906,55951
+16907,55423
+16908,36381
+16909,8653,52751
+16910,8652
+16911,6378
+16912,6952
+16913,67920
+16914,6952
+16915,39183
+16916,65959
+16917,65960
+16918,57671
+16919,72990
+16920,3695
+16921,14493
+16922,853
+16923,77192
+16924,724
+16925,11573
+16926,48957
+16927,18091
+16928,58798
+16929,37127
+16930,25303
+16931,66703
+16932,8209
+16933,81781
+16934,5111
+16935,15835
+16936,28801
+16937,39803
+16938,39679
+16939,24321
+16940,24325
+16941,51397
+16942,21397
+16943,283
+16944,41446
+16945,277
+16946,35103
+16947,81251
+16948,79619
+16949,81781
+16950,56119
+16951,29509
+16952,29509
+16953,60445,81781
+16954,67039
+16955,81781
+16956,11589
+16957,52887
+16958,39803
+16959,47503
+16960,70990
+16961,46736
+16962,21996
+16963,66703
+16964,65960
+16965,74010
+16966,54962
+16967,1752
+16968,32456
+16969,13590
+16970,10295
+16971,55022
+16972,67039
+16973,72966
+16974,67462
+16975,68481
+16976,67462
+16977,63488
+16978,40299
+16979,20756
+16980,6888
+16981,29509
+16982,73555
+16983,60899
+16984,44703
+16985,60611
+16986,29771
+16987,21719
+16988,5513
+16989,66594
+16990,603
+16991,31279
+16992,416
+16993,29509,62089
+16994,29509
+16995,58798
+16996,24051
+16997,56520
+16998,74973
+16999,29509
+17000,82113
+17001,41284
+17002,23513
+17003,21444
+17004,60611
+17005,65531
+17006,21963
+17007,35097
+17008,24325
+17009,40303
+17010,40299
+17011,46148
+17012,29509
+17013,29509
+17014,29509
+17015,35097
+17016,35875
+17017,40303
+17018,40299
+17019,40303
+17020,40303
+17021,3695
+17022,3705
+17023,19231
+17024,25431
+17025,55081
+17026,56219
+17027,63656
+17028,52887
+17029,21963
+17030,52886
+17031,52887
+17032,14493
+17033,43104
+17034,3701
+17035,54683
+17036,19649
+17037,72961
+17038,65581
+17039,64747
+17040,35097
+17041,35096
+17042,55607
+17043,55055
+17044,61086
+17045,71624
+17046,52660
+17047,77192
+17048,26789
+17049,43813
+17050,17049
+17051,17049
+17052,17049
+17053,59670
+17054,19231,76113
+17055,35097
+17056,29621
+17057,41879
+17058,49181
+17059,49181
+17060,41878
+17061,41882
+17062,66703
+17063,8409
+17064,29509
+17065,72966
+17066,22642
+17067,46148
+17068,46148
+17069,43701
+17070,37908
+17071,40303
+17072,40299
+17073,21720
+17074,31542
+17075,31542
+17076,60120
+17077,21720
+17078,49792
+17079,21720
+17080,63460
+17081,63459
+17082,67039
+17083,52886
+17084,52887
+17085,40299
+17086,55081
+17087,40299
+17088,24325
+17089,41879
+17090,19629
+17091,19629
+17092,19629
+17093,19629
+17094,19629
+17095,19629
+17096,41878
+17097,39679
+17098,21720
+17099,41879
+17100,20756
+17101,21963
+17102,27763
+17103,52887
+17104,52887
+17105,54980
+17106,54979
+17107,67039
+17108,40303
+17109,40299
+17110,40299
+17111,55081
+17112,67039
+17113,39803
+17114,21963
+17115,51396
+17116,51702
+17117,65960
+17118,77851
+17119,40303
+17120,24325
+17121,48957
+17122,32456
+17123,36008
+17124,48210
+17125,35474
+17126,13818
+17127,6772
+17128,66703
+17129,3701
+17130,65959
+17131,65960
+17132,21719
+17133,21720
+17134,21963
+17135,41697
+17136,21963
+17137,35243
+17138,56119
+17139,39803
+17140,55081
+17141,6952
+17142,55162
+17143,20426
+17144,24321
+17145,21720
+17146,24325
+17147,24321
+17148,24321
+17149,20756
+17150,1319
+17151,39940
+17152,80106
+17153,52660
+17154,81781
+17155,21720
+17156,21719
+17157,21719
+17158,29509,62089
+17159,40406
+17160,67038
+17161,67039
+17162,77955
+17163,77955
+17164,65960
+17165,2250,66344
+17166,30895
+17167,64490
+17168,29509
+17169,40012
+17170,13746
+17171,41155
+17172,68446
+17173,58798
+17174,61622
+17175,617
+17176,41879
+17177,39271
+17178,32362
+17179,18748,39623
+17180,21719
+17181,13019
+17182,13020
+17183,6163
+17184,44703
+17185,56219
+17186,1751
+17187,15807
+17188,21443
+17189,277
+17190,1991
+17191,3281
+17192,41879
+17193,41878
+17194,41882
+17195,41879
+17196,41878
+17197,18748
+17198,21443
+17199,20756
+17200,31542
+17201,46148
+17202,20559
+17203,79233,30586
+17204,29509
+17205,67277
+17206,33797,29197
+17207,36892
+17208,21412
+17209,60196
+17210,80591
+17211,80394
+17212,41234
+17213,58815
+17214,51397
+17215,78140
+17216,41879
+17217,41878
+17218,41882
+17219,29509
+17220,5111
+17221,15835
+17222,20889
+17223,21720
+17224,17226
+17225,17227
+17226,567
+17227,568
+17228,66703
+17229,66703
+17230,56119,62089
+17231,283
+17232,277
+17233,17235
+17234,17235
+17235,55022
+17236,63017
+17237,75958
+17238,75958
+17239,52887
+17240,52886
+17241,77192
+17242,15820
+17243,17244
+17244,723
+17245,65960
+17246,79850
+17247,55423
+17248,29621
+17249,24321
+17250,24321
+17251,24325
+17252,16932
+17253,81781
+17254,37127
+17255,29509
+17256,53480
+17257,31100
+17258,17264
+17259,51400
+17260,51400
+17261,49997
+17262,32456
+17263,65262
+17264,1319
+17265,568
+17266,17265
+17267,27167
+17268,75958
+17269,73057
+17270,80217
+17271,30231
+17272,55022
+17273,76811
+17274,23387
+17275,43104
+17276,17265
+17277,55022
+17278,32456
+17279,17264
+17280,46148
+17281,37834
+17282,58798
+17283,70761,48451
+17284,69413
+17285,24321
+17286,24325
+17287,46047
+17288,35243
+17289,52887
+17290,77192
+17291,8397
+17292,8398
+17293,58103
+17294,8409
+17295,8331
+17296,8330
+17297,77192
+17298,54873
+17299,21963
+17300,13164
+17301,15623
+17302,15622
+17303,1751
+17304,21459
+17305,32456
+17306,21443
+17307,36008
+17308,29509
+17309,58806
+17310,3701
+17311,68678
+17312,80394
+17313,78899
+17314,77192
+17315,72386
+17316,16685
+17317,6952
+17318,5501
+17319,81683
+17320,81687
+17321,77192
+17322,13746
+17323,24325
+17324,48634,53296
+17325,60611
+17326,58012
+17327,66703
+17328,55081
+17329,55080
+17330,65959
+17331,55952
+17332,55952
+17333,12045
+17334,20756
+17335,24321
+17336,24325
+17337,36872
+17338,65387
+17339,72961
+17340,5765
+17341,64747
+17342,68544
+17343,63017
+17344,24325
+17345,24321
+17346,61622
+17347,51068
+17348,57924
+17349,31108
+17350,19309
+17351,34821
+17352,3240
+17353,21720
+17354,14638
+17355,13063
+17356,29509
+17357,283
+17358,277
+17359,55022
+17360,17359
+17361,2923
+17362,6054
+17363,61622
+17364,17264
+17365,17265
+17366,68474
+17367,52886
+17368,52887
+17369,32456
+17370,15679
+17371,5765
+17372,55022
+17373,56119
+17374,33797
+17375,67039
+17376,24379,48634
+17377,12045
+17378,35096
+17379,35097
+17380,43104
+17381,75958
+17382,74175
+17383,55423
+17384,63460
+17385,63459
+17386,63461
+17387,29621
+17388,55951
+17389,7658
+17390,65960
+17391,36892
+17392,61258
+17393,67038
+17394,52660
+17395,8409
+17396,12547
+17397,40303
+17398,1752
+17399,56917
+17400,30900
+17401,39803
+17402,39803
+17403,39803
+17404,55423
+17405,38313
+17406,81781
+17407,61159
+17408,61159
+17409,3227
+17410,3228
+17411,29313
+17412,54980
+17413,17436
+17414,21589,24894
+17415,40411
+17416,54979
+17417,35474
+17418,13817
+17419,65754
+17420,17421
+17421,55022
+17422,1324
+17423,13817
+17424,49831
+17425,10935
+17426,48025
+17427,81669
+17428,17434
+17429,17434
+17430,33928
+17431,17434
+17432,17434
+17433,68785
+17434,19382
+17435,75958
+17436,12054
+17437,19649
+17438,19797
+17439,19649
+17440,19649
+17441,23416
+17442,19649
+17443,26785
+17444,30058,19649
+17445,50874
+17446,41861
+17447,75029
+17448,19649
+17449,19649
+17450,46779
+17451,10487
+17452,50610
+17453,54403
+17454,54658
+17455,56217
+17456,19649
+17457,47925
+17458,47925
+17459,47925
+17460,19649
+17461,17468
+17462,69081
+17463,38676
+17464,62176
+17465,36008
+17466,36664
+17467,39546
+17468,48480
+17469,51658
+17470,75946
+17471,78725
+17472,78725
+17473,78725
+17474,78725
+17475,78725
+17476,78725
+17477,78725
+17478,78725
+17479,78725
+17480,78725
+17481,78725
+17482,78725
+17483,78725
+17484,71493
+17485,81781
+17486,67462
+17487,81781
+17488,21444
+17489,19379
+17490,76664
+17491,59903
+17492,29509
+17493,24325
+17494,24321
+17495,29509
+17496,56171
+17497,17496
+17498,64747
+17499,11472
+17500,40299
+17501,8740,74414,58389
+17502,62015
+17503,62015
+17504,62015
+17505,62015
+17506,77192
+17507,12042
+17508,14870
+17509,41882
+17510,28801
+17511,51397
+17512,24325
+17513,71493
+17514,20878
+17515,29509
+17516,35492
+17517,60592
+17518,52887
+17519,41879
+17520,20756
+17521,40303
+17522,52887
+17523,65960
+17524,52886
+17525,52887
+17526,35097
+17527,35096
+17528,61258
+17529,80394
+17530,15822
+17531,66703
+17532,62294
+17533,79608
+17534,15820
+17535,55022
+17536,17535
+17537,7658
+17538,41879
+17539,41878
+17540,21459
+17541,41878
+17542,41882
+17543,41879
+17544,41879
+17545,19231,36381
+17546,65764
+17547,65960
+17548,702
+17549,603
+17550,15499
+17551,15500
+17552,29509
+17553,29509
+17554,15311
+17555,723
+17556,25302
+17557,47505
+17558,65531
+17559,61789
+17560,29509
+17561,61254
+17562,58798
+17563,72961
+17564,15311
+17565,51397
+17566,51396
+17567,17264
+17568,17265
+17569,1324
+17570,55022
+17571,74010
+17572,51068
+17573,49391
+17574,17576
+17575,17576
+17576,33928
+17577,38639
+17578,56447
+17579,56281
+17580,43168
+17581,27763
+17582,35243
+17583,56119
+17584,7653
+17585,68796
+17586,7660
+17587,7654
+17588,7658
+17589,62089
+17590,77192
+17591,29509
+17592,29509
+17593,74769
+17594,77192
+17595,60839
+17596,44241
+17597,33928
+17598,21963
+17599,21962
+17600,21963
+17601,7420
+17602,12045
+17603,55951
+17604,8409
+17605,56119
+17606,55081
+17607,61086
+17608,36892
+17609,29509,62089
+17610,60611
+17611,23853
+17612,13746
+17613,81781,51702
+17614,60611
+17615,60611
+17616,21444
+17617,77192
+17618,29509,62089
+17619,56246
+17620,48957
+17621,67979
+17622,40065,60435
+17623,57671
+17624,26118
+17625,24325
+17626,21720
+17627,21963
+17628,12045
+17629,48957
+17630,32456
+17631,20559
+17632,65959
+17633,65960
+17634,31041
+17635,72990
+17636,81781
+17637,29509,62089
+17638,68230
+17639,7658
+17640,58798
+17641,58798,21681
+17642,60327
+17643,66035
+17644,29509
+17645,32361
+17646,70426
+17647,31041
+17648,50346
+17649,7658
+17650,8652
+17651,53480
+17652,37127
+17653,17655
+17654,7660
+17655,67462
+17656,7660
+17657,68230
+17658,24199
+17659,36381
+17660,31542
+17661,57671
+17662,39049
+17663,28747
+17664,14290
+17665,54979
+17666,8397
+17667,81229
+17668,43377
+17669,71055
+17670,8409
+17671,15822
+17672,15820
+17673,55022
+17674,29509
+17675,51991
+17676,34997
+17677,42488
+17678,14290
+17679,21444
+17680,53624
+17681,75940,48100
+17682,14504
+17683,54980
+17684,58088
+17685,43372
+17686,27625
+17687,33237
+17688,14638
+17689,1718
+17690,29509,62089
+17691,51397
+17692,21963
+17693,21962
+17694,21963
+17695,12042
+17696,31041
+17697,79618
+17698,80962
+17699,61086
+17700,61622
+17701,57671
+17702,702
+17703,603
+17704,81781
+17705,60445
+17706,71695
+17707,53480
+17708,29509
+17709,57671
+17710,55223
+17711,17710
+17712,17710
+17713,56246
+17714,74625
+17715,56075
+17716,32547
+17717,29509
+17718,58815
+17719,60592
+17720,72990
+17721,76782
+17722,40485
+17723,61054
+17724,20575
+17725,70761,48451
+17726,35243
+17727,21720
+17728,14493
+17729,52887
+17730,52886
+17731,21719
+17732,56246
+17733,21720
+17734,14504
+17735,21968
+17736,33797
+17737,79850
+17738,50878
+17739,21938
+17740,66703
+17741,77192
+17742,79517
+17743,21963
+17744,79532
+17745,29509
+17746,77192
+17747,54568
+17748,67039
+17749,77192
+17750,70166
+17751,49817
+17752,49817
+17753,14504
+17754,77192
+17755,1533
+17756,63488,62089
+17757,14071,37725
+17758,80394
+17759,56119,62089
+17760,34198
+17761,50878
+17762,43104
+17763,61508
+17764,26884
+17765,60216
+17766,46149
+17767,21448
+17768,30391
+17769,43915
+17770,52887
+17771,81781
+17772,77192
+17773,57810
+17774,24325
+17775,56119
+17776,41455
+17777,77192
+17778,32361
+17779,56119
+17780,48957
+17781,1324
+17782,80106
+17783,1319
+17784,11205
+17785,55022
+17786,58798
+17787,67039
+17788,15038
+17789,66344
+17790,31041
+17791,29509
+17792,26602
+17793,61622
+17794,56119
+17795,67039
+17796,29509
+17797,35097
+17798,31615,20672
+17799,35097
+17800,46148
+17801,28938
+17802,61311
+17803,35243
+17804,35242
+17805,65960
+17806,65959
+17807,34990
+17808,24321
+17809,61622
+17810,67039
+17811,76135
+17812,48957
+17813,56127
+17814,2190
+17815,3969
+17816,77192
+17817,702
+17818,29509
+17819,45813
+17820,28422
+17821,79608
+17822,33130
+17823,34249
+17824,44946
+17825,52857
+17826,58647
+17827,52079
+17828,24371
+17829,40752
+17830,73612
+17831,76236
+17832,80404
+17833,603
+17834,40752
+17835,81402
+17836,31542
+17837,60216
+17838,70209
+17839,6042
+17840,48957
+17841,35242
+17842,40012
+17843,35243
+17844,7658
+17845,6850
+17846,66703
+17847,35096
+17848,12045
+17849,48957
+17850,35097
+17851,39679
+17852,39678
+17853,53295,67582
+17854,31041,79650
+17855,52887
+17856,52887
+17857,52886
+17858,39049
+17859,38828
+17860,29509
+17861,58798
+17862,14638
+17863,31542
+17864,21754
+17865,21443
+17866,66703
+17867,6001
+17868,29509
+17869,66703
+17870,66703
+17871,60611
+17872,81781
+17873,55951
+17874,41879
+17875,41877
+17876,41878
+17877,41879
+17878,19629
+17879,63459
+17880,63461
+17881,63460
+17882,52886
+17883,81781
+17884,80962
+17885,56127
+17886,61622
+17887,58798
+17888,14504
+17889,9987
+17890,2080
+17891,31542
+17892,52887
+17893,24325
+17894,51068
+17895,18149,13815
+17896,75677
+17897,66703
+17898,71493,81462
+17899,29509
+17900,75823
+17901,77192
+17902,55734
+17903,21444
+17904,31041
+17905,40986
+17906,77192
+17907,61086
+17908,11480
+17909,8353
+17910,66084
+17911,80047
+17912,81781
+17913,28938
+17914,40012
+17915,724
+17916,11363
+17917,48957
+17918,7734
+17919,18520
+17920,1511
+17921,68796
+17922,35342,72990
+17923,41742
+17924,62932
+17925,50110,72990
+17926,81781
+17927,41361
+17928,41398
+17929,73179
+17930,73650
+17931,53183
+17932,77192
+17933,56189
+17934,81781
+17935,48451
+17936,42436
+17937,49162
+17938,1919
+17939,6264
+17940,38439
+17941,81781,46148
+17942,72990
+17943,33928
+17944,20472
+17945,74625
+17946,31279
+17947,39803
+17948,57140
+17949,81781
+17950,31041
+17951,496
+17952,26602
+17953,8647
+17954,67047
+17955,76330
+17956,38680
+17957,80106
+17958,80106
+17959,80106
+17960,80106
+17961,80106
+17962,80106
+17963,21681
+17964,24224
+17965,37127,38047
+17966,26602
+17967,81781
+17968,58798
+17969,18084
+17970,40012
+17971,28938
+17972,81781,61622
+17973,56119
+17974,72990
+17975,37204
+17976,702
+17977,42436,13746
+17978,56119
+17979,33928
+17980,53861,57323
+17981,603
+17982,603
+17983,22649
+17984,30999
+17985,29509
+17986,29509,62089
+17987,68095
+17988,74973
+17989,77192
+17990,61086
+17991,19234,70426
+17992,77192
+17993,77192
+17994,42488
+17995,63586
+17996,37908
+17997,37908,48768
+17998,57671
+17999,61622,76134
+18000,81781
+18001,77192
+18002,66023,81462
+18003,42436,39859
+18004,55951
+18005,42436
+18006,19231
+18007,72865
+18008,63187
+18009,81781
+18010,71347,37127
+18011,31279,31041
+18012,60620
+18013,58798
+18014,71347
+18015,60611
+18016,50604
+18017,61796
+18018,36381
+18019,51148
+18020,68544
+18021,62356
+18022,62348
+18023,80591
+18024,43125
+18025,36892
+18026,53480
+18027,60448
+18028,74675
+18029,31041
+18030,29509
+18031,34491
+18032,46760
+18033,60611
+18034,42488
+18035,19959
+18036,55423
+18037,18035
+18038,18035
+18039,72990
+18040,18748
+18041,19231,40012
+18042,42436,72990
+18043,56119
+18044,81781
+18045,2586
+18046,28028
+18047,57811
+18048,61967
+18049,62029
+18050,35557
+18051,72540
+18052,81360
+18053,5765
+18054,62149
+18055,81781
+18056,44702
+18057,29513
+18058,3612
+18059,22351
+18060,81781
+18061,56520
+18062,21135
+18063,28238
+18064,25673
+18065,66703
+18066,29737
+18067,29737
+18068,10933
+18069,10935
+18070,13818
+18071,43104
+18072,58798
+18073,19234,30586
+18074,65579
+18075,81781
+18076,43104
+18077,11881
+18078,43104
+18079,11957
+18080,43104
+18081,72961
+18082,29513
+18083,2016
+18084,3386
+18085,43104
+18086,43104
+18087,29513
+18088,6637
+18089,5777
+18090,75942
+18091,604
+18092,41454
+18093,21443
+18094,35787
+18095,11018
+18096,37762
+18097,40560
+18098,77192
+18099,54418
+18100,15027
+18101,12310
+18102,32473
+18103,702
+18104,603
+18105,32473
+18106,39530
+18107,1533
+18108,79608
+18109,10295
+18110,43104
+18111,43104
+18112,55022
+18113,25593
+18114,33327
+18115,64873
+18116,55395
+18117,59405
+18118,42244
+18119,74067
+18120,21959
+18121,21919
+18122,48768
+18123,25406
+18124,54648
+18125,60536
+18126,72843
+18127,81781
+18128,61622
+18129,60611,48768
+18130,25916
+18131,21432
+18132,55423
+18133,29509
+18134,5513,51167
+18135,74500
+18136,61796
+18137,59380
+18138,81161
+18139,76330
+18140,58798
+18141,17210
+18142,37204
+18143,81781
+18144,28938
+18145,81781
+18146,21444
+18147,49341
+18148,66703
+18149,60216
+18150,66035,43814
+18151,38680
+18152,45443
+18153,30153
+18154,48270
+18155,16443
+18156,73650
+18157,29551
+18158,60448,53480
+18159,63488
+18160,54767
+18161,61622
+18162,11210
+18163,48768,53060
+18164,55423
+18165,68677
+18166,61622
+18167,19525
+18168,33302
+18169,65754
+18170,58757
+18171,2751
+18172,29509
+18173,2752
+18174,29509
+18175,19672
+18176,53480
+18177,29509,80403
+18178,81781,46148
+18179,48792
+18180,22786
+18181,48961,32473
+18182,57140
+18183,18076
+18184,69978
+18185,81781,36381
+18186,40012
+18187,81781,36381
+18188,41181
+18189,27088
+18190,8822
+18191,38828
+18192,65531
+18193,43104
+18194,38828
+18195,24224
+18196,29549
+18197,28801
+18198,66703
+18199,37204
+18200,74191,36644
+18201,35917
+18202,9043
+18203,9043
+18204,9043
+18205,9043
+18206,56802
+18207,70426,71603
+18208,29737,69363
+18209,60448
+18210,22850
+18211,36381
+18212,61622
+18213,74973
+18214,77192
+18215,56520
+18216,77192
+18217,29509
+18218,67883
+18219,42488
+18220,58227
+18221,57140
+18222,38005
+18223,51702
+18224,81781
+18225,617
+18226,43125
+18227,55423
+18228,60611
+18229,81781
+18230,13746
+18231,60358
+18232,71182
+18233,11870
+18234,67254
+18235,74117
+18236,29509
+18237,66528
+18238,63651
+18239,21432,21681
+18240,56127
+18241,28801
+18242,56119
+18243,57924
+18244,29509
+18245,36892
+18246,73532
+18247,29249
+18248,70885
+18249,56294
+18250,21443
+18251,28546
+18252,37043
+18253,15623
+18254,15622
+18255,63488
+18256,50215
+18257,69363
+18258,29509
+18259,12371
+18260,52659
+18261,13019
+18262,4146
+18263,702
+18264,66703
+18265,81176
+18266,603
+18267,25303
+18268,65763
+18269,65763
+18270,30391
+18271,81781
+18272,617,37204
+18273,60448
+18274,65581
+18275,64490
+18276,81781
+18277,853
+18278,29648
+18279,31041
+18280,81781
+18281,81781
+18282,20575
+18283,55081
+18284,55081
+18285,28801,60611
+18286,31417
+18287,81781,39623
+18288,18079
+18289,43341
+18290,32160
+18291,58798
+18292,81781
+18293,19234
+18294,31279
+18295,20120
+18296,37127
+18297,74191
+18298,28801
+18299,46148
+18300,39679
+18301,81781
+18302,36376,49341
+18303,21432
+18304,26602
+18305,29509
+18306,29509
+18307,51148
+18308,67957
+18309,51141
+18310,18309
+18311,52999
+18312,6846
+18313,61622
+18314,81668
+18315,77171
+18316,17434
+18317,17434
+18318,69236,61410
+18319,70707
+18320,81669
+18321,81673
+18322,81673
+18323,31117
+18324,25256
+18325,32547
+18326,16703
+18327,81781
+18328,56127
+18329,21444
+18330,39623
+18331,21444
+18332,48768
+18333,81781
+18334,48768
+18335,81781
+18336,29509
+18337,3600
+18338,29509
+18339,26602
+18340,29509
+18341,21444
+18342,61622
+18343,36381
+18344,76134
+18345,58798
+18346,21459,72990
+18347,73863
+18348,40012
+18349,61622
+18350,70426
+18351,41879
+18352,41877
+18353,41877
+18354,702
+18355,603
+18356,853
+18357,21459
+18358,51068
+18359,42338
+18360,69388
+18361,48218
+18362,42429
+18363,48218
+18364,35161
+18365,40003
+18366,21200
+18367,64566
+18368,78097
+18369,47510
+18370,69418
+18371,69418
+18372,69418
+18373,69418
+18374,69418
+18375,69418
+18376,37448,48852
+18377,21963
+18378,22643
+18379,29621
+18380,51396
+18381,51397
+18382,55081
+18383,65959
+18384,54767
+18385,20756
+18386,24321
+18387,24325
+18388,60448
+18389,42436,46148
+18390,20425
+18391,20426
+18392,24325
+18393,65959
+18394,65960
+18395,65960
+18396,51397
+18397,36795
+18398,49817
+18399,277
+18400,30900
+18401,11918
+18402,29509
+18403,72961
+18404,40303
+18405,40299
+18406,20756
+18407,41879
+18408,41878
+18409,21720
+18410,35097
+18411,52660
+18412,40303
+18413,55080
+18414,61258
+18415,55081
+18416,51068
+18417,42429
+18418,81907
+18419,69418
+18420,7734
+18421,18441
+18422,39803
+18423,68656
+18424,6766
+18425,14820
+18426,77192
+18427,17264
+18428,17265
+18429,60435
+18430,78725
+18431,29509
+18432,31307
+18433,66703
+18434,61086
+18435,7658
+18436,19389
+18437,54615
+18438,56119
+18439,7734
+18440,18441
+18441,7735
+18442,60611
+18443,56119
+18444,603
+18445,603
+18446,56119
+18447,22850
+18448,7734
+18449,18520
+18450,16443
+18451,66703
+18452,61622,36381
+18453,68544
+18454,77192
+18455,66703
+18456,56127
+18457,1324
+18458,1048
+18459,18460
+18460,55022
+18461,18460
+18462,66703
+18463,14638
+18464,56119
+18465,63586
+18466,22649
+18467,22538
+18468,55423
+18469,61622
+18470,55951,21814
+18471,6625
+18472,55951
+18473,10240
+18474,29509,62089
+18475,13019
+18476,7620,52751
+18477,36892,67195
+18478,43104
+18479,64293
+18480,75942
+18481,79591
+18482,70166
+18483,11961
+18484,9215
+18485,80394
+18486,56127
+18487,78024
+18488,65763
+18489,22850
+18490,61622
+18491,19234
+18492,68027
+18493,60611,5356
+18494,29549
+18495,30208
+18496,48451
+18497,29509
+18498,61086
+18499,61086
+18500,61086
+18501,80962
+18502,36892
+18503,72961
+18504,59903
+18505,10680
+18506,10676
+18507,3600
+18508,5765
+18509,5777
+18510,18511
+18511,55022
+18512,57140
+18513,66703
+18514,35787
+18515,24302
+18516,22598
+18517,7734
+18518,77192
+18519,18520
+18520,7735
+18521,72961
+18522,51068
+18523,30186
+18524,18084
+18525,29509
+18526,52887
+18527,56119
+18528,22032
+18529,277
+18530,55022
+18531,52887
+18532,61086
+18533,66703
+18534,283
+18535,277
+18536,18537
+18537,55022
+18538,52497
+18539,44702
+18540,81781
+18541,55081
+18542,55080
+18543,55081
+18544,67039
+18545,40012
+18546,48957
+18547,31905
+18548,66344
+18549,52886
+18550,724
+18551,17555
+18552,52887
+18553,29509
+18554,29509
+18555,55081
+18556,48957
+18557,4624
+18558,8647
+18559,63327
+18560,25303
+18561,60611
+18562,40299
+18563,72272
+18564,2607
+18565,2608
+18566,35474
+18567,24325
+18568,60448
+18569,60448
+18570,20756
+18571,63327
+18572,25303
+18573,6952
+18574,48768
+18575,6952
+18576,40303
+18577,36892
+18578,66344,30896
+18579,66703
+18580,16443
+18581,42436
+18582,76113
+18583,40978
+18584,28801
+18585,51397
+18586,283
+18587,277
+18588,36008
+18589,79650
+18590,79618
+18591,55081
+18592,55080
+18593,22257
+18594,40012
+18595,22649
+18596,76134
+18597,46070
+18598,56127
+18599,61766
+18600,55495
+18601,8647
+18602,52886
+18603,55081
+18604,35097
+18605,40303
+18606,40299
+18607,57109
+18608,74973
+18609,29509
+18610,24325
+18611,29621
+18612,63327
+18613,35474
+18614,65754
+18615,55081
+18616,55080
+18617,28801
+18618,15311
+18619,48270
+18620,79650
+18621,277
+18622,30900
+18623,11918
+18624,13944
+18625,29509
+18626,13088
+18627,68796
+18628,76135,45839
+18629,81781
+18630,76134
+18631,60611
+18632,63460
+18633,63459
+18634,20756
+18635,27763
+18636,29621
+18637,35875
+18638,67038
+18639,67039
+18640,20756
+18641,29738
+18642,70427
+18643,53940
+18644,50593
+18645,77641
+18646,61159
+18647,47116
+18648,58508
+18649,39049
+18650,22887
+18651,75082
+18652,26936
+18653,42327
+18654,33428
+18655,78772
+18656,78647
+18657,69744
+18658,35676
+18659,65682
+18660,35612
+18661,46920
+18662,37612
+18663,35429
+18664,18663
+18665,57177
+18666,54878
+18667,18666
+18668,60216
+18669,51490
+18670,26298
+18671,66769
+18672,49483
+18673,18678
+18674,74401
+18675,29314
+18676,31778
+18677,55015
+18678,74401
+18679,41228
+18680,69923
+18681,28627
+18682,66047
+18683,66048
+18684,64353
+18685,25115
+18686,70568
+18687,19193
+18688,21097
+18689,21098
+18690,25843
+18691,28091
+18692,37145
+18693,80048
+18694,28260
+18695,61317
+18696,39466
+18697,57514
+18698,32715
+18699,27398
+18700,55348
+18701,70568
+18702,57113
+18703,61621
+18704,70033
+18705,52857
+18706,18740
+18707,20858
+18708,53916
+18709,58012
+18710,47219,51626,42481
+18711,37789
+18712,18939
+18713,47744
+18714,27286
+18715,48004
+18716,45276,35554
+18717,70231
+18718,31668
+18719,78925
+18720,64142
+18721,30267
+18722,58161
+18723,23791
+18724,34355
+18725,60216
+18726,25087
+18727,38266
+18728,57934
+18729,57360
+18730,31546
+18731,79924
+18732,53163
+18733,35525
+18734,24354
+18735,66693,80197
+18736,34538
+18737,69006,65858
+18738,36089
+18739,63587
+18740,60598
+18741,78640
+18742,54704
+18743,66189
+18744,35626
+18745,66063
+18746,75917
+18747,35922
+18748,65531
+18749,73401
+18750,50899
+18751,60216
+18752,77460
+18753,45280
+18754,75917
+18755,48001
+18756,36602
+18757,75917
+18758,18756
+18759,35917
+18760,39746
+18761,66316
+18762,28529
+18763,68809
+18764,43240
+18765,18740
+18766,76981
+18767,18766
+18768,38266
+18769,81722
+18770,53454
+18771,35435
+18772,65376
+18773,66862
+18774,27135
+18775,22268
+18776,35626
+18777,35512
+18778,45253
+18779,43865
+18780,74939
+18781,18780
+18782,3143
+18783,69606
+18784,65816
+18785,41787
+18786,34765
+18787,34725
+18788,76657
+18789,50139
+18790,56885
+18791,68929
+18792,34765
+18793,77585
+18794,22846
+18795,60013
+18796,18790
+18797,62657
+18798,51640
+18799,18839
+18800,38455
+18801,28121
+18802,52655
+18803,45467
+18804,71842
+18805,75741
+18806,76384
+18807,34326
+18808,75741
+18809,28543
+18810,31245
+18811,65393
+18812,35922
+18813,61789
+18814,36065
+18815,35474
+18816,59188
+18817,71629
+18818,60174
+18819,32325,18820
+18820,71630
+18821,18820
+18822,56179
+18823,71643
+18824,58012
+18825,30206
+18826,47946
+18827,72038
+18828,78703
+18829,60604
+18830,60216
+18831,65767
+18832,53590
+18833,75738
+18834,68960
+18835,68964
+18836,62657
+18837,58803
+18838,65816
+18839,31158
+18840,38003
+18841,76145
+18842,42518
+18843,65929
+18844,58798
+18845,47531
+18846,81781
+18847,70526
+18848,56941
+18849,40990
+18850,63584
+18851,64846
+18852,64846
+18853,64161
+18854,35695
+18855,81807
+18856,61646
+18857,74487
+18858,21412
+18859,50341
+18860,62324
+18861,62441
+18862,28665
+18863,57475
+18864,77641
+18865,81663
+18866,19384
+18867,32298
+18868,22420
+18869,34609
+18870,41516
+18871,43829
+18872,37202
+18873,63152
+18874,62675
+18875,46460
+18876,37204
+18877,68230
+18878,62145
+18879,68771
+18880,68236
+18881,38375
+18882,48401
+18883,32718
+18884,81681
+18885,65295
+18886,24823
+18887,70651
+18888,78160
+18889,70651
+18890,70651
+18891,45813
+18892,18740
+18893,48111
+18894,60284
+18895,54789
+18896,21373
+18897,56180
+18898,82169
+18899,54789
+18900,51502
+18901,25673
+18902,60598
+18903,51184
+18904,75755
+18905,64831
+18906,28530
+18907,72064
+18908,78703
+18909,59762
+18910,68285
+18911,79097
+18912,53624
+18913,34985
+18914,63281
+18915,58287
+18916,50367
+18917,73684
+18918,67940
+18919,70526
+18920,21895
+18921,19131
+18922,36317
+18923,64145,67746
+18924,18919
+18925,31058
+18926,36399
+18927,66551
+18928,21314
+18929,30186
+18930,80483
+18931,57927
+18932,66727
+18933,76657
+18934,47870
+18935,63320
+18936,19130
+18937,19732
+18938,22118
+18939,32929
+18940,29928
+18941,31039
+18942,18939
+18943,18939
+18944,79282
+18945,18939
+18946,41729
+18947,79282
+18948,32715
+18949,79282
+18950,54732
+18951,45096
+18952,55760
+18953,21328
+18954,19280
+18955,50989
+18956,69358
+18957,34911
+18958,51803
+18959,19755
+18960,20226
+18961,37857
+18962,68577
+18963,65509
+18964,45096
+18965,59309
+18966,55768
+18967,79282
+18968,21922
+18969,19200
+18970,30968
+18971,19732
+18972,69358
+18973,43335
+18974,41484,49697
+18975,55768
+18976,47671
+18977,63166
+18978,72984
+18979,65698
+18980,26604
+18981,47898
+18982,66118
+18983,57461
+18984,26604
+18985,62145
+18986,38814
+18987,75020
+18988,65589
+18989,33877
+18990,40240
+18991,62934
+18992,51154
+18993,21905
+18994,28361
+18995,19300
+18996,47870
+18997,47870
+18998,47870
+18999,48219
+19000,47870
+19001,18988
+19002,37197
+19003,31638
+19004,56474
+19005,47871
+19006,65591
+19007,64142
+19008,64142
+19009,28622
+19010,21898
+19011,57360
+19012,34284
+19013,35682
+19014,61402
+19015,69276
+19016,38807
+19017,19014
+19018,19014
+19019,19014
+19020,19014
+19021,23972
+19022,29263
+19023,18740
+19024,70392
+19025,24430
+19026,71761
+19027,23946
+19028,41748
+19029,71353
+19030,58158
+19031,19944
+19032,19954
+19033,20351
+19034,20517
+19035,20517
+19036,67675
+19037,35595
+19038,64923
+19039,27488
+19040,20736
+19041,19036
+19042,49662
+19043,49661,71567
+19044,20517
+19045,19039
+19046,19268
+19047,19270
+19048,19271
+19049,56543
+19050,20019
+19051,58776
+19052,41729
+19053,62184
+19054,60216
+19055,45813
+19056,40752
+19057,27197
+19058,35626
+19059,35626
+19060,66786
+19061,42481
+19062,30467
+19063,31063
+19064,70183
+19065,25119
+19066,30500
+19067,35626
+19068,59305
+19069,31058
+19070,52463
+19071,28784
+19072,47946
+19073,36872
+19074,45354
+19075,19813
+19076,21295
+19077,34326
+19078,24823
+19079,47068
+19080,56179
+19081,79877
+19082,58669
+19083,71729
+19084,22640
+19085,50166,63045
+19086,54446
+19087,59549
+19088,36642
+19089,67432
+19090,37179
+19091,54044
+19092,51468
+19093,34363
+19094,70651,48127
+19095,19094
+19096,19094
+19097,29737,7764
+19098,61705
+19099,18740
+19100,41729
+19101,23118
+19102,81337
+19103,81336
+19104,78097
+19105,65795
+19106,26452
+19107,34399
+19108,34924
+19109,44593
+19110,54875
+19111,32715
+19112,60603
+19113,48495
+19114,64481
+19115,66055
+19116,53870
+19117,60611
+19118,60613
+19119,65698
+19120,48156
+19121,60216
+19122,18919
+19123,45741
+19124,47564
+19125,62614
+19126,60216
+19127,34647
+19128,40063
+19129,19171
+19130,77444
+19131,19129
+19132,44157
+19133,40044
+19134,50875
+19135,21480
+19136,79874
+19137,79874
+19138,21476
+19139,71023
+19140,24430
+19141,35435
+19142,65584
+19143,22032
+19144,73913
+19145,40619
+19146,44698
+19147,55299
+19148,29263
+19149,33566
+19150,20743
+19151,61246
+19152,47198
+19153,18740
+19154,63064
+19155,18740
+19156,55916
+19157,41228
+19158,70395
+19159,56023
+19160,23365
+19161,63064
+19162,51701
+19163,20351
+19164,39049
+19165,58783
+19166,75007
+19167,52908
+19168,61311
+19169,38879
+19170,36377
+19171,38545
+19172,50875
+19173,60074
+19174,26899
+19175,70397
+19176,19228,60077
+19177,37241
+19178,35664
+19179,68549
+19180,34701
+19181,49637
+19182,37448
+19183,69235
+19184,63314
+19185,28780
+19186,44437
+19187,20431
+19188,53624
+19189,53621
+19190,38475
+19191,38475
+19192,20977
+19193,82167
+19194,72416
+19195,67880
+19196,61486
+19197,36524
+19198,44440
+19199,81601
+19200,19171
+19201,53660
+19202,72959
+19203,27797
+19204,56449
+19205,72038
+19206,27459
+19207,19211
+19208,73273
+19209,23764
+19210,37884
+19211,74082
+19212,60216
+19213,28775
+19214,19793
+19215,21275
+19216,28962
+19217,29488
+19218,19124
+19219,51651
+19220,61147
+19221,70516
+19222,77518
+19223,78059
+19224,79821
+19225,77374
+19226,61767
+19227,27282
+19228,19171
+19229,63434
+19230,60216
+19231,60076
+19232,26581
+19233,51472
+19234,19231
+19235,33758
+19236,38561
+19237,62179
+19238,70416
+19239,23780
+19240,75058
+19241,53660
+19242,70183
+19243,63064
+19244,61261
+19245,73281
+19246,61261
+19247,70392
+19248,77636
+19249,77636
+19250,18913
+19251,57361
+19252,35626
+19253,42314
+19254,43380
+19255,43449
+19256,37762
+19257,51099
+19258,19257
+19259,55884,19257
+19260,63996
+19261,65825
+19262,68211
+19263,77740
+19264,69131
+19265,69576
+19266,48477
+19267,53717
+19268,44439
+19269,58158
+19270,58158
+19271,28790
+19272,63259
+19273,65793
+19274,54000
+19275,55756,59422
+19276,33799
+19277,66066
+19278,18720
+19279,20226
+19280,58162
+19281,81789
+19282,34924
+19283,64475
+19284,20905
+19285,57187
+19286,53516
+19287,26937
+19288,26936
+19289,79653
+19290,39676
+19291,36612
+19292,37998
+19293,32759
+19294,22421
+19295,60598
+19296,26936
+19297,74117
+19298,47871
+19299,31039
+19300,47908
+19301,28792
+19302,19299
+19303,48775
+19304,54727
+19305,43103
+19306,53023
+19307,73662
+19308,72825
+19309,30188
+19310,35388
+19311,72052
+19312,65133
+19313,62957
+19314,35531
+19315,21510
+19316,31058
+19317,55348
+19318,70568
+19319,61256
+19320,63873
+19321,48126
+19322,27497
+19323,18728
+19324,23906
+19325,61890
+19326,47198
+19327,43355
+19328,57157
+19329,38053
+19330,57160
+19331,57160
+19332,57160
+19333,20763
+19334,70633
+19335,67940
+19336,54562
+19337,47442
+19338,59549
+19339,68120
+19340,31690
+19341,22907
+19342,53454
+19343,75336
+19344,73230
+19345,58168
+19346,56179
+19347,78925
+19348,39363
+19349,20760
+19350,39466
+19351,59420
+19352,56262
+19353,54909
+19354,52752
+19355,46754
+19356,62254
+19357,75917
+19358,49358
+19359,60216
+19360,21930
+19361,48049
+19362,31564
+19363,38021
+19364,81746
+19365,48792
+19366,38031
+19367,47717
+19368,26960
+19369,54425
+19370,73477
+19371,19369
+19372,19302
+19373,62032
+19374,52920
+19375,53714
+19376,25094
+19377,49497
+19378,33885
+19379,35787
+19380,45465
+19381,50603
+19382,78698
+19383,39811
+19384,45367
+19385,45367
+19386,67333
+19387,38618
+19388,57280
+19389,40416
+19390,43815
+19391,62145
+19392,24718
+19393,51391
+19394,60216
+19395,52211
+19396,18918
+19397,19091
+19398,38012
+19399,47730
+19400,48201
+19401,34285
+19402,65075
+19403,19488
+19404,25115
+19405,30807
+19406,29677
+19407,25889
+19408,41646
+19409,35557
+19410,76662
+19411,47532
+19412,49508
+19413,52904
+19414,60216
+19415,63061
+19416,24718
+19417,59194
+19418,22162
+19419,19392
+19420,81703
+19421,34199
+19422,34197
+19423,81787
+19424,32221,37832
+19425,37832
+19426,53744,37832
+19427,18728
+19428,72931
+19429,79222
+19430,39027
+19431,46553
+19432,46553
+19433,71629
+19434,71630
+19435,71643
+19436,40552
+19437,20743
+19438,60216
+19439,46885
+19440,32506
+19441,19439,39609
+19442,48483
+19443,19439,52806
+19444,66101
+19445,74081
+19446,28529
+19447,47730
+19448,28545
+19449,51180
+19450,19449
+19451,38958
+19452,53528
+19453,76662
+19454,65925
+19455,74275
+19456,47871
+19457,34048
+19458,34906
+19459,55497
+19460,61643
+19461,23899
+19462,21904
+19463,75742
+19464,21633
+19465,66965
+19466,78598
+19467,73495
+19468,60216
+19469,19468
+19470,65154
+19471,25168
+19472,54909
+19473,52752
+19474,19472
+19475,60216
+19476,31427
+19477,57967
+19478,81433
+19479,54728
+19480,54729
+19481,22138
+19482,63666
+19483,30659
+19484,19648
+19485,27086
+19486,26586
+19487,19272
+19488,63344
+19489,68030
+19490,81375
+19491,60216
+19492,22269
+19493,20823
+19494,25016
+19495,31586
+19496,74490
+19497,60216
+19498,50638
+19499,66551
+19500,80505
+19501,37169
+19502,50919
+19503,72409
+19504,41748
+19505,45206
+19506,56179
+19507,28539
+19508,21200
+19509,38907
+19510,77081
+19511,19143
+19512,58088
+19513,24317
+19514,44744
+19515,58166
+19516,27552
+19517,51253
+19518,76999
+19519,41103
+19520,19519
+19521,54121
+19522,54127
+19523,53657
+19524,24260
+19525,37908
+19526,37913
+19527,75613
+19528,60612
+19529,74660
+19530,60438
+19531,39312
+19532,29935
+19533,35652
+19534,65581
+19535,37908
+19536,19811
+19537,60450
+19538,60453
+19539,41610
+19540,69451
+19541,71313
+19542,77399
+19543,39578
+19544,62778
+19545,69028
+19546,78741
+19547,39578
+19548,37690
+19549,53916
+19550,60967
+19551,60216
+19552,76005,50875
+19553,21930
+19554,58168
+19555,21940
+19556,65698
+19557,49793
+19558,43122
+19559,77448
+19560,49858
+19561,22158
+19562,66009
+19563,22159
+19564,41103
+19565,65691
+19566,49858
+19567,30689
+19568,49360
+19569,72052
+19570,22415
+19571,71304
+19572,61422
+19573,19730
+19574,25494
+19575,55253
+19576,41251
+19577,48372
+19578,19480
+19579,47475
+19580,77972
+19581,80510
+19582,66482
+19583,31805
+19584,64178
+19585,39928
+19586,57423
+19587,21738
+19588,23012
+19589,24651
+19590,273
+19591,24823
+19592,72436
+19593,39312
+19594,55873,24289
+19595,60400
+19596,52156
+19597,61157
+19598,34924
+19599,53694
+19600,42246
+19601,34154
+19602,37215
+19603,31477
+19604,22053
+19605,61424
+19606,53871
+19607,51257
+19608,31477
+19609,33932
+19610,58958
+19611,60737
+19612,39513
+19613,77685
+19614,19606
+19615,19299
+19616,47505
+19617,31991
+19618,60598
+19619,19621
+19620,65956
+19621,51814
+19622,47569
+19623,51395
+19624,52189
+19625,52189
+19626,65759
+19627,44609
+19628,33328
+19629,23267
+19630,41877
+19631,28449
+19632,21480
+19633,62356
+19634,34754
+19635,63314
+19636,76662
+19637,52550
+19638,29626
+19639,59970
+19640,65636
+19641,22389
+19642,19636
+19643,19639
+19644,57680
+19645,35525
+19646,47588
+19647,19202
+19648,26577
+19649,19382
+19650,51677
+19651,61202
+19652,49027
+19653,56903
+19654,28054,74081
+19655,65931
+19656,28054
+19657,26604
+19658,57573
+19659,68780
+19660,34647
+19661,68780
+19662,69028
+19663,21218
+19664,40752
+19665,79848
+19666,30391
+19667,30392
+19668,34924
+19669,58162
+19670,51562
+19671,28790
+19672,24841
+19673,20978
+19674,21007
+19675,47871
+19676,21876
+19677,48491
+19678,20828
+19679,19686
+19680,78755
+19681,53454
+19682,74276
+19683,41729
+19684,78649
+19685,30550
+19686,23774
+19687,46708
+19688,19200
+19689,36524
+19690,35436
+19691,48392
+19692,19679
+19693,43845
+19694,58162
+19695,28616
+19696,34664
+19697,63584
+19698,39578
+19699,55348
+19700,35792
+19701,78210
+19702,77976
+19703,63293
+19704,69599
+19705,25661
+19706,65702
+19707,56009
+19708,25673
+19709,65767
+19710,60216
+19711,65766
+19712,78523
+19713,28129
+19714,51468
+19715,31647
+19716,20895
+19717,36602
+19718,58776
+19719,74180
+19720,56605
+19721,30529
+19722,8382
+19723,53203
+19724,53203
+19725,60468
+19726,66862
+19727,24823
+19728,68030
+19729,25673
+19730,35679
+19731,61425
+19732,72052
+19733,45196
+19734,61241
+19735,43913
+19736,30968
+19737,72983
+19738,30659
+19739,50117
+19740,29626
+19741,39375
+19742,45813
+19743,68280
+19744,68280
+19745,52990
+19746,38807
+19747,68280
+19748,79580
+19749,78024
+19750,47487
+19751,74939
+19752,30355
+19753,42523
+19754,65760
+19755,19228
+19756,66087
+19757,43247
+19758,21922
+19759,53854
+19760,61530
+19761,53288
+19762,20690
+19763,70283
+19764,19849
+19765,35626
+19766,82169
+19767,73112
+19768,43546
+19769,67957
+19770,37519
+19771,42246
+19772,65581
+19773,53732
+19774,64142
+19775,36709
+19776,54757
+19777,54757
+19778,76664
+19779,19967
+19780,19907
+19781,54406
+19782,22684,66154
+19783,23221
+19784,67432
+19785,26194
+19786,31084
+19787,21269
+19788,31874
+19789,63416
+19790,31076
+19791,69809
+19792,33464
+19793,34293
+19794,37627
+19795,40021
+19796,54437
+19797,18880
+19798,69308
+19799,19828
+19800,44628
+19801,44966
+19802,46268
+19803,46559
+19804,48456
+19805,59542
+19806,52691
+19807,53278
+19808,22051
+19809,53524
+19810,36709
+19811,61246
+19812,22053
+19813,61830
+19814,81865
+19815,63775
+19816,41100
+19817,65190
+19818,67432
+19819,67432
+19820,56231
+19821,69483
+19822,75913
+19823,77319
+19824,77520
+19825,77523
+19826,77575
+19827,77585
+19828,54440
+19829,71705
+19830,59582
+19831,77496
+19832,62410
+19833,66154
+19834,22075
+19835,38835
+19836,19861
+19837,32683
+19838,80185
+19839,37905
+19840,50317
+19841,56894
+19842,32903
+19843,32908
+19844,73838
+19845,34433
+19846,39358
+19847,39101
+19848,40747
+19849,34924
+19850,41444
+19851,70399
+19852,25928
+19853,27284
+19854,51365
+19855,51778
+19856,38659
+19857,33361
+19858,77521
+19859,46673
+19860,51474
+19861,19867
+19862,28475
+19863,52691
+19864,52693
+19865,51069
+19866,52709
+19867,45570
+19868,77287
+19869,63306
+19870,19847
+19871,19546
+19872,51354
+19873,55352
+19874,22049
+19875,71838
+19876,72066
+19877,81193
+19878,19847
+19879,71715
+19880,59420
+19881,21474
+19882,59427
+19883,33512
+19884,28164
+19885,41743
+19886,59126
+19887,38135
+19888,61788,75958
+19889,75958
+19890,75958
+19891,75958
+19892,75958
+19893,75958
+19894,75958
+19895,75958
+19896,75958
+19897,75958
+19898,75958
+19899,63064
+19900,81277
+19901,44719
+19902,80845
+19903,26914
+19904,51778
+19905,59126
+19906,20355
+19907,70214
+19908,39502
+19909,34924
+19910,29845
+19911,80164
+19912,30891
+19913,71005
+19914,79485
+19915,78169
+19916,78170
+19917,46090
+19918,59825
+19919,64846
+19920,47255,24354
+19921,60216
+19922,61174
+19923,77641
+19924,51395
+19925,78189
+19926,25306
+19927,53731
+19928,70397
+19929,74939
+19930,26065
+19931,53561,49353
+19932,58815,41284
+19933,48474
+19934,63547
+19935,51642
+19936,24007,36610
+19937,74083
+19938,44439
+19939,76196
+19940,36638
+19941,34472
+19942,36604
+19943,65120
+19944,58158
+19945,44439
+19946,81482
+19947,77641
+19948,24726
+19949,26232
+19950,56532
+19951,8775
+19952,65931
+19953,19956,45937
+19954,58158
+19955,28792
+19956,55121
+19957,54570
+19958,43355
+19959,23730
+19960,31690
+19961,63641
+19962,66220
+19963,53717
+19964,51068
+19965,50439
+19966,80164
+19967,64970
+19968,21610
+19969,22137
+19970,54859
+19971,63434
+19972,40292
+19973,29986
+19974,29287
+19975,59555
+19976,40927
+19977,53690
+19978,72557
+19979,63458
+19980,54034
+19981,23541
+19982,63861
+19983,19996
+19984,48921
+19985,53480
+19986,30368
+19987,44609
+19988,69450
+19989,53624
+19990,53621
+19991,70395
+19992,34139
+19993,21527
+19994,67270
+19995,38273
+19996,63193
+19997,56009
+19998,34295
+19999,20019
+20000,74597
+20001,74597
+20002,18785
+20003,41158
+20004,77431
+20005,19200
+20006,35611
+20007,48980
+20008,77094
+20009,78755
+20010,65133
+20011,63565
+20012,63564
+20013,43972
+20014,61153
+20015,19368
+20016,36710
+20017,71019
+20018,74498
+20019,58158
+20020,35886
+20021,35886
+20022,47451
+20023,22420
+20024,47543
+20025,60786
+20026,20025
+20027,36872
+20028,71567
+20029,24823
+20030,67675
+20031,34049
+20032,54082
+20033,61703
+20034,79877
+20035,54082
+20036,58669
+20037,74939
+20038,58158
+20039,59549
+20040,19069
+20041,54059
+20042,20019
+20043,75007
+20044,44439
+20045,58158
+20046,21025
+20047,58158
+20048,74253
+20049,50604
+20050,38807
+20051,70214
+20052,60177
+20053,27506
+20054,76670
+20055,79608
+20056,39722
+20057,19009
+20058,29568
+20059,52268
+20060,30891
+20061,38883
+20062,75755
+20063,59422,55756
+20064,75755
+20065,55756,59422
+20066,20064
+20067,42429
+20068,67957
+20069,74081
+20070,37154
+20071,66392,47185
+20072,35917
+20073,53716
+20074,47185
+20075,35130
+20076,76160
+20077,73650
+20078,36047
+20079,51395
+20080,77637
+20081,31443
+20082,58168
+20083,30038
+20084,69460
+20085,20082
+20086,50784
+20087,32991
+20088,20718
+20089,71151
+20090,80583
+20091,81746
+20092,61584
+20093,66431
+20094,71961,81781
+20095,21913
+20096,31115
+20097,22268
+20098,19311
+20099,33027
+20100,28591
+20101,70225
+20102,79175
+20103,35480
+20104,31058
+20105,55246
+20106,53694
+20107,57471
+20108,60482
+20109,53717
+20110,76210
+20111,69554
+20112,35771
+20113,28780
+20114,28788
+20115,65659
+20116,69554
+20117,51205
+20118,65185
+20119,35518
+20120,54825
+20121,27862
+20122,73081
+20123,70033
+20124,72142
+20125,72146
+20126,72146
+20127,22159
+20128,75775
+20129,53934
+20130,47978
+20131,43109
+20132,40516
+20133,68857
+20134,71446
+20135,43110
+20136,72960
+20137,21930
+20138,44439
+20139,19935
+20140,75007
+20141,68236
+20142,20830
+20143,20830
+20144,72228
+20145,42229
+20146,37181,36641
+20147,20152
+20148,31853
+20149,40564
+20150,64015
+20151,57594
+20152,41743
+20153,58291
+20154,71331
+20155,31730
+20156,43335
+20157,77600
+20158,36089
+20159,21777
+20160,74146
+20161,63863
+20162,19091
+20163,35679
+20164,78788
+20165,22773
+20166,20165
+20167,55394
+20168,81552
+20169,39049
+20170,51818
+20171,72716
+20172,72931
+20173,51068
+20174,25727
+20175,48545
+20176,57731
+20177,56045
+20178,47946
+20179,79775
+20180,38415
+20181,33183
+20182,24799
+20183,25727
+20184,26072
+20185,34117
+20186,39737
+20187,43427
+20188,48875
+20189,59338
+20190,62620
+20191,32169,48852
+20192,65119
+20193,25681
+20194,71439
+20195,77726
+20196,28597,68474
+20197,21946
+20198,71719
+20199,58262
+20200,58106
+20201,51706
+20202,28597
+20203,20763
+20204,38477
+20205,70033
+20206,23573
+20207,29957
+20208,29974
+20209,45813
+20210,81161
+20211,43672
+20212,54458
+20213,67608
+20214,70033
+20215,55438
+20216,23925
+20217,51395
+20218,73838
+20219,75057
+20220,52811,19097
+20221,81251
+20222,68429
+20223,53624
+20224,41607
+20225,55821
+20226,28529
+20227,37419
+20228,74135
+20229,58161
+20230,28962
+20231,37884
+20232,53718
+20233,61422
+20234,42469
+20235,52857
+20236,53624
+20237,35737
+20238,37542
+20239,47283
+20240,70426
+20241,61075
+20242,61075
+20243,29724
+20244,65748
+20245,68027
+20246,33340
+20247,73604
+20248,78783
+20249,72603
+20250,21984
+20251,20255,36216
+20252,20255,36216
+20253,32229
+20254,31058
+20255,54082
+20256,31919
+20257,48030
+20258,29067
+20259,40938
+20260,47105
+20261,68230
+20262,45813
+20263,20253
+20264,63064
+20265,21703
+20266,73837
+20267,31520
+20268,37140
+20269,60132
+20270,66361
+20271,63064
+20272,48126
+20273,48126
+20274,67432
+20275,33134
+20276,70320
+20277,30566
+20278,20120
+20279,31515
+20280,26602
+20281,43892
+20282,45813
+20283,71731
+20284,71733
+20285,51640
+20286,26318
+20287,18740
+20288,22032
+20289,60216
+20290,78786
+20291,31832
+20292,79743
+20293,59286
+20294,81462
+20295,80485
+20296,72376
+20297,35342
+20298,62145
+20299,20297
+20300,56180
+20301,81918
+20302,51395
+20303,20758
+20304,49059
+20305,38043
+20306,45024
+20307,68030
+20308,78533
+20309,36524
+20310,34783
+20311,39578
+20312,71302
+20313,80009
+20314,54562
+20315,79743
+20316,49583
+20317,67036
+20318,34808
+20319,33725
+20320,25115
+20321,27405
+20322,50638
+20323,26208
+20324,80011
+20325,80012
+20326,74577
+20327,22116
+20328,67608
+20329,66412
+20330,63471
+20331,20330,36899
+20332,24354
+20333,47716
+20334,37642
+20335,44474
+20336,32097
+20337,77280
+20338,75495
+20339,72983
+20340,32176
+20341,74939
+20342,54082
+20343,64231,77509
+20344,64073
+20345,24354
+20346,79743
+20347,41609
+20348,41610
+20349,19492
+20350,25934
+20351,58158
+20352,41607
+20353,54142
+20354,44439
+20355,58158
+20356,61311
+20357,74939
+20358,19069
+20359,54159
+20360,26065
+20361,20517
+20362,20972
+20363,28170
+20364,77802
+20365,59668
+20366,41610
+20367,79224
+20368,54130
+20369,31058
+20370,40752
+20371,24194
+20372,22060
+20373,51642
+20374,44609
+20375,60175
+20376,41305
+20377,20371
+20378,27450
+20379,27479
+20380,67675
+20381,56752
+20382,74939
+20383,53454
+20384,48157
+20385,80515
+20386,30275
+20387,45029
+20388,38693
+20389,29732
+20390,28260,62654
+20391,67432
+20392,79432
+20393,28091
+20394,51649
+20395,23062,78076
+20396,20395
+20397,64380
+20398,35922
+20399,35474
+20400,64142
+20401,39312
+20402,52189
+20403,69444
+20404,70033
+20405,21777
+20406,69543
+20407,34209
+20408,59646
+20409,52655
+20410,62846
+20411,59893
+20412,37411
+20413,33428
+20414,33428
+20415,28627
+20416,28627
+20417,52645
+20418,63809
+20419,73272,36610
+20420,20419
+20421,29621
+20422,79432
+20423,19867
+20424,55373
+20425,39294
+20426,42539
+20427,20430
+20428,20430
+20429,50318,54404
+20430,57932
+20431,54562
+20432,54562
+20433,54091
+20434,20307
+20435,54189
+20436,61793
+20437,58166
+20438,31241
+20439,56941
+20440,78679
+20441,52791
+20442,55952
+20443,42039
+20444,72712
+20445,58576
+20446,67608
+20447,49134
+20448,20977
+20449,59893
+20450,74183
+20451,50450
+20452,50717
+20453,47871
+20454,38770
+20455,47869
+20456,37479
+20457,69702
+20458,52655
+20459,18853
+20460,34362
+20461,54913
+20462,25115
+20463,40514
+20464,35425
+20465,57934
+20466,74560
+20467,78647
+20468,53717
+20469,28646
+20470,34422
+20471,21407
+20472,59237
+20473,23206
+20474,43473
+20475,79848
+20476,63600
+20477,44439
+20478,19935
+20479,79224
+20480,38053
+20481,72913
+20482,63434
+20483,61285
+20484,47487
+20485,28790
+20486,22096
+20487,56454,68317
+20488,60598
+20489,30391
+20490,74615
+20491,73201
+20492,21920
+20493,60216
+20494,21745
+20495,76678
+20496,65699
+20497,34664
+20498,66377
+20499,25013
+20500,25770
+20501,65892
+20502,58166
+20503,73180
+20504,43520
+20505,60541
+20506,29737,7764
+20507,48631
+20508,81578
+20509,81582
+20510,60242
+20511,72135
+20512,60385
+20513,24823
+20514,38624
+20515,73272
+20516,60598
+20517,53717
+20518,29845
+20519,31100
+20520,80238
+20521,65056
+20522,70375
+20523,48087
+20524,30952
+20525,47486
+20526,59555
+20527,38883
+20528,32974
+20529,26939
+20530,48791
+20531,65057
+20532,55627
+20533,38807
+20534,38807
+20535,63564
+20536,43122
+20537,23540
+20538,33259
+20539,66325
+20540,63314
+20541,48408
+20542,47561
+20543,54092
+20544,38576
+20545,31940
+20546,54189
+20547,60393
+20548,81578
+20549,65892
+20550,63278
+20551,43913
+20552,69444
+20553,20554
+20554,47185
+20555,36917
+20556,20745
+20557,65958
+20558,61789
+20559,64490
+20560,35625
+20561,72055
+20562,37162
+20563,49155
+20564,25087
+20565,50985
+20566,50985
+20567,49441
+20568,79282
+20569,66377
+20570,65058
+20571,38664
+20572,78755
+20573,22944
+20574,68030
+20575,38807
+20576,20530
+20577,55251
+20578,44769
+20579,22646,21007
+20580,58576
+20581,65702
+20582,81703
+20583,20581
+20584,48218
+20585,75710
+20586,46492
+20587,74486
+20588,28417
+20589,51316
+20590,31245
+20591,39556
+20592,21631
+20593,21475
+20594,38244
+20595,40292
+20596,71398
+20597,72503
+20598,36452
+20599,40564
+20600,41743
+20601,37179
+20602,61127
+20603,67957
+20604,45813
+20605,43809
+20606,60216
+20607,57682
+20608,46163
+20609,30779
+20610,60899
+20611,57681
+20612,59970
+20613,70568
+20614,75755
+20615,59422,55756
+20616,47442
+20617,74488
+20618,42229
+20619,23679
+20620,42116
+20621,73201
+20622,59320
+20623,79826
+20624,69410
+20625,22323
+20626,70033
+20627,70033
+20628,71319
+20629,20621,49670
+20630,45813
+20631,65908
+20632,56074
+20633,66953
+20634,74939
+20635,24823
+20636,20875
+20637,47283
+20638,53621
+20639,42358
+20640,53621
+20641,40752
+20642,33782
+20643,24354
+20644,47581
+20645,47744
+20646,23130
+20647,60598
+20648,71996
+20649,53716
+20650,36602
+20651,51881
+20652,60598
+20653,18740
+20654,27555
+20655,72281
+20656,59587
+20657,70033
+20658,70033
+20659,23765
+20660,72386
+20661,69564
+20662,26673
+20663,40564
+20664,45812
+20665,45813
+20666,77641
+20667,76138
+20668,23799
+20669,37687
+20670,37686
+20671,48126,20684
+20672,48127
+20673,45490
+20674,66873
+20675,20689
+20676,37162
+20677,44474
+20678,53717
+20679,66873
+20680,66874
+20681,35917
+20682,53716
+20683,78160,20684
+20684,59549
+20685,57934
+20686,77646
+20687,52842
+20688,54263
+20689,72111
+20690,77641
+20691,82003
+20692,60598
+20693,79222
+20694,20693
+20695,20693
+20696,48227
+20697,63414
+20698,71837
+20699,25645
+20700,20702
+20701,20698
+20702,20698
+20703,20698
+20704,20698
+20705,52288
+20706,26358
+20707,68197
+20708,40323
+20709,57280
+20710,40330
+20711,74500
+20712,45280
+20713,23095
+20714,43896
+20715,58088
+20716,21087
+20717,54183
+20718,51814
+20719,35762
+20720,35765
+20721,18905
+20722,21703
+20723,20698
+20724,55001
+20725,62147
+20726,69543
+20727,78703
+20728,79282
+20729,72066
+20730,69544
+20731,53621
+20732,28538
+20733,50969
+20734,63584
+20735,60598
+20736,31058
+20737,33271
+20738,47963
+20739,36872
+20740,20353
+20741,36872
+20742,68944
+20743,58166
+20744,70214
+20745,35534
+20746,39324
+20747,39428,20754
+20748,56166,20758
+20749,79433
+20750,43475,20758
+20751,24243
+20752,39381
+20753,50861
+20754,53454
+20755,57594,20754
+20756,58100
+20757,60786
+20758,20754
+20759,20758
+20760,76756
+20761,77216
+20762,77366
+20763,79691
+20764,58166
+20765,35922
+20766,35679
+20767,56200
+20768,34423
+20769,60617
+20770,40016
+20771,23780
+20772,19225
+20773,20769
+20774,22166
+20775,75604
+20776,66776
+20777,27737
+20778,56180
+20779,35922
+20780,35474
+20781,46708
+20782,48842
+20783,31058
+20784,34858
+20785,45813
+20786,40564
+20787,31853
+20788,43211
+20789,77641
+20790,79743
+20791,51640
+20792,42114
+20793,69452
+20794,39010
+20795,63314
+20796,59713
+20797,43400
+20798,25617
+20799,25256
+20800,69818
+20801,25624
+20802,71352
+20803,63104
+20804,21572
+20805,72381,22305
+20806,59549
+20807,12698,8182
+20808,46148
+20809,49333
+20810,46163
+20811,45152
+20812,81681
+20813,19299
+20814,19131
+20815,47863
+20816,34826
+20817,34827
+20818,34822
+20819,33928
+20820,38770
+20821,57396
+20822,72983
+20823,72983
+20824,30891
+20825,26014
+20826,54784
+20827,56348
+20828,20670
+20829,61246
+20830,65478
+20831,39676
+20832,58161
+20833,21959
+20834,65133
+20835,65627
+20836,20835
+20837,71469
+20838,68374
+20839,28619
+20840,54953
+20841,35722
+20842,61260
+20843,81907
+20844,47948
+20845,12327
+20846,75912
+20847,37430
+20848,65767
+20849,21276
+20850,67459
+20851,48474
+20852,55151
+20853,81906
+20854,72248
+20855,54831
+20856,62144
+20857,18740
+20858,60216
+20859,48980
+20860,47552
+20861,57385
+20862,39970
+20863,55294
+20864,24749
+20865,18740
+20866,37044
+20867,20866
+20868,70091
+20869,35425
+20870,61174
+20871,79743
+20872,36909
+20873,58162
+20874,59549
+20875,47283
+20876,20875
+20877,80395
+20878,65906
+20879,61422
+20880,64949
+20881,72983
+20882,37478
+20883,47127
+20884,20899
+20885,21140
+20886,56532
+20887,20897
+20888,20897
+20889,19654
+20890,57987
+20891,46708,35611
+20892,46092
+20893,20895
+20894,36602
+20895,55686
+20896,28153
+20897,78432
+20898,72780
+20899,37163
+20900,28057
+20901,65483
+20902,75764
+20903,59565
+20904,21447
+20905,25518
+20906,44407
+20907,37405
+20908,69130
+20909,75867
+20910,74891
+20911,27538
+20912,28333
+20913,28339
+20914,39094
+20915,41002
+20916,49388
+20917,53890
+20918,37832
+20919,69264
+20920,74976
+20921,75758
+20922,79282
+20923,62147
+20924,20386
+20925,66953
+20926,71595
+20927,65956
+20928,42118
+20929,65956
+20930,42114
+20931,49993
+20932,37191
+20933,30393
+20934,20431
+20935,30216
+20936,30021
+20937,61574
+20938,35534
+20939,82167
+20940,59331
+20941,38576
+20942,62884
+20943,54727
+20944,21119
+20945,81703
+20946,71325
+20947,71324
+20948,18869
+20949,53621
+20950,65930
+20951,27209
+20952,75020
+20953,46818
+20954,60216
+20955,60216
+20956,65766
+20957,62766
+20958,45280
+20959,64431
+20960,36602
+20961,50602
+20962,63427
+20963,53717
+20964,50602
+20965,69754
+20966,66060
+20967,63187
+20968,27086
+20969,44628
+20970,40150
+20971,75606
+20972,53717
+20973,53717
+20974,44567
+20975,44768
+20976,21939
+20977,20973
+20978,63434
+20979,35838
+20980,48227
+20981,53717
+20982,53717
+20983,38776
+20984,38777
+20985,46528
+20986,79720
+20987,25763
+20988,39217
+20989,31196
+20990,53717
+20991,53694
+20992,53717
+20993,22051
+20994,53717
+20995,53717
+20996,53717
+20997,53717
+20998,65795
+20999,53717
+21000,35922
+21001,24111
+21002,52634
+21003,19654
+21004,58783
+21005,51642
+21006,19654
+21007,74081
+21008,70516
+21009,20508
+21010,30020
+21011,63410
+21012,53717
+21013,53717
+21014,31058
+21015,37527
+21016,57206
+21017,29917
+21018,21049
+21019,53519
+21020,44768
+21021,21025
+21022,54082
+21023,21015
+21024,20977
+21025,33684
+21026,20977,21025
+21027,21015
+21028,57154
+21029,61646
+21030,66377
+21031,35474
+21032,76135
+21033,31707
+21034,48227
+21035,37527
+21036,21237
+21037,57332
+21038,35611
+21039,76877
+21040,65765
+21041,65765
+21042,55734
+21043,66377
+21044,57984
+21045,57987
+21046,65579
+21047,62015
+21048,57154
+21049,53717
+21050,51881
+21051,53714
+21052,53717
+21053,37527
+21054,38807
+21055,21057
+21056,46149
+21057,21745
+21058,56179
+21059,58162
+21060,53717
+21061,69269
+21062,60243
+21063,53717
+21064,72877
+21065,36602
+21066,21015
+21067,57987
+21068,66377
+21069,20978
+21070,62791
+21071,62791
+21072,50872
+21073,50602
+21074,53717
+21075,65929
+21076,49797
+21077,21069
+21078,53717
+21079,46561
+21080,56811
+21081,81578
+21082,69027
+21083,28091
+21084,47487
+21085,58200
+21086,24781
+21087,37686
+21088,63584
+21089,22107
+21090,53916
+21091,47298
+21092,56536
+21093,21087
+21094,75197
+21095,22149
+21096,75843
+21097,21703
+21098,20654
+21099,21097
+21100,58200
+21101,61468
+21102,73147,79102
+21103,69058
+21104,48126
+21105,81142
+21106,42151
+21107,72733
+21108,66696
+21109,44124
+21110,21544
+21111,71320
+21112,46827
+21113,26298
+21114,63422
+21115,39578
+21116,59462
+21117,54562
+21118,67970
+21119,62884
+21120,81116
+21121,58412
+21122,28095
+21123,19936
+21124,46267
+21125,65641
+21126,57897
+21127,47641
+21128,40753
+21129,28153
+21130,57742
+21131,59549
+21132,79743
+21133,79753
+21134,66785
+21135,25673
+21136,45029
+21137,21156
+21138,35017
+21139,57742
+21140,61256
+21141,50459
+21142,72055
+21143,53548
+21144,48474
+21145,69444
+21146,73272
+21147,78455
+21148,69604
+21149,61161
+21150,67476
+21151,36917
+21152,20635
+21153,47442
+21154,31054
+21155,74939
+21156,28153
+21157,26899
+21158,18679
+21159,74714
+21160,73837
+21161,24306
+21162,63434
+21163,21174
+21164,21156
+21165,60385
+21166,21156
+21167,70482
+21168,76138
+21169,19497
+21170,19091
+21171,34295
+21172,38606
+21173,61246
+21174,21810
+21175,55247
+21176,39396
+21177,66377
+21178,65754
+21179,61261
+21180,63064
+21181,56296
+21182,21156
+21183,63422
+21184,66377
+21185,65679
+21186,18659
+21187,23791
+21188,62145
+21189,34405
+21190,66377
+21191,63809
+21192,80618
+21193,21802
+21194,38793
+21195,41632
+21196,43966
+21197,57573
+21198,30896
+21199,25115
+21200,38218
+21201,29928
+21202,28414
+21203,48030
+21204,58009
+21205,57435
+21206,21213
+21207,21215
+21208,47494
+21209,72271
+21210,63061
+21211,22162
+21212,25016
+21213,45096
+21214,65929
+21215,21631
+21216,22125
+21217,62778
+21218,64142
+21219,71310
+21220,31191
+21221,51729
+21222,32527
+21223,43105
+21224,56009
+21225,59306
+21226,18728
+21227,48126
+21228,21225
+21229,21703
+21230,70569
+21231,79282
+21232,78191
+21233,19286
+21234,63064
+21235,23258
+21236,32759
+21237,32503
+21238,58818
+21239,21328
+21240,37179,61927
+21241,21260
+21242,21140
+21243,24726
+21244,31495
+21245,36766
+21246,41648
+21247,43136
+21248,49179
+21249,41738
+21250,41736
+21251,54655
+21252,45813
+21253,77952
+21254,44460
+21255,60733
+21256,74887
+21257,67377
+21258,75411
+21259,75412
+21260,41743
+21261,78269
+21262,61241
+21263,45021
+21264,25721
+21265,35557
+21266,26884
+21267,21275
+21268,41754
+21269,36798
+21270,34924
+21271,65737
+21272,60216
+21273,65976
+21274,19200
+21275,63187
+21276,53056
+21277,37237
+21278,78966
+21279,71752
+21280,41221
+21281,34924
+21282,53481
+21283,63587
+21284,69400
+21285,57573
+21286,60216
+21287,57461
+21288,35676
+21289,34148
+21290,41914
+21291,25302
+21292,54904
+21293,44474
+21294,38391
+21295,29652
+21296,30657
+21297,32965
+21298,38513
+21299,76085
+21300,47871
+21301,78594
+21302,60216
+21303,60216
+21304,39502
+21305,27397
+21306,38777
+21307,57113
+21308,62145
+21309,21329
+21310,70375
+21311,43698
+21312,55494
+21313,76691
+21314,55347
+21315,31163
+21316,19805
+21317,77688
+21318,41610
+21319,21327
+21320,21328
+21321,74233
+21322,63357
+21323,55026
+21324,19129
+21325,24145
+21326,19126
+21327,51391
+21328,54044
+21329,18919
+21330,22268
+21331,68342
+21332,79424
+21333,70375
+21334,49296
+21335,25673
+21336,37179
+21337,41743
+21338,41731
+21339,67957
+21340,70515
+21341,59610
+21342,63426
+21343,31991
+21344,65120
+21345,18721
+21346,21321
+21347,35678
+21348,19069
+21349,51665
+21350,33318
+21351,25844
+21352,77509,23949
+21353,70629
+21354,70395
+21355,25017
+21356,79793,75292
+21357,61246
+21358,24306
+21359,39676
+21360,61159
+21361,79211
+21362,79432
+21363,38411
+21364,37922
+21365,51665
+21366,31281
+21367,51649
+21368,71557
+21369,43107
+21370,22824
+21371,34199
+21372,64142
+21373,21718
+21374,53897
+21375,82169
+21376,54562
+21377,81549
+21378,68702
+21379,82092
+21380,62390
+21381,31417
+21382,38513
+21383,38807
+21384,48793
+21385,26602
+21386,53686
+21387,49360
+21388,21731
+21389,77641
+21390,41444
+21391,29794
+21392,81549
+21393,39101
+21394,39381
+21395,81703
+21396,31417
+21397,79691
+21398,70033
+21399,33455
+21400,77820
+21401,77820
+21402,77820
+21403,37383
+21404,77820
+21405,77820
+21406,77820
+21407,59427
+21408,73838
+21409,63472
+21410,33455
+21411,70569
+21412,73838
+21413,38013
+21414,74488
+21415,55019
+21416,24306
+21417,24306
+21418,41264
+21419,60216
+21420,20655
+21421,24379
+21422,49483
+21423,29737
+21424,49483
+21425,35312
+21426,62922
+21427,36035
+21428,62914
+21429,61259
+21430,28091
+21431,65789,65740
+21432,20946
+21433,20947
+21434,38807
+21435,60032
+21436,72421
+21437,28164
+21438,20812
+21439,64757
+21440,50806
+21441,51523
+21442,28334
+21443,50296
+21444,32799
+21445,68280
+21446,37913
+21447,34199
+21448,21680
+21449,35480,40080
+21450,26298
+21451,63141
+21452,72667
+21453,54953
+21454,74487
+21455,34646
+21456,30393
+21457,30404
+21458,35048
+21459,62852
+21460,58546
+21461,81176
+21462,55314
+21463,21703
+21464,21703
+21465,79282
+21466,32087
+21467,36664
+21468,52189
+21469,36928
+21470,59450
+21471,37238
+21472,21480
+21473,77034
+21474,73838
+21475,65579
+21476,38910
+21477,25115
+21478,30186
+21479,21477
+21480,78703
+21481,59427
+21482,39517
+21483,74939
+21484,21475
+21485,61404
+21486,76104
+21487,68859
+21488,20763
+21489,48655
+21490,21477
+21491,31447
+21492,66509
+21493,58088
+21494,81142
+21495,76704
+21496,71398
+21497,35309
+21498,54562
+21499,29677
+21500,68859
+21501,68859
+21502,38366
+21503,28780,56806
+21504,19468
+21505,40589
+21506,79165
+21507,35532
+21508,74281
+21509,19309,79085
+21510,38563
+21511,65057
+21512,60400
+21513,31762
+21514,34771
+21515,71352
+21516,44081
+21517,54562
+21518,71595
+21519,3695
+21520,36673
+21521,21518
+21522,61260
+21523,65152
+21524,63064
+21525,50701
+21526,35858
+21527,63861
+21528,53600
+21529,53474
+21530,63197
+21531,53480
+21532,57187
+21533,25046
+21534,24442
+21535,51408
+21536,21583
+21537,63218
+21538,35737
+21539,60259
+21540,52035
+21541,38699
+21542,63426
+21543,40590
+21544,37163
+21545,80515
+21546,30391
+21547,30296
+21548,79749
+21549,22901
+21550,28438
+21551,51167
+21552,54408
+21553,66766
+21554,45679
+21555,31618
+21556,46268
+21557,9930
+21558,72676
+21559,25624
+21560,28148
+21561,54839
+21562,59668
+21563,22901
+21564,80143
+21565,54440
+21566,63424
+21567,63423
+21568,61341
+21569,21576
+21570,21576
+21571,28000
+21572,58226
+21573,21576
+21574,68064
+21575,68597
+21576,68990
+21577,70629
+21578,53059
+21579,37935
+21580,41348
+21581,66088
+21582,28091
+21583,66123
+21584,51440
+21585,34022
+21586,53060
+21587,64402
+21588,33102
+21589,54437
+21590,20883
+21591,54406
+21592,23221
+21593,28951
+21594,33553
+21595,37908
+21596,54425
+21597,54440
+21598,41881
+21599,56811
+21600,27997
+21601,76705
+21602,45813
+21603,57640
+21604,77641
+21605,71023
+21606,76162
+21607,21959
+21608,47047
+21609,47047
+21610,60598
+21611,80001
+21612,28539
+21613,29187
+21614,21480
+21615,55859
+21616,51665
+21617,50875
+21618,44437
+21619,31042
+21620,73835
+21621,55767
+21622,21618
+21623,35664
+21624,35391
+21625,29928
+21626,47898
+21627,34085
+21628,47744
+21629,18740
+21630,66154
+21631,19200
+21632,77585
+21633,18969
+21634,42336
+21635,61655
+21636,80618
+21637,51658
+21638,62847
+21639,60216
+21640,63212
+21641,53171
+21642,21361
+21643,53275
+21644,21959
+21645,70033
+21646,70033
+21647,61651
+21648,81161
+21649,72913
+21650,53086
+21651,71039
+21652,81681
+21653,44604
+21654,81176
+21655,28894
+21656,21085
+21657,21545
+21658,54418
+21659,67675
+21660,28780
+21661,77855
+21662,19069
+21663,60284,36602
+21664,31058
+21665,54562
+21666,42246
+21667,26507
+21668,32929
+21669,32795
+21670,74417
+21671,32793
+21672,32506
+21673,30391
+21674,32964
+21675,77308
+21676,18869
+21677,72735
+21678,37191
+21679,38716
+21680,49797
+21681,46148
+21682,46901
+21683,68237,21770
+21684,59020
+21685,31493
+21686,73863
+21687,75548
+21688,70033
+21689,24807
+21690,53621
+21691,61285
+21692,24835
+21693,46059
+21694,59549
+21695,66873
+21696,21714
+21697,21703
+21698,68317
+21699,68317
+21700,21699
+21701,48126
+21702,76334
+21703,24843
+21704,21703
+21705,21703
+21706,80640
+21707,35586
+21708,58776
+21709,59555
+21710,48127
+21711,28260
+21712,21717
+21713,66873
+21714,66874
+21715,38920
+21716,59549
+21717,57934
+21718,48787
+21719,39294
+21720,42539
+21721,37858
+21722,57934
+21723,28164
+21724,28164
+21725,79259
+21726,79258
+21727,79259
+21728,34869
+21729,56915,60737
+21730,21745
+21731,68809
+21732,80145,21730
+21733,35987
+21734,31690
+21735,50875
+21736,70568
+21737,50173
+21738,63281
+21739,49296
+21740,31445
+21741,38880
+21742,30891
+21743,72057
+21744,75016
+21745,81004
+21746,51643
+21747,21671
+21748,47650
+21749,56243
+21750,48327
+21751,31120
+21752,47650
+21753,35018
+21754,50359
+21755,37656,25843
+21756,32578
+21757,78741
+21758,21597
+21759,21545
+21760,40150
+21761,56480
+21762,69661
+21763,69308
+21764,51238
+21765,32799
+21766,51955,21768
+21767,54869
+21768,73870
+21769,60076
+21770,55495
+21771,53021
+21772,48194
+21773,55996
+21774,21669
+21775,79738
+21776,72913
+21777,45813
+21778,27726
+21779,56180
+21780,62146
+21781,81100
+21782,20431
+21783,18667
+21784,61574
+21785,48111
+21786,36065
+21787,55497
+21788,51068
+21789,51473
+21790,21097
+21791,21703
+21792,30443
+21793,56822
+21794,28536
+21795,70914
+21796,35922
+21797,68960
+21798,78191
+21799,50459
+21800,59549
+21801,45813
+21802,41748
+21803,51216
+21804,21802
+21805,41877
+21806,72409
+21807,32757
+21808,65956
+21809,67837
+21810,65948
+21811,60617
+21812,66046
+21813,81482
+21814,77641
+21815,68869
+21816,65108
+21817,44083
+21818,32083
+21819,24188
+21820,73412,26299
+21821,66226
+21822,66226
+21823,65108
+21824,19233
+21825,40990
+21826,62810
+21827,30094
+21828,79653
+21829,21025
+21830,20355
+21831,79259
+21832,45813
+21833,50919
+21834,23642
+21835,45813
+21836,74795
+21837,20355
+21838,43913
+21839,28600
+21840,39528
+21841,64846
+21842,62021
+21843,17272
+21844,34924
+21845,57981
+21846,35534
+21847,20745
+21848,35158
+21849,47477
+21850,22109
+21851,35634
+21852,23012
+21853,23285
+21854,59615
+21855,54562
+21856,51395
+21857,60598
+21858,42406
+21859,45813
+21860,21272
+21861,31520
+21862,21738
+21863,20309
+21864,26066
+21865,63775
+21866,67631,20517
+21867,21866,62390
+21868,41023
+21869,38213
+21870,79940
+21871,11480
+21872,55668
+21873,45909
+21874,55662
+21875,23440
+21876,22111
+21877,21576
+21878,22317
+21879,74081
+21880,65910
+21881,75976
+21882,21295
+21883,20534
+21884,71969
+21885,63187
+21886,42351
+21887,81004
+21888,52497
+21889,44440
+21890,22209
+21891,63193
+21892,39122
+21893,65931
+21894,65931
+21895,19732
+21896,66114
+21897,30891
+21898,34166
+21899,62168
+21900,23775
+21901,60216
+21902,28615
+21903,55023
+21904,64142
+21905,62178
+21906,78755
+21907,34908
+21908,35236
+21909,65833
+21910,59376,65133
+21911,50875
+21912,78598
+21913,35771
+21914,36839
+21915,59376
+21916,65698
+21917,51562
+21918,34911
+21919,71321
+21920,58162
+21921,52957
+21922,81626
+21923,63157
+21924,74222
+21925,65636
+21926,81770
+21927,32527
+21928,27280
+21929,74036
+21930,59812
+21931,18964
+21932,18868
+21933,63157
+21934,62145
+21935,78684
+21936,65691
+21937,28790
+21938,58168
+21939,44437
+21940,71305
+21941,53867
+21942,32222
+21943,68289
+21944,66431
+21945,32493
+21946,30391
+21947,56009
+21948,19171
+21949,19131
+21950,47273
+21951,48445
+21952,72983
+21953,30689
+21954,28356
+21955,35425
+21956,30296
+21957,42069
+21958,28780,44933
+21959,40752
+21960,73837
+21961,19708
+21962,35096
+21963,35097
+21964,32718
+21965,28591
+21966,72890
+21967,56176
+21968,54636
+21969,23853
+21970,48122
+21971,25121
+21972,50649
+21973,66101
+21974,60216
+21975,20346
+21976,31245
+21977,45813
+21978,39578
+21979,41899
+21980,45813
+21981,70395
+21982,75436
+21983,31697
+21984,53717
+21985,56515
+21986,36041
+21987,21998
+21988,56245
+21989,56514
+21990,69432
+21991,81703
+21992,41130
+21993,63547
+21994,21998
+21995,77585
+21996,60611
+21997,75693
+21998,60612
+21999,67921
+22000,51523
+22001,21996
+22002,21998
+22003,81373
+22004,71949
+22005,73537
+22006,75764
+22007,57927
+22008,35194
+22009,18740
+22010,66377
+22011,59549
+22012,59549
+22013,9399
+22014,65109
+22015,18663
+22016,65914
+22017,65251
+22018,58166
+22019,56454
+22020,59549
+22021,48069
+22022,23972
+22023,41911
+22024,78523
+22025,56887
+22026,29969
+22027,51191
+22028,59549
+22029,19349
+22030,21699
+22031,56454
+22032,31647
+22033,45481
+22034,31646
+22035,39101
+22036,72421,42093
+22037,71352
+22038,63426,52906
+22039,77367
+22040,25121
+22041,37887
+22042,38955
+22043,28379
+22044,65478
+22045,30531
+22046,43225
+22047,53624
+22048,42246
+22049,65581
+22050,31245
+22051,80524
+22052,37406,22053
+22053,60603
+22054,42276
+22055,55720
+22056,31974
+22057,74082
+22058,53454
+22059,57148,25202
+22060,76680
+22061,53717
+22062,37884
+22063,53339
+22064,53354
+22065,57187
+22066,57144
+22067,22062
+22068,72038
+22069,68289
+22070,80150
+22071,68289
+22072,76146
+22073,20817
+22074,35879
+22075,35652
+22076,55760
+22077,33758
+22078,31245
+22079,34701
+22080,56454
+22081,51625
+22082,45826
+22083,18740
+22084,32132
+22085,39778,27519
+22086,69180
+22087,27524
+22088,27527
+22089,27524
+22090,45496
+22091,28473
+22092,32522
+22093,22091
+22094,48232
+22095,33150
+22096,74939
+22097,80497
+22098,20038,21063,61690,55875,20998
+22099,71997
+22100,25935
+22101,81770
+22102,19299
+22103,74490
+22104,30568
+22105,31444
+22106,19547
+22107,19580
+22108,34354
+22109,32975
+22110,78236
+22111,32926
+22112,57932
+22113,23764
+22114,80248
+22115,74011
+22116,81807
+22117,27135
+22118,18969
+22119,21633
+22120,38369
+22121,22120
+22122,19228
+22123,41562
+22124,30935
+22125,44440
+22126,66893
+22127,59333
+22128,21922
+22129,22160
+22130,39130
+22131,72825
+22132,32534
+22133,23258
+22134,74973
+22135,71889
+22136,31498
+22137,77374
+22138,22133
+22139,80505
+22140,80497
+22141,37405
+22142,76005
+22143,38563
+22144,31586
+22145,81436
+22146,80047
+22147,46888
+22148,38708
+22149,29928
+22150,58195
+22151,19544
+22152,30267
+22153,63007
+22154,50630
+22155,62145
+22156,76672
+22157,69977
+22158,41103
+22159,64142
+22160,39528
+22161,57177
+22162,23622
+22163,61649
+22164,18840
+22165,29652
+22166,29652
+22167,42504
+22168,34210
+22169,41600
+22170,71649
+22171,64831
+22172,66101
+22173,18740
+22174,41156
+22175,22174
+22176,25915
+22177,67612
+22178,61355
+22179,40240
+22180,19657
+22181,25169
+22182,25168
+22183,60016
+22184,41054
+22185,55624
+22186,42351
+22187,60011
+22188,31039
+22189,41562
+22190,22215
+22191,30926
+22192,20456
+22193,50363
+22194,37479,75018
+22195,27845
+22196,65925
+22197,58349
+22198,53624
+22199,53621
+22200,75337,71699
+22201,52633
+22202,75554
+22203,38601
+22204,61202
+22205,18988
+22206,75976
+22207,73863
+22208,18984
+22209,21474
+22210,19708
+22211,21135
+22212,21199
+22213,32222
+22214,28238
+22215,30882
+22216,44921
+22217,47500
+22218,53642
+22219,58298
+22220,60019
+22221,69146
+22222,57187
+22223,36482
+22224,54562
+22225,47868
+22226,72981
+22227,47871
+22228,63328
+22229,38793
+22230,68619
+22231,22230
+22232,59468
+22233,49861
+22234,74939
+22235,51318
+22236,64469
+22237,62361
+22238,27730
+22239,62361
+22240,62910
+22241,21703
+22242,79282
+22243,32718
+22244,58589
+22245,22053
+22246,22245
+22247,22245
+22248,51682,34987
+22249,57735
+22250,37855
+22251,39495
+22252,71524
+22253,73081
+22254,61190
+22255,68964
+22256,1152
+22257,46384
+22258,68793
+22259,47924
+22260,40012
+22261,79072
+22262,53180
+22263,32806
+22264,81781
+22265,71439
+22266,57991
+22267,43809
+22268,60216
+22269,38807
+22270,25302
+22271,31740
+22272,60177
+22273,22268
+22274,52920
+22275,73323
+22276,22268
+22277,48239
+22278,74973
+22279,26506
+22280,18941
+22281,71310
+22282,77287
+22283,31039
+22284,64425
+22285,20978
+22286,38885
+22287,24236
+22288,24237
+22289,27935
+22290,62902
+22291,79469
+22292,61789
+22293,61792
+22294,60216
+22295,69439
+22296,40815
+22297,58004
+22298,68971
+22299,77636
+22300,45570
+22301,43880
+22302,81789
+22303,70225
+22304,19926
+22305,35534
+22306,59549
+22307,47234
+22308,40195
+22309,52469
+22310,79323
+22311,26858
+22312,29129
+22313,33885
+22314,22308
+22315,78544
+22316,61054,22314
+22317,22314,52504
+22318,77492
+22319,31245
+22320,38218
+22321,46030
+22322,64949
+22323,53660
+22324,60216
+22325,37905
+22326,39122
+22327,19909
+22328,48030
+22329,48445
+22330,60236
+22331,65871
+22332,64403
+22333,79276
+22334,37908
+22335,75613
+22336,70395
+22337,42145
+22338,56492
+22339,56451
+22340,47924
+22341,47924
+22342,61246
+22343,34924
+22344,61317
+22345,38601
+22346,64542
+22347,64545
+22348,58162
+22349,25858
+22350,42481
+22351,42481
+22352,29263
+22353,38885
+22354,68979
+22355,23790
+22356,65816
+22357,60541
+22358,26318
+22359,71173
+22360,38216
+22361,38217
+22362,44474
+22363,19847
+22364,25154
+22365,75957
+22366,37905
+22367,57927
+22368,63775
+22369,74011
+22370,53870
+22371,79376
+22372,60630
+22373,80540
+22374,45688
+22375,70842
+22376,45096
+22377,51395
+22378,21770
+22379,69102
+22380,44157
+22381,55263
+22382,7658
+22383,22116
+22384,74067
+22385,21315
+22386,73650
+22387,64846
+22388,68065
+22389,73007
+22390,55023
+22391,56979
+22392,58127
+22393,22412
+22394,23775
+22395,31259
+22396,56348
+22397,62794
+22398,26298
+22399,48030
+22400,30391
+22401,21670
+22402,70629
+22403,22402
+22404,39485
+22405,19528
+22406,52859
+22407,10154
+22408,37179
+22409,41743
+22410,59488
+22411,69887
+22412,65682
+22413,75028
+22414,53354
+22415,21898
+22416,30891
+22417,28530
+22418,69173
+22419,21612
+22420,74903
+22421,43967
+22422,50008
+22423,31469
+22424,42092
+22425,18789
+22426,81475
+22427,78758
+22428,27687
+22429,48038
+22430,78786
+22431,77978
+22432,35433
+22433,45009
+22434,21361
+22435,23576
+22436,27239
+22437,26051
+22438,37169
+22439,45035
+22440,80576
+22441,70568
+22442,67053
+22443,70569
+22444,20698
+22445,61161
+22446,21703
+22447,52420
+22448,79282
+22449,60453
+22450,63348
+22451,72791
+22452,51468
+22453,53660
+22454,28379
+22455,69484
+22456,22458
+22457,44089
+22458,33986
+22459,53848
+22460,20328
+22461,56446
+22462,32144
+22463,36043
+22464,45813
+22465,65763
+22466,50969
+22467,51068
+22468,58158
+22469,66418
+22470,53717
+22471,31058
+22472,44439
+22473,20698
+22474,20973
+22475,36872
+22476,44439
+22477,56771
+22478,59549
+22479,20977
+22480,24897
+22481,21959
+22482,52787
+22483,79282
+22484,59549
+22485,54029
+22486,33184
+22487,50231
+22488,41165
+22489,26884
+22490,22489
+22491,39517
+22492,68869
+22493,57594
+22494,51572
+22495,43240
+22496,58287
+22497,31370
+22498,74826
+22499,30253
+22500,12335
+22501,52904
+22502,45430
+22503,39746
+22504,57585
+22505,82056
+22506,78598
+22507,28951
+22508,40752
+22509,44418
+22510,41917
+22511,45813
+22512,42461
+22513,60216
+22514,80761
+22515,60216
+22516,71996
+22517,49598
+22518,43935
+22519,57640
+22520,62390
+22521,69818
+22522,56871
+22523,56871
+22524,49598
+22525,49598
+22526,27562
+22527,69248
+22528,27506
+22529,79901
+22530,39312
+22531,79901
+22532,52904
+22533,18868
+22534,81462
+22535,72726
+22536,76662
+22537,53167
+22538,38475
+22539,20977
+22540,41055
+22541,29917
+22542,62142
+22543,74488
+22544,25115
+22545,62144
+22546,81578
+22547,25617
+22548,62534
+22549,28548
+22550,19144
+22551,18929
+22552,18928
+22553,38914
+22554,38699
+22555,41053
+22556,53516
+22557,34675
+22558,62054
+22559,66953
+22560,76989
+22561,19051
+22562,22901
+22563,66436
+22564,68692
+22565,50910
+22566,19144
+22567,24879
+22568,74488
+22569,42097
+22570,31444
+22571,41282
+22572,68176
+22573,41249
+22574,38835
+22575,40147
+22576,54705
+22577,40747
+22578,25022
+22579,25018
+22580,18964
+22581,48220
+22582,48156
+22583,56836
+22584,68431
+22585,79572
+22586,22583
+22587,62973
+22588,22583
+22589,62747
+22590,66260
+22591,36527
+22592,24874
+22593,62434
+22594,24718
+22595,50652,73670
+22596,64948
+22597,51360
+22598,40230
+22599,30391
+22600,22684
+22601,46068
+22602,75860
+22603,21568
+22604,39101
+22605,19492
+22606,45051
+22607,57980
+22608,68416
+22609,48107
+22610,68692
+22611,53676
+22612,37998
+22613,39152
+22614,31746
+22615,49683
+22616,72193
+22617,72776
+22618,73031
+22619,69408
+22620,39638
+22621,62533
+22622,74821
+22623,74811
+22624,45730
+22625,74867
+22626,19000
+22627,36793
+22628,31109
+22629,31124
+22630,25113
+22631,65579
+22632,32455
+22633,81874
+22634,33515
+22635,67822
+22636,35557
+22637,66613
+22638,22634
+22639,59549
+22640,54253
+22641,40021
+22642,39294
+22643,42539
+22644,58118
+22645,72003
+22646,77216
+22647,28774
+22648,60786
+22649,24249
+22650,53716
+22651,52469
+22652,79691
+22653,58162
+22654,19654
+22655,22640
+22656,64142
+22657,24778
+22658,28702
+22659,34085
+22660,22665
+22661,38569
+22662,60216
+22663,52280
+22664,47665
+22665,60216
+22666,20670
+22667,80524
+22668,54562
+22669,37623
+22670,39528
+22671,55815
+22672,45107
+22673,23005
+22674,50297
+22675,32530
+22676,32520
+22677,72435
+22678,64446
+22679,48494
+22680,77581
+22681,61335
+22682,59970
+22683,47908
+22684,31616
+22685,31618
+22686,31616
+22687,78756
+22688,22699
+22689,46353
+22690,50005
+22691,63753
+22692,20272
+22693,55756
+22694,75063
+22695,77915
+22696,26409
+22697,81462
+22698,53467
+22699,27781
+22700,27408
+22701,21474
+22702,22128
+22703,52497
+22704,64448
+22705,60992
+22706,6278
+22707,16726
+22708,50889
+22709,65172
+22710,19655
+22711,32522
+22712,64720
+22713,57573
+22714,62145
+22715,49483
+22716,34434
+22717,34431
+22718,58916
+22719,28952
+22720,75775
+22721,34924
+22722,69012
+22723,27876
+22724,45107
+22725,12380
+22726,39049
+22727,34808
+22728,41005
+22729,62294
+22730,53959
+22731,70629
+22732,20070
+22733,81914
+22734,81647,69860
+22735,32792
+22736,31858
+22737,24373
+22738,50803
+22739,59497
+22740,27276
+22741,28564
+22742,29194
+22743,38209
+22744,65788
+22745,38188
+22746,68061
+22747,73838
+22748,63048
+22749,44696
+22750,18987
+22751,38209
+22752,22744
+22753,65201
+22754,80753
+22755,26247
+22756,35130
+22757,19143
+22758,48126
+22759,48126
+22760,72228
+22761,77641
+22762,44609
+22763,12756
+22764,49962
+22765,73838
+22766,73838
+22767,46581
+22768,33638
+22769,36932
+22770,27239
+22771,56941
+22772,60216
+22773,44821
+22774,23855
+22775,26416
+22776,80720
+22777,81349
+22778,61078
+22779,21476
+22780,60216
+22781,48697
+22782,51467
+22783,33787
+22784,73837
+22785,61415
+22786,42097
+22787,61078
+22788,19666
+22789,33788
+22790,72119
+22791,49298
+22792,74990
+22793,81462
+22794,49263
+22795,44963
+22796,69458
+22797,23589
+22798,52811
+22799,41055
+22800,27741
+22801,61404
+22802,39847
+22803,43828
+22804,22032
+22805,52957
+22806,79097
+22807,71595
+22808,61621
+22809,61621
+22810,44049
+22811,22164
+22812,53454
+22813,37405
+22814,66065
+22815,65641
+22816,41245
+22817,22821
+22818,55734
+22819,72733
+22820,30939
+22821,33797
+22822,33797
+22823,33797
+22824,62146
+22825,70675
+22826,37998
+22827,37997
+22828,70526
+22829,55503
+22830,47402
+22831,54757
+22832,60602
+22833,36884
+22834,77377
+22835,43997
+22836,53701
+22837,61415
+22838,51354
+22839,25202
+22840,81161
+22841,67565
+22842,71280
+22843,72253
+22844,40619
+22845,70629
+22846,35926
+22847,25574
+22848,58906
+22849,72712
+22850,22032,61395
+22851,59850
+22852,66953
+22853,71311
+22854,54774
+22855,63259
+22856,22865
+22857,22856
+22858,47786
+22859,54378
+22860,69818
+22861,56941
+22862,20690
+22863,81482
+22864,64589
+22865,57689
+22866,72111
+22867,57640
+22868,43801
+22869,70320
+22870,76905
+22871,43801
+22872,62021
+22873,81176
+22874,19319
+22875,45813
+22876,74488
+22877,81482
+22878,43907
+22879,47415
+22880,39676
+22881,64586
+22882,79259
+22883,11177
+22884,14521
+22885,63206
+22886,37179
+22887,45813
+22888,27592
+22889,64293
+22890,38385
+22891,59452
+22892,59801
+22893,46435
+22894,32456
+22895,72342
+22896,55761
+22897,64745
+22898,23854
+22899,73762,52097
+22900,66154
+22901,73762
+22902,73776
+22903,19421
+22904,73762
+22905,60771
+22906,65869
+22907,36451
+22908,45034
+22909,25574
+22910,42395
+22911,50048
+22912,29526
+22913,57280
+22914,67786
+22915,73270
+22916,33858
+22917,26368
+22918,53283
+22919,64812
+22920,76229
+22921,61541
+22922,31279
+22923,31279
+22924,27743
+22925,31175
+22926,62432
+22927,55768
+22928,61355
+22929,79820
+22930,79973
+22931,31477
+22932,48162
+22933,19580
+22934,23945
+22935,61705
+22936,38725
+22937,56832
+22938,44816
+22939,77081
+22940,62072
+22941,56832
+22942,19421
+22943,38648
+22944,65682
+22945,73752
+22946,66018
+22947,41870
+22948,70914
+22949,66507
+22950,21622
+22951,40625
+22952,34646
+22953,70914
+22954,39813
+22955,18979
+22956,32817
+22957,28656
+22958,29911
+22959,30684
+22960,36317
+22961,38601
+22962,38603
+22963,39149
+22964,44049
+22965,80253
+22966,46255
+22967,50878
+22968,57190
+22969,51836
+22970,35399
+22971,53290
+22972,35506
+22973,66763
+22974,22977
+22975,23313
+22976,72984
+22977,81411
+22978,65201
+22979,40065
+22980,55030
+22981,40052
+22982,40053
+22983,42102
+22984,48030
+22985,41870
+22986,39154
+22987,39149
+22988,63061
+22989,48364
+22990,70033
+22991,67001
+22992,40411
+22993,63208
+22994,23182
+22995,40534
+22996,20823
+22997,35294
+22998,53593
+22999,23869
+23000,72271
+23001,36049
+23002,81750
+23003,25598
+23004,58589
+23005,65875
+23006,49079
+23007,39925
+23008,28739
+23009,22112
+23010,20690
+23011,25770
+23012,67459
+23013,23285
+23014,62767
+23015,66507,23181
+23016,74488
+23017,45557
+23018,64628
+23019,32384
+23020,57418
+23021,47655
+23022,24391
+23023,28654
+23024,30186
+23025,38600
+23026,36499
+23027,51473,55760
+23028,52605
+23029,27975
+23030,48240
+23031,47592
+23032,53176,58131
+23033,71269
+23034,61651
+23035,61651
+23036,39777
+23037,35095
+23038,34357
+23039,70033
+23040,35557
+23041,31862
+23042,64435
+23043,61063
+23044,67957
+23045,35557
+23046,35557
+23047,66761
+23048,81349
+23049,75867
+23050,80614
+23051,44817
+23052,79749
+23053,28438
+23054,70033
+23055,69860
+23056,64225
+23057,60661
+23058,55391
+23059,44630
+23060,77185
+23061,23062
+23062,68853
+23063,19069
+23064,76347
+23065,71595
+23066,61622
+23067,27295
+23068,47438
+23069,25256
+23070,49648
+23071,79471
+23072,25057
+23073,56000
+23074,61190
+23075,63850
+23076,19737
+23077,69873
+23078,48055
+23079,56362
+23080,56361
+23081,51124
+23082,25046
+23083,61732
+23084,69408
+23085,45813
+23086,25729
+23087,70428
+23088,70426
+23089,54082
+23090,23202
+23091,37875
+23092,23202
+23093,23202
+23094,74250
+23095,32580
+23096,56832
+23097,33184
+23098,67574
+23099,63558
+23100,23748
+23101,63256
+23102,41657
+23103,28323
+23104,43893
+23105,45118
+23106,23103
+23107,26102
+23108,43892
+23109,23193
+23110,25770
+23111,39370
+23112,21480
+23113,33788
+23114,70854
+23115,58579
+23116,72153
+23117,74659
+23118,33178
+23119,43756
+23120,21668
+23121,74131
+23122,40473
+23123,70557
+23124,31618
+23125,19231
+23126,60847
+23127,81873
+23128,54485
+23129,23130
+23130,53624
+23131,22054
+23132,9930
+23133,59811
+23134,26602
+23135,72680
+23136,9280
+23137,21525
+23138,56802
+23139,62145
+23140,76779
+23141,64757
+23142,49945
+23143,38381
+23144,36035
+23145,21771
+23146,69118
+23147,67970
+23148,27688
+23149,54432
+23150,41014
+23151,72248
+23152,40150
+23153,50359
+23154,19872
+23155,49124
+23156,40316
+23157,81807
+23158,25886
+23159,41469
+23160,32926
+23161,58579
+23162,31618
+23163,17469,2492
+23164,79469
+23165,33614
+23166,78096
+23167,26827
+23168,49997
+23169,55758
+23170,66887
+23171,79234
+23172,26668
+23173,23190
+23174,50438
+23175,81159
+23176,27595
+23177,73184
+23178,45813
+23179,60870
+23180,23182
+23181,53658
+23182,57418
+23183,57408
+23184,48957
+23185,31974
+23186,37310
+23187,64196
+23188,78899
+23189,50638
+23190,66953
+23191,31618
+23192,45021
+23193,37712
+23194,38634
+23195,77308
+23196,59713
+23197,40752
+23198,28248
+23199,62767
+23200,44768,39674
+23201,57187
+23202,23089
+23203,65748
+23204,25120
+23205,56165
+23206,42145
+23207,54060
+23208,54061
+23209,61161
+23210,79282
+23211,79848
+23212,73838
+23213,40461
+23214,59305
+23215,25454
+23216,48201
+23217,25457
+23218,37430
+23219,31058
+23220,23240
+23221,54418
+23222,51894
+23223,74488
+23224,57187
+23225,46170
+23226,54082
+23227,18969
+23228,57160
+23229,48536
+23230,22850
+23231,22786,23240
+23232,22802
+23233,23368,23240
+23234,27276
+23235,77312
+23236,29805
+23237,23247
+23238,30009
+23239,77277
+23240,72435
+23241,23240
+23242,50742
+23243,52957
+23244,68352
+23245,68677
+23246,73805
+23247,75566
+23248,54953
+23249,72839
+23250,51467
+23251,74487
+23252,40702
+23253,78819
+23254,35944
+23255,59378
+23256,30697
+23257,21950
+23258,63063
+23259,36872
+23260,60769
+23261,69754
+23262,70719
+23263,54438
+23264,39109
+23265,41748
+23266,51216
+23267,41877
+23268,72409
+23269,65956
+23270,45813
+23271,45812
+23272,55014
+23273,55420
+23274,45813
+23275,21703
+23276,53848
+23277,67277
+23278,79282
+23279,29314
+23280,14501
+23281,55952
+23282,27215
+23283,47455
+23284,56163
+23285,79469
+23286,31618
+23287,45679
+23288,59307
+23289,21950
+23290,79282
+23291,43544,23307
+23292,31618
+23293,68355
+23294,31616
+23295,39676
+23296,74872
+23297,28221
+23298,46077
+23299,28864
+23300,37079
+23301,39049
+23302,22786,23307
+23303,32530
+23304,29805
+23305,30009
+23306,32520
+23307,72435
+23308,50742
+23309,61379
+23310,22032
+23311,68352
+23312,68677
+23313,69941
+23314,75566
+23315,77287
+23316,52773
+23317,52523
+23318,51100
+23319,72765
+23320,61075
+23321,55758
+23322,60032
+23323,59309
+23324,70428
+23325,70426
+23326,29607
+23327,29724
+23328,36619
+23329,25536,23321
+23330,44593,23321
+23331,25729,23321
+23332,63103
+23333,46760
+23334,29607
+23335,39767
+23336,22514
+23337,22510
+23338,55768
+23339,23324
+23340,36166
+23341,55768
+23342,81482
+23343,56166
+23344,57585
+23345,79173
+23346,80583
+23347,46191
+23348,20690
+23349,24915
+23350,59169
+23351,39513
+23352,34166
+23353,34357
+23354,73018
+23355,69408
+23356,66758
+23357,31861
+23358,69395
+23359,49113,62981
+23360,33283
+23361,77108
+23362,54930
+23363,34291
+23364,41279
+23365,73815
+23366,54562
+23367,30099
+23368,29968
+23369,78236
+23370,61159
+23371,52811,21922
+23372,48240
+23373,30391
+23374,30391
+23375,50438
+23376,38670
+23377,72248
+23378,51658
+23379,79469
+23380,80217
+23381,72895
+23382,80760
+23383,51535
+23384,23383
+23385,76877
+23386,76877
+23387,77180,23383
+23388,80257
+23389,74814
+23390,60216
+23391,46781
+23392,26298
+23393,35838
+23394,27276
+23395,47442
+23396,38883
+23397,66769
+23398,66953
+23399,29698
+23400,40403
+23401,79469
+23402,43285
+23403,53624
+23404,53621
+23405,74018
+23406,74018
+23407,39049
+23408,39049
+23409,22128
+23410,72716
+23411,66859
+23412,72437
+23413,66859
+23414,60076
+23415,19584
+23416,21597
+23417,50438
+23418,73761
+23419,31200
+23420,22850
+23421,25572
+23422,39928
+23423,64700,37904
+23424,21758
+23425,75566
+23426,30391
+23427,21876
+23428,37405
+23429,72818
+23430,79790
+23431,22122
+23432,73896
+23433,63334
+23434,22387
+23435,23240
+23436,23238
+23437,43458,23240
+23438,45680,23240
+23439,66889
+23440,54404
+23441,81065
+23442,26007
+23443,33158
+23444,33754
+23445,54439
+23446,62258
+23447,40411
+23448,40590
+23449,21597
+23450,51466
+23451,31645
+23452,61203
+23453,44658
+23454,22675
+23455,77277
+23456,51466
+23457,64720
+23458,80185
+23459,46958
+23460,74835
+23461,68184
+23462,48162
+23463,54562
+23464,30300
+23465,57380
+23466,80600
+23467,33184
+23468,30954
+23469,30954
+23470,46599
+23471,25113
+23472,45812
+23473,80466
+23474,19596
+23475,68077
+23476,68078
+23477,81176
+23478,81227
+23479,80540
+23480,57308
+23481,77641
+23482,80466
+23483,80460
+23484,49944
+23485,50215
+23486,53203
+23487,69860
+23488,67614
+23489,50572
+23490,44614
+23491,31040
+23492,43107
+23493,22785
+23494,38266
+23495,20441
+23496,44013
+23497,74067
+23498,46782
+23499,67791
+23500,81125
+23501,61508
+23502,81129
+23503,67791
+23504,73612
+23505,77180
+23506,27405
+23507,79052
+23508,50296
+23509,25928
+23510,18969
+23511,29928
+23512,79749
+23513,77185
+23514,49222
+23515,56290
+23516,79338
+23517,54953
+23518,34199
+23519,61209
+23520,57573
+23521,73739
+23522,62514
+23523,46760
+23524,46958
+23525,76735
+23526,55471
+23527,55471
+23528,57035
+23529,45346
+23530,71398
+23531,77004
+23532,49134
+23533,33353
+23534,81062
+23535,70110
+23536,73830,60739
+23537,51319
+23538,37448
+23539,70111
+23540,22746
+23541,68869
+23542,50919
+23543,50918
+23544,70033
+23545,18984,26470
+23546,33392
+23547,35322
+23548,72557
+23549,77118
+23550,77641
+23551,70033
+23552,68871
+23553,22684
+23554,61078
+23555,35294
+23556,70686
+23557,72791
+23558,48803
+23559,27622
+23560,39676
+23561,18891
+23562,34771
+23563,29671
+23564,74778
+23565,33242,23559
+23566,19634
+23567,82070
+23568,82070
+23569,81752
+23570,75196
+23571,53183
+23572,68489
+23573,70033
+23574,46285
+23575,81176
+23576,44794
+23577,60216
+23578,44792
+23579,39089
+23580,51216
+23581,81681
+23582,48870
+23583,36951
+23584,12340
+23585,80748
+23586,48870
+23587,54047
+23588,65689
+23589,74488
+23590,53022
+23591,35389
+23592,25727
+23593,65662
+23594,80047,74488
+23595,67957
+23596,41899
+23597,45260
+23598,22116
+23599,81607
+23600,56110
+23601,52830
+23602,58282
+23603,71686
+23604,58675
+23605,73803
+23606,67570
+23607,59542
+23608,82066
+23609,81626
+23610,47655
+23611,19200
+23612,67758
+23613,32150
+23614,39928
+23615,81544
+23616,56896
+23617,75754
+23618,43166
+23619,33782
+23620,32691
+23621,28539
+23622,21218
+23623,38690
+23624,70033
+23625,19492
+23626,70781
+23627,19421
+23628,23621
+23629,23579
+23630,21568
+23631,66862
+23632,41899
+23633,41902
+23634,80063
+23635,80348
+23636,43168
+23637,51475
+23638,34203
+23639,73598
+23640,74537
+23641,41339
+23642,61487
+23643,23666
+23644,56163
+23645,38035
+23646,25035
+23647,31343
+23648,21475
+23649,49079
+23650,51535
+23651,60836
+23652,45730
+23653,29917
+23654,42194
+23655,53454
+23656,21930
+23657,60216
+23658,52352
+23659,79469
+23660,74488
+23661,66124
+23662,66786
+23663,23653
+23664,66953
+23665,74117
+23666,41917
+23667,74234
+23668,70104
+23669,53022
+23670,21112
+23671,78455
+23672,23653
+23673,72518
+23674,41917
+23675,45813
+23676,46767
+23677,61046
+23678,71314
+23679,47127
+23680,55014
+23681,55014
+23682,29742
+23683,31960
+23684,40863
+23685,64015
+23686,58088
+23687,73276
+23688,31047
+23689,77641
+23690,81482
+23691,39676
+23692,37181
+23693,28028
+23694,53628
+23695,35557
+23696,35557
+23697,35557
+23698,26103
+23699,26520
+23700,40998
+23701,43798
+23702,49194
+23703,33512
+23704,33512
+23705,66756
+23706,73207
+23707,75235
+23708,48187
+23709,75801
+23710,76946
+23711,60534
+23712,73044
+23713,23765
+23714,61902
+23715,45813
+23716,24850
+23717,76915
+23718,81482
+23719,27894
+23720,70276
+23721,44816
+23722,81647
+23723,56460
+23724,65108
+23725,39375
+23726,33318
+23727,59542
+23728,71686
+23729,37478
+23730,25872
+23731,23164
+23732,25434
+23733,27114
+23734,36499
+23735,75465
+23736,43364
+23737,44913
+23738,36514
+23739,55552
+23740,80460,20758
+23741,66977
+23742,79258
+23743,27997
+23744,24726
+23745,44232
+23746,27455
+23747,74192
+23748,48318
+23749,23742
+23750,35414
+23751,59602
+23752,73237
+23753,27506
+23754,61767
+23755,23751
+23756,76514
+23757,23751
+23758,71508
+23759,47955
+23760,45096
+23761,59308
+23762,61655
+23763,61646
+23764,28539
+23765,40752
+23766,37992
+23767,33793
+23768,22853
+23769,50181,11480
+23770,67589
+23771,73037
+23772,19202
+23773,19228
+23774,19228
+23775,63602
+23776,38801
+23777,63586
+23778,30621
+23779,51327
+23780,72959
+23781,70427
+23782,48474
+23783,58383
+23784,23021
+23785,65509,38887
+23786,38887
+23787,57678
+23788,41305
+23789,66953
+23790,31638
+23791,74500
+23792,65767
+23793,23258
+23794,35635
+23795,57897
+23796,19108,70221
+23797,33455
+23798,76672
+23799,71686
+23800,24339
+23801,59451
+23802,67120
+23803,51969
+23804,19106
+23805,74462
+23806,69681
+23807,40701
+23808,41343
+23809,41348
+23810,41972
+23811,38256
+23812,63424
+23813,26072
+23814,74772
+23815,63953
+23816,55768
+23817,74132
+23818,66619
+23819,55736
+23820,68692
+23821,75860
+23822,77185
+23823,22098
+23824,45813
+23825,20286
+23826,49376
+23827,32310
+23828,77985
+23829,22128
+23830,43313
+23831,51701
+23832,19690
+23833,46708
+23834,33186
+23835,24880
+23836,63722
+23837,50701
+23838,80712
+23839,40752
+23840,26320
+23841,48337
+23842,78584
+23843,19349
+23844,72733
+23845,33797
+23846,35822
+23847,49312
+23848,22901
+23849,39423
+23850,58472
+23851,45097
+23852,52211
+23853,65581
+23854,52097
+23855,18940
+23856,20385
+23857,26223
+23858,52773
+23859,49842
+23860,68551
+23861,39049
+23862,46059
+23863,73923
+23864,28090
+23865,42380
+23866,55394
+23867,73985
+23868,68691
+23869,68691
+23870,29587
+23871,27970
+23872,50545
+23873,63797
+23874,80619
+23875,74089
+23876,80174
+23877,72839
+23878,65481
+23879,58131
+23880,33455
+23881,68808
+23882,40600
+23883,76981
+23884,28538
+23885,55494
+23886,46988
+23887,51640
+23888,62513
+23889,31729
+23890,69028
+23891,43744
+23892,23891
+23893,72289
+23894,23902
+23895,43724
+23896,65133
+23897,59645
+23898,60074
+23899,43723
+23900,23898
+23901,67760
+23902,52189
+23903,49802
+23904,49803
+23905,47179
+23906,78160
+23907,43724
+23908,23888
+23909,22384
+23910,22384
+23911,44032
+23912,44013
+23913,37871
+23914,47814
+23915,45067
+23916,58166
+23917,24234
+23918,29677
+23919,81482
+23920,21609
+23921,23920
+23922,67675
+23923,23922
+23924,51881
+23925,54642,55688
+23926,31058
+23927,27488
+23928,44614
+23929,44439
+23930,60192,24695
+23931,44439
+23932,43247,48219
+23933,65075
+23934,60216
+23935,27276
+23936,58041
+23937,54655
+23938,45813
+23939,22406
+23940,73917
+23941,54082
+23942,51451
+23943,50823
+23944,33237
+23945,41729
+23946,37179
+23947,15038
+23948,23643
+23949,54562
+23950,54082
+23951,26072
+23952,60320
+23953,37878
+23954,26092
+23955,22122
+23956,60216
+23957,67275
+23958,41607
+23959,44346
+23960,77294
+23961,48232
+23962,69439
+23963,25302
+23964,43247
+23965,43335
+23966,42078
+23967,51068
+23968,63496,27640
+23969,49662,47109
+23970,48545
+23971,56045,21034
+23972,24799
+23973,39027
+23974,28164
+23975,34117
+23976,37853
+23977,48875
+23978,59338
+23979,32169,48852
+23980,65119
+23981,25681
+23982,71439
+23983,77726
+23984,20038
+23985,18910
+23986,78020
+23987,50717
+23988,37183
+23989,21482
+23990,51068
+23991,61145
+23992,77615
+23993,66695
+23994,63251
+23995,52211
+23996,74402
+23997,43723
+23998,43723
+23999,47718
+24000,69860
+24001,64817
+24002,42076
+24003,33612
+24004,45009
+24005,37166
+24006,42388
+24007,41004,51642
+24008,42351
+24009,40680
+24010,31372
+24011,22162
+24012,52904
+24013,43820
+24014,30300
+24015,37166
+24016,81101
+24017,34950
+24018,71409
+24019,48555
+24020,57817
+24021,59331
+24022,45481
+24023,60744
+24024,56046
+24025,58398
+24026,45017
+24027,68230
+24028,51677
+24029,47437
+24030,19132
+24031,68230
+24032,77308
+24033,51188
+24034,35480
+24035,68290
+24036,41000
+24037,27479
+24038,24037
+24039,20819
+24040,70568
+24041,24040
+24042,67675
+24043,64178
+24044,26548
+24045,30132
+24046,80761
+24047,24046
+24048,28417
+24049,29819
+24050,63775
+24051,64403
+24052,64435
+24053,68692
+24054,79276
+24055,80753
+24056,33591
+24057,72983
+24058,22122
+24059,57556
+24060,62810
+24061,25924
+24062,21272
+24063,48809
+24064,31645
+24065,23285
+24066,61246
+24067,30257
+24068,64438
+24069,72027
+24070,25708
+24071,41906
+24072,25713
+24073,68289
+24074,36247
+24075,39272
+24076,61510
+24077,45863
+24078,33790
+24079,38835
+24080,35670
+24081,26106
+24082,79467
+24083,26576
+24084,39587
+24085,47671
+24086,42090
+24087,67551
+24088,68288
+24089,45951
+24090,47673
+24091,70504
+24092,72097
+24093,35667
+24094,74130
+24095,76839
+24096,72482
+24097,53238
+24098,73025
+24099,60032
+24100,68038
+24101,27276
+24102,20745
+24103,42475
+24104,55430
+24105,52097
+24106,23880
+24107,23471
+24108,28237
+24109,81549
+24110,73207
+24111,59350
+24112,48685
+24113,81803
+24114,49222
+24115,60953
+24116,74823
+24117,78583
+24118,50098
+24119,31690
+24120,34734
+24121,74917
+24122,24961
+24123,23946
+24124,24961
+24125,35181
+24126,73200
+24127,67675
+24128,25457
+24129,80257
+24130,49592
+24131,63775
+24132,80639
+24133,24128
+24134,36713
+24135,41743
+24136,51559
+24137,35105
+24138,18721
+24139,47475
+24140,20757
+24141,51677
+24142,63186
+24143,72984
+24144,45009
+24145,50875
+24146,59036
+24147,25956
+24148,20058
+24149,24145
+24150,24141
+24151,54753
+24152,24141
+24153,28358
+24154,65095
+24155,66322
+24156,34229
+24157,81626
+24158,61982
+24159,25707
+24160,70229
+24161,46827
+24162,68330
+24163,22786
+24164,34924
+24165,61395
+24166,66953
+24167,75063
+24168,50439
+24169,50439
+24170,66482
+24171,64757
+24172,80438
+24173,43554
+24174,40752
+24175,50438
+24176,51894
+24177,27373
+24178,49194
+24179,43313
+24180,76664
+24181,53454
+24182,37405
+24183,72840
+24184,55021
+24185,20819
+24186,76664
+24187,69238
+24188,31616
+24189,31618
+24190,75955
+24191,61313
+24192,63187
+24193,30188
+24194,31058
+24195,35188
+24196,31109
+24197,53473
+24198,62152
+24199,72892
+24200,46090
+24201,19342
+24202,51301
+24203,45239
+24204,63424
+24205,27514
+24206,81656
+24207,22159
+24208,69400
+24209,63424
+24210,37884
+24211,79608
+24212,74749
+24213,46826
+24214,51340
+24215,70183
+24216,58010
+24217,64160
+24218,35773
+24219,76142
+24220,29526
+24221,21881
+24222,27937
+24223,53661
+24224,28801
+24225,58157
+24226,29026
+24227,29773
+24228,61830
+24229,35833
+24230,58161
+24231,38430
+24232,77369
+24233,42463
+24234,65579
+24235,24251
+24236,81781
+24237,46163
+24238,45454
+24239,63426
+24240,19656
+24241,53658
+24242,34293
+24243,44437
+24244,68288
+24245,76633
+24246,80106
+24247,34293
+24248,62456
+24249,68290
+24250,51253
+24251,51277
+24252,18869
+24253,50085
+24254,52324
+24255,41773
+24256,53339
+24257,30902
+24258,51277
+24259,53716
+24260,53716
+24261,47402
+24262,51277,73012
+24263,37913
+24264,51807
+24265,60611
+24266,60612
+24267,50424
+24268,34989
+24269,24284
+24270,77635
+24271,67513
+24272,43858
+24273,24272
+24274,24272
+24275,24272
+24276,24272
+24277,29382
+24278,55500
+24279,65581
+24280,75001
+24281,75031
+24282,30391
+24283,37913
+24284,54963
+24285,75954
+24286,1594
+24287,54218
+24288,42515
+24289,80514
+24290,20743
+24291,25088
+24292,60953
+24293,19867
+24294,40884
+24295,19549
+24296,58004
+24297,57187
+24298,61885
+24299,38196
+24300,81482
+24301,74844
+24302,77641
+24303,71408
+24304,68014
+24305,27224
+24306,79432
+24307,53628
+24308,70033
+24309,53071
+24310,29759
+24311,79640
+24312,41877
+24313,62149
+24314,20749
+24315,45813
+24316,74067
+24317,56460
+24318,39676
+24319,81091
+24320,72426
+24321,39294
+24322,39324
+24323,39563
+24324,34924
+24325,42539
+24326,48318
+24327,58287
+24328,45813
+24329,40778
+24330,24306
+24331,24306
+24332,27368
+24333,69943
+24334,20289
+24335,23285
+24336,26871
+24337,27975
+24338,19108
+24339,20744
+24340,69681
+24341,68352
+24342,19342
+24343,46957
+24344,27276
+24345,72196
+24346,5693
+24347,23762
+24348,60216
+24349,28530
+24350,65531
+24351,59423
+24352,28358
+24353,61239
+24354,34279,20857
+24355,58958
+24356,48251
+24357,77571
+24358,20819
+24359,33897
+24360,26884
+24361,44241
+24362,59378
+24363,62702
+24364,24704
+24365,23763
+24366,77045
+24367,64831
+24368,48220
+24369,48220
+24370,48219
+24371,79608
+24372,35557
+24373,64293
+24374,56995
+24375,35879
+24376,32187
+24377,69148
+24378,69439
+24379,62852
+24380,55580
+24381,28848
+24382,60960
+24383,62145
+24384,54082
+24385,25518
+24386,71719
+24387,60786
+24388,66132
+24389,78703
+24390,59306
+24391,72701
+24392,33548
+24393,41417
+24394,39820
+24395,28593
+24396,75419
+24397,35156
+24398,27187
+24399,19686
+24400,81722
+24401,74131
+24402,74112
+24403,37042
+24404,53593
+24405,34564
+24406,60216
+24407,18365
+24408,60715
+24409,35557
+24410,34559
+24411,64831
+24412,60870
+24413,19959
+24414,75436
+24415,20152
+24416,38369
+24417,79492
+24418,27840
+24419,29102
+24420,35908
+24421,38980
+24422,37805
+24423,71408
+24424,58040
+24425,70033
+24426,31058
+24427,32888
+24428,45869
+24429,35436
+24430,75439
+24431,45951
+24432,81161
+24433,51665
+24434,79608
+24435,56701
+24436,29102
+24437,77641
+24438,37805
+24439,30073
+24440,47047
+24441,30021
+24442,54978
+24443,69238
+24444,52905
+24445,29928
+24446,19062
+24447,31881
+24448,44603
+24449,33271
+24450,37448
+24451,28886
+24452,56674
+24453,31291
+24454,79608
+24455,50918
+24456,19918
+24457,55815
+24458,26557
+24459,30514
+24460,30094
+24461,44156
+24462,73271
+24463,72323
+24464,55575
+24465,73271
+24466,72153
+24467,60534
+24468,21814
+24469,22878
+24470,74343
+24471,30718
+24472,46431
+24473,71786
+24474,38807
+24475,22669
+24476,51649
+24477,24302
+24478,56176
+24479,65213
+24480,67408
+24481,68555
+24482,79608
+24483,26257
+24484,21777
+24485,56655
+24486,27667
+24487,48187
+24488,81091
+24489,26281
+24490,30588
+24491,32345
+24492,32738
+24493,33419
+24494,33420
+24495,33640
+24496,20745
+24497,36694
+24498,68818
+24499,65974
+24500,14950
+24501,40411
+24502,65319
+24503,43905
+24504,44456
+24505,44576
+24506,70033
+24507,65581
+24508,45813
+24509,46857
+24510,38883
+24511,47317
+24512,49903
+24513,61251
+24514,81482
+24515,51939
+24516,57720
+24517,52850
+24518,52881
+24519,77641
+24520,24607
+24521,53181
+24522,53182
+24523,74478
+24524,53217
+24525,53690
+24526,55223
+24527,55570
+24528,55742
+24529,55807
+24530,56701
+24531,57289
+24532,57710
+24533,57858
+24534,32585
+24535,79493
+24536,59980
+24537,60899
+24538,62021
+24539,64809
+24540,64812
+24541,64819
+24542,66393
+24543,41877
+24544,61251
+24545,24915
+24546,45813
+24547,68551
+24548,69609
+24549,72323
+24550,61251
+24551,72559
+24552,77661
+24553,73477
+24554,74689
+24555,75521
+24556,25533
+24557,78274
+24558,12340
+24559,11869
+24560,80079
+24561,80080
+24562,80429
+24563,72153
+24564,23946,36642
+24565,25700
+24566,48862
+24567,76441
+24568,69633
+24569,38231
+24570,20905
+24571,12341
+24572,24504
+24573,28532
+24574,52777
+24575,67651
+24576,21140
+24577,43523
+24578,81161
+24579,24704
+24580,61251
+24581,45489
+24582,24892
+24583,27506
+24584,68489
+24585,51677
+24586,38944
+24587,32929
+24588,68551
+24589,59605
+24590,62426
+24591,78544
+24592,33832
+24593,11870
+24594,71040
+24595,64413
+24596,49088
+24597,62476
+24598,45316
+24599,70033
+24600,65977
+24601,59615
+24602,80193
+24603,52157
+24604,35534
+24605,52798
+24606,81482
+24607,77641
+24608,22684
+24609,67432
+24610,70249
+24611,35626
+24612,39676
+24613,70033
+24614,72135
+24615,26938
+24616,50459
+24617,45813
+24618,45813
+24619,45813
+24620,27625
+24621,66857
+24622,66857
+24623,82057
+24624,66459
+24625,33512
+24626,73837
+24627,67329
+24628,33548
+24629,50717
+24630,67049
+24631,66756
+24632,25394
+24633,71636
+24634,65942
+24635,19009
+24636,48281
+24637,44579
+24638,80941
+24639,34808
+24640,35130
+24641,40552
+24642,37999
+24643,78625
+24644,78517
+24645,69633
+24646,27741
+24647,28702
+24648,37854
+24649,61621
+24650,50652
+24651,23653
+24652,32580
+24653,41997
+24654,69408
+24655,37726
+24656,60032
+24657,56832
+24658,40552
+24659,56937
+24660,63138,35695
+24661,38835
+24662,40864
+24663,41911
+24664,48251
+24665,28164
+24666,81643
+24667,34874
+24668,38840
+24669,28091
+24670,24681
+24671,37642
+24672,50651
+24673,66843
+24674,21810
+24675,76146
+24676,78160
+24677,28164
+24678,41877
+24679,41875
+24680,58200
+24681,37637
+24682,57435,57554
+24683,43240
+24684,38823
+24685,53205
+24686,40151
+24687,49079
+24688,40752
+24689,81161
+24690,80845
+24691,80982
+24692,71557
+24693,81626
+24694,72830
+24695,19654
+24696,55526
+24697,24695
+24698,43434
+24699,33184
+24700,48251
+24701,74922
+24702,45813
+24703,56437
+24704,21218
+24705,54809
+24706,30568
+24707,56389
+24708,80821
+24709,54821
+24710,60032
+24711,24710
+24712,78362
+24713,48126
+24714,71938
+24715,51770
+24716,76303
+24717,45098
+24718,74490
+24719,62515
+24720,43734
+24721,58088
+24722,28747
+24723,36452
+24724,19629
+24725,34897
+24726,61251
+24727,40161
+24728,81721
+24729,19872
+24730,59970
+24731,68432
+24732,63424
+24733,32505
+24734,76334
+24735,32099
+24736,23881
+24737,33898
+24738,33896
+24739,40619
+24740,79753
+24741,70104
+24742,71120
+24743,77034
+24744,61646
+24745,69401
+24746,78059
+24747,29917
+24748,28954
+24749,79743
+24750,20718
+24751,49222
+24752,58921
+24753,65509
+24754,54994
+24755,51316
+24756,79749
+24757,8179
+24758,58921
+24759,69806
+24760,64455
+24761,37334
+24762,34280
+24763,61261
+24764,79458
+24765,23748
+24766,24726
+24767,24726
+24768,31917
+24769,58714
+24770,67377
+24771,67376
+24772,22112
+24773,73481
+24774,74807
+24775,45885
+24776,20406
+24777,20082
+24778,31115
+24779,30391
+24780,46827
+24781,21745
+24782,21475
+24783,71517
+24784,47740
+24785,46245
+24786,34997
+24787,43967
+24788,51068
+24789,61209
+24790,79905
+24791,57418
+24792,54404
+24793,69744
+24794,57418
+24795,57415
+24796,42438
+24797,46172
+24798,41055
+24799,53717
+24800,73815
+24801,57416
+24802,60216
+24803,70033
+24804,60216
+24805,29237
+24806,59970
+24807,51649
+24808,35679
+24809,23181
+24810,41851
+24811,19628
+24812,22946
+24813,24764
+24814,20137
+24815,41614
+24816,71572
+24817,24442
+24818,24807
+24819,33394
+24820,32372
+24821,32374
+24822,35492
+24823,24825
+24824,36088
+24825,36898
+24826,24700,38971
+24827,54467
+24828,24807
+24829,26318
+24830,39563
+24831,30975
+24832,66353
+24833,59645
+24834,69179,24823
+24835,79757,62757
+24836,65702
+24837,67972
+24838,71956
+24839,72421
+24840,43471
+24841,24268
+24842,34986
+24843,79470
+24844,70759
+24845,46818
+24846,44579
+24847,46760
+24848,60598
+24849,35679
+24850,74067
+24851,53694
+24852,34783
+24853,55373
+24854,45813
+24855,55662
+24856,72764
+24857,25855
+24858,28449
+24859,24807
+24860,77641
+24861,61848
+24862,45813
+24863,76662
+24864,43736
+24865,40752
+24866,78583
+24867,58162
+24868,44474
+24869,54774
+24870,71098
+24871,81801
+24872,59020
+24873,77011
+24874,73803
+24875,47590
+24876,38705
+24877,42246
+24878,54734
+24879,38835
+24880,34924
+24881,67703
+24882,40863
+24883,78096
+24884,72256
+24885,63070
+24886,52836
+24887,26504
+24888,78096
+24889,20755
+24890,80600
+24891,69818
+24892,29968
+24893,22116
+24894,58168
+24895,29928
+24896,52406
+24897,29237
+24898,40752
+24899,81161
+24900,48862
+24901,79661
+24902,21814
+24903,22507
+24904,65910
+24905,35405
+24906,25330
+24907,28552
+24908,36452
+24909,29027
+24910,30836
+24911,70033
+24912,30519
+24913,32645
+24914,74815
+24915,74067
+24916,40752
+24917,37344
+24918,81107
+24919,48870
+24920,40578
+24921,1122
+24922,43756
+24923,43905
+24924,38477
+24925,29731
+24926,11860
+24927,50602
+24928,80324
+24929,80324
+24930,53217
+24931,58287
+24932,36298
+24933,52053
+24934,33186
+24935,57066
+24936,79126
+24937,79608
+24938,59698
+24939,30189
+24940,80066
+24941,45813
+24942,15512
+24943,62029
+24944,24595
+24945,22669
+24946,30693
+24947,67548
+24948,67548
+24949,67548
+24950,65977
+24951,70692
+24952,50602
+24953,74067
+24954,27942
+24955,76787
+24956,76799
+24957,31924
+24958,32563
+24959,22776
+24960,23946
+24961,70033
+24962,60733
+24963,82035
+24964,76441
+24965,52374
+24966,24882
+24967,60216
+24968,78169
+24969,78170
+24970,67703
+24971,60032
+24972,41587
+24973,32462
+24974,44013
+24975,81735
+24976,57289
+24977,69308
+24978,46876
+24979,58647
+24980,60534
+24981,61202
+24982,59020
+24983,24528,40970
+24984,34657
+24985,44013
+24986,81462
+24987,67821
+24988,76441
+24989,60803
+24990,46760
+24991,27953
+24992,45813
+24993,75564
+24994,22949
+24995,62776
+24996,34126
+24997,34118
+24998,41461
+24999,28790
+25000,36872
+25001,44160
+25002,54774
+25003,55785
+25004,39961
+25005,48251
+25006,47852
+25007,65929
+25008,65509
+25009,81251
+25010,19629
+25011,31369
+25012,44670
+25013,31559
+25014,25013
+25015,74826
+25016,30693
+25017,69633
+25018,74537
+25019,52312
+25020,39357
+25021,79874
+25022,59258
+25023,75027
+25024,53761
+25025,53842
+25026,43807
+25027,25016
+25028,43807
+25029,53625
+25030,48735
+25031,68258
+25032,73838
+25033,34613
+25034,59411
+25035,46782
+25036,62999
+25037,66953
+25038,76110
+25039,25032
+25040,80012
+25041,72248
+25042,72248
+25043,46760
+25044,72052
+25045,31143
+25046,79471
+25047,78855
+25048,46490
+25049,64403
+25050,64425
+25051,77357
+25052,80834
+25053,45869
+25054,26295
+25055,45260
+25056,69604
+25057,80370
+25058,50438
+25059,81626
+25060,68643
+25061,53163
+25062,68692
+25063,61136
+25064,44816
+25065,80613
+25066,47816
+25067,40658
+25068,81213
+25069,25002
+25070,61764
+25071,44827
+25072,50490
+25073,52451
+25074,11865
+25075,70776
+25076,70776
+25077,70779
+25078,75152
+25079,64132
+25080,25555
+25081,22786
+25082,20690
+25083,50201
+25084,69860
+25085,77011
+25086,66926
+25087,58162
+25088,63314
+25089,44827
+25090,45009
+25091,45009
+25092,56176
+25093,75019
+25094,71315
+25095,54044
+25096,53339
+25097,73838
+25098,56176
+25099,56176
+25100,55348
+25101,21566
+25102,22684
+25103,32372
+25104,32580
+25105,44792
+25106,47387
+25107,79738
+25108,51523
+25109,52156
+25110,52179
+25111,47931
+25112,52862
+25113,76251
+25114,63426
+25115,59305
+25116,61455
+25117,69274
+25118,78578
+25119,74082
+25120,79757,75741
+25121,60623
+25122,80227
+25123,80612
+25124,60216
+25125,38699
+25126,34833,44516
+25127,34285
+25128,25097
+25129,53056
+25130,66004
+25131,80713
+25132,51395
+25133,21959
+25134,24961
+25135,60867
+25136,65663
+25137,21493
+25138,20626
+25139,71446
+25140,71956
+25141,59260
+25142,68352
+25143,38569
+25144,55143
+25145,19837
+25146,29833
+25147,56896
+25148,23774
+25149,28780
+25150,72883
+25151,32119
+25152,35557
+25153,35557
+25154,79469
+25155,41264
+25156,61343
+25157,45556,79156
+25158,31858
+25159,38640
+25160,75741
+25161,80259
+25162,73492
+25163,56842
+25164,26766
+25165,33134
+25166,66985
+25167,41000
+25168,39505
+25169,19689
+25170,31528
+25171,60786,71446
+25172,33793
+25173,49079
+25174,72733
+25175,41877
+25176,54118
+25177,17673
+25178,27131
+25179,2247
+25180,27373
+25181,80607
+25182,62187
+25183,63736
+25184,27997
+25185,49945
+25186,56294
+25187,67972
+25188,71881
+25189,65216
+25190,53624
+25191,60836
+25192,66885
+25193,23021
+25194,68448
+25195,18659
+25196,23021
+25197,46267
+25198,33542
+25199,29343
+25200,22790
+25201,60823
+25202,38839,80515
+25203,24661
+25204,27026
+25205,27698
+25206,28475
+25207,70515
+25208,56894
+25209,19843
+25210,44380
+25211,64477
+25212,69589,23321
+25213,43947
+25214,39049
+25215,60216
+25216,19867,80173
+25217,67822
+25218,19842
+25219,49079
+25220,25224
+25221,67429
+25222,22112
+25223,25222
+25224,25202
+25225,37991
+25226,25202
+25227,74575
+25228,70189
+25229,55314
+25230,81396
+25231,39363
+25232,79279
+25233,27167
+25234,34087,68831
+25235,81796
+25236,25234
+25237,38512
+25238,70761
+25239,77311
+25240,73997
+25241,69439
+25242,73997
+25243,25242
+25244,48803,46251
+25245,60239
+25246,75606
+25247,39424
+25248,25238
+25249,70761
+25250,23891
+25251,77641
+25252,68869
+25253,25238
+25254,70761
+25255,80845
+25256,31447
+25257,20754
+25258,79469
+25259,58226
+25260,19635
+25261,21812
+25262,28584
+25263,71572
+25264,28994
+25265,20747
+25266,73992
+25267,20755
+25268,20755
+25269,71956
+25270,71398
+25271,58155
+25272,60042
+25273,45813
+25274,45458
+25275,80761
+25276,40147
+25277,71686
+25278,20905
+25279,36619
+25280,45097
+25281,78169
+25282,68330
+25283,68330
+25284,52781
+25285,45260
+25286,52481
+25287,77641
+25288,62163
+25289,59645
+25290,40293
+25291,73837
+25292,50755
+25293,33186
+25294,29626
+25295,42153
+25296,77952
+25297,55026
+25298,55524
+25299,49158,24983
+25300,27165
+25301,30391
+25302,63663
+25303,68809
+25304,63117
+25305,30391
+25306,63117
+25307,67628
+25308,22684
+25309,39161
+25310,23488
+25311,49078
+25312,66103
+25313,37792
+25314,66324
+25315,39268
+25316,32495
+25317,79086
+25318,32691
+25319,81656
+25320,45030
+25321,41917
+25322,29969
+25323,53959
+25324,74488
+25325,19655
+25326,37720
+25327,73873
+25328,18984
+25329,18983
+25330,25302
+25331,63559
+25332,52773
+25333,42076
+25334,53179
+25335,79114
+25336,44623
+25337,58583
+25338,69653
+25339,69860
+25340,64966
+25341,57927
+25342,63391
+25343,71900
+25344,45096
+25345,61732
+25346,56832
+25347,77192
+25348,63212
+25349,80228
+25350,35512
+25351,48038
+25352,63945
+25353,19755
+25354,20456
+25355,36137
+25356,66838
+25357,76229
+25358,69663
+25359,41090
+25360,77108
+25361,48415
+25362,27079
+25363,78785
+25364,70889
+25365,75057
+25366,69860
+25367,29900
+25368,73367
+25369,34924
+25370,50126
+25371,32578
+25372,32929
+25373,69012
+25374,69012
+25375,30089
+25376,73573
+25377,49158
+25378,45812
+25379,45813
+25380,67675
+25381,54562
+25382,67957
+25383,37165
+25384,59580
+25385,50630
+25386,48210
+25387,35787
+25388,48483
+25389,68211
+25390,38614
+25391,78755
+25392,35023
+25393,36482
+25394,35698
+25395,19069
+25396,19069
+25397,63124
+25398,36743
+25399,3695
+25400,54562
+25401,28780
+25402,48851
+25403,63339
+25404,40820
+25405,67675
+25406,19379
+25407,77193
+25408,48219
+25409,72290
+25410,61063
+25411,65133
+25412,77399
+25413,21324
+25414,32269
+25415,71719
+25416,66084
+25417,65529
+25418,81456
+25419,59713
+25420,41180
+25421,62991
+25422,25826
+25423,29917
+25424,59338
+25425,50701
+25426,37718
+25427,36069
+25428,50459
+25429,81255
+25430,36602
+25431,24249
+25432,24251
+25433,41977
+25434,79469
+25435,31618
+25436,79469
+25437,23531
+25438,77641
+25439,65260
+25440,24145
+25441,30391
+25442,30392
+25443,65259
+25444,43801
+25445,44160
+25446,57893
+25447,26166
+25448,27275
+25449,36506
+25450,59306
+25451,36029
+25452,53059
+25453,61247
+25454,65581
+25455,78234
+25456,27592
+25457,70111
+25458,68163
+25459,40293
+25460,74036
+25461,57980
+25462,82191
+25463,25876
+25464,51472
+25465,61647
+25466,40293
+25467,64175
+25468,61251
+25469,41877
+25470,62277
+25471,50297
+25472,34246
+25473,22646,24289
+25474,56542
+25475,25474
+25476,38475
+25477,41017
+25478,39049
+25479,23664
+25480,44816
+25481,79608
+25482,51411
+25483,40318
+25484,26102
+25485,40564
+25486,66786
+25487,79732
+25488,37616
+25489,37328
+25490,65174
+25491,44514
+25492,50303
+25493,70268
+25494,55246
+25495,38982
+25496,51464
+25497,31243
+25498,60603
+25499,25495
+25500,49420
+25501,42475
+25502,66353
+25503,63935
+25504,46962
+25505,40756
+25506,57693
+25507,80821
+25508,30865
+25509,67957
+25510,25495
+25511,43546
+25512,37344
+25513,58262
+25514,76664
+25515,31646
+25516,69860
+25517,19421
+25518,67290
+25519,25518
+25520,20745
+25521,34199
+25522,80512
+25523,73222
+25524,73803
+25525,33455
+25526,66292,43168
+25527,49997
+25528,76085
+25529,41672
+25530,23097
+25531,80512
+25532,35425
+25533,56294
+25534,81789
+25535,38889
+25536,73752
+25537,34276
+25538,28237
+25539,79608
+25540,58287
+25541,42154
+25542,22776
+25543,61400
+25544,22786
+25545,79469
+25546,35558
+25547,31618
+25548,31616
+25549,31137
+25550,50862,35425
+25551,32923
+25552,61395
+25553,45260
+25554,52105
+25555,42093
+25556,76429
+25557,61401
+25558,26298
+25559,50354
+25560,22786
+25561,42097
+25562,61404
+25563,50742
+25564,25561
+25565,68352
+25566,69818
+25567,71900
+25568,31991
+25569,45769
+25570,56166
+25571,65239
+25572,21474
+25573,30954
+25574,31616
+25575,24874
+25576,68691
+25577,31618
+25578,70033
+25579,30954
+25580,23536
+25581,26954
+25582,27059
+25583,30062
+25584,53072
+25585,46857
+25586,49902
+25587,52712
+25588,44358
+25589,57562
+25590,61435
+25591,68691
+25592,23673
+25593,78286
+25594,81746
+25595,41556
+25596,78313
+25597,81635
+25598,30557
+25599,61438
+25600,31612
+25601,72435
+25602,25601
+25603,53422
+25604,66616
+25605,81482
+25606,52904
+25607,48283
+25608,63106,52803
+25609,63442
+25610,52904,52211
+25611,28965
+25612,53306
+25613,23946
+25614,80668
+25615,63809
+25616,66985
+25617,74488,73670
+25618,73326
+25619,34564
+25620,73830,73670
+25621,52906
+25622,36482
+25623,81746
+25624,49222
+25625,70033
+25626,63424
+25627,76960
+25628,50117
+25629,21703
+25630,56451
+25631,79282
+25632,51928
+25633,79282
+25634,48787
+25635,25708
+25636,19438
+25637,64142
+25638,18740
+25639,33178
+25640,39676
+25641,39676
+25642,69331
+25643,63809
+25644,63809
+25645,74488
+25646,47833
+25647,61902
+25648,67698
+25649,46992
+25650,25649
+25651,55984
+25652,22433
+25653,27519
+25654,46075
+25655,25044
+25656,25044
+25657,37276
+25658,21525
+25659,7654
+25660,79200
+25661,77845
+25662,44816
+25663,56471
+25664,66985
+25665,61673
+25666,79189
+25667,48477
+25668,56492
+25669,56441
+25670,73437
+25671,48251,56454
+25672,34039
+25673,56454
+25674,36361
+25675,56534
+25676,57934
+25677,78160
+25678,56492
+25679,44440
+25680,47994
+25681,24230
+25682,76256
+25683,31858
+25684,39676
+25685,26171
+25686,66154
+25687,66154
+25688,22900
+25689,33617
+25690,35595
+25691,33614
+25692,25807
+25693,51573
+25694,66154
+25695,59762
+25696,66154
+25697,25687
+25698,77373
+25699,81549
+25700,25699
+25701,40068
+25702,28406
+25703,67089
+25704,30325
+25705,55546
+25706,72791
+25707,73636
+25708,73981
+25709,35876
+25710,51479
+25711,80256
+25712,57874
+25713,35879
+25714,33178
+25715,25706
+25716,53180
+25717,40230
+25718,49797
+25719,36602
+25720,56584
+25721,51665
+25722,70862
+25723,27167
+25724,43299
+25725,43756
+25726,65154
+25727,31919
+25728,34199
+25729,81200
+25730,53861
+25731,22896
+25732,40752
+25733,29623
+25734,54425
+25735,80512
+25736,23223
+25737,57982
+25738,68802
+25739,21568
+25740,58088
+25741,66132
+25742,81483
+25743,78578,81463
+25744,59355
+25745,62072
+25746,58308
+25747,80184
+25748,59970
+25749,28739
+25750,79686
+25751,39928
+25752,30557
+25753,73669
+25754,33184
+25755,45546
+25756,37181
+25757,57249
+25758,77641
+25759,81482
+25760,77641
+25761,57901
+25762,39153
+25763,25762
+25764,25762
+25765,25763
+25766,25763
+25767,25763
+25768,50424
+25769,25763
+25770,22728,72914
+25771,31616
+25772,74775
+25773,36242
+25774,49945
+25775,66413
+25776,67957
+25777,65579
+25778,23294
+25779,25017
+25780,33162
+25781,37179
+25782,41743
+25783,64287
+25784,45813
+25785,25770
+25786,41022
+25787,48477
+25788,36965
+25789,69174
+25790,28530
+25791,73805
+25792,33868
+25793,68355
+25794,38313
+25795,18951
+25796,34398
+25797,33799
+25798,68629
+25799,21730
+25800,31506
+25801,47908
+25802,65659
+25803,28535
+25804,68715
+25805,77641
+25806,30368
+25807,39151
+25808,20531
+25809,64182
+25810,53593
+25811,21474
+25812,41005
+25813,75057
+25814,53597
+25815,34613
+25816,25796
+25817,75853
+25818,73683
+25819,59886
+25820,35517
+25821,23182
+25822,41588
+25823,67703
+25824,38920
+25825,52890
+25826,38920
+25827,45689
+25828,27497
+25829,36482
+25830,47650
+25831,33513
+25832,79245
+25833,61592
+25834,21568
+25835,74821
+25836,74811
+25837,19771
+25838,25862
+25839,25087
+25840,66111
+25841,37000
+25842,34924
+25843,25087
+25844,34924
+25845,66954
+25846,67232
+25847,57897
+25848,34435
+25849,24794
+25850,42225
+25851,77985
+25852,51261
+25853,44628
+25854,78398
+25855,79187,20751
+25856,73372
+25857,57144
+25858,63124
+25859,71338
+25860,37513
+25861,77277
+25862,81193
+25863,51778
+25864,73492
+25865,32718
+25866,68796
+25867,34985
+25868,35926
+25869,62516
+25870,75962
+25871,36802
+25872,19936
+25873,53060
+25874,52773
+25875,54957
+25876,81915
+25877,61247
+25878,63124
+25879,25877,66132
+25880,60994
+25881,69688
+25882,66965
+25883,81482
+25884,59645
+25885,32929
+25886,39599
+25887,33401
+25888,43744
+25889,28311,26302
+25890,28747
+25891,65385
+25892,77989
+25893,41417
+25894,32975
+25895,49772
+25896,32691
+25897,44963
+25898,53333
+25899,26302
+25900,53332
+25901,81656
+25902,31563
+25903,53239
+25904,43828
+25905,70033
+25906,72265
+25907,59333
+25908,56582
+25909,80572
+25910,43247
+25911,22128,81462
+25912,31443
+25913,73837
+25914,74488
+25915,27506
+25916,29418
+25917,78855
+25918,34589
+25919,51577
+25920,73838
+25921,68780
+25922,44986
+25923,25924,30361
+25924,27508
+25925,25915
+25926,29418
+25927,62190
+25928,30555
+25929,45403
+25930,66153
+25931,59541
+25932,24391
+25933,58412
+25934,50875
+25935,27781
+25936,25202
+25937,62100
+25938,48171
+25939,69931
+25940,78583
+25941,25715
+25942,79270
+25943,67574
+25944,59857
+25945,21597
+25946,42446
+25947,28425
+25948,67574
+25949,51318
+25950,48477
+25951,31537
+25952,50856
+25953,48477
+25954,45524
+25955,61926
+25956,63218
+25957,37166
+25958,74256
+25959,71557
+25960,25714
+25961,67698
+25962,37167
+25963,25496
+25964,41155
+25965,26409
+25966,24781
+25967,31477
+25968,33500
+25969,67891
+25970,39767
+25971,44793
+25972,26166
+25973,39676
+25974,60899
+25975,41399
+25976,76501
+25977,70033
+25978,74067
+25979,82055
+25980,31910
+25981,25851
+25982,27167
+25983,24612
+25984,52687
+25985,37079
+25986,81161
+25987,25800
+25988,81462
+25989,38556
+25990,8179
+25991,61266
+25992,58088
+25993,76890
+25994,53180
+25995,53171
+25996,21640
+25997,69667
+25998,23541
+25999,40927
+26000,23691
+26001,69697
+26002,64632,42356
+26003,45271
+26004,48630
+26005,49427
+26006,28220
+26007,22438
+26008,59441
+26009,54043
+26010,69977
+26011,21475
+26012,26014,49341
+26013,53733
+26014,30891
+26015,53648
+26016,75641
+26017,30937
+26018,73001
+26019,73870
+26020,39049
+26021,39049
+26022,34906
+26023,67254
+26024,21545
+26025,70110
+26026,40150
+26027,74867
+26028,50248
+26029,36055
+26030,39049
+26031,33135
+26032,33134
+26033,33134
+26034,33135
+26035,72298
+26036,34249
+26037,65309
+26038,51395
+26039,69818
+26040,31858
+26041,28890
+26042,58462
+26043,21412
+26044,71648
+26045,39298
+26046,62928
+26047,26577
+26048,56901
+26049,18979
+26050,81647
+26051,44013
+26052,19069
+26053,44908
+26054,28780,44933
+26055,44932
+26056,36872,19072
+26057,36872,19072
+26058,21012
+26059,73328
+26060,21703
+26061,79282
+26062,36710
+26063,26064
+26064,66101
+26065,53717
+26066,61577
+26067,53701
+26068,71937
+26069,27731
+26070,55805
+26071,66515
+26072,31919
+26073,68522
+26074,76664
+26075,77952
+26076,60869
+26077,20751
+26078,24398
+26079,45777
+26080,59375
+26081,53119
+26082,73636
+26083,61533
+26084,41588
+26085,77988
+26086,26082
+26087,53275
+26088,53275
+26089,80342
+26090,80342
+26091,70033
+26092,29692
+26093,26095
+26094,33361
+26095,44013
+26096,26095
+26097,26091
+26098,71639
+26099,58969
+26100,45035
+26101,53439
+26102,71719
+26103,71719
+26104,25606
+26105,53842
+26106,52822
+26107,41607
+26108,47737
+26109,49858
+26110,41609
+26111,29626
+26112,60032
+26113,27688
+26114,68847
+26115,41919
+26116,39531
+26117,63623
+26118,29237
+26119,63677
+26120,19979
+26121,27624
+26122,23559
+26123,41646
+26124,25770
+26125,26373
+26126,26656
+26127,32837
+26128,68318
+26129,47116
+26130,50136
+26131,50934
+26132,31417
+26133,64812
+26134,66475
+26135,41877
+26136,61251
+26137,26136
+26138,67957
+26139,42197
+26140,71419
+26141,66293
+26142,74192
+26143,76343
+26144,77988
+26145,31853
+26146,64989
+26147,81918
+26148,67821
+26149,67169
+26150,52417
+26151,79270
+26152,64972
+26153,37042
+26154,72029
+26155,21275
+26156,82167
+26157,48084
+26158,61264,20038
+26159,23559
+26160,48251
+26161,53593
+26162,56356
+26163,60216
+26164,41106
+26165,37405
+26166,47655
+26167,75152
+26168,31602
+26169,34566
+26170,44798
+26171,79270
+26172,39928
+26173,77146
+26174,65682
+26175,60353
+26176,12337
+26177,44814
+26178,35469
+26179,40147
+26180,53783
+26181,81482
+26182,63160
+26183,33134
+26184,33135
+26185,22095
+26186,31245
+26187,81808
+26188,34357
+26189,19200
+26190,70033
+26191,79608
+26192,56955
+26193,48787
+26194,43426
+26195,47493
+26196,32578
+26197,35557
+26198,23380
+26199,59340
+26200,57169
+26201,28874
+26202,31609
+26203,48256
+26204,42327
+26205,34924
+26206,42287
+26207,52420,74939
+26208,61178
+26209,21703
+26210,28091
+26211,61159
+26212,75330
+26213,39750
+26214,61758
+26215,27688
+26216,31618
+26217,79469
+26218,68692
+26219,26048
+26220,75465
+26221,68869
+26222,26070
+26223,39423
+26224,70033
+26225,59169
+26226,41815
+26227,39049
+26228,68005
+26229,50784
+26230,67479
+26231,25851
+26232,70033
+26233,70033
+26234,41729
+26235,41683
+26236,43893
+26237,45813
+26238,58921
+26239,72556
+26240,40753
+26241,67551
+26242,21810
+26243,41607
+26244,58808
+26245,59110
+26246,41856
+26247,61202
+26248,33498
+26249,34319
+26250,50784
+26251,70646
+26252,47655
+26253,42088
+26254,56701
+26255,27667
+26256,29957
+26257,74152
+26258,44013
+26259,41729
+26260,35557
+26261,41588
+26262,26483
+26263,31058
+26264,53870
+26265,34924
+26266,62439
+26267,71557
+26268,32456
+26269,82151
+26270,21866
+26271,53593
+26272,41917
+26273,80753
+26274,36694
+26275,40988
+26276,78024
+26277,54257
+26278,48318
+26279,34280
+26280,31167
+26281,81549
+26282,57332
+26283,57076
+26284,34283
+26285,27688
+26286,46664
+26287,23514
+26288,25729
+26289,45813
+26290,70214
+26291,78038
+26292,45813
+26293,20604
+26294,32799
+26295,31701
+26296,53454
+26297,42351
+26298,73838
+26299,26302
+26300,30187
+26301,73838
+26302,21745
+26303,51204
+26304,67993
+26305,69860
+26306,19000
+26307,63259
+26308,19005
+26309,23643
+26310,67131
+26311,72791
+26312,73837
+26313,59306
+26314,31430
+26315,26311
+26316,24612
+26317,48870
+26318,79211
+26319,56696
+26320,63213
+26321,80736
+26322,60806
+26323,37044
+26324,46948
+26325,37044
+26326,70091
+26327,53339
+26328,52655
+26329,52691
+26330,30208
+26331,59355
+26332,50450
+26333,48803
+26334,28028
+26335,61159
+26336,25002
+26337,52904
+26338,61764
+26339,34211
+26340,68355
+26341,28237
+26342,53183
+26343,81635
+26344,56280
+26345,20745
+26346,31308
+26347,65977
+26348,30514
+26349,61533
+26350,61494
+26351,68632
+26352,61510
+26353,79608
+26354,81635
+26355,20883
+26356,29819
+26357,81746
+26358,77284
+26359,63212
+26360,46267
+26361,59435
+26362,46888
+26363,65909
+26364,25017
+26365,35196
+26366,79472,25101
+26367,72024
+26368,60216
+26369,24839
+26370,40068
+26371,78014
+26372,68519
+26373,28000
+26374,52168
+26375,62547
+26376,48196
+26377,61209
+26378,26334,82056
+26379,28028,52802
+26380,33475
+26381,33476
+26382,21474
+26383,28168
+26384,72712
+26385,26429
+26386,30153
+26387,75942
+26388,46473
+26389,22116
+26390,23694
+26391,63646
+26392,26389
+26393,19686
+26394,67362
+26395,23182
+26396,23679
+26397,25046
+26398,64975
+26399,48949
+26400,37215
+26401,48251
+26402,43364
+26403,53648
+26404,79274
+26405,53648
+26406,49058
+26407,67093
+26408,21899
+26409,25770
+26410,67202
+26411,19666
+26412,30391
+26413,35996
+26414,44013
+26415,74824
+26416,58710
+26417,32541
+26418,58723
+26419,69968
+26420,59378
+26421,61504
+26422,46782
+26423,66985
+26424,46268
+26425,47840
+26426,74807
+26427,70308
+26428,23643
+26429,36537
+26430,52975
+26431,23643
+26432,31616
+26433,41279
+26434,45336
+26435,34306
+26436,19121
+26437,79995
+26438,64383
+26439,22853
+26440,42252
+26441,46171
+26442,71103
+26443,71102
+26444,71103
+26445,61253
+26446,23420
+26447,39049
+26448,40068
+26449,37181
+26450,21381
+26451,20763
+26452,65481
+26453,75788
+26454,28741
+26455,60097
+26456,24392
+26457,74067
+26458,80927
+26459,45813
+26460,30183
+26461,47388
+26462,31167
+26463,36840
+26464,35158
+26465,74067
+26466,30937
+26467,43809
+26468,58168
+26469,43818
+26470,57573
+26471,63059
+26472,53624
+26473,77192
+26474,5513
+26475,25407
+26476,76229
+26477,19907
+26478,19909
+26479,39599
+26480,53561
+26481,31862
+26482,73207
+26483,44013
+26484,9930
+26485,54416
+26486,33845
+26487,41872
+26488,44046,28475
+26489,29917
+26490,55391
+26491,29040
+26492,81482
+26493,61261
+26494,67454
+26495,69977
+26496,48251
+26497,33755
+26498,24704
+26499,58776
+26500,22684
+26501,28234
+26502,20160
+26503,45557
+26504,21200
+26505,77108
+26506,38667
+26507,28535
+26508,70033
+26509,29839
+26510,70167
+26511,78487
+26512,64403
+26513,31599
+26514,74010
+26515,42225
+26516,62439
+26517,63218
+26518,33581
+26519,72253
+26520,35557
+26521,36045
+26522,46270
+26523,67432
+26524,28091
+26525,77626
+26526,77630
+26527,48126
+26528,19228
+26529,51825
+26530,53261
+26531,31139
+26532,63659
+26533,27405,36914
+26534,78995,77522
+26535,39358
+26536,77328
+26537,77469
+26538,59542
+26539,73445
+26540,75913
+26541,76518
+26542,77051
+26543,79276
+26544,31278
+26545,35284
+26546,81159
+26547,23542
+26548,81549
+26549,70033
+26550,70033
+26551,70033
+26552,46444
+26553,49079
+26554,56111
+26555,45813
+26556,70033
+26557,70016
+26558,79492
+26559,40752
+26560,20690
+26561,20690
+26562,45204
+26563,2492
+26564,17466
+26565,23294
+26566,48438
+26567,51573
+26568,60984
+26569,70033
+26570,76787
+26571,4057
+26572,21959
+26573,19768
+26574,31167
+26575,26579
+26576,68818
+26577,37987
+26578,19176
+26579,37988
+26580,19305
+26581,19655
+26582,27503
+26583,30408
+26584,79175
+26585,75498
+26586,34609
+26587,29513
+26588,56607
+26589,38789
+26590,47931
+26591,48445
+26592,51069
+26593,27565
+26594,22969
+26595,52354
+26596,56585
+26597,59970
+26598,65691
+26599,43872
+26600,74232
+26601,77585
+26602,26604
+26603,63139
+26604,27339
+26605,26604
+26606,37991
+26607,25359
+26608,50438
+26609,36542
+26610,79029
+26611,54642
+26612,68522
+26613,66279
+26614,64178
+26615,51127
+26616,79953
+26617,28952
+26618,60216
+26619,46639
+26620,77011
+26621,41444
+26622,30873
+26623,53676
+26624,19202
+26625,81601
+26626,51881
+26627,47047
+26628,54142,42246,41773
+26629,49661
+26630,51036
+26631,55668
+26632,53959
+26633,70629
+26634,70033
+26635,70710
+26636,49945
+26637,81734
+26638,69860
+26639,70016
+26640,1526
+26641,30659
+26642,45302
+26643,53032
+26644,59307
+26645,23164
+26646,73326
+26647,79547
+26648,59306
+26649,46096
+26650,49298
+26651,21640
+26652,26650
+26653,80632
+26654,46070
+26655,30557
+26656,33729,41005
+26657,31853
+26658,35558
+26659,75064
+26660,45813
+26661,26686
+26662,45813
+26663,78201
+26664,78200
+26665,20747
+26666,29984
+26667,67703
+26668,60032
+26669,51018
+26670,74821
+26671,70033
+26672,31477
+26673,60032
+26674,70033
+26675,40752
+26676,58088
+26677,58088
+26678,58088
+26679,58093
+26680,79608
+26681,79608
+26682,55318
+26683,73287
+26684,79097
+26685,54467
+26686,51092
+26687,54446
+26688,24373
+26689,58921
+26690,37181
+26691,80080
+26692,81336
+26693,81337
+26694,27167
+26695,45813
+26696,81161
+26697,27625
+26698,75588
+26699,53676
+26700,25115
+26701,25115
+26702,61260
+26703,22669
+26704,21745
+26705,39423
+26706,18974
+26707,39676
+26708,39676
+26709,60936
+26710,79953
+26711,45813
+26712,77641
+26713,46268
+26714,69408
+26715,46490
+26716,74487
+26717,67822
+26718,6458
+26719,44439
+26720,19935
+26721,79224,73272
+26722,67202
+26723,42246
+26724,67946
+26725,43509
+26726,61537
+26727,78566
+26728,33488
+26729,53182
+26730,63852
+26731,19131
+26732,24059
+26733,19228
+26734,71686
+26735,44567
+26736,45302
+26737,11869
+26738,70221
+26739,56941
+26740,41955
+26741,53157
+26742,37355
+26743,51472
+26744,31477
+26745,63117
+26746,31180
+26747,59468
+26748,67272
+26749,70051
+26750,27287
+26751,39767
+26752,72029
+26753,31115
+26754,66727
+26755,30954
+26756,27688
+26757,27405
+26758,39358
+26759,29833
+26760,68779
+26761,53842
+26762,38807
+26763,75860
+26764,69978
+26765,72448
+26766,33135
+26767,33134
+26768,20666
+26769,60760
+26770,58888
+26771,58888
+26772,58888
+26773,58895
+26774,77641
+26775,27997
+26776,61732
+26777,46782
+26778,30954
+26779,30954
+26780,69274
+26781,27408
+26782,18958
+26783,55374
+26784,51540
+26785,19494
+26786,41917
+26787,46826
+26788,30954
+26789,54615
+26790,54613
+26791,81482
+26792,81547
+26793,27663
+26794,81546
+26795,27663
+26796,66985
+26797,51523
+26798,75701
+26799,75647
+26800,31278
+26801,30954
+26802,64635
+26803,75700
+26804,42412
+26805,66551
+26806,68621
+26807,72827
+26808,20690
+26809,26808
+26810,73470
+26811,26264
+26812,68632
+26813,80174
+26814,22420
+26815,48122
+26816,50565
+26817,52269
+26818,11865
+26819,33184
+26820,50565
+26821,45777
+26822,38569
+26823,44439
+26824,58158
+26825,73184
+26826,35727
+26827,74146
+26828,81501
+26829,81743
+26830,79596
+26831,65594
+26832,25098
+26833,63621
+26834,22128
+26835,77780
+26836,27810
+26837,27114
+26838,59422
+26839,66442
+26840,59422
+26841,77364
+26842,62145
+26843,54082
+26844,26846
+26845,74251
+26846,60786
+26847,26846
+26848,32018
+26849,48353
+26850,20422
+26851,22060
+26852,59605
+26853,63386
+26854,66132
+26855,30231
+26856,30231
+26857,30231
+26858,66132
+26859,39101
+26860,77600
+26861,26854
+26862,38355
+26863,36604
+26864,20038
+26865,19291
+26866,61703
+26867,36434
+26868,29839
+26869,31554
+26870,56469
+26871,37776
+26872,59241
+26873,31451
+26874,32991
+26875,75634
+26876,53180
+26877,75942
+26878,64231
+26879,54441
+26880,28849
+26881,28475
+26882,33374
+26883,59657
+26884,22728
+26885,24781
+26886,64989
+26887,72733
+26888,18969
+26889,77641
+26890,79608
+26891,23541
+26892,43799
+26893,60994
+26894,77641
+26895,58088
+26896,21777
+26897,52157
+26898,45813
+26899,54728
+26900,58888
+26901,66965
+26902,57594
+26903,58088
+26904,46468
+26905,46467
+26906,74241
+26907,40752
+26908,69818
+26909,45151
+26910,47744
+26911,28790
+26912,80258,80193
+26913,58611
+26914,71899
+26915,76489
+26916,54082
+26917,31058
+26918,24037
+26919,53717
+26920,24194,27452
+26921,27479
+26922,67675
+26923,47043
+26924,47105
+26925,47223,24695
+26926,26916,30020
+26927,67675
+26928,56752
+26929,58616
+26930,60502
+26931,67675
+26932,67675
+26933,63060
+26934,63051
+26935,61241
+26936,52497
+26937,38807
+26938,66786
+26939,63861
+26940,26939
+26941,79845
+26942,62266
+26943,46757
+26944,21620
+26945,75058
+26946,51677
+26947,76664
+26948,76664
+26949,81907
+26950,52497
+26951,40752
+26952,82056
+26953,82056
+26954,50784
+26955,70568
+26956,42406
+26957,25666
+26958,76946
+26959,66997
+26960,19228
+26961,66785
+26962,71446
+26963,39049
+26964,54082
+26965,53624
+26966,67277,11480
+26967,49483
+26968,62145
+26969,29374
+26970,62456
+26971,38699
+26972,29713
+26973,34460
+26974,65975
+26975,48403
+26976,79722
+26977,79724
+26978,34148
+26979,34460
+26980,75669
+26981,26980
+26982,37720
+26983,26364
+26984,26980
+26985,28467
+26986,28234
+26987,40150
+26988,75669
+26989,63405
+26990,51836
+26991,53171
+26992,73345
+26993,58023
+26994,74302
+26995,75669
+26996,40752
+26997,48803
+26998,24002
+26999,20824
+27000,50701
+27001,20824
+27002,71961
+27003,79732
+27004,35668
+27005,70033
+27006,70629
+27007,45064
+27008,59760
+27009,32817
+27010,44240
+27011,28467
+27012,55758
+27013,32025
+27014,59092
+27015,45151
+27016,63600
+27017,47532
+27018,68119
+27019,61261
+27020,81193
+27021,43746
+27022,39578
+27023,29067
+27024,81617
+27025,51677
+27026,53624
+27027,53621
+27028,44380
+27029,27276
+27030,68030
+27031,74067
+27032,60994
+27033,25256
+27034,19580
+27035,79242
+27036,51781
+27037,59375
+27038,73837
+27039,58088
+27040,61260
+27041,30298
+27042,67049
+27043,46468
+27044,51395
+27045,31820
+27046,20015
+27047,21412
+27048,79215
+27049,73598
+27050,39049
+27051,75518
+27052,75704
+27053,38529
+27054,39049
+27055,64425
+27056,70033
+27057,20745
+27058,20504
+27059,60538
+27060,61669
+27061,27564
+27062,50985
+27063,58004
+27064,28475
+27065,77888
+27066,60536
+27067,69782
+27068,56356
+27069,78578
+27070,42225
+27071,39049
+27072,76755
+27073,68432
+27074,39049
+27075,42351
+27076,77904
+27077,59857
+27078,46827
+27079,54432
+27080,69680
+27081,70515
+27082,40950
+27083,63405
+27084,40986
+27085,53761
+27086,79363
+27087,38784
+27088,57932
+27089,45260
+27090,61796
+27091,27086
+27092,23822
+27093,45813
+27094,79028
+27095,65229
+27096,77348
+27097,40147
+27098,56180
+27099,43668
+27100,45813
+27101,28315
+27102,57594
+27103,50585
+27104,48209
+27105,19121
+27106,70515
+27107,73439
+27108,39818
+27109,58576
+27110,67050
+27111,77641
+27112,26452
+27113,31618
+27114,31616
+27115,77974
+27116,57893
+27117,28546
+27118,80387
+27119,25046
+27120,36710
+27121,36710
+27122,63126
+27123,21237
+27124,39051
+27125,70426
+27126,40068
+27127,44013
+27128,24323
+27129,81918
+27130,56111
+27131,67296
+27132,20355
+27133,72733
+27134,56336
+27135,57182
+27136,52842
+27137,56405
+27138,49392
+27139,67548
+27140,70648
+27141,27162
+27142,72575
+27143,70890
+27144,80460
+27145,27059
+27146,41877
+27147,60216
+27148,41875
+27149,74735
+27150,27151
+27151,31347
+27152,52331
+27153,50273
+27154,51319
+27155,28518
+27156,57637
+27157,20690
+27158,25564
+27159,25555
+27160,48495
+27161,47655
+27162,46252
+27163,37635
+27164,81035
+27165,70033
+27166,46417
+27167,74735
+27168,27167
+27169,27167
+27170,27167
+27171,5257
+27172,79881
+27173,76196
+27174,40752
+27175,72791
+27176,80037
+27177,74844
+27178,24726
+27179,27455
+27180,74192
+27181,26171
+27182,76623
+27183,23095
+27184,71536
+27185,48414
+27186,74675
+27187,27622
+27188,76989
+27189,20745
+27190,35740
+27191,41743
+27192,37179
+27193,31616
+27194,61251
+27195,78455
+27196,27997
+27197,45813
+27198,27197
+27199,56180
+27200,70033
+27201,71409,31759
+27202,41022
+27203,46957
+27204,27202
+27205,24441
+27206,59474
+27207,39122
+27208,67979
+27209,62456
+27210,26217
+27211,27114
+27212,44628
+27213,21568
+27214,44628
+27215,21759
+27216,25115
+27217,25256
+27218,40206
+27219,71493
+27220,21760
+27221,63212
+27222,78096
+27223,48333
+27224,70976
+27225,25059
+27226,79261
+27227,62852
+27228,55756
+27229,67272
+27230,51677
+27231,68477
+27232,50603
+27233,46767
+27234,71997
+27235,67758
+27236,49134
+27237,32578
+27238,39049
+27239,69681
+27240,75216
+27241,59737
+27242,39767
+27243,55791
+27244,74766
+27245,29643
+27246,69860
+27247,65226
+27248,66132
+27249,40514
+27250,66132
+27251,42002
+27252,32095
+27253,47128
+27254,23536
+27255,25920
+27256,48689
+27257,22543
+27258,79831
+27259,68809
+27260,19379
+27261,72283
+27262,28556
+27263,69354
+27264,57615
+27265,53417
+27266,39049
+27267,75860
+27268,36694
+27269,75717
+27270,64897
+27271,51773
+27272,77666
+27273,70914
+27274,63424
+27275,77012
+27276,45392
+27277,61260
+27278,25446
+27279,68448
+27280,18720
+27281,21345
+27282,74610
+27283,25787
+27284,50450
+27285,37411
+27286,37450
+27287,37405
+27288,47908
+27289,27280
+27290,76891
+27291,63124
+27292,41843
+27293,79871
+27294,18721
+27295,72701
+27296,29839
+27297,50296
+27298,20160
+27299,20604
+27300,20604
+27301,44384
+27302,42206
+27303,40752
+27304,31417
+27305,71029
+27306,22907
+27307,70033
+27308,60688
+27309,50758
+27310,66766
+27311,67957
+27312,72575
+27313,27307
+27314,27307
+27315,44456
+27316,31618
+27317,74549
+27318,78096
+27319,24843
+27320,20760
+27321,21905
+27322,28232
+27323,68686
+27324,28591
+27325,77008
+27326,21905
+27327,18978
+27328,18978
+27329,32269
+27330,40062
+27331,75472
+27332,75472
+27333,40064
+27334,32926
+27335,80185
+27336,25317
+27337,53189
+27338,31489
+27339,60216
+27340,81786
+27341,38391
+27342,38822
+27343,69012
+27344,27649
+27345,75472
+27346,43814
+27347,35926
+27348,74281
+27349,52146
+27350,33113
+27351,61259
+27352,45367
+27353,28890
+27354,28889
+27355,29839
+27356,44140
+27357,30231
+27358,67946
+27359,55756
+27360,34783
+27361,47855
+27362,39920
+27363,24306
+27364,49409
+27365,67946
+27366,67946
+27367,28786
+27368,70033
+27369,63434
+27370,69774
+27371,81190
+27372,73412
+27373,60097
+27374,73837
+27375,31616
+27376,60823
+27377,30680
+27378,50701
+27379,35284
+27380,61764
+27381,60847
+27382,30681
+27383,21550
+27384,62145
+27385,38621
+27386,76776
+27387,51391
+27388,37688
+27389,20743
+27390,40055
+27391,31337
+27392,32
+27393,60216
+27394,56179
+27395,56179
+27396,28844
+27397,19129
+27398,39599
+27399,29839
+27400,11862
+27401,28821
+27402,28822
+27403,26320
+27404,66862
+27405,55373
+27406,30954
+27407,30954
+27408,80761
+27409,39696
+27410,50684
+27411,25202
+27412,67614
+27413,27564
+27414,77347
+27415,30937
+27416,34025
+27417,36101
+27418,53059
+27419,54694
+27420,69335
+27421,50773
+27422,68692
+27423,55352
+27424,76752
+27425,77357
+27426,80753
+27427,81226
+27428,80275
+27429,46507,39423
+27430,52451
+27431,39210
+27432,77641
+27433,25434
+27434,41743
+27435,37179
+27436,27167
+27437,74192
+27438,27431
+27439,39318
+27440,60032
+27441,68538
+27442,54188
+27443,63072
+27444,79029
+27445,46698
+27446,45812
+27447,45813
+27448,40564
+27449,25770
+27450,67675
+27451,19069
+27452,48293
+27453,66528
+27454,66536
+27455,52544
+27456,35130
+27457,19069,71567
+27458,20977
+27459,28780
+27460,31940
+27461,21403
+27462,22057
+27463,27459
+27464,58162
+27465,76198
+27466,35319,44221
+27467,31058
+27468,55138
+27469,61703
+27470,41815
+27471,59020
+27472,62963
+27473,73081
+27474,71567,76028
+27475,28774
+27476,53628
+27477,35027
+27478,71881
+27479,67675
+27480,60175
+27481,19069
+27482,34829
+27483,35557
+27484,31058
+27485,44439
+27486,18770
+27487,44439
+27488,19069
+27489,28187
+27490,25434
+27491,42229
+27492,72883
+27493,53648
+27494,25098
+27495,74081
+27496,78160
+27497,27136
+27498,27497
+27499,52842
+27500,27514
+27501,32191
+27502,59020
+27503,62159
+27504,65204
+27505,51194
+27506,42093
+27507,39963
+27508,61395
+27509,75057
+27510,75057
+27511,52592
+27512,45813
+27513,40564
+27514,59020,58725
+27515,27781
+27516,46251
+27517,27508,46251
+27518,58200
+27519,45490
+27520,33585
+27521,73200
+27522,37656,53355
+27523,55050
+27524,55685
+27525,40746
+27526,56451
+27527,66437
+27528,60619
+27529,75261
+27530,74721
+27531,24379
+27532,40068
+27533,65262
+27534,30962
+27535,51862
+27536,57187
+27537,28586
+27538,79282
+27539,79683
+27540,60032
+27541,57187
+27542,62145
+27543,69803
+27544,53701
+27545,34987
+27546,38106
+27547,35392
+27548,71996
+27549,53716
+27550,74939
+27551,45490
+27552,38699
+27553,66172,37656
+27554,71937
+27555,35626
+27556,48126
+27557,79259
+27558,79258
+27559,66953
+27560,27508,74825
+27561,62578
+27562,81601
+27563,63416
+27564,65869
+27565,57461
+27566,63195
+27567,44558
+27568,27571
+27569,27571
+27570,62456
+27571,63144
+27572,48937
+27573,28741
+27574,22137
+27575,19438
+27576,47763
+27577,73806
+27578,41173
+27579,53171
+27580,57573
+27581,33479
+27582,31618
+27583,53958
+27584,37776
+27585,31616
+27586,33303
+27587,33305
+27588,36101
+27589,45264
+27590,45643
+27591,51540
+27592,69744
+27593,79992
+27594,77641
+27595,34249
+27596,81396
+27597,70033
+27598,59262
+27599,28980
+27600,55768
+27601,73837
+27602,27601
+27603,24306
+27604,33793
+27605,22853
+27606,70033
+27607,37179
+27608,46066
+27609,76303
+27610,42351
+27611,53717
+27612,69439
+27613,54562
+27614,76989
+27615,60935
+27616,60936
+27617,39318
+27618,80460
+27619,28449
+27620,39713
+27621,69978
+27622,61159
+27623,62571
+27624,23370
+27625,45813
+27626,76210
+27627,78891
+27628,23541
+27629,41022
+27630,23550
+27631,27167
+27632,27688
+27633,71594
+27634,65771
+27635,70426
+27636,70427
+27637,73805
+27638,27640
+27639,59549
+27640,60627,60786,21034
+27641,21703
+27642,28807
+27643,56451
+27644,66279
+27645,31828
+27646,66500
+27647,41588
+27648,33644
+27649,25256
+27650,59423
+27651,56445
+27652,61052
+27653,81547
+27654,44963
+27655,49883
+27656,23021
+27657,52854
+27658,67274
+27659,72610
+27660,20883
+27661,23679
+27662,47026
+27663,77287
+27664,32966
+27665,56176
+27666,23610
+27667,23748
+27668,25222
+27669,49951
+27670,52094
+27671,76718
+27672,58734
+27673,69564
+27674,64073
+27675,29692
+27676,75106
+27677,22688
+27678,57980
+27679,80583
+27680,72791
+27681,42165
+27682,72409
+27683,42035
+27684,44609
+27685,19943
+27686,53660
+27687,25088
+27688,46602
+27689,25194
+27690,62965
+27691,30650
+27692,81746
+27693,66750
+27694,49997
+27695,62187
+27696,28774
+27697,68990
+27698,64435
+27699,58166
+27700,77585
+27701,26577
+27702,47560,79250
+27703,34437
+27704,46382
+27705,64527
+27706,25098
+27707,57640
+27708,66965
+27709,66977
+27710,66355
+27711,45813
+27712,49391
+27713,63676
+27714,33146
+27715,77521
+27716,22744
+27717,22684
+27718,22510
+27719,28616
+27720,57983
+27721,79973
+27722,45287
+27723,22271
+27724,81626
+27725,36329
+27726,20760
+27727,25256
+27728,59549
+27729,40293
+27730,73837
+27731,36710
+27732,31618
+27733,43102
+27734,25574
+27735,31618
+27736,69915
+27737,81396
+27738,36338
+27739,27741
+27740,54918
+27741,20385
+27742,37422
+27743,23855
+27744,25727
+27745,53660
+27746,53660
+27747,41929
+27748,74482
+27749,36410
+27750,59020
+27751,80753
+27752,19144
+27753,81759
+27754,63064
+27755,23972
+27756,68522
+27757,32791
+27758,41214
+27759,49945
+27760,30531
+27761,45813
+27762,35096
+27763,35097
+27764,81329
+27765,80394
+27766,74133
+27767,38555
+27768,21200
+27769,81161
+27770,73156
+27771,78014
+27772,23095
+27773,26232
+27774,33085
+27775,23095
+27776,72971
+27777,60216
+27778,63047
+27779,21510
+27780,39111
+27781,31616
+27782,31618
+27783,65108
+27784,31616
+27785,43911
+27786,45096
+27787,23650
+27788,63334
+27789,73081
+27790,63334
+27791,19735
+27792,46163
+27793,75064
+27794,49945
+27795,29542
+27796,81642
+27797,68780
+27798,20385
+27799,65910
+27800,20530
+27801,81801
+27802,60507
+27803,43475
+27804,80258
+27805,29921
+27806,67903
+27807,81227
+27808,23149
+27809,80636
+27810,50459
+27811,33422
+27812,59645
+27813,26049
+27814,23019
+27815,18988
+27816,32817
+27817,33005
+27818,34087
+27819,47830
+27820,52497
+27821,27823
+27822,74275
+27823,73814
+27824,37181
+27825,57249
+27826,60216
+27827,28702
+27828,81552
+27829,39049
+27830,32578
+27831,41444
+27832,27506
+27833,42080
+27834,31618
+27835,25574
+27836,63414
+27837,45679
+27838,27837
+27839,40564
+27840,70033
+27841,72913
+27842,66965
+27843,35557
+27844,35558
+27845,31616
+27846,75340
+27847,37479
+27848,65213
+27849,52633
+27850,77641
+27851,50585
+27852,23095
+27853,25872
+27854,54562
+27855,79485
+27856,64864
+27857,42351
+27858,31940
+27859,71517
+27860,22907
+27861,76428
+27862,48875
+27863,18656
+27864,73018
+27865,29626
+27866,29626
+27867,20751
+27868,29633
+27869,81626
+27870,69503
+27871,66899
+27872,63819
+27873,65075
+27874,71269
+27875,29120
+27876,40330
+27877,34148
+27878,79905
+27879,41279
+27880,28844
+27881,28848
+27882,70033
+27883,57637
+27884,63863
+27885,62403
+27886,57934
+27887,56546
+27888,21088
+27889,70426
+27890,48153
+27891,79546
+27892,34210
+27893,79546
+27894,77641
+27895,65056
+27896,21511
+27897,38430
+27898,23760
+27899,43790,81462
+27900,39587
+27901,70033
+27902,51395
+27903,80583
+27904,46178
+27905,28025
+27906,28954
+27907,57861
+27908,45813
+27909,80789
+27910,28954
+27911,65108
+27912,20746
+27913,40572
+27914,60304
+27915,66542
+27916,35534
+27917,69564
+27918,43148
+27919,19694
+27920,58162
+27921,66377
+27922,78194
+27923,24068
+27924,38053
+27925,51502
+27926,47186
+27927,63605
+27928,54132
+27929,51677
+27930,25302
+27931,67161
+27932,51186
+27933,23550
+27934,60032
+27935,28790
+27936,28054
+27937,19211
+27938,31812
+27939,28793
+27940,25046
+27941,52811
+27942,40752
+27943,72055
+27944,65754
+27945,50717
+27946,34355
+27947,37904
+27948,34924
+27949,39014
+27950,80394
+27951,39018
+27952,48126
+27953,20745
+27954,43109
+27955,19480
+27956,47487
+27957,76966
+27958,68211
+27959,58287
+27960,67566
+27961,33186
+27962,57333
+27963,53023
+27964,39423
+27965,42094
+27966,36396
+27967,77147
+27968,47908
+27969,19438
+27970,66154
+27971,33005
+27972,37776,65108
+27973,62142
+27974,48114
+27975,39072,23240
+27976,61401
+27977,19129
+27978,73838
+27979,60570,55388
+27980,75552
+27981,75552
+27982,75313
+27983,48640
+27984,25302
+27985,75548
+27986,46553
+27987,18864
+27988,73863
+27989,75902
+27990,55203
+27991,44451
+27992,31158
+27993,28419
+27994,33455
+27995,74478
+27996,57461
+27997,50459
+27998,33184
+27999,41588
+28000,71398
+28001,46191
+28002,31991
+28003,63867
+28004,63867
+28005,76422
+28006,29314
+28007,29314
+28008,40231
+28009,78096
+28010,57934
+28011,51184
+28012,75913
+28013,37430
+28014,42249
+28015,23538
+28016,48842
+28017,34858
+28018,48144
+28019,74568
+28020,45813
+28021,58016
+28022,33645
+28023,31239
+28024,25434
+28025,53275
+28026,23693
+28027,52830
+28028,25519
+28029,25858
+28030,39563
+28031,41556
+28032,36528
+28033,37279
+28034,25920
+28035,77341
+28036,73372
+28037,27592
+28038,41743
+28039,58088
+28040,80618
+28041,61355
+28042,80012
+28043,53761
+28044,73837
+28045,65584
+28046,75152
+28047,23206
+28048,72791
+28049,39722
+28050,33135
+28051,33134
+28052,22238
+28053,68635
+28054,60600
+28055,58776
+28056,65691
+28057,58208
+28058,49502
+28059,47797
+28060,29569
+28061,28054
+28062,66727
+28063,19171
+28064,31058
+28065,48408
+28066,57934
+28067,22137
+28068,80164
+28069,49373
+28070,72983
+28071,63072
+28072,52805
+28073,45260
+28074,21597
+28075,54427
+28076,80152
+28077,74867
+28078,71493
+28079,71493
+28080,43107
+28081,30367
+28082,79467
+28083,57081
+28084,62936
+28085,62902
+28086,37779
+28087,28080
+28088,79341
+28089,54953
+28090,66868
+28091,73837
+28092,34114
+28093,71837
+28094,80047
+28095,66862
+28096,33184
+28097,28970
+28098,27368
+28099,40564
+28100,61968
+28101,37802
+28102,67951
+28103,28091
+28104,31417
+28105,31417
+28106,81482
+28107,28849
+28108,37582
+28109,28105
+28110,80475
+28111,6663
+28112,34985
+28113,28309
+28114,28309
+28115,28309
+28116,28309
+28117,28309
+28118,28309
+28119,31978
+28120,59378
+28121,20238
+28122,20238
+28123,78862
+28124,31739
+28125,62029
+28126,62029
+28127,62852
+28128,60216
+28129,35838
+28130,19541
+28131,66693
+28132,47673
+28133,4298
+28134,66977
+28135,45813
+28136,58675
+28137,79259
+28138,45813
+28139,50517
+28140,31417
+28141,40564
+28142,40564
+28143,33146
+28144,28140
+28145,49697
+28146,56176
+28147,44113
+28148,43416
+28149,73112
+28150,45969
+28151,21998
+28152,56241
+28153,61646
+28154,74535
+28155,54562
+28156,35626
+28157,21703
+28158,31245
+28159,65767
+28160,28260
+28161,78160
+28162,37859
+28163,30953
+28164,51807
+28165,61793
+28166,66953
+28167,37405
+28168,66953
+28169,47561
+28170,58162
+28171,69072
+28172,68289
+28173,50649
+28174,73470
+28175,39556
+28176,23252
+28177,24780
+28178,55768
+28179,25536
+28180,61318
+28181,70859
+28182,64564
+28183,60598
+28184,19349
+28185,48126
+28186,76201
+28187,61906
+28188,28189
+28189,38385
+28190,28189,56752
+28191,19343
+28192,28188
+28193,28189,81818
+28194,61311
+28195,28091
+28196,67601
+28197,51091
+28198,57241
+28199,39999
+28200,31205
+28201,26302
+28202,19342
+28203,31058
+28204,71521
+28205,70515
+28206,65758
+28207,44474
+28208,53861
+28209,79469
+28210,60216
+28211,57573
+28212,34408
+28213,32417
+28214,35446
+28215,32374
+28216,57573
+28217,41410,16008
+28218,9828
+28219,55952
+28220,40752
+28221,74067
+28222,41410
+28223,57682
+28224,20819
+28225,46215
+28226,23310
+28227,41249
+28228,29626
+28229,62142
+28230,51532
+28231,62142
+28232,61136
+28233,74735
+28234,26298
+28235,57332
+28236,21475
+28237,61646
+28238,56492
+28239,51531
+28240,24392
+28241,62142
+28242,77277
+28243,58395
+28244,28248
+28245,28237
+28246,28247
+28247,28237
+28248,28237
+28249,63792
+28250,72504
+28251,46027
+28252,28236
+28253,40038
+28254,72504,40953
+28255,59417
+28256,51464
+28257,39528
+28258,34199
+28259,41410
+28260,63813
+28261,54181
+28262,41410
+28263,54183
+28264,41410
+28265,21718
+28266,54188
+28267,81647
+28268,21703
+28269,40063
+28270,28990
+28271,44730
+28272,45559
+28273,75016
+28274,37479,45165
+28275,68374
+28276,79282
+28277,79282
+28278,79282
+28279,70183
+28280,61767
+28281,62147
+28282,31515
+28283,42348
+28284,28267
+28285,41103
+28286,63775
+28287,56179
+28288,21200
+28289,58154
+28290,18905
+28291,41103
+28292,61789
+28293,19438
+28294,28248
+28295,73837
+28296,33678
+28297,25256
+28298,80184
+28299,76664
+28300,28309
+28301,45757
+28302,64846
+28303,79282
+28304,29189
+28305,20977
+28306,53621
+28307,54978
+28308,20977
+28309,20977
+28310,28309
+28311,48423
+28312,78984
+28313,21669
+28314,43273
+28315,57640
+28316,52368
+28317,58226
+28318,76210
+28319,33581
+28320,50459
+28321,23527
+28322,25812
+28323,44013
+28324,25546
+28325,25574
+28326,57304
+28327,21703
+28328,56492
+28329,79282
+28330,56492
+28331,20654
+28332,36710
+28333,21703
+28334,56492
+28335,37162
+28336,24700
+28337,25673
+28338,76420
+28339,79282
+28340,53894
+28341,56492
+28342,39049
+28343,41243
+28344,19228
+28345,19228
+28346,19541
+28347,80460
+28348,55146
+28349,37179
+28350,65262
+28351,54082
+28352,51625
+28353,15897
+28354,19069
+28355,28357
+28356,30275
+28357,64142
+28358,35926
+28359,34087
+28360,28358
+28361,22274
+28362,28702
+28363,54446
+28364,18984
+28365,81770
+28366,28356
+28367,60786
+28368,80460
+28369,54562
+28370,21703
+28371,36710
+28372,31689
+28373,74973
+28374,38740
+28375,72212
+28376,56451
+28377,71019
+28378,79282
+28379,79429
+28380,48126
+28381,19193
+28382,58200
+28383,34435
+28384,54082
+28385,28384
+28386,73447
+28387,65775
+28388,29480
+28389,21360
+28390,28017,35581
+28391,54185
+28392,22853
+28393,82095
+28394,42049
+28395,30390
+28396,43313
+28397,22500
+28398,59020
+28399,45374
+28400,45813
+28401,69348
+28402,26673
+28403,75803
+28404,33284
+28405,40938
+28406,61257
+28407,40068
+28408,74067
+28409,75803
+28410,31861
+28411,32578
+28412,37612
+28413,51523
+28414,26577
+28415,56289
+28416,66154
+28417,51301
+28418,78697
+28419,69235
+28420,56289
+28421,71062
+28422,39676
+28423,42142
+28424,51069
+28425,25101
+28426,60673
+28427,47592
+28428,57143
+28429,28792
+28430,62432
+28431,32982
+28432,69408
+28433,69860
+28434,61004
+28435,28434
+28436,39638
+28437,68692
+28438,68691
+28439,28438
+28440,70609
+28441,32152
+28442,62145
+28443,27688
+28444,28438
+28445,32895
+28446,61260
+28447,20760
+28448,68704
+28449,64231,77509
+28450,47127
+28451,28450
+28452,54562
+28453,54562
+28454,2492
+28455,46782
+28456,33353
+28457,70033
+28458,26914
+28459,80845
+28460,81794
+28461,36816
+28462,73743
+28463,75214
+28464,61066
+28465,25770
+28466,70526
+28467,72052
+28468,57346
+28469,64281
+28470,34460
+28471,39049
+28472,21886
+28473,28091
+28474,66953
+28475,37776
+28476,29643
+28477,21938
+28478,58081
+28479,28307
+28480,77626
+28481,73210
+28482,52679
+28483,65108
+28484,39049
+28485,60216
+28486,51814
+28487,77666
+28488,24392
+28489,61209
+28490,43556
+28491,50784
+28492,60744
+28493,45813
+28494,45813
+28495,48894
+28496,71927
+28497,33351
+28498,81808
+28499,66702
+28500,34285
+28501,31646
+28502,46027
+28503,70033
+28504,66682
+28505,53034
+28506,21474
+28507,43814
+28508,62929
+28509,45383
+28510,62145
+28511,21455
+28512,32527
+28513,71636
+28514,78455
+28515,51362
+28516,40625
+28517,66178
+28518,52773
+28519,27153
+28520,73476
+28521,21568
+28522,65691
+28523,30300
+28524,27811
+28525,27811
+28526,31477
+28527,76248
+28528,29928
+28529,19200
+28530,45096
+28531,61078
+28532,28539
+28533,28534
+28534,28529
+28535,28529
+28536,55494
+28537,28529
+28538,28529
+28539,28529
+28540,23819
+28541,64142
+28542,50507
+28543,64142
+28544,28952
+28545,60216
+28546,25113
+28547,59420
+28548,30883
+28549,75713
+28550,77491
+28551,33886
+28552,28000
+28553,52920
+28554,77491
+28555,38091
+28556,65771
+28557,60992
+28558,19629
+28559,81613
+28560,37870
+28561,28571
+28562,60603
+28563,36883
+28564,31369
+28565,32662
+28566,50900
+28567,52803
+28568,52857
+28569,70033
+28570,40534
+28571,61145
+28572,69286
+28573,34285
+28574,29737
+28575,62145
+28576,59769
+28577,60385
+28578,21886
+28579,29969
+28580,38153
+28581,68809
+28582,26298
+28583,46782
+28584,27459
+28585,67658
+28586,33645
+28587,65974
+28588,22164
+28589,19438
+28590,77374
+28591,81802
+28592,65184
+28593,62133
+28594,19231
+28595,34263
+28596,62957
+28597,51677
+28598,81433
+28599,48461
+28600,64142
+28601,63314
+28602,43997
+28603,34735
+28604,81578
+28605,44548
+28606,36404
+28607,44083
+28608,81794
+28609,41773,27459
+28610,81626
+28611,73507
+28612,34420
+28613,44232
+28614,23742
+28615,51154
+28616,32269
+28617,34619
+28618,22112
+28619,45811
+28620,65975
+28621,38836
+28622,61422
+28623,37411
+28624,18910
+28625,35342
+28626,37935
+28627,37450
+28628,34924
+28629,80152
+28630,46602
+28631,27688
+28632,64403
+28633,36540
+28634,22162,48532
+28635,78059
+28636,42475
+28637,41338
+28638,48401
+28639,43335
+28640,23903,76136
+28641,35566
+28642,71938
+28643,34808
+28644,28643
+28645,40563
+28646,57333
+28647,27086
+28648,64175
+28649,60216
+28650,79236
+28651,14950
+28652,51677
+28653,53067
+28654,79738
+28655,31690
+28656,35926
+28657,53842
+28658,63652
+28659,18984
+28660,55015
+28661,53185
+28662,29688
+28663,41435
+28664,36496
+28665,57901
+28666,33796
+28667,55443
+28668,70572
+28669,61190
+28670,18834
+28671,79485
+28672,31795
+28673,80550
+28674,32461
+28675,54785
+28676,28417
+28677,60238
+28678,55272
+28679,56832
+28680,56832
+28681,38266
+28682,24704
+28683,71961
+28684,36542
+28685,28684
+28686,77641
+28687,57594
+28688,59577
+28689,24111
+28690,59576
+28691,32807
+28692,69944
+28693,69940
+28694,59769
+28695,75442
+28696,54721
+28697,34126
+28698,19412
+28699,80538
+28700,57416
+28701,28844
+28702,36317
+28703,48367
+28704,24704
+28705,24143
+28706,21631
+28707,28591
+28708,28712
+28709,53171
+28710,65594
+28711,65201
+28712,22128
+28713,38603
+28714,52905
+28715,52857
+28716,25018
+28717,80808
+28718,25022
+28719,22955
+28720,63187
+28721,51677
+28722,79552
+28723,28844
+28724,32384
+28725,34617
+28726,64287
+28727,73445
+28728,66953
+28729,31343
+28730,38601
+28731,28747
+28732,60936
+28733,39531
+28734,39091
+28735,62361
+28736,25256
+28737,73573
+28738,33184
+28739,21328
+28740,72029
+28741,45097
+28742,22164
+28743,37789
+28744,74500
+28745,50701
+28746,67498
+28747,33729,41005
+28748,49897
+28749,35322
+28750,40999
+28751,61127
+28752,62740
+28753,66613
+28754,80941
+28755,71672
+28756,72503
+28757,77600
+28758,44956
+28759,26884
+28760,60534
+28761,42368
+28762,77308
+28763,24084
+28764,31846
+28765,30572
+28766,48126
+28767,35626
+28768,7653
+28769,45896
+28770,63065
+28771,28790
+28772,38984
+28773,20557
+28774,53454
+28775,19654
+28776,20530
+28777,25202,28796
+28778,22158
+28779,34293
+28780,74082
+28781,37884
+28782,37913
+28783,75613
+28784,28792
+28785,48030
+28786,74081
+28787,57058
+28788,56178
+28789,39122
+28790,56179
+28791,63314
+28792,28790
+28793,21200
+28794,75954
+28795,80106
+28796,80514
+28797,52324
+28798,36434
+28799,78578
+28800,19435
+28801,68290
+28802,74082
+28803,56182
+28804,71323
+28805,18869
+28806,50085
+28807,69118
+28808,37162
+28809,57934
+28810,75001
+28811,75507
+28812,76162
+28813,39049
+28814,31991
+28815,20120
+28816,33475
+28817,33476
+28818,51835
+28819,29349
+28820,81482
+28821,37179,36641
+28822,41743
+28823,44609
+28824,40206
+28825,70033
+28826,20690
+28827,27368
+28828,61510
+28829,73413
+28830,76915
+28831,76916
+28832,64129
+28833,64130
+28834,70259
+28835,22507
+28836,20655
+28837,45812
+28838,45813
+28839,26051
+28840,25022
+28841,29969
+28842,28845
+28843,53422
+28844,55488
+28845,61395
+28846,69331
+28847,28716
+28848,52905
+28849,25574
+28850,28091
+28851,41917
+28852,58776
+28853,63426
+28854,65590
+28855,33920
+28856,44140
+28857,81482
+28858,37181
+28859,26118
+28860,27018
+28861,46599
+28862,77641
+28863,24726
+28864,57289
+28865,2078
+28866,34305
+28867,54694
+28868,28619
+28869,22669
+28870,67290
+28871,55261
+28872,28539
+28873,31587
+28874,74735
+28875,77190
+28876,51068
+28877,60715
+28878,73837
+28879,66377
+28880,37513
+28881,25922
+28882,55486
+28883,36445
+28884,26827
+28885,28889,82053
+28886,76787
+28887,81129
+28888,31646
+28889,36049
+28890,62367
+28891,35557
+28892,35557
+28893,16697
+28894,35557
+28895,26103
+28896,28897
+28897,27843
+28898,39370
+28899,35557
+28900,39367
+28901,53311
+28902,45302
+28903,36634
+28904,51781
+28905,24326
+28906,53063
+28907,55465
+28908,35557
+28909,35557
+28910,56376
+28911,67594
+28912,67822
+28913,68465
+28914,64819
+28915,71719
+28916,41598
+28917,75115
+28918,81275
+28919,56472
+28920,81873
+28921,62449
+28922,36537
+28923,77661
+28924,50919
+28925,50917
+28926,50918
+28927,45813
+28928,60467
+28929,44609
+28930,66965
+28931,30249
+28932,67601
+28933,45813
+28934,67601
+28935,65075
+28936,32152
+28937,32152
+28938,49353
+28939,54425
+28940,56894
+28941,62145
+28942,39049
+28943,26884
+28944,28851
+28945,57757
+28946,44816
+28947,40572
+28948,24633
+28949,34723
+28950,60216
+28951,57585
+28952,49508
+28953,49509
+28954,42093
+28955,23664
+28956,52876
+28957,52876
+28958,62080
+28959,63106,28952
+28960,74498
+28961,19382
+28962,59375
+28963,32506
+28964,69281
+28965,76662
+28966,47532
+28967,82058
+28968,70526
+28969,35557
+28970,46721
+28971,46746
+28972,40564
+28973,31239
+28974,79612
+28975,30348
+28976,21304
+28977,74939
+28978,30348
+28979,46294
+28980,60042
+28981,47507
+28982,40784
+28983,80047
+28984,32097
+28985,27093
+28986,74809
+28987,60993
+28988,40784
+28989,29688
+28990,44104
+28991,39531
+28992,66123
+28993,73573
+28994,62053
+28995,26786
+28996,29677
+28997,60936
+28998,77641
+28999,32986
+29000,37181
+29001,52414
+29002,72895
+29003,41899
+29004,30072
+29005,66862
+29006,33500
+29007,72208
+29008,55807
+29009,32662
+29010,3599
+29011,71686
+29012,23021
+29013,39049
+29014,42518
+29015,67651
+29016,81193
+29017,67649
+29018,77985
+29019,28864
+29020,39049
+29021,40658
+29022,21311
+29023,25803
+29024,36591
+29025,71108
+29026,69050
+29027,32383
+29028,25019
+29029,72680
+29030,67972
+29031,49116
+29032,11867
+29033,58776
+29034,71996
+29035,77636
+29036,76160
+29037,71686
+29038,20772
+29039,71686
+29040,37169
+29041,73081
+29042,43313
+29043,28672
+29044,61906
+29045,78188
+29046,54978
+29047,79189
+29048,32535
+29049,62934
+29050,45812
+29051,20079
+29052,79328
+29053,38475
+29054,72409
+29055,27296
+29056,74939
+29057,68852
+29058,20046
+29059,21060
+29060,20977
+29061,67675
+29062,23925
+29063,19979
+29064,59192
+29065,21060
+29066,19069
+29067,31058
+29068,44908
+29069,28790
+29070,35582
+29071,28780,42246,44933
+29072,35319,24695
+29073,71557,24695
+29074,34326
+29075,54562
+29076,75576
+29077,47047,71567
+29078,75576
+29079,40825,61828,44221
+29080,44932,48215
+29081,60786
+29082,29081
+29083,29081
+29084,29081
+29085,29081
+29086,31058
+29087,61321
+29088,26627
+29089,21018
+29090,48884
+29091,76218,21013
+29092,19069
+29093,21012
+29094,52762,60418
+29095,58180
+29096,20977
+29097,35815
+29098,40424
+29099,29106
+29100,29112
+29101,24781
+29102,41005
+29103,26118
+29104,29106
+29105,26884
+29106,29102
+29107,31853
+29108,37099
+29109,5257
+29110,40999
+29111,41772
+29112,47327
+29113,49877,29106
+29114,29102
+29115,54446
+29116,55464
+29117,63677
+29118,67957
+29119,34149
+29120,19200
+29121,33725
+29122,29214
+29123,21474
+29124,69331
+29125,42039
+29126,62661
+29127,29206
+29128,55767
+29129,79097
+29130,30296
+29131,41729
+29132,28822
+29133,27466
+29134,29619
+29135,61646
+29136,78647
+29137,56289
+29138,30374
+29139,62981
+29140,35626
+29141,74187
+29142,66874
+29143,48126
+29144,18728
+29145,48126
+29146,42322
+29147,51713
+29148,51726
+29149,48084
+29150,42316
+29151,42316
+29152,73202
+29153,24126
+29154,1594
+29155,38053
+29156,26827
+29157,28872
+29158,15840
+29159,12071
+29160,68316
+29161,66786
+29162,23906
+29163,67883
+29164,43977
+29165,51929
+29166,60603
+29167,33500
+29168,49149
+29169,66260
+29170,44420
+29171,44232
+29172,29286
+29173,81656
+29174,35557
+29175,69818
+29176,23712
+29177,76989
+29178,73492
+29179,24781
+29180,25017
+29181,75086
+29182,50701
+29183,57531
+29184,47128
+29185,62637
+29186,73537
+29187,57066
+29188,54026
+29189,20743
+29190,39294
+29191,42539
+29192,48126
+29193,48126
+29194,73752
+29195,56454,34356
+29196,18663
+29197,32799
+29198,33789
+29199,57058
+29200,53848
+29201,53894
+29202,67432
+29203,79602
+29204,24268
+29205,66212
+29206,70426
+29207,67972
+29208,53848
+29209,61468
+29210,79282
+29211,21703
+29212,53067
+29213,50565
+29214,55761
+29215,71686
+29216,30939
+29217,51469
+29218,77666
+29219,33797
+29220,33851
+29221,37569
+29222,59970
+29223,32233
+29224,72310
+29225,39357
+29226,64287
+29227,35557
+29228,65777
+29229,31495
+29230,71719
+29231,38624
+29232,57640
+29233,39676
+29234,23012
+29235,67675
+29236,18709
+29237,30467
+29238,68057
+29239,39777
+29240,25119
+29241,79741
+29242,60788
+29243,65216
+29244,56179
+29245,29256
+29246,20122
+29247,20122
+29248,55221,67675
+29249,60786
+29250,44160
+29251,65262
+29252,60786
+29253,74982
+29254,19069
+29255,54562
+29256,54082
+29257,24679
+29258,31058
+29259,51719
+29260,44439
+29261,61321
+29262,18706
+29263,25092
+29264,50649
+29265,26064
+29266,42314
+29267,43380
+29268,43449
+29269,51099
+29270,29269
+29271,55884,29269
+29272,37701,29265
+29273,63996
+29274,65825
+29275,20745
+29276,46148
+29277,76682
+29278,19635
+29279,75764
+29280,81801
+29281,46901
+29282,29845
+29283,53624
+29284,63835
+29285,40753
+29286,40752
+29287,54562,57861
+29288,57722,77509
+29289,77509,28449
+29290,28812
+29291,21782
+29292,33644
+29293,52521
+29294,61537
+29295,33512
+29296,46256
+29297,43566
+29298,33512
+29299,79973
+29300,47455
+29301,68854
+29302,56832
+29303,69818
+29304,59308
+29305,22721
+29306,67651
+29307,71302
+29308,79547
+29309,79953
+29310,50438
+29311,64633
+29312,25094
+29313,65753
+29314,61145
+29315,76129
+29316,23796
+29317,6983
+29318,54503
+29319,27116
+29320,39802
+29321,57573
+29322,66889
+29323,65770
+29324,69286
+29325,77185
+29326,81907
+29327,65767
+29328,29321
+29329,81871
+29330,77985
+29331,79469
+29332,44682
+29333,31239
+29334,33176
+29335,60216
+29336,51649
+29337,22058
+29338,41004
+29339,46408
+29340,35184
+29341,51523
+29342,44561
+29343,60032
+29344,24007
+29345,40690
+29346,54469
+29347,79612
+29348,62740
+29349,66895
+29350,52674
+29351,22903
+29352,25574
+29353,26648
+29354,33542
+29355,51353
+29356,71062
+29357,66895
+29358,26498
+29359,26648
+29360,27781
+29361,46252,78096
+29362,76757
+29363,71062
+29364,29349
+29365,21703
+29366,53848
+29367,79282
+29368,63472
+29369,58154
+29370,46136,20889
+29371,20053
+29372,78598
+29373,72701
+29374,77641
+29375,23095
+29376,29374
+29377,20038
+29378,41417
+29379,26299
+29380,60769
+29381,64417
+29382,76104
+29383,55499
+29384,40752
+29385,56492
+29386,73837
+29387,54562
+29388,21462
+29389,19629
+29390,72142
+29391,50585
+29392,23095
+29393,23095
+29394,633
+29395,25770
+29396,40774
+29397,74778
+29398,42229
+29399,76802
+29400,81865
+29401,27756
+29402,70033
+29403,54043
+29404,30186
+29405,30865
+29406,20977
+29407,24245
+29408,69543
+29409,37577
+29410,68697
+29411,67049
+29412,21703
+29413,29409
+29414,29409
+29415,19421
+29416,59542
+29417,44437
+29418,37405
+29419,62954
+29420,41929
+29421,21222
+29422,37479
+29423,19272
+29424,75027
+29425,61209
+29426,62432
+29427,67148
+29428,19483
+29429,34137
+29430,32372
+29431,32372
+29432,58161
+29433,28536
+29434,35702
+29435,72506
+29436,27555
+29437,79214
+29438,66690
+29439,18784
+29440,55348
+29441,50976
+29442,25499
+29443,70548
+29444,34985
+29445,21703
+29446,29445
+29447,29452
+29448,29445
+29449,29445
+29450,29452
+29451,29445
+29452,79282
+29453,38522
+29454,79385
+29455,77575
+29456,66157
+29457,35522
+29458,31245
+29459,28346
+29460,48156
+29461,62178
+29462,38562
+29463,38523
+29464,67054
+29465,30939
+29466,72712
+29467,21485
+29468,69978
+29469,35792
+29470,19143
+29471,27267
+29472,23284
+29473,51786
+29474,29936
+29475,29936
+29476,63064
+29477,75807
+29478,29936
+29479,80977
+29480,66025,61979
+29481,75292
+29482,67432
+29483,72052
+29484,74303
+29485,57065
+29486,22420
+29487,41228
+29488,56116
+29489,44437
+29490,50888
+29491,34470
+29492,29502
+29493,29503
+29494,67675,38385
+29495,19069
+29496,64231,77509
+29497,29502
+29498,29503
+29499,81482
+29500,53599
+29501,20355
+29502,37179
+29503,41743
+29504,53599
+29505,80978
+29506,44593
+29507,19379
+29508,55652
+29509,55651
+29510,28236
+29511,32362
+29512,37193
+29513,35787
+29514,56607
+29515,57573
+29516,44914
+29517,51435
+29518,25495
+29519,40065
+29520,61240
+29521,70840
+29522,72960
+29523,78725
+29524,61670
+29525,58803
+29526,79794
+29527,46847
+29528,36840
+29529,50701
+29530,62844
+29531,71324
+29532,29557
+29533,50872
+29534,22268
+29535,54408
+29536,31635
+29537,50888
+29538,63416
+29539,35362
+29540,37908
+29541,37913
+29542,50603
+29543,51177
+29544,29548
+29545,41516
+29546,53239
+29547,58099
+29548,46894
+29549,65531
+29550,57573
+29551,43818
+29552,50637
+29553,76633
+29554,53167
+29555,80106
+29556,29488
+29557,29928
+29558,32535
+29559,71321
+29560,71341
+29561,33729
+29562,56832
+29563,79097
+29564,24243
+29565,75513
+29566,72791
+29567,77642
+29568,21898
+29569,21898
+29570,34461
+29571,66551
+29572,41221
+29573,78980
+29574,21272
+29575,46620
+29576,63569
+29577,63566
+29578,69677
+29579,24442
+29580,29230
+29581,35322
+29582,31862
+29583,29779
+29584,51939
+29585,45813
+29586,33186
+29587,46256
+29588,51440
+29589,69662
+29590,36430
+29591,48478
+29592,56832
+29593,25002
+29594,71192
+29595,53842
+29596,70164
+29597,50563
+29598,73736
+29599,60538
+29600,40987
+29601,27688
+29602,33845
+29603,2291,65374
+29604,33351
+29605,48629
+29606,26656
+29607,70434
+29608,65449
+29609,55768
+29610,25729
+29611,31070
+29612,29349
+29613,67548
+29614,67547
+29615,67548
+29616,31349
+29617,31349
+29618,39423
+29619,44012
+29620,61609
+29621,75510
+29622,37513
+29623,30391
+29624,50742
+29625,42351
+29626,59970
+29627,42351
+29628,29621
+29629,47390
+29630,50637
+29631,46708
+29632,51677
+29633,71318
+29634,31353
+29635,21765
+29636,32793
+29637,45741
+29638,9453
+29639,21448
+29640,22819
+29641,31259
+29642,53657
+29643,55742
+29644,55955
+29645,21771
+29646,46901,21771
+29647,21765
+29648,46899
+29649,51705
+29650,66157
+29651,21618
+29652,23258
+29653,21620
+29654,56604
+29655,30836
+29656,76256
+29657,81578,55246
+29658,66953
+29659,68242
+29660,68242
+29661,41417
+29662,66786
+29663,56832
+29664,31564
+29665,56540
+29666,70395
+29667,23206
+29668,49697,73752
+29669,25256
+29670,49697,73752
+29671,46591
+29672,24314
+29673,38984
+29674,45271
+29675,66142
+29676,34350
+29677,71446
+29678,76441
+29679,75383
+29680,60994
+29681,26027
+29682,50303
+29683,66785
+29684,80619
+29685,21952
+29686,22059
+29687,66953
+29688,50117
+29689,69870
+29690,69860
+29691,47716
+29692,47655
+29693,58734,29692
+29694,44740
+29695,77374
+29696,67839
+29697,63879
+29698,41265
+29699,62142
+29700,48281
+29701,78208
+29702,33812
+29703,51653
+29704,48663
+29705,51205
+29706,67614
+29707,51174
+29708,47716
+29709,77277
+29710,40063
+29711,64142
+29712,66727
+29713,63218
+29714,39423
+29715,73761
+29716,69818
+29717,72959
+29718,28790
+29719,21477
+29720,35879
+29721,28170
+29722,49945
+29723,23675
+29724,55760
+29725,47920
+29726,34350
+29727,24354
+29728,24354
+29729,68987
+29730,21802
+29731,79608,29780
+29732,50979
+29733,52938
+29734,52939
+29735,81227
+29736,62858
+29737,72283
+29738,29737
+29739,30374
+29740,61766
+29741,35474
+29742,23748
+29743,79418
+29744,37712
+29745,62145
+29746,48474
+29747,32492
+29748,22788
+29749,31991
+29750,34660
+29751,71686
+29752,37333
+29753,29751
+29754,27777
+29755,63602
+29756,26598
+29757,59970
+29758,43107
+29759,39676
+29760,35822
+29761,784
+29762,36868
+29763,76389
+29764,74659
+29765,31646
+29766,38155
+29767,24245
+29768,38044
+29769,31245
+29770,75742
+29771,82152
+29772,38807
+29773,54127
+29774,34363
+29775,66377
+29776,54993
+29777,49444
+29778,66676
+29779,66674
+29780,79608
+29781,22032
+29782,39676
+29783,79608
+29784,39676,29780
+29785,41444
+29786,79608
+29787,79608
+29788,47026
+29789,47026
+29790,70033
+29791,29784
+29792,45813
+29793,40293
+29794,67608
+29795,39423
+29796,52956
+29797,56962
+29798,76981
+29799,34864
+29800,21510
+29801,37179
+29802,61318
+29803,60032
+29804,53700
+29805,69325
+29806,53693
+29807,20577
+29808,63603
+29809,53975
+29810,75976
+29811,62459
+29812,24710
+29813,25889
+29814,24354
+29815,24354
+29816,74597
+29817,51395
+29818,49222
+29819,39423
+29820,24874
+29821,33504
+29822,71686
+29823,34924
+29824,31111
+29825,74825
+29826,72448
+29827,49426
+29828,81791
+29829,69597
+29830,68304
+29831,67574
+29832,38624
+29833,69335
+29834,79282
+29835,18728
+29836,38237
+29837,28091
+29838,32578
+29839,58508
+29840,42228
+29841,52172
+29842,66953
+29843,63424
+29844,54503
+29845,76680
+29846,22133
+29847,39062
+29848,43686
+29849,60602
+29850,64520
+29851,64974
+29852,77185
+29853,47432
+29854,36800
+29855,32691
+29856,53660
+29857,18054
+29858,53717
+29859,46091
+29860,41090
+29861,75330
+29862,33798
+29863,37750
+29864,32522
+29865,39701
+29866,77802
+29867,58166
+29868,21013
+29869,24244
+29870,31842
+29871,53717
+29872,54413
+29873,39928
+29874,18969
+29875,54414
+29876,70516
+29877,74493
+29878,74501
+29879,75701
+29880,48801
+29881,45493
+29882,28418
+29883,29418
+29884,32155
+29885,32491
+29886,33455
+29887,42523
+29888,42523
+29889,48661
+29890,31757
+29891,35376
+29892,30937
+29893,78721
+29894,32155
+29895,23851
+29896,78788
+29897,67614
+29898,60216
+29899,65752
+29900,66953
+29901,71119
+29902,36373
+29903,46409
+29904,60534
+29905,27062
+29906,21314
+29907,62810
+29908,46767
+29909,38475
+29910,38475,24289
+29911,75917
+29912,58108
+29913,6654
+29914,29912
+29915,22788
+29916,27276
+29917,32578
+29918,80143
+29919,36669,80896
+29920,44975
+29921,76718
+29922,61732
+29923,26166
+29924,41444
+29925,31991
+29926,39423
+29927,53959
+29928,32578,31590
+29929,69860
+29930,32775
+29931,76664
+29932,43434
+29933,74628
+29934,78767
+29935,60603
+29936,22053
+29937,47505
+29938,29936
+29939,59340
+29940,23912
+29941,64809
+29942,22667
+29943,57856
+29944,69051
+29945,79156
+29946,74355
+29947,75384
+29948,55984
+29949,40757
+29950,72142
+29951,72146
+29952,42217
+29953,49997
+29954,38369
+29955,46486
+29956,53176
+29957,45813
+29958,26409
+29959,21359
+29960,48513
+29961,20751
+29962,41023
+29963,30584
+29964,20642
+29965,52762
+29966,34989
+29967,61402
+29968,73222
+29969,21938
+29970,27408
+29971,31759
+29972,31970
+29973,53842
+29974,39677
+29975,67822
+29976,74939
+29977,34350
+29978,26298
+29979,66953
+29980,41877
+29981,33184
+29982,38563
+29983,71895
+29984,60216
+29985,71446
+29986,71398
+29987,77641
+29988,25202
+29989,43516
+29990,43516
+29991,27093
+29992,50184
+29993,62030
+29994,75772
+29995,26077
+29996,32492
+29997,59762
+29998,22686
+29999,64455,56836
+30000,35627
+30001,63423
+30002,23896
+30003,40070
+30004,78579
+30005,37356
+30006,21289
+30007,72893
+30008,27688
+30009,77366
+30010,75548
+30011,36329
+30012,58378
+30013,32691
+30014,37721
+30015,36540
+30016,80794
+30017,21922
+30018,19654
+30019,38053
+30020,61291
+30021,41306,79260
+30022,24446
+30023,41556
+30024,29332
+30025,41773
+30026,69604
+30027,48030
+30028,54553
+30029,54561
+30030,68642
+30031,45007
+30032,61082
+30033,24188
+30034,78685
+30035,39063
+30036,39817
+30037,68647
+30038,78684
+30039,34437
+30040,41444
+30041,56087
+30042,48038
+30043,67093
+30044,67093
+30045,70914
+30046,79572
+30047,81161
+30048,51400
+30049,51773
+30050,66418
+30051,68619
+30052,50296
+30053,65663
+30054,66040
+30055,55497
+30056,63424
+30057,25687
+30058,54437
+30059,24977
+30060,50297
+30061,58410
+30062,58508
+30063,44792
+30064,26705
+30065,80143
+30066,45075
+30067,45811
+30068,58783,30073
+30069,36434
+30070,30062
+30071,63103
+30072,39049
+30073,32578
+30074,34200
+30075,64435
+30076,40473
+30077,31477
+30078,81781
+30079,26800
+30080,45202
+30081,74689
+30082,54082
+30083,30082
+30084,60786
+30085,54562
+30086,26243
+30087,59616
+30088,46035
+30089,52773
+30090,56941
+30091,76012
+30092,60032
+30093,45346
+30094,37317
+30095,39049
+30096,72165
+30097,39777
+30098,61262
+30099,45125
+30100,36603
+30101,36604
+30102,30223
+30103,46408
+30104,41875
+30105,48111
+30106,72416
+30107,38475
+30108,38475
+30109,72212
+30110,56451
+30111,79429
+30112,25256
+30113,36049
+30114,36872
+30115,68064
+30116,78095
+30117,62062
+30118,24306
+30119,59904
+30120,28889
+30121,79608
+30122,33093
+30123,71719
+30124,32310
+30125,32310
+30126,39591
+30127,34199
+30128,59286
+30129,59286
+30130,55952
+30131,53828
+30132,45260
+30133,71895
+30134,30120
+30135,53422
+30136,24839
+30137,61415
+30138,69677
+30139,24442
+30140,80583
+30141,70976
+30142,51956
+30143,5485
+30144,61060
+30145,68692
+30146,30954
+30147,35108
+30148,45813
+30149,27276
+30150,77641
+30151,45316
+30152,69148
+30153,54813
+30154,21237
+30155,36434
+30156,23190
+30157,59378
+30158,67957
+30159,69503
+30160,41743
+30161,41022
+30162,24007
+30163,39428
+30164,29102
+30165,37179
+30166,29102
+30167,77641
+30168,37181
+30169,41005
+30170,58888
+30171,26884
+30172,52486
+30173,54445
+30174,54445
+30175,79261
+30176,56176
+30177,68719
+30178,27844
+30179,74296
+30180,53251
+30181,81482
+30182,67703
+30183,41980
+30184,20755
+30185,30184
+30186,30200
+30187,81800
+30188,30200
+30189,40414
+30190,31784
+30191,34284
+30192,57963,20517,21074
+30193,68780
+30194,51677
+30195,53064
+30196,40296
+30197,57669
+30198,21233
+30199,75033
+30200,81786
+30201,30183
+30202,77105
+30203,69197
+30204,40473
+30205,37199
+30206,31539
+30207,8945
+30208,54921
+30209,30206
+30210,30206
+30211,30206
+30212,30206
+30213,30206
+30214,30206
+30215,33072
+30216,48787
+30217,39294
+30218,42539
+30219,67432
+30220,58088
+30221,28318
+30222,58004
+30223,54967
+30224,30223
+30225,37896
+30226,59970
+30227,23780
+30228,38903
+30229,31058
+30230,77641
+30231,24007
+30232,25306
+30233,68869
+30234,24726
+30235,24404
+30236,27114
+30237,33353
+30238,29759
+30239,40021
+30240,41877
+30241,44429
+30242,51640
+30243,49888
+30244,54469
+30245,55552
+30246,30253
+30247,69102
+30248,72803
+30249,30231
+30250,75057
+30251,78943
+30252,26232
+30253,26884
+30254,62266
+30255,28849
+30256,58948
+30257,25574
+30258,41344
+30259,74036
+30260,76991
+30261,64635
+30262,65737
+30263,32806
+30264,47388
+30265,31626
+30266,81578
+30267,63581
+30268,30267
+30269,56534
+30270,30273
+30271,63587
+30272,68280
+30273,68290
+30274,69030
+30275,63584
+30276,60018
+30277,50008
+30278,48209
+30279,31070
+30280,31446
+30281,44474
+30282,41103
+30283,79701
+30284,67651
+30285,30935
+30286,69335
+30287,57594
+30288,68869
+30289,39517
+30290,70686
+30291,44817
+30292,44817
+30293,77453
+30294,31689
+30295,78096
+30296,64958
+30297,73838
+30298,67131
+30299,72518
+30300,30305
+30301,65108
+30302,30391
+30303,70305
+30304,70922
+30305,33422
+30306,62147
+30307,18951
+30308,41203
+30309,42470
+30310,70629
+30311,48445
+30312,39767
+30313,24353
+30314,41773
+30315,30099
+30316,59413
+30317,71408
+30318,40564
+30319,73554
+30320,20517
+30321,75740
+30322,66101,30878
+30323,21112
+30324,28013
+30325,28322
+30326,29040
+30327,31509
+30328,32776
+30329,53628
+30330,71927
+30331,76689
+30332,78755
+30333,63424
+30334,41669
+30335,41943
+30336,53717
+30337,67201
+30338,80782
+30339,18713
+30340,73464
+30341,60598
+30342,38880
+30343,81416
+30344,46707
+30345,35634
+30346,80434
+30347,80524
+30348,75741,79222
+30349,78625
+30350,67594
+30351,45813
+30352,58776
+30353,21703
+30354,79282
+30355,51395
+30356,22652
+30357,48126
+30358,31885
+30359,31885
+30360,77375
+30361,21930
+30362,30391
+30363,59480,60715
+30364,55499
+30365,68316
+30366,38053
+30367,45096
+30368,47487
+30369,22902
+30370,56293
+30371,46507
+30372,22901
+30373,66153
+30374,22901
+30375,25957
+30376,24726
+30377,49533
+30378,49532
+30379,47455
+30380,59745
+30381,60797
+30382,68843
+30383,39437
+30384,30392
+30385,30952
+30386,21930
+30387,21930
+30388,62513
+30389,26980
+30390,33401
+30391,44437
+30392,44451
+30393,63663
+30394,37987
+30395,56361
+30396,30394
+30397,57098
+30398,59668
+30399,61789
+30400,71334
+30401,31548
+30402,32755
+30403,37430
+30404,60216
+30405,81626
+30406,33401
+30407,43313
+30408,37201
+30409,25094
+30410,26301
+30411,43858
+30412,30413
+30413,73863
+30414,48318
+30415,22900
+30416,29296
+30417,18910
+30418,69688
+30419,81647
+30420,21941
+30421,19368
+30422,75693
+30423,58004
+30424,46035
+30425,18950
+30426,35684
+30427,31604
+30428,59543
+30429,32505
+30430,50369
+30431,71557
+30432,54825
+30433,41264
+30434,31307
+30435,19311
+30436,31308
+30437,31795
+30438,61243
+30439,19734
+30440,12335
+30441,60078
+30442,63809
+30443,50440
+30444,4255
+30445,5391
+30446,27497
+30447,30680
+30448,66040
+30449,38823
+30450,23791
+30451,37875
+30452,31548
+30453,41344
+30454,73838
+30455,37858
+30456,37859
+30457,61136
+30458,20751
+30459,24243
+30460,43104
+30461,25094
+30462,37622
+30463,56180
+30464,49797
+30465,21218
+30466,76627
+30467,79746
+30468,48532
+30469,60216
+30470,47415
+30471,23183
+30472,71493
+30473,79743,24354
+30474,28654
+30475,30474
+30476,30186
+30477,31537
+30478,38334
+30479,69033
+30480,79746
+30481,30566
+30482,69216
+30483,75701
+30484,49805
+30485,70183
+30486,80193
+30487,30467
+30488,29120
+30489,70427
+30490,71624
+30491,75708
+30492,29253
+30493,53624
+30494,64159
+30495,28532
+30496,41022
+30497,60718
+30498,53454
+30499,58798
+30500,79746
+30501,37622
+30502,40411
+30503,47673
+30504,58336
+30505,54447
+30506,52578
+30507,48126
+30508,45851
+30509,48126
+30510,35626
+30511,40906,52802
+30512,80576
+30513,45813
+30514,71120
+30515,79236
+30516,65120
+30517,52896
+30518,42049
+30519,40752
+30520,54562
+30521,56737
+30522,45813
+30523,30532
+30524,21622
+30525,39964
+30526,76054
+30527,70569
+30528,78096
+30529,21729
+30530,73838
+30531,78866
+30532,69543
+30533,29244
+30534,21480
+30535,38168
+30536,70033
+30537,61153
+30538,49341
+30539,78126
+30540,29935
+30541,78544
+30542,76981
+30543,34924
+30544,61331
+30545,32891
+30546,44798
+30547,72153
+30548,35676
+30549,30546
+30550,23440
+30551,28121
+30552,54761
+30553,79963
+30554,60847
+30555,82151
+30556,29513
+30557,60216
+30558,19689
+30559,81626
+30560,80438
+30561,52497
+30562,69197
+30563,69197
+30564,78698
+30565,20082
+30566,30391
+30567,53474
+30568,28535
+30569,30565
+30570,51901
+30571,61209
+30572,77114
+30573,45239
+30574,57932
+30575,78679
+30576,25494
+30577,81549
+30578,64142
+30579,41773
+30580,78164
+30581,58611
+30582,65036
+30583,19231
+30584,60076
+30585,30583
+30586,30584
+30587,46921
+30588,36373
+30589,22819
+30590,23622
+30591,66702
+30592,41004
+30593,38965
+30594,74735
+30595,44041
+30596,61433
+30597,19755
+30598,31245
+30599,41004
+30600,63405
+30601,75740
+30602,23851
+30603,34924
+30604,74492
+30605,45813
+30606,45812
+30607,52578
+30608,57909
+30609,27737
+30610,46932
+30611,55499
+30612,45196
+30613,30612
+30614,63809
+30615,57280
+30616,79517
+30617,73018
+30618,54440
+30619,22271
+30620,45033
+30621,72052
+30622,70633
+30623,73112
+30624,71752
+30625,48403
+30626,48541
+30627,54916
+30628,45420
+30629,63071
+30630,30681
+30631,50701
+30632,30634
+30633,62145
+30634,54425
+30635,30621
+30636,54440
+30637,69308
+30638,30588
+30639,40752
+30640,28346
+30641,57333
+30642,38696
+30643,33928
+30644,58166
+30645,55854
+30646,63343
+30647,72983
+30648,81781
+30649,31795
+30650,77399
+30651,19272
+30652,21671
+30653,47497
+30654,34647
+30655,25886
+30656,32807
+30657,35926
+30658,37987
+30659,30650
+30660,40055
+30661,51074
+30662,27818
+30663,77637
+30664,38822
+30665,62513
+30666,76351
+30667,41413
+30668,74924
+30669,57573
+30670,41004
+30671,71107
+30672,69860
+30673,57926
+30674,39556
+30675,30621
+30676,22274
+30677,28358
+30678,55649
+30679,36106
+30680,30682
+30681,30682
+30682,54425
+30683,53842
+30684,19385
+30685,56450
+30686,37900
+30687,31885
+30688,31338
+30689,54044
+30690,69286
+30691,69246
+30692,56917
+30693,19382
+30694,53842
+30695,30694
+30696,30694
+30697,21745
+30698,26047
+30699,38629
+30700,30681
+30701,53238
+30702,69460
+30703,35996
+30704,36991
+30705,12333
+30706,16022
+30707,19664
+30708,19947
+30709,20055
+30710,45813
+30711,21337
+30712,14722
+30713,22438
+30714,22878
+30715,23054
+30716,23103
+30717,23270
+30718,23543
+30719,26547
+30720,23573
+30721,23689
+30722,36710
+30723,25331
+30724,25578
+30725,25725
+30726,26091
+30727,26465
+30728,26662
+30729,26898
+30730,27044
+30731,27126
+30732,27307
+30733,27538
+30734,27609
+30735,27641
+30736,28927
+30737,29187
+30738,30605
+30739,32074
+30740,32331
+30741,33735
+30742,33803
+30743,34549
+30744,22164
+30745,35887
+30746,35971
+30747,36029
+30748,36707
+30749,37207
+30750,37316
+30751,38537
+30752,79282
+30753,6654
+30754,39658
+30755,70033
+30756,41371
+30757,41396
+30758,41406
+30759,55495
+30760,32888
+30761,42244
+30762,43291
+30763,43722
+30764,43987
+30765,41071
+30766,66855
+30767,38067
+30768,38067
+30769,46516
+30770,46538
+30771,46662
+30772,47001
+30773,47455
+30774,47469
+30775,47470
+30776,49138
+30777,49468
+30778,49826
+30779,63642
+30780,40778
+30781,50184
+30782,50603
+30783,51393
+30784,51454
+30785,51967
+30786,52179
+30787,52451
+30788,52521
+30789,81161
+30790,52687
+30791,52857
+30792,26951
+30793,53496
+30794,54132
+30795,54468
+30796,55174
+30797,55223
+30798,55236
+30799,55236
+30800,55294
+30801,55561
+30802,55581
+30803,48461
+30804,55677
+30805,55933
+30806,56618
+30807,57098
+30808,57252
+30809,80927
+30810,57975
+30811,58291
+30812,61092
+30813,61510
+30814,61901
+30815,80364
+30816,63005
+30817,63930
+30818,64399
+30819,64613
+30820,51805
+30821,56376
+30822,67548
+30823,68373
+30824,67545
+30825,69728
+30826,70010
+30827,31417
+30828,71151
+30829,79416
+30830,72220
+30831,72402
+30832,58088
+30833,72754
+30834,72928
+30835,73291
+30836,73323
+30837,73323
+30838,74344
+30839,75583
+30840,76478
+30841,55765
+30842,76812
+30843,77143
+30844,45813
+30845,79066
+30846,81125
+30847,80061
+30848,80188
+30849,79468
+30850,80356
+30851,80389
+30852,80735
+30853,35996
+30854,46285
+30855,80408
+30856,58595
+30857,81694
+30858,81907
+30859,82001
+30860,44705
+30861,82086
+30862,63316
+30863,42451
+30864,29626
+30865,60216
+30866,58127
+30867,56979
+30868,57071
+30869,59501
+30870,72961
+30871,81669
+30872,72960
+30873,35792
+30874,44440
+30875,30687
+30876,19379
+30877,42351
+30878,35534
+30879,3695
+30880,21703
+30881,31443
+30882,18840
+30883,19171
+30884,75018
+30885,39101
+30886,35480
+30887,70224
+30888,67921
+30889,75613
+30890,77374
+30891,60216
+30892,34546
+30893,48524
+30894,71333
+30895,61789
+30896,71334
+30897,52918
+30898,58587
+30899,81669
+30900,42351
+30901,59970
+30902,44437
+30903,19733
+30904,28234
+30905,28638
+30906,49459
+30907,63139
+30908,63316
+30909,69281
+30910,69281
+30911,28529
+30912,31548
+30913,28541
+30914,80174
+30915,77575
+30916,29732
+30917,76518
+30918,74846
+30919,49343
+30920,59431
+30921,59435
+30922,77319
+30923,27405
+30924,27781
+30925,65213
+30926,58005,65215
+30927,31148
+30928,71527
+30929,22128
+30930,41607
+30931,77585
+30932,71302
+30933,72776
+30934,21597
+30935,71314
+30936,78698
+30937,48401
+30938,41614
+30939,58168
+30940,37712
+30941,56009
+30942,57945
+30943,78682
+30944,19353,19472
+30945,20575
+30946,20577
+30947,51705
+30948,56357
+30949,63587
+30950,65691
+30951,51388
+30952,38601
+30953,71837
+30954,66953
+30955,22054
+30956,35717
+30957,36335
+30958,56243
+30959,27281
+30960,52608
+30961,31043
+30962,35386
+30963,45051
+30964,74924
+30965,53964
+30966,50802
+30967,74924
+30968,28600
+30969,71439
+30970,71439
+30971,56116
+30972,74281
+30973,22744
+30974,34299
+30975,65185
+30976,76663
+30977,53384
+30978,18720
+30979,45465
+30980,26598
+30981,44440
+30982,19689
+30983,30392
+30984,30393
+30985,81781
+30986,63187
+30987,67938
+30988,33187
+30989,57346
+30990,61422
+30991,19730
+30992,38053
+30993,32372
+30994,31564
+30995,32426
+30996,19361
+30997,81610
+30998,47561
+30999,24841
+31000,78652
+31001,65139
+31002,34602
+31003,20698
+31004,29237
+31005,35772
+31006,53718
+31007,43913
+31008,24821
+31009,41413
+31010,48471
+31011,51990
+31012,75917
+31013,52957
+31014,39578
+31015,81003
+31016,31058
+31017,18791
+31018,31021
+31019,41406
+31020,31104
+31021,57187
+31022,3145
+31023,69153
+31024,60216
+31025,30566
+31026,61670
+31027,21218
+31028,56200
+31029,30467
+31030,64142
+31031,31030
+31032,35534
+31033,70526
+31034,46092
+31035,34904
+31036,44579
+31037,62495
+31038,27233
+31039,59306
+31040,59308
+31041,55767
+31042,32790
+31043,40752
+31044,53454
+31045,57187
+31046,63314
+31047,54825
+31048,32793
+31049,61153
+31050,38362
+31051,62956
+31052,31047
+31053,60810
+31054,35679
+31055,34808
+31056,81003
+31057,37776
+31058,28774
+31059,39002
+31060,41413
+31061,48530
+31062,50717
+31063,50985
+31064,51120
+31065,51340
+31066,55250
+31067,57187
+31068,61052
+31069,69153
+31070,64142
+31071,78594
+31072,38600
+31073,68771
+31074,31010
+31075,36451
+31076,31077
+31077,42246,63304
+31078,71437
+31079,37780
+31080,62742
+31081,70031
+31082,22907
+31083,41413
+31084,53648
+31085,18956
+31086,31885
+31087,79387
+31088,56362
+31089,76210
+31090,62145
+31091,28063
+31092,48919
+31093,48920
+31094,60216
+31095,77374
+31096,50885
+31097,71649
+31098,31121,51558
+31099,51566
+31100,52497
+31101,71439
+31102,18941
+31103,72011
+31104,73836
+31105,53059
+31106,29418
+31107,34025
+31108,38807,31126
+31109,39962
+31110,42094
+31111,44004
+31112,48030
+31113,49694,33882
+31114,63193
+31115,78703
+31116,55052
+31117,56484
+31118,57927
+31119,59020
+31120,37913
+31121,68290,31126
+31122,68431
+31123,69860
+31124,75018
+31125,75613
+31126,60216
+31127,22321
+31128,76929
+31129,18369
+31130,21510
+31131,77641
+31132,31446
+31133,31443
+31134,49296
+31135,61866
+31136,61871
+31137,71517
+31138,69544
+31139,19228
+31140,77945
+31141,78240
+31142,34921
+31143,77374
+31144,62184
+31145,41022
+31146,63470
+31147,40150
+31148,47868
+31149,63314
+31150,21889
+31151,73672
+31152,71866
+31153,22130
+31154,54724
+31155,27077
+31156,43864
+31157,29427
+31158,47388
+31159,19927
+31160,69439
+31161,60450
+31162,31158
+31163,32790
+31164,74924
+31165,48533
+31166,21087
+31167,56348
+31168,60074
+31169,31587
+31170,22896
+31171,43935
+31172,44913
+31173,61075
+31174,23048
+31175,41484
+31176,55768
+31177,29643
+31178,31177
+31179,19732
+31180,21895
+31181,31690
+31182,70977
+31183,42327
+31184,73837
+31185,27540
+31186,30404
+31187,30392,52790
+31188,27581
+31189,59668
+31190,53686
+31191,53688
+31192,75962
+31193,53761
+31194,69358
+31195,21950
+31196,68809
+31197,63348
+31198,54809
+31199,48766
+31200,41022
+31201,31213
+31202,47929
+31203,44925
+31204,53984
+31205,26302,59615
+31206,49446
+31207,52497
+31208,53463
+31209,56179
+31210,65929
+31211,30278
+31212,54786
+31213,70411
+31214,19732
+31215,31885
+31216,19733
+31217,56357
+31218,57927
+31219,57964
+31220,48250
+31221,24875
+31222,31245
+31223,35449
+31224,41577
+31225,56179
+31226,63066
+31227,74281
+31228,22053
+31229,19815
+31230,54446
+31231,21200
+31232,30295
+31233,50985
+31234,54257
+31235,31080
+31236,19539
+31237,35634
+31238,21638
+31239,40564
+31240,47487
+31241,72959
+31242,63060
+31243,62648
+31244,43736
+31245,72959
+31246,72983
+31247,31690
+31248,63026
+31249,50765
+31250,68843
+31251,67615
+31252,72959
+31253,31249
+31254,37686
+31255,73275
+31256,30009
+31257,71431
+31258,27552
+31259,50769
+31260,31650
+31261,31650
+31262,19091
+31263,31689
+31264,46827
+31265,36868
+31266,41210
+31267,11869
+31268,37411
+31269,37450
+31270,19374
+31271,52920
+31272,60603
+31273,20647
+31274,21135
+31275,45472
+31276,53454
+31277,30405
+31278,34924
+31279,55767
+31280,31277
+31281,59420
+31282,31283
+31283,63064
+31284,32718
+31285,21745
+31286,79737
+31287,67131
+31288,65956
+31289,41602
+31290,27368
+31291,40752
+31292,81161
+31293,40752
+31294,21873
+31295,44449
+31296,53865
+31297,32792
+31298,52773
+31299,74735
+31300,57461
+31301,69860
+31302,18939
+31303,44440
+31304,78678
+31305,65133
+31306,30891
+31307,53761
+31308,35532
+31309,26980
+31310,28234
+31311,66953
+31312,75057
+31313,30891
+31314,81927
+31315,19979
+31316,19397
+31317,34166
+31318,65760
+31319,35926
+31320,59862
+31321,49360
+31322,25367
+31323,30891
+31324,62852
+31325,59020
+31326,41607
+31327,31326
+31328,46528
+31329,68830
+31330,68778
+31331,41614
+31332,74825
+31333,39813
+31334,62991
+31335,35523
+31336,34772
+31337,73997
+31338,66153
+31339,68342
+31340,48157
+31341,65759
+31342,67459
+31343,63286
+31344,45464
+31345,68928
+31346,33500
+31347,74735
+31348,40147
+31349,72959
+31350,57987
+31351,20311
+31352,47836
+31353,44440
+31354,70524
+31355,24706
+31356,43103
+31357,53069
+31358,22747
+31359,64742
+31360,31489
+31361,19736
+31362,31885
+31363,58256
+31364,28467
+31365,35498
+31366,30952
+31367,35437
+31368,66058
+31369,35625
+31370,30568
+31371,37612
+31372,30275
+31373,54774
+31374,65561
+31375,35680
+31376,33793
+31377,22853
+31378,51470
+31379,54953
+31380,51205
+31381,35620
+31382,45153
+31383,44484
+31384,28774
+31385,81004
+31386,41610
+31387,30968
+31388,19591,42481
+31389,24354
+31390,37207
+31391,74939
+31392,33105
+31393,45491
+31394,32155
+31395,72119
+31396,30575
+31397,31905
+31398,22475,19072
+31399,24555
+31400,38880
+31401,72052
+31402,29327
+31403,30391
+31404,21889
+31405,71315
+31406,50912
+31407,53761
+31408,69818
+31409,35787
+31410,50910
+31411,45198
+31412,53069
+31413,61213
+31414,26452
+31415,47203
+31416,72409
+31417,44704
+31418,44609
+31419,65057
+31420,50885
+31421,50885
+31422,71557
+31423,63434
+31424,48136
+31425,69331
+31426,29623
+31427,43913
+31428,53759
+31429,41846
+31430,55522
+31431,79282
+31432,48126
+31433,49444
+31434,81400
+31435,52586
+31436,57035
+31437,40617
+31438,66859
+31439,46754
+31440,19121
+31441,74478
+31442,77521
+31443,65691
+31444,48423
+31445,69543
+31446,78684
+31447,20760
+31448,63314
+31449,60860
+31450,25917
+31451,19732
+31452,21328
+31453,22269
+31454,53608
+31455,76989
+31456,49155
+31457,79551
+31458,74132
+31459,27397
+31460,38828
+31461,49858
+31462,69521
+31463,55210
+31464,38427
+31465,59645
+31466,35706
+31467,31463
+31468,27574
+31469,30275
+31470,54839
+31471,30687
+31472,67758
+31473,19733
+31474,60177
+31475,34211
+31476,66164
+31477,60417
+31478,70234
+31479,30693
+31480,31482
+31481,62935
+31482,62723
+31483,47717
+31484,31481
+31485,31481,50623
+31486,31481
+31487,31481
+31488,61789
+31489,19438
+31490,39811
+31491,39813
+31492,68236
+31493,68238
+31494,44219
+31495,31347
+31496,35533
+31497,76258
+31498,49802
+31499,49803
+31500,65133
+31501,69761
+31502,34433
+31503,30280
+31504,51990
+31505,78666
+31506,63314
+31507,32527
+31508,65749
+31509,30596
+31510,68285
+31511,25645
+31512,75057
+31513,56176
+31514,30575
+31515,30568
+31516,71719
+31517,66431
+31518,45195
+31519,51068
+31520,60476
+31521,60483
+31522,72482
+31523,21938
+31524,58166
+31525,74281
+31526,31597
+31527,67634
+31528,79712
+31529,61488
+31530,69335
+31531,19737
+31532,31531
+31533,32929
+31534,50630
+31535,61764
+31536,39809
+31537,60019
+31538,28543
+31539,57187
+31540,64160
+31541,31919
+31542,56176
+31543,74939
+31544,25094
+31545,79908
+31546,74994
+31547,63314
+31548,23764
+31549,80009
+31550,61792
+31551,61789
+31552,19497
+31553,66157
+31554,31337
+31555,31080
+31556,56087
+31557,31081
+31558,39577
+31559,71120
+31560,48629
+31561,53474
+31562,30659
+31563,32792
+31564,31546
+31565,76258
+31566,48629
+31567,48030
+31568,59020
+31569,32691
+31570,41469
+31571,62179
+31572,47661
+31573,64142
+31574,21770
+31575,21765
+31576,76135
+31577,33486
+31578,53054
+31579,35342
+31580,35344
+31581,62145
+31582,62455
+31583,31308
+31584,31308
+31585,40240
+31586,69284
+31587,78970
+31588,32819
+31589,40055
+31590,30697
+31591,62820
+31592,53202
+31593,37123
+31594,27086
+31595,31012
+31596,31012
+31597,34459
+31598,25087
+31599,34632
+31600,70091
+31601,31446
+31602,48504
+31603,50985
+31604,45096
+31605,65931
+31606,77147
+31607,49440
+31608,30883
+31609,34701
+31610,54257
+31611,62948
+31612,72421
+31613,39375
+31614,30882
+31615,30878
+31616,48423
+31617,27592
+31618,47908
+31619,61767
+31620,75018
+31621,66153
+31622,53454
+31623,71454
+31624,47730
+31625,72917
+31626,31497
+31627,60216
+31628,31213
+31629,59812
+31630,35624
+31631,35611
+31632,35512
+31633,35695
+31634,31630
+31635,31630
+31636,21638
+31637,63334
+31638,30267
+31639,30391
+31640,81578
+31641,18919
+31642,21898
+31643,45097
+31644,51677,75058
+31645,30981
+31646,71313
+31647,60216
+31648,81307
+31649,35682
+31650,38042
+31651,35510
+31652,34327
+31653,35922
+31654,66155
+31655,68964
+31656,50340
+31657,25810
+31658,80416
+31659,43109
+31660,43342
+31661,57475
+31662,57475
+31663,34620
+31664,39556
+31665,67161
+31666,42351
+31667,54440
+31668,19228
+31669,57423
+31670,41406
+31671,37199
+31672,77708
+31673,30280
+31674,68475
+31675,50507
+31676,37827
+31677,76633
+31678,13679
+31679,28538
+31680,19143
+31681,39528
+31682,48992
+31683,39513
+31684,76940
+31685,53067
+31686,53958
+31687,23340
+31688,24353
+31689,34924
+31690,81798
+31691,25915
+31692,24057
+31693,55662
+31694,49484
+31695,57556
+31696,58144
+31697,18720
+31698,81578
+31699,34209
+31700,69923
+31701,59376
+31702,26295
+31703,25924
+31704,31700
+31705,57987
+31706,56336
+31707,39276
+31708,57987
+31709,51988
+31710,35154
+31711,29936
+31712,65049
+31713,70426
+31714,70428
+31715,31041
+31716,48803
+31717,57987
+31718,78774
+31719,57987
+31720,51988
+31721,79745
+31722,68342
+31723,30952
+31724,57987
+31725,53727
+31726,26172
+31727,74275
+31728,63665
+31729,43247
+31730,43335
+31731,22122
+31732,81781
+31733,56357
+31734,21620
+31735,48766
+31736,68196
+31737,65691
+31738,72271
+31739,37119
+31740,62409
+31741,25087
+31742,19228
+31743,53660
+31744,18988
+31745,28234
+31746,38
+31747,39567
+31748,32961
+31749,38798
+31750,31094
+31751,49683
+31752,57927
+31753,37405
+31754,66859
+31755,66953
+31756,73323
+31757,75018
+31758,77185
+31759,36602
+31760,62145
+31761,48534
+31762,35684
+31763,35624
+31764,48427
+31765,46171
+31766,78899
+31767,45449
+31768,70091
+31769,56179
+31770,75742
+31771,45546
+31772,27000
+31773,30598
+31774,74233
+31775,41005
+31776,69860
+31777,30900
+31778,65768
+31779,53760
+31780,61145
+31781,53761
+31782,77637
+31783,21889
+31784,62454
+31785,31363
+31786,78746
+31787,58257
+31788,73934
+31789,22127
+31790,45096
+31791,69237
+31792,49296
+31793,76258
+31794,50985
+31795,72051
+31796,28235
+31797,65793
+31798,71961
+31799,63348
+31800,34299
+31801,28530
+31802,66377
+31803,26934
+31804,38634
+31805,28529
+31806,68355
+31807,65393
+31808,77452
+31809,53916
+31810,39115
+31811,60216
+31812,34924
+31813,38637
+31814,27405
+31815,68831
+31816,71395
+31817,25234
+31818,61866
+31819,61871
+31820,71517
+31821,69544
+31822,50875
+31823,77431
+31824,77491
+31825,48423
+31826,50638
+31827,54047
+31828,23854
+31829,81807
+31830,62986
+31831,40044
+31832,23790
+31833,60260
+31834,71302
+31835,42351
+31836,21889
+31837,28538
+31838,79608
+31839,63072
+31840,30391
+31841,38335
+31842,68929
+31843,77972
+31844,35793
+31845,33184
+31846,70629
+31847,65478
+31848,31861
+31849,40148
+31850,69682
+31851,76054
+31852,31846
+31853,26884
+31854,49897
+31855,49134
+31856,45953
+31857,31861
+31858,28539
+31859,21240
+31860,79261
+31861,49897
+31862,60700
+31863,73507
+31864,30348
+31865,49158
+31866,53731
+31867,40793,19654
+31868,31874
+31869,24007
+31870,65552
+31871,28168
+31872,1319
+31873,75742
+31874,53660
+31875,38218
+31876,31874
+31877,27022
+31878,39505
+31879,67381
+31880,31881
+31881,46760
+31882,27276
+31883,82077
+31884,32691
+31885,44440
+31886,62456
+31887,21938
+31888,30658
+31889,57187
+31890,22452
+31891,32551
+31892,29664
+31893,21620
+31894,6979
+31895,31427
+31896,31429
+31897,43913
+31898,70633
+31899,29652
+31900,76692
+31901,58177
+31902,64620
+31903,78286
+31904,57689
+31905,56180
+31906,31905
+31907,59358
+31908,59361
+31909,29839
+31910,33178
+31911,60847
+31912,45051
+31913,61874
+31914,39153
+31915,59918
+31916,52406
+31917,54082,31276
+31918,65385
+31919,20120
+31920,23689
+31921,54553
+31922,58616
+31923,66851
+31924,74250
+31925,61070
+31926,37317
+31927,52068
+31928,62948
+31929,37921
+31930,32691
+31931,78984
+31932,30169
+31933,59549
+31934,36591
+31935,53337
+31936,37042
+31937,79375
+31938,31427
+31939,53452
+31940,65925
+31941,76054
+31942,37187
+31943,37191
+31944,25302
+31945,60216
+31946,75873
+31947,53648
+31948,65893
+31949,37712
+31950,35926,50885
+31951,79635
+31952,37712
+31953,35557
+31954,81462
+31955,68869
+31956,35557
+31957,35558
+31958,35557
+31959,47198
+31960,24306
+31961,70976
+31962,66868
+31963,60935
+31964,20935
+31965,57861
+31966,24427
+31967,31978
+31968,70033
+31969,40752
+31970,41877
+31971,74067
+31972,45813
+31973,79608
+31974,65451
+31975,58088
+31976,37317
+31977,37317
+31978,77641
+31979,31973
+31980,20262
+31981,70033
+31982,70033
+31983,77641
+31984,25645
+31985,21412
+31986,73153
+31987,41972
+31988,80995
+31989,74067
+31990,79874
+31991,51475
+31992,39049
+31993,31278
+31994,24807
+31995,53619
+31996,66985
+31997,70392
+31998,44013
+31999,80626
+32000,54562
+32001,38837
+32002,48126
+32003,11934
+32004,69235
+32005,48353
+32006,19421
+32007,28764
+32008,50784
+32009,77985
+32010,66727
+32011,40230
+32012,67744
+32013,28237
+32014,28237
+32015,28475
+32016,23021
+32017,77112
+32018,69331
+32019,36491
+32020,36482
+32021,36758
+32022,43913
+32023,45730
+32024,65767
+32025,45813
+32026,34924
+32027,30191
+32028,35944
+32029,45812
+32030,45813
+32031,40564
+32032,23095,61257
+32033,61504
+32034,57289
+32035,31978
+32036,77641
+32037,69294
+32038,48435
+32039,54044
+32040,52497
+32041,25446
+32042,70033
+32043,72791
+32044,59826
+32045,79211
+32046,49646
+32047,28323
+32048,53542
+32049,27015
+32050,43893
+32051,28323
+32052,64015
+32053,27997
+32054,32083
+32055,31043
+32056,71108
+32057,29230
+32058,80583
+32059,32083
+32060,64645
+32061,25184
+32062,38629
+32063,30325
+32064,41648
+32065,43487
+32066,39563
+32067,48862
+32068,29286
+32069,54655
+32070,55546
+32071,79261
+32072,62029
+32073,63676
+32074,45813
+32075,64819
+32076,71212
+32077,79416
+32078,80583
+32079,43471
+32080,74192
+32081,75013
+32082,80821
+32083,64293
+32084,32014
+32085,32694
+32086,32909
+32087,53848
+32088,45243
+32089,35996
+32090,55115
+32091,59305
+32092,61646
+32093,21475
+32094,21475
+32095,61646
+32096,62578
+32097,21474
+32098,73838
+32099,48648
+32100,41494
+32101,61591
+32102,62187
+32103,41055
+32104,73412
+32105,73412
+32106,25729
+32107,75665
+32108,43898
+32109,40752
+32110,46992
+32111,81626
+32112,34590
+32113,54953
+32114,63218
+32115,41444
+32116,53592
+32117,32083
+32118,73926
+32119,71103
+32120,72791
+32121,72913
+32122,73837
+32123,30298
+32124,31476
+32125,48087
+32126,61260
+32127,51319
+32128,73837
+32129,29349
+32130,35469
+32131,74640
+32132,21703
+32133,57870
+32134,48497
+32135,45490
+32136,48430
+32137,32135,57451
+32138,79341
+32139,32135,76420
+32140,48240
+32141,48792
+32142,33112
+32143,20760
+32144,70033
+32145,32718
+32146,63064
+32147,32146
+32148,58888
+32149,56894
+32150,63819
+32151,25234
+32152,38675
+32153,40053
+32154,30937
+32155,40240
+32156,49484
+32157,31740
+32158,74500
+32159,25094
+32160,21597
+32161,29217
+32162,40597
+32163,30391
+32164,59305
+32165,30685
+32166,38562
+32167,37832
+32168,23206
+32169,64478
+32170,68289
+32171,37187
+32172,36569
+32173,76162
+32174,65075
+32175,47908
+32176,47716
+32177,59857
+32178,65649
+32179,71310
+32180,51885
+32181,34924
+32182,63357
+32183,64142
+32184,79165
+32185,73012
+32186,65139
+32187,59137
+32188,53499
+32189,75058
+32190,55627
+32191,81800,40265
+32192,32506
+32193,68236
+32194,30891
+32195,49341
+32196,59427
+32197,51677
+32198,38276
+32199,38562
+32200,34861
+32201,28790
+32202,31058
+32203,27514
+32204,39423
+32205,69641
+32206,66505
+32207,28538
+32208,47552
+32209,34114
+32210,48002
+32211,47552
+32212,34357
+32213,35567
+32214,35565
+32215,61034
+32216,61033
+32217,25101
+32218,41341
+32219,63072
+32220,42351
+32221,20760,61263
+32222,21477
+32223,27949
+32224,38135
+32225,73201
+32226,43469
+32227,59329
+32228,32225,49670
+32229,54562
+32230,25953
+32231,50104
+32232,80185
+32233,58287
+32234,40752
+32235,48144
+32236,38475
+32237,26827
+32238,44769
+32239,51092
+32240,51091
+32241,74689
+32242,77820
+32243,70231
+32244,70231
+32245,77820
+32246,76877
+32247,34587
+32248,74560
+32249,69010
+32250,38807
+32251,62455
+32252,32254
+32253,29935
+32254,64474
+32255,48852
+32256,76633
+32257,79249
+32258,68290
+32259,56182
+32260,65925
+32261,81703
+32262,31539
+32263,21996
+32264,54100
+32265,22002
+32266,71617
+32267,40752
+32268,74957
+32269,58403
+32270,20531
+32271,20118
+32272,23897
+32273,31690
+32274,48131
+32275,18984
+32276,18983
+32277,20530
+32278,33498
+32279,50824
+32280,57983
+32281,32269
+32282,32269
+32283,73837
+32284,27730
+32285,44348
+32286,77308
+32287,40423
+32288,20745
+32289,32276
+32290,38792
+32291,45812
+32292,45813
+32293,79282
+32294,48126
+32295,65659
+32296,22149
+32297,22149
+32298,22149
+32299,22149
+32300,32547
+32301,38369
+32302,45813
+32303,29917
+32304,23643
+32305,77820
+32306,69681
+32307,75782
+32308,22789
+32309,22853
+32310,11858
+32311,70033
+32312,28747
+32313,48031
+32314,35557
+32315,60936
+32316,75860
+32317,78140
+32318,48210
+32319,59732
+32320,39423
+32321,69213
+32322,32320
+32323,76345
+32324,39049
+32325,61253
+32326,70033
+32327,61251
+32328,27167
+32329,39049
+32330,52497
+32331,68854
+32332,76060
+32333,81501
+32334,66862
+32335,45946
+32336,40752
+32337,45909
+32338,74738
+32339,76303
+32340,57637
+32341,66046
+32342,79261
+32343,45813
+32344,44491
+32345,62021
+32346,27945
+32347,33271
+32348,40526
+32349,23643
+32350,47432
+32351,30954
+32352,65501
+32353,81153
+32354,74939
+32355,52269
+32356,38887
+32357,76620
+32358,40519
+32359,28627
+32360,61311
+32361,21886
+32362,19382
+32363,53761
+32364,53842
+32365,63322
+32366,62145
+32367,32364
+32368,32364
+32369,74462
+32370,19492
+32371,62145
+32372,57187
+32373,9930
+32374,48791
+32375,57098
+32376,32373
+32377,41562
+32378,32374
+32379,39064
+32380,21218
+32381,60216
+32382,65591
+32383,42097
+32384,75057
+32385,60746
+32386,26936
+32387,32417
+32388,28702
+32389,31259
+32390,53624
+32391,21510
+32392,22112
+32393,22110
+32394,22157
+32395,30975
+32396,32415
+32397,65906
+32398,24874
+32399,32415
+32400,24392
+32401,19010
+32402,28618
+32403,21628
+32404,21882
+32405,50872
+32406,32481
+32407,33324
+32408,73722
+32409,62713
+32410,34511
+32411,32417
+32412,35680
+32413,64142
+32414,47526
+32415,40150
+32416,51319
+32417,48478
+32418,53717
+32419,30621
+32420,53109
+32421,53620
+32422,32421
+32423,32415
+32424,57553
+32425,57556
+32426,38222
+32427,36793
+32428,79992
+32429,61419
+32430,61488
+32431,61896
+32432,40150
+32433,63344
+32434,63791
+32435,65528
+32436,66341
+32437,66344
+32438,69852
+32439,70225
+32440,46268
+32441,72585
+32442,72763
+32443,32417
+32444,50637
+32445,20240
+32446,70428
+32447,68196
+32448,60216
+32449,75085
+32450,77441
+32451,36841
+32452,80613
+32453,9280
+32454,57562
+32455,43104
+32456,19379
+32457,40965
+32458,30351
+32459,29969
+32460,42447
+32461,46782
+32462,40967
+32463,29489
+32464,40962
+32465,53952
+32466,30971
+32467,67381
+32468,38381
+32469,32455
+32470,67381
+32471,30971
+32472,19379
+32473,65581
+32474,19492
+32475,19376
+32476,25495
+32477,19379
+32478,68686
+32479,68686
+32480,74132
+32481,44440
+32482,74575
+32483,72746
+32484,76114
+32485,27405
+32486,70987
+32487,78697
+32488,39296
+32489,78364
+32490,58804
+32491,72877
+32492,53648
+32493,69439
+32494,67745
+32495,30657
+32496,25234
+32497,72270
+32498,33799
+32499,51939
+32500,31905
+32501,77567
+32502,79953
+32503,57261
+32504,39101
+32505,19200
+32506,37199
+32507,69235
+32508,50652
+32509,35389
+32510,27930
+32511,32506
+32512,48157
+32513,69326
+32514,46962
+32515,46966
+32516,69887
+32517,81601
+32518,46958
+32519,66035
+32520,61404
+32521,66953
+32522,21474
+32523,34307
+32524,32527
+32525,32220
+32526,43809
+32527,21886
+32528,54412
+32529,77725
+32530,22036
+32531,81770
+32532,61303
+32533,65793
+32534,61779
+32535,53022
+32536,43814
+32537,46781
+32538,22128
+32539,37513
+32540,30190
+32541,38021
+32542,35557
+32543,59475
+32544,65702
+32545,60058
+32546,36461
+32547,32799
+32548,33486
+32549,29102
+32550,79062
+32551,28778
+32552,79168
+32553,79170
+32554,28080
+32555,48270
+32556,21886
+32557,19737
+32558,81798
+32559,31139
+32560,65215
+32561,31139
+32562,40150
+32563,31139
+32564,40393
+32565,33005
+32566,60537
+32567,61342
+32568,32578
+32569,38910
+32570,74275
+32571,56585
+32572,63426
+32573,25920
+32574,51738
+32575,58023
+32576,71103
+32577,79973
+32578,21745
+32579,63416
+32580,56176
+32581,51069
+32582,26302
+32583,23672
+32584,40680
+32585,57932
+32586,38051
+32587,42351
+32588,40680
+32589,78756
+32590,61159
+32591,28028
+32592,53063
+32593,45813
+32594,45813
+32595,59501
+32596,59849
+32597,36591
+32598,67479
+32599,69564
+32600,77192
+32601,61614
+32602,55523
+32603,60216
+32604,72270
+32605,23111
+32606,23796
+32607,32704
+32608,11856
+32609,19468
+32610,64727
+32611,60076
+32612,25359
+32613,45260
+32614,25599
+32615,32610
+32616,40752
+32617,45957
+32618,80789
+32619,50784
+32620,46468
+32621,44792
+32622,36933
+32623,50917
+32624,50919
+32625,33130
+32626,20745,62449
+32627,42327
+32628,54446
+32629,62910
+32630,33810
+32631,37986
+32632,45685
+32633,32638
+32634,19546
+32635,39517
+32636,71099
+32637,40192
+32638,81448
+32639,70033
+32640,66862
+32641,30598
+32642,34108
+32643,67175
+32644,44369
+32645,69677
+32646,81095
+32647,52481
+32648,57975
+32649,64399
+32650,67594
+32651,21240
+32652,21260
+32653,26827
+32654,30154
+32655,32645
+32656,52179
+32657,21248
+32658,47477
+32659,68630
+32660,44013
+32661,24704
+32662,57901
+32663,30099
+32664,56832
+32665,22122
+32666,36603
+32667,81176
+32668,74508
+32669,25770
+32670,80736
+32671,63191
+32672,25770
+32673,59382
+32674,33162
+32675,28790
+32676,28994
+32677,56832
+32678,37178
+32679,37058
+32680,24347
+32681,22510
+32682,34701
+32683,79274
+32684,70013
+32685,70627
+32686,29626
+32687,23488
+32688,78682
+32689,35586
+32690,63144
+32691,70629
+32692,32799
+32693,29758
+32694,64620
+32695,73863
+32696,30010
+32697,68236
+32698,76058
+32699,29587
+32700,73762
+32701,44009
+32702,72178
+32703,79874
+32704,70033
+32705,23946,23945
+32706,70033
+32707,33326
+32708,41738
+32709,31239
+32710,51298
+32711,79953
+32712,35359
+32713,43136
+32714,28091
+32715,56440
+32716,51277
+32717,53624
+32718,50338
+32719,60596
+32720,57934
+32721,25256
+32722,45009
+32723,26980
+32724,32722
+32725,51069
+32726,46826
+32727,47477
+32728,67050
+32729,46267
+32730,39534
+32731,32739
+32732,41657
+32733,58921
+32734,39676
+32735,70033
+32736,70033
+32737,74342
+32738,74343
+32739,42102
+32740,78364
+32741,66682
+32742,42076
+32743,54732
+32744,45096
+32745,46171
+32746,18950
+32747,23182
+32748,32512
+32749,34732
+32750,45680
+32751,41112
+32752,48329
+32753,25574
+32754,31618
+32755,56163
+32756,59305
+32757,56295
+32758,32604
+32759,34783
+32760,73401
+32761,55347
+32762,51928
+32763,74821
+32764,60216
+32765,71838
+32766,34108
+32767,69677
+32768,81794
+32769,32661
+32770,52989
+32771,48313
+32772,52352
+32773,59518
+32774,56832
+32775,33729
+32776,76877
+32777,37569
+32778,32516
+32779,20690
+32780,28747
+32781,67675
+32782,61088
+32783,63694
+32784,80941
+32785,71408
+32786,62029
+32787,81647
+32788,76227
+32789,20355
+32790,32795
+32791,32795
+32792,32795
+32793,21745
+32794,23760
+32795,19228
+32796,32797
+32797,35922
+32798,18721
+32799,60216
+32800,70761
+32801,60216
+32802,65925
+32803,46680
+32804,22152
+32805,26272
+32806,64142
+32807,21905
+32808,76776
+32809,18969
+32810,22118
+32811,38031
+32812,59645
+32813,57867
+32814,20533
+32815,21273
+32816,19648
+32817,57867,62159
+32818,40060
+32819,32807
+32820,58107
+32821,38392
+32822,18988
+32823,75015
+32824,34647
+32825,60216
+32826,19091,51677
+32827,78071
+32828,78061
+32829,55996
+32830,35922
+32831,23294
+32832,28536
+32833,59849
+32834,78755
+32835,39563
+32836,79211
+32837,58287
+32838,77145
+32839,16022
+32840,27093
+32841,23912
+32842,26289
+32843,26662
+32844,29784
+32845,49468
+32846,58595
+32847,70038
+32848,44013
+32849,72185
+32850,81176
+32851,45813
+32852,20745
+32853,39502
+32854,35611
+32855,20743
+32856,26832
+32857,47801
+32858,55229
+32859,41911
+32860,33474
+32861,33474
+32862,33474
+32863,51640
+32864,51640
+32865,51640
+32866,50717
+32867,71837
+32868,31563
+32869,56171
+32870,44449
+32871,60411
+32872,58158
+32873,58158
+32874,70033
+32875,39049
+32876,59020
+32877,32733
+32878,32875
+32879,39676
+32880,67201
+32881,64872,74939
+32882,79873
+32883,33455
+32884,26409
+32885,19364
+32886,60411
+32887,67601
+32888,33134
+32889,51468
+32890,37622
+32891,63064
+32892,79953
+32893,58088
+32894,55894
+32895,68422
+32896,80748
+32897,47278
+32898,39049
+32899,49059
+32900,32662
+32901,34661
+32902,75566
+32903,78698
+32904,44814
+32905,56292
+32906,37635
+32907,37712
+32908,70629
+32909,24188,43923
+32910,61402
+32911,22510
+32912,27506
+32913,25018
+32914,71938
+32915,58268
+32916,39847
+32917,81176
+32918,22786,32920
+32919,32920
+32920,72435
+32921,77666
+32922,53422
+32923,22032
+32924,59769,66755
+32925,77460
+32926,57552
+32927,64831
+32928,66673
+32929,62926
+32930,31635
+32931,32527
+32932,50874
+32933,56357
+32934,62179
+32935,51677
+32936,50637
+32937,44579
+32938,50905
+32939,71997
+32940,71348
+32941,51903
+32942,49745
+32943,65262
+32944,29957
+32945,39423
+32946,24427
+32947,37079
+32948,60334
+32949,39049
+32950,15879
+32951,30161
+32952,60216
+32953,70524
+32954,49444
+32955,63602
+32956,51092
+32957,75962
+32958,41582
+32959,53205
+32960,54562
+32961,47389
+32962,24051
+32963,80618
+32964,63144
+32965,38513
+32966,78755
+32967,20702
+32968,21295
+32969,20409
+32970,53339
+32971,49443
+32972,78928
+32973,32968
+32974,81789
+32975,35448
+32976,20743
+32977,79009
+32978,67703
+32979,68277
+32980,56325
+32981,56316
+32982,73316
+32983,45030
+32984,56941
+32985,49134
+32986,75086
+32987,21447
+32988,32991
+32989,32516
+32990,47230
+32991,35048
+32992,54562
+32993,48862
+32994,39367
+32995,70984
+32996,35525
+32997,72716
+32998,21959
+32999,69544
+33000,35565
+33001,81983
+33002,70426
+33003,70427
+33004,70427
+33005,61246
+33006,30391
+33007,37812
+33008,45035
+33009,58417
+33010,35655
+33011,39149
+33012,58384
+33013,22786,33014
+33014,72435
+33015,52853,33014
+33016,35557
+33017,50439
+33018,72715
+33019,73838
+33020,19578
+33021,29652
+33022,38204
+33023,70626
+33024,48640
+33025,48304
+33026,73516
+33027,39703
+33028,48514
+33029,38256
+33030,28778
+33031,61819
+33032,48150
+33033,63918
+33034,64275
+33035,29485
+33036,69408
+33037,37635
+33038,25393
+33039,74778
+33040,64403
+33041,51473
+33042,68807
+33043,67745
+33044,63026
+33045,73650
+33046,79608
+33047,23021
+33048,42097
+33049,33075
+33050,68692
+33051,50910
+33052,40068
+33053,74904
+33054,25522
+33055,31343
+33056,28700
+33057,59542
+33058,45051
+33059,64446
+33060,31795
+33061,40150
+33062,28235
+33063,24781
+33064,45406
+33065,61646
+33066,79930
+33067,77575
+33068,59541
+33069,77324
+33070,58162
+33071,67565
+33072,25290
+33073,25413
+33074,79908
+33075,25620
+33076,58523
+33077,56836
+33078,81193
+33079,63987
+33080,45813
+33081,32718
+33082,20698
+33083,46490
+33084,70033
+33085,70033
+33086,57594
+33087,51216
+33088,23884
+33089,20672
+33090,42076
+33091,64688
+33092,25770
+33093,33184
+33094,32233
+33095,81763
+33096,61355
+33097,81121
+33098,32347
+33099,67479
+33100,51120
+33101,70033
+33102,42351
+33103,42351
+33104,31742
+33105,70526
+33106,30300
+33107,77008
+33108,81738
+33109,79436
+33110,77014
+33111,34564
+33112,49221,33121
+33113,77008
+33114,29286
+33115,41182
+33116,61251
+33117,43362
+33118,41646
+33119,21905
+33120,49217
+33121,65562
+33122,50985
+33123,33112
+33124,72575
+33125,62914
+33126,81065
+33127,62922
+33128,68005
+33129,61251
+33130,31043
+33131,33644
+33132,79469
+33133,73081
+33134,45813
+33135,79259
+33136,44697
+33137,4374
+33138,68557
+33139,38667
+33140,77108
+33141,71212
+33142,35534
+33143,47665
+33144,81075
+33145,48038
+33146,21237
+33147,63819
+33148,79608
+33149,52830
+33150,52876
+33151,45513
+33152,25434
+33153,64438
+33154,57478
+33155,31743
+33156,19837,25202
+33157,51540
+33158,80185
+33159,27405
+33160,41606
+33161,70987
+33162,55261
+33163,26884
+33164,25800
+33165,26884
+33166,70524
+33167,56832
+33168,73573
+33169,51408
+33170,49134
+33171,31080
+33172,33102
+33173,50784
+33174,34924
+33175,50649
+33176,35512
+33177,32580
+33178,21718
+33179,55494
+33180,76074
+33181,72716
+33182,38782
+33183,61647
+33184,71686
+33185,37241
+33186,79009
+33187,79009
+33188,47183
+33189,25087
+33190,20647
+33191,24251
+33192,28065
+33193,28066
+33194,65548
+33195,60612
+33196,54562
+33197,76196
+33198,33191
+33199,70395
+33200,53624
+33201,76206
+33202,57934
+33203,26488
+33204,68280
+33205,34181
+33206,63422
+33207,60598
+33208,41875
+33209,21361
+33210,61246
+33211,81789
+33212,34924
+33213,81788
+33214,19979
+33215,18740
+33216,71516
+33217,31039
+33218,43377
+33219,66786
+33220,63424
+33221,22790
+33222,32390
+33223,34849
+33224,63326
+33225,54257
+33226,58283
+33227,27742
+33228,64520
+33229,33219
+33230,31565
+33231,28788
+33232,27151
+33233,71997
+33234,60612
+33235,58144
+33236,43273
+33237,48787
+33238,39294
+33239,42539
+33240,57113
+33241,52811
+33242,82056
+33243,66953
+33244,30953
+33245,74067
+33246,65629
+33247,24781
+33248,57187
+33249,66964
+33250,41729
+33251,29357
+33252,78020
+33253,79874
+33254,79874
+33255,54181
+33256,54181
+33257,79874
+33258,76361
+33259,21770
+33260,58798
+33261,51523
+33262,21568
+33263,51408
+33264,59122
+33265,25256
+33266,38168
+33267,48414
+33268,46988
+33269,53238
+33270,69443
+33271,33275
+33272,23679
+33273,29845
+33274,21777
+33275,24306
+33276,53830
+33277,79259
+33278,52658
+33279,4424
+33280,39563
+33281,37632
+33282,42044
+33283,29968
+33284,38555
+33285,19233
+33286,72437
+33287,24163
+33288,50398
+33289,49222
+33290,25101
+33291,28079
+33292,31858
+33293,21568
+33294,59420
+33295,37858
+33296,37859
+33297,34149
+33298,44682
+33299,72791
+33300,28153
+33301,70675
+33302,65753
+33303,65753
+33304,65754
+33305,65754
+33306,39406
+33307,34949
+33308,40986
+33309,40986
+33310,79187,79211
+33311,50297
+33312,59300
+33313,79211
+33314,66474
+33315,44474
+33316,71338
+33317,63124
+33318,63124
+33319,39373
+33320,22099
+33321,55495
+33322,48485
+33323,22152
+33324,75433
+33325,44474
+33326,33318
+33327,71341
+33328,41004
+33329,35631
+33330,27215
+33331,55785
+33332,36363
+33333,45813
+33334,37183
+33335,43311
+33336,81781
+33337,62617
+33338,37356
+33339,29936
+33340,29936
+33341,70392
+33342,68474
+33343,81735
+33344,58036
+33345,21707
+33346,78755
+33347,39613
+33348,31137
+33349,17469
+33350,61259
+33351,63790
+33352,46268
+33353,32986,31616
+33354,31618
+33355,77952
+33356,40040
+33357,46490
+33358,19228
+33359,42092
+33360,22128
+33361,73470
+33362,49803
+33363,26884
+33364,45813
+33365,37623
+33366,41911
+33367,36041
+33368,75518
+33369,24851
+33370,54562
+33371,31919
+33372,74151
+33373,33350
+33374,32603
+33375,35944
+33376,28600
+33377,58050
+33378,62145
+33379,76160
+33380,76160
+33381,42049
+33382,29737
+33383,33479
+33384,62145
+33385,24391
+33386,37166
+33387,73341
+33388,66939
+33389,69285
+33390,59611
+33391,59616
+33392,41022
+33393,33729
+33394,56179
+33395,57934
+33396,74567
+33397,34008
+33398,70214
+33399,34211
+33400,64534
+33401,57333
+33402,25302
+33403,30275
+33404,33403
+33405,54082
+33406,61956
+33407,53648
+33408,69887
+33409,67819
+33410,33452
+33411,42093
+33412,46317
+33413,66240
+33414,29731
+33415,39676
+33416,44626
+33417,57682
+33418,64674
+33419,23946
+33420,70033
+33421,1526
+33422,53736
+33423,62793
+33424,37411
+33425,40747
+33426,18987
+33427,48478
+33428,37450
+33429,62720
+33430,74281
+33431,32691
+33432,35557
+33433,40564
+33434,67957
+33435,30543
+33436,63138
+33437,19580
+33438,26662
+33439,47948
+33440,69931
+33441,23181
+33442,24732,41914
+33443,50817
+33444,61377
+33445,40283
+33446,46507
+33447,33597
+33448,66292,43168
+33449,63720
+33450,31245
+33451,34698
+33452,69544
+33453,51464
+33454,61078
+33455,51464
+33456,36443
+33457,32185
+33458,65614
+33459,60353
+33460,81865
+33461,81336
+33462,81337
+33463,50652
+33464,58739
+33465,70033
+33466,67703
+33467,41980
+33468,60032
+33469,61659
+33470,61651
+33471,40472
+33472,37616
+33473,31718
+33474,35557
+33475,37179
+33476,41743
+33477,63317
+33478,27813
+33479,34285
+33480,62145
+33481,47709
+33482,51730
+33483,50872
+33484,77288
+33485,62454
+33486,62456,74601
+33487,49026
+33488,31587
+33489,26728
+33490,43814
+33491,36841
+33492,78678
+33493,43853
+33494,69554
+33495,77472
+33496,39406
+33497,27118
+33498,34209
+33499,18790
+33500,53628
+33501,35879
+33502,57898
+33503,35879
+33504,69923
+33505,41923
+33506,81722
+33507,38624
+33508,73805
+33509,25796
+33510,25796
+33511,43377
+33512,33500
+33513,33500
+33514,33500
+33515,33500
+33516,33500
+33517,20938
+33518,50922
+33519,77145
+33520,79282
+33521,30062
+33522,65925
+33523,34209
+33524,75313
+33525,70646
+33526,27441
+33527,61257
+33528,74867
+33529,60032
+33530,31291
+33531,77308
+33532,75086
+33533,60742
+33534,51437
+33535,34924
+33536,74846
+33537,60540
+33538,59306
+33539,70629
+33540,67574
+33541,35273
+33542,33548
+33543,55668
+33544,59305
+33545,72791
+33546,35247
+33547,20698
+33548,76981
+33549,66953
+33550,34107
+33551,73439
+33552,37635
+33553,27997
+33554,67273
+33555,25001
+33556,19069
+33557,19069
+33558,67675
+33559,61703
+33560,48024
+33561,36872
+33562,44439
+33563,38475
+33564,42246
+33565,58158
+33566,74939
+33567,19069
+33568,75954
+33569,63191,75955
+33570,21671
+33571,26854
+33572,32926
+33573,33323
+33574,31126
+33575,48164
+33576,70395
+33577,81781
+33578,68281
+33579,69440
+33580,52495
+33581,44701
+33582,40752
+33583,69235
+33584,65879
+33585,60126
+33586,76657
+33587,65666
+33588,56564
+33589,38278
+33590,65631
+33591,72421
+33592,59765
+33593,55688
+33594,39018
+33595,19935
+33596,38385
+33597,67101
+33598,22051
+33599,81247
+33600,38053
+33601,33600
+33602,33600
+33603,73434
+33604,18740
+33605,48215
+33606,31910
+33607,20977
+33608,58161
+33609,49155
+33610,81794
+33611,24295
+33612,18910
+33613,74689,82053
+33614,67131
+33615,71517
+33616,31616
+33617,28475
+33618,61335
+33619,51901
+33620,67148
+33621,54953
+33622,33621
+33623,60042
+33624,60044
+33625,58088
+33626,48144
+33627,47047
+33628,74297
+33629,33626
+33630,51159
+33631,78755
+33632,60278
+33633,76161
+33634,82169
+33635,44558
+33636,28235
+33637,43225
+33638,81482
+33639,31417
+33640,33638
+33641,68854
+33642,72575
+33643,55236
+33644,33645
+33645,71398
+33646,33645
+33647,58088
+33648,21012
+33649,70033
+33650,59549
+33651,20355
+33652,21703
+33653,39792,55091
+33654,55826
+33655,79282
+33656,20355
+33657,78941
+33658,30508
+33659,37162,39014
+33660,59126
+33661,73836
+33662,45755
+33663,33662
+33664,44474
+33665,42488
+33666,33671,42489
+33667,63434
+33668,58162
+33669,72016
+33670,24249
+33671,24251,54264
+33672,52464
+33673,52469
+33674,45873
+33675,24823
+33676,51339
+33677,60554
+33678,63467
+33679,33678
+33680,64031
+33681,73837
+33682,33678
+33683,55471
+33684,53717
+33685,77212
+33686,77216
+33687,78436
+33688,71817
+33689,39608
+33690,54763
+33691,56246
+33692,70987
+33693,20289
+33694,36694
+33695,44156
+33696,33644
+33697,32461
+33698,46966
+33699,79848
+33700,76229
+33701,66766
+33702,48126
+33703,32718
+33704,54189
+33705,47198
+33706,39446
+33707,21770
+33708,68808
+33709,44347
+33710,57906
+33711,34389
+33712,56058
+33713,20079
+33714,77641
+33715,45813
+33716,28591
+33717,49944
+33718,28253
+33719,60534
+33720,40752
+33721,56601
+33722,23966
+33723,79175
+33724,37513
+33725,57261
+33726,30153
+33727,39367
+33728,28028
+33729,41022
+33730,39381
+33731,39379
+33732,39379
+33733,39375
+33734,61355
+33735,40752
+33736,28419
+33737,40758
+33738,23232
+33739,40578
+33740,80753
+33741,70033
+33742,43986
+33743,28596
+33744,6458
+33745,79076
+33746,66040
+33747,51068
+33748,34398
+33749,47432
+33750,44013
+33751,35944
+33752,39606
+33753,23182
+33754,27892
+33755,28535
+33756,28530
+33757,31742
+33758,30975
+33759,34771
+33760,75066
+33761,39049
+33762,67001
+33763,40752
+33764,43313
+33765,81462
+33766,56180
+33767,81717
+33768,34591
+33769,72959
+33770,59970
+33771,55690
+33772,80714
+33773,32508
+33774,34924
+33775,61335
+33776,66153
+33777,34924
+33778,33777
+33779,61251
+33780,64071
+33781,52678
+33782,60032
+33783,57535
+33784,61508
+33785,26352
+33786,26669
+33787,59377
+33788,59378
+33789,21671
+33790,55761
+33791,40701
+33792,51058
+33793,55734
+33794,62034
+33795,68236
+33796,51928
+33797,60076
+33798,60216
+33799,35838,60077
+33800,75548,33797
+33801,33798,30361
+33802,68236
+33803,45813
+33804,50717
+33805,44232
+33806,68060
+33807,20670
+33808,61117
+33809,68060
+33810,52904
+33811,28054
+33812,31245
+33813,21475
+33814,51468
+33815,82151
+33816,28600
+33817,46857
+33818,54909
+33819,33818
+33820,74778
+33821,33772
+33822,66696
+33823,22821
+33824,70033
+33825,25714
+33826,44083
+33827,20973
+33828,37321
+33829,28467
+33830,19468
+33831,25168
+33832,47491
+33833,78632
+33834,49437
+33835,19279
+33836,24897
+33837,25770
+33838,30588
+33839,54267
+33840,27090
+33841,64409
+33842,50383
+33843,53519
+33844,53628
+33845,65262
+33846,80607
+33847,79087
+33848,68168
+33849,31029
+33850,66953
+33851,52211
+33852,74067
+33853,28780
+33854,67410
+33855,53884
+33856,65869
+33857,69406
+33858,63212
+33859,78116
+33860,61395
+33861,25018
+33862,20743
+33863,25022
+33864,77268
+33865,45254
+33866,75654
+33867,37513
+33868,67310
+33869,33777
+33870,31753
+33871,69782
+33872,32603
+33873,32604
+33874,34556
+33875,33876
+33876,53283
+33877,30391
+33878,31803
+33879,31812
+33880,37780
+33881,45969
+33882,60138
+33883,33885
+33884,55612
+33885,63070
+33886,64831
+33887,21620
+33888,75018
+33889,48157
+33890,52920
+33891,71439
+33892,26947,26948,26949
+33893,33933
+33894,62703
+33895,37179
+33896,53760
+33897,33933
+33898,30930
+33899,64293
+33900,41731
+33901,64293
+33902,39517
+33903,60213
+33904,64779
+33905,51472
+33906,53986
+33907,28776
+33908,57360
+33909,48156
+33910,29677
+33911,58803
+33912,58798
+33913,39616
+33914,47737
+33915,28164
+33916,32497
+33917,62914
+33918,39676
+33919,34786
+33920,31816
+33921,32710
+33922,47432
+33923,76664
+33924,46767
+33925,72931
+33926,38227
+33927,76664
+33928,26947
+33929,81615
+33930,76631
+33931,57982
+33932,76664
+33933,76672
+33934,68258
+33935,27081
+33936,58384
+33937,70033
+33938,50117
+33939,51395
+33940,57230
+33941,26947
+33942,76663
+33943,67119
+33944,68236
+33945,62999
+33946,68238
+33947,69704
+33948,69701
+33949,71395
+33950,50824
+33951,49334
+33952,33934
+33953,28964
+33954,47432
+33955,33934
+33956,51319
+33957,76633
+33958,70183
+33959,51249
+33960,31372
+33961,73915
+33962,25949
+33963,34209
+33964,38053
+33965,28790
+33966,25431
+33967,42436,72990
+33968,58798
+33969,33797,29197
+33970,51558
+33971,72990
+33972,68909
+33973,68909
+33974,61622
+33975,29737,7764
+33976,29321
+33977,33976
+33978,75917
+33979,35620
+33980,76631
+33981,59970
+33982,21474
+33983,41877
+33984,40666
+33985,59605
+33986,22455
+33987,62147
+33988,36565
+33989,39149
+33990,48149
+33991,36395
+33992,50359
+33993,51069
+33994,72959
+33995,51825
+33996,54098
+33997,45813
+33998,60216
+33999,56241
+34000,26462
+34001,80612
+34002,34271
+34003,53210
+34004,35595
+34005,56957
+34006,63659
+34007,70058
+34008,61655
+34009,78816
+34010,70524
+34011,48037
+34012,47753
+34013,25706
+34014,59970
+34015,34017,55839
+34016,60216
+34017,45472
+34018,25019
+34019,66164
+34020,35771
+34021,20112
+34022,77399
+34023,69010
+34024,27508
+34025,40240
+34026,66468
+34027,63065
+34028,77635
+34029,48514
+34030,28790
+34031,27531
+34032,18866
+34033,37345
+34034,66035
+34035,62145
+34036,50139
+34037,68123
+34038,72959
+34039,58161
+34040,49769
+34041,28530
+34042,37802
+34043,37802
+34044,45309
+34045,74904
+34046,66889
+34047,37317
+34048,23897
+34049,51395
+34050,31155
+34051,19629
+34052,28177
+34053,78925
+34054,57735
+34055,23796
+34056,27858
+34057,27422
+34058,46176
+34059,62809
+34060,80174
+34061,76662
+34062,23643
+34063,49769
+34064,64831
+34065,73838
+34066,23748
+34067,40685
+34068,30367
+34069,50318
+34070,38648
+34071,62794
+34072,60216
+34073,63655
+34074,35682
+34075,50875
+34076,80497
+34077,38031
+34078,57867,62159
+34079,18988
+34080,57934
+34081,65908,48640
+34082,67213
+34083,67365
+34084,47898
+34085,51154
+34086,57357
+34087,35924
+34088,34085
+34089,60216
+34090,63187
+34091,62712
+34092,81462
+34093,76664
+34094,22665
+34095,30231
+34096,61866
+34097,61871
+34098,34771,77435
+34099,28790
+34100,21669
+34101,60603
+34102,54183
+34103,81413
+34104,77454
+34105,38667
+34106,49769
+34107,28307
+34108,33178
+34109,38053
+34110,28790
+34111,79419
+34112,22034
+34113,78790
+34114,56179
+34115,34207
+34116,58161
+34117,57143
+34118,81807
+34119,64831
+34120,72064
+34121,28530
+34122,63357
+34123,66092
+34124,71321
+34125,72506
+34126,39281
+34127,35565
+34128,71704
+34129,38170
+34130,46285
+34131,79211
+34132,54188
+34133,53174
+34134,54181
+34135,57187
+34136,35188
+34137,63312
+34138,53473
+34139,62152
+34140,53473
+34141,28529
+34142,34827
+34143,54183
+34144,64965
+34145,66164
+34146,66164
+34147,49361
+34148,29120
+34149,46042
+34150,55596
+34151,66066
+34152,62054
+34153,58720
+34154,61355
+34155,74454
+34156,40950
+34157,32530
+34158,21745
+34159,53163
+34160,41444
+34161,37166
+34162,65151
+34163,58069
+34164,72983
+34165,76005
+34166,72983
+34167,75495
+34168,69153
+34169,34209
+34170,48136
+34171,29623
+34172,20723
+34173,65560,19091
+34174,31245
+34175,34207
+34176,53624
+34177,21770
+34178,38952
+34179,25157
+34180,52497
+34181,48474
+34182,33213
+34183,56292
+34184,44440
+34185,28792
+34186,34113
+34187,34114
+34188,79252
+34189,31062
+34190,34182
+34191,36999
+34192,47487
+34193,53717
+34194,60450
+34195,68237
+34196,65816
+34197,28539
+34198,22420
+34199,21745
+34200,21218
+34201,21765
+34202,57934
+34203,63357
+34204,21671
+34205,21669
+34206,34118,18968
+34207,63065
+34208,20409
+34209,28537
+34210,28530
+34211,19172
+34212,34211
+34213,32677
+34214,34861
+34215,71435
+34216,50905
+34217,62146
+34218,47026
+34219,39968
+34220,28346
+34221,39809
+34222,54043
+34223,19280
+34224,74275
+34225,21731
+34226,65057
+34227,20118
+34228,48087
+34229,50875
+34230,34229
+34231,54307
+34232,57472
+34233,60733
+34234,37393
+34235,35826
+34236,41117
+34237,47744
+34238,54314
+34239,21905
+34240,65581
+34241,74501
+34242,75766
+34243,77974
+34244,34908
+34245,52238
+34246,34671
+34247,61006
+34248,72685
+34249,67290
+34250,45126
+34251,74067
+34252,46962
+34253,46958
+34254,81501
+34255,19629
+34256,77341
+34257,24961
+34258,50784
+34259,45260
+34260,72790
+34261,33755
+34262,74275
+34263,35634
+34264,34881
+34265,18790,52146
+34266,39152
+34267,49360
+34268,58024
+34269,18793
+34270,31647
+34271,34089
+34272,37824,39151
+34273,59970
+34274,66049
+34275,60280
+34276,37561
+34277,65509
+34278,60216
+34279,47621
+34280,47621
+34281,35433
+34282,61422
+34283,47621
+34284,51729
+34285,62729
+34286,30557
+34287,37310
+34288,63416
+34289,63416
+34290,75566
+34291,58168
+34292,30391
+34293,54404
+34294,36721
+34295,49502
+34296,50638
+34297,31702
+34298,50085
+34299,63572,63066
+34300,63185
+34301,80515
+34302,79940
+34303,27280
+34304,22152
+34305,73838
+34306,69130
+34307,61779
+34308,32535
+34309,18713
+34310,74622
+34311,28467
+34312,66058
+34313,48697
+34314,53694
+34315,37478
+34316,35534
+34317,50139
+34318,68352
+34319,51154
+34320,48432
+34321,72094
+34322,41279
+34323,59413
+34324,21728
+34325,48462
+34326,53619
+34327,38814
+34328,35752
+34329,46694
+34330,30581
+34331,38266
+34332,37120
+34333,34209
+34334,72258
+34335,39115
+34336,55494
+34337,60604
+34338,23885
+34339,18706
+34340,34924
+34341,33755
+34342,69448
+34343,31058
+34344,58162
+34345,28539
+34346,48318
+34347,38044
+34348,34590
+34349,28530
+34350,19579
+34351,45546
+34352,34456
+34353,18661
+34354,63065
+34355,77452
+34356,35626
+34357,28539
+34358,75745
+34359,38844
+34360,52655
+34361,20727
+34362,63314
+34363,72959
+34364,34358
+34365,34358
+34366,75745
+34367,34359
+34368,34359
+34369,59136
+34370,79165
+34371,32512
+34372,75472
+34373,58161
+34374,34357
+34375,21269
+34376,41022
+34377,76295
+34378,36673
+34379,38952
+34380,81578
+34381,31245
+34382,37625
+34383,81703
+34384,58229
+34385,53012
+34386,31798
+34387,64854
+34388,56937
+34389,72281
+34390,69030
+34391,65799
+34392,34657
+34393,54188
+34394,54181
+34395,52084
+34396,56869
+34397,59605
+34398,47747
+34399,29418
+34400,53660
+34401,20074
+34402,60216
+34403,21238
+34404,21289
+34405,65931
+34406,22274
+34407,55828
+34408,65816
+34409,37187
+34410,38614
+34411,36983
+34412,34293
+34413,35532
+34414,76338
+34415,31497
+34416,21886
+34417,75118
+34418,75433
+34419,71003
+34420,69860
+34421,31775
+34422,61433
+34423,36404
+34424,56932
+34425,56358
+34426,54704
+34427,81807
+34428,53916
+34429,63598
+34430,63117
+34431,60216
+34432,24349
+34433,77521
+34434,31823
+34435,19171
+34436,79114
+34437,37712
+34438,46281
+34439,40752
+34440,38207
+34441,43107,20133
+34442,51068
+34443,48875
+34444,37459
+34445,25681
+34446,19867
+34447,70568
+34448,70392
+34449,78108
+34450,54710
+34451,34126
+34452,63584
+34453,53916
+34454,34452
+34455,34452
+34456,56179
+34457,61796
+34458,38021
+34459,37120
+34460,65976
+34461,19228
+34462,48131
+34463,34639
+34464,48064
+34465,28467
+34466,57067
+34467,60216
+34468,20618
+34469,55489
+34470,77374
+34471,76030
+34472,48313
+34473,27179
+34474,67280
+34475,26142
+34476,53176
+34477,81714
+34478,67957
+34479,50701
+34480,25434
+34481,82151
+34482,63405
+34483,29626
+34484,59549
+34485,28790
+34486,45546
+34487,30237
+34488,34389
+34489,71310
+34490,61789
+34491,61792
+34492,19497
+34493,44440
+34494,65110
+34495,71347
+34496,73007
+34497,71348
+34498,34827
+34499,19230
+34500,75917
+34501,55144
+34502,35446
+34503,47984
+34504,69978
+34505,79738
+34506,63442
+34507,63284
+34508,63278
+34509,37690
+34510,75548
+34511,65531
+34512,67630
+34513,31369
+34514,34659
+34515,34357
+34516,28529
+34517,53717
+34518,57346
+34519,54901
+34520,28616
+34521,34398
+34522,61422
+34523,34356
+34524,66131
+34525,78698
+34526,66953
+34527,74462
+34528,28573
+34529,71310
+34530,74081
+34531,38455
+34532,71321
+34533,56446
+34534,58088
+34535,75031
+34536,48084
+34537,34299
+34538,72052
+34539,21898
+34540,78703
+34541,30300
+34542,35682
+34543,35634
+34544,39049
+34545,58166
+34546,56917
+34547,29623
+34548,47814
+34549,35886
+34550,65483
+34551,66164
+34552,71560
+34553,80422
+34554,24689
+34555,73918
+34556,53624
+34557,53624
+34558,53621
+34559,30928
+34560,31477
+34561,24704
+34562,39838
+34563,44359
+34564,34924
+34565,21922
+34566,27562
+34567,76345
+34568,20120
+34569,70629
+34570,47650
+34571,61285
+34572,62455
+34573,53705
+34574,43872
+34575,34585
+34576,34587
+34577,75604
+34578,50717
+34579,57163
+34580,76992
+34581,34578
+34582,29698
+34583,20754
+34584,25256
+34585,53704
+34586,36482
+34587,53716
+34588,69331
+34589,34564
+34590,65816
+34591,72052
+34592,28105
+34593,76877
+34594,54859
+34595,58162
+34596,57157
+34597,57160
+34598,57157
+34599,57160
+34600,57157
+34601,57160
+34602,61874
+34603,27455
+34604,57157
+34605,57160
+34606,54356
+34607,19379
+34608,68820
+34609,35876
+34610,45367
+34611,18869
+34612,53952
+34613,19171
+34614,42336
+34615,52172
+34616,75472
+34617,61655
+34618,66118
+34619,65133
+34620,72959
+34621,79165
+34622,63584
+34623,35719
+34624,57345
+34625,65930
+34626,60713
+34627,30487
+34628,29691
+34629,31058
+34630,32246
+34631,75772
+34632,34209
+34633,62659
+34634,28526
+34635,38044
+34636,37310
+34637,68835
+34638,44511
+34639,41856
+34640,26308
+34641,43109
+34642,48640
+34643,19000
+34644,58366
+34645,48803
+34646,39101
+34647,40063
+34648,77460
+34649,62513
+34650,35635
+34651,34209
+34652,40064,56863
+34653,20118
+34654,28616
+34655,61541
+34656,41413
+34657,63584
+34658,20725
+34659,67498
+34660,63945
+34661,31137
+34662,37113,32953
+34663,70091
+34664,19549
+34665,34924
+34666,70568
+34667,56440
+34668,18661
+34669,22164
+34670,34362
+34671,38910
+34672,25202
+34673,56243
+34674,42358
+34675,65581
+34676,58168
+34677,50910
+34678,50630
+34679,21922
+34680,19655
+34681,54732
+34682,48313
+34683,51174
+34684,59602
+34685,56357,81808
+34686,35695
+34687,35511
+34688,51562
+34689,23763
+34690,48087
+34691,36406
+34692,36406
+34693,19171
+34694,55250
+34695,31058
+34696,81578
+34697,50875
+34698,26934
+34699,38814
+34700,65816
+34701,37154
+34702,81763
+34703,51277
+34704,71996
+34705,53716
+34706,74567
+34707,41875
+34708,55914
+34709,70651
+34710,73598
+34711,33650
+34712,18774
+34713,41444
+34714,32710
+34715,39511
+34716,61054
+34717,70033
+34718,79608
+34719,35126
+34720,39205
+34721,28790
+34722,18965
+34723,65702
+34724,24243
+34725,55497
+34726,51068
+34727,51473
+34728,21097
+34729,30443
+34730,56822
+34731,28536
+34732,55347
+34733,70914
+34734,49858
+34735,72052
+34736,49797
+34737,72983
+34738,19353
+34739,43908
+34740,51566
+34741,35922
+34742,35922
+34743,48156
+34744,34207
+34745,23775
+34746,77277,24257
+34747,34766
+34748,41371
+34749,67693
+34750,47455
+34751,53164
+34752,8184
+34753,43444
+34754,79211
+34755,74067
+34756,67791
+34757,72186
+34758,71446
+34759,81161
+34760,77101
+34761,70033
+34762,64353
+34763,81807
+34764,43110
+34765,81413
+34766,81715
+34767,28775
+34768,56276
+34769,70581
+34770,32790
+34771,34199
+34772,21620
+34773,32961
+34774,36542
+34775,23420
+34776,34867
+34777,65483
+34778,61238
+34779,63570
+34780,77802
+34781,43723
+34782,21610
+34783,39578
+34784,75788
+34785,33403
+34786,75057
+34787,29744
+34788,35105
+34789,54425
+34790,75668
+34791,61758
+34792,77014
+34793,60228
+34794,63665
+34795,44167
+34796,56179
+34797,39578
+34798,31245
+34799,32929
+34800,78647
+34801,53613
+34802,59416
+34803,65154
+34804,45276
+34805,35690
+34806,34659
+34807,58161
+34808,32503
+34809,61336
+34810,72399
+34811,81251
+34812,31618
+34813,21480
+34814,28530
+34815,19200
+34816,71321
+34817,43546
+34818,28054
+34819,45096
+34820,62387
+34821,80185
+34822,22665
+34823,80185
+34824,19629
+34825,79940
+34826,37824
+34827,75917
+34828,40150
+34829,41412
+34830,64142
+34831,47744
+34832,46782
+34833,21597
+34834,69173
+34835,42142
+34836,35533
+34837,39111
+34838,59307
+34839,48157
+34840,62986
+34841,35517
+34842,61763
+34843,60019
+34844,48792
+34845,61764
+34846,19648
+34847,57106
+34848,55942
+34849,37479
+34850,65245
+34851,34924
+34852,36999
+34853,63819
+34854,31337
+34855,66704
+34856,32177
+34857,78996
+34858,80717
+34859,29698
+34860,34175
+34861,34113
+34862,35507
+34863,72623
+34864,30268
+34865,62583
+34866,34149
+34867,35517
+34868,66066
+34869,41846
+34870,60450
+34871,46092
+34872,41930
+34873,38834
+34874,38839
+34875,66727
+34876,80135
+34877,77636
+34878,53694
+34879,35635
+34880,35634
+34881,33631
+34882,71310
+34883,35797
+34884,33756
+34885,53454
+34886,34175
+34887,76556
+34888,61402
+34889,28054
+34890,65273
+34891,47068,49011
+34892,59338
+34893,47026
+34894,65638
+34895,34209
+34896,39578
+34897,34861
+34898,67266
+34899,32799
+34900,60538
+34901,72960
+34902,47718
+34903,35787
+34904,28530
+34905,68809
+34906,47716
+34907,63070
+34908,63065
+34909,19635
+34910,20577
+34911,50769
+34912,63587
+34913,34914
+34914,18740
+34915,73007
+34916,38272
+34917,18742
+34918,79175
+34919,34765
+34920,34763
+34921,38883
+34922,34771
+34923,37622
+34924,48423
+34925,52959
+34926,47814
+34927,38646
+34928,38569
+34929,34074
+34930,14950
+34931,29105
+34932,21777
+34933,14950
+34934,53036
+34935,23792
+34936,35557
+34937,38567
+34938,77641
+34939,47978
+34940,48764
+34941,81170
+34942,43247,48219
+34943,23896
+34944,63126
+34945,75997
+34946,34209
+34947,61779
+34948,34406
+34949,30687
+34950,62515
+34951,52189
+34952,81703
+34953,69286
+34954,37041
+34955,60762
+34956,31228
+34957,75741,67950
+34958,23946
+34959,24565
+34960,36568
+34961,70646
+34962,32225,20963
+34963,19334
+34964,61906
+34965,20419
+34966,18740
+34967,67053
+34968,43471
+34969,77641
+34970,77641
+34971,76711
+34972,81095
+34973,25850
+34974,67574
+34975,48841
+34976,61865
+34977,34976
+34978,34976
+34979,70091
+34980,30541
+34981,35130
+34982,66214
+34983,81703
+34984,71634
+34985,53171
+34986,34776
+34987,63060
+34988,79000
+34989,21881
+34990,71996
+34991,73537
+34992,51470,51469
+34993,69330
+34994,73537
+34995,72623
+34996,66072
+34997,36404
+34998,60385
+34999,31743
+35000,47948
+35001,39062
+35002,68937
+35003,75668
+35004,56871
+35005,22044
+35006,51566
+35007,31705
+35008,60453
+35009,53459
+35010,51991
+35011,64853
+35012,51567
+35013,81224
+35014,68475
+35015,51701
+35016,75216
+35017,28776
+35018,53701
+35019,53454
+35020,52634
+35021,39049
+35022,73537
+35023,50976
+35024,58158
+35025,49217
+35026,61402
+35027,27459,77509
+35028,49351
+35029,61651
+35030,80565
+35031,64873
+35032,75936
+35033,58152
+35034,58161
+35035,74067
+35036,39049
+35037,42225
+35038,34701
+35039,80038
+35040,40932
+35041,53717
+35042,35595
+35043,55693,53848
+35044,31689
+35045,53648
+35046,52035
+35047,43107
+35048,65958
+35049,61792
+35050,81780
+35051,74939
+35052,49334
+35053,81789
+35054,25094
+35055,35772
+35056,35612
+35057,57901
+35058,63765
+35059,24835
+35060,43110
+35061,54860
+35062,53701
+35063,69127
+35064,19979,60631
+35065,36976,40021
+35066,68057
+35067,23925
+35068,28016
+35069,79224
+35070,19069
+35071,67675
+35072,45009
+35073,28307
+35074,29569
+35075,48710
+35076,67608
+35077,31616
+35078,53648
+35079,29067
+35080,48319,61828
+35081,79608
+35082,35879
+35083,29651
+35084,61450
+35085,30473
+35086,30469
+35087,19069
+35088,34845
+35089,22610
+35090,48332
+35091,24306
+35092,56950
+35093,56950
+35094,20973
+35095,20689
+35096,39294
+35097,42539
+35098,67272
+35099,62935
+35100,72051
+35101,53516
+35102,71961
+35103,67277
+35104,22293
+35105,81592
+35106,34327
+35107,28181
+35108,48318
+35109,20990
+35110,76161
+35111,30882
+35112,21078
+35113,21078
+35114,33542
+35115,69551
+35116,33247
+35117,61251
+35118,37411
+35119,32691
+35120,56492
+35121,34985
+35122,48579
+35123,35125
+35124,35125
+35125,51929
+35126,41773
+35127,34924
+35128,20652
+35129,50912
+35130,39357
+35131,39357
+35132,39411
+35133,39357
+35134,35130
+35135,60216
+35136,51277
+35137,28187
+35138,56949
+35139,38400
+35140,71997
+35141,28522
+35142,64142
+35143,76384
+35144,35142
+35145,35142
+35146,20519
+35147,24821
+35148,26939
+35149,53696
+35150,38196
+35151,24006
+35152,63587
+35153,53474
+35154,35526
+35155,60216
+35156,31245
+35157,30268
+35158,64142
+35159,76689
+35160,63472
+35161,58012
+35162,58004
+35163,56270
+35164,68153
+35165,22681
+35166,58004
+35167,56179
+35168,72505
+35169,56950
+35170,34561
+35171,70515
+35172,77147
+35173,60131
+35174,22291
+35175,37174
+35176,28790
+35177,58162
+35178,50769
+35179,74081
+35180,38740
+35181,49392
+35182,75016
+35183,50117
+35184,72114
+35185,38614
+35186,51803
+35187,38984
+35188,48461
+35189,33879
+35190,21703
+35191,22200
+35192,27059
+35193,29845
+35194,37471
+35195,30889
+35196,31100
+35197,35668
+35198,60541
+35199,61455
+35200,75677
+35201,79282
+35202,37487
+35203,80238
+35204,27521
+35205,53694
+35206,61159
+35207,31803
+35208,33879
+35209,35204
+35210,73018
+35211,23590
+35212,62846
+35213,35204
+35214,51068
+35215,54044
+35216,49343
+35217,47012
+35218,47015
+35219,20977
+35220,20905
+35221,41005
+35222,37183
+35223,34114
+35224,60598
+35225,35533
+35226,38768
+35227,57934
+35228,25115
+35229,36602
+35230,74567
+35231,70944
+35232,61419
+35233,79516
+35234,60206
+35235,31468
+35236,34868
+35237,45813
+35238,45812
+35239,60688
+35240,40564
+35241,20690
+35242,35096
+35243,35097
+35244,26919
+35245,19654
+35246,71557
+35247,80498
+35248,33292
+35249,30300
+35250,34153
+35251,57106
+35252,21012,20999
+35253,3143
+35254,52655
+35255,71949
+35256,31058
+35257,62549
+35258,74943
+35259,72981
+35260,81578
+35261,71003
+35262,39049
+35263,66372
+35264,69051
+35265,47985
+35266,36744
+35267,61881
+35268,61880
+35269,34661
+35270,34661
+35271,28398
+35272,70399
+35273,37041
+35274,66132
+35275,66953
+35276,71686
+35277,56832
+35278,70399
+35279,70976
+35280,35414
+35281,81095
+35282,37042
+35283,35290
+35284,37712
+35285,41917
+35286,74234
+35287,35291,35285
+35288,21474
+35289,59432
+35290,66953
+35291,75056
+35292,51929
+35293,53593
+35294,59377
+35295,23796
+35296,43828,41245
+35297,41245
+35298,56046
+35299,26217
+35300,61336
+35301,69288
+35302,35291
+35303,76104
+35304,53597
+35305,75086
+35306,35307
+35307,78654
+35308,40423
+35309,21458
+35310,53613
+35311,24379
+35312,49483
+35313,78097
+35314,69050
+35315,19935
+35316,33581
+35317,78703
+35318,47442
+35319,58616
+35320,47047
+35321,34661
+35322,31239
+35323,74017
+35324,27153
+35325,44697
+35326,20698
+35327,74814
+35328,21012
+35329,52762
+35330,47017
+35331,31615
+35332,79924
+35333,59126
+35334,22640
+35335,35309
+35336,79282
+35337,58166
+35338,31241
+35339,28358
+35340,56361
+35341,53688
+35342,57573
+35343,71996
+35344,43814
+35345,38693
+35346,34676
+35347,52702
+35348,32159
+35349,79743
+35350,60385
+35351,32487
+35352,20907
+35353,54967
+35354,54991
+35355,50180
+35356,52990
+35357,42358
+35358,77641
+35359,48318
+35360,21671
+35361,68236
+35362,63442
+35363,21081
+35364,37419
+35365,65908
+35366,36872
+35367,38562
+35368,48640
+35369,40150
+35370,40617
+35371,51836
+35372,19272
+35373,35780
+35374,53199
+35375,57330
+35376,62867
+35377,78683
+35378,54761
+35379,74501
+35380,75472
+35381,46031
+35382,77496
+35383,78059
+35384,32506
+35385,79387
+35386,62147
+35387,47814
+35388,54044
+35389,59542
+35390,65099
+35391,20907
+35392,54257
+35393,71949
+35394,63279
+35395,64459
+35396,64142
+35397,28600
+35398,30694
+35399,19384
+35400,74462
+35401,39813
+35402,25016
+35403,62145
+35404,51677
+35405,65478
+35406,71595
+35407,46090
+35408,33717
+35409,42349
+35410,36434
+35411,35414
+35412,64417
+35413,47730
+35414,67839
+35415,22059
+35416,49312
+35417,60225
+35418,54310
+35419,23774
+35420,20979
+35421,23774
+35422,57553
+35423,81578
+35424,58088
+35425,78644
+35426,23897
+35427,65627
+35428,71317
+35429,35425
+35430,59970
+35431,38053
+35432,57704
+35433,51156
+35434,35616
+35435,78758
+35436,35679
+35437,72052
+35438,31349
+35439,29605
+35440,56173
+35441,45096
+35442,45096
+35443,34613
+35444,39153
+35445,35698
+35446,35448
+35447,35611
+35448,54044
+35449,49358
+35450,34489
+35451,78801
+35452,69168
+35453,32493
+35454,34827
+35455,21475
+35456,34538
+35457,44440
+35458,22944
+35459,57333
+35460,18658
+35461,18658
+35462,35752
+35463,60018
+35464,45096
+35465,53454
+35466,25087
+35467,69852
+35468,40747
+35469,37402
+35470,37678
+35471,50273
+35472,60993
+35473,39260
+35474,40986
+35475,62145
+35476,75020
+35477,77374
+35478,77367
+35479,63819
+35480,50010
+35481,65968
+35482,72052
+35483,62034
+35484,22852
+35485,27929
+35486,52375,22305
+35487,28532
+35488,37612,21087
+35489,74180
+35490,31245
+35491,35679
+35492,21805
+35493,69173
+35494,52071
+35495,75917
+35496,69168
+35497,73722
+35498,35437
+35499,35625
+35500,35727
+35501,34209
+35502,30659
+35503,28414
+35504,53952
+35505,48536
+35506,48536
+35507,35448
+35508,34871
+35509,34797
+35510,50369
+35511,23774
+35512,53022
+35513,28701
+35514,35482
+35515,35482
+35516,48349
+35517,19171
+35518,35142
+35519,34918
+35520,69168
+35521,51182
+35522,81374
+35523,67545
+35524,78059
+35525,71310
+35526,23258
+35527,73275
+35528,47978
+35529,39846
+35530,35595,72435
+35531,59333
+35532,72051
+35533,30883
+35534,47487
+35535,35534
+35536,37000
+35537,65816
+35538,37186
+35539,52920
+35540,66229
+35541,60216
+35542,70526
+35543,44440
+35544,35567
+35545,65679
+35546,47814
+35547,21218
+35548,78786
+35549,35495
+35550,35494
+35551,22149
+35552,69033
+35553,31139
+35554,35611
+35555,78750
+35556,78751
+35557,57261
+35558,32986,31616
+35559,35391
+35560,31618
+35561,64435
+35562,31245
+35563,35727
+35564,35507
+35565,78773
+35566,81808
+35567,72861
+35568,78773
+35569,35620
+35570,78773
+35571,58916
+35572,60744
+35573,77180
+35574,50117
+35575,80896
+35576,34859
+35577,80197
+35578,80257
+35579,64851
+35580,35611
+35581,19654
+35582,53694
+35583,29691
+35584,37120
+35585,54734
+35586,35565
+35587,35495
+35588,35425
+35589,76890
+35590,47602
+35591,81411
+35592,47828
+35593,69168
+35594,31427
+35595,61335,29411
+35596,67131
+35597,18931
+35598,47031
+35599,26811
+35600,41602
+35601,31743
+35602,36525
+35603,45167
+35604,31109
+35605,45224
+35606,26014
+35607,35609
+35608,58700
+35609,71838
+35610,52613
+35611,39578
+35612,48251
+35613,35697
+35614,48645
+35615,65816
+35616,48113
+35617,19228
+35618,55834,77108
+35619,60177
+35620,75917
+35621,57080
+35622,35495
+35623,48697
+35624,48427
+35625,72959
+35626,60598
+35627,31245
+35628,54717
+35629,35792
+35630,35627
+35631,31372
+35632,34450
+35633,65968
+35634,35695
+35635,35449
+35636,35712
+35637,48041
+35638,78625
+35639,49769
+35640,65909
+35641,28136
+35642,34613
+35643,27781
+35644,54047
+35645,37712
+35646,48050
+35647,29806
+35648,69554
+35649,51205
+35650,35771
+35651,74478
+35652,31616
+35653,60383
+35654,60383
+35655,72506
+35656,72505
+35657,41413
+35658,65556
+35659,34299
+35660,65682
+35661,55493
+35662,28792
+35663,35482
+35664,30882
+35665,69978
+35666,65925
+35667,34505
+35668,37478
+35669,37478
+35670,35668
+35671,81227
+35672,35698,20828
+35673,49026
+35674,47830
+35675,62409
+35676,19171
+35677,49888
+35678,63314
+35679,56200
+35680,38564
+35681,35637
+35682,60216
+35683,66058
+35684,35437
+35685,78643
+35686,62794
+35687,35491
+35688,38362
+35689,47762
+35690,54784
+35691,78790
+35692,78815
+35693,35567
+35694,22152
+35695,54044
+35696,46010
+35697,35792
+35698,35494
+35699,20531
+35700,20530
+35701,33503
+35702,77491
+35703,35772
+35704,57346
+35705,35437
+35706,60216
+35707,57964
+35708,77633
+35709,48248
+35710,35437
+35711,37650
+35712,35142
+35713,51562
+35714,35656
+35715,28790
+35716,69173
+35717,63584
+35718,38211
+35719,35717,53916
+35720,60604
+35721,47979
+35722,75917
+35723,56179
+35724,20841
+35725,77472
+35726,51638
+35727,71697
+35728,35507
+35729,30883
+35730,72122
+35731,72716
+35732,55692
+35733,61655
+35734,65581
+35735,71866
+35736,47954
+35737,70548
+35738,76657
+35739,70183
+35740,20745
+35741,58783
+35742,58803
+35743,58800
+35744,38768
+35745,51642
+35746,56179
+35747,80257
+35748,53060
+35749,61247
+35750,22420
+35751,35142
+35752,29711
+35753,69543
+35754,37411,19112
+35755,54774
+35756,33756
+35757,39281
+35758,58798
+35759,47762
+35760,31372
+35761,66329
+35762,19480
+35763,58776
+35764,68928
+35765,58779
+35766,70214
+35767,25707
+35768,33885
+35769,40150
+35770,30650
+35771,19171
+35772,71866
+35773,21620
+35774,31690
+35775,53199
+35776,32269
+35777,50604
+35778,51677
+35779,69803
+35780,30937
+35781,74478
+35782,37405
+35783,27042
+35784,27274
+35785,46826
+35786,31607
+35787,65579
+35788,63380
+35789,25495
+35790,35399
+35791,77374
+35792,55348
+35793,35625
+35794,19697
+35795,77976
+35796,53717
+35797,69173
+35798,35438
+35799,81578
+35800,77641
+35801,80421
+35802,38614
+35803,35183
+35804,65441
+35805,71869
+35806,19697
+35807,79562
+35808,19311,81789
+35809,47128
+35810,58204
+35811,53171
+35812,71595
+35813,49881
+35814,74939
+35815,36602
+35816,79175
+35817,71395
+35818,63010
+35819,20933
+35820,25037,28474
+35821,25713
+35822,74814
+35823,34732
+35824,25223
+35825,25216
+35826,38828
+35827,74811
+35828,69237
+35829,69173
+35830,76256
+35831,76258
+35832,50985
+35833,45900
+35834,31245
+35835,28529
+35836,78238
+35837,22112
+35838,19228
+35839,35837
+35840,31245
+35841,48126
+35842,59549
+35843,45851
+35844,55756
+35845,32531
+35846,67613
+35847,23541
+35848,77641
+35849,35438
+35850,46059
+35851,57187
+35852,56474
+35853,25289
+35854,36317
+35855,60216
+35856,36335
+35857,44545
+35858,63326
+35859,30268
+35860,50605
+35861,20655
+35862,35922
+35863,79720
+35864,53422
+35865,74018
+35866,72535
+35867,36694
+35868,59825
+35869,63426
+35870,73222
+35871,64142
+35872,41772
+35873,64142
+35874,24243
+35875,60592
+35876,19382
+35877,21597
+35878,21529
+35879,69173
+35880,19828
+35881,56233
+35882,69173
+35883,35498
+35884,35874
+35885,35874
+35886,57187
+35887,48461
+35888,69172
+35889,32527
+35890,50638
+35891,81462
+35892,61063
+35893,78215
+35894,35482
+35895,35852
+35896,62266
+35897,74939
+35898,71505
+35899,32457
+35900,14907
+35901,56532
+35902,75548
+35903,77280
+35904,37776
+35905,25115
+35906,50319
+35907,61355
+35908,45813
+35909,39556
+35910,26946
+35911,21631
+35912,70104
+35913,80396
+35914,57731
+35915,61380
+35916,68230
+35917,53704
+35918,18868
+35919,53707
+35920,74562
+35921,49136
+35922,23790
+35923,65754
+35924,30882
+35925,65925
+35926,81789
+35927,55499
+35928,31340
+35929,79072
+35930,79608
+35931,57682
+35932,29372
+35933,61866
+35934,61871
+35935,38521
+35936,39276
+35937,34118
+35938,30518
+35939,57682
+35940,61159
+35941,50784
+35942,39049
+35943,28567
+35944,27187,36044
+35945,40384
+35946,45813
+35947,29339
+35948,70214
+35949,31853
+35950,24400
+35951,25858
+35952,37712
+35953,30372
+35954,76664
+35955,45813
+35956,40572
+35957,60304
+35958,80748
+35959,69004
+35960,70033
+35961,74821
+35962,64403
+35963,67001
+35964,39534
+35965,69978
+35966,73291
+35967,75141
+35968,75141
+35969,79640
+35970,81746
+35971,61705
+35972,27721
+35973,49353
+35974,31646
+35975,23440
+35976,39928
+35977,39930
+35978,69564
+35979,34868
+35980,79418
+35981,67445
+35982,35546
+35983,26953
+35984,20698
+35985,46269
+35986,35922
+35987,65760
+35988,59350
+35989,63232
+35990,70776
+35991,21447
+35992,51395
+35993,49286
+35994,80237
+35995,81482
+35996,20690
+35997,51535
+35998,58781
+35999,47431
+36000,81193
+36001,69554
+36002,71329
+36003,67498
+36004,19438
+36005,64142
+36006,78191
+36007,61415
+36008,55022
+36009,30300
+36010,24146
+36011,74903
+36012,35340
+36013,53171
+36014,26328
+36015,26668
+36016,46782
+36017,61415
+36018,70987
+36019,31825
+36020,31825
+36021,29839
+36022,49079
+36023,70814
+36024,35557
+36025,53774
+36026,66785
+36027,54562
+36028,44283
+36029,77004
+36030,74818
+36031,20755
+36032,71900
+36033,60032
+36034,67703
+36035,65579
+36036,69330
+36037,56009
+36038,61260
+36039,70033
+36040,31137
+36041,66939
+36042,72712
+36043,69274
+36044,20743
+36045,21869
+36046,27648
+36047,27900,36044
+36048,40617
+36049,42049
+36050,43554
+36051,51818
+36052,60216
+36053,60771
+36054,62852
+36055,69609
+36056,25229
+36057,75954
+36058,79639
+36059,19280
+36060,19367
+36061,64142
+36062,19228
+36063,66036
+36064,58161
+36065,31245
+36066,57066
+36067,20067
+36068,42429
+36069,71310
+36070,36065
+36071,81462
+36072,36065
+36073,29839
+36074,24781
+36075,53318
+36076,31477
+36077,61789
+36078,75063
+36079,29737
+36080,56542
+36081,45367
+36082,48672
+36083,17785
+36084,37478
+36085,37623
+36086,49079
+36087,81462
+36088,23891
+36089,23891
+36090,27503
+36091,43786
+36092,73884
+36093,39676
+36094,55373
+36095,50459
+36096,34819
+36097,59970
+36098,38024
+36099,73838
+36100,66953
+36101,55486
+36102,63013
+36103,63953
+36104,41444
+36105,49121
+36106,44514
+36107,29737,7764
+36108,49971
+36109,51901
+36110,53416
+36111,55984
+36112,56020
+36113,70294
+36114,27970
+36115,38013
+36116,81874
+36117,20355
+36118,55067
+36119,34839
+36120,76740
+36121,50899
+36122,36777
+36123,47744
+36124,67991
+36125,81227
+36126,81227
+36127,51803,26298
+36128,23664
+36129,66862
+36130,40036
+36131,69144
+36132,79282
+36133,40602
+36134,25115
+36135,72248
+36136,47908
+36137,53717
+36138,64831
+36139,53624
+36140,53621
+36141,45077
+36142,77385
+36143,81801
+36144,75654
+36145,30937
+36146,53499
+36147,62955
+36148,57654
+36149,57682
+36150,24689
+36151,51473
+36152,61493
+36153,66046
+36154,55601
+36155,60216
+36156,72834
+36157,23225
+36158,22438
+36159,38800
+36160,68352
+36161,49079
+36162,74232
+36163,34118
+36164,81227
+36165,63307
+36166,23615
+36167,78424
+36168,43240
+36169,49414
+36170,28747
+36171,72585
+36172,23027
+36173,23643
+36174,35234
+36175,75976
+36176,67959
+36177,32551
+36178,28991
+36179,29797
+36180,32780
+36181,32775
+36182,32982
+36183,77603
+36184,28591
+36185,63820
+36186,33896
+36187,28792
+36188,48461
+36189,36965
+36190,47830
+36191,36101
+36192,36463
+36193,68352
+36194,30300
+36195,20307
+36196,25329
+36197,39479
+36198,40246
+36199,40517
+36200,81227
+36201,45660
+36202,21731
+36203,63379
+36204,49962
+36205,44697
+36206,19570
+36207,56338
+36208,23243
+36209,51848
+36210,64371
+36211,65442
+36212,65534
+36213,36187
+36214,66300
+36215,66431
+36216,67675,71524
+36217,69569
+36218,38425
+36219,36218
+36220,73460
+36221,64949
+36222,43240
+36223,58674
+36224,79963
+36225,37478
+36226,22675
+36227,75814
+36228,38522
+36229,49079
+36230,23793
+36231,32489
+36232,33047
+36233,55614
+36234,64670
+36235,30300
+36236,77474
+36237,78526
+36238,30275
+36239,70580
+36240,48943
+36241,75011
+36242,31200
+36243,48072
+36244,41606
+36245,41606
+36246,40140
+36247,31417
+36248,11862
+36249,37623
+36250,60771
+36251,58697
+36252,32713
+36253,24340
+36254,55281
+36255,61209
+36256,61789
+36257,81056
+36258,72210,58329
+36259,48038
+36260,59497
+36261,39423
+36262,39424
+36263,51265
+36264,71182
+36265,46050
+36266,78236
+36267,39513
+36268,44792
+36269,61997
+36270,25524
+36271,59645
+36272,64175
+36273,66436
+36274,69483
+36275,36319
+36276,39151
+36277,43854
+36278,67498
+36279,34733
+36280,70604
+36281,71437
+36282,64639
+36283,35397
+36284,28529
+36285,28529
+36286,70108
+36287,36293
+36288,72729
+36289,73801
+36290,43698
+36291,77399
+36292,76664
+36293,81702
+36294,24302
+36295,26051
+36296,44384
+36297,53066
+36298,54376
+36299,81500
+36300,81536
+36301,79640
+36302,43247
+36303,35858
+36304,54859
+36305,21013
+36306,77802
+36307,47128
+36308,20977
+36309,20977
+36310,37345
+36311,70801
+36312,45813
+36313,19634
+36314,6955
+36315,21777
+36316,65641
+36317,56359
+36318,76054
+36319,81193
+36320,34671
+36321,36137
+36322,63725
+36323,36496
+36324,70581
+36325,81607
+36326,23730
+36327,25016
+36328,34763
+36329,81630
+36330,69308
+36331,81781
+36332,81787
+36333,77287
+36334,25017
+36335,48408
+36336,81659
+36337,70629
+36338,21765
+36339,46090
+36340,75621
+36341,29928
+36342,63725
+36343,66055
+36344,30206
+36345,27167
+36346,27167
+36347,60823
+36348,75019
+36349,48634
+36350,55952
+36351,19621
+36352,78756
+36353,44609
+36354,21777
+36355,36313
+36356,72248
+36357,57535
+36358,45813
+36359,28079
+36360,78096
+36361,34632
+36362,37730
+36363,60993
+36364,40021
+36365,35802
+36366,75018
+36367,25017
+36368,61504
+36369,36694
+36370,22414
+36371,1230
+36372,21192
+36373,81797
+36374,37690
+36375,38153
+36376,32964
+36377,81789
+36378,48912
+36379,60071
+36380,38955
+36381,81781
+36382,81787
+36383,65927
+36384,30883
+36385,53021
+36386,32578
+36387,77308
+36388,39049
+36389,44604
+36390,61402
+36391,67311
+36392,61709
+36393,63725
+36394,57333
+36395,40121
+36396,35433
+36397,23021
+36398,25920
+36399,59643
+36400,55030
+36401,31616,73470
+36402,78583
+36403,21775
+36404,65925
+36405,21669
+36406,36361
+36407,37991
+36408,39527
+36409,28460
+36410,59020
+36411,22159
+36412,30954
+36413,65116
+36414,49945
+36415,18914
+36416,71961
+36417,37635
+36418,76558
+36419,22684
+36420,46607
+36421,51903
+36422,23458
+36423,60058
+36424,66293
+36425,47506
+36426,47507
+36427,70796
+36428,62434
+36429,23082
+36430,26217
+36431,70987
+36432,68857
+36433,80716
+36434,81463
+36435,36442
+36436,30187
+36437,45260,52906
+36438,64438
+36439,65654
+36440,69782
+36441,41245
+36442,54439
+36443,38204
+36444,58137
+36445,60216
+36446,26786
+36447,21922
+36448,31805
+36449,53694
+36450,32579
+36451,29917
+36452,67957
+36453,22699
+36454,66769
+36455,66953
+36456,49079
+36457,40250
+36458,75057
+36459,42228
+36460,54869
+36461,77287
+36462,56460
+36463,63363
+36464,23310
+36465,60216
+36466,36467
+36467,37179
+36468,51562
+36469,56179
+36470,53337
+36471,59427
+36472,41103
+36473,75831
+36474,47814
+36475,47314
+36476,40340
+36477,34918
+36478,26668
+36479,26668
+36480,80092
+36481,81482
+36482,76981
+36483,77367
+36484,22500
+36485,56894
+36486,52510
+36487,66541
+36488,81647
+36489,27473
+36490,32791
+36491,24392
+36492,52273
+36493,60993
+36494,36487
+36495,25113
+36496,45689
+36497,48488
+36498,31587
+36499,31587
+36500,31598
+36501,19636
+36502,36497
+36503,41350
+36504,71595
+36505,79469
+36506,24007,80256
+36507,63218
+36508,71686
+36509,40747
+36510,30231
+36511,47099
+36512,19375
+36513,52097
+36514,53415
+36515,58916
+36516,30254
+36517,60604
+36518,40747
+36519,58917
+36520,37178
+36521,26921
+36522,36507
+36523,60598
+36524,77374
+36525,34924
+36526,53660
+36527,66260
+36528,77521
+36529,43698
+36530,66727
+36531,49343
+36532,63363
+36533,69851
+36534,69851
+36535,39101
+36536,53660
+36537,54044
+36538,71961
+36539,80640
+36540,81626
+36541,43701
+36542,57945
+36543,79000
+36544,81483
+36545,51204
+36546,67050
+36547,66727
+36548,77575,73112
+36549,23854
+36550,48874
+36551,68236
+36552,80753
+36553,64639
+36554,75384
+36555,59088
+36556,59088
+36557,41837
+36558,49200
+36559,53012
+36560,63570
+36561,23679
+36562,60992
+36563,45570
+36564,67639
+36565,45964
+36566,34646
+36567,34732
+36568,72119
+36569,34208
+36570,70987
+36571,34731,44063
+36572,53941
+36573,50715
+36574,75057
+36575,39556
+36576,61677
+36577,24373
+36578,60744
+36579,33442
+36580,34924
+36581,68335
+36582,66260
+36583,82151
+36584,49728
+36585,49736
+36586,36570
+36587,45408
+36588,47991
+36589,64353
+36590,61017
+36591,39534
+36592,44013
+36593,27688
+36594,41736
+36595,76664
+36596,36673
+36597,20751
+36598,29040
+36599,33102
+36600,50117
+36601,50104
+36602,19654
+36603,19291
+36604,19295
+36605,25425
+36606,47685
+36607,78060
+36608,53717
+36609,30937
+36610,36602
+36611,77321
+36612,60216
+36613,80105
+36614,67254
+36615,69860
+36616,58758
+36617,71686
+36618,68277
+36619,60042
+36620,79469
+36621,47031
+36622,31279
+36623,23414
+36624,31279
+36625,51509
+36626,62439
+36627,70214
+36628,19496
+36629,53847
+36630,32528
+36631,36470
+36632,60044
+36633,60038
+36634,45689
+36635,73222
+36636,36499
+36637,36636
+36638,36499
+36639,36499
+36640,75772
+36641,41729
+36642,36641
+36643,39014
+36644,65531
+36645,76196
+36646,20326,55662
+36647,75924
+36648,79866
+36649,9523
+36650,29691
+36651,35906
+36652,40862
+36653,42148
+36654,71516
+36655,49772
+36656,53332
+36657,56029
+36658,60541
+36659,37920
+36660,56316
+36661,61251
+36662,41877
+36663,68679
+36664,79874
+36665,79407
+36666,73423,36656
+36667,31563
+36668,57277
+36669,21269
+36670,30697
+36671,20755,79261
+36672,24961
+36673,31245
+36674,46384
+36675,45813
+36676,31002
+36677,81781
+36678,81781,47497
+36679,59455
+36680,35922
+36681,35474
+36682,38637
+36683,63314
+36684,71688
+36685,75235
+36686,71716
+36687,28780
+36688,30300
+36689,50701
+36690,9280
+36691,36035
+36692,62367
+36693,39049
+36694,20877
+36695,68352
+36696,36267
+36697,46962
+36698,59519
+36699,31239
+36700,25040
+36701,46958
+36702,36692
+36703,36694
+36704,25564
+36705,25555
+36706,42094
+36707,21361
+36708,61260
+36709,31281
+36710,59423
+36711,19343
+36712,52849
+36713,36710
+36714,24843
+36715,66083
+36716,29680
+36717,47960
+36718,40393
+36719,66551
+36720,27563
+36721,44440
+36722,73841
+36723,39928
+36724,19475
+36725,28573
+36726,55761
+36727,55756
+36728,63677
+36729,39049
+36730,36419
+36731,30062
+36732,29984
+36733,52890
+36734,68562
+36735,69682
+36736,27224
+36737,9930
+36738,59811
+36739,64757
+36740,58152
+36741,73752
+36742,82136
+36743,78676
+36744,79746
+36745,78642
+36746,69544
+36747,73918
+36748,65289
+36749,25202
+36750,21777
+36751,80614
+36752,70399
+36753,37548
+36754,26359
+36755,39940
+36756,55831
+36757,80831
+36758,31941
+36759,73475
+36760,70515
+36761,79001
+36762,77995
+36763,27721
+36764,60623
+36765,69012
+36766,34808
+36767,59475
+36768,52240
+36769,67479
+36770,51327
+36771,73917
+36772,45260
+36773,49583
+36774,66507
+36775,65229
+36776,33591
+36777,68122
+36778,28168
+36779,78775
+36780,60810
+36781,23313
+36782,37041
+36783,23310
+36784,35188
+36785,53473
+36786,62152
+36787,60000
+36788,70988
+36789,35014
+36790,55765
+36791,21112
+36792,46782
+36793,31940
+36794,31948
+36795,21200
+36796,34126
+36797,53897
+36798,31590
+36799,27391
+36800,76664
+36801,76633
+36802,75763
+36803,21838
+36804,66953
+36805,41105
+36806,37179
+36807,41743
+36808,80927
+36809,43897
+36810,80735
+36811,81506
+36812,58730
+36813,67608
+36814,65977
+36815,53454
+36816,59348
+36817,22684
+36818,43104
+36819,29935
+36820,31624
+36821,31623
+36822,63424
+36823,60744
+36824,80816
+36825,81247
+36826,60744
+36827,61078
+36828,32572
+36829,35414
+36830,74647
+36831,65108
+36832,31618
+36833,28221
+36834,70033
+36835,81694
+36836,31043
+36837,69012
+36838,60762
+36839,81601
+36840,71310
+36841,47974
+36842,58166
+36843,70990
+36844,77829
+36845,21977
+36846,22887
+36847,24961
+36848,46610
+36849,28864
+36850,50052
+36851,37344
+36852,20152
+36853,70033
+36854,81176
+36855,81161
+36856,48870
+36857,48870
+36858,49468
+36859,53072
+36860,61006
+36861,77004
+36862,72575
+36863,74279
+36864,78140
+36865,81176
+36866,71003
+36867,42481
+36868,46827
+36869,34210
+36870,57927
+36871,34928
+36872,30498
+36873,81656
+36874,30495
+36875,70629
+36876,66008
+36877,43672
+36878,81441
+36879,81538
+36880,81482
+36881,38209
+36882,37417
+36883,60395
+36884,53657
+36885,35922
+36886,19225
+36887,38837
+36888,66344
+36889,42469
+36890,53624
+36891,67277
+36892,39295
+36893,41110
+36894,35626
+36895,72055
+36896,50771
+36897,31543
+36898,47475
+36899,48084
+36900,59549
+36901,73184
+36902,51277
+36903,50771
+36904,56454
+36905,60216
+36906,50771
+36907,72055
+36908,58776
+36909,35425
+36910,35626
+36911,70091
+36912,35626
+36913,35425
+36914,68030
+36915,72055
+36916,35494,34659
+36917,18740
+36918,74939
+36919,54082
+36920,34664
+36921,72959
+36922,39801
+36923,34356
+36924,35626
+36925,77409
+36926,30650
+36927,19230
+36928,37996
+36929,68352
+36930,30300
+36931,37623
+36932,24331
+36933,64921
+36934,36932,82053
+36935,22133
+36936,45467
+36937,69118
+36938,41729
+36939,71996
+36940,46268
+36941,19051
+36942,53848
+36943,68630
+36944,40473
+36945,43789
+36946,59811
+36947,64757
+36948,36035
+36949,52658
+36950,47455
+36951,68630
+36952,76691
+36953,51856
+36954,46767
+36955,21632
+36956,66677
+36957,31975
+36958,72161
+36959,64453
+36960,56484
+36961,53180
+36962,32578
+36963,67312
+36964,72839
+36965,49276
+36966,68835
+36967,36966
+36968,44072
+36969,56474
+36970,37422
+36971,36970
+36972,61504
+36973,49222
+36974,64748
+36975,37519
+36976,53454
+36977,34389
+36978,43579
+36979,54562,60786
+36980,36978
+36981,56182
+36982,41877
+36983,28312
+36984,45813
+36985,35793
+36986,43109
+36987,41877
+36988,41877
+36989,64720
+36990,57696
+36991,48318
+36992,19581
+36993,64142
+36994,56194
+36995,77888
+36996,62676
+36997,23774
+36998,77396
+36999,34209
+37000,28530
+37001,35386
+37002,51894
+37003,27534
+37004,35389
+37005,59870
+37006,30962
+37007,30962
+37008,30962
+37009,70104
+37010,30962
+37011,81193
+37012,28990
+37013,72680
+37014,31977
+37015,81505
+37016,32921
+37017,33875
+37018,39641
+37019,77661
+37020,30514
+37021,45732
+37022,45738
+37023,47966
+37024,49829
+37025,43781
+37026,53589
+37027,41657
+37028,79467
+37029,61705
+37030,67608
+37031,59870
+37032,81506
+37033,48210
+37034,21550
+37035,40060
+37036,47830
+37037,68832
+37038,43740
+37039,40927
+37040,63109
+37041,31587
+37042,31598
+37043,21240
+37044,35626
+37045,25721
+37046,58513
+37047,71197,45463
+37048,34175
+37049,40747
+37050,76546
+37051,42493
+37052,81482
+37053,77641
+37054,72323
+37055,58162
+37056,27506
+37057,65925
+37058,60216
+37059,64846
+37060,29427
+37061,78640
+37062,26160
+37063,58162
+37064,22149
+37065,54865
+37066,63486
+37067,65754
+37068,22103
+37069,76138
+37070,74714
+37071,73018
+37072,54440
+37073,35162
+37074,55133
+37075,55133
+37076,26827
+37077,48111
+37078,75353
+37079,48787
+37080,39294
+37081,42539
+37082,58572
+37083,65906
+37084,65505
+37085,20522
+37086,47527
+37087,65505
+37088,37776
+37089,43997
+37090,71610
+37091,34987
+37092,43997
+37093,71610
+37094,34987
+37095,37083
+37096,65893
+37097,51891
+37098,37986
+37099,32783
+37100,77207
+37101,52651
+37102,60448
+37103,34149
+37104,48645
+37105,44113
+37106,59492
+37107,49136
+37108,24249
+37109,38042
+37110,24251
+37111,37127
+37112,37124
+37113,31245
+37114,43106
+37115,43113
+37116,37120
+37117,51177
+37118,54838
+37119,61766
+37120,63065
+37121,66265
+37122,63819
+37123,76146
+37124,71324
+37125,18869
+37126,63139
+37127,71325
+37128,67988
+37129,37229
+37130,75019
+37131,19200
+37132,41728
+37133,37131
+37134,75019
+37135,75954
+37136,77165
+37137,66377
+37138,24761
+37139,37689
+37140,35224
+37141,43142
+37142,60216
+37143,59165
+37144,62146
+37145,62625
+37146,37601
+37147,33678
+37148,48787
+37149,18740
+37150,32361
+37151,65764
+37152,65760
+37153,55495
+37154,70651
+37155,37154
+37156,37154,38281
+37157,43497
+37158,46948
+37159,74943
+37160,33425
+37161,81161
+37162,74807
+37163,61159
+37164,74422
+37165,51435
+37166,70110
+37167,25495
+37168,78930
+37169,33542
+37170,56327
+37171,42201
+37172,21087
+37173,25383
+37174,63314
+37175,59658
+37176,22887
+37177,30139
+37178,39428
+37179,63109,41729
+37180,53162
+37181,57241
+37182,68614
+37183,68869
+37184,71113
+37185,20822
+37186,37934
+37187,81789
+37188,44437
+37189,49016
+37190,47699
+37191,70629
+37192,21275
+37193,26586
+37194,62145
+37195,44769
+37196,31638
+37197,50769
+37198,63141
+37199,19228
+37200,78826
+37201,48401
+37202,63185
+37203,71997
+37204,63144
+37205,37992
+37206,40292
+37207,71398
+37208,62831
+37209,21361
+37210,24710
+37211,56376
+37212,78640
+37213,58162
+37214,81413
+37215,74939
+37216,47698
+37217,53607
+37218,79073
+37219,60216
+37220,62409
+37221,56446
+37222,58144
+37223,60238
+37224,39621
+37225,17258
+37226,56179
+37227,37220
+37228,64846
+37229,70633
+37230,21112
+37231,38807
+37232,65925
+37233,53355
+37234,33231
+37235,80227
+37236,35465
+37237,50104
+37238,35158
+37239,36993
+37240,40687
+37241,38879
+37242,30890
+37243,56618
+37244,55209
+37245,35922
+37246,38189
+37247,58578
+37248,41022
+37249,54953
+37250,71408
+37251,57733
+37252,56958
+37253,35557
+37254,67813
+37255,48202
+37256,48202
+37257,50489
+37258,23610,54821
+37259,32986
+37260,71719
+37261,48474
+37262,63790
+37263,45813
+37264,71463
+37265,35557
+37266,54465
+37267,54544
+37268,62846
+37269,47389
+37270,69004
+37271,76147
+37272,77374
+37273,52990
+37274,37276
+37275,31143
+37276,78755
+37277,19171
+37278,65035
+37279,45869
+37280,57731
+37281,68565
+37282,36696
+37283,64316
+37284,22164
+37285,79085
+37286,35188
+37287,72447
+37288,61984
+37289,50439
+37290,64757
+37291,64757
+37292,57066
+37293,34093
+37294,34093
+37295,76662
+37296,64757
+37297,30300
+37298,55984
+37299,65458
+37300,50439
+37301,54082
+37302,48629
+37303,39713
+37304,36760
+37305,35466
+37306,38646
+37307,52904
+37308,71961
+37309,36710
+37310,22944
+37311,68692
+37312,31030
+37313,34906
+37314,55137,77397
+37315,51778
+37316,20905
+37317,71120
+37318,76664
+37319,27729
+37320,37411
+37321,37450
+37322,38053
+37323,39049
+37324,22907
+37325,34924
+37326,62323
+37327,31447
+37328,60604
+37329,37328
+37330,68316
+37331,53454
+37332,60598
+37333,23748
+37334,63584
+37335,49347
+37336,60993
+37337,23881
+37338,29917
+37339,49299
+37340,46097
+37341,63426
+37342,49329
+37343,29321
+37344,70033
+37345,19438
+37346,47673
+37347,72990
+37348,37179,36641
+37349,62145
+37350,27508
+37351,48746
+37352,57573
+37353,73018
+37354,62575
+37355,79904
+37356,29120
+37357,30693
+37358,41469
+37359,60259
+37360,32506
+37361,25094
+37362,29489
+37363,27405
+37364,37383
+37365,23796
+37366,24143
+37367,24651
+37368,26496
+37369,70302
+37370,48413
+37371,29845
+37372,35351
+37373,35354
+37374,62417
+37375,33645
+37376,39311
+37377,39824
+37378,41764
+37379,41911
+37380,44593
+37381,44966
+37382,71848
+37383,50273
+37384,51929
+37385,52718
+37386,54130
+37387,54821
+37388,55361
+37389,37481
+37390,37411
+37391,73507,80896
+37392,64921
+37393,65552
+37394,37411
+37395,48251
+37396,32150,77108
+37397,65509
+37398,71355
+37399,77001
+37400,78410
+37401,26800
+37402,31272
+37403,31607
+37404,31812
+37405,34924
+37406,35464
+37407,37411
+37408,37908
+37409,37913
+37410,51495
+37411,60603
+37412,62407
+37413,38218
+37414,78993
+37415,77287
+37416,70629
+37417,60603
+37418,73307
+37419,37884
+37420,37882
+37421,38822
+37422,77423
+37423,43997
+37424,76182
+37425,28803
+37426,69810,37510
+37427,49769
+37428,38667
+37429,38673
+37430,31278
+37431,34643
+37432,53624
+37433,43997
+37434,53701
+37435,21200
+37436,37405
+37437,45458
+37438,34185
+37439,34628
+37440,71557
+37441,22743
+37442,27287
+37443,28167
+37444,52605
+37445,34399
+37446,48505
+37447,37488
+37448,64474
+37449,72038
+37450,78703
+37451,52634
+37452,60612
+37453,53648
+37454,54130
+37455,69235
+37456,55903
+37457,53701
+37458,34987
+37459,51030
+37460,30417
+37461,37430
+37462,54263
+37463,54267
+37464,78097
+37465,37490
+37466,44437
+37467,54283
+37468,81617
+37469,75788
+37470,22746
+37471,77491
+37472,31812
+37473,37488
+37474,37488
+37475,22313
+37476,33889
+37477,37474
+37478,34924
+37479,38218
+37480,55050
+37481,55758
+37482,37471
+37483,65190
+37484,70214
+37485,74591
+37486,76054
+37487,79869
+37488,54404
+37489,37488
+37490,60612
+37491,30937
+37492,48030
+37493,70224
+37494,56179
+37495,37503
+37496,21745
+37497,61353
+37498,43997
+37499,53624
+37500,78544
+37501,28623
+37502,37377
+37503,37405
+37504,48024
+37505,62957
+37506,78703
+37507,60612
+37508,57934
+37509,76160
+37510,76162
+37511,20120
+37512,64142
+37513,64142
+37514,65663
+37515,26038
+37516,64244
+37517,61622
+37518,61621
+37519,74082
+37520,70526
+37521,73537
+37522,38043
+37523,37521
+37524,37521
+37525,37199
+37526,43122
+37527,59338
+37528,80524
+37529,44614
+37530,78777
+37531,37623
+37532,63052,58689
+37533,45813
+37534,79608
+37535,64864
+37536,36951
+37537,47786
+37538,47198
+37539,37538
+37540,37538
+37541,64635
+37542,35735
+37543,50756
+37544,61201
+37545,20725
+37546,66676
+37547,19849
+37548,51298
+37549,37551
+37550,37551
+37551,57945
+37552,69482
+37553,50439
+37554,38602
+37555,64757
+37556,54993
+37557,39183
+37558,21193
+37559,64139
+37560,65816
+37561,35466
+37562,55662
+37563,20531
+37564,65816
+37565,28792
+37566,77171
+37567,19656
+37568,57742
+37569,78854
+37570,61789
+37571,55209
+37572,51643
+37573,62338,58918
+37574,37573
+37575,34249
+37576,20813
+37577,31413
+37578,57742
+37579,61213
+37580,56862
+37581,70392
+37582,77641
+37583,81482
+37584,53023
+37585,58068
+37586,52074
+37587,28538
+37588,19299
+37589,67334
+37590,38883
+37591,45813
+37592,71557
+37593,38812
+37594,78533
+37595,38952
+37596,37206
+37597,37207
+37598,22052
+37599,21480
+37600,51523
+37601,53519
+37602,58208
+37603,51174
+37604,51176
+37605,50717
+37606,37224
+37607,55278
+37608,62722
+37609,55391
+37610,77292
+37611,37689
+37612,69521
+37613,77972
+37614,34676
+37615,35344
+37616,34199
+37617,38769
+37618,41417
+37619,50424
+37620,76229,34118
+37621,78655
+37622,34771
+37623,74904
+37624,57345
+37625,60247
+37626,18728
+37627,57451
+37628,76657
+37629,29915
+37630,47822
+37631,19416
+37632,29619
+37633,56327
+37634,37633
+37635,56325
+37636,61246
+37637,20743
+37638,71996
+37639,24251
+37640,27497
+37641,66361
+37642,28164
+37643,73126
+37644,20760
+37645,32176
+37646,77509,23949
+37647,49217
+37648,44160
+37649,69728
+37650,23760
+37651,21215
+37652,23760
+37653,75772
+37654,32954
+37655,53716
+37656,63060
+37657,46684
+37658,38576
+37659,66215
+37660,54562
+37661,18770
+37662,18770
+37663,66785
+37664,23285
+37665,65795
+37666,54356
+37667,54361
+37668,46027
+37669,47673
+37670,50885
+37671,67277
+37672,36035
+37673,62145
+37674,65931
+37675,79282
+37676,65726
+37677,40747
+37678,37277
+37679,72038
+37680,37430
+37681,19654
+37682,80735
+37683,60598
+37684,30975
+37685,39088
+37686,39578
+37687,21610
+37688,60216
+37689,37686
+37690,77374
+37691,21115
+37692,74924
+37693,71817
+37694,79619
+37695,67951
+37696,57280
+37697,59891
+37698,66377
+37699,47672
+37700,19200
+37701,66101
+37702,55013
+37703,43809
+37704,36035
+37705,41261
+37706,48306
+37707,48791
+37708,60450
+37709,60448
+37710,54418
+37711,81626
+37712,81626
+37713,30659
+37714,58587
+37715,61202
+37716,73349
+37717,64846
+37718,50701
+37719,72959
+37720,19200
+37721,57461
+37722,19648
+37723,19655
+37724,31690
+37725,37693
+37726,31245
+37727,46948
+37728,31616
+37729,59194
+37730,65816
+37731,48127
+37732,64864
+37733,20310
+37734,75606
+37735,47527
+37736,80717
+37737,30432
+37738,30073
+37739,51523
+37740,27396
+37741,50907
+37742,50906
+37743,50905
+37744,32
+37745,66377
+37746,31058
+37747,58783
+37748,30073
+37749,71521
+37750,31861
+37751,20353
+37752,38281
+37753,31058
+37754,57984
+37755,65702
+37756,20972
+37757,31245
+37758,63065
+37759,37777
+37760,58783
+37761,33581
+37762,48126
+37763,24354
+37764,66873
+37765,66874
+37766,48126
+37767,71632
+37768,38537
+37769,71634
+37770,63584
+37771,81462
+37772,57456
+37773,35557
+37774,23906
+37775,35787
+37776,21474
+37777,48333
+37778,35926
+37779,71837
+37780,33213
+37781,52954
+37782,62495
+37783,47822
+37784,53916
+37785,60071
+37786,49296
+37787,63604
+37788,46524
+37789,21328
+37790,28615
+37791,51069
+37792,65478
+37793,30985
+37794,51531
+37795,77045
+37796,74535
+37797,25495
+37798,59308
+37799,31731
+37800,51532
+37801,72959
+37802,61655
+37803,37824
+37804,60744
+37805,38982
+37806,43546
+37807,37810
+37808,19121
+37809,54649
+37810,58144
+37811,37805
+37812,63117
+37813,67311
+37814,78970
+37815,20329
+37816,72003
+37817,18728
+37818,48126
+37819,49803
+37820,61246
+37821,35534
+37822,37803
+37823,37803
+37824,45096
+37825,55246
+37826,45813
+37827,36802
+37828,27556
+37829,69254
+37830,48126
+37831,53848
+37832,43353
+37833,75016
+37834,71996
+37835,53716
+37836,43142
+37837,34587
+37838,34585
+37839,57143
+37840,53238
+37841,34664
+37842,43109
+37843,51649
+37844,27497
+37845,59549
+37846,55522
+37847,60216
+37848,25121
+37849,31447
+37850,57150
+37851,59165
+37852,33678
+37853,56505,60001
+37854,70225
+37855,74490
+37856,63259
+37857,70231
+37858,53701
+37859,38601
+37860,70570
+37861,65956
+37862,72409
+37863,38475
+37864,53848
+37865,38170
+37866,28792
+37867,77216
+37868,28009
+37869,43335
+37870,27321
+37871,56161
+37872,51270
+37873,73669
+37874,66515
+37875,48943
+37876,54440
+37877,59970
+37878,19475
+37879,25115
+37880,34924
+37881,19230
+37882,19228
+37883,60603
+37884,60603
+37885,51778
+37886,36524
+37887,41106
+37888,43736
+37889,37884
+37890,80505
+37891,18728
+37892,56896
+37893,34229
+37894,44644
+37895,38422
+37896,71310
+37897,41516
+37898,37721
+37899,31604
+37900,44440
+37901,66617
+37902,81161
+37903,28054
+37904,48408
+37905,55361
+37906,27858
+37907,25807
+37908,60216
+37909,57945
+37910,28413
+37911,75613,63141
+37912,66953
+37913,35480
+37914,52513
+37915,47157
+37916,37042
+37917,53865
+37918,70629
+37919,62967
+37920,62948
+37921,61335
+37922,62968
+37923,47716
+37924,27228
+37925,63386
+37926,61425
+37927,60216
+37928,61433
+37929,19228
+37930,37853
+37931,72959
+37932,60534
+37933,60538
+37934,37196
+37935,37936
+37936,69308
+37937,37936
+37938,30687
+37939,76664
+37940,31245
+37941,63257
+37942,58158
+37943,71997
+37944,21670
+37945,21302
+37946,37949
+37947,56333
+37948,22095
+37949,50450
+37950,78678
+37951,65707
+37952,43247
+37953,47716
+37954,60216
+37955,55761
+37956,58398
+37957,27857
+37958,30391
+37959,70392
+37960,30681
+37961,30502
+37962,27397
+37963,73997
+37964,73838
+37965,38381
+37966,28529
+37967,31820
+37968,19239
+37969,50375
+37970,20082
+37971,19737
+37972,21866
+37973,38475
+37974,48126
+37975,48111,48077
+37976,38053
+37977,26938
+37978,51713
+37979,20016
+37980,35534
+37981,63228
+37982,73147
+37983,57934
+37984,20745
+37985,33686
+37986,60706
+37987,58168
+37988,78598
+37989,36524
+37990,29513
+37991,60216
+37992,35838
+37993,80060
+37994,26585
+37995,48030
+37996,39578
+37997,48533
+37998,74500
+37999,48150
+38000,50717
+38001,31010
+38002,76780
+38003
+38004,32718
+38005,82163
+38006,82164
+38007,82169
+38008,62625
+38009,48787
+38010,48565
+38011,28536
+38012,21631
+38013,18930
+38014,38600
+38015,39556
+38016,34422
+38017,77585
+38018,31647
+38019,30697
+38020,34294
+38021,65975
+38022,33500
+38023,38012
+38024,66551
+38025,32503
+38026,45007
+38027,41279
+38028,62089
+38029,26604
+38030,81801
+38031,18988
+38032,57934
+38033,51677
+38034,21738
+38035,47856
+38036,33455
+38037,32580
+38038,57918
+38039,31616
+38040,81733
+38041,22684
+38042,70526
+38043,43104
+38044,31245
+38045,60450
+38046,62723
+38047,65531
+38048,43104
+38049,72877
+38050,35342
+38051,66010
+38052,55263
+38053,63434,27937
+38054,21881
+38055,24224
+38056,24225
+38057,46599
+38058,76981
+38059,43111
+38060,52053
+38061,72281
+38062,76210
+38063,40813
+38064,74939
+38065,51100
+38066,74939
+38067,1524
+38068,65892
+38069,65892
+38070,65089
+38071,65892
+38072,66377
+38073,24379
+38074,43820
+38075,72961
+38076,35312
+38077,19421
+38078,21568
+38079,39647
+38080,53848
+38081,21738
+38082,28258
+38083,36664
+38084,70033
+38085,20038,26065
+38086,76631
+38087,77462
+38088,48318
+38089,20830
+38090,48318
+38091,61621
+38092,25649
+38093,40945
+38094,59423
+38095,69254
+38096,60097
+38097,43103
+38098,63064
+38099,48126
+38100,25104
+38101,69148
+38102,35922
+38103,35679
+38104,29409
+38105,42391
+38106,67101
+38107,58069
+38108,58377
+38109,48084
+38110,38109
+38111,53711
+38112,53716
+38113,58088
+38114,70650
+38115,73598
+38116,63224
+38117,36710
+38118,48126
+38119,65584
+38120,48241
+38121,21703
+38122,79282
+38123,21477
+38124,54092
+38125,27730
+38126,48126
+38127,31945
+38128,68030
+38129,64370
+38130,48316
+38131,58849
+38132,49633
+38133,34630
+38134,52143
+38135,25673
+38136,70091
+38137,31842
+38138,31196
+38139,31196
+38140,46553,27986,56543,79222
+38141,52999
+38142,26744
+38143,65892
+38144,26827
+38145,52035
+38146,66377
+38147,46818
+38148,79371
+38149,48126
+38150,59970
+38151,75874
+38152,60114
+38153,45096
+38154,68809
+38155,26010
+38156,52033
+38157,34602
+38158,24354
+38159,30267
+38160,54859
+38161,60448
+38162,60453
+38163,51069
+38164,53860
+38165,48316
+38166,44461
+38167,57531
+38168,71572
+38169,70648
+38170,20760
+38171,81585
+38172,58412
+38173,43111
+38174,33892
+38175,56009
+38176,56009
+38177,34688
+38178,61630
+38179,75007
+38180,51068
+38181,22646
+38182,44777
+38183,53069
+38184,29548
+38185,29548
+38186,70202
+38187,75736
+38188,67737
+38189,73018
+38190,46894
+38191,19171
+38192,68355
+38193,37479
+38194,35852
+38195,38188
+38196,53478
+38197,38191
+38198,29409
+38199,44113
+38200,75693
+38201,57474
+38202,57573
+38203,22128
+38204,66516
+38205,35773
+38206,39936
+38207,77740,65628
+38208,72695
+38209,70526
+38210,63358
+38211,31539
+38212,50604
+38213,57523
+38214,35740
+38215,37762
+38216,28153
+38217,32256
+38218,48423
+38219,21905
+38220,48534
+38221,38188
+38222,30267
+38223,22063
+38224,35887
+38225,78804,20308
+38226,39281
+38227,76664
+38228,43111
+38229,34826
+38230,64961
+38231,47655
+38232,32171
+38233,21476
+38234,54082
+38235,26289
+38236,47684,36900
+38237,58144
+38238,20760
+38239,31563
+38240,62977
+38241,73838
+38242,69440
+38243,72825
+38244,65758
+38245,55017
+38246,18740
+38247,81617
+38248,64743
+38249,20038
+38250,73202
+38251,61251
+38252,41877
+38253,20038
+38254,61703
+38255,77961
+38256,45547
+38257,74067
+38258,21670
+38259,41899
+38260,80522
+38261,68566
+38262,21477
+38263,50717
+38264,38044
+38265,34175
+38266,43110
+38267,69148
+38268,69440
+38269,78511
+38270,39228
+38271,77857
+38272,47865
+38273,45096
+38274,54710
+38275,39152
+38276,54771
+38277,38566
+38278,30188
+38279,74088
+38280,37196
+38281,74939
+38282,37650
+38283,19202
+38284,37973
+38285,74067
+38286,14736
+38287,38296
+38288,38287
+38289,38287
+38290,38289
+38291,54562
+38292,37642
+38293,24823
+38294,20635
+38295,64831
+38296,70651
+38297,20977
+38298,58162
+38299,43516
+38300,72598
+38301,72600
+38302,68073
+38303,29781
+38304,47871
+38305,72776
+38306,21731
+38307,35557
+38308,35838
+38309,61246
+38310,22412
+38311,53613
+38312,35838
+38313,67334
+38314,35468
+38315,45275
+38316,38523
+38317,72066
+38318,42388
+38319,41787
+38320,53648
+38321,33954
+38322,52594
+38323,35480
+38324,53628
+38325,41279
+38326,70914
+38327,68031
+38328,76134
+38329,76138
+38330,66314
+38331,77444
+38332,37973
+38333,42420
+38334,22128
+38335,63416
+38336,81798
+38337,41870
+38338,61335
+38339,69696
+38340,66507
+38341,23972
+38342,20017
+38343,79282
+38344,48126
+38345,21740
+38346,58010
+38347,59423,55693
+38348,68779
+38349,67793
+38350,77678
+38351,72588
+38352,72585
+38353,56485
+38354,63244
+38355,30231
+38356,30243
+38357,26854
+38358,51778
+38359,35679
+38360,81396
+38361,22128
+38362,81789
+38363,22122
+38364,81781
+38365,74082
+38366,20355
+38367,62675
+38368,46003
+38369,57594
+38370,76411
+38371,77684
+38372,47671
+38373,65753
+38374,58168
+38375,73838
+38376,56179
+38377,63286
+38378,35922
+38379,26854
+38380,63316
+38381,65006
+38382,29626
+38383,23925
+38384,46451
+38385,58158
+38386,31453
+38387,70629
+38388,60448
+38389,72983
+38390,66090
+38391,49358
+38392,26934
+38393,47833
+38394,36123
+38395,21618
+38396,67275
+38397,38400
+38398,77422
+38399,38400
+38400,73201
+38401,20894
+38402,38400,49670
+38403,60598
+38404,25113
+38405,51068
+38406,41917
+38407,39049
+38408,20960
+38409,73884
+38410,21765
+38411,37920
+38412,37921
+38413,20771
+38414,76657
+38415,76633
+38416,23780
+38417,35815
+38418,54142,47047
+38419,68853
+38420,58158
+38421,53732
+38422,48215
+38423,51882
+38424,30079
+38425,75020
+38426,62934
+38427,55356
+38428,35922
+38429,60448
+38430,60453
+38431,30693
+38432,25256
+38433,70474
+38434,21703
+38435,79282
+38436,67277
+38437,60216
+38438,44440
+38439,44437
+38440,49312
+38441,38439
+38442,21851
+38443,64142
+38444,59331
+38445,20946
+38446,20947
+38447,20946
+38448,20947
+38449,82163
+38450,82164
+38451,22164
+38452,20992
+38453,20044
+38454,38385
+38455,19935,61262
+38456,51881
+38457,20042,42246
+38458,21005
+38459,54967
+38460,21218
+38461,80498
+38462,24691
+38463,34990
+38464,28057
+38465,60453
+38466,67272
+38467,56950
+38468,55756
+38469,22686
+38470,35105
+38471,51148
+38472,46163
+38473,51566
+38474,41228
+38475,22640,55019
+38476,81482
+38477,44615
+38478,44609
+38479,38369
+38480,27506
+38481,44527
+38482,38430
+38483,53624
+38484,51277
+38485,63472
+38486,19979
+38487,58166
+38488,58068
+38489,62495
+38490,52904
+38491,68030
+38492,23331
+38493,44609
+38494,37335
+38495,63570
+38496,38883
+38497,63376
+38498,25843
+38499,55022
+38500,54082
+38501,21718
+38502,55348,35838
+38503,72408
+38504,54825
+38505,27473
+38506,49769
+38507,51277
+38508,58162
+38509,81413
+38510,54356
+38511,49358
+38512,21295
+38513,22269
+38514,35442
+38515,13818
+38516,69248
+38517,62525
+38518,54446,31145
+38519,31874
+38520,68857
+38521,38313
+38522,54753
+38523,56357
+38524,30650
+38525,20879
+38526,76664
+38527,33933
+38528,60953
+38529,78654
+38530,65631
+38531,76664
+38532,76664
+38533,33932
+38534,60467
+38535,22686
+38536,44354
+38537,45813
+38538,69701
+38539,69704
+38540,61220
+38541,59230
+38542,38188
+38543,65631
+38544,60603
+38545,63581
+38546,29458
+38547,21922
+38548,45851
+38549,45096
+38550,79211
+38551,79608
+38552,24961
+38553,24961
+38554,45316
+38555,31043
+38556,79608
+38557,50507
+38558,62146
+38559,30865
+38560,31091
+38561,36721
+38562,48157
+38563,47944
+38564,48156
+38565,22656
+38566,47552
+38567,77460
+38568,52084
+38569,72271
+38570,57934
+38571,34895
+38572,47507
+38573,73275
+38574,31435
+38575,37390
+38576,58162
+38577,36474
+38578,23791
+38579,69609
+38580,52904
+38581,42076
+38582,52904
+38583,53561
+38584,62733
+38585,19438
+38586,81462
+38587,31115
+38588,31115
+38589,31115
+38590,38612
+38591,23966
+38592,34461
+38593,19008
+38594,47871
+38595,54753
+38596,28153
+38597,40680
+38598,32973
+38599,48731
+38600,30883
+38601,48791
+38602,48791
+38603,48792
+38604,48304
+38605,19403
+38606,48156
+38607,38281
+38608,35534
+38609,24379
+38610,24379
+38611,79537
+38612,20826
+38613,31115
+38614,21745
+38615,32791
+38616,81643
+38617,63026
+38618,64142
+38619,39528
+38620,58725
+38621,57346
+38622,38606
+38623,57741
+38624,59419
+38625,47549
+38626,58472
+38627,28788
+38628,31795
+38629,81647
+38630,77399
+38631,27396
+38632,27396
+38633,44440
+38634,30650
+38635,55847
+38636,77455
+38637,28541
+38638,55030
+38639,47974
+38640,37690
+38641,66120
+38642,21612
+38643,21610
+38644,37687
+38645,30988
+38646,79009
+38647,63809
+38648,70526
+38649,67275
+38650,65909
+38651,76258
+38652,76256
+38653,22944
+38654,65679
+38655,34591
+38656,63064,44470
+38657,48590
+38658,41210
+38659,49343
+38660,64833
+38661,57068
+38662,34295
+38663,57332
+38664,34591
+38665,27280
+38666,60076
+38667,32150
+38668,74060
+38669,37896
+38670,63065
+38671,32531
+38672,72065
+38673,49763
+38674,19376
+38675,19384
+38676,19649
+38677,25709
+38678,57564
+38679,32362
+38680,39544
+38681,54425
+38682,68787
+38683,69325
+38684,79532
+38685,39811
+38686,39813
+38687,38685
+38688,48629
+38689,38807
+38690,47389
+38691,34505
+38692,75498
+38693,78798
+38694,65731
+38695,57934
+38696,28346
+38697,19200
+38698,51059
+38699,37237
+38700,77367
+38701,38702
+38702,34924
+38703,29591
+38704,58161
+38705,25839
+38706,42246,80227
+38707,75018
+38708,39311
+38709,53003
+38710,60993
+38711,79097
+38712,39460
+38713,34632
+38714,38562
+38715,62713
+38716,30391
+38717,42092
+38718,44913
+38719,68677
+38720,58308
+38721,59153
+38722,31094
+38723,37276
+38724,69998
+38725,49347
+38726,30883
+38727,60259
+38728,19171
+38729,32953
+38730,22944
+38731,41156
+38732,18793
+38733,64158
+38734,60450
+38735,60448
+38736,34613
+38737,57897
+38738,61809
+38739,24251
+38740,43353
+38741,19611
+38742,34576
+38743,34585
+38744,38313
+38745,57143
+38746,53238
+38747,34664
+38748,40597
+38749,45851
+38750,34602
+38751,31245
+38752,57150
+38753,74939
+38754,38625
+38755,74433
+38756,7764
+38757,71632
+38758,48723
+38759,70570,25104
+38760,50649
+38761,44470
+38762,31058
+38763,28792
+38764,41158
+38765,77216
+38766,71837
+38767,41842
+38768,47871
+38769,35533
+38770,47871
+38771,24392
+38772,25194
+38773,35922
+38774,47702
+38775,38769
+38776,39578
+38777,23790
+38778,58127
+38779,53717
+38780,25087
+38781,19462
+38782,53613
+38783,81637
+38784,49343
+38785,27088
+38786,72094
+38787,58403
+38788,34884
+38789,32269
+38790,18978
+38791,65201
+38792,55023
+38793,45096
+38794,31638
+38795,37196
+38796,79363
+38797,48306
+38798,68288
+38799,68287
+38800,63060
+38801,63587
+38802,58196
+38803,37708
+38804,60216
+38805,66004
+38806,24021
+38807,60216
+38808,81433
+38809,70633
+38810,65393
+38811,72983
+38812,72052
+38813,76258
+38814,72983
+38815,79009
+38816,72983
+38817,38812
+38818,38814
+38819,32974
+38820,34327
+38821,29611
+38822,78966
+38823,54784
+38824,69004
+38825,31497
+38826,68652
+38827,38784
+38828,60216
+38829,42523
+38830,47868
+38831,56832
+38832,37241
+38833,43698
+38834,28535
+38835,35464
+38836,28774
+38837,38836
+38838,75018
+38839,34924
+38840,38836
+38841,75018
+38842,78703
+38843,48474
+38844,53473
+38845,41842
+38846,43997
+38847,34115
+38848,38196
+38849,41262
+38850,69237
+38851,53474
+38852,30697
+38853,32807
+38854,36841
+38855,26604
+38856,30650
+38857,38865
+38858,38814
+38859,68809
+38860,48629
+38861,48474
+38862,38646
+38863,30883
+38864,51349
+38865,35482
+38866,79572
+38867,79940
+38868,60543
+38869,62713
+38870,18659
+38871,48150
+38872,34745
+38873,52691
+38874,77520
+38875,63659
+38876,58162
+38877,72661
+38878,32380
+38879,34505
+38880,30883
+38881,21770
+38882,21765
+38883,30882
+38884,64142
+38885,46059
+38886,31345
+38887,63363
+38888,34408
+38889,34408
+38890,37191
+38891,23622
+38892,60071
+38893,53700
+38894,39298
+38895,54414
+38896,76665
+38897,34397
+38898,63314,33789
+38899,73706
+38900,38768
+38901,37199
+38902,73738
+38903,52074
+38904,75668
+38905,31993
+38906,32506
+38907,50173
+38908,70568
+38909,34363
+38910,52655
+38911,38662
+38912,34209
+38913,20698
+38914,36115
+38915,34827
+38916,49763
+38917,35917
+38918,39528
+38919,45527
+38920,25115
+38921,27641
+38922,36525
+38923,38930
+38924,43273
+38925,47469
+38926,47470
+38927,49388
+38928,79282
+38929,18686
+38930,58144
+38931,22166
+38932,57345
+38933,69131
+38934,69118
+38935,47744
+38936,56179
+38937,34038
+38938,31259
+38939,20816
+38940,75917
+38941,63725
+38942,58487
+38943,38592
+38944,39599
+38945,37189
+38946,21745
+38947,35852
+38948,58558
+38949,70549
+38950,27951
+38951,51649
+38952,56179
+38953,65816
+38954,48408
+38955,37199
+38956,74583
+38957,33455
+38958,78731
+38959,78768
+38960,64142
+38961,26934
+38962,48087
+38963,75038
+38964,47275
+38965,56176
+38966,38625
+38967,80228
+38968,47719
+38969,37992
+38970,51643
+38971,58162
+38972,71302
+38973,34362
+38974,38982
+38975,64513
+38976,64513
+38977,64142
+38978,61789
+38979,64490
+38980,19480
+38981,78469
+38982,65581
+38983,38920
+38984,38920
+38985,51437
+38986,41469
+38987,62585
+38988,60216
+38989,72661
+38990,37996,49347
+38991,51778
+38992,35465
+38993,68899
+38994,49347
+38995,79009
+38996,66042
+38997,25104
+38998,45302
+38999,22133
+39000,67545
+39001,46268
+39002,69118
+39003,43352
+39004,28235
+39005,52157
+39006,22946
+39007,79744
+39008,28654
+39009,29804
+39010,31245
+39011,79738
+39012,31602
+39013,35004
+39014,35534
+39015,55348
+39016,36496
+39017,74575
+39018,57934
+39019,66431
+39020,28091
+39021,27374
+39022,44792
+39023,52777
+39024,79469
+39025,22004
+39026,36570
+39027,48943
+39028,81462
+39029,79574
+39030,60011
+39031,44792
+39032,24749
+39033,46268
+39034,63425
+39035,52777
+39036,29917
+39037,50985
+39038,57966
+39039,52777
+39040,70183
+39041,78449
+39042,53205
+39043,39460
+39044,72029
+39045,8094
+39046,71505
+39047,56941
+39048,73495
+39049,21745
+39050,31563
+39051,39276
+39052,81787
+39053,32792
+39054,56074
+39055,41672
+39056,54753
+39057,60216
+39058,38920
+39059,73018
+39060,21218
+39061,74537
+39062,41672
+39063,79445
+39064,38920
+39065,48801
+39066,23764
+39067,20698
+39068,61402
+39069,39072
+39070,65844
+39071,61317
+39072,53317
+39073,62390,52777
+39074,79745
+39075,24261
+39076,18969
+39077,81615
+39078,69033
+39079,45374
+39080,63424
+39081,35157
+39082,73981
+39083,61211
+39084,61396
+39085,70649,23628
+39086,32715
+39087,53545
+39088,43168
+39089,44792
+39090,64846
+39091,70568
+39092,47402
+39093,76757
+39094,79282
+39095,31245
+39096,58161
+39097,19755
+39098,21922
+39099,21745
+39100,69284
+39101,21745
+39102,37239
+39103,51573
+39104,63424
+39105,30073
+39106,31940
+39107,36795
+39108,65019
+39109,48157
+39110,31158
+39111,48156
+39112,29833
+39113,48157
+39114,56592
+39115,57187
+39116,28057
+39117,47926
+39118,32190
+39119,39115,31539
+39120,63116
+39121,66072
+39122,61247
+39123,62810
+39124,80728
+39125,80834
+39126,69274
+39127,64142
+39128,72451
+39129,72451
+39130,18721
+39131,39406
+39132,65424
+39133,60216
+39134,75917
+39135,56836
+39136,36869
+39137,40970
+39138,37804
+39139,37802
+39140,26416
+39141,46409
+39142,69408
+39143,37635
+39144,36983
+39145,53660
+39146,39152
+39147,47621
+39148,39049
+39149,41287
+39150,35626
+39151,45096
+39152,56878
+39153,57743
+39154,78647
+39155,47997
+39156,52149
+39157,76690
+39158,39578
+39159,80505
+39160,71435
+39161,42351
+39162,38716
+39163,50907
+39164,19737
+39165,31606
+39166,27967
+39167,63026
+39168,31941
+39169,34019
+39170,45465
+39171,77286
+39172,77286
+39173,78965
+39174,80524
+39175,77277
+39176,63736
+39177,49498
+39178,47602
+39179,30693
+39180,59542
+39181,77277
+39182,70515
+39183,72281
+39184,19629
+39185,58287
+39186,54794
+39187,23891
+39188,39183
+39189,51316
+39190,66618
+39191,25714
+39192,36053
+39193,47505
+39194,56073
+39195,39765
+39196,18969
+39197,30687
+39198,23790
+39199,27562
+39200,40987
+39201,48113
+39202,47526
+39203,39202
+39204,34126
+39205,67583,11480
+39206,35557
+39207,39404
+39208,74867
+39209,51300
+39210,45302
+39211,60048
+39212,46962
+39213,21670
+39214,28536
+39215,70416
+39216,68679
+39217,80497
+39218,79552
+39219,47026
+39220,27997
+39221,27196
+39222,45307
+39223,80561
+39224,48755
+39225,54710
+39226,63424
+39227,60216
+39228,78553
+39229,36816
+39230,69682
+39231,33311
+39232,34249
+39233,60087
+39234,80164
+39235,81161
+39236,51395
+39237,70033
+39238,73838
+39239,39676
+39240,26233
+39241,45813
+39242,81161
+39243,19629
+39244,60624
+39245,53318
+39246,45813
+39247,45813
+39248,32991
+39249,21977
+39250,45813
+39251,74067
+39252,47709
+39253,20404
+39254,20404
+39255,51395
+39256,51395
+39257,26555
+39258,52857
+39259,81161
+39260,41877
+39261,45813
+39262,60598
+39263,54717
+39264,75495
+39265,45813
+39266,67416
+39267,67560
+39268,21373
+39269,70033
+39270,34589
+39271,41877
+39272,50737
+39273,79387
+39274,79808
+39275,81342
+39276,72983
+39277,45384
+39278,58739
+39279,35566
+39280,34867
+39281,81808
+39282,34118
+39283,78767
+39284,55495
+39285,65974
+39286,46451
+39287,47152,55091
+39288,69274
+39289,72271
+39290,78975
+39291,54704
+39292,41610
+39293,38795
+39294,75510
+39295,51515
+39296,49792
+39297,21938
+39298,78698
+39299,2080
+39300,29884
+39301,32527
+39302,42447
+39303,27792
+39304,46988
+39305,53703
+39306,65226
+39307,44447
+39308,26899
+39309,46136
+39310,22128
+39311,34924
+39312,40986
+39313,23854
+39314,24630
+39315,57169
+39316,51069
+39317,52694
+39318,58888
+39319,77244
+39320,79239
+39321,29526
+39322,37998
+39323,48685
+39324,19395
+39325,47506
+39326,32299,35551
+39327,30697
+39328,52210
+39329,71311
+39330,40987
+39331,38984
+39332,27188
+39333,76989
+39334,40411
+39335,49207
+39336,49204
+39337,81227
+39338,79989
+39339,58513
+39340,42102
+39341,27506
+39342,55756
+39343,32799
+39344,79720
+39345,39801
+39346,47506
+39347,39346
+39348,39346
+39349,35626
+39350,39387
+39351,35637
+39352,27286
+39353,40965
+39354,30588
+39355,26462
+39356,59431
+39357,41004
+39358,28616
+39359,72730
+39360,60058
+39361,47869
+39362,34613
+39363,19091
+39364,59475
+39365,53592
+39366,24961
+39367,81647
+39368,24145
+39369,52811
+39370,26298
+39371,39612
+39372,81630
+39373,52497
+39374,54630
+39375,32799
+39376,20272
+39377,57865
+39378,39379
+39379,46125
+39380,46782
+39381,33318
+39382,57461
+39383,32455
+39384,39367
+39385,50295
+39386,81873
+39387,35735
+39388,27506
+39389,24594
+39390,59375
+39391,65509
+39392,30300
+39393,46506
+39394,22039
+39395,37623
+39396,31447
+39397,48383
+39398,78362
+39399,22159
+39400,37770
+39401,48111
+39402,48111
+39403,61789
+39404,19438
+39405,39404
+39406,79820
+39407,31590
+39408,62456
+39409,19492
+39410,61333
+39411,18834
+39412,25792
+39413,56474
+39414,65762
+39415,57261
+39416,51279
+39417,77328
+39418,57144
+39419,76665
+39420,53613
+39421,61078
+39422,60216
+39423,66154
+39424,49296
+39425,29695
+39426,64672
+39427,47558
+39428,51624
+39429,79764
+39430,66482
+39431,71572
+39432,63026
+39433,37627
+39434,45459
+39435,54061
+39436,54687
+39437,39442,18950
+39438,32804
+39439,34870
+39440,56274
+39441,34009
+39442,34041
+39443,67686
+39444,41023
+39445,50701
+39446,59194
+39447,52904
+39448,39446,47737
+39449,52904
+39450,62145
+39451,62145
+39452,49858
+39453,32456
+39454,59197
+39455,51523
+39456,79874
+39457,80505
+39458,39147
+39459,25394
+39460,75772
+39461,32662
+39462,21914
+39463,41413
+39464,59379
+39465,54439
+39466,25088
+39467,50442
+39468,35525
+39469,27488
+39470,51786
+39471,57965
+39472,57964
+39473,74117
+39474,59423
+39475,65641
+39476,21568
+39477,25807
+39478,66118
+39479,69276
+39480,32662
+39481,51468
+39482,32975
+39483,32182
+39484,14504
+39485,30391
+39486,21550
+39487,21770
+39488,25002
+39489,69666
+39490,20635
+39491,21327
+39492,47814
+39493,19462
+39494,49803
+39495,19462
+39496,29119
+39497,27090
+39498,47814
+39499,41875
+39500,34249,82056
+39501,35992
+39502,37686
+39503,37686
+39504,32604
+39505,32497
+39506,39578
+39507,62451
+39508,76243
+39509,46274
+39510,37042
+39511,18969
+39512,67054
+39513,25104,20754
+39514,26827
+39515,53524
+39516,68128
+39517,58888
+39518,65445
+39519,32947
+39520,62456
+39521,37166
+39522,21361
+39523,44013
+39524,25598
+39525,81750
+39526,63017
+39527,53958
+39528,63315
+39529,21729
+39530,55499
+39531,25115
+39532,63315
+39533,31543
+39534,25122
+39535,34989
+39536,81717
+39537,25122
+39538,35414
+39539,32798
+39540,59139
+39541,59475
+39542,32527
+39543,26249
+39544,43815
+39545,19379
+39546,43809
+39547,67994
+39548,75492
+39549,61789
+39550,19497
+39551,30038
+39552,31742
+39553,58168
+39554,31548
+39555,45260
+39556,40393
+39557,48534
+39558,39557
+39559,59646
+39560,39557
+39561,18743
+39562,80505
+39563,41004
+39564,39563
+39565,56179
+39566,20881
+39567,29418
+39568,20743
+39569,36044
+39570,25707
+39571,59542
+39572,63494
+39573,26298
+39574,64904
+39575,22422
+39576,41173
+39577,71579
+39578,72959
+39579,48740
+39580,69128
+39581,70033
+39582,37179
+39583,52959
+39584,33375
+39585,71899
+39586,21321
+39587,27622
+39588,49769
+39589,68641
+39590,59730
+39591,58036
+39592,66607
+39593,53842
+39594,52904
+39595,74922
+39596,19757,63013
+39597,74222
+39598,48077
+39599,32926
+39600,39049
+39601,59850
+39602,39676
+39603,41877
+39604,67574
+39605,42523
+39606,20743
+39607,60216
+39608,21525
+39609,46885
+39610,25245
+39611,76320
+39612,39607
+39613,42503
+39614,65955
+39615,39606,52885
+39616,28951,39607
+39617,65957
+39618,49861
+39619,69410
+39620,42425
+39621,77374
+39622,35922
+39623,65531
+39624,27086
+39625,59547
+39626,21703
+39627,72212
+39628,63766
+39629,79282
+39630,28803
+39631,54183
+39632,76672
+39633,62324
+39634,50867
+39635,3621
+39636,58088
+39637,77308
+39638,23182
+39639,56547
+39640,25499
+39641,72250
+39642,71304
+39643,30557
+39644,39928,61383
+39645,39072
+39646,26302
+39647,74867
+39648,44520
+39649,41444
+39650,23182
+39651,30425
+39652,58200
+39653,39652
+39654,39652
+39655,61153
+39656,57934
+39657,62937
+39658,45813
+39659,72142
+39660,79259
+39661,45812
+39662,56655
+39663,40564
+39664,56950
+39665,45813
+39666,40564
+39667,61070
+39668,54562
+39669,80591
+39670,28129
+39671,55760
+39672,50978
+39673,74081
+39674,59338
+39675,54082
+39676,63612
+39677,63612
+39678,39294
+39679,42539
+39680,72409
+39681,33149
+39682,48494
+39683,61742
+39684,22671
+39685,58616
+39686,19069
+39687,67675
+39688,21002
+39689,71524
+39690,63434
+39691,64057
+39692,19069
+39693,67675
+39694,52634
+39695,27274
+39696,25046
+39697,77520
+39698,25059
+39699,60385
+39700,60598
+39701,36602
+39702,37953
+39703,32794
+39704,53848
+39705,28774
+39706,74844
+39707,44013
+39708,58131
+39709,71636
+39710,25087
+39711,74939
+39712,76664
+39713,28129
+39714,33442
+39715,37616
+39716,40758
+39717,53860
+39718,19635
+39719,74973
+39720,29437
+39721,18740
+39722,53848
+39723,55348
+39724,19200
+39725,59378
+39726,43897
+39727,26281
+39728,69444
+39729,34949
+39730,23790
+39731,59153
+39732,60273
+39733,63064
+39734,49299
+39735,57412
+39736,53621
+39737,21007
+39738,73203
+39739,62654
+39740,69458
+39741,70033
+39742,70033
+39743,40366
+39744,59475
+39745,39744
+39746,79432
+39747,31353
+39748,58529
+39749,71318
+39750,20983
+39751,74939
+39752,38644
+39753,77641
+39754,18864
+39755,70033
+39756,45813
+39757,45813
+39758,37569
+39759,20079
+39760,57194
+39761,27276
+39762,23995
+39763,23995
+39764,59036
+39765,51230
+39766,52416
+39767,53454
+39768,28164
+39769,39049
+39770,30885
+39771,56457
+39772,26800
+39773,77491
+39774,80063
+39775,32582
+39776,53701
+39777,39767
+39778,78362
+39779,25713
+39780,63434
+39781,30020
+39782,30020
+39783,35723
+39784,60001
+39785,19324
+39786,37642
+39787,27726
+39788,35534
+39789,39790
+39790,23906
+39791,48126
+39792,59549
+39793,48126
+39794,64142
+39795,23765
+39796,21985
+39797,36917
+39798,20760,61263
+39799,50867
+39800,68128
+39801,51701
+39802,20743
+39803,47503
+39804,51701
+39805,68370
+39806,32642
+39807,25523
+39808,19008
+39809,64142
+39810,19698
+39811,60216
+39812,50876
+39813,50882
+39814,38381
+39815,36035
+39816,58168
+39817,43104
+39818,77277
+39819,65579
+39820,69331
+39821,69330
+39822,69331
+39823,69331
+39824,60603
+39825,30659
+39826,65579
+39827,79744
+39828,77467
+39829,37462
+39830,30680
+39831,30483
+39832,21759
+39833,24211
+39834,26051
+39835,79874
+39836,55453
+39837,30296
+39838,32051,39840
+39839,32915
+39840,33005
+39841,33928
+39842,33928
+39843,76664
+39844,79026
+39845,37676
+39846,53422
+39847,58384
+39848,65533
+39849,68355
+39850,44566
+39851,39847
+39852,22786
+39853,54417
+39854,22035
+39855,46781
+39856,41053
+39857,50985
+39858,52605
+39859,53277
+39860,55451
+39861,55807
+39862,77277
+39863,68168
+39864,79630
+39865,50917
+39866,59657
+39867,59658
+39868,59924
+39869,54408
+39870,27908
+39871,64849
+39872,68036
+39873,71830
+39874,71895
+39875,11867
+39876,79416
+39877,48495
+39878,37450
+39879,27267
+39880,76146
+39881,76303
+39882,31646
+39883,75976
+39884,77726
+39885,38659
+39886,65999
+39887,81694
+39888,22850
+39889,32923
+39890,63972
+39891,76441
+39892,45040
+39893,22387
+39894,66785
+39895,41279
+39896,66004
+39897,81770
+39898,45523
+39899,46757
+39900,45813
+39901,40846
+39902,64628
+39903,50439
+39904,64757
+39905,64757
+39906,17469
+39907,48662
+39908,78698
+39909,77375
+39910,23589
+39911,65435
+39912,27426
+39913,34093
+39914,76662
+39915,64757
+39916,50439
+39917,24146
+39918,57774
+39919,37179
+39920,39925
+39921,12336
+39922,50717
+39923,32578
+39924,40752
+39925,77641
+39926,31762
+39927,25600
+39928,31353
+39929,19867,80173
+39930,30554
+39931,28438
+39932,47388
+39933,24749
+39934,65927
+39935,34197
+39936,69543
+39937,74275
+39938,60015
+39939,47697
+39940,54871
+39941,52957
+39942,47495
+39943,39941
+39944,61213
+39945,49997
+39946,52094
+39947,37228
+39948,47344
+39949,47345
+39950,23323
+39951,39940
+39952,39940
+39953,81549
+39954,63434
+39955,72791
+39956,81350
+39957,73837
+39958,56376
+39959,35534
+39960,25068
+39961,45009
+39962,65202
+39963,57568
+39964,51470
+39965,75058
+39966,29744
+39967,40947
+39968,35196
+39969,29653
+39970,63457
+39971,61438
+39972,56009
+39973,51729
+39974,50125
+39975,39992
+39976,36840
+39977,52189
+39978,34398
+39979,50910,34402
+39980,59194
+39981,55662
+39982,37616
+39983,41417
+39984,74026
+39985,41252
+39986,73465
+39987,37951
+39988,68638
+39989,7922
+39990,31941
+39991,76811
+39992,23712
+39993,60742
+39994,39423
+39995,40745
+39996,31200
+39997,34564
+39998,28535
+39999,53454
+40000,40906,39606
+40001,57333
+40002,53731
+40003,60539
+40004,69633,81733
+40005,53660
+40006,40003
+40007,30937
+40008,40012
+40009,32791
+40010,39713
+40011,48030
+40012,63110
+40013,55499
+40014,72893,68434
+40015,40011
+40016,60543
+40017,39676
+40018,20763
+40019,41410
+40020,37405
+40021,34924
+40022,29357
+40023,40021
+40024,59020
+40025,19795
+40026,80227
+40027,78775
+40028,56333
+40029,56474
+40030,63114,40793
+40031,56179
+40032,28529
+40033,39018
+40034,63064
+40035,72698
+40036,38984
+40037,37802
+40038,61335
+40039,34118
+40040,53422
+40041,63918
+40042,55499
+40043,38600
+40044,49360
+40045,59308
+40046,40125
+40047,31196
+40048,66702
+40049,34865
+40050,31012
+40051,37124
+40052,52920
+40053,30659
+40054,30693
+40055,56901
+40056,54615
+40057,20533
+40058,22144,22205
+40059,28236
+40060,31245
+40061,63182
+40062,41998
+40063,48401
+40064,52144
+40065,27339
+40066,40053
+40067,66999
+40068,58287
+40069,68896
+40070,60011
+40071,58004
+40072,39556
+40073,57333
+40074,49360
+40075,40074
+40076,30391
+40077,59858
+40078,30543
+40079,38601
+40080,46901
+40081,66015
+40082,62555
+40083,72040
+40084,74423
+40085,71091
+40086,56090
+40087,22149
+40088,45812
+40089,35187,38983
+40090,32578
+40091,51523
+40092,58803
+40093,58801
+40094,47731
+40095,23313
+40096,25546
+40097,57261
+40098,44013
+40099,46268
+40100,46268
+40101,54485
+40102,58783
+40103,63424
+40104,24261
+40105,70206
+40106,80436
+40107,73761
+40108,61154
+40109,77147
+40110,40293
+40111,71098
+40112,55983
+40113,70241
+40114,47402
+40115,53175,24261
+40116,71997
+40117,63060
+40118,69599
+40119,76735
+40120,34199
+40121,45096
+40122,36276
+40123,75436
+40124,37805
+40125,31012
+40126,30073,61302
+40127,64415
+40128,58797
+40129,81626
+40130,64414
+40131,64412
+40132,51467,40124
+40133,68236
+40134,77139
+40135,64142
+40136,48169
+40137,44766
+40138,61504
+40139,60992
+40140,81482
+40141,31417
+40142,29974
+40143,31288
+40144,37519
+40145,41773
+40146,77727
+40147,45096
+40148,40216
+40149,32975
+40150,22112
+40151,30581
+40152,41657
+40153,60076
+40154,44369
+40155,72575
+40156,19907
+40157,19909
+40158,33769
+40159,20883
+40160,23796
+40161,50722
+40162,40169
+40163,58168
+40164,40213
+40165,30187
+40166,62659
+40167,56231
+40168,56234
+40169,51885
+40170,36101
+40171,38700
+40172,77995
+40173,72776
+40174,34924
+40175,46673
+40176,48445
+40177,47655
+40178,57573
+40179,57858
+40180,70249
+40181,61063
+40182,67614
+40183,67614
+40184,68430
+40185,80512
+40186,73001
+40187,76945,40177
+40188,80254
+40189,77688
+40190,60076
+40191,28346
+40192,57573,40213
+40193,80253
+40194,29538
+40195,44628
+40196,22790
+40197,22790
+40198,23221
+40199,25046
+40200,41911
+40201,25976
+40202,39818
+40203,25889
+40204,45909
+40205,29677
+40206,40231
+40207,42246
+40208,37333
+40209,23748
+40210,51319
+40211,47443
+40212,61380
+40213,34285
+40214,22438
+40215,27715
+40216,65120
+40217,47027
+40218,54407
+40219,40633
+40220,67821
+40221,73481
+40222,31762
+40223,26298
+40224,68845
+40225,80047
+40226,36532
+40227,51665
+40228,80583
+40229,81179
+40230,41773
+40231,52235
+40232,28475
+40233,51466
+40234,29626
+40235,73736
+40236,62458
+40237,72595
+40238,2492
+40239,49602
+40240,26577
+40241,57733
+40242,29040
+40243,45156
+40244,73669
+40245,30188
+40246,46463
+40247,64757
+40248,58124
+40249,49883
+40250,73001
+40251,26496
+40252,61397
+40253,59324
+40254,81185
+40255,60216
+40256,27562
+40257,23220
+40258,40283
+40259,62142
+40260,48114
+40261,47698
+40262,28054
+40263,74423
+40264,18958
+40265,52691
+40266,34359
+40267,38382
+40268,42387
+40269,44857
+40270,48772
+40271,19054
+40272,81065
+40273,11909
+40274,51242
+40275,55272
+40276,56009
+40277,31829
+40278,59308
+40279,60214
+40280,44870
+40281,62708
+40282,69216
+40283,23764
+40284,73723
+40285,77837
+40286,74423
+40287,57585
+40288,38404
+40289,77630
+40290,37119
+40291,81907
+40292,41005
+40293,21362
+40294,20755
+40295,35557
+40296,59597
+40297,29230
+40298,37210
+40299,39294
+40300,81647
+40301,56532
+40302,31862
+40303,42539
+40304,43136
+40305,43475,20758
+40306,63790
+40307,26650
+40308,75064
+40309,59420
+40310,53635
+40311,31910
+40312,58155,39563
+40313,55465
+40314,68056
+40315,78250
+40316,72003
+40317,73044
+40318,73207
+40319,35557
+40320,25256
+40321,25545,21356
+40322,53286
+40323,70629
+40324,49997
+40325,49997
+40326,22721
+40327,81647
+40328,46490
+40329,30659
+40330,58385
+40331,79471
+40332,68566
+40333,63043
+40334,42389
+40335,51204
+40336,31991
+40337,66859
+40338,68677
+40339,77308
+40340,56471
+40341,72503
+40342,61335
+40343,22878
+40344,61947
+40345,36491
+40346,58888
+40347,21810
+40348,57143
+40349,21810
+40350,35873
+40351,27622
+40352,44348
+40353,74241
+40354,74241
+40355,44988
+40356,39928
+40357,51523
+40358,59423
+40359,20745
+40360,53021
+40361,22666
+40362,48928
+40363,41917
+40364,30978
+40365,74233
+40366,31244
+40367,26528
+40368,69632
+40369,75168
+40370,18941
+40371,75976
+40372,35188
+40373,23232
+40374,54794
+40375,56377
+40376,72447,36074,35116
+40377,50439
+40378,72142
+40379,30300
+40380,24146
+40381,32530
+40382,48713
+40383,38694
+40384,35156
+40385,39424
+40386,62722
+40387,40401
+40388,79201
+40389,53717
+40390,57927
+40391,53473
+40392,57187
+40393,28616
+40394,48688
+40395,57594
+40396,60350
+40397,72892
+40398,28543
+40399,47673
+40400,36868
+40401,31058
+40402,18941
+40403,21745
+40404,40231
+40405,24007
+40406,48270
+40407,19349
+40408,71437
+40409,24611
+40410,56454
+40411,37622
+40412,75152
+40413,59616
+40414,79749
+40415,27382
+40416,30681
+40417,54433
+40418,71102
+40419,71103
+40420,34458
+40421,53326
+40422,59906
+40423,63472
+40424,28164
+40425,23613
+40426,63064
+40427,30718
+40428,40139
+40429,49767
+40430,30391
+40431,80012
+40432,79469
+40433,72716
+40434,76249
+40435,69744
+40436,47655
+40437,37871
+40438,72376
+40439,25987
+40440,77067
+40441,58224
+40442,62426
+40443,39151
+40444,38657
+40445,27540
+40446,81161
+40447,70033
+40448,16948
+40449,25438
+40450,59169
+40451,25438
+40452,62853
+40453,33793
+40454,71311
+40455,80512
+40456,79953
+40457,20953
+40458,30578
+40459,34808
+40460,63218
+40461,73981
+40462,33512
+40463,25115
+40464,41249
+40465,23712
+40466,71493
+40467,22540
+40468,39049
+40469,77985
+40470,70033
+40471,39049
+40472,20760
+40473,32578
+40474,80440
+40475,19849
+40476,43313
+40477,38296
+40478,22107
+40479,40151
+40480,65503
+40481,37241
+40482,34924
+40483,40864
+40484,69543
+40485,79749
+40486,41299
+40487,19878
+40488,65311
+40489,45096
+40490,48349
+40491,25949
+40492,59508
+40493,38793
+40494,50273,60538
+40495,77472
+40496,27059
+40497,62216
+40498,40685
+40499,39154
+40500,56872
+40501,32971
+40502,75741
+40503,26653
+40504,65251
+40505,77472
+40506,25032
+40507,37405
+40508,75442
+40509,69641
+40510,37383
+40511,36648
+40512,72248
+40513,35469
+40514,25434
+40515,31618
+40516,61182
+40517,55760
+40518,25574
+40519,68176
+40520,61568
+40521,66240
+40522,21959
+40523,21412
+40524,23869
+40525,33512
+40526,30068
+40527,39961
+40528,35668
+40529,70033
+40530,38556
+40531,68461
+40532,77996
+40533,62743
+40534,25770
+40535,40534
+40536,41556
+40537,67703
+40538,72248
+40539,50630
+40540,41033
+40541,68364
+40542,60032
+40543,28000
+40544,48877
+40545,21112
+40546,41607
+40547,38883
+40548,75436
+40549,36744
+40550,41090
+40551,40986
+40552,31037
+40553,60598
+40554,75086
+40555,70364
+40556,48900
+40557,81681
+40558,35664
+40559,49661
+40560,20763
+40561,31058
+40562,60627,60786
+40563,49797
+40564,48202
+40565,78517
+40566,21238
+40567,39147
+40568,47621
+40569,61253
+40570,45813
+40571,67377
+40572,48318,37143
+40573,50721
+40574,73276
+40575,77978
+40576,57865
+40577,46747
+40578,81161
+40579,45813
+40580,29382
+40581,61266
+40582,20972
+40583,82053
+40584,81552
+40585,39049
+40586,31633
+40587,30391
+40588,30391
+40589,73075
+40590,30391
+40591,40416
+40592,74011
+40593,28136
+40594,20760
+40595,40863
+40596,81721
+40597,39466
+40598,28619
+40599,40602
+40600,52849
+40601,19278
+40602,23884
+40603,70568
+40604,60598
+40605,41023
+40606,31604
+40607,73801
+40608,81536
+40609,40489
+40610,44407
+40611,77585
+40612,71838
+40613,40680
+40614,41249
+40615,19828
+40616,32798
+40617,77857
+40618,72776
+40619,19826
+40620,31742
+40621,34154
+40622,19843
+40623,39513
+40624,51468
+40625,52956
+40626,59542
+40627,70409
+40628,53702
+40629,48937
+40630,80505
+40631,30391
+40632,76429
+40633,70259
+40634,39838
+40635,44647
+40636,55859
+40637,40633
+40638,54813
+40639,76429
+40640,35822
+40641,76428
+40642,29418
+40643,71578
+40644,67793
+40645,28654
+40646,57987
+40647,51136
+40648,51408
+40649,69818
+40650,61382
+40651,55490
+40652,55348
+40653,40317
+40654,22634
+40655,76657
+40656,73323
+40657,35666
+40658,21745
+40659,45009
+40660,34087
+40661,37712
+40662,79908
+40663,74812
+40664,57333
+40665,61768
+40666,74814
+40667,21359
+40668,53473
+40669,57187
+40670,31118
+40671,36651
+40672,21359
+40673,21359
+40674,54554
+40675,68646
+40676,19629
+40677,56179
+40678,53454
+40679,31405
+40680,20751
+40681,20751
+40682,77110
+40683,51316
+40684,39998
+40685,43109
+40686,23375
+40687,40748
+40688,31742
+40689,76546
+40690,38477
+40691,66152
+40692,40498
+40693,61182
+40694,74538
+40695,50296
+40696,74538
+40697,42351
+40698,66551
+40699,44913
+40700,31739
+40701,46550
+40702,73838
+40703,66953
+40704,32578
+40705,49310
+40706,50272
+40707,50910
+40708,61201
+40709,80460
+40710,40701
+40711,25017
+40712,26302
+40713,37712
+40714,39151
+40715,34732
+40716,39154
+40717,51950
+40718,50717
+40719,40752
+40720,40753
+40721,72186
+40722,20933
+40723,69870
+40724,69860
+40725,29286
+40726,43467
+40727,76345
+40728,60603
+40729,40053
+40730,40590
+40731,40590
+40732,81741
+40733,42003
+40734,40537
+40735,40538
+40736,41022
+40737,33846
+40738,24188
+40739,54469
+40740,37616
+40741,43168
+40742,43947
+40743,80441
+40744,78179
+40745,56179
+40746,64831
+40747,28536
+40748,55347
+40749,55596
+40750,40745
+40751,25113
+40752,20689
+40753,65956
+40754,76664
+40755,45946
+40756,21618,34199
+40757,26239
+40758,40756
+40759,48144
+40760,42181
+40761,42207
+40762,69010
+40763,39612,21922
+40764,48144
+40765,82066
+40766,32407
+40767,23642
+40768,20152
+40769,20152
+40770,21814
+40771,21814
+40772,28822
+40773,39676
+40774,39676
+40775,58220
+40776,70033
+40777,64809
+40778,70033
+40779,76812
+40780,54468
+40781,21025
+40782,80440
+40783,48928
+40784,31281
+40785,58151
+40786,58152
+40787,70633
+40788,30890
+40789,53454
+40790,25002
+40791,57733
+40792,25729
+40793,74082
+40794,53519
+40795,32492
+40796,40905
+40797,53657
+40798,28541
+40799,76260
+40800,2492
+40801,17469
+40802,2492
+40803,17469
+40804,23035
+40805,75152
+40806,63218
+40807,40557
+40808,80387
+40809,63677
+40810,29971
+40811,40986
+40812,21117
+40813,36872,18826
+40814,40827
+40815,51319
+40816,54267
+40817,51362
+40818,50273
+40819,19298
+40820,44908
+40821,28780,42246,44933
+40822,54562
+40823,19069
+40824,67675
+40825,44931
+40826,61311
+40827,36872
+40828,44932
+40829,18366
+40830,64561
+40831,59549
+40832,21021
+40833,67675
+40834,19069
+40835,68933
+40836,52762
+40837,54642
+40838,56950
+40839,71213
+40840,61713
+40841,40747
+40842,76864
+40843,76864
+40844,81265
+40845,44347
+40846,81544
+40847,55768
+40848,27519
+40849,74818
+40850,51625
+40851,64831
+40852,28774
+40853,59549
+40854,28529
+40855,40747
+40856,72959
+40857,21281
+40858,34559
+40859,37450
+40860,52616
+40861,54130
+40862,40326
+40863,35359
+40864,46171
+40865,57897
+40866,34089
+40867,20710
+40868,19629
+40869,21812
+40870,27876
+40871,61355
+40872,77978
+40873,58088
+40874,58088
+40875,51395
+40876,40337
+40877,75860
+40878,11870
+40879,68646
+40880,25917
+40881,26716
+40882,67254
+40883,74132
+40884,75665
+40885,41732
+40886,42395
+40887,68364
+40888,49230
+40889,61159
+40890,81751
+40891,40892
+40892,60353
+40893,68236
+40894,75566
+40895,64430
+40896,72931
+40897,79723
+40898,50716
+40899,40619
+40900,59020
+40901,22058
+40902,77552
+40903,81750
+40904,25598
+40905,43821
+40906,82056
+40907,53454
+40908,26194
+40909,67201,40907
+40910,45813
+40911,42287
+40912,19421
+40913,28417
+40914,79473
+40915,35735
+40916,48077
+40917,64846
+40918,68929
+40919,59546
+40920,48491
+40921,61646
+40922,29611
+40923,35752
+40924,61646
+40925,61646
+40926,31153
+40927,39563
+40928,66702
+40929,19532
+40930,22051
+40931,40929
+40932,46559,70221
+40933,19907
+40934,45407
+40935,81193
+40936,59306
+40937,59519
+40938,69641
+40939,39647
+40940,22129
+40941,60715
+40942,20726
+40943,43110
+40944,28538
+40945,73837
+40946,59849
+40947,32578
+40948,34199
+40949,36537
+40950,28438
+40951,48555
+40952,68005
+40953,58760
+40954,73588
+40955,63126
+40956,21276
+40957,21447
+40958,44474
+40959,53916
+40960,25306
+40961,43107
+40962,59970
+40963,42518
+40964,33798
+40965,71311
+40966,38472
+40967,62034
+40968,40971
+40969,70426
+40970,40967,71595
+40971,81781
+40972,52132
+40973,49792
+40974,56073
+40975,79458
+40976,43708
+40977,48126
+40978,66351
+40979,48280
+40980,31012
+40981,31012
+40982,81602
+40983,19228
+40984,38601
+40985,77585
+40986,60216
+40987,55624
+40988,61382
+40989,73918
+40990,77374
+40991,74081
+40992,77636
+40993,77816
+40994,57333
+40995,27167
+40996,54971
+40997,51391
+40998,35557
+40999,35557
+41000,78396
+41001,41000
+41002,58200
+41003,31638
+41004,74081
+41005,71516
+41006,19302
+41007,20074
+41008,22946
+41009,30670
+41010,58161
+41011,30937
+41012,32522
+41013,39133
+41014,40293
+41015,44975
+41016,53060
+41017,47487
+41018,49888
+41019,58161
+41020,75792
+41021,58161
+41022,41004
+41023,70399
+41024,54760
+41025,80644
+41026,61705
+41027,69634
+41028,68780
+41029,25454
+41030,74488
+41031,80009
+41032,51523
+41033,79433
+41034,58144
+41035,20745
+41036,52322
+41037,81617
+41038,81617
+41039,81617
+41040,47031
+41041,61251
+41042,20745
+41043,67274
+41044,64833
+41045,40003
+41046,22786
+41047,39847,31612
+41048,30009
+41049,61404
+41050,45680
+41051,41055
+41052,50742
+41053,57572
+41054,61379
+41055,22032,61395
+41056,68352
+41057,68677
+41058,72712,22035
+41059,75566
+41060,23401
+41061,61355
+41062,58948
+41063,25920
+41064,47492
+41065,22004
+41066,51523
+41067,71686
+41068,39479
+41069,46070
+41070,74488
+41071,41337
+41072,73018
+41073,76107
+41074,78050
+41075,53032
+41076,57065
+41077,46047
+41078,61355
+41079,77236
+41080,21476
+41081,53175
+41082,41081,38563
+41083,64403
+41084,73152
+41085,47908
+41086,67836
+41087,73439
+41088,80044
+41089,29928
+41090,32578
+41091,52957
+41092,52959
+41093,53022
+41094,46960
+41095,68652
+41096,66412
+41097,57901
+41098,41097
+41099,22122
+41100,59886
+41101,34398
+41102,75775
+41103,60603
+41104,71315
+41105,48149
+41106,48494
+41107,58168
+41108,63972
+41109,63775
+41110,78703
+41111,39572
+41112,19840
+41113,73897
+41114,38954
+41115,34435
+41116,25113
+41117,33067
+41118,66542
+41119,67565
+41120,67574
+41121,77042
+41122,77060
+41123,59306
+41124,61209
+41125,51408
+41126,20581
+41127,57735
+41128,21304
+41129,56492
+41130,79720
+41131,51803
+41132,63061
+41133,32522
+41134,34154
+41135,62572
+41136,20581
+41137,20749
+41138,41673
+41139,37824
+41140,79572
+41141,81224
+41142,62973
+41143,66260
+41144,36527
+41145,72585
+41146,19757
+41147,36317
+41148,32195
+41149,72960
+41150,48793
+41151,49305
+41152,38634
+41153,50903
+41154,54615
+41155,61766
+41156,77585
+41157,73566
+41158,64142
+41159,50296
+41160,41161
+41161,51408
+41162,51903
+41163,44792
+41164,41172
+41165,74462
+41166,62145
+41167,53369
+41168,20581
+41169,53716
+41170,61763
+41171,59621
+41172,49486
+41173,69439
+41174,33500
+41175,67565
+41176,69531
+41177,77685
+41178,43107
+41179,63483
+41180,79270
+41181,50296,24257
+41182,40147
+41183,25518
+41184,40690
+41185,75864
+41186,73031
+41187,39375
+41188,70033
+41189,24251
+41190,38777
+41191,61355
+41192,80164
+41193,81277
+41194,74462
+41195,41172
+41196,48723
+41197,52144
+41198,59858
+41199,19171
+41200,41911
+41201,81647
+41202,71040
+41203,34118
+41204,39279,32926
+41205,45813
+41206,78727
+41207,20386
+41208,41252
+41209,53963
+41210,49803
+41211,53964
+41212,7922
+41213,76981
+41214,33532
+41215,25708
+41216,51366
+41217,68990
+41218,37988
+41219,67498
+41220,81797
+41221,35926
+41222,18720
+41223,53021
+41224,54947
+41225,21218
+41226,73835
+41227,75510
+41228,81578
+41229,35874
+41230,39294
+41231,42539
+41232,42539
+41233,51069
+41234,42181
+41235,69030
+41236,19944,42246
+41237,71557
+41238,60450
+41239,35922
+41240,62456
+41241,31362
+41242,28346
+41243,53022
+41244,75033
+41245,22149
+41246,21218
+41247,48157
+41248,56179
+41249,21618
+41250,61153
+41251,32790
+41252,39053
+41253,50369
+41254,27288
+41255,40247
+41256,19069
+41257,59205
+41258,35158
+41259,54445
+41260,72983
+41261,72983
+41262,53478
+41263,25302
+41264,38883
+41265,31058
+41266,38958
+41267,25115
+41268,39771
+41269,65858
+41270,70033
+41271,59422
+41272,59306
+41273,21904
+41274,34093
+41275,76662
+41276,64757
+41277,21670
+41278,37953
+41279,34305
+41280,81251
+41281,59422
+41282,32497,56185
+41283,76664
+41284,34305
+41285,78526
+41286,77618
+41287,31241
+41288,31853
+41289,34118
+41290,41130
+41291,62585
+41292,50439
+41293,61054
+41294,43614
+41295,53761
+41296,39101
+41297,23310
+41298,62142
+41299,59414
+41300,77493
+41301,19458
+41302,36952
+41303,19268
+41304,79794
+41305,65789
+41306,41773
+41307,56179
+41308,59426
+41309,20749
+41310,52885
+41311,52803
+41312,28952
+41313,41312
+41314,41317,39449
+41315,41317
+41316,57223
+41317,34285
+41318,39607
+41319,41312
+41320,27563
+41321,39298
+41322,39298
+41323,37789
+41324,70033
+41325,79635
+41326,63426
+41327,41325
+41328,51467
+41329,51467
+41330,51467
+41331,38567
+41332,23313
+41333,39049
+41334,81036
+41335,22679
+41336,79963
+41337,65691
+41338,40063
+41339,74487
+41340,37196
+41341,78578
+41342,73412
+41343,70629
+41344,58215
+41345,70466
+41346,22507
+41347,41344
+41348,39122
+41349,63287
+41350,73838
+41351,61526
+41352,40747
+41353,44013
+41354,59850
+41355,23763
+41356,35188
+41357,23232
+41358,56294
+41359,81578
+41360,54691
+41361,54388
+41362,45199
+41363,23643
+41364,21759
+41365,72447,36074,35116
+41366,48579
+41367,22907
+41368,55373
+41369,77492
+41370,44763
+41371,40752
+41372,30300
+41373,55984
+41374,50439
+41375,64757
+41376,64757
+41377,48662
+41378,35254
+41379,38382
+41380,79354
+41381,21477
+41382,33958
+41383,20745,24834
+41384,20745
+41385,46962
+41386,69953
+41387,41899
+41388,27187
+41389,22853
+41390,70893
+41391,43983
+41392,46639
+41393,46958
+41394,77661
+41395,75942
+41396,45813
+41397,26433
+41398,46760
+41399,53588
+41400,44396
+41401,41399
+41402,58088
+41403,41226
+41404,43122
+41405,28774
+41406,64852
+41407,59306
+41408,59036
+41409,41412
+41410,55022
+41411,35879
+41412,48024
+41413,48251
+41414,25803
+41415,79940
+41416,80505
+41417,59305
+41418,60737
+41419,34186
+41420,73463
+41421,38835
+41422,25202
+41423,19742
+41424,81492
+41425,58088
+41426,74279
+41427,80618
+41428,23294
+41429,38566
+41430,29138
+41431,64720
+41432,36403
+41433,21275
+41434,60534
+41435,41444
+41436,59308
+41437,41444
+41438,39279
+41439,26264
+41440,75020
+41441,70629
+41442,81781
+41443,73836
+41444,74502
+41445,31163
+41446,55022
+41447,53210
+41448,31181
+41449,26577
+41450,50885
+41451,75472
+41452,54082
+41453,59497
+41454,70033
+41455,67972
+41456,25848
+41457,26409
+41458,44609
+41459,52497
+41460,50341
+41461,30890
+41462,36496
+41463,54465
+41464,78346
+41465,29969
+41466,21940
+41467,55668
+41468,55662
+41469,32926
+41470,77790
+41471,41469
+41472,31570
+41473,41469
+41474,41469
+41475,35565
+41476,54753
+41477,45813
+41478,38712
+41479,55825
+41480,52552
+41481,59970
+41482,41487
+41483,23615
+41484,81200
+41485,65928
+41486,63143
+41487,60216
+41488,76258
+41489,61161
+41490,37459
+41491,36571
+41492,41516
+41493,63641
+41494,61141
+41495,51677
+41496,51279
+41497,43247
+41498,55246
+41499,56444
+41500,60350
+41501,62089
+41502,21475
+41503,62744
+41504,22057
+41505,41516
+41506,702
+41507,50354
+41508,50925
+41509,77286
+41510,74500
+41511,61621
+41512,62409
+41513,43247
+41514,78855
+41515,41537
+41516,72959
+41517,29548
+41518,29548
+41519,29548
+41520,29548
+41521,29548
+41522,29548
+41523,29548
+41524,29548
+41525,29548
+41526,29548
+41527,41516
+41528,46894
+41529,29549
+41530,29548
+41531,38381
+41532,75873
+41533,50341
+41534,81626
+41535,25411
+41536,37482
+41537,29488
+41538,30938
+41539,48862
+41540,37179
+41541,64403
+41542,27624
+41543,56937
+41544,71439
+41545,29996
+41546,51440
+41547,31873,60391
+41548,30347
+41549,59604
+41550,41547,34379
+41551,54825
+41552,75741
+41553,77520
+41554,64833
+41555,19655
+41556,27408
+41557,37548
+41558,41559
+41559,77357
+41560,62294
+41561,27536
+41562,64831
+41563,64846
+41564,28602
+41565,22897
+41566,35773
+41567,54913
+41568,69129
+41569,79375
+41570,55660
+41571,58800
+41572,30718
+41573,25862
+41574,41005
+41575,42023
+41576,57982
+41577,80257
+41578,76248
+41579,40747
+41580,52255
+41581,29627
+41582,56584
+41583,43736
+41584,58213
+41585,23322
+41586,41588
+41587,74343
+41588,68622
+41589,55799
+41590,23021
+41591,21447
+41592,19697
+41593,65758
+41594,21777
+41595,51319
+41596,55015
+41597,79245
+41598,73207
+41599,31669
+41600,37237
+41601,66055
+41602,29996
+41603,19343
+41604,35557
+41605,35557
+41606,26884
+41607,60216
+41608,20163
+41609,51391
+41610,35679
+41611,54427
+41612,40150
+41613,75195
+41614,65698
+41615,56480
+41616,21447
+41617,39049
+41618,80185
+41619,80185
+41620,59826
+41621,22427
+41622,78770
+41623,30718
+41624,61331
+41625,19421
+41626,38920
+41627,19621
+41628,71315
+41629,37173
+41630,58012
+41631,47455
+41632,23897
+41633,41634
+41634,77641
+41635,42523
+41636,81161
+41637,52121
+41638,58088
+41639,60936
+41640,62030
+41641,45813
+41642,68652
+41643,61396
+41644,39502
+41645,57280
+41646,26318
+41647,35557
+41648,41606
+41649,23419
+41650,77374
+41651,31245
+41652,58508
+41653,44738
+41654,30062
+41655,19421
+41656,6305
+41657,20422
+41658,61956
+41659,74818
+41660,35557
+41661,58088
+41662,58088
+41663,21361
+41664,72248
+41665,72308
+41666,27363
+41667,50717
+41668,72122
+41669,22053
+41670,62144
+41671,21214
+41672,70110
+41673,70111
+41674,27091
+41675,66702
+41676,68692
+41677,62534
+41678,38914
+41679,34118
+41680,53516
+41681,62054
+41682,63224
+41683,76989
+41684,81874
+41685,35386
+41686,38910
+41687,51889
+41688,33442
+41689,53849
+41690,26320
+41691,44730
+41692,51856
+41693,70474
+41694,74640
+41695,50910
+41696,81159
+41697,25495
+41698,35480
+41699,30461
+41700,60984
+41701,60984
+41702,39055
+41703,41672
+41704,19421
+41705,47317
+41706,41547
+41707,43109
+41708,48251
+41709,79467
+41710,30348
+41711,80845
+41712,77059
+41713,45641
+41714,53412
+41715,53413
+41716,39088
+41717,81763
+41718,41719
+41719,34808
+41720,41022
+41721,58049,31145
+41722,41719
+41723,82035,41719
+41724,44474
+41725,65956
+41726,49660
+41727,43518
+41728,63513
+41729,65956
+41730,31476
+41731,31853
+41732,23370
+41733,30154
+41734,33474
+41735,24007
+41736,35359
+41737,19741
+41738,24007
+41739,70924
+41740,67275
+41741,63790
+41742,67594
+41743,20690
+41744,33009
+41745,26884
+41746,69010
+41747,64142
+41748,61259
+41749,31245
+41750,78965
+41751,78547
+41752,64142
+41753,41729
+41754,81482
+41755,46715
+41756,78756
+41757,20828
+41758,35445
+41759,46092
+41760,71517
+41761,31846
+41762,28890
+41763,31858
+41764,58917
+41765,70033
+41766,69448
+41767,41023
+41768,41305
+41769,26120
+41770,66857
+41771,31489
+41772,27167
+41773,74081
+41774,38839
+41775,28167
+41776,40021
+41777,47948
+41778,53656
+41779,66018
+41780,60993
+41781,57594,41773
+41782,38218
+41783,63494
+41784,40930
+41785,60604
+41786,77462
+41787,32929
+41788,60216
+41789,50701
+41790,24881
+41791,63584
+41792,29643
+41793,35719
+41794,40772
+41795,61121
+41796,67938
+41797,31596
+41798,54439
+41799,65245
+41800,58207
+41801,37113
+41802,44509
+41803,61713
+41804,26359
+41805,60394
+41806,56375
+41807,58760
+41808,63157
+41809,70675
+41810,67335
+41811,22542
+41812,81643
+41813,71446
+41814,75583
+41815,27459
+41816,31245
+41817,63314
+41818,50450
+41819,60321
+41820,67675
+41821,38834
+41822,34591
+41823,19069
+41824,47229
+41825,46916
+41826,19069
+41827,25002
+41828,57288
+41829,4239
+41830,28774
+41831,21276
+41832,70629
+41833,34924
+41834,45813
+41835,19228
+41836,35838
+41837,81396
+41838,72421
+41839,19143
+41840,65691
+41841,71314
+41842,53476
+41843,36839
+41844,78996
+41845,26975
+41846,81578
+41847,20577
+41848,35626
+41849,42514
+41850,47486
+41851,52629
+41852,68289
+41853,35922
+41854,74500
+41855,62453
+41856,55026
+41857,27086
+41858,39116
+41859,45183
+41860,20530
+41861,50602
+41862,53619
+41863,13818
+41864,61789
+41865,35474
+41866,13815
+41867,62935
+41868,71512
+41869,19541
+41870,21905
+41871,73837
+41872,28346
+41873,55229
+41874,63074
+41875,82190
+41876,30697
+41877,58166
+41878,39294
+41879,42539
+41880,35359
+41881,35359
+41882,58100
+41883,72791
+41884,48126
+41885,73837
+41886,49158
+41887,34657
+41888,26433
+41889,78984
+41890,71063
+41891,31287
+41892,72165
+41893,78464
+41894,49312
+41895,20321
+41896,41083
+41897,42225
+41898,30063
+41899,20759
+41900,56293
+41901,30062
+41902,45260
+41903,36943
+41904,36943
+41905,58158
+41906,20726
+41907,25256
+41908,19944,61262
+41909,51523
+41910,50802
+41911,28475
+41912,51573
+41913,66953
+41914,48423
+41915,48551
+41916,18940
+41917,41914
+41918,30937
+41919,35792
+41920,35815
+41921,74939
+41922,73761
+41923,77687
+41924,29896
+41925,70651
+41926,20670
+41927,81181
+41928,63917
+41929,37405
+41930,51353
+41931,40482
+41932,53425
+41933,36526
+41934,57594
+41935,25097
+41936,20120
+41937,55785
+41938,48072
+41939,40150
+41940,51562
+41941,30568
+41942,78679
+41943,57143
+41944,79745
+41945,32173
+41946,31858
+41947,60264
+41948,58224
+41949,39049
+41950,48748
+41951,53524
+41952,69635
+41953,30697
+41954,75843
+41955,76633
+41956,33893
+41957,60062
+41958,63198
+41959,34697
+41960,30699
+41961,21770
+41962,62149
+41963,76134
+41964,76691
+41965,35480
+41966,23579
+41967,74906
+41968,41110
+41969,20992
+41970,39049
+41971,47442
+41972,80047
+41973,66939
+41974,79653
+41975,68896
+41976,33464
+41977,40863
+41978,37998
+41979,21270
+41980,71398
+41981,54562
+41982,54082
+41983,72174
+41984,71900
+41985,46490
+41986,41119
+41987,37416
+41988,41119
+41989,66154
+41990,50602
+41991,32531
+41992,40680
+41993,81781
+41994,30584
+41995,45097
+41996,51135
+41997,81161
+41998,74275
+41999,60216
+42000,35822
+42001,60216
+42002,51928
+42003,80011
+42004,69818
+42005,50900
+42006,18908
+42007,43313
+42008,28129
+42009,19654
+42010,33650
+42011,74161
+42012,47770
+42013,68794
+42014,50969
+42015,43291
+42016,35557
+42017,69977
+42018,45813
+42019,30391
+42020,30391
+42021,44609
+42022,31288
+42023,81193
+42024,61259
+42025,54562
+42026,29833
+42027,68854
+42028,71636
+42029,61263
+42030,35359
+42031,80219
+42032,56525,55688
+42033,32534
+42034,24609
+42035,67574
+42036,22186
+42037,66953
+42038,32196
+42039,22766
+42040,66953
+42041,79471
+42042,79471
+42043,49887
+42044,49887
+42045,63287
+42046,70761
+42047,48318
+42048,19069
+42049,24306
+42050,21358
+42051,54082
+42052,2492
+42053,17469
+42054,42002
+42055,27519
+42056,48413
+42057,79596
+42058,42056
+42059,26938
+42060,52904
+42061,64949
+42062,37417
+42063,73273
+42064,73274
+42065,21276
+42066,48875
+42067,70629
+42068,50701
+42069,54130
+42070,45828
+42071,55768
+42072,28844
+42073,65793
+42074,72042
+42075,66682
+42076,60216
+42077,19468
+42078,35838,79524
+42079,31690
+42080,26298,61144
+42081,75020
+42082,44614
+42083,81918
+42084,20690
+42085,41973
+42086,59308
+42087,68352
+42088,53628
+42089,42097
+42090,20743
+42091,61382
+42092,31646
+42093,19228
+42094,35838
+42095,57461
+42096,42090,42049
+42097,38218
+42098,40293
+42099,36049
+42100,65636
+42101,59860
+42102,42078,42093
+42103,68196
+42104,68196
+42105,26010
+42106,68289
+42107,22684
+42108,30118
+42109,33479
+42110,37955
+42111,68268
+42112,78639
+42113,65956
+42114,65953
+42115,28164
+42116,65956
+42117,44474
+42118,65956
+42119,61246
+42120,73664
+42121,43313
+42122,47911
+42123,61402
+42124,75057
+42125,39878
+42126,51068
+42127,48545
+42128,19069
+42129,20355,56543
+42130,61291,43427
+42131,29971
+42132,48875
+42133,37448
+42134,22634
+42135,59549
+42136,78494
+42137,68057
+42138,68342
+42139,43756
+42140,50117
+42141,76981
+42142,78698
+42143,21938
+42144,41165
+42145,56492
+42146,56441
+42147,41063
+42148,59549
+42149,62432
+42150,59812
+42151,32929
+42152,59427
+42153,59826
+42154,75665
+42155,68793
+42156,64632
+42157,41444
+42158,35684
+42159,57897
+42160,35637
+42161,39088
+42162,72917
+42163,68057
+42164,42154
+42165,58378
+42166,65870
+42167,67614
+42168,53646
+42169,37179
+42170,26827
+42171,65108
+42172,80227
+42173,60695
+42174,36760
+42175,45286
+42176,77995
+42177,80006
+42178,71307
+42179,79270
+42180,81874
+42181,61487
+42182,20665
+42183,21718
+42184,32887
+42185,45813
+42186,46673
+42187,24530
+42188,51091
+42189,56111
+42190,58027
+42191,59377
+42192,59656
+42193,59658
+42194,61246
+42195,64688
+42196,66900
+42197,71113
+42198,71869
+42199,72153
+42200,73612
+42201,76981
+42202,77989
+42203,80561
+42204,37712
+42205,46670
+42206,70033
+42207,39381
+42208,75564
+42209,71686
+42210,71557
+42211,72483
+42212,34199
+42213,24873
+42214,78449
+42215,33824
+42216,20079
+42217,40564
+42218,25770
+42219,72503
+42220,40564
+42221,20079
+42222,33134
+42223,62740
+42224,40564
+42225,29928
+42226,22688
+42227,33539
+42228,56327
+42229,54562,77509
+42230,50123
+42231,54562
+42232,34199
+42233,34199
+42234,36965
+42235,32531
+42236,54427
+42237,54431
+42238,27276
+42239,48413
+42240,49763
+42241,30890
+42242,22901
+42243,78578
+42244,30514
+42245,49969
+42246,40794
+42247,72970
+42248,57144
+42249,78097
+42250,69744
+42251,26504
+42252,26504
+42253,48413
+42254,78995
+42255,31539
+42256,48579
+42257,81643
+42258,40370
+42259,34924
+42260,41911
+42261,42148
+42262,44628
+42263,27405
+42264,45559
+42265,45546
+42266,75292
+42267,50273
+42268,64287
+42269,61009
+42270,52718
+42271,53309
+42272,54130
+42273,41781,47047
+42274,32859
+42275,58462
+42276,62757
+42277,63775
+42278,73507
+42279,42252
+42280,25202
+42281,39101
+42282,75292
+42283,76196
+42284,78204
+42285,80640
+42286,25391
+42287,31506
+42288,39817
+42289,28790
+42290,68629
+42291,25115
+42292,51319
+42293,37712
+42294,53317
+42295,41773,47047
+42296,41773,47047
+42297,48579
+42298,42358
+42299,69304
+42300,38639
+42301,48213
+42302,28790
+42303,61702
+42304,41877
+42305,57934
+42306,21703
+42307,35177
+42308,35181
+42309,50594
+42310,20017
+42311,60000
+42312,79282
+42313,42322
+42314,48126
+42315,70568
+42316,48127
+42317,35917
+42318,53716
+42319,57934
+42320,65520
+42321,41111
+42322,46553
+42323,47805
+42324,33292
+42325,21669
+42326,79282
+42327,54978
+42328,37858
+42329,37859
+42330,57934
+42331,37637
+42332,58162
+42333,81647
+42334,61054
+42335,44358
+42336,59427
+42337,55486
+42338,31106
+42339,26884
+42340,48735
+42341,46782
+42342,60216
+42343,36574
+42344,62187
+42345,38013
+42346,36610
+42347,69400
+42348,30392
+42349,70675
+42350,60216
+42351,71315
+42352,45291
+42353,32610
+42354,35667
+42355,22997
+42356,35737
+42357,76226
+42358,53624
+42359,72839
+42360,25424
+42361,28467
+42362,43458
+42363,32150
+42364,43458
+42365,1330
+42366,40859
+42367,32324
+42368,56472
+42369,52854
+42370,32991
+42371,68619
+42372,33793
+42373,71311
+42374,72029
+42375,22428
+42376,27086
+42377,1330
+42378,40752
+42379,72917
+42380,26298
+42381,20905
+42382,56601
+42383,49341
+42384,35105
+42385,71719
+42386,74748
+42387,53660
+42388,80753
+42389,38218
+42390,69663
+42391,80764
+42392,42387
+42393,53648
+42394,39318
+42395,51814
+42396,46599
+42397,70033
+42398,60076
+42399,52904
+42400,35557
+42401,81462,8536
+42402,30432
+42403,76877
+42404,53847
+42405,68316
+42406,33725
+42407,42406
+42408,79701
+42409,52814
+42410,55314
+42411,36887
+42412,33216
+42413,21671
+42414,33539
+42415,53717
+42416,31520
+42417,65892
+42418,65956
+42419,47273
+42420,60032
+42421,58276
+42422,48157
+42423,61764
+42424,61748
+42425,43911
+42426,19735
+42427,47409
+42428,66882
+42429,69197
+42430,29026
+42431,58161
+42432,38807
+42433,35480
+42434,49792
+42435,39111
+42436,42446
+42437,45367
+42438,25202
+42439,20647
+42440,20650
+42441,78698
+42442,37355
+42443,50824
+42444,51238
+42445,45367
+42446,30680
+42447,35917
+42448,65711
+42449,72714
+42450,79387
+42451,64142
+42452,47388
+42453,30420
+42454,77429
+42455,21090
+42456,30391
+42457,50703
+42458,62145
+42459,60385
+42460,76664
+42461,24243
+42462,63124
+42463,65949
+42464,42461
+42465,42158
+42466,74996
+42467,37478
+42468,21200
+42469,37905
+42470,52773
+42471,53958
+42472,81251
+42473,42471,36602
+42474,57098
+42475,49802
+42476,69561
+42477,23760
+42478,79794
+42479,58118
+42480,44558
+42481,35534
+42482,24284
+42483,21620
+42484,42429
+42485,63060
+42486,68443
+42487,23790
+42488,24249
+42489,24251
+42490,43285
+42491,79282
+42492,56492
+42493,72271
+42494,37179
+42495,41743
+42496,37179
+42497,42495
+42498,45874,79328
+42499,60242
+42500,60385
+42501,77108
+42502,80188
+42503,65955
+42504,57360
+42505,63177
+42506,48474
+42507,32798
+42508,22050
+42509,44527
+42510,27625
+42511,49769
+42512,26884
+42513,58118
+42514,42489
+42515,24243
+42516,31547
+42517,49797
+42518,21671
+42519,58798
+42520,42518
+42521,42531
+42522,20977
+42523,40752
+42524,72763,20973,21006,79401
+42525,42523
+42526,60216
+42527,3695
+42528,3695
+42529,25862
+42530,40962
+42531,52904
+42532,42531
+42533,19737
+42534,53022
+42535,66149
+42536,78854
+42537,25526
+42538,19239
+42539,75510
+42540,49797
+42541,21963
+42542,67039
+42543,21963
+42544,21963
+42545,21963
+42546,22643
+42547,52887
+42548,52887
+42549,24325
+42550,55081
+42551,21963
+42552,24325
+42553,65960
+42554,51397
+42555,51397
+42556,21963
+42557,67039
+42558,67039
+42559,67039
+42560,51397
+42561,35097
+42562,65960
+42563,65960
+42564,55081
+42565,51397
+42566,51397
+42567,35243
+42568,51397
+42569,21963
+42570,21963
+42571,63460
+42572,67039
+42573,55081
+42574,29191
+42575,20426
+42576,65960
+42577,61254
+42578,21720
+42579,35243
+42580,21963
+42581,52660
+42582,67039,17393
+42583,39679
+42584,55081
+42585,24325
+42586,65960
+42587,52887
+42588,40303
+42589,24325
+42590,55081
+42591,65960
+42592,29191
+42593,24325
+42594,52660
+42595,67039
+42596,44703
+42597,35243
+42598,63460
+42599,24325
+42600,24325
+42601,21720
+42602,55081
+42603,55081
+42604,35243
+42605,76764
+42606,21963
+42607,21963
+42608,55081
+42609,51397
+42610,51397
+42611,21963
+42612,67039
+42613,67039
+42614,52887
+42615,67039
+42616,63460
+42617,22643
+42618,35097
+42619,65960
+42620,35243
+42621,67039
+42622,33239
+42623,52887
+42624,55081
+42625,35243
+42626,22643
+42627,27763
+42628,55081
+42629,51397
+42630,21963
+42631,35243
+42632,35097
+42633,35243
+42634,35097
+42635,20426
+42636,52887
+42637,65960
+42638,55081
+42639,55081
+42640,55081
+42641,55081
+42642,21963
+42643,21963
+42644,67039
+42645,21720
+42646,55081
+42647,35243
+42648,61254
+42649,41879
+42650,35243
+42651,55081
+42652,35097
+42653,21963
+42654,67039
+42655,35097
+42656,67039
+42657,67039
+42658,35097
+42659,21963
+42660,21963
+42661,44703
+42662,55081
+42663,65960
+42664,40303
+42665,65960
+42666,44703
+42667,21963
+42668,40303
+42669,40303
+42670,52887
+42671,54980
+42672,22643
+42673,63460
+42674,41879
+42675,39679
+42676,21963
+42677,24325
+42678,21720
+42679,21963
+42680,67039
+42681,52660
+42682,35243
+42683,67039
+42684,51397
+42685,22643
+42686,35243
+42687,21720
+42688,55081
+42689,65960
+42690,21963
+42691,52887
+42692,21963
+42693,35097
+42694,55081
+42695,65960
+42696,35097
+42697,21963
+42698,67039
+42699,55081
+42700,22643
+42701,27763
+42702,65960
+42703,24325
+42704,21963
+42705,63460
+42706,24325
+42707,67039
+42708,51397
+42709,67039
+42710,67039
+42711,55081
+42712,35097
+42713,21720
+42714,55081
+42715,35097
+42716,35097
+42717,21963
+42718,35097
+42719,21720
+42720,39679
+42721,65960
+42722,65960
+42723,52660
+42724,55081
+42725,67039
+42726,67039
+42727,35243
+42728,21720
+42729,20426
+42730,35097
+42731,41879
+42732,63460
+42733,21963
+42734,35243
+42735,65960
+42736,24325
+42737,44703
+42738,22643
+42739,65960
+42740,55081
+42741,41879
+42742,29191
+42743,35243
+42744,39679
+42745,35243
+42746,51397
+42747,55081
+42748,21720
+42749,27763
+42750,52887
+42751,27763
+42752,81687
+42753,65960
+42754,65960
+42755,63460
+42756,21963
+42757,44703
+42758,21963
+42759,65960
+42760,35243
+42761,44703
+42762,27763
+42763,21963
+42764,40303
+42765,21963
+42766,35243
+42767,35097
+42768,22643
+42769,67039
+42770,22643
+42771,35097
+42772,63460
+42773,35097
+42774,21963
+42775,35097
+42776,35097
+42777,61254
+42778,51397
+42779,35097
+42780,63460
+42781,41879
+42782,21963
+42783,52887
+42784,35243
+42785,52887
+42786,21963
+42787,67039
+42788,21963
+42789,21963
+42790,61254
+42791,61254
+42792,21963
+42793,21963
+42794,63460
+42795,44703
+42796,51397
+42797,67039
+42798,63460
+42799,51397
+42800,21720
+42801,21963
+42802,44703
+42803,52887
+42804,52887
+42805,35097
+42806,52887
+42807,41879
+42808,27763
+42809,21963
+42810,35097
+42811,35243
+42812,21963
+42813,35243
+42814,21963
+42815,41879
+42816,52660
+42817,65960
+42818,35243
+42819,51397
+42820,52887
+42821,52887
+42822,67039
+42823,35097
+42824,51397
+42825,52887
+42826,30218
+42827,67039
+42828,55081
+42829,24325
+42830,24325
+42831,65960
+42832,20426
+42833,35243
+42834,65960
+42835,65960
+42836,67039
+42837,52887
+42838,67039
+42839,21963
+42840,51397,8308
+42841,21963
+42842,24325
+42843,24325
+42844,35243
+42845,44703
+42846,22643
+42847,51397
+42848,21963
+42849,21963
+42850,22643
+42851,55081
+42852,67039
+42853,39679
+42854,41879
+42855,24325
+42856,52887
+42857,67039
+42858,41879
+42859,22643
+42860,67039
+42861,63460
+42862,35243
+42863,55081
+42864,61254
+42865,22643
+42866,35097
+42867,27763
+42868,35243
+42869,35097
+42870,54980
+42871,35097
+42872,52887
+42873,35097
+42874,27763
+42875,52887
+42876,35097
+42877,52887
+42878,44703
+42879,52660
+42880,35243
+42881,27763
+42882,40303
+42883,21720
+42884,55081
+42885,61254
+42886,55081
+42887,55081
+42888,65960
+42889,67039
+42890,52887
+42891,44703
+42892,67039
+42893,67039
+42894,40303
+42895,65960
+42896,21963
+42897,41879
+42898,65960
+42899,55081
+42900,35243
+42901,41879
+42902,67039
+42903,21963
+42904,22643
+42905,22643
+42906,52887
+42907,30218
+42908,51397
+42909,54980
+42910,21963
+42911,55081
+42912,54980
+42913,54980
+42914,21963
+42915,52660
+42916,63460
+42917,22643
+42918,65960
+42919,24325
+42920,54980
+42921,55081
+42922,54980
+42923,55081
+42924,55081
+42925,21963
+42926,52887
+42927,39679
+42928,21963
+42929,67039
+42930,35097
+42931,40303
+42932,55081
+42933,63460
+42934,67039
+42935,55081
+42936,35243
+42937,39679
+42938,54980
+42939,35097
+42940,21720
+42941,21963
+42942,21963
+42943,55081
+42944,52887
+42945,52887
+42946,67039
+42947,55081
+42948,21963
+42949,61254
+42950,54980
+42951,21963
+42952,65960
+42953,55081
+42954,24325
+42955,63460
+42956,21963
+42957,65960
+42958,55081
+42959,35097
+42960,55081
+42961,21963
+42962,27763
+42963,52887
+42964,35097
+42965,52887
+42966,35097
+42967,24325
+42968,65960
+42969,52887
+42970,39679
+42971,65960
+42972,21963
+42973,67039
+42974,35243
+42975,24325
+42976,41879
+42977,65960
+42978,67039
+42979,35097
+42980,55081
+42981,39679
+42982,35243
+42983,24325
+42984,52887
+42985,41879
+42986,41879
+42987,21963
+42988,35243
+42989,22643
+42990,40303
+42991,41879
+42992,35097
+42993,35097
+42994,81687
+42995,52887
+42996,22643
+42997,29191
+42998,21963
+42999,21963
+43000,51397
+43001,63460
+43002,52660
+43003,21963
+43004,21720
+43005,21963
+43006,35243
+43007,21720
+43008,51397
+43009,41879
+43010,21963
+43011,61254
+43012,67039
+43013,44703
+43014,22643
+43015,67039
+43016,22643
+43017,35243
+43018,27763
+43019,24325
+43020,20426
+43021,35243
+43022,52887
+43023,55081
+43024,55081
+43025,81687
+43026,55081
+43027,55304
+43028,22643
+43029,63460
+43030,54980
+43031,21720
+43032,55081
+43033,35097
+43034,22643
+43035,65960
+43036,65960
+43037,55081
+43038,65960
+43039,63460
+43040,35097
+43041,35243
+43042,21963
+43043,21963
+43044,22643
+43045,22643
+43046,35097
+43047,65960
+43048,65960
+43049,35097
+43050,67039
+43051,81687
+43052,52887
+43053,40303
+43054,52887
+43055,54980
+43056,63460
+43057,22643
+43058,21720
+43059,39679
+43060,21963
+43061,21720
+43062,65960
+43063,24325
+43064,22643
+43065,65960
+43066,22643
+43067,63460
+43068,51397
+43069,24325
+43070,67039
+43071,65960
+43072,21963
+43073,65960
+43074,55081
+43075,55081
+43076,65960
+43077,21963
+43078,21963
+43079,21963
+43080,41879
+43081,22643
+43082,24325
+43083,63460
+43084,21963
+43085,44703
+43086,67039
+43087,39679
+43088,21963
+43089,21963
+43090,35243
+43091,51397
+43092,44703
+43093,21963
+43094,55081
+43095,59115
+43096,28803
+43097,56827
+43098,51464
+43099,36041
+43100,43126
+43101,29579
+43102,38807
+43103,61646
+43104,65579
+43105,56009
+43106,36981
+43107,57333
+43108,46540
+43109,56178
+43110,56179
+43111,76633
+43112,68290
+43113,36981
+43114,35863
+43115,35858
+43116,53480
+43117,53600
+43118,51523
+43119,63197
+43120,69237
+43121,55314
+43122,63861
+43123,53472
+43124,60655
+43125,43112
+43126,43113
+43127,79211
+43128,61800
+43129,5485
+43130,39049
+43131,43133
+43132,43128
+43133,58073
+43134,45521
+43135,77961
+43136,45813
+43137,40752
+43138,66862
+43139,20905
+43140,53716
+43141,73837
+43142,37644
+43143,63467
+43144,73398
+43145,68289
+43146,61260
+43147,24246
+43148,74067
+43149,79416
+43150,21271
+43151,54562
+43152,28780,69049
+43153,58208
+43154,44474
+43155,61792
+43156,71996
+43157,28697
+43158,79379
+43159,45813
+43160,81549
+43161,44719,61305
+43162,41226
+43163,31565
+43164,24245
+43165,43168
+43166,47944
+43167,55348
+43168,79738
+43169,66260
+43170,27501
+43171,38313
+43172,72519
+43173,27688
+43174,41621
+43175,72776
+43176,44609
+43177,29606
+43178,60688
+43179,33277
+43180,51251
+43181,64196
+43182,29513
+43183,73179
+43184,69818
+43185,71676
+43186,21208
+43187,66696
+43188,77192
+43189,41228
+43190,81781
+43191,38569
+43192,42322
+43193,47503
+43194,37987
+43195,20743
+43196,20858
+43197,50442
+43198,21544
+43199,22878
+43200,45813
+43201,22878
+43202,77641
+43203,29579
+43204,30147
+43205,31183
+43206,32025
+43207,72157
+43208,37316
+43209,41399
+43210,46581
+43211,45813
+43212,49546
+43213,54831
+43214,69771
+43215,63103
+43216,60321
+43217,63701
+43218,8184
+43219,65441
+43220,52418
+43221,67608
+43222,68225
+43223,39676
+43224,69207
+43225,67951
+43226,72892
+43227,44013
+43228,74344
+43229,20159
+43230,22878
+43231,77101
+43232,80276
+43233,43193
+43234,47198
+43235,40423
+43236,63471
+43237,76909
+43238,43239
+43239,60630
+43240,56941
+43241,51039
+43242,54562
+43243,31115
+43244,79189
+43245,41650
+43246,80429
+43247,19130
+43248,43247
+43249,69860
+43250,75472
+43251,81734
+43252,81733
+43253,46490
+43254,70976
+43255,75793
+43256,27688
+43257,37898
+43258,31115
+43259,31115
+43260,31115
+43261,64831
+43262,50450
+43263,50565
+43264,51180
+43265,52645
+43266,40608
+43267,70629
+43268,44575
+43269,25727
+43270,71446
+43271,2492
+43272,17469
+43273,66103
+43274,61259
+43275,73837
+43276,23267
+43277,40340
+43278,73837
+43279,22128
+43280,30073
+43281,21270
+43282,51068
+43283,30153
+43284,30391
+43285,51665
+43286,67296
+43287,30153
+43288,46035
+43289,66493
+43290,70862
+43291,45813
+43292,40564
+43293,72142
+43294,71408
+43295,24007
+43296,26884
+43297,31853
+43298,28786
+43299,31853
+43300,39049
+43301,20760
+43302,60132
+43303,44704
+43304,66965
+43305,45813
+43306,45813
+43307,67290
+43308,27162
+43309,23536
+43310,70569
+43311,22901
+43312,81462
+43313,81462
+43314,21922
+43315,63106,39607
+43316,81462,41607
+43317,81462,52211
+43318,28965
+43319,39621
+43320,40063
+43321,28702
+43322,22955
+43323,29443
+43324,7157
+43325,7157
+43326,37328
+43327,23309
+43328,43247
+43329,35482
+43330,21950
+43331,47984
+43332,43744
+43333,31824
+43334,35676
+43335,69561
+43336,65774
+43337,62361
+43338,32718
+43339,25486
+43340,38044
+43341,43110
+43342,47338
+43343,35992
+43344,80626
+43345,52857
+43346,30557
+43347,25256
+43348,48862
+43349,45097
+43350,23622
+43351,23621
+43352,52084
+43353,58144
+43354,82167
+43355,35626
+43356,73837
+43357,43356
+43358,43356
+43359,25949
+43360,72917
+43361,71320
+43362,71516
+43363,43377
+43364,31616
+43365,31618
+43366,28124
+43367,33542
+43368,33539
+43369,32691
+43370,63399
+43371,20718
+43372,72384
+43373,48438,40021
+43374,32691
+43375,27781
+43376,52773
+43377,75086
+43378,81647
+43379,45813
+43380,39014
+43381,54562
+43382,77059
+43383,61776
+43384,30074
+43385,40489
+43386,64470
+43387,39379
+43388,30405
+43389,65956
+43390,38381
+43391,59302
+43392,29969
+43393,63942
+43394,79076
+43395,61064
+43396,61064
+43397,74392
+43398,40619
+43399,45570
+43400,74990
+43401,47944
+43402,79572
+43403,25949
+43404,25677
+43405,25677
+43406,20995
+43407,77641
+43408,33796
+43409,78179
+43410,25949
+43411,40489
+43412,67938
+43413,21135
+43414,45556
+43415,37120
+43416,72121,54871
+43417,40752
+43418,51395
+43419,52857
+43420,74772
+43421,45813
+43422,45813
+43423,32266
+43424,41096
+43425,70397
+43426,22790
+43427,70397
+43428,72226
+43429,60042
+43430,63790
+43431,33626
+43432,56419
+43433,27319
+43434,22050
+43435,53805,21304
+43436,69051
+43437,78528
+43438,53519
+43439,19419
+43440,61705
+43441,46451
+43442,23622
+43443,26788
+43444,70033
+43445,38814
+43446,58776
+43447,68233
+43448,81592
+43449,48126
+43450,59549
+43451,32715
+43452,63228
+43453,60534
+43454,30514
+43455,73451
+43456,72057
+43457,29281
+43458,45060
+43459,31809
+43460,30954
+43461,50784
+43462,51319
+43463,39578
+43464,42249
+43465,42249
+43466,40209
+43467,46818
+43468,46553
+43469,46553,32225
+43470,20354,43471
+43471,19953
+43472,34989
+43473,43517
+43474,43518
+43475,28202
+43476,25649
+43477,42360
+43478,58472
+43479,67675
+43480,20355
+43481,77404
+43482,20355
+43483,60191,21034
+43484,21703
+43485,79282
+43486,70397
+43487,63434
+43488,35130
+43489,25770
+43490,68852
+43491,70568
+43492,43491
+43493,43491
+43494,43491
+43495,55815
+43496,37041
+43497,48487
+43498,55263
+43499,20995
+43500,19944
+43501,19069
+43502,43509,20755
+43503,43509
+43504,41265
+43505,43509
+43506,43509
+43507,19935
+43508,44439
+43509,38385
+43510,20355
+43511,61906
+43512,58162
+43513,31808
+43514,19069
+43515,54061
+43516,31423
+43517,58158
+43518,74939
+43519,43520
+43520,27756
+43521,43520
+43522,21669
+43523,35359
+43524,55294
+43525,80132
+43526,32718
+43527,79432
+43528,54091
+43529,44704
+43530,36767
+43531,53548
+43532,39183
+43533,47948
+43534,48740
+43535,20905
+43536,25022
+43537,69704
+43538,19230
+43539,55373
+43540,49266
+43541,25018
+43542,23543
+43543,37789
+43544,42097
+43545,68355
+43546,31638
+43547,49728
+43548,49728
+43549,51467
+43550,62142
+43551,71301,46215
+43552,21474
+43553,62187
+43554,25518
+43555,45813
+43556,25518
+43557,28747
+43558,44013
+43559,45830
+43560,67644
+43561,23579
+43562,55584
+43563,54446
+43564,58595
+43565,45957
+43566,27363
+43567,22788
+43568,64905
+43569,33184
+43570,49136
+43571,37041
+43572,43364
+43573,38168
+43574,38569
+43575,60032
+43576,74402
+43577,22507
+43578,43577
+43579,34389
+43580,43585
+43581,59587
+43582,60762
+43583,43585
+43584,80146
+43585,59587
+43586,43577
+43587,69887
+43588,48894
+43589,37712
+43590,41625
+43591,48877
+43592,36927
+43593,72027
+43594,18969
+43595,67614
+43596,38601
+43597,34069
+43598,35534
+43599,31058
+43600,62547
+43601,80509
+43602,48756
+43603,56807
+43604,49844
+43605,52417
+43606,79541
+43607,81462
+43608,43603
+43609,39676
+43610,39750
+43611,40938
+43612,43611
+43613,77952
+43614,54561
+43615,33134
+43616,75086
+43617,61361
+43618,54361
+43619,72840
+43620,59105
+43621,32691
+43622,71493,70717
+43623,24783
+43624,41470
+43625,47432
+43626,49844
+43627,81161
+43628,40754
+43629,46149
+43630,19979
+43631,81161
+43632,37076
+43633,47433
+43634,26996
+43635,29731
+43636,21361
+43637,62029
+43638,36932
+43639,39676
+43640,39676
+43641,39925
+43642,33530
+43643,45813
+43644,44976
+43645,69386
+43646,31417
+43647,54879
+43648,54957
+43649,12336
+43650,69566
+43651,60400
+43652,61493
+43653,39676
+43654,51159
+43655,66240
+43656,67272
+43657,21361
+43658,63334
+43659,69728
+43660,27850
+43661,51395
+43662,76303
+43663,80429
+43664,80565
+43665,58291
+43666,81571
+43667,76662
+43668,81161
+43669,70033
+43670,44181
+43671,36694
+43672,81161
+43673,45813
+43674,35787
+43675,81161
+43676,40068
+43677,33644
+43678,70526
+43679,21959
+43680,71748
+43681,54553
+43682,49224
+43683,74367
+43684,45813
+43685,55951
+43686,58384
+43687,45362
+43688,22684,43693
+43689,22786,43693
+43690,29969
+43691,43693
+43692,32504
+43693,72435
+43694,43458,43693
+43695,51058
+43696,43701
+43697,62458
+43698,73805
+43699,81065
+43700,55373,43693
+43701,61395
+43702,61401
+43703,68230
+43704,78014
+43705,36007
+43706,37532
+43707,37832
+43708,46553
+43709,82092
+43710,80460
+43711,25046
+43712,41556
+43713,25059
+43714,34800
+43715,60042
+43716,81807
+43717,35390
+43718,32718
+43719,38601
+43720,22640
+43721,79328
+43722,19462
+43723,64142
+43724,55210
+43725,43766
+43726,28742
+43727,23891
+43728,44240,39363
+43729,76007
+43730,6654
+43731,43744
+43732,46417
+43733,63357
+43734,41287
+43735,60216
+43736,60598
+43737,75732
+43738,52279
+43739,44240,39363
+43740,35679
+43741,39363
+43742,80913,15858
+43743,73669
+43744,60216
+43745,38793
+43746,80524
+43747,48460
+43748,41609
+43749,56587
+43750,74887
+43751,25556
+43752,27536
+43753,27536
+43754,53982
+43755,62367
+43756,20877
+43757,23118
+43758,36267
+43759,58969
+43760,20755
+43761,51781
+43762,53109
+43763,33419
+43764,70033
+43765,72248
+43766,45813
+43767,33455
+43768,52121
+43769,61600
+43770,46270
+43771,26348
+43772,77101
+43773,43556
+43774,24807
+43775,60744
+43776,64897
+43777,54953
+43778,21568
+43779,31964
+43780,24722
+43781,44104
+43782,70033
+43783,45302
+43784,43756
+43785,35922
+43786,40967
+43787,78075
+43788,42368
+43789,65908
+43790,30891
+43791,56605
+43792,31795
+43793,80382
+43794,80383
+43795,37169
+43796,32791
+43797,30557
+43798,73207
+43799,41729
+43800,25434
+43801,79608
+43802,7219
+43803,35679
+43804,21710
+43805,29489
+43806,75548
+43807,25016
+43808,75020
+43809,61802
+43810,71310
+43811,43809
+43812,19655
+43813,25234
+43814,26298
+43815,34609
+43816,47830
+43817,57562
+43818,19376
+43819,68831
+43820,61795
+43821,31743
+43822,70033
+43823,61783
+43824,43820
+43825,62145
+43826,33639
+43827,78724
+43828,36434
+43829,58392
+43830,42225
+43831,53648
+43832,21946
+43833,31616
+43834,23021
+43835,67745
+43836,78755
+43837,62513
+43838,43740
+43839,23895
+43840,76664
+43841,43845
+43842,72959
+43843,33353
+43844,57066
+43845,27687
+43846,22428
+43847,76719
+43848,32535
+43849,11856
+43850,20727
+43851,57987
+43852,64156
+43853,64757
+43854,43865
+43855,28028
+43856,18731
+43857,37542
+43858,64757
+43859,53174
+43860,72839
+43861,68236
+43862,33068
+43863,32965
+43864,28522
+43865,62147
+43866,31563
+43867,21040
+43868,72065
+43869,43865
+43870,53624
+43871,57223
+43872,68236
+43873,30413
+43874,43870
+43875,29627
+43876,51473
+43877,31012
+43878,34199
+43879,22104
+43880,20760
+43881,33837
+43882,32672
+43883,19768
+43884,28456
+43885,50784
+43886,77992,21192
+43887,22414
+43888,28323
+43889,22058
+43890,71003
+43891,76065
+43892,68869
+43893,41022
+43894,54188
+43895,53959
+43896,42410
+43897,71639
+43898,39818
+43899,43891
+43900,45813
+43901,3841
+43902,54188
+43903,54188
+43904,54188
+43905,44013
+43906,20977,21060
+43907,45813
+43908,34740
+43909,68771
+43910,51558
+43911,29623
+43912,53607
+43913,51565
+43914,67271
+43915,65210
+43916,36029
+43917,59451
+43918,59452
+43919,59452
+43920,59452
+43921,77641
+43922,81482
+43923,73475
+43924,44697
+43925,45367
+43926,36690
+43927,36035
+43928,62914
+43929,49487
+43930,50424
+43931,38137
+43932,38135
+43933,55550
+43934,57909
+43935,60641
+43936,70725
+43937,74274
+43938,77160
+43939,77160
+43940,57585
+43941,43940
+43942,33765
+43943,9930
+43944,43950
+43945,38693
+43946,59876
+43947,38883
+43948,43950
+43949,61395
+43950,41126
+43951,43940
+43952,22186
+43953,72830
+43954,38723
+43955,39367
+43956,23395
+43957,73042
+43958,37750
+43959,57678
+43960,30519
+43961,65453
+43962,30325
+43963,31853
+43964,19757
+43965,66551
+43966,77444
+43967,20112
+43968,43964,19757
+43969,43967
+43970,65133
+43971,60216
+43972,43971
+43973,59725
+43974,74192
+43975,41252
+43976,31447
+43977,43889
+43978,51100
+43979,78160
+43980,79328
+43981,81181
+43982,37179
+43983,79608
+43984,23765
+43985,21390
+43986,39676
+43987,51395
+43988,49179
+43989,41738
+43990,61256
+43991,29502
+43992,29503
+43993,41738
+43994,27150
+43995,69943
+43996,43789
+43997,79738
+43998,59020
+43999,60715
+44000,21671
+44001,79738
+44002,71997
+44003,48541
+44004,44000
+44005,27459
+44006,71997
+44007,35480
+44008,20586
+44009,76981
+44010,25721
+44011,78594
+44012,31742
+44013,43907
+44014,43631
+44015,39676
+44016,78014
+44017,79493
+44018,58088
+44019,52120
+44020,41337
+44021,40962
+44022,70675
+44023,80356
+44024,21392
+44025,79493
+44026,52904
+44027,80540
+44028,40147
+44029,30153
+44030,58268
+44031,79852
+44032,77277,24257
+44033,34049
+44034,56832
+44035,23182
+44036,41444
+44037,28747
+44038,44042
+44039,49897
+44040,67939
+44041,37689
+44042,39578
+44043,63013
+44044,41632
+44045,34042
+44046,77045
+44047,18913
+44048,50117
+44049,66785
+44050,61066
+44051,33130
+44052,69246
+44053,45009
+44054,76229
+44055,76229
+44056,73412,53861
+44057,80237
+44058,62625
+44059,81462
+44060,62625
+44061,53624
+44062,64159
+44063,28536
+44064,36474
+44065,47662
+44066,31539
+44067,39824
+44068,48505
+44069,53339
+44070,42360
+44071,22158
+44072,39578
+44073,77377
+44074,43864
+44075,80440
+44076,37921
+44077,62962
+44078,62948
+44079,67957
+44080,49391
+44081,35558
+44082,64534
+44083,19062
+44084,18769
+44085,37042
+44086,64729
+44087,77147
+44088,40150
+44089,57594
+44090,63775
+44091,52777
+44092,59020
+44093,10944
+44094,70033
+44095,39466
+44096,66132
+44097,19054
+44098,22233
+44099,56413
+44100,56652
+44101,78531
+44102,15764
+44103,16022
+44104,20944
+44105,22230
+44106,23151
+44107,45869
+44108,25540
+44109,26465
+44110,26616
+44111,27563
+44112,28339
+44113,51468
+44114,44156
+44115,36707
+44116,43940
+44117,44116
+44118,44120
+44119,44120
+44120,41126
+44121,44116
+44122,58579
+44123,50439
+44124,44913
+44125,46573
+44126,49929
+44127,51862
+44128,71639
+44129,8184
+44130,64613
+44131,68632
+44132,70681
+44133,71182
+44134,45869
+44135,37279
+44136,52523
+44137,76664
+44138,42523
+44139,80389
+44140,30062
+44141,58088
+44142,50059
+44143,21980
+44144,57736
+44145,21544
+44146,62473
+44147,68160
+44148,53275
+44149,53275
+44150,80132
+44151,81996
+44152,30745
+44153,47671
+44154,21568
+44155,66046
+44156,61618
+44157,34784
+44158,43497
+44159,69005
+44160,29237
+44161,70515
+44162,77190
+44163,8773
+44164,58088
+44165,19947
+44166,19947
+44167,19979
+44168,21642
+44169,65291
+44170,30719
+44171,41572
+44172,41399
+44173,62159
+44174,36247
+44175,21777
+44176,78014
+44177,45813
+44178,43353
+44179,43603
+44180,45668
+44181,50136
+44182,60177
+44183,77329
+44184,50135
+44185,24518
+44186,53063
+44187,53560
+44188,44538
+44189,55730
+44190,57710
+44191,57810
+44192,65910
+44193,59657
+44194,71719
+44195,44214
+44196,59698
+44197,74772
+44198,66340
+44199,77114
+44200,71102
+44201,41877
+44202,30514
+44203,30514
+44204,69666
+44205,72323
+44206,75521
+44207,41273
+44208,68613
+44209,81536
+44210,23853
+44211,24882
+44212,50717
+44213,71398
+44214,21140
+44215,61508
+44216,44327
+44217,44328
+44218,44333
+44219,26298
+44220,22053
+44221,42246
+44222,80978
+44223,24897
+44224,81918
+44225,44160
+44226,68364
+44227,69566
+44228,47532
+44229,63176
+44230,54562
+44231,66953
+44232,79259
+44233,67821
+44234,67819
+44235,33479
+44236,47843
+44237,75564
+44238,41181
+44239,60216
+44240,19091
+44241,27501
+44242,72416
+44243,71302
+44244,66785
+44245,25202
+44246,48072
+44247,41980
+44248,75013
+44249,70033
+44250,82086
+44251,58168
+44252,29928
+44253,67479
+44254,19947
+44255,21473
+44256,24302
+44257,50856
+44258,41388
+44259,43672
+44260,49829
+44261,50934
+44262,53182
+44263,56457
+44264,61901
+44265,62021
+44266,70557
+44267,71148
+44268,71501
+44269,22776
+44270,81176
+44271,36264
+44272,24504
+44273,46760,64412
+44274,64425
+44275,43756
+44276,41226
+44277,37430
+44278,31861
+44279,61335
+44280,45129
+44281,31861
+44282,77327
+44283,71648
+44284,56348
+44285,20057
+44286,30989
+44287,35944
+44288,72426
+44289,12340
+44290,20469
+44291,41444
+44292,44035
+44293,66132
+44294,39088
+44295,35414
+44296,53054
+44297,34362
+44298,33171
+44299,52510
+44300,22058
+44301,56832
+44302,41601
+44303,80753
+44304,73412,69573
+44305,41156
+44306,60216
+44307,56074
+44308,70629
+44309,48149
+44310,41601
+44311,57346
+44312,22688
+44313,28877
+44314,59893,21006
+44315,55815
+44316,25785
+44317,43893
+44318,54469
+44319,67821
+44320,46715
+44321,44538
+44322,81066
+44323,26122
+44324,79009
+44325,60216
+44326,43893
+44327,53959
+44328,31590
+44329,67445
+44330,34437
+44331,69879
+44332,51677
+44333,53203
+44334,1923
+44335,67280
+44336,36640
+44337,39460
+44338,78544
+44339,39049
+44340,37166
+44341,21477
+44342,79234
+44343,45813
+44344,59333
+44345,56582
+44346,22128
+44347,34661
+44348,25115
+44349,34924
+44350,41252
+44351,77147
+44352,69408
+44353,56323
+44354,40068
+44355,1544
+44356,39049
+44357,50439
+44358,74275
+44359,20577
+44360,79086
+44361,38380
+44362,79086
+44363,56474
+44364,47830
+44365,13561
+44366,21671
+44367,78449
+44368,28080
+44369,78755
+44370,54430
+44371,60015
+44372,74537
+44373,31444
+44374,19840
+44375,35309
+44376,22112
+44377,22721
+44378,23323,58334
+44379,23694
+44380,23748
+44381,26796
+44382,49468
+44383,44396
+44384,45813
+44385,30884
+44386,42142
+44387,19520
+44388,44396
+44389,41182
+44390,23760
+44391,40702
+44392,43362
+44393,43362
+44394,79608
+44395,54732
+44396,29974
+44397,26289
+44398,60467
+44399,40708
+44400,64873
+44401,65847
+44402,66901
+44403,67001
+44404,67268
+44405,53787
+44406,30514
+44407,72680
+44408,72959
+44409,66260
+44410,77471
+44411,74806
+44412,80257
+44413,64527
+44414,75385
+44415,70515
+44416,61646
+44417,28344,23764
+44418,79270
+44419,78560
+44420,46171
+44421,41014
+44422,53227
+44423,39424
+44424,81717
+44425,61397
+44426,47442
+44427,79608
+44428,78100
+44429,36432
+44430,77277
+44431,80583
+44432,70033
+44433,60744
+44434,42204
+44435,72066
+44436,62659
+44437,18840
+44438,69330
+44439,78697
+44440,19171,38545
+44441,27381
+44442,63576
+44443,48445
+44444,37900
+44445,53703
+44446,63861
+44447,63602
+44448,67703
+44449,68551
+44450,39312
+44451,19228
+44452,29653
+44453,34149
+44454,71439
+44455,81162
+44456,42096
+44457,24961
+44458,61302
+44459,41180
+44460,42181
+44461,63126
+44462,58776
+44463,58779
+44464,77974
+44465,68677
+44466,33184
+44467,71961
+44468,47351
+44469,79009
+44470,47487
+44471,34908
+44472,57333
+44473,79270
+44474,58162
+44475,63434
+44476,65732
+44477,48030
+44478,64831
+44479,73323
+44480,50459
+44481,68519
+44482,48534
+44483,66010
+44484,62087
+44485,45226
+44486,39517
+44487,37181
+44488,30989
+44489,51642
+44490,78785
+44491,60032
+44492,56832
+44493,60216
+44494,55952
+44495,35322
+44496,41904
+44497,81482
+44498,56180
+44499,77641
+44500,42049
+44501,21013
+44502,51818
+44503,63873
+44504,25122,58155
+44505,41542
+44506,50919
+44507,44609
+44508,12802
+44509,21953
+44510,30382
+44511,21953
+44512,59587
+44513,23310
+44514,34285
+44515,51531
+44516,54440
+44517,62146
+44518,51532
+44519,62142
+44520,34924
+44521,27408
+44522,25046
+44523,21914
+44524,44792
+44525,80185
+44526,45420
+44527,20655
+44528,36840
+44529,28168
+44530,66953
+44531,71493
+44532,37179
+44533,41743
+44534,41743
+44535,74067
+44536,33644
+44537,70033
+44538,12335
+44539,66353
+44540,30440
+44541,75057
+44542,80184
+44543,41107
+44544,36383
+44545,57967
+44546,38392
+44547,60216
+44548,42094
+44549,38392
+44550,33488
+44551,79732
+44552,38533
+44553,44551
+44554,81643
+44555,46782
+44556,23664
+44557,50565
+44558,54044
+44559,52920
+44560,75018
+44561,50701
+44562,73838
+44563,81635
+44564,66985
+44565,81578
+44566,45017
+44567,54757
+44568,33158
+44569,41619
+44570,51473
+44571,67273
+44572,71332
+44573,16297
+44574,5201
+44575,44914
+44576,22230
+44577,21447
+44578,48413
+44579,31245
+44580,31097
+44581,44579
+44582,58959
+44583,60744
+44584,24873
+44585,30300
+44586,36049
+44587,43603
+44588,70033
+44589,62367
+44590,44586
+44591,28095
+44592,69033
+44593,73752
+44594,60665
+44595,64921
+44596,55768
+44597,62982
+44598,43776
+44599,25113
+44600,28665
+44601,35637
+44602,26120
+44603,50456
+44604,79076
+44605,74660
+44606,65509
+44607,36498
+44608,36500
+44609,38992
+44610,50123
+44611,44609
+44612,28874
+44613,44609
+44614,56180
+44615,77641
+44616,71719
+44617,71446
+44618,79259
+44619,47786
+44620,25150
+44621,27167
+44622,43979
+44623,50091
+44624,54825
+44625,61251
+44626,45813
+44627,81482
+44628,80512
+44629,35467
+44630,41444
+44631,27781
+44632,65638
+44633,34154
+44634,37710
+44635,61357
+44636,35392
+44637,57897
+44638,22832
+44639,54432
+44640,71046
+44641,51120
+44642,25046
+44643,39928
+44644,69852
+44645,40633
+44646,26302
+44647,19201
+44648,69945
+44649,55668
+44650,26072
+44651,24710
+44652,80515
+44653,69216
+44654,22684
+44655,38836
+44656,71099
+44657,71100
+44658,70189
+44659,71039
+44660,80006
+44661,33646
+44662,71686
+44663,68364
+44664,73703
+44665,50701
+44666,65763
+44667,57627
+44668,61335,25620
+44669,60744
+44670,81193
+44671,37928,37996
+44672,28546
+44673,49013
+44674,39504
+44675,39505
+44676,44609
+44677,77641
+44678,77641
+44679,81626
+44680,45009
+44681,54729
+44682,28547
+44683,41503
+44684,31520
+44685,25426
+44686,52904
+44687,25620
+44688,68644
+44689,36499
+44690,19292
+44691,69818
+44692,72444
+44693,53757
+44694,22035
+44695,22032
+44696,72435
+44697,38699
+44698,72421
+44699,60448
+44700,35922
+44701,72111
+44702,61252
+44703,42539
+44704,77641
+44705,82003
+44706,78188
+44707,61792
+44708,71996
+44709,53716
+44710,18740
+44711,81703
+44712,65106
+44713,42116
+44714,59320
+44715,71319
+44716,72791
+44717,61260
+44718,74824
+44719,54562,26932
+44720,60216
+44721,26757
+44722,52417
+44723,67054
+44724,39210
+44725,67822
+44726,30958
+44727,41877
+44728,67049
+44729,72698
+44730,73837
+44731,33793
+44732,71311
+44733,29548
+44734,81770
+44735,36670
+44736,28425
+44737,44474
+44738,22149
+44739,22149
+44740,33486
+44741,33485
+44742,40365
+44743,38043
+44744,44743
+44745,72396
+44746,19367
+44747,62456
+44748,69127
+44749,34985
+44750,38381
+44751,46782
+44752,76981
+44753,46599
+44754,67479
+44755,78785
+44756,81781
+44757,46599
+44758,77641
+44759,43701
+44760,63191
+44761,39513
+44762,45202
+44763,27688
+44764,68005
+44765,50104
+44766,40292
+44767,41980
+44768,37527
+44769,58226
+44770,72416
+44771,72416
+44772,54082
+44773,45035
+44774,57678
+44775,41729
+44776,24319
+44777,49155
+44778,35557
+44779,23080
+44780,23079
+44781,24236
+44782,24237
+44783,81703
+44784,51701
+44785,42225
+44786,61621
+44787,62555
+44788,57333
+44789,44240
+44790,47317
+44791,73481
+44792,25104
+44793,63064
+44794,61261
+44795,39957
+44796,70987
+44797,38642
+44798,27562
+44799,38168
+44800,30487
+44801,30495
+44802,36872
+44803,40975
+44804,36496
+44805,69782
+44806,29819
+44807,64092
+44808,76877
+44809,44822
+44810,44641
+44811,75284
+44812,26166
+44813,39049
+44814,44816
+44815,33504
+44816,44792
+44817,32691
+44818,76877
+44819,21218
+44820,21218
+44821,31245
+44822,51473
+44823,25495
+44824,41413
+44825,56472
+44826,22149
+44827,60870
+44828,23881
+44829,35682
+44830,35154
+44831,72264
+44832,52406
+44833,44798
+44834,79110
+44835,33852
+44836,81161
+44837,46444
+44838,33116
+44839,72575
+44840,70120
+44841,75379
+44842,81179
+44843,81500
+44844,60830,60818
+44845,8296
+44846,60816
+44847,40292
+44848,41980
+44849,11480,67277
+44850,11480,35917
+44851,53628
+44852,60800
+44853,44514
+44854,55951
+44855,15687
+44856,4553
+44857,59308
+44858,33729
+44859,36452
+44860,44861
+44861,54811
+44862,76664
+44863,31372
+44864,46274
+44865,76672
+44866,48495
+44867,62128
+44868,51319
+44869,62144
+44870,60394
+44871,21477
+44872,79963
+44873,79026
+44874,54753
+44875,24209
+44876,70079
+44877,33036
+44878,30300
+44879,30300
+44880,30300
+44881,35822
+44882,45271
+44883,49997
+44884,76664
+44885,51523
+44886,56375
+44887,57066
+44888,58760
+44889,22414
+44890,66122
+44891,70504
+44892,71499
+44893,58760
+44894,77273,54441
+44895,77262
+44896,66260
+44897,67335
+44898,22542
+44899,75665
+44900,30300
+44901,81713
+44902,59605
+44903,37920
+44904,37921
+44905,40537
+44906,40538
+44907,20755
+44908,67675
+44909,71374,54562
+44910,44911
+44911,25837
+44912,26298
+44913,66953
+44914,26298
+44915,36127
+44916,59411
+44917,62494
+44918,28600
+44919,33186
+44920,41917
+44921,34452
+44922,57332
+44923,63570
+44924,63584
+44925,32196
+44926,25022
+44927,22053
+44928,24726
+44929,24726
+44930,44937
+44931,58158
+44932,20045
+44933,44437
+44934,45813
+44935,58158,61828
+44936,52762
+44937,21415
+44938,79211
+44939,48215
+44940,77011
+44941,45403
+44942,81277
+44943,66985
+44944,64519
+44945,19231
+44946,33515
+44947,35557
+44948,50860
+44949,67822
+44950,36668
+44951,30094
+44952,35096
+44953,35097
+44954,44470
+44955,27649
+44956,67822
+44957,26409
+44958,72701
+44959,70033
+44960,30900
+44961,72435
+44962,73736
+44963,45009
+44964,73736
+44965,24874
+44966,62439
+44967,37623
+44968,39846
+44969,45362
+44970,69564
+44971,51902
+44972,76839
+44973,19176
+44974,23643
+44975,23294
+44976,66862
+44977,75806
+44978,45019
+44979,67577
+44980,70104
+44981,21239
+44982,70108
+44983,18721
+44984,61679
+44985,41171
+44986,30391
+44987,19755
+44988,38983
+44989,62100
+44990,42225
+44991,37169
+44992,24880,36669
+44993,25687
+44994,26936
+44995,28747
+44996,32776
+44997,36482
+44998,39676
+44999,54694
+45000,51340
+45001,44245
+45002,52156
+45003,22699
+45004,50635
+45005,63775
+45006,63838
+45007,69970,45009
+45008,51120
+45009,76981
+45010,77180
+45011,45021
+45012,22786
+45013,32530
+45014,32520
+45015,41444
+45016,28980
+45017,65478
+45018,25522
+45019,51523
+45020,27408
+45021,80761
+45022,21239
+45023,69458
+45024,22004
+45025,31618
+45026,70987
+45027,21225
+45028,19462
+45029,60216
+45030,77287,21774
+45031,81602
+45032,70633
+45033,31774
+45034,60744
+45035,21225
+45036,23021
+45037,19655
+45038,40336
+45039,53056
+45040,77147
+45041,32269
+45042,52094
+45043,52679
+45044,74038
+45045,41054
+45046,28639
+45047,20823
+45048,65775
+45049,74488
+45050,44528
+45051,68005
+45052,71398
+45053,75668
+45054,19091
+45055,23622
+45056,23021
+45057,19144
+45058,68632
+45059,44697
+45060,29928
+45061,80753
+45062,31743
+45063,81788
+45064,81786
+45065,65871
+45066,40360
+45067,44697
+45068,62656
+45069,57408
+45070,66502
+45071,43399
+45072,43398
+45073,19867
+45074,81626
+45075,74488
+45076,38667
+45077,34199
+45078,28398
+45079,53669
+45080,80044
+45081,38673
+45082,66985
+45083,70646
+45084,74601
+45085,35490
+45086,30297
+45087,69448
+45088,52071
+45089,27688
+45090,17785
+45091,18951
+45092,58166
+45093,31241
+45094,72416
+45095,30566
+45096,38545
+45097,39578
+45098,37689
+45099,46767
+45100,63434
+45101,74222
+45102,34163
+45103,58068
+45104,77075
+45105,22116
+45106,40150
+45107,54784
+45108,20828
+45109,47944
+45110,65555
+45111,59580
+45112,62085
+45113,36951
+45114,67515
+45115,25153
+45116,32642
+45117,71786
+45118,27167
+45119,54729
+45120,29344,19936
+45121,53516
+45122,29833
+45123,33422
+45124,52613
+45125,56065,31759
+45126,39676
+45127,45680
+45128,50678
+45129,50678
+45130,62148
+45131,56585
+45132,74535
+45133,66554
+45134,26409
+45135,67201
+45136,67362
+45137,67957
+45138,19483
+45139,69958
+45140,71489
+45141,73081
+45142,76512
+45143,62985
+45144,35156
+45145,76631
+45146,80257
+45147,25306
+45148,74735
+45149,22152
+45150,23232
+45151,74939
+45152,28535
+45153,56179
+45154,44013
+45155,31489
+45156,31506
+45157,64142
+45158,35158
+45159,54728
+45160,68854
+45161,52675
+45162,24373
+45163,27405
+45164,80515
+45165,31039
+45166,48423
+45167,38273
+45168,69860
+45169,81482
+45170,51020
+45171,25973
+45172,33918
+45173,80061
+45174,27093
+45175,51803
+45176,44170
+45177,44171
+45178,29963
+45179,57858
+45180,81193
+45181,34830
+45182,78816
+45183,76935
+45184,76627
+45185,53600
+45186,60128
+45187,63197
+45188,41484
+45189,19118
+45190,48408
+45191,45199
+45192,70427
+45193,55768
+45194,53688
+45195,71697
+45196,58099
+45197,19732
+45198,30968
+45199,55734
+45200,74488
+45201,72701
+45202,46599
+45203,46620
+45204,20905
+45205,74488
+45206,29194
+45207,36951
+45208,55768
+45209,71968
+45210,27215
+45211,66985
+45212,51962
+45213,70629
+45214,29670
+45215,55768
+45216,45217
+45217,78146
+45218,41732
+45219,36932
+45220,68326
+45221,46760
+45222,45302
+45223,45302
+45224,33319
+45225,67093
+45226,78758
+45227,65309
+45228,39676
+45229,39676
+45230,20905
+45231,31477
+45232,68679
+45233,42348
+45234,19742
+45235,77930
+45236,41805
+45237,55451
+45238,39379
+45239,39373
+45240,26668
+45241,21373
+45242,57682
+45243,35557
+45244,45354
+45245,66132
+45246,71409
+45247,79189,51833
+45248,27964
+45249,28780
+45250,39928
+45251,33464
+45252,70392
+45253,72065
+45254,55347
+45255,47727
+45256,34293
+45257,62087
+45258,55720
+45259,41843
+45260,45392
+45261,68355
+45262,22903
+45263,22699
+45264,55486
+45265,59375
+45266,69470
+45267,27405
+45268,27417
+45269,30542
+45270,61136
+45271,22438
+45272,21922
+45273,55668
+45274,82050
+45275,38013
+45276,37686
+45277,52694
+45278,57554
+45279,34881
+45280,60216
+45281,31618
+45282,82033
+45283,52773,53959
+45284,60870
+45285,28425
+45286,31702
+45287,77520
+45288,72791
+45289,25115
+45290,46089
+45291,21475
+45292,54562
+45293,61261
+45294,39406
+45295,33292
+45296,29917
+45297,69682
+45298,35792
+45299,56650
+45300,22984
+45301,44354
+45302,24331
+45303,54400
+45304,81161
+45305,57035
+45306,58579
+45307,81161
+45308,61789
+45309,55314
+45310,68613
+45311,45813
+45312,45813
+45313,46268
+45314,66985
+45315,49997
+45316,70033
+45317,40927
+45318,39676
+45319,22775
+45320,20071
+45321,45334
+45322,44032
+45323,41213
+45324,45233
+45325,68679
+45326,51956
+45327,39373
+45328,63791
+45329,18969
+45330,50104
+45331,23375
+45332,64435
+45333,41444
+45334,72706
+45335,81349
+45336,57407
+45337,33811
+45338,48445
+45339,33812
+45340,19532
+45341,81482
+45342,26118
+45343,77641
+45344,36129
+45345,37181
+45346,57249
+45347,79053
+45348,29943
+45349,51068
+45350,61659
+45351,51523
+45352,62757
+45353,47987
+45354,36612
+45355,57333
+45356,40908
+45357,77008
+45358,41249
+45359,73837
+45360,73837
+45361,57433
+45362,73736
+45363,76865
+45364,63218
+45365,36044
+45366,38920
+45367,50701
+45368,81578
+45369,24726
+45370,26766
+45371,26767
+45372,30322
+45373,32372
+45374,42225
+45375,32743
+45376,42290
+45377,42337
+45378,51091
+45379,41053
+45380,52179
+45381,57223
+45382,45367
+45383,65931
+45384,65590
+45385,68543
+45386,69860
+45387,71103
+45388,19051
+45389,22901
+45390,58948
+45391,67972,51833
+45392,29928
+45393,23536
+45394,45239
+45395,46171
+45396,49409
+45397,25889
+45398,23536
+45399,55186
+45400,31618
+45401,25104
+45402,46245
+45403,72701
+45404,65234
+45405,67979
+45406,51472
+45407,51316
+45408,45406
+45409,60076
+45410,38883
+45411,51902
+45412,50701
+45413,62929
+45414,45433
+45415,62929
+45416,45433
+45417,45680
+45418,25564
+45419,54440
+45420,54418
+45421,57562
+45422,72714
+45423,80387
+45424,66123
+45425,33464
+45426,46011
+45427,66954
+45428,80164
+45429,67565
+45430,49643
+45431,75682
+45432,55348
+45433,62145
+45434,62145
+45435,60534
+45436,69941
+45437,69852
+45438,38673
+45439,47908
+45440,22901
+45441,19144
+45442,74488
+45443,73636
+45444,23763
+45445,63194
+45446,81193
+45447,81578
+45448,31640
+45449,25087
+45450,31245
+45451,80644
+45452,71317
+45453,41005
+45454,45337
+45455,48445
+45456,45455
+45457,63139
+45458,63144
+45459,61144
+45460,27562
+45461,63494
+45462,81018
+45463,60011
+45464,69325
+45465,63061
+45466,57982
+45467,54862,38933
+45468,37478
+45469,19108
+45470,81635
+45471,57573
+45472,35425
+45473,38562
+45474,67275
+45475,55373
+45476,61213
+45477,79189
+45478,61402
+45479,48741
+45480,32497
+45481,48590
+45482,35679
+45483,81488
+45484,63775
+45485,75216
+45486,22107,45491
+45487,27519
+45488,74748
+45489,74749
+45490,27555
+45491,45490,39150
+45492,74939
+45493,57934
+45494,68614
+45495,47650
+45496,79095
+45497,41105
+45498,28649
+45499,34272
+45500,74939
+45501,66010
+45502,21475
+45503,36868
+45504,57559
+45505,67254
+45506,73412
+45507,70417
+45508,65579
+45509,45813
+45510,81100
+45511,81161
+45512,53066
+45513,78537
+45514,61251
+45515,80831
+45516,71280
+45517,52189,30964
+45518,47434
+45519,81482
+45520,64403
+45521,37884
+45522,75740
+45523,37690
+45524,54757
+45525,60604
+45526,31873
+45527,37905
+45528,34924
+45529,45560
+45530,40489
+45531,37382
+45532,51367
+45533,50527
+45534,45521
+45535,45521
+45536,50527
+45537,50527
+45538,45521
+45539,50527
+45540,50527
+45541,21200
+45542,23537
+45543,63424
+45544,31278,70461
+45545,80434
+45546,34924
+45547,70033
+45548,23175
+45549,21959
+45550,21959
+45551,62473
+45552,79608
+45553,56937
+45554,45547
+45555,30467
+45556,75742
+45557,31039
+45558,45546
+45559,78993
+45560,30368
+45561,45679
+45562,55494
+45563,66676
+45564,66674
+45565,76429
+45566,71937
+45567,81643
+45568,23021
+45569,20745
+45570,19837
+45571,67498
+45572,80612
+45573,19231
+45574,28593
+45575,32775
+45576,47673
+45577,81601
+45578,54082,20120
+45579,66787
+45580,54562
+45581,54882
+45582,53805
+45583,25598
+45584,81750
+45585,63017
+45586,68211
+45587,51065
+45588,67467
+45589,57372
+45590,77976
+45591,25796
+45592,21480
+45593,54188
+45594,36795,30438
+45595,54181
+45596,54183
+45597,39638
+45598,68832
+45599,38522
+45600,24211
+45601,48801
+45602,53072
+45603,45813
+45604,45813
+45605,45813
+45606,18915
+45607,27606
+45608,42201
+45609,79640
+45610,48321
+45611,37076
+45612,26827
+45613,72046
+45614,42204
+45615,66114
+45616,38427
+45617,38430
+45618,69148
+45619,50565
+45620,47723
+45621,37805
+45622,70569
+45623,37805
+45624,59306
+45625,25457
+45626,25256
+45627,45572
+45628,43897
+45629,81670
+45630,61792
+45631,32591,82056
+45632,35254
+45633,65133
+45634,45633
+45635,45633
+45636,45633
+45637,45633
+45638,63316
+45639,48219
+45640,66766
+45641,70033
+45642,23331
+45643,45570
+45644,59115
+45645,54043
+45646,21200
+45647,81703
+45648,53624
+45649,25495
+45650,40752
+45651,81161
+45652,65581
+45653,76162
+45654,56811
+45655,77961
+45656,19195
+45657,19870
+45658,28780,56806
+45659,69235
+45660,33455
+45661,20698
+45662,77972
+45663,54709
+45664,65581
+45665,30557
+45666,31478
+45667,67608
+45668,61705
+45669,51395
+45670,58088
+45671,58088
+45672,7467
+45673,50459
+45674,77976
+45675,77976
+45676,44240
+45677,73117
+45678,50705
+45679,21568
+45680,45392
+45681,58088
+45682,58088
+45683,81681
+45684,48111
+45685,53163
+45686,69281
+45687,16408
+45688,78996
+45689,70987
+45690,34620
+45691,34659
+45692,62447
+45693,72482
+45694,39260
+45695,37165
+45696,79009
+45697,19669
+45698,21411
+45699,20683
+45700,79888
+45701,53717
+45702,48894
+45703,74807
+45704,34276
+45705,30498
+45706,35626
+45707,35626
+45708,53624,28288
+45709,64846
+45710,33675
+45711,45717
+45712,71996
+45713,53716
+45714,48743
+45715,73129
+45716,58162
+45717,74939
+45718,60786
+45719,79743
+45720,58158
+45721,79743
+45722,68374
+45723,19811
+45724,54095
+45725,54562
+45726,29067
+45727,59169
+45728,59126
+45729,45029
+45730,48318
+45731,73981
+45732,43104
+45733,56492
+45734,79282
+45735,51468
+45736,61264
+45737,81482
+45738,31417
+45739,61705
+45740,69408
+45741,59549
+45742,35017
+45743,60621
+45744,45755
+45745,74939
+45746,24823
+45747,74939
+45748,58158
+45749,52469
+45750,20635
+45751,24823,69413
+45752,45751
+45753,45751
+45754,70091
+45755,31423
+45756,74939
+45757,33650
+45758,79658
+45759,20745
+45760,73804,24700
+45761,74939
+45762,79282
+45763,57934
+45764,60786
+45765,74939
+45766,73449
+45767,74567
+45768,31391
+45769,61253
+45770,45813
+45771,45813
+45772,37635
+45773,69408
+45774,28890
+45775,24306
+45776,39606
+45777,28889
+45778,41877
+45779,59377
+45780,45813
+45781,33997
+45782,66377
+45783,44802
+45784,66962
+45785,48004
+45786,20763
+45787,61906,20990
+45788,21703
+45789,30541
+45790,36710
+45791,51856
+45792,75264
+45793,79282
+45794,51790
+45795,45813
+45796,48084,51786
+45797,79657
+45798,37986
+45799,79657
+45800,79657
+45801,45796
+45802,65520
+45803,42481
+45804,27497
+45805,18740
+45806,77216
+45807,61866
+45808,54142
+45809,54047
+45810,48306
+45811,37622
+45812,40564
+45813,79211
+45814,45813
+45815,22384
+45816,42181
+45817,45813
+45818,32713
+45819,75518
+45820,32336
+45821,45813
+45822,53717
+45823,20232
+45824,76160
+45825,30391
+45826,28774
+45827,20743
+45828,20751
+45829,20751
+45830,46125
+45831,51894
+45832,62703
+45833,63316
+45834,60450
+45835,22019
+45836,58162
+45837,63314
+45838,62694
+45839,31638
+45840,56896
+45841,58381
+45842,62454
+45843,73015
+45844,24377
+45845,24354
+45846,76138
+45847,52021
+45848,34108
+45849,76441
+45850,36868
+45851,67353
+45852,67353
+45853,50701
+45854,55951
+45855,28593
+45856,19393
+45857,81705
+45858,32491
+45859,61630
+45860,64244
+45861,38091
+45862,19176
+45863,57963,45125
+45864,36603
+45865,36604
+45866,81462
+45867,28593
+45868,32497
+45869,79953
+45870,66950
+45871,79658
+45872,48084
+45873,20763
+45874,45872
+45875,45873
+45876,45875
+45877,45875
+45878,37762
+45879,45880
+45880,45873
+45881,45872
+45882,82163
+45883,82164
+45884,76210
+45885,67703
+45886,29986,41014
+45887,44603
+45888,67594
+45889,39049
+45890,34771
+45891,64831
+45892,35159
+45893,47902
+45894,59604
+45895,75157
+45896,31058
+45897,29882
+45898,24314
+45899,64520
+45900,56954
+45901,43880
+45902,35712
+45903,54095
+45904,81578
+45905,20978
+45906,19672
+45907,58166
+45908,31241
+45909,48318
+45910,35525
+45911,60216
+45912,69439
+45913,75788
+45914,55090
+45915,49155
+45916,58166
+45917,72959
+45918,82186
+45919,51068
+45920,82095
+45921,67270
+45922,50117
+45923,72084
+45924,57242
+45925,20973
+45926,35188
+45927,53473
+45928,62152
+45929,61866
+45930,72890
+45931,61871
+45932,79419
+45933,54142,71567
+45934,27488
+45935,20743
+45936,38400
+45937,55121
+45938,65946
+45939,60737
+45940,45851
+45941,21396
+45942,25755
+45943,77085
+45944,36123
+45945,66217
+45946,52857
+45947,74939,65509
+45948,70033
+45949,38287
+45950,81482
+45951,57249
+45952,37181
+45953,66020
+45954,47974
+45955,72362,77509
+45956,62991
+45957,20759
+45958,25104
+45959,28954
+45960,21474
+45961,78449
+45962,45964
+45963,62991
+45964,77045
+45965,47673
+45966,29653
+45967,53941
+45968,33887
+45969,69235
+45970,58168
+45971,45974
+45972,76129
+45973,81786
+45974,58262
+45975,19808
+45976,37334
+45977,37334
+45978,34362
+45979,77045
+45980,21760
+45981,27215
+45982,24961
+45983,75700
+45984,51630
+45985,43168
+45986,33623
+45987,41247
+45988,21279
+45989,64533
+45990,61709
+45991,56803
+45992,47673
+45993,40020
+45994,35130
+45995,77185
+45996,76984
+45997,51778
+45998,35130
+45999,45042
+46000,80325
+46001,20218
+46002,23537
+46003,27555
+46004,25727
+46005,30451
+46006,30588
+46007,50704
+46008,35342
+46009,21475
+46010,38836,80514
+46011,71700
+46012,40053
+46013,64513
+46014,42387
+46015,73018
+46016,22152
+46017,39846
+46018,49427
+46019,61075
+46020,59308
+46021,22269
+46022,73018
+46023,42076
+46024,25113
+46025,68677
+46026,70214
+46027,73018
+46028,35291
+46029,35293
+46030,75613
+46031,76546
+46032,76630
+46033,81193
+46034,76590
+46035,54813
+46036,43364
+46037,32929
+46038,35866
+46039,28851
+46040,48474
+46041,28438
+46042,63063
+46043,76062
+46044,37199
+46045,62936
+46046,19054
+46047,46264
+46048,32929
+46049,66766
+46050,56164
+46051,65458
+46052,34838
+46053,51318
+46054,32246
+46055,53178
+46056,34362
+46057,45632
+46058,46059
+46059,66727
+46060,29540
+46061,62810
+46062,66766
+46063,77523
+46064,45430
+46065,33486
+46066,32926
+46067,80009
+46068,59775
+46069,41995
+46070,56164
+46071,55894
+46072,67381
+46073,32462
+46074,67262
+46075,70914
+46076,59700
+46077,45035
+46078,61646
+46079,40352
+46080,79874
+46081,44449
+46082,65309
+46083,46084
+46084,51408
+46085,56492
+46086,20749
+46087,48590
+46088,33500
+46089,25115
+46090,35157
+46091,57418
+46092,19171
+46093,69531
+46094,78594
+46095,29458
+46096,49298
+46097,74990
+46098,42344
+46099,38213
+46100,47944
+46101,74220
+46102,38913
+46103,25115
+46104,22792
+46105,41729
+46106,82063
+46107,25359
+46108,63426
+46109,61592
+46110,66939
+46111,71353
+46112,76597
+46113,25256
+46114,40514
+46115,51468
+46116,51468
+46117,20286
+46118,65531
+46119,56492
+46120,72712
+46121,38529
+46122,37712
+46123,19171
+46124,48386
+46125,50117
+46126,37712
+46127,37712
+46128,41546
+46129,61155
+46130,44819
+46131,61599
+46132,56832
+46133,30891
+46134,38053
+46135,20353
+46136,53717
+46137,45388
+46138,38366
+46139,52546
+46140,24823
+46141,58161
+46142,29623
+46143,23023
+46144,47835
+46145,20575
+46146,54264
+46147,70397
+46148,68230
+46149,38227
+46150,46163
+46151,51566
+46152,62704
+46153,68237
+46154,65017
+46155,70234
+46156,47273
+46157,51708
+46158,81787
+46159,31677
+46160,59468
+46161,30267
+46162,46901
+46163,65202
+46164,18869
+46165,51059
+46166,35663
+46167,36137
+46168,55662
+46169,49296
+46170,39511
+46171,77147
+46172,74132
+46173,51677
+46174,30391
+46175,51677
+46176,75566
+46177,31444
+46178,49997
+46179,42003
+46180,59431
+46181,62187
+46182,64619
+46183,55497
+46184,55625
+46185,73472
+46186,67988
+46187,57681
+46188,45813
+46189,70033
+46190,53227
+46191,74067
+46192,61266
+46193,61266
+46194,45813
+46195,81176
+46196,42049
+46197,37169
+46198,69653
+46199,47503
+46200,70675
+46201,82057
+46202,59775
+46203,39210
+46204,61415
+46205,62656
+46206,34949
+46207,20289
+46208,55984
+46209,75730
+46210,27075
+46211,49299
+46212,29805
+46213,30009
+46214,50742
+46215,22032,61395
+46216,68677
+46217,47344
+46218,73220
+46219,75566
+46220,25574
+46221,50117
+46222,68285
+46223,76981
+46224,45035
+46225,49291
+46226,50231
+46227,69004
+46228,74826
+46229,70688
+46230,22671
+46231,20745
+46232,79608
+46233,37179
+46234,37179
+46235,41743
+46236,74152
+46237,51947
+46238,66509
+46239,71500
+46240,81735
+46241,50737
+46242,30514
+46243,2492
+46244,23164
+46245,51298
+46246,57945
+46247,31740
+46248,73815
+46249,28168
+46250,51440
+46251,58582
+46252,46256
+46253,27339
+46254,49113
+46255,30937
+46256,34924
+46257,47744
+46258,19805
+46259,59849
+46260,56362
+46261,23080
+46262,74824
+46263,57573
+46264,76229
+46265,34280
+46266,71837
+46267,57901
+46268,57897
+46269,61405
+46270,56163
+46271,77045
+46272,21905
+46273,61402
+46274,33928
+46275,68677
+46276,64142
+46277,76146
+46278,53694
+46279,67957
+46280,28093
+46281,79076
+46282,37726
+46283,31138
+46284,70364
+46285,20690
+46286,81129
+46287,39676
+46288,39676
+46289,52857
+46290,57288
+46291,57289
+46292,54082
+46293,34827
+46294,27729
+46295,60534
+46296,58016
+46297,48318
+46298,54095
+46299,81578
+46300,69027
+46301,61246
+46302,23855
+46303,69599
+46304,3701
+46305,67463
+46306,67763
+46307,67459
+46308,77045
+46309,80257
+46310,67821
+46311,38042
+46312,23763
+46313,51894
+46314,48400
+46315,66036
+46316,39367
+46317,21269
+46318,46315
+46319,22982
+46320,19936
+46321,26728
+46322,31100
+46323,23306
+46324,71324
+46325,40962
+46326,62294
+46327,62042
+46328,42092
+46329,44516
+46330,36043
+46331,46804
+46332,31588,51836
+46333,55499
+46334,80549
+46335,23220
+46336,62089
+46337,64744
+46338,29658
+46339,68974
+46340,69236
+46341,32506
+46342,76104
+46343,78073
+46344,59970
+46345,53842
+46346,19121
+46347,26295
+46348,66272
+46349,19462
+46350,39295
+46351,53842
+46352,61996
+46353,78647
+46354,31245
+46355,21218
+46356,52920
+46357,46362
+46358,62459
+46359,53694
+46360,38209
+46361,20743
+46362,42429
+46363,58582
+46364,23225
+46365,79874
+46366,57051
+46367,39049
+46368,50295
+46369,38381
+46370,36868
+46371,50602
+46372,37803
+46373,73692
+46374,77192
+46375,68242
+46376,63047
+46377,49769
+46378,76138
+46379,21670
+46380,69248
+46381,53660
+46382,36053
+46383,77081
+46384,62884
+46385,62884
+46386,32050
+46387,46384
+46388,75157
+46389,53454
+46390,78665
+46391,78666
+46392,61885
+46393,24706
+46394,54446
+46395,70375
+46396,43880
+46397,46401
+46398,70375
+46399,38183
+46400,70375
+46401,81578
+46402,51565
+46403,24111
+46404,24021
+46405,46401
+46406,63281
+46407,59314
+46408,48318
+46409,60216
+46410,69439
+46411,55090
+46412,72959
+46413,82186
+46414,60216
+46415,80775
+46416,81065
+46417,66591
+46418,45813
+46419,74795
+46420,70033
+46421,74778
+46422,45302
+46423,26884
+46424,27167
+46425,58287
+46426,60661
+46427,51939
+46428,54034
+46429,19629
+46430,46843
+46431,23679
+46432,73838
+46433,41444
+46434,77865
+46435,58287
+46436,40068
+46437,81329
+46438,63413
+46439,70033
+46440,76664
+46441,79026
+46442,66083
+46443,63413
+46444,70033
+46445,22990
+46446,33184
+46447,36542
+46448,43756
+46449,26765
+46450,66591
+46451,72861
+46452,79684
+46453,38334
+46454,46377
+46455,75020
+46456,35620
+46457,66591
+46458,66353
+46459,18868
+46460,65133
+46461,41264
+46462,31362
+46463,18868
+46464,19936
+46465,56371
+46466,32578
+46467,66938
+46468,45392
+46469,38920
+46470,63424
+46471,32580
+46472,32578
+46473,32929
+46474,22102
+46475,27964
+46476,34199
+46477,50179
+46478,53982
+46479,61092
+46480,36951
+46481,70688
+46482,30532
+46483,62853,79897
+46484,57333
+46485,46591
+46486,20749
+46487,33797
+46488,53175
+46489,27964
+46490,47655
+46491,63791
+46492,53648
+46493,33455
+46494,43698
+46495,39423
+46496,23313
+46497,81746
+46498,60994
+46499,43701
+46500,22032
+46501,44988
+46502,31444
+46503,75018
+46504,56376
+46505,45684
+46506,70572
+46507,22901
+46508,21381
+46509,30514
+46510,31960
+46511,70675
+46512,49113
+46513,33186
+46514,58579
+46515,49409
+46516,79608
+46517,33788
+46518,52497
+46519,29957
+46520,42181
+46521,77641
+46522,62187
+46523,60216
+46524,39578
+46525,20983
+46526,76136
+46527,28849
+46528,31245
+46529,46524
+46530,34797
+46531,60216
+46532,49420
+46533,65108
+46534,39049
+46535,28954
+46536,30900
+46537,55625
+46538,45813
+46539,27167
+46540,73598
+46541,51468
+46542,44113
+46543,68342
+46544,58195
+46545,44696
+46546,31515
+46547,43095
+46548,53649
+46549,19849
+46550,74537
+46551,72697
+46552,62147
+46553,68793
+46554,76162
+46555,20754
+46556,19907
+46557,34924
+46558,56841
+46559,19909
+46560,63064
+46561,63064
+46562,61934
+46563,63953
+46564,40863
+46565,74904
+46566,40752
+46567,77641
+46568,31960
+46569,20431
+46570,62895
+46571,28486
+46572,47455
+46573,58579
+46574,61956
+46575,26373
+46576,63707
+46577,68422
+46578,79630
+46579,79653
+46580,80778
+46581,79468
+46582,70524
+46583,54091
+46584,69440
+46585,55768
+46586,33793
+46587,40965
+46588,70434
+46589,21361
+46590,51790
+46591,73837
+46592,21670
+46593,62585
+46594,34997
+46595,21993
+46596,39502
+46597,76248
+46598,21237
+46599,38213
+46600,44696
+46601,46486
+46602,80761
+46603,77341
+46604,45813
+46605,25433
+46606,25858
+46607,27721
+46608,27850
+46609,28074
+46610,20690
+46611,79497
+46612,50919
+46613,50554
+46614,68038
+46615,68038
+46616,53063
+46617,19629
+46618,56701
+46619,61054
+46620,64403
+46621,64425
+46622,52180
+46623,23194
+46624,77308
+46625,56361
+46626,32610
+46627,25115
+46628,31825
+46629,73665
+46630,27295
+46631,41977
+46632,20748
+46633,39049
+46634,51216
+46635,81066
+46636,50784
+46637,50829
+46638,27405
+46639,66502
+46640,20746
+46641,70627
+46642,53628
+46643,54655
+46644,55014
+46645,61382
+46646,61947
+46647,62441
+46648,81617
+46649,31239
+46650,45813
+46651,66965
+46652,60191
+46653,67957
+46654,42097
+46655,61341
+46656,50737
+46657,50737
+46658,21718
+46659,74067
+46660,64413
+46661,69978
+46662,39677
+46663,80583
+46664,80789
+46665,80802
+46666,46639
+46667,33175
+46668,69335
+46669,47026
+46670,38807
+46671,33186
+46672,42225
+46673,78096
+46674,69870
+46675,41089
+46676,46827
+46677,53694
+46678,41610
+46679,53700
+46680,53693
+46681,70437
+46682,28574
+46683,57458
+46684,66953
+46685,69744
+46686,77357
+46687,76664
+46688,31245
+46689,53694
+46690,45455
+46691,65133
+46692,19438
+46693,58168
+46694,58166
+46695,59585
+46696,21589
+46697,62986
+46698,46747
+46699,46827
+46700,77585
+46701,46692
+46702,46695
+46703,54427
+46704,40150
+46705,75195
+46706,30550
+46707,72959
+46708,45276
+46709,78649
+46710,22838
+46711,29118
+46712,81161
+46713,65108
+46714,19771
+46715,28322
+46716,74939
+46717,49158
+46718,75677
+46719,53731
+46720,69908
+46721,59978
+46722,49888
+46723,73207
+46724,70524
+46725,27405
+46726,67957
+46727,62145
+46728,80782
+46729,61646
+46730,72448
+46731,43104
+46732,72519
+46733,73323
+46734,62036
+46735,64142
+46736,54813
+46737,23401
+46738,80106
+46739,62578
+46740,80524
+46741,70526
+46742,23642
+46743,49336
+46744,73207
+46745,38723
+46746,67822
+46747,26298
+46748,61144
+46749,26298
+46750,24143
+46751,62994
+46752,57458
+46753,34772
+46754,23664
+46755,19384
+46756,62452
+46757,75741
+46758,72150
+46759,19468
+46760,46966
+46761,45813
+46762,45813
+46763,28699
+46764,76664
+46765,76672
+46766,35735
+46767,29851
+46768,35735
+46769,20723
+46770,44113
+46771,44984
+46772,67813
+46773,55951
+46774,81615
+46775,76664
+46776,52919
+46777,30900
+46778,22186
+46779,50912
+46780,39295
+46781,26298
+46782,36868,26298
+46783,61380
+46784,31563
+46785,31338
+46786,28265
+46787,40068
+46788,44551
+46789,46988
+46790,53290
+46791,55451
+46792,68196
+46793,73838
+46794,49113
+46795,58143
+46796,58783
+46797,58797
+46798,59378
+46799,35917
+46800,33479
+46801,81743
+46802,23082
+46803,26476
+46804,26479
+46805,65526
+46806,29691
+46807,32685
+46808,80248
+46809,52904
+46810,40863
+46811,31618
+46812,36043
+46813,51316
+46814,26527
+46815,45413
+46816,66040
+46817,28573
+46818,61246
+46819,66954
+46820,66939
+46821,59377
+46822,81065
+46823,81601
+46824,81601
+46825,81742
+46826,63424
+46827,73838
+46828,30684
+46829,34903
+46830,34903
+46831,46829
+46832,23764
+46833,70033
+46834,69682
+46835,32683
+46836,70524
+46837,68692
+46838,33184
+46839,56832
+46840,79009
+46841,25002
+46842,11862
+46843,79608
+46844,53306
+46845,17372
+46846,67793
+46847,28236
+46848,59306
+46849,19825
+46850,81336
+46851,81337
+46852,56832
+46853,27274
+46854,21638
+46855,77184
+46856,24961
+46857,70033
+46858,23946
+46859,70033
+46860,19482
+46861,69010
+46862,33102
+46863,31308
+46864,53842
+46865,60216
+46866,55792
+46867,69558
+46868,30480
+46869,48949
+46870,20670
+46871,37632
+46872,49079
+46873,60216
+46874,31369
+46875,18864
+46876,69677
+46877,64645
+46878,61415
+46879,69744
+46880,46992
+46881,27041
+46882,73838
+46883,56832
+46884,66257
+46885,25099
+46886,25433
+46887,43708
+46888,45366
+46889,66257
+46890,22164
+46891,59069
+46892,63065
+46893,65954
+46894,66551
+46895,25122
+46896,64142
+46897,33321
+46898,35922
+46899,68230
+46900,19497
+46901,35480
+46902,23891
+46903,35922
+46904,46896
+46905,47716
+46906,64142
+46907,53454
+46908,57385
+46909,54753
+46910,47390
+46911,74081
+46912,79485
+46913,21540
+46914,46916
+46915,69508,46907
+46916,58158
+46917,21269
+46918,80714
+46919,58162
+46920,69522
+46921,34357
+46922,27786
+46923,39578
+46924,77374
+46925,46916
+46926,70426
+46927,70427
+46928,77015
+46929,21161
+46930,72503
+46931,25119
+46932,64142
+46933,61396
+46934,47561
+46935,37991
+46936,22776
+46937,32952
+46938,71446
+46939,23884
+46940,50439
+46941,24146
+46942,50439
+46943,64757
+46944,22414
+46945,22414
+46946,54188
+46947,49487
+46948,36523
+46949,34784
+46950,53107
+46951,78627
+46952,39411,59456
+46953,52904
+46954,59305
+46955,68649
+46956,29969
+46957,50104
+46958,58385,24839
+46959,79546
+46960,68896
+46961,80238
+46962,70629
+46963,67957
+46964,67979
+46965,77748
+46966,35944
+46967,57982
+46968,21475
+46969,68383
+46970,49945
+46971,51204
+46972,68677
+46973,46962
+46974,61092
+46975,31417
+46976,57408
+46977,23182
+46978,22032
+46979,77268
+46980,55758
+46981,76429
+46982,39847
+46983,28739
+46984,33599
+46985,34154
+46986,50273
+46987,78928
+46988,72482
+46989,70246
+46990,25884
+46991,32083
+46992,69600
+46993,73669
+46994,23678
+46995,28079
+46996,27091
+46997,57980
+46998,69682
+46999,26871
+47000,27079
+47001,51395
+47002,82133
+47003,79608
+47004,77510
+47005,27726
+47006,31245
+47007,53848
+47008,33678
+47009,55519
+47010,38053
+47011,31015
+47012,58166
+47013,60343
+47014,78109
+47015,32493
+47016,71572
+47017,20992
+47018,73398
+47019,33650
+47020,18740
+47021,57594
+47022,77974
+47023,47115
+47024,21013,79224
+47025,18740
+47026,70033
+47027,35472
+47028,48126
+47029,31058
+47030,21937
+47031,25697
+47032,28201
+47033,29541
+47034,62740
+47035,63775
+47036,53660
+47037,77492,47036
+47038,65423
+47039,44439
+47040,47043,38836
+47041,22471
+47042,24823
+47043,24194
+47044,21361
+47045,19069
+47046,19069
+47047,58158
+47048,35626
+47049,18740
+47050,19069
+47051,31016
+47052,29079
+47053,76218
+47054,74081
+47055,32225
+47056,32675
+47057,19069
+47058,40797
+47059,78204
+47060,37417
+47061,76218
+47062,19069
+47063,40825,44221
+47064,34924
+47065,72075
+47066,42402
+47067,28780,42246
+47068,22057
+47069,57148,25202
+47070,28778
+47071,26053
+47072,19069
+47073,31058
+47074,40820
+47075,48828
+47076,63465,28016
+47077,31149
+47078,58609
+47079,74251
+47080,28790
+47081,57481
+47082,19069
+47083,43112
+47084,43126
+47085,63114
+47086,28792
+47087,35863
+47088,35858
+47089,24007
+47090,53624
+47091,53621
+47092,20517
+47093,59549
+47094,77636
+47095,74939
+47096,70395
+47097,63314
+47098,25050
+47099,39381
+47100,50649
+47101,62757
+47102,40797
+47103,31391
+47104,31058
+47105,31058
+47106,20782
+47107,19069
+47108,47107
+47109,26724
+47110,20963
+47111,44439
+47112,54159
+47113,20355
+47114,54642
+47115,30216
+47116,27187
+47117,67837
+47118,53716
+47119,71996
+47120,47121
+47121,53624
+47122,61246
+47123,47121
+47124,55522
+47125,47128
+47126,65956
+47127,48318
+47128,65771
+47129,71600
+47130,25256
+47131,20038,61690
+47132,66377
+47133,61259
+47134,27473
+47135,19082
+47136,35626
+47137,45472
+47138,28475
+47139,66377
+47140,47165,42481
+47141,59549
+47142,47141
+47143,31413
+47144,77945
+47145,56862
+47146,64107
+47147,74939
+47148,74939
+47149,60598
+47150,51502
+47151,28183
+47152,74939
+47153,20635
+47154,66909
+47155,79888
+47156,47155
+47157,31391
+47158,38899
+47159,35735
+47160,74939
+47161,60256
+47162,34701
+47163,74939
+47164,51575
+47165,54059
+47166,74427
+47167,40423
+47168,55600
+47169,47487
+47170,74939
+47171,81578
+47172,69027
+47173,23200
+47174,79753
+47175,20346
+47176,43355
+47177,60598
+47178,43355
+47179,36917
+47180,25843
+47181,47193,39751
+47182,68794
+47183,69127
+47184,69131
+47185,47183
+47186,70787
+47187,74939
+47188,59555
+47189,52501
+47190,53214
+47191,57335
+47192,63457
+47193,60598
+47194,43355
+47195,76966
+47196,58296
+47197,27551
+47198,36917
+47199,72066
+47200,25843
+47201,18740
+47202,24823
+47203,39777
+47204,24700
+47205,63809
+47206,63808
+47207,19654
+47208,63571
+47209,48006
+47210,70395
+47211,63584
+47212,63602
+47213,77391
+47214,48150
+47215,63586
+47216,40401
+47217,27473
+47218,61259
+47219,47245
+47220,74939
+47221,60598
+47222,28183
+47223,67675
+47224,19069
+47225,21088
+47226,59555
+47227,21477
+47228,20635
+47229,48356
+47230,62776
+47231,34118
+47232,67101
+47233,56316
+47234,75011
+47235,50651
+47236,35425
+47237,47569
+47238,56451
+47239,47470
+47240,32715
+47241,74939
+47242,19654
+47243,47838
+47244,74939
+47245,54059
+47246,74939
+47247,19069
+47248,81578
+47249,69027
+47250,43355
+47251,58628
+47252,58628
+47253,48182
+47254,18728
+47255,60598
+47256,36917
+47257,20635
+47258,25843
+47259,74939
+47260,36909
+47261,18740
+47262,25087
+47263,49648
+47264,58162
+47265,6772
+47266,57345
+47267,27555
+47268,59555
+47269,40461
+47270,56492
+47271,60598
+47272,63344
+47273,31158
+47274,47273
+47275,47503
+47276,62936
+47277,24823
+47278,43355
+47279,76966
+47280,58296
+47281,24823
+47282,69803
+47283,36523
+47284,47283
+47285,66377
+47286,66377
+47287,43113
+47288,20236
+47289,53621
+47290,61159
+47291,44206
+47292,45812
+47293,45813
+47294,57594
+47295,18728
+47296,60603
+47297,39502
+47298,56536
+47299,56540
+47300,22107
+47301,47298
+47302,66377
+47303,51985
+47304,66873
+47305,37859
+47306,57934
+47307,73179
+47308,54189
+47309,79419
+47310,81101
+47311,79953
+47312,63005
+47313,56950
+47314,57333
+47315,41719
+47316,35025
+47317,33216
+47318,77641
+47319,41719
+47320,41719
+47321,36496
+47322,41719
+47323,70561
+47324,60120
+47325,22438
+47326,23559
+47327,41719
+47328,33216
+47329,33247
+47330,47338
+47331,47338
+47332,40929
+47333,22036,31612
+47334,47342
+47335,41719
+47336,37393
+47337,49888
+47338,43107
+47339,41719
+47340,22684
+47341,39924
+47342,66646
+47343,69978
+47344,70556
+47345,70562
+47346,73481
+47347,75518
+47348,76945
+47349,79973
+47350,36506
+47351,47338,40664
+47352,79471
+47353,23764
+47354,69744
+47355,47338
+47356,75590
+47357,30231
+47358,47314
+47359,46781
+47360,34437
+47361,60662
+47362,77600
+47363,55044
+47364,47127
+47365,40793
+47366,82162
+47367,82163
+47368,82164
+47369,21458
+47370,47369
+47371,42481
+47372,47317
+47373,52957
+47374,62403
+47375,74903
+47376,58803
+47377,78749
+47378,22116
+47379,34822
+47380,60715
+47381,47437
+47382,21682
+47383,75702
+47384,61871
+47385,74943
+47386,48397
+47387,57966
+47388,31638
+47389,47388
+47390,54870
+47391,42246
+47392,60450
+47393,47687
+47394,79719
+47395,64142
+47396,34299
+47397,47388
+47398,19392
+47399,76258
+47400,78346
+47401,31245
+47402,38563
+47403,47409
+47404,22058
+47405,74903
+47406,65171
+47407,67737
+47408,57942
+47409,60242
+47410,63584
+47411,68047
+47412,41469
+47413,28591
+47414,58262
+47415,23183
+47416,19497
+47417,76145
+47418,33928
+47419,77641
+47420,66189
+47421,81703
+47422,72051
+47423,68030
+47424,35626
+47425,59761
+47426,70399
+47427,65339
+47428,70399
+47429,57926
+47430,63736
+47431,47747
+47432,56957
+47433,37232
+47434,72893
+47435,45553
+47436,47435
+47437,81703
+47438,81703
+47439,52211
+47440,38153
+47441,46834
+47442,66785
+47443,41773
+47444,40151
+47445,26507
+47446,53660
+47447,48008
+47448,49684
+47449,74846
+47450,35570
+47451,78785
+47452,31638
+47453,47452
+47454,51985
+47455,51814
+47456,35309
+47457,48629
+47458,33475
+47459,33476
+47460,38369
+47461,20690
+47462,21703
+47463,48126
+47464,79095
+47465,21703
+47466,79282
+47467,58336
+47468,70988
+47469,21703
+47470,79282
+47471,21703
+47472,79282
+47473,25256
+47474,19480
+47475,59548
+47476,75732
+47477,35679
+47478,32934
+47479,78732
+47480,47845
+47481,78732
+47482,73284
+47483,78732
+47484,47452
+47485,47740
+47486,47451
+47487,47475
+47488,64142
+47489,52327
+47490,41773
+47491,72959
+47492,51349
+47493,54710
+47494,21214
+47495,21775
+47496,65925
+47497,21765
+47498,54562
+47499,47697
+47500,65929
+47501,69330
+47502,31079
+47503,47506
+47504,63860
+47505,47506
+47506,32798
+47507,65930
+47508,47500
+47509,30950
+47510,60713
+47511,21770
+47512,63470
+47513,48318
+47514,50701,11480
+47515,46698
+47516,35542
+47517,66189
+47518,18823
+47519,32578
+47520,54735
+47521,70524
+47522,23219
+47523,58158
+47524,77802
+47525,35922
+47526,31940
+47527,31948
+47528,37477
+47529,62694
+47530,48929
+47531,64142
+47532,72959
+47533,48740
+47534,35397
+47535,28136
+47536,20074
+47537,31546
+47538,23012
+47539,45557
+47540,54356
+47541,29626
+47542,25094
+47543,54361
+47544,72959
+47545,72396
+47546,64142
+47547,62723
+47548,66153
+47549,34362
+47550,47899
+47551,67467
+47552,64142
+47553,28132
+47554,19607
+47555,60166
+47556,38555
+47557,47546
+47558,47546
+47559,22907
+47560,60216
+47561,64949
+47562,75016
+47563,48821
+47564,31245
+47565,63416
+47566,24221
+47567,28803,47583
+47568,18720
+47569,47581
+47570,37494
+47571,75606
+47572,21007
+47573,47564
+47574,42130,20978
+47575,47574
+47576,47574
+47577,47574
+47578,47574
+47579,47574
+47580,21881
+47581,35626
+47582,53711
+47583,53716
+47584,47583
+47585,53717
+47586,47581
+47587,76162
+47588,28543
+47589,28952
+47590,31604
+47591,31477
+47592,62957
+47593,41413
+47594,31245
+47595,35626
+47596,35626
+47597,19656
+47598,33755
+47599,20905
+47600,70033
+47601,33150
+47602,47814
+47603,58800
+47604,39810
+47605,47477
+47606,44579
+47607,50875
+47608,66591
+47609,62387
+47610,22698
+47611,24630
+47612,47845
+47613,64142
+47614,73853
+47615,36840
+47616,55158
+47617,78928
+47618,78930
+47619,60604
+47620,27281
+47621,72959
+47622,36803
+47623,21085
+47624,47124
+47625,22699
+47626,23579
+47627,55236
+47628,34211
+47629,52896
+47630,67951
+47631,41155
+47632,61789
+47633,31742
+47634,23791
+47635,21638
+47636,60166
+47637,22271
+47638,36802
+47639,71527
+47640,47749
+47641,19176
+47642,34118
+47643,61396
+47644,70651
+47645,47727
+47646,78773
+47647,48150
+47648,32745
+47649,61396
+47650,63399
+47651,61154
+47652,57934
+47653,58162
+47654,47872
+47655,48423
+47656,19171
+47657,48820
+47658,19009
+47659,51988
+47660,48057
+47661,78059
+47662,30367
+47663,24795
+47664,23775
+47665,35512
+47666,48148
+47667,30697
+47668,41156
+47669,32807
+47670,36841
+47671,79086
+47672,72861
+47673,19438
+47674,26604
+47675,30650
+47676,71508
+47677,26462
+47678,37896
+47679,58024
+47680,56912
+47681,47679
+47682,34118
+47683,34126
+47684,73184
+47685,68928
+47686,48748
+47687,48748
+47688,19009
+47689,38664
+47690,48053
+47691,53454
+47692,60175
+47693,68928
+47694,47705
+47695,62133
+47696,62742
+47697,21218
+47698,47388
+47699,63663
+47700,58798
+47701,64142
+47702,38618
+47703,47402
+47704,48148
+47705,34924
+47706,72813
+47707,50769
+47708,63819
+47709,31338
+47710,78526
+47711,59422
+47712,19311
+47713,41406
+47714,31245
+47715,34470
+47716,28539
+47717,77452
+47718,31245
+47719,47723
+47720,32793
+47721,38782
+47722,38839
+47723,47780
+47724,35695
+47725,36532
+47726,78204
+47727,78799
+47728,38693
+47729,80227
+47730,31245
+47731,19009
+47732,22166
+47733,65108
+47734,39928
+47735,25600
+47736,49312
+47737,65702
+47738,70556
+47739,55765
+47740,30267
+47741,64142
+47742,47858
+47743,64142
+47744,72959
+47745,56179
+47746,77374
+47747,19171
+47748,78776
+47749,78511
+47750,22656
+47751,81462,52211
+47752,52904,52211
+47753,60617
+47754,38712
+47755,80505
+47756,53610
+47757,48929
+47758,78797
+47759,47715
+47760,47740
+47761,47758
+47762,23258
+47763,77374
+47764,47762
+47765,60604
+47766,19311
+47767,48240
+47768,23764
+47769,78641
+47770,54059,42481
+47771,32493
+47772,52327
+47773,51319
+47774,72084
+47775,47760
+47776,47741
+47777,47740
+47778,47776
+47779,76631
+47780,27576
+47781,25202
+47782,31058
+47783,21605
+47784,28104
+47785,28104
+47786,77641
+47787,81482
+47788,64851
+47789,58023
+47790,68196
+47791,78731
+47792,51523
+47793,21838
+47794,58012
+47795,41563
+47796,35793
+47797,45096
+47798,49027
+47799,38787
+47800,55756
+47801,26507
+47802,41911
+47803,23762
+47804,34661
+47805,33502
+47806,37220
+47807,76989
+47808,57059
+47809,21612
+47810,63568
+47811,35512
+47812,51391
+47813,20698
+47814,22152
+47815,20698
+47816,55348
+47817,23874
+47818,39480
+47819,52499
+47820,56243
+47821,53624
+47822,70526
+47823,47871
+47824,48820
+47825,25092
+47826,55914
+47827,50008
+47828,35593
+47829,56941
+47830,40062
+47831,25642
+47832,72984
+47833,75472
+47834,78636
+47835,60598
+47836,28600
+47837,31708
+47838,35534
+47839,47741
+47840,78785
+47841,28382
+47842,72396
+47843,41413
+47844,48471
+47845,64142
+47846,47740
+47847,45156
+47848,47680
+47849,47909
+47850,47836
+47851,48355
+47852,78726
+47853,56954
+47854,48807
+47855,28541
+47856,37561
+47857,47984
+47858,78797
+47859,35490
+47860,38637
+47861,78786
+47862,31515
+47863,47823
+47864,47715
+47865,64142
+47866,46417
+47867,46417
+47868,28530
+47869,20409
+47870,63065
+47871,28537
+47872,64142
+47873,36238
+47874,19009
+47875,41248
+47876,34199
+47877,60385
+47878,27562
+47879,76664
+47880,21200
+47881,78755
+47882,34928
+47883,47994
+47884,36840
+47885,62145
+47886,57573,46251
+47887,78514
+47888,28600
+47889,70091
+47890,30686
+47891,19131
+47892,54774
+47893,38012
+47894,23884
+47895,22219
+47896,32363
+47897,35815
+47898,57356
+47899,47715
+47900,54704
+47901,54717
+47902,36238
+47903,48936
+47904,47715
+47905,34868
+47906,21728
+47907,48462
+47908,53619
+47909,78526
+47910,48254
+47911,47715
+47912,35511
+47913,65186
+47914,38693
+47915,63417
+47916,47047
+47917,58107
+47918,28538
+47919,71841
+47920,31137
+47921,81798
+47922,31690
+47923,79552
+47924,41516
+47925,19649
+47926,79165
+47927,50507
+47928,68059
+47929,51677
+47930,40089
+47931,39109
+47932,59555
+47933,41305
+47934,55847
+47935,55848
+47936,65591
+47937,65638
+47938,70629
+47939,27991
+47940,59020
+47941,65049
+47942,19488
+47943,56023
+47944,30882
+47945,55158
+47946,30498
+47947,70214
+47948,34924
+47949,76664
+47950,19009
+47951,50875
+47952,62008
+47953,40007
+47954,78537
+47955,62387
+47956,50359
+47957,56151
+47958,37174
+47959,74939
+47960,20670
+47961,48442
+47962,79641
+47963,70033
+47964,81107
+47965,26448
+47966,30514
+47967,63415
+47968,21081
+47969,65908
+47970,40150
+47971,40816
+47972,51362
+47973,57330
+47974,75472
+47975,77496
+47976,63060
+47977,34126
+47978,28600
+47979,77374
+47980,40990
+47981,54704
+47982,38372
+47983,47487
+47984,28357
+47985,57856
+47986,54082
+47987,58166
+47988,59938
+47989,23790
+47990,35922
+47991,60216
+47992,77374
+47993,35526
+47994,75552
+47995,22372
+47996,22372
+47997,47746
+47998,56950
+47999,73669
+48000,50969
+48001,18757
+48002,28063
+48003,19654
+48004,37450
+48005,53842
+48006,48724
+48007,37411
+48008,30296
+48009,45556
+48010,48006
+48011,37405
+48012,18811
+48013,44040
+48014,60178
+48015,47979
+48016,32580
+48017,71446
+48018,32580
+48019,19813
+48020,32506
+48021,31589
+48022,37913
+48023,77277
+48024,63065
+48025,78682
+48026,27118
+48027,37130
+48028,26602
+48029,48031
+48030,30658
+48031,30659
+48032,20533
+48033,19208
+48034,62447
+48035,48034
+48036,78786
+48037,60604
+48038,64142
+48039,64139
+48040,28357
+48041,35142
+48042,48058
+48043,53654
+48044,73112
+48045,75018
+48046,53339
+48047,31893
+48048,47546
+48049,76251
+48050,78671
+48051,28357
+48052,34819
+48053,47743
+48054,35433
+48055,55023
+48056,47452
+48057,78533
+48058,34618
+48059,35693
+48060,35567
+48061,47532
+48062,76662
+48063,34064
+48064,39572
+48065,43861
+48066,55668
+48067,55662
+48068,22278
+48069,18740
+48070,54704
+48071,21597
+48072,71493
+48073,59549
+48074,59450
+48075,57332
+48076,47686
+48077,47475
+48078,51562
+48079,59547
+48080,32214
+48081,47479
+48082,47797
+48083,19656
+48084,30878
+48085,48084
+48086,47758
+48087,65057
+48088,40986
+48089,20265
+48090,28327
+48091,28339
+48092,28238
+48093,31428
+48094,32527
+48095,38122
+48096,50097
+48097,50101
+48098,54014
+48099,57957
+48100,61220
+48101,63752
+48102,57514
+48103,76068
+48104,76490
+48105,79305
+48106,64143
+48107,52241
+48108,35433
+48109,31014
+48110,33998
+48111,41816
+48112,74696
+48113,64142
+48114,39888
+48115,59886
+48116,72585
+48117,48735
+48118,64142
+48119,79165
+48120,79376
+48121,50438
+48122,78644
+48123,19574
+48124,53473
+48125,21612
+48126,74939
+48127,35534
+48128,19815
+48129,38835
+48130,38768
+48131,37120
+48132,64831
+48133,76162
+48134,72258
+48135,34918
+48136,43913
+48137,37825
+48138,55250
+48139,66597
+48140,78512
+48141,81808
+48142,55078
+48143,20960
+48144,40753
+48145,40745
+48146,31477
+48147,62408
+48148,34864
+48149,62409
+48150,28063
+48151,31615,66101
+48152,30651
+48153,53022
+48154,30891
+48155,19009
+48156,30267
+48157,54044
+48158,48162
+48159,54891
+48160,26363
+48161,57932
+48162,75027
+48163,75495
+48164,68280
+48165,37913
+48166,68289
+48167,80106
+48168,31474
+48169,48154
+48170,63007
+48171,72052
+48172,35482
+48173,21703
+48174,41562
+48175,19182
+48176,45542
+48177,72038
+48178,76162
+48179,73472
+48180,73836
+48181,44474
+48182,73837
+48183,20670
+48184,38952
+48185,48395
+48186,28539
+48187,71557
+48188,29368
+48189,77641
+48190,19231
+48191,49508
+48192,28593
+48193,74423
+48194,27166
+48195,57261
+48196,24781
+48197,48875
+48198,78815
+48199,24642
+48200,39578
+48201,31039
+48202,41022
+48203,35442
+48204,44795
+48205,76851
+48206,44472
+48207,36710
+48208,45851
+48209,57457
+48210,60216
+48211,42246
+48212,53717
+48213,25839
+48214,42439
+48215,42440
+48216,35652
+48217,62694
+48218,45837
+48219,77444
+48220,22164
+48221,19131
+48222,77437
+48223,80510
+48224,58162
+48225,66155
+48226,18834
+48227,74081
+48228,48928
+48229,38044
+48230,78649
+48231,80626
+48232,64142
+48233,32718
+48234,51068
+48235,30650
+48236,18679
+48237,59970
+48238,68230
+48239,23764
+48240,28346
+48241,48333
+48242,71557
+48243,53694
+48244,21270
+48245,67545
+48246,30621
+48247,63208
+48248,81808
+48249,81808
+48250,18950
+48251,47475
+48252,81808
+48253,78773
+48254,51642
+48255,51649
+48256,36147
+48257,25434
+48258,27740
+48259,38231
+48260,46285
+48261,71098
+48262,75336
+48263,74217
+48264,77600
+48265,80637
+48266,19629
+48267,36317
+48268,39997
+48269,34199
+48270,25113
+48271,53003
+48272,66040
+48273,28543
+48274,28236
+48275,69118
+48276,66087
+48277,78096
+48278,35772
+48279,59308
+48280,78236
+48281,31245
+48282,21773
+48283,60216
+48284,21703
+48285,58212
+48286,57194
+48287,74081
+48288,63416
+48289,47565
+48290,53704
+48291,47858
+48292,28803
+48293,31058
+48294,57157
+48295,1594
+48296,59555
+48297,48145
+48298,31039
+48299,31109
+48300,79000
+48301,79001
+48302,70214
+48303,48305
+48304,71961
+48305,48791
+48306,63051
+48307,62994
+48308,48640
+48309,48304
+48310,48761
+48311,77709
+48312,78656
+48313,53920
+48314,61419
+48315,81788
+48316,81789
+48317,47845
+48318,21718
+48319,60284
+48320,65885
+48321,61159
+48322,20743
+48323,48324
+48324,33812
+48325,21087
+48326,61281
+48327,25087
+48328,78544
+48329,47741
+48330,47753
+48331,68809
+48332,21745
+48333,55493
+48334,55823
+48335,60715
+48336,65581
+48337,74535
+48338,26965
+48339,29797
+48340,77460
+48341,52102
+48342,59543
+48343,74422
+48344,32152
+48345,48157
+48346,77311
+48347,45181
+48348,60063
+48349,78594
+48350,69120
+48351,48740
+48352,70013
+48353,22669
+48354,48353
+48355,78671
+48356,78804
+48357,47658
+48358,19496
+48359,34460
+48360,71482
+48361,71499
+48362,35511
+48363,64142
+48364,40060
+48365,70787
+48366,70091
+48367,38601
+48368,61764
+48369,54425
+48370,25094
+48371,62145
+48372,47388
+48373,48740
+48374,63117
+48375,21612
+48376,34379
+48377,35625
+48378,78553
+48379,78794
+48380,23764
+48381,28616
+48382,59645
+48383,76054
+48384,31588,51836
+48385,34085
+48386,65627
+48387,30231
+48388,65929
+48389,21718
+48390,21411
+48391,32578
+48392,50701
+48393,77976
+48394,51643
+48395,48333
+48396,21200
+48397,21345
+48398,21938
+48399,33485
+48400,38375
+48401,58168
+48402,76430
+48403,30188
+48404,65478
+48405,53054
+48406,62145
+48407,75548
+48408,34924
+48409,21922
+48410,53613
+48411,56241
+48412,19840
+48413,48408
+48414,48408
+48415,48414
+48416,57916
+48417,55734
+48418,55736
+48419,69028
+48420,62466
+48421,78698
+48422,78996
+48423,21745
+48424,55753
+48425,47656
+48426,34313
+48427,66058
+48428,80505
+48429,47531
+48430,47741
+48431,39147
+48432,20409
+48433,24885
+48434,24876
+48435,26302
+48436,63416
+48437,48980
+48438,53454
+48439,46553,47242
+48440,69803
+48441,69810
+48442,35511
+48443,37559
+48444,48534
+48445,68832
+48446,19657
+48447,29570
+48448,56901
+48449,60216
+48450,65064
+48451,66344,65531
+48452,62935
+48453,60058
+48454,43520
+48455,62963
+48456,57897
+48457,53003
+48458,79097
+48459,47531
+48460,21905
+48461,57187
+48462,26934
+48463,26939
+48464,31106
+48465,22313
+48466,51996
+48467,53474
+48468,44440
+48469,53624
+48470,46417
+48471,72959
+48472,32580
+48473,75016
+48474,60216
+48475,63316
+48476,34299
+48477,18721
+48478,48161
+48479,48157
+48480,19382
+48481,20534
+48482,75957
+48483,64846
+48484,75974
+48485,37569
+48486,31070
+48487,78772
+48488,79524
+48489,48013
+48490,47871
+48491,47871
+48492,54909
+48493,53607
+48494,34362
+48495,52655
+48496,53694
+48497,78698
+48498,53607
+48499,43546
+48500,79854
+48501,34414
+48502,21908
+48503,51996
+48504,19200
+48505,60603
+48506,22969
+48507,79282
+48508,61649
+48509,62794
+48510,27967
+48511,39929
+48512,62513
+48513,49438
+48514,48504
+48515,30883
+48516,30884
+48517,4024
+48518,49296
+48519,31446
+48520,22831
+48521,70568
+48522,21703
+48523,79282
+48524,48515
+48525,51996
+48526,28214
+48527,32531,63208
+48528,63206
+48529,40150
+48530,40393
+48531,71315
+48532,62409
+48533,33403
+48534,69554
+48535,38789
+48536,64833
+48537,30275
+48538,58523
+48539,74535
+48540,31106
+48541,63187
+48542,74549
+48543,24801
+48544,53624
+48545,21078
+48546,65581
+48547,76657
+48548,58514
+48549,20698
+48550,34199
+48551,77287
+48552,71997
+48553,46901
+48554,71997
+48555,36101
+48556,51773
+48557,63376
+48558,25796
+48559,50652
+48560,50716
+48561,52443
+48562,34924
+48563,31798
+48564,54649
+48565,76657
+48566,69978
+48567,74640
+48568,28774
+48569,46694
+48570,75758
+48571,42360
+48572,80748
+48573,55491
+48574,55756
+48575,59604
+48576,48928
+48577,50258
+48578,35917
+48579,45527
+48580,22208
+48581,27641
+48582,28339
+48583,30581
+48584,31742
+48585,36525
+48586,47469
+48587,49388
+48588,53545
+48589,53716
+48590,58144
+48591,75489
+48592,66431
+48593,50769
+48594,74640
+48595,52331
+48596,40617
+48597,48480
+48598,50603
+48599,19382
+48600,75954
+48601,35922
+48602,19497
+48603,71334
+48604,68342
+48605,44440
+48606,62986
+48607,31117
+48608,71996
+48609,27391
+48610,68903
+48611,62145
+48612,35342
+48613,69131
+48614,69118
+48615,18720
+48616,58108
+48617,59886
+48618,59885
+48619,46097
+48620,48516
+48621,36815
+48622,61287
+48623,48624
+48624,65581
+48625,48504
+48626,26934
+48627,54044
+48628,61154
+48629,38814
+48630,38813
+48631,65929
+48632,60216
+48633,63187
+48634,53688
+48635,54890
+48636,65503
+48637,48547
+48638,65691
+48639,77491
+48640,64281
+48641,55158
+48642,70212
+48643,40774
+48644,34924
+48645,45096
+48646,69330
+48647,49296
+48648,49438
+48649,61649
+48650,69331
+48651,30568
+48652,46059
+48653,48654
+48654,65581
+48655,73837
+48656,57897
+48657,38951
+48658,66101
+48659,20760,61263
+48660,28409
+48661,69330
+48662,55760
+48663,35735
+48664,59376
+48665,63061
+48666,37900
+48667,41155
+48668,41097
+48669,35596
+48670,79282
+48671,48640
+48672,66114
+48673,48304
+48674,70526
+48675,57934
+48676,54253
+48677,68793
+48678,57417,37980
+48679,48590
+48680,13106
+48681,65064
+48682,53848
+48683,35509
+48684,39502
+48685,22152
+48686,47605
+48687,70427
+48688,55736
+48689,70427
+48690,63386
+48691,48690
+48692,36602
+48693,38725
+48694,27951
+48695,51649
+48696,20654
+48697,77374
+48698,48243
+48699,70656
+48700,33455
+48701,48243
+48702,31117
+48703,73853
+48704,79376
+48705,43913
+48706,50985
+48707,62757
+48708,31689
+48709,48251
+48710,20650
+48711,36509
+48712,39572
+48713,48243
+48714,63994
+48715,63995
+48716,52197
+48717,61488
+48718,39116
+48719,41469
+48720,59422
+48721,63344
+48722,76058
+48723,68809
+48724,23764
+48725,55756
+48726,58200
+48727,79084
+48728,48593
+48729,48593
+48730,34602
+48731,31626
+48732,76338
+48733,78788
+48734,60216
+48735,38017,78815
+48736,43110
+48737,66786
+48738,38012
+48739,19689
+48740,23258
+48741,47698
+48742,60450
+48743,74807
+48744,28790
+48745,44474
+48746,45813
+48747,61906
+48748,64142
+48749,48735
+48750,31241
+48751,58162
+48752,70091
+48753,57573
+48754,47475
+48755,47488
+48756,79086
+48757,28543
+48758,31538
+48759,39528
+48760,72505
+48761,59886
+48762,38011
+48763,77094
+48764,32790
+48765,32793
+48766,32798
+48767,32798
+48768,32799
+48769,65589
+48770,51688
+48771,51677
+48772,18983
+48773,48584
+48774,49027
+48775,57987
+48776,41842
+48777,18740
+48778,28790
+48779,22053
+48780,55828
+48781,79172
+48782,55348
+48783,46410
+48784,55348
+48785,27455
+48786,35431
+48787,20743
+48788,45067
+48789,61435
+48790,37404
+48791,81601
+48792,38807
+48793,40053
+48794,30691
+48795,70646
+48796,36450
+48797,63257
+48798,21905
+48799,19492
+48800,19657
+48801,56901
+48802,51075
+48803,27339
+48804,29969
+48805,74461
+48806,63093
+48807,60604
+48808,22744
+48809,65975,51069
+48810,20127
+48811,48809
+48812,47774
+48813,47656
+48814,62513
+48815,25649
+48816,58162
+48817,31564
+48818,28538
+48819,52750
+48820,31443
+48821,73669
+48822,67513
+48823,30275
+48824,62147
+48825,48733
+48826,67951
+48827,19069
+48828,44908
+48829,28790
+48830,28780,44933
+48831,48830,64547
+48832,48830,64547
+48833,20355
+48834,21006
+48835,31058
+48836,44932
+48837,21060
+48838,63434
+48839,60559
+48840,48833
+48841,48833
+48842,59338
+48843,59339
+48844,64950
+48845,56179
+48846,19815
+48847,28778
+48848,31539
+48849,31245
+48850,56179
+48851,53624
+48852,64474
+48853,65581
+48854,70695
+48855,76162
+48856,51068
+48857,37665
+48858,26065
+48859,55069
+48860,21898
+48861,22666
+48862,26318
+48863,39018
+48864,54082
+48865,48126
+48866,48126
+48867,74807
+48868,39018
+48869,53848
+48870,48862
+48871,35045
+48872,24261
+48873,48126
+48874,43691
+48875,54082
+48876,47655
+48877,46317
+48878,44083
+48879,76664
+48880,60786
+48881,44083
+48882,26869
+48883,47415
+48884,20635
+48885,74251
+48886,54073
+48887,31740
+48888,41348
+48889,51929
+48890,66097
+48891,48415
+48892,52904
+48893,72764
+48894,58137
+48895,60031
+48896,28202
+48897,77554
+48898,20690
+48899,80185
+48900,42225,80897
+48901,81601
+48902,25017
+48903,77308
+48904,53958
+48905,69458
+48906,52904
+48907,45813
+48908,81482
+48909,81602
+48910,52773
+48911,81647
+48912,77945
+48913,47850
+48914,31245
+48915,72505
+48916,47494
+48917,42454
+48918,24021
+48919,48920
+48920,55356
+48921,65004
+48922,48313
+48923,65579
+48924,35922
+48925,19497
+48926,53958
+48927,22004
+48928,64142
+48929,78540
+48930,56887
+48931,47646
+48932,78636
+48933,51778
+48934,78553
+48935,62409
+48936,77374
+48937,78803
+48938,22152
+48939,38567
+48940,28543
+48941,63065
+48942,63494
+48943,53694
+48944,35802
+48945,47476
+48946,30357
+48947,20827
+48948,18740,69132
+48949,63584
+48950,62047
+48951,38012
+48952,20635
+48953,20875
+48954,47283
+48955,73804,48952
+48956,25256
+48957,50296
+48958,82150
+48959,48210
+48960,37832
+48961,48957
+48962,19669
+48963,19673
+48964,19674
+48965,20978
+48966,48978
+48967,26723
+48968,55069
+48969,48978
+48970,48978
+48971,67675
+48972,19069
+48973,48215
+48974,42114
+48975,69452
+48976,61866
+48977,51468
+48978,51468
+48979,48978
+48980,69168
+48981,34299
+48982,20006
+48983,56866
+48984,69172
+48985,41155
+48986,19497
+48987,38366
+48988,31058
+48989,38053
+48990,72959
+48991,31808
+48992,51473
+48993,38699
+48994,39010
+48995,44478
+48996,41842
+48997,37542
+48998,38188
+48999,70375
+49000,20973
+49001,52791
+49002,19935
+49003,53717
+49004,77740
+49005,53717
+49006,38209
+49007,48978
+49008,28786
+49009,38699
+49010,71557
+49011,22057
+49012,63314
+49013,31638
+49014,63494
+49015,73472
+49016,60131
+49017,62962
+49018,48401
+49019,50296
+49020,76756
+49021,19069
+49022,41000
+49023,52068
+49024,33519
+49025,54789
+49026,81004
+49027,59307
+49028,65893
+49029,63065
+49030,63065
+49031,21838
+49032,50117
+49033,77160
+49034,21006
+49035,34583
+49036,60786
+49037,44603
+49038,68869
+49039,39517
+49040,30275
+49041,77641
+49042,81536
+49043,79608
+49044,43136
+49045,58508
+49046,63791
+49047,43167
+49048,43240
+49049,56941
+49050,73477
+49051,41625
+49052,37179
+49053,41743
+49054,60661
+49055,22786
+49056,37405
+49057,40411
+49058,76981
+49059,27440
+49060,70987
+49061,21869
+49062,42097
+49063,39068
+49064,61415
+49065,21777
+49066,50383
+49067,19629
+49068,79608
+49069,57289
+49070,60899
+49071,61209
+49072,27187
+49073,79467
+49074,59891
+49075,32233
+49076,59801
+49077,69663
+49078,81733
+49079,30062
+49080,22729
+49081,41743
+49082,37179
+49083,53412
+49084,35822
+49085,36618
+49086,51316
+49087,63013
+49088,45170
+49089,28954
+49090,49058
+49091,70359
+49092,71182
+49093,73761
+49094,28954
+49095,39049
+49096,39049
+49097,51230
+49098,66146
+49099,57861
+49100,44160
+49101,51159
+49102,54562
+49103,30051
+49104,63213
+49105,70896
+49106,48489
+49107,40473
+49108,78635
+49109,27455
+49110,24084
+49111,81153
+49112,32530
+49113,32177
+49114,32929
+49115,51174
+49116,28970
+49117,70058
+49118,31495
+49119,55763
+49120,31372
+49121,78866
+49122,35557
+49123,77500
+49124,37474
+49125,68848
+49126,49134
+49127,40986
+49128,33479
+49129,50144
+49130,50143
+49131,26548
+49132,27056
+49133,40776
+49134,79469
+49135,31618
+49136,38883
+49137,82133
+49138,70033
+49139,57861
+49140,50735
+49141,27865
+49142,74939
+49143,49142
+49144,28880
+49145,27721
+49146,39846
+49147,71969,72435
+49148,39531
+49149,25256
+49150,46256
+49151,8162,71493
+49152,45118
+49153,61911
+49154,60032
+49155,21362
+49156,32233
+49157,59775
+49158,62034
+49159,33793
+49160,33790
+49161,39713
+49162,55768
+49163,57333
+49164,80251
+49165,38051
+49166,77985,81660
+49167,27405
+49168,34686
+49169,21703
+49170,48126
+49171,47748
+49172,36743
+49173,48126
+49174,57934
+49175,70988
+49176,29839
+49177,42407,47054
+49178,74081
+49179,31495
+49180,27167
+49181,41877
+49182,30216
+49183,72386
+49184,21869
+49185,66862
+49186,64817
+49187,64812
+49188,30989
+49189,64831
+49190,80619
+49191,54727
+49192,55348
+49193,49079
+49194,53628
+49195,81255
+49196,26295
+49197,31562
+49198,49962
+49199,69782
+49200,35838
+49201,29963
+49202,51379
+49203,22052
+49204,19867
+49205,35468
+49206,41063
+49207,64950
+49208,39460
+49209,64952
+49210,69335
+49211,19877
+49212,49204
+49213,59306
+49214,81396
+49215,55758
+49216,60216
+49217,49222
+49218,58088
+49219,53959
+49220,58010
+49221,45392
+49222,19421
+49223,34025
+49224,52773
+49225,40446
+49226,45813
+49227,44449
+49228,81462
+49229,3621
+49230,41119
+49231,71900
+49232,40326
+49233,34924
+49234,40965
+49235,33793
+49236,53369
+49237,62432
+49238,63987
+49239,73796
+49240,81462
+49241,33100
+49242,47390
+49243,76248
+49244,29106
+49245,33100
+49246,76325
+49247,71686
+49248,54005
+49249,27721
+49250,35095
+49251,43138
+49252,56836
+49253,55494
+49254,71311
+49255,21087
+49256,56459
+49257,21275
+49258,63117
+49259,81647
+49260,36840
+49261,81601
+49262,81601
+49263,36839
+49264,21279
+49265,75911
+49266,35362
+49267,21273
+49268,21272
+49269,63187
+49270,34737
+49271,48671
+49272,30391
+49273,35781
+49274,32214
+49275,43817
+49276,37712,46251
+49277,57945
+49278,46639
+49279,29969
+49280,51136
+49281,41837
+49282,41995
+49283,66518
+49284,77985
+49285,20726
+49286,51928
+49287,42002
+49288,67326
+49289,27552
+49290,69506
+49291,32083
+49292,37928
+49293,53842
+49294,81547
+49295,81546
+49296,28535
+49297,72448
+49298,49440
+49299,25115
+49300,29357
+49301,30937
+49302,63026
+49303,66071
+49304,75495
+49305,79363
+49306,80583
+49307,67362
+49308,61209
+49309,38380
+49310,23536
+49311,60337
+49312,81396
+49313,21731
+49314,61402
+49315,30584
+49316,78755
+49317,43737,41995
+49318,59378
+49319,81899
+49320,24875
+49321,78647
+49322,33712
+49323,56058
+49324,20147
+49325,25545
+49326,47433
+49327,75751
+49328,47782
+49329,69968
+49330,57071
+49331,57063
+49332,81617
+49333,60131
+49334,25306
+49335,22455
+49336,23589
+49337,46826
+49338,38883
+49339,63141
+49340,62950
+49341,81781
+49342,63007
+49343,77575
+49344,73841
+49345,39531
+49346,62163
+49347,37686
+49348,28746
+49349,36531
+49350,31743,33882
+49351,20819
+49352,59808
+49353,57573,19359
+49354,30682
+49355,72721
+49356,30682
+49357,62145
+49358,19171
+49359,34149
+49360,36721
+49361,57966
+49362,77374
+49363,49360
+49364,49360
+49365,51238
+49366,49360
+49367,49360
+49368,25709
+49369,66322
+49370,77108
+49371,19376
+49372,75019
+49373,67545
+49374,81374
+49375,53288,72421
+49376,25434
+49377,31618
+49378,37955
+49379,81251
+49380,32718
+49381,62408
+49382,65045
+49383,60071
+49384,60076
+49385,77790
+49386,52957
+49387,80494
+49388,79282
+49389,37888
+49390,33424
+49391,41022
+49392,51649
+49393,52586
+49394,28646
+49395,44621
+49396,37179,36641
+49397,70033
+49398,53288
+49399,39583
+49400,49297
+49401,65210
+49402,46035
+49403,71719
+49404,79259
+49405,26884
+49406,49204
+49407,56290
+49408,77472
+49409,63363
+49410,47868
+49411,34732
+49412,23764
+49413,33495
+49414,28954,27552
+49415,66985
+49416,68692
+49417,78664
+49418,42225
+49419,60216
+49420,22032
+49421,32572
+49422,31444
+49423,49079
+49424,23313
+49425,36434
+49426,49422,81350
+49427,77267
+49428,23763
+49429,68869
+49430,76501
+49431,61415
+49432,66862
+49433,58088
+49434,61256
+49435,49409
+49436,19200
+49437,40068
+49438,77045
+49439,49296
+49440,31444
+49441,78684
+49442,49440
+49443,32953
+49444,45096
+49445,46285
+49446,51894
+49447,41180
+49448,81153
+49449,49451
+49450,52798
+49451,42049
+49452,73838,61415
+49453,49451
+49454,70651
+49455,78879
+49456,52255
+49457,60216
+49458,29627
+49459,30408
+49460,25598
+49461,68771
+49462,25598
+49463,25598
+49464,43861
+49465,74038
+49466,75566
+49467,25598
+49468,33638
+49469,40564
+49470,41729
+49471,47107
+49472,25046
+49473,34602
+49474,25234
+49475,41005
+49476,76275
+49477,69860
+49478,34808
+49479,77857
+49480,77575
+49481,81871
+49482,64586
+49483,35787
+49484,60453
+49485,38807
+49486,58954
+49487,25094
+49488,30693
+49489,25573
+49490,29528
+49491,53369
+49492,50889
+49493,50880
+49494,50880
+49495,35143
+49496,31476
+49497,49358
+49498,66591,56185
+49499,52596
+49500,49353
+49501,49483
+49502,38814
+49503,29460
+49504,79606
+49505,31361
+49506,61253
+49507,44474
+49508,60216
+49509,46885
+49510,32527
+49511,80188
+49512,62144
+49513,61154
+49514,22103
+49515,35557
+49516,33797
+49517,72271
+49518,36007
+49519,2133
+49520,31978
+49521,31978
+49522,33581
+49523,81153
+49524,45392
+49525,31417
+49526,37179
+49527,54562
+49528,26409
+49529,73271
+49530,23939
+49531,27276
+49532,26766
+49533,33134
+49534,41226
+49535,61415
+49536,72959
+49537,74939
+49538,70033
+49539,73177
+49540,78188
+49541,60847,74223
+49542,39929
+49543,79591
+49544,20977
+49545,28870
+49546,53283
+49547,56701
+49548,32527
+49549,49187
+49550,61600
+49551,45813
+49552,61600
+49553,42225
+49554,43897
+49555,54562
+49556,54029
+49557,1914
+49558,51068
+49559,20690
+49560,61253
+49561,51068
+49562,70033
+49563,70427
+49564,78703
+49565,53288
+49566,34819
+49567,58162
+49568,51649
+49569,52469
+49570,31547
+49571,64196
+49572,46715
+49573,73272
+49574,81193
+49575,54092
+49576,58166
+49577,53624
+49578,20690
+49579,52028
+49580,81482
+49581,31905
+49582,49583
+49583,31417
+49584,19936
+49585,28104
+49586,27224
+49587,81200
+49588,59286
+49589,35557
+49590,63213
+49591,27601
+49592,23536
+49593,66705
+49594,20079
+49595,23536
+49596,35406
+49597,73815
+49598,34285
+49599,31362
+49600,57333
+49601,72310
+49602,23164
+49603,31618
+49604,70033
+49605,68119
+49606,26120
+49607,44226
+49608,69688
+49609,38569
+49610,75745
+49611,45769
+49612,45946
+49613,58378,69681
+49614,77945
+49615,31638
+49616,27276
+49617,58776
+49618,21975
+49619,68316
+49620,58162
+49621,48126
+49622,18888
+49623,45851
+49624,48126
+49625,21975
+49626,70651
+49627,47004
+49628,48126
+49629,74939
+49630,41875
+49631,70651
+49632,39014
+49633,61317,77514
+49634,48126
+49635,53701
+49636,38601
+49637,70651
+49638,49637
+49639,49637
+49640,49637
+49641,39018
+49642,36542
+49643,68128
+49644,76711
+49645,78399
+49646,43892
+49647,61260
+49648,31638
+49649,49142
+49650,54562
+49651,41773,47047
+49652,69248
+49653,39210
+49654,42440,29971
+49655,67574
+49656,31417
+49657,37179
+49658,77641
+49659,19087
+49660,49669,45937
+49661,58158
+49662,49661
+49663,44439
+49664,74939
+49665,74939
+49666,56950
+49667,56950
+49668,56950
+49669,55121
+49670,73200
+49671,62266
+49672,60042
+49673,31618
+49674,46270
+49675,77641
+49676,77641
+49677,49776
+49678,51677
+49679,51677
+49680,62159
+49681,38813
+49682,61075
+49683,51120
+49684,34924
+49685,31974
+49686,71838
+49687,55760
+49688,51420
+49689,39318
+49690,46507
+49691,55760
+49692,49679
+49693,81578
+49694,34924
+49695,46252
+49696,26264
+49697,55758
+49698,55768
+49699,27503
+49700,46268
+49701,51454
+49702,45051
+49703,73992
+49704,47388
+49705,58069
+49706,26299
+49707,73803
+49708,39049
+49709,39049
+49710,54439
+49711,81193
+49712,67277
+49713,36035
+49714,62145
+49715,45430
+49716,10650
+49717,49944
+49718,77108
+49719,81080
+49720,53592
+49721,26217
+49722,30396
+49723,53842
+49724,28948
+49725,31115
+49726,53676
+49727,73275
+49728,24874
+49729,55348
+49730,32150
+49731,61435
+49732,72938
+49733,78238
+49734,38699
+49735,25884
+49736,41055
+49737,61141,23764
+49738,72931
+49739,68285
+49740,66859
+49741,43554
+49742,50784
+49743,43458
+49744,28952
+49745,32929,27393
+49746,27398
+49747,38657
+49748,30718
+49749,30719
+49750,78956
+49751,25973
+49752,53637
+49753,26938
+49754,45813
+49755,54562
+49756,8647
+49757,2492
+49758,25098
+49759,34827
+49760,82151
+49761,61493
+49762,35157
+49763,60216
+49764,16408
+49765,48800
+49766,36029
+49767,33646
+49768,56474
+49769,75917
+49770,39442
+49771,43104
+49772,41911
+49773,31115
+49774,31115
+49775,31115
+49776,54188
+49777,81617
+49778,64831
+49779,54181
+49780,54183
+49781,64831
+49782,22414
+49783,38842
+49784,62324
+49785,62441
+49786,62441
+49787,81617
+49788,70675
+49789,58120
+49790,60103
+49791,66769
+49792,71315
+49793,65702
+49794,12791
+49795,63358
+49796,38053
+49797,27992
+49798,62682
+49799,74924
+49800,41610
+49801,47443
+49802,43724
+49803,19200
+49804,53657
+49805,28014
+49806,60621
+49807,64949
+49808,71575,71580
+49809,63358
+49810,53650
+49811,68289
+49812,49811
+49813,37668
+49814,28714
+49815,39068
+49816,28848
+49817,71817
+49818,66702
+49819,77618
+49820,21856
+49821,32642
+49822,80583
+49823,15897
+49824,59891
+49825,62187
+49826,30514
+49827,11869
+49828,80995
+49829,11858
+49830,25194
+49831,32456
+49832,55013
+49833,75510
+49834,44437
+49835,72122
+49836,36035
+49837,19607
+49838,41955
+49839,67703
+49840,80995
+49841,49059
+49842,31960
+49843,40752
+49844,80132
+49845,47673
+49846,47673
+49847,64757
+49848,81482
+49849,77641
+49850,60630
+49851,60216
+49852,47388
+49853,35157
+49854,40942
+49855,63103
+49856,77641
+49857,44609
+49858,65691
+49859,21620
+49860,65702
+49861,65702
+49862,70781
+49863,9399
+49864,44697
+49865,45885
+49866,67649
+49867,29314
+49868,33717
+49869,25721
+49870,78188
+49871,36434
+49872,35557
+49873,34819
+49874,31853
+49875,77147
+49876,77147
+49877,27167
+49878,26899
+49879,52211
+49880,65702
+49881,27781
+49882,82056
+49883,42389
+49884,41388
+49885,41388
+49886,22600
+49887,66953
+49888,46317
+49889,29833
+49890,42181
+49891,46126
+49892,48958
+49893,53425
+49894,37936
+49895,70462
+49896,75057
+49897,78984
+49898,49887
+49899,49897
+49900,28702
+49901,28702
+49902,61415
+49903,45302
+49904,23154
+49905,25065
+49906,71315
+49907,21671
+49908,77108
+49909,82056
+49910,81161
+49911,44603
+49912,36047
+49913,64864
+49914,37179
+49915,16022
+49916,78698
+49917,46559
+49918,37973
+49919,52990
+49920,21326
+49921,27461
+49922,71536
+49923,30391
+49924,73917
+49925,78097
+49926,81742
+49927,26633
+49928,67972
+49929,28221
+49930,80583
+49931,29917
+49932,46097
+49933,71352,73367
+49934,50869
+49935,25617
+49936,65509
+49937,63426
+49938,21568
+49939,55348
+49940,60216
+49941,25017
+49942,23799
+49943,21730
+49944,80512
+49945,37169
+49946,51434
+49947,24628
+49948,37166
+49949,39928
+49950,61435
+49951,52805
+49952,28848
+49953,69283
+49954,49951
+49955,49951
+49956,49951
+49957,30190
+49958,47393
+49959,56802
+49960,45813
+49961,78269
+49962,39049
+49963,49969
+49964,56325
+49965,56327
+49966,45030
+49967,76059
+49968,56316
+49969,73316
+49970,29928
+49971,45035
+49972,63218
+49973,34199
+49974,49972
+49975,60899
+49976,29968
+49977,54728
+49978,24875
+49979,24874
+49980,71686
+49981,32973
+49982,35425
+49983,31477
+49984,61379
+49985,70905
+49986,24874
+49987,24090
+49988,60216
+49989,34924
+49990,31940
+49991,24874
+49992,29057
+49993,46070
+49994,64831
+49995,81482
+49996,26411
+49997,39423
+49998,35753
+49999,67819
+50000,44013
+50001,46267
+50002,60898
+50003,80789
+50004,50008
+50005,18721
+50006,37276
+50007,60216
+50008,46042
+50009,70013
+50010,31638
+50011,81374
+50012,74990
+50013,49298
+50014,61078
+50015,60353
+50016,63047
+50017,80380
+50018,11962
+50019,52777
+50020,46818
+50021,33134
+50022,33135
+50023,39297
+50024,79337,56542
+50025,57249
+50026,57241
+50027,30396
+50028,53842
+50029,69688
+50030,41765
+50031,60216
+50032,49842
+50033,14649
+50034,17372
+50035,49993
+50036,15687
+50037,4553
+50038,51523
+50039,57261
+50040,73752
+50041,55768
+50042,19936
+50043,77641
+50044,25526
+50045,79591
+50046,59849
+50047,81734
+50048,37317
+50049,22096
+50050,50049
+50051,23365
+50052,45813
+50053,52791
+50054,33717
+50055,5686
+50056,21777
+50057,36166
+50058,28780,56806
+50059,20905
+50060,79608
+50061,51640
+50062,29502
+50063,29503
+50064,53288
+50065,72362,77509
+50066,25438
+50067,69782
+50068,56454
+50069,17272
+50070,80248
+50071,25872
+50072,80785
+50073,30989
+50074,859
+50075,52859
+50076,33793
+50077,54562
+50078,11502
+50079,25348
+50080,33353
+50081,68285
+50082,72210
+50083,71505
+50084,27079
+50085,81647
+50086,81621
+50087,30062
+50088,57689
+50089,57689
+50090,64547
+50091,53180
+50092,34735
+50093,77298
+50094,24799,21013
+50095,50103
+50096,50103
+50097,21703
+50098,31520
+50099,73451,50098
+50100,79282
+50101,79282
+50102,31520
+50103,38920
+50104,81601
+50105,29626
+50106,27077
+50107,21922
+50108,31690
+50109,50105
+50110,50701
+50111,53182
+50112,65527
+50113,78598
+50114,58776
+50115,59380
+50116,66086
+50117,81643
+50118,37238
+50119,21703
+50120,79282
+50121,58346
+50122,20422
+50123,20758
+50124,36872
+50125,39049
+50126,31991
+50127,40752
+50128,50724
+50129,39676
+50130,45030
+50131,77641
+50132,81643
+50133,81722
+50134,75574
+50135,51814
+50136,56532
+50137,81602
+50138,51665
+50139,56312
+50140,69274
+50141,75962
+50142,44609
+50143,30073
+50144,81602
+50145,73837
+50146,21703
+50147,25256
+50148,36710
+50149,38740
+50150,79458
+50151,68793
+50152,79282
+50153,25087
+50154,39847
+50155,22786
+50156,22032,61395
+50157,19928
+50158,35431
+50159,67675,38385
+50160,76664
+50161,25087
+50162,52421
+50163,27488
+50164,36710
+50165,19654
+50166,38475
+50167,19654
+50168,35432
+50169,42481
+50170,31245
+50171,42159
+50172,34363
+50173,72775
+50174,22543
+50175,28438
+50176,40172
+50177,63657
+50178,45813
+50179,58088
+50180,79469
+50181,81462
+50182,41765
+50183,52679
+50184,58088
+50185,24427
+50186,9280
+50187,70033
+50188,28571
+50189,39676
+50190,58888
+50191,78140
+50192,23748
+50193,31853
+50194,75403
+50195,39621
+50196,74797
+50197,58088
+50198,20474
+50199,81539
+50200,81741
+50201,23730
+50202,60042
+50203,48435
+50204,43247
+50205,61159
+50206,50215
+50207,18740
+50208,22375
+50209,81796
+50210,44744
+50211,50341
+50212,55624
+50213,60786
+50214,60786
+50215,25113
+50216,23644
+50217,36868
+50218,80976
+50219,68237,21770
+50220,41588
+50221,77988
+50222,80977
+50223,43107
+50224,69880
+50225,72055
+50226,74495
+50227,62853
+50228,55015
+50229,79547
+50230,53628
+50231,82056
+50232,48283
+50233,44232
+50234,43766
+50235,29167
+50236,33432
+50237,66756
+50238,45813
+50239,51068
+50240,32718
+50241,47173
+50242,72055
+50243,47492
+50244,50231
+50245,74640
+50246,68128
+50247,45077
+50248,41899
+50249,39049
+50250,37352
+50251,51068
+50252,53848
+50253,61335
+50254,54825
+50255,61161
+50256,23748
+50257,34283
+50258,35429
+50259,30988
+50260,19228,38879
+50261,61331
+50262,50261
+50263,73644
+50264,29687
+50265,69633,50266
+50266,73838
+50267,32792
+50268,70629
+50269,18728
+50270,48126
+50271,57158
+50272,41917
+50273,71754
+50274,40784
+50275,46826
+50276,51319
+50277,81626
+50278,27738
+50279,62187
+50280,49155
+50281,63424
+50282,79373
+50283,56894
+50284,28304
+50285,70392
+50286,72323
+50287,28079
+50288,64111
+50289,74568
+50290,6854
+50291,81227
+50292,71398
+50293,81482
+50294,77641
+50295,65006
+50296,57333
+50297,57333
+50298,26575
+50299,19384
+50300,38822
+50301,43966
+50302,75677
+50303,54554
+50304,43817
+50305,65526
+50306,56181
+50307,27688
+50308,42536
+50309,71859
+50310,68668
+50311,70187
+50312,52259
+50313,32373
+50314,58587
+50315,63316
+50316,61355
+50317,21631
+50318,21631
+50319,73838
+50320,21314
+50321,32683
+50322,40475
+50323,78561
+50324,40340
+50325,59379
+50326,50323
+50327,61355
+50328,50332
+50329,33793
+50330,32457
+50331,1444
+50332,50341
+50333,51238
+50334,48210
+50335,57113
+50336,62144
+50337,65481
+50338,73837
+50339,49444
+50340,50296
+50341,46251
+50342,68175
+50343,61670
+50344,58803
+50345,42518
+50346,21444
+50347,35480,40080
+50348,42181
+50349,42207
+50350,58798
+50351,31039
+50352,79552
+50353,70842
+50354,59541
+50355,80483
+50356,54562
+50357,70622
+50358,78703
+50359,30882
+50360,39130
+50361,32222
+50362,23183
+50363,50769
+50364,51058
+50365,18874
+50366,68236
+50367,75019
+50368,75552
+50369,59307
+50370,78647
+50371,81193
+50372,36998
+50373,21115
+50374,47746
+50375,12335
+50376,60623
+50377,32776
+50378,20755
+50379,37179
+50380,77641
+50381,19069
+50382,61705
+50383,50273
+50384,61255
+50385,52249
+50386,60933
+50387,71398
+50388,69235
+50389,54082
+50390,36268
+50391,31991
+50392,31991
+50393,51475
+50394,72122
+50395,76231
+50396,51928
+50397,29917
+50398,40473
+50399,49298
+50400,36992
+50401,50394
+50402,45851
+50403,37858
+50404,29144
+50405,50406
+50406,47805
+50407,81791
+50408,35944
+50409,50398
+50410,31618
+50411,38807
+50412,37918
+50413,64383
+50414,41899
+50415,57861
+50416,50398
+50417,50489
+50418,27997
+50419,59605
+50420,62100
+50421,61493
+50422,70110
+50423,76229
+50424,39599
+50425,81482
+50426,31417
+50427,37178
+50428,20755
+50429,30670
+50430,70549
+50431,26898
+50432,45813
+50433,81488
+50434,52658
+50435,32155
+50436,29526
+50437,32660
+50438,47908
+50439,48461
+50440,48679
+50441,60158
+50442,60216
+50443,61976
+50444,26769
+50445,60343
+50446,81961
+50447,46285
+50448,24470
+50449,41586
+50450,70548
+50451,52654
+50452,43247
+50453,55756
+50454,55756,59422
+50455,6615
+50456,30051
+50457,58287
+50458,34439
+50459,20743
+50460,78191
+50461,48319
+50462,28774
+50463,21703
+50464,79282
+50465,18728
+50466,71937
+50467,48126
+50468,48126
+50469,28091
+50470,53701
+50471,57451
+50472,73147
+50473,48126
+50474,27730,72057
+50475,59474
+50476,59475
+50477,67577
+50478,58004
+50479,39018
+50480,39018
+50481,71009
+50482,23537
+50483,37505
+50484,39018
+50485,50789
+50486,21618
+50487,36540
+50488,66985,39423
+50489,55314
+50490,43313
+50491,66985
+50492,64757
+50493,80618
+50494,79874
+50495,19228
+50496,46256
+50497,37802
+50498,48772
+50499,79552
+50500,80009
+50501,44870
+50502,34307
+50503,66690
+50504,19679
+50505,21510
+50506,22270
+50507,60166
+50508,17273
+50509,39318
+50510,27964
+50511,51901
+50512,73573
+50513,49684
+50514,68258
+50515,57893
+50516,46767
+50517,24726
+50518,21959
+50519,21632
+50520,41119
+50521,66542
+50522,62321
+50523,60385
+50524,76691
+50525,54044
+50526,34978
+50527,45521
+50528,46707
+50529,76657
+50530,31283
+50531,38098
+50532,42492
+50533,69118
+50534,59414
+50535,45921
+50536,79354
+50537,25088
+50538,51892
+50539,71446
+50540,56587
+50541,38992
+50542,80258
+50543,70746
+50544,26302
+50545,69549
+50546,81643
+50547,40908
+50548,29968
+50549,36708
+50550,70568
+50551,51182
+50552,20723
+50553,68342
+50554,51468
+50555,51167
+50556,63657
+50557,9469
+50558,25727
+50559,68721
+50560,21620
+50561,41444
+50562,57963
+50563,30891
+50564,39088
+50565,79009
+50566,71716
+50567,60216
+50568,44603
+50569,58579
+50570,19228
+50571,55374
+50572,21545
+50573,63363
+50574,63363
+50575,61355
+50576,70515
+50577,50579
+50578,80197
+50579,81647
+50580,42225,80897
+50581,45021
+50582,34859
+50583,79114
+50584,46460
+50585,20690
+50586,81738
+50587,50585
+50588,57289
+50589,70033
+50590,77641
+50591,67946
+50592,19935
+50593,79848
+50594,48943
+50595,70675
+50596,59872
+50597,70033
+50598,63883
+50599,70033
+50600,23285
+50601,38792
+50602,50875
+50603,30391
+50604,31158
+50605,31158
+50606,50764
+50607,71511
+50608,18868
+50609,37896
+50610,19649
+50611,40240
+50612,50604
+50613,50604
+50614,50604
+50615,50604
+50616,50604
+50617,50604
+50618,10831
+50619,50604
+50620,50604
+50621,10831
+50622,50603
+50623,50604
+50624,62455
+50625,43872
+50626,73863
+50627,64142
+50628,50701
+50629,47479
+50630,34285
+50631,39818
+50632,25555
+50633,28438
+50634,41917
+50635,42201
+50636,28780
+50637,63061
+50638,63144
+50639,39813
+50640,26900
+50641,25700
+50642,63863
+50643,31245
+50644,56358
+50645,23313
+50646,36755
+50647,50660
+50648,81433
+50649,65581
+50650,45777
+50651,73837
+50652,21745
+50653,26884
+50654,49883
+50655,59375
+50656,31606
+50657,39199
+50658,58136
+50659,34827
+50660,30865
+50661,29911
+50662,34772
+50663,58106
+50664,46680
+50665,66124
+50666,28432
+50667,47432
+50668,81781
+50669,28801
+50670,51523
+50671,56179
+50672,20698
+50673,68352
+50674,62144
+50675,19462
+50676,50705
+50677,78236
+50678,54082
+50679,68809
+50680,56589
+50681,73762
+50682,44005
+50683,38564
+50684,73466
+50685,81350
+50686,19036,36872
+50687,48319
+50688,34647
+50689,29235
+50690,30352
+50691,43362
+50692,61519
+50693,58137
+50694,59867
+50695,47487
+50696,69642
+50697,76657
+50698,77641
+50699,26072
+50700,42296
+50701,60216
+50702,73018
+50703,18721
+50704,25094
+50705,19228
+50706,37999
+50707,37166
+50708,47931
+50709,19234
+50710,19231
+50711,64275
+50712,65662
+50713,20404
+50714,70033
+50715,68808
+50716,69634
+50717,61259
+50718,23679
+50719,32023
+50720,30514
+50721,23748
+50722,24726
+50723,26239
+50724,45730
+50725,61251
+50726,39428
+50727,51091
+50728,51092
+50729,48318
+50730,54943
+50731,77105
+50732,68345
+50733,56183
+50734,72518
+50735,46408
+50736,50717
+50737,27624
+50738,51790
+50739,72575
+50740,51523
+50741,78678
+50742,21938
+50743,71418
+50744,46267
+50745,35482
+50746,54285
+50747,66408
+50748,48154
+50749,31245
+50750,69681
+50751,75860
+50752,76429
+50753,19171
+50754,47812
+50755,25088
+50756,35735
+50757,77471
+50758,49409
+50759,33928
+50760,68724
+50761,81907
+50762,63195
+50763,28954
+50764,63141
+50765,64949
+50766,60216
+50767,35105
+50768,51204
+50769,23258
+50770,43997
+50771,35626
+50772,31690
+50773,63316
+50774,76664
+50775,38381
+50776,75784,46251
+50777,66154
+50778,53520
+50779,24428
+50780,37237
+50781,67819
+50782,70010
+50783,73009
+50784,20759
+50785,36046
+50786,39676
+50787,29731
+50788,29731
+50789,47655
+50790,68613
+50791,39049
+50792,44480
+50793,39971
+50794,49059
+50795,70033
+50796,61901
+50797,81161
+50798,70033
+50799,81602
+50800,43986
+50801,60177
+50802,76663
+50803,74081
+50804,47666
+50805,39676
+50806,51216
+50807,69444
+50808,69439
+50809,80380
+50810,60506,37736
+50811,72829
+50812,43516
+50813,37204
+50814,29737,7764
+50815,75552
+50816,19311
+50817,65075
+50818,62713
+50819,29658
+50820,71961
+50821,62145
+50822,69908
+50823,66507
+50824,65201
+50825,64619
+50826,51473
+50827,81796
+50828,70111
+50829,20812
+50830,40986
+50831,79259
+50832,20079
+50833,38878
+50834,68857
+50835,35386
+50836,76546
+50837,36469
+50838,20960
+50839,62144
+50840,78238
+50841,44988
+50842,39112
+50843,61089
+50844,73018
+50845,45024
+50846,60216
+50847,22093
+50848,32132
+50849,62142
+50850,77277
+50851,58395
+50852,42306
+50853,42312
+50854,45733
+50855,79355
+50856,40538
+50857,61789
+50858,65787
+50859,41005
+50860,33500
+50861,51408
+50862,51408
+50863,74488
+50864,29917
+50865,35737
+50866,49200
+50867,52035
+50868,50869
+50869,38699
+50870,50869
+50871,50237,50860
+50872,63061
+50873,24749
+50874,30187
+50875,35926
+50876,36840
+50877,39556
+50878,46274
+50879,62409
+50880,62934
+50881,63139
+50882,63152
+50883,65928
+50884,60240
+50885,66551
+50886,34211
+50887,28386
+50888,73018
+50889,75015
+50890,38883
+50891,31363
+50892,50627
+50893,44440
+50894,37674
+50895,23896
+50896,35346
+50897,62145
+50898,73495
+50899,55952
+50900,42225
+50901,31070
+50902,21938
+50903,54440
+50904,71493
+50905,43810
+50906,29542
+50907,19172
+50908,25709
+50909,50912
+50910,50628,61795
+50911,62145
+50912,21886
+50913,50627
+50914,19171
+50915,51814
+50916,72807
+50917,61614
+50918,79259
+50919,45813,29780
+50920,55905
+50921,67883
+50922,63471
+50923,71968
+50924,66124
+50925,76663
+50926,29928
+50927,70944
+50928,78179
+50929,417
+50930,39996
+50931,63348
+50932,45406
+50933,43476
+50934,66862
+50935,33455
+50936,69144
+50937,29502
+50938,65778
+50939,29503
+50940,21745
+50941,38477
+50942,45812
+50943,45813
+50944,31495
+50945,45118
+50946,40564
+50947,43136
+50948,44460
+50949,49391
+50950,33939
+50951,60733
+50952,55014
+50953,40564
+50954,27150
+50955,59801
+50956,65977
+50957,71501
+50958,66592
+50959,71500
+50960,40734
+50961,50955
+50962,41735
+50963,64989
+50964,44013
+50965,57594
+50966,81482
+50967,77641
+50968,7794
+50969,62884
+50970,77431
+50971,48803
+50972,35676
+50973,40063
+50974,51191
+50975,38910
+50976,41862,60604,35254
+50977,68808
+50978,36802
+50979,76892
+50980,53964
+50981,65795
+50982,28548
+50983,58144
+50984,37479
+50985,58004
+50986,27274
+50987,27374
+50988,20760
+50989,47650
+50990,73837
+50991,45668
+50992,73398
+50993,23206
+50994,50917
+50995,50918
+50996,50919
+50997,71719
+50998,15541
+50999,41899
+51000,24084
+51001,45813
+51002,81153
+51003,78014
+51004,51400
+51005,47455
+51006,45813
+51007,51000
+51008,42225
+51009,58381
+51010,70091
+51011,77641
+51012,48894
+51013,54218
+51014,24287
+51015,82169
+51016,38005
+51017,38006
+51018,48318
+51019,19629
+51020,50205
+51021,37557
+51022,51023
+51023,48084
+51024,55866
+51025,50459
+51026,41657
+51027,53897
+51028,53894
+51029,6955
+51030,37527,39674
+51031,72290
+51032,72408
+51033,60385
+51034,42241
+51035,36129
+51036,46409
+51037,46410
+51038,59549
+51039,20944
+51040,28025
+51041,58088
+51042,26898
+51043,40752
+51044,28220
+51045,43291
+51046,49929
+51047,50059
+51048,57736
+51049,63103
+51050,62473
+51051,66999
+51052,68160
+51053,53275
+51054,58088
+51055,80132
+51056,81342
+51057,81996
+51058,75552
+51059,68242
+51060,58583
+51061,69276
+51062,19656
+51063,36137
+51064,42429
+51065,77085
+51066,58583
+51067,51696
+51068,28591
+51069,76054,35925
+51070,22420
+51071,25202
+51072,51079
+51073,27781
+51074,35924,32807
+51075,51069
+51076,51204
+51077,49945
+51078,81796
+51079,68831
+51080,51079
+51081,75647
+51082,62210
+51083,58797
+51084,73005
+51085,22032
+51086,38280
+51087,33324
+51088,50875
+51089,50875
+51090,57581
+51091,45813
+51092,67601
+51093,59605
+51094,11177
+51095,14521
+51096,38366
+51097,72416
+51098,70033
+51099,27136
+51100,24816,41500
+51101,24823
+51102,70651
+51103,37762
+51104,39014
+51105,24823
+51106,55524
+51107,2623
+51108,36602
+51109,37011
+51110,55686
+51111,65109
+51112,60756
+51113,37609
+51114,20238
+51115,61134
+51116,47948
+51117,48648
+51118,64490
+51119,52499
+51120,23021
+51121,78152
+51122,45067
+51123,51901
+51124,19462
+51125,48793
+51126,53654
+51127,26731
+51128,45170
+51129,41479
+51130,55952
+51131,48399
+51132,60417
+51133,28536
+51134,66674
+51135,39578
+51136,41650
+51137,67053
+51138,28615
+51139,31470
+51140,50369
+51141,37476
+51142,35439
+51143,38030
+51144,53607
+51145,69030
+51146,51562
+51147,31158
+51148,30985,51558
+51149,81787
+51150,51567
+51151,38473
+51152,30267
+51153,51523
+51154,62178
+51155,74610
+51156,22656
+51157,48445
+51158,28548
+51159,79608
+51160,34118
+51161,36496
+51162,45689
+51163,65759
+51164,34263
+51165,30990
+51166,19438
+51167,19438
+51168,61789
+51169,37123
+51170,76890
+51171,42475
+51172,36999
+51173,22122
+51174,18969
+51175,76139
+51176,23891
+51177,19497
+51178,60448
+51179,61789
+51180,22665
+51181,41516
+51182,41516
+51183,27276
+51184,63568
+51185,69444
+51186,63144
+51187,62145
+51188,30391
+51189,26298
+51190,66953
+51191,34646
+51192,30391
+51193,27503
+51194,27929
+51195,40077
+51196,63187
+51197,67161
+51198,46901
+51199,58281,79171
+51200,81781
+51201,68475
+51202,51182
+51203,51182
+51204,50875
+51205,22274
+51206,57190
+51207,61335
+51208,57223
+51209,66178
+51210,57573
+51211,31690
+51212,39556
+51213,68230
+51214,47552
+51215,70651
+51216,41877
+51217,51215
+51218,37154
+51219,50627
+51220,77147
+51221,27167
+51222,45813
+51223,61901
+51224,66965
+51225,77012
+51226,53624
+51227,65228
+51228,34154
+51229,62144
+51230,39276
+51231,47432
+51232,66124
+51233,61867
+51234,14318
+51235,71595
+51236,70426
+51237,39748
+51238,68843
+51239,21703
+51240,62145
+51241,30681
+51242,30680
+51243,50630
+51244,30447
+51245,30681
+51246,42446
+51247,37352
+51248,30681
+51249,76664
+51250,76664
+51251,23780
+51252,23780
+51253,58161
+51254,60216
+51255,55356
+51256,51807
+51257,76664
+51258,38794
+51259,38218
+51260,38218
+51261,51275
+51262,21672
+51263,44474
+51264,58161
+51265,38380
+51266,20984
+51267,41103
+51268,25099
+51269,27391
+51270,48445
+51271,51275
+51272,27858
+51273,57562
+51274,59811
+51275,40658,65995
+51276,64589
+51277,56182
+51278,62985
+51279,53021
+51280,75782
+51281,24807
+51282,41105
+51283,68554
+51284,22128
+51285,74486
+51286,51475
+51287,51475
+51288,31830
+51289,65994
+51290,27565
+51291,34924
+51292,50652
+51293,19755
+51294,36531
+51295,63363
+51296,80438
+51297,63775
+51298,34924
+51299,66676
+51300,31447
+51301,22105
+51302,74081
+51303,78387
+51304,60572
+51305,28591
+51306,22900
+51307,76345
+51308,24084
+51309,41607
+51310,68168
+51311,79749
+51312,62149
+51313,48349
+51314,63642
+51315,31245
+51316,71754
+51317,47491
+51318,79746
+51319,19182
+51320,35314
+51321,80101
+51322,19279
+51323,25862
+51324,80512
+51325,50201
+51326,25862
+51327,26118
+51328,37383
+51329,81369
+51330,32775
+51331,35130
+51332,40021
+51333,25598
+51334,25598
+51335,81750
+51336,63017
+51337,22000
+51338,74010
+51339,60538
+51340,54263
+51341,25598
+51342,22000
+51343,61679
+51344,60521
+51345,65509
+51346,22000
+51347,35665
+51348,35737
+51349,37450
+51350,25598
+51351,22000
+51352,34731
+51353,34924
+51354,19837
+51355,39556
+51356,77521
+51357,53163
+51358,45620
+51359,33479
+51360,21200
+51361,48551
+51362,40403
+51363,48030
+51364,79087
+51365,80612
+51366,22052
+51367,40489
+51368,60216
+51369,31278
+51370,23676
+51371,69744
+51372,43245
+51373,25598
+51374,81750
+51375,63017
+51376,24607
+51377,51523
+51378,61874
+51379,30021,46907
+51380,81549
+51381,61263
+51382,20690
+51383,81482
+51384,61260
+51385,49797
+51386,49797
+51387,63025
+51388,70375
+51389,60715
+51390,30952
+51391,39578
+51392,18530
+51393,70033
+51394,16323
+51395,26318
+51396,55080
+51397,55081
+51398,70990
+51399,66442
+51400,51395
+51401,51395
+51402,58733
+51403,51395
+51404,69666
+51405,69667
+51406,50206
+51407,37167
+51408,38984
+51409,59306
+51410,21399
+51411,25706
+51412,55692,22351
+51413,46602
+51414,80932
+51415,28547
+51416,56492
+51417,47505
+51418,47505
+51419,73837
+51420,29502
+51421,29503
+51422,49391
+51423,41735
+51424,49772
+51425,50273
+51426,63248
+51427,79418
+51428,66785,68859
+51429,39676
+51430,80547
+51431,80257
+51432,5513
+51433,38982
+51434,38910
+51435,25495
+51436,47908
+51437,47908
+51438,76658
+51439,35433
+51440,65638
+51441,22205
+51442,30937
+51443,37190
+51444,47898
+51445,80106
+51446,29418
+51447,71997
+51448,36981
+51449,75926
+51450,48894
+51451,27405
+51452,67408
+51453,69677
+51454,68676
+51455,79953
+51456,57187
+51457,64833
+51458,38369
+51459,60870
+51460,20977
+51461,48319
+51462,77641
+51463,71311
+51464,69543
+51465,37448
+51466,54430
+51467,53175
+51468,51894
+51469,41249
+51470,41249
+51471,60259
+51472,76054
+51473,53175
+51474,27701
+51475,21745
+51476,31362
+51477,35154
+51478,53958
+51479,66727
+51480,36157
+51481,70429
+51482,77871
+51483,41048
+51484,62965
+51485,49027
+51486,41053
+51487,19374
+51488,51466
+51489,58168
+51490,34305
+51491,36840
+51492,81763
+51493,59542
+51494,59542
+51495,51468
+51496,81763
+51497,21511
+51498,39408
+51499,81763
+51500,59542
+51501,51470
+51502,51472
+51503,51468
+51504,51470
+51505,76258
+51506,30682
+51507,58168
+51508,41107
+51509,62957
+51510,74281
+51511,72038
+51512,72601
+51513,64667
+51514,37712
+51515,42434
+51516,18910
+51517,19982
+51518,38196
+51519,70392
+51520,57942
+51521,21282
+51522,65614
+51523,78703
+51524,53206
+51525,41055
+51526,22542
+51527,37921
+51528,37920
+51529,30514
+51530,74599
+51531,41055
+51532,62142
+51533,51469
+51534,39049
+51535,80897
+51536,59020
+51537,36387
+51538,40864
+51539,60744
+51540,59434
+51541,57572
+51542,56488
+51543,51469
+51544,44848
+51545,41980
+51546,80284
+51547,74903
+51548,67703
+51549,68364
+51550,78606
+51551,23946
+51552,50359
+51553,31520
+51554,21703
+51555,79282
+51556,62072
+51557,59475
+51558,68290
+51559,60216
+51560,30978
+51561,60073
+51562,46892
+51563,46042
+51564,47402
+51565,65691
+51566,68280
+51567,46901
+51568,18869
+51569,52157
+51570,25119
+51571,48436
+51572,21276
+51573,63424
+51574,51523
+51575,48403
+51576,29418
+51577,39423
+51578,51579
+51579,31443
+51580,53656
+51581,39424
+51582,48218
+51583,37192
+51584,42429
+51585,22128
+51586,43692
+51587,40068
+51588,62948
+51589,34771
+51590,61918
+51591,57732
+51592,32582
+51593,49945
+51594,57637
+51595,57594
+51596,39049
+51597,73222
+51598,39767
+51599,39049
+51600,45826
+51601,24084
+51602,28132
+51603,45813
+51604,45813
+51605,71308
+51606,46962
+51607,41114
+51608,33242,51601
+51609,51601
+51610,51601
+51611,68363
+51612,61260
+51613,38920,21743
+51614,53133
+51615,52777
+51616,57640
+51617,39676
+51618,34016
+51619,65217
+51620,58088
+51621,38053
+51622,61317
+51623,74939
+51624,52544
+51625,53717
+51626,54059
+51627,76054
+51628,78160
+51629,59549
+51630,31423
+51631,67883
+51632,77424
+51633,79458
+51634,51622
+51635,69123
+51636,52777
+51637,19536
+51638,60391
+51639,42246,47047
+51640,19936
+51641,43364
+51642,40793
+51643,40794
+51644,31520
+51645,72970
+51646,19771,33194
+51647,21905
+51648,71557
+51649,25119
+51650,51643
+51651,35197
+51652,34859
+51653,35130
+51654,57144
+51655,56771,33194
+51656,58630
+51657,71269
+51658,79874
+51659,44615
+51660,75917
+51661,39811
+51662,38637
+51663,51642
+51664,26103
+51665,19936
+51666,51204
+51667,8407
+51668,10337
+51669,17272
+51670,50872
+51671,32
+51672,39049
+51673,32323
+51674,72055
+51675,71961
+51676,43845
+51677,33889
+51678,21826
+51679,33885
+51680,79915
+51681,68831
+51682,69123
+51683,80239
+51684,75477
+51685,54950
+51686,38475
+51687,48084
+51688,58170
+51689,59462
+51690,19311
+51691,9828
+51692,41743
+51693,37179
+51694,54181
+51695,70627
+51696,48629
+51697,47814
+51698,35922
+51699,31208
+51700,19655
+51701,81789
+51702,32964
+51703,51705
+51704,66321
+51705,46901
+51706,60216
+51707,48485
+51708,81789
+51709,81789
+51710,63141
+51711,51705
+51712,54568
+51713,59549
+51714,54082
+51715,27479,52762
+51716,62948
+51717,36795
+51718,62967
+51719,61243
+51720,62968
+51721,35863
+51722,35858
+51723,66814
+51724,74146
+51725,50649
+51726,18728
+51727,62146
+51728,54285
+51729,59376
+51730,63061
+51731,64180
+51732,19072
+51733,59020
+51734,38600
+51735,66377,78595
+51736,67213
+51737,20751
+51738,31825
+51739,24188
+51740,70900
+51741,70987
+51742,53439
+51743,75566
+51744,22230
+51745,23103
+51746,20883
+51747,45869
+51748,26106
+51749,79467
+51750,60797
+51751,37279
+51752,40089,54605
+51753,82130
+51754,23242
+51755,22850
+51756,58579
+51757,66407
+51758,70504
+51759,70557
+51760,70725
+51761,76104
+51762,76839,54605
+51763,64129
+51764,64130
+51765,68668
+51766,76138
+51767,22269
+51768,66690
+51769,22455
+51770,24349
+51771,25099
+51772,51825
+51773,57289
+51774,73056
+51775,56399
+51776,70651
+51777,19228
+51778,20772
+51779,60216
+51780,48210
+51781,79189
+51782,48590
+51783,33751
+51784,51786,27497
+51785,46599
+51786,35534
+51787,40807
+51788,67972
+51789,52552
+51790,26192
+51791,78664
+51792,27562
+51793,30937
+51794,72700
+51795,37712
+51796,61159
+51797,41926
+51798,31029
+51799,59970
+51800,21620
+51801,54724
+51802,74146
+51803,46827
+51804,26827
+51805,66953
+51806,66954
+51807,81004
+51808,78059
+51809,79963
+51810,50875
+51811,74234
+51812,74146
+51813,55586
+51814,67968
+51815,53275
+51816,58088
+51817,71398
+51818,38529
+51819,61182
+51820,33645
+51821,47908
+51822,37412
+51823,37405
+51824,47908
+51825,80613
+51826,51440
+51827,64846
+51828,80405
+51829,22128
+51830,64846
+51831,45039
+51832,73445
+51833,41005
+51834,25770
+51835,71446
+51836,34085
+51837,21273
+51838,22274
+51839,21673
+51840,57562
+51841,81578
+51842,27405
+51843,81578
+51844,45813
+51845,57554
+51846,66260
+51847,63363
+51848,61577
+51849,24314
+51850,59970
+51851,38789
+51852,62456
+51853,60258
+51854,61260
+51855,52097
+51856,25115
+51857,63218
+51858,51856
+51859,18728
+51860,50717
+51861,72323
+51862,45813
+51863,44484
+51864,60899
+51865,63600
+51866,73207
+51867,69677
+51868,34108
+51869,68623
+51870,72503
+51871,77552
+51872,73207
+51873,51867
+51874,75411
+51875,35557
+51876,70629
+51877,69544
+51878,51856
+51879,63659
+51880,20647
+51881,20650
+51882,31117
+51883,19649
+51884,26980
+51885,43815
+51886,43809
+51887,68974
+51888,58283
+51889,73650
+51890,56871
+51891,34867
+51892,62938
+51893,81647
+51894,57333
+51895,69028
+51896,74599
+51897,48270
+51898,50215
+51899,51649
+51900,53660
+51901,39423
+51902,81752
+51903,44792
+51904,66154
+51905,37776
+51906,42337
+51907,58023
+51908,39556
+51909,75018
+51910,59425
+51911,47709
+51912,39423
+51913,66953
+51914,27781
+51915,63416
+51916,61474
+51917,70629
+51918,57242
+51919,66060
+51920,80207
+51921,71039
+51922,72866
+51923,53109
+51924,52509
+51925,49113
+51926,20745
+51927,54837
+51928,55347
+51929,68990
+51930,50919
+51931,28091
+51932,72834
+51933,70516
+51934,69330
+51935,59419
+51936,70516
+51937,81482
+51938,69891
+51939,77641
+51940,61956
+51941,34641
+51942,72892
+51943,54867
+51944,60168
+51945,42341
+51946,46782
+51947,36868
+51948,75784
+51949,66039
+51950,46782,18958
+51951,20057
+51952,39427
+51953,71446
+51954,61080
+51955,40702
+51956,40702
+51957,69682
+51958,25223
+51959,81482
+51960,81801
+51961,81801
+51962,53624
+51963,26777
+51964,31991
+51965,23946
+51966,80668
+51967,38844
+51968,68059
+51969,65204
+51970,22765
+51971,68613
+51972,70016
+51973,21408
+51974,81601
+51975,60453
+51976,75020
+51977,62935
+51978,30824
+51979,75020
+51980,52832
+51981,55596
+51982,37478
+51983,57927
+51984,63192
+51985,39225
+51986,62165
+51987,63284
+51988,65691
+51989,77051
+51990,64142
+51991,38807
+51992,60450
+51993,39460
+51994,68030
+51995,49358
+51996,74489
+51997,63494
+51998,21628
+51999,53338
+52000,77306
+52001,47413
+52002,35682
+52003,21507
+52004,52990
+52005,38630
+52006,81482
+52007,24607
+52008,33500
+52009,25115
+52010,33513
+52011,25115
+52012,36129
+52013,33922
+52014,72667
+52015,27167
+52016,33069
+52017,70033
+52018,61614
+52019,21025
+52020,48980
+52021,47991
+52022,53276
+52023,62509
+52024,79467
+52025,58579
+52026,31292
+52027,23748
+52028,44030
+52029,79640
+52030,32325
+52031,37873
+52032,12337
+52033,53867
+52034,23691
+52035,25256
+52036,28418
+52037,26980
+52038,35878
+52039,44697
+52040,49343
+52041,50439
+52042,48874
+52043,78606
+52044,39846
+52045,51523
+52046,78020
+52047,76664
+52048,67853
+52049,31647
+52050,42075
+52051,70814
+52052,30391
+52053,76664
+52054,27215
+52055,22414
+52056,77985
+52057,78578
+52058,64527
+52059,41743
+52060,37179
+52061,25046
+52062,25522
+52063,21434
+52064,60216
+52065,52075
+52066,57680
+52067,52781
+52068,45064
+52069,76236
+52070,23693
+52071,34783
+52072,20723
+52073,81974
+52074,50976
+52075,36802
+52076,60534
+52077,80522
+52078,36800
+52079,32457
+52080,36055
+52081,39767
+52082,52288
+52083,21218
+52084,69123
+52085,55170
+52086,68652
+52087,20690
+52088,54694
+52089,20690
+52090,80253
+52091,62190
+52092,73838
+52093,52084
+52094,76059
+52095,47432
+52096,42371
+52097,70386
+52098,29833
+52099,40115
+52100,63187
+52101,48708
+52102,40625
+52103,25710
+52104,20455
+52105,49997
+52106,77051
+52107,20307
+52108,46268
+52109,20745
+52110,60216
+52111,81601
+52112,31023
+52113,71102
+52114,71103
+52115,78772
+52116,47743
+52117,55485
+52118,55485
+52119,20226
+52120,74067
+52121,45813
+52122,73395
+52123,61541
+52124,22004
+52125,37179
+52126,41743
+52127,23925
+52128,41877
+52129,81703
+52130,72210
+52131,22271
+52132,31638
+52133,72027
+52134,69600
+52135,52138
+52136,79973
+52137,77995
+52138,59286
+52139,42076
+52140,31647
+52141,73632
+52142,40064
+52143,34175
+52144,77444
+52145,38793
+52146,39152
+52147,35433
+52148,74275
+52149,28530
+52150,64846
+52151,34646
+52152,27086
+52153,77277
+52154,80273
+52155,9643
+52156,76877
+52157,65795
+52158,18951
+52159,42102
+52160,25022
+52161,80324
+52162,80324
+52163,33954
+52164,62146
+52165,70033
+52166,49835
+52167,77976
+52168,37422
+52169,32555
+52170,50215
+52171,30300
+52172,66953
+52173,43264
+52174,52175
+52175,29928
+52176,52175
+52177,52175
+52178,45000
+52179,48318
+52180,35359
+52181,29984
+52182,68330
+52183,70746
+52184,81227
+52185,45812
+52186,45813
+52187,51625
+52188,68352
+52189,37686
+52190,57332
+52191,69444
+52192,56655
+52193,59452
+52194,61026
+52195,20282
+52196,49600
+52197,65699
+52198,71314
+52199,44013
+52200,49997
+52201,60235
+52202,52458
+52203,53239
+52204,71395
+52205,71595
+52206,73495
+52207,35930
+52208,59286
+52209,60216
+52210,36052
+52211,60216
+52212,60932
+52213,49802
+52214,36505
+52215,52189
+52216,34362
+52217,19808
+52218,56399
+52219,24961
+52220,65424
+52221,51630
+52222,35130
+52223,54446
+52224,41247
+52225,64533
+52226,40020
+52227,35130
+52228,45042
+52229,80325
+52230,16022
+52231,23537
+52232,18854
+52233,25727
+52234,30588
+52235,38836
+52236,64513
+52237,46285
+52238,61075
+52239,79711
+52240,34657
+52241,73018
+52242,76546
+52243,28851
+52244,23948
+52245,25496
+52246,29626
+52247,76062
+52248,34154
+52249,49149,21743
+52250,51435
+52251,50649
+52252,66109
+52253,66108
+52254,71019
+52255,78579
+52256,34209
+52257,55493
+52258,55601
+52259,56163
+52260,77666
+52261,70320
+52262,45632
+52263,34362
+52264,71058
+52265,52762
+52266,74500
+52267,52189
+52268,39809
+52269,27167
+52270,39725
+52271,46268
+52272,65481
+52273,74081
+52274,53656
+52275,31245
+52276,21276
+52277,67845
+52278,20757
+52279,60417
+52280,60417
+52281,52159
+52282,64738
+52283,51701
+52284,30265
+52285,25022
+52286,37165
+52287,67570
+52288,79608
+52289,63218
+52290,81746
+52291,70776
+52292,70778
+52293,27698
+52294,30954
+52295,27698
+52296,25046
+52297,76825
+52298,41119
+52299,61848
+52300,80162
+52301,27021
+52302,71594
+52303,71595
+52304,22561
+52305,21703
+52306,72212
+52307,61468
+52308,56451
+52309,28260
+52310,79282
+52311,79429
+52312,26302
+52313,73476
+52314,77287
+52315,49079
+52316,50117
+52317,39122
+52318,81647
+52319,56451
+52320,28091
+52321,52330
+52322,51349
+52323,28132
+52324,51319
+52325,52327
+52326,21770
+52327,60604
+52328,64471
+52329,64472
+52330,51349
+52331,51349
+52332,1230
+52333,74192
+52334,59645
+52335,18728
+52336,50105
+52337,75511
+52338,68364
+52339,52338
+52340,67951
+52341,48313
+52342,26944
+52343,70333
+52344,32755
+52345,33927
+52346,37104
+52347,71859
+52348,51468
+52349,55151
+52350,81906
+52351,27649
+52352,70091
+52353,61793
+52354,53593
+52355,30329,51833
+52356,53760
+52357,37041
+52358,37042
+52359,66132
+52360,53597
+52361,41279
+52362,57897
+52363,66103
+52364,79825
+52365,27497
+52366,72689
+52367,55497
+52368,25290
+52369,60744
+52370,67608
+52371,26944
+52372,76657
+52373,34199
+52374,81549
+52375,70651
+52376,52375,22305
+52377,52375,78106
+52378,34272
+52379,55347
+52380,55348
+52381,42003
+52382,22159
+52383,79991
+52384,45964
+52385,55263
+52386,43384
+52387,25949
+52388,62356
+52389,76664
+52390,28344
+52391,29194
+52392,68638
+52393,35557
+52394,43708
+52395,54082
+52396,32691
+52397,55768
+52398,47492
+52399,69702
+52400,18853
+52401,61431
+52402,48015
+52403,80510
+52404,51540
+52405,859
+52406,26669
+52407,52593
+52408,44914
+52409,42337
+52410,40752
+52411,27640
+52412,28064
+52413,46386
+52414,45730
+52415,54691
+52416,39281
+52417,55314
+52418,44013
+52419,51649
+52420,52431
+52421,36710
+52422,48126
+52423,19324
+52424,59549
+52425,37140
+52426,20679
+52427,20680
+52428,20683
+52429,48126
+52430,79214
+52431,20760
+52432,37162
+52433,52435
+52434,52438
+52435,51100
+52436,29201
+52437,21488
+52438,51099
+52439,24823
+52440,24823
+52441,74807
+52442,79328
+52443,33667
+52444,27136
+52445,58162
+52446,74939
+52447,62456
+52448,54833
+52449,55662
+52450,26155
+52451,81153
+52452,20997,79222
+52453,70392
+52454,45206
+52455,30514
+52456,59441
+52457,61621
+52458,76054
+52459,55766
+52460,38991
+52461,81781
+52462,19069
+52463,44923,36610,31759
+52464,74081
+52465,38366
+52466,54059
+52467,47770
+52468,31767
+52469,35723
+52470,58162
+52471,31241
+52472,58154
+52473,38053
+52474,20763
+52475,55324
+52476,79845
+52477,59615
+52478,57249
+52479,37181
+52480,52478
+52481,12335
+52482,33810
+52483,59475
+52484,59474
+52485,59476
+52486,31853
+52487,59286
+52488,72142
+52489,72715
+52490,57573
+52491,35557
+52492,71432
+52493,49944
+52494,59151
+52495,60216
+52496,58168
+52497,34924
+52498,58168
+52499,53648
+52500,37486
+52501,37486
+52502,25194
+52503,30188
+52504,22314
+52505,61796
+52506,51141
+52507,68448
+52508,81656
+52509,69408
+52510,52497
+52511,21751,31099
+52512,75019
+52513,52497
+52514,32691
+52515,79709
+52516,53306
+52517,72078
+52518,52803
+52519,64662
+52520,67703
+52521,68330
+52522,68038
+52523,69564
+52524,70692
+52525,39049
+52526,24651
+52527,25046
+52528,30062
+52529,39049
+52530,47699
+52531,81251
+52532,50125
+52533,18740
+52534,48403
+52535,79266
+52536,35136
+52537,18740
+52538,20635
+52539,59549
+52540,37124
+52541,37127
+52542,38576
+52543,24354
+52544,54967,58158
+52545,34985
+52546,60350
+52547,50737
+52548,33581
+52549,21477
+52550,39014,34354
+52551,39014
+52552,72451
+52553,33302
+52554,62034
+52555,33305
+52556,33851
+52557,26605
+52558,33765
+52559,52560
+52560,20689
+52561,79261
+52562,38991
+52563,39049
+52564,65770
+52565,59373
+52566,70426
+52567,31516
+52568,21398
+52569,52352
+52570,81462
+52571,81462
+52572,21765
+52573,29833
+52574,15526
+52575,32929
+52576,63117
+52577,74482
+52578,62744,63663
+52579,63670
+52580,73475
+52581,21729
+52582,64438
+52583,70471
+52584,63917
+52585,44480
+52586,74433
+52587,65795
+52588,70849
+52589,22065
+52590,42518
+52591,72623
+52592,60071
+52593,18720
+52594,60076
+52595,62145
+52596,49353
+52597,66785
+52598,54562
+52599,54082
+52600,24037
+52601,27479
+52602,47105
+52603,56758
+52604,74250
+52605,34924
+52606,31616
+52607,56872
+52608,30958
+52609,64734
+52610,20698
+52611,35351
+52612,35354
+52613,53870
+52614,39824
+52615,39877
+52616,52637
+52617,37444
+52618,48254
+52619,64623
+52620,51495
+52621,53986
+52622,40674
+52623,77091
+52624,59338
+52625,52605
+52626,43103
+52627,65213
+52628,66075
+52629,47510
+52630,73468
+52631,60264
+52632,52633
+52633,53870
+52634,22158
+52635,43126
+52636,48894
+52637,53619
+52638,60604
+52639,56179
+52640,42469
+52641,68285
+52642,47058
+52643,54130
+52644,41103
+52645,37450
+52646,52645
+52647,52614
+52648,78097
+52649,64846
+52650,38768
+52651,37513
+52652,47673
+52653,68285
+52654,47671
+52655,63314
+52656,65691
+52657,23095
+52658,20690
+52659,35096
+52660,35097
+52661,81255
+52662,81612
+52663,66916
+52664,32233
+52665,46186
+52666,19634
+52667,19634
+52668,71632
+52669,62853
+52670,62914
+52671,62922
+52672,67546
+52673,45946
+52674,81482
+52675,77641
+52676,36540
+52677,38084
+52678,43313
+52679,36043
+52680,22233
+52681,81161
+52682,40619
+52683,74572
+52684,58467
+52685,60936
+52686,57478
+52687,39676
+52688,72323
+52689,39621
+52690,68277
+52691,54043
+52692,31825
+52693,30883
+52694,30391
+52695,26730
+52696,66893
+52697,27408
+52698,41469
+52699,58107
+52700,70922
+52701,77357
+52702,62360
+52703,22684
+52704,25046
+52705,25574
+52706,36566
+52707,60216
+52708,19272
+52709,31616
+52710,52694
+52711,77493
+52712,19305
+52713,51677
+52714,76591
+52715,74823
+52716,34437
+52717,71655
+52718,60993
+52719,25113
+52720,77042
+52721,67565
+52722,29664
+52723,52734
+52724,34154
+52725,34992
+52726,52729
+52727,59542
+52728,67069
+52729,73650
+52730,81872
+52731,35196
+52732,50296
+52733,53369
+52734,67565
+52735,72518
+52736,41186
+52737,76337
+52738,74492
+52739,81808
+52740,21112
+52741,46782
+52742,36983
+52743,73863
+52744,30680
+52745,35480
+52746,69274
+52747,42446
+52748,75566
+52749,22452
+52750,34664
+52751,39414
+52752,59315
+52753,49687
+52754,50742
+52755,22850
+52756,51855
+52757,62648
+52758,54865
+52759,74231
+52760,57934
+52761,75902
+52762,77394
+52763,65707
+52764,57194
+52765,19636
+52766,50910
+52767,76388
+52768,57964
+52769,35922
+52770,62778
+52771,23628
+52772,65198
+52773,32799
+52774,62659
+52775,38782
+52776,38545
+52777,32246
+52778,80613
+52779,57333
+52780,31039
+52781,52523
+52782,70033
+52783,21920
+52784,74973
+52785,27175
+52786,27176
+52787,54562
+52788,59549
+52789,82163
+52790,82164
+52791,33178
+52792,60243
+52793,31245
+52794,56578
+52795,35490
+52796,70777
+52797,54771
+52798,63471
+52799,55294
+52800,60285
+52801,60216
+52802,20743
+52803,60216
+52804,22773
+52805,21525
+52806,46885
+52807,25245
+52808,69428
+52809,21001
+52810,76320
+52811,52803
+52812,81492
+52813,42503
+52814,46599,52802
+52815,47243
+52816,65955
+52817,28951,52803
+52818,58093
+52819,58183
+52820,65955
+52821,65957
+52822,49860
+52823,38385,20994
+52824,70033
+52825,52831
+52826,38566
+52827,19069
+52828,69410
+52829,53783
+52830,38566
+52831,45276
+52832,63187
+52833,81808
+52834,81807
+52835,39151
+52836,39151
+52837,33134
+52838,52831
+52839,35534
+52840,46003
+52841,22350
+52842,78160,52839
+52843,38566
+52844,50701
+52845,70717
+52846,38523
+52847,1923
+52848,36694
+52849,60604
+52850,38477
+52851,53783
+52852,52851
+52853,72437
+52854,44963
+52855,36635
+52856,22219
+52857,70033
+52858,10203
+52859,34316
+52860,35626
+52861,71023
+52862,57693
+52863,52857
+52864,27374
+52865,76989
+52866,62147
+52867,81808
+52868,81808
+52869,48445
+52870,43893
+52871,50201
+52872,54465
+52873,48202
+52874,54562
+52875,35432
+52876,54784
+52877,52773
+52878,79618
+52879,81808
+52880,71439
+52881,37317
+52882,33799
+52883,37179
+52884,56492
+52885,79432
+52886,39294
+52887,42539
+52888,82163
+52889,82164
+52890,38740
+52891,41743
+52892,26827
+52893,66873
+52894,34987
+52895,80510
+52896,37532
+52897,76192
+52898,56029
+52899,46436
+52900,74036
+52901,60216
+52902,52803
+52903,52803,52210
+52904,52803,19438
+52905,42097
+52906,29928
+52907,71493
+52908,39767
+52909,55236
+52910,80185
+52911,19629
+52912,46765
+52913,60216
+52914,19230
+52915,46899
+52916,66482
+52917,77280
+52918,56868
+52919,19376
+52920,71310
+52921,19492
+52922,69301
+52923,48584
+52924,41107
+52925,35399
+52926,62145
+52927,37191
+52928,78432
+52929,41955
+52930,17277
+52931,1584
+52932,68562
+52933,34771
+52934,81770
+52935,37571
+52936,57573
+52937,3599
+52938,29502
+52939,29503
+52940,36694
+52941,65133
+52942,30676
+52943,50875
+52944,35787
+52945,22268
+52946,48247
+52947,74990
+52948,47808
+52949,52950
+52950,29194
+52951,45813
+52952,66965
+52953,22500
+52954,44792
+52955,44792
+52956,38521
+52957,55347
+52958,57932
+52959,55489
+52960,54837
+52961,61238
+52962,53306
+52963,57106
+52964,12335
+52965,67675
+52966,54082
+52967,20174
+52968,20122
+52969,31058
+52970,19069
+52971,54562
+52972,20745
+52973,23741
+52974,23742
+52975,31616
+52976,29919
+52977,20690
+52978,37179
+52979,41743
+52980,37179
+52981,41743
+52982,20690
+52983,30153
+52984,46268
+52985,77012
+52986,19452
+52987,62145
+52988,68652
+52989,19549
+52990,48920
+52991,39324
+52992,70091
+52993,59475
+52994,27562,23628
+52995,69331
+52996,23620
+52997,50875
+52998,47631
+52999,21213
+53000,47944
+53001,34166
+53002,53477
+53003,60993
+53004,59020
+53005,70990
+53006,59020
+53007,77641
+53008,54837
+53009,48150
+53010,37477
+53011,60216
+53012,76210
+53013,67851
+53014,21814
+53015,53588
+53016,38477
+53017,50806
+53018,21922
+53019,36755
+53020,49797
+53021,63314
+53022,34470
+53023,38883
+53024,34470
+53025,35815
+53026,62762
+53027,38381
+53028,53033
+53029,66953
+53030,33388
+53031,66035
+53032,69274
+53033,46782
+53034,46377
+53035,24651
+53036,64921
+53037,69653
+53038,27296
+53039,69682
+53040,55952
+53041,68128
+53042,35108
+53043,73408
+53044,56532
+53045,41406
+53046,50649
+53047,74903
+53048,38115
+53049,44407
+53050,55388
+53051,67462
+53052,77552
+53053,43828
+53054,45017
+53055,20196
+53056,50104
+53057,38700
+53058,25256
+53059,26577
+53060,52773
+53061,81153
+53062,51174
+53063,58155
+53064,22302
+53065,81789
+53066,70033
+53067,65925
+53068,64965
+53069,63217
+53070,55893
+53071,81482
+53072,20690
+53073,37623
+53074,27455
+53075,75013
+53076,49665,42481
+53077,34944
+53078,63060
+53079,21892
+53080,66862
+53081,39513
+53082,73477
+53083,60042
+53084,37179
+53085,41743
+53086,45813
+53087,41729
+53088,71733
+53089,74735
+53090,51640
+53091,52859
+53092,41083
+53093,78598
+53094,67325
+53095,22116
+53096,66785
+53097,68522
+53098,22786
+53099,26884
+53100,76065
+53101,28954
+53102,82092
+53103,77641
+53104,37178
+53105,25721
+53106,44816
+53107,63072
+53108,63195
+53109,80011
+53110,67957
+53111,48210
+53112,59775
+53113,22896
+53114,55742
+53115,53467
+53116,58102
+53117,81065
+53118,9280
+53119,46599
+53120,65581
+53121,29478
+53122,80421
+53123,80421
+53124,10749
+53125,67946
+53126,43509
+53127,72503
+53128,30153
+53129,44491
+53130,81153
+53131,71841
+53132,20409
+53133,25496
+53134,36271
+53135,26049
+53136,34460
+53137,64846
+53138,53132,47928
+53139,55023
+53140,61161
+53141,78992
+53142,81492
+53143,57063
+53144,62147
+53145,71321
+53146,54416
+53147,9930
+53148,74067
+53149,37955
+53150,40752
+53151,27200
+53152,60042
+53153,35906
+53154,31239
+53155,71881
+53156,71493
+53157,20743
+53158,21433
+53159,37908
+53160,43475
+53161,47455
+53162,55799
+53163,67577
+53164,51395
+53165,63007
+53166,49858
+53167,50888
+53168,55662
+53169,48598
+53170,45812
+53171,81802
+53172,47697
+53173,6634
+53174,38512
+53175,47944
+53176,74903
+53177,70415
+53178,81794
+53179,21745
+53180,74903
+53181,29626
+53182,19228
+53183,48030
+53184,53202
+53185,20533
+53186,27341
+53187,55154
+53188,33928
+53189,37130
+53190,37120
+53191,42181
+53192,42207
+53193,56599
+53194,58107
+53195,59885
+53196,73586
+53197,77192
+53198,79086
+53199,30650
+53200,69875
+53201,32269
+53202,65999
+53203,53952
+53204,81101
+53205,34771
+53206,34197
+53207,38511
+53208,47910
+53209,6053
+53210,69945
+53211,70627
+53212,56474
+53213,35388
+53214,75919
+53215,71446
+53216,70033
+53217,24162
+53218,70994
+53219,45009
+53220,54091
+53221,31495
+53222,70033
+53223,77641
+53224,71719
+53225,62266
+53226,11862
+53227,66862
+53228,32875
+53229,78647
+53230,63917
+53231,40231
+53232,27239
+53233,59811
+53234,48269
+53235,9930
+53236,78684
+53237,39296
+53238,53167
+53239,66695
+53240,23643
+53241,26048
+53242,31690
+53243,44558
+53244,51204
+53245,53238
+53246,57556
+53247,37559
+53248,60216
+53249,33725
+53250,31447
+53251,74297
+53252,74296
+53253,25256
+53254,59657
+53255,39049
+53256,80713
+53257,16022
+53258,20626
+53259,27093
+53260,80389
+53261,53275
+53262,45813
+53263,39676
+53264,54141
+53265,42523
+53266,81505
+53267,45222
+53268,45222
+53269,46662
+53270,20235
+53271,53275
+53272,58088
+53273,81125
+53274,67412
+53275,21361
+53276,81743
+53277,30680
+53278,50630
+53279,81876
+53280,62145
+53281,27167
+53282,72503
+53283,54113
+53284,62361
+53285,41284
+53286,55815
+53287,71524
+53288,68959
+53289,50603
+53290,74659
+53291,22266
+53292,72701
+53293,30153
+53294,45813
+53295,79546
+53296,79546
+53297,34041
+53298,50063
+53299,24437
+53300,27167
+53301,52777
+53302,82176
+53303,32780
+53304,58166
+53305,42425
+53306,77374
+53307,44474
+53308,58088
+53309,20456
+53310,74620
+53311,39563
+53312,62294
+53313,49897
+53314,48874
+53315,48874
+53316,61145
+53317,63424
+53318,32578,35551
+53319,31139
+53320,22789,53335
+53321,70010
+53322,69106
+53323,68176
+53324,19343
+53325,69450
+53326,60273
+53327,32691
+53328,51116
+53329,23679
+53330,72114
+53331,79468
+53332,73838
+53333,77287
+53334,62778
+53335,59377
+53336,59333
+53337,25092
+53338,30391
+53339,41862,60604
+53340,62938
+53341,62938
+53342,33324
+53343,53339
+53344,53339
+53345,32770
+53346,55668
+53347,57098
+53348,53354
+53349,63124
+53350,53351
+53351,72036
+53352,72037
+53353,72038
+53354,78703
+53355,77636
+53356,81025
+53357,61144
+53358,60606
+53359,64873
+53360,73805
+53361,39091
+53362,53358
+53363,53358
+53364,50693
+53365,43107
+53366,57241
+53367,39563
+53368,61732
+53369,71900
+53370,71572
+53371,44046
+53372,58776
+53373,18728
+53374,68230
+53375,37718
+53376,57570
+53377,32793
+53378,22269
+53379,18868
+53380,60341
+53381,23664
+53382,29625
+53383,31109
+53384,37991
+53385,61202
+53386,64401
+53387,69216
+53388,37197
+53389,65217
+53390,18969
+53391,81602
+53392,70627
+53393,62145
+53394,18969
+53395,36069
+53396,76778
+53397,77008
+53398,51677
+53399,56180
+53400,28202,39988
+53401,70033
+53402,81635
+53403,27624
+53404,48126
+53405,63052
+53406,63064
+53407,32718
+53408,18728
+53409,48126
+53410,59549
+53411,61317
+53412,22295
+53413,60216
+53414,53337
+53415,58734
+53416,40704
+53417,72435
+53418,55443
+53419,26368
+53420,31417
+53421,68352
+53422,31646
+53423,32426
+53424,51353
+53425,51353
+53426,36793
+53427,58808
+53428,61209
+53429,43686
+53430,61643
+53431,25019
+53432,40947
+53433,25574
+53434,41870
+53435,55785
+53436,53688
+53437,53687
+53438,73222
+53439,74067
+53440,81482
+53441,24393
+53442,81482
+53443,20743
+53444,41607
+53445,24007
+53446,46285
+53447,70453
+53448,57570
+53449,40318
+53450,55324
+53451,21272
+53452,48157
+53453,38218
+53454,74082
+53455,25763
+53456,21905
+53457,81433
+53458,34782
+53459,60450
+53460,27339
+53461,56887
+53462,65737
+53463,64142
+53464,56179
+53465,21213
+53466,45039
+53467,38218
+53468,25245
+53469,27562
+53470,46680
+53471,80135
+53472,75548
+53473,57058
+53474,26933
+53475,63284
+53476,65691
+53477,71842,69330
+53478,72983
+53479,28591
+53480,68290
+53481,68280
+53482,18869
+53483,74067
+53484,76112
+53485,27233
+53486,81462
+53487,81462,45382
+53488,71318
+53489,59283
+53490,59284
+53491,30412
+53492,19398
+53493,78668
+53494,49484
+53495,67459
+53496,70033
+53497,66785
+53498,37779
+53499,21622
+53500,20760
+53501,54947
+53502,25119
+53503,53507
+53504,19982
+53505,53507
+53506,53507
+53507,53474
+53508,53507
+53509,80140
+53510,57223,81462
+53511,81065
+53512,22128
+53513,56009
+53514,21780
+53515,54825
+53516,81789
+53517,77974
+53518,31478
+53519,60600
+53520,31165
+53521,39111
+53522,32578
+53523,60664
+53524,58734
+53525,23653
+53526,58734
+53527,58162
+53528,72959
+53529,33897
+53530,25770
+53531,36767
+53532,53592
+53533,44963
+53534,30557
+53535,73222
+53536,80618
+53537,26488
+53538,63883
+53539,26953
+53540,56896
+53541,69161
+53542,37690
+53543,70675
+53544,58088
+53545,21703
+53546,70474
+53547,79282
+53548,68030
+53549,53474
+53550,47871
+53551,51433
+53552,38985,50438
+53553,76196
+53554,40860
+53555,45813
+53556,77641
+53557,38088
+53558,45316
+53559,32926
+53560,36452
+53561,29534,61795
+53562,62145
+53563,81065
+53564,53561
+53565,62187
+53566,59452
+53567,31043
+53568,75018
+53569,25545
+53570,33793
+53571,40965
+53572,19091
+53573,25872
+53574,26662
+53575,67548
+53576,32713
+53577,41399
+53578,43672
+53579,49432
+53580,19629
+53581,61025
+53582,81161
+53583,81161
+53584,68025
+53585,72186
+53586,72308
+53587,79852
+53588,44013
+53589,11865
+53590,48432
+53591,57438
+53592,41022
+53593,57261
+53594,74492
+53595,32495
+53596,36938
+53597,46767
+53598,50459
+53599,30103
+53600,22389
+53601,34915
+53602,35735
+53603,54872
+53604,76672
+53605,33455
+53606,57991
+53607,54044
+53608,47388
+53609,70234
+53610,48355
+53611,73284
+53612,48423
+53613,47656
+53614,27321
+53615,48305
+53616,31615
+53617,31616
+53618,55760
+53619,18840
+53620,52959
+53621,19228
+53622,60216
+53623,53617
+53624,48408
+53625,53624
+53626,78703
+53627,27997
+53628,41005
+53629,23289
+53630,32384
+53631,54469
+53632,19688
+53633,46490
+53634,46781
+53635,35557,51834
+53636,49273
+53637,60733
+53638,67502
+53639,76196
+53640,35557
+53641,58715
+53642,59423
+53643,79401
+53644,31115
+53645,77045
+53646,51238
+53647,64846
+53648,53660
+53649,36404
+53650,37884
+53651,37908
+53652,37913
+53653,54825
+53654,60603
+53655,60641
+53656,75018
+53657,60612
+53658,56176
+53659,60450
+53660,34924
+53661,28790
+53662,60073
+53663,60448
+53664,31245
+53665,28074
+53666,21012
+53667,56950
+53668,39534
+53669,48318
+53670,43686
+53671,81307
+53672,43701
+53673,30300
+53674,45689
+53675,37623
+53676,78815
+53677,28539
+53678,19492
+53679,47978
+53680,31283
+53681,42492
+53682,57514
+53683,22389
+53684,57066
+53685,28091
+53686,56361
+53687,48666
+53688,56362
+53689,53688
+53690,45813
+53691,45458
+53692,24143
+53693,26298
+53694,77636
+53695,28236
+53696,34986
+53697,38509
+53698,38789
+53699,27792
+53700,48401
+53701,48408
+53702,53704
+53703,62455
+53704,45458
+53705,63060
+53706,45457
+53707,63152
+53708,65910
+53709,43872
+53710,51277
+53711,68290
+53712,73863
+53713,28702
+53714,76162
+53715,50829
+53716,53710
+53717,36602
+53718,50764
+53719,22786
+53720,26786
+53721,69516
+53722,64196
+53723,31626
+53724,31626
+53725,20596
+53726,51642
+53727,74082
+53728,74082
+53729,72959
+53730,38043
+53731,48423
+53732,30883
+53733,77491
+53734,63566
+53735,64513
+53736,72839
+53737,73081
+53738,64527
+53739,37179
+53740,37179
+53741,41743
+53742,55756
+53743,63180
+53744,20760,61263
+53745,56492
+53746,69600
+53747,56446
+53748,30216
+53749,81137
+53750,72575
+53751,66353
+53752,46924
+53753,46923
+53754,79794
+53755,60994
+53756,54562
+53757,22034
+53758,21889
+53759,31790
+53760,71314
+53761,42351
+53762,30519
+53763,56950
+53764,21018
+53765,31115
+53766,31115
+53767,31115
+53768,30443
+53769,34041
+53770,78703
+53771,42119
+53772,64831
+53773,25263
+53774,53861
+53775,65295
+53776,60184
+53777,65295
+53778,53920
+53779,37276
+53780,78899
+53781,76210
+53782,19108
+53783,42049
+53784,72408
+53785,72409
+53786,72413
+53787,37163
+53788,22414
+53789,38842
+53790,57148,25202
+53791,76162
+53792,62441
+53793,63180
+53794,65908
+53795,53726
+53796,66063
+53797,28170
+53798,28780
+53799,58776
+53800,23219
+53801,75007
+53802,34657
+53803,34663
+53804,34657
+53805,67498
+53806,76303
+53807,20757
+53808,38114
+53809,38114
+53810,46553
+53811,60788
+53812,70648
+53813,70651
+53814,46553
+53815,35792
+53816,39534
+53817,81549
+53818,36468
+53819,23790
+53820,66663
+53821,30964
+53822,75436
+53823,69466
+53824,19539
+53825,55766
+53826,30588
+53827,55762
+53828,68122
+53829,37179
+53830,43801
+53831,53829
+53832,75420
+53833,21025
+53834,26899
+53835,58518
+53836,81626
+53837,38043
+53838,80257
+53839,51068
+53840,59307
+53841,78698
+53842,21930
+53843,34647
+53844,65698
+53845,25094
+53846,27503
+53847,69633
+53848,20760
+53849,25256
+53850,73837
+53851,19003
+53852,65799
+53853,65799
+53854,57063
+53855,22288
+53856,38362
+53857,65202
+53858,64142
+53859,54044
+53860,65170
+53861,73838
+53862,50769
+53863,50766
+53864,30271
+53865,65929
+53866,53870,45165
+53867,23258
+53868,39130
+53869,29026
+53870,34924
+53871,47500
+53872,53871
+53873,67562
+53874,63657
+53875,76351
+53876,33811
+53877,39298
+53878,30391
+53879,39101
+53880,72931
+53881,69400
+53882,78804
+53883,28780
+53884,70629
+53885,42225
+53886,29986
+53887,20755
+53888,53774
+53889,69274
+53890,21703
+53891,79282
+53892,78160
+53893,74939
+53894,48084
+53895,24354
+53896,53894,37762
+53897,53848
+53898,18728
+53899,50985
+53900,74537
+53901,27726
+53902,75755
+53903,24245
+53904,27141
+53905,53911,74939
+53906,24807
+53907,61241
+53908,43744
+53909,33585
+53910,60385
+53911,35466
+53912,71567
+53913,18740
+53914,19635
+53915,58779
+53916,35626
+53917,38712
+53918,63584
+53919,46680
+53920,63584
+53921,53621
+53922,22130
+53923,47500
+53924,48477
+53925,36238
+53926,53918
+53927,60450
+53928,22152
+53929,59970
+53930,31058
+53931,52157
+53932,57640
+53933,22420
+53934,65793
+53935,71961
+53936,48474
+53937,61260
+53938,25115
+53939,39357
+53940,24141
+53941,51677
+53942,19651
+53943,33184
+53944,56065
+53945,20992
+53946,42246
+53947,23062,20992
+53948,54642
+53949,58776
+53950,21060
+53951,19648
+53952,61144
+53953,50603
+53954,52918
+53955,21021,47585
+53956,19468
+53957,77308
+53958,30697
+53959,26604
+53960,34647
+53961,32903
+53962,72959
+53963,30964
+53964,46896
+53965,48232
+53966,57640
+53967,74003
+53968,75741
+53969,54082
+53970,78483
+53971,23130
+53972,79867
+53973,41820
+53974,61703
+53975,76196
+53976,24720
+53977,65749
+53978,76422
+53979,32578
+53980,61947
+53981,50337
+53982,68565
+53983,31690
+53984,31792
+53985,27652
+53986,44113
+53987,77059
+53988,49877
+53989,36055
+53990,61263
+53991,81714
+53992,22669
+53993,79963
+53994,75020
+53995,71318
+53996,61789
+53997,64720
+53998,47503
+53999,47503
+54000,24354
+54001,81578
+54002,69027
+54003,72416
+54004,33584
+54005,28129
+54006,75078
+54007,54698
+54008,51665
+54009,26827
+54010,77641
+54011,61259
+54012,44923
+54013,54026
+54014,21703
+54015,56451
+54016,79282
+54017,60155
+54018,51523
+54019,27967
+54020,77051
+54021,40988
+54022,41023
+54023,9930
+54024,60097
+54025,54017
+54026,43142
+54027,46599
+54028,60216
+54029,44768,25424
+54030,79211
+54031,50649
+54032,27497
+54033,38170
+54034,70033
+54035,44609
+54036,57261
+54037,53593
+54038,35290
+54039,35627
+54040,49079
+54041,49883
+54042,79088
+54043,30882
+54044,30882
+54045,58737
+54046,37471
+54047,77585
+54048,66471
+54049,54047
+54050,67997
+54051,62145
+54052,19121
+54053,36868
+54054,81462
+54055,60216
+54056,38400
+54057,19087
+54058,20039
+54059,35626
+54060,64831
+54061,58162
+54062,74081
+54063,25256
+54064,21703
+54065,79282
+54066,70569
+54067,48649
+54068,29263
+54069,33877
+54070,20229
+54071,31638
+54072,34851
+54073,39983
+54074,68448
+54075,81483
+54076,50359
+54077,54176
+54078,39312
+54079,39049
+54080,76345
+54081,28778
+54082,28780
+54083,19073
+54084,37908
+54085,68280
+54086,80145
+54087,81602
+54088,41252
+54089,63861
+54090,68903
+54091,66785
+54092,43110
+54093,79743
+54094,77451
+54095,58162
+54096,60393
+54097,60393
+54098,77945
+54099,61898
+54100,60453
+54101,63064
+54102,60184
+54103,26065
+54104,67270
+54105,31417
+54106,31538
+54107,59547
+54108,25256
+54109,21411
+54110,21703
+54111,79282
+54112,70569
+54113,52885
+54114,51562
+54115,20743
+54116,60417
+54117,46085
+54118,51319
+54119,22053
+54120,54122
+54121,54122
+54122,38965
+54123,22838
+54124,38044
+54125,52091
+54126,71997
+54127,36981
+54128,62585
+54129,77961
+54130,53624
+54131,54183
+54132,61627
+54133,66442
+54134,61756
+54135,67274
+54136,20995
+54137,53717
+54138,19069
+54139,56065
+54140,20419,31759
+54141,54142,42246
+54142,20019
+54143,21415
+54144,19935,41773
+54145,21012
+54146,68853
+54147,20992
+54148,53573
+54149,20973
+54150,59893
+54151,38366
+54152,55688
+54153,50005
+54154,19176
+54155,54153
+54156,54153
+54157,38162
+54158,21021,47585
+54159,20044
+54160,26053
+54161,22475,19072
+54162,67631
+54163,34531
+54164,21013
+54165,72763,76219
+54166,29067
+54167,44439
+54168,29971
+54169,73272
+54170,20621
+54171,41156
+54172,11395
+54173,31468
+54174,57461
+54175,81578
+54176,77945
+54177,32718
+54178,23972
+54179,58776
+54180,69810
+54181,79874,54187
+54182,41842
+54183,51523,54187
+54184,53477
+54185,75029
+54186,54188
+54187,78703
+54188,53354,54187
+54189,54132
+54190,81787
+54191,28529
+54192,48126
+54193,64635
+54194,68280
+54195,21049
+54196,59875
+54197,21421
+54198,66040
+54199,63228
+54200,24700
+54201,45997
+54202,44603
+54203,73650
+54204,20972
+54205,33824
+54206,23095
+54207,68809
+54208,22765
+54209,40702
+54210,65748
+54211,71624
+54212,70428
+54213,62948
+54214,31269
+54215,71505
+54216,22050
+54217,19813
+54218,54562,77510
+54219,59338
+54220,21006
+54221,22746
+54222,54253
+54223,24249
+54224,24251
+54225,18740
+54226,25877
+54227,18740
+54228,54867
+54229,67675
+54230,65295
+54231,20635
+54232,24823
+54233,60534
+54234,37124
+54235,37127
+54236,37490
+54237,38576
+54238,27286
+54239,54240
+54240,40003
+54241,61246,54253
+54242,41305
+54243,42119
+54244,40859
+54245,56514
+54246,56515
+54247,54188
+54248,54121
+54249,26965
+54250,53621
+54251,54183
+54252,41004
+54253,58166
+54254,58854
+54255,59904
+54256,56565
+54257,37422
+54258,77426
+54259,34557
+54260,29026
+54261,21124
+54262,20727
+54263,52653
+54264,20577
+54265,39827
+54266,68290
+54267,65999
+54268,76672
+54269,43977
+54270,72408
+54271,72409
+54272,72416
+54273,72413
+54274,57934
+54275,68285
+54276,78113
+54277,62324
+54278,37448
+54279,49888
+54280,25202
+54281,35062
+54282,51516
+54283,72037
+54284,72038
+54285,37561
+54286,65509
+54287,76664
+54288,76664
+54289,76664
+54290,76664
+54291,76664
+54292,76664
+54293,76664
+54294,76664
+54295,76664
+54296,76664
+54297,76664
+54298,76664
+54299,26955
+54300,62142
+54301,62142
+54302,25113
+54303,33932
+54304,61646
+54305,23925
+54306,56492
+54307,61655
+54308,59308
+54309,21477
+54310,52904
+54311,57066
+54312,76662
+54313,28333
+54314,28339
+54315,29626
+54316,79572
+54317,28091
+54318,40089
+54319,53890
+54320,56009
+54321,75766
+54322,75902
+54323,76490
+54324,60216
+54325,25598
+54326,81750
+54327,63017
+54328,30697
+54329,24873
+54330,28236
+54331,43523
+54332,44013
+54333,67627
+54334,48874
+54335,48336
+54336,46767
+54337,22053
+54338,61211
+54339,79280
+54340,26841
+54341,48336
+54342,28236
+54343,61655
+54344,61655
+54345,38600
+54346,77277
+54347,76664
+54348,57223
+54349,41657
+54350,34435
+54351,76664
+54352,73669
+54353,38545
+54354,66008
+54355,45388
+54356,77585
+54357,70016
+54358,59970
+54359,38545
+54360,60126
+54361,55347
+54362,59542
+54363,20743
+54364,51938
+54365,51938
+54366,12338
+54367,34771
+54368,65120
+54369,37693
+54370,23380
+54371,4535
+54372,51523
+54373,20727
+54374,21060
+54375,73081
+54376,41877
+54377,72367
+54378,43746
+54379,50438
+54380,77268
+54381,51523
+54382,51523
+54383,51523
+54384,77578
+54385,64846
+54386,35735
+54387,51523
+54388,67325
+54389,37276
+54390,78703
+54391,64974
+54392,64831
+54393,49444
+54394,53180
+54395,78106
+54396,38042
+54397,37992
+54398,65531
+54399,45308
+54400,19438
+54401,41107
+54402,79477
+54403,18880
+54404,44440
+54405,19492,54425
+54406,22099
+54407,27280
+54408,28213
+54409,28346
+54410,28344
+54411,28574
+54412,32527
+54413,38700
+54414,41249
+54415,43809
+54416,43820
+54417,46680
+54418,39101
+54419,48479
+54420,48480
+54421,29833
+54422,50603
+54423,50701
+54424,53114
+54425,69308
+54426,51523
+54427,41107
+54428,41107
+54429,50630
+54430,61646
+54431,54418
+54432,51803
+54433,64757
+54434,54401
+54435,35480
+54436,69283
+54437,41107
+54438,77367
+54439,78664
+54440,78698
+54441,79274
+54442,25094
+54443,54440
+54444,71493
+54445,41022
+54446,33729,24007
+54447,51649,57261
+54448,71107
+54449,27114
+54450,29102
+54451,79114
+54452,76420
+54453,63863
+54454,63790
+54455,35534
+54456,49826
+54457,45813
+54458,81549
+54459,79973
+54460,19629
+54461,52497
+54462,33728
+54463,73439
+54464,34437
+54465,36496
+54466,71824
+54467,45813
+54468,74067
+54469,52513
+54470,43313,54471
+54471,81643
+54472,19655
+54473,59481
+54474,33753
+54475,58020
+54476,76135
+54477,76339
+54478,35922
+54479,20819
+54480,76664
+54481,32691
+54482,69549
+54483,68519
+54484,54562
+54485,28323
+54486,43893
+54487,77641
+54488,20368
+54489,33428
+54490,24169
+54491,62767
+54492,64534
+54493,75745
+54494,22063
+54495,27286
+54496,54188
+54497,48004
+54498,54181
+54499,17235
+54500,54183
+54501,62966
+54502,69860
+54503,45260
+54504,37166
+54505,50439
+54506,50438
+54507,66482
+54508,66482
+54509,64757
+54510,21718
+54511,20727
+54512,76672
+54513,62324
+54514,79869
+54515,62441
+54516,61947
+54517,31281
+54518,51825
+54519,73412
+54520,80424
+54521,81546
+54522,81759
+54523,43897
+54524,9930
+54525,69034
+54526,68622
+54527,19231
+54528,19176
+54529,36795
+54530,35534
+54531,64370
+54532,47525
+54533,47642
+54534,47527
+54535,70033
+54536,54813
+54537,77185
+54538,57261
+54539,60733
+54540,31200
+54541,49897
+54542,65086
+54543,57084
+54544,30267
+54545,63918
+54546,48477
+54547,47507
+54548,42094
+54549,53009
+54550,52594
+54551,38334
+54552,22137
+54553,38614
+54554,38839
+54555,34851
+54556,35676
+54557,77277
+54558,60769
+54559,77277
+54560,69744
+54561,50117
+54562,53454
+54563,50139
+54564,38952
+54565,49834
+54566,57594
+54567,56181
+54568,36506
+54569,48438
+54570,32225
+54571,68290
+54572,43113
+54573,38614
+54574,69744
+54575,54556
+54576,25287
+54577,25287
+54578,63630,39613
+54579,71305
+54580,58803
+54581,31940
+54582,50190
+54583,43686
+54584,60967
+54585,61976
+54586,68225
+54587,58798
+54588,70030
+54589,26272
+54590,55376
+54591,26532
+54592,26757,54593
+54593,27405
+54594,35196
+54595,2492
+54596,17469
+54597,21770
+54598,31489
+54599,21765
+54600,29881
+54601,34209
+54602,51433
+54603,38985,70987
+54604,79963
+54605,35187
+54606,63124
+54607,34293
+54608,30937
+54609,37908
+54610,37115
+54611,34619
+54612,70675
+54613,63654
+54614,35342
+54615,38675
+54616,33382
+54617,43815
+54618,62858
+54619,26298
+54620,37721
+54621,74018
+54622,59436,27405
+54623,77845
+54624,41899
+54625,55815
+54626,41901
+54627,70033
+54628,33644
+54629,76030
+54630,75566
+54631,22452
+54632,39414
+54633,49687
+54634,50742
+54635,22850
+54636,28146
+54637,62648
+54638,54865
+54639,74231
+54640,57934
+54641,75902
+54642,77394
+54643,71315
+54644,57194
+54645,19636,50888
+54646,50910
+54647,79224
+54648,28006
+54649,60076
+54650,30939
+54651,79190
+54652,30939
+54653,22807
+54654,21670
+54655,45813
+54656,9253
+54657,45812
+54658,61247
+54659,27167
+54660,31239
+54661,39556
+54662,77287
+54663,53175
+54664,57187
+54665,33793
+54666,22853
+54667,70202
+54668,52068
+54669,57063
+54670,20727
+54671,76672
+54672,81801
+54673,44628
+54674,44984
+54675,23712
+54676,38593
+54677,81801
+54678,34837
+54679,64363
+54680,36602
+54681,39027
+54682,45096
+54683,38545
+54684,60216
+54685,61381
+54686,41004
+54687,58009
+54688,54710
+54689,35156
+54690,25131
+54691,50724
+54692,31417
+54693,34625
+54694,65508
+54695,36046
+54696,51388
+54697,61153
+54698,53238
+54699,44369
+54700,45276
+54701,78649
+54702,21278
+54703,25413
+54704,81808
+54705,54774
+54706,39151
+54707,65949
+54708,64057
+54709,54704
+54710,47388
+54711,52920
+54712,54735
+54713,31546
+54714,32374
+54715,73805
+54716,34020
+54717,32926
+54718,30675
+54719,35388
+54720,72729
+54721,46186
+54722,53611
+54723,67498
+54724,47474
+54725,81808
+54726,25807
+54727,60216
+54728,77972
+54729,41287
+54730,36238
+54731,43810
+54732,54728
+54733,49792
+54734,48157
+54735,48629
+54736,50701,34118
+54737,52920
+54738,32426
+54739,56009
+54740,72503
+54741,54747
+54742,60216
+54743,45276
+54744,54699
+54745,45276
+54746,45276
+54747,45276
+54748,45276
+54749,38276
+54750,63281
+54751,64370
+54752,54735
+54753,39276
+54754,39151
+54755,62516
+54756,76441
+54757,66837,80512
+54758,56234
+54759,62902
+54760,21914
+54761,57932
+54762,56917
+54763,81601
+54764,41646
+54765,41646
+54766,54760
+54767,75548
+54768,65767
+54769,62146
+54770,72089
+54771,72983
+54772,81065
+54773,40929
+54774,56878
+54775,54710
+54776,40752
+54777,59169
+54778,59169
+54779,59169
+54780,26827
+54781,39925
+54782,56995
+54783,77482
+54784,62456
+54785,37718
+54786,81462,52210
+54787,77725
+54788,78966
+54789,18896
+54790,74537
+54791,45392
+54792,45009
+54793,49298
+54794,45813
+54795,21026
+54796,29460
+54797,58154
+54798,19654
+54799,20977
+54800,28170
+54801,73147,79102
+54802,22090
+54803,79102
+54804,58778
+54805,43458
+54806,75553
+54807,19171
+54808,30568
+54809,30575
+54810,31200
+54811,60216
+54812,26239
+54813,19936
+54814,37130
+54815,39381
+54816,53237
+54817,54098
+54818,57177
+54819,24007
+54820,37479
+54821,49897
+54822,25546
+54823,39475
+54824,70627
+54825,74082
+54826,41119
+54827,53369
+54828,34925
+54829,54153
+54830,38807
+54831,64864
+54832,77688
+54833,33102
+54834,27276
+54835,68522
+54836,77348,46827
+54837,64142
+54838,21889
+54839,71310
+54840,61792
+54841,69818
+54842,50184
+54843,50784
+54844,40564
+54845,26118
+54846,30231
+54847,34687
+54848,27596
+54849,54871
+54850,60433
+54851,70033
+54852,71719
+54853,45951
+54854,58287
+54855,19412
+54856,21270
+54857,22371
+54858,51975
+54859,74906
+54860,77636
+54861,51988
+54862,69112
+54863,31245
+54864,22389
+54865,35066
+54866,49797
+54867,65929
+54868,65927
+54869,21922
+54870,50701
+54871,65925
+54872,47273
+54873,32799
+54874,68523
+54875,37479
+54876,25862
+54877,42023
+54878,34209
+54879,34362
+54880,61767
+54881,36499
+54882,48227
+54883,62736
+54884,62736
+54885,53688
+54886,62145
+54887,60216
+54888,63340
+54889,22819
+54890,72733
+54891,38227
+54892,49158
+54893,76683
+54894,42518
+54895,62456
+54896,21765
+54897,33429
+54898,19281
+54899,47716
+54900,34122
+54901,63357
+54902,70987
+54903,31940
+54904,43913
+54905,686
+54906,53373
+54907,54885
+54908,42429
+54909,31640
+54910,25645
+54911,25256
+54912,82066
+54913,77491
+54914,66329
+54915,53023
+54916,30954
+54917,31106
+54918,31039
+54919,48461
+54920,18807
+54921,30206
+54922,30208
+54923,18956
+54924,26320
+54925,39049
+54926,44814
+54927,71315
+54928,57774
+54929,39049
+54930,80716
+54931,80714
+54932,60032
+54933,52586
+54934,36045
+54935,33587
+54936,31149
+54937,76989
+54938,31149
+54939,75013
+54940,31853
+54941,49877
+54942,75137
+54943,71446
+54944,41877
+54945,35557,34808
+54946,44918
+54947,31616
+54948,68522
+54949,80576
+54950,61494
+54951,67594
+54952,32792
+54953,34199
+54954,37165
+54955,67957
+54956,24704
+54957,48321
+54958,32915
+54959,66862
+54960,66862
+54961,20328
+54962,24249
+54963,24251
+54964,41261
+54965,42489
+54966,53339
+54967,78697
+54968,49993
+54969,39049
+54970,69441
+54971,81807
+54972,52762
+54973,32929
+54974,77043
+54975,59678
+54976,70651
+54977,54976
+54978,48787
+54979,39294
+54980,42539
+54981,33851
+54982,19621
+54983,69606
+54984,20743
+54985,45813
+54986,54562
+54987,54082
+54988,20122
+54989,37179
+54990,41743
+54991,41103
+54992,73007
+54993,61655
+54994,76631
+54995,68059
+54996,54991
+54997,48043,54991
+54998,54993
+54999,54993
+55000,47671
+55001,60604
+55002,41106
+55003,63416
+55004,22057
+55005,54253
+55006,57765
+55007,57927
+55008,60400
+55009,53238
+55010,33786
+55011,61789
+55012,66594
+55013,22293
+55014,45813
+55015,65768
+55016,44738
+55017,22255
+55018,54562
+55019,54253
+55020,37123
+55021,37127
+55022,78703
+55023,79086
+55024,79072
+55025,33422
+55026,53736
+55027,80507
+55028,23855
+55029,32627
+55030,60216
+55031,31139
+55032,53183
+55033,36317
+55034,41870
+55035,36419
+55036,55037
+55037,27339
+55038,63211
+55039,19131
+55040,52121
+55041,11221
+55042,77900,24354
+55043,47426
+55044,79794
+55045,61885
+55046,41877
+55047,35922
+55048,74303
+55049,37479
+55050,37479
+55051,51814
+55052,35668
+55053,63187
+55054,57390
+55055,65758
+55056,39049
+55057,62884
+55058,19364
+55059,61355
+55060,54709
+55061,50173
+55062,21381
+55063,67703
+55064,19098
+55065,48841
+55066,20353
+55067,55066
+55068,38053
+55069,20994
+55070,19069
+55071,55084
+55072,61246
+55073,30473
+55074,30469
+55075,58803
+55076,50985
+55077,43107
+55078,20978
+55079,20689
+55080,39294
+55081,42539
+55082,70183
+55083,33326
+55084,51100
+55085,51099
+55086,74939
+55087,50989
+55088,72482
+55089,53238
+55090,21810
+55091,42481
+55092,74903
+55093,77633
+55094,55089
+55095,47012
+55096,47015
+55097,47029
+55098,81703
+55099,60216
+55100,73412
+55101,60076
+55102,72051
+55103,19233
+55104,52990
+55105,70091
+55106,31058
+55107,56527
+55108,75016
+55109,55734
+55110,19867
+55111,40884
+55112,59126
+55113,69004
+55114,36069
+55115,53182
+55116,36065
+55117,25018
+55118,53182
+55119,64635
+55120,33215
+55121,27455
+55122,29611
+55123,40564
+55124,29262
+55125,39797
+55126,81578
+55127,76120
+55128,23792
+55129,57066
+55130,48690
+55131,31538
+55132,78812
+55133,63469
+55134,75510
+55135,62948
+55136,78409
+55137,78777
+55138,58616
+55139,19349
+55140,64669
+55141,81193,64639
+55142,81193
+55143,47503
+55144,78755
+55145,39746
+55146,51159
+55147,79469
+55148,52835
+55149,80460
+55150,27506
+55151,76672
+55152,52053
+55153,69238
+55154,70515
+55155,33184
+55156,35557
+55157,23751
+55158,43913
+55159,47476
+55160,35679
+55161,57333
+55162,67920
+55163,81703
+55164,20745
+55165,45813
+55166,68676
+55167,66843
+55168,53690
+55169,23537
+55170,27440
+55171,55236
+55172,51319
+55173,81626
+55174,79608
+55175,32082
+55176,77509,39585
+55177,33796
+55178,80009
+55179,43986
+55180,61182
+55181,39556
+55182,65324
+55183,65324
+55184,42050
+55185,20593
+55186,51475
+55187,20586
+55188,77185
+55189,53072
+55190,50637
+55191,32527
+55192,45035
+55193,54590
+55194,81626
+55195,39612
+55196,39049
+55197,36976
+55198,53607
+55199,28357
+55200,47788
+55201,45337
+55202,36840
+55203,62936
+55204,63584
+55205,48148
+55206,25353
+55207,53548
+55208,79090
+55209,60448
+55210,64142
+55211,61381
+55212,65526
+55213,60452
+55214,34397
+55215,18713
+55216,37207
+55217,47795
+55218,30275
+55219,60737,55756
+55220,35678
+55221,30498
+55222,39049
+55223,55725
+55224,71731
+55225,71733
+55226,31784
+55227,77509,23949
+55228,21480
+55229,26298
+55230,45679
+55231,49579
+55232,76664
+55233,31689
+55234,22149
+55235,36434
+55236,79608
+55237,51805
+55238,56209
+55239,61220
+55240,50784
+55241,66189
+55242,55159
+55243,41023
+55244,65568
+55245,68314
+55246,50369
+55247,57963,20517
+55248,44474
+55249,67271
+55250,43908
+55251,24251
+55252,43126
+55253,73835
+55254,20105
+55255,50367
+55256,34740
+55257,40965
+55258,40964
+55259,33933
+55260,70987
+55261,75435
+55262,40928
+55263,70416
+55264,47638
+55265,19240
+55266,26302
+55267,79469
+55268,45981
+55269,21760
+55270,27276
+55271,25017
+55272,68843
+55273,68831
+55274,51837
+55275,34229
+55276,32825,46251
+55277,34089
+55278,70629
+55279,68960
+55280,46268
+55281,49298
+55282,65006
+55283,37637
+55284,61251
+55285,41226
+55286,77423
+55287,21671
+55288,60534
+55289,33323
+55290,60786
+55291,31241
+55292,79592
+55293,61145
+55294,35359
+55295,73276
+55296,21359
+55297,68430
+55298,77043
+55299,26192
+55300,53095
+55301,19631
+55302,70249
+55303,39294
+55304,42539
+55305,60467
+55306,31489
+55307,68025
+55308,61395
+55309,59475
+55310,81593
+55311,55366
+55312,23664
+55313,55756
+55314,51018
+55315,50919
+55316,55314
+55317,55581
+55318,58088
+55319,22790
+55320,81915
+55321,57678
+55322,18674
+55323,48372
+55324,59194
+55325,71584
+55326,33913
+55327,54447
+55328,52803
+55329,55324,47737
+55330,67849
+55331,69658
+55332,28164
+55333,81462
+55334,60216
+55335,45777
+55336,51941
+55337,56171
+55338,49858
+55339,59197
+55340,45813
+55341,76123
+55342,34771
+55343,60011
+55344,42322
+55345,54837
+55346,72959
+55347,28529
+55348,28529
+55349,63344
+55350,27059
+55351,40003
+55352,19765,56209
+55353,72959
+55354,31245
+55355,19171
+55356,63581
+55357,42225
+55358,39049
+55359,31960
+55360,19656
+55361,52497
+55362,21135
+55363,32222
+55364,31741
+55365,56446
+55366,46747
+55367,52033
+55368,56440
+55369,56441
+55370,57594,52273
+55371,40588
+55372,80761
+55373,68990
+55374,25046
+55375,63072
+55376,55373
+55377,61764
+55378,33591
+55379,77585
+55380,36548
+55381,36542
+55382,47656
+55383,80760
+55384,57945
+55385,71961
+55386,30467
+55387,53206
+55388,68030
+55389,55430
+55390,29332
+55391,73838
+55392,23240
+55393,55443
+55394,56164
+55395,20690
+55396,38477
+55397,21814
+55398,74067
+55399,66862
+55400,24046
+55401,24612
+55402,66862
+55403,29779
+55404,54982
+55405,20690
+55406,27908
+55407,39676
+55408,41371
+55409,43556
+55410,43781
+55411,45547
+55412,45738
+55413,52857
+55414,50184
+55415,49538
+55416,51400
+55417,26662
+55418,81492
+55419,53072
+55420,45813
+55421,20905
+55422,66862
+55423,59700
+55424,81161
+55425,59365
+55426,66479
+55427,70033
+55428,67001
+55429,67826
+55430,81142
+55431,20239
+55432,70660
+55433,72323
+55434,38477
+55435,75860
+55436,77341
+55437,82086
+55438,29781,19468
+55439,70914
+55440,34118
+55441,70629
+55442,21787
+55443,41444
+55444,78647
+55445,71648
+55446,67497
+55447,57280
+55448,36250
+55449,66617
+55450,60216
+55451,66862
+55452,37478
+55453,45813
+55454,45312
+55455,27624
+55456,41114
+55457,63953
+55458,56460
+55459,53415
+55460,36047
+55461,77552
+55462,52957
+55463,35557
+55464,34808
+55465,35557
+55466,76877
+55467,39049
+55468,37041
+55469,57901
+55470,43107
+55471,58200
+55472,57897
+55473,66609
+55474,46268
+55475,40293
+55476,31618
+55477,38984
+55478,21126
+55479,19108
+55480,78096
+55481,21126
+55482,72435
+55483,72376
+55484,53628
+55485,54837
+55486,23182
+55487,39509
+55488,78236
+55489,34148
+55490,28529
+55491,55756
+55492,19201
+55493,28529
+55494,45096
+55495,71315
+55496,81643
+55497,77585
+55498,30937
+55499,69977,63117
+55500,63224
+55501,72029
+55502,34944
+55503,42069
+55504,38789
+55505,79114
+55506,28747
+55507,64534
+55508,77641
+55509,51068
+55510,50438
+55511,52655
+55512,27488
+55513,44609
+55514,43516
+55515,34881
+55516,38865
+55517,50922
+55518,43516
+55519,61906
+55520,42481
+55521,54944
+55522,53848
+55523,70033
+55524,68793
+55525,70730
+55526,71446
+55527,23380
+55528,25889
+55529,72114
+55530,77277
+55531,36707
+55532,55526
+55533,61982
+55534,67608
+55535,72764
+55536,78286
+55537,64409
+55538,39650
+55539,46834
+55540,43167
+55541,43575
+55542,50353
+55543,25812
+55544,20824
+55545,45060
+55546,64293
+55547,59769
+55548,49772
+55549,68128
+55550,49485
+55551,29557
+55552,36505
+55553,31618
+55554,22122
+55555,39962
+55556,60534
+55557,79546
+55558,66763
+55559,46918
+55560,21876
+55561,81694
+55562,47991
+55563,80522
+55564,11480
+55565,54440
+55566,68230,11480
+55567,45421
+55568,54811
+55569,23946
+55570,41743
+55571,63424
+55572,38213
+55573,70889
+55574,81161
+55575,34249
+55576,70033
+55577,50117
+55578,63255
+55579,74752
+55580,81251
+55581,45813
+55582,52410
+55583,79469
+55584,60032,25459
+55585,40292
+55586,60032
+55587,73207
+55588,71719
+55589,73762
+55590,68277
+55591,66482
+55592,22966
+55593,65213
+55594,55605
+55595,35922
+55596,63193
+55597,19867
+55598,67001
+55599,50989
+55600,77491
+55601,63116
+55602,32187
+55603,56527
+55604,55888
+55605,55627
+55606,68317,34356,22305
+55607,72892
+55608,79905
+55609,75641
+55610,29382
+55611,57927
+55612,37478
+55613,57187
+55614,47870
+55615,21529
+55616,48775
+55617,52655
+55618,57187
+55619,33885
+55620,35196
+55621,38670
+55622,76664
+55623,66837
+55624,44437
+55625,42351
+55626,57214
+55627,73009
+55628,78723
+55629,79780
+55630,68777
+55631,79009
+55632,28954
+55633,38034
+55634,28872
+55635,43240
+55636,56941
+55637,49767
+55638,31245
+55639,37608
+55640,25098
+55641,48084
+55642,57088
+55643,24403
+55644,28873
+55645,23541
+55646,50919
+55647,23543
+55648,25234
+55649,51886
+55650,57067
+55651,78899,19379
+55652,42351
+55653,51171
+55654,76784
+55655,21545
+55656,48030
+55657,44013
+55658,34249
+55659,51030
+55660,58803
+55661,58798
+55662,46377
+55663,47951
+55664,31831
+55665,55942
+55666,74614
+55667,79546
+55668,32929,49763
+55669,55668
+55670,45276
+55671,33149
+55672,47050
+55673,66862
+55674,78419
+55675,68276
+55676,20745
+55677,44576
+55678,74939
+55679,43983
+55680,43982
+55681,41280
+55682,79619
+55683,79618
+55684,22271
+55685,20760
+55686,31696
+55687,39768,71572
+55688,65713
+55689,26389
+55690,54218
+55691,36694
+55692,42481
+55693,75016
+55694,76966
+55695,60598
+55696,21703
+55697,79282
+55698,75016
+55699,18701
+55700,18701
+55701,18701
+55702,18701
+55703,19318
+55704,19318
+55705,19318
+55706,19318
+55707,21736
+55708,21736
+55709,24040
+55710,70568
+55711,71079
+55712,72135
+55713,72135
+55714,71749
+55715,76256
+55716,22705
+55717,57372
+55718,34646
+55719,49343
+55720,46715
+55721,77585
+55722,71437
+55723,19629
+55724,19629
+55725,23267
+55726,79259
+55727,29935
+55728,20586
+55729,73437
+55730,8042
+55731,41017
+55732,67957
+55733,70118
+55734,22215
+55735,71688
+55736,19228
+55737,71688
+55738,63819
+55739,55758
+55740,32964
+55741,18869
+55742,38883,55734
+55743,76104
+55744,51058
+55745,55737
+55746,59020
+55747,31493
+55748,31492
+55749,64438
+55750,73439
+55751,75548
+55752,61377,55499
+55753,55756
+55754,65045
+55755,28954
+55756,55734
+55757,57909
+55758,34924
+55759,63457
+55760,57058
+55761,58168
+55762,22220
+55763,60071,60077
+55764,71455
+55765,76633
+55766,71697
+55767,21765
+55768,60076
+55769,21670
+55770,65513
+55771,68230
+55772,46901
+55773,68793
+55774,68180
+55775,73478
+55776,34249
+55777,49546
+55778,52857
+55779,25518
+55780,67001
+55781,76303
+55782,55536
+55783,60798
+55784,60801
+55785,55859
+55786,69943
+55787,48072
+55788,21597
+55789,63160
+55790,57693
+55791,53829
+55792,41899
+55793,66862
+55794,33741
+55795,39049
+55796,76422
+55797,82169
+55798,69677
+55799,24442
+55800,56276
+55801,43989
+55802,39089
+55803,33353
+55804,55802
+55805,61968
+55806,45813
+55807,33134
+55808,33135
+55809,31239
+55810,61694,79457
+55811,57594
+55812,62366
+55813,67957
+55814,40564
+55815,27622
+55816,42351
+55817,66893
+55818,66889
+55819,60385
+55820,72787
+55821,28541
+55822,19656
+55823,28057
+55824,20743
+55825,58166
+55826,42429
+55827,28530
+55828,28530
+55829,51658
+55830,19108
+55831,34016
+55832,74689
+55833,78536
+55834,48250
+55835,60216
+55836,48451
+55837,65064
+55838,70033
+55839,31245
+55840,57160
+55841,71686
+55842,71961
+55843,29167
+55844,71148
+55845,75235
+55846,51996
+55847,41856
+55848,48801
+55849,48007
+55850,57987
+55851,66009
+55852,67994
+55853,74923
+55854,65139
+55855,65139
+55856,59732
+55857,66154
+55858,39058
+55859,40195
+55860,72066
+55861,81626
+55862,58776
+55863,60598
+55864,35535,22305
+55865,61260
+55866,38475
+55867,25431
+55868,25432
+55869,20977
+55870,37041
+55871,37042
+55872,38475
+55873,61264
+55874,65509,35226
+55875,36602
+55876,34279
+55877,56492
+55878,39428
+55879,44474
+55880,48126
+55881,51100
+55882,51099
+55883,51100
+55884,51099
+55885,39792
+55886,66873
+55887,66874
+55888,52842
+55889,24354
+55890,56451
+55891,48111
+55892,37163
+55893,37163
+55894,72928
+55895,48073
+55896,27556
+55897,27524
+55898,71938
+55899,38135
+55900,39777
+55901,45755
+55902,74939
+55903,43997
+55904,60621
+55905,23906
+55906,48126
+55907,71079
+55908,56304
+55909,59549
+55910,79753
+55911,20346
+55912,67883
+55913,43427
+55914,48126
+55915,57934
+55916,76966
+55917,55916
+55918,55692
+55919,50438
+55920,54188
+55921,54183
+55922,21718
+55923,57934
+55924,57934
+55925,57934
+55926,67946
+55927,58166
+55928,61246
+55929,40986
+55930,44614
+55931,47786
+55932,20690
+55933,20690
+55934,60158
+55935,71786
+55936,68489
+55937,11870
+55938,45276
+55939,51391
+55940,70395
+55941,60206
+55942,73495
+55943,61381
+55944,23792
+55945,76258
+55946,65754
+55947,21745
+55948,19228
+55949,19774
+55950,73495
+55951,47503
+55952,55143,55951
+55953,38807
+55954,66131
+55955,30391
+55956,71307
+55957,47278
+55958,38475
+55959,23906
+55960,62450
+55961,20745
+55962,72416
+55963,20763
+55964,69050
+55965,52916
+55966,72575
+55967,33650
+55968,38740
+55969,56950
+55970,37776
+55971,77100
+55972,29936
+55973,28153
+55974,19480
+55975,23972
+55976,59901
+55977,50063
+55978,31417
+55979,80335
+55980,21361
+55981,48283
+55982,51523
+55983,46591
+55984,39423
+55985,80061
+55986,46268
+55987,32246,37748
+55988,77108
+55989,26166
+55990,81626
+55991,39961
+55992,34199
+55993,49972
+55994,55795
+55995,11962
+55996,64142
+55997,39002
+55998,41310
+55999,58023
+56000,31245
+56001,77641
+56002,82092
+56003,20973
+56004,56066
+56005,56066
+56006,56066
+56007,80501
+56008,65974
+56009,50369
+56010,67760
+56011,34263
+56012,47673
+56013,39295
+56014,53934
+56015,34263
+56016,67584
+56017,47682
+56018,75141
+56019,19629
+56020,61335
+56021,60216
+56022,60216
+56023,72052
+56024,43948
+56025,25770
+56026,20621
+56027,39049
+56028,43554
+56029,81462,49598
+56030,54188
+56031,54183
+56032,70482
+56033,18740
+56034,76672
+56035,37913
+56036,62324
+56037,76066
+56038,70801
+56039,42296
+56040,65040
+56041,79222,56099
+56042,47047,71567
+56043,47047
+56044,61703
+56045,60411
+56046,75066
+56047,46507
+56048,6295
+56049,76160
+56050,77636
+56051,56950
+56052,56950
+56053,28870
+56054,70033
+56055,50630
+56056,69004
+56057,60242
+56058,26318
+56059,43104
+56060,47186
+56061,70091
+56062,71623
+56063,78544
+56064,75954
+56065,36602
+56066,20894
+56067,32776
+56068,29959
+56069,58200
+56070,48169
+56071,68809
+56072,65908
+56073,54044
+56074,71961
+56075,73555
+56076,81161
+56077,40446
+56078,80344
+56079,80861
+56080,48685
+56081,64632,42356
+56082,43672
+56083,53132
+56084,31992
+56085,19861
+56086,34207
+56087,69544
+56088,28538
+56089,66158
+56090,81062
+56091,62125
+56092,20925
+56093,80720
+56094,25256
+56095,27252
+56096,28091
+56097,78203,31184
+56098,31520
+56099,34193
+56100,53642
+56101,69192
+56102,76627
+56103,21738
+56104,32718
+56105,79282
+56106,41111
+56107,36710
+56108,28091
+56109,37868
+56110,78758
+56111,45813
+56112,40564
+56113,27606
+56114,31304
+56115,59970
+56116,60216
+56117,20926
+56118,30654
+56119,27323,29509
+56120,28213
+56121,34085
+56122,34088
+56123,37623,40411
+56124,79086
+56125,71317
+56126,53861
+56127,59238
+56128,69284
+56129,20310
+56130,35922
+56131,35922
+56132,19497
+56133,56132,50701
+56134,73018
+56135,59970
+56136,44440
+56137,28529
+56138,71310
+56139,72959
+56140,60216
+56141,58166
+56142,60216
+56143,70308
+56144,33875
+56145,70033
+56146,50359
+56147,27307
+56148,70033
+56149,27307
+56150,71961
+56151,64142
+56152,71320
+56153,60450
+56154,60448
+56155,74939
+56156,82095
+56157,78024
+56158,19054
+56159,27861
+56160,55760
+56161,21345
+56162,28962
+56163,43107
+56164,43107
+56165,24353
+56166,39767
+56167,41306
+56168,43362
+56169,68280
+56170,47564
+56171,50359
+56172,48164
+56173,21275
+56174,51967
+56175,57187
+56176,81004
+56177,78721
+56178,60417
+56179,63065
+56180,66052,61262
+56181,66086
+56182,68280
+56183,69543
+56184,76139
+56185,27539
+56186,60450
+56187,21770
+56188,60448
+56189,24249
+56190,56194
+56191,63061
+56192,48724
+56193,25413
+56194,64142
+56195,51388
+56196,28054
+56197,78721
+56198,78398
+56199,64142
+56200,77374
+56201,48306
+56202,65754
+56203,76160
+56204,77636
+56205,39152
+56206,35623
+56207,72024
+56208,35554
+56209,74939
+56210,33799
+56211,33797
+56212,28413
+56213,51523
+56214,56213
+56215,56213
+56216,74011
+56217,18880
+56218,54406
+56219,23440
+56220,24792
+56221,20174
+56222,57932
+56223,28653
+56224,56230
+56225,37913
+56226,38218
+56227,56234
+56228,54418
+56229,56234
+56230,54425
+56231,56226
+56232,69754
+56233,54440
+56234,80515
+56235,21474
+56236,28237
+56237,61646
+56238,74769
+56239,64142
+56240,77520
+56241,73112
+56242,51316
+56243,48408
+56244,75018
+56245,19843
+56246,38828
+56247,54437
+56248,23221
+56249,30718
+56250,69776
+56251,43820
+56252,56338
+56253,57421
+56254,34538
+56255,66151
+56256,46031
+56257,38793
+56258,24007
+56259,54732
+56260,22412
+56261,70183
+56262,35735
+56263,70110
+56264,20755
+56265,76552
+56266,70399
+56267,81255
+56268,41265
+56269,74939
+56270,29935
+56271,72451
+56272,68289
+56273,29936
+56274,60448
+56275,56312
+56276,76251
+56277,50296
+56278,33500
+56279,59306
+56280,38920
+56281,57897
+56282,25617
+56283,38699
+56284,79189
+56285,22903
+56286,32757
+56287,52211
+56288,49643
+56289,49222
+56290,77641
+56291,34199
+56292,56281
+56293,29928
+56294,56295
+56295,42225
+56296,34039
+56297,70651
+56298,51677
+56299,52469
+56300,35863
+56301,35858
+56302,37042
+56303,52990
+56304,34039
+56305,37974
+56306,48127
+56307,68793
+56308,41738
+56309,37179
+56310,41743
+56311,61259
+56312,31245
+56313,56276
+56314,64142
+56315,61679
+56316,47655
+56317,24268
+56318,50722
+56319,72185
+56320,70033
+56321,75665
+56322,61474
+56323,37635
+56324,70033
+56325,32793
+56326,45030
+56327,52773
+56328,61996
+56329,77641
+56330,58155
+56331,68869
+56332,56492
+56333,38566
+56334,20994
+56335,72983
+56336,34539
+56337,63348
+56338,34538
+56339,40003
+56340,28623
+56341,28811
+56342,32185
+56343,39565
+56344,47402
+56345,61734
+56346,75912
+56347,65671
+56348,73275
+56349,22780
+56350,61724
+56351,20409
+56352,64142
+56353,34174
+56354,56357
+56355,60216
+56356,81463
+56357,56878
+56358,27576
+56359,50875
+56360,19228
+56361,35532
+56362,30891
+56363,56362
+56364,70033
+56365,79608
+56366,55580
+56367,33184
+56368,60216
+56369,57333
+56370,21475
+56371,30900
+56372,41610
+56373,58166
+56374,63415
+56375,81752
+56376,81681
+56377,45813
+56378,4660
+56379,46901,21771
+56380,19497
+56381,30449
+56382,31488
+56383,31489
+56384,54082
+56385,38881
+56386,51167
+56387,51168
+56388,76981
+56389,81578
+56390,48764
+56391,51148
+56392,20977,21060
+56393,28780,56806
+56394,50273
+56395,34038
+56396,48497
+56397,34064
+56398,76662
+56399,22507
+56400,59778
+56401,28334
+56402,70395
+56403,61246
+56404,59547
+56405,71572
+56406,67202
+56407,21770
+56408,20982
+56409,38577
+56410,72959
+56411,54562
+56412,54562
+56413,49860
+56414,54127
+56415,53624
+56416,58776
+56417,18728
+56418,20431
+56419,49750
+56420,56422
+56421,34977
+56422,51713
+56423,53716
+56424,78113
+56425,63228
+56426,49750
+56427,74973
+56428,47805
+56429,77216
+56430,21777
+56431,35525
+56432,47673
+56433,54082
+56434,38807
+56435,56437
+56436,57475
+56437,68676
+56438,56437
+56439,57594
+56440,39771
+56441,71572
+56442,28232
+56443,56454
+56444,37805
+56445,56443
+56446,39768,39767
+56447,61694,19654
+56448,44475
+56449,37406
+56450,80918
+56451,61468
+56452,68956
+56453,25806
+56454,35626
+56455,56453
+56456,75016
+56457,20760
+56458,35679
+56459,63584
+56460,56176
+56461,66226
+56462,42143
+56463,41917
+56464,44634
+56465,34924
+56466,24306
+56467,77045
+56468,82053
+56469,43544
+56470,42097
+56471,77552
+56472,39049
+56473,38380
+56474,47830
+56475,55791
+56476,74766
+56477,47830
+56478,32530
+56479,80541
+56480,80583
+56481,43766
+56482,75018
+56483,30885
+56484,75018
+56485,75019
+56486,72011
+56487,59970
+56488,68185
+56489,21411
+56490,31103
+56491,66206
+56492,73837
+56493,37141
+56494,58776
+56495,56453
+56496,70091
+56497,18728
+56498,23906
+56499,48126
+56500,20577
+56501,24249
+56502,24251
+56503,37642
+56504,52842
+56505,58158
+56506,34701
+56507,52842
+56508,38170
+56509,24231
+56510,78160
+56511,22350,55091
+56512,44474
+56513,24611
+56514,48659
+56515,71572
+56516,46553
+56517,69600
+56518,56535,51558
+56519,51566
+56520,71996
+56521,53710
+56522,53716
+56523,78160
+56524,53199
+56525,24799
+56526,74942
+56527,59549
+56528,56534,60621
+56529,56457
+56530,61317
+56531,53716
+56532,48318
+56533,67883
+56534,56502
+56535,56501
+56536,53916
+56537,74560
+56538,57934
+56539,75009
+56540,70091
+56541,34664
+56542,77216
+56543,56505
+56544,77961
+56545,42425
+56546,73185
+56547,60216
+56548,19936
+56549,41155
+56550,19497
+56551,58669
+56552,56866
+56553,34827
+56554,57182
+56555,57182
+56556,28792
+56557,40150
+56558,51030
+56559,57154
+56560,22059
+56561,40851
+56562,32169,48852
+56563,72892
+56564,51105
+56565,51100
+56566,47314
+56567,47505
+56568,56869
+56569,37538,42481
+56570,21381
+56571,32974
+56572,34021
+56573,63663
+56574,62965
+56575,60394
+56576,59918
+56577,78899
+56578,21632
+56579,57113
+56580,30531
+56581,62187
+56582,72482
+56583,30062
+56584,19635
+56585,48157
+56586,48157
+56587,48157
+56588,19648
+56589,21729
+56590,26363
+56591,45096
+56592,49027
+56593,52578
+56594,60546
+56595,26010
+56596,69870
+56597,56585,26009
+56598,20825
+56599,65909
+56600,59020
+56601,62744
+56602,63117
+56603,63670
+56604,19272
+56605,30538
+56606,32964,56605
+56607,37191
+56608,49339
+56609,39053
+56610,56598
+56611,69915
+56612,72714
+56613,57562
+56614,64980
+56615,72803
+56616,65912
+56617,48532
+56618,67608
+56619,41110
+56620,19655
+56621,65702
+56622,69235
+56623,2078
+56624,18537
+56625,1594
+56626,61651
+56627,24403
+56628,24406
+56629,48874
+56630,73466
+56631,61425
+56632,61138
+56633,31245
+56634,62981
+56635,30300
+56636,54082
+56637,40380
+56638,20120
+56639,73466
+56640,26072
+56641,20120
+56642,20122
+56643,56009
+56644,21224
+56645,30223
+56646,30223
+56647,61264,20038,79222
+56648,36604
+56649,61703
+56650,63425
+56651,56460
+56652,49861
+56653,26919
+56654,52861
+56655,40752
+56656,46186
+56657,78340
+56658,76664
+56659,76664
+56660,76664
+56661,76672
+56662,33832
+56663,76664
+56664,26827
+56665,26827
+56666,26827
+56667,51316
+56668,40336
+56669,73448
+56670,36103
+56671,24306
+56672,32931
+56673,58384
+56674,45869
+56675,70033
+56676,36109
+56677,75647
+56678,51814
+56679,47991
+56680,36106
+56681,56671
+56682,22116
+56683,68236
+56684,69704
+56685,69701
+56686,30514
+56687,53063
+56688,36375
+56689,70183
+56690,80253
+56691,36496
+56692,27276
+56693,42092
+56694,51550,56703
+56695,43566
+56696,76441
+56697,37992
+56698,35838
+56699,36426
+56700,70524
+56701,81549
+56702,56703
+56703,29928
+56704,81601
+56705,57076
+56706,67762
+56707,67760
+56708,20560
+56709,35922
+56710,56937
+56711,34452
+56712,20905
+56713,75063
+56714,48477
+56715,44013
+56716,29936
+56717,70399
+56718,35188
+56719,72447
+56720,30300
+56721,25564
+56722,22786
+56723,25555
+56724,50439
+56725,64757
+56726,34093
+56727,34093
+56728,76662
+56729,64757
+56730,50439
+56731,53956
+56732,29626
+56733,53288
+56734,39049
+56735,64757
+56736,54562
+56737,54082
+56738,24403,29821
+56739,72150
+56740,70987
+56741,19936
+56742,58888
+56743,27275
+56744,65955
+56745,69695
+56746,11481
+56747,39079
+56748,24717
+56749,52322
+56750,37247
+56751,32966
+56752,31058
+56753,56765
+56754,23925
+56755,19069
+56756,38475
+56757,42246
+56758,31058
+56759,28790
+56760,58611
+56761,58158
+56762,44439
+56763,56765
+56764,44439
+56765,22640
+56766,58158
+56767,54562
+56768,75576
+56769,41905
+56770,20973
+56771,28780,42246
+56772,22743
+56773,58162
+56774,35319,42246
+56775,58162
+56776,31058
+56777,56063
+56778,58616,61828
+56779,77773
+56780,38053
+56781,56752,79224
+56782,38475
+56783,19069
+56784,48215
+56785,77641
+56786,56338
+56787,78598
+56788,21475
+56789,43546
+56790,23232
+56791,73323
+56792,71838
+56793,44550
+56794,81807
+56795,31691
+56796,70524
+56797,25556
+56798,22329
+56799,50295
+56800,21475
+56801,28780
+56802,37569
+56803,46457
+56804,73018
+56805,74211
+56806,28780,42246
+56807,54082
+56808,56802
+56809,36840
+56810,35308
+56811,55314
+56812,54285
+56813,37305
+56814,55756
+56815,43168
+56816,47816
+56817,81161
+56818,81121
+56819,54544
+56820,31445
+56821,61646
+56822,28153
+56823,71521
+56824,31100
+56825,31820
+56826,61261
+56827,46954
+56828,56823
+56829,61261
+56830,24781
+56831,25900
+56832,71686
+56833,33186
+56834,47845
+56835,71688
+56836,77972
+56837,31245
+56838,20458
+56839,61830
+56840,64310
+56841,34924
+56842,71687
+56843,78455
+56844,38030
+56845,20879
+56846,78455
+56847,80091
+56848,28237
+56849,59589
+56850,21720
+56851,21135
+56852,33758
+56853,60450
+56854,60448
+56855,58069
+56856,31245
+56857,21289
+56858,27785
+56859,63346
+56860,65925
+56861,65767
+56862,43122
+56863,38789
+56864,39968
+56865,39177
+56866,44440
+56867,61246
+56868,37130
+56869,66309
+56870,65531
+56871,72051
+56872,53866
+56873,49360
+56874,65906
+56875,31195
+56876,47639
+56877,65682
+56878,19171
+56879,57682
+56880,41155
+56881,61866
+56882,71315
+56883,42429
+56884,56885
+56885,44440
+56886,72959
+56887,56937
+56888,61830
+56889,25234
+56890,61796
+56891,81578
+56892,27572
+56893,69308
+56894,54425
+56895,62456
+56896,35706
+56897,35437
+56898,78748
+56899,39152
+56900,78749
+56901,40063
+56902,60216
+56903,58162
+56904,48801
+56905,53797
+56906,59775
+56907,46767
+56908,69286
+56909,48041
+56910,27233
+56911,38545
+56912,56886
+56913,62401
+56914,34685
+56915,63376
+56916,78923
+56917,58168
+56918,41155
+56919,35754
+56920,75019
+56921,60216
+56922,28780
+56923,56899
+56924,18789
+56925,73007
+56926,73012
+56927,74735
+56928,29106
+56929,60216
+56930,60216
+56931,24306
+56932,40064
+56933,60216
+56934,58169
+56935,62794
+56936,73863
+56937,60216
+56938,60216
+56939,44440
+56940,74037
+56941,54044
+56942,72623
+56943,60216
+56944,59432
+56945,48077
+56946,30467
+56947,78923
+56948,64409
+56949,58158
+56950,20963
+56951,40617
+56952,63921
+56953,20994
+56954,35712
+56955,58166
+56956,48477
+56957,60216
+56958,59475
+56959,66226
+56960,34837
+56961,46767
+56962,52097
+56963,26827
+56964,62840
+56965,27986,55067,79222
+56966,63180
+56967,63180
+56968,21381
+56969,63180
+56970,80424
+56971,72839
+56972,33455
+56973,35773
+56974,47818
+56975,49459
+56976,43380
+56977,31361
+56978,65707
+56979,31245
+56980,38778
+56981,28545
+56982,60598
+56983,35386
+56984,51894
+56985,27534
+56986,35386
+56987,35389
+56988,30962
+56989,30962
+56990,61733
+56991,81161
+56992,30962
+56993,30962
+56994,70104
+56995,81193
+56996,35386
+56997,51894
+56998,30962
+56999,30962
+57000,30962
+57001,73481
+57002,43104
+57003,61746
+57004,25079
+57005,50934
+57006,32921
+57007,81161
+57008,653
+57009,45732
+57010,46287
+57011,11865
+57012,60358
+57013,60801
+57014,43769
+57015,65347
+57016,68597
+57017,26639
+57018,40293
+57019,80995
+57020,62147
+57021,65579
+57022,35386
+57023,51894
+57024,30962
+57025,30962
+57026,30962
+57027,81193
+57028,77802
+57029,70987
+57030,74903
+57031,71024
+57032,70628
+57033,41672
+57034,41672
+57035,28807
+57036,41672
+57037,40846
+57038,39071
+57039,46507
+57040,22684
+57041,73573
+57042,24700
+57043,34175
+57044,21568
+57045,80753
+57046,24404
+57047,53593
+57048,37041
+57049,33404
+57050,53716
+57051,52071
+57052,33563
+57053,56069
+57054,59531
+57055,57065
+57056,57573
+57057,81788
+57058,81786
+57059,47920
+57060,47920
+57061,33502
+57062,76936
+57063,81801
+57064,19774
+57065,30647
+57066,55760
+57067,34087
+57068,60235
+57069,57067
+57070,57067
+57071,25306
+57072,62100
+57073,38030
+57074,58737
+57075,81796
+57076,65707
+57077,56912
+57078,31795
+57079,21458
+57080,75718
+57081,20823
+57082,66324
+57083,22133
+57084,22133
+57085,60011
+57086,57573
+57087,65975
+57088,31158
+57089,21730
+57090,47388
+57091,32384
+57092,72208
+57093,48059
+57094,64620
+57095,27167
+57096,27167
+57097,31638
+57098,31640,74086
+57099,52752
+57100,60570
+57101,27562
+57102,30824
+57103,33292
+57104,72892
+57105,65896
+57106,39801
+57107,25306
+57108,57106
+57109,81781
+57110,81787
+57111,58212
+57112,34950
+57113,78785
+57114,26367
+57115,26368
+57116,65767
+57117,76664
+57118,20977
+57119,62703
+57120,57385
+57121,72483
+57122,51068
+57123,53607
+57124,26320
+57125,59305
+57126,57125
+57127,61260
+57128,69744
+57129,66471
+57130,27949
+57131,28801
+57132,30391
+57133,34871,35922
+57134,37913
+57135,25203
+57136,39298
+57137,41773
+57138,52628
+57139,53716
+57140,60611
+57141,60612
+57142,63362
+57143,56179
+57144,21200
+57145,66075
+57146,66838
+57147,75954
+57148,80514
+57149,27954
+57150,38053
+57151,52544
+57152,58154
+57153,73837
+57154,23200
+57155,63467
+57156,63434
+57157,43517
+57158,66309
+57159,75001
+57160,38385
+57161,28237
+57162,28237
+57163,56492
+57164,58154
+57165,56000
+57166,58803
+57167,60216
+57168,73015
+57169,72733
+57170,55451
+57171,63945
+57172,63956
+57173,62456
+57174,47991
+57175,25391,60282
+57176,46954
+57177,20827
+57178,69330
+57179,53477
+57180,79076
+57181,72988
+57182,28539
+57183,19497
+57184,81462
+57185,19172
+57186,33876
+57187,34326
+57188,30935
+57189,49026
+57190,62159
+57191,43911
+57192,70549
+57193,53958
+57194,20409
+57195,19735
+57196,26937
+57197,31100
+57198,26933
+57199,68943
+57200,53480
+57201,52159
+57202,74939
+57203,67254
+57204,72271
+57205,70627
+57206,74903
+57207,56023
+57208,53473
+57209,35851
+57210,63861
+57211,64160
+57212,23792
+57213,35480
+57214,57194
+57215,30392
+57216,30404
+57217,41096
+57218,65758
+57219,51068
+57220,44738
+57221,35342
+57222,31778
+57223,45458
+57224,65598
+57225,53707
+57226,51959
+57227,65598
+57228,69564
+57229,60216
+57230,28955
+57231,56073
+57232,62682
+57233,45457
+57234,27562
+57235,48064
+57236,19758
+57237,53694
+57238,68236
+57239,22507
+57240,27562
+57241,68869
+57242,24781
+57243,68456
+57244,39423
+57245,27167
+57246,64293
+57247,72503
+57248,60960
+57249,20690
+57250,56816
+57251,31064
+57252,32233
+57253,68854
+57254,58287
+57255,57241
+57256,72142
+57257,72146
+57258,45951
+57259,74081
+57260,21703
+57261,41004
+57262,58162
+57263,68280
+57264,71997
+57265,81018
+57266,48157
+57267,69659
+57268,37058
+57269,53717
+57270,45204
+57271,31115
+57272,79743,22406
+57273,70395
+57274,52908,61842
+57275,39049
+57276,73367
+57277,6941
+57278,50459
+57279,81462
+57280,26669
+57281,81462
+57282,32770
+57283,78647
+57284,69444
+57285,60273
+57286,39015
+57287,21006,20977
+57288,81482
+57289,77641
+57290,43766
+57291,42029
+57292,61256
+57293,77641
+57294,39676
+57295,39767
+57296,47655
+57297,71398
+57298,25059
+57299,70627
+57300,57298
+57301,77277
+57302,49772
+57303,46781
+57304,28323
+57305,43893
+57306,27497
+57307,64293
+57308,63251
+57309,30689
+57310,62087
+57311,53592
+57312,31853
+57313,55341
+57314,68809
+57315,33302
+57316,33305
+57317,81482
+57318,77641
+57319,77280
+57320,74025
+57321,39976
+57322,32718
+57323,30530
+57324,24573
+57325,29067,20998
+57326,71634
+57327,57964
+57328,65793
+57329,57081
+57330,31546
+57331,31120
+57332,31638
+57333,60600
+57334,37476
+57335,33891
+57336,63192
+57337,63193
+57338,24163
+57339,30188
+57340,63193
+57341,50359
+57342,63187
+57343,79745
+57344,65925
+57345,65025
+57346,72052
+57347,63059
+57348,50985
+57349,49362
+57350,81612
+57351,70392
+57352,65767
+57353,67136
+57354,43335
+57355,20502
+57356,72959
+57357,81798
+57358,60239
+57359,23891
+57360,27785
+57361,20698
+57362,22907
+57363,77740
+57364,79282
+57365,71949
+57366,37567
+57367,57385
+57368,41206
+57369,61213
+57370,70392
+57371,69522
+57372,36166
+57373,57372
+57374,57372
+57375,55768
+57376,80618
+57377,70392
+57378,47900
+57379,47899
+57380,63138
+57381,61767
+57382,34126
+57383,34118
+57384,47845
+57385,72861
+57386,69051
+57387,74027
+57388,39111
+57389,53621
+57390,52084
+57391,65793
+57392,52092
+57393,73001
+57394,26298
+57395,40150
+57396,38807
+57397,53986
+57398,62656
+57399,56540
+57400,56540
+57401,21090
+57402,60242
+57403,31095
+57404,79847
+57405,34354
+57406,57681
+57407,57418
+57408,46090
+57409,41083
+57410,41657
+57411,71996
+57412,53716
+57413,31543
+57414,34313
+57415,46092
+57416,52957
+57417,60598
+57418,73838
+57419,57415
+57420,66058
+57421,35682
+57422,69803
+57423,31520
+57424,19129
+57425,31528
+57426,63399
+57427,79282
+57428,57361
+57429,70392
+57430,77740
+57431,36746
+57432,58024
+57433,70110
+57434,62794
+57435,31528
+57436,58595
+57437,81200
+57438,76630
+57439,57982
+57440,65050
+57441,26573
+57442,64142
+57443,53849
+57444,44730
+57445,51856
+57446,26320
+57447,79282
+57448,74640
+57449,25256
+57450,41669
+57451,22107
+57452,62147
+57453,62456
+57454,35480
+57455,74433
+57456,60216
+57457,66039
+57458,60013
+57459,76664
+57460,19228
+57461,19228
+57462,71310
+57463,19129
+57464,51204
+57465,35534
+57466,25094
+57467,45337
+57468,50906
+57469,76162
+57470,69308
+57471,62694
+57472,25113
+57473,50438
+57474,33425
+57475,23644
+57476,37210
+57477,61438
+57478,80370
+57479,43107
+57480,68290
+57481,36981
+57482,42049
+57483,81153
+57484,36979
+57485,58061
+57486,74939
+57487,69927
+57488,27165
+57489,61866
+57490,61871
+57491,35188
+57492,53473
+57493,62152
+57494,79419
+57495,47047
+57496,53619
+57497,53624
+57498,65761
+57499,72877
+57500,48662
+57501,70549
+57502,55761
+57503,69331
+57504,55756
+57505,42351
+57506,50439
+57507,57682
+57508,28307
+57509,68622
+57510,57508
+57511,54811
+57512,79419
+57513,36841
+57514,55686
+57515,77287
+57516,32715
+57517,55692
+57518,39002
+57519,39002
+57520,31212
+57521,26965
+57522,60953
+57523,78654
+57524,37061
+57525,78640
+57526,59230
+57527,51387
+57528,64846
+57529,42076
+57530,21946
+57531,52457
+57532,61622
+57533,69522
+57534,54130
+57535,48318
+57536,58088
+57537,63064
+57538,58776
+57539,49343
+57540,81227
+57541,24007
+57542,39878
+57543,37812
+57544,29513
+57545,33930
+57546,37479
+57547,68677
+57548,81907
+57549,81907
+57550,79189
+57551,75566
+57552,77460
+57553,57932
+57554,78758
+57555,72052
+57556,54044
+57557,21826
+57558,23891
+57559,31729
+57560,57559
+57561,66690
+57562,61144
+57563,72714
+57564,72959
+57565,47886
+57566,37712
+57567,26298
+57568,41917
+57569,57573,46251
+57570,53163
+57571,54038
+57572,19359
+57573,70629
+57574,38694
+57575,38883
+57576,29737
+57577,60073
+57578,41955
+57579,25113
+57580,21729
+57581,62963
+57582,51719
+57583,54774
+57584,31477
+57585,65702
+57586,33621
+57587,61677
+57588,72029
+57589,43193
+57590,57589
+57591,66063
+57592,37394
+57593,54130
+57594,51624
+57595,57613
+57596,64266
+57597,48032
+57598,48539
+57599,24765
+57600,41911
+57601,39563
+57602,78060
+57603,27413
+57604,30937
+57605,31482
+57606,40021
+57607,41953
+57608,38740
+57609,45546
+57610,48030
+57611,50273
+57612,57601
+57613,58783
+57614,58798
+57615,58803
+57616,58800
+57617,39517
+57618,61009
+57619,62757
+57620,63775
+57621,65496
+57622,69508
+57623,70837
+57624,72764
+57625,27592
+57626,23134
+57627,80640
+57628,27363
+57629,27114
+57630,39049
+57631,81626
+57632,39817
+57633,42420
+57634,26602
+57635,70629
+57636,59020
+57637,68869
+57638,52519
+57639,80775
+57640,65795
+57641,80618
+57642,51658
+57643,43307
+57644,61614
+57645,45813
+57646,81796
+57647,59468
+57648,15725
+57649,59935
+57650,59939
+57651,57681
+57652,25175
+57653,57669
+57654,76662
+57655,20261
+57656,57682
+57657,52904
+57658,56485
+57659,39453
+57660,30153
+57661,81918
+57662,41180
+57663,39112
+57664,81065
+57665,52140
+57666,27506
+57667,25426
+57668,39446,36914
+57669,57682,52904
+57670,81161
+57671,58798,52572
+57672,67002
+57673,29626
+57674,56294
+57675,68565
+57676,63340
+57677,52132
+57678,57682,81462
+57679,71595
+57680,19635
+57681,19635
+57682,19438
+57683,61705
+57684,39676
+57685,70033
+57686,63064
+57687,55137
+57688,20755
+57689,56180
+57690,57689
+57691,56492
+57692,32715
+57693,63314
+57694,67277
+57695,61792
+57696,20812
+57697,42481
+57698,56515
+57699,56514
+57700,42481
+57701,53911
+57702,57160
+57703,53182
+57704,27455
+57705,60598
+57706,74939
+57707,54285
+57708,41729
+57709,81482
+57710,65777,36641
+57711,29237
+57712,57720
+57713,19629
+57714,26118
+57715,39049
+57716,57711
+57717,54439
+57718,44160
+57719,79261
+57720,41743
+57721,54562
+57722,54562
+57723,73207
+57724,67608
+57725,35480
+57726,67608
+57727,61715
+57728,48792
+57729,51068
+57730,37824
+57731,61918
+57732,61918
+57733,35557
+57734,58917
+57735,22229
+57736,60155
+57737,20889
+57738,30187
+57739,51068
+57740,56353
+57741,35689
+57742,51562
+57743,54774
+57744,72667
+57745,70387
+57746,20933
+57747,20907
+57748,72959
+57749,56244
+57750,72959
+57751,37041
+57752,20743
+57753,37042
+57754,68945
+57755,51666
+57756,77575
+57757,81080
+57758,38601
+57759,48111
+57760,58088
+57761,42429
+57762,71996
+57763,53716
+57764,78696
+57765,35188
+57766,41332
+57767,30758
+57768,63193
+57769,35255
+57770,30758
+57771,30758
+57772,45813
+57773,30758
+57774,30758
+57775,23232
+57776,30758
+57777,30758
+57778,30758
+57779,49312
+57780,30758
+57781,63250
+57782,60071
+57783,30758
+57784,45096
+57785,30758
+57786,30758
+57787,30758
+57788,30758
+57789,30758
+57790,30758
+57791,30758
+57792,36074,35116
+57793,22853
+57794,30758
+57795,30758
+57796,30758
+57797,30758
+57798,30758
+57799,30758
+57800,30758
+57801,62456
+57802,37318
+57803,78669
+57804,73649
+57805,25606
+57806,35863
+57807,35858
+57808,47407
+57809,26311
+57810,79259
+57811,20079
+57812,22696
+57813,25770
+57814,72503
+57815,36041
+57816,36298
+57817,26409
+57818,40564
+57819,71103
+57820,51019
+57821,76395
+57822,61265
+57823,81944
+57824,78414
+57825,72029
+57826,35863
+57827,35858
+57828,81592
+57829,51150
+57830,31093
+57831,66377
+57832,67365
+57833,72931
+57834,77972
+57835,21620
+57836,54100
+57837,57839
+57838,21718
+57839,35534
+57840,28449
+57841,42115
+57842,42117
+57843,82164
+57844,75521
+57845,18728
+57846,48126
+57847,18728
+57848,42114
+57849,72409
+57850,58578
+57851,50784
+57852,18842
+57853,56179
+57854,60603
+57855,47845
+57856,64142
+57857,71398
+57858,54562,57861
+57859,43362
+57860,25949
+57861,42412
+57862,77171
+57863,21475
+57864,63642
+57865,53203
+57866,77299
+57867,31588
+57868,81746
+57869,67822
+57870,45493
+57871,41911
+57872,73095
+57873,32820
+57874,28418
+57875,29418
+57876,36098
+57877,68355
+57878,59377
+57879,48661
+57880,51069
+57881,53238
+57882,54414
+57883,35376
+57884,68778
+57885,30621
+57886,53613
+57887,30937
+57888,44658
+57889,71341
+57890,80538
+57891,73477
+57892,72931
+57893,45009
+57894,57982
+57895,28346
+57896,48723
+57897,21745
+57898,28535
+57899,55348
+57900,74135
+57901,71837
+57902,72931
+57903,51472
+57904,71866
+57905,71302
+57906,61209
+57907,81602
+57908,77641
+57909,29643
+57910,76104
+57911,29839
+57912,30939
+57913,70426
+57914,59586
+57915,64160
+57916,31259
+57917,26246
+57918,27280
+57919,27326
+57920,38789
+57921,24214
+57922,63060
+57923,46684
+57924,71439
+57925,75057
+57926,19202
+57927,33885
+57928,26579
+57929,19228
+57930,19228
+57931,63065
+57932,19228
+57933,81601
+57934,53705
+57935,30188
+57936,75957
+57937,33754
+57938,60450
+57939,77399
+57940,65999
+57941,39827
+57942,41842
+57943,72046
+57944,26602
+57945,28054
+57946,42429
+57947,61331
+57948,30608
+57949,34602
+57950,61703
+57951,82162
+57952,32718
+57953,18728
+57954,31432
+57955,57954
+57956,21703
+57957,79282
+57958,71996
+57959,53716
+57960,59126
+57961,53701
+57962,38601
+57963,56065
+57964,50875
+57965,49360
+57966,23790
+57967,54044
+57968,48111
+57969,71938
+57970,56065,31759
+57971,36603
+57972,26298
+57973,62029
+57974,44609
+57975,53283
+57976,53283
+57977,52791
+57978,31774
+57979,69005
+57980,69004
+57981,48077
+57982,62184
+57983,32269
+57984,35386
+57985,25094
+57986,31647
+57987,65691
+57988,73997
+57989,34659
+57990,60208
+57991,78755
+57992,63434
+57993,20978
+57994,25087
+57995,55158
+57996,22452
+57997,28878
+57998,27038
+57999,32715
+58000,56450
+58001,21200
+58002,58008
+58003,34559
+58004,34924
+58005,53870
+58006,39767
+58007,58008
+58008,43362
+58009,58012
+58010,48408
+58011,57854
+58012,60603
+58013,64052
+58014,21997
+58015,70629
+58016,60612
+58017,63314
+58018,46524
+58019,35679
+58020,60216
+58021,47716
+58022,43723
+58023,34697
+58024,34149
+58025,71997
+58026,62455
+58027,45813
+58028,63325
+58029,70026
+58030,38600
+58031,27497
+58032,31688
+58033,19737
+58034,45874
+58035,60242
+58036,60271
+58037,20017
+58038,60385
+58039,60786
+58040,29502
+58041,29503
+58042,29237
+58043,58088
+58044,50737
+58045,40578
+58046,16022
+58047,44460
+58048,80583
+58049,41738
+58050,51640
+58051,53221
+58052,54468
+58053,55730
+58054,27150
+58055,59801
+58056,24555
+58057,71173
+58058,71408
+58059,76802
+58060,77105
+58061,81918
+58062,58055
+58063,41735
+58064,61273,44219
+58065,81482
+58066,44104
+58067,58069
+58068,71961
+58069,19311
+58070,72153
+58071,72165
+58072,70392
+58073,59542
+58074,59542
+58075,60117
+58076,61211
+58077,67053
+58078,32718
+58079,44013
+58080,11865
+58081,55761
+58082,68697
+58083,21474
+58084,55753
+58085,21619
+58086,21619
+58087,21621
+58088,40752
+58089,58776
+58090,18728
+58091,36872
+58092,57934
+58093,58088
+58094,48126
+58095,47805
+58096,29738
+58097,38793
+58098,77725
+58099,72959
+58100,75510
+58101,65975
+58102,30621
+58103,21771
+58104,68796
+58105,52655
+58106,58170
+58107,30657
+58108,67272
+58109,20756
+58110,62146
+58111,25306
+58112,41221
+58113,64846
+58114,19650
+58115,58114
+58116,26728
+58117,58177
+58118,21618
+58119,65631
+58120,31245
+58121,22128,71493
+58122,22128
+58123,40282
+58124,57187
+58125,50907
+58126,29737
+58127,64142
+58128,31241
+58129,29737
+58130,49353
+58131,28619
+58132,24046
+58133,20835
+58134,3143
+58135,73018
+58136,21289
+58137,54562
+58138,41410
+58139,23639
+58140,58204
+58141,31853
+58142,19649
+58143,60131
+58144,25115
+58145,49697,81200
+58146,69998
+58147,36088
+58148,42039
+58149,58150
+58150,69118
+58151,81200
+58152,58151
+58153,55795
+58154,58144
+58155,39705
+58156,53913
+58157,28803
+58158,31058
+58159,35626
+58160,51320
+58161,56178
+58162,63065
+58163,68289
+58164,58162
+58165,75019
+58166,51807
+58167,55768
+58168,71315
+58169,19374
+58170,19228
+58171,58119
+58172,28654
+58173,26589
+58174,37712
+58175,71315
+58176,50105
+58177,76256
+58178,78687
+58179,75020
+58180,48319
+58181,56447
+58182,39049
+58183,31596
+58184,66690
+58185,48013
+58186,66279
+58187,23478
+58188,40772
+58189,30147
+58190,61218
+58191,62029
+58192,72559
+58193,64142
+58194,71997
+58195,35386
+58196,22152
+58197,68952
+58198,61154
+58199,32506
+58200,59423
+58201,74904
+58202,72838
+58203,21669
+58204,45813
+58205,71746
+58206,48646
+58207,20584
+58208,23760
+58209,54867
+58210,70416,65760
+58211,23790
+58212,18721
+58213,64142
+58214,39556
+58215,32799
+58216,60476
+58217,34154
+58218,18653
+58219,25727
+58220,61246
+58221,62456
+58222,72959
+58223,34197
+58224,21218
+58225,20355
+58226,35309
+58227,82163
+58228,82164
+58229,76210
+58230,58226
+58231,43110
+58232,20120
+58233,43113
+58234,28091
+58235,60216
+58236,28952
+58237,51472
+58238,82050
+58239,77209
+58240,31241
+58241,48400
+58242,55688
+58243,37173
+58244,54562
+58245,68867
+58246,61223
+58247,66965
+58248,75702
+58249,29195
+58250,40003
+58251,39585
+58252,77636
+58253,34587
+58254,34585
+58255,70782
+58256,58196
+58257,78747
+58258,60495
+58259,60496
+58260,65240
+58261,57984
+58262,81786
+58263,55963
+58264,53710
+58265,71996
+58266,36918
+58267,45570
+58268,48318
+58269,77636
+58270,71996
+58271,57961
+58272,47267
+58273,58576
+58274,26448
+58275,79953
+58276,20905
+58277,59475
+58278,58200
+58279,20691
+58280,74807
+58281,56179
+58282,80440
+58283,42467
+58284,65216
+58285,65213
+58286,37479
+58287,59441
+58288,70799,36747
+58289,31601
+58290,81425
+58291,81176
+58292,54562
+58293,54082
+58294,37810
+58295,35167
+58296,62757
+58297,45302
+58298,25256
+58299,26911
+58300,46892
+58301,58162
+58302,31787
+58303,35557
+58304,65108
+58305,48126
+58306,34327
+58307,62781
+58308,35664
+58309,48038
+58310,21710
+58311,37642
+58312,23906
+58313,23906
+58314,77636
+58315,25263
+58316,25263
+58317,36923
+58318,22350
+58319,20575
+58320,20577
+58321,52469
+58322,23906
+58323,52788
+58324,58305
+58325,76160
+58326,77636
+58327,42481
+58328,63064
+58329,59549
+58330,67883
+58331,68317
+58332,49155
+58333,57934
+58334,60572
+58335,62059
+58336,57934
+58337,37310
+58338,49155
+58339,60216
+58340,64864
+58341,39676
+58342,35142
+58343,18840
+58344,70033
+58345,22337
+58346,48126
+58347,58346
+58348,58346
+58349,53716
+58350,61317
+58351,59549
+58352,42481
+58353,53701
+58354,72877
+58355,41899
+58356,55815
+58357,48321
+58358,46760
+58359,68691
+58360,36778
+58361,10650
+58362,22414
+58363,21192,77992
+58364,38561
+58365,60216
+58366,37310
+58367,39152
+58368,38807
+58369,65108
+58370,38793
+58371,69358
+58372,47908
+58373,25807
+58374,26546
+58375,48579
+58376,55374
+58377,45096
+58378,26298
+58379,45096
+58380,35792
+58381,78647
+58382,60216
+58383,66786
+58384,22036
+58385,72421
+58386,58432
+58387,60216
+58388,58387
+58389,61220
+58390,71842,51894
+58391,69439
+58392,29928
+58393,38737
+58394,77277
+58395,39888
+58396,39889
+58397,78698
+58398,22149
+58399,42228
+58400,69860
+58401,21561
+58402,40745
+58403,77444
+58404,31477
+58405,58378
+58406,78640
+58407,65107
+58408,66040
+58409,34915
+58410,25495
+58411,61202
+58412,74281
+58413,59555
+58414,62089
+58415,54431
+58416,63117
+58417,63124
+58418,47908
+58419,64846
+58420,31690
+58421,60138
+58422,31109
+58423,79000
+58424,79001
+58425,70214
+58426,22095
+58427,47899
+58428,64941
+58429,25127
+58430,72698
+58431,27224
+58432,65581
+58433,74535
+58434,26965
+58435,29797
+58436,52102
+58437,27419
+58438,31647
+58439,42518
+58440,70549
+58441,29513
+58442,68801
+58443,71499
+58444,62190
+58445,76430
+58446,68171
+58447,58383
+58448,30275
+58449,38972
+58450,62147
+58451,34305
+58452,51665
+58453,21703
+58454,33650
+58455,37145
+58456,79282
+58457,48126
+58458,65956
+58459,39614,43707
+58460,70392
+58461,65170
+58462,49888
+58463,76196
+58464,78432
+58465,11870
+58466,32986
+58467,59308
+58468,53717
+58469,73341
+58470,51958
+58471,78736
+58472,18853
+58473,60072
+58474,73863
+58475,25087
+58476,21905
+58477,81603
+58478,32572
+58479,21088
+58480,24059
+58481,24057
+58482,52860
+58483,50297
+58484,27343
+58485,27876
+58486,80807
+58487,28616
+58488,30073
+58489,30974
+58490,30975
+58491,32828
+58492,57289
+58493,36317
+58494,57867
+58495,19202
+58496,46014
+58497,79271
+58498,38392
+58499,21296
+58500,37237
+58501,38822
+58502,38868
+58503,38871
+58504,39572
+58505,40619
+58506,40747
+58507,38035
+58508,42225
+58509,63176
+58510,49997
+58511,61078
+58512,69408
+58513,63218
+58514,27564
+58515,28123
+58516,66260
+58517,63224
+58518,45556
+58519,48013
+58520,27280
+58521,37237
+58522,31213
+58523,65929
+58524,50652,34199
+58525,51613
+58526,51825
+58527,51825
+58528,77045
+58529,67277
+58530,62145
+58531,69653
+58532,44550
+58533,22688
+58534,25920
+58535,59645
+58536,59646
+58537,38625
+58538,62043
+58539,22054
+58540,62948
+58541,63124
+58542,64949
+58543,34924
+58544,74462
+58545,69128
+58546,41090
+58547,50320
+58548,57741
+58549,54774
+58550,70403
+58551,70404
+58552,70675
+58553,55490
+58554,73550
+58555,48478
+58556,75917
+58557,81615
+58558,76664
+58559,58558
+58560,60178
+58561,53607
+58562,45183
+58563,55734
+58564,74220
+58565,74132
+58566,38512
+58567,74281
+58568,50104
+58569,58144
+58570,53012
+58571,71517
+58572,54953
+58573,43707
+58574,58162
+58575,56165
+58576,65956
+58577,58578
+58578,42114
+58579,24331
+58580,58579
+58581,43545
+58582,60216
+58583,26602
+58584,36542
+58585,66040
+58586,72959
+58587,65691
+58588,28028
+58589,25519
+58590,59901
+58591,67675
+58592,19069
+58593,67675
+58594,19069
+58595,45813
+58596,56950
+58597,54642
+58598,33845
+58599,50296
+58600,53605
+58601,41444
+58602,50215
+58603,27721
+58604,81161
+58605,36126
+58606,31043
+58607,40752
+58608,69818
+58609,28775
+58610,38053
+58611,28792
+58612,28792
+58613,47946
+58614,57187
+58615,58162
+58616,31058
+58617,9238
+58618,38053
+58619,58158
+58620,53624
+58621,62910
+58622,75152
+58623,71719
+58624,20727
+58625,80583
+58626,54825
+58627,24887
+58628,19069
+58629,24354
+58630,28780,42246
+58631,60598
+58632,34320
+58633,25844
+58634,58618
+58635,56179
+58636,45744
+58637,77945
+58638,19242
+58639,20963
+58640,20981
+58641,20977
+58642,53717
+58643,46553
+58644,81578
+58645,74462
+58646,45689
+58647,24442
+58648,23019
+58649,81647
+58650,59659
+58651,32672
+58652,76798
+58653,19629
+58654,67670
+58655,69662
+58656,73207
+58657,73897
+58658,69887
+58659,46876
+58660,35534
+58661,42246
+58662,46267
+58663,50649
+58664,47487
+58665,31058
+58666,77467
+58667,31607
+58668,69050
+58669,47077
+58670,16971
+58671,41003
+58672,69566
+58673,66862
+58674,64831
+58675,75763
+58676,73152
+58677,27405
+58678,50396
+58679,37478
+58680,27524
+58681,46599
+58682,64409
+58683,38690
+58684,60883
+58685,25022
+58686,19412
+58687,25259
+58688,18740
+58689,61159
+58690,74067
+58691,60385
+58692,31353
+58693,21219
+58694,76248
+58695,23790
+58696,35922
+58697,19438
+58698,42003
+58699,20751
+58700,30391
+58701,32181
+58702,26416
+58703,58710
+58704,32181
+58705,23599
+58706,47314
+58707,58700
+58708,66515
+58709,30391
+58710,31616
+58711,69860
+58712,77160
+58713,44328
+58714,53453
+58715,30659
+58716,30937
+58717,24816
+58718,81643
+58719,54043
+58720,58710
+58721,81630,58705
+58722,27715
+58723,37777
+58724,32753
+58725,53454
+58726,56316
+58727,26298
+58728,61247
+58729,30404
+58730,81506
+58731,67474
+58732,73743
+58733,50717
+58734,58739
+58735,73837
+58736,24781
+58737,59020
+58738,77641
+58739,21745
+58740,23368
+58741,24630
+58742,48414
+58743,57296
+58744,32578
+58745,73072
+58746,42154
+58747,80753
+58748,59849
+58749,66475
+58750,39818
+58751,80061
+58752,51901
+58753,46695
+58754,37718
+58755,47128
+58756,35557
+58757,65767
+58758,65754
+58759,22128
+58760,50716
+58761,54049
+58762,22128
+58763,62957
+58764,28346
+58765,65927
+58766,44816
+58767,57187
+58768,79009
+58769,75751
+58770,41454
+58771,28104
+58772,50593
+58773,79026
+58774,31618
+58775,53524
+58776,74939
+58777,78755
+58778,71579
+58779,39578
+58780,18806
+58781,78703
+58782,64142
+58783,30073,30498
+58784,66900
+58785,27375
+58786,58384
+58787,19800,42097
+58788,25574
+58789,26166,21281
+58790,57280
+58791,40752
+58792,44226
+58793,30351
+58794,67814
+58795,67665
+58796,78286
+58797,70629
+58798,21765
+58799,51475
+58800,21669,40080
+58801,21276
+58802,77287
+58803,44000
+58804,42351
+58805,61713
+58806,69331
+58807,56179
+58808,44451
+58809,41410
+58810,39049
+58811,77985
+58812,56703
+58813,43809
+58814,38718
+58815,66035
+58816,53033
+58817,51738
+58818,75439
+58819,18918
+58820,69077
+58821,74535
+58822,35787
+58823,14489
+58824,25256
+58825,9930
+58826,21703
+58827,64785
+58828,79282
+58829,57934
+58830,56941
+58831,19959
+58832,44214
+58833,79640
+58834,81918
+58835,56492
+58836,31029
+58837,30480
+58838,79434
+58839,58854,24251
+58840,58839,25432
+58841,56492
+58842,21433
+58843,58840
+58844,37110
+58845,21433
+58846,21433
+58847,43113
+58848,21432
+58849,21433
+58850,76981
+58851,21433
+58852,58857
+58853,68290
+58854,36981
+58855,21433,59550
+58856,58857
+58857,58839,82164
+58858,61404
+58859,21433
+58860,68342
+58861,25017
+58862,71954
+58863,67479
+58864,59549
+58865,74498
+58866,53064
+58867,81578
+58868,44474
+58869,41279
+58870,26489
+58871,42093
+58872,54082
+58873,67814
+58874,54121
+58875,55444
+58876,61355
+58877,45009
+58878,53524
+58879,21568
+58880,36999
+58881,65795
+58882,79467
+58883,23206
+58884,79485
+58885,29839
+58886,32530
+58887,51523
+58888,77641
+58889,21477
+58890,29526
+58891,57241
+58892,79261
+58893,31062
+58894,18740
+58895,39318
+58896,41290
+58897,35858
+58898,67946
+58899,43509
+58900,39318
+58901,20690
+58902,77641
+58903,26668
+58904,46599
+58905,70033
+58906,38601,77147
+58907,31430
+58908,24753
+58909,74939
+58910,74939
+58911,81717
+58912,43104
+58913,44013
+58914,60216
+58915,81781
+58916,31616
+58917,31861
+58918,65795
+58919,61530
+58920,29349
+58921,26884
+58922,23419
+58923,78250
+58924,27556
+58925,32362
+58926,40003
+58927,38740
+58928,18728
+58929,21703
+58930,27497
+58931,36710
+58932,35181
+58933,79282
+58934,48187
+58935,48126
+58936,33675
+58937,33159
+58938,56166
+58939,77641
+58940,76120
+58941,38108
+58942,22665
+58943,73696,81901
+58944,70392
+58945,61342
+58946,25094
+58947,58734
+58948,69633
+58949,25094
+58950,35532
+58951,45559
+58952,51316
+58953,58948
+58954,32965
+58955,37762
+58956,76120
+58957,40292
+58958,58776
+58959,39578
+58960,58776
+58961,61159
+58962,43104
+58963,45035
+58964,23751
+58965,21088
+58966,39502
+58967,63953
+58968,21090
+58969,54485
+58970,64410
+58971,21959
+58972,22684
+58973,81039
+58974,46506
+58975,58916
+58976,21622
+58977,21474
+58978,62981
+58979,60715
+58980,44658
+58981,60992
+58982,60216
+58983,70476
+58984,79630
+58985,58088
+58986,56832
+58987,50864
+58988,77985
+58989,55505
+58990,76120
+58991,76120
+58992,23792
+58993,30391
+58994,53861
+58995,75751
+58996,51000
+58997,78583
+58998,76597
+58999,25843
+59000,39049
+59001,54528
+59002,53648
+59003,1594,19069
+59004,73476
+59005,70715
+59006,32218
+59007,76591
+59008,75291
+59009,36537
+59010,43809
+59011,38053
+59012,4374
+59013,48058
+59014,60536
+59015,55688
+59016,37179
+59017,37179
+59018,41743
+59019,49391
+59020,53454
+59021,21729
+59022,53731
+59023,26470,29744
+59024,28417
+59025,42094
+59026,29244
+59027,29819
+59028,33548
+59029,36007
+59030,37494
+59031,39423
+59032,34924
+59033,25481
+59034,52148
+59035,39122
+59036,33422
+59037,20690
+59038,57508
+59039,61336
+59040,41998
+59041,37721
+59042,59542
+59043,59020
+59044,62447
+59045,77180
+59046,59020
+59047,81801
+59048,79468
+59049,33712
+59050,25306
+59051,27514
+59052,34437
+59053,41203
+59054,32691
+59055,21276
+59056,77287
+59057,80613
+59058,81601
+59059,59020
+59060,63064
+59061,63064
+59062,63064
+59063,27524
+59064,37162
+59065,23906
+59066,77227
+59067,14491
+59068,22507
+59069,20763
+59070,27041
+59071,40564
+59072,60868
+59073,59072
+59074,59020
+59075,35926
+59076,68854
+59077,68352
+59078,79086
+59079,18511
+59080,19069
+59081,73495
+59082,31413
+59083,59084
+59084,65508
+59085,61213
+59086,68374
+59087,65584
+59088,65995
+59089,49419
+59090,39348
+59091,74133
+59092,63072
+59093,35665
+59094,77277
+59095,71686
+59096,48136
+59097,62149
+59098,24437
+59099,31707
+59100,70782
+59101,20017
+59102,49651
+59103,80460
+59104,21477
+59105,47389
+59106,54218
+59107,81789
+59108,81781
+59109,19333
+59110,59286
+59111,30882
+59112,19944
+59113,59159
+59114,66377
+59115,58012
+59116,39936
+59117,50717
+59118,44696
+59119,29883
+59120,48540
+59121,57927
+59122,62976
+59123,70375
+59124,64109
+59125,39225
+59126,36900
+59127,25673,34356
+59128,45029
+59129,18663
+59130,52605
+59131,52634
+59132,29368
+59133,59159
+59134,39116
+59135,64160
+59136,31540
+59137,73007
+59138,48126
+59139,41107
+59140,30275
+59141,49013
+59142,36072
+59143,55963
+59144,70474
+59145,49945
+59146,63598
+59147,63605
+59148,68211
+59149,59204
+59150,80047
+59151,41279
+59152,40740
+59153,60271
+59154,66356
+59155,39777
+59156,59126
+59157,45029
+59158,38984
+59159,21922
+59160,63586
+59161,45826
+59162,61703
+59163,59088
+59164,43398
+59165,58166
+59166,59169
+59167,24823
+59168,49103
+59169,59165
+59170,55854
+59171,69464
+59172,19629
+59173,56456
+59174,48319
+59175,60285
+59176,37832
+59177,46553
+59178,71493
+59179,48071
+59180,48084
+59181,79282
+59182,20112
+59183,52691
+59184,35879
+59185,59020
+59186,20759
+59187,80174
+59188,29738
+59189,60216
+59190,66377
+59191,53717
+59192,61263
+59193,20760
+59194,42505
+59195,58166
+59196,49858
+59197,64142
+59198,63809
+59199,53473
+59200,19362
+59201,19452
+59202,52996
+59203,49945
+59204,59126
+59205,74939
+59206,59128
+59207,41719
+59208,43364
+59209,61302
+59210,61309
+59211,61304
+59212,72451
+59213,31100
+59214,33375
+59215,53849
+59216,44730
+59217,51856
+59218,69254
+59219,61161
+59220,61456
+59221,74241
+59222,74640
+59223,23966
+59224,57333
+59225,41417
+59226,49483
+59227,30900
+59228,29327
+59229,20307
+59230,53476
+59231,38221
+59232,31481
+59233,62625
+59234,24389
+59235,31343
+59236,42387
+59237,77277
+59238,77277
+59239,23869
+59240,30684
+59241,49079
+59242,66954
+59243,52959
+59244,52153
+59245,76682
+59246,71838
+59247,76517
+59248,41264
+59249,23966
+59250,56361
+59251,50912
+59252,38807
+59253,19655
+59254,34491
+59255,55013
+59256,65116
+59257,59432
+59258,42093
+59259,52679
+59260,53275
+59261,56080
+59262,46935
+59263,27596
+59264,21127
+59265,67275
+59266,51174
+59267,63251
+59268,48077
+59269,81578
+59270,67641
+59271,79282
+59272,48126
+59273,68933
+59274,22107
+59275,18663
+59276,81578
+59277,68697
+59278,40701
+59279,68697
+59280,48269,40704
+59281,82055
+59282,82055
+59283,55668
+59284,55662
+59285,31945
+59286,24306
+59287,43444
+59288,60032
+59289,24801
+59290,37832
+59291,37832
+59292,22000
+59293,63187
+59294,41728
+59295,45812
+59296,45813
+59297,45316
+59298,66965
+59299,66977
+59300,45813
+59301,45689
+59302,66035
+59303,31165
+59304,51468
+59305,76251
+59306,57333
+59307,65691
+59308,31158
+59309,78179
+59310,75146
+59311,58582
+59312,70427
+59313,81626
+59314,55734
+59315,43911
+59316,59333
+59317,50717
+59318,40760
+59319,21174
+59320,21174
+59321,21810
+59322,28164
+59323,25763
+59324,32185
+59325,34589
+59326,34698
+59327,35150
+59328,37104
+59329,79277
+59330,79387
+59331,47814
+59332,47844
+59333,21930
+59334,31245
+59335,51836
+59336,79376
+59337,41846
+59338,25092
+59339,23538
+59340,28475
+59341,60612
+59342,46610
+59343,63348
+59344,39111
+59345,40926
+59346,64142
+59347,34735
+59348,53454
+59349,60800
+59350,19497
+59351,79172
+59352,74235
+59353,31115
+59354,25115
+59355,73838
+59356,19497
+59357,81578
+59358,60216
+59359,39813
+59360,65700
+59361,26577
+59362,31690
+59363,68831
+59364,81162
+59365,60396
+59366,74067
+59367,79608
+59368,38043
+59369,24188
+59370,27929
+59371,26586
+59372,48771
+59373,71595
+59374,59375
+59375,58162
+59376,60216
+59377,71314
+59378,19541
+59379,69335
+59380,58168
+59381,61796
+59382,49600
+59383,42094
+59384,43313
+59385,61766
+59386,75677
+59387,61796
+59388,34949
+59389,59379
+59390,80046
+59391,22127
+59392,11870
+59393,32522
+59394,20763
+59395,73152
+59396,33799
+59397,33799
+59398,33799
+59399,33799
+59400,62767
+59401,28137
+59402,22268
+59403,33793
+59404,22853
+59405,81161
+59406,50802
+59407,33585
+59408,76518
+59409,40619
+59410,49444
+59411,60177
+59412,51204
+59413,51894
+59414,41054
+59415,60177
+59416,70524
+59417,76429
+59418,57897
+59419,68809
+59420,80483
+59421,34433
+59422,55756
+59423,73837
+59424,64949
+59425,49343
+59426,28539
+59427,59420
+59428,67991
+59429,55443
+59430,61078
+59431,77585
+59432,27408
+59433,60771
+59434,69744
+59435,77357
+59436,79114
+59437,60216
+59438,73863,76000
+59439,22799
+59440,59775
+59441,24306
+59442,37803
+59443,34041
+59444,65861
+59445,74132
+59446,55494
+59447,57066
+59448,66260
+59449,69444
+59450,39578
+59451,37179
+59452,79608
+59453,19793
+59454,19124
+59455,51651
+59456,35362
+59457,48154
+59458,77518
+59459,78059
+59460,79821
+59461,74027
+59462,47746
+59463,49684
+59464,50875
+59465,62159,68779
+59466,76664
+59467,75843
+59468,76633
+59469,53378
+59470,38807
+59471,59336
+59472,60062
+59473,63198
+59474,35557
+59475,41005
+59476,67594
+59477,50691
+59478,31047
+59479,19342
+59480,31048
+59481,27514
+59482,29237
+59483,81643
+59484,25256
+59485,73186
+59486,54446
+59487,81612
+59488,35838
+59489,51640
+59490,76691
+59491,51069
+59492,51701
+59493,55756
+59494,29736
+59495,62145
+59496,23694
+59497,22728
+59498,36242
+59499,69311
+59500,28764
+59501,44032
+59502,53637
+59503,59508
+59504,71686
+59505,10154
+59506,12335
+59507,63187
+59508,60744
+59509,61592
+59510,70656
+59511,81350
+59512,78635
+59513,65869
+59514,60078
+59515,70033
+59516,69400
+59517,76147
+59518,64316
+59519,72503
+59520,77014
+59521,69319
+59522,57904
+59523,50875
+59524,35926
+59525,21273
+59526,36714
+59527,79635
+59528,49484
+59529,50784
+59530,51962
+59531,53717
+59532,50885
+59533,50889
+59534,48768
+59535,39446
+59536,22152
+59537,72959
+59538,50637
+59539,21882
+59540,37548
+59541,80483
+59542,51468
+59543,51468
+59544,39225
+59545,54253,48083
+59546,59547
+59547,58162
+59548,60598
+59549,47475
+59550,53710
+59551,38883
+59552,64142
+59553,59541
+59554,43740
+59555,27777,70091
+59556,30073
+59557,30073
+59558,30073
+59559,21474
+59560,22734
+59561,68128
+59562,35004
+59563,2498
+59564,72283
+59565,41136
+59566,57669
+59567,52904,45382
+59568,4374
+59569,49483
+59570,71318
+59571,19438
+59572,59283
+59573,59284
+59574,78668
+59575,37870
+59576,56116
+59577,52268
+59578,81785
+59579,3704
+59580,41107
+59581,34833
+59582,63416
+59583,79471
+59584,80253
+59585,58583
+59586,33488
+59587,23891
+59588,34285,67582
+59589,71310
+59590,59587
+59591,56009
+59592,71686
+59593,38690
+59594,52773
+59595,60733
+59596,27167
+59597,35557
+59598,58917
+59599,59497
+59600,74296
+59601,28845
+59602,61997
+59603,63003
+59604,47747
+59605,76657
+59606,75472
+59607,33793
+59608,33799
+59609,55393
+59610,46550
+59611,59610
+59612,36338
+59613,75860
+59614,21276
+59615,21745
+59616,73412
+59617,52497
+59618,69696
+59619,34808
+59620,70033
+59621,20749
+59622,78755
+59623,27970
+59624,61440
+59625,28848
+59626,25412
+59627,65095
+59628,50971,61444
+59629,69860
+59630,33476
+59631,44240
+59632,75668
+59633,33498
+59634,58137
+59635,74130
+59636,79963
+59637,64833
+59638,51154
+59639,66265
+59640,28702
+59641,33928
+59642,65133
+59643,55030
+59644,59643
+59645,32269
+59646,30650
+59647,64833
+59648,45553
+59649,59645
+59650,25884
+59651,34609
+59652,74275
+59653,65589
+59654,65201
+59655,51068
+59656,50917
+59657,50918
+59658,50919
+59659,32642
+59660,53592
+59661,49079
+59662,61612
+59663,78096,61415
+59664,71719
+59665,40929
+59666,70033
+59667,68871
+59668,58099
+59669,45196
+59670,77637
+59671,77396
+59672,68829
+59673,36256
+59674,40283
+59675,63444
+59676,57556
+59677,71321
+59678,20365
+59679,71493
+59680,34285
+59681,61054
+59682,57932
+59683,76664
+59684,37179,36641
+59685,41743
+59686,27093
+59687,24726
+59688,47327
+59689,34808
+59690,44460
+59691,73413
+59692,67957
+59693,59698
+59694,81176
+59695,59698
+59696,57280
+59697,76422
+59698,60400
+59699,59698
+59700,77045
+59701,71686
+59702,61614
+59703,28952
+59704,37181
+59705,50919
+59706,27167
+59707,25982
+59708,72503
+59709,59970
+59710,79261
+59711,48787
+59712,74275
+59713,37179,61927
+59714,41743
+59715,49217
+59716,62284
+59717,23104
+59718,35826
+59719,40327
+59720,46386
+59721,28323
+59722,58647
+59723,67558
+59724,60032
+59725,50254
+59726,44418
+59727,41589
+59728,38555
+59729,64930
+59730,19739
+59731,78755
+59732,67381
+59733,62145
+59734,29626
+59735,63677
+59736,79260,46907
+59737,51120
+59738,21544
+59739,66786
+59740,31115
+59741,81482
+59742,37181
+59743,57249
+59744,60733
+59745,38529
+59746,2492
+59747,17466
+59748,39676
+59749,19069
+59750,28187
+59751,19421
+59752,70568
+59753,40036
+59754,43310
+59755,67819
+59756,79282
+59757,59752
+59758,59752
+59759,72066
+59760,39528
+59761,47992
+59762,51120
+59763,57066
+59764,77985
+59765,66502
+59766,68230
+59767,58308
+59768,58893
+59769,69010
+59770,60273
+59771,46410,59153
+59772,73018
+59773,74487
+59774,75057
+59775,77585
+59776,33068
+59777,77319
+59778,53716
+59779,77801
+59780,59795
+59781,60284
+59782,48111
+59783,59782
+59784,59782
+59785,59782
+59786,27562,23628
+59787,25855
+59788,20584
+59789,41972
+59790,34585
+59791,53624
+59792,60273
+59793,59153
+59794,44470
+59795,68110
+59796,56450
+59797,61890
+59798,54285
+59799,52084
+59800,28954
+59801,66613
+59802,81626
+59803,34924
+59804,59306
+59805,44658
+59806,39002
+59807,20743
+59808,46268
+59809,70654
+59810,38716
+59811,9930
+59812,60216
+59813,30226
+59814,59811
+59815,56802
+59816,75732
+59817,65641
+59818,60870
+59819,53180
+59820,46252
+59821,63399
+59822,77015
+59823,25018
+59824,47442
+59825,68619
+59826,68619
+59827,59826
+59828,59776
+59829,27296
+59830,22406
+59831,22790
+59832,48795
+59833,45813
+59834,45813
+59835,77508
+59836,70392
+59837,76435
+59838,21544
+59839,28091
+59840,40036
+59841,48127
+59842,53624
+59843,53621
+59844,43310
+59845,28091
+59846,74943
+59847,53628
+59848,70651,22305
+59849,37776
+59850,81794
+59851,74689
+59852,36404
+59853,63544
+59854,32194
+59855,50874
+59856,59857
+59857,48400
+59858,59645
+59859,35433
+59860,45028
+59861,23869
+59862,67459
+59863,63819
+59864,44005
+59865,39936
+59866,32246
+59867,81794
+59868,25574
+59869,65303
+59870,49468
+59871,69573
+59872,19421
+59873,36973
+59874,45412
+59875,21200
+59876,29845
+59877,80238
+59878,61182
+59879,64142
+59880,48336
+59881,48251
+59882,18720
+59883,34671
+59884,69448
+59885,38012
+59886,22112
+59887,60018
+59888,25202
+59889,48735
+59890,7922
+59891,72116
+59892,53717
+59893,20977
+59894,22640
+59895,59893
+59896,59893
+59897,59893
+59898,59893
+59899,59898
+59900,38053
+59901,59893
+59902,47650
+59903,50296
+59904,38237
+59905,38051
+59906,65767
+59907,32177
+59908,61609
+59909,40510
+59910,40414
+59911,22420
+59912,40411
+59913,59475
+59914,6053
+59915,81277
+59916,59912
+59917,41410
+59918,30300
+59919,34022
+59920,61709
+59921,21407
+59922,46186
+59923,58471
+59924,80583
+59925,45813
+59926,54655
+59927,57594
+59928,57594
+59929,77992
+59930,40139
+59931,81713
+59932,71325
+59933,32940
+59934,29744
+59935,65627
+59936,56901
+59937,41856
+59938,61202
+59939,23896
+59940,53805
+59941,76338
+59942,72890
+59943,79224
+59944,61866
+59945,61871
+59946,77658
+59947,79419
+59948,22032
+59949,22034
+59950,42163
+59951,20517
+59952,13818
+59953,21112
+59954,58803
+59955,54562
+59956,23062
+59957,78097
+59958,55121
+59959,58616
+59960,36602
+59961,53717
+59962,41772
+59963,74891
+59964,69472
+59965,73284
+59966,73997
+59967,62456
+59968,40752
+59969,39295
+59970,44437
+59971,59970
+59972,51778
+59973,64696
+59974,38727
+59975,45813
+59976,42225
+59977,41625
+59978,71463
+59979,78020
+59980,40564
+59981,39049
+59982,54469
+59983,71719
+59984,67957
+59985,69503
+59986,70033
+59987,19533,28796
+59988,35557
+59989,77641
+59990,77641
+59991,65847
+59992,54655
+59993,54659
+59994,40564
+59995,59596
+59996,67972
+59997,61127
+59998,38053
+59999,38053
+60000,78455
+60001,20351
+60002,28778
+60003,28790
+60004,58158
+60005,47830
+60006,20115
+60007,36238
+60008,80009
+60009,25395
+60010,39049
+60011,60216
+60012,28591
+60013,63334
+60014,53174
+60015,65929
+60016,60604
+60017,31162
+60018,30267
+60019,23258
+60020,69130
+60021,68693
+60022,41588
+60023,74488
+60024,60032
+60025,60032
+60026,51523
+60027,21480
+60028,60216
+60029,67675
+60030,19069
+60031,29067
+60032,72248
+60033,40030
+60034,31858
+60035,40032
+60036,40031
+60037,30254
+60038,55736
+60039,34873
+60040,22248
+60041,34874
+60042,55758
+60043,68802
+60044,55768
+60045,60166
+60046,34249
+60047,77575
+60048,39210
+60049,58162
+60050,61246
+60051,67410
+60052,21959
+60053,37119
+60054,23232
+60055,70629
+60056,27281
+60057,47716
+60058,72959
+60059,35679
+60060,31094
+60061,21838
+60062,75843
+60063,35616
+60064,40825,44221
+60065,70392
+60066,36942
+60067,79282
+60068,46267
+60069,46268
+60070,63813
+60071,62713
+60072,18969
+60073,19200
+60074,69977
+60075,25234
+60076,37991
+60077,46901
+60078,76877
+60079,52773
+60080,60078
+60081,69860
+60082,38375
+60083,21669
+60084,48333
+60085,43313
+60086,72271
+60087,61259,32580
+60088,28153
+60089,56451
+60090,21701
+60091,35534
+60092,28091
+60093,67432
+60094,79282
+60095,27556
+60096,69254
+60097,32580
+60098,64014
+60099,54562
+60100,35308
+60101,32580
+60102,77509,29288
+60103,47442
+60104,60088
+60105,20698
+60106,60088
+60107,60088
+60108,51649
+60109,51464
+60110,31447
+60111,57411
+60112,57412
+60113,21703
+60114,47805
+60115,21477
+60116,31447
+60117,76657
+60118,59308
+60119,37802
+60120,43111
+60121,63809
+60122,81612
+60123,58628
+60124,21155
+60125,25843
+60126,45096
+60127,50604
+60128,55494
+60129,31023
+60130,75058
+60131,63663
+60132,35534
+60133,34587
+60134,34585
+60135,53848
+60136,59775
+60137,74575
+60138,37479
+60139,75016
+60140,70183
+60141,25496
+60142,58010
+60143,60088
+60144,78776
+60145,41022
+60146,26830
+60147,61263
+60148,25087
+60149,61261
+60150,73837
+60151,30454
+60152,21802
+60153,53848
+60154,28091
+60155,69254
+60156,48126
+60157,81066
+60158,74067
+60159,45813
+60160,68622
+60161,68676
+60162,21025
+60163,51160
+60164,54717
+60165,50297
+60166,36802
+60167,48247
+60168,52605
+60169,39049
+60170,76989
+60171,80436
+60172,67675
+60173,19069
+60174,62081
+60175,35167
+60176,19396
+60177,21328
+60178,35679
+60179,61942
+60180,38637
+60181,53474
+60182,77451
+60183,65861
+60184,20635
+60185,78816
+60186,67951
+60187,79282
+60188,70568
+60189,58067
+60190,31196
+60191,58610
+60192,58616
+60193,24804
+60194,73537
+60195,39063
+60196,6852
+60197,65240
+60198,32926
+60199,81807
+60200,26945
+60201,55346
+60202,52497
+60203,80175
+60204,60166
+60205,54642
+60206,31372
+60207,19936
+60208,52876
+60209,31668
+60210,47814
+60211,23005
+60212,23946
+60213,41743
+60214,43911
+60215,46885
+60216,58166,28054
+60217,19735
+60218,60216
+60219,21218
+60220,35342
+60221,35342
+60222,60242
+60223,60216
+60224,56589
+60225,31165
+60226,27562
+60227,28702
+60228,35196
+60229,37478
+60230,79162
+60231,38789
+60232,41325
+60233,57190
+60234,47830
+60235,51069
+60236,51836
+60237,63278
+60238,63316
+60239,65700
+60240,65931
+60241,28132
+60242,22164
+60243,53916
+60244,64282,60245
+60245,75974
+60246,47409
+60247,60216
+60248,37624
+60249,77945
+60250,54441,68990
+60251,27892
+60252,34609
+60253,21218
+60254,29611
+60255,68793
+60256,25087
+60257,60216
+60258,30891
+60259,30883
+60260,62409
+60261,65694
+60262,51778
+60263,48146
+60264,19228
+60265,35491
+60266,64972
+60267,31151
+60268,42451
+60269,33455
+60270,81808
+60271,69439
+60272,38566
+60273,65943
+60274,65770
+60275,15899
+60276,6663
+60277,9196
+60278,34797
+60279,35679
+60280,70580
+60281,20743
+60282,77075
+60283,25861
+60284,28774
+60285,61703
+60286,48148
+60287,45009
+60288,76981
+60289,67957
+60290,48945
+60291,20743
+60292,56009
+60293,30989
+60294,69860
+60295,33479
+60296,27562
+60297,31115
+60298,31115
+60299,31115
+60300,40718
+60301,38839
+60302,65641
+60303,26160
+60304,39563
+60305,72791
+60306,72791
+60307,25508
+60308,54315
+60309,26884
+60310,49486
+60311,49487
+60312,50424
+60313,38137
+60314,38135
+60315,56323
+60316,69408
+60317,70549
+60318,71719
+60319,51985
+60320,21272
+60321,59825
+60322,66786
+60323,41307
+60324,53355
+60325,58158
+60326,27757
+60327,49178,54825
+60328,42367
+60329,57594,41306
+60330,43112
+60331,37115
+60332,55252
+60333,52211
+60334,78578
+60335,56080
+60336,53611
+60337,78671
+60338,30391
+60339,64424
+60340,41856
+60341,56894
+60342,72575
+60343,40752
+60344,23869
+60345,11858
+60346,20120
+60347,58921
+60348,6634
+60349,38950
+60350,71572
+60351,25087
+60352,58088
+60353,53283
+60354,48126
+60355,33102
+60356,54440
+60357,25256
+60358,69887
+60359,60385
+60360,61317
+60361,70033
+60362,52990
+60363,65929
+60364,47494
+60365,58778
+60366,74973
+60367,58088
+60368,20883
+60369,78755
+60370,53717
+60371,45458
+60372,42489
+60373,60375
+60374,60371
+60375,53716
+60376,30391
+60377,53716
+60378,65121
+60379,65509
+60380,52431
+60381,79282
+60382,21218
+60383,72970
+60384,61655
+60385,76664
+60386,35495
+60387,29810
+60388,29810
+60389,29810
+60390,29810
+60391,56179
+60392,54913
+60393,60385
+60394,76664,60382
+60395,71842
+60396,42096
+60397,48318
+60398,31795
+60399,81162
+60400,60396
+60401,40752
+60402,32347
+60403,35557
+60404,23095
+60405,79852
+60406,20517
+60407,44923
+60408,55069
+60409,21012
+60410,67542
+60411,58158
+60412,61311
+60413,75007
+60414,50642,19072
+60415,35922
+60416,34904
+60417,63065
+60418,76219
+60419,31547
+60420,20992
+60421,79671
+60422,38366
+60423,20963
+60424,19429
+60425,47770
+60426,19429
+60427,21012
+60428,78160
+60429,68793
+60430,51068
+60431,56925
+60432,25434
+60433,70033
+60434,28637
+60435,36089
+60436,19757
+60437,30404
+60438,30392
+60439,74500
+60440,19393
+60441,61436
+60442,82095
+60443,51159
+60444,19393
+60445,46899
+60446,68230
+60447,60216
+60448,68230
+60449,74081
+60450,35922
+60451,76256
+60452,38860
+60453,46901
+60454,23790
+60455,18869
+60456,62338
+60457,18740
+60458,57934
+60459,48126
+60460,76420
+60461,70629
+60462,55524
+60463,79215
+60464,74082
+60465,54218
+60466,74067
+60467,45813
+60468,21090
+60469,70395
+60470,54000
+60471,11858
+60472,55081
+60473,55951
+60474,55081
+60475,71704
+60476,50369
+60477,75217
+60478,24143
+60479,54043
+60480,70214
+60481,35405
+60482,60476
+60483,50367
+60484,20196
+60485,28591
+60486,77421
+60487,51558
+60488,19118
+60489,75558
+60490,81802
+60491,19926
+60492,73938
+60493,71699
+60494,50367
+60495,51558
+60496,34740
+60497,70395
+60498,48787
+60499,42246
+60500,38053
+60501,71408
+60502,67675
+60503,26267
+60504,42246,60284
+60505,58158
+60506,51624
+60507,63434
+60508,75005
+60509,26072
+60510,40815
+60511,58628
+60512,28780
+60513,47492
+60514,58776
+60515,57581
+60516,29485
+60517,40121
+60518,19541
+60519,28013
+60520,38627
+60521,28792
+60522,28803
+60523,57934
+60524,74567
+60525,37402
+60526,36795
+60527,60534,31940
+60528,77423,34851
+60529,37676
+60530,37417
+60531,37459
+60532,37676
+60533,65513
+60534,65925
+60535,19926
+60536,21765
+60537,54869
+60538,38218
+60539,60538
+60540,60534
+60541,63065
+60542,57461
+60543,60713
+60544,48455
+60545,44077
+60546,49340
+60547,49341
+60548,51716
+60549,51719
+60550,75606
+60551,60541
+60552,53624
+60553,53622
+60554,53621
+60555,60534
+60556,30363
+60557,42360
+60558,70395
+60559,60786
+60560,79743
+60561,69131
+60562,74535
+60563,60527
+60564,28790
+60565,64566
+60566,38475
+60567,77961
+60568,69662
+60569,79376
+60570,31564
+60571,33799
+60572,59422
+60573,25302
+60574,44451
+60575,72212
+60576,79282
+60577,55440
+60578,32716
+60579,38375
+60580,19069
+60581,20736
+60582,60786
+60583,60786
+60584,60786
+60585,25432
+60586,41875
+60587,65798
+60588,77755
+60589,63700
+60590,60305
+60591,71315
+60592,75510
+60593,42327
+60594,20690
+60595,18720
+60596,20947
+60597,28803
+60598,31245
+60599,37196
+60600,38003
+60601,43106
+60602,59875
+60603,56178
+60604,63314
+60605,65649
+60606,76160
+60607,76162
+60608,77051
+60609,21924
+60610,63007
+60611,68290
+60612,56182
+60613,56182
+60614,18869
+60615,50085
+60616,57286
+60617,25088
+60618,63587
+60619,72135
+60620,24249
+60621,24251
+60622,25088
+60623,25088
+60624,45813
+60625,20038
+60626,61254
+60627,28774
+60628,28801
+60629,58157
+60630,61262
+60631,61246
+60632,76162
+60633,77409
+60634,51068
+60635,45813
+60636,53897
+60637,36443
+60638,60074
+60639,55768
+60640,71435
+60641,49697,73752,60042
+60642,18974
+60643,19201
+60644,49694
+60645,55744
+60646,52773
+60647,69642
+60648,55735
+60649,71588
+60650,55751
+60651,81349
+60652,39517
+60653,41410
+60654,54424
+60655,37044
+60656,26368,46639
+60657,65777
+60658,40846
+60659,70033
+60660,21544
+60661,24306
+60662,45009
+60663,23309
+60664,37169
+60665,34924
+60666,23243
+60667,45813
+60668,2130,28952
+60669,45679
+60670,39379
+60671,60216
+60672,60798
+60673,60801
+60674,78014
+60675,21361
+60676,34511
+60677,34833
+60678,54441
+60679,73761
+60680,77108
+60681,60678
+60682,39638
+60683,51470
+60684,60678
+60685,53056
+60686,58418
+60687,19200
+60688,65777
+60689,23164
+60690,65777
+60691,45885
+60692,76229
+60693,19121
+60694,23876
+60695,30392
+60696,19129
+60697,18906
+60698,32181
+60699,77995
+60700,53593
+60701,77277
+60702,33515
+60703,37041
+60704,27286
+60705,54183
+60706,20763
+60707,76672
+60708,69408
+60709,62324
+60710,19069
+60711,28591
+60712,60131
+60713,65927
+60714,78423
+60715,65925
+60716,47495
+60717,70526
+60718,25306
+60719,41444
+60720,54503
+60721,61211
+60722,62210
+60723,64619
+60724,81227
+60725,58262
+60726,38884
+60727,23622
+60728,47507
+60729,80618
+60730,81536
+60731,24442
+60732,21754
+60733,59497
+60734,28654
+60735,59497
+60736,66428
+60737,32793
+60738,35735
+60739,59306
+60740,27786
+60741,49026
+60742,45689
+60743,35557
+60744,60739,39049
+60745,30300
+60746,60739,50784
+60747,37721
+60748,46827
+60749,44156
+60750,50934
+60751,50701
+60752,70914
+60753,79259
+60754,74488
+60755,74488
+60756,61355
+60757,21412
+60758,54694
+60759,75057
+60760,26669
+60761,65925
+60762,66591
+60763,33217
+60764,37417
+60765,53624
+60766,48196
+60767,19629
+60768,54947
+60769,48875
+60770,50678
+60771,30518
+60772,34350
+60773,36591
+60774,44576
+60775,39210
+60776,70033
+60777,35425
+60778,27992
+60779,81735
+60780,44491
+60781,39367
+60782,67995
+60783,27715
+60784,82056
+60785,30498
+60786,30498
+60787,34643
+60788,30487
+60789,40446
+60790,45951
+60791,62062
+60792,46598
+60793,50784
+60794,46958
+60795,25662
+60796,20282
+60797,50205
+60798,41588
+60799,61651
+60800,80512
+60801,60032
+60802,60024
+60803,24710
+60804,66305
+60805,72716
+60806,35557
+60807,30531
+60808,29986
+60809,55027
+60810,30391
+60811,76345
+60812,30531
+60813,52497
+60814,30425
+60815,50424
+60816,23792
+60817,80487
+60818,49343
+60819,78755
+60820,26462
+60821,76249
+60822,31689
+60823,36137
+60824,25434
+60825,81535
+60826,45354
+60827,62937
+60828,74500
+60829,62209
+60830,60827
+60831,27781
+60832,44634
+60833,54503
+60834,68692
+60835,48414
+60836,33464
+60837,74488
+60838,28954
+60839,50125
+60840,50593
+60841,23650
+60842,76021
+60843,21359
+60844,20038
+60845,65509
+60846,53163
+60847,22402
+60848,54123
+60849,24392
+60850,25046
+60851,42252
+60852,39049
+60853,51929
+60854,38797
+60855,47948
+60856,75708
+60857,75976
+60858,36029
+60859,27440
+60860,30954
+60861,77287
+60862,44793
+60863,74772
+60864,72503
+60865,35329
+60866,81807
+60867,45813
+60868,19094
+60869,49222
+60870,39423
+60871,43693
+60872,50862
+60873,78152
+60874,67814
+60875,33512
+60876,24319
+60877,32941
+60878,57289
+60879,81746
+60880,39049
+60881,54813
+60882,61415
+60883,42094
+60884,42097
+60885,72027
+60886,45009
+60887,35156
+60888,48251
+60889,72661
+60890,51120
+60891,74089,23420
+60892,20120
+60893,75246
+60894,56656
+60895,27748
+60896,33464
+60897,23972
+60898,81482
+60899,31417
+60900,67826
+60901,64595,23240
+60902,39676
+60903,44354
+60904,29731
+60905,40230
+60906,19319
+60907,53286
+60908,37181
+60909,68022
+60910,40068
+60911,26348
+60912,72308
+60913,81511
+60914,79852
+60915,37832
+60916,78160
+60917,37179
+60918,45813
+60919,41738
+60920,45813
+60921,31288
+60922,81161
+60923,77645
+60924,71911
+60925,59849
+60926,71686
+60927,22786
+60928,63769
+60929,31430
+60930,45364
+60931,63812
+60932,52071
+60933,42388
+60934,54562
+60935,29237
+60936,40752
+60937,38555
+60938,25184
+60939,26996
+60940,30129
+60941,61251
+60942,41877
+60943,79741
+60944,70033
+60945,30153
+60946,27850
+60947,60935
+60948,30400
+60949,61251
+60950,50736
+60951,59700
+60952,73104
+60953,31062
+60954,27276
+60955,63251
+60956,21360
+60957,27506
+60958,25087
+60959,53592
+60960,60899
+60961,57248
+60962,54993
+60963,61651
+60964,48949
+60965,63812
+60966,62833
+60967,80248
+60968,74232
+60969,39049
+60970,22903
+60971,2492
+60972,17469
+60973,17466
+60974,36694
+60975,61121
+60976,46599
+60977,30718
+60978,80753
+60979,74067
+60980,61415
+60981,74778
+60982,56376
+60983,54029
+60984,69363
+60985,58215
+60986,20745
+60987,19765
+60988,68869
+60989,29405
+60990,39556
+60991,39925
+60992,81200
+60993,78096
+60994,78096
+60995,33614
+60996,25202
+60997,29692
+60998,45009
+60999,39346
+61000,61011
+61001,64435
+61002,71062
+61003,29587
+61004,19364
+61005,29677
+61006,75665
+61007,40370
+61008,31618
+61009,60993
+61010,30937
+61011,55768
+61012,59893
+61013,79401
+61014,28786
+61015,72206
+61016,29731
+61017,53624
+61018,21361
+61019,31991
+61020,61400
+61021,1526
+61022,44500
+61023,61493
+61024,79467
+61025,58287
+61026,45813
+61027,64142
+61028,39049
+61029,20828
+61030,27506
+61031,46049
+61032,28586
+61033,61540
+61034,69744
+61035,78269
+61036,72416
+61037,72196
+61038,56950
+61039,38782
+61040,80460
+61041,58226
+61042,27506
+61043,27649
+61044,26613
+61045,35157
+61046,60216
+61047,57249
+61048,37181
+61049,32520
+61050,70607
+61051,21361
+61052,65956
+61053,61052
+61054,40195
+61055,73329
+61056,71493
+61057,53648
+61058,68629
+61059,31438
+61060,37776
+61061,21474
+61062,21474
+61063,46270
+61064,31137,28091
+61065,77552
+61066,38614
+61067,61064
+61068,73448
+61069,73448
+61070,79653
+61071,40534
+61072,37179
+61073,26827
+61074,62144
+61075,71697
+61076,76429
+61077,20053
+61078,76429
+61079,21311
+61080,43865
+61081,61404
+61082,24440
+61083,73569
+61084,60899
+61085,60992
+61086,23440
+61087,50717
+61088,79469
+61089,76435,22850
+61090,62142
+61091,31618
+61092,27625
+61093,70033
+61094,67548
+61095,45009
+61096,61401
+61097,65896
+61098,23238
+61099,80575
+61100,67628
+61101,79847
+61102,35157
+61103,61263
+61104,74349
+61105,38013
+61106,53965
+61107,72178
+61108,63290
+61109,78369
+61110,78432
+61111,59645
+61112,59504
+61113,32201
+61114,37832
+61115,36843
+61116,54728
+61117,34709
+61118,61117
+61119,61117
+61120,67054
+61121,22453
+61122,53112
+61123,74990
+61124,23313
+61125,81227
+61126,31039
+61127,35557
+61128,69860
+61129,55734
+61130,21219
+61131,31245
+61132,79541
+61133,59419
+61134,30267
+61135,49027
+61136,43104
+61137,70525
+61138,71328
+61139,49736
+61140,23966
+61141,49728
+61142,53415,75066
+61143,56009
+61144,38375
+61145,26298
+61146,69288
+61147,53717
+61148,79464
+61149,31477
+61150,79164
+61151,21285
+61152,31602
+61153,62147
+61154,19228
+61155,19382
+61156,65956
+61157,79213
+61158,62625
+61159,52885
+61160,25087
+61161,65956
+61162,20133
+61163,54561
+61164,54606
+61165,27022
+61166,60744
+61167,21362
+61168,26838
+61169,23492
+61170,81789
+61171,31951
+61172,76229
+61173,34350,24354
+61174,39585
+61175,26899
+61176,20827
+61177,38109
+61178,38109
+61179,52552
+61180,40734
+61181,66592
+61182,50296
+61183,40736
+61184,63195
+61185,26616
+61186,79953
+61187,80538
+61188,34845
+61189,63878
+61190,21218
+61191,55014
+61192,43769
+61193,61599
+61194,71873
+61195,48210
+61196,28556
+61197,20057
+61198,51729
+61199,55445
+61200,70629
+61201,36404
+61202,47388
+61203,61202
+61204,40557
+61205,38266
+61206,35595
+61207,25017
+61208,34363
+61209,37169,45009
+61210,62439
+61211,69543
+61212,20698
+61213,39936
+61214,43122
+61215,68692
+61216,74597
+61217,76518
+61218,77641
+61219,28146
+61220,28146
+61221,26298
+61222,58004
+61223,54871
+61224,42388
+61225,56270
+61226,28146
+61227,68289
+61228,76627
+61229,61766
+61230,23643
+61231,52312
+61232,32578
+61233,53056
+61234,58166
+61235,60631
+61236,66042
+61237,57072
+61238,60216
+61239,62659
+61240,34770
+61241,76258
+61242,30693
+61243,62963
+61244,19231
+61245,31736
+61246,58166
+61247,26301
+61248,28164
+61249,29911
+61250,26586
+61251,35534
+61252,39294
+61253,56166,61262
+61254,42539
+61255,46408
+61256,46408
+61257,53454
+61258,58100
+61259,61260
+61260,56176
+61261,63064
+61262,61257
+61263,61260
+61264,77216
+61265,79691
+61266,45813
+61267,79259
+61268,22887
+61269,27908
+61270,45813
+61271,65509
+61272,80188
+61273,38381
+61274,81626
+61275,62267
+61276,39375
+61277,30153
+61278,61159
+61279,30391
+61280,61154
+61281,39381
+61282,61246
+61283,63472
+61284,47115
+61285,72451
+61286,28449
+61287,72970
+61288,38951
+61289,52435
+61290,60612
+61291,63434
+61292,30020
+61293,61289
+61294,78160
+61295,21138
+61296,47825
+61297,38053
+61298,61297
+61299,63414
+61300,33678
+61301,72416
+61302,54825,32582
+61303,19343
+61304,74537
+61305,26932
+61306,43744
+61307,80063
+61308,70629
+61309,21276
+61310,77989
+61311,71516
+61312,21671
+61313,22684
+61314,25202
+61315,38837
+61316,50265
+61317,57934
+61318,81733
+61319,71431
+61320,48030
+61321,43977
+61322,62722
+61323,69785
+61324,69785
+61325,25834
+61326,58734
+61327,38759
+61328,53067
+61329,33512
+61330,38025
+61331,73837
+61332,20847
+61333,47496
+61334,73830
+61335,69633
+61336,40554
+61337,65108
+61338,33175
+61339,69633
+61340,31618
+61341,69695
+61342,69633
+61343,61335
+61344,64435
+61345,64619
+61346,80808
+61347,50117
+61348,63467
+61349,21138
+61350,75057
+61351,61335
+61352,66900
+61353,70629
+61354,31124
+61355,46550
+61356,35926
+61357,73838
+61358,23643
+61359,66853
+61360,21276
+61361,30073
+61362,56807
+61363,27937
+61364,24804
+61365,65793,78030
+61366,25391
+61367,71315
+61368,61759
+61369,21597
+61370,40554
+61371,77043
+61372,33237
+61373,55133
+61374,39091
+61375,32806
+61376,19202
+61377,69977
+61378,78966
+61379,61203
+61380,35838
+61381,36377
+61382,35838
+61383,19200
+61384,60074
+61385,63602
+61386,37479
+61387,71700
+61388,24141,63184
+61389,57071
+61390,25302
+61391,68196
+61392,25574
+61393,45618
+61394,60216
+61395,31647
+61396,41650
+61397,72029
+61398,81874
+61399,61415
+61400,55763
+61401,19200
+61402,27502
+61403,29458
+61404,77277
+61405,53619
+61406,61381
+61407,51677
+61408,61395
+61409,30930
+61410,31646
+61411,42092
+61412,37776
+61413,62682
+61414,58398
+61415,21745
+61416,50925
+61417,53952
+61418,63656
+61419,20879
+61420,36721
+61421,23080
+61422,72983
+61423,66226
+61424,61433
+61425,64142
+61426,49200
+61427,37991
+61428,44040
+61429,61425
+61430,29119
+61431,19228
+61432,69439
+61433,39578
+61434,62935
+61435,40942
+61436,30865
+61437,79904
+61438,72248
+61439,46818
+61440,68843
+61441,53842
+61442,36496
+61443,79881
+61444,19438
+61445,19438
+61446,35342
+61447,18853
+61448,53761
+61449,37776
+61450,58012
+61451,66361
+61452,58161
+61453,79385
+61454,21458
+61455,53624
+61456,69254
+61457,28091
+61458,71837
+61459,48127
+61460,55299
+61461,20743
+61462,58776
+61463,61459,61577
+61464,55872
+61465,58088
+61466,61335
+61467,44963
+61468,73837
+61469,56451
+61470,19278
+61471,23882
+61472,40944
+61473,81626
+61474,45009,31064
+61475,21953
+61476,44691
+61477,65892
+61478,44755
+61479,33922
+61480,80011
+61481,81251
+61482,56832
+61483,56832
+61484,65730
+61485,28654
+61486,73495
+61487,77277
+61488,68196
+61489,31040
+61490,48408
+61491,29744
+61492,53593
+61493,69887
+61494,76981
+61495,81630
+61496,52811
+61497,76608
+61498,39379
+61499,80576
+61500,81759
+61501,52959
+61502,63725
+61503,37405
+61504,24794
+61505,71439
+61506,41929
+61507,46268
+61508,37179,36641
+61509,62145
+61510,41743
+61511,31417
+61512,31417
+61513,63677
+61514,67957
+61515,28831
+61516,28830
+61517,25065
+61518,27656
+61519,31991
+61520,61519
+61521,45813
+61522,32691
+61523,71119,45009
+61524,77287
+61525,78993
+61526,40403
+61527,37179
+61528,41743
+61529,69543
+61530,19421
+61531,44013
+61532,62029
+61533,76303
+61534,68369
+61535,44013
+61536,56832
+61537,40597
+61538,36267
+61539,37619
+61540,76229
+61541,19688
+61542,36571
+61543,45009
+61544,71686
+61545,46171
+61546,41228
+61547,71318
+61548,35922
+61549,62456
+61550,29738
+61551,60448
+61552,51167
+61553,72959
+61554,65707
+61555,48136
+61556,25851
+61557,70202
+61558,39049
+61559,61792
+61560,66482
+61561,28780
+61562,61561
+61563,77815
+61564,73560
+61565,50652
+61566,50265
+61567,62417
+61568,76752
+61569,53657
+61570,66965
+61571,61577
+61572,79031
+61573,35334
+61574,66101
+61575,61577
+61576,18728
+61577,66101
+61578,61178
+61579,48126
+61580,18740
+61581,35557
+61582,21326
+61583,31861,79469
+61584,68364
+61585,31858
+61586,36694
+61587,63965
+61588,71837
+61589,41870
+61590,59970
+61591,57901
+61592,62360
+61593,45034
+61594,23458
+61595,25407
+61596,35105
+61597,40473
+61598,27811
+61599,61600
+61600,64812
+61601,79501
+61602,80238
+61603,53614
+61604,59050
+61605,49013
+61606,30543
+61607,41542
+61608,31618
+61609,49945
+61610,68119
+61611,20751
+61612,46992
+61613,31616
+61614,41729
+61615,58776
+61616,61261
+61617,53716
+61618,68619
+61619,31417
+61620,71446
+61621,51701
+61622,81781
+61623,61622
+61624,61622,50584
+61625,61622
+61626,51203
+61627,79422
+61628,51705
+61629,38883
+61630,81797
+61631,61584
+61632,61415
+61633,58088
+61634,32718
+61635,60208
+61636,35557
+61637,67497
+61638,20743
+61639,71493
+61640,72575
+61641,65737
+61642,51523
+61643,78703
+61644,51836
+61645,63255
+61646,51894
+61647,53607
+61648,19768
+61649,31040
+61650,28600
+61651,37805
+61652,35596
+61653,44637
+61654,53171
+61655,53619
+61656,75347
+61657,80058
+61658,28600
+61659,31820
+61660,27059
+61661,31806,61643
+61662,77323
+61663,50125
+61664,50701
+61665,71493
+61666,55828
+61667,31165
+61668,58108
+61669,62147
+61670,62148
+61671,23763
+61672,75027
+61673,58262
+61674,75020
+61675,50701
+61676,53072
+61677,21412
+61678,35397
+61679,47948
+61680,72426
+61681,68237,21770
+61682,42518
+61683,58798
+61684,47944
+61685,77989
+61686,77324
+61687,38209
+61688,78704
+61689,34830
+61690,74081
+61691,61705
+61692,70033
+61693,34049
+61694,42246,28796
+61695,14356
+61696,61705
+61697,54467
+61698,14356
+61699,69566
+61700,14356
+61701,49763
+61702,49769
+61703,60598
+61704,51019
+61705,61246
+61706,61715
+61707,28700
+61708,54467
+61709,27506
+61710,40177
+61711,20262
+61712,32380
+61713,44986
+61714,49960
+61715,45813
+61716,13555
+61717,28164
+61718,50554
+61719,31889
+61720,31660
+61721,45170
+61722,43851
+61723,58004
+61724,57987
+61725,31245
+61726,58012
+61727,28776
+61728,50297
+61729,43103
+61730,57966
+61731,72437
+61732,66859
+61733,28153
+61734,37805
+61735,23542
+61736,77969
+61737,36329
+61738,62144
+61739,39846
+61740,22438
+61741,23442
+61742,55815
+61743,31762
+61744,81781
+61745,3704
+61746,45813
+61747,55720
+61748,41107,50610
+61749,18880
+61750,54404
+61751,25046
+61752,30684
+61753,32527
+61754,51885
+61755,81635
+61756,61764
+61757,62545
+61758,50630
+61759,75566
+61760,35104
+61761,73001
+61762,79114
+61763,48791
+61764,50630
+61765,73477
+61766,21511
+61767,61203
+61768,31690
+61769,47673
+61770,33488,46251
+61771,48084
+61772,34627
+61773,37986
+61774,79031
+61775,41265
+61776,64470,71091
+61777,60058
+61778,30693
+61779,19200
+61780,32535
+61781,30693
+61782,72122
+61783,64402
+61784,31729
+61785,32182
+61786,35706
+61787,47864
+61788,55495
+61789,58196
+61790,62986
+61791,71325
+61792,71315
+61793,78698
+61794,68197
+61795,50701
+61796,50701
+61797,19228,19542
+61798,63141
+61799,71323
+61800,71324
+61801,57966
+61802,58168
+61803,19374
+61804,33793
+61805,40965
+61806,34771
+61807,77014
+61808,32374
+61809,48306
+61810,59286
+61811,27345
+61812,67703
+61813,41980
+61814,77641
+61815,67290
+61816,72409
+61817,32372
+61818,61260
+61819,39703
+61820,48318
+61821,25367
+61822,33928
+61823,77045
+61824,61816
+61825,62144
+61826,48304
+61827,54562
+61828,80227
+61829,22665
+61830,38044,47730
+61831,39847
+61832,22786
+61833,52853,73220
+61834,46599
+61835,69782
+61836,36434
+61837,54082
+61838,25187
+61839,43185
+61840,32603
+61841,63961
+61842,61874
+61843,61862
+61844,61863
+61845,62910
+61846,21701
+61847,26723
+61848,20812
+61849,81602
+61850,31412
+61851,49750
+61852,24823
+61853,24354
+61854,76295
+61855,37440
+61856,75007
+61857,38385,61311
+61858,39049
+61859,61856
+61860,75007
+61861,61919
+61862,72482
+61863,53238
+61864,42429
+61865,42481
+61866,61213
+61867,53701
+61868,61862
+61869,61863
+61870,20698
+61871,71517
+61872,40423
+61873,48238
+61874,31058
+61875,38053
+61876,28790
+61877,19166
+61878,58166
+61879,58161
+61880,58161
+61881,28788
+61882,55914
+61883,20977
+61884,56499
+61885,41842
+61886,57160
+61887,25113
+61888,59069
+61889,30216
+61890,44470
+61891,57934
+61892,60001
+61893,67951
+61894,51068
+61895,63376
+61896,55734
+61897,67675
+61898,58628
+61899,58166
+61900,31241
+61901,39676
+61902,23267
+61903,19166
+61904,61311
+61905,65892
+61906,27455
+61907,81578
+61908,20308
+61909,24354
+61910,73944
+61911,81578
+61912,66377
+61913,75599
+61914,76120
+61915,76121
+61916,55734
+61917,39428
+61918,78777
+61919,61874
+61920,49750
+61921,72959
+61922,72959
+61923,61311
+61924,79628
+61925,79628
+61926,44818
+61927,41729
+61928,37179
+61929,41743
+61930,29503
+61931,29502
+61932,68555
+61933,45035
+61934,45035
+61935,46600
+61936,5501
+61937,25431
+61938,25432
+61939,37513
+61940,44816
+61941,67703
+61942,27440
+61943,44491
+61944,19421
+61945,52904
+61946,29839
+61947,50215
+61948,41877
+61949,33475
+61950,33476
+61951,33638
+61952,60899
+61953,44167
+61954,81974
+61955,78676
+61956,21361
+61957,39049
+61958,33717
+61959,56492
+61960,63047
+61961,62852
+61962,79485
+61963,23082
+61964,40658
+61965,25920
+61966,64409
+61967,46599
+61968,46599
+61969,77482
+61970,66516
+61971,27721
+61972,38873
+61973,44816
+61974,35944
+61975,80618
+61976,35944
+61977,66020
+61978,58168
+61979,38614
+61980,72780
+61981,75063
+61982,25113
+61983,77045
+61984,22786
+61985,61395
+61986,75057,42097
+61987,59316
+61988,18988
+61989,66953
+61990,81482
+61991,77641
+61992,80526
+61993,25574
+61994,79546
+61995,50602
+61996,59970
+61997,78647
+61998,64839
+61999,38375
+62000,41752
+62001,48106
+62002,43566
+62003,71686
+62004,71408
+62005,25302
+62006,25434
+62007,40864
+62008,37955
+62009,62034
+62010,64355
+62011,75860
+62012,32050
+62013,32051
+62014,27167
+62015,72283,3227
+62016,62456
+62017,61415
+62018,37276
+62019,59286
+62020,81482
+62021,20690
+62022,39049
+62023,21703
+62024,79282
+62025,55546
+62026,73272
+62027,31848
+62028,79097
+62029,40752
+62030,52857
+62031,40564
+62032,59970
+62033,20082
+62034,55742
+62035,55734
+62036,64142
+62037,31645
+62038,48629
+62039,34357
+62040,30891
+62041,48461
+62042,59970
+62043,44437
+62044,30452
+62045,30391
+62046,71310
+62047,47870
+62048,63163
+62049,77452
+62050,35922
+62051,19497
+62052,52523
+62053,28312
+62054,73838
+62055,66862
+62056,53640
+62057,72253
+62058,46266
+62059,36710
+62060,68555
+62061,67703
+62062,53628
+62063,43798
+62064,19131
+62065,35557
+62066,21323
+62067,70124
+62068,26632
+62069,33515
+62070,59502
+62071,66756
+62072,67972
+62073,75801
+62074,29167
+62075,46228
+62076,44491
+62077,43798
+62078,71142
+62079,69998
+62080,32795
+62081,31506
+62082,42481
+62083,60786
+62084,47442
+62085,36029
+62086,20755
+62087,35557
+62088,25546
+62089,43103
+62090,57897
+62091,41280
+62092,29881
+62093,24364
+62094,68647
+62095,62089
+62096,58200
+62097,55485
+62098,78410
+62099,29426
+62100,60228
+62101,70051
+62102,32269
+62103,77261
+62104,27715
+62105,38013
+62106,52840
+62107,80550
+62108,79214
+62109,79282
+62110,42337
+62111,38013
+62112,27239
+62113,50117
+62114,37712
+62115,19959
+62116,28616
+62117,27715
+62118,23712
+62119,69331
+62120,51677
+62121,27781
+62122,41843
+62123,81227
+62124,78146
+62125,62054
+62126,33442
+62127,22688
+62128,51389
+62129,27059
+62130,27062
+62131,58798
+62132,34626
+62133,19176
+62134,81585
+62135,40752
+62136,80253
+62137,62146
+62138,63047
+62139,38723
+62140,62139
+62141,61646
+62142,66882
+62143,21948
+62144,61646
+62145,57461
+62146,25088
+62147,65691
+62148,22152
+62149,58196
+62150,31477
+62151,65910
+62152,57208
+62153,40003
+62154,19353,19472
+62155,28623
+62156,28811
+62157,32185
+62158,39565
+62159,47402
+62160,75912
+62161,61734
+62162,65671
+62163,73275
+62164,37708
+62165,56937
+62166,61724
+62167,20409
+62168,64142
+62169,21015
+62170,47510
+62171,76929
+62172,60375
+62173,61748
+62174,52904
+62175,37770
+62176,35787
+62177,31742
+62178,65691
+62179,31742
+62180,44157
+62181,36496
+62182,38777
+62183,58024
+62184,23780
+62185,21272
+62186,62183
+62187,78866
+62188,34433
+62189,79749
+62190,62144
+62191,53528
+62192,25234
+62193,52712
+62194,57286
+62195,73838
+62196,27688
+62197,30672
+62198,51985
+62199,81200
+62200,46599
+62201,57289
+62202,28954
+62203,25709
+62204,66727
+62205,28616
+62206,76882
+62207,54130
+62208,29744
+62209,52706
+62210,27501
+62211,28271
+62212,58166
+62213,68230,66004
+62214,43968
+62215,57065
+62216,70203
+62217,62218
+62218,28952
+62219,62218
+62220,27538
+62221,28333
+62222,53890
+62223,56069
+62224,37832
+62225,69264
+62226,27949
+62227,74976
+62228,75758
+62229,79282
+62230,62147
+62231,50524
+62232,42461
+62233,42337
+62234,59199
+62235,48126
+62236,46268
+62237,69970
+62238,46698
+62239,24349
+62240,24349
+62241,68934
+62242,74217
+62243,46639
+62244,51677
+62245,79878
+62246,53180
+62247,53375
+62248,57573
+62249,56399
+62250,62247
+62251,42518
+62252,35532
+62253,74939
+62254,34398
+62255,61135
+62256,57065
+62257,38135
+62258,21090
+62259,60320
+62260,63348
+62261,34166
+62262,29737
+62263,21897
+62264,60216
+62265,31143
+62266,31861,79469
+62267,31616
+62268,27201
+62269,72780
+62270,23843
+62271,31618
+62272,73207
+62273,42181
+62274,27862
+62275,20120
+62276,61246
+62277,66756
+62278,71719
+62279,47105,52412
+62280,54082
+62281,33907
+62282,24037
+62283,67675,66150
+62284,27479
+62285,67675
+62286,29068
+62287,33558
+62288,67675
+62289,39693
+62290,48828
+62291,56752
+62292,60172
+62293,36500
+62294,66977,72914,71463
+62295,79608
+62296,24726
+62297,39676
+62298,39676
+62299,41877
+62300,55284
+62301,42410
+62302,58921
+62303,64403
+62304,67594
+62305,73680
+62306,71108
+62307,70033
+62308,79608
+62309,27997
+62310,79608
+62311,79608
+62312,61251
+62313,41877
+62314,61265
+62315,73507
+62316,51701
+62317,37712
+62318,8312
+62319,62409
+62320,60598
+62321,62184
+62322,66065
+62323,53650
+62324,37450
+62325,74981
+62326,53624
+62327,62322
+62328,45354
+62329,79259
+62330,58734
+62331,46270
+62332,38828
+62333,46492
+62334,51159
+62335,21432
+62336,31647
+62337,46962
+62338,24007
+62339,28346,39725
+62340,53593
+62341,64817
+62342,35557
+62343,60078
+62344,69552
+62345,32975
+62346,69852
+62347,73207
+62348,32691
+62349,29677
+62350,28205
+62351,80753
+62352,23679
+62353,79468
+62354,81656
+62355,77287
+62356,28312
+62357,62266
+62358,50969
+62359,76864
+62360,22684
+62361,67432
+62362,28093
+62363,53283
+62364,33876
+62365,67957
+62366,36451
+62367,24307
+62368,53959
+62369,50758
+62370,41110
+62371,37776
+62372,22414
+62373,41110
+62374,74903
+62375,26884,51833
+62376,77552
+62377,28616
+62378,39556
+62379,80612
+62380,41110
+62381,41110
+62382,24875
+62383,62767
+62384,51640
+62385,44294
+62386,60771
+62387,40060
+62388,60234
+62389,70525
+62390,76877,53717
+62391,71516
+62392,36647
+62393,20385
+62394,24897
+62395,31616
+62396,33811
+62397,49602
+62398,54085
+62399,21922
+62400,60541
+62401,54446
+62402,37665,55809
+62403,43974
+62404,60216
+62405,58734
+62406,54376
+62407,60603
+62408,28054
+62409,64142
+62410,25687
+62411,53760,25810
+62412,47673
+62413,78995
+62414,31993
+62415,32488
+62416,35823
+62417,62439,36482
+62418,20309
+62419,26800
+62420,51830
+62421,52094
+62422,54918
+62423,50635
+62424,22271
+62425,50875
+62426,25807
+62427,37404
+62428,41054
+62429,61379
+62430,22122
+62431,35340
+62432,62439
+62433,69237
+62434,52497
+62435,73001
+62436,73117
+62437,39101
+62438,34924
+62439,52497,76981
+62440,31742
+62441,37450
+62442,31126
+62443,27552
+62444,70629
+62445,75566
+62446,19230
+62447,64142
+62448,32363
+62449,31615
+62450,20763
+62451,78996
+62452,20979
+62453,78996
+62454,30267
+62455,78966
+62456,19228
+62457,47656
+62458,64746
+62459,63144
+62460,40276
+62461,49353
+62462,75860
+62463,62145
+62464,47628
+62465,51566
+62466,60450
+62467,65016
+62468,65014
+62469,67412
+62470,44032
+62471,21959
+62472,74067
+62473,44456
+62474,31292
+62475,31998
+62476,66862
+62477,81161
+62478,41729
+62479,43801
+62480,43419
+62481,45813
+62482,41638
+62483,64873
+62484,40752
+62485,40752
+62486,22384
+62487,71446
+62488,81161
+62489,74344
+62490,79852
+62491,77829
+62492,58088
+62493,81176
+62494,81703
+62495,21328
+62496,81715
+62497,81714
+62498,27167
+62499,67479
+62500,32746
+62501,56206
+62502,77976
+62503,54082
+62504,81857
+62505,72189
+62506,69887
+62507,71961
+62508,51625
+62509,34108
+62510,68622
+62511,70482
+62512,67462
+62513,65975
+62514,65767
+62515,81703
+62516,25302
+62517,69286
+62518,67254
+62519,69588
+62520,62513
+62521,53042
+62522,21013,20182
+62523,60448
+62524,74577
+62525,29737
+62526,55213
+62527,48723
+62528,19734
+62529,73300
+62530,27227
+62531,33816
+62532,29457
+62533,53620
+62534,46027
+62535,73992
+62536,38606
+62537,62145
+62538,28271
+62539,75548
+62540,62145
+62541,55346
+62542,19228
+62543,56179
+62544,29069
+62545,29513
+62546,19546
+62547,79081
+62548,29758
+62549,19654
+62550,71516
+62551,47908
+62552,28790
+62553,36571
+62554,18906
+62555,80524
+62556,37405
+62557,20978
+62558,29611
+62559,38593
+62560,31851
+62561,75976
+62562,75629
+62563,48477
+62564,29576
+62565,57966
+62566,62675
+62567,38930
+62568,53454
+62569,60216
+62570,46957
+62571,20743
+62572,62569
+62573,13818
+62574,34819
+62575,76135
+62576,34147
+62577,34867
+62578,35156
+62579,75902
+62580,60570
+62581,74906
+62582,31564
+62583,28357
+62584,65057
+62585,72983
+62586,48156
+62587,31100
+62588,79165
+62589,62590
+62590,47814
+62591,35678
+62592,43469,20963
+62593,43469,20963
+62594,36065
+62595,57435
+62596,77207
+62597,77369
+62598,50880
+62599,50885
+62600,66551
+62601,21324
+62602,24057
+62603,62600
+62604,21326
+62605,24061
+62606,23780
+62607,73838
+62608,39053
+62609,19385
+62610,19379
+62611,62145
+62612,19462
+62613,58024
+62614,51391
+62615,19009
+62616,63257
+62617,73323
+62618,54867
+62619,62584
+62620,19574
+62621,59199
+62622,19576
+62623,76146
+62624,51856
+62625,60598
+62626,24221
+62627,31058
+62628,50861
+62629,76664
+62630,49359
+62631,29736
+62632,62145
+62633,58208
+62634,22034
+62635,38600
+62636,32510
+62637,55734
+62638,56399
+62639,37305
+62640,59374
+62641,27519
+62642,47532
+62643,53907
+62644,61241
+62645,74973
+62646,60074
+62647,62145
+62648,62260
+62649,70515
+62650,79088
+62651,25289,63013
+62652,59645
+62653,76989
+62654,34987
+62655,57463
+62656,47388
+62657,30275
+62658,45199
+62659,19228
+62660,40150
+62661,68771
+62662,59646
+62663,62409
+62664,45572
+62665,57194
+62666,61135
+62667,41846
+62668,57330
+62669,60570
+62670,31245
+62671,76662
+62672,70646
+62673,70646
+62674,79282
+62675,36840
+62676,66551
+62677,41128
+62678,79753
+62679,47175
+62680,37343
+62681,26298
+62682,37201
+62683,28952
+62684,27294
+62685,35388
+62686,81800
+62687,81800
+62688,53717
+62689,43908
+62690,51566
+62691,35922
+62692,35922
+62693,68677
+62694,23780
+62695,72271
+62696,47698
+62697,22125
+62698,63505
+62699,66953
+62700,68956
+62701,34472
+62702,43247
+62703,76633
+62704,75843
+62705,59336
+62706,60062
+62707,63198
+62708,63345
+62709,35664
+62710,62146
+62711,28344
+62712,48171
+62713,69978
+62714,30891
+62715,19497
+62716,35922
+62717,76134
+62718,28620
+62719,36721
+62720,76691
+62721,31245
+62722,58162
+62723,63416
+62724,65531
+62725,31058
+62726,72122
+62727,66016
+62728,31846
+62729,60216
+62730,75874
+62731,62145
+62732,32152
+62733,45383
+62734,62736
+62735,18866
+62736,50701
+62737,41284
+62738,30693
+62739,29587
+62740,52497
+62741,80619
+62742,63945
+62743,52497
+62744,62950
+62745,63666
+62746,25573
+62747,31308
+62748,57466
+62749,21474
+62750,34833
+62751,63669
+62752,67565
+62753,60536
+62754,59306
+62755,35762
+62756,41105
+62757,60603
+62758,71579
+62759,26779
+62760,22291
+62761,36041
+62762,42358
+62763,61646
+62764,77974
+62765,21477
+62766,63426
+62767,78703
+62768,80259
+62769,52592
+62770,72861
+62771,48087
+62772,35511
+62773,22181
+62774,74504
+62775,49508
+62776,54753
+62777,47507
+62778,34126
+62779,29569
+62780,21757
+62781,78741
+62782,76134
+62783,59467
+62784,57741
+62785,62776
+62786,31308
+62787,23622
+62788,32672
+62789,51729
+62790,80665
+62791,81193
+62792,64846
+62793,42451
+62794,46092
+62795,65795
+62796,53718
+62797,73723
+62798,68444
+62799,19272
+62800,43168,58108
+62801,79717
+62802,50008
+62803,20743
+62804,79546
+62805,59549
+62806,32269
+62807,66354
+62808,81714
+62809,79086
+62810,32269
+62811,31742
+62812,64846
+62813,25642
+62814,31739
+62815,33498
+62816,40700
+62817,41546
+62818,62825
+62819,47869
+62820,47931
+62821,51677
+62822,74072
+62823,75141
+62824,30980
+62825,38512
+62826,75015
+62827,63813
+62828,72178
+62829,34249
+62830,70650
+62831,24710
+62832,67093
+62833,71579
+62834,50717
+62835,77641
+62836,77641
+62837,64805
+62838,30961
+62839,37179
+62840,26827
+62841,62029
+62842,45813
+62843,20751
+62844,67938
+62845,77374
+62846,39578
+62847,55263
+62848,81125
+62849,40778
+62850,62144
+62851,23869
+62852,29737,7764
+62853,72283
+62854,63007
+62855,48717
+62856,32685
+62857,62852
+62858,63139
+62859,63357
+62860,22817
+62861,78755
+62862,57913
+62863,47672
+62864,63314
+62865,21018
+62866,28146
+62867,37355
+62868,40623
+62869,20341
+62870,53694
+62871,35917
+62872,21552
+62873,30296
+62874,30467
+62875,62874
+62876,62874
+62877,34588
+62878,36908
+62879,45452
+62880,69416
+62881,62875
+62882,75009
+62883,76989
+62884,61159
+62885,62145
+62886,52889
+62887,27233
+62888,19453
+62889,57187
+62890,35887
+62891,48536
+62892,53986
+62893,62889
+62894,29851
+62895,76058
+62896,20992
+62897,44059
+62898,62659
+62899,55324
+62900,41262
+62901,81578
+62902,60216
+62903,42518
+62904,54900
+62905,59309
+62906,48219
+62907,36843
+62908,58144
+62909,36450
+62910,45813
+62911,49138
+62912,80485
+62913,24379
+62914,21525
+62915,20282
+62916,74067
+62917,74238
+62918,62914,31522
+62919,64757
+62920,62914
+62921,62914
+62922,21525
+62923,62922
+62924,77641
+62925,34085
+62926,81807
+62927,27321
+62928,40065
+62929,37204
+62930,22452
+62931,68290
+62932,36035
+62933,62145
+62934,79084
+62935,50605
+62936,67272
+62937,42452
+62938,50604
+62939,62938
+62940,62938
+62941,50604
+62942,62938
+62943,62938
+62944,81800
+62945,45033
+62946,31940
+62947,39049
+62948,44000
+62949,26264
+62950,53731
+62951,67303
+62952,21675
+62953,81656
+62954,31106
+62955,60138,62957
+62956,70629
+62957,52497
+62958,21307
+62959,48254
+62960,26800
+62961,81786
+62962,30659
+62963,81786
+62964,30937
+62965,57927
+62966,78703
+62967,21765
+62968,21669
+62969,58425
+62970,59338
+62971,74401
+62972,36952
+62973,33885
+62974,62145
+62975,65768
+62976,61871
+62977,58004
+62978,61871
+62979,62978
+62980,70526
+62981,32177
+62982,27077
+62983,28574
+62984,50630,49598
+62985,75901
+62986,78647
+62987,42094
+62988,62986
+62989,54408
+62990,65163
+62991,48980
+62992,37935
+62993,29488
+62994,34844
+62995,28637
+62996,75677
+62997,57177
+62998,62455
+62999,68236
+63000,69012
+63001,80185
+63002,57570,32908
+63003,71310
+63004,62387
+63005,70033
+63006,45597
+63007,66551
+63008,19462
+63009,62676
+63010,32362
+63011,20116
+63012,53940
+63013,43247
+63014,63013
+63015,81306
+63016,25603
+63017,25598
+63018,21510
+63019,39112
+63020,39112
+63021,19497
+63022,30020
+63023,27897
+63024,60450
+63025,64142
+63026,53619
+63027,53480
+63028,21282
+63029,21272
+63030,38564
+63031,79072
+63032,28358
+63033,32527
+63034,77735
+63035,77735
+63036,51174
+63037,57569
+63038,32929
+63039,57223
+63040,74567
+63041,38826
+63042,65999
+63043,48306
+63044,53717
+63045,22640
+63046,48470
+63047,64273
+63048,35156
+63049,76256
+63050,30271
+63051,76258
+63052,61159
+63053,57035
+63054,71209
+63055,12335
+63056,51881
+63057,63056
+63058,21025
+63059,63061
+63060,19228
+63061,36721
+63062,59825
+63063,30267
+63064,25115
+63065,60600
+63066,30267
+63067,54047
+63068,28747
+63069,62963
+63070,63065
+63071,76657
+63072,44440,30391
+63073,65765
+63074,53114
+63075,81626
+63076,26577
+63077,52762,20999
+63078,19171
+63079,47814
+63080,57573
+63081,43820
+63082,46385
+63083,62145
+63084,30020
+63085,34398
+63086,34402
+63087,72839
+63088,58776
+63089,48126
+63090,71996
+63091,53716
+63092,61317
+63093,74462
+63094,62145
+63095,37858
+63096,37859
+63097,26470
+63098,19131
+63099,19126
+63100,60866
+63101,38135
+63102,55688
+63103,27622
+63104,34924
+63105,31587
+63106,42506
+63107,38690
+63108,74939
+63109,41005
+63110,32799
+63111,28057
+63112,42246
+63113,62820
+63114,28774
+63115,31477
+63116,64160
+63117,32793
+63118,32187
+63119,34906
+63120,48724
+63121,53202
+63122,35663
+63123,62709
+63124,48031
+63125,32795
+63126,19171
+63127,38715
+63128,32269
+63129,53656
+63130,58107
+63131,41747
+63132,64846
+63133,58158
+63134,34357
+63135,48939
+63136,48938
+63137,78658
+63138,79009
+63139,57466
+63140,19567
+63141,57461
+63142,22415
+63143,22032
+63144,19438
+63145,21938
+63146,23232,72420
+63147,23303,72420
+63148,25600,72420
+63149,41047,72420
+63150,43686,72420
+63151,58168
+63152,71323
+63153,75814,72420
+63154,81751,72420
+63155,38809
+63156,71321
+63157,18876
+63158,62145
+63159,30978
+63160,70633
+63161,58410
+63162,33042
+63163,28654
+63164,24237
+63165,47402
+63166,19462
+63167,18978
+63168,69554
+63169,73352
+63170,63166
+63171,27339
+63172,59497
+63173,48489
+63174,78469
+63175,34670
+63176,18853
+63177,20581
+63178,18740
+63179,63180
+63180,73201
+63181,31245
+63182,62585
+63183,53696
+63184,20823
+63185,75020
+63186,60071
+63187,71439
+63188,55756
+63189,77311
+63190,34211
+63191,37908,31126
+63192,32790
+63193,21754
+63194,28536
+63195,55347
+63196,65910
+63197,69235
+63198,75843
+63199,36803
+63200,66787
+63201,75472
+63202,79033
+63203,28541
+63204,61789
+63205,44701
+63206,65559
+63207,50602
+63208,34211
+63209,19200
+63210,76664
+63211,61202
+63212,80512
+63213,31820
+63214,34299
+63215,79738
+63216,62584
+63217,65925
+63218,73838
+63219,19112
+63220,70629
+63221,43122
+63222,60245
+63223,58004
+63224,58010
+63225,58166
+63226,50167,43708
+63227,70397
+63228,35425
+63229,33597
+63230,48723
+63231,66377
+63232,30865
+63233,47870
+63234,44474
+63235,20355
+63236,79385
+63237,48723
+63238,31668
+63239,66985
+63240,49997
+63241,77108
+63242,32457
+63243,53109
+63244,80012
+63245,22789
+63246,21012,20999
+63247,54082
+63248,72861
+63249,47671
+63250,69439
+63251,72052,30689
+63252,38777
+63253,30891
+63254,30891
+63255,56164
+63256,19482
+63257,28529
+63258,37789
+63259,54044
+63260,75015
+63261,26589
+63262,37471
+63263,33285
+63264,25367
+63265,68475
+63266,34924
+63267,21922
+63268,28136
+63269,20822
+63270,50628
+63271,23269
+63272,67054
+63273,55686
+63274,35678
+63275,63218
+63276,67290
+63277,60570
+63278,41846
+63279,34166
+63280,57164
+63281,79009
+63282,72051
+63283,53619
+63284,21510
+63285,60540
+63286,38564
+63287,47699
+63288,19936
+63289,62956
+63290,74487
+63291,66965
+63292,32506
+63293,48157
+63294,30891
+63295,60603
+63296,35702
+63297,25431
+63298,30891
+63299,19944
+63300,42246,41773
+63301,19935
+63302,23972
+63303,81578
+63304,74081
+63305,38836
+63306,53648
+63307,19867
+63308,19944
+63309,67675
+63310,27488
+63311,56761
+63312,41406
+63313,57098
+63314,22164
+63315,31158
+63316,62178
+63317,57333
+63318,25499
+63319,72747
+63320,58587
+63321,69358
+63322,27332
+63323,60393
+63324,60393
+63325,62585
+63326,62584
+63327,65767
+63328,35863
+63329,63328
+63330,62794
+63331,61260
+63332,27488
+63333,63307
+63334,64373
+63335,52655
+63336,61153
+63337,52656
+63338,64160
+63339,32390
+63340,41000
+63341,65926
+63342,75472
+63343,64846
+63344,54044
+63345,72052
+63346,58215
+63347,57556
+63348,72983
+63349,78598
+63350,74906
+63351,60216
+63352,20517
+63353,30461
+63354,58587
+63355,68831
+63356,58583
+63357,34470
+63358,48613
+63359,56444
+63360,20351
+63361,34307
+63362,41103
+63363,19171
+63364,75018
+63365,44439
+63366,42246
+63367,21005,46911
+63368,58158
+63369,31900
+63370,35495
+63371,72729
+63372,80047
+63373,21412
+63374,44946
+63375,38883
+63376,81797
+63377,63376
+63378,30391
+63379,50872
+63380,57573,50638
+63381,31811
+63382,60259
+63383,31807
+63384,62884
+63385,30866
+63386,53023
+63387,61628
+63388,62321
+63389,54561
+63390,57556
+63391,37113
+63392,43734
+63393,22258
+63394,19322
+63395,37832
+63396,63434
+63397,18728
+63398,48126
+63399,32181
+63400,53716
+63401,38807
+63402,32718
+63403,34587
+63404,34585
+63405,81462
+63406,79531
+63407,74025
+63408,55348
+63409,54082
+63410,39803
+63411,70397
+63412,65273
+63413,70033
+63414,38053
+63415,21078
+63416,19228
+63417,68829
+63418,47678
+63419,38944
+63420,37119
+63421,19497
+63422,30487
+63423,25104
+63424,32578
+63425,40472
+63426,29928
+63427,36841
+63428,19547
+63429,64142
+63430,35787
+63431,62145
+63432,65133
+63433,63432
+63434,52544
+63435,58162
+63436,54967
+63437,28790
+63438,63434
+63439,42489
+63440,79031
+63441,57346
+63442,66058
+63443,57346
+63444,29539,34506
+63445,34166
+63446,71595,38167
+63447,76319
+63448,30020
+63449,30020
+63450,54253
+63451,42429
+63452,63463
+63453,24306
+63454,28317
+63455,38466
+63456,30190
+63457,67272
+63458,54253
+63459,39294
+63460,42539
+63461,58100
+63462,46599
+63463,21433
+63464,35480
+63465,57154
+63466,30417
+63467,74082
+63468,21985
+63469,52885
+63470,54867
+63471,48077
+63472,63458
+63473,82163
+63474,82164
+63475,36335
+63476,77802
+63477,28538
+63478,31245
+63479,48318
+63480,43976
+63481,68030
+63482,41287
+63483,63513
+63484,27563
+63485,23891
+63486,72122
+63487,57573
+63488,27323,29509
+63489,56080
+63490,81647
+63491,31002
+63492,73472
+63493,31243
+63494,19228
+63495,47047
+63496,63495
+63497,37789
+63498,18866
+63499,54412
+63500,34833
+63501,54429
+63502,80011
+63503,48735
+63504,71324
+63505,79541
+63506,6654
+63507,56262
+63508,62425
+63509,19655
+63510,75196
+63511,80104
+63512,78755
+63513,35522,56185
+63514,36467
+63515,26884
+63516,80787
+63517,63522
+63518,81626
+63519,33544
+63520,77833
+63521,49945
+63522,45051
+63523,69597
+63524,46464
+63525,20403
+63526,70651
+63527,49024
+63528,63527
+63529,63527
+63530,67462
+63531,31041
+63532,70427
+63533,73401
+63534,73752
+63535,78160
+63536,71347
+63537,71348
+63538,37931
+63539,20038
+63540,44921
+63541,24377
+63542,24354
+63543,38475
+63544,56009
+63545,61263
+63546,63064
+63547,39225
+63548,51068
+63549,44923
+63550,54562
+63551,79211
+63552,79211
+63553,38134,25087
+63554,28317
+63555,20745
+63556,22172
+63557,70568
+63558,63559
+63559,48318
+63560,70651
+63561,66385
+63562,73967
+63563,66787
+63564,71996
+63565,53716
+63566,57456
+63567,30882
+63568,55356
+63569,63567
+63570,36602
+63571,63602
+63572,46892
+63573,49136
+63574,43523
+63575,48638
+63576,71322
+63577,44474
+63578,44474
+63579,63586,51558
+63580,30271
+63581,18840
+63582,54993
+63583,57932
+63584,31245
+63585,80106
+63586,68290
+63587,68280
+63588,18869
+63589,63587
+63590,44474
+63591,38135
+63592,60375
+63593,63586
+63594,38801
+63595,47503
+63596,44474
+63597,65929
+63598,53920
+63599,53916
+63600,25676
+63601,76160
+63602,76162
+63603,63565
+63604,53761
+63605,70091
+63606,34664
+63607,36602
+63608,47121
+63609,44456
+63610,38807
+63611,25432
+63612,79211
+63613,32718
+63614,63616
+63615,45813
+63616,21458
+63617,31430
+63618,70568
+63619,61468
+63620,63064
+63621,20353
+63622,41017
+63623,63228
+63624,20480
+63625,67642
+63626,26938
+63627,77160
+63628,76662
+63629,21477
+63630,44792
+63631,25256
+63632,25094
+63633,19485
+63634,30884
+63635,28637
+63636,34085
+63637,50638
+63638,35532
+63639,63320
+63640,36996
+63641,75465
+63642,30267
+63643,50602
+63644,51188
+63645,57177
+63646,62145
+63647,23790
+63648,63316
+63649,63259
+63650,60216
+63651,68771
+63652,68236
+63653,37712
+63654,37721
+63655,19311
+63656,77277
+63657,76865,39099
+63658,77523
+63659,31825
+63660,77630
+63661,73838
+63662,23193
+63663,81602
+63664,30882
+63665,30659
+63666,30891
+63667,64142
+63668,63144
+63669,58583
+63670,40240
+63671,31394
+63672,45813
+63673,26118
+63674,35595
+63675,40942
+63676,35557
+63677,34808
+63678,34808
+63679,32379
+63680,66785
+63681,81735
+63682,32582
+63683,48910
+63684,21703
+63685,65584
+63686,66609
+63687,79282
+63688,42503
+63689,37847
+63690,79591
+63691,55324
+63692,24834
+63693,76664
+63694,59497
+63695,65184
+63696,48213
+63697,44670
+63698,79653
+63699,23419
+63700,59498
+63701,41877
+63702,60661
+63703,30325
+63704,30325
+63705,61438
+63706,40552
+63707,68619
+63708,71048
+63709,38705
+63710,35944
+63711,57035
+63712,62409
+63713,70033
+63714,77641
+63715,20905
+63716,273
+63717,2336
+63718,37179
+63719,41743
+63720,23622
+63721,41103
+63722,34924
+63723,37237
+63724,19462
+63725,63363
+63726,26854
+63727,21474
+63728,29692
+63729,21541
+63730,28417,63722
+63731,81413
+63732,46256
+63733,55497
+63734,81626
+63735,45777
+63736,52499
+63737,20745
+63738,74721
+63739,47870
+63740,21810
+63741,20938
+63742,21703
+63743,29432
+63744,31391
+63745,37627
+63746,56451
+63747,66017
+63748,73147
+63749,63742
+63750,78106
+63751,69058
+63752,79282
+63753,28187
+63754,79213
+63755,61263
+63756,53337
+63757,52578
+63758,28091
+63759,71443
+63760,19936
+63761,56563
+63762,60417
+63763,80440
+63764,50918
+63765,60126
+63766,79757,64831
+63767,63770
+63768,32386
+63769,42467
+63770,54913
+63771,29418
+63772,20817
+63773,66785
+63774,69818
+63775,53648
+63776,31736
+63777,61474
+63778,19201
+63779,46781
+63780,27564
+63781,63779
+63782,80639
+63783,79259
+63784,72637
+63785,21814
+63786,60733
+63787,37183
+63788,74343
+63789,41837
+63790,54813
+63791,24874
+63792,76981
+63793,40356
+63794,25546
+63795,51472
+63796,63792
+63797,62740
+63798,25018
+63799,27502
+63800,25598
+63801,79546
+63802,22786
+63803,38466
+63804,46462
+63805,76691
+63806,76149
+63807,48645
+63808,44451
+63809,53171
+63810,61646
+63811,54732
+63812,46268
+63813,19228
+63814,70776
+63815,21777
+63816,81396
+63817,72150
+63818,71003
+63819,71310
+63820,33758
+63821,47443
+63822,66787
+63823,19412
+63824,39311
+63825,43523
+63826,82066
+63827,23294
+63828,46935
+63829,25046
+63830,49728
+63831,25059
+63832,49736
+63833,82056
+63834,75860
+63835,48318
+63836,21124
+63837,72135
+63838,36007
+63839,39940
+63840,43809
+63841,67277,50701
+63842,69977
+63843,60076
+63844,21670
+63845,36383
+63846,63833,35944
+63847,82057
+63848,19349
+63849,52189
+63850,19130
+63851,48146
+63852,19131
+63853,31690
+63854,62810
+63855,19655
+63856,26586
+63857,68429
+63858,68909
+63859,18791
+63860,31021
+63861,53481
+63862,57261
+63863,53717
+63864,70524
+63865,47505
+63866,65815
+63867,29691
+63868,29707
+63869,29691
+63870,63868
+63871,28344
+63872,21200
+63873,23219
+63874,23219
+63875,48359
+63876,59766
+63877,18831
+63878,31245
+63879,31245
+63880,76345
+63881,49969
+63882,73207
+63883,29237
+63884,56804
+63885,37064
+63886,41638
+63887,41638
+63888,21959
+63889,20789
+63890,21337
+63891,60566
+63892,81161
+63893,29731
+63894,24427
+63895,37696
+63896,40068
+63897,41638
+63898,42050
+63899,43849
+63900,45547
+63901,51930
+63902,52120
+63903,53290
+63904,54458
+63905,55581
+63906,15904
+63907,59419
+63908,62030
+63909,29759
+63910,67548
+63911,67836
+63912,68025
+63913,54467
+63914,77829
+63915,58291
+63916,24897
+63917,65262
+63918,43546
+63919,53609
+63920,53610
+63921,24823
+63922,71686
+63923,74275
+63924,74275
+63925,22684
+63926,68921
+63927,36418
+63928,41870
+63929,57570
+63930,45813
+63931,79416
+63932,31668
+63933,46959
+63934,60216
+63935,40985
+63936,55347
+63937,68649
+63938,74939
+63939,61459,37731
+63940,63494
+63941,74478
+63942,51649
+63943,22640
+63944,63195
+63945,63363
+63946,41103
+63947,24046
+63948,64520
+63949,51677
+63950,64285
+63951,53870
+63952,26092
+63953,74846
+63954,39847
+63955,34023,32929
+63956,55497
+63957,48735
+63958,67793
+63959,40811
+63960,21541
+63961,39504
+63962,81161
+63963,81176
+63964,60216
+63965,60868,24764
+63966,34686
+63967,42297
+63968,73345
+63969,58023
+63970,23206
+63971,62785
+63972,58367
+63973,34113
+63974,63973
+63975,78816
+63976,63621
+63977,47730
+63978,43698
+63979,50900
+63980,43701
+63981,48874
+63982,33922
+63983,28202,39988
+63984,71954
+63985,58088
+63986,41023
+63987,42089
+63988,63047
+63989,11502
+63990,61260
+63991,36867
+63992,35534
+63993,48127
+63994,66873
+63995,66874
+63996,78941
+63997,24834
+63998,70990
+63999,28990
+64000,33639
+64001,53226
+64002,81501
+64003,77004
+64004,81482
+64005,77185
+64006,77185
+64007,72135
+64008,73147
+64009,42312
+64010,58200
+64011,20977
+64012,20977
+64013,59549
+64014,60132
+64015,55314
+64016,61871
+64017,72042
+64018,26289
+64019,68196
+64020,75860
+64021,55368
+64022,74824
+64023,60810
+64024,47047
+64025,57255
+64026,48319
+64027,45813
+64028,23219
+64029,56492
+64030,21012
+64031,23219
+64032,58158
+64033,54562
+64034,74251
+64035,28190
+64036,28790
+64037,37411
+64038,60411
+64039,74081
+64040,74081
+64041,34771
+64042,21765
+64043,36405
+64044,81703
+64045,51642
+64046,54562
+64047,77452
+64048,35863
+64049,35858
+64050,52990
+64051,52352
+64052,76196
+64053,64052
+64054,54562
+64055,42229
+64056,70395
+64057,20120
+64058,67675
+64059,61898
+64060,54562
+64061,76206
+64062,25953
+64063,77287
+64064,54562
+64065,28190
+64066,66696
+64067,54189
+64068,54562
+64069,40068
+64070,19069
+64071,41877
+64072,72271
+64073,25013
+64074,81397
+64075,74939
+64076,65108
+64077,28849
+64078,41729
+64079,70033
+64080,25574
+64081,49353
+64082,1584
+64083,37888
+64084,35389
+64085,417
+64086,51068
+64087,35917,55440
+64088,71686
+64089,36694
+64090,53703
+64091,21474
+64092,78399
+64093,62976
+64094,21475
+64095,21475
+64096,53624
+64097,51468
+64098,79743
+64099,73179
+64100,33246
+64101,72611
+64102,61885
+64103,38196
+64104,19982
+64105,31561
+64106,76664
+64107,33455
+64108,38908
+64109,61866
+64110,33793
+64111,72618
+64112,50439
+64113,50439
+64114,55324
+64115,59126
+64116,45029
+64117,46901
+64118,54811
+64119,64227
+64120,76041
+64121,55601
+64122,70079
+64123,31940
+64124,55614
+64125,57573
+64126,36323
+64127,36498
+64128,38213
+64129,29578
+64130,29579
+64131,81162
+64132,60396
+64133,67693
+64134,57651
+64135,78640
+64136,32603
+64137,21842
+64138,66329
+64139,40365
+64140,31647
+64141,71328
+64142,22164
+64143,34362
+64144,63315
+64145,48584
+64146,44041
+64147,41729
+64148,77641
+64149,37179
+64150,77641
+64151,37181
+64152,58168
+64153,46392
+64154,64142
+64155,66158
+64156,53621
+64157,81578
+64158,81578
+64159,28776,53621
+64160,31158
+64161,20409
+64162,35879
+64163,64160
+64164,53619
+64165,64167
+64166,64167
+64167,64171
+64168,50757
+64169,49410
+64170,64171
+64171,60612
+64172,68289
+64173,48980
+64174,48984
+64175,37527
+64176,28747
+64177,21640
+64178,35684
+64179,35682
+64180,35436
+64181,63124
+64182,81626
+64183,2492
+64184,17469
+64185,17466
+64186,19751
+64187,59308
+64188,76672
+64189,68254
+64190,76664
+64191,58195
+64192,22414
+64193,2492
+64194,30300
+64195,60216
+64196,29513
+64197,60746
+64198,29732
+64199,76664
+64200,76672
+64201,67769
+64202,3701
+64203,67479
+64204,51523
+64205,57066
+64206,61339
+64207,22414
+64208,66122
+64209,21480
+64210,32527
+64211,73323
+64212,48662
+64213,22540
+64214,22542
+64215,34154
+64216,53422
+64217,30067
+64218,46827
+64219,35879
+64220,27427
+64221,69238
+64222,21596
+64223,72721
+64224,72716
+64225,55761
+64226,55756
+64227,42351
+64228,69331
+64229,53174
+64230,70549
+64231,54562
+64232,72818
+64233,64231
+64234,56168
+64235,53970
+64236,66785
+64237,28146
+64238,31690
+64239,64164
+64240,58158
+64241,24437
+64242,20819
+64243,58158
+64244,72877
+64245,28299
+64246,71686
+64247,60756
+64248,56209
+64249,60247
+64250,39608
+64251,39068
+64252,28848
+64253,48318
+64254,55998
+64255,39608
+64256,29817
+64257,64253
+64258,64250
+64259,64250
+64260,64259
+64261,56664
+64262,62187
+64263,64250
+64264,77817
+64265,58162
+64266,73081
+64267,36872
+64268,54469
+64269,75731
+64270,26520
+64271,68652
+64272,53246
+64273,73992
+64274,64281
+64275,69153
+64276,63809
+64277,53384
+64278,64273
+64279,64273
+64280,76664
+64281,65975
+64282,41221
+64283,7053
+64284,77920
+64285,51677
+64286,25662
+64287,51470
+64288,38522
+64289,52801
+64290,75411
+64291,64290
+64292,21477
+64293,25770
+64294,53109
+64295,50766
+64296,58674
+64297,19656
+64298,34363
+64299,58162
+64300,70524
+64301,61063
+64302,33545
+64303,54424
+64304,22853
+64305,66182
+64306,49648
+64307,66124
+64308,55946
+64309,55944
+64310,70246
+64311,41162
+64312,72224
+64313,66445
+64314,59850
+64315,39677
+64316,23653
+64317,23672
+64318,69408
+64319,39049
+64320,23678
+64321,21018,79401
+64322,37179,61927
+64323,41743
+64324,20819
+64325,20972
+64326,21018
+64327,31058
+64328,31062
+64329,76664
+64330,20672
+64331,54188
+64332,49648
+64333,38606
+64334,37519
+64335,55761
+64336,55756
+64337,42351
+64338,69331
+64339,50439
+64340,55324
+64341,70079
+64342,55614
+64343,26936
+64344,77641
+64345,34326
+64346,44347
+64347,23517
+64348,54953
+64349,80789
+64350,77431
+64351,31822
+64352,35924
+64353,60216
+64354,27781
+64355,38600
+64356,42105
+64357,45465
+64358,49013
+64359,80576
+64360,49706
+64361,42097
+64362,58384
+64363,42351
+64364,57187
+64365,20111
+64366,77292
+64367,81715
+64368,72983
+64369,62456
+64370,38624
+64371,63809
+64372,30891
+64373,64846
+64374,57187
+64375,31087
+64376,14990
+64377,30374
+64378,44347
+64379,49298
+64380,72283
+64381,62858
+64382,62145
+64383,51020
+64384,42088
+64385,22918
+64386,43669
+64387,46270
+64388,75703
+64389,64383
+64390,46999
+64391,63791
+64392,24961
+64393,28979
+64394,53439
+64395,59169
+64396,40962
+64397,82167
+64398,41899
+64399,63103
+64400,81095
+64401,44437
+64402,31646
+64403,31646
+64404,53757
+64405,63048
+64406,66651
+64407,70905
+64408,63184
+64409,46599
+64410,40759
+64411,75417
+64412,20743
+64413,30514
+64414,27405
+64415,36542
+64416,80808
+64417,32504
+64418,76745
+64419,27118
+64420,22451
+64421,48126
+64422,56170
+64423,64432
+64424,68909
+64425,72421
+64426,70976
+64427,64417
+64428,64426
+64429,69665
+64430,72931
+64431,24021
+64432,35525
+64433,24111
+64434,33500
+64435,41444
+64436,77108
+64437,42002
+64438,74488
+64439,48415
+64440,42388
+64441,50237,64434
+64442,65847
+64443,22128
+64444,56832
+64445,37988
+64446,72437
+64447,29969
+64448,32929
+64449,39599
+64450,22786
+64451,32530
+64452,64534
+64453,53624
+64454,37484
+64455,37484
+64456,40150
+64457,61568
+64458,21703
+64459,22004
+64460,48579
+64461,49641
+64462,56440
+64463,63766
+64464,74917
+64465,79282
+64466,72066
+64467,20727
+64468,45098,43736
+64469,51319
+64470,25949
+64471,37884
+64472,40851
+64473,45556
+64474,37884
+64475,56179,72505
+64476,56492
+64477,37678
+64478,37676
+64479,39824
+64480,43997
+64481,62757
+64482,64052
+64483,74973
+64484,56176
+64485,45546
+64486,53660
+64487,27275
+64488,46673
+64489,53619
+64490,60216
+64491,28591
+64492,19544
+64493,47295
+64494,53373
+64495,70202
+64496,61789
+64497,28932
+64498,73837
+64499,48126
+64500,26016
+64501,30884
+64502,37479
+64503,20825
+64504,57747
+64505,21998
+64506,70214
+64507,64524
+64508,70214
+64509,48495
+64510,26009
+64511,28667
+64512,35390
+64513,41562
+64514,64525
+64515,30884
+64516,56597
+64517,72994
+64518,57389
+64519,57945
+64520,65099
+64521,64527
+64522,64484
+64523,72038
+64524,26018
+64525,21997
+64526,77500
+64527,37448
+64528,53621
+64529,64530
+64530,34989
+64531,64530
+64532,53454
+64533,64532
+64534,37450
+64535,24249
+64536,24251
+64537,27459
+64538,33907
+64539,28803
+64540,29071
+64541,54043
+64542,60534
+64543,71996
+64544,60543
+64545,60541
+64546,47566
+64547,49011
+64548,19195
+64549,68290
+64550,71996
+64551,53710
+64552,52469
+64553,54130
+64554,64553
+64555,57854
+64556,36872
+64557,60370
+64558,75687
+64559,75689
+64560,63417
+64561,47510
+64562,64501
+64563,81361
+64564,75668
+64565,81361
+64566,76162
+64567,38218
+64568,66965
+64569,66977,33135
+64570,64572
+64571,64572
+64572,33134
+64573,54082
+64574,64566
+64575,73537
+64576,65581
+64577,21540
+64578,50976
+64579,64578
+64580,79248
+64581,79248
+64582,46826
+64583,28780,56806
+64584,39767
+64585,61253
+64586,58888
+64587,77895
+64588,52159
+64589,40658
+64590,41339
+64591,23536
+64592,77585
+64593,62452
+64594,80589
+64595,60744
+64596,33928
+64597,36007
+64598,81796
+64599,78909
+64600,22684
+64601,20669
+64602,79638
+64603,34782
+64604,41638
+64605,52410
+64606,69456
+64607,42225
+64608,70814
+64609,73207
+64610,78785
+64611,81626
+64612,33793
+64613,80583
+64614,61816,20069
+64615,80583
+64616,37619
+64617,32154
+64618,64635
+64619,23021
+64620,79953
+64621,50117
+64622,39638
+64623,75613
+64624,72436
+64625,37805
+64626,73475
+64627,53453
+64628,23182
+64629,23641
+64630,21112
+64631,76518
+64632,77260
+64633,78194
+64634,55236
+64635,51474
+64636,49438
+64637,75913
+64638,69199
+64639,62555
+64640,41577
+64641,80213
+64642,29480
+64643,63251
+64644,73850
+64645,66696
+64646,33893
+64647,41180
+64648,42358
+64649,21475
+64650,60042
+64651,19923
+64652,25525
+64653,63252
+64654,26827
+64655,52135
+64656,49059
+64657,74557
+64658,27850
+64659,71029
+64660,77987
+64661,77988
+64662,30062
+64663,36570
+64664,38675
+64665,53721
+64666,63126
+64667,73481,64639
+64668,76664
+64669,68679
+64670,42075
+64671,47869
+64672,36245
+64673,25923
+64674,36467
+64675,31853
+64676,30325
+64677,25770
+64678,31853
+64679,64015
+64680,78826
+64681,19686
+64682,64860
+64683,41844
+64684,70118
+64685,36072
+64686,21525
+64687,79200
+64688,76981
+64689,51180
+64690,33494
+64691,45035
+64692,35721
+64693,31767
+64694,22332
+64695,44440
+64696,42351
+64697,39511
+64698,54838
+64699,61647
+64700,76981
+64701,69609
+64702,50184
+64703,20313
+64704,59775
+64705,30891
+64706,37179
+64707,41743
+64708,35557
+64709,35558
+64710,39261
+64711,61153
+64712,32
+64713,49207
+64714,64700
+64715,72776
+64716,47819
+64717,20079
+64718,35792
+64719,21412
+64720,37609
+64721,27093
+64722,58544
+64723,66859
+64724,66859
+64725,25256
+64726,39367
+64727,46125
+64728,46782
+64729,39375
+64730,39381
+64731,34113
+64732,75439,57693
+64733,15817
+64734,79842
+64735,67161
+64736,67746
+64737,67745
+64738,67750
+64739,79165
+64740,73321
+64741,58170
+64742,60604
+64743,48928
+64744,77277
+64745,21946
+64746,39101
+64747,43107
+64748,51433
+64749,20743
+64750,46472
+64751,74597
+64752,53624
+64753,50297
+64754,29503
+64755,21525
+64756,46136,20889
+64757,73018
+64758,51469
+64759,56925
+64760,59970
+64761,41107
+64762,58106
+64763,30682
+64764,71493
+64765,72861
+64766,68652
+64767,59646
+64768,65224
+64769,32269
+64770,71961
+64771,33650
+64772,31795
+64773,62034,24528
+64774,24875
+64775,42351
+64776,31795
+64777,55807
+64778,61541
+64779,69441
+64780,31831
+64781,57594
+64782,74614
+64783,22116,32929
+64784,57637
+64785,66505
+64786,80421
+64787,66676
+64788,63658
+64789,74867
+64790,71256
+64791,34732
+64792,70426
+64793,19565
+64794,65603
+64795,68929
+64796,60216
+64797,44437
+64798,69978
+64799,31148
+64800,30406
+64801,68123
+64802,34559
+64803,35565
+64804,69235
+64805,38281
+64806,79009
+64807,39961
+64808,23946,36642
+64809,25700
+64810,41250
+64811,58734
+64812,66862
+64813,75364
+64814,81643
+64815,39961
+64816,28731
+64817,49546
+64818,67160
+64819,30514
+64820,75942
+64821,64154
+64822,51155
+64823,63316
+64824,51640
+64825,52486
+64826,73207
+64827,48084
+64828,72267
+64829,53648
+64830,80753
+64831,52656
+64832,63334
+64833,28616
+64834,64833
+64835,64833
+64836,64831
+64837,55815
+64838,75515
+64839,75472
+64840,46267
+64841,66953
+64842,75465
+64843,19732
+64844,72861
+64845,29653
+64846,52656
+64847,65057
+64848,69554
+64849,39357
+64850,27503
+64851,55356
+64852,65004
+64853,38813
+64854,76135
+64855,60450
+64856,35922
+64857,51990
+64858,67845
+64859,34299
+64860,38813
+64861,70404
+64862,58169
+64863,20112
+64864,24306
+64865,51475
+64866,26827
+64867,74844
+64868,27175
+64869,26900
+64870,61415
+64871,75152
+64872,56832
+64873,61070
+64874,43986
+64875,60050
+64876,58088
+64877,58088
+64878,45813
+64879,45813
+64880,45312
+64881,35156
+64882,46827
+64883,77552
+64884,71786
+64885,20038
+64886,70033
+64887,34826
+64888,61541
+64889,33788
+64890,66324
+64891,42351
+64892,45009
+64893,39767
+64894,32233
+64895,33798
+64896,67957
+64897,79076
+64898,34163
+64899,59475
+64900,56000
+64901,23622
+64902,33877
+64903,34019
+64904,53454
+64905,53628
+64906,54446
+64907,65233
+64908,70167
+64909,37871
+64910,78487
+64911,79259
+64912,22667
+64913,81482
+64914,81552
+64915,81722
+64916,45957
+64917,33772
+64918,79247
+64919,59780
+64920,72224
+64921,37319
+64922,40753
+64923,39049
+64924,69157
+64925,34827
+64926,34826
+64927,37169
+64928,29579
+64929,37166
+64930,81735
+64931,74826
+64932,22230
+64933,24628
+64934,61379
+64935,71505
+64936,32795
+64937,37087
+64938,66149
+64939,65198
+64940,63344
+64941,55348
+64942,37411
+64943,28774
+64944,41103
+64945,66115
+64946,31488
+64947,47388
+64948,66060
+64949,25087
+64950,37905
+64951,34299
+64952,63362
+64953,76657
+64954,78204
+64955,31489
+64956,61789
+64957,74610
+64958,37405
+64959,63663
+64960,31109
+64961,53866
+64962,53869
+64963,30296
+64964,48486
+64965,51706
+64966,68230
+64967,76058
+64968,22185
+64969,81174
+64970,72959
+64971,48629
+64972,51563
+64973,53621
+64974,33909
+64975,81800
+64976,51059
+64977,29805
+64978,50272
+64979,32512
+64980,66953
+64981,75548
+64982,19367
+64983,19398
+64984,58425
+64985,48157
+64986,37478
+64987,64970
+64988,21745
+64989,31775,54810
+64990,29928
+64991,27811
+64992,19555
+64993,28775
+64994,47577
+64995,2440
+64996,30300
+64997,30659
+64998,33885
+64999,22263
+65000,19657
+65001,51836
+65002,44362
+65003,53499
+65004,31021
+65005,65760
+65006,63316
+65007,53866
+65008,76664
+65009,76664
+65010,81665
+65011,54562
+65012,60450
+65013,62453
+65014,60216
+65015,58798
+65016,60448
+65017,19239
+65018,53463
+65019,19239
+65020,49444
+65021,62935
+65022,55756
+65023,67614
+65024,31042
+65025,32790
+65026,31596
+65027,78594
+65028,20111
+65029,20112
+65030,61800
+65031,50438
+65032,34326
+65033,36482
+65034,72664
+65035,21213
+65036,21215
+65037,21295
+65038,41249
+65039,70110
+65040,70111
+65041,40416
+65042,27427
+65043,34833
+65044,21561
+65045,21619
+65046,27419
+65047,65040
+65048,38814
+65049,39111
+65050,64851
+65051,39130
+65052,81375
+65053,54879
+65054,48055
+65055,61375
+65056,76256
+65057,76258
+65058,65198
+65059,22415
+65060,21914
+65061,74490
+65062,65557
+65063,66058
+65064,31353
+65065,66334
+65066,64949
+65067,27967
+65068,75803
+65069,20994
+65070,68128
+65071,26009
+65072,35511
+65073,65681
+65074,65198
+65075,32975
+65076,26531
+65077,63047
+65078,65561
+65079,34074
+65080,61422
+65081,26933
+65082,26974
+65083,26290
+65084,18774
+65085,65975
+65086,53867
+65087,68809
+65088,31042
+65089,27348
+65090,68928
+65091,65224
+65092,65190
+65093,35442
+65094,81413
+65095,19091
+65096,21905
+65097,75823
+65098,41055
+65099,69333
+65100,39813
+65101,72959
+65102,63061
+65103,62145
+65104,59490
+65105,56584
+65106,61260
+65107,40370
+65108,31616
+65109,59377
+65110,26016
+65111,27967
+65112,19129
+65113,44240
+65114,32384
+65115,64287
+65116,66953
+65117,68787
+65118,81174
+65119,73837
+65120,37776
+65121,31137
+65122,37113
+65123,28387
+65124,63072
+65125,47128
+65126,20067
+65127,42429
+65128,33292
+65129,22613
+65130,81807
+65131,32929
+65132,35388
+65133,19126
+65134,69028
+65135,65139
+65136,47015
+65137,23775
+65138,63278
+65139,65691
+65140,48579
+65141,66266
+65142,55348
+65143,48514
+65144,29435
+65145,27135
+65146,72983
+65147,46163
+65148,60074
+65149,71551
+65150,53516
+65151,63655
+65152,59422
+65153,71961
+65154,78799
+65155,45017
+65156,24143
+65157,65224
+65158,65994
+65159,66149
+65160,27991
+65161,21550
+65162,55348
+65163,20163
+65164,33213
+65165,58161
+65166,35340
+65167,32804
+65168,21289
+65169,18919
+65170,21328
+65171,53867
+65172,68835
+65173,55494
+65174,55494
+65175,53865
+65176,28164,58166
+65177,34602
+65178,48439
+65179,63434
+65180,30575
+65181,30575
+65182,19488
+65183,28600
+65184,62495
+65185,59645
+65186,32176
+65187,38191
+65188,31885
+65189,81372
+65190,48478
+65191,65190
+65192,65190
+65193,19867,80173
+65194,54441,68990
+65195,31496
+65196,66298
+65197,48629
+65198,65869
+65199,65086
+65200,57187
+65201,35924
+65202,38563
+65203,22118
+65204,39109
+65205,18969
+65206,28499
+65207,53648
+65208,30937
+65209,49078
+65210,52497
+65211,70813
+65212,49353
+65213,38218
+65214,55768
+65215,53870
+65216,70214
+65217,32792
+65218,73870
+65219,22194
+65220,32374
+65221,66087
+65222,19755
+65223,47717
+65224,19171
+65225,46684
+65226,66953
+65227,56065
+65228,39101
+65229,68990
+65230,19009
+65231,58377
+65232,56579
+65233,37935
+65234,74478
+65235,57573
+65236,69216,65235
+65237,18969
+65238,21703
+65239,59124
+65240,20730
+65241,65497
+65242,31808
+65243,34867
+65244,60216
+65245,37405
+65246,58760
+65247,30508
+65248,62145
+65249,25115
+65250,55686
+65251,65879
+65252,67270
+65253,34327
+65254,67161
+65255,35362
+65256,57347
+65257,35686
+65258,53454
+65259,78966
+65260,24188
+65261,61247
+65262,29237
+65263,79852
+65264,67819
+65265,30514
+65266,78286
+65267,53982
+65268,57254
+65269,67872
+65270,36264
+65271,79661
+65272,70276
+65273,35085
+65274,61714
+65275,28202
+65276,59365
+65277,33928
+65278,29513
+65279,44156
+65280,40608
+65281,45302
+65282,57811
+65283,57280
+65284,11856
+65285,29817
+65286,57280
+65287,19947
+65288,19967
+65289,19979
+65290,70033
+65291,21814
+65292,22935
+65293,79467
+65294,20690
+65295,24816
+65296,25727
+65297,26191
+65298,46610
+65299,45371
+65300,45370
+65301,70249
+65302,67254
+65303,28106
+65304,29677,54562
+65305,29957
+65306,43779
+65307,33419
+65308,33420
+65309,34249
+65310,36618
+65311,72892
+65312,56618
+65313,41773
+65314,40414,19907
+65315,37623
+65316,20826
+65317,45813
+65318,41388
+65319,41388
+65320,72892
+65321,43291
+65322,43562
+65323,43766
+65324,63609
+65325,38477
+65326,38477
+65327,45316
+65328,45316
+65329,45671
+65330,35836
+65331,45885
+65332,49451
+65333,49583
+65334,81482
+65335,35358
+65336,65289
+65337,58616
+65338,77329
+65339,79749
+65340,51467
+65341,81161
+65342,53072
+65343,53250
+65344,53628
+65345,55236
+65346,55570
+65347,57289
+65348,35996
+65349,60358
+65350,60899
+65351,28028
+65352,62060
+65353,64809
+65354,67703
+65355,66851
+65356,67649
+65357,77641
+65358,58965
+65359,63295
+65360,70033
+65361,77641
+65362,61253
+65363,40068
+65364,71147
+65365,71148
+65366,72159
+65367,72559
+65368,77661
+65369,68700
+65370,77829
+65371,78607
+65372,40752
+65373,20745
+65374,81251
+65375,81448
+65376,37191
+65377,81787
+65378,26232
+65379,46760
+65380,78725
+65381,20690
+65382,54429
+65383,62113
+65384,71493
+65385,26118
+65386,58042
+65387,63883
+65388,34220
+65389,55030
+65390,34327
+65391,65878
+65392,63852
+65393,65994
+65394,34633
+65395,34643
+65396,34867
+65397,19382
+65398,40617
+65399,60673
+65400,67651
+65401,66850
+65402,36694
+65403,60216
+65404,81536
+65405,74152
+65406,48640
+65407,35517
+65408,35771
+65409,67381
+65410,41279
+65411,73815
+65412,40068
+65413,40068
+65414,36317
+65415,32176
+65416,67819
+65417,76441
+65418,73478
+65419,45302
+65420,31104
+65421,61007
+65422,52143
+65423,28775
+65424,35130
+65425,38053
+65426,35680
+65427,28792
+65428,28529
+65429,42391
+65430,76146
+65431,20531
+65432,65894
+65433,31336
+65434,65893
+65435,58537
+65436,74891
+65437,81578
+65438,65893
+65439,76441
+65440,81482
+65441,43907
+65442,79515
+65443,26448
+65444,44013
+65445,44013
+65446,53015
+65447,58151
+65448,50190
+65449,68802
+65450,58152
+65451,66507
+65452,73762
+65453,72622
+65454,72685
+65455,33793
+65456,40003
+65457,81213
+65458,72618
+65459,37355
+65460,40964
+65461,19176
+65462,19231
+65463,37938
+65464,48549
+65465,31135
+65466,66262
+65467,38512
+65468,67250
+65469,53593
+65470,35283
+65471,35291
+65472,50638
+65473,57572
+65474,53608
+65475,19200
+65476,53608
+65477,63663
+65478,25302
+65479,44276
+65480,53054
+65481,47947
+65482,79904
+65483,53607
+65484,75902
+65485,75903
+65486,27777
+65487,65182
+65488,41300
+65489,58776
+65490,62688
+65491,53958
+65492,39995
+65493,38618
+65494,47717
+65495,70629
+65496,61247
+65497,63070
+65498,70629
+65499,58401
+65500,48131
+65501,58014
+65502,77448
+65503,60603
+65504,60715
+65505,60604
+65506,76338
+65507,54130
+65508,34924
+65509,64949
+65510,20698
+65511,56492
+65512,27059
+65513,38135
+65514,60237
+65515,79375
+65516,32022
+65517,51988,53476
+65518,23776
+65519,53355
+65520,59549
+65521,31231
+65522,40920
+65523,65159
+65524,27086
+65525,68979
+65526,47716
+65527,55495
+65528,47718
+65529,32177
+65530,21200
+65531,35682
+65532,35922
+65533,58014
+65534,60603
+65535,64846
+65536,34337
+65537,53624
+65538,48697
+65539,20635
+65540,24245
+65541,55734
+65542,50877
+65543,24007
+65544,32506
+65545,24404
+65546,65686
+65547,35557
+65548,74081
+65549,76162
+65550,31873,62722
+65551,31874
+65552,80896
+65553,41556
+65554,31853
+65555,69682
+65556,38732
+65557,59645
+65558,59646
+65559,34538
+65560,54044
+65561,20878
+65562,42389
+65563,19547
+65564,44240
+65565,53757
+65566,67267
+65567,62145
+65568,58162
+65569,66334
+65570,67277
+65571,30694
+65572,62034
+65573,49763
+65574,55662
+65575,61202
+65576,21597
+65577,54439
+65578,47678
+65579,51894
+65580,47908
+65581,51894
+65582,50010
+65583,20577
+65584,20647
+65585,30357
+65586,56871
+65587,41155
+65588,52268
+65589,65201
+65590,76627
+65591,53870
+65592,19810
+65593,65641
+65594,81801
+65595,76940
+65596,25234,65599
+65597,52691
+65598,57223
+65599,68831
+65600,60216
+65601,37712
+65602,18866
+65603,57573
+65604,28358
+65605,71697
+65606,25094
+65607,38012
+65608,40150
+65609,21359
+65610,71446
+65611,65057
+65612,34299
+65613,66297
+65614,73009
+65615,55627
+65616,59137
+65617,38196
+65618,33453
+65619,71493
+65620,40986
+65621,70549
+65622,59586
+65623,65629
+65624,45929
+65625,65629
+65626,65629
+65627,59645
+65628,48976
+65629,61871
+65630,65629
+65631,64142
+65632,74917
+65633,31245
+65634,36065
+65635,58162
+65636,67272
+65637,31742
+65638,31742
+65639,76664
+65640,57573
+65641,31743
+65642,19382
+65643,42429
+65644,51835
+65645,22577
+65646,65086
+65647,79606
+65648,60607
+65649,66149
+65650,63185
+65651,45191
+65652,53452
+65653,38700
+65654,38700
+65655,76664
+65656,46149
+65657,36072
+65658,65655
+65659,30975
+65660,47678
+65661,31740
+65662,73573
+65663,58088
+65664,37625
+65665,76135
+65666,24349
+65667,35922
+65668,51216
+65669,31205
+65670,31340
+65671,73275
+65672,31245
+65673,66149
+65674,48445
+65675,48631
+65676,65836
+65677,62712
+65678,63663
+65679,70526
+65680,58161
+65681,72052
+65682,19171
+65683,45097
+65684,61422
+65685,65906
+65686,66149
+65687,58161
+65688,48084
+65689,31443
+65690,34029
+65691,18840
+65692,56072
+65693,50880
+65694,19353
+65695,37476
+65696,33891
+65697,71323
+65698,72959
+65699,72959
+65700,65691
+65701,58166
+65702,60216
+65703,29664
+65704,34559
+65705,64846
+65706,63278
+65707,53619
+65708,60450
+65709,53339
+65710,64142
+65711,68289
+65712,75902
+65713,36602
+65714,47870
+65715,80497
+65716,38847
+65717,53474
+65718,76648
+65719,19656
+65720,46553
+65721,69701
+65722,75565
+65723,59421
+65724,37405
+65725,64403
+65726,56179
+65727,53958
+65728,34924
+65729,19228
+65730,75917
+65731,65775
+65732,39116
+65733,46553
+65734,27991
+65735,22944
+65736,53965
+65737,31443
+65738,34620
+65739,28356
+65740,21057
+65741,58166
+65742,43107
+65743,33758
+65744,71329
+65745,51174
+65746,30596
+65747,30598
+65748,68522
+65749,19755
+65750,62963
+65751,60216
+65752,61089
+65753,48401
+65754,23790,76136
+65755,48685
+65756,65767
+65757,34955
+65758,65767
+65759,28344
+65760,35922
+65761,39712
+65762,46274
+65763,65767,50701
+65764,55495
+65765,55742
+65766,58196
+65767,60216
+65768,66035
+65769,66554
+65770,68236
+65771,65765,71595
+65772,77391
+65773,31467
+65774,65859
+65775,75917
+65776,31616
+65777,31239
+65778,75436
+65779,51682
+65780,38794
+65781,63187
+65782,37411
+65783,78818
+65784,60604
+65785,64534
+65786,57187
+65787,59307
+65788,57187
+65789,57333
+65790,32793
+65791,66262
+65792,57084
+65793,72983
+65794,53239
+65795,53717
+65796,53868
+65797,54839
+65798,54044
+65799,38794
+65800,53865
+65801,44763
+65802,72689
+65803,65488
+65804,74622
+65805,77034
+65806,59645
+65807,38732
+65808,72248
+65809,25202
+65810,34924
+65811,75911
+65812,67957
+65813,67479
+65814,45124
+65815,35620
+65816,69173
+65817,35735
+65818,71567
+65819,55496
+65820,45829
+65821,59646
+65822,21703
+65823,58776
+65824,32221
+65825,49750,39150
+65826,49750
+65827,79282
+65828,73855
+65829,30073
+65830,36404
+65831,59646
+65832,77045
+65833,53758
+65834,74583
+65835,60074
+65836,60071
+65837,34763
+65838,56181
+65839,65893
+65840,70392
+65841,63414
+65842,58158
+65843,38053,30019
+65844,47716
+65845,47718
+65846,75204
+65847,20836
+65848,75574
+65849,65062
+65850,65594
+65851,30405
+65852,37123
+65853,77399
+65854,51188
+65855,47830
+65856,58583
+65857,48803
+65858,65682
+65859,66047
+65860,58107
+65861,65045
+65862,66329
+65863,58169
+65864,58196
+65865,20763
+65866,31410
+65867,39049
+65868,31245
+65869,47716
+65870,69860
+65871,53884
+65872,30975
+65873,30975
+65874,38810
+65875,81396
+65876,29488
+65877,66264
+65878,59645
+65879,60126
+65880,60216
+65881,37478
+65882,40195
+65883,64403
+65884,31058
+65885,31058
+65886,62409
+65887,31097
+65888,31477
+65889,30391
+65890,34646
+65891,30391
+65892,66377
+65893,31668
+65894,79385
+65895,38637
+65896,74090
+65897,32269
+65898,65893
+65899,65879
+65900,41816
+65901,37042
+65902,31940
+65903,58162
+65904,61422
+65905,65893
+65906,72052
+65907,56832
+65908,48171
+65909,56585
+65910,35926
+65911,48157
+65912,30891
+65913,25123
+65914,31054
+65915,34640
+65916,61154
+65917,26488
+65918,31326
+65919,65224
+65920,38566
+65921,25094
+65922,72983
+65923,72983
+65924,66551
+65925,32793
+65926,31885
+65927,19228
+65928,72959
+65929,31638
+65930,23258
+65931,56362
+65932,73997
+65933,34299
+65934,31742
+65935,19656
+65936,42429
+65937,80174
+65938,65747
+65939,29732
+65940,66185
+65941,69522
+65942,65075
+65943,81807
+65944,65679
+65945,35546
+65946,22194
+65947,34618
+65948,58162
+65949,69439
+65950,31948
+65951,65086
+65952,32269
+65953,28164
+65954,29869
+65955,58144
+65956,61259
+65957,75016
+65958,79432
+65959,39294
+65960,42539
+65961,61792
+65962,19497
+65963,61789
+65964,63663
+65965,63665
+65966,65559
+65967,38869
+65968,65681
+65969,35554
+65970,41103
+65971,72832
+65972,57093
+65973,38390
+65974,46451
+65975,72052
+65976,54044
+65977,69564
+65978,62513
+65979,32506
+65980,36840
+65981,31690
+65982,56275
+65983,34460
+65984,41221
+65985,66266
+65986,27213
+65987,26010
+65988,67275
+65989,19200
+65990,67275
+65991,77034
+65992,69012
+65993,20881
+65994,65224
+65995,38218
+65996,57929
+65997,59379
+65998,60216
+65999,48791
+66000,28234
+66001,30434
+66002,74462
+66003,72714
+66004,68290
+66005,56472
+66006,56482
+66007,57934
+66008,45813
+66009,51388
+66010,46708
+66011,21013
+66012,19737
+66013,62528
+66014,62723
+66015,72983
+66016,19379
+66017,47908
+66018,19004
+66019,78536
+66020,66018
+66021,21905
+66022,21731
+66023,71493
+66024,74479
+66025,75292
+66026,50215
+66027,76251
+66028,34924
+66029,63953
+66030,77521
+66031,51068
+66032,35642
+66033,65029
+66034,70046
+66035,46782
+66036,19305
+66037,36800
+66038,62145
+66039,19171
+66040,48210
+66041,65931
+66042,35787
+66043,59645
+66044,60329
+66045,71446
+66046,53519
+66047,72052
+66048,35926
+66049,34797
+66050,65174
+66051,37328
+66052,58158
+66053,61311
+66054,27282
+66055,53654
+66056,78770
+66057,78818
+66058,44440
+66059,54404
+66060,19200
+66061,64052
+66062,76196
+66063,37450
+66064,21875,23427
+66065,37405
+66066,77374
+66067,60603
+66068,65804
+66069,45199
+66070,34148
+66071,35926
+66072,25808
+66073,34867
+66074,60603
+66075,60603
+66076,58282
+66077,76627
+66078,75018
+66079,28475
+66080,29418
+66081,60411
+66082,58162
+66083,46747
+66084,21475
+66085,46747
+66086,21905
+66087,21904
+66088,48767
+66089,66087
+66090,22152
+66091,34837
+66092,46457
+66093,40986
+66094,54044
+66095,25087
+66096,54061
+66097,25844
+66098,19087
+66099,20039
+66100,28238
+66101,35534
+66102,66101
+66103,48590
+66104,64846
+66105,79757,64831
+66106,59143
+66107,75016
+66108,77275
+66109,48077
+66110,59604
+66111,59605
+66112,64284
+66113,30191
+66114,30891
+66115,31477
+66116,60570
+66117,53021
+66118,78071
+66119,64142
+66120,69131
+66121,47744
+66122,55760
+66123,74488
+66124,47747
+66125,34038
+66126,77636
+66127,33941
+66128,37884
+66129,26298
+66130,53339
+66131,72983
+66132,26298
+66133,28414
+66134,58583
+66135,60216
+66136,47746
+66137,74067
+66138,74067
+66139,37390
+66140,72409
+66141,65869
+66142,19131
+66143,74973
+66144,54837
+66145,48949
+66146,56458
+66147,21745
+66148,54871
+66149,65869
+66150,28774
+66151,60216
+66152,66158
+66153,31742
+66154,34924
+66155,35477
+66156,66153
+66157,66153
+66158,67273
+66159,37850
+66160,41417
+66161,70516
+66162,74037
+66163,54904
+66164,37824
+66165,34363
+66166,69028
+66167,47661
+66168,23764
+66169,66334
+66170,72186
+66171,74594
+66172,66334
+66173,25844
+66174,74620
+66175,69012
+66176,28414,35780
+66177,62820
+66178,53959,35781
+66179,69012
+66180,57330
+66181,34564
+66182,39556
+66183,80046
+66184,75183
+66185,66266
+66186,38561
+66187,19656
+66188,34397
+66189,73918
+66190,34664
+66191,61468
+66192,70033
+66193,62179
+66194,66704
+66195,19132
+66196,47639
+66197,56482
+66198,56491
+66199,56491
+66200,64073
+66201,41248
+66202,56482
+66203,22686
+66204,65295
+66205,75016
+66206,56485
+66207,73401
+66208,53848
+66209,79743
+66210,24261
+66211,60786
+66212,48126
+66213,52842
+66214,39014
+66215,56957
+66216,73018
+66217,75917
+66218,81413
+66219,61236
+66220,79469
+66221,55348
+66222,35456
+66223,74567
+66224,77367
+66225,27424
+66226,21475
+66227,70214
+66228,26290
+66229,81413
+66230,81413
+66231,59333
+66232,59970
+66233,38027
+66234,37131
+66235,77725
+66236,32176
+66237,59858
+66238,31118
+66239,53867
+66240,72426
+66241,39406
+66242,56499
+66243,31039
+66244,19298
+66245,21738
+66246,55348
+66247,20386
+66248,39094
+66249,81578
+66250,66838
+66251,31626
+66252,53934
+66253,53867
+66254,21679
+66255,77482
+66256,18740
+66257,20763
+66258,79717
+66259,81251
+66260,75826
+66261,67311
+66262,55347
+66263,78257
+66264,21631
+66265,47830
+66266,44440
+66267,19310
+66268,49683
+66269,64836
+66270,57573
+66271,59377
+66272,78685
+66273,78881
+66274,63187
+66275,67161
+66276,65754
+66277,22419
+66278,26290
+66279,54005
+66280,48349
+66281,48171
+66282,28128
+66283,60216
+66284,43185
+66285,25234
+66286,35771
+66287,69634
+66288,36841
+66289,43812
+66290,41911
+66291,22152
+66292,19200
+66293,18836
+66294,36425
+66295,50409
+66296,49360
+66297,28539
+66298,34149
+66299,78257
+66300,67311
+66301,57987
+66302,45096
+66303,42387
+66304,70110
+66305,45067
+66306,58295
+66307,34209
+66308,61875
+66309,21078
+66310,28541
+66311,42225
+66312,63065
+66313,76196
+66314,48534
+66315,55828
+66316,28534
+66317,20835
+66318,59376
+66319,23182
+66320,39104
+66321,60131
+66322,63061
+66323,38700
+66324,32974
+66325,18988
+66326,25302
+66327,32965
+66328,72830
+66329,77451
+66330,66358
+66331,2252
+66332,2252
+66333,30896
+66334,47717
+66335,64696
+66336,38515
+66337,18774
+66338,72959
+66339,54774
+66340,28530
+66341,44440
+66342,61793
+66343,23790
+66344,64490
+66345,64831
+66346,61054
+66347,32813
+66348,71315
+66349,36101
+66350,41856
+66351,79190
+66352,20690
+66353,59645
+66354,57556
+66355,24718
+66356,66358
+66357,81789
+66358,37187
+66359,23765
+66360,55905
+66361,67883
+66362,20763
+66363,70651
+66364,49347
+66365,55734
+66366,38091
+66367,64864
+66368,64864
+66369,54082
+66370,60612
+66371,53624
+66372,66065
+66373,52481
+66374,21007
+66375,38883
+66376,51705
+66377,34921
+66378,72983
+66379,35465
+66380,70091
+66381,21104
+66382,48084
+66383,45490
+66384,35534
+66385,21710,22305
+66386,22285
+66387,71996
+66388,53716
+66389,28238
+66390,66801
+66391,32718
+66392,48126
+66393,57523
+66394,68122
+66395,53716
+66396,59549
+66397,66396
+66398,74939
+66399,53701
+66400,38601
+66401,41875,66396
+66402,73147,66396
+66403,57934
+66404,20745
+66405,60706
+66406,41877
+66407,61251
+66408,39777
+66409,23765
+66410,72791
+66411,47203
+66412,63472
+66413,54944
+66414,57934
+66415,51068
+66416,54082
+66417,54562
+66418,70033
+66419,42229
+66420,54562
+66421,59122,45931
+66422,59124
+66423,70568
+66424,66423
+66425,66423
+66426,59124
+66427,56832
+66428,45813
+66429,60733
+66430,51468
+66431,79422
+66432,72877
+66433,81781
+66434,70731
+66435,47442
+66436,55765
+66437,33590
+66438,63386,75748
+66439,62034,24528
+66440,55768
+66441,56165
+66442,71697
+66443,33500
+66444,65793
+66445,73837
+66446,54953
+66447,74488
+66448,25256
+66449,70569
+66450,61474
+66451,66756
+66452,79937
+66453,81396
+66454,66458
+66455,21078
+66456,79234
+66457,41444
+66458,57089
+66459,57333
+66460,73762
+66461,80344
+66462,26301
+66463,19290
+66464,39676
+66465,42244
+66466,77641
+66467,81681
+66468,71398
+66469,79619
+66470,77439
+66471,61874
+66472,27455
+66473,58154
+66474,28323
+66475,43893,72914
+66476,59020
+66477,64812
+66478,80607
+66479,28323
+66480,49897
+66481,59970
+66482,60216
+66483,79086
+66484,69466
+66485,41747
+66486,56480
+66487,19928,77216
+66488,78777
+66489,22406
+66490,38475
+66491,48084
+66492,66491
+66493,54813
+66494,77845
+66495,65174
+66496,28747
+66497,42161
+66498,70173
+66499,63047
+66500,53648
+66501,77585
+66502,77585
+66503,21731
+66504,23536
+66505,31820
+66506,43107
+66507,56164
+66508,63064
+66509,43107
+66510,23536
+66511,51287
+66512,76597
+66513,30511
+66514,35695
+66515,77575
+66516,72421
+66517,25182
+66518,25359
+66519,80789
+66520,75548
+66521,62423
+66522,68236
+66523,68613
+66524,2889
+66525,20973
+66526,58334
+66527,70046
+66528,40195
+66529,26359
+66530,26646
+66531,44245
+66532,64746
+66533,64748
+66534,24327
+66535,53210
+66536,71493
+66537,11889
+66538,57901
+66539,32662
+66540,79076
+66541,42389
+66542,41250
+66543,59475
+66544,32691
+66545,67574
+66546,57635
+66547,67425
+66548,42389
+66549,48534
+66550,62144
+66551,18839
+66552,78238
+66553,44988
+66554,39112
+66555,49498
+66556,21922
+66557,61089
+66558,45024
+66559,60216
+66560,20698
+66561,20723
+66562,22093
+66563,32132
+66564,62142
+66565,77277
+66566,58395
+66567,42306
+66568,45733
+66569,66551
+66570,50885
+66571,50885
+66572,50885
+66573,50885
+66574,50885
+66575,66551
+66576,36996
+66577,66551
+66578,59420
+66579,29548
+66580,29548
+66581,29548
+66582,46894
+66583,46894
+66584,46894
+66585,29548
+66586,46894
+66587,41450
+66588,77740
+66589,79355
+66590,22776
+66591,55210
+66592,40538
+66593,61789
+66594,31489
+66595,55210
+66596,57556
+66597,48037
+66598,56941
+66599,63060
+66600,60598
+66601,73246
+66602,32298
+66603,35557
+66604,28546
+66605,25496,67131
+66606,46507
+66607,46507
+66608,24726
+66609,58200
+66610,66609
+66611,66609
+66612,31417
+66613,53454
+66614,20745
+66615,71687
+66616,61355
+66617,49222
+66618,77077
+66619,71686
+66620,42094
+66621,59110
+66622,60400
+66623,31621
+66624,40089
+66625,43313
+66626,76441
+66627,26136
+66628,63543
+66629,48288
+66630,78288
+66631,47682
+66632,76429
+66633,36155
+66634,10299
+66635,37317
+66636,23994
+66637,48393
+66638,66617
+66639,26669
+66640,53384
+66641,30514
+66642,44696
+66643,68697
+66644,43638
+66645,69102
+66646,26298
+66647,44802
+66648,44801
+66649,80197
+66650,65816
+66651,79639
+66652,65075
+66653,31742
+66654,40195
+66655,77976
+66656,35625
+66657,57901
+66658,78209
+66659,41181
+66660,31991
+66661,31991
+66662,53528
+66663,58162
+66664,32392
+66665,55668
+66666,51120
+66667,29040
+66668,58282
+66669,80438
+66670,66507
+66671,45051
+66672,33425
+66673,37652
+66674,55347
+66675,47869
+66676,28536
+66677,60216
+66678,73830
+66679,60993
+66680,43740
+66681,77967
+66682,79363
+66683,63026
+66684,63026
+66685,21384
+66686,33812
+66687,67513
+66688,35557
+66689,35557
+66690,65759
+66691,66695
+66692,63415
+66693,62456
+66694,44740
+66695,33486
+66696,33799
+66697,71307
+66698,62456
+66699,19497
+66700,71306
+66701,58308
+66702,31647
+66703,73636
+66704,43104
+66705,25046
+66706,25486
+66707,36029
+66708,42327
+66709,58356
+66710,62510
+66711,38477
+66712,69460
+66713,22948
+66714,23644
+66715,60870
+66716,51469
+66717,70629
+66718,52497
+66719,73636
+66720,49767
+66721,12380
+66722,44816
+66723,26648
+66724,33644
+66725,60886
+66726,53613
+66727,80483
+66728,26295
+66729,31563
+66730,42142
+66731,36542
+66732,53067
+66733,61202,44558
+66734,66785
+66735,79639
+66736,30824
+66737,69978
+66738,59610
+66739,77726
+66740,50339
+66741,23641
+66742,23182
+66743,44566
+66744,46698
+66745,25098
+66746,81643
+66747,33271
+66748,20593
+66749,27405
+66750,66727
+66751,81715
+66752,50784
+66753,46599
+66754,33184
+66755,30891
+66756,33500
+66757,32966
+66758,31846
+66759,28890
+66760,58917
+66761,31858
+66762,60032
+66763,76229
+66764,35359
+66765,41657
+66766,50424
+66767,31831
+66768,74614
+66769,42225
+66770,76441
+66771,76441
+66772,40578
+66773,64344
+66774,71786
+66775,54274
+66776,21751
+66777,38218
+66778,30230
+66779,28600
+66780,73669
+66781,55952
+66782,51216
+66783,43744
+66784,52380
+66785,53454
+66786,56176
+66787,62034
+66788,74343
+66789,26673
+66790,36491
+66791,25454
+66792,39676
+66793,26884
+66794,27167
+66795,27167
+66796,29781
+66797,72421,29779
+66798,31168
+66799,32642
+66800,32888
+66801,64231
+66802,60771
+66803,37582
+66804,42181
+66805,20262
+66806,33790
+66807,44651
+66808,46081
+66809,59891
+66810,47290
+66811,57909
+66812,81161
+66813,40446
+66814,61246
+66815,61901
+66816,45813
+66817,64073
+66818,64873
+66819,40292
+66820,67826
+66821,68551
+66822,72186
+66823,44407
+66824,66834,70426
+66825,80061
+66826,81743
+66827,11889
+66828,62034
+66829,22128
+66830,19412
+66831,47344
+66832,74488
+66833,77980
+66834,55768
+66835,51120
+66836,82066
+66837,79274
+66838,49207
+66839,45813
+66840,79749
+66841,23221
+66842,37908
+66843,50574
+66844,28621,63304
+66845,40752
+66846,64952
+66847,40236
+66848,76256
+66849,37913
+66850,67703
+66851,68363
+66852,78635
+66853,28438
+66854,45641
+66855,70033
+66856,50353
+66857,26120
+66858,21771
+66859,47655
+66860,22640
+66861,79737
+66862,61159
+66863,59849
+66864,38715
+66865,37247
+66866,71957
+66867,37247
+66868,68622
+66869,34249
+66870,66869
+66871,64534
+66872,28780
+66873,64542
+66874,64544,34987
+66875,4298
+66876,48814
+66877,79596
+66878,30391
+66879,37532
+66880,72960
+66881,66282
+66882,19228
+66883,19176
+66884,40003
+66885,33615
+66886,42003
+66887,40625
+66888,63363
+66889,51677
+66890,35652
+66891,41341
+66892,31825
+66893,79009
+66894,40003
+66895,76811
+66896,34209
+66897,57553
+66898,24373
+66899,80753
+66900,33615
+66901,31960
+66902,44420
+66903,80438
+66904,36053
+66905,70561
+66906,22907
+66907,81239
+66908,78210
+66909,37541,66500
+66910,70556
+66911,70562
+66912,77180
+66913,66905
+66914,66911
+66915,66766
+66916,46178
+66917,73093
+66918,49897
+66919,80761
+66920,60691,46598
+66921,28529
+66922,63677
+66923,63340
+66924,57106
+66925,57106
+66926,57106
+66927,47394
+66928,47393
+66929,64142
+66930,21765
+66931,60216
+66932,42225
+66933,61621
+66934,66933
+66935,29643
+66936,68429
+66937,32580
+66938,63424
+66939,63424
+66940,42181
+66941,79436
+66942,32691
+66943,53453
+66944,77287
+66945,26302
+66946,59020,66945
+66947,77014
+66948,70033
+66949,32233
+66950,25861
+66951,57982
+66952,42351
+66953,21474
+66954,62147
+66955,34787
+66956,51316
+66957,64833
+66958,75741
+66959,30954
+66960,31618
+66961,41607
+66962,69681
+66963,60023
+66964,57187
+66965,61259
+66966,73837
+66967,41228
+66968,71408
+66969,47321
+66970,59423
+66971,61259
+66972,38614,73470
+66973,29780
+66974,33005
+66975,61259
+66976,61251
+66977,79259
+66978,73002
+66979,75019
+66980,44474
+66981,65509
+66982,66965
+66983,31241
+66984,73324
+66985,51475
+66986,25600
+66987,25920
+66988,18769
+66989,50173
+66990,70609
+66991,73560
+66992,32691
+66993,34206
+66994,32610
+66995,81647
+66996,19511
+66997,50104
+66998,27625
+66999,22776
+67000,23521
+67001,70033
+67002,60935
+67003,72928
+67004,68867
+67005,37179
+67006,41743
+67007,40767
+67008,68122
+67009,53828
+67010,77641
+67011,42181
+67012,43136
+67013,43418
+67014,40690
+67015,46289
+67016,45946
+67017,62135
+67018,33134
+67019,45946
+67020,64231
+67021,60078
+67022,81227
+67023,72402
+67024,66418
+67025,26240
+67026,43313
+67027,40772
+67028,58088
+67029,66851
+67030,45946
+67031,34199
+67032,45812
+67033,45813
+67034,50717
+67035,19421
+67036,81482
+67037,77641
+67038,35096
+67039,35097
+67040,71173
+67041,22684,23240
+67042,30961
+67043,28220
+67044,25013
+67045,66889
+67046,19241
+67047,48579
+67048,62743
+67049,53660
+67050,66859
+67051,77448
+67052,69199
+67053,78257
+67054,55348
+67055,76657
+67056,57286
+67057,73837
+67058,65865
+67059,53862
+67060,48319
+67061,19936
+67062,48787
+67063,58462
+67064,66132
+67065,80618
+67066,60544
+67067,60546
+67068,23021
+67069,67049
+67070,21547
+67071,19849
+67072,22453
+67073,25407
+67074,51428
+67075,78755
+67076,26298
+67077,66953
+67078,52777
+67079,27506
+67080,70515
+67081,21959
+67082,45302
+67083,12655
+67084,43672
+67085,67899
+67086,55499
+67087,40293
+67088,44203
+67089,41022
+67090,61302
+67091,54871
+67092,48491
+67093,76066
+67094,46639
+67095,73287
+67096,35557
+67097,78179
+67098,66885
+67099,66885
+67100,42102
+67101,33455
+67102,80753
+67103,22786
+67104,42097
+67105,59543
+67106,33512
+67107,21239
+67108,26977
+67109,44747
+67110,45689
+67111,59373
+67112,20385
+67113,40514
+67114,20079
+67115,65663
+67116,66862
+67117,59582
+67118,37318
+67119,76518
+67120,21412
+67121,25256
+67122,40965
+67123,22853
+67124,39961
+67125,52068
+67126,51300
+67127,43686
+67128,77171
+67129,51069
+67130,68038
+67131,69543
+67132,23712
+67133,31308
+67134,77857
+67135,80977
+67136,31821
+67137,66933
+67138,21568
+67139,28619
+67140,71595
+67141,76981
+67142,23232
+67143,60216
+67144,81647
+67145,46491
+67146,54705
+67147,57194
+67148,69544
+67149,76936
+67150,81643
+67151,74281
+67152,64730
+67153,61763
+67154,34272
+67155,53109
+67156,70629
+67157,34924
+67158,62439
+67159,61209
+67160,63060
+67161,71439
+67162,31200
+67163,23748
+67164,2368
+67165,73760
+67166,21622
+67167,51469
+67168,69199
+67169,46782
+67170,32508
+67171,55395
+67172,41729
+67173,35625
+67174,80753
+67175,72421
+67176,35279
+67177,29969
+67178,21412
+67179,67565
+67180,72724
+67181,19629
+67182,25616
+67183,27832
+67184,28656
+67185,40774
+67186,61713
+67187,68793
+67188,77042
+67189,58888
+67190,20690
+67191,66726
+67192,75814
+67193,22103
+67194,59645
+67195,46780
+67196,31606
+67197,71686
+67198,66323
+67199,75755
+67200,31646
+67201,50541
+67202,75005
+67203,22901,37325
+67204,25013
+67205,25359
+67206,26359
+67207,19342
+67208,38231
+67209,22274
+67210,72029
+67211,65925
+67212,52157
+67213,80227
+67214,53355
+67215,53717
+67216,1914
+67217,58955
+67218,72228
+67219,54082
+67220,33907
+67221,16463
+67222,14649
+67223,35388
+67224,67272
+67225,45406,76778
+67226,27992
+67227,77509,32229
+67228,49217
+67229,49844
+67230,81482
+67231,55625
+67232,68859
+67233,36674
+67234,33644
+67235,19849
+67236,73117
+67237,24630
+67238,49059
+67239,62187
+67240,31029
+67241,48894
+67242,36694
+67243,78274
+67244,25115
+67245,41867
+67246,45812
+67247,73650
+67248,45813
+67249,40752
+67250,67819
+67251,78236
+67252,44456
+67253,54704
+67254,40704,41914
+67255,53959
+67256,40945
+67257,41047
+67258,22786
+67259,61266
+67260,47989
+67261,63416
+67262,78635
+67263,59497
+67264,26298
+67265,34897
+67266,34826
+67267,36800
+67268,35388
+67269,35388
+67270,63060
+67271,31158
+67272,35388
+67273,31158
+67274,53625
+67275,67272
+67276,58099
+67277,60216
+67278,62145
+67279,78854
+67280,51665
+67281,70862
+67282,33793
+67283,40965
+67284,22853
+67285,68692
+67286,39928
+67287,56832
+67288,68692
+67289,73401
+67290,38529
+67291,28872
+67292,79888
+67293,30000
+67294,67614
+67295,43364
+67296,27506
+67297,43789
+67298,33512
+67299,66756
+67300,23712
+67301,65226
+67302,71099
+67303,76664
+67304,51182
+67305,47908
+67306,69199
+67307,77857
+67308,77857
+67309,33756
+67310,51928
+67311,41054
+67312,68355
+67313,69153
+67314,65654
+67315,61655
+67316,67303
+67317,21314
+67318,67312
+67319,79552
+67320,72399
+67321,50717
+67322,33075
+67323,28591
+67324,33075
+67325,22032
+67326,77585
+67327,54047
+67328,67254
+67329,34924
+67330,49059
+67331,66702
+67332,57926
+67333,19374
+67334,19171
+67335,22540
+67336,41061
+67337,45406
+67338,27090
+67339,44396
+67340,69818
+67341,69408
+67342,72444
+67343,76664
+67344,67337
+67345,37355
+67346,70990
+67347,47868
+67348,29332
+67349,61355
+67350,59610
+67351,66814
+67352,8216
+67353,48251
+67354,25803
+67355,69174
+67356,44418
+67357,52693
+67358,47423
+67359,19497
+67360,28600,77374
+67361,52959
+67362,53275
+67363,58379
+67364,67311
+67365,40747
+67366,21959
+67367,44013
+67368,46767
+67369,45641
+67370,22799
+67371,54356
+67372,60216
+67373,27153
+67374,46367
+67375,39685
+67376,61251
+67377,41877
+67378,32201,58611
+67379,21034
+67380,54789
+67381,30865
+67382,31245
+67383,31563
+67384,66217
+67385,74624
+67386,22944
+67387,22429
+67388,31245
+67389,22430
+67390,56832
+67391,76229
+67392,50424
+67393,11856
+67394,81541
+67395,44347
+67396,67160
+67397,78258
+67398,78262
+67399,54082
+67400,64534
+67401,28780
+67402,54562
+67403,69490
+67404,80448
+67405,43892
+67406,28323
+67407,80821
+67408,25770
+67409,38252
+67410,44013
+67411,21886
+67412,53275
+67413,50802
+67414,67413
+67415,39647
+67416,24084
+67417,54404
+67418,62432
+67419,70033
+67420,81482
+67421,18828
+67422,41899
+67423,68128
+67424,53286
+67425,26166
+67426,20905
+67427,41901
+67428,69818
+67429,34827
+67430,34822
+67431,8380
+67432,28091
+67433,41877
+67434,39015
+67435,27488
+67436,74795
+67437,74800
+67438,67432
+67439,23790
+67440,61796
+67441,8170
+67442,22684
+67443,80962
+67444,61541
+67445,22684
+67446,31618
+67447,49079
+67448,30062
+67449,64403
+67450,77932
+67451,42225
+67452,39049
+67453,35663
+67454,39049
+67455,72212
+67456,56451
+67457,79282
+67458,79429
+67459,65759
+67460,47673
+67461,47311
+67462,81789
+67463,46276
+67464,52144
+67465,60251
+67466,63972
+67467,49769
+67468,67466
+67469,65767
+67470,63137
+67471,25256
+67472,33500
+67473,60746
+67474,68692
+67475,25115
+67476,72701
+67477,72205
+67478,44761
+67479,46599
+67480,33513
+67481,58608
+67482,58647
+67483,68692
+67484,71269
+67485,42028
+67486,20745
+67487,69408
+67488,59413
+67489,22684
+67490,73477
+67491,52773
+67492,81656
+67493,51068
+67494,7653
+67495,69450
+67496,60273
+67497,78655
+67498,39578
+67499,67495,53325
+67500,60273
+67501,59238
+67502,33361
+67503,73814
+67504,59415
+67505,73814
+67506,69566
+67507,46782,65555
+67508,60385
+67509,69439
+67510,76229
+67511,65555
+67512,28600
+67513,31245
+67514,68355
+67515,21475
+67516,21412,73670
+67517,23855,66154
+67518,24046
+67519,52957
+67520,25196
+67521,44520
+67522,76106
+67523,64846
+67524,39528
+67525,41930
+67526,43362
+67527,57611
+67528,53425
+67529,44509
+67530,56472
+67531,60870
+67532,64628
+67533,64927
+67534,72663
+67535,79097,65641
+67536,45813
+67537,57594
+67538,79261
+67539,68869
+67540,40564
+67541,32993
+67542,36872
+67543,34661
+67544,19467
+67545,81373
+67546,53936
+67547,45812
+67548,45813
+67549,44160
+67550,44456
+67551,74067
+67552,81161
+67553,72250
+67554,53164
+67555,21652
+67556,74640
+67557,70392
+67558,72913
+67559,58888
+67560,33581
+67561,26827
+67562,5765
+67563,20905
+67564,73838
+67565,60744
+67566,67574
+67567,39049
+67568,67703
+67569,68330
+67570,80370
+67571,34613
+67572,25049
+67573,57570
+67574,79471
+67575,52910
+67576,52773
+67577,70629
+67578,44491
+67579,27276
+67580,37956
+67581,45813
+67582,34389
+67583,43744
+67584,33928
+67585,44437
+67586,62145
+67587,43724
+67588,63918
+67589,23899
+67590,19936
+67591,11862
+67592,25526
+67593,64142
+67594,35557
+67595,23019
+67596,25546
+67597,67601
+67598,45813
+67599,36452
+67600,41214
+67601,44232
+67602,67594
+67603,79261
+67604,61336
+67605,47786
+67606,70033
+67607,55952
+67608,20422
+67609,67972
+67610,60830,81703
+67611,53962
+67612,69012
+67613,69012
+67614,57439
+67615,19737
+67616,31690
+67617,19485
+67618,26586
+67619,40055
+67620,25289
+67621,63259
+67622,66058
+67623,72714
+67624,63259
+67625,38639
+67626,67630
+67627,67630
+67628,67630
+67629,70627
+67630,37712
+67631,67675,56950
+67632,61703
+67633,47107
+67634,63248
+67635,63213
+67636,20698
+67637,49010
+67638,47090
+67639,68793
+67640,36710
+67641,38740
+67642,68794
+67643,45679
+67644,81176
+67645,31029
+67646,79363
+67647,67594
+67648,64609
+67649,40292
+67650,29237
+67651,67658,41014
+67652,40310
+67653,20755
+67654,64809
+67655,64809
+67656,37973
+67657,41017
+67658,71398
+67659,67631
+67660,42040
+67661,51805
+67662,69860
+67663,58583
+67664,78191
+67665,45813
+67666,18728
+67667,48126
+67668,78095
+67669,31239
+67670,66977
+67671,66965
+67672,45813
+67673,79608
+67674,79608
+67675,31058
+67676,75436
+67677,40564
+67678,25770
+67679,30182
+67680,34631
+67681,40516
+67682,68857
+67683,53256
+67684,68669
+67685,54553
+67686,62062
+67687,31998
+67688,67362
+67689,70033
+67690,56179
+67691,55828
+67692,46782
+67693,70033
+67694,31616
+67695,62728
+67696,53959
+67697,32672
+67698,63314
+67699,38883
+67700,68685
+67701,23284
+67702,69503
+67703,68622
+67704,61247
+67705,70033
+67706,70033
+67707,45462
+67708,57896
+67709,68230
+67710,58069
+67711,44240
+67712,44240
+67713,65170
+67714,63316,30697
+67715,65994
+67716,65994
+67717,65998
+67718,67513
+67719,53613
+67720,65994
+67721,65415
+67722,77600
+67723,44923
+67724,58379
+67725,28739
+67726,77985
+67727,19052
+67728,54082
+67729,54562
+67730,33793
+67731,22853
+67732,27131
+67733,34249
+67734,51640
+67735,32490
+67736,51068
+67737,64142
+67738,73752
+67739,39049
+67740,62950
+67741,78269
+67742,78943
+67743,70623
+67744,56176
+67745,38606
+67746,35773
+67747,21946
+67748,37635
+67749,53621
+67750,29120
+67751,41562
+67752,64831
+67753,57393
+67754,33584
+67755,80184
+67756,56802
+67757,46680
+67758,65759
+67759,47229
+67760,22274
+67761,71310
+67762,21328
+67763,61136
+67764,66226
+67765,71446
+67766,24565
+67767,81153
+67768,70033
+67769,20745
+67770,52028
+67771,40734
+67772,50856
+67773,45813
+67774,68614
+67775,36592
+67776,43523
+67777,72248
+67778,20079
+67779,50135
+67780,70033
+67781,58803
+67782,66862
+67783,43138
+67784,67551
+67785,68854
+67786,30514
+67787,71500
+67788,80583
+67789,60032
+67790,69564
+67791,81161
+67792,80575
+67793,69818
+67794,81482
+67795,77641
+67796,81482
+67797,33638
+67798,56180
+67799,22684
+67800,34118
+67801,22949
+67802,23015
+67803,65977
+67804,44670
+67805,45009
+67806,54947
+67807,61415
+67808,59769
+67809,44013
+67810,67819
+67811,60032
+67812,35534
+67813,76680
+67814,30518
+67815,21738
+67816,30043
+67817,79024
+67818,37557
+67819,69887
+67820,61063
+67821,21487
+67822,71108
+67823,70229
+67824,35557
+67825,37712
+67826,40752
+67827,40752
+67828,40752
+67829,19629
+67830,44609
+67831,36496
+67832,76160
+67833,70763
+67834,65262
+67835,58018
+67836,45813
+67837,67839
+67838,30187
+67839,31245
+67840,50312
+67841,58734
+67842,67837
+67843,29691
+67844,51885
+67845,53918
+67846,724
+67847,23751,7653
+67848,41000
+67849,19634
+67850,9469
+67851,71557
+67852,56440
+67853,79282
+67854,40566
+67855,67462
+67856,77641
+67857,37179
+67858,41743
+67859,28792
+67860,43473
+67861,37179
+67862,21595
+67863,77509,32229
+67864,49217
+67865,54562
+67866,69179
+67867,58166
+67868,36976
+67869,70947
+67870,58166
+67871,16342
+67872,81536
+67873,81482
+67874,63415
+67875,33793
+67876,33799
+67877,76201
+67878,81396
+67879,70274
+67880,63472
+67881,59549
+67882,53848
+67883,27136
+67884,68903
+67885,30257
+67886,33678
+67887,20355
+67888,54797
+67889,72416
+67890,28449
+67891,29986,41014
+67892,67703
+67893,20755
+67894,57840
+67895,72248
+67896,36434
+67897,58181
+67898,70675
+67899,79608
+67900,71408
+67901,66965
+67902,70568
+67903,41444
+67904,31991
+67905,51901
+67906,32452
+67907,81227
+67908,32457
+67909,35557
+67910,23946
+67911,65685
+67912,20905
+67913,40564
+67914,50585
+67915,57594
+67916,16726
+67917,71319
+67918,22699
+67919,39049
+67920,28146
+67921,38218
+67922,40986
+67923,65099
+67924,75701
+67925,77500
+67926,44040
+67927,39049
+67928,25540
+67929,69408
+67930,80538
+67931,39049
+67932,20690
+67933,81482
+67934,20691
+67935,77641
+67936,46935
+67937,59645
+67938,31643
+67939,28529
+67940,64142
+67941,19656
+67942,37934
+67943,43820
+67944,52938
+67945,52939
+67946,39469
+67947,31245
+67948,39998
+67949,30480
+67950,67947
+67951,55314
+67952,6952
+67953,60273
+67954,58088
+67955,61381
+67956,69444
+67957,31239
+67958,36452
+67959,58917
+67960,62266
+67961,40554
+67962,52658
+67963,35557
+67964,35557
+67965,73057
+67966,42003
+67967,59775
+67968,35048
+67969,35309
+67970,67969
+67971,75665
+67972,53628
+67973,51903
+67974,33698
+67975,53628
+67976,61127
+67977,59497
+67978,35557
+67979,62902
+67980,39682
+67981,44032
+67982,26884
+67983,62794
+67984,65108
+67985,67565
+67986,56472
+67987,62072
+67988,58582
+67989,28600
+67990,41856
+67991,22955
+67992,78059
+67993,76390
+67994,76390
+67995,31616
+67996,43813
+67997,23891
+67998,75118
+67999,45813
+68000,45813
+68001,45812
+68002,33725
+68003,45371
+68004,45370
+68005,45009
+68006,51959
+68007,39318
+68008,76981
+68009,81482
+68010,36007
+68011,23190
+68012,69953
+68013,64921
+68014,47127
+68015,41444
+68016,60830,18834
+68017,62432
+68018,61063
+68019,69263
+68020,45813
+68021,50117
+68022,52027
+68023,70434
+68024,25729
+68025,45813
+68026,56542
+68027,55768
+68028,57982
+68029,19569
+68030,72051
+68031,71521
+68032,81626
+68033,69599
+68034,60284
+68035,48077
+68036,40752
+68037,50297
+68038,27440
+68039,61355
+68040,21618
+68041,75018
+68042,64154
+68043,38392
+68044,68072
+68045,79165
+68046,39821
+68047,34995
+68048,65004
+68049,22665
+68050,26496
+68051,26497
+68052,54446
+68053,63334
+68054,52656
+68055,47948
+68056,32580
+68057,55760
+68058,50717
+68059,72839
+68060,24393
+68061,53624
+68062,55618
+68063,39676
+68064,30103
+68065,79085
+68066,80460
+68067,77740
+68068,70568
+68069,74973
+68070,63768
+68071,67093
+68072,53621
+68073,29779
+68074,58106
+68075,50173
+68076,33455
+68077,69677
+68078,24442
+68079,69662
+68080,35557
+68081,70646
+68082,44816
+68083,74568
+68084,72046
+68085,41877
+68086,74824
+68087,56180
+68088,31838
+68089,55236
+68090,45254
+68091,35557
+68092,38601
+68093,60715
+68094,43789
+68095,77972
+68096,31245
+68097,48442
+68098,43790
+68099,43792
+68100,69524
+68101,54082
+68102,66327
+68103,35559
+68104,37478,33882
+68105,34849
+68106,60541
+68107,65950
+68108,54132
+68109,78866
+68110,72791
+68111,79546
+68112,65943
+68113,34350,24354
+68114,27649
+68115,54978
+68116,25256
+68117,39513
+68118,42225
+68119,74939
+68120,31447
+68121,36777
+68122,50256
+68123,48432
+68124,39502
+68125,64371
+68126,37232
+68127,19912
+68128,42225
+68129,49298
+68130,65262
+68131,81161
+68132,44959
+68133,29731
+68134,31615
+68135,41646
+68136,45316
+68137,37623
+68138,52410
+68139,40752
+68140,57289
+68141,60867
+68142,72575
+68143,31973
+68144,61735
+68145,44171
+68146,75264
+68147,77641
+68148,70427,49158
+68149,57380
+68150,28776
+68151,37042
+68152,72506
+68153,35772
+68154,60869
+68155,67254
+68156,70399
+68157,56179
+68158,69989
+68159,70987
+68160,36694
+68161,44053
+68162,28775
+68163,20743
+68164,69355
+68165,68475
+68166,62648
+68167,81781
+68168,21475
+68169,47797
+68170,36377
+68171,60534
+68172,44000
+68173,19231
+68174,58797
+68175,79541
+68176,72743
+68177,72747
+68178,58798
+68179,64635
+68180,71023
+68181,39676
+68182,45813
+68183,65657
+68184,72715
+68185,51677
+68186,48064
+68187,40150
+68188,27564
+68189,45165
+68190,61239
+68191,54562
+68192,65929
+68193,34997
+68194,65428
+68195,65927
+68196,61203
+68197,61238
+68198,31369
+68199,55491
+68200,1544
+68201,80248
+68202,67355
+68203,35879
+68204,54091
+68205,40807
+68206,34701
+68207,48111,48077
+68208,41729
+68209,40347
+68210,40752
+68211,63598
+68212,63605
+68213,53916
+68214,60243
+68215,70399
+68216,49343
+68217,70399
+68218,78647
+68219,53958
+68220,53959
+68221,53542
+68222,23374
+68223,49191
+68224,51665
+68225,75942
+68226,35557
+68227,70399
+68228,55157
+68229,73863
+68230,48474
+68231,19757,63013
+68232,77317
+68233,68230
+68234,53143
+68235,37201
+68236,37201
+68237,25094
+68238,26298
+68239,37197
+68240,76664
+68241,20751
+68242,21912
+68243,23796
+68244,25016
+68245,26532
+68246,59776
+68247,33928
+68248,19379
+68249,56601
+68250,71319
+68251,69744
+68252,58544
+68253,38375
+68254,75901
+68255,81905
+68256,22684
+68257,52811,68258
+68258,82057
+68259,76662
+68260,41607
+68261,39612
+68262,77367
+68263,75552
+68264,68268
+68265,37204
+68266,71148
+68267,19121
+68268,75548
+68269,81871
+68270,43364
+68271,67574
+68272,77169
+68273,40967
+68274,67122
+68275,40292
+68276,79924
+68277,60032
+68278,56440
+68279,56494
+68280,35480
+68281,39345
+68282,55718
+68283,75548
+68284,57388
+68285,48408
+68286,50010
+68287,54156
+68288,65999
+68289,76146
+68290,60216
+68291,51395
+68292,28077
+68293,59338
+68294,68374
+68295,51319
+68296,25953
+68297,40783
+68298,32390
+68299,74392
+68300,34723
+68301,81770
+68302,33503
+68303,44697
+68304,37169,31064
+68305,81752
+68306,74818
+68307,11858
+68308,43698
+68309,19925
+68310,79282
+68311,37162
+68312,63423
+68313,48126
+68314,22305
+68315,53624
+68316,70397
+68317,59549
+68318,41877
+68319,55865
+68320,61251
+68321,47805
+68322,78755
+68323,37041
+68324,32929
+68325,21412
+68326,78755
+68327,71595
+68328,72210
+68329,39676
+68330,60032
+68331,69682,69681
+68332,36989,41284
+68333,51316
+68334,25645
+68335,64293
+68336,50180
+68337,31137
+68338,69970
+68339,31618
+68340,23313
+68341,80761
+68342,38910
+68343,20038
+68344,58579
+68345,61251
+68346,72764
+68347,26496
+68348,69566
+68349,46740
+68350,46171
+68351,34085
+68352,57187
+68353,69331
+68354,39111
+68355,74132
+68356,65050
+68357,69642
+68358,47804
+68359,25017,70229
+68360,57572
+68361,61395
+68362,52316
+68363,68364
+68364,72248
+68365,33626
+68366,21373
+68367,53669
+68368,71113
+68369,68363
+68370,40752
+68371,67670
+68372,47898
+68373,68565
+68374,79743
+68375,77045
+68376,29688
+68377,77585
+68378,80789
+68379,68652
+68380,29693
+68381,46662
+68382,20745
+68383,38807
+68384,65234
+68385,65190
+68386,38784
+68387,50701
+68388,25046
+68389,23082
+68390,33514
+68391,33516
+68392,73841
+68393,35557
+68394,55497
+68395,37479
+68396,60739
+68397,48875,68398
+68398,67213
+68399,19926
+68400,25526
+68401,56832
+68402,45009
+68403,60810
+68404,20745
+68405,41417
+68406,30558
+68407,35557,51833
+68408,66702
+68409,45028
+68410,24704
+68411,57074
+68412,64403
+68413,70656
+68414,81643
+68415,60216
+68416,34924
+68417,53866
+68418,81780
+68419,48106
+68420,33186
+68421,45408
+68422,80395
+68423,56832
+68424,58579
+68425,58579
+68426,45102
+68427,81789
+68428,73762
+68429,59355
+68430,63424
+68431,35668
+68432,32578
+68433,74537
+68434,19231
+68435,36101
+68436,41000
+68437,53865
+68438,41299
+68439,34771
+68440,22206
+68441,44514
+68442,39049
+68443,76009
+68444,35664
+68445,68475
+68446,68478
+68447,47819
+68448,39423
+68449,63306
+68450,50179
+68451,61614
+68452,54034
+68453,81539
+68454,81746
+68455,66447
+68456,70033
+68457,19364
+68458,61078
+68459,61089
+68460,30153
+68461,45009
+68462,77012
+68463,54737
+68464,36404
+68465,45064
+68466,49341
+68467,22433
+68468,39049
+68469,38700
+68470,51467
+68471,70717
+68472,27756
+68473,68831
+68474,58262
+68475,36377
+68476,66953
+68477,67462
+68478,81781
+68479,30183
+68480,78106
+68481,53064
+68482,79282
+68483,62361
+68484,79270
+68485,29691
+68486,77641
+68487,26166
+68488,57223
+68489,57289
+68490,60899
+68491,61209
+68492,81626
+68493,63872
+68494,59441
+68495,32455
+68496,23764
+68497,29344
+68498,56832
+68499,21192
+68500,62934
+68501,21087
+68502,46417
+68503,38603
+68504,38603
+68505,52084
+68506,35826
+68507,70652
+68508,72064
+68509,67196
+68510,67793
+68511,46223
+68512,57296
+68513,57296
+68514,69665
+68515,57298
+68516,66953
+68517,67175
+68518,69274
+68519,68364
+68520,21765
+68521,68520
+68522,61312,71522
+68523,21669,40080
+68524,40001
+68525,21276
+68526,35611
+68527,67703
+68528,62060
+68529,62060
+68530,36363
+68531,55680
+68532,24393
+68533,18854
+68534,22406
+68535,32888
+68536,75152
+68537,49263
+68538,63423
+68539,31616
+68540,30216
+68541,33353
+68542,37169
+68543,78211
+68544,25113
+68545,21914
+68546,22054
+68547,45813
+68548,66154
+68549,20935
+68550,21959
+68551,69258,41014
+68552,67703
+68553,23393
+68554,25046
+68555,60032
+68556,25862
+68557,28000
+68558,77452
+68559,28849
+68560,60032
+68561,24441
+68562,21360
+68563,37079
+68564,32025
+68565,36694
+68566,36932
+68567,43779
+68568,43779
+68569,34389
+68570,33237
+68571,44160
+68572,42327
+68573,70033
+68574,32326
+68575,45813
+68576,61033
+68577,50173
+68578,50280
+68579,74067
+68580,53163
+68581,44167
+68582,80322
+68583,32947
+68584,36943
+68585,49001
+68586,52418
+68587,56213
+68588,45813
+68589,65289
+68590,61848
+68591,80335
+68592,55815
+68593,20935
+68594,72960
+68595,54407
+68596,68519
+68597,44663
+68598,66954
+68599,68077
+68600,68078
+68601,50899
+68602,42327
+68603,71120
+68604,21718
+68605,72492
+68606,51395
+68607,21798
+68608,75925
+68609,49606
+68610,68277
+68611,26144
+68612,77987
+68613,78286
+68614,37079
+68615,81694
+68616,68702
+68617,36419
+68618,67826
+68619,21358
+68620,28780
+68621,37721
+68622,41005
+68623,35557
+68624,80396
+68625,68702
+68626,61006
+68627,72813
+68628,30073
+68629,39423
+68630,60956
+68631,41899
+68632,34922
+68633,38839
+68634,20755
+68635,68638
+68636,31690
+68637,57573
+68638,53454
+68639,39423
+68640,42225
+68641,49298
+68642,73598
+68643,70627
+68644,55394
+68645,53760
+68646,19867
+68647,62089
+68648,36986
+68649,46042
+68650,38601
+68651,48791
+68652,19228
+68653,57927
+68654,54761
+68655,65994
+68656,63187
+68657,54761
+68658,59379
+68659,80174
+68660,57573
+68661,27028
+68662,40150
+68663,51316
+68664,28065
+68665,68175
+68666,58803
+68667,69662
+68668,69880
+68669,52857
+68670,55352
+68671,68668
+68672,19947
+68673,28220
+68674,40578
+68675,43672
+68676,42327
+68677,76664
+68678,76664
+68679,76664
+68680,76691
+68681,20118
+68682,81626
+68683,40564
+68684,31846
+68685,28539
+68686,28236
+68687,51894
+68688,50885
+68689,59306
+68690,29917
+68691,41917
+68692,74488
+68693,71838
+68694,67517
+68695,33464
+68696,69281
+68697,66954
+68698,27284
+68699,35386
+68700,80257
+68701,50354
+68702,19979
+68703,71715
+68704,33650
+68705,57608
+68706,27488
+68707,70651
+68708,34701
+68709,49637
+68710,68793
+68711,73537
+68712,77820
+68713,63523
+68714,68237,21770
+68715,69173
+68716,35922
+68717,19497
+68718,59713
+68719,69172
+68720,23062
+68721,64757
+68722,22128
+68723,20727
+68724,76672
+68725,19732
+68726,26496
+68727,31795
+68728,34679
+68729,40121
+68730,60216
+68731,21474
+68732,23220
+68733,62142
+68734,48114
+68735,64757
+68736,48106
+68737,65702
+68738,38382
+68739,41843
+68740,74036
+68741,42387
+68742,41180
+68743,44857
+68744,53688
+68745,44984
+68746,45689
+68747,11909
+68748,50623
+68749,51242
+68750,54992
+68751,55272
+68752,44740
+68753,59308
+68754,60214
+68755,62708
+68756,75566
+68757,77837
+68758,37886
+68759,25843
+68760,41249
+68761,20341
+68762,21552
+68763,30296
+68764,34588
+68765,34992
+68766,36908
+68767,37199
+68768,37676
+68769,46003
+68770,68771
+68771,68236
+68772,69416
+68773,75009
+68774,74500
+68775,65060
+68776,59309
+68777,78536
+68778,48157
+68779,48157
+68780,19655
+68781,79905
+68782,61748
+68783,21938
+68784,68236
+68785,19382
+68786,45367
+68787,21922
+68788,34786
+68789,24331
+68790,62145
+68791,38053
+68792,42322
+68793,51649
+68794,58162
+68795,60385
+68796,65753
+68797,24111
+68798,56080
+68799,72626
+68800,70828
+68801,21475
+68802,55761
+68803,21597
+68804,75566
+68805,68903
+68806,29625
+68807,21476
+68808,59306
+68809,81789,55734
+68810,42142
+68811,50117
+68812,75548
+68813,41917
+68814,59331
+68815,61213
+68816,31115
+68817,77277
+68818,71315
+68819,53624
+68820,21840
+68821,35922
+68822,19497
+68823,28529
+68824,77431
+68825,44059
+68826,25234
+68827,68829
+68828,50603
+68829,67513
+68830,39506
+68831,50875
+68832,21905
+68833,34609
+68834,62533
+68835,77444
+68836,44511
+68837,76248
+68838,24651
+68839,19492
+68840,19384
+68841,41107
+68842,32417
+68843,48534
+68844,72714
+68845,75018
+68846,37405
+68847,27405
+68848,51738
+68849,69246
+68850,60598
+68851,19375
+68852,53717,36610
+68853,68852
+68854,53275
+68855,12341
+68856,53276
+68857,53519
+68858,71446
+68859,66785
+68860,54717
+68861,22665
+68862,51180
+68863,37999
+68864,74132
+68865,68861
+68866,35236
+68867,45813
+68868,68686
+68869,41729
+68870,58576
+68871,80607
+68872,27929
+68873,68880
+68874,44701
+68875,50123
+68876,27326
+68877,58647
+68878,59715
+68879,33178
+68880,73472
+68881,23642
+68882,26884
+68883,61395
+68884,64674
+68885,53648
+68886,49897
+68887,60216
+68888,64674
+68889,72111
+68890,77308
+68891,60385
+68892,68677
+68893,55494
+68894,76657
+68895,63212
+68896,60216
+68897,22122
+68898,63357
+68899,40747
+68900,60011
+68901,39049
+68902,61415
+68903,59305
+68904,21412
+68905,55760
+68906,51395
+68907,60216
+68908,58162
+68909,71318
+68910,69172
+68911,61789
+68912,24111
+68913,59426
+68914,66999
+68915,80440
+68916,43364
+68917,36774
+68918,38381
+68919,39556
+68920,62145
+68921,40340
+68922,43997
+68923,53624
+68924,53621
+68925,43125
+68926,43126
+68927,70994
+68928,21324
+68929,22107
+68930,81635
+68931,30693
+68932,21946
+68933,20994
+68934,20386
+68935,63314
+68936,37352
+68937,74846
+68938,37352
+68939,19069
+68940,28780,21034
+68941,60528
+68942,21998
+68943,60216
+68944,31469
+68945,62656
+68946,31316,19009
+68947,63187
+68948,19675
+68949,63602
+68950,25044
+68951,19686
+68952,22422
+68953,68952
+68954,37612
+68955,31706
+68956,66066
+68957,32973
+68958,54710
+68959,63416
+68960,31742
+68961,46923
+68962,34827
+68963,41512
+68964,35477
+68965,35517
+68966,69521
+68967,37197
+68968,62846
+68969,38883
+68970,52497
+68971,39703
+68972,80802,68991
+68973,41797
+68974,22340
+68975,44040
+68976,45813
+68977,19755
+68978,47211
+68979,47716
+68980,47874
+68981,48007
+68982,48445
+68983,78594
+68984,31143
+68985,58169
+68986,71648
+68987,61819
+68988,62128
+68989,62723
+68990,80761
+68991,63819
+68992,76196
+68993,65839
+68994,60244
+68995,65942
+68996,66155
+68997,54810
+68998,69285
+68999,62446
+69000,72938
+69001,53412
+69002,35765
+69003,76894
+69004,78755
+69005,73284
+69006,31885
+69007,47407
+69008,67612
+69009,33893
+69010,53959
+69011,53182
+69012,30650
+69013,69010
+69014,61650
+69015,46620
+69016,67614
+69017,22665
+69018,71313
+69019,69012
+69020,77603
+69021,75018
+69022,54568
+69023,25383
+69024,37165
+69025,71441
+69026,52033
+69027,51565
+69028,43911
+69029,51558
+69030,51566
+69031,53608
+69032,21200
+69033,21218
+69034,51649
+69035,68254
+69036,76664
+69037,32810
+69038,58803
+69039,79608
+69040,36868
+69041,54446
+69042,22308
+69043,61054,69042
+69044,20819
+69045,61213
+69046,69118
+69047,63809
+69048,78544
+69049,31276
+69050,31278
+69051,33832
+69052,43104
+69053,64578
+69054,53422
+69055,66702
+69056,76227
+69057,58783
+69058,45496
+69059,22452
+69060,22452
+69061,69238
+69062,36710
+69063,38740
+69064,31307
+69065,32506
+69066,73863
+69067,65770
+69068,62999
+69069,78113
+69070,27497
+69071,60450
+69072,53848
+69073,63143
+69074,48662
+69075,77347
+69076,78544
+69077,60476
+69078,69238
+69079,40736
+69080,41410
+69081,50912
+69082,61783
+69083,50910
+69084,62145
+69085,65133
+69086,30891
+69087,28063
+69088,18112
+69089,66965
+69090,54468
+69091,34472
+69092,57680
+69093,78579
+69094,60341
+69095,29627
+69096,68771
+69097,69216
+69098,41207
+69099,79532
+69100,46027
+69101,16971
+69102,70033
+69103,31996
+69104,38644
+69105,73307
+69106,60019
+69107,54044
+69108,49338
+69109,63666
+69110,21301
+69111,22422
+69112,39130
+69113,53607
+69114,69111
+69115,69111
+69116,31464
+69117,19733
+69118,58144
+69119,75146
+69120,69128
+69121,31469
+69122,65052,62453
+69123,69140
+69124,39676
+69125,54535
+69126,54535
+69127,74610
+69128,39578
+69129,60604
+69130,18720
+69131,69112
+69132,69127
+69133,63065
+69134,19211
+69135,47565
+69136,53624,60538
+69137,32222
+69138,45472
+69139,32222
+69140,19228
+69141,77108
+69142,32224
+69143,56446
+69144,56440
+69145,56441
+69146,75016
+69147,60450
+69148,60216
+69149,69444
+69150,69120
+69151,5686
+69152,9643
+69153,73746
+69154,73684
+69155,41262
+69156,20769
+69157,39578
+69158,41264
+69159,53542
+69160,60216
+69161,69157
+69162,47398
+69163,69681
+69164,40718
+69165,35593
+69166,42225
+69167,47924
+69168,72959
+69169,71838
+69170,66164
+69171,71658
+69172,44440
+69173,28535
+69174,28530
+69175,69172
+69176,35678
+69177,19497
+69178,60786
+69179,48077
+69180,31389
+69181,35882
+69182,18728
+69183,55761
+69184,69331
+69185,55756
+69186,42351
+69187,75292
+69188,61178
+69189,50439
+69190,57682
+69191,61259
+69192,59354
+69193,19286
+69194,66164
+69195,18740
+69196,31476
+69197,69235
+69198,65879
+69199,75756
+69200,40003
+69201,45165
+69202,21200
+69203,28790
+69204,81770
+69205,21324
+69206,19421
+69207,33638
+69208,69588
+69209,20655
+69210,71595
+69211,43738
+69212,36673
+69213,76341
+69214,25242
+69215,39049
+69216,56894
+69217,57569
+69218,33782
+69219,69216
+69220,69405
+69221,26010
+69222,55668
+69223,55089
+69224,57927
+69225,48540
+69226,33885
+69227,55734
+69228,63665
+69229,26548
+69230,56179
+69231,63124
+69232,53060
+69233,31443
+69234,44437
+69235,58118
+69236,31646
+69237,61885
+69238,60131
+69239,29418
+69240,51473
+69241,62968
+69242,40068
+69243,20355
+69244,30588
+69245,22679
+69246,77374
+69247,23189
+69248,19311
+69249,50817
+69250,53711
+69251,53710
+69252,79467
+69253,55067
+69254,53848
+69255,43556
+69256,40231
+69257,32106
+69258,60032
+69259,50717
+69260,26120
+69261,31245
+69262,67167
+69263,57060
+69264,70568
+69265,62225
+69266,62225
+69267,68933
+69268,47115
+69269,51649
+69270,19928
+69271,43427
+69272,20074
+69273,81153
+69274,81626
+69275,69274
+69276,75826
+69277,61395
+69278,78984
+69279,31100
+69280,30937
+69281,19755
+69282,37721
+69283,19228
+69284,81601
+69285,18959
+69286,65759
+69287,34433
+69288,75086
+69289,19648
+69290,77045
+69291,67462
+69292,79552
+69293,77857
+69294,28616
+69295,29969
+69296,28234
+69297,31690
+69298,33523
+69299,26586
+69300,38013
+69301,48030
+69302,51467
+69303,72714
+69304,73001
+69305,48353
+69306,55395
+69307,78996
+69308,70629
+69309,37721
+69310,32493
+69311,45021
+69312,35558
+69313,22128
+69314,25242
+69315,31757
+69316,45813
+69317,79261
+69318,40564
+69319,25256
+69320,50919
+69321,20819
+69322,61911
+69323,38883
+69324,61890
+69325,31308
+69326,53758
+69327,31851
+69328,72877
+69329,61405
+69330,18840
+69331,30391
+69332,34731
+69333,37479
+69334,61154
+69335,71315
+69336,38699
+69337,30275
+69338,73838
+69339,39928
+69340,34199
+69341,44628
+69342,68176
+69343,61643
+69344,23313
+69345,78078
+69346,63861
+69347,61616
+69348,44793
+69349,68448
+69350,68448
+69351,71395
+69352,72426
+69353,62144
+69354,38042
+69355,38043
+69356,23869
+69357,43104
+69358,19737
+69359,34149
+69360,28234
+69361,56362
+69362,29744
+69363,54356
+69364,70466
+69365,36089
+69366,53021
+69367,35188
+69368,72447
+69369,20053
+69370,25113
+69371,50439
+69372,29339
+69373,64757
+69374,64757
+69375,48662
+69376,29187
+69377,34093
+69378,76662
+69379,64757
+69380,50439
+69381,60493
+69382,50439
+69383,31690
+69384,58587
+69385,33503
+69386,19737
+69387,66101
+69388,47569,55091
+69389,73193
+69390,80227
+69391,35676
+69392,61247
+69393,39367
+69394,39101
+69395,56327
+69396,36363
+69397,42246
+69398,52718
+69399,26133
+69400,56325
+69401,45030
+69402,69395
+69403,81620
+69404,49883
+69405,46317,76059
+69406,56316
+69407,66953
+69408,73316
+69409,29623
+69410,60617
+69411,39578
+69412,57934
+69413,29262
+69414,22162
+69415,28530
+69416,39528
+69417,29240
+69418,29263
+69419,36523
+69420,43313
+69421,58161
+69422,53054
+69423,60216
+69424,31829
+69425,60216
+69426,57682
+69427,38308
+69428,35525
+69429,38823
+69430,27233
+69431,20727
+69432,53624
+69433,55761
+69434,69331
+69435,55756
+69436,42351
+69437,50439
+69438,29321,27581
+69439,25087
+69440,21610
+69441,73025
+69442,22159
+69443,68864
+69444,34783
+69445,69428
+69446,45107
+69447,38567
+69448,69439
+69449,69439
+69450,61433
+69451,65699
+69452,65948
+69453,29187
+69454,55760
+69455,34199
+69456,48038
+69457,23021
+69458,66154
+69459,40292
+69460,29986,41014
+69461,66868
+69462,48107
+69463,65925
+69464,63424
+69465,69051
+69466,30467
+69467,77641
+69468,65799
+69469,78732
+69470,53205
+69471,43852
+69472,69465
+69473,62694
+69474,40985
+69475,41128
+69476,65221
+69477,25574
+69478,26785
+69479,38700
+69480,63936
+69481,51473
+69482,59427
+69483,59420
+69484,66859
+69485,78866
+69486,76811
+69487,75284
+69488,39049
+69489,71311
+69490,67254
+69491,45951
+69492,70915
+69493,67093
+69494,49312
+69495,19629
+69496,60830,81434
+69497,53296
+69498,42493
+69499,19367
+69500,68652
+69501,38944
+69502,37113
+69503,31616
+69504,60216
+69505,48379
+69506,19699
+69507,55346
+69508,68859
+69509,57594
+69510,26311
+69511,57810
+69512,57811
+69513,41117
+69514,34671
+69515,43897
+69516,62853
+69517,65754
+69518,65754
+69519,80011
+69520,35627
+69521,39578
+69522,35567
+69523,37612
+69524,78819
+69525,25168
+69526,29698
+69527,44798
+69528,45813
+69529,36496
+69530,49745
+69531,33500
+69532,25115
+69533,33614
+69534,33614
+69535,43698
+69536,33614
+69537,59306
+69538,50862
+69539,24711
+69540,39049
+69541,70957
+69542,31210
+69543,22164
+69544,71949
+69545,37720
+69546,31537
+69547,20406
+69548,78521
+69549,52510
+69550,63065
+69551,76981
+69552,60739
+69553,73336
+69554,21905
+69555,19739
+69556,63316
+69557,71439
+69558,50603
+69559,55854
+69560,55854
+69561,35771
+69562,81807
+69563,38807
+69564,37319
+69565,20755
+69566,53620
+69567,39049
+69568,65808
+69569,55760
+69570,69406
+69571,44456
+69572,76947
+69573,47655
+69574,67566
+69575,58782
+69576,69544
+69577,22032
+69578,68271
+69579,57477
+69580,31043
+69581,34628
+69582,52904
+69583,64927
+69584,77641
+69585,26166
+69586,76877,71285
+69587,76877,40908
+69588,29839
+69589,57372
+69590,78756
+69591,27894
+69592,34349
+69593,37169
+69594,81643
+69595,70629
+69596,33504
+69597,68304
+69598,60321
+69599,63424
+69600,32580
+69601,63424
+69602,75019
+69603,75465
+69604,58378
+69605,22116
+69606,58162
+69607,70399
+69608,40986
+69609,25518
+69610,45142
+69611,23796
+69612,25433
+69613,60284,51642
+69614,44013
+69615,41657
+69616,52180
+69617,49538
+69618,45813
+69619,35908
+69620,45830
+69621,73372
+69622,49997
+69623,71911
+69624,62060
+69625,68677
+69626,39713
+69627,69596
+69628,50784
+69629,30062
+69630,39367
+69631,38766
+69632,23650
+69633,21745
+69634,59020
+69635,51475
+69636,77287
+69637,20586
+69638,46178
+69639,61343
+69640,51367
+69641,69633
+69642,55756
+69643,60812
+69644,72165
+69645,39049
+69646,42528
+69647,67277
+69648,81065
+69649,36035
+69650,8382
+69651,36694
+69652,69651
+69653,74488
+69654,25645
+69655,47314
+69656,76664
+69657,31618
+69658,20754
+69659,46880
+69660,32580
+69661,20385
+69662,32580
+69663,46826
+69664,32580
+69665,64426
+69666,41572
+69667,23542
+69668,32155
+69669,74824
+69670,61341
+69671,32982
+69672,50123
+69673,79201
+69674,80460
+69675,81626
+69676,69852
+69677,68622
+69678,43291
+69679,53275
+69680,46827
+69681,63424
+69682,73838
+69683,81656
+69684,81626
+69685,29737
+69686,53637
+69687,33134
+69688,81635
+69689,69620
+69690,41719
+69691,50630
+69692,67615
+69693,41280
+69694,53023
+69695,63424
+69696,21566
+69697,39676
+69698,69695
+69699,69695
+69700,63416
+69701,42142
+69702,77479
+69703,55347
+69704,46774
+69705,49683
+69706,65591
+69707,28541
+69708,47997
+69709,69710
+69710,37973
+69711,36899
+69712,41877
+69713,81462
+69714,34206
+69715,33283
+69716,30300
+69717,80576
+69718,28530
+69719,81442
+69720,71311
+69721,51068
+69722,25115
+69723,33500
+69724,63426
+69725,48126
+69726,59377
+69727,57333
+69728,33644
+69729,26160
+69730,44049
+69731,70229
+69732,26302
+69733,57289
+69734,77641
+69735,81626
+69736,66785
+69737,77287
+69738,64470
+69739,81601
+69740,29974
+69741,81176
+69742,39851
+69743,55026
+69744,79471
+69745,28517
+69746,30997
+69747,50875
+69748,31702
+69749,69754
+69750,19657
+69751,27118
+69752,35781
+69753,33491
+69754,56226,75018
+69755,26577
+69756,26295
+69757,31563
+69758,48030
+69759,21930
+69760,58582
+69761,26604
+69762,30937
+69763,31825
+69764,19655
+69765,29744
+69766,30937
+69767,20745,24834
+69768,57562
+69769,66953
+69770,70104
+69771,29579
+69772,67266
+69773,69744
+69774,18950
+69775,81759
+69776,81647
+69777,19379
+69778,36329
+69779,38523
+69780,35557
+69781,22736
+69782,42225
+69783,26705
+69784,36434
+69785,41672
+69786,39049
+69787,52773
+69788,70814
+69789,35562
+69790,21233
+69791,39049
+69792,24873
+69793,34276
+69794,18864
+69795,81482
+69796,49944
+69797,80589
+69798,69210
+69799,56941
+69800,75216
+69801,67801
+69802,25113
+69803,30368
+69804,60810
+69805,53338
+69806,74575
+69807,39928
+69808,36986
+69809,33777
+69810,76162
+69811,77937
+69812,80440
+69813,22665
+69814,54044
+69815,81717
+69816,81552
+69817,27781
+69818,41090
+69819,38839
+69820,48030
+69821,50784
+69822,61775
+69823,69860
+69824,79953
+69825,73838
+69826,25574
+69827,31618
+69828,34924
+69829,50126
+69830,77287
+69831,30074
+69832,69739
+69833,70987
+69834,27967
+69835,19629
+69836,34924
+69837,46559
+69838,28840
+69839,35103,8536
+69840,68432
+69841,61764
+69842,66853
+69843,60733
+69844,23164
+69845,72556
+69846,69852
+69847,55499
+69848,55662
+69849,61395
+69850,42076
+69851,46377
+69852,63363
+69853,23506
+69854,26298
+69855,40236
+69856,32461
+69857,62727
+69858,68475
+69859,34924
+69860,53952
+69861,23796
+69862,67626,52811
+69863,32506
+69864,81647
+69865,67626,43313
+69866,78687
+69867,75216
+69868,69873
+69869,41672
+69870,53959
+69871,50424
+69872,19655
+69873,33488
+69874,30697
+69875,26730
+69876,22684
+69877,23294
+69878,45021
+69879,51677
+69880,43107
+69881,23536
+69882,25486
+69883,21914
+69884,50802
+69885,54428
+69886,60899
+69887,79953
+69888,25495
+69889,74494
+69890,77277
+69891,44030
+69892,58088
+69893,32325
+69894,70010
+69895,53867
+69896,18979
+69897,47931
+69898,25256
+69899,31607
+69900,77311
+69901,35878
+69902,42306
+69903,48874
+69904,77523
+69905,51677
+69906,52008
+69907,58101
+69908,77985
+69909,33512
+69910,77311
+69911,67853
+69912,65681
+69913,70814
+69914,73495
+69915,55499
+69916,22414
+69917,64527
+69918,26657
+69919,22737
+69920,66727
+69921,19656
+69922,37178
+69923,34209
+69924,52781
+69925,44013
+69926,45064
+69927,40752
+69928,81974
+69929,50139
+69930,50976
+69931,36802
+69932,73017
+69933,52262
+69934,36918
+69935,48114
+69936,62142
+69937,35062
+69938,72435
+69939,28621
+69940,24874
+69941,22122
+69942,57982
+69943,63212
+69944,65793
+69945,38807
+69946,22122
+69947,43364
+69948,25390
+69949,20120
+69950,39846
+69951,22032
+69952,77185
+69953,40195
+69954,69661
+69955,33500
+69956,25115
+69957,29917
+69958,37165
+69959,22792
+69960,22686
+69961,38077
+69962,48353
+69963,21411
+69964,46303
+69965,63426
+69966,59508
+69967,21412
+69968,63945
+69969,40177
+69970,45009
+69971,31618
+69972,25022
+69973,45260
+69974,81626
+69975,36694
+69976,44970
+69977,71313
+69978,37992
+69979,22159
+69980,19173
+69981,62216
+69982,61655
+69983,77725
+69984,73069,66705
+69985,69354
+69986,59377
+69987,61526
+69988,34731
+69989,64639
+69990,80217
+69991,27276
+69992,33442
+69993,66953
+69994,25367
+69995,57121
+69996,38204
+69997,60216
+69998,25325
+69999,70627
+70000,77045
+70001,58977
+70002,40578
+70003,43672
+70004,54467
+70005,58093
+70006,74344
+70007,69661
+70008,70987
+70009,34924
+70010,48321
+70011,78756
+70012,54957
+70013,48477
+70014,47477
+70015,31320
+70016,58287
+70017,56832
+70018,48532
+70019,76627
+70020,34108
+70021,68623
+70022,72503
+70023,30154
+70024,79471
+70025,75665
+70026,61145
+70027,40004
+70028,71439
+70029,34208
+70030,34209
+70031,34210
+70032,51475
+70033,81549
+70034,21475
+70035,79270
+70036,16022
+70037,81161
+70038,70033
+70039,43168
+70040,26578
+70041,26275
+70042,77788
+70043,70987
+70044,70043
+70045,68030
+70046,65861
+70047,58384
+70048,27508
+70049,59775
+70050,65190
+70051,59423
+70052,47650
+70053,31278
+70054,51929
+70055,70782
+70056,34272
+70057,53648
+70058,24732
+70059,37998
+70060,55348
+70061,42344
+70062,63659
+70063,25068
+70064,70062
+70065,35340
+70066,45643
+70067,22677
+70068,76429
+70069,32603
+70070,76689
+70071,81807
+70072,66785
+70073,48126
+70074,26938
+70075,51039
+70076,48456
+70077,41599
+70078,63281
+70079,65702
+70080,41290
+70081,63328
+70082,59970
+70083,22684
+70084,23897
+70085,54414
+70086,45388
+70087,49312
+70088,50802
+70089,51677
+70090,79963
+70091,78647
+70092,66953
+70093,23643
+70094,37169
+70095,20635,55091
+70096,53690
+70097,65295
+70098,75156
+70099,66800
+70100,74067
+70101,43631
+70102,34283
+70103,66953
+70104,65581
+70105,51468
+70106,78698
+70107,51515
+70108,21840
+70109,21477
+70110,74537
+70111,74535
+70112,57967
+70113,33500
+70114,47455
+70115,43352
+70116,58745
+70117,28571
+70118,35557
+70119,38914
+70120,37215
+70121,31477
+70122,41053
+70123,70113
+70124,70113
+70125,61591
+70126,66727
+70127,73650
+70128,79572
+70129,81874
+70130,31583
+70131,56589
+70132,25017
+70133,25017
+70134,39089
+70135,30153
+70136,31825
+70137,51316
+70138,51478
+70139,51467
+70140,76672,70143
+70141,46765,70143
+70142,55151,70143
+70143,32256
+70144,81906,70143
+70145,54121
+70146,48894
+70147,38292
+70148,65539
+70149,65295
+70150,54563
+70151,61574
+70152,67474
+70153,47797
+70154,69978
+70155,21922
+70156,73152
+70157,74821
+70158,24875
+70159,80012
+70160,70110
+70161,80047
+70162,54757
+70163,64873
+70164,26302
+70165,64632
+70166,24792
+70167,36979
+70168,64747
+70169,15897
+70170,56038
+70171,69667
+70172,69666
+70173,73554
+70174,79215
+70175,70173
+70176,53238
+70177,71686
+70178,79009
+70179,35664
+70180,62149
+70181,79744
+70182,30959
+70183,54862,38933
+70184,36317
+70185,49312
+70186,44658
+70187,57390
+70188,60076
+70189,58010
+70190,52084
+70191,77166
+70192,51068
+70193,30443
+70194,79341
+70195,79282
+70196,18728
+70197,37858
+70198,37859
+70199,38564
+70200,50369
+70201,43168
+70202,53473
+70203,30882
+70204,29982
+70205,48030
+70206,50359
+70207,70225
+70208,43168
+70209,65581
+70210,58797
+70211,30391
+70212,37419
+70213,47810
+70214,30882
+70215,64846
+70216,26298
+70217,65110
+70218,23512
+70219,20458
+70220,30891
+70221,34924
+70222,47944
+70223,77373,70220
+70224,48478
+70225,56009
+70226,69634
+70227,78179
+70228,24261
+70229,73838
+70230,30891
+70231,60216
+70232,68632
+70233,66617
+70234,47671
+70235,53608
+70236,35188
+70237,52904
+70238,81065
+70239,52904
+70240,78739
+70241,70203
+70242,39563
+70243,67891
+70244,79671
+70245,31245
+70246,71697
+70247,78096
+70248,19108
+70249,40752
+70250,65108
+70251,55499
+70252,59358
+70253,65072
+70254,6952
+70255,39049
+70256,70259
+70257,58410
+70258,36404
+70259,58616
+70260,30432
+70261,67675
+70262,19069
+70263,31058
+70264,70272
+70265,28780,69049
+70266,26072
+70267,27452
+70268,70299,61874
+70269,61311
+70270,67202
+70271,61574
+70272,27373
+70273,20748
+70274,39049
+70275,43353
+70276,44249
+70277,19923
+70278,79608
+70279,71091
+70280,42225
+70281,62948
+70282,27997
+70283,27997
+70284,37247
+70285,20899
+70286,35996
+70287,35996
+70288,70276
+70289,61599
+70290,75246
+70291,75942
+70292,81394
+70293,66786
+70294,73830
+70295,28952
+70296,76664
+70297,54418
+70298,77185
+70299,31058
+70300,71446
+70301,67821
+70302,28000
+70303,41181
+70304,62547
+70305,56807,31276
+70306,70310
+70307,76664
+70308,77641
+70309,11884
+70310,20690
+70311,24302
+70312,26053
+70313,71558
+70314,24146
+70315,29067
+70316,20081
+70317,36009
+70318,39676
+70319,39676
+70320,40141
+70321,65319
+70322,44013
+70323,44848
+70324,48828
+70325,54932
+70326,49351
+70327,79608
+70328,51462
+70329,31509
+70330,53072
+70331,77952
+70332,54553
+70333,56752,28064
+70334,70276
+70335,36618
+70336,75086
+70337,61361
+70338,30432
+70339,81482
+70340,67551
+70341,67649
+70342,40002
+70343,71489
+70344,48223
+70345,72840
+70346,77641
+70347,77641
+70348,77646
+70349,80429
+70350,80565
+70351,80995
+70352,81176
+70353,43781
+70354,57685
+70355,43677
+70356,76501
+70357,36404
+70358,43672
+70359,72248
+70360,49224
+70361,41645
+70362,70033
+70363,79608
+70364,75086
+70365,79608
+70366,29402
+70367,81602
+70368,39676
+70369,39676
+70370,45826
+70371,41189
+70372,66785
+70373,45826
+70374,62884
+70375,67737
+70376,6654
+70377,77945
+70378,75741
+70379,25770
+70380,41745
+70381,77321
+70382,81193
+70383,71033
+70384,71034
+70385,45813
+70386,29886
+70387,39002
+70388,41413
+70389,23945
+70390,45186
+70391,48530
+70392,50717
+70393,53373
+70394,59875
+70395,60468
+70396,61052
+70397,63434
+70398,69153
+70399,60216
+70400,56194
+70401,64142
+70402,55996
+70403,38814
+70404,37564
+70405,69033
+70406,54868
+70407,75606,54872
+70408,37477
+70409,52497
+70410,26009
+70411,76691
+70412,38196
+70413,51625
+70414,51068
+70415,78773
+70416,77460
+70417,78077
+70418,56194
+70419,25256
+70420,77820
+70421,80439
+70422,80440
+70423,23893
+70424,62145
+70425,70427
+70426,55768
+70427,79809,55763
+70428,79828
+70429,23225
+70430,49079
+70431,74232
+70432,57248
+70433,66066
+70434,23615
+70435,45643
+70436,78424
+70437,23643
+70438,39928
+70439,32982
+70440,25329
+70441,61879
+70442,63307
+70443,64371
+70444,74527
+70445,75472
+70446,21908
+70447,70417
+70448,22675
+70449,75814
+70450,73222
+70451,78578
+70452,81125
+70453,57765
+70454,69331
+70455,61402
+70456,48690
+70457,41228
+70458,72623
+70459,78640
+70460,47992
+70461,56179
+70462,61526
+70463,80613
+70464,61078
+70465,56163
+70466,34731
+70467,34210
+70468,21087
+70469,41856
+70470,34175
+70471,81807
+70472,57484
+70473,33455
+70474,28091
+70475,45388
+70476,48126
+70477,59423
+70478,38183
+70479,74660
+70480,78096
+70481,58144
+70482,47115
+70483,36498
+70484,52904
+70485,47673
+70486,9930
+70487,52802
+70488,19907
+70489,19108,19909
+70490,67608
+70491,21211
+70492,19923
+70493,33500
+70494,23712
+70495,33512
+70496,52803
+70497,19634
+70498,61253
+70499,40068
+70500,81161
+70501,77641
+70502,32603
+70503,53842
+70504,39618
+70505,47737
+70506,69744
+70507,68796
+70508,49858
+70509,21938
+70510,73726
+70511,29539
+70512,73402
+70513,73752
+70514,55768
+70515,77277
+70516,62144
+70517,79722
+70518,58166
+70519,69325
+70520,55348
+70521,55348
+70522,79547
+70523,77967
+70524,35156
+70525,31245
+70526,72959
+70527,30588
+70528,75708
+70529,23401
+70530,35188
+70531,60216
+70532,27734
+70533,72447,36074,35116
+70534,30300
+70535,55984
+70536,50439
+70537,64757
+70538,57066
+70539,64757
+70540,48662
+70541,73863
+70542,34093
+70543,76662
+70544,64757
+70545,50439
+70546,57066
+70547,52655
+70548,52655
+70549,63314
+70550,70526
+70551,39988
+70552,31537
+70553,53625
+70554,56832
+70555,33799
+70556,72435
+70557,64921
+70558,25017,80761
+70559,70561
+70560,70562
+70561,22032
+70562,72421
+70563,38313
+70564,21412
+70565,69846
+70566,25617
+70567,45086
+70568,55686
+70569,73837
+70570,75016
+70571,54603
+70572,74502
+70573,68095
+70574,80819
+70575,59463
+70576,20441
+70577,23294
+70578,23724
+70579,31618
+70580,48474
+70581,36404
+70582,74281
+70583,34735
+70584,53067
+70585,25306
+70586,36338
+70587,81794
+70588,47844
+70589,21412
+70590,60870
+70591,67329
+70592,19867
+70593,53648
+70594,25359
+70595,27276
+70596,31245
+70597,64716
+70598,70622,49420
+70599,70626
+70600,46747
+70601,39072
+70602,59241
+70603,61732
+70604,64403
+70605,27698
+70606,66083
+70607,77341
+70608,70914
+70609,31825
+70610,80460
+70611,79274
+70612,25019
+70613,70843
+70614,32750
+70615,64196
+70616,66727
+70617,70957
+70618,81626
+70619,77284
+70620,60216
+70621,59610
+70622,22032
+70623,70976
+70624,62034
+70625,37955
+70626,72421
+70627,18721
+70628,18721
+70629,81626
+70630,64293
+70631,32083
+70632,29803
+70633,72959
+70634,44484
+70635,32580
+70636,64972
+70637,54446
+70638,64965
+70639,31861
+70640,30051
+70641,65816
+70642,50424
+70643,20771
+70644,22684
+70645,74537
+70646,31447,25104
+70647,74812
+70648,27497
+70649,27562
+70650,71572
+70651,35534
+70652,74814
+70653,37411
+70654,55499
+70655,70646
+70656,34989
+70657,47908
+70658,26389
+70659,82066
+70660,51814
+70661,70629
+70662,50755
+70663,48157
+70664,74814
+70665,74811
+70666,42003
+70667,35737
+70668,25282
+70669,68330
+70670,73863
+70671,71686
+70672,30557
+70673,53275
+70674,29917
+70675,42225
+70676,21568
+70677,19176
+70678,56458
+70679,78606
+70680,36043
+70681,49103
+70682,25256
+70683,37622
+70684,69325
+70685,77367
+70686,27276
+70687,45813
+70688,55815
+70689,53275
+70690,53275
+70691,61746
+70692,22048
+70693,41872
+70694,43462
+70695,64527
+70696,25579,72712
+70697,62113
+70698,59089
+70699,49411
+70700,45643
+70701,46490
+70702,50457
+70703,81227
+70704,58410
+70705,40231
+70706,67565
+70707,26298
+70708,80012
+70709,81786
+70710,24781
+70711,34082
+70712,31991
+70713,73691
+70714,52118
+70715,74232
+70716,76546
+70717,47432
+70718,77985
+70719,68524
+70720,60810
+70721,33981
+70722,70604
+70723,56832
+70724,47590
+70725,79552
+70726,33799
+70727,28357
+70728,36781
+70729,29899
+70730,34263,72052
+70731,56871
+70732,56871
+70733,27890
+70734,50359
+70735,61670
+70736,24875
+70737,46183
+70738,69941
+70739,30588
+70740,19108
+70741,50296
+70742,33502
+70743,61592
+70744,22116
+70745,80512
+70746,73761
+70747,68859
+70748,75082
+70749,66945
+70750,51677
+70751,29969
+70752,59867
+70753,66939
+70754,32975
+70755,66944
+70756,70900
+70757,70937
+70758,49769
+70759,55662
+70760,60216
+70761,60216
+70762,81626
+70763,20883
+70764,20883
+70765,75425
+70766,37718
+70767,53203
+70768,69744
+70769,702
+70770,77321
+70771,46251
+70772,79549
+70773,50104
+70774,62456
+70775,35570
+70776,79274
+70777,81635
+70778,22032
+70779,72421
+70780,21218
+70781,76664
+70782,60598
+70783,60598
+70784,75552
+70785,21155,70787
+70786,77108
+70787,35626
+70788,70801,63066
+70789,70787
+70790,72585,67430,75955
+70791,19054
+70792,58812
+70793,41917
+70794,46172
+70795,60032
+70796,66135
+70797,28165
+70798,56462
+70799,75772
+70800,70782
+70801,25087
+70802,22684
+70803,70796
+70804,75389
+70805,59432
+70806,71623,60823
+70807,37762
+70808,19541
+70809,70796
+70810,70801,80011
+70811,60216
+70812,62555
+70813,27781
+70814,29917
+70815,23643
+70816,23796
+70817,53754
+70818,28220
+70819,49929
+70820,50969
+70821,67362
+70822,67608
+70823,80748
+70824,57304
+70825,48432
+70826,50755
+70827,34844
+70828,59305
+70829,71954
+70830,43698
+70831,69554
+70832,23021
+70833,43701
+70834,52497
+70835,49945
+70836,33503
+70837,40001
+70838,77989
+70839,52578
+70840,71617
+70841,71091
+70842,34731
+70843,55347
+70844,40941
+70845,61342
+70846,61415
+70847,28654,34924
+70848,39423
+70849,63224
+70850,20519
+70851,79097
+70852,39421
+70853,78286
+70854,36101
+70855,79968
+70856,68692
+70857,81227
+70858,27563
+70859,41877
+70860,576
+70861,79701
+70862,46035
+70863,80512
+70864,22907
+70865,69818
+70866,76435
+70867,35652
+70868,76429
+70869,61415
+70870,62349
+70871,82057
+70872,38521
+70873,40625
+70874,54774
+70875,69634
+70876,54732
+70877,61474
+70878,29928
+70879,41602
+70880,27408
+70881,54771
+70882,31444
+70883,69408
+70884,29917
+70885,49997
+70886,34175
+70887,34207
+70888,55347
+70889,41090
+70890,70033
+70891,81735
+70892,37582
+70893,43982
+70894,40745
+70895,32662
+70896,57897
+70897,37383
+70898,77688
+70899,25721
+70900,79937
+70901,61508
+70902,43285
+70903,63294
+70904,60259
+70905,67574
+70906,80185
+70907,80227
+70908,41005
+70909,55526
+70910,39563
+70911,25546
+70912,30672
+70913,26217
+70914,43107
+70915,78800
+70916,29928
+70917,77308
+70918,29929
+70919,73018
+70920,77340
+70921,62147
+70922,70896
+70923,65107
+70924,70925
+70925,52497
+70926,55263
+70927,65783
+70928,37163
+70929,23559
+70930,47840
+70931,27687
+70932,60216
+70933,25131
+70934,74666
+70935,32580
+70936,34657
+70937,78532
+70938,77328
+70939,50969
+70940,53425
+70941,55499
+70942,79691
+70943,34398
+70944,58675
+70945,67093
+70946,62550
+70947,53519
+70948,53354
+70949,30300
+70950,19936
+70951,42327
+70952,47432
+70953,25598
+70954,58675
+70955,31281
+70956,65641
+70957,29513
+70958,36123
+70959,59377
+70960,73207
+70961,34860
+70962,55760
+70963,74620
+70964,80257
+70965,41856
+70966,67574
+70967,24874
+70968,49876
+70969,70968
+70970,24874
+70971,25115
+70972,70549
+70973,56399
+70974,51462
+70975,19813
+70976,25046
+70977,26602
+70978,22878
+70979,32155
+70980,27324
+70981,27811
+70982,29526
+70983,48540
+70984,39375
+70985,50438
+70986,46767
+70987,47908
+70988,48679
+70989,28591
+70990,60216
+70991,62944
+70992,69744
+70993,30672
+70994,66985
+70995,26769
+70996,21959
+70997,44970
+70998,39375
+70999,38381
+71000,24470
+71001,41586
+71002,20409
+71003,70548
+71004,80505
+71005,62449
+71006,68013
+71007,54562
+71008,58776
+71009,25202
+71010,57867,62159
+71011,72042
+71012,59970
+71013,25659
+71014,30425
+71015,60216
+71016,81462
+71017,25803
+71018,78594
+71019,33669
+71020,34263
+71021,56011
+71022,68710
+71023,69106
+71024,54862,38933
+71025,69123
+71026,25434
+71027,41265
+71028,40292
+71029,71398
+71030,61247
+71031,53982
+71032,79608
+71033,39088
+71034,60216
+71035,37685
+71036,66479
+71037,71033
+71038,71034
+71039,70629
+71040,70629
+71041,30391
+71042,37635
+71043,19813
+71044,47944
+71045,48429
+71046,19532
+71047,79156
+71048,25843
+71049,25202
+71050,70033
+71051,79344
+71052,68430
+71053,31139
+71054,70033
+71055,70033
+71056,37206
+71057,52520
+71058,67649
+71059,46781
+71060,38836
+71061,59432
+71062,31587
+71063,28982
+71064,38563
+71065,76811
+71066,66953
+71067,18969
+71068,41395
+71069,37582
+71070,19947
+71071,21959
+71072,32660
+71073,33852
+71074,35978
+71075,44203
+71076,44970
+71077,51617
+71078,55685
+71079,55686
+71080,55687
+71081,61209
+71082,71403
+71083,74279
+71084,46285
+71085,81541
+71086,38477
+71087,40195
+71088,71074
+71089,24007
+71090,47231
+71091,76066
+71092,38543
+71093,37239
+71094,26271
+71095,71046
+71096,40147
+71097,40147
+71098,24704
+71099,32929
+71100,47675
+71101,30987
+71102,61251
+71103,41877
+71104,36592
+71105,57379
+71106,35414
+71107,23019
+71108,35557
+71109,24391
+71110,25002
+71111,26320
+71112,77641
+71113,42327
+71114,67957
+71115,60024
+71116,52693
+71117,68364
+71118,50919
+71119,57333
+71120,35048
+71121,22665
+71122,41646
+71123,60076
+71124,39964
+71125,66696
+71126,42420
+71127,55563
+71128,51642
+71129,39676
+71130,79337
+71131,59826
+71132,24400
+71133,62831
+71134,56532
+71135,25022
+71136,64886
+71137,80782
+71138,56832
+71139,25789
+71140,55348
+71141,39423
+71142,45260
+71143,44171
+71144,25956
+71145,66887
+71146,40752
+71147,67703
+71148,60032,41014
+71149,71911
+71150,70020
+71151,78286
+71152,60534
+71153,77239
+71154,74567
+71155,73740
+71156,77552
+71157,36619
+71158,46962
+71159,79009
+71160,39088
+71161,80619
+71162,41418
+71163,39176
+71164,76229
+71165,78755
+71166,62798
+71167,76229
+71168,31633
+71169,31633
+71170,78755
+71171,74939,65509
+71172,60216
+71173,45813
+71174,19055
+71175,31606
+71176,50565
+71177,71025
+71178,60216
+71179,60216
+71180,43364
+71181,60739
+71182,69887
+71183,44644
+71184,62452
+71185,75665
+71186,53210
+71187,66528
+71188,69597
+71189,48949
+71190,33189
+71191,78755
+71192,21638
+71193,27578
+71194,56472
+71195,66762
+71196,61981
+71197,72584
+71198,64142
+71199,56832
+71200,25843
+71201,70796
+71202,25844
+71203,19810
+71204,70652
+71205,78755
+71206,35157
+71207,76249
+71208,55524
+71209,57035
+71210,57035
+71211,80607
+71212,50649
+71213,62555
+71214,55453
+71215,72575
+71216,26448
+71217,24922
+71218,38477
+71219,54753
+71220,24084
+71221,51468
+71222,49181
+71223,37175
+71224,44193
+71225,81161
+71226,52497
+71227,61568
+71228,41719
+71229,41719
+71230,22785
+71231,67791
+71232,55391
+71233,73943
+71234,61705
+71235,24749
+71236,25017
+71237,70620
+71238,70843
+71239,32580
+71240,36470
+71241,20641
+71242,61182
+71243,33216
+71244,39940
+71245,77273
+71246,55373
+71247,34924
+71248,45170
+71249,58508
+71250,37279
+71251,41638
+71252,77644
+71253,65072
+71254,28584
+71255,77141
+71256,76811
+71257,81994
+71258,25574
+71259,53263
+71260,60216
+71261,47655
+71262,31587
+71263,68304
+71264,25843
+71265,60216
+71266,56179
+71267,80197
+71268,25884
+71269,29698
+71270,42131
+71271,26194
+71272,40403
+71273,35652
+71274,40001
+71275,71269
+71276,69221
+71277,29693
+71278,71269
+71279,77641
+71280,79608
+71281,32753
+71282,69258
+71283,64142
+71284,75204
+71285,40908
+71286,82070
+71287,40752
+71288,42523
+71289,66674
+71290,33189
+71291,49341
+71292,56073
+71293,75772
+71294,19438
+71295,58088
+71296,75738
+71297,18834
+71298,69283
+71299,41047
+71300,22786
+71301,22032,61395
+71302,71336
+71303,59377
+71304,71320
+71305,44440
+71306,20946
+71307,20947
+71308,78879
+71309,19733
+71310,44440
+71311,33799
+71312,61789
+71313,38545
+71314,42351
+71315,44437
+71316,48318
+71317,71329
+71318,75019
+71319,60468
+71320,61766
+71321,46892
+71322,63587
+71323,65691
+71324,68280
+71325,68290
+71326,68677
+71327,68787
+71328,73018
+71329,19757
+71330,80636
+71331,63653
+71332,61789
+71333,52918
+71334,61796
+71335,47673
+71336,56200
+71337,44440
+71338,71310
+71339,53758
+71340,60216
+71341,71315
+71342,37569
+71343,24249
+71344,24251
+71345,51558
+71346,51566
+71347,71325
+71348,71324
+71349,18869
+71350,71348
+71351,56540
+71352,46675
+71353,28091
+71354,65108
+71355,65107
+71356,81746
+71357,67651
+71358,59773
+71359,46782
+71360,27114
+71361,32672
+71362,23019
+71363,21200
+71364,32428
+71365,54825
+71366,36506
+71367,53842
+71368,54562
+71369,54082
+71370,50273
+71371,67675
+71372,67675
+71373,67675
+71374,24194
+71375,33558
+71376,55221,67675
+71377,67675
+71378,47043
+71379,47105,52412
+71380,47223,24695,35581
+71381,48828
+71382,74250,34858
+71383,56752
+71384,56762
+71385,60502
+71386,26296
+71387,20517
+71388,74250
+71389,23062
+71390,26296
+71391,64827
+71392,51894
+71393,60273
+71394,60271
+71395,68691
+71396,70110
+71397,75942
+71398,75665
+71399,29578
+71400,29579
+71401,32645
+71402,32642
+71403,78286
+71404,75330
+71405,53516
+71406,39838
+71407,35130
+71408,24007
+71409,36610,56065
+71410,43362
+71411,61784
+71412,56585
+71413,58024
+71414,40472
+71415,59762
+71416,62788
+71417,26409
+71418,61251
+71419,68064
+71420,19483
+71421,69697
+71422,71269
+71423,71489
+71424,19547
+71425,76512
+71426,77646
+71427,80257
+71428,80735
+71429,22786
+71430,23232
+71431,28774
+71432,56179
+71433,31164
+71434,37113
+71435,71697
+71436,79746
+71437,31506
+71438,48014
+71439,30188
+71440,71439
+71441,38273
+71442,53958
+71443,81482
+71444,80501
+71445,80714
+71446,36976
+71447,22946
+71448,28774
+71449,31482
+71450,38266
+71451,46540
+71452,36363
+71453,63162
+71454,28539
+71455,59377
+71456,58036
+71457,73032
+71458,66040
+71459,30432
+71460,71505
+71461,30598
+71462,42153
+71463,79259
+71464,37405
+71465,26944
+71466,28167
+71467,64831
+71468,65508
+71469,37104
+71470,20231
+71471,71482
+71472,44071
+71473,44927
+71474,45546
+71475,46782
+71476,52614
+71477,55151
+71478,43095
+71479,21998
+71480,56451
+71481,71482
+71482,64474
+71483,75019
+71484,75693
+71485,75018
+71486,71482
+71487,81906
+71488,38867
+71489,20120
+71490,81626
+71491,40852
+71492,45009
+71493,37936
+71494,81627
+71495,43901
+71496,72685
+71497,70627
+71498,21477
+71499,25457
+71500,40538,41014
+71501,40537
+71502,42327
+71503,30296,52605
+71504,70568
+71505,74891
+71506,70427
+71507,60935
+71508,38021
+71509,37999
+71510,65976
+71511,50638
+71512,60320
+71513,50630
+71514,62145
+71515,31164
+71516,53519
+71517,69543
+71518,72970
+71519,60612
+71520,20698
+71521,25119
+71522,39936
+71523,43122
+71524,71557
+71525,30863
+71526,41816
+71527,31506
+71528,34618
+71529,63809
+71530,19233
+71531,72051
+71532,60450
+71533,49217
+71534,76441
+71535,30518
+71536,27506
+71537,31337
+71538,27908
+71539,79661
+71540,77591
+71541,48980
+71542,77045
+71543,48980
+71544,21568
+71545,70427
+71546,55760
+71547,55756
+71548,19228
+71549,40619
+71550,46364
+71551,55768
+71552,32256
+71553,34326
+71554,64142
+71555,43362
+71556,53519
+71557,54825
+71558,54153
+71559,74132
+71560,72983
+71561,69330
+71562,63314
+71563,31058
+71564,19654
+71565,21937
+71566,40060
+71567,53728
+71568,17570
+71569,9230
+71570,79608
+71571,58181
+71572,28164
+71573,24244
+71574,34452
+71575,54862
+71576,46553
+71577,45260
+71578,78148
+71579,60019
+71580,48613
+71581,51894
+71582,79992
+71583,70796
+71584,52817
+71585,47737
+71586,60476
+71587,53624,56243
+71588,29643
+71589,21680
+71590,71588
+71591,71704
+71592,23075
+71593,71686
+71594,79809
+71595,55756
+71596,60074
+71597,11867
+71598,76441
+71599,58287
+71600,25302
+71601,70426
+71602,71601
+71603,31041
+71604,36343
+71605,69812
+71606,34673
+71607,61621
+71608,61622
+71609,60715
+71610,48408
+71611,47510,62654
+71612,78077
+71613,53717
+71614,31179
+71615,55261
+71616,39225
+71617,19438
+71618,38809
+71619,39279
+71620,64142
+71621,52255
+71622,29627
+71623,36602,47207
+71624,70426
+71625,70428
+71626,61075
+71627,29724
+71628,37179
+71629,53454
+71630,53454
+71631,27488
+71632,57456
+71633,71632
+71634,52586
+71635,35414
+71636,48077
+71637,48127
+71638,52801
+71639,54485
+71640,75013
+71641,71639
+71642,29969
+71643,56179
+71644,46599
+71645,44232
+71646,45946
+71647,20690
+71648,67498
+71649,67498
+71650,60216
+71651,70375
+71652,57927
+71653,79000
+71654,29744
+71655,52497
+71656,40619
+71657,54404
+71658,44451
+71659,19994
+71660,65956
+71661,65956
+71662,3704
+71663,36640
+71664,78772
+71665,30300
+71666,45260
+71667,77641
+71668,37181
+71669,43313
+71670,24395
+71671,24555
+71672,35557
+71673,57865
+71674,43786,24528
+71675,37624
+71676,72269
+71677,39578
+71678,48731
+71679,2130
+71680,41004
+71681,49876
+71682,52211
+71683,23579
+71684,53654
+71685,25113
+71686,45096
+71687,71697
+71688,69106
+71689,51472
+71690,31607
+71691,55350
+71692,37216
+71693,55351
+71694,46268
+71695,50605
+71696,62757
+71697,63314
+71698,53621
+71699,65215
+71700,65950
+71701,72034
+71702,72038
+71703,77995
+71704,78703
+71705,80440
+71706,66079
+71707,34924
+71708,34671
+71709,53621
+71710,60216
+71711,66079
+71712,25065
+71713,75989
+71714,75604
+71715,31245
+71716,71699
+71717,31047
+71718,70525
+71719,35557
+71720,55802
+71721,25546
+71722,71719
+71723,28638
+71724,50180
+71725,61336
+71726,65977
+71727,72399
+71728,30153
+71729,75436
+71730,25770
+71731,28821
+71732,41743
+71733,28822
+71734,32775
+71735,35908
+71736,37179
+71737,37179
+71738,35634
+71739,78197
+71740,53310
+71741,80821
+71742,54446
+71743,58041
+71744,40564
+71745,45118
+71746,56179
+71747,35926
+71748,39101
+71749,48372
+71750,65478
+71751,40
+71752,50359
+71753,71747
+71754,34924
+71755,63187
+71756,58152
+71757,55830
+71758,50803
+71759,69363,63389
+71760,72367
+71761,75439
+71762,78815
+71763,33475
+71764,33476
+71765,67972
+71766,25661
+71767,27855
+71768,35386
+71769,51894
+71770,27534
+71771,30962
+71772,30962
+71773,61733
+71774,70104
+71775,30962
+71776,30962
+71777,81193
+71778,35386
+71779,51894
+71780,30962
+71781,30962
+71782,30962
+71783,81193
+71784,43769
+71785,21959
+71786,77641
+71787,48870
+71788,50934
+71789,26233
+71790,26769
+71791,50856
+71792,653
+71793,27093
+71794,45732
+71795,51773
+71796,52658
+71797,49468
+71798,65347
+71799,71873
+71800,80324
+71801,28104
+71802,68030
+71803,22152
+71804,62147
+71805,81694
+71806,65579
+71807,35386
+71808,51894
+71809,30962
+71810,30962
+71811,30962
+71812,81193
+71813,51617
+71814,78024
+71815,80932
+71816,49515
+71817,67277,45383
+71818,38694
+71819,68974
+71820,22271
+71821,32362
+71822,74826
+71823,81535
+71824,70033
+71825,43766
+71826,67686
+71827,40752
+71828,39375
+71829,50919
+71830,23543
+71831,23541
+71832,31239
+71833,54445
+71834,41953
+71835,40736
+71836,79261
+71837,20406,51894
+71838,21475
+71839,21476
+71840,28591
+71841,21476
+71842,22164
+71843,31893
+71844,76631
+71845,49683
+71846,70399
+71847,71859
+71848,45546
+71849,45680
+71850,50560
+71851,53716
+71852,44567
+71853,63185
+71854,66838
+71855,71859
+71856,67921
+71857,19228
+71858,81781
+71859,32683,67921
+71860,29851
+71861,31894
+71862,79930
+71863,62766
+71864,21995
+71865,64831
+71866,61153
+71867,61302
+71868,61402
+71869,45007
+71870,24392
+71871,27832
+71872,60032
+71873,41657
+71874,81601
+71875,22451
+71876,59474
+71877,59475
+71878,18106
+71879,35557
+71880,48513
+71881,67957
+71882,74297
+71883,74296
+71884,59475
+71885,41417
+71886,57143
+71887,37482
+71888,69086
+71889,36800
+71890,51523
+71891,35735
+71892,51830
+71893,39049
+71894,74537
+71895,72426
+71896,70967
+71897,41119
+71898,35479
+71899,54562
+71900,61732
+71901,25600
+71902,26452
+71903,68355
+71904,31039
+71905,76663
+71906,19349
+71907,23891
+71908,66443
+71909,33515
+71910,60993
+71911,60032
+71912,77235
+71913,41417
+71914,76691
+71915,37405
+71916,56472
+71917,59340
+71918,48008
+71919,31039
+71920,42159
+71921,51120
+71922,37405
+71923,64526
+71924,79761,38878
+71925,53515
+71926,40231
+71927,81251
+71928,81746
+71929,71029
+71930,31762
+71931,25603
+71932,25598
+71933,59441
+71934,45302
+71935,39210
+71936,53590
+71937,31555
+71938,74939
+71939,36999
+71940,59128
+71941,18663
+71942,24611
+71943,40362
+71944,82050
+71945,50900
+71946,28890
+71947,25649
+71948,40752
+71949,63314
+71950,58801
+71951,56832
+71952,80324
+71953,78250
+71954,45009
+71955,70392
+71956,20745
+71957,37247
+71958,40293
+71959,56546
+71960,23190
+71961,21742
+71962,65171
+71963,75668
+71964,62145
+71965,79009
+71966,19108
+71967,78096
+71968,47655
+71969,80512
+71970,24162
+71971,50701
+71972,54440
+71973,61651
+71974,54655
+71975,40564
+71976,50737
+71977,35557
+71978,57556
+71979,75708
+71980,50907
+71981,19655
+71982,75472
+71983,32528
+71984,52691
+71985,66021
+71986,37197
+71987,37216
+71988,48531,61793
+71989,49487
+71990,72018
+71991,61422
+71992,65711
+71993,69325
+71994,79387
+71995,31153
+71996,35917
+71997,38807
+71998,28539
+71999,19280
+72000,27565
+72001,69860
+72002,38576
+72003,75510
+72004,49797
+72005,53717
+72006,65704
+72007,45521
+72008,60073
+72009,56023
+72010,35926
+72011,34737
+72012,59346
+72013,59346
+72014,48474
+72015,38606
+72016,67744
+72017,25434
+72018,21510
+72019,34127
+72020,72451
+72021,19947
+72022,64873
+72023,70179
+72024,35666
+72025,25002
+72026,26874
+72027,58010
+72028,60074
+72029,60011
+72030,63774
+72031,72421
+72032,20977
+72033,60534
+72034,72036
+72035,60552
+72036,58010
+72037,28776
+72038,21622
+72039,68342
+72040,51473
+72041,47273
+72042,48798
+72043,66686
+72044,78526
+72045,76256
+72046,19468,42076
+72047,54694
+72048,53701
+72049,79009
+72050,71965
+72051,22215
+72052,19171
+72053,30900
+72054,33928
+72055,35626
+72056,48486
+72057,58144
+72058,22220
+72059,71702
+72060,76160
+72061,76162
+72062,70246
+72063,81781
+72064,55347
+72065,58675
+72066,64831
+72067,64972
+72068,46091
+72069,19291
+72070,65636
+72071,72066,31539
+72072,47344
+72073,70562
+72074,77554
+72075,55374
+72076,36542
+72077,76517
+72078,54130
+72079,47323
+72080,66727
+72081,64417
+72082,43113
+72083,22410
+72084,72051
+72085,35105
+72086,58068
+72087,62895
+72088,81780
+72089,58262
+72090,31646
+72091,80735
+72092,82117
+72093,33488
+72094,59646
+72095,33498
+72096,72514
+72097,63105
+72098,78059
+72099,42114
+72100,34646
+72101,32372
+72102,32374
+72103,20755
+72104,77004
+72105,80460
+72106,41885
+72107,42114
+72108,74807
+72109,42115
+72110,42117
+72111,79211
+72112,31689
+72113,55299
+72114,80219
+72115,32718
+72116,68619
+72117,25256
+72118,41002
+72119,67131
+72120,67131
+72121,21745
+72122,38042
+72123,43104
+72124,18709
+72125,20698
+72126,43122
+72127,61866
+72128,72127
+72129,77822
+72130,67148
+72131,65295
+72132,67131
+72133,53624
+72134,22790
+72135,55686
+72136,60216
+72137,73015
+72138,62762
+72139,9455
+72140,25543
+72141,62725
+72142,40564
+72143,26884
+72144,31853
+72145,64438
+72146,20690
+72147,20123
+72148,70033
+72149,54469
+72150,75439
+72151,63064
+72152,41764
+72153,21373
+72154,63187
+72155,20683
+72156,39676
+72157,32642
+72158,72166
+72159,54789
+72160,11862
+72161,58088
+72162,58088
+72163,58088
+72164,80545
+72165,80542
+72166,45813
+72167,45813
+72168,60769
+72169,28548
+72170,22162
+72171,48144
+72172,66673
+72173,37406
+72174,61651
+72175,63218
+72176,47655
+72177,55984
+72178,72435
+72179,46256
+72180,45547
+72181,45625
+72182,50597
+72183,57594
+72184,31610
+72185,68854
+72186,29974
+72187,51643
+72188,40748
+72189,70876
+72190,47908
+72191,31477
+72192,31281
+72193,67053
+72194,36531
+72195,65836
+72196,67054
+72197,63650
+72198,29919
+72199,28954
+72200,28954
+72201,24354
+72202,44232
+72203,79258
+72204,24726
+72205,65584
+72206,20650
+72207,36710
+72208,70569
+72209,56492,41885
+72210,18740
+72211,51649
+72212,56440
+72213,72212
+72214,72212
+72215,79282
+72216,39767
+72217,60739
+72218,73222
+72219,67050
+72220,70033
+72221,76240
+72222,50862
+72223,72492
+72224,63064
+72225,59306
+72226,19244
+72227,54562
+72228,72227
+72229,53752
+72230,78865
+72231,45214
+72232,64142
+72233,45429
+72234,72232
+72235,42097
+72236,40326
+72237,52773
+72238,26171
+72239,45030
+72240,72242
+72241,72242
+72242,76059
+72243,40337
+72244,72242
+72245,24354
+72246,78739
+72247,53167
+72248,75665
+72249,35978
+72250,47455
+72251,51868
+72252,69677
+72253,61438
+72254,71403
+72255,40446
+72256,58200
+72257,33455
+72258,37120
+72259,67054
+72260,34199
+72261,57362
+72262,42020
+72263,68461
+72264,72518
+72265,70033
+72266,21977
+72267,38475
+72268,38475
+72269,79756
+72270,28590
+72271,72281
+72272,22050
+72273,19342
+72274,50273
+72275,63566
+72276,73507
+72277,47505
+72278,71557
+72279,38455
+72280,65771
+72281,23790
+72282,74926
+72283,50701
+72284,23790
+72285,76135
+72286,23790
+72287,48825
+72288,28539
+72289,63316
+72290,38475
+72291,65216
+72292,53624
+72293,44167
+72294,53624
+72295,53621
+72296,32225,21013
+72297,34107
+72298,70590
+72299,38887
+72300,27297
+72301,58120
+72302,32941
+72303,63212
+72304,61078
+72305,37688
+72306,60216
+72307,51388
+72308,46408
+72309,65108
+72310,35944
+72311,47432
+72312,56440
+72313,72451
+72314,56832
+72315,80716
+72316,63424
+72317,50317
+72318,63424
+72319,72314
+72320,70746
+72321,24005
+72322,52431
+72323,39676
+72324,18728
+72325,79282
+72326,48126
+72327,70568
+72328,47198
+72329,49440
+72330,81547
+72331,81626
+72332,53648
+72333,73761
+72334,59225
+72335,53648
+72336,25256
+72337,24393
+72338,39112
+72339,25435
+72340,69554
+72341,32662
+72342,41719
+72343,41250
+72344,19144
+72345,47871
+72346,25676
+72347,32187
+72348,44193
+72349,71719
+72350,34145
+72351,37794
+72352,48120
+72353,35719
+72354,64619
+72355,62951
+72356,69704
+72357,79905
+72358,35722
+72359,81626
+72360,75511
+72361,58308
+72362,54562
+72363,73395
+72364,48248
+72365,61541
+72366,47908
+72367,34114
+72368,27090
+72369,19849
+72370,19849
+72371,75020
+72372,78815
+72373,74488
+72374,61209
+72375,72376
+72376,19497
+72377,72376
+72378,34827
+72379,54189
+72380,21710
+72381,48126
+72382,35612
+72383,18820
+72384,48787
+72385,80217
+72386,26884
+72387,39049
+72388,42539
+72389,74647
+72390,56532
+72391,81643
+72392,62081
+72393,30535
+72394,74490
+72395,56194
+72396,18757
+72397,47444
+72398,81483
+72399,33532,31616
+72400,31618
+72401,32083
+72402,79953
+72403,70881
+72404,39572
+72405,75552
+72406,77340
+72407,72791
+72408,65956
+72409,19620
+72410,55332
+72411,65956
+72412,65956
+72413,50717
+72414,61246
+72415,41875
+72416,63472
+72417,72416
+72418,62360
+72419,60216
+72420,57461
+72421,35838
+72422,22032
+72423,79028
+72424,49902
+72425,27405
+72426,46966
+72427,72435,30697
+72428,42078
+72429,42076
+72430,20288
+72431,20825
+72432,27405
+72433,37193
+72434,56607
+72435,38218
+72436,37998
+72437,47655
+72438,53716
+72439,58760
+72440,68809
+72441,49341
+72442,56597
+72443,39177
+72444,22149
+72445,68809
+72446,68809
+72447,61402
+72448,61144
+72449,70987
+72450,53180
+72451,53205
+72452,80630
+72453,28703
+72454,49124
+72455,30699
+72456,59414
+72457,62810
+72458,80629
+72459,80632
+72460,29696
+72461,50273
+72462,20897
+72463,31975
+72464,61705
+72465,32694
+72466,74178
+72467,36933
+72468,66491
+72469,12331
+72470,38477
+72471,47116
+72472,52451
+72473,58579
+72474,20328
+72475,67608
+72476,67819
+72477,70688
+72478,41587
+72479,68610
+72480,37712
+72481,37712
+72482,65702,36052
+72483,57897
+72484,57627
+72485,80720
+72486,39579
+72487,29101
+72488,81747
+72489,45885
+72490,62146
+72491,60216
+72492,80372
+72493,60284
+72494,49205
+72495,40756
+72496,70987
+72497,21281
+72498,58783
+72499,58801,72501
+72500,50117
+72501,21276
+72502,43323
+72503,31239
+72504,58760
+72505,28536
+72506,38900
+72507,37623
+72508,39941
+72509,45009
+72510,40578
+72511,58088
+72512,63187
+72513,79828
+72514,48489
+72515,69222
+72516,34199
+72517,23763
+72518,37325
+72519,43107
+72520,68679
+72521,29691
+72522,22746
+72523,40752
+72524,66110
+72525,27196
+72526,28889
+72527,24427
+72528,53524
+72529,77666
+72530,68291
+72531,62693
+72532,79492
+72533,79493
+72534,80256
+72535,25017
+72536,23764
+72537,42381
+72538,73412
+72539,32591
+72540,71895
+72541,40841
+72542,46031
+72543,80400
+72544,53648
+72545,75018
+72546,67325
+72547,71900
+72548,22052
+72549,41119
+72550,49205
+72551,54813
+72552,66900
+72553,80753
+72554,65233
+72555,28952
+72556,61259
+72557,44232
+72558,81482
+72559,31417
+72560,23100
+72561,25872
+72562,19319
+72563,44456
+72564,60899
+72565,35626
+72566,61627
+72567,45007
+72568,40908
+72569,70994
+72570,61261
+72571,63104
+72572,63213
+72573,24726
+72574,42388
+72575,70033
+72576,33824
+72577,45813
+72578,32185
+72579,39283
+72580,60216
+72581,42523
+72582,67921
+72583,79009
+72584,72029
+72585,68780
+72586,67921
+72587,80239
+72588,48478
+72589,53375
+72590,71439
+72591,71395
+72592,60771
+72593,62367
+72594,52801
+72595,21597
+72596,66953
+72597,66953
+72598,56233
+72599,28074
+72600,19828
+72601,81193
+72602,30334
+72603,68056
+72604,38168
+72605,68058
+72606,80228
+72607,72606
+72608,69543
+72609,21745
+72610,45009
+72611,65239,65628
+72612,70399
+72613,57187
+72614,31489
+72615,54413
+72616,40967
+72617,67574
+72618,32457
+72619,40964
+72620,21480
+72621,21480
+72622,49997
+72623,53499
+72624,53593
+72625,21480
+72626,21480
+72627,57242
+72628,70526
+72629,66964
+72630,67565
+72631,43744
+72632,21480
+72633,65240
+72634,68330
+72635,79259
+72636,32530
+72637,79608
+72638,22786
+72639,32023
+72640,32520
+72641,60733
+72642,64446
+72643,55348
+72644,52262
+72645,48735
+72646,69363
+72647,724
+72648,51395
+72649,80913
+72650,74279
+72651,56832
+72652,52168
+72653,56832
+72654,21745
+72655,46839
+72656,39425
+72657,29692
+72658,52148
+72659,52211
+72660,31555
+72661,31080
+72662,55494
+72663,23243
+72664,49897
+72665,29418
+72666,40231
+72667,34107
+72668,68622
+72669,68465
+72670,51473
+72671,26311
+72672,53043
+72673,21412
+72674,52084
+72675,60216
+72676,22128
+72677,50341
+72678,22128
+72679,41899
+72680,66862
+72681,33918
+72682,26871
+72683,45813
+72684,11862
+72685,72248
+72686,23103
+72687,43801
+72688,56832
+72689,24874
+72690,22116
+72691,68522
+72692,58099
+72693,73042
+72694,47716
+72695,72853
+72696,28774
+72697,19849
+72698,34924
+72699,23021,72698
+72700,39370
+72701,42389
+72702,46125
+72703,46599
+72704,18958
+72705,76042
+72706,60810
+72707,45625
+72708,50117
+72709,73470
+72710,72141
+72711,23223
+72712,73838
+72713,26302
+72714,41107
+72715,74903
+72716,73222
+72717,25094
+72718,55760
+72719,51473
+72720,37712
+72721,30682
+72722,69216
+72723,70033
+72724,26211
+72725,50256
+72726,59377
+72727,68168
+72728,36384
+72729,61355
+72730,77575
+72731,61355
+72732,42142
+72733,33799,69977
+72734,35388
+72735,35400
+72736,38013
+72737,71987
+72738,39502
+72739,50839
+72740,74462
+72741,63544
+72742,66550
+72743,65925
+72744,80827
+72745,30008
+72746,32685
+72747,37712
+72748,48131
+72749,70033
+72750,35402
+72751,59775
+72752,20745
+72753,73437
+72754,39676
+72755,74279
+72756,46760
+72757,21757
+72758,77575
+72759,35461
+72760,21475
+72761,47744
+72762,47744
+72763,30498
+72764,21218
+72765,75788
+72766,81227
+72767,43362
+72768,81626
+72769,36874
+72770,71454
+72771,20122
+72772,67254
+72773,66859
+72774,61355
+72775,72776
+72776,80483
+72777,80638
+72778,48413
+72779,62187
+72780,42074
+72781,46620
+72782,56547
+72783,74591
+72784,33614
+72785,33614
+72786,36395
+72787,57680
+72788,42003
+72789,63936
+72790,46957
+72791,61259
+72792,41877
+72793,13529
+72794,59775
+72795,46962
+72796,27090
+72797,68432
+72798,46599
+72799,52836
+72800,68697
+72801,30954
+72802,57415
+72803,25366
+72804,44696
+72805,52814
+72806,65956
+72807,37873
+72808,39049
+72809,72055
+72810,71961
+72811,29623
+72812,35115
+72813,74903
+72814,52497
+72815,19926
+72816,30391
+72817,77308
+72818,39122
+72819,75472
+72820,28536
+72821,44440
+72822,81643
+72823,59775
+72824,62439
+72825,62146
+72826,62187
+72827,62144
+72828,79270
+72829,75057
+72830,76571
+72831,73448
+72832,34293
+72833,73447
+72834,59812
+72835,57594
+72836,79874
+72837,62187
+72838,40411
+72839,75027
+72840,79086
+72841,61796
+72842,62767
+72843,79867
+72844,79168
+72845,64632,42356
+72846,53214
+72847,34363
+72848,61976
+72849,68225
+72850,34365
+72851,77492
+72852,31245
+72853,71310
+72854,28545
+72855,76249
+72856,18713
+72857,73449
+72858,72860
+72859,33537
+72860,58166
+72861,73018
+72862,51677
+72863,55348
+72864,21589
+72865,30693
+72866,57922
+72867,58108
+72868,62743
+72869,66954
+72870,80440
+72871,60993
+72872,27688
+72873,58088
+72874,29067
+72875,54562
+72876,40820
+72877,76054
+72878,18728
+72879,45813
+72880,22219
+72881,37985
+72882,72881,24289
+72883,48077
+72884,30108
+72885,55984
+72886,59031
+72887,56166
+72888,52497
+72889,52497
+72890,61213
+72891,28146
+72892,28146
+72893,19231
+72894,36707
+72895,26318
+72896,28221
+72897,20789
+72898,20789
+72899,41743
+72900,23765
+72901,28654
+72902,25393
+72903,32045
+72904,79608
+72905,52658
+72906,67863
+72907,68025
+72908,40485
+72909,77051
+72910,53164
+72911,70110
+72912,41265
+72913,61906
+72914,41022
+72915,46027
+72916,66929
+72917,52084
+72918,72029
+72919,19492
+72920,37079
+72921,72895
+72922,60032
+72923,57390
+72924,51434
+72925,19234
+72926,72891
+72927,51319
+72928,58287
+72929,54957
+72930,71859
+72931,23760
+72932,19462
+72933,78236
+72934,51467
+72935,31647
+72936,33325
+72937,57572
+72938,37388
+72939,24781
+72940,26267
+72941,23182
+72942,61089,72935
+72943,62189
+72944,70214
+72945,65509
+72946,72945
+72947,72945
+72948,23764
+72949,46948
+72950,63003
+72951,19087
+72952,21959
+72953,59602
+72954,46781
+72955,59549
+72956,47744
+72957,37689
+72958,43809
+72959,22164
+72960,61793
+72961,19379
+72962,63380
+72963,38562
+72964,75954
+72965,34647
+72966,27323,29509
+72967,37130
+72968,43809
+72969,25499
+72970,28788
+72971,75772,63584
+72972,34363
+72973,62981
+72974,69083
+72975,37130
+72976,75492
+72977,77626
+72978,41243
+72979,47702
+72980,53033
+72981,76123
+72982,54044
+72983,54044
+72984,30657
+72985,30300
+72986,66040
+72987,26778
+72988,35922
+72989,66551
+72990,61796
+72991,81374
+72992,72990
+72993,32975
+72994,56836
+72995,37417
+72996,31991
+72997,53624
+72998,53657
+72999,62144
+73000,64513
+73001,39101
+73002,55353
+73003,73321
+73004,53959
+73005,81796
+73006,53375
+73007,33909
+73008,60612
+73009,54153
+73010,26937
+73011,53480
+73012,21282
+73013,53648
+73014,30391
+73015,68522
+73016,38384
+73017,25088
+73018,72959
+73019,21973
+73020,38135
+73021,70526
+73022,81801
+73023,50602
+73024,50603
+73025,32926
+73026,64779
+73027,58226
+73028,70746
+73029,34211
+73030,73762
+73031,25620
+73032,19171
+73033,19438
+73034,73029
+73035,20743
+73036,41119
+73037,41843
+73038,66066
+73039,52268
+73040,66066
+73041,65631
+73042,47558
+73043,68289
+73044,33500
+73045,53637
+73046,35557
+73047,75064
+73048,31239
+73049,35557
+73050,66132
+73051,23232
+73052,31139
+73053,19837
+73054,25216,73053
+73055,39929,73053
+73056,79151
+73057,66953
+73058,28475
+73059,30021
+73060,38919
+73061,27564
+73062,45559
+73063,48877
+73064,60993
+73065,51929
+73066,62434
+73067,78204
+73068,80834
+73069,25046
+73070,63677
+73071,31861
+73072,69744
+73073,32691
+73074,79274
+73075,51474
+73076,67946
+73077,43509
+73078,39466
+73079,74939
+73080,80152
+73081,20120
+73082,69573
+73083,18766
+73084,25920
+73085,33790
+73086,24897
+73087,30937
+73088,60042
+73089,37920
+73090,37921
+73091,37922
+73092,48030
+73093,39122
+73094,61336
+73095,63126
+73096,19266
+73097,77552
+73098,18770
+73099,52773
+73100,22746
+73101,20905
+73102,34733
+73103,79469
+73104,77185
+73105,41083
+73106,46620
+73107,46599,64412
+73108,50117
+73109,66997
+73110,18958
+73111,72066
+73112,31742
+73113,31742
+73114,30693
+73115,42387
+73116,53660
+73117,53660
+73118,45062
+73119,21572
+73120,79215
+73121,73412,21057
+73122,58088
+73123,45644
+73124,79371
+73125,78096
+73126,24244
+73127,80238
+73128,24726
+73129,71572
+73130,78238
+73131,79924
+73132,27609
+73133,81161
+73134,81161
+73135,77642
+73136,46901
+73137,81626
+73138,75258
+73139,34924
+73140,19994
+73141,69633
+73142,28591
+73143,78410
+73144,68787
+73145,45063
+73146,47369
+73147,59549
+73148,78096
+73149,71961
+73150,29368
+73151,24781
+73152,51928
+73153,74488
+73154,70987
+73155,77453
+73156,77453
+73157,33799
+73158,50173
+73159,73439
+73160,26106
+73161,28951
+73162,73161
+73163,73167,39449
+73164,32718
+73165,70033
+73166,73167
+73167,59194
+73168,61182
+73169,46599
+73170,55361
+73171,66786
+73172,53613
+73173,19560
+73174,59543
+73175,73161
+73176,20727
+73177,20690
+73178,44609
+73179,65946
+73180,60534
+73181,58004
+73182,24215
+73183,65929
+73184,60598
+73185,57934
+73186,29691
+73187,55025
+73188,24777
+73189,20120
+73190,65039
+73191,56227
+73192,21848
+73193,78753
+73194,70568
+73195,79282
+73196,76620
+73197,25256
+73198,31058
+73199,58745
+73200,58158
+73201,46553
+73202,19935,73200
+73203,53701
+73204,50117
+73205,45813
+73206,45813
+73207,35557
+73208,53628
+73209,57570
+73210,39811
+73211,22128
+73212,73211
+73213,62145
+73214,19698
+73215,67959
+73216,41110
+73217,54562
+73218,51411
+73219,26656,53127
+73220,72435
+73221,47655
+73222,47655
+73223,63819
+73224,51120
+73225,29390
+73226,36404
+73227,61415
+73228,50123
+73229,23232
+73230,79701
+73231,34837
+73232,72248
+73233,53291
+73234,60869
+73235,26302
+73236,40572
+73237,45813
+73238,81161
+73239,34602
+73240,32713
+73241,52904
+73242,21959
+73243,68996
+73244,39988
+73245,63060
+73246,56179
+73247,48037
+73248,22428
+73249,66066
+73250,49299
+73251,60216
+73252,65956
+73253,72256
+73254,24704
+73255,81722
+73256,60216
+73257,31241
+73258,31245
+73259,70183
+73260,35449
+73261,78866
+73262,33717
+73263,60534
+73264,21200
+73265,58803
+73266,56399
+73267,27021
+73268,59004
+73269,61732
+73270,69887
+73271,69887
+73272,36602
+73273,56179
+73274,21612
+73275,48156
+73276,48251
+73277,57929
+73278,58776
+73279,26415
+73280,30153
+73281,58144
+73282,24874
+73283,18854
+73284,77374
+73285,44794
+73286,56480
+73287,64921
+73288,41646
+73289,25202
+73290,76248
+73291,41877
+73292,82020
+73293,43766
+73294,45668
+73295,48870
+73296,73291
+73297,49263
+73298,37128
+73299,72791
+73300,65627
+73301,52596
+73302,58797
+73303,31179
+73304,66157
+73305,34327
+73306,61260
+73307,19698
+73308,35793
+73309,28028
+73310,47655
+73311,19699
+73312,74488
+73313,36496
+73314,63775
+73315,58776
+73316,69400
+73317,42228,40129
+73318,28927
+73319,38260
+73320,73222
+73321,54872
+73322,65974
+73323,27326
+73324,61260
+73325,52312
+73326,45035
+73327,72791
+73328,40752
+73329,45035,74488
+73330,53958
+73331,38218
+73332,41959
+73333,63850
+73334,27405
+73335,64414
+73336,68831
+73337,30937
+73338,76105
+73339,26103
+73340,35852
+73341,38629
+73342,47931
+73343,49014
+73344,30836
+73345,58023
+73346,23897
+73347,60534
+73348,62425
+73349,61202
+73350,67474
+73351,74903
+73352,77308
+73353,44511
+73354,41279
+73355,19657
+73356,74117
+73357,25595
+73358,36044
+73359,40292
+73360,48803
+73361,73360
+73362,53761
+73363,58587
+73364,63316
+73365,49962
+73366,49969
+73367,46675
+73368,63494
+73369,3720
+73370,74478
+73371,73352
+73372,39375
+73373,60810
+73374,65915
+73375,62266
+73376,73476
+73377,41444
+73378,41444
+73379,48414
+73380,48770
+73381,37712
+73382,65037
+73383,81873
+73384,57261
+73385,44052
+73386,29349
+73387,19438
+73388,64846
+73389,78625
+73390,28475
+73391,53648
+73392,50117
+73393,40752
+73394,68128
+73395,77444
+73396,61259
+73397,58200
+73398,21124
+73399,47812
+73400,21236
+73401,48590
+73402,38699
+73403,74165
+73404,79189
+73405,19051
+73406,42225
+73407,48126
+73408,33178
+73409,71311
+73410,22414
+73411,30349
+73412,26302
+73413,60097
+73414,68551
+73415,25700
+73416,25809
+73417,32645
+73418,32642
+73419,69887
+73420,53286
+73421,45813
+73422,60899
+73423,39638
+73424,12328
+73425,45813
+73426,68867
+73427,64182
+73428,68363
+73429,48318
+73430,22116
+73431,57421
+73432,72802
+73433,28312
+73434,53332
+73435,44167
+73436,32150
+73437,31964
+73438,73907
+73439,68691
+73440,22721
+73441,47816
+73442,62054
+73443,67717
+73444,60216
+73445,77045
+73446,49971
+73447,37824
+73448,73032
+73449,19171
+73450,34900
+73451,57423
+73452,58107
+73453,58107
+73454,56585
+73455,39475
+73456,79749
+73457,73445
+73458,61402
+73459,49997
+73460,61400
+73461,37802
+73462,76682
+73463,31118
+73464,30659
+73465,66193
+73466,79866
+73467,28167
+73468,53731
+73469,31616
+73470,21474
+73471,56180
+73472,19004
+73473,62994
+73474,63187
+73475,34646
+73476,66953
+73477,79953
+73478,43136
+73479,21875
+73480,35793
+73481,22053
+73482,69682
+73483,35793
+73484,28236
+73485,29936
+73486,73489
+73487,36101
+73488,60321
+73489,70214
+73490,11714
+73491,81227
+73492,22667
+73493,59450
+73494,73488
+73495,39801
+73496,25302
+73497,61486
+73498,51160
+73499,2623
+73500,36505
+73501,23285
+73502,19959
+73503,70549
+73504,32497
+73505,73669
+73506,45546
+73507,49888
+73508,25194
+73509,28982
+73510,61343
+73511,66238
+73512,40927
+73513,28616
+73514,73464
+73515,59431
+73516,18740
+73517,57934
+73518,62149
+73519,44697
+73520,58023
+73521,55348
+73522,22112
+73523,30554
+73524,44437
+73525,33922
+73526,61713
+73527,52956
+73528,34652
+73529,80485
+73530,20727
+73531,57874
+73532,28438
+73533,39088
+73534,61713
+73535,25393
+73536,45067
+73537,51464
+73538,60076
+73539,60870
+73540,61709
+73541,64927
+73542,79341
+73543,79905
+73544,68808
+73545,45009
+73546,34924
+73547,33452
+73548,69544
+73549,48251
+73550,34349
+73551,56459
+73552,37237
+73553,42358
+73554,40021
+73555,28546
+73556,46090
+73557,42225
+73558,69880
+73559,41226
+73560,51475
+73561,22163
+73562,37527
+73563,64175
+73564,40563
+73565,60216
+73566,48735
+73567,81752
+73568,62409
+73569,19811
+73570,35626
+73571,31555
+73572,45075
+73573,50789
+73574,80789
+73575,22901
+73576,39676
+73577,46096
+73578,30920
+73579,59431
+73580,36434
+73581,77108
+73582,26731
+73583,48478
+73584,80164
+73585,68280
+73586,61238
+73587,54435
+73588,43110
+73589,69544
+73590,27991
+73591,61154
+73592,31241
+73593,63193
+73594,67746
+73595,67750
+73596,43113
+73597,50649
+73598,50649
+73599,74051
+73600,73598
+73601,73598
+73602,73598
+73603,73598
+73604,29936
+73605,61253
+73606,78096
+73607,41165
+73608,72018
+73609,19629
+73610,61809
+73611,34811
+73612,45813
+73613,23946
+73614,24364
+73615,43766
+73616,70033
+73617,33726
+73618,68025
+73619,45699
+73620,47327
+73621,49118
+73622,44384
+73623,21398
+73624,27514
+73625,38555
+73626,23839
+73627,38555
+73628,50459
+73629,36044
+73630,40489
+73631,28600
+73632,74133
+73633,38722,57167
+73634,55346
+73635,32507
+73636,25113
+73637,63376
+73638,31469
+73639,45670
+73640,23644
+73641,51319
+73642,45408
+73643,40862
+73644,40745
+73645,77357
+73646,38042
+73647,57982
+73648,56371
+73649,76334
+73650,76334
+73651,19305
+73652,73664
+73653,29688
+73654,29928
+73655,32806
+73656,66702
+73657,30557
+73658,21224
+73659,56009,70731
+73660,56009
+73661,56009
+73662,70203
+73663,70013
+73664,78909
+73665,68990
+73666,50273
+73667,63405
+73668,63392
+73669,63314
+73670,34924
+73671,77452
+73672,47871
+73673,66860
+73674,40752
+73675,71637,48077
+73676,38475
+73677,38053
+73678,38053
+73679,45748
+73680,19191
+73681,20977
+73682,20977
+73683,41103
+73684,63386
+73685,37699
+73686,35156
+73687,38035
+73688,18913
+73689,21882
+73690,19656
+73691,38766
+73692,73544
+73693,38900
+73694,36800
+73695,37328
+73696,38699
+73697,22902
+73698,77985
+73699,69118
+73700,65509
+73701,41444
+73702,53648
+73703,51738
+73704,22128
+73705,59379
+73706,38768
+73707,59497
+73708,77059
+73709,44347
+73710,32222
+73711,55687
+73712,55685
+73713,69573
+73714,47655
+73715,76981
+73716,31468
+73717,32975
+73718,19458
+73719,59775
+73720,74939
+73721,56832
+73722,31353
+73723,22112
+73724,61078
+73725,68355
+73726,49266
+73727,39480
+73728,50701
+73729,79963
+73730,82151
+73731,31368
+73732,58367
+73733,22032
+73734,24977
+73735,56957
+73736,53648
+73737,39767
+73738,69197
+73739,30391
+73740,31991
+73741,37527
+73742,69235
+73743,31991
+73744,44171
+73745,28747
+73746,73738,50359
+73747,58081
+73748,64225
+73749,68802
+73750,54872
+73751,56294
+73752,55758
+73753,50139
+73754,61395
+73755,81626
+73756,25620
+73757,76620
+73758,38477
+73759,33640
+73760,59305
+73761,52312
+73762,21745
+73763,57169
+73764,19967
+73765,39381
+73766,51316
+73767,53952
+73768,54553
+73769,54561
+73770,54606
+73771,61709
+73772,41642
+73773,23712
+73774,22669
+73775,49797
+73776,53205
+73777,24726
+73778,68552
+73779,68551
+73780,26710
+73781,31975
+73782,36618
+73783,42523
+73784,47116
+73785,49767
+73786,53217
+73787,55563
+73788,55586
+73789,70688
+73790,69308
+73791,53206
+73792,31058
+73793,81626
+73794,60076
+73795,57627
+73796,22122
+73797,68285
+73798,68352
+73799,57298
+73800,77146
+73801,53175
+73802,51928
+73803,55348
+73804,22107
+73805,52957
+73806,77147
+73807,61263
+73808,61263
+73809,20760
+73810,25862
+73811,42023
+73812,48505
+73813,52052
+73814,25574
+73815,34305
+73816,60076
+73817,35103
+73818,73476
+73819,54562
+73820,54082
+73821,73820
+73822,73573,69573
+73823,43517
+73824,70033
+73825,72877
+73826,54964
+73827,42429
+73828,42514
+73829,48875
+73830,74488
+73831,73081
+73832,76146
+73833,51566
+73834,76146
+73835,30267
+73836,31547
+73837,25115
+73838,21745
+73839,59497
+73840,37237
+73841,22122
+73842,60216
+73843,71686
+73844,25620
+73845,42003
+73846,58229
+73847,61264,20038
+73848,61260
+73849,65202
+73850,65095
+73851,55984
+73852,23579
+73853,66066
+73854,48697
+73855,61302
+73856,52904
+73857,34199
+73858,61709
+73859,72805
+73860,39367
+73861,60168
+73862,65594
+73863,37954
+73864,28234
+73865,64978
+73866,30412
+73867,26298
+73868,62145
+73869,81647
+73870,81647
+73871,21112
+73872,31816
+73873,35236
+73874,53863
+73875,55756
+73876,31153
+73877,66953
+73878,50769
+73879,76664
+73880,29658
+73881,48157
+73882,49648
+73883,64142
+73884,57333
+73885,60238
+73886,56941
+73887,35557
+73888,46598
+73889,35557
+73890,25391
+73891,35557
+73892,35557
+73893,29423
+73894,31391
+73895,64142
+73896,58739
+73897,31200
+73898,28475
+73899,57242
+73900,34686
+73901,34357
+73902,25598
+73903,59775
+73904,57407
+73905,25115
+73906,62187
+73907,61260
+73908,58069
+73909,27091
+73910,80512
+73911,74575
+73912,20743
+73913,39511
+73914,70026
+73915,21978
+73916,19200
+73917,70399
+73918,47740
+73919,54774
+73920,43736
+73921,73669
+73922,66066
+73923,42154
+73924,59849
+73925,48077
+73926,65956
+73927,35388
+73928,49797
+73929,63064
+73930,69634
+73931,73929
+73932,21765
+73933,18831
+73934,72853
+73935,63064
+73936,79282
+73937,73926
+73938,34924
+73939,76981
+73940,70525
+73941,57408
+73942,28317
+73943,70033
+73944,79628
+73945,43848
+73946,21888
+73947,48661
+73948,75974
+73949,37828
+73950,58955
+73951,50426
+73952,30680
+73953,71837
+73954,54953
+73955,81601
+73956,75510
+73957,21703
+73958,79282
+73959,18791
+73960,30693
+73961,27405
+73962,54544
+73963,30275
+73964,50340
+73965,31690
+73966,31702
+73967,71315
+73968,48243
+73969,33889
+73970,29737,7764
+73971,35404
+73972,35855
+73973,77277
+73974,35882
+73975,57066
+73976,43110
+73977,66151
+73978,37191
+73979,27488
+73980,75510
+73981,39936
+73982,75510
+73983,35243
+73984,21963
+73985,44437
+73986,44438
+73987,45406
+73988,75902
+73989,31546
+73990,60216
+73991,76251
+73992,54044
+73993,60450
+73994,64142
+73995,48474
+73996,49362
+73997,65698
+73998,31457
+73999,55158
+74000,75510
+74001,50773
+74002,51242
+74003,42246
+74004,77452
+74005,28530
+74006,56803
+74007,67641
+74008,79282
+74009,52399
+74010,52504
+74011,74019
+74012,61078
+74013,77081
+74014,24977
+74015,67641
+74016,57066
+74017,70466
+74018,21200
+74019,80185
+74020,80716
+74021,31245
+74022,81798
+74023,19737
+74024,31642
+74025,44440
+74026,54044
+74027,57319
+74028,40986
+74029,21272
+74030,31447
+74031,70399
+74032,18740
+74033,75510
+74034,20756
+74035,20756
+74036,21922
+74037,29664
+74038,48107
+74039,31427
+74040,31429
+74041,34620
+74042,43913
+74043,74027
+74044,63497
+74045,76005
+74046,74044
+74047,59307
+74048,75510
+74049,81770
+74050,81770
+74051,62045
+74052,74090
+74053,36089
+74054,74500
+74055,33488
+74056,28591
+74057,59645
+74058,19732
+74059,31730
+74060,45063
+74061,62600
+74062,80175
+74063,68808
+74064,31245
+74065,74038
+74066,69330
+74067,70033
+74068,30937
+74069,50824
+74070,55026
+74071,36089
+74072,43964
+74073,74602
+74074,23780
+74075,74492
+74076,39381
+74077,71446
+74078,53477
+74079,75510
+74080,60600
+74081,53519
+74082,53519,59307
+74083,54788
+74084,56492
+74085,53463
+74086,81578
+74087,73001
+74088,38222
+74089,22032
+74090,28529
+74091,79175
+74092,29623
+74093,74082
+74094,74535
+74095,73598
+74096,47956
+74097,73738
+74098,29652
+74099,75019
+74100,54753
+74101,57164
+74102,56492
+74103,20977
+74104,76776
+74105,77482
+74106,35158
+74107,57066
+74108,31766
+74109,74274
+74110,26937
+74111,26936
+74112,34209
+74113,21529
+74114,57187
+74115,77630
+74116,29771
+74117,66042
+74118,66040
+74119,73967
+74120,74072
+74121,63494
+74122,58556
+74123,21742
+74124,77358
+74125,75913
+74126,76881
+74127,77357
+74128,52168
+74129,74088
+74130,63392
+74131,45096
+74132,22118
+74133,69235
+74134,56179
+74135,58106
+74136,19131
+74137,74088
+74138,57585
+74139,59812
+74140,27488
+74141,55688
+74142,65998
+74143,35557
+74144,34928
+74145,21238
+74146,79211
+74147,22248
+74148,69845
+74149,36498
+74150,41588
+74151,58144
+74152,28022
+74153,63791
+74154,31598
+74155,60784
+74156,82056
+74157,39572
+74158,65509
+74159,53717
+74160,5301
+74161,35432,61262
+74162,62757
+74163,34924
+74164,33395,48001
+74165,63775
+74166,73451
+74167,23391
+74168,58558
+74169,34038,70785
+74170,63988
+74171,53717
+74172,79200
+74173,23730
+74174,50784
+74175,39049
+74176,61198
+74177,37178
+74178,63677
+74179,37873
+74180,58779
+74181,54724
+74182,80510
+74183,64142
+74184,19574,37825
+74185,19576
+74186,47283
+74187,49769
+74188,24379
+74189,74191,39623
+74190,23790
+74191,19497
+74192,74795
+74193,74279
+74194,23742
+74195,23741
+74196,35558
+74197,27167
+74198,31853
+74199,74797
+74200,53072
+74201,67559
+74202,65496
+74203,44193
+74204,37175
+74205,72399
+74206,75013
+74207,36506
+74208,44758
+74209,23946
+74210,27175
+74211,43907
+74212,74800
+74213,74192,51833
+74214,27167
+74215,58215
+74216,74610
+74217,47388
+74218,46042
+74219,60259
+74220,63344
+74221,49763
+74222,49769
+74223,75955
+74224,25221
+74225,54760
+74226,19737
+74227,61699
+74228,72663
+74229,26602
+74230,38021
+74231,61402
+74232,42225
+74233,64142
+74234,69331
+74235,55756
+74236,21112
+74237,39049
+74238,19395
+74239,35557
+74240,45813
+74241,40352
+74242,20973
+74243,74242
+74244,74242
+74245,74242
+74246,74242
+74247,74242
+74248,19069
+74249,74242
+74250,67675
+74251,31058
+74252,74242
+74253,67675
+74254,19069
+74255,20995
+74256,28780
+74257,35319,42246,61828
+74258,40820,44221
+74259,58616
+74260,8184
+74261,56950
+74262,75732
+74263,66010
+74264,47477
+74265,46602
+74266,30129
+74267,26669
+74268,54553
+74269,67277
+74270,79619
+74271,32456
+74272,46740
+74273,69414
+74274,64160
+74275,21905
+74276,30391
+74277,81004
+74278,81482
+74279,70033
+74280,65908
+74281,72983
+74282,49360
+74283,58162
+74284,21529
+74285,74281
+74286,76662
+74287,68679
+74288,70033
+74289,50856
+74290,32461
+74291,47001
+74292,67999
+74293,68001
+74294,68254
+74295,71552
+74296,72635
+74297,72637
+74298,76114
+74299,75264
+74300,79028
+74301,53761
+74302,58102
+74303,81770
+74304,43724
+74305,81751,72420
+74306,66616
+74307,81750
+74308,66025
+74309,80640
+74310,74165
+74311,68030
+74312,47673
+74313,72892
+74314,72892
+74315,23393
+74316,66696
+74317,34152
+74318,42388
+74319,34389
+74320,66953
+74321,61092
+74322,34362
+74323,72575
+74324,75518
+74325,69464
+74326,23792
+74327,47432
+74328,23537
+74329,25285,74349
+74330,38287,40251
+74331,74354
+74332,34771
+74333,26076
+74334,49950
+74335,27625
+74336,76680
+74337,79052
+74338,36496
+74339,36434
+74340,73884
+74341,38537
+74342,41588
+74343,60032
+74344,40752
+74345,79261
+74346,37183
+74347,31794
+74348,72027
+74349,45260
+74350,35802
+74351,48390
+74352,42181
+74353,53970
+74354,51319
+74355,51318
+74356,81161
+74357,78482
+74358,22053
+74359,60126
+74360,48030
+74361,66939
+74362,32776
+74363,22053
+74364,60126
+74365,46767
+74366,72451
+74367,64231,77509
+74368,45560
+74369,42225
+74370,59559
+74371,25598
+74372,35620
+74373,22640
+74374,74738
+74375,57570
+74376,31084
+74377,75510
+74378,29621
+74379,52731
+74380,30417
+74381,37402
+74382,31464
+74383,37237
+74384,75510
+74385,23966
+74386,39703
+74387,39703
+74388,38122
+74389,54314
+74390,75766
+74391,69514
+74392,34670
+74393,21218
+74394,74537
+74395,72892
+74396,48169
+74397,64513
+74398,56484
+74399,48077
+74400,27581
+74401,65758
+74402,50701
+74403,20265
+74404,28327
+74405,28339
+74406,28238
+74407,31428
+74408,32527
+74409,38122
+74410,50097
+74411,50101
+74412,54014
+74413,57957
+74414,61220
+74415,63752
+74416,57514
+74417,18721
+74418,76068
+74419,76490
+74420,79305
+74421,21638
+74422,19462
+74423,64143
+74424,37275
+74425,62495
+74426,19353,19472
+74427,44333
+74428,57944
+74429,53018
+74430,55324
+74431,51642
+74432,28054
+74433,23790
+74434,78741
+74435,72892
+74436,60216
+74437,19231
+74438,75510
+74439,58616
+74440,20782
+74441,38053
+74442,75510
+74443,34643
+74444,61154
+74445,61154
+74446,28591
+74447,48316
+74448,48315
+74449,65896
+74450,23790
+74451,73598
+74452,50359
+74453,59338
+74454,73838
+74455,68289
+74456,57625
+74457,77482
+74458,57066
+74459,77076
+74460,45096
+74461,52920
+74462,74402
+74463,63187
+74464,67161
+74465,71439
+74466,67054
+74467,55686
+74468,71314
+74469,53593
+74470,26765
+74471,37042
+74472,65896
+74473,80037
+74474,47869
+74475,71317
+74476,38770
+74477,38021
+74478,26604
+74479,47908
+74480,37120
+74481,37124
+74482,53648
+74483,33361
+74484,59542
+74485,30682
+74486,48148
+74487,74502
+74488,34924
+74489,19228
+74490,19755
+74491,66086
+74492,66086
+74493,57932
+74494,19228
+74495,30531
+74496,73367
+74497,62810
+74498,59645
+74499,56485
+74500,19497
+74501,40150
+74502,73838
+74503,77185
+74504,31419
+74505,53717
+74506,36602
+74507,44474
+74508,62794
+74509,66153
+74510,40150
+74511,66151
+74512,37405
+74513,42429
+74514,38881
+74515,48077
+74516,66508
+74517,79282
+74518,79282
+74519,23790
+74520,19497
+74521,21770
+74522,18844
+74523,32527
+74524,24090
+74525,68809
+74526,54953
+74527,28616
+74528,30062
+74529,78188
+74530,31520
+74531,73042
+74532,28357
+74533,80438
+74534,27876
+74535,25495
+74536,21840
+74537,21745
+74538,50649
+74539,44567
+74540,69754
+74541,28803
+74542,41182
+74543,42358
+74544,70609
+74545,52691
+74546,22586
+74547,56231
+74548,80185
+74549,60603
+74550,37277
+74551,69887
+74552,25017
+74553,25046
+74554,41816
+74555,74812
+74556,80360
+74557,60032
+74558,47871
+74559,74512
+74560,35917
+74561,49997
+74562,60032
+74563,53710
+74564,66953
+74565,73185,31688
+74566,36451
+74567,53701
+74568,49945,74567
+74569,54163
+74570,73723
+74571,53754
+74572,56009
+74573,79485
+74574,21978
+74575,28530
+74576,35697
+74577,22112
+74578,27393
+74579,21770
+74580,21765
+74581,61422
+74582,61422
+74583,34434
+74584,60216
+74585,27688
+74586,72834
+74587,55324
+74588,79420
+74589,47833
+74590,44140
+74591,61763
+74592,74591
+74593,29879
+74594,38601
+74595,51523
+74596,53621
+74597,48408
+74598,73010
+74599,37908
+74600,74597
+74601,31668
+74602,20771
+74603,56179
+74604,60216
+74605,60216
+74606,20743
+74607,78647
+74608,44580
+74609,15725
+74610,31245
+74611,35557
+74612,23019
+74613,44407
+74614,60216
+74615,60598
+74616,21304
+74617,20983
+74618,36238
+74619,18978
+74620,54825
+74621,74494
+74622,48645
+74623,53656
+74624,34071
+74625,25920
+74626,60121
+74627,22907
+74628,46707
+74629,35791
+74630,63314
+74631,59762
+74632,26010
+74633,74489
+74634,71686
+74635,74478
+74636,14871
+74637,74222
+74638,76345
+74639,68641
+74640,49299
+74641,69401
+74642,72960
+74643,36072
+74644,36035
+74645,41516
+74646,47655
+74647,29692
+74648,68485
+74649,26411
+74650,31553
+74651,42225
+74652,79081
+74653,26416
+74654,24781
+74655,27176
+74656,59775
+74657,49032
+74658,77979
+74659,58287
+74660,31598
+74661,75435
+74662,49079
+74663,49903
+74664,7653
+74665,70524
+74666,80713
+74667,21814
+74668,66418
+74669,24302
+74670,20424
+74671,52121
+74672,28864
+74673,32345
+74674,34959
+74675,82167
+74676,652
+74677,38477
+74678,46662
+74679,49538
+74680,54467
+74681,70033
+74682,60899
+74683,81505
+74684,11867
+74685,74344
+74686,80927
+74687,81176
+74688,26457
+74689,21358
+74690,39049
+74691,36267
+74692,35822
+74693,58088
+74694,60071
+74695,35609
+74696,44437
+74697,80438
+74698,34470
+74699,37623,76043
+74700,24874
+74701,60744
+74702,71837
+74703,59543
+74704,22907
+74705,32578
+74706,47655
+74707,62409
+74708,24659
+74709,30891
+74710,31228
+74711,22684
+74712,36713
+74713,38220
+74714,38740
+74715,77985
+74716,42225
+74717,22901
+74718,22901
+74719,28168
+74720,34924
+74721,42225
+74722,43313
+74723,20745
+74724,48084
+74725,63738
+74726,39122
+74727,55348
+74728,68342
+74729,57296
+74730,68745
+74731,37712
+74732,75665
+74733,29691
+74734,52159
+74735,33725
+74736,75436
+74737,61251
+74738,80978
+74739,60936
+74740,40752
+74741,52658
+74742,70033
+74743,24302
+74744,46610
+74745,59451
+74746,59452
+74747,27840
+74748,28822
+74749,28821
+74750,45812
+74751,45813
+74752,29344
+74753,45813
+74754,32050
+74755,32051
+74756,45813
+74757,70033
+74758,53275
+74759,41371
+74760,70033
+74761,44609
+74762,44627
+74763,51659
+74764,50939,42680
+74765,58204
+74766,53830
+74767,57078
+74768,79261
+74769,58040
+74770,58041
+74771,79608
+74772,59978
+74773,27368
+74774,70033
+74775,60688
+74776,66977
+74777,55236
+74778,26409
+74779,67791
+74780,68036
+74781,40752
+74782,40752
+74783,21236
+74784,45813
+74785,79407
+74786,74067
+74787,79640
+74788,79640
+74789,45812
+74790,23675
+74791,81694
+74792,79189
+74793,67001
+74794,68685
+74795,40564
+74796,43744
+74797,52211
+74798,20691
+74799,74735
+74800,75439
+74801,19539
+74802,33475
+74803,33476
+74804,56164
+74805,32882
+74806,80438
+74807,37931,74939
+74808,78238
+74809,21161
+74810,74809
+74811,22032
+74812,77585
+74813,38984
+74814,80360
+74815,32642
+74816,53422
+74817,61947
+74818,49729
+74819,53757
+74820,61979,22035
+74821,73802
+74822,74823
+74823,42225
+74824,41469
+74825,34118
+74826,38529
+74827,48151
+74828,45830
+74829,19202
+74830,53648,61415
+74831,24874
+74832,32457
+74833,49158
+74834,55347
+74835,36101
+74836,79908
+74837,22032
+74838,51180
+74839,28398
+74840,73805
+74841,71686
+74842,44826
+74843,64632
+74844,48414
+74845,23309
+74846,31743
+74847,28529
+74848,24377
+74849,23420
+74850,51929
+74851,58969
+74852,61609
+74853,28267
+74854,57991
+74855,74847
+74856,57945
+74857,32492
+74858,28438
+74859,58966
+74860,74824
+74861,54813
+74862,73222
+74863,41100
+74864,34732
+74865,43409
+74866,56832
+74867,80512
+74868,68119
+74869,79608
+74870,27176
+74871,40965
+74872,39676
+74873,44013
+74874,75427
+74875,45337
+74876,67703
+74877,68330
+74878,70627
+74879,33646
+74880,50766
+74881,63809
+74882,53072
+74883,81482
+74884,39925
+74885,19683
+74886,57387
+74887,40551
+74888,68474
+74889,35879
+74890,50367
+74891,50369
+74892,36496
+74893,34808
+74894,82111
+74895,34226
+74896,51991
+74897,81462
+74898,47503
+74899,72271
+74900,54562
+74901,54562
+74902,55854
+74903,70214
+74904,65930
+74905,47437
+74906,51979
+74907,51991
+74908,21770
+74909,74903
+74910,62456
+74911,21765
+74912,48634
+74913,53607
+74914,39934
+74915,57725
+74916,22747
+74917,71949
+74918,18728
+74919,56456
+74920,58282
+74921,30891
+74922,74500
+74923,19565
+74924,39578
+74925,47814
+74926,27501
+74927,73726
+74928,57471
+74929,55756
+74930,31041
+74931,71588
+74932,58081
+74933,32718
+74934,19338
+74935,58162
+74936,65892
+74937,22127
+74938,31307
+74939,38564
+74940,47944
+74941,61145
+74942,49441
+74943,65958
+74944,58162
+74945,81578
+74946,33612
+74947,34924
+74948,75018
+74949,51566
+74950,75764
+74951,31900
+74952,19368
+74953,37404
+74954,37388
+74955,57927
+74956,53624
+74957,33612
+74958,66436
+74959,55734
+74960,49162
+74961,21738
+74962,78684
+74963,41940
+74964,33678
+74965,24354
+74966,19657
+74967,61788
+74968,56588
+74969,58175
+74970,58169
+74971,69012
+74972,26602
+74973,74939
+74974,31015
+74975,77945
+74976,19338
+74977,51562
+74978,28790
+74979,76135
+74980,36602
+74981,56179
+74982,69106
+74983,54098
+74984,58162
+74985,32363
+74986,81578
+74987,51148
+74988,69027
+74989,68793
+74990,49299
+74991,53848
+74992,48126
+74993,69331
+74994,73746
+74995,75019
+74996,43908
+74997,73835
+74998,63187
+74999,71441
+75000,54076
+75001,28790
+75002,65057
+75003,48474
+75004,37481,49697
+75005,31058
+75006,33259
+75007,66052,61874
+75008,42518
+75009,79328
+75010,70091
+75011,53701
+75012,73837
+75013,74795
+75014,53519
+75015,61203
+75016,25115
+75017,51771
+75018,48423
+75019,44437
+75020,54153
+75021,74462,31126
+75022,26975
+75023,29845
+75024,37478
+75025,35388
+75026,48403
+75027,53619
+75028,75027
+75029,75027
+75030,63187
+75031,68280
+75032,62456
+75033,58170
+75034,29432
+75035,52375
+75036,20531
+75037,20534
+75038,63765
+75039,45492
+75040,24835
+75041,60603
+75042,53288
+75043,73762
+75044,49683
+75045,78188
+75046,46721
+75047,27368
+75048,67594
+75049,36047
+75050,36047
+75051,22096
+75052,56539
+75053,71352
+75054,55760
+75055,42351
+75056,41917
+75057,41917
+75058,21622
+75059,60899
+75060,58740
+75061,75057
+75062,53940
+75063,42093
+75064,49945,33532
+75065,50272
+75066,51535
+75067,58734
+75068,63569
+75069,29426
+75070,31795
+75071,75063
+75072,63569
+75073,81251
+75074,79572
+75075,21618
+75076,75066
+75077,41214
+75078,46050
+75079,35273
+75080,72399
+75081,31618
+75082,70710
+75083,26885
+75084,28438
+75085,81614
+75086,80145
+75087,56601
+75088,24021
+75089,48225
+75090,36619
+75091,40428
+75092,73439
+75093,54544
+75094,48791
+75095,48157
+75096,58181
+75097,40863
+75098,68285
+75099,43997
+75100,75101
+75101,53624
+75102,27519
+75103,79847
+75104,76132
+75105,23591
+75106,55984
+75107,67570
+75108,28533
+75109,44963
+75110,81626
+75111,51531
+75112,51532
+75113,41054
+75114,41055
+75115,35557
+75116,31239
+75117,28834,48894
+75118,31498
+75119,61203
+75120,48478
+75121,80164
+75122,61238
+75123,54435
+75124,63314
+75125,47852
+75126,71580
+75127,70987
+75128,79671
+75129,50459
+75130,25714
+75131,53288
+75132,80618
+75133,75353
+75134,45389
+75135,39049
+75136,64628
+75137,27167
+75138,50091
+75139,28954
+75140,77147
+75141,50091
+75142,40986
+75143,70033
+75144,60216
+75145,60216
+75146,63187
+75147,59475
+75148,1332
+75149,72503
+75150,81161
+75151,66304
+75152,63064
+75153,40985,72584
+75154,65039
+75155,63213
+75156,40623
+75157,40036
+75158,34199
+75159,42337
+75160,67069
+75161,22540
+75162,22542
+75163,41657
+75164,42337
+75165,36542
+75166,75842
+75167,50273
+75168,42228
+75169,28460
+75170,69408
+75171,29928
+75172,12341
+75173,77287
+75174,21225
+75175,60993
+75176,80387
+75177,19697
+75178,19145
+75179,74488
+75180,81193
+75181,37317
+75182,1736
+75183,40016
+75184,79963
+75185,34126
+75186,34924
+75187,76588
+75188,31179
+75189,52957
+75190,39218
+75191,66676
+75192,34613
+75193,24057
+75194,31775
+75195,26731
+75196,22122
+75197,75796
+75198,33488
+75199,24002
+75200,43556
+75201,18112
+75202,44538
+75203,67793
+75204,54562
+75205,76870
+75206,38807
+75207,19655
+75208,47760
+75209,29977
+75210,29977
+75211,29977
+75212,39318
+75213,35533
+75214,50815
+75215,43789
+75216,31795
+75217,26010
+75218,71699
+75219,71961
+75220,55499
+75221,61647
+75222,70549
+75223,27093
+75224,33364
+75225,46285
+75226,43672
+75227,52857
+75228,44013
+75229,57594
+75230,78598
+75231,56073
+75232,81925
+75233,44013
+75234,73017
+75235,20755
+75236,20755
+75237,77590
+75238,29744
+75239,29671
+75240,43107
+75241,27276
+75242,35557
+75243,35557
+75244,20899
+75245,12327
+75246,53226
+75247,23550
+75248,37179
+75249,70033
+75250,43138
+75251,10287
+75252,36619
+75253,41444
+75254,36619
+75255,77280
+75256,20762
+75257,39049
+75258,76981
+75259,61504
+75260,61504
+75261,57417
+75262,47177
+75263,51327
+75264,58287
+75265,23095
+75266,77641
+75267,61153
+75268,77350
+75269,58462
+75270,28140
+75271,68702
+75272,16463
+75273,29503
+75274,37179
+75275,31601
+75276,73537
+75277,77820
+75278,61211
+75279,52938
+75280,65386
+75281,52939
+75282,53463
+75283,63316
+75284,56176
+75285,60206
+75286,58088
+75287,41188
+75288,33793
+75289,22853
+75290,63987
+75291,54441,21576,77273
+75292,79469
+75293,31618
+75294,41556
+75295,29418
+75296,21576
+75297,51929
+75298,21475
+75299,41911
+75300,61343
+75301,69661
+75302,69782
+75303,61621
+75304,58803
+75305,47908
+75306,28616
+75307,73464
+75308,36505
+75309,71493
+75310,19867
+75311,32691
+75312,81647
+75313,60411
+75314,25087
+75315,77287
+75316,52168
+75317,31043
+75318,45813
+75319,45813
+75320,54562
+75321,77075
+75322,54082
+75323,14871
+75324,28509
+75325,61335
+75326,76981
+75327,77147
+75328,61504
+75329,33797
+75330,73157
+75331,80257
+75332,81746
+75333,23095
+75334,39049
+75335,40132
+75336,73762
+75337,65215
+75338,53624
+75339,27740
+75340,37479
+75341,53660
+75342,21361
+75343,37479
+75344,52627
+75345,72503
+75346,31820
+75347,56087
+75348,39961
+75349,52256
+75350,31030
+75351,45077
+75352,39049
+75353,40557
+75354,48077
+75355,70395
+75356,41022
+75357,63677
+75358,57523
+75359,53355
+75360,60216
+75361,81626
+75362,37047
+75363,51120
+75364,71686
+75365,66965
+75366,71749
+75367,26290
+75368,63662
+75369,61063
+75370,78014
+75371,33793
+75372,71311
+75373,29195
+75374,72153
+75375,21718
+75376,76691
+75377,36904
+75378,20118
+75379,79492
+75380,80612
+75381,32452
+75382,58144
+75383,72435
+75384,65481
+75385,77045
+75386,69754
+75387,71572
+75388,65295
+75389,30937
+75390,58144
+75391,38700
+75392,59615
+75393,59610
+75394,50215
+75395,72764
+75396,52415
+75397,66965
+75398,21777
+75399,66977
+75400,27502
+75401,81103
+75402,27266
+75403,71398
+75404,45812
+75405,21688
+75406,34398
+75407,25256
+75408,62884
+75409,48126
+75410,70569
+75411,60733
+75412,59497
+75413,39049
+75414,33177
+75415,55221,75419
+75416,67957
+75417,47107
+75418,75411
+75419,67675
+75420,45813
+75421,31417
+75422,31417
+75423,78698
+75424,54440
+75425,74462
+75426,75425
+75427,19421
+75428,45813
+75429,45813
+75430,43987
+75431,21568
+75432,38793
+75433,35526
+75434,54862,38933
+75435,70987
+75436,69106
+75437,69123
+75438,38168
+75439,63314
+75440,28807
+75441,37513
+75442,48038
+75443,32965
+75444,58818
+75445,67745
+75446,37042
+75447,21544
+75448,56325
+75449,35482
+75450,67819
+75451,43790
+75452,44083
+75453,36627,26290
+75454,34771
+75455,34197
+75456,51068
+75457,8945
+75458,4374
+75459,51030
+75460,26118
+75461,31058
+75462,81735
+75463,78075
+75464,65894
+75465,26298
+75466,51068
+75467,53098
+75468,31029
+75469,36932
+75470,58579
+75471,73574
+75472,51138
+75473,68831
+75474,47869
+75475,19462
+75476,21903
+75477,26470
+75478,54601
+75479,21905
+75480,75498
+75481,24143
+75482,30392
+75483,26470
+75484,34209
+75485,33498
+75486,38524
+75487,41221
+75488,32456
+75489,43816
+75490,50603
+75491,51154
+75492,51238
+75493,63185
+75494,64833
+75495,50875
+75496,34209
+75497,50889
+75498,81779
+75499,51155
+75500,47678
+75501,26470
+75502,33797
+75503,32691
+75504,21670
+75505,36542
+75506,54130
+75507,64949
+75508,57934
+75509,59610
+75510,24243
+75511,24249
+75512,45969
+75513,75031
+75514,27991
+75515,59643
+75516,55815
+75517,65109
+75518,24007
+75519,70033
+75520,53593
+75521,45812
+75522,24007
+75523,73554
+75524,75521
+75525,22684
+75526,49897
+75527,26409
+75528,69311
+75529,28345
+75530,28849
+75531,75076
+75532,42181
+75533,43828
+75534,72399
+75535,56046
+75536,59378
+75537,67001
+75538,75086
+75539,75057
+75540,77105
+75541,77600
+75542,78943
+75543,70038
+75544,26884
+75545,31853
+75546,31308
+75547,18839
+75548,37204
+75549,33851
+75550,18873
+75551,62145
+75552,37198
+75553,35922
+75554,38218
+75555,28358
+75556,75548
+75557,54153
+75558,75552
+75559,33353
+75560,31618
+75561,77641
+75562,81482
+75563,49671
+75564,36694
+75565,20751
+75566,78698
+75567,72421
+75568,37199
+75569,21930
+75570,36540
+75571,36542
+75572,31885
+75573,62266
+75574,69173
+75575,36570
+75576,42246,28796
+75577,69634
+75578,33830
+75579,36568
+75580,56073
+75581,78815
+75582,45107
+75583,45813
+75584,81626
+75585,19272
+75586,57896
+75587,34924
+75588,66132
+75589,61382
+75590,72399
+75591,31618
+75592,31115
+75593,75604
+75594,54082
+75595,60699,54441
+75596,20530
+75597,41325
+75598,49991
+75599,68236
+75600,69216
+75601,72959
+75602,34837
+75603,38807
+75604,70629
+75605,54153
+75606,54153
+75607,33793
+75608,49136
+75609,61792
+75610,38807
+75611,61796
+75612,52513,38218
+75613,21278
+75614,39324
+75615,37996
+75616,56253
+75617,35611
+75618,55252
+75619,61415
+75620,82066
+75621,36743
+75622,74488
+75623,59818,43693
+75624,70515
+75625,46096
+75626,76662
+75627,50439
+75628,43698
+75629,44474
+75630,18830
+75631,18834
+75632,52199
+75633,50231
+75634,51814
+75635,75634
+75636,56168
+75637,26009
+75638,26014
+75639,26298
+75640,37409
+75641,53731
+75642,30884
+75643,37721
+75644,31308
+75645,55499
+75646,63567
+75647,54043
+75648,21200
+75649,41221
+75650,49683
+75651,70033
+75652,57945
+75653,56871
+75654,70214
+75655,75641
+75656,63569
+75657,78238
+75658,69012
+75659,68285
+75660,53621
+75661,70224
+75662,56492
+75663,19497
+75664,60450
+75665,25290
+75666,30891
+75667,63567
+75668,37479
+75669,75641
+75670,37365
+75671,25367
+75672,78995
+75673,31795
+75674,75685
+75675,48671
+75676,49056
+75677,31444
+75678,57945
+75679,75658
+75680,61503
+75681,62187
+75682,36970
+75683,30884
+75684,78703
+75685,81350
+75686,27062
+75687,60534
+75688,60534
+75689,77493
+75690,60543
+75691,77521
+75692,66776
+75693,52653
+75694,44658
+75695,21670
+75696,76196
+75697,28596
+75698,38516
+75699,38517
+75700,26016
+75701,75642
+75702,78097
+75703,57747
+75704,75705
+75705,37479
+75706,55049
+75707,56595
+75708,26010
+75709,65099
+75710,65912
+75711,66953
+75712,72893
+75713,26018
+75714,77500
+75715,29054
+75716,22979
+75717,57573
+75718,48171
+75719,48210
+75720,31058
+75721,28780
+75722,29263
+75723,38053
+75724,37805
+75725,60393
+75726,60393
+75727,31825
+75728,77523
+75729,23925
+75730,81626
+75731,47477
+75732,39578
+75733,37328
+75734,80258
+75735,37690
+75736,19368
+75737,30568
+75738,66155,56185
+75739,64647
+75740,71579
+75741,41862,60604
+75742,56179
+75743,43864
+75744,68059,75027
+75745,78703
+75746,81247
+75747,73492
+75748,54867
+75749,39531
+75750,26298
+75751,61145
+75752,58040
+75753,58041
+75754,64831
+75755,55765
+75756,75763
+75757,21701
+75758,28333
+75759,25256
+75760,27252
+75761,44730
+75762,51856
+75763,63314
+75764,65691
+75765,69028
+75766,79282
+75767,70568
+75768,72289
+75769,47638
+75770,31444,50486
+75771,48247
+75772,72959
+75773,34402
+75774,34783
+75775,48148
+75776,60216
+75777,35557
+75778,50439
+75779,73232
+75780,72447
+75781,50439
+75782,46251
+75783,66040
+75784,59643
+75785,39375,75782
+75786,30391
+75787,33644
+75788,35678
+75789,35389
+75790,24021
+75791,27408
+75792,53736
+75793,25046
+75794,69744
+75795,27562
+75796,57556
+75797,57113
+75798,33134
+75799,47716
+75800,31058
+75801,33500
+75802,19548
+75803,58776
+75804,30964
+75805,48126
+75806,31447
+75807,61260
+75808,21113
+75809,66042
+75810,71938
+75811,17277
+75812,8921
+75813,24146
+75814,32530
+75815,22786
+75816,27078
+75817,64447
+75818,30009
+75819,32520
+75820,75805,38099
+75821,51058
+75822,53422
+75823,22032,61395
+75824,75823
+75825,64446
+75826,73805
+75827,63218
+75828,70426
+75829,35387
+75830,61075
+75831,53608
+75832,70428
+75833,29724
+75834,36619
+75835,68027
+75836,23340
+75837,75805,74992
+75838,30300
+75839,55984
+75840,25564
+75841,25555
+75842,48321
+75843,43911
+75844,50367
+75845,50507
+75846,53026
+75847,53624
+75848,53624
+75849,53624
+75850,22743
+75851,73683
+75852,73706
+75853,73551
+75854,31245
+75855,45388
+75856,79165
+75857,55686
+75858,75857
+75859,80542
+75860,69682
+75861,55314
+75862,50489
+75863,40473
+75864,27997
+75865,59818
+75866,44309
+75867,63064
+75868,41444
+75869,46492
+75870,64757
+75871,52773
+75872,40945
+75873,50885
+75874,75901
+75875,61260
+75876,69667
+75877,75860,51947
+75878,30349
+75879,51665
+75880,31115
+75881,31115
+75882,31115
+75883,78703
+75884,64831
+75885,19656
+75886,44474
+75887,37639
+75888,78160
+75889,21013,20182
+75890,21006
+75891,54082
+75892,64797
+75893,27233
+75894,20819
+75895,20690
+75896,69771
+75897,70568
+75898,75897
+75899,75897
+75900,35557
+75901,76664
+75902,31546
+75903,81578
+75904,64160
+75905,61655
+75906,56399
+75907,48445
+75908,31050
+75909,60216
+75910,48534
+75911,37479
+75912,31607
+75913,73001
+75914,37734
+75915,50802
+75916,72066
+75917,28539
+75918,37802
+75919,81578
+75920,37805
+75921,73015
+75922,23762
+75923,37802
+75924,48318
+75925,50456
+75926,47047
+75927,44719
+75928,36983
+75929,36983
+75930,67167
+75931,75078
+75932,67169
+75933,77277
+75934,40619
+75935,75120
+75936,78286
+75937,79793
+75938,71838
+75939,73112
+75940,61220
+75941,76672
+75942,46966
+75943,35557
+75944,71493
+75945,44516
+75946,25113
+75947,23773
+75948,58170
+75949,21473
+75950,43104
+75951,30225
+75952,47589
+75953,60216
+75954,75951
+75955,64490
+75956,74577,75954
+75957,28165
+75958,61788
+75959,77460
+75960,26393
+75961,39049,77184
+75962,38883
+75963,75009
+75964,44059
+75965,57987
+75966,61621
+75967,40859
+75968,75971
+75969,49513
+75970,34197
+75971,76596
+75972,33246
+75973,32580
+75974,53921
+75975,22122
+75976,22122
+75977,22507
+75978,22885
+75979,81647
+75980,50872
+75981,66739
+75982,36542
+75983,38218
+75984,53422
+75985,47948
+75986,38600
+75987,60847
+75988,64746
+75989,66837
+75990,66953
+75991,78096
+75992,65956
+75993,66412
+75994,76007
+75995,32830
+75996,78059
+75997,60216
+75998,75997
+75999,47015
+76000,66114
+76001,27239
+76002,21703
+76003,79282
+76004,81436
+76005,38562
+76006,21898
+76007,38563
+76008,48945
+76009,38601
+76010,38798
+76011,65579
+76012,52820,43707
+76013,20621
+76014,63424
+76015,31700
+76016,48077
+76017,21069
+76018,47574
+76019,74973
+76020,81920
+76021,31795
+76022,51068
+76023,22036
+76024,28586
+76025,19069
+76026,51881
+76027,79401
+76028,31058
+76029,32187
+76030,20973
+76031,21014
+76032,40825
+76033,81803
+76034,44908
+76035,61871
+76036,63570
+76037,29368
+76038,69221
+76039,31389,74973
+76040,79419
+76041,79432
+76042,57704
+76043,34771
+76044,72408
+76045,72409
+76046,6615
+76047,78097
+76048,56542
+76049,55121
+76050,58616
+76051,38836
+76052,59419
+76053,53516
+76054,53516
+76055,63187
+76056,37192
+76057,31109
+76058,25302
+76059,52497
+76060,39122
+76061,58939
+76062,32974
+76063,64144
+76064,55766
+76065,79746
+76066,75124
+76067,31547
+76068,79282
+76069,56492
+76070,47228,55091
+76071,68853,75885
+76072,54082
+76073,33210
+76074,61260
+76075,25496
+76076,31682
+76077,68280
+76078,70395
+76079,38362
+76080,9930
+76081,29488
+76082,62145
+76083,57559
+76084,76085
+76085,19091
+76086,19755
+76087,66945
+76088,44816
+76089,66939
+76090,39318
+76091,66942
+76092,81703
+76093,65715
+76094,45556,60391
+76095,80524
+76096,53183
+76097,39308
+76098,77973
+76099,35430
+76100,69444
+76101,35051
+76102,23774
+76103,76135
+76104,26298
+76105,30939
+76106,33442
+76107,51316
+76108,61381
+76109,65579
+76110,72729
+76111,76518
+76112,60074
+76113,63110
+76114,63123
+76115,68677
+76116,2336
+76117,69600
+76118,32580
+76119,21458
+76120,65754
+76121,23792
+76122,72931
+76123,78179
+76124,47388
+76125,20472
+76126,78179
+76127,61655
+76128,21477
+76129,61792
+76130,61789
+76131,76138
+76132,74597
+76133,35480
+76134,68230
+76135,35922
+76136,27539
+76137,50764
+76138,35480
+76139,75020
+76140,52999
+76141,26065
+76142,63348
+76143,47388
+76144,48474
+76145,31419
+76146,38813
+76147,23790
+76148,68289
+76149,68289
+76150,68289
+76151,68289
+76152,68289
+76153,23790
+76154,23792
+76155,75020
+76156,75954
+76157,48001
+76158,71573,29869
+76159,53716
+76160,38807
+76161,74943
+76162,53694
+76163,51894
+76164,37481
+76165,62694
+76166,62694
+76167,81617
+76168,81193
+76169,51434
+76170,38209
+76171,61830
+76172,62957
+76173,57144
+76174,58776
+76175,59338
+76176,33424
+76177,37676
+76178,37490
+76179,69050
+76180,21415
+76181,25202,41774
+76182,28066
+76183,28803
+76184,33394
+76185,76196
+76186,60612
+76187,76196
+76188,37417
+76189,43997
+76190,53701
+76191,76196
+76192,34987
+76193,53621,28776
+76194,47090
+76195,49440
+76196,53624
+76197,53621
+76198,41943
+76199,57144
+76200,76196
+76201,61311
+76202,69118
+76203,79041
+76204,61311
+76205,50649
+76206,65641
+76207,76186
+76208,76162
+76209,77961
+76210,67969
+76211,81592
+76212,62648
+76213,51068
+76214,25681
+76215,28054
+76216,80910
+76217,21006,79401
+76218,35815
+76219,58158
+76220,55677
+76221,70646
+76222,31235
+76223,53454
+76224,12331
+76225,21738
+76226,35254
+76227,31506
+76228,81052
+76229,32929
+76230,35565
+76231,51408
+76232,63426
+76233,69484
+76234,27274,31616
+76235,31618
+76236,20641
+76237,21060
+76238,41589
+76239,57077
+76240,60216
+76241,70526
+76242,39578
+76243,45096
+76244,72983
+76245,19768
+76246,18839
+76247,22164
+76248,38003
+76249,21745
+76250,19200
+76251,60600
+76252,63316
+76253,34415
+76254,21729
+76255,30937
+76256,48474
+76257,48474
+76258,46042
+76259,72971
+76260,31506
+76261,35254
+76262,69597
+76263,38475
+76264,76263
+76265,67675
+76266,19069
+76267,21025
+76268,23062,78076
+76269,52762
+76270,21025
+76271,52762
+76272,58158
+76273,64757
+76274,48662
+76275,52691
+76276,26496
+76277,40121
+76278,60216
+76279,23220
+76280,62142
+76281,48114
+76282,48640
+76283,35254
+76284,38382
+76285,69118
+76286,42387
+76287,11909
+76288,50623
+76289,21382
+76290,59380
+76291,60214
+76292,77264
+76293,77837
+76294,79354
+76295,36523
+76296,50439
+76297,64757
+76298,34093
+76299,76662
+76300,64757
+76301,50439
+76302,57066
+76303,80583
+76304,59070
+76305,78583
+76306,50789
+76307,19193
+76308,21097
+76309,52421
+76310,53716
+76311,72212
+76312,74973
+76313,79282
+76314,79429
+76315,28260
+76316,79282
+76317,47805
+76318,25115
+76319,25115
+76320,25115
+76321,54562
+76322,54082
+76323,76322
+76324,67323
+76325,70033
+76326,46929
+76327,45813
+76328,70557
+76329,19438
+76330,64409
+76331,20743
+76332,46620
+76333,46621
+76334,66727
+76335,31468
+76336,54562
+76337,23790
+76338,77374
+76339,50439
+76340,64757
+76341,25238
+76342,74818
+76343,58287
+76344,34272
+76345,31991
+76346,24726
+76347,60032
+76348,49059
+76349,80583
+76350,80164
+76351,34166
+76352,35188
+76353,55499
+76354,21214
+76355,67120
+76356,20079
+76357,38204
+76358,69744
+76359,80185
+76360,64453
+76361,35255
+76362,30758
+76363,23232
+76364,51435
+76365,26600
+76366,19840
+76367,78238
+76368,24209
+76369,29468
+76370,70033
+76371,73232
+76372,70928
+76373,31309
+76374,74846
+76375,64409
+76376,30300
+76377,69331
+76378,38366
+76379,69564
+76380,39373
+76381,69171
+76382,21474
+76383,23762
+76384,69106
+76385,51982
+76386,41842
+76387,48495
+76388,57927
+76389,74067
+76390,34647
+76391,47719
+76392,69860
+76393,38642
+76394,19467
+76395,76500
+76396,57897
+76397,59420
+76398,38920
+76399,78112
+76400,63426
+76401,27093
+76402,58776
+76403,63765
+76404,71686
+76405,35762
+76406,19718
+76407,74180
+76408,22351
+76409,18728
+76410,30019
+76411,24823
+76412,63921,22305
+76413,74939
+76414,57451
+76415,52469
+76416,60370
+76417,76162
+76418,60459
+76419,30020
+76420,57451
+76421,29915
+76422,28439
+76423,62145
+76424,72242
+76425,58416
+76426,57982
+76427,23653
+76428,42078
+76429,63363
+76430,55494
+76431,76429
+76432,80612
+76433,33464
+76434,19233
+76435,60216
+76436,34924
+76437,81626
+76438,71686
+76439,27148
+76440,70426
+76441,58287
+76442,76441
+76443,32975
+76444,23589
+76445,47818
+76446,76110
+76447,66838
+76448,55662
+76449,32926
+76450,54082
+76451,32578
+76452,40089
+76453,57060
+76454,46268
+76455,40100
+76456,40112
+76457,40115
+76458,48415
+76459,68448
+76460,63424
+76461,75106,59031
+76462,24874
+76463,71686
+76464,56832
+76465,30514
+76466,72271
+76467,51366
+76468,76464
+76469,56841
+76470,33340
+76471,64667
+76472,73481
+76473,71686
+76474,19097
+76475,24874
+76476,33075
+76477,33876
+76478,45813
+76479,45812
+76480,67826
+76481,79416
+76482,64031
+76483,60411
+76484,46553
+76485,37832
+76486,48838
+76487,27726
+76488,37832
+76489,46553
+76490,79282
+76491,18728
+76492,48126
+76493,20355
+76494,48838
+76495,46553
+76496,46553
+76497,76489
+76498,40759
+76499,77646
+76500,48318
+76501,48318
+76502,70033
+76503,71505
+76504,49221
+76505,50867
+76506,79282
+76507,70568
+76508,76507
+76509,76507
+76510,78362
+76511,53524
+76512,18896
+76513,71686
+76514,74067
+76515,28596
+76516,59020
+76517,74303
+76518,30657
+76519,21321
+76520,59411
+76521,69010
+76522,25330
+76523,36106
+76524,46251
+76525,64287
+76526,81223
+76527,39049
+76528,33519
+76529,77147
+76530,39962
+76531,30296
+76532,26457
+76533,70214
+76534,25022
+76535,76513
+76536,23284
+76537,76538
+76538,33425
+76539,73636
+76540,52999
+76541,80438,26899
+76542,80438
+76543,82151
+76544,28954
+76545,79175
+76546,60126
+76547,76664
+76548,68668
+76549,47948
+76550,30052
+76551,28546
+76552,58120
+76553,29695
+76554,65108
+76555,40752
+76556,38189
+76557,70962
+76558,31991
+76559,25620
+76560,23536
+76561,49222
+76562,64435
+76563,66859
+76564,60869
+76565,58558
+76566,66702
+76567,66985
+76568,50652
+76569,81626
+76570,45302
+76571,68697
+76572,60216
+76573,24084
+76574,23748
+76575,36047
+76576,81153
+76577,32627
+76578,33242,76573
+76579,51400
+76580,51400
+76581,21462
+76582,64873
+76583,20328
+76584,65977
+76585,37317
+76586,37794
+76587,40060
+76588,20226
+76589,47558
+76590,66985
+76591,46675
+76592,24084
+76593,76573
+76594,34985
+76595,52905
+76596,70710
+76597,66945
+76598,33542
+76599,66939
+76600,60032
+76601,81626
+76602,21276
+76603,71446
+76604,33326
+76605,69845
+76606,39375
+76607,51120
+76608,33318
+76609,59331
+76610,62147
+76611,59774
+76612,20698
+76613,66702
+76614,34924
+76615,31245
+76616,81871
+76617,35557
+76618,59497
+76619,62187
+76620,23536
+76621,46178
+76622,51468
+76623,64873
+76624,77641
+76625,81448
+76626,58583
+76627,71697
+76628,36619
+76629,76664
+76630,54993
+76631,76664
+76632,38793
+76633,22164
+76634,27786
+76635,22790
+76636,29283
+76637,41930
+76638,59605
+76639,68062
+76640,74846
+76641,59637
+76642,38601
+76643,62703
+76644,25202
+76645,70524
+76646,31616
+76647,29845
+76648,76657
+76649,64846
+76650,28359
+76651,67991
+76652,36317
+76653,60534
+76654,38868
+76655,76664
+76656,59468
+76657,53619
+76658,76664
+76659,51836
+76660,52497
+76661,57067
+76662,76664
+76663,76664
+76664,41862
+76665,36800
+76666,73007
+76667,69559
+76668,81801
+76669,70214
+76670,55760
+76671,76657
+76672,53619
+76673,82152
+76674,81801
+76675,27500
+76676,29744
+76677,57572
+76678,19228
+76679,29280
+76680,53624
+76681,43821
+76682,76680
+76683,76664
+76684,57980
+76685,68185
+76686,68185
+76687,81601
+76688,59970
+76689,39502
+76690,39504
+76691,75756
+76692,65638
+76693,23972
+76694,45317
+76695,44013
+76696,56321
+76697,79469
+76698,54082
+76699,34821
+76700,48329
+76701,77452
+76702,69641
+76703,42096
+76704,30498
+76705,53717
+76706,76705,21060
+76707,70524
+76708,25574
+76709,63275
+76710,78104
+76711,41875
+76712,76711
+76713,76711
+76714,76711
+76715,76711
+76716,76711
+76717,76711
+76718,76719
+76719,55314
+76720,40938
+76721,71686
+76722,49032
+76723,38804
+76724,78785
+76725,21276
+76726,21276
+76727,74939
+76728,34199
+76729,76345
+76730,71039
+76731,75106
+76732,44817
+76733,30495
+76734,21732
+76735,37805
+76736,44558
+76737,48156
+76738,49412
+76739,23313
+76740,63663
+76741,36089
+76742,27296
+76743,36499
+76744,72715
+76745,19492
+76746,77807
+76747,76735
+76748,77014
+76749,77641
+76750,34591,34163
+76751,34808
+76752,46507
+76753,28417
+76754,45009,51120
+76755,45819
+76756,25115
+76757,59020
+76758,76416
+76759,34989
+76760,66266
+76761,19069
+76762,54082
+76763,60786,58616
+76764,35309
+76765,31149
+76766,45260
+76767,51138
+76768,57559
+76769,23111
+76770,59643
+76771,20690
+76772,11862
+76773,38725
+76774,21612
+76775,34197
+76776,73987
+76777,81789
+76778,56009
+76779,21224
+76780,50885
+76781,45406
+76782,21224
+76783,50091
+76784,34229
+76785,58760
+76786,28593
+76787,58287
+76788,79877
+76789,21200
+76790,50565
+76791,50567
+76792,17570
+76793,8921
+76794,50835
+76795,59497
+76796,8179
+76797,67362
+76798,72248
+76799,40752
+76800,19629
+76801,28132
+76802,25770
+76803,76809
+76804,49888
+76805,74500
+76806,49888
+76807,31858
+76808,41214
+76809,53384
+76810,64435
+76811,61262,36610
+76812,45813
+76813,27997
+76814,48030
+76815,67639
+76816,36298
+76817,55284
+76818,61265
+76819,64015
+76820,62360
+76821,69860
+76822,76395
+76823,69870
+76824,70776
+76825,70779
+76826,70778
+76827,20977
+76828,55552
+76829,20972
+76830,55756
+76831,19907
+76832,23796
+76833,80618
+76834,62703
+76835,33933
+76836,28952
+76837,31960
+76838,25115
+76839,35187,38983
+76840,59306
+76841,32578
+76842,20015
+76843,78851
+76844,67769
+76845,33799
+76846,12791
+76847,63424
+76848,73018
+76849,41070
+76850,81752
+76851,55983
+76852,65441
+76853,52916
+76854,29839
+76855,76854
+76856,29895
+76857,48403
+76858,39423
+76859,39423
+76860,49298
+76861,74846
+76862,29928
+76863,81626
+76864,61526
+76865,66953
+76866,36450
+76867,22684
+76868,25545
+76869,49881
+76870,62390
+76871,76874
+76872,68691
+76873,71269
+76874,76757
+76875,77367
+76876,60078
+76877,48423
+76878,28475
+76879,63696
+76880,70204
+76881,35595
+76882,74903
+76883,23775
+76884,55026
+76885,59645
+76886,74255
+76887,79224
+76888,74255,47242
+76889,54086
+76890,22152
+76891,37873
+76892,20117
+76893,51205
+76894,60178
+76895,39556
+76896,25920
+76897,52037
+76898,75677
+76899,77277
+76900,25367
+76901,70220
+76902,42337
+76903,37712
+76904,56950
+76905,22865
+76906,77641
+76907,20047,71567
+76908,19069
+76909,36047
+76910,80512
+76911,51781
+76912,71463
+76913,44384
+76914,44384
+76915,71463
+76916,45813
+76917,24726
+76918,31145
+76919,27997
+76920,49391
+76921,48202
+76922,71881
+76923,81980
+76924,20120
+76925,52159
+76926,43313
+76927,25302
+76928,27319
+76929,18366
+76930,41955
+76931,33933
+76932,44491
+76933,64142
+76934,61075
+76935,71688
+76936,53023
+76937,48662
+76938,53648
+76939,34017
+76940,56171
+76941,60494
+76942,71557
+76943,53454
+76944,52156
+76945,34924
+76946,79189
+76947,53023
+76948,40473
+76949,63213
+76950,58144,21743
+76951,55281
+76952,34665
+76953,24354
+76954,68030
+76955,21718
+76956,40538
+76957,58088
+76958,41657
+76959,57066
+76960,53717
+76961,71408
+76962,73684
+76963,38135
+76964,49687
+76965,71546
+76966,75854
+76967,62703
+76968,23541
+76969,23550
+76970,36841
+76971,53624
+76972,53621
+76973,50438
+76974,52431
+76975,18728
+76976,48126
+76977,59520
+76978,69581
+76979,20835
+76980,51270
+76981,47655
+76982,77287
+76983,22684
+76984,20122
+76985,28849
+76986,52773
+76987,69604
+76988,71686
+76989,25256
+76990,63218
+76991,63218
+76992,73837
+76993,53613
+76994,39183
+76995,41877
+76996,34582
+76997,68115
+76998,71353
+76999,19051
+77000,62835
+77001,26166,76877
+77002,41743
+77003,72575
+77004,80720
+77005,34582
+77006,60662,73761
+77007,71686
+77008,65581
+77009,48494
+77010,61355
+77011,81463
+77012,32578
+77013,78234
+77014,70111
+77015,61415
+77016,47908
+77017,30584
+77018,19272
+77019,19376
+77020,39702
+77021,82191
+77022,25876
+77023,51292
+77024,53958
+77025,64175
+77026,66756
+77027,77509,54562
+77028,64231
+77029,77042
+77030,67565
+77031,78896
+77032,42181
+77033,21669
+77034,31638
+77035,69153
+77036,20647
+77037,39027
+77038,48532
+77039,37698
+77040,45392
+77041,32891
+77042,53369
+77043,33645
+77044,33519
+77045,61646
+77046,43106
+77047,69544
+77048,81703
+77049,77046
+77050,63861
+77051,31336
+77052,75919
+77053,51150
+77054,76124
+77055,81626
+77056,81626
+77057,81396
+77058,30062
+77059,42232
+77060,67565
+77061,80526
+77062,71446
+77063,72193
+77064,45260
+77065,66786
+77066,46070
+77067,51316
+77068,65725
+77069,70426
+77070,71595
+77071,50701
+77072,51319
+77073,26368
+77074,40519
+77075,57991
+77076,33599
+77077,71517
+77078,38839
+77079,40231
+77080,38839,19907
+77081,21545
+77082,34821
+77083,80185
+77084,78096
+77085,60598
+77086,31812
+77087,81746
+77088,62767
+77089,33425
+77090,46757
+77091,41103
+77092,53624
+77093,25115
+77094,81808
+77095,59376
+77096,26884
+77097,59475
+77098,18740
+77099,58921
+77100,32056
+77101,78286
+77102,46555
+77103,36047
+77104,57280
+77105,55314
+77106,35753
+77107,58776
+77108,60208
+77109,66953
+77110,57991
+77111,54953
+77112,67131
+77113,55348
+77114,67594
+77115,76435
+77116,53413
+77117,52280
+77118,35557
+77119,77099
+77120,70987
+77121,33832
+77122,76135
+77123,37104
+77124,47295
+77125,39572
+77126,35474
+77127,43809
+77128,42451
+77129,31417
+77130,49792
+77131,37622
+77132,30530,37622
+77133,23790
+77134,60216
+77135,18720
+77136,60661
+77137,77136
+77138,71508
+77139,19334
+77140,75124
+77141,70987
+77142,71575,38933
+77143,53021
+77144,22107
+77145,60019
+77146,31604
+77147,19171
+77148,74220
+77149,78426
+77150,654
+77151,31122
+77152,78424
+77153,41054
+77154,50317
+77155,68355
+77156,60216
+77157,70139
+77158,26389
+77159,44826
+77160,49343
+77161,39511
+77162,44561
+77163,33275
+77164,27405
+77165,30659
+77166,77585
+77167,22160
+77168,18958
+77169,77509,54562
+77170,31646
+77171,31646
+77172,39992
+77173,53637
+77174,68084
+77175,19482
+77176,47697
+77177,30930
+77178,36393
+77179,77995
+77180,60744
+77181,64435
+77182,23021
+77183,46507
+77184,39049
+77185,73838
+77186,66800
+77187,32888
+77188,59587
+77189,24804
+77190,40068
+77191,51475
+77192,55651
+77193,55652
+77194,57573
+77195,20824
+77196,30025
+77197,43814
+77198,53761
+77199,51886
+77200,77204
+77201,77204
+77202,19379
+77203,59812
+77204,66040
+77205,59541
+77206,24834
+77207,47487
+77208,74973
+77209,70515
+77210,80227
+77211,36760
+77212,34326
+77213,39331
+77214,53711
+77215,60375
+77216,61690
+77217,47572
+77218,48077
+77219,65902
+77220,34924
+77221,10367
+77222,28849
+77223,35944
+77224,48030
+77225,61976
+77226,36007
+77227,77223
+77228,77223
+77229,70033
+77230,69860
+77231,65541
+77232,39798
+77233,53175
+77234,51475
+77235,70987
+77236,47944
+77237,34851
+77238,28780
+77239,79000
+77240,34845
+77241,48408
+77242,64547
+77243,20385
+77244,34199
+77245,78113
+77246,27731
+77247,79282
+77248,79215
+77249,48126
+77250,48126
+77251,57934
+77252,44769
+77253,39014
+77254,36405
+77255,35517
+77256,36404
+77257,59020
+77258,67161
+77259,44347
+77260,21745
+77261,66727
+77262,23854
+77263,59542
+77264,23021
+77265,77267
+77266,68894
+77267,72421
+77268,41083
+77269,53757
+77270,65203
+77271,19016
+77272,37478
+77273,68990
+77274,46962
+77275,75016
+77276,77633
+77277,43104
+77278,46782
+77279,46827
+77280,77374
+77281,63725
+77282,51929
+77283,77995
+77284,68990
+77285,49158
+77286,30650
+77287,57461
+77288,26575
+77289,63316
+77290,31037
+77291,36317
+77292,63420
+77293,24145
+77294,25302
+77295,34319
+77296,34227
+77297,52578
+77298,56009
+77299,41155
+77300,59542
+77301,68771
+77302,68778
+77303,81626
+77304,62791
+77305,32685
+77306,53180
+77307,38633
+77308,53959
+77309,21959
+77310,59970
+77311,30650
+77312,27502
+77313,76882
+77314,31638
+77315,60450
+77316,22103
+77317,58257
+77318,31489
+77319,30391
+77320,30883
+77321,30650
+77322,49438
+77323,31742
+77324,61764
+77325,32527
+77326,48958
+77327,33172
+77328,50354
+77329,51311
+77330,59542
+77331,44609
+77332,81781
+77333,19231
+77334,19234
+77335,36373
+77336,40567
+77337,77335
+77338,60400
+77339,27730
+77340,59543
+77341,77261
+77342,55376
+77343,74462
+77344,23763
+77345,66515
+77346,68383
+77347,31825
+77348,80761
+77349,27078
+77350,77995
+77351,63936
+77352,70033
+77353,37166
+77354,81161
+77355,31476
+77356,60744
+77357,63659
+77358,39358
+77359,76258
+77360,61415
+77361,30934,54443
+77362,54444
+77363,22128
+77364,57113
+77365,19757
+77366,50701
+77367,19228
+77368,30408
+77369,37202
+77370,68236
+77371,25020
+77372,51824
+77373,37712
+77374,22164
+77375,32929
+77376,77375
+77377,53654
+77378,79973
+77379,77260
+77380,62333
+77381,66154
+77382,40340
+77383,56995
+77384,41067
+77385,79052
+77386,73072
+77387,71686
+77388,22665
+77389,44696
+77390,31825
+77391,78544
+77392,69554
+77393,32
+77394,63607,68853
+77395,58099
+77396,27022
+77397,39469
+77398,28780
+77399,44440
+77400,31109
+77401,78967
+77402,26602
+77403,41157
+77404,77439
+77405,28790
+77406,28790
+77407,23780
+77408,36070
+77409,48921
+77410,60453
+77411,60448
+77412,21135
+77413,81780
+77414,60487
+77415,81780
+77416,81789
+77417,81801
+77418,61875
+77419,58162
+77420,65215
+77421,81800
+77422,58734
+77423,37405
+77424,79250
+77425,58162
+77426,56179
+77427,73838
+77428,76518
+77429,50769
+77430,60216
+77431,77399
+77432,28539
+77433,66471
+77434,19648
+77435,59020
+77436,58403
+77437,75472
+77438,38637
+77439,38053
+77440,65133
+77441,35659
+77442,55497
+77443,77442
+77444,62178
+77445,43427
+77446,77451
+77447,66329
+77448,41842
+77449,43914
+77450,28535
+77451,28535
+77452,28530
+77453,37405
+77454,19200
+77455,48333
+77456,64949
+77457,42429
+77458,43109
+77459,19200
+77460,81808
+77461,81807
+77462,47638
+77463,77585
+77464,58282
+77465,20386
+77466,48952
+77467,69050
+77468,75693
+77469,51474
+77470,82152
+77471,28530
+77472,59419
+77473,59422
+77474,79376
+77475,51988,53476
+77476,43913
+77477,77448
+77478,58162
+77479,28536
+77480,59154
+77481,55347
+77482,81801
+77483,51559
+77484,63187
+77485,77421
+77486,58162
+77487,58162
+77488,29711
+77489,9455,59769
+77490,65666
+77491,30883
+77492,42387
+77493,69087
+77494,63457
+77495,63457
+77496,53658
+77497,67050
+77498,31894
+77499,30206
+77500,69333
+77501,77451
+77502,28530
+77503,31805
+77504,81227
+77505,33075
+77506,51865
+77507,60603
+77508,29711
+77509,42412
+77510,53454
+77511,25087
+77512,56179
+77513,58162
+77514,57934
+77515,55493
+77516,42205
+77517,37405
+77518,35167
+77519,69744
+77520,30659
+77521,55493
+77522,30937
+77523,39101
+77524,32710
+77525,77995
+77526,53499
+77527,55828
+77528,26933
+77529,65045
+77530,61400
+77531,18740
+77532,65861
+77533,34602
+77534,60216
+77535,60216
+77536,31241
+77537,77521
+77538,76135
+77539,35465
+77540,28780
+77541,66007
+77542,30443
+77543,63064
+77544,79341
+77545,18686
+77546,62456
+77547,60216
+77548,55069
+77549,36363
+77550,53648
+77551,27688
+77552,34924
+77553,55473
+77554,34772
+77555,61523
+77556,72153
+77557,24801
+77558,36101
+77559,51470
+77560,74830
+77561,64109
+77562,27649
+77563,70568
+77564,61871
+77565,64109
+77566,27649
+77567,46962
+77568,70033
+77569,69945
+77570,64396
+77571,63584
+77572,53716
+77573,71319
+77574,23536
+77575,55347
+77576,19648
+77577,19657
+77578,20115
+77579,23075
+77580,38787
+77581,44566
+77582,48877
+77583,61203
+77584,76664
+77585,60216
+77586,77588
+77587,29731
+77588,51074
+77589,81549
+77590,67628,72376
+77591,80440
+77592,22157
+77593,33067
+77594,77575
+77595,55497
+77596,40340
+77597,40336
+77598,40323
+77599,40331
+77600,65108
+77601,75066
+77602,56953
+77603,35566
+77604,75013
+77605,69158
+77606,74537
+77607,31607
+77608,73830
+77609,74821
+77610,38702
+77611,57461
+77612,54469
+77613,73689
+77614,32926
+77615,35616
+77616,62178
+77617,30391
+77618,80509
+77619,28849
+77620,42378
+77621,73475
+77622,42094
+77623,69744
+77624,30391
+77625,77618
+77626,55030
+77627,62145
+77628,43815
+77629,34646
+77630,41870
+77631,73323
+77632,45096
+77633,81789
+77634,21771
+77635,52920
+77636,27562
+77637,81798
+77638,62089
+77639,29724
+77640,63820
+77641,81549
+77642,61213
+77643,32326
+77644,32915
+77645,41181
+77646,39676
+77647,41657
+77648,38256
+77649,1524
+77650,61399
+77651,38047
+77652,47455
+77653,70033
+77654,70033
+77655,19762
+77656,77641
+77657,57811
+77658,61159
+77659,71933
+77660,11867
+77661,72680
+77662,71997
+77663,27562
+77664,74659
+77665,21161
+77666,41657
+77667,76812
+77668,70033
+77669,80061
+77670,61255
+77671,77641
+77672,59818
+77673,21447
+77674,61677
+77675,49343
+77676,77857
+77677,77585
+77678,50561
+77679,65509
+77680,20745
+77681,21782
+77682,69507
+77683,79514
+77684,69507
+77685,36986
+77686,79512
+77687,35802
+77688,35802
+77689,56163
+77690,64662
+77691,66491
+77692,41708
+77693,49944
+77694,80105
+77695,30550
+77696,35183
+77697,25017
+77698,54870
+77699,20531
+77700,51473
+77701,50705
+77702,36482
+77703,74567
+77704,68563
+77705,57934
+77706,21304
+77707,72290
+77708,77094
+77709,81808
+77710,77708
+77711,77708
+77712,77708
+77713,77708
+77714,74503
+77715,68015
+77716,25920
+77717,75057
+77718,73838
+77719,77985
+77720,61402
+77721,28398
+77722,48840
+77723,71658
+77724,31646
+77725,63061
+77726,38797
+77727,19580
+77728,38798
+77729,50638
+77730,22745
+77731,77726
+77732,22838
+77733,32527
+77734,49353
+77735,76664
+77736,32225
+77737,69543
+77738,36335
+77739,60042
+77740,61866
+77741,62976
+77742,20730
+77743,77822
+77744,74596
+77745,31058
+77746,23925
+77747,51037
+77748,71341
+77749,72959
+77750,23790
+77751,78685
+77752,19069
+77753,75510
+77754,56114
+77755,71315
+77756,53842
+77757,53651
+77758,53652
+77759,48710
+77760,34285
+77761,21344
+77762,62145
+77763,59646
+77764,21328
+77765,31159
+77766,26725
+77767,70568
+77768,77767
+77769,28317
+77770,56376
+77771,55914,48111
+77772,61646
+77773,29067
+77774,76218
+77775,19039
+77776,38457
+77777,33563
+77778,40423
+77779,63471
+77780,48318
+77781,52990
+77782,29651
+77783,61450
+77784,48111
+77785,69704
+77786,78236
+77787,35566
+77788,34925
+77789,65975
+77790,34126
+77791,54753
+77792,31030
+77793,72281
+77794,35290
+77795,35291
+77796,40411
+77797,30484
+77798,30132
+77799,49962
+77800,22090
+77801,80761
+77802,20994
+77803,71969
+77804,54562
+77805,49353
+77806,60216
+77807,63678
+77808,34837
+77809,47432
+77810,77641
+77811,31062
+77812,25713
+77813,32715
+77814,56494
+77815,34924
+77816,28063
+77817,61438
+77818,51624,43502
+77819,52454
+77820,41842
+77821,53480
+77822,63861
+77823,81803
+77824,76489
+77825,21738
+77826,57066
+77827,50439
+77828,50439
+77829,51395
+77830,21718
+77831,77851
+77832,22150
+77833,33504
+77834,56265
+77835,67566
+77836,61874
+77837,76664
+77838,68254
+77839,77802
+77840,52497
+77841,49310
+77842,27287
+77843,21412
+77844,34197
+77845,19421
+77846,47538
+77847,30391
+77848,55761
+77849,55756
+77850,42351
+77851,69331
+77852,78097
+77853,43509
+77854,55121
+77855,58616
+77856,44921
+77857,49343
+77858,73152
+77859,38793
+77860,25002
+77861,66985
+77862,54440
+77863,81349
+77864,43509
+77865,79189
+77866,44966
+77867,64028
+77868,30223
+77869,19069
+77870,55601
+77871,23225
+77872,23245
+77873,78424
+77874,28747
+77875,28502
+77876,28502
+77877,22034
+77878,23243
+77879,58050
+77880,55765
+77881,70079
+77882,42479
+77883,60032
+77884,31940
+77885,52655
+77886,77851
+77887,55614
+77888,64438
+77889,38600
+77890,36612
+77891,27970
+77892,21671
+77893,27649
+77894,42042
+77895,57704
+77896,70395
+77897,34771
+77898,71938
+77899,26296
+77900,29262
+77901,43509
+77902,81578
+77903,81920
+77904,78746
+77905,61914,45839
+77906,65767
+77907,47067
+77908,68676
+77909,38994
+77910,21412,53861
+77911,19385
+77912,77850
+77913,23223
+77914,23223
+77915,57333
+77916,46901
+77917,63064
+77918,54189
+77919,32715
+77920,24306
+77921,77912
+77922,27688
+77923,52832
+77924,55952
+77925,40326
+77926,20710
+77927,77469
+77928,26532
+77929,48111
+77930,54789
+77931,54789
+77932,25729
+77933,55768
+77934,58803
+77935,56701
+77936,21597
+77937,21597
+77938,33102
+77939,78698
+77940,54441
+77941,55493
+77942,61764
+77943,61764
+77944,69744,77940
+77945,66377
+77946,74902
+77947,53848
+77948,27497
+77949,77961
+77950,72416
+77951,22420
+77952,22420
+77953,27784
+77954,81065
+77955,50554
+77956,59826
+77957,53716
+77958,61092
+77959,34108
+77960,64647
+77961,64949
+77962,81578
+77963,69027
+77964,30391
+77965,50649
+77966,50649
+77967,42002
+77968,20749
+77969,64409
+77970,61063
+77971,62625
+77972,45096
+77973,37237
+77974,35157
+77975,21475
+77976,78815
+77977,65871
+77978,35158
+77979,56163
+77980,65108
+77981,43744
+77982,42225
+77983,33288
+77984,46317
+77985,42225
+77986,58398
+77987,40292
+77988,67658,41014
+77989,45009
+77990,75028
+77991,21192,77992
+77992,80618
+77993,56885
+77994,18793
+77995,55373
+77996,40701
+77997,34025
+77998,39367
+77999,39381
+78000,69304
+78001,79276
+78002,39556
+78003,69766
+78004,48030
+78005,57320
+78006,19690
+78007,46067
+78008,59775
+78009,20014
+78010,20723
+78011,47951
+78012,24565
+78013,45730
+78014,41657
+78015,41877
+78016,50585
+78017,51868
+78018,52675
+78019,53226
+78020,79608
+78021,66448
+78022,67559
+78023,70859
+78024,41657
+78025,79808
+78026,38593
+78027,27167
+78028,79259
+78029,41877
+78030,78075
+78031,74231
+78032,61402
+78033,72673
+78034,2098
+78035,46444
+78036,25738
+78037,79953
+78038,55768
+78039,74689
+78040,75665
+78041,20690
+78042,41760
+78043,41760
+78044,27757
+78045,69923
+78046,54705
+78047,29968
+78048,80753,66900
+78049,23643
+78050,22699
+78051,72791
+78052,25851
+78053,51225
+78054,75677
+78055,51479
+78056,22907
+78057,41444
+78058,25920
+78059,63316
+78060,31523
+78061,77374
+78062,43810
+78063,40063
+78064,50875
+78065,41856
+78066,35787
+78067,19658
+78068,39811
+78069,39813
+78070,62145
+78071,77374
+78072,31830
+78073,39111
+78074,19239
+78075,72983
+78076,48710
+78077,46417
+78078,72610
+78079,38053
+78080,78079
+78081,38366
+78082,33896
+78083,40863
+78084,35765
+78085,26899,80438
+78086,77973
+78087,66491
+78088,35048
+78089,31618
+78090,79469
+78091,58068
+78092,44663
+78093,51303,74565
+78094,37145
+78095,73837
+78096,31281
+78097,37478
+78098,41034
+78099,61568
+78100,72791
+78101,51038
+78102,55866
+78103,51643
+78104,70656
+78105,51023
+78106,48084
+78107,40752
+78108,63064
+78109,23765
+78110,79211
+78111,20038,56525,61264
+78112,28091
+78113,78095
+78114,30592
+78115,62146
+78116,61435
+78117,25574
+78118,31301
+78119,69395
+78120,82039
+78121,22684
+78122,68128
+78123,66785
+78124,79848
+78125,32891
+78126,26411
+78127,28220
+78128,41635
+78129,63707
+78130,76787
+78131,79492
+78132,63725
+78133,22034
+78134,31353
+78135,25046
+78136,11221
+78137,21568
+78138,39556
+78139,82167
+78140,51395
+78141,40767
+78142,58088
+78143,20690
+78144,81482
+78145,81482
+78146,77641
+78147,56472
+78148,19144
+78149,29919
+78150,36777
+78151,44695
+78152,57418
+78153,43364
+78154,80583
+78155,20282
+78156,36763
+78157,58162
+78158,78159
+78159,74807
+78160,44470
+78161,33667
+78162,74513
+78163,79691
+78164,35793
+78165,19698
+78166,23164
+78167,37207
+78168,62840
+78169,67703
+78170,68330,41014
+78171,67594
+78172,40294
+78173,67822
+78174,61182
+78175,71446
+78176,74689
+78177,61075
+78178,20226
+78179,55734
+78180,19368
+78181,70629
+78182,57594
+78183,20690
+78184,67675
+78185,54082
+78186,20122
+78187,58628
+78188,29839
+78189,53848
+78190,19925
+78191,29189
+78192,26960
+78193,47655
+78194,59427
+78195,79743
+78196,81482
+78197,44615
+78198,75860
+78199,45392
+78200,81336
+78201,81337
+78202,29943
+78203,25256
+78204,67047
+78205,42469
+78206,40734
+78207,50856
+78208,22667
+78209,60603
+78210,35625
+78211,40745
+78212,69312
+78213,29513
+78214,49483
+78215,50297
+78216,31353
+78217,45813
+78218,45813
+78219,63236
+78220,72959
+78221,62367
+78222,36049
+78223,40714
+78224,78222
+78225,36634
+78226,41598
+78227,73897
+78228,57793
+78229,81275
+78230,40564
+78231,45813
+78232,28534
+78233,80009
+78234,59308
+78235,39494
+78236,19228
+78237,34904
+78238,28533
+78239,73275
+78240,38883
+78241,46149
+78242,21474
+78243,81615
+78244,62659
+78245,32492
+78246,37712
+78247,78151
+78248,70629
+78249,60216
+78250,31861
+78251,81656
+78252,63117
+78253,59225
+78254,37812
+78255,41252
+78256,28529
+78257,55494
+78258,66977,33135
+78259,78262
+78260,23642
+78261,44232
+78262,33134
+78263,66727
+78264,73275
+78265,42351
+78266,22125
+78267,67054
+78268,59306
+78269,35557
+78270,42337
+78271,38885
+78272,72298
+78273,42337
+78274,61493
+78275,61355
+78276,61355
+78277,77600
+78278,29969
+78279,57689
+78280,38369
+78281,24915
+78282,54562,57861
+78283,77641
+78284,77185
+78285,29845
+78286,28773
+78287,71719
+78288,36250
+78289,74721,49199
+78290,30374
+78291,70629
+78292,51701
+78293,76989
+78294,52885
+78295,67951
+78296,27093
+78297,27997
+78298,50766
+78299,75552
+78300,69325
+78301,47327
+78302,20825
+78303,30891
+78304,71686
+78305,56102
+78306,58088
+78307,58088
+78308,39049
+78309,48038
+78310,29037
+78311,52168
+78312,64757
+78313,50439
+78314,69227
+78315,34093
+78316,76662
+78317,64757
+78318,28299
+78319,50439
+78320,50439
+78321,50439
+78322,50439
+78323,50439
+78324,50439
+78325,50439
+78326,50439
+78327,50439
+78328,19242
+78329,40195
+78330,50439
+78331,78329
+78332,78329
+78333,24146
+78334,70399
+78335,78358
+78336,53011
+78337,24726
+78338,34174
+78339,51319
+78340,46767
+78341,42439
+78342,57475
+78343,20308
+78344,39049
+78345,80538
+78346,70079
+78347,23643
+78348,42092
+78349,46444
+78350,81626
+78351,74067
+78352,58778
+78353,49204
+78354,28530
+78355,69727
+78356,33216
+78357,71311
+78358,67054
+78359,55494
+78360,24392
+78361,19679
+78362,71938
+78363,24306
+78364,35188
+78365,76620
+78366,35255
+78367,79640
+78368,22590
+78369,68005
+78370,23232
+78371,75860
+78372,24339
+78373,26600
+78374,50192
+78375,22853
+78376,30758
+78377,75197
+78378,34118
+78379,70928
+78380,70928
+78381,73649
+78382,64409
+78383,24146
+78384,57556
+78385,32495
+78386,30300
+78387,39424
+78388,9230
+78389,25256
+78390,79282
+78391,36632
+78392,35224
+78393,48126
+78394,57934
+78395,75510
+78396,28591
+78397,74903
+78398,49797
+78399,24781
+78400,34978
+78401,34978,22305
+78402,78396
+78403,42539
+78404,20120
+78405,78404
+78406,72003
+78407,54867
+78408,53516
+78409,62957
+78410,28596
+78411,27686
+78412,41000
+78413,49694
+78414,81796
+78415,48084
+78416,67656
+78417,22652
+78418,33599
+78419,66491
+78420,49185
+78421,56979
+78422,65927
+78423,65930
+78424,81786
+78425,61978
+78426,37712
+78427,77287
+78428,62963
+78429,27991
+78430,20355
+78431,55662
+78432,59441
+78433,76210
+78434,67277
+78435,60216
+78436,35103
+78437,20977
+78438,45260
+78439,20355
+78440,53717
+78441,22351
+78442,20977
+78443,66316
+78444,11862
+78445,62694
+78446,64327,30223
+78447,62694
+78448,52890
+78449,21218
+78450,60216
+78451,47628
+78452,44593
+78453,58776
+78454,60132
+78455,51038
+78456,58162
+78457,30357
+78458,25094
+78459,24700
+78460,48126
+78461,47908
+78462,21540
+78463,21703
+78464,56440
+78465,79282
+78466,44140
+78467,64142
+78468,74891
+78469,34363
+78470,64142
+78471,39847
+78472,34460
+78473,28287
+78474,28288
+78475,64513
+78476,24897
+78477,60786
+78478,51340
+78479,14491
+78480,61767
+78481,71684
+78482,19182
+78483,71754
+78484,72038
+78485,48144
+78486,45813
+78487,36979
+78488,36710,41885,39722
+78489,45851
+78490,79282
+78491,31820
+78492,69472
+78493,20670
+78494,27239
+78495,34293
+78496,78685
+78497,32310
+78498,39676
+78499,38257
+78500,45813
+78501,68854
+78502,75860
+78503,70033
+78504,52658
+78505,40752
+78506,34985
+78507,53686
+78508,34149
+78509,57572
+78510,35105
+78511,78776
+78512,47741
+78513,56194
+78514,47588
+78515,29611
+78516,19733
+78517,78750
+78518,20164
+78519,35159
+78520,47680
+78521,78449
+78522,47904
+78523,31638
+78524,31506
+78525,48153
+78526,64142
+78527,68289
+78528,22164
+78529,68474
+78530,23891
+78531,49860
+78532,77374
+78533,47845
+78534,38960
+78535,38960
+78536,77374
+78537,39578
+78538,59970
+78539,78649
+78540,65691
+78541,31463
+78542,27576
+78543,54544
+78544,30275
+78545,58212
+78546,78748
+78547,47740
+78548,20849,65759
+78549,31037
+78550,46493
+78551,61866
+78552,19069
+78553,48937
+78554,60072
+78555,73863
+78556,25457
+78557,80494
+78558,18685
+78559,21922
+78560,26171
+78561,41444,74488
+78562,28616
+78563,28621
+78564,41898
+78565,68628
+78566,57929
+78567,53454
+78568,57060,41189
+78569,33503
+78570,34902
+78571,34907
+78572,39154
+78573,38392
+78574,21295
+78575,38868
+78576,38871
+78577,27672
+78578,42225
+78579,30413
+78580,66342
+78581,51613
+78582,46948
+78583,78578
+78584,25115
+78585,78194
+78586,59645
+78587,59646
+78588,26577
+78589,63124
+78590,73801
+78591,68786
+78592,69010
+78593,70033
+78594,50008
+78595,72983
+78596,19231
+78597,77287
+78598,81601
+78599,33425
+78600,76936
+78601,69466
+78602,53608
+78603,47812
+78604,78599
+78605,38512
+78606,78578
+78607,56811
+78608,29626
+78609,76012
+78610,22656
+78611,78815
+78612,51550
+78613,80361
+78614,48534
+78615,68862
+78616,60216
+78617,18762
+78618,56000
+78619,55494
+78620,47646
+78621,47830
+78622,47830
+78623,40062
+78624,67312
+78625,77374
+78626,59970
+78627,56957
+78628,72959
+78629,71317
+78630,64287
+78631,60013
+78632,47452
+78633,59118
+78634,48041
+78635,48928
+78636,28543
+78637,38960
+78638,59331
+78639,48253
+78640,78811
+78641,35433
+78642,48329
+78643,78797
+78644,47475
+78645,34908
+78646,27288
+78647,60216
+78648,35611
+78649,35679
+78650,47646
+78651,35512
+78652,57987
+78653,61159
+78654,61159
+78655,37689
+78656,78816
+78657,78726
+78658,64142
+78659,41000
+78660,47503
+78661,80761
+78662,59765
+78663,21208
+78664,29928
+78665,65631
+78666,70375
+78667,19737
+78668,34734
+78669,35922
+78670,19497
+78671,79086
+78672,59970
+78673,79915
+78674,48039
+78675,47845
+78676,62447
+78677,35086
+78678,61793
+78679,45096
+78680,34923
+78681,45449
+78682,58168
+78683,69331
+78684,72959
+78685,30568
+78686,53846
+78687,65931
+78688,30937
+78689,50112
+78690,31548
+78691,52750
+78692,19733
+78693,31213
+78694,71687
+78695,59307
+78696,81003
+78697,76251
+78698,58168
+78699,78697
+78700,28588
+78701,32269
+78702,48801
+78703,34326
+78704,78703
+78705,58715
+78706,31804
+78707,38822
+78708,31336
+78709,31784
+78710,67271
+78711,63348
+78712,19655
+78713,24824
+78714,32492
+78715,64157
+78716,69330
+78717,66587
+78718,79277
+78719,76135
+78720,42451
+78721,56176
+78722,31638
+78723,37201
+78724,25094
+78725,38375
+78726,48329
+78727,78544
+78728,79164
+78729,65579
+78730,39116
+78731,69448
+78732,64142
+78733,42296
+78734,47710
+78735,35712
+78736,68831
+78737,45039
+78738,60604
+78739,81462
+78740,22137
+78741,64142
+78742,78649
+78743,47854
+78744,40150
+78745,47854
+78746,78547
+78747,64142
+78748,58213
+78749,58196
+78750,75439
+78751,35435
+78752,48329
+78753,35679
+78754,62447
+78755,78815
+78756,78755
+78757,58779
+78758,64142
+78759,78758
+78760,75347
+78761,64142
+78762,78526
+78763,56194
+78764,41752
+78765,35433
+78766,47531
+78767,56912
+78768,78540
+78769,35570
+78770,64142
+78771,19698
+78772,47979
+78773,47552
+78774,48697
+78775,67839
+78776,64142
+78777,39469
+78778,35565
+78779,76691
+78780,25234
+78781,47904
+78782,78727
+78783,42475
+78784,78449
+78785,60216
+78786,47740
+78787,51174
+78788,35679
+78789,63314
+78790,31245
+78791,54710
+78792,22656
+78793,47658
+78794,48928
+78795,55485
+78796,63193
+78797,64142
+78798,31245
+78799,77374
+78800,35627
+78801,78532
+78802,58381
+78803,77374
+78804,35565
+78805,52119
+78806,28780
+78807,28780
+78808,28780
+78809,28780
+78810,28780
+78811,78535
+78812,48757
+78813,62709
+78814,47780
+78815,60216
+78816,64142
+78817,77978
+78818,35679
+78819,22656
+78820,62456
+78821,25524
+78822,47869
+78823,64175
+78824,66436
+78825,22268
+78826,48220
+78827,19810
+78828,48157
+78829,19228
+78830,28529
+78831,36319
+78832,71439
+78833,66013
+78834,45165
+78835,47716
+78836,43854
+78837,66676
+78838,21795
+78839,74500
+78840,32691
+78841,32578
+78842,77287
+78843,39049
+78844,69406
+78845,32326
+78846,67819
+78847,21959
+78848,25743
+78849,66676
+78850,77491
+78851,60746
+78852,23948
+78853,25496
+78854,29626
+78855,34154
+78856,74422
+78857,49149
+78858,51435
+78859,50649
+78860,66109
+78861,66108
+78862,70110
+78863,24874
+78864,62773
+78865,60641
+78866,73830
+78867,66591
+78868,35792
+78869,48784
+78870,76981
+78871,21826
+78872,81307
+78873,26884
+78874,51068
+78875,59306
+78876,19231
+78877,59306
+78878,78755
+78879,78755
+78880,73801
+78881,46892
+78882,77399
+78883,76664
+78884,66042
+78885,47716
+78886,57160
+78887,78891
+78888,54082
+78889,78888
+78890,78888
+78891,58137
+78892,57934
+78893,44439
+78894,56752
+78895,58593
+78896,67675
+78897,24823,74939
+78898,74939
+78899,43104
+78900,44542
+78901,65909
+78902,21449
+78903,65159
+78904,32535
+78905,64142
+78906,31245
+78907,71321
+78908,79469
+78909,28952
+78910,58158
+78911,75007
+78912,38053
+78913,59549
+78914,36710
+78915,48126
+78916,63228
+78917,65520
+78918,73147
+78919,38385
+78920,36710
+78921,58200
+78922,72135
+78923,78941
+78924,63228
+78925,55356
+78926,34783
+78927,38035
+78928,56275
+78929,70524
+78930,47671
+78931,19496
+78932,81142
+78933,19069
+78934,24823,74939
+78935,61526
+78936,28776,34986
+78937,24609
+78938,35156
+78939,66196
+78940,77275
+78941,48127
+78942,25122
+78943,62266
+78944,79219
+78945,20757
+78946,29258
+78947,38971
+78948,34276
+78949,57092
+78950,20422
+78951,58776
+78952,75016
+78953,26938
+78954,71996
+78955,53716
+78956,59549
+78957,57608
+78958,75152
+78959,40752
+78960,33519
+78961,64805,47185
+78962,50359
+78963,76664
+78964,78996
+78965,50885
+78966,19228
+78967,38694
+78968,27405
+78969,59244
+78970,60216
+78971,57573
+78972,38334
+78973,78972
+78974,48724
+78975,30866
+78976,50885
+78977,78970
+78978,50971,69562
+78979,27397
+78980,81807
+78981,50972
+78982,48536
+78983,53012
+78984,47655
+78985,21703
+78986,28091
+78987,31700
+78988,79282
+78989,39614
+78990,55209
+78991,35922
+78992,75027
+78993,39101
+78994,69284
+78995,69280
+78996,64142
+78997,55648
+78998,22850
+78999,81643
+79000,63187
+79001,67161
+79002,72959
+79003,78970
+79004,51434
+79005,72959
+79006,39801
+79007,71332
+79008,62361
+79009,22215
+79010,34118
+79011,58166
+79012,73837
+79013,48126
+79014,78113
+79015,40472
+79016,48126
+79017,81065
+79018,46988
+79019,55662
+79020,19548
+79021,79026
+79022,37726
+79023,60013
+79024,52153
+79025,18774
+79026,50925
+79027,36868
+79028,56957
+79029,50924
+79030,68119
+79031,47572
+79032,59555
+79033,48077
+79034,28091
+79035,31245
+79036,73918
+79037,37726
+79038,65581
+79039,46317
+79040,28475
+79041,40514
+79042,42358
+79043,57333
+79044,28530
+79045,36710
+79046,21703
+79047,35465
+79048,71019
+79049,31700
+79050,48126
+79051,46354
+79052,80091,61997
+79053,78533
+79054,47985
+79055,32715
+79056,79200
+79057,4298
+79058,39362
+79059,58069
+79060,68230
+79061,62409
+79062,62409
+79063,37459
+79064,28788
+79065,74797
+79066,40752
+79067,27488
+79068,53032,25117
+79069,69285
+79070,70091
+79071,34350
+79072,34867
+79073,50892
+79074,38366
+79075,58533
+79076,56163
+79077,43313
+79078,43769
+79079,20992
+79080,20696
+79081,77618
+79082,62810
+79083,66020
+79084,47389
+79085,57211
+79086,81714
+79087,30480
+79088,53619
+79089,36800
+79090,49358
+79091,72983
+79092,81717
+79093,21298
+79094,23790
+79095,73837
+79096,34924
+79097,31743
+79098,69662
+79099,69662
+79100,48579
+79101,47805
+79102,45490
+79103,47838
+79104,79095
+79105,48126
+79106,27213
+79107,18965
+79108,60746
+79109,38569
+79110,27624
+79111,23790
+79112,19200
+79113,27408
+79114,77995
+79115,27095
+79116,58798
+79117,21444
+79118,22158
+79119,60611
+79120,67675
+79121,54562
+79122,54082
+79123,58628
+79124,20122
+79125,20977
+79126,58088
+79127,34822
+79128,54709,34827
+79129,23579
+79130,40035
+79131,24626
+79132,62149
+79133,21597
+79134,58088
+79135,65778
+79136,40564
+79137,40564
+79138,47327
+79139,79134
+79140,63677
+79141,31058
+79142,60216
+79143,35442
+79144,35443
+79145,61646
+79146,21218
+79147,81717
+79148,51279
+79149,62144
+79150,79149
+79151,74620
+79152,65704
+79153,24794
+79154,62757
+79155,20817
+79156,60391
+79157,34924
+79158,32610
+79159,62085
+79160,51523
+79161,79671
+79162,28541
+79163,76251
+79164,74903
+79165,64160
+79166,63306
+79167,72892
+79168,54992
+79169,35649
+79170,63065
+79171,60263
+79172,76123
+79173,76249
+79174,28529
+79175,28530
+79176,19228
+79177,45873
+79178,35224
+79179,79282,79181
+79180,59549
+79181,79198
+79182,52135
+79183,79162
+79184,46662
+79185,79162
+79186,81251
+79187,75510
+79188,35142
+79189,53628
+79190,69977
+79191,79193
+79192,79193
+79193,62450
+79194,48288
+79195,53624
+79196,37190
+79197,61956
+79198,18740
+79199,20743
+79200,44437
+79201,30073
+79202,61705
+79203,40128
+79204,78724
+79205,75566
+79206,34350
+79207,36710
+79208,78113
+79209,24843
+79210,79215
+79211,61246
+79212,79215
+79213,73837
+79214,75016
+79215,61263
+79216,63314
+79217,58162
+79218,48126
+79219,49134
+79220,18728,74565
+79221,31555
+79222,19656
+79223,35226
+79224,35229
+79225,46553,79222
+79226,79222
+79227,47805
+79228,57934
+79229,48126
+79230,40986
+79231,36872
+79232,79190
+79233,60076
+79234,66939
+79235,73818
+79236,26488
+79237,49409
+79238,22032
+79239,73838
+79240,46600
+79241,25044
+79242,53628
+79243,35557
+79244,35557
+79245,66756
+79246,68080
+79247,73537
+79248,79165
+79249,79691
+79250,19656
+79251,47975
+79252,19982
+79253,79248
+79254,79248
+79255,50192
+79256,76441
+79257,79265
+79258,45813
+79259,63109
+79260,53519
+79261,37178
+79262,45813
+79263,61257
+79264,80460
+79265,37041
+79266,35130
+79267,44474
+79268,38656
+79269,64307
+79270,30391
+79271,48494
+79272,74081
+79273,53731
+79274,31825
+79275,47975
+79276,77319
+79277,61260
+79278,38883
+79279,43107
+79280,79210
+79281,66445
+79282,24843
+79283,79282
+79284,31520
+79285,44032
+79286,81383
+79287,79853
+79288,81796
+79289,59186
+79290,24046
+79291,53012
+79292,64417
+79293,39049
+79294,67957
+79295,39049
+79296,80219
+79297,23912
+79298,44013
+79299,46818
+79300,39049
+79301,52857
+79302,79282
+79303,79282
+79304,79282
+79305,79282
+79306,29834
+79307,79283
+79308,29834
+79309,79283
+79310,79283
+79311,79282
+79312,79317
+79313,50100
+79314,50100
+79315,79282
+79316,29834
+79317,79282
+79318,32214
+79319,21618
+79320,75016
+79321,39747
+79322,69012
+79323,70925
+79324,30073
+79325,50267
+79326,46457
+79327,19394
+79328,31615
+79329,47805,24851
+79330,66185
+79331,70416
+79332,63813
+79333,81770
+79334,42088
+79335,66873
+79336,21714
+79337,20761
+79338,51814
+79339,24807
+79340,24835
+79341,36710
+79342,70896
+79343,58200
+79344,46268
+79345,32662
+79346,71961
+79347,78989
+79348,25115
+79349,47716
+79350,53656
+79351,69482,19810
+79352,34924
+79353,55368
+79354,28091
+79355,28473
+79356,20654
+79357,39778,27519
+79358,69180
+79359,21670
+79360,60076
+79361,36755
+79362,30659
+79363,78598
+79364,27326
+79365,27337
+79366,72046
+79367,53959
+79368,78096
+79369,49483
+79370,68168
+79371,79282
+79372,78077
+79373,62054
+79374,26919
+79375,31640
+79376,52752
+79377,32790
+79378,48477
+79379,30807
+79380,81593
+79381,19228
+79382,40752
+79383,79385
+79384,47437
+79385,38883
+79386,53096
+79387,40074
+79388,59558
+79389,60786
+79390,76787
+79391,25383
+79392,51434
+79393,29321,27581
+79394,19552
+79395,69033
+79396,78073
+79397,59475
+79398,19654,53717
+79399,27756,37616
+79400,54562
+79401,53717
+79402,11858
+79403,66851
+79404,60281
+79405,22665
+79406,56492
+79407,81251
+79408,56871
+79409,38216
+79410,38217
+79411,81402
+79412,21618
+79413,26965
+79414,68055
+79415,53454
+79416,40752
+79417,70633
+79418,61621
+79419,51472
+79420,61621
+79421,19281
+79422,41220
+79423,81787
+79424,48629
+79425,78238
+79426,78398
+79427,58760
+79428,51523
+79429,25256
+79430,21703
+79431,79282
+79432,29189
+79433,38983
+79434,58854
+79435,48649
+79436,38974
+79437,58195
+79438,20698
+79439,22951
+79440,44113
+79441,39963
+79442,31515
+79443,53649
+79444,72697
+79445,74537
+79446,19849
+79447,62147
+79448,30298
+79449,81181
+79450,41877
+79451,44538
+79452,64513
+79453,47673
+79454,51630
+79455,64513
+79456,79282
+79457,28775
+79458,67432
+79459,65520
+79460,73407
+79461,58162
+79462,48126
+79463,20763
+79464,69286
+79465,11867
+79466,27233
+79467,27624
+79468,80219
+79469,31616
+79470,78095
+79471,32683
+79472,42225
+79473,61592
+79474,81462
+79475,79901
+79476,48534
+79477,48531
+79478,69146
+79479,38740
+79480,79282
+79481,28091
+79482,79481
+79483,79481
+79484,29928
+79485,43829
+79486,30693
+79487,66953
+79488,29321
+79489,29321
+79490,32580
+79491,54562
+79492,50919
+79493,79608
+79494,38807
+79495,69308
+79496,69308
+79497,35917
+79498,53716
+79499,68236
+79500,62409
+79501,79905
+79502,51730
+79503,62453
+79504,63314
+79505,25920
+79506,35557
+79507,19457
+79508,51660
+79509,26730
+79510,55768
+79511,60042
+79512,55348
+79513,19774
+79514,71686
+79515,53648
+79516,53648
+79517,38475
+79518,29737
+79519,29737
+79520,62852
+79521,34679
+79522,24379
+79523,48401
+79524,77460
+79525,62145
+79526,75874
+79527,34679
+79528,40416
+79529,62734
+79530,19384
+79531,32926
+79532,38675
+79533,61759
+79534,34680
+79535,81065
+79536,57280
+79537,43820
+79538,49483
+79539,62145
+79540,71719
+79541,68801
+79542,72018
+79543,62158
+79544,79175
+79545,55821
+79546,78647
+79547,60216
+79548,19480
+79549,22665
+79550,32926
+79551,30557
+79552,37824,74131
+79553,28129
+79554,49890
+79555,50396
+79556,46695
+79557,81552
+79558,39049
+79559,38529
+79560,79738
+79561,79738
+79562,60541
+79563,47307
+79564,65215
+79565,27845,79564
+79566,75344
+79567,58005
+79568,75337,79564
+79569,52633
+79570,63918
+79571,21218
+79572,79744
+79573,64748
+79574,52084
+79575,20698
+79576,58004
+79577,40941
+79578,22185
+79579,80001
+79580,66690
+79581,27153
+79582,30692
+79583,79881
+79584,50609
+79585,60534
+79586,70581
+79587,73669
+79588,46782
+79589,32461
+79590,32461
+79591,69357
+79592,30900
+79593,59237
+79594,48210
+79595,28593
+79596,78815
+79597,79596
+79598,77460
+79599,38566
+79600,75873
+79601,50888,69314
+79602,63064
+79603,75073
+79604,60162
+79605,60162
+79606,29707
+79607,52831
+79608,79211
+79609,53072
+79610,30514
+79611,19039
+79612,31239
+79613,37211
+79614,41736
+79615,71761
+79616,80793
+79617,39367
+79618,43983
+79619,43982
+79620,82191
+79621,81251
+79622,57681
+79623,45238
+79624,53959
+79625,52773
+79626,61311
+79627,44439
+79628,75007
+79629,25536
+79630,45813
+79631,25536
+79632,79629
+79633,79629
+79634,79629
+79635,81808
+79636,51180
+79637,32929
+79638,78210
+79639,19688
+79640,79630
+79641,63883
+79642,60343
+79643,74240
+79644,58595
+79645,25536
+79646,29623
+79647,55744
+79648,52773
+79649,73749
+79650,55768
+79651,55768
+79652,20977
+79653,71120
+79654,44023
+79655,70011
+79656,77424
+79657,45796
+79658,48077
+79659,79658,61577
+79660,59549
+79661,58287
+79662,62555
+79663,48283
+79664,29731
+79665,81552
+79666,45214
+79667,31245
+79668,19654
+79669,69416
+79670,52828
+79671,36602
+79672,59338
+79673,59338
+79674,61265
+79675,54223
+79676,53716
+79677,57350
+79678,64142
+79679,75433
+79680,65503
+79681,53866
+79682,31110
+79683,43724
+79684,55210
+79685,43724
+79686,70628
+79687,55767
+79688,45181
+79689,46709
+79690,65928
+79691,54253,48083
+79692,52832
+79693,67762
+79694,66862
+79695,48590
+79696,50922
+79697,61456
+79698,53624
+79699,53621
+79700,64923
+79701,31506
+79702,9930
+79703,59811
+79704,76779
+79705,64757
+79706,81065
+79707,59811
+79708,36035
+79709,46256
+79710,29711
+79711,67634
+79712,60016
+79713,72038
+79714,60484
+79715,72033
+79716,38793
+79717,47507
+79718,69106
+79719,60216
+79720,48474
+79721,53760
+79722,53758
+79723,53758
+79724,53758
+79725,26899
+79726,79722
+79727,50885
+79728,79722
+79729,79732
+79730,57223
+79731,63157
+79732,77585
+79733,21568
+79734,19708
+79735,21135
+79736,32222
+79737,71572
+79738,30882
+79739,35668
+79740,79744
+79741,44921
+79742,47500
+79743,35425
+79744,60015
+79745,60019
+79746,63314
+79747,60559
+79748,79712
+79749,70214
+79750,79745
+79751,69146
+79752,60011
+79753,60216
+79754,27293,34989
+79755,58144
+79756,28054
+79757,70199
+79758,73007
+79759,60450
+79760,23791
+79761,37885
+79762,60598
+79763,38372
+79764,57261
+79765,39429
+79766,79765
+79767,79765
+79768,1594
+79769,1594
+79770,1594
+79771,1594
+79772,1594
+79773,80265,21034
+79774,39429
+79775,39429,21034
+79776,39429
+79777,79776
+79778,79776
+79779,80265
+79780,35134,60821
+79781,29432
+79782,57182
+79783,33326
+79784,19741
+79785,70651
+79786,39018
+79787,51649
+79788,71516
+79789,56179
+79790,19069
+79791,18854
+79792,45997
+79793,37776
+79794,27622
+79795,37882
+79796,37210
+79797,57934
+79798,24249
+79799,41388
+79800,78756
+79801,57573
+79802,62145
+79803,61680
+79804,81578
+79805,81592
+79806,41440
+79807,30267
+79808,40945
+79809,55736
+79810,55734
+79811,37202
+79812,65649
+79813,65650
+79814,37197
+79815,57360
+79816,71961
+79817,51665
+79818,53293
+79819,18919
+79820,75433
+79821,43913
+79822,70426
+79823,71686
+79824,30882
+79825,60595
+79826,71687
+79827,53613
+79828,30882
+79829,75669
+79830,79828
+79831,59309
+79832,62447
+79833,24261
+79834,70629
+79835,71961
+79836,19368
+79837,71837
+79838,28425
+79839,39049
+79840,59497
+79841,74082
+79842,53866
+79843,28791
+79844,48936
+79845,43107
+79846,35464
+79847,79848
+79848,47442
+79849,43109
+79850,55394
+79851,43126
+79852,81506
+79853,39130
+79854,29120
+79855,66260
+79856,22786
+79857,32530
+79858,32520
+79859,56470
+79860,61395
+79861,62324
+79862,62441
+79863,37411
+79864,36569
+79865,77453
+79866,23428
+79867,28167
+79868,23428
+79869,54130
+79870,53619
+79871,53619
+79872,63663
+79873,71697
+79874,78703
+79875,54130
+79876,64159
+79877,64159
+79878,71547
+79879,70568
+79880,69308
+79881,81626
+79882,69148
+79883,78257
+79884,61260
+79885,70847
+79886,59549
+79887,25256
+79888,65509,38887
+79889,25122
+79890,70091
+79891,38013
+79892,53480
+79893,35196
+79894,40012
+79895,45751
+79896,33302
+79897,33305
+79898,79282
+79899,29368
+79900,65758
+79901,62853
+79902,35474
+79903,25094
+79904,44440
+79905,29120
+79906,57211
+79907,37789
+79908,29488
+79909,19636
+79910,25367
+79911,53648
+79912,62545
+79913,66551
+79914,73323
+79915,50889
+79916,78059
+79917,59376
+79918,35926
+79919,74500
+79920,60800
+79921,26299
+79922,21953
+79923,51068
+79924,60476
+79925,79923
+79926,60483
+79927,63254
+79928,58152
+79929,65450
+79930,49343
+79931,77585
+79932,72029
+79933,59153
+79934,71686
+79935,63070
+79936,70629
+79937,78755
+79938,34357
+79939,34072
+79940,80505
+79941,33812
+79942,24331
+79943,39613
+79944,18728
+79945,48126
+79946,48126
+79947,53454
+79948,42003
+79949,59775
+79950,46107
+79951,44604
+79952,80011
+79953,21358
+79954,61979
+79955,59479
+79956,31853
+79957,25770
+79958,26884
+79959,49888
+79960,30891
+79961,19699
+79962,46935
+79963,65627
+79964,34460
+79965,31179
+79966,40700
+79967,41546
+79968,68059
+79969,37113
+79970,31476
+79971,41837
+79972,80761
+79973,80761
+79974,76752
+79975,80753
+79976,36540
+79977,81759
+79978,58287
+79979,52521
+79980,70033
+79981,28952
+79982,55444,71961
+79983,33189
+79984,79973
+79985,58948
+79986,58948
+79987,80047
+79988,21477
+79989,62360
+79990,47747
+79991,60216
+79992,35284
+79993,68196
+79994,66889
+79995,79992
+79996,80438
+79997,79580
+79998,80164
+79999,26980
+80000,25017
+80001,80005,60598
+80002,75772
+80003,60216
+80004,22128
+80005,31469
+80006,25019
+80007,48251
+80008,42002
+80009,77575
+80010,27687
+80011,51928
+80012,59541
+80013,60216
+80014,68780,34763
+80015,66953
+80016,79552
+80017,19231
+80018,38814
+80019,59427
+80020,65654
+80021,80009
+80022,21113
+80023,21112
+80024,27565
+80025,77160
+80026,20313
+80027,80009
+80028,69818
+80029,41444
+80030,41444
+80031,64515
+80032,78687
+80033,72323
+80034,60397
+80035,35621
+80036,69818
+80037,73222
+80038,60397
+80039,73726
+80040,63442
+80041,19144
+80042,35156
+80043,43107
+80044,57333
+80045,50652
+80046,39638
+80047,59355
+80048,73598
+80049,29845
+80050,32837
+80051,43148
+80052,58953
+80053,73426
+80054,61334
+80055,66786
+80056,45813
+80057,72323
+80058,65107
+80059,27267
+80060,41917
+80061,49546
+80062,81626
+80063,25017
+80064,27781
+80065,73516
+80066,60802
+80067,40752
+80068,70069
+80069,40752
+80070,24874
+80071,46183
+80072,81307
+80073,55533
+80074,22442
+80075,59020
+80076,70629
+80077,41023
+80078,81482
+80079,37181
+80080,57249
+80081,24726
+80082,79261
+80083,60956
+80084,55802
+80085,33793
+80086,22853
+80087,33798
+80088,23521
+80089,25715
+80090,66859
+80091,77585
+80092,77575
+80093,19918
+80094,78925
+80095,40752
+80096,31736
+80097,34210
+80098,29654
+80099,20823
+80100,60216
+80101,69148
+80102,34249
+80103,27086
+80104,46707
+80105,31353
+80106,54404
+80107,22507
+80108,25908
+80109,41856
+80110,22229
+80111,32195
+80112,32926
+80113,81807
+80114,55388
+80115,33186
+80116,66696
+80117,70406
+80118,34389
+80119,19421
+80120,21625
+80121,59379
+80122,59380
+80123,57564
+80124,66953
+80125,81056
+80126,30555
+80127,70033
+80128,70033
+80129,20745
+80130,41977
+80131,70426
+80132,58287
+80133,60216
+80134,19379
+80135,24780
+80136,50630
+80137,62145
+80138,50630
+80139,62145
+80140,80138
+80141,30391
+80142,30391
+80143,41917
+80144,54432
+80145,21730
+80146,73475
+80147,51238
+80148,81643
+80149,20990
+80150,38836
+80151,81612
+80152,67479
+80153,29457
+80154,81397
+80155,54423
+80156,62659
+80157,41669
+80158,62659
+80159,52215
+80160,58916
+80161,45308
+80162,46757
+80163,30891
+80164,48171
+80165,75718
+80166,75121
+80167,73584
+80168,76345
+80169,35753
+80170,35756
+80171,23833
+80172,80485
+80173,45570,54441
+80174,81770
+80175,68835
+80176,54425
+80177,65133
+80178,33488
+80179,20751
+80180,26522
+80181,66042
+80182,42109
+80183,81103
+80184,60216
+80185,69744,54441
+80186,47621
+80187,26320
+80188,24704,49637
+80189,74826
+80190,76664
+80191,45813
+80192,31239
+80193,80258
+80194,26579
+80195,73640
+80196,80383
+80197,81601
+80198,39049
+80199,28491
+80200,70462
+80201,23285
+80202,34924
+80203,63424
+80204,23383
+80205,33928
+80206,81626
+80207,68629
+80208,80896
+80209,80206
+80210,50579
+80211,80197
+80212,44347
+80213,71450
+80214,76865
+80215,41917
+80216,78090
+80217,80197,29691
+80218,80206
+80219,47127
+80220,56651
+80221,79988
+80222,63790
+80223,36499
+80224,34207
+80225,52144
+80226,19171
+80227,53454
+80228,19228
+80229,80228
+80230,80228
+80231,80228
+80232,80228
+80233,59020
+80234,31616
+80235,63105
+80236,76664
+80237,69704
+80238,76680
+80239,74591
+80240,27276
+80241,27781
+80242,79749
+80243,35558
+80244,81214
+80245,69286
+80246,22901
+80247,34285
+80248,81635
+80249,60216
+80250,22137
+80251,22130
+80252,52773
+80253,44514
+80254,77185
+80255,37519
+80256,51642,41004,57259
+80257,24194,51643
+80258,58783
+80259,57144
+80260,54655
+80261,28616
+80262,80324
+80263,80324
+80264,80360
+80265,79764
+80266,22384
+80267,80312
+80268,23643
+80269,23748
+80270,32672
+80271,24764
+80272,80276
+80273,25434
+80274,21922
+80275,12327
+80276,45909
+80277,26645
+80278,80284
+80279,46673
+80280,43657
+80281,27721
+80282,78100
+80283,72185
+80284,21361
+80285,28870
+80286,37183
+80287,80324
+80288,29332
+80289,29845
+80290,76865
+80291,29959
+80292,78995
+80293,31482
+80294,34924
+80295,21361
+80296,38822
+80297,72426
+80298,67577
+80299,61705
+80300,37582
+80301,39475,61526
+80302,61705
+80303,40021
+80304,30316
+80305,41773,42246
+80306,42358
+80307,39522
+80308,43364
+80309,78197
+80310,22937
+80311,45336
+80312,45546,75292
+80313,61705
+80314,45951
+80315,61947
+80316,45813
+80317,21361
+80318,47315
+80319,79469
+80320,49376
+80321,61979,57407
+80322,37542
+80323,80306
+80324,21361
+80325,51468
+80326,51862
+80327,51939
+80328,52718
+80329,54130
+80330,21361
+80331,54469
+80332,80356
+80333,61070
+80334,54944
+80335,57277
+80336,80324
+80337,57289
+80338,80257
+80339,47028
+80340,58287
+80341,53275
+80342,21361
+80343,61415
+80344,53275
+80345,61830
+80346,22036
+80347,63775
+80348,66862
+80349,66551
+80350,32000,77509
+80351,55374
+80352,80276
+80353,21361
+80354,70010
+80355,70591
+80356,30514
+80357,71431
+80358,71895
+80359,21361
+80360,72421
+80361,39183
+80362,21361
+80363,21361
+80364,80276
+80365,75019
+80366,39101
+80367,43107
+80368,11870
+80369,66025
+80370,77575
+80371,71131
+80372,79151
+80373,79214
+80374,39522
+80375,79852
+80376,79852
+80377,79973
+80378,51275
+80379,35863
+80380,20905
+80381,60786
+80382,80258
+80383,58803
+80384,58800
+80385,58798
+80386,28546
+80387,80483
+80388,32685
+80389,32888
+80390,32887
+80391,20328
+80392,73323
+80393,39379
+80394,25113
+80395,21358
+80396,29513
+80397,53590
+80398,76260
+80399,80714
+80400,80716
+80401,31616
+80402,80281
+80403,66084
+80404,45813
+80405,51468
+80406,34272
+80407,53180
+80408,36707
+80409,53829
+80410,53830
+80411,59975
+80412,62407
+80413,39049
+80414,30073
+80415,63416
+80416,51468
+80417,22948
+80418,70644
+80419,77076
+80420,31281
+80421,25113
+80422,21361
+80423,80753
+80424,80753
+80425,27625
+80426,81647
+80427,62441
+80428,81617
+80429,18864
+80430,41444
+80431,27754
+80432,26302
+80433,53624
+80434,80524
+80435,66673
+80436,44816
+80437,55348
+80438,55494
+80439,33455
+80440,55494
+80441,43168
+80442,20698
+80443,35150
+80444,80440
+80445,63295
+80446,74535
+80447,64170
+80448,41562
+80449,68289
+80450,69235
+80451,31278
+80452,58196
+80453,35735
+80454,30891
+80455,55348
+80456,32603
+80457,78635
+80458,21959
+80459,51068
+80460,51624
+80461,28518
+80462,30719
+80463,41572
+80464,23765
+80465,68064
+80466,70033
+80467,39517
+80468,59020
+80469,46843
+80470,19811
+80471,64142
+80472,47868
+80473,21276
+80474,52857
+80475,58287
+80476,37232
+80477,19629
+80478,31245
+80479,69554
+80480,27992
+80481,29119
+80482,35735
+80483,21745
+80484,49343
+80485,32505
+80486,59775
+80487,77585
+80488,77575
+80489,70033
+80490,73838
+80491,66086
+80492,37165
+80493,48505
+80494,80505
+80495,51156
+80496,19656
+80497,77452
+80498,34209
+80499,67703
+80500,68610
+80501,60216
+80502,37527
+80503,54729
+80504,62614
+80505,63314
+80506,32455
+80507,63316
+80508,18853
+80509,53456
+80510,40060
+80511,74090
+80512,48408
+80513,60259
+80514,80512
+80515,48423
+80516,54441,68990
+80517,61562
+80518,34861
+80519,19171
+80520,78970
+80521,60216
+80522,55815
+80523,66015
+80524,22053
+80525,19382
+80526,78855
+80527,63182
+80528,53067
+80529,64453
+80530,67921
+80531,79471
+80532,73762
+80533,80537
+80534,23130
+80535,52960
+80536,54126
+80537,53648
+80538,34771
+80539,32691
+80540,58287
+80541,45030
+80542,57333
+80543,39049
+80544,53848
+80545,77552
+80546,54789
+80547,67608
+80548,35053
+80549,76057
+80550,31100
+80551,48318
+80552,24314
+80553,80542
+80554,75336
+80555,39049
+80556,29921
+80557,35192
+80558,40860
+80559,20749
+80560,75604
+80561,27997
+80562,50489
+80563,28346
+80564,59377
+80565,20819
+80566,26884
+80567,33928
+80568,44551
+80569,63074
+80570,56663
+80571,60534
+80572,62702
+80573,65109
+80574,66617
+80575,48874
+80576,47819
+80577,77740
+80578,33512
+80579,45625
+80580,69818
+80581,76631
+80582,31464
+80583,79211
+80584,22901
+80585,39379
+80586,45009
+80587,42225
+80588,76664
+80589,76664
+80590,80589
+80591,33941
+80592,76664
+80593,46363
+80594,66023
+80595,79028
+80596,22688
+80597,69238
+80598,56663
+80599,55444
+80600,78647
+80601,67498
+80602,23689
+80603,52199
+80604,72559
+80605,26091
+80606,81176
+80607,23748
+80608,70033
+80609,68061
+80610,57573
+80611,57989
+80612,60604
+80613,21745
+80614,72435
+80615,47671
+80616,30206
+80617,25125
+80618,78703
+80619,25125
+80620,22032
+80621,39638
+80622,33753
+80623,64620
+80624,74825
+80625,18919
+80626,44240
+80627,80761
+80628,30692
+80629,49298
+80630,32691
+80631,53317
+80632,39424
+80633,21888
+80634,27777
+80635,72958
+80636,81601
+80637,79469
+80638,69482
+80639,30954
+80640,38614
+80641,71747
+80642,44240
+80643,78096
+80644,63392
+80645,66377
+80646,73838
+80647,23763
+80648,68641
+80649,76303
+80650,80618
+80651,25598
+80652,81750
+80653,63017
+80654,44701
+80655,19449
+80656,55952
+80657,35386
+80658,51894
+80659,27534
+80660,30962
+80661,30962
+80662,30962
+80663,70104
+80664,30962
+80665,81193
+80666,67822
+80667,52024
+80668,24565
+80669,24742
+80670,26662
+80671,28990
+80672,29132
+80673,31977
+80674,39641
+80675,77661
+80676,45732
+80677,45738
+80678,46287
+80679,50179
+80680,50426
+80681,43781
+80682,53589
+80683,55561
+80684,41657
+80685,40241
+80686,79467
+80687,61705
+80688,62029
+80689,64613
+80690,67608
+80691,21396
+80692,70033
+80693,68025
+80694,70660
+80695,71873
+80696,75264
+80697,78024
+80698,40752
+80699,80748
+80700,80808
+80701,80932
+80702,60345
+80703,48210
+80704,31417
+80705,76196
+80706,23019
+80707,79867
+80708,36426
+80709,40862
+80710,56029
+80711,42225
+80712,69609
+80713,50297
+80714,31245
+80715,81643
+80716,28539
+80717,28775
+80718,71686
+80719,76248
+80720,28389
+80721,20441
+80722,20755
+80723,69564
+80724,65808
+80725,68554
+80726,46555
+80727,53163
+80728,69744
+80729,44628
+80730,66302
+80731,71167
+80732,26133
+80733,39556
+80734,65075
+80735,28323
+80736,43893
+80737,43892
+80738,40419
+80739,40736
+80740,41953
+80741,57261
+80742,43487
+80743,67377
+80744,45369
+80745,76441
+80746,43898
+80747,30325
+80748,44013
+80749,56376
+80750,60258
+80751,41105
+80752,45677
+80753,52499
+80754,46245
+80755,21873
+80756,36329
+80757,44647
+80758,77641
+80759,35735
+80760,28438
+80761,79274,31616
+80762,53112
+80763,63363
+80764,53648
+80765,81759
+80766,68196
+80767,25843
+80768,74939
+80769,68622
+80770,68676
+80771,51894
+80772,53614
+80773,35279
+80774,23082
+80775,73412
+80776,33729
+80777,69269
+80778,50856
+80779,73732
+80780,23420
+80781,33047
+80782,76631
+80783,30989
+80784,12328
+80785,78755
+80786,66786
+80787,34808
+80788,40600
+80789,48408
+80790,24874
+80791,50910
+80792,71510
+80793,21373
+80794,30514
+80795,31991
+80796,39049
+80797,48251
+80798,77059
+80799,21922
+80800,29405
+80801,44273
+80802,23613
+80803,32775
+80804,62187
+80805,77015
+80806,43566
+80807,69408
+80808,75634
+80809,71686
+80810,55494
+80811,67131
+80812,53660
+80813,23748
+80814,34720
+80815,33425
+80816,81247
+80817,54821
+80818,26092
+80819,39677
+80820,44793
+80821,51665
+80822,25434
+80823,49376
+80824,36496
+80825,36496
+80826,71728
+80827,71965
+80828,71961
+80829,27091
+80830,36041
+80831,27506
+80832,59378
+80833,81200
+80834,19108,70221
+80835,71686
+80836,70214
+80837,77160
+80838,48154
+80839,19106
+80840,64637
+80841,70220
+80842,55736
+80843,78176
+80844,52905
+80845,19062
+80846,74659
+80847,82020
+80848,57254
+80849,60321
+80850,46003
+80851,11867
+80852,81501
+80853,73271
+80854,66855
+80855,59745
+80856,81161
+80857,26639
+80858,49088
+80859,49903
+80860,11867
+80861,40752
+80862,57280
+80863,19947
+80864,21814
+80865,22935
+80866,51462
+80867,65910
+80868,25770
+80869,26091
+80870,26191
+80871,26884
+80872,34049
+80873,70249
+80874,29102
+80875,29957
+80876,32738
+80877,32979
+80878,32979
+80879,33420
+80880,33640
+80881,33997
+80882,51159
+80883,35992
+80884,72892
+80885,62178
+80886,8175
+80887,81107
+80888,74904
+80889,70320
+80890,40411
+80891,41638
+80892,41646
+80893,41877
+80894,43418
+80895,20120
+80896,46317
+80897,36670
+80898,46757
+80899,45547
+80900,45669
+80901,46444
+80902,46523
+80903,30937
+80904,60786
+80905,50784
+80906,64878
+80907,51230
+80908,65481
+80909,52374
+80910,52586
+80911,57720
+80912,52850
+80913,52904,18149
+80914,36840
+80915,77641
+80916,77641
+80917,53217
+80918,56457
+80919,20120
+80920,54467
+80921,38477
+80922,55570
+80923,55581
+80924,55586
+80925,55807
+80926,56836
+80927,57289
+80928,60481
+80929,59827
+80930,59980
+80931,69258
+80932,60899
+80933,60898
+80934,62021
+80935,21959
+80936,66393
+80937,66475
+80938,45813
+80939,41877
+80940,67614
+80941,67957
+80942,68909
+80943,69177
+80944,63405
+80945,70772
+80946,70860
+80947,45813
+80948,71146
+80949,72559
+80950,80903
+80951,73477
+80952,73758
+80953,74520
+80954,64431
+80955,53817
+80956,25533
+80957,18149,61997
+80958,78258
+80959,40908
+80960,36029
+80961,81176
+80962,81251
+80963,81448
+80964,81462,18149
+80965,81488
+80966,81865
+80967,82130
+80968,45885
+80969,82055
+80970,80932
+80971,80438
+80972,33364
+80973,47231
+80974,29963
+80975,68622
+80976,41588
+80977,71398,41014
+80978,46408
+80979,24704
+80980,22596
+80981,31029
+80982,28532
+80983,71213
+80984,62476
+80985,45316
+80986,65977
+80987,71074
+80988,34272
+80989,80193
+80990,29707
+80991,18149
+80992,67703
+80993,67703
+80994,60032
+80995,68277
+80996,41980
+80997,36312
+80998,44418
+80999,47432
+81000,71686
+81001,40206
+81002,69661
+81003,31158
+81004,57333
+81005,75558
+81006,24807
+81007,42023
+81008,51270
+81009,54446
+81010,57066
+81011,66122
+81012,38001
+81013,71182
+81014,80739
+81015,81174
+81016,43736
+81017,69012
+81018,64142
+81019,33186
+81020,66279
+81021,74689
+81022,48084,66101
+81023,32711
+81024,51230
+81025,26298
+81026,60866
+81027,33488
+81028,21959
+81029,27447
+81030,52121
+81031,54467
+81032,65050
+81033,80540
+81034,31991
+81035,31991
+81036,31245
+81037,81482
+81038,81602
+81039,23294
+81040,32920
+81041,33014
+81042,57897
+81043,42337
+81044,32923
+81045,51947
+81046,27062
+81047,31117
+81048,68433
+81049,31992
+81050,19861
+81051,63960
+81052,81062
+81053,47870
+81054,28538
+81055,36694
+81056,81462
+81057,61659
+81058,52092
+81059,52904
+81060,76662
+81061,53167
+81062,35254
+81063,31862
+81064,71446
+81065,81462,72482
+81066,44826
+81067,28935
+81068,55348
+81069,40601
+81070,50459
+81071,60216
+81072,52118
+81073,52773
+81074,51947
+81075,72959
+81076,63937
+81077,71279
+81078,20665
+81079,21260
+81080,21869
+81081,45813
+81082,74826
+81083,38257
+81084,33134
+81085,53275
+81086,39116
+81087,61402
+81088,81161
+81089,45813
+81090,41729
+81091,28822
+81092,70033
+81093,32326
+81094,81079
+81095,27187
+81096,36694
+81097,77641
+81098,20079
+81099,32713
+81100,45813
+81101,43554
+81102,52857
+81103,46599
+81104,27044
+81105,51395
+81106,47026
+81107,81549
+81108,20079
+81109,23675
+81110,45813
+81111,54458
+81112,81342
+81113,81342
+81114,74067
+81115,23675
+81116,62902
+81117,41743
+81118,77641
+81119,57304
+81120,57685
+81121,20079
+81122,79630
+81123,78486
+81124,59300,80583
+81125,50919
+81126,70033
+81127,70249
+81128,61078
+81129,61510
+81130,79608
+81131,55236
+81132,65353
+81133,57304
+81134,43893
+81135,28323
+81136,70033
+81137,44013
+81138,67548
+81139,74067
+81140,45813
+81141,69306
+81142,25518
+81143,44232
+81144,72575
+81145,73612
+81146,77641
+81147,75583
+81148,76478
+81149,76812
+81150,45813
+81151,80735
+81152,79608
+81153,27900
+81154,73726
+81155,57627
+81156,57634
+81157,35545
+81158,63176
+81159,43104
+81160,31348
+81161,20689,81163
+81162,24307
+81163,61246
+81164,64718
+81165,51256
+81166,78774
+81167,48697
+81168,59450
+81169,63918
+81170,50875
+81171,47493
+81172,75450
+81173,37172
+81174,35679
+81175,76059
+81176,77641
+81177,21959
+81178,57289
+81179,45813
+81180,28999
+81181,61251
+81182,80498
+81183,80501
+81184,45392
+81185,79552
+81186,39088
+81187,72945
+81188,39049
+81189,40471
+81190,51298
+81191,48146
+81192,38705
+81193,80524
+81194,75216
+81195,67054
+81196,34199
+81197,62435
+81198,30316
+81199,20231
+81200,55758
+81201,62029
+81202,80528
+81203,80537
+81204,73838
+81205,78204
+81206,36343
+81207,35023
+81208,34337
+81209,38867
+81210,45597
+81211,38287
+81212,81626
+81213,53648
+81214,53648
+81215,37179
+81216,56474
+81217,67574
+81218,54469
+81219,42469
+81220,40098
+81221,76664
+81222,57901
+81223,57897
+81224,35668
+81225,58948
+81226,57897
+81227,41444
+81228,80197
+81229,24732
+81230,25574
+81231,29688
+81232,32691
+81233,34197
+81234,38039
+81235,41444
+81236,58647
+81237,68430
+81238,23869
+81239,81229
+81240,80206
+81241,50856
+81242,58945
+81243,70294
+81244,68430
+81245,53648
+81246,79749
+81247,73481
+81248,35386
+81249,70111
+81250,81248
+81251,19936
+81252,33845
+81253,81914
+81254,23019
+81255,25434
+81256,26217
+81257,23164
+81258,31453
+81259,67559
+81260,67957
+81261,75443
+81262,42351
+81263,79612
+81264,64809
+81265,43364
+81266,45625
+81267,77287
+81268,62740
+81269,38375,61247
+81270,70644
+81271,46215
+81272,62144
+81273,71315
+81274,19828
+81275,45689
+81276,19849
+81277,58144
+81278,72729
+81279,81277
+81280,37034
+81281,30634
+81282,51830
+81283,57249
+81284,57242
+81285,69851
+81286,69818
+81287,76847
+81288,22540
+81289,22542
+81290,79608
+81291,37582
+81292,20370
+81293,45813
+81294,70033
+81295,72220
+81296,22032
+81297,60847
+81298,48353
+81299,53613
+81300,35737
+81301,35737
+81302,33130
+81303,39088
+81304,60216
+81305,24732
+81306,42076
+81307,31647
+81308,21475
+81309,74132
+81310,62189
+81311,73632
+81312,40062
+81313,69171
+81314,21211
+81315,68679
+81316,23095
+81317,77641
+81318,45813
+81319,32887
+81320,32888
+81321,81337
+81322,81336
+81323,33420
+81324,66592
+81325,70033
+81326,38256
+81327,45813
+81328,49138
+81329,55791
+81330,74766
+81331,19629
+81332,8179
+81333,67999
+81334,68001
+81335,71552
+81336,72635
+81337,72637
+81338,70033
+81339,14950
+81340,81743
+81341,23946
+81342,45813
+81343,40564
+81344,72189
+81345,81626
+81346,31607
+81347,37388
+81348,40132
+81349,51301
+81350,31278
+81351,41395
+81352,46997
+81353,39049
+81354,37169
+81355,42358
+81356,43362
+81357,36147,47592
+81358,52627
+81359,45009
+81360,75942
+81361,75641
+81362,51882
+81363,70629
+81364,30891
+81365,48791
+81366,56472
+81367,50459
+81368,50755
+81369,29418
+81370,53056
+81371,68193
+81372,31638
+81373,50005
+81374,77374
+81375,43723
+81376,54937
+81377,53021
+81378,78878
+81379,65793
+81380,24385
+81381,62613
+81382,65975
+81383,34783
+81384,24007
+81385,51677
+81386,41907
+81387,47493
+81388,52071
+81389,27276
+81390,70990
+81391,58709
+81392,40680
+81393,78126
+81394,79608
+81395,52071
+81396,54044
+81397,47503
+81398,45107
+81399,77075
+81400,71632
+81401,37582
+81402,70033
+81403,52157
+81404,71634
+81405,21946
+81406,78126
+81407,49181
+81408,58969
+81409,62455
+81410,65816
+81411,65816
+81412,69173
+81413,34613
+81414,66222
+81415,47954
+81416,75917
+81417,74939
+81418,22268
+81419,47991
+81420,36603
+81421,31647
+81422,73863
+81423,34645
+81424,22900
+81425,25715
+81426,25115
+81427,60216
+81428,66151
+81429,66193
+81430,74112
+81431,47833
+81432,19475
+81433,60216
+81434,76005
+81435,70231
+81436,60011,71961
+81437,25573
+81438,48477
+81439,33268
+81440,36872
+81441,45813
+81442,55494
+81443,76249
+81444,55445
+81445,60218
+81446,58917
+81447,32455
+81448,27187
+81449,81467
+81450,81116
+81451,40590
+81452,58699
+81453,82056,81448
+81454,72153
+81455,24710
+81456,46760
+81457,54562
+81458,19098
+81459,54562
+81460,55815
+81461,39607
+81462,39607,19438
+81463,29928
+81464,62145
+81465,19452
+81466,29626
+81467,51180,52904
+81468,59970
+81469,39621
+81470,53283
+81471,65204
+81472,36767
+81473,71719
+81474,45096
+81475,21978
+81476,52904
+81477,81462
+81478,48474
+81479,19394
+81480,50296
+81481,47505
+81482,61257
+81483,43691
+81484,78014
+81485,20641
+81486,20641
+81487,20883
+81488,21959
+81489,29040
+81490,81491
+81491,36694
+81492,39676
+81493,43891
+81494,31960
+81495,46662
+81496,47311
+81497,73477
+81498,51400
+81499,53588
+81500,45813
+81501,55451
+81502,56480
+81503,60771
+81504,63753
+81505,64383
+81506,66862
+81507,43148
+81508,72575
+81509,27455
+81510,58287
+81511,56180
+81512,76441
+81513,45142
+81514,79709
+81515,12341
+81516,46444
+81517,48787
+81518,81547
+81519,27756
+81520,69887
+81521,38795
+81522,32685
+81523,37921
+81524,37920
+81525,50117
+81526,25296
+81527,72399,81529
+81528,22429
+81529,80145
+81530,78432
+81531,64142
+81532,27595
+81533,58604
+81534,40752
+81535,49001
+81536,60661
+81537,60810
+81538,74067
+81539,68448
+81540,69604
+81541,39676
+81542,67381
+81543,26091
+81544,81200
+81545,29623
+81546,81602
+81547,32691
+81548,81681
+81549,79211
+81550,76345
+81551,52168
+81552,20748
+81553,30063
+81554,39049
+81555,68854
+81556,20755
+81557,35781
+81558,43863
+81559,36425
+81560,19319
+81561,81562
+81562,21140
+81563,81562
+81564,27997
+81565,81564
+81566,81161
+81567,50969
+81568,52896
+81569,11862
+81570,66393
+81571,81161
+81572,61533
+81573,51617
+81574,8397
+81575,31115
+81576,58102
+81577,72983
+81578,50369
+81579,81781
+81580,35879
+81581,76211
+81582,59258
+81583,69113
+81584,58118
+81585,34737
+81586,61382
+81587,33885
+81588,21275
+81589,47829
+81590,63988
+81591,73684
+81592,65478
+81593,41264
+81594,81781
+81595,51141
+81596,72051
+81597,50359
+81598,64831
+81599,81781
+81600,37884
+81601,19228
+81602,63117
+81603,29928
+81604,34506
+81605,69782,81660
+81606,37199
+81607,20743
+81608,27077
+81609,19458
+81610,41107
+81611,81602
+81612,21671
+81613,71595
+81614,74537
+81615,76664
+81616,49266
+81617,78703
+81618,31094
+81619,31095
+81620,31616
+81621,81659
+81622,25017
+81623,25302
+81624,33929
+81625,80591
+81626,60216
+81627,48318
+81628,81627
+81629,52497
+81630,46599
+81631,61999
+81632,49113
+81633,38614
+81634,19737
+81635,35944
+81636,81626,43313
+81637,78698
+81638,53867
+81639,65202
+81640,50875
+81641,67273
+81642,37721
+81643,37712
+81644,81626
+81645,30975
+81646,81602
+81647,43103
+81648,66953
+81649,19228
+81650,53660
+81651,32362
+81652,63185
+81653,81801
+81654,69634
+81655,32506
+81656,81647
+81657,71838
+81658,35196
+81659,75057
+81660,21201
+81661,81615
+81662,59305
+81663,29626
+81664,46387,44437
+81665,38794
+81666,53805
+81667,19542
+81668,32362
+81669,20082
+81670,72960
+81671,60074
+81672,65203
+81673,80106
+81674,58450
+81675,60216
+81676,31165
+81677,30697
+81678,63316
+81679,52832
+81680,68448
+81681,48787
+81682,78755
+81683,39294
+81684,64622
+81685,60032
+81686,42388
+81687,42539
+81688,51814
+81689,42388
+81690,25122
+81691,41305
+81692,46270
+81693,80583
+81694,74067
+81695,38369
+81696,81694
+81697,72451
+81698,72372
+81699,21087
+81700,19699
+81701,22656
+81702,28539
+81703,19228
+81704,52189
+81705,19395
+81706,66164
+81707,38566
+81708,22122
+81709,39049
+81710,76345
+81711,45813
+81712,52870
+81713,47908
+81714,64142
+81715,43723
+81716,48748
+81717,64142
+81718,81714
+81719,47673
+81720,35765
+81721,60251
+81722,48251
+81723,33755
+81724,78163
+81725,59970
+81726,81796
+81727,68702
+81728,34826
+81729,34074
+81730,67822
+81731,29839
+81732,42225
+81733,32578
+81734,59020
+81735,60032
+81736,41926
+81737,55263
+81738,40756
+81739,34174
+81740,69744
+81741,59306
+81742,50117
+81743,59441
+81744,76787
+81745,12341
+81746,45009
+81747,48251
+81748,63733
+81749,73840
+81750,30557
+81751,31612
+81752,29619
+81753,53417
+81754,53422
+81755,66616
+81756,65943
+81757,35490
+81758,48106
+81759,32691
+81760,29919
+81761,35157
+81762,54153
+81763,34661
+81764,43400
+81765,63426
+81766,60870
+81767,22901
+81768,22901
+81769,80238
+81770,50875
+81771,81770
+81772,81770
+81773,81770
+81774,81770
+81775,81770
+81776,79905
+81777,27090
+81778,27135
+81779,34652
+81780,51706
+81781,30891
+81782,24784
+81783,71938
+81784,56009
+81785,81800,57543
+81786,81800
+81787,79377
+81788,19228
+81789,81800
+81790,21536
+81791,81614
+81792,27781
+81793,34786
+81794,47655
+81795,48254
+81796,59020
+81797,38883
+81798,19737,50875
+81799,21912
+81800,30882
+81801,65202
+81802,74903
+81803,81578
+81804,48249
+81805,48253
+81806,57934
+81807,22665
+81808,19228
+81809,34041
+81810,47552
+81811,48875
+81812,24710
+81813,81536
+81814,54562
+81815,54562
+81816,36350
+81817,31890
+81818,67675
+81819,81822
+81820,19069
+81821,58158
+81822,70651
+81823,81822
+81824,81822
+81825,38475
+81826,27640
+81827,79743
+81828,70651
+81829,66786
+81830,28780,56806
+81831,71319
+81832,54562
+81833,77514
+81834,40752
+81835,47371
+81836,81835
+81837,58763
+81838,60543
+81839,36673
+81840,64544
+81841,36673
+81842,31940
+81843,51068
+81844,25256
+81845,79215
+81846,71567
+81847,60044
+81848,70033
+81849,31890
+81850,31417
+81851,79471
+81852,40950
+81853,29969
+81854,67577
+81855,35391
+81856,58589
+81857,75216
+81858,54446
+81859,26656
+81860,42151
+81861,58175
+81862,78100
+81863,74776
+81864,66977
+81865,79608
+81866,79608
+81867,79608
+81868,62937
+81869,63733
+81870,77277
+81871,77277
+81872,71900
+81873,37776
+81874,39818
+81875,51523
+81876,77277
+81877,65233
+81878,53958
+81879,51467
+81880,53179
+81881,35735
+81882,37805
+81883,51523
+81884,81190
+81885,54485
+81886,42151
+81887,77373
+81888,50117
+81889,35645,77373
+81890,72839
+81891,67274
+81892,70686
+81893,19055
+81894,45374
+81895,49944
+81896,46285
+81897,21777
+81898,78257
+81899,70976
+81900,67574
+81901,65509
+81902,60216
+81903,48084
+81904,19570
+81905,76664
+81906,76664
+81907,76664
+81908,37802
+81909,52053
+81910,81907
+81911,25302
+81912,64409
+81913,61159
+81914,41877
+81915,50803
+81916,81915
+81917,33186
+81918,29237
+81919,67872
+81920,35085
+81921,26448
+81922,11857
+81923,56674
+81924,50108
+81925,53275
+81926,55294
+81927,19979
+81928,31417
+81929,40608
+81930,53286
+81931,35992
+81932,22384
+81933,22384
+81934,69258
+81935,23675
+81936,45813
+81937,51649
+81938,24302
+81939,41399
+81940,31043
+81941,29817
+81942,30355
+81943,28104
+81944,61251
+81945,81944
+81946,41396
+81947,43211
+81948,43418
+81949,43562
+81950,44160
+81951,44384
+81952,46444
+81953,46444
+81954,48870
+81955,40411
+81956,49059
+81957,48084
+81958,46581
+81959,79608
+81960,49340
+81961,50184
+81962,77329
+81963,52121
+81964,52374
+81965,53164
+81966,53250
+81967,68025
+81968,57484
+81969,70033
+81970,60481
+81971,60024
+81972,53876
+81973,52121
+81974,60899
+81975,60898
+81976,80583
+81977,81161
+81978,67791
+81979,43668
+81980,61251
+81981,41877
+81982,74297
+81983,74296
+81984,53817
+81985,71146
+81986,11870
+81987,80324
+81988,53227
+81989,31058
+81990,78170
+81991,32979
+81992,54932
+81993,26448
+81994,26118
+81995,60935
+81996,67819
+81997,49059
+81998,71148
+81999,40734
+82000,66592
+82001,11870
+82002,81482
+82003,77641
+82004,8561
+82005,70011
+82006,43790
+82007,41533
+82008,25127
+82009,29626
+82010,46329
+82011,45813
+82012,45813
+82013,70033
+82014,19570
+82015,64275
+82016,18880
+82017,59468
+82018,33933
+82019,81482
+82020,31417
+82021,63117
+82022,62937
+82023,33184
+82024,75853
+82025,53519
+82026,61415
+82027,31115
+82028,33186
+82029,70427
+82030,70426
+82031,51068
+82032,35478
+82033,38699
+82034,60448
+82035,33729,41005
+82036,57988
+82037,58804
+82038,74488
+82039,39049
+82040,72701
+82041,31444
+82042,67381
+82043,41004
+82044,67432
+82045,67432
+82046,59468
+82047,31115
+82048,31115
+82049,31115
+82050,20743
+82051,19639
+82052,64490
+82053,82050
+82054,19412,52904
+82055,82050,40293
+82056,82050
+82057,49508
+82058,19635
+82059,76662
+82060,53528
+82061,76664
+82062,82058
+82063,73967,30226
+82064,42143
+82065,27086
+82066,82063
+82067,54082
+82068,54082
+82069,3621
+82070,70033
+82071,63144
+82072,36868
+82073,31890
+82074,34808
+82075,18530
+82076,60830,28639
+82077,33581
+82078,29963
+82079,38545
+82080,37405
+82081,46252
+82082,51068
+82083,21470
+82084,27640
+82085,31115
+82086,38213
+82087,47455
+82088,44027
+82089,41589
+82090,26895
+82091,81482
+82092,77641
+82093,2400
+82094,28153
+82095,54562,80357
+82096,19872
+82097,70186
+82098,35188
+82099,57211
+82100,68831
+82101,42093
+82102,61766
+82103,82100,25234
+82104,46767
+82105,48685
+82106,50623
+82107,51068
+82108,31115
+82109,31115
+82110,31115
+82111,77945
+82112,57158
+82113,75750
+82114,20726
+82115,43672
+82116,33623
+82117,54082
+82118,54562
+82119,26845
+82120,34316
+82121,57640
+82122,58616
+82123,74250
+82124,74251
+82125,60786
+82126,65374
+82127,71686
+82128,65793
+82129,54562
+82130,40752
+82131,54218
+82132,61054
+82133,54562
+82134,54082
+82135,58616
+82136,73752
+82137,59475
+82138,71686
+82139,56038
+82140,13561
+82141,34452
+82142,65581
+82143,34997
+82144,65503
+82145,33998
+82146,34389
+82147,72271
+82148,46035
+82149,82153
+82150,77045
+82151,65581
+82152,43104
+82153,73837
+82154,21760
+82155,65579
+82156,35882
+82157,25016
+82158,30693
+82159,82153
+82160,33479
+82161,58166
+82162,81703
+82163,24249
+82164,24251
+82165,40423
+82166,22165
+82167,20745
+82168,59153
+82169,70395
+82170,48787
+82171,20743
+82172,79741
+82173,72409
+82174,74232
+82175,55563
+82176,44013
+82177,53251
+82178,74296
+82179,28074
+82180,76802
+82181,32462
+82182,24314
+82183,25256
+82184,63064
+82185,72409
+82186,28164
+82187,60385
+82188,38053
+82189,24225
+82190,48079
+82191,28790
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms100K.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms100K.txt
new file mode 100644
index 0000000..040c578
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms100K.txt
@@ -0,0 +1,82192 @@
+0,13291
+1,58331
+2,78463
+3,4608
+4,19962
+5,59394,5863
+6,75038
+7,49031
+8,51648
+9,34084,40170
+10,62173
+11,55369
+12,2814,36971
+13,80045
+14,17258
+15,62295
+16,75955
+17,76662,28358,39082
+18,14170
+19,81789
+20,23624,11873
+21,55042,39527,23150
+22,60859
+23,11694
+24,46914
+25,30764,1439
+26,79782
+27,52871
+28,10170
+29,32538
+30,51690,55667,1151,64896
+31,22131
+32,19437
+33,30478
+34,75024,50348
+35,33839
+36,60564
+37,9448
+38,79346
+39,2651
+40,69844
+41,14977,60561
+42,34050
+43,17586,3420
+44,17737
+45,9969
+46,66592
+47,39616
+48,37658
+49,47857
+50,70243
+51,3974
+52,42182
+53,2860
+54,5006
+55,28134
+56,47123
+57,45999,61110
+58,39122,1315
+59,19464
+60,34201
+61,76607
+62,60512,36178
+63,9983
+64,57353,55993
+65,13315
+66,13499
+67,68923
+68,50028
+69,48066
+70,40869
+71,31473
+72,31174
+73,34504
+74,75246
+75,28315
+76,81449
+77,74854
+78,778
+79,51776
+80,14024
+81,21953
+82,61725
+83,29629,36580
+84,42887
+85,45029
+86,20500
+87,17791
+88,27642
+89,8224
+90,53574,41573
+91,61740
+92,59192
+93,8830
+94,37088
+95,79831,51348
+96,8380
+97,32764,1797,67340,38257
+98,1435
+99,62496
+100,11198
+101,71405
+102,33709,9123
+103,37472
+104,4091,6302
+105,478
+106,2260
+107,47035
+108,78662
+109,65914
+110,16804,20739,45731
+111,42442
+112,51934
+113,33989
+114,59440
+115,34398
+116,54553
+117,71274
+118,14101,72421
+119,4052
+120,71127
+121,38540
+122,47618,14837
+123,58427,5669
+124,26419,57995,73093
+125,22441
+126,71690,55991
+127,60055
+128,39909
+129,69916,61945
+130,54244
+131,73789
+132,44290
+133,25304
+134,35549
+135,55709
+136,73907
+137,22663
+138,58894
+139,52311,18331
+140,8476
+141,67703
+142,44453
+143,67958
+144,53248,29768
+145,40907,22411,81883
+146,70012
+147,38946
+148,5843,56315
+149,42905
+150,4765
+151,71006
+152,79053
+153,80599,47434
+154,22642
+155,9763
+156,28364
+157,5575
+158,29639,53160,57265
+159,2801,79851
+160,53183
+161,68024
+162,77716
+163,44423
+164,62534
+165,35605
+166,16801
+167,4025
+168,67190,16736
+169,72666
+170,72014
+171,75803,13550
+172,65988
+173,36009
+174,1436
+175,23624
+176,4911
+177,61514
+178,7012
+179,15591
+180,74267,53972
+181,33339
+182,78987
+183,2334
+184,76484
+185,62360
+186,906
+187,17110
+188,34537
+189,48021
+190,23631
+191,1933
+192,61761
+193,79083,41825,29336,74879
+194,40687
+195,51723
+196,27933
+197,31274
+198,29054
+199,77215
+200,77312,19017
+201,59841
+202,49812
+203,59059
+204,13619
+205,42700
+206,47546
+207,17307
+208,51287
+209,73087
+210,59779
+211,55540
+212,71400,8273
+213,66647
+214,19771
+215,32149
+216,61030
+217,30731
+218,26899
+219,51906
+220,27476
+221,52932,17194,13670
+222,40532,17564
+223,69335
+224,10428
+225,30724
+226,63949
+227,47656,36384
+228,39356
+229,32950,49947
+230,2223
+231,42019
+232,79759
+233,62988
+234,77162,13396
+235,79536,8877,61913
+236,45144,70451
+237,45001
+238,29593
+239,60079,55964
+240,73664,74828
+241,25465
+242,56882,27128
+243,2496
+244,40342
+245,6118
+246,4192
+247,26849
+248,24790,76350
+249,9806,68737
+250,8615,45544
+251,72246
+252,9812
+253,29467,19050,79672
+254,20304
+255,69103
+256,23549
+257,43469
+258,81112
+259,18480,73974
+260,72188
+261,75159,30741
+262,23281
+263,19132,5602
+264,69490,46812
+265,26591
+266,72828
+267,32363
+268,73150
+269,54133
+270,16346
+271,7403,7116
+272,52730,32324
+273,33825
+274,36219
+275,80566
+276,53550
+277,5196
+278,68307,1885
+279,15204,26232
+280,69570
+281,28685
+282,3445
+283,58045
+284,25553,40444
+285,62924
+286,13070
+287,54397
+288,18116
+289,15414
+290,22144
+291,70080,65116
+292,30624
+293,51542
+294,42019
+295,39169
+296,51365,7034
+297,75162
+298,4309
+299,82111,14107
+300,71926
+301,10542
+302,11995
+303,35
+304,72196
+305,78734
+306,12168
+307,52963
+308,70149
+309,15764,24775
+310,60361
+311,72688
+312,62795
+313,33052
+314,35929
+315,76688
+316,18093
+317,20277
+318,44290,74163
+319,58185
+320,43562
+321,71430
+322,76559
+323,64152
+324,5094
+325,9458
+326,50844
+327,14921
+328,32913
+329,24042
+330,25426
+331,28183
+332,16287
+333,41431
+334,79267
+335,36844
+336,29677
+337,26430
+338,30858
+339,57983
+340,20262
+341,12657
+342,57192
+343,39794
+344,13449
+345,26482,36334
+346,66554
+347,17867
+348,69302
+349,48592
+350,26767
+351,37382
+352,17344,4076
+353,55796
+354,52185
+355,14489
+356,62674
+357,3601
+358,50440
+359,2519
+360,60237
+361,47823,52839
+362,16290
+363,50806,41315
+364,56486
+365,79603
+366,75791
+367,32079
+368,54676
+369,47864
+370,64223
+371,81031
+372,5747
+373,81226
+374,49904
+375,19495
+376,63379
+377,26524
+378,13404
+379,28179
+380,55517,76674
+381,72370
+382,69413,74344
+383,25486
+384,11245
+385,81994
+386,72084,44155
+387,24716
+388,24494
+389,8506,67450
+390,49548,68274
+391,48576,49066
+392,64482
+393,57766
+394,64590,70030,51777
+395,18231
+396,72985
+397,18576,4519
+398,24902
+399,46832
+400,79807
+401,68709,53801
+402,53311
+403,9668
+404,69579,13361
+405,19632
+406,45033
+407,22274,5620
+408,7663
+409,4880,5408
+410,11859
+411,45707
+412,48688
+413,54212,57934
+414,36834
+415,27293
+416,27500
+417,27015
+418,16643
+419,3789
+420,3218
+421,8380
+422,27343
+423,26484
+424,13978
+425,66638,66630
+426,26522
+427,77460
+428,32039
+429,46832,25876
+430,6325
+431,23389
+432,75625
+433,64487,44708
+434,51627,77194
+435,65832
+436,6449
+437,66894
+438,48482
+439,78622
+440,39997
+441,65597
+442,8211
+443,35387
+444,34152
+445,15665
+446,63240
+447,66783,62639,20131
+448,16346
+449,32614,61815,25629,770
+450,35368
+451,26838
+452,34702
+453,23451,28189
+454,7927,13785
+455,43161
+456,30649,59983
+457,78844
+458,40837
+459,19873
+460,30615
+461,80243,19895
+462,75412
+463,34454,37368,1065
+464,24603
+465,35093
+466,33009
+467,18829
+468,1490
+469,48565
+470,3719
+471,36164
+472,32887
+473,21405,23313
+474,53330
+475,42567
+476,28611
+477,67106
+478,44460
+479,27874
+480,1748
+481,23838
+482,70928
+483,80132
+484,21998
+485,23965
+486,77868
+487,63298
+488,62145
+489,44140
+490,79760
+491,34043
+492,67988
+493,24855
+494,74406,72417
+495,15065,27308
+496,5589
+497,23835
+498,80049
+499,71692,69275
+500,14336
+501,71625
+502,22396
+503,61153,49804
+504,52087
+505,1256
+506,34122,50425
+507,81978
+508,36026
+509,5054,43961
+510,35815
+511,62372
+512,60011
+513,45023
+514,76144
+515,82147,4395
+516,53018,21051
+517,80610
+518,13472
+519,60559
+520,43231
+521,26553
+522,54497,47206
+523,63029
+524,62495
+525,31163
+526,78113
+527,63616
+528,64357
+529,54126,26392,74370
+530,22845
+531,67110
+532,61934
+533,65558
+534,13539
+535,36151
+536,22313
+537,28270
+538,54139
+539
+540,34043
+541,80107
+542,18787
+543,51274
+544,13330
+545,18195,73751,43397
+546,78276,65630
+547,25136
+548,35286
+549,20483
+550,61555
+551,7389
+552,24596
+553,11032
+554,22681
+555,59506
+556,68246
+557,40592
+558,64604
+559,47271
+560,44809,9457
+561,64129
+562,67705,37731
+563,55916
+564,61151
+565,31638
+566,70185,64815
+567,43297
+568,53985
+569,14180,15576
+570,75118,7688
+571,40
+572,78254
+573,72533
+574,43470
+575,70683
+576,40651,49177
+577,24263
+578,4445
+579,61057,15165
+580,583
+581,76342,29035
+582,34337,60504
+583,7341
+584,37905,66675
+585,31909,41796
+586,48323
+587,757
+588,8373
+589,60239
+590,51205
+591,65098
+592,63855
+593,10897
+594,69253
+595,61269
+596,77276
+597,65111
+598,80709
+599,34532
+600,26552
+601,66465,69911,9513,74856
+602,13218
+603,65079
+604,37874
+605,40169
+606,33811,53912
+607,74010
+608,28242,37597
+609,15319
+610,25812
+611,6570
+612,64564
+613,66739,37255
+614,1657,29941
+615,65274
+616,79659
+617,75903
+618,20414,62912,72674
+619,31866
+620,1999
+621,267
+622,50118
+623,67930,63200,22178
+624,28521
+625,5710
+626,17347
+627,7653,18922
+628,23820
+629,73702,33089,69628
+630,58420,52333
+631,78598
+632,55957,80292
+633,31290,24207
+634,6808
+635,79578
+636,70756
+637,56381
+638,41898
+639,18148
+640,30406
+641,57988
+642,81047,63976,2616,68752
+643,14121,66717
+644,73921
+645,22485
+646,24252
+647,55691
+648,15897
+649,53462
+650,32768
+651,13274
+652,81597,50122,33915
+653,14936
+654,44917
+655,28588
+656,55006
+657,64451,44081
+658,7451
+659,71703
+660,57907
+661,1002
+662,35659,47047
+663,56983,77316
+664,53490
+665,41869,26666
+666,77709
+667,59241
+668,81100
+669,42719,24047
+670,77399
+671,57413
+672,36865,4827
+673,21957
+674,132
+675,70031
+676,27357
+677,54927
+678,1081
+679,17977
+680,73859
+681,32783
+682,10488
+683,73700,77814
+684,40416,42979
+685,36713
+686,6857
+687,32740
+688,24838
+689,51243,50655
+690,31592
+691,73119
+692,36377
+693,51970
+694,8690
+695,46995
+696,54563
+697,63247,53032
+698,78553,70098
+699,42833
+700,27704
+701,7046
+702,52438
+703,13641
+704,25413
+705,15771,48095
+706,54305
+707,35802
+708,16125
+709,77596
+710,17777,79510
+711,27737
+712,21548
+713,41218
+714,69307
+715,53759
+716,60586
+717,44157
+718,19199
+719,53776
+720,13889
+721,6923
+722,47914,52983
+723,3453
+724,14708,10862
+725,44136,33675
+726,63441,10926
+727,75982
+728,7286
+729,49608
+730,4248
+731,24122
+732,43132,43287
+733,61118
+734,26191
+735,430
+736,43555
+737,69216
+738,8927
+739,40930
+740,42060
+741,8426
+742,23382
+743,57299,29639
+744,11877
+745,68800,30219
+746,40606
+747,19354,15352,8958
+748,30113
+749,64700,14635
+750,11903
+751,57128
+752,4689
+753,81089
+754,55375,4020
+755,58826,60825
+756,26485
+757,47433
+758,3007
+759,74184
+760,48191
+761,75443
+762,67886
+763,9761
+764,20579
+765,77485
+766,41646
+767,57877,12076
+768,44073
+769,62611
+770,5680
+771,50336,34935
+772,58621
+773,40039
+774,48130
+775,54408
+776,77041
+777,23359,75768
+778,53119,39973
+779,62623
+780,31933,33741
+781,58089
+782,44895
+783,50982
+784,56166,72833
+785,27184
+786,9541
+787,8332,21991
+788,41367
+789,67824
+790,15224
+791,15702,23944
+792,75533
+793,75781,79148
+794,77809
+795,10896
+796,16996
+797,66080
+798,44645
+799,48002
+800,80545
+801,35474,9230
+802,49664,4790
+803,6385
+804,3128
+805,71659
+806,73972
+807,43588
+808,53571
+809,21614
+810,9780,30666
+811,59233,79366
+812,33598
+813,36525,1415
+814,46034
+815,79645
+816,62108
+817,48305
+818,57720
+819,32009
+820,75630
+821,69899
+822,44632
+823,13142
+824,38293
+825,54523
+826,38461
+827,70368
+828,34455
+829,35929
+830,25635
+831,54691
+832,2734,47707
+833,80941,67070
+834,65245
+835,74921
+836,4340
+837,58855
+838,54796
+839,46556
+840,61198
+841,930,6639,7197,3045
+842,18071
+843,56266
+844,16575
+845,57516,54080
+846,45073
+847,47554
+848,17212
+849,4950,16420
+850,81561
+851,52531
+852,34256
+853,20594
+854,38421
+855,44049
+856,3817
+857,61472
+858,80942
+859,3273
+860,37257
+861,50808
+862,77045
+863,20306
+864,21769
+865,64687
+866,72014
+867,61504
+868,66648
+869,36940
+870,35347
+871,38303
+872,31515
+873,66787
+874,30288
+875,44553
+876,23701
+877,11195
+878,14218
+879,19073
+880,20629,33262
+881,77428
+882,50030
+883,9728
+884,43804
+885,55063,39171
+886,64046,49853
+887,70859,1310
+888,2191
+889,6191,38160
+890,14715
+891,54331
+892,66507
+893,13895
+894,65047,24083
+895,54668
+896,7782,54189
+897,18836
+898,71875
+899,19702,6298
+900,31697
+901,5004
+902,44092
+903,55668
+904,44190
+905,5260
+906,58631
+907,4106
+908,24404
+909,45661
+910,66151
+911,63030,66676,81706
+912,11366
+913,65381
+914,38728
+915,3330,18229
+916,41652,49089
+917,65108
+918,67279
+919,58817,4370,29712
+920,50928
+921,30546
+922,28529
+923,18559
+924,13330
+925,19469
+926,76906
+927,67977
+928,27360,34230,81654
+929,72915
+930,76593
+931,6065,78688
+932,55505
+933,17572
+934,48389
+935,47774
+936,39344
+937,31637,10128
+938,34412
+939,24783
+940,1393,23344
+941,36137
+942,58232
+943,39738
+944,42120,77773
+945,53086
+946,55743
+947,62009,54541
+948,28951
+949,7050
+950,67753
+951,39480
+952,15147
+953,24483
+954,44934,1182,59186,14168
+955,67909
+956,56381,36685
+957,46071
+958,15733
+959,57295
+960,44229
+961,47525
+962,14124
+963,7279
+964,62733
+965,37943
+966,77142
+967,43465
+968,14930
+969,25943
+970,67919
+971,57862
+972,13222,3925
+973,59237
+974,8717
+975,14274
+976,65511,2199
+977,48962
+978,2524
+979,631
+980,56464,48493
+981,19404
+982,19421
+983,73437
+984,71345,70613
+985,69211
+986,63898
+987,11055
+988,44640
+989,28013
+990,47898
+991,35387
+992,20777
+993,34935,39107
+994,14166
+995,40779
+996,66533
+997,15668
+998,82140,48128
+999,17144
+1000,68438
+1001,65204,48609
+1002,71290
+1003,25356
+1004,7119,66724
+1005,13339
+1006,28820
+1007,56795
+1008,37330
+1009,7038
+1010,52583
+1011,11931
+1012,67583
+1013,33931
+1014,80050,15380
+1015,72664
+1016,51787
+1017,18238
+1018,11204
+1019,36956
+1020,30300
+1021,72093
+1022,73383
+1023,48482
+1024,32013
+1025,35621
+1026,76438
+1027,52022
+1028,68204
+1029,52210,75635
+1030,77158
+1031,50462
+1032,2744
+1033,9279
+1034,72534
+1035,48856
+1036,62243,66718
+1037,3693
+1038,39847
+1039,23842
+1040,15684
+1041,52104
+1042,33488
+1043,35308
+1044,8178
+1045,35858
+1046,17462,53839
+1047,23055
+1048,15330
+1049,47557
+1050,51069
+1051,7914
+1052,75519
+1053,8830
+1054,79712
+1055,59942
+1056,1273,18278
+1057,66588
+1058,20654
+1059,8455
+1060,79797
+1061,52136
+1062,41234,79640
+1063,67178,12013
+1064,31483
+1065,23946
+1066,15350,26676
+1067,502
+1068,35409
+1069,20369
+1070,29288
+1071,67363
+1072,22773
+1073,81818
+1074,42621
+1075,43207
+1076,32253,49690
+1077,56109
+1078,4147
+1079,46528
+1080,4894
+1081,19993
+1082,38136
+1083,23991,5622
+1084,75261
+1085,78084,52717,14839
+1086,21015
+1087,26171
+1088,52455
+1089,40935
+1090,45845
+1091,37266
+1092,42247
+1093,6046,63647
+1094,37158
+1095,81708
+1096,16665,80385
+1097,26066
+1098,8823
+1099,10968
+1100,10681
+1101,8041
+1102,28656,38607
+1103,57403
+1104,42344,79616,24369
+1105,81840,24807
+1106,72652
+1107,46130
+1108,75651
+1109,6803,38330,15145
+1110,18233
+1111,11531
+1112,12402
+1113,35026
+1114,73407
+1115,80660
+1116,65657
+1117,43236,78788
+1118,3939
+1119,57021
+1120,38028
+1121,16981
+1122,61620
+1123,762
+1124,77128
+1125,69244
+1126,42997
+1127,41435
+1128,46547
+1129,32095
+1130,56217
+1131,68914,7906
+1132,73465
+1133,6872
+1134,11202,36942
+1135,27426,17193
+1136,28108
+1137,48222,75623
+1138,47763,14008
+1139,7762
+1140,20373
+1141,5624
+1142,11726,66820
+1143,80693,48970,64867
+1144,73706
+1145,5363
+1146,58077,5615,72301
+1147,50407
+1148,23990,37773
+1149,32039
+1150,73647
+1151,62683
+1152,21749
+1153,37441
+1154,54075,65040
+1155,18762
+1156,41899
+1157,67227
+1158,63912
+1159,5432
+1160,78386
+1161,78771
+1162,14015
+1163,54836,23870
+1164,58356
+1165,39668
+1166,36687
+1167,24344
+1168,38321
+1169,45059,8956
+1170,76183
+1171,34510
+1172,39444
+1173,31715
+1174,76221
+1175,66497,2211
+1176,32730
+1177,42076
+1178,33867
+1179,57309
+1180,46711,58607
+1181,15598
+1182,43511
+1183,27835
+1184,81067,31390
+1185,1335,34215
+1186,19116
+1187,81487
+1188,45638,47576
+1189,21344
+1190,70985
+1191,65374
+1192,26899
+1193,17630
+1194,45766
+1195,4159,826,47696
+1196,54192
+1197,60235
+1198,25283
+1199,12892
+1200,69019
+1201,75049
+1202,39873
+1203,75156,77181
+1204,15983,40804
+1205,2838
+1206,66185
+1207,59620
+1208,9635,72607
+1209,60854
+1210,79018
+1211,8286
+1212,68195
+1213,53508,30488
+1214,62568
+1215,58247,64896
+1216,23576,68414
+1217,62641
+1218,34744
+1219,45533
+1220,42809
+1221,29802
+1222,77097
+1223,58093
+1224,27158
+1225,68273
+1226,71301
+1227,273
+1228,75585,26586
+1229,19739
+1230,72071
+1231,29990,58280
+1232,41009
+1233,24137,19750,27713
+1234,61046
+1235,34265
+1236,41209
+1237,48481
+1238,30624
+1239,10819
+1240,55127
+1241,25463
+1242,21568
+1243,19287
+1244,59563
+1245,74413
+1246,63037,26238,7609
+1247,52167
+1248,7477
+1249,81709
+1250,36015,49696
+1251,74184
+1252,552
+1253,47381
+1254,79972
+1255,54684
+1256,64867
+1257,19724
+1258,51868
+1259,45228
+1260,27036
+1261,29507
+1262,29538,38054
+1263,80853,4506,45590
+1264,59187
+1265,77522,49318
+1266,38517
+1267,65302
+1268,13583
+1269,8768
+1270,61131,6638
+1271,40831
+1272,13452
+1273,35217
+1274,44541
+1275,23549
+1276,71387
+1277,20190
+1278,78109,33496
+1279,21228
+1280,62851
+1281,45499
+1282,40481
+1283,3701
+1284,80228
+1285,67543
+1286,74934
+1287,46691
+1288,7777
+1289,11556
+1290,37971
+1291,13247
+1292,17850
+1293,70777
+1294,82131
+1295,73614
+1296,25768
+1297,26503
+1298,29229
+1299,52553
+1300,11714,66376
+1301,4796,56732
+1302,6655
+1303,11297
+1304,57711,46484
+1305,66849
+1306,32562
+1307,47720
+1308,335
+1309,41286
+1310,48986
+1311,20663,32488
+1312,19794
+1313,51837,80383
+1314,69084
+1315,61114,42872,5399
+1316,38998
+1317,41630
+1318,8678
+1319,14572
+1320,38908
+1321,9903
+1322,37166
+1323,39480
+1324,12841,27564
+1325,49829
+1326,78581
+1327,32216
+1328,38259,7814
+1329,43679
+1330,65074
+1331,29782
+1332,49342,19761
+1333,39267,41656
+1334,46825
+1335,45876
+1336,78399
+1337,53874,8372
+1338,7304
+1339,72579
+1340,56513
+1341,45965
+1342,78514
+1343,66663
+1344,36206
+1345,34730
+1346,80519
+1347,72358
+1348,68550
+1349,2667
+1350,57660
+1351,78560
+1352,70511
+1353,53708
+1354,26664
+1355,76017
+1356,68539,77036
+1357,33886
+1358,46576,78186
+1359,43796
+1360,41561
+1361,7802,55204
+1362,52416
+1363,57836
+1364,12252
+1365,60674
+1366,57890
+1367,18873
+1368,43155
+1369,29143
+1370,36310
+1371,42905,16067
+1372,53505
+1373,43283
+1374,38351
+1375,34250
+1376,6388,13904
+1377,8627,15704
+1378,22467
+1379,39055
+1380,63242
+1381,41985
+1382,26188
+1383,12774
+1384,80719
+1385,5159,46235
+1386,49018
+1387,71164,6054
+1388,61771
+1389,49410
+1390,22182
+1391,52975,17338
+1392,35758,32266
+1393,69848
+1394,69471,44815
+1395,61026
+1396,38248
+1397,22130
+1398,565
+1399,56806,5053
+1400,23932
+1401,33202,2711
+1402,33718
+1403,45806
+1404,27450
+1405,41305
+1406,49540
+1407,40347,12602
+1408,6965
+1409,38196
+1410,43703
+1411,5222
+1412,67243
+1413,2432
+1414,16634
+1415,30026
+1416,41895
+1417,64181
+1418,73321
+1419,70936
+1420,48683
+1421,33184
+1422,38540
+1423,79865
+1424,26697,36302
+1425,31226
+1426,42616
+1427,52899
+1428,78026,6239
+1429,53388,53327
+1430,19459
+1431,62441,20442,14393
+1432,12669
+1433,17181
+1434,143,53642
+1435,8362
+1436,80279
+1437,3622,13113
+1438,77939,30952,630
+1439,41252
+1440,64968
+1441,67865
+1442,14640
+1443,71680
+1444,69427
+1445,57874
+1446,51691
+1447,12355,11661
+1448,65110
+1449,41729,4013
+1450,52375
+1451,25577
+1452,28744,56689
+1453,55226
+1454,25281
+1455,59458
+1456,56405
+1457,37516
+1458,1271
+1459,17204
+1460,38064
+1461,35970
+1462,24442
+1463,6830
+1464,82083
+1465,54551,2559
+1466,58376
+1467,10497,9574
+1468,81597
+1469,38601
+1470,51447
+1471,74930,8414
+1472,64038
+1473,6072
+1474,45230
+1475,81211
+1476,1387
+1477,26910,15014
+1478,72085
+1479,62269
+1480,81328,40822
+1481,57387,76371
+1482,3279
+1483,40199
+1484,61412
+1485,26248
+1486,73172
+1487,41364
+1488,57148
+1489,80177
+1490,79702
+1491,47288
+1492,67957
+1493,2923
+1494,40496,56832
+1495,37294
+1496,53408
+1497,47894
+1498,49721
+1499,25259
+1500,7458
+1501,6352,69892
+1502,80967
+1503,4787,64334,14995
+1504,64588
+1505,1422,50994
+1506,48571
+1507,67526
+1508,63067
+1509,70140,6449
+1510,22798,48099
+1511,49978
+1512,62291
+1513,70324,59960,64942
+1514,38932
+1515,21914
+1516,72968
+1517,67627
+1518,43885
+1519,64741
+1520,54926,13625
+1521,48020
+1522,63408
+1523,2199,68208
+1524,67176,43660
+1525,40041,62934,58312
+1526,61475
+1527,4030,70936
+1528,74431
+1529,7793
+1530,21692
+1531,53883
+1532,27443
+1533,68637
+1534,28816
+1535,17257
+1536,31263
+1537,15516
+1538,38519
+1539,1468
+1540,35487
+1541,9982
+1542,54714
+1543,54286
+1544,46768
+1545,5560
+1546,26030
+1547,55017
+1548,48094
+1549,58277
+1550,71137
+1551,19251
+1552,10927,29673
+1553,60801,11484
+1554,79852
+1555,79503
+1556,14565
+1557,44081
+1558,12114,73587
+1559,61208
+1560,16016
+1561,48683
+1562,10810
+1563,57220
+1564,51644,19435
+1565,36800
+1566,57422
+1567,24599
+1568,31493
+1569,49888,55391,68641
+1570,40937
+1571,6677
+1572,70450
+1573,57335
+1574,36837,17824
+1575,70604
+1576,923,57287
+1577,41655
+1578,2538
+1579,54998
+1580,67242
+1581,14292
+1582,65489,3513
+1583,20935
+1584,13188
+1585,61377
+1586,32842
+1587,67025
+1588,17772
+1589,49630,39441
+1590,71812
+1591,65926
+1592,18183
+1593,7159
+1594,14949
+1595,12203,22551
+1596,28539
+1597,74033
+1598,57157
+1599,61839
+1600,72508,56141
+1601,15729
+1602,17271
+1603,72244
+1604,24113
+1605,4070,80449
+1606,43949,50073
+1607,68908
+1608,22461
+1609,52007
+1610,46225
+1611,13742
+1612,36022
+1613,13672
+1614,2928
+1615,37057
+1616,27638
+1617,50656
+1618,59076
+1619,77187
+1620,52430
+1621,47160
+1622,69611
+1623,46274
+1624,22968
+1625,19105
+1626,28315
+1627,30259
+1628,15413
+1629,38029
+1630,15613
+1631,42313
+1632,45929
+1633,38284,31060
+1634,79117
+1635,36351,58571
+1636,66795
+1637,37183
+1638,19897
+1639,50814
+1640,77637
+1641,38684
+1642,65799
+1643,58324
+1644,26543,41846
+1645,64855,77765
+1646,55561
+1647,4332
+1648,60028,30413
+1649,15297
+1650,4825
+1651,66464
+1652,70661
+1653,21494,78463,35980
+1654,1554
+1655,18812,38680
+1656,27766
+1657,41660
+1658,48984
+1659,59221,59583
+1660,24717
+1661,61678
+1662,54925
+1663,54906
+1664,72533
+1665,15306
+1666,81238,22421
+1667,1560,16899
+1668,22798
+1669,22400,30467
+1670,15757
+1671,49340
+1672,33769,8929
+1673,76797
+1674,26099,51362
+1675,60936
+1676,8053
+1677,21529
+1678,31025
+1679,1549
+1680,80825
+1681,63695,25469
+1682,2081
+1683,14923
+1684,19573
+1685,53353,25313
+1686,45217
+1687,64143
+1688,21304
+1689,29942
+1690,61911
+1691,28616
+1692,49595
+1693,1347
+1694,77262
+1695,28710
+1696,24335,74174,27212
+1697,29726
+1698,43598
+1699,6810
+1700,29107,21174
+1701,76710
+1702,23007
+1703,79195
+1704,69976
+1705,32338
+1706,24578
+1707,40980
+1708,47323,25603
+1709,63544
+1710,69155,59479,18328
+1711,75940
+1712,20109
+1713,23362
+1714,16089
+1715,74922
+1716,31975,76861
+1717,51349,60606
+1718,46585,31828
+1719,11313
+1720,75533
+1721,17948
+1722,1882
+1723,8572
+1724,20584
+1725,58089
+1726,36729
+1727,53490
+1728,3158
+1729,40062
+1730,12914
+1731,7302
+1732,6631
+1733,57776
+1734,59612
+1735,73620
+1736,74258
+1737,19611
+1738,30731
+1739,65270,8035
+1740,50635
+1741,10988
+1742,72234
+1743,40677
+1744,35873
+1745,40244,31707
+1746,52005
+1747,35399,10995
+1748,16479
+1749,63555
+1750,6856
+1751,18402
+1752,2789
+1753,57516
+1754,34954
+1755,81320
+1756,30059,39907
+1757,53990
+1758,4886
+1759,2872
+1760,2398
+1761,69131
+1762,80388
+1763,14553
+1764,52125
+1765,25189
+1766,54539
+1767,14667
+1768,50557
+1769,59569
+1770,6237
+1771,53546
+1772,24752
+1773,79292
+1774,70021,36496
+1775,27811
+1776,59471
+1777,51231
+1778,38303
+1779,66582
+1780,68375,24676
+1781,52354
+1782,65043
+1783,8597
+1784,30255
+1785,11380
+1786,67587
+1787,47532,65599
+1788,63488
+1789,39940
+1790,21658,82121
+1791,28253
+1792,77428
+1793,12840
+1794,35725
+1795,3652
+1796,52900
+1797,27750
+1798,52840,44816
+1799,30820,51947
+1800,68657
+1801,77898
+1802,49878,4877
+1803,71923
+1804,48100
+1805,44717
+1806,53381
+1807,66900
+1808,49122
+1809,79047
+1810,41748
+1811,63514
+1812,4931
+1813,33583,43464
+1814,9364
+1815,35020,76364
+1816,28518
+1817,37027
+1818,38195
+1819,2718
+1820,79136
+1821,35193
+1822,44055
+1823,61401
+1824,16787
+1825,34892
+1826,80223,31418,7889
+1827,71182
+1828,67705
+1829,55909
+1830,20675
+1831,14171
+1832,6461
+1833,25928
+1834,12085,34551,77335
+1835,72208,12958,1599
+1836,17048,54132
+1837,14696
+1838,63283
+1839,6658
+1840,14427
+1841,66725,47146
+1842,73918,25661
+1843,79973,34053
+1844,32492
+1845,76221,70849
+1846,22128
+1847,64276
+1848,3193
+1849,26098
+1850,33106,76075
+1851,45616
+1852,18916
+1853,47186
+1854,69644
+1855,66688
+1856,65723
+1857,34955,18277
+1858,70798
+1859,72915
+1860,12848,29814
+1861,479
+1862,47434
+1863,80025
+1864,32561,57242
+1865,37255
+1866,33782
+1867,22678
+1868,7440
+1869,24593
+1870,59622
+1871,59159,62263
+1872,79275
+1873,42044,81943
+1874,31489
+1875,25505
+1876,56262
+1877,19519
+1878,57421
+1879,74511
+1880,16373
+1881,44989
+1882,61979
+1883,34628,13278,74953
+1884,16364
+1885,2790
+1886,20731
+1887,31121
+1888,63604
+1889,72925
+1890,79670,8756
+1891,47296,73144
+1892,74015,23425
+1893,22938
+1894,81780,70927,77833,1492
+1895,72049,58400
+1896,39168
+1897,58501
+1898,49342
+1899,76264
+1900,49728
+1901,22931
+1902,18563
+1903,13548
+1904,76946
+1905,44479,30958,1973,36092,48686
+1906,34209,67823
+1907,14644
+1908,32341
+1909,34588
+1910,6458,13331
+1911,29044,11307
+1912,18709
+1913,31959
+1914,9994,11466,22968
+1915,74599
+1916,4340
+1917,34902,32674
+1918,22912
+1919,71684
+1920,19123
+1921,18170
+1922,26864
+1923,20990
+1924,58991,23952
+1925,46004
+1926,9106
+1927,7727
+1928,9796
+1929,11052
+1930,31843
+1931,73486
+1932,33304
+1933,77760
+1934,62170
+1935,20784
+1936,5458
+1937,9612,23756
+1938,2027
+1939,30718
+1940,69918
+1941,37982
+1942,35716,758
+1943,38143
+1944,32818
+1945,59414
+1946,26091
+1947,31534
+1948,20758
+1949,34556
+1950,15470
+1951,72208
+1952,51009
+1953,19156
+1954,46709
+1955,26645
+1956,56949,9883
+1957,27312
+1958,48683
+1959,24252
+1960,49982
+1961,55381
+1962,76352,57113
+1963,62150
+1964,57447
+1965,80807,45382
+1966,46956,4086
+1967,76343
+1968,10566
+1969,33876
+1970,32825
+1971,67733
+1972,78276
+1973,59444,24699,48656
+1974,6637
+1975,78322
+1976,23721
+1977,17241,37679
+1978,27302
+1979,62851
+1980,26934
+1981,1899
+1982,66657
+1983,1458
+1984,6685
+1985,55276
+1986,77842,51843
+1987,27128
+1988,37711
+1989,50974,42163,78016
+1990,57157
+1991,13450
+1992,22858
+1993,37372
+1994,56481
+1995,26088
+1996,65289
+1997,64491,27293
+1998,52282
+1999,38359
+2000,51243
+2001,79621,34144
+2002,77008
+2003,25391
+2004,46631
+2005,29183
+2006,66388
+2007,4959,77955
+2008,29541
+2009,13859
+2010,35412
+2011,7170
+2012,52167
+2013,39683
+2014,73303
+2015,60039
+2016,22512
+2017,16258
+2018,28241
+2019,74173
+2020,67820
+2021,40739
+2022,46543
+2023,34957,75803
+2024,67293
+2025,58131
+2026,76497
+2027,71087
+2028,66143
+2029,37064
+2030,21614
+2031,41874
+2032,51976
+2033,2828
+2034,59881
+2035,42382
+2036,57506
+2037,68264
+2038,44338
+2039,66692,14285
+2040,32265
+2041,54386
+2042,75791
+2043,44472
+2044,63709
+2045,69731
+2046,79836
+2047,111
+2048,78879
+2049,41269
+2050,80514,68428
+2051,48834
+2052,6401
+2053,52030,12044
+2054,1610
+2055,47368
+2056,69817,9744
+2057,64732
+2058,50484
+2059,18370
+2060,3461
+2061,13080
+2062,31256
+2063,79670
+2064,26376
+2065,74128
+2066,74042
+2067,42239
+2068,13107
+2069,25277
+2070,78993,67579,34307,50099,49566
+2071,70183,16036,71515
+2072,5253
+2073,68999,77481
+2074,6024,47110,72921
+2075,54376
+2076,51897
+2077,78130,40021
+2078,7119
+2079,15962,71043
+2080,75708
+2081,4367
+2082,31112
+2083,40994
+2084,70571
+2085,32587
+2086,74652
+2087,59930
+2088,69545,30026
+2089,15772
+2090,19329
+2091,77200
+2092,39492
+2093,46030,22557
+2094,44562
+2095,47494
+2096,66300
+2097,47914
+2098,51300,5627,81717
+2099,3151,78166
+2100,57141
+2101,46154
+2102,51195
+2103,54239,5247
+2104,58557
+2105,51597
+2106,14663
+2107,54212
+2108,60719
+2109,38517
+2110,37632,45148
+2111,23304
+2112,58571
+2113,54955
+2114,40695,34926
+2115,3480
+2116,57104
+2117,38022
+2118,50196
+2119,551
+2120,51524,80170
+2121,26019
+2122,6533
+2123,70034
+2124,65624
+2125,9957
+2126,56928
+2127,29573
+2128,79011
+2129,63325,53541,47655
+2130,5413,32492
+2131,79510
+2132,13201
+2133,10773
+2134,44629
+2135,78058
+2136,53805,31796
+2137,75461
+2138,76796,10019
+2139,2356
+2140,37030
+2141,37943
+2142,59318
+2143,3068,62779
+2144,48888,78265
+2145,50881,14437
+2146,46796
+2147,62778
+2148,72728,2682
+2149,25387
+2150,80052
+2151,54844
+2152,67745,32829
+2153,3223
+2154,54827
+2155,55342
+2156,51928
+2157,68536
+2158,27992,33896
+2159,21264
+2160,49969
+2161,25472
+2162,76655
+2163,52282
+2164,67481
+2165,62331,48866
+2166,53517
+2167,72538
+2168,68138
+2169,1958
+2170,48957
+2171,23222,55535
+2172,57250
+2173,21372,49912
+2174,57148
+2175,58803
+2176,23471
+2177,5001
+2178,73364
+2179,55696
+2180,23259
+2181,73248
+2182,59276
+2183,43159
+2184,41943
+2185,79394,37954
+2186,69916
+2187,28623
+2188,4723
+2189,34974
+2190,70520
+2191,49166,54046
+2192,15748
+2193,9252,50767,18143
+2194,63330
+2195,52737
+2196,13347
+2197,26052
+2198,69107
+2199,4733
+2200,67121
+2201,42252
+2202,47328
+2203,4313
+2204,44959
+2205,20990
+2206,79035,33986
+2207,17517
+2208,27382
+2209,70041
+2210,4964,23794
+2211,1809
+2212,595,17798
+2213,65956
+2214,75868
+2215,30848
+2216,36706
+2217,34412
+2218,48416,32023
+2219,14524
+2220,66816
+2221,14217
+2222,61911
+2223,22789
+2224,35299,65873
+2225,9011
+2226,5559
+2227,25194
+2228,64950
+2229,75606
+2230,57220
+2231,72544
+2232,26470
+2233,33123
+2234,78386
+2235,39760
+2236,45820
+2237,37943
+2238,43972
+2239,55909,1070
+2240,13490
+2241,15310
+2242,21153
+2243,35999
+2244,53052
+2245,52271,20538
+2246,23017
+2247,47061
+2248,32902
+2249,43711
+2250,56001
+2251,62810,16719
+2252,23783
+2253,49855,26552
+2254,39494
+2255,30375,5452
+2256,2139,77552
+2257,30205
+2258,75773,6947
+2259,78266
+2260,3646
+2261,36382,25252
+2262,72810
+2263,9407
+2264,81282
+2265,38422
+2266,30627
+2267,55835
+2268,47924
+2269,20421
+2270,8256
+2271,8306
+2272,36470
+2273,20658
+2274,16616
+2275,69356
+2276,59557
+2277,35933,56044
+2278,12749
+2279,18117
+2280,62374
+2281,4461,31062
+2282,45118
+2283,67515
+2284,63421,7017
+2285,7803
+2286,54150
+2287,41993
+2288,23565
+2289,33367,32215,73749
+2290,4758
+2291,69761
+2292,14440
+2293,30611
+2294,25008
+2295,76744,32518
+2296,35316
+2297,39288
+2298,22751
+2299,78411
+2300,51394
+2301,74329
+2302,27019
+2303,64976
+2304,21794
+2305,49482
+2306,75941,50515
+2307,46453
+2308,58780
+2309,26627,50002
+2310,69034
+2311,2998
+2312,82050,56977
+2313,45033
+2314,45312
+2315,21971
+2316,9611
+2317,21708
+2318,26078,39450
+2319,30034
+2320,41424
+2321,16650
+2322,45873
+2323,11535
+2324,1556
+2325,48358,74288
+2326,78277
+2327,51043
+2328,81196
+2329,38616
+2330,7231,39959
+2331,36826,24695
+2332,26273,51848
+2333,45401
+2334,74688,6460
+2335,62718
+2336,45958
+2337,52809
+2338,53971
+2339,12051
+2340,66109
+2341,36284
+2342,50795
+2343,63518
+2344,58905
+2345,72679
+2346,14336
+2347,60744
+2348,33709
+2349,29352
+2350,50400
+2351,41367
+2352,30956
+2353,57080
+2354,34695,75351
+2355,57285,46817
+2356,34
+2357,61052
+2358,71308,76910
+2359,191
+2360,35890,32422
+2361,49349
+2362,32217
+2363,46358
+2364,22703
+2365,45735
+2366,39125
+2367,24759
+2368,43581
+2369,17086,56833
+2370,4773
+2371,16834
+2372,26876
+2373,30522
+2374,32975
+2375,54763
+2376,30766
+2377,19017
+2378,2064,3551
+2379,47180
+2380,68473
+2381,20720
+2382,73502
+2383,82083
+2384,17648
+2385,13484
+2386,47511
+2387,69914
+2388,45506,68142
+2389,15031
+2390,63582
+2391,35673
+2392,20580
+2393,41187,29741
+2394,8420
+2395,66195
+2396,10897
+2397,39038
+2398,807
+2399,70194
+2400,33865
+2401,45441
+2402,12125
+2403,44284,7568
+2404,37051
+2405,14984
+2406,52972,68407
+2407,25218
+2408,67456
+2409,72638
+2410,66140
+2411,39875
+2412,9311
+2413,77957
+2414,29929
+2415,52876
+2416,48534
+2417,64456
+2418,39938
+2419,71361,74055
+2420,40996
+2421,38411
+2422,43837
+2423,49289
+2424,30099
+2425,51921,44410
+2426,78356
+2427,39334,30767
+2428,52013,39140
+2429,25764
+2430,38913
+2431,59180
+2432,15982
+2433,45931
+2434,33419
+2435,14212
+2436,19021
+2437,14065
+2438,62819
+2439,17173
+2440,25585
+2441,71478
+2442,12610
+2443,27380
+2444,3590,78292,43956
+2445,60027
+2446,67693
+2447,28492
+2448,21521
+2449,69616
+2450,19846
+2451,5985
+2452,41673
+2453,70530
+2454,17723
+2455,53611
+2456,49639
+2457,43427,1754
+2458,74067
+2459,66151
+2460,48900
+2461,5098
+2462,24084
+2463,50357
+2464,61493,10589
+2465,1527
+2466,27220
+2467,3507
+2468,67059
+2469,57113
+2470,23309
+2471,32068
+2472,67043
+2473,22036
+2474,80455,17262,37906
+2475,32095,26338
+2476,61986,22374
+2477,64445
+2478,17776
+2479,43594,44924
+2480,71612
+2481,25314
+2482,580
+2483,14699
+2484,21290
+2485,73089
+2486,58920
+2487,66171
+2488,12992
+2489,23509
+2490,59348
+2491,16951
+2492,74904
+2493,53075
+2494,19324
+2495,1441
+2496,73238
+2497,22505
+2498,1556
+2499,81348
+2500,59234
+2501,28299
+2502,70401
+2503,34714,40666
+2504,1192
+2505,24027
+2506,77767
+2507,47734
+2508,36443
+2509,5409,13968,41989
+2510,57220
+2511,50694
+2512,51118,63737
+2513,29830,35049
+2514,12541
+2515,35732
+2516,6934
+2517,40137,29772
+2518,14339
+2519,32503
+2520,37917,36362
+2521,19209
+2522,58189
+2523,25203
+2524,23376,8148
+2525,11355
+2526,48626,52899
+2527,18684
+2528,69653,43581
+2529,77040
+2530,38262
+2531,42131,58407
+2532,360
+2533,6668
+2534,10082
+2535,17325
+2536,78162
+2537,9025
+2538,16502
+2539,72833
+2540,45165
+2541,78079,45
+2542,9213
+2543,18002
+2544,6938
+2545,67182
+2546,34523
+2547,78536,10352
+2548,30314,33036
+2549,50688
+2550,49004
+2551,18494
+2552,23349
+2553,39992
+2554,49664
+2555,58339
+2556,31383,48743
+2557,39118
+2558,39866
+2559,40168
+2560,57635
+2561,23121
+2562,16544
+2563,29420
+2564,14603
+2565,11906
+2566,27124
+2567,53618
+2568,11725
+2569,11180
+2570,35221
+2571,45153
+2572,10548
+2573,78196
+2574,73752
+2575,29028
+2576,19611
+2577,5802
+2578,18788
+2579,18342,59670
+2580,78411
+2581,66724
+2582,30699
+2583,53633
+2584,30658
+2585,14701
+2586,23133
+2587,19251
+2588,49289
+2589,18965
+2590,42698
+2591,28090,36922,76050
+2592,41273
+2593,49050
+2594,75881
+2595,64275
+2596,75841,54443
+2597,54249
+2598,36087
+2599,53345
+2600,6563
+2601,2216
+2602,47181
+2603,64089
+2604,18903
+2605,52101
+2606,54328,14631
+2607,21163
+2608,24358,15373
+2609,25480
+2610,37582
+2611,12432
+2612,1512
+2613,30028
+2614,44729
+2615,53484,61086
+2616,1490
+2617,23309
+2618,40369
+2619,3755
+2620,65750
+2621,80091,1800
+2622,5245
+2623,72793
+2624,58513
+2625,51231,51243
+2626,56111
+2627,50811
+2628,14621
+2629,78475
+2630,75214
+2631,53158,43561
+2632,30874
+2633,46135,79085
+2634,16388
+2635,51706
+2636,48133,11391
+2637,37132,47855
+2638,10385
+2639,16517
+2640,53489
+2641,40551
+2642,58673
+2643,21614
+2644,67230
+2645,33446
+2646,36685
+2647,8036
+2648,73795
+2649,13347
+2650,58262
+2651,58714
+2652,57679
+2653,47460,62453
+2654,16287,71935
+2655,16755
+2656,26975
+2657,23435
+2658,39799
+2659,50733
+2660,78805
+2661,47696,51160
+2662,67021
+2663,35697
+2664,50388,49787
+2665,52407
+2666,30240,57534
+2667,60393,66341
+2668,24690
+2669,80412
+2670,55010
+2671,8664
+2672,81180
+2673,15941
+2674,45581
+2675,32975
+2676,72875
+2677,62320
+2678,13460
+2679,19733,63102
+2680,33351
+2681,55273
+2682,78974
+2683,71616
+2684,9293
+2685,35880
+2686,22028
+2687,7082,19528
+2688,49903
+2689,52329,51015,22173
+2690,13145
+2691,23103
+2692,67981
+2693,9822
+2694,52970
+2695,32339
+2696,59678
+2697,17499
+2698,55710
+2699,16868
+2700,14415
+2701,48100,5419
+2702,5661
+2703,27585
+2704,1877
+2705,74042
+2706,7010
+2707,79741,38284
+2708,22517
+2709,14334
+2710,64740
+2711,27363
+2712,40368
+2713,67871
+2714,35098
+2715,54796
+2716,55545
+2717,82180
+2718,26966,52648
+2719,71343,74871,36433
+2720,53131
+2721,44062
+2722,31956
+2723,68209
+2724,71480
+2725,5497
+2726,40470,15839
+2727,34118
+2728,16448,76769
+2729,8899
+2730,65674,2012
+2731,21639,58457
+2732,45399
+2733,74253
+2734,67382
+2735,73394,51508,81530
+2736,79314
+2737,68395
+2738,7480
+2739,32268
+2740,64925
+2741,54003
+2742,65743
+2743,53377
+2744,34514,55098
+2745,63597
+2746,39987
+2747,62192
+2748,30929
+2749,38960
+2750,926
+2751,30719
+2752,78249
+2753,7221
+2754,10036
+2755,11632
+2756,67641
+2757,81937
+2758,81260
+2759,25549,71873
+2760,23680
+2761,53373
+2762,18900
+2763,57840,81897
+2764,57391
+2765,4787
+2766,25320,81708,21647
+2767,76339
+2768,6678
+2769,77130
+2770,15621,4556
+2771,53083,24366
+2772,68116,17904,45783
+2773,36298
+2774,6714,12196
+2775,22472
+2776,59105
+2777,37912,25478
+2778,5057
+2779,31378
+2780,75533
+2781,7286
+2782,11563
+2783,65043,47810
+2784,47533
+2785,16907,41923
+2786,54244,13509
+2787,1766
+2788,62461
+2789,44510
+2790,65519
+2791,46221,57626
+2792,2211
+2793,63422
+2794,19497
+2795,39921
+2796,64091
+2797,31374
+2798,82002
+2799,77181
+2800,69401
+2801,14217
+2802,24492
+2803,11148
+2804,68892
+2805,21094
+2806,45555
+2807,7495
+2808,59567
+2809,54903
+2810,3826
+2811,18723
+2812,46674
+2813,24662
+2814,62921
+2815,50191
+2816,58298
+2817,21832
+2818,29426
+2819,79058
+2820,19831,39168,3900
+2821,20583,10987
+2822,62746
+2823,72944
+2824,68536
+2825,52235
+2826,11059
+2827,46377,73540
+2828,69014
+2829,31358
+2830,60714
+2831,39287
+2832,54401
+2833,47979
+2834,53276
+2835,53004
+2836,28588
+2837,81516
+2838,22845
+2839,52120
+2840,48767
+2841,68956
+2842,4652
+2843,54911,17216,54658,36897
+2844,18797
+2845,33656
+2846,68407
+2847,62339
+2848,4914
+2849,78386
+2850,16104
+2851,35673,10482
+2852,42137
+2853,29822,27226
+2854,60264
+2855,12887
+2856,65003
+2857,36687
+2858,22840
+2859,52468
+2860,56535,53572
+2861,31158
+2862,37599
+2863,19733
+2864,30841
+2865,2173
+2866,18130
+2867,80927
+2868,8522
+2869,55644
+2870,33920
+2871,18413
+2872,33346
+2873,54295
+2874,808
+2875,8707
+2876,48340
+2877,39633
+2878,1847
+2879,21014
+2880,56188
+2881,60694
+2882,59155
+2883,22451
+2884,26898
+2885,27689
+2886,4671
+2887,17706
+2888,30364,19637,80286
+2889,44296
+2890,70213
+2891,45312,54166
+2892,26899
+2893,14918
+2894,18845
+2895,56268
+2896,38010
+2897,57492,29184
+2898,8549
+2899,8020
+2900,25541
+2901,34565,25574,6885
+2902,40147
+2903,10914
+2904,16643,19805,52244
+2905,45021
+2906,31629
+2907,18455
+2908,19047
+2909,81487,52640
+2910,19560
+2911,2864
+2912,57095
+2913,52305
+2914,77117,68751
+2915,18648
+2916,55271
+2917,22069
+2918,18971
+2919,66094,37587
+2920,35879
+2921,3938
+2922,21108,61929
+2923,29183
+2924,185,54974
+2925,63245
+2926,61906
+2927,9291,64795
+2928,30738
+2929,57631
+2930,59043,71820
+2931,38
+2932,40093
+2933,67525
+2934,71328
+2935,16087
+2936,22810
+2937,55429
+2938,60096
+2939,70430
+2940,79473
+2941,70033
+2942,13742
+2943,60594
+2944,50744
+2945,81505
+2946,69058
+2947,11877
+2948,76505
+2949,50765,39258
+2950,48011
+2951,11672
+2952,54826,15794,12325,50047
+2953,13450
+2954,65182,1150
+2955,9538
+2956,63226
+2957,32443
+2958,29024
+2959,73706,67395
+2960,29634,70278
+2961,72126
+2962,45933
+2963,64039
+2964,35382
+2965,47119,4643,75298,81245
+2966,79808
+2967,51144
+2968,12264,49316
+2969,54661,43981
+2970,42977
+2971,29305
+2972,77981
+2973,4213
+2974,54209
+2975,62997
+2976,75084
+2977,37664
+2978,61755,17046
+2979,62444
+2980,32324
+2981,58726,9862
+2982,55505
+2983,77004
+2984,75023
+2985,59161
+2986,77254,62818
+2987,80351
+2988,23787,35331
+2989,49988
+2990,49316
+2991,2280
+2992,2428
+2993,31349
+2994,59198
+2995,61900
+2996,64472,28447
+2997,20571
+2998,71210,72895,2604
+2999,30863
+3000,75244
+3001,3646
+3002,37317,74095
+3003,13971
+3004,49566,75670
+3005,45408
+3006,30138
+3007,17678
+3008,77014
+3009,14656,25782
+3010,38853
+3011,49050
+3012,35841,65322
+3013,2938
+3014,53489
+3015,79501
+3016,69078
+3017,41684,15670,71380
+3018,79503
+3019,44865
+3020,41007
+3021,25503
+3022,45241
+3023,38982
+3024,75842
+3025,43589
+3026,21343
+3027,13514,63772
+3028,10111
+3029,44106
+3030,1766
+3031,24940,64316
+3032,74892
+3033,68921
+3034,2196
+3035,51840
+3036,45929
+3037,46481
+3038,42383
+3039,71399
+3040,35452
+3041,46104
+3042,53724
+3043,11803
+3044,12523
+3045,43994
+3046,16717
+3047,20454
+3048,28539
+3049,79747
+3050,60133
+3051,50284,54711
+3052,36571
+3053,29980
+3054,38032
+3055,58117
+3056,22969
+3057,61565
+3058,52587,4255
+3059,53683,69017
+3060,30436
+3061,75540
+3062,74188
+3063,50934
+3064,40761,38729
+3065,11326
+3066,13555
+3067,8503
+3068,33184
+3069,21835
+3070,22857,36992
+3071,51754
+3072,57624
+3073,916
+3074,31778,77836
+3075,44167
+3076,3821
+3077,49892
+3078,35862,62627
+3079,33198,8659
+3080,79014
+3081,76658
+3082,6748
+3083,23
+3084,17088
+3085,75054
+3086,81374
+3087,46490
+3088,12158
+3089,69207,70812,9075
+3090,50383
+3091,37729
+3092,46876
+3093,13009
+3094,78383
+3095,36230
+3096,58534
+3097,15748
+3098,2173
+3099,44367
+3100,42219
+3101,41805
+3102,55639
+3103,76654
+3104,46676
+3105,43842
+3106,72875
+3107,25601
+3108,33992
+3109,44614,18005
+3110,26995
+3111,3791
+3112,67652,60490
+3113,74716
+3114,65843
+3115,19627,71641
+3116,57179
+3117,4659
+3118,14505,25180
+3119,57806
+3120,12661
+3121,52389,34165
+3122,43843
+3123,53387
+3124,43715
+3125,23841,33153
+3126,28930,36127,54311,57268
+3127,33155
+3128,14147
+3129,68096
+3130,44987
+3131,59398
+3132,65724
+3133,64253
+3134,49166
+3135,8
+3136,12430
+3137,47913
+3138,7267
+3139,11932
+3140,51073
+3141,2056
+3142,18948
+3143,32609
+3144,40678
+3145,33799
+3146,53007
+3147,70578
+3148,39764
+3149,36905
+3150,43648
+3151,69190,29610,5302,24459
+3152,59671,12931
+3153,2352
+3154,10265
+3155,14565
+3156,16487
+3157,27837
+3158,29884
+3159,2046,4682,17233
+3160,36582
+3161,69271
+3162,71834
+3163,21446
+3164,80566
+3165,80929
+3166,62021
+3167,15874
+3168,64807
+3169,42418,80658
+3170,18077
+3171,59391
+3172,28977
+3173,28197
+3174,74930
+3175,13340,3884
+3176,9947
+3177,31099
+3178,16807
+3179,37333
+3180,55516
+3181,54816,33972
+3182,6365,9015
+3183,43605
+3184,76917
+3185,10993
+3186,68400,29805
+3187,35781
+3188,60222
+3189,59312,6508
+3190,4805
+3191,58639
+3192,60711
+3193,33785
+3194,23849
+3195,49453
+3196,34177
+3197,61114
+3198,3524
+3199,6345,7487
+3200,66775
+3201,57876
+3202,50748
+3203,61909
+3204,69300
+3205,24287
+3206,62585
+3207,35542
+3208,76948
+3209,14969
+3210,36837
+3211,34945
+3212,80922
+3213,6784
+3214,10174
+3215,53199
+3216,62307,79686
+3217,35535,28841
+3218,58182
+3219,21643
+3220,54690
+3221,7998
+3222,19230
+3223,18015
+3224,68281
+3225,33704
+3226,7188
+3227,29270,31386
+3228,39985,30942
+3229,62961
+3230,20220,54127
+3231,40958
+3232,67356
+3233,71257
+3234,69181
+3235,37699
+3236,31274
+3237,20713
+3238,50757,78196
+3239,38320
+3240,63862
+3241,41884
+3242,12566,3870,32434,26187
+3243,52454
+3244,13499
+3245,68484
+3246,69808,9129
+3247,27019,51812
+3248,62831
+3249,212
+3250,55948
+3251,72934
+3252,5096,10871
+3253,54,25760
+3254,72580
+3255,68752
+3256,27164
+3257,66947,51494
+3258,11900
+3259,73767
+3260,68406
+3261,13720
+3262,23742
+3263,80640
+3264,17935
+3265,55129,10337
+3266,60613
+3267,61667,57986
+3268,71873
+3269,38761,35105
+3270,42445
+3271,46661
+3272,27818
+3273,71777
+3274,65670
+3275,41538
+3276,53724
+3277,77794
+3278,69115
+3279,1614
+3280,40771
+3281,1096
+3282,38930
+3283,26473
+3284,26042,71284
+3285,59726
+3286,71703
+3287,35234,27003
+3288,62220
+3289,18128
+3290,46530
+3291,34
+3292,34148
+3293,36079
+3294,72715
+3295,64624
+3296,66406
+3297,43728,14259
+3298,21382
+3299,69286
+3300,13189
+3301,11241
+3302,22181
+3303,65755
+3304,29052
+3305,21969
+3306,62605
+3307,79014
+3308,77515
+3309,72635,27051
+3310,14342
+3311,33651
+3312,80402
+3313,65058
+3314,43006,13620
+3315,61574
+3316,12257
+3317,58434
+3318,14228
+3319,13624
+3320,57193
+3321,17250
+3322,4488
+3323,45470
+3324,50062
+3325,41672
+3326,16722
+3327,40966
+3328,47425
+3329,66236
+3330,48712
+3331,43628
+3332,82152
+3333,6185
+3334,51525
+3335,71185
+3336,53333
+3337,23931
+3338,55549
+3339,29798
+3340,65014
+3341,4616
+3342,38023
+3343,65493
+3344,40107
+3345,20878
+3346,63741,72740
+3347,10670
+3348,65658
+3349,8270
+3350,9513
+3351,31148
+3352,31595
+3353,60581
+3354,13604
+3355,27351
+3356,24703
+3357,25157,77205
+3358,46079
+3359,63566
+3360,64243
+3361,54382
+3362,55149
+3363,61480,32458
+3364,76710
+3365,66663,66288
+3366,29572
+3367,19462,47625
+3368,81536
+3369,79319
+3370,51892
+3371,49201
+3372,66718,11235,53222
+3373,23648
+3374,21209
+3375,54746
+3376,42944
+3377,26525
+3378,37051
+3379,50968
+3380,53274
+3381,79807
+3382,39700,2577
+3383,67236
+3384,44584
+3385,24865
+3386,25506
+3387,22677
+3388,63342,72065,38597
+3389,46326
+3390,1636
+3391,49124
+3392,33702
+3393,50953,63821
+3394,41850
+3395,69950
+3396,77426
+3397,9645,26736
+3398,18549
+3399,41782
+3400,273
+3401,51166
+3402,44223
+3403,19401
+3404,66186
+3405,1603
+3406,40376
+3407,17431
+3408,73469
+3409,69403
+3410,65079
+3411,66308
+3412,75741
+3413,50263
+3414,26534,41455
+3415,50682,12898
+3416,2502
+3417,73100
+3418,6733,50644,25092
+3419,77169
+3420,65991
+3421,60283
+3422,46377
+3423,50627
+3424,75461
+3425,39045,40144
+3426,63155
+3427,71833
+3428,35910
+3429,74611
+3430,13316
+3431,1612
+3432,55717
+3433,7908
+3434,46223
+3435,8920
+3436,32539
+3437,2585
+3438,28797
+3439,70869
+3440,69647,58822
+3441,47662
+3442,80283
+3443,49874
+3444,55476
+3445,23389
+3446,47077
+3447,48791
+3448,72427
+3449,21650,13485
+3450,75311
+3451,5238
+3452,50035
+3453,14701
+3454,1029
+3455,77495
+3456,72184
+3457,44234
+3458,41722
+3459,48122
+3460,22926,32052
+3461,79478
+3462,58831
+3463,5258
+3464,77169
+3465,37583
+3466,71175
+3467,37030
+3468,16296
+3469,77210,49481
+3470,17236,63288
+3471,56733
+3472,437,53416
+3473,60451,74577
+3474,3195
+3475,3292
+3476,67470
+3477,67203
+3478,35196
+3479,5551,23285
+3480,34990,3784
+3481,51107
+3482,20962
+3483,27127
+3484,30200,22214
+3485,10531,50415
+3486,18378
+3487,36891
+3488,81100,66532
+3489,76619
+3490,66309,16154
+3491,58700
+3492,74057,30551
+3493,80039
+3494,1847,77227
+3495,75556
+3496,30683
+3497,36537
+3498,37826
+3499,28529
+3500,33344
+3501,80095
+3502,12864,39755
+3503,72187
+3504,9213
+3505,5595
+3506,63011
+3507,56921
+3508,49267
+3509,17917,12643
+3510,74486,7175
+3511,42871,65494
+3512,36315
+3513,49815
+3514,57511
+3515,20982
+3516,28555
+3517,64326
+3518,27462
+3519,60930
+3520,71900
+3521,77219
+3522,33886
+3523,12692
+3524,24855
+3525,17330
+3526,7100,19017
+3527,77312
+3528,68357
+3529,20377
+3530,52300
+3531,77943
+3532,43153
+3533,35323
+3534,27817
+3535,22513
+3536,53004
+3537,19998,24626
+3538,78843
+3539,64816,74474,25645
+3540,36172
+3541,78660
+3542,75586
+3543,56191
+3544,58380,10948
+3545,76460
+3546,9379,81534
+3547,58320
+3548,68033
+3549,21789
+3550,51341
+3551,70992
+3552,58538,44872
+3553,36256
+3554,27080
+3555,39032,77856
+3556,27619,22474,4716
+3557,16336,10584
+3558,24466
+3559,54573
+3560,61732
+3561,81812
+3562,40413
+3563,47420
+3564,52345
+3565,19635,47173
+3566,12840
+3567,66604
+3568,63662
+3569,12317
+3570,31978
+3571,73249
+3572,60418
+3573,16379
+3574,54227
+3575,16608
+3576,13747,81054
+3577,73659
+3578,4136,80269
+3579,23462,71129
+3580,19701,63380
+3581,2292
+3582,44418
+3583,80202,77221
+3584,41888
+3585,80811
+3586,4480
+3587,54341
+3588,41306
+3589,1748
+3590,55921
+3591,33526
+3592,26123
+3593,51719
+3594,57273
+3595,8440
+3596,42849
+3597,37483
+3598,35950,42295
+3599,61330
+3600,24932
+3601,54843
+3602,79335
+3603,36280
+3604,65556
+3605,16
+3606,9806
+3607,20226
+3608,72484
+3609,26119
+3610,12931,18394
+3611,9271
+3612,15937
+3613,12571
+3614,81591
+3615,16646
+3616,55577
+3617,19911
+3618,30063
+3619,8862
+3620,36910
+3621,6742
+3622,15365
+3623,54776
+3624,34195,75381,23692
+3625,12842
+3626,7886,48119
+3627,17144
+3628,57552
+3629,4832
+3630,23780
+3631,74786
+3632,58652,55627
+3633,11540
+3634,8284
+3635,36341
+3636,47079
+3637,69356
+3638,51648,74491
+3639,32575
+3640,39998
+3641,36563
+3642,61287
+3643,80539,37539,73626
+3644,73571
+3645,79305
+3646,52275
+3647,53300
+3648,48787
+3649,78245
+3650,65808
+3651,54003
+3652,44959
+3653,74976
+3654,18165
+3655,65281
+3656,5427,77766
+3657,81847
+3658,57538
+3659,78430
+3660,10959
+3661,66692,42391
+3662,26026,75706,52246
+3663,20663
+3664,79438,68433
+3665,46281
+3666,15564
+3667,65943
+3668,10549
+3669,5031
+3670,7772,33237,3653
+3671,34196
+3672,63822
+3673,11394
+3674,68725
+3675,62186,62475
+3676,48424
+3677,54957
+3678,57891
+3679,76688
+3680,22622
+3681,32313
+3682,35512
+3683,44143,60201
+3684,49923
+3685,467
+3686,1731,30270
+3687,59361
+3688,75608,72195
+3689,40788
+3690,47991
+3691,8198
+3692,64083
+3693,70521
+3694,26935,64117
+3695,79728
+3696,3420
+3697,58484
+3698,49826
+3699,4423,18411
+3700,26045,8546
+3701,78113
+3702,5014,27384
+3703,49088,15912
+3704,68088
+3705,29076
+3706,33656
+3707,7403
+3708,53153,66613,36635
+3709,24602
+3710,60798
+3711,29507
+3712,12571
+3713,70606
+3714,29411
+3715,48773,27495,52272
+3716,54871
+3717,10062
+3718,58639
+3719,59643
+3720,52157,72705
+3721,66979
+3722,42233
+3723,19283
+3724,63488
+3725,65191
+3726,78000
+3727,31725
+3728,28986
+3729,78375,18894
+3730,11472
+3731,26609,14614
+3732,69792
+3733,45784
+3734,58604
+3735,9704
+3736,38384
+3737,78998,70361
+3738,17145
+3739,34034
+3740,69904
+3741,28200
+3742,11556
+3743,35846
+3744,55963
+3745,40007
+3746,45118
+3747,57306,10222,4128
+3748,76278
+3749,21144,59763
+3750,54822
+3751,21816
+3752,26362
+3753,10928
+3754,34900
+3755,37499
+3756,4804
+3757,38052
+3758,39698
+3759,17276
+3760,4777
+3761,24924
+3762,65498,4950
+3763,41984
+3764,17759
+3765,67609
+3766,32585
+3767,51679
+3768,11188
+3769,80207
+3770,2302,58799
+3771,43318
+3772,17414
+3773,50687
+3774,34130
+3775,3852
+3776,62364
+3777,68581,80989,32039
+3778,37082
+3779,78299
+3780,75388,44688
+3781,77265
+3782,32594
+3783,64499
+3784,51222
+3785,50166,34547
+3786,41206
+3787,67918,66687
+3788,59097,76901
+3789,56339
+3790,1809
+3791,30513
+3792,70176
+3793,78143,6650,40646
+3794,46090
+3795,14044
+3796,78463
+3797,34681
+3798,64093
+3799,12696
+3800,65803
+3801,77169
+3802,70285
+3803,72243
+3804,62320
+3805,33868
+3806,8362
+3807,4538
+3808,49709
+3809,47254
+3810,50587
+3811,4427,64585
+3812,51551
+3813,57445
+3814,69224
+3815,21319
+3816,47923
+3817,24846,30651
+3818,15471
+3819,81291,45501
+3820,44286
+3821,76259,10772
+3822,75081
+3823,4231
+3824,10262
+3825,63384
+3826,32276
+3827,10424
+3828,26786
+3829,1897
+3830,53126,55688
+3831,20123,79302
+3832,40238
+3833,40862
+3834,57605
+3835,6530
+3836,15271,75651
+3837,908
+3838,26093
+3839,27790
+3840,16787
+3841,63091,79548
+3842,29968
+3843,16053
+3844,68797
+3845,74631
+3846,21438,54480
+3847,15443
+3848,69675
+3849,28797
+3850,44887
+3851,17290
+3852,49444
+3853,64740,7763
+3854,43028
+3855,10008
+3856,24205
+3857,72368
+3858,65127
+3859,36009
+3860,16787
+3861,21739,17771
+3862,58057,67612,13604
+3863,74072
+3864,38550
+3865,36509
+3866,75367
+3867,6037
+3868,31165
+3869,75008
+3870,56728
+3871,43983,20506
+3872,68049
+3873,69126
+3874,72577
+3875,61143
+3876,18576
+3877,68587
+3878,42432
+3879,15732
+3880,64635,1435
+3881,11950,13749
+3882,14233
+3883,48194
+3884,7980
+3885,39454
+3886,66283
+3887,46689
+3888,11427,8223
+3889,2686
+3890,48610
+3891,49598
+3892,76700
+3893,74605
+3894,27729
+3895,74405
+3896,17545
+3897,38901
+3898,18303,23763
+3899,19997
+3900,6610,67107
+3901,60012
+3902,75886
+3903,70790
+3904,51638
+3905,72194
+3906,56216
+3907,75750
+3908,81728
+3909,38160
+3910,45747
+3911,6469
+3912,79778
+3913,53274,19786
+3914,47561
+3915,13718
+3916,77008
+3917,47760
+3918,73923
+3919,30542
+3920,26574
+3921,38507
+3922,50798
+3923,40578
+3924,53489
+3925,40358
+3926,32005
+3927,9982
+3928,60689
+3929,66297,3606
+3930,27214
+3931,24784
+3932,18948
+3933,16392
+3934,43711
+3935,42696,43003
+3936,20242
+3937,77332
+3938,81864
+3939,47805
+3940,29795
+3941,60518
+3942,48140
+3943,35325
+3944,66066
+3945,33459
+3946,33671
+3947,66540
+3948,16135,27514,51925
+3949,70598,26084
+3950,81187
+3951,65515,67843
+3952,59552
+3953,21446
+3954,77855,15721
+3955,54475
+3956,35978
+3957,21078
+3958,50821
+3959,39897
+3960,35978
+3961,38674
+3962,8759,76878
+3963,20672
+3964,68606
+3965,11609
+3966,29254
+3967,69835
+3968,39793
+3969,66966
+3970,30741
+3971,9464
+3972,5949
+3973,23295
+3974,59144
+3975,65582
+3976,58502
+3977,65040
+3978,36203
+3979,9133
+3980,7808
+3981,78686
+3982,29002
+3983,75944
+3984,64259
+3985,6166
+3986,12333
+3987,61520
+3988,9208
+3989,81897
+3990,136
+3991,75274
+3992,16019
+3993,16434,66656,45092
+3994,21624
+3995,40147
+3996,30993,57423,2339
+3997,73803
+3998,26399
+3999,6261
+4000,77947
+4001,66514
+4002,16640
+4003,38129
+4004,70499
+4005,52623,64496
+4006,53584
+4007,43817
+4008,81445
+4009,65231
+4010,74515,75463
+4011,35618
+4012,38852,39884
+4013,81661
+4014,60247
+4015,53261
+4016,67935
+4017,55072
+4018,16097
+4019,23577
+4020,79098
+4021,19192,17174,16967
+4022,65145
+4023,46839
+4024,29005
+4025,65324
+4026,74328
+4027,60545
+4028,67703
+4029,66607
+4030,50190
+4031,66241
+4032,71132
+4033,51102
+4034,7633
+4035,13117
+4036,81161
+4037,63884
+4038,2392,18204
+4039,14565
+4040,55499
+4041,21264
+4042,70903
+4043,72763
+4044,42363
+4045,25390
+4046,68208
+4047,20990
+4048,30843,26826
+4049,37264
+4050,38376
+4051,70828
+4052,45282
+4053,77906,45099
+4054,65079
+4055,4299
+4056,46794
+4057,66206,77761
+4058,75468
+4059,22400
+4060,14348
+4061,56900,44889
+4062,65671
+4063,72809
+4064,39351,17758
+4065,38125
+4066,224
+4067,25772
+4068,60529
+4069,25772
+4070,38143
+4071,5181
+4072,68950
+4073,75135,42271
+4074,65424
+4075,24395
+4076,31168
+4077,33382
+4078,49228
+4079,38908
+4080,6165,28975,37205
+4081,14065,1177
+4082,71384
+4083,56186,78783
+4084,76568
+4085,13392
+4086,3266
+4087,10668
+4088,71091
+4089,61006
+4090,66144
+4091,584
+4092,45092
+4093,3164
+4094,45034
+4095,7888
+4096,26887
+4097,64024,77512
+4098,41389
+4099,75863
+4100,63191
+4101,54927
+4102,3295
+4103,12330,79898
+4104,31588
+4105,17068
+4106,48139
+4107,59838
+4108,23011
+4109,22673
+4110,12735
+4111,76702,21314
+4112,47262
+4113,81717
+4114,52910
+4115,32030
+4116,6337
+4117,39103
+4118,557
+4119,51675
+4120,74721
+4121,70821
+4122,72630
+4123,67939
+4124,60825
+4125,8579
+4126,57675
+4127,2299
+4128,56160
+4129,11503,57793
+4130,65293
+4131,56386,35994,31155
+4132,32268
+4133,7653,28649,57264
+4134,14505
+4135,16292
+4136,77040
+4137,41204
+4138,22325,45779
+4139,18289
+4140,39090
+4141,27301
+4142,62694
+4143,10934,70773
+4144,7368
+4145,57755
+4146,74804
+4147,18399,61444
+4148,65173
+4149,11900
+4150,73975
+4151,60844
+4152,35879
+4153,60264
+4154,78994
+4155,31401,56391
+4156,79748
+4157,999
+4158,38743
+4159,42046
+4160,81593
+4161,33017
+4162,65056
+4163,60202
+4164,53316
+4165,56107,19116
+4166,35534
+4167,1905
+4168,50969
+4169,50225,81015,65122
+4170,65753
+4171,69615
+4172,79650
+4173,18466
+4174,39489
+4175,65661
+4176,51800
+4177,55876
+4178,13901
+4179,40832
+4180,6275
+4181,58842
+4182,42385
+4183,61565
+4184,10897
+4185,20283
+4186,493
+4187,81326
+4188,74908
+4189,37639
+4190,73916
+4191,82174
+4192,57593
+4193,17154
+4194,52966
+4195,59320
+4196,58329
+4197,21209
+4198,36404,1404
+4199,41132,78518
+4200,11777
+4201,77516
+4202,34107
+4203,15754
+4204,63298
+4205,66858
+4206,14784
+4207,45453
+4208,21857
+4209,2760
+4210,73794
+4211,56226
+4212,60687
+4213,12207
+4214,18320
+4215,59401
+4216,79733,70078
+4217,58826
+4218,76207
+4219,3625
+4220,40549
+4221,43465,34384
+4222,3899,1462
+4223,13835
+4224,74313
+4225,23688
+4226,79488
+4227,76370,46995
+4228,62479
+4229,28998,81632
+4230,61015
+4231,24857
+4232,59565
+4233,42525
+4234,73399
+4235,31703
+4236,79681,10339
+4237,75179
+4238,48549
+4239,45840
+4240,3868
+4241,79587
+4242,64021
+4243,18968,54567
+4244,15916
+4245,64375
+4246,61814
+4247,65365
+4248,29406,64023
+4249,48222
+4250,11433
+4251,30371
+4252,39281
+4253,52930
+4254,13320,65906
+4255,74963
+4256,14207
+4257,47805,33000
+4258,34026
+4259,37666
+4260,49125
+4261,42921
+4262,1227
+4263,25078
+4264,65743
+4265,6751
+4266,29928
+4267,13570
+4268,37972
+4269,47785
+4270,47322
+4271,66546
+4272,2226
+4273,48305
+4274,20480
+4275,39776
+4276,54070
+4277,41538,63145
+4278,51942,22766,24003
+4279,7246
+4280,49784
+4281,27246
+4282,336
+4283,10177
+4284,42539
+4285,39394
+4286,60293
+4287,30697
+4288,42281
+4289,58453
+4290,56498
+4291,52095
+4292,51393
+4293,79693
+4294,16183
+4295,12566
+4296,16306
+4297,18223
+4298,28902
+4299,14170
+4300,66173
+4301,77308
+4302,61070
+4303,12175
+4304,67888,71889
+4305,59476
+4306,55272,51675
+4307,25046
+4308,53816
+4309,64173
+4310,65192
+4311,27533
+4312,68531
+4313,39659
+4314,71571
+4315,35829
+4316,30245
+4317,29473
+4318,15715
+4319,3236
+4320,57539,59777
+4321,6189,7354
+4322,11209
+4323,62000
+4324,56499
+4325,20300
+4326,20770
+4327,59114
+4328,70113
+4329,21522
+4330,57453
+4331,46388
+4332,32962
+4333,24350
+4334,28548
+4335,54657,21376
+4336,40901
+4337,16049
+4338,7077
+4339,13943,5981
+4340,40521
+4341,69145,33457
+4342,28528
+4343,82109
+4344,75130
+4345,45210,45929
+4346,47513
+4347,34343
+4348,17393
+4349,9860
+4350,52703
+4351,20061
+4352,43551
+4353,47050,14785
+4354,64431,57090
+4355,80601
+4356,40037
+4357,9789
+4358,57272,21718
+4359,76810,78886
+4360,6348
+4361,49024
+4362,63819,27720,66165
+4363,60815
+4364,71753
+4365,49232,46622
+4366,79298
+4367,56223
+4368,50501
+4369,26801
+4370,15794,42260
+4371,32506,71980
+4372,58457
+4373,24381
+4374,65365,58604
+4375,17451,6257
+4376,50521
+4377,36944
+4378,26289
+4379,71008,78966
+4380,30850
+4381,32099
+4382,72387
+4383,35058
+4384,8347
+4385,53508
+4386,34995
+4387,73578
+4388,31909
+4389,46622
+4390,76778
+4391,35632,49149
+4392,2559
+4393,6889
+4394,11079
+4395,70778
+4396,15496
+4397,33570
+4398,1660
+4399,48571
+4400,29838
+4401,52632
+4402,67588
+4403,75443
+4404,2754
+4405,69825
+4406,77912
+4407,63738,8452
+4408,78063
+4409,68308
+4410,62800
+4411,52143
+4412,40734,66593
+4413,17175
+4414,38973
+4415,79060
+4416,68067
+4417,44923
+4418,30762
+4419,39545
+4420,53669
+4421,46132
+4422,22361
+4423,39940
+4424,65869
+4425,47520
+4426,42340,6239
+4427,20077
+4428,76479,75033
+4429,11123
+4430,61592
+4431,47763
+4432,28410
+4433,47340
+4434,48252,21556
+4435,69968
+4436,3048
+4437,17696
+4438,14054,50195,66848,11598
+4439,44635
+4440,3233
+4441,65380,63369
+4442,71744
+4443,69060
+4444,39576
+4445,37082
+4446,31566
+4447,10074
+4448,45535
+4449,35758
+4450,76318
+4451,15342,80415
+4452,79475
+4453,15054
+4454,69183,9448
+4455,73609
+4456,59877
+4457,58941
+4458,63492,64487
+4459,72071
+4460,79400,33298,20351
+4461,5666
+4462,5091
+4463,20130,66111
+4464,18007
+4465,8088
+4466,28910
+4467,5698
+4468,57646,38453
+4469,12726,64817,74138
+4470,81181
+4471,48776
+4472,81864
+4473,27810
+4474,16968
+4475,48987
+4476,2205
+4477,54886
+4478,77045
+4479,29189
+4480,56921
+4481,35560
+4482,2588
+4483,3347,5548
+4484,32463
+4485,25699
+4486,63348,67104
+4487,31714
+4488,48646
+4489,61339
+4490,46568,55265,17761
+4491,30818
+4492,636
+4493,49629
+4494,77592,51836
+4495,15477
+4496,73686,30657,36005
+4497,5445
+4498,76130
+4499,39284
+4500,65662
+4501,1379
+4502,69630
+4503,67547
+4504,47952
+4505,39613
+4506,62293
+4507,46676
+4508,64016
+4509,57493,80044
+4510,3360
+4511,33520
+4512,37124
+4513,50460
+4514,55357
+4515,67289
+4516,39288
+4517,46073
+4518,6984
+4519,27810
+4520,6637
+4521,60401
+4522,76004
+4523,6896
+4524,64823
+4525,56443
+4526,12702
+4527,26851
+4528,58631
+4529,58080
+4530,13330,23676
+4531,28434,12183
+4532,2503
+4533,3527,6852
+4534,7980
+4535,79343,74991
+4536,15334
+4537,66953
+4538,44190
+4539,65456
+4540,12531
+4541,35770,10968
+4542,39690
+4543,82167
+4544,3737
+4545,37212
+4546,35092
+4547,65245
+4548,51726,60580,12581
+4549,8776
+4550,50683
+4551,10506,33115
+4552,49052
+4553,9100
+4554,11932
+4555,26430
+4556,37214
+4557,81840
+4558,2524
+4559,79904
+4560,52714,65134
+4561,74597
+4562,860
+4563,57319
+4564,6084,64184,51237
+4565,74322,13803
+4566,44947
+4567,12376
+4568,16689
+4569,71610
+4570,52006
+4571,3184
+4572,22259
+4573,72292
+4574,64210
+4575,15407,75340
+4576,71998
+4577,3365
+4578,17643,14437
+4579,69761
+4580,30765
+4581,55332
+4582,62842,2126
+4583,22820
+4584,42222
+4585,10575
+4586,47040,52035
+4587,78825
+4588,57521
+4589,3417
+4590,44264
+4591,55507
+4592,8236
+4593,43370
+4594,41698
+4595,27213
+4596,2734,49221
+4597,70329
+4598,52144
+4599,22521
+4600,41468
+4601,11959
+4602,50228,74155
+4603,62605
+4604,24209
+4605,40176,46426
+4606,57432
+4607,79804
+4608,30263
+4609,394
+4610,715
+4611,74520
+4612,72863
+4613,32463
+4614,24771
+4615,37200
+4616,1726
+4617,68555
+4618,33864
+4619,19840
+4620,39790
+4621,10553
+4622,63215
+4623,21739
+4624,66397
+4625,66966
+4626,60830
+4627,38146
+4628,6907
+4629,74558
+4630,13373
+4631,66224,70847
+4632,57078
+4633,36946,40411,48267
+4634,76843
+4635,43813
+4636,26346
+4637,59173
+4638,28364
+4639,25593
+4640,11050
+4641,15734
+4642,74848
+4643,5638
+4644,79525
+4645,10363
+4646,16154
+4647,69498
+4648,60323,57836
+4649,55899
+4650,11240,29747
+4651,10182
+4652,81827
+4653,39489
+4654,62579
+4655,60831
+4656,15694
+4657,73805,50202
+4658,60047
+4659,56950
+4660,4191
+4661,52893
+4662,45161
+4663,47518,68017
+4664,54960
+4665,76428
+4666,48033
+4667,54026
+4668,73939
+4669,68171
+4670,60119
+4671,78520
+4672,38027
+4673,9059
+4674,70234
+4675,34135
+4676,54554
+4677,27788
+4678,74785
+4679,66564
+4680,65784,72077
+4681,13565
+4682,8060
+4683,15543
+4684,3069
+4685,79640
+4686,24930
+4687,11501,75725
+4688,72622
+4689,21442
+4690,4332
+4691,80944
+4692,42161
+4693,46255
+4694,61102
+4695,809
+4696,1076
+4697,70973
+4698,53873
+4699,75095
+4700,69726
+4701,13796
+4702,61952
+4703,70195
+4704,69271
+4705,39792
+4706,76173
+4707,31653
+4708,25794
+4709,46476
+4710,74374,79890
+4711,78225,3011
+4712,4265
+4713,41818
+4714,41799
+4715,28331
+4716,24435
+4717,73127,11571
+4718,4397
+4719,10201
+4720,76152
+4721,61887
+4722,17702
+4723,40390
+4724,25278
+4725,49135
+4726,38369
+4727,65588
+4728,9890
+4729,31905,65675
+4730,53183
+4731,20615
+4732,67529
+4733,20663
+4734,7945
+4735,25999
+4736,35009
+4737,12433
+4738,37971
+4739,32567
+4740,34972
+4741,80095
+4742,28232
+4743,28320
+4744,55035,23248
+4745,81214
+4746,73487
+4747,6324
+4748,804
+4749,35904
+4750,28253,28119
+4751,4557
+4752,26177
+4753,17217
+4754,44066
+4755,50711
+4756,80355
+4757,64951
+4758,67075
+4759,16067
+4760,74093,55091
+4761,57021
+4762,52414
+4763,36341
+4764,47670,55432
+4765,44243
+4766,81009
+4767,31976
+4768,20547
+4769,22867
+4770,35256
+4771,27066
+4772,17324,75275
+4773,66953
+4774,48139
+4775,42973
+4776,69455
+4777,41226
+4778,55407
+4779,47924
+4780,37587
+4781,59032
+4782,1269,62947
+4783,42339
+4784,25073
+4785,53301
+4786,59407
+4787,6303
+4788,20152
+4789,43110
+4790,30245
+4791,78767
+4792,40890
+4793,32866,17935
+4794,37983
+4795,25837
+4796,80630
+4797,11782
+4798,75903,64382,20758
+4799,27107,32164
+4800,38180
+4801,72553
+4802,65206,50098
+4803,35466
+4804,12877
+4805,43565
+4806,71027
+4807,31168
+4808,6642
+4809,79742
+4810,79480
+4811,45597,51797
+4812,61032
+4813,16472
+4814,25023
+4815,43845
+4816,315
+4817,50196
+4818,47937
+4819,30049
+4820,68462
+4821,48316
+4822,43599
+4823,77259
+4824,63278
+4825,36922
+4826,1796
+4827,18972,78360
+4828,62244
+4829,37138
+4830,27167
+4831,44438
+4832,1883
+4833,60318
+4834,12988,59737
+4835,14718
+4836,7990
+4837,66532
+4838,80417
+4839,48827,3457
+4840,78065
+4841,12602
+4842,78808
+4843,66609,72862
+4844,48110
+4845,34014
+4846,80460
+4847,23007
+4848,33889
+4849,41247
+4850,14330,25529
+4851,76221
+4852,77593
+4853,82009
+4854,25540,81605
+4855,13894
+4856,74772
+4857,11386
+4858,36026,66891
+4859,3371
+4860,53953,59343,35290
+4861,28307
+4862,44083
+4863,26640
+4864,66005
+4865,74619
+4866,24340
+4867,53148
+4868,69338
+4869,60432
+4870,28539
+4871,16406
+4872,79244
+4873,62815
+4874,62021
+4875,70544
+4876,20695
+4877,57774
+4878,67528
+4879,29747,79059
+4880,34343
+4881,68545,55795,2191
+4882,43599
+4883,23577
+4884,8513
+4885,41071
+4886,22707
+4887,68988
+4888,36060
+4889,18552,76927
+4890,58326
+4891,68679,78614
+4892,33208
+4893,44754
+4894,11434
+4895,77942,82167
+4896,11562
+4897,32428
+4898,75912
+4899,52302
+4900,4547
+4901,49260,21178
+4902,9628
+4903,77660
+4904,15348
+4905,9059,51559
+4906,46844
+4907,81875
+4908,63098,37007
+4909,71160
+4910,80429
+4911,25259
+4912,60383
+4913,10515
+4914,33583
+4915,34210
+4916,59061
+4917,75574
+4918,38538
+4919,40685
+4920,30338
+4921,13254,43281
+4922,12454,69741
+4923,63842
+4924,48485
+4925,22546
+4926,69517,78034
+4927,11028
+4928,66894
+4929,2422
+4930,47636
+4931,30869
+4932,36836
+4933,35047
+4934,13004
+4935,47062
+4936,30277
+4937,59102
+4938,8991,14161
+4939,37860
+4940,47159
+4941,43959
+4942,76107
+4943,72246,71609
+4944,71118
+4945,81284
+4946,65865
+4947,79019
+4948,48143
+4949,42489
+4950,904
+4951,22092
+4952,65148
+4953,58122
+4954,34872,29978
+4955,5731
+4956,65519
+4957,23443,36996
+4958,76843
+4959,64732
+4960,50523
+4961,25449
+4962,56285,27420
+4963,13814
+4964,79001
+4965,70936
+4966,69407,52188
+4967,79136
+4968,45157
+4969,34590
+4970,35409
+4971,22242
+4972,73242
+4973,31928
+4974,18624
+4975,37730
+4976,80888
+4977,48427
+4978,42298
+4979,75270
+4980,4892
+4981,41264
+4982,58113
+4983,48735
+4984,11980,23832
+4985,3884
+4986,75646
+4987,1363
+4988,81292
+4989,613
+4990,40059
+4991,28200
+4992,63312,23928
+4993,28401
+4994,71582
+4995,62907
+4996,8726
+4997,16155
+4998,52811,18560
+4999,82149
+5000,31736
+5001,59361
+5002,5035
+5003,45493
+5004,81077
+5005,41523
+5006,60674
+5007,3095
+5008,6486,13910
+5009,4869
+5010,14287
+5011,76050
+5012,27575
+5013,7365,22224,61202
+5014,52902
+5015,52619,79998
+5016,29267,80098
+5017,22261
+5018,11307
+5019,25482
+5020,1994
+5021,60769
+5022,13914
+5023,67405
+5024,72018
+5025,71117
+5026,56900
+5027,41758
+5028,47876
+5029,22250,73768
+5030,67279
+5031,74173
+5032,50661
+5033,39811
+5034,36687,18155
+5035,74926
+5036,30103,9766
+5037,9744
+5038,39400
+5039,50100
+5040,25053
+5041,2617
+5042,49893,30529,1411
+5043,38980
+5044,70412
+5045,2176
+5046,4309
+5047,60844
+5048,31766,30748
+5049,62356,45515
+5050,61357
+5051,4425,70705
+5052,61158,42619
+5053,45240
+5054,54393
+5055,12818
+5056,72078
+5057,77679
+5058,79363
+5059,73423,11395
+5060,21522
+5061,37339
+5062,5368
+5063,21814
+5064,31287
+5065,9740
+5066,16388
+5067,59422,22544
+5068,70253
+5069,60297,32082
+5070,77505,80911
+5071,16908
+5072,48846
+5073,74564
+5074,42848
+5075,76314
+5076,14376,16557
+5077,37048
+5078,74497,25271
+5079,23115
+5080,64976
+5081,8547
+5082,34433,68328,48018
+5083,44134
+5084,41912
+5085,58794,70103
+5086,2107,20043
+5087,10168
+5088,37594
+5089,44462
+5090,66315
+5091,70689
+5092,55685
+5093,47493
+5094,13188
+5095,34395
+5096,45439,63894
+5097,42154
+5098,78045
+5099,8922,80173
+5100,44631,62714
+5101,52372
+5102,51072
+5103,31750
+5104,23282,74950
+5105,50378
+5106,8481
+5107,79225
+5108,81093
+5109,74354
+5110,9240
+5111,29399
+5112,233,65248,28827
+5113,1478
+5114,79467
+5115,30814
+5116,59359
+5117,70995
+5118,72905,20894
+5119,15736
+5120,56603
+5121,58763
+5122,14771
+5123,16726
+5124,36676
+5125,68238
+5126,15251,27456
+5127,47819
+5128,27340
+5129,6026,42127,66245
+5130,72844
+5131,81148
+5132,6001
+5133,19224,81268
+5134,25647
+5135,81525
+5136,1793
+5137,45443
+5138,22573
+5139,1241
+5140,35943,65365
+5141,25261,42874
+5142,71172
+5143,31056
+5144,14097
+5145,70652
+5146,54686
+5147,7426
+5148,48686
+5149,55874
+5150,53111,18561
+5151,23245
+5152,66464
+5153,53914,13007
+5154,7065
+5155,59184
+5156,3266
+5157,21632
+5158,72693
+5159,55131
+5160,70744,13008
+5161,46830
+5162,60440
+5163,38614
+5164,32363
+5165,68756
+5166,40355
+5167,60233
+5168,35599
+5169,10174
+5170,75491
+5171,23086
+5172,56077
+5173,19270
+5174,3287
+5175,28504
+5176,21543
+5177,36221
+5178,50626
+5179,27572,49491
+5180,54975
+5181,40496
+5182,13106,50163
+5183,3146
+5184,292
+5185,20077
+5186,45625
+5187,23084
+5188,75673
+5189,28528
+5190,2033
+5191,28966
+5192,53766
+5193,50792
+5194,38361,11732
+5195,64292,11482
+5196,52036
+5197,24191
+5198,70338
+5199,44687
+5200,53144
+5201,65916
+5202,18046
+5203,45026,47370
+5204,42874
+5205,77717
+5206,37841
+5207,8634
+5208,71666
+5209,5996
+5210,35761
+5211,30156
+5212,62253
+5213,67238
+5214,6175
+5215,48773
+5216,1665
+5217,43045,72798
+5218,22190,1235
+5219,7032,9133
+5220,22480,66124
+5221,59309
+5222,48184
+5223,77930
+5224,50639
+5225,77072
+5226,28143
+5227,63537
+5228,39388
+5229,17148
+5230,7455
+5231,74141
+5232,3677
+5233,63429
+5234,51193
+5235,58131
+5236,34085
+5237,39151
+5238,67883
+5239,14364,74549
+5240,19630
+5241,11166
+5242,77304
+5243,31565
+5244,75612
+5245,35351
+5246,65653,77132
+5247,31798
+5248,49918
+5249,80098
+5250,16935
+5251,27656
+5252,38576,8905
+5253,11780
+5254,29815
+5255,62318
+5256,44365
+5257,3881
+5258,46046
+5259,57728
+5260,31154
+5261,71761
+5262,36796,57311
+5263,9673
+5264,29903
+5265,67420
+5266,66176
+5267,34089
+5268,51222
+5269,14819
+5270,24710
+5271,69078
+5272,7407,37363
+5273,46347
+5274,2778,62834
+5275,75279,18260
+5276,33834
+5277,12682
+5278,77864
+5279,11972
+5280,69080
+5281,7293
+5282,30182
+5283,15879
+5284,39391
+5285,79818
+5286,52390
+5287,22276
+5288,78624
+5289,70489
+5290,49105
+5291,40634,16608
+5292,51818
+5293,66367
+5294,31926
+5295,15165
+5296,59776
+5297,78512,39537
+5298,45133
+5299,54127,35366,62991
+5300,72569
+5301,43151
+5302,11027,5128
+5303,46711
+5304,19021
+5305,9281
+5306,45195
+5307,28362
+5308,52983,15571
+5309,22770
+5310,45180,6423
+5311,50764
+5312,14229
+5313,37673,41064
+5314,81709
+5315,72927
+5316,43942,19982
+5317,42444
+5318,44996
+5319,77570
+5320,38735
+5321,49914
+5322,67788
+5323,53346,47467
+5324,67212,69205
+5325,16555
+5326,25404
+5327,52420
+5328,32496
+5329,77168
+5330,32833
+5331,43717
+5332,17293
+5333,34874
+5334,24349
+5335,36788
+5336,40566,67103
+5337,79217
+5338,43119
+5339,31142
+5340,29305
+5341,22333,64866
+5342,10527
+5343,58507
+5344,80307
+5345,59644,74941
+5346,23483
+5347,69210
+5348,25241,34011
+5349,58250
+5350,47695
+5351,63341
+5352,13487,69372
+5353,25639
+5354,40834,40712
+5355,31106
+5356,24471
+5357,15493
+5358,58579
+5359,36917
+5360,50432
+5361,17650
+5362,33324
+5363,66106
+5364,23795,60862,41178,25672
+5365,68764
+5366,20574
+5367,28582
+5368,73684
+5369,51965
+5370,70439
+5371,55018
+5372,51414
+5373,52429
+5374,19683
+5375,69206
+5376,8222
+5377,20788
+5378,51546
+5379,16604
+5380,33748
+5381,29382
+5382,54183
+5383,52172,63029
+5384,63298,49569
+5385,60323
+5386,24692
+5387,14865
+5388,79296
+5389,47323
+5390,37481,47637
+5391,6435
+5392,16153
+5393,1558,64065,70496
+5394,4467
+5395,54110
+5396,55865
+5397,16957,30774
+5398,9309
+5399,41150
+5400,535
+5401,7663
+5402,59548
+5403,72246
+5404,44009
+5405,21487
+5406,3647
+5407,80367
+5408,81073
+5409,78640
+5410,35796
+5411,50572
+5412,5862
+5413,46201
+5414,13113
+5415,73544
+5416,67289
+5417,42698
+5418,48536
+5419,40401
+5420,3292
+5421,61886
+5422,41473
+5423,21918,31339,78594
+5424,25825
+5425,56801
+5426,26032
+5427,1011,48789
+5428,80295
+5429,23918,22276
+5430,80831,3790
+5431,16946,50665,55890
+5432,63288
+5433,16024
+5434,5144
+5435,11652,82059
+5436,71923
+5437,2017
+5438,63790
+5439,76846
+5440,46110
+5441,13549
+5442,39187,43388
+5443,13796
+5444,48283,50
+5445,59910
+5446,42302
+5447,13877,23280
+5448,66384
+5449,14830,27610
+5450,3847
+5451,44769
+5452,57349,63568,57373
+5453,56539
+5454,25758
+5455,77676,9954
+5456,77976,17188
+5457,28062
+5458,1974
+5459,70431,48557
+5460,719
+5461,15678
+5462,55744
+5463,9781
+5464,60702
+5465,73701,27607
+5466,39027
+5467,42258
+5468,60837,48534
+5469,11972
+5470,67441,36372
+5471,57021
+5472,15789,61263
+5473,48414,17871,30724
+5474,63271
+5475,77236
+5476,26264,400,75612
+5477,52143
+5478,24108
+5479,10309
+5480,68837
+5481,20447,22404
+5482,39510,65863
+5483,68776
+5484,49067
+5485,41010,31402
+5486,9235
+5487,20777,47614
+5488,48559,53818
+5489,47014
+5490,59364
+5491,35437,44044,43891
+5492,39716
+5493,20239
+5494,11767
+5495,35764
+5496,5445
+5497,12015
+5498,74497
+5499,69345,46449
+5500,26072,28389,73180
+5501,64758
+5502,36151
+5503,25161
+5504,33622,34598
+5505,74321,68194
+5506,71713,54234
+5507,25826
+5508,28169
+5509,16614
+5510,49299
+5511,7381
+5512,32557
+5513,14984
+5514,79310,25501
+5515,74976
+5516,65033
+5517,67115
+5518,71209
+5519,36420
+5520,20507
+5521,71679
+5522,1060,64158
+5523,15099
+5524,49941,80900
+5525,50731
+5526,42901
+5527,4125
+5528,70443,55063
+5529,23433
+5530,21814
+5531,27490
+5532,68948,3585,66225
+5533,61982,70830
+5534,47017
+5535,30757
+5536,56031
+5537,34736
+5538,56598
+5539,64511
+5540,40007
+5541,53083
+5542,18901
+5543,11632
+5544,36735
+5545,30491
+5546,40149,46138
+5547,34605
+5548,28087
+5549,45929
+5550,37982
+5551,66999
+5552,9327
+5553,81955,17078
+5554,6402,74685
+5555,73780
+5556,49497
+5557,22005
+5558,74937,43599
+5559,18005
+5560,51295
+5561,23523
+5562,17374
+5563,70802
+5564,40946,36429
+5565,33991
+5566,27422
+5567,63750
+5568,9923,52312
+5569,42642,33693
+5570,34157
+5571,55408
+5572,2637,21721
+5573,39134
+5574,43330
+5575,10711
+5576,70283
+5577,28415
+5578,70741
+5579,17768,27735
+5580,35751
+5581,49430
+5582,58375
+5583,66517
+5584,71268
+5585,74634
+5586,13361
+5587,31766
+5588,23551
+5589,71143
+5590,64566,2706
+5591,19542
+5592,37735,41017
+5593,67443
+5594,15793,47539,45995
+5595,49899
+5596,36803
+5597,19549
+5598,3943,43937
+5599,28507,64260
+5600,11714
+5601,68543
+5602,3839
+5603,59566,23641
+5604,10117
+5605,51934
+5606,44565
+5607,12659,6586
+5608,53212
+5609,17480
+5610,34901
+5611,19994
+5612,80353
+5613,74889
+5614,13653
+5615,15996,64837
+5616,2465,61247
+5617,9206,63045
+5618,54828
+5619,82114,11114
+5620,31820
+5621,49506
+5622,54348
+5623,28838
+5624,6812
+5625,31842
+5626,26856
+5627,49384
+5628,44513
+5629,66907,71569
+5630,31194,27386,54332
+5631,71172,45405
+5632,26367
+5633,62433
+5634,38674
+5635,47433,42586,68733
+5636,64183
+5637,16223
+5638,65382
+5639,20924
+5640,47908
+5641,34756
+5642,73416
+5643,59602
+5644,45528
+5645,13058,7157,56415
+5646,57669
+5647,11237
+5648,79968
+5649,43174
+5650,5663
+5651,13594
+5652,36125
+5653,74658
+5654,13819
+5655,31373
+5656,56006
+5657,58880
+5658,46643
+5659,26594
+5660,19239,24965,59932
+5661,69117
+5662,14646
+5663,79443
+5664,63482
+5665,60158
+5666,46438
+5667,20425
+5668,5429,50811,24450
+5669,27419,4420,43329
+5670,23777
+5671,44652
+5672,75158
+5673,16074,66304
+5674,57350
+5675,80351
+5676,40348,51850
+5677,72024
+5678,13815
+5679,30136
+5680,17438
+5681,22136
+5682,62063
+5683,10950
+5684,71162
+5685,3618
+5686,26340
+5687,25314
+5688,1499
+5689,13374
+5690,47180
+5691,25162
+5692,14911
+5693,44566
+5694,3008,76064
+5695,15175
+5696,4332
+5697,33900
+5698,25053
+5699,60284
+5700,48160,46051
+5701,53506
+5702,24588
+5703,14754,27732,58690
+5704,27622
+5705,9953
+5706,54775
+5707,43345
+5708,14581
+5709,60413
+5710,47939
+5711,467
+5712,59481
+5713,63841
+5714,66724
+5715,39247,53353
+5716,68845
+5717,12844
+5718,54638
+5719,58836
+5720,60972
+5721,26155
+5722,53229,67255
+5723,62538
+5724,74323
+5725,34024,48633
+5726,41208
+5727,24377
+5728,17905
+5729,38221
+5730,65090
+5731,72758
+5732,41385
+5733,1495
+5734,69993
+5735,28372
+5736,58319,34244,24966
+5737,6221
+5738,55787
+5739,77393,6185
+5740,7451
+5741,81794
+5742,5063
+5743,39385
+5744,40330
+5745,77648
+5746,11488
+5747,65844
+5748,48809
+5749,44088
+5750,69104
+5751,4472,77286
+5752,79631
+5753,46101
+5754,62482
+5755,80584
+5756,1960
+5757,25003
+5758,17553
+5759,17324
+5760,19826,6282
+5761,49721
+5762,33036
+5763,15242
+5764,37331
+5765,76382
+5766,58687
+5767,21940
+5768,4419,52966
+5769,3812
+5770,70585
+5771,45643
+5772,81217
+5773,72625
+5774,58624
+5775,70578
+5776,9819
+5777,76785,25197
+5778,50538
+5779,47826
+5780,10535
+5781,59080
+5782,34170
+5783,65754
+5784,71071
+5785,30424,36166
+5786,63254
+5787,22128
+5788,31835,35309
+5789,2932
+5790,15527
+5791,54385,60356
+5792,14355
+5793,42453
+5794,56170,73356
+5795,55573
+5796,13742
+5797,1701
+5798,30989
+5799,21084,53291
+5800,59186
+5801,30118
+5802,54997
+5803,5327
+5804,74393
+5805,36498
+5806,26516,23922
+5807,42128
+5808,72180
+5809,67726,18692
+5810,78075
+5811,53699
+5812,4454
+5813,68624
+5814,48681
+5815,63486
+5816,76552
+5817,27508
+5818,5169
+5819,23328
+5820,5128
+5821,51204
+5822,35858
+5823,11810,65691
+5824,74809
+5825,515
+5826,28240
+5827,2352,1335
+5828,67966
+5829,12512,22195
+5830,56459
+5831,56981
+5832,19547
+5833,4719
+5834,71313
+5835,67339
+5836,44418
+5837,7130
+5838,72812
+5839,12835
+5840,68827
+5841,3888
+5842,16447
+5843,22771
+5844,50521
+5845,60813,36231
+5846,75844
+5847,51861
+5848,76094
+5849,5693
+5850,39671,73746,20143
+5851,75552
+5852,75722
+5853,33818
+5854,10005
+5855,38
+5856,1026
+5857,73105
+5858,6987
+5859,11452
+5860,50211
+5861,52972
+5862,46691
+5863,42040
+5864,2839,57972
+5865,19927
+5866,77721,48852
+5867,41300
+5868,4848,71949
+5869,40771
+5870,68357
+5871,56970,60929
+5872,69280
+5873,38685,81323
+5874,81922
+5875,25151
+5876,70393
+5877,65211
+5878,5559
+5879,33124
+5880,45709,72824
+5881,12196
+5882,14340
+5883,37024
+5884,22575
+5885,65349
+5886,34750
+5887,36152
+5888,5559
+5889,75520
+5890,62331,48699
+5891,47507
+5892,32334,25234
+5893,14732,8270
+5894,35831,31147
+5895,116
+5896,43785
+5897,64607,56387
+5898,73134
+5899,41838,29310
+5900,76318
+5901,12220
+5902,37896
+5903,71406
+5904,48340
+5905,6133
+5906,45122,75022
+5907,16169
+5908,76687
+5909,24232
+5910,39455
+5911,45835
+5912,48691
+5913,6833
+5914,66663
+5915,9704
+5916,44773
+5917,58525
+5918,10556,16751
+5919,68171
+5920,69131,5732
+5921,60538
+5922,31506
+5923,50653
+5924,12859
+5925,68687
+5926,76532
+5927,39985
+5928,72059
+5929,40740
+5930,63459
+5931,58227,41631
+5932,46497,27131
+5933,37111,62462,12693
+5934,42657,81313
+5935,50492
+5936,45811,17793
+5937,45054
+5938,65903,6343
+5939,38902
+5940,34875
+5941,6809
+5942,37212
+5943,19155
+5944,28096
+5945,36758
+5946,17648
+5947,50652
+5948,47980
+5949,46814
+5950,1055
+5951,17026
+5952,69219,71346
+5953,70575
+5954,770
+5955,49326
+5956,41742
+5957,73617
+5958,5640
+5959,62516
+5960,30810
+5961,60773
+5962,78451
+5963,18787
+5964,16306
+5965,65037
+5966,43972
+5967,16292
+5968,31263
+5969,9185
+5970,26012,41030
+5971,44197
+5972,45755
+5973,63605,33821
+5974,77957
+5975,25737
+5976,31694
+5977,23177
+5978,7980
+5979,25295
+5980,73019
+5981,33525
+5982,29484
+5983,27352
+5984,12663
+5985,65743
+5986,64895
+5987,59383
+5988,22671
+5989,79534
+5990,29096
+5991,48615
+5992,42479
+5993,48300
+5994,36117
+5995,22429
+5996,34572
+5997,18402
+5998,69555
+5999,70463
+6000,12131
+6001,3240
+6002,66630,55820
+6003,79343
+6004,11422
+6005,21264
+6006,60960
+6007,55088
+6008,64260
+6009,73035
+6010,9215
+6011,63380,21931
+6012,53343
+6013,19791,58525
+6014,45690,37756
+6015,10307,28410
+6016,4433
+6017,61687
+6018,10278
+6019,64489
+6020,13944
+6021,34506
+6022,26767
+6023,42085,8678
+6024,52162,39803,42905
+6025,8907
+6026,68495
+6027,72358
+6028,3150
+6029,14444,80146
+6030,62572
+6031,11637
+6032,8547
+6033,21282
+6034,80438,36331,10315
+6035,61742
+6036,72998
+6037,64149
+6038,9148
+6039,68795
+6040,3545
+6041,23826
+6042,74146
+6043,29450
+6044,2249
+6045,61631
+6046,61610
+6047,47996
+6048,28878
+6049,46465
+6050,41248
+6051,73414
+6052,81596
+6053,62538
+6054,35439
+6055,69462
+6056,24974
+6057,10444,53308,19258
+6058,47532
+6059,39498
+6060,26002,14572
+6061,14022
+6062,41496
+6063,33783
+6064,14357
+6065,13605
+6066,73452,29362
+6067,6385
+6068,22825
+6069,30580
+6070,18
+6071,6016
+6072,4282
+6073,76864
+6074,65666,79352,58463
+6075,78048
+6076,49419,2168
+6077,39545
+6078,35284
+6079,46033
+6080,24018
+6081,9754,59593,24871
+6082,68419
+6083,11446,2702
+6084,41185
+6085,56259,6246,73957
+6086,43781,47977,1808
+6087,26890,46812
+6088,17538,10326,47607
+6089,59086
+6090,15521
+6091,81498
+6092,16714
+6093,60247
+6094,9826
+6095,57344
+6096,13465
+6097,8954
+6098,23706,49323
+6099,62568
+6100,80069
+6101,58422
+6102,75491
+6103,50505
+6104,44112
+6105,12599
+6106,73907
+6107,11011
+6108,22671
+6109,34767
+6110,26126
+6111,52039
+6112,51486
+6113,57666
+6114,26044
+6115,4405
+6116,25190
+6117,24332,18880
+6118,79885
+6119,65548
+6120,77390
+6121,75455
+6122,55709
+6123,53871
+6124,15310,50021
+6125,69472
+6126,68747
+6127,7352
+6128,26280
+6129,79865,64347,29378
+6130,61732
+6131,24596,11844,27883
+6132,61116,18055
+6133,6010
+6134,33109,18167
+6135,77962
+6136,80159
+6137,71744,48479
+6138,63029
+6139,78245
+6140,60333
+6141,37330
+6142,59414,67778
+6143,40355
+6144,10925,35500
+6145,57094,69551
+6146,17342,20298
+6147,18522
+6148,32867
+6149,29186
+6150,80339
+6151,55760
+6152,77111
+6153,40814
+6154,39862
+6155,62762
+6156,762
+6157,46473
+6158,28635
+6159,70624,51433,3703
+6160,16755
+6161,39866
+6162,15463
+6163,20469
+6164,81565
+6165,64238
+6166,17972
+6167,47147
+6168,15852
+6169,31668
+6170,60306
+6171,74409,28966
+6172,6856
+6173,68813
+6174,55088
+6175,73234
+6176,34054
+6177,71993
+6178,51429
+6179,40385,77018
+6180,24395
+6181,47672
+6182,46210,34608
+6183,21036
+6184,49511
+6185,46823
+6186,60055
+6187,66300
+6188,74600,20798,6905
+6189,5337
+6190,71671
+6191,73939
+6192,66303
+6193,71977
+6194,69040,48937,30617
+6195,12242
+6196,52764
+6197,67200
+6198,3601
+6199,43785
+6200,64412,1675
+6201,44105
+6202,29339
+6203,46141,42932
+6204,27174
+6205,23119
+6206,59567
+6207,57596
+6208,17794
+6209,70067,26858
+6210,19575
+6211,21290,38321
+6212,76768,70170
+6213,59026
+6214,6283,78893
+6215,74530
+6216,25224
+6217,12352
+6218,58613
+6219,6154
+6220,24742,57385
+6221,37654
+6222,69064
+6223,35992,1585
+6224,39971
+6225,59180
+6226,9706
+6227,58346
+6228,47066
+6229,60608
+6230,53517
+6231,1042,46641
+6232,53046,77161
+6233,6911
+6234,22127
+6235,20106
+6236,4052
+6237,49047
+6238,22575
+6239,9334
+6240,19193
+6241,13360
+6242,19570
+6243,8876
+6244,65592
+6245,32630
+6246,14873
+6247,68722
+6248,45743
+6249,525
+6250,12217
+6251,24810
+6252,15474,73418,33540
+6253,76796
+6254,15678,15993
+6255,33039
+6256,38571
+6257,16
+6258,34884
+6259,27835
+6260,27183
+6261,77200
+6262,55482
+6263,36425
+6264,27001
+6265,834
+6266,57266
+6267,12387
+6268,40800
+6269,78437
+6270,34613,36181
+6271,42427
+6272,54824
+6273,51298
+6274,27366
+6275,25839
+6276,30203
+6277,78655
+6278,23197
+6279,62763
+6280,28013
+6281,64358
+6282,17221
+6283,33631
+6284,14076,31992
+6285,53569
+6286,1363
+6287,7347
+6288,65511
+6289,75991
+6290,30930
+6291,77762,64431
+6292,4547
+6293,2279,10747
+6294,77934
+6295,5674
+6296,583
+6297,35404
+6298,14292
+6299,75771
+6300,39596
+6301,22583
+6302,54054
+6303,46111
+6304,8101,73701
+6305,81927
+6306,60256,44032
+6307,29283
+6308,24474
+6309,51628
+6310,65528
+6311,77205,66359
+6312,54871
+6313,832
+6314,27136
+6315,65148
+6316,48717,27647
+6317,64125,8401
+6318,26418
+6319,25094
+6320,34050
+6321,20979
+6322,37377
+6323,23544
+6324,50189
+6325,58474
+6326,49083
+6327,73648,51661
+6328,23856
+6329,22486
+6330,18328
+6331,49041,17613
+6332,75032
+6333,47040
+6334,17823
+6335,28112
+6336,36628
+6337,36780
+6338,37111
+6339,65230,6504
+6340,59670,32988
+6341,79772,75522
+6342,51671
+6343,66964
+6344,67913
+6345,47967
+6346,60492
+6347,66473
+6348,8336
+6349,13262
+6350,3018
+6351,6112
+6352,7618
+6353,71616
+6354,37062
+6355,51855
+6356,43720
+6357,30446
+6358,10441
+6359,30486
+6360,72928
+6361,55739
+6362,79640
+6363,39043,13133
+6364,64200
+6365,44870
+6366,54376
+6367,56179
+6368,81845
+6369,2469
+6370,41008
+6371,36105
+6372,4694,9654
+6373,76338
+6374,40996
+6375,76893,53396
+6376,42713
+6377,30560,77434
+6378,41113
+6379,52443,8133,65705
+6380,34709
+6381,30325
+6382,72151
+6383,38662
+6384,3641
+6385,20105
+6386,49430
+6387,74583
+6388,64791
+6389,35007
+6390,6781,23121
+6391,18371
+6392,18483,78119
+6393,19690
+6394,67814
+6395,32619,76993
+6396,31234
+6397,22785
+6398,830
+6399,55403
+6400,60182,3211
+6401,40749
+6402,3527
+6403,80703,67825
+6404,53258
+6405,42324,796
+6406,47943
+6407,67544
+6408,70495
+6409,27993
+6410,29439,47510
+6411,29735,51898,11587
+6412,71239
+6413,71107
+6414,14459
+6415,76065
+6416,38454
+6417,20064,9293
+6418,54604
+6419,970,79841
+6420,25333
+6421,51058
+6422,38560
+6423,15076
+6424,74013
+6425,20118
+6426,65674
+6427,13788
+6428,14187
+6429,41032
+6430,19961
+6431,73853
+6432,38697
+6433,1323,2834,27865
+6434,3955
+6435,66145
+6436,37340
+6437,21430
+6438,72318,53016
+6439,43532
+6440,59314
+6441,8735,69588
+6442,20901
+6443,77864
+6444,39559
+6445,67918
+6446,5517
+6447,29395
+6448,46905
+6449,2075
+6450,11230
+6451,34583
+6452,22964
+6453,39763,22946
+6454,59946,68088
+6455,63313
+6456,5074
+6457,27994,29470
+6458,44723
+6459,47180,40040
+6460,48862
+6461,41334,27066
+6462,51637,19075,18704,8202
+6463,67216
+6464,12682
+6465,10925,70576
+6466,75097
+6467,65345,74782
+6468,40643,64884
+6469,35809,46686
+6470,50734
+6471,9293,2258
+6472,18385
+6473,24986
+6474,39765
+6475,14035,23920
+6476,19940
+6477,53072
+6478,13873
+6479,40421,78604
+6480,1330,60682
+6481,32024
+6482,43682,50182
+6483,12175
+6484,17693
+6485,69731
+6486,494
+6487,18386
+6488,47637
+6489,42171
+6490,20356
+6491,22396
+6492,48740
+6493,23063
+6494,62817
+6495,41813
+6496,63296,15747
+6497,28349
+6498,57592
+6499,57202,64817
+6500,74107,31867
+6501,38876
+6502,9923
+6503,28606,45537
+6504,7775
+6505,43809,60507
+6506,46225
+6507,74589
+6508,65353,72587
+6509,38943
+6510,19606,15537
+6511,26783
+6512,64509
+6513,76040
+6514,5314
+6515,79335
+6516,6756
+6517,12190
+6518,32240
+6519,26860
+6520,50901,35073
+6521,37356
+6522,19017
+6523,69686
+6524,61678
+6525,65253,80668
+6526,37385
+6527,49056,11143,4100,29089
+6528,12993
+6529,81549
+6530,30890
+6531,82121
+6532,29805
+6533,39558
+6534,54813
+6535,26376
+6536,6550
+6537,35978
+6538,18048
+6539,30841,11878
+6540,71294
+6541,250
+6542,25451
+6543,47796
+6544,33737
+6545,378
+6546,59483
+6547,8401,81575,74577
+6548,24264
+6549,63451
+6550,15329
+6551,31242
+6552,50904
+6553,63059
+6554,36865
+6555,42867
+6556,8488
+6557,26958,42302
+6558,53478
+6559,59738,9102
+6560,80804
+6561,42811
+6562,67352
+6563,60695
+6564,46878
+6565,1950,18914
+6566,79250
+6567,56895
+6568,54971
+6569,19961
+6570,52401
+6571,21891,7906
+6572,4401
+6573,50268
+6574,14217
+6575,17129
+6576,71774,33353,13056
+6577,29744,68823
+6578,1359
+6579,1809
+6580,53949,21332
+6581,48749
+6582,16083
+6583,42697,21949
+6584,42184
+6585,23263,3619
+6586,58726
+6587,16699
+6588,17166,8880
+6589,36558
+6590,31973
+6591,66891
+6592,59094,44623
+6593,79645,26168,26934,8986
+6594,40157
+6595,68860,17218,80182
+6596,11660,32908
+6597,82131
+6598,19767
+6599,77577,1292
+6600,29741
+6601,11900
+6602,42527
+6603,75672
+6604,15849
+6605,15935
+6606,76681
+6607,71754
+6608,54399
+6609,30986,34674,53851
+6610,34688
+6611,10800
+6612,40423
+6613,3458
+6614,3023
+6615,48686
+6616,72890
+6617,68133,3527
+6618,10195
+6619,80291
+6620,25086,60374
+6621,50112,72170
+6622,42647,37516
+6623,46210
+6624,34975
+6625,54093
+6626,77237
+6627,51776,44077
+6628,57741,74018
+6629,78686,72578,4415
+6630,74568
+6631,4865
+6632,74804
+6633,80440
+6634,48509
+6635,3567
+6636,29557,10147,66183
+6637,15704
+6638,483
+6639,22628
+6640,11536
+6641,76796
+6642,22764
+6643,28719
+6644,47225
+6645,33953
+6646,27616,29526
+6647,47525
+6648,71728,79855
+6649,40267
+6650,14203,75662
+6651,69459
+6652,49340
+6653,38597
+6654,38593,79070
+6655,47237
+6656,37805
+6657,66972,78025
+6658,56104
+6659,21235
+6660,40663
+6661,39708
+6662,3836
+6663,37164
+6664,69472
+6665,59733
+6666,61505
+6667,60437
+6668,73518
+6669,77071,14879
+6670,66964
+6671,76552
+6672,54697
+6673,46720
+6674,23872
+6675,38317
+6676,3336
+6677,39292
+6678,3277
+6679,4925
+6680,44410
+6681,81556
+6682,16990
+6683,60803
+6684,54248
+6685,7201
+6686,38400
+6687,17777
+6688,79962
+6689,48900
+6690,48035
+6691,51244
+6692,30705
+6693,67957
+6694,54495
+6695,54364,74931
+6696,4740
+6697,33583
+6698,29110
+6699,16992
+6700,58614
+6701,56500
+6702,13705
+6703,64658
+6704,31255
+6705,43281
+6706,24182
+6707,80424
+6708,44577
+6709,48100,61851
+6710,26892
+6711,10145
+6712,38222
+6713,9804
+6714,30281
+6715,18111
+6716,54791
+6717,35514
+6718,17042
+6719,40239
+6720,81583
+6721,52018,8814
+6722,63836
+6723,72859
+6724,76552,53176
+6725,27636
+6726,65653,4364
+6727,46129
+6728,44080
+6729,68194
+6730,23833
+6731,65104,17143
+6732,45716
+6733,59487
+6734,40039
+6735,35732
+6736,13322,25181
+6737,27188
+6738,31175
+6739,74550,28480
+6740,11745,78729
+6741,68956
+6742,7615
+6743,12051
+6744,74658
+6745,51224
+6746,2739
+6747,35425
+6748,61394,62515
+6749,7389
+6750,11464
+6751,37597
+6752,48872
+6753,25923
+6754,47908,65675
+6755,64302
+6756,74869
+6757,62441
+6758,19727
+6759,49427
+6760,6348
+6761,15243
+6762,8175
+6763,44930
+6764,70438
+6765,6926
+6766,48826
+6767,61526
+6768,29995
+6769,64503
+6770,20936
+6771,67090
+6772,31535
+6773,8293
+6774,62493,69720
+6775,40134,61494
+6776,19861
+6777,17118
+6778,21487
+6779,79056
+6780,81430,77191,24399
+6781,179,69832
+6782,78928
+6783,51668
+6784,5789
+6785,59631
+6786,34496
+6787,24810
+6788,70869
+6789,54264
+6790,50166
+6791,32275,68548
+6792,11756,77314
+6793,34634
+6794,32438
+6795,66564
+6796,15167
+6797,18613
+6798,45747
+6799,72809,73367,70768
+6800,17518
+6801,12274
+6802,38822,13654
+6803,52732
+6804,49101
+6805,244
+6806,2393
+6807,31266
+6808,73757
+6809,7631
+6810,77764,62921,17676
+6811,23062
+6812,43899
+6813,46492
+6814,31162,63580
+6815,52253
+6816,23184,1392
+6817,75197
+6818,77981
+6819,10412
+6820,72462
+6821,40877
+6822,60925
+6823,56787
+6824,45690,38601
+6825,45712
+6826,39840
+6827,8718
+6828,7866
+6829,28266
+6830,41282
+6831,18304,65331
+6832,47894
+6833,1325
+6834,67132
+6835,38832
+6836,77639
+6837,65938
+6838,48036,34587
+6839,74267
+6840,11959
+6841,69462
+6842,75043
+6843,48735
+6844,20452
+6845,51215
+6846,49807
+6847,14382
+6848,45424
+6849,2991
+6850,19743
+6851,38255,58089
+6852,32212
+6853,75591,20615
+6854,29020
+6855,63102
+6856,68407
+6857,13214
+6858,15711,2754,23839
+6859,35077,59720
+6860,46471
+6861,2374,57094
+6862,44630
+6863,36443,77268
+6864,70575
+6865,77318
+6866,25146
+6867,82038
+6868,40742
+6869,52226
+6870,33
+6871,72511
+6872,65519
+6873,40241
+6874,29959
+6875,3748
+6876,79082
+6877,287
+6878,64287
+6879,57952
+6880,15306
+6881,3224
+6882,37634,77334
+6883,26137
+6884,75352
+6885,45546
+6886,65795
+6887,65529
+6888,17792,11737
+6889,20549
+6890,50978
+6891,55053,76296
+6892,61714
+6893,9947
+6894,72232
+6895,70524
+6896,68752
+6897,40931
+6898,55019
+6899,44754,2303
+6900,39485
+6901,64645
+6902,41964,51745
+6903,68656
+6904,65010,21348
+6905,52843
+6906,6917
+6907,68391
+6908,67928
+6909,32448,12186,48417
+6910,12585
+6911,57782
+6912,12118,13203
+6913,67139
+6914,8288
+6915,47073
+6916,61872
+6917,42624
+6918,53021
+6919,69197
+6920,24110
+6921,15193
+6922,47063
+6923,31504
+6924,18115,67768
+6925,21503
+6926,64580
+6927,67497
+6928,13599
+6929,54675
+6930,35173
+6931,67615
+6932,36115
+6933,46443
+6934,28570,2199
+6935,38811
+6936,49340,685
+6937,74467
+6938,22206
+6939,36776
+6940,74137,71115
+6941,7490
+6942,68536
+6943,72683
+6944,26426
+6945,2848
+6946,56159
+6947,18627,59212
+6948,61979
+6949,74580
+6950,45643,59588
+6951,45458
+6952,81580
+6953,80025
+6954,75845
+6955,18304
+6956,69200
+6957,81402
+6958,14697,15061
+6959,49892
+6960,64077
+6961,42298
+6962,60953
+6963,19172
+6964,51237
+6965,28
+6966,11611,41781,56508
+6967,21916
+6968,69505
+6969,69588
+6970,47227,47691
+6971,23481
+6972,55362
+6973,41332
+6974,27171
+6975,5566,44556
+6976,74366
+6977,21113
+6978,49270
+6979,57840
+6980,38940
+6981,18834
+6982,71247
+6983,24783
+6984,23613,31003
+6985,60320
+6986,28708
+6987,23448
+6988,27699
+6989,48897
+6990,53393
+6991,47522,59457
+6992,7869,47047
+6993,6417
+6994,46597,63268
+6995,13234,2980
+6996,19177
+6997,73699
+6998,28086
+6999,34908
+7000,4086
+7001,54050
+7002,27715
+7003,36327,13283
+7004,47939
+7005,65996
+7006,48910
+7007,62651
+7008,19424
+7009,72066
+7010,40834
+7011,61983,10475
+7012,39185
+7013,70296
+7014,28109
+7015,8840
+7016,24114
+7017,23116
+7018,59290,65188
+7019,4905
+7020,32783
+7021,48875
+7022,55963
+7023,51575,27739,27185
+7024,37372
+7025,46085,61969
+7026,64258
+7027,43665
+7028,75636
+7029,12557
+7030,38129
+7031,9327
+7032,28451
+7033,22539
+7034,35089
+7035,15502
+7036,38109,43302
+7037,21597
+7038,59446
+7039,49539
+7040,61621,23343
+7041,22827
+7042,12607
+7043,28666
+7044,29598
+7045,40543
+7046,60395,52222
+7047,20246
+7048,10838
+7049,55854
+7050,14170
+7051,74253
+7052,27634
+7053,50226
+7054,5314,81896
+7055,20948
+7056,63729
+7057,17238
+7058,65861,26681
+7059,18151
+7060,66990,28719
+7061,23560
+7062,18175,61086
+7063,79975
+7064,19985,8225
+7065,1247
+7066,33373
+7067,69099
+7068,62784
+7069,51870
+7070,22950,4410
+7071,56572
+7072,42424
+7073,4707
+7074,71670
+7075,42419
+7076,22063
+7077,6225
+7078,77374
+7079,51049
+7080,50992
+7081,26211
+7082,78267
+7083,11421
+7084,79901
+7085,68729
+7086,66279
+7087,3765
+7088,51552
+7089,29682,78027,26947
+7090,8580
+7091,15767
+7092,34345,49865,11266
+7093,43471,81455
+7094,61328
+7095,32825
+7096,63671
+7097,32113
+7098,66518
+7099,46676
+7100,80269
+7101,67494,11304
+7102,21146
+7103,35991
+7104,24273
+7105,18541
+7106,58765
+7107,33914
+7108,18402
+7109,46083
+7110,74707
+7111,18220
+7112,72287
+7113,60308
+7114,62467
+7115,41163
+7116,14758
+7117,14468
+7118,49143
+7119,6916
+7120,35318
+7121,62301,18129
+7122,60527
+7123,43624
+7124,4225
+7125,74887,54491
+7126,13414
+7127,72502
+7128,11950
+7129,32707
+7130,7228
+7131,5057
+7132,50020
+7133,4902
+7134,30353
+7135,50827,70556
+7136,21423
+7137,7756
+7138,62194
+7139,65043,55033
+7140,78798,61535
+7141,38453
+7142,1337
+7143,78958
+7144,7649,52272
+7145,24672
+7146,67929
+7147,30649
+7148,35368
+7149,5064
+7150,43450
+7151,51973
+7152,50931
+7153,68304,68330,17179
+7154,65945
+7155,27642
+7156,16492
+7157,36734
+7158,46742,20508
+7159,47717
+7160,61977
+7161,44933
+7162,46503
+7163,37751
+7164,65852
+7165,56639
+7166,69371,35494,18219
+7167,14006,81295
+7168,45057,48436
+7169,63991
+7170,68264
+7171,16673
+7172,49018
+7173,43233
+7174,72339
+7175,28724
+7176,35089
+7177,78936
+7178,61025
+7179,19268
+7180,78544
+7181,75102,15732
+7182,37353
+7183,52342,18319
+7184,16839
+7185,78188,49823
+7186,23327
+7187,60443
+7188,4432
+7189,63793
+7190,77422
+7191,17221
+7192,37981,34450
+7193,9293
+7194,48571
+7195,20053
+7196,16231
+7197,38191,59235
+7198,5130
+7199,3278
+7200,65896
+7201,80877
+7202,55582
+7203,20212
+7204,54047
+7205,75953
+7206,65664,30452
+7207,39837
+7208,27267
+7209,77022
+7210,59012
+7211,43341
+7212,77559
+7213,40754,32938
+7214,24172
+7215,43089
+7216,42898
+7217,23776
+7218,15595
+7219,14158
+7220,41817
+7221,7608
+7222,37499
+7223,2396
+7224,57626
+7225,55093
+7226,27605
+7227,24952
+7228,46415
+7229,67958
+7230,65794,25461
+7231,72801
+7232,16192
+7233,36757
+7234,44544
+7235,53454
+7236,52744
+7237,17772
+7238,19921
+7239,49475,50620
+7240,77960
+7241,75532
+7242,37339
+7243,64736
+7244,36380
+7245,45693
+7246,58506
+7247,30397
+7248,60643
+7249,81079
+7250,53564
+7251,44768
+7252,70800
+7253,20637
+7254,14602
+7255,66076
+7256,24008
+7257,52047
+7258,51062
+7259,19220
+7260,44694
+7261,60313
+7262,55179,7098
+7263,61267,50378
+7264,66994
+7265,49622
+7266,77187
+7267,66578
+7268,14066
+7269,46914
+7270,80663,30617
+7271,21934
+7272,45348
+7273,16923,3210
+7274,79234
+7275,79014,6579
+7276,34684
+7277,29403,1274
+7278,81921
+7279,27563
+7280,28889
+7281,7731
+7282,64465,76563
+7283,72886,34067
+7284,74136,81956,63767
+7285,23491
+7286,42130
+7287,49893
+7288,66270
+7289,4323
+7290,52531,5993
+7291,46012
+7292,40384,52787
+7293,16604
+7294,12985
+7295,44839
+7296,16435
+7297,11819
+7298,51366
+7299,38625
+7300,20856,59193
+7301,53621
+7302,3384
+7303,5061
+7304,29152
+7305,52855
+7306,67907
+7307,55822
+7308,65605,38778
+7309,59668
+7310,45010
+7311,15992,74902
+7312,49328
+7313,60405,49926
+7314,17599
+7315,20512,62243
+7316,29021
+7317,75886
+7318,62339
+7319,19789
+7320,40662
+7321,904
+7322,45524
+7323,69277
+7324,75102
+7325,40154
+7326,11310
+7327,61262
+7328,59111
+7329,60416
+7330,45108
+7331,4443
+7332,79096
+7333,43791
+7334,2127
+7335,70038
+7336,54903
+7337,17547
+7338,16194
+7339,70236,8658,74821
+7340,10373
+7341,44723
+7342,49827
+7343,2658
+7344,68871,49595
+7345,35102
+7346,59174
+7347,19439
+7348,53024
+7349,55976
+7350,1686,27853
+7351,5432,11539
+7352,14039,62244
+7353,42712
+7354,49714
+7355,49730
+7356,19139
+7357,41722
+7358,36981
+7359,62698,78548
+7360,39553,47972
+7361,69735,54316
+7362,62154
+7363,64374
+7364,3722
+7365,78330,40933
+7366,34580
+7367,74423
+7368,40369
+7369,42451
+7370,74469
+7371,3505
+7372,78913
+7373,522
+7374,313
+7375,25660
+7376,62928
+7377,64151
+7378,3791
+7379,2594
+7380,11431,43771
+7381,6808
+7382,71009
+7383,43833
+7384,11639
+7385,64755
+7386,31485
+7387,75354
+7388,73795
+7389,7498
+7390,31508,45197
+7391,35985
+7392,64038
+7393,46556
+7394,11725
+7395,20473
+7396,61757
+7397,67473,79714
+7398,42341
+7399,25205
+7400,48687
+7401,71767,66156
+7402,68645
+7403,53776
+7404,10523,55921
+7405,3204
+7406,37432
+7407,57277
+7408,17493
+7409,66024
+7410,49049
+7411,38327
+7412,40753
+7413,20814
+7414,43005
+7415,29557
+7416,62899
+7417,15322
+7418,43981
+7419,62968
+7420,52378
+7421,10810
+7422,2267
+7423,24756
+7424,49775
+7425,21013
+7426,3305
+7427,61158
+7428,73239
+7429,28521
+7430,33533,12772
+7431,15194
+7432,1665,60996
+7433,47285
+7434,67270
+7435,81940
+7436,3732
+7437,24640
+7438,7197,34326
+7439,68916
+7440,67039
+7441,70786
+7442,2398
+7443,49310
+7444,28703,5041
+7445,71563
+7446,68967
+7447,21129
+7448,79876
+7449,68631,50505
+7450,75033
+7451,77428
+7452,48814
+7453,7764,25441
+7454,40965
+7455,62359
+7456,9051
+7457,53021,49490
+7458,29184
+7459,2933
+7460,42924
+7461,53552
+7462,61457
+7463,77312
+7464,75210
+7465,47358
+7466,67197
+7467,11994
+7468,4337
+7469,6948,46520
+7470,79599,24055
+7471,59855
+7472,23606
+7473,61752
+7474,51178
+7475,23281
+7476,15275
+7477,57836
+7478,47885
+7479,75169,33712
+7480,68885
+7481,34894
+7482,42951
+7483,65910
+7484,26028,8578
+7485,17241
+7486,55350,70541
+7487,24704
+7488,47999
+7489,55976
+7490,42840
+7491,5325,19121
+7492,68699
+7493,35951
+7494,79049
+7495,24263
+7496,32934
+7497,14759
+7498,38616
+7499,195
+7500,61274,46603
+7501,50527
+7502,11369
+7503,55342,72887
+7504,12882,56741
+7505,305,27041
+7506,10513,36438
+7507,291
+7508,65624,44269
+7509,76019,55164,63694
+7510,17006
+7511,10835
+7512,55846
+7513,6747
+7514,77898
+7515,37261
+7516,4030
+7517,66814
+7518,55223
+7519,11945
+7520,68856
+7521,34505,18775
+7522,4803
+7523,33630,48006,5826
+7524,70804
+7525,74077
+7526,24654
+7527,6554
+7528,78368
+7529,63603
+7530,50241
+7531,40662,26313
+7532,57682
+7533,46040
+7534,11833
+7535,53173
+7536,72084
+7537,9022,80162
+7538,24
+7539,8180
+7540,25273
+7541,66098
+7542,68429,50895
+7543,16015,66008
+7544,28574,77328,73822
+7545,68731
+7546,72259
+7547,54165
+7548,69141
+7549,15387
+7550,49682
+7551,64756
+7552,58339
+7553,69028
+7554,5093,32704
+7555,5559
+7556,61421
+7557,67727
+7558,68368,81531
+7559,60435
+7560,67635
+7561,17027
+7562,81180,54055
+7563,77522
+7564,18965,47954,74093
+7565,10036
+7566,16990
+7567,25288,70925
+7568,74015
+7569,74272,17832
+7570,30611
+7571,2674
+7572,64927
+7573,11898
+7574,66046
+7575,55569
+7576,63226
+7577,33583
+7578,6573,50969
+7579,23511
+7580,9426
+7581,72004,6104
+7582,31136
+7583,59952
+7584,9182,24273
+7585,23871
+7586,63787
+7587,68491
+7588,27462
+7589,67957
+7590,48216
+7591,74847
+7592,10726
+7593,42263
+7594,35864
+7595,62237,46696
+7596,76760,43089,34005
+7597,58730,74601
+7598,74666,202
+7599,2255
+7600,9120
+7601,20078
+7602,64584
+7603,28628
+7604,63287
+7605,17175,52103,7658
+7606,48304,52745,15818
+7607,52102,60712
+7608,53150
+7609,27325
+7610,38454
+7611,479
+7612,30839
+7613,79417
+7614,70123,69364
+7615,73795
+7616,81473
+7617,34890
+7618,75367
+7619,18625
+7620,61421
+7621,51492
+7622,19471
+7623,8570,55397
+7624,31494
+7625,3806
+7626,67409
+7627,25689
+7628,675
+7629,27094
+7630,18448
+7631,37637
+7632,17826
+7633,3797
+7634,34592
+7635,6507,50959
+7636,30063
+7637,40141
+7638,33341
+7639,74436
+7640,36367
+7641,52006
+7642,16782,9059
+7643,38639
+7644,67484,51319
+7645,20249
+7646,42125,63447
+7647,4070
+7648,34484
+7649,12722,11437
+7650,75656
+7651,3000
+7652,29640
+7653,27461
+7654,81638
+7655,28136
+7656,3659,37106,52595,63200
+7657,70829
+7658,43748
+7659,50378
+7660,74309
+7661,34820
+7662,49197
+7663,61643
+7664,43492,10933
+7665,33123
+7666,67471,72628
+7667,67294
+7668,74914,62898
+7669,17063
+7670,48048,25065
+7671,35910
+7672,48798
+7673,1154
+7674,67564
+7675,471
+7676,43943
+7677,56561
+7678,4461,5711
+7679,26048,30102
+7680,69205
+7681,77724
+7682,5147,54130,47735
+7683,6446
+7684,7105
+7685,43620
+7686,42075
+7687,48677
+7688,27865
+7689,18204
+7690,66254
+7691,60756,76015
+7692,27750
+7693,19551
+7694,44653
+7695,3251
+7696,34954
+7697,14768
+7698,80898
+7699,55894
+7700,3923
+7701,44479
+7702,35616
+7703,47913
+7704,19393
+7705,39866
+7706,48771
+7707,50882
+7708,49518
+7709,9377
+7710,24980,68958
+7711,46860
+7712,8519
+7713,34968,48215
+7714,36648
+7715,6244
+7716,59311
+7717,72880
+7718,56890
+7719,22049
+7720,37791
+7721,15891
+7722,33839
+7723,37322
+7724,6656
+7725,6693
+7726,2285
+7727,15502
+7728,43022
+7729,40421
+7730,23549
+7731,5260
+7732,16016
+7733,1379
+7734,30034
+7735,3226
+7736,72930
+7737,40141
+7738,69278
+7739,13947
+7740,33938
+7741,34051
+7742,35701
+7743,3540,23137
+7744,23026,78932
+7745,13308
+7746,64802,48250
+7747,75853
+7748,26145
+7749,33104
+7750,55436
+7751,1169
+7752,58225
+7753,76122
+7754,55585
+7755,37654,75118
+7756,7195
+7757,32096
+7758,42360,3427
+7759,58444,58664,6233
+7760,70427
+7761,52285,65107
+7762,18263
+7763,72504
+7764,54943,19419
+7765,16486
+7766,3956,72586
+7767,50959
+7768,59818
+7769,79811
+7770,67601
+7771,33153
+7772,16185
+7773,60961
+7774,51840,65080
+7775,57021
+7776,57284,21402
+7777,4748
+7778,29393
+7779,65859
+7780,23176,362
+7781,62848
+7782,81093
+7783,61473
+7784,49691
+7785,50928
+7786,46282,7884
+7787,28412
+7788,42248
+7789,19308,69581
+7790,37274,65180
+7791,61257
+7792,9652,2954
+7793,9354
+7794,41829,55669,38847,32527
+7795,57605
+7796,63527
+7797,2230
+7798,75083,65132,61533
+7799,41559
+7800,44148,71247
+7801,74229
+7802,20662,11810
+7803,33075
+7804,67646,34688
+7805,39183
+7806,58121
+7807,65605
+7808,26382
+7809,60189
+7810,35038
+7811,32177
+7812,62516
+7813,76963,16414
+7814,22163
+7815,23026,12958
+7816,29909
+7817,44519
+7818,19934
+7819,17864
+7820,23275
+7821,30533,54863
+7822,35488,51446
+7823,66643
+7824,21685
+7825,14568
+7826,56269
+7827,40346
+7828,53296
+7829,58842
+7830,36071
+7831,59069,39665
+7832,42894
+7833,26462
+7834,34736
+7835,74205
+7836,24372
+7837,49903
+7838,49810
+7839,31574,73546
+7840,51167
+7841,35775
+7842,47013
+7843,20809
+7844,43478
+7845,22951,77197
+7846,59794
+7847,78732
+7848,69530
+7849,73349
+7850,11492
+7851,61242
+7852,60230,29973,53500
+7853,71172
+7854,67223
+7855,44401,17929
+7856,20557
+7857,35645,35478
+7858,700
+7859,32331,3641
+7860,56706,28492
+7861,40048
+7862,33899
+7863,26207
+7864,25650,55453
+7865,18641
+7866,49842
+7867,8835
+7868,21675
+7869,66066
+7870,74323
+7871,81033
+7872,11043
+7873,73189
+7874,34507
+7875,46578
+7876,7317
+7877,29963
+7878,27809
+7879,2732
+7880,68128
+7881,47575
+7882,15003
+7883,37117,20822
+7884,75084
+7885,38449
+7886,41519
+7887,77274
+7888,41954,45763,75118
+7889,20744
+7890,70291
+7891,159
+7892,22097
+7893,63511
+7894,69679
+7895,56856
+7896,73041,70629
+7897,11992
+7898,79157
+7899,64828
+7900,783
+7901,46832
+7902,81593
+7903,11640
+7904,41718
+7905,70952,72042
+7906,27113
+7907,23399
+7908,16111
+7909,28706
+7910,10397
+7911,4861
+7912,46400
+7913,8010,46810
+7914,64326
+7915,45699
+7916,3010
+7917,55124
+7918,81876,4911
+7919,5790
+7920,744,16353,39014
+7921,37778
+7922,79813
+7923,76055
+7924,48182
+7925,30874
+7926,70396,56752
+7927,56955
+7928,22586
+7929,29186
+7930,25230,33156
+7931,56885
+7932,62813
+7933,24958
+7934,78885
+7935,32936
+7936,45997
+7937,41227
+7938,48860
+7939,19791
+7940,53356
+7941,65841,17610
+7942,45519,56686
+7943,75717
+7944,79673
+7945,46876
+7946,16440,20356
+7947,19023,42019
+7948,26983
+7949,47159
+7950,50940
+7951,77275
+7952,72399
+7953,44807
+7954,64734
+7955,61246
+7956,73383
+7957,62079,48236
+7958,78019
+7959,76500
+7960,76532,66573
+7961,62063
+7962,78141
+7963,33352,43896
+7964,62538
+7965,55994,14090,50917
+7966,31475
+7967,70218
+7968,91
+7969,72052
+7970,62613
+7971,3384
+7972,22364
+7973,15359
+7974,55362
+7975,71935,45530
+7976,35463
+7977,75275
+7978,66138
+7979,75777
+7980,34412
+7981,75284
+7982,80139
+7983,26861
+7984,29822
+7985,21220
+7986,16497
+7987,1660
+7988,50756
+7989,14029
+7990,75052
+7991,3493,63657
+7992,5981,22157
+7993,47491
+7994,60105,53406
+7995,70934
+7996,13364
+7997,47840
+7998,36340
+7999,57021
+8000,77524
+8001,24812
+8002,49562
+8003,1361,24847
+8004,23917
+8005,34611
+8006,63501
+8007,40636
+8008,80325
+8009,66161
+8010,18877
+8011,45931,68587
+8012,26914
+8013,66945
+8014,41407
+8015,40028
+8016,577
+8017,22774
+8018,64491,81952
+8019,44897
+8020,35403
+8021,59212
+8022,33944
+8023,46794
+8024,45535
+8025,15260
+8026,51546
+8027,13419
+8028,56246
+8029,34507
+8030,36334
+8031,75563
+8032,16813,12026,73523
+8033,68207
+8034,2618
+8035,71071
+8036,38369
+8037,56719
+8038,8911,25066
+8039,54133
+8040,48803,18211
+8041,80393
+8042,67727
+8043,36611
+8044,35325
+8045,12816
+8046,63828
+8047,38961
+8048,17871,31769
+8049,72073
+8050,41743
+8051,4733
+8052,77015
+8053,8024
+8054,12026
+8055,48093
+8056,77081
+8057,72303
+8058,78735
+8059,43251
+8060,55391
+8061,16041,61006
+8062,46589
+8063,25281
+8064,22800
+8065,35648,32874
+8066,34537
+8067,41472
+8068,63734
+8069,54628
+8070,55370
+8071,47609
+8072,51555
+8073,35539
+8074,69763
+8075,42574
+8076,53895
+8077,45830,19437
+8078,77055
+8079,44346
+8080,37053
+8081,40300
+8082,17300
+8083,80822
+8084,76087
+8085,9295
+8086,57807
+8087,45533
+8088,19490,54788
+8089,80227,81299
+8090,16396,40036
+8091,34397
+8092,68204
+8093,74509
+8094,65281
+8095,82187
+8096,69194
+8097,50039
+8098,19765
+8099,15404
+8100,25418,81394
+8101,17350
+8102,9914
+8103,6373
+8104,59652
+8105,30847,71793
+8106,61202
+8107,8868,41553
+8108,54166
+8109,23521
+8110,69513
+8111,46154,63988
+8112,3365
+8113,21244
+8114,62318
+8115,7669
+8116,41846
+8117,38457
+8118,49735
+8119,16874
+8120,50978
+8121,73299
+8122,27928
+8123,19003
+8124,13560
+8125,22981,7970
+8126,37275
+8127,14444
+8128,3818
+8129,65506
+8130,6310
+8131,46443
+8132,17951
+8133,34633
+8134,8471
+8135,21851,4741
+8136,75838
+8137,36938
+8138,4874
+8139,34743
+8140,59847
+8141,30728
+8142,7890,64080
+8143,61623
+8144,55657,42313
+8145,80641
+8146,39843
+8147,66183,66172
+8148,1114
+8149,45013
+8150,73326
+8151,26618
+8152,45648
+8153,22858
+8154,31060
+8155,72315
+8156,27239
+8157,63434
+8158,43220,64892
+8159,51074
+8160,25162
+8161,56106
+8162,40592
+8163,33705
+8164,61163
+8165,50364,41748,28121
+8166,29242
+8167,3259
+8168,23655
+8169,65589,59442
+8170,48110
+8171,7377
+8172,75761,2725
+8173,27809
+8174,24830
+8175,57327
+8176,37740,65237
+8177,2893,20170,70250
+8178,65579
+8179,55211
+8180,79019
+8181,7715
+8182,69348
+8183,54105
+8184,2152
+8185,842,274
+8186,6357
+8187,33417
+8188,63308
+8189,80099
+8190,49274
+8191,34887
+8192,75778
+8193,40254
+8194,69219
+8195,62117
+8196,40318
+8197,2870
+8198,81900
+8199,51043
+8200,15515
+8201,23928
+8202,43044
+8203,48997,10403
+8204,51334
+8205,53286,44177
+8206,67941
+8207,47524
+8208,31748,70438
+8209,78732
+8210,23584,8036
+8211,71382
+8212,32631
+8213,4151
+8214,35925
+8215,67045
+8216,57273
+8217,62081
+8218,30665
+8219,49801,11161
+8220,71688,29452
+8221,9842
+8222,39252
+8223,55288
+8224,81559
+8225,17499
+8226,64496
+8227,70651,8876
+8228,16642
+8229,56689
+8230,42245
+8231,28258
+8232,6676
+8233,47916,39754,15999,76047
+8234,37870
+8235,50772
+8236,16202
+8237,48220
+8238,9141
+8239,80463
+8240,11015
+8241,19118
+8242,44507
+8243,81313
+8244,30552
+8245,28739,39882
+8246,27806
+8247,20591
+8248,5208
+8249,37400,23087
+8250,41407
+8251,61752
+8252,16601,2759
+8253,36051,16680
+8254,68407,7913
+8255,64662
+8256,45008
+8257,17574,22698
+8258,23018
+8259,16817
+8260,59692
+8261,45154,51500
+8262,74937,54325
+8263,80588
+8264,74675
+8265,6448,51078,16144
+8266,40490,80838
+8267,12206
+8268,57649
+8269,5537,30178,71234
+8270,81875
+8271,22456
+8272,55907
+8273,18897,68899
+8274,80493
+8275,7303
+8276,50120
+8277,74920
+8278,29681
+8279,81413
+8280,74107
+8281,38656
+8282,44640
+8283,56705
+8284,59154
+8285,65142
+8286,77452
+8287,7977
+8288,9314
+8289,6290
+8290,21388
+8291,54699
+8292,36076,428
+8293,50460
+8294,63453
+8295,37121
+8296,58006
+8297,29772
+8298,71754
+8299,11237
+8300,72094
+8301,65886
+8302,24770,40014
+8303,48053,14487
+8304,44390
+8305,39505
+8306,20594,36226
+8307,33991
+8308,22098
+8309,6191
+8310,24883
+8311,10072,805
+8312,18319
+8313,46775
+8314,70494
+8315,29074
+8316,10624
+8317,63909
+8318,63275
+8319,24088
+8320,12504
+8321,15324
+8322,69183
+8323,77251,68346
+8324,51528
+8325,79708,4823
+8326,20999
+8327,27455,34530,10583
+8328,49860
+8329,79810
+8330,75944
+8331,19580
+8332,9463
+8333,42264,36740
+8334,61205
+8335,2407
+8336,23724
+8337,14353
+8338,38379
+8339,51659
+8340,63
+8341,8834,67189
+8342,53490,38311
+8343,34235
+8344,13127,19699
+8345,16638
+8346,75112
+8347,49965
+8348,39893
+8349,66892
+8350,50039
+8351,47505
+8352,8995
+8353,28896,37733
+8354,66286
+8355,62823
+8356,72812
+8357,8419
+8358,50204
+8359,50240
+8360,50442
+8361,49598
+8362,37983
+8363,40951
+8364,63169,75621
+8365,63805
+8366,27794
+8367,69356
+8368,45590
+8369,43445
+8370,38235
+8371,6546
+8372,27173
+8373,17972
+8374,69766
+8375,28704
+8376,3025
+8377,77155
+8378,53990
+8379,79680
+8380,25826
+8381,13799
+8382,77742
+8383,76010
+8384,54255,12931
+8385,42940
+8386,53761
+8387,19181
+8388,47297
+8389,57483
+8390,28369,59850
+8391,78576,45001
+8392,22178
+8393,66283
+8394,74889
+8395,3240
+8396,78251
+8397,19582
+8398,66957
+8399,68416
+8400,75229,16293
+8401,8115
+8402,53920,43520
+8403,44755,21144,70420
+8404,17673
+8405,28784,19611
+8406,27457
+8407,10052
+8408,75457
+8409,41010
+8410,1382
+8411,59043
+8412,71632,19414
+8413,36092,61643
+8414,32835,32252,15671
+8415,7728,7339
+8416,52734
+8417,5010
+8418,17366
+8419,43620
+8420,19055
+8421,55032
+8422,77596
+8423,47960,25320,28760
+8424,52297
+8425,73754,61684
+8426,7051
+8427,16497
+8428,57410
+8429,64577
+8430,21598,39185,15483
+8431,52699
+8432,22855,16297,38218
+8433,63050
+8434,50779
+8435,43508
+8436,49928,9206
+8437,25302
+8438,59965
+8439,47670
+8440,60116
+8441,12371
+8442,4624,34830
+8443,30970
+8444,9705
+8445,55324
+8446,41949
+8447,53919
+8448,5878
+8449,46013
+8450,58506
+8451,62851,1422
+8452,60927
+8453,70091
+8454,64273
+8455,75989
+8456,53963
+8457,11215,69279,44034
+8458,45149
+8459,66829
+8460,57874
+8461,23396
+8462,29785
+8463,53920
+8464,20139
+8465,22197
+8466,81510
+8467,37679
+8468,40572
+8469,72573
+8470,33464
+8471,43265
+8472,12947
+8473,51733
+8474,35751
+8475,35606,18758,66805
+8476,8343
+8477,71652
+8478,35060
+8479,61478
+8480,40219
+8481,71691
+8482,29788
+8483,652
+8484,32816
+8485,26564
+8486,539
+8487,4537,15555
+8488,70709
+8489,70709
+8490,64266
+8491,11838
+8492,9247
+8493,34779
+8494,25267
+8495,68342
+8496,13797
+8497,17503
+8498,58493
+8499,41757,74165
+8500,25673,25251
+8501,64181
+8502,10639,17829,5838
+8503,5339
+8504,42159
+8505,26431
+8506,24252
+8507,35525
+8508,14403
+8509,41304,28623
+8510,54751
+8511,76535,37971
+8512,24592
+8513,21969
+8514,78645
+8515,2790
+8516,80801
+8517,22012
+8518,43096
+8519,8878
+8520,40347
+8521,31704,48915
+8522,48301
+8523,44326,19293
+8524,54283
+8525,28412
+8526,56363
+8527,15590,3364
+8528,46415
+8529,49295,52331,61219
+8530,23241
+8531,28129,438
+8532,22918
+8533,52014
+8534,70128
+8535,62965,29054
+8536,65582
+8537,9090
+8538,19644
+8539,59536
+8540,14568
+8541,2208,61384,63354
+8542,49427
+8543,64774
+8544,55324
+8545,21802
+8546,51075,8662
+8547,30240
+8548,50930
+8549,62320
+8550,49564
+8551,3583
+8552,8765
+8553,298,80323,33019
+8554,72471
+8555,26019
+8556,73919
+8557,38578
+8558,1962
+8559,48539
+8560,54953
+8561,68270
+8562,70575
+8563,82173
+8564,4255
+8565,52429
+8566,21460,28949
+8567,5666
+8568,77003,51486
+8569,35166
+8570,72631
+8571,75430
+8572,70338
+8573,80950
+8574,71836
+8575,47720
+8576,3532
+8577,36890
+8578,69412
+8579,55061
+8580,61199
+8581,40061
+8582,81315
+8583,48578
+8584,76532
+8585,7583
+8586,33903
+8587,74400
+8588,31487
+8589,13881
+8590,19570
+8591,17045,59001
+8592,13262,12034
+8593,38125
+8594,72441,57407
+8595,51679
+8596,45613,45687,25752
+8597,35951
+8598,40829
+8599,6575,22908
+8600,65863
+8601,14756,44743
+8602,34609
+8603,79434
+8604,77537
+8605,21420
+8606,6856
+8607,32986
+8608,35184,48980
+8609,36164
+8610,64902
+8611,27114
+8612,50734
+8613,47520
+8614,41101,2983
+8615,74680
+8616,8935,28663
+8617,74624,38211
+8618,51409,69595,46138
+8619,12040
+8620,78655,58286
+8621,6947
+8622,7210
+8623,20390
+8624,43930
+8625,274
+8626,14781
+8627,6294
+8628,4742
+8629,26853
+8630,19045
+8631,61742,66833
+8632,42644,71133
+8633,29782
+8634,75814
+8635,78121
+8636,66358,40690
+8637,66501
+8638,42533
+8639,34728,66543
+8640,48329
+8641,59808
+8642,33906
+8643,2034
+8644,1076
+8645,28638
+8646,30203
+8647,24921
+8648,48379
+8649,31186
+8650,72814
+8651,69188
+8652,17414,64074
+8653,70927
+8654,36987,75763
+8655,77397
+8656,80801
+8657,69367,28783
+8658,67109
+8659,38
+8660,53424,54949
+8661,42661
+8662,20418
+8663,26253
+8664,40399
+8665,56971
+8666,68398
+8667,57609
+8668,62453
+8669,7832,23332
+8670,64733
+8671,3298
+8672,33533
+8673,20919
+8674,49455,59204
+8675,19118
+8676,69864
+8677,52685
+8678,25259
+8679,19154,23410
+8680,56301,57526
+8681,59881
+8682,77802
+8683,5813
+8684,73634
+8685,35866
+8686,60399
+8687,69665,57245
+8688,14867
+8689,34821
+8690,57682
+8691,71328,20499
+8692,11693
+8693,14626,53661
+8694,3375
+8695,3578
+8696,10287,22925
+8697,19474
+8698,52800
+8699,56104
+8700,56883
+8701,23590,51011
+8702,39288
+8703,33601
+8704,29100
+8705,75164
+8706,28808,50763
+8707,17772
+8708,58885
+8709,27580
+8710,3092
+8711,28270
+8712,45686
+8713,9375
+8714,53614
+8715,65225
+8716,20640,49800
+8717,48360
+8718,41080
+8719,6098
+8720,3275
+8721,71296
+8722,831
+8723,40616
+8724,21789
+8725,18471,29699
+8726,11900
+8727,14154
+8728,57896
+8729,36660
+8730,74004
+8731,16265
+8732,66592
+8733,52527
+8734,15855
+8735,45119
+8736,37866
+8737,42721
+8738,76360
+8739,81208
+8740,65628,21201
+8741,42988
+8742,70944
+8743,1134
+8744,33782,40578
+8745,25616
+8746,47051,63203
+8747,12021
+8748,76291
+8749,75300
+8750,45193
+8751,79564
+8752,63793
+8753,23049
+8754,10652
+8755,13188
+8756,74225
+8757,8195
+8758,45486,17996
+8759,142
+8760,73933,78493
+8761,72912
+8762,61076
+8763,51782
+8764,7186
+8765,32463
+8766,31721
+8767,29139
+8768,6706
+8769,8098
+8770,45166
+8771,65077
+8772,77659
+8773,74482,3919
+8774,32900
+8775,44038
+8776,46101
+8777,42801
+8778,17648
+8779,43314
+8780,52942
+8781,54768
+8782,69773
+8783,34472
+8784,6338
+8785,58232
+8786,3476
+8787,41345
+8788,4969
+8789,32655,71334
+8790,9685,76829
+8791,33821,46552
+8792,22948
+8793,55968
+8794,81428
+8795,15228
+8796,7073
+8797,531
+8798,46758
+8799,71499
+8800,75223
+8801,75796,46583
+8802,4568
+8803,35932
+8804,2139
+8805,15237
+8806,7195
+8807,53073
+8808,54628
+8809,26670
+8810,52899
+8811,14781
+8812,13751
+8813,74723
+8814,41720
+8815,6216,79436
+8816,17829
+8817,45783
+8818,72208,61719
+8819,55446
+8820,34822
+8821,43032
+8822,20286
+8823,81750
+8824,37331
+8825,3476
+8826,31595
+8827,30279,16206,23306
+8828,66248
+8829,71221
+8830,20854
+8831,16263
+8832,80317,75680
+8833,51106
+8834,50426,15694
+8835,57441,25917
+8836,21000
+8837,21182
+8838,9694,8262
+8839,7245
+8840,9600
+8841,14995,44241
+8842,62301,67087
+8843,81912
+8844,25804
+8845,6681
+8846,6201,3478,18049
+8847,14278,71
+8848,72390
+8849,57278
+8850,50653
+8851,19873
+8852,36276
+8853,44601
+8854,73996
+8855,24647
+8856,53525
+8857,47632
+8858,73146
+8859,45053
+8860,76273
+8861,56174
+8862,20915
+8863,67477
+8864,34326,33298
+8865,53468
+8866,73906,25576,59583
+8867,10613,19085,68502,11048
+8868,32122
+8869,48888,71214,14242
+8870,38834
+8871,55978
+8872,44878,48744
+8873,12246,28642
+8874,80780
+8875,50849
+8876,13021
+8877,74356
+8878,8876
+8879,28961
+8880,14854
+8881,7106
+8882,69698
+8883,74700
+8884,72796,27462
+8885,75989
+8886,24956
+8887,67509
+8888,18242
+8889,35803
+8890,73745
+8891,21558
+8892,62565
+8893,72948
+8894,8374,39751
+8895,55711
+8896,72802
+8897,79363,17011
+8898,65095,25982
+8899,19624
+8900,75996
+8901,17615
+8902,75133,51735
+8903,63145
+8904,48050
+8905,25452
+8906,11097
+8907,57445
+8908,54823
+8909,62426
+8910,39126
+8911,63898
+8912,75386
+8913,11357
+8914,79244
+8915,81326
+8916,51754
+8917,63602
+8918,17043
+8919,43793
+8920,3384
+8921,35258
+8922,66832
+8923,80929
+8924,44185
+8925,81227
+8926,25539,73317
+8927,47906
+8928,29284,81389
+8929,59017
+8930,25416
+8931,1674
+8932,58716
+8933,1080
+8934,42813
+8935,10993
+8936,76416
+8937,76157
+8938,18270
+8939,12587
+8940,36749
+8941,9053,17792,54697
+8942,5559
+8943,78619
+8944,2229
+8945,51150
+8946,73321
+8947,71577
+8948,14731
+8949,13420
+8950,70376
+8951,64322
+8952,1611
+8953,63200
+8954,62735
+8955,62542,50191
+8956,15484,72781
+8957,25598,70849
+8958,43550
+8959,17550,51096
+8960,6546
+8961,65524,38537,40756
+8962,12987
+8963,56157
+8964,70391
+8965,18877
+8966,28300
+8967,32789
+8968,63258
+8969,59787
+8970,16697
+8971,16484
+8972,70093
+8973,9402,59012,42425
+8974,63162
+8975,79877
+8976,42773
+8977,63633
+8978,37584
+8979,41794
+8980,68902,28431
+8981,76630
+8982,41977
+8983,45135
+8984,77475
+8985,6877
+8986,79467,1269
+8987,29150,77707,24298
+8988,79718
+8989,16565
+8990,41307
+8991,66655
+8992,23361
+8993,43866
+8994,7448
+8995,23004
+8996,54537
+8997,45118
+8998,73864
+8999,33008
+9000,40631
+9001,55988
+9002,7816
+9003,32833
+9004,56635
+9005,16058,75815
+9006,47072
+9007,1320
+9008,17505
+9009,14775
+9010,47665
+9011,74980,72078
+9012,49765
+9013,75354
+9014,6298
+9015,5061
+9016,28984
+9017,27533
+9018,79932
+9019,37294
+9020,73358
+9021,2104
+9022,18394
+9023,60535
+9024,50779,42846
+9025,74900
+9026,75903
+9027,27441
+9028,32172
+9029,21342
+9030,21101
+9031,13968
+9032,34882
+9033,7939
+9034,54963
+9035,8373
+9036,53884
+9037,55254
+9038,76968
+9039,47526
+9040,31994
+9041,68961,41602
+9042,41069
+9043,77755
+9044,11702,79943
+9045,44488
+9046,72580
+9047,35066
+9048,19499
+9049,8775
+9050,35663
+9051,37864
+9052,10793
+9053,26992,78981
+9054,70009
+9055,43031
+9056,64927
+9057,67877,31999
+9058,68445
+9059,20356
+9060,69778
+9061,40118
+9062,19023
+9063,58331
+9064,37143
+9065,72150,31586,68116
+9066,65040
+9067,49299
+9068,26256
+9069,14851
+9070,24380
+9071,13468
+9072,72786
+9073,27912,50607
+9074,63753
+9075,63872
+9076,49904,47715
+9077,6365
+9078,71186,64162,4661
+9079,61189
+9080,17681,64154,49629
+9081,39537
+9082,36188
+9083,81445
+9084,16112
+9085,55393
+9086,74120
+9087,29067
+9088,25278
+9089,12859
+9090,44692
+9091,77723
+9092,68882
+9093,8675
+9094,32442
+9095,10722
+9096,31087
+9097,26150
+9098,69189
+9099,59711,25488
+9100,38166
+9101,37073,68125
+9102,35702
+9103,878
+9104,26885
+9105,65588
+9106,71764,60291
+9107,32863
+9108,2033
+9109,22730
+9110,35037
+9111,62062
+9112,48412,21990
+9113,853
+9114,74778
+9115,14097
+9116,61421,24402
+9117,19195
+9118,19133
+9119,24293
+9120,58131
+9121,19321,69505
+9122,43757
+9123,12431
+9124,1682
+9125,800
+9126,43089
+9127,22622,71111
+9128,18272,382
+9129,21141
+9130,14086,13527
+9131,35766,62368
+9132,18727,44453
+9133,66236
+9134,8597
+9135,20574
+9136,65769
+9137,76377
+9138,56900
+9139,16520,77075
+9140,9968
+9141,50572
+9142,56654,36008
+9143,77549
+9144,33218
+9145,45133
+9146,22109
+9147,79685
+9148,50336
+9149,10390
+9150,41646
+9151,42054
+9152,10230
+9153,41582
+9154,53386
+9155,58444
+9156,66284
+9157,14569
+9158,36656
+9159,17233
+9160,39973
+9161,68737
+9162,59414
+9163,56966
+9164,60572
+9165,10194
+9166,68680,35691
+9167,71902
+9168,71293
+9169,21617,70369
+9170,57722
+9171,65012
+9172,10542
+9173,23718
+9174,11051
+9175,40132
+9176,80732
+9177,20239
+9178,70260
+9179,47892
+9180,80731
+9181,54093,50046
+9182,69906
+9183,73131
+9184,2983
+9185,24844
+9186,41210,1138
+9187,72054,77389
+9188,54475
+9189,76381
+9190,50200
+9191,28196
+9192,65697,40193,13963
+9193,59776
+9194,62354
+9195,63566
+9196,8904,759
+9197,33995
+9198,6199
+9199,57278
+9200,79702
+9201,72671
+9202,63634
+9203,14675,47468
+9204,43698
+9205,81961
+9206,70102
+9207,33870
+9208,61740
+9209,41850
+9210,40527,78349
+9211,7020
+9212,46991
+9213,32268
+9214,71376
+9215,30552
+9216,46350,16288
+9217,49871
+9218,79388
+9219,4454
+9220,21958
+9221,72467,20433,13007
+9222,72037
+9223,62359
+9224,75907
+9225,47998,75294
+9226,1359,9299
+9227,5492
+9228,54793,42161
+9229,55365
+9230,15628
+9231,17759
+9232,14842
+9233,55837
+9234,20334
+9235,20118
+9236,53755,33236
+9237,60885
+9238,64360
+9239,2384
+9240,8251
+9241,46415
+9242,9757,53411
+9243,9180
+9244,14903
+9245,54364,76381
+9246,70295
+9247,75075
+9248,33476
+9249,15463
+9250,29084
+9251,6852
+9252,35468
+9253,31274
+9254,60308
+9255,54057
+9256,21282,74595
+9257,1831
+9258,52308
+9259,56718
+9260,57624
+9261,33440
+9262,20119,18068
+9263,55766,68536
+9264,9311
+9265,72880
+9266,13186
+9267,61410
+9268,75763
+9269,36373
+9270,62667
+9271,11008
+9272,67593
+9273,72720
+9274,12732,63586
+9275,11093
+9276,60602
+9277,66031,12250
+9278,20305
+9279,46975
+9280,37873,36140,70907
+9281,30533
+9282,11377
+9283,26817
+9284,20738
+9285,39107,69432
+9286,51853
+9287,72239
+9288,58375
+9289,47901,35412,14014
+9290,23121
+9291,22394
+9292,42947
+9293,15929
+9294,3936
+9295,70289
+9296,44488
+9297,63255,42632
+9298,10941
+9299,44826
+9300,39760
+9301,20850,73481,39650
+9302,79083
+9303,28446,70798
+9304,73655
+9305,67720
+9306,27385
+9307,67627
+9308,23858,13670
+9309,74911
+9310,36244,22663,36456
+9311,50724
+9312,66571
+9313,25235
+9314,81256
+9315,72722
+9316,53552
+9317,30045
+9318,43438
+9319,38984
+9320,23289,18426
+9321,13326
+9322,75418
+9323,67229,70859
+9324,49900
+9325,10668,44849
+9326,57665
+9327,34184
+9328,20305
+9329,18243,32639
+9330,2589
+9331,46804
+9332,79543
+9333,565
+9334,47227
+9335,23607
+9336,1192
+9337,9068
+9338,8057
+9339,29832,29855
+9340,24561
+9341,30374
+9342,29810,81828
+9343,2658
+9344,55208,81946
+9345,80742
+9346,75000
+9347,50789
+9348,6770
+9349,59169,52053,56927
+9350,35534,68963
+9351,28990
+9352,32569
+9353,4182
+9354,67029
+9355,32343
+9356,34774
+9357,39401
+9358,61906
+9359,14487
+9360,63488
+9361,4912
+9362,72525
+9363,69501
+9364,74037
+9365,72809,11981,29716
+9366,55754
+9367,12931,7878
+9368,23226
+9369,39671
+9370,63913
+9371,67494,62700
+9372,61779
+9373,70043
+9374,72375,38902
+9375,73513
+9376,5451,30769
+9377,49740
+9378,28539
+9379,44768
+9380,25923
+9381,10653
+9382,3418,42870,816
+9383,32640
+9384,76172,39227
+9385,35077
+9386,72580
+9387,66475,2020
+9388,55768
+9389,72720
+9390,14140
+9391,11866,7709
+9392,80251,82150,61393,71581
+9393,68264
+9394,21553
+9395,4789
+9396,80768,11789,35205
+9397,23351
+9398,70031
+9399,14702,55020
+9400,8063
+9401,31529,16251
+9402,58164
+9403,33298
+9404,26588,58509
+9405,79204,66343
+9406,9532
+9407,57878
+9408,29563,17681
+9409,37848
+9410,1318
+9411,59163
+9412,33216
+9413,36067,24467
+9414,55589
+9415,7115
+9416,6758
+9417,59192
+9418,74936
+9419,70060
+9420,68524
+9421,7125
+9422,33801
+9423,30212
+9424,52453
+9425,9060
+9426,65265
+9427,44309
+9428,604,2129
+9429,13093
+9430,54703
+9431,81986,42112
+9432,76343,46383
+9433,45877
+9434,8198
+9435,53946
+9436,54610
+9437,33783
+9438,60938,49894
+9439,36422
+9440,33184
+9441,56405,8787
+9442,23092
+9443,26831
+9444,24361
+9445,48612
+9446,25449,40289
+9447,63898
+9448,35684
+9449,13934
+9450,81224,35948
+9451,22587
+9452,14047
+9453,30787
+9454,72423
+9455,47768
+9456,10800,35808
+9457,54376
+9458,73472
+9459,47595,20258
+9460,20543
+9461,48717
+9462,69131,19517
+9463,34441
+9464,44513
+9465,2092
+9466,41732
+9467,68910
+9468,46415
+9469,18256
+9470,39856
+9471,56570
+9472,70801
+9473,35956
+9474,80768
+9475,22261
+9476,22706
+9477,44613
+9478,28003
+9479,19790
+9480,58229
+9481,42232
+9482,965
+9483,55177
+9484,59958
+9485,4255
+9486,10052
+9487,71437
+9488,34092
+9489,48488
+9490,55848
+9491,58405
+9492,73909
+9493,29858
+9494,53587
+9495,17648
+9496,75213
+9497,26266,43331
+9498,35527
+9499,38774
+9500,34192,66247
+9501,59422
+9502,39980
+9503,20546
+9504,60628
+9505,19104
+9506,61457
+9507,74435,13090
+9508,14223,24287
+9509,33393
+9510,30283
+9511,16371
+9512,25313
+9513,33899
+9514,55497
+9515,20955
+9516,71175
+9517,41381,46365
+9518,81595,26881
+9519,54314
+9520,3782
+9521,79562
+9522,81518
+9523,51861
+9524,24708
+9525,68374,29218
+9526,3457
+9527,81245,6077
+9528,37090
+9529,79567
+9530,28633
+9531,73757,55468
+9532,15962
+9533,35378
+9534,23579,53292,57577
+9535,38459
+9536,51351,1561
+9537,17729
+9538,43008
+9539,44500
+9540,59070
+9541,30086
+9542,65567
+9543,14495
+9544,60168
+9545,76016
+9546,27325
+9547,2388
+9548,28680
+9549,15226
+9550,28814
+9551,40168
+9552,5809
+9553,47556
+9554,69372
+9555,76357
+9556,27475
+9557,41558
+9558,43631
+9559,6546
+9560,40875
+9561,13334
+9562,68705,3404
+9563,68491
+9564,56021
+9565,40213,64887
+9566,68422
+9567,58431
+9568,24176
+9569,10674
+9570,45533
+9571,41782,2322
+9572,78399
+9573,80877
+9574,49539
+9575,72406
+9576,52011
+9577,79485,21218
+9578,65022,81838,47013,66578
+9579,55118
+9580,76654,69104
+9581,7479
+9582,61118,29660
+9583,75307
+9584,53527
+9585,54514
+9586,31127,4432
+9587,42350
+9588,56055
+9589,59578,48480
+9590,70938
+9591,68568
+9592,34739,77655
+9593,49221
+9594,11563
+9595,52814,66621
+9596,64241
+9597,58689
+9598,2279
+9599,19916,39366
+9600,62261
+9601,32462
+9602,52713
+9603,51229
+9604,70489
+9605,38006,4578
+9606,34828,19189,31274
+9607,77890,30839
+9608,77453,62570
+9609,51101
+9610,58653
+9611,73159,48000
+9612,56111
+9613,38878,66258
+9614,22387
+9615,7073
+9616,22555
+9617,23540
+9618,49993
+9619,44911
+9620,60607
+9621,38029
+9622,14465,72240
+9623,30762
+9624,73278,55875
+9625,7089
+9626,26399,74678,12206
+9627,49681,29286
+9628,54717
+9629,23258
+9630,37144
+9631,16383
+9632,48629
+9633,24262
+9634,48199
+9635,29803
+9636,17310
+9637,55117
+9638,27608,82061
+9639,50499
+9640,53480
+9641,48786
+9642,5319,13206
+9643,17739
+9644,67958
+9645,22628
+9646,18678
+9647,3851
+9648,37847
+9649,9104
+9650,14778
+9651,44853
+9652,61803
+9653,44299
+9654,45657
+9655,60390
+9656,38517
+9657,42970
+9658,77586
+9659,23629
+9660,74286
+9661,5408
+9662,24302
+9663,54844,53034
+9664,58616
+9665,70239
+9666,71880
+9667,28036
+9668,30368,63399
+9669,43453,3236,13758
+9670,21447
+9671,57590
+9672,77583
+9673,17438
+9674,38171
+9675,43085
+9676,351
+9677,54666
+9678,29613
+9679,9608
+9680,70538
+9681,42872
+9682,15463
+9683,32169
+9684,27432
+9685,68404
+9686,36938
+9687,17797
+9688,59182
+9689,24669,62233
+9690,50044
+9691,15373
+9692,21414,25803
+9693,38876
+9694,79294
+9695,48583
+9696,13867
+9697,72549,5180
+9698,6438
+9699,55872
+9700,24555
+9701,15555
+9702,17040
+9703,45498
+9704,76948
+9705,9311
+9706,38993
+9707,30764
+9708,66951
+9709,64577,71591
+9710,61092
+9711,41421
+9712,63348
+9713,27272,34064
+9714,70524
+9715,20306,27674
+9716,19318
+9717,70291,60297,73382
+9718,32652
+9719,21405
+9720,48863,35323
+9721,17118
+9722,34233
+9723,30915
+9724,56462
+9725,6044
+9726,37301
+9727,69019
+9728,52337
+9729,18146
+9730,32451
+9731,39866
+9732,40749
+9733,48616
+9734,53725
+9735,65529
+9736,70139,57597
+9737,64618
+9738,6694
+9739,71952
+9740,2384
+9741,18971,77162,58674
+9742,44286,41296,38217
+9743,82087
+9744,58674
+9745,23428,35139,22939
+9746,19745
+9747,46919
+9748,547
+9749,6314
+9750,13023,4801
+9751,25295
+9752,26692
+9753,81260
+9754,72680
+9755,16069
+9756,70224
+9757,18300
+9758,4958
+9759,15071
+9760,45846
+9761,24385
+9762,42486
+9763,76308
+9764,37077
+9765,73693
+9766,1499
+9767,51406
+9768,72520,76690
+9769,45346
+9770,63406
+9771,56708
+9772,57836
+9773,41452,32397,59993,28594
+9774,25277,29342
+9775,66543,24386
+9776,71320
+9777,70358
+9778,2126
+9779,30007
+9780,65425
+9781,17856,35394
+9782,19303
+9783,19193
+9784,48516
+9785,72224
+9786,69233
+9787,19585
+9788,9371,78425
+9789,69621
+9790,45795
+9791,42478
+9792,48145
+9793,44629
+9794,2176,49127
+9795,51494
+9796,33446,69778
+9797,64393
+9798,68985
+9799,20325
+9800,53859
+9801,42525
+9802,142
+9803,13175,77467
+9804,8519
+9805,21364,78499
+9806,42058,63226
+9807,66052,67849
+9808,42245,44686
+9809,52975
+9810,11016
+9811,14260
+9812,50317
+9813,56232,55285
+9814,25171
+9815,59790
+9816,48906
+9817,56327,40844
+9818,32029
+9819,59325
+9820,67154
+9821,31958
+9822,77142
+9823,21300
+9824,45857
+9825,27077
+9826,44453
+9827,32955
+9828,73860
+9829,53990
+9830,11085
+9831,51700
+9832,16084,15956
+9833,81326
+9834,67561
+9835,39599
+9836,59818
+9837,69404
+9838,31922
+9839,24783
+9840,16073
+9841,61426
+9842,12129,76717
+9843,82087
+9844,9549
+9845,47147
+9846,23451
+9847,905
+9848,40851,24141
+9849,33984
+9850,35816,32179
+9851,30773
+9852,40197
+9853,63566,1727
+9854,34416
+9855,28085
+9856,62224
+9857,66090
+9858,21643
+9859,49431
+9860,69341
+9861,10831
+9862,37672
+9863,63775,7890,23844
+9864,42721
+9865,28281
+9866,17108
+9867,50673
+9868,62356,47965
+9869,30093
+9870,80282,22171
+9871,34084
+9872,34759,58023
+9873,47515
+9874,65657
+9875,77485
+9876,32149
+9877,76122
+9878,26773
+9879,23318
+9880,66644,52333
+9881,24494
+9882,57591
+9883,59929
+9884,80856
+9885,924
+9886,20876
+9887,8461,43009
+9888,42
+9889,7642
+9890,52577
+9891,74658
+9892,25858
+9893,22674
+9894,64363,5621
+9895,77275
+9896,25203
+9897,70790,43934,57540
+9898,5884
+9899,43935
+9900,76418
+9901,76173,3319
+9902,49127
+9903,32841
+9904,5845
+9905,31994
+9906,53792,74342
+9907,50457
+9908,26382
+9909,48120
+9910,81692
+9911,19742
+9912,22969
+9913,44984
+9914,41765
+9915,57398
+9916,27533
+9917,70703
+9918,11139
+9919,554
+9920,65528
+9921,75873
+9922,62445
+9923,12658
+9924,26289
+9925,44721
+9926,79556,73646
+9927,47026,36243
+9928,76246
+9929,19857
+9930,36305
+9931,66669
+9932,74069
+9933,31769
+9934,53601
+9935,23157,54713
+9936,2484
+9937,72889
+9938,43342,69455,81423
+9939,53138
+9940,66543
+9941,54526
+9942,24588
+9943,12207
+9944,39368,77200
+9945,67214,58999
+9946,15297,51608
+9947,80559
+9948,1478
+9949,78972
+9950,18688
+9951,43292
+9952,27668
+9953,78319
+9954,65979
+9955,25160
+9956,25185
+9957,76942
+9958,48868
+9959,71681
+9960,41928
+9961,13387
+9962,29980
+9963,7362
+9964,61838
+9965,74152
+9966,69183,34605
+9967,40691,78749
+9968,64795
+9969,75403
+9970,7925
+9971,77396
+9972,10863
+9973,18556
+9974,9451
+9975,12816,17689
+9976,39704
+9977,32809
+9978,7276,42885
+9979,74026
+9980,11901
+9981,25690,3099,32137
+9982,51513
+9983,77428
+9984,2469
+9985,12768
+9986,37147
+9987,76506,44003
+9988,57871
+9989,19078
+9990,3375
+9991,13601
+9992,20361
+9993,51444
+9994,77129
+9995,81312,46228
+9996,13143
+9997,5000
+9998,52828
+9999,33228
+10000,35817
+10001,55753,71470
+10002,15126
+10003,25764
+10004,45068,5092
+10005,7805
+10006,77303
+10007,71616,22958
+10008,490
+10009,2663
+10010,49562
+10011,19903
+10012,37782
+10013,78203
+10014,60055
+10015,1882
+10016,12955
+10017,14147
+10018,14034,46867,33951
+10019,31862
+10020,80266
+10021,80939
+10022,9927
+10023,36181
+10024,52173
+10025,52818,29821,43049,13983
+10026,54816
+10027,80208
+10028,20708
+10029,61078
+10030,46822
+10031,40317,11920
+10032,33228
+10033,27450
+10034,59504
+10035,38138,25153
+10036,54800
+10037,46430
+10038,67587
+10039,71558
+10040,39072
+10041,39270,43895
+10042,12494
+10043,795
+10044,41881,34078
+10045,28795,51510
+10046,28406
+10047,22746,6693
+10048,4230
+10049,24377
+10050,3639
+10051,24710
+10052,44404,3155
+10053,66235
+10054,74161,12909
+10055,73778
+10056,42700
+10057,46210
+10058,55258
+10059,9844,45886,27462
+10060,42444
+10061,79678
+10062,60194
+10063,48480
+10064,21371,73988,21582
+10065,29692
+10066,29018
+10067,941
+10068,22681
+10069,60864
+10070,14215
+10071,12298,31770
+10072,5980
+10073,26012
+10074,22274,29490
+10075,30961
+10076,44584
+10077,45503
+10078,30218
+10079,73988
+10080,78525
+10081,27172,28028,58924
+10082,19662
+10083,19506
+10084,21522
+10085,81795
+10086,43008
+10087,9448
+10088,75930
+10089,46357
+10090,74254
+10091,39179,11209
+10092,14331
+10093,22575,17443
+10094,63406
+10095,77977
+10096,19664,71068
+10097,33520
+10098,68200,2481
+10099,63325
+10100,32260
+10101,15176
+10102,28029
+10103,45299
+10104,6473
+10105,62273
+10106,77573
+10107,39128
+10108,4759,13861
+10109,47684,34422
+10110,27195
+10111,37505
+10112,57099,57837
+10113,37384,77886,70670
+10114,72339
+10115,68673
+10116,45197
+10117,14843
+10118,5148
+10119,58934
+10120,510
+10121,44409
+10122,48459
+10123,19043
+10124,7415
+10125,20409
+10126,30451
+10127,47528
+10128,18590
+10129,70911,79559
+10130,60767
+10131,31791
+10132,42105,30393
+10133,77301
+10134,67862
+10135,53358
+10136,1776,17436
+10137,9837,8794
+10138,54082
+10139,61323,24182
+10140,11501
+10141,59590
+10142,80060
+10143,74455
+10144,29492
+10145,54495
+10146,60207
+10147,6006
+10148,4840
+10149,46280,16573
+10150,45555
+10151,73318
+10152,43937
+10153,11573
+10154,53539
+10155,45272,33260
+10156,80234
+10157,4102
+10158,38873
+10159,65052
+10160,59349
+10161,46111,10338
+10162,54337
+10163,65517,42669
+10164,4987,62171
+10165,66341,23239
+10166,11801
+10167,65941,39503
+10168,18688
+10169,37911
+10170,32975
+10171,64560
+10172,46029
+10173,1429,16013
+10174,21976
+10175,32859
+10176,64045,37094
+10177,72025
+10178,29282
+10179,23270,9312
+10180,57928
+10181,49256,50724
+10182,49658
+10183,23715
+10184,39135,51869
+10185,76912
+10186,53212
+10187,78974,49176
+10188,53078
+10189,6757
+10190,79595
+10191,73582
+10192,22468
+10193,32844
+10194,3384
+10195,24090
+10196,16269,4900
+10197,52092
+10198,69169,59073
+10199,71509
+10200,55432
+10201,74736
+10202,15598
+10203,61634
+10204,55194
+10205,70587,7190
+10206,22735
+10207,33407
+10208,63210
+10209,46780
+10210,61790
+10211,72746
+10212,51925
+10213,25753,43683
+10214,46994
+10215,65674
+10216,81175
+10217,78852
+10218,74675
+10219,41433
+10220,77391
+10221,61881
+10222,46617,71137
+10223,27127
+10224,36950
+10225,10324
+10226,52171,1176,20427
+10227,75198
+10228,74042
+10229,46612
+10230,37092
+10231,49172
+10232,27662
+10233,15122
+10234,53837
+10235,70431,33283
+10236,18022
+10237,65670
+10238,2496,43087
+10239,69216
+10240,43020
+10241,22317
+10242,22274
+10243,36382
+10244,22820
+10245,65334
+10246,45087
+10247,48883
+10248,4707
+10249,73296
+10250,40686,22010
+10251,53150
+10252,13802,1987
+10253,71332
+10254,53823,46492
+10255,65284,2615,62320
+10256,16
+10257,76621
+10258,13555
+10259,14365
+10260,74072
+10261,35234
+10262,17347
+10263,25385
+10264,79538
+10265,7939
+10266,56961
+10267,15867
+10268,76202
+10269,21344
+10270,77796
+10271,28346
+10272,10006
+10273,80514
+10274,72855
+10275,3037
+10276,32995
+10277,33156,6486
+10278,70145
+10279,58723
+10280,42338,39223
+10281,62479
+10282,13375,17366,76556,46720
+10283,33030,45389
+10284,18275,4577
+10285,34633
+10286,5268
+10287,32383
+10288,55756
+10289,76535
+10290,79330
+10291,5738
+10292,81689
+10293,77218
+10294,5342
+10295,5403
+10296,55629,17541
+10297,46977
+10298,29802,65228
+10299,1561
+10300,71558
+10301,78574
+10302,36498,47579,28245
+10303,40587
+10304,50961,32594
+10305,61624
+10306,47978
+10307,20427
+10308,29420
+10309,399
+10310,72147,59666,65325,50281
+10311,13493
+10312,31859
+10313,3322,53916
+10314,35400,40559
+10315,19193
+10316,31196
+10317,2355
+10318,60145
+10319,36473,39393
+10320,34777
+10321,46914
+10322,36269
+10323,73363
+10324,49089,73701
+10325,76228,30831
+10326,22052
+10327,66557
+10328,66398
+10329,17418
+10330,31579
+10331,9716
+10332,44643,24228,80035
+10333,61076
+10334,31722,71209,60853
+10335,19809
+10336,45365
+10337,42395
+10338,69528,33300
+10339,48743
+10340,59763,41521
+10341,6225
+10342,20192,30240
+10343,43973,551
+10344,35736
+10345,25424,13083
+10346,37397
+10347,45049
+10348,77453
+10349,43209,12056
+10350,6003
+10351,67227
+10352,38785
+10353,57499,75692
+10354,81736
+10355,53782
+10356,81745
+10357,16627
+10358,78295
+10359,61025
+10360,73613
+10361,24730
+10362,19955
+10363,44037
+10364,8897
+10365,81073
+10366,44358,76257
+10367,65071
+10368,60298,38141
+10369,17257,20602
+10370,28803
+10371,45628,69105
+10372,39983,18524
+10373,2288
+10374,39544
+10375,48976,27917
+10376,78757
+10377,78836
+10378,53835
+10379,24608
+10380,49357
+10381,2260
+10382,4779
+10383,8702
+10384,459
+10385,24837
+10386,47331
+10387,3551
+10388,58766
+10389,28932
+10390,80720
+10391,72519
+10392,37012
+10393,57720
+10394,77648
+10395,12354
+10396,44643,36876
+10397,3246
+10398,3185
+10399,67242
+10400,30824
+10401,41561
+10402,25081
+10403,22417
+10404,13672,77285
+10405,20419
+10406,77633,24919,35307,42936
+10407,43625,42744
+10408,26832
+10409,68893,5910
+10410,46071
+10411,17086
+10412,23360
+10413,46047,52880
+10414,50059
+10415,64423
+10416,2081,69797
+10417,39983
+10418,26482
+10419,59177
+10420,77651
+10421,44996
+10422,58894,25635
+10423,19195
+10424,40435
+10425,72615
+10426,38832
+10427,26048
+10428,55192
+10429,1760
+10430,37702
+10431,62184
+10432,7945
+10433,74551
+10434,59162
+10435,59322,47467
+10436,80390
+10437,64068
+10438,36749
+10439,9825
+10440,29798
+10441,34406
+10442,29461
+10443,72242
+10444,14066
+10445,76993
+10446,62429,80843
+10447,11116
+10448,62556
+10449,31663
+10450,72491
+10451,48614
+10452,76627
+10453,35434,17009
+10454,18972,27312
+10455,10793
+10456,30660,37217
+10457,68420
+10458,54214,70703
+10459,57445
+10460,63794,64035
+10461,52050
+10462,44140
+10463,65729
+10464,44235
+10465,68150
+10466,28087
+10467,44230
+10468,51123
+10469,75410,48827
+10470,13041
+10471,1404
+10472,17999
+10473,15254
+10474,58139
+10475,43574
+10476,10361
+10477,61483
+10478,4013
+10479,76306,71075
+10480,41841
+10481,76210,42569
+10482,61979
+10483,4508
+10484,32452
+10485,16311,21865
+10486,56892
+10487,31467
+10488,1772
+10489,11334,82131
+10490,50574
+10491,78900,52342
+10492,69025
+10493,39279
+10494,28789
+10495,20183,3646
+10496,46242
+10497,8128
+10498,662
+10499,21304
+10500,60464
+10501,29399,71281,49947
+10502,15598,2114
+10503,40764
+10504,355
+10505,21830,80664
+10506,78154
+10507,11617,75367
+10508,76250
+10509,21774
+10510,38831
+10511,53264
+10512,80885,75634
+10513,2778
+10514,54595
+10515,21231
+10516,50285,41123,70716
+10517,76125,27287,35447
+10518,53085
+10519,50774,47160
+10520,32552
+10521,23973
+10522,48727,49910
+10523,29892
+10524,18524
+10525,59665
+10526,74678,14351
+10527,59671
+10528,53487
+10529,45561
+10530,18894
+10531,32113
+10532,57457
+10533,27498
+10534,36259
+10535,9119
+10536,75887
+10537,40521
+10538,67994
+10539,50341,32338
+10540,41367
+10541,493
+10542,29625
+10543,32624
+10544,52725
+10545,25854
+10546,47536,41763
+10547,61837
+10548,76342
+10549,19126
+10550,11606
+10551,18899
+10552,12251
+10553,69874
+10554,11518
+10555,71687
+10556,44418,48771
+10557,55676
+10558,7180
+10559,30375
+10560,77369
+10561,64359
+10562,15373,78163
+10563,31669,56415
+10564,57702
+10565,57593
+10566,52252
+10567,1520,51579
+10568,7158
+10569,46007,48530,39262
+10570,73824
+10571,77680,79524
+10572,1347,38346
+10573,43716
+10574,49598
+10575,68273
+10576,66468
+10577,59692
+10578,22681
+10579,33811
+10580,64146
+10581,74293,43814,3142
+10582,16839
+10583,3724,72126
+10584,8155
+10585,49847
+10586,51130
+10587,64420
+10588,52710
+10589,30300
+10590,28795
+10591,31930
+10592,62666
+10593,69535
+10594,62679,5701
+10595,47042,36115
+10596,39798
+10597,52842
+10598,20637,15784
+10599,60530
+10600,10396
+10601,18733
+10602,3237
+10603,8813
+10604,22189
+10605,25237
+10606,8890
+10607,36832
+10608,19546,18562
+10609,13990
+10610,32335,34421
+10611,77312
+10612,26470
+10613,11425
+10614,42527
+10615,47870
+10616,45736
+10617,78677
+10618,20078
+10619,22851,15072
+10620,26382
+10621,77631
+10622,44993
+10623,74344,6290,34526
+10624,36259
+10625,66296
+10626,21225
+10627,78586
+10628,24936
+10629,11858
+10630,29929
+10631,16253
+10632,75687
+10633,7306,78155
+10634,62376
+10635,80044
+10636,53823
+10637,56745
+10638,9059
+10639,53909
+10640,69726
+10641,68239
+10642,55665
+10643,9273
+10644,81015
+10645,26838
+10646,57283
+10647,16478
+10648,25561
+10649,18465,13108
+10650,46898
+10651,64266
+10652,42972,31646
+10653,25514
+10654,15188
+10655,6309
+10656,17538,43402
+10657,36803
+10658,30117,19996
+10659,37267
+10660,23699
+10661,52367,960,61838
+10662,73310
+10663,21790
+10664,65601,69614
+10665,68904
+10666,42657
+10667,39104
+10668,2423
+10669,7131,81085
+10670,18922
+10671,50806
+10672,66604
+10673,18303
+10674,52738
+10675,9398
+10676,73048
+10677,45073
+10678,27886
+10679,59618
+10680,73574
+10681,6385
+10682,37143
+10683,31787,63611
+10684,68729
+10685,34110
+10686,13822
+10687,18290,7240
+10688,45360
+10689,5954
+10690,53954
+10691,68426
+10692,66772
+10693,74600,37237
+10694,58522
+10695,51973
+10696,65890
+10697,46198
+10698,45913
+10699,3044,57248
+10700,59787,71750
+10701,39019
+10702,8950,13081
+10703,2387
+10704,37090
+10705,15767
+10706,55088
+10707,28201,72151
+10708,723
+10709,14995
+10710,21200
+10711,9389
+10712,20783
+10713,7754
+10714,12840
+10715,73748
+10716,8422
+10717,54689
+10718,66514
+10719,50354
+10720,25244
+10721,47178
+10722,80367
+10723,18378
+10724,48139
+10725,81687
+10726,76620,29161
+10727,25934
+10728,31821
+10729,44908,51534
+10730,32389
+10731,11571
+10732,4359
+10733,48661
+10734,20925
+10735,5782,22417
+10736,113,62071
+10737,49023,37597,46456
+10738,63239,67047
+10739,70425
+10740,80080
+10741,34468,7344
+10742,15127,80263
+10743,57225
+10744,67669
+10745,65610
+10746,24792
+10747,66583
+10748,27518
+10749,72066
+10750,33732
+10751,14634
+10752,4132
+10753,57605,72229
+10754,51323
+10755,22766
+10756,77139
+10757,30965
+10758,55854
+10759,36422,273
+10760,6678
+10761,58898
+10762,51212
+10763,5641
+10764,11870
+10765,23384
+10766,78168
+10767,59643
+10768,79250,63122
+10769,52825
+10770,9318
+10771,62588,77476
+10772,73813
+10773,35034
+10774,70661
+10775,29055
+10776,15634
+10777,15900
+10778,27335,7373
+10779,79484
+10780,339,45062,3049
+10781,11122
+10782,81123
+10783,9046
+10784,28765,67344
+10785,60798,60328
+10786,67260
+10787,2147
+10788,11465
+10789,68291
+10790,36310
+10791,3689
+10792,70537,14480
+10793,42076
+10794,35594
+10795,44729
+10796,53517
+10797,60480
+10798,55396
+10799,3496
+10800,77712
+10801,53059
+10802,40962
+10803,16820
+10804,33243
+10805,72462
+10806,1614
+10807,41974
+10808,60075
+10809,1192,40877
+10810,14147
+10811,45857
+10812,65219
+10813,81460
+10814,44851
+10815,62125,5445
+10816,16379
+10817,56344
+10818,68364
+10819,48251
+10820,38065
+10821,46827
+10822,48027
+10823,44887
+10824,72934,20888,52543
+10825,43247
+10826,25105
+10827,34561
+10828,76385
+10829,62394
+10830,28073
+10831,12196
+10832,2797,28241
+10833,66083
+10834,6339
+10835,23133
+10836,75062
+10837,16002,51777
+10838,57465
+10839,9378
+10840,21601,45082
+10841,15823
+10842,40570
+10843,51004
+10844,63884
+10845,53221
+10846,77049,79986
+10847,56346
+10848,31263,46921,12552
+10849,47597
+10850,19612
+10851,3760
+10852,14734
+10853,7579,65559
+10854,2508
+10855,15880
+10856,27788
+10857,38984
+10858,53210
+10859,53815,13632
+10860,66642
+10861,16966,27296,52314,2275
+10862,72926
+10863,67839
+10864,49456
+10865,36836
+10866,58359,42677
+10867,5190
+10868,78686
+10869,6848
+10870,40186,32629
+10871,1936
+10872,10665
+10873,58745
+10874,28320
+10875,75619
+10876,22860
+10877,53977
+10878,44397
+10879,67188
+10880,1244
+10881,72812,36837
+10882,31278
+10883,32088
+10884,46772,16803
+10885,77470
+10886,12842
+10887,53917
+10888,46860
+10889,45783,25739,24717
+10890,66973
+10891,42486
+10892,50736
+10893,25860
+10894,29997,4236
+10895,39103
+10896,79787
+10897,14166
+10898,40171,62031
+10899,13671
+10900,40056
+10901,80376
+10902,30328,16998
+10903,38940
+10904,38146
+10905,31638
+10906,70619
+10907,30190
+10908,22636
+10909,73005
+10910,10036
+10911,63810
+10912,47754,42665
+10913,24406
+10914,66604,26750
+10915,80104,62415
+10916,935,46975
+10917,21208
+10918,57755
+10919,79156
+10920,13445,49684
+10921,74409
+10922,69468
+10923,40884
+10924,39708
+10925,22093
+10926,41655
+10927,45670
+10928,22099
+10929,19890
+10930,44987,61392
+10931,66109
+10932,21036
+10933,2016,25959
+10934,32291
+10935,67649,27103
+10936,46529
+10937,69843
+10938,71617,47305
+10939,74808
+10940,18845
+10941,6275
+10942,9471,24703
+10943,30397
+10944,34063
+10945,324
+10946,52224
+10947,78257
+10948,14446
+10949,77217
+10950,47401
+10951,36097
+10952,41376
+10953,14946
+10954,73860,22333
+10955,71873
+10956,61796
+10957,79443
+10958,40316,52204
+10959,61610,51285
+10960,55370
+10961,31233
+10962,32386
+10963,48414
+10964,75766
+10965,52354
+10966,66287,9219
+10967,45772
+10968,8474
+10969,21243
+10970,14259
+10971,56987
+10972,75760,20816
+10973,44630
+10974,37339
+10975,41391
+10976,34603
+10977,49276
+10978,43001
+10979,33725
+10980,67178
+10981,49409
+10982,4967
+10983,22971,74824
+10984,21838
+10985,79879
+10986,34451
+10987,44577,17110
+10988,926,70337
+10989,35681
+10990,68918
+10991,71150,56211,40012
+10992,65605
+10993,53394
+10994,45191
+10995,12341
+10996,24098
+10997,22850
+10998,28852
+10999,47618
+11000,36051
+11001,73947
+11002,43465
+11003,14501
+11004,68519
+11005,45131
+11006,60622
+11007,48776
+11008,36800
+11009,35770
+11010,22873,18480
+11011,35091,32865
+11012,16871
+11013,23812
+11014,47291
+11015,73070
+11016,13949
+11017,59794
+11018,47363
+11019,44827
+11020,14584
+11021,4572
+11022,59293
+11023,74023
+11024,45862
+11025,68646
+11026,7409
+11027,58121
+11028,52167
+11029,57403
+11030,14740
+11031,57649
+11032,60706,43450
+11033,41413
+11034,53305
+11035,16782
+11036,45823,55782
+11037,22315
+11038,80278
+11039,62720
+11040,8759
+11041,80296
+11042,28638
+11043,57901
+11044,67434
+11045,45016
+11046,36036
+11047,75881
+11048,11443
+11049,57924
+11050,4114,55891,46035
+11051,18219
+11052,58139
+11053,13468
+11054,76181
+11055,10239
+11056,77614
+11057,4759
+11058,43679
+11059,64747
+11060,40296,18848
+11061,54922
+11062,22126,47772
+11063,26728
+11064,19552
+11065,7164
+11066,36345
+11067,21420
+11068,3233
+11069,74550
+11070,34927
+11071,57044,18052,40786,44061
+11072,20755
+11073,23281
+11074,33504,6473
+11075,73619
+11076,18103,41651
+11077,23874
+11078,20299
+11079,17523
+11080,19115
+11081,74796
+11082,16084
+11083,42441
+11084,42630
+11085,59602
+11086,47804,29386
+11087,18334,28258,2547
+11088,38408
+11089,8935
+11090,22864
+11091,48316
+11092,2104
+11093,62291
+11094,3329
+11095,6227
+11096,10896
+11097,30203
+11098,72624
+11099,71362
+11100,58037
+11101,60890
+11102,58415
+11103,30869
+11104,24856
+11105,77577
+11106,35852
+11107,55177
+11108,28260
+11109,49106
+11110,16689
+11111,75441,5847
+11112,25979
+11113,40442,4187,80996
+11114,66543
+11115,5113,32784
+11116,45087
+11117,21069
+11118,76159
+11119,7394
+11120,25673
+11121,3885
+11122,68500,79841
+11123,60835,15168
+11124,36944
+11125,29781
+11126,34502,48512
+11127,10813
+11128,44556
+11129,73559
+11130,2692
+11131,1422,60490
+11132,30205
+11133,68014
+11134,17330,36958
+11135,50119
+11136,46760
+11137,82002
+11138,60074,51120
+11139,77962,7181
+11140,33597
+11141,36926
+11142,26218
+11143,13441
+11144,50501
+11145,19163
+11146,57229
+11147,2484,81992
+11148,22478
+11149,18735,47198
+11150,30477,15442
+11151,24177
+11152,61436,9618
+11153,49514
+11154,7303
+11155,64507
+11156,43843,28561
+11157,67442
+11158,20965
+11159,43290,19303
+11160,76350,75936
+11161,27992
+11162,57406
+11163,47842
+11164,75941
+11165,42310,53314
+11166,73986
+11167,81722
+11168,17278
+11169,67063
+11170,77065
+11171,15276
+11172,54932
+11173,8059
+11174,22838
+11175,65695
+11176,68617
+11177,15006
+11178,41080
+11179,6041
+11180,78143,31537
+11181,7577
+11182,26244,80013
+11183,30160,41129
+11184,28539
+11185,30124
+11186,56418
+11187,45515
+11188,61826
+11189,18921
+11190,49939
+11191,72887,69629
+11192,68195
+11193,73358,44201
+11194,51114
+11195,20659,35375
+11196,30750,16994
+11197,66814
+11198,59380
+11199,81111,18618,79904
+11200,39540,62605
+11201,68652,50232
+11202,9644
+11203,35888
+11204,64089,9961
+11205,54208
+11206,35960
+11207,66028
+11208,9598
+11209,35569
+11210,63872
+11211,57480
+11212,30208
+11213,11794,56398
+11214,66816
+11215,46705
+11216,40061
+11217,6038
+11218,80914,19116,52686
+11219,2173
+11220,22205,28659
+11221,27789
+11222,61212
+11223,78030
+11224,8112,23425
+11225,54038
+11226,46743
+11227,81021
+11228,41470
+11229,81015
+11230,71906
+11231,14187,50766
+11232,28734,13904
+11233,69752,8936
+11234,19405
+11235,905
+11236,72313
+11237,79258
+11238,37179
+11239,79760
+11240,40442
+11241,22942,79630,54901
+11242,36644
+11243,30296
+11244,60543,42630
+11245,27745
+11246,55001
+11247,66833
+11248,5377
+11249,38322,36360
+11250,4479
+11251,41771
+11252,8975
+11253,68498
+11254,54904
+11255,6657,14205
+11256,287
+11257,39450
+11258,67316
+11259,67988
+11260,37033
+11261,39550
+11262,5211
+11263,72259
+11264,36113
+11265,29909
+11266,20854
+11267,8954
+11268,69588
+11269,54731,8768
+11270,66236
+11271,26343
+11272,21544
+11273,10183
+11274,7269,10581,64652
+11275,14811
+11276,5881
+11277,36516
+11278,4318
+11279,76090
+11280,18691
+11281,80804
+11282,80492
+11283,71797
+11284,60471
+11285,1882
+11286,45552,27037
+11287,26071,53207
+11288,4448
+11289,73479
+11290,44310,38186
+11291,52797
+11292,21273
+11293,48774,57011
+11294,24730
+11295,70778,27828
+11296,27449,76869
+11297,2209
+11298,24365
+11299,73226
+11300,7882
+11301,27542
+11302,59192
+11303,59566,48325
+11304,57376
+11305,36181
+11306,24834,40272
+11307,33158
+11308,43511
+11309,43490
+11310,54903
+11311,72770,44844
+11312,40066,45543,7748
+11313,71399
+11314,27498
+11315,10082
+11316,51850
+11317,29226
+11318,58937
+11319,40409
+11320,30892
+11321,78160
+11322,36749,20123
+11323,47431
+11324,14847,4230
+11325,49173
+11326,55362
+11327,19016
+11328,18143
+11329,25283
+11330,46303
+11331,69100,3208
+11332,22689
+11333,55361
+11334,63278
+11335,51659,1018
+11336,40156,70502
+11337,34800
+11338,34954
+11339,18588
+11340,36219
+11341,47133
+11342,34497
+11343,43675,68363
+11344,25802
+11345,63492
+11346,53776
+11347,22038
+11348,60648
+11349,68958
+11350,21228,40199
+11351,42304
+11352,33965
+11353,58070,49762
+11354,21960
+11355,81544
+11356,30243
+11357,27346
+11358,36706,48662
+11359,33229,19664
+11360,74939
+11361,16057
+11362,39288
+11363,27839
+11364,44172
+11365,71400
+11366,12348
+11367,74146,78328
+11368,73134
+11369,1423
+11370,72184
+11371,45841
+11372,68260,46208
+11373,74393
+11374,11238,72546
+11375,29507
+11376,61331,66032
+11377,45819
+11378,61128
+11379,29275
+11380,62686
+11381,32788
+11382,66220,20251
+11383,64383
+11384,31198
+11385,35122,51888
+11386,68539
+11387,75302
+11388,26423
+11389,49454,46909
+11390,82026
+11391,18005
+11392,39403
+11393,81967
+11394,3652
+11395,31439
+11396,43390
+11397,45421
+11398,35298
+11399,18999
+11400,19800
+11401,64106
+11402,2803
+11403,16963
+11404,30049
+11405,796
+11406,79201
+11407,44013
+11408,78808
+11409,15628
+11410,37979
+11411,60018,23977
+11412,39550
+11413,47387
+11414,5034
+11415,68682
+11416,59951
+11417,20051
+11418,41613
+11419,64013,18823
+11420,8091,32134
+11421,9725
+11422,30095
+11423,5057
+11424,63441
+11425,81320
+11426,42897,72202
+11427,21108
+11428,42963
+11429,60506
+11430,7549
+11431,48021
+11432,6959
+11433,3886
+11434,40530
+11435,42349
+11436,21166
+11437,12992
+11438,6264
+11439,20757
+11440,635,73758
+11441,58318
+11442,39777
+11443,66832,68407
+11444,54807
+11445,47234
+11446,21913
+11447,45767
+11448,38992
+11449,10036,38533
+11450,61574
+11451,53541
+11452,68357
+11453,32180
+11454,20650
+11455,66833
+11456,68325
+11457,20550
+11458,12084
+11459,59535
+11460,73441
+11461,3025,77656
+11462,69630
+11463,50383
+11464,35102,55017
+11465,34590
+11466,24151
+11467,56419,68842
+11468,66378
+11469,38061
+11470,1943
+11471,8355
+11472,17143
+11473,80961,59713
+11474,1047
+11475,69498
+11476,53683
+11477,77094
+11478,68834
+11479,45260
+11480,36729
+11481,29014
+11482,71074
+11483,79738
+11484,7304
+11485,33120
+11486,56296
+11487,51087
+11488,4101
+11489,32658
+11490,52480
+11491,27964,55826
+11492,41703
+11493,6000
+11494,26685
+11495,10055
+11496,81022
+11497,75485
+11498,2758
+11499,40627
+11500,63206
+11501,1154
+11502,35382
+11503,53651
+11504,29598
+11505,62049
+11506,43481
+11507,69097
+11508,53724
+11509,42014
+11510,32981
+11511,6221
+11512,27785
+11513,33054,70560
+11514,81442
+11515,51475,11916
+11516,31653
+11517,18170
+11518,45670
+11519,69885
+11520,9457
+11521,75127
+11522,9558,24855
+11523,26192
+11524,21725
+11525,59467,34459
+11526,52211
+11527,3286
+11528,69036
+11529,71273
+11530,41844
+11531,4621
+11532,53800
+11533,38984
+11534,70034
+11535,59021
+11536,46674
+11537,16079
+11538,11762
+11539,1247
+11540,52262
+11541,72925,75572
+11542,24630,1500
+11543,21335,61031
+11544,82158
+11545,75687
+11546,19896
+11547,7053
+11548,42054
+11549,72127
+11550,57381
+11551,4400
+11552,45492
+11553,75940,24486
+11554,48222,2830
+11555,11869
+11556,27299,52704,55
+11557,6173,29290
+11558,64645
+11559,43709,54356
+11560,51621
+11561,75589
+11562,44630
+11563,54553
+11564,53657
+11565,51265
+11566,17393
+11567,43929
+11568,54463
+11569,55620
+11570,80372,57267
+11571,24085
+11572,37072
+11573,1271,76173
+11574,31220
+11575,63239,70041,77190
+11576,62247
+11577,24573
+11578,39868
+11579,53554
+11580,6530,11163
+11581,18986
+11582,58901,46198
+11583,2115
+11584,13534
+11585,30195
+11586,16772
+11587,62724,34366
+11588,51975
+11589,15763
+11590,4216,70672
+11591,11779
+11592,38153
+11593,22371
+11594,80243
+11595,51363
+11596,70246
+11597,17958
+11598,52911
+11599,34562,70585
+11600,2522
+11601,50127,56302
+11602,40410
+11603,59631,50013
+11604,53641,73514
+11605,36655
+11606,64932
+11607,53063,31743
+11608,82047
+11609,25200,36495
+11610,44091,50208,22941,56741
+11611,6235
+11612,33753
+11613,70903
+11614,28813
+11615,39391
+11616,15945
+11617,41893
+11618,70661
+11619,55056,58566
+11620,51928
+11621,10008
+11622,40493
+11623,42665
+11624,10095
+11625,26266
+11626,24192
+11627,47899
+11628,46415
+11629,16549
+11630,45107
+11631,27594
+11632,44887
+11633,59878
+11634,21770
+11635,34423,66164
+11636,25870
+11637,53201
+11638,2359,37316
+11639,9440
+11640,51002
+11641,28803
+11642,8932
+11643,1356
+11644,30172
+11645,10356
+11646,53206
+11647,3942
+11648,22478
+11649,78263
+11650,38306
+11651,55827
+11652,52238
+11653,45010
+11654,78429
+11655,26243
+11656,65698
+11657,41309
+11658,56484
+11659,47700
+11660,8191,24650
+11661,10547
+11662,62941
+11663,34043
+11664,20179
+11665,49307
+11666,29664,15796
+11667,40677
+11668,60676
+11669,41807
+11670,157,32281
+11671,7251
+11672,72977
+11673,32603
+11674,38538
+11675,70077
+11676,25598,79034
+11677,40800
+11678,13523
+11679,17249
+11680,14083,11810
+11681,2789
+11682,42493
+11683,53635
+11684,64761,28257
+11685,4389,18539,2122
+11686,2784,23254
+11687,27264
+11688,78459
+11689,82090
+11690,3942
+11691,51414
+11692,77854
+11693,56273
+11694,71002
+11695,50053
+11696,20483
+11697,39641
+11698,18492
+11699,65090
+11700,80019
+11701,18478
+11702,9088,31844
+11703,10925
+11704,1612,5627
+11705,49782,22841
+11706,56766,77091
+11707,47964
+11708,16552
+11709,71322
+11710,67392
+11711,37032,19324
+11712,21012
+11713,31608
+11714,36615,25210
+11715,82165,43264,58940
+11716,38538
+11717,6511
+11718,13925,76406,23470,12884
+11719,31629
+11720,69643
+11721,27352
+11722,51232
+11723,6785
+11724,46878
+11725,43830
+11726,57952
+11727,13583
+11728,15992
+11729,38248,16652
+11730,82054
+11731,16263
+11732,69167
+11733,29495,23993
+11734,42128,32060
+11735,13350
+11736,3152
+11737,38122,75584
+11738,35423
+11739,78366,32961
+11740,62694,6463
+11741,55204
+11742,31209
+11743,12735
+11744,189
+11745,8986
+11746,22672,18814
+11747,34724
+11748,6954
+11749,81609
+11750,27970
+11751,16726
+11752,37688
+11753,25502,35177
+11754,24519
+11755,43929
+11756,5271
+11757,51678
+11758,32341
+11759,58362
+11760,37982
+11761,4740
+11762,25482
+11763,27124,55936
+11764,39765
+11765,70719
+11766,77227,38538
+11767,12992
+11768,40242
+11769,30276
+11770,69169
+11771,2696
+11772,51896
+11773,47831
+11774,61757,39020
+11775,21957
+11776,26806,44492
+11777,81101
+11778,5006
+11779,2268
+11780,37740
+11781,51524
+11782,42309
+11783,8084
+11784,63869,31866,5140
+11785,21415
+11786,12734
+11787,44126
+11788,68859
+11789,77149
+11790,34813
+11791,43032
+11792,4548
+11793,61745,63796,7089
+11794,64624
+11795,76765,60405
+11796,63427
+11797,40974
+11798,2226,63153
+11799,53183
+11800,79328,30034,6296
+11801,42148
+11802,52059
+11803,21788,47425
+11804,40634
+11805,46640,72197
+11806,16982
+11807,57769
+11808,2732
+11809,74949
+11810,1469
+11811,20905
+11812,16
+11813,28030
+11814,64901
+11815,79732,55771
+11816,36298
+11817,43441
+11818,40687
+11819,47533
+11820,18581
+11821,12658,32612
+11822,53506
+11823,55079
+11824,38171
+11825,35817,56921,26504
+11826,81797
+11827,58714
+11828,4171,76834
+11829,28971,57793
+11830,50348,964
+11831,46034
+11832,60049
+11833,9727
+11834,53654
+11835,66422,2455
+11836,44959
+11837,21211
+11838,73668
+11839,24174
+11840,56193
+11841,48008
+11842,47140
+11843,62775
+11844,58672,54424
+11845,47871
+11846,75630,51119
+11847,11154
+11848,39041,34621
+11849,19448,24927
+11850,28297
+11851,11495
+11852,77436
+11853,75456,18495
+11854,56383
+11855,29006
+11856,55655
+11857,17609
+11858,9982
+11859,76003
+11860,45276,59460
+11861,29788
+11862,16486
+11863,15217
+11864,64693,58202
+11865,41655
+11866,76545
+11867,71055
+11868,8003
+11869,8848
+11870,57223,53543
+11871,27630
+11872,30540
+11873,58390
+11874,22434
+11875,15978
+11876,65705
+11877,73986
+11878,20778,81626
+11879,2187
+11880,6052
+11881,57056
+11882,42527
+11883,6051
+11884,50177
+11885,15843
+11886,38873
+11887,58894
+11888,26206
+11889,71738
+11890,77885
+11891,16828,44803
+11892,11712
+11893,26212
+11894,81099
+11895,80070
+11896,3860
+11897,9500
+11898,23050
+11899,46396
+11900,60122
+11901,25416
+11902,49985
+11903,77694
+11904,76558
+11905,31992
+11906,77462
+11907,56783
+11908,80667
+11909,35485,44572
+11910,10158
+11911,2142,3538
+11912,44226,43974
+11913,13514
+11914,80038
+11915,12304,1724,10043
+11916,18437
+11917,60522,25651
+11918,24229,4320,17865
+11919,63293
+11920,48718
+11921,67719
+11922,41573
+11923,48987
+11924,33166
+11925,74673
+11926,18726
+11927,18145
+11928,80316
+11929,38981
+11930,12987
+11931,67293
+11932,62700
+11933,6913
+11934,49415
+11935,14869,42575
+11936,22158
+11937,70413
+11938,79211
+11939,62724
+11940,56237
+11941,28401,81812
+11942,30364
+11943,30719
+11944,40316
+11945,29625
+11946,58016
+11947,80507
+11948,11673
+11949,46038
+11950,55857
+11951,74980
+11952,8033
+11953,27347
+11954,45548
+11955,48282,61026
+11956,52015
+11957,294,47404
+11958,43504,66097
+11959,12256,54151
+11960,41062
+11961,6305
+11962,54193
+11963,39103
+11964,38474
+11965,30862
+11966,31454
+11967,29514,10618
+11968,50204
+11969,74950
+11970,32895
+11971,65142,60791
+11972,51409
+11973,26579
+11974,3777
+11975,80344
+11976,54283
+11977,46104
+11978,18042
+11979,48359
+11980,21787
+11981,40559
+11982,57556,69324
+11983,19797
+11984,57555
+11985,13889
+11986,7561
+11987,2367,78709
+11988,24029,57907
+11989,1472
+11990,73233
+11991,20298
+11992,32381
+11993,36051,19114
+11994,12193
+11995,32639,63266,57319
+11996,19506
+11997,4272,20388
+11998,7035,20091
+11999,62371
+12000,28477,265
+12001,14727
+12002,55425
+12003,57427
+12004,33933
+12005,27399,54860
+12006,9223
+12007,73037
+12008,26890
+12009,72978
+12010,8099
+12011,61008
+12012,23826
+12013,77990
+12014,71960
+12015,72429
+12016,42365
+12017,41510
+12018,53310
+12019,66155
+12020,68923
+12021,19742,5575
+12022,9149
+12023,25563
+12024,170
+12025,20487,31730
+12026,22031
+12027,25983
+12028,4325
+12029,68432
+12030,64350,63438
+12031,56466
+12032,39107
+12033,1641
+12034,59487
+12035,41560
+12036,16643
+12037,18802
+12038,36638
+12039,58457
+12040,4253
+12041,37553
+12042,39749
+12043,24428
+12044,19864
+12045,60902
+12046,75878
+12047,12310
+12048,50341
+12049,37305
+12050,7936,51961,53033,24654
+12051,35502
+12052,40697,24948
+12053,16508
+12054,30047
+12055,50324
+12056,44230
+12057,75354
+12058,62023,68672
+12059,654
+12060,77119,22534
+12061,49764,79453
+12062,35470,59949
+12063,5461
+12064,2579,76688
+12065,6856
+12066,31994
+12067,25797
+12068,50691
+12069,30589,35887
+12070,22667,74285
+12071,5914
+12072,22527,35706,8801
+12073,10934
+12074,13360
+12075,9400
+12076,68162
+12077,20856
+12078,67012,11572
+12079,33684,34739,63841
+12080,70171
+12081,18298
+12082,32860
+12083,65425
+12084,49079
+12085,17713,37877
+12086,77342,11216
+12087,54784,82016
+12088,79313,66037
+12089,24993
+12090,53273
+12091,38395
+12092,3753
+12093,8803,70876
+12094,13644,29861
+12095,75537,57659
+12096,55898,71880,12082
+12097,21129
+12098,31161,61556,18842
+12099,8981,9728
+12100,23336,56668
+12101,29604
+12102,29799
+12103,48685
+12104,75153
+12105,31654
+12106,18543
+12107,52485,6631
+12108,71703
+12109,22964
+12110,28623
+12111,49147
+12112,75585
+12113,76196,80040
+12114,49237,24270
+12115,75824
+12116,70194,36029
+12117,47303
+12118,70669,41591
+12119,41394
+12120,21510,54329
+12121,38338
+12122,36856,44849
+12123,74782
+12124,16736
+12125,48780
+12126,73238
+12127,13213,55525
+12128,31988
+12129,80586
+12130,33714
+12131,23349
+12132,22315
+12133,38607
+12134,73438
+12135,73709
+12136,33422
+12137,46550
+12138,70413,81440,55506
+12139,1081
+12140,54312,81202,73455
+12141,48979,41445
+12142,5230,49046
+12143,6864,44487
+12144,4925
+12145,9380
+12146,28722
+12147,58311,38907
+12148,68150
+12149,51377
+12150,26554
+12151,16944
+12152,41482
+12153,70172,5432,40370
+12154,12097
+12155,41607,45614
+12156,32917
+12157,77103
+12158,69878
+12159,79495
+12160,22300,6115
+12161,61692
+12162,26168,58915
+12163,65384
+12164,13834,72528
+12165,59458
+12166,79061
+12167,69183
+12168,46022
+12169,63709
+12170,57158
+12171,8778
+12172,54315
+12173,7267
+12174,81065
+12175,32413
+12176,16992
+12177,47659
+12178,79165
+12179,5964,69500
+12180,41048
+12181,60541
+12182,13653,60061
+12183,1877
+12184,62479
+12185,44599
+12186,46609
+12187,71267,72125,18502
+12188,18328
+12189,40800,5235
+12190,69809,72072
+12191,34736,54014
+12192,8735
+12193,18171
+12194,78078,30599
+12195,46206
+12196,66860
+12197,68724,56332
+12198,30188
+12199,19057
+12200,36850,3710
+12201,53550
+12202,46875,80985
+12203,19747
+12204,27066
+12205,45535
+12206,35287
+12207,42874
+12208,69019
+12209,61768
+12210,22023
+12211,58042
+12212,21306,37815
+12213,51349
+12214,6276,44850
+12215,57597,29501
+12216,71245
+12217,49187
+12218,41749
+12219,29846
+12220,78034
+12221,57007,51634
+12222,81786
+12223,79074
+12224,81037
+12225,44949
+12226,19972
+12227,43251
+12228,62771
+12229,67428
+12230,56384,40914
+12231,57318
+12232,5943
+12233,3750
+12234,26212,67512
+12235,55963
+12236,52892
+12237,11901
+12238,41786,33936
+12239,8235,38708,47143
+12240,35512
+12241,80412
+12242,34820
+12243,35962
+12244,11266
+12245,39982
+12246,7253
+12247,56300,65267
+12248,7281
+12249,51546,24485
+12250,47102
+12251,42477
+12252,13360
+12253,81110,28075
+12254,70877
+12255,72636,31430
+12256,43724
+12257,80645
+12258,77813
+12259,36300
+12260,79560
+12261,70930
+12262,51163
+12263,13020
+12264,16478
+12265,4735
+12266,71302,53704
+12267,2523,52846
+12268,78200
+12269,22157
+12270,10251
+12271,25259
+12272,78827
+12273,36452
+12274,62638
+12275,10291,46783
+12276,62969,20876,6619,4521
+12277,29631
+12278,10931
+12279,36956
+12280,38475,32985
+12281,65610,8122
+12282,2868
+12283,69164
+12284,28441,17556
+12285,8518,82030
+12286,22118
+12287,78944
+12288,3659
+12289,6230
+12290,189
+12291,21615
+12292,36962
+12293,57371
+12294,9130,47008
+12295,125,34406
+12296,8449
+12297,45101
+12298,22181
+12299,20880
+12300,31348
+12301,44255
+12302,68655
+12303,49444
+12304,25842
+12305,71463
+12306,12279
+12307,6230
+12308,81077
+12309,7341
+12310,58716
+12311,41428
+12312,33577
+12313,34535
+12314,9278,30342
+12315,80573
+12316,9293,56923
+12317,73508
+12318,57417
+12319,3790
+12320,34151
+12321,13449
+12322,81792
+12323,36279
+12324,63156
+12325,55600
+12326,68618,25901
+12327,31930
+12328,13676,19923,593
+12329,17239
+12330,53516
+12331,81160
+12332,46064
+12333,22510
+12334,25536,19740
+12335,4740
+12336,25525
+12337,8876
+12338,51486
+12339,76261,29141
+12340,17784,5142
+12341,46612
+12342,46664,37316
+12343,8138
+12344,61740
+12345,17331
+12346,77716,67448
+12347,43096
+12348,6856
+12349,27237
+12350,19276,3609,18918
+12351,69883
+12352,34697
+12353,22929
+12354,66336
+12355,69115
+12356,42433
+12357,53239,50147
+12358,50265
+12359,25561
+12360,41613
+12361,76409
+12362,55407
+12363,45875
+12364,30966
+12365,10440
+12366,49843
+12367,9607,65853,5464
+12368,51075,78050
+12369,49140
+12370,35918
+12371,9388
+12372,46512,68497
+12373,78827
+12374,14563,54926
+12375,57855
+12376,47920
+12377,53250,2141
+12378,62743,63479
+12379,56576
+12380,36909,32473
+12381,141
+12382,15590
+12383,53311
+12384,65980,80361
+12385,65553
+12386,71244
+12387,44338
+12388,19547
+12389,51702
+12390,39982
+12391,59760
+12392,4803
+12393,7847
+12394,70321
+12395,22212
+12396,79560,14128
+12397,52531
+12398,71656
+12399,52379
+12400,70354
+12401,58870,47576
+12402,30058
+12403,68884,24601
+12404,3478,3775
+12405,13511
+12406,74770
+12407,17453
+12408,71815
+12409,23533
+12410,7772,13818
+12411,81419
+12412,30955
+12413,4825
+12414,60148
+12415,32410,52210
+12416,52856
+12417,22987,79061
+12418,78056
+12419,64668
+12420,23873
+12421,43905
+12422,43159,60294,17303
+12423,3291
+12424,52007
+12425,69794
+12426,74450
+12427,20641,50207
+12428,22601
+12429,36715
+12430,60776
+12431,53495
+12432,27668
+12433,62360
+12434,6620
+12435,13906
+12436,21221,46832,38849
+12437,950
+12438,5843
+12439,52420
+12440,16631
+12441,4171
+12442,49649
+12443,76126
+12444,80692
+12445,35219
+12446,54075
+12447,81460
+12448,38986
+12449,79403
+12450,32859
+12451,5022
+12452,1169
+12453,72740
+12454,57621
+12455,26043
+12456,56736
+12457,25751
+12458,81985
+12459,38064
+12460,7955
+12461,58545
+12462,11446
+12463,19011
+12464,15054
+12465,43648
+12466,33691
+12467,25998
+12468,38214
+12469,57722
+12470,3806
+12471,23208
+12472,39252
+12473,16346
+12474,20343
+12475,76358
+12476,42962
+12477,31655
+12478,71322
+12479,50699,23737
+12480,62973
+12481,65786
+12482,13888
+12483,29794,2928
+12484,66507,9162
+12485,14846
+12486,3365
+12487,80819,30702
+12488,45517,70618
+12489,1959
+12490,19539
+12491,66751
+12492,57003
+12493,62500
+12494,22968,71574
+12495,34792
+12496,78644
+12497,60837
+12498,47152
+12499,16809
+12500,63656
+12501,2240
+12502,50266,29076
+12503,55432
+12504,14658
+12505,15562,2375
+12506,71023
+12507,2858
+12508,1440
+12509,44318
+12510,74790
+12511,1664
+12512,28259
+12513,40005,43941
+12514,29121
+12515,7792
+12516,52357
+12517,14674
+12518,71317
+12519,8486
+12520,77549
+12521,20450
+12522,53173
+12523,63707
+12524,5622
+12525,10559
+12526,81326
+12527,45667
+12528,55042,40471
+12529,40451
+12530,7980
+12531,73232
+12532,3297
+12533,64897
+12534,30454
+12535,73898,24885
+12536,65753
+12537,13473
+12538,68403
+12539,10475
+12540,25400
+12541,60029
+12542,18226
+12543,42903
+12544,64482
+12545,58590
+12546,5898
+12547,66041
+12548,52828
+12549,36667
+12550,55853
+12551,64934
+12552,29434
+12553,13262,38221
+12554,41801
+12555,64088
+12556,569
+12557,4997
+12558,41393,1558
+12559,41690
+12560,7364
+12561,29765
+12562,71656
+12563,44234
+12564,28566
+12565,61088,6181
+12566,65509
+12567,29087
+12568,57928
+12569,44548,54990
+12570,20982,12582
+12571,75377
+12572,5993
+12573,18754
+12574,45107,11316
+12575,34056
+12576,56616,25406
+12577,6831
+12578,8535,82162
+12579,17298
+12580,36776
+12581,32677
+12582,12620
+12583,10795
+12584,8666
+12585,34412
+12586,47572,28122
+12587,30188
+12588,6829
+12589,50234
+12590,19118
+12591,51954
+12592,10704
+12593,7689
+12594,67703
+12595,75725
+12596,45119
+12597,59862
+12598,2064
+12599,46026
+12600,36602
+12601,73214
+12602,33593
+12603,31941
+12604,16096,20172
+12605,53818,58290
+12606,56765
+12607,7419
+12608,34505
+12609,42840
+12610,48552
+12611,19654,33803
+12612,66980
+12613,42833
+12614,73721,37030,3444
+12615,77991,34170
+12616,3719
+12617,58656
+12618,35806,40978,4471
+12619,74130
+12620,31300
+12621,81552
+12622,14770
+12623,3551,33462
+12624,8245
+12625,535,53151
+12626,64931
+12627,4902
+12628,70309
+12629,39316,51100
+12630,12712
+12631,56576
+12632,45007
+12633,11028
+12634,25930,51942,10140
+12635,16349
+12636,22656
+12637,18912
+12638,78506
+12639,33113
+12640,41113
+12641,48313
+12642,16778
+12643,65567
+12644,32571
+12645,11950
+12646,29473
+12647,57484
+12648,73261
+12649,36244
+12650,9206
+12651,9841
+12652,64064
+12653,76529,12432
+12654,30001
+12655,45451,52042
+12656,51178,31915
+12657,67643
+12658,39992
+12659,38869
+12660,79115
+12661,33785,5740
+12662,50031
+12663,18245
+12664,43558
+12665,40453
+12666,15030,4831
+12667,71454
+12668,42119
+12669,71909
+12670,33972
+12671,4880
+12672,34063
+12673,41120
+12674,60629
+12675,57283
+12676,1340
+12677,32534
+12678,77255,26071
+12679,58637
+12680,24833
+12681,40940
+12682,52910
+12683,49610
+12684,4666
+12685,37979
+12686,72866,46114,36521
+12687,75291
+12688,62988
+12689,32088,23389
+12690,1882
+12691,10802
+12692,35431
+12693,62851
+12694,30104
+12695,11429
+12696,7808
+12697,44418
+12698,41595
+12699,76642
+12700,67233
+12701,72558
+12702,49227
+12703,77906
+12704,57113
+12705,65879,5859
+12706,6949
+12707,3553
+12708,10627
+12709,76655
+12710,41485
+12711,46872
+12712,67366
+12713,44444
+12714,23222
+12715,10374,55305,2450,81613
+12716,59779,60670
+12717,15697,49835,36897
+12718,62936
+12719,37550
+12720,56268
+12721,67503
+12722,17046
+12723,48239
+12724,69131
+12725,64244
+12726,17573,80391
+12727,8994
+12728,36021,74109
+12729,75810
+12730,19387
+12731,65186
+12732,30965
+12733,2790
+12734,41445
+12735,47804,46210
+12736,47438
+12737,12381
+12738,14710
+12739,44518
+12740,80899,42400
+12741,78915,68211
+12742,57164
+12743,14022
+12744,8995,67858
+12745,27199,10498,56660
+12746,4967,40472
+12747,20591,5635
+12748,52862
+12749,39785
+12750,38519,1902
+12751,65935
+12752,27870
+12753,16856,8574,47757
+12754,30993
+12755,55106
+12756,29035,17979
+12757,20357,28747
+12758,29326
+12759,19439
+12760,35666,14713
+12761,77260
+12762,66219,33068
+12763,32230,57305
+12764,24852
+12765,75790
+12766,79234
+12767,65280
+12768,41984
+12769,65769
+12770,2575
+12771,72617
+12772,70049
+12773,10381
+12774,30842
+12775,27156
+12776,16709
+12777,59783
+12778,34244,70394
+12779,13322,21790,63773
+12780,32668
+12781,69634
+12782,57561,17661
+12783,67691
+12784,5522
+12785,18563
+12786,47464,40749,73567
+12787,67813,64169
+12788,1231
+12789,17401
+12790,11198
+12791,65645
+12792,76049
+12793,45189
+12794,53411
+12795,42767
+12796,57944
+12797,1003
+12798,57136
+12799,65422
+12800,55247
+12801,34168
+12802,2916
+12803,17152
+12804,70610
+12805,46986,46980,18247
+12806,79071
+12807,70938
+12808,67811
+12809,65014
+12810,52629,21655
+12811,553
+12812,31242
+12813,38263
+12814,41091,74804
+12815,2878
+12816,47016
+12817,80778
+12818,12121
+12819,30045
+12820,51043
+12821,874,33853
+12822,47821
+12823,46950
+12824,67980
+12825,70437
+12826,53698
+12827,8945
+12828,82004
+12829,64969
+12830,77185
+12831,48751,57675
+12832,27986
+12833,25686
+12834,70813
+12835,68357
+12836,52092
+12837,57445,56194
+12838,47594
+12839,21187,49398
+12840,23728
+12841,67888
+12842,26343
+12843,38125
+12844,33634
+12845,14113
+12846,8184
+12847,32805
+12848,70575
+12849,79972,76129
+12850,22752,2860
+12851,34816,22732
+12852,63267
+12853,11861
+12854,22197,59994
+12855,68476
+12856,33300
+12857,19073
+12858,31263
+12859,57147
+12860,3029,13338
+12861,75508
+12862,50961
+12863,14600
+12864,40979
+12865,68486
+12866,10294
+12867,41468,71679
+12868,76091
+12869,34586
+12870,66957
+12871,34468,17391
+12872,22138
+12873,24137
+12874,79303
+12875,71995,32483,20929
+12876,5031
+12877,79380
+12878,4419
+12879,40960
+12880,75844
+12881,44863
+12882,46104
+12883,31042
+12884,32227
+12885,57677
+12886,81048,58736
+12887,70272,70755
+12888,47364,2153
+12889,24703
+12890,37354
+12891,65331,38626
+12892,1325
+12893,15709,69285
+12894,12206
+12895,40014
+12896,81530
+12897,74316
+12898,74341
+12899,14763
+12900,46475
+12901,48394
+12902,61398
+12903,38533
+12904,30828,81834
+12905,36923
+12906,336
+12907,41782
+12908,1987
+12909,43330
+12910,34429
+12911,64938
+12912,64968
+12913,30844
+12914,1720
+12915,50858
+12916,64106
+12917,15541
+12918,72358
+12919,56543
+12920,8373,57732
+12921,19035,64443
+12922,11820
+12923,69685
+12924,42780
+12925,42442,67528,14410
+12926,12765
+12927,12960
+12928,1863
+12929,78354,18480
+12930,7853
+12931,43875,40118
+12932,52416,17983
+12933,75118,51518
+12934,53763
+12935,48890
+12936,31986
+12937,23412
+12938,46975
+12939,22118
+12940,29034,16073
+12941,4742,31588
+12942,82083
+12943,31077
+12944,18627
+12945,55837
+12946,38049
+12947,38076
+12948,76687
+12949,77846
+12950,3069
+12951,65641
+12952,62945
+12953,25826
+12954,10348
+12955,1612
+12956,58580,47141,13634
+12957,8392
+12958,58372
+12959,26545
+12960,14274
+12961,15148
+12962,16600,51437
+12963,50720,80874
+12964,53697
+12965,45873
+12966,53983,18642
+12967,58306,34721
+12968,320,8111
+12969,12479
+12970,74339,65296,45354
+12971,44967
+12972,46832
+12973,16049
+12974,49003
+12975,81031,53489
+12976,53055
+12977,7811
+12978,44608
+12979,39682
+12980,53787
+12981,47937
+12982,38151
+12983,24708
+12984,18012
+12985,73784
+12986,7460
+12987,56921
+12988,34034
+12989,52257
+12990,68995
+12991,63927,54864
+12992,28315
+12993,52843
+12994,39864
+12995,68747
+12996,34331
+12997,75187,32881
+12998,32516,35693
+12999,68440,1522
+13000,39592
+13001,33704
+13002,31248,71407
+13003,7320
+13004,27764
+13005,20757
+13006,24193
+13007,40578
+13008,35570,35298
+13009,28306
+13010,9699
+13011,30095,62026,47551
+13012,37597
+13013,15613
+13014,67345
+13015,79931
+13016,79369
+13017,34185,16780
+13018,26088
+13019,197
+13020,66811,9223
+13021,43711
+13022,37936
+13023,46550
+13024,62577,27264
+13025,60365
+13026,38680
+13027,10903
+13028,43813,21209
+13029,73066
+13030,49491
+13031,24547
+13032,34224,52393,12710
+13033,77957
+13034,76547
+13035,41871
+13036,77275
+13037,14351
+13038,26771
+13039,34764
+13040,68357
+13041,19529,14166
+13042,4655
+13043,49867
+13044,15044
+13045,17315
+13046,55312
+13047,45468
+13048,69748
+13049,45190
+13050,3528
+13051,48019,23517
+13052,25312
+13053,56105,2181
+13054,20031
+13055,27688
+13056,52080
+13057,36214,71747
+13058,4683,5754
+13059,20806,21516
+13060,80784
+13061,81818
+13062,45007
+13063,34996
+13064,24604
+13065,50682
+13066,49137
+13067,49072
+13068,37633,56904
+13069,55890
+13070,45581,70096
+13071,5056
+13072,81927
+13073,70073,57602
+13074,28085
+13075,4973
+13076,2221
+13077,73693
+13078,29743
+13079,81722
+13080,65051
+13081,5458
+13082,35912
+13083,79294,36917,68560
+13084,44933
+13085,12481
+13086,67255
+13087,20397
+13088,15342
+13089,56329,67833
+13090,17517
+13091,8338,58982
+13092,19962
+13093,75515
+13094,55509
+13095,49984
+13096,68905
+13097,75419,71735
+13098,23728
+13099,72365
+13100,55,12566
+13101,1217
+13102,425
+13103,40697
+13104,66224
+13105,8225
+13106,32910
+13107,29768
+13108,67393
+13109,68740
+13110,42393
+13111,36903,57515
+13112,34319
+13113,53129
+13114,4956
+13115,9253
+13116,11882
+13117,65620
+13118,81488
+13119,32829
+13120,28410
+13121,3647,78472,66919
+13122,77727
+13123,10036
+13124,57609
+13125,12162,16967
+13126,36904
+13127,44059
+13128,26573
+13129,45844
+13130,58507
+13131,36151
+13132,64234
+13133,44745,64314
+13134,39242
+13135,53312
+13136,71954,28420
+13137,37350
+13138,72364,9743
+13139,64143
+13140,33620,23916
+13141,73134
+13142,65676
+13143,43483
+13144,4174
+13145,73191
+13146,73701
+13147,38047
+13148,22324
+13149,73430
+13150,60049
+13151,76084
+13152,17642
+13153,63523
+13154,51962
+13155,31708
+13156,68732
+13157,8463
+13158,53843,24295
+13159,41668,30395
+13160,16633
+13161,80273
+13162,37715,50507
+13163,53229
+13164,41153,75796
+13165,41720
+13166,14256
+13167,43813
+13168,9934
+13169,23864
+13170,45168
+13171,18881
+13172,49297
+13173,47577
+13174,56700
+13175,79480
+13176,51308,20776
+13177,70121
+13178,44366
+13179,47556
+13180,49425
+13181,14673
+13182,17022
+13183,5667
+13184,54314,68407
+13185,72880
+13186,1462
+13187,69527
+13188,65224
+13189,66361,65640
+13190,35101
+13191,31574,36053
+13192,61129
+13193,77556
+13194,617
+13195,30378,75222
+13196,16359
+13197,1196
+13198,5230
+13199,75101,55089
+13200,10626
+13201,38606
+13202,51459,3607
+13203,25825
+13204,7459
+13205,49415
+13206,71002
+13207,1478
+13208,63538
+13209,55332
+13210,40837
+13211,38971
+13212,39365
+13213,33808,10613,71043
+13214,38524
+13215,28638
+13216,20265
+13217,42773
+13218,15443
+13219,33761
+13220,19482
+13221,7788
+13222,12704
+13223,28556,72354
+13224,65582
+13225,81298
+13226,24494
+13227,9891
+13228,64887
+13229,15174
+13230,70550
+13231,2392
+13232,48414
+13233,64418
+13234,36829,36948
+13235,21317,35915
+13236,15182
+13237,50515
+13238,48663,14717
+13239,21988
+13240,33236
+13241,17356
+13242,68491
+13243,76010,79365,37094
+13244,63764
+13245,5212
+13246,42621,13229
+13247,39617
+13248,8513
+13249,74581
+13250,79211
+13251,56632
+13252,69271
+13253,79481
+13254,43337
+13255,61515
+13256,78893
+13257,31744,6244
+13258,80269
+13259,50615
+13260,10369
+13261,78382
+13262,61567
+13263,80943,35715
+13264,1241
+13265,47771
+13266,5510
+13267,69754
+13268,28140
+13269,8245
+13270,75449,23885
+13271,49939
+13272,807
+13273,79135
+13274,30260
+13275,68774
+13276,67880
+13277,25927
+13278,48309
+13279,81304
+13280,66602
+13281,22446
+13282,71798
+13283,23782
+13284,12782,38800
+13285,51313
+13286,25827,21486
+13287,60055
+13288,32801
+13289,55667
+13290,17844
+13291,14170
+13292,16546
+13293,22302
+13294,71965
+13295,38281,46880
+13296,64112
+13297,24397
+13298,56400
+13299,31985
+13300,20707
+13301,70323
+13302,6853
+13303,62687
+13304,45360,51150,13728
+13305,8823
+13306,6094
+13307,74150
+13308,72061
+13309,77861,64274,71834
+13310,23893
+13311,5543,17564,17409
+13312,51114
+13313,77953
+13314,40381
+13315,53839
+13316,35838
+13317,53195
+13318,28467,13864
+13319,64740
+13320,65750
+13321,19612
+13322,9195
+13323,46402
+13324,58496
+13325,41801,34025
+13326,10553
+13327,72171
+13328,59941
+13329,3886
+13330,25278
+13331,6587
+13332,76668
+13333,74450
+13334,11031
+13335,37994,72841
+13336,57021
+13337,58644
+13338,37840
+13339,10570
+13340,48897
+13341,52006
+13342,64922,30226
+13343,23147
+13344,151
+13345,77593
+13346,50994
+13347,66151
+13348,25401
+13349,80417,4110
+13350,10758
+13351,7999
+13352,1777
+13353,56065,47102
+13354,73072
+13355,68432
+13356,3637
+13357,80886
+13358,34886
+13359,31267
+13360,59703
+13361,2693
+13362,47922
+13363,70520
+13364,64233
+13365,61795
+13366,17035
+13367,49718
+13368,5236,61557
+13369,2509
+13370,75970
+13371,40971,13698
+13372,32413
+13373,79198
+13374,20105
+13375,5836
+13376,75510,15124
+13377,20170
+13378,66142
+13379,48527
+13380,20243
+13381,3349,58269
+13382,54391
+13383,52670
+13384,40097
+13385,37565
+13386,68106
+13387,48251
+13388,59647
+13389,7048
+13390,50676,32715
+13391,41824
+13392,60099
+13393,23361
+13394,13709
+13395,28463
+13396,40957
+13397,39928,79644
+13398,30828
+13399,37931,11284,10445
+13400,36167
+13401,8089,34184
+13402,8026
+13403,66519
+13404,275
+13405,22552
+13406,73872
+13407,63000
+13408,51487
+13409,38376,2980
+13410,78697
+13411,12146
+13412,72900,1266,10204
+13413,65832
+13414,53594,4896,14647
+13415,48677
+13416,46829
+13417,75184
+13418,60244
+13419,3223,53235
+13420,12738
+13421,30548
+13422,11903,58889
+13423,8999
+13424,26024,71750,81457
+13425,53757
+13426,44783
+13427,32785
+13428,44760
+13429,58595
+13430,18369
+13431,2109
+13432,2229
+13433,80914,3420
+13434,76864
+13435,5212
+13436,47729
+13437,59514
+13438,29386
+13439,4510,67764
+13440,77885
+13441,47275
+13442,45209
+13443,60071
+13444,20722
+13445,72864
+13446,25061,37218,74040
+13447,61959,49674
+13448,41003
+13449,20332
+13450,80092
+13451,76241
+13452,40285
+13453,77846
+13454,55925
+13455,76008
+13456,8533
+13457,12554
+13458,76120
+13459,57545
+13460,38214
+13461,34548
+13462,25575
+13463,62822
+13464,25443
+13465,45373
+13466,49540
+13467,7454,66320
+13468,14787
+13469,54656
+13470,56778,24547
+13471,11046
+13472,58398,80553
+13473,14139
+13474,48431
+13475,36810
+13476,68690,10289
+13477,25298
+13478,51703
+13479,33549
+13480,33008
+13481,4272
+13482,13990
+13483,17326
+13484,38652
+13485,2410
+13486,323
+13487,35351
+13488,44532
+13489,14895
+13490,34343
+13491,58564
+13492,935
+13493,49350
+13494,77065
+13495,15542
+13496,25652,51471
+13497,49629
+13498,25038,64202,4381
+13499,55458
+13500,4127,14308
+13501,57063
+13502,7242
+13503,1002
+13504,77524,36117
+13505,502
+13506,3099,45000
+13507,76210
+13508,63073,8662
+13509,70625
+13510,68329
+13511,78674,41397
+13512,7522
+13513,57058,56902
+13514,39946
+13515,32629
+13516,38822
+13517,71153
+13518,79538
+13519,77913
+13520,6653
+13521,81890
+13522,41193
+13523,49018
+13524,6032,77881
+13525,8047
+13526,54846
+13527,2249
+13528,70159
+13529,60260
+13530,10767
+13531,53381
+13532,63072
+13533,33613
+13534,64266
+13535,27765
+13536,41247
+13537,3710
+13538,40584,62672
+13539,72918
+13540,79481
+13541,6473
+13542,40447
+13543,4765
+13544,5460
+13545,6426
+13546,35965
+13547,18046
+13548,32023
+13549,21217
+13550,57402
+13551,50941
+13552,48744
+13553,53516
+13554,1936
+13555,35466
+13556,58991
+13557,76870,65338,30654
+13558,53486
+13559,57654,25278
+13560,50976,46121
+13561,53992
+13562,38505
+13563,7946
+13564,28539
+13565,57336
+13566,53915
+13567,63036
+13568,18679,45177
+13569,42306
+13570,42171
+13571,67242
+13572,32013
+13573,16390,32114
+13574,67147
+13575,61788
+13576,76116
+13577,27808
+13578,70410,77276
+13579,42517
+13580,31944
+13581,70832
+13582,45424
+13583,68921
+13584,36112
+13585,21290
+13586,62825
+13587,766,6466
+13588,11745,2768
+13589,12257
+13590,30470
+13591,32899
+13592,44359
+13593,11447
+13594,16794
+13595,71582
+13596,3343,21039
+13597,14504
+13598,41217
+13599,6225
+13600,32750
+13601,60695
+13602,70881
+13603,39664
+13604,34343
+13605,80801
+13606,53545,6938
+13607,42605
+13608,10300
+13609,60996
+13610,28422
+13611,18343
+13612,38012,1727
+13613,749,12660
+13614,35448
+13615,42164
+13616,32074
+13617,69782,47772
+13618,8821
+13619,36797
+13620,30365
+13621,38038,1592,20284
+13622,78205,53546
+13623,81598
+13624,71055,59597
+13625,61046
+13626,31367
+13627,19985
+13628,5078
+13629,61506,18226
+13630,58173
+13631,30062
+13632,15983
+13633,30704
+13634,74751
+13635,80685
+13636,29205
+13637,5206
+13638,75988
+13639,52698,60690,37728
+13640,59398
+13641,10369
+13642,72584
+13643,74432
+13644,45566
+13645,21254
+13646,34060,72604
+13647,12181
+13648,65511,67021
+13649,47345,10719
+13650,12649
+13651,6985
+13652,64214
+13653,68960,70938
+13654,58257
+13655,44834,53401,77083
+13656,15538
+13657,64173
+13658,78226,24807,25940
+13659,61995
+13660,39270
+13661,9664,71191
+13662,74602
+13663,39960
+13664,197
+13665,24469,1970
+13666,7107
+13667,27197
+13668,55862
+13669,7176
+13670,19765,65056
+13671,24419
+13672,17617
+13673,44042
+13674,27957
+13675,48856
+13676,51362
+13677,40339,1
+13678,65243
+13679,36502
+13680,77140
+13681,29492
+13682,18900
+13683,34502,35441
+13684,3874
+13685,70759
+13686,43888,8696
+13687,61653
+13688,52491
+13689,52941
+13690,13755
+13691,12131,48170,27245
+13692,8114
+13693,48307,29088
+13694,60674
+13695,36476
+13696,67155
+13697,65827
+13698,216
+13699,47768
+13700,77008
+13701,80039
+13702,53992
+13703,43233
+13704,17518,46945,39556
+13705,71654,35102
+13706,67578,66882
+13707,765
+13708,33798
+13709,16809
+13710,72350
+13711,40764
+13712,186,15188
+13713,8273,16884
+13714,46902
+13715,22314
+13716,42217
+13717,4096,15148
+13718,72176
+13719,69212
+13720,5943
+13721,65419,9435
+13722,24484,71383
+13723,16030
+13724,28431
+13725,76131
+13726,23266,79616
+13727,31664
+13728,34363
+13729,41482
+13730,4823
+13731,53478
+13732,76500
+13733,28317
+13734,47361
+13735,65538
+13736,28498
+13737,34053
+13738,63125
+13739,59652
+13740,59068,67450
+13741,80917
+13742,37034
+13743,11271
+13744,3210
+13745,51225,39195,34596
+13746,77375
+13747,23893,18556,52868
+13748,7322
+13749,8467
+13750,30623
+13751,16299
+13752,82080,63441
+13753,20181
+13754,10715,14732
+13755,30413
+13756,65217
+13757,70648
+13758,60045
+13759,3971
+13760,32401
+13761,38225,46350
+13762,18727
+13763,11210
+13764,48360
+13765,40506
+13766,63855
+13767,9148
+13768,11722
+13769,33456,32373,67825
+13770,10473,64867
+13771,77065,18229
+13772,26393
+13773,77743
+13774,70882
+13775,10685
+13776,15459
+13777,47013
+13778,18697
+13779,27256
+13780,39540
+13781,58301
+13782,35025
+13783,30532
+13784,43649,28858
+13785,60613
+13786,42140
+13787,30302
+13788,14803
+13789,77211,19317,61981
+13790,70608
+13791,48075,78611
+13792,28091,29667
+13793,10386
+13794,2787
+13795,30975
+13796,44506
+13797,13604
+13798,30757,22087
+13799,70963,50744
+13800,50194
+13801,32980
+13802,13999,60324
+13803,58346
+13804,2595
+13805,23220
+13806,61333
+13807,40578
+13808,50138
+13809,23719
+13810,74805,34801
+13811,8729
+13812,24954
+13813,7255
+13814,74619
+13815,9573
+13816,66240
+13817,42771
+13818,30260
+13819,77712
+13820,62609
+13821,70930
+13822,24869
+13823,4579
+13824,73241
+13825,59235
+13826,40779
+13827,53900
+13828,67201
+13829,20911
+13830,24347
+13831,66538
+13832,62783
+13833,7838,11487
+13834,63977
+13835,36652
+13836,68428,19256,42764,79365
+13837,50790
+13838,27766
+13839,13050
+13840,25491
+13841,54097
+13842,1544
+13843,21300
+13844,13114
+13845,58580
+13846,55619
+13847,62900
+13848,69307
+13849,69706,63866,49674,50061
+13850,77809
+13851,65589
+13852,68554
+13853,32102,34023
+13854,13589
+13855,36793,4093
+13856,58030,51731,53331,1842,30488
+13857,44037
+13858,9860
+13859,16873
+13860,68727
+13861,77546
+13862,21878,7087
+13863,41227
+13864,2803
+13865,76825
+13866,25136,8721,36203
+13867,21522
+13868,36133
+13869,57785,77477
+13870,78019,41701
+13871,35572
+13872,26726
+13873,19749
+13874,21037
+13875,22512
+13876,78446
+13877,77452
+13878,13133
+13879,72040
+13880,31600
+13881,59855
+13882,7176
+13883,13413
+13884,59339
+13885,2343,21492
+13886,2072
+13887,30304
+13888,26421
+13889,65770
+13890,66404
+13891,12222
+13892,66741,77030
+13893,6009,14213
+13894,16998
+13895,72301
+13896,38852
+13897,52318
+13898,37893
+13899,1237
+13900,81786
+13901,16726
+13902,33458
+13903,59397
+13904,66737
+13905,59
+13906,44338
+13907,22674
+13908,19326
+13909,17379
+13910,17061,39186,34320,23292
+13911,70650
+13912,19053
+13913,35405
+13914,10204
+13915,50561,79069
+13916,8153,71516
+13917,38231
+13918,79831
+13919,69633,5511
+13920,80072
+13921,7068
+13922,77641
+13923,6942
+13924,1777
+13925,50111,78732
+13926,56274
+13927,39566
+13928,37848
+13929,47647
+13930,74156
+13931,50515
+13932,7050
+13933,30156
+13934,44577
+13935,27038
+13936,51248,53779
+13937,30930
+13938,50446
+13939,21836
+13940,45910
+13941,26440
+13942,8639
+13943,10106
+13944,1617
+13945,5664
+13946,61425
+13947,56403,77481,55386
+13948,81164
+13949,38822
+13950,58931
+13951,68680
+13952,64343
+13953,43026,79273
+13954,28049,52959
+13955,28249
+13956,20518
+13957,45544,13610
+13958,66653,74142
+13959,81927
+13960,54836
+13961,38052
+13962,25868
+13963,44172,9104
+13964,38106
+13965,77656
+13966,31361
+13967,81726
+13968,57021
+13969,4790
+13970,2553
+13971,78729
+13972,48126,25707
+13973,60657
+13974,22933,22407
+13975,25251
+13976,22651
+13977,67579
+13978,8710
+13979,28402
+13980,67110,75081
+13981,1584,77824
+13982,48326
+13983,61845
+13984,70263
+13985,37601
+13986,61
+13987,25609,7383
+13988,65192
+13989,79785,31595
+13990,45406
+13991,10698
+13992,40511
+13993,62362
+13994,9097
+13995,14717
+13996,3459
+13997,48823
+13998,59965
+13999,4253
+14000,22128
+14001,54323
+14002,29452,20650
+14003,73974
+14004,71838
+14005,994
+14006,46770
+14007,9193
+14008,2176
+14009,45982
+14010,68420
+14011,19268
+14012,67472
+14013,2066
+14014,46878
+14015,16015,9015
+14016,2852
+14017,12789
+14018,39822,39252
+14019,44484
+14020,25297,64685
+14021,73801
+14022,951
+14023,47166
+14024,57051
+14025,72936
+14026,25280
+14027,66470
+14028,39492
+14029,24070
+14030,36038
+14031,3319
+14032,238
+14033,30038,70682
+14034,57961
+14035,59072
+14036,34265
+14037,12550,61262,16485,2253
+14038,80564
+14039,69290
+14040,44029,73362
+14041,72045
+14042,8039
+14043,41016
+14044,32468
+14045,72089
+14046,50969
+14047,22948,22765
+14048,55942
+14049,4117,927,5448
+14050,4635
+14051,52039
+14052,73510
+14053,29698
+14054,35288
+14055,80670
+14056,57435
+14057,45521
+14058,41573
+14059,74742
+14060,24878
+14061,56978,81637,47363
+14062,5496
+14063,10439
+14064,10399
+14065,458
+14066,25282
+14067,36394
+14068,25502
+14069,43179
+14070,28650
+14071,74493
+14072,23904
+14073,4825
+14074,12319
+14075,12242
+14076,65670
+14077,12208
+14078,64994
+14079,49317,66841
+14080,57859
+14081,52250,14492
+14082,78677
+14083,47223
+14084,50523
+14085,71960
+14086,52407
+14087,59425
+14088,18518
+14089,57994,48272,15399
+14090,1546
+14091,75159,6208
+14092,25075
+14093,70197,21657,70041
+14094,60964,6211
+14095,49953
+14096,3336
+14097,62034
+14098,58537
+14099,27047,70976
+14100,8713,61368
+14101,7415
+14102,62568
+14103,9457
+14104,13146
+14105,74579
+14106,29151
+14107,43171
+14108,15276
+14109,61703
+14110,77128
+14111,42572
+14112,81384
+14113,76999
+14114,34689
+14115,27817
+14116,6706
+14117,45913
+14118,13244
+14119,6801
+14120,66789
+14121,63872
+14122,72472,18427
+14123,73748
+14124,34953,25459
+14125,72701
+14126,17278
+14127,49375,71666
+14128,79911
+14129,12562
+14130,21344
+14131,32139
+14132,58975
+14133,73365
+14134,51883
+14135,25876,73643
+14136,65014
+14137,19408
+14138,66927
+14139,20535
+14140,43567
+14141,23630
+14142,57222
+14143,5443
+14144,21079
+14145,610
+14146,40330
+14147,67030
+14148,10047
+14149,53860
+14150,26596
+14151,78875
+14152,26832
+14153,624
+14154,17681
+14155,53885,75732
+14156,8539
+14157,55140,23301
+14158,31668
+14159,18563
+14160,26470
+14161,68680
+14162,56229
+14163,69981,58728
+14164,37831
+14165,11637
+14166,51313
+14167,26572,76958
+14168,29496
+14169,61377
+14170,40527
+14171,11425
+14172,30818
+14173,57919
+14174,55084
+14175,44763
+14176,51580
+14177,39489
+14178,68533
+14179,43051
+14180,39090
+14181,40739
+14182,19874
+14183,26703
+14184,77149
+14185,32591
+14186,4706,6375
+14187,21787
+14188,15666,7929
+14189,69078
+14190,13848
+14191,4899
+14192,20882
+14193,63776
+14194,61573
+14195,26893
+14196,66984
+14197,61791
+14198,38808
+14199,11619,34202
+14200,56317
+14201,12215
+14202,65501
+14203,63092
+14204,55406
+14205,50196
+14206,8593,8071
+14207,58442
+14208,16858
+14209,19536
+14210,44211
+14211,56137
+14212,22448
+14213,15385
+14214,40666
+14215,13463
+14216,33138,63111
+14217,77636
+14218,14745
+14219,40630,37816
+14220,78494,51540
+14221,26055
+14222,6582
+14223,24223
+14224,18034
+14225,62103
+14226,9890
+14227,75462
+14228,50750
+14229,59960,24847
+14230,40951
+14231,64171,49696
+14232,61790
+14233,27335
+14234,43551
+14235,72067,63573
+14236,48953
+14237,35676
+14238,41806
+14239,30340
+14240,58341
+14241,60147,48104
+14242,27366
+14243,21722
+14244,18220
+14245,20243,65041
+14246,45643
+14247,62703
+14248,81905,32754
+14249,11762
+14250,6806
+14251,28707
+14252,51815,81136,48383
+14253,51077
+14254,81244
+14255,26980
+14256,9847
+14257,25012
+14258,80505
+14259,33691
+14260,8437
+14261,62289
+14262,25661
+14263,57840
+14264,6963,69154
+14265,4039
+14266,45854
+14267,17684
+14268,3
+14269,75229,75965,77949
+14270,44167,64166,21516,79182
+14271,76781
+14272,41282
+14273,1778
+14274,46880
+14275,46830
+14276,17469,11378
+14277,12041
+14278,28880,430
+14279,1338,41436
+14280,7525
+14281,79047
+14282,23292
+14283,24631
+14284,14496,80443
+14285,42975
+14286,12595
+14287,62822
+14288,47198
+14289,46897
+14290,79221
+14291,53145
+14292,80981
+14293,16638
+14294,32764,42754
+14295,75462,4533
+14296,63167
+14297,68601,5337
+14298,6138,26379
+14299,62189
+14300,34429
+14301,12341
+14302,29007
+14303,7740
+14304,57785,38249
+14305,32599
+14306,11817,62259
+14307,79771,78765
+14308,37080
+14309,39753,45656
+14310,2398
+14311,2951,68307
+14312,63687
+14313,19628
+14314,57455
+14315,81101
+14316,68629
+14317,24546,42411
+14318,75931
+14319,15031
+14320,6439,19733
+14321,45235
+14322,81543
+14323,47245
+14324,41334
+14325,53118,53480,5237
+14326,69981
+14327,61077
+14328,7069
+14329,65124
+14330,20298
+14331,44980,19334
+14332,26801
+14333,47682
+14334,54668
+14335,28515
+14336,51417
+14337,49183
+14338,57388
+14339,2141
+14340,43891,68382
+14341,19987
+14342,34426
+14343,77285
+14344,35308,2499
+14345,78069
+14346,72262
+14347,3849
+14348,68422,59367
+14349,5303
+14350,11457
+14351,80165
+14352,59376
+14353,80295
+14354,71560,13326
+14355,42102
+14356,5719,885
+14357,53457
+14358,75786
+14359,32325,57410
+14360,28509
+14361,23080
+14362,60210
+14363,19716
+14364,32606
+14365,37447,45389
+14366,8076
+14367,51773,44376
+14368,53550
+14369,16292
+14370,49660
+14371,39394,5764
+14372,48840,26963
+14373,65859
+14374,1235
+14375,22600
+14376,35405,77749
+14377,65824,24286
+14378,56808,54347
+14379,61485
+14380,20603
+14381,44629
+14382,30965
+14383,73469
+14384,52113
+14385,75294
+14386,864
+14387,44237
+14388,10136,36487
+14389,22844
+14390,61444
+14391,35099
+14392,34602
+14393,33495,75440
+14394,64902
+14395,49721
+14396,17964
+14397,32868
+14398,36
+14399,30122
+14400,78939
+14401,5747
+14402,61770,60108
+14403,3959,9007
+14404,35121,23923
+14405,9225
+14406,57841,20700,13488
+14407,33202
+14408,28917
+14409,8346
+14410,29152
+14411,18337
+14412,63557
+14413,20604,15775
+14414,22692
+14415,15832,55540
+14416,68684
+14417,41824
+14418,58157,51803
+14419,70879
+14420,3872
+14421,35846
+14422,53554
+14423,42899
+14424,24857
+14425,71659
+14426,81485
+14427,50906,67245
+14428,4636
+14429,47553
+14430,57392
+14431,77594
+14432,66126
+14433,71169,4397
+14434,60772
+14435,10956
+14436,51546
+14437,65608
+14438,78645
+14439,68383
+14440,35951
+14441,80500
+14442,618,2184
+14443,7061,47456
+14444,74711
+14445,46050
+14446,32311
+14447,2514
+14448,18146,70407
+14449,36112
+14450,21282
+14451,3567
+14452,74612
+14453,41928
+14454,16215
+14455,76193
+14456,28707,68078
+14457,13107
+14458,77453
+14459,77425
+14460,41036
+14461,6094
+14462,61182
+14463,1541,57015
+14464,50315
+14465,29336,54974
+14466,54452
+14467,46104
+14468,69456
+14469,16787
+14470,11806
+14471,27646
+14472,49106
+14473,58461
+14474,5559
+14475,3777
+14476,71820
+14477,31789,20584
+14478,44078
+14479,31930
+14480,66691
+14481,45911,76343
+14482,37971,66354
+14483,66295
+14484,76235
+14485,43177
+14486,56863
+14487,39909
+14488,60688
+14489,54927
+14490,31287,2032
+14491,40739
+14492,11693
+14493,11882
+14494,14458
+14495,81845
+14496,33479
+14497,38882,78444
+14498,30068
+14499,51929,47934
+14500,24798,60554
+14501,10896
+14502,55169
+14503,34643
+14504,59471
+14505,39540
+14506,1407,8821
+14507,71801
+14508,64038
+14509,22011
+14510,46472
+14511,30196
+14512,13063,36625
+14513,65134
+14514,44789
+14515,1913
+14516,71466
+14517,61799
+14518,1319
+14519,25891,78776
+14520,67886
+14521,23244
+14522,12453
+14523,23526
+14524,48540
+14525,15721,30349
+14526,9148
+14527,44387
+14528,76363
+14529,13061
+14530,51746,70069
+14531,31884
+14532,74680
+14533,16316
+14534,4812,75995
+14535,53787,18289
+14536,36675
+14537,10438
+14538,57710
+14539,70431
+14540,43774
+14541,36834
+14542,11427
+14543,26584
+14544,71896
+14545,36563
+14546,2257
+14547,17986
+14548,51930
+14549,13944
+14550,53962
+14551,66031
+14552,36332
+14553,60432
+14554,26991,26419,9245
+14555,8891
+14556,78615,51409
+14557,17068
+14558,65434,5098
+14559,40521
+14560,70437
+14561,67745,29106
+14562,58168
+14563,32463,47216
+14564,51904
+14565,54585
+14566,56583
+14567,56763
+14568,1286
+14569,72637
+14570,39363,46832
+14571,28434,4206
+14572,77199
+14573,57568
+14574,78165
+14575,22139
+14576,27495
+14577,48416,73808
+14578,68505
+14579,28968
+14580,60831
+14581,52167
+14582,48820
+14583,38378,48021
+14584,11028
+14585,18314,28259
+14586,36705
+14587,32011
+14588,77570,11523
+14589,52884
+14590,29080
+14591,22828
+14592,8645
+14593,81214
+14594,52776
+14595,50062
+14596,53805,40717
+14597,11523,53759
+14598,10700
+14599,80390
+14600,3439
+14601,50053
+14602,43178
+14603,72765,49014
+14604,64345,17575
+14605,59270
+14606,1562
+14607,58872
+14608,19759
+14609,6297
+14610,55901
+14611,60169
+14612,39776
+14613,55492
+14614,35557
+14615,67127,3277
+14616,60296,13699
+14617,15091
+14618,20235,46684
+14619,53146,47605
+14620,12128
+14621,31789
+14622,76664
+14623,15295
+14624,42839
+14625,37402
+14626,73131
+14627,3652
+14628,16566
+14629,65066
+14630,51395
+14631,48823
+14632,28236
+14633,63267
+14634,26928
+14635,64792
+14636,74023
+14637,64276
+14638,27964
+14639,17338
+14640,74588
+14641,25991
+14642,7694
+14643,72427
+14644,59560
+14645,56148
+14646,79485
+14647,75474
+14648,13626
+14649,26842
+14650,39920
+14651,69296
+14652,12769
+14653,31152
+14654,35836
+14655,74650,56246
+14656,38184
+14657,55306
+14658,79314,42419
+14659,12527,16830,67156
+14660,55233
+14661,12243
+14662,5177
+14663,22956
+14664,80440
+14665,53307
+14666,7054
+14667,70519
+14668,50925
+14669,55621
+14670,59250
+14671,68834
+14672,5468
+14673,64964
+14674,1515
+14675,4583
+14676,63406
+14677,81138
+14678,47576
+14679,74486
+14680,49396
+14681,68207
+14682,40999,40554
+14683,71570
+14684,12348
+14685,31165
+14686,62495
+14687,76803
+14688,49770
+14689,79920,64424,31012
+14690,63768
+14691,46824
+14692,60925
+14693,37903
+14694,75746
+14695,12423,81283,21997
+14696,44338
+14697,42388
+14698,75261
+14699,68723
+14700,37775
+14701,79797
+14702,46225
+14703,33285
+14704,34216
+14705,48098
+14706,39202
+14707,9033,41990,77105
+14708,7354
+14709,70361
+14710,24451,55765
+14711,61216,30804
+14712,79413
+14713,51659
+14714,71726,11701
+14715,24476
+14716,48550
+14717,43332
+14718,60392
+14719,6927
+14720,26524,68921
+14721,6914
+14722,15817,76428
+14723,72663,64565
+14724,16861
+14725,45530
+14726,51261
+14727,48900
+14728,46349
+14729,62354
+14730,33403,69207,8817,76254
+14731,25116,54931,40504
+14732,54618
+14733,34318,45563
+14734,5662
+14735,32213
+14736,40564
+14737,75409
+14738,47084
+14739,67346,73628
+14740,3922,13926
+14741,74069,30802
+14742,49140
+14743,3167
+14744,10925
+14745,37499
+14746,59385,71586
+14747,8630
+14748,59370,13753
+14749,10581,32599
+14750,8080
+14751,78267
+14752,74423
+14753,26367
+14754,69904
+14755,2237
+14756,70197
+14757,24717
+14758,26382
+14759,11116
+14760,59978
+14761,32601
+14762,70960
+14763,37718
+14764,67127
+14765,63318
+14766,15058
+14767,19539
+14768,2344
+14769,50258
+14770,46751
+14771,69340
+14772,26660
+14773,10323,40879
+14774,52700
+14775,37623
+14776,8577,17871
+14777,41290
+14778,23870
+14779,30258
+14780,69914
+14781,76638
+14782,46854
+14783,1055
+14784,32982
+14785,33615
+14786,14455,46911
+14787,17381
+14788,21248,41509
+14789,33538
+14790,56734
+14791,66120
+14792,4494
+14793,53787
+14794,9198
+14795,43927
+14796,4662
+14797,49632,16465
+14798,81888
+14799,51461,27987
+14800,9721
+14801,54361
+14802,19230
+14803,37786
+14804,1975
+14805,57007
+14806,20737
+14807,43843
+14808,37114
+14809,80981
+14810,28200
+14811,36061
+14812,25932
+14813,42394
+14814,58653
+14815,23390
+14816,47957
+14817,37007
+14818,77428
+14819,68791
+14820,189,8690
+14821,53628,57274
+14822,68229
+14823,46434,32903
+14824,22882
+14825,52781
+14826,6271
+14827,36375,2009,627,63766
+14828,32851
+14829,38076
+14830,27641
+14831,78910
+14832,8995
+14833,15933
+14834,71353
+14835,17602
+14836,67207
+14837,25593
+14838,40316,39602
+14839,11313
+14840,42171
+14841,38267
+14842,11972
+14843,13699
+14844,80072
+14845,23208
+14846,73793
+14847,38379,79420
+14848,50472
+14849,63411,43155
+14850,44221,8232
+14851,9704
+14852,51525
+14853,24257
+14854,39223
+14855,16968
+14856,30436
+14857,56758
+14858,81908
+14859,60594,37632
+14860,54195
+14861,9330,69415
+14862,1009
+14863,36760,38
+14864,74271
+14865,65674
+14866,17724
+14867,10678
+14868,5892
+14869,52317
+14870,56292
+14871,25347
+14872,66319
+14873,54108
+14874,32232
+14875,17026
+14876,8564
+14877,71769,46577
+14878,45281
+14879,67839
+14880,4997
+14881,7970,1119
+14882,44193
+14883,32337,80600
+14884,70658
+14885,47551
+14886,109
+14887,70768,72974
+14888,34024
+14889,41956,70026
+14890,73272
+14891,54420,38876,55930
+14892,22006,73940
+14893,17722
+14894,62109
+14895,29980
+14896,18966
+14897,31923
+14898,81789
+14899,76176
+14900,57223
+14901,75009
+14902,15230
+14903,4925
+14904,25182
+14905,74048
+14906,80784
+14907,31328
+14908,31649,32708
+14909,74930
+14910,14039
+14911,13785
+14912,30444
+14913,32311
+14914,18032
+14915,35425
+14916,6740
+14917,26083
+14918,31440
+14919,25118,14626
+14920,15461
+14921,61917
+14922,80268,24251
+14923,56151
+14924,25655,67755
+14925,12450,34672,80191,5088
+14926,49344,56942
+14927,53353
+14928,67230,31909
+14929,54283
+14930,14918
+14931,50941,24298
+14932,34284
+14933,37267
+14934,43628,24588
+14935,11056
+14936,72765,52866,68568
+14937,79222
+14938,53524,65706
+14939,57920
+14940,66914
+14941,70390,35478
+14942,27750
+14943,51959
+14944,53475,47803
+14945,33382
+14946,9017
+14947,74072
+14948,18490
+14949,10852
+14950,62415
+14951,22286
+14952,39866
+14953,24896
+14954,77593
+14955,62867
+14956,43655
+14957,11059
+14958,41374,5194,74738
+14959,54181
+14960,11219
+14961,48060
+14962,46542
+14963,74287
+14964,79787
+14965,79347
+14966,72967
+14967,8355
+14968,64420
+14969,72342
+14970,21892
+14971,37768,37048
+14972,17572
+14973,71162
+14974,30633
+14975,9731
+14976,63177,46902
+14977,69292
+14978,78574
+14979,48662
+14980,68390
+14981,59665
+14982,33425
+14983,33444
+14984,2566
+14985,61754,70049
+14986,59812
+14987,61376
+14988,12331
+14989,58286,51017
+14990,28223
+14991,73118
+14992,61034
+14993,59181
+14994,2103
+14995,75563,7394
+14996,40647,33464
+14997,2096
+14998,19177
+14999,20882
+15000,51300
+15001,11497
+15002,80011,21766
+15003,74236
+15004,42585
+15005,70647
+15006,33753
+15007,61578
+15008,2025
+15009,33276
+15010,31226,24993
+15011,30867
+15012,54813
+15013,81085,80308
+15014,34250
+15015,6094
+15016,58117
+15017,32975
+15018,28387
+15019,11882
+15020,45265
+15021,459
+15022,69162
+15023,34412
+15024,66839,70251
+15025,35094
+15026,11903,9255
+15027,6565
+15028,51455
+15029,48489
+15030,68715
+15031,51612
+15032,29163,63092
+15033,51059,459
+15034,14799
+15035,49383
+15036,48767
+15037,46487,28848
+15038,50921
+15039,36892
+15040,71384
+15041,74905
+15042,35237
+15043,36563
+15044,42627
+15045,49176
+15046,46121
+15047,35796
+15048,25870
+15049,44887
+15050,33785
+15051,73041
+15052,51909
+15053,65624
+15054,6250
+15055,33361,5836
+15056,12493,2200
+15057,55300,38509
+15058,46072
+15059,20597
+15060,33322
+15061,48683
+15062,53066,33036
+15063,39388
+15064,5061
+15065,77219
+15066,57104
+15067,33857
+15068,20065
+15069,70068,62485,38422
+15070,48835
+15071,6631
+15072,18325,41481
+15073,9864
+15074,28027,49977
+15075,67167,853
+15076,71322
+15077,71019
+15078,43256
+15079,9077,81976
+15080,38363
+15081,49029
+15082,49730
+15083,42857
+15084,70741
+15085,24440
+15086,28821,82094
+15087,32609
+15088,78847
+15089,73468
+15090,76810
+15091,22996
+15092,17624
+15093,19233,68577
+15094,27106,41225
+15095,2095,966
+15096,41429
+15097,41763
+15098,17492
+15099,2846
+15100,25326,3914
+15101,39961
+15102,39546
+15103,12166
+15104,81991
+15105,23921
+15106,47522,68823
+15107,27781,11089
+15108,3964
+15109,27213
+15110,31499
+15111,48704
+15112,53844
+15113,59499
+15114,59276
+15115,48306
+15116,65946
+15117,756
+15118,23579
+15119,43837
+15120,53186
+15121,66444
+15122,12355
+15123,52895
+15124,23177
+15125,35715
+15126,24523
+15127,60428
+15128,2060,49137
+15129,10942
+15130,34229
+15131,41644,11393
+15132,45535
+15133,76015,8614
+15134,33795
+15135,67555
+15136,7199
+15137,28380
+15138,61560,75100
+15139,22702,77374
+15140,20747
+15141,35397
+15142,68567,71979,81870
+15143,3752
+15144,51619
+15145,73540
+15146,77938
+15147,67611,11496
+15148,80520
+15149,44904
+15150,16988
+15151,13490
+15152,42213
+15153,25602
+15154,43598
+15155,7177
+15156,69880
+15157,15457
+15158,27142,47255
+15159,70506
+15160,26055
+15161,57242
+15162,41445
+15163,18868,48977,47117
+15164,12973
+15165,373
+15166,3324
+15167,12616
+15168,40739
+15169,12971
+15170,676
+15171,57653
+15172,67827
+15173,46438
+15174,64374
+15175,12571
+15176,67988
+15177,36628,57310,7865
+15178,64957
+15179,46694
+15180,24066,22194
+15181,56062
+15182,5460,80673
+15183,49595
+15184,52009
+15185,73415
+15186,73349
+15187,57728
+15188,12171
+15189,76661
+15190,23818,32657
+15191,20305
+15192,35008
+15193,40753
+15194,49232
+15195,29310
+15196,35988
+15197,10974,21903
+15198,43631
+15199,47657
+15200,1644
+15201,56555
+15202,57652
+15203,71724
+15204,7635
+15205,26167,40213
+15206,9783,30146
+15207,790
+15208,21878
+15209,61760,52053
+15210,79755,50182
+15211,71467
+15212,14679
+15213,48564
+15214,23282
+15215,48503
+15216,65380
+15217,18151
+15218,61746
+15219,17381
+15220,45767,50949
+15221,33081
+15222,13243
+15223,8376
+15224,48794
+15225,49235
+15226,5413
+15227,61835
+15228,11405
+15229,49271
+15230,64300
+15231,35538
+15232,68323,77873,11805
+15233,67886
+15234,3335
+15235,34452
+15236,58337
+15237,20299
+15238,47613
+15239,49946
+15240,20382
+15241,16722,19455
+15242,54376
+15243,29239
+15244,47308,53034
+15245,36980
+15246,15443
+15247,11386
+15248,47241
+15249,22861,26362
+15250,5796
+15251,14185
+15252,5865,47799
+15253,73482
+15254,6640
+15255,35142
+15256,26706,46998
+15257,60937
+15258,73642
+15259,49417
+15260,44547
+15261,67676
+15262,22165
+15263,12898,2247
+15264,60977
+15265,63753,13459
+15266,47575
+15267,67443
+15268,5969
+15269,5319
+15270,22903
+15271,44815
+15272,25282
+15273,28279
+15274,4812
+15275,32192
+15276,19925
+15277,20967
+15278,28990
+15279,29610
+15280,78012
+15281,39850,58544
+15282,6239
+15283,47755
+15284,11462
+15285,3647,70689
+15286,16828
+15287,9353
+15288,13388,30070
+15289,7461
+15290,75953
+15291,6959,49813,62430
+15292,78267
+15293,46832
+15294,32631
+15295,72496
+15296,2504
+15297,2221
+15298,22971
+15299,53292
+15300,43708,34204
+15301,51667
+15302,23182,65865
+15303,19700
+15304,38868
+15305,65887
+15306,73970
+15307,81228
+15308,24936
+15309,5653
+15310,24
+15311,33105
+15312,36163,72088
+15313,18694
+15314,60031,39708
+15315,23456
+15316,772
+15317,21685
+15318,3675
+15319,70299
+15320,13988
+15321,6743
+15322,60246,61205,42762
+15323,29909
+15324,5843
+15325,38641
+15326,41818
+15327,77422
+15328,50901
+15329,9563,16716
+15330,10993
+15331,56264
+15332,71068
+15333,17606
+15334,76348
+15335,32313
+15336,43929
+15337,15929
+15338,40511
+15339,24424
+15340,34567
+15341,78788
+15342,6856
+15343,2753
+15344,42810,73976
+15345,9656,70489
+15346,50885
+15347,18637
+15348,20993,50095
+15349,8782
+15350,25098,45692
+15351,79977,8278
+15352,54927
+15353,1320
+15354,27586,67604
+15355,65130,18219,46575
+15356,75524
+15357,9868
+15358,45951
+15359,63329
+15360,24293,37824
+15361,60231
+15362,81512
+15363,5389
+15364,57660,49773
+15365,73724
+15366,31001
+15367,58875
+15368,48388,37932
+15369,37295
+15370,17467
+15371,52056
+15372,41908,7806
+15373,36330
+15374,42241
+15375,28349
+15376,68712,13126
+15377,80808
+15378,59155
+15379,21481,45866
+15380,891
+15381,23248
+15382,58283
+15383,32585
+15384,34132
+15385,58369
+15386,54725
+15387,53002
+15388,9148,16306
+15389,62326
+15390,78472
+15391,26028
+15392,4937
+15393,73289
+15394,75533,45900,42543
+15395,21820
+15396,24782
+15397,79029
+15398,38822
+15399,56511
+15400,3067,76821
+15401,17073
+15402,21391
+15403,63949
+15404,29383
+15405,10017,39927
+15406,49574
+15407,64891
+15408,8061
+15409,59071
+15410,2157
+15411,77286
+15412,52141,80676
+15413,69806
+15414,2779
+15415,44237
+15416,7191
+15417,33785,46031
+15418,62562,67255
+15419,9111,44329
+15420,29060
+15421,5045
+15422,67352
+15423,3139
+15424,59231
+15425,15600,29633
+15426,31160
+15427,21858
+15428,9225,63925
+15429,40650
+15430,67609,14312
+15431,12752
+15432,64108,25536
+15433,33984
+15434,52173
+15435,43183
+15436,28779
+15437,44898,23419
+15438,42408
+15439,62713
+15440,34428
+15441,68360
+15442,695
+15443,21885
+15444,73775,57777
+15445,1383,16862
+15446,48413,10136,68636
+15447,70515
+15448,53410,33207
+15449,21801
+15450,70799
+15451,67125
+15452,30552
+15453,66037,26258
+15454,49517
+15455,2824
+15456,10440
+15457,62092
+15458,59372
+15459,19585
+15460,45599
+15461,3779
+15462,45931
+15463,12056
+15464,47812
+15465,25132
+15466,36372
+15467,24253,15258
+15468,33045
+15469,15172
+15470,42506
+15471,73551
+15472,41665
+15473,64021,69096
+15474,49734
+15475,7747
+15476,53574
+15477,5174
+15478,593
+15479,48876
+15480,37369
+15481,80535
+15482,12830
+15483,63988
+15484,43975
+15485,56726,76272
+15486,31266
+15487,668
+15488,10886
+15489,52318
+15490,2247
+15491,65844
+15492,14287,14763
+15493,77169
+15494,9327
+15495,63868,72502
+15496,74522
+15497,55840
+15498,31173,64487
+15499,7538
+15500,57353
+15501,59549
+15502,10195
+15503,77300
+15504,25492,75458
+15505,77524
+15506,46201
+15507,56484
+15508,24855
+15509,38593
+15510,8013
+15511,75009
+15512,61199
+15513,41871
+15514,14923
+15515,33456
+15516,35349
+15517,58168
+15518,50246,31978
+15519,58840
+15520,67079
+15521,517,24948
+15522,13995,50380
+15523,67101
+15524,12530
+15525,8762,71633
+15526,10104,32348
+15527,44528
+15528,20117,59050
+15529,37948,20767
+15530,8580
+15531,67587
+15532,13511
+15533,50471
+15534,35089
+15535,75023
+15536,67209
+15537,76079
+15538,52208
+15539,53892
+15540,79440
+15541,57952
+15542,77356
+15543,50418
+15544,22993
+15545,70249,52765
+15546,74963
+15547,26669,28647
+15548,34732
+15549,32259
+15550,58501,7914,30732
+15551,57305
+15552,28374,37637
+15553,21264
+15554,67612,28360
+15555,20585
+15556,5731
+15557,34330
+15558,31707
+15559,55433
+15560,41431,25064
+15561,40669
+15562,11042,31496
+15563,46030
+15564,47555
+15565,27954,28444
+15566,13995
+15567,8740
+15568,25146
+15569,17813
+15570,19959
+15571,34580
+15572,7556
+15573,9570,40704
+15574,865
+15575,82160,908
+15576,81384
+15577,73523
+15578,49410,68398
+15579,15894,45602
+15580,3020
+15581,15335,26656
+15582,19997
+15583,49195
+15584,71044
+15585,22167,36208
+15586,10026
+15587,37228,37021
+15588,50677,18263
+15589,29670,79373
+15590,19956,9433
+15591,69878
+15592,78628
+15593,26041,29737
+15594,23306
+15595,72263
+15596,1155
+15597,53836
+15598,22517
+15599,50554
+15600,8630
+15601,77841
+15602,77759,405
+15603,45648
+15604,24016,73526
+15605,76998,43983
+15606,51602
+15607,25322
+15608,31198
+15609,22960
+15610,47274
+15611,19483
+15612,51739
+15613,26218
+15614,19907
+15615,19699
+15616,62629
+15617,8768
+15618,54577
+15619,75689,25273
+15620,55445
+15621,29135
+15622,52551
+15623,58356,67814
+15624,77791,39209
+15625,78185
+15626,57351
+15627,25799
+15628,67102
+15629,14274,1540
+15630,77699,64307
+15631,56333,78129
+15632,66933,79134
+15633,80385
+15634,38796
+15635,12045
+15636,19115
+15637,53206,9321
+15638,42879
+15639,27495,14198
+15640,43821
+15641,26692,53654
+15642,60478
+15643,35669
+15644,67932,17197
+15645,57320,15732
+15646,646
+15647,46612,42149
+15648,2647
+15649,51625
+15650,70814
+15651,62261
+15652,60680
+15653,46866
+15654,76126
+15655,53309
+15656,77262
+15657,54832
+15658,11544,78803
+15659,79937
+15660,32024
+15661,30410,21679
+15662,15038
+15663,13507
+15664,81073
+15665,50224,6831
+15666,75486
+15667,62223,12338,21696
+15668,73780
+15669,49784
+15670,22743
+15671,38993
+15672,58442,19108
+15673,72085
+15674,38618,7948
+15675,79315,70906,8891
+15676,11694
+15677,73954,75989
+15678,45409,54356
+15679,1541
+15680,58326
+15681,26384,15150
+15682,20318,71823
+15683,61071
+15684,55118
+15685,55074
+15686,50210
+15687,5061
+15688,9643
+15689,19727
+15690,62747,27434
+15691,73270
+15692,50022
+15693,23316,38796
+15694,64587
+15695,70344,3419
+15696,13723
+15697,7455
+15698,28221
+15699,8042
+15700,52265
+15701,81600
+15702,30583
+15703,3894
+15704,8216
+15705,12468,32113
+15706,4405
+15707,66915
+15708,16520
+15709,26415
+15710,42897,1843,65875,70167,62402
+15711,3531
+15712,57807
+15713,76779,22503,75841
+15714,34289
+15715,34899
+15716,64960
+15717,62167
+15718,69372
+15719,69662
+15720,72429
+15721,16292
+15722,224,32193
+15723,34005,45879
+15724,12042
+15725,56921
+15726,27051
+15727,55396
+15728,5909
+15729,48103
+15730,46085
+15731,41327
+15732,23112
+15733,81034
+15734,75090
+15735,37070
+15736,7366
+15737,45883
+15738,2412,48897
+15739,74693
+15740,69716
+15741,24191
+15742,64700
+15743,47762,54127,191
+15744,269
+15745,26421
+15746,71169
+15747,51924
+15748,71382,34103
+15749,44443
+15750,13760,17952
+15751,17027
+15752,80429
+15753,20974
+15754,46154
+15755,19105
+15756,20156,18368
+15757,23419
+15758,45792
+15759,6251,38330
+15760,6351
+15761,30852
+15762,3966
+15763,51840
+15764,6122
+15765,32443,37066
+15766,79871
+15767,48251
+15768,72577
+15769,37509
+15770,40326,69238
+15771,46476
+15772,59979
+15773,31005
+15774,13780
+15775,43395
+15776,59450
+15777,60928
+15778,25374
+15779,5004
+15780,39686
+15781,24467
+15782,53947
+15783,1259
+15784,22728
+15785,55152
+15786,15036
+15787,62439
+15788,15484
+15789,52758
+15790,64536
+15791,28380
+15792,7344
+15793,23382
+15794,77461
+15795,59446
+15796,80328
+15797,25079,77905
+15798,14976,49796
+15799,74398,11291
+15800,72126,78702
+15801,73945
+15802,52172
+15803,47975
+15804,3635
+15805,38971
+15806,69019
+15807,33886
+15808,50365
+15809,44453
+15810,69551
+15811,43200
+15812,39017,58991
+15813,6061
+15814,35705
+15815,26207,25670
+15816,9046,18760
+15817,24666,61560
+15818,65046
+15819,71625
+15820,45839
+15821,56277,69190,51511,37352
+15822,31948
+15823,66259
+15824,8162
+15825,46991
+15826,12447
+15827,17527
+15828,15161
+15829,75722
+15830,22065
+15831,28512
+15832,9420
+15833,542
+15834,15660
+15835,59270,55756
+15836,22274
+15837,58628
+15838,19490
+15839,55222
+15840,12196
+15841,80730
+15842,17577
+15843,19594
+15844,56039
+15845,4183
+15846,36311
+15847,10672
+15848,29593
+15849,39962
+15850,32534
+15851,22510
+15852,42485
+15853,52497
+15854,29517
+15855,59665
+15856,17011
+15857,63657
+15858,40724
+15859,47288
+15860,41998,66662
+15861,1229
+15862,78209
+15863,272
+15864,48154
+15865,71500,67205
+15866,21041
+15867,34065
+15868,35979
+15869,52536
+15870,23805,81384
+15871,21546
+15872,34846,26825
+15873,12374
+15874,7073
+15875,35996,48046
+15876,5974,60870
+15877,12176
+15878,36675
+15879,48612
+15880,21874,51645
+15881,23278
+15882,28024,70451
+15883,17015
+15884,27677
+15885,9653
+15886,10773
+15887,39848
+15888,53230
+15889,26463
+15890,43834
+15891,56216
+15892,35675,28917
+15893,43934
+15894,9871
+15895,30999
+15896,36003
+15897,80365
+15898,65985,66063
+15899,29753
+15900,35858,27451
+15901,56832
+15902,60426
+15903,17086
+15904,41307
+15905,9455
+15906,37841
+15907,58369
+15908,46143
+15909,47550
+15910,46520
+15911,19645,52014
+15912,15183
+15913,43814
+15914,2025
+15915,484,45607
+15916,15365
+15917,25672
+15918,64968
+15919,57598
+15920,60825
+15921,35748,51965
+15922,19919
+15923,23411
+15924,75007
+15925,48477
+15926,26998
+15927,21301
+15928,61492,12128
+15929,79244
+15930,18214
+15931,3738,8023
+15932,37584
+15933,70376
+15934,55281,24777
+15935,36837
+15936,78672
+15937,73487
+15938,67038
+15939,50460
+15940,33260
+15941,72643,18811
+15942,50319
+15943,33983,51583
+15944,18871
+15945,68058
+15946,46027
+15947,79019
+15948,76106
+15949,69145
+15950,53757
+15951,20829,26289
+15952,79300,27306
+15953,50169
+15954,23701
+15955,75977
+15956,10499
+15957,47988
+15958,27111,24389
+15959,49774
+15960,39800
+15961,75863
+15962,14438
+15963,46134
+15964,27553
+15965,52484,52089
+15966,44896
+15967,38370
+15968,66578
+15969,32363
+15970,9823
+15971,75276
+15972,9461
+15973,24459
+15974,75636,54641
+15975,31229
+15976,2645
+15977,36305
+15978,15933,4497
+15979,14593
+15980,12498
+15981,78574
+15982,57795
+15983,25302
+15984,48308
+15985,55230
+15986,65899
+15987,52583
+15988,6784
+15989,8208
+15990,6360
+15991,76710
+15992,61412
+15993,62543
+15994,21377
+15995,70044
+15996,51308
+15997,40766
+15998,29346
+15999,1492
+16000,21212,6983
+16001,79741
+16002,46905
+16003,14609,60669
+16004,20687
+16005,80663,26456
+16006,15450,69093
+16007,2107
+16008,43052
+16009,58771
+16010,76387
+16011,24762,19503
+16012,70101
+16013,15938
+16014,4097
+16015,992
+16016,41571
+16017,26854
+16018,19949
+16019,72093
+16020,21553
+16021,61968
+16022,18079
+16023,69126
+16024,33346
+16025,64319
+16026,20138,27732
+16027,4602,74287
+16028,47169,72688,74715
+16029,21546
+16030,35237
+16031,47011
+16032,64605,70987
+16033,11266
+16034,34922
+16035,41220
+16036,42751
+16037,13726,30959
+16038,46027
+16039,75931
+16040,74077
+16041,70000
+16042,8793
+16043,16406,34033,39400
+16044,9227
+16045,6813,36809
+16046,15810
+16047,61526,4469
+16048,8848
+16049,41655
+16050,23824,64534
+16051,73192,80644
+16052,45137
+16053,67893
+16054,18523,75441
+16055,21710
+16056,57522
+16057,40995
+16058,45931
+16059,49665,22823
+16060,53695
+16061,9533
+16062,76701,10072
+16063,52093
+16064,27216,50060
+16065,64476
+16066,40762
+16067,39183
+16068,116
+16069,8122
+16070,48130
+16071,29402
+16072,28326
+16073,20500
+16074,27450
+16075,47936
+16076,5977
+16077,15945
+16078,58432,56610
+16079,46731
+16080,66128
+16081,34011,71338
+16082,42973
+16083,19783
+16084,41892
+16085,41618
+16086,43522
+16087,16382
+16088,15004
+16089,33920
+16090,61364,59996
+16091,26951
+16092,23842
+16093,80958
+16094,43695,31285
+16095,8997
+16096,71657,77165
+16097,31806
+16098,53776
+16099,36136
+16100,41132
+16101,81015
+16102,35371,25244
+16103,57327
+16104,77868,31481
+16105,8343,54771
+16106,10112,26351,19460
+16107,12001
+16108,31978
+16109,72620
+16110,10513,17570
+16111,81669
+16112,25892
+16113,5209,70469
+16114,32234
+16115,51094
+16116,56970
+16117,2873
+16118,39965
+16119,22880,561
+16120,65806,72579
+16121,33589
+16122,37444
+16123,5026
+16124,54147
+16125,8174,9193
+16126,58474
+16127,1677
+16128,39724
+16129,10968
+16130,13330
+16131,80676,43105
+16132,4024,59502
+16133,20955,47918
+16134,10751
+16135,35063
+16136,77358,1686
+16137,44278,71290
+16138,49642
+16139,76970,26529
+16140,8865
+16141,4919
+16142,1591
+16143,50418
+16144,70363
+16145,9753,26575
+16146,18912
+16147,74062
+16148,12356
+16149,76912
+16150,77522,59501
+16151,24442
+16152,66462,13159
+16153,78264
+16154,15352,30539
+16155,50989
+16156,60168
+16157,37773
+16158,70250
+16159,71799
+16160,42507
+16161,78820
+16162,15359
+16163,11184
+16164,40347
+16165,12144
+16166,35797
+16167,65362
+16168,55091
+16169,60511
+16170,63468
+16171,13100
+16172,50570
+16173,27335
+16174,70936
+16175,60953
+16176,34820,26654
+16177,9286
+16178,1611,80245
+16179,33989
+16180,36525,4875,21064
+16181,17991
+16182,30627
+16183,58982
+16184,55114
+16185,77636
+16186,10962
+16187,30485
+16188,13175,5988
+16189,11340
+16190,75244
+16191,63984
+16192,41098
+16193,44548
+16194,24502
+16195,11731
+16196,32970
+16197,25776
+16198,4292
+16199,63536
+16200,13238
+16201,74733
+16202,64341
+16203,24679,9737,41560
+16204,74530
+16205,3586,60825
+16206,49845
+16207,63337,2665
+16208,46976,5560,35086
+16209,40809
+16210,22486
+16211,60234
+16212,24492
+16213,68085
+16214,20383,37921
+16215,29783,72281
+16216,2671,47728
+16217,81831,28647,69400,77430
+16218,3956
+16219,61040
+16220,55660
+16221,4740
+16222,18787
+16223,28575
+16224,65625
+16225,78448
+16226,3198
+16227,67935,68987
+16228,37833
+16229,46060
+16230,71365
+16231,71883
+16232,32632,31605
+16233,75062
+16234,61335
+16235,24713
+16236,63943
+16237,13072
+16238,68351
+16239,30459,6787
+16240,79814
+16241,57379
+16242,49766
+16243,109
+16244,49350
+16245,75163,46428
+16246,38414,1311
+16247,48646
+16248,27398
+16249,40390
+16250,78199
+16251,66303
+16252,14600,47023
+16253,49703
+16254,71002
+16255,40907
+16256,69682
+16257,26729
+16258,6305
+16259,81077
+16260,64879
+16261,66102
+16262,55545,47360
+16263,76948
+16264,11869
+16265,25251
+16266,69298,5091
+16267,16914,71037,11336,70471
+16268,52262
+16269,52788,73852
+16270,64999
+16271,40968
+16272,32937,17278
+16273,21234,60330
+16274,6019,57631
+16275,24963
+16276,45921
+16277,80055
+16278,27709
+16279,23421,35423
+16280,60689
+16281,78411
+16282,43972
+16283,33459
+16284,18223
+16285,22035
+16286,82101,13835
+16287,3659
+16288,6150
+16289,67262
+16290,3742
+16291,5604
+16292,49067
+16293,37434
+16294,43332
+16295,48323
+16296,75037
+16297,30371
+16298,52243
+16299,39385
+16300,76207
+16301,6500
+16302,47039
+16303,47555,55288
+16304,30227
+16305,69224
+16306,26346
+16307,28788
+16308,41774
+16309,69285
+16310,40611
+16311,44059
+16312,78403
+16313,56992
+16314,63206
+16315,77936
+16316,46134
+16317,2182
+16318,13804,34475
+16319,13036
+16320,8699
+16321,48996
+16322,52928
+16323,32158
+16324,37991
+16325,5555
+16326,26870,41620
+16327,29254,21280
+16328,25946,28838
+16329,74102,11897
+16330,71520
+16331,63785
+16332,14913
+16333,28334
+16334,785
+16335,50240
+16336,47795
+16337,22497,66167
+16338,79214
+16339,35091
+16340,50322,51181
+16341,34206
+16342,28422
+16343,53859
+16344,19249
+16345,40702,17877
+16346,66604
+16347,16627
+16348,79496
+16349,2472,41230,21304
+16350,55756,57407
+16351,30371
+16352,8257
+16353,79792
+16354,73453,55992
+16355,63720
+16356,50904
+16357,30103
+16358,39546
+16359,11629
+16360,22320
+16361,76624
+16362,77305
+16363,75387
+16364,11008
+16365,18336
+16366,55710
+16367,14542
+16368,61941
+16369,73081,52362
+16370,74561,15946
+16371,58365
+16372,39205
+16373,76050,19924
+16374,52613
+16375,72262
+16376,17350
+16377,81328
+16378,19744
+16379,71028
+16380,29899,40893
+16381,56227
+16382,26167
+16383,36956
+16384,45735
+16385,25635,47960
+16386,7555
+16387,67737
+16388,20262
+16389,75137
+16390,69661
+16391,70175
+16392,44576
+16393,58361,42876
+16394,12391,45059
+16395,74754
+16396,3138
+16397,19057
+16398,77796
+16399,33114
+16400,32137
+16401,52765
+16402,27475
+16403,77285
+16404,33415
+16405,16414
+16406,28931
+16407,5424,50013
+16408,46066
+16409,77257
+16410,69974
+16411,76953
+16412,81084
+16413,58934,46182
+16414,60173
+16415,29017,11382
+16416,71964,19448
+16417,46365
+16418,10682
+16419,59959
+16420,57155,79877
+16421,69111
+16422,16436,34323
+16423,78719
+16424,10972,30855,25493
+16425,16507
+16426,54926
+16427,19844
+16428,34260
+16429,75380
+16430,66018
+16431,47318
+16432,60877,21782
+16433,45013,34991
+16434,39632,19417
+16435,32113
+16436,61690,67292
+16437,56041
+16438,27897
+16439,76095,55757
+16440,70483
+16441,19314,51657
+16442,31493,7105
+16443,73592
+16444,38733
+16445,49750
+16446,67856,25448
+16447,69356
+16448,15848
+16449,20405
+16450,37416,6384
+16451,80454
+16452,33665
+16453,1612
+16454,5290
+16455,31278
+16456,24409
+16457,81632
+16458,36452
+16459,78058
+16460,4572,1016,9812
+16461,381
+16462,60915
+16463,46961
+16464,39470
+16465,20190,34516,35526
+16466,45770
+16467,1393
+16468,49027
+16469,60636,9100,16668,37589
+16470,13751
+16471,44816,19910,2236
+16472,23530,44816
+16473,17744
+16474,1768
+16475,63474,19562
+16476,49274
+16477,60748
+16478,75386
+16479,8848
+16480,33005
+16481,720
+16482,40872
+16483,66128
+16484,48555,68666
+16485,59855
+16486,11498
+16487,48987,68408
+16488,8863
+16489,62366,63709
+16490,14381
+16491,66176
+16492,29873
+16493,54183
+16494,73816
+16495,19697
+16496,16562
+16497,14942
+16498,20526
+16499,64180
+16500,3644
+16501,56712
+16502,20553
+16503,79244
+16504,54397
+16505,4187
+16506,27634
+16507,30623
+16508,10901
+16509,72324
+16510,57114
+16511,2219,39958
+16512,24911,6776
+16513,68290
+16514,61656
+16515,10074
+16516,21280,51587
+16517,11722
+16518,1918
+16519,16903
+16520,21175
+16521,7559,772
+16522,36800
+16523,65019
+16524,53975,41987
+16525,63750,80283
+16526,1382
+16527,67182
+16528,58905
+16529,52632
+16530,20663
+16531,8564
+16532,6867
+16533,29339
+16534,42399
+16535,44206
+16536,46394,40285
+16537,69708
+16538,1663,67798
+16539,56342
+16540,42270,46193
+16541,7125
+16542,69817
+16543,60521
+16544,63275
+16545,26200
+16546,11207
+16547,64792
+16548,59209
+16549,7281
+16550,40724
+16551,45104
+16552,78322
+16553,65746
+16554,57178
+16555,55487
+16556,34032
+16557,27181,5793,57060
+16558,65142
+16559,18184,8457
+16560,11499
+16561,73800
+16562,44899
+16563,67709
+16564,34173
+16565,35747
+16566,15742
+16567,23315
+16568,62165
+16569,78096
+16570,410,76079
+16571,45147
+16572,20805
+16573,43050
+16574,6290
+16575,8914
+16576,71953,7917,31905
+16577,16436
+16578,19944
+16579,38743
+16580,75991
+16581,40831
+16582,31687
+16583,55955
+16584,34517
+16585,61969
+16586,12101
+16587,72013
+16588,23932,8468
+16589,70368
+16590,24124
+16591,73947
+16592,5840
+16593,52
+16594,53316
+16595,1660
+16596,4242
+16597,4732
+16598,37264,30524
+16599,7173
+16600,25652
+16601,62651
+16602,51727
+16603,18251
+16604,42391
+16605,64829
+16606,34023
+16607,74775
+16608,14086
+16609,80025
+16610,36531
+16611,32687
+16612,40689
+16613,78045
+16614,53296,48445
+16615,33681
+16616,56630
+16617,42492
+16618,69772,55503
+16619,52149
+16620,56805,60011
+16621,1665
+16622,31571
+16623,65228
+16624,50173
+16625,58693
+16626,6437
+16627,73310,78286
+16628,18659
+16629,9131
+16630,15575
+16631,11694
+16632,78399
+16633,78899
+16634,12289
+16635,16154
+16636,20000
+16637,69217
+16638,17629,67662
+16639,3464
+16640,54209
+16641,54094,78160
+16642,20698
+16643,1963
+16644,38154
+16645,72977
+16646,38959,72608
+16647,23287
+16648,30382
+16649,15644
+16650,45883
+16651,78884
+16652,74747
+16653,66122
+16654,39216
+16655,61272
+16656,74673
+16657,52745
+16658,35145
+16659,81743
+16660,79343
+16661,36993
+16662,47666
+16663,151
+16664,79213
+16665,75431,32172
+16666,44359
+16667,65658
+16668,3776,55829
+16669,42411
+16670,9868,48984
+16671,25326
+16672,6084
+16673,430
+16674,54249
+16675,81810
+16676,63991
+16677,42339
+16678,17659,50014
+16679,17000
+16680,70450
+16681,55222
+16682,27133,19392
+16683,68887
+16684,51971
+16685,29889,16750
+16686,55213,71906
+16687,20675
+16688,62511
+16689,33285
+16690,52614
+16691,4038
+16692,48457
+16693,37587
+16694,16622
+16695,42915
+16696,6787,78520,42016
+16697,77200
+16698,61310
+16699,63121
+16700,52247
+16701,46039,3102
+16702,15859,78295
+16703,64785,32174
+16704,9009
+16705,24753
+16706,62451
+16707,15767
+16708,23858,24451
+16709,7316
+16710,34067
+16711,57350,41286
+16712,9156
+16713,44493
+16714,40831
+16715,20683
+16716,67791
+16717,51468
+16718,8692
+16719,17462
+16720,43089
+16721,11285
+16722,5708
+16723,27747,45096
+16724,29265
+16725,77920
+16726,33639
+16727,27241
+16728,34085
+16729,35680
+16730,2838
+16731,75444
+16732,4453
+16733,26674
+16734,44037
+16735,32506,44769
+16736,70323
+16737,65508,10954
+16738,59924,12156
+16739,13537
+16740,61796,14014
+16741,56667
+16742,41979
+16743,74640,31811
+16744,43493
+16745,33618
+16746,3208,22726
+16747,7157
+16748,35221,34088
+16749,121,45968
+16750,66952
+16751,52162
+16752,11450
+16753,7221
+16754,61844
+16755,24395
+16756,23004
+16757,47411
+16758,2893,67956
+16759,66064
+16760,18584
+16761,78984
+16762,56612
+16763,28483
+16764,23657
+16765,2814
+16766,9255
+16767,49072
+16768,74367
+16769,21398,27061,26066,18955
+16770,5068,46517
+16771,74983
+16772,2218
+16773,42879
+16774,23212
+16775,707
+16776,78036
+16777,37786
+16778,58493
+16779,15894
+16780,10559
+16781,7718,22968,8513
+16782,19444
+16783,9013
+16784,77966,17565
+16785,5035
+16786,21017
+16787,25278
+16788,77656
+16789,40010
+16790,54595
+16791,9843
+16792,17052
+16793,60451
+16794,60530
+16795,52460
+16796,40074,52786
+16797,62130
+16798,65225
+16799,64582
+16800,76690,18032
+16801,65832,69349
+16802,69353
+16803,625
+16804,11598
+16805,74155
+16806,66857
+16807,18233
+16808,23475
+16809,60102
+16810,44575,77556
+16811,9914,68949
+16812,27412
+16813,21405
+16814,17725
+16815,67797
+16816,1712
+16817,17381
+16818,24203
+16819,3482
+16820,71009
+16821,14730
+16822,72149
+16823,10596
+16824,4475,35661
+16825,6818
+16826,25690
+16827,18170,13230
+16828,66109
+16829,47725
+16830,19886,27055
+16831,71019,34110,6593
+16832,27331
+16833,9198
+16834,69089
+16835,57245
+16836,14051
+16837,54964
+16838,10497
+16839,39090
+16840,69981
+16841,4367
+16842,81641
+16843,22759
+16844,62346
+16845,76788
+16846,22912
+16847,57305,33362
+16848,76049
+16849,44153
+16850,48382
+16851,15709
+16852,41660
+16853,54318
+16854,13331
+16855,14411
+16856,1594
+16857,13341
+16858,20579
+16859,36225
+16860,53939
+16861,79990
+16862,22844
+16863,31008
+16864,19580
+16865,49316
+16866,23951
+16867,540
+16868,4596
+16869,64254,33899
+16870,9653
+16871,75283
+16872,13998
+16873,62220
+16874,20049
+16875,40884
+16876,42772
+16877,60283
+16878,54108
+16879,55725,73619
+16880,67213,4809,21458
+16881,21372
+16882,32419
+16883,15050,37878
+16884,75834,26715
+16885,1788
+16886,39997
+16887,47641
+16888,69099
+16889,60995
+16890,70025,35548
+16891,79793
+16892,66122
+16893,45202
+16894,34898
+16895,77321,53635
+16896,29238
+16897,62544
+16898,32880
+16899,7038,34988
+16900,4617
+16901,16608
+16902,10577
+16903,25544,467
+16904,49829
+16905,81686
+16906,15564,3733,66350
+16907,66510
+16908,11723
+16909,29043
+16910,20506
+16911,17000
+16912,78099
+16913,8466
+16914,3748
+16915,52876
+16916,48629
+16917,3468,44703
+16918,16363
+16919,75677
+16920,34280
+16921,47094,55907
+16922,67548
+16923,25758,32311
+16924,20027
+16925,72312
+16926,28803
+16927,50957
+16928,45515,50977
+16929,2971
+16930,29423
+16931,81326
+16932,67579
+16933,5555
+16934,62291
+16935,2626
+16936,61289
+16937,41797
+16938,71303
+16939,64879
+16940,60346
+16941,9847,16369
+16942,56717
+16943,21822
+16944,28159
+16945,68318
+16946,10706,18551
+16947,51759
+16948,27801
+16949,47517,38846
+16950,34074
+16951,8699
+16952,22274
+16953,20300,28359
+16954,26805
+16955,23944
+16956,7206
+16957,22929
+16958,64774,71277
+16959,59039
+16960,35711
+16961,28183
+16962,67548
+16963,29037
+16964,16170
+16965,47913
+16966,70672,1387
+16967,49664
+16968,38912,72038
+16969,62989,41243,11597
+16970,7775
+16971,76662
+16972,45309
+16973,46223,25290
+16974,68176
+16975,15649
+16976,1492
+16977,26133
+16978,28159
+16979,51334
+16980,42879,43612
+16981,16617,74628
+16982,22811
+16983,31611
+16984,47035
+16985,1147
+16986,55317
+16987,78056,15866
+16988,80999
+16989,70633
+16990,27308
+16991,30537
+16992,42525
+16993,33089
+16994,14878,46731
+16995,46694
+16996,79797
+16997,4211
+16998,57266
+16999,7119
+17000,31629
+17001,26045
+17002,39357,7996
+17003,46730
+17004,32004,1031
+17005,71726
+17006,3790
+17007,46331
+17008,80838
+17009,66283
+17010,26992
+17011,76797
+17012,27334
+17013,40854
+17014,13088
+17015,70728,6064
+17016,32529,77952
+17017,13886
+17018,21829
+17019,69567
+17020,67318
+17021,30375
+17022,74221
+17023,47780
+17024,13329
+17025,40187,19607
+17026,54406
+17027,12816
+17028,45697,22779
+17029,62358
+17030,45137
+17031,58957
+17032,74500
+17033,81034
+17034,15076,12807
+17035,41519
+17036,42924
+17037,56928,903
+17038,61302
+17039,57148
+17040,73580
+17041,44489,51073
+17042,52873,72358
+17043,71940
+17044,56402
+17045,73154,63673
+17046,49083
+17047,68660
+17048,55371
+17049,70396
+17050,34638
+17051,67115
+17052,71185
+17053,23565
+17054,38371,64763
+17055,69408,35546
+17056,267
+17057,9579
+17058,23547
+17059,77873,67565
+17060,57627
+17061,10993,19167
+17062,56154
+17063,8606
+17064,58107
+17065,31205
+17066,16517
+17067,47979
+17068,64474,13999
+17069,21758
+17070,8347,5013
+17071,73331
+17072,69296
+17073,13449
+17074,63533
+17075,6155
+17076,39229
+17077,32183,78656
+17078,67682,45877
+17079,65119
+17080,6072,23559
+17081,38033,20894
+17082,80025
+17083,71153,2411,59518
+17084,78390
+17085,4471
+17086,32953
+17087,19895,51376
+17088,44966
+17089,56603
+17090,41482
+17091,53672
+17092,68013,18955
+17093,13431
+17094,3399
+17095,69090
+17096,61283
+17097,38943
+17098,9458
+17099,34330,81014
+17100,21625
+17101,34900
+17102,63072
+17103,57905
+17104,69262,77051
+17105,59881
+17106,41489
+17107,14274
+17108,13814
+17109,46627
+17110,57266
+17111,47857
+17112,26053
+17113,5356
+17114,77034,54017
+17115,47580
+17116,55963
+17117,51848
+17118,6348
+17119,34331
+17120,30856
+17121,26095
+17122,78319
+17123,76771
+17124,41959
+17125,16810
+17126,63697
+17127,72435
+17128,16626
+17129,67834
+17130,17310
+17131,69083
+17132,17000
+17133,51560
+17134,41273
+17135,906
+17136,51949
+17137,28797,45682
+17138,17035
+17139,46342
+17140,28673
+17141,29378,39053
+17142,42343
+17143,61212
+17144,65639
+17145,42179
+17146,47766
+17147,29969,32206
+17148,50588
+17149,70924
+17150,54578,41974
+17151,49584
+17152,34371
+17153,7788
+17154,67557
+17155,26577
+17156,76298
+17157,75680
+17158,8942
+17159,66209
+17160,70344
+17161,51282
+17162,26726
+17163,42076
+17164,52220,58942
+17165,29293
+17166,62953
+17167,64758
+17168,53452
+17169,40751
+17170,74432
+17171,38000
+17172,9061
+17173,71101,19559
+17174,12324
+17175,9456
+17176,76863
+17177,61846,21763
+17178,46073
+17179,32722
+17180,14345
+17181,13601
+17182,2384
+17183,77897
+17184,71804
+17185,32436
+17186,61629
+17187,75692
+17188,44460
+17189,32389
+17190,10749,69943,43132
+17191,54818
+17192,9021
+17193,68626
+17194,69886,72459
+17195,76074,80251
+17196,79505
+17197,61752
+17198,41763
+17199,12129
+17200,81015
+17201,22145
+17202,44148,73605,43085
+17203,79116
+17204,55573
+17205,16627
+17206,71417,38102
+17207,8548
+17208,45315
+17209,67143
+17210,40713
+17211,43848,60473
+17212,36203,62766,42350
+17213,25043
+17214,29258
+17215,43512,49708
+17216,47913
+17217,20550
+17218,57147,30296
+17219,1846
+17220,61353
+17221,38834
+17222,3519,32829
+17223,64110
+17224,22194
+17225,30579
+17226,29107,14412
+17227,22016
+17228,20859
+17229,31061
+17230,40890,6052
+17231,10702,11859
+17232,4077,66600
+17233,15907
+17234,51013,20389
+17235,72289
+17236,64194
+17237,5023,64864
+17238,82136
+17239,30824
+17240,37095,66436
+17241,46794
+17242,69061
+17243,23645
+17244,41132,26266
+17245,1945
+17246,28010
+17247,74792,37860
+17248,23623
+17249,34820
+17250,28555
+17251,12046
+17252,27243,32975
+17253,34130,58146
+17254,46280
+17255,28863
+17256,45951
+17257,10839
+17258,45023
+17259,79809
+17260,51865
+17261,44621
+17262,28988
+17263,50341,35738
+17264,37869
+17265,40309
+17266,77344
+17267,64464,41587
+17268,482
+17269,31830,49402
+17270,55314
+17271,26301
+17272,72687,42978
+17273,30743
+17274,21562
+17275,41558
+17276,53263
+17277,25482
+17278,36652
+17279,54742,39713
+17280,76717
+17281,38601,29912,69169
+17282,67448,9746
+17283,68830
+17284,8385
+17285,35798,45137
+17286,79832
+17287,54211,2700,24298
+17288,4086
+17289,78352
+17290,64489
+17291,74909
+17292,27889
+17293,2683
+17294,3020
+17295,52933
+17296,14572
+17297,59021
+17298,76398,65749,8028
+17299,8355
+17300,74003
+17301,28972,44750
+17302,46657,26475
+17303,15952,49500,9006
+17304,61610
+17305,24127,41855
+17306,21445
+17307,11648,67571
+17308,28928
+17309,71571,44446
+17310,38034
+17311,27158
+17312,2682,23020
+17313,34771
+17314,34240
+17315,79267
+17316,45084
+17317,71834,39940
+17318,3169
+17319,997
+17320,63206
+17321,18797
+17322,46808
+17323,44479
+17324,81762,67904
+17325,44145
+17326,54254
+17327,32038
+17328,11170
+17329,54172
+17330,26025
+17331,75636
+17332,81577
+17333,66304
+17334,69894,32759
+17335,57204
+17336,69189,24801
+17337,49710
+17338,24285
+17339,33247
+17340,67669
+17341,47331
+17342,79370
+17343,55214,25502
+17344,18784
+17345,79603
+17346,55357
+17347,51055
+17348,28890,65859
+17349,10880
+17350,15505
+17351,14565
+17352,73509,68775
+17353,64774,50653
+17354,68692
+17355,64322,57710
+17356,54648
+17357,981
+17358,28341,10700
+17359,31579
+17360,72315
+17361,63425
+17362,11436
+17363,11166
+17364,73298,31235
+17365,80251
+17366,28680
+17367,80305,43975
+17368,76352
+17369,8029
+17370,21778
+17371,43353
+17372,58899,30217
+17373,21107
+17374,11007
+17375,6856
+17376,25040,80594
+17377,35430
+17378,55381,37701
+17379,65586
+17380,81006
+17381,15879
+17382,49197
+17383,37736
+17384,79462,66220
+17385,20464
+17386,54604
+17387,51933
+17388,39107
+17389,64691
+17390,78879,71836
+17391,12039
+17392,27695
+17393,25575
+17394,20173
+17395,12341
+17396,45505
+17397,69246
+17398,2585
+17399,72014,76801
+17400,52438
+17401,23526
+17402,54627
+17403,19895,40566
+17404,17326
+17405,18643
+17406,23676,41089
+17407,38733
+17408,66558
+17409,73025
+17410,46951
+17411,28642,5073
+17412,13875,10734
+17413,52531
+17414,1460
+17415,22453
+17416,73859
+17417,6473
+17418,6725
+17419,35053
+17420,54076
+17421,11298
+17422,40322
+17423,29912
+17424,49129
+17425,46367
+17426,7190
+17427,34050
+17428,64200
+17429,25946
+17430,10737,56267
+17431,20668
+17432,66560
+17433,18199
+17434,63941
+17435,21851
+17436,51857
+17437,24250
+17438,6175
+17439,53883
+17440,80804,24957
+17441,15388
+17442,56801
+17443,73367
+17444,37629,54715
+17445,32259,62652
+17446,50595,35322
+17447,15084
+17448,5920,64107,17265
+17449,55696
+17450,76154,77112
+17451,71049,24926
+17452,11903
+17453,52701
+17454,19315
+17455,70723
+17456,320
+17457,14446
+17458,72508
+17459,39271
+17460,4324
+17461,61194
+17462,21463
+17463,31274
+17464,45306
+17465,41195
+17466,34901
+17467,37191
+17468,78635
+17469,39775
+17470,4865
+17471,76167
+17472,8139
+17473,11443
+17474,77023
+17475,72312
+17476,14233
+17477,29901
+17478,8682
+17479,22173
+17480,52275
+17481,73191,15272
+17482,14895
+17483,72391,40788
+17484,73501
+17485,18505
+17486,43283,77712
+17487,38713
+17488,18564
+17489,28306
+17490,51880
+17491,23318
+17492,24438
+17493,8738
+17494,69421,15989
+17495,1365
+17496,46138
+17497,36475
+17498,74274,60030
+17499,14717
+17500,8069
+17501,80260
+17502,8601
+17503,10992
+17504,77825
+17505,1806
+17506,63432
+17507,49206
+17508,26726
+17509,4920
+17510,80642
+17511,39540
+17512,37080,9812
+17513,49230
+17514,14708
+17515,34721
+17516,56892
+17517,32122
+17518,59249
+17519,65133,59510
+17520,34110
+17521,66404
+17522,59077
+17523,73172,73964
+17524,66872
+17525,73514
+17526,46212
+17527,7624,10072,44174
+17528,8096
+17529,39328,26456
+17530,60439
+17531,57162
+17532,52655
+17533,47574
+17534,15434,40093
+17535,71729
+17536,53759
+17537,19742
+17538,542
+17539,29362
+17540,59682,15620,23912
+17541,65863
+17542,71576
+17543,38354
+17544,3817
+17545,75137
+17546,25142
+17547,31131
+17548,13115,29226,13780
+17549,19608,12880
+17550,26461
+17551,80586
+17552,32236
+17553,45330
+17554,53541
+17555,7587
+17556,45580,2864
+17557,50601,64219,70896
+17558,24390
+17559,22031
+17560,68362
+17561,30353,63533
+17562,55413
+17563,76033,14676,76220,3081
+17564,36905,82167
+17565,1859
+17566,10110
+17567,12161
+17568,72947
+17569,50232,69285
+17570,55673
+17571,81896
+17572,71639
+17573,19765
+17574,8783
+17575,4684
+17576,63469,8114
+17577,22027
+17578,36232
+17579,137,53042,47512
+17580,73094
+17581,32418,42439
+17582,49429
+17583,74237,70623
+17584,48822,11945
+17585,4398
+17586,34656
+17587,71407
+17588,42878
+17589,29136
+17590,16351,66198
+17591,26678
+17592,22602
+17593,26383
+17594,48555,44505,1826
+17595,57114
+17596,25945
+17597,54112
+17598,22397
+17599,63125
+17600,53613,51707
+17601,80952,18239
+17602,53847,26771
+17603,26461,38060
+17604,61246,49830
+17605,8420
+17606,81965
+17607,17802
+17608,43624,58274
+17609,44821
+17610,28551
+17611,62515
+17612,14713,12358
+17613,16325,13718
+17614,57835
+17615,19779
+17616,62899
+17617,15387
+17618,59449
+17619,2230
+17620,17607,9731
+17621,3891
+17622,43675
+17623,50192,35538
+17624,132
+17625,28571
+17626,24456
+17627,2196
+17628,35680
+17629,68581,54512
+17630,44729
+17631,63348
+17632,29978
+17633,43502,51818
+17634,78263
+17635,45534
+17636,32289
+17637,46226,68507
+17638,78645
+17639,24500
+17640,81741,28699
+17641,81853
+17642,43410
+17643,46968
+17644,58940
+17645,19503
+17646,13154
+17647,44812
+17648,22912
+17649,4358
+17650,18853
+17651,43666
+17652,66776
+17653,25486
+17654,11168,54390
+17655,18006
+17656,73440
+17657,27158
+17658,36135
+17659,65745
+17660,10108
+17661,32363
+17662,11790,40407
+17663,26490
+17664,17488,12279
+17665,64665
+17666,13794
+17667,64254
+17668,57695
+17669,41185
+17670,70376
+17671,63216
+17672,4337
+17673,10147
+17674,51458,21962
+17675,48104
+17676,33277
+17677,45386
+17678,68857
+17679,3111,43896
+17680,20335
+17681,23551
+17682,43167
+17683,538
+17684,35846
+17685,80788
+17686,42171
+17687,79944,33458
+17688,41954,70400,72188
+17689,16103
+17690,62724
+17691,59320
+17692,60283
+17693,34629
+17694,37082
+17695,1225
+17696,70006
+17697,34709
+17698,9052
+17699,39547
+17700,6121
+17701,10651
+17702,30965,33753
+17703,67495
+17704,23165
+17705,16643
+17706,4983
+17707,55978,58506
+17708,12887
+17709,12637
+17710,2757
+17711,374,1433
+17712,9837
+17713,43516
+17714,59952
+17715,61290
+17716,30673,71774
+17717,81323
+17718,42089
+17719,68807
+17720,43610,73936
+17721,30787
+17722,57836
+17723,7802
+17724,32
+17725,71681,56167
+17726,50588
+17727,5287
+17728,53318,28932
+17729,59281
+17730,37204
+17731,1148,14236
+17732,62144
+17733,63547
+17734,59549
+17735,41183
+17736,38088
+17737,23396,10015
+17738,64237
+17739,24263
+17740,49999,62209
+17741,68525
+17742,78826,49682
+17743,74933
+17744,15600
+17745,80888
+17746,18252
+17747,35678
+17748,55902
+17749,73947
+17750,58210
+17751,22398
+17752,58310
+17753,2890
+17754,50582,57810
+17755,28096
+17756,44642,17401,69344
+17757,44289
+17758,2890
+17759,36407
+17760,79988,18676
+17761,55889
+17762,23742
+17763,18504,46596
+17764,26120,29092
+17765,47914
+17766,80004,48735
+17767,49437,43130
+17768,36531
+17769,27374
+17770,10699,15723
+17771,6310
+17772,77312
+17773,57580
+17774,71659
+17775,67814,45803
+17776,20555
+17777,22019
+17778,53778
+17779,26367,28209
+17780,14177
+17781,77499
+17782,59614
+17783,68707
+17784,57540
+17785,47223
+17786,43068
+17787,47269,17987
+17788,19664
+17789,32825
+17790,12279
+17791,15638
+17792,42405
+17793,55392,13493
+17794,48662
+17795,49028
+17796,76898,60976
+17797,6019
+17798,75522
+17799,51539,42812
+17800,37936
+17801,44438
+17802,75914
+17803,73028
+17804,59612
+17805,35751
+17806,31882
+17807,62113
+17808,4185
+17809,70743
+17810,4387
+17811,18086
+17812,13681,43819,34641
+17813,51140
+17814,53983
+17815,59727,25271
+17816,56506
+17817,41646
+17818,9894,71987
+17819,40968
+17820,50382,43981
+17821,26505
+17822,52167
+17823,80422
+17824,52884,66267
+17825,25086,56852,38476
+17826,13111
+17827,40369
+17828,21904
+17829,64358
+17830,76084,13899,73005
+17831,80181
+17832,968
+17833,61315
+17834,42177
+17835,6784,42680
+17836,50475
+17837,3210
+17838,44027
+17839,68879,35938
+17840,78974
+17841,11132
+17842,16772
+17843,40846
+17844,80533
+17845,24094
+17846,39671,77334
+17847,28202
+17848,78716
+17849,19847,41010
+17850,13953
+17851,62690
+17852,38337,40695
+17853,62153
+17854,11877
+17855,49142
+17856,43328
+17857,75049
+17858,45982
+17859,54782,62152,4814
+17860,42852
+17861,64038
+17862,63399
+17863,61344
+17864,33229
+17865,73205
+17866,72457
+17867,29929
+17868,31730
+17869,3000
+17870,77646
+17871,62062
+17872,78731
+17873,41660
+17874,62745
+17875,64387,67788
+17876,30123
+17877,36797
+17878,27869,44867
+17879,69604
+17880,76797
+17881,36840
+17882,45435
+17883,21430
+17884,24954
+17885,26333
+17886,24032,58579
+17887,81785,17108,67594
+17888,43851
+17889,68914
+17890,70736
+17891,65031,10663
+17892,21507
+17893,55254
+17894,170
+17895,40286
+17896,439
+17897,2187
+17898,77993,70024
+17899,52041
+17900,56105,10668
+17901,71335
+17902,60898,69833
+17903,57099
+17904,31439
+17905,11090
+17906,20164
+17907,45470
+17908,17986
+17909,69302
+17910,54295
+17911,72397,80513
+17912,43096
+17913,2345
+17914,16174
+17915,73447
+17916,54168
+17917,57764
+17918,42919,25399
+17919,15438
+17920,46705
+17921,49286
+17922,34839
+17923,7276,49938
+17924,43478,32712
+17925,38318
+17926,19870
+17927,9990,38422
+17928,51478
+17929,17458
+17930,64252
+17931,66198
+17932,4132
+17933,50788
+17934,14520
+17935,18245
+17936,9291
+17937,44738
+17938,31035
+17939,41434,27761
+17940,63966
+17941,12221
+17942,16263
+17943,49319
+17944,2130
+17945,28547
+17946,15366
+17947,76919
+17948,42721
+17949,80014,43662
+17950,15697
+17951,13501,8922
+17952,4364
+17953,16734
+17954,9098
+17955,35569
+17956,76997
+17957,58067,74301
+17958,43511
+17959,34601
+17960,72881,52227,43855
+17961,64289
+17962,61267
+17963,41115
+17964,44418
+17965,78416
+17966,36435
+17967,75857
+17968,41820
+17969,30281
+17970,34472
+17971,16120
+17972,29846
+17973,30505
+17974,5650
+17975,44410,78411
+17976,450
+17977,79294
+17978,68209,10889
+17979,15024
+17980,19376
+17981,17493
+17982,5458
+17983,63856
+17984,23323
+17985,57660
+17986,20049
+17987,24088
+17988,73575
+17989,6624
+17990,75868
+17991,54810
+17992,20548,47899
+17993,52032
+17994,470
+17995,4801
+17996,49222
+17997,55893
+17998,61226
+17999,4217,35663
+18000,57099
+18001,25622,25192
+18002,11900
+18003,63426,62253
+18004,1350
+18005,32788
+18006,66776
+18007,7728
+18008,66693
+18009,4950,68306
+18010,65225
+18011,32256
+18012,16050
+18013,68498
+18014,61969
+18015,18642
+18016,58415
+18017,44168,1211
+18018,39065
+18019,56550
+18020,54757
+18021,3995
+18022,22999
+18023,57327
+18024,64534
+18025,22643,55496
+18026,62044,12225
+18027,40977
+18028,11266
+18029,80528
+18030,22983
+18031,4595
+18032,2142,37992
+18033,21513
+18034,45685
+18035,78219
+18036,53203
+18037,7842
+18038,23638
+18039,37863
+18040,18015
+18041,52820
+18042,23629,48063
+18043,34234
+18044,5693
+18045,51921
+18046,52671,806
+18047,15201
+18048,25939,64051
+18049,61802,38094
+18050,77675
+18051,49189
+18052,78771
+18053,26506,37691
+18054,39403,59016
+18055,47180
+18056,16630
+18057,6437
+18058,6630,77906
+18059,39708
+18060,42085
+18061,1200
+18062,7490,69343,19898
+18063,32
+18064,53957
+18065,29221,58180
+18066,78460,10946
+18067,32255,30847
+18068,33334,76755
+18069,11285
+18070,33628,77248
+18071,14790
+18072,42488,56991
+18073,39360,15967
+18074,73494
+18075,2917
+18076,3136
+18077,50169
+18078,40707,75307
+18079,57332
+18080,79689
+18081,65905
+18082,34883
+18083,74949
+18084,38606
+18085,791,18206
+18086,65362
+18087,3968
+18088,27436,75544
+18089,29748
+18090,11499
+18091,7015
+18092,38952
+18093,42879
+18094,2911
+18095,33474
+18096,66762,33810
+18097,66730
+18098,77979
+18099,71656
+18100,42872
+18101,11425
+18102,61363,24672
+18103,39151
+18104,41187
+18105,13185,57722,46089
+18106,25401
+18107,15280
+18108,6133
+18109,24651,77554,6275
+18110,38609
+18111,53631
+18112,544
+18113,50672
+18114,78061
+18115,24863
+18116,38278
+18117,15217
+18118,51927
+18119,22652,50982
+18120,24694
+18121,11572
+18122,68476
+18123,42265,65222,31883
+18124,15595
+18125,65753
+18126,68914,29281
+18127,53279
+18128,63451
+18129,56900
+18130,27903
+18131,67753
+18132,71823
+18133,27211
+18134,499
+18135,56498
+18136,13505,25800
+18137,74705
+18138,72649,27920
+18139,58656
+18140,27797
+18141,22495
+18142,63389
+18143,23119
+18144,71782,6019
+18145,8413
+18146,51823,10574
+18147,66778
+18148,61849
+18149,27455
+18150,63425,73772
+18151,1499
+18152,32697
+18153,33796,1721
+18154,59862
+18155,23007
+18156,45402
+18157,73854,68304
+18158,66249
+18159,22171
+18160,43621
+18161,58792
+18162,11575
+18163,16037
+18164,19298
+18165,39545
+18166,32296
+18167,10859
+18168,51384,61345
+18169,46420,67166,59602
+18170,73648
+18171,70515,24287
+18172,9961
+18173,51943
+18174,35300
+18175,58591
+18176,33512
+18177,10164
+18178,64830
+18179,25539
+18180,24782
+18181,41834
+18182,53874
+18183,2412
+18184,31495
+18185,57447
+18186,9867
+18187,5426
+18188,46332
+18189,61720
+18190,43010
+18191,27390
+18192,76160
+18193,77736,1114
+18194,50858
+18195,41720,29504
+18196,31405
+18197,25356,79970,41892
+18198,20128
+18199,69253
+18200,27833
+18201,27546
+18202,838
+18203,18272
+18204,19096
+18205,54800
+18206,2262
+18207,73874
+18208,56774
+18209,58168
+18210,17575,79915
+18211,40611
+18212,9354
+18213,29792,31905
+18214,57689
+18215,23117
+18216,59861
+18217,42380
+18218,36797
+18219,54332
+18220,15807
+18221,60448,32174
+18222,53470
+18223,25281
+18224,40799,73892
+18225,22305
+18226,27865
+18227,30041
+18228,32788
+18229,81326
+18230,44577,69280
+18231,73939
+18232,38261
+18233,53729
+18234,81927
+18235,12475
+18236,75631
+18237,65290
+18238,13076
+18239,13794,19490
+18240,59000,75090
+18241,47219
+18242,45885
+18243,52826
+18244,11405
+18245,38932
+18246,23250
+18247,25504
+18248,61743
+18249,71882
+18250,14862
+18251,24710
+18252,32489
+18253,62365,23520
+18254,69845
+18255,24927
+18256,16888
+18257,5022,33289
+18258,51851,23291
+18259,8161
+18260,51614
+18261,73437
+18262,38238
+18263,45373
+18264,75556
+18265,76835
+18266,8463
+18267,13588
+18268,4407,23316,62159
+18269,77301,72009
+18270,2393,43846
+18271,17464
+18272,59404
+18273,59983
+18274,15374,2764
+18275,44507
+18276,5127
+18277,37715
+18278,20764
+18279,7465
+18280,61471
+18281,31063
+18282,69257
+18283,16633
+18284,72857
+18285,10513
+18286,9641
+18287,61307
+18288,59319
+18289,55466
+18290,47754
+18291,8120,10776
+18292,79251,44086
+18293,56366
+18294,73625
+18295,57856
+18296,20197
+18297,3787,5144
+18298,78045
+18299,21240,57823
+18300,58202
+18301,3806
+18302,56742,74509
+18303,45366
+18304,53246
+18305,63551
+18306,58114
+18307,19999,81925
+18308,67096,54009,14082
+18309,35766
+18310,35305
+18311,80159,56499
+18312,37899
+18313,11217
+18314,71009
+18315,78245
+18316,50990
+18317,60029
+18318,6118
+18319,68049
+18320,5411
+18321,44080
+18322,81731,56031
+18323,17868
+18324,13197
+18325,19685
+18326,20487
+18327,80370
+18328,12347
+18329,57094,62145
+18330,60840
+18331,59414
+18332,2976
+18333,9980
+18334,73241
+18335,65219
+18336,52759
+18337,5616,35143
+18338,42994,67177
+18339,46693
+18340,17371
+18341,64191
+18342,29633,69686
+18343,74938
+18344,19270
+18345,5319,52200
+18346,46961
+18347,46625
+18348,73021
+18349,31654
+18350,539
+18351,28804
+18352,32552,28967,8762,42326
+18353,4260,3510
+18354,13615
+18355,40846
+18356,52128
+18357,35374
+18358,46606
+18359,27500
+18360,17056
+18361,7266
+18362,39185
+18363,30787,13793
+18364,58329
+18365,60409,74339
+18366,63586
+18367,70218
+18368,35949
+18369,64662
+18370,48972
+18371,34778
+18372,55486
+18373,40897
+18374,58608,72562,3070
+18375,39038
+18376,74939
+18377,57348
+18378,13117,66443
+18379,59252
+18380,65104
+18381,73437
+18382,10659
+18383,22411,33193
+18384,49119
+18385,22428
+18386,62613
+18387,70263
+18388,62467,70012
+18389,3384
+18390,32630
+18391,64735,42660
+18392,9797
+18393,12682
+18394,11869
+18395,41566
+18396,60840,41823
+18397,47229
+18398,23118
+18399,81576
+18400,55005
+18401,70236
+18402,51501
+18403,70041,14698
+18404,48084
+18405,23555
+18406,62193,2018
+18407,77121
+18408,29155
+18409,68545,72070
+18410,58484
+18411,22501,20406
+18412,58134
+18413,42130
+18414,57189
+18415,16043
+18416,31592
+18417,34281
+18418,66106
+18419,14722
+18420,68422,45806
+18421,22099
+18422,14014
+18423,61323
+18424,69493
+18425,56884
+18426,38908
+18427,40880
+18428,12439
+18429,23637
+18430,44386
+18431,81792,21678
+18432,66416,4267,68769
+18433,16533
+18434,47013
+18435,20650
+18436,39469
+18437,5301
+18438,55096
+18439,70585
+18440,53489
+18441,69903
+18442,34395
+18443,27701
+18444,79876
+18445,19404,62713
+18446,2008,53576
+18447,41637
+18448,30402
+18449,21778
+18450,34767
+18451,12682
+18452,59197
+18453,27457
+18454,37215
+18455,61872
+18456,2651,42112
+18457,69643
+18458,13419
+18459,32232
+18460,67656
+18461,744
+18462,71589
+18463,27468
+18464,41408
+18465,12530
+18466,49582
+18467,62030
+18468,7247
+18469,6810
+18470,715,44043
+18471,12026
+18472,36903
+18473,64824
+18474,26556
+18475,61618
+18476,82028
+18477,48681,46341
+18478,76439
+18479,21690,66957,13644
+18480,39322
+18481,30038
+18482,60370
+18483,36516
+18484,63607,55739
+18485,30014
+18486,59562
+18487,3307
+18488,62835,24341
+18489,8756,32652
+18490,33703
+18491,28935
+18492,74013
+18493,13973
+18494,44901,3405
+18495,53599
+18496,26133
+18497,82100,24043
+18498,17684,53895
+18499,3995
+18500,46849,57559,33436
+18501,79700,62543
+18502,76843
+18503,32177
+18504,53953
+18505,66664,37371
+18506,63335,35762
+18507,17190
+18508,16348
+18509,42114
+18510,59780
+18511,35640
+18512,75291,9978,19819
+18513,55232
+18514,8796
+18515,76982
+18516,35715
+18517,62455
+18518,53145
+18519,64489
+18520,17239
+18521,1395,68288
+18522,80376
+18523,77757
+18524,31355
+18525,73291
+18526,65408,60400
+18527,22681
+18528,49810
+18529,72813
+18530,69798
+18531,1472
+18532,70781
+18533,2605,65063
+18534,53379
+18535,285,53410
+18536,18922
+18537,79343
+18538,4371
+18539,18668
+18540,30133
+18541,60548
+18542,48549
+18543,6968
+18544,76269
+18545,3660
+18546,46968
+18547,76897
+18548,4703
+18549,19488
+18550,28276,4572
+18551,24770,586
+18552,9320
+18553,34916,11903,16539
+18554,11910
+18555,15439
+18556,15771,14025
+18557,25823
+18558,56900,39090
+18559,32601
+18560,73344
+18561,75910
+18562,53150,62973
+18563,33593
+18564,66838,71797
+18565,57777
+18566,8471,3591
+18567,9319
+18568,70612
+18569,723
+18570,38005
+18571,56635
+18572,2431
+18573,7541
+18574,18965
+18575,65641
+18576,74266
+18577,27844
+18578,65236
+18579,1451,39324
+18580,64968,4052
+18581,69980,33874,62408
+18582,16651
+18583,6186,71537
+18584,50744
+18585,55824
+18586,79649,34926,58131
+18587,52928
+18588,80391
+18589,60746
+18590,75561,11726
+18591,76745,81502
+18592,68068
+18593,2226
+18594,77853
+18595,32542
+18596,35303
+18597,19149
+18598,46789
+18599,61799
+18600,26476
+18601,20728
+18602,24173,59612
+18603,42671,17050
+18604,45915
+18605,15845
+18606,58700
+18607,60799
+18608,9546
+18609,63830
+18610,49340
+18611,4562
+18612,20780,76784
+18613,64200
+18614,44695
+18615,11673,78113,48758
+18616,80547
+18617,48521,56399
+18618,9695
+18619,78712
+18620,30828
+18621,29316
+18622,44397
+18623,81228,49801
+18624,69356
+18625,75559
+18626,38185
+18627,37505,75636
+18628,15310
+18629,21391
+18630,44038
+18631,9200,29461
+18632,60328
+18633,43694,54169
+18634,10433,23244
+18635,62756
+18636,33691
+18637,10195
+18638,9542
+18639,26341
+18640,77555,23344
+18641,11055
+18642,24440
+18643,9369
+18644,75903
+18645,20119
+18646,81668
+18647,44656,64970,55804
+18648,17480
+18649,70743
+18650,28808,20430,72665
+18651,68812
+18652,30892
+18653,26537,69209
+18654,54512
+18655,72137
+18656,48103
+18657,29746
+18658,8270
+18659,82094,34198
+18660,82134
+18661,3969
+18662,53379,29984
+18663,50051
+18664,6348
+18665,74782
+18666,50380,75829
+18667,45417
+18668,826,60429
+18669,81152
+18670,604,13499,10097
+18671,6121
+18672,36219
+18673,62520
+18674,63619
+18675,73075
+18676,66259
+18677,78264
+18678,67833
+18679,70296
+18680,49428
+18681,46879,40340
+18682,44740,14675
+18683,81139
+18684,34318
+18685,57882,8705
+18686,54618
+18687,40316
+18688,34034
+18689,81441,38937
+18690,3752
+18691,551,16457
+18692,56626
+18693,41571
+18694,69155
+18695,38783
+18696,42398
+18697,72624
+18698,78343
+18699,38030
+18700,51958
+18701,6895
+18702,14938
+18703,8749
+18704,71433
+18705,47535
+18706,32345
+18707,8138
+18708,45034
+18709,24932
+18710,67930,35852
+18711,74483
+18712,39275,71968
+18713,67963
+18714,3888
+18715,37082
+18716,67988
+18717,19170
+18718,19200
+18719,21007
+18720,58717
+18721,14149
+18722,31798
+18723,59960
+18724,73166,37140
+18725,23969,30069
+18726,8821
+18727,4914,11540
+18728,27380,13189
+18729,34124
+18730,74171
+18731,76103
+18732,27412
+18733,29125
+18734,27298,54312,56592
+18735,37708,51888,67493
+18736,80307
+18737,61484
+18738,71630,10260
+18739,15084
+18740,40624
+18741,79509
+18742,44499
+18743,27796
+18744,20874
+18745,39905,18097
+18746,54763
+18747,53426,55076
+18748,19194
+18749,5843
+18750,49785,65296
+18751,42130,64158
+18752,13260
+18753,49432,1930
+18754,53363
+18755,26682
+18756,64069
+18757,28609
+18758,72572,67296,49521
+18759,39327
+18760,15730
+18761,70747
+18762,79521
+18763,37654
+18764,54922
+18765,18783
+18766,17333
+18767,24519
+18768,53477
+18769,24469
+18770,6238
+18771,44459,2827
+18772,54970,42627
+18773,6198
+18774,539
+18775,54089
+18776,47760
+18777,81756
+18778,58150,65905
+18779,32981
+18780,47972,13758
+18781,62700
+18782,33995
+18783,52387
+18784,52902
+18785,56258,48042
+18786,5576
+18787,14170
+18788,26206
+18789,1865
+18790,15752
+18791,66350,11321
+18792,60733
+18793,61543
+18794,36014
+18795,41951
+18796,65723
+18797,4996
+18798,62019
+18799,59830
+18800,25528
+18801,2779
+18802,18326
+18803,73373
+18804,9466
+18805,37764
+18806,79908,13088
+18807,45976,43099,50129
+18808,72626
+18809,19620
+18810,22308
+18811,61018
+18812,48105
+18813,61480
+18814,60128
+18815,5351
+18816,43235
+18817,24203
+18818,38224
+18819,63584
+18820,20114
+18821,53726,28112
+18822,73311,70857
+18823,7154
+18824,78142
+18825,74276
+18826,60995
+18827,70046,2374
+18828,45717
+18829,65676,47180
+18830,29487
+18831,17781,53334
+18832,9342
+18833,39090
+18834,41172
+18835,77096
+18836,80192
+18837,29720,76846
+18838,76089
+18839,61044
+18840,58538,56918
+18841,35963,46996
+18842,69535
+18843,66050
+18844,16642
+18845,78167
+18846,7609
+18847,68216
+18848,42605
+18849,14853
+18850,7754
+18851,29436
+18852,26540
+18853,81160
+18854,24993
+18855,51455
+18856,29041
+18857,57810
+18858,5271
+18859,65765
+18860,9862,24241
+18861,78208
+18862,55448
+18863,66865
+18864,31266,71915
+18865,553,216,9639
+18866,57403
+18867,50103
+18868,2932
+18869,71191
+18870,43017
+18871,65383
+18872,28998
+18873,69023
+18874,13897
+18875,6795,61945
+18876,2872
+18877,65425
+18878,49225
+18879,37617
+18880,2727,74695
+18881,68524
+18882,77524
+18883,8600
+18884,81691,61928
+18885,18805,4349,50111
+18886,50501
+18887,53342
+18888,7422,81899
+18889,13681
+18890,65215
+18891,69025
+18892,36426,38051
+18893,50911
+18894,54813
+18895,61428,445
+18896,41945,33061
+18897,8122,3860
+18898,52666
+18899,36905
+18900,54332
+18901,57305
+18902,77246
+18903,37396
+18904,4164
+18905,5407
+18906,12616
+18907,48817,17380
+18908,4705
+18909,44992,46839
+18910,4340
+18911,7495
+18912,38571
+18913,15037
+18914,33045
+18915,72516
+18916,79314
+18917,47189
+18918,72918
+18919,63596
+18920,20626
+18921,9223
+18922,77957
+18923,11632,14026
+18924,17082
+18925,45997
+18926,64077
+18927,29821
+18928,69893,37235
+18929,64656
+18930,49456
+18931,21560
+18932,25776
+18933,16479
+18934,55457
+18935,68518,65999
+18936,69718
+18937,66428
+18938,27433,18767
+18939,76915
+18940,18642
+18941,3263
+18942,66824
+18943,81139,55079
+18944,59719
+18945,55437
+18946,55835
+18947,56219
+18948,19490
+18949,57794,71427
+18950,46234
+18951,80204,64686
+18952,6329
+18953,36462,953
+18954,69782,14327
+18955,72017
+18956,15032
+18957,23275,7187
+18958,17780
+18959,2231
+18960,60572
+18961,69635,81722
+18962,43470
+18963,68510
+18964,36668
+18965,56114
+18966,34500
+18967,55724,75840
+18968,51954
+18969,32242
+18970,66267,4535
+18971,55158
+18972,61026
+18973,63599
+18974,19612
+18975,55709
+18976,13959
+18977,72835,81914
+18978,66608,24776
+18979,13137,17395
+18980,66963
+18981,78287
+18982,55357
+18983,51218
+18984,13712
+18985,35672
+18986,62337
+18987,71437,59690
+18988,5343
+18989,21201
+18990,72426
+18991,49915
+18992,3381,73617
+18993,65357
+18994,22040
+18995,11096
+18996,3685,59851
+18997,9330,60363
+18998,68123
+18999,24429
+19000,70174
+19001,5236
+19002,24716
+19003,64973
+19004,74588
+19005,24354
+19006,28553
+19007,48550
+19008,59591
+19009,41882,3299
+19010,26289,72275
+19011,45845
+19012,5255
+19013,10084,58431
+19014,15026
+19015,38885,68470
+19016,63337,18051
+19017,13995
+19018,47002
+19019,68109,79942,7920
+19020,20070,44248
+19021,67884
+19022,70869
+19023,68331
+19024,76290,79785
+19025,17148
+19026,81214
+19027,31560
+19028,24859
+19029,33726
+19030,46371
+19031,69990
+19032,1657
+19033,69974
+19034,44700
+19035,81449
+19036,60997
+19037,43934
+19038,65941,39155
+19039,53012
+19040,22218
+19041,42642
+19042,46730
+19043,14146
+19044,66578
+19045,67862
+19046,41228,55438
+19047,26075,74146
+19048,23396
+19049,63280
+19050,61565
+19051,55075,45246
+19052,23150
+19053,65191
+19054,52640
+19055,63872
+19056,6010,80092
+19057,2566
+19058,76113
+19059,61336
+19060,19425
+19061,26816
+19062,17256,73533
+19063,41227
+19064,66240
+19065,74834
+19066,33891
+19067,32652
+19068,21180
+19069,18011,11279
+19070,5376
+19071,58726
+19072,71563
+19073,6759
+19074,28271,23630
+19075,78758
+19076,58021,73461
+19077,50336
+19078,15026,38505
+19079,48216,66168
+19080,30245
+19081,44917
+19082,53919
+19083,52190
+19084,43350
+19085,8808
+19086,38097
+19087,78096
+19088,59634
+19089,11736,7688
+19090,22916
+19091,42972,45869
+19092,31085,2101
+19093,6214,67405
+19094,32162
+19095,54091,74299
+19096,73407
+19097,53185,19532,42182,2764
+19098,13925
+19099,39992,8650
+19100,26871,80824
+19101,74266
+19102,7796
+19103,32412,44005
+19104,3860
+19105,74174
+19106,53446,47995
+19107,50803
+19108,17466
+19109,65379,60853
+19110,72696
+19111,33087
+19112,25109,24686
+19113,70082
+19114,78785
+19115,29492
+19116,54654
+19117,74130,34871
+19118,25273
+19119,70671
+19120,31031
+19121,52513
+19122,16818,65086
+19123,29484
+19124,8458
+19125,67852
+19126,48633
+19127,26446
+19128,25699
+19129,70668
+19130,7425,34601
+19131,27422
+19132,71264
+19133,32476
+19134,65363,2355
+19135,20649
+19136,65446,50163
+19137,74054
+19138,17106
+19139,61376
+19140,29514,25776
+19141,45511
+19142,81376
+19143,57560
+19144,58825
+19145,14687
+19146,23050
+19147,11900
+19148,1766
+19149,61007
+19150,9158,51942
+19151,19195
+19152,55261
+19153,71407
+19154,9134
+19155,19940
+19156,22550
+19157,73877
+19158,60965,26609
+19159,74234,40775,59931,66518
+19160,66812
+19161,47424,77232
+19162,62456
+19163,63883
+19164,39427
+19165,81938
+19166,77458
+19167,25923
+19168,16594
+19169,17602,59950
+19170,75797
+19171,20150
+19172,50874
+19173,51058
+19174,4858
+19175,76797
+19176,12180
+19177,5928,7661
+19178,5553,54848
+19179,40689
+19180,65236,55761
+19181,65150
+19182,13168
+19183,18894
+19184,71411
+19185,62057
+19186,35603
+19187,14600
+19188,61600
+19189,30882
+19190,31218
+19191,79816
+19192,34391,37615,15967
+19193,20217
+19194,37597
+19195,31930
+19196,73646,11898
+19197,79420
+19198,74616
+19199,2202
+19200,1882
+19201,70891
+19202,12765,42778
+19203,68436
+19204,9719
+19205,49060
+19206,29333,27347
+19207,23205
+19208,31868
+19209,32234,79667,63836
+19210,56262
+19211,62158,75048
+19212,38461
+19213,68574,73892
+19214,29903
+19215,49605
+19216,28088,52580
+19217,56142
+19218,60525
+19219,70224
+19220,71303,33313
+19221,18132,20829
+19222,68545
+19223,75042
+19224,48442,1155,32769
+19225,650,46710
+19226,470
+19227,75381,57250
+19228,4411
+19229,16335,52599
+19230,72024
+19231,23951,2348
+19232,24844
+19233,21333,6694
+19234,9137,43843
+19235,77848,94
+19236,47300,41117
+19237,46031
+19238,59511
+19239,27897
+19240,1198
+19241,45008,41971
+19242,3494
+19243,50299
+19244,5847,1111
+19245,39989,52273
+19246,77755
+19247,28074
+19248,24855
+19249,18833
+19250,8070,53012
+19251,2890
+19252,9756,6204
+19253,18362
+19254,9131
+19255,76607,64276
+19256,26346
+19257,19031,3974
+19258,57264
+19259,58676,38796
+19260,68684
+19261,22650
+19262,23230,54404
+19263,8163,29723
+19264,4742
+19265,76126
+19266,50665
+19267,55620
+19268,51054
+19269,67668
+19270,4369
+19271,45731,9847
+19272,51285
+19273,41782
+19274,6421
+19275,60720
+19276,47078
+19277,41650
+19278,14609
+19279,31628
+19280,16650,59625
+19281,57414
+19282,13645
+19283,67921
+19284,40901,72038
+19285,34030
+19286,21884
+19287,54275
+19288,3701
+19289,33167
+19290,7464,2974
+19291,80938
+19292,1650,50789
+19293,25876
+19294,12286
+19295,27765
+19296,42822
+19297,50421,58263
+19298,31378
+19299,35258
+19300,53036
+19301,17527
+19302,50769
+19303,59487
+19304,79771
+19305,80869
+19306,56348
+19307,52606,34108
+19308,33956,43935
+19309,50182
+19310,36673,48772
+19311,22578
+19312,39369
+19313,67582
+19314,28128
+19315,17657,13819
+19316,80821
+19317,58771
+19318,53569
+19319,78133
+19320,55514
+19321,55313
+19322,38032,31608
+19323,10239
+19324,9829,79688
+19325,8347
+19326,15024
+19327,65883
+19328,22315
+19329,34405
+19330,14807,6305
+19331,79409
+19332,50069,7003
+19333,46475
+19334,18480
+19335,49703
+19336,13704
+19337,42448
+19338,35275,65544
+19339,59910
+19340,22760
+19341,34887
+19342,62419
+19343,72369
+19344,65854
+19345,77027,38439,80640
+19346,73013,75402,20419
+19347,661,35577
+19348,55469
+19349,46107
+19350,6042,21344
+19351,33196
+19352,7098
+19353,36749,67014,80414
+19354,39026
+19355,24595
+19356,77786
+19357,48203,77539,53745
+19358,10301,75252
+19359,5478
+19360,7549
+19361,64618
+19362,7870
+19363,75428,33005
+19364,50971
+19365,57040,5630
+19366,77399
+19367,2067
+19368,30391
+19369,36015,72319
+19370,25097,56837
+19371,756
+19372,4829,25148
+19373,79631
+19374,31243
+19375,10522
+19376,70058
+19377,79361,81139
+19378,7641
+19379,68654
+19380,19052,70189,10838
+19381,53674
+19382,24592
+19383,75074
+19384,16416,10235
+19385,34766
+19386,55045
+19387,69747
+19388,39757
+19389,77766
+19390,9580
+19391,4579
+19392,48786
+19393,82133
+19394,27764
+19395,30024
+19396,57369
+19397,26843,48664
+19398,77607
+19399,21853
+19400,13569
+19401,70723
+19402,42988
+19403,46696
+19404,81328
+19405,23465
+19406,67143
+19407,16544
+19408,13546
+19409,61911
+19410,20896
+19411,38218
+19412,65789
+19413,72280,39494,21826
+19414,80227
+19415,67696
+19416,63341
+19417,24439
+19418,75310
+19419,62978,474
+19420,48452,54800
+19421,76126
+19422,43700
+19423,2878
+19424,79060
+19425,31154
+19426,3439
+19427,1274
+19428,34968
+19429,32331,40519
+19430,16644,35289
+19431,68653,75426
+19432,55696,69289
+19433,15305
+19434,23020
+19435,25826,63167
+19436,73757
+19437,51220
+19438,20500
+19439,17865
+19440,53823
+19441,27816,11109
+19442,75,21332
+19443,17264
+19444,5559
+19445,22800
+19446,80781
+19447,50168
+19448,62057
+19449,16561
+19450,94
+19451,81246
+19452,46713
+19453,43968
+19454,19873
+19455,20272
+19456,20315,47070
+19457,14684
+19458,5426
+19459,37500
+19460,53886
+19461,57443,81683
+19462,81661
+19463,75881
+19464,45555
+19465,76988
+19466,68686,42692
+19467,6306,1977
+19468,3197
+19469,39540
+19470,76122
+19471,40435
+19472,79687
+19473,22857
+19474,38834
+19475,46026
+19476,13889
+19477,10778
+19478,76998,18267
+19479,11302
+19480,57638,76870
+19481,79831
+19482,66463
+19483,33394
+19484,69340
+19485,4106
+19486,38662,74992
+19487,24386,29633
+19488,39671
+19489,29215
+19490,64964
+19491,56400
+19492,19895,19014
+19493,77663,51688
+19494,33495
+19495,13274
+19496,67973
+19497,1491
+19498,50917
+19499,2181
+19500,68870,42894
+19501,63925
+19502,76424
+19503,63444
+19504,20120
+19505,12523
+19506,4272,34014
+19507,73895,49500
+19508,42674
+19509,79475
+19510,6206
+19511,58824,15345
+19512,50758
+19513,41248,14820
+19514,81566
+19515,21355
+19516,38993,78928
+19517,11479
+19518,56990
+19519,44827
+19520,45977
+19521,52226
+19522,13299
+19523,51673,22355
+19524,17433
+19525,55815
+19526,40847,45990
+19527,38788
+19528,36164
+19529,12790
+19530,21212
+19531,34040
+19532,7815
+19533,7561
+19534,48350
+19535,75585
+19536,69726
+19537,3153
+19538,24873
+19539,8573
+19540,48120,73010
+19541,37896,53889
+19542,42827
+19543,1335
+19544,29486,56240
+19545,59912
+19546,35185,11277,13420
+19547,68214
+19548,26801
+19549,79747
+19550,23385
+19551,58180
+19552,1677,38808
+19553,8602
+19554,943
+19555,21838
+19556,47707
+19557,6246
+19558,81803
+19559,60925
+19560,21501
+19561,53654
+19562,78102
+19563,29939
+19564,67352
+19565,5831
+19566,47172
+19567,81456,5650
+19568,76095
+19569,29162
+19570,32540
+19571,63125
+19572,63287
+19573,9656
+19574,21365
+19575,69400,62939
+19576,41570
+19577,6191
+19578,48003,57020
+19579,6090
+19580,53795,56443
+19581,119,68222
+19582,57855
+19583,27204
+19584,62756
+19585,69465
+19586,68421
+19587,33703
+19588,15181
+19589,55476,20304,67637
+19590,19123,80485
+19591,7249
+19592,78058
+19593,37786
+19594,12584
+19595,25652
+19596,27605
+19597,21388,13059
+19598,64083
+19599,78556
+19600,65475
+19601,68242,64828
+19602,74247
+19603,48990,34336
+19604,14603
+19605,35261
+19606,15918,63395
+19607,21562
+19608,80845
+19609,16162
+19610,21243
+19611,70378
+19612,39053
+19613,54961
+19614,71970
+19615,43380
+19616,47768
+19617,76780,2260
+19618,44064
+19619,20263
+19620,48317
+19621,76391
+19622,70384,36567
+19623,61395
+19624,52637
+19625,71423
+19626,19697
+19627,2915
+19628,7281
+19629,36700
+19630,21969,62564
+19631,34261
+19632,62028
+19633,59633
+19634,13373
+19635,67702
+19636,57795
+19637,70737,49496
+19638,14498
+19639,4986,9793
+19640,42765
+19641,24843
+19642,53377
+19643,77665
+19644,55955
+19645,48380
+19646,56686
+19647,20249,48677
+19648,44831
+19649,17178,21744
+19650,27565
+19651,21338
+19652,81319
+19653,34370
+19654,25696
+19655,247
+19656,36340
+19657,32610,74931
+19658,64573
+19659,5142,50187
+19660,56309
+19661,16517
+19662,25590
+19663,29575,63579,43334
+19664,19255
+19665,35572
+19666,12056
+19667,41282
+19668,31513
+19669,59956
+19670,23872,73902
+19671,18091,46552
+19672,42811
+19673,29149
+19674,27256,54852
+19675,36745,58468
+19676,34137
+19677,47497,9338
+19678,65089
+19679,13351
+19680,43422
+19681,57541
+19682,31564
+19683,11808,12087
+19684,7945
+19685,32228
+19686,8911
+19687,81658
+19688,44606
+19689,15260
+19690,15277
+19691,10782
+19692,63460
+19693,49427
+19694,27183,49567,1797
+19695,28114,63003
+19696,53568
+19697,33269
+19698,37594
+19699,18193
+19700,42654
+19701,59669
+19702,41017
+19703,3234
+19704,21190,72537
+19705,79709
+19706,60165
+19707,46371
+19708,28579,60970
+19709,24864
+19710,65352
+19711,65814
+19712,21636
+19713,34978,58279
+19714,74297
+19715,46851
+19716,25766,63975
+19717,23696
+19718,54788,29381
+19719,24807
+19720,71363
+19721,10348
+19722,29984
+19723,72001
+19724,48663
+19725,78856
+19726,67746
+19727,39520
+19728,5266
+19729,36848
+19730,2374
+19731,36874
+19732,48298
+19733,2114
+19734,38840,48015
+19735,70262,74793
+19736,55869
+19737,63768
+19738,15580
+19739,53423
+19740,20805
+19741,16367
+19742,18326
+19743,14647
+19744,21846
+19745,44717
+19746,49342
+19747,37992
+19748,40167,6981
+19749,71423
+19750,65375
+19751,60044
+19752,31008,45876,29507
+19753,79792
+19754,21949,30868
+19755,71846
+19756,12647
+19757,74932
+19758,74286
+19759,8251
+19760,891
+19761,15125
+19762,76477
+19763,61469
+19764,77436
+19765,40606
+19766,64259
+19767,36667
+19768,40227
+19769,2304
+19770,12884,77612
+19771,28513,39982
+19772,62297
+19773,53013
+19774,79799,29835
+19775,76443
+19776,29419
+19777,46469
+19778,3736
+19779,77150
+19780,49269
+19781,48798,41838
+19782,39867
+19783,22099
+19784,53516
+19785,29299
+19786,42977
+19787,48245
+19788,69832
+19789,30243
+19790,70489
+19791,27924
+19792,23212
+19793,57244
+19794,4545
+19795,27713,75014,40305
+19796,15326
+19797,72505
+19798,31568
+19799,31844
+19800,64959
+19801,57176
+19802,7086
+19803,27777
+19804,66654
+19805,24283,5692
+19806,38681,10140
+19807,31171
+19808,65670
+19809,55897
+19810,48549
+19811,21343,48731
+19812,42760,19710
+19813,7051
+19814,35569,44113
+19815,52463,41208
+19816,29346
+19817,30375
+19818,69925
+19819,79830,1448
+19820,70034
+19821,60801
+19822,3360
+19823,42871
+19824,73431
+19825,6927
+19826,48851
+19827,51455
+19828,36549
+19829,37094
+19830,21590
+19831,23124
+19832,26251
+19833,34056
+19834,3483
+19835,35899
+19836,23142
+19837,62968,10117
+19838,59255
+19839,6049
+19840,2586
+19841,19401
+19842,42040
+19843,37329
+19844,75377
+19845,64425
+19846,49017
+19847,25280
+19848,76835
+19849,29716
+19850,39396
+19851,75252
+19852,18295,65576,72172
+19853,29076
+19854,37821
+19855,72473
+19856,23306
+19857,43952
+19858,46407
+19859,1551,41492
+19860,26482,53862
+19861,52070
+19862,24867
+19863,27926
+19864,11285
+19865,10256
+19866,80801
+19867,75346
+19868,524
+19869,68898
+19870,9028
+19871,70652
+19872,17395
+19873,9006,35732
+19874,15894
+19875,12392
+19876,60530
+19877,55589
+19878,10644
+19879,41028
+19880,41506
+19881,61014
+19882,32027
+19883,77357
+19884,2730,32978
+19885,57284
+19886,30375
+19887,16809,76396
+19888,41627
+19889,74798
+19890,2911
+19891,25984
+19892,47525
+19893,47683
+19894,25559,24419
+19895,68714
+19896,2751
+19897,6241,48261
+19898,18385
+19899,50665
+19900,23465
+19901,79195
+19902,44365
+19903,77736
+19904,23773
+19905,72578,53720,42791
+19906,9177
+19907,62318
+19908,61745
+19909,76641
+19910,28183
+19911,45112
+19912,8201,7500
+19913,6366
+19914,32622
+19915,5237
+19916,41888,28816
+19917,38981
+19918,17324,26840
+19919,15656
+19920,28632,11918
+19921,78208
+19922,44919
+19923,6248
+19924,8562
+19925,54828
+19926,58982
+19927,13398
+19928,74526,34834
+19929,6562
+19930,46668,42492,32922
+19931,43316
+19932,17793
+19933,19096
+19934,43692
+19935,15761
+19936,7595,65845
+19937,47026
+19938,9734
+19939,43179,76910
+19940,50440
+19941,28010
+19942,78125
+19943,759
+19944,41641
+19945,78264
+19946,75341
+19947,28444
+19948,16413
+19949,41568
+19950,34951
+19951,2498
+19952,70499
+19953,72017,12812
+19954,79986
+19955,890
+19956,35732
+19957,10082
+19958,36457,75931
+19959,74555
+19960,65456
+19961,41852
+19962,62318
+19963,16445,33044
+19964,29995
+19965,65960
+19966,2473
+19967,42599
+19968,70169
+19969,79650
+19970,1114
+19971,47891
+19972,72684
+19973,28744
+19974,20574
+19975,39665
+19976,59700
+19977,65374
+19978,55023,81418
+19979,5045
+19980,91
+19981,77396
+19982,25217
+19983,24406
+19984,59682
+19985,43830
+19986,62666
+19987,71492
+19988,71684
+19989,9010
+19990,59504
+19991,51295
+19992,65529
+19993,9823
+19994,82087
+19995,15864
+19996,58339
+19997,23763
+19998,4763
+19999,35701
+20000,68872
+20001,20923,76825
+20002,81632
+20003,6954
+20004,32447
+20005,49586
+20006,10399
+20007,76018
+20008,11418
+20009,3421
+20010,41717
+20011,50114
+20012,17929
+20013,30413
+20014,6343
+20015,54221
+20016,66011
+20017,11192
+20018,12330
+20019,4686
+20020,20639
+20021,26729
+20022,4958
+20023,81323
+20024,60511
+20025,78031
+20026,37654
+20027,69615
+20028,25339
+20029,11270
+20030,73462,6777
+20031,39050
+20032,43099
+20033,15729
+20034,76225
+20035,28926,80882
+20036,43452
+20037,11644
+20038,5151
+20039,31895
+20040,73826
+20041,79229
+20042,43470
+20043,32025
+20044,58731
+20045,35959
+20046,19570
+20047,17050
+20048,25989,54993
+20049,21553
+20050,30260
+20051,75244
+20052,3014
+20053,62988
+20054,18061,31666
+20055,39775
+20056,48656
+20057,43422,76984
+20058,36976
+20059,63054
+20060,55824,72325
+20061,29909
+20062,75025,50016
+20063,41251
+20064,10644
+20065,57805,7254,38901,12773
+20066,38139
+20067,57484,18012
+20068,79432
+20069,76335
+20070,30824
+20071,42121
+20072,11779,15535
+20073,76867
+20074,40005,28076
+20075,9712
+20076,69857,73087
+20077,44849
+20078,79102
+20079,72121
+20080,60625
+20081,43329
+20082,10800
+20083,12443
+20084,1213
+20085,49965,76637
+20086,69227
+20087,37563
+20088,19270
+20089,17598
+20090,20120
+20091,71028
+20092,1764,42802
+20093,56576
+20094,4743,38546
+20095,40163
+20096,35858
+20097,33311
+20098,27019,7269
+20099,55929,49903
+20100,33814
+20101,34067
+20102,38283,10897
+20103,40904,33265,8026
+20104,68140
+20105,43690
+20106,29060
+20107,10844
+20108,50218
+20109,70869
+20110,30335
+20111,74720
+20112,70766
+20113,36707
+20114,47288,56637,14555
+20115,76804
+20116,7452
+20117,7335
+20118,21835
+20119,63791
+20120,59614
+20121,79431
+20122,58377
+20123,8848
+20124,78389
+20125,19183
+20126,30712
+20127,4493
+20128,34032
+20129,35199
+20130,25920
+20131,15692,54314
+20132,78884
+20133,45628
+20134,68732,63855
+20135,37657
+20136,47205
+20137,5169
+20138,66540
+20139,31594
+20140,6142
+20141,71373,40449
+20142,73431
+20143,43032
+20144,35025
+20145,24146
+20146,1701
+20147,66089
+20148,62831
+20149,23144
+20150,4914
+20151,32900
+20152,81998,26668
+20153,54918
+20154,70251,35648
+20155,47026
+20156,74722
+20157,54876
+20158,77586
+20159,14663
+20160,23574
+20161,27572
+20162,28664
+20163,41105
+20164,22658
+20165,30230
+20166,29156
+20167,21152
+20168,14882
+20169,10627
+20170,20487
+20171,79483
+20172,48246
+20173,45281
+20174,6549
+20175,47079
+20176,65113
+20177,4849
+20178,49424
+20179,9889
+20180,41892
+20181,43511
+20182,29683,20548
+20183,47008,36957,22823
+20184,5512,75977
+20185,23564
+20186,55836
+20187,15398
+20188,30842
+20189,35994
+20190,79530
+20191,34110,4342
+20192,37007
+20193,64735
+20194,46846
+20195,69141
+20196,56889,61625
+20197,36394
+20198,34498
+20199,15033
+20200,21055
+20201,67957
+20202,57846
+20203,70639
+20204,12053
+20205,34921,25856
+20206,22808,45171
+20207,3059,7308
+20208,64685
+20209,58117
+20210,15168
+20211,62251
+20212,60726
+20213,45059
+20214,17400,20336
+20215,65674
+20216,44296
+20217,6786
+20218,47436
+20219,29231
+20220,42577
+20221,6692
+20222,807
+20223,715
+20224,73767
+20225,62362
+20226,35781
+20227,51362,47673,6270
+20228,77349
+20229,74621
+20230,67684
+20231,43866,40248
+20232,71492
+20233,9559
+20234,26493
+20235,39760
+20236,42907
+20237,16335
+20238,79102
+20239,21056
+20240,17462
+20241,700
+20242,38601
+20243,3985
+20244,8840
+20245,36324,25361,59782
+20246,78627
+20247,25117,71785
+20248,49069,23275
+20249,52453
+20250,42111
+20251,14313
+20252,10411
+20253,2767,45630
+20254,10068,11170
+20255,70391
+20256,78061
+20257,47612
+20258,53519
+20259,81068
+20260,3947
+20261,58694
+20262,9732
+20263,15502
+20264,63254
+20265,27964
+20266,24853,29389
+20267,49939
+20268,53981
+20269,61730
+20270,45399
+20271,70812
+20272,27038
+20273,1951,24730
+20274,31256
+20275,52983
+20276,67456
+20277,32570,34144
+20278,6247,20788
+20279,40951
+20280,7246
+20281,53661
+20282,66774,54352,9585
+20283,64302
+20284,38251
+20285,69807
+20286,39592
+20287,76439
+20288,21300
+20289,54199,41052
+20290,5982
+20291,79217
+20292,54638
+20293,70823
+20294,13354
+20295,54595
+20296,5641,12766
+20297,47212
+20298,34206
+20299,46179
+20300,14282
+20301,49169
+20302,3710
+20303,77237
+20304,73854
+20305,40918
+20306,72152
+20307,74927
+20308,59979
+20309,81091
+20310,59528
+20311,32486,12352,56750
+20312,30267
+20313,9487
+20314,23930
+20315,17086
+20316,8909,77999
+20317,34610,26488
+20318,78041
+20319,64632
+20320,59444
+20321,61599
+20322,16722,55396
+20323,20547,80298,45589,48426
+20324,24924,21801,78217
+20325,49845,25217
+20326,12256,10016
+20327,56641
+20328,55530
+20329,49643
+20330,43947
+20331,57583
+20332,21315
+20333,52738,21273
+20334,68406
+20335,36928,21813
+20336,34042
+20337,9506
+20338,50234
+20339,81343
+20340,15439,73587
+20341,46077
+20342,47189,9811
+20343,73001
+20344,72824,80874
+20345,11022,48021
+20346,56064
+20347,51718
+20348,48827
+20349,13015
+20350,58427
+20351,16292
+20352,19017
+20353,81218
+20354,25918
+20355,53761,30353
+20356,7555
+20357,76457,10515
+20358,36676
+20359,55135
+20360,1209,57382
+20361,19668
+20362,6343
+20363,5080
+20364,11040
+20365,3724
+20366,24610
+20367,20391
+20368,70132
+20369,52716
+20370,25095
+20371,75547
+20372,1040
+20373,81474
+20374,25781
+20375,11823
+20376,45643
+20377,49412
+20378,32551
+20379,79689
+20380,58468
+20381,12662,38865
+20382,18999,24932
+20383,78244
+20384,10624
+20385,15316
+20386,66211,74619
+20387,63627
+20388,34639
+20389,51929
+20390,51003
+20391,38107
+20392,40030
+20393,81488
+20394,21743
+20395,79677
+20396,26713
+20397,58644
+20398,39427
+20399,21809
+20400,17891
+20401,57090
+20402,31014
+20403,19490
+20404,38015,31561
+20405,7155
+20406,76448
+20407,30145,48479
+20408,46838
+20409,2742
+20410,82173,7919
+20411,582
+20412,36283,31998,10492
+20413,8024
+20414,76425
+20415,17241
+20416,29635
+20417,14652
+20418,11859
+20419,36020
+20420,73090
+20421,81422
+20422,63298
+20423,46867,30215
+20424,32915
+20425,19490
+20426,71151
+20427,6155
+20428,34549,16108,10462
+20429,72531
+20430,70784
+20431,34597
+20432,70181
+20433,23074
+20434,30120
+20435,49362
+20436,74656,42516
+20437,58851
+20438,33194
+20439,68871,56970
+20440,17779,74079
+20441,41806,36463
+20442,41482
+20443,75640
+20444,80294
+20445,47000,59244
+20446,22612
+20447,16457
+20448,58589
+20449,63716
+20450,24573,60235
+20451,1660
+20452,21038
+20453,38435
+20454,24498
+20455,9946,15579
+20456,76131
+20457,55093
+20458,44434
+20459,69773,62857
+20460,50348
+20461,41293
+20462,41868
+20463,33313
+20464,60548
+20465,51589
+20466,50877
+20467,54653
+20468,23964
+20469,29893
+20470,49875
+20471,40634
+20472,16581
+20473,56215
+20474,8245
+20475,21151,16697
+20476,81590
+20477,62092
+20478,49174
+20479,70469,59324
+20480,18811
+20481,60634
+20482,56398
+20483,6481,50041
+20484,6343
+20485,23316,68207
+20486,14907
+20487,46438
+20488,67642
+20489,78897
+20490,15599
+20491,13150
+20492,60122
+20493,1219
+20494,52391
+20495,8271
+20496,24066
+20497,20510
+20498,55170,78911
+20499,80578
+20500,72389
+20501,15304,32029
+20502,62908
+20503,5544,35270
+20504,76694
+20505,25228,9875
+20506,80455
+20507,80763
+20508,28481
+20509,51106
+20510,40028
+20511,67686,53936
+20512,71621
+20513,81430,41071
+20514,72271
+20515,49430
+20516,10697,22512
+20517,6314
+20518,78645
+20519,61575
+20520,80667,5849
+20521,44624,41614
+20522,18229,12348
+20523,42641,81410
+20524,13387
+20525,70600
+20526,8595
+20527,60853
+20528,30513
+20529,28867
+20530,17444
+20531,65336
+20532,80170,4959
+20533,65651
+20534,79979
+20535,12722
+20536,10084
+20537,34412
+20538,69567
+20539,44500
+20540,19011
+20541,64767
+20542,34502
+20543,11986
+20544,17896
+20545,25369
+20546,47954
+20547,13829
+20548,12822
+20549,66860
+20550,37947
+20551,51724
+20552,1422
+20553,12392
+20554,24704
+20555,74828,19791
+20556,7612
+20557,62479
+20558,56310,33176
+20559,38395
+20560,65253
+20561,68958
+20562,10370
+20563,47550
+20564,4500
+20565,21873
+20566,71930,53241,45620
+20567,37589
+20568,75448
+20569,6555
+20570,57887,37328
+20571,55233
+20572,18006
+20573,43407
+20574,31263
+20575,48616,28205
+20576,28155
+20577,74914,48409,50769
+20578,77014,63644
+20579,23641
+20580,38032
+20581,12879
+20582,51735
+20583,31262,47935
+20584,15502
+20585,80092
+20586,61100,4083
+20587,50961
+20588,5902
+20589,67963
+20590,52599,44290
+20591,17826
+20592,69490
+20593,45249
+20594,79924
+20595,9224
+20596,10270
+20597,16006
+20598,28926
+20599,50282
+20600,62105
+20601,27820
+20602,11972
+20603,36589
+20604,24930
+20605,66830
+20606,71776
+20607,60043,14571
+20608,27704
+20609,39096
+20610,82009,58499
+20611,29184
+20612,10542
+20613,57757,6768
+20614,30105,2392
+20615,11809
+20616,20978
+20617,75910
+20618,34894,31812
+20619,30895,33944
+20620,32496
+20621,16332
+20622,14014
+20623,70389,40590
+20624,27585
+20625,1024
+20626,18905
+20627,49197,16829
+20628,4471
+20629,10868,74527
+20630,78820,34219
+20631,47781,38796
+20632,40619
+20633,50909
+20634,61336
+20635,24641
+20636,62033
+20637,51556
+20638,5639
+20639,76228
+20640,49756
+20641,40616
+20642,44069
+20643,82090
+20644,12675
+20645,67571
+20646,51043,67838
+20647,63632
+20648,57094
+20649,13179
+20650,21838
+20651,43175
+20652,30014
+20653,10229,21581
+20654,62081,19209
+20655,17784
+20656,18729
+20657,4549
+20658,25249
+20659,75778,32208
+20660,74941,72597
+20661,81318,76810
+20662,2778
+20663,24440
+20664,29470
+20665,50462,49962
+20666,25603
+20667,5828,22436
+20668,4062
+20669,36771,56208
+20670,60796
+20671,45222,68360,77117
+20672,23369
+20673,42979
+20674,34795,54253
+20675,28489
+20676,68847
+20677,16884
+20678,6996,11620
+20679,82095,43403
+20680,36246
+20681,49238
+20682,11794
+20683,53005,20412
+20684,76834
+20685,33270
+20686,42233,59940,7010
+20687,79548
+20688,71394
+20689,51100
+20690,20510,40831
+20691,13434,77462
+20692,41862
+20693,46780
+20694,65459
+20695,39646,23787
+20696,69141,73495
+20697,65420
+20698,23942
+20699,16775,70204
+20700,4814
+20701,17873,80191
+20702,47767,55103
+20703,64299
+20704,16399,16751
+20705,64608,15493
+20706,51049
+20707,30688
+20708,19535,13822,82184
+20709,924,72534
+20710,65191
+20711,35759
+20712,70692
+20713,64343
+20714,46964
+20715,66463,46913
+20716,17075
+20717,76905
+20718,58698,45734
+20719,78527,6443
+20720,20693
+20721,57801
+20722,52728
+20723,38878,7337
+20724,47810
+20725,25480
+20726,52099,39262
+20727,60710
+20728,61436
+20729,1610
+20730,55160
+20731,17616
+20732,66380
+20733,56317,39534,22333
+20734,55011
+20735,54609
+20736,31719,58210,16599,33887
+20737,18812
+20738,31168
+20739,33422
+20740,10708
+20741,61065
+20742,27906
+20743,36698
+20744,2181
+20745,39539
+20746,4642
+20747,58687
+20748,54073
+20749,68989
+20750,55932
+20751,72052
+20752,57477
+20753,65236
+20754,25635
+20755,42368
+20756,24442,42959
+20757,78455
+20758,18336
+20759,69213
+20760,13979,37834
+20761,61492
+20762,73722
+20763,41240
+20764,21810
+20765,81138
+20766,9793
+20767,32013
+20768,38348
+20769,28114
+20770,46911
+20771,9056,79309
+20772,53979
+20773,75570
+20774,31124
+20775,69679
+20776,75757,70054
+20777,53016
+20778,60702
+20779,3406
+20780,45191
+20781,78357,31344,10548,12354
+20782,32110,30475
+20783,33324
+20784,63664
+20785,38230
+20786,6602
+20787,18360
+20788,31830,66294
+20789,74787
+20790,75597
+20791,35684
+20792,4919,45496
+20793,59122,2597
+20794,50256
+20795,80698
+20796,36140,4633
+20797,73002,10945
+20798,40739
+20799,5565
+20800,26660,32350
+20801,60526
+20802,21354
+20803,44376,18089
+20804,81153
+20805,24523
+20806,35008
+20807,53125
+20808,2240
+20809,5690
+20810,47255
+20811,29587,54718,57640
+20812,60826
+20813,72370,77265
+20814,69253
+20815,9667,75421
+20816,80010,513
+20817,70009
+20818,26382
+20819,2249
+20820,52826
+20821,76756
+20822,30084
+20823,74482
+20824,65561
+20825,210
+20826,12720
+20827,59033
+20828,70606,78954
+20829,490
+20830,1556
+20831,60410
+20832,21794,68093,32620
+20833,11004,58321
+20834,3400
+20835,29336
+20836,47439
+20837,3162
+20838,60313
+20839,71883
+20840,19685
+20841,70102,76197
+20842,12922
+20843,7500,21626
+20844,6933
+20845,21982
+20846,31287
+20847,65281
+20848,16532,30227
+20849,45282
+20850,64824
+20851,21345
+20852,58583
+20853,8396
+20854,25190
+20855,30422
+20856,36498
+20857,33785,48065
+20858,70717,12272
+20859,61796
+20860,72576
+20861,72773
+20862,30999
+20863,32038,50906
+20864,50918
+20865,24113,40522
+20866,71129
+20867,35880
+20868,19072,30728
+20869,60194
+20870,5351
+20871,59740
+20872,45188
+20873,73716
+20874,61257
+20875,72631,70195
+20876,32122
+20877,71410
+20878,57041
+20879,41051
+20880,21194
+20881,80309
+20882,21205
+20883,42028,63171
+20884,51486
+20885,15506
+20886,75376
+20887,72910
+20888,19123
+20889,65206
+20890,14151
+20891,5723
+20892,62444,28290
+20893,55598
+20894,52912
+20895,65653
+20896,46867
+20897,48551
+20898,20424
+20899,30819
+20900,26870,2514
+20901,36092
+20902,5960
+20903,4470
+20904,48699
+20905,52945
+20906,25091
+20907,63326,13160
+20908,54341,55362
+20909,47717
+20910,27520
+20911,66778
+20912,8191
+20913,66057
+20914,58159
+20915,14878
+20916,49892,48060
+20917,25463
+20918,44145
+20919,50081
+20920,27840
+20921,35881,64069
+20922,64774,14454
+20923,66679
+20924,59223
+20925,29268
+20926,75560
+20927,36652
+20928,38009
+20929,80171
+20930,63038,25255
+20931,71394
+20932,64999,25996
+20933,52899
+20934,10551
+20935,29474
+20936,5514
+20937,27410
+20938,55874
+20939,63700
+20940,69233
+20941,60997
+20942,35013
+20943,77675
+20944,46230
+20945,4789
+20946,32083
+20947,77276
+20948,34575,61927
+20949,60961
+20950,75536,55853,10962
+20951,72342
+20952,2540
+20953,55629
+20954,75671
+20955,52704
+20956,33225,9400,61390
+20957,1626
+20958,60146
+20959,30064,82123
+20960,10033
+20961,76547,10557,60688
+20962,1722
+20963,77896
+20964,78674
+20965,78984
+20966,22637
+20967,22032
+20968,47587
+20969,61442
+20970,62112
+20971,36251
+20972,43451
+20973,49771
+20974,51656
+20975,48317
+20976,70162
+20977,54454
+20978,38309
+20979,7514
+20980,71604
+20981,24114
+20982,18749
+20983,31949
+20984,40052
+20985,11544
+20986,65795
+20987,13373
+20988,67139
+20989,33185
+20990,46461
+20991,53557
+20992,33843,37831
+20993,48356
+20994,76639
+20995,49932
+20996,8970,6198
+20997,39866
+20998,45242
+20999,7641
+21000,59447,66701
+21001,2202
+21002,49599,37903
+21003,52876
+21004,65943
+21005,64582
+21006,47625,16419
+21007,60983
+21008,11339,57775
+21009,48276,44868
+21010,58046
+21011,3777
+21012,40083,43276
+21013,27353
+21014,38518
+21015,35992
+21016,73108,51517
+21017,4230
+21018,80535
+21019,31008,14793
+21020,40339
+21021,41150
+21022,66224
+21023,812
+21024,22912
+21025,6474
+21026,13861,40401
+21027,245,22284
+21028,56647,70083
+21029,61392
+21030,9311
+21031,4366,8919
+21032,23132,38775
+21033,50505
+21034,4024
+21035,4676,61096
+21036,11916
+21037,37380,69385
+21038,15966
+21039,22766,12476
+21040,52818
+21041,46208
+21042,15680
+21043,44712
+21044,71144
+21045,63984
+21046,39738
+21047,57689
+21048,63182
+21049,32212
+21050,72164
+21051,31972
+21052,52084
+21053,64419
+21054,68885
+21055,45373
+21056,1441
+21057,65924
+21058,41205
+21059,47109
+21060,2600
+21061,48067
+21062,68539,57224
+21063,52013
+21064,57220
+21065,1194,8465
+21066,7362,29205
+21067,14147,33474
+21068,20899,71660
+21069,48330
+21070,47430,44287
+21071,59380
+21072,21137
+21073,63473
+21074,5521
+21075,58022
+21076,10522
+21077,5017
+21078,46761
+21079,14839
+21080,78348
+21081,26771
+21082,23786
+21083,47844
+21084,9585
+21085,15168,11316
+21086,30362
+21087,4980
+21088,20437
+21089,81246,59525,20915
+21090,62209
+21091,69563
+21092,81201
+21093,73645
+21094,61287
+21095,38218
+21096,24551,46774
+21097,58746
+21098,58001
+21099,29868
+21100,21063
+21101,50161
+21102,59614
+21103,45913
+21104,19919
+21105,19442
+21106,17167
+21107,733
+21108,44172
+21109,28630
+21110,52286
+21111,28438
+21112,38643,79845,81946
+21113,49539
+21114,53999,12403
+21115,77736
+21116,41367,10131
+21117,19628
+21118,58416
+21119,12046
+21120,6126
+21121,9949,71265
+21122,54662
+21123,47332
+21124,19587
+21125,64227
+21126,23463
+21127,3776
+21128,60928
+21129,52874
+21130,55439
+21131,16375
+21132,54506
+21133,16073
+21134,59400
+21135,23866
+21136,61692
+21137,64068
+21138,48530
+21139,65192
+21140,46235
+21141,12530
+21142,41773,70192
+21143,42104
+21144,50496
+21145,59622
+21146,20022
+21147,38031,31105
+21148,11094,78944
+21149,21064,34471
+21150,60144
+21151,75162
+21152,38338
+21153,5688
+21154,24073,60773
+21155,64257
+21156,3918
+21157,41396
+21158,41282
+21159,68311
+21160,26649,9957
+21161,15894,46760
+21162,32666,78491
+21163,67419
+21164,22492,20922
+21165,2324
+21166,62515
+21167,11314
+21168,34419
+21169,49605
+21170,36145,888,80598
+21171,6582
+21172,69272
+21173,11090
+21174,35234
+21175,37117
+21176,73498,23274
+21177,63949
+21178,44733
+21179,60480,43452
+21180,6613,6149
+21181,38347
+21182,16645
+21183,13863
+21184,18306
+21185,35632
+21186,28334
+21187,6964
+21188,45509
+21189,63646
+21190,81853,38189
+21191,50429
+21192,18627
+21193,49091,75019
+21194,57679
+21195,53562
+21196,3386,57396
+21197,69873
+21198,16990
+21199,5425
+21200,13752
+21201,38146
+21202,14852
+21203,80068
+21204,14804
+21205,39075
+21206,47905
+21207,48755
+21208,30041,16179
+21209,54886
+21210,3844,6891
+21211,5061
+21212,70329
+21213,28478
+21214,49953
+21215,48689
+21216,14907
+21217,46200
+21218,20287
+21219,3754
+21220,30325,37601
+21221,69014,12885
+21222,13522,30402,61607
+21223,68779,61499
+21224,32574
+21225,44594
+21226,11315,37038,38129
+21227,50236,15444
+21228,20962
+21229,33005
+21230,8936
+21231,71324
+21232,6494
+21233,66235,57011,57297
+21234,16195
+21235,31168
+21236,39669
+21237,34510
+21238,78615
+21239,44679
+21240,46154
+21241,42014
+21242,1783
+21243,61835
+21244,80981
+21245,47166,14114
+21246,68063
+21247,15569
+21248,60320
+21249,73560
+21250,44519
+21251,5165
+21252,18592
+21253,187
+21254,64374
+21255,36715
+21256,38461
+21257,15198
+21258,71757
+21259,52728,13491
+21260,21252
+21261,62354
+21262,60102,40963
+21263,27069
+21264,2917
+21265,31986
+21266,74077,30585
+21267,78015
+21268,53736
+21269,7106
+21270,51396
+21271,57882
+21272,57197
+21273,23177
+21274,39055
+21275,4315
+21276,75082,59197
+21277,47683
+21278,69748
+21279,70030,369
+21280,29291
+21281,31651
+21282,34472
+21283,74154,80143
+21284,51118,14376,49068,75773
+21285,47423,5159
+21286,7840
+21287,24228
+21288,4282
+21289,81212
+21290,66029
+21291,1484
+21292,57260
+21293,24708
+21294,24770
+21295,19421
+21296,61826,43812,64394
+21297,24935
+21298,62684
+21299,4420
+21300,32360
+21301,33825,20202
+21302,29149,1602
+21303,25202
+21304,12128
+21305,30533
+21306,48642
+21307,31916
+21308,34169
+21309,283
+21310,57790
+21311,22677
+21312,46197
+21313,15669,21467
+21314,2249
+21315,273
+21316,17163
+21317,61279
+21318,587
+21319,8476
+21320,67122
+21321,24209
+21322,19749
+21323,66921,2568
+21324,45214
+21325,37870
+21326,92
+21327,35829
+21328,35630
+21329,66246,80212,41644
+21330,65896
+21331,399
+21332,12256
+21333,8057
+21334,79180,41744
+21335,79211
+21336,53381,36424,35925
+21337,78894
+21338,79846
+21339,32454,43516
+21340,19346,46696
+21341,45170,64701
+21342,67356,25337
+21343,69997
+21344,75881
+21345,81916
+21346,61779
+21347,47187
+21348,43664
+21349,67410
+21350,4096
+21351,54325,23893
+21352,68239
+21353,14185
+21354,78346
+21355,24810
+21356,58796
+21357,78846
+21358,75383,69792
+21359,63903
+21360,7950
+21361,38444
+21362,50607
+21363,61361
+21364,45151
+21365,40475,12877
+21366,55987
+21367,44959
+21368,49220,79800
+21369,12190
+21370,34399
+21371,69284
+21372,70749
+21373,21449,4629
+21374,32160
+21375,25673
+21376,21645
+21377,72282
+21378,7038
+21379,613
+21380,78267,40433
+21381,33898
+21382,54774,79046
+21383,626,28379
+21384,19183
+21385,32085
+21386,66104
+21387,22846
+21388,12645,42246
+21389,14520
+21390,21874
+21391,34635
+21392,9734
+21393,37792
+21394,29357
+21395,34872
+21396,18077,50819
+21397,58370,75282
+21398,61891,34135,18240
+21399,46373
+21400,72230
+21401,72941
+21402,45222
+21403,44690
+21404,8035,25196
+21405,71633
+21406,49394
+21407,69368
+21408,79553,25649
+21409,49619,74086,15257
+21410,29497
+21411,26501,30242
+21412,42970
+21413,891
+21414,28701
+21415,44996,40851
+21416,43402
+21417,11155
+21418,55870
+21419,74436
+21420,28061
+21421,47434,36660,18503
+21422,45444
+21423,20280
+21424,62924
+21425,14759
+21426,21343
+21427,43699
+21428,30978,28492
+21429,47204
+21430,10823
+21431,69320
+21432,11027
+21433,35830
+21434,52509
+21435,19422
+21436,42834
+21437,19423
+21438,4898
+21439,69378
+21440,72994
+21441,6644,47974
+21442,51513
+21443,77723
+21444,63671,59489
+21445,25719
+21446,3240
+21447,63068
+21448,1632,31945,21985
+21449,4991
+21450,6575,38118
+21451,31108
+21452,20059
+21453,58604
+21454,40347
+21455,14282
+21456,62053
+21457,3956
+21458,16714,58404
+21459,19105,58407
+21460,12150
+21461,25178
+21462,37594
+21463,4825
+21464,40775
+21465,59779
+21466,35384
+21467,33140
+21468,16872,67742
+21469,15951
+21470,80767
+21471,39252
+21472,17749
+21473,36201,67218
+21474,15008
+21475,80299
+21476,5559,34082,69693
+21477,15112,73996
+21478,79234
+21479,56455
+21480,37657,34613
+21481,76056
+21482,78700
+21483,17555,75002
+21484,18422,46846
+21485,29177
+21486,57243
+21487,28637
+21488,17961
+21489,9943,57265
+21490,22764
+21491,874,65024,49823
+21492,16832
+21493,52528
+21494,63432
+21495,54038
+21496,75829
+21497,47980
+21498,65641
+21499,45575,7926
+21500,36086
+21501,22449
+21502,16263
+21503,47788
+21504,46027
+21505,15506
+21506,60791
+21507,64350
+21508,30968
+21509,64766
+21510,34727
+21511,22708
+21512,21692
+21513,26178
+21514,1253
+21515,41954
+21516,66891
+21517,17829,13541
+21518,79849,16257
+21519,58825
+21520,65753,55412
+21521,10156
+21522,78472
+21523,37912,76659
+21524,52912
+21525,65415
+21526,60327
+21527,6281,3858
+21528,75008
+21529,31090
+21530,7015,51673
+21531,43994
+21532,16763
+21533,59102
+21534,41844
+21535,33700
+21536,11889
+21537,38071
+21538,31908,2369
+21539,67171
+21540,9069,3898
+21541,9161
+21542,21367
+21543,43338
+21544,39202,18649
+21545,64410
+21546,76259
+21547,9722,31646
+21548,3319
+21549,74720
+21550,21974,28942
+21551,5064,39042
+21552,45663,15583
+21553,16282
+21554,51893,29960
+21555,57415,35145
+21556,30971,10783
+21557,43819
+21558,49221
+21559,54938
+21560,18944
+21561,79489
+21562,80249
+21563,8196
+21564,28076
+21565,73252,39357
+21566,58249
+21567,39422
+21568,77179
+21569,51438
+21570,13988
+21571,926
+21572,23778
+21573,45820
+21574,58608
+21575,4403,48242,57662
+21576,29562
+21577,70077
+21578,27331
+21579,11515
+21580,43783
+21581,22320
+21582,64902,74999
+21583,79408
+21584,73074
+21585,20422
+21586,46223
+21587,53273
+21588,53367
+21589,3365
+21590,8664
+21591,71848,45360
+21592,49475
+21593,32243
+21594,41817
+21595,61293,73994,6890
+21596,15730
+21597,2849
+21598,75555
+21599,57302
+21600,20444,81596
+21601,37516
+21602,22324
+21603,36611
+21604,13875
+21605,73927,69717
+21606,43629
+21607,81893
+21608,7696
+21609,43504
+21610,38042
+21611,58499,75562
+21612,47666
+21613,43012
+21614,43895
+21615,33949
+21616,50324
+21617,62807
+21618,72278
+21619,44549
+21620,17031
+21621,48202,74543
+21622,2116
+21623,62381
+21624,23815
+21625,75042
+21626,66513
+21627,55261
+21628,31374
+21629,74017
+21630,65624,56821
+21631,8549,42098,18777
+21632,29395
+21633,69850
+21634,68087
+21635,81806,48398
+21636,29381
+21637,10052
+21638,942
+21639,12944
+21640,70736
+21641,3516
+21642,54237
+21643,12392
+21644,38932
+21645,22099
+21646,43999
+21647,4007
+21648,67870,78056
+21649,56220
+21650,58406
+21651,60201
+21652,22736,72739
+21653,39250
+21654,23727,61509
+21655,23323
+21656,69067
+21657,42627,1038
+21658,17541
+21659,36201
+21660,50625,18569
+21661,15916
+21662,46474
+21663,19420,79989
+21664,9200
+21665,78998
+21666,72008
+21667,27038
+21668,80307
+21669,22444
+21670,54903
+21671,20526,35956
+21672,43492
+21673,24172
+21674,984,32597
+21675,67509
+21676,54496
+21677,6918
+21678,63038
+21679,63841
+21680,44313,81850
+21681,5718,35524
+21682,51853,19576
+21683,81324,69786
+21684,26820,13855
+21685,37034
+21686,46390
+21687,39501
+21688,44310
+21689,37853
+21690,14727,74431,28098
+21691,33691
+21692,49092
+21693,36715
+21694,48033
+21695,30972
+21696,24791
+21697,74723
+21698,11055
+21699,30780
+21700,80547
+21701,56188
+21702,21841,7275
+21703,16263
+21704,34647
+21705,37815
+21706,80630
+21707,75996
+21708,67895
+21709,8897,43982
+21710,25932
+21711,80645
+21712,78265
+21713,42910,19197
+21714,53219
+21715,22912
+21716,51027
+21717,72619,22337
+21718,55975
+21719,63222,40733
+21720,48987
+21721,67860
+21722,55835
+21723,81638,17994
+21724,69551
+21725,31031
+21726,61288,62664
+21727,69085
+21728,25265
+21729,6974
+21730,58485,37448
+21731,30343
+21732,26434
+21733,62651
+21734,65424
+21735,15373
+21736,54255,41100
+21737,9976
+21738,61088
+21739,22320
+21740,15984
+21741,59171,61358,35536
+21742,35577,43547
+21743,82045
+21744,40177,72514
+21745,21501
+21746,18302,56188
+21747,24980,66751
+21748,42055
+21749,57588
+21750,48305
+21751,54203
+21752,79431
+21753,20978
+21754,21882
+21755,45373
+21756,39659,40416
+21757,41807
+21758,3185
+21759,24747
+21760,71526
+21761,32659
+21762,49230
+21763,42715
+21764,20195
+21765,30375
+21766,74281
+21767,69717
+21768,5960
+21769,56955
+21770,60230
+21771,3516
+21772,45273
+21773,49435
+21774,52829
+21775,70412
+21776,24235
+21777,20840
+21778,81067,31634
+21779,72381
+21780,45893
+21781,1200
+21782,15049,3718
+21783,59198
+21784,20215
+21785,50502
+21786,48899,50822
+21787,3577,23192
+21788,53844
+21789,12993
+21790,38102
+21791,70756
+21792,69621
+21793,66929
+21794,70073
+21795,69562
+21796,63077
+21797,26983
+21798,40861,54446
+21799,4913,37107
+21800,1436
+21801,14112
+21802,67210
+21803,56689
+21804,69711
+21805,45429
+21806,62270
+21807,61431,80545
+21808,81590
+21809,77960
+21810,40890
+21811,77305,40721,25580
+21812,49095
+21813,63768
+21814,30724,74320
+21815,64445,63818
+21816,29268
+21817,52728,10950
+21818,28823,5530
+21819,29110
+21820,23888,12698
+21821,59368,54883
+21822,55449
+21823,80717,80475,15507
+21824,29216
+21825,51118
+21826,8088
+21827,41722,8137
+21828,42972
+21829,70285
+21830,14673
+21831,70301
+21832,37560
+21833,9908,11369
+21834,29362
+21835,78645
+21836,67734
+21837,67231
+21838,33716
+21839,65572,48082,56104
+21840,57774
+21841,28921
+21842,75291
+21843,81627
+21844,10897
+21845,37395
+21846,25229
+21847,66290,30975
+21848,66960
+21849,30856
+21850,5063
+21851,28202
+21852,70197
+21853,7173
+21854,64567
+21855,75165
+21856,53013
+21857,70338
+21858,52482
+21859,41055,27707
+21860,10071
+21861,44498
+21862,32348
+21863,42925
+21864,79998,41202
+21865,20257
+21866,66680,45574
+21867,18844,47598
+21868,48072
+21869,75889
+21870,30396
+21871,8252
+21872,42315
+21873,31025
+21874,12438
+21875,74482
+21876,59410
+21877,51088
+21878,76278,20579
+21879,24287
+21880,65044
+21881,60474,5388
+21882,29312
+21883,53453
+21884,61262,74661
+21885,7838
+21886,30529
+21887,23462
+21888,13555
+21889,69864
+21890,26200,66070
+21891,50440
+21892,20915
+21893,17794,2540
+21894,32893
+21895,44090,20798
+21896,17471
+21897,52152,11167
+21898,45306
+21899,55085
+21900,7201
+21901,60610,25643
+21902,74306
+21903,15665
+21904,22709
+21905,43753,28381
+21906,1757
+21907,25265
+21908,56309
+21909,46674
+21910,22898,18638
+21911,81446,18665
+21912,64495,2405,30044
+21913,2219
+21914,72122
+21915,30424
+21916,62659
+21917,70835
+21918,11852,22026
+21919,26010
+21920,38027,29893
+21921,70167
+21922,2669
+21923,62323
+21924,6715
+21925,78113
+21926,10307
+21927,39415
+21928,51818
+21929,56863
+21930,48571
+21931,18659
+21932,73349
+21933,61422
+21934,72761
+21935,22851
+21936,25593
+21937,10380
+21938,31532,82154
+21939,36428
+21940,50215,79600
+21941,79766
+21942,59328,4572
+21943,26330,41668
+21944,39837
+21945,27569
+21946,47092
+21947,39188,62666
+21948,56294
+21949,30854
+21950,68799,40445
+21951,24366
+21952,721
+21953,20300,46504
+21954,9556,67084
+21955,53160
+21956,39974,80297
+21957,36797
+21958,64260
+21959,17130
+21960,36736
+21961,16067,77768
+21962,8196
+21963,17595
+21964,73849,14524
+21965,51947
+21966,79286,75868
+21967,73501
+21968,18948
+21969,43598
+21970,74792
+21971,69943
+21972,26105
+21973,3299
+21974,32667
+21975,50628
+21976,44338
+21977,68270,62066
+21978,64686
+21979,64393
+21980,15453
+21981,78138
+21982,47281
+21983,75149
+21984,75184
+21985,77103,12991
+21986,42264
+21987,64902
+21988,32495
+21989,77065
+21990,17953
+21991,39485
+21992,6855
+21993,71275
+21994,12835
+21995,51655
+21996,65903,53042
+21997,14674
+21998,33109
+21999,77558
+22000,66723
+22001,18924
+22002,41939,24171
+22003,7235,64454,69085
+22004,76595
+22005,9628
+22006,42250
+22007,55267
+22008,58854
+22009,82004,71293
+22010,26743
+22011,59446
+22012,3428
+22013,69500
+22014,53920
+22015,19573
+22016,49847
+22017,44241,64565
+22018,24958
+22019,41226
+22020,857
+22021,19945
+22022,5119
+22023,70210
+22024,45217
+22025,3041
+22026,41807
+22027,26093
+22028,32228
+22029,14740
+22030,66525
+22031,55009
+22032,71909
+22033,30146
+22034,53525
+22035,13742
+22036,64482
+22037,58517
+22038,33184
+22039,34121,53196
+22040,492
+22041,20891
+22042,3663
+22043,43437
+22044,10543
+22045,33112
+22046,33608
+22047,72904
+22048,1170
+22049,65859,23763
+22050,45791,3659
+22051,50560
+22052,60029
+22053,10230
+22054,29546
+22055,45111
+22056,32786
+22057,11725
+22058,25244,36628
+22059,69635,2623
+22060,81847
+22061,42034
+22062,22721
+22063,25794
+22064,17480
+22065,31710
+22066,2414,36733
+22067,55688
+22068,18069
+22069,12387
+22070,8176
+22071,11429,43008
+22072,23795
+22073,80339
+22074,33526,34042
+22075,72026
+22076,44891
+22077,80762,47281
+22078,71330,42796
+22079,80739
+22080,4358
+22081,32013
+22082,75400
+22083,71546,16102
+22084,80060
+22085,10556
+22086,8380
+22087,33095
+22088,30978,9580
+22089,81913
+22090,66952
+22091,45609
+22092,43638
+22093,69766
+22094,25954,82016
+22095,41667
+22096,25903
+22097,44895
+22098,30540
+22099,18005
+22100,57117
+22101,63300
+22102,53517,76793
+22103,36516
+22104,70401,40422
+22105,43046
+22106,32836,69105,38602
+22107,336
+22108,77598
+22109,35573
+22110,1159
+22111,81322
+22112,19993
+22113,14862
+22114,14285
+22115,78844
+22116,69314
+22117,66858
+22118,20549
+22119,79184
+22120,4191
+22121,67797
+22122,42421
+22123,79543,65513
+22124,8055
+22125,76470,6841
+22126,55088
+22127,8194
+22128,76948
+22129,67140
+22130,13983
+22131,78491
+22132,75485
+22133,15199
+22134,24926
+22135,67792
+22136,71964,16582
+22137,41782
+22138,31791
+22139,78259
+22140,70532
+22141,16926
+22142,9823
+22143,64362,58181
+22144,76365
+22145,6778
+22146,81212,50232
+22147,42477,69214,21822
+22148,15606,41622
+22149,39043
+22150,31281
+22151,11986
+22152,11647,53070
+22153,10970
+22154,41884,15261
+22155,31757
+22156,59669
+22157,10819
+22158,32677
+22159,61712
+22160,57988,14474
+22161,73150
+22162,45354
+22163,4779
+22164,75628
+22165,76027
+22166,35152
+22167,80815
+22168,68827
+22169,40666
+22170,30070
+22171,33458,51082
+22172,25346
+22173,34024
+22174,54521,28685
+22175,62523
+22176,76111,36105
+22177,30765,51948
+22178,20059,31168
+22179,56528
+22180,26649,8782
+22181,20739
+22182,38491
+22183,58534
+22184,14462
+22185,37664
+22186,55340,29863
+22187,3673
+22188,59219
+22189,8284
+22190,56073
+22191,19123
+22192,7728
+22193,71258
+22194,6027
+22195,50637,12165
+22196,70556
+22197,67983
+22198,73943
+22199,31087
+22200,44425
+22201,73060,77977
+22202,33501
+22203,512,34639
+22204,35855
+22205,34584,77642
+22206,44577
+22207,25944
+22208,57870
+22209,5696
+22210,32880
+22211,38699
+22212,416
+22213,27495
+22214,42905
+22215,12790
+22216,14800
+22217,14097
+22218,33020,80759
+22219,74494,69693
+22220,52083
+22221,12588
+22222,63398
+22223,54928
+22224,57478
+22225,73783
+22226,26616
+22227,65832
+22228,33659,33089
+22229,20870
+22230,81474
+22231,5904
+22232,58960
+22233,52879
+22234,4497
+22235,62762
+22236,66424
+22237,50382
+22238,7986,76409
+22239,80074
+22240,62597,40147
+22241,37594,17419
+22242,45357
+22243,28618,50222,73900
+22244,14701
+22245,62515
+22246,48457
+22247,1263
+22248,65861
+22249,3229
+22250,54034
+22251,51552,70796
+22252,21781,53389
+22253,36035
+22254,1092
+22255,22531
+22256,25936
+22257,78019
+22258,35010
+22259,41222
+22260,70017
+22261,71697
+22262,24414
+22263,6699
+22264,21991
+22265,41395
+22266,34537
+22267,33068
+22268,39661
+22269,70329
+22270,22999
+22271,65304
+22272,5816
+22273,48187
+22274,35680
+22275,52084
+22276,71260
+22277,74795,13751,42586
+22278,41569,13875
+22279,76378
+22280,42867
+22281,53741
+22282,906
+22283,21694
+22284,72703
+22285,6228
+22286,55281
+22287,53002
+22288,6450
+22289,79608,48980
+22290,36688
+22291,74341
+22292,54287
+22293,65222,1305
+22294,67626
+22295,8623,17130,19292
+22296,40128
+22297,26343
+22298,38593
+22299,31077
+22300,18905,49813
+22301,36016
+22302,40042
+22303,30982
+22304,46736
+22305,18490
+22306,12553
+22307,39055
+22308,63288
+22309,13173
+22310,29581
+22311,55765,42405
+22312,64350
+22313,58642
+22314,42248
+22315,44249
+22316,37411,62119
+22317,27565
+22318,79738
+22319,30385
+22320,57869
+22321,43501
+22322,12868
+22323,28650
+22324,50015
+22325,23130
+22326,21559
+22327,24440
+22328,28434,16317
+22329,44025
+22330,6182
+22331,54374
+22332,50020
+22333,54718,33699
+22334,32407
+22335,36551
+22336,50793,30904
+22337,68636
+22338,10835
+22339,28300
+22340,36749,78758
+22341,22823
+22342,7289,82113
+22343,41844,67311
+22344,65769
+22345,81732
+22346,16479
+22347,62969,11477
+22348,31055,23927
+22349,29450,32716,27264
+22350,17487
+22351,6349
+22352,68407
+22353,8876
+22354,21164
+22355,30295
+22356,74423
+22357,16431,60725
+22358,48155
+22359,61022
+22360,45216
+22361,48776
+22362,23231
+22363,15077
+22364,67560
+22365,27621
+22366,63685
+22367,11724
+22368,51294
+22369,56181,24302
+22370,69740,827
+22371,71185,54314
+22372,59748
+22373,38893
+22374,14062
+22375,1804
+22376,70395
+22377,55531
+22378,5090
+22379,1963
+22380,32772
+22381,39382,76804
+22382,6579
+22383,63008
+22384,108
+22385,60037,68979
+22386,72263
+22387,19288
+22388,76732,72236
+22389,73186
+22390,11640
+22391,46796
+22392,37730,16938,36787
+22393,43174
+22394,55865
+22395,35009
+22396,52282
+22397,19628
+22398,47073
+22399,48836,21104
+22400,33643
+22401,54655
+22402,38339
+22403,81980
+22404,9286
+22405,79850
+22406,8197,31053,62946
+22407,25308
+22408,16589
+22409,49057
+22410,52680
+22411,10347
+22412,5754,3754
+22413,2837
+22414,2268
+22415,17598
+22416,67883
+22417,73482
+22418,14506,79631
+22419,33012
+22420,51930
+22421,76652,2758
+22422,54863
+22423,40653,18012
+22424,62502
+22425,36841,7049
+22426,4868
+22427,53334
+22428,63360
+22429,4980,72201
+22430,26860,18642
+22431,55406,26486
+22432,15586,22670
+22433,35216
+22434,14637
+22435,1597,44081
+22436,71345
+22437,16023
+22438,11429
+22439,38527,22911
+22440,79750
+22441,15935
+22442,57386
+22443,14093
+22444,28231,66635,64220
+22445,41568
+22446,62642
+22447,35204
+22448,32855
+22449,22860
+22450,45680
+22451,71613
+22452,31619,66952
+22453,50666
+22454,50378
+22455,17548
+22456,51285
+22457,71389
+22458,44078
+22459,23272
+22460,44816
+22461,46622
+22462,79766
+22463,18517,52857
+22464,7383
+22465,13041,49380
+22466,18718
+22467,22587
+22468,62225
+22469,16010,37929
+22470,2870
+22471,950
+22472,34909,9558
+22473,81351
+22474,4354
+22475,6179,5873
+22476,6974
+22477,36492
+22478,77428
+22479,23420
+22480,51116
+22481,12789
+22482,48503
+22483,36101
+22484,79793
+22485,45735
+22486,39962
+22487,23106
+22488,29467
+22489,17026
+22490,52515
+22491,81805
+22492,23364
+22493,28787,37003
+22494,23147
+22495,7661
+22496,38184
+22497,4419
+22498,77869
+22499,5193
+22500,23839
+22501,42806
+22502,59731
+22503,41293
+22504,4568
+22505,38778
+22506,54318
+22507,79585
+22508,53238
+22509,66226
+22510,26566
+22511,68454,73242
+22512,47340
+22513,52303
+22514,68524,58045,54151
+22515,5835
+22516,3140
+22517,58164
+22518,19217,79427,5365
+22519,60757
+22520,44627,36455
+22521,11408,75814
+22522,25933
+22523,50970,73622,16486
+22524,23496
+22525,46292
+22526,23210
+22527,81260
+22528,73457
+22529,8662
+22530,25989,27053
+22531,75099
+22532,20383,28557
+22533,24957
+22534,71589
+22535,21552
+22536,62311
+22537,47842
+22538,43784
+22539,17144
+22540,424,41090
+22541,3981
+22542,13260
+22543,74200
+22544,18170
+22545,33856
+22546,81277
+22547,4183
+22548,51285
+22549,21616
+22550,39738
+22551,71921
+22552,37982
+22553,68877
+22554,4334
+22555,55000
+22556,15538
+22557,46592,28317,42389
+22558,22792
+22559,70700
+22560,36118,3936
+22561,57820,59148
+22562,12427,26783
+22563,82,67468
+22564,26609,10618
+22565,7191
+22566,24113
+22567,15989,20302
+22568,19648
+22569,5132
+22570,36631
+22571,50060,58293
+22572,8837
+22573,81138
+22574,45948
+22575,44147
+22576,25294,14024
+22577,19017,59401
+22578,21705
+22579,13694,53389
+22580,43202
+22581,53486
+22582,18699
+22583,35331
+22584,8051
+22585,33299
+22586,42712
+22587,40789
+22588,70463
+22589,68101
+22590,79538
+22591,33587
+22592,10943
+22593,21873
+22594,11877
+22595,59866
+22596,51208
+22597,17729
+22598,77962
+22599,36632
+22600,63070,49865
+22601,23821
+22602,73384,34450
+22603,56408
+22604,43014
+22605,8768,25444,63844
+22606,44453
+22607,21563
+22608,64508
+22609,73111
+22610,53779
+22611,46203,58290
+22612,18632
+22613,60413
+22614,62969
+22615,77668
+22616,29917,39134
+22617,33665
+22618,25911
+22619,57283
+22620,75582
+22621,31427
+22622,10644
+22623,11425
+22624,70980
+22625,65891
+22626,49906,19582
+22627,28241
+22628,33914
+22629,36151
+22630,32232
+22631,65231
+22632,23914,72921
+22633,3557
+22634,41627
+22635,36841
+22636,42874,11148
+22637,9185
+22638,77275
+22639,21567
+22640,38108
+22641,13544
+22642,49679
+22643,16201
+22644,43566
+22645,17994
+22646,13490
+22647,54865,30639
+22648,59247,17699
+22649,34024
+22650,31745
+22651,1241
+22652,53166
+22653,48050
+22654,5765
+22655,38959
+22656,27293
+22657,44289
+22658,4950
+22659,26479
+22660,40962
+22661,54190
+22662,20654
+22663,11279
+22664,13972
+22665,61656,64718
+22666,49771,34661
+22667,5996
+22668,9148
+22669,79604
+22670,80425
+22671,4467
+22672,72016
+22673,28642
+22674,7191
+22675,52337
+22676,29055
+22677,61434
+22678,44963
+22679,51362
+22680,6225
+22681,24476
+22682,1040
+22683,12594
+22684,59330
+22685,73074
+22686,77192
+22687,30973
+22688,70600,45118
+22689,63288
+22690,67210,63535
+22691,54250
+22692,55457
+22693,24894
+22694,23100,58151
+22695,10823
+22696,71279,30219,77921
+22697,62970,56495
+22698,57725
+22699,35536,53856
+22700,70733
+22701,47052
+22702,50596
+22703,76794
+22704,3418
+22705,72262,37351
+22706,37258
+22707,9982
+22708,35382
+22709,67393
+22710,28412
+22711,26869
+22712,3573
+22713,56011
+22714,19036
+22715,25138
+22716,16168
+22717,32546,44768
+22718,45289
+22719,8022
+22720,10400
+22721,40592
+22722,80556,55954
+22723,24668
+22724,8592
+22725,60747
+22726,62211
+22727,42808,79682
+22728,68399
+22729,30593
+22730,42221
+22731,19399
+22732,36422
+22733,48293
+22734,15171
+22735,76645
+22736,5600
+22737,79321
+22738,967
+22739,39090
+22740,75052
+22741,76927
+22742,54872,80408,43376
+22743,76238
+22744,39575,14646
+22745,80560,32920
+22746,70736
+22747,63263,3495
+22748,10897,36892,11370
+22749,30035
+22750,2581
+22751,5489
+22752,45999
+22753,12167,1926
+22754,77198
+22755,50335
+22756,45253
+22757,56383
+22758,67113,13040,33959
+22759,16173,56161
+22760,20901
+22761,68879
+22762,43879
+22763,81900
+22764,69558
+22765,60083
+22766,21174
+22767,30719
+22768,55798
+22769,24132
+22770,75038
+22771,32788
+22772,35452
+22773,15610
+22774,44425
+22775,25253,48316,56180
+22776,20678,43283
+22777,50569
+22778,24893
+22779,8070
+22780,4164
+22781,38809
+22782,76125
+22783,11433
+22784,34403
+22785,55061
+22786,25178
+22787,67298
+22788,43984
+22789,12711
+22790,65446
+22791,51393
+22792,18301,81235
+22793,61673
+22794,45324
+22795,16948
+22796,57928
+22797,13977
+22798,40040
+22799,36244,74859
+22800,53815
+22801,52334
+22802,60327
+22803,45271
+22804,60045
+22805,79358
+22806,11102
+22807,39496
+22808,2864,40327,62516
+22809,35372
+22810,37
+22811,11794
+22812,34187,26384
+22813,68560
+22814,65456
+22815,44527
+22816,23673
+22817,21212
+22818,43198
+22819,35027
+22820,42617
+22821,62929
+22822,58180
+22823,14758
+22824,31887,10301
+22825,65046
+22826,43728
+22827,43227
+22828,73189
+22829,55014
+22830,69864
+22831,18182
+22832,49086,29814
+22833,38771,11573,52688,46593
+22834,55738,26512
+22835,9652,58741
+22836,3608
+22837,20693
+22838,8496
+22839,31218
+22840,53343
+22841,72282
+22842,21639
+22843,17217
+22844,54796
+22845,37597
+22846,56892
+22847,14357
+22848,21241,8901,35823
+22849,66382
+22850,44791
+22851,15099
+22852,1123
+22853,55104
+22854,35502
+22855,22827
+22856,21360
+22857,58735
+22858,10896
+22859,8602,39874
+22860,70575,64142
+22861,67245,82158
+22862,12167,4858
+22863,38254
+22864,20553
+22865,76629,37518
+22866,74465
+22867,11277
+22868,13013
+22869,4888,43740
+22870,69482
+22871,81861
+22872,47877,4364
+22873,63231
+22874,59125
+22875,24424
+22876,10020
+22877,47258
+22878,25821
+22879,26443
+22880,23911
+22881,22505,59863
+22882,80767
+22883,26842,7802
+22884,2616
+22885,61666
+22886,80974
+22887,4672
+22888,52443
+22889,52480
+22890,14142
+22891,53179
+22892,11452,79096
+22893,32103
+22894,25295,14430
+22895,21568
+22896,6208,62664
+22897,69785
+22898,73600,67200
+22899,80778
+22900,59473
+22901,16581,68405
+22902,60517,3307
+22903,81196
+22904,72942
+22905,60067
+22906,64892
+22907,33436,2072
+22908,42311
+22909,54639
+22910,48201
+22911,55448
+22912,22771
+22913,21405,44046
+22914,66654
+22915,75793
+22916,33532
+22917,48301
+22918,32707
+22919,73808
+22920,6637
+22921,30116
+22922,8297,63289
+22923,24057
+22924,48676
+22925,39279
+22926,41248
+22927,57164,60165
+22928,72834,20889
+22929,1491
+22930,33517
+22931,33562
+22932,202
+22933,47420
+22934,50582
+22935,64326,24727
+22936,9046
+22937,60015
+22938,54006
+22939,44660
+22940,27599
+22941,3966
+22942,27334
+22943,63705
+22944,77486,1661
+22945,41010
+22946,68846,60829
+22947,34895,37301
+22948,42581
+22949,49987
+22950,68536
+22951,64924,8139
+22952,53949
+22953,79503
+22954,35325
+22955,16914,59222
+22956,32660,17086
+22957,7011
+22958,64752
+22959,34927
+22960,39843,45820
+22961,35127
+22962,55065
+22963,81188
+22964,60720
+22965,42445
+22966,44033
+22967,35210
+22968,57836
+22969,57783
+22970,45512
+22971,21282
+22972,72755
+22973,54371
+22974,69321
+22975,60219
+22976,735
+22977,21305,74740
+22978,47331
+22979,31945
+22980,69861
+22981,35387
+22982,26912
+22983,63602
+22984,8055,46795
+22985,50467
+22986,20249
+22987,23674
+22988,52436
+22989,68291
+22990,1534
+22991,8681
+22992,5118,1441,7829
+22993,65815
+22994,23107
+22995,45249
+22996,71423
+22997,17375
+22998,51159
+22999,267
+23000,70439
+23001,34827
+23002,32682
+23003,66514
+23004,8000
+23005,54208
+23006,17626,51108
+23007,57682,51897,5828
+23008,23624,75295
+23009,75144
+23010,52959
+23011,36385
+23012,57861
+23013,10628
+23014,46885
+23015,57681
+23016,33782
+23017,26672
+23018,42477
+23019,27182
+23020,31489
+23021,41079
+23022,7269,30792
+23023,18111
+23024,71520
+23025,76194
+23026,27015
+23027,71959,64068
+23028,1022,26328
+23029,16074
+23030,21282
+23031,60809
+23032,70837,20895
+23033,45975
+23034,26066
+23035,70687
+23036,7130
+23037,28356,15028,75430
+23038,48346
+23039,53379
+23040,49471
+23041,2288
+23042,24594
+23043,13653
+23044,58305
+23045,13532
+23046,39703
+23047,41728
+23048,22163
+23049,48527
+23050,73394
+23051,69128
+23052,41527
+23053,38180
+23054,29168
+23055,57527
+23056,3932,47655
+23057,27237
+23058,72770
+23059,69974
+23060,79331
+23061,33040
+23062,75689
+23063,51819
+23064,58644
+23065,16569
+23066,18346
+23067,48203
+23068,68626
+23069,65451
+23070,3583
+23071,47710
+23072,6161
+23073,77374
+23074,38108
+23075,43923,15666
+23076,8429
+23077,34971
+23078,15640
+23079,49444,58843
+23080,62908
+23081,32254
+23082,78776,56335
+23083,260,76409
+23084,28233
+23085,16353
+23086,12131
+23087,50796
+23088,59941
+23089,34148
+23090,70604
+23091,69202
+23092,49766
+23093,71874
+23094,1238,67116
+23095,17932
+23096,78808
+23097,29767
+23098,5575
+23099,75006
+23100,48355,29100
+23101,50901
+23102,45102
+23103,69858
+23104,52031
+23105,17393
+23106,18857
+23107,64931
+23108,76757
+23109,77045
+23110,20486
+23111,32935
+23112,66647
+23113,79247,41144,21714
+23114,39934
+23115,7215
+23116,12012
+23117,7783
+23118,41985
+23119,8738
+23120,33534
+23121,76546
+23122,17329
+23123,33305
+23124,13460
+23125,52874
+23126,32959
+23127,12218,27058
+23128,35723,18207
+23129,66592
+23130,42719
+23131,68119
+23132,76738
+23133,26869
+23134,53221
+23135,42372
+23136,5540,5231
+23137,53761
+23138,53730,14400
+23139,24429,22419
+23140,34783,72068
+23141,3295
+23142,36892
+23143,24366
+23144,75927
+23145,68775
+23146,14763
+23147,63999
+23148,34538
+23149,68756
+23150,65769
+23151,7540
+23152,50341
+23153,45206
+23154,44034
+23155,18876
+23156,14371
+23157,71944,20049
+23158,72926
+23159,15734
+23160,45151
+23161,46111
+23162,76755
+23163,73962
+23164,51256
+23165,29892,73442
+23166,31158
+23167,46759
+23168,46032,35586
+23169,61246
+23170,31441,2202
+23171,8840
+23172,38849
+23173,49236
+23174,62261
+23175,80586,31806
+23176,24100,45366
+23177,10551
+23178,21079,25044
+23179,61360
+23180,3086,49671,46661
+23181,38554,31223
+23182,49684
+23183,55982
+23184,75560
+23185,759
+23186,5716
+23187,13295
+23188,596,39411
+23189,24644
+23190,55623
+23191,23411
+23192,43288
+23193,32052,30841
+23194,33043
+23195,43031
+23196,68657
+23197,72577
+23198,9862
+23199,12565
+23200,77515
+23201,65989,4927
+23202,54480
+23203,17434
+23204,30350,71399
+23205,71960
+23206,3673,15492
+23207,62954
+23208,73571
+23209,19406
+23210,16780
+23211,1583
+23212,78686
+23213,12163
+23214,41326,49961,9299
+23215,1973
+23216,30353
+23217,36685,29955
+23218,70252
+23219,62089
+23220,71152,64253
+23221,24507
+23222,53257,47717
+23223,77960
+23224,20306,46452,62315,50299
+23225,12166
+23226,41090
+23227,39643
+23228,1783
+23229,51049,10136
+23230,33310
+23231,46897
+23232,70391
+23233,50631
+23234,63352
+23235,69520
+23236,67653
+23237,14359
+23238,44475
+23239,9101,52652,1306,64616
+23240,45548
+23241,17873
+23242,77865
+23243,2502
+23244,81639
+23245,67063
+23246,67115
+23247,50757
+23248,42130
+23249,45157
+23250,62657
+23251,6443
+23252,37903
+23253,16728,34276
+23254,40168
+23255,10326,65453
+23256,25997
+23257,75059
+23258,75636
+23259,46000
+23260,33719
+23261,10779
+23262,42509
+23263,27158
+23264,8953
+23265,70473
+23266,68276
+23267,54237
+23268,58156
+23269,50467
+23270,60963
+23271,30430
+23272,55610
+23273,51349
+23274,5314
+23275,2467
+23276,34014,15405
+23277,41749
+23278,14572
+23279,81428
+23280,40186
+23281,57580
+23282,3041
+23283,53835
+23284,9103
+23285,13742
+23286,60235
+23287,61620
+23288,10890
+23289,73050
+23290,67767
+23291,75023
+23292,15555
+23293,81434,74794
+23294,79653
+23295,80290
+23296,59675
+23297,16443
+23298,52787
+23299,19577
+23300,49289
+23301,51114
+23302,55124,5271
+23303,9772
+23304,59629,47239
+23305,5428
+23306,12987
+23307,71191
+23308,25408
+23309,34472
+23310,45054,19410
+23311,26318
+23312,63863
+23313,79769,19775
+23314,32239
+23315,74898
+23316,75441
+23317,4361
+23318,23870
+23319,37900,79120
+23320,19743
+23321,41220
+23322,76700
+23323,9025
+23324,28876
+23325,58825
+23326,16294
+23327,781
+23328,11094
+23329,4440,59983
+23330,39646
+23331,17410
+23332,670
+23333,20663
+23334,77957
+23335,20643
+23336,70207
+23337,38839
+23338,76807
+23339,36526,47989
+23340,37857,45737
+23341,38005
+23342,41009
+23343,6031
+23344,32506
+23345,35073
+23346,69415
+23347,65425
+23348,70577
+23349,75881
+23350,24852
+23351,48262,53038,75492
+23352,27714
+23353,3859
+23354,23456
+23355,55934
+23356,15689
+23357,25545
+23358,43635,24487,14543
+23359,30320
+23360,76558
+23361,62354
+23362,20393
+23363,10593
+23364,28108
+23365,56453,62388
+23366,13980
+23367,62103,12269
+23368,33692
+23369,42385
+23370,20023
+23371,13316
+23372,26160,74756
+23373,13387
+23374,16008,15999
+23375,72973
+23376,45087
+23377,25680
+23378,79642
+23379,81611
+23380,79902,22463,74981
+23381,48362
+23382,46789
+23383,38691
+23384,52878
+23385,59565
+23386,53492
+23387,26230
+23388,57632
+23389,80629
+23390,79267
+23391,8522
+23392,17395,52921
+23393,74619,60432
+23394,53242
+23395,62154
+23396,17395
+23397,55943
+23398,4315
+23399,32360
+23400,14451
+23401,73385
+23402,39999,52870
+23403,49978
+23404,56264,16054,41418
+23405,14478
+23406,34198
+23407,66654
+23408,67189
+23409,25251
+23410,27933,6777
+23411,37597
+23412,5518
+23413,42360
+23414,52491
+23415,50251,58324
+23416,2484
+23417,9380
+23418,72114
+23419,39284
+23420,81965
+23421,30154
+23422,58361
+23423,23049
+23424,78616
+23425,32321
+23426,33725,21558
+23427,23030
+23428,71087,38726
+23429,35440
+23430,17628
+23431,58404
+23432,73223
+23433,26585
+23434,13487,20665
+23435,966
+23436,71022
+23437,35867
+23438,44315,66481
+23439,45755,7354
+23440,56245
+23441,80065
+23442,57689
+23443,81174
+23444,12402
+23445,38087
+23446,78525
+23447,35411
+23448,56166,22651
+23449,51250
+23450,2462
+23451,72696
+23452,12658
+23453,73167
+23454,65820
+23455,44868,24449
+23456,3933
+23457,31008
+23458,6614,4701
+23459,57928
+23460,40865,12383
+23461,58947
+23462,72429
+23463,63989
+23464,43760,49039
+23465,68392
+23466,35172
+23467,10850
+23468,36698,24993,39105
+23469,71142
+23470,58035
+23471,76293
+23472,63358
+23473,44237
+23474,26805
+23475,50931
+23476,16376
+23477,59913
+23478,23382
+23479,62990
+23480,55962
+23481,55084
+23482,49624
+23483,37553
+23484,77374
+23485,7454
+23486,74962
+23487,71726,18513,23642
+23488,33521
+23489,6439
+23490,71192
+23491,29501
+23492,22649
+23493,46316
+23494,21823
+23495,52710
+23496,60725
+23497,54057
+23498,18787
+23499,19977
+23500,38555
+23501,49858
+23502,68960
+23503,36342
+23504,77487
+23505,60103
+23506,41885,30515
+23507,62012,76936
+23508,18849
+23509,41475
+23510,26525
+23511,2938
+23512,80799,53562
+23513,40415,72188
+23514,54732
+23515,36423,12176
+23516,38609,75309
+23517,74621
+23518,34284
+23519,9151
+23520,6785
+23521,57406
+23522,81108
+23523,57144
+23524,47130
+23525,61982
+23526,17290
+23527,31439
+23528,15947
+23529,79956
+23530,76991
+23531,350
+23532,38581,64466
+23533,14495
+23534,62274
+23535,21087
+23536,53130
+23537,78882
+23538,5342,9621
+23539,30800,42234,60039
+23540,77902
+23541,16060
+23542,40188
+23543,63878
+23544,78825,80371
+23545,48011
+23546,45611
+23547,15276
+23548,75717,38778
+23549,26798
+23550,68843
+23551,17537
+23552,14696
+23553,39909
+23554,80978
+23555,57999
+23556,26992
+23557,60485
+23558,68536,58435
+23559,43250
+23560,56330
+23561,10619,2589
+23562,34536
+23563,12090,18643
+23564,13275,5878
+23565,16185
+23566,70833
+23567,32567
+23568,42133,49280
+23569,32234,77031
+23570,31888
+23571,17067
+23572,4238
+23573,55223
+23574,55093
+23575,76053
+23576,12271
+23577,56652
+23578,67418
+23579,76631
+23580,1419
+23581,10933
+23582,79841
+23583,50099
+23584,10057
+23585,65127
+23586,8071
+23587,41488
+23588,47303
+23589,64349
+23590,81566
+23591,5548
+23592,71654,6706
+23593,30908
+23594,4888
+23595,4560,50065
+23596,25091
+23597,4262
+23598,26605
+23599,30820
+23600,47740,10272
+23601,56107,68718
+23602,57424,46475,53609
+23603,27500
+23604,39381
+23605,80589
+23606,6112
+23607,72533
+23608,39183
+23609,37217
+23610,19913
+23611,52345,81875
+23612,44172
+23613,31300
+23614,44175,16154
+23615,46883
+23616,5599
+23617,50796
+23618,8898
+23619,26429
+23620,65743
+23621,68421
+23622,24372,75398
+23623,2976
+23624,58472
+23625,45845
+23626,54928
+23627,69098
+23628,76679,21838
+23629,39352
+23630,78601
+23631,24589,12726
+23632,7160,69310
+23633,78827
+23634,80249,40997
+23635,75841
+23636,68900
+23637,5425
+23638,34584
+23639,35155
+23640,34961,45193
+23641,62062
+23642,12658
+23643,2695
+23644,20846
+23645,9673
+23646,20249
+23647,29884
+23648,35049
+23649,8490
+23650,78673
+23651,31205
+23652,11107
+23653,23165,76136
+23654,74701
+23655,55008
+23656,69113
+23657,42761
+23658,57441
+23659,39987,76620
+23660,58722
+23661,58260
+23662,80295,47825
+23663,13920
+23664,43197
+23665,37003
+23666,45640
+23667,5555
+23668,73240
+23669,69574
+23670,45102
+23671,66424
+23672,9924,7213
+23673,13220
+23674,40348
+23675,5414
+23676,61025
+23677,52777
+23678,39533
+23679,14957
+23680,50521
+23681,51693,58306
+23682,10839
+23683,70230,81647
+23684,547
+23685,24694,51878
+23686,24070
+23687,72875
+23688,77694
+23689,30819
+23690,66404
+23691,43678,16273
+23692,4211
+23693,44046,74554
+23694,69676,81912
+23695,67817,67503
+23696,12609
+23697,50942
+23698,22173
+23699,60076
+23700,7336,32679
+23701,81517
+23702,2282
+23703,36834,51604
+23704,45639
+23705,8995
+23706,75261
+23707,16480
+23708,34384
+23709,69224,56422
+23710,26380,10011
+23711,35004,56721
+23712,69711
+23713,1169
+23714,28258
+23715,23277
+23716,55507,14224
+23717,20710
+23718,74408
+23719,66724
+23720,81633
+23721,32406
+23722,75370,57451
+23723,66953
+23724,13188
+23725,69803
+23726,64129
+23727,37213,2874
+23728,38146
+23729,53489
+23730,53757
+23731,25938
+23732,23914
+23733,41921
+23734,74862
+23735,13087
+23736,13550
+23737,22691,10011
+23738,36167
+23739,16335,69444
+23740,37125
+23741,75447
+23742,53379
+23743,73086
+23744,45828
+23745,67109
+23746,69614
+23747,21546
+23748,3453,16775,35705
+23749,4575
+23750,73786
+23751,76783
+23752,75279
+23753,15215
+23754,29790,53724
+23755,72196
+23756,5006
+23757,25001
+23758,74247
+23759,40646
+23760,66980,59089
+23761,56551
+23762,39919
+23763,24442
+23764,60264
+23765,63643,45324
+23766,37756
+23767,58268
+23768,29658,78856
+23769,9464
+23770,81372
+23771,50356
+23772,68279
+23773,77601
+23774,81794
+23775,62750
+23776,21533
+23777,28515
+23778,50421,76074
+23779,36976
+23780,47180
+23781,46636
+23782,67893
+23783,56918
+23784,20362,51633,64694,76374
+23785,82140
+23786,9725
+23787,77426
+23788,59810
+23789,8368,69181
+23790,15853
+23791,77988
+23792,28638,4480
+23793,50112
+23794,37522
+23795,27500
+23796,78259,32151
+23797,9067
+23798,5301
+23799,73071
+23800,76636
+23801,64942
+23802,3974
+23803,46056
+23804,81870,79333
+23805,30612
+23806,4834
+23807,56057
+23808,62928
+23809,73899
+23810,23053
+23811,57674
+23812,7722,22610
+23813,78044
+23814,29567
+23815,27353
+23816,74522
+23817,43908,64598
+23818,45007
+23819,77399
+23820,28800
+23821,73136
+23822,58792,14249,80738
+23823,71557,77569
+23824,80792
+23825,6337
+23826,26899
+23827,32200
+23828,26767,45406
+23829,70015
+23830,66216
+23831,2002
+23832,39541
+23833,44491,34020
+23834,50650,2437
+23835,66090
+23836,11728
+23837,8699
+23838,42452
+23839,2292
+23840,61831
+23841,30103
+23842,59046
+23843,6831
+23844,34168
+23845,32620
+23846,82048
+23847,27826,26214
+23848,73148
+23849,51058
+23850,51092
+23851,7870
+23852,68629
+23853,38205
+23854,23183
+23855,48904,62074
+23856,73789
+23857,38695,8426
+23858,48452
+23859,12824
+23860,30234
+23861,22956
+23862,33538
+23863,8455
+23864,45859
+23865,35336
+23866,53034
+23867,62278,45007
+23868,78154
+23869,76318
+23870,13460
+23871,25332
+23872,27026
+23873,69045
+23874,57766
+23875,33054
+23876,30633
+23877,48258
+23878,77128
+23879,21533
+23880,14637
+23881,11006
+23882,46902,69991
+23883,23808
+23884,71077
+23885,64880,25944
+23886,54018
+23887,8918
+23888,30194
+23889,24768
+23890,12168
+23891,65285,54642
+23892,42585
+23893,80929
+23894,7409
+23895,55210
+23896,80353
+23897,63504
+23898,30397,56320
+23899,46964
+23900,4829
+23901,79386
+23902,64496
+23903,13197,61539
+23904,67909
+23905,52095
+23906,25551,8865
+23907,52383
+23908,45686
+23909,60128
+23910,16675
+23911,681
+23912,25917
+23913,73108,11315
+23914,4277
+23915,81561
+23916,35530
+23917,26129
+23918,57555
+23919,2552
+23920,24288
+23921,77892
+23922,77547
+23923,76333
+23924,35117,13275
+23925,38343
+23926,28656
+23927,25732
+23928,15849
+23929,56499,71694
+23930,30232
+23931,76210
+23932,538
+23933,27417
+23934,14878
+23935,72120,77351
+23936,23581
+23937,68942,61399
+23938,65509
+23939,67883
+23940,59895
+23941,57972
+23942,56404
+23943,75750
+23944,64630
+23945,53567
+23946,43774
+23947,27540,55892
+23948,32234
+23949,54995
+23950,5232
+23951,80806
+23952,52407
+23953,37730,21080
+23954,67744
+23955,18378,30397,4482
+23956,67397
+23957,54922
+23958,39357
+23959,28447
+23960,53289
+23961,30946
+23962,60293
+23963,41468
+23964,2647
+23965,34096
+23966,30122,53468,59964
+23967,68441,64225
+23968,78332
+23969,15358
+23970,13109
+23971,45667,20356
+23972,46751
+23973,68520
+23974,60432
+23975,44652,3063
+23976,20540
+23977,32854
+23978,8450,55799
+23979,1754
+23980,12241
+23981,58452
+23982,81568
+23983,35600
+23984,14158
+23985,5541
+23986,21369
+23987,63105
+23988,27677
+23989,36502
+23990,276
+23991,54843
+23992,24414
+23993,38363
+23994,62899
+23995,18537,74887
+23996,32347
+23997,40498
+23998,76054
+23999,26874
+24000,26218
+24001,29301,6831
+24002,27031
+24003,30732,27447,38627
+24004,63683
+24005,67491
+24006,13330
+24007,2964
+24008,61299
+24009,63633
+24010,61276
+24011,20874,2854
+24012,66558
+24013,11612
+24014,29288
+24015,72115
+24016,73782
+24017,13854,77885
+24018,4277
+24019,17511
+24020,46349
+24021,6953
+24022,5101
+24023,46326
+24024,67848,69781
+24025,4538
+24026,20706,21395
+24027,56378
+24028,27923,49365
+24029,38581
+24030,63336
+24031,43588
+24032,3155
+24033,55148,37111,9875
+24034,6464,24441
+24035,47554
+24036,17000,64436
+24037,76885
+24038,13196,6905
+24039,22903
+24040,51743,23069
+24041,39707
+24042,13839
+24043,53600
+24044,25203
+24045,50673
+24046,21768,25920
+24047,14812
+24048,53401,30766,37026,8358
+24049,43339
+24050,16726,34930
+24051,3597
+24052,62316,51250
+24053,23484
+24054,17798
+24055,6065
+24056,36902
+24057,19421
+24058,21398,24855
+24059,31639
+24060,45236
+24061,23945
+24062,73647
+24063,64718
+24064,79267
+24065,22546,4890
+24066,2127
+24067,38913,496
+24068,57725
+24069,28175
+24070,31344
+24071,45723,72971
+24072,47550
+24073,26309
+24074,40002
+24075,33492
+24076,64406
+24077,70197,29949
+24078,12302
+24079,1160
+24080,74288,68897
+24081,28152
+24082,71442
+24083,44109
+24084,19240,78151
+24085,78605
+24086,24252
+24087,36206
+24088,76333
+24089,6357,75244,13011
+24090,539
+24091,50809
+24092,71983
+24093,5947
+24094,66557
+24095,4686
+24096,80552
+24097,9395,65896
+24098,26189
+24099,11640
+24100,64613
+24101,52593
+24102,12063
+24103,37371
+24104,68435
+24105,68101,22602
+24106,15312
+24107,25281,18886
+24108,3646
+24109,76191
+24110,59779
+24111,4309
+24112,15870
+24113,31140
+24114,51931
+24115,75102
+24116,69320
+24117,33914
+24118,27234
+24119,44332
+24120,75124,78187
+24121,72055
+24122,80270
+24123,76296,25165
+24124,77706
+24125,47867,34174
+24126,3124
+24127,67711
+24128,3575
+24129,50989
+24130,39517,52745
+24131,41854
+24132,29941
+24133,72017
+24134,53100,8404
+24135,74197
+24136,55590
+24137,27124
+24138,50565
+24139,4325,10680,9053
+24140,60702
+24141,76515
+24142,9803
+24143,67976
+24144,53095
+24145,15193
+24146,60023
+24147,11351
+24148,73321
+24149,18692
+24150,27516,23779
+24151,27127
+24152,8216,4545
+24153,58032
+24154,36981
+24155,37335
+24156,1963
+24157,65406
+24158,24762
+24159,68416
+24160,14942
+24161,1675,75268
+24162,57320
+24163,52143
+24164,11937
+24165,20257,4594
+24166,71382
+24167,44835,49909,69270
+24168,501
+24169,55371,41514
+24170,24440
+24171,66782
+24172,35992
+24173,10578
+24174,16716
+24175,38225
+24176,69157,68147
+24177,66468
+24178,78056
+24179,43631
+24180,71095
+24181,8321,23356
+24182,38616
+24183,57620,74069
+24184,70285
+24185,65492
+24186,11990,46038
+24187,24863,52333
+24188,80092
+24189,38952
+24190,68266
+24191,49582
+24192,67189
+24193,48236
+24194,23466,19880
+24195,28151,39247
+24196,62562
+24197,1809
+24198,41748
+24199,38708
+24200,1905
+24201,62133,74118,43086
+24202,55725,72581
+24203,6405,67107,75879,26588
+24204,35645
+24205,80627
+24206,9582
+24207,60018
+24208,54877
+24209,54139
+24210,16933,28717
+24211,51039
+24212,25966
+24213,66971,53318
+24214,81488
+24215,1253,35155
+24216,47425
+24217,27496,71718
+24218,41217
+24219,56407
+24220,69376,72907
+24221,75747
+24222,40053
+24223,7389
+24224,42567
+24225,71351
+24226,60189
+24227,53149
+24228,36758
+24229,50704,48325
+24230,62657
+24231,40064,44174
+24232,57374
+24233,12452
+24234,52867
+24235,64640
+24236,32582
+24237,81575
+24238,33247
+24239,41820
+24240,37708
+24241,68387
+24242,7513
+24243,37073
+24244,13242
+24245,57774
+24246,17793
+24247,55141
+24248,25308
+24249,78974,76084
+24250,66308
+24251,23491,21787
+24252,52167
+24253,39056
+24254,63482
+24255,70394
+24256,27654
+24257,41577
+24258,55774
+24259,39075
+24260,19360
+24261,6731
+24262,65143
+24263,57928
+24264,10158
+24265,28627
+24266,62293
+24267,48035
+24268,29906
+24269,28434
+24270,7620
+24271,68757,57517
+24272,24429
+24273,60244
+24274,36317
+24275,3659
+24276,45699
+24277,54159
+24278,28463,24237
+24279,5190
+24280,538,20926
+24281,43258
+24282,43650
+24283,20298
+24284,61844
+24285,69023
+24286,59912
+24287,76687
+24288,41120
+24289,76166
+24290,5222
+24291,67497
+24292,80626
+24293,61064
+24294,22603
+24295,35056
+24296,28463,81660
+24297,36270
+24298,53381
+24299,63842
+24300,29936
+24301,61740
+24302,77315,12744
+24303,64062
+24304,60180
+24305,7341
+24306,78492
+24307,13260
+24308,52031
+24309,13012
+24310,36916
+24311,11689
+24312,33799,65493
+24313,48664
+24314,33402
+24315,46636
+24316,71734
+24317,48143
+24318,13226
+24319,40495,28103
+24320,16168
+24321,1883
+24322,43251,13026
+24323,24571
+24324,31322
+24325,29805
+24326,77515
+24327,65907
+24328,65752
+24329,60148
+24330,63808,12070
+24331,45194
+24332,71172
+24333,79000,68079
+24334,31022,46545
+24335,67109
+24336,27025
+24337,82174
+24338,60591
+24339,44081
+24340,41679
+24341,23574
+24342,25571
+24343,31898
+24344,11398
+24345,60679
+24346,52649
+24347,8197
+24348,48133
+24349,5434
+24350,18684
+24351,27496
+24352,78835,40628
+24353,44793
+24354,59192
+24355,22994
+24356,30855
+24357,9423
+24358,28787
+24359,7455
+24360,39052
+24361,56104
+24362,74779,77603
+24363,46135
+24364,14479
+24365,44308
+24366,44895
+24367,34305
+24368,69896
+24369,22235,68877
+24370,7505
+24371,11470
+24372,57621
+24373,22971
+24374,44981
+24375,54802
+24376,27325
+24377,11345
+24378,60133
+24379,46738
+24380,36015
+24381,1626
+24382,76206
+24383,76551
+24384,57685
+24385,8122
+24386,75864
+24387,71767,44834,75171
+24388,20648
+24389,42309
+24390,35375,30790
+24391,81050
+24392,80282,57182
+24393,68852
+24394,79979
+24395,69482
+24396,75210
+24397,3858
+24398,50189
+24399,21151
+24400,72301
+24401,68959
+24402,19404
+24403,48414
+24404,52144
+24405,80610
+24406,580
+24407,55813
+24408,81261
+24409,81826
+24410,68034
+24411,79458
+24412,13797,42269,77222
+24413,13029
+24414,55837
+24415,6595
+24416,11063
+24417,29818
+24418,33225
+24419,75601
+24420,56917
+24421,67372
+24422,28459
+24423,78416
+24424,48271
+24425,66303
+24426,31226,63818
+24427,12663,6589
+24428,4632,44766
+24429,68859
+24430,3613,38194
+24431,18489,13016
+24432,81290
+24433,54736
+24434,25923
+24435,28303
+24436,4092
+24437,13274
+24438,61794
+24439,66899
+24440,78686
+24441,63710,3569
+24442,12348
+24443,26820
+24444,68875,34517
+24445,13294
+24446,7043
+24447,44090
+24448,71540,59394
+24449,7180
+24450,55338
+24451,31708
+24452,4262
+24453,6712
+24454,46067
+24455,27574
+24456,26017
+24457,65531
+24458,15729
+24459,2862
+24460,75189,28784
+24461,68296,68179
+24462,38723
+24463,76742
+24464,78291
+24465,66979
+24466,55709
+24467,66965
+24468,77989
+24469,5459
+24470,12598
+24471,46324
+24472,20049
+24473,26434
+24474,67147
+24475,17751
+24476,15879
+24477,2754,77426
+24478,9640,54110
+24479,6439
+24480,64008,4469
+24481,72261
+24482,28289,58935
+24483,48081
+24484,29382
+24485,72020
+24486,70015
+24487,4786
+24488,45948,18691
+24489,53423
+24490,55302
+24491,68875
+24492,33380
+24493,6869
+24494,71480
+24495,21733
+24496,75291
+24497,10544
+24498,29846
+24499,47397
+24500,45755
+24501,73711,51842
+24502,73463
+24503,81319,34871
+24504,43700
+24505,10596
+24506,36298
+24507,50393
+24508,4107
+24509,46775
+24510,24434
+24511,25700,74500
+24512,9027
+24513,10444
+24514,55264
+24515,78776
+24516,52237
+24517,57123
+24518,59165,59670,69362
+24519,35589
+24520,33608,79695
+24521,36834,29373
+24522,62780,50113
+24523,71838
+24524,541
+24525,7476
+24526,71910
+24527,63556
+24528,19021
+24529,65395
+24530,30348
+24531,7090
+24532,44583
+24533,48212
+24534,26671,61741,47033
+24535,5796,51853,28001
+24536,80305
+24537,68328,53762
+24538,1332,76192
+24539,37905
+24540,31819
+24541,9122
+24542,77449
+24543,18636
+24544,17786,67038
+24545,39926
+24546,42371
+24547,3743
+24548,60112
+24549,12458
+24550,18703
+24551,14108
+24552,15929
+24553,21214
+24554,52893
+24555,3482
+24556,33873
+24557,26413,29345
+24558,24860,8108
+24559,66992
+24560,28300
+24561,673
+24562,12482
+24563,35808
+24564,44724
+24565,11067,42102
+24566,28768
+24567,10228
+24568,59475
+24569,27869
+24570,38582
+24571,10482
+24572,14392
+24573,16996
+24574,65066
+24575,39589
+24576,1068,52246,67533
+24577,78299,73433
+24578,43599
+24579,49727
+24580,45943
+24581,81368
+24582,28243,6250
+24583,62222
+24584,21960
+24585,68910
+24586,19131
+24587,42849
+24588,67194,22390
+24589,24457
+24590,31382,23010
+24591,71043
+24592,45762
+24593,2872,35993,40099
+24594,677
+24595,56481
+24596,43532
+24597,59583
+24598,842
+24599,3187
+24600,8110,80373
+24601,17207
+24602,42569
+24603,28202
+24604,12602,35403
+24605,38175
+24606,18557
+24607,71965
+24608,57538
+24609,17597
+24610,56541,18111
+24611,68024,22766
+24612,43890
+24613,29299
+24614,12033
+24615,17418
+24616,23674,35507
+24617,66488
+24618,12557,60405
+24619,17948
+24620,76116
+24621,13694
+24622,37032
+24623,39996
+24624,1055
+24625,52180
+24626,30298
+24627,30913
+24628,56240
+24629,51237
+24630,77543
+24631,76263
+24632,3528
+24633,24624
+24634,7328
+24635,36645
+24636,45793
+24637,4435
+24638,38705,23253
+24639,29323
+24640,76194
+24641,32128
+24642,9050
+24643,42400,33813
+24644,56788
+24645,61850,8940
+24646,727,4484
+24647,33742
+24648,11175
+24649,46072
+24650,16922
+24651,51679
+24652,24402
+24653,11093
+24654,62823
+24655,61844
+24656,18723,65144
+24657,9015,3045
+24658,36192
+24659,40790
+24660,27274,43223
+24661,35262,35002
+24662,47893
+24663,81206,14128,62561
+24664,50993
+24665,15265
+24666,68921
+24667,19726
+24668,60966
+24669,31916
+24670,40603
+24671,22908
+24672,54586,78488
+24673,69603
+24674,45820
+24675,20759
+24676,29520,32732
+24677,78946
+24678,70832
+24679,19786
+24680,26962
+24681,72217
+24682,14719
+24683,36733
+24684,47216
+24685,6370,34563
+24686,56604
+24687,28856
+24688,5171
+24689,21568
+24690,37879,853
+24691,47781
+24692,71659
+24693,58507
+24694,66787
+24695,40527
+24696,50969
+24697,56443
+24698,48740
+24699,38835
+24700,46968
+24701,41364
+24702,34065
+24703,33639
+24704,73220
+24705,53642,54195
+24706,3807,58376
+24707,37073,70167
+24708,47122
+24709,81386
+24710,61199
+24711,60245
+24712,80939,55130,7498
+24713,26487
+24714,18467
+24715,81595
+24716,8597
+24717,33285
+24718,42004
+24719,82035
+24720,20341,44117
+24721,72459
+24722,70217
+24723,37348,39130
+24724,4113
+24725,15521
+24726,79632
+24727,36426
+24728,31599
+24729,66183
+24730,58134
+24731,38843
+24732,78370
+24733,8589
+24734,39192
+24735,63646,80142
+24736,53087
+24737,55565
+24738,65743
+24739,57247
+24740,46379
+24741,7823
+24742,64217
+24743,49169
+24744,19885
+24745,54563
+24746,28389
+24747,51111
+24748,30879
+24749,78761
+24750,42156
+24751,58552
+24752,25369
+24753,57245
+24754,56867,41122
+24755,65693,53563
+24756,21514
+24757,47609
+24758,56551
+24759,76065
+24760,75685
+24761,63795
+24762,19164,50445
+24763,25597
+24764,70904
+24765,21126,39653,22652,38356
+24766,38433
+24767,16313
+24768,39295
+24769,29668
+24770,20263
+24771,4691
+24772,78947
+24773,48384
+24774,70708
+24775,39212
+24776,12360
+24777,27392
+24778,12032
+24779,64607,11629
+24780,74990,16225
+24781,35307
+24782,27764
+24783,52911
+24784,45767
+24785,65817
+24786,81517
+24787,4492
+24788,58359
+24789,21212
+24790,9744
+24791,27166
+24792,49040,74171
+24793,25517
+24794,31367
+24795,40289
+24796,77235,55066
+24797,21369,50919,54846
+24798,76089
+24799,10501,849
+24800,14064
+24801,40442
+24802,23034,76202
+24803,753
+24804,20084
+24805,29383
+24806,47135
+24807,69141
+24808,39050
+24809,69585
+24810,13098
+24811,835
+24812,79968
+24813,63278
+24814,61374
+24815,77266
+24816,57006
+24817,3403
+24818,40982
+24819,27174
+24820,16039
+24821,49771
+24822,54546,45721
+24823,10357
+24824,28635,35235
+24825,39906
+24826,60624,5624
+24827,59555
+24828,44441
+24829,32695
+24830,33351
+24831,53312
+24832,9727
+24833,60023
+24834,15573
+24835,3008
+24836,57830
+24837,50317
+24838,52673,24173
+24839,8883,67270
+24840,70802,55837
+24841,11416,25102
+24842,10928,34924,79245,74723
+24843,57545
+24844,73780
+24845,66538
+24846,61168
+24847,792
+24848,70036
+24849,22517
+24850,61110,21916
+24851,36169
+24852,33278
+24853,17052
+24854,38647
+24855,58557
+24856,55272
+24857,77692
+24858,58306
+24859,71578
+24860,33125,28020
+24861,31899
+24862,49710
+24863,49639,75774
+24864,34137
+24865,50437
+24866,21718,15066
+24867,25182,27034
+24868,42953
+24869,40267
+24870,16692
+24871,58045
+24872,22107
+24873,50653
+24874,51087
+24875,53852
+24876,55863,73945
+24877,55071
+24878,6155
+24879,25833,18219
+24880,16665
+24881,5300
+24882,590,41407
+24883,45872
+24884,37799,25261
+24885,80750,75103
+24886,23767,79880
+24887,75156
+24888,56797,55486
+24889,4735
+24890,50913,9806
+24891,49367
+24892,58824
+24893,61803
+24894,59075
+24895,79668,6920
+24896,28040
+24897,71573,60135,8419
+24898,80049
+24899,34496
+24900,36035
+24901,68276
+24902,37192
+24903,45441
+24904,28666
+24905,39665,37197
+24906,70449,25577
+24907,25078
+24908,14631
+24909,32772
+24910,75709
+24911,59472,12158
+24912,74625,65431
+24913,58874
+24914,79070,58958
+24915,1632
+24916,35351
+24917,81362
+24918,61031
+24919,37306
+24920,49718
+24921,9668
+24922,45174
+24923,55202
+24924,33527
+24925,30191
+24926,5027
+24927,44924
+24928,74576
+24929,71284,50604,33146
+24930,70301
+24931,70391
+24932,75119
+24933,35212,68049
+24934,32160
+24935,39245
+24936,59727
+24937,2298,25504
+24938,6955
+24939,10058,18157,78458
+24940,55401
+24941,54361
+24942,40336
+24943,38357,64543
+24944,8288
+24945,53023
+24946,66076
+24947,17490
+24948,21923
+24949,47272,70316
+24950,46443
+24951,59261
+24952,68000
+24953,37017
+24954,17890
+24955,22499
+24956,65863
+24957,37848
+24958,50226,52482
+24959,7807
+24960,72960
+24961,80627
+24962,36192
+24963,2192
+24964,69573
+24965,20489
+24966,62214,37465
+24967,38411
+24968,47926,62911
+24969,7561
+24970,53498,33162
+24971,2202
+24972,56722
+24973,26373
+24974,58892
+24975,56399
+24976,2643
+24977,23109,24008,6711
+24978,24265
+24979,23698
+24980,29268
+24981,65863
+24982,5278,28628
+24983,44546
+24984,39157,64623
+24985,70620,38692
+24986,73701
+24987,58642
+24988,30140
+24989,30197
+24990,53014
+24991,64629
+24992,41701
+24993,47024
+24994,28460
+24995,10479,19374
+24996,72162,17553
+24997,75676
+24998,75157
+24999,70616,74090
+25000,53895
+25001,38834
+25002,44928,27905
+25003,35569
+25004,9146
+25005,55314,57710
+25006,47696
+25007,29743
+25008,20657
+25009,47641
+25010,32600
+25011,34498,28067
+25012,65041
+25013,25184
+25014,9837,72826,62567
+25015,49729
+25016,32966
+25017,42095
+25018,81635
+25019,57796,41194
+25020,34684
+25021,79410
+25022,60122
+25023,19895
+25024,67857
+25025,32293
+25026,80439
+25027,61957
+25028,57068
+25029,30547
+25030,16269
+25031,27117
+25032,65423,21803,54555
+25033,19125
+25034,15239
+25035,73701
+25036,70988
+25037,34363
+25038,15654
+25039,1502,72721
+25040,66441
+25041,13296,850,49055
+25042,64051
+25043,29155
+25044,30353
+25045,80528
+25046,42966
+25047,77988
+25048,21081
+25049,28103,23498
+25050,55419
+25051,29191
+25052,31733,6180
+25053,34085
+25054,49283
+25055,42159
+25056,25125
+25057,34383
+25058,44326
+25059,79902
+25060,61979
+25061,49396,4997
+25062,36738
+25063,158,4105,45611
+25064,24115,49658
+25065,26897
+25066,21566
+25067,42004
+25068,12387
+25069,49610
+25070,49106
+25071,20261
+25072,78562
+25073,77324
+25074,8768
+25075,14166
+25076,79911
+25077,62805
+25078,81280,38768
+25079,76751,38766
+25080,14887
+25081,42089
+25082,53335
+25083,82087
+25084,77434
+25085,64269
+25086,78438
+25087,73305
+25088,57730,56886
+25089,57486
+25090,34675
+25091,65244
+25092,26434
+25093,56480
+25094,77753,42380
+25095,67862
+25096,51507
+25097,16343,67433
+25098,2095,67192
+25099,66088,15871,27599
+25100,11770,3206
+25101,6460
+25102,12767
+25103,56721
+25104,57762
+25105,2231
+25106,46875
+25107,22435
+25108,41487,64921
+25109,10444
+25110,8429
+25111,71330
+25112,26487
+25113,19664,30104
+25114,67910,46751
+25115,53012
+25116,32229,81204,30063
+25117,32535
+25118,17340
+25119,35534
+25120,56139
+25121,29173,13733
+25122,32082,16037
+25123,45902
+25124,62997
+25125,80940
+25126,26848,40443
+25127,73071
+25128,71500
+25129,34722
+25130,22820
+25131,51325,43034
+25132,67649
+25133,52293
+25134,77741
+25135,36803
+25136,22788
+25137,14884,2504
+25138,48109
+25139,5610
+25140,33235
+25141,23082
+25142,378
+25143,20287
+25144,76236,20349
+25145,24174,63518,14861
+25146,77516
+25147,15800,13846,19785
+25148,60704,67691
+25149,34083
+25150,41366
+25151,74636
+25152,80662
+25153,29633,57459
+25154,60994
+25155,39800
+25156,7334
+25157,43938
+25158,20332
+25159,1129,56524
+25160,42463
+25161,34240,6183
+25162,15352
+25163,81758
+25164,23353
+25165,54843
+25166,66236
+25167,41792,59505
+25168,30837
+25169,79329
+25170,13923
+25171,8630
+25172,30748
+25173,70377
+25174,46560
+25175,62553
+25176,15059
+25177,75460,30840
+25178,29326
+25179,61255
+25180,69981
+25181,31426
+25182,12431
+25183,31459,33327,9749
+25184,25281
+25185,3052
+25186,58020
+25187,53999
+25188,17457
+25189,25672
+25190,60960
+25191,32970
+25192,62917
+25193,22603
+25194,35557
+25195,23213
+25196,42700
+25197,47577
+25198,63718,60087,47050,76647
+25199,82094
+25200,32631,74102
+25201,68045
+25202,63817
+25203,22161,21503
+25204,67772
+25205,73412
+25206,44261
+25207,68362
+25208,67072
+25209,6253
+25210,79562,5006
+25211,73300
+25212,54715,63574,67766
+25213,30666
+25214,1898,13337
+25215,78579
+25216,25716,65381
+25217,80328
+25218,53601
+25219,55037
+25220,62936
+25221,15443
+25222,42963
+25223,47230
+25224,35993
+25225,55018
+25226,22829
+25227,13015
+25228,52105
+25229,72876
+25230,30086
+25231,81022
+25232,1920
+25233,42040
+25234,43939
+25235,56765
+25236,48746
+25237,53231
+25238,10816
+25239,21578
+25240,74245
+25241,3737
+25242,61834
+25243,49401
+25244,5420
+25245,78569,13457
+25246,11781
+25247,60210,12954
+25248,79296,58945
+25249,56900
+25250,74051
+25251,66839
+25252,8897,11519
+25253,55985,51054,36090
+25254,45445,24873
+25255,81379
+25256,65085
+25257,13620
+25258,57159
+25259,30824
+25260,46892,61264
+25261,19045
+25262,35233,48606
+25263,44905
+25264,4472
+25265,59597
+25266,53700
+25267,40774
+25268,36576
+25269,17350
+25270,36574
+25271,8255
+25272,5347
+25273,41208
+25274,76469
+25275,56213
+25276,59750
+25277,70938
+25278,58557
+25279,57679
+25280,44518
+25281,45613
+25282,13742
+25283,37158
+25284,5548
+25285,14833
+25286,79505,76968
+25287,60995
+25288,80037
+25289,79121,33604,14677
+25290,37912
+25291,63839
+25292,72119
+25293,61636
+25294,24531
+25295,78645
+25296,52516
+25297,70368,47826
+25298,52654,69289
+25299,27565,59816
+25300,74987,70227
+25301,52904
+25302,78788
+25303,64407
+25304,65774,72085
+25305,55205
+25306,1754
+25307,4903
+25308,78314,2818
+25309,46108
+25310,23466,6670,20560
+25311,57802,78178
+25312,65506
+25313,8288
+25314,33598
+25315,48509
+25316,76562
+25317,62897,15628
+25318,59298
+25319,9787
+25320,48612
+25321,50969
+25322,60320,30300,71979
+25323,34585
+25324,19116,35381,56818
+25325,69259,59923
+25326,32953
+25327,37451,70611
+25328,43066
+25329,59540,15886
+25330,57372
+25331,50156,16615
+25332,40416
+25333,70858
+25334,29481
+25335,12240
+25336,62315,71363
+25337,55369,15830
+25338,80964
+25339,40121
+25340,27823,71218
+25341,12463
+25342,46830,33825
+25343,64624
+25344,64512
+25345,69089
+25346,75510
+25347,64420
+25348,2348,20740
+25349,81813
+25350,16082,37048
+25351,27749
+25352,74726,42721
+25353,34137
+25354,34158
+25355,1664
+25356,46578
+25357,44061
+25358,37664
+25359,65092
+25360,21370,35109,31662
+25361,39542
+25362,10242
+25363,13404
+25364,20564
+25365,31487
+25366,45951,37087
+25367,4104
+25368,7912
+25369,64964
+25370,7962
+25371,45073
+25372,60775
+25373,38944
+25374,32334
+25375,74436
+25376,17307
+25377,21717
+25378,43730
+25379,40004
+25380,55391,71099
+25381,2020,54926,18986
+25382,17834
+25383,2268
+25384,50654
+25385,5550
+25386,77706
+25387,57446
+25388,78400
+25389,71129
+25390,17734,47995
+25391,34954
+25392,16288
+25393,11941,10768
+25394,15630
+25395,31184
+25396,20078,73663
+25397,79179
+25398,969
+25399,52490,3636
+25400,26869
+25401,17868
+25402,38066
+25403,68443,63775,77417
+25404,40075
+25405,10449
+25406,71549
+25407,34046
+25408,38126,30787
+25409,52083
+25410,63363
+25411,47661
+25412,17282
+25413,15296
+25414,80698
+25415,31209
+25416,21055
+25417,80023
+25418,48536
+25419,63857
+25420,41509
+25421,50436
+25422,73118,79958
+25423,31392
+25424,74384,33135
+25425,7880
+25426,19212,48691,7939
+25427,35036
+25428,21047,553
+25429,42712
+25430,9091
+25431,49278
+25432,19974
+25433,26207
+25434,39715,50738
+25435,57812
+25436,68328
+25437,52070
+25438,72934
+25439,54475
+25440,25831
+25441,4792
+25442,3595
+25443,14895
+25444,72
+25445,66142
+25446,28723,55825
+25447,30021
+25448,68750
+25449,13980
+25450,23140
+25451,2964
+25452,1445
+25453,26494,9286
+25454,58502
+25455,24601
+25456,79411
+25457,44474
+25458,37100
+25459,11431
+25460,16487
+25461,30388
+25462,23109
+25463,26926
+25464,65725,74542
+25465,76964
+25466,79475
+25467,29140
+25468,3243
+25469,67957
+25470,29963
+25471,35507
+25472,67893
+25473,41492
+25474,14212
+25475,56026,55010
+25476,30703
+25477,14233
+25478,68407
+25479,20034
+25480,33413
+25481,46026
+25482,76843
+25483,64830
+25484,7275
+25485,16390
+25486,48475
+25487,64467,11670,11567
+25488,37639,11451
+25489,51559
+25490,13694
+25491,23668
+25492,11022
+25493,34690,47426
+25494,70857,28804
+25495,36251,60916
+25496,59801
+25497,48457
+25498,4947
+25499,53944
+25500,62772
+25501,38355
+25502,5301
+25503,64252
+25504,70307
+25505,32953,55913
+25506,57408
+25507,60245
+25508,15744
+25509,60365
+25510,14473
+25511,41501
+25512,11257,54955
+25513,37309
+25514,5278
+25515,44849
+25516,59775
+25517,23099,26005
+25518,58292
+25519,13555
+25520,29831,2473,48247,16242
+25521,56656
+25522,19997
+25523,55968
+25524,12044,43915
+25525,80270
+25526,50779
+25527,56586
+25528,32129
+25529,33798
+25530,76860
+25531,28977
+25532,75579,9458
+25533,12816,16259
+25534,59311
+25535,55226
+25536,59642
+25537,995
+25538,35644
+25539,9864
+25540,20118
+25541,6118
+25542,32445
+25543,56068
+25544,61977
+25545,43151
+25546,16307,69363
+25547,12459
+25548,2171,8107
+25549,25463
+25550,50364
+25551,13341
+25552,76243,2034
+25553,21828
+25554,30263,10438
+25555,40247,33980
+25556,61634
+25557,64200
+25558,13531
+25559,45639
+25560,28515,25797
+25561,64393
+25562,16968
+25563,47768
+25564,40951
+25565,74015
+25566,48384
+25567,72454
+25568,40572
+25569,16980
+25570,45855,68128
+25571,23675
+25572,63085
+25573,42088
+25574,55386
+25575,46225
+25576,25162
+25577,74156
+25578,17628
+25579,10247
+25580,25557
+25581,47577
+25582,78050
+25583,33932
+25584,29365
+25585,12013
+25586,52019,35743
+25587,7032
+25588,1192
+25589,28411
+25590,78914
+25591,59826
+25592,52357,37802,31553,62997
+25593,19872
+25594,17392,19729
+25595,63469
+25596,75744,44501
+25597,10322
+25598,17162,51447
+25599,76625
+25600,75768
+25601,65553
+25602,46228
+25603,66832
+25604,57842
+25605,44402
+25606,54986
+25607,80041
+25608,46881
+25609,21010
+25610,23419
+25611,72514
+25612,37896,5696
+25613,17847
+25614,10168
+25615,58598
+25616,49625
+25617,48211
+25618,19987
+25619,25996
+25620,49432
+25621,63205
+25622,59219
+25623,847
+25624,26864
+25625,72091
+25626,3884
+25627,30609
+25628,18447
+25629,57881,62913
+25630,43314
+25631,1751
+25632,65070
+25633,47047
+25634,7727
+25635,40067
+25636,59858
+25637,57382
+25638,53350
+25639,60173
+25640,55615
+25641,22451
+25642,24595
+25643,51856
+25644,80863
+25645,28548
+25646,79986
+25647,72034
+25648,27866
+25649,541
+25650,69170
+25651,1145
+25652,22956
+25653,24642
+25654,65862
+25655,21089
+25656,7495
+25657,58083
+25658,31713
+25659,76495
+25660,49629
+25661,42777
+25662,37128
+25663,2104
+25664,62242
+25665,5489
+25666,41403
+25667,35072,6798
+25668,1318
+25669,35238,40195
+25670,43712
+25671,48495
+25672,142
+25673,12519
+25674,34919
+25675,13764
+25676,40804
+25677,20427
+25678,60091,55986
+25679,62144
+25680,20078
+25681,62482,66343
+25682,7775
+25683,78245
+25684,32802,37053
+25685,5235
+25686,79841
+25687,18903
+25688,2025
+25689,28052,13802
+25690,53145
+25691,78872
+25692,37788
+25693,21774
+25694,23698
+25695,20556
+25696,76497
+25697,44110
+25698,31796
+25699,32023
+25700,4493
+25701,67263
+25702,20388
+25703,25804
+25704,59804,61417,8139
+25705,61851
+25706,32253
+25707,20055
+25708,42332
+25709,8626
+25710,77988,48430
+25711,79059
+25712,17146
+25713,57417
+25714,70086,58679
+25715,55392
+25716,29385,18833,43613
+25717,12371
+25718,38792
+25719,31507
+25720,75744,58440
+25721,3650
+25722,34634
+25723,21960,16672
+25724,12533
+25725,56999,76350
+25726,44952
+25727,34956
+25728,13553
+25729,36432
+25730,81180
+25731,7545
+25732,6439
+25733,44360,8473
+25734,61765
+25735,77014
+25736,62726
+25737,56092
+25738,65528
+25739,45685
+25740,80655
+25741,30376
+25742,30606
+25743,44367
+25744,52490
+25745,43911
+25746,32597
+25747,9481,36387
+25748,21067
+25749,45260
+25750,50113
+25751,42963
+25752,829
+25753,10584
+25754,4777
+25755,16242
+25756,54478
+25757,81809
+25758,47018,43470
+25759,27313
+25760,15049
+25761,70900
+25762,79018
+25763,67425
+25764,54539
+25765,80974
+25766,15542
+25767,18850
+25768,14885
+25769,20002
+25770,55719
+25771,57371
+25772,53426
+25773,23964,52243
+25774,16779,32252
+25775,8680
+25776,80640,43470
+25777,42289
+25778,55452,4738
+25779,21571
+25780,44551
+25781,58679
+25782,32736
+25783,73824
+25784,27282
+25785,35633
+25786,20297,79841
+25787,26283
+25788,59393
+25789,24378
+25790,78395,44211
+25791,38869
+25792,25115,31570
+25793,70263
+25794,39396
+25795,5771
+25796,37385
+25797,71322
+25798,66322
+25799,23657
+25800,53891
+25801,23716,12545,35534,47448
+25802,27736,25003
+25803,32912
+25804,68705
+25805,46577,20200
+25806,45313
+25807,49935
+25808,8656
+25809,12347
+25810,64152
+25811,58860,23943
+25812,68852
+25813,75377,47748,10969,63008
+25814,10783
+25815,66823
+25816,57741,22195
+25817,7013
+25818,9734
+25819,4405,57563
+25820,59167
+25821,66914,17793
+25822,5064,7980
+25823,12248
+25824,50746,26759
+25825,64652
+25826,79677
+25827,53976
+25828,45805
+25829,60368
+25830,56436,63377,69805,26543
+25831,39938
+25832,62953
+25833,15682,30523
+25834,58675
+25835,9378
+25836,79291
+25837,40347
+25838,77569
+25839,5747
+25840,4583,81494
+25841,191,66797
+25842,33697
+25843,44129,30891
+25844,17308
+25845,70190
+25846,40105
+25847,20980
+25848,25186
+25849,29393
+25850,1444
+25851,76247
+25852,33868
+25853,23916
+25854,73067
+25855,55456
+25856,73853
+25857,12492,68709
+25858,36892
+25859,40706
+25860,24070
+25861,68422,68614
+25862,14467,5161
+25863,37478
+25864,35378
+25865,53224
+25866,54477,19422
+25867,18231,32466
+25868,58266
+25869,48061
+25870,23552
+25871,68519
+25872,51857,42759
+25873,1024
+25874,8935
+25875,37182
+25876,20524
+25877,35254
+25878,67180,24662
+25879,7097,53639
+25880,46877
+25881,59952
+25882,35534
+25883,31287
+25884,80703
+25885,58202
+25886,16531
+25887,51675
+25888,44245,34373
+25889,69108
+25890,37684,54315,75554
+25891,46612
+25892,67397
+25893,33165
+25894,60231
+25895,69118
+25896,73306
+25897,1959
+25898,40996
+25899,47781
+25900,45778
+25901,3663
+25902,268
+25903,35494
+25904,12889
+25905,60145
+25906,71827
+25907,68436,76333
+25908,9464
+25909,692
+25910,12863
+25911,16716
+25912,40276,21583
+25913,22863
+25914,62192
+25915,64327
+25916,29267
+25917,66517,46964
+25918,52283
+25919,32764
+25920,44895
+25921,33989
+25922,72071
+25923,27500
+25924,35105
+25925,4084
+25926,79419,69183
+25927,79087
+25928,7164
+25929,70128
+25930,32172,35191
+25931,66198
+25932,61752
+25933,18845
+25934,80738
+25935,30436
+25936,44907,14857
+25937,79795
+25938,38396
+25939,61298
+25940,76286,5411
+25941,11985
+25942,37846,76314
+25943,37702
+25944,81280
+25945,52226
+25946,18300
+25947,36357,27316
+25948,24232,81253
+25949,72100,6470
+25950,13659
+25951,69698,55146
+25952,23664
+25953,52015
+25954,49187
+25955,113
+25956,34766
+25957,45449
+25958,77324
+25959,9331
+25960,41899
+25961,28993
+25962,13965
+25963,75031
+25964,66047
+25965,24965,56587
+25966,28396,72890
+25967,14074
+25968,8901
+25969,41736
+25970,40410
+25971,11927
+25972,38544
+25973,49739
+25974,11234
+25975,71218
+25976,60171
+25977,13222
+25978,74128
+25979,76994
+25980,5119,10976
+25981,62679
+25982,3326
+25983,56918,7781
+25984,75279
+25985,82133
+25986,35779
+25987,68090
+25988,9688
+25989,49065
+25990,24667
+25991,56717
+25992,5639,58699
+25993,10970
+25994,78116
+25995,70334
+25996,33532
+25997,60103
+25998,60613
+25999,46645,55751
+26000,46518
+26001,40095
+26002,55170
+26003,52989
+26004,43639
+26005,11124
+26006,77560,64472
+26007,37883
+26008,13989,21762
+26009,13823
+26010,30537
+26011,28174
+26012,17630
+26013,80005
+26014,33065,19602
+26015,40168
+26016,43984
+26017,28303
+26018,76905
+26019,2532
+26020,50789
+26021,36821
+26022,69099
+26023,26551
+26024,22264
+26025,59665
+26026,4372
+26027,47930
+26028,15115
+26029,81879
+26030,49014
+26031,81662
+26032,12519
+26033,81252,41942
+26034,41461
+26035,64756,74234
+26036,49013
+26037,52394
+26038,19924
+26039,31404
+26040,72793,29157
+26041,22877
+26042,47504
+26043,55239
+26044,80246
+26045,13417
+26046,73154
+26047,53516
+26048,26872,60747
+26049,82173
+26050,61641
+26051,45592
+26052,2257
+26053,26474
+26054,33529,61205
+26055,50336
+26056,66150,54157
+26057,21462
+26058,5578
+26059,40883
+26060,27442
+26061,77667,29646
+26062,38254
+26063,46885
+26064,63908
+26065,31347
+26066,12526
+26067,11507
+26068,63812
+26069,74023
+26070,15475
+26071,55445
+26072,42627
+26073,74831,29462
+26074,3286
+26075,74431
+26076,26562
+26077,50121
+26078,75747
+26079,17826,25236
+26080,77123
+26081,64701
+26082,62365
+26083,18511,47552
+26084,30087,71042
+26085,72771,37243
+26086,39024
+26087,76568
+26088,74059,808
+26089,77635
+26090,35934
+26091,28179
+26092,20764
+26093,6325
+26094,17334
+26095,73653
+26096,38335
+26097,46347
+26098,53704
+26099,53150
+26100,47030
+26101,67982
+26102,39369
+26103,50018
+26104,68542
+26105,2451
+26106,41772
+26107,59781
+26108,5139,57681
+26109,10749
+26110,12464,80492
+26111,37263
+26112,30586
+26113,48176,51390
+26114,54919
+26115,6942
+26116,8197
+26117,5884
+26118,72765
+26119,26133
+26120,49540
+26121,13534
+26122,65571,12275
+26123,51625,38993
+26124,57387
+26125,58484
+26126,20689,50261
+26127,10668
+26128,56873
+26129,36090
+26130,2393,19765
+26131,3936
+26132,75410,20793
+26133,32917
+26134,75116
+26135,57714,58360,22554
+26136,6691
+26137,20487,15736
+26138,58682
+26139,5235,8855
+26140,34265
+26141,64573
+26142,46929
+26143,27158
+26144,64902
+26145,79027,81753
+26146,42270
+26147,15969
+26148,44263
+26149,60421
+26150,52049
+26151,63961
+26152,17495
+26153,28169
+26154,52572
+26155,44450
+26156,45289
+26157,29016
+26158,51114
+26159,63018
+26160,54199
+26161,41854
+26162,39480
+26163,41565
+26164,8095
+26165,72319,10357
+26166,59178
+26167,52860
+26168,80429
+26169,75213
+26170,37726
+26171,43507
+26172,37697
+26173,40752,70332
+26174,56077
+26175,34198
+26176,39368
+26177,48606
+26178,41293
+26179,22385
+26180,55824
+26181,3427,72016
+26182,78438
+26183,37758
+26184,75882
+26185,30832
+26186,65844
+26187,54210
+26188,81025
+26189,25397
+26190,30785
+26191,39546
+26192,67497
+26193,11572
+26194,78256
+26195,5927
+26196,27582,23814,50768
+26197,3095
+26198,32614
+26199,45501
+26200,28073
+26201,73384
+26202,55381
+26203,13411
+26204,10748
+26205,67854
+26206,39240
+26207,72445
+26208,14571,67641
+26209,51656
+26210,35808
+26211,19994
+26212,10243
+26213,50757,46333
+26214,10386,53815
+26215,3204
+26216,36561
+26217,67976
+26218,18023
+26219,8113
+26220,76804
+26221,52020
+26222,32549,69014
+26223,26275
+26224,43519
+26225,68307
+26226,38108
+26227,161
+26228,39354
+26229,64522
+26230,6578
+26231,65940
+26232,58736,65874
+26233,24341,7600
+26234,66259
+26235,78807
+26236,73349,70018
+26237,51725,78627
+26238,20359
+26239,8794
+26240,34388,21026
+26241,44243
+26242,67587
+26243,6195
+26244,31856
+26245,49329
+26246,28926
+26247,68849
+26248,19419
+26249,68133,24390
+26250,8859
+26251,14076
+26252,67558
+26253,68774
+26254,32406
+26255,38356,53658
+26256,31154
+26257,14135,60773
+26258,7549
+26259,74633,29739
+26260,28617
+26261,76593
+26262,45226
+26263,50835
+26264,12453,42144
+26265,43044
+26266,80100
+26267,78969
+26268,25281,55158
+26269,40969
+26270,46067
+26271,37967
+26272,20874
+26273,62083
+26274,81600
+26275,9378
+26276,45370
+26277,25547
+26278,17326
+26279,39324
+26280,31681
+26281,56576
+26282,32462
+26283,70784
+26284,982
+26285,42874,5473
+26286,14224
+26287,37385
+26288,36389
+26289,21835
+26290,54519
+26291,6830
+26292,75439
+26293,20778
+26294,47269,71025
+26295,15636
+26296,44870
+26297,31961,41777
+26298,39603
+26299,5961
+26300,27173
+26301,50434
+26302,63470,4618
+26303,7651
+26304,47337
+26305,72189
+26306,66951
+26307,12824
+26308,75630,12995
+26309,24047
+26310,30908,550
+26311,44460,16131
+26312,3444
+26313,16168
+26314,33020
+26315,26865
+26316,35009
+26317,32428
+26318,76761,15054
+26319,67180
+26320,18643
+26321,72823
+26322,29104
+26323,65610
+26324,47643
+26325,2369
+26326,32920,17578
+26327,6670
+26328,70756,47612
+26329,43670
+26330,44755
+26331,15870
+26332,14795
+26333,61565
+26334,35992
+26335,51438
+26336,2368,1354
+26337,65290
+26338,25047
+26339,43443
+26340,33783
+26341,30168
+26342,31263,17257
+26343,39183
+26344,69800
+26345,24501
+26346,75881
+26347,55494
+26348,33012,77073
+26349,70851
+26350,48301
+26351,77215
+26352,60158
+26353,50724
+26354,79268
+26355,54354,59083
+26356,1575
+26357,82055
+26358,62953
+26359,59198
+26360,10087,46643
+26361,21199
+26362,54970
+26363,47973
+26364,63318
+26365,5557,62907
+26366,11859
+26367,52407
+26368,34343,80050
+26369,43019
+26370,43434,60777
+26371,7084
+26372,30070,67110
+26373,13835,10410
+26374,58006
+26375,36743
+26376,57836
+26377,41776,48383,25833
+26378,36502,48053,11935
+26379,56256
+26380,60414
+26381,47632
+26382,7824
+26383,10013,32675,75682
+26384,16228
+26385,29415
+26386,13875
+26387,19412
+26388,42276
+26389,77321
+26390,43188
+26391,34040
+26392,44347,65093,42244
+26393,54119
+26394,57304,79872
+26395,36706
+26396,74197
+26397,42408
+26398,37250
+26399,64248,53292
+26400,40124
+26401,63429,65020
+26402,61201
+26403,10603
+26404,8204
+26405,37656,46596
+26406,33713,42344
+26407,74504
+26408,28649
+26409,36884,80921
+26410,1606
+26411,55421
+26412,21614
+26413,14751
+26414,65155
+26415,25061
+26416,18744
+26417,73420
+26418,6942
+26419,5006
+26420,29716
+26421,42915
+26422,7809
+26423,33290
+26424,2230
+26425,33830
+26426,18704,82150
+26427,49476,37060,31885
+26428,32630
+26429,5241
+26430,48535
+26431,44783
+26432,15297
+26433,57490
+26434,6041
+26435,40900
+26436,35122
+26437,64393
+26438,36526
+26439,18563
+26440,77280
+26441,27185
+26442,63502
+26443,69216
+26444,2991
+26445,43256
+26446,43687
+26447,34085
+26448,77795
+26449,80350
+26450,5277
+26451,43599
+26452,57776
+26453,18965
+26454,48612
+26455,29432
+26456,6983
+26457,76687
+26458,35064
+26459,63688,44676
+26460,2512
+26461,44279
+26462,249,18068,68560
+26463,48183,25858
+26464,68186
+26465,16865
+26466,18467
+26467,20506
+26468,862
+26469,14096
+26470,21813
+26471,38012,24754
+26472,68975
+26473,60092
+26474,66647
+26475,54863
+26476,9021,75689
+26477,57332
+26478,7950,55350
+26479,29520
+26480,28666
+26481,21473
+26482,30029
+26483,28305,25272
+26484,51994
+26485,27764
+26486,7740
+26487,38185
+26488,11462
+26489,38433
+26490,64662
+26491,79155
+26492,57797
+26493,53207
+26494,29995
+26495,69560,31564
+26496,33562
+26497,5054,76458
+26498,67141
+26499,24398
+26500,26430
+26501,6787
+26502,16523
+26503,29658
+26504,60720
+26505,37267
+26506,54003,65258
+26507,80440
+26508,41003,79885
+26509,9285
+26510,1909
+26511,55304
+26512,63532
+26513,48936
+26514,30203
+26515,70270
+26516,80231
+26517,41188,53542
+26518,40501
+26519,79329
+26520,78398
+26521,76144
+26522,12711,13333
+26523,38731
+26524,76358
+26525,31761
+26526,60071
+26527,28147,25842
+26528,33109
+26529,33472
+26530,31521
+26531,15790
+26532,70715
+26533,54155
+26534,17347
+26535,63599,31721
+26536,40053
+26537,42242
+26538,69215
+26539,6672
+26540,20356
+26541,20838,29699
+26542,5704
+26543,45969,11876
+26544,15215
+26545,66495
+26546,46997
+26547,23369
+26548,51727,6382
+26549,76126
+26550,58805
+26551,66537
+26552,41592
+26553,44831
+26554,36981
+26555,81965
+26556,82142
+26557,34051,17128
+26558,9516
+26559,66185,32284
+26560,27219
+26561,20502,73783
+26562,64489
+26563,26171
+26564,47027
+26565,48100,35985
+26566,15968
+26567,9819
+26568,45007
+26569,24673
+26570,14846
+26571,14415
+26572,46968
+26573,67328
+26574,9311
+26575,5263
+26576,69630
+26577,70971
+26578,42994
+26579,61253
+26580,35992
+26581,72552
+26582,51459
+26583,59445,10450,6342
+26584,905
+26585,40220
+26586,40640
+26587,79873
+26588,35732
+26589,59608,19184
+26590,40209
+26591,62033
+26592,56537,60645
+26593,33405
+26594,50530
+26595,27096
+26596,45911
+26597,12950,48024
+26598,77075,45164
+26599,14860
+26600,33940
+26601,39537,6564,44658
+26602,47971,62433
+26603,35980
+26604,25328
+26605,80855
+26606,18389
+26607,38456
+26608,12125
+26609,69605
+26610,40229
+26611,513
+26612,33797
+26613,50665
+26614,73214
+26615,54110
+26616,55248
+26617,80728
+26618,8735
+26619,66201
+26620,49466
+26621,67837
+26622,1768
+26623,7275
+26624,33380
+26625,10740
+26626,51476
+26627,23724
+26628,72848,45679
+26629,36750
+26630,20293
+26631,76437
+26632,51939
+26633,39074,47799
+26634,49774
+26635,78290,57720
+26636,58746
+26637,865
+26638,8778,49864
+26639,23623
+26640,47908
+26641,8653,48086
+26642,65514,6949
+26643,69685,1123
+26644,68342
+26645,10036
+26646,75694
+26647,79652
+26648,21642
+26649,74493
+26650,4737
+26651,77194
+26652,79530
+26653,68861
+26654,77760
+26655,30874
+26656,22103
+26657,24224,69837
+26658,72756
+26659,36609
+26660,77363,54595
+26661,20767
+26662,49088
+26663,32947
+26664,670
+26665,35208,66990
+26666,8036
+26667,26120,32962
+26668,61338
+26669,75906
+26670,38966
+26671,67827,32659
+26672,47281
+26673,25514
+26674,39760
+26675,73697
+26676,45920
+26677,32418
+26678,70013
+26679,31052
+26680,27735
+26681,18231
+26682,10303
+26683,46945
+26684,43932,31667,43979
+26685,73659
+26686,4388,37083
+26687,64812
+26688,40258
+26689,17611
+26690,76662
+26691,65281
+26692,17144
+26693,32337
+26694,71283,3138,45841
+26695,54604
+26696,3172,905
+26697,48914
+26698,31918
+26699,51514
+26700,78277,34305
+26701,9613
+26702,50178
+26703,39796
+26704,58279
+26705,51944
+26706,13372
+26707,3481
+26708,37033
+26709,6849,69022
+26710,67695,74622,6085,9581,55651
+26711,81320
+26712,39768
+26713,25428
+26714,77299
+26715,71295
+26716,23268
+26717,24342
+26718,34395
+26719,23344,50029
+26720,12107
+26721,53052
+26722,50114
+26723,13944
+26724,37283
+26725,12682
+26726,64374
+26727,55543
+26728,11896
+26729,50665
+26730,35295,65829
+26731,76020,405
+26732,76807
+26733,72175
+26734,3855
+26735,80783
+26736,41135
+26737,54489,56593
+26738,12456,20990,7592
+26739,2190,7740
+26740,64262
+26741,3619
+26742,73905
+26743,27706
+26744,22784
+26745,51552
+26746,33664
+26747,33260
+26748,36290
+26749,8564
+26750,44470
+26751,35032
+26752,6973
+26753,81794
+26754,19872
+26755,10739
+26756,53911
+26757,47971
+26758,70877
+26759,64029
+26760,16961,73506
+26761,66157,8009,81456
+26762,57981
+26763,57511
+26764,62125
+26765,18385
+26766,25970
+26767,4534
+26768,42164,58706,42882
+26769,51492
+26770,28270,52534
+26771,38034
+26772,34698
+26773,75734
+26774,7999
+26775,69408
+26776,19064
+26777,78058
+26778,69537
+26779,51853
+26780,75567
+26781,9934
+26782,39327
+26783,65697
+26784,50729
+26785,7628
+26786,12530,16775
+26787,13033
+26788,6460
+26789,60117
+26790,60396,2791
+26791,58689
+26792,20510
+26793,46932
+26794,18537,4320
+26795,17952,73411
+26796,69941,24171,3701
+26797,2959
+26798,45149
+26799,33432
+26800,3802
+26801,64326
+26802,4732
+26803,12447,35188
+26804,50844
+26805,52276
+26806,43732
+26807,51395
+26808,13397
+26809,39041
+26810,28431
+26811,16278
+26812,38220
+26813,20737,52856
+26814,11345
+26815,70517
+26816,46584
+26817,48681
+26818,41079
+26819,78052,19971
+26820,60773,53185
+26821,73753
+26822,73948,81673
+26823,24382,53676
+26824,54746
+26825,56966
+26826,35570
+26827,29945,54816,77403
+26828,10301
+26829,5242,63546
+26830,29699,14812
+26831,33291
+26832,16665,19118
+26833,45519
+26834,63153
+26835,29629
+26836,33896
+26837,38410
+26838,70671
+26839,22450
+26840,52808
+26841,81749
+26842,77142
+26843,72720
+26844,5701
+26845,24747
+26846,73233
+26847,32821
+26848,68877
+26849,80532
+26850,46792,23554
+26851,34590
+26852,10607
+26853,76679
+26854,18244
+26855,4816
+26856,19861
+26857,1820
+26858,16835
+26859,9823
+26860,47725
+26861,55929
+26862,80394
+26863,79700
+26864,39480
+26865,10403
+26866,30915
+26867,23742
+26868,489
+26869,30138
+26870,20638
+26871,21546
+26872,19102
+26873,60511
+26874,22324
+26875,4189
+26876,25809
+26877,14631,17193
+26878,77359
+26879,422,40007
+26880,48079
+26881,61776
+26882,57474
+26883,78251
+26884,63387
+26885,78276
+26886,27878,52624
+26887,58824
+26888,70041
+26889,50134,23273
+26890,50289
+26891,50721
+26892,55181
+26893,64856
+26894,72594,62162
+26895,49500
+26896,14543
+26897,40330
+26898,73208
+26899,59643
+26900,76679
+26901,12348
+26902,68627
+26903,3403
+26904,35833
+26905,26767
+26906,48798,19519
+26907,72626
+26908,25582,80161,66412
+26909,67757,23325
+26910,67749
+26911,44298
+26912,44744
+26913,75842,45159
+26914,10084
+26915,4571,23738
+26916,79335
+26917,57612,52794
+26918,73702
+26919,23156
+26920,3439
+26921,80586
+26922,62972
+26923,116
+26924,59391
+26925,32601
+26926,44887
+26927,66758
+26928,46982
+26929,1427
+26930,18007
+26931,9156
+26932,59572,16992
+26933,81220
+26934,9780
+26935,41703,22267
+26936,13713
+26937,23728
+26938,45563,14437
+26939,81087,10879
+26940,54159,40316
+26941,12475
+26942,78760
+26943,40201
+26944,82098
+26945,49918
+26946,12486,31005
+26947,35572
+26948,54028,3607,45556
+26949,2112
+26950,78756
+26951,16782
+26952,73331
+26953,51062
+26954,15315,78331
+26955,39080
+26956,80627
+26957,65051
+26958,60139
+26959,51495
+26960,17310
+26961,28460
+26962,31654
+26963,9180
+26964,23797,55591
+26965,60871
+26966,20585
+26967,41503
+26968,29561
+26969,35721
+26970,10556
+26971,4448
+26972,61932
+26973,18905
+26974,68956
+26975,2607
+26976,23931
+26977,73310
+26978,7678,29487,3711
+26979,4367,65466
+26980,65236
+26981,50723,35976
+26982,20233
+26983,60793
+26984,28653,65999,8988
+26985,74938
+26986,275
+26987,9707
+26988,15277
+26989,77647
+26990,53005
+26991,57649
+26992,72823
+26993,6916
+26994,45755
+26995,78605,1527,77942
+26996,29352
+26997,78118
+26998,73080
+26999,60832
+27000,56407,32543
+27001,22771
+27002,9508
+27003,28303
+27004,70385
+27005,75955
+27006,54044
+27007,78648,69296,44622
+27008,47221
+27009,49625
+27010,74705
+27011,4730,81097,76412,48843
+27012,76438
+27013,17718
+27014,63219
+27015,12472
+27016,19464
+27017,40195,40367
+27018,51114
+27019,59048,23659
+27020,42498
+27021,16490
+27022,54235
+27023,757
+27024,74388
+27025,59447,47773
+27026,38231
+27027,51759,71372
+27028,59630
+27029,25541
+27030,16311,57716,15695
+27031,35425
+27032,14524
+27033,8666,77770
+27034,1103
+27035,75228
+27036,57986
+27037,75557,43922
+27038,13168
+27039,69624
+27040,34499,59763
+27041,64763
+27042,25626
+27043,52580
+27044,43675
+27045,8263
+27046,25737
+27047,48375
+27048,52475
+27049,4545
+27050,51249,23638
+27051,54813
+27052,2465
+27053,81514
+27054,21491
+27055,59536
+27056,32688
+27057,70431
+27058,50851,9401,1806
+27059,53816,42314
+27060,62435
+27061,34084
+27062,9526
+27063,75194
+27064,31255
+27065,17347
+27066,76494
+27067,13957
+27068,77547
+27069,12738
+27070,36441
+27071,17879
+27072,53978
+27073,75618
+27074,58365
+27075,32011
+27076,76912,74744
+27077,15365
+27078,76779
+27079,78387,40963
+27080,58875
+27081,75091
+27082,79533
+27083,72834,35231
+27084,42874
+27085,21144,57066
+27086,34329,48502
+27087,48936
+27088,26962
+27089,14348
+27090,46580,76817
+27091,31521
+27092,24342
+27093,38877
+27094,57989
+27095,6829,8295
+27096,82174
+27097,63102,32446
+27098,41494,18639
+27099,77103
+27100,28631
+27101,68750
+27102,73403
+27103,33423
+27104,40830
+27105,3863
+27106,54579
+27107,32482
+27108,40757
+27109,9149
+27110,495,35107
+27111,4171
+27112,78426
+27113,56185
+27114,35341
+27115,42059
+27116,30852
+27117,1007,57969,2640
+27118,43888
+27119,50650
+27120,62928
+27121,49867
+27122,3601,640
+27123,44308,9615
+27124,19425
+27125,15809
+27126,17936
+27127,79644
+27128,71363
+27129,6742
+27130,15896,40050
+27131,71478
+27132,77125
+27133,62671
+27134,43255,15429
+27135,7258
+27136,50522
+27137,14177
+27138,29799
+27139,36340
+27140,19171
+27141,18882
+27142,52223,74813
+27143,66907
+27144,59219,65954
+27145,64454
+27146,17401,57764
+27147,73518
+27148,10393
+27149,13572,69379
+27150,20912,54791
+27151,59698
+27152,48612
+27153,37236
+27154,78063
+27155,38065
+27156,61972
+27157,54899
+27158,47016
+27159,48145
+27160,15959
+27161,71202
+27162,61610,77446
+27163,13197
+27164,69997
+27165,9640
+27166,37230
+27167,24494
+27168,4585
+27169,61524
+27170,10715
+27171,80455
+27172,43837
+27173,8467
+27174,68905
+27175,28518
+27176,77453
+27177,14923
+27178,75967
+27179,61713
+27180,53921
+27181,18317
+27182,9471
+27183,81297
+27184,9743,68769
+27185,56765
+27186,53672
+27187,71696
+27188,68086,37607
+27189,28030,58502
+27190,15048
+27191,18164
+27192,60310
+27193,77607
+27194,25741
+27195,50409
+27196,66707
+27197,64663
+27198,79399
+27199,28444
+27200,52875
+27201,56068
+27202,62715
+27203,31590
+27204,38524
+27205,81402,80306
+27206,25132
+27207,38348
+27208,61880
+27209,32936
+27210,39115
+27211,60013
+27212,55958,30260
+27213,78622
+27214,63872
+27215,31717
+27216,56115,47952
+27217,73564
+27218,33705
+27219,1111
+27220,48683,31647
+27221,61877
+27222,29883
+27223,1126
+27224,74778
+27225,42259
+27226,27811
+27227,41192
+27228,31763
+27229,9463
+27230,66488,60712,45057,68788
+27231,38279,46305
+27232,46485
+27233,43339
+27234,45770
+27235,63287
+27236,63219
+27237,77357
+27238,74749
+27239,72243
+27240,68622
+27241,14754
+27242,25789,48781
+27243,36902
+27244,9389
+27245,13013
+27246,1192
+27247,78560
+27248,73795
+27249,14701
+27250,77079
+27251,65145
+27252,76194
+27253,16648,58508
+27254,64701
+27255,50003
+27256,48456
+27257,40220,20932
+27258,18044,30412
+27259,81362
+27260,46046
+27261,37683
+27262,39185
+27263,41579
+27264,22695
+27265,6643
+27266,73742
+27267,11719
+27268,64172
+27269,39344
+27270,36348,72042
+27271,35726
+27272,62391,29156
+27273,60545
+27274,9156
+27275,50295,16888
+27276,61688
+27277,19110
+27278,43637
+27279,9019
+27280,58611
+27281,28735,6279
+27282,60023
+27283,1842
+27284,55187
+27285,78947,658
+27286,56218,50477,20817
+27287,21318
+27288,11468
+27289,58507
+27290,43089
+27291,9287,9452
+27292,18801
+27293,9177
+27294,37367,61394
+27295,834
+27296,23951,75324
+27297,51886
+27298,74678
+27299,5713
+27300,17821
+27301,71940,45885
+27302,50529
+27303,59337
+27304,62232
+27305,45650
+27306,72926
+27307,17154
+27308,6600
+27309,16799
+27310,30509
+27311,68428
+27312,27646
+27313,24290,13425
+27314,75948,24069,8426
+27315,39618
+27316,32777
+27317,70378
+27318,39050
+27319,49066
+27320,1094
+27321,65854
+27322,31086
+27323,18519
+27324,38063
+27325,59102
+27326,57299
+27327,62323
+27328,19475
+27329,51919
+27330,67667
+27331,47609
+27332,32552
+27333,81089,51123
+27334,19425
+27335,38282,59597
+27336,23360
+27337,45401
+27338,18929,74590
+27339,36240,33368
+27340,16799
+27341,36037,82029
+27342,26522
+27343,31439
+27344,58990
+27345,3983
+27346,33008
+27347,67682
+27348,54656
+27349,10381
+27350,80566
+27351,76607
+27352,1490
+27353,29614
+27354,43723
+27355,77303
+27356,41005
+27357,32639
+27358,16608
+27359,8865
+27360,16162
+27361,38040
+27362,80022
+27363,40014
+27364,31937
+27365,45341
+27366,34532,58066
+27367,50682,67405
+27368,27537
+27369,58953
+27370,80322
+27371,52671
+27372,70966
+27373,23742
+27374,41657
+27375,74700
+27376,71765
+27377,22554,81245
+27378,1988
+27379,3217
+27380,7661
+27381,36973
+27382,72114,73381
+27383,59009,53525
+27384,35173
+27385,62225
+27386,33382
+27387,3143
+27388,41628
+27389,16556,33969
+27390,42939
+27391,7189,57869,28612
+27392,10270
+27393,56166
+27394,2758
+27395,14784
+27396,15720
+27397,23249
+27398,7111,1209
+27399,37137,49877
+27400,51015
+27401,80478
+27402,34081
+27403,25258
+27404,52212,12356
+27405,69807
+27406,58749,42753
+27407,71765
+27408,31437
+27409,59083
+27410,48251
+27411,52155
+27412,62728
+27413,30488
+27414,52173
+27415,32000
+27416,70781,74943
+27417,56765
+27418,69233
+27419,58832
+27420,34265
+27421,72902
+27422,45021
+27423,25764
+27424,16644
+27425,12233
+27426,79629
+27427,55283
+27428,55312
+27429,14606,2485
+27430,65921,25206
+27431,48093
+27432,3741
+27433,46477
+27434,47762
+27435,47047
+27436,1469
+27437,75521
+27438,8872
+27439,5245
+27440,20343
+27441,72406
+27442,13312,69920,4313
+27443,77448
+27444,65739
+27445,10505,75193,56159
+27446,2047,77926
+27447,61694,23839
+27448,38082
+27449,56309
+27450,75989
+27451,43046
+27452,19959
+27453,17923
+27454,80131
+27455,68877
+27456,18593
+27457,60356
+27458,57805
+27459,13238
+27460,58667
+27461,59775
+27462,49901
+27463,69032
+27464,74146
+27465,76218
+27466,8471
+27467,10643
+27468,30948,21372
+27469,46633
+27470,72940,54775
+27471,69409
+27472,19614
+27473,10651
+27474,18218
+27475,46397
+27476,73317
+27477,55676
+27478,12541
+27479,52572
+27480,67718
+27481,77730
+27482,57335
+27483,46956,56733
+27484,11096
+27485,72
+27486,76389,77204
+27487,43774
+27488,33174
+27489,69356
+27490,59028
+27491,77001,6985
+27492,79750
+27493,24440
+27494,31007
+27495,52911
+27496,43197
+27497,60776
+27498,1462
+27499,69616
+27500,2260
+27501,14709,5479
+27502,17344
+27503,40388
+27504,28817
+27505,69864
+27506,71185
+27507,28631
+27508,49545
+27509,32148
+27510,13867,27351
+27511,80030,54416
+27512,61193
+27513,15163
+27514,61753
+27515,23776
+27516,44562
+27517,17355
+27518,5888
+27519,17908
+27520,12666
+27521,80290,66594
+27522,6551
+27523,75709,28938
+27524,19666
+27525,34321
+27526,10591
+27527,73853
+27528,65385
+27529,60854
+27530,75403
+27531,20871,15370
+27532,30623
+27533,20795
+27534,76852
+27535,62629
+27536,40071
+27537,18534
+27538,10301
+27539,13742
+27540,45282
+27541,47223,37286
+27542,46535
+27543,58506
+27544,56482,33851
+27545,69903
+27546,27473
+27547,39287,71807
+27548,58223
+27549,13926,4470
+27550,75477,47819
+27551,60283
+27552,55822
+27553,16751
+27554,73894,9803
+27555,45633
+27556,5593
+27557,47505
+27558,76177
+27559,43930
+27560,19370
+27561,71304
+27562,41748
+27563,4030
+27564,51727
+27565,2147
+27566,42408
+27567,50259
+27568,29537
+27569,38457
+27570,13449
+27571,54858
+27572,25363
+27573,9205
+27574,70741
+27575,13014
+27576,2895
+27577,58966,77921
+27578,29455,34139
+27579,42206
+27580,62954
+27581,80816
+27582,30705,51382
+27583,52529,63537
+27584,14564,7345
+27585,9288
+27586,27001
+27587,14484,75730
+27588,27432
+27589,51851
+27590,53235,8707
+27591,71437
+27592,713,19794
+27593,39499,81048
+27594,21430
+27595,10776
+27596,67169,66663
+27597,50666
+27598,1528
+27599,14495
+27600,32855
+27601,37874
+27602,65303
+27603,22344,50570
+27604,28984
+27605,19421
+27606,50248
+27607,35538
+27608,11316
+27609,22702
+27610,3516
+27611,16867,72857,45360
+27612,59910
+27613,22967
+27614,36583
+27615,3738,16772,35490
+27616,77188
+27617,53884
+27618,10430
+27619,18150
+27620,40846,4064,28499
+27621,70700,55409
+27622,63036
+27623,77390
+27624,18775
+27625,75150
+27626,72030
+27627,14851
+27628,76086
+27629,3020
+27630,33174
+27631,29264,72688
+27632,23410
+27633,57679,50386
+27634,34024
+27635,10868,53110
+27636,51163
+27637,17794,50642
+27638,77350
+27639,19951
+27640,40328,65504
+27641,14572
+27642,49142
+27643,77166,57326
+27644,18241,63815
+27645,1469
+27646,58966,69905
+27647,26733
+27648,49845,21563
+27649,47024
+27650,30757,72763
+27651,7017
+27652,48144,79596
+27653,48718
+27654,23382
+27655,43243
+27656,56387
+27657,30243
+27658,49649,40349,6567
+27659,78589,25425,56209
+27660,32476
+27661,35105
+27662,26486,15671
+27663,6006
+27664,14888
+27665,36330
+27666,51418
+27667,80091
+27668,32486
+27669,27444,80210
+27670,62020
+27671,35771
+27672,36525
+27673,55170,26494
+27674,76106
+27675,4776
+27676,82139
+27677,36665
+27678,63294
+27679,45804
+27680,69
+27681,30284,25301,23054
+27682,20265
+27683,24014
+27684,31674,35026,29332
+27685,34506
+27686,24469,21201
+27687,20424
+27688,45629
+27689,43617,7603
+27690,78208
+27691,51475
+27692,9623
+27693,46577,79265,70882
+27694,74033
+27695,11057
+27696,30298
+27697,10462,51795
+27698,78746
+27699,2874
+27700,79589
+27701,18691
+27702,8978,76812,53486
+27703,26585
+27704,74266
+27705,50643
+27706,41485
+27707,78346
+27708,4672
+27709,46147
+27710,8244
+27711,18694
+27712,16015
+27713,29445
+27714,79942
+27715,34059
+27716,75148,65496
+27717,3923
+27718,81457
+27719,42791
+27720,18637,67312
+27721,6250
+27722,78755,78194,38181
+27723,1502
+27724,42986
+27725,38737
+27726,47457
+27727,76758
+27728,53619
+27729,48662
+27730,76644
+27731,65049
+27732,29466
+27733,68652
+27734,40100
+27735,23092
+27736,32515
+27737,40701
+27738,23435
+27739,37152
+27740,64273
+27741,52948,71103
+27742,34281
+27743,44477
+27744,12718
+27745,41728
+27746,30384
+27747,61077
+27748,9131
+27749,60671
+27750,11819
+27751,78043
+27752,60510
+27753,76680,33912,63941
+27754,66745
+27755,33436
+27756,11903
+27757,76,8516
+27758,81215
+27759,69810,57682
+27760,80844,33345,44370
+27761,27692,53717
+27762,625
+27763,13243
+27764,3850
+27765,75636
+27766,43096
+27767,364,7727,1534
+27768,5228
+27769,19625
+27770,48712,50870
+27771,79668
+27772,27830
+27773,55317
+27774,38224
+27775,4559
+27776,47167
+27777,50228
+27778,39835
+27779,23698,80354
+27780,10037
+27781,45189
+27782,19053
+27783,20250,74658
+27784,77428
+27785,49976
+27786,67686,17135
+27787,21758
+27788,70980
+27789,52346,13145
+27790,4831
+27791,42690,55007,30415
+27792,15983
+27793,2686
+27794,61168
+27795,22526,48008
+27796,14930
+27797,52194
+27798,10272
+27799,20828
+27800,42924
+27801,72909
+27802,20662,62042
+27803,45614
+27804,4404
+27805,37584
+27806,55936
+27807,58202,69296
+27808,21998
+27809,32023
+27810,18304
+27811,76630
+27812,20066
+27813,30298
+27814,14187
+27815,10089
+27816,51313
+27817,48797,10748
+27818,16836
+27819,50894
+27820,17997
+27821,25478,67662
+27822,15633
+27823,80126
+27824,48445
+27825,4436,79455
+27826,76939
+27827,9898,79475,15865
+27828,27863
+27829,5995,51627
+27830,20913
+27831,43019,73371
+27832,44827,32116,42674,201
+27833,18362
+27834,14075,29183
+27835,79436
+27836,18688
+27837,81746
+27838,31664
+27839,41571
+27840,76010
+27841,33873
+27842,81452,38941
+27843,68633
+27844,36557
+27845,41845
+27846,45485,37248
+27847,8678
+27848,4359
+27849,15470
+27850,21597
+27851,65774
+27852,21382
+27853,65435
+27854,5408,39341
+27855,15324,38257
+27856,66394
+27857,8590
+27858,64762,27445
+27859,53002
+27860,12562
+27861,29608
+27862,43090,15841,23428
+27863,65558
+27864,31468,77170
+27865,53845
+27866,73513
+27867,75779
+27868,47183
+27869,12601
+27870,43753
+27871,76834
+27872,33890
+27873,47189,12262
+27874,18644
+27875,36512
+27876,70026
+27877,52708
+27878,19401
+27879,10195
+27880,18688,39542
+27881,49732
+27882,71531
+27883,75905,76335
+27884,27381,10017,41216
+27885,5241
+27886,34597
+27887,81871,76797
+27888,33501
+27889,14814
+27890,9573,8894
+27891,13180
+27892,69169
+27893,41208
+27894,17192
+27895,13336
+27896,11297
+27897,45643
+27898,34475
+27899,47105
+27900,10260
+27901,48313,44204
+27902,26716,64267,66698
+27903,47437
+27904,6977
+27905,1375
+27906,6470
+27907,80497
+27908,36298,27138
+27909,39050
+27910,59744
+27911,19976
+27912,38285,35484
+27913,68143,62162
+27914,69170
+27915,47323,13117
+27916,8383,59764,37232
+27917,19825
+27918,29160
+27919,19850,39936
+27920,73369
+27921,26949
+27922,53546
+27923,49040,43423,79122
+27924,38461
+27925,10993
+27926,29099
+27927,15635,77517
+27928,39898
+27929,73787
+27930,73592
+27931,13605
+27932,23053
+27933,76231
+27934,47657
+27935,45498
+27936,68731
+27937,47870,80060
+27938,56433
+27939,44756
+27940,18178
+27941,39378
+27942,79729
+27943,61290
+27944,45611
+27945,50032,67777,48203
+27946,59229
+27947,59096,49903
+27948,35717
+27949,8223
+27950,10974
+27951,18140
+27952,6900
+27953,4603
+27954,30657
+27955,30545
+27956,72628
+27957,36855
+27958,27034
+27959,75035,81654
+27960,26490
+27961,58985
+27962,52318
+27963,41559,45279
+27964,20834
+27965,55201
+27966,72984
+27967,67714
+27968,61212
+27969,46588
+27970,31588
+27971,75096,23620
+27972,28992
+27973,54810,8680,72721
+27974,77332
+27975,54434
+27976,12897
+27977,62936
+27978,7549
+27979,66142
+27980,22283
+27981,45922
+27982,12438
+27983,3593
+27984,37629
+27985,71394
+27986,36219
+27987,65781
+27988,36890,81810
+27989,59906
+27990,35952
+27991,65745
+27992,58348,65949
+27993,57574
+27994,2248,48102
+27995,29196,50445
+27996,74372
+27997,23207
+27998,24069
+27999,25794,58173
+28000,17648
+28001,47826
+28002,30785
+28003,50434
+28004,41154,12411
+28005,48245,1960
+28006,31878,42466,15901
+28007,48587
+28008,36881,43237
+28009,71964
+28010,4168,36987
+28011,21405
+28012,15806
+28013,72897
+28014,54385
+28015,45131
+28016,61223
+28017,78917,64356
+28018,14945
+28019,24151
+28020,41782
+28021,62475
+28022,24257
+28023,37252,26316
+28024,50510
+28025,6490
+28026,18659
+28027,12924,22136
+28028,21527
+28029,30755
+28030,23756
+28031,74611
+28032,18788,72092
+28033,53930,31328
+28034,80581,27239
+28035,79877
+28036,13490
+28037,71824
+28038,62797,26479
+28039,32887,77450
+28040,81328
+28041,52075,12472
+28042,35367
+28043,28189
+28044,66542
+28045,18663
+28046,18199
+28047,30454,1247,68921
+28048,30145
+28049,45915,39513
+28050,58029
+28051,77428
+28052,78690
+28053,61772,53911
+28054,8510,2531
+28055,41255,9193
+28056,60390
+28057,64185,69588
+28058,29762
+28059,45899
+28060,42255
+28061,46044
+28062,48201
+28063,15474
+28064,62814,45755,42637,49248
+28065,10731,50241,27247
+28066,47913,7879
+28067,51486,81498,23063
+28068,20087
+28069,33614,20286,29430
+28070,12236
+28071,2194
+28072,79003
+28073,23258
+28074,7353
+28075,69209
+28076,47823
+28077,49013,15496,4372
+28078,42206,38909
+28079,15115
+28080,11812
+28081,63898
+28082,43864
+28083,67032
+28084,15929
+28085,32258
+28086,31110,60413
+28087,29215
+28088,45558
+28089,74611
+28090,5171
+28091,2248
+28092,16346
+28093,61100,73493
+28094,60672
+28095,31543
+28096,81248
+28097,17345
+28098,57831
+28099,47040,11869
+28100,51579
+28101,22596
+28102,13001
+28103,78438
+28104,38355,16547
+28105,73201,11275
+28106,33508,11479
+28107,74156,58
+28108,37505
+28109,1122
+28110,24531
+28111,56454
+28112,52883
+28113,16775
+28114,54800
+28115,51789
+28116,34721,71914
+28117,60837
+28118,66865
+28119,228
+28120,60310
+28121,80172
+28122,72937
+28123,25945,2007
+28124,48684
+28125,57185
+28126,44365
+28127,73334
+28128,10444
+28129,19304
+28130,21507
+28131,36688
+28132,72006,72354
+28133,35281
+28134,63737
+28135,57382
+28136,6325
+28137,69123,64464
+28138,81442
+28139,59956
+28140,35098,55555
+28141,1787
+28142,68645
+28143,79096
+28144,58613,61988
+28145,8433
+28146,5233
+28147,42635
+28148,27001
+28149,54314
+28150,59656
+28151,43483
+28152,15046
+28153,35842
+28154,4000
+28155,7556
+28156,4695,54448
+28157,46028
+28158,27165,1992
+28159,21282
+28160,56114
+28161,13527
+28162,72291,16759
+28163,75777
+28164,16790
+28165,70149
+28166,54249
+28167,47887
+28168,35569
+28169,63469
+28170,72541
+28171,48238
+28172,49434
+28173,8295
+28174,12714,25002,11908
+28175,77381
+28176,67525
+28177,20243
+28178,53318
+28179,28810
+28180,6019
+28181,77185,8801
+28182,49054
+28183,56185
+28184,26490
+28185,31242
+28186,67332
+28187,12026
+28188,64642
+28189,25601,31492
+28190,48182
+28191,7419
+28192,81702
+28193,80416,9914,34519
+28194,16220
+28195,23101
+28196,18413
+28197,79071
+28198,42232
+28199,19719
+28200,18749
+28201,72900
+28202,22653
+28203,68550
+28204,49891
+28205,21559
+28206,1429
+28207,77805
+28208,62501
+28209,11517,11092
+28210,11672
+28211,63331,59968
+28212,74385
+28213,40610
+28214,73007,5872
+28215,22313,52095
+28216,18994
+28217,5959
+28218,32242,42448
+28219,33365
+28220,41567
+28221,12266,63466
+28222,69374
+28223,400
+28224,36904
+28225,46558
+28226,33815,33122
+28227,18128
+28228,78971,73290,81087
+28229,66664
+28230,53460
+28231,44865
+28232,52490
+28233,77324
+28234,47704
+28235,44507
+28236,11326
+28237,45927
+28238,17042
+28239,15689
+28240,28483
+28241,81005
+28242,41424
+28243,35374
+28244,77129,70739
+28245,18172
+28246,11594
+28247,68491
+28248,52549
+28249,38607
+28250,53460
+28251,6672
+28252,57903,17052
+28253,768
+28254,55882,11682
+28255,18124,33101
+28256,52869
+28257,72279,6202
+28258,80589
+28259,4869
+28260,16977
+28261,11986
+28262,59131,76083
+28263,13884
+28264,34616
+28265,31455
+28266,36905
+28267,12466
+28268,27915
+28269,54959
+28270,38307
+28271,17573
+28272,16799
+28273,59064,80400
+28274,45253
+28275,11656
+28276,38966
+28277,29260
+28278,73134
+28279,46200
+28280,54329
+28281,72587
+28282,221,48457
+28283,4684
+28284,51656,56728
+28285,8734
+28286,44698
+28287,78808
+28288,23605
+28289,61715
+28290,1374,37643
+28291,55431,28439,29776,9875
+28292,69157
+28293,21634
+28294,63191,475
+28295,44167
+28296,43433
+28297,44993
+28298,28865,37841
+28299,670,53035
+28300,45405
+28301,54742
+28302,31259
+28303,62495
+28304,20425
+28305,63713
+28306,1789
+28307,42647
+28308,13397
+28309,5710
+28310,76742
+28311,54877,77735
+28312,74856,48572
+28313,35559
+28314,13776,10317
+28315,14701
+28316,79059,31595
+28317,42615
+28318,2319
+28319,765
+28320,45018
+28321,14170
+28322,4325
+28323,56529
+28324,42310
+28325,69838
+28326,44477
+28327,8600
+28328,75904
+28329,20136,9754
+28330,59481,6401
+28331,73655
+28332,39431
+28333,16410,79466,111
+28334,15289
+28335,42004
+28336,80794
+28337,76546
+28338,79673
+28339,29737
+28340,56955
+28341,29599,62822
+28342,70376,61788
+28343,69124
+28344,74114
+28345,44579,1176
+28346,53500
+28347,16293
+28348,45405
+28349,19045
+28350,23353
+28351,74216
+28352,27192
+28353,30421
+28354,41929,3983,25712
+28355,30540
+28356,39389,67669
+28357,19057,58185
+28358,47888,33263
+28359,77543,55595
+28360,5946
+28361,288
+28362,40399
+28363,2521
+28364,76077
+28365,24458
+28366,45235
+28367,36696,41168
+28368,21017
+28369,57805
+28370,72119
+28371,12302
+28372,20795
+28373,4065
+28374,48944
+28375,14479
+28376,40871
+28377,49540
+28378,32169
+28379,20777
+28380,45960
+28381,29522
+28382,38734
+28383,941
+28384,65631
+28385,43200
+28386,32728
+28387,68010,50357
+28388,33474
+28389,14022
+28390,74911,15198
+28391,38990
+28392,76810
+28393,14274
+28394,27663,57160
+28395,67973
+28396,78726
+28397,68714
+28398,75841,41470
+28399,50109,74707
+28400,36315
+28401,39374
+28402,23269,50825,59091
+28403,18651,80028,21733
+28404,57867
+28405,59553
+28406,15859
+28407,6861,61376
+28408,6201
+28409,33051
+28410,59719
+28411,42068
+28412,67646
+28413,58048
+28414,40974
+28415,36556
+28416,36624,11828
+28417,38716,29405
+28418,2123,42951
+28419,26496,65743
+28420,70345,41509
+28421,27768,29838
+28422,1754
+28423,11094
+28424,78749
+28425,54615
+28426,6144
+28427,2251
+28428,35465
+28429,82039,74713
+28430,51782
+28431,39520
+28432,20585
+28433,76937
+28434,66643
+28435,37015
+28436,438
+28437,14133
+28438,6787
+28439,59,32259
+28440,34692,33454
+28441,21791,641
+28442,36673
+28443,128,27106
+28444,60395
+28445,34162
+28446,59809
+28447,20449
+28448,58279
+28449,1931,15281
+28450,49653
+28451,3277
+28452,10168
+28453,38315
+28454,73185
+28455,5953
+28456,81571
+28457,27185
+28458,11874
+28459,66824
+28460,1416
+28461,78658
+28462,70300
+28463,34532
+28464,70518,5507,79502
+28465,76846
+28466,73556
+28467,65640
+28468,13412
+28469,3419
+28470,72765,9123
+28471,26729
+28472,34537,76965,4791
+28473,57857,56989
+28474,45616
+28475,42605
+28476,38766
+28477,45403
+28478,40603
+28479,33512
+28480,40185
+28481,70672
+28482,31588
+28483,22133
+28484,81639,37132
+28485,68684
+28486,34728
+28487,59529
+28488,54172
+28489,15923
+28490,13177
+28491,42327
+28492,79268
+28493,51608
+28494,75035,64855
+28495,24383,28680,15424
+28496,49264,81652
+28497,64194
+28498,76677,14785
+28499,13501
+28500,8257
+28501,1384
+28502,51455
+28503,63790
+28504,28568
+28505,54144
+28506,10955,28322
+28507,30540
+28508,38628
+28509,31046
+28510,5273
+28511,2373
+28512,10301
+28513,65044
+28514,29880,57356
+28515,25549
+28516,56060,24800
+28517,9796
+28518,57702,11104
+28519,48577
+28520,70489
+28521,38127
+28522,60831
+28523,45285
+28524,75126
+28525,53703
+28526,75882
+28527,32928
+28528,60055
+28529,6809
+28530,80645
+28531,29217
+28532,16850,24036
+28533,46529
+28534,42944
+28535,39847
+28536,47575,80750
+28537,67843,76266
+28538,75949
+28539,75881
+28540,58295
+28541,9585,14526
+28542,75814
+28543,33174
+28544,7344,10011
+28545,44453,43774
+28546,64231
+28547,35022
+28548,74216
+28549,77072
+28550,5251
+28551,59048
+28552,57487,22922
+28553,16107
+28554,80486
+28555,10591,36219
+28556,78974,26065
+28557,10752
+28558,70222,40929
+28559,27519,47340
+28560,8023
+28561,23276
+28562,24224
+28563,29196
+28564,7902
+28565,25136,5339,69857
+28566,39415
+28567,14928
+28568,41425
+28569,70442
+28570,41205
+28571,77096,9472
+28572,28956
+28573,4104
+28574,57381,59440
+28575,59144
+28576,13256
+28577,28095
+28578,75714,70901
+28579,1236,8829
+28580,75354,31634
+28581,39343,31600,40596
+28582,25000
+28583,50069
+28584,48575,5319
+28585,41418
+28586,37138
+28587,4098
+28588,45256
+28589,55672,78854
+28590,58666,59699
+28591,42939
+28592,24419
+28593,48736
+28594,62006
+28595,59700
+28596,1993
+28597,4894
+28598,39394
+28599,4187
+28600,32338,15967
+28601,3767
+28602,72610,69311
+28603,30524,5155
+28604,25948,70345
+28605,44430
+28606,56114
+28607,27114
+28608,40576,21110
+28609,63447
+28610,66200
+28611,21269
+28612,2413
+28613,49141
+28614,31003
+28615,79599,36209
+28616,40283
+28617,805
+28618,28696,81239
+28619,23540,38119
+28620,75180
+28621,55040
+28622,60785,16654
+28623,77757
+28624,11858
+28625,20487
+28626,70061
+28627,1160
+28628,22508,33596,38109
+28629,7613
+28630,15352
+28631,60293
+28632,79640
+28633,14565
+28634,5986
+28635,75623
+28636,22916
+28637,16980
+28638,72926
+28639,8283,1861
+28640,38912
+28641,59789
+28642,24784
+28643,36993
+28644,35530
+28645,76091
+28646,13859
+28647,16716
+28648,53369,63957
+28649,1235
+28650,44638
+28651,18458
+28652,45441,40058
+28653,71406
+28654,56041
+28655,23094
+28656,67838
+28657,37877
+28658,74118,3045
+28659,56843
+28660,52089
+28661,70524
+28662,15126
+28663,22038
+28664,40859,75649
+28665,26251,75132
+28666,25280
+28667,80659
+28668,63699
+28669,2568
+28670,47248
+28671,59959,12250
+28672,14203
+28673,63295
+28674,7825
+28675,46191
+28676,23487
+28677,195
+28678,13368,63549
+28679,24828,31316
+28680,18811
+28681,25075
+28682,65939,52718,65726
+28683,3032
+28684,50590
+28685,54125
+28686,33297
+28687,58887
+28688,78514
+28689,66578
+28690,66954
+28691,35613
+28692,57190
+28693,81325
+28694,51891,2446
+28695,50962
+28696,53464
+28697,54718
+28698,72084
+28699,73939
+28700,17353,59920
+28701,48427,14461
+28702,40035,14947
+28703,32039
+28704,11810
+28705,41777
+28706,10505
+28707,35287
+28708,27859
+28709,48836
+28710,77231
+28711,74010
+28712,26522
+28713,8461
+28714,40344
+28715,53883
+28716,5870,50809
+28717,59825,80545
+28718,30320
+28719,15341
+28720,69361
+28721,76932
+28722,46789
+28723,73272
+28724,41294
+28725,11963
+28726,76101,1855,15842
+28727,43881
+28728,55017,64021,64909
+28729,15606
+28730,38249
+28731,36603
+28732,7658
+28733,40011
+28734,53953
+28735,60254,51823
+28736,46923
+28737,17521,80132
+28738,67065,7169
+28739,38293
+28740,49236
+28741,64110
+28742,40247
+28743,17225,67743
+28744,18773,38146
+28745,11782
+28746,68126,56785,37660
+28747,37553
+28748,9779
+28749,44200
+28750,69918
+28751,59070,77692
+28752,1196,17052
+28753,44304,63579
+28754,15646
+28755,45819,5190
+28756,5529
+28757,60954
+28758,15907
+28759,11109
+28760,4216
+28761,6191
+28762,62475
+28763,53145
+28764,31425
+28765,69590
+28766,68117
+28767,74939
+28768,66161
+28769,1615
+28770,35571
+28771,51082
+28772,69136
+28773,62291
+28774,25876
+28775,14872
+28776,28960,8361
+28777,34348
+28778,79122
+28779,75006
+28780,50289
+28781,59444
+28782,75441,11923
+28783,43631
+28784,26693
+28785,17381
+28786,60593
+28787,40762
+28788,10049,24873
+28789,55462,49493
+28790,63717
+28791,43802
+28792,42102
+28793,42925
+28794,63640
+28795,63398
+28796,63949
+28797,7645
+28798,31172
+28799,32971,3671
+28800,74909
+28801,18143
+28802,984
+28803,10630
+28804,46894
+28805,34698
+28806,32629,14234
+28807,6829
+28808,54091,11858
+28809,71672
+28810,42782
+28811,37752
+28812,16952
+28813,53307
+28814,12630
+28815,10501
+28816,74566,19997
+28817,11574
+28818,10308
+28819,49285
+28820,1168
+28821,36715
+28822,54147
+28823,81229
+28824,24376
+28825,12392,53690
+28826,9036
+28827,50716
+28828,189
+28829,64997
+28830,57881
+28831,68827
+28832,49620
+28833,79047
+28834,15132
+28835,72720
+28836,41415
+28837,52654
+28838,66052
+28839,37743,42504
+28840,78107
+28841,62834
+28842,73800
+28843,18651
+28844,3042,36627
+28845,55436
+28846,31198
+28847,27500
+28848,39794
+28849,58927
+28850,69997
+28851,23085
+28852,20925,77215
+28853,51869
+28854,55958
+28855,10994
+28856,20699
+28857,14167
+28858,54638
+28859,33867
+28860,44115,77219
+28861,75390
+28862,30339,68192
+28863,5031
+28864,43232
+28865,39431
+28866,42188,52902
+28867,43758
+28868,35612
+28869,81305
+28870,74751
+28871,30128,14851
+28872,5908
+28873,48324,7667,39780
+28874,64357
+28875,55396
+28876,75703
+28877,37429
+28878,20023,12341
+28879,1200
+28880,70837
+28881,48063
+28882,60808,81331
+28883,17572
+28884,80810
+28885,58238
+28886,31515
+28887,51043,2581
+28888,30545,8128
+28889,51903
+28890,35912
+28891,70593,70533,45110
+28892,77263
+28893,2131
+28894,35262
+28895,68276
+28896,73105,54173
+28897,27051,16922
+28898,79102
+28899,72189
+28900,49557
+28901,35573
+28902,81844
+28903,8130,36241
+28904,16206
+28905,38093
+28906,3545
+28907,45778
+28908,59521
+28909,43329,44962
+28910,72186,24133
+28911,7017
+28912,32706
+28913,73027
+28914,47579
+28915,40207,34414
+28916,36151
+28917,74753
+28918,23410
+28919,53612,43786,33993
+28920,71996
+28921,9600
+28922,28188,7649
+28923,76755
+28924,33953
+28925,12818
+28926,69766,45034
+28927,76381,70086
+28928,60433
+28929,24899,47202
+28930,9812
+28931,32141
+28932,410
+28933,53724
+28934,62833
+28935,79495
+28936,80000,9891
+28937,77795
+28938,55016
+28939,69789
+28940,74599
+28941,45857
+28942,27649
+28943,15935
+28944,17689,2885
+28945,71087
+28946,77066
+28947,68305
+28948,1649
+28949,50978
+28950,6428
+28951,57872
+28952,75558
+28953,49456
+28954,48189
+28955,64524
+28956,36294
+28957,20487,51824
+28958,3767
+28959,17613,67139
+28960,21137
+28961,23018
+28962,23153
+28963,72636
+28964,73998
+28965,43089
+28966,45806
+28967,35651
+28968,46828,16962
+28969,68386,66055
+28970,8927
+28971,73855
+28972,11418
+28973,52869,23449,45723
+28974,7022
+28975,76793
+28976,30533,70472
+28977,11725
+28978,59941
+28979,62079
+28980,66314
+28981,53644
+28982,25584
+28983,48442
+28984,63815
+28985,50434
+28986,12012
+28987,23320
+28988,69878
+28989,63414
+28990,71518
+28991,6670
+28992,40755
+28993,73321
+28994,7734
+28995,24635,10154
+28996,51368
+28997,32192
+28998,55254
+28999,64656,57881
+29000,20117
+29001,14366
+29002,65171
+29003,20356
+29004,58257,63802
+29005,20935,67813
+29006,16532,52606
+29007,64399
+29008,26268,1446,70412
+29009,55343,79268
+29010,45189
+29011,8597
+29012,81878
+29013,52704
+29014,76360
+29015,19183
+29016,59560
+29017,71811,7211
+29018,64104
+29019,21305
+29020,3269,12936
+29021,43864
+29022,15582,54594
+29023,80690
+29024,72637
+29025,23663
+29026,10925
+29027,50920
+29028,3915
+29029,4223
+29030,31585
+29031,6479,51308
+29032,27072,20126,37904
+29033,64665
+29034,15489
+29035,21957
+29036,11253
+29037,9390
+29038,50008
+29039,27312,50544
+29040,32679
+29041,50874
+29042,48131
+29043,20818
+29044,12787,76568
+29045,19895,66612
+29046,13196
+29047,75274
+29048,5558
+29049,8755
+29050,58604
+29051,54146
+29052,20128
+29053,1596
+29054,4756
+29055,70302
+29056,57137
+29057,16939
+29058,20231,23845,52851
+29059,50682
+29060,61809
+29061,56337,41530
+29062,49991
+29063,41790
+29064,53144,62604
+29065,69513
+29066,1277
+29067,1575
+29068,3252,58209
+29069,76398
+29070,6579
+29071,77271
+29072,31571,46333
+29073,34035
+29074,19790
+29075,80810
+29076,45588
+29077,56372
+29078,79497
+29079,18863
+29080,36452
+29081,12848
+29082,71072
+29083,72565
+29084,41876,25580
+29085,51643
+29086,5075,44712
+29087,10072,56204
+29088,2612
+29089,23563
+29090,1659,2969,63691
+29091,32029
+29092,12297
+29093,28566
+29094,35470
+29095,62301
+29096,25391
+29097,77454
+29098,74297
+29099,33886
+29100,69874
+29101,57350
+29102,33682
+29103,30259,75952
+29104,24641
+29105,23568
+29106,13739
+29107,31105
+29108,26036
+29109,21052,56643
+29110,7775
+29111,49991,43792
+29112,70001
+29113,6434
+29114,23976
+29115,44910
+29116,3927
+29117,67956
+29118,71729
+29119,33700
+29120,18398,22608
+29121,34284
+29122,7603
+29123,49825
+29124,12146
+29125,64419,68855
+29126,2469
+29127,16695
+29128,70027
+29129,14312
+29130,3646
+29131,51062
+29132,55734
+29133,2705
+29134,34027
+29135,50478
+29136,55780
+29137,53390
+29138,75504
+29139,57388,51882
+29140,19514
+29141,61205
+29142,78364
+29143,49325,15660
+29144,19278
+29145,6502,21021,41736
+29146,19017,1245
+29147,74662
+29148,2666
+29149,33808
+29150,6896
+29151,28327
+29152,70038
+29153,34919
+29154,46230
+29155,30058
+29156,13450
+29157,31985
+29158,2052,67129,63686
+29159,81806,63737
+29160,78030,71340
+29161,58822
+29162,33349,32989
+29163,8834
+29164,64879
+29165,48244
+29166,74697
+29167,60320
+29168,41409
+29169,11836
+29170,65379
+29171,23898,42898,11677
+29172,76948
+29173,4700
+29174,71864
+29175,75579
+29176,119
+29177,33351
+29178,29557
+29179,41264
+29180,14304
+29181,66042
+29182,16757
+29183,27158
+29184,79343
+29185,78744,24114
+29186,79436
+29187,71633
+29188,22374
+29189,72280
+29190,31301
+29191,71178
+29192,57921
+29193,61960
+29194,54026
+29195,23776
+29196,1670
+29197,57515
+29198,17069
+29199,5058
+29200,47153
+29201,70308
+29202,79119
+29203,48346
+29204,63766
+29205,31843
+29206,19660
+29207,35004
+29208,51851,74906
+29209,52936
+29210,43953
+29211,17726
+29212,11205
+29213,42615
+29214,56852
+29215,42311
+29216,49674
+29217,36745
+29218,68394
+29219,28265,10202
+29220,55876,34585
+29221,62805
+29222,45488
+29223,37230
+29224,76126,31171
+29225,77997
+29226,18811
+29227,24770
+29228,27556
+29229,57410
+29230,40113
+29231,38440
+29232,66306,56009
+29233,8061
+29234,22330
+29235,44922
+29236,8323
+29237,33463
+29238,56952
+29239,74229
+29240,19779
+29241,61671
+29242,9889
+29243,39603
+29244,71887
+29245,18559,11096
+29246,41353
+29247,58334,59631
+29248,23782
+29249,37226,53901,77245
+29250,71430
+29251,16991,5801
+29252,66238,70451
+29253,62841
+29254,70005
+29255,8707
+29256,52903
+29257,6797
+29258,26541
+29259,45281
+29260,47123,49935
+29261,36637,48061
+29262,17769,9740
+29263,24957
+29264,41649
+29265,25760
+29266,38382
+29267,42310
+29268,64736
+29269,9983,76682
+29270,51058
+29271,63514
+29272,54116
+29273,50533
+29274,14612,32573
+29275,34281,41716
+29276,48138,5583
+29277,66670
+29278,25068
+29279,78804
+29280,19572,14881
+29281,57554
+29282,19732,63458
+29283,75682
+29284,16919
+29285,63054,12498,50374
+29286,70093
+29287,82067
+29288,7826,18430
+29289,5354
+29290,13920,49737
+29291,9976
+29292,29794
+29293,19250
+29294,2816
+29295,570,61376
+29296,79365
+29297,47328
+29298,19598
+29299,10482
+29300,19045
+29301,35073
+29302,23603
+29303,40558
+29304,81602,3525
+29305,55891
+29306,46987
+29307,52824,31638,65256
+29308,66043
+29309,416
+29310,70767
+29311,11446,31062
+29312,38257
+29313,37282
+29314,49907,14362
+29315,57539
+29316,24760
+29317,43304
+29318,79202,48774
+29319,69084,4297
+29320,36543,23843,78188
+29321,8804
+29322,60746
+29323,38208
+29324,81850
+29325,35992
+29326,56223
+29327,9217
+29328,69731
+29329,51226
+29330,41421,61411
+29331,80416
+29332,80449
+29333,44151,3573
+29334,50803
+29335,38592
+29336,38685,60313
+29337,64420
+29338,64327
+29339,79747
+29340,65933
+29341,33059
+29342,74413
+29343,70687
+29344,17531
+29345,75092,25275
+29346,15845
+29347,19332
+29348,44087
+29349,75388,27309
+29350,66581,49145
+29351,61304
+29352,15124
+29353,32708
+29354,74057,22586
+29355,39598
+29356,43836,59679
+29357,70647,25010
+29358,70119
+29359,46183
+29360,79129
+29361,49345
+29362,70800
+29363,16034
+29364,57469,52491
+29365,62762
+29366,64413
+29367,44627,71461
+29368,53729
+29369,2962,15523
+29370,179
+29371,57278
+29372,19956
+29373,45202
+29374,35918
+29375,35254
+29376,21288,23112
+29377,27707
+29378,43288
+29379,1384
+29380,30339
+29381,67497,7510
+29382,60045
+29383,37992
+29384,49690
+29385,65989,81927
+29386,57702
+29387,26846
+29388,3007
+29389,76906
+29390,47848
+29391,59899,754
+29392,75107,64482
+29393,78584
+29394,57537
+29395,18749
+29396,5853
+29397,80073,17835
+29398,14274,20831
+29399,65453
+29400,13183,50202
+29401,44729
+29402,31775
+29403,72029,14124
+29404,22452,19401,34222
+29405,25700
+29406,46824
+29407,80192
+29408,62461
+29409,22781
+29410,10513
+29411,8009
+29412,61224
+29413,14862,21616
+29414,39294
+29415,5648,76522
+29416,51287
+29417,73119,11160
+29418,80894
+29419,76455
+29420,7742
+29421,29527
+29422,23660
+29423,65985
+29424,6155
+29425,25157,69587
+29426,70018,47054
+29427,24492,17175
+29428,10774
+29429,42109
+29430,7075
+29431,60222,3086
+29432,17404
+29433,69363
+29434,6691
+29435,67422
+29436,68204,43524
+29437,79481
+29438,352
+29439,56155
+29440,68110
+29441,58557
+29442,4453
+29443,55254
+29444,39493
+29445,39898
+29446,57254
+29447,71638,875
+29448,62379
+29449,22752
+29450,76409
+29451,38423
+29452,60537
+29453,75457,51463,77166
+29454,71792
+29455,80823
+29456,71031
+29457,63144
+29458,1103
+29459,26101
+29460,8257
+29461,45680
+29462,76126
+29463,67572
+29464,80779
+29465,49142
+29466,25463
+29467,65018
+29468,59201,1443
+29469,18541
+29470,62374
+29471,42765
+29472,77610
+29473,39110
+29474,68284
+29475,57471,4519
+29476,31236
+29477,1382,81195
+29478,30612
+29479,68175
+29480,42569
+29481,62019
+29482,48286
+29483,42005
+29484,1772
+29485,26126,65331
+29486,5983
+29487,17707
+29488,25136
+29489,55524,10695
+29490,50940
+29491,53452
+29492,37505
+29493,34485
+29494,45999
+29495,17651
+29496,19825,2757
+29497,55370
+29498,1981,53567
+29499,17337
+29500,6819
+29501,44794
+29502,35866,79239
+29503,71
+29504,5908
+29505,74174
+29506,38936
+29507,32817
+29508,74258
+29509,15303,60234
+29510,79217
+29511,1361,26188
+29512,9113
+29513,77543
+29514,8642
+29515,47014
+29516,52339,24971
+29517,25437
+29518,26140
+29519,27770,71637
+29520,22453
+29521,40801
+29522,71185,59760
+29523,4202,52815
+29524,51343
+29525,19765,53516
+29526,19739
+29527,21024,77693
+29528,16492
+29529,22154
+29530,1411
+29531,16722
+29532,30139
+29533,34857
+29534,40938
+29535,59713
+29536,24761,34768
+29537,13666
+29538,13571
+29539,75100
+29540,16934
+29541,2571,64573
+29542,60767
+29543,57473,63562,18012
+29544,38935
+29545,14582
+29546,47467
+29547,13377
+29548,12103,28501,6160
+29549,866
+29550,80886
+29551,56311,72754
+29552,28703
+29553,372
+29554,65535
+29555,23030
+29556,77857
+29557,10428
+29558,23866
+29559,78035
+29560,66154
+29561,35259
+29562,65909
+29563,71846
+29564,65844
+29565,33712
+29566,76897
+29567,12517,19215
+29568,47894
+29569,10661
+29570,73921,13610,19934
+29571,42254
+29572,8258
+29573,80521
+29574,53012
+29575,31262
+29576,29748,38217
+29577,37311,60915
+29578,78954
+29579,33588,70752
+29580,27079
+29581,30501
+29582,29381
+29583,66563,42827,21104
+29584,80209
+29585,70098
+29586,26467
+29587,66382
+29588,73884
+29589,40174
+29590,41514
+29591,26156,31742,56265
+29592,38679
+29593,19393
+29594,70977
+29595,19481
+29596,35366
+29597,3371
+29598,66872
+29599,12196,61199
+29600,63482,53927
+29601,73765
+29602,35977
+29603,42667
+29604,43888
+29605,1979,398
+29606,16129
+29607,30850
+29608,12480
+29609,53018
+29610,42156
+29611,37730
+29612,7570
+29613,26386
+29614,34890
+29615,21731
+29616,77294,66283
+29617,25075
+29618,53708
+29619,19358
+29620,16371
+29621,47490
+29622,63190
+29623,49592
+29624,34975
+29625,62495
+29626,40422
+29627,44794
+29628,74544
+29629,29215
+29630,63179
+29631,66308,2817
+29632,62887
+29633,67173
+29634,25888
+29635,24223
+29636,39101,37396
+29637,15093,73281
+29638,62852
+29639,33854
+29640,54965
+29641,8160
+29642,49227
+29643,21543
+29644,12302
+29645,55846,21789
+29646,59661
+29647,59892,4334
+29648,52378
+29649,67332,45687
+29650,18325,32687
+29651,33302,38900
+29652,37845
+29653,54166,38405
+29654,31686
+29655,5673
+29656,77936,79278
+29657,25700
+29658,13283
+29659,42586
+29660,23654
+29661,61282,14232
+29662,69634
+29663,6668,11810
+29664,37012,34933
+29665,8201
+29666,7839
+29667,1975
+29668,24818
+29669,54234
+29670,38461
+29671,16999,39810
+29672,57803
+29673,75691
+29674,22246
+29675,65473,3090
+29676,16266
+29677,80698
+29678,43200
+29679,9530
+29680,9722
+29681,58289
+29682,23839,20073
+29683,13280
+29684,13853
+29685,40382
+29686,36022
+29687,3417,61887,28476
+29688,68309
+29689,15523
+29690,9842
+29691,47634
+29692,8876
+29693,81198,49424
+29694,44714
+29695,49181
+29696,8962
+29697,57606,54782
+29698,22756,21199
+29699,43032
+29700,62010,27865
+29701,3912
+29702,3566
+29703,21926,80254
+29704,41773,33403
+29705,80238
+29706,154
+29707,15590,1006
+29708,7122
+29709,79382
+29710,29424
+29711,70532
+29712,12193
+29713,12633
+29714,50798
+29715,59174
+29716,31142
+29717,11655
+29718,45727
+29719,9884
+29720,34614
+29721,41033
+29722,73608
+29723,58516
+29724,31643,23984
+29725,66424
+29726,169
+29727,81886,39011
+29728,7905
+29729,59960
+29730,58223
+29731,36061
+29732,47863
+29733,76242,14434
+29734,71283
+29735,58462
+29736,62113
+29737,65104,30248
+29738,36828
+29739,55883,61288,51229
+29740,80397
+29741,13413
+29742,58985
+29743,55088
+29744,68164
+29745,34647
+29746,57063
+29747,60913
+29748,30624
+29749,19864,65484
+29750,35752,10570
+29751,36674
+29752,71614,8920
+29753,53379,4369
+29754,27526
+29755,294
+29756,42635,21127
+29757,50022
+29758,27386,32484
+29759,45320
+29760,48551,7813
+29761,49428
+29762,62441,40790
+29763,24342
+29764,18249
+29765,38074
+29766,69415
+29767,77259
+29768,6195
+29769,9495,52006
+29770,50014
+29771,72322
+29772,7907
+29773,67065
+29774,23330
+29775,43751
+29776,65590
+29777,64763
+29778,25784
+29779,36733
+29780,2061
+29781,76904,46883
+29782,24924
+29783,64769
+29784,10847
+29785,31393,17904
+29786,63111
+29787,10997
+29788,74329
+29789,36993
+29790,15333
+29791,39310
+29792,30087
+29793,28063
+29794,58660
+29795,50693
+29796,257
+29797,55145
+29798,8848
+29799,19570
+29800,24845,6636
+29801,35155
+29802,6875
+29803,49646
+29804,63122
+29805,37857
+29806,7247
+29807,8945
+29808,81353
+29809,22245
+29810,34787
+29811,28109
+29812,63485,78998
+29813,80728
+29814,43434
+29815,50823
+29816,71656
+29817,23553,61135,68065
+29818,50070,74483
+29819,70901
+29820,74826
+29821,1612
+29822,26121
+29823,55656
+29824,25783
+29825,70174
+29826,44348
+29827,76989
+29828,47491
+29829,58591,9951
+29830,29353
+29831,17143
+29832,53146
+29833,15648
+29834,35085
+29835,20416,71172,3246
+29836,49017
+29837,23516
+29838,5740,65332
+29839,77687
+29840,49469
+29841,1603
+29842,60052,81218
+29843,9320
+29844,6678
+29845,9042
+29846,52962
+29847,54790,55421
+29848,11399,78438
+29849,52355,64635
+29850,31140
+29851,28287
+29852,26541,5479
+29853,74666
+29854,79936
+29855,45619
+29856,60023
+29857,10644
+29858,16257
+29859,43831,49545,64854
+29860,77412
+29861,19256
+29862,79754
+29863,55637,75303
+29864,66387
+29865,57247
+29866,15682
+29867,68436
+29868,71744
+29869,48147
+29870,3453
+29871,73554
+29872,57157,12645
+29873,53904
+29874,78815
+29875,33809
+29876,25070
+29877,19490
+29878,59877
+29879,78543
+29880,15337
+29881,72568
+29882,72070
+29883,58569
+29884,58281
+29885,74505
+29886,15095,76350
+29887,52815
+29888,57320
+29889,1238
+29890,14180
+29891,53478
+29892,33380
+29893,75892
+29894,42998
+29895,5422
+29896,41271,47771
+29897,28488
+29898,45
+29899,6103
+29900,6862,8721
+29901,21608,8087
+29902,1183
+29903,21300
+29904,21478
+29905,66896
+29906,38141
+29907,47382
+29908,35867,38601
+29909,32128
+29910,77066
+29911,59555
+29912,51362
+29913,3851
+29914,71480,78400
+29915,77889
+29916,53027
+29917,29631
+29918,64093
+29919,24435
+29920,72440
+29921,76897,79096
+29922,38068,75194
+29923,34793
+29924,21052,55313
+29925,9990
+29926,12107,40909,52360
+29927,63398
+29928,58980
+29929,45535
+29930,8627
+29931,74431
+29932,36020
+29933,21021,70734
+29934,12859
+29935,36958
+29936,76860
+29937,58312
+29938,2260
+29939,52087
+29940,4319
+29941,30095
+29942,16290
+29943,32305
+29944,35403
+29945,51715
+29946,23079
+29947,61694
+29948,55392
+29949,5030
+29950,42729,22295
+29951,67292
+29952,60160
+29953,11102,45144
+29954,70884
+29955,3376
+29956,986
+29957,9290,38715
+29958,29074
+29959,61996
+29960,78741
+29961,33931,57042,64042
+29962,45143
+29963,19499
+29964,64952
+29965,53118
+29966,76284
+29967,48703
+29968,81633
+29969,61264
+29970,20927
+29971,81753
+29972,37744,14376
+29973,13134
+29974,51293
+29975,3622,55572
+29976,842
+29977,41999,36806
+29978,33808
+29979,18801,71836
+29980,19861
+29981,14551
+29982,63098
+29983,51140
+29984,10819
+29985,41486
+29986,62390,58337
+29987,22292
+29988,73562
+29989,32691,70847
+29990,72389
+29991,53210
+29992,20637,64529
+29993,53699
+29994,1115
+29995,26669
+29996,34602
+29997,53524,15122
+29998,15280
+29999,73235
+30000,75367
+30001,53364,14130
+30002,2165
+30003,51102
+30004,74379
+30005,77708
+30006,24848
+30007,9727
+30008,38097
+30009,81889
+30010,74070
+30011,38304
+30012,58367
+30013,79677
+30014,14693
+30015,44095
+30016,31073
+30017,59881
+30018,35993
+30019,8500
+30020,59328
+30021,77169
+30022,103,17236
+30023,45236
+30024,42401
+30025,75585,77959
+30026,72375
+30027,39032
+30028,70412
+30029,44659
+30030,7030
+30031,28127
+30032,7229
+30033,6163
+30034,78686
+30035,20106
+30036,77612
+30037,41818,4570
+30038,66303
+30039,65145,75189
+30040,52444
+30041,54369,76860
+30042,77870
+30043,12816
+30044,23842
+30045,9111
+30046,60810,50819
+30047,51994
+30048,46658
+30049,43739
+30050,70903
+30051,71386
+30052,68345
+30053,8244,7256
+30054,21885
+30055,68541
+30056,28539
+30057,40615
+30058,50940
+30059,20200
+30060,52279
+30061,14357
+30062,31698,37936
+30063,48103
+30064,51635
+30065,29029,61944
+30066,15137
+30067,15343
+30068,5688
+30069,45124
+30070,67833
+30071,30824
+30072,29420
+30073,18671
+30074,9264
+30075,21734
+30076,66912
+30077,1797,15568
+30078,81410
+30079,38844
+30080,19387,11395,16463
+30081,7270
+30082,27701,10063
+30083,72454
+30084,78437
+30085,15469
+30086,78851
+30087,67298,66714
+30088,16866,16126
+30089,72442,40758
+30090,50191,13499
+30091,65530
+30092,45680
+30093,81474,18736
+30094,17621
+30095,69766
+30096,25596
+30097,29441
+30098,72587,3835
+30099,73154,17987
+30100,46710
+30101,45707
+30102,24703
+30103,72815
+30104,19791
+30105,49220
+30106,40881,4623
+30107,79851
+30108,4658
+30109,750,28128
+30110,39798
+30111,49905,59968
+30112,67497,29420
+30113,70456
+30114,38054
+30115,10632
+30116,60537
+30117,45424
+30118,21865
+30119,57041
+30120,45302
+30121,78390
+30122,1726
+30123,69661
+30124,59912
+30125,92
+30126,36853,64888
+30127,33454
+30128,59209
+30129,50919
+30130,61076
+30131,13326,49465
+30132,31043
+30133,50800
+30134,58608
+30135,1310
+30136,32801
+30137,75537
+30138,78598
+30139,29339,49294
+30140,57631
+30141,58319
+30142,29079
+30143,52264
+30144,4654,57938
+30145,30333
+30146,77034
+30147,80660
+30148,45057
+30149,27689,81621
+30150,11418
+30151,2559
+30152,44783
+30153,20045
+30154,78159
+30155,76460
+30156,55118
+30157,59232
+30158,26833
+30159,35410,36372,73241
+30160,7705,19722
+30161,36352
+30162,12563
+30163,67534
+30164,54704,8681
+30165,23605,70473
+30166,37681
+30167,71371
+30168,78506
+30169,36128
+30170,5020
+30171,38620,5173
+30172,52637
+30173,8533
+30174,31205,10840
+30175,31256
+30176,39413
+30177,52840
+30178,46794
+30179,39611,15223
+30180,64811
+30181,47842
+30182,16944
+30183,79225
+30184,3872
+30185,12273,13148
+30186,9259,20623
+30187,45041
+30188,1241
+30189,25259
+30190,4153
+30191,50563
+30192,28638
+30193,11373
+30194,45274
+30195,23189
+30196,56612
+30197,18148
+30198,12739
+30199,21166
+30200,71972
+30201,80595,18428
+30202,45457,52855
+30203,54496
+30204,30621
+30205,27924
+30206,29290
+30207,12337
+30208,35967
+30209,46949,2472,59516
+30210,64163
+30211,28501,20605
+30212,35044
+30213,38245
+30214,59142,12820
+30215,10454
+30216,26910
+30217,34972
+30218,73450
+30219,71305,72854
+30220,36784,4325
+30221,43522
+30222,72052
+30223,73559
+30224,62305
+30225,29748
+30226,72281
+30227,20299
+30228,49347
+30229,34415
+30230,61809
+30231,76444
+30232,33043
+30233,2463
+30234,62349
+30235,70357
+30236,39208
+30237,72674
+30238,73487,77969,49877
+30239,6053
+30240,46280
+30241,76246,25328
+30242,54027,21110
+30243,36026
+30244,71584
+30245,55942
+30246,26748
+30247,32135,15652
+30248,17826,67353
+30249,16734
+30250,27637,47911,32711
+30251,47080
+30252,28518,38620
+30253,13212
+30254,62244
+30255,66336
+30256,70759
+30257,23288
+30258,31207
+30259,51742
+30260,48820
+30261,12322
+30262,67163,36350
+30263,69059
+30264,56901,48166
+30265,29974
+30266,36757
+30267,54399
+30268,60807
+30269,594,69558
+30270,4808
+30271,62273
+30272,65499,53667
+30273,50518,22019
+30274,19767
+30275,39847
+30276,17948
+30277,1830
+30278,34997
+30279,77709
+30280,40371
+30281,73780
+30282,68788,38252
+30283,59041
+30284,39041
+30285,22642
+30286,34252
+30287,22684
+30288,4364
+30289,41658,45660,54440
+30290,48771
+30291,59838
+30292,18724,394,44812
+30293,63989
+30294,40071
+30295,78362,66134
+30296,19974
+30297,78583
+30298,3240
+30299,26020
+30300,42102
+30301,74307
+30302,68399
+30303,30011
+30304,32989
+30305,13537
+30306,20784
+30307,27475
+30308,29912
+30309,36682
+30310,38222
+30311,11766
+30312,18341,78839
+30313,77549,77139
+30314,52460,37505
+30315,8565
+30316,36541
+30317,72375,80750
+30318,76354
+30319,12474
+30320,77008
+30321,69808,7288
+30322,38146,6032
+30323,13874
+30324,67778
+30325,69737
+30326,46840
+30327,47444
+30328,18219
+30329,15391
+30330,26381
+30331,26772,11959
+30332,8576
+30333,2603
+30334,48492
+30335,17867
+30336,30479
+30337,80716,55037
+30338,59514
+30339,23332
+30340,42806,51308
+30341,39396
+30342,76935
+30343,70583,24655
+30344,11454
+30345,62735
+30346,57078
+30347,28638
+30348,7477
+30349,20571
+30350,43899
+30351,48097
+30352,1777,45086
+30353,25278
+30354,66680
+30355,28279,14229,55591
+30356,46927,20482
+30357,67075,46470
+30358,50777
+30359,69337
+30360,49727
+30361,29146
+30362,72151
+30363,41539
+30364,19834
+30365,63121
+30366,2109
+30367,34638
+30368,17804
+30369,9007
+30370,45197,36909
+30371,79848
+30372,46836,69131
+30373,45883
+30374,79595
+30375,61634
+30376,67639
+30377,54796
+30378,16410
+30379,20286
+30380,41409
+30381,69540,48989
+30382,77018
+30383,10273
+30384,40988
+30385,63169
+30386,35212,77537
+30387,23607
+30388,78028,16536
+30389,28611
+30390,76935,29840
+30391,43153
+30392,33579
+30393,64037
+30394,29757
+30395,48231
+30396,4707
+30397,72052
+30398,23569
+30399,13988
+30400,39743
+30401,59251
+30402,13319
+30403,18917
+30404,7945
+30405,17418
+30406,33059
+30407,31859
+30408,61027
+30409,76354
+30410,26567
+30411,77614
+30412,50962
+30413,54676
+30414,8818
+30415,31844
+30416,65754
+30417,63381
+30418,61578,60491
+30419,44869
+30420,76293
+30421,79202
+30422,74482
+30423,17801
+30424,41045
+30425,19438
+30426,16242
+30427,26464,56829
+30428,18850
+30429,55875,25529,81212
+30430,31502
+30431,25006,72042
+30432,54202
+30433,29452,58876
+30434,50445
+30435,41827
+30436,60264
+30437,77716
+30438,49152
+30439,18149
+30440,23714
+30441,61336
+30442,19686
+30443,48371
+30444,43703
+30445,78050
+30446,55303
+30447,17636
+30448,66304
+30449,34541,36957
+30450,139
+30451,58800
+30452,6251
+30453,50561
+30454,46266
+30455,63993,1647
+30456,7843,44194,25097
+30457,17671
+30458,71970
+30459,51382
+30460,40077
+30461,28220
+30462,59637
+30463,20834
+30464,80246
+30465,8090
+30466,78499
+30467,32268
+30468,40174
+30469,34442
+30470,21830,39422
+30471,44274
+30472,65044
+30473,26006
+30474,8113
+30475,27306,25302
+30476,12173
+30477,51087
+30478,67509
+30479,35296
+30480,74114,18362
+30481,5345,27788
+30482,37140
+30483,54713,6954
+30484,55291
+30485,77001
+30486,48552,5034
+30487,46016
+30488,37606
+30489,76213
+30490,37333,71207
+30491,68543
+30492,61460,81000
+30493,53810
+30494,42988
+30495,67589
+30496,63805
+30497,43565
+30498,34530
+30499,75423,47981
+30500,27107,38632
+30501,50798
+30502,69798
+30503,44577
+30504,5679
+30505,36749
+30506,47175
+30507,12544
+30508,38914
+30509,16933
+30510,80690,56796
+30511,12443
+30512,61771
+30513,26540
+30514,12833
+30515,77344
+30516,33874
+30517,6199
+30518,48855
+30519,66851,33992
+30520,48801
+30521,26504,41019
+30522,33809
+30523,52526,51620
+30524,15666
+30525,64546
+30526,59105,78229
+30527,47918
+30528,81256
+30529,36944
+30530,58498
+30531,28924,53899,4544
+30532,59631
+30533,4471
+30534,72358,26071
+30535,12110
+30536,31197
+30537,71411
+30538,9401
+30539,48776
+30540,60854
+30541,75119
+30542,78324
+30543,12583
+30544,8401,62362
+30545,1759
+30546,62001
+30547,51665,37438
+30548,51747
+30549,24694
+30550,27302
+30551,41491,5208,14524
+30552,14223
+30553,52970
+30554,41567
+30555,66130
+30556,10423,23095
+30557,81568,10385
+30558,59128
+30559,39053
+30560,20308
+30561,6420
+30562,68714
+30563,32459,1260
+30564,60183,2389
+30565,24858,61262
+30566,64567,32997
+30567,30046
+30568,14753
+30569,79849
+30570,76953
+30571,42374,25651
+30572,43675
+30573,30909
+30574,3899
+30575,41364
+30576,55366
+30577,76282
+30578,66372
+30579,58824
+30580,30056
+30581,73643
+30582,14840
+30583,50754
+30584,4580
+30585,30362
+30586,30006
+30587,2064
+30588,50628
+30589,45426
+30590,8637,58360
+30591,10125
+30592,52072
+30593,80756,55738
+30594,41276
+30595,46189
+30596,66805,38543
+30597,7705
+30598,7825
+30599,3204
+30600,37354
+30601,36163,8543
+30602,17402,57794
+30603,10922
+30604,50810
+30605,44318
+30606,9640
+30607,6409
+30608,72578
+30609,76750
+30610,27216
+30611,48318,37961
+30612,53152
+30613,33976,68857,3277,43285
+30614,64755
+30615,16004
+30616,38808
+30617,69735
+30618,49093
+30619,79335
+30620,77405
+30621,64725
+30622,43285
+30623,12438
+30624,53776
+30625,73996
+30626,29395,44443
+30627,53946,34186
+30628,71365
+30629,81856
+30630,57013
+30631,31595
+30632,81782
+30633,69981
+30634,55287,52337
+30635,4505
+30636,78615
+30637,56991
+30638,62438
+30639,21531
+30640,27301
+30641,56398
+30642,6545
+30643,74098
+30644,69780
+30645,44374
+30646,40322
+30647,80004
+30648,49807
+30649,4253
+30650,17567
+30651,587
+30652,24328
+30653,56161
+30654,19772,34070
+30655,71714,64671
+30656,24652
+30657,4471
+30658,49221
+30659,44185
+30660,4235,61896
+30661,58763,18802
+30662,12684
+30663,77757
+30664,21409
+30665,34110
+30666,63072
+30667,37412
+30668,20580
+30669,3458
+30670,6678
+30671,75900
+30672,67011
+30673,64760
+30674,15809,18116
+30675,51780
+30676,32453
+30677,32248
+30678,80544
+30679,74897
+30680,47649
+30681,171
+30682,79035,58351,25655
+30683,72923
+30684,68404
+30685,21371
+30686,12954
+30687,16435
+30688,16998
+30689,38287
+30690,15684
+30691,73409
+30692,78640
+30693,6974
+30694,3524
+30695,75889
+30696,72337,31984
+30697,13703
+30698,18808
+30699,18518
+30700,33461
+30701,61126,14470
+30702,70661
+30703,40756
+30704,15671
+30705,25258
+30706,81317
+30707,45246
+30708,26842
+30709,10203
+30710,26603
+30711,25901
+30712,34002,4538
+30713,47890,23429,26210,35058
+30714,16478,42404
+30715,5861,63588,70765
+30716,36790
+30717,3095
+30718,39294
+30719,75797
+30720,20204
+30721,75533
+30722,19846
+30723,19846
+30724,64976
+30725,79975
+30726,26384
+30727,22312,2246
+30728,4635
+30729,50500
+30730,58376
+30731,12607
+30732,79214
+30733,43987
+30734,19961
+30735,34132,70091
+30736,19672
+30737,17645
+30738,68655
+30739,74986
+30740,51411
+30741,18559
+30742,29128
+30743,77817
+30744,12669
+30745,76473
+30746,73105
+30747,57717
+30748,78299,31168
+30749,10201
+30750,44149
+30751,57213
+30752,29904
+30753,64713,1359
+30754,44899
+30755,54816
+30756,50360,11671
+30757,39333
+30758,30833
+30759,59330
+30760,4320
+30761,8195,77436
+30762,24738
+30763,17259
+30764,40406
+30765,23266
+30766,75501
+30767,62362
+30768,20643
+30769,68560
+30770,29192
+30771,13936,7255,18775
+30772,72369
+30773,1264,37815
+30774,47425
+30775,23964
+30776,32843
+30777,7966
+30778,24531
+30779,56172,75165
+30780,81632
+30781,58774
+30782,37550
+30783,25057,9001
+30784,35201
+30785,2825
+30786,60685,64149
+30787,51415
+30788,4627
+30789,49271
+30790,13492,73213
+30791,37003
+30792,31242
+30793,46886,21771,48714
+30794,70519
+30795,79049
+30796,60087
+30797,47717
+30798,19842
+30799,63439
+30800,31190,25184
+30801,26727
+30802,73086
+30803,65825,61295,40382,46808
+30804,62321
+30805,47340
+30806,80494
+30807,31413
+30808,41953
+30809,5730
+30810,4733
+30811,32534
+30812,68035,81952
+30813,29154
+30814,58534
+30815,58767,46782
+30816,52808
+30817,75464
+30818,41801
+30819,28921
+30820,47558
+30821,49579
+30822,77105
+30823,57251
+30824,39480
+30825,43189
+30826,32859
+30827,74845
+30828,68061
+30829,25537
+30830,79238,50870
+30831,54560,13663
+30832,31168
+30833,29586
+30834,57862
+30835,27636
+30836,62100
+30837,22497
+30838,51168
+30839,47925,12360
+30840,14646
+30841,76210
+30842,18899
+30843,2534
+30844,72242
+30845,11218,53966,58211
+30846,40496
+30847,80392
+30848,61398
+30849,7236
+30850,71593
+30851,3116,81378
+30852,65242
+30853,25215
+30854,61269
+30855,36750
+30856,22527
+30857,18727,42643
+30858,37679
+30859,81799
+30860,10722,37398
+30861,49883
+30862,13081
+30863,47328
+30864,70450,81648
+30865,18920
+30866,34018,1149
+30867,10428
+30868,6265
+30869,16632
+30870,53037
+30871,29386
+30872,13398
+30873,48710,12449
+30874,16919
+30875,47008
+30876,9133
+30877,78088
+30878,8036
+30879,670
+30880,16775
+30881,67582
+30882,40705,6670,19052
+30883,31760
+30884,19985,12348
+30885,77070
+30886,12543
+30887,29844
+30888,22699
+30889,66802
+30890,21830
+30891,25763,15721
+30892,3241
+30893,23525,61336
+30894,42751
+30895,62928
+30896,6973,62252
+30897,53415
+30898,43339
+30899,1119
+30900,74016,63451
+30901,56881
+30902,77838,47039
+30903,78307
+30904,67520
+30905,32379
+30906,77018
+30907,44729
+30908,30637
+30909,29986
+30910,30930
+30911,10454,78202
+30912,21829
+30913,54160
+30914,22654
+30915,56894,75220
+30916,33587,71836
+30917,1557,75062
+30918,64618,68264
+30919,26801,24896
+30920,70847
+30921,62544
+30922,18472
+30923,29557
+30924,45201
+30925,63557
+30926,62978,46830
+30927,68611
+30928,61126
+30929,31810
+30930,64524
+30931,26584
+30932,73258
+30933,37943
+30934,40464
+30935,41630
+30936,31370
+30937,29632,31111
+30938,80299,29927,77420
+30939,34584
+30940,32398
+30941,51409
+30942,22651
+30943,74753
+30944,27765
+30945,11087
+30946,69084
+30947,61837
+30948,19420
+30949,18219
+30950,77505
+30951,15164
+30952,54741
+30953,31748
+30954,43304
+30955,23410
+30956,8486
+30957,25957,49965,26227
+30958,54399
+30959,79986
+30960,62104
+30961,16710
+30962,49831
+30963,31878
+30964,19856
+30965,51313
+30966,66639
+30967,46465
+30968,62807
+30969,77324
+30970,31699
+30971,29679,32540
+30972,3208
+30973,33824,76382
+30974,58212
+30975,28989
+30976,7119
+30977,65317
+30978,76231
+30979,52810
+30980,32470,55098
+30981,60965
+30982,6671
+30983,35213
+30984,17551
+30985,53976
+30986,19722
+30987,18094
+30988,34685,20730
+30989,42003
+30990,39478
+30991,62961
+30992,46144
+30993,17948
+30994,66912,57337
+30995,56139
+30996,1152
+30997,16100
+30998,25045,26636
+30999,42200
+31000,31975,40187,71221
+31001,5468,58625
+31002,45197
+31003,62294
+31004,71747
+31005,62568
+31006,29657
+31007,53919
+31008,9940
+31009,25083
+31010,13393
+31011,9123
+31012,42662
+31013,66839
+31014,65817
+31015,68264
+31016,73345
+31017,48941
+31018,36627,53970
+31019,57985
+31020,56106
+31021,66336
+31022,14676,23109
+31023,15276
+31024,10973
+31025,54496
+31026,9279
+31027,68327
+31028,51770
+31029,36416
+31030,76870
+31031,6856
+31032,10145
+31033,1236,67189
+31034,71028
+31035,51387
+31036,9032
+31037,80192
+31038,28178
+31039,74474
+31040,62409
+31041,68659
+31042,47587
+31043,23057
+31044,73907
+31045,32899
+31046,5517
+31047,42831
+31048,1724,48494
+31049,54341
+31050,8696
+31051,5479
+31052,63812
+31053,81077
+31054,79883
+31055,71087
+31056,30976
+31057,25765
+31058,40501
+31059,34812
+31060,33123
+31061,22858,33043
+31062,54843
+31063,59475
+31064,27166,32862,23077,70405
+31065,22013,7855,33982
+31066,61328
+31067,29450,49997
+31068,60553
+31069,19307,7169
+31070,34791
+31071,59350,75439
+31072,20456
+31073,62506
+31074,77419
+31075,20083
+31076,78028
+31077,60696
+31078,41217
+31079,8386
+31080,48217
+31081,21276
+31082,26379
+31083,55894
+31084,48283
+31085,47035
+31086,25468
+31087,71379
+31088,33626
+31089,16730
+31090,906
+31091,44350
+31092,14765,57090,65406,54656
+31093,23848
+31094,57836
+31095,66832,22911
+31096,64589,2601
+31097,39986
+31098,6424
+31099,11073
+31100,77188
+31101,82064
+31102,62260
+31103,28931
+31104,73667
+31105,19628
+31106,80589
+31107,72537
+31108,26623,80959,44647
+31109,4901
+31110,4555,6864
+31111,23338
+31112,4759
+31113,68515,45647
+31114,80930
+31115,16962
+31116,16067
+31117,36519,21063
+31118,71509,7365
+31119,5541,54895,57473
+31120,21264
+31121,46903
+31122,41151
+31123,53852
+31124,28340
+31125,78856
+31126,64338,60490
+31127,23354
+31128,40325
+31129,7692
+31130,39637
+31131,7111
+31132,38131
+31133,5484
+31134,19025
+31135,52268
+31136,54033
+31137,72055
+31138,38308
+31139,12230
+31140,72295
+31141,41777
+31142,57295
+31143,14972
+31144,48422
+31145,69209
+31146,65420
+31147,3763
+31148,64220
+31149,49904
+31150,7459
+31151,40088
+31152,81728
+31153,53680,1448
+31154,75881
+31155,42674
+31156,52460
+31157,43580
+31158,22497
+31159,8940
+31160,60055
+31161,50852
+31162,35629
+31163,74474
+31164,13115
+31165,13319
+31166,60919,68197
+31167,34901
+31168,17518
+31169,44959
+31170,39967
+31171,39540
+31172,53145
+31173,22867
+31174,11990
+31175,36702
+31176,43181
+31177,32695
+31178,75900
+31179,1292,34868
+31180,42731
+31181,44839,77356
+31182,30824,67621
+31183,31200
+31184,23760,63403,24843
+31185,13726
+31186,30618
+31187,40442
+31188,71123
+31189,27992
+31190,586
+31191,41337
+31192,73772
+31193,52036
+31194,61116
+31195,2987
+31196,37032
+31197,47906
+31198,73587
+31199,49375
+31200,72491
+31201,80483
+31202,39645
+31203,5897
+31204,71032
+31205,68733
+31206,43722
+31207,77962,46431
+31208,33375
+31209,2742
+31210,116
+31211,6574
+31212,73125,7103
+31213,75356
+31214,39621
+31215,7946
+31216,68364
+31217,41047
+31218,9695
+31219,32172
+31220,16996
+31221,44564
+31222,44769
+31223,34572,45616
+31224,3434,7030
+31225,12742
+31226,21615
+31227,41641
+31228,77866,56198
+31229,25544
+31230,16888
+31231,51134
+31232,58159
+31233,22395,49653
+31234,50178
+31235,42306
+31236,49582
+31237,1764,61191
+31238,59812
+31239,32338
+31240,27677
+31241,24738
+31242,38032
+31243,25463
+31244,25470
+31245,4964,53501,8211
+31246,25777
+31247,74751
+31248,65602
+31249,71385,6434
+31250,24812
+31251,10389
+31252,66384
+31253,34923
+31254,55865
+31255,21288
+31256,20766
+31257,43071
+31258,52907
+31259,57436,81875
+31260,56374,65840,68112
+31261,73648
+31262,56106,10888
+31263,4803
+31264,20993
+31265,13861
+31266,35403
+31267,81639
+31268,11220
+31269,60409,43870
+31270,72465
+31271,77246
+31272,56285
+31273,48444
+31274,23728
+31275,78386
+31276,73800
+31277,80984
+31278,81277
+31279,8268
+31280,50083
+31281,54181
+31282,55298
+31283,6185
+31284,47997
+31285,46536
+31286,31837,39739
+31287,33175
+31288,20179
+31289,31930
+31290,79595
+31291,34691
+31292,61653,51418
+31293,12356
+31294,60652,53856
+31295,49814
+31296,41895
+31297,25117
+31298,49856
+31299,3832
+31300,39294
+31301,25563
+31302,50127
+31303,5260
+31304,69142
+31305,16189
+31306,69113
+31307,9211
+31308,68734,80325
+31309,68737
+31310,64212
+31311,50251
+31312,73487
+31313,69327,16048
+31314,3420
+31315,62383
+31316,46174
+31317,47963
+31318,21970
+31319,64823
+31320,23177
+31321,35912
+31322,37491
+31323,13082
+31324,81658,55563
+31325,41971,73455
+31326,39749
+31327,72967
+31328,9067
+31329,9063,64956
+31330,7568
+31331,50715,49382,53025
+31332,28965
+31333,29691
+31334,43771,63789
+31335,45515
+31336,75941,76945
+31337,77233
+31338,14660
+31339,6353
+31340,40548,77714,57757
+31341,15024
+31342,9629
+31343,30614
+31344,44884
+31345,14911,43028
+31346,78440
+31347,53521
+31348,65765
+31349,25897
+31350,74571,73898
+31351,50327
+31352,24226
+31353,54790
+31354,45754,25814
+31355,48323
+31356,75948,70418
+31357,28451
+31358,13901
+31359,10436
+31360,80281
+31361,24055
+31362,76237
+31363,79776
+31364,53686
+31365,41244
+31366,32572,33562
+31367,7927
+31368,35589,3206
+31369,68957,30930
+31370,10314
+31371,15028
+31372,39865
+31373,9538
+31374,23611
+31375,26203
+31376,50107
+31377,41197
+31378,68357
+31379,6759
+31380,41061,62534
+31381,42171
+31382,51842,25104
+31383,47951
+31384,14089
+31385,31640
+31386,67296,36292
+31387,15049
+31388,53685,36239
+31389,59230
+31390,26962,57561
+31391,64407
+31392,10869
+31393,78174,56216
+31394,67582
+31395,19582
+31396,13396
+31397,43996,22442
+31398,37004
+31399,41300
+31400,7233
+31401,13995
+31402,54491
+31403,34094,71020
+31404,53206
+31405,62542
+31406,6942
+31407,32392,68856
+31408,54554,9165
+31409,48698
+31410,2187
+31411,16049,55522
+31412,79480
+31413,27870,16148
+31414,57421
+31415,36326,30771
+31416,64879
+31417,52685
+31418,71819
+31419,5556
+31420,18803
+31421,41982,27214
+31422,59474
+31423,71611,12002,36546,20223
+31424,26025
+31425,26064
+31426,8120
+31427,80571
+31428,12026,74650
+31429,72982
+31430,3493
+31431,55612
+31432,74417
+31433,55055
+31434,10974,66394
+31435,27992
+31436,23585
+31437,73282
+31438,58035,73098
+31439,372
+31440,51975
+31441,67441,2422
+31442,80645,4323
+31443,41453,76228,59851
+31444,4620,13212
+31445,63779
+31446,76271
+31447,25645
+31448,81987
+31449,41781
+31450,12901
+31451,57828
+31452,37402
+31453,49147
+31454,48855,17050
+31455,20150
+31456,81342,32048,59181,48324
+31457,77286,30933
+31458,69401
+31459,36105
+31460,33995
+31461,80063
+31462,12565,50949
+31463,48713
+31464,22027
+31465,30616
+31466,78596
+31467,47381
+31468,20106
+31469,40201
+31470,59467
+31471,29312
+31472,46766
+31473,33726
+31474,36311
+31475,16901
+31476,45682
+31477,28698
+31478,37228
+31479,78122
+31480,32540
+31481,9119
+31482,53159
+31483,81898
+31484,17182
+31485,71959
+31486,81832
+31487,79998,79832
+31488,15898,71440
+31489,53958
+31490,71959
+31491,64064
+31492,20549
+31493,15049
+31494,56923
+31495,35673
+31496,67374,51602
+31497,2870,11609
+31498,39890
+31499,78447
+31500,77522
+31501,51409
+31502,20909
+31503,79687,10635
+31504,81556
+31505,35862,38161
+31506,30897
+31507,28515
+31508,49430
+31509,35417
+31510,21919
+31511,69630
+31512,59186
+31513,21976,75037
+31514,25941
+31515,45915
+31516,26016
+31517,69857
+31518,52656,21862
+31519,68086
+31520,28945
+31521,43567
+31522,49205
+31523,36020
+31524,76497,44357
+31525,40682
+31526,30362
+31527,30110
+31528,36903
+31529,41045
+31530,4600
+31531,15676
+31532,57750,80832
+31533,77094
+31534,72165
+31535,20051
+31536,20873,43275
+31537,52015
+31538,7556
+31539,33628
+31540,26674
+31541,68437,63177
+31542,5701
+31543,4432
+31544,59523
+31545,34629
+31546,80829,19950
+31547,69255
+31548,15132
+31549,60861
+31550,31178
+31551,40381
+31552,38824
+31553,50475,40928,30663
+31554,51330
+31555,66502
+31556,18003
+31557,14196
+31558,41401
+31559,78852
+31560,78674
+31561,15516
+31562,3623,15617
+31563,26314
+31564,20960
+31565,34526
+31566,42963
+31567,36532
+31568,1209
+31569,7080,11959
+31570,54227
+31571,63200
+31572,344
+31573,54969
+31574,57946,76953
+31575,76004
+31576,41842,76242
+31577,58330,43298
+31578,57305
+31579,13672
+31580,42574,8961,40320
+31581,56130
+31582,79675
+31583,65803
+31584,16686
+31585,18365
+31586,18210
+31587,35732
+31588,55457
+31589,54112
+31590,54538
+31591,65406
+31592,49072
+31593,24322
+31594,25897
+31595,44669
+31596,50729
+31597,81045
+31598,50861
+31599,41784
+31600,29876
+31601,36137,53183
+31602,45717
+31603,63730
+31604,80001,14595
+31605,39334
+31606,38493
+31607,67928,42553
+31608,40889
+31609,57711
+31610,77040
+31611,30536,14542
+31612,2609,16369
+31613,708
+31614,43350
+31615,44410
+31616,67012
+31617,43483
+31618,53958
+31619,70565
+31620,8680,35434
+31621,40468
+31622,33081
+31623,37815
+31624,37967,73778
+31625,18787,50539
+31626,13333,4107
+31627,68290
+31628,76497
+31629,42401
+31630,43070,32297
+31631,27132
+31632,81323
+31633,64895
+31634,32503,30991
+31635,82049
+31636,26074
+31637,32200
+31638,35112
+31639,67537
+31640,3287,12257
+31641,76906
+31642,57742
+31643,39016
+31644,4038
+31645,10934
+31646,49506
+31647,66896
+31648,5964
+31649,54257
+31650,55952
+31651,25682,5108
+31652,72576
+31653,7661
+31654,6928
+31655,5708
+31656,50031
+31657,35322
+31658,11387
+31659,78399
+31660,79876
+31661,78742,34563
+31662,9075,38629
+31663,77862
+31664,67643
+31665,50225
+31666,53990
+31667,29665
+31668,22510
+31669,58186
+31670,21361
+31671,15879
+31672,25382
+31673,75764,72478
+31674,17145
+31675,76219
+31676,29457,46765
+31677,29666
+31678,75282
+31679,728,74070
+31680,44151
+31681,31554
+31682,3031
+31683,69512
+31684,69403
+31685,70633
+31686,77739
+31687,27750
+31688,5534,48712,50978
+31689,64808
+31690,79485
+31691,45408
+31692,32852,41201
+31693,77422,75410
+31694,24414
+31695,32113
+31696,41305
+31697,28260,14572
+31698,62280
+31699,40384
+31700,65078
+31701,80773
+31702,50357
+31703,75054,81537
+31704,1193
+31705,38254
+31706,79200
+31707,17434
+31708,47230
+31709,68590
+31710,42615
+31711,38638
+31712,68177,32561
+31713,81527
+31714,30714
+31715,1872,37996
+31716,60822
+31717,13100,14387
+31718,1366
+31719,5425
+31720,49819
+31721,47632
+31722,14047,27928
+31723,13923
+31724,53185
+31725,79258,26553
+31726,28287,53619
+31727,60434,899
+31728,53571
+31729,48470
+31730,37121
+31731,18172
+31732,32221
+31733,29326
+31734,15095,58026
+31735,55863,345
+31736,28451
+31737,47326
+31738,43833,70961
+31739,61944,69017
+31740,21430
+31741,31878
+31742,22787
+31743,38763,69648
+31744,32880
+31745,68036
+31746,80150
+31747,39358
+31748,22968
+31749,49171,59815
+31750,24770
+31751,81420
+31752,74012,18623
+31753,71882
+31754,13546
+31755,44606,18677,64037
+31756,62464
+31757,59910
+31758,73941
+31759,61872
+31760,247
+31761,66638
+31762,13450
+31763,69093,2663
+31764,82093,43853
+31765,68214
+31766,31835
+31767,34208
+31768,44668
+31769,42905
+31770,67529
+31771,30748
+31772,77794,43147
+31773,43721
+31774,47437
+31775,74658
+31776,56506
+31777,63999
+31778,6680
+31779,51614
+31780,26594,79146
+31781,45381
+31782,36940
+31783,2294
+31784,18783
+31785,77255
+31786,35006
+31787,11802
+31788,39939
+31789,2802
+31790,56522,35798
+31791,35570
+31792,54430
+31793,20555
+31794,58039
+31795,43220
+31796,74963
+31797,24027
+31798,44404
+31799,51853
+31800,74580
+31801,81073
+31802,57353
+31803,69224
+31804,67084,43524,33957
+31805,79785,38852
+31806,39540
+31807,7669,21012,19452
+31808,42974
+31809,32443,61400,9204
+31810,72738
+31811,54545,15172
+31812,20962
+31813,78173
+31814,56327
+31815,37597,49984
+31816,19272
+31817,43375
+31818,25839
+31819,31344
+31820,78386
+31821,45533
+31822,75713,17162
+31823,14832
+31824,32072
+31825,16490,24827
+31826,52337
+31827,23123,71977
+31828,68273
+31829,66171
+31830,5193
+31831,11878
+31832,61282,77169,36659
+31833,13763
+31834,67356
+31835,62686
+31836,51163
+31837,79324
+31838,8388
+31839,50940
+31840,33277
+31841,70837
+31842,45518
+31843,42405
+31844,44850
+31845,48216
+31846,54972
+31847,67204,80619
+31848,32020
+31849,58933
+31850,29355
+31851,22994,51143
+31852,47219,78325
+31853,1445
+31854,74934,77270
+31855,32807
+31856,32691,4757
+31857,49742,20055
+31858,53809,24103
+31859,65618
+31860,81370
+31861,30229
+31862,16012,71642
+31863,24573,274
+31864,50426
+31865,58542
+31866,49727
+31867,73118
+31868,39400
+31869,49878
+31870,6660
+31871,5545,5033
+31872,19763
+31873,53363
+31874,48163,58679
+31875,58428
+31876,36399,76810
+31877,11747
+31878,62181
+31879,69181
+31880,74633
+31881,62030
+31882,70229,60994,45493
+31883,35
+31884,69306
+31885,6455
+31886,40215,64700
+31887,30043
+31888,60677
+31889,72047
+31890,80533,63177,70007
+31891,71455
+31892,56109
+31893,40687
+31894,68335
+31895,79077
+31896,70419,34036
+31897,19426
+31898,42631
+31899,69127
+31900,6360
+31901,26613
+31902,50940
+31903,65855
+31904,39728
+31905,48328
+31906,3655
+31907,16912,50421
+31908,63698
+31909,54926
+31910,24536
+31911,79677
+31912,5633
+31913,59391
+31914,58722
+31915,73895
+31916,48642
+31917,76254
+31918,15398,63151
+31919,14627
+31920,19413
+31921,6192
+31922,6602
+31923,51055
+31924,11851,29432
+31925,51394,22560
+31926,63329
+31927,48533,8101
+31928,52352
+31929,39489
+31930,67929
+31931,43738
+31932,33202
+31933,22361,78936
+31934,19820
+31935,76797
+31936,67839
+31937,39497
+31938,78452
+31939,73198
+31940,67073
+31941,29305
+31942,61410,81310
+31943,81815
+31944,74600
+31945,80376
+31946,55072
+31947,81808
+31948,6142,61631
+31949,63588
+31950,62727
+31951,4534
+31952,40373
+31953,32034
+31954,58312,64325
+31955,10800
+31956,34472
+31957,35322
+31958,48858
+31959,25463
+31960,48663
+31961,32388
+31962,78842
+31963,34192,56863
+31964,19425,25767
+31965,74837,50863
+31966,29096
+31967,646
+31968,31966
+31969,42704,45794
+31970,54986
+31971,29059
+31972,76336
+31973,28480
+31974,16982
+31975,55799
+31976,26801
+31977,57162
+31978,54474,73394
+31979,79574
+31980,63713,51689,61578
+31981,14361
+31982,75846,56279
+31983,45299
+31984,50707
+31985,78174
+31986,48794
+31987,8288
+31988,8887
+31989,53873
+31990,12758
+31991,51855
+31992,49610
+31993,23434,12826
+31994,1499
+31995,18415
+31996,70063
+31997,61304,63494
+31998,12414
+31999,53051
+32000,33244
+32001,60586
+32002,1538
+32003,52688
+32004,82149
+32005,46175
+32006,71182
+32007,46762,13206
+32008,68240
+32009,67462
+32010,78741
+32011,6618
+32012,80493,53432,53110
+32013,19628
+32014,31851
+32015,20050,38817
+32016,32324
+32017,27081
+32018,4858
+32019,28703
+32020,37499
+32021,54089,47172
+32022,69360
+32023,75784
+32024,12286
+32025,40918
+32026,10194
+32027,11693
+32028,75217,64095,69183
+32029,16530
+32030,30967
+32031,49850,27120
+32032,31167
+32033,20808
+32034,42792
+32035,35905
+32036,80690
+32037,30058
+32038,14221
+32039,56921
+32040,39683
+32041,79543
+32042,60564,1468
+32043,21108
+32044,40362
+32045,43653
+32046,79606
+32047,3451
+32048,25117
+32049,28457,35147
+32050,60511,66142
+32051,2157,23392
+32052,70197
+32053,8993
+32054,70150
+32055,18106
+32056,38912
+32057,807
+32058,18028
+32059,77301
+32060,79150
+32061,43565
+32062,66087
+32063,52599
+32064,68833,49056
+32065,38032
+32066,60310
+32067,58506
+32068,39136
+32069,57515
+32070,17488
+32071,39810
+32072,66750
+32073,51144
+32074,64129
+32075,67744
+32076,26171
+32077,31868
+32078,20977,35827,30051
+32079,46207
+32080,59959,36926
+32081,13780
+32082,16610
+32083,29395
+32084,12882
+32085,68599
+32086,68581
+32087,41942
+32088,70038
+32089,71920,55580
+32090,66030,39229
+32091,22132
+32092,4674
+32093,42724
+32094,78852,24597
+32095,34519
+32096,35126
+32097,65373,53016
+32098,73493
+32099,24894
+32100,71414
+32101,55960
+32102,29761
+32103,36568,3065
+32104,35136
+32105,8651
+32106,29463
+32107,63451
+32108,52893
+32109,54586,35797
+32110,81422
+32111,79984
+32112,12246,8929
+32113,17630
+32114,67093
+32115,75190
+32116,71564
+32117,47924
+32118,71920
+32119,75421
+32120,40578
+32121,28951
+32122,13995
+32123,77709
+32124,3696,36484
+32125,27686
+32126,26167
+32127,39409,32556,68586
+32128,10928
+32129,10668
+32130,73421
+32131,45470
+32132,82135
+32133,80933
+32134,29215
+32135,50251
+32136,55260,62083
+32137,30440
+32138,76356,41140
+32139,8830
+32140,48342,37572
+32141,29104
+32142,44647
+32143,13535
+32144,7595
+32145,46691,54203
+32146,55245
+32147,36987
+32148,11566
+32149,8683
+32150,46381
+32151,53263,19393
+32152,32205
+32153,75622
+32154,11609
+32155,22999
+32156,12773,5608,9851
+32157,16279
+32158,41892
+32159,6598
+32160,28148
+32161,57586,23030
+32162,45491
+32163,32593
+32164,56188,29537
+32165,55147,10539,16838
+32166,34902
+32167,1766
+32168,81827,60925
+32169,44196
+32170,75865
+32171,25932,3570
+32172,36905
+32173,80689
+32174,50234
+32175,46299,16803
+32176,71593,8751,12464
+32177,59920,34240
+32178,81534
+32179,56024
+32180,60233
+32181,70560
+32182,9707,52054
+32183,55458
+32184,54565,61290
+32185,80231,22760
+32186,2162,8847,78919
+32187,37210
+32188,30259,71484
+32189,29203,32571
+32190,22305,51293
+32191,23799,35027
+32192,69951
+32193,20557,38514
+32194,20818
+32195,49180
+32196,9468,73789
+32197,67816
+32198,26036
+32199,20643
+32200,10301,17434
+32201,63444
+32202,45482
+32203,8911
+32204,79223
+32205,46094
+32206,70473
+32207,13201
+32208,55511
+32209,49622
+32210,80842,26596
+32211,40153
+32212,13694
+32213,34778
+32214,56779,27077
+32215,60691
+32216,21274
+32217,15939
+32218,63704
+32219,46996,29310,48175
+32220,19612,60543
+32221,50117
+32222,40890
+32223,33677
+32224,6776
+32225,44880,63592,45215
+32226,24684
+32227,28159
+32228,19481
+32229,58356
+32230,35740
+32231,37015
+32232,5878
+32233,48126
+32234,57222
+32235,47397
+32236,68744,9274
+32237,45960
+32238,34504
+32239,28798
+32240,47206,71427
+32241,61015
+32242,81631
+32243,51204
+32244,44604,36776
+32245,53194,61067
+32246,4405
+32247,21045
+32248,66171
+32249,45135
+32250,27252
+32251,6053
+32252,80384
+32253,67885
+32254,64560
+32255,32096
+32256,63716
+32257,33801
+32258,56089
+32259,29514
+32260,23107,72357
+32261,27162
+32262,23287
+32263,64699,28872
+32264,35693
+32265,27473
+32266,36834
+32267,51024
+32268,30863
+32269,69206
+32270,54295
+32271,28035
+32272,980,36537
+32273,55753,67915
+32274,74319
+32275,6037
+32276,56245
+32277,39806
+32278,27395
+32279,39205
+32280,74028
+32281,74358
+32282,35537
+32283,66803
+32284,5884
+32285,12443
+32286,63939
+32287,12019
+32288,54897
+32289,58306
+32290,79198
+32291,10399
+32292,41934,50415
+32293,54883
+32294,18985
+32295,25346
+32296,33393
+32297,64173
+32298,13788
+32299,75197
+32300,35738
+32301,35765
+32302,16305,43554
+32303,68754,22564
+32304,74126
+32305,51117,15676
+32306,35392
+32307,52936
+32308,30716
+32309,9316
+32310,33194
+32311,56603
+32312,9138,47794
+32313,28816
+32314,16753
+32315,79589
+32316,57689
+32317,712
+32318,28991
+32319,24684
+32320,49383
+32321,12392
+32322,1661
+32323,69114,79142
+32324,15365
+32325,34467
+32326,24030
+32327,32991
+32328,41309
+32329,28787
+32330,45813
+32331,20461
+32332,12562,1361
+32333,8558
+32334,12443
+32335,18231
+32336,25908
+32337,9010
+32338,49206
+32339,22726,31747
+32340,41591,64755
+32341,59271
+32342,72652,10490,56584
+32343,78208
+32344,65493
+32345,66512
+32346,71321
+32347,51088
+32348,81204,34160
+32349,8036
+32350,60671
+32351,31182
+32352,73374
+32353,30792,72183
+32354,21580
+32355,71906
+32356,54712
+32357,39209
+32358,57220
+32359,8690
+32360,22771
+32361,7107
+32362,25217,47591,15777
+32363,22244
+32364,41899
+32365,76489
+32366,24573
+32367,14424
+32368,62795
+32369,46046,24458
+32370,44634,27996
+32371,43722
+32372,4125
+32373,48359
+32374,4559
+32375,63348,50589
+32376,32784,22413
+32377,48006,72060
+32378,63145
+32379,43099
+32380,59462,25069
+32381,10475
+32382,80038
+32383,53489
+32384,18680,79835
+32385,54654
+32386,1181
+32387,52895
+32388,22026
+32389,12006
+32390,31949,436
+32391,4788,61194
+32392,12042
+32393,66145
+32394,78958,9741
+32395,55009
+32396,2058
+32397,50541,7276
+32398,55285
+32399,11955
+32400,21885
+32401,22674
+32402,14159
+32403,61419
+32404,2422,69917,13190
+32405,26103
+32406,43488
+32407,4479
+32408,49443
+32409,5116
+32410,19847
+32411,79350,45021
+32412,75828,26342,44594
+32413,67292
+32414,5908
+32415,5408,32574,78980
+32416,32169
+32417,11717
+32418,74898,61974,32777
+32419,34523
+32420,40735
+32421,81648
+32422,805
+32423,64085,45627
+32424,8979
+32425,399
+32426,46862
+32427,66920
+32428,39615
+32429,31647
+32430,57953,19799
+32431,45341
+32432,35999
+32433,45826
+32434,50149
+32435,5914
+32436,33597
+32437,26388
+32438,5987
+32439,73469
+32440,52337
+32441,33388
+32442,12429
+32443,62667
+32444,74650
+32445,70608
+32446,72208
+32447,80109
+32448,9059
+32449,67940
+32450,49319
+32451,28251
+32452,71836
+32453,9976
+32454,33812
+32455,46875,32784
+32456,61511
+32457,46137
+32458,4106
+32459,60958
+32460,63883,18551
+32461,69955,54770
+32462,48457
+32463,12587
+32464,77383
+32465,36844
+32466,66759
+32467,7295
+32468,72406
+32469,36616,72542
+32470,34810,48398
+32471,35217
+32472,69725
+32473,75489
+32474,22027
+32475,40354
+32476,34265
+32477,27441,56237
+32478,80266,40960
+32479,43310
+32480,58035
+32481,11358
+32482,23686
+32483,77399
+32484,52089
+32485,20694
+32486,33454
+32487,47804,12427
+32488,41180
+32489,41193
+32490,20916
+32491,42340
+32492,850
+32493,7359
+32494,42657
+32495,12758
+32496,38330
+32497,66978,79882
+32498,8037,60031,28900
+32499,43077
+32500,44934
+32501,33284
+32502,7525,67077
+32503,43895
+32504,65668
+32505,6312
+32506,24783
+32507,20548
+32508,50301
+32509,15392,9905
+32510,524
+32511,2612
+32512,16497
+32513,64077,36793,3315,67058
+32514,64844
+32515,82142
+32516,281
+32517,5559
+32518,20181
+32519,776
+32520,59028
+32521,79643
+32522,15365
+32523,7388,70219
+32524,67635
+32525,33956
+32526,41045
+32527,79730
+32528,61272,15696
+32529,79399
+32530,55130,10788
+32531,64151
+32532,2408
+32533,78406,67074
+32534,17518
+32535,5795
+32536,58362
+32537,72720
+32538,80897
+32539,12790
+32540,52536
+32541,79109
+32542,56329
+32543,80165
+32544,25467
+32545,16791
+32546,70774
+32547,62698
+32548,3625
+32549,4829
+32550,80004
+32551,62534
+32552,45915
+32553,78746
+32554,23416
+32555,20286,52272
+32556,41635
+32557,131
+32558,57284
+32559,31257
+32560,20308,37506,44149,5846
+32561,5166
+32562,68547
+32563,65768
+32564,31671
+32565,34015
+32566,38680
+32567,36060
+32568,29183
+32569,39612
+32570,56330
+32571,12222
+32572,40739
+32573,2389,70929
+32574,18167,64927
+32575,1611
+32576,26754
+32577,5653
+32578,51783
+32579,17693
+32580,38430
+32581,78060
+32582,13120
+32583,18273
+32584,17219
+32585,62125,2401
+32586,48308
+32587,65907
+32588,19972
+32589,10004
+32590,34884
+32591,77679
+32592,52707
+32593,47392,6275
+32594,26362,33402
+32595,64832
+32596,14177,55917,38515,25391
+32597,315
+32598,53301
+32599,42453
+32600,62762
+32601,11598
+32602,46217,4325
+32603,8765
+32604,10798
+32605,63298
+32606,69844
+32607,21192,80100
+32608,54483,75608
+32609,32228
+32610,51084
+32611,73645
+32612,27529
+32613,48377
+32614,6016
+32615,12815,29904
+32616,35206
+32617,50639,52704
+32618,17938,37882
+32619,27103
+32620,59361,11265
+32621,56312
+32622,70055
+32623,69920,75885
+32624,12142
+32625,36938
+32626,61646
+32627,46390
+32628,58690
+32629,36976
+32630,4870
+32631,23203
+32632,24563
+32633,4570
+32634,35970
+32635,57054
+32636,73544
+32637,47278
+32638,1403
+32639,40322,3118
+32640,61752
+32641,53257,79485
+32642,7266
+32643,43604
+32644,79226
+32645,60130,71667
+32646,44295
+32647,73007,23156
+32648,12026
+32649,79980,38154
+32650,71107
+32651,36269,67745
+32652,78686
+32653,14883,63182
+32654,51074
+32655,32158
+32656,5065
+32657,13564
+32658,73502,54880
+32659,51053
+32660,44190
+32661,49329
+32662,64690
+32663,3925
+32664,41142
+32665,51560
+32666,60019
+32667,72034
+32668,60862
+32669,34836
+32670,78325,70366
+32671,46914
+32672,40341
+32673,47777
+32674,68961
+32675,12675
+32676,69312
+32677,10097,43774,38684
+32678,63054
+32679,59101
+32680,19199
+32681,30802
+32682,67862
+32683,32096,213
+32684,7611
+32685,79010
+32686,18613
+32687,20977
+32688,5200,24903
+32689,52632
+32690,34428
+32691,3712,46796
+32692,17773
+32693,68863
+32694,65339
+32695,51501
+32696,33857
+32697,30475
+32698,620
+32699,39231
+32700,43051
+32701,11666
+32702,25104
+32703,15726,58651
+32704,23286
+32705,44246,48144
+32706,11802,42279
+32707,31646
+32708,60920
+32709,57013
+32710,64053
+32711,65002
+32712,79478
+32713,27926
+32714,21791
+32715,45491
+32716,77057,59444
+32717,66600
+32718,58522
+32719,40786
+32720,57001,31757
+32721,27703,14874,21912
+32722,81633
+32723,59612
+32724,79440
+32725,20188,2911,50862
+32726,71270
+32727,13208,64882
+32728,62482
+32729,76052,51712
+32730,42781
+32731,49067,5854
+32732,51184
+32733,64038
+32734,56189
+32735,24433,45363
+32736,50392
+32737,33492
+32738,10716,19101
+32739,41300
+32740,48662
+32741,68952
+32742,46033
+32743,4976
+32744,66646
+32745,70241
+32746,46904
+32747,77696
+32748,15583
+32749,75008,41135
+32750,17144
+32751,58281
+32752,79885
+32753,30434,8950
+32754,72895
+32755,49289
+32756,11275,16192
+32757,38115
+32758,73327
+32759,53350
+32760,57475
+32761,1469
+32762,69708
+32763,78762,20822,50175
+32764,10430
+32765,57054
+32766,7929,31110
+32767,42014
+32768,40535
+32769,19765
+32770,69155
+32771,49105
+32772,39295
+32773,16873
+32774,38517
+32775,30073
+32776,57264
+32777,33278
+32778,20026,25898
+32779,52905,43288
+32780,61720
+32781,76630,28176
+32782,80801
+32783,58457
+32784,24644
+32785,33089
+32786,16996,38000
+32787,24403
+32788,47328
+32789,57707
+32790,61452
+32791,60810
+32792,65576
+32793,21685
+32794,9318
+32795,36928
+32796,45913
+32797,197,5737
+32798,34338
+32799,33824,74491
+32800,24678
+32801,70172
+32802,51217
+32803,72088
+32804,80161
+32805,81955,71090
+32806,32495
+32807,18575
+32808,1660
+32809,3288
+32810,64973
+32811,47944
+32812,16155
+32813,77586,42831
+32814,31492
+32815,23410
+32816,10249
+32817,56315
+32818,78481
+32819,10748
+32820,57787
+32821,43844,45210
+32822,56941
+32823,12311
+32824,62445,19573,32032
+32825,53021
+32826,41475
+32827,6969
+32828,16130
+32829,9948
+32830,80758,54404
+32831,57064,33932
+32832,5818
+32833,50261
+32834,41721
+32835,79504
+32836,64217
+32837,77556,43167
+32838,14621,23451
+32839,59986,73912
+32840,51825
+32841,61547
+32842,70689
+32843,57509
+32844,64969,37805
+32845,19397
+32846,54333
+32847,76494
+32848,49563
+32849,51165
+32850,30634
+32851,70456
+32852,64732,41655
+32853,34747,57804
+32854,38049
+32855,69472
+32856,36356
+32857,39987
+32858,25400
+32859,31843
+32860,69001
+32861,32113
+32862,43667
+32863,14046
+32864,23821
+32865,33206
+32866,13187
+32867,12476
+32868,41671
+32869,26673
+32870,40350
+32871,68830
+32872,19876
+32873,2387
+32874,78244
+32875,69074
+32876,24759
+32877,41749
+32878,80821
+32879,42588
+32880,28545
+32881,3431
+32882,57824
+32883,23688
+32884,13706
+32885,75178
+32886,44519
+32887,65331
+32888,28396,79835
+32889,2602
+32890,39664
+32891,38905
+32892,57169
+32893,51244
+32894,44112
+32895,40708
+32896,42496
+32897,40655
+32898,15976,69080
+32899,49336
+32900,20195,34451
+32901,28549
+32902,76607
+32903,74580
+32904,44309
+32905,79525
+32906,78186,42743
+32907,65835
+32908,27176
+32909,46655
+32910,64932
+32911,1562,80001
+32912,40569
+32913,32212
+32914,74812,28685
+32915,70689
+32916,68090
+32917,75931
+32918,51760,25523
+32919,42495
+32920,21059
+32921,28853
+32922,81249
+32923,33984
+32924,20422
+32925,51004,4755
+32926,3824,31030,56046
+32927,39095,75152
+32928,13041
+32929,16131
+32930,34809
+32931,3752
+32932,8653
+32933,61318,60156
+32934,64863
+32935,13088
+32936,25221
+32937,7838
+32938,79286
+32939,14730
+32940,66707
+32941,11094
+32942,65769
+32943,52087,79175
+32944,1777
+32945,52725
+32946,66036,74366,36552
+32947,66521
+32948,57302
+32949,22594
+32950,3053
+32951,59122
+32952,48950
+32953,74911
+32954,17504
+32955,7914
+32956,73922
+32957,74650
+32958,38614
+32959,45400,72246
+32960,64076
+32961,50939
+32962,75793
+32963,49579
+32964,73920,18800
+32965,68945
+32966,38181
+32967,64660
+32968,54466,77702
+32969,34023
+32970,3923
+32971,12359
+32972,28270,25703
+32973,25564
+32974,20208
+32975,8216
+32976,49403
+32977,12531
+32978,72617,29406
+32979,5488
+32980,41893
+32981,43011
+32982,73506
+32983,76700
+32984,59621
+32985,7818
+32986,5401
+32987,44462
+32988,38225
+32989,71403
+32990,49085
+32991,10498
+32992,39626
+32993,25235,41738
+32994,10242
+32995,36840
+32996,46275
+32997,23332
+32998,26192,56166,33725,81942
+32999,34621,1738
+33000,40624,4419
+33001,9680,81912
+33002,18528
+33003,37618
+33004,41143
+33005,43332
+33006,70503,58182,56979
+33007,30353
+33008,56159
+33009,56902
+33010,61131
+33011,53153
+33012,73556
+33013,68272
+33014,46351,18236
+33015,10374
+33016,45487
+33017,51503
+33018,27298
+33019,27264
+33020,45685
+33021,80837
+33022,25432,5292,3988
+33023,72072,24075
+33024,47898
+33025,3732
+33026,52719
+33027,20594
+33028,31616
+33029,72109,24833
+33030,15841
+33031,32487,30104
+33032,58416
+33033,65744,81211
+33034,31399
+33035,74358,796
+33036,19193
+33037,25241
+33038,526
+33039,12884
+33040,11780
+33041,56480
+33042,2471
+33043,41309
+33044,64068,32728
+33045,12402
+33046,29964
+33047,19532
+33048,16871
+33049,81834
+33050,6253
+33051,11380
+33052,37689
+33053,9604
+33054,46674
+33055,78430
+33056,61211
+33057,19596
+33058,38315
+33059,47686
+33060,15624
+33061,47795
+33062,67769
+33063,24877
+33064,55790
+33065,23634
+33066,49047
+33067,80083
+33068,20093
+33069,25061
+33070,61941,61849
+33071,82026,60072
+33072,40510
+33073,65366,34050
+33074,24784
+33075,25273
+33076,35818
+33077,25514
+33078,35699
+33079,43005
+33080,72159
+33081,23565,5301
+33082,78831
+33083,33931
+33084,81285
+33085,59970
+33086,53952,51414
+33087,15505
+33088,34182
+33089,53426
+33090,38691,65323
+33091,15761
+33092,68070
+33093,44831
+33094,25490
+33095,56443,35963
+33096,42212
+33097,73979,13449
+33098,10756
+33099,45213
+33100,77937
+33101,47118
+33102,48317
+33103,31990
+33104,76180,14872
+33105,53223
+33106,54625
+33107,15077
+33108,57469
+33109,44562
+33110,65713
+33111,23934
+33112,42340
+33113,32995
+33114,55943
+33115,39785
+33116,51158
+33117,45154
+33118,61468
+33119,29421
+33120,70398
+33121,23962
+33122,37036
+33123,39749
+33124,8666
+33125,35910
+33126,40762
+33127,2851
+33128,58664
+33129,37882
+33130,75574
+33131,24744,45322
+33132,24430
+33133,32587
+33134,49961,23655
+33135,60176
+33136,22284
+33137,13038
+33138,30566
+33139,80255
+33140,7343
+33141,31742
+33142,4874
+33143,56321
+33144,79817,37345
+33145,194
+33146,30035
+33147,7159
+33148,71904
+33149,48126,13956
+33150,47498
+33151,58106
+33152,12072
+33153,79924
+33154,59790
+33155,52391
+33156,48414
+33157,49295
+33158,26584
+33159,27834
+33160,35358
+33161,9223
+33162,78485,69142
+33163,76485
+33164,15771
+33165,25764
+33166,49349
+33167,80571
+33168,12145
+33169,58159
+33170,43722
+33171,18578,45000,43185
+33172,27627,78251
+33173,54285
+33174,76106
+33175,36853
+33176,22270
+33177,27127,42529
+33178,45668,14374
+33179,9523,74062
+33180,43868
+33181,61752,50934
+33182,39998,60446,3322
+33183,41061
+33184,30965
+33185,1122
+33186,75490
+33187,56274
+33188,29973,4605
+33189,68502
+33190,45491
+33191,78697,10326
+33192,18863
+33193,3456
+33194,24252
+33195,27197
+33196,18561
+33197,12557,73894
+33198,25150
+33199,30482
+33200,31806
+33201,64442
+33202,63145
+33203,21640
+33204,50838
+33205,40323
+33206,33174
+33207,9400
+33208,74619
+33209,20965
+33210,25637,68887
+33211,5103
+33212,16774,17689
+33213,42220
+33214,18289
+33215,3748
+33216,39279
+33217,65912,32688
+33218,37143
+33219,34132
+33220,58365
+33221,11494
+33222,6705,9796
+33223,33266
+33224,50734
+33225,50317
+33226,19484
+33227,11097
+33228,2397
+33229,71071
+33230,81175
+33231,15779,81615
+33232,9314,56840
+33233,70741
+33234,81561
+33235,33725
+33236,24555
+33237,48409
+33238,18643,10535
+33239,53856
+33240,77558
+33241,36333,73895
+33242,51378
+33243,48935,65297
+33244,17826
+33245,9746,45989
+33246,44911
+33247,10926
+33248,26550
+33249,39012
+33250,69062
+33251,7158
+33252,41582
+33253,74504
+33254,77579,61666
+33255,27070
+33256,56001,1443
+33257,39024,72170
+33258,31394
+33259,1649
+33260,19896
+33261,22520
+33262,27346
+33263,55621,77210
+33264,46029
+33265,51395
+33266,61015
+33267,20018
+33268,76114,37332,78075
+33269,69567
+33270,49166
+33271,25216
+33272,68686,62983,58081
+33273,58730
+33274,60334
+33275,8183
+33276,34990
+33277,7838
+33278,9641
+33279,20810
+33280,34034
+33281,1778,60410
+33282,6991
+33283,19420
+33284,12633
+33285,62822
+33286,4723,21139
+33287,41009
+33288,4808
+33289,3286
+33290,9825
+33291,28260
+33292,47640
+33293,8097
+33294,39444
+33295,51158
+33296,17375
+33297,21810
+33298,11292
+33299,27737,47285
+33300,71352
+33301,1469
+33302,42095
+33303,65910
+33304,33661
+33305,14267
+33306,72390,12372,8495
+33307,40985
+33308,4543
+33309,59764
+33310,27597
+33311,393
+33312,10880
+33313,14673
+33314,66316
+33315,6668
+33316,38423,4548
+33317,71222
+33318,76210,50849
+33319,70568
+33320,52930
+33321,58766
+33322,53635
+33323,797
+33324,76278
+33325,12767,79422
+33326,41054
+33327,36543
+33328,73048
+33329,54872
+33330,7540
+33331,39756,29158
+33332,39063
+33333,66718
+33334,15981
+33335,13871
+33336,46927
+33337,23637
+33338,5096
+33339,34701
+33340,75428
+33341,61497
+33342,71582,51614
+33343,17105
+33344,76413
+33345,34847
+33346,47425
+33347,50808
+33348,54565
+33349,47554
+33350,10413
+33351,12395
+33352,22930
+33353,69777
+33354,63101
+33355,59309
+33356,55177
+33357,51996
+33358,43870
+33359,63990
+33360,62594
+33361,63842
+33362,47598
+33363,13655,42343,59951
+33364,31711,58916
+33365,29121,20706
+33366,6557,64133,63372
+33367,467
+33368,61475
+33369,58684
+33370,30983
+33371,75460
+33372,17009
+33373,43050,57689
+33374,47576,69738,65847
+33375,67200
+33376,6881
+33377,42159
+33378,55684
+33379,35170
+33380,80566
+33381,69727
+33382,26200
+33383,23231
+33384,78960
+33385,50751
+33386,44271
+33387,49438
+33388,3999,29291
+33389,9905
+33390,15967,55998,51869
+33391,38520
+33392,35034,44720
+33393,77865
+33394,49647
+33395,9865
+33396,66885,51358,17753
+33397,63667,75692
+33398,49949,31757
+33399,71385
+33400,73571
+33401,5119,21201
+33402,79693
+33403,44084
+33404,77007
+33405,32374
+33406,69147
+33407,36538
+33408,47107
+33409,50667,80509,40741
+33410,56275
+33411,63451
+33412,35534
+33413,14537
+33414,46509
+33415,61483
+33416,15026
+33417,32043
+33418,68463,38860
+33419,36956
+33420,74017
+33421,18179
+33422,62134
+33423,18783,16002
+33424,65150
+33425,73044
+33426,74334
+33427,79728
+33428,3757
+33429,63439
+33430,35177
+33431,37627,19553
+33432,55660
+33433,27164
+33434,47062
+33435,12530
+33436,1606
+33437,46674
+33438,41225
+33439,48936
+33440,80660
+33441,72902
+33442,49605
+33443,61699
+33444,55636
+33445,5911
+33446,2104
+33447,64335
+33448,38109,15866
+33449,12232
+33450,2352
+33451,30301,22967
+33452,51833
+33453,41851
+33454,34698
+33455,66724
+33456,9842
+33457,31970,77077
+33458,15726
+33459,493
+33460,71270
+33461,74754
+33462,75428
+33463,76336
+33464,5853
+33465,56643
+33466,5093,72078
+33467,42994
+33468,18060,3782
+33469,29844,61383
+33470,64892
+33471,7933
+33472,32917
+33473,25935
+33474,11869
+33475,54253
+33476,10420
+33477,66972,50836
+33478,20724
+33479,13374
+33480,61102
+33481,79739
+33482,71938
+33483,28481
+33484,61992
+33485,17599
+33486,67173
+33487,14129
+33488,32609
+33489,18317
+33490,30651,31243
+33491,59249,54720
+33492,1657
+33493,51840
+33494,33498
+33495,70050
+33496,59132
+33497,11405,6522
+33498,29059
+33499,26218
+33500,64817,39894,67885
+33501,29436,6771
+33502,73164,61961
+33503,1465
+33504,21789
+33505,47873
+33506,39042
+33507,72291
+33508,74937
+33509,7414
+33510,15606,6777
+33511,938
+33512,76558
+33513,82132
+33514,35802
+33515,34989,36416
+33516,22538
+33517,47826
+33518,852
+33519,73753
+33520,78755
+33521,39356
+33522,1026
+33523,7752
+33524,71971
+33525,28890
+33526,49260,34181
+33527,74329
+33528,42787,61279
+33529,65136
+33530,67591,68409
+33531,48001
+33532,45868
+33533,37609
+33534,67194
+33535,40541
+33536,20447
+33537,81
+33538,40877
+33539,48855,37348
+33540,11237
+33541,29448,67902
+33542,16867
+33543,39172
+33544,57847
+33545,68470
+33546,14846
+33547,8407
+33548,5459,43786,78741
+33549,9955
+33550,55291
+33551,39592
+33552,42986
+33553,80005
+33554,67975
+33555,50854
+33556,5351
+33557,42980,25593
+33558,14818
+33559,29606
+33560,53629
+33561,29060
+33562,51114
+33563,64951
+33564,34247
+33565,72621,55345
+33566,26229
+33567,17086
+33568,5331,53433,69899,72778
+33569,18612,72391
+33570,25416
+33571,48577
+33572,22142
+33573,19415,1201
+33574,38171
+33575,76505
+33576,53705,42599
+33577,15480
+33578,70421
+33579,59605
+33580,14314,42140
+33581,37245,58320
+33582,69545
+33583,9457
+33584,2128,38887
+33585,72236,17794
+33586,12030
+33587,12085
+33588,80353
+33589,24162
+33590,45003
+33591,7615
+33592,76883
+33593,20488
+33594,45305
+33595,3410
+33596,65845
+33597,44017
+33598,13490
+33599,12737
+33600,32855
+33601,33624
+33602,18100
+33603,29974
+33604,24230
+33605,12317,67095
+33606,66314
+33607,48090
+33608,65899
+33609,28573
+33610,77702
+33611,53983
+33612,57881
+33613,32569
+33614,74042
+33615,1499
+33616,24216
+33617,27238
+33618,10974
+33619,32660
+33620,58892
+33621,29474
+33622,64027
+33623,33854
+33624,66996
+33625,82030
+33626,60382
+33627,40992,75
+33628,51777
+33629,51993,14599
+33630,794,61195
+33631,76558
+33632,21719,66329
+33633,50109,2289
+33634,11052
+33635,8801
+33636,66390,16908
+33637,33147
+33638,50308
+33639,23654
+33640,47312
+33641,76789
+33642,63148
+33643,57094
+33644,73154
+33645,37857
+33646,5347
+33647,73382
+33648,46182,33367
+33649,15963
+33650,47178
+33651,1003
+33652,60557
+33653,66313
+33654,39294
+33655,54467
+33656,8098
+33657,44338
+33658,42668,59035,62133
+33659,7510
+33660,23982
+33661,52753
+33662,78316
+33663,663
+33664,3453
+33665,13155
+33666,43342
+33667,31730
+33668,66992
+33669,52912
+33670,2006,34635
+33671,49315,76371
+33672,18861
+33673,24655,79459
+33674,15124
+33675,22839
+33676,78799
+33677,20786
+33678,16717
+33679,59223
+33680,37402
+33681,65446
+33682,9355,51356
+33683,38677,35846
+33684,79179
+33685,31774
+33686,160,56469
+33687,33384
+33688,66866
+33689,20833
+33690,22564
+33691,42298
+33692,24717
+33693,57983
+33694,39192,68003,49483
+33695,25273
+33696,67084
+33697,73419
+33698,67609
+33699,8447
+33700,69574
+33701,31248
+33702,3582
+33703,70736
+33704,46788
+33705,33949
+33706,252
+33707,71635
+33708,6708
+33709,20657
+33710,41658
+33711,52750
+33712,10169
+33713,20012
+33714,25333
+33715,80547
+33716,43005
+33717,10846,35991,61237,72302
+33718,57086
+33719,5443
+33720,59942
+33721,26783,11
+33722,48870
+33723,34441
+33724,41223
+33725,70361
+33726,39183
+33727,44432
+33728,18166
+33729,68090
+33730,4480
+33731,42420
+33732,25943
+33733,11693
+33734,10758
+33735,55395
+33736,34661
+33737,11395
+33738,6124,22420
+33739,19167
+33740,8137
+33741,46134
+33742,70946
+33743,50864
+33744,12864
+33745,59325
+33746,79
+33747,37073
+33748,74976
+33749,6574,63523
+33750,26152
+33751,1641,48266
+33752,884
+33753,35740
+33754,18170
+33755,1693,28661
+33756,58243
+33757,80263,36956
+33758,61198
+33759,27726
+33760,61081,18060
+33761,41951
+33762,10235,70115
+33763,49845
+33764,55198
+33765,7223
+33766,45280,58169
+33767,13418
+33768,40983
+33769,50150,35275
+33770,20452
+33771,64415
+33772,33703
+33773,21105
+33774,49624
+33775,27922
+33776,38355
+33777,15483
+33778,29244
+33779,45016
+33780,37158,47612
+33781,22038
+33782,75480
+33783,51377
+33784,65231,60841
+33785,55091
+33786,22609
+33787,65290
+33788,81092,28463
+33789,12670
+33790,27347
+33791,17807
+33792,53642,608
+33793,9362
+33794,55358
+33795,34421
+33796,32330
+33797,42731
+33798,58249
+33799,44959
+33800,26227
+33801,40496
+33802,77357
+33803,7565
+33804,30507
+33805,17616
+33806,33205,69085
+33807,77252,53676
+33808,73021
+33809,40253
+33810,60697,67358
+33811,69181
+33812,36932,2643
+33813,18883
+33814,27398
+33815,77300
+33816,54539
+33817,74317
+33818,52614
+33819,3313
+33820,5523
+33821,8315
+33822,80768
+33823,64566
+33824,38093
+33825,23177
+33826,18422
+33827,7925
+33828,51334
+33829,55401
+33830,31321
+33831,23127
+33832,19921,3307
+33833,51661,59742
+33834,65832
+33835,42561
+33836,74063,73250,54529,28129
+33837,68463
+33838,30891
+33839,70472
+33840,62329,61938
+33841,28681
+33842,71244
+33843,68480
+33844,33946,39993
+33845,39534
+33846,48110
+33847,5337,42631
+33848,34324
+33849,5127
+33850,19014
+33851,28011
+33852,36799
+33853,81955
+33854,80095
+33855,69228
+33856,3297
+33857,680
+33858,5827
+33859,76358
+33860,24283
+33861,36118
+33862,53731
+33863,24853,36401
+33864,12540
+33865,31842
+33866,39540
+33867,51119
+33868,80107
+33869,10199
+33870,32889,25672
+33871,6771
+33872,51556,65802
+33873,61585
+33874,56765,8268
+33875,68398
+33876,21116
+33877,9693
+33878,70510,22682
+33879,17078,64280
+33880,10955,33342
+33881,12964
+33882,3065
+33883,48215
+33884,67833
+33885,10711
+33886,5878
+33887,24272,17462
+33888,40259
+33889,32269
+33890,36752,18727
+33891,75201
+33892,63756
+33893,10174
+33894,75689
+33895,79663
+33896,33185
+33897,69278
+33898,33124
+33899,67118
+33900,6534
+33901,30501
+33902,36512
+33903,6172
+33904,27042,49934
+33905,11028
+33906,27349
+33907,56004
+33908,2485
+33909,62807
+33910,851
+33911,66029
+33912,32552
+33913,76946
+33914,10795
+33915,26860
+33916,13583,25943
+33917,70034
+33918,33276
+33919,46461
+33920,79277
+33921,19961
+33922,40852
+33923,64642,68813
+33924,49536
+33925,37272
+33926,48452
+33927,67776
+33928,22210,58762
+33929,2861
+33930,80534
+33931,28972
+33932,59080
+33933,52830
+33934,70336
+33935,80940
+33936,61643,66776
+33937,20442,35437
+33938,24837
+33939,28528,53230
+33940,36665,43127
+33941,23050
+33942,22646
+33943,65714
+33944,57090
+33945,74324
+33946,18295
+33947,54497
+33948,44488
+33949,76126
+33950,10790
+33951,47278
+33952,17081
+33953,13210
+33954,12508
+33955,19549
+33956,66733
+33957,26369,79645
+33958,51623
+33959,40824
+33960,75129,71160
+33961,33550
+33962,44257
+33963,47980
+33964,79643
+33965,42674
+33966,868,8247
+33967,56667
+33968,79034
+33969,62125
+33970,29828
+33971,41114,7013
+33972,27607
+33973,16775
+33974,13698
+33975,23086
+33976,73278
+33977,4269,34030
+33978,43297
+33979,76551
+33980,23686
+33981,16386
+33982,20500
+33983,81869
+33984,711
+33985,37840
+33986,65066,8778
+33987,218
+33988,64936
+33989,63398
+33990,14386
+33991,75621
+33992,34684
+33993,35079
+33994,69853,29486,2179
+33995,64068
+33996,13923
+33997,65693
+33998,48272
+33999,62851,66368
+34000,59248,57804
+34001,72149
+34002,65662
+34003,48119
+34004,45535
+34005,39943
+34006,2317,26675
+34007,3482
+34008,14103,73650
+34009,41172,27943
+34010,49926
+34011,18182
+34012,28573
+34013,61634
+34014,40834
+34015,53110,40527
+34016,30281
+34017,40670
+34018,44308
+34019,53739
+34020,74678,23285
+34021,75384
+34022,5530,28655,57040
+34023,21269
+34024,48786
+34025,659
+34026,79440
+34027,49221
+34028,53169
+34029,33733
+34030,18149
+34031,41175
+34032,50844
+34033,16848
+34034,37432
+34035,19344,3124
+34036,70970
+34037,14210
+34038,25437
+34039,1384
+34040,14673
+34041,7861
+34042,61290
+34043,21315
+34044,11604
+34045,67814
+34046,8384
+34047,38605
+34048,22501,79413
+34049,33937
+34050,35322
+34051,53243,5938
+34052,71666,29902
+34053,42873,58348
+34054,34761
+34055,51615,33098
+34056,63125
+34057,76371
+34058,24270
+34059,53321
+34060,4723,9923
+34061,64629
+34062,4318,28530
+34063,57696
+34064,72034
+34065,35890
+34066,8834
+34067,75244
+34068,54871
+34069,15845
+34070,51237
+34071,14590,49243
+34072,67886
+34073,62320
+34074,70777
+34075,54772,49136,79336
+34076,2346
+34077,76595
+34078,76539,20415
+34079,42405
+34080,58589
+34081,71078
+34082,31140
+34083,28657
+34084,25463
+34085,14701
+34086,71037
+34087,24008
+34088,66979
+34089,19256,34531
+34090,9146,64559
+34091,68883
+34092,26362
+34093,5005
+34094,25539,3081
+34095,7729,71217
+34096,52719
+34097,26783,22971
+34098,24525
+34099,30741
+34100,55534,75645
+34101,70763
+34102,27001
+34103,13404
+34104,27663,61843
+34105,76259
+34106,37456
+34107,26251
+34108,71041
+34109,15363
+34110,5575
+34111,34375
+34112,75103
+34113,77434,45603
+34114,42865
+34115,44609
+34116,77565,73627
+34117,54704,44516,45230,76443
+34118,16247
+34119,81460
+34120,77896
+34121,41204
+34122,16269,33039
+34123,29603
+34124,50798
+34125,19017
+34126,4804
+34127,61466
+34128,9618,55690
+34129,36796,71303
+34130,63634
+34131,30533,16874
+34132,72544
+34133,24449,6120
+34134,69788,5307
+34135,47587
+34136,31623
+34137,72533
+34138,40953
+34139,52651
+34140,17082
+34141,62974
+34142,12007,69274
+34143,22724
+34144,16135,34000
+34145,66782
+34146,5816
+34147,51444
+34148,81069
+34149,14957,77245,19328
+34150,18806
+34151,75931
+34152,59444
+34153,3181,36169
+34154,78893
+34155,78898
+34156,69817
+34157,32063,74805,8211,57158
+34158,58134,12206,47788
+34159,21300
+34160,4951
+34161,43644
+34162,8041
+34163,73582
+34164,3478
+34165,56122
+34166,58895
+34167,64317
+34168,78574
+34169,25469
+34170,22107
+34171,33730
+34172,7249
+34173,39819,30192,63008
+34174,44237
+34175,523,124
+34176,4628
+34177,15599,36952
+34178,63713
+34179,49344
+34180,41798
+34181,75595
+34182,80236
+34183,36291
+34184,71846
+34185,15861,10950
+34186,23364
+34187,42258,66024
+34188,69209
+34189,5493
+34190,76807
+34191,12512,67539
+34192,12210
+34193,74531
+34194,355
+34195,52958
+34196,22681
+34197,68655
+34198,16067
+34199,14879,22390
+34200,56273
+34201,59948
+34202,17010
+34203,21790
+34204,44870
+34205,28539
+34206,36905
+34207,36227
+34208,28209
+34209,46244,64766
+34210,79605
+34211,28521,5512
+34212,61952,62887
+34213,33505
+34214,45114
+34215,44043
+34216,77453
+34217,47490
+34218,3220,80114
+34219,64964
+34220,52929
+34221,58520
+34222,16927
+34223,77452
+34224,74629
+34225,54065
+34226,65285
+34227,30353
+34228,51226
+34229,6807
+34230,75889
+34231,34343,62298
+34232,42845
+34233,7020,58804
+34234,18518
+34235,54151
+34236,22559
+34237,74638
+34238,12203
+34239,3823,80806
+34240,58341
+34241,75126
+34242,46082
+34243,10441
+34244,23029
+34245,44081
+34246,62128
+34247,43975
+34248,40617
+34249,46085
+34250,17772
+34251,48565
+34252,20557
+34253,32164
+34254,55204
+34255,41914,28633
+34256,65674
+34257,2435,64516
+34258,67653
+34259,80544
+34260,43332
+34261,33046
+34262,39805
+34263,34450
+34264,50309
+34265,71162
+34266,11900
+34267,63704
+34268,43969
+34269,31395
+34270,38122
+34271,50804,71455
+34272,12378
+34273,70188,36265
+34274,51326
+34275,39986,20038,28306
+34276,77754
+34277,18124,9411
+34278,40502
+34279,63499
+34280,35732
+34281,59569
+34282,30554,67441
+34283,71365
+34284,77452
+34285,40040,8869,49130
+34286,75336
+34287,8977,45449
+34288,2120
+34289,63182
+34290,1452
+34291,25840
+34292,28328
+34293,41488
+34294,12478,2660
+34295,78741
+34296,69183
+34297,27518,5649
+34298,8055,2899
+34299,62278,9821,7007
+34300,13354
+34301,65843
+34302,47393
+34303,79374
+34304,80932
+34305,7538
+34306,1328
+34307,33517
+34308,78402
+34309,49302,13840
+34310,23930
+34311,38231
+34312,59509
+34313,59238
+34314,65535
+34315,66288
+34316,66490,55499
+34317,39590,77817
+34318,34219
+34319,45272
+34320,46968
+34321,26174,33732
+34322,9410
+34323,26147
+34324,62240
+34325,59841,53831
+34326,51818
+34327,77460
+34328,5174
+34329,69075
+34330,13566
+34331,55854
+34332,12607
+34333,3601
+34334,33014
+34335,7858
+34336,54997
+34337,63390,8053,68025
+34338,53246
+34339,26182,73435
+34340,20447
+34341,34757
+34342,42281,40708
+34343,39975
+34344,38401
+34345,23175
+34346,48883
+34347,34902
+34348,18834
+34349,2654
+34350,26423,51319,32217
+34351,69150,64823
+34352,48890
+34353,41444
+34354,77275
+34355,40633
+34356,66264
+34357,10578
+34358,13776
+34359,35636
+34360,25290
+34361,20579
+34362,79049,11379
+34363,33716
+34364,34532
+34365,19590
+34366,76718
+34367,29341,39364,73916
+34368,47178
+34369,72337
+34370,79573,3507
+34371,33348
+34372,48301
+34373,29146
+34374,34427
+34375,49944,49799
+34376,20432
+34377,41947
+34378,11929
+34379,10440
+34380,18759
+34381,5835,50704
+34382,51657
+34383,36099
+34384,59565
+34385,41845
+34386,41664
+34387,19414
+34388,24244
+34389,78997
+34390,900
+34391,33561
+34392,63057
+34393,9400
+34394,26605
+34395,22931
+34396,56460
+34397,6360
+34398,45499
+34399,6679
+34400,35177
+34401,43127
+34402,17794
+34403,65653,25181
+34404,60674
+34405,8491
+34406,19481
+34407,74155,41820
+34408,46147
+34409,60004
+34410,27572
+34411,11358
+34412,2585
+34413,60803
+34414,75464
+34415,71328
+34416,26869
+34417,3171
+34418,52270
+34419,80586
+34420,26042
+34421,63725
+34422,27305,17026
+34423,58735
+34424,51312
+34425,61807
+34426,78388
+34427,27185,71836
+34428,8222
+34429,15090,39493
+34430,15943
+34431,26601
+34432,54929
+34433,63901
+34434,62429
+34435,11090
+34436,10570
+34437,14550
+34438,17423,44800
+34439,75619
+34440,26268
+34441,63125
+34442,66564
+34443,61979
+34444,46215
+34445,46829
+34446,4282
+34447,60541,373
+34448,79221
+34449,31976
+34450,67472
+34451,45282
+34452,14066,8881
+34453,21428
+34454,61941
+34455,6570
+34456,74015
+34457,53212
+34458,16787
+34459,46484
+34460,12145
+34461,68055
+34462,19790,14034
+34463,19608
+34464,7620,34764
+34465,61471
+34466,71397
+34467,25924
+34468,11722
+34469,75522
+34470,46914
+34471,32483
+34472,16299
+34473,15032,25458,10589
+34474,73653
+34475,47781
+34476,77593
+34477,23981
+34478,49063
+34479,22059,54099,28847
+34480,11436
+34481,64062,27550
+34482,72580
+34483,4182
+34484,47940
+34485,13175,39427
+34486,11429
+34487,9772
+34488,74127
+34489,65276
+34490,27224
+34491,77978,70838
+34492,79377
+34493,28289
+34494,11728,1847
+34495,57946,26035
+34496,10195
+34497,81351
+34498,72034
+34499,9019
+34500,14285
+34501,47849
+34502,8721,56246
+34503,2571
+34504,57989
+34505,2663
+34506,6679
+34507,15736
+34508,1613
+34509,28898
+34510,72981
+34511,6253
+34512,70572
+34513,14438,2674
+34514,39513,41874,3992
+34515,37990
+34516,16176,70636
+34517,39755
+34518,47552,12871
+34519,6022
+34520,5388
+34521,65854,38972,20743
+34522,63218
+34523,43370
+34524,74431
+34525,19215
+34526,16306
+34527,49969
+34528,25941
+34529,37697
+34530,71281
+34531,11281,55572
+34532,18899
+34533,13073
+34534,64551,34243
+34535,81362
+34536,45034
+34537,81978
+34538,49548
+34539,41185
+34540,13949
+34541,2202
+34542,46082
+34543,45946,41261
+34544,60911
+34545,28135
+34546,39686
+34547,60323
+34548,49905
+34549,61419
+34550,19485
+34551,22005
+34552,35217
+34553,75853
+34554,59429
+34555,59506
+34556,29080
+34557,74496
+34558,63051
+34559,35729,504
+34560,73482
+34561,75768
+34562,66204,63145
+34563,74902
+34564,62098
+34565,77953
+34566,5734
+34567,42016
+34568,18964
+34569,6041
+34570,47754,54958
+34571,11172,32307,52495
+34572,79443
+34573,42133
+34574,46131
+34575,30443
+34576,35485
+34577,28653,36122
+34578,79443
+34579,38130,63263
+34580,56921
+34581,67212,39816
+34582,5171
+34583,9230
+34584,6116
+34585,66130
+34586,78017
+34587,37943
+34588,66425
+34589,62808,15041
+34590,80351
+34591,30738,16990
+34592,28081
+34593,11479
+34594,65
+34595,64763
+34596,42137
+34597,25391
+34598,36502
+34599,24650
+34600,76190
+34601,77324
+34602,11632
+34603,73958,21387
+34604,28242
+34605,56987
+34606,66724
+34607,6431
+34608,52282
+34609,21710
+34610,63539
+34611,23030
+34612,61283
+34613,48862
+34614,32995
+34615,69248,27594
+34616,5977
+34617,54731
+34618,51662,61814
+34619,60785
+34620,20213
+34621,51621
+34622,6574
+34623,37864
+34624,23165
+34625,64837
+34626,32846
+34627,81881
+34628,10974,70779
+34629,33823
+34630,61217
+34631,44827
+34632,67352
+34633,63060
+34634,31774
+34635,66151
+34636,66124
+34637,41814
+34638,966
+34639,15334,52007
+34640,29783
+34641,14136
+34642,9871
+34643,54298,24895
+34644,23756
+34645,46629
+34646,68838,28245,14506,7744,72606
+34647,50293,19422
+34648,370,65694,47821,44586
+34649,45919
+34650,57358
+34651,30565
+34652,65470
+34653,17238
+34654,48017,70271
+34655,40401
+34656,19543
+34657,33342
+34658,22446
+34659,7403,18563
+34660,67068
+34661,62429
+34662,20198
+34663,30062,21518
+34664,45982
+34665,47327,37815
+34666,49531,39396
+34667,59643
+34668,79676
+34669,47885
+34670,69456
+34671,11709
+34672,36256
+34673,79382
+34674,18936
+34675,29104
+34676,62145
+34677,5640
+34678,18106,40580
+34679,61661
+34680,1650
+34681,72020
+34682,56365,34070
+34683,12893,62662
+34684,75244
+34685,57921
+34686,35208
+34687,56909,76469
+34688,49067
+34689,66787
+34690,54593
+34691,45281
+34692,7308
+34693,34105
+34694,41209
+34695,14354
+34696,8922
+34697,65331
+34698,17555
+34699,51843
+34700,19332,60968
+34701,79150
+34702,51250
+34703,54786
+34704,9240
+34705,58587
+34706,1211
+34707,53314
+34708,22004,13036
+34709,53002
+34710,18023
+34711,74064,59354
+34712,486
+34713,62501
+34714,42161
+34715,81474
+34716,59095
+34717,42002
+34718,15951
+34719,81114
+34720,31674
+34721,26767
+34722,64374
+34723,26971
+34724,64430
+34725,59527
+34726,21861
+34727,3218
+34728,64275
+34729,25343,36591
+34730,67190,45306
+34731,69851
+34732,20242
+34733,80384,5343,51282
+34734,39864,67698
+34735,38264
+34736,38254
+34737,61057
+34738,42401
+34739,598
+34740,70193,81994
+34741,47100
+34742,79116
+34743,69361
+34744,51659
+34745,1801
+34746,677,53274
+34747,66960
+34748,78090
+34749,57595
+34750,78727
+34751,21747
+34752,74727
+34753,76312
+34754,81887
+34755,70877,56024
+34756,73371
+34757,15169
+34758,66564
+34759,65231
+34760,30912
+34761,37224
+34762,58239
+34763,51556
+34764,71887
+34765,63526
+34766,65020
+34767,71296
+34768,64524
+34769,50758
+34770,62852
+34771,51976
+34772,80637
+34773,7498
+34774,9983
+34775,44651
+34776,35593
+34777,49072,41927
+34778,2780
+34779,21024,32200
+34780,53524
+34781,9678
+34782,54337
+34783,22765
+34784,30437,6699
+34785,75407
+34786,29103
+34787,42452
+34788,61447,2214
+34789,43457
+34790,62862
+34791,20965
+34792,35970
+34793,64795
+34794,46085,80510
+34795,25970
+34796,8800
+34797,21768,59240
+34798,59329
+34799,21302,4379
+34800,71913
+34801,43842
+34802,78785
+34803,79106
+34804,7823
+34805,43875
+34806,17541
+34807,56921,33571
+34808,3765
+34809,7552
+34810,20144
+34811,64919,13619,51560
+34812,32489,56979
+34813,37523,67259
+34814,23554
+34815,65776
+34816,38527
+34817,55498
+34818,26523
+34819,41999
+34820,62538
+34821,13088
+34822,58980
+34823,6204
+34824,42871
+34825,61418,58796
+34826,27009,50944
+34827,56258
+34828,8562,75053
+34829,35415
+34830,47692
+34831,55210
+34832,60119
+34833,31610
+34834,45245
+34835,16440
+34836,57613
+34837,81460
+34838,11198
+34839,3981
+34840,59375
+34841,1190
+34842,33168
+34843,67238
+34844,48633
+34845,19329,71372,53717
+34846,22167
+34847,38858
+34848,20414
+34849,47312
+34850,24979
+34851,41374
+34852,24228
+34853,58391
+34854,1781
+34855,67344,23516
+34856,70434,78617,32784
+34857,73626
+34858,14810
+34859,78270,42039
+34860,73801,36570
+34861,48559
+34862,2214
+34863,16812
+34864,71652
+34865,19175
+34866,13742
+34867,4471
+34868,41031,71864
+34869,33145
+34870,6500
+34871,30443
+34872,52436
+34873,5729,40732
+34874,68353
+34875,80691
+34876,78922,52615
+34877,17135
+34878,37147
+34879,39480
+34880,80190,52148
+34881,26969
+34882,1001
+34883,13336
+34884,67173
+34885,80098
+34886,40351,11577
+34887,38185
+34888,51612
+34889,6459
+34890,60418
+34891,64123,27323
+34892,49253
+34893,67328
+34894,18151
+34895,26960
+34896,68369
+34897,8911
+34898,58045
+34899,2075
+34900,3711
+34901,35351
+34902,39340
+34903,23686
+34904,44032
+34905,35581
+34906,60148
+34907,11316,60960
+34908,7876,629
+34909,5999
+34910,12167
+34911,30444
+34912,29307
+34913,67136
+34914,4911
+34915,71750
+34916,48084
+34917,22831,37402
+34918,47026,67847
+34919,29640
+34920,41686,55998
+34921,53669
+34922,3001
+34923,79780,5522
+34924,1617
+34925,58164
+34926,3707
+34927,40997
+34928,80935
+34929,16393
+34930,21836,55594,73927
+34931,8658
+34932,43856
+34933,63923,64325
+34934,25168
+34935,55811
+34936,23275
+34937,42271
+34938,41381,57718
+34939,67552
+34940,69078
+34941,35238
+34942,14282,81911
+34943,80639
+34944,47069
+34945,76886
+34946,56482
+34947,6362
+34948,19654,42162
+34949,67706
+34950,22863
+34951,25332
+34952,73560
+34953,6642
+34954,17648
+34955,81422
+34956,23647
+34957,77942
+34958,38822
+34959,17513
+34960,35951
+34961,27500
+34962,30284,4253
+34963,53182
+34964,35045,55867
+34965,33837
+34966,13499,38349,54643
+34967,16560
+34968,50399
+34969,53152
+34970,30543,46042,50096,13323
+34971,44134,79449
+34972,43167
+34973,57635
+34974,81985
+34975,27461
+34976,7980
+34977,10879,74835
+34978,21865,76386
+34979,11294,61629
+34980,55670
+34981,23707
+34982,21011
+34983,3289
+34984,14706
+34985,67964
+34986,8842,34803
+34987,43256
+34988,62001
+34989,55709
+34990,81900
+34991,10455
+34992,59196
+34993,72454,5132
+34994,48081
+34995,77160
+34996,17903
+34997,50765
+34998,26962
+34999,70936,48786
+35000,67442
+35001,3336
+35002,3171
+35003,34060,62422
+35004,77485
+35005,76090
+35006,80801
+35007,27176
+35008,33008
+35009,65907
+35010,1196
+35011,14274,43480
+35012,45851
+35013,60630
+35014,55509,45533,18773
+35015,2333
+35016,34168
+35017,20487
+35018,14859
+35019,63038,23331
+35020,16466
+35021,20675,16753
+35022,26382
+35023,47238,77743
+35024,12146
+35025,71362,57908
+35026,49511
+35027,61769
+35028,19011
+35029,3846,79604
+35030,64017
+35031,6016
+35032,15978,35674
+35033,3004
+35034,16996
+35035,21564,54098
+35036,35841
+35037,30634
+35038,13364
+35039,71945
+35040,19604
+35041,31183
+35042,52123,1213,45072,56024,16039,22439
+35043,30680
+35044,42142
+35045,12437
+35046,39686
+35047,70765,64436,38235
+35048,72170
+35049,2790
+35050,37249
+35051,8964
+35052,54802
+35053,416
+35054,63362,76474
+35055,37112
+35056,7180,62300
+35057,42187
+35058,26550
+35059,675
+35060,36423
+35061,36382
+35062,47121
+35063,2540
+35064,35667
+35065,44180
+35066,22773
+35067,13148
+35068,18757
+35069,68006
+35070,13348,58203
+35071,31142
+35072,47816,20392
+35073,65863
+35074,23670
+35075,35570
+35076,50236
+35077,38913
+35078,13679,15476
+35079,29521
+35080,71915
+35081,11160
+35082,11648
+35083,66983
+35084,29799
+35085,68699
+35086,25278
+35087,75643
+35088,75137
+35089,1271
+35090,73456
+35091,73860
+35092,35635
+35093,55535
+35094,21161,63648,37471
+35095,9223
+35096,23701
+35097,30388
+35098,24188,3328,12652
+35099,19106
+35100,52872,20010,75156,64472
+35101,50407
+35102,61610
+35103,3362,22958
+35104,25663
+35105,72870
+35106,57124
+35107,18891
+35108,56339
+35109,410,79478
+35110,60164,34114
+35111,77050,67708
+35112,69951
+35113,70529
+35114,61032,61961,46116
+35115,42177
+35116,26397
+35117,33714
+35118,3289,75882
+35119,9361,32902
+35120,64040
+35121,24586
+35122,24738
+35123,36452
+35124,37300
+35125,81093
+35126,43148
+35127,39975
+35128,50852
+35129,80694
+35130,39621
+35131,57515
+35132,60184
+35133,29531
+35134,80869
+35135,24293,74407
+35136,50079
+35137,64683,43974
+35138,76895
+35139,19632
+35140,29755
+35141,55525,65892
+35142,26036
+35143,66863
+35144,14964,99
+35145,50182
+35146,69890,55363
+35147,22035,72928
+35148,68896,41121
+35149,25029
+35150,18152
+35151,26489,46560
+35152,69183
+35153,17734
+35154,29413,34742,10112
+35155,49826
+35156,37353,21772
+35157,24095,52565,37829
+35158,36398
+35159,24520
+35160,74314
+35161,40980
+35162,62030
+35163,3886,39765
+35164,18159
+35165,51655
+35166,22703
+35167,60128
+35168,45203
+35169,44120
+35170,20965
+35171,8557
+35172,3961
+35173,73966
+35174,66299
+35175,16106
+35176,26283
+35177,61215
+35178,37794,77121
+35179,13242,81013
+35180,41805
+35181,62716
+35182,17769
+35183,59388
+35184,24813,22761
+35185,24101
+35186,33664
+35187,70508
+35188,29515
+35189,74244
+35190,77330
+35191,6366
+35192,15767
+35193,28551
+35194,54536
+35195,9546
+35196,52876
+35197,23288
+35198,60773
+35199,14171
+35200,81662
+35201,50805
+35202,48895
+35203,30072,56892
+35204,50109
+35205,76480
+35206,37088
+35207,1968
+35208,76106
+35209,58392
+35210,31428,65494
+35211,72578,81504
+35212,52655,39709
+35213,67860
+35214,18256
+35215,31845,2084
+35216,75481
+35217,9585
+35218,47887
+35219,82029
+35220,44406,81946
+35221,36386
+35222,21762
+35223,54420
+35224,5698,36511,56851
+35225,80730
+35226,23767
+35227,51295
+35228,27195
+35229,60564
+35230,20625
+35231,33692
+35232,54024,77915
+35233,64754,27478
+35234,49396
+35235,78834
+35236,45720
+35237,2665
+35238,67280
+35239,72991
+35240,28109
+35241,81366
+35242,20009
+35243,1547
+35244,24974
+35245,15008,54622,11775
+35246,12217
+35247,63900
+35248,613
+35249,33606
+35250,21919
+35251,10627
+35252,63720
+35253,29127
+35254,78456
+35255,39819,33958
+35256,16457
+35257,73533
+35258,7281
+35259,62643
+35260,78716
+35261,27510
+35262,44330
+35263,70314
+35264,19277
+35265,55905
+35266,68600,53116
+35267,22260
+35268,52255,28978
+35269,78850
+35270,50434
+35271,26325
+35272,11443
+35273,70189
+35274,38724
+35275,17438
+35276,3738
+35277,11889,58951
+35278,56630
+35279,74512
+35280,16247
+35281,67155
+35282,22601
+35283,47283
+35284,10650
+35285,16376,10199
+35286,38364
+35287,75119
+35288,26047
+35289,7495,70453
+35290,45215
+35291,62218
+35292,19725
+35293,53839
+35294,76914,72632
+35295,67490
+35296,22013
+35297,64716
+35298,6954,14969
+35299,54668,71690
+35300,28148
+35301,25223
+35302,9133,33849
+35303,765
+35304,26613
+35305,45694
+35306,55298,77343
+35307,44197,6953
+35308,78080,22888
+35309,60534
+35310,26718,49823
+35311,44487
+35312,34940
+35313,36451,61501
+35314,74726
+35315,30307
+35316,37879
+35317,3469,70883
+35318,41364
+35319,36087,65493,25408
+35320,67080,27619
+35321,31349
+35322,52420
+35323,59305
+35324,5962
+35325,38519
+35326,33680
+35327,80265,26457
+35328,24519
+35329,6624
+35330,41588
+35331,66200
+35332,82081
+35333,57736
+35334,51522
+35335,51767
+35336,39970
+35337,23275,73305
+35338,29889
+35339,41893
+35340,63425
+35341,18465
+35342,73623
+35343,57051
+35344,25267
+35345,75777
+35346,25934
+35347,69413,33091
+35348,69844,72042,74159
+35349,49491
+35350,27055
+35351,8513,64767
+35352,44464,67164,25351
+35353,15083
+35354,75485,18833
+35355,8550,34070
+35356,26375
+35357,80296,71791
+35358,14465,18643
+35359,22117
+35360,33143
+35361,32678,78240
+35362,76927
+35363,23572,62871
+35364,30719
+35365,69861
+35366,56117,17948
+35367,31357,31843
+35368,40650
+35369,24824,4156,33996
+35370,30006
+35371,78090
+35372,43652
+35373,81842
+35374,59173
+35375,18465
+35376,65089
+35377,45346
+35378,38034
+35379,8349
+35380,12638
+35381,61667,69107
+35382,12633
+35383,16863
+35384,75377
+35385,60432,35735,55898
+35386,823
+35387,30559
+35388,64811
+35389,18381,15243
+35390,5489
+35391,41071
+35392,5699
+35393,34255,57565
+35394,40370
+35395,37302
+35396,28349
+35397,52162
+35398,72625
+35399,35709,56875
+35400,43947
+35401,64822
+35402,26995,52167
+35403,37499
+35404,68391
+35405,945
+35406,13395,1271
+35407,70967
+35408,50349,70557
+35409,18465
+35410,33352
+35411,37768
+35412,11545
+35413,63918
+35414,31142
+35415,6974
+35416,52436
+35417,58762,55717
+35418,59047,80518
+35419,20170
+35420,72411
+35421,62940,46167
+35422,15578
+35423,19739
+35424,40203,46334
+35425,30071
+35426,48903
+35427,12590
+35428,27473
+35429,73394
+35430,24790
+35431,72926
+35432,26839
+35433,69759
+35434,79001
+35435,12590
+35436,70700
+35437,17669
+35438,13570
+35439,36151
+35440,33664
+35441,55362
+35442,65322
+35443,7084
+35444,51943
+35445,77876,53373
+35446,21718
+35447,57717
+35448,82083
+35449,30622
+35450,49625
+35451,25378,33139
+35452,40011
+35453,65432,14439
+35454,12306
+35455,52645
+35456,6339
+35457,74953
+35458,17854
+35459,22495
+35460,80063
+35461,51637
+35462,52
+35463,75493
+35464,55879
+35465,19993,5555
+35466,80698
+35467,3686
+35468,15807
+35469,35811
+35470,25369
+35471,77427
+35472,42903,48880
+35473,67444
+35474,57442
+35475,46377
+35476,49295
+35477,24238
+35478,37058
+35479,45328
+35480,51769
+35481,66739
+35482,45650
+35483,16812
+35484,33432
+35485,32492
+35486,77902
+35487,33695
+35488,71142
+35489,35403
+35490,81083
+35491,12019,68440
+35492,33976
+35493,1544
+35494,56964
+35495,9786,61883,69281
+35496,34019,34843
+35497,38146
+35498,59223
+35499,62356
+35500,33425
+35501,50804,48315
+35502,26129
+35503,22104
+35504,24263
+35505,50868,81136
+35506,21553
+35507,45804
+35508,62388
+35509,26656
+35510,59681
+35511,9440
+35512,14515,47048
+35513,46125
+35514,41205
+35515,65256
+35516,30792
+35517,27679
+35518,24318
+35519,74397
+35520,61263,49069
+35521,44733
+35522,36620
+35523,55595
+35524,62614
+35525,43838,48489
+35526,60984
+35527,51123
+35528,57782,1094
+35529,79833
+35530,54775
+35531,12726,56964
+35532,8288
+35533,63038,50901
+35534,18905
+35535,40910
+35536,48888
+35537,53227,1793
+35538,34580
+35539,76989
+35540,38685
+35541,80975
+35542,78209
+35543,27499
+35544,6487
+35545,41714
+35546,32319,65853
+35547,80427
+35548,6097
+35549,65769
+35550,24945,65704
+35551,9706,44194
+35552,8137
+35553,1491
+35554,72708
+35555,8400
+35556,17676
+35557,34535
+35558,39521,35744
+35559,20447
+35560,51744
+35561,71336
+35562,5912,66593
+35563,8115
+35564,76908
+35565,25626,54962
+35566,70184,40039
+35567,81815,69432
+35568,40272
+35569,67983
+35570,38785
+35571,54932
+35572,15199
+35573,51679
+35574,77651
+35575,77409
+35576,45318
+35577,19731
+35578,6150
+35579,51690
+35580,27714,48627
+35581,9991
+35582,23253
+35583,8216
+35584,27017
+35585,24489
+35586,25818,9886,18770
+35587,11533
+35588,59383
+35589,77148
+35590,58857
+35591,15847,55693
+35592,37496
+35593,23451
+35594,66161
+35595,57860
+35596,32008
+35597,36753,55358
+35598,53203
+35599,17434
+35600,77591
+35601,25616
+35602,13972,81077
+35603,63749
+35604,8492,80714
+35605,11198
+35606,9717
+35607,2442
+35608,10622
+35609,21098
+35610,37255
+35611,50029
+35612,19547
+35613,2145
+35614,50999
+35615,58139
+35616,22727
+35617,14504
+35618,60995
+35619,78806,80205
+35620,29124,7103
+35621,34844
+35622,22942
+35623,3612
+35624,55524
+35625,76972
+35626,8241,7212,63472
+35627,1081
+35628,50419
+35629,62360
+35630,71666
+35631,47603,41501
+35632,55563
+35633,28520
+35634,67100
+35635,21639
+35636,26303,59263
+35637,61418
+35638,51982
+35639,54329
+35640,55376
+35641,17076
+35642,60739
+35643,77877
+35644,47303
+35645,72210
+35646,48353
+35647,44547
+35648,74179,28530
+35649,32456
+35650,37023
+35651,57953
+35652,80508
+35653,60050,5529
+35654,7039,17038
+35655,5770,38699,42956
+35656,24730
+35657,5260
+35658,55373
+35659,45566
+35660,35872,65942,28477
+35661,10678
+35662,41752
+35663,76213
+35664,66854
+35665,78340
+35666,1913
+35667,82093,71327
+35668,7033,33420
+35669,52040
+35670,71247
+35671,38154
+35672,56158
+35673,6366
+35674,29903
+35675,17219,39874
+35676,71186
+35677,53398
+35678,16388,68262
+35679,1441,35368
+35680,77356
+35681,21838
+35682,40207
+35683,8600
+35684,45491
+35685,72187
+35686,43069
+35687,30624
+35688,58856,43229
+35689,874
+35690,20458,72458,36136
+35691,2260,64998
+35692,79213
+35693,39783
+35694,4806
+35695,74342,31844
+35696,77894
+35697,62062
+35698,47682
+35699,55251,69161
+35700,78291
+35701,30863
+35702,52632
+35703,64349
+35704,37915,32445
+35705,24174
+35706,47796,44823
+35707,33763
+35708,34597
+35709,39940
+35710,59597
+35711,40580,49901
+35712,68416
+35713,51648
+35714,54836
+35715,63672
+35716,44944
+35717,18647,3074
+35718,58746,28318
+35719,71160
+35720,42934,10062
+35721,49847
+35722,12816
+35723,75651
+35724,27648
+35725,14479
+35726,68459
+35727,71062
+35728,62989
+35729,60118
+35730,63189
+35731,30426
+35732,24440
+35733,70478
+35734,78438
+35735,18112
+35736,8989,54660
+35737,8065,17225
+35738,40151
+35739,18229
+35740,61872
+35741,54791
+35742,26103
+35743,2114
+35744,63441
+35745,74822
+35746,19771
+35747,50619
+35748,25235
+35749,19779
+35750,31161
+35751,41209
+35752,54932
+35753,21387
+35754,75403
+35755,77240
+35756,37509
+35757,34263
+35758,76449
+35759,44043
+35760,27779
+35761,64335
+35762,20937
+35763,33822
+35764,55519
+35765,73147
+35766,26450
+35767,78085
+35768,47638,9143
+35769,43889
+35770,14873
+35771,65425
+35772,27387
+35773,49154
+35774,47230,78598
+35775,8720
+35776,12261,62945
+35777,79772
+35778,52901
+35779,53231
+35780,4514,23466,58159
+35781,37302
+35782,74248
+35783,81780
+35784,13265
+35785,66349
+35786,70376
+35787,29136
+35788,58274
+35789,21556,18723
+35790,30538
+35791,77686
+35792,52115
+35793,48963
+35794,47618
+35795,33949
+35796,18151
+35797,33695,78622
+35798,72295
+35799,74366
+35800,38330
+35801,47949
+35802,13742
+35803,14014
+35804,46783
+35805,54251
+35806,41534
+35807,10587
+35808,65192
+35809,53223
+35810,2278
+35811,12028
+35812,66751
+35813,33493
+35814,39192
+35815,47969
+35816,8768
+35817,29178
+35818,48330
+35819,41844,38794,42395,3448
+35820,15067,57190,8564
+35821,63322
+35822,62917,76337
+35823,5108
+35824,66886,72166
+35825,23399
+35826,21590
+35827,43784
+35828,23181
+35829,24372
+35830,44410,11863
+35831,46479
+35832,42817
+35833,71906
+35834,69874
+35835,74190
+35836,41505
+35837,20731
+35838,39769
+35839,64131
+35840,10064,61235
+35841,32228
+35842,62777
+35843,28476
+35844,79575,2533
+35845,38735
+35846,36523
+35847,40435,28082
+35848,21661
+35849,39259,25725,7159
+35850,32027
+35851,54430
+35852,59610
+35853,55926
+35854,72666
+35855,16848
+35856,43207
+35857,50466
+35858,79245
+35859,25844
+35860,81724
+35861,9425
+35862,28412
+35863,70702
+35864,30944
+35865,6560
+35866,28687
+35867,8145
+35868,20202,36327,28906
+35869,62103
+35870,19785
+35871,49042
+35872,27785
+35873,64799
+35874,72065
+35875,53071
+35876,46223,57425,74035
+35877,29001
+35878,78411,79173
+35879,27495
+35880,14593
+35881,9355
+35882,26882,7032
+35883,77446
+35884,70774,26132
+35885,26243,38913
+35886,30431
+35887,15786
+35888,43611
+35889,64416,49867
+35890,36807
+35891,43809,8053
+35892,61148
+35893,1281,38328
+35894,69213
+35895,52332
+35896,66436
+35897,68259
+35898,78003
+35899,16153
+35900,79512
+35901,29075
+35902,34664
+35903,31879
+35904,64740
+35905,22099
+35906,61639
+35907,32000,38423
+35908,9516
+35909,72247
+35910,76352
+35911,43834,46476
+35912,57021
+35913,13600
+35914,80387
+35915,54433
+35916,70453,72077
+35917,67352
+35918,58402
+35919,29761
+35920,12162
+35921,32128
+35922,49507
+35923,80814,4911
+35924,44171
+35925,57078
+35926,50644
+35927,35165,41404,68557
+35928,20558
+35929,65743
+35930,4568
+35931,54892
+35932,38517
+35933,22109,52055,5498
+35934,69078
+35935,52805,18538
+35936,30291
+35937,65076
+35938,80521
+35939,15209
+35940,60927,33046
+35941,15591
+35942,67631,17085,55016
+35943,7805
+35944,25421
+35945,48135
+35946,24721,68586
+35947,48160
+35948,804
+35949,59000
+35950,38088
+35951,33705
+35952,15452
+35953,64639
+35954,37841
+35955,74483
+35956,44723
+35957,44097
+35958,60370
+35959,14867
+35960,31061
+35961,32095
+35962,23197
+35963,60575
+35964,42558
+35965,27256
+35966,40103
+35967,35980
+35968,6022,27886
+35969,34280,23619
+35970,68748
+35971,33743
+35972,47795
+35973,20872
+35974,32836,58615
+35975,47823
+35976,73592
+35977,35738
+35978,42630
+35979,47300
+35980,70285
+35981,6926
+35982,5643
+35983,76937,48674
+35984,54490
+35985,53296
+35986,41039
+35987,41731
+35988,26547
+35989,70315
+35990,81633
+35991,38962
+35992,54376
+35993,18836
+35994,50684
+35995,13109
+35996,3402
+35997,30015
+35998,64976,1388
+35999,40532
+36000,80452,71879
+36001,50393,71275
+36002,69883
+36003,15823
+36004,34733
+36005,21169
+36006,55469,22534
+36007,62185
+36008,31157
+36009,11833
+36010,1076
+36011,58022
+36012,76089,15181
+36013,42408
+36014,55129
+36015,38527
+36016,18868
+36017,35572
+36018,70682
+36019,69472
+36020,73423
+36021,9629
+36022,79410
+36023,700
+36024,73903
+36025,47491
+36026,69817
+36027,41119
+36028,3935,46370,40360
+36029,4514,66503
+36030,68450
+36031,10564
+36032,74480
+36033,60148
+36034,58976
+36035,14075
+36036,42278,70472
+36037,2684
+36038,8524
+36039,75920
+36040,19670
+36041,26535
+36042,37484
+36043,52455
+36044,35732
+36045,73283
+36046,51094
+36047,62657
+36048,77963
+36049,38935,30422
+36050,28251,37702
+36051,54119
+36052,118
+36053,79572
+36054,43827
+36055,36532
+36056,10040
+36057,31792
+36058,53619
+36059,47660
+36060,71321
+36061,75102
+36062,31550,61194
+36063,50268
+36064,50152
+36065,6507
+36066,68172,244
+36067,35437
+36068,69810
+36069,66802
+36070,52037
+36071,31235
+36072,64748
+36073,3953
+36074,26903
+36075,74914,18489
+36076,12185
+36077,9766
+36078,21055
+36079,17521
+36080,40689
+36081,46214
+36082,10325,59720,47248
+36083,35630
+36084,25219
+36085,62130
+36086,54384
+36087,71860
+36088,53795,52460
+36089,80422
+36090,6290
+36091,15131
+36092,58281
+36093,5171
+36094,37184
+36095,47745
+36096,73239
+36097,46022
+36098,78023
+36099,2617
+36100,59428,75047
+36101,57410
+36102,35006
+36103,14315
+36104,56129
+36105,55276
+36106,39903
+36107,37015
+36108,42483
+36109,2757
+36110,42014,21131
+36111,31533
+36112,55095
+36113,66291
+36114,76807
+36115,62367,23114
+36116,80487
+36117,40158
+36118,55303
+36119,41454
+36120,5002
+36121,50309
+36122,48358
+36123,21487,77074
+36124,59563
+36125,15380
+36126,29410
+36127,62233
+36128,63405
+36129,41031
+36130,43310
+36131,16205,17744
+36132,7768
+36133,46714,40390
+36134,20270
+36135,50724
+36136,61547,48819
+36137,7498
+36138,38831
+36139,9898
+36140,4104,80714
+36141,40803
+36142,60825
+36143,26205
+36144,16129
+36145,39298
+36146,97,54897
+36147,21976
+36148,23335
+36149,50959
+36150,33021
+36151,25414
+36152,3934
+36153,59446
+36154,16968,61202
+36155,26016,9132
+36156,57019
+36157,59223
+36158,16278
+36159,62262
+36160,44632
+36161,48062
+36162,49430
+36163,55920
+36164,62985
+36165,71883
+36166,65669
+36167,56078
+36168,50252,46631
+36169,63533,39736
+36170,81178
+36171,64489,21515
+36172,74382
+36173,57696
+36174,17304
+36175,81089
+36176,77755,20453
+36177,4008,71694
+36178,55231
+36179,70263
+36180,39928
+36181,43416
+36182,61158
+36183,3829
+36184,992,62963
+36185,384
+36186,34724
+36187,75828
+36188,78017
+36189,33054,12290
+36190,81458
+36191,15388
+36192,18464
+36193,55714
+36194,68788,70924
+36195,19570
+36196,12514
+36197,25669
+36198,80423,46248
+36199,49807
+36200,18814,63863
+36201,28159
+36202,20980
+36203,79762
+36204,37028
+36205,40541
+36206,56696
+36207,11425
+36208,28988
+36209,58137
+36210,3169,12879
+36211,80341
+36212,36935
+36213,1196
+36214,72577
+36215,24377
+36216,77742,67395
+36217,62870
+36218,61924
+36219,73234
+36220,7374
+36221,32955
+36222,48795
+36223,63461,32244
+36224,46543
+36225,6027
+36226,27462
+36227,23317
+36228,78964
+36229,46654,30454
+36230,70473
+36231,18677
+36232,36928
+36233,69131,57406
+36234,45208
+36235,60553
+36236,58976
+36237,37668
+36238,9273
+36239,13258
+36240,28722
+36241,13906
+36242,21418
+36243,23951
+36244,19044
+36245,46398,60027
+36246,25944
+36247,65556
+36248,21109
+36249,21529
+36250,3608
+36251,62294
+36252,2302
+36253,63027
+36254,36976
+36255,18812
+36256,36367,16299
+36257,13956
+36258,59506
+36259,76433
+36260,72043
+36261,746
+36262,62811
+36263,33045
+36264,38852
+36265,25196,31905
+36266,18702,45187
+36267,58591
+36268,13031
+36269,40186
+36270,61742
+36271,44963
+36272,67375,17214
+36273,45617,73510
+36274,10409
+36275,76405,23430
+36276,27023
+36277,48274,41584
+36278,77583
+36279,9686,14349
+36280,35466
+36281,71769
+36282,5029
+36283,76127
+36284,80034
+36285,8427
+36286,25189
+36287,21059
+36288,32287,79962
+36289,67091
+36290,70607
+36291,8031
+36292,48250
+36293,63172,46851
+36294,36532
+36295,63318,62408
+36296,21546
+36297,1606
+36298,28548
+36299,53107,51847
+36300,15887
+36301,58950,15247,46521
+36302,36284,58133
+36303,18922
+36304,56204
+36305,14139
+36306,10306
+36307,59913
+36308,2674,38509,860
+36309,25842
+36310,33393
+36311,6953
+36312,1804
+36313,24577
+36314,5387,31360
+36315,42679
+36316,74339
+36317,33747
+36318,12155
+36319,39200
+36320,2104,53467
+36321,42583
+36322,22652
+36323,67074
+36324,48308
+36325,34525
+36326,80111
+36327,64974
+36328,55920,71391
+36329,51057
+36330,66313
+36331,4920
+36332,550,63643,49673,51523
+36333,62422
+36334,36853
+36335,78957,71489
+36336,26956,48378
+36337,67361
+36338,77960
+36339,48107
+36340,22035
+36341,49300
+36342,46877
+36343,21816,40213,73296
+36344,12005
+36345,24440
+36346,12949,21384
+36347,52868
+36348,55478,31767
+36349,59947
+36350,54271
+36351,80371
+36352,70924
+36353,76196
+36354,49974
+36355,10281
+36356,38449
+36357,13229,28180
+36358,11804
+36359,77371
+36360,9506
+36361,6787
+36362,27594
+36363,21491,78183
+36364,67618
+36365,76984
+36366,76353
+36367,53296
+36368,10543
+36369,2242
+36370,59631
+36371,37999
+36372,55804
+36373,57907
+36374,61768
+36375,58424
+36376,48851
+36377,56508
+36378,28412
+36379,51637,43096,36017
+36380,31867
+36381,44310
+36382,34156
+36383,13459,21056
+36384,17911
+36385,57283
+36386,29594
+36387,76090
+36388,30195
+36389,17297
+36390,7700
+36391,36728
+36392,48460,46205
+36393,15771
+36394,49810
+36395,42624
+36396,20967
+36397,36484
+36398,34684
+36399,14034
+36400,49742
+36401,26514,26244
+36402,66334
+36403,18263
+36404,66307
+36405,26886,52586
+36406,80981,46072
+36407,43648
+36408,54538
+36409,76619
+36410,38411
+36411,36327
+36412,52283
+36413,17499
+36414,7583
+36415,48277
+36416,9194
+36417,57805
+36418,38168,29752
+36419,7735
+36420,63207
+36421,47648
+36422,65022
+36423,57403
+36424,8755
+36425,30872
+36426,10795
+36427,24253
+36428,16782
+36429,79538
+36430,78472,5171
+36431,31288
+36432,54963
+36433,51827
+36434,34954
+36435,70953
+36436,67170
+36437,77342
+36438,69472
+36439,14876
+36440,19766
+36441,49267,33385
+36442,30298
+36443,77363,51665
+36444,45598
+36445,80813
+36446,74727,63800
+36447,9162
+36448,73773,15473
+36449,20677
+36450,3712
+36451,57583,15925
+36452,25295
+36453,68706
+36454,54991
+36455,17652
+36456,23688
+36457,44228
+36458,6729
+36459,14913
+36460,17501,13250
+36461,18659
+36462,15991
+36463,69035
+36464,82106
+36465,5974,81004
+36466,68274,56983
+36467,35459,41668
+36468,70451,56335
+36469,18272
+36470,41457
+36471,40197
+36472,43246
+36473,79399
+36474,54158
+36475,80449
+36476,79851
+36477,24003,70451
+36478,46077
+36479,75194,66887,22098
+36480,34987
+36481,8573,26382
+36482,5983,72337
+36483,81972
+36484,8625
+36485,50764
+36486,50459
+36487,24314
+36488,66386
+36489,5539
+36490,66856
+36491,21014,10405
+36492,22036
+36493,45217
+36494,50269
+36495,61948,54198
+36496,11205
+36497,70567,73028
+36498,32232,79225
+36499,2704
+36500,80619,13029
+36501,17401
+36502,38691
+36503,47704,6713
+36504,65638
+36505,51438
+36506,49721,19417
+36507,79417,27776
+36508,3614
+36509,7451
+36510,42612
+36511,53498
+36512,55676
+36513,16004
+36514,42934
+36515,66099
+36516,22771
+36517,41115
+36518,72964
+36519,48856
+36520,24968,15500,70375
+36521,22634
+36522,2597
+36523,31168
+36524,51608,55047
+36525,52759
+36526,45243
+36527,28750
+36528,51868
+36529,10993
+36530,66724
+36531,45495,30702
+36532,65582
+36533,17429
+36534,4589
+36535,29582
+36536,28338,32197
+36537,64889
+36538,70759
+36539,34151
+36540,28905
+36541,67571
+36542,23705
+36543,36109
+36544,8298,21585
+36545,58563
+36546,40569
+36547,61398
+36548,71162,27737
+36549,74665
+36550,46422,15923
+36551,13262
+36552,31014
+36553,20952
+36554,62712
+36555,9689
+36556,57311
+36557,6691
+36558,40726
+36559,31568
+36560,14603
+36561,75023
+36562,76783,15126
+36563,17890
+36564,57641
+36565,32884
+36566,58852
+36567,23613
+36568,76090
+36569,34844
+36570,79527
+36571,10651
+36572,43003,17448
+36573,67380
+36574,19591
+36575,18575,37273,44124,7035
+36576,80445
+36577,11673,69309
+36578,30422
+36579,21052
+36580,77880
+36581,80623
+36582,28631
+36583,13558
+36584,50978
+36585,13551,26089
+36586,31142
+36587,30406,35186
+36588,9524
+36589,66033
+36590,63166,23076
+36591,13549
+36592,56733
+36593,33583
+36594,36233
+36595,23831
+36596,6161
+36597,26562
+36598,43913
+36599,64290,79873
+36600,27269
+36601,16011
+36602,56416
+36603,81161
+36604,8710
+36605,16616
+36606,51559
+36607,32811,48103
+36608,52725
+36609,13811
+36610,594
+36611,57283
+36612,78197
+36613,62760
+36614,66372
+36615,80641
+36616,9948
+36617,63648
+36618,64985
+36619,63994
+36620,77417
+36621,9196
+36622,71188,35287
+36623,41718
+36624,69223
+36625,10698
+36626,52579
+36627,77231
+36628,22875
+36629,47821,47605
+36630,76733
+36631,5796
+36632,38684
+36633,71545,80900,33782
+36634,61090
+36635,76207
+36636,56296
+36637,47607,51528
+36638,61394
+36639,15341
+36640,29266,81194
+36641,75287
+36642,40887
+36643,49065,70769
+36644,33165
+36645,72580
+36646,78709,15930
+36647,73744
+36648,22473
+36649,19644,39370
+36650,68444,77512
+36651,64375
+36652,74701
+36653,2196
+36654,6586
+36655,22035
+36656,25686
+36657,59739
+36658,17804,52494
+36659,21599,23288
+36660,68357
+36661,60235
+36662,165
+36663,19251,25104
+36664,377
+36665,66163
+36666,40627
+36667,48786
+36668,64372,17200
+36669,71545
+36670,10188
+36671,43774
+36672,69789
+36673,13206
+36674,53478
+36675,27398
+36676,67216
+36677,54257
+36678,61993
+36679,69721,14809
+36680,28803
+36681,5422,18911
+36682,58444
+36683,20312
+36684,22459,53414,67739
+36685,68624
+36686,80367
+36687,22689,2297
+36688,13507
+36689,43507
+36690,15671
+36691,70244
+36692,11153
+36693,80713,79348
+36694,48023,27540,16595
+36695,43132
+36696,58530
+36697,20109
+36698,9725
+36699,44425
+36700,13073
+36701,74433
+36702,36277
+36703,39277,6868
+36704,68389
+36705,32843
+36706,53996
+36707,35256
+36708,29562
+36709,80568,45910
+36710,18109
+36711,38975
+36712,30773
+36713,49892
+36714,77266,36438,70798
+36715,77094
+36716,69465
+36717,78033
+36718,25284
+36719,4990
+36720,13363
+36721,51954
+36722,27326
+36723,29227
+36724,26547
+36725,18288
+36726,57836
+36727,6330,1839
+36728,62693
+36729,9739
+36730,38668,12397
+36731,46150
+36732,63405,79296
+36733,4554,66970
+36734,68038
+36735,47821
+36736,39403,50814
+36737,37563
+36738,15968,44391
+36739,16194
+36740,35675
+36741,41384
+36742,46823
+36743,79427
+36744,47128,11817
+36745,11574
+36746,79759
+36747,47573,1845
+36748,51456
+36749,45611
+36750,48191
+36751,70904
+36752,20724
+36753,20469,7250
+36754,14810
+36755,17380,59201,10607
+36756,64580,34168
+36757,55709
+36758,7775
+36759,81184,51260
+36760,36000
+36761,15635
+36762,29759
+36763,73748
+36764,71401,52252
+36765,43148,34148
+36766,71642
+36767,90
+36768,29768
+36769,73001
+36770,68596
+36771,68327
+36772,43192,58588
+36773,23166
+36774,63898
+36775,13100
+36776,34024
+36777,4034,81456
+36778,26445
+36779,69918
+36780,37057
+36781,70472
+36782,73052
+36783,55582,5774
+36784,39753
+36785,12110
+36786,76830
+36787,637,16881
+36788,75684,45282
+36789,4340
+36790,9414
+36791,17980,7522
+36792,24332
+36793,10392,18692
+36794,15060
+36795,40220
+36796,67208
+36797,45667
+36798,36492,50473
+36799,39606
+36800,38597
+36801,79134
+36802,28609
+36803,73571
+36804,41624
+36805,24789
+36806,369
+36807,24151
+36808,19833
+36809,17454
+36810,47152
+36811,10380,40381
+36812,69806,73441
+36813,72188
+36814,14738
+36815,75646
+36816,4738,23641
+36817,53372
+36818,16978
+36819,42016
+36820,64289
+36821,46928
+36822,51163
+36823,44621
+36824,51102
+36825,20292
+36826,71123
+36827,65114
+36828,44737
+36829,71291,66872
+36830,54116
+36831,37567
+36832,8336
+36833,14763
+36834,68034
+36835,51725,70774,30998
+36836,61909,51169
+36837,60676
+36838,27722
+36839,269
+36840,76607
+36841,61356,45931
+36842,58685
+36843,64482,26304
+36844,32630
+36845,76223
+36846,19722
+36847,16889,60231
+36848,60491
+36849,74266
+36850,20535
+36851,16877
+36852,25722
+36853,54442
+36854,41334
+36855,45828
+36856,50711
+36857,51043
+36858,27657
+36859,45526
+36860,42044
+36861,31406
+36862,14769
+36863,71932
+36864,2557,67945
+36865,53076
+36866,68270
+36867,47432
+36868,36277
+36869,80072,67871
+36870,36211
+36871,51760
+36872,38093
+36873,45266
+36874,26210
+36875,4837
+36876,75307
+36877,78540
+36878,71981
+36879,59692,60472,31499
+36880,681
+36881,61818
+36882,71960
+36883,43982,68399
+36884,22069
+36885,55357
+36886,28013
+36887,41792
+36888,9939,10250,48403
+36889,39854
+36890,35147
+36891,61066
+36892,25306
+36893,69293,76447
+36894,5064
+36895,78307
+36896,77832
+36897,35919
+36898,65907
+36899,78120,38247
+36900,36846
+36901,54489
+36902,6071
+36903,21201
+36904,18229
+36905,55088
+36906,58765,68703
+36907,6337
+36908,55276
+36909,21522
+36910,53722,19696
+36911,14149
+36912,4762
+36913,50834,66997
+36914,48712
+36915,57332
+36916,33670
+36917,14093
+36918,15343
+36919,76538
+36920,69644,3846
+36921,64560
+36922,74828
+36923,26870
+36924,74955,56295
+36925,57896
+36926,45739
+36927,69954
+36928,33613
+36929,32268
+36930,43162,76756
+36931,34503
+36932,54470
+36933,15610,1741
+36934,36118
+36935,51602
+36936,9074
+36937,44101,5940,66358,24772
+36938,73146
+36939,67749,20078,43519
+36940,31005
+36941,2352
+36942,27579
+36943,22754
+36944,77312
+36945,73996
+36946,64123
+36947,50169
+36948,10632,69141,52671
+36949,48920
+36950,39522
+36951,21987,40833
+36952,12817
+36953,62343,4706
+36954,62247
+36955,21399
+36956,50653
+36957,56335
+36958,45534
+36959,66702
+36960,20058
+36961,45421
+36962,34284
+36963,76381
+36964,55833
+36965,58326
+36966,76837
+36967,16357
+36968,71016
+36969,67627
+36970,42301
+36971,72018,80907
+36972,20662
+36973,34206
+36974,64844
+36975,42558
+36976,4986
+36977,57836
+36978,63815,72520
+36979,53495
+36980,30914
+36981,24855
+36982,28096
+36983,66319
+36984,57410,74259,34308
+36985,63981
+36986,57053
+36987,60997
+36988,35315
+36989,28788,29339
+36990,13915
+36991,78253
+36992,72744
+36993,49222
+36994,73032
+36995,47695,61980
+36996,25139
+36997,53459
+36998,11265
+36999,71423
+37000,64614
+37001,9782
+37002,81643
+37003,17499
+37004,54127
+37005,43817
+37006,23444
+37007,53152
+37008,11055
+37009,14842
+37010,38220,20836
+37011,62153
+37012,18111
+37013,45661
+37014,17682
+37015,56309
+37016,61052
+37017,5831
+37018,21965,15921
+37019,45145
+37020,20378
+37021,82034
+37022,71820
+37023,59012
+37024,48734,67904
+37025,15057
+37026,16850
+37027,56863
+37028,57275,30796
+37029,29026
+37030,41752
+37031,36435
+37032,44190
+37033,71398,61071
+37034,47328
+37035,32858
+37036,45866
+37037,20343
+37038,42612
+37039,38609,47600
+37040,38758
+37041,61855,43442
+37042,63367
+37043,32319
+37044,34627
+37045,28555
+37046,24827,26814
+37047,64425
+37048,33338,14300
+37049,49143
+37050,75169
+37051,56454
+37052,39324,62064
+37053,27176
+37054,19115
+37055,75694
+37056,13038
+37057,22036
+37058,73996
+37059,16386
+37060,69370
+37061,23400
+37062,20261
+37063,20980
+37064,43090
+37065,39719,79728
+37066,9884
+37067,71482
+37068,275
+37069,67909
+37070,8352
+37071,62334
+37072,34901
+37073,39090
+37074,8518,25668,64474
+37075,22792
+37076,68990
+37077,14217
+37078,46882
+37079,43382
+37080,77119
+37081,81281,18795
+37082,3400
+37083,53669
+37084,79094,24954
+37085,49334
+37086,34720,28649
+37087,64453
+37088,34921
+37089,37073
+37090,10321
+37091,35021
+37092,80888
+37093,36090
+37094,76801
+37095,725
+37096,71787
+37097,77409
+37098,63934
+37099,69741,36356
+37100,47531
+37101,780
+37102,55285
+37103,26771
+37104,42700,18306
+37105,13218
+37106,60746
+37107,70763,65211
+37108,68823
+37109,37641
+37110,41964
+37111,76517
+37112,78925
+37113,37514
+37114,58045
+37115,26628
+37116,25866
+37117,31588
+37118,61417
+37119,38145
+37120,44582
+37121,48776
+37122,31031
+37123,21949
+37124,72003
+37125,73363
+37126,82020
+37127,27970
+37128,75284
+37129,12353
+37130,1703,6164
+37131,34887
+37132,21904
+37133,59313,28242
+37134,53054,15235,33825
+37135,2554
+37136,833,77728
+37137,43952,62482
+37138,71691
+37139,55865
+37140,2807,25901
+37141,77358
+37142,41370
+37143,14005
+37144,59414
+37145,74716
+37146,79281
+37147,39378
+37148,55864,71998
+37149,37515
+37150,14819
+37151,31901,68309
+37152,18203
+37153,14076,39157
+37154,41197
+37155,67281
+37156,72070
+37157,19530
+37158,38808
+37159,66854,30071
+37160,38587
+37161,68814
+37162,78031
+37163,65221
+37164,34168
+37165,39400
+37166,57815
+37167,70618,76886
+37168,20532
+37169,3724
+37170,78226,68412
+37171,22864,75250,11906
+37172,76679
+37173,54432
+37174,75184
+37175,8874
+37176,22011
+37177,50300
+37178,57335
+37179,47290
+37180,25797,16386
+37181,34
+37182,1491
+37183,38006
+37184,30681
+37185,46925
+37186,10950
+37187,12836
+37188,23901
+37189,15401
+37190,5696
+37191,74189
+37192,32011
+37193,29049
+37194,78123
+37195,80209
+37196,3209
+37197,56053
+37198,32871,78997
+37199,13497
+37200,58134
+37201,66766
+37202,70036
+37203,66033
+37204,37961
+37205,26810
+37206,77896,25055
+37207,37486,58694,35866
+37208,46435
+37209,42756
+37210,23559,78732
+37211,9988
+37212,75267,64496
+37213,32174
+37214,64210,35258
+37215,45200
+37216,25218
+37217,41453
+37218,31361
+37219,30224
+37220,54957
+37221,79194
+37222,3667
+37223,44765
+37224,11028
+37225,16946,19846
+37226,32586
+37227,721
+37228,16698
+37229,15595
+37230,48457
+37231,11230,6903
+37232,33520
+37233,32057
+37234,3323
+37235,46215
+37236,502
+37237,81722
+37238,22653
+37239,44683
+37240,31979
+37241,32273
+37242,27610
+37243,18408
+37244,67139
+37245,47017
+37246,12693,6831
+37247,55075
+37248,4702
+37249,12303
+37250,64210
+37251,40390
+37252,13039
+37253,73340
+37254,71169,31910
+37255,46880,66104
+37256,6717
+37257,4191
+37258,37224
+37259,40989
+37260,34376
+37261,64350,53115
+37262,52297
+37263,73951
+37264,2178
+37265,59942
+37266,60396
+37267,72616,27607
+37268,62732
+37269,69793,19317
+37270,81064,55992
+37271,17565
+37272,4794
+37273,57445
+37274,6788
+37275,46275
+37276,78466
+37277,28763
+37278,69790,28961
+37279,55381
+37280,19731
+37281,26201
+37282,28776
+37283,66254
+37284,55873,24250
+37285,35952
+37286,18052
+37287,80886,51620
+37288,16077
+37289,56864
+37290,44559
+37291,74809,62164
+37292,49189
+37293,25153,69968,41071
+37294,6072
+37295,44638
+37296,16720
+37297,56515
+37298,27276
+37299,54708
+37300,68586
+37301,4293
+37302,66236
+37303,31094,3405
+37304,32056,24091
+37305,7742
+37306,49345
+37307,68061
+37308,29394
+37309,45392
+37310,27636
+37311,79750
+37312,17572
+37313,15785
+37314,77942,78162
+37315,60145
+37316,59580
+37317,19503
+37318,80520
+37319,25105
+37320,34350
+37321,35074
+37322,6872
+37323,6256
+37324,23325
+37325,41146
+37326,44367
+37327,28295
+37328,39214,81935
+37329,5757,63267
+37330,81214
+37331,25804
+37332,9598
+37333,59775
+37334,38543
+37335,65420
+37336,10245
+37337,80550
+37338,68251
+37339,70301
+37340,80985
+37341,56302
+37342,77348
+37343,64758
+37344,62771
+37345,45667
+37346,4425,20479
+37347,12568,10083
+37348,32870
+37349,52433
+37350,46085
+37351,2953
+37352,37558
+37353,11055
+37354,51735
+37355,42509
+37356,29546
+37357,73902
+37358,63639
+37359,26896
+37360,53092
+37361,79669
+37362,65937,5383
+37363,14858
+37364,12662
+37365,8042
+37366,80629
+37367,12590
+37368,67080,68499
+37369,68672
+37370,456
+37371,34103
+37372,5026
+37373,17942
+37374,78525
+37375,10529
+37376,63872
+37377,47528
+37378,32811,12530,50590
+37379,26228
+37380,2753
+37381,41635,8102
+37382,70795
+37383,80644
+37384,50701
+37385,72052
+37386,37083
+37387,30453
+37388,34795
+37389,72316
+37390,82127,46867
+37391,43831
+37392,50427
+37393,9010
+37394,43675
+37395,28378
+37396,54618
+37397,5417
+37398,7651
+37399,26694,42718
+37400,45931
+37401,9927,78826
+37402,5822
+37403,39545
+37404,62939,2323
+37405,13503,24679
+37406,82041,27961
+37407,67816
+37408,62667
+37409,56545
+37410,49744,46744
+37411,61031
+37412,30049
+37413,20856
+37414,18032
+37415,73528
+37416,53714
+37417,59070
+37418,23810,12702
+37419,10702,62177
+37420,56560,1702
+37421,59007
+37422,46371
+37423,15650
+37424,7622
+37425,20397
+37426,37858
+37427,29700
+37428,35783
+37429,14884,55486
+37430,16989
+37431,2324
+37432,58487
+37433,50492
+37434,39866
+37435,28380
+37436,46436
+37437,34276
+37438,72199
+37439,15848
+37440,20057
+37441,59990,42697,41746
+37442,57453
+37443,10698,70789
+37444,48271
+37445,56788
+37446,15030,16986
+37447,33729,31905
+37448,60416
+37449,19513
+37450,63324
+37451,65284,67179
+37452,60438
+37453,62927
+37454,17104
+37455,3254
+37456,25804
+37457,66295
+37458,72016
+37459,50156
+37460,76225
+37461,64366
+37462,106
+37463,50000
+37464,68707
+37465,60614
+37466,54137
+37467,23599
+37468,15007
+37469,38159
+37470,80910
+37471,37326
+37472,34020
+37473,34599,24151
+37474,15048
+37475,44170
+37476,68870
+37477,33914
+37478,14321,78078
+37479,53344
+37480,52866
+37481,81648
+37482,49068
+37483,68970
+37484,68497
+37485,19170
+37486,10361
+37487,60216
+37488,1314,18483
+37489,63247
+37490,61790
+37491,58557
+37492,55965
+37493,29858
+37494,15596,68542,53387
+37495,59663
+37496,76219,67409
+37497,13542,65928
+37498,79319
+37499,37057
+37500,23764
+37501,12711
+37502,12413
+37503,41660
+37504,76213,48093
+37505,18899
+37506,71744
+37507,23797
+37508,74067,8830,17358
+37509,50430
+37510,31932,78933
+37511,39369
+37512,42781
+37513,81102
+37514,50515
+37515,48502
+37516,55448
+37517,55428
+37518,8004,18106
+37519,57347,77187
+37520,64977,61216
+37521,81674
+37522,25698
+37523,70990
+37524,33790
+37525,80270
+37526,16713
+37527,55107
+37528,68748,15392
+37529,41437,15439
+37530,42269
+37531,47555
+37532,50191
+37533,20703
+37534,78946,36667
+37535,64732
+37536,76662
+37537,64636
+37538,63149
+37539,13961
+37540,6847
+37541,20003
+37542,31584
+37543,72563
+37544,775
+37545,38052,79495
+37546,29157
+37547,35010
+37548,62727
+37549,75115
+37550,40522
+37551,60928
+37552,32733,66476,4217
+37553,4927
+37554,34014,33080
+37555,45330
+37556,15122,52569,5066
+37557,49289
+37558,7478
+37559,75394
+37560,18795
+37561,81766
+37562,12175
+37563,46711
+37564,54943
+37565,5824
+37566,67159
+37567,9266
+37568,28798
+37569,29099
+37570,8723
+37571,54052,17841
+37572,29983,31588
+37573,41305
+37574,78043
+37575,4452
+37576,46713
+37577,50909,70877
+37578,35399
+37579,73186,51846
+37580,55088
+37581,50852,43711
+37582,49101
+37583,27124
+37584,42433
+37585,54117,28352
+37586,71588,23921
+37587,37077
+37588,64571
+37589,51612
+37590,64524
+37591,12390
+37592,15483
+37593,74570
+37594,70517,10632
+37595,72628,32412
+37596,53641,8467
+37597,78386
+37598,5659,46557,64848,66944
+37599,7620
+37600,71719
+37601,6151
+37602,38250
+37603,45868,61272
+37604,74952,62323
+37605,15925,23774
+37606,61678
+37607,54840
+37608,34563
+37609,29365
+37610,80852
+37611,56510,72908
+37612,79642
+37613,59010
+37614,12440
+37615,37076
+37616,41661
+37617,51144
+37618,29515
+37619,80567,74869
+37620,50714
+37621,8485,32571
+37622,49885
+37623,14075
+37624,43799
+37625,67889
+37626,22162
+37627,52911
+37628,35696,72477,9389
+37629,47830
+37630,9346,81596
+37631,43083
+37632,38477
+37633,16968
+37634,29098
+37635,67861,57025
+37636,47906
+37637,8729
+37638,42840
+37639,16767
+37640,60168
+37641,14791
+37642,17110
+37643,65230
+37644,15355
+37645,57868
+37646,49159,40829
+37647,30300
+37648,69204
+37649,78069,33874
+37650,37857
+37651,53490
+37652,54734
+37653,27908
+37654,18593,58017
+37655,63189
+37656,77724
+37657,38915
+37658,77313
+37659,72396
+37660,75412
+37661,27729
+37662,70356
+37663,69873
+37664,78390
+37665,43636
+37666,17534
+37667,71726
+37668,76168
+37669,10800
+37670,45630,54778,73733
+37671,64110
+37672,39385
+37673,77119
+37674,42408
+37675,6358
+37676,24986
+37677,54764
+37678,81423,48382
+37679,15324
+37680,38217
+37681,15869
+37682,16652
+37683,9893
+37684,48863
+37685,1677
+37686,71032
+37687,1458
+37688,11462
+37689,20524
+37690,20200
+37691,29515
+37692,6960
+37693,27975
+37694,3736
+37695,77415
+37696,55105,47764
+37697,17606
+37698,30189,47665,28182
+37699,73272
+37700,77573
+37701,79100
+37702,32321
+37703,70677
+37704,19182,31173,14952,31258
+37705,7998,24709,23552,41425
+37706,81124
+37707,7873,24312
+37708,74509
+37709,67654
+37710,75767
+37711,39576
+37712,28762
+37713,8420
+37714,49339
+37715,45617
+37716,20678
+37717,30048
+37718,40890
+37719,33229
+37720,63272
+37721,28798
+37722,71820
+37723,50282
+37724,36453
+37725,60517
+37726,11583
+37727,63535
+37728,10215
+37729,50224
+37730,38422
+37731,77405
+37732,30319,79788
+37733,73472
+37734,46101
+37735,1379
+37736,1596
+37737,55700,74362
+37738,33184
+37739,31557
+37740,46031
+37741,40903,44648
+37742,22283
+37743,9596
+37744,27944
+37745,76647
+37746,9940
+37747,74195
+37748,58354,41486,1281
+37749,27909
+37750,63258
+37751,54539
+37752,78624
+37753,39095
+37754,33356,70139
+37755,57579
+37756,10606,59366
+37757,39055
+37758,32492
+37759,53414
+37760,76499
+37761,43907
+37762,78550
+37763,60440
+37764,81709
+37765,55790,15154
+37766,22468
+37767,38940
+37768,61715
+37769,30656
+37770,34848
+37771,48209,24686
+37772,78119
+37773,29507
+37774,35115
+37775,65464
+37776,210
+37777,80474,74240
+37778,7077
+37779,44518
+37780,4728
+37781,58022,3099
+37782,70828
+37783,48925
+37784,34781,56717,70275
+37785,36064,60961,33060
+37786,14223
+37787,61972
+37788,48309
+37789,78406
+37790,46223
+37791,595,63373
+37792,22844
+37793,25440
+37794,75829
+37795,61398
+37796,31571
+37797,67191
+37798,51549
+37799,15193
+37800,64669
+37801,69102
+37802,8713
+37803,69289
+37804,14578
+37805,75230
+37806,11854,70821
+37807,70845
+37808,15375,19423
+37809,3083,18340
+37810,61647,40697
+37811,67918
+37812,59706
+37813,33600
+37814,14657
+37815,78479
+37816,72449
+37817,46282
+37818,40846,373
+37819,58880
+37820,79868
+37821,30103
+37822,59174
+37823,12264
+37824,6439
+37825,12268
+37826,68754
+37827,33661
+37828,11877
+37829,29075,71209
+37830,65398,39342
+37831,26803
+37832,7608
+37833,9732
+37834,8834
+37835,13265
+37836,27410
+37837,61687
+37838,60030
+37839,37092
+37840,19047
+37841,59612
+37842,50268,53012
+37843,11328
+37844,9189
+37845,60856
+37846,23830
+37847,27306
+37848,30222
+37849,77393
+37850,62492
+37851,45526
+37852,76259
+37853,69906,58329
+37854,22027
+37855,50173
+37856,18620
+37857,33562
+37858,21435
+37859,15882,32171
+37860,72880
+37861,76470
+37862,8885
+37863,43321
+37864,40456
+37865,37372
+37866,53073
+37867,28348
+37868,12832
+37869,1160
+37870,18055
+37871,60378
+37872,62801
+37873,9170
+37874,57561
+37875,14067
+37876,24283
+37877,66964
+37878,51617
+37879,54585
+37880,24904,54706,11993
+37881,57765
+37882,29160
+37883,18343
+37884,67006
+37885,28610
+37886,4361,8121
+37887,38146
+37888,18673,52877
+37889,35652,8648,49474
+37890,22555
+37891,5057
+37892,25151
+37893,27850,42159
+37894,65419,27883
+37895,10353
+37896,18556
+37897,74659
+37898,77606
+37899,60611
+37900,55337
+37901,67356
+37902,19099
+37903,68569
+37904,76864
+37905,39388
+37906,1581
+37907,47780,52237
+37908,30852,60308
+37909,662
+37910,44757
+37911,14014
+37912,24666
+37913,64174,78365
+37914,45106
+37915,78732
+37916,35846,17512
+37917,16365
+37918,69076,36159
+37919,77101,46137
+37920,30734
+37921,10180,26254
+37922,37299
+37923,7980
+37924,15099
+37925,41294
+37926,81552
+37927,14876
+37928,54135,27064
+37929,35128
+37930,28603
+37931,4502
+37932,59128
+37933,45089,72287
+37934,28165
+37935,26025
+37936,35802
+37937,35929
+37938,2862,711
+37939,9330,32349
+37940,1160
+37941,35167
+37942,70384
+37943,7392
+37944,18678
+37945,57139
+37946,10358
+37947,35808
+37948,44040
+37949,15324
+37950,31296
+37951,68617
+37952,38032,77761
+37953,75403
+37954,33656
+37955,13251
+37956,50219
+37957,51985
+37958,73311
+37959,58530
+37960,68266,68780
+37961,75878
+37962,44376,6597
+37963,72912,23914
+37964,76049,43998,51225
+37965,46742
+37966,81488,50804
+37967,45720
+37968,18556
+37969,33479
+37970,46716
+37971,34024
+37972,4557,43911
+37973,33900,8554
+37974,6768
+37975,61130
+37976,14277,11204
+37977,38555
+37978,67982
+37979,75714
+37980,11743,462
+37981,42973
+37982,2724
+37983,38225
+37984,18853
+37985,23929,39565
+37986,27958
+37987,59071
+37988,6502
+37989,19343
+37990,21843,72417
+37991,75357
+37992,40831
+37993,78913,21036
+37994,69153
+37995,17602
+37996,34427
+37997,44576
+37998,77992
+37999,50623
+38000,79194
+38001,47450,75906
+38002,8461
+38003,33638
+38004,17428
+38005,18165
+38006,23728
+38007,12750
+38008,46977,19067,25091
+38009,19894
+38010,42657
+38011,25937
+38012,57414
+38013,18536,35017
+38014,14138
+38015,38883,24025
+38016,58422
+38017,39672,40982
+38018,9641
+38019,38594
+38020,38006,58019
+38021,18323,81188
+38022,11863
+38023,42135
+38024,22317,78072
+38025,25338
+38026,24344
+38027,26218
+38028,47457
+38029,2742
+38030,42148
+38031,42508
+38032,62021
+38033,42271,63399
+38034,32783
+38035,12985,18336
+38036,23421
+38037,41228
+38038,22557
+38039,77575
+38040,51072
+38041,21330
+38042,31611
+38043,46302
+38044,25220
+38045,51138
+38046,28724,68232
+38047,58974
+38048,79862
+38049,49880
+38050,51827
+38051,29129
+38052,49271
+38053,7076
+38054,69412
+38055,866
+38056,5575
+38057,78556
+38058,49474,64025
+38059,37471,12697
+38060,33691
+38061,77504
+38062,65344
+38063,8074
+38064,23724
+38065,52536
+38066,58530
+38067,41718
+38068,12548
+38069,35484
+38070,10711
+38071,67206
+38072,78071
+38073,48935
+38074,22649
+38075,19541,65942
+38076,11124
+38077,16604
+38078,59676
+38079,36837
+38080,66349
+38081,65887,40617
+38082,69363
+38083,69838
+38084,39410
+38085,67141
+38086,43334
+38087,71734
+38088,32013
+38089,70323
+38090,34319
+38091,22586
+38092,14474
+38093,31171
+38094,73593,9701
+38095,80877
+38096,24945,59327
+38097,41376
+38098,6847,66789
+38099,31002
+38100,22495
+38101,49872
+38102,1806
+38103,40193
+38104,66916
+38105,2905
+38106,77083
+38107,21745,28609
+38108,24090
+38109,34988
+38110,1483
+38111,16332,71945
+38112,64857
+38113,5710,70495
+38114,41759
+38115,597,67813
+38116,9239
+38117,76268
+38118,48736
+38119,40644
+38120,65897
+38121,57938
+38122,30685
+38123,52002,30081
+38124,76201
+38125,11479
+38126,74329
+38127,31955
+38128,6077,24410,43790
+38129,72020
+38130,69737
+38131,21273
+38132,55467
+38133,21857
+38134,13156
+38135,12581
+38136,18176
+38137,8225
+38138,16898
+38139,57961
+38140,41432
+38141,1611
+38142,1129,19323
+38143,45574
+38144,57813,32253
+38145,44038
+38146,75881
+38147,14103,76809
+38148,69345
+38149,74668
+38150,66276
+38151,16716,28012
+38152,45453
+38153,80690
+38154,30347,360
+38155,58001
+38156,8637
+38157,27812,28859
+38158,24229
+38159,29414
+38160,4004
+38161,39722
+38162,40948
+38163,1163
+38164,7371
+38165,10845
+38166,21365
+38167,75104
+38168,31561
+38169,53761,46326
+38170,33612
+38171,44274
+38172,11430
+38173,81030,7989
+38174,32410,5251
+38175,4230
+38176,3988,26014,30892
+38177,39385
+38178,8530,2328
+38179,59780
+38180,72256
+38181,4659
+38182,81930
+38183,72504
+38184,5690
+38185,39704
+38186,15502
+38187,72281
+38188,30925
+38189,29633,2907
+38190,62562
+38191,34070,31190,47594
+38192,26740,24943,56813,1237
+38193,8314,43599,27677
+38194,8266
+38195,11870
+38196,54786
+38197,60384
+38198,62988
+38199,45187
+38200,70439
+38201,40569
+38202,40705
+38203,77592
+38204,50771,10712
+38205,8396
+38206,61578
+38207,61066
+38208,45389,7618
+38209,27264
+38210,45105,25364
+38211,46015
+38212,72451
+38213,12497
+38214,59779
+38215,2924,40063
+38216,27127
+38217,59245
+38218,4659
+38219,32755
+38220,70604
+38221,34838
+38222,66566,59190
+38223,80891
+38224,38108
+38225,22912
+38226,29725,24104
+38227,43798
+38228,51187
+38229,27133
+38230,12693
+38231,14878
+38232,6746,58338
+38233,60649
+38234,16722
+38235,10926
+38236,8419
+38237,67191
+38238,55440,15541
+38239,63735,77295
+38240,23359
+38241,26853
+38242,82045
+38243,49646
+38244,27336
+38245,56798
+38246,5965,33582
+38247,36051
+38248,58749
+38249,19265
+38250,46382,47496
+38251,17325
+38252,47587
+38253,2640
+38254,15365
+38255,14014,33748
+38256,32266,3673
+38257,12988
+38258,76049
+38259,79047
+38260,1423
+38261,48856
+38262,16761
+38263,19830
+38264,37438
+38265,26424,65877,26852
+38266,79832
+38267,14515
+38268,60403,19416
+38269,73496
+38270,47681,68451
+38271,20293
+38272,15853
+38273,31878
+38274,18255,36574,81150,37167
+38275,72825
+38276,68636
+38277,57414
+38278,67361
+38279,54895
+38280,34634
+38281,52352
+38282,23946
+38283,68502
+38284,27954
+38285,80645
+38286,45685
+38287,45699
+38288,42679
+38289,24855
+38290,64366
+38291,16373
+38292,65344,55169
+38293,63737
+38294,58227
+38295,69945,11281
+38296,54789
+38297,50677
+38298,42845
+38299,9883
+38300,33048,17833
+38301,43866,28895
+38302,16685
+38303,45519
+38304,14440
+38305,1133,50410
+38306,45148
+38307,18636
+38308,43250
+38309,50483
+38310,65012,46428
+38311,13023
+38312,42125
+38313,81260
+38314,10959
+38315,23901,5169
+38316,27001
+38317,44564
+38318,30863
+38319,16936
+38320,19730
+38321,1809
+38322,3145
+38323,54619
+38324,36883
+38325,31154
+38326,50810
+38327,64848,79030
+38328,32886
+38329,31926
+38330,48085
+38331,37549
+38332,16867
+38333,46804
+38334,71322
+38335,48292
+38336,57041
+38337,38108
+38338,9273
+38339,31231
+38340,39799
+38341,56203,53991
+38342,49928,38453
+38343,44712
+38344,42627
+38345,60102
+38346,26344
+38347,22144
+38348,11742,13463
+38349,27874
+38350,73404
+38351,37971
+38352,12420,57269
+38353,26492
+38354,63813
+38355,18648
+38356,334
+38357,55823
+38358,18280
+38359,67756,38685
+38360,8515
+38361,28640
+38362,63717
+38363,27986
+38364,73178
+38365,39106
+38366,78453
+38367,20111,14793
+38368,74772
+38369,49187
+38370,62360
+38371,30671,80288
+38372,79441,7723
+38373,41329
+38374,64143
+38375,28379
+38376,46907
+38377,74277
+38378,46220
+38379,9658,53242
+38380,47830
+38381,65285,35108
+38382,7011,36560
+38383,26328
+38384,45498
+38385,57366,20037
+38386,39757
+38387,71780,13828,31508
+38388,71060
+38389,67472,58628
+38390,22080
+38391,10247
+38392,78225,79110
+38393,157
+38394,24601
+38395,33265
+38396,9129
+38397,75115,41100
+38398,67667
+38399,8547
+38400,53129
+38401,51156
+38402,60189,74319
+38403,60298
+38404,58642
+38405,334,53659
+38406,74492
+38407,51243
+38408,40370
+38409,10544
+38410,73255
+38411,80100
+38412,41261
+38413,81181
+38414,43929
+38415,32398
+38416,56581
+38417,23399
+38418,70920
+38419,17358
+38420,42305
+38421,18010
+38422,28146
+38423,66294
+38424,20447
+38425,16573
+38426,18285
+38427,34586
+38428,44737
+38429,10106
+38430,80848,57985
+38431,30735
+38432,62736
+38433,44966
+38434,14523
+38435,30958
+38436,48604
+38437,29290,50282
+38438,82133,26992
+38439,71491,8010
+38440,16251
+38441,38822
+38442,78839,3906,44653
+38443,77708
+38444,11425
+38445,35442
+38446,81477
+38447,31391,5973
+38448,37520
+38449,38731
+38450,3118
+38451,54112,37797
+38452,67768
+38453,38912
+38454,47908
+38455,75245
+38456,52531
+38457,22663,19573
+38458,12165
+38459,17630
+38460,55313
+38461,28539
+38462,53665
+38463,31542,23699
+38464,67338
+38465,53864
+38466,27346,32077
+38467,65230
+38468,43111,79387
+38469,51203,70118,6203
+38470,21937
+38471,646
+38472,58942
+38473,1771
+38474,4158
+38475,5749
+38476,77017
+38477,68631
+38478,76585
+38479,67468,66304
+38480,16060
+38481,74450
+38482,39564,15746
+38483,33175,64524
+38484,35987
+38485,20350
+38486,4270
+38487,56867
+38488,16865
+38489,6668
+38490,56745
+38491,71844
+38492,46868,35658
+38493,39947
+38494,54187
+38495,25444
+38496,28707
+38497,65218
+38498,29035
+38499,62851
+38500,77050,27565
+38501,64362
+38502,29768
+38503,71419
+38504,1073
+38505,68403,2065
+38506,20596
+38507,71074
+38508,28391,48461
+38509,19003
+38510,4580
+38511,6947,24872,74107
+38512,29790
+38513,57698
+38514,39396
+38515,45828
+38516,43749
+38517,28389
+38518,74616
+38519,22867
+38520,40667
+38521,44036
+38522,43328
+38523,76107
+38524,58474
+38525,7827
+38526,4786,44712,7829
+38527,66964
+38528,46973
+38529,77356,49966
+38530,73979
+38531,24355
+38532,11427
+38533,43177
+38534,15771
+38535,46389,33809,80510
+38536,75582
+38537,33699
+38538,18965
+38539,78598
+38540,2094
+38541,50862,74974
+38542,21904,12240
+38543,17075
+38544,77100
+38545,77759
+38546,9415
+38547,62699
+38548,81075,58208
+38549,14644
+38550,12987
+38551,32224
+38552,18991
+38553,539
+38554,25779
+38555,41385
+38556,60263,19108
+38557,64848,16080
+38558,51854,33425,68905
+38559,57701
+38560,51122
+38561,33194
+38562,61553,18762
+38563,72213
+38564,20526
+38565,35403
+38566,49,75090
+38567,19286
+38568,61094
+38569,56709
+38570,57860,9895,35525
+38571,32953
+38572,23773,27588
+38573,79560
+38574,70938
+38575,45844
+38576,72491
+38577,44797
+38578,56958
+38579,71659
+38580,14104
+38581,13531
+38582,51050
+38583,76759
+38584,67616
+38585,595,32246
+38586,76942
+38587,43217
+38588,31882
+38589,61609
+38590,80402
+38591,76272
+38592,7986
+38593,34441
+38594,15496,56623
+38595,76423
+38596,6385
+38597,59080
+38598,59323,20931,50720
+38599,33342
+38600,14888
+38601,7805
+38602,24163,32465
+38603,26963,15085
+38604,35276
+38605,75011
+38606,34148
+38607,68049
+38608,8005,41122
+38609,54975
+38610,13944
+38611,34137,72415
+38612,21000
+38613,11573
+38614,2026
+38615,61296
+38616,43332
+38617,7385
+38618,37250
+38619,67771
+38620,68541,28981
+38621,7686
+38622,15283,78967
+38623,59765,25249
+38624,2875
+38625,46854
+38626,69066
+38627,33938,76318
+38628,79251
+38629,3473
+38630,40713
+38631,52452
+38632,77593
+38633,55095
+38634,33805,40983
+38635,8656
+38636,55010
+38637,37879
+38638,75533
+38639,40587
+38640,74956
+38641,39058
+38642,32868
+38643,81374,48213
+38644,64891
+38645,14336
+38646,62572
+38647,53971
+38648,31646
+38649,7690
+38650,63855,31251
+38651,24008,8101
+38652,78097
+38653,27635
+38654,44562
+38655,16563,80449
+38656,57924
+38657,60172
+38658,23279
+38659,70041
+38660,9865
+38661,77500
+38662,5351
+38663,3407
+38664,66079
+38665,36179
+38666,29414
+38667,9686
+38668,78893
+38669,7251
+38670,73843
+38671,13098,69863,53805
+38672,5420
+38673,78202
+38674,71351
+38675,68995
+38676,75913
+38677,28965
+38678,71952
+38679,26428
+38680,7705
+38681,72459
+38682,73379
+38683,47553
+38684,73050
+38685,71244
+38686,24464
+38687,50394
+38688,3035,74101
+38689,42475
+38690,65328,79913
+38691,37302
+38692,76835,50166
+38693,38683
+38694,41567
+38695,11560
+38696,49970
+38697,7802
+38698,33729
+38699,8000
+38700,21856
+38701,15171
+38702,53282,39808
+38703,28710
+38704,46373
+38705,78034
+38706,50990,61924
+38707,77456
+38708,16021
+38709,48960,3171,42527
+38710,35195,774,11142
+38711,44949,10552
+38712,65912,53955
+38713,77524
+38714,17464
+38715,36749
+38716,10544
+38717,45307
+38718,40544,5710,2058
+38719,66007
+38720,64536,58982,34058
+38721,36008
+38722,68587
+38723,12807
+38724,62700
+38725,32860
+38726,43380
+38727,46795,43246
+38728,3646
+38729,71332
+38730,51998
+38731,21715
+38732,43434
+38733,76336
+38734,25544
+38735,58271
+38736,42283
+38737,51602,35833,21562
+38738,28519
+38739,12568,76196
+38740,61784,59526
+38741,53500
+38742,47048
+38743,48283
+38744,76311
+38745,7053
+38746,63398
+38747,25414
+38748,11724
+38749,24269
+38750,58731,57125
+38751,1551,68691
+38752,7950
+38753,11170
+38754,13161
+38755,21430
+38756,76618
+38757,17232
+38758,25874
+38759,40112
+38760,33953
+38761,20109
+38762,10978,75023,2632
+38763,16021
+38764,47167
+38765,6010
+38766,22771
+38767,70050,47922
+38768,33229
+38769,53633
+38770,34435
+38771,39616
+38772,79590
+38773,44963
+38774,17198
+38775,57001
+38776,73748
+38777,76471
+38778,76583
+38779,66283
+38780,13154,50469
+38781,14636
+38782,34661
+38783,6537
+38784,56398
+38785,67242
+38786,66643
+38787,64350
+38788,36376
+38789,80924
+38790,40529
+38791,40753
+38792,1556
+38793,28209,12896,62053
+38794,23007
+38795,10580,70872
+38796,25235
+38797,56732
+38798,46829
+38799,55362
+38800,7017
+38801,54030
+38802,64598
+38803,32975
+38804,23160
+38805,37711
+38806,69955
+38807,50945
+38808,17192
+38809,58107
+38810,78217
+38811,14696
+38812,17726
+38813,11989
+38814,37470,46518
+38815,39007
+38816,68650
+38817,50342
+38818,62700
+38819,69599
+38820,69772
+38821,56517
+38822,74023
+38823,58846,17843
+38824,61995,23680
+38825,21229,12995
+38826,49289
+38827,30617,73318
+38828,26862
+38829,70918
+38830,24457,5319
+38831,36042
+38832,4879
+38833,31551
+38834,10896
+38835,65943
+38836,5001
+38837,70021
+38838,61111
+38839,47369
+38840,51517
+38841,9624
+38842,6191
+38843,40697
+38844,52909
+38845,51777
+38846,59614
+38847,46729
+38848,65497
+38849,5072
+38850,54753
+38851,2191
+38852,52763
+38853,82065
+38854,48412
+38855,29536,34108
+38856,70300
+38857,2260
+38858,64582
+38859,21376
+38860,70661,25556
+38861,12909
+38862,41509
+38863,70534,70491
+38864,7195
+38865,8690
+38866,14776,64623,21792
+38867,8252,52899
+38868,21888
+38869,62442
+38870,24675
+38871,20666,14432
+38872,4293
+38873,3384
+38874,33391
+38875,32896
+38876,45767
+38877,70361
+38878,57998
+38879,13047
+38880,4610
+38881,1407
+38882,7154
+38883,12857,10253
+38884,45161,1541
+38885,16968,27432
+38886,78785
+38887,32774
+38888,60034
+38889,75982
+38890,58456
+38891,1177
+38892,38293
+38893,64525
+38894,441,62284
+38895,13501
+38896,28784
+38897,11689
+38898,33335
+38899,73306
+38900,57867
+38901,13082
+38902,71182
+38903,79185
+38904,19285
+38905,35930,59052,36627,72844
+38906,31868,42479
+38907,41294
+38908,37943
+38909,16366
+38910,2641
+38911,17883
+38912,40822
+38913,71864
+38914,13553
+38915,27924
+38916,5917,36816
+38917,62295
+38918,57906
+38919,15083
+38920,19546,81707
+38921,62724,59252
+38922,61875
+38923,11114
+38924,67788
+38925,28647
+38926,20783
+38927,24419
+38928,50959
+38929,28797,52211
+38930,77890,46426
+38931,22028,15007,20846
+38932,66236
+38933,50792
+38934,49437,39704
+38935,27450
+38936,6883
+38937,16366
+38938,9738
+38939,80123
+38940,50436
+38941,42148
+38942,33123,7247
+38943,81460
+38944,71721
+38945,34532
+38946,32146
+38947,18973
+38948,26086
+38949,61572
+38950,46075,27236
+38951,14309
+38952,69495
+38953,64968
+38954,37189
+38955,71889
+38956,24457
+38957,17355
+38958,73673
+38959,76358
+38960,30277,56531
+38961,681
+38962,45059
+38963,60162
+38964,26575,39870
+38965,81693
+38966,31535
+38967,45765,65560
+38968,15405
+38969,58250
+38970,33882
+38971,82038
+38972,31275
+38973,48003
+38974,15262
+38975,54905,34617
+38976,63340,63937
+38977,29103,65436
+38978,6320,10478,33405
+38979,8755
+38980,49734,75124
+38981,19426
+38982,26323
+38983,925,32155
+38984,47166
+38985,26995
+38986,38729
+38987,10342,52604
+38988,36393,73821
+38989,68510
+38990,34741
+38991,48475
+38992,58545
+38993,45049
+38994,59549
+38995,69094
+38996,9235
+38997,66872
+38998,42620,33651
+38999,28664
+39000,71244
+39001,14288
+39002,43811,39388
+39003,9327
+39004,42975
+39005,61105
+39006,65732
+39007,23540
+39008,36952
+39009,51248,2568
+39010,63319
+39011,40634
+39012,29041
+39013,74138,76320
+39014,39537
+39015,64971
+39016,16992
+39017,50169
+39018,58003
+39019,70944
+39020,42286
+39021,30925
+39022,34517,79245
+39023,8336
+39024,38506
+39025,41582
+39026,12732
+39027,10768
+39028,78911
+39029,66525
+39030,39865,48226
+39031,24029
+39032,2740
+39033,37297
+39034,52267,73305
+39035,40601
+39036,47777
+39037,67382
+39038,49766
+39039,64717
+39040,25489
+39041,55462
+39042,50969
+39043,10294
+39044,55571
+39045,49289
+39046,428,68089
+39047,44331
+39048,35321
+39049,47746,68522
+39050,68536
+39051,14731
+39052,76416
+39053,75623
+39054,50666
+39055,74619
+39056,67099
+39057,20614,22118
+39058,44962
+39059,49456,11674
+39060,70641
+39061,45841
+39062,13140
+39063,58746
+39064,53706
+39065,78478
+39066,18446
+39067,564
+39068,26541
+39069,8920
+39070,69968
+39071,67118
+39072,80279
+39073,79193,73234
+39074,77514
+39075,44157
+39076,5512
+39077,20378
+39078,14891
+39079,21108
+39080,81297
+39081,60364
+39082,66908
+39083,3678
+39084,70316,28545
+39085,63035,18831
+39086,40801
+39087,16249
+39088,81907
+39089,68425
+39090,19969
+39091,68398
+39092,11514
+39093,70905
+39094,16886
+39095,73231
+39096,44518
+39097,23053
+39098,61230
+39099,27015
+39100,20074
+39101,69299
+39102,37498
+39103,16212
+39104,30567
+39105,1757
+39106,49962
+39107,34255,20019
+39108,76445,26230
+39109,6921
+39110,57001
+39111,73707,69848
+39112,1859
+39113,44383,39755
+39114,56715,20297
+39115,40607,66257
+39116,71234
+39117,70303,41298
+39118,67907
+39119,40513
+39120,43505
+39121,45304
+39122,42751
+39123,46977
+39124,43448
+39125,70279,79680
+39126,36807
+39127,39759
+39128,1583
+39129,36061,38441
+39130,1809
+39131,45378
+39132,40479,68960
+39133,74862
+39134,74569
+39135,65921
+39136,63293
+39137,9668
+39138,6768
+39139,71607
+39140,25847
+39141,36757
+39142,78386,43098
+39143,1660
+39144,44078
+39145,41531
+39146,12353
+39147,12631
+39148,35307,64856,39506
+39149,49956
+39150,71132
+39151,28847
+39152,32968,80421,58771
+39153,21830
+39154,39019
+39155,16155
+39156,37657
+39157,19304
+39158,54219
+39159,56329
+39160,81309
+39161,69100
+39162,29039
+39163,8676,71266
+39164,36239
+39165,19448,42878
+39166,31206,68147
+39167,81626,40900
+39168,10897
+39169,73243
+39170,20540
+39171,16320
+39172,25832
+39173,45740
+39174,69778
+39175,44723
+39176,81904
+39177,63197,58063
+39178,65344
+39179,34703
+39180,31745
+39181,10745
+39182,11936
+39183,4803
+39184,43973
+39185,15424,16306
+39186,58329,23524
+39187,14374
+39188,70650
+39189,32311
+39190,68356,507,50022
+39191,58247
+39192,276
+39193,68905
+39194,62132
+39195,43513
+39196,22036
+39197,5171,54813,69909
+39198,8553
+39199,32845
+39200,61643
+39201,1267
+39202,3501,48864
+39203,9319,6271
+39204,41753
+39205,81700
+39206,56289,63576
+39207,42085
+39208,18249
+39209,73884
+39210,75537
+39211,9826
+39212,61841,64280
+39213,8887
+39214,54734
+39215,75296
+39216,32422
+39217,14024
+39218,29688
+39219,16219
+39220,77784
+39221,74900
+39222,82052
+39223,11877
+39224,43582
+39225,63748,35502
+39226,60552
+39227,49036
+39228,55144
+39229,79289
+39230,15064
+39231,62404
+39232,2471
+39233,68269
+39234,42058,48503
+39235,6142
+39236,68350
+39237,56753
+39238,35437
+39239,57540,18225
+39240,30290,54056
+39241,1193
+39242,81015
+39243,10645
+39244,19761
+39245,36492
+39246,71022
+39247,15840
+39248,11548
+39249,60327
+39250,60030
+39251,56252
+39252,79213
+39253,42905,53388,81518
+39254,2649,75486
+39255,55665
+39256,71990
+39257,35649
+39258,75579
+39259,52643
+39260,80588
+39261,44556,6862
+39262,6931
+39263,22248
+39264,10957
+39265,17244
+39266,39965,35879
+39267,73072
+39268,29198
+39269,65832
+39270,81256
+39271,43581
+39272,7602
+39273,66960
+39274,67177
+39275,50163
+39276,32168
+39277,2976
+39278,46616,69041
+39279,73317
+39280,76335
+39281,22503
+39282,11611
+39283,44918,55530
+39284,61070
+39285,11587
+39286,44190
+39287,8112
+39288,17630
+39289,49476
+39290,50179
+39291,23728,65223
+39292,76360
+39293,63718
+39294,79797
+39295,71394
+39296,46610,52096
+39297,15874
+39298,44584
+39299,51199,3151
+39300,42704
+39301,67513,49540
+39302,33914
+39303,44434,39909
+39304,40491
+39305,31216
+39306,32659
+39307,28699,6611,40862
+39308,58613
+39309,50166
+39310,76210
+39311,35536,31455
+39312,68652
+39313,63153,20475
+39314,10706
+39315,26665
+39316,6847
+39317,67609
+39318,51064
+39319,75583,5429
+39320,46184,29166
+39321,57869
+39322,42311
+39323,51187
+39324,44516,75172
+39325,39123,25099
+39326,72395
+39327,49072
+39328,18774,53064
+39329,61988,8758
+39330,67977
+39331,35563
+39332,10322
+39333,49852
+39334,17934
+39335,26342,24103
+39336,45948
+39337,31238
+39338,63342
+39339,16296
+39340,24679,3859
+39341,7254
+39342,34638
+39343,44027
+39344,43776
+39345,9011,20839
+39346,79365
+39347,21147
+39348,67662
+39349,46518
+39350,38144
+39351,51176
+39352,60112
+39353,3835,47836
+39354,43949
+39355,44434
+39356,19032
+39357,18795
+39358,36556
+39359,69565,49905
+39360,26362
+39361,79762
+39362,40883
+39363,58402
+39364,46897
+39365,35918
+39366,67915
+39367,33308
+39368,30649,49300
+39369,42944
+39370,67116
+39371,71555
+39372,32248
+39373,81268
+39374,80460
+39375,11629
+39376,58356
+39377,21446,24775
+39378,26203
+39379,2886,63823
+39380,80391
+39381,21270
+39382,42804
+39383,79665
+39384,57319,42739
+39385,53394
+39386,65479,19763
+39387,34426,65751
+39388,47997
+39389,77594
+39390,33801
+39391,42801
+39392,76929
+39393,12051,58567
+39394,64587
+39395,64095
+39396,73394
+39397,49336,34002
+39398,17118
+39399,55618
+39400,63474
+39401,26204
+39402,44299
+39403,69103
+39404,21229
+39405,2325
+39406,1863
+39407,15576
+39408,57737,71006
+39409,10734
+39410,58685,56839
+39411,11628
+39412,6065
+39413,58389
+39414,32909,30708,15283,10013
+39415,18551
+39416,3371,24027
+39417,66870
+39418,20257
+39419,53852
+39420,7856
+39421,11296
+39422,56515
+39423,41251
+39424,39812
+39425,56555
+39426,20917
+39427,72757
+39428,26514
+39429,18655,52099
+39430,14603
+39431,64658
+39432,71494
+39433,39409,59416
+39434,2195
+39435,39738
+39436,49604,14691
+39437,40610
+39438,80681
+39439,6164
+39440,67145,34432
+39441,14539
+39442,42564
+39443,62320,20552
+39444,61934
+39445,678
+39446,64964,9359
+39447,68263,64892
+39448,1116
+39449,3375
+39450,5968
+39451,47337
+39452,43749
+39453,15669,10095,54004
+39454,42610
+39455,48330
+39456,41783,81134
+39457,30349
+39458,25777
+39459,56103
+39460,60470
+39461,16234
+39462,6471,3448
+39463,48923
+39464,79737,5343
+39465,54249
+39466,81260
+39467,32524,14792,39151
+39468,21075
+39469,54776
+39470,40889
+39471,67969
+39472,3561
+39473,23535,32504
+39474,74102
+39475,82028
+39476,49856
+39477,73855
+39478,30371
+39479,34371,68065
+39480,47768
+39481,58086
+39482,28009,17663
+39483,76934
+39484,38029
+39485,68463
+39486,47596
+39487,32256
+39488,72666
+39489,14382
+39490,78907,45406
+39491,57474,63451,73386,47519
+39492,39985
+39493,7119
+39494,33874
+39495,77823,47995
+39496,46028,47842
+39497,14505
+39498,73450
+39499,21315
+39500,49804
+39501,68569,70928
+39502,74362
+39503,2750
+39504,13802
+39505,34159
+39506,5564,3599,27706,45633
+39507,26309
+39508,60645
+39509,28234
+39510,28664
+39511,63524
+39512,518,25881,58263
+39513,5789
+39514,31323
+39515,77150
+39516,57731
+39517,24533
+39518,62926,68397
+39519,66310
+39520,13742
+39521,61537,28470
+39522,37114,69460,20621
+39523,23242
+39524,53452
+39525,73681
+39526,45114
+39527,18306
+39528,78726
+39529,54182,38320
+39530,35677
+39531,24958,10823
+39532,51769
+39533,81978
+39534,23323
+39535,75693
+39536,33934
+39537,16478
+39538,53397
+39539,80586
+39540,14717
+39541,50497
+39542,78755
+39543,62019
+39544,48829
+39545,20051
+39546,49037
+39547,21969
+39548,72365,67674
+39549,69746,42177,72268
+39550,3567,13086
+39551,67584
+39552,46333
+39553,23083
+39554,79339
+39555,16925
+39556,48212
+39557,42434
+39558,33882
+39559,74162
+39560,41173
+39561,58019
+39562,24088,18512
+39563,51573
+39564,37557
+39565,1583
+39566,8362
+39567,5667
+39568,74437,26580
+39569,6180
+39570,15238
+39571,37509
+39572,72036
+39573,43315
+39574,25069
+39575,81385
+39576,40306
+39577,67913
+39578,51006
+39579,76111
+39580,27060
+39581,30118
+39582,56962
+39583,76552
+39584,11878
+39585,8535
+39586,71716
+39587,81137
+39588,60456,18465
+39589,81287
+39590,39155,66146
+39591,77197
+39592,8678
+39593,44561
+39594,41850
+39595,46550
+39596,969
+39597,31739
+39598,3033
+39599,13107
+39600,64903
+39601,262
+39602,77868
+39603,19270,14637,23572
+39604,46076
+39605,10151,70052
+39606,38852
+39607,81261,6938
+39608,48778,22295
+39609,9204
+39610,17536,34704
+39611,71883
+39612,71952
+39613,18777
+39614,10087
+39615,59781
+39616,9194
+39617,314
+39618,36556
+39619,55911
+39620,79332,65511
+39621,44846
+39622,11438
+39623,71283,75930
+39624,12159
+39625,2566
+39626,17813
+39627,66154
+39628,75116
+39629,44059
+39630,2096
+39631,63411,19392
+39632,70190
+39633,6793
+39634,33049
+39635,32994
+39636,68629
+39637,4724
+39638,23973
+39639,68659
+39640,18934
+39641,54401
+39642,2046
+39643,49222
+39644,50012,3055
+39645,61471
+39646,3860
+39647,79362
+39648,32963,18563
+39649,76211
+39650,48529
+39651,68706
+39652,76538
+39653,34177,35252,41639,10257
+39654,60810,10585
+39655,6484
+39656,58721
+39657,2378
+39658,50157
+39659,23334
+39660,50720
+39661,44062
+39662,68706
+39663,5206
+39664,51376,77564,72071
+39665,31769
+39666,1507
+39667,48585,44593
+39668,82187,11806
+39669,44473
+39670,62510
+39671,14781
+39672,41247
+39673,52958
+39674,60981
+39675,60334
+39676,33839
+39677,34224,14171
+39678,14817,13398
+39679,22900,41777
+39680,57157
+39681,42731
+39682,4474
+39683,24693
+39684,54033
+39685,29515
+39686,61592,1094
+39687,39615
+39688,33612
+39689,53229
+39690,3755
+39691,14632
+39692,55828
+39693,71890
+39694,43744
+39695,69968
+39696,6260
+39697,46461
+39698,75620
+39699,27461,52450
+39700,54563
+39701,38902
+39702,26554
+39703,34415,38231
+39704,66130
+39705,52472
+39706,52230,63591
+39707,11744,34615
+39708,35951
+39709,834
+39710,24727,70128
+39711,47303
+39712,24238
+39713,58755
+39714,21946
+39715,27450
+39716,36731
+39717,45092
+39718,77078,5881
+39719,55354,56323
+39720,12568
+39721,67923,19894
+39722,7173
+39723,1541
+39724,67360
+39725,16002
+39726,52099
+39727,34687
+39728,57509
+39729,34629
+39730,41011
+39731,5208,7763
+39732,76367
+39733,65136
+39734,60676
+39735,49018
+39736,56842
+39737,21838
+39738,68085
+39739,68797
+39740,41083,4541,8931
+39741,3381,15925
+39742,20502,9102
+39743,1820
+39744,66680,17672
+39745,15471
+39746,44421,37694
+39747,50604
+39748,20315
+39749,72358
+39750,62248,37052
+39751,50175
+39752,27343,46750
+39753,49037
+39754,56320
+39755,63468
+39756,73118
+39757,43022
+39758,30371
+39759,1241
+39760,12478
+39761,47418
+39762,35053
+39763,54660
+39764,63251
+39765,78422
+39766,55830
+39767,54159
+39768,61289
+39769,78724
+39770,74889
+39771,41979,23854
+39772,49717
+39773,81629
+39774,10300,18400
+39775,10111
+39776,38369
+39777,39233
+39778,75147,55466
+39779,45329
+39780,47593,38063
+39781,23873
+39782,70160
+39783,63066
+39784,9204
+39785,2109
+39786,73084
+39787,3279,13192
+39788,29094
+39789,13281
+39790,56860
+39791,45857
+39792,70756
+39793,56856
+39794,6041
+39795,30581,72366
+39796,6494
+39797,34338
+39798,47013
+39799,80146
+39800,66578
+39801,2779,15277
+39802,8625,58610
+39803,11029
+39804,43258
+39805,80236
+39806,44676
+39807,37578,26991
+39808,57432,65303,40346
+39809,73154
+39810,74619
+39811,51819
+39812,10352,62165
+39813,61785
+39814,43001
+39815,7980
+39816,58537
+39817,34764
+39818,69909,74835
+39819,68893
+39820,81084,45526
+39821,49762
+39822,65907
+39823,70482
+39824,19481
+39825,55681
+39826,74582
+39827,70585
+39828,23073
+39829,32491
+39830,23984
+39831,31215
+39832,14099,31464
+39833,77593
+39834,66807
+39835,54254
+39836,48139
+39837,75455
+39838,5881,67956
+39839,31374,59709,64237
+39840,41949
+39841,68376
+39842,24438,28538
+39843,67525
+39844,72787
+39845,64407
+39846,17292
+39847,49703
+39848,58487
+39849,44975
+39850,48544
+39851,65148
+39852,13234
+39853,1912
+39854,68357
+39855,42420,58461
+39856,3416
+39857,18760
+39858,30899
+39859,10027
+39860,14304,5545
+39861,8528
+39862,31412
+39863,21248
+39864,63558,74640
+39865,78297
+39866,78984
+39867,4382
+39868,81987
+39869,17692
+39870,74739
+39871,28350
+39872,12176
+39873,42115
+39874,72118
+39875,56626
+39876,60791,12508
+39877,43468
+39878,5314
+39879,20358,80416
+39880,74762
+39881,58497
+39882,23973,16898
+39883,80738
+39884,67084
+39885,23841,53258
+39886,77192
+39887,55222
+39888,14328
+39889,27301
+39890,49143
+39891,16056
+39892,10082
+39893,74004
+39894,52949
+39895,78360
+39896,19023,38607
+39897,66479
+39898,59565
+39899,38029,41591,56696
+39900,74109
+39901,3607
+39902,64835
+39903,68795
+39904,64782,25907
+39905,37103
+39906,54482
+39907,36269,12554,61974
+39908,39025
+39909,72390,14948
+39910,5674
+39911,65374
+39912,38112,38972
+39913,55017
+39914,39819,21118,44398,16157
+39915,3678
+39916,66290
+39917,75118
+39918,71330
+39919,8976,4823
+39920,20691
+39921,70213
+39922,3118
+39923,13475
+39924,45022
+39925,53536
+39926,48103
+39927,67983
+39928,20525
+39929,64336
+39930,23898
+39931,49101
+39932,59553
+39933,68369,49603
+39934,61834
+39935,9645,18518,40034
+39936,55448
+39937,31321,73178
+39938,21305
+39939,21093
+39940,59920
+39941,78139,58755
+39942,25397
+39943,66236
+39944,39314
+39945,42944
+39946,43490
+39947,8216
+39948,52333
+39949,34280
+39950,22150
+39951,33849
+39952,40578
+39953,56213
+39954,32507,48099
+39955,71137
+39956,55342
+39957,34817
+39958,50003,6738
+39959,68078
+39960,43927,1247
+39961,26346
+39962,3627
+39963,31599
+39964,5414
+39965,10542
+39966,60200,9327
+39967,43324
+39968,48526
+39969,69297,72513
+39970,19295
+39971,34621
+39972,36729
+39973,76348
+39974,53148,49481
+39975,77262
+39976,46005,26470
+39977,52349
+39978,54689
+39979,66055
+39980,72918
+39981,70936
+39982,48355
+39983,80455
+39984,36523
+39985,10015
+39986,6164
+39987,7907
+39988,33765,81648
+39989,15272
+39990,78898,74690
+39991,5746
+39992,1809
+39993,78676
+39994,7458
+39995,53219,42909
+39996,43278
+39997,18557
+39998,81160
+39999,57658
+40000,22227
+40001,54773
+40002,80690
+40003,4797,63630,79332
+40004,59597
+40005,65058
+40006,62540,44511
+40007,67643
+40008,42204
+40009,47164
+40010,77583
+40011,24855
+40012,64077,11257
+40013,19573,63097,8596
+40014,59404
+40015,12816
+40016,47748
+40017,70469
+40018,575
+40019,4801
+40020,39485
+40021,23004
+40022,8788,10102
+40023,42861
+40024,18077,51227
+40025,20637
+40026,31300,29800
+40027,50386,34468
+40028,79481
+40029,54875,72634
+40030,6964
+40031,25038
+40032,32526
+40033,22065
+40034,51163
+40035,53516
+40036,59441,28325
+40037,46773
+40038,67470
+40039,9281
+40040,67734
+40041,875
+40042,8455
+40043,6916
+40044,82100
+40045,25319
+40046,51580
+40047,77210
+40048,64624
+40049,5314
+40050,75779
+40051,75400
+40052,19703
+40053,5278,43704
+40054,68752
+40055,57160
+40056,992
+40057,51575
+40058,8858
+40059,23275,20150
+40060,48945
+40061,17239
+40062,74022
+40063,3221
+40064,65749
+40065,64564
+40066,30168
+40067,46129,70696
+40068,62324
+40069,35865
+40070,13566
+40071,77154
+40072,35741
+40073,20871
+40074,29293
+40075,49776,40724
+40076,48651
+40077,26093
+40078,79100,27363
+40079,33009
+40080,43134
+40081,14698
+40082,34455
+40083,33507
+40084,60511
+40085,24285
+40086,34020
+40087,12708
+40088,82060,56222
+40089,16520
+40090,14056
+40091,39544
+40092,53832
+40093,12562
+40094,29592
+40095,6225
+40096,18080
+40097,3754
+40098,39103
+40099,42849
+40100,74749
+40101,16461
+40102,13189,76232
+40103,6010
+40104,69551
+40105,65093
+40106,3668
+40107,76354
+40108,70992,49189
+40109,16253,16495
+40110,47054
+40111,29405
+40112,72907
+40113,23350,6549
+40114,80209,1213
+40115,77746
+40116,73587,61307
+40117,78235
+40118,10896
+40119,9886
+40120,41786
+40121,68392
+40122,32689
+40123,67405
+40124,1386
+40125,47792,27018
+40126,16263
+40127,78195
+40128,1608
+40129,9253
+40130,27520
+40131,44777
+40132,36050
+40133,11022
+40134,44981
+40135,9102,25732
+40136,59209
+40137,36963,79082
+40138,74725
+40139,47338
+40140,19864
+40141,13326
+40142,27410
+40143,44706,47448,49957
+40144,23724,10859
+40145,46206
+40146,78100
+40147,68152
+40148,70801
+40149,19791
+40150,46569
+40151,66346
+40152,9879,78346
+40153,12360
+40154,76934
+40155,2441
+40156,22792
+40157,70558
+40158,10711
+40159,70413,14162
+40160,32744
+40161,81665
+40162,45467
+40163,74701
+40164,80062
+40165,28167,66826,46857
+40166,22926
+40167,1065
+40168,57099
+40169,81297
+40170,77881
+40171,27879
+40172,22464
+40173,21369
+40174,45360
+40175,57792,32316
+40176,7728
+40177,58875
+40178,53646
+40179,16635
+40180,17766
+40181,9120,8518
+40182,49727
+40183,42462
+40184,6144
+40185,60749
+40186,77148
+40187,31344
+40188,52921
+40189,13881
+40190,70483
+40191,18950
+40192,6296
+40193,11534
+40194,14434
+40195,1886
+40196,69728
+40197,17610
+40198,14445,80955
+40199,6044,66643
+40200,16334
+40201,16595
+40202,53779
+40203,21671,76320
+40204,12204
+40205,31752
+40206,25836,47198
+40207,48868
+40208,68062,43505
+40209,21995
+40210,42668
+40211,64222
+40212,57387
+40213,66387
+40214,61303
+40215,77854
+40216,34841
+40217,61009
+40218,64389
+40219,73870
+40220,7246
+40221,65824
+40222,56159
+40223,40023
+40224,25325,58214
+40225,21272
+40226,25917
+40227,69157
+40228,65667
+40229,21443
+40230,54781
+40231,80921
+40232,44621,74080
+40233,59002
+40234,82163,28706
+40235,18698
+40236,38061
+40237,9573
+40238,4767
+40239,37911
+40240,65600
+40241,48414
+40242,47476
+40243,9557,33117,3417
+40244,27641
+40245,68210
+40246,47258
+40247,39485
+40248,25482
+40249,60614
+40250,1410
+40251,28617
+40252,68684
+40253,42207
+40254,25626
+40255,22793
+40256,55916
+40257,2647
+40258,70796,16379
+40259,54341,27303,50687
+40260,5332,20078,1971
+40261,68736,27401,55590
+40262,36800
+40263,9258,34015
+40264,46828,57836
+40265,66193
+40266,68852
+40267,47015,23142
+40268,38299
+40269,33744
+40270,19593
+40271,1367
+40272,12359
+40273,19587,33280
+40274,77866,48551
+40275,9856,52234,65143
+40276,53048
+40277,53829
+40278,43881
+40279,76565
+40280,39055,79478
+40281,44476,51117
+40282,65651
+40283,63453
+40284,20526
+40285,26587
+40286,75623
+40287,53489
+40288,36566
+40289,3277
+40290,56710,41649
+40291,47061
+40292,7813
+40293,41657
+40294,30890
+40295,70595
+40296,55466
+40297,46532
+40298,2553
+40299,49402
+40300,57628,54255
+40301,73827
+40302,28723
+40303,44866
+40304,3267
+40305,82074
+40306,72810
+40307,77234
+40308,48475
+40309,31789
+40310,955
+40311,17545
+40312,18958
+40313,926
+40314,41779,20396,66666
+40315,42292
+40316,33748
+40317,58552
+40318,56955
+40319,4035
+40320,54923
+40321,13613
+40322,7548
+40323,76498
+40324,2292
+40325,51199,44172
+40326,63263
+40327,46075
+40328,36940
+40329,25809
+40330,64582
+40331,23378,18714
+40332,78687
+40333,10195
+40334,78725,64048
+40335,33653
+40336,50221,48098
+40337,72605
+40338,18606
+40339,33920
+40340,23396
+40341,35071
+40342,7557
+40343,21017,61830
+40344,64623,63456
+40345,53726,65935
+40346,40645
+40347,34300
+40348,77641
+40349,52223
+40350,22860
+40351,41364
+40352,50176
+40353,49302
+40354,81580
+40355,81465
+40356,11027
+40357,71373
+40358,2754
+40359,30508
+40360,7039
+40361,17953,32388
+40362,48906
+40363,62675,55263,25537
+40364,78319
+40365,62457
+40366,71101
+40367,47066
+40368,78619,57465
+40369,69099
+40370,39286
+40371,65244
+40372,75493
+40373,23714
+40374,41662
+40375,29629
+40376,58139
+40377,49988
+40378,51454
+40379,40260
+40380,53553
+40381,8600
+40382,33745
+40383,28033
+40384,28377
+40385,12108
+40386,57669
+40387,30189
+40388,8878
+40389,52031,63414
+40390,58442
+40391,2248,65883
+40392,60765,34886
+40393,66996,52445
+40394,75214
+40395,55739,10075
+40396,34834
+40397,1901,56981
+40398,60037
+40399,46438
+40400,49656
+40401,31172
+40402,53199
+40403,59102
+40404,66151
+40405,44523
+40406,67102
+40407,64767
+40408,5034
+40409,735
+40410,51114
+40411,21113
+40412,72620
+40413,81015
+40414,24738,30580
+40415,17651
+40416,59651
+40417,2684,17874
+40418,44067
+40419,56549
+40420,32733
+40421,61977
+40422,30881
+40423,25136
+40424,56422
+40425,77324
+40426,43567
+40427,6299
+40428,11574
+40429,70178
+40430,68129
+40431,11672,61547
+40432,5235
+40433,50134
+40434,37362
+40435,73019
+40436,3286
+40437,22550
+40438,54403
+40439,67926,4198
+40440,40855
+40441,53727
+40442,12150
+40443,39931
+40444,37979
+40445,21315
+40446,2409
+40447,76500,55586
+40448,47760,75381
+40449,18541,74407
+40450,80142
+40451,71910
+40452,52925
+40453,81639
+40454,29672
+40455,24795
+40456,76558
+40457,58563
+40458,75685
+40459,70082
+40460,21167
+40461,62177
+40462,19180,58662
+40463,59306
+40464,2514
+40465,38071,4428
+40466,25516,59036,45310
+40467,57972
+40468,10385,1170
+40469,18751
+40470,51892
+40471,24175
+40472,57298
+40473,6465
+40474,40272
+40475,4448
+40476,8600
+40477,60920
+40478,26207
+40479,7887,18085
+40480,28820
+40481,8102
+40482,9561
+40483,74916
+40484,33184
+40485,2780
+40486,68915
+40487,21495
+40488,45453,6286
+40489,76607
+40490,61192
+40491,12055
+40492,2695,30093
+40493,53382
+40494,984,12314
+40495,56923,66945
+40496,10270
+40497,7598
+40498,27646,31782
+40499,25218
+40500,52437
+40501,74660
+40502,20798
+40503,14734
+40504,67560
+40505,41523
+40506,12816
+40507,38230,45542,6906,44213,1682
+40508,35007
+40509,20288
+40510,2843
+40511,13250
+40512,43345
+40513,25061
+40514,54883,42605
+40515,79481
+40516,73141
+40517,18982
+40518,45705
+40519,10635
+40520,35208
+40521,68846
+40522,22269,76993
+40523,63511,25449
+40524,51423
+40525,29173
+40526,57474
+40527,44887
+40528,64225
+40529,70478
+40530,16
+40531,41497,50580
+40532,13262
+40533,54154,69546
+40534,11443
+40535,74788
+40536,69560,57260
+40537,41143
+40538,29905,75825
+40539,41502,27125
+40540,64217
+40541,30183
+40542,69033
+40543,31636
+40544,80619
+40545,53339
+40546,19921,44130
+40547,40629
+40548,60042
+40549,41509
+40550,50414
+40551,51973
+40552,35534,77283,31870
+40553,74701
+40554,44623
+40555,28542
+40556,59651,67833
+40557,76581,31513
+40558,70730
+40559,46071
+40560,69707,1624
+40561,11488
+40562,3635
+40563,18193
+40564,31158
+40565,9829,33361
+40566,7805
+40567,63104
+40568,61002
+40569,46164
+40570,44066
+40571,51706
+40572,68147
+40573,34053
+40574,24459
+40575,76947
+40576,81456
+40577,71169
+40578,71209
+40579,69119
+40580,19967
+40581,14758
+40582,60422
+40583,18409
+40584,39058,59080
+40585,33643
+40586,17457
+40587,36981,26289
+40588,24156
+40589,76529
+40590,16610
+40591,76942,72115
+40592,73394
+40593,46395
+40594,43205
+40595,77303
+40596,24873,76915,73094
+40597,45128,71115
+40598,19858
+40599,52940
+40600,65342
+40601,6046
+40602,24127
+40603,60405
+40604,63679
+40605,22850
+40606,40789
+40607,13605
+40608,38277
+40609,62502,74034,52835
+40610,51187
+40611,79797
+40612,14012,57416,32514
+40613,46462,28626,68563,5369
+40614,46404
+40615,53726
+40616,3884
+40617,4444
+40618,36324
+40619,34466,81892
+40620,44185
+40621,31923,19379
+40622,50115
+40623,54882
+40624,59665
+40625,23321,27243
+40626,16046,25054
+40627,48662
+40628,73551
+40629,47803
+40630,65493
+40631,6268
+40632,10124
+40633,52341
+40634,8045
+40635,73345
+40636,72457
+40637,18649
+40638,51448,55423
+40639,72050
+40640,28939
+40641,46823
+40642,51759,42162
+40643,36253
+40644,61071
+40645,12217
+40646,45970
+40647,24083
+40648,37847,24135,23565
+40649,74472
+40650,45400
+40651,18608
+40652,52275
+40653,40804
+40654,62135,52450
+40655,8197
+40656,15610
+40657,75024
+40658,72089,31811
+40659,73795
+40660,43335
+40661,59459
+40662,25860
+40663,79742
+40664,32605
+40665,5407
+40666,62936
+40667,41748
+40668,27526
+40669,35063
+40670,28561
+40671,30375
+40672,3514
+40673,24915
+40674,32632
+40675,70212,78227
+40676,20758
+40677,50319
+40678,68308,15200
+40679,59669
+40680,58854
+40681,11132,27247
+40682,4100
+40683,68265
+40684,74976
+40685,77062
+40686,15907
+40687,2087
+40688,5968
+40689,56159
+40690,81665
+40691,55985
+40692,37339
+40693,9995,17684
+40694,1617
+40695,80352,13701
+40696,73198
+40697,42777
+40698,18656
+40699,68651
+40700,79889
+40701,66438
+40702,29402
+40703,7332
+40704,21661
+40705,23039
+40706,54590
+40707,23280,32527
+40708,49101
+40709,58105
+40710,80898
+40711,54181,7013
+40712,81319,72708
+40713,22107
+40714,45189
+40715,49336
+40716,11191,64412
+40717,38672
+40718,45953,56890
+40719,7849
+40720,22133
+40721,61505,2323
+40722,23119
+40723,28295
+40724,56041,11775,58736
+40725,74021,59428,79918,1269
+40726,7322
+40727,31559,69878
+40728,61200
+40729,54796
+40730,14723
+40731,76106
+40732,6624
+40733,53953
+40734,47145
+40735,82035
+40736,962
+40737,22623
+40738,13429
+40739,30623
+40740,31602
+40741,805
+40742,64191
+40743,17171,36114
+40744,73527,28410
+40745,53525,72179
+40746,42463
+40747,57532
+40748,11469
+40749,48355
+40750,74503,79827
+40751,28609
+40752,27228,67833
+40753,4870
+40754,68902,73554
+40755,76972
+40756,32
+40757,1677
+40758,47145
+40759,7347
+40760,35143
+40761,76664
+40762,26869
+40763,39796
+40764,40606
+40765,5157
+40766,19064
+40767,20777
+40768,35932
+40769,20711
+40770,21827,14447
+40771,77169
+40772,72297
+40773,46885,38814
+40774,57021
+40775,74937
+40776,44827,12099
+40777,33630,13968
+40778,39205
+40779,36305
+40780,63883
+40781,28715
+40782,34561
+40783,76358
+40784,52408
+40785,44418
+40786,79704,68859
+40787,27212
+40788,29094
+40789,10795
+40790,46104
+40791,7121
+40792,24694
+40793,50561
+40794,57847
+40795,14431,38337
+40796,61242
+40797,50226
+40798,54864
+40799,49967
+40800,64129
+40801,16934
+40802,80997,41860
+40803,81700
+40804,48126
+40805,75608,79289
+40806,35404
+40807,37009
+40808,75575,72861
+40809,69131
+40810,51582
+40811,20658
+40812,45245
+40813,77460,8369
+40814,74312,19595
+40815,57469
+40816,8126,44022
+40817,71534
+40818,1534
+40819,49671
+40820,5501
+40821,60426
+40822,77524
+40823,62997,47632
+40824,32222
+40825,50728
+40826,17118
+40827,56848
+40828,79861
+40829,71045
+40830,16724
+40831,10195
+40832,79043,8093
+40833,39470
+40834,34894
+40835,28486
+40836,76327
+40837,42085
+40838,34838
+40839,19631
+40840,25687,59511
+40841,39803,71640
+40842,72337
+40843,27970
+40844,39136
+40845,10774
+40846,34336,73132
+40847,26904
+40848,64765
+40849,77659
+40850,51608,59380
+40851,4568
+40852,34911
+40853,8852
+40854,65344
+40855,31803
+40856,51343,46865
+40857,11381
+40858,60149,38969
+40859,18151
+40860,15073,23521
+40861,388
+40862,50331
+40863,25686,43416
+40864,772,37189
+40865,2554,12719
+40866,55272,35155
+40867,74792
+40868,58721
+40869,20208,30182
+40870,42588
+40871,69712
+40872,249
+40873,35709
+40874,22552
+40875,76411
+40876,12622,46043
+40877,71694
+40878,75099
+40879,51961
+40880,2977
+40881,69482,7563
+40882,70482
+40883,49412
+40884,56911
+40885,62602
+40886,43235
+40887,6345
+40888,35442
+40889,26343
+40890,48355
+40891,75845
+40892,65704
+40893,27217
+40894,4570
+40895,75024
+40896,66275,32569
+40897,37563,42395,77723
+40898,17191,26780,36435
+40899,44750
+40900,45282
+40901,77452
+40902,14472
+40903,53339,15331
+40904,12677
+40905,43994
+40906,16147
+40907,33593
+40908,38932
+40909,14150,17014
+40910,59937
+40911,15084
+40912,81689
+40913,35709
+40914,28683
+40915,51384,15038
+40916,79752
+40917,25917
+40918,13117
+40919,54197
+40920,72853
+40921,37992
+40922,40859
+40923,22236
+40924,9530
+40925,29997
+40926,80295
+40927,36945
+40928,21851,32269
+40929,19830,25486
+40930,69877
+40931,38882
+40932,39882
+40933,81048,3364
+40934,47858
+40935,72042
+40936,56262
+40937,37691
+40938,34208
+40939,1022
+40940,41090
+40941,49138
+40942,56948
+40943,27530
+40944,57652
+40945,59972
+40946,16775
+40947,1435
+40948,2414
+40949,47175
+40950,35951
+40951,41728
+40952,7203
+40953,37038
+40954,61656
+40955,78465
+40956,2594
+40957,32795
+40958,24008
+40959,77266,72306
+40960,5963,37371
+40961,65285
+40962,15591
+40963,81639
+40964,76686
+40965,36800
+40966,64383
+40967,8928
+40968,58130,34910,74526
+40969,76219
+40970,72874
+40971,11435,35702,69635
+40972,22109
+40973,30741,52520
+40974,5688
+40975,13637,30189,77109
+40976,42720
+40977,58507
+40978,1287,37065
+40979,15654
+40980,32921
+40981,27553
+40982,45547
+40983,67988
+40984,33789,608,53235
+40985,59959
+40986,19210
+40987,1647,37405
+40988,68373
+40989,28232
+40990,77218,25838
+40991,18949
+40992,64743
+40993,4877,54011
+40994,22162,14808
+40995,79436
+40996,37230
+40997,37034
+40998,50335
+40999,74429
+41000,54706,37600
+41001,29429,5532
+41002,35480
+41003,39542
+41004,74138
+41005,61598
+41006,74494,44789
+41007,54316
+41008,1785
+41009,65020
+41010,10256
+41011,19986
+41012,55576
+41013,76621
+41014,22471,29106
+41015,82106
+41016,64277,55247
+41017,38146
+41018,64898
+41019,52562,2595
+41020,33109,31197
+41021,78081
+41022,39003
+41023,75982
+41024,45751
+41025,23645
+41026,67560
+41027,41457,42257
+41028,78277
+41029,51287
+41030,62572,36102
+41031,78499
+41032,59698
+41033,69878
+41034,66087,71291
+41035,24381,50623
+41036,33755,30558
+41037,47893
+41038,2515,42925
+41039,17258
+41040,44114,69977
+41041,54442
+41042,15407
+41043,7681
+41044,68022
+41045,31404
+41046,74660
+41047,64273,35904
+41048,32631
+41049,15420
+41050,14174
+41051,6277
+41052,72445
+41053,81595
+41054,35470
+41055,18606,61924
+41056,21995
+41057,56911
+41058,27434,13417
+41059,16294
+41060,17693
+41061,69490
+41062,76860,416
+41063,67477,26030
+41064,755
+41065,21828
+41066,2314
+41067,77599
+41068,25661,27991,6396
+41069,25428,23569
+41070,80768,78479
+41071,20553
+41072,79772
+41073,40832,50141,74151
+41074,40838
+41075,48787
+41076,80044
+41077,13363
+41078,56748,44703
+41079,23795
+41080,27244
+41081,71361,38817,65798
+41082,53321,865
+41083,47261
+41084,51766,79411
+41085,13957,72501,74630
+41086,45391,47761
+41087,63773
+41088,4288
+41089,14551,55370
+41090,71009
+41091,73028
+41092,79487,73659
+41093,65260
+41094,16627
+41095,6732
+41096,39002
+41097,540
+41098,3603
+41099,65672,73342
+41100,43321
+41101,50582
+41102,25725
+41103,61631
+41104,70891
+41105,34338
+41106,51688
+41107,8059,59576
+41108,33597
+41109,40014
+41110,58855,51654
+41111,70576
+41112,40543
+41113,39422
+41114,67452,4369
+41115,21503
+41116,69974
+41117,72434
+41118,69808
+41119,76968,16839
+41120,38893
+41121,53641
+41122,54736,21625
+41123,33091
+41124,30935
+41125,45903,55600,8328
+41126,73060
+41127,61742,15031
+41128,76029
+41129,61168
+41130,49369
+41131,81787
+41132,52843,48258
+41133,77571,6647
+41134,74393
+41135,15295
+41136,64618
+41137,68386,48471
+41138,38061,7318
+41139,11278,53683
+41140,74554
+41141,40651
+41142,18921
+41143,26585
+41144,57477,61015
+41145,81651,40864,48642
+41146,51556
+41147,28548
+41148,48645
+41149,82045
+41150,69465
+41151,33783
+41152,38296
+41153,35284,56778,14621
+41154,18380
+41155,43843,67411
+41156,11843
+41157,81614
+41158,81935
+41159,80492
+41160,26087
+41161,58594
+41162,62141
+41163,55685
+41164,62547,47173
+41165,336
+41166,75829,74024
+41167,9019
+41168,33262,39652
+41169,19980
+41170,4705
+41171,20373
+41172,49347
+41173,46486
+41174,52408
+41175,59219
+41176,76028
+41177,9582
+41178,72703,38417
+41179,29978,16640
+41180,12633
+41181,64997
+41182,47278
+41183,42677,36509,28147
+41184,76560
+41185,47180
+41186,67557,75182
+41187,50231
+41188,68366
+41189,65289
+41190,24265,5143
+41191,72930
+41192,28878,66364,80183
+41193,25772
+41194,34148
+41195,49778,39847,57307
+41196,67727
+41197,39041
+41198,49466,1193
+41199,56601,1482
+41200,21653,9283
+41201,49739
+41202,22748
+41203,50304
+41204,62515
+41205,69099
+41206,48727
+41207,44327
+41208,8717
+41209,72765
+41210,71819
+41211,8218
+41212,66085
+41213,81549
+41214,50282
+41215,70692
+41216,18187
+41217,77224
+41218,52710
+41219,68744
+41220,23304,14748
+41221,81527
+41222,38000
+41223,31358
+41224,32036,16936
+41225,36201
+41226,34441
+41227,22485
+41228,31412
+41229,72151,80347
+41230,43732
+41231,14324
+41232,79560
+41233,44599
+41234,6478,1357
+41235,81939
+41236,20173
+41237,41036
+41238,57548
+41239,39983
+41240,625
+41241,35774
+41242,670
+41243,6041,59192
+41244,68672
+41245,49441
+41246,42937
+41247,18220
+41248,46897
+41249,31526
+41250,30968
+41251,60798
+41252,49752
+41253,72808
+41254,54198,30820,35855
+41255,37158
+41256,67338
+41257,28645
+41258,40458
+41259,61038
+41260,77522
+41261,49009
+41262,24320
+41263,24305
+41264,4183
+41265,73468
+41266,79383
+41267,21742
+41268,60520,4045
+41269,17374
+41270,61785
+41271,13672
+41272,52405
+41273,20450
+41274,73495
+41275,38286
+41276,54237
+41277,64576
+41278,12358
+41279,11099
+41280,70113
+41281,77515,75519
+41282,59888
+41283,52296
+41284,34228
+41285,39410,80698
+41286,35795
+41287,78154
+41288,13322
+41289,13807
+41290,5872,31559
+41291,3860
+41292,33098,65114
+41293,33949
+41294,1913
+41295,62068
+41296,51635
+41297,6856
+41298,15945,2741
+41299,28219
+41300,42632
+41301,7038
+41302,71019
+41303,8250
+41304,17467
+41305,65639
+41306,13265,50
+41307,11052
+41308,76311,23815
+41309,68988
+41310,4152
+41311,40015,12146
+41312,36646
+41313,45445
+41314,49480
+41315,20876
+41316,75321
+41317,47603
+41318,36009
+41319,66057
+41320,25738,3731
+41321,42069
+41322,49340
+41323,61771
+41324,36250,47106
+41325,58666
+41326,78288
+41327,26581,74266
+41328,55771,17336
+41329,52757
+41330,38633
+41331,3084
+41332,33453
+41333,19610
+41334,47768
+41335,69574
+41336,77781,14122,73479
+41337,49307
+41338,41626
+41339,12573
+41340,55470
+41341,57812
+41342,60791
+41343,76531
+41344,9172,74424
+41345,5407
+41346,11810
+41347,41252
+41348,57832,15103,48682
+41349,17892,58534
+41350,5198
+41351,2012
+41352,3105
+41353,34384
+41354,28627
+41355,26590
+41356,74554
+41357,29243
+41358,33079
+41359,65332
+41360,71480,33875
+41361,38880
+41362,46230
+41363,11272
+41364,34954
+41365,79324,46254
+41366,53743
+41367,60194
+41368,55116
+41369,50971
+41370,172,48302
+41371,12696
+41372,18932,81635,23301
+41373,25468,1142
+41374,25397
+41375,22412
+41376,79019
+41377,22653
+41378,66367
+41379,45979
+41380,49163,29572
+41381,66564
+41382,33797,35158
+41383,53862,32615
+41384,10308,20751
+41385,77428
+41386,61212
+41387,18399
+41388,65742
+41389,76688
+41390,71832,59572
+41391,10326
+41392,47401
+41393,40556
+41394,76103,30277
+41395,29887,31379
+41396,61816
+41397,48163
+41398,74327
+41399,27246,6664
+41400,36686
+41401,59387,23157,987
+41402,65405
+41403,29625
+41404,14597
+41405,59708
+41406,68082,1612
+41407,53196
+41408,51704,40676
+41409,57273
+41410,53738
+41411,43323
+41412,46249
+41413,44308
+41414,1828,28645
+41415,1945
+41416,73282
+41417,56735
+41418,38219
+41419,62716
+41420,33423,69134
+41421,25696
+41422,54255
+41423,27933
+41424,51501
+41425,18557
+41426,27737
+41427,24254
+41428,38616
+41429,9575
+41430,7238
+41431,50383
+41432,69136
+41433,49876,56030
+41434,46626
+41435,46035
+41436,70183
+41437,62442
+41438,20958
+41439,45058,30653
+41440,64218
+41441,74313
+41442,2431
+41443,10879
+41444,20854
+41445,22450
+41446,69984
+41447,44209
+41448,76256
+41449,24845
+41450,56058
+41451,16638,68229
+41452,17445
+41453,1280
+41454,1551
+41455,4039
+41456,60562
+41457,37982
+41458,76132
+41459,55269
+41460,12073
+41461,7050
+41462,19874
+41463,52246
+41464,78356
+41465,10734
+41466,13519
+41467,31638
+41468,70005
+41469,52523,33817
+41470,33914,18304
+41471,4595
+41472,46429
+41473,45797
+41474,58289
+41475,39659
+41476,39193
+41477,79979
+41478,34659
+41479,34354
+41480,79216
+41481,56840
+41482,46878
+41483,16463
+41484,45457,60853
+41485,40831
+41486,72319
+41487,45831
+41488,39866
+41489,62686
+41490,63272
+41491,30942
+41492,38739
+41493,50580,6399
+41494,15555
+41495,1145,32696
+41496,10670
+41497,77452
+41498,69356,48805
+41499,51612
+41500,9190
+41501,69718,62253,35906
+41502,38834
+41503,66905
+41504,13770
+41505,19536
+41506,27572
+41507,60061,57466
+41508,79410
+41509,39886
+41510,61287
+41511,81342
+41512,11355
+41513,410,15729
+41514,11612
+41515,75496,73116
+41516,33328
+41517,12725
+41518,75152
+41519,22663
+41520,46711
+41521,75038
+41522,52987
+41523,18204
+41524,17620
+41525,23349
+41526,67766
+41527,3802,13448
+41528,60803
+41529,6490
+41530,32313
+41531,46057,76781
+41532,36876
+41533,76141
+41534,68584
+41535,29984
+41536,72956
+41537,59915
+41538,67937
+41539,69465,64920
+41540,10004
+41541,47084
+41542,13266
+41543,26096,64372
+41544,12903
+41545,80518
+41546,50691
+41547,9017
+41548,66424
+41549,54738
+41550,64372
+41551,81342
+41552,51868
+41553,6168
+41554,37236,60576
+41555,39792
+41556,56139
+41557,33868
+41558,62192
+41559,81477
+41560,13460
+41561,73369
+41562,3582
+41563,58104,75528
+41564,54042
+41565,39535
+41566,39193,65671
+41567,34406,78402
+41568,40803
+41569,42169,61416
+41570,17772
+41571,30095
+41572,65777
+41573,32947
+41574,41379,47910
+41575,23411
+41576,35165
+41577,77546
+41578,73760
+41579,14374,42419
+41580,22400
+41581,6029
+41582,25314,18920,53231
+41583,76023,33928
+41584,69906
+41585,17057,23018,54519
+41586,34767
+41587,36849
+41588,45533
+41589,7561,21744
+41590,58444
+41591,39050
+41592,50293
+41593,68404
+41594,20531
+41595,74826
+41596,44800
+41597,17499
+41598,13594
+41599,44278
+41600,53954
+41601,30575,52541
+41602,58892,16978
+41603,16502
+41604,63091
+41605,10891,4088
+41606,29388
+41607,35487
+41608,51593
+41609,13158
+41610,12677,19954,56855
+41611,15517
+41612,29065
+41613,34472
+41614,39770
+41615,57159,14039
+41616,29457
+41617,34325
+41618,59076
+41619,72580,6959
+41620,957
+41621,56449
+41622,9006
+41623,4584
+41624,53389
+41625,80899,10419
+41626,75077
+41627,15489
+41628,68877
+41629,37059
+41630,81772
+41631,9043
+41632,2841
+41633,64319
+41634,78956
+41635,39422
+41636,36351
+41637,11480
+41638,3282
+41639,5984,7939
+41640,76652
+41641,1160
+41642,56897,73569
+41643,53067
+41644,48588,63510
+41645,76761
+41646,72358
+41647,48551
+41648,77942
+41649,47189
+41650,55565
+41651,78631
+41652,7396
+41653,8347
+41654,30260
+41655,75989
+41656,58542
+41657,2109
+41658,58142
+41659,9513
+41660,70869
+41661,67909
+41662,42058
+41663,59047
+41664,58728,46305
+41665,16962
+41666,29099
+41667,33517
+41668,55736
+41669,13606
+41670,13866,74769
+41671,24761
+41672,34276
+41673,80182
+41674,62125
+41675,20990
+41676,57146
+41677,29974
+41678,56954
+41679,45506,15673
+41680,7710
+41681,73371
+41682,35053
+41683,25927
+41684,59713,31016
+41685,34729,4660
+41686,68490,71170
+41687,17750
+41688,80137,19662
+41689,72925
+41690,52541
+41691,66341,46362
+41692,51585
+41693,65852
+41694,7281
+41695,62717
+41696,52133
+41697,22475
+41698,62762
+41699,77674,52994,42144
+41700,23457
+41701,66814
+41702,62525,2168
+41703,45468
+41704,80897
+41705,73000
+41706,14212
+41707,42125
+41708,80981
+41709,79747
+41710,23208
+41711,44808
+41712,79960
+41713,43672
+41714,13101
+41715,63151
+41716,467
+41717,45555
+41718,30138
+41719,33875
+41720,77960
+41721,52275
+41722,54442
+41723,18556,14415
+41724,60537
+41725,39081
+41726,66759
+41727,34202,12941
+41728,12438
+41729,64286,13274
+41730,18879,64265
+41731,23007
+41732,66259
+41733,24867
+41734,79825
+41735,1133,17067
+41736,38101
+41737,6948
+41738,48267,67242,54135
+41739,34689,73663
+41740,21643
+41741,34849
+41742,26031
+41743,50961
+41744,75819
+41745,66323
+41746,21462
+41747,41132
+41748,73939
+41749,81706
+41750,55334
+41751,41172,77655
+41752,16386
+41753,70213
+41754,16169
+41755,33115
+41756,47888
+41757,23208
+41758,73248
+41759,34697
+41760,73723
+41761,72610
+41762,50526
+41763,3860
+41764,4145
+41765,15684
+41766,60237
+41767,72709
+41768,13134,54674
+41769,42201
+41770,15917
+41771,70672
+41772,24785
+41773,24837
+41774,60612
+41775,67797,70355
+41776,66372
+41777,39011
+41778,22750
+41779,53320
+41780,20579
+41781,51960
+41782,22642
+41783,7816
+41784,64919
+41785,64572,15582
+41786,1198
+41787,35536
+41788,18044
+41789,33020
+41790,60761
+41791,65432
+41792,71838
+41793,33235
+41794,3482
+41795,67556
+41796,19732
+41797,17115,23392
+41798,68036
+41799,44389
+41800,34440
+41801,39866
+41802,7032
+41803,77665
+41804,62779
+41805,51486
+41806,76647
+41807,27980
+41808,18478
+41809,66063,36964
+41810,57920
+41811,13541
+41812,32960
+41813,32198
+41814,62744,7434
+41815,29441
+41816,53826
+41817,39171,9526
+41818,40578
+41819,39964
+41820,17204
+41821,52765,36219
+41822,67443,29541
+41823,2597
+41824,13465
+41825,47712
+41826,55222,33386,75403
+41827,2949,56277
+41828,37750,6804
+41829,54670
+41830,39157
+41831,45368
+41832,77185
+41833,39103,58255
+41834,47489
+41835,33211
+41836,69893
+41837,15808
+41838,57521
+41839,20657,59355,66676
+41840,29151
+41841,33958
+41842,38670
+41843,35838
+41844,62062
+41845,39375
+41846,73859
+41847,59651
+41848,50348,5676
+41849,25543
+41850,17518
+41851,80146
+41852,76595
+41853,63742,74564
+41854,29522,7866,42543
+41855,6504
+41856,53915
+41857,28741
+41858,64831
+41859,17737
+41860,71127
+41861,38818
+41862,9360
+41863,70006,49036
+41864,47132
+41865,37944
+41866,66102,8770
+41867,24637,63144
+41868,37250
+41869,49297
+41870,65929
+41871,81639,79096
+41872,74085,58680
+41873,75505
+41874,19629
+41875,5960
+41876,43397
+41877,58104
+41878,45860
+41879,14738,61904
+41880,41411,80932
+41881,65827
+41882,13959
+41883,8577,33344
+41884,29305
+41885,45389
+41886,18684
+41887,25190
+41888,2674
+41889,9999
+41890,8921,6124
+41891,38058
+41892,10795
+41893,25047
+41894,25061,56846
+41895,52909
+41896,36472,15692
+41897,47194
+41898,27954
+41899,73134
+41900,81017,1787
+41901,2607
+41902,48983,16142
+41903,54211
+41904,47820
+41905,64226
+41906,69530
+41907,70993
+41908,62952
+41909,44983,14130
+41910,27479
+41911,70597
+41912,73652
+41913,24219
+41914,32931
+41915,47875
+41916,21051,78105
+41917,884
+41918,77314
+41919,54528
+41920,9239
+41921,34719
+41922,30385
+41923,38242
+41924,58825
+41925,28578
+41926,39189,79425
+41927,82149
+41928,65921
+41929,50678
+41930,1491
+41931,8524,77275
+41932,24481,5924
+41933,17890
+41934,3523
+41935,20461
+41936,3293
+41937,41870
+41938,46789
+41939,4570
+41940,69612
+41941,63344
+41942,50436
+41943,14146
+41944,60199
+41945,81005
+41946,71008
+41947,41345
+41948,21051
+41949,78598
+41950,64048,73278,20874
+41951,55458
+41952,36292
+41953,8121,49270
+41954,57900,51165
+41955,13431
+41956,77393
+41957,44418
+41958,6771,34951
+41959,64056
+41960,3320
+41961,6598
+41962,34644
+41963,41667
+41964,31535
+41965,69430,9273
+41966,541
+41967,25253
+41968,330,27520
+41969,11722
+41970,43911
+41971,58281
+41972,14005
+41973,31326,43017
+41974,8440
+41975,2634,8245,58457
+41976,51599
+41977,42920
+41978,37864,724,76984
+41979,2297
+41980,48212
+41981,56026
+41982,36408,45923
+41983,24933,11027
+41984,35930
+41985,50989
+41986,37159
+41987,31197
+41988,21608
+41989,48363,81654
+41990,64627
+41991,53350
+41992,7579,66578
+41993,53034,69048
+41994,42825,22134
+41995,8153,70138
+41996,7220,5981
+41997,36179
+41998,54828
+41999,29080
+42000,65947
+42001,37325
+42002,20218,7151,29016
+42003,72067,69507
+42004,707
+42005,66030
+42006,21282
+42007,20550
+42008,56493
+42009,15186,80588
+42010,70285,37657,18818
+42011,69820
+42012,9172
+42013,58507
+42014,63341
+42015,8836
+42016,31957
+42017,65356
+42018,19362
+42019,6084
+42020,50753
+42021,57975
+42022,45349
+42023,65170
+42024,35543
+42025,43133
+42026,37410
+42027,8212
+42028,38524,52763
+42029,25943
+42030,45674
+42031,2651
+42032,3923
+42033,6730,73841
+42034,59293
+42035,79192
+42036,3377,5641
+42037,79959,48159
+42038,28348
+42039,580
+42040,47437
+42041,6056
+42042,16685
+42043,15315,48141
+42044,20038
+42045,9598
+42046,51804
+42047,60689,32847
+42048,48781
+42049,35850,70666
+42050,12548
+42051,45647
+42052,15330
+42053,25614
+42054,39615
+42055,38139
+42056,12547
+42057,48318
+42058,18965
+42059,12757
+42060,54108
+42061,50513
+42062,9629,35605
+42063,29405
+42064,13486
+42065,28061
+42066,4332
+42067,44796,42123
+42068,1612
+42069,31208,6776
+42070,17686
+42071,32252
+42072,26346
+42073,49109
+42074,62318
+42075,42124
+42076,73146
+42077,42130
+42078,67653
+42079,29936
+42080,75119
+42081,29004
+42082,53804
+42083,68594
+42084,80475
+42085,64964
+42086,16293
+42087,31199,2345,24395
+42088,58474
+42089,76455
+42090,10702
+42091,11090
+42092,23390
+42093,17938
+42094,10341,68892
+42095,21801
+42096,75103
+42097,69151,55134
+42098,44763
+42099,16998
+42100,41604
+42101,67593
+42102,20913
+42103,9456,40173,30124
+42104,77299
+42105,47528
+42106,59251,1855
+42107,44277
+42108,53212
+42109,14862
+42110,38447
+42111,35593,14485
+42112,54275
+42113,8799,44901
+42114,78998
+42115,53750,33973
+42116,80429
+42117,5554,5047
+42118,7295
+42119,4355
+42120,21689,67649
+42121,47290
+42122,44632
+42123,1697
+42124,80921,22105
+42125,62489,57876
+42126,45282
+42127,30708
+42128,7146
+42129,12906
+42130,43197
+42131,38010
+42132,58871
+42133,2893,15064
+42134,32248
+42135,72014
+42136,60818
+42137,73787
+42138,76256
+42139,25764
+42140,73242
+42141,73992
+42142,2917
+42143,81457
+42144,80184
+42145,6452,52839,31679
+42146,39523,1897,58834,9339
+42147,56626,71696
+42148,46961
+42149,23551
+42150,45699
+42151,66438
+42152,62017
+42153,5497,22709
+42154,64687
+42155,25950
+42156,13004
+42157,38803
+42158,7219
+42159,64700
+42160,61871
+42161,45226
+42162,46645
+42163,28385
+42164,737
+42165,46711
+42166,44444
+42167,41924
+42168,44140,3215
+42169,25835
+42170,43982
+42171,36850
+42172,67772
+42173,80944
+42174,27306
+42175,37363
+42176,23561
+42177,72291
+42178,6563
+42179,44494
+42180,74968
+42181,53665
+42182,44438
+42183,80651
+42184,50511
+42185,60041,55277
+42186,76963
+42187,25317
+42188,41558,6260
+42189,11838
+42190,60453,3036
+42191,72874
+42192,68606
+42193,61148
+42194,16386
+42195,32683
+42196,14177
+42197,22946,40733
+42198,26049,9720
+42199,54211
+42200,69025
+42201,35064
+42202,26398
+42203,81384
+42204,51853
+42205,71285
+42206,11094
+42207,72941,38214
+42208,81559
+42209,33691
+42210,66970
+42211,6724
+42212,6742
+42213,30909
+42214,66646
+42215,33450
+42216,10664
+42217,82038
+42218,35096
+42219,23267,51050
+42220,65248
+42221,38629
+42222,45999
+42223,53308
+42224,44839,36051
+42225,37191
+42226,11850,70474
+42227,67260
+42228,24312
+42229,79501
+42230,41004,37716
+42231,3150
+42232,52087
+42233,73870
+42234,47332
+42235,3425,42946,50422
+42236,65421,7490,19783
+42237,52616
+42238,22397
+42239,13174,21019
+42240,26885,73704
+42241,62943,57138
+42242,27061,57403
+42243,58603
+42244,67639
+42245,778
+42246,17873
+42247,480
+42248,7981
+42249,36686
+42250,586
+42251,31549
+42252,11029
+42253,23623
+42254,5801
+42255,73744
+42256,62514
+42257,80935,73022
+42258,74600
+42259,80566
+42260,81967
+42261,18193,15275
+42262,42022
+42263,29441
+42264,74080
+42265,60821
+42266,73259
+42267,72368
+42268,13064,67475
+42269,39987,56988
+42270,10594,49993
+42271,26036
+42272,44304
+42273,13978
+42274,50311
+42275,26570
+42276,53408
+42277,5861
+42278,34879
+42279,65277
+42280,25804,63613
+42281,77709
+42282,16414
+42283,11611
+42284,37040
+42285,48876
+42286,3266
+42287,42720
+42288,16777
+42289,63709
+42290,36458
+42291,50793,43259
+42292,68734
+42293,46795
+42294,61927
+42295,39148,46046
+42296,77314
+42297,81216,48308
+42298,36280
+42299,3224,29588
+42300,73940
+42301,57337
+42302,39449
+42303,37439
+42304,69727
+42305,55076
+42306,17434
+42307,79047
+42308,24753
+42309,59612
+42310,21235
+42311,40527
+42312,25691
+42313,294,76336
+42314,39661,11869
+42315,31948
+42316,54374
+42317,48769
+42318,23252
+42319,17333
+42320,9260,24435
+42321,66711
+42322,39422
+42323,65104
+42324,60128
+42325,25940
+42326,24930,25961,7594
+42327,66847
+42328,39643
+42329,57343,8380
+42330,8258
+42331,29492
+42332,63350
+42333,27777
+42334,4624
+42335,17727
+42336,23563,14962
+42337,20174
+42338,6282
+42339,61022
+42340,57679,19462
+42341,37432
+42342,69287,16640
+42343,33695
+42344,74669
+42345,81196
+42346,38333
+42347,2206
+42348,50746
+42349,27634
+42350,60676
+42351,1508
+42352,45277
+42353,32591
+42354,33832,35783,65657
+42355,10486
+42356,79972
+42357,6855
+42358,57098
+42359,21373
+42360,43089
+42361,79564,25710
+42362,61395
+42363,53196
+42364,35374
+42365,26947
+42366,4448
+42367,56594
+42368,21235,11905
+42369,74782
+42370,65451
+42371,68600
+42372,41794
+42373,28304,10593,29596,24398
+42374,63842
+42375,36903
+42376,70759
+42377,23763
+42378,42271
+42379,79223
+42380,29484
+42381,61444
+42382,53035,80799
+42383,52166
+42384,18867
+42385,3514,61939
+42386,197,7775
+42387,47777
+42388,8810
+42389,9695
+42390,70905
+42391,41607
+42392,79631,11876
+42393,10023,31242
+42394,17621
+42395,78383
+42396,20887
+42397,68330
+42398,59012
+42399,10386
+42400,41503
+42401,5843
+42402,10859
+42403,11168
+42404,28320
+42405,63318
+42406,67200
+42407,29903
+42408,57266
+42409,77709
+42410,29612
+42411,32160
+42412,27536
+42413,25837
+42414,17765
+42415,18790
+42416,18002
+42417,48794
+42418,46381
+42419,59168
+42420,17630
+42421,76604,13532
+42422,49060
+42423,42449
+42424,57683,77503
+42425,33312
+42426,74337
+42427,57449
+42428,27566
+42429,11633
+42430,74819
+42431,72125
+42432,2397
+42433,31819
+42434,39252
+42435,65817
+42436,1266
+42437,42569,58289,45861
+42438,66727,43283
+42439,31405
+42440,48410
+42441,57705
+42442,43716
+42443,46294
+42444,68090
+42445,24305
+42446,64229
+42447,13294
+42448,41801
+42449,65527
+42450,36266
+42451,29851,25101
+42452,21643
+42453,44949
+42454,67179,311
+42455,53189
+42456,5319,77013
+42457,52757
+42458,10008
+42459,35593
+42460,24770
+42461,23862
+42462,33898
+42463,14978
+42464,39800
+42465,14220,1223
+42466,27169
+42467,1392
+42468,570
+42469,45164
+42470,43336
+42471,78972
+42472,6458
+42473,64699
+42474,75299,65967,39105
+42475,27293
+42476,18060
+42477,61269
+42478,58133
+42479,79196,73105
+42480,44029
+42481,34099,79335
+42482,48090,17954
+42483,16839
+42484,12352
+42485,76017
+42486,10578,71902
+42487,63039,45625
+42488,54514
+42489,32341
+42490,76766
+42491,35230
+42492,79198
+42493,26035
+42494,77962
+42495,27349
+42496,23863
+42497,60623
+42498,64347
+42499,81145
+42500,78175
+42501,28442
+42502,37596
+42503,75181
+42504,27077
+42505,17643,36763
+42506,9895
+42507,15199
+42508,12693
+42509,33265
+42510,36428
+42511,51459
+42512,59082,74603
+42513,14096
+42514,13200
+42515,54950
+42516,55409
+42517,1023
+42518,3732,65592
+42519,22234
+42520,12137,29526
+42521,49559
+42522,15542
+42523,62980,36003
+42524,79700
+42525,24,25764
+42526,10529
+42527,7555
+42528,69438,5006,66543
+42529,39233
+42530,49469
+42531,2971,29071
+42532,30828
+42533,65146
+42534,22788
+42535,11837
+42536,21969,56054,19708
+42537,43183
+42538,56911
+42539,15907
+42540,36430
+42541,67027
+42542,29746
+42543,18343
+42544,67673
+42545,31713
+42546,59652
+42547,8115
+42548,9585
+42549,56828
+42550,81061
+42551,64645,10468
+42552,12682
+42553,52536
+42554,45703
+42555,9930
+42556,47812,68010
+42557,79299,57582
+42558,43345
+42559,58544,80593
+42560,51173
+42561,51857
+42562,52282,31622
+42563,34968
+42564,78767
+42565,39260
+42566,23412
+42567,32428
+42568,62728
+42569,7191
+42570,11082
+42571,37671,38688
+42572,16461
+42573,73658
+42574,43423
+42575,30160
+42576,21514
+42577,69317
+42578,23120
+42579,9233
+42580,66857
+42581,35796
+42582,54751
+42583,68213
+42584,3505,27657
+42585,45129
+42586,22587
+42587,43264
+42588,58792
+42589,48721
+42590,57555,61041
+42591,21469
+42592,58964
+42593,65293,64007
+42594,38852
+42595,10566
+42596,24313
+42597,75345,35021
+42598,7322
+42599,33553
+42600,29767
+42601,49595
+42602,69662,66776
+42603,43271
+42604,59017
+42605,56296
+42606,19011
+42607,38395,81421
+42608,13202
+42609,14465
+42610,47130
+42611,21113
+42612,3048
+42613,34602
+42614,59816
+42615,52843
+42616,52643
+42617,5432
+42618,12931
+42619,34963,73089
+42620,58485
+42621,8920
+42622,11492
+42623,44663
+42624,21212
+42625,75997
+42626,5518,22023
+42627,10659
+42628,34950
+42629,29361
+42630,20280
+42631,74762
+42632,50328,69737
+42633,25993,21685,68824
+42634,41657
+42635,36715
+42636,48365,10982
+42637,53553,52497
+42638,41196
+42639,35587
+42640,34904
+42641,56157
+42642,48147
+42643,79163
+42644,69163,24302
+42645,32931
+42646,59801
+42647,231
+42648,23444
+42649,54926
+42650,10758
+42651,1014,61284
+42652,40261
+42653,3675,32603
+42654,23360
+42655,67118
+42656,68629
+42657,81084
+42658,72844
+42659,42473,21481
+42660,19924,46766
+42661,19295
+42662,6918
+42663,50495
+42664,9111
+42665,77586
+42666,36780
+42667,73976,15359
+42668,61474
+42669,47575
+42670,67776
+42671,73139
+42672,66249
+42673,60290
+42674,5878
+42675,74727
+42676,6251
+42677,74826
+42678,65278
+42679,25346
+42680,82002,26656
+42681,8033
+42682,45065
+42683,21289
+42684,5856,59763,70712
+42685,71964,40663
+42686,18119
+42687,77380
+42688,79772
+42689,27740
+42690,22023
+42691,20352
+42692,37908
+42693,11194
+42694,57944
+42695,69345
+42696,36002
+42697,28631
+42698,51623
+42699,14650,36637
+42700,56032,63941
+42701,14803
+42702,49547,61062
+42703,31695
+42704,23872
+42705,167
+42706,10026
+42707,7020,66951
+42708,10960
+42709,30929
+42710,46101
+42711,81651
+42712,23177
+42713,34836
+42714,55678
+42715,8645
+42716,42970
+42717,46797
+42718,42930
+42719,60507,76225
+42720,49511,67810
+42721,28281
+42722,79572
+42723,45574
+42724,59523
+42725,53909
+42726,39543,69298
+42727,55432
+42728,16994,39239
+42729,35225
+42730,54817
+42731,15945
+42732,47425
+42733,16137,4250,29665
+42734,23623
+42735,38517
+42736,29082
+42737,50642
+42738,48843,8872
+42739,76097
+42740,41164,43705
+42741,21058,20321
+42742,61665,60883,65887
+42743,35004,47528
+42744,6917
+42745,31697
+42746,18573,3036
+42747,51517
+42748,26458
+42749,76681
+42750,39453,76275
+42751,29074
+42752,44917
+42753,807
+42754,65090
+42755,836
+42756,65582
+42757,20115,2031
+42758,25332
+42759,72345
+42760,7618
+42761,58563
+42762,72577
+42763,24538
+42764,31251,66731
+42765,45034
+42766,54266
+42767,34054
+42768,63189
+42769,16573,45572
+42770,8554
+42771,15172
+42772,79019
+42773,14086
+42774,5883,38425
+42775,14674
+42776,43732
+42777,15892
+42778,67304
+42779,55492
+42780,77717
+42781,66313
+42782,66945
+42783,75266,66293
+42784,42054
+42785,10935,68058,3429
+42786,42762
+42787,7645
+42788,53157
+42789,56791
+42790,10362
+42791,15962
+42792,707
+42793,46625
+42794,32194
+42795,44365
+42796,63447
+42797,55612
+42798,53396,43152
+42799,19382
+42800,33186
+42801,6245
+42802,20308,54133
+42803,58621
+42804,8212
+42805,23636
+42806,44242
+42807,55429
+42808,65018
+42809,51088
+42810,28714
+42811,4153
+42812,5357,74317
+42813,77404
+42814,15530
+42815,6785
+42816,21138,44357
+42817,62083
+42818,384
+42819,46589,72937
+42820,7645
+42821,23824
+42822,51516
+42823,19152
+42824,20913
+42825,55383
+42826,20816
+42827,55768
+42828,56142
+42829,31542
+42830,54112
+42831,65122
+42832,43539
+42833,24198
+42834,79703,36837
+42835,13634
+42836,12026
+42837,34020
+42838,778
+42839,4453
+42840,1122
+42841,24940,65408
+42842,77018
+42843,24435
+42844,16644
+42845,38869
+42846,50053
+42847,65852
+42848,64423
+42849,22099
+42850,25112
+42851,43480
+42852,25278
+42853,6906
+42854,45971,75172
+42855,14062
+42856,41627
+42857,10928
+42858,46696
+42859,7737
+42860,33684
+42861,38093
+42862,54298
+42863,57906
+42864,26806,42609
+42865,18934,56456
+42866,62471
+42867,49066
+42868,6502,24008
+42869,25663,80709
+42870,25013
+42871,30643
+42872,29239
+42873,2268
+42874,73701
+42875,33357
+42876,49353
+42877,61141
+42878,74589
+42879,70005
+42880,39839
+42881,7876
+42882,28693
+42883,63989
+42884,23255
+42885,25249
+42886,6620
+42887,69620
+42888,75197
+42889,52709
+42890,36670
+42891,16652
+42892,41863,51548
+42893,12863
+42894,68564
+42895,47361
+42896,10942
+42897,22895,78512
+42898,75775
+42899,112
+42900,47612
+42901,2519
+42902,61636
+42903,17537
+42904,77770
+42905,51995,1724
+42906,7769,19562
+42907,55970
+42908,59735
+42909,21235
+42910,24728
+42911,70160
+42912,13360,30353
+42913,5658,60156
+42914,37113
+42915,72390
+42916,40611,54375
+42917,24378,50963
+42918,39541,34046
+42919,33507
+42920,42522
+42921,76826,30475
+42922,81224
+42923,4271
+42924,67456
+42925,47147
+42926,32798
+42927,72918
+42928,57739
+42929,56995,33035
+42930,18057
+42931,48720
+42932,6116
+42933,32344
+42934,28118,6945
+42935,23888,78180
+42936,63698
+42937,71019,48011
+42938,31758,11278
+42939,47575
+42940,72781
+42941,78316,50823,78115
+42942,20186
+42943,37317
+42944,4759
+42945,8001
+42946,12925
+42947,46332
+42948,40227,72255
+42949,77008
+42950,77955
+42951,39970
+42952,81915
+42953,2781
+42954,36494
+42955,45769
+42956,51107,61616
+42957,5249
+42958,1298
+42959,75403
+42960,30687
+42961,71290
+42962,21026
+42963,27185
+42964,9891,80639
+42965,78624
+42966,79087
+42967,33474,44895
+42968,16865
+42969,7805
+42970,76604
+42971,75982
+42972,49843
+42973,52485
+42974,79136,18882
+42975,47016
+42976,64254
+42977,64420
+42978,5578
+42979,35196
+42980,75339
+42981,47978
+42982,14196,35684
+42983,70463
+42984,35448,57872
+42985,39899
+42986,43010
+42987,16418
+42988,30095
+42989,51248,64278
+42990,12310
+42991,54496
+42992,52107
+42993,65169,49415,59628
+42994,68710,50623
+42995,81577
+42996,71885,54788
+42997,69578
+42998,26153,31160
+42999,17399
+43000,54361
+43001,58186
+43002,26193
+43003,51501
+43004,15172,7294
+43005,28630
+43006,40239
+43007,29890
+43008,38791
+43009,66404
+43010,34782
+43011,48612
+43012,25510,8630
+43013,29140
+43014,73274
+43015,49456
+43016,60545
+43017,28995
+43018,74301
+43019,2678
+43020,41239
+43021,6111
+43022,13531
+43023,20002
+43024,62694
+43025,75574,28965
+43026,32043
+43027,13262
+43028,21835
+43029,18369
+43030,33152
+43031,12348
+43032,69271
+43033,5910,39857,50459
+43034,18346
+43035,59481,47974
+43036,15583
+43037,50885
+43038,33299
+43039,55457,65937
+43040,66721
+43041,69755
+43042,14524
+43043,19700
+43044,31888
+43045,53661
+43046,44147
+43047,64038
+43048,16514
+43049,80368,63519
+43050,31730
+43051,68149
+43052,20471
+43053,12198
+43054,37983
+43055,43034
+43056,39388
+43057,79536
+43058,7914,4118
+43059,55177
+43060,6123
+43061,20611,79858
+43062,20871
+43063,9007
+43064,78554
+43065,20990
+43066,77920
+43067,56829
+43068,2090
+43069,43151
+43070,714
+43071,31027
+43072,61781
+43073,72274
+43074,36895
+43075,51560,4755
+43076,12818
+43077,40248,43689
+43078,54410
+43079,59418
+43080,31242
+43081,42376
+43082,81627
+43083,55687,76947
+43084,4404
+43085,69102
+43086,11151
+43087,72270
+43088,63558
+43089,19747
+43090,35967
+43091,48214
+43092,67790
+43093,43797
+43094,54595
+43095,36903
+43096,58168
+43097,68989
+43098,21693
+43099,21569,1806
+43100,20747
+43101,14832
+43102,8036
+43103,80978,39603
+43104,12204
+43105,21104
+43106,50329
+43107,73839
+43108,65102,6318,23793
+43109,43178
+43110,61977
+43111,32835
+43112,58446
+43113,45653,59139
+43114,44653
+43115,6293
+43116,43227
+43117,72821
+43118,24498
+43119,6630
+43120,9472
+43121,73807
+43122,16273,5577
+43123,70740,40627
+43124,4483,3178
+43125,33704
+43126,23552
+43127,885,40947
+43128,4277
+43129,1515
+43130,47712
+43131,76238,23502
+43132,12413,41561
+43133,12429
+43134,56999
+43135,6852
+43136,27015
+43137,81180
+43138,21248
+43139,30816
+43140,11757
+43141,27301,76737
+43142,65458
+43143,28287
+43144,31934
+43145,79747
+43146,54251,72415
+43147,79432
+43148,4152
+43149,58605
+43150,10327
+43151,22099
+43152,53069
+43153,60428
+43154,29510
+43155,27175
+43156,9143
+43157,33432
+43158,75359
+43159,34535
+43160,40193
+43161,33413,1647
+43162,2430
+43163,23344
+43164,25537,67855
+43165,80472
+43166,40789
+43167,39848
+43168,75583
+43169,57507
+43170,636,73633
+43171,41871
+43172,72215
+43173,19847,23119,3897
+43174,14292
+43175,34250
+43176,8286
+43177,77519
+43178,77712
+43179,74949
+43180,58114
+43181,6446
+43182,22582
+43183,36763
+43184,60189
+43185,55735
+43186,14139,2510
+43187,52361
+43188,678
+43189,32107
+43190,26376
+43191,77715
+43192,13527
+43193,3955,8491
+43194,40101,51679
+43195,45236
+43196,63867,28588
+43197,78169
+43198,9026
+43199,4658
+43200,19149
+43201,58427
+43202,6141
+43203,57947
+43204,72037
+43205,48081
+43206,72025
+43207,38527
+43208,20846
+43209,65415
+43210,79250
+43211,59983
+43212,49833
+43213,55475,69353
+43214,35964
+43215,74204
+43216,49552,2688
+43217,67183
+43218,15527
+43219,44884
+43220,62442
+43221,22361
+43222,58068
+43223,75558,8602
+43224,37187,54880
+43225,41761
+43226,16228
+43227,71322,12590
+43228,60761,35112
+43229,5926
+43230,46479
+43231,41364
+43232,17389
+43233,78598
+43234,58582,39869
+43235,60118
+43236,57630
+43237,19596
+43238,80817
+43239,8561
+43240,31948
+43241,58639,50540
+43242,62360
+43243,7522,71838
+43244,11335,4899,59730
+43245,28218
+43246,66964
+43247,43127
+43248,37602
+43249,15746
+43250,63999
+43251,50191
+43252,50687
+43253,36214
+43254,24812
+43255,49303
+43256,61743
+43257,15174
+43258,22163
+43259,9402
+43260,7258
+43261,76330
+43262,728
+43263,46418
+43264,41513
+43265,61974
+43266,32227
+43267,44158
+43268,36786
+43269,57490,34070,21519
+43270,32627
+43271,19113
+43272,25514
+43273,78630
+43274,29595
+43275,6478
+43276,4369
+43277,64220,78188
+43278,15167
+43279,72672
+43280,80832,45715
+43281,25602
+43282,39582
+43283,65429,8661
+43284,67745
+43285,64887
+43286,7971
+43287,39493
+43288,33875
+43289,65691
+43290,52485
+43291,48629
+43292,39934
+43293,42843
+43294,52563
+43295,81235
+43296,22680
+43297,35825
+43298,17491,48063
+43299,13881
+43300,47041,50487
+43301,31652,16057
+43302,37257
+43303,17681
+43304,28463
+43305,59500
+43306,7159
+43307,35463
+43308,65031
+43309,8516
+43310,14537,20980
+43311,9017
+43312,53854
+43313,24110,17444
+43314,39165,20420
+43315,9582
+43316,64090
+43317,42209
+43318,2258
+43319,55365,36617
+43320,63213
+43321,16458
+43322,68997
+43323,37255
+43324,4986
+43325,74945
+43326,10809,5057,31220,1176
+43327,23641
+43328,25932
+43329,9600
+43330,3128
+43331,43985
+43332,10195
+43333,14249
+43334,73167
+43335,77113
+43336,81376
+43337,81178
+43338,61934
+43339,14761
+43340,34199
+43341,31994
+43342,19018
+43343,40570,81325
+43344,48079
+43345,38616
+43346,34848,23808
+43347,68660
+43348,57913,22962
+43349,25180
+43350,41782
+43351,12001,49050
+43352,6064
+43353,57188
+43354,74556
+43355,52227
+43356,51176
+43357,29248
+43358,37121
+43359,38719
+43360,63768,63909
+43361,76690
+43362,76497
+43363,54988
+43364,14794
+43365,66527,43074
+43366,57025,12479
+43367,18515,27582
+43368,33086,68036
+43369,24747,15679
+43370,81556
+43371,18576
+43372,13096
+43373,11310,40790
+43374,16608,7146
+43375,64667
+43376,76154
+43377,12782
+43378,17207
+43379,50464
+43380,10423
+43381,39155
+43382,68637,20917
+43383,9285,20579,9864
+43384,56335
+43385,11339
+43386,19593
+43387,25314
+43388,66756
+43389,4136
+43390,62963
+43391,10648
+43392,66255,57395
+43393,72065
+43394,66029
+43395,19193
+43396,5512
+43397,77656
+43398,39555,13701
+43399,11023
+43400,74556
+43401,24615,3458
+43402,16226
+43403,60414
+43404,64249
+43405,11838
+43406,30502
+43407,40506,2315
+43408,13374,48727
+43409,52116
+43410,6674
+43411,69113
+43412,10327
+43413,19956
+43414,72333
+43415,66537,24819
+43416,78574
+43417,15931
+43418,27239
+43419,57044,36423
+43420,13811
+43421,40705
+43422,3461
+43423,5641
+43424,51296
+43425,30690
+43426,27346,76227
+43427,36341
+43428,37037
+43429,66226
+43430,25322
+43431,75317
+43432,56610
+43433,26961
+43434,49177
+43435,32020,3330
+43436,30098
+43437,59700
+43438,41185
+43439,33714,59086
+43440,77982,56930
+43441,2227
+43442,77675,53448
+43443,746
+43444,81939
+43445,43195
+43446,80692,10117
+43447,5500
+43448,81081
+43449,7310
+43450,45282
+43451,22743
+43452,29377,67311
+43453,73620
+43454,37114,54242
+43455,53296,34887
+43456,61732
+43457,48602
+43458,3369
+43459,67063
+43460,64324
+43461,39485
+43462,4682
+43463,31506
+43464,27124,70329
+43465,28870
+43466,14489
+43467,46582
+43468,48914
+43469,72533
+43470,68099
+43471,76981
+43472,7022
+43473,46874,54420,24423
+43474,61171
+43475,81444,33886
+43476,4523,5427,72185
+43477,55135,20588
+43478,75847
+43479,13691
+43480,79167
+43481,64897,25013
+43482,26375
+43483,38834
+43484,19098
+43485,724
+43486,45515
+43487,34358
+43488,46851,2920
+43489,22261
+43490,55204
+43491,45234
+43492,33422
+43493,60117
+43494,27625
+43495,65640
+43496,25331
+43497,29716
+43498,60136,56667
+43499,77870
+43500,40438
+43501,31694
+43502,79931
+43503,57155
+43504,7631
+43505,14854
+43506,37904,79489,58111
+43507,39848
+43508,60831
+43509,66186
+43510,21753
+43511,43711
+43512,60930
+43513,63737
+43514,53885,38972,21867
+43515,46284
+43516,15272
+43517,33036
+43518,28710
+43519,77458
+43520,50687
+43521,57689
+43522,61116
+43523,2634,5628
+43524,57896
+43525,65667
+43526,22911
+43527,25251
+43528,376,69254
+43529,64747
+43530,66417
+43531,53350
+43532,80732
+43533,81364
+43534,77829,41440
+43535,69675
+43536,8712
+43537,55717
+43538,51144
+43539,73298,15330
+43540,57531
+43541,29318,59847
+43542,50717
+43543,14539
+43544,68618
+43545,4132
+43546,1770
+43547,9079
+43548,5977
+43549,29938
+43550,27001
+43551,73786
+43552,81884
+43553,2060
+43554,60829
+43555,36203,1227
+43556,68002
+43557,44288
+43558,29432
+43559,47571
+43560,23989
+43561,13081
+43562,11865
+43563,30616
+43564,13128
+43565,70074
+43566,21710
+43567,80521,3336
+43568,30925
+43569,11583,10375
+43570,77036
+43571,34257
+43572,38439
+43573,41494
+43574,27920
+43575,20806,41806,34118
+43576,80663
+43577,11786
+43578,68201
+43579,10989,5092
+43580,71060
+43581,38858
+43582,25686
+43583,23863,32892
+43584,70758
+43585,31647
+43586,60735
+43587,62693
+43588,78645
+43589,73514
+43590,2117
+43591,43873,45354
+43592,2297
+43593,26396
+43594,69117
+43595,63389
+43596,7201
+43597,40373
+43598,24573
+43599,48251
+43600,11692
+43601,73510,11950
+43602,71305
+43603,69823
+43604,56613
+43605,12587
+43606,57490,65147
+43607,1031
+43608,8124,23740
+43609,42627
+43610,46657,31829
+43611,46866
+43612,75231
+43613,32120
+43614,28804
+43615,15524
+43616,76029
+43617,51676
+43618,27061
+43619,21715
+43620,57332
+43621,36496
+43622,45675
+43623,46708
+43624,33093
+43625,43805
+43626,15931
+43627,81819
+43628,25892
+43629,17148,48377
+43630,53243,71257
+43631,18220
+43632,74648
+43633,42845,17534
+43634,74621
+43635,55272,45693
+43636,15771
+43637,13549
+43638,67734
+43639,61441
+43640,34712
+43641,52701,5157
+43642,64582
+43643,13871
+43644,23701
+43645,79046
+43646,61685,43712
+43647,54938,42905
+43648,43711
+43649,41890,68780
+43650,6041
+43651,17102
+43652,68304
+43653,60244
+43654,67679,31311
+43655,68652
+43656,14862,15666
+43657,77045
+43658,73660,58337,77945
+43659,72365
+43660,36574
+43661,41057
+43662,26055
+43663,17664,67805
+43664,34332
+43665,60472
+43666,28528
+43667,79778
+43668,10591
+43669,26556
+43670,31935,16782
+43671,65191
+43672,65022
+43673,69340
+43674,67964
+43675,65706
+43676,41315
+43677,72709
+43678,27290
+43679,61683
+43680,20053
+43681,40530,62566
+43682,51237
+43683,20508
+43684,25493
+43685,67035
+43686,2057
+43687,41100
+43688,6678
+43689,72365
+43690,62834
+43691,80314,71299
+43692,56515
+43693,71055
+43694,37295
+43695,66791
+43696,75386,2965
+43697,32754
+43698,45129,6926
+43699,48583
+43700,5690
+43701,34609
+43702,55443
+43703,34156
+43704,73506
+43705,40687
+43706,24655
+43707,63402
+43708,16822,17202
+43709,4359
+43710,55761
+43711,54927
+43712,35469,81549
+43713,33294
+43714,14793
+43715,45929,39520
+43716,66823
+43717,18639
+43718,5432
+43719,5579
+43720,45911
+43721,21661
+43722,77426
+43723,32708
+43724,44959
+43725,9786,31272
+43726,65863
+43727,78607
+43728,75583
+43729,54551
+43730,53654
+43731,8530
+43732,55088
+43733,19862
+43734,70544
+43735,81460
+43736,45657
+43737,4078
+43738,43264
+43739,55048
+43740,96
+43741,13713
+43742,32192
+43743,53426
+43744,2411
+43745,64013
+43746,57138,57528
+43747,78763
+43748,38213
+43749,39284
+43750,49874,19175
+43751,19767
+43752,58527,41144
+43753,7498
+43754,10164,40336
+43755,58451
+43756,43090
+43757,55177
+43758,11819
+43759,78091
+43760,71455
+43761,75460,13577,39133
+43762,29888
+43763,34702,51001
+43764,27237
+43765,4823
+43766,49339
+43767,75008
+43768,75084
+43769,18079,40621,45682
+43770,65922
+43771,20915
+43772,22885
+43773,78825
+43774,68147
+43775,29772,59330
+43776,18518
+43777,34630
+43778,44112
+43779,68851
+43780,15447
+43781,60209
+43782,48002
+43783,17278
+43784,54332
+43785,41424
+43786,21543
+43787,43511
+43788,5321
+43789,23231,63611
+43790,80719
+43791,30842
+43792,33914,18033
+43793,75093
+43794,10369
+43795,56331,75474
+43796,2101
+43797,2776
+43798,16155
+43799,71400
+43800,15199
+43801,15217
+43802,47187
+43803,40880
+43804,39419
+43805,31466
+43806,3323,48743
+43807,65188,37540
+43808,10376
+43809,23645
+43810,56220
+43811,46234
+43812,36470,27198
+43813,45400
+43814,11151
+43815,3376
+43816,71370,5969,18994
+43817,73604
+43818,49756
+43819,711
+43820,25780
+43821,64142
+43822,49843,2864
+43823,74581,1306
+43824,70919
+43825,47536,21586
+43826,29445
+43827,42206
+43828,8888
+43829,26032,30915,30342
+43830,20927
+43831,23991
+43832,1192
+43833,32363
+43834,60251
+43835,62861
+43836,45458
+43837,72610
+43838,14029
+43839,72409
+43840,19151
+43841,73611,75147
+43842,8729
+43843,64200
+43844,47328
+43845,64274
+43846,8717
+43847,67172
+43848,60929
+43849,77829
+43850,41592,64449
+43851,27661
+43852,8729,55736
+43853,73458
+43854,71129,43213
+43855,30842
+43856,27607,63988
+43857,23228,43542
+43858,67234
+43859,43116
+43860,62151
+43861,51640,80665
+43862,37711,6221
+43863,32804,53953
+43864,53574
+43865,30708
+43866,56401
+43867,49285
+43868,43576,79034,42862
+43869,17165
+43870,43612
+43871,81315,29735
+43872,51704,51430
+43873,55038
+43874,77134
+43875,11082
+43876,53474
+43877,75630,59425
+43878,27577
+43879,29481
+43880,22821
+43881,53478
+43882,21586
+43883,19624
+43884,7712
+43885,45546
+43886,52519
+43887,71144
+43888,47501
+43889,55760
+43890,5911
+43891,20027
+43892,3676
+43893,59974
+43894,51067
+43895,31753
+43896,6151
+43897,75579
+43898,47040,22277
+43899,32013
+43900,80210
+43901,17953,26596
+43902,15813
+43903,46063,76247
+43904,66506
+43905,76360
+43906,28514
+43907,81690
+43908,44463,14675
+43909,42801
+43910,49971,50185,29504
+43911,72833
+43912,32016
+43913,38799
+43914,26062
+43915,21969
+43916,43003
+43917,49967
+43918,15330
+43919,26073
+43920,20116
+43921,54341
+43922,56566,81629
+43923,71322,73898
+43924,7060
+43925,10847
+43926,27785
+43927,34661
+43928,7996
+43929,36121
+43930,70583
+43931,33233
+43932,71847,75040,49598
+43933,26926
+43934,1724
+43935,67356
+43936,18922
+43937,35651
+43938,58244
+43939,29660
+43940,6863,56240
+43941,27553
+43942,15720
+43943,49415
+43944,26328
+43945,5873
+43946,8284
+43947,1724
+43948,36700,29992
+43949,40151
+43950,13523
+43951,16428,60650,75931
+43952,78286
+43953,4684
+43954,48576,71000
+43955,49386
+43956,53185,17525
+43957,48001,51540
+43958,77400
+43959,28686
+43960,53030
+43961,79205
+43962,62475
+43963,24770
+43964,66745
+43965,60443,61599
+43966,30269
+43967,19207
+43968,72020
+43969,24008
+43970,1737
+43971,71985
+43972,49083
+43973,62502
+43974,39497
+43975,49289
+43976,68286
+43977,21985
+43978,41725
+43979,49781
+43980,10204
+43981,53129
+43982,30203
+43983,53856
+43984,31154
+43985,23107
+43986,25576
+43987,50288,31205
+43988,42765
+43989,12643
+43990,27105
+43991,3755
+43992,38129
+43993,34847
+43994,69025
+43995,14097,20449
+43996,64334,6527
+43997,1784
+43998,67875
+43999,65862
+44000,25796
+44001,19124
+44002,62124
+44003,31160
+44004,26560
+44005,18023
+44006,75585
+44007,13398,30369,30816
+44008,21343
+44009,68214
+44010,8865
+44011,66157
+44012,29512,49839,75427
+44013,56937
+44014,8244
+44015,27761
+44016,41556
+44017,29846
+44018,6574
+44019,74297
+44020,0
+44021,274
+44022,21332
+44023,37245,195
+44024,46075
+44025,71269,38346
+44026,2498
+44027,64023
+44028,50579
+44029,57682
+44030,14836,3806,26346
+44031,44998
+44032,35964
+44033,33124
+44034,48662
+44035,74926
+44036,81965
+44037,13527
+44038,64197
+44039,68253
+44040,40717
+44041,65039,31200
+44042,281,57225
+44043,53489
+44044,49228
+44045,4700
+44046,65715
+44047,54790
+44048,61046
+44049,8584
+44050,80310,42395
+44051,30811
+44052,16092
+44053,48423
+44054,72652
+44055,78452
+44056,79200
+44057,64980,40272
+44058,74344
+44059,44331
+44060,61360
+44061,8431
+44062,55573
+44063,65202
+44064,31944
+44065,55084
+44066,40011
+44067,73939
+44068,14567
+44069,49310
+44070,34474
+44071,30324
+44072,19452
+44073,9727
+44074,27120
+44075,24688
+44076,17006
+44077,70730
+44078,72358
+44079,38914
+44080,39342
+44081,68000
+44082,77197
+44083,4098
+44084,51819
+44085,36687
+44086,51387,69517
+44087,36370
+44088,31394
+44089,9423
+44090,9445
+44091,38685
+44092,3799,5807
+44093,16079
+44094,44138
+44095,42905
+44096,34364
+44097,59499
+44098,5943
+44099,42138
+44100,48380
+44101,74787,66611
+44102,57006
+44103,66776
+44104,26887
+44105,23917
+44106,75537
+44107,38962
+44108,75485
+44109,40962
+44110,25068
+44111,4722
+44112,1451
+44113,69413
+44114,36467
+44115,54618
+44116,36510
+44117,40825
+44118,18421
+44119,8817
+44120,504
+44121,20997
+44122,5489
+44123,35238
+44124,44209
+44125,24932
+44126,75350
+44127,6116
+44128,18087,78310,6850
+44129,57139
+44130,76630
+44131,15671
+44132,80780
+44133,40630
+44134,22996
+44135,8596,9898
+44136,15363,24434
+44137,39410
+44138,69817
+44139,69289
+44140,44918
+44141,47970
+44142,65518,64053
+44143,1405
+44144,17073
+44145,57956
+44146,37004
+44147,23451
+44148,60814
+44149,52419
+44150,18440
+44151,45588
+44152,54331
+44153,13463
+44154,78729,17576
+44155,48816
+44156,32132
+44157,56760
+44158,16980
+44159,23286
+44160,36545
+44161,53924
+44162,60726
+44163,78865,48933
+44164,40999
+44165,19057
+44166,26052,63322
+44167,55948
+44168,19018
+44169,52721
+44170,1022
+44171,50177,28925
+44172,73007
+44173,68370
+44174,49738
+44175,80375,75113
+44176,26566,28348
+44177,32930
+44178,54922
+44179,23850,17498,23482
+44180,41865
+44181,18597
+44182,30088
+44183,60372
+44184,28013
+44185,30188
+44186,65002
+44187,38463
+44188,13907
+44189,34660
+44190,74963
+44191,59629
+44192,45677
+44193,67557
+44194,73813
+44195,9565,61006
+44196,32673
+44197,32006
+44198,76052
+44199,37964
+44200,71207
+44201,59724
+44202,68142
+44203,60012
+44204,52175
+44205,52989
+44206,75309
+44207,71666
+44208,78395
+44209,12075
+44210,76127
+44211,12533
+44212,75625
+44213,63872
+44214,67409
+44215,30810
+44216,69587
+44217,68212
+44218,26044
+44219,80178
+44220,52284
+44221,49417
+44222,6654
+44223,4151
+44224,27100
+44225,20370,7155
+44226,29245
+44227,35376
+44228,43911
+44229,17623,25440
+44230,26869
+44231,73739
+44232,17949,64481
+44233,35143
+44234,49350
+44235,58259
+44236,54997
+44237,19132
+44238,494
+44239,62062
+44240,27491,43774
+44241,7752,81911
+44242,71276
+44243,35605
+44244,9841
+44245,58134
+44246,35073
+44247,15576
+44248,47629
+44249,25386
+44250,18010
+44251,21274
+44252,64525,77832
+44253,35008
+44254,78078
+44255,77355,32067
+44256,26220
+44257,19561
+44258,20549,55232
+44259,17797
+44260,81160
+44261,22369,69147
+44262,54668
+44263,44596
+44264,38680
+44265,29141
+44266,40444
+44267,59569
+44268,3826
+44269,24918,26053
+44270,27730
+44271,69892
+44272,73921,47809
+44273,30589
+44274,71960
+44275,55970
+44276,8496
+44277,58746
+44278,15767
+44279,16672
+44280,81794
+44281,69483,43336
+44282,63251
+44283,82151
+44284,52637
+44285,55808
+44286,48587
+44287,29839
+44288,74555
+44289,30657
+44290,1882
+44291,11
+44292,79265,32740
+44293,24376
+44294,55389,11825
+44295,13625
+44296,14281
+44297,47140
+44298,44151
+44299,42700
+44300,68603
+44301,6537
+44302,46464
+44303,62671
+44304,4192
+44305,68281
+44306,41028
+44307,77560
+44308,3603
+44309,19804
+44310,15750
+44311,32788
+44312,31923
+44313,19693
+44314,70272
+44315,25220
+44316,2216
+44317,23808
+44318,7493
+44319,2514
+44320,57474,69578
+44321,26389,63163
+44322,46524
+44323,46465
+44324,8956
+44325,66330
+44326,32318
+44327,37547,9425
+44328,10698
+44329,80395
+44330,201
+44331,27808
+44332,15385
+44333,63169
+44334,62316
+44335,81164,13257
+44336,80526,78169
+44337,2957
+44338,71846
+44339,69277
+44340,65866
+44341,27524
+44342,72943
+44343,68379
+44344,76470
+44345,44887
+44346,49729
+44347,26119
+44348,13319
+44349,29382
+44350,71160
+44351,56992
+44352,72040
+44353,23827
+44354,36553
+44355,61521
+44356,23547
+44357,77775
+44358,26154
+44359,24926,7694,73270
+44360,22751
+44361,20841
+44362,3815
+44363,64149
+44364,51652
+44365,57162
+44366,38266,70584
+44367,17014
+44368,76275
+44369,75965
+44370,21274,1863
+44371,22932
+44372,39291
+44373,43780,2713
+44374,62583,44185
+44375,27351
+44376,18151
+44377,81900,58962,41763
+44378,27460
+44379,44256
+44380,23942,22262
+44381,2060
+44382,59553
+44383,9407
+44384,44304
+44385,8256
+44386,18326
+44387,77606,33712
+44388,31508
+44389,15771,71642
+44390,62264
+44391,11672
+44392,68441
+44393,47730
+44394,19773
+44395,28038
+44396,27246
+44397,40666
+44398,62907
+44399,44457
+44400,80383
+44401,53909
+44402,80454,20053
+44403,32255
+44404,54975
+44405,35421,2954
+44406,12218
+44407,120,31002
+44408,59719,81926
+44409,13926
+44410,40501
+44411,46298,24646
+44412,41920
+44413,49568
+44414,81054
+44415,73124
+44416,34614
+44417,43334
+44418,51468
+44419,80874
+44420,3478
+44421,60461,39316
+44422,18427
+44423,62015
+44424,10715,67978
+44425,65605
+44426,69057
+44427,79359
+44428,45023
+44429,59965
+44430,52750
+44431,56028
+44432,77528,18176
+44433,58245
+44434,38051
+44435,57207
+44436,8208
+44437,8489
+44438,51501
+44439,6846
+44440,80717
+44441,353,12095
+44442,72075
+44443,45975
+44444,70074
+44445,5747
+44446,35370
+44447,50284
+44448,21355,81442
+44449,40063
+44450,42724
+44451,63125
+44452,5200
+44453,7742
+44454,58343,5650,28616
+44455,73405
+44456,35037
+44457,75609
+44458,75572
+44459,30914
+44460,59672
+44461,22121
+44462,40050
+44463,65146
+44464,60817
+44465,55227
+44466,41309
+44467,36700
+44468,7479
+44469,31641
+44470,44080,46808
+44471,33992
+44472,74952
+44473,6856,7451
+44474,47542
+44475,28483,23135
+44476,5358,18982
+44477,22843
+44478,36976,5023
+44479,26692
+44480,76500
+44481,67709
+44482,42242
+44483,77657
+44484,78596
+44485,37371
+44486,61594
+44487,47002
+44488,36964
+44489,13438
+44490,8674,61223
+44491,16443
+44492,29809,38091
+44493,41668
+44494,28431
+44495,32924
+44496,40704
+44497,28999
+44498,48691,3291
+44499,7866
+44500,55303
+44501,71656
+44502,62367,51432
+44503,9933
+44504,33453
+44505,66234
+44506,9731
+44507,52293
+44508,61503
+44509,4476
+44510,52282
+44511,73894
+44512,1950,10660,41184
+44513,43984
+44514,78073
+44515,43480
+44516,34148
+44517,6056,2837
+44518,47016
+44519,47075
+44520,20108
+44521,28108
+44522,19123
+44523,36013
+44524,10235
+44525,64584,831
+44526,51167
+44527,58180
+44528,64142
+44529,48534
+44530,20062
+44531,8402
+44532,38948
+44533,67419
+44534,60711,12747
+44535,18727
+44536,72565
+44537,34754
+44538,61232,32572
+44539,40575
+44540,31234
+44541,953
+44542,55929,3621
+44543,2172
+44544,56587
+44545,14062
+44546,63382,51314,24417
+44547,34691
+44548,71307
+44549,13372
+44550,62030,28346
+44551,31819
+44552,58400
+44553,67582
+44554,62454,23777
+44555,50261
+44556,25561
+44557,18378,79252
+44558,3584
+44559,76333
+44560,62127
+44561,43842
+44562,21315
+44563,77569,56211
+44564,39324
+44565,24172
+44566,30222
+44567,74072,41304
+44568,7908
+44569,4420,73233
+44570,49088
+44571,64614
+44572,9088
+44573,10885,49867
+44574,37945
+44575,52198,38538
+44576,16965
+44577,65593
+44578,30668
+44579,28552
+44580,49640
+44581,43620
+44582,25442
+44583,19281
+44584,65122
+44585,68382
+44586,33054
+44587,17672
+44588,60204,27478
+44589,49962
+44590,11695,66772
+44591,78073,77833
+44592,28747
+44593,9493
+44594,16935
+44595,24959,35691
+44596,19044
+44597,72320
+44598,20501
+44599,75024
+44600,22361
+44601,36422
+44602,59397
+44603,53675
+44604,60552
+44605,67785,59644
+44606,32975
+44607,52309
+44608,48308
+44609,69788
+44610,69799
+44611,13104
+44612,11775,66866
+44613,29265,39915,20614
+44614,20917
+44615,29522
+44616,69093
+44617,61835
+44618,24776
+44619,50499,81883
+44620,805
+44621,48797,59335,56729
+44622,48561,48427
+44623,75636
+44624,50677
+44625,13654,78724
+44626,5135,160
+44627,78598
+44628,23155
+44629,75989
+44630,52337
+44631,21935
+44632,33941
+44633,58332
+44634,64763,2617
+44635,40296,852
+44636,30362
+44637,16376
+44638,69482
+44639,16485
+44640,49703
+44641,74855,78692
+44642,25116
+44643,67791
+44644,57658
+44645,3740
+44646,62934
+44647,58933
+44648,2265
+44649,49048,40384
+44650,69599
+44651,19490
+44652,39982
+44653,33283
+44654,48135
+44655,80414,36198
+44656,70514
+44657,29935
+44658,2722,15649,49176
+44659,35732
+44660,6918
+44661,19490
+44662,50409
+44663,79303,36771
+44664,66104
+44665,13942
+44666,26867
+44667,61483
+44668,60520
+44669,56987
+44670,78767,42234
+44671,7374
+44672,21540
+44673,51326
+44674,42999
+44675,73839
+44676,17643
+44677,12633
+44678,9448
+44679,75384
+44680,78318
+44681,466
+44682,24650
+44683,39909
+44684,29958,5915
+44685,1530,63097
+44686,5014
+44687,50225
+44688,68575
+44689,28828
+44690,18226
+44691,78468
+44692,2356
+44693,27744
+44694,46658
+44695,22900
+44696,11104
+44697,42577
+44698,43063
+44699,20661
+44700,38102
+44701,73240
+44702,73580
+44703,30380
+44704,72397,29229
+44705,80845,45815
+44706,20073
+44707,25842
+44708,46060
+44709,43845
+44710,75284
+44711,14071
+44712,79578
+44713,46734,36778
+44714,57605
+44715,29891
+44716,55612,4255
+44717,41851
+44718,7888
+44719,45611
+44720,25765
+44721,77999
+44722,27377
+44723,40527
+44724,16260,19498
+44725,25853
+44726,81659
+44727,52785
+44728,64544,54467
+44729,26926
+44730,12718
+44731,37753
+44732,80642
+44733,77583
+44734,52437,14610
+44735,51492
+44736,60258
+44737,61983
+44738,32129
+44739,57484
+44740,47912,44922,40062
+44741,71372
+44742,57696,50411
+44743,62495
+44744,37869
+44745,72176
+44746,31615,3263
+44747,54091
+44748,58236
+44749,20009,31195
+44750,60071
+44751,7610
+44752,67402,60603
+44753,40021
+44754,80720
+44755,59210,65415
+44756,37488
+44757,62024
+44758,11396
+44759,29324
+44760,73679
+44761,8574
+44762,54401
+44763,12217
+44764,32732
+44765,72521
+44766,45797
+44767,27014
+44768,48631
+44769,70871
+44770,58329
+44771,62823
+44772,8836
+44773,24438
+44774,30637,72907
+44775,860
+44776,80944
+44777,29490
+44778,10762,12038
+44779,45483
+44780,26641
+44781,69160
+44782,13079,22608
+44783,4191
+44784,7750
+44785,57913
+44786,52959
+44787,69889
+44788,57729
+44789,42781
+44790,52981
+44791,71281
+44792,14630
+44793,26218
+44794,20280
+44795,39787
+44796,53340
+44797,67285
+44798,7482
+44799,59166
+44800,9347,58954
+44801,42245
+44802,905,75819
+44803,38401
+44804,56861
+44805,81669
+44806,520
+44807,11092
+44808,81326
+44809,27813
+44810,5142,10553
+44811,53966
+44812,14313
+44813,51610,59397
+44814,5394
+44815,39354
+44816,44017
+44817,60753
+44818,25416
+44819,23854
+44820,66708
+44821,49437
+44822,64066,81741,40630
+44823,77297
+44824,52671
+44825,49659
+44826,57388
+44827,8173
+44828,1273
+44829,80698
+44830,56389,13613
+44831,24305
+44832,62510
+44833,77303
+44834,39337
+44835,20245
+44836,40739
+44837,50734
+44838,6313,64660,5293
+44839,10715
+44840,64089
+44841,74766
+44842,38366
+44843,70914
+44844,60949,45720
+44845,68673
+44846,40645
+44847,30824,38138
+44848,48091,6119
+44849,23385
+44850,46712
+44851,3522
+44852,31474
+44853,62738
+44854,13495
+44855,74190
+44856,22096,1644
+44857,17437
+44858,68138
+44859,10644
+44860,64336
+44861,28025
+44862,63809,5614
+44863,8858
+44864,30208
+44865,19610
+44866,19921
+44867,7042
+44868,55595
+44869,21295,20695
+44870,81517
+44871,69409
+44872,36853
+44873,23256,62172
+44874,71111,55683
+44875,14210
+44876,63524
+44877,29268
+44878,12633
+44879,61844
+44880,65705,63034
+44881,4675
+44882,63023
+44883,25777
+44884,54927
+44885,33324
+44886,29800
+44887,75881
+44888,25785
+44889,74747
+44890,20560
+44891,36581
+44892,33562
+44893,29298,78706
+44894,18903
+44895,45875,19970
+44896,31750
+44897,59109
+44898,41443
+44899,33597
+44900,36115,32110
+44901,68960
+44902,62454
+44903,32196,17605
+44904,31119
+44905,23390,60965
+44906,68893
+44907,23944,38614
+44908,15689,7173,74069
+44909,60307
+44910,11775,80732
+44911,64387
+44912,49941,36078
+44913,66872,78820
+44914,49679
+44915,53815
+44916,5928
+44917,78969
+44918,78741
+44919,41037
+44920,71717
+44921,41733
+44922,55076,42624
+44923,66631
+44924,57406
+44925,71674,22013
+44926,15375
+44927,73709
+44928,45566
+44929,60899
+44930,44228
+44931,60312,23155
+44932,33912
+44933,12931
+44934,58852
+44935,42469
+44936,68617
+44937,50991
+44938,35618
+44939,35188
+44940,69245
+44941,31410
+44942,57887
+44943,4820
+44944,51217,61047
+44945,49118
+44946,42138
+44947,6881
+44948,47837
+44949,23707
+44950,79948
+44951,2634
+44952,82039
+44953,75020
+44954,11929
+44955,48840,44426
+44956,45269,55153
+44957,69925
+44958,31495,72936
+44959,52407
+44960,850
+44961,37006,75299
+44962,81351
+44963,17553
+44964,32093
+44965,1150
+44966,4823
+44967,59202
+44968,49632
+44969,41530,48790
+44970,42919
+44971,56617
+44972,69863
+44973,49728
+44974,47898,42856,51356
+44975,70790
+44976,74501
+44977,68394,76869
+44978,81804
+44979,80750
+44980,2828
+44981,31084
+44982,33600
+44983,3527
+44984,23422
+44985,480
+44986,30734
+44987,61689
+44988,18914,91
+44989,64675
+44990,27749
+44991,34890
+44992,44100
+44993,40624
+44994,24047
+44995,36167
+44996,76238
+44997,39545
+44998,2194,41772
+44999,53805,25164,68350
+45000,68945
+45001,3724
+45002,10305
+45003,22534
+45004,20700
+45005,62343,40149
+45006,63803
+45007,82121
+45008,77636
+45009,2280
+45010,57881
+45011,56438
+45012,7403
+45013,2659
+45014,71421
+45015,14133,29508,54164,30784
+45016,45803
+45017,27346
+45018,34043
+45019,14447
+45020,13968
+45021,39241
+45022,74216
+45023,49117
+45024,73090
+45025,70796
+45026,57314
+45027,75901
+45028,8904
+45029,62364
+45030,38367
+45031,19470,21934,57157
+45032,36806
+45033,79014
+45034,64951
+45035,79331
+45036,15870,12873
+45037,64897
+45038,20189
+45039,19581
+45040,12641
+45041,14923
+45042,38322
+45043,9249
+45044,26493
+45045,80267
+45046,77359,32883,59895
+45047,40946
+45048,73118,62054
+45049,61565
+45050,34308
+45051,37015
+45052,73407
+45053,7010
+45054,53326
+45055,25012
+45056,67676
+45057,62463
+45058,28539,60403
+45059,79762
+45060,5445
+45061,72718
+45062,24163
+45063,42858,77992
+45064,64129
+45065,46377
+45066,54943
+45067,47589
+45068,49842
+45069,66361
+45070,58153
+45071,59344
+45072,48019,70845
+45073,58534
+45074,73745
+45075,19314
+45076,41545
+45077,78096
+45078,80758
+45079,17896
+45080,79916,52584
+45081,30194,27454
+45082,62482
+45083,45235,63500
+45084,30328
+45085,63287
+45086,76989
+45087,63151
+45088,8195
+45089,4892
+45090,28818
+45091,74605,53802
+45092,67415
+45093,60736
+45094,63405
+45095,67072
+45096,24327
+45097,51864
+45098,56075
+45099,42508
+45100,6265,37581
+45101,44593,11735
+45102,31439
+45103,35524
+45104,47771,5514
+45105,42775
+45106,29514,3716
+45107,26397
+45108,10908,3741
+45109,1414
+45110,16043,38449
+45111,70496
+45112,44623
+45113,54676,7603
+45114,22092
+45115,45142
+45116,35985
+45117,6430
+45118,47326
+45119,32557
+45120,12153
+45121,23135
+45122,74828
+45123,72628
+45124,30910
+45125,9450
+45126,58464
+45127,37551,35263
+45128,23146,943,13740
+45129,36053
+45130,76054,44100
+45131,26396
+45132,69536
+45133,41634
+45134,17651
+45135,14415
+45136,56062
+45137,51330,75718
+45138,26774
+45139,32540
+45140,11104,66812,57885
+45141,10651
+45142,8912
+45143,69472
+45144,33105,80358,47238
+45145,8717
+45146,33653
+45147,24810
+45148,51384,16049
+45149,41453
+45150,5409
+45151,57394
+45152,18242
+45153,9457
+45154,23728
+45155,8072,67767,54935
+45156,52634
+45157,15375
+45158,20934
+45159,65706
+45160,20925
+45161,15553
+45162,31705,35244
+45163,16992
+45164,65544
+45165,42756,46851
+45166,56678
+45167,21788
+45168,75403
+45169,46104
+45170,11142
+45171,78366
+45172,27289
+45173,62053
+45174,32609
+45175,78710
+45176,80934
+45177,41180
+45178,54645,48368
+45179,7698
+45180,41214
+45181,34193
+45182,43356,62156
+45183,6386
+45184,73988
+45185,63646,70847
+45186,1708
+45187,25502
+45188,41963,9182
+45189,67008
+45190,17257
+45191,46070,47587
+45192,18545,11680,68209
+45193,11170
+45194,13823
+45195,62395
+45196,42877,58127,3007
+45197,60957
+45198,25585
+45199,48016
+45200,21256
+45201,50163
+45202,43740
+45203,57192
+45204,70910,18003
+45205,39081
+45206,5471
+45207,47249,65409,71612
+45208,52815,6631,55854
+45209,44380
+45210,54585
+45211,68498
+45212,29394,20567
+45213,75291
+45214,42248
+45215,797
+45216,51559
+45217,12541
+45218,4914
+45219,44252,17156
+45220,60015
+45221,9549
+45222,28769
+45223,43725
+45224,26063
+45225,4761
+45226,67841
+45227,16319
+45228,54871
+45229,10370
+45230,63544
+45231,6592
+45232,43821
+45233,52964,60644
+45234,33979,22015
+45235,75103
+45236,12769
+45237,55396,38708
+45238,50552,80373
+45239,18039,5900,37974
+45240,24230,770
+45241,51365
+45242,21439
+45243,52430
+45244,3124
+45245,55065
+45246,21102,4282
+45247,10421
+45248,74318,12704
+45249,57934,33480
+45250,56843
+45251,11342
+45252,27566
+45253,27256,64218,66087
+45254,20818
+45255,48892,57876
+45256,17333
+45257,50799
+45258,75007
+45259,70807
+45260,12131
+45261,58692
+45262,39728
+45263,67109
+45264,47499
+45265,4868
+45266,24856,74121
+45267,71697
+45268,53204
+45269,8522
+45270,44234
+45271,62083
+45272,13758
+45273,25265,75477
+45274,23526
+45275,76918
+45276,59019
+45277,1858
+45278,70759
+45279,24613
+45280,10443
+45281,42088
+45282,9378
+45283,41056
+45284,34402
+45285,25186
+45286,78548
+45287,37769
+45288,67375,10229
+45289,56791
+45290,40903,62179
+45291,59957,54674
+45292,53385,40440
+45293,77398
+45294,76903
+45295,5959
+45296,15567
+45297,37897
+45298,57795
+45299,59249
+45300,31830
+45301,9528
+45302,19142
+45303,80211,61055
+45304,75589
+45305,9968
+45306,40611,25223
+45307,33750
+45308,7119
+45309,3175
+45310,46460
+45311,75413,7238
+45312,72289
+45313,37257
+45314,36903
+45315,74482
+45316,355
+45317,34330
+45318,65057
+45319,52871
+45320,3370
+45321,13551
+45322,62092,37943
+45323,30648
+45324,80150
+45325,29120
+45326,17706
+45327,76289,43988
+45328,52710
+45329,49456
+45330,58628
+45331,45469
+45332,51342
+45333,38577
+45334,32475,54112
+45335,48143
+45336,48875,71654
+45337,68451
+45338,80022
+45339,74067
+45340,27110,70157
+45341,19727
+45342,5117,36856,60814,40633
+45343,33201
+45344,75552
+45345,73287
+45346,37594
+45347,17503,26327,24268
+45348,69497
+45349,79977
+45350,15031
+45351,79136
+45352,20266
+45353,59499
+45354,42137
+45355,39792,16788
+45356,1535
+45357,673
+45358,5075
+45359,2115
+45360,681,54627
+45361,13461,18205
+45362,17172
+45363,66115
+45364,63438
+45365,53552
+45366,32310
+45367,4393
+45368,76089
+45369,22691
+45370,23421
+45371,70794
+45372,35040
+45373,60960
+45374,32101
+45375,21205
+45376,13021
+45377,39474
+45378,32196
+45379,33024
+45380,33223
+45381,66531
+45382,62404
+45383,65596
+45384,75672
+45385,33825
+45386,2475
+45387,46033
+45388,71172
+45389,57506
+45390,31440
+45391,42794
+45392,23559,43739
+45393,64808
+45394,22214
+45395,76272,64540
+45396,10513
+45397,38885
+45398,77969
+45399,71330
+45400,17772
+45401,67529
+45402,5935,4688
+45403,30445
+45404,7579,66411
+45405,19628
+45406,65281
+45407,15384,55781
+45408,32212,44364
+45409,63382
+45410,8422,72847,50852
+45411,3172
+45412,79775
+45413,17991,48795
+45414,41040,7607
+45415,29901
+45416,17359
+45417,67941
+45418,2178
+45419,43982,44656
+45420,6719
+45421,3295
+45422,80368
+45423,29847
+45424,37195
+45425,49555,51055
+45426,1460
+45427,30976,22447
+45428,76400
+45429,36230
+45430,74668
+45431,64499,76814,11166
+45432,30266
+45433,39768
+45434,69284
+45435,14046
+45436,30804
+45437,55919,79730,55866
+45438,37749
+45439,64123
+45440,6722,54095
+45441,40663
+45442,27696
+45443,23596
+45444,78752
+45445,23929
+45446,54673
+45447,72457
+45448,72070,65865
+45449,45406
+45450,81691
+45451,4578
+45452,27246
+45453,16948,72382
+45454,11809,27273
+45455,58603
+45456,13800
+45457,39566
+45458,62030
+45459,45779
+45460,28978
+45461,9401,63331
+45462,12848
+45463,78452,44607
+45464,39704
+45465,42780
+45466,41471
+45467,3253
+45468,10896
+45469,31864
+45470,11391
+45471,26309
+45472,71734
+45473,34540
+45474,1936,24845
+45475,32648,6926
+45476,73989
+45477,51586,13415
+45478,25203,11267
+45479,64639
+45480,58724,25659
+45481,76951
+45482,9962,47145
+45483,54512
+45484,65234
+45485,51471
+45486,76416
+45487,41170
+45488,1427
+45489,17291,14266,64262
+45490,6663
+45491,25280
+45492,25095
+45493,30227
+45494,21688,44517
+45495,21745
+45496,38218,52725
+45497,70810
+45498,52229
+45499,11848,54487
+45500,42606
+45501,78422,52072
+45502,70172
+45503,68692
+45504,27917
+45505,59983
+45506,55710
+45507,30155
+45508,8288
+45509,61453
+45510,48866,68307
+45511,65224
+45512,608
+45513,66421
+45514,34332,51893
+45515,48631
+45516,3676,6391
+45517,55820
+45518,65090
+45519,4172
+45520,33855,9404
+45521,2642,55757
+45522,63313
+45523,77386
+45524,59565
+45525,16332
+45526,66814
+45527,48999
+45528,54024
+45529,49428
+45530,29677
+45531,25771,51126
+45532,7071
+45533,58714,33324
+45534,74413
+45535,24573
+45536,26118,66581
+45537,28819
+45538,44249
+45539,67769,6530
+45540,53235
+45541,1123,29882
+45542,70576
+45543,49105
+45544,44832,19921
+45545,72661
+45546,4630
+45547,77481,47800,32246
+45548,81660,21333
+45549,71669
+45550,62109
+45551,22806
+45552,13687,67291
+45553,78653,17046,34428
+45554,11833
+45555,60313
+45556,47673,63880
+45557,71621
+45558,67063,74024
+45559,72322
+45560,34569
+45561,21810
+45562,52404,17333
+45563,44884
+45564,2855
+45565,40960
+45566,17393
+45567,48854
+45568,65598
+45569,61526
+45570,74688
+45571,7041
+45572,26899
+45573,51901
+45574,15199
+45575,276,41334
+45576,26967
+45577,24047
+45578,68905
+45579,65309
+45580,43787
+45581,58356
+45582,36416
+45583,35624
+45584,46073
+45585,33417
+45586,37074
+45587,60841
+45588,39422
+45589,55469
+45590,13387
+45591,37753
+45592,62560
+45593,70395
+45594,19153
+45595,51548
+45596,41654,23756
+45597,8548
+45598,66130
+45599,6147
+45600,27043
+45601,80947
+45602,45147
+45603,33958,53700
+45604,3667
+45605,65219,50550
+45606,11549
+45607,68074
+45608,55527
+45609,44617
+45610,71591,24813
+45611,44887
+45612,42088,48517
+45613,2787
+45614,48251
+45615,28519
+45616,44584
+45617,7655
+45618,81235
+45619,58249
+45620,13015
+45621,45159
+45622,9457
+45623,13221
+45624,51729,24293
+45625,56179
+45626,47640,77570
+45627,64531
+45628,6678
+45629,51111
+45630,63319
+45631,55141,80241
+45632,39358
+45633,60112
+45634,41577,72635
+45635,10971
+45636,67642
+45637,72017
+45638,26458
+45639,10564
+45640,1725
+45641,50348
+45642,69354
+45643,11198
+45644,29495,16351,5508
+45645,34156
+45646,64857
+45647,65290
+45648,48767
+45649,33753
+45650,72389
+45651,42921,12352
+45652,6773
+45653,71483,62784
+45654,11480
+45655,3516
+45656,55458
+45657,2217
+45658,55569,5359
+45659,80840
+45660,27558
+45661,14478
+45662,76238,20261
+45663,76803
+45664,59570
+45665,12159
+45666,50853
+45667,81160
+45668,39949
+45669,76474
+45670,59407
+45671,54791
+45672,24760
+45673,21957
+45674,21533
+45675,35841
+45676,61282,81137
+45677,41307
+45678,16579,15680,66677
+45679,61977
+45680,28159
+45681,9344
+45682,30866
+45683,61235
+45684,63831
+45685,70936
+45686,64869
+45687,62744
+45688,57920
+45689,26729
+45690,2446
+45691,33973
+45692,29936,48833
+45693,40151
+45694,31465
+45695,10010
+45696,230,22113
+45697,35353
+45698,32181
+45699,49627
+45700,70376
+45701,15365,43350
+45702,42615
+45703,72016
+45704,39553
+45705,75989
+45706,9130
+45707,25278
+45708,25252,38592
+45709,748,27164
+45710,25946
+45711,75515
+45712,71340
+45713,69001,43676
+45714,20874
+45715,57353,66707
+45716,8002
+45717,71296
+45718,56291,15558
+45719,74884
+45720,11031
+45721,33101,39729
+45722,17512,65083
+45723,35612
+45724,13752
+45725,60649,22437
+45726,42418
+45727,30991
+45728,13360
+45729,43947
+45730,64197
+45731,5698
+45732,36398
+45733,68641,29875
+45734,80503
+45735,36721
+45736,47610
+45737,76183
+45738,42963
+45739,76118
+45740,44815,22218
+45741,40052
+45742,65727
+45743,35188
+45744,62315
+45745,77502,78677,41717
+45746,76173
+45747,31278
+45748,43783
+45749,39720
+45750,62762
+45751,66930
+45752,58180
+45753,62050,77873
+45754,7111
+45755,59647
+45756,15554
+45757,17499
+45758,80642
+45759,31616
+45760,47754
+45761,13160
+45762,9860
+45763,11474,17722
+45764,75935,26493
+45765,49340
+45766,61287
+45767,69019
+45768,8897
+45769,79996,60318
+45770,4309
+45771,16406
+45772,20405
+45773,9768
+45774,53376
+45775,81770
+45776,2899
+45777,820
+45778,71634
+45779,77920,13245
+45780,2273,52688
+45781,37759
+45782,16055,5847
+45783,25601,18023
+45784,12540
+45785,48177
+45786,45714
+45787,41861
+45788,31815
+45789,68705
+45790,67453
+45791,55760
+45792,43333
+45793,43089,64630
+45794,40950
+45795,60433
+45796,59072
+45797,78808
+45798,69004,1642
+45799,40151
+45800,20408,69805
+45801,45716
+45802,30530,6117,43270
+45803,59292,7472
+45804,25876
+45805,56811
+45806,12530
+45807,47999
+45808,70104,46338
+45809,31468
+45810,19841,40093
+45811,28706
+45812,45719
+45813,30649
+45814,24251
+45815,77893
+45816,47707
+45817,49633
+45818,71238
+45819,43711
+45820,53759
+45821,59135
+45822,46705
+45823,32364,13732,56367
+45824,56633
+45825,29747
+45826,50074
+45827,20451
+45828,79051
+45829,26981
+45830,23573,11394
+45831,59804
+45832,54663
+45833,1491,75393
+45834,76497
+45835,29768
+45836,30122
+45837,78890
+45838,13085
+45839,7816,66692
+45840,58035
+45841,10656
+45842,41051
+45843,81122
+45844,60310
+45845,73255
+45846,80596
+45847,60359
+45848,57781
+45849,4870
+45850,43313,53413
+45851,12215
+45852,63459
+45853,76474
+45854,23306
+45855,51634
+45856,39931
+45857,20917
+45858,10097,12355
+45859,64975
+45860,18223
+45861,12528,59391
+45862,23495
+45863,59983
+45864,12980
+45865,50544
+45866,38863
+45867,7841,42516
+45868,45685
+45869,43891
+45870,41581
+45871,21153
+45872,37550
+45873,29867
+45874,18079
+45875,58474
+45876,72937
+45877,68246
+45878,43611
+45879,72494
+45880,5061
+45881,55530
+45882,15848
+45883,56937
+45884,75421
+45885,45210
+45886,69233
+45887,59075
+45888,77306
+45889,37118
+45890,28373
+45891,56626
+45892,12196
+45893,15871
+45894,8101
+45895,72630,29450
+45896,10787
+45897,45535
+45898,32436,36241
+45899,60704,9281
+45900,21075
+45901,77937,28392
+45902,57986
+45903,31895
+45904,75336,75862
+45905,8458
+45906,39501,56131
+45907,24848
+45908,8434
+45909,2803,19421
+45910,21522
+45911,6985,78495
+45912,23463
+45913,64685
+45914,70357
+45915,70736
+45916,65526,10026
+45917,1299
+45918,62905
+45919,3384
+45920,18672
+45921,2812
+45922,38809
+45923,26282
+45924,13831
+45925,31357
+45926,54919
+45927,4500
+45928,54402
+45929,27493,22409
+45930,67038,35512
+45931,53381
+45932,51733
+45933,68885
+45934,76480
+45935,74323,28919
+45936,37986,22578
+45937,35065
+45938,75578
+45939,23494
+45940,37650
+45941,25804
+45942,14814
+45943,20979
+45944,8210
+45945,12565
+45946,18057
+45947,39100,23683,53132,59423
+45948,5389
+45949,81627
+45950,35630
+45951,48282
+45952,29326
+45953,6016
+45954,20937,36456
+45955,43090
+45956,14550
+45957,47877
+45958,69581
+45959,64267
+45960,75387
+45961,6260
+45962,59144
+45963,29029
+45964,76931
+45965,65625
+45966,42962
+45967,7874
+45968,66994
+45969,72170
+45970,80269
+45971,778
+45972,75926
+45973,67125
+45974,9958
+45975,72876
+45976,27692,61421
+45977,23623,44223
+45978,55912
+45979,7322,37275
+45980,67842,36906
+45981,36661
+45982,18182
+45983,67109
+45984,72063
+45985,3600
+45986,51884
+45987,3938
+45988,56464
+45989,20331
+45990,47341,35347
+45991,80935
+45992,44085
+45993,28841
+45994,54,40283
+45995,20115,66814
+45996,11187
+45997,21617
+45998,26338
+45999,81260
+46000,65941
+46001,16914
+46002,41928
+46003,53609
+46004,55856
+46005,74862
+46006,29282
+46007,66436
+46008,42622
+46009,10943
+46010,75421
+46011,37354,64191
+46012,53823
+46013,7134
+46014,3008
+46015,23624
+46016,54,40578
+46017,11181
+46018,48287,19103,56319
+46019,72277
+46020,35287
+46021,67102
+46022,40616
+46023,33140
+46024,72833
+46025,81069
+46026,11725
+46027,39294
+46028,18319
+46029,53012
+46030,61025,36510
+46031,42128,38614
+46032,61614
+46033,78739
+46034,56001
+46035,62190
+46036,13859
+46037,39725,50794
+46038,24171
+46039,54057
+46040,74795
+46041,57922
+46042,75845
+46043,20759,520
+46044,77934
+46045,10629
+46046,61496
+46047,20664
+46048,52891
+46049,44268,23500
+46050,78525
+46051,34519
+46052,67766
+46053,54424
+46054,29925
+46055,52548,47257
+46056,68626
+46057,42570,33278
+46058,23340
+46059,79599
+46060,598
+46061,13093
+46062,9738
+46063,60245
+46064,38903
+46065,36702
+46066,29876
+46067,60413
+46068,42879
+46069,48714
+46070,62899
+46071,39848
+46072,30910
+46073,79194
+46074,45876,10438
+46075,71703
+46076,14042
+46077,40463
+46078,75758
+46079,80171
+46080,66721,65807
+46081,66866,68673,76932
+46082,37117
+46083,18973
+46084,76552
+46085,35879
+46086,57211
+46087,29186
+46088,24084
+46089,53947,68320
+46090,19992
+46091,9464
+46092,38014
+46093,64611
+46094,25047
+46095,26373
+46096,23816
+46097,74985
+46098,20322
+46099,76355
+46100,10428
+46101,57382
+46102,60631
+46103,64933
+46104,80146
+46105,4726
+46106,23484
+46107,48274
+46108,11114
+46109,9694
+46110,24908
+46111,39492
+46112,31379
+46113,30516
+46114,60883
+46115,43015
+46116,32198
+46117,6626
+46118,57354
+46119,9680
+46120,15831
+46121,57019
+46122,51549
+46123,72956
+46124,60844
+46125,37691
+46126,55378,5505
+46127,77246
+46128,59760
+46129,50920
+46130,25306
+46131,19574
+46132,73365,68993
+46133,20474
+46134,33899
+46135,6243
+46136,59987,25754
+46137,47830
+46138,24285
+46139,2192
+46140,69222
+46141,53398
+46142,31223
+46143,13594,69604
+46144,31131
+46145,52629
+46146,36332,3960
+46147,61055
+46148,3744
+46149,42099
+46150,36892
+46151,53939
+46152,24313,50027
+46153,81530
+46154,4228
+46155,56550,70378
+46156,78540
+46157,37240
+46158,66255
+46159,47809
+46160,53854
+46161,68389,20547
+46162,43899,66747
+46163,15502
+46164,551
+46165,81815
+46166,44677
+46167,44239
+46168,36825
+46169,60802
+46170,65999
+46171,71257
+46172,41381,21548
+46173,1280,9698,45450
+46174,79954
+46175,46923
+46176,29729
+46177,70046,79692
+46178,46027
+46179,23728
+46180,9389
+46181,66772
+46182,6003
+46183,42132
+46184,29481
+46185,6473
+46186,58214
+46187,66104,17420
+46188,82020
+46189,69111
+46190,53333
+46191,40347,13386
+46192,69290
+46193,13876,21302
+46194,19587
+46195,67345,61568
+46196,8922
+46197,78356
+46198,52466
+46199,43972
+46200,16780
+46201,48283
+46202,53185
+46203,56443,15401
+46204,36512
+46205,7775
+46206,56454
+46207,19201
+46208,24810
+46209,56958
+46210,46792
+46211,21569,16157
+46212,22586,11611,28332
+46213,11079
+46214,43751
+46215,20524
+46216,29244
+46217,23585
+46218,59820
+46219,44363
+46220,77637
+46221,7411
+46222,71100
+46223,42088
+46224,60458
+46225,4433
+46226,41887,10671
+46227,73601
+46228,6236
+46229,54731
+46230,15771
+46231,6602,36860,50098
+46232,77183
+46233,64472
+46234,56249
+46235,60239
+46236,32644,48691
+46237,38581
+46238,58378
+46239,47060
+46240,37200
+46241,58320
+46242,30432
+46243,10925
+46244,54461
+46245,4045
+46246,4473
+46247,14718
+46248,46143
+46249,32917
+46250,68405,61539
+46251,1806
+46252,41240,66179
+46253,40698,81366
+46254,6155
+46255,38097
+46256,72869
+46257,26388
+46258,40461
+46259,13720
+46260,77472,38289
+46261,63732,37642
+46262,72558,46426
+46263,44215
+46264,60297
+46265,82110
+46266,30501
+46267,1174,28336,20740
+46268,52051,66202
+46269,23614
+46270,24126
+46271,23106
+46272,3269
+46273,54890
+46274,39336
+46275,22398
+46276,60
+46277,46034,73088
+46278,37380
+46279,48265
+46280,631
+46281,14440
+46282,16767,31034
+46283,56130,45698
+46284,9404
+46285,76296
+46286,35230,34526
+46287,58452
+46288,19018
+46289,54420,68308
+46290,28788
+46291,40592
+46292,45357
+46293,39725
+46294,21632
+46295,1290,67330
+46296,41315,8702,8552
+46297,23158
+46298,81292
+46299,79180,3517
+46300,40059
+46301,11270
+46302,69889
+46303,58635,5417
+46304,27417,28466
+46305,60421
+46306,63949
+46307,50798
+46308,2071
+46309,3790,22539
+46310,23481
+46311,61293
+46312,61850
+46313,26169,16373
+46314,34489
+46315,4748
+46316,9354
+46317,55041,32813
+46318,75166
+46319,74069,77919
+46320,71174
+46321,81761,74742,50380
+46322,24435,80589
+46323,7228
+46324,28242
+46325,3326
+46326,2387
+46327,64601
+46328,60498
+46329,42586
+46330,40005
+46331,62150
+46332,13681
+46333,16767,29393
+46334,55439
+46335,48282
+46336,33684
+46337,32363
+46338,25643
+46339,66690
+46340,580
+46341,15855
+46342,34083,58045,2868
+46343,81934
+46344,36023,12598,43133
+46345,24917
+46346,27747,46899
+46347,21415
+46348,75214
+46349,15983
+46350,49088
+46351,73916
+46352,10048
+46353,27679
+46354,79600
+46355,79648
+46356,48273
+46357,40634
+46358,43376
+46359,23797
+46360,18284
+46361,56753
+46362,46243,49810
+46363,50928
+46364,68036,55534
+46365,6034
+46366,36101
+46367,77796
+46368,60913
+46369,39179
+46370,13819
+46371,13029
+46372,81485,68798
+46373,23661
+46374,17557
+46375,79412
+46376,75252
+46377,8729
+46378,65171
+46379,75864
+46380,27528
+46381,53131
+46382,34429
+46383,29386
+46384,42130
+46385,35903
+46386,81442
+46387,11049
+46388,7655
+46389,35932,11494
+46390,7692,61208
+46391,62297,28512,8101
+46392,56348
+46393,56807
+46394,15154
+46395,59664
+46396,73003
+46397,28977
+46398,3313
+46399,38880
+46400,62778
+46401,3845
+46402,72014
+46403,23994
+46404,28930
+46405,58603
+46406,67718
+46407,31762
+46408,39077,64345
+46409,59671
+46410,75819,46759
+46411,43594,55675,10608
+46412,79824,42634
+46413,42767
+46414,34399
+46415,25278
+46416,29016,27269
+46417,63843
+46418,56315
+46419,26851
+46420,6431
+46421,5377
+46422,67352
+46423,28488
+46424,74544,61257,39843,8710
+46425,13185
+46426,75408
+46427,58754,1259
+46428,32365
+46429,4183
+46430,61215
+46431,58875,4403
+46432,53742,28773
+46433,53392
+46434,66756
+46435,79915
+46436,35107
+46437,52648
+46438,44884
+46439,78
+46440,76011
+46441,20060
+46442,56211
+46443,820,24795
+46444,48944,28966
+46445,31012
+46446,55124,33490
+46447,14389
+46448,27915,61423
+46449,39777
+46450,33714
+46451,45295,58743,65227
+46452,22585,44029
+46453,15628
+46454,74500
+46455,8304
+46456,66645
+46457,69484
+46458,39872
+46459,2230
+46460,18541
+46461,31465
+46462,28258
+46463,18412
+46464,42968
+46465,47152
+46466,53802
+46467,51487
+46468,36482,42960
+46469,29336,62337
+46470,68189
+46471,37504
+46472,27980
+46473,15524
+46474,35875
+46475,66927
+46476,20585
+46477,58816
+46478,71713
+46479,77206
+46480,12698
+46481,24846,79672
+46482,27296
+46483,64882
+46484,66543
+46485,79145
+46486,81385
+46487,21075
+46488,14622
+46489,27520
+46490,45021
+46491,20766,74868
+46492,47998
+46493,55561,9234
+46494,49458
+46495,32710,22069,47287
+46496,71976
+46497,20133,57775
+46498,64248
+46499,79587
+46500,26247
+46501,15960
+46502,20416,9674
+46503,72875
+46504,13437
+46505,49598
+46506,28650
+46507,6925,70829
+46508,10863,37770
+46509,68374
+46510,60204,14663
+46511,7442
+46512,14592
+46513,19773
+46514,22308,43114
+46515,21725
+46516,75079
+46517,2902,53724
+46518,22969
+46519,11391
+46520,27679
+46521,60900
+46522,29750
+46523,56652
+46524,54545
+46525,54827
+46526,24351
+46527,50488
+46528,57577
+46529,20724
+46530,77708
+46531,82087
+46532,17948
+46533,54253,26826
+46534,26296
+46535,76936
+46536,40135
+46537,43364
+46538,68040
+46539,17262,54487
+46540,11782,31823,48939
+46541,59085
+46542,17722,34215
+46543,23384
+46544,31115
+46545,46811
+46546,9133
+46547,39716
+46548,61130,68276
+46549,76988,35641
+46550,77760
+46551,82033
+46552,51414
+46553,30960
+46554,25553
+46555,53829
+46556,34210
+46557,81336
+46558,53097
+46559,1249
+46560,15981
+46561,16915
+46562,21564
+46563,79645,75619
+46564,49052
+46565,68806,47910
+46566,58180
+46567,35345
+46568,23082,57444
+46569,23248
+46570,72877
+46571,70146
+46572,65661
+46573,79366
+46574,38649
+46575,70524
+46576,72902
+46577,24843
+46578,71209
+46579,49915
+46580,57774
+46581,26570
+46582,13698,28598,11787
+46583,81331
+46584,22589
+46585,16753
+46586,37000
+46587,80732
+46588,42173,46512
+46589,28821,12319
+46590,12331
+46591,6126
+46592,57931
+46593,13599
+46594,34124
+46595,30013
+46596,5744
+46597,68660
+46598,78501,25066
+46599,77079
+46600,12056,61463
+46601,17301
+46602,8995
+46603,13561,21169
+46604,4419
+46605,53567
+46606,14079,27119
+46607,20218
+46608,80949,19824,77730
+46609,42102
+46610,23235,30683
+46611,58124,21446
+46612,49083
+46613,37572
+46614,61225,71718
+46615,70517
+46616,461
+46617,49818
+46618,68988
+46619,53524
+46620,52860
+46621,33382
+46622,54147
+46623,22035
+46624,43602,76599
+46625,32562
+46626,10481
+46627,68937,75104
+46628,20948
+46629,5237,68063
+46630,69106
+46631,67451,34324
+46632,44223
+46633,57555
+46634,80573
+46635,45647
+46636,56955
+46637,34834
+46638,62604
+46639,67326,59324
+46640,67247
+46641,59506
+46642,42707
+46643,40031
+46644,77350
+46645,59910
+46646,27629
+46647,80072
+46648,60472
+46649,10688
+46650,51634
+46651,18644
+46652,53313
+46653,74215
+46654,50989
+46655,20580
+46656,67933
+46657,4568
+46658,5301
+46659,36787
+46660,15324
+46661,64546
+46662,72635
+46663,24228,61899
+46664,59028
+46665,30699
+46666,4701,71365
+46667,4624
+46668,50980
+46669,65793
+46670,22497
+46671,32631,11951
+46672,73267
+46673,53468
+46674,31994
+46675,3126
+46676,75589,26152
+46677,39029
+46678,78674
+46679,44417
+46680,31594
+46681,72625
+46682,28223
+46683,65331
+46684,52226
+46685,60916
+46686,76534
+46687,67392,40154
+46688,56256
+46689,9293
+46690,42674
+46691,81466
+46692,5009,67027
+46693,20106,80841
+46694,30317
+46695,21471
+46696,47908
+46697,47575
+46698,29903,33027
+46699,16799
+46700,40600,10676
+46701,13956
+46702,12581,79539
+46703,28539
+46704,72926
+46705,42612
+46706,29275
+46707,42134
+46708,33598,78994
+46709,13287
+46710,18856
+46711,68061
+46712,77760
+46713,42654,4797
+46714,12240
+46715,51597
+46716,7193
+46717,32987,61132
+46718,55469
+46719,4114,6735
+46720,6534
+46721,39047
+46722,66724,30063
+46723,24610,20648
+46724,51004
+46725,40767
+46726,21971
+46727,38686
+46728,54537
+46729,31123,46854
+46730,52362
+46731,15534
+46732,10574
+46733,40199
+46734,60510
+46735,44204
+46736,61923,19059,32633,30552
+46737,8530
+46738,81075
+46739,23526
+46740,8347,33319
+46741,11797
+46742,14409
+46743,34397
+46744,8013
+46745,52782,7463
+46746,74834,56971
+46747,49123,68532,69475
+46748,75589
+46749,14638
+46750,42459
+46751,27706
+46752,76770,29385
+46753,11905
+46754,1170
+46755,33219
+46756,13740
+46757,23732
+46758,69101
+46759,36556,7998
+46760,32128
+46761,63690,53609,37663
+46762,26926
+46763,49552
+46764,17905
+46765,34638
+46766,54249
+46767,64064
+46768,78676
+46769,78611
+46770,68302
+46771,46751
+46772,6121
+46773,30501
+46774,22600
+46775,43219
+46776,70754
+46777,46701,54090
+46778,2226,62391
+46779,33495
+46780,46709
+46781,29883
+46782,27582,30741,3719
+46783,37548,77065
+46784,4555
+46785,30719
+46786,62049
+46787,63180
+46788,57283
+46789,25463
+46790,1975
+46791,44333
+46792,9267
+46793,56878
+46794,46266
+46795,47851
+46796,13871,57421
+46797,59142
+46798,26469,70783
+46799,64420
+46800,42078
+46801,31271
+46802,42655
+46803,70697
+46804,64205
+46805,4913,63422
+46806,41621
+46807,59921
+46808,32452
+46809,25132
+46810,32711
+46811,34330
+46812,39659
+46813,8782
+46814,82125
+46815,73537
+46816,23037,76738
+46817,27256
+46818,7115
+46819,66801,33622
+46820,44599
+46821,2803
+46822,14820
+46823,72915
+46824,23192
+46825,49303
+46826,624
+46827,54436
+46828,78286
+46829,27590
+46830,44849
+46831,22028
+46832,47016
+46833,25613
+46834,37430
+46835,1535
+46836,46907
+46837,1232
+46838,3646
+46839,13415,79082,16836
+46840,28011
+46841,79616
+46842,10566
+46843,34065,71365
+46844,46641
+46845,66113
+46846,58139
+46847,40147
+46848,33291
+46849,50328
+46850,13842
+46851,49187
+46852,42394
+46853,41407
+46854,43918
+46855,69155
+46856,24191
+46857,41057
+46858,73082
+46859,29913,2
+46860,59783,55151
+46861,64318,21297
+46862,32179,37209,77622
+46863,17991,53798
+46864,57998
+46865,4577
+46866,19148
+46867,52757
+46868,27450
+46869,49823
+46870,45534
+46871,30327
+46872,36545
+46873,55695
+46874,61400
+46875,36067
+46876,77237
+46877,71674
+46878,56921
+46879,49689
+46880,24641
+46881,49801
+46882,52079
+46883,47661
+46884,3135
+46885,8014
+46886,41282
+46887,55582
+46888,45574,60995
+46889,6010
+46890,50803
+46891,65004
+46892,30338
+46893,22280
+46894,49400
+46895,24861
+46896,40441
+46897,20427
+46898,77307
+46899,75030
+46900,50561
+46901,64755,42956
+46902,50418
+46903,13156
+46904,79059
+46905,23637
+46906,59422
+46907,4484
+46908,72052
+46909,70162
+46910,24251
+46911,22371
+46912,19525
+46913,63034
+46914,32360
+46915,78133
+46916,40026,352
+46917,49640
+46918,57588
+46919,26210
+46920,56603
+46921,1123
+46922,74037,5117
+46923,43581
+46924,75779
+46925,31543
+46926,58585
+46927,57865
+46928,42827,35825
+46929,37603
+46930,22674
+46931,22908
+46932,80252
+46933,58449
+46934,34353
+46935,28917
+46936,41185
+46937,55369
+46938,81214
+46939,31864
+46940,8180
+46941,54708
+46942,61618
+46943,13450,50288
+46944,50971
+46945,76523,63722
+46946,67646
+46947,78947,81639
+46948,79137,61590
+46949,32354,9961
+46950,41392
+46951,21365
+46952,80068,26742
+46953,26333
+46954,8208
+46955,19574,25741
+46956,76026
+46957,2651
+46958,50777
+46959,41366
+46960,11936
+46961,17350
+46962,11695
+46963,19172,55116
+46964,32128
+46965,43496
+46966,79934
+46967,15089,72095
+46968,46788
+46969,23258
+46970,33382
+46971,2970
+46972,29811,70455
+46973,48216
+46974,17019,903
+46975,15983
+46976,72232
+46977,66008
+46978,66134
+46979,14366
+46980,6574
+46981,3642,80254
+46982,3637,38903
+46983,23039
+46984,42138
+46985,30163
+46986,53515
+46987,61341
+46988,1579
+46989,65477,74391
+46990,24607
+46991,13553
+46992,19013
+46993,38084
+46994,75522,49709
+46995,45545,4136
+46996,41100
+46997,41008
+46998,58341
+46999,55357
+47000,44017
+47001,50767,48724,27106
+47002,6175
+47003,44879
+47004,23794
+47005,4881
+47006,62124
+47007,80313
+47008,40126
+47009,55982,20010
+47010,30669
+47011,73625
+47012,50793
+47013,49396
+47014,21844
+47015,41520
+47016,539
+47017,70472
+47018,6575,20488
+47019,23918,63329
+47020,78071
+47021,3146
+47022,5270
+47023,52709
+47024,4700
+47025,57302
+47026,57859
+47027,36878
+47028,60437
+47029,78951
+47030,68532
+47031,2733
+47032,8837
+47033,9108
+47034,40996
+47035,58604
+47036,75197
+47037,24992,38721,74735
+47038,57130
+47039,74572
+47040,51096
+47041,65379
+47042,36889
+47043,45855
+47044,60982
+47045,68399
+47046,2507,22685
+47047,22478
+47048,326
+47049,74583,7071
+47050,51330,7368
+47051,55030,16988,23751
+47052,69944
+47053,71478
+47054,16755
+47055,38208
+47056,48907
+47057,8410
+47058,41122
+47059,64920
+47060,6116
+47061,29060
+47062,9247,72354
+47063,51316
+47064,20916
+47065,82154
+47066,41703
+47067,71548
+47068,55245
+47069,24539
+47070,50446
+47071,43904
+47072,51819
+47073,71403
+47074,75621
+47075,53309
+47076,54401
+47077,23297
+47078,73701
+47079,41385
+47080,71080
+47081,17734
+47082,63417
+47083,34502,15587
+47084,68624
+47085,73820
+47086,40771
+47087,12640
+47088,79818
+47089,31344
+47090,33981,35344
+47091,44997
+47092,77324,65597
+47093,53006,13156
+47094,28362
+47095,65852
+47096,41298
+47097,21569,36251
+47098,43028
+47099,3888,37770
+47100,40534
+47101,31226,64895
+47102,68463,68036
+47103,1929
+47104,81522
+47105,4868
+47106,31828,12968
+47107,22586
+47108,39464
+47109,1435
+47110,46892,65222
+47111,40595,24513
+47112,78376
+47113,80466,53955
+47114,52866
+47115,69111
+47116,40347,19308
+47117,38065
+47118,71443
+47119,72093,44642
+47120,67783
+47121,26162
+47122,16645
+47123,57928
+47124,13486
+47125,81362
+47126,29530
+47127,64021
+47128,72793,43983
+47129,1800,30796
+47130,38461
+47131,50408
+47132,24094,8729
+47133,31710
+47134,44451
+47135,61526
+47136,41848,33894
+47137,73789
+47138,40079
+47139,10014
+47140,37082
+47141,28238
+47142,15179
+47143,35850
+47144,78786
+47145,20118
+47146,17056
+47147,29864
+47148,19883
+47149,41655,59539
+47150,71492
+47151,59731
+47152,71518
+47153,17827,27449
+47154,12355,9862
+47155,51458,27460
+47156,63167
+47157,22455
+47158,44513,35728,58714,31972
+47159,33000
+47160,8221
+47161,8398,59230
+47162,52965
+47163,7934
+47164,60237
+47165,7180,32479
+47166,37057
+47167,79198
+47168,2027,45857
+47169,25670,51478
+47170,49227
+47171,57264,62466
+47172,63988
+47173,6807
+47174,19166
+47175,63216
+47176,69183
+47177,40190
+47178,381
+47179,38747
+47180,14581
+47181,61944
+47182,17769
+47183,35550
+47184,35234,54043
+47185,73810
+47186,19275
+47187,60128
+47188,44626
+47189,53992
+47190,28794,1902
+47191,25148
+47192,69894
+47193,48278
+47194,10715
+47195,30718
+47196,14770
+47197,9407
+47198,74173
+47199,37209
+47200,7767
+47201,1133
+47202,57931
+47203,49598
+47204,81478
+47205,16672
+47206,27276
+47207,31025
+47208,35258
+47209,47662
+47210,32310,73880
+47211,26573,69707
+47212,2663,80034
+47213,11728
+47214,61992
+47215,4980
+47216,45705
+47217,29265
+47218,52977
+47219,49415
+47220,77304
+47221,65479
+47222,6484
+47223,48883
+47224,68409
+47225,50940
+47226,72895
+47227,76348
+47228,69606,19230
+47229,53809
+47230,18637
+47231,36531
+47232,44470
+47233,64416
+47234,51931
+47235,37325
+47236,54534,9024
+47237,30649
+47238,22043
+47239,55872
+47240,71043
+47241,39564,76092
+47242,47534
+47243,55804,25188
+47244,11837
+47245,50752
+47246,21462,26218
+47247,62956
+47248,56904
+47249,62240
+47250,35498,7393,52211
+47251,74556
+47252,13467
+47253,21250
+47254,64573,24460
+47255,36239
+47256,75595
+47257,51570,15814
+47258,69904
+47259,3421
+47260,29422
+47261,21925,44472
+47262,47522
+47263,30124,78649
+47264,1415
+47265,78746
+47266,18876
+47267,37373
+47268,71693
+47269,65636
+47270,54832
+47271,61563
+47272,15573
+47273,10565,25315
+47274,49017
+47275,62963
+47276,73094
+47277,17341
+47278,45269
+47279,40563
+47280,76525
+47281,78322
+47282,49781
+47283,65114
+47284,34013
+47285,23874
+47286,30663
+47287,43119,27213,60497
+47288,22107
+47289,15652
+47290,56999
+47291,23782
+47292,76381,67635,80200
+47293,13337
+47294,40341
+47295,32363
+47296,64223
+47297,31086,51227
+47298,7269
+47299,45186
+47300,18637
+47301,37639
+47302,24908
+47303,55369
+47304,53662,60331
+47305,78194
+47306,80781,47975,14218
+47307,30896
+47308,15443
+47309,14730
+47310,13648
+47311,26514
+47312,33320
+47313,1038
+47314,29993
+47315,54178
+47316,67426
+47317,52210
+47318,18491
+47319,37182
+47320,3224
+47321,15316
+47322,78893
+47323,28087
+47324,3452,9933
+47325,57887
+47326,3601
+47327,47068
+47328,10195
+47329,67733
+47330,49065
+47331,19022
+47332,74042,58127
+47333,28501,72766,75883
+47334,71883
+47335,64583
+47336,31440
+47337,5870
+47338,21789
+47339,28259
+47340,28315
+47341,37342
+47342,24474
+47343,35599
+47344,26678
+47345,59480
+47346,78899
+47347,6521
+47348,37627
+47349,61272
+47350,40791
+47351,68771
+47352,16549
+47353,46794,13897
+47354,68626,61506
+47355,1008
+47356,66854
+47357,75512
+47358,49679,76207
+47359,16992
+47360,64947
+47361,48096
+47362,28442
+47363,51201
+47364,42660
+47365,51633
+47366,38758
+47367,50002
+47368,17095
+47369,77939
+47370,79787
+47371,11285
+47372,71398
+47373,57188
+47374,3096
+47375,37110,17919
+47376,54394
+47377,30416
+47378,75453,66912
+47379,360,34927
+47380,21642
+47381,19077
+47382,31868
+47383,34132
+47384,78586
+47385,41891
+47386,42524,60304
+47387,73954
+47388,19748
+47389,75428
+47390,28845
+47391,41366
+47392,78316,49090
+47393,9327,48042
+47394,16699
+47395,49668
+47396,13528
+47397,5878
+47398,45359
+47399,51504,72632
+47400,1157
+47401,29365
+47402,41232
+47403,14993
+47404,51144
+47405,41397
+47406,17357
+47407,15073,58232
+47408,54658,6488
+47409,15843
+47410,80181
+47411,3421
+47412,62329,32284
+47413,50717
+47414,30451
+47415,13388
+47416,17046
+47417,39984,45161
+47418,82162
+47419,42276,67824
+47420,49605
+47421,82131
+47422,19619
+47423,31531
+47424,32410,27244
+47425,32113
+47426,62633,6143
+47427,58020
+47428,35138
+47429,40011,56187
+47430,32744
+47431,63689
+47432,11809
+47433,45153
+47434,67175
+47435,54433
+47436,34535
+47437,54927
+47438,63653
+47439,50931,14217
+47440,26855,33121
+47441,79574
+47442,59319
+47443,31636
+47444,74937
+47445,49481
+47446,47660
+47447,56259
+47448,8521
+47449,1405
+47450,71576,69285
+47451,36685
+47452,29003
+47453,69904
+47454,60100
+47455,5003
+47456,45157
+47457,77246
+47458,79964,33054
+47459,65281
+47460,42124
+47461,38723
+47462,2184
+47463,70394
+47464,34388
+47465,19547
+47466,7303
+47467,57406
+47468,59855
+47469,31463,25829
+47470,21788
+47471,2724
+47472,33851
+47473,17609,42994
+47474,37970
+47475,41681
+47476,22986
+47477,13209,26624
+47478,13200
+47479,74776
+47480,26403
+47481,1020,56848
+47482,15107
+47483,52115
+47484,6673
+47485,10592
+47486,62282
+47487,44559
+47488,39284,66537
+47489,8681
+47490,2226
+47491,31321
+47492,18230
+47493,66688
+47494,23135
+47495,25192
+47496,1899
+47497,14313
+47498,44172
+47499,41860,28990
+47500,79160,19446
+47501,7903
+47502,55395
+47503,3194
+47504,13685
+47505,12413
+47506,59783
+47507,26739,44789
+47508,32199
+47509,67880
+47510,49958
+47511,22940
+47512,57366
+47513,4420
+47514,27343
+47515,24579
+47516,13964
+47517,451
+47518,75595
+47519,33224
+47520,70885
+47521,51432
+47522,24703
+47523,15758
+47524,48305
+47525,61269
+47526,54016,63492
+47527,29430
+47528,32755
+47529,16234,76827
+47530,76694
+47531,28242
+47532,13590
+47533,24090
+47534,73652
+47535,30824
+47536,51176,53198
+47537,169
+47538,23771
+47539,52329
+47540,27047
+47541,14055
+47542,3343,65695
+47543,20278
+47544,33563
+47545,58076
+47546,63184
+47547,31361
+47548,10265
+47549,64090,39870
+47550,57707
+47551,51850
+47552,65739
+47553,65104
+47554,27663
+47555,54183
+47556,50189
+47557,33818
+47558,80282
+47559,38560
+47560,29862
+47561,76929
+47562,9751,54093
+47563,62048
+47564,38491
+47565,8167
+47566,19195
+47567,31553
+47568,67075
+47569,19986
+47570,8346,61330
+47571,22023
+47572,65511,23984,40835
+47573,52592,40272
+47574,66633
+47575,76361
+47576,51559
+47577,16076
+47578,62150,45547
+47579,69360,58281
+47580,78808
+47581,39247,58217
+47582,33322
+47583,62969
+47584,48823,65143
+47585,50400
+47586,49003,13299
+47587,38932
+47588,33804
+47589,55276
+47590,66977
+47591,81555
+47592,32895
+47593,81966
+47594,39501
+47595,53266
+47596,91,64739
+47597,75531,54038
+47598,12698,49967
+47599,33263
+47600,41945
+47601,22312
+47602,2128
+47603,2970
+47604,33352
+47605,21345
+47606,26754
+47607,48063
+47608,76572,56437
+47609,14576
+47610,64511
+47611,64706
+47612,42586
+47613,52337
+47614,77598
+47615,5856
+47616,908,2114
+47617,29156
+47618,34990
+47619,40308,29983
+47620,34084
+47621,27277
+47622,79599,55871
+47623,31420
+47624,61599
+47625,23993
+47626,57999
+47627,75398
+47628,48689
+47629,47763
+47630,74821
+47631,34165
+47632,53051
+47633,40790
+47634,21766
+47635,32007,22649
+47636,30524
+47637,76668
+47638,64837,60027
+47639,19395
+47640,5396
+47641,27410
+47642,25784
+47643,45065,54206
+47644,51201
+47645,24865
+47646,49587
+47647,36973
+47648,67207
+47649,34353
+47650,12306
+47651,74661
+47652,74963
+47653,21191,13479
+47654,32722
+47655,70013
+47656,48402
+47657,44878
+47658,45210,72705
+47659,29743
+47660,40138
+47661,51614
+47662,62337,37639
+47663,28634
+47664,61617
+47665,759
+47666,65652,72900
+47667,30606,51628
+47668,48026
+47669,78383
+47670,13993,79964,49066
+47671,60697
+47672,54442
+47673,50858
+47674,73407
+47675,23510
+47676,75474,1657
+47677,24971
+47678,1367
+47679,9061
+47680,65691,22802
+47681,12875
+47682,62429
+47683,176
+47684,24483
+47685,15851
+47686,62908
+47687,65145
+47688,65753
+47689,80421
+47690,14821
+47691,32021
+47692,76352
+47693,34243,58306
+47694,62500
+47695,5257
+47696,59197
+47697,30699,2301,8263
+47698,47942
+47699,54830
+47700,82063
+47701,58588,78649
+47702,57381,44573
+47703,48434
+47704,7661
+47705,20349
+47706,76938
+47707,65192
+47708,43503
+47709,62575,78416
+47710,71576
+47711,70699
+47712,54125
+47713,64173,30656
+47714,56728
+47715,27668
+47716,67298
+47717,76278
+47718,23
+47719,75537
+47720,71332
+47721,22545
+47722,36924,68159
+47723,13786
+47724,74283
+47725,11574
+47726,32481
+47727,48729,25949
+47728,56754
+47729,21735,29014
+47730,64716
+47731,28758
+47732,10228
+47733,74208,9664
+47734,58689
+47735,35900
+47736,22718,32169
+47737,11094
+47738,20105
+47739,75236
+47740,40461
+47741,80843
+47742,1805
+47743,67937
+47744,12387,7827
+47745,6668
+47746,67714
+47747,64902
+47748,3608
+47749,29882,62204
+47750,19825
+47751,22017
+47752,5978
+47753,58127
+47754,32609
+47755,60668
+47756,8755,4
+47757,73600
+47758,68395
+47759,33133
+47760,14808
+47761,35621
+47762,81806
+47763,1280
+47764,38609
+47765,24836
+47766,36327
+47767,12973,34728
+47768,539
+47769,69472
+47770,80560
+47771,78676
+47772,60767
+47773,42171
+47774,66211
+47775,49700
+47776,28703
+47777,77458
+47778,80523
+47779,75399
+47780,5156
+47781,31535
+47782,52400
+47783,36157,16303
+47784,29675,61689
+47785,23968,52031
+47786,57510
+47787,81263
+47788,11431
+47789,49159
+47790,43438,26695
+47791,62291
+47792,32622
+47793,59068
+47794,82097
+47795,1499
+47796,6574
+47797,12985
+47798,80855
+47799,30697
+47800,44451
+47801,58035
+47802,36469
+47803,40168
+47804,54316
+47805,81786
+47806,46577
+47807,13814,59475
+47808,26453
+47809,40735
+47810,50837
+47811,17351
+47812,37209
+47813,68691,42657
+47814,72898
+47815,11703,77331
+47816,81600
+47817,43573
+47818,30965
+47819,15499
+47820,12675
+47821,30222
+47822,32765
+47823,63008
+47824,23879,37953
+47825,60975,58810
+47826,17606
+47827,6663
+47828,36352
+47829,1712
+47830,35932
+47831,67495,10073,80190
+47832,66048
+47833,7332
+47834,29928
+47835,67970,136
+47836,38131
+47837,80155
+47838,3528,33639
+47839,69773
+47840,68960
+47841,52144
+47842,28168
+47843,50506,26430
+47844,77426
+47845,29434
+47846,48456
+47847,9227,39220
+47848,36047
+47849,45337
+47850,6277
+47851,79296
+47852,23381
+47853,60194
+47854,73782
+47855,74500
+47856,8110
+47857,49334
+47858,73134
+47859,48921
+47860,57285
+47861,2358
+47862,76647,62464,22492
+47863,13882
+47864,80947
+47865,12643
+47866,70986
+47867,15199
+47868,46552
+47869,9837
+47870,21471
+47871,68594
+47872,17964
+47873,57096
+47874,50078
+47875,54971
+47876,74638
+47877,20021
+47878,81700,73329
+47879,36839
+47880,65529
+47881,60049
+47882,38306
+47883,81248
+47884,17194,64045
+47885,10055
+47886,45392
+47887,32146,68090
+47888,59264
+47889,7806
+47890,76199
+47891,50510
+47892,41498
+47893,79198
+47894,68660
+47895,65293,70009
+47896,39352
+47897,19299
+47898,47504
+47899,72773
+47900,6742,10904
+47901,19572
+47902,66615
+47903,7795
+47904,14895,2303
+47905,36007
+47906,20594
+47907,78336
+47908,20929
+47909,42901,8421
+47910,79164
+47911,31529
+47912,42319
+47913,46367
+47914,18104
+47915,52713
+47916,18636
+47917,12310
+47918,41582
+47919,73255
+47920,34013
+47921,59612
+47922,81297
+47923,73021
+47924,71518
+47925,61299
+47926,31493
+47927,67068
+47928,1363
+47929,8848
+47930,43648
+47931,64376
+47932,32572
+47933,34274
+47934,10830
+47935,39394
+47936,14862
+47937,14930,65335
+47938,62811,71354
+47939,8564
+47940,14888
+47941,24292,1192
+47942,54965
+47943,26452,26610
+47944,3168
+47945,48776
+47946,24573
+47947,49812
+47948,35571
+47949,64106
+47950,78820
+47951,34
+47952,31243
+47953,69725
+47954,69906
+47955,11833
+47956,66147
+47957,8036
+47958,25295
+47959,39933,8248
+47960,14071
+47961,35902,75185,73293
+47962,11470
+47963,37212,36903
+47964,76940
+47965,1901
+47966,68714
+47967,58053
+47968,56460,53245
+47969,58392
+47970,71584
+47971,9772
+47972,46435
+47973,3009,75235,27357
+47974,56937
+47975,53845
+47976,61113
+47977,75502
+47978,34082
+47979,67320
+47980,28767
+47981,40083
+47982,26487
+47983,75474,51561
+47984,22642
+47985,42309
+47986,45530
+47987,67835
+47988,30070
+47989,31757
+47990,5621
+47991,92
+47992,19401
+47993,60081
+47994,23199,14016
+47995,6071
+47996,31930
+47997,68631
+47998,61136
+47999,9923
+48000,49427
+48001,17713
+48002,38869,72491
+48003,32794,80852
+48004,54446,39906
+48005,59920
+48006,9908
+48007,33250
+48008,59829
+48009,36139
+48010,30659,43964
+48011,44069
+48012,18319,76320,20706
+48013,7722
+48014,75268
+48015,19961
+48016,58268
+48017,28079
+48018,50841
+48019,65774
+48020,63699
+48021,35594
+48022,81402
+48023,4538,661
+48024,30958
+48025,7848
+48026,81249
+48027,43203
+48028,50827
+48029,63957
+48030,35018,23494
+48031,53659
+48032,67254
+48033,58746
+48034,18145,20793
+48035,74175
+48036,77430
+48037,32398
+48038,66780
+48039,13266
+48040,15407,63287
+48041,30649
+48042,3661
+48043,57990
+48044,70407,76231
+48045,17756
+48046,30335
+48047,43034
+48048,8817
+48049,9600,9623,27422
+48050,81700
+48051,33220
+48052,36632
+48053,71949
+48054,30541
+48055,10951,7812,25470
+48056,81229,16601
+48057,53601
+48058,59959
+48059,4539
+48060,9270
+48061,50338
+48062,31172
+48063,22586
+48064,48557
+48065,34623
+48066,29186
+48067,20642
+48068,7306
+48069,50360
+48070,55557,23066
+48071,66432
+48072,50114
+48073,74230,9900
+48074,33188
+48075,16792,81170
+48076,59895
+48077,75815
+48078,4106
+48079,25417
+48080,6423,67926
+48081,10591
+48082,26289
+48083,1989,76327
+48084,37484
+48085,50969
+48086,12228
+48087,38371
+48088,25398,31942
+48089,55066
+48090,2467
+48091,13053
+48092,9604
+48093,6776
+48094,16944
+48095,625
+48096,1974
+48097,2005
+48098,4364
+48099,69456
+48100,57896
+48101,4099
+48102,41425
+48103,79102
+48104,21923
+48105,38873
+48106,68210,61570
+48107,56721
+48108,17573,45036
+48109,30876
+48110,44487
+48111,4513,75062
+48112,66701
+48113,39047
+48114,52274
+48115,31061
+48116,73499
+48117,29947
+48118,46953
+48119,62683
+48120,2324,33957
+48121,32218
+48122,43775
+48123,25849
+48124,11434,19573
+48125,40757
+48126,26514
+48127,49807
+48128,7026
+48129,65224
+48130,17350
+48131,72928
+48132,35321
+48133,60147
+48134,40874
+48135,3519
+48136,50236
+48137,50211
+48138,20051
+48139,10773
+48140,40734
+48141,13150
+48142,43791
+48143,69145
+48144,10455
+48145,29856,39931
+48146,28845
+48147,58735
+48148,79679
+48149,42849
+48150,55469
+48151,26678
+48152,80506
+48153,37687
+48154,1809
+48155,60577
+48156,70920
+48157,16830
+48158,33818
+48159,15150
+48160,5822,81609
+48161,52785,11090
+48162,256
+48163,39269
+48164,2980
+48165,79791
+48166,45571,30190
+48167,77057,71996
+48168,35336
+48169,39624
+48170,80862
+48171,20426
+48172,45327
+48173,52215
+48174,30325
+48175,3800
+48176,13395
+48177,11574
+48178,24381,70941
+48179,80317
+48180,2571
+48181,56141,76292
+48182,9311
+48183,48282
+48184,41424
+48185,16074
+48186,29748
+48187,6484
+48188,59708,39283
+48189,24954
+48190,17624
+48191,8911
+48192,10369
+48193,45249
+48194,59746
+48195,35929
+48196,72586
+48197,43735
+48198,2092
+48199,76064
+48200,14540
+48201,75282
+48202,35177
+48203,77315
+48204,67462
+48205,57169
+48206,19489,70499
+48207,15440
+48208,72231
+48209,26792
+48210,72175
+48211,36341
+48212,45820
+48213,39671
+48214,16505
+48215,32224
+48216,43692
+48217,43517
+48218,32425
+48219,68858
+48220,68865
+48221,9871
+48222,24312
+48223,74280
+48224,6225
+48225,65024
+48226,67103
+48227,15862,7836,81561
+48228,2795
+48229,53934
+48230,54201
+48231,42179
+48232,54110,51390
+48233,69748
+48234,54338,70323
+48235,62812
+48236,52800
+48237,53553
+48238,14630
+48239,42178
+48240,11832
+48241,76154
+48242,22441,39404
+48243,4520
+48244,77793
+48245,28659,45328
+48246,74772
+48247,61392
+48248,53761
+48249,21486
+48250,1766
+48251,62291
+48252,79656
+48253,61418
+48254,23162
+48255,12271
+48256,75469
+48257,7495
+48258,3160
+48259,32311
+48260,54663
+48261,48216
+48262,66854,64828
+48263,49877
+48264,57681
+48265,56396
+48266,41470,38669
+48267,54729
+48268,50970
+48269,15216
+48270,24880,19300
+48271,9378
+48272,39242
+48273,76819,42778
+48274,38245
+48275,74030
+48276,71377
+48277,59808,5078
+48278,6807
+48279,32631,73145
+48280,31205
+48281,36410
+48282,69216
+48283,79677
+48284,51684
+48285,18207
+48286,24560,39331
+48287,22359
+48288,47456
+48289,14667
+48290,50830
+48291,71492,39623
+48292,59135
+48293,63903
+48294,34938,12521
+48295,24613
+48296,64507
+48297,37274,24666
+48298,9457
+48299,13674
+48300,64970
+48301,10928
+48302,40551
+48303,46540,36925
+48304,42330,11818
+48305,16689
+48306,54697
+48307,11172
+48308,82020
+48309,45982
+48310,56978
+48311,11698
+48312,79282
+48313,23050
+48314,49967
+48315,45914
+48316,65173
+48317,4253
+48318,20650
+48319,13760
+48320,74107,3679
+48321,56311
+48322,20785
+48323,51356
+48324,864
+48325,19742
+48326,47328
+48327,5166
+48328,21273
+48329,14907
+48330,62030
+48331,71629
+48332,67597
+48333,38463
+48334,47924
+48335,28563
+48336,10544
+48337,52151
+48338,20967
+48339,2141
+48340,35234
+48341,58040
+48342,37103
+48343,2532
+48344,29951
+48345,43161
+48346,24090
+48347,9467,25629
+48348,14045
+48349,74928
+48350,47221,71690
+48351,37834,22570
+48352,31718
+48353,10050
+48354,31474,77144,39497
+48355,77148
+48356,46868
+48357,32037
+48358,79427
+48359,55902
+48360,47328
+48361,43602
+48362,3468
+48363,74258
+48364,21463
+48365,287
+48366,25907
+48367,76386
+48368,39427
+48369,23082
+48370,74947
+48371,41571
+48372,45264
+48373,5301
+48374,2575
+48375,68576
+48376,71037
+48377,12936
+48378,45033
+48379,34110
+48380,68581,37496
+48381,65167
+48382,70102
+48383,74968
+48384,50471
+48385,4372
+48386,35627
+48387,19348,5320
+48388,53223
+48389,68176
+48390,70885
+48391,63304,61277
+48392,66991,568
+48393,75725
+48394,19416
+48395,46557
+48396,43011,12125
+48397,61742
+48398,9469
+48399,60071
+48400,51445
+48401,52484
+48402,37877
+48403,79984
+48404,73373
+48405,60015,63627
+48406,41122
+48407,76408
+48408,34690
+48409,44473
+48410,36340
+48411,74041,33996
+48412,8573
+48413,50308
+48414,47738
+48415,35956
+48416,47791
+48417,39632
+48418,11211
+48419,36841
+48420,19556
+48421,41984
+48422,64301
+48423,57021
+48424,74930
+48425,45405,20336
+48426,20349
+48427,61041
+48428,37442
+48429,55835
+48430,38662
+48431,62961,19821
+48432,16065
+48433,59
+48434,12848
+48435,45371
+48436,16433
+48437,78306
+48438,80808
+48439,61979
+48440,5758,14455
+48441,81990
+48442,19081,44305
+48443,46578,794
+48444,50308
+48445,71115
+48446,44812
+48447,468
+48448,10359
+48449,27646
+48450,36173
+48451,9841
+48452,62291
+48453,2340
+48454,8881
+48455,27130
+48456,24837
+48457,31303
+48458,19812
+48459,21844
+48460,25970
+48461,57908
+48462,57006
+48463,40112,59716
+48464,25075,49680
+48465,7778
+48466,31259
+48467,13700,58053
+48468,46035,62482
+48469,31449
+48470,16019
+48471,34894
+48472,39868,20506
+48473,67470
+48474,45743,17661
+48475,28118
+48476,59782,61765
+48477,29798
+48478,81214
+48479,66130
+48480,52719
+48481,5139
+48482,61740
+48483,79750
+48484,35785
+48485,11405
+48486,65153
+48487,80720
+48488,63060,36244
+48489,46016,30795
+48490,5764
+48491,15411
+48492,45554
+48493,70671
+48494,5407
+48495,13811
+48496,21005
+48497,59059
+48498,17057
+48499,75717
+48500,11256
+48501,23506
+48502,55152
+48503,42076
+48504,10303
+48505,32453
+48506,29960,38693
+48507,41803,19577
+48508,49747
+48509,6487
+48510,12643,17305,81260
+48511,64586
+48512,26359
+48513,20457,2150
+48514,11567,54252
+48515,81796
+48516,63145
+48517,36574,39326
+48518,63390,72458
+48519,37761
+48520,40852
+48521,9309
+48522,46298
+48523,38337
+48524,29124
+48525,47528
+48526,58112,80692
+48527,67893
+48528,46762
+48529,29699,32723
+48530,20306
+48531,35275
+48532,72649
+48533,20587
+48534,20584
+48535,17135
+48536,35808
+48537,60569,61082
+48538,66144
+48539,46727,65286
+48540,71410
+48541,61992
+48542,26553
+48543,54495
+48544,65236
+48545,69832
+48546,79700
+48547,18043
+48548,21633,18047
+48549,78322
+48550,42085
+48551,53212
+48552,1859
+48553,78837,31405
+48554,51257
+48555,39268
+48556,76465,21442,44105,60341
+48557,79213
+48558,25253
+48559,61684
+48560,67810
+48561,60308
+48562,67030
+48563,62264
+48564,30454
+48565,41491
+48566,65671
+48567,20941,15475
+48568,43297,59294
+48569,62437,66130
+48570,22692
+48571,52843
+48572,78761
+48573,32587,58429,34382
+48574,57818
+48575,76352
+48576,25545
+48577,59098
+48578,77960
+48579,79314,16319
+48580,37192
+48581,52924,76998
+48582,66886
+48583,4870
+48584,34728
+48585,14026
+48586,39392
+48587,13275
+48588,6267
+48589,29604,4713,4901
+48590,65489
+48591,31690,65287,39159,33133
+48592,31162
+48593,10431,21865,41430
+48594,957
+48595,4691
+48596,22031
+48597,77459,3934
+48598,65494
+48599,78113
+48600,54126
+48601,46224,62372,5092
+48602,62548
+48603,52054,26477
+48604,32378
+48605,22229
+48606,58139
+48607,1847
+48608,5640
+48609,67727
+48610,73647,39989
+48611,49058
+48612,76382
+48613,32902,47415,40621
+48614,39508
+48615,58159
+48616,28283
+48617,26540
+48618,53809
+48619,44837
+48620,69777
+48621,25948
+48622,69431
+48623,77512
+48624,74069,23579
+48625,46145,59211
+48626,7910,16513
+48627,27765
+48628,73201
+48629,59404
+48630,2138,32677
+48631,46789
+48632,68391
+48633,29677
+48634,45278
+48635,5628
+48636,2684
+48637,16885
+48638,64629
+48639,36298,38321
+48640,11768
+48641,79156
+48642,39835
+48643,9785
+48644,35677
+48645,71234
+48646,28606
+48647,42420
+48648,68270
+48649,55572
+48650,82046
+48651,61151
+48652,11831
+48653,69608
+48654,50440
+48655,26379
+48656,72813
+48657,75482
+48658,75205,73802
+48659,81592
+48660,622,28024
+48661,76971
+48662,6579
+48663,32793
+48664,64247
+48665,67444
+48666,11652
+48667,1410
+48668,52928
+48669,21058
+48670,54789,40688
+48671,51848
+48672,77855,80903
+48673,58673,62337
+48674,14062
+48675,80660,71176
+48676,67893
+48677,61610
+48678,45762
+48679,7249
+48680,14340
+48681,19911
+48682,64834
+48683,14005
+48684,73238
+48685,47128
+48686,24641
+48687,76791
+48688,15062,43827
+48689,17797
+48690,52329
+48691,13242
+48692,49766
+48693,68675
+48694,4101
+48695,10675
+48696,22246
+48697,2255
+48698,34497
+48699,24621
+48700,4911
+48701,52629
+48702,61973
+48703,47470
+48704,35570
+48705,35645
+48706,37058,18391
+48707,14214
+48708,22183,64270
+48709,31413
+48710,18736
+48711,63341
+48712,44887
+48713,77960
+48714,75830
+48715,28165
+48716,53255
+48717,31769
+48718,34954
+48719,61510
+48720,17415
+48721,38728
+48722,6550,46472
+48723,21058
+48724,11296
+48725,63611
+48726,3268
+48727,45429
+48728,53546,35350
+48729,63795
+48730,37704
+48731,39753
+48732,59651
+48733,1915
+48734,52211
+48735,53759
+48736,64712
+48737,11163
+48738,36139
+48739,10773,55942
+48740,46878
+48741,81161
+48742,67442
+48743,17606
+48744,43187
+48745,42016
+48746,25184
+48747,43394
+48748,30508
+48749,20758,15058
+48750,22788
+48751,54928
+48752,31770
+48753,67026
+48754,35281
+48755,80376
+48756,16819
+48757,59095
+48758,41140,23721
+48759,45253
+48760,72844,16689
+48761,31730
+48762,57040,15568
+48763,72388,48814
+48764,78851
+48765,76181
+48766,57274
+48767,30188
+48768,69432
+48769,57382
+48770,51445
+48771,49400
+48772,29328
+48773,34593
+48774,77894
+48775,42138
+48776,17630
+48777,79258
+48778,17454
+48779,60689
+48780,80967
+48781,72954
+48782,67506
+48783,44506,61334
+48784,20951,25253
+48785,12210
+48786,22093
+48787,49236
+48788,57560
+48789,75181,47997
+48790,75384
+48791,18437
+48792,73521,19131
+48793,60637
+48794,57114
+48795,8715,13998
+48796,6348
+48797,40380
+48798,81285
+48799,64332
+48800,24320
+48801,54401,73668,2514
+48802,4405
+48803,29060
+48804,15440,7023
+48805,40690
+48806,13495
+48807,4098
+48808,53468
+48809,10078,30628
+48810,33114
+48811,29629
+48812,7192
+48813,70597,34793
+48814,30616
+48815,4847
+48816,39759
+48817,51160
+48818,43080
+48819,64443
+48820,4568
+48821,24835
+48822,36214
+48823,17043
+48824,21075,7818
+48825,80380
+48826,35730
+48827,17421
+48828,72834
+48829,81927
+48830,56179,31623
+48831,80560
+48832,16497,31346
+48833,39420
+48834,28460
+48835,35397
+48836,39394
+48837,77853,46708
+48838,57627
+48839,5479
+48840,29145
+48841,70349
+48842,60235
+48843,2754,79826
+48844,41633,73081
+48845,48719
+48846,64296,75319
+48847,224
+48848,60277
+48849,31007
+48850,16147,23075
+48851,35326
+48852,12751
+48853,70905
+48854,16220
+48855,752
+48856,12207
+48857,3984
+48858,61690
+48859,30839
+48860,31281
+48861,5101
+48862,2576
+48863,73066
+48864,34067,58765
+48865,28754,8514
+48866,34496
+48867,37642
+48868,81303
+48869,20694
+48870,47505
+48871,15126
+48872,23791
+48873,29198
+48874,744
+48875,5469
+48876,26063,18673
+48877,19145
+48878,16810
+48879,38766
+48880,23573
+48881,58095
+48882,8113
+48883,2780
+48884,55288
+48885,64819,48544
+48886,67973
+48887,60539
+48888,70869
+48889,51547,16609
+48890,38245
+48891,58416,79956
+48892,14485
+48893,29322
+48894,9931
+48895,61041
+48896,32920
+48897,51954
+48898,73710
+48899,52655
+48900,49734
+48901,25444
+48902,11156,22902
+48903,77103
+48904,71641,21164
+48905,55012
+48906,65365
+48907,56895
+48908,70652
+48909,79029,34210
+48910,12755
+48911,49914
+48912,25890,77188
+48913,21242,64943
+48914,15289
+48915,74727,28
+48916,25465
+48917,22023
+48918,6477
+48919,60911
+48920,77996
+48921,29617
+48922,76340
+48923,59678,75146
+48924,25042
+48925,24878
+48926,37069
+48927,2355
+48928,31513
+48929,66421,68707
+48930,63434,8722
+48931,4233,47533
+48932,631
+48933,74706,8489
+48934,23534,15483
+48935,79659
+48936,51794
+48937,35272,25414
+48938,20496
+48939,12742
+48940,47139
+48941,81561
+48942,79977
+48943,16152
+48944,31839
+48945,4978
+48946,77668
+48947,48313
+48948,74131
+48949,21054
+48950,17016
+48951,28315
+48952,43716,49256
+48953,69338
+48954,15284,30692
+48955,76482
+48956,26266
+48957,14633
+48958,41342
+48959,66147
+48960,78955
+48961,66340
+48962,54397
+48963,76827
+48964,48609
+48965,9076
+48966,5517,20658
+48967,12795
+48968,43151
+48969,81566
+48970,42408,45312
+48971,22206
+48972,10217
+48973,25004
+48974,51285,59114
+48975,65393
+48976,74659
+48977,81054,79806
+48978,28375
+48979,32256
+48980,26801
+48981,42050,30341,57627
+48982,6845
+48983,34005
+48984,2482
+48985,41163
+48986,28377
+48987,54442
+48988,47159
+48989,29626
+48990,77358
+48991,30545
+48992,64760
+48993,69892
+48994,78855
+48995,71873
+48996,65267
+48997,41423
+48998,10753
+48999,22545
+49000,80668
+49001,41793,18250
+49002,75924,34529
+49003,15534
+49004,5757
+49005,65915
+49006,71289,78230
+49007,37017,27117
+49008,48776,76063
+49009,60757
+49010,57545
+49011,47657
+49012,53535,4349
+49013,26587
+49014,7063
+49015,15391
+49016,40910
+49017,68715
+49018,68034
+49019,65127
+49020,62965
+49021,44263
+49022,46529
+49023,45449
+49024,3313
+49025,76462
+49026,70220
+49027,16959,77880
+49028,51679
+49029,69018
+49030,31192
+49031,77679
+49032,1710
+49033,53422
+49034,57299
+49035,58621
+49036,12533
+49037,45217
+49038,60030
+49039,64675
+49040,18744
+49041,39200
+49042,3663
+49043,4202
+49044,28817
+49045,24595
+49046,27986
+49047,72682
+49048,70315
+49049,27254,30029
+49050,11990
+49051,62023
+49052,65079
+49053,73587
+49054,73095
+49055,19195
+49056,88
+49057,33798
+49058,69434,21549
+49059,22419,35491,67845
+49060,58103
+49061,72083
+49062,41135,23168
+49063,14437
+49064,56649
+49065,48843
+49066,42379
+49067,52911
+49068,9007
+49069,10734
+49070,19985
+49071,72840,41553
+49072,76348,29110
+49073,41954,46924
+49074,33218
+49075,29023
+49076,60172,10862
+49077,33353
+49078,18948
+49079,62639
+49080,18834
+49081,57579
+49082,35398
+49083,77428
+49084,21982
+49085,24073
+49086,15391
+49087,42295,59278,13368
+49088,56268
+49089,79366
+49090,40445
+49091,64920
+49092,26428
+49093,60826
+49094,52004,19566
+49095,80210
+49096,75310
+49097,65229
+49098,2134,48990
+49099,17955
+49100,52362
+49101,6725
+49102,39545
+49103,62161
+49104,16984
+49105,76434
+49106,23842
+49107,12031
+49108,17410
+49109,14064
+49110,805
+49111,13749
+49112,66183,76089
+49113,64752
+49114,1872
+49115,17970
+49116,76407,4405
+49117,81576
+49118,25383
+49119,54160,9464
+49120,20420,23743
+49121,65627
+49122,2692
+49123,12181
+49124,28377
+49125,70779
+49126,67361
+49127,73724
+49128,5155
+49129,66033,73923
+49130,70728
+49131,56687
+49132,71714
+49133,53464
+49134,53123
+49135,12090,41720
+49136,56073
+49137,43652,53591
+49138,73050
+49139,25700
+49140,3724
+49141,42073
+49142,21874
+49143,54563
+49144,4596
+49145,47981
+49146,21809
+49147,81320
+49148,3815,66749
+49149,31547,27549,47524,74948
+49150,70343
+49151,30860,11213
+49152,75071
+49153,31837
+49154,67919
+49155,64584
+49156,48586
+49157,75494
+49158,74832,37023
+49159,62666
+49160,59834
+49161,53620
+49162,72056
+49163,31590
+49164,51007
+49165,52143
+49166,31909
+49167,8257
+49168,48086
+49169,17605
+49170,61559
+49171,75931,44277
+49172,41928,73424
+49173,77306
+49174,64612
+49175,53904
+49176,18829,79156,27340
+49177,26129
+49178,71359,33522
+49179,50307
+49180,54495
+49181,71362
+49182,68395
+49183,65014,63826
+49184,79408
+49185,27523
+49186,75618
+49187,30965
+49188,70725,80726
+49189,1024
+49190,52760
+49191,10527,16732,61070
+49192,74197
+49193,18578
+49194,57509
+49195,1502
+49196,20720
+49197,68319
+49198,41718,8146,12634
+49199,63275
+49200,43446
+49201,29856
+49202,66186
+49203,43399
+49204,81014
+49205,18625
+49206,59154
+49207,9132
+49208,30881
+49209,48162
+49210,48327,74061,15935
+49211,70107
+49212,46686
+49213,19126
+49214,29074,59024
+49215,75758,530
+49216,67367,67448
+49217,47000
+49218,16692
+49219,6945
+49220,66412,20973
+49221,15505
+49222,77519
+49223,56398
+49224,30260
+49225,2374
+49226,45079
+49227,76664
+49228,70753
+49229,59873
+49230,8564
+49231,56339
+49232,32961,62010
+49233,76796
+49234,36522
+49235,17341
+49236,8180
+49237,1538
+49238,56870
+49239,69874
+49240,71530
+49241,48963
+49242,59901
+49243,14819
+49244,31531
+49245,20677,60305
+49246,81904,14923
+49247,82180
+49248,16695
+49249,70867
+49250,15729
+49251,77105
+49252,23377
+49253,26167
+49254,49147
+49255,12767
+49256,20315
+49257,34929
+49258,708,45230,15790
+49259,37860
+49260,28397,65856
+49261,52200
+49262,19524
+49263,41928
+49264,35879
+49265,24332
+49266,39544
+49267,70093
+49268,55033
+49269,45321
+49270,12190
+49271,75162
+49272,32169
+49273,8434
+49274,39042
+49275,30851
+49276,2740
+49277,77761,43904
+49278,7028
+49279,60661,26469
+49280,1422
+49281,67031,72109
+49282,79807
+49283,34503,81524
+49284,22494
+49285,48371
+49286,64946
+49287,11866
+49288,19473
+49289,64964
+49290,2132
+49291,43001,13932
+49292,68539
+49293,72073,78332
+49294,60111,53031
+49295,30792
+49296,15715
+49297,25414
+49298,18455
+49299,74701
+49300,75560
+49301,70236
+49302,30855,45639
+49303,50030,47566
+49304,78606
+49305,21047,78459
+49306,78190
+49307,11184
+49308,74725,51924
+49309,45685
+49310,25060
+49311,75514
+49312,3355
+49313,10410
+49314,39449
+49315,38540
+49316,49965
+49317,62359,27478
+49318,23344
+49319,8658
+49320,73077,75920
+49321,33917
+49322,8997
+49323,28953
+49324,40629,76211
+49325,77962
+49326,78438
+49327,44726
+49328,61087
+49329,41017,49313
+49330,11939
+49331,69892
+49332,7667
+49333,12161
+49334,54843
+49335,69339
+49336,10195
+49337,32616,72212
+49338,51849
+49339,17165
+49340,21052
+49341,60848,13411
+49342,19791
+49343,70481
+49344,21014
+49345,62150
+49346,81873,69023
+49347,20834
+49348,47669
+49349,43376
+49350,25162
+49351,69877
+49352,5155
+49353,56131
+49354,25163,40695
+49355,31842
+49356,16903
+49357,5260
+49358,50358
+49359,37968,3517
+49360,52536
+49361,25561
+49362,12774
+49363,30517
+49364,729
+49365,42343
+49366,53036
+49367,35536
+49368,23089
+49369,27970
+49370,12398,73900
+49371,40076
+49372,76437
+49373,5237,40905,76666
+49374,26188
+49375,64472
+49376,72977
+49377,76004,64031
+49378,44496,69579
+49379,46685,34084,52305,31476
+49380,59590,8230
+49381,47447
+49382,67470
+49383,77665
+49384,78061
+49385,35205
+49386,21567
+49387,40705
+49388,48756
+49389,36430
+49390,49928
+49391,27797
+49392,6416,24382
+49393,5762
+49394,43020
+49395,39334
+49396,1664
+49397,69918
+49398,41869
+49399,81842
+49400,68090
+49401,733
+49402,35538,249
+49403,17115
+49404,60365
+49405,51232
+49406,1155
+49407,25603,75709
+49408,20973
+49409,52009
+49410,36956
+49411,7115
+49412,28315
+49413,30095
+49414,61452
+49415,56246
+49416,29141
+49417,56890
+49418,8602,11391
+49419,73620
+49420,7568
+49421,21967,45106
+49422,42675,52841
+49423,75920,7394
+49424,14123
+49425,53486
+49426,21830
+49427,38616
+49428,40831
+49429,55600
+49430,49313
+49431,31032
+49432,15680
+49433,12751
+49434,48832
+49435,28948
+49436,34042,32829
+49437,53992
+49438,75150
+49439,18102
+49440,32701
+49441,64160
+49442,52415,47487,10497
+49443,78251
+49444,78776
+49445,79531,26252
+49446,56796,80514
+49447,47649,67684,5844
+49448,16835
+49449,57689
+49450,29110,445
+49451,6155
+49452,47358
+49453,71629
+49454,71659
+49455,51395
+49456,25885
+49457,72375
+49458,31721
+49459,63502,20022
+49460,68403
+49461,75032
+49462,63730,7620
+49463,31422
+49464,13131
+49465,64531
+49466,64739
+49467,34629
+49468,71973
+49469,55030
+49470,21209
+49471,3886,13995
+49472,54452
+49473,50490
+49474,44234
+49475,6927
+49476,229
+49477,13835
+49478,41567,58250,39635
+49479,403
+49480,69616,42068,67365
+49481,19141
+49482,43717
+49483,5019
+49484,16294
+49485,71300
+49486,74441
+49487,17249
+49488,11601,8935
+49489,68581
+49490,18829
+49491,12509
+49492,22194
+49493,65822
+49494,42919,73033
+49495,70633
+49496,49862
+49497,81261
+49498,62642
+49499,77703
+49500,55770
+49501,44641,72504
+49502,27732
+49503,7391
+49504,46560
+49505,72695
+49506,28300
+49507,9867,10270
+49508,8346
+49509,13143
+49510,40324
+49511,57254
+49512,39109,14149
+49513,38159
+49514,80045
+49515,78194
+49516,19281
+49517,54963
+49518,40015,45929
+49519,17613,23231
+49520,40378,54794
+49521,9414
+49522,31137
+49523,26087
+49524,28982,19238,50620
+49525,33803
+49526,59669
+49527,47520
+49528,62679
+49529,74501
+49530,22192
+49531,47992
+49532,42753
+49533,1863,20967
+49534,15646,41578
+49535,29798
+49536,81320
+49537,52357
+49538,6439
+49539,50118
+49540,79102
+49541,53507
+49542,8091
+49543,77148
+49544,39068
+49545,14440
+49546,38332
+49547,27924
+49548,36108
+49549,20582
+49550,72014
+49551,54807
+49552,19990
+49553,25943,51053
+49554,21703
+49555,25400
+49556,48963
+49557,43233
+49558,20012
+49559,11628,9626
+49560,16015
+49561,74810
+49562,28863,57188
+49563,71833
+49564,31055
+49565,58754
+49566,20859,78128
+49567,22063
+49568,36581
+49569,21790
+49570,37919
+49571,71170
+49572,14259
+49573,14354
+49574,42967,6327,36008
+49575,71874,40415
+49576,40114
+49577,45861,33449
+49578,64841
+49579,18636
+49580,14742
+49581,60837
+49582,31206
+49583,25943,80783
+49584,13605
+49585,45869,14879
+49586,29411
+49587,40007
+49588,65351
+49589,67175,22978
+49590,73123,315
+49591,22503
+49592,35275
+49593,24066
+49594,65914
+49595,3001
+49596,40185,71507,46509,55876
+49597,16526
+49598,71819
+49599,11728
+49600,80028,41184
+49601,41392,6238
+49602,64090,16893
+49603,60491
+49604,5034
+49605,67749
+49606,4253,795
+49607,29060
+49608,73419
+49609,48239
+49610,24305
+49611,1390,25838,42962
+49612,40713
+49613,33223
+49614,33257
+49615,27585,26691
+49616,58861
+49617,60122,74292
+49618,4405
+49619,61873
+49620,20990
+49621,62462
+49622,6281
+49623,61410
+49624,34901
+49625,18326
+49626,22541
+49627,20454
+49628,62461,74765
+49629,47632
+49630,78187,24959
+49631,73654
+49632,61009
+49633,12242
+49634,54147
+49635,77055,11564
+49636,40889,57874
+49637,57908
+49638,65616
+49639,25540
+49640,55114
+49641,67012
+49642,45743
+49643,37402
+49644,47720
+49645,66873
+49646,23724
+49647,21455
+49648,63012
+49649,76438
+49650,76010
+49651,17666
+49652,77809
+49653,50761
+49654,13721
+49655,50041
+49656,79497
+49657,34923
+49658,62613
+49659,65875
+49660,18057,69522
+49661,121
+49662,57069,63825
+49663,64752
+49664,62700
+49665,61169
+49666,66698
+49667,23914
+49668,73710
+49669,1042
+49670,52757
+49671,58236
+49672,33266
+49673,48677
+49674,76063
+49675,71362
+49676,38636
+49677,43838
+49678,57862
+49679,41971
+49680,28918
+49681,1252
+49682,54925
+49683,11510,73536
+49684,41567
+49685,28389
+49686,7163,43933
+49687,34336
+49688,27660
+49689,53601
+49690,24285,31296
+49691,46320
+49692,60456,80910
+49693,53867
+49694,15639,34252
+49695,37366
+49696,76939
+49697,4712
+49698,16744
+49699,26256
+49700,18010
+49701,3608
+49702,63628
+49703,47826
+49704,7751
+49705,40396,30649
+49706,24353,14615
+49707,5417
+49708,60313
+49709,28315
+49710,43157
+49711,16966
+49712,11436,47034
+49713,30616
+49714,75702
+49715,64883,73148
+49716,53947
+49717,11523
+49718,24619
+49719,78530
+49720,30823
+49721,39686
+49722,56505
+49723,20068,42408
+49724,81339
+49725,21643
+49726,61752
+49727,44513
+49728,17621
+49729,11661
+49730,13231
+49731,18100
+49732,71774
+49733,60405
+49734,65058
+49735,25874,36331
+49736,35913
+49737,57544
+49738,24746
+49739,68867
+49740,51781
+49741,35925
+49742,72085
+49743,64578,14865,31400
+49744,30570
+49745,3784
+49746,80762
+49747,16185
+49748,81260
+49749,26386
+49750,7555
+49751,52909,41586
+49752,76633
+49753,70192
+49754,51521,22986
+49755,4964
+49756,14642
+49757,26276,14853,66293
+49758,4016,79579,8549
+49759,3247,76529,63474
+49760,61545
+49761,77417
+49762,45731
+49763,27954
+49764,40163
+49765,674
+49766,65676
+49767,40099
+49768,57021
+49769,79497
+49770,57755,24060
+49771,75006
+49772,28010
+49773,79374
+49774,13188
+49775,29782
+49776,72644
+49777,20019,34325
+49778,58168
+49779,22547,63894
+49780,78973
+49781,43929
+49782,9658
+49783,60644
+49784,20960
+49785,74118
+49786,45569,15841
+49787,14474
+49788,71324
+49789,81668
+49790,47633
+49791,47167
+49792,48826
+49793,50721
+49794,55908
+49795,44137
+49796,20604
+49797,27943
+49798,75255
+49799,1261
+49800,53264,73106
+49801,39294
+49802,38322
+49803,55513
+49804,43353,58184
+49805,25059,16
+49806,48416
+49807,1933
+49808,65473
+49809,42247
+49810,73789
+49811,4315
+49812,19874
+49813,50460
+49814,45357
+49815,68030
+49816,49412,31787
+49817,3776
+49818,9699
+49819,68277,16928
+49820,24326
+49821,69300
+49822,63954
+49823,36962
+49824,25274
+49825,26776
+49826,80668
+49827,13533
+49828,3145
+49829,39973
+49830,49277
+49831,60674
+49832,52284
+49833,29275
+49834,69374
+49835,13886
+49836,37563
+49837,49802
+49838,46758
+49839,17682
+49840,24085,13081
+49841,39606,71599
+49842,58505
+49843,47437
+49844,66996,81201,72457
+49845,65622
+49846,7655
+49847,47144
+49848,62426
+49849,19749
+49850,42612
+49851,61980
+49852,44192
+49853,29100
+49854,56856,67433
+49855,74666,14929
+49856,31619
+49857,73702
+49858,25892
+49859,38185,44796
+49860,67811
+49861,71007
+49862,53680
+49863,17249
+49864,42268
+49865,7563
+49866,74117
+49867,57094
+49868,42133
+49869,59960
+49870,15533
+49871,31243
+49872,76904
+49873,6786
+49874,21906
+49875,58246,39223
+49876,822
+49877,69141
+49878,74043
+49879,60597
+49880,35456
+49881,29973
+49882,30954
+49883,30674
+49884,73682
+49885,22954
+49886,3677
+49887,45254,46689
+49888,47607
+49889,56047
+49890,77955
+49891,586
+49892,75878
+49893,59094,14631
+49894,64348
+49895,37673
+49896,40962
+49897,8036
+49898,45109,56835
+49899,70082
+49900,55063
+49901,27636
+49902,35142,13260,56663
+49903,36833
+49904,72395
+49905,39898,12257
+49906,53034
+49907,68380
+49908,11771,71989
+49909,28972
+49910,6006
+49911,21693
+49912,17867
+49913,70489
+49914,36563
+49915,7838
+49916,34171
+49917,1872
+49918,28129
+49919,39026,32752
+49920,21708
+49921,47561
+49922,79198
+49923,11729,13609,39931
+49924,12662,22505
+49925,61560
+49926,48899
+49927,7514,67711,61281
+49928,57284
+49929,11961
+49930,22858
+49931,57983
+49932,62832
+49933,60960
+49934,19167,19413
+49935,23642
+49936,77786
+49937,70105
+49938,76801
+49939,28001,33351
+49940,16615
+49941,69981
+49942,829
+49943,81717
+49944,27134
+49945,49031
+49946,14303,57443
+49947,21779
+49948,69210
+49949,43395
+49950,64932
+49951,79479
+49952,50879,67971
+49953,74080
+49954,43709,27691
+49955,62942
+49956,15874
+49957,826
+49958,60805
+49959,18543,50010
+49960,24091,17378
+49961,51122
+49962,2612
+49963,7023
+49964,37780
+49965,21024
+49966,19618
+49967,44390
+49968,50105,63629
+49969,80877
+49970,23844
+49971,81474
+49972,15714
+49973,77938,74615,35919
+49974,68600
+49975,36279
+49976,41752
+49977,68659
+49978,80006
+49979,54736
+49980,17402
+49981,81691
+49982,76433
+49983,22585,45847,12509
+49984,12817
+49985,73748,16750
+49986,27681
+49987,2089
+49988,3048
+49989,25785
+49990,34990
+49991,39678
+49992,46560
+49993,45148
+49994,57185
+49995,46609
+49996,9628
+49997,15823,32428
+49998,35652
+49999,66614,76396
+50000,28315
+50001,46605
+50002,57906
+50003,50309
+50004,32911
+50005,32788
+50006,46075,62290
+50007,4824,62438
+50008,81297
+50009,39160
+50010,73157,78068
+50011,6536
+50012,57147
+50013,57679
+50014,40122
+50015,69297
+50016,3243
+50017,45884
+50018,4613
+50019,15132
+50020,72626
+50021,17052
+50022,4282
+50023,35727
+50024,27546
+50025,6799
+50026,71718
+50027,22486
+50028,37812
+50029,8063
+50030,9538
+50031,62356
+50032,28642
+50033,49893,9457
+50034,1460
+50035,75377
+50036,36109
+50037,33957
+50038,67453
+50039,66424
+50040,59100,67615
+50041,69141
+50042,51268,64619
+50043,7628
+50044,7252
+50045,5181
+50046,1263,49782,36097
+50047,37371
+50048,37300
+50049,25244
+50050,31334
+50051,65505
+50052,68189
+50053,37121
+50054,75470
+50055,121
+50056,6678,62967
+50057,48336
+50058,43968
+50059,70908,34675
+50060,37484
+50061,19617,56151
+50062,12602
+50063,71596
+50064,10597
+50065,2498,44110
+50066,2206,54152
+50067,61263
+50068,77102
+50069,21047
+50070,21501
+50071,23262
+50072,64820
+50073,47811
+50074,38282
+50075,42111
+50076,80161
+50077,1660
+50078,47144
+50079,9151
+50080,77126,79148
+50081,56188
+50082,11200
+50083,56384
+50084,75938
+50085,45914
+50086,2193
+50087,36121
+50088,70885
+50089,71351,29244
+50090,11968,40785,62309
+50091,82018
+50092,46107
+50093,55556,16513
+50094,58137
+50095,35162
+50096,66664
+50097,61652
+50098,57953
+50099,11573
+50100,18947
+50101,3863
+50102,53981
+50103,15741
+50104,60061
+50105,69756
+50106,37935
+50107,10084
+50108,55396
+50109,81996
+50110,18375,17280
+50111,8188
+50112,33499
+50113,72770
+50114,24789
+50115,54063
+50116,80005
+50117,31161
+50118,22107
+50119,39931
+50120,62817
+50121,13816,56252,38334
+50122,72246
+50123,60067
+50124,12152
+50125,58161
+50126,11102
+50127,11577
+50128,73880
+50129,2024,62799
+50130,52079
+50131,31820
+50132,70585
+50133,2915
+50134,49825
+50135,63330
+50136,59278
+50137,2420,17682
+50138,20038
+50139,8217
+50140,31929
+50141,16194
+50142,12459
+50143,23635
+50144,11708
+50145,73094
+50146,48591
+50147,34304,25316,49732
+50148,31035
+50149,81347
+50150,72136,75344
+50151,11531
+50152,3286
+50153,71279
+50154,14739,43125
+50155,6186
+50156,15439
+50157,60603
+50158,68045
+50159,69752
+50160,62093
+50161,44043,65566
+50162,48987,28061
+50163,37053
+50164,61417
+50165,81573,43272
+50166,33446
+50167,1524
+50168,4471
+50169,39973
+50170,62302
+50171,56964
+50172,71733,41781
+50173,62767
+50174,23152
+50175,31303
+50176,14338
+50177,79136
+50178,25258
+50179,80286
+50180,81288
+50181,23952,8502
+50182,951
+50183,71470
+50184,63566,15476
+50185,14524
+50186,14691
+50187,37828
+50188,3578
+50189,65926
+50190,8336
+50191,58415
+50192,51214
+50193,65363,33222
+50194,43459
+50195,82175
+50196,2002
+50197,15125
+50198,59643
+50199,65749
+50200,13013
+50201,45149
+50202,59905,37894
+50203,67865
+50204,4912
+50205,45989
+50206,64535
+50207,47720
+50208,43706
+50209,4105,47076
+50210,12048
+50211,21936
+50212,4116
+50213,12174,62277
+50214,26946
+50215,15215
+50216,10874
+50217,44721
+50218,75836
+50219,81588,54092
+50220,459,57593
+50221,7077,15016
+50222,42567,52549
+50223,33521,73750
+50224,19956
+50225,17074
+50226,59098
+50227,33170,29439
+50228,59506
+50229,12003
+50230,63763
+50231,14046
+50232,61714
+50233,47117
+50234,39770
+50235,4965
+50236,80312
+50237,81697
+50238,6377
+50239,50501
+50240,8120
+50241,71490
+50242,19484,20929,35474,58530
+50243,61241
+50244,26616
+50245,81728,23584,44914,30436
+50246,11134
+50247,80127
+50248,40588
+50249,45289
+50250,614
+50251,38018
+50252,35530,53144
+50253,55480
+50254,76599
+50255,68056
+50256,54847
+50257,68519
+50258,35105
+50259,36180
+50260,3168
+50261,72085
+50262,15711
+50263,32660
+50264,25160,1236
+50265,60293
+50266,78855,12039
+50267,46982,50598
+50268,71162
+50269,18542,9404,76348
+50270,82081,52543
+50271,610,12146,785
+50272,32902
+50273,72304,48648
+50274,62775
+50275,81262
+50276,8154
+50277,43637
+50278,55612
+50279,32196,78090
+50280,29915,35177
+50281,38510
+50282,47566
+50283,27756
+50284,11742
+50285,66505
+50286,76706
+50287,27152
+50288,20783
+50289,56403
+50290,56798
+50291,27543
+50292,2759
+50293,27566
+50294,1463
+50295,44088
+50296,53845
+50297,65569
+50298,31450
+50299,44106
+50300,35715
+50301,40107
+50302,28326
+50303,51916,80503
+50304,76425
+50305,60374
+50306,67296
+50307,242
+50308,52449
+50309,38728
+50310,75662
+50311,46975
+50312,60360
+50313,60200
+50314,72914
+50315,29347
+50316,71007
+50317,47533
+50318,60453
+50319,77428
+50320,67356
+50321,72274
+50322,24435
+50323,38097
+50324,15807
+50325,52111,12561
+50326,58790
+50327,79467
+50328,50501,34256
+50329,9994
+50330,79682,50371
+50331,40521
+50332,49936,47993
+50333,64765,51318
+50334,22441,47244
+50335,26055
+50336,77452
+50337,8267,23912
+50338,68373
+50339,16527
+50340,61406
+50341,64783
+50342,17301
+50343,69997
+50344,50234
+50345,34487,13683,26290
+50346,54813,56567
+50347,40221,28669
+50348,57410
+50349,49055,4951,39642
+50350,59457
+50351,47205
+50352,74876
+50353,2083,36766
+50354,78472
+50355,46924
+50356,21376
+50357,53016
+50358,42735
+50359,74569
+50360,16778
+50361,10438
+50362,7814
+50363,78121
+50364,39798
+50365,68946
+50366,46678
+50367,51739
+50368,17625
+50369,1912
+50370,71722,77405
+50371,76396
+50372,56302
+50373,10235
+50374,5268
+50375,631,81013
+50376,65548
+50377,24072
+50378,1040
+50379,25065
+50380,27810
+50381,2949,28103
+50382,73090
+50383,43830
+50384,81124
+50385,12683
+50386,16359
+50387,55135
+50388,36596,38381
+50389,48278
+50390,68677
+50391,63939
+50392,32793
+50393,60966
+50394,39480
+50395,49492
+50396,70622
+50397,29377
+50398,42820,73305
+50399,66731,2179
+50400,72937
+50401,5823
+50402,14766,53826,60456
+50403,18556
+50404,26926
+50405,74915,38423
+50406,8113
+50407,77452
+50408,72616
+50409,77458
+50410,20734
+50411,37475
+50412,7345
+50413,72030
+50414,40708
+50415,69634
+50416,76016
+50417,34286,68625
+50418,20262
+50419,39811
+50420,69634
+50421,37840
+50422,4415,50261
+50423,15323
+50424,17832
+50425,52666
+50426,11094
+50427,49587
+50428,74240,16864
+50429,54903
+50430,48439
+50431,61110,6613
+50432,54275
+50433,33849
+50434,5260
+50435,69375
+50436,50931
+50437,60896
+50438,33745
+50439,27930
+50440,39794
+50441,73238
+50442,38705
+50443,63883,50241
+50444,76081
+50445,10014
+50446,1193
+50447,39836
+50448,3380
+50449,60067
+50450,65756
+50451,17771
+50452,48103
+50453,62125,9785,58120
+50454,63054
+50455,64639,20257
+50456,34088,977
+50457,73414
+50458,48282
+50459,76797
+50460,78788
+50461,57602
+50462,64260
+50463,25882,18673
+50464,41494
+50465,63689
+50466,45915
+50467,13949,24440
+50468,61687
+50469,297
+50470,73108
+50471,5787
+50472,59871
+50473,37332,42346
+50474,29855
+50475,19405
+50476,22730,19672
+50477,15088
+50478,18219
+50479,31768
+50480,80352
+50481,44502
+50482,10863
+50483,40734
+50484,23641
+50485,11489,16452
+50486,58372
+50487,55620,26487
+50488,78993
+50489,17061
+50490,25849
+50491,15094
+50492,9934
+50493,81596
+50494,44688
+50495,48895
+50496,52007,80861
+50497,76897
+50498,48105
+50499,73740
+50500,77727,12294,25399
+50501,14112
+50502,23384
+50503,75225
+50504,64461
+50505,71838
+50506,48743
+50507,20097,39539
+50508,61410,8180
+50509,44176,49906
+50510,78267
+50511,6938
+50512,57725
+50513,4636
+50514,72259
+50515,670
+50516,28379
+50517,18912
+50518,23382
+50519,5884
+50520,79406
+50521,43757
+50522,29389
+50523,79222
+50524,44351
+50525,57534,39202
+50526,66076
+50527,38159
+50528,59366
+50529,68520
+50530,59727,73108
+50531,64210
+50532,9399,44414,31473
+50533,77586,17451,4323
+50534,40325
+50535,72907
+50536,74511
+50537,40883
+50538,72891,55902
+50539,30528
+50540,60995
+50541,40221
+50542,72927
+50543,18811,50022
+50544,26615
+50545,81393,14616
+50546,49755
+50547,51666
+50548,55396
+50549,71680,21118
+50550,72280
+50551,33943
+50552,41519
+50553,459,77510
+50554,21835
+50555,53956
+50556,20663
+50557,30616
+50558,66411
+50559,47664
+50560,2839
+50561,62184
+50562,29239
+50563,76264
+50564,56493
+50565,62534
+50566,66612,24300
+50567,1448
+50568,24372
+50569,81571,2156
+50570,61826
+50571,27828
+50572,43516,59376
+50573,18513
+50574,14781
+50575,58283
+50576,28114,22313
+50577,33188
+50578,60060
+50579,762
+50580,61211
+50581,33745
+50582,53958
+50583,38951
+50584,54330,47000,70703
+50585,50308
+50586,18255
+50587,7856
+50588,12196
+50589,26615
+50590,13908
+50591,10805
+50592,74438
+50593,22314
+50594,32722
+50595,3999
+50596,11722
+50597,41797
+50598,1979
+50599,36876
+50600,40628,25398
+50601,36456,25203
+50602,51009
+50603,71919
+50604,28447
+50605,57738
+50606,61868
+50607,41693,4689
+50608,76278
+50609,37674,25245
+50610,17490,16204
+50611,56008
+50612,63862
+50613,52121
+50614,34573
+50615,14945,24049
+50616,34057,72417
+50617,30841
+50618,11282,29203
+50619,74450
+50620,13117,74812
+50621,63103,27184,55960
+50622,42977,80979
+50623,72855
+50624,17390,77134
+50625,5052
+50626,28958
+50627,56258
+50628,63072
+50629,78361
+50630,13515
+50631,13497
+50632,27282,63817,43964
+50633,9983
+50634,3755,34107
+50635,65867
+50636,27406,21308
+50637,11722
+50638,10823
+50639,68429
+50640,5488
+50641,25497
+50642,55245
+50643,19558
+50644,755,73407
+50645,15669
+50646,37560
+50647,46104,43569
+50648,714
+50649,15401
+50650,45559,3033
+50651,12958,50341
+50652,47554
+50653,62113
+50654,45728
+50655,44935
+50656,19096
+50657,26141
+50658,72291,44698
+50659,4544
+50660,18058
+50661,14818
+50662,17836
+50663,15820
+50664,29446
+50665,52876
+50666,55063
+50667,5238
+50668,52841,30307
+50669,78872
+50670,67739
+50671,55849,15990
+50672,33388
+50673,48379
+50674,45098
+50675,42926
+50676,54788
+50677,27449
+50678,45383,3803
+50679,54093,69602,72023
+50680,78099
+50681,23692,16794
+50682,38986
+50683,12785
+50684,53562
+50685,41454
+50686,64604,3198
+50687,13326
+50688,21486
+50689,10306
+50690,5166
+50691,6782
+50692,57239
+50693,37121
+50694,37181
+50695,75015
+50696,64260
+50697,43437,74107
+50698,9672
+50699,54183,10949
+50700,48917
+50701,2678
+50702,7333
+50703,57188
+50704,73369
+50705,53704
+50706,76378
+50707,48617,2970
+50708,25503
+50709,54454,31154
+50710,44091
+50711,64964
+50712,81818
+50713,14465
+50714,32199
+50715,24351
+50716,69398
+50717,41627,80098
+50718,27533
+50719,31481,7196
+50720,12252
+50721,4792
+50722,29244
+50723,15113,56540
+50724,28539
+50725,28353,14077
+50726,79898
+50727,488
+50728,71243
+50729,70948
+50730,17538
+50731,52079
+50732,58604,55019,49808
+50733,62495
+50734,36892
+50735,52275
+50736,76515
+50737,15010
+50738,16775
+50739,1650,30274
+50740,79319
+50741,10097
+50742,27979,16648
+50743,47473
+50744,41485
+50745,65576
+50746,78053
+50747,72774
+50748,71295
+50749,47502
+50750,48143
+50751,9732
+50752,45058,18110
+50753,25252,67641
+50754,13004
+50755,67554,73110,20720
+50756,66122,43839
+50757,44414
+50758,13534
+50759,79982,69925,54023,23301,8730
+50760,14334
+50761,46483
+50762,43486
+50763,1176
+50764,72897
+50765,25544
+50766,54663
+50767,66408
+50768,62633,245
+50769,61826
+50770,13827
+50771,34991
+50772,54347
+50773,74979
+50774,38159,66845
+50775,19971,9905
+50776,294
+50777,30909
+50778,7135
+50779,27920
+50780,30016
+50781,63738
+50782,75201,2614
+50783,10389
+50784,72076,80018
+50785,16772
+50786,80549
+50787,59747
+50788,69371
+50789,76090
+50790,7009
+50791,5818
+50792,79443
+50793,33165
+50794,20007
+50795,33748,47707
+50796,22503,25112
+50797,70649,41536
+50798,7451
+50799,7255
+50800,27496
+50801,39544
+50802,45102
+50803,70478
+50804,32963
+50805,77241
+50806,53659,44577
+50807,24085
+50808,34456
+50809,65136
+50810,38914
+50811,72242
+50812,8398
+50813,26273
+50814,38678
+50815,595
+50816,5355
+50817,21386
+50818,80949
+50819,42656
+50820,62726
+50821,73749
+50822,55358,64434
+50823,60656,41453
+50824,1609
+50825,26431
+50826,40905
+50827,3737
+50828,15645,59777
+50829,74334,5481
+50830,11608,20964
+50831,18916
+50832,53923,21976
+50833,6936
+50834,10785,37813
+50835,62670
+50836,28176
+50837,18260
+50838,39025,5628
+50839,76365
+50840,66211
+50841,34748,9852
+50842,54144
+50843,4604
+50844,62908
+50845,18106
+50846,26553,73660
+50847,57108,66204
+50848,39464
+50849,27965
+50850,31353
+50851,21005
+50852,12051
+50853,50446
+50854,25860
+50855,11533
+50856,661
+50857,45512
+50858,2751,76312
+50859,64356
+50860,42066,7811
+50861,56590
+50862,19994,53641
+50863,50348
+50864,9957,45495
+50865,10341,34957
+50866,51116
+50867,16860
+50868,62231
+50869,54976
+50870,76821
+50871,37515,50162,67353
+50872,33909
+50873,31879
+50874,1323
+50875,13863
+50876,16757
+50877,38249
+50878,53018
+50879,40109
+50880,65706,29005
+50881,19177
+50882,61462
+50883,24175,75013
+50884,24647
+50885,23620
+50886,32810
+50887,36615
+50888,26535
+50889,43493
+50890,36253
+50891,60624
+50892,38282
+50893,81268,23740
+50894,4925
+50895,42388
+50896,24820
+50897,32931
+50898,25309
+50899,1365
+50900,70059
+50901,75625
+50902,78106
+50903,31152
+50904,35796
+50905,20665
+50906,38903,45009
+50907,72601
+50908,81284,10698
+50909,30895
+50910,17609
+50911,42887
+50912,66372
+50913,59370
+50914,14112
+50915,45615
+50916,61251
+50917,62130
+50918,6911
+50919,60246
+50920,78348
+50921,25768
+50922,60728,53064
+50923,37244
+50924,71485
+50925,18518
+50926,82059
+50927,51710
+50928,19115
+50929,77049
+50930,20061,36426
+50931,9871
+50932,6232
+50933,80406
+50934,36509
+50935,45505
+50936,43679
+50937,24872
+50938,38254
+50939,59174
+50940,72137
+50941,73531
+50942,35684
+50943,41830,30623
+50944,55095
+50945,59553
+50946,19945
+50947,4481
+50948,34233
+50949,26050
+50950,16817
+50951,32999
+50952,67241
+50953,42078,39300
+50954,18362
+50955,44823
+50956,65136
+50957,38383
+50958,63674
+50959,30034
+50960,11174
+50961,10943
+50962,25237
+50963,10424,34973
+50964,30748
+50965,67821
+50966,64757
+50967,8465
+50968,3191
+50969,19416
+50970,48970
+50971,42126
+50972,71970
+50973,10785
+50974,49484
+50975,49214,64281,43717
+50976,29396
+50977,11865
+50978,20663
+50979,14697
+50980,77617
+50981,72508
+50982,6847
+50983,6500,7474
+50984,52856
+50985,4692,75245
+50986,45712
+50987,27819
+50988,70780
+50989,54376
+50990,67470
+50991,23697
+50992,35919,20294
+50993,65133
+50994,18170
+50995,9870,38633
+50996,39000,77911,52680
+50997,4700
+50998,43943
+50999,23098
+51000,5779,59238
+51001,47596,8116
+51002,81069
+51003,45750
+51004,40645
+51005,13451
+51006,80305
+51007,20334,68388
+51008,50983,49068
+51009,67100
+51010,73449,37992
+51011,70763
+51012,68430
+51013,9123
+51014,77663
+51015,42552
+51016,13955
+51017,4500
+51018,72365
+51019,71970,66873
+51020,41611
+51021,41044
+51022,48718
+51023,43190,16645,15233
+51024,81220
+51025,20442
+51026,35719
+51027,19437
+51028,61904,43420
+51029,72828
+51030,45099
+51031,34069,66102,63979
+51032,52494
+51033,37700
+51034,18693
+51035,48412,69535
+51036,17826
+51037,71374,25484
+51038,52605
+51039,23904
+51040,15185
+51041,59228
+51042,16233
+51043,9148
+51044,30190
+51045,19662
+51046,40776
+51047,51615
+51048,10832
+51049,28699
+51050,28925
+51051,32229
+51052,55735
+51053,8858
+51054,80072
+51055,41208
+51056,68870
+51057,48033
+51058,65610
+51059,14542,31489
+51060,1993
+51061,23680
+51062,64897
+51063,41614
+51064,12720
+51065,20915
+51066,23610,17958
+51067,13529,44873
+51068,32454
+51069,31979,10168
+51070,71423
+51071,47612
+51072,77121
+51073,54625
+51074,57579
+51075,48805
+51076,40193,75407,69802
+51077,77094,72809
+51078,49961
+51079,28641
+51080,65750
+51081,63968,20096
+51082,79501
+51083,76715
+51084,32242
+51085,3599
+51086,60591,18873,51768
+51087,51330
+51088,11090
+51089,22746,63796,51697
+51090,23907
+51091,28197,52697
+51092,41951
+51093,69348
+51094,8876
+51095,11153
+51096,49575
+51097,68086
+51098,70818
+51099,3359,78468
+51100,15505
+51101,55576
+51102,6065
+51103,19587,60181
+51104,54763
+51105,34325
+51106,8312,21344
+51107,20651
+51108,44760
+51109,51540
+51110,55679
+51111,49953
+51112,16375
+51113,40831
+51114,15124
+51115,13383
+51116,14478
+51117,69873
+51118,7341
+51119,45641
+51120,14167
+51121,10609
+51122,50240
+51123,58127
+51124,33969
+51125,62496,53400
+51126,54904
+51127,43950,17644
+51128,78786,64233
+51129,53743,14286
+51130,13672
+51131,73299
+51132,23160
+51133,28300
+51134,59562
+51135,5716
+51136,64899
+51137,20838
+51138,26893,8257
+51139,11243
+51140,48064
+51141,44125
+51142,59135
+51143,70172
+51144,76929
+51145,20071,70762
+51146,41009
+51147,10136,73345
+51148,66970
+51149,46213
+51150,36611
+51151,21150,55958
+51152,32400,65597
+51153,67483
+51154,63308
+51155,6281
+51156,65979,41766
+51157,61075
+51158,76196
+51159,46100,68497
+51160,36652
+51161,11672
+51162,5032,24014
+51163,22235
+51164,5038
+51165,50931
+51166,3278
+51167,40031
+51168,6806
+51169,19464
+51170,50716
+51171,18178
+51172,16932
+51173,16048,54105
+51174,33455
+51175,64238
+51176,35803
+51177,73574
+51178,23465
+51179,13143
+51180,48416
+51181,10591
+51182,53996
+51183,53995
+51184,8343
+51185,79134,32699
+51186,35564,31775
+51187,53309
+51188,18336
+51189,54971,13341
+51190,13898
+51191,50689
+51192,56035
+51193,6478
+51194,58116,80676,42880,43628
+51195,12914
+51196,73440,9424
+51197,80455
+51198,35230
+51199,74437
+51200,15553
+51201,3739
+51202,16688
+51203,5286,35387
+51204,22663
+51205,50138,50711
+51206,24326
+51207,46535
+51208,21024
+51209,49125
+51210,28310
+51211,43433
+51212,58253
+51213,52925,50161
+51214,59775
+51215,22235
+51216,48609
+51217,42433
+51218,65705
+51219,53777
+51220,77356
+51221,53970
+51222,4803
+51223,81908
+51224,9866
+51225,37200,30958
+51226,70190
+51227,25047
+51228,69284
+51229,18709
+51230,9319
+51231,46703
+51232,39322
+51233,50005
+51234,1139,5083
+51235,18023
+51236,6408
+51237,13807
+51238,40551
+51239,29168
+51240,3093
+51241,33101,50473
+51242,36203,78490
+51243,59597
+51244,50744
+51245,27961,2043
+51246,63167
+51247,26973,65773,14536
+51248,81485
+51249,50869
+51250,57952
+51251,67856,11566
+51252,25739
+51253,61356
+51254,38495,43438,46071
+51255,79952
+51256,43409,45354
+51257,26073
+51258,18958
+51259,69244
+51260,53525
+51261,62746
+51262,48880,42040
+51263,67620
+51264,72710,16480
+51265,21524
+51266,26701
+51267,51481
+51268,47696
+51269,48585
+51270,24193
+51271,3603
+51272,56195
+51273,35945
+51274,73344,1230
+51275,28949,61219
+51276,60893
+51277,5220
+51278,20877
+51279,17568
+51280,19037
+51281,13749
+51282,77594
+51283,37483
+51284,70723
+51285,9311
+51286,54581
+51287,64952
+51288,4340
+51289,33479
+51290,10374
+51291,35896,76036
+51292,65339,71990
+51293,17555
+51294,42076
+51295,18551
+51296,39546,63003
+51297,54537
+51298,76757
+51299,21923
+51300,18542
+51301,31810
+51302,36753,79836
+51303,49394
+51304,53391
+51305,5420
+51306,23678
+51307,47070
+51308,70821
+51309,60029
+51310,67444,27986,30445
+51311,143
+51312,58084
+51313,54927
+51314,21272
+51315,27043
+51316,3784
+51317,2397
+51318,50574,39282
+51319,28200,4963
+51320,20897
+51321,76297
+51322,40103
+51323,28198
+51324,73186
+51325,13049
+51326,4186
+51327,72873
+51328,57106,34157
+51329,48826
+51330,43151
+51331,2358
+51332,50135
+51333,74842
+51334,58506
+51335,69145
+51336,59835
+51337,34335
+51338,16195
+51339,1348
+51340,22245,74705
+51341,40423
+51342,65137
+51343,66733
+51344,51602
+51345,1302,21915
+51346,50712,69068
+51347,20541
+51348,66417
+51349,69761
+51350,44649
+51351,9356
+51352,14788
+51353,10569
+51354,59873
+51355,37726
+51356,79873
+51357,24846
+51358,7552
+51359,48607,71564
+51360,26516
+51361,54597
+51362,70901,51525
+51363,29050
+51364,48931
+51365,73021
+51366,77656
+51367,59862
+51368,16582,49734
+51369,8883
+51370,29228,36736
+51371,30038
+51372,16096
+51373,6550
+51374,73975
+51375,73517
+51376,26465
+51377,32660
+51378,35105
+51379,68476,30400
+51380,17832
+51381,5984,31160
+51382,55009
+51383,78737
+51384,8922
+51385,45757
+51386,40116
+51387,60112
+51388,19272
+51389,46921
+51390,57600,39313
+51391,48565
+51392,6202,26177
+51393,47640
+51394,12768
+51395,29507
+51396,13932
+51397,9594
+51398,5210,5240
+51399,51459
+51400,80045
+51401,76435
+51402,62019,36519
+51403,76779
+51404,79193,33412
+51405,14733,80579
+51406,55948
+51407,26919,61072
+51408,42764
+51409,47340
+51410,29891,66405
+51411,13730
+51412,2789,39788
+51413,71863,51842
+51414,60913
+51415,61565
+51416,40453
+51417,6245
+51418,46612
+51419,2025
+51420,41765
+51421,38691
+51422,1217
+51423,64691,73213
+51424,75425,23557
+51425,1969
+51426,24005
+51427,46923
+51428,12360
+51429,46913,82100
+51430,2585
+51431,74814
+51432,50934
+51433,65907
+51434,44188
+51435,46394,4706
+51436,8653,66614
+51437,1239,46070
+51438,75150
+51439,15493
+51440,4291,34223
+51441,13475
+51442,77682
+51443,40029
+51444,23499
+51445,37463
+51446,48914,35113
+51447,15181
+51448,4601
+51449,20343
+51450,3057,44895,44951
+51451,47094
+51452,12514
+51453,11880
+51454,75065
+51455,5923
+51456,70478
+51457,68341
+51458,43166
+51459,78361
+51460,21847
+51461,29410
+51462,14912
+51463,63430,47476
+51464,22431
+51465,720,9173
+51466,20584
+51467,5318
+51468,48323
+51469,12930
+51470,52242
+51471,27526
+51472,13823
+51473,76114,59724
+51474,12700
+51475,65385
+51476,19842
+51477,23206
+51478,5405
+51479,52151
+51480,329
+51481,74388
+51482,5918
+51483,68696
+51484,7249,74432
+51485,78445
+51486,62834
+51487,8740
+51488,21014
+51489,14977,81109
+51490,42745
+51491,51417,38029,853
+51492,47913
+51493,14226,61130
+51494,76721
+51495,68090
+51496,17733,21462
+51497,55149
+51498,27148
+51499,8894,17518
+51500,2268
+51501,13906
+51502,45281,51212
+51503,24573
+51504,18800
+51505,43034
+51506,22478
+51507,27039
+51508,32786,41888
+51509,26844
+51510,47735
+51511,80287
+51512,41803
+51513,8876
+51514,9621
+51515,65433
+51516,42105
+51517,33854
+51518,5914
+51519,56195
+51520,26794
+51521,82114
+51522,38282
+51523,12941
+51524,13334
+51525,68730
+51526,20819
+51527,11977
+51528,26939
+51529,14606
+51530,69400
+51531,40712
+51532,23303
+51533,48743
+51534,21685
+51535,45620
+51536,15918
+51537,42951
+51538,67692
+51539,16591
+51540,23993
+51541,9630
+51542,39389
+51543,5028,18593,69488
+51544,39837,15497
+51545,75275,61569
+51546,1928
+51547,17353
+51548,50039
+51549,9646
+51550,1307
+51551,7999
+51552,28769,32044
+51553,60928
+51554,69033
+51555,55204
+51556,15365
+51557,44359
+51558,46731
+51559,10823
+51560,2068
+51561,38327
+51562,39205,32146,28476,71756
+51563,74205
+51564,70999
+51565,13975
+51566,33169
+51567,80072
+51568,8676
+51569,59994,62675
+51570,70917
+51571,44273
+51572,59368
+51573,13107
+51574,37491
+51575,7818
+51576,1705
+51577,2235
+51578,4706,40548
+51579,45068
+51580,33384,72610
+51581,16323,37265,44717
+51582,2221
+51583,37654
+51584,43194
+51585,68827
+51586,71818
+51587,16728
+51588,66185
+51589,26573
+51590,45877
+51591,76811
+51592,72618
+51593,69150
+51594,30325
+51595,19107
+51596,43096,70122
+51597,52307
+51598,157
+51599,4261
+51600,52948,8942
+51601,57164,21995
+51602,47979,76948
+51603,32270
+51604,73931,32148
+51605,10469
+51606,74443,31022
+51607,42698
+51608,72720
+51609,65988
+51610,62495
+51611,36478
+51612,18518
+51613,29366
+51614,51232
+51615,68882
+51616,42558
+51617,80773,49896
+51618,1405
+51619,75013,35447,49492
+51620,51868
+51621,61979
+51622,57010,58560
+51623,78686
+51624,3079
+51625,43332
+51626,74649,15398
+51627,40931
+51628,38766
+51629,14076
+51630,1119
+51631,69804,54500,79221
+51632,77199
+51633,10153
+51634,34276
+51635,74991
+51636,46927
+51637,65662
+51638,53565
+51639,81914
+51640,65148
+51641,11661
+51642,39927
+51643,48485
+51644,42203
+51645,28134
+51646,331
+51647,21809
+51648,5560
+51649,94
+51650,69772
+51651,33639,5041
+51652,25823
+51653,66536
+51654,18782
+51655,69844
+51656,17630,42327
+51657,54157,4324
+51658,50930,22162
+51659,78063
+51660,15448
+51661,45679
+51662,23361
+51663,11487
+51664,62340
+51665,79156
+51666,58342,3274
+51667,79087
+51668,39589
+51669,69632
+51670,35108,18697
+51671,6894
+51672,11242
+51673,81022
+51674,39495
+51675,74156
+51676,29395
+51677,10613
+51678,34838
+51679,65610
+51680,51022
+51681,59835
+51682,32296
+51683,44008
+51684,1544,7838
+51685,40916
+51686,73458
+51687,54203
+51688,398
+51689,27185
+51690,29175
+51691,20596
+51692,82056,48385
+51693,71564
+51694,38994
+51695,49815
+51696,71461
+51697,54339
+51698,9162
+51699,41173
+51700,82038
+51701,75507,22513
+51702,16108
+51703,1612,35143
+51704,70307
+51705,48221,22081
+51706,8188
+51707,29986
+51708,13334
+51709,37390
+51710,74494,16728,68108,58983
+51711,69811
+51712,7119
+51713,77721,46795
+51714,20410
+51715,5754
+51716,55467,1901
+51717,75035
+51718,41806,79851
+51719,210
+51720,32683,77611
+51721,34611,64194
+51722,20223,25478
+51723,59835
+51724,17684,80149
+51725,13415,35466
+51726,15447
+51727,4978
+51728,4432
+51729,22639
+51730,13407
+51731,46235
+51732,61344,60808
+51733,36652
+51734,32230
+51735,41752
+51736,35190,9054,26781
+51737,4261
+51738,53898
+51739,73998
+51740,55677,56549,75814
+51741,74834
+51742,61790
+51743,81819,4966
+51744,52453
+51745,74215
+51746,12447
+51747,55192
+51748,25510
+51749,64948
+51750,46095
+51751,11879
+51752,37569
+51753,33493
+51754,73724
+51755,44106
+51756,82141,61791
+51757,17286
+51758,20486
+51759,10106
+51760,8251
+51761,25010,51041
+51762,19134,25279
+51763,78113
+51764,58126
+51765,11292
+51766,45543
+51767,9823
+51768,45153
+51769,80098
+51770,18784
+51771,2303,51634
+51772,15128
+51773,41716
+51774,30846
+51775,59242
+51776,24629
+51777,64582
+51778,69788
+51779,36638
+51780,65937
+51781,48743
+51782,76761
+51783,1417
+51784,18399
+51785,47545
+51786,13983
+51787,17551
+51788,49144
+51789,29811
+51790,81800,73771
+51791,26545,6508
+51792,1067
+51793,73783
+51794,72637
+51795,15949
+51796,22343,66150
+51797,80185,15517
+51798,62334
+51799,55968
+51800,73042
+51801,69336,3090
+51802,513
+51803,76603
+51804,58887
+51805,71295
+51806,36174
+51807,19525,58737
+51808,81719
+51809,69490
+51810,11422,40437
+51811,21446,3659
+51812,55916,35833
+51813,5484
+51814,78450
+51815,27154
+51816,9298
+51817,9322
+51818,46657
+51819,49931
+51820,47648,16435
+51821,43846
+51822,37190
+51823,28247
+51824,39733
+51825,2163
+51826,65126
+51827,20019,66122
+51828,42469,48879
+51829,61939
+51830,54112,79876
+51831,69341
+51832,45112
+51833,3567
+51834,34089
+51835,70381
+51836,1283,49405,62967
+51837,74007
+51838,34572
+51839,39987,477
+51840,22197
+51841,69353
+51842,43274
+51843,34263
+51844,31649
+51845,21819,64687
+51846,3516,81596
+51847,29805
+51848,25363
+51849,2221
+51850,9026
+51851,8538
+51852,15380
+51853,8098
+51854,54119,59239
+51855,59320
+51856,5389,54647,78035
+51857,38408
+51858,13553
+51859,1804
+51860,16195
+51861,61267
+51862,51027
+51863,31706
+51864,6321
+51865,21835
+51866,488
+51867,37660
+51868,26672
+51869,28454,7367
+51870,62495
+51871,52232
+51872,50030
+51873,7163
+51874,21510
+51875,3871
+51876,34613
+51877,26986,60103,70711
+51878,49347
+51879,40685
+51880,25470
+51881,15708
+51882,60706
+51883,40241
+51884,61453
+51885,44176
+51886,16793,57680,57856
+51887,81243
+51888,32489,29935
+51889,28027
+51890,70971,68533
+51891,8612
+51892,3188
+51893,61933,19484
+51894,51773
+51895,19129
+51896,28431
+51897,36341
+51898,15590,71966
+51899,75014
+51900,14337
+51901,57164
+51902,39678
+51903,68690
+51904,2477
+51905,81879
+51906,34922
+51907,50057
+51908,54913,26190
+51909,72926
+51910,13936
+51911,46981
+51912,50714
+51913,56576
+51914,64732
+51915,48049
+51916,51032
+51917,24210
+51918,3465
+51919,37914,48441,57574
+51920,55518
+51921,75880,18940
+51922,64118,27044
+51923,31934
+51924,65230,76154
+51925,16338
+51926,35929
+51927,30705
+51928,41592
+51929,65676
+51930,40501
+51931,2064
+51932,28631,75795,40610
+51933,24878,59174
+51934,53521
+51935,80339,40575
+51936,47423,47444,20470
+51937,15323
+51938,2720
+51939,45308
+51940,29938
+51941,36393
+51942,4684
+51943,24458
+51944,68800
+51945,10273
+51946,6151
+51947,23751
+51948,62244
+51949,59261
+51950,45742,22478
+51951,16663
+51952,9983
+51953,8327
+51954,15502
+51955,16397
+51956,82,68499,10871
+51957,65617
+51958,67285
+51959,70597,36721
+51960,63883
+51961,78422
+51962,30930
+51963,752
+51964,55773
+51965,38304
+51966,33919
+51967,44957,19810
+51968,76534
+51969,80380
+51970,56608
+51971,17105
+51972,48969
+51973,18802
+51974,80301
+51975,11028
+51976,78803
+51977,6551
+51978,45922
+51979,13889
+51980,5339
+51981,34813
+51982,34092
+51983,2009,32325,63854
+51984,67200
+51985,51274
+51986,75251
+51987,20433,51940
+51988,57130,25491
+51989,29277
+51990,25053,31090
+51991,42522
+51992,72721
+51993,80470
+51994,12988
+51995,20298
+51996,34519,55890
+51997,9918,24264,24337
+51998,59198
+51999,19292
+52000,76349
+52001,72254
+52002,52282
+52003,77664
+52004,30475
+52005,51748,43028
+52006,8114
+52007,39480
+52008,26494
+52009,7999
+52010,8684
+52011,50806,52627
+52012,45880
+52013,56752
+52014,14660
+52015,42401
+52016,35292
+52017,29767
+52018,69570
+52019,20850
+52020,313
+52021,52089
+52022,70972
+52023,56919
+52024,59157,24838
+52025,58485
+52026,60149
+52027,55517
+52028,52208
+52029,62660
+52030,26022,8152,27276
+52031,2734
+52032,9398
+52033,56546
+52034,35644
+52035,66823
+52036,70633
+52037,4204
+52038,36090
+52039,46179
+52040,74900
+52041,48062,65684
+52042,48855,32772,20161
+52043,11576
+52044,4417
+52045,11680
+52046,48474
+52047,36878
+52048,23409
+52049,72126,49455
+52050,77401
+52051,15168
+52052,31339
+52053,24959
+52054,32650
+52055,58942,13248
+52056,50969
+52057,60183
+52058,32174
+52059,52255
+52060,48221
+52061,69323
+52062,81433
+52063,1123
+52064,60372,40524,31437
+52065,7877
+52066,22906,5714,32272
+52067,25526
+52068,67515,21749
+52069,54735,53647
+52070,72172
+52071,21243
+52072,5802
+52073,62178
+52074,73156
+52075,26200
+52076,76701
+52077,14146,62941
+52078,68836,18055
+52079,25282
+52080,19956
+52081,38889
+52082,56861
+52083,65567
+52084,15505
+52085,74679,43050
+52086,80247
+52087,46134
+52088,1649
+52089,24451
+52090,34955,5214
+52091,11391
+52092,25652
+52093,67311
+52094,13333
+52095,78630
+52096,41607
+52097,47425
+52098,26191
+52099,75784
+52100,12633
+52101,46149
+52102,10650
+52103,59500
+52104,15888
+52105,4713
+52106,79934
+52107,4340
+52108,938
+52109,44157
+52110,39659
+52111,41590,39886
+52112,10324,75161
+52113,31681
+52114,68828
+52115,27212
+52116,393
+52117,40715
+52118,8530
+52119,16437
+52120,30255
+52121,40995
+52122,77797
+52123,42719
+52124,31183
+52125,56873
+52126,13215
+52127,49285
+52128,55306
+52129,36591
+52130,56733
+52131,3155
+52132,17979
+52133,48313
+52134,78700
+52135,49274
+52136,69766
+52137,30008
+52138,33670
+52139,21096
+52140,66259,77268
+52141,32556
+52142,54843
+52143,78316
+52144,53381
+52145,40743
+52146,5268
+52147,30814
+52148,50906
+52149,11959
+52150,29812
+52151,80726
+52152,36894
+52153,46431
+52154,71485
+52155,78957
+52156,15294
+52157,16242
+52158,17223
+52159,7139
+52160,5743
+52161,25232
+52162,76238
+52163,74876
+52164,71169
+52165,36490
+52166,47881
+52167,75881
+52168,74921,46073
+52169,66872
+52170,20748
+52171,15183
+52172,31494,18131
+52173,9123
+52174,79645
+52175,53914
+52176,63076
+52177,2093
+52178,36540
+52179,12742
+52180,31511
+52181,27229
+52182,23648
+52183,81189
+52184,61896
+52185,70225
+52186,20486
+52187,17820
+52188,39777
+52189,3041
+52190,75086
+52191,72223
+52192,41718
+52193,16097
+52194,34338
+52195,7642
+52196,19170
+52197,27539,27245
+52198,79335
+52199,64217
+52200,73035
+52201,80409
+52202,66966
+52203,9355
+52204,39866
+52205,34394,33220
+52206,65896
+52207,61872,57477,32534
+52208,72709
+52209,53397
+52210,19044
+52211,49057
+52212,20878
+52213,493
+52214,55557,46044
+52215,26331
+52216,30574
+52217,26290
+52218,19146
+52219,1950,8089
+52220,34190
+52221,41195
+52222,75023
+52223,72348
+52224,6812
+52225,78229
+52226,63451
+52227,31884
+52228,66145
+52229,3981
+52230,75477,22110
+52231,75492
+52232,73199
+52233,24414,28470
+52234,25258,72165
+52235,77760
+52236,68090
+52237,64948
+52238,72223
+52239,8597
+52240,39398,8275
+52241,8587
+52242,52398
+52243,37064
+52244,69581,77761
+52245,70146
+52246,46333
+52247,25306
+52248,75782
+52249,74962
+52250,47849
+52251,71008
+52252,62613
+52253,539
+52254,17393
+52255,55361
+52256,1214,71830
+52257,71175,11092
+52258,81881
+52259,56321
+52260,50129
+52261,20882
+52262,11092
+52263,1684
+52264,74063
+52265,65365
+52266,61262,77776
+52267,62369
+52268,77762
+52269,44532
+52270,5179
+52271,17009
+52272,26767
+52273,8045
+52274,24127
+52275,32788
+52276,64643
+52277,49324,75677
+52278,70732
+52279,4474
+52280,54202
+52281,62209
+52282,65425
+52283,75937
+52284,14459
+52285,41841,12038,12977
+52286,65078
+52287,54028
+52288,55335
+52289,67766
+52290,23977
+52291,11493
+52292,23729
+52293,18089
+52294,6264,64021
+52295,49350
+52296,24906,29976,52011
+52297,71446
+52298,80759
+52299,57710
+52300,57613
+52301,21591
+52302,58915
+52303,66802,935
+52304,41083
+52305,73050
+52306,55893
+52307,48293,40768
+52308,132
+52309,3852
+52310,7753,70714
+52311,71194
+52312,75702
+52313,17597
+52314,43678
+52315,21415,69098
+52316,57099
+52317,55332
+52318,51623
+52319,38743
+52320,72422,63429
+52321,65498,76449,57701
+52322,7133
+52323,2724
+52324,53948
+52325,75583
+52326,57198
+52327,66179
+52328,20179
+52329,18440
+52330,44545
+52331,16
+52332,57067
+52333,1882
+52334,77585
+52335,15255
+52336,57218,21221
+52337,7341
+52338,2297
+52339,4461
+52340,57011
+52341,27479
+52342,61304
+52343,38532,43178
+52344,50492
+52345,32268
+52346,4867
+52347,21953,10262
+52348,80336
+52349,28515
+52350,60724
+52351,45146
+52352,27982
+52353,47361
+52354,57774
+52355,23087,11211
+52356,6942
+52357,75649
+52358,27520
+52359,13853,20674,56604
+52360,41570
+52361,44656
+52362,49041
+52363,6547
+52364,10522
+52365,64910
+52366,75143
+52367,54565
+52368,47059
+52369,12871
+52370,54541
+52371,48301
+52372,13814
+52373,72038
+52374,21643
+52375,24298,2433
+52376,73279,33796
+52377,68456
+52378,11294
+52379,51199
+52380,60735
+52381,13760
+52382,42278
+52383,18364
+52384,31205,62615
+52385,41641
+52386,75141
+52387,47016
+52388,18503
+52389,31200
+52390,15199
+52391,42242
+52392,76993
+52393,39494
+52394,39081
+52395,48959
+52396,26444,4181
+52397,51634
+52398,57830
+52399,71313
+52400,59323
+52401,28548
+52402,31884
+52403,28396
+52404,11561
+52405,78032
+52406,10224
+52407,10195
+52408,3181
+52409,13044,30702
+52410,8536
+52411,31418
+52412,74019,63634
+52413,59612,29836
+52414,55611
+52415,30035
+52416,80341
+52417,52483
+52418,4765
+52419,38107
+52420,62360
+52421,62203
+52422,66756
+52423,17698
+52424,29059
+52425,43768
+52426,12864
+52427,21569
+52428,12669
+52429,10361
+52430,20874
+52431,76207,14948
+52432,23341
+52433,36588
+52434,63102
+52435,38585,10324
+52436,40767,44669
+52437,29155
+52438,74216
+52439,59357
+52440,10106
+52441,68791
+52442,80757
+52443,4792
+52444,43026
+52445,11154
+52446,76948
+52447,16057,48897
+52448,81229
+52449,17347
+52450,35932,70058
+52451,35552
+52452,51065
+52453,22771
+52454,7403
+52455,67189
+52456,42759
+52457,28664
+52458,41689
+52459,72681,34711
+52460,33980
+52461,14891,45476,9060
+52462,78499
+52463,5640,15438
+52464,81981
+52465,15654
+52466,75621,74156
+52467,40445
+52468,79261
+52469,76354,13534
+52470,13901
+52471,36981
+52472,52775
+52473,59974
+52474,10799
+52475,381
+52476,79962
+52477,269
+52478,40358
+52479,56754
+52480,39063,57349
+52481,14888
+52482,33653
+52483,35818
+52484,6362,58381
+52485,26786
+52486,30578
+52487,10128,3381
+52488,66115
+52489,65131
+52490,25603
+52491,40186
+52492,68983
+52493,77464,49564
+52494,27461
+52495,31500,12480
+52496,40002
+52497,17144
+52498,77036
+52499,69256
+52500,36087
+52501,80481,64716
+52502,61460
+52503,75777
+52504,22364
+52505,7382,64034
+52506,81607
+52507,8754
+52508,59787
+52509,46226
+52510,24224
+52511,3937
+52512,16335,71567,17249
+52513,63417,4610
+52514,69812
+52515,32141
+52516,3277
+52517,63239
+52518,33385
+52519,73453,60114
+52520,63558
+52521,47857
+52522,19733,36161
+52523,61983
+52524,58173
+52525,31740
+52526,65296,59068
+52527,58444
+52528,55565
+52529,10949
+52530,72170,26827,44377
+52531,27450
+52532,30379
+52533,55291,61358
+52534,27025
+52535,74775
+52536,56245
+52537,82100
+52538,8676
+52539,66833
+52540,61826
+52541,80005
+52542,26258,73072
+52543,8830
+52544,38543
+52545,13483
+52546,74139
+52547,8953
+52548,19077
+52549,72458
+52550,68880
+52551,31674,9815
+52552,74374
+52553,14028
+52554,71830,10899
+52555,64326
+52556,60794,78084
+52557,79268
+52558,18347
+52559,67636
+52560,56788,7306
+52561,27977
+52562,4630
+52563,24903
+52564,20257,29956,936,31932,32355
+52565,58546
+52566,3037,49491
+52567,9406
+52568,78621
+52569,47830
+52570,8726
+52571,51090
+52572,48360
+52573,54296
+52574,62939
+52575,40427
+52576,23892
+52577,19265
+52578,52014
+52579,5212,53030
+52580,81139
+52581,75309,30983
+52582,65509
+52583,41318
+52584,56363
+52585,70473
+52586,46153
+52587,29585,26836
+52588,67106
+52589,40669
+52590,30594
+52591,80296
+52592,34404
+52593,77110
+52594,34907
+52595,68817,54790
+52596,59929
+52597,32313
+52598,71322
+52599,17512
+52600,71837
+52601,23897
+52602,54747
+52603,48544
+52604,81334
+52605,34200
+52606,21816,61076
+52607,34186
+52608,34034
+52609,9870
+52610,76715
+52611,80482
+52612,55394,57386
+52613,14510
+52614,3400
+52615,33829
+52616,61740,75156
+52617,9247,61275,73095
+52618,56753
+52619,45406
+52620,80674
+52621,17298
+52622,11542,12185
+52623,77667
+52624,14958
+52625,10174
+52626,79534
+52627,40656,9916
+52628,20039
+52629,23638
+52630,34616
+52631,14390,19532
+52632,27334
+52633,45823
+52634,18009
+52635,46243
+52636,27982
+52637,43036
+52638,78688,445
+52639,76273
+52640,1404
+52641,56552
+52642,63563
+52643,17282
+52644,76773
+52645,66087
+52646,75982
+52647,73362
+52648,4636
+52649,47921
+52650,28488
+52651,7802,38434
+52652,6985
+52653,43143
+52654,70038
+52655,41728
+52656,13224
+52657,14101
+52658,3998
+52659,29976,60870
+52660,72449
+52661,63366
+52662,63619,33825
+52663,60708
+52664,41502
+52665,13968,22511
+52666,69417
+52667,68332,32873
+52668,70412
+52669,12855
+52670,36853
+52671,853
+52672,59172,47672,79165
+52673,48528
+52674,81548,38683
+52675,35658
+52676,63345
+52677,51641
+52678,38802
+52679,36407
+52680,13632
+52681,79411,29211
+52682,33549
+52683,32234
+52684,71808,67705
+52685,31978
+52686,40970
+52687,18123
+52688,65374
+52689,65943
+52690,72157,48930
+52691,45174
+52692,68519,71172
+52693,54599
+52694,47256
+52695,45705
+52696,58
+52697,71678
+52698,48718
+52699,45435
+52700,27558
+52701,46504
+52702,9019,13682
+52703,67381
+52704,56182
+52705,41532,43805
+52706,44917
+52707,54711
+52708,34206
+52709,72620
+52710,18556
+52711,73067
+52712,3653
+52713,76591,35678,53597
+52714,8272
+52715,47952
+52716,64732
+52717,60781
+52718,52092
+52719,6150
+52720,16061,51677,56793
+52721,21273
+52722,8901,8920
+52723,26304,68859
+52724,9481
+52725,32609,148
+52726,26707
+52727,35068
+52728,15903
+52729,8449
+52730,45906
+52731,32060
+52732,73270
+52733,23929
+52734,45210,55185
+52735,57722
+52736,81629
+52737,69586
+52738,66737
+52739,23547,4833
+52740,16539,33454
+52741,52679,77527
+52742,47024
+52743,29691
+52744,992
+52745,81907
+52746,4662
+52747,47367
+52748,1018,71253
+52749,16304
+52750,55409
+52751,37665
+52752,75198
+52753,57896
+52754,68846
+52755,56878
+52756,44664
+52757,56295
+52758,3718
+52759,26343
+52760,80929
+52761,2192
+52762,10768
+52763,63907
+52764,5809
+52765,9809
+52766,40746
+52767,37583,66941
+52768,53965
+52769,76745
+52770,3521,51162,43719
+52771,15551
+52772,59422
+52773,71301
+52774,75936
+52775,39686
+52776,74497
+52777,31220
+52778,3221
+52779,21200
+52780,40030,66962
+52781,62445,7221
+52782,67362,82090
+52783,9430
+52784,63082
+52785,47984
+52786,18256
+52787,13580
+52788,58545
+52789,3662
+52790,17948
+52791,82149
+52792,81139
+52793,77128,34170
+52794,26938
+52795,21762
+52796,1367,43969
+52797,73237
+52798,37721
+52799,28371,60819
+52800,29339
+52801,79436
+52802,14285
+52803,18106,41790
+52804,22240,58173
+52805,43749,37330
+52806,22397
+52807,62261,1512
+52808,58694
+52809,4277
+52810,72223
+52811,48417,52518
+52812,25579
+52813,50457
+52814,22743
+52815,41892
+52816,67685
+52817,67928
+52818,79213
+52819,45056
+52820,19921
+52821,25037
+52822,40133
+52823,174
+52824,34363
+52825,45606
+52826,17011
+52827,39159
+52828,19250
+52829,4128
+52830,10529
+52831,26025,78081
+52832,6520,18695
+52833,54203,9319
+52834,38993,77579
+52835,7903
+52836,1653
+52837,43769,78500,45769
+52838,18811,50346
+52839,29043
+52840,28623
+52841,38335
+52842,67753
+52843,31154
+52844,31998
+52845,7858
+52846,39333
+52847,1343
+52848,67711
+52849,4591,38726
+52850,70913
+52851,58749,56657
+52852,57467
+52853,5014
+52854,65489
+52855,25957
+52856,53258
+52857,77112
+52858,48326
+52859,36113,52310
+52860,37376
+52861,74148
+52862,22976,70888
+52863,74205
+52864,10231
+52865,48489
+52866,77304
+52867,30454
+52868,16221
+52869,74486
+52870,15702
+52871,55447
+52872,81782
+52873,14479
+52874,32011
+52875,55815,59265,21560
+52876,79787
+52877,39661
+52878,75102,48712
+52879,58261,58299
+52880,31439
+52881,29888
+52882,14366
+52883,32146
+52884,43304
+52885,82112
+52886,24262
+52887,25065
+52888,23559
+52889,25207,51354
+52890,70421
+52891,31625
+52892,77355
+52893,73506
+52894,47374
+52895,43611
+52896,11520,17801
+52897,68281
+52898,26556,51220
+52899,44494
+52900,70580
+52901,36805
+52902,11339
+52903,36532
+52904,6304
+52905,3603
+52906,70682
+52907,4997
+52908,35941
+52909,48968
+52910,74265
+52911,22771
+52912,50404
+52913,22867
+52914,35865
+52915,54928,56537,33165
+52916,65,42687
+52917,77315
+52918,22404
+52919,27933,81627
+52920,4471
+52921,16346
+52922,28925
+52923,36755
+52924,21646
+52925,25039,8623
+52926,5555
+52927,66717
+52928,78840
+52929,37283
+52930,65167
+52931,55282
+52932,39082
+52933,3493,77921
+52934,54127
+52935,32930,80232
+52936,13098
+52937,27487
+52938,20460
+52939,41240
+52940,33783,24159
+52941,68422
+52942,57394
+52943,48531
+52944,34848
+52945,44849
+52946,41805
+52947,54157,19804
+52948,28820
+52949,68297,38237
+52950,43152
+52951,71529,68600
+52952,54442,19103
+52953,76330
+52954,79787
+52955,3072
+52956,24829
+52957,61124,42758
+52958,22113
+52959,15250
+52960,61163
+52961,32377
+52962,67885
+52963,22781
+52964,30634,15480
+52965,60520
+52966,58320
+52967,37054,17629
+52968,54825
+52969,18897
+52970,46109,57376
+52971,26353
+52972,73214
+52973,44179
+52974,381
+52975,43330
+52976,42773,74490
+52977,13404
+52978,75059
+52979,76534
+52980,25186
+52981,69205
+52982,52067
+52983,4255
+52984,57996
+52985,40054
+52986,18012
+52987,29761
+52988,34868
+52989,16775
+52990,35118
+52991,17822
+52992,42488,12133,11861,82187
+52993,42909
+52994,67230
+52995,613
+52996,10144
+52997,73458
+52998,8666
+52999,77504
+53000,42127,47181
+53001,62186
+53002,51975
+53003,52407,64509
+53004,11577
+53005,37432
+53006,50923
+53007,16766
+53008,1247
+53009,75275,38822
+53010,19776
+53011,14014
+53012,17480
+53013,6337
+53014,49618
+53015,47430,2277
+53016,41208
+53017,32208
+53018,50501
+53019,44938
+53020,62185
+53021,28315
+53022,80266
+53023,5372
+53024,19401
+53025,210
+53026,20068
+53027,23982
+53028,65817
+53029,17258,8173
+53030,77504,38600
+53031,49171
+53032,12466
+53033,57568
+53034,8848
+53035,66113
+53036,8552
+53037,11438
+53038,2063
+53039,36802
+53040,64146
+53041,81565,39479
+53042,81422
+53043,77452
+53044,57859
+53045,63180,25819,47381
+53046,10482
+53047,68988
+53048,34874
+53049,9640
+53050,74917
+53051,9378
+53052,59612
+53053,18494
+53054,770
+53055,1778,30447
+53056,37250,34709
+53057,35962
+53058,5712,22314,62870
+53059,62255
+53060,26898
+53061,18601
+53062,19053
+53063,1769
+53064,10925
+53065,45220,19842
+53066,62145
+53067,73506
+53068,9073,75646
+53069,3744
+53070,4262
+53071,40061,76435
+53072,30833
+53073,20356
+53074,68189
+53075,32794
+53076,4171
+53077,46370
+53078,62495
+53079,69410,13753
+53080,8345
+53081,63716
+53082,5744
+53083,38175
+53084,30993
+53085,50118,9448
+53086,1280
+53087,30176
+53088,32682
+53089,71389
+53090,13147
+53091,76869,8988
+53092,76223
+53093,15856
+53094,21355
+53095,41409,57273
+53096,11355
+53097,52006
+53098,13988
+53099,70531
+53100,14686,8912
+53101,49587
+53102,57171
+53103,16922
+53104,25948,26510
+53105,71548
+53106,8259
+53107,28562
+53108,67439
+53109,70895
+53110,73992
+53111,75709
+53112,61768
+53113,77982
+53114,70128
+53115,26496
+53116,44980
+53117,21877
+53118,55269
+53119,5926
+53120,22699
+53121,13665
+53122,42360
+53123,18584
+53124,12310,51369
+53125,11279,65219
+53126,26978
+53127,24083
+53128,40240,50
+53129,18055
+53130,41818
+53131,18465
+53132,52981
+53133,51898,64866,21474
+53134,21213,42911
+53135,69521
+53136,47117,40094
+53137,68041
+53138,30501
+53139,20302
+53140,24954
+53141,69596
+53142,70759
+53143,80270
+53144,66183
+53145,46792
+53146,69717
+53147,68171,18389
+53148,45087
+53149,20818
+53150,51222
+53151,79818
+53152,23654
+53153,7260
+53154,41820
+53155,22697,4928,26412
+53156,46378
+53157,68602,38973
+53158,46936
+53159,13877,53314
+53160,69349
+53161,11451,44039
+53162,22503
+53163,28507
+53164,80720
+53165,28609
+53166,72934
+53167,12523
+53168,49454,23492
+53169,35509
+53170,39931
+53171,49339
+53172,64525,34485,71699
+53173,23993
+53174,78464
+53175,63773,37643
+53176,30828
+53177,17005,39939
+53178,55808,8552
+53179,63568
+53180,71851,72591
+53181,66945
+53182,67419
+53183,77504
+53184,76106
+53185,60854
+53186,70584,59535
+53187,23980,443
+53188,80260
+53189,5234
+53190,2603
+53191,49085,54734
+53192,58790
+53193,59400
+53194,9170
+53195,30514
+53196,53495
+53197,59419,27843
+53198,52175
+53199,25160,12469
+53200,25038
+53201,41299,46947,3753
+53202,14858
+53203,14600
+53204,70329
+53205,26140
+53206,12242
+53207,60674
+53208,37940,17292
+53209,35345
+53210,3427,63934
+53211,77399,57414
+53212,45975
+53213,17307
+53214,709
+53215,36845
+53216,2094
+53217,38600
+53218,24954,39775
+53219,14479
+53220,47930
+53221,69878
+53222,61480
+53223,50745
+53224,20830
+53225,8476
+53226,41409
+53227,10534
+53228,41708
+53229,70661
+53230,30325
+53231,4823
+53232,18366
+53233,20365
+53234,13214
+53235,54539
+53236,34113
+53237,66279,39515
+53238,25616
+53239,32793
+53240,20920,15634
+53241,10973
+53242,38257
+53243,33168
+53244,55734
+53245,70800
+53246,11092
+53247,23842
+53248,39683
+53249,22012,47709
+53250,39901
+53251,62318,3403
+53252,38615
+53253,20780
+53254,59636
+53255,75793
+53256,35885
+53257,66688
+53258,14807
+53259,31782,37102
+53260,8772
+53261,28010
+53262,54668,27810
+53263,31163
+53264,64405
+53265,42698
+53266,18915
+53267,56665,44797
+53268,3063,43874
+53269,16548
+53270,9326,53210
+53271,15747
+53272,11933
+53273,79481
+53274,51960,31679
+53275,54720,21278
+53276,15076
+53277,31674
+53278,34892
+53279,28961
+53280,6659
+53281,33031
+53282,41079
+53283,1001
+53284,18010
+53285,70224
+53286,75231
+53287,65170
+53288,45091
+53289,80539
+53290,29780,68867
+53291,57564
+53292,55491
+53293,7182,8644
+53294,68098
+53295,50219
+53296,52930
+53297,16464,43506
+53298,34811
+53299,23390
+53300,69025
+53301,42243
+53302,19819
+53303,46385,37453
+53304,16443
+53305,7066
+53306,45903
+53307,20960
+53308,32479
+53309,67397
+53310,48698
+53311,48564
+53312,15496
+53313,76024
+53314,59404
+53315,27695
+53316,50336
+53317,12026
+53318,41752
+53319,75079
+53320,10296
+53321,552
+53322,12653,42001
+53323,48452
+53324,10278,1462
+53325,65887
+53326,17368
+53327,81256
+53328,6459
+53329,64897,80543
+53330,78348,15483
+53331,46552
+53332,77833
+53333,59536
+53334,19749
+53335,58318
+53336,39790
+53337,33203
+53338,57605
+53339,8063
+53340,7878,66957
+53341,67269
+53342,60721
+53343,40340
+53344,65113
+53345,43682
+53346,35287
+53347,64419
+53348,37376
+53349,35092,64129,58933
+53350,56882
+53351,36664
+53352,46341
+53353,48598
+53354,65285,64452
+53355,72363,42394
+53356,44399
+53357,71726
+53358,59028
+53359,80662
+53360,33550
+53361,48734
+53362,36893
+53363,43210
+53364,46894
+53365,71435
+53366,76475,32715
+53367,29341
+53368,49645
+53369,79309
+53370,23980
+53371,24973
+53372,42284
+53373,11437
+53374,63551
+53375,6154
+53376,32316
+53377,61145,65339
+53378,62733
+53379,37697
+53380,69111
+53381,65662
+53382,36667
+53383,45376
+53384,57511
+53385,14371
+53386,60682,56034
+53387,34774
+53388,2678
+53389,81494
+53390,34954
+53391,66802
+53392,68104
+53393,10106
+53394,51975
+53395,78394
+53396,15269
+53397,31798
+53398,38674,53457
+53399,81379,40663
+53400,74106
+53401,42314,77235
+53402,50658
+53403,72988
+53404,56584,53702
+53405,69272
+53406,29692
+53407,62100
+53408,47734
+53409,73578,76772
+53410,51313
+53411,61795
+53412,30026,64528,60120
+53413,68497,58101
+53414,57766
+53415,27859
+53416,23637
+53417,64404
+53418,6465
+53419,49415
+53420,77875
+53421,79375
+53422,23605
+53423,29492
+53424,71304
+53425,29216
+53426,65679
+53427,71249
+53428,45151
+53429,77844
+53430,47332
+53431,43053
+53432,48717
+53433,48313
+53434,44703
+53435,36844
+53436,50140
+53437,73354
+53438,56226
+53439,26515,76419
+53440,28122
+53441,2860
+53442,18207
+53443,27000
+53444,27044
+53445,7518
+53446,19118
+53447,52293
+53448,63441
+53449,60365
+53450,8825
+53451,65207
+53452,51187
+53453,54764
+53454,23089
+53455,67066,67739,46680
+53456,65133,80757
+53457,40692
+53458,57588
+53459,36251,21812
+53460,3340,2101
+53461,64180
+53462,6296,38321
+53463,38097,41262
+53464,5061
+53465,30034
+53466,46829
+53467,28601
+53468,18853
+53469,5528
+53470,6991
+53471,11796
+53472,62651
+53473,4687
+53474,42484
+53475,2974
+53476,53722
+53477,4242
+53478,68659
+53479,43218
+53480,59209
+53481,56195
+53482,33236,54668,70764
+53483,24642
+53484,59591
+53485,78050
+53486,72757,51574
+53487,15920
+53488,45598
+53489,41208
+53490,9865
+53491,30163,33138,64551
+53492,50510
+53493,30212
+53494,74511,60439,76612
+53495,60674
+53496,50961
+53497,80664,36097
+53498,40559
+53499,60931
+53500,9389
+53501,57157,59393
+53502,34
+53503,15182
+53504,76398
+53505,36935
+53506,58484
+53507,13742
+53508,54672
+53509,48494
+53510,33975
+53511,57952
+53512,70560
+53513,61330,72449
+53514,43090
+53515,21715,51100
+53516,13742
+53517,55084
+53518,30623
+53519,20304
+53520,42633
+53521,38959
+53522,39227
+53523,20301
+53524,5204,17402
+53525,80045
+53526,32081
+53527,14312
+53528,26938,8953
+53529,38433,70638
+53530,26475,29146
+53531,55370
+53532,51230
+53533,45899
+53534,75115
+53535,73215
+53536,29423
+53537,17785
+53538,45820
+53539,20026
+53540,75818
+53541,76409
+53542,29777,25040
+53543,10353
+53544,59851
+53545,59976
+53546,25660
+53547,52300
+53548,74401
+53549,78839
+53550,10106
+53551,12526,26116
+53552,57124
+53553,32715,45087
+53554,68549
+53555,72318,21343
+53556,75457
+53557,77333
+53558,59165
+53559,23372
+53560,18926
+53561,8151
+53562,10795
+53563,53552,24711
+53564,80055
+53565,74074
+53566,34145,15569
+53567,70297
+53568,29110
+53569,55902
+53570,28795
+53571,9740
+53572,50327
+53573,56696,72749
+53574,67356
+53575,67332
+53576,72457
+53577,57377,61237,35410
+53578,41801
+53579,56404
+53580,33278,15785
+53581,79145,45769
+53582,16491
+53583,70380
+53584,56248
+53585,38231
+53586,63772
+53587,67907
+53588,29816
+53589,77898
+53590,71485
+53591,80709
+53592,59902,53487
+53593,73934
+53594,14443
+53595,67575
+53596,22979
+53597,7195,35311
+53598,37365
+53599,8885
+53600,35929
+53601,6437
+53602,77002,32667
+53603,57374,7130
+53604,50467
+53605,70583,66977
+53606,70075
+53607,22472,24350
+53608,1137
+53609,58981
+53610,18283
+53611,80865
+53612,25060,64931
+53613,65706
+53614,61087
+53615,68729,67810
+53616,75294
+53617,7902
+53618,27533
+53619,41703
+53620,51794
+53621,80921
+53622,52019
+53623,67231,21865
+53624,78330
+53625,4327
+53626,47641,60443
+53627,57609
+53628,81022
+53629,55448
+53630,39241
+53631,60087
+53632,30217
+53633,59175
+53634,53325
+53635,38785
+53636,20258
+53637,18348
+53638,58660
+53639,50182
+53640,70190
+53641,67099
+53642,70398
+53643,22333
+53644,40534
+53645,44980
+53646,64685
+53647,34911
+53648,6071
+53649,27543
+53650,22013
+53651,7494
+53652,11938
+53653,26087,42204
+53654,44234
+53655,55067,38061
+53656,16339
+53657,71228
+53658,53584,64191
+53659,17791
+53660,57133
+53661,43001
+53662,81809
+53663,8025
+53664,76221
+53665,14300,79136
+53666,8573
+53667,75758
+53668,34868
+53669,8911
+53670,63619
+53671,27110,18881
+53672,55192
+53673,30852
+53674,57908
+53675,19871
+53676,21332
+53677,10117,43859
+53678,28892,65420
+53679,53895,62136
+53680,14381,77363
+53681,70851
+53682,57534
+53683,63903
+53684,46994
+53685,2549
+53686,53822
+53687,28320,8319
+53688,56971
+53689,20823
+53690,71890
+53691,22113,43045,24736
+53692,2240,45843
+53693,75491,17276
+53694,5660
+53695,69258
+53696,18060
+53697,8885
+53698,66531
+53699,10455
+53700,43096
+53701,59975
+53702,21214
+53703,73274
+53704,14223
+53705,57353
+53706,48730,65907,62363
+53707,23312,37943
+53708,67643
+53709,64665
+53710,34680
+53711,34223
+53712,44332,55758,24160
+53713,30769
+53714,5156
+53715,5124,41399
+53716,3307
+53717,58530
+53718,7254,7186
+53719,5531
+53720,15174
+53721,72298
+53722,74911
+53723,19185
+53724,19071
+53725,16627
+53726,67643
+53727,73134
+53728,6507
+53729,13666
+53730,65012
+53731,14446
+53732,56818
+53733,30796,37908
+53734,30369
+53735,15273,36856,27574
+53736,69462
+53737,40588
+53738,62195
+53739,23082,61617
+53740,40875,51525
+53741,17577
+53742,72744,8735
+53743,49396
+53744,27542
+53745,80811
+53746,26266,20442
+53747,66664
+53748,56433
+53749,1319
+53750,7321
+53751,40347,72924,33519
+53752,25359
+53753,10771,75444
+53754,69212
+53755,27038
+53756,32966
+53757,25849
+53758,14935
+53759,25764
+53760,4267
+53761,14259
+53762,34536
+53763,14981
+53764,33926
+53765,60200,37346
+53766,10295
+53767,12987
+53768,3326
+53769,71436
+53770,10934
+53771,80208,30240
+53772,15233
+53773,7760
+53774,15727
+53775,38577
+53776,62001
+53777,16792
+53778,70871
+53779,37983
+53780,36338,5633
+53781,48686
+53782,20266
+53783,52629
+53784,20931,28264
+53785,33408
+53786,1196
+53787,53845
+53788,69370
+53789,43885
+53790,58,47109
+53791,71018,36540
+53792,29083,10412
+53793,50144,36543
+53794,67706
+53795,33326
+53796,68641,14078
+53797,37451,47609
+53798,26695,19333
+53799,49631,77101
+53800,55478,7251
+53801,45518,65169
+53802,34608,56336
+53803,79440
+53804,979
+53805,254,30443
+53806,77473
+53807,46817
+53808,22743
+53809,78598
+53810,63986,73284
+53811,7373
+53812,81551
+53813,1454
+53814,15250,80005
+53815,81384
+53816,16312
+53817,55362,25243
+53818,61027
+53819,73428
+53820,77696
+53821,17559
+53822,3030
+53823,81328
+53824,26365
+53825,64393,60750
+53826,48588
+53827,21953
+53828,1407,20023,73369
+53829,13702
+53830,3182,40875
+53831,64436
+53832,67361
+53833,62298
+53834,75332
+53835,71492
+53836,69284
+53837,28001
+53838,20642
+53839,44078
+53840,75452
+53841,69244
+53842,53667,11925
+53843,53913
+53844,80549,51244
+53845,22912
+53846,72518,43622
+53847,5027
+53848,34872
+53849,70414
+53850,58991
+53851,30468,8330
+53852,22619
+53853,19323
+53854,21858
+53855,11350,56277,61799
+53856,42408
+53857,26051
+53858,68268,37225,71123
+53859,82041
+53860,30074
+53861,81643
+53862,51280
+53863,57588
+53864,19779,1588
+53865,551,5841,80128
+53866,24832
+53867,68361
+53868,44638
+53869,27623
+53870,15113
+53871,81943
+53872,11170
+53873,11051
+53874,11028
+53875,59873
+53876,19785,28266
+53877,50514
+53878,42817
+53879,80395
+53880,61110,38012
+53881,36706
+53882,43913
+53883,64892
+53884,3461
+53885,54159
+53886,12819
+53887,58908
+53888,56138
+53889,52434
+53890,81659
+53891,4761
+53892,56028
+53893,28651
+53894,6448
+53895,27809
+53896,40471,63124
+53897,48191
+53898,47340
+53899,11056
+53900,58487
+53901,22497
+53902,63078
+53903,15833
+53904,9352,42216
+53905,75185
+53906,55165
+53907,63762
+53908,23103,78460,2867
+53909,17097
+53910,30342,31252
+53911,71990
+53912,75649
+53913,22090
+53914,77481
+53915,77760
+53916,30225
+53917,39130,23975,1417
+53918,21681,79760,7653
+53919,64482
+53920,63108
+53921,59174
+53922,50574
+53923,360
+53924,69906
+53925,48086
+53926,62420
+53927,54543
+53928,6148
+53929,67833
+53930,34698
+53931,64911
+53932,47977
+53933,26580,24650
+53934,2084
+53935,81196
+53936,28466
+53937,2504
+53938,19525,80992
+53939,48340
+53940,59873
+53941,72553
+53942,50324
+53943,13572
+53944,73405,46385
+53945,17546
+53946,63398,66132
+53947,1367
+53948,22541
+53949,18339
+53950,58422
+53951,17200
+53952,57372
+53953,6522
+53954,25061
+53955,41646,65056
+53956,30382
+53957,49499
+53958,64210,28623
+53959,37224,36294
+53960,60290,35245
+53961,7117
+53962,10535
+53963,50972
+53964,6333
+53965,37468,23557
+53966,11788
+53967,81234,33081
+53968,68995,12244
+53969,24285
+53970,66973
+53971,62364
+53972,53489,65408
+53973,2985
+53974,31004,11998
+53975,9349
+53976,24693
+53977,6439,54333
+53978,40733,313
+53979,56583
+53980,15353
+53981,75943
+53982,41736
+53983,66767
+53984,52131
+53985,18300
+53986,52621
+53987,9331
+53988,46845
+53989,57771
+53990,10928
+53991,81186
+53992,53231
+53993,12121
+53994,72421
+53995,79102
+53996,10036
+53997,56539,6507
+53998,1452
+53999,81459,13630
+54000,34629
+54001,44322
+54002,60045
+54003,34787
+54004,78211
+54005,43982
+54006,56689
+54007,66449
+54008,21102
+54009,61565
+54010,6546
+54011,8222
+54012,6832
+54013,74092
+54014,13997,78174,67166
+54015,52662
+54016,48649
+54017,68006
+54018,65127
+54019,42401
+54020,54104
+54021,61156
+54022,72606
+54023,50887,42274
+54024,42627
+54025,71738
+54026,75267
+54027,33061,57812
+54028,37555
+54029,30981
+54030,21021
+54031,53035
+54032,44624
+54033,65494
+54034,50440
+54035,58246
+54036,15109
+54037,74137,79221
+54038,60451
+54039,6131,47623
+54040,2587
+54041,23816
+54042,68845
+54043,39063
+54044,72666
+54045,78346
+54046,44667
+54047,81328
+54048,16758,56329
+54049,34625
+54050,47897
+54051,74794,81358
+54052,7926,15332
+54053,27790,74754
+54054,76917
+54055,42284
+54056,79717
+54057,46587
+54058,69587
+54059,19338
+54060,59368
+54061,64427
+54062,69253
+54063,12321
+54064,44134
+54065,17231,45010,78040
+54066,77096,47712,78682
+54067,59041,16579
+54068,16115
+54069,41807
+54070,47690
+54071,40595
+54072,5235
+54073,66283
+54074,26477
+54075,46100
+54076,46116,18247,32994
+54077,27635
+54078,28202
+54079,52919
+54080,24819
+54081,72954,53522
+54082,18093
+54083,40963
+54084,57218,18923
+54085,59301,33543,28399
+54086,56168
+54087,48137
+54088,43648
+54089,16339
+54090,64769
+54091,68404
+54092,64652
+54093,35949
+54094,3194,67202
+54095,29179
+54096,21614
+54097,44430
+54098,13396,58774
+54099,22360,54583
+54100,60403
+54101,16365
+54102,24358
+54103,45922
+54104,77636
+54105,40070
+54106,77084
+54107,57408
+54108,49019
+54109,3660
+54110,17239
+54111,4689,64570
+54112,54445
+54113,63844
+54114,16653
+54115,75500
+54116,10270
+54117,79167
+54118,59777
+54119,71820
+54120,56027
+54121,71456,28334
+54122,60873,7084
+54123,14346
+54124,59290,44816
+54125,74431
+54126,15610
+54127,53789,23917
+54128,64989
+54129,80355
+54130,48951
+54131,38446
+54132,13089
+54133,18402
+54134,65943
+54135,51612,57434
+54136,72876
+54137,46071
+54138,64152,67814
+54139,77200
+54140,69650,30085
+54141,64630
+54142,73124
+54143,43506,13731
+54144,4925
+54145,45953
+54146,11391
+54147,27590
+54148,13365
+54149,53169,59187
+54150,5119
+54151,30649
+54152,61890
+54153,967
+54154,71279,72382
+54155,73601
+54156,70823,49405,15996
+54157,81556
+54158,8000
+54159,33479
+54160,12980
+54161,37672
+54162,48799
+54163,13742
+54164,80539,70911
+54165,11577,20460
+54166,18519
+54167,75734
+54168,36750
+54169,22274
+54170,17521
+54171,58146
+54172,69059
+54173,65761
+54174,75077,10172
+54175,49862
+54176,5222
+54177,41285,25882,38026
+54178,35868,18172
+54179,33291
+54180,2931,336
+54181,68730
+54182,16867
+54183,2255,68574,59383
+54184,81174
+54185,14050
+54186,46344
+54187,23973
+54188,63032
+54189,10171
+54190,40233,6777
+54191,21331
+54192,76126
+54193,47340
+54194,55293
+54195,44519
+54196,76161,36780
+54197,59483
+54198,13875
+54199,78525
+54200,19324
+54201,30612
+54202,64132
+54203,52446
+54204,3538,78025
+54205,79056
+54206,49088
+54207,63525
+54208,3773
+54209,45767
+54210,17257
+54211,23728
+54212,59376
+54213,24304
+54214,43730,39687
+54215,78361
+54216,27979
+54217,62748
+54218,37817
+54219,27532,16809
+54220,51621,48122
+54221,55872
+54222,62797
+54223,65729
+54224,44113
+54225,72744
+54226,51212
+54227,3646
+54228,31107
+54229,77679
+54230,68855
+54231,61765
+54232,42371
+54233,38572
+54234,1810,51133
+54235,27436
+54236,12314
+54237,75112
+54238,20887,34338
+54239,13459
+54240,15258
+54241,41960
+54242,39520
+54243,12723,71902
+54244,81171
+54245,25661,70414
+54246,79185
+54247,40401
+54248,33662
+54249,43949
+54250,7838
+54251,170,37751
+54252,30623
+54253,65019
+54254,33914
+54255,11285
+54256,72806,36407
+54257,21207
+54258,68618,15752
+54259,22661
+54260,37394
+54261,18234,54894
+54262,15171
+54263,9402,62840
+54264,19539
+54265,75655,22272
+54266,15706
+54267,15940
+54268,6789,35523
+54269,46206
+54270,15717
+54271,61636
+54272,21702
+54273,54347,20013
+54274,12986,76103
+54275,5711
+54276,35256,3824
+54277,76549
+54278,66920
+54279,53248
+54280,55667
+54281,41740
+54282,59442,6721
+54283,17932,26075
+54284,11077,54753
+54285,34800
+54286,26815,47768,42233
+54287,17381
+54288,22212
+54289,6545
+54290,74628
+54291,13353
+54292,33808,42826
+54293,76361
+54294,38219
+54295,40606
+54296,59523
+54297,65065,47236
+54298,70574
+54299,33244
+54300,73434
+54301,6982
+54302,28520,23253
+54303,55088
+54304,6743
+54305,49347,29129
+54306,29414,18242
+54307,3209,4326,20585
+54308,66226,27701
+54309,48678
+54310,46828
+54311,55232
+54312,61692
+54313,17351
+54314,78322
+54315,4574
+54316,68600
+54317,30858
+54318,72818,52488,39576
+54319,68724
+54320,19147
+54321,63257
+54322,53983,53914
+54323,42657
+54324,29290
+54325,45679
+54326,38957
+54327,20312
+54328,1515
+54329,34363
+54330,66725,55975
+54331,18244
+54332,50942
+54333,37237
+54334,29244
+54335,62687
+54336,55516,15822
+54337,10910
+54338,68407
+54339,18851
+54340,13741
+54341,11424
+54342,23794
+54343,31515
+54344,72821
+54345,15178,65424,65840
+54346,52112
+54347,49734,81015
+54348,71571
+54349,4634
+54350,67524
+54351,30718
+54352,68087
+54353,20212,3586
+54354,74797,33884
+54355,30663
+54356,16502
+54357,80845
+54358,4300
+54359,11072
+54360,57243
+54361,19856
+54362,51794
+54363,25035
+54364,28518
+54365,81466
+54366,75561
+54367,77434
+54368,27461
+54369,1596
+54370,23016,69351
+54371,68005,27712
+54372,68055,10870
+54373,38819
+54374,59473
+54375,43034
+54376,53221
+54377,35600
+54378,38873
+54379,35805
+54380,74675
+54381,16057
+54382,57103
+54383,39743
+54384,23107
+54385,36422
+54386,79984,53369,47264
+54387,5648
+54388,2057
+54389,81779
+54390,808,73221
+54391,23552
+54392,19475
+54393,32793
+54394,47331
+54395,17743
+54396,68609
+54397,14505
+54398,72777,23435,11315
+54399,51163
+54400,58573,2718
+54401,66304
+54402,41054
+54403,31740
+54404,13146,41252
+54405,65622
+54406,39940
+54407,58989
+54408,42808
+54409,52494
+54410,14106
+54411,48986
+54412,16865,53428
+54413,47290
+54414,8798
+54415,38609
+54416,31955
+54417,33135
+54418,47281,36843
+54419,38489
+54420,57586
+54421,78870
+54422,69301,13166
+54423,59945
+54424,36264
+54425,65555
+54426,2319
+54427,33893
+54428,60698
+54429,13946
+54430,29973
+54431,19602
+54432,23997
+54433,3480,75972
+54434,24727
+54435,26459
+54436,74173
+54437,58575
+54438,73804
+54439,62172
+54440,28820
+54441,69975
+54442,65192
+54443,33113
+54444,4538
+54445,10965,34921
+54446,69212
+54447,56904
+54448,30990
+54449,15513
+54450,45637
+54451,6478
+54452,8031
+54453,17022,37935
+54454,14026
+54455,78939,963
+54456,49425
+54457,38459
+54458,21229
+54459,36803
+54460,47577,34244,15701
+54461,63003
+54462,8099
+54463,27080,4119
+54464,80313
+54465,47506,61038
+54466,62457
+54467,42126
+54468,67684,43207
+54469,5401
+54470,17869
+54471,43178
+54472,71809
+54473,78588
+54474,53557
+54475,47819
+54476,46061,40460
+54477,43758
+54478,46220
+54479,63493
+54480,80921
+54481,8084,48794
+54482,2566
+54483,5347
+54484,16079
+54485,72582
+54486,49525
+54487,13274
+54488,40787
+54489,65066
+54490,48488
+54491,63299
+54492,38088
+54493,76985
+54494,71916
+54495,81978
+54496,72947
+54497,14745
+54498,44719
+54499,65025,79329
+54500,35988
+54501,34013,66717
+54502,22462
+54503,51601
+54504,20730
+54505,80959
+54506,79041
+54507,68741
+54508,51784
+54509,51426
+54510,75182
+54511,75164
+54512,54973
+54513,53910
+54514,24852
+54515,34797
+54516,38235,10087
+54517,70862
+54518,54961
+54519,55585
+54520,59169,33436
+54521,65652
+54522,55914,4039
+54523,11898
+54524,28375
+54525,36231,65798
+54526,72379,73042
+54527,14224,1678
+54528,28943
+54529,10564,76097
+54530,61007
+54531,80497
+54532,71836
+54533,74051,69314,9170
+54534,11465,60427
+54535,28271
+54536,74821
+54537,80730
+54538,63341
+54539,77428
+54540,63032
+54541,16642
+54542,31038
+54543,10055
+54544,57836
+54545,78831
+54546,28191
+54547,34061
+54548,52858,46103
+54549,26141
+54550,25356
+54551,43722
+54552,68545
+54553,24182
+54554,61742
+54555,22533
+54556,38498
+54557,22314,10470,49013
+54558,33533
+54559,15323
+54560,3603
+54561,65225,64477
+54562,52625
+54563,27649
+54564,41949
+54565,40040
+54566,48355
+54567,77957
+54568,41945,39345
+54569,60486
+54570,26174
+54571,77393
+54572,36188
+54573,66113
+54574,53013,67509
+54575,27422,16935,50476
+54576,76891
+54577,1604
+54578,4332
+54579,51767
+54580,58317,458
+54581,19250
+54582,59370
+54583,79704
+54584,31753
+54585,13742
+54586,33992,47634,3823,12980
+54587,56479
+54588,64394
+54589,7416
+54590,9824
+54591,65901
+54592,13053
+54593,3894
+54594,51183
+54595,46703
+54596,42004,65482
+54597,82049
+54598,35652
+54599,24760,78954,12077
+54600,48026,70459
+54601,38288
+54602,11673,48148
+54603,30667,66160
+54604,60015
+54605,38957
+54606,5591
+54607,55600
+54608,903
+54609,24698
+54610,11990
+54611,48326
+54612,65535
+54613,3014
+54614,8404,77428
+54615,37053
+54616,80131
+54617,62276
+54618,16098
+54619,48215
+54620,79265,47500
+54621,47697
+54622,46405
+54623,45672
+54624,4584,16617
+54625,69903
+54626,21200
+54627,13699
+54628,40015
+54629,15820
+54630,81222
+54631,81740
+54632,51617,54507
+54633,47129
+54634,17547,75814
+54635,24810
+54636,30094
+54637,39862
+54638,79762,34300
+54639,5718
+54640,70262
+54641,11545
+54642,41777
+54643,22870
+54644,49910,59212
+54645,44003
+54646,18833
+54647,25876
+54648,68600
+54649,58932
+54650,8700,60995
+54651,52216
+54652,61274,35183
+54653,36195
+54654,12012,62220
+54655,18799
+54656,41418
+54657,10104
+54658,62255
+54659,63316
+54660,21214
+54661,65617
+54662,1499
+54663,23433
+54664,63481
+54665,52654,44525
+54666,34922
+54667,51804,14381
+54668,17271
+54669,32866
+54670,25333
+54671,39686
+54672,34836
+54673,20972
+54674,5092
+54675,38620
+54676,51513
+54677,69189
+54678,30540,44139
+54679,13810,33120
+54680,55128
+54681,11489,65297
+54682,8360
+54683,12991
+54684,71185
+54685,40129
+54686,53585
+54687,81307
+54688,21393,10308
+54689,47924
+54690,76528
+54691,72034
+54692,63659
+54693,34869
+54694,70861
+54695,16460,22814
+54696,19228
+54697,9286
+54698,52284
+54699,69136
+54700,59500
+54701,15962,47790,30379
+54702,22353
+54703,43317
+54704,21269,57390
+54705,29492
+54706,42891,72202
+54707,69460
+54708,34848
+54709,70624
+54710,28749
+54711,50989
+54712,63285
+54713,57872
+54714,61406
+54715,29501
+54716,13472
+54717,60530
+54718,50445
+54719,21353
+54720,48191
+54721,62419,11167
+54722,20409
+54723,36292
+54724,27492,8306
+54725,3532
+54726,56331
+54727,38318
+54728,37979,12932
+54729,73170
+54730,66196,45129
+54731,22093
+54732,63672
+54733,22276
+54734,48786
+54735,46217
+54736,68398
+54737,37557
+54738,69471,9705
+54739,77699
+54740,56077
+54741,41718
+54742,65309
+54743,54962
+54744,31169
+54745,16621
+54746,38414
+54747,6427
+54748,2643
+54749,31259
+54750,49775,33604
+54751,61006
+54752,80027
+54753,25322
+54754,72479
+54755,4204
+54756,46214
+54757,25892
+54758,9559
+54759,77033
+54760,12425
+54761,12082
+54762,73372,70436
+54763,82173
+54764,40837
+54765,64789
+54766,26025
+54767,33339
+54768,68607
+54769,65041
+54770,41771
+54771,79431
+54772,29761
+54773,22292
+54774,45177
+54775,4367
+54776,67102
+54777,28627
+54778,77286
+54779,78824
+54780,65192
+54781,54008
+54782,16527
+54783,26192
+54784,13001
+54785,11227
+54786,11838
+54787,80026
+54788,71714,41286
+54789,52497,13329
+54790,49328,14039
+54791,18413
+54792,34340
+54793,18828
+54794,408
+54795,73451
+54796,60083
+54797,63428
+54798,832
+54799,28607,6141
+54800,75387
+54801,60900
+54802,48081
+54803,71753
+54804,39975,56297
+54805,43659
+54806,9995,70368
+54807,48131
+54808,81722
+54809,48471
+54810,4634
+54811,60500,69091
+54812,9864
+54813,21315
+54814,17340
+54815,14894
+54816,25235
+54817,49605,41048
+54818,32183
+54819,49038,6171
+54820,50623
+54821,46100
+54822,40327,30118
+54823,80588
+54824,58001
+54825,62048
+54826,906
+54827,74835
+54828,34333
+54829,22043
+54830,6618
+54831,24014
+54832,78278
+54833,49965
+54834,43292
+54835,46604
+54836,13571
+54837,69206
+54838,44818
+54839,27852
+54840,41538,35025
+54841,45507,76657
+54842,78197
+54843,20356
+54844,76302
+54845,51995
+54846,8753
+54847,34988
+54848,24491
+54849,25403
+54850,38968,79536
+54851,30780
+54852,18757
+54853,20168,42295
+54854,49747
+54855,25259
+54856,32751
+54857,69231
+54858,75514
+54859,40657
+54860,4171
+54861,19417
+54862,5743
+54863,8707
+54864,21212
+54865,29241,24019
+54866,15983,3863
+54867,34289
+54868,37993
+54869,28722
+54870,9223
+54871,43096
+54872,48317
+54873,23242
+54874,52144,55613
+54875,48021
+54876,7180
+54877,58017
+54878,11616
+54879,38088
+54880,20711
+54881,79075
+54882,72346
+54883,26125
+54884,74474
+54885,39291
+54886,76106
+54887,39506
+54888,17366,57907
+54889,71648
+54890,18366
+54891,75842
+54892,55014
+54893,21461
+54894,66588,63141
+54895,74701
+54896,69679
+54897,27986
+54898,18862
+54899,18773
+54900,19767,78627
+54901,74778,49396
+54902,72238
+54903,1556
+54904,32192
+54905,59178
+54906,69034
+54907,49583
+54908,27729
+54909,13301
+54910,38318
+54911,50376
+54912,80845
+54913,64314,20963
+54914,16868,17111,44644
+54915,759,18503
+54916,18078
+54917,41662
+54918,38932
+54919,12863
+54920,49751,4435,37046
+54921,71394
+54922,79343
+54923,67980
+54924,49973,6314
+54925,81272
+54926,38606
+54927,44887
+54928,41205
+54929,63169
+54930,43257
+54931,70806
+54932,9378
+54933,3267
+54934,15773
+54935,20678
+54936,3528
+54937,17865
+54938,15874
+54939,45775,37711
+54940,14292
+54941,8098
+54942,40274
+54943,15555
+54944,56401
+54945,40963
+54946,20589
+54947,2173,73966
+54948,50152
+54949,65808
+54950,75984
+54951,47616
+54952,79283
+54953,79644
+54954,40469
+54955,60054
+54956,67817
+54957,44872,32605
+54958,12296
+54959,33708
+54960,12044
+54961,18503
+54962,58872
+54963,2396
+54964,10418,33685,76853,39270
+54965,583
+54966,43186,75012
+54967,81314
+54968,52224,61229,17736
+54969,46129
+54970,75881
+54971,55894
+54972,17979
+54973,10928
+54974,36750
+54975,3527
+54976,38796
+54977,67236
+54978,9757,23824
+54979,33896
+54980,29657
+54981,5928
+54982,58675,21542
+54983,21123,26225
+54984,44414,71711
+54985,2245,69091
+54986,23457
+54987,37681
+54988,41488
+54989,72870
+54990,5787,75222
+54991,33933
+54992,73145,46935
+54993,80227
+54994,59509,61614,34721
+54995,72195
+54996,30826
+54997,40021
+54998,50240
+54999,5072
+55000,60232
+55001,11313
+55002,41489
+55003,64896
+55004,4162
+55005,40783
+55006,68921
+55007,80898,6855
+55008,34532
+55009,47791
+55010,54254
+55011,784
+55012,42721,44274
+55013,42278,56129
+55014,42843
+55015,62563
+55016,81441
+55017,77467
+55018,80507
+55019,1168
+55020,63399
+55021,59366
+55022,46898
+55023,11451
+55024,27504
+55025,8068
+55026,45159
+55027,61453,27316
+55028,890
+55029,54563
+55030,20585
+55031,10835,11047
+55032,11956
+55033,63648,73371
+55034,4321
+55035,53971
+55036,70213
+55037,8955
+55038,20628
+55039,7248
+55040,9694
+55041,16015
+55042,23049
+55043,2397
+55044,63397
+55045,55225
+55046,16379
+55047,11504
+55048,37034
+55049,62340,22300
+55050,77344
+55051,42142,41445
+55052,70291
+55053,26674
+55054,20045,2236
+55055,79245
+55056,79762
+55057,517
+55058,61461
+55059,39466
+55060,39603
+55061,12131
+55062,82160
+55063,3453
+55064,63488
+55065,64524
+55066,74661
+55067,37484
+55068,75671
+55069,21047
+55070,58858,79435,66817
+55071,45373
+55072,61302
+55073,41777
+55074,67676
+55075,18504
+55076,51092
+55077,53735,13866
+55078,34959
+55079,71898
+55080,46763
+55081,43830
+55082,63319
+55083,35155,48210,71983
+55084,80771
+55085,96
+55086,61599
+55087,36188
+55088,34496
+55089,15308
+55090,36981,31649,54993
+55091,4448
+55092,63584
+55093,52482
+55094,5711,7527,32437
+55095,58375
+55096,29433
+55097,167
+55098,56754
+55099,34055,54398
+55100,30991
+55101,17170,30293
+55102,15591
+55103,52070
+55104,44381
+55105,9753
+55106,18504
+55107,41671,38282
+55108,13127,16919
+55109,42453
+55110,50109
+55111,76638
+55112,55323
+55113,3975
+55114,46505
+55115,81742,13785
+55116,38224
+55117,8901
+55118,31774
+55119,28545
+55120,5923
+55121,42395,19591
+55122,71749
+55123,57990
+55124,59023
+55125,50797,54930
+55126,75627
+55127,9336,5007,27200
+55128,13605
+55129,6325
+55130,52928,15782
+55131,21801
+55132,21740
+55133,59469,75885
+55134,59749
+55135,77522
+55136,44141
+55137,11151
+55138,63614
+55139,52454
+55140,39284
+55141,10455
+55142,70232
+55143,73038
+55144,18131
+55145,21537
+55146,70039
+55147,49309
+55148,76514
+55149,29146
+55150,78545
+55151,48866
+55152,46357
+55153,78501
+55154,51373
+55155,11790
+55156,61953
+55157,80611
+55158,74701
+55159,25248
+55160,35590
+55161,36571
+55162,74601
+55163,43813
+55164,33765
+55165,61741
+55166,31598
+55167,37250
+55168,1596
+55169,12207
+55170,27336
+55171,28024
+55172,26928,68359,63064
+55173,13505
+55174,851
+55175,14604,40664
+55176,17159
+55177,40606
+55178,23083
+55179,79087,6644
+55180,8397,6806,42546
+55181,51781
+55182,42102
+55183,3586
+55184,44128
+55185,55980
+55186,53990
+55187,67790
+55188,40476
+55189,54895
+55190,32564
+55191,49276
+55192,51930
+55193,11762
+55194,10260
+55195,38017
+55196,74598
+55197,58139,52943
+55198,48824,10629,27728
+55199,68127
+55200,55868
+55201,61655
+55202,55500
+55203,14717
+55204,33393
+55205,19810,32169
+55206,16336
+55207,41414,16563
+55208,11050
+55209,69
+55210,4036
+55211,73044
+55212,44331
+55213,80810
+55214,35686
+55215,43536
+55216,81917,74253
+55217,71287
+55218,32300
+55219,21527
+55220,65543
+55221,29593
+55222,8940
+55223,54610
+55224,55713
+55225,63180
+55226,49839
+55227,54803
+55228,61956
+55229,31722
+55230,13326
+55231,21314
+55232,45145
+55233,65285
+55234,42721
+55235,43258
+55236,68633
+55237,75486,61107
+55238,71977,8859
+55239,67677
+55240,42
+55241,70370
+55242,76289,15176
+55243,78264
+55244,618,62929
+55245,60930
+55246,43524
+55247,29374,28617
+55248,25764
+55249,43543
+55250,18575
+55251,50403
+55252,61358
+55253,77956
+55254,36219
+55255,75021
+55256,20245,30788
+55257,14879
+55258,50484,36750
+55259,31368
+55260,35841
+55261,79121
+55262,68797
+55263,68577
+55264,36636
+55265,42040
+55266,61620,59072
+55267,44408
+55268,12327,51086
+55269,54338
+55270,50329
+55271,38009
+55272,62181
+55273,43700
+55274,7059
+55275,51783
+55276,16098
+55277,64645,37596
+55278,17045
+55279,67633
+55280,53142
+55281,29057
+55282,24090
+55283,76604
+55284,71396
+55285,29726
+55286,74669
+55287,43698
+55288,21816
+55289,49800
+55290,30413
+55291,68054
+55292,11589
+55293,78598
+55294,58142
+55295,74493
+55296,57799
+55297,29377
+55298,65616
+55299,9765,80702
+55300,76138
+55301,53179
+55302,22945
+55303,37689
+55304,39703,43791
+55305,63429
+55306,29938
+55307,33553
+55308,35011
+55309,74496,58928
+55310,35865
+55311,74685
+55312,61815
+55313,73384
+55314,51659,22930
+55315,26834
+55316,21617
+55317,37487
+55318,66420
+55319,21995
+55320,67775,67492
+55321,66387
+55322,51564
+55323,39748,30093
+55324,76377
+55325,64964,75778
+55326,11526
+55327,78119
+55328,12243
+55329,326
+55330,38914,78934
+55331,75617
+55332,41453
+55333,55205
+55334,62127
+55335,16980
+55336,60369
+55337,30884
+55338,32860
+55339,27175
+55340,56379,72256
+55341,74544
+55342,34953
+55343,44457
+55344,81138
+55345,69554,35170
+55346,43083,39682
+55347,8213,64076
+55348,51363
+55349,23444
+55350,48945,22450
+55351,45663
+55352,25522,29587,35221
+55353,20879
+55354,19115
+55355,62658
+55356,10015,2
+55357,34449
+55358,58400
+55359,57048
+55360,11258
+55361,1196
+55362,33705
+55363,28962
+55364,77672
+55365,3514
+55366,61755
+55367,67090
+55368,63406
+55369,19022
+55370,58281
+55371,18010
+55372,61237
+55373,2079
+55374,28164
+55375,81028
+55376,20553
+55377,41516,68310
+55378,1505
+55379,10281
+55380,70930
+55381,27290
+55382,49675
+55383,20225
+55384,66147
+55385,4201
+55386,79885
+55387,7134
+55388,45561
+55389,74482
+55390,76214
+55391,15991
+55392,23769
+55393,72613
+55394,5508
+55395,43636
+55396,8241
+55397,58793
+55398,12300
+55399,5051
+55400,19121
+55401,19432
+55402,9302
+55403,7812
+55404,72462
+55405,66299
+55406,38606
+55407,58232
+55408,58585
+55409,38616
+55410,10294
+55411,11727,31417
+55412,77921
+55413,15852
+55414,57754
+55415,64222
+55416,6870
+55417,30372,66074
+55418,59637
+55419,66224
+55420,41029
+55421,72250
+55422,49547
+55423,15194
+55424,47234
+55425,41815,11985
+55426,44021
+55427,50977
+55428,42508
+55429,48251,8486
+55430,65311
+55431,688
+55432,45417
+55433,80309
+55434,36553
+55435,60691,71122
+55436,15044
+55437,46027
+55438,22969,79596
+55439,37393,45195
+55440,59425
+55441,14771,76115
+55442,59586
+55443,4928
+55444,79928
+55445,56948
+55446,78201,67510
+55447,12777
+55448,11405
+55449,20238
+55450,65342
+55451,67081
+55452,948
+55453,64889
+55454,29736
+55455,76090
+55456,73753,70889,10152
+55457,13742
+55458,65610
+55459,51025,40673
+55460,81944
+55461,3057
+55462,51409
+55463,19456
+55464,40347
+55465,15123
+55466,44919
+55467,62126
+55468,77344
+55469,27529
+55470,280
+55471,74737
+55472,61529,24755
+55473,1516
+55474,46492,21702
+55475,8474
+55476,74055
+55477,29776,47555
+55478,51358
+55479,56464
+55480,29724
+55481,67410
+55482,61656
+55483,8388
+55484,2740
+55485,12658
+55486,68196
+55487,77672
+55488,36232,59422
+55489,48754
+55490,25287
+55491,20332
+55492,74323
+55493,78660
+55494,11395
+55495,2132
+55496,61379
+55497,6558
+55498,72221
+55499,28168
+55500,21824
+55501,45739
+55502,37840,27862
+55503,37717
+55504,62160
+55505,81124
+55506,60576,53507
+55507,35912
+55508,44444
+55509,12438
+55510,27183,53475
+55511,28000
+55512,57298
+55513,44391
+55514,53864
+55515,45626
+55516,11535
+55517,62568,11356
+55518,48684
+55519,20695
+55520,2508
+55521,51458
+55522,71260
+55523,18046,66232
+55524,39909
+55525,48890
+55526,59599,23356
+55527,6027
+55528,28436,14978
+55529,13330
+55530,8036
+55531,45845
+55532,40325,33405
+55533,22919
+55534,11187,57774
+55535,54828
+55536,78319
+55537,9917
+55538,45513
+55539,14326
+55540,13728
+55541,66569
+55542,45823
+55543,70172
+55544,3627
+55545,21962
+55546,7115
+55547,3657
+55548,64693
+55549,47159
+55550,34507
+55551,75392,17910
+55552,34276
+55553,25127
+55554,56661
+55555,81570
+55556,25437
+55557,45499,8574
+55558,73575,1871
+55559,67248
+55560,70020
+55561,75768
+55562,64374,42920
+55563,44667
+55564,6247,5522
+55565,10486
+55566,51789,21080,10256
+55567,8667
+55568,48191
+55569,34030
+55570,67711
+55571,5249
+55572,2594
+55573,1491
+55574,49230,67443
+55575,604,20785,23023,3567
+55576,55572
+55577,72544
+55578,36142,30270
+55579,408,37396
+55580,14709
+55581,38123,25885
+55582,69495
+55583,30965
+55584,1896
+55585,49872
+55586,39982
+55587,336
+55588,20598
+55589,24844
+55590,18736
+55591,32788
+55592,44030
+55593,20856
+55594,10889
+55595,66123
+55596,65957,61831,32000
+55597,58952,61003
+55598,80832
+55599,9866
+55600,80541
+55601,6759
+55602,71593
+55603,73229,34315
+55604,28012
+55605,70574,7378,58543
+55606,8241
+55607,63943
+55608,45499
+55609,11781,17165
+55610,33194
+55611,31987
+55612,5946
+55613,57449
+55614,33102
+55615,81229
+55616,2637
+55617,80070
+55618,14478
+55619,36563
+55620,76580
+55621,43195
+55622,38068
+55623,28576,56649
+55624,78917
+55625,52144,1065
+55626,25597
+55627,60507
+55628,41841
+55629,64443
+55630,62933,18905
+55631,33905
+55632,13995
+55633,28301,39591,27065
+55634,19000
+55635,62602
+55636,59106
+55637,42405
+55638,60611,30898
+55639,79417
+55640,44120,68325,40655
+55641,30434,40319
+55642,43943,3828
+55643,28326
+55644,9961,2200
+55645,19000
+55646,4100
+55647,20120
+55648,32696
+55649,11869
+55650,20086,34991
+55651,10354
+55652,81818,21373
+55653,31862,27704,40627
+55654,45712,69925
+55655,35832
+55656,56465
+55657,33378,6032
+55658,75420,70286
+55659,77573
+55660,15736
+55661,17049
+55662,34752,43044
+55663,7025
+55664,26445
+55665,36492
+55666,14387,40825,34807
+55667,26353
+55668,78174
+55669,848
+55670,67171
+55671,11395
+55672,44959
+55673,31999
+55674,61553
+55675,5156
+55676,47720
+55677,63970
+55678,60674
+55679,37488
+55680,51960
+55681,79145
+55682,1727
+55683,40825,66431,4528
+55684,43846
+55685,72757
+55686,22718
+55687,33004
+55688,20414
+55689,25092
+55690,52318
+55691,20788,61288
+55692,3589
+55693,69630
+55694,72017
+55695,9516
+55696,75583
+55697,12215
+55698,74776
+55699,18558
+55700,69077
+55701,47320
+55702,61991
+55703,68607
+55704,81825,79018,41988
+55705,30504
+55706,7585
+55707,15004
+55708,71739
+55709,46179
+55710,26588
+55711,52128
+55712,28466
+55713,41028
+55714,7578
+55715,45028,70699
+55716,15358
+55717,44717
+55718,36753
+55719,73418
+55720,63958
+55721,64902
+55722,61900,5789
+55723,7078
+55724,54613,3894
+55725,31387
+55726,32019
+55727,71078
+55728,14851
+55729,41011,8493
+55730,16549,34281
+55731,18298
+55732,34745
+55733,51712
+55734,44147
+55735,77462
+55736,38796
+55737,12545,753
+55738,9327
+55739,75254,63503
+55740,48895
+55741,73379
+55742,3049
+55743,9473,29929,11849
+55744,70556
+55745,55812
+55746,79254,30457
+55747,5011
+55748,7632,5794
+55749,48217,40850
+55750,69029
+55751,16084,14630
+55752,34654
+55753,645,9632
+55754,15167
+55755,72187,24365
+55756,18969
+55757,66405
+55758,10186
+55759,10660
+55760,20585
+55761,8890
+55762,53306
+55763,11030
+55764,79982
+55765,8304
+55766,25602
+55767,18317
+55768,49396
+55769,56295
+55770,68407
+55771,69996,21079
+55772,12580
+55773,39133
+55774,74251
+55775,34543
+55776,33926
+55777,38441,58876
+55778,52509,43604,24498
+55779,10183,57124,55102
+55780,408
+55781,69075,28389
+55782,81304
+55783,8978
+55784,30646
+55785,16290
+55786,31266,31884
+55787,13605
+55788,47323
+55789,27333
+55790,17903
+55791,53501
+55792,44620
+55793,30999
+55794,8010
+55795,71996,59047
+55796,20744,6141
+55797,1420
+55798,24693
+55799,78688
+55800,60689
+55801,9317
+55802,67814
+55803,17349
+55804,14696
+55805,13569
+55806,30900
+55807,66514
+55808,31769
+55809,28400
+55810,72264,25019
+55811,11345
+55812,57609
+55813,62457
+55814,8956
+55815,45603
+55816,47137
+55817,60802
+55818,24364
+55819,78185
+55820,45044,26461
+55821,11778
+55822,19660
+55823,78485
+55824,71041,7694
+55825,26334,71980
+55826,50264
+55827,60187
+55828,61673,51498
+55829,25258
+55830,64443
+55831,45775
+55832,70163
+55833,22739
+55834,59946,21414
+55835,8768
+55836,29914
+55837,60613
+55838,10627,81144
+55839,80308
+55840,2104
+55841,31347,65494,47035
+55842,28821
+55843,4307
+55844,32148,73371
+55845,3343
+55846,53648
+55847,326
+55848,15893,35608
+55849,11934,31508
+55850,6017
+55851,56409,27648
+55852,64960
+55853,51133,9123
+55854,72017
+55855,28721,28070
+55856,62652
+55857,30943
+55858,27473
+55859,53158
+55860,39611,41617,7332
+55861,72909,58078
+55862,71204,8076
+55863,73574,22927
+55864,64260
+55865,27410
+55866,34140
+55867,29400,15034,40068
+55868,17884
+55869,38248
+55870,12944
+55871,15816,6523
+55872,63999
+55873,6573
+55874,20330,36292
+55875,53604
+55876,36006,54618
+55877,32451,40603
+55878,62929,77879
+55879,7555
+55880,53672
+55881,69612,50768
+55882,26605
+55883,62379
+55884,4913
+55885,23645,81881
+55886,74034
+55887,8543
+55888,65079,19733
+55889,2124,75430
+55890,66863
+55891,14673
+55892,7238
+55893,4914
+55894,9819
+55895,77088,63944,54383
+55896,38116
+55897,48543
+55898,17071
+55899,60840
+55900,38278
+55901,31168
+55902,70936
+55903,29954
+55904,64756
+55905,8653
+55906,75565
+55907,44066
+55908,55294
+55909,80874
+55910,62560
+55911,65136
+55912,50938
+55913,48740
+55914,20829
+55915,9264,65624
+55916,59232
+55917,34507
+55918,16242
+55919,75519
+55920,45647
+55921,29005
+55922,44700
+55923,71194
+55924,80864,35517
+55925,15939,22936
+55926,69276,10415,31515
+55927,36609
+55928,60625
+55929,26451,26897
+55930,69212
+55931,18586,35378
+55932,49347
+55933,39268
+55934,79254
+55935,10168,81101
+55936,4636
+55937,10398
+55938,12275,18910
+55939,286
+55940,10199
+55941,40844
+55942,79185
+55943,60676
+55944,48583,46889
+55945,26556
+55946,13134
+55947,33653
+55948,67030
+55949,60360
+55950,20541
+55951,67521
+55952,68900,72163
+55953,57250
+55954,11466
+55955,48301
+55956,19550
+55957,17511
+55958,48883
+55959,79884,19851
+55960,73724
+55961,3089
+55962,62756
+55963,48503
+55964,15274
+55965,9797
+55966,32762
+55967,27490,79059
+55968,54788
+55969,61980
+55970,64598
+55971,76148
+55972,33756
+55973,23392,81058
+55974,53426
+55975,79194
+55976,2778
+55977,36530
+55978,35624,14778
+55979,7637
+55980,78242
+55981,16713
+55982,780
+55983,34990
+55984,40821
+55985,50701
+55986,4599
+55987,15087
+55988,38668,2838
+55989,22537
+55990,35802,54852,59458
+55991,64884
+55992,48456
+55993,18010
+55994,40935
+55995,45837
+55996,56693
+55997,11932
+55998,6186
+55999,76590
+56000,10845
+56001,24708
+56002,1275
+56003,7017
+56004,48829
+56005,56188
+56006,50531,26739
+56007,26410,40055
+56008,70885
+56009,26953,18434
+56010,19803,20723
+56011,61809,33919
+56012,74830
+56013,38791
+56014,50383
+56015,38733
+56016,61955,2582
+56017,50678
+56018,41689,67638
+56019,16471,65550
+56020,46758
+56021,53844
+56022,25662
+56023,49546
+56024,12262
+56025,32193
+56026,9125
+56027,38674,28352
+56028,47809
+56029,73407,69267
+56030,50483
+56031,28476
+56032,31819
+56033,6672
+56034,48155
+56035,58836,37941
+56036,71273
+56037,70696
+56038,75681
+56039,71362
+56040,29288,77876
+56041,38699
+56042,34611,21190
+56043,77577
+56044,11088
+56045,70532
+56046,68207
+56047,9679
+56048,7829
+56049,12697
+56050,43253,8079
+56051,2928
+56052,17017
+56053,69233,11598
+56054,20049,78463,40471
+56055,33628
+56056,12532,35559
+56057,13794
+56058,73067
+56059,67023
+56060,60965
+56061,69565
+56062,11530
+56063,62256
+56064,46073
+56065,6928
+56066,56051
+56067,50169
+56068,77346
+56069,6441
+56070,38852
+56071,12397
+56072,45647
+56073,24274
+56074,19348
+56075,21767,64275
+56076,66691
+56077,24175
+56078,10547
+56079,63999
+56080,15548
+56081,48348
+56082,82094
+56083,77990
+56084,71432
+56085,31441
+56086,54927
+56087,56259
+56088,785
+56089,39266
+56090,51847
+56091,44989
+56092,19490
+56093,19151
+56094,14064,63200
+56095,42487
+56096,8524,47301,75100
+56097,11755
+56098,25749
+56099,25470
+56100,32043,66600
+56101,27099
+56102,51284,53902
+56103,8075,12904
+56104,54627
+56105,47013
+56106,16612
+56107,34441,73222
+56108,62460,73868
+56109,81220
+56110,45185
+56111,12816
+56112,55560
+56113,33285
+56114,78174
+56115,48406
+56116,30003
+56117,17192
+56118,51017
+56119,58302,62518
+56120,3413
+56121,20023
+56122,64752,37197,27586
+56123,55282
+56124,12210,68603
+56125,68334
+56126,34542,82187
+56127,4808
+56128,74230,60646
+56129,46060
+56130,32723
+56131,62893,31145
+56132,70960,626
+56133,14968
+56134,15874
+56135,5486
+56136,30606
+56137,71879
+56138,70289,62643
+56139,77991
+56140,50539
+56141,55203
+56142,39231
+56143,69500
+56144,25557
+56145,9740
+56146,1448,3823
+56147,23021
+56148,39808
+56149,68168,42752
+56150,33439
+56151,72017
+56152,40726
+56153,21166
+56154,51160
+56155,6426
+56156,66135
+56157,67839
+56158,39485
+56159,33446
+56160,71574
+56161,79363
+56162,12504,47537,57788
+56163,16793
+56164,77372,68489,55294
+56165,56692,63378
+56166,13780
+56167,56192,5884
+56168,53266,38542
+56169,27531,9958,59721,50372
+56170,51204
+56171,44421
+56172,51133,68715
+56173,49625
+56174,70483
+56175,23258,39598
+56176,71289
+56177,50415,1947
+56178,40801
+56179,4937
+56180,29939
+56181,17118
+56182,9672
+56183,47738
+56184,60714
+56185,72020
+56186,24042
+56187,40041
+56188,37688
+56189,77757
+56190,34026
+56191,79480
+56192,80279
+56193,33175
+56194,59398,64680
+56195,53900
+56196,10782,48137
+56197,35089,5172
+56198,47698
+56199,46655
+56200,17682,6768
+56201,30208
+56202,58251,18766
+56203,80023
+56204,43819,57187,26615
+56205,25541
+56206,71692
+56207,64725,34461
+56208,5004
+56209,21965
+56210,9069
+56211,50364
+56212,15879,69433
+56213,10819
+56214,75595
+56215,16689
+56216,33614
+56217,547,10227
+56218,6567
+56219,57275
+56220,81325
+56221,34054
+56222,59310
+56223,80455
+56224,67468,77981
+56225,4258
+56226,7907
+56227,21041
+56228,4202
+56229,60999,6536,75116
+56230,69579
+56231,7974
+56232,55709
+56233,27043
+56234,19886
+56235,29683
+56236,33112
+56237,34024
+56238,1453
+56239,11056
+56240,68750
+56241,56590
+56242,54322
+56243,20675,28767
+56244,47153
+56245,6953
+56246,48577
+56247,57772
+56248,26204
+56249,77219
+56250,72252,46700
+56251,38565
+56252,11243
+56253,24974
+56254,4890
+56255,62213
+56256,41485
+56257,43307
+56258,68754,15569
+56259,34765
+56260,15478
+56261,27237
+56262,10223
+56263,54390,59424
+56264,4880
+56265,56301
+56266,6809,7725
+56267,8093
+56268,48564
+56269,75367
+56270,25709
+56271,74973
+56272,49042,12625
+56273,25281
+56274,79478
+56275,8903
+56276,25643,44090
+56277,70723
+56278,63155
+56279,18868,71909
+56280,65551
+56281,36311
+56282,75747
+56283,68060
+56284,72196,4363
+56285,10531
+56286,62192
+56287,28716
+56288,21587
+56289,27285
+56290,3812,59315
+56291,9267
+56292,37029
+56293,41455
+56294,46199
+56295,43291
+56296,6458
+56297,71694
+56298,71313,55544
+56299,52700
+56300,58703
+56301,74456
+56302,75309
+56303,32534
+56304,38308
+56305,8604,24693
+56306,32910
+56307,13048
+56308,46790
+56309,18023
+56310,49483
+56311,48718
+56312,20506
+56313,35890
+56314,21843
+56315,11819
+56316,36962
+56317,10874
+56318,68061
+56319,2598,7945
+56320,53472
+56321,36603
+56322,48715
+56323,796
+56324,43799
+56325,10902
+56326,62873
+56327,55932
+56328,26261,76877
+56329,11668
+56330,6267
+56331,3859
+56332,41660
+56333,15331
+56334,33358
+56335,121
+56336,52179,41269,76878
+56337,13150
+56338,77392
+56339,21021
+56340,20392
+56341,24513
+56342,6795
+56343,81806,23301
+56344,20777,63147
+56345,33875
+56346,65453
+56347,46958
+56348,4272
+56349,54648,69800
+56350,48292
+56351,74990
+56352,32863
+56353,59976,50582
+56354,59708
+56355,50404
+56356,45876
+56357,56238
+56358,54095
+56359,66924
+56360,65507
+56361,68433
+56362,26743
+56363,38010,73026
+56364,7214
+56365,61096
+56366,56724,13265
+56367,75988
+56368,69685
+56369,70421
+56370,11920
+56371,62887,52007
+56372,26922
+56373,17499
+56374,58275
+56375,19220
+56376,1913
+56377,38731
+56378,59159
+56379,57592
+56380,7
+56381,24641
+56382,35900
+56383,50891
+56384,54442
+56385,75314,33613
+56386,70672
+56387,25223
+56388,45851
+56389,29930
+56390,72007,74419
+56391,49173,54676
+56392,48583
+56393,31999,65997
+56394,28600
+56395,17880
+56396,82087
+56397,76077
+56398,30188
+56399,24930
+56400,56721
+56401,63092
+56402,63657
+56403,30071
+56404,46838
+56405,35851,32357
+56406,13450
+56407,13450
+56408,41860
+56409,23763
+56410,81613
+56411,68668
+56412,57720,66544
+56413,47323
+56414,51272
+56415,7489,27024
+56416,70162
+56417,35231
+56418,20262
+56419,67362
+56420,61294,24726
+56421,60059
+56422,16440,30034
+56423,32115
+56424,50060
+56425,43136
+56426,79136
+56427,4371
+56428,59129
+56429,39974
+56430,72801
+56431,42998
+56432,9164
+56433,17782
+56434,17536
+56435,71754,31353
+56436,27737
+56437,74974
+56438,52788
+56439,78045
+56440,73580
+56441,6460
+56442,78727
+56443,73003
+56444,70535
+56445,25539
+56446,56529,54800
+56447,16502
+56448,74306
+56449,38210,67968
+56450,56034,23848
+56451,29832
+56452,61567
+56453,13387
+56454,58976
+56455,38160
+56456,74306
+56457,51092
+56458,67580
+56459,47972
+56460,42963
+56461,67379,39102
+56462,50305
+56463,70801
+56464,72508,77717
+56465,14016,39950
+56466,5410
+56467,31234
+56468,12040,40843
+56469,29799,58090
+56470,73063
+56471,77707
+56472,44943
+56473,33023,19820
+56474,33761
+56475,79039
+56476,48740
+56477,81794
+56478,25489
+56479,16622,69855
+56480,32757
+56481,35992
+56482,45555
+56483,61642
+56484,38764
+56485,72864
+56486,12251,78470,78088
+56487,81551
+56488,58246
+56489,62908,64597,39921
+56490,34768
+56491,13274
+56492,66132,24126
+56493,4299
+56494,29520
+56495,75672
+56496,1018
+56497,20648
+56498,70700
+56499,34621
+56500,14407
+56501,59744
+56502,75903
+56503,55586
+56504,22315
+56505,54746
+56506,26353
+56507,63945
+56508,42444
+56509,20159
+56510,22065
+56511,22071
+56512,66543,61223
+56513,8606,27679
+56514,31343
+56515,27879
+56516,61070
+56517,80801
+56518,73509,45013
+56519,31503
+56520,61400
+56521,51537
+56522,6845
+56523,46680,45975
+56524,40327
+56525,35534
+56526,52126
+56527,1786
+56528,66062
+56529,50959
+56530,12259,18072
+56531,3663
+56532,15143
+56533,17391
+56534,42121
+56535,64687
+56536,19554,5743
+56537,30624
+56538,56646
+56539,25941
+56540,21691
+56541,44159
+56542,79073
+56543,39683,11197
+56544,44054
+56545,37189
+56546,55103
+56547,51378,74140
+56548,75748,36216
+56549,45636
+56550,38185
+56551,44066
+56552,28341
+56553,49866
+56554,46080
+56555,62181
+56556,74216
+56557,66585,26962
+56558,45976,41895
+56559,28923,6792
+56560,53966,30837,75338
+56561,3725
+56562,79497
+56563,34276,11172
+56564,56587
+56565,33320,75214
+56566,7366
+56567,53097
+56568,60879
+56569,47002
+56570,53900
+56571,16410
+56572,15051,12152,30871
+56573,38320,59597
+56574,54723
+56575,32732,6306
+56576,35437
+56577,19748
+56578,42775
+56579,13670
+56580,28409
+56581,52895,1128
+56582,40528
+56583,54852
+56584,44172,65502
+56585,47955
+56586,32496
+56587,2870
+56588,70794
+56589,68264
+56590,78808
+56591,15076
+56592,4079
+56593,65653,29514
+56594,21955
+56595,80052,76367
+56596,50313,32866
+56597,69838,21549
+56598,56525
+56599,6251
+56600,21485
+56601,7182
+56602,14129
+56603,52407
+56604,60972
+56605,40358
+56606,50215
+56607,66830,49241
+56608,77786
+56609,13593
+56610,43437
+56611,507
+56612,64553
+56613,42732,29584
+56614,29471,65557,82037,66896
+56615,81804
+56616,26962
+56617,58716
+56618,19503
+56619,16323
+56620,69729
+56621,76393
+56622,33326
+56623,7955
+56624,72949,64950
+56625,74076
+56626,21295
+56627,23669
+56628,65456
+56629,14622
+56630,66748
+56631,10541
+56632,43183
+56633,27505
+56634,34103
+56635,74805
+56636,690
+56637,59322,16327
+56638,18486
+56639,7895,80621
+56640,71126
+56641,62088
+56642,46143
+56643,72147
+56644,2662
+56645,81979
+56646,14362,43116
+56647,24782
+56648,24537,80516
+56649,50351
+56650,79964
+56651,38594
+56652,63722
+56653,2864
+56654,78909
+56655,24519
+56656,21359
+56657,19506,52920
+56658,12333,25556,17338
+56659,15907
+56660,77685
+56661,16605
+56662,51272
+56663,1729
+56664,14687
+56665,58392,65086
+56666,28977,9234
+56667,39264
+56668,74671
+56669,58285,6650
+56670,47584,65627
+56671,67257
+56672,24949
+56673,57162,1377
+56674,22418,11748
+56675,43579
+56676,26036
+56677,26590
+56678,19791
+56679,43434
+56680,6376
+56681,68345
+56682,42792
+56683,38378
+56684,68953
+56685,52115
+56686,32117
+56687,19304
+56688,67880
+56689,55369
+56690,41222
+56691,10444
+56692,33404
+56693,30023
+56694,73380
+56695,2976
+56696,80668
+56697,14484
+56698,70661
+56699,727
+56700,31404
+56701,3366
+56702,75759,56609
+56703,52755,34331
+56704,50056
+56705,6926
+56706,25940
+56707,75337
+56708,10270
+56709,43260
+56710,53364
+56711,23372
+56712,25673
+56713,78360
+56714,23654
+56715,25166
+56716,28626
+56717,40910
+56718,12402,60429
+56719,69014
+56720,13353
+56721,68941
+56722,30562
+56723,10104
+56724,20647
+56725,72680
+56726,75198
+56727,38461
+56728,52095,58731,65886
+56729,32762
+56730,76559
+56731,80878,58672
+56732,7215
+56733,20675
+56734,18891
+56735,29945
+56736,43628
+56737,11260,48267
+56738,4501
+56739,28297
+56740,70756
+56741,42407
+56742,42991
+56743,41389
+56744,37212
+56745,54932
+56746,67883
+56747,74500
+56748,25265
+56749,13434
+56750,64814,24121
+56751,70171,18278,61451
+56752,5843
+56753,45142
+56754,57766
+56755,31748
+56756,22442,6507
+56757,78405
+56758,65158
+56759,34918
+56760,81326
+56761,43690
+56762,38144,70571
+56763,30199
+56764,38459,23114
+56765,10195
+56766,37356
+56767,32441
+56768,58701
+56769,60589
+56770,79358
+56771,67598
+56772,14440
+56773,40043
+56774,58933
+56775,20018,16122
+56776,66099
+56777,63477
+56778,26649
+56779,996
+56780,48921
+56781,47440
+56782,1897
+56783,15151
+56784,37550,45755
+56785,61457
+56786,76487
+56787,30157
+56788,6073
+56789,14876
+56790,47426
+56791,2742
+56792,13105
+56793,42904
+56794,47260
+56795,6476
+56796,4997
+56797,22695
+56798,45754
+56799,6878
+56800,2933
+56801,54019
+56802,5779
+56803,3719,80270
+56804,23459
+56805,77312
+56806,39269
+56807,29178
+56808,63422
+56809,77156
+56810,75065
+56811,38255
+56812,16716
+56813,40707
+56814,6536
+56815,12742
+56816,78328
+56817,66795
+56818,64339,49163,39071
+56819,59983
+56820,59816
+56821,39238,77564,4074
+56822,5449
+56823,79636
+56824,74916
+56825,42975,3085
+56826,41719,64321
+56827,46895
+56828,52490
+56829,75636,67957
+56830,38972
+56831,13720,7256
+56832,37333
+56833,77696
+56834,62841
+56835,62905
+56836,55626,1048
+56837,16269
+56838,54890
+56839,57856
+56840,56398
+56841,25035
+56842,60442
+56843,34103
+56844,64089,6166,58815
+56845,45899
+56846,9013
+56847,71023
+56848,9513
+56849,80627,8714
+56850,15176
+56851,27187
+56852,37470
+56853,69488
+56854,38690,46652,70113
+56855,23633
+56856,21865
+56857,17961
+56858,6029
+56859,8597
+56860,49849
+56861,66795
+56862,69271
+56863,77614
+56864,5196
+56865,17547
+56866,74349,23977
+56867,54105
+56868,41107
+56869,60591
+56870,70472,50696
+56871,48534,62764
+56872,16276
+56873,35929
+56874,17106
+56875,39836
+56876,44054,39355
+56877,44297,23255
+56878,59482
+56879,65288
+56880,5338
+56881,14912
+56882,21055
+56883,66106,70507
+56884,81576
+56885,15969,57918
+56886,60835
+56887,71464,44841,20462
+56888,81890
+56889,25668
+56890,18244
+56891,71006
+56892,1122
+56893,37639
+56894,71602
+56895,35017
+56896,79756
+56897,59987
+56898,25229
+56899,26224
+56900,42311
+56901,74524
+56902,58168
+56903,8
+56904,43875
+56905,70848,34247
+56906,31515,57862
+56907,36954
+56908,41566,11526
+56909,42182
+56910,12512
+56911,14086
+56912,46300,5425
+56913,45845
+56914,64823
+56915,49461
+56916,33203
+56917,29240
+56918,62025
+56919,46309
+56920,38061
+56921,37751
+56922,540
+56923,14292
+56924,42940,61753
+56925,75152
+56926,55459
+56927,37131
+56928,7193
+56929,285
+56930,46686,69130
+56931,9463
+56932,54865
+56933,59075
+56934,65293,38518
+56935,42105
+56936,61236
+56937,19739
+56938,42306
+56939,550
+56940,12248
+56941,39011
+56942,69188
+56943,22118
+56944,71047
+56945,16419
+56946,33650,50612
+56947,26860
+56948,65290
+56949,63008
+56950,57961
+56951,68686
+56952,2585
+56953,26596,23477
+56954,80371
+56955,51313
+56956,22441,67011
+56957,30551,72079
+56958,44664
+56959,37905
+56960,61296
+56961,10953
+56962,20292
+56963,50681
+56964,60548
+56965,68411
+56966,37583
+56967,62482
+56968,18462,60919
+56969,49321
+56970,23137
+56971,40330
+56972,45365
+56973,39720
+56974,33900,42048
+56975,34820
+56976,20377
+56977,14301
+56978,10556
+56979,19437
+56980,69360
+56981,73795
+56982,58324
+56983,12918
+56984,44290
+56985,77103
+56986,76982
+56987,72172
+56988,33450
+56989,77307
+56990,37468
+56991,2398
+56992,23531
+56993,44719
+56994,52707
+56995,77504
+56996,11533
+56997,64624
+56998,5253
+56999,72504
+57000,21109
+57001,38185
+57002,2877
+57003,21282
+57004,57008
+57005,24405,56169
+57006,31848
+57007,34485
+57008,65291
+57009,9741
+57010,17019
+57011,38477
+57012,76905
+57013,81488,19230
+57014,70298
+57015,49297
+57016,21452
+57017,48826,46119
+57018,43376
+57019,50541
+57020,1857,81285
+57021,23349
+57022,49914
+57023,67255
+57024,31602
+57025,64056,77715
+57026,63739,35950
+57027,36128
+57028,39713
+57029,15921
+57030,61813
+57031,47923
+57032,74437,6658
+57033,14952
+57034,78386
+57035,54826,55999
+57036,51994
+57037,45228,43014
+57038,37664
+57039,32208
+57040,70406
+57041,13398
+57042,20161,78518
+57043,10270
+57044,50879
+57045,31098
+57046,73447
+57047,26184
+57048,47907
+57049,72301
+57050,70815
+57051,23360
+57052,78911,38637,36365
+57053,46969
+57054,76292,65489,50387
+57055,60778
+57056,17495
+57057,79163
+57058,70864
+57059,43095
+57060,54877
+57061,2914
+57062,80295
+57063,11629
+57064,49594
+57065,41627
+57066,46624
+57067,75097
+57068,1796
+57069,21787
+57070,7046
+57071,34371,11195
+57072,29130
+57073,63014
+57074,12938
+57075,55576
+57076,61610
+57077,12395
+57078,53099,52437
+57079,42366
+57080,13567
+57081,21632
+57082,63800,36047
+57083,25661
+57084,52182,11482
+57085,6315
+57086,58947
+57087,56071
+57088,63043
+57089,32164
+57090,50492
+57091,71712
+57092,12444
+57093,45178
+57094,18593
+57095,62639
+57096,31344
+57097,58524
+57098,39861
+57099,41247
+57100,40834
+57101,56317,54850
+57102,19616,49131
+57103,48503
+57104,29772
+57105,40650
+57106,3603
+57107,43625
+57108,24474
+57109,76831
+57110,74602
+57111,73705
+57112,34778
+57113,80429
+57114,19611
+57115,28126
+57116,58004
+57117,32088,42234
+57118,73224
+57119,77286
+57120,55333
+57121,1468
+57122,4253
+57123,24476
+57124,81996
+57125,65422
+57126,42599,14972
+57127,54912,19970
+57128,21794
+57129,58455,76281
+57130,6714
+57131,75387
+57132,50287
+57133,32448,18556
+57134,36757
+57135,38191
+57136,66629,62372
+57137,20574
+57138,77428
+57139,23347,32586
+57140,42014
+57141,19598
+57142,61684
+57143,7755
+57144,7203
+57145,68324,27219
+57146,27903
+57147,47707
+57148,45022,79902
+57149,28988
+57150,57320
+57151,24551,15782
+57152,56789
+57153,9493
+57154,13294,3312
+57155,79693
+57156,12889
+57157,44160
+57158,34233,51363,80864
+57159,14086
+57160,80591
+57161,43157,22234,50560
+57162,11819
+57163,48340
+57164,3236
+57165,28373
+57166,40529
+57167,2193
+57168,15948
+57169,79362,2358
+57170,12720
+57171,19481
+57172,37484
+57173,4993
+57174,18963
+57175,75251
+57176,34768
+57177,66767
+57178,50437
+57179,17715,62562,62126
+57180,47672,60850
+57181,44694
+57182,31663
+57183,18433
+57184,69614,73882
+57185,77121
+57186,80140
+57187,37738,34255
+57188,16386
+57189,58168
+57190,6001
+57191,58258
+57192,55840
+57193,20585
+57194,994
+57195,12310
+57196,30596,48789
+57197,63341
+57198,17490,40027
+57199,7886
+57200,14560
+57201,19665,81042
+57202,63197
+57203,56112
+57204,218
+57205,64495,79839
+57206,71656
+57207,63852
+57208,48412
+57209,21462
+57210,15763
+57211,69392,79849
+57212,53839
+57213,50441,42393,14313
+57214,34890
+57215,40692,70495
+57216,37936
+57217,67070,16513,19032
+57218,12020
+57219,30,39223,25165
+57220,13814
+57221,76563
+57222,15524
+57223,14326
+57224,51690,67624
+57225,68600
+57226,76017,63402
+57227,41665
+57228,32440
+57229,6696
+57230,2187
+57231,24179
+57232,49222
+57233,71377
+57234,75793
+57235,7462
+57236,33593,47898
+57237,21443,76793
+57238,62359
+57239,11543
+57240,30224
+57241,42471
+57242,24699
+57243,7246
+57244,47256
+57245,42627
+57246,20006
+57247,63545
+57248,73855
+57249,47573
+57250,77200
+57251,64755
+57252,34013,63003
+57253,48003
+57254,78508
+57255,58702
+57256,29744,72125
+57257,42550
+57258,53856,70839
+57259,2807,78177
+57260,1933
+57261,48495
+57262,44718,56722,54967
+57263,19588
+57264,72281
+57265,78130,46830
+57266,69253
+57267,15329
+57268,18233
+57269,36243,53255
+57270,23245,47793,56719
+57271,77109,6091
+57272,62972
+57273,37432
+57274,48551
+57275,40456
+57276,5119
+57277,39362
+57278,30366
+57279,62921,71112
+57280,27661
+57281,13291
+57282,80714
+57283,14717
+57284,18523
+57285,24852
+57286,66832
+57287,66503
+57288,61180
+57289,72237
+57290,67551
+57291,45064
+57292,1486
+57293,26677,78948,20880
+57294,65413
+57295,50317
+57296,38208
+57297,39136
+57298,6003
+57299,67790
+57300,74054,1368
+57301,49900
+57302,54249
+57303,7465,74509
+57304,41062
+57305,72558
+57306,15112
+57307,4865,53847
+57308,31629
+57309,58852
+57310,21029,61168
+57311,75024
+57312,30385
+57313,73514
+57314,744
+57315,19482
+57316,13873
+57317,56192
+57318,30657
+57319,51123
+57320,55266
+57321,22882
+57322,61595,16029
+57323,30660
+57324,15073,54748
+57325,13959,2297
+57326,70028
+57327,69766
+57328,80932,56377
+57329,66159,79293
+57330,50348
+57331,30897
+57332,38027
+57333,42122
+57334,538
+57335,24060
+57336,78700
+57337,53390
+57338,15930,4958
+57339,21839
+57340,81444,19119
+57341,81449
+57342,1004
+57343,75661
+57344,71857
+57345,29489,61534
+57346,76729
+57347,33517,38221
+57348,46429
+57349,76001
+57350,81277
+57351,60492
+57352,51259
+57353,21914
+57354,11947
+57355,56183
+57356,30955
+57357,29444
+57358,21628,57829
+57359,56031
+57360,23373
+57361,12388,23453,67984
+57362,39808
+57363,10485,67695
+57364,24264,3516
+57365,61738
+57366,29021
+57367,68245
+57368,50116,20240
+57369,2236
+57370,10365
+57371,3637
+57372,5624
+57373,52318
+57374,9961
+57375,71690
+57376,21703
+57377,31706
+57378,29129
+57379,5398
+57380,67103
+57381,67344
+57382,70671
+57383,1425
+57384,7493
+57385,9658
+57386,16699
+57387,66424
+57388,61026
+57389,54898
+57390,11900
+57391,67647
+57392,35063
+57393,39929
+57394,14878
+57395,50131
+57396,79110,35685
+57397,64358
+57398,73945
+57399,38808,62944
+57400,17423
+57401,11780
+57402,65289
+57403,23
+57404,5723
+57405,9962
+57406,13206,45400
+57407,62728
+57408,80731
+57409,52080
+57410,70794
+57411,11101
+57412,3033
+57413,48718
+57414,34170
+57415,23568
+57416,74770
+57417,73272
+57418,53800
+57419,8059
+57420,27698,21166
+57421,5878
+57422,22982
+57423,25593
+57424,71616
+57425,50376
+57426,10926
+57427,44048
+57428,30868
+57429,28200
+57430,4870,59142
+57431,44285
+57432,19484
+57433,77981
+57434,78560
+57435,26186
+57436,6847
+57437,7964
+57438,59293
+57439,63382
+57440,79693
+57441,17307
+57442,40229
+57443,1608
+57444,43028
+57445,46914
+57446,63447
+57447,10831
+57448,17480
+57449,8678
+57450,45616
+57451,77429
+57452,17903
+57453,46523
+57454,38325
+57455,21415
+57456,64217,30532
+57457,34311
+57458,23459
+57459,20430
+57460,27964
+57461,43700
+57462,39075
+57463,53120,7602,60921
+57464,24848
+57465,38129
+57466,1831
+57467,68877
+57468,11485,82069
+57469,1754
+57470,12601
+57471,72720
+57472,50460
+57473,73166
+57474,56456
+57475,43413
+57476,23020
+57477,18132,37600
+57478,20250
+57479,7727,51700
+57480,50251,54158
+57481,6959
+57482,1051,32274
+57483,63226
+57484,65231
+57485,19593
+57486,43776
+57487,51203
+57488,44008
+57489,4870
+57490,78877
+57491,34847
+57492,17308
+57493,30842
+57494,24752
+57495,10949
+57496,24259,11712
+57497,21087
+57498,52727,20306
+57499,62524
+57500,3685
+57501,70453
+57502,63322
+57503,20978
+57504,3251,66654
+57505,38258
+57506,57597
+57507,31121
+57508,47917,63773
+57509,61205
+57510,29736
+57511,55902
+57512,69773
+57513,18331,81457
+57514,33444,25699
+57515,45154
+57516,15706
+57517,48888
+57518,68041
+57519,30230,32883
+57520,61921,60771
+57521,38564
+57522,51445
+57523,73538
+57524,27137
+57525,57031
+57526,69330
+57527,46789,31220
+57528,53823,7034
+57529,22077
+57530,29774
+57531,19049
+57532,23316
+57533,73931
+57534,54207
+57535,52232
+57536,81941
+57537,51114
+57538,38564
+57539,27185
+57540,31062
+57541,76494
+57542,55626
+57543,79146
+57544,13549
+57545,29660
+57546,22979
+57547,77437
+57548,4840
+57549,48527
+57550,20502
+57551,70451
+57552,75436
+57553,58054
+57554,59184
+57555,14701
+57556,30435
+57557,37740
+57558,78767
+57559,29382
+57560,46472
+57561,77217
+57562,72254
+57563,69620
+57564,37983
+57565,24688
+57566,49195
+57567,56162,6623
+57568,17883
+57569,11144
+57570,66406
+57571,50293
+57572,40689
+57573,16114,34563
+57574,55713
+57575,24274,16257
+57576,29354
+57577,49336
+57578,26549
+57579,6118
+57580,75790
+57581,52222
+57582,77636
+57583,5471
+57584,24488
+57585,55753
+57586,56104
+57587,7215
+57588,12675
+57589,57803
+57590,50226
+57591,36938
+57592,26736
+57593,16816
+57594,29105,43857
+57595,42754,7357
+57596,66326,46252
+57597,26162,51181
+57598,49229,38486
+57599,35452,99
+57600,74155
+57601,13609,81198
+57602,38606
+57603,19317,77106
+57604,35802,23539,65810
+57605,23389,60295
+57606,25953
+57607,53136
+57608,73381
+57609,49620
+57610,21685
+57611,77318
+57612,21200
+57613,27797
+57614,38033
+57615,68450
+57616,17943,79383
+57617,66227
+57618,24422,53201,26881
+57619,33927,44660
+57620,49003
+57621,3711
+57622,72496
+57623,70515,81041
+57624,81438,62478
+57625,52115
+57626,23744,26677
+57627,67074
+57628,25835
+57629,37335
+57630,45754
+57631,62007
+57632,54682
+57633,55514
+57634,81276,76404
+57635,68617
+57636,6508
+57637,35994,22740
+57638,3738
+57639,72252
+57640,24764
+57641,73494,50582
+57642,76286
+57643,20645
+57644,60898
+57645,15284
+57646,55685
+57647,52794
+57648,44237
+57649,42088
+57650,34228,11182,61411
+57651,62058,5989
+57652,39445
+57653,78984
+57654,82170
+57655,11753,33839
+57656,23318
+57657,24287
+57658,17606
+57659,52318
+57660,67766
+57661,76062
+57662,3041
+57663,38684
+57664,53564
+57665,29867
+57666,969
+57667,47634
+57668,62981
+57669,66945,6267
+57670,58935
+57671,69544
+57672,61169,20303
+57673,9507,13700
+57674,41424
+57675,56923,61694
+57676,12792
+57677,59168
+57678,79597
+57679,52860
+57680,39345
+57681,13553
+57682,48028,13175
+57683,5057
+57684,32076
+57685,49568
+57686,76138
+57687,37165
+57688,31378
+57689,77399
+57690,6906
+57691,72058,8172
+57692,28102
+57693,76225
+57694,59786,37910
+57695,73780
+57696,72406
+57697,26398
+57698,21037
+57699,19993
+57700,26742
+57701,43975
+57702,75042
+57703,37815
+57704,57243
+57705,80632
+57706,47225
+57707,35089
+57708,82021
+57709,61014,3359
+57710,30995
+57711,76181
+57712,46396
+57713,25400
+57714,24358
+57715,67767
+57716,60683,45423,44544
+57717,81256
+57718,32915
+57719,55303
+57720,66351
+57721,67430
+57722,59483
+57723,11977
+57724,65801
+57725,64724
+57726,15703,59285
+57727,69008
+57728,66382
+57729,67415
+57730,67320,35287
+57731,25072
+57732,4086
+57733,14348,65638
+57734,50865
+57735,34971
+57736,22681
+57737,74797
+57738,2163
+57739,41888
+57740,3025
+57741,67752
+57742,78173
+57743,18100
+57744,4780
+57745,67340
+57746,69579
+57747,2081
+57748,72919
+57749,77246,13724
+57750,37402
+57751,62301
+57752,70336,37354
+57753,39318,31552,45719
+57754,70723
+57755,24917
+57756,11561
+57757,39159
+57758,62390
+57759,3525
+57760,42086
+57761,62356
+57762,2600
+57763,54691
+57764,64276,18705
+57765,81280
+57766,80092
+57767,42028
+57768,58982,47124
+57769,37935
+57770,51487
+57771,11598
+57772,75626
+57773,10130
+57774,15918
+57775,45259
+57776,35781
+57777,7973
+57778,28703,56416,6605
+57779,78799
+57780,6244
+57781,29067
+57782,30445
+57783,79818
+57784,5066
+57785,43190
+57786,18012,30654
+57787,16839
+57788,57164
+57789,32056
+57790,76991
+57791,57695
+57792,13360
+57793,61111,57408
+57794,22099
+57795,63729
+57796,33083
+57797,75152
+57798,7451
+57799,59789
+57800,4978
+57801,13901
+57802,24191
+57803,82083
+57804,76426,76590
+57805,65224
+57806,5171,53271
+57807,37235
+57808,81786
+57809,1462
+57810,15767,54360
+57811,75594
+57812,44493
+57813,58085,81249
+57814,64242,1717
+57815,79225,16817
+57816,76622,47015
+57817,28870
+57818,14273
+57819,69674,30935
+57820,32155
+57821,27870
+57822,69326
+57823,4534
+57824,31172
+57825,24575
+57826,61067,72159
+57827,36544
+57828,75102
+57829,28931
+57830,15990
+57831,5977
+57832,58651
+57833,78259,60687,778
+57834,69856,54048
+57835,43899,71499
+57836,6175
+57837,56765
+57838,41815
+57839,68550
+57840,17200
+57841,54125
+57842,17101
+57843,65593,70003
+57844,42092
+57845,34497
+57846,19767,15704
+57847,850
+57848,54731,54445
+57849,23652,53160
+57850,43649
+57851,53786
+57852,19923,32845
+57853,47337
+57854,71225,27170
+57855,63599
+57856,21645
+57857,61468,68893
+57858,57588
+57859,22069
+57860,39410
+57861,76066
+57862,28733
+57863,53549
+57864,69344
+57865,58574
+57866,43096
+57867,49810
+57868,53611
+57869,29080
+57870,9213
+57871,20449
+57872,20526
+57873,45335
+57874,53516
+57875,1962
+57876,16457
+57877,25165
+57878,26526
+57879,30769
+57880,11986,25803
+57881,27256
+57882,50940
+57883,7644,62174
+57884,75591
+57885,26338,65150,37012
+57886,75718
+57887,22707
+57888,81216
+57889,47778
+57890,68578
+57891,19786
+57892,43952,63298
+57893,79962
+57894,2331
+57895,18099
+57896,76917
+57897,45553
+57898,18090
+57899,21206
+57900,5496
+57901,79304,48176
+57902,47507
+57903,19747
+57904,10759
+57905,42754
+57906,68936
+57907,60246
+57908,43732
+57909,31002
+57910,40650
+57911,7414
+57912,47420
+57913,2619
+57914,17961,17339,24002
+57915,81432,60044,53007
+57916,10626
+57917,44648,15775
+57918,32413
+57919,61694
+57920,30656
+57921,179
+57922,29913
+57923,29065
+57924,41488
+57925,50697,55016
+57926,68509
+57927,68569
+57928,38728
+57929,50270,31603
+57930,16163
+57931,78676
+57932,2157
+57933,77961
+57934,44043
+57935,56882
+57936,48900
+57937,39720
+57938,70717
+57939,32447
+57940,27387
+57941,47812
+57942,24588
+57943,55309
+57944,15676
+57945,69477
+57946,30540
+57947,25882
+57948,32318
+57949,52815
+57950,14515
+57951,182
+57952,47996
+57953,66960
+57954,62608,74250
+57955,72184
+57956,1492
+57957,74482,1101
+57958,58063
+57959,25720
+57960,35625,55412
+57961,8288
+57962,26692
+57963,57867
+57964,75670
+57965,35023
+57966,31829
+57967,70190
+57968,41413
+57969,33320
+57970,55349,78400
+57971,36763
+57972,13419
+57973,37869,42114,55110
+57974,79220
+57975,73671
+57976,38088,23806
+57977,31400
+57978,72363
+57979,24057
+57980,75507
+57981,44894
+57982,72310,46648
+57983,75455
+57984,55120
+57985,30207,22220
+57986,45971,38935
+57987,36330
+57988,43605
+57989,18593
+57990,24790
+57991,51803
+57992,57310,1776
+57993,46481
+57994,15845
+57995,54420
+57996,3262
+57997,32486,58068
+57998,55469
+57999,44503
+58000,39116,5445
+58001,73251,66372
+58002,58441
+58003,76583,4076
+58004,55226,68173,12044
+58005,44515
+58006,49610
+58007,8528
+58008,30972
+58009,17023,40792
+58010,45611
+58011,54595
+58012,28265
+58013,57327
+58014,67938
+58015,21026
+58016,18969
+58017,35930
+58018,78710
+58019,5484
+58020,36165
+58021,12819,76543
+58022,77881
+58023,49681
+58024,59209
+58025,22996
+58026,1200
+58027,53183,13936
+58028,33519
+58029,1724
+58030,3827
+58031,49358
+58032,55701,11533
+58033,54575,48073
+58034,30402
+58035,6264,43151
+58036,78827
+58037,48936
+58038,2280
+58039,15500
+58040,869
+58041,29555,43717
+58042,39164
+58043,57246
+58044,3692
+58045,43008
+58046,21694
+58047,19595
+58048,80713
+58049,37940,34198
+58050,64774,68921
+58051,22976
+58052,74154
+58053,27835
+58054,12051
+58055,6517,43590
+58056,55020
+58057,4792
+58058,52792
+58059,81311,60126
+58060,70051
+58061,47393
+58062,20572
+58063,26346
+58064,75033
+58065,29560,11263
+58066,48746
+58067,79862
+58068,26301
+58069,20518
+58070,11672
+58071,12501
+58072,80279,42961
+58073,20634
+58074,67536
+58075,43240,48776,63078
+58076,59046
+58077,18588
+58078,81792
+58079,71507
+58080,39862,42873
+58081,15132
+58082,81084
+58083,51092
+58084,21843,24680
+58085,60147
+58086,72725
+58087,1988
+58088,45206
+58089,80719
+58090,69594
+58091,22
+58092,45561
+58093,73778
+58094,66913
+58095,41945,46584
+58096,21501,50608
+58097,54410,8099
+58098,22742
+58099,66610
+58100,10859,76141
+58101,48925
+58102,8726
+58103,68978
+58104,79221
+58105,64652,19321,40809
+58106,1596
+58107,47771
+58108,19235
+58109,71720
+58110,21472,51956
+58111,35621,21051
+58112,56214
+58113,62077,47117
+58114,45001
+58115,46350,65367
+58116,61444
+58117,20349
+58118,11684,24979,1260
+58119,69623
+58120,70559
+58121,35230
+58122,73884
+58123,30235
+58124,45249
+58125,79827,54408
+58126,26229
+58127,1271
+58128,77681
+58129,39333
+58130,18853,60148
+58131,17200
+58132,44102,67469
+58133,47533
+58134,53150
+58135,27820
+58136,39258
+58137,32022
+58138,56151
+58139,4803
+58140,38034,58441
+58141,19355
+58142,48217,5796
+58143,20723
+58144,66688
+58145,80549
+58146,39973
+58147,78674,28568
+58148,29809
+58149,68679,34027
+58150,82158
+58151,18604
+58152,68539
+58153,78294
+58154,57317,79574
+58155,53967,21833
+58156,64289
+58157,28942
+58158,20324
+58159,26256
+58160,4458
+58161,36292
+58162,16147
+58163,70205
+58164,74911
+58165,18203
+58166,72926
+58167,21868
+58168,65191
+58169,1836
+58170,51607
+58171,32385
+58172,9856,20695
+58173,44108
+58174,67246
+58175,38919
+58176,16884
+58177,4289
+58178,62349,19174
+58179,12010,31547
+58180,38791
+58181,76936
+58182,70026
+58183,60512
+58184,30612
+58185,23421
+58186,53516
+58187,61497
+58188,44847
+58189,1514
+58190,63043
+58191,29016,26756
+58192,10395
+58193,32774
+58194,78472
+58195,71327
+58196,36061,10337
+58197,73077,64779
+58198,5278
+58199,81073
+58200,18244
+58201,68492
+58202,31819
+58203,55128
+58204,80044
+58205,68075,36715,78737
+58206,33264,18527
+58207,6725
+58208,45741,53239,3469,55862
+58209,73843
+58210,9213
+58211,50899
+58212,6918,35851
+58213,16952,33811
+58214,65453
+58215,1197
+58216,38971
+58217,79832,68595,32777
+58218,37011,2480
+58219,32403
+58220,58557
+58221,2477
+58222,47494
+58223,54875
+58224,51509,6504
+58225,54845
+58226,20990
+58227,43095
+58228,63426
+58229,24647
+58230,25391,39899
+58231,355
+58232,42603
+58233,12793,13154
+58234,78835
+58235,33556
+58236,58621
+58237,41760,58092
+58238,45705,74062
+58239,62905
+58240,24315
+58241,19911
+58242,10202,75143
+58243,33277
+58244,39358
+58245,42353
+58246,81160
+58247,16826
+58248,28407
+58249,15049
+58250,52002,19846
+58251,23116
+58252,48858
+58253,52144
+58254,20031
+58255,11316
+58256,57451
+58257,14146
+58258,80298
+58259,53433,32971
+58260,22565
+58261,5174
+58262,34971
+58263,5943
+58264,14129
+58265,55189
+58266,29368
+58267,34466
+58268,79797
+58269,8258
+58270,44524
+58271,60293
+58272,15298,79700
+58273,76919,13492,40797
+58274,75283
+58275,51586
+58276,51368
+58277,81315
+58278,69329
+58279,79956
+58280,81256
+58281,44887
+58282,46629
+58283,2423
+58284,277,15267
+58285,32360
+58286,63527
+58287,6577
+58288,41538
+58289,51662
+58290,64758
+58291,52654
+58292,49538,19232
+58293,65601
+58294,53311
+58295,76455,37477
+58296,14770
+58297,76540
+58298,53130
+58299,55014
+58300,49550
+58301,52998
+58302,74486
+58303,50531,61549
+58304,16799
+58305,71259
+58306,67140
+58307,34805,80543
+58308,11601
+58309,65265
+58310,60439
+58311,72191
+58312,41218
+58313,42157
+58314,3305,54842
+58315,53106,53801
+58316,30833
+58317,4616
+58318,2585
+58319,33288
+58320,51002
+58321,55684
+58322,37177
+58323,10828
+58324,42076
+58325,14491
+58326,71002
+58327,21442,26662
+58328,79001
+58329,67393
+58330,59330
+58331,28452
+58332,19765
+58333,56910
+58334,52141
+58335,65080
+58336,8554
+58337,44669
+58338,51393
+58339,11007
+58340,13405
+58341,47533
+58342,52072
+58343,44758
+58344,63305
+58345,22681
+58346,4869
+58347,66322
+58348,19220
+58349,45133
+58350,52300
+58351,45927
+58352,57388
+58353,25744
+58354,15676
+58355,11898
+58356,65217
+58357,81299,38186
+58358,78138,34335
+58359,56499
+58360,9243
+58361,14029,57185
+58362,50619,60233,77344
+58363,29426
+58364,71375
+58365,55524
+58366,61336,68739
+58367,37090
+58368,63305
+58369,73131
+58370,15640
+58371,14898,29535
+58372,70301
+58373,242
+58374,15424
+58375,42401
+58376,49509
+58377,54020
+58378,70778
+58379,54893
+58380,25882
+58381,39026
+58382,21903
+58383,14833,24462
+58384,73827,24069
+58385,3321
+58386,52815,56600
+58387,25294
+58388,57966
+58389,50724
+58390,30234
+58391,75501
+58392,53827
+58393,22301
+58394,70575,48118,74083
+58395,25885,17990,34496
+58396,31545,13969
+58397,533
+58398,74441
+58399,78456,21207
+58400,66899
+58401,16479
+58402,50734
+58403,47709
+58404,42311
+58405,36777
+58406,81726
+58407,70211
+58408,33069
+58409,12537
+58410,54112
+58411,32995
+58412,51497,53566
+58413,28194
+58414,72361
+58415,62538
+58416,7389
+58417,32852
+58418,2920
+58419,4664,59925
+58420,53530
+58421,4721
+58422,27668
+58423,29731
+58424,59209
+58425,9315,41225
+58426,3647
+58427,69844
+58428,18958
+58429,62526
+58430,24871,73576
+58431,72553
+58432,55837
+58433,12099
+58434,40381
+58435,34705
+58436,8765
+58437,58552
+58438,69473,10125
+58439,20209,51456
+58440,73550
+58441,58993,4444
+58442,58653
+58443,66450
+58444,62321
+58445,79844
+58446,7240
+58447,28519
+58448,59836
+58449,70723
+58450,7028
+58451,73363
+58452,23580
+58453,36763
+58454,67171
+58455,66957
+58456,60708
+58457,1499
+58458,20961
+58459,45605,63239
+58460,64007
+58461,31699
+58462,20897
+58463,81093
+58464,42286
+58465,13214
+58466,68729,25997
+58467,55946
+58468,60264
+58469,69595
+58470,3868
+58471,14576
+58472,81661
+58473,75454,67589
+58474,18005
+58475,71297
+58476,66041
+58477,5994
+58478,21268
+58479,81337
+58480,49172
+58481,4134
+58482,61289
+58483,20424
+58484,64420
+58485,35651
+58486,64770
+58487,44884
+58488,45880
+58489,24561
+58490,39363
+58491,76049
+58492,79679
+58493,19249
+58494,54716
+58495,68350
+58496,74101
+58497,73051
+58498,16310
+58499,65051
+58500,18563,31143
+58501,20962
+58502,46982
+58503,56258
+58504,20785
+58505,43776
+58506,45491
+58507,77656
+58508,38282
+58509,19044
+58510,40519
+58511,22969
+58512,37606,64683
+58513,34911
+58514,23902
+58515,24589
+58516,5650
+58517,73803
+58518,71557
+58519,8442,71446
+58520,4589
+58521,76076
+58522,77417
+58523,22878,44054
+58524,23346
+58525,54047
+58526,71927
+58527,45647
+58528,2394
+58529,19410
+58530,79954
+58531,32325
+58532,67624
+58533,36849
+58534,81845
+58535,36587
+58536,37911
+58537,60317
+58538,4815
+58539,43387
+58540,72100
+58541,11198,13404
+58542,57546,43389,2895
+58543,20535
+58544,35627
+58545,48820
+58546,15050,44647
+58547,22681,39559
+58548,21320
+58549,20836
+58550,40122
+58551,51646
+58552,24837
+58553,28596
+58554,4808
+58555,52686,15762
+58556,17469
+58557,44729
+58558,6186
+58559,51087
+58560,44987
+58561,58761
+58562,13923,62374
+58563,2230
+58564,37398
+58565,68036,64291,14072
+58566,38076
+58567,51131
+58568,12114
+58569,17027
+58570,3595
+58571,72938
+58572,14459
+58573,31396,46621
+58574,34778
+58575,58505,58355
+58576,37815
+58577,25159
+58578,30260
+58579,9739
+58580,48583,69183
+58581,63404,68914
+58582,55223
+58583,52126
+58584,26367
+58585,8848
+58586,7274,15983
+58587,57267
+58588,23821
+58589,69728
+58590,50682
+58591,77436
+58592,10116
+58593,36830
+58594,41243,32229,51517,48004
+58595,41555,24845
+58596,73092
+58597,20243
+58598,25740
+58599,9859,3541
+58600,72900
+58601,73556,24279
+58602,22642
+58603,59706
+58604,21835
+58605,60697
+58606,36400,9572
+58607,44256,66514
+58608,1783
+58609,52433
+58610,48677
+58611,55355,29742,56727
+58612,28701
+58613,66235
+58614,54158
+58615,45558
+58616,19182
+58617,69838
+58618,69314,35237
+58619,17664
+58620,75214
+58621,22642
+58622,1962
+58623,36978
+58624,40496
+58625,40759
+58626,79218
+58627,32919
+58628,23285
+58629,72582
+58630,8402
+58631,60122
+58632,44502
+58633,18637
+58634,57654,22434
+58635,73241
+58636,76941
+58637,3267,28928
+58638,49274
+58639,16282
+58640,68704
+58641,13977
+58642,65502
+58643,79091,69256
+58644,6618
+58645,12133,28109,52431
+58646,11432
+58647,62954
+58648,19629
+58649,78026
+58650,72700
+58651,58666
+58652,23193
+58653,34468
+58654,58621
+58655,21591
+58656,53002
+58657,30696
+58658,32177,53457
+58659,72088,8340
+58660,25298
+58661,57276
+58662,50019
+58663,58077
+58664,38647
+58665,40112
+58666,22651,47639
+58667,59959
+58668,75680,25251
+58669,7718
+58670,33983
+58671,64016
+58672,78495
+58673,36963
+58674,47028,7134
+58675,63337
+58676,82149
+58677,65881
+58678,61032,59096
+58679,49131
+58680,53782
+58681,22230
+58682,52845,56947
+58683,78644
+58684,44849
+58685,43821
+58686,60300
+58687,37864
+58688,11369
+58689,67169
+58690,58080,49467
+58691,73817
+58692,81998
+58693,51249
+58694,58474
+58695,53689
+58696,64112
+58697,1677
+58698,17666
+58699,81650,40803
+58700,53823
+58701,13098
+58702,26825
+58703,15540
+58704,76965
+58705,33089
+58706,67643
+58707,28283
+58708,8774
+58709,66669
+58710,62872
+58711,11656
+58712,81708
+58713,28717,39963
+58714,32321
+58715,75171,55949
+58716,41892
+58717,37470
+58718,29632,40644
+58719,38366
+58720,6079,46136,22504
+58721,59851
+58722,71959
+58723,60194
+58724,11107
+58725,14857
+58726,64326
+58727,74436,15405
+58728,59881
+58729,39613
+58730,19401
+58731,10108
+58732,45401,7975
+58733,76944,46343
+58734,19287
+58735,76361
+58736,75819,48516
+58737,269
+58738,42485
+58739,75984
+58740,12646
+58741,70600,36294
+58742,40266
+58743,46921
+58744,42666
+58745,39352
+58746,78686
+58747,26228
+58748,61288
+58749,53915
+58750,8511
+58751,40407
+58752,73111,15858
+58753,43960
+58754,5558
+58755,15929
+58756,39898
+58757,48096
+58758,73063,67022
+58759,48950
+58760,54335
+58761,45457
+58762,69368
+58763,66970
+58764,32966
+58765,46225
+58766,29855
+58767,76149
+58768,18955
+58769,81639
+58770,20000
+58771,67170
+58772,42921
+58773,30708
+58774,58731
+58775,72287
+58776,37014
+58777,74443,300
+58778,1734,50738
+58779,62125
+58780,60543
+58781,55263,56422
+58782,70253
+58783,44934,78995
+58784,68130
+58785,8064
+58786,61077,50711
+58787,32158
+58788,20560,8201,53449
+58789,20492
+58790,1380
+58791,45540
+58792,17826
+58793,24399
+58794,20408
+58795,14876
+58796,67332
+58797,63141
+58798,50909
+58799,53332
+58800,78909
+58801,62701
+58802,69416,46376
+58803,12111
+58804,60349
+58805,64112
+58806,37329,58424
+58807,8848
+58808,81598,8208
+58809,10014
+58810,27993,61219
+58811,74762
+58812,46163,9957,41951
+58813,59375
+58814,39247
+58815,38579,76658
+58816,25092
+58817,46855
+58818,24523,40732
+58819,30614
+58820,16608
+58821,22505
+58822,33947
+58823,14968
+58824,781
+58825,39294
+58826,52387
+58827,66670,13137
+58828,68994
+58829,52781
+58830,3153
+58831,23275
+58832,45738
+58833,13605
+58834,13146
+58835,61867
+58836,77706
+58837,37200,59913
+58838,5942
+58839,58979
+58840,68439
+58841,6601,1578
+58842,32026
+58843,62232
+58844,18012
+58845,43480
+58846,31999
+58847,78038,57129,7909
+58848,33187
+58849,20598
+58850,68405
+58851,69810
+58852,17375
+58853,3970
+58854,43973
+58855,24618
+58856,72595
+58857,78264
+58858,28471
+58859,76852
+58860,40174,2301,80296,17676
+58861,67685
+58862,28824
+58863,69810
+58864,5915
+58865,29677
+58866,5463,9031
+58867,38186
+58868,51960,53194
+58869,64248
+58870,18150
+58871,11016
+58872,77881
+58873,72640
+58874,34855
+58875,43993
+58876,8967
+58877,32458,40729
+58878,22539
+58879,53914
+58880,2808
+58881,2672,73105
+58882,33361,41141
+58883,70559
+58884,48953
+58885,57376,17493
+58886,29432
+58887,65290
+58888,38045
+58889,36845
+58890,23131,24245
+58891,24281,79908
+58892,22550
+58893,24137
+58894,22646
+58895,29332,63143
+58896,77347
+58897,36121
+58898,26729,31706
+58899,51924
+58900,15461
+58901,5625
+58902,56704
+58903,75880
+58904,18534
+58905,77393
+58906,46742
+58907,32189
+58908,33659
+58909,57408
+58910,4069
+58911,2638,75361
+58912,74669
+58913,64045
+58914,68423
+58915,10006
+58916,57795
+58917,30827,64465
+58918,47053
+58919,4791
+58920,64867
+58921,66811
+58922,70107,72263
+58923,31849
+58924,42662,20111
+58925,44030
+58926,61086
+58927,58326,41595
+58928,60473
+58929,78611,48027
+58930,5303
+58931,3088,29413
+58932,65019
+58933,5743,73716
+58934,73648
+58935,41520
+58936,1859
+58937,50354
+58938,48437
+58939,26760
+58940,3644
+58941,67169
+58942,68764
+58943,63158
+58944,74113
+58945,35225
+58946,37705
+58947,39926
+58948,51067
+58949,24934
+58950,32971
+58951,2069
+58952,7110
+58953,41453
+58954,44065
+58955,42540
+58956,21042
+58957,21568,68197
+58958,29716,23322
+58959,41985
+58960,65145
+58961,53241
+58962,36188
+58963,76411
+58964,61360
+58965,67732
+58966,73803
+58967,17545,53661
+58968,66403,1056
+58969,40093
+58970,13818
+58971,57490
+58972,19030
+58973,76155
+58974,72928
+58975,43229
+58976,15555
+58977,70980
+58978,68747
+58979,71649
+58980,24438
+58981,23133
+58982,80447
+58983,45313
+58984,308
+58985,68680
+58986,24310
+58987,60090
+58988,11358
+58989,969
+58990,14034
+58991,75359
+58992,10730,65095
+58993,75989
+58994,43624,80798
+58995,50385
+58996,29259
+58997,65405,69781
+58998,60060
+58999,12739
+59000,18558
+59001,43742
+59002,25825,79194
+59003,30157,13927
+59004,62021,808,27761
+59005,19050
+59006,18612
+59007,24752
+59008,76742
+59009,34084,39026
+59010,70360
+59011,73859
+59012,31789
+59013,72306,78688
+59014,9977
+59015,70517
+59016,33684
+59017,45018
+59018,47665,189
+59019,10743
+59020,18055
+59021,60960
+59022,58113
+59023,33854
+59024,8521
+59025,15121
+59026,75118
+59027,1365
+59028,39038
+59029,40734
+59030,25660,81147,54408
+59031,21857
+59032,41089
+59033,27256
+59034,54121
+59035,60357
+59036,76190
+59037,40581
+59038,50789
+59039,62807
+59040,81416,46194
+59041,76664
+59042,66575
+59043,45060
+59044,63287
+59045,50652
+59046,48355
+59047,53083,56803
+59048,46225
+59049,43024,76393
+59050,35287
+59051,49978,58625,79298
+59052,18060
+59053,14403
+59054,57266
+59055,16962,77743
+59056,66928
+59057,3668
+59058,47193
+59059,6759
+59060,5527
+59061,36311
+59062,76709
+59063,77675
+59064,28257,1469
+59065,33917
+59066,40705,3858
+59067,72720
+59068,40834
+59069,75443
+59070,67294,51723
+59071,58738
+59072,25314
+59073,4174
+59074,66777
+59075,59872
+59076,53453
+59077,806,23574
+59078,29332
+59079,5982
+59080,52084
+59081,70061,9290
+59082,62130
+59083,81536
+59084,19134,63009
+59085,24108
+59086,78563
+59087,20856
+59088,36513
+59089,63490
+59090,37638
+59091,26624,35651
+59092,10776
+59093,27484
+59094,68491
+59095,13358
+59096,36186
+59097,51745
+59098,69615
+59099,9479
+59100,24872
+59101,76698
+59102,4302
+59103,64244
+59104,10273,54764
+59105,66380
+59106,19576
+59107,75454
+59108,47460,64045
+59109,4399,19
+59110,30464
+59111,60636
+59112,34664,36206
+59113,6064
+59114,44005
+59115,78110
+59116,45428,28946
+59117,17252
+59118,32786,25186
+59119,52800
+59120,13729,40201
+59121,2380
+59122,41852
+59123,64955
+59124,63773
+59125,61041
+59126,66350
+59127,58402,52364,32444
+59128,27654
+59129,1114
+59130,58664
+59131,24558
+59132,31083
+59133,68729,25356
+59134,2600,3917
+59135,68409
+59136,46816,24306
+59137,79136
+59138,5405
+59139,8160
+59140,74431
+59141,45943,38683
+59142,63060
+59143,62291
+59144,75124
+59145,23015
+59146,10404
+59147,18925
+59148,69108
+59149,78699
+59150,11982
+59151,43374
+59152,72318
+59153,52391
+59154,5915
+59155,75684,42532
+59156,47809
+59157,16041
+59158,28323
+59159,9314
+59160,66120
+59161,61514,39602
+59162,71949,34105
+59163,24945
+59164,12638
+59165,26612
+59166,62834
+59167,41011
+59168,23552
+59169,18010,21829
+59170,70282
+59171,32198
+59172,69050
+59173,78598
+59174,67886
+59175,50472
+59176,26234
+59177,48371
+59178,33094
+59179,81985
+59180,27334
+59181,55302
+59182,20451
+59183,20585
+59184,47768
+59185,50257
+59186,15127
+59187,27765
+59188,59098
+59189,46490
+59190,52318
+59191,26373
+59192,49285
+59193,8148
+59194,34883,15457
+59195,79561,7260
+59196,35534
+59197,14630
+59198,69925
+59199,19439
+59200,31897
+59201,79370
+59202,76018
+59203,72134
+59204,5145
+59205,33264,16816
+59206,47598,59469
+59207,82112
+59208,22396
+59209,75510
+59210,23045
+59211,1249
+59212,39638,12842
+59213,6093
+59214,17356,54168
+59215,14710,51352
+59216,72061,15266
+59217,12001,21191
+59218,34725
+59219,63722
+59220,32502
+59221,75784,38127
+59222,57585
+59223,77246
+59224,14891,80474
+59225,2280
+59226,68060,27271
+59227,36948
+59228,7012
+59229,51676
+59230,11493
+59231,4724
+59232,52007
+59233,25928
+59234,15341
+59235,71670,5863
+59236,69525,24289
+59237,48246
+59238,23306
+59239,58022
+59240,53919
+59241,62165
+59242,4461
+59243,18657,34503
+59244,66527
+59245,41615
+59246,26246
+59247,76313,35548
+59248,42371
+59249,58506
+59250,21531
+59251,15841
+59252,26852,69065
+59253,44806,26836
+59254,24025
+59255,24639
+59256,10169,56199
+59257,72726
+59258,26041,74015
+59259,74881
+59260,13540,10108
+59261,41385
+59262,33871
+59263,79846
+59264,33613
+59265,21514
+59266,43437
+59267,59048
+59268,52588
+59269,30062
+59270,55333,15267
+59271,59563
+59272,26367
+59273,3545,25149
+59274,60100
+59275,34975
+59276,52337
+59277,69409,56858,33377
+59278,33512
+59279,79744
+59280,1215,32506
+59281,1238
+59282,38516
+59283,67886
+59284,38618
+59285,20955
+59286,30612
+59287,1806
+59288,66293,77125,22442
+59289,34900
+59290,832
+59291,2972
+59292,67472
+59293,31502
+59294,21017
+59295,63333
+59296,75006
+59297,75045
+59298,67207,33009
+59299,30452
+59300,35897
+59301,1352
+59302,40316
+59303,8717
+59304,35136,11750
+59305,81516
+59306,34499
+59307,29130
+59308,79744,14489
+59309,57869
+59310,73659
+59311,46127
+59312,32021
+59313,18047
+59314,38013,67133
+59315,70038
+59316,58369
+59317,41239
+59318,19070
+59319,72462
+59320,1384
+59321,29465
+59322,63218
+59323,847,35681
+59324,36954
+59325,67640
+59326,50059,40293
+59327,74695
+59328,61741
+59329,53246,67682
+59330,57515
+59331,79573
+59332,60910
+59333,47180
+59334,17382
+59335,44884,23917
+59336,8152
+59337,16479
+59338,45561
+59339,65674
+59340,36658
+59341,23946
+59342,15854
+59343,13976
+59344,22900
+59345,62326,31440
+59346,22080
+59347,27441
+59348,35697,34712
+59349,23834,32951,59479
+59350,45058
+59351,45799
+59352,7228
+59353,4666,72664
+59354,70686
+59355,72763
+59356,40203
+59357,72390
+59358,27977
+59359,4856
+59360,520,33588
+59361,24435
+59362,4316,60121
+59363,43045,55818
+59364,64743
+59365,53119
+59366,25378
+59367,44596
+59368,7728
+59369,32234
+59370,28848
+59371,54611
+59372,50039
+59373,42161,45218
+59374,43609
+59375,2176
+59376,36026
+59377,46974
+59378,30823
+59379,55314
+59380,69099
+59381,67433,23794
+59382,34046,59982
+59383,36731
+59384,43648
+59385,62851
+59386,61431
+59387,51429,7754
+59388,30965,6357
+59389,830
+59390,68960,57040
+59391,64829
+59392,57671
+59393,52632
+59394,72255
+59395,34178
+59396,50204
+59397,45049
+59398,48527
+59399,41195
+59400,67210
+59401,72059
+59402,62783,75739,43815
+59403,4444
+59404,29938
+59405,29731
+59406,36029
+59407,24
+59408,78514
+59409,49189,57298
+59410,34911
+59411,78509
+59412,70987
+59413,12479
+59414,21566
+59415,10506
+59416,7545
+59417,68877,53185
+59418,7793
+59419,77398,41825
+59420,1479
+59421,66176,51652
+59422,34635
+59423,20747,52430
+59424,77119
+59425,58875
+59426,10148
+59427,48418
+59428,62058,76781
+59429,2384
+59430,67674
+59431,1722
+59432,54704
+59433,22213
+59434,34347,26678
+59435,34712
+59436,32126
+59437,4082
+59438,31454,26564
+59439,22821
+59440,23425
+59441,61796
+59442,73040
+59443,77711
+59444,58210
+59445,25924
+59446,49067,17075
+59447,57445
+59448,722
+59449,67839
+59450,68698
+59451,47022,60874
+59452,59397
+59453,74654
+59454,30162
+59455,24158,80713
+59456,11248,48238
+59457,82094
+59458,70332
+59459,30705
+59460,72284
+59461,62820
+59462,67443
+59463,1486
+59464,8855
+59465,34613,53854
+59466,8713
+59467,8491
+59468,24720,54236
+59469,58281
+59470,13813
+59471,70173
+59472,78809
+59473,79762
+59474,71185,77231
+59475,21192
+59476,37340,41468
+59477,51088
+59478,6793
+59479,10969
+59480,13437
+59481,28925
+59482,41860
+59483,54538
+59484,20084
+59485,50226
+59486,16998
+59487,10992
+59488,66770
+59489,38855,1709,3824
+59490,42078,57670
+59491,56380
+59492,78128
+59493,2757
+59494,17492
+59495,14308,23894
+59496,48715
+59497,803
+59498,42610
+59499,13287
+59500,8289
+59501,22133
+59502,25297,31564
+59503,8907
+59504,53273
+59505,76333
+59506,71324
+59507,7322,12528
+59508,18648
+59509,52167
+59510,49831
+59511,59393
+59512,59487,1122
+59513,59011,17185
+59514,10542
+59515,43532,51799
+59516,75456,18307
+59517,69681
+59518,72524
+59519,72883
+59520,2591,81962
+59521,61493,80351
+59522,22150
+59523,81087
+59524,46770
+59525,12291
+59526,53139,63346
+59527,24958
+59528,39676
+59529,63169
+59530,75927
+59531,74555
+59532,22791,24225
+59533,42053
+59534,81352
+59535,72066
+59536,38108
+59537,38476,40918
+59538,58795,51466
+59539,42849
+59540,64420
+59541,49707
+59542,78889
+59543,16571
+59544,3327
+59545,65657
+59546,498
+59547,29494,71784,25351
+59548,19281,16984
+59549,56590
+59550,45082
+59551,77610
+59552,8542
+59553,9860
+59554,15987
+59555,65697
+59556,65822,43023,66914
+59557,28797
+59558,13868
+59559,16866
+59560,6758
+59561,12858
+59562,17616
+59563,1227
+59564,36201
+59565,65568
+59566,49810
+59567,4228
+59568,3355
+59569,51794
+59570,78861
+59571,12194
+59572,20018
+59573,48394
+59574,80501
+59575,56917
+59576,7608
+59577,63432,36056,50099
+59578,43371
+59579,24268,47228
+59580,9764
+59581,58468
+59582,40616,45106
+59583,22276
+59584,78085,70987
+59585,40340
+59586,27185
+59587,48540,63864,64147
+59588,36845
+59589,62253
+59590,66517
+59591,46794
+59592,45841
+59593,14387
+59594,45960
+59595,36079
+59596,61634
+59597,59612
+59598,23770
+59599,197,45845
+59600,43795
+59601,9095,43197
+59602,46751
+59603,61785
+59604,58854,77004
+59605,74902
+59606,65247,6983
+59607,23505
+59608,16717
+59609,12198
+59610,10606
+59611,4737
+59612,78386
+59613,42567
+59614,32689
+59615,38642
+59616,72401,11357
+59617,37689
+59618,78499
+59619,74626
+59620,60119
+59621,12172
+59622,68284
+59623,72064
+59624,47848
+59625,62900
+59626,68411
+59627,32509
+59628,40079
+59629,809
+59630,73026
+59631,47139
+59632,355
+59633,57004,53013
+59634,6083
+59635,26534
+59636,13264
+59637,11762
+59638,41061,32949,59537
+59639,19448
+59640,79303
+59641,40890
+59642,36892
+59643,33380
+59644,72542
+59645,16716
+59646,77047
+59647,58506
+59648,62073,31281
+59649,54069
+59650,36624
+59651,37432
+59652,49625
+59653,35101
+59654,43896
+59655,30774
+59656,22462
+59657,63525
+59658,54736
+59659,39269
+59660,30414
+59661,22404
+59662,50058
+59663,33039
+59664,7071
+59665,9457
+59666,69219
+59667,53779
+59668,74707
+59669,75132
+59670,36726
+59671,78267
+59672,20002
+59673,40234,12769
+59674,47256
+59675,28751
+59676,35933
+59677,49516
+59678,62301
+59679,3737
+59680,69219
+59681,17148
+59682,1204
+59683,75416
+59684,49525
+59685,6590,44980
+59686,32029
+59687,77569
+59688,9151,49943
+59689,34770
+59690,35292
+59691,21518
+59692,9059
+59693,42371
+59694,69585
+59695,41807
+59696,38378
+59697,65556
+59698,74107,80824
+59699,60426,50684
+59700,25038
+59701,63274
+59702,30687
+59703,23306
+59704,57696
+59705,13724
+59706,28159
+59707,33778,31060
+59708,34
+59709,70488
+59710,44630
+59711,46316
+59712,67345
+59713,14636
+59714,6198
+59715,4877
+59716,49974
+59717,881,65548
+59718,68348
+59719,77065
+59720,16724,65795
+59721,65602
+59722,61208
+59723,77898
+59724,54454
+59725,3564,41098,53426
+59726,23874
+59727,24245
+59728,56463
+59729,48245,137
+59730,44048
+59731,54197
+59732,36954
+59733,70034
+59734,17504
+59735,60463
+59736,17802,50911
+59737,4191
+59738,3745
+59739,54742
+59740,66236
+59741,80937
+59742,1248
+59743,34280,40422
+59744,11443
+59745,13821,75453
+59746,55499
+59747,51858,33235
+59748,24361
+59749,962,47816,5332
+59750,41868
+59751,63949
+59752,56918
+59753,19956,41501
+59754,77894
+59755,42302
+59756,52876
+59757,46853
+59758,51720
+59759,25053
+59760,41291
+59761,35096
+59762,72854,14940
+59763,71172
+59764,76931
+59765,26035
+59766,75702
+59767,81988
+59768,36716
+59769,47768
+59770,52826,77473
+59771,50979
+59772,20724
+59773,33096
+59774,2376
+59775,13098
+59776,81927
+59777,79213
+59778,40794
+59779,40578
+59780,67236
+59781,19421
+59782,42753
+59783,56798
+59784,40848
+59785,24121,76297
+59786,32248,16871
+59787,5647
+59788,35415,57202
+59789,8675
+59790,372
+59791,58290
+59792,66549,50958
+59793,78481
+59794,81474
+59795,42702
+59796,31608
+59797,10934
+59798,1525
+59799,51643
+59800,76940
+59801,19172
+59802,40822,10199
+59803,849,15620
+59804,78574
+59805,67714,20012,73431
+59806,22420
+59807,62921
+59808,834,43648
+59809,47167
+59810,27460,62243
+59811,60681
+59812,30397
+59813,5376
+59814,19878
+59815,6238,68085
+59816,72855
+59817,59614,32926,13757
+59818,26012
+59819,16479
+59820,34691
+59821,48607
+59822,45124
+59823,45814
+59824,27625
+59825,36667
+59826,13604,11096
+59827,50649
+59828,16282
+59829,11148
+59830,81432
+59831,38433
+59832,73605
+59833,75302
+59834,35759,54392,36105,61610
+59835,26186
+59836,65742
+59837,78048
+59838,77255
+59839,74952,33361
+59840,54088
+59841,10795
+59842,37046
+59843,27094
+59844,78400
+59845,61547
+59846,42081,78935
+59847,5460
+59848,78028
+59849,69590
+59850,79384
+59851,46977
+59852,63927
+59853,19678
+59854,81610
+59855,69543
+59856,72381
+59857,46900
+59858,25755
+59859,33864
+59860,51560
+59861,66241
+59862,77952
+59863,30933
+59864,49102,61236,49843
+59865,55846,35827
+59866,81045
+59867,3059,7537
+59868,16978
+59869,63463
+59870,67693
+59871,43648
+59872,55135
+59873,4106
+59874,17668
+59875,19810
+59876,10882,70119
+59877,28826
+59878,41135
+59879,24729
+59880,79078
+59881,35992
+59882,41646
+59883,49166
+59884,70646
+59885,45526,39426
+59886,53282
+59887,31298
+59888,4766
+59889,80766
+59890,52517
+59891,69889
+59892,53614,61694
+59893,2751
+59894,71791
+59895,43157
+59896,21490
+59897,7013
+59898,16519
+59899,27510
+59900,69614
+59901,37152
+59902,53001
+59903,19470
+59904,44736
+59905,40912
+59906,34617
+59907,18251
+59908,48774
+59909,21816
+59910,26367
+59911,65662,72631
+59912,64064
+59913,51167
+59914,5591
+59915,50754
+59916,4038
+59917,17864
+59918,36175
+59919,33938
+59920,46223
+59921,27384
+59922,13118,30549
+59923,8866
+59924,31168
+59925,43559
+59926,80093
+59927,73203
+59928,23193
+59929,67734
+59930,41424
+59931,19796
+59932,43704
+59933,74701
+59934,14693
+59935,40950
+59936,38774
+59937,22035
+59938,4733
+59939,27359
+59940,29710
+59941,26309
+59942,19727
+59943,26882
+59944,73485
+59945,55668
+59946,61357
+59947,58284
+59948,66025
+59949,25480
+59950,11310
+59951,75585
+59952,27909
+59953,63372,78525
+59954,27341
+59955,81446
+59956,60825
+59957,1944
+59958,75702
+59959,77967
+59960,43963
+59961,46916
+59962,31901
+59963,13177
+59964,31171
+59965,78174
+59966,14205
+59967,9256,81662
+59968,19539
+59969,22707
+59970,48631,65829
+59971,21791
+59972,50413
+59973,61545,34354
+59974,20850,56615
+59975,75294
+59976,56384
+59977,43736
+59978,60122
+59979,72426
+59980,42761
+59981,69712
+59982,32340,75754
+59983,78827
+59984,23050,1160
+59985,68289
+59986,32448
+59987,78520
+59988,36458
+59989,45158
+59990,37660
+59991,51899
+59992,13983
+59993,71434
+59994,50751
+59995,27099
+59996,78630
+59997,29269
+59998,24877,70953
+59999,13967
+60000,49289
+60001,74462
+60002,72337
+60003,23909
+60004,28327,69124,5049,69332
+60005,41872
+60006,11480
+60007,58104
+60008,69126
+60009,17952
+60010,56269
+60011,24492
+60012,22677
+60013,3850
+60014,43583,17638
+60015,64774
+60016,23496,66894
+60017,30698
+60018,51943
+60019,65516
+60020,58537
+60021,26446
+60022,43797,63751
+60023,24
+60024,30556
+60025,40371,13533
+60026,6164,47124
+60027,20960
+60028,47018
+60029,79102
+60030,72886
+60031,44559
+60032,68031,81809
+60033,7893
+60034,76935
+60035,78002
+60036,75639
+60037,81676
+60038,60923
+60039,57590
+60040,24835
+60041,79462,381
+60042,6256
+60043,16775
+60044,2278
+60045,43692
+60046,18375,58889
+60047,4524
+60048,54347,44287,8024
+60049,5743
+60050,24369,55681
+60051,44172
+60052,2519
+60053,1118
+60054,55139
+60055,78598
+60056,36465
+60057,61826
+60058,42247
+60059,57260
+60060,48996
+60061,74600
+60062,78471
+60063,74159
+60064,28680
+60065,19308,61014
+60066,32687,73941
+60067,54325
+60068,75906
+60069,2542
+60070,57710
+60071,551
+60072,10063
+60073,27121
+60074,40110
+60075,4706
+60076,3128
+60077,41334
+60078,66505
+60079,53571
+60080,61504
+60081,34145
+60082,2073,53366
+60083,29365
+60084,77306
+60085,30072
+60086,30934
+60087,13449
+60088,47995,63092
+60089,66131
+60090,69369
+60091,60791
+60092,76778
+60093,50522
+60094,34579
+60095,55865
+60096,74934
+60097,67417,66051
+60098,69665,50386
+60099,673
+60100,50837
+60101,30651
+60102,69432
+60103,26359
+60104,55331
+60105,3668
+60106,60170,41846
+60107,43929
+60108,47789
+60109,43720
+60110,21957
+60111,15871
+60112,68584
+60113,26797
+60114,35696
+60115,46654
+60116,59733
+60117,82142
+60118,78402
+60119,7440,49206
+60120,43774
+60121,12131,60535
+60122,31154
+60123,58186
+60124,50296
+60125,52080
+60126,67814
+60127,52014
+60128,4927
+60129,16225
+60130,10041
+60131,18740
+60132,48236,782
+60133,3927
+60134,51754
+60135,17934,44353
+60136,32540
+60137,27187
+60138,12521,3086,65440,73759
+60139,14701
+60140,55664
+60141,19475,42130
+60142,79527
+60143,8538
+60144,17310,40946
+60145,50938
+60146,57766
+60147,65927
+60148,40103
+60149,48282
+60150,20906,19002
+60151,16931,57667
+60152,38007,62810
+60153,24845
+60154,60525
+60155,30056
+60156,43624
+60157,14075
+60158,78624
+60159,40198
+60160,9923,77119
+60161,27558
+60162,30624
+60163,23325
+60164,29498
+60165,26963
+60166,57549
+60167,33956,64406
+60168,4052
+60169,72003
+60170,80149
+60171,27682
+60172,79717
+60173,29983
+60174,17299
+60175,24803
+60176,22914
+60177,21537
+60178,51252,780
+60179,29151
+60180,54746
+60181,17960
+60182,51962,16988
+60183,55962
+60184,52284
+60185,70376,30232
+60186,36697
+60187,15530
+60188,56122,79335
+60189,21261
+60190,47152
+60191,18541
+60192,18381
+60193,21916
+60194,2469
+60195,65507
+60196,68229
+60197,14593
+60198,3912
+60199,36779
+60200,27928,41793
+60201,58591
+60202,54686
+60203,56275
+60204,18597
+60205,59290
+60206,78365
+60207,46898
+60208,76092
+60209,47979
+60210,64795
+60211,46788
+60212,2260
+60213,47131
+60214,12639
+60215,11095,14819
+60216,73524
+60217,79200
+60218,78525
+60219,72902
+60220,38328
+60221,26145
+60222,62613
+60223,20986
+60224,68940
+60225,26934
+60226,9241
+60227,47982
+60228,59396
+60229,55585
+60230,44745
+60231,79814
+60232,7514
+60233,15606
+60234,68357
+60235,32023
+60236,30728
+60237,40692
+60238,76167
+60239,16263
+60240,45615,69034
+60241,62347
+60242,39700
+60243,65453
+60244,59414
+60245,61036
+60246,7878
+60247,53076
+60248,11077
+60249,23831
+60250,68126,27107
+60251,26005
+60252,73777,19647
+60253,23001
+60254,11396
+60255,34451,46281
+60256,77229,8152
+60257,24419,73255,22270
+60258,5729
+60259,1909
+60260,4415
+60261,2253
+60262,14981,16579
+60263,25120
+60264,44494
+60265,49093
+60266,12468
+60267,58582
+60268,5215
+60269,11092
+60270,1546
+60271,25539
+60272,63527
+60273,51176
+60274,67374,57957
+60275,80184,17413
+60276,66583
+60277,53150
+60278,37029,70544
+60279,17936
+60280,12279
+60281,38278
+60282,75419,29820
+60283,8932
+60284,13645
+60285,70517
+60286,65125,68426
+60287,20276
+60288,76337,18379,52510
+60289,58879
+60290,78000
+60291,55516,25277
+60292,25431,49974,6385
+60293,59597
+60294,65754
+60295,50464
+60296,55226,19014
+60297,1491
+60298,442
+60299,59072
+60300,79851
+60301,30118
+60302,24111
+60303,28764,32812
+60304,18519,58631
+60305,64740
+60306,60284
+60307,81258,19208
+60308,81280
+60309,70329,17029
+60310,53390
+60311,28703,73525
+60312,70737,18836
+60313,61872
+60314,54160
+60315,63384
+60316,3674
+60317,76343
+60318,79902
+60319,59005
+60320,39734
+60321,2777
+60322,29610
+60323,41230
+60324,32770
+60325,56652
+60326,14079,74731
+60327,22052
+60328,48542
+60329,62099,45166
+60330,16751
+60331,15076
+60332,16961
+60333,22912
+60334,14945
+60335,69904
+60336,61310
+60337,60126
+60338,58722,8122
+60339,29042
+60340,40758
+60341,77265
+60342,10180
+60343,2970
+60344,80210
+60345,62613
+60346,78404
+60347,62131
+60348,32218
+60349,8694
+60350,71846
+60351,39519,57123
+60352,51389,24249,39174
+60353,80757
+60354,11007
+60355,20308,6827
+60356,54537,15517
+60357,52031
+60358,27096,18471
+60359,36161,17499
+60360,26728
+60361,774
+60362,40406,26635
+60363,27962,47773
+60364,54840
+60365,21909
+60366,24027
+60367,65095
+60368,29856
+60369,56407
+60370,15076
+60371,14112,56469
+60372,69485
+60373,2935
+60374,30933
+60375,36977,67296
+60376,22789
+60377,59737
+60378,67339,24214,63487
+60379,62951
+60380,43674
+60381,10671
+60382,20886
+60383,34499
+60384,52211
+60385,3554,4410
+60386,2621
+60387,45360,36511
+60388,783
+60389,7518
+60390,871
+60391,33875
+60392,16674
+60393,25835
+60394,51252
+60395,30657
+60396,1793
+60397,76917
+60398,37367
+60399,64616
+60400,58255
+60401,68022
+60402,19840,61704
+60403,59910
+60404,54009
+60405,70091
+60406,49631
+60407,3797,27568
+60408,5274,67242,6670
+60409,21242
+60410,11480
+60411,45656
+60412,4809,26623
+60413,46190
+60414,23330
+60415,50577
+60416,79651
+60417,47685
+60418,11425
+60419,14256
+60420,57494
+60421,27543
+60422,54058,79536
+60423,19536,68303,80497
+60424,70286
+60425,41087
+60426,12584
+60427,36922
+60428,23361
+60429,80750
+60430,61797
+60431,57577
+60432,41230
+60433,25356
+60434,35670,21608
+60435,27924
+60436,23279
+60437,40624
+60438,53618
+60439,22784
+60440,4358,81948
+60441,4959
+60442,3884
+60443,26418
+60444,2917
+60445,30805
+60446,35593
+60447,56832,10673
+60448,12937
+60449,6384
+60450,60623,62450,45493
+60451,78645
+60452,81336
+60453,33612
+60454,19168
+60455,14940
+60456,72616
+60457,42348
+60458,75631
+60459,10745
+60460,26769
+60461,71489
+60462,48013,80888
+60463,72173
+60464,12472
+60465,21904,64714
+60466,42880,45861
+60467,77428
+60468,37884
+60469,17010
+60470,76308
+60471,47634
+60472,524
+60473,51373
+60474,8005
+60475,42095,48597
+60476,74979
+60477,5536,22668
+60478,41776,6961
+60479,17542
+60480,33437
+60481,42399
+60482,46215
+60483,11408
+60484,28196
+60485,6226
+60486,30505
+60487,25211
+60488,78350,23112
+60489,50246
+60490,49183
+60491,41209
+60492,1363
+60493,58449
+60494,21131
+60495,68525
+60496,78716,37427
+60497,61125,19949
+60498,12395
+60499,66746
+60500,16514
+60501,66467
+60502,54005
+60503,72746
+60504,70600
+60505,77580
+60506,68281
+60507,50515
+60508,21685
+60509,32149,61960
+60510,76177
+60511,10993
+60512,37082
+60513,1323
+60514,48485
+60515,60637,57783
+60516,1702,4655
+60517,16386
+60518,70652,24072
+60519,34104
+60520,37491
+60521,48216
+60522,47897
+60523,49303
+60524,45289
+60525,33980
+60526,78741
+60527,49091,23263
+60528,66871,72465
+60529,30111,67849,81481,50526
+60530,66313
+60531,52605
+60532,18172
+60533,60136,41939
+60534,40284
+60535,35554
+60536,55465
+60537,55629
+60538,28635
+60539,77460
+60540,48803
+60541,35941
+60542,31433
+60543,8054
+60544,25481
+60545,77324
+60546,60011
+60547,63725
+60548,37879
+60549,76476,35635
+60550,78404
+60551,28019
+60552,53273
+60553,19444
+60554,13968
+60555,47326,34170
+60556,59633
+60557,61960
+60558,65839
+60559,54023
+60560,53818
+60561,7267
+60562,80046
+60563,20640,78717
+60564,58522
+60565,37734
+60566,12732
+60567,9241,7834
+60568,27722
+60569,29332
+60570,49255,63910
+60571,79495
+60572,20524
+60573,69264
+60574,49362
+60575,64155
+60576,10501
+60577,12816
+60578,71237,38649
+60579,26168
+60580,11029,73972
+60581,60978
+60582,51522
+60583,2543
+60584,62361
+60585,74662
+60586,53160
+60587,65375
+60588,51010
+60589,44417,55290
+60590,72190,4790,4086
+60591,32723
+60592,37144,47343
+60593,18201,57113
+60594,8705
+60595,34985,64615
+60596,2041,31386,77585
+60597,39375
+60598,43335,73014
+60599,41068,13755
+60600,25764
+60601,40691,26440
+60602,40061
+60603,80974
+60604,71972
+60605,8123
+60606,57192
+60607,42250,25748
+60608,12912
+60609,50166
+60610,11505
+60611,49316
+60612,14930
+60613,32788
+60614,70845
+60615,69753
+60616,79619
+60617,75386
+60618,12327
+60619,59919
+60620,28178
+60621,64167,53585
+60622,66303
+60623,64089
+60624,20223
+60625,77330,40753
+60626,60068
+60627,11391
+60628,26562
+60629,19934
+60630,52012
+60631,34320
+60632,67996
+60633,35952,15194
+60634,68692
+60635,18569
+60636,47919
+60637,79150,38961
+60638,14129
+60639,67238
+60640,62447
+60641,72500
+60642,5809
+60643,20134,53969
+60644,18349
+60645,19982
+60646,75102
+60647,33944
+60648,28095,59525
+60649,79819
+60650,39196
+60651,19290
+60652,55027
+60653,15458
+60654,52404
+60655,69392
+60656,30714
+60657,70855
+60658,23356
+60659,66194
+60660,75384,37032
+60661,73555
+60662,42234
+60663,1099
+60664,74532
+60665,48453,19742
+60666,66675
+60667,24766
+60668,77045
+60669,58746
+60670,16079
+60671,78075
+60672,51386
+60673,28613
+60674,23654
+60675,79980
+60676,27920
+60677,2282
+60678,32247
+60679,54938
+60680,47830
+60681,50741
+60682,23526
+60683,13786,1777
+60684,4332
+60685,12833,20621
+60686,37788
+60687,13842
+60688,55337
+60689,16569,30995
+60690,43796
+60691,42767
+60692,68682
+60693,43432
+60694,62347
+60695,39704
+60696,550
+60697,19745
+60698,78657
+60699,33566
+60700,60952
+60701,51041
+60702,61051
+60703,33799
+60704,58320
+60705,15833,48875
+60706,15470
+60707,41213
+60708,33208
+60709,69714,57307
+60710,31570
+60711,19542
+60712,7120
+60713,60826
+60714,78043
+60715,78439
+60716,60295
+60717,29465
+60718,60896
+60719,53738
+60720,25294
+60721,759
+60722,64496
+60723,53524
+60724,57755
+60725,65770
+60726,34354
+60727,70837
+60728,69327
+60729,62749,1399,49224
+60730,38207
+60731,6353
+60732,4258
+60733,47830,62597
+60734,15046
+60735,50901
+60736,34436
+60737,79035
+60738,46742
+60739,1536
+60740,57856
+60741,71814,42417
+60742,51114
+60743,7249
+60744,14150
+60745,77161
+60746,72508
+60747,64149
+60748,36807
+60749,69019
+60750,30000
+60751,26489
+60752,67603
+60753,20944
+60754,24844,80856
+60755,70161
+60756,20830
+60757,41247
+60758,69109
+60759,31026,7960,12326
+60760,61071
+60761,43084
+60762,14241,80511,81662
+60763,66000
+60764,18362,20876
+60765,32638
+60766,71195
+60767,74312
+60768,46225
+60769,26202
+60770,50248
+60771,63732,20981
+60772,5301,55682
+60773,59740
+60774,73322
+60775,11717
+60776,21853
+60777,20854
+60778,33733,42955
+60779,65597
+60780,10005
+60781,39734
+60782,20646,29403
+60783,66564
+60784,19776,60483
+60785,30452
+60786,16866
+60787,7586
+60788,25782
+60789,71838
+60790,55210
+60791,56381
+60792,33466,3467
+60793,41140
+60794,29949,67499
+60795,17097
+60796,6409
+60797,66196
+60798,27256
+60799,30034
+60800,29075
+60801,32021
+60802,44566
+60803,69035
+60804,12607
+60805,2473
+60806,47624
+60807,73423
+60808,65600,42838
+60809,33305
+60810,36354
+60811,25040
+60812,58507
+60813,19875
+60814,64812
+60815,15514
+60816,39609
+60817,58631
+60818,53390
+60819,58311,14539
+60820,71524
+60821,23049
+60822,51582
+60823,31663
+60824,65526
+60825,1657
+60826,11632
+60827,59484,27559
+60828,20589
+60829,22945
+60830,64273
+60831,48629
+60832,19360
+60833,75020
+60834,44293
+60835,46703
+60836,35315
+60837,16126
+60838,22496
+60839,75864
+60840,22495
+60841,71913
+60842,9004
+60843,1241
+60844,59080
+60845,69285
+60846,19021
+60847,28096
+60848,43732
+60849,33359,57446
+60850,56077
+60851,41612,28647
+60852,22673
+60853,61837
+60854,51313
+60855,12508
+60856,69305
+60857,58507
+60858,39901,26371
+60859,35532
+60860,45689
+60861,40099
+60862,4288,28483,74152
+60863,60810
+60864,39897
+60865,49482
+60866,70784
+60867,78227
+60868,33514,23651
+60869,4284
+60870,908
+60871,17902
+60872,53043
+60873,5900,79521,37569
+60874,63988
+60875,46558
+60876,29904
+60877,49827
+60878,40042
+60879,16939
+60880,586
+60881,55008
+60882,9442
+60883,65860
+60884,45401,1714
+60885,35029
+60886,72587,60734
+60887,48400,8128
+60888,42758
+60889,75280
+60890,31066
+60891,53515
+60892,28200
+60893,54063
+60894,78141
+60895,68588,77868
+60896,25739
+60897,62893
+60898,20651
+60899,72041
+60900,48972,9546
+60901,43416
+60902,57235
+60903,25160
+60904,17225
+60905,41944,49842
+60906,18684
+60907,48139
+60908,61132,29983,15087
+60909,23782,35024,74985
+60910,37935
+60911,39543,61547,20780
+60912,18157
+60913,50506
+60914,16123
+60915,30568,6033
+60916,63878
+60917,2241
+60918,50413,23141
+60919,71262
+60920,7661
+60921,20814
+60922,49195
+60923,41035
+60924,59192
+60925,68360
+60926,47469
+60927,78422
+60928,6038
+60929,35466
+60930,45619
+60931,24621
+60932,28870
+60933,4627
+60934,23610
+60935,70262
+60936,41403
+60937,48776
+60938,47060
+60939,42910
+60940,32943,70032
+60941,62417,60502,40701
+60942,2613,34051
+60943,66811
+60944,32481
+60945,80714
+60946,81322
+60947,38750
+60948,20294
+60949,23626
+60950,29100,11358
+60951,14889
+60952,73546
+60953,3187
+60954,78056
+60955,54584
+60956,15580
+60957,21478
+60958,78631
+60959,3710,40126
+60960,39520
+60961,1122
+60962,62676,67901
+60963,34768
+60964,79851
+60965,33757,80779
+60966,17063
+60967,18455
+60968,69810
+60969,19932
+60970,1126
+60971,44816
+60972,41413
+60973,26127,45916
+60974,38923
+60975,16291,5103
+60976,43785
+60977,31440
+60978,2334
+60979,80760,78521
+60980,3311,69642,773,40105,64064,47359
+60981,44136,63144
+60982,7703
+60983,24630
+60984,8173,4870
+60985,53362,16714
+60986,77757
+60987,68532
+60988,41718
+60989,13140
+60990,31359,29959
+60991,23918,39849
+60992,48300
+60993,177
+60994,52745
+60995,42857
+60996,64573
+60997,68392
+60998,39485
+60999,61530
+61000,48597
+61001,21264
+61002,5517,11519
+61003,56921,56888
+61004,50178
+61005,80506
+61006,51965
+61007,53729,58472
+61008,10819
+61009,2145
+61010,18205
+61011,73344
+61012,8183
+61013,80301
+61014,23146
+61015,73007
+61016,62170
+61017,45146
+61018,34471
+61019,60099,47511
+61020,78601
+61021,53868
+61022,69878
+61023,30487
+61024,20883
+61025,336
+61026,1280
+61027,61922
+61028,34449
+61029,1227
+61030,81845
+61031,73463
+61032,28265
+61033,5230
+61034,56735
+61035,31445
+61036,81875,23007
+61037,75768
+61038,44630
+61039,55622
+61040,22394
+61041,36834
+61042,33927
+61043,9424
+61044,16405
+61045,35864,43445,3096
+61046,70517
+61047,21664,3032
+61048,50458
+61049,6041,67558,27047
+61050,4743
+61051,41895
+61052,71977
+61053,18270
+61054,28507
+61055,5294
+61056,47636,20298
+61057,24483
+61058,62772,35744
+61059,62776
+61060,54806
+61061,49562
+61062,79848
+61063,69330
+61064,51853
+61065,72841
+61066,4397
+61067,15499
+61068,3405
+61069,18013
+61070,72390
+61071,69717
+61072,50087
+61073,81443
+61074,47198,17288
+61075,77921
+61076,69356
+61077,36652
+61078,35170,4066,38670
+61079,65886,48587,39157
+61080,73927,56978
+61081,17715
+61082,30719
+61083,32077
+61084,45703,33435
+61085,79099,47684
+61086,4754
+61087,1859
+61088,13271
+61089,10891
+61090,15316
+61091,69717
+61092,9600
+61093,12965
+61094,22505
+61095,75936,9133
+61096,66045
+61097,18038,72266
+61098,19212,8570
+61099,55577,921,28651
+61100,63749
+61101,72533
+61102,54514
+61103,20343
+61104,29025
+61105,3739
+61106,72984
+61107,42182,21788
+61108,34783
+61109,33091
+61110,43964
+61111,79778,31796
+61112,9710
+61113,61168
+61114,64639
+61115,73425,76769,36162
+61116,14489
+61117,65778
+61118,3652
+61119,38987
+61120,77712
+61121,58053,36025
+61122,22689
+61123,37914
+61124,27458,59154
+61125,25013
+61126,76755,11671
+61127,35478
+61128,13168
+61129,41807
+61130,60996
+61131,68398
+61132,34430
+61133,842
+61134,56397
+61135,54144
+61136,59144
+61137,9084
+61138,39625,66254
+61139,15706
+61140,47464
+61141,17606
+61142,60054
+61143,65477,16582,66055
+61144,59364
+61145,68310
+61146,62977,37569
+61147,74006
+61148,56105
+61149,13193
+61150,25275
+61151,55755
+61152,38291
+61153,46849,6579,37847
+61154,63102
+61155,8080,38400
+61156,17009
+61157,26641
+61158,44878
+61159,49334
+61160,12228
+61161,33830
+61162,25784
+61163,79440
+61164,5349
+61165,61599
+61166,77841
+61167,11120
+61168,67537
+61169,30958
+61170,74972
+61171,63549
+61172,57104
+61173,10942
+61174,23478
+61175,26130
+61176,14953
+61177,9472
+61178,2237
+61179,834
+61180,60852
+61181,40590
+61182,72240
+61183,5881
+61184,80236
+61185,47111
+61186,43555
+61187,38143
+61188,52364
+61189,50574
+61190,72646
+61191,75268
+61192,5034,4620,15124,47028
+61193,18522,57848
+61194,21372
+61195,81516
+61196,9826,45535
+61197,15520
+61198,18637
+61199,59910
+61200,44652
+61201,29019
+61202,20349
+61203,11970,5602
+61204,33880
+61205,9314
+61206,56071
+61207,69955
+61208,12131
+61209,62940
+61210,27949
+61211,4713
+61212,23607
+61213,58186
+61214,54386,81378,39926
+61215,73789
+61216,74340
+61217,22823
+61218,37508,60356,13233
+61219,5420
+61220,65351,20168
+61221,47458,64063
+61222,78471
+61223,71362
+61224,38735
+61225,71407
+61226,73068,56449
+61227,49180
+61228,4822
+61229,42961
+61230,14051
+61231,38156
+61232,23734
+61233,74670,70803
+61234,3956
+61235,54627,3858,54439
+61236,42255
+61237,33208
+61238,4162
+61239,73321
+61240,22557
+61241,723,70438
+61242,19840,19472
+61243,13473,32995
+61244,11074
+61245,64801,76560
+61246,59525
+61247,4568
+61248,3609
+61249,50028
+61250,7661
+61251,5631
+61252,49839
+61253,57582
+61254,44962
+61255,27572
+61256,80267,55328
+61257,59082
+61258,71369
+61259,9399
+61260,37535
+61261,23957
+61262,68560
+61263,48416
+61264,3538
+61265,3043,37396
+61266,29441
+61267,45993
+61268,42543
+61269,69253
+61270,36144
+61271,75008,46113
+61272,69981
+61273,54147
+61274,37560
+61275,38597
+61276,52889
+61277,11436
+61278,17145
+61279,57019
+61280,75882
+61281,53750
+61282,3570
+61283,20982,65601,31124
+61284,26970
+61285,80831
+61286,38070
+61287,42207
+61288,18920
+61289,54426
+61290,59918
+61291,38318,67646,53004
+61292,63545
+61293,41874,2209
+61294,61232,39816
+61295,59667
+61296,1754
+61297,65099
+61298,79973
+61299,58941
+61300,8150
+61301,14310
+61302,69817
+61303,16569,73494
+61304,73298
+61305,44212,76716
+61306,10003
+61307,17066,22689
+61308,82151
+61309,9321
+61310,27766
+61311,15316
+61312,56178,32675
+61313,27083
+61314,22601
+61315,44287
+61316,15843
+61317,2532
+61318,24917
+61319,60918
+61320,35740,57582
+61321,69900
+61322,48212
+61323,20051
+61324,66135
+61325,6833,79083
+61326,17250
+61327,28693
+61328,39792
+61329,73578
+61330,61310
+61331,42537
+61332,67166
+61333,11141
+61334,80422
+61335,41323,1065
+61336,4810,63399
+61337,31497
+61338,70071,33388
+61339,71798
+61340,1962
+61341,70770
+61342,74458
+61343,60526,10680
+61344,17464,76991
+61345,46909,4139
+61346,6845
+61347,7243
+61348,52257
+61349,22806
+61350,43246,70619
+61351,39614
+61352,3453
+61353,19604
+61354,34428
+61355,6970
+61356,57353
+61357,63639
+61358,61081
+61359,3311
+61360,19925
+61361,17438
+61362,17521,27585
+61363,54910
+61364,64531
+61365,254
+61366,59366
+61367,33631
+61368,24619
+61369,80978
+61370,12582,24941
+61371,79645
+61372,58517
+61373,17241
+61374,23134
+61375,78040
+61376,78058
+61377,61769
+61378,13045
+61379,77303,29767
+61380,29883
+61381,4216,43202
+61382,25935
+61383,33061
+61384,69485
+61385,29725
+61386,52099
+61387,2611
+61388,45140
+61389,28677
+61390,22649
+61391,48647
+61392,77231
+61393,18748
+61394,33389
+61395,4081
+61396,5662
+61397,20575
+61398,68584
+61399,67074
+61400,12395
+61401,70723
+61402,22412
+61403,38479
+61404,51466
+61405,54684,58510
+61406,7050,63852
+61407,61194
+61408,1154
+61409,2159
+61410,20854
+61411,77072
+61412,13347,77708
+61413,65537,6319
+61414,48301
+61415,30442,74504,55402
+61416,53699,13934
+61417,47580
+61418,38479
+61419,71032
+61420,68553
+61421,45102
+61422,63747
+61423,38047
+61424,5031
+61425,67733
+61426,78237
+61427,45449
+61428,43972
+61429,32254
+61430,16952
+61431,792
+61432,49392
+61433,76853
+61434,10897
+61435,60357
+61436,56965
+61437,77962
+61438,18401,10052
+61439,78383
+61440,25259
+61441,69125
+61442,52238
+61443,80659
+61444,8440
+61445,69244
+61446,41187
+61447,57037
+61448,31321
+61449,29772
+61450,8149
+61451,19269
+61452,58047
+61453,23192
+61454,74479
+61455,79115,60664
+61456,3538
+61457,18295
+61458,17758
+61459,16208,45554,70051
+61460,37456
+61461,45064,6172,62323
+61462,27217
+61463,36797
+61464,56846,12030
+61465,5163,36603,1722
+61466,51432
+61467,15595
+61468,13765
+61469,27980
+61470,72798,28130
+61471,59733
+61472,60429
+61473,7403
+61474,19850
+61475,18131
+61476,79579
+61477,19444,70195,73823
+61478,36882
+61479,58534,2685
+61480,39404,72998
+61481,3069,43363
+61482,62256
+61483,64162
+61484,66131
+61485,25105
+61486,58221
+61487,70321
+61488,49492
+61489,12730,29489
+61490,40665
+61491,20597,60978
+61492,17413
+61493,63713
+61494,1979
+61495,68442
+61496,19765
+61497,20263
+61498,63976,66234,40134
+61499,58800
+61500,74503
+61501,47293
+61502,27256
+61503,45252
+61504,636,24650
+61505,74343
+61506,40872
+61507,41844
+61508,3035
+61509,64660
+61510,44630
+61511,50478
+61512,65451
+61513,2539
+61514,51583
+61515,11027
+61516,43165,25059
+61517,25921
+61518,5770
+61519,70056
+61520,70210,999
+61521,46945,52728
+61522,30797
+61523,51326
+61524,63192
+61525,47758
+61526,10965
+61527,61665,3652
+61528,66496
+61529,71352
+61530,42432
+61531,43043
+61532,5385
+61533,48364
+61534,56636
+61535,7203
+61536,72524
+61537,31226
+61538,12498,61854,19668
+61539,40592
+61540,53860
+61541,45833
+61542,39515
+61543,16372
+61544,40103
+61545,61063,21835
+61546,61241
+61547,33446
+61548,32158
+61549,75012
+61550,40511
+61551,6
+61552,82045,21392,73646
+61553,75991
+61554,9770
+61555,79417
+61556,27950
+61557,68575
+61558,4801,21835
+61559,5459,33583
+61560,23872
+61561,78505,23607
+61562,54981
+61563,20349
+61564,66567
+61565,7824
+61566,78033,40700
+61567,2249
+61568,49368
+61569,67196,68875
+61570,56502
+61571,69413
+61572,68473
+61573,39606
+61574,31806
+61575,38459,40012
+61576,62316
+61577,5361
+61578,51614
+61579,40839
+61580,69427
+61581,37403
+61582,47881
+61583,45670,67363
+61584,57269
+61585,53939
+61586,52070
+61587,6380
+61588,18490
+61589,24533
+61590,49383,22788,41424
+61591,77283,47649,18613
+61592,70884
+61593,45020
+61594,16836,31332
+61595,49955
+61596,21803
+61597,81549
+61598,50515
+61599,28058
+61600,23082
+61601,61605
+61602,80393
+61603,56765
+61604,74817
+61605,61371,19759
+61606,80429
+61607,29753
+61608,74551
+61609,50204
+61610,61565
+61611,37790
+61612,74202
+61613,24312
+61614,38047
+61615,55396
+61616,9644
+61617,50628
+61618,18145
+61619,6000,41113
+61620,13555
+61621,11803
+61622,4467
+61623,77376
+61624,79778
+61625,48033
+61626,67381,38417
+61627,30939
+61628,13777,10117
+61629,61768,7082
+61630,20805
+61631,46823
+61632,68842
+61633,46657
+61634,53390
+61635,22246
+61636,60874
+61637,73379
+61638,5278
+61639,76744,47978
+61640,68147
+61641,50652
+61642,58819
+61643,39488
+61644,17792
+61645,19744
+61646,13480
+61647,23459,20827
+61648,54442
+61649,52312,41078
+61650,40665,79814
+61651,56726
+61652,63251
+61653,68269,23951
+61654,2385
+61655,24639
+61656,23992
+61657,1283
+61658,35550
+61659,9067,698
+61660,48189
+61661,39899,33946
+61662,14829,19842
+61663,6644
+61664,69909
+61665,37066
+61666,33729
+61667,59190
+61668,28541
+61669,30755
+61670,6706
+61671,57580,8398
+61672,62945
+61673,63236
+61674,44581
+61675,47456,48153,25784
+61676,73661
+61677,58017
+61678,44043
+61679,33921
+61680,46007
+61681,17645
+61682,31973,15556
+61683,59941
+61684,75797
+61685,12571
+61686,3155
+61687,10652
+61688,74344
+61689,8780
+61690,38244
+61691,49657
+61692,78939
+61693,30603
+61694,74577
+61695,59047
+61696,35122
+61697,47453,40501
+61698,5843
+61699,33432
+61700,28893
+61701,57835
+61702,68049
+61703,60789
+61704,81226,53282
+61705,827
+61706,57762
+61707,31143
+61708,28647
+61709,6333,22679
+61710,30324
+61711,43758
+61712,76127
+61713,46282
+61714,80351
+61715,40536,77539
+61716,2526
+61717,77103
+61718,5814
+61719,75773,12722
+61720,12512
+61721,728
+61722,17075
+61723,55887
+61724,11877,41892
+61725,2778
+61726,73349,44811
+61727,15066
+61728,28168
+61729,80003
+61730,57783
+61731,59937
+61732,42311
+61733,6139,62808,40469
+61734,59105
+61735,68036
+61736,3399
+61737,24948,20469
+61738,33742
+61739,51787
+61740,25038
+61741,2398,8428
+61742,48980
+61743,23699
+61744,68981,35539
+61745,77936
+61746,61390
+61747,64164
+61748,52515
+61749,43171
+61750,67097
+61751,37467
+61752,55854
+61753,76181
+61754,28718,26614
+61755,27032
+61756,68623
+61757,16673
+61758,46960
+61759,5157
+61760,71300
+61761,67450
+61762,70041
+61763,17416,26569
+61764,5312,62692,17130
+61765,29959,71396
+61766,8281,43601
+61767,81812
+61768,35767,19115
+61769,58628
+61770,50582
+61771,70992
+61772,12486
+61773,17615
+61774,33481,23530,26810
+61775,61217
+61776,65171
+61777,6784
+61778,61722
+61779,8848
+61780,53591
+61781,67685
+61782,18827
+61783,15407,31300,998
+61784,29709,80062
+61785,61247
+61786,35625
+61787,81992
+61788,33337
+61789,30189
+61790,22964,23092
+61791,34432
+61792,14182
+61793,71184
+61794,27127
+61795,42537
+61796,50317
+61797,72763
+61798,7155,24637
+61799,55909
+61800,73055
+61801,63794
+61802,71463
+61803,53411,40783
+61804,35598
+61805,63916
+61806,47661,33311
+61807,78085
+61808,5174
+61809,48712
+61810,79386,21749
+61811,22918
+61812,48145
+61813,63182
+61814,27962,42327
+61815,53051
+61816,48686,48495
+61817,62246
+61818,49625
+61819,34274,56270,29552
+61820,35213
+61821,3845,60437
+61822,19739
+61823,6904
+61824,4267
+61825,68505
+61826,646
+61827,8311
+61828,70723
+61829,73870,32612
+61830,42633,2773,40201
+61831,55124
+61832,10847
+61833,48201
+61834,56404
+61835,17648
+61836,71445
+61837,951
+61838,12363
+61839,2539,28118
+61840,59155
+61841,69859
+61842,7990
+61843,8528
+61844,1019
+61845,18900
+61846,5459
+61847,10910
+61848,42156
+61849,3603
+61850,16761
+61851,65293
+61852,18766
+61853,78546
+61854,51721
+61855,77319,31565
+61856,1022
+61857,28628,32428,65431
+61858,76919,3748
+61859,79234
+61860,49251
+61861,59870
+61862,18377,61207
+61863,44309
+61864,42691
+61865,64360,28103
+61866,12598
+61867,53408
+61868,3806
+61869,60818,44140
+61870,78502
+61871,8167,71329
+61872,49013
+61873,72295
+61874,54413,33036
+61875,57338
+61876,9160,17265
+61877,42677,31477
+61878,33276,72041
+61879,28289,4570
+61880,53394
+61881,17495
+61882,76568,27234
+61883,7481,73439
+61884,53408,34309,35816,28660,69007
+61885,25297,47328
+61886,15634
+61887,39754
+61888,63377,71194,35086
+61889,41825,70930
+61890,77760
+61891,70877
+61892,52728
+61893,10612
+61894,74697,41429
+61895,35952
+61896,40854
+61897,34918,14167
+61898,44101
+61899,80543,48508
+61900,8717
+61901,13956
+61902,37840
+61903,50774
+61904,36938
+61905,56246
+61906,59511
+61907,51807
+61908,3752
+61909,9469
+61910,50509,64652
+61911,19014
+61912,29350
+61913,29394,80318,56222
+61914,35929
+61915,46543
+61916,36894
+61917,36788
+61918,39085
+61919,38961
+61920,9728
+61921,21992,28372
+61922,31811
+61923,56306
+61924,56402,39822,41793
+61925,31416
+61926,47685,450
+61927,37486
+61928,61776
+61929,75011
+61930,57566
+61931,63287
+61932,45778,43935
+61933,6072,33973
+61934,47893
+61935,39451
+61936,59870,29728
+61937,78608,52253
+61938,6968,74027
+61939,45806
+61940,32880,60045
+61941,57876
+61942,20099
+61943,75172
+61944,5555
+61945,74236
+61946,28688
+61947,75210
+61948,69567
+61949,78253
+61950,53530
+61951,75285
+61952,78355,16604
+61953,25092
+61954,52565
+61955,46928
+61956,13726
+61957,66684
+61958,23964
+61959,69981
+61960,13450
+61961,27862
+61962,37489
+61963,23465
+61964,13364,68491
+61965,35673
+61966,48590
+61967,13711
+61968,64007
+61969,13258
+61970,32975
+61971,62347,36329
+61972,9024
+61973,72394
+61974,78319
+61975,66102,5424
+61976,46398
+61977,63288
+61978,257,34926
+61979,43005
+61980,51518,72322
+61981,80426
+61982,51032
+61983,37138
+61984,45787,6802
+61985,63348,79688
+61986,81981,42724
+61987,52490
+61988,54384
+61989,21288,7163
+61990,28330
+61991,75669
+61992,49067
+61993,52539
+61994,17391,45805
+61995,18280
+61996,73433
+61997,25495
+61998,54659
+61999,71288
+62000,58329
+62001,59942
+62002,78810
+62003,47823
+62004,29620
+62005,51002,54929
+62006,66455
+62007,64809
+62008,37686
+62009,62172
+62010,16645
+62011,23440
+62012,20999
+62013,23097
+62014,3916,29161
+62015,16012
+62016,9318
+62017,25749
+62018,71787
+62019,7538
+62020,10889
+62021,14701
+62022,39886
+62023,61740
+62024,25022
+62025,18057
+62026,19117,79562,14593
+62027,9210,7389
+62028,13367
+62029,7970
+62030,35382
+62031,14853
+62032,9129
+62033,1920
+62034,54139
+62035,34900
+62036,52710
+62037,611,16063
+62038,76975
+62039,41222
+62040,74446
+62041,40801,2440
+62042,9410
+62043,35450,47359,44396
+62044,67320
+62045,1294
+62046,24215,31999
+62047,65501
+62048,47075
+62049,69777
+62050,64089
+62051,42426
+62052,20270
+62053,66769,32806
+62054,66497
+62055,67236
+62056,9896
+62057,76843
+62058,3538
+62059,6890
+62060,77363
+62061,14050
+62062,18326
+62063,40928
+62064,14285
+62065,76929
+62066,76307
+62067,39497
+62068,7681,13415
+62069,43100
+62070,2422
+62071,72303
+62072,46580,21831
+62073,65832
+62074,61287,54166,50291
+62075,17518
+62076,2030
+62077,41615
+62078,4096
+62079,13975
+62080,59121
+62081,20952,51961
+62082,48155
+62083,66543
+62084,78943
+62085,32144
+62086,38775
+62087,60817
+62088,48982
+62089,81691
+62090,66439
+62091,32293
+62092,5080,6926
+62093,48066
+62094,8102
+62095,56173
+62096,33583
+62097,5006
+62098,21149
+62099,52234
+62100,1494,63329
+62101,39975
+62102,11211
+62103,80922
+62104,70563
+62105,24402
+62106,11908,64535
+62107,31782
+62108,80753
+62109,67173
+62110,65120,30476
+62111,59225
+62112,5651,42496
+62113,59937
+62114,51525
+62115,6590
+62116,41035,56317
+62117,56864
+62118,66597
+62119,16427
+62120,45554
+62121,72178,19681
+62122,58555
+62123,17919
+62124,67361
+62125,19861
+62126,31355
+62127,66583
+62128,61082,58193
+62129,75184
+62130,26899
+62131,71021,42344
+62132,44796
+62133,78616
+62134,40663
+62135,14763
+62136,32471
+62137,48166
+62138,41449,72809
+62139,63560
+62140,46301,79821
+62141,65715
+62142,62475,41396
+62143,18172
+62144,35105
+62145,36660
+62146,71990,60125
+62147,13599
+62148,68937
+62149,72180,11723
+62150,45738
+62151,68823,75394,48211
+62152,6391
+62153,39547
+62154,52084,67354
+62155,54137
+62156,72280
+62157,50503
+62158,14878
+62159,66264
+62160,49031
+62161,53480,31223
+62162,77502
+62163,51572
+62164,56772
+62165,34184
+62166,56448
+62167,60428
+62168,44399
+62169,19531
+62170,31175
+62171,70538
+62172,25221
+62173,63862
+62174,48004
+62175,13113
+62176,35056
+62177,26656
+62178,59581
+62179,54223,14504
+62180,59177
+62181,9563
+62182,69792
+62183,65174,52921
+62184,33886
+62185,31131
+62186,48494
+62187,66468
+62188,43513
+62189,5779
+62190,15715
+62191,3399,73524
+62192,36688
+62193,5769
+62194,9355
+62195,24719
+62196,15641
+62197,29076
+62198,77072
+62199,52626
+62200,79817
+62201,23142
+62202,23233
+62203,50846
+62204,29938
+62205,13398
+62206,76059,47997
+62207,62240
+62208,58915
+62209,56158
+62210,82093
+62211,57254
+62212,75834
+62213,67907
+62214,64892
+62215,53830,45081
+62216,11006
+62217,20378
+62218,45349
+62219,4126,1711
+62220,67147
+62221,1915,3965
+62222,33732
+62223,80080
+62224,55329,8780
+62225,36934
+62226,35064
+62227,70870,69773
+62228,57856,53554
+62229,31790
+62230,54864
+62231,68542
+62232,81891
+62233,15855
+62234,80496
+62235,29821,37147
+62236,17438
+62237,21067
+62238,70673
+62239,31142
+62240,74564
+62241,80622
+62242,31105
+62243,10719
+62244,71299
+62245,74967
+62246,71711,66417
+62247,51113
+62248,73238
+62249,55305,12937
+62250,38669
+62251,54918
+62252,39723
+62253,22746
+62254,6981
+62255,62363
+62256,56330
+62257,21153,70027
+62258,60967,40113
+62259,13795
+62260,25050
+62261,35992
+62262,1046
+62263,4769
+62264,77399
+62265,78688
+62266,44687
+62267,52120
+62268,35941
+62269,52006
+62270,54139
+62271,58258,8956
+62272,3624,54997
+62273,42477
+62274,16583
+62275,43943
+62276,7831
+62277,8970
+62278,61625
+62279,55027
+62280,16030
+62281,58065
+62282,12669
+62283,76943
+62284,64605
+62285,71955
+62286,61967
+62287,72899
+62288,72854
+62289,3131
+62290,12322
+62291,73780
+62292,66336,42407
+62293,43644
+62294,71681
+62295,12075
+62296,22639
+62297,3185
+62298,79674
+62299,17716,2757
+62300,41184
+62301,4877
+62302,61440
+62303,76107
+62304,34223
+62305,47303
+62306,81791
+62307,40456
+62308,4096
+62309,28397
+62310,14610,1212,49826
+62311,38240
+62312,8639,46836
+62313,76447
+62314,57868
+62315,81896
+62316,26353
+62317,60799
+62318,79121
+62319,23127
+62320,7587
+62321,29747
+62322,20389
+62323,71332
+62324,59292
+62325,37516,79645
+62326,39200
+62327,29939
+62328,75756
+62329,13251
+62330,39798
+62331,64182
+62332,5634
+62333,12011,74727
+62334,3071
+62335,73697,9052
+62336,57890,11117
+62337,46914
+62338,26722
+62339,23603
+62340,37831,840
+62341,50698
+62342,28406
+62343,45598
+62344,1294,40924
+62345,28901
+62346,13259
+62347,23396
+62348,38932
+62349,49347
+62350,59931
+62351,76578
+62352,33186,74955
+62353,2071,8696,81262
+62354,55116
+62355,43023
+62356,72720
+62357,53671,51758
+62358,38339
+62359,53847
+62360,38146
+62361,73296
+62362,23696
+62363,23177
+62364,78803
+62365,20137
+62366,1874,18119
+62367,18229
+62368,27903
+62369,28872
+62370,475
+62371,15968
+62372,11668
+62373,70434
+62374,75244
+62375,12186
+62376,74570
+62377,63698
+62378,5591
+62379,18739
+62380,61269
+62381,905
+62382,3953
+62383,79960
+62384,22789
+62385,40360,59690
+62386,67425,1305
+62387,64147
+62388,65297
+62389,51222
+62390,44192
+62391,13108,77312
+62392,45236
+62393,68214
+62394,48900
+62395,51561
+62396,5094
+62397,24364
+62398,48239
+62399,55093
+62400,38984,20856
+62401,55017
+62402,29867
+62403,5571
+62404,34975
+62405,35084
+62406,29587,44212
+62407,9856
+62408,32022,75309
+62409,74657
+62410,13709
+62411,56768,17430
+62412,37164
+62413,28641
+62414,7170
+62415,20408
+62416,36164
+62417,68731,49311
+62418,66157
+62419,41374
+62420,73560
+62421,69763
+62422,21344
+62423,50153,65768
+62424,51938
+62425,4218
+62426,49541
+62427,7604
+62428,14687
+62429,24435
+62430,81809
+62431,10097
+62432,69144
+62433,23777
+62434,28258
+62435,33270
+62436,37093
+62437,33267
+62438,81898
+62439,33453
+62440,24772,28690
+62441,38225
+62442,10552
+62443,18767
+62444,72243
+62445,73934
+62446,65703,29480
+62447,73214
+62448,54614
+62449,35259
+62450,76786
+62451,68575
+62452,55001
+62453,37512
+62454,74536
+62455,25677,8597
+62456,74070,22577,40746
+62457,48802
+62458,53666
+62459,6664,26693,69245
+62460,19459,59263
+62461,23029
+62462,29592
+62463,42782
+62464,24027,7734
+62465,19397
+62466,29395
+62467,14930
+62468,20724
+62469,46885
+62470,25897
+62471,37371
+62472,29064
+62473,21235
+62474,5733
+62475,22960
+62476,45373
+62477,50087
+62478,49535,61082
+62479,56515
+62480,10226
+62481,32938
+62482,13398
+62483,66113
+62484,81392,41595
+62485,69772,31429
+62486,32174
+62487,4225,330
+62488,38496,77801
+62489,82004
+62490,78014
+62491,27018
+62492,10829
+62493,6139
+62494,52322
+62495,44723
+62496,1540
+62497,18829
+62498,3165
+62499,35109,51923
+62500,20095
+62501,2872,34102
+62502,12606
+62503,41757
+62504,24512
+62505,19614
+62506,47846
+62507,57728
+62508,38453
+62509,70437
+62510,57539
+62511,78645
+62512,54329
+62513,34377
+62514,78666
+62515,6000
+62516,583
+62517,67617
+62518,6151
+62519,46977,59154
+62520,77609
+62521,18432
+62522,48218,52419
+62523,7556
+62524,80022
+62525,6124
+62526,69747,634
+62527,24719
+62528,4623,33663
+62529,77565
+62530,74997
+62531,41376
+62532,24155,53416,42936
+62533,52084
+62534,54316
+62535,67904
+62536,35865
+62537,34872
+62538,3646
+62539,76364,69802
+62540,75028,1307,9251
+62541,20666,16951
+62542,78447
+62543,7641
+62544,14633
+62545,63461,20618,7150
+62546,80651
+62547,35064
+62548,59779
+62549,7389
+62550,4259,76664
+62551,29156
+62552,7758,57655
+62553,25575
+62554,41988
+62555,44160
+62556,2837
+62557,81100
+62558,50031,649,15721
+62559,8256,54202
+62560,1055,16332
+62561,68062,25631
+62562,60577
+62563,27195
+62564,34771
+62565,78560
+62566,60757,7078,32531
+62567,77524
+62568,66112
+62569,4753
+62570,4440
+62571,25243
+62572,31412
+62573,62160
+62574,34000
+62575,68975,20541
+62576,66775
+62577,17561
+62578,12528
+62579,27461
+62580,26265,6199
+62581,36417,7106
+62582,75639,39498
+62583,49595
+62584,39267
+62585,51252
+62586,29925,65118
+62587,36814
+62588,10553
+62589,74135
+62590,81244,41248,71654
+62591,60421
+62592,41048
+62593,16098
+62594,57931
+62595,60413,54056
+62596,9412
+62597,2671
+62598,34152
+62599,52982
+62600,15361
+62601,10739
+62602,40333
+62603,40680
+62604,30279
+62605,53166
+62606,24088
+62607,26988
+62608,64247
+62609,55245,77489
+62610,68336,37375
+62611,52966
+62612,68897
+62613,71185
+62614,65230
+62615,35680
+62616,45180
+62617,50389
+62618,6123
+62619,43583
+62620,79102,77257
+62621,23133
+62622,65037,21240
+62623,74781,52307
+62624,19308,50399
+62625,81989
+62626,81596
+62627,20071
+62628,10706
+62629,58687
+62630,80456
+62631,4399
+62632,56399
+62633,486
+62634,4175
+62635,62883
+62636,35285
+62637,75361
+62638,64097,18199
+62639,20648
+62640,10660
+62641,62442
+62642,48718
+62643,78357
+62644,68036
+62645,61646,41928
+62646,71157,40174
+62647,10931,78935
+62648,80353
+62649,48897
+62650,80055
+62651,21282
+62652,70049
+62653,24853
+62654,12924,5599
+62655,14839
+62656,6790
+62657,50317
+62658,49244
+62659,70558
+62660,67169
+62661,63820
+62662,59901
+62663,16707,19658
+62664,33490
+62665,75059
+62666,76210
+62667,24335
+62668,20765
+62669,73042
+62670,42391
+62671,14444
+62672,57989
+62673,41217,10383
+62674,41345
+62675,21139
+62676,31390
+62677,14281
+62678,46899
+62679,79687,52464
+62680,34151
+62681,76942
+62682,71834
+62683,42418
+62684,41851
+62685,52565,32613,7153
+62686,34156
+62687,52878
+62688,30291,67834
+62689,20032
+62690,58054
+62691,54934
+62692,4319
+62693,4501
+62694,73233
+62695,11778
+62696,79003
+62697,50894,33692
+62698,78865
+62699,31586
+62700,31930
+62701,72125,27776
+62702,26361
+62703,72363
+62704,29442,29364
+62705,19299
+62706,77520
+62707,4706
+62708,34638
+62709,29285
+62710,69414
+62711,2282
+62712,17256
+62713,8343
+62714,43845
+62715,9436
+62716,79977
+62717,65159,37389
+62718,12858
+62719,63768
+62720,36085
+62721,3275,33142,33454
+62722,66239
+62723,5682
+62724,20249
+62725,11315
+62726,2226
+62727,60837
+62728,77481
+62729,2619
+62730,14843
+62731,2721
+62732,65236
+62733,80626
+62734,39158
+62735,23696
+62736,43378
+62737,8201
+62738,52392
+62739,60313
+62740,16607
+62741,22926
+62742,32905
+62743,54249
+62744,23916
+62745,44185
+62746,1767
+62747,70069
+62748,74610,73610
+62749,63830
+62750,50351
+62751,6566
+62752,51204
+62753,38927,18362
+62754,62741,62429
+62755,51426
+62756,40201,2944
+62757,20162
+62758,75693
+62759,37366
+62760,67567
+62761,59851,73055,63337
+62762,71209
+62763,79839
+62764,45
+62765,31258
+62766,242
+62767,78402
+62768,57856
+62769,2104,31112
+62770,27477
+62771,12338
+62772,53118
+62773,46919
+62774,39899,36446,4078,2156
+62775,15759
+62776,64291,60855
+62777,24262
+62778,71290
+62779,46977
+62780,13654
+62781,34182
+62782,59492,8655
+62783,74819
+62784,27218
+62785,35759
+62786,74673
+62787,32909
+62788,42466
+62789,45704
+62790,31654
+62791,77185
+62792,13451
+62793,38572
+62794,79197
+62795,45010
+62796,66703
+62797,21856
+62798,63463
+62799,22860
+62800,13072
+62801,42250
+62802,68763
+62803,45752
+62804,17347
+62805,46969
+62806,63097
+62807,46130
+62808,58221
+62809,53112,70834
+62810,50361
+62811,52808
+62812,3996
+62813,22552
+62814,16651,56909
+62815,16710
+62816,7371
+62817,75244
+62818,77914,74405
+62819,23564
+62820,37621
+62821,10556
+62822,24837
+62823,41475
+62824,4701
+62825,43149
+62826,74675
+62827,19132
+62828,32089,65813,48377
+62829,16114
+62830,71169
+62831,81631
+62832,48936
+62833,64007
+62834,13398
+62835,14076
+62836,5385
+62837,43433
+62838,57472
+62839,51133
+62840,59629,69527
+62841,7853
+62842,14646,32961
+62843,73414
+62844,6224
+62845,23634
+62846,41061
+62847,10796,70456
+62848,63582,64936,44781
+62849,62688
+62850,55858,11458
+62851,36905
+62852,42408
+62853,47951
+62854,22503
+62855,61643
+62856,62642
+62857,36268
+62858,55406,46513
+62859,39053,13368,43022
+62860,14373
+62861,78785,11903
+62862,23516
+62863,4168
+62864,65658
+62865,31087,41420
+62866,10813
+62867,49231
+62868,56182,52198
+62869,43657
+62870,52262,41949
+62871,17785
+62872,24475
+62873,29110
+62874,69796,73911,36139
+62875,39596
+62876,21507
+62877,78647
+62878,46051
+62879,50569,53640
+62880,37209
+62881,67429
+62882,58451,1014
+62883,64358
+62884,22238
+62885,25776
+62886,2971
+62887,75
+62888,70463
+62889,45705
+62890,70449
+62891,44793
+62892,47580
+62893,27909,29586
+62894,41720
+62895,7918,2143
+62896,20029
+62897,75771
+62898,81323
+62899,44108
+62900,7477
+62901,29811
+62902,45911,5156
+62903,38989
+62904,2240
+62905,67796
+62906,53627,36153,81810
+62907,78428,16638
+62908,75515
+62909,19280
+62910,31962,5925
+62911,34926
+62912,40997
+62913,57677,50434
+62914,60212
+62915,3156,80943
+62916,28925
+62917,38994
+62918,42179,10421,49169
+62919,71287
+62920,3296
+62921,43376
+62922,18509
+62923,69698,76532
+62924,20427
+62925,18662,75401
+62926,28959
+62927,78100
+62928,67833
+62929,56430
+62930,16335
+62931,60427
+62932,31016
+62933,24513
+62934,33596
+62935,14969
+62936,72295
+62937,75251
+62938,5810
+62939,42102,8857
+62940,17351
+62941,23582
+62942,28941
+62943,54460
+62944,6574
+62945,75922
+62946,69554
+62947,3976,11529
+62948,26258
+62949,46198
+62950,24476
+62951,41547
+62952,9129
+62953,6587
+62954,4471
+62955,61144
+62956,31708
+62957,35440
+62958,45738
+62959,38383,66477
+62960,40083
+62961,7427
+62962,30579
+62963,22090
+62964,10897,80671
+62965,26064,2540
+62966,30330,50109
+62967,6242
+62968,925
+62969,20223,50716
+62970,28883
+62971,8280
+62972,41381,46991
+62973,24844
+62974,8041
+62975,29364,52795,80303
+62976,48096
+62977,41225
+62978,59555
+62979,68201
+62980,34761
+62981,42870
+62982,15257
+62983,68550
+62984,53452
+62985,55469
+62986,28366,77458
+62987,15606
+62988,41230
+62989,78883
+62990,20518
+62991,77229
+62992,4427
+62993,50865,22356,74589
+62994,54110
+62995,58885,11920,9263,76697
+62996,17340
+62997,40348
+62998,20576
+62999,56933
+63000,26367
+63001,48004
+63002,46237,43489
+63003,42900
+63004,60712
+63005,75036
+63006,57682
+63007,33809,36644
+63008,255
+63009,6668
+63010,10146
+63011,4967
+63012,67438
+63013,71518,48144,11067
+63014,18903
+63015,6828
+63016,55369
+63017,70546,80266
+63018,82160
+63019,57991
+63020,41187
+63021,40743
+63022,77921
+63023,78378
+63024,44776,76847
+63025,52538,55354,20725
+63026,79344
+63027,53228
+63028,78210
+63029,40606
+63030,15986
+63031,757
+63032,45105
+63033,64208
+63034,66284
+63035,24043,4082
+63036,60714,12168
+63037,17668
+63038,33380
+63039,52401
+63040,6336
+63041,18852
+63042,14123
+63043,40961
+63044,23971
+63045,35685
+63046,68019,55251
+63047,74023
+63048,55131
+63049,75692
+63050,75687
+63051,35534,53795
+63052,25053
+63053,8830
+63054,9156
+63055,20737,32167
+63056,15171
+63057,29026,44686
+63058,72608,3861
+63059,38125
+63060,42088
+63061,22032,49856
+63062,48070
+63063,5401
+63064,340
+63065,10742,71291
+63066,23203
+63067,16597
+63068,58513
+63069,41488,26254
+63070,80501
+63071,40101
+63072,58173
+63073,71450,27156
+63074,32710
+63075,41459
+63076,68324
+63077,39998
+63078,55217
+63079,65167,10072
+63080,24493,61943,3078
+63081,26801,42040
+63082,21369,1510
+63083,18189
+63084,28189
+63085,61250
+63086,38046
+63087,6111
+63088,30034
+63089,49236
+63090,3686,65967
+63091,56030
+63092,71290
+63093,30982
+63094,48143
+63095,77375
+63096,36780
+63097,7148
+63098,35951
+63099,3898
+63100,55515
+63101,55630
+63102,20170
+63103,5058
+63104,61383
+63105,20488,57213
+63106,8140
+63107,45828
+63108,42246
+63109,20064,68983
+63110,2008,26140
+63111,41334
+63112,69121
+63113,79723
+63114,41720
+63115,41570
+63116,24259
+63117,77558
+63118,19145
+63119,1734
+63120,25181
+63121,75173
+63122,75367
+63123,79277
+63124,58492
+63125,65224
+63126,78326
+63127,49605
+63128,4950
+63129,77709
+63130,36777,61000
+63131,68985
+63132,70135
+63133,43800,75603
+63134,65649
+63135,8033
+63136,16688
+63137,24742
+63138,19112
+63139,63504
+63140,15413
+63141,77434
+63142,78356
+63143,45843
+63144,16951
+63145,67397
+63146,72312
+63147,943
+63148,63277
+63149,40154
+63150,218
+63151,48251
+63152,48303
+63153,77045
+63154,68185
+63155,30718
+63156,28134
+63157,10339
+63158,56226
+63159,27714,73833
+63160,73804
+63161,49011
+63162,50145
+63163,5743
+63164,9962
+63165,55631
+63166,75166
+63167,76558
+63168,17871
+63169,69078
+63170,77687
+63171,18588
+63172,15377
+63173,42010
+63174,32609
+63175,6311,32070,50538
+63176,79543
+63177,51931,61567
+63178,41428
+63179,48102
+63180,48033
+63181,38234,15425
+63182,70337
+63183,81746
+63184,17495
+63185,27279
+63186,12479,57583
+63187,70515
+63188,31068,34934
+63189,31704
+63190,62732
+63191,32630
+63192,45226,77321,76433
+63193,12175
+63194,15809
+63195,72256,52797,76357
+63196,58756
+63197,63822
+63198,35497,1784
+63199,31680
+63200,22771
+63201,60884
+63202,46842
+63203,73571
+63204,35995
+63205,52097
+63206,1855
+63207,75203
+63208,12180
+63209,53957
+63210,2437
+63211,8533
+63212,69202
+63213,73746
+63214,66618
+63215,16690
+63216,29906
+63217,73998
+63218,44959
+63219,7661
+63220,2944,43165
+63221,72353
+63222,38981
+63223,77058
+63224,45530
+63225,51855
+63226,57248,75914
+63227,40951,38862,63281
+63228,49262
+63229,74822
+63230,54314
+63231,27918
+63232,57910,82048,24688
+63233,81958,38703
+63234,30731,9557
+63235,51795
+63236,65579
+63237,35025
+63238,29630
+63239,30436
+63240,43195
+63241,19490
+63242,20240
+63243,71414
+63244,24438
+63245,4726
+63246,51140,81698
+63247,1435
+63248,78175
+63249,63852
+63250,4895
+63251,58564
+63252,40512
+63253,11573
+63254,18574
+63255,13607
+63256,69272
+63257,42219,45894,50480
+63258,7281
+63259,37715
+63260,19042
+63261,32651
+63262,27610
+63263,17948
+63264,1622
+63265,70714,13839
+63266,6264
+63267,25218
+63268,15721
+63269,70139
+63270,32568
+63271,37448
+63272,61934
+63273,24312
+63274,58268
+63275,34219
+63276,36508
+63277,4299
+63278,3253
+63279,73072
+63280,8567
+63281,71331,13192
+63282,387
+63283,47755,37615
+63284,55781
+63285,80904
+63286,25536,10820
+63287,60995
+63288,6325
+63289,68348
+63290,16789
+63291,31202,41403
+63292,25220
+63293,70544
+63294,904,37371
+63295,13326
+63296,28061
+63297,69846,5368
+63298,71421
+63299,18295,36892
+63300,33358,80686
+63301,21071,46972
+63302,7279
+63303,14256
+63304,35627
+63305,15775
+63306,6186
+63307,78878
+63308,49703
+63309,67529
+63310,18455
+63311,80405,42765
+63312,79877,47623
+63313,67140
+63314,70459
+63315,65401
+63316,33716
+63317,19465,24227
+63318,16689
+63319,54538
+63320,76014,54438
+63321,62033
+63322,13262
+63323,8383
+63324,48886
+63325,9777
+63326,32102,55459
+63327,60634
+63328,23117
+63329,46179
+63330,36305
+63331,68795
+63332,39926
+63333,59617
+63334,52703
+63335,41252
+63336,25469
+63337,43076
+63338,29013
+63339,7385
+63340,71683
+63341,8717
+63342,25882
+63343,3812
+63344,72556
+63345,73939
+63346,32986
+63347,59192
+63348,39494
+63349,31554
+63350,59727
+63351,47152
+63352,62291,58689
+63353,22359
+63354,33810
+63355,31835
+63356,11969
+63357,55213
+63358,22849
+63359,42883
+63360,24175
+63361,75826
+63362,64961
+63363,1447
+63364,30217,70686
+63365,17857
+63366,73369
+63367,31818
+63368,1245
+63369,81532,25253
+63370,76766
+63371,32698
+63372,70431,29487
+63373,2779
+63374,41197
+63375,26524
+63376,8648
+63377,22110,38618
+63378,35451
+63379,46914,9768
+63380,16723,28359
+63381,30811,61372
+63382,78377
+63383,40094
+63384,44176
+63385,55715,50348
+63386,62104
+63387,71046
+63388,132
+63389,41098
+63390,4824
+63391,4052
+63392,52831
+63393,47773
+63394,41467,52603
+63395,57999
+63396,18130
+63397,57610
+63398,336
+63399,23856
+63400,63823
+63401,28481
+63402,56189
+63403,37563
+63404,13245,68036
+63405,26421
+63406,70069
+63407,18116
+63408,71485,6633
+63409,50483
+63410,72158
+63411,3738
+63412,77894
+63413,61732
+63414,40859
+63415,65865
+63416,35709
+63417,16817
+63418,63884
+63419,10017,80709
+63420,21325
+63421,73415
+63422,26670,72537
+63423,30719
+63424,36787
+63425,38064
+63426,52099
+63427,79459,16305
+63428,66239,72923,48186
+63429,27495
+63430,39687
+63431,11597,66245
+63432,35875
+63433,57301
+63434,57031
+63435,2677
+63436,79303
+63437,56419
+63438,66863
+63439,14210,67540
+63440,7631,26395
+63441,65290
+63442,67008
+63443,33280
+63444,43724
+63445,7803
+63446,36902
+63447,39242
+63448,25258
+63449,51034,10681
+63450,77885,49594,50756
+63451,22473
+63452,60746
+63453,29909
+63454,5168
+63455,76408,38765
+63456,55920
+63457,60913
+63458,41701
+63459,27790
+63460,57117
+63461,46502,47501
+63462,32057
+63463,22308
+63464,2285
+63465,16247
+63466,27256
+63467,55098
+63468,14647
+63469,3637
+63470,64857
+63471,45082
+63472,41638
+63473,45580
+63474,22320
+63475,27228
+63476,51580
+63477,20553
+63478,8140
+63479,78796
+63480,26970
+63481,74879
+63482,13742,81277
+63483,16345
+63484,38803
+63485,80421
+63486,55065
+63487,33146,11566
+63488,81978
+63489,68574
+63490,65405,46878
+63491,6937
+63492,77065
+63493,16453
+63494,55186,78494
+63495,55587,9461
+63496,1983
+63497,26301
+63498,957
+63499,54927
+63500,42194
+63501,57077
+63502,42951,57242
+63503,27447
+63504,77149
+63505,31374
+63506,31033
+63507,57218,29594
+63508,60678
+63509,162
+63510,40235,15107
+63511,49186,49967,1427
+63512,19548
+63513,60264,5754,68802
+63514,32483,24376
+63515,9274
+63516,78159
+63517,33355
+63518,24318
+63519,38715
+63520,30230
+63521,35048
+63522,53845
+63523,11192,8199
+63524,46851
+63525,56772
+63526,68990
+63527,14381
+63528,74317
+63529,38225
+63530,18488
+63531,59866
+63532,70530
+63533,80845
+63534,23357
+63535,57368
+63536,1785
+63537,51100
+63538,11598
+63539,176
+63540,38031
+63541,59479,48396,77601
+63542,20373
+63543,37739
+63544,41807
+63545,450
+63546,54275
+63547,29938
+63548,33117
+63549,25736,10
+63550,41769
+63551,26484
+63552,7382
+63553,67057
+63554,52471
+63555,24595
+63556,39620,65266
+63557,52941
+63558,59245
+63559,3013,21796
+63560,10322
+63561,12293
+63562,24176
+63563,33442
+63564,65122
+63565,77128
+63566,2257
+63567,74659
+63568,70082
+63569,58665
+63570,30808
+63571,76196
+63572,42585
+63573,55865
+63574,18316,56905
+63575,44732,14501
+63576,31411,82131
+63577,65743
+63578,901
+63579,35473
+63580,9151
+63581,52909
+63582,12629
+63583,76241,44287
+63584,23389
+63585,78700,53992
+63586,56104
+63587,74579,31753
+63588,806
+63589,46225
+63590,43385,46745
+63591,62900
+63592,29170,23608
+63593,13063
+63594,17914
+63595,9212
+63596,78422
+63597,56700
+63598,49385
+63599,59612
+63600,9420
+63601,16365
+63602,5204
+63603,33975
+63604,5740,57494
+63605,7734,9089
+63606,2333
+63607,111
+63608,62261
+63609,32074,53930
+63610,62972
+63611,30205
+63612,11004,51583
+63613,75398
+63614,4603
+63615,59760
+63616,9849,57841
+63617,51334
+63618,71608
+63619,80626,14310
+63620,78672
+63621,57019
+63622,71957
+63623,62459,7403
+63624,81772
+63625,76576
+63626,14740
+63627,32733
+63628,72960,7549
+63629,71940
+63630,67420
+63631,78360
+63632,78755
+63633,53856
+63634,43233
+63635,21357
+63636,67030
+63637,67805
+63638,7181
+63639,43918
+63640,16810
+63641,8419
+63642,71275
+63643,46130
+63644,6163
+63645,72767,71725
+63646,78724,66304
+63647,14622
+63648,24223
+63649,40131
+63650,60052
+63651,16848,77398
+63652,5631
+63653,17129,21616
+63654,32066
+63655,51522
+63656,81839
+63657,75172
+63658,29703
+63659,13624
+63660,21829
+63661,32920
+63662,62286
+63663,30618
+63664,29457,39903
+63665,62212
+63666,29848
+63667,32557
+63668,1168
+63669,66604
+63670,75518
+63671,23086
+63672,55233
+63673,64107,43223
+63674,28108
+63675,81515
+63676,30939
+63677,44909
+63678,75287
+63679,3403
+63680,77119
+63681,37691
+63682,67665
+63683,28410,34778
+63684,80045
+63685,78418
+63686,23400,57989,47447
+63687,8256
+63688,38730
+63689,11405
+63690,51181
+63691,5978
+63692,59472,29508
+63693,81985
+63694,57664
+63695,3322,23075
+63696,68354
+63697,56952,30651
+63698,4870
+63699,19599
+63700,62170
+63701,64618
+63702,79949
+63703,77727,43012
+63704,68977
+63705,17583
+63706,49939
+63707,48028
+63708,44494,34368
+63709,32129
+63710,6356
+63711,9678
+63712,52258
+63713,68034
+63714,16657
+63715,3581,67955
+63716,62834
+63717,60677
+63718,29805
+63719,27905
+63720,37210
+63721,17337,14762,58259,42802,5814
+63722,37736
+63723,37688
+63724,13923
+63725,39208
+63726,39357
+63727,17517
+63728,25073
+63729,7824
+63730,10243
+63731,66664
+63732,30279
+63733,74343,6795
+63734,49195
+63735,51765
+63736,28472
+63737,21914
+63738,45633
+63739,74429
+63740,70789
+63741,14029
+63742,47858
+63743,78732,75558
+63744,79180
+63745,32799
+63746,37103
+63747,8644
+63748,77241,67087
+63749,47988,41187
+63750,5690
+63751,52526
+63752,50311,73061
+63753,14501
+63754,25639
+63755,15799
+63756,18045
+63757,17784
+63758,50991
+63759,22398,2753
+63760,66853
+63761,16209
+63762,44430
+63763,70266
+63764,56104
+63765,45750
+63766,49388,23647,25673
+63767,38463
+63768,74740
+63769,17681
+63770,6250
+63771,15401
+63772,79772
+63773,76004
+63774,69505
+63775,20688,77000
+63776,69906
+63777,54675
+63778,44355
+63779,69349
+63780,59087
+63781,59191,50786,80194
+63782,51148
+63783,25905
+63784,60988
+63785,7977
+63786,31085
+63787,9695
+63788,12174,11120
+63789,51314
+63790,58755
+63791,54057
+63792,4566
+63793,50798
+63794,56716
+63795,39810
+63796,12787
+63797,14433
+63798,59616
+63799,48191
+63800,34661
+63801,46640,56446
+63802,59706
+63803,62452,72636
+63804,92
+63805,17975
+63806,63776
+63807,69378
+63808,72061
+63809,63585
+63810,63060
+63811,59505
+63812,35767
+63813,11340
+63814,13186
+63815,23282
+63816,4410,5757
+63817,8564
+63818,37563,1094
+63819,47311
+63820,9361,61058
+63821,75410
+63822,40370
+63823,27722
+63824,70011
+63825,35764
+63826,31629
+63827,61168
+63828,80640
+63829,75410
+63830,65188,45124
+63831,22524
+63832,68575
+63833,25105
+63834,72326
+63835,32270
+63836,47914,75084
+63837,17693
+63838,49632
+63839,1954
+63840,62134
+63841,4831
+63842,66514
+63843,51828
+63844,21467
+63845,54645
+63846,70108,58813,48718
+63847,25600
+63848,8168
+63849,73455
+63850,75355,81361,42177
+63851,13332
+63852,79343
+63853,8108
+63854,39625
+63855,4404
+63856,33115
+63857,43946
+63858,52889
+63859,76406,71939
+63860,45224
+63861,24877
+63862,70869
+63863,74108
+63864,30575
+63865,44752,56011
+63866,19784,48677
+63867,34389
+63868,4685,7461
+63869,52753,27773
+63870,3915
+63871,49197,19814
+63872,5878
+63873,63052
+63874,49093
+63875,48556
+63876,72434
+63877,33188
+63878,7692,47939
+63879,13692
+63880,46419
+63881,55678
+63882,68648,10317
+63883,65535
+63884,75636
+63885,50838
+63886,44421,3744
+63887,57063
+63888,48384
+63889,53374
+63890,39673
+63891,26608,47482
+63892,16648
+63893,59118
+63894,37135
+63895,66576
+63896,28903
+63897,47490
+63898,47533
+63899,53838,18102
+63900,17086
+63901,78741,26897
+63902,17676
+63903,65898
+63904,74234,14523
+63905,56589
+63906,78288
+63907,78346
+63908,69761
+63909,25401
+63910,62862
+63911,71243
+63912,30243
+63913,76757
+63914,69833,22167
+63915,6632
+63916,30163
+63917,73510
+63918,25376
+63919,21041
+63920,54183
+63921,49075
+63922,35405
+63923,6198
+63924,71112
+63925,60184
+63926,2510
+63927,52548
+63928,59281
+63929,35696,76300
+63930,65088
+63931,69599,37121
+63932,48786
+63933,74066,37697
+63934,29757
+63935,17027
+63936,65854
+63937,69305,30797
+63938,74357
+63939,54005
+63940,8196
+63941,52750
+63942,64341,55335
+63943,75566,22886
+63944,7020,43700
+63945,57266
+63946,12485
+63947,55204
+63948,25067
+63949,76127
+63950,48962
+63951,3270,55421,17115
+63952,29912
+63953,56987
+63954,38629
+63955,69305
+63956,39706
+63957,64478
+63958,16797
+63959,46910
+63960,23099
+63961,26289,65405
+63962,74804
+63963,59706
+63964,44447
+63965,51398
+63966,63285
+63967,70593
+63968,57417
+63969,12628
+63970,51930
+63971,47780
+63972,10896
+63973,59915
+63974,2498
+63975,41309
+63976,44385
+63977,14608
+63978,21873,8414
+63979,63746,10397
+63980,1056
+63981,68715,26301,16716
+63982,32988
+63983,72773
+63984,65930
+63985,68587,74985,9621
+63986,24963
+63987,44285
+63988,10400
+63989,34913
+63990,68629
+63991,1846
+63992,49223
+63993,14843,7808
+63994,58451
+63995,5590
+63996,6535
+63997,5573
+63998,57546,75167,7122
+63999,46674
+64000,38317
+64001,55475
+64002,67332
+64003,24979
+64004,50006
+64005,9090
+64006,81284
+64007,52007
+64008,22954,52381
+64009,33645
+64010,36646,80103,11077,24812
+64011,77303
+64012,67133
+64013,34921,54467
+64014,6974
+64015,57081
+64016,30943
+64017,25053
+64018,10164
+64019,36002
+64020,76093
+64021,77481
+64022,59390
+64023,4840
+64024,32945
+64025,75090,70082
+64026,2374
+64027,11537
+64028,31474
+64029,17970
+64030,57797
+64031,27865
+64032,43604
+64033,48230,62068
+64034,26620,53298
+64035,57408,32073
+64036,13173
+64037,11424
+64038,10823
+64039,19421
+64040,60709
+64041,19581,12624
+64042,5021,75862
+64043,16775
+64044,35691
+64045,19837
+64046,80663
+64047,25339,16192
+64048,74579,57807
+64049,41394
+64050,6689
+64051,11031
+64052,67945
+64053,4865
+64054,51378
+64055,3277
+64056,64172
+64057,46947
+64058,3448,33453
+64059,41137
+64060,17902
+64061,80501
+64062,33646
+64063,4920
+64064,19298
+64065,71549,8838
+64066,80874
+64067,65946
+64068,81537
+64069,77456
+64070,14706
+64071,69772
+64072,18849
+64073,20999
+64074,57600
+64075,46612
+64076,11867
+64077,72350
+64078,67025
+64079,55856
+64080,78453
+64081,57003,33263
+64082,50898,6674
+64083,2790
+64084,18831
+64085,47047
+64086,24205
+64087,32354
+64088,11523,10153
+64089,72936
+64090,20658
+64091,41762
+64092,81820
+64093,34298,72601
+64094,75458
+64095,59777
+64096,68374
+64097,17404
+64098,12705
+64099,9164
+64100,74621
+64101,16731,46556
+64102,8501
+64103,17768
+64104,2884
+64105,46699
+64106,7742
+64107,46029,7077
+64108,43490,63774
+64109,9043,78420
+64110,21694
+64111,77401
+64112,64587
+64113,25468,23626,31911
+64114,26625
+64115,69053
+64116,36438
+64117,75416
+64118,56294
+64119,4420
+64120,1936,43821
+64121,66558
+64122,27566
+64123,18319
+64124,22633
+64125,78695,2389
+64126,12409
+64127,63240
+64128,61499,21257
+64129,54104
+64130,19146
+64131,38040
+64132,21415
+64133,65374
+64134,33105
+64135,27863
+64136,33488
+64137,48076,46219
+64138,30277
+64139,23378
+64140,11315
+64141,66654
+64142,36280
+64143,60913
+64144,21805
+64145,49825
+64146,33218
+64147,63459
+64148,18932
+64149,16996
+64150,42553,6061
+64151,378
+64152,31719
+64153,53853
+64154,60027
+64155,74007
+64156,61086
+64157,64048
+64158,6760,210
+64159,64988,24603
+64160,74659
+64161,32432,5855
+64162,68201
+64163,49982,69258
+64164,22681
+64165,6055,64110
+64166,53720
+64167,23675
+64168,43477,78564
+64169,33596
+64170,65306,78673
+64171,63147
+64172,30348
+64173,64968
+64174,45728
+64175,51045
+64176,55027
+64177,82153
+64178,50412
+64179,23366
+64180,17530
+64181,60677
+64182,60859
+64183,27505
+64184,57449
+64185,33913
+64186,34903
+64187,38213
+64188,53335,15178,44732
+64189,68938
+64190,81485,68633
+64191,18057
+64192,63589
+64193,73668
+64194,41555
+64195,31277
+64196,1913
+64197,4976
+64198,12106,74611
+64199,81697,76786,53433
+64200,11819
+64201,49365
+64202,64735
+64203,72365,36260
+64204,61577,49726
+64205,56832
+64206,39047
+64207,13114,37578
+64208,32835
+64209,81229,17498
+64210,52531
+64211,59643
+64212,5139
+64213,50947
+64214,68583
+64215,32691,79219
+64216,4578
+64217,14217
+64218,79214
+64219,77244
+64220,16946
+64221,719
+64222,3828
+64223,73912
+64224,34561,62923,6445
+64225,76269
+64226,60968
+64227,40248
+64228,7826
+64229,40362,4262
+64230,301
+64231,58996
+64232,50198
+64233,57872
+64234,2807,42237,64278
+64235,63589
+64236,231
+64237,39911
+64238,5496
+64239,8828
+64240,27374
+64241,69620
+64242,53953
+64243,78914
+64244,1269
+64245,53978,20555
+64246,45838
+64247,51181
+64248,26429
+64249,7379,67095
+64250,44649
+64251,9936
+64252,61063
+64253,35207
+64254,45142
+64255,39743
+64256,27962,34814
+64257,60681
+64258,59407
+64259,44105,46305
+64260,48583
+64261,38459
+64262,34119
+64263,63411
+64264,71421
+64265,40566
+64266,54932
+64267,26373
+64268,39136
+64269,25047
+64270,53365
+64271,77870
+64272,12042
+64273,15666
+64274,18522
+64275,65092
+64276,79480
+64277,27588
+64278,5168
+64279,69647
+64280,67465
+64281,23107,47682
+64282,57936,28645
+64283,23286
+64284,27518
+64285,81210
+64286,78236
+64287,11168
+64288,6111
+64289,47456
+64290,15825,65079
+64291,42310
+64292,75436
+64293,15953
+64294,43380
+64295,12153
+64296,16443
+64297,48176
+64298,77733
+64299,25752
+64300,51296
+64301,2221
+64302,60754
+64303,2404,13598
+64304,74903,71932
+64305,49494,19903
+64306,6337
+64307,38845
+64308,23964,81257
+64309,60911
+64310,40684
+64311,63923,35151
+64312,71828
+64313,29228
+64314,42485
+64315,9135
+64316,39919
+64317,52537
+64318,39765,13597
+64319,26614
+64320,12724,66438,68270
+64321,4794
+64322,29244
+64323,3328
+64324,17410
+64325,47433
+64326,37059
+64327,3269,399
+64328,77094
+64329,67299,6465
+64330,13304
+64331,35314
+64332,6819
+64333,35057,24155
+64334,68360
+64335,77864
+64336,35932,33561
+64337,26784
+64338,44207
+64339,15387
+64340,24342
+64341,10651
+64342,25569,74297
+64343,9095
+64344,19871,19099
+64345,11335
+64346,46449
+64347,42165
+64348,13004
+64349,30820
+64350,69353
+64351,68967
+64352,20724
+64353,79122
+64354,57669
+64355,36500
+64356,64774
+64357,37333
+64358,33512
+64359,53231
+64360,10999
+64361,60257
+64362,79702
+64363,61205
+64364,1094,81946
+64365,69602
+64366,26898
+64367,24684
+64368,28763
+64369,7013
+64370,35228
+64371,25962
+64372,40801
+64373,45401
+64374,47497
+64375,24698,36707
+64376,54497
+64377,50531
+64378,63285
+64379,65620
+64380,18736
+64381,24435
+64382,14249
+64383,42401
+64384,71404
+64385,6427
+64386,41120,64064
+64387,32503
+64388,40774,95
+64389,33766
+64390,81055
+64391,71939
+64392,16211,10135
+64393,77522
+64394,23552
+64395,1207
+64396,39373
+64397,26396
+64398,52635
+64399,14006
+64400,67843,9247
+64401,21558
+64402,10352,60448
+64403,18302,11536
+64404,62605
+64405,25593
+64406,20585
+64407,15807
+64408,71820
+64409,5819,70483
+64410,67465
+64411,25992
+64412,40079
+64413,15085
+64414,51396
+64415,13382
+64416,79027
+64417,77470,27109
+64418,10170
+64419,65628
+64420,3278
+64421,22213
+64422,69035
+64423,5713
+64424,9111
+64425,61643
+64426,16708
+64427,14495
+64428,6760
+64429,56144
+64430,16633
+64431,10897
+64432,51523
+64433,73369
+64434,17232
+64435,15786,28003
+64436,64799
+64437,33951
+64438,55155
+64439,72068,15712
+64440,40027
+64441,19585
+64442,17568
+64443,4869
+64444,74706,15485
+64445,40790
+64446,57902
+64447,6299
+64448,16131,6734
+64449,73704,30687,40612
+64450,23990,68764,52699,28495
+64451,33742
+64452,9906,46065
+64453,755
+64454,65755
+64455,45260
+64456,56010
+64457,25021,28247
+64458,24369,28789
+64459,22759
+64460,28412
+64461,48527
+64462,47199
+64463,14557
+64464,45089
+64465,60417
+64466,51429
+64467,37531
+64468,73478
+64469,29745
+64470,73362
+64471,71885
+64472,70363,14754
+64473,42114
+64474,10582
+64475,13613
+64476,43891
+64477,38216
+64478,38254
+64479,37461
+64480,75672
+64481,48936
+64482,7980
+64483,16277,31690,60703
+64484,3596
+64485,15060,6488,7052
+64486,44506
+64487,17290
+64488,64581,36792
+64489,30965
+64490,65949
+64491,3219
+64492,10008
+64493,36844
+64494,21382,33115
+64495,57319,38940
+64496,39294
+64497,49436,14136
+64498,6359,15289
+64499,53184
+64500,21298
+64501,69547
+64502,68710
+64503,69894
+64504,62367
+64505,70895
+64506,67764,77519
+64507,41938
+64508,50750
+64509,33021
+64510,74078
+64511,50724
+64512,49801
+64513,11668
+64514,44417
+64515,41180
+64516,76509
+64517,21301,46848
+64518,7949
+64519,39675,45922
+64520,49834,77627
+64521,62602
+64522,63038
+64523,14503,56237
+64524,35466
+64525,60997
+64526,68773
+64527,3784
+64528,34467
+64529,30539
+64530,80460
+64531,74229
+64532,46450,39035
+64533,79636,63839,78871
+64534,75989
+64535,18287
+64536,63191,59897
+64537,47301
+64538,31229
+64539,71654,55226
+64540,75492
+64541,42579
+64542,41515
+64543,6015,60768
+64544,75323,19398
+64545,68901
+64546,78598
+64547,54106
+64548,7265,4495,18775
+64549,47535
+64550,50617
+64551,21962
+64552,4977
+64553,35705,14258
+64554,14550,6463
+64555,23254
+64556,59014,32043
+64557,61598
+64558,19737
+64559,12336
+64560,43690
+64561,57480,66843
+64562,50729,35793
+64563,35239,21348
+64564,40923
+64565,70638
+64566,18437
+64567,50806
+64568,21986,60325
+64569,42696
+64570,2674
+64571,26258
+64572,6155,242
+64573,16799
+64574,54086
+64575,15320,52298
+64576,7963
+64577,63815
+64578,16158
+64579,58953,77112
+64580,13906
+64581,67790
+64582,33914
+64583,10768,76385
+64584,35557
+64585,75896
+64586,76487
+64587,36652
+64588,3417
+64589,65783
+64590,7150
+64591,17324,69892,78323
+64592,68291
+64593,24843
+64594,63258
+64595,21973
+64596,45458
+64597,10180
+64598,41205
+64599,68419
+64600,34587
+64601,14845
+64602,25452
+64603,2838
+64604,8548
+64605,76066
+64606,5621
+64607,65633
+64608,22104,49303
+64609,31654
+64610,29310
+64611,44914
+64612,77742,45900
+64613,72411
+64614,55457,50945
+64615,31753
+64616,32887
+64617,49384
+64618,31566
+64619,11117
+64620,720
+64621,57314
+64622,16865
+64623,24256
+64624,54161
+64625,61978
+64626,77552
+64627,44793
+64628,36996
+64629,16690
+64630,23425
+64631,72631,53221
+64632,73292
+64633,31833
+64634,42434,57434
+64635,41910
+64636,47525
+64637,81138
+64638,74003
+64639,38852
+64640,23719,81747
+64641,41392
+64642,74881
+64643,10926
+64644,43250
+64645,16991
+64646,5128
+64647,58255
+64648,15172
+64649,65688
+64650,26508,25619
+64651,6264
+64652,81384
+64653,18307
+64654,66176
+64655,42579
+64656,54731
+64657,60015,3145
+64658,22028
+64659,49673
+64660,13569
+64661,74577
+64662,3725
+64663,8320
+64664,23894
+64665,50319
+64666,45087
+64667,30418
+64668,56935
+64669,53789
+64670,81566
+64671,45099
+64672,40813,176
+64673,24476
+64674,23326
+64675,68690
+64676,70203
+64677,78710
+64678,57630
+64679,48541
+64680,50114
+64681,72836
+64682,80083
+64683,20575
+64684,74868
+64685,18749
+64686,66664
+64687,69215
+64688,2574
+64689,6900,15701
+64690,61130
+64691,65774
+64692,7210
+64693,12301
+64694,36799
+64695,15748
+64696,5638
+64697,38372,10281
+64698,2751,33973
+64699,64390
+64700,22417
+64701,71802,27193
+64702,75249
+64703,474
+64704,3327
+64705,69736
+64706,7309
+64707,39261
+64708,75510,24744
+64709,44017,71154
+64710,38986
+64711,72528
+64712,34584
+64713,26903
+64714,60055
+64715,23745
+64716,43174
+64717,79966
+64718,13708
+64719,15606,42755
+64720,6239
+64721,65406,33947
+64722,38216
+64723,41150
+64724,72529
+64725,71117
+64726,72092
+64727,20000
+64728,45118
+64729,77784
+64730,36147
+64731,21085
+64732,70538
+64733,1200
+64734,79804
+64735,32586
+64736,57774
+64737,1280
+64738,2746
+64739,23465
+64740,36365
+64741,60057
+64742,59471
+64743,14171
+64744,9288
+64745,52109,52562
+64746,46773
+64747,28687
+64748,69505
+64749,6437
+64750,65119
+64751,5753
+64752,81320
+64753,63741
+64754,8074
+64755,8848
+64756,6660
+64757,72867
+64758,30580
+64759,38118,7686
+64760,58341
+64761,57927,23147
+64762,9512,50403
+64763,55948
+64764,61276
+64765,20242
+64766,10526
+64767,81277
+64768,30271,20305
+64769,37351
+64770,64068
+64771,66032,59244
+64772,70456
+64773,79844
+64774,62173
+64775,73934
+64776,71403
+64777,35967
+64778,54195
+64779,18783
+64780,1193
+64781,74296
+64782,23501
+64783,35431
+64784,9920,35228,56081
+64785,5911
+64786,65543
+64787,35640
+64788,44239
+64789,31484,58107
+64790,46465,69693
+64791,23644,3043,72070
+64792,52555
+64793,78222
+64794,52589,14487
+64795,81875
+64796,60386
+64797,70832
+64798,60112
+64799,64723
+64800,17947
+64801,31616
+64802,41595
+64803,24403
+64804,75747
+64805,43784
+64806,60012
+64807,81119
+64808,64489
+64809,62354
+64810,22539
+64811,79156
+64812,39943
+64813,20304
+64814,42524
+64815,27259
+64816,23369
+64817,16728
+64818,60128,58444
+64819,32436
+64820,43422
+64821,37716
+64822,12718
+64823,8778,59028
+64824,15689
+64825,26545,39394
+64826,4828
+64827,27350
+64828,7090
+64829,25180
+64830,52593
+64831,79730
+64832,4819
+64833,19986,11428
+64834,63102
+64835,44789
+64836,77854
+64837,59198
+64838,19079
+64839,3833,65163
+64840,26103
+64841,23870
+64842,71705
+64843,58673
+64844,74798,31410
+64845,44500
+64846,26805,9881
+64847,44522
+64848,31154
+64849,4511
+64850,37984
+64851,13839
+64852,2125
+64853,24784
+64854,3453
+64855,73530
+64856,22546
+64857,46878
+64858,27962,71602
+64859,24337
+64860,79713
+64861,68755
+64862,12206
+64863,17480,45762
+64864,43197
+64865,2326
+64866,58625
+64867,8212
+64868,12531
+64869,32629
+64870,52307
+64871,46525
+64872,53813,27252
+64873,41246
+64874,6817
+64875,80773
+64876,18462
+64877,24064,80181
+64878,35036
+64879,34954
+64880,39183
+64881,70815
+64882,22746
+64883,40747
+64884,71374,77796
+64885,76279
+64886,9151,24016,77829
+64887,45208,1909
+64888,10660,79959
+64889,8152
+64890,54223
+64891,23210
+64892,675
+64893,64866,36919
+64894,25857
+64895,34148
+64896,797
+64897,2230
+64898,7694
+64899,35723
+64900,50561
+64901,42366
+64902,38747
+64903,20641
+64904,34366
+64905,79302
+64906,78787
+64907,36528
+64908,66901
+64909,48512
+64910,12129
+64911,59169
+64912,37750
+64913,54056
+64914,15285
+64915,82145
+64916,64921
+64917,73644
+64918,3313
+64919,3253
+64920,17948
+64921,47133,71952
+64922,49823
+64923,34149
+64924,50938
+64925,36051
+64926,76471
+64927,20991
+64928,34132
+64929,52105
+64930,24459
+64931,77712
+64932,55469
+64933,51059,62033
+64934,29980
+64935,30718
+64936,7731
+64937,47880
+64938,57204
+64939,63684
+64940,15968,45441
+64941,77333,34586
+64942,49970,63512
+64943,80801
+64944,10813,28875
+64945,57993
+64946,38052
+64947,61006
+64948,47363,43102
+64949,32886
+64950,42662,19151
+64951,796
+64952,48773
+64953,36013
+64954,34002
+64955,72637
+64956,64976
+64957,68519
+64958,9936
+64959,62727
+64960,61794
+64961,47006
+64962,70864
+64963,15394
+64964,8000
+64965,64652
+64966,46084,35658
+64967,54788
+64968,20299
+64969,42779,11187,74427
+64970,10647
+64971,34219
+64972,11140
+64973,57474
+64974,75881
+64975,79306,19666
+64976,16996
+64977,13922
+64978,49391
+64979,16292
+64980,10938
+64981,78028
+64982,47156
+64983,55604
+64984,56893
+64985,76862
+64986,13331
+64987,41545
+64988,24729,38979,58937
+64989,26272,71074,50445
+64990,60815,54937
+64991,54118
+64992,75634
+64993,23560
+64994,38384
+64995,5142
+64996,39530
+64997,33814
+64998,81303
+64999,74938
+65000,52464,53422,1027
+65001,26772
+65002,74828
+65003,39364
+65004,69696
+65005,27129
+65006,41526,53507
+65007,13922
+65008,43668
+65009,54511,67045
+65010,1975,1596,39284
+65011,3213
+65012,80338
+65013,73282
+65014,61116
+65015,50111
+65016,61201,33630
+65017,24115,3457
+65018,67366
+65019,78939
+65020,35599
+65021,4425
+65022,27636
+65023,56656,69461,78923
+65024,14691
+65025,58134
+65026,19406
+65027,75530
+65028,67147
+65029,65926
+65030,36147
+65031,57593
+65032,72125,39283,24891,20421,32298,58143
+65033,55230
+65034,60149,7121
+65035,3547,45507
+65036,78156,64362
+65037,13947
+65038,70201
+65039,12474
+65040,30424
+65041,72715
+65042,57955
+65043,24270
+65044,18678
+65045,64061,16756
+65046,33453,78176
+65047,41600
+65048,61749
+65049,269
+65050,12371
+65051,32534
+65052,39938
+65053,13311
+65054,43624
+65055,25262,78798,14125
+65056,49428
+65057,9129
+65058,15591
+65059,9777,50623
+65060,29366,24378
+65061,81025
+65062,17231
+65063,42348
+65064,1355
+65065,73345,6816,1902
+65066,9193
+65067,49047
+65068,12694,3698
+65069,17624
+65070,27498
+65071,59553
+65072,7695
+65073,54296
+65074,45619
+65075,80312
+65076,32640,11757
+65077,30281
+65078,14942
+65079,77573
+65080,73723
+65081,14587
+65082,46847
+65083,73645
+65084,70083
+65085,72097
+65086,50570
+65087,28622,13567
+65088,80836
+65089,19542
+65090,11364,68195
+65091,65515
+65092,65191
+65093,20596
+65094,27851,54981
+65095,63770,42243
+65096,4909
+65097,14822
+65098,9212,49018
+65099,72809
+65100,13512,15807
+65101,60694
+65102,40618
+65103,30181
+65104,71244
+65105,8724
+65106,49443
+65107,50623
+65108,31318
+65109,36737
+65110,23623
+65111,33485
+65112,3166
+65113,40831
+65114,22235
+65115,63506
+65116,77938
+65117,73586
+65118,5014,45348
+65119,23909,35199
+65120,18694
+65121,5127,42677
+65122,8522
+65123,6052,26757
+65124,66887
+65125,63527
+65126,33817
+65127,51313
+65128,48710
+65129,57981,4973
+65130,11109
+65131,45216,19773
+65132,54541
+65133,59708,21813
+65134,7229,32212
+65135,48327
+65136,49931
+65137,56259
+65138,49880
+65139,53879,22417,22018,68922
+65140,79585
+65141,45852
+65142,21442
+65143,81978
+65144,50200
+65145,36184
+65146,53300
+65147,57597,58585
+65148,51326
+65149,69954,2701
+65150,9135
+65151,10119,75223
+65152,29715
+65153,40559
+65154,2802
+65155,10795
+65156,44480
+65157,53955
+65158,81260
+65159,2162
+65160,66425,20406,79022
+65161,71115
+65162,58410
+65163,2280
+65164,24419
+65165,80944
+65166,12335
+65167,45619
+65168,45870
+65169,59835
+65170,62463
+65171,59567
+65172,26893
+65173,52226
+65174,30029
+65175,33283,51929
+65176,49918
+65177,160
+65178,60627,35171
+65179,51059
+65180,23870
+65181,24628,73460
+65182,81117
+65183,28409
+65184,22072
+65185,68306
+65186,23223
+65187,8237,70696,40087
+65188,47312
+65189,10386
+65190,13503
+65191,42963
+65192,25295
+65193,33583
+65194,70324
+65195,73506
+65196,35633
+65197,75912
+65198,64088,51458
+65199,42332
+65200,4776
+65201,34070
+65202,47382,22508
+65203,6828
+65204,75339
+65205,10596
+65206,29811
+65207,57923
+65208,28326
+65209,45686
+65210,64563,79255,47581
+65211,61742
+65212,73693
+65213,14562
+65214,71654,19842
+65215,51610
+65216,31025,65459
+65217,27706
+65218,36184
+65219,14425
+65220,48855
+65221,31859
+65222,62144
+65223,72030
+65224,81328
+65225,4897
+65226,42505,76422,41953
+65227,1766
+65228,28819
+65229,27166
+65230,1200
+65231,22746
+65232,29149
+65233,40388,57267
+65234,25199
+65235,43395,74280,37817
+65236,1200
+65237,62680
+65238,74583
+65239,71035
+65240,80262
+65241,10471
+65242,35007
+65243,29121,47937
+65244,21563
+65245,17865
+65246,12272,13814
+65247,47394
+65248,58746
+65249,8681
+65250,50673,67269
+65251,59950
+65252,54132
+65253,34024
+65254,36936
+65255,43944
+65256,15837,22826
+65257,59091
+65258,37718
+65259,80358
+65260,68109
+65261,61833,41948
+65262,57967,12395
+65263,32638
+65264,71661
+65265,38666
+65266,30687
+65267,8597
+65268,53696
+65269,76560
+65270,35234
+65271,58844
+65272,60990
+65273,19644
+65274,66144
+65275,51138,44890
+65276,30182
+65277,34348,39836
+65278,24000
+65279,37322
+65280,54325
+65281,79787
+65282,50421
+65283,75850
+65284,8318
+65285,59777
+65286,25000
+65287,63247
+65288,77519,69310
+65289,28281
+65290,80698
+65291,29541
+65292,30558
+65293,24305
+65294,64080,70726
+65295,65003,18925
+65296,54314
+65297,48213
+65298,48773,30102
+65299,75486
+65300,7742
+65301,9599
+65302,49891,42022
+65303,62760
+65304,71726
+65305,72805
+65306,20977
+65307,49750
+65308,75237,23607,38755
+65309,13413
+65310,5525
+65311,63305
+65312,43721
+65313,64431
+65314,48822
+65315,39266
+65316,33309
+65317,22250
+65318,63762
+65319,21174
+65320,82112
+65321,36343
+65322,36575
+65323,34250
+65324,4779
+65325,30133,47311,74225
+65326,43460,25529,77659
+65327,11442
+65328,3719
+65329,29828
+65330,47610
+65331,45049
+65332,69341
+65333,28535
+65334,54590
+65335,7696
+65336,5344
+65337,52795
+65338,7389
+65339,61944,11425
+65340,22994
+65341,3401
+65342,32357
+65343,40444
+65344,71819
+65345,60427
+65346,34
+65347,68183
+65348,5695
+65349,48298
+65350,65691
+65351,27346
+65352,28401
+65353,53457
+65354,80294
+65355,48674,8148
+65356,25740,41707
+65357,75268
+65358,74065,71410
+65359,49433
+65360,43137,39500
+65361,7633,7837
+65362,61667
+65363,47829
+65364,61856
+65365,3633
+65366,24924
+65367,5062
+65368,38221,61735
+65369,20238
+65370,66863
+65371,63655
+65372,22843
+65373,80768
+65374,32605
+65375,16261
+65376,9119,75649
+65377,47647
+65378,67749
+65379,44959
+65380,80888
+65381,58077,18106
+65382,21909
+65383,35903,67178
+65384,22779
+65385,40764
+65386,61595,66341
+65387,36058
+65388,29026
+65389,35272,15017
+65390,66706
+65391,61730
+65392,59432
+65393,68568
+65394,34593
+65395,5118
+65396,33513
+65397,10974
+65398,79634
+65399,68994
+65400,28733
+65401,3893
+65402,6151
+65403,27107,30867
+65404,75952
+65405,64882
+65406,27031
+65407,51429
+65408,77586
+65409,52682
+65410,52459,74297
+65411,2332,44524
+65412,76965
+65413,21775
+65414,41603
+65415,78223
+65416,79468
+65417,76642
+65418,39854,50114
+65419,64776
+65420,41010
+65421,76560
+65422,67356
+65423,7766
+65424,67583
+65425,524
+65426,11273
+65427,80392,58131
+65428,55733
+65429,66600,16714
+65430,40152
+65431,14508
+65432,70583
+65433,34280
+65434,41860
+65435,39912,56401
+65436,40370
+65437,18632
+65438,54178
+65439,42968
+65440,70903
+65441,63258
+65442,51003
+65443,67276,67919
+65444,28641,32194
+65445,64146
+65446,4691
+65447,965
+65448,1493
+65449,6665
+65450,41223
+65451,38335
+65452,35339
+65453,58694
+65454,58844,10239
+65455,13516
+65456,65824
+65457,38647
+65458,54464
+65459,24086,27982
+65460,73927
+65461,27447
+65462,13347,82162,9746,55790
+65463,71686
+65464,38932
+65465,5361
+65466,33768
+65467,80642
+65468,19625
+65469,22157,61713
+65470,73551
+65471,3427,20268
+65472,62554
+65473,57521,75367
+65474,60812
+65475,71981
+65476,79827,15952
+65477,34364
+65478,23563,30054
+65479,48530
+65480,8885,66236
+65481,12375,53832
+65482,65790
+65483,7973
+65484,25744,42575
+65485,22220,60247
+65486,78068
+65487,1702
+65488,50445
+65489,68269
+65490,63976,42239
+65491,36497,63717
+65492,13265
+65493,51114
+65494,68774
+65495,9064,54879
+65496,38414
+65497,63872
+65498,65331
+65499,16797
+65500,17350
+65501,30397,17958
+65502,5634
+65503,56262
+65504,5061
+65505,3399
+65506,51550,10852
+65507,95
+65508,5368
+65509,15555
+65510,17221,50259
+65511,41689
+65512,70100
+65513,13115
+65514,47738
+65515,7462,5657
+65516,3677
+65517,14012
+65518,1099
+65519,20427
+65520,74531
+65521,63120
+65522,33384
+65523,34750
+65524,43959
+65525,36660
+65526,46415,54872
+65527,9116
+65528,61205
+65529,40739
+65530,18929
+65531,25416
+65532,76543
+65533,64570,79688
+65534,76434,58076
+65535,31826
+65536,73759
+65537,44228
+65538,19489
+65539,23184,72375
+65540,67876
+65541,30485
+65542,37263
+65543,50724
+65544,52843
+65545,70847
+65546,54165
+65547,44518,859
+65548,28635
+65549,5417
+65550,49412
+65551,13501,47552
+65552,29542,20833
+65553,4630
+65554,21319
+65555,12474
+65556,12142,75578,60175
+65557,8975
+65558,21064
+65559,78517
+65560,76474
+65561,33875
+65562,76575,54042
+65563,27473,56392
+65564,10109
+65565,361
+65566,67588
+65567,55332
+65568,25278
+65569,60511
+65570,80853
+65571,47140
+65572,65374
+65573,48348
+65574,45598
+65575,29944
+65576,42040
+65577,68246
+65578,16208
+65579,33194
+65580,53016
+65581,70520
+65582,60432
+65583,81869
+65584,20829
+65585,15384
+65586,79245
+65587,16999
+65588,18905
+65589,30436
+65590,27917
+65591,35585,24785
+65592,941
+65593,8222
+65594,40816
+65595,74973,3412
+65596,18071
+65597,65589
+65598,50053,81948
+65599,16949
+65600,60646
+65601,63909,36850
+65602,72666
+65603,19035
+65604,62503
+65605,77723
+65606,70708
+65607,985
+65608,8362
+65609,34619
+65610,44884
+65611,13141
+65612,64973
+65613,54338,54734
+65614,54476,28435
+65615,47949
+65616,40416
+65617,6618
+65618,77996
+65619,5306,865
+65620,6776
+65621,26503,81950
+65622,4534
+65623,33822
+65624,47431
+65625,64931
+65626,36392
+65627,60780
+65628,64931
+65629,34217
+65630,57283
+65631,55055
+65632,69060
+65633,41689,36269
+65634,37263,60299
+65635,33943
+65636,30335
+65637,57867
+65638,55019,45282
+65639,2802
+65640,35534
+65641,66695
+65642,18569
+65643,35188
+65644,9596
+65645,11405
+65646,66832,28466,19181
+65647,67388,40093
+65648,63725
+65649,55022
+65650,77399
+65651,74446
+65652,26334
+65653,71394
+65654,13590
+65655,38439,32550
+65656,618
+65657,5420
+65658,70332
+65659,34702
+65660,6706
+65661,48439
+65662,46085
+65663,40709,78118
+65664,27764
+65665,76007
+65666,38472
+65667,30616
+65668,43192
+65669,73912
+65670,17869
+65671,8175,16294
+65672,177
+65673,69493,80166
+65674,35879
+65675,81041,3092
+65676,48721
+65677,65572
+65678,39499
+65679,47437
+65680,4039
+65681,39776,1882
+65682,67208
+65683,72357
+65684,74711
+65685,29098
+65686,45264
+65687,47603
+65688,35781
+65689,60467
+65690,14112
+65691,1110
+65692,64045,12561
+65693,75686
+65694,33714
+65695,51551
+65696,56977
+65697,74067
+65698,37080
+65699,43089,31496
+65700,50617
+65701,52102
+65702,13978,39444,1712
+65703,35095,40957
+65704,57421
+65705,19696
+65706,77399
+65707,47349
+65708,33691
+65709,37263
+65710,56589
+65711,41703
+65712,20058
+65713,17468
+65714,22495
+65715,43167
+65716,54981
+65717,8678
+65718,77177,54676
+65719,59976
+65720,72855
+65721,14339
+65722,33972
+65723,36666
+65724,22636
+65725,39842
+65726,41696
+65727,63971,40687,29898,50065
+65728,2852
+65729,45617
+65730,31391,79784
+65731,33640
+65732,8314
+65733,72746,1191
+65734,72052
+65735,34421
+65736,10747
+65737,55419
+65738,42547
+65739,50619
+65740,34455
+65741,52393
+65742,3295
+65743,39566
+65744,20403
+65745,19115
+65746,71058
+65747,50395
+65748,33785
+65749,48534
+65750,17782
+65751,19876
+65752,16645
+65753,36053
+65754,53012
+65755,12742
+65756,36005
+65757,21364
+65758,80902
+65759,67694
+65760,70604
+65761,5290
+65762,50328,78242
+65763,5148
+65764,25378
+65765,45190,58800
+65766,8289,49088
+65767,55029
+65768,44901
+65769,45022
+65770,68827
+65771,49117
+65772,66967,69117
+65773,14401
+65774,3524
+65775,74821
+65776,23634
+65777,15535
+65778,81325,38905
+65779,10454,37088
+65780,30542
+65781,61129
+65782,68556
+65783,59440
+65784,75530,39090
+65785,55158
+65786,45389
+65787,56117
+65788,65630
+65789,58726
+65790,52238
+65791,59439
+65792,6138,16451
+65793,49980
+65794,51901
+65795,59192
+65796,1658
+65797,53574
+65798,78676
+65799,47873
+65800,75218
+65801,77637
+65802,28458
+65803,44892
+65804,7534,38725
+65805,20494
+65806,16281
+65807,34902
+65808,15272
+65809,47041,2740
+65810,40109
+65811,62684
+65812,70494
+65813,13699
+65814,12581
+65815,46372
+65816,36074,8064
+65817,36611
+65818,57307
+65819,57473
+65820,58745
+65821,61473
+65822,79431
+65823,51184,6523
+65824,71604
+65825,25416
+65826,9046
+65827,16674
+65828,49938
+65829,33326
+65830,63770
+65831,22276
+65832,71846
+65833,11201,19946
+65834,12856
+65835,19833,50709
+65836,80519
+65837,32932
+65838,20937
+65839,48439,24224
+65840,25782
+65841,11772,24827
+65842,57292,6508
+65843,54970
+65844,50724
+65845,78998
+65846,60913,25027
+65847,20651
+65848,1536
+65849,57424
+65850,59541
+65851,33112
+65852,26119
+65853,17597
+65854,72880
+65855,29828
+65856,29993
+65857,37959
+65858,53278,724
+65859,32242
+65860,14381
+65861,15714
+65862,24218
+65863,49013
+65864,81684,21055
+65865,6930
+65866,27031
+65867,27690
+65868,30771,21112
+65869,66863
+65870,46312
+65871,3161
+65872,75833,68422,16549
+65873,8611
+65874,70013
+65875,55571
+65876,14974
+65877,16753
+65878,62050
+65879,30000
+65880,42735,22394
+65881,80716
+65882,47249,71587
+65883,1556
+65884,47059
+65885,64644
+65886,14878
+65887,42040
+65888,17620
+65889,27392
+65890,58274,18958
+65891,56562
+65892,68171,71099
+65893,43000,73066,46376,28458
+65894,29542
+65895,2853
+65896,25113
+65897,78362
+65898,70800
+65899,70786
+65900,19964
+65901,1758
+65902,20482,35085
+65903,33742,38852
+65904,6817
+65905,5764,69973,10666
+65906,77892
+65907,37833
+65908,9644
+65909,41815
+65910,11838
+65911,45240
+65912,73213
+65913,42854,46130
+65914,50633,762
+65915,42010
+65916,20027
+65917,37032
+65918,5615
+65919,18378
+65920,7960
+65921,14879
+65922,1040
+65923,113
+65924,62568
+65925,2888
+65926,75376
+65927,39286
+65928,5194,21801
+65929,22012,60173,70723,24025
+65930,59681
+65931,2430
+65932,24574
+65933,70383,47966
+65934,23739
+65935,23795
+65936,78122
+65937,62973
+65938,38002
+65939,34326
+65940,41389
+65941,74980
+65942,74057
+65943,18749
+65944,34260
+65945,69271
+65946,69025,72882
+65947,17402
+65948,30935
+65949,66887
+65950,29618
+65951,18483,76494
+65952,70787
+65953,44325
+65954,37074
+65955,67841
+65956,46880
+65957,67243
+65958,41964
+65959,39041,64984
+65960,43946
+65961,67732,71252
+65962,65755
+65963,71031
+65964,50931,11118
+65965,33695
+65966,63021
+65967,81494,17777
+65968,60323
+65969,30359,17816
+65970,54125,3622
+65971,37421,34359
+65972,61851
+65973,56722
+65974,16662,9892
+65975,81709
+65976,3016
+65977,31652,67456
+65978,19322,40568
+65979,63412,10033
+65980,52133
+65981,57796
+65982,72749
+65983,1060
+65984,68024
+65985,39785
+65986,69062
+65987,44218
+65988,26412,72985
+65989,72738,260
+65990,52936
+65991,23090
+65992,65525,26898
+65993,13917
+65994,31039,60258,59814
+65995,19585
+65996,4858
+65997,17071
+65998,1855
+65999,77862
+66000,10896
+66001,21769
+66002,71363
+66003,29239
+66004,4978
+66005,76534
+66006,44485
+66007,49349
+66008,60045
+66009,35813
+66010,30034,20452
+66011,746,45022
+66012,13393
+66013,57378
+66014,81801
+66015,65124
+66016,59500
+66017,77460
+66018,49102
+66019,22308
+66020,70332
+66021,17472
+66022,48398
+66023,16290
+66024,55119
+66025,17884,28165
+66026,42271
+66027,44267
+66028,76942,41180
+66029,64193
+66030,62217
+66031,53884
+66032,4908
+66033,49231
+66034,43163
+66035,72813
+66036,45353
+66037,15929
+66038,42665
+66039,34306
+66040,1624,31142
+66041,6808
+66042,10651
+66043,10010
+66044,33297
+66045,21962
+66046,19938
+66047,58338
+66048,72491
+66049,50196
+66050,21835
+66051,14587
+66052,45365
+66053,22358
+66054,40185
+66055,54658,10162
+66056,63984
+66057,57805
+66058,55603
+66059,65700
+66060,6007
+66061,19266,44873
+66062,72696
+66063,75213,75998
+66064,28976
+66065,13703
+66066,8812
+66067,60284
+66068,56518
+66069,10810
+66070,2595,77070
+66071,18237
+66072,9633
+66073,14170
+66074,20106
+66075,37696,37491
+66076,4461
+66077,1271
+66078,32607
+66079,74747
+66080,14763
+66081,41401,17723
+66082,58131
+66083,40098,17827
+66084,34874
+66085,65777
+66086,21990
+66087,39544
+66088,66720
+66089,4303
+66090,31862,77405
+66091,15764
+66092,73571
+66093,37981
+66094,25472
+66095,71078
+66096,71206,28084
+66097,48620
+66098,72415
+66099,47908
+66100,19672
+66101,77218
+66102,73238,25194
+66103,44592,57801
+66104,71260
+66105,32928
+66106,35796
+66107,43200,19985
+66108,47625
+66109,57527,7090
+66110,43567
+66111,38117
+66112,5171
+66113,35929
+66114,65576,57276
+66115,47073
+66116,74657
+66117,62010
+66118,80855
+66119,10200
+66120,54399
+66121,38309
+66122,27920
+66123,2844
+66124,42857
+66125,25091
+66126,7498
+66127,66816,9728
+66128,45321
+66129,73855
+66130,24070
+66131,33454
+66132,50733
+66133,48430
+66134,59643,53992
+66135,52670
+66136,40764,14314
+66137,8311
+66138,9279
+66139,56946
+66140,80316
+66141,56262
+66142,21503
+66143,53831
+66144,35368
+66145,9389
+66146,80000
+66147,79221
+66148,29213
+66149,77649,24372
+66150,81494
+66151,41334
+66152,14622,37
+66153,13770
+66154,67893
+66155,5654
+66156,33868
+66157,15524,13387
+66158,6282
+66159,69217
+66160,54768
+66161,17630
+66162,54194
+66163,70210
+66164,18827,65942
+66165,44669
+66166,33199,46844,80352
+66167,16759
+66168,77312
+66169,15945
+66170,6650
+66171,33989
+66172,49471,73992
+66173,68877
+66174,1889
+66175,49967,53327
+66176,66131
+66177,46787
+66178,10315
+66179,36973
+66180,41305,9343
+66181,3754,5707,15298
+66182,23169
+66183,23444
+66184,20106
+66185,11668
+66186,26584
+66187,5524
+66188,13404
+66189,72815
+66190,6189
+66191,7079
+66192,77049
+66193,4354,57263,11785
+66194,36088
+66195,46904
+66196,42527
+66197,69482
+66198,54311
+66199,33823
+66200,50189,63945
+66201,27482,75227
+66202,58196
+66203,50578
+66204,1833
+66205,73671,44374,57509
+66206,76335,72246
+66207,49755
+66208,40997
+66209,41488
+66210,41705
+66211,61620
+66212,73397
+66213,37521
+66214,61929,77196
+66215,46790,70978
+66216,29267
+66217,24817
+66218,7343
+66219,75767
+66220,79427
+66221,40239,70581,70920
+66222,37807
+66223,44859
+66224,25282
+66225,55338
+66226,70018
+66227,27616
+66228,22654,13691
+66229,76789
+66230,7945
+66231,67810
+66232,56869
+66233,57485
+66234,64758
+66235,25021
+66236,76460
+66237,9213,68529,61973,19284
+66238,73274
+66239,81474
+66240,75074
+66241,33571
+66242,53982
+66243,63323
+66244,41198
+66245,38016
+66246,39304,25671
+66247,25835,25374
+66248,25922
+66249,36639
+66250,21625,38835
+66251,72227
+66252,58106,69558
+66253,1771,17389
+66254,81516
+66255,12202
+66256,4093,79647,42054
+66257,17075
+66258,63
+66259,67885
+66260,20725
+66261,67699,2655
+66262,80593
+66263,41254
+66264,44406,29156,9752
+66265,63868,42940,60725,68856
+66266,28998
+66267,35401
+66268,55907
+66269,42249
+66270,11028
+66271,20589,12578,60625
+66272,76512
+66273,31763
+66274,14054,73058
+66275,12161
+66276,13532
+66277,67773
+66278,16690
+66279,73147
+66280,22589
+66281,46323
+66282,78352,35338,74006,5021
+66283,40692
+66284,46703
+66285,3750,7695
+66286,48082,78034
+66287,4670
+66288,1196
+66289,58080
+66290,30959
+66291,59815,52759
+66292,49812
+66293,79395
+66294,46645
+66295,30271
+66296,61131
+66297,7303
+66298,64780,16982
+66299,65415
+66300,43773,7255
+66301,36728
+66302,69261,34435
+66303,79744
+66304,20934
+66305,33597,62289
+66306,79599
+66307,70521
+66308,80667
+66309,4840
+66310,80610
+66311,34332
+66312,75082
+66313,56223
+66314,28259
+66315,46627
+66316,81770
+66317,33790
+66318,78353
+66319,6776
+66320,3004
+66321,18567
+66322,8256
+66323,11921
+66324,27039
+66325,76893,34870
+66326,2688
+66327,33240,62275
+66328,79908
+66329,7731
+66330,10965
+66331,9261
+66332,49674
+66333,73138
+66334,4783
+66335,53985
+66336,35827
+66337,30021
+66338,48183,46115
+66339,73754
+66340,24596
+66341,44404
+66342,57318
+66343,70967
+66344,21501,27527
+66345,34457,49042
+66346,10795
+66347,2230
+66348,56044,58991
+66349,49598
+66350,42128
+66351,65921
+66352,68817
+66353,74182
+66354,25545
+66355,15970
+66356,34232
+66357,36853
+66358,2045
+66359,81294
+66360,6641,63662
+66361,59964
+66362,16056
+66363,13439,25433
+66364,29633,12509
+66365,36370,55955
+66366,74629,21207
+66367,951
+66368,49067
+66369,38686
+66370,6988
+66371,77305
+66372,32736
+66373,21782
+66374,51362
+66375,35409
+66376,19195
+66377,15297
+66378,3939
+66379,61182
+66380,80730
+66381,5902
+66382,20626
+66383,21815
+66384,28848
+66385,8272
+66386,4686,70213
+66387,17278
+66388,13047
+66389,38162
+66390,17207
+66391,15006
+66392,77321
+66393,37823
+66394,69001
+66395,76342,10007
+66396,37317
+66397,65335,50529
+66398,48961
+66399,43786
+66400,76910
+66401,61753
+66402,63468
+66403,69543
+66404,73134
+66405,50653
+66406,5080
+66407,48711
+66408,388
+66409,78188
+66410,51484
+66411,44528
+66412,80338
+66413,38818
+66414,80649,22201
+66415,21406
+66416,57100
+66417,60264
+66418,40903
+66419,44485
+66420,75402
+66421,74388
+66422,6199
+66423,17976
+66424,74711
+66425,80808
+66426,71245,77982,11302
+66427,22912
+66428,23329
+66429,74411
+66430,28610,70179
+66431,58392
+66432,22839
+66433,54593
+66434,56398
+66435,36981
+66436,12012
+66437,48130
+66438,33512
+66439,34529
+66440,8932
+66441,29170
+66442,3387
+66443,33980
+66444,63532
+66445,67928
+66446,49274
+66447,12166
+66448,22752
+66449,29856
+66450,3596
+66451,55572,33491
+66452,48025
+66453,7572
+66454,48083,81686
+66455,19779
+66456,31987
+66457,53024
+66458,6655
+66459,63283
+66460,34909,9812
+66461,65795,61302
+66462,17368
+66463,81639
+66464,35752,23638
+66465,24533,37721
+66466,57213,80673
+66467,51930
+66468,37941
+66469,45887
+66470,5999
+66471,23577
+66472,39517,62053,74326
+66473,8224
+66474,10003
+66475,36196
+66476,22468
+66477,69880
+66478,76180,80801
+66479,4726
+66480,35731
+66481,14698,77412
+66482,3661
+66483,62656,2291
+66484,46215
+66485,12185
+66486,77960
+66487,18412
+66488,61241
+66489,40699
+66490,80636
+66491,36211
+66492,79260,37015
+66493,24351,17689
+66494,79738
+66495,6325
+66496,50809,65058
+66497,48427,70260
+66498,78758
+66499,58298
+66500,58694
+66501,38907
+66502,56911
+66503,25136
+66504,70590,11082
+66505,48416
+66506,16251,71681
+66507,25091,45185
+66508,82130
+66509,26749,18084
+66510,3806
+66511,80960
+66512,10323
+66513,73037
+66514,64247
+66515,57134
+66516,21112
+66517,64380
+66518,41028
+66519,6917
+66520,64217
+66521,55135
+66522,82155,76321
+66523,28739
+66524,31681
+66525,9843
+66526,50271,10582
+66527,76355
+66528,2304
+66529,59720
+66530,7960
+66531,18430
+66532,76631
+66533,21930
+66534,59076
+66535,61052
+66536,69291,36140
+66537,25602
+66538,48986
+66539,20453
+66540,10941
+66541,24608
+66542,42714
+66543,10180
+66544,36683
+66545,5926
+66546,65883
+66547,65892,48870
+66548,23275
+66549,32258
+66550,70224
+66551,52332
+66552,1330
+66553,68524
+66554,78758,29537
+66555,63065
+66556,78841
+66557,79162
+66558,34200
+66559,2484
+66560,53729
+66561,28775
+66562,57666,4143
+66563,44860
+66564,12840
+66565,60500,41146
+66566,9068
+66567,49342
+66568,59601
+66569,33355
+66570,28028
+66571,62969
+66572,60325
+66573,78154
+66574,17645
+66575,72838
+66576,74842,39369
+66577,17382,37900
+66578,39520
+66579,69199,11461
+66580,34108,50863
+66581,4311
+66582,72396
+66583,80719
+66584,74162
+66585,24901
+66586,54295
+66587,53559,62748
+66588,50734
+66589,81843
+66590,75163,13175,44575
+66591,49044
+66592,8539
+66593,33017
+66594,8768
+66595,70523
+66596,23911
+66597,68116
+66598,54907,17779
+66599,78392
+66600,78972
+66601,81478
+66602,25739
+66603,46923
+66604,80580
+66605,81607
+66606,79816,81731
+66607,49108,35108
+66608,41531
+66609,36875
+66610,71593
+66611,69907
+66612,8089,59855
+66613,6026,18317
+66614,70336
+66615,73371,43292
+66616,72635
+66617,69370
+66618,68133
+66619,3057
+66620,13727
+66621,80699
+66622,76280
+66623,6022
+66624,61397,71629
+66625,78103
+66626,12068
+66627,10363
+66628,47893
+66629,432,36367
+66630,68375
+66631,43948
+66632,69681
+66633,34148,24365
+66634,69272
+66635,79121,75944
+66636,57244
+66637,42385
+66638,32310
+66639,80192
+66640,34199
+66641,12068
+66642,24369
+66643,63713
+66644,16373,5591
+66645,58225
+66646,57539
+66647,169
+66648,56407
+66649,68514,6586,72736
+66650,68985
+66651,50119
+66652,20551
+66653,12356
+66654,74216
+66655,80342,8444
+66656,23663,51434
+66657,43445
+66658,70051
+66659,56502
+66660,22968
+66661,72557
+66662,3447,51415
+66663,4882
+66664,80165
+66665,30505
+66666,21671,78834
+66667,43551
+66668,45855
+66669,43648
+66670,56294,13901
+66671,34548
+66672,43730,35078
+66673,34758
+66674,25827,33725
+66675,13495
+66676,61083
+66677,45023
+66678,55786
+66679,73491
+66680,1364,57939
+66681,78174,31707
+66682,23645
+66683,18854
+66684,19136
+66685,8717
+66686,32483
+66687,34884
+66688,41653
+66689,60234
+66690,26683
+66691,6029
+66692,47225
+66693,72158
+66694,21563
+66695,41228,74078
+66696,9628,29929
+66697,6344
+66698,65041
+66699,7919
+66700,57597
+66701,43522
+66702,19297
+66703,1116
+66704,70800
+66705,8799
+66706,27213
+66707,29554
+66708,40866
+66709,68864
+66710,31161
+66711,62330,8990
+66712,65382
+66713,69129
+66714,22785
+66715,68851
+66716,36377,926
+66717,78709
+66718,23068
+66719,77246
+66720,40313,980
+66721,21298
+66722,70884
+66723,23098
+66724,29798
+66725,74722
+66726,6447,64088
+66727,75486
+66728,2808,56617
+66729,63017
+66730,43747
+66731,70079
+66732,67102
+66733,47914
+66734,68037,59045
+66735,62865
+66736,46246
+66737,49028
+66738,50367,55001
+66739,51178
+66740,40516
+66741,38276
+66742,67729,37701
+66743,39243
+66744,22194
+66745,7105
+66746,7583
+66747,80759,46831,19848
+66748,66572
+66749,32005
+66750,23471
+66751,10513
+66752,20488
+66753,72804
+66754,42335
+66755,50873
+66756,52036
+66757,57178
+66758,7742
+66759,904
+66760,60251,34560,41591
+66761,56341
+66762,81190
+66763,21385
+66764,70848,8023
+66765,36735
+66766,25053
+66767,67393
+66768,2794,34036
+66769,21137
+66770,8068
+66771,12356
+66772,34969
+66773,55945
+66774,56655
+66775,3145
+66776,58117,1536
+66777,15530
+66778,36532
+66779,76513
+66780,79645
+66781,6244
+66782,12310
+66783,21288
+66784,57934
+66785,56774
+66786,21770
+66787,44831
+66788,65543
+66789,30283
+66790,49343
+66791,39616
+66792,5588
+66793,42891
+66794,77663,21764
+66795,58746
+66796,42489
+66797,99
+66798,21888
+66799,52408,2980
+66800,75144
+66801,32310,73521
+66802,48355
+66803,59044
+66804,16949
+66805,39469
+66806,21269
+66807,42098
+66808,79548
+66809,11883,28986
+66810,51669
+66811,35258
+66812,37289,19635
+66813,41649
+66814,24837
+66815,28406
+66816,47166
+66817,79690
+66818,51064,52374,57705,52421
+66819,39983
+66820,29692
+66821,47683
+66822,30412,63309
+66823,47893
+66824,12303
+66825,59182,21165
+66826,42142
+66827,30098
+66828,76420
+66829,21796
+66830,1724
+66831,59172,55954
+66832,17075
+66833,9905
+66834,38708
+66835,80475
+66836,44249
+66837,30833,44960
+66838,46855
+66839,82008
+66840,60684
+66841,7555
+66842,78882
+66843,6325
+66844,71234,38838
+66845,17813
+66846,73266
+66847,42343
+66848,59016
+66849,31795
+66850,57537,79333,38999
+66851,10073
+66852,55655,36961
+66853,17488
+66854,19767
+66855,24849
+66856,43953
+66857,7727
+66858,74665
+66859,56180
+66860,17350,48355
+66861,21761
+66862,40084
+66863,53415
+66864,22654
+66865,3790
+66866,65884
+66867,61081
+66868,39202,53841
+66869,46838
+66870,20208,29465
+66871,51450
+66872,33297
+66873,52460
+66874,48434
+66875,67097
+66876,59187
+66877,73806
+66878,77833
+66879,24945
+66880,24369
+66881,43469
+66882,28194
+66883,72563
+66884,65370
+66885,9323
+66886,44017
+66887,54209
+66888,9794,20300
+66889,70332
+66890,63280
+66891,68391
+66892,45467
+66893,39356
+66894,925
+66895,59152
+66896,55448
+66897,36469
+66898,63636
+66899,76398
+66900,3839
+66901,50912
+66902,42248
+66903,9626
+66904,45361
+66905,31328
+66906,10626
+66907,53152
+66908,33711
+66909,46467,22811
+66910,46560,23957
+66911,65637,74843,38666
+66912,45983
+66913,14756,46071
+66914,5790
+66915,23350
+66916,35398
+66917,66279
+66918,23212
+66919,7162,5428
+66920,36830
+66921,21428,60585
+66922,68175
+66923,78995
+66924,45923,46348
+66925,4946
+66926,45001,50367
+66927,11293
+66928,68351
+66929,393
+66930,56502
+66931,63765
+66932,70124
+66933,124
+66934,81348
+66935,69574
+66936,24761
+66937,21248
+66938,57674
+66939,10401
+66940,6144
+66941,41772
+66942,75233
+66943,53772
+66944,61034
+66945,1323
+66946,69759
+66947,45911
+66948,41934
+66949,75152,76655,36976,6191
+66950,65441
+66951,23671
+66952,65224
+66953,20356
+66954,3234
+66955,38629
+66956,30748,21514
+66957,23560
+66958,82156
+66959,56149
+66960,54347
+66961,27113
+66962,72071
+66963,41105
+66964,34085
+66965,66226
+66966,70301
+66967,63470
+66968,75753
+66969,44307
+66970,58202
+66971,39193
+66972,39939
+66973,39349,37728
+66974,25237
+66975,79282
+66976,20549
+66977,71410
+66978,55912
+66979,26032
+66980,5019
+66981,59328
+66982,53376
+66983,53191
+66984,61440
+66985,17650
+66986,79976
+66987,926
+66988,64551
+66989,16310
+66990,81993,64567
+66991,7111
+66992,47404
+66993,4853
+66994,73964
+66995,12874
+66996,47401
+66997,64275
+66998,35699,16498,12991
+66999,8503
+67000,60047
+67001,72191
+67002,2070
+67003,73477
+67004,70283
+67005,22649
+67006,19623
+67007,41187
+67008,42404,20488
+67009,63633
+67010,69236
+67011,18272
+67012,36331,7394
+67013,31492,59001
+67014,13500,25559
+67015,4436
+67016,75633
+67017,31424,27503
+67018,27504,58838
+67019,18497
+67020,35471,23517
+67021,78235
+67022,29176
+67023,35366
+67024,64194
+67025,38185
+67026,65264
+67027,59692
+67028,13965
+67029,4704
+67030,670
+67031,862
+67032,458
+67033,14729
+67034,81371
+67035,35992
+67036,2100
+67037,44392
+67038,67134
+67039,33266
+67040,74483,43023
+67041,81295,39602
+67042,7846
+67043,30738
+67044,52806
+67045,33389
+67046,72921
+67047,59425
+67048,19314
+67049,59067
+67050,8516
+67051,72560
+67052,31241
+67053,59599,19562
+67054,35236
+67055,10278
+67056,59188
+67057,9278
+67058,32035
+67059,69485
+67060,8319
+67061,80921
+67062,38230,66874
+67063,5666
+67064,3331,69816
+67065,72052
+67066,14228
+67067,47518
+67068,79497
+67069,16284
+67070,49334,16817
+67071,1661,47084
+67072,28703
+67073,26729
+67074,55332
+67075,18314
+67076,24405
+67077,72039
+67078,57374
+67079,21736
+67080,25696
+67081,12198
+67082,59329,18399
+67083,32789
+67084,34300
+67085,31395
+67086,18953
+67087,60492
+67088,31726
+67089,62653
+67090,18182
+67091,25437
+67092,28079
+67093,73506
+67094,68756
+67095,70093
+67096,53723
+67097,66404
+67098,11224,36394
+67099,72381
+67100,57817
+67101,75585
+67102,41660
+67103,16299
+67104,43014,51051
+67105,54993
+67106,76259
+67107,79724
+67108,16690
+67109,27608
+67110,58249
+67111,27460
+67112,53552
+67113,30718
+67114,63059
+67115,74344
+67116,33380
+67117,66151,3221
+67118,14843
+67119,62675
+67120,34793
+67121,39543
+67122,2812
+67123,43579,148
+67124,24597
+67125,1899
+67126,66745
+67127,29118
+67128,11942
+67129,6837,80633
+67130,44309
+67131,20305
+67132,78802
+67133,53218
+67134,55141
+67135,870
+67136,79807
+67137,68221
+67138,10816
+67139,66449
+67140,47774
+67141,74320
+67142,26945
+67143,69356
+67144,33201
+67145,62222
+67146,60723
+67147,19739
+67148,12965
+67149,7808
+67150,45552
+67151,68034
+67152,38490
+67153,75222
+67154,28266
+67155,7824
+67156,35036
+67157,51340
+67158,62973
+67159,45157,5058
+67160,9822
+67161,43688
+67162,6267
+67163,15335,55556,61516
+67164,59612,8699
+67165,63589
+67166,66404
+67167,26853
+67168,23875,54619,10341
+67169,80799
+67170,1536
+67171,33562
+67172,25228
+67173,12056
+67174,4521
+67175,79826
+67176,16200
+67177,75084
+67178,12025,77577
+67179,16860
+67180,11308
+67181,61878
+67182,76345
+67183,15469
+67184,51312
+67185,37069
+67186,5719
+67187,17909
+67188,72765
+67189,80999
+67190,72195
+67191,3457
+67192,12840,53941
+67193,4109,74468
+67194,39783
+67195,45738
+67196,17538
+67197,51055
+67198,67771
+67199,40551
+67200,39708
+67201,75432
+67202,72807,54769
+67203,79644
+67204,4534
+67205,70300
+67206,71209
+67207,20650
+67208,70515
+67209,9027
+67210,42739
+67211,8673,70761,79525
+67212,54409
+67213,18007
+67214,48033,46978
+67215,30235
+67216,22282
+67217,82149,37023
+67218,42988
+67219,74897,41637,71531
+67220,50098
+67221,79097
+67222,52707
+67223,49437
+67224,78014
+67225,13640
+67226,45137
+67227,1082,26053
+67228,39704,11690,52816
+67229,43776
+67230,60530
+67231,4277
+67232,6598
+67233,40015
+67234,51901
+67235,58406
+67236,34428
+67237,59776,69840
+67238,65236
+67239,50309
+67240,28304
+67241,70584
+67242,37583
+67243,20255
+67244,79156
+67245,9404
+67246,71802
+67247,66397
+67248,23385
+67249,59996,22107
+67250,74385
+67251,76750
+67252,73516,76130
+67253,30402
+67254,66323
+67255,49764
+67256,24262
+67257,35207
+67258,23597
+67259,65765
+67260,46154
+67261,49072,64390
+67262,60403
+67263,81559
+67264,76190,61913,47881
+67265,1219
+67266,81826,72030
+67267,1381
+67268,64312
+67269,79100
+67270,23724
+67271,71909
+67272,60000
+67273,51658,48609,73971,52032
+67274,7742
+67275,33917,66899
+67276,66727
+67277,8099
+67278,71983
+67279,3155
+67280,5403
+67281,55970
+67282,37688
+67283,73634
+67284,32846,63143,49557,5579
+67285,67839
+67286,17196
+67287,6849
+67288,19560
+67289,53897
+67290,11375
+67291,39765
+67292,19628
+67293,69774
+67294,79659
+67295,72505,54491
+67296,64808
+67297,3603,78206
+67298,17192,47639
+67299,53659
+67300,6953
+67301,54332
+67302,31704
+67303,2714
+67304,39931
+67305,42302
+67306,2933
+67307,71453,60520
+67308,78185
+67309,23427,31599,40026
+67310,65624
+67311,39426
+67312,81596,27558,30552
+67313,5178
+67314,60860
+67315,20984
+67316,75112
+67317,4308,1594,81298,29372
+67318,23252
+67319,46316
+67320,16386
+67321,74978,52143
+67322,22300
+67323,6524
+67324,23585,45508
+67325,48808
+67326,55680
+67327,73521
+67328,60015
+67329,68035,10210
+67330,77281
+67331,11882
+67332,80967
+67333,30070
+67334,16597
+67335,39008
+67336,21282
+67337,2060
+67338,15775
+67339,80220
+67340,60903
+67341,39701
+67342,20680
+67343,57511
+67344,68024
+67345,16904,43250
+67346,72126,29715
+67347,6126
+67348,47175
+67349,72628
+67350,36360
+67351,47125,9330
+67352,1933
+67353,19404
+67354,54627
+67355,59374
+67356,43096
+67357,19834
+67358,34103
+67359,9714,79806
+67360,20414
+67361,23842,44108
+67362,6191
+67363,4382
+67364,50792
+67365,1701,80071
+67366,11271
+67367,1820
+67368,19547
+67369,57299
+67370,80763
+67371,70483
+67372,81770
+67373,28724,28677,51677
+67374,43589
+67375,63285
+67376,54075
+67377,2664
+67378,59897,18220
+67379,52931
+67380,49285
+67381,26309
+67382,16282
+67383,320,24830
+67384,6448
+67385,53872
+67386,20355
+67387,53263
+67388,13739
+67389,55037
+67390,56898
+67391,29598
+67392,20913
+67393,48346
+67394,955
+67395,3400
+67396,70349,65869
+67397,56309
+67398,71396,6311
+67399,48951,18394
+67400,12284,36456
+67401,3461,78458
+67402,26670
+67403,38371,30391
+67404,27811
+67405,9393
+67406,47637
+67407,56213,46403
+67408,23911,41214
+67409,35774
+67410,15429,42046
+67411,27884
+67412,46914,73028
+67413,60580
+67414,29561
+67415,64482
+67416,57096
+67417,9023
+67418,73852
+67419,66960
+67420,47505
+67421,73784,20555
+67422,19106,75851
+67423,18388
+67424,19582
+67425,79806
+67426,56131
+67427,50970
+67428,11465
+67429,36241
+67430,43444
+67431,52007,10076
+67432,75507
+67433,77827
+67434,41568
+67435,11976
+67436,33126
+67437,45355
+67438,76130
+67439,28090
+67440,71509
+67441,65664
+67442,38911
+67443,46225
+67444,28719
+67445,35428,35049
+67446,80763
+67447,56273
+67448,73136
+67449,13753
+67450,66847
+67451,13764
+67452,63176
+67453,61272
+67454,38357,11496,69080
+67455,29447
+67456,6006
+67457,8148,54712,25620
+67458,64614
+67459,51374
+67460,43419
+67461,8197
+67462,47535
+67463,44678
+67464,20425
+67465,17605
+67466,71123,42353
+67467,40039
+67468,12443
+67469,33484,13449
+67470,33989,23038
+67471,57774
+67472,835
+67473,17513
+67474,42533
+67475,24586
+67476,6437
+67477,44884
+67478,81870
+67479,77982
+67480,17141
+67481,70279
+67482,44085
+67483,10385
+67484,5729
+67485,25078
+67486,74534,10924
+67487,55902
+67488,72345,5406
+67489,56579
+67490,62429
+67491,42169,53518
+67492,3557
+67493,21455
+67494,25391
+67495,21131
+67496,50582
+67497,28898
+67498,53497
+67499,45049
+67500,68427
+67501,69778
+67502,71563
+67503,10253
+67504,21501,31558,20822
+67505,32965
+67506,2115
+67507,62728
+67508,51214,70420
+67509,81009
+67510,5828
+67511,78312
+67512,20449,32462,13497
+67513,64760
+67514,4878
+67515,38136
+67516,59602
+67517,54845
+67518,30526,50763
+67519,18263,40815
+67520,56605
+67521,68245,47015
+67522,71720,15278
+67523,10449
+67524,56493
+67525,17258
+67526,63822
+67527,20804
+67528,58509
+67529,55177
+67530,20172
+67531,73076
+67532,52164,9189
+67533,19668
+67534,75903
+67535,18089
+67536,9291
+67537,32198
+67538,20172
+67539,52750
+67540,33825
+67541,61238,65050,24596,46684
+67542,75309,29713,55135
+67543,35781
+67544,10910
+67545,64876
+67546,43745,24065
+67547,32409
+67548,64524
+67549,30458
+67550,8714
+67551,63078
+67552,72973
+67553,2261
+67554,18223
+67555,39107
+67556,7655
+67557,11114
+67558,40551
+67559,77300,67653
+67560,60837
+67561,3034
+67562,68848
+67563,13762
+67564,35930
+67565,34507
+67566,20555,31915,50385,18178
+67567,52614
+67568,25078
+67569,1264
+67570,27231,25494
+67571,72769
+67572,58065
+67573,25673,46137
+67574,81165
+67575,75339
+67576,43638,79485
+67577,14097
+67578,25878,15452
+67579,79724
+67580,17203,34676
+67581,81237
+67582,30863
+67583,55367,13120
+67584,9772
+67585,80055
+67586,6398,67075
+67587,9982
+67588,6001
+67589,26397
+67590,8458
+67591,32158
+67592,501,78745,51559
+67593,17149
+67594,22630
+67595,74730
+67596,13234
+67597,58285
+67598,66236
+67599,3750
+67600,54240
+67601,39288
+67602,53066
+67603,72640
+67604,26141,70285
+67605,32285
+67606,5357,71850
+67607,44979
+67608,29814
+67609,70006,64112
+67610,81380
+67611,32324
+67612,79365,11630
+67613,43960
+67614,60992,58493
+67615,20574
+67616,7618
+67617,23107,59077,45697,41115
+67618,4025
+67619,42594
+67620,74267,761,40915
+67621,39716
+67622,73657
+67623,76194
+67624,77283,72151
+67625,4064
+67626,56407
+67627,79858
+67628,76998
+67629,12607,9340
+67630,66583
+67631,82028,28897,26292
+67632,33533,4735,65327
+67633,40812
+67634,68342,67290
+67635,41855
+67636,69684,39277
+67637,18688
+67638,35767
+67639,82080
+67640,18204
+67641,60964
+67642,22093
+67643,44723
+67644,68048
+67645,32765
+67646,32755
+67647,35485
+67648,66608
+67649,21728
+67650,31055,61590
+67651,17257,72959,8590
+67652,73992
+67653,64546
+67654,73756
+67655,9257,63836
+67656,22617
+67657,59652,81758
+67658,41796
+67659,61131
+67660,81326
+67661,67670
+67662,35630
+67663,77082
+67664,36657
+67665,82008
+67666,58694
+67667,10036
+67668,31315
+67669,32673
+67670,29521
+67671,16799
+67672,21996,6686
+67673,80809
+67674,24216
+67675,67698
+67676,79962
+67677,62232
+67678,4600
+67679,32805
+67680,57906
+67681,34200
+67682,59775
+67683,35091
+67684,29767,31914,64077
+67685,43094
+67686,36516
+67687,54329,81747
+67688,25322
+67689,61735
+67690,26784
+67691,64064
+67692,43672,10337
+67693,37308
+67694,22743
+67695,40820
+67696,34765
+67697,54165,19565
+67698,36203
+67699,10527
+67700,19254,25722
+67701,59387
+67702,32083
+67703,34894
+67704,50100,41673
+67705,1122
+67706,36707
+67707,1804
+67708,30579
+67709,27661
+67710,64877
+67711,69894
+67712,37403
+67713,78014
+67714,39793
+67715,50063
+67716,4942
+67717,17611
+67718,38560
+67719,28989
+67720,75121,4178
+67721,81504
+67722,45070
+67723,64391
+67724,27379
+67725,5459
+67726,50652
+67727,5896
+67728,28047,9494
+67729,52157
+67730,19239
+67731,25740,56232
+67732,28837,79786
+67733,42714
+67734,1724
+67735,9955
+67736,25503
+67737,55856
+67738,11333,4892
+67739,54003
+67740,20865
+67741,71879,20322
+67742,20059,9357
+67743,38108,60418
+67744,27616
+67745,31652
+67746,70471,66496
+67747,77041
+67748,72058
+67749,56603
+67750,49824
+67751,6950
+67752,2800
+67753,32788
+67754,56748,795
+67755,6635
+67756,45082
+67757,36750
+67758,27139
+67759,54285
+67760,64611
+67761,9955
+67762,81390
+67763,66226
+67764,78382
+67765,50680
+67766,59838,24468
+67767,15480
+67768,79193,17310
+67769,21694
+67770,6698
+67771,61919
+67772,70516,64891
+67773,78686
+67774,36656
+67775,6927
+67776,10117
+67777,42864
+67778,13750
+67779,72291
+67780,60242,54724
+67781,59322
+67782,44479
+67783,40093
+67784,16772
+67785,58392
+67786,68675
+67787,38454,36702,51156
+67788,26566
+67789,40814,2906
+67790,26025
+67791,71162
+67792,30205,62009,5805
+67793,67900
+67794,60437,36324
+67795,53494,66308,21684
+67796,20022
+67797,22663
+67798,66329
+67799,76424
+67800,1614
+67801,11547
+67802,4652
+67803,34561
+67804,34528
+67805,15729
+67806,25791
+67807,75585
+67808,64493,1011
+67809,3653
+67810,27450
+67811,7838
+67812,15502
+67813,63293
+67814,2397
+67815,21778
+67816,45999
+67817,38007
+67818,24323
+67819,56084
+67820,63318
+67821,43328
+67822,4063
+67823,66913
+67824,26289
+67825,78555
+67826,17658
+67827,66663
+67828,11097
+67829,31145
+67830,25143
+67831,47883
+67832,9900
+67833,78386
+67834,35858
+67835,47839
+67836,66935
+67837,63421
+67838,24226
+67839,13434
+67840,13522
+67841,77706
+67842,35101,24223
+67843,75897
+67844,45998
+67845,80269
+67846,38366
+67847,3999
+67848,39770
+67849,47073
+67850,54700
+67851,28120,51459
+67852,32713
+67853,23831
+67854,5169,7201
+67855,62439
+67856,74258
+67857,49778
+67858,46731
+67859,25363
+67860,5967
+67861,41760
+67862,12722
+67863,62538
+67864,68751
+67865,19193
+67866,61620
+67867,43120
+67868,57682
+67869,34592
+67870,6236
+67871,65624
+67872,4963,21693
+67873,32393
+67874,21913
+67875,52144
+67876,121
+67877,52585
+67878,34523
+67879,62577,20287
+67880,15264
+67881,61443,64345
+67882,57138
+67883,43838
+67884,47180
+67885,48577
+67886,57944
+67887,18766
+67888,3931
+67889,1708,77723
+67890,16287
+67891,34072
+67892,27998
+67893,80967
+67894,46104
+67895,57666
+67896,79244
+67897,78063
+67898,77712
+67899,44322
+67900,27590
+67901,46112,19572
+67902,68990
+67903,73127
+67904,74679
+67905,41259
+67906,61016
+67907,46108
+67908,44909,1665
+67909,5255
+67910,36515
+67911,30838
+67912,3359
+67913,73923
+67914,41920
+67915,17509
+67916,12585
+67917,41924
+67918,21146,40453
+67919,75065
+67920,1282,33817
+67921,41449
+67922,79605
+67923,37438
+67924,1720
+67925,24617
+67926,23396
+67927,32794
+67928,9126
+67929,11391
+67930,69748,75
+67931,31489
+67932,28640
+67933,7161
+67934,34567
+67935,57305
+67936,47829
+67937,19425
+67938,68404,8582
+67939,16291
+67940,25106
+67941,43636
+67942,45910
+67943,65188
+67944,7974
+67945,81706
+67946,47954
+67947,10838,74031
+67948,26887
+67949,61826
+67950,7021,19185,45845
+67951,79833,20728
+67952,4422
+67953,3744
+67954,20949
+67955,45412
+67956,23577
+67957,81084
+67958,41703
+67959,44582
+67960,32492
+67961,2915,38398,55549
+67962,52276
+67963,74101
+67964,24250
+67965,44821,69327
+67966,4927
+67967,38647
+67968,65529
+67969,27106,5060
+67970,59787,23530
+67971,27566
+67972,80622,75915
+67973,67626
+67974,20574
+67975,8753
+67976,15064
+67977,63968
+67978,65801
+67979,73950
+67980,25970
+67981,17219,68041
+67982,46164
+67983,27334
+67984,2002
+67985,66319
+67986,2383,63475
+67987,6841,55165
+67988,43692
+67989,10038,34491
+67990,44801
+67991,30624
+67992,15981,9842,80616
+67993,1936
+67994,20450,2011
+67995,10702
+67996,79120,23690
+67997,31132
+67998,65981
+67999,49595
+68000,67450
+68001,29433
+68002,28392
+68003,28081
+68004,51352
+68005,60212
+68006,63812
+68007,54264
+68008,74067
+68009,80295
+68010,50442
+68011,43917,15409
+68012,22327
+68013,47969
+68014,67727
+68015,47920
+68016,65776,57144
+68017,40067
+68018,44054,41838
+68019,14260,47265,10317
+68020,32941
+68021,32315
+68022,20403
+68023,58097,43005
+68024,79956
+68025,13473
+68026,33068,21997
+68027,57394
+68028,62142
+68029,66752,17315
+68030,74189
+68031,27707
+68032,40915
+68033,39775
+68034,44453
+68035,37943
+68036,32605
+68037,38863,76406
+68038,78691
+68039,59501
+68040,64205
+68041,59536
+68042,13755,69520,7568
+68043,36389
+68044,5633
+68045,64824,53394
+68046,8459,27806
+68047,66839
+68048,56251
+68049,29515
+68050,34170
+68051,38006
+68052,78262
+68053,45189
+68054,39612
+68055,4302
+68056,71228
+68057,18277
+68058,57273
+68059,76981
+68060,28201
+68061,54376
+68062,31243
+68063,28183
+68064,63662
+68065,10987
+68066,16457
+68067,44498
+68068,32893
+68069,19096
+68070,53952
+68071,76864,44841,16611,13416
+68072,14290
+68073,41478,78710
+68074,8597
+68075,52828
+68076,68391
+68077,40147
+68078,69748
+68079,50754
+68080,21383,11723
+68081,52337
+68082,55319
+68083,33761
+68084,28431,3652
+68085,25463
+68086,51131
+68087,4025,25259
+68088,32077
+68089,27386
+68090,9021
+68091,4355,3441
+68092,19892
+68093,51175
+68094,34468
+68095,41561
+68096,12093,49050
+68097,45585
+68098,51542
+68099,9091
+68100,66296
+68101,38766
+68102,60230,40908
+68103,40666
+68104,69991
+68105,61384
+68106,53845
+68107,78393
+68108,10475
+68109,57649
+68110,63611
+68111,6208
+68112,61770,45925
+68113,19348,61341
+68114,35592
+68115,70309
+68116,75014,65863
+68117,29245
+68118,15223
+68119,10533
+68120,50070
+68121,69498
+68122,33054,28451
+68123,54543
+68124,63770
+68125,45209,66424
+68126,638
+68127,75163
+68128,46636
+68129,34638
+68130,14463
+68131,23505
+68132,80138,43550
+68133,22764
+68134,35135
+68135,64363
+68136,54879
+68137,38453
+68138,72757
+68139,55492
+68140,79086,9974
+68141,80999
+68142,18934
+68143,66437
+68144,41477
+68145,62491
+68146,58017
+68147,16934
+68148,37404
+68149,45918
+68150,18430
+68151,53415
+68152,3000
+68153,68713,77972
+68154,68677
+68155,3722
+68156,5499
+68157,60694
+68158,28309
+68159,42972
+68160,31985
+68161,52053
+68162,73455
+68163,40841,64495
+68164,65907
+68165,29339
+68166,60477,66572
+68167,29993
+68168,44627
+68169,57113
+68170,65269
+68171,18150
+68172,44847,44990
+68173,47437
+68174,27171
+68175,53729
+68176,20987
+68177,81848
+68178,28838
+68179,22223
+68180,7186
+68181,8074
+68182,49036
+68183,9629
+68184,46707
+68185,21102
+68186,79099
+68187,27062,11449,74865
+68188,72738
+68189,38225
+68190,59091,11619,37619
+68191,2944
+68192,29372
+68193,11916
+68194,63826
+68195,28134
+68196,51214
+68197,73167,35037
+68198,64543
+68199,52821
+68200,31284
+68201,78277
+68202,50269
+68203,40889,361
+68204,38962
+68205,19751,32731
+68206,49947
+68207,41307
+68208,41971
+68209,78508
+68210,10515
+68211,80341
+68212,67402
+68213,31242
+68214,71437
+68215,16725,45287
+68216,47479,48316
+68217,61577
+68218,60396
+68219,44807
+68220,24395,44134
+68221,36367
+68222,12534
+68223,73106,10551
+68224,10023
+68225,75634
+68226,56835,203,66936
+68227,75335
+68228,16846,11476
+68229,56905
+68230,60603
+68231,62453
+68232,45161
+68233,5388,18922
+68234,52451,70158
+68235,50044,5641
+68236,38129
+68237,81070
+68238,15962
+68239,4806
+68240,11833
+68241,72072
+68242,12597
+68243,6991,75778,25185
+68244,75004
+68245,49427
+68246,79831
+68247,77584
+68248,78226
+68249,17615
+68250,53581,24315,2674
+68251,50163
+68252,57193
+68253,70329,14524
+68254,80287
+68255,42399,53643
+68256,3465
+68257,75937
+68258,8020
+68259,74395
+68260,20641
+68261,25792
+68262,37307
+68263,19932
+68264,19022
+68265,54822
+68266,35707
+68267,30771
+68268,1959
+68269,14146
+68270,44892
+68271,10864,47235
+68272,78553
+68273,59681
+68274,10168
+68275,41614
+68276,7884
+68277,47821
+68278,42251,71632
+68279,19241
+68280,47493
+68281,29299
+68282,70583
+68283,5719
+68284,7731
+68285,57682
+68286,2725
+68287,60629
+68288,1676
+68289,77797,15375
+68290,62502
+68291,71394
+68292,80987
+68293,78024
+68294,66936
+68295,25498
+68296,14397,3735
+68297,7251
+68298,18468,80114
+68299,17464
+68300,7410
+68301,27246,11040
+68302,65568
+68303,78278
+68304,53145
+68305,37672,16922
+68306,52977
+68307,13023
+68308,33450,41341
+68309,53435
+68310,47007
+68311,9939
+68312,66309,19022
+68313,19925
+68314,81115
+68315,49423
+68316,16939
+68317,64978
+68318,2660
+68319,13932
+68320,65745
+68321,44082,46641
+68322,36864,56646
+68323,57376
+68324,18829
+68325,21604
+68326,39716
+68327,36735
+68328,46957
+68329,37131
+68330,5722,36845
+68331,77307
+68332,4639
+68333,49955
+68334,5238
+68335,55285,29585
+68336,46134
+68337,4420
+68338,37327
+68339,29877
+68340,32751
+68341,61213
+68342,17171
+68343,40300
+68344,51653
+68345,23198
+68346,39752
+68347,1954
+68348,26323
+68349,19296
+68350,49139,27165,9647
+68351,74932
+68352,79261
+68353,59039
+68354,2397
+68355,23676
+68356,72084
+68357,80092
+68358,22105
+68359,8652
+68360,68524,7451
+68361,14970
+68362,58836
+68363,116
+68364,78984
+68365,78367
+68366,16514,57185
+68367,47305
+68368,79358
+68369,16057
+68370,69810
+68371,1142
+68372,42356
+68373,59631
+68374,388,37227
+68375,40686
+68376,67497,48399
+68377,67921
+68378,21081
+68379,5731
+68380,14067
+68381,31325
+68382,68445
+68383,12040
+68384,14428
+68385,44155
+68386,25661
+68387,6841
+68388,58696,65098
+68389,572
+68390,10,59018
+68391,11900
+68392,4927
+68393,78741
+68394,71197
+68395,75662
+68396,39050
+68397,8413
+68398,7661
+68399,1280
+68400,77746,26896
+68401,8164,77747
+68402,7231,3752
+68403,15497
+68404,33899
+68405,67352
+68406,7412
+68407,71209
+68408,10095,49980
+68409,65657
+68410,47285
+68411,1657,17606
+68412,9496,1824
+68413,12184
+68414,71914
+68415,55274
+68416,29309
+68417,73610
+68418,50446
+68419,3752
+68420,67667
+68421,9758
+68422,7134
+68423,28663
+68424,46438
+68425,4934
+68426,26055
+68427,32707
+68428,71259
+68429,65071,34924
+68430,52040
+68431,52434,1943
+68432,12321
+68433,60023
+68434,39970
+68435,75760
+68436,23099,24192,61102
+68437,30397
+68438,16707
+68439,66079
+68440,19801
+68441,26562
+68442,81178
+68443,27762
+68444,77186
+68445,28847
+68446,28303
+68447,61997
+68448,61725
+68449,27918
+68450,2137
+68451,71753
+68452,33208
+68453,9535
+68454,30464
+68455,40793
+68456,41782,26937
+68457,65909
+68458,30841,289
+68459,70436
+68460,35255
+68461,42853
+68462,44562
+68463,33563
+68464,5888
+68465,74121
+68466,67162
+68467,35885
+68468,32187
+68469,18173,20038
+68470,38520
+68471,76700,25278
+68472,28522
+68473,56321
+68474,27723
+68475,42924,47796
+68476,30103
+68477,57788
+68478,22163
+68479,24014
+68480,43408
+68481,79809
+68482,72898
+68483,57289
+68484,1993
+68485,76732,60613,53621
+68486,12220
+68487,26448
+68488,74726
+68489,17005
+68490,78030
+68491,29660
+68492,14521
+68493,24380
+68494,33742
+68495,62247
+68496,75761
+68497,66257
+68498,8122
+68499,53839
+68500,56215,73853
+68501,10885
+68502,48416
+68503,57922,48112
+68504,17901,65689
+68505,61555
+68506,3410
+68507,3567
+68508,74796
+68509,14410
+68510,28299
+68511,12577
+68512,65697
+68513,22218
+68514,20153
+68515,68024
+68516,51971
+68517,79235,31353,48992
+68518,80062
+68519,78686
+68520,4927
+68521,24567
+68522,7377
+68523,29491
+68524,58887
+68525,63198,38493
+68526,66294
+68527,28135,69693
+68528,1480
+68529,78582
+68530,20791
+68531,13826
+68532,40118
+68533,49104,7059
+68534,44651
+68535,47920
+68536,38517
+68537,64799
+68538,74877,56194,34978
+68539,79420
+68540,35644
+68541,56576
+68542,79489
+68543,27778
+68544,74173
+68545,62758
+68546,19415
+68547,31664
+68548,81378,27598
+68549,28210
+68550,21477
+68551,27361
+68552,65660
+68553,27120,20935
+68554,22547
+68555,74273
+68556,7253
+68557,16888
+68558,66823
+68559,18466,48751,48325,35910
+68560,51222
+68561,47290
+68562,36240
+68563,8404,63236,40508
+68564,77229
+68565,38640,55002,9249
+68566,12938
+68567,27185
+68568,48355
+68569,21914
+68570,74654
+68571,31218
+68572,19969
+68573,5107,7114
+68574,41672
+68575,77291
+68576,74306
+68577,27031
+68578,14758
+68579,78194,56125
+68580,995,30725
+68581,56223
+68582,9879
+68583,15701
+68584,26218
+68585,36651
+68586,56772
+68587,77055,19113
+68588,21599
+68589,38789
+68590,38370
+68591,62037
+68592,11224
+68593,49624
+68594,35228
+68595,56791
+68596,42919
+68597,70801
+68598,81793,75708
+68599,20987,63441
+68600,77452
+68601,58852
+68602,32649
+68603,31339
+68604,7210
+68605,42404
+68606,17073
+68607,48535,48712
+68608,7413
+68609,60175
+68610,62790
+68611,60916
+68612,37100
+68613,5489
+68614,68269
+68615,6458
+68616,35977
+68617,62291
+68618,3014
+68619,36278,42581
+68620,7295
+68621,63251,44814
+68622,30065
+68623,62324
+68624,29414
+68625,16965
+68626,64810
+68627,73740
+68628,61593
+68629,60623
+68630,63333
+68631,67162
+68632,64610
+68633,79489
+68634,82168
+68635,56277
+68636,41892
+68637,78043,23399
+68638,71916,65865
+68639,44670
+68640,9796
+68641,16984
+68642,49652
+68643,69074
+68644,39294
+68645,45269
+68646,52164
+68647,16272
+68648,70795
+68649,78276
+68650,34303
+68651,56342
+68652,70472
+68653,25997
+68654,32682
+68655,74600
+68656,46419,23686,68977
+68657,81284
+68658,58484
+68659,80231
+68660,11368
+68661,1131
+68662,67850
+68663,3377
+68664,26191
+68665,52795
+68666,11499
+68667,66996
+68668,44218
+68669,24844
+68670,52914
+68671,31479
+68672,30841
+68673,55569
+68674,30942
+68675,74221
+68676,73276
+68677,34898,17395
+68678,63988
+68679,73217
+68680,26588
+68681,21351
+68682,54901
+68683,44385
+68684,44562
+68685,7759,26556
+68686,50558
+68687,8362
+68688,17349,26356
+68689,81310
+68690,3185
+68691,23229,23361
+68692,61015
+68693,27148,24361
+68694,63916,55711
+68695,11434,41134
+68696,75320,78845
+68697,20941,79101
+68698,15233
+68699,69615
+68700,81083
+68701,62360
+68702,31953
+68703,21129
+68704,36219
+68705,72137
+68706,23149
+68707,48081
+68708,82019,57042
+68709,61102
+68710,48103
+68711,57171
+68712,6936
+68713,22213
+68714,66322
+68715,19248
+68716,58693
+68717,77866
+68718,34802
+68719,49101,22545
+68720,11498
+68721,52934
+68722,63031
+68723,12606
+68724,3978,40398
+68725,603
+68726,9479
+68727,55658
+68728,78788
+68729,31411
+68730,66894
+68731,58805
+68732,68852
+68733,53983
+68734,14944
+68735,25014
+68736,15772
+68737,10819
+68738,36250
+68739,70034
+68740,47946,80716
+68741,67510,79006
+68742,13373
+68743,22027
+68744,60714,82173
+68745,26854,21815
+68746,56339
+68747,17006
+68748,57327
+68749,59068
+68750,69761
+68751,23109
+68752,69810
+68753,33175,40632
+68754,19536
+68755,68736
+68756,56268
+68757,56200
+68758,74093
+68759,23971
+68760,56856,11507,63442
+68761,47281
+68762,55067
+68763,6311
+68764,66168
+68765,28803
+68766,63153
+68767,64662
+68768,31424
+68769,71575
+68770,8683
+68771,36228
+68772,43625
+68773,17573
+68774,25295
+68775,47482
+68776,53835
+68777,12220
+68778,5365
+68779,31162
+68780,4065
+68781,78386
+68782,27195,72194
+68783,48772
+68784,2431,15415
+68785,44088
+68786,59784
+68787,27397
+68788,78282
+68789,36018
+68790,81548
+68791,21280
+68792,37997
+68793,41730
+68794,31990
+68795,631
+68796,5302
+68797,22282
+68798,52053
+68799,33824
+68800,47195
+68801,11981
+68802,39890
+68803,20384,33626
+68804,68542,23701
+68805,14510,43271
+68806,79979,82100
+68807,27385
+68808,19164,64117
+68809,45199
+68810,77000
+68811,61620
+68812,7696
+68813,3745
+68814,62222
+68815,75295
+68816,43069
+68817,992
+68818,16126
+68819,62798
+68820,38309
+68821,48421
+68822,78921,41824
+68823,24224
+68824,8998,7641
+68825,38316
+68826,75884
+68827,80559
+68828,17427
+68829,48721
+68830,9314
+68831,9197,1161
+68832,52680,26083,6936
+68833,2382
+68834,18857
+68835,3468
+68836,32328
+68837,13825
+68838,42920
+68839,65404
+68840,74323
+68841,56551
+68842,43011
+68843,19542
+68844,77027,21925
+68845,23769
+68846,43167
+68847,75902
+68848,46898
+68849,21220,18775
+68850,65544
+68851,24700
+68852,76607
+68853,28800,71292,5322
+68854,68713,39558,8286
+68855,52039
+68856,30160
+68857,1664
+68858,21124,45617
+68859,430
+68860,14339,52262
+68861,49163,66983
+68862,27533
+68863,18130
+68864,5093
+68865,13812
+68866,41255
+68867,44919
+68868,17290
+68869,37294
+68870,5754
+68871,21873
+68872,30978
+68873,14166
+68874,22310
+68875,25823
+68876,14955
+68877,81280
+68878,30330,5625
+68879,66367
+68880,19826
+68881,40889
+68882,55303
+68883,51514,21575
+68884,9282
+68885,10034
+68886,35130
+68887,62213,39223
+68888,16667,46578
+68889,71606
+68890,23709
+68891,60349
+68892,79915,70036
+68893,13308
+68894,75134
+68895,48564,48632
+68896,2802
+68897,38372
+68898,15311,9226
+68899,77412
+68900,5689
+68901,51250
+68902,46792,65018
+68903,30024
+68904,32129
+68905,28431
+68906,19335,73273
+68907,80445
+68908,72361,81808
+68909,20886
+68910,53415
+68911,48185
+68912,63548,9832
+68913,34680
+68914,17389
+68915,31206,54986
+68916,71479
+68917,2849
+68918,78551
+68919,25343
+68920,48094
+68921,81009
+68922,50414,61275
+68923,33223,30991
+68924,69504
+68925,52663,45995
+68926,17890,9193
+68927,58244,24890
+68928,33634
+68929,57660,58018
+68930,38915
+68931,4581
+68932,30673
+68933,32610,48989
+68934,37599
+68935,31815,77029
+68936,13742
+68937,13205
+68938,54234
+68939,55444
+68940,64520
+68941,41985
+68942,34631
+68943,46702
+68944,5387
+68945,26044
+68946,75836
+68947,76757
+68948,65738
+68949,62371
+68950,67416
+68951,68437
+68952,32816
+68953,17258
+68954,44883
+68955,2177,39533,58905
+68956,7372
+68957,59841
+68958,55088
+68959,18809
+68960,34449
+68961,67139
+68962,23117
+68963,67899
+68964,53159,59756
+68965,31130
+68966,39422
+68967,45052
+68968,47671
+68969,38605
+68970,28548
+68971,47018
+68972,42280
+68973,5186
+68974,72355
+68975,80460
+68976,45157
+68977,29100
+68978,15855
+68979,64736
+68980,45220
+68981,38315
+68982,54902
+68983,71101
+68984,5365
+68985,41377
+68986,11427
+68987,10719,43793
+68988,67642
+68989,62817
+68990,70884
+68991,30802,21908
+68992,48471
+68993,48662,79362
+68994,3350
+68995,59695
+68996,42092,16406
+68997,6907
+68998,26465
+68999,6550
+69000,70569
+69001,15183,27928
+69002,24113
+69003,72690
+69004,48712
+69005,54798
+69006,60798
+69007,63581
+69008,16440,79645
+69009,74225
+69010,5723,4361
+69011,66430
+69012,17646
+69013,7723,42126
+69014,6016
+69015,53985,71652
+69016,47079
+69017,71398
+69018,39709
+69019,22771
+69020,63652,56593
+69021,15983
+69022,40852
+69023,48629
+69024,24364
+69025,11869
+69026,18634
+69027,23181
+69028,24951
+69029,25814
+69030,62804
+69031,71797
+69032,50852
+69033,57493
+69034,26268
+69035,62778
+69036,61519
+69037,23030
+69038,12021,73125
+69039,80602
+69040,4893
+69041,62435
+69042,13108
+69043,4743
+69044,47330
+69045,34429
+69046,14351
+69047,15653
+69048,68315,57952
+69049,9840
+69050,22912
+69051,71022
+69052,56151
+69053,56794
+69054,11813
+69055,58304,50753,7760
+69056,24692,67037
+69057,74979
+69058,500
+69059,17682
+69060,33505,25482
+69061,7811
+69062,8393
+69063,68063
+69064,58225,54533
+69065,80311
+69066,65708
+69067,41292,31649,37634
+69068,16144
+69069,14386
+69070,64432
+69071,19593,26245
+69072,80351
+69073,60628
+69074,15591,45561
+69075,44237
+69076,42947,26730
+69077,39541
+69078,7838
+69079,17578
+69080,14007,36430
+69081,4230,34067
+69082,44236
+69083,69567
+69084,4517
+69085,3233
+69086,21270
+69087,59873,3356
+69088,45087,76886
+69089,17249
+69090,26243
+69091,23166
+69092,46456,21799
+69093,18584
+69094,17500
+69095,79729
+69096,2162,1615
+69097,67115
+69098,27171
+69099,44884
+69100,28183
+69101,41570,77429
+69102,33919,63648
+69103,49315
+69104,42914
+69105,37879
+69106,35037,49747
+69107,57621
+69108,45142
+69109,77218
+69110,58151
+69111,63299
+69112,34642
+69113,79234
+69114,981
+69115,12392
+69116,49680
+69117,63698
+69118,57060
+69119,4559
+69120,27572
+69121,61608
+69122,73839
+69123,30914
+69124,43833,42873
+69125,54780
+69126,6925
+69127,25190
+69128,44767
+69129,73321
+69130,33247
+69131,43166
+69132,75808
+69133,2846
+69134,8601,21030
+69135,70406,68276
+69136,70034
+69137,23664
+69138,13612,49935
+69139,22803
+69140,78275
+69141,1435
+69142,29074
+69143,18973
+69144,24650
+69145,41951
+69146,46017
+69147,10592
+69148,73833
+69149,5395
+69150,62036
+69151,8153
+69152,45288
+69153,53378
+69154,28858
+69155,57874
+69156,5935
+69157,803
+69158,44070
+69159,68606
+69160,18061
+69161,17629
+69162,16556,34041
+69163,43222,73794
+69164,38509
+69165,17454
+69166,79309
+69167,60239
+69168,255
+69169,55948
+69170,8600
+69171,13765,40054
+69172,29947,76904
+69173,36931
+69174,11147
+69175,19497
+69176,36837
+69177,17997,65411
+69178,4234
+69179,73549,22796,35341
+69180,1483,38047
+69181,39470
+69182,73050
+69183,34333
+69184,38791
+69185,22137
+69186,38016
+69187,74632,82104
+69188,63054
+69189,28146
+69190,35053
+69191,23409
+69192,55213
+69193,29700
+69194,48602
+69195,27721
+69196,66356,13179
+69197,63862
+69198,55941,20954
+69199,5639
+69200,69335
+69201,25007
+69202,48602
+69203,4398
+69204,7604,79156
+69205,36516
+69206,64326
+69207,29121
+69208,34614
+69209,31490
+69210,26540
+69211,15330
+69212,17630
+69213,27533
+69214,13619
+69215,34284
+69216,20524
+69217,58032,13438,22813
+69218,22640
+69219,70661
+69220,65896
+69221,41265,70052
+69222,73701
+69223,10204
+69224,70944
+69225,42040
+69226,18377,11302
+69227,51973
+69228,78650
+69229,26491
+69230,65507
+69231,7075
+69232,40007,9827,61184
+69233,33507
+69234,63054
+69235,52936
+69236,71329,13001
+69237,65325
+69238,30648,11350
+69239,29888
+69240,26008
+69241,61067
+69242,30270,57179
+69243,39951
+69244,38915
+69245,75065
+69246,28703
+69247,70166
+69248,74258,8208
+69249,57887
+69250,41491,25517
+69251,44677
+69252,21737
+69253,79534
+69254,50363
+69255,66236
+69256,59196
+69257,19946
+69258,35608
+69259,12763
+69260,52852
+69261,13208
+69262,52247
+69263,55157
+69264,29771
+69265,23346
+69266,12857
+69267,5508
+69268,53358
+69269,18465
+69270,15983
+69271,77453
+69272,40606
+69273,36015
+69274,24987
+69275,57327
+69276,14606
+69277,12318
+69278,39850
+69279,59603
+69280,1271
+69281,43317,27527
+69282,5518
+69283,65202,29676,35013
+69284,31710
+69285,17599
+69286,20409
+69287,53727
+69288,42625
+69289,48577,68404
+69290,20078
+69291,31207
+69292,36420
+69293,7347
+69294,21592
+69295,45960,24761
+69296,6003
+69297,12992
+69298,63903
+69299,41409
+69300,50357,26692
+69301,9939
+69302,11850
+69303,53158,1650
+69304,17266
+69305,56950
+69306,31774,7090
+69307,40650
+69308,31579
+69309,20245
+69310,46838
+69311,46134
+69312,77796
+69313,20169
+69314,56516
+69315,58509
+69316,8119,25720
+69317,18691,12262
+69318,77725
+69319,622
+69320,33598
+69321,25414
+69322,41639,38522
+69323,29958
+69324,10613
+69325,40286,15617
+69326,17149
+69327,41851,71465
+69328,20313
+69329,23606
+69330,416,81084
+69331,41817
+69332,31039
+69333,44093
+69334,59949
+69335,69205
+69336,51868
+69337,80591
+69338,19439
+69339,28882
+69340,76194
+69341,59920
+69342,42546
+69343,26236,77201
+69344,40689
+69345,27605
+69346,26432,24709
+69347,32160
+69348,55824
+69349,20917
+69350,7374,4993
+69351,70778
+69352,57920
+69353,4255
+69354,47496,31238
+69355,5547
+69356,48968
+69357,9920
+69358,70758
+69359,77388
+69360,37073
+69361,22649
+69362,56784
+69363,53544,48063
+69364,20007,29767
+69365,19678,242
+69366,941
+69367,29187
+69368,9293
+69369,16728
+69370,65242,64401
+69371,35744
+69372,46347
+69373,24638,30429
+69374,33825
+69375,15893
+69376,3083
+69377,18379
+69378,27066
+69379,60104,71463
+69380,58783
+69381,27653
+69382,61991
+69383,15118,13517
+69384,43251,12218
+69385,20643
+69386,37759
+69387,40080,61429
+69388,29700,4348,5522
+69389,40384,77397
+69390,81998
+69391,72934
+69392,45220
+69393,26329
+69394,4470,26151
+69395,55599
+69396,28520
+69397,57891
+69398,67893
+69399,3676
+69400,15558
+69401,3288
+69402,44479,63698,17999
+69403,53381,58387
+69404,44606
+69405,25749
+69406,69821
+69407,7337
+69408,40083
+69409,27301,23440
+69410,57877
+69411,42679
+69412,28012
+69413,59046
+69414,43218,15506
+69415,38414
+69416,72563
+69417,59567
+69418,2220
+69419,50613
+69420,19386
+69421,43073
+69422,42109
+69423,67371,67354
+69424,33458,55107
+69425,69675,67518
+69426,22231,63531
+69427,78893
+69428,70336
+69429,50376
+69430,36892,70646
+69431,63646
+69432,29822
+69433,30717
+69434,41278
+69435,78606,15835
+69436,9809,40492
+69437,68600
+69438,67575
+69439,62953,21721,57379
+69440,11461
+69441,39202
+69442,73310,51865
+69443,75621
+69444,8164
+69445,7110
+69446,78955
+69447,54019
+69448,2109,71866
+69449,15968
+69450,962
+69451,65400
+69452,33653
+69453,27751,48050
+69454,17858
+69455,62308,29199
+69456,53516
+69457,49218
+69458,42418
+69459,61833
+69460,44623
+69461,23258
+69462,79693
+69463,41080
+69464,71254
+69465,62001
+69466,37193
+69467,2787
+69468,60631,40355
+69469,41850
+69470,72281
+69471,53118
+69472,20061
+69473,56311
+69474,49947,35168
+69475,66480
+69476,78706,3092
+69477,71252
+69478,11307,34716
+69479,39130
+69480,40355
+69481,44318
+69482,15767
+69483,34779
+69484,49971
+69485,41592
+69486,66576
+69487,48155
+69488,22236
+69489,51509
+69490,64390
+69491,21933
+69492,52390
+69493,6594
+69494,76443
+69495,6000
+69496,27422
+69497,12426
+69498,77128
+69499,17476
+69500,27561
+69501,61836
+69502,26298
+69503,31829
+69504,32039,28079,73620
+69505,49336
+69506,92
+69507,28671
+69508,52982
+69509,80784
+69510,42243
+69511,51167
+69512,65324
+69513,76079
+69514,1677
+69515,1166
+69516,45056
+69517,78843
+69518,74948
+69519,29125,31235
+69520,18176
+69521,2751
+69522,65741,35469
+69523,75331
+69524,3864,11393,22158
+69525,3627
+69526,24498
+69527,60777
+69528,60821
+69529,15277
+69530,54638
+69531,70848,71604
+69532,29305
+69533,37799
+69534,25478,21523
+69535,81951
+69536,16702
+69537,21124
+69538,66555,7263
+69539,54187
+69540,54988,40741
+69541,53005,68624
+69542,51768
+69543,43166
+69544,73339
+69545,65143
+69546,51976
+69547,51023
+69548,60609
+69549,51186,4670
+69550,9165
+69551,7590
+69552,41140
+69553,33662,51683
+69554,59418
+69555,38616
+69556,70242
+69557,22371
+69558,68281
+69559,42446
+69560,53381,4025
+69561,18344,3266
+69562,22653
+69563,13727
+69564,54225
+69565,67103,55232
+69566,30778,7558,39052
+69567,76460
+69568,56779
+69569,12429
+69570,36513,81167
+69571,14812
+69572,78781,49562
+69573,16470
+69574,51415,54705
+69575,73736
+69576,24613,62419
+69577,56942
+69578,31819
+69579,4286
+69580,60405
+69581,11437
+69582,27107
+69583,70393
+69584,53895
+69585,70636,7366
+69586,63573
+69587,73795
+69588,64064
+69589,16508,2658
+69590,40705
+69591,61595
+69592,13098
+69593,34608
+69594,231
+69595,6928,78291
+69596,66120
+69597,922,13824
+69598,18603
+69599,19549
+69600,25750
+69601,67028
+69602,36092
+69603,38790
+69604,39638
+69605,46703,68930
+69606,41264
+69607,51749
+69608,12363
+69609,14004,46016
+69610,42586
+69611,81875
+69612,1933
+69613,991,5380
+69614,38742
+69615,71846
+69616,24457
+69617,305
+69618,20487
+69619,42718,57478
+69620,19404
+69621,69078
+69622,21970,1846
+69623,66883,51601
+69624,25244
+69625,61471
+69626,40551
+69627,73455
+69628,77663,10034
+69629,56591
+69630,75879
+69631,28046
+69632,35340
+69633,64565,70562
+69634,6861
+69635,32360
+69636,38618
+69637,39770
+69638,29719
+69639,46373
+69640,75714
+69641,56565
+69642,14005
+69643,18773
+69644,50652
+69645,63805
+69646,4101
+69647,36949
+69648,62961
+69649,41401
+69650,66322
+69651,22161
+69652,68357
+69653,68486
+69654,29611
+69655,3269,58180
+69656,52257,21439
+69657,75102
+69658,31976
+69659,46593
+69660,34567
+69661,69097
+69662,1777
+69663,45748
+69664,71145
+69665,52116
+69666,15757
+69667,22162
+69668,77920
+69669,29362
+69670,7348,45670
+69671,30949
+69672,75600
+69673,50
+69674,30894
+69675,35594,43946
+69676,81482
+69677,74278,52999
+69678,17374
+69679,67
+69680,72314
+69681,12720
+69682,22359
+69683,27923
+69684,81680
+69685,80006
+69686,15537
+69687,42115
+69688,59120
+69689,2911,508
+69690,59818
+69691,70413
+69692,27561
+69693,80039
+69694,29638
+69695,57531
+69696,38425
+69697,3468
+69698,79443
+69699,52258
+69700,37933
+69701,66061
+69702,46908,66390
+69703,19054,47056
+69704,22238
+69705,39849
+69706,56182,72092
+69707,24872
+69708,40527
+69709,10733
+69710,38285
+69711,41906
+69712,2219
+69713,35441
+69714,7494
+69715,36147
+69716,43842
+69717,41547
+69718,81481
+69719,5897
+69720,24492
+69721,16826
+69722,54144
+69723,13101
+69724,18762,50592
+69725,54127
+69726,2104
+69727,60812
+69728,49452,80315
+69729,52907
+69730,13728
+69731,46878
+69732,16834
+69733,47848
+69734,18838,81984,33709
+69735,73571
+69736,15869,4459
+69737,742
+69738,36660
+69739,29980
+69740,81336
+69741,76807
+69742,77992
+69743,75228,8301
+69744,68459
+69745,2264,58278
+69746,57690
+69747,60677
+69748,28454
+69749,22787
+69750,66011,4433
+69751,48703,71184
+69752,9200,64431
+69753,66099,79876
+69754,43208
+69755,13747
+69756,76067
+69757,39797
+69758,58826,74991,24516
+69759,28300
+69760,17851
+69761,21212
+69762,67374,76369
+69763,20332
+69764,59711,13213
+69765,2232,38031,19323
+69766,34184
+69767,9976
+69768,46337
+69769,25663
+69770,66492
+69771,46722
+69772,65708
+69773,57434
+69774,77902
+69775,34239
+69776,51966
+69777,29573
+69778,50226
+69779,42213,42914
+69780,81339
+69781,37613
+69782,58347
+69783,68822
+69784,80539
+69785,70231
+69786,78440,57430
+69787,41763
+69788,31258
+69789,19113
+69790,15517
+69791,66451
+69792,78997
+69793,9903
+69794,19406
+69795,51152
+69796,80110,18307
+69797,70480
+69798,77227,32123
+69799,23329
+69800,31766,46982
+69801,37955,9890
+69802,39596
+69803,38878
+69804,16386
+69805,14895
+69806,62297
+69807,879
+69808,79716
+69809,50182
+69810,15199
+69811,15591
+69812,29315,51228
+69813,75751
+69814,36181
+69815,14356
+69816,61653
+69817,2585
+69818,34937
+69819,78861,18991
+69820,10389
+69821,43110
+69822,38532
+69823,44500
+69824,32128
+69825,70473
+69826,7240
+69827,41164
+69828,58390
+69829,44189
+69830,18961
+69831,4603,7814
+69832,73089
+69833,79324
+69834,52220
+69835,29300
+69836,31227
+69837,42508,35912
+69838,22637
+69839,23694
+69840,28129,13315
+69841,60565
+69842,51444
+69843,6143,43994
+69844,35702
+69845,5796
+69846,58380
+69847,54711
+69848,33561
+69849,28561
+69850,22820
+69851,37033,62360
+69852,56565
+69853,42899
+69854,44013
+69855,78522
+69856,21501,73050,79452
+69857,30405
+69858,41381
+69859,47358
+69860,43011
+69861,51106
+69862,49227
+69863,73443,21806
+69864,24182
+69865,80806
+69866,78350
+69867,71324
+69868,37987,81846
+69869,31180
+69870,59707
+69871,60996
+69872,10739
+69873,55276
+69874,17630
+69875,41548
+69876,35438
+69877,44907
+69878,5260
+69879,2328
+69880,65013
+69881,7987
+69882,40707
+69883,62381
+69884,17208,29140
+69885,50930
+69886,29186
+69887,77954
+69888,40712,38904
+69889,55436
+69890,73782
+69891,74188
+69892,79014
+69893,34171
+69894,65681
+69895,24626
+69896,31157
+69897,43645
+69898,43624
+69899,50919
+69900,59059
+69901,17347
+69902,65631
+69903,9253
+69904,64326
+69905,46657
+69906,24182
+69907,27351
+69908,5699
+69909,12157,65887
+69910,49404,18848
+69911,45394
+69912,51377,79109
+69913,58738,80414
+69914,29041
+69915,30872
+69916,43673
+69917,68710
+69918,72666
+69919,50750,6637
+69920,8816
+69921,72569
+69922,12652
+69923,74176
+69924,19194
+69925,79436
+69926,59959
+69927,43293
+69928,25331,5330,46875,38303
+69929,51116
+69930,2784
+69931,52775
+69932,5497
+69933,27590
+69934,16725,3352
+69935,13192
+69936,40831
+69937,67851
+69938,64702,56197
+69939,14920
+69940,79932,16003
+69941,60409
+69942,76719
+69943,72577
+69944,22504
+69945,80439
+69946,55368
+69947,40570,19322
+69948,62110,14929
+69949,40442,18288
+69950,44477
+69951,46073
+69952,41253
+69953,15531
+69954,18453
+69955,21937
+69956,49134,37995
+69957,77270
+69958,66198
+69959,26840
+69960,6118,15852
+69961,76664
+69962,17556
+69963,62213
+69964,8372,45614
+69965,48892
+69966,43163,47074
+69967,29348
+69968,69349
+69969,38752
+69970,40220
+69971,75630,1568
+69972,20633
+69973,76049
+69974,2104
+69975,79534,77810,56240
+69976,7538,36902
+69977,5372
+69978,71840
+69979,52790
+69980,34500
+69981,13995
+69982,9061
+69983,55083
+69984,52482
+69985,43332
+69986,70170
+69987,33077,42581
+69988,52072,67121
+69989,33753,48755
+69990,63750
+69991,9295
+69992,61960
+69993,47995
+69994,48392,15635
+69995,59309
+69996,12909
+69997,29993
+69998,2505
+69999,53496
+70000,4958
+70001,12601
+70002,62394
+70003,24754
+70004,63739
+70005,48457
+70006,34691
+70007,61105,32374
+70008,79395
+70009,79260
+70010,25398
+70011,42765
+70012,70398
+70013,54482
+70014,16300
+70015,8630
+70016,70520
+70017,54773
+70018,73150
+70019,19666,5948
+70020,69401,50649,24435
+70021,75646
+70022,32609
+70023,62766,8195
+70024,75960,74200
+70025,75015,9025,14824
+70026,65344
+70027,35932
+70028,20839
+70029,67273
+70030,34897
+70031,78100
+70032,66236
+70033,18150,54534
+70034,69615
+70035,41523
+70036,9194
+70037,67573
+70038,41818
+70039,26044
+70040,55223
+70041,65405
+70042,78085,17615
+70043,27451
+70044,46732
+70045,65875
+70046,23585
+70047,583,23486,47366,3333
+70048,65293
+70049,31084
+70050,64393
+70051,19416
+70052,7978
+70053,53823,4713
+70054,73137
+70055,40423,16151
+70056,21745
+70057,1913
+70058,13130
+70059,55447
+70060,53614,51223
+70061,58783
+70062,33223
+70063,75579
+70064,3954,56426,19795
+70065,10569
+70066,46349,36969
+70067,28685
+70068,10431
+70069,62953
+70070,1516
+70071,38248
+70072,71524
+70073,39794
+70074,15771
+70075,40450
+70076,78229,48751
+70077,13523
+70078,74636,66200
+70079,53779
+70080,44095
+70081,33698
+70082,31944
+70083,13884,36411
+70084,35931,72985
+70085,7071
+70086,62125
+70087,39242
+70088,70851
+70089,71355
+70090,23841
+70091,60706
+70092,65293
+70093,34847
+70094,20482,27460
+70095,72793
+70096,46198
+70097,68305
+70098,66480
+70099,63349
+70100,71363
+70101,25278
+70102,55204
+70103,23791,28001
+70104,46150,6122
+70105,15167
+70106,71527
+70107,47219
+70108,35698
+70109,66968,9499
+70110,62985
+70111,69307,72463
+70112,15010
+70113,79672
+70114,41971
+70115,77502
+70116,11695
+70117,51678
+70118,29511,8401
+70119,3104
+70120,78551,55466
+70121,27745,4158
+70122,67025
+70123,18636
+70124,75538
+70125,1740
+70126,16652,29146
+70127,53057,8160
+70128,9968
+70129,76451
+70130,8071
+70131,50096,82115
+70132,62454
+70133,27002
+70134,77566,30334
+70135,80709
+70136,72271
+70137,69726
+70138,34148
+70139,75036,14207
+70140,1736
+70141,55262
+70142,54773
+70143,57121
+70144,5456
+70145,57527
+70146,51850
+70147,38200
+70148,10010
+70149,17277
+70150,67921
+70151,49463
+70152,64757
+70153,74199
+70154,32383
+70155,72707
+70156,35815
+70157,50027
+70158,174
+70159,67886,65628
+70160,42194
+70161,67230
+70162,60368
+70163,5731
+70164,30623
+70165,52536,26152,75501
+70166,63783,47925
+70167,18430,4902
+70168,53550
+70169,50350
+70170,35253
+70171,43712
+70172,12993
+70173,76238
+70174,41661
+70175,30854,80422
+70176,3394
+70177,79832,8818
+70178,38275
+70179,17932
+70180,60692,81750,68363
+70181,13175
+70182,21562,76376
+70183,78368,65933,28467
+70184,68241
+70185,81958,45131
+70186,24201
+70187,802
+70188,13561
+70189,24433
+70190,48416
+70191,37859
+70192,14357,42840
+70193,39411
+70194,79145
+70195,56404
+70196,71843
+70197,53448
+70198,55216
+70199,56829,12858
+70200,19019
+70201,33079
+70202,51572
+70203,79879,49985,71779
+70204,27292
+70205,65674
+70206,16148
+70207,67170,52035
+70208,67868,28827
+70209,55314
+70210,23245
+70211,29029
+70212,59653,11613
+70213,37015
+70214,19749
+70215,60873
+70216,73567,55515
+70217,28645
+70218,33631
+70219,9119,47746
+70220,11433,76214
+70221,63217
+70222,81956
+70223,18401
+70224,69107
+70225,50934
+70226,36193
+70227,36200
+70228,54672,15574,7402
+70229,6000
+70230,62524,55076
+70231,57043
+70232,27003
+70233,44005
+70234,69371,21992
+70235,6864
+70236,2623
+70237,55023
+70238,55898,41530,53814
+70239,11509
+70240,18187
+70241,20652
+70242,65646
+70243,69145
+70244,32218,34379
+70245,54680
+70246,5465,7775
+70247,77421,38500
+70248,54738
+70249,14445
+70250,27246
+70251,48096
+70252,53287
+70253,3752,22746
+70254,73186
+70255,6005,60834
+70256,13881
+70257,35188,56603
+70258,64057
+70259,72233
+70260,71846
+70261,75688
+70262,62104,18015
+70263,22282
+70264,70392
+70265,28867,28325
+70266,21675,40534
+70267,78879
+70268,37803
+70269,46982
+70270,73255
+70271,77304,30722,43411
+70272,48550
+70273,43110
+70274,29732
+70275,64390
+70276,75030
+70277,46860
+70278,3705
+70279,46550
+70280,64039
+70281,42344,69394
+70282,61549
+70283,46991
+70284,31674,6906
+70285,26588
+70286,75341
+70287,5811
+70288,39184
+70289,7115
+70290,28331
+70291,3221
+70292,74395
+70293,31754
+70294,33866
+70295,30255
+70296,44078,6423
+70297,72934
+70298,14991
+70299,32995,23309
+70300,7577
+70301,62479
+70302,5004
+70303,43038
+70304,81842
+70305,42589
+70306,77554
+70307,40851
+70308,19386
+70309,73999
+70310,35947
+70311,39515
+70312,33276
+70313,36932
+70314,16077,13115
+70315,46898
+70316,46773
+70317,65883
+70318,54594
+70319,43154,50330
+70320,10034
+70321,11052,64316
+70322,67200
+70323,69630
+70324,55487
+70325,2750
+70326,6918
+70327,905,43279,39106
+70328,82097,29721
+70329,38858
+70330,34763
+70331,22785,13777
+70332,14563
+70333,57955
+70334,49024
+70335,63578
+70336,81395
+70337,61979
+70338,10715
+70339,36892,66825
+70340,55050,19962
+70341,5267,15899
+70342,26387,62990
+70343,69720
+70344,78637
+70345,41639
+70346,59678
+70347,23674
+70348,32788
+70349,62354
+70350,35780
+70351,65100
+70352,24160
+70353,22203
+70354,5445
+70355,41294
+70356,70858
+70357,24577
+70358,63414
+70359,59202,14504
+70360,69206
+70361,27745
+70362,35149,14623
+70363,53541
+70364,68394
+70365,30562
+70366,28515
+70367,39093
+70368,56937
+70369,39539
+70370,69412
+70371,68392
+70372,47062
+70373,52738,81734
+70374,69262
+70375,79594,13632
+70376,33165
+70377,3863
+70378,53235
+70379,43332
+70380,43156
+70381,26700,35574
+70382,71635
+70383,43517
+70384,64264,11052
+70385,10960
+70386,48488
+70387,74860
+70388,731
+70389,26763
+70390,45421,42286
+70391,23121
+70392,37801,69883
+70393,56341
+70394,47715
+70395,23724
+70396,32119
+70397,10392
+70398,19168
+70399,62207
+70400,3744
+70401,14292
+70402,75115
+70403,70836
+70404,39783,16836
+70405,46016
+70406,70360
+70407,50542
+70408,53978
+70409,70815,29765
+70410,11055
+70411,39380
+70412,77263
+70413,77149
+70414,44190
+70415,69873
+70416,63278,24117
+70417,28169
+70418,39280
+70419,72396
+70420,58667
+70421,63076
+70422,24215
+70423,27549,56337
+70424,77214
+70425,16231,52808
+70426,69708
+70427,69500
+70428,66167
+70429,40274,42970
+70430,50959
+70431,8288
+70432,18867
+70433,37321
+70434,42204,22169
+70435,24586
+70436,65319
+70437,66616
+70438,33705
+70439,31265
+70440,64496
+70441,50969
+70442,44991
+70443,45647,24629
+70444,38474
+70445,77674
+70446,9573
+70447,15680,69875
+70448,68242,69470
+70449,80619,5718
+70450,13481
+70451,47225
+70452,1023,12557,53960
+70453,57592,31721
+70454,14785
+70455,26171
+70456,31502
+70457,13198
+70458,67785
+70459,82080
+70460,43163
+70461,50936
+70462,38889
+70463,41180
+70464,70634,32253
+70465,11234
+70466,11850
+70467,50155
+70468,27480
+70469,62555
+70470,12918
+70471,9594
+70472,72289
+70473,73780
+70474,69985
+70475,19934,42133
+70476,44914
+70477,46085
+70478,36367
+70479,53325
+70480,18326
+70481,14593
+70482,27015,39741
+70483,2297
+70484,59698,26209
+70485,45731
+70486,13021
+70487,18841
+70488,5947,78897
+70489,33005
+70490,2009
+70491,27668
+70492,53388
+70493,5829
+70494,19432
+70495,17804,50189
+70496,7696
+70497,12048,36983
+70498,30708
+70499,27018
+70500,30941
+70501,37361
+70502,76602
+70503,77421
+70504,57631
+70505,51445
+70506,66813,72577
+70507,74938
+70508,22456
+70509,47183,40179,17546
+70510,55710
+70511,16155
+70512,81270
+70513,41356
+70514,10019
+70515,25280
+70516,56448
+70517,29203
+70518,59017
+70519,16607
+70520,38027
+70521,13975
+70522,20528,8154
+70523,34216,18556
+70524,72375
+70525,49561
+70526,69272,40307
+70527,21892
+70528,35448,76439
+70529,70796
+70530,47914
+70531,41855
+70532,35493
+70533,51870
+70534,70162
+70535,41899
+70536,870
+70537,6433,75540
+70538,31208
+70539,39345,26087
+70540,65325
+70541,9744
+70542,76677
+70543,4384
+70544,43724
+70545,3117
+70546,54957
+70547,5777,18498
+70548,58855
+70549,1544
+70550,14879
+70551,54718,11096
+70552,73255,37889
+70553,15671
+70554,76409,38161
+70555,42709
+70556,49050
+70557,52050
+70558,50324,39646
+70559,16552
+70560,69864
+70561,33742
+70562,71021
+70563,2589
+70564,61790
+70565,4171
+70566,50087
+70567,24513
+70568,48838
+70569,2884
+70570,47942,37975
+70571,37283
+70572,74220
+70573,4838,39716,9224
+70574,45614
+70575,30965
+70576,79793
+70577,50039
+70578,40645
+70579,44304
+70580,63349
+70581,14005
+70582,30104,42712
+70583,6111
+70584,179
+70585,3740
+70586,66826,62214
+70587,3850
+70588,77865
+70589,22601,30922
+70590,24283
+70591,81079
+70592,31058
+70593,71332
+70594,31296
+70595,62181
+70596,71246
+70597,57311
+70598,81367
+70599,6149
+70600,50565
+70601,4280
+70602,42305
+70603,6601
+70604,79478
+70605,12282
+70606,33419
+70607,81547
+70608,40790
+70609,17826,76876,24901,25181
+70610,59796,12182
+70611,80644
+70612,75580
+70613,2209,37950
+70614,80809,72479
+70615,14995,48999
+70616,18437
+70617,12321
+70618,74106
+70619,4182
+70620,60548,62800
+70621,10145,48755
+70622,48431
+70623,22231
+70624,78019
+70625,60492,68900
+70626,68391,22115
+70627,73936
+70628,10795
+70629,23671
+70630,37500
+70631,75441
+70632,26254,47388
+70633,273
+70634,76770,6432
+70635,17086,30445
+70636,75103
+70637,33593,8255
+70638,65447
+70639,16779
+70640,44088
+70641,15064
+70642,81683
+70643,35228
+70644,61287
+70645,2873
+70646,56862
+70647,69233
+70648,38145,33446
+70649,73842,64828
+70650,38088
+70651,70356
+70652,67139
+70653,36822
+70654,28040,36850
+70655,7539
+70656,67987,4478
+70657,75110
+70658,14034
+70659,28593
+70660,36667
+70661,5061
+70662,56441,28233
+70663,28985,81229
+70664,67587
+70665,17065
+70666,57521
+70667,14763
+70668,44599
+70669,61419
+70670,13949,47222,57412
+70671,12739
+70672,80730
+70673,49807
+70674,51411
+70675,74161,14758,78806,1280
+70676,38802
+70677,68117
+70678,47263,19259
+70679,56801
+70680,19091
+70681,79717
+70682,25356
+70683,23756
+70684,27156
+70685,52701,42012
+70686,25556
+70687,15588
+70688,34010
+70689,9394
+70690,43648
+70691,57337
+70692,72696
+70693,61272,66187
+70694,2589
+70695,22990,60927
+70696,24752
+70697,20755
+70698,39982
+70699,9113
+70700,50931
+70701,70891
+70702,38256,62994
+70703,66553
+70704,33145,29328
+70705,28501
+70706,62897,707
+70707,20905
+70708,41208,46217
+70709,47172
+70710,25832
+70711,69089,29222
+70712,61934,11432
+70713,81661
+70714,8383
+70715,63087
+70716,57273
+70717,14308
+70718,37499,32788
+70719,53815
+70720,75488
+70721,3802,45875
+70722,78575,74272,79496
+70723,79234
+70724,22726
+70725,14812
+70726,41494
+70727,56158
+70728,38684
+70729,68544
+70730,16067
+70731,33745
+70732,57653
+70733,45588
+70734,17416,65850
+70735,74482
+70736,52337
+70737,14028
+70738,8682
+70739,19860
+70740,40679
+70741,31090
+70742,79420
+70743,16226
+70744,3434
+70745,17849,19326
+70746,72550,50767
+70747,65982
+70748,54382
+70749,1738
+70750,10647,62496
+70751,75553,64466
+70752,18295
+70753,57876,43507,61496
+70754,63373
+70755,52820
+70756,54585
+70757,36822,8792,71593
+70758,32093
+70759,66284
+70760,44064
+70761,8467
+70762,11869
+70763,38034
+70764,60095
+70765,48800
+70766,33474
+70767,62911
+70768,10296,50313,58585,33324
+70769,45123
+70770,5977
+70771,7134
+70772,66472,59705,42861
+70773,2750
+70774,81875
+70775,27936
+70776,44487
+70777,33874
+70778,42534
+70779,11959
+70780,51656
+70781,68814
+70782,74770,1885
+70783,78019
+70784,19298
+70785,23140,23710
+70786,80270,24602
+70787,24680,15870
+70788,1123
+70789,9361,74897
+70790,8930
+70791,11523
+70792,16691,47299
+70793,10842,49312
+70794,49849
+70795,60623
+70796,10106
+70797,53880
+70798,1983
+70799,6759
+70800,51113
+70801,65425
+70802,68705
+70803,4886
+70804,3641,13192
+70805,25897
+70806,8816
+70807,18304
+70808,18751,22572
+70809,17053
+70810,54872,33017
+70811,9249,74949
+70812,67821
+70813,61505
+70814,10724,38999
+70815,46201
+70816,31664
+70817,220
+70818,22751,33753,44322
+70819,46243,60550
+70820,47150,74987
+70821,32556,78314
+70822,48215,25588
+70823,8380
+70824,40795
+70825,18727
+70826,63308
+70827,2672
+70828,3934
+70829,22900,68807
+70830,19573
+70831,951
+70832,23562
+70833,53520
+70834,17973
+70835,23023,73643
+70836,39775
+70837,56895
+70838,21803
+70839,58600
+70840,73248
+70841,54832
+70842,66322
+70843,65935
+70844,70104
+70845,13694
+70846,2624
+70847,46908
+70848,72088
+70849,17684,30102,71354
+70850,24896
+70851,65795
+70852,9413
+70853,81296
+70854,6096
+70855,59441
+70856,79698,30127
+70857,580,10423
+70858,3048
+70859,45767
+70860,35656,49913
+70861,72200
+70862,13625
+70863,41098
+70864,44818
+70865,24039,77723
+70866,52570
+70867,61742
+70868,46045
+70869,23349
+70870,72119
+70871,71003,6473
+70872,37121
+70873,80001,66164
+70874,13487
+70875,8070,69347
+70876,46767
+70877,66208
+70878,79769
+70879,69774
+70880,20836,21159,73141
+70881,78525
+70882,72034
+70883,28406
+70884,81376
+70885,15767
+70886,72026
+70887,53449
+70888,49111
+70889,79605
+70890,52350,5973
+70891,32256
+70892,60233
+70893,66529,51890
+70894,77789
+70895,17331
+70896,38404,58663
+70897,26379
+70898,15175
+70899,64808,26063
+70900,81864
+70901,9641
+70902,2712,34071
+70903,65344
+70904,71960
+70905,77199
+70906,11120
+70907,1955
+70908,74625,11396
+70909,57034
+70910,11122
+70911,38289
+70912,7545,213,48388,6433
+70913,53948
+70914,12294
+70915,74273
+70916,73213
+70917,78386
+70918,50796,79334
+70919,3871
+70920,21803,55846
+70921,77156,56635
+70922,69973,11230
+70923,61968
+70924,18231,68569
+70925,79620
+70926,69781
+70927,21888
+70928,18882
+70929,77668
+70930,40031
+70931,5902
+70932,61963
+70933,8451
+70934,41860
+70935,31149
+70936,19481
+70937,13592
+70938,14410
+70939,49725
+70940,58241,35373
+70941,51084
+70942,71313
+70943,12946,78505
+70944,78563
+70945,9696
+70946,45087
+70947,76009
+70948,9019
+70949,53530
+70950,68673,21443
+70951,45550
+70952,42271
+70953,26268
+70954,79740,60136
+70955,10965
+70956,2718
+70957,20312
+70958,24329
+70959,80068,32494,49010
+70960,19000
+70961,43692
+70962,58616
+70963,60200
+70964,75366,55845,70608
+70965,33911
+70966,51673
+70967,68086
+70968,31056
+70969,55749
+70970,54316
+70971,45165
+70972,71860
+70973,27495
+70974,71536,35943
+70975,169,39917,19809
+70976,50039
+70977,57719
+70978,69731,70928
+70979,36998
+70980,5388
+70981,14124,76071
+70982,17012
+70983,73145
+70984,57983
+70985,74188
+70986,19797
+70987,6339
+70988,22190
+70989,19949,71019
+70990,28349
+70991,66841
+70992,78843
+70993,66847
+70994,68189,53358
+70995,61369
+70996,10709
+70997,67775
+70998,4186
+70999,6631
+71000,80739
+71001,34347,63776
+71002,66130
+71003,835
+71004,33512
+71005,52755
+71006,39502
+71007,41332
+71008,45909
+71009,34765
+71010,27562,34523
+71011,51183,49142
+71012,81510
+71013,78275,22158,30070,869,79615
+71014,57371
+71015,50267
+71016,76474
+71017,45960
+71018,68930
+71019,22553
+71020,64357,24589
+71021,43330
+71022,66468
+71023,3868
+71024,30437
+71025,8539
+71026,77667
+71027,18176
+71028,58765
+71029,32005
+71030,79512
+71031,10274,78996
+71032,80098
+71033,69613,50361,17129,52174,55484
+71034,63873
+71035,73571
+71036,41437
+71037,73041
+71038,23967
+71039,44137
+71040,77547,62057
+71041,42233
+71042,15282
+71043,21968
+71044,35071,8922
+71045,47382,18346
+71046,70436,59808
+71047,56141
+71048,25002
+71049,37135
+71050,37929
+71051,3034,7322
+71052,36068
+71053,14988
+71054,12077
+71055,59937
+71056,70192,30382
+71057,30581
+71058,78174
+71059,31237,37773
+71060,79766
+71061,16816
+71062,81571
+71063,21378
+71064,72751
+71065,75263
+71066,13229
+71067,43119
+71068,19825
+71069,33803,66714,10049
+71070,27797
+71071,408
+71072,56387
+71073,7334
+71074,34315
+71075,30368
+71076,57145,6362
+71077,62981
+71078,23184,19101,4323
+71079,60538,15149
+71080,75456
+71081,23029
+71082,31857
+71083,5319
+71084,35727
+71085,4523,3635
+71086,23206,9013
+71087,54
+71088,59934
+71089,8552
+71090,54098
+71091,23991
+71092,24859
+71093,8464
+71094,72133
+71095,2603
+71096,29665
+71097,49108
+71098,44636,51587
+71099,36331
+71100,76719
+71101,22210
+71102,46505,58558,44102
+71103,23019,81296
+71104,39374
+71105,75684
+71106,10313
+71107,5559
+71108,56891
+71109,37062
+71110,19191,27457
+71111,45613
+71112,62928
+71113,61211
+71114,31705
+71115,3149
+71116,57666
+71117,27889
+71118,20139
+71119,56185
+71120,13464
+71121,69615
+71122,11849
+71123,53071
+71124,58302
+71125,59337,43502,33483
+71126,6435
+71127,42721
+71128,74410
+71129,78045
+71130,34735
+71131,31970
+71132,29141,7334
+71133,44475
+71134,137
+71135,78330
+71136,41805
+71137,54808
+71138,82168
+71139,25686
+71140,34085
+71141,77387
+71142,28649
+71143,53776
+71144,26939
+71145,25220
+71146,44827
+71147,48139
+71148,57299
+71149,71185
+71150,33656,72240
+71151,45617,68320
+71152,73247
+71153,5631
+71154,12712,14465
+71155,69093,10739
+71156,38450
+71157,64494,253
+71158,38711
+71159,28299,64526
+71160,2415
+71161,25031
+71162,49221
+71163,78399
+71164,28519
+71165,30912,55617
+71166,40789,16753
+71167,44350
+71168,34991
+71169,33020
+71170,1958
+71171,30426
+71172,1847
+71173,4240,81797,26126,7933
+71174,46462
+71175,59779
+71176,38597,65955
+71177,15704
+71178,55770,70574
+71179,12908
+71180,63195
+71181,61496,26487,30515
+71182,50005
+71183,17338,10498,32707
+71184,50019
+71185,67352
+71186,75618
+71187,20343
+71188,48462
+71189,56482
+71190,35843
+71191,79571
+71192,71307
+71193,6318
+71194,6921
+71195,58373,5708,10223
+71196,23143
+71197,62795
+71198,75550
+71199,39279
+71200,13699,6664
+71201,14952
+71202,67448
+71203,29911
+71204,39053
+71205,75687
+71206,81268
+71207,58139
+71208,4514
+71209,23349
+71210,33395
+71211,80941,54821
+71212,39858
+71213,45034
+71214,48131
+71215,49311
+71216,5836
+71217,66109,46897
+71218,782
+71219,75
+71220,24657
+71221,34605
+71222,24753
+71223,33512,29652
+71224,864
+71225,1759
+71226,35112
+71227,52385
+71228,43332
+71229,48300
+71230,7812
+71231,69583
+71232,53398
+71233,10428
+71234,64296
+71235,40616
+71236,69343,28401,66463
+71237,24931
+71238,76629
+71239,47746
+71240,62374
+71241,38193
+71242,70467
+71243,71724
+71244,64812
+71245,39484
+71246,74001
+71247,43148
+71248,66588
+71249,43255
+71250,5873
+71251,68445
+71252,79851
+71253,5396
+71254,20587
+71255,6953
+71256,3932
+71257,14581
+71258,39866
+71259,24451
+71260,69356
+71261,79100
+71262,36655
+71263,81158,64086
+71264,20795
+71265,54784
+71266,12427
+71267,5134
+71268,25944
+71269,71092
+71270,508
+71271,50570
+71272,79982
+71273,39136
+71274,11867
+71275,48542
+71276,32316,21507
+71277,18418
+71278,54808
+71279,32120
+71280,70150,48959
+71281,7775
+71282,45449
+71283,44410
+71284,6195
+71285,15333
+71286,48911
+71287,67859
+71288,21835
+71289,63533,28096
+71290,29938
+71291,62602
+71292,74438
+71293,24129,10821
+71294,79795
+71295,26192
+71296,68030
+71297,15429
+71298,66876
+71299,31344
+71300,64799
+71301,80981
+71302,66468,47061
+71303,65143
+71304,58765
+71305,22512
+71306,14008
+71307,21566
+71308,50348
+71309,60481
+71310,60405
+71311,73595,46551
+71312,34491
+71313,31876
+71314,11730
+71315,60992
+71316,9893
+71317,31631
+71318,238,74326
+71319,4114
+71320,4603
+71321,44190
+71322,13873
+71323,63902
+71324,16098
+71325,24332,6506
+71326,15665
+71327,74902
+71328,54195
+71329,12459
+71330,62614
+71331,29810
+71332,69817
+71333,7462
+71334,77134
+71335,79202
+71336,42459
+71337,1435
+71338,1309
+71339,74807,33984
+71340,51582
+71341,36244
+71342,74089
+71343,6966
+71344,26469
+71345,40093
+71346,39518,31457
+71347,67868
+71348,44383
+71349,3900
+71350,80249,714
+71351,14674
+71352,28260
+71353,29901,24543
+71354,19250
+71355,31543
+71356,26951
+71357,27009
+71358,20726
+71359,50442,40796
+71360,12431
+71361,39423,50104
+71362,71694
+71363,47665
+71364,23725,72871
+71365,46868
+71366,25687
+71367,45682
+71368,64822,5835
+71369,76757
+71370,65470
+71371,45881
+71372,9253
+71373,23282
+71374,23756
+71375,5403,57235
+71376,33200,17781
+71377,16808
+71378,24492
+71379,62643
+71380,42242
+71381,11391
+71382,28767
+71383,50746
+71384,44750
+71385,8989,53613
+71386,79046
+71387,81459
+71388,55846
+71389,31106
+71390,22406
+71391,45524,34005
+71392,70970
+71393,49845,1949
+71394,18170
+71395,68871,55210
+71396,37869
+71397,36543
+71398,9404
+71399,29110
+71400,22467
+71401,40430
+71402,8639
+71403,6007
+71404,78579
+71405,64193
+71406,73234
+71407,33159
+71408,16071
+71409,13352,44782
+71410,47288
+71411,49849
+71412,3525,9031
+71413,75633,27234
+71414,70515
+71415,61030
+71416,40678,79433
+71417,11208
+71418,36652
+71419,11574
+71420,22958,39593,32851,66650
+71421,72934
+71422,54744
+71423,48360
+71424,35827
+71425,6447,12107
+71426,54459
+71427,63686
+71428,59130
+71429,56705
+71430,69840
+71431,51819
+71432,43555
+71433,56232
+71434,20590
+71435,17870
+71436,14637
+71437,34590,76906
+71438,79827
+71439,73262
+71440,60013
+71441,57960
+71442,31938
+71443,50734
+71444,16798
+71445,70800
+71446,57968
+71447,68142,81291
+71448,61731
+71449,58499
+71450,77908
+71451,28174
+71452,7929
+71453,57113
+71454,21670
+71455,53022
+71456,35332
+71457,50685
+71458,8651,66045
+71459,17780
+71460,32852
+71461,75972
+71462,56722,64761
+71463,57331
+71464,35796
+71465,64181
+71466,72738
+71467,46785
+71468,51220
+71469,17015,73731,76719
+71470,2065,38149
+71471,12236
+71472,39450
+71473,66965
+71474,23364,78622
+71475,7618
+71476,51184,55631
+71477,7827
+71478,79481
+71479,40810
+71480,27450
+71481,4431
+71482,25146,15652
+71483,64588
+71484,18089
+71485,38728
+71486,73132,45686
+71487,49119,23556
+71488,65938
+71489,77083
+71490,43246
+71491,12065
+71492,19425
+71493,7054,61437
+71494,55985
+71495,72058
+71496,69460,76742
+71497,44101
+71498,55659
+71499,73296
+71500,24372
+71501,46011
+71502,32264
+71503,20909
+71504,74942
+71505,64869,29522
+71506,36269
+71507,48224
+71508,55162
+71509,15555
+71510,2630
+71511,49
+71512,49134
+71513,66912,54511
+71514,57808
+71515,72210,32020
+71516,73852
+71517,5120
+71518,54161
+71519,66254
+71520,13260,12203
+71521,44374
+71522,49917,78768
+71523,6560
+71524,20557
+71525,34940
+71526,63477,48250
+71527,10850
+71528,81091
+71529,81936
+71530,52477
+71531,78463
+71532,51504
+71533,26093
+71534,64932
+71535,73335
+71536,21174
+71537,64931
+71538,24038
+71539,49677
+71540,64152
+71541,66438
+71542,74524
+71543,75207,9513
+71544,32735
+71545,71780,23318
+71546,22238
+71547,17975
+71548,49367
+71549,4374
+71550,58178
+71551,45395
+71552,66119
+71553,21758,57732
+71554,8000
+71555,74022
+71556,27686
+71557,8652
+71558,54890
+71559,43545,29446
+71560,8036
+71561,49954,6722
+71562,58362,20820
+71563,11900
+71564,36644
+71565,28405,44570
+71566,11562
+71567,14622
+71568,9155
+71569,50035,77213
+71570,30243
+71571,6245
+71572,11799
+71573,6418
+71574,43929
+71575,5711
+71576,37911
+71577,23017
+71578,57434
+71579,71645
+71580,11743
+71581,13839
+71582,2359
+71583,55216
+71584,67980
+71585,62295
+71586,74016
+71587,72201
+71588,47951
+71589,34838
+71590,48118
+71591,77393
+71592,53971
+71593,27808,1797
+71594,26079,22644
+71595,1932,36531
+71596,34584
+71597,74831
+71598,40058
+71599,77703
+71600,6209
+71601,67267
+71602,29293
+71603,6550
+71604,44494
+71605,63145
+71606,46437
+71607,7023
+71608,73654
+71609,33155
+71610,29888
+71611,62178
+71612,59487
+71613,66479
+71614,2920
+71615,4707
+71616,39419
+71617,37288
+71618,45628
+71619,59808,8818
+71620,4008
+71621,73185
+71622,4903
+71623,40748
+71624,52774,75080
+71625,13611
+71626,34366,6277
+71627,67351
+71628,25539,80561
+71629,57266
+71630,3024
+71631,79120,9910
+71632,45086
+71633,44528
+71634,18111
+71635,35599
+71636,40900,62639
+71637,31666
+71638,9102
+71639,43785
+71640,47589
+71641,46947
+71642,1556,55276
+71643,1443
+71644,74747,27331
+71645,19447
+71646,58355,11970
+71647,59188,79229
+71648,59929
+71649,31227
+71650,78080,7028
+71651,1096
+71652,42722,14765
+71653,41036
+71654,7678
+71655,78724
+71656,25282
+71657,57958
+71658,76006
+71659,34497
+71660,3176
+71661,2530
+71662,52364
+71663,64101,24714,76381
+71664,51065
+71665,59827
+71666,66767
+71667,27549
+71668,59166
+71669,68147
+71670,30188
+71671,67683
+71672,2764
+71673,41402
+71674,67008
+71675,77703
+71676,35074
+71677,46085
+71678,22497
+71679,71952,23146
+71680,471
+71681,17630
+71682,56018,45953
+71683,4823
+71684,11629
+71685,28858
+71686,77862
+71687,46397
+71688,32119
+71689,77878
+71690,2652,63351
+71691,43758
+71692,39947
+71693,56064
+71694,34085
+71695,76572
+71696,32220
+71697,59862
+71698,47561
+71699,22411
+71700,79798
+71701,37083
+71702,64154
+71703,49299
+71704,73232
+71705,61168
+71706,27168
+71707,31493
+71708,50705
+71709,38357
+71710,20217
+71711,71670
+71712,71531
+71713,4374
+71714,16155
+71715,20631
+71716,19055
+71717,25047,28025
+71718,9789
+71719,33659
+71720,73724
+71721,18251
+71722,52433
+71723,60824
+71724,54019
+71725,69991
+71726,68960
+71727,27849
+71728,38154
+71729,31708
+71730,48382
+71731,11882
+71732,13811
+71733,58186,69131
+71734,132
+71735,57102
+71736,48351,50190
+71737,9514,39628
+71738,7379
+71739,65296
+71740,48053,65429
+71741,73424
+71742,75897
+71743,34475
+71744,15925
+71745,59055,14845
+71746,10230
+71747,27566,47045
+71748,34043
+71749,12722
+71750,53397
+71751,69300
+71752,14175
+71753,2532
+71754,52673
+71755,64112
+71756,51122,41965
+71757,39096
+71758,74819,4894
+71759,17062
+71760,34300,580
+71761,17994,69641
+71762,73399
+71763,79973
+71764,22969
+71765,19439,61560
+71766,40455
+71767,43174
+71768,37588
+71769,48846
+71770,63255
+71771,8924,28079
+71772,41395
+71773,45823,441
+71774,80979
+71775,6462,20600
+71776,11914
+71777,7255
+71778,15768
+71779,35797
+71780,53021
+71781,32123
+71782,42431,79108
+71783,76098
+71784,69886
+71785,17684
+71786,54563,6550
+71787,46349
+71788,19110
+71789,58147
+71790,42789
+71791,61837
+71792,32453
+71793,66221
+71794,9601
+71795,868
+71796,15017,12773
+71797,59722,49714
+71798,71264
+71799,53063
+71800,22093
+71801,54374
+71802,78100
+71803,35142,32263
+71804,4004
+71805,52136
+71806,50241
+71807,65598,57454
+71808,67803
+71809,66491,18504
+71810,1042
+71811,34350
+71812,42106
+71813,22130
+71814,35779
+71815,57544
+71816,54981
+71817,74473
+71818,51582
+71819,54328
+71820,79136
+71821,76078
+71822,64427
+71823,54553
+71824,74777
+71825,80163
+71826,10355,59098
+71827,30876
+71828,22093
+71829,6072
+71830,53525
+71831,51871
+71832,52873
+71833,60554
+71834,29598
+71835,35021
+71836,36652
+71837,2721
+71838,7246
+71839,36965
+71840,16655
+71841,70387
+71842,36650
+71843,53601
+71844,62270
+71845,20441
+71846,10195
+71847,47150
+71848,42350
+71849,20967
+71850,8903
+71851,53385
+71852,25505
+71853,12122
+71854,35320
+71855,67467
+71856,77036
+71857,6172
+71858,69842
+71859,34265
+71860,6473
+71861,941
+71862,58999,50066
+71863,51378,59603
+71864,15598
+71865,48250,81050,13566,63500
+71866,23734
+71867,29128
+71868,15837,46829
+71869,28317,54970
+71870,19360
+71871,60156
+71872,19277,63316
+71873,78563
+71874,22911
+71875,9322,31370
+71876,13627,66216
+71877,52820
+71878,56766
+71879,35191
+71880,52516
+71881,72925,54595
+71882,34691
+71883,46866
+71884,29151
+71885,31724,4774
+71886,34088,56017,34861
+71887,65058
+71888,61815,11307
+71889,47757
+71890,68692
+71891,30364,76986
+71892,42760
+71893,3757
+71894,21575,69751
+71895,51923
+71896,36164
+71897,10544
+71898,60418
+71899,27191
+71900,690
+71901,71657,2815
+71902,51249
+71903,35261
+71904,54353
+71905,784
+71906,61101
+71907,21844,48105
+71908,44122
+71909,72504
+71910,68099
+71911,75499
+71912,78126,2200
+71913,5019
+71914,20139
+71915,15921
+71916,41661
+71917,13478,10140
+71918,47880,24970
+71919,21845
+71920,6631
+71921,7022
+71922,53879
+71923,19102
+71924,71508
+71925,18728,22623
+71926,18435
+71927,45468
+71928,79985
+71929,81342
+71930,41800,11000
+71931,52750
+71932,57918
+71933,72144
+71934,3975
+71935,32258
+71936,72407
+71937,42723
+71938,1863
+71939,80786
+71940,34206
+71941,50178
+71942,58180
+71943,27730
+71944,34764
+71945,53516
+71946,64752
+71947,11629
+71948,31284
+71949,2651
+71950,11170
+71951,27903
+71952,65679
+71953,74898,49894
+71954,78152
+71955,78481
+71956,34957
+71957,8393,59930
+71958,6976,76243
+71959,14569
+71960,54731
+71961,64053,23306,16242
+71962,48730
+71963,11517
+71964,68463
+71965,42792
+71966,4270
+71967,80898
+71968,30137,30513
+71969,17453
+71970,21261
+71971,55055
+71972,38067
+71973,6366
+71974,8865
+71975,72949
+71976,54287
+71977,48535
+71978,34766,22402
+71979,7964
+71980,63129
+71981,77573
+71982,64247
+71983,71574,34580
+71984,17645
+71985,60102
+71986,68213
+71987,62307
+71988,17278
+71989,60280
+71990,24870
+71991,76391
+71992,46327
+71993,43647,73499
+71994,59680
+71995,65667
+71996,72616
+71997,42734
+71998,45535
+71999,23149
+72000,15332
+72001,75837
+72002,56741
+72003,30712,50472
+72004,28749,51168
+72005,55902
+72006,39983
+72007,47719
+72008,82076
+72009,54841
+72010,59794
+72011,47388
+72012,15460
+72013,7624
+72014,31535
+72015,29568
+72016,47781
+72017,71846
+72018,75925,19525
+72019,21222,20777
+72020,58557
+72021,23329
+72022,73209,72474
+72023,30642
+72024,5196
+72025,49744,614
+72026,33553
+72027,28130
+72028,17377,26247,12890,23510
+72029,32774
+72030,60930
+72031,77079
+72032,28352
+72033,69803,58171
+72034,79942
+72035,17782
+72036,18597,6341
+72037,34102
+72038,81160
+72039,2319,24051
+72040,43670
+72041,32022,45097
+72042,36026
+72043,36365
+72044,3724
+72045,63500
+72046,44732
+72047,26432,80722
+72048,31732
+72049,55324
+72050,51846
+72051,49471,47746
+72052,41208
+72053,50744
+72054,61827
+72055,37157
+72056,14728
+72057,13277,15238
+72058,65170
+72059,17290
+72060,22337
+72061,4794
+72062,16456
+72063,40783
+72064,32960
+72065,25192
+72066,67118
+72067,54161
+72068,24784
+72069,60341,32086
+72070,80338
+72071,43380
+72072,14763
+72073,77577
+72074,77313
+72075,43178
+72076,44983,32663,64856
+72077,62853
+72078,39836
+72079,63722
+72080,73715,67936
+72081,69513,21211
+72082,58921
+72083,12481
+72084,16961
+72085,16903
+72086,81636,81732
+72087,57304
+72088,59504
+72089,62807
+72090,59359
+72091,1994
+72092,76270
+72093,36060
+72094,13711
+72095,3128,81470
+72096,78353
+72097,45145
+72098,76761,51445
+72099,65903
+72100,11879,27460
+72101,78574
+72102,32147
+72103,13340
+72104,35642
+72105,39499
+72106,4018,21420
+72107,11625
+72108,78242,597,76739
+72109,74413
+72110,65169
+72111,20021
+72112,31500,67054
+72113,40877
+72114,61725
+72115,77910
+72116,4890
+72117,77712
+72118,3155
+72119,76733
+72120,49738
+72121,62744
+72122,71002
+72123,77119
+72124,37131,77461
+72125,38500
+72126,48064
+72127,55307
+72128,64063,65514
+72129,9055
+72130,12606
+72131,69233
+72132,36284
+72133,49259
+72134,9855
+72135,56860
+72136,46144
+72137,1596
+72138,24008
+72139,73882
+72140,64288
+72141,11340
+72142,34585
+72143,77800
+72144,32982
+72145,42480,4406
+72146,10871
+72147,69521
+72148,38091
+72149,43347
+72150,28952
+72151,39962,65661
+72152,59978
+72153,56439
+72154,18908,14544
+72155,38593
+72156,64407
+72157,26202,11854,66328
+72158,74976
+72159,44721
+72160,58861
+72161,76928
+72162,26197
+72163,36236
+72164,29163
+72165,36400
+72166,3394
+72167,22615,36571
+72168,70778
+72169,11055,52952
+72170,20769
+72171,71926
+72172,24956
+72173,73795
+72174,74204
+72175,4183
+72176,34206
+72177,2746,27495
+72178,58606,308
+72179,64963
+72180,47946
+72181,79169
+72182,12110
+72183,72065
+72184,65344
+72185,42887
+72186,26716,22156
+72187,2326
+72188,42014
+72189,74928
+72190,32895
+72191,78649
+72192,27475
+72193,23540
+72194,77344
+72195,81772
+72196,70558,77736
+72197,37371
+72198,70643,8712,46585
+72199,43422
+72200,55205
+72201,14734
+72202,57327,71887
+72203,54030
+72204,44898
+72205,40755
+72206,35407,37662
+72207,1642
+72208,65354
+72209,81620
+72210,68017
+72211,41545,25958
+72212,14156,38520,13604
+72213,17495
+72214,17784,21509
+72215,13250,23763
+72216,40160
+72217,12813
+72218,4388
+72219,52796,9404
+72220,72985
+72221,65813
+72222,62317,34617
+72223,37403
+72224,33187
+72225,18221
+72226,34526,10392,21615
+72227,48412
+72228,41847
+72229,78479
+72230,9189
+72231,68304
+72232,79762
+72233,74353,20161,73431,27174
+72234,23726
+72235,44791
+72236,48647,35592
+72237,41278,74411
+72238,12533
+72239,49747
+72240,24986
+72241,26156,17587
+72242,23572
+72243,64549
+72244,34301
+72245,12049,5578
+72246,12083
+72247,50217
+72248,2238,35072
+72249,54360
+72250,20706,36938
+72251,51214
+72252,56842
+72253,3244,21133
+72254,72793
+72255,75099
+72256,30004
+72257,11648,79048
+72258,59563,8578
+72259,76675
+72260,60671
+72261,78632,16294
+72262,4865
+72263,62030
+72264,51168,38525
+72265,79091,51723
+72266,42859
+72267,5967,54145
+72268,78383
+72269,69652
+72270,22920,40420
+72271,11531
+72272,60180
+72273,57868
+72274,49018
+72275,71060
+72276,34619
+72277,4761,35846
+72278,4474
+72279,18016
+72280,66795
+72281,75455
+72282,8704
+72283,53429
+72284,6596
+72285,57242
+72286,41795,5584
+72287,22804
+72288,25379
+72289,52936
+72290,40572,27580,30386
+72291,64651
+72292,12443
+72293,15566
+72294,44958,48882
+72295,20261
+72296,38321
+72297,24855
+72298,31210,40116
+72299,56704
+72300,9567,13633,55021
+72301,30913,13783
+72302,37177
+72303,77996,80185
+72304,746,40415
+72305,42817
+72306,3315
+72307,75839,75383
+72308,24164
+72309,41113
+72310,55411
+72311,59322,74734
+72312,19081
+72313,15442
+72314,15261
+72315,36905
+72316,77600
+72317,31707
+72318,17165
+72319,2589
+72320,23292
+72321,72883
+72322,48516
+72323,38839
+72324,35116
+72325,78900
+72326,57563
+72327,9648
+72328,12299
+72329,65104
+72330,60262,45337
+72331,66614
+72332,72078
+72333,41752
+72334,81506,38209
+72335,73830
+72336,59033
+72337,21139
+72338,61100
+72339,18437,9972
+72340,201
+72341,38986
+72342,5765
+72343,3311
+72344,68992
+72345,56404
+72346,11977
+72347,54656
+72348,18437
+72349,28389
+72350,26485
+72351,24467
+72352,69826
+72353,64217
+72354,60012
+72355,27259
+72356,40976
+72357,1975
+72358,17883
+72359,7577
+72360,44095
+72361,56125
+72362,54988,42979
+72363,64951
+72364,28796
+72365,864
+72366,35097
+72367,69301
+72368,28279
+72369,80312
+72370,47180
+72371,15246,60694
+72372,2617
+72373,47834
+72374,42389
+72375,48740
+72376,45052
+72377,55840
+72378,73517,53660
+72379,32405
+72380,57902
+72381,61634
+72382,38470
+72383,63051
+72384,39159
+72385,22322
+72386,11310,42899,1830
+72387,49138
+72388,69933
+72389,46438
+72390,4101
+72391,59601
+72392,35400
+72393,34647,81434,56400
+72394,12918
+72395,80092
+72396,31094,10542
+72397,25896
+72398,70820
+72399,33158
+72400,76052
+72401,67685,33932
+72402,20626,63034
+72403,24906
+72404,42298,79165
+72405,57062
+72406,71703
+72407,15167
+72408,73878
+72409,56159
+72410,71998
+72411,10033
+72412,48089
+72413,52250,65031
+72414,70144
+72415,64038
+72416,19602
+72417,1962
+72418,49113
+72419,47070
+72420,62651
+72421,27251
+72422,72251
+72423,33975
+72424,79905
+72425,8935
+72426,81566
+72427,81336
+72428,14414
+72429,17555
+72430,46961
+72431,24385
+72432,14004
+72433,39011
+72434,64356
+72435,4757,76325
+72436,21264,49453
+72437,12998
+72438,12835,64080
+72439,18929
+72440,10036,48147
+72441,6953
+72442,54030
+72443,64900
+72444,70412
+72445,37751
+72446,48676
+72447,34537
+72448,28561
+72449,58018
+72450,25755
+72451,20538
+72452,6360,38405
+72453,3969
+72454,72252
+72455,57847,51341
+72456,58831
+72457,31954
+72458,49967
+72459,47070,67680
+72460,28125
+72461,55433,11666
+72462,1462
+72463,46057,79524
+72464,18903,4143
+72465,24110
+72466,51754
+72467,7934
+72468,24604
+72469,13650
+72470,74291,31202
+72471,206
+72472,33735
+72473,50112
+72474,37969
+72475,13146
+72476,49212
+72477,53821
+72478,60913
+72479,63184
+72480,39268
+72481,66621,27459
+72482,69332,53372
+72483,45741,55700
+72484,21182
+72485,25967,47944
+72486,33801
+72487,16685
+72488,54293
+72489,58416
+72490,15642,21898
+72491,60029
+72492,9282,13795
+72493,55828,57167,47878,16335
+72494,46505
+72495,45394,4667,24404
+72496,79572
+72497,3432,62852
+72498,29372
+72499,16752,71424
+72500,71596
+72501,58738
+72502,57474
+72503,14093
+72504,65926
+72505,25673
+72506,80249,2980
+72507,30242,24047
+72508,3667
+72509,47738,15267
+72510,74941
+72511,70390
+72512,37656
+72513,33169
+72514,24649
+72515,15058
+72516,31664
+72517,30038
+72518,9498,65944
+72519,30303
+72520,30933
+72521,29415
+72522,31548,11424,80773
+72523,39751
+72524,63275
+72525,47576
+72526,66833,10514
+72527,26789
+72528,58731,10424
+72529,14326
+72530,68087
+72531,79866,53437
+72532,11314
+72533,53078
+72534,56736
+72535,20156
+72536,35059
+72537,76400
+72538,14431
+72539,5740
+72540,8206,35109,40690
+72541,58487
+72542,81445
+72543,78450
+72544,56311
+72545,79461
+72546,17958
+72547,66648
+72548,19250
+72549,22730
+72550,3142
+72551,45605
+72552,21937
+72553,77452
+72554,18833
+72555,30474
+72556,34807
+72557,78647
+72558,74711
+72559,50895
+72560,50704
+72561,28994
+72562,70280
+72563,65290
+72564,56479
+72565,65639
+72566,15949
+72567,25415
+72568,51990
+72569,76318
+72570,643
+72571,80369,11455,16853
+72572,71753
+72573,69307
+72574,71614,15806
+72575,33521
+72576,77586
+72577,4517
+72578,33461
+72579,28248
+72580,2319
+72581,21898
+72582,10709
+72583,25467,30732
+72584,65431
+72585,59493
+72586,48331
+72587,31930
+72588,35521
+72589,984
+72590,73322
+72591,59565
+72592,17018
+72593,60994
+72594,31704,61334,71642
+72595,7987,28344
+72596,9307
+72597,26897,81224
+72598,45775
+72599,16726
+72600,65590
+72601,25818
+72602,18338
+72603,25271,79468
+72604,8386
+72605,10411
+72606,20861
+72607,61533,33206
+72608,61310
+72609,21844
+72610,26926
+72611,17583
+72612,46266
+72613,42076
+72614,17848
+72615,25931
+72616,29414
+72617,17365
+72618,33094
+72619,58990
+72620,25280
+72621,9035
+72622,65696
+72623,37038,75903
+72624,890
+72625,36673
+72626,24361,49622
+72627,17952
+72628,16626
+72629,21925
+72630,76210
+72631,29183
+72632,75502,7717
+72633,44447
+72634,29608
+72635,49709,70101
+72636,36493
+72637,33653
+72638,79688
+72639,34416
+72640,59376
+72641,60938
+72642,11771
+72643,33164
+72644,48252
+72645,4873
+72646,62976
+72647,34072
+72648,9901
+72649,13115
+72650,22065,16957
+72651,20185
+72652,3305,28200
+72653,25840
+72654,9245
+72655,2674
+72656,41159
+72657,77752,13521
+72658,3172
+72659,23931
+72660,14611
+72661,79051
+72662,64441
+72663,57587,38379
+72664,61724
+72665,56302
+72666,58506
+72667,26114
+72668,67298
+72669,29888,17357
+72670,22592,73403
+72671,51580
+72672,10993
+72673,77425
+72674,35956
+72675,80758,24945
+72676,10678
+72677,29201,22652
+72678,76797
+72679,22566
+72680,53074
+72681,54528,33253,48004,77565,80299
+72682,31373
+72683,3223
+72684,81820
+72685,65380
+72686,69718
+72687,7114
+72688,36846
+72689,62409,12491
+72690,49639
+72691,67238
+72692,72980
+72693,19974
+72694,26172
+72695,70032
+72696,64326
+72697,62267
+72698,38343
+72699,1827
+72700,54044
+72701,10591
+72702,52606
+72703,8548
+72704,53544,2939
+72705,12582
+72706,19331
+72707,46026
+72708,31721
+72709,64627
+72710,11741,59303
+72711,67554
+72712,17869
+72713,69684
+72714,38040
+72715,15083
+72716,714
+72717,69909
+72718,42034,58515
+72719,16923
+72720,13906
+72721,3164
+72722,22804
+72723,61310
+72724,29992,60480
+72725,69197
+72726,8593,31571
+72727,67692
+72728,58461
+72729,3365
+72730,27316,75486
+72731,22959
+72732,15124
+72733,58520
+72734,42371
+72735,32207
+72736,64825
+72737,79435,27898,30385
+72738,39847
+72739,80023
+72740,74659
+72741,5183
+72742,81213
+72743,54731,78512
+72744,78399
+72745,30129
+72746,71403
+72747,51575,16798
+72748,42365
+72749,34586
+72750,27083
+72751,73430,44888
+72752,59919
+72753,19970
+72754,22585
+72755,18087
+72756,1259
+72757,11285
+72758,81307
+72759,42810
+72760,42584,73720
+72761,25635
+72762,73823,8521
+72763,45797,22651
+72764,45736
+72765,75485
+72766,18455
+72767,59530,63060
+72768,13881
+72769,15654
+72770,53722
+72771,26163
+72772,37281
+72773,43698
+72774,70719
+72775,17605
+72776,49106
+72777,51330
+72778,33053,51451
+72779,33679,17559
+72780,25189,12744
+72781,73305
+72782,60793
+72783,42997
+72784,56367
+72785,14005
+72786,45033,74382
+72787,13401,45500
+72788,69951
+72789,81064
+72790,54747
+72791,6666,56895
+72792,49397
+72793,45189
+72794,35553
+72795,10413
+72796,14066
+72797,77143
+72798,19528
+72799,6792,41478,79779
+72800,15531,1614
+72801,36240
+72802,80172
+72803,74441
+72804,23292
+72805,25978
+72806,45575
+72807,30436
+72808,41845
+72809,60276
+72810,416
+72811,72576,46920
+72812,78386
+72813,59625,37216
+72814,79056
+72815,32522
+72816,58801
+72817,80010
+72818,28087
+72819,57777
+72820,30907,25810
+72821,38601
+72822,33147
+72823,80507
+72824,62680
+72825,71578
+72826,13253,67873
+72827,36465
+72828,30049
+72829,75922
+72830,43327,8829
+72831,81364
+72832,52066
+72833,71940,62899
+72834,12489
+72835,17458
+72836,58095
+72837,7262
+72838,39095
+72839,58950,65391,53690
+72840,15336,12730
+72841,32311
+72842,18669
+72843,64959,48555
+72844,81445
+72845,11415
+72846,49253
+72847,43084
+72848,63884
+72849,73482
+72850,14830
+72851,25610
+72852,77387
+72853,24773,52648
+72854,46260,17232
+72855,15471
+72856,45900,66999,41989
+72857,54565
+72858,71315,35890
+72859,69828
+72860,2606
+72861,19701
+72862,7815,76905
+72863,77031,69126
+72864,15643
+72865,46365,58555
+72866,76991,6666
+72867,51705
+72868,72725
+72869,67120
+72870,25397
+72871,33687
+72872,73620,78886
+72873,26461
+72874,40753
+72875,77541,20596
+72876,73748
+72877,52251
+72878,80105
+72879,4549,44515
+72880,62165
+72881,30906
+72882,10273
+72883,13884
+72884,1655,27648,3464
+72885,10629,17378
+72886,14622
+72887,30646
+72888,79613,43974
+72889,67328
+72890,4578
+72891,68812
+72892,32175
+72893,32466
+72894,60322,63556
+72895,18882
+72896,8549
+72897,54089
+72898,29424
+72899,32812,3221
+72900,33562
+72901,47563,27687
+72902,51585
+72903,51943
+72904,54230
+72905,70595
+72906,39875
+72907,13048
+72908,45111
+72909,39798,2779
+72910,65302
+72911,49096
+72912,3188
+72913,15424
+72914,8573,46238
+72915,27924
+72916,73909
+72917,40528
+72918,73772
+72919,5155
+72920,36069
+72921,23086
+72922,38716
+72923,69356
+72924,71942,42832
+72925,8768
+72926,43692
+72927,59027
+72928,60128
+72929,10795
+72930,2217
+72931,25962
+72932,76391
+72933,39594
+72934,32788
+72935,30723
+72936,80698
+72937,11990
+72938,66322
+72939,13040
+72940,72194
+72941,57394
+72942,78472
+72943,17880
+72944,26733
+72945,19330
+72946,1639
+72947,48355
+72948,73551,22627
+72949,80213
+72950,48789,3359
+72951,37750
+72952,49405
+72953,21587
+72954,12906
+72955,46847
+72956,41247
+72957,17511,47180
+72958,52878
+72959,40182
+72960,27704
+72961,62429,48412
+72962,11851
+72963,70194
+72964,69326
+72965,13205,54754
+72966,7427
+72967,35970
+72968,13988,55000
+72969,20044,65825
+72970,26654
+72971,39484
+72972,33371
+72973,42433
+72974,18193
+72975,57511
+72976,41225
+72977,78494
+72978,24672
+72979,58468
+72980,46636
+72981,23407
+72982,5621
+72983,1696
+72984,68995
+72985,47035
+72986,39649
+72987,73560
+72988,5599
+72989,55583,24433
+72990,12030,31839
+72991,57782
+72992,32455
+72993,51045
+72994,34126
+72995,60643
+72996,20307
+72997,16058
+72998,13411
+72999,24140
+73000,55556
+73001,26801
+73002,31363
+73003,37217
+73004,22244,17455
+73005,49627
+73006,40862,20279
+73007,33938
+73008,29871
+73009,45096
+73010,57591
+73011,15656
+73012,14515
+73013,76361
+73014,26140
+73015,64076,77214
+73016,11073
+73017,39201
+73018,70483,68641
+73019,273
+73020,10722,61625
+73021,23827
+73022,8336
+73023,24485,8538,33767
+73024,35968
+73025,73088
+73026,60545
+73027,70492
+73028,16579,44983
+73029,80417,21109
+73030,72940
+73031,17780,30479
+73032,72445,46138
+73033,26539
+73034,53285,51280,50816
+73035,5743,57920
+73036,69165,80115
+73037,47075
+73038,72847
+73039,50331
+73040,53379
+73041,76546
+73042,64210,81055
+73043,56078
+73044,10311
+73045,68568,6435
+73046,42955
+73047,44298
+73048,57719
+73049,599,26246
+73050,17258
+73051,50013,23272
+73052,71527
+73053,22488
+73054,68383,80711
+73055,81850
+73056,26341,70529
+73057,1350
+73058,53923
+73059,33386
+73060,8936,23862
+73061,21463
+73062,7543,53342
+73063,43551,46309
+73064,34103
+73065,81445
+73066,2094
+73067,35747,68274
+73068,62143
+73069,48318,51855
+73070,22730
+73071,69874,71659
+73072,73518
+73073,61966,73769
+73074,27776
+73075,31039
+73076,32607
+73077,54731
+73078,80758
+73079,81283
+73080,28303
+73081,45634,35740
+73082,17082
+73083,49790,13269,25539
+73084,2032
+73085,38830,70114,47566
+73086,17480
+73087,41039
+73088,70305
+73089,28642
+73090,39284
+73091,14425
+73092,77081,33476
+73093,67113
+73094,39484
+73095,7367,16418
+73096,53345
+73097,66745
+73098,45263
+73099,61623
+73100,70801
+73101,625,64492
+73102,77674
+73103,39717,11146
+73104,30430
+73105,6298
+73106,80730,77570
+73107,75528,47075
+73108,34449
+73109,28672,60089
+73110,14212
+73111,60149
+73112,70515
+73113,21985
+73114,17527
+73115,5379
+73116,52606,55975
+73117,45396
+73118,59777
+73119,74608,57698,63784
+73120,55213
+73121,2196
+73122,23670
+73123,46996,35019
+73124,5060
+73125,21129
+73126,6417,40629
+73127,76898
+73128,48293
+73129,10203
+73130,55019
+73131,55248
+73132,23318
+73133,41038
+73134,19045
+73135,1696
+73136,67753
+73137,13867
+73138,56024
+73139,31812
+73140,55246
+73141,34391
+73142,49700,70885
+73143,62330
+73144,20336,55901
+73145,81148
+73146,52275
+73147,64358
+73148,38840
+73149,46426
+73150,9286
+73151,50852
+73152,65244
+73153,55803,49317
+73154,39964,56220
+73155,68714
+73156,410
+73157,62902
+73158,1975
+73159,24795
+73160,42350
+73161,65706
+73162,74153
+73163,2727
+73164,75348
+73165,3538
+73166,80856,38745
+73167,14113
+73168,71907
+73169,63298
+73170,53673
+73171,18465
+73172,57051
+73173,27315,6378,24099
+73174,22086
+73175,10788
+73176,38701
+73177,51423
+73178,43260
+73179,5949,44106
+73180,40670
+73181,372,74872
+73182,27532,47166
+73183,69340
+73184,19636
+73185,5896
+73186,2297
+73187,21064
+73188,73758,18830
+73189,9255
+73190,75217
+73191,41792
+73192,13089
+73193,56031
+73194,1992
+73195,64001
+73196,80267
+73197,66336
+73198,39427
+73199,23192
+73200,80559
+73201,12291
+73202,55991
+73203,24315
+73204,25544
+73205,26587
+73206,35152
+73207,17748
+73208,81015
+73209,67757,55469
+73210,6501
+73211,62967
+73212,63672
+73213,53382,43438
+73214,28630
+73215,20571
+73216,16281
+73217,67764
+73218,67662
+73219,29807
+73220,13493
+73221,16343
+73222,60517
+73223,77371
+73224,25980,26904
+73225,34532,62437
+73226,8097,251
+73227,71785,58338
+73228,59969
+73229,44892
+73230,18639,27144,73385
+73231,46130
+73232,1108
+73233,31959
+73234,80376
+73235,31141
+73236,4152
+73237,5559
+73238,68690,76361
+73239,41890,62341
+73240,59021
+73241,80307
+73242,51406
+73243,15768
+73244,56537
+73245,29960
+73246,75011
+73247,7517
+73248,51222
+73249,3733,69665,37797
+73250,6668
+73251,69951,80429
+73252,75045
+73253,31515,45569,45363
+73254,29215,53809
+73255,50521
+73256,72077,44202
+73257,23888,40347,8483
+73258,10013
+73259,44473
+73260,30612,77285,81417
+73261,55089
+73262,68034
+73263,36114,78762
+73264,6378
+73265,49548
+73266,51957,47159
+73267,36128
+73268,81809,54409
+73269,48354
+73270,4978
+73271,71289
+73272,64276
+73273,44469
+73274,78346
+73275,43334
+73276,61493
+73277,16539
+73278,29736
+73279,76660
+73280,3222
+73281,62455
+73282,73146
+73283,46225
+73284,80549,6447
+73285,13330,72100
+73286,44564,7746,56264
+73287,42728
+73288,65293
+73289,65218
+73290,10392
+73291,19639
+73292,19018
+73293,16963
+73294,11356
+73295,24651
+73296,54854
+73297,9930
+73298,18705
+73299,7498
+73300,43819
+73301,56484,6546
+73302,81681
+73303,63018
+73304,9796,13139
+73305,79480
+73306,63398
+73307,43371,14234
+73308,74385
+73309,53336,80667,57441
+73310,62125
+73311,68404
+73312,68899
+73313,18901
+73314,50906
+73315,57435,70038
+73316,10295
+73317,46198,22937
+73318,78448
+73319,12349
+73320,1558,20815
+73321,41368
+73322,32333,60913
+73323,62804
+73324,57061
+73325,15356
+73326,65910
+73327,4630
+73328,24795,37267
+73329,25399
+73330,52309
+73331,4627
+73332,40908
+73333,35019,41062
+73334,13146,33170
+73335,56166
+73336,7440
+73337,75479
+73338,23687
+73339,55889
+73340,51503
+73341,9003,21706
+73342,68211
+73343,26171
+73344,18402
+73345,27608
+73346,76499
+73347,47771
+73348,62222
+73349,17669
+73350,14588
+73351,43799
+73352,43112
+73353,73644
+73354,34500,53339
+73355,62043
+73356,2828
+73357,76097
+73358,6042
+73359,80427
+73360,53218
+73361,75682
+73362,5045
+73363,78840
+73364,17480
+73365,34124
+73366,40554
+73367,36958
+73368,63871,11070,40837
+73369,27185
+73370,73163
+73371,23098
+73372,38384
+73373,77957
+73374,1722
+73375,25297
+73376,77088
+73377,7734
+73378,19628
+73379,4661
+73380,36940
+73381,71300
+73382,47448
+73383,36327
+73384,46923
+73385,43655
+73386,68392
+73387,46666
+73388,61304
+73389,53358
+73390,19950,3058
+73391,14782
+73392,66732
+73393,12222
+73394,7498
+73395,46540
+73396,21792
+73397,65553
+73398,2705
+73399,55668
+73400,42204
+73401,60520
+73402,16290
+73403,13997
+73404,60051,11318
+73405,7427
+73406,71350
+73407,63787
+73408,81004
+73409,67419,17954,73412
+73410,64021
+73411,22394
+73412,71351,2450,42625
+73413,37834,23533
+73414,47998,37578
+73415,81345
+73416,3716
+73417,59385
+73418,45060
+73419,38601
+73420,13122
+73421,43804
+73422,62329,58049
+73423,38067
+73424,68750
+73425,59962
+73426,41321,39470
+73427,20458
+73428,38321,40919
+73429,9123
+73430,49867
+73431,62657
+73432,49387
+73433,42302
+73434,40387,72649
+73435,59933
+73436,69385
+73437,39737
+73438,6797
+73439,40186
+73440,7543
+73441,31741
+73442,71750
+73443,76441
+73444,63295
+73445,25073,30750
+73446,58146
+73447,80629
+73448,43525,70322
+73449,28639,74090
+73450,5833
+73451,15861
+73452,3779
+73453,75563
+73454,99
+73455,1640
+73456,14673
+73457,13569
+73458,68568,28362
+73459,5618
+73460,2867
+73461,27132
+73462,16998
+73463,25736
+73464,14505
+73465,80333,33757
+73466,32442,72833
+73467,13282,23062
+73468,18478
+73469,54314
+73470,4969,7502
+73471,30215,26533
+73472,79954
+73473,9348
+73474,79398,73308,37095
+73475,64659,79564
+73476,22316
+73477,36892
+73478,24757,44630
+73479,42796
+73480,14230
+73481,49585
+73482,71127
+73483,73793
+73484,17383
+73485,62360
+73486,36305
+73487,24738
+73488,25694,41716
+73489,56811,57438
+73490,76564
+73491,77528
+73492,73412
+73493,2227,23304
+73494,70575
+73495,34379,1446
+73496,32589
+73497,118
+73498,63538
+73499,4872
+73500,67633
+73501,54075
+73502,77723
+73503,49044,9215
+73504,48843,5080
+73505,12040
+73506,6000
+73507,14083
+73508,31595
+73509,42335
+73510,78831
+73511,21506
+73512,51004,71436
+73513,60859
+73514,20051
+73515,17514
+73516,1512
+73517,24367
+73518,64974
+73519,1849
+73520,78041
+73521,22930
+73522,14449
+73523,25751,43960,34503
+73524,3243
+73525,20637
+73526,67151
+73527,52292
+73528,21133
+73529,38045,44187
+73530,13679
+73531,26610
+73532,76116
+73533,1649
+73534,66654
+73535,70121
+73536,78545
+73537,72024
+73538,62442
+73539,48880
+73540,61400,5091
+73541,31508,69830
+73542,30086
+73543,27619
+73544,37032
+73545,44946
+73546,71002
+73547,39565
+73548,68077
+73549,57413
+73550,38616
+73551,47791
+73552,51903
+73553,6147,74386
+73554,35448
+73555,22120
+73556,17847
+73557,1776,33626
+73558,76761
+73559,25387,18675
+73560,5064
+73561,14636
+73562,18335
+73563,32584,34980,46904
+73564,9826,59757
+73565,14664
+73566,46458,31565
+73567,36853
+73568,17219
+73569,68408
+73570,44018
+73571,40595
+73572,59374,39798
+73573,31112
+73574,13197
+73575,29617
+73576,48678,76826
+73577,10557
+73578,81864
+73579,17351
+73580,78929
+73581,69539,3071
+73582,33691
+73583,76834,79564
+73584,2105,39605
+73585,6931
+73586,76895
+73587,78563
+73588,33830,3674
+73589,64984
+73590,81655
+73591,25237
+73592,59969
+73593,76003
+73594,4636,81137
+73595,76493
+73596,55685
+73597,45955
+73598,41556
+73599,55372
+73600,60268
+73601,23425
+73602,70391
+73603,48064,16162
+73604,40606
+73605,41024
+73606,55431,55649
+73607,62125
+73608,34987
+73609,15009
+73610,77819
+73611,25826
+73612,46337
+73613,804
+73614,68575
+73615,58461
+73616,39466
+73617,15231
+73618,76338
+73619,54594
+73620,6116
+73621,37029
+73622,21013
+73623,14696,61174
+73624,35144
+73625,60504
+73626,26692
+73627,36398
+73628,51199
+73629,68188,13210
+73630,62289
+73631,36422
+73632,28605
+73633,7363
+73634,25463
+73635,63922
+73636,66154
+73637,2623,64253
+73638,30822
+73639,72973,3895
+73640,57167,8039
+73641,74317
+73642,53988
+73643,37943
+73644,17468
+73645,27903
+73646,21161
+73647,26434
+73648,57856
+73649,41543
+73650,81248
+73651,50079,9737
+73652,79202,79047
+73653,65169
+73654,60545
+73655,35955
+73656,71367
+73657,63347
+73658,63430
+73659,9267
+73660,55158
+73661,32196
+73662,9350,32406
+73663,7928
+73664,61971,29529
+73665,44149,79398
+73666,70786
+73667,12449
+73668,7463
+73669,27706
+73670,2229
+73671,34776
+73672,41987
+73673,20189
+73674,20626
+73675,20949
+73676,47196
+73677,78097
+73678,79781
+73679,44085,28270
+73680,17738,48340,37559
+73681,76011
+73682,23580
+73683,18603
+73684,14447
+73685,27688
+73686,50323,10868
+73687,4432
+73688,12148
+73689,80300
+73690,69970,42978
+73691,79486
+73692,76283,80417
+73693,27374
+73694,20495
+73695,81897
+73696,73730
+73697,2094
+73698,4274
+73699,29383
+73700,16574
+73701,68491
+73702,33373
+73703,48730
+73704,60754
+73705,16581
+73706,22332
+73707,54539
+73708,40641
+73709,77588
+73710,58822,35599
+73711,14717
+73712,7953
+73713,80091
+73714,4374
+73715,32330
+73716,72375
+73717,7576
+73718,42489
+73719,65591,50284
+73720,24747,53548
+73721,66000
+73722,31839
+73723,50348
+73724,67791
+73725,64558
+73726,11310,3166
+73727,69861
+73728,5215
+73729,33504
+73730,33894
+73731,43339
+73732,33248
+73733,6504
+73734,76481
+73735,48630
+73736,68512
+73737,52688
+73738,38143,49618
+73739,12981
+73740,46415
+73741,15976
+73742,28635
+73743,70049
+73744,55818
+73745,11007
+73746,11404
+73747,58021
+73748,1809
+73749,54475
+73750,64587
+73751,50607
+73752,18524
+73753,65681,48061
+73754,51853,36532
+73755,34415
+73756,55912
+73757,74102
+73758,23156
+73759,37567
+73760,42484
+73761,5130
+73762,16429
+73763,72889
+73764,74070,72807
+73765,24100
+73766,34601
+73767,25793
+73768,60614,17571
+73769,73604
+73770,69985
+73771,47230
+73772,75881
+73773,72990
+73774,8863
+73775,71846
+73776,28734
+73777,40318
+73778,19055
+73779,66274
+73780,47768
+73781,46823
+73782,70436
+73783,28649
+73784,14520,57568
+73785,17932
+73786,66964
+73787,43233
+73788,57921
+73789,15352
+73790,53854
+73791,71822
+73792,9356,471
+73793,2324
+73794,4774
+73795,30824
+73796,45462
+73797,32457,54129
+73798,8743,79679
+73799,54660
+73800,45689
+73801,79120
+73802,73918
+73803,25885
+73804,35791
+73805,74098
+73806,68307
+73807,11278
+73808,58283
+73809,75282
+73810,33768
+73811,40852,40532
+73812,1979
+73813,19888
+73814,22674
+73815,17121,37991,33114
+73816,43987,19439
+73817,30222
+73818,6191,14715,46309
+73819,22238
+73820,19463
+73821,12397
+73822,71849
+73823,36996
+73824,37034
+73825,885
+73826,26194
+73827,39470
+73828,38044
+73829,31066
+73830,57966
+73831,19805,35400,70097
+73832,54975
+73833,59031,9133
+73834,68311
+73835,44155
+73836,51296
+73837,22765
+73838,37131
+73839,30093
+73840,32541,42941
+73841,63348
+73842,73077
+73843,12344
+73844,9516
+73845,60327
+73846,33548
+73847,11313,9916,4030
+73848,49225
+73849,43399
+73850,1541,37273
+73851,69063,53133
+73852,3577
+73853,70699
+73854,79346
+73855,64524
+73856,54705
+73857,66604
+73858,31185
+73859,47497
+73860,21976
+73861,56362
+73862,1155
+73863,60775
+73864,8401
+73865,49643,64066
+73866,76296
+73867,31034,16560,15850
+73868,75766
+73869,4025
+73870,35258
+73871,66307
+73872,5558
+73873,40441
+73874,62318
+73875,44679
+73876,39375
+73877,37933,13183
+73878,70297
+73879,27769
+73880,47988
+73881,62859
+73882,11977
+73883,29743
+73884,9739
+73885,12677,62214
+73886,69692
+73887,28089
+73888,37484
+73889,52711
+73890,18115
+73891,74588
+73892,34184
+73893,9728
+73894,27889
+73895,36403
+73896,41214
+73897,46191
+73898,1611
+73899,28180
+73900,50511
+73901,71430,20210
+73902,60724
+73903,49916
+73904,81328
+73905,46636
+73906,16888
+73907,15850
+73908,75492
+73909,25092
+73910,27043,18790
+73911,11667
+73912,49965
+73913,57108,66819
+73914,77979,1918
+73915,41832
+73916,31924
+73917,22788,29861
+73918,5385,80318
+73919,1579
+73920,77943
+73921,12607
+73922,78323
+73923,44376
+73924,36116,69696
+73925,50847
+73926,19522
+73927,32346
+73928,27157
+73929,51509
+73930,12466
+73931,45636
+73932,59153
+73933,47847,44417
+73934,29909
+73935,870
+73936,75173
+73937,11866,993
+73938,75918,41703
+73939,3850
+73940,34766
+73941,51704,36414,5875
+73942,43051
+73943,58505
+73944,16126
+73945,45508
+73946,78460
+73947,52814
+73948,6939
+73949,6168
+73950,59589
+73951,81214
+73952,64926,43254
+73953,38163
+73954,77454
+73955,80806,373
+73956,73369
+73957,35204
+73958,80580
+73959,53395
+73960,8538
+73961,55771
+73962,72387,35588
+73963,5502,8962
+73964,22283
+73965,29034
+73966,36201
+73967,59196
+73968,11494
+73969,5434
+73970,67103
+73971,30533
+73972,82020
+73973,16858
+73974,13984
+73975,8015
+73976,7695
+73977,42879
+73978,37416
+73979,34449
+73980,42876,81158
+73981,73781,7157
+73982,51645
+73983,3758
+73984,43284
+73985,57318,1641
+73986,59779
+73987,40063
+73988,4968
+73989,37273
+73990,3942
+73991,71175
+73992,5342
+73993,23667,10779
+73994,50887
+73995,4344
+73996,25047
+73997,36354,70602
+73998,60572
+73999,47788
+74000,42421
+74001,4174
+74002,16848
+74003,41892
+74004,9688
+74005,28773
+74006,9333,6694
+74007,2226
+74008,69731
+74009,45736,49057
+74010,69210
+74011,68408,15479
+74012,59936
+74013,40103
+74014,76475
+74015,47906
+74016,75621
+74017,61826
+74018,68820
+74019,67419
+74020,76438
+74021,68390
+74022,49309,63375
+74023,48308
+74024,36784
+74025,67374
+74026,12363
+74027,49727
+74028,18593
+74029,12873,80391
+74030,61145,50790
+74031,23582
+74032,81948
+74033,10180
+74034,5015
+74035,33757,23451
+74036,46736
+74037,48119
+74038,13156
+74039,61748
+74040,63862
+74041,54663
+74042,41247
+74043,70952
+74044,72239
+74045,18611
+74046,62327
+74047,49909,37137
+74048,60835
+74049,25720
+74050,52942
+74051,71091
+74052,52089
+74053,37654
+74054,1209
+74055,17434
+74056,30283,7181
+74057,76741
+74058,11505
+74059,69546
+74060,24557
+74061,74077
+74062,2415
+74063,34265
+74064,54416
+74065,25472
+74066,24895
+74067,59665
+74068,73168,27871
+74069,64149
+74070,76668
+74071,6118
+74072,34684
+74073,63470
+74074,49699
+74075,70245
+74076,33509
+74077,10632
+74078,3054
+74079,53813
+74080,38303
+74081,37716
+74082,19948
+74083,47212
+74084,36813,62068,1809
+74085,30245
+74086,7034,27518
+74087,68598,20218
+74088,21887
+74089,77559
+74090,47624
+74091,65309
+74092,21729,1621
+74093,1388,37150
+74094,15816,18182
+74095,71182
+74096,1898
+74097,53022
+74098,12817
+74099,1374
+74100,31787,20644
+74101,47358
+74102,7577
+74103,23805
+74104,17864,32691,16912
+74105,2379
+74106,28939
+74107,7688,28798
+74108,41287
+74109,5359,67434
+74110,73240
+74111,51559
+74112,69255
+74113,47665
+74114,32169
+74115,21285
+74116,23259
+74117,49112,13197
+74118,69885
+74119,49857
+74120,3647,59047
+74121,1677
+74122,804
+74123,26512
+74124,14824
+74125,53365
+74126,63325
+74127,81652,81465
+74128,25258
+74129,50394
+74130,70378
+74131,61795
+74132,16196,12207
+74133,14519,27736
+74134,8095,10360
+74135,29731
+74136,16947,27607
+74137,207
+74138,16169
+74139,18777,12553
+74140,32107,46990
+74141,33324
+74142,66578
+74143,17849
+74144,22093
+74145,22169,59716
+74146,14489
+74147,74344
+74148,44130
+74149,69776,68648
+74150,39911
+74151,39655
+74152,28641,31412
+74153,70909
+74154,59917
+74155,19425
+74156,25923
+74157,19199
+74158,8257
+74159,37514
+74160,28788
+74161,49028
+74162,53670
+74163,78209
+74164,37682,50171
+74165,54981
+74166,61790
+74167,4474
+74168,255
+74169,59116,4082,41738
+74170,46430
+74171,11396
+74172,55666
+74173,40595
+74174,34761
+74175,55601
+74176,9779,25677
+74177,61496
+74178,16794
+74179,5150
+74180,3477
+74181,62862
+74182,1292
+74183,42748
+74184,11096
+74185,9803
+74186,49321
+74187,8322
+74188,69093
+74189,57539
+74190,34263,6302
+74191,39435
+74192,68994
+74193,80315
+74194,58554
+74195,29016
+74196,15838,56246
+74197,12354
+74198,58613
+74199,33077,45243
+74200,478
+74201,56798,44629
+74202,49627
+74203,35484,56302
+74204,33956
+74205,27575
+74206,81787,29333
+74207,51486
+74208,5621
+74209,55452
+74210,69624
+74211,2850
+74212,64834
+74213,74309
+74214,74535
+74215,67640
+74216,4823
+74217,61817,48344
+74218,75702
+74219,33604
+74220,29754
+74221,71629
+74222,7022,8163
+74223,10471,71172,54123
+74224,78972,72044
+74225,61289
+74226,31220
+74227,3633
+74228,64988,35164
+74229,10111
+74230,70563
+74231,21962,34779
+74232,74340,27585
+74233,68214
+74234,56246
+74235,50474
+74236,8297
+74237,15643
+74238,16213,10
+74239,43407,74568
+74240,23956
+74241,25426,60276
+74242,1788
+74243,75818
+74244,10620,7042
+74245,31957
+74246,76481,58429
+74247,3939
+74248,66932
+74249,59480
+74250,36117
+74251,36772
+74252,28568
+74253,73757
+74254,8356,9461
+74255,46405
+74256,4705,17735
+74257,58579
+74258,22107
+74259,17022
+74260,63417
+74261,67025
+74262,47774,60067
+74263,60364,47965
+74264,72284
+74265,25549
+74266,77121
+74267,1348
+74268,82135
+74269,72801,16210
+74270,72929
+74271,53517
+74272,68725
+74273,1200
+74274,41607
+74275,79398,67558
+74276,7341
+74277,3222
+74278,36412
+74279,74593
+74280,33423
+74281,79060
+74282,77496
+74283,23751
+74284,27241
+74285,55074
+74286,15556
+74287,47045
+74288,21418,11731,53292
+74289,55119
+74290,34180
+74291,55088
+74292,17849,58361
+74293,38139,39286
+74294,13749
+74295,37987
+74296,45287
+74297,81568
+74298,30673
+74299,24877
+74300,13807
+74301,44915
+74302,10813,25297
+74303,17687,69422
+74304,24698,47846
+74305,80486
+74306,47768
+74307,4798
+74308,64489
+74309,2145
+74310,25935
+74311,72226
+74312,25001
+74313,60711
+74314,75550,28062,45857
+74315,80145
+74316,41751
+74317,80856
+74318,24719
+74319,57119,80998
+74320,15771
+74321,36840
+74322,17932
+74323,7980
+74324,51966
+74325,14501
+74326,20668
+74327,45107
+74328,3101
+74329,70031
+74330,77880
+74331,20477
+74332,16647,79508
+74333,35006
+74334,29419
+74335,1540,25181
+74336,76243
+74337,20506
+74338,2848
+74339,66390
+74340,63500
+74341,9673
+74342,2328
+74343,76063
+74344,15049
+74345,6764
+74346,66805
+74347,31365
+74348,67084
+74349,57434
+74350,34777
+74351,80119
+74352,24623
+74353,74875,69409
+74354,35325
+74355,66618,52337
+74356,52303
+74357,48099
+74358,38032
+74359,30811
+74360,77812,8224
+74361,10592
+74362,71214
+74363,64366,29332
+74364,68404
+74365,30104
+74366,17575
+74367,76312
+74368,42135
+74369,7317
+74370,61110
+74371,59202
+74372,55521,41646,11839
+74373,48047,74830
+74374,31307
+74375,32749
+74376,68709
+74377,6399
+74378,58374
+74379,12858
+74380,9473
+74381,19329
+74382,53870
+74383,4272
+74384,3266
+74385,39822
+74386,11760,68420
+74387,69621
+74388,12682
+74389,47481
+74390,21751
+74391,7450
+74392,37619
+74393,77709
+74394,32457,20356
+74395,2297
+74396,20953
+74397,1331
+74398,58714
+74399,56766
+74400,69100
+74401,3961,54584
+74402,14858,28875
+74403,23682
+74404,82021
+74405,23791
+74406,82047,3429
+74407,61814,75498
+74408,53246
+74409,71596
+74410,56053,70413
+74411,76063
+74412,79041
+74413,11588
+74414,30925
+74415,44119
+74416,32380
+74417,43598
+74418,7938
+74419,7186
+74420,52242
+74421,79903,35466
+74422,16903
+74423,37294
+74424,838
+74425,22904,64437
+74426,55686
+74427,65781
+74428,23425,17997
+74429,3999
+74430,22653,22162
+74431,25182
+74432,905
+74433,5196,61582
+74434,20990
+74435,53864
+74436,32542
+74437,52989
+74438,79238
+74439,59724,92
+74440,47149
+74441,16672
+74442,80292
+74443,54425
+74444,54852,57591
+74445,9803
+74446,27744
+74447,44528
+74448,65376,26010
+74449,28972
+74450,44839
+74451,30049,45341
+74452,33125,69412
+74453,31324
+74454,70033
+74455,27810
+74456,45650
+74457,60937
+74458,74184
+74459,75931
+74460,37084,29270
+74461,5909
+74462,3514
+74463,55437
+74464,4480
+74465,23478
+74466,4292
+74467,25564
+74468,3698
+74469,61735
+74470,4217,11028
+74471,40843
+74472,35771
+74473,54413
+74474,78574
+74475,52244
+74476,42866
+74477,78084
+74478,15855
+74479,28108
+74480,35792
+74481,53282
+74482,25544
+74483,43175
+74484,21328
+74485,11850
+74486,23668
+74487,7631
+74488,38527
+74489,74986
+74490,57659,68411
+74491,5892
+74492,16811
+74493,74860
+74494,37015
+74495,59396
+74496,38470
+74497,14981
+74498,74579
+74499,46965,59083,55496
+74500,39645,45720
+74501,23719
+74502,74481
+74503,12348
+74504,59196
+74505,59316,76745
+74506,18008
+74507,27750
+74508,42946
+74509,25249
+74510,63646
+74511,79920,9822
+74512,17304
+74513,81009
+74514,22917,57604
+74515,31759
+74516,45214,53963,81331
+74517,32663
+74518,49449
+74519,20432
+74520,69923
+74521,23387
+74522,40962
+74523,76546,33933,1225
+74524,21766
+74525,70185
+74526,15193
+74527,16970
+74528,74038,39575
+74529,58603
+74530,79968
+74531,72477
+74532,64390
+74533,40803
+74534,59508
+74535,11749,18420
+74536,5151
+74537,57862
+74538,51139
+74539,61036
+74540,31037
+74541,3416,72601,31731
+74542,1885
+74543,12899,4620
+74544,18955
+74545,18900
+74546,25111,75198
+74547,72391
+74548,28596
+74549,11306,71882
+74550,79277
+74551,20425
+74552,82126
+74553,27650,36204,66891
+74554,41728
+74555,29983
+74556,2802
+74557,15680
+74558,50792
+74559,42596
+74560,9399
+74561,26608
+74562,35225
+74563,42029,690
+74564,62908
+74565,46067
+74566,25092
+74567,30666
+74568,47525
+74569,10734
+74570,14784
+74571,12273
+74572,47982,51516,63059
+74573,14133
+74574,4688,44440
+74575,40426
+74576,60276
+74577,28040
+74578,21415
+74579,62968
+74580,80771
+74581,51002,31535
+74582,44768
+74583,3435
+74584,56142
+74585,80290,16344
+74586,8823,77834
+74587,52991
+74588,1273,31864
+74589,4963
+74590,69848
+74591,14738
+74592,14065
+74593,44286,38186
+74594,49623,74556,19806
+74595,68576
+74596,26867
+74597,27879
+74598,41203
+74599,18130
+74600,51113
+74601,17393
+74602,16383
+74603,46243
+74604,66867,33265
+74605,17562
+74606,42052
+74607,334
+74608,52323,12623
+74609,81355,24174
+74610,74848
+74611,67091
+74612,60960
+74613,50475,41147
+74614,49086
+74615,64974
+74616,6494
+74617,52547
+74618,757
+74619,715
+74620,4065
+74621,59080
+74622,46499
+74623,4996
+74624,25222
+74625,24245
+74626,3287
+74627,27565,15703,51942,75180
+74628,17503
+74629,45105,20460
+74630,63040,59851,72381
+74631,69141
+74632,29560
+74633,79960
+74634,1038
+74635,70850
+74636,58819
+74637,9705
+74638,56223
+74639,3110
+74640,1052,77224
+74641,20865
+74642,6085
+74643,14826
+74644,37594
+74645,23349
+74646,23332
+74647,14348,4347
+74648,72297
+74649,18468
+74650,21548
+74651,55913,4493
+74652,56311
+74653,80507,47175
+74654,44721
+74655,66490
+74656,21632
+74657,26367
+74658,44850
+74659,42760
+74660,33825
+74661,71145
+74662,77065
+74663,70455
+74664,49009
+74665,10670
+74666,10412,61845
+74667,75572
+74668,68399
+74669,37792
+74670,80845
+74671,40911
+74672,12241
+74673,13337
+74674,45792,15950
+74675,76017
+74676,76250
+74677,50726
+74678,6198
+74679,51307
+74680,67344
+74681,60914
+74682,11756,65922
+74683,68342
+74684,73533
+74685,55571
+74686,61775
+74687,42781
+74688,10399
+74689,80610
+74690,5740
+74691,4354,7753
+74692,61440
+74693,23147
+74694,25651
+74695,50055
+74696,19660
+74697,33955
+74698,2899
+74699,13053,42941
+74700,67705,72498,69096
+74701,22912
+74702,25893,4257,65502
+74703,80559,17521
+74704,79691,25560
+74705,48615
+74706,52536
+74707,82063
+74708,27769
+74709,39974
+74710,81281
+74711,48251
+74712,48271
+74713,22476
+74714,71959
+74715,73931,28470
+74716,50501
+74717,31238
+74718,53084
+74719,58831,31271
+74720,18584
+74721,19788
+74722,17932
+74723,70946
+74724,55058
+74725,76927
+74726,5980
+74727,21835
+74728,72951,62708
+74729,79343,39352,79678
+74730,36538
+74731,10925,75589
+74732,45156
+74733,9273
+74734,34554,1138
+74735,47444
+74736,19118,25162
+74737,37032,3732
+74738,24820
+74739,73213
+74740,69726
+74741,5711
+74742,70515
+74743,56219
+74744,71864
+74745,81280
+74746,3231
+74747,65290
+74748,31450
+74749,57890
+74750,8000
+74751,14170
+74752,31274
+74753,31493
+74754,25860
+74755,16515
+74756,42677
+74757,9138
+74758,47068,23049
+74759,43304
+74760,25452
+74761,48502
+74762,25954
+74763,5030
+74764,21153
+74765,5608
+74766,48853
+74767,7262
+74768,61419
+74769,17548
+74770,72915
+74771,67458
+74772,46367
+74773,42020
+74774,49444
+74775,43089
+74776,26430
+74777,14637
+74778,52911
+74779,81591,3396,33385
+74780,46305,35833
+74781,63796
+74782,53821
+74783,62063
+74784,14265
+74785,24492
+74786,41590
+74787,10767
+74788,81494
+74789,38971
+74790,33459
+74791,45685
+74792,58018
+74793,80976
+74794,15841
+74795,59404
+74796,21710
+74797,8904
+74798,77349
+74799,48101
+74800,30464
+74801,23899
+74802,7570
+74803,52040
+74804,58018
+74805,5651
+74806,29562
+74807,19060,10050
+74808,3659
+74809,68291
+74810,66236
+74811,54413
+74812,66538
+74813,17022
+74814,33824
+74815,81534
+74816,70102,73221
+74817,24310
+74818,81014
+74819,8036
+74820,49172
+74821,7215,36311,79793
+74822,56604,63544
+74823,57344,21241
+74824,12545
+74825,78444,54577,2741
+74826,75863
+74827,8595
+74828,60931
+74829,2150
+74830,62614
+74831,63812
+74832,77796
+74833,81756
+74834,12142
+74835,63076
+74836,62848
+74837,56335
+74838,43900,2608
+74839,73556
+74840,3428,73955
+74841,2335,14662
+74842,20255
+74843,34255
+74844,14609
+74845,67367
+74846,27336
+74847,13010,34446
+74848,37325,58674
+74849,57783
+74850,28422
+74851,13790,62551
+74852,30046
+74853,77043
+74854,76435
+74855,54076
+74856,24596
+74857,76383
+74858,9677,23655
+74859,17052,9763
+74860,16074
+74861,81627
+74862,22371
+74863,51700,72272
+74864,22895,77938
+74865,17649
+74866,2902,44767
+74867,33700,70355
+74868,53081
+74869,35532
+74870,72264
+74871,71045
+74872,80261
+74873,64874
+74874,58251,45715
+74875,53859
+74876,57881
+74877,79410
+74878,33712,9844
+74879,79499
+74880,52346
+74881,12693
+74882,13977
+74883,55399,69058
+74884,30382
+74885,81264
+74886,77304
+74887,66319
+74888,34072
+74889,65192
+74890,40038
+74891,12726,12661
+74892,1671
+74893,21884
+74894,23992
+74895,53218
+74896,19864,37614
+74897,48577
+74898,851
+74899,26903
+74900,77179
+74901,18366
+74902,74393
+74903,36061
+74904,25488,48301
+74905,1800
+74906,18237,20383
+74907,4885
+74908,40762
+74909,5075
+74910,80728,12279
+74911,54539
+74912,10902
+74913,11075,69228
+74914,37274
+74915,10965
+74916,57911
+74917,50793
+74918,30879
+74919,22811
+74920,60290
+74921,14313
+74922,16532
+74923,17508
+74924,62818
+74925,45837
+74926,24439
+74927,11048,76089
+74928,74730
+74929,75300
+74930,72504
+74931,19436
+74932,26167
+74933,31905
+74934,39474
+74935,49143
+74936,2029
+74937,73234
+74938,40350
+74939,81077
+74940,2085
+74941,17493
+74942,32601
+74943,14140
+74944,69873
+74945,27596
+74946,74,73586
+74947,25067,13379,56921
+74948,35285,68974
+74949,34168
+74950,46869
+74951,81135
+74952,15729
+74953,17438
+74954,59715
+74955,9378
+74956,45899
+74957,6124
+74958,23263
+74959,34261
+74960,18381
+74961,6191
+74962,31046
+74963,13021
+74964,11677
+74965,58312
+74966,20019
+74967,34494,17750
+74968,43001
+74969,56829
+74970,1916
+74971,72619
+74972,45070
+74973,50812,41703
+74974,61105
+74975,74716
+74976,1193
+74977,24776
+74978,9911,27422
+74979,66161
+74980,71724
+74981,72069,21673
+74982,67149,4291
+74983,12563
+74984,80059
+74985,78254
+74986,82136,3198
+74987,18329,71365
+74988,22638
+74989,81708
+74990,20101
+74991,15613
+74992,33004
+74993,7419
+74994,56058
+74995,4444,24003
+74996,1151
+74997,72960
+74998,58632
+74999,18586,9468,82093
+75000,80813
+75001,14578
+75002,60094
+75003,60649
+75004,8557
+75005,77091
+75006,20349
+75007,19840
+75008,66987
+75009,27765
+75010,46712
+75011,13449
+75012,73158
+75013,10076
+75014,51930
+75015,4951
+75016,16839
+75017,35958
+75018,64268,31014
+75019,1116
+75020,72429
+75021,7422,16841
+75022,64724
+75023,15352
+75024,75515
+75025,33442
+75026,1687
+75027,60676
+75028,34155,69118
+75029,5181
+75030,77772
+75031,67713
+75032,39334,30366
+75033,807
+75034,19218
+75035,30459,60408
+75036,62155
+75037,14539
+75038,15123
+75039,53441,48918
+75040,25253
+75041,46332
+75042,65743
+75043,38768
+75044,36884
+75045,23530
+75046,47051,73568
+75047,77171
+75048,40976,47140
+75049,2829
+75050,21353
+75051,71075
+75052,10241,30279,62147
+75053,80709
+75054,18557
+75055,25764,31500
+75056,67477
+75057,14514
+75058,80950
+75059,5292
+75060,35751,59067
+75061,74678,2655
+75062,57989
+75063,13762
+75064,66689
+75065,13742
+75066,18266
+75067,34503
+75068,24468
+75069,73876
+75070,29415
+75071,33561
+75072,48777,30984
+75073,79981
+75074,25663
+75075,51551
+75076,75754
+75077,33284
+75078,27051
+75079,11000
+75080,871
+75081,11059
+75082,65081
+75083,48181
+75084,70574
+75085,2642,26545,67817
+75086,34343
+75087,8035,28319
+75088,7131
+75089,9732
+75090,65230
+75091,60308
+75092,48884
+75093,46789
+75094,8289
+75095,13607,61811
+75096,72666
+75097,57919
+75098,5179
+75099,72320
+75100,24171,16994
+75101,23057
+75102,9961
+75103,12818
+75104,18326,76268
+75105,22824
+75106,3280
+75107,45596,16660
+75108,7700
+75109,81678
+75110,67854
+75111,23346
+75112,69115
+75113,8304
+75114,41949,58206
+75115,80055
+75116,16872
+75117,71709
+75118,41698
+75119,8876
+75120,61671,23571
+75121,36735,64960
+75122,77930
+75123,64907,31324
+75124,36757
+75125,13143
+75126,46470,56122
+75127,27398
+75128,42704
+75129,79111
+75130,5744
+75131,19003
+75132,61183
+75133,47436
+75134,52337,59055
+75135,20242
+75136,30469
+75137,27170
+75138,39753
+75139,69427
+75140,68923,38247
+75141,33708
+75142,79744
+75143,22453
+75144,35041,44150
+75145,10548,66636
+75146,66169
+75147,71586
+75148,66659
+75149,63492
+75150,45396
+75151,46036
+75152,46252
+75153,23533
+75154,57041,72940
+75155,80154,58693
+75156,61768
+75157,24100,80731
+75158,60337
+75159,15303
+75160,66093
+75161,11980
+75162,15049
+75163,4791
+75164,67862
+75165,53648
+75166,46071
+75167,57964
+75168,43156,15101
+75169,11710
+75170,37515,65982
+75171,69787,37883
+75172,41571
+75173,70473
+75174,45439
+75175,11423
+75176,55804
+75177,7366
+75178,8600
+75179,24898,29574
+75180,25038
+75181,64656
+75182,19997
+75183,38016
+75184,72281
+75185,12262
+75186,69860
+75187,45241
+75188,3004
+75189,18593,4983
+75190,49118
+75191,70365
+75192,33377
+75193,33277,5101
+75194,76067,66200
+75195,45084,46679
+75196,73502
+75197,35256
+75198,42824
+75199,3912
+75200,29522,29153
+75201,19437
+75202,49290,55549
+75203,28917
+75204,22150
+75205,34159
+75206,51762,29810
+75207,75084
+75208,61826,78096
+75209,31957
+75210,34063
+75211,13475
+75212,64907
+75213,37032
+75214,58139
+75215,19742
+75216,59370
+75217,63262,64601
+75218,50405
+75219,3841,14620
+75220,33884
+75221,74054
+75222,12308,49034
+75223,48140
+75224,4338
+75225,79929
+75226,3408
+75227,8262,2127
+75228,21853
+75229,61554
+75230,20066
+75231,81084
+75232,46818
+75233,65092
+75234,61894,37870
+75235,56843
+75236,35932
+75237,67921
+75238,10578,62200
+75239,29987
+75240,49362,66168
+75241,39176,21476
+75242,74057
+75243,78419,76883
+75244,79873
+75245,72936
+75246,60896
+75247,14756
+75248,71270
+75249,4977
+75250,23944
+75251,41457
+75252,52700
+75253,74558
+75254,48211
+75255,77746
+75256,4624
+75257,22426
+75258,13368
+75259,25512,66780
+75260,54002
+75261,23004
+75262,43786
+75263,4142
+75264,40377,51630,28621,4478
+75265,78866
+75266,60341
+75267,27749
+75268,46970,81690
+75269,54302,64318
+75270,14314
+75271,49463
+75272,66750
+75273,68637
+75274,60511
+75275,22766
+75276,5998
+75277,344,35512
+75278,22553
+75279,28422
+75280,26876,40040
+75281,53147
+75282,76552
+75283,63872
+75284,80305
+75285,38407
+75286,34804,71739
+75287,35532
+75288,283
+75289,50930
+75290,37573
+75291,3767
+75292,29882,81413
+75293,15231
+75294,23301
+75295,73081
+75296,26654
+75297,78231,12968,16099
+75298,49086,4765
+75299,6969
+75300,11493
+75301,67438,73979
+75302,1264
+75303,33879
+75304,30908
+75305,61671
+75306,26362,31252
+75307,52930
+75308,54866,62562
+75309,72289
+75310,66314
+75311,58670
+75312,49297
+75313,72384
+75314,69586
+75315,73554
+75316,13888,11,62752
+75317,29631
+75318,23975,25444
+75319,65940
+75320,6071
+75321,62934,55672
+75322,36177
+75323,31745
+75324,66751
+75325,15969
+75326,33848
+75327,9128
+75328,47554
+75329,19983,44513
+75330,41252
+75331,47522
+75332,33462
+75333,57214
+75334,22620
+75335,64760
+75336,46830
+75337,80091
+75338,45873
+75339,79014
+75340,54981
+75341,34958
+75342,9402
+75343,78334
+75344,6550,53127
+75345,60212,81494
+75346,59418
+75347,8690,24395
+75348,41442
+75349,41285
+75350,29011
+75351,34519
+75352,42096
+75353,57241,38136
+75354,60746
+75355,78319,30939
+75356,50163
+75357,32861
+75358,59612
+75359,31731
+75360,13610,58227
+75361,77049
+75362,29713
+75363,48878
+75364,38961
+75365,47762
+75366,76002
+75367,81277
+75368,1785
+75369,24231
+75370,64612
+75371,21903,26856
+75372,48303
+75373,54016
+75374,44804
+75375,15748
+75376,34580
+75377,59248
+75378,41729,40296
+75379,14763
+75380,64172,47992
+75381,30400
+75382,15755
+75383,2721,77316
+75384,15591
+75385,15670
+75386,22663
+75387,16294
+75388,78875,74889
+75389,11585
+75390,32633,41040,3433
+75391,58519
+75392,64080
+75393,37869
+75394,2600
+75395,39002
+75396,70767
+75397,30672,20273
+75398,58687
+75399,30547
+75400,29215
+75401,44584
+75402,5566
+75403,48710
+75404,61229
+75405,64921
+75406,72162,18739
+75407,10249
+75408,23623,49013
+75409,75244
+75410,43765,21789
+75411,26423
+75412,76018
+75413,80769
+75414,39613,8178
+75415,24964
+75416,62441
+75417,13127
+75418,51574
+75419,3806
+75420,54251
+75421,75984
+75422,60317
+75423,53307
+75424,74979
+75425,20809
+75426,38674
+75427,45439
+75428,15983
+75429,36345,42693
+75430,56989
+75431,70952,29267
+75432,67173
+75433,14627
+75434,70057,38622
+75435,26559
+75436,11349
+75437,63218
+75438,2881
+75439,15982
+75440,44202
+75441,70736
+75442,37992
+75443,57621
+75444,28965
+75445,65152
+75446,21903
+75447,39943
+75448,35643,47648,33556
+75449,14029
+75450,65646
+75451,17944
+75452,70055
+75453,37366
+75454,62154
+75455,53206
+75456,63999
+75457,58915,45272
+75458,59692,80728
+75459,12820,26047
+75460,76354
+75461,26729
+75462,63608
+75463,59642
+75464,56151,25280
+75465,10357,47002,42045
+75466,1783,12927
+75467,56946
+75468,63015
+75469,55507
+75470,46138
+75471,59457,22545
+75472,9768
+75473,50725
+75474,14346
+75475,73278
+75476,28978
+75477,52071,61398
+75478,14447
+75479,28180
+75480,4223
+75481,15982
+75482,71174,64946
+75483,66703
+75484,35547
+75485,68407
+75486,76906
+75487,74761
+75488,68270
+75489,15859
+75490,23419
+75491,35287
+75492,43350
+75493,15531
+75494,74753
+75495,46855,71465,32226
+75496,12121
+75497,70304
+75498,4039
+75499,10850
+75500,72370,31468
+75501,50087
+75502,49231
+75503,71060
+75504,52157
+75505,35941
+75506,80513
+75507,65926
+75508,25336,54593
+75509,27478
+75510,3667
+75511,77372
+75512,42034
+75513,31851
+75514,40286
+75515,14673
+75516,61676
+75517,22045,21826
+75518,74490
+75519,49897
+75520,59597
+75521,12708
+75522,11167
+75523,52654
+75524,10399
+75525,60706
+75526,44181,26802
+75527,51779
+75528,75881
+75529,36453,18155,71683
+75530,63716
+75531,57932
+75532,59107
+75533,44584
+75534,2352
+75535,35386,77056
+75536,43455
+75537,77594
+75538,48282
+75539,47013
+75540,54731
+75541,7182,31350
+75542,17520
+75543,26451
+75544,64632
+75545,66185,42981,11088
+75546,50572
+75547,11778,25650
+75548,64904,13985
+75549,50728
+75550,62073
+75551,79108
+75552,45381
+75553,71997
+75554,77571
+75555,60777,63187
+75556,60199
+75557,73598
+75558,54872
+75559,68210,56256
+75560,55158
+75561,32652,46251
+75562,62278,43959
+75563,44380
+75564,46612,5478
+75565,46530,17826
+75566,14542
+75567,10708,63103
+75568,52010
+75569,16975
+75570,60614,34261
+75571,4135,14523
+75572,77702
+75573,46831
+75574,7146
+75575,24952,62498
+75576,27276
+75577,55772
+75578,7919
+75579,12541
+75580,25569
+75581,78045
+75582,60015
+75583,24783
+75584,336
+75585,39940
+75586,55696,53034,61323
+75587,60328
+75588,9150,61130
+75589,27654
+75590,13376,21812
+75591,79730
+75592,32832,60965
+75593,47387
+75594,73001
+75595,28389
+75596,71685
+75597,72029
+75598,58628
+75599,2848
+75600,8982
+75601,7451
+75602,56581
+75603,12724
+75604,34836
+75605,28977
+75606,77083
+75607,24929
+75608,15879
+75609,69615
+75610,60515
+75611,53612
+75612,68507
+75613,43469
+75614,31945
+75615,7973,21867
+75616,14260
+75617,19251
+75618,17648
+75619,61771
+75620,66905
+75621,30842
+75622,61183
+75623,20584
+75624,18559
+75625,63151
+75626,430,52425
+75627,74770,45430,64221
+75628,76012,54009,11512
+75629,33675,12182
+75630,61881
+75631,49849
+75632,32191,73275,51014
+75633,53406
+75634,63532
+75635,61482,44859
+75636,24090
+75637,75266
+75638,16209
+75639,27591
+75640,48410
+75641,54028
+75642,52020
+75643,9455
+75644,1021
+75645,15543
+75646,50293
+75647,69197
+75648,9060
+75649,53119
+75650,74699
+75651,69611
+75652,25225
+75653,27490
+75654,44374,27783
+75655,26951
+75656,71307
+75657,37504
+75658,16627,24903,11671
+75659,298,64735
+75660,7754,43140
+75661,77302
+75662,15656
+75663,41924
+75664,27151
+75665,48094
+75666,18249
+75667,10901
+75668,9305
+75669,79495
+75670,23874
+75671,66329
+75672,50138
+75673,14796
+75674,58590
+75675,22218
+75676,22058,67752,69010
+75677,27811
+75678,77693
+75679,60855,51137
+75680,16940
+75681,66226,73020,9803
+75682,44757
+75683,19168
+75684,32224
+75685,13753
+75686,15459
+75687,25891
+75688,28151
+75689,17434
+75690,44789
+75691,21439
+75692,13811
+75693,13001
+75694,28378,73334,49274
+75695,53521
+75696,15439
+75697,35600
+75698,21
+75699,53385,7082
+75700,67689
+75701,30084
+75702,71882
+75703,66168,75955
+75704,38833
+75705,13807
+75706,43148
+75707,63155
+75708,46323
+75709,50733
+75710,50969
+75711,4897
+75712,12643,15968
+75713,15261
+75714,62762
+75715,52561
+75716,3137
+75717,38012
+75718,19265
+75719,39003
+75720,26920
+75721,48502
+75722,18855,64480
+75723,72925
+75724,78491
+75725,18576
+75726,37236
+75727,41675,53207
+75728,56726
+75729,23652
+75730,40351
+75731,2090
+75732,35624
+75733,65937
+75734,60548
+75735,61471
+75736,31241,5863
+75737,28082,49836
+75738,46044
+75739,9267,28,9739
+75740,77510
+75741,41752
+75742,678,1484
+75743,65380,81402
+75744,42054
+75745,70152
+75746,68958
+75747,35929,21616
+75748,82021,26514
+75749,3570,45154
+75750,53088,23442
+75751,65518
+75752,12198
+75753,52966
+75754,47167
+75755,20287
+75756,29611,34691
+75757,25135
+75758,40369
+75759,32479,41725
+75760,59773
+75761,63060
+75762,56186
+75763,46016,74730
+75764,67274
+75765,67322
+75766,53859
+75767,80045
+75768,42857
+75769,64876,17299
+75770,16863
+75771,1738
+75772,62997,26820
+75773,44237,23607
+75774,38107
+75775,56689
+75776,67847,21006
+75777,49289
+75778,994
+75779,27475
+75780,51621
+75781,12443
+75782,77449
+75783,18464
+75784,40831
+75785,19532
+75786,26062
+75787,30087
+75788,57192
+75789,48717
+75790,28631
+75791,79438
+75792,65586
+75793,68398
+75794,41810
+75795,21840
+75796,73827,79328
+75797,62264
+75798,28435
+75799,35726
+75800,9023,104
+75801,59969
+75802,48580
+75803,5508
+75804,22930
+75805,5119
+75806,34283
+75807,72812
+75808,45052
+75809,54347
+75810,44084
+75811,49544
+75812,55836
+75813,14957
+75814,53915
+75815,64171,56776
+75816,39499,42724
+75817,24928
+75818,67030
+75819,21857
+75820,34016
+75821,62693
+75822,73729
+75823,64083
+75824,32144,57167
+75825,64316
+75826,67491,80344
+75827,49673
+75828,38911
+75829,14754,32515
+75830,64408
+75831,67994
+75832,9127,7311
+75833,54807
+75834,60061
+75835,18912
+75836,15414
+75837,16172
+75838,26220
+75839,73571
+75840,59697
+75841,41519
+75842,30881
+75843,31922,45639
+75844,64995
+75845,76409
+75846,41822
+75847,76094
+75848,33963
+75849,75364
+75850,39704,3288
+75851,50721
+75852,52714
+75853,15255
+75854,80910
+75855,62518,28660
+75856,44754
+75857,54474
+75858,6432,60874
+75859,1983,70908
+75860,41365
+75861,22393,28356
+75862,38126
+75863,70473
+75864,69817
+75865,57924
+75866,61288
+75867,35640,31487,15708
+75868,78560
+75869,2930,26633
+75870,8244
+75871,54806
+75872,75247
+75873,16545,17644
+75874,49598
+75875,50088,27170
+75876,68433
+75877,78586
+75878,45022
+75879,9123
+75880,57540
+75881,24090
+75882,40401
+75883,78661,29028
+75884,65420
+75885,61088
+75886,57141
+75887,25332
+75888,5027
+75889,71328
+75890,11030
+75891,38675
+75892,2450
+75893,70813,58540
+75894,16720
+75895,75309
+75896,31978
+75897,9658,38830
+75898,27653
+75899,44048,38459
+75900,63542
+75901,80806,71071
+75902,71694
+75903,12131
+75904,58737
+75905,68138
+75906,71290
+75907,34911
+75908,77244
+75909,26217
+75910,77363
+75911,82080
+75912,20148
+75913,79375
+75914,65993
+75915,52649,17044
+75916,63084
+75917,56816
+75918,44418
+75919,18075
+75920,25853
+75921,66236
+75922,74736
+75923,34819
+75924,45256
+75925,45488
+75926,50430
+75927,720
+75928,69676
+75929,62822
+75930,58024
+75931,80339
+75932,81411
+75933,19299
+75934,1056
+75935,42569
+75936,47431
+75937,46868
+75938,28723
+75939,74558,34972
+75940,24336
+75941,41823
+75942,77525,31935
+75943,26554
+75944,50016
+75945,32338
+75946,24963
+75947,69832
+75948,41053
+75949,38705
+75950,20162
+75951,10789,22473
+75952,32409,61505
+75953,65922
+75954,7936
+75955,69412
+75956,17386,62471,75974
+75957,82039
+75958,4890
+75959,4635
+75960,28955
+75961,68274
+75962,16869
+75963,78019
+75964,47769
+75965,54381
+75966,68548
+75967,52403
+75968,23112
+75969,60986
+75970,67621
+75971,32059
+75972,47070
+75973,62311
+75974,65022
+75975,61213
+75976,71060,25728
+75977,48050,23747,45203
+75978,17941
+75979,33556,36967
+75980,33278
+75981,91
+75982,54288
+75983,10816
+75984,56892
+75985,5370,71431
+75986,71890,44290
+75987,62158
+75988,59171
+75989,45373
+75990,27680
+75991,49454
+75992,26524
+75993,45337,42847
+75994,58456,13673
+75995,26888
+75996,65267
+75997,38383
+75998,21988
+75999,27333,27193
+76000,60463
+76001,31344
+76002,54215
+76003,23038
+76004,6264
+76005,61350
+76006,11577,31811
+76007,20200
+76008,17611,52853
+76009,56306
+76010,72406
+76011,80455
+76012,10837
+76013,42094,65383
+76014,27458
+76015,53659
+76016,26054
+76017,71228
+76018,64266
+76019,28849
+76020,3833,78427
+76021,38505
+76022,81211
+76023,64566
+76024,59031
+76025,68525
+76026,53506
+76027,18375
+76028,16832
+76029,31710
+76030,8588,63305
+76031,2153
+76032,20805
+76033,775
+76034,62172
+76035,3279,8582
+76036,29350
+76037,63999
+76038,79443,74385,57155
+76039,22448
+76040,49721
+76041,69114,51113
+76042,18206,70830,21985
+76043,57275
+76044,34677
+76045,22430
+76046,2944
+76047,4659,71570
+76048,42632
+76049,60545
+76050,43599
+76051,27707,52383
+76052,15665
+76053,18231
+76054,50911
+76055,1200
+76056,4963
+76057,19047
+76058,77191,27010
+76059,15456
+76060,3577
+76061,74154
+76062,62032
+76063,23089
+76064,48416
+76065,65353
+76066,82116
+76067,58249
+76068,30638,13553
+76069,16531
+76070,59102
+76071,51324
+76072,73412
+76073,59506
+76074,76515
+76075,20803
+76076,24830
+76077,6094
+76078,14972
+76079,19925
+76080,26271
+76081,9068
+76082,22323
+76083,13186
+76084,58175
+76085,51662
+76086,50835,50867
+76087,20390
+76088,60577
+76089,4255
+76090,38032
+76091,79975
+76092,45547,31121
+76093,56541
+76094,15524
+76095,46853
+76096,75097,23382
+76097,49347
+76098,65427,23098
+76099,3839
+76100,74561
+76101,17815
+76102,10906
+76103,50319
+76104,67832,9925,42889
+76105,8333
+76106,6856
+76107,60530
+76108,27768
+76109,52712
+76110,68906
+76111,59499
+76112,20274
+76113,4471
+76114,3266
+76115,49140
+76116,65336
+76117,78961
+76118,78563
+76119,50717
+76120,49044
+76121,75116
+76122,14745
+76123,31760
+76124,7349
+76125,70055
+76126,51313
+76127,50912
+76128,80154,6566
+76129,79889
+76130,22912
+76131,49747
+76132,24946
+76133,2524
+76134,67476
+76135,53352
+76136,31649,38763
+76137,48529
+76138,66748
+76139,64820
+76140,46662
+76141,64897
+76142,37235
+76143,32279
+76144,32788,228,52660,68387
+76145,65843
+76146,12618,76298,6218
+76147,34708,81002
+76148,48550,57896
+76149,55684
+76150,9106
+76151,47610
+76152,35456
+76153,68150
+76154,994
+76155,18368,59046
+76156,36344
+76157,30317
+76158,70266
+76159,66349
+76160,41527
+76161,10844
+76162,1059,16316
+76163,72434
+76164,13932
+76165,38517
+76166,41187
+76167,47554,53656
+76168,19425
+76169,11004
+76170,19672
+76171,10347
+76172,62079
+76173,10036
+76174,80013,73313
+76175,24991,56942,26091
+76176,10086,30800
+76177,63716
+76178,48141
+76179,11240
+76180,32503
+76181,53614
+76182,60325
+76183,23994
+76184,30517
+76185,63967
+76186,64249,22837
+76187,72191
+76188,7726,37523
+76189,28687
+76190,78550
+76191,34350
+76192,53415
+76193,69017,42877
+76194,20585
+76195,34928
+76196,68921
+76197,37369
+76198,20525
+76199,33851
+76200,80114
+76201,44371,24017
+76202,34158
+76203,35682
+76204,39856,44496
+76205,18692
+76206,48093
+76207,48355
+76208,30430,20649
+76209,135,47116
+76210,6186
+76211,33061
+76212,4823,49994
+76213,63167
+76214,73772,31844
+76215,78997
+76216,15562,47730
+76217,62401
+76218,32413,53539
+76219,81561
+76220,51019
+76221,24312
+76222,35983
+76223,26012
+76224,81380
+76225,3637
+76226,37654
+76227,73360
+76228,25136
+76229,64900
+76230,11588
+76231,22788
+76232,29504
+76233,20897
+76234,12556,26920,41457
+76235,70136,49671
+76236,69481
+76237,80757
+76238,57794
+76239,52690
+76240,70162
+76241,52103
+76242,7827
+76243,33837
+76244,8821
+76245,8780
+76246,74033,58318
+76247,77549
+76248,52666
+76249,36079
+76250,46876
+76251,59072
+76252,23606
+76253,49137
+76254,24954
+76255,57462
+76256,4705
+76257,75886
+76258,61505
+76259,57555
+76260,27481
+76261,23495
+76262,78426
+76263,2970
+76264,64546
+76265,30736
+76266,43983,35485
+76267,13482
+76268,80185
+76269,67230
+76270,43669
+76271,79942
+76272,11288
+76273,3229
+76274,16959
+76275,33474
+76276,65842,62303
+76277,51827
+76278,8930
+76279,31032,22452
+76280,50413
+76281,56983,54426
+76282,1813,36238
+76283,18490
+76284,34805
+76285,20087
+76286,50200
+76287,72686
+76288,20397,37896
+76289,39985
+76290,26922
+76291,67316
+76292,22886
+76293,21430
+76294,72394
+76295,62307
+76296,25283
+76297,19701
+76298,74450
+76299,53096,11107
+76300,2801
+76301,57836,6255
+76302,25235
+76303,48530
+76304,27821
+76305,6522,28111
+76306,58418
+76307,47340
+76308,70686
+76309,29270
+76310,74912
+76311,14208
+76312,37040,60451
+76313,27312
+76314,58159
+76315,74033,57001
+76316,47184
+76317,17565,9777
+76318,37547
+76319,72350
+76320,79291
+76321,2478
+76322,27797
+76323,59183
+76324,27721
+76325,30800
+76326,6168
+76327,11921,23118
+76328,27950
+76329,20936
+76330,76154
+76331,15006
+76332,44778,48568
+76333,18934
+76334,74229
+76335,81084
+76336,33437
+76337,13631
+76338,9891,6590
+76339,5618
+76340,50841,48135
+76341,50405,13461
+76342,79924
+76343,65543
+76344,6781
+76345,19883
+76346,42491,20535
+76347,18527
+76348,8717
+76349,34084
+76350,74716
+76351,66425,55002
+76352,40370
+76353,31389,8842
+76354,59679
+76355,22028
+76356,31937,30058
+76357,61290
+76358,29265
+76359,23992
+76360,43855
+76361,40388
+76362,70754
+76363,79214
+76364,62823
+76365,42204
+76366,73860
+76367,73048,4305
+76368,67791,63370
+76369,43683
+76370,15336,27354
+76371,21812
+76372,54848,79356
+76373,25754
+76374,57061
+76375,46121
+76376,23196
+76377,28040
+76378,61169
+76379,44470,74207
+76380,54610
+76381,14687
+76382,66130
+76383,37339
+76384,24980
+76385,28270
+76386,27593
+76387,16150
+76388,40990
+76389,19120
+76390,59706
+76391,64306,2751
+76392,37551
+76393,18103,63145
+76394,17517,1148
+76395,40827
+76396,52158,35547
+76397,75951
+76398,21254
+76399,48384
+76400,12310
+76401,49074,3788
+76402,27477
+76403,67073
+76404,40890
+76405,27362
+76406,13473
+76407,53807
+76408,65270
+76409,67320
+76410,59486
+76411,42876
+76412,43452
+76413,35890
+76414,8830
+76415,45023
+76416,42891
+76417,56552
+76418,22855
+76419,9573
+76420,23580,17035
+76421,74920,31039
+76422,75494,18452
+76423,82008
+76424,14947,5990
+76425,4892
+76426,4537
+76427,25134
+76428,62615
+76429,70571
+76430,61671
+76431,65500
+76432,35478,43844
+76433,66171
+76434,18170
+76435,63988
+76436,52287
+76437,80590
+76438,57220
+76439,55854
+76440,49251
+76441,80709
+76442,3299,32614
+76443,36046,28480
+76444,5238
+76445,19361
+76446,42873
+76447,7634,62541
+76448,56938
+76449,7511
+76450,5151
+76451,43939
+76452,51781
+76453,20661
+76454,48215,28749
+76455,16323
+76456,11432
+76457,47554
+76458,18078,11944
+76459,64387
+76460,72936
+76461,30624,17865
+76462,36779
+76463,25015
+76464,43989
+76465,42975
+76466,59952
+76467,50717
+76468,41172
+76469,71166
+76470,5391
+76471,50110,1094
+76472,66957,59612
+76473,81252
+76474,26771
+76475,72315
+76476,81371
+76477,70825
+76478,52278,13657
+76479,929
+76480,9282
+76481,9270,71890
+76482,72663
+76483,37908,49900
+76484,69845
+76485,33684
+76486,81422
+76487,42311
+76488,4188
+76489,56920
+76490,5266
+76491,26220,9061
+76492,42050
+76493,20022
+76494,42615
+76495,60518
+76496,19099
+76497,41205
+76498,43796
+76499,31192
+76500,77675
+76501,61933
+76502,65988
+76503,52058
+76504,37694
+76505,40197
+76506,31638
+76507,27823
+76508,49334
+76509,13434
+76510,51914
+76511,2617
+76512,44377
+76513,29796
+76514,48426
+76515,67239
+76516,64767
+76517,8042
+76518,34995,20405
+76519,8070
+76520,38914,43208
+76521,12139
+76522,36749
+76523,1528
+76524,75014
+76525,72172,67913
+76526,47214
+76527,5539
+76528,72263
+76529,77955
+76530,2033
+76531,54879
+76532,22765
+76533,60440
+76534,72491
+76535,42229
+76536,19445
+76537,61502
+76538,45122,47256
+76539,73093
+76540,67295
+76541,32586,60262
+76542,31418
+76543,34579,78218
+76544,1004,1744
+76545,19940
+76546,48130
+76547,71972,49137
+76548,60653
+76549,68262
+76550,40831
+76551,50236
+76552,59393
+76553,41701
+76554,28249
+76555,35604
+76556,8481,72252
+76557,31244,8028,39750,10402
+76558,52275
+76559,52333,16098
+76560,210
+76561,74009
+76562,49984
+76563,1747
+76564,40384
+76565,39385,15266
+76566,25129,32757,19719
+76567,27479
+76568,72303
+76569,33902
+76570,44537
+76571,37936,17195
+76572,20542
+76573,7901
+76574,39749
+76575,56716,48177
+76576,35972,29882,6528
+76577,674
+76578,5960
+76579,70887
+76580,31575
+76581,65307
+76582,73581
+76583,18317
+76584,68425
+76585,10239,52262,42851
+76586,78022,62258
+76587,57329
+76588,52561
+76589,6053
+76590,73205
+76591,17014
+76592,38144
+76593,10570
+76594,12223
+76595,22575
+76596,3667
+76597,68598
+76598,70072,61658
+76599,1280
+76600,33651
+76601,25952
+76602,59397,34778
+76603,32343
+76604,14014
+76605,75340
+76606,42026
+76607,65122
+76608,14533
+76609,38125
+76610,28744
+76611,76656
+76612,6160,37488
+76613,12609,6118
+76614,10401,4294
+76615,17630
+76616,35892
+76617,81528,51447
+76618,14629
+76619,8256
+76620,63375
+76621,29997
+76622,22591,4805
+76623,36334
+76624,31948
+76625,10978,54871
+76626,32624
+76627,71927
+76628,2732,10714
+76629,7590
+76630,49784
+76631,43740
+76632,66048
+76633,38461
+76634,4405
+76635,30848,48314
+76636,25697
+76637,9825
+76638,59779
+76639,37014,75430,46524
+76640,21224
+76641,32918
+76642,77237
+76643,598
+76644,76221,23090,26436
+76645,76615,42840
+76646,71753,81479
+76647,50361
+76648,51450,16102
+76649,40879
+76650,31906
+76651,9852
+76652,759,21175
+76653,64037
+76654,69290
+76655,51468
+76656,11847
+76657,67140
+76658,62548
+76659,47277
+76660,33520
+76661,22552
+76662,6574
+76663,41843,63732,80353
+76664,72291
+76665,30519,38945,68321,59122
+76666,31140
+76667,57837,76171
+76668,44037
+76669,21845
+76670,76569,34930,80795
+76671,43885
+76672,32919,63100
+76673,57537,47704
+76674,66604
+76675,66795
+76676,39419,2957
+76677,46368
+76678,25254
+76679,19420
+76680,16753
+76681,55381
+76682,1954
+76683,3182
+76684,65393
+76685,72466
+76686,35033
+76687,59407
+76688,9026
+76689,25150
+76690,59816
+76691,62021
+76692,74849
+76693,12039
+76694,57086
+76695,49625
+76696,31870
+76697,54975,2123
+76698,36936,63812
+76699,20584
+76700,26075
+76701,19877
+76702,76348,23062
+76703,51049
+76704,62565
+76705,68878
+76706,65265
+76707,26693,45265
+76708,27956,64064
+76709,4118
+76710,3258
+76711,5077
+76712,41491
+76713,22644,74470
+76714,47363
+76715,53565
+76716,73173,76529,30279
+76717,28719
+76718,43724
+76719,15993
+76720,69117,44462,63584
+76721,65531,22065
+76722,43084
+76723,4222,72563
+76724,61638,24547
+76725,68232,54059
+76726,69889
+76727,75887
+76728,54813
+76729,4934
+76730,77652
+76731,54286,61103
+76732,11955
+76733,11007
+76734,39866,77511
+76735,21580
+76736,14496,56169
+76737,21319
+76738,20418
+76739,3087,73404
+76740,55464
+76741,5031
+76742,10716
+76743,75897
+76744,33631
+76745,57794
+76746,43187,38846
+76747,36443
+76748,36234
+76749,59498
+76750,3874
+76751,29305
+76752,27457
+76753,16587,5571
+76754,37081
+76755,1469
+76756,53130,31405
+76757,20109
+76758,56192,64568
+76759,78556
+76760,28897,22498
+76761,73653
+76762,55179
+76763,31298
+76764,4013,53750
+76765,47958
+76766,13983
+76767,66810
+76768,20297
+76769,32957
+76770,70406
+76771,66254
+76772,32915
+76773,22533
+76774,78169
+76775,55594
+76776,10108
+76777,67217
+76778,15649
+76779,3710
+76780,43177
+76781,64142
+76782,68427
+76783,67749
+76784,81249
+76785,3370
+76786,33712
+76787,9274,63656
+76788,11578,24210
+76789,34163
+76790,23105
+76791,50773
+76792,43026
+76793,78411
+76794,33158
+76795,57380
+76796,34820
+76797,76114
+76798,38998
+76799,64662
+76800,42137
+76801,547
+76802,14039
+76803,64266
+76804,17086
+76805,27853,51368
+76806,60051
+76807,62173
+76808,11919
+76809,29321,44549
+76810,67769
+76811,68742
+76812,25581
+76813,35851
+76814,39962
+76815,32915
+76816,32063
+76817,170
+76818,53660,36342
+76819,77586
+76820,37516
+76821,75950
+76822,80976
+76823,29667
+76824,68069
+76825,37073
+76826,1024
+76827,41801
+76828,79463
+76829,57741,65336
+76830,79710
+76831,82029
+76832,9987
+76833,73178
+76834,41938
+76835,79144
+76836,9200,74794
+76837,43845
+76838,66154
+76839,60518
+76840,33679
+76841,47558
+76842,13216
+76843,7980
+76844,73853,11925
+76845,67730
+76846,77805
+76847,70619
+76848,45997
+76849,7205
+76850,74720
+76851,37331
+76852,67081,70410
+76853,1363
+76854,2585
+76855,7809
+76856,70051
+76857,37027,16142
+76858,39003,3283
+76859,30527
+76860,4726
+76861,34479
+76862,75515
+76863,33346
+76864,33005
+76865,10997
+76866,69457,34745
+76867,54332
+76868,28713
+76869,5189
+76870,70269
+76871,42940
+76872,11411
+76873,53569
+76874,31723
+76875,78352
+76876,51897
+76877,4332
+76878,56706
+76879,49068
+76880,4917,20624
+76881,31506
+76882,20292
+76883,28961,30448
+76884,1103
+76885,48976
+76886,35112
+76887,60210,41499
+76888,59376
+76889,44940
+76890,59154
+76891,50518
+76892,11143
+76893,2114
+76894,38601
+76895,66141
+76896,43655,2996
+76897,31219,46349
+76898,21079
+76899,74019
+76900,70285
+76901,64857
+76902,58145
+76903,30611
+76904,43332
+76905,81374
+76906,2754
+76907,43237
+76908,32232
+76909,48627,52508,61313
+76910,70597
+76911,16179
+76912,54105
+76913,63139
+76914,80486
+76915,77598
+76916,34269
+76917,11479
+76918,60374
+76919,96
+76920,22914,53539
+76921,22519
+76922,42490
+76923,41943
+76924,18283
+76925,32453,16568
+76926,9969
+76927,42874,67985
+76928,65926
+76929,45405
+76930,9960
+76931,20299
+76932,12008
+76933,71238
+76934,35037
+76935,79441
+76936,59067
+76937,50403
+76938,74009
+76939,77099
+76940,78958
+76941,81418,55698
+76942,28630
+76943,69767
+76944,58005
+76945,64457
+76946,64736
+76947,71435
+76948,32120
+76949,63524,67612
+76950,59481
+76951,11990
+76952,1720
+76953,53992
+76954,2475
+76955,50031
+76956,14064
+76957,54271
+76958,16388
+76959,21894
+76960,11451
+76961,17185
+76962,76390,22461
+76963,8923
+76964,38614
+76965,61028
+76966,69402
+76967,13546,69098
+76968,81430
+76969,20975
+76970,49649
+76971,70250
+76972,54628
+76973,36232
+76974,72715
+76975,63466
+76976,51794
+76977,41705
+76978,15468
+76979,2776
+76980,68387,82110
+76981,39489
+76982,39396
+76983,40147,69490
+76984,28242
+76985,28798
+76986,24975,2530
+76987,31662,68262
+76988,4106
+76989,70858,32471
+76990,71092
+76991,49899
+76992,37042,27778
+76993,22766,34722
+76994,32850
+76995,42119
+76996,61912
+76997,59397
+76998,52014
+76999,520,74569
+77000,43723
+77001,76953
+77002,10269
+77003,81544
+77004,10092
+77005,30397
+77006,34791
+77007,34233
+77008,7838
+77009,19894
+77010,65617
+77011,43070,33121,24790
+77012,70744
+77013,38065,12454
+77014,69145
+77015,64516
+77016,9096
+77017,74496,65947
+77018,10111
+77019,56862
+77020,17060
+77021,72239
+77022,30401
+77023,64443
+77024,55314,80029
+77025,46584
+77026,26334
+77027,14382
+77028,77721
+77029,79135
+77030,7201
+77031,19539
+77032,48243
+77033,8851
+77034,27290
+77035,30942
+77036,73134
+77037,70169
+77038,74989
+77039,10274,75754
+77040,70443
+77041,68304
+77042,20245
+77043,24466
+77044,3433
+77045,40910
+77046,72097
+77047,48942
+77048,23263
+77049,24361
+77050,65889
+77051,60410,62771
+77052,61688
+77053,8813
+77054,81884
+77055,39862
+77056,16287
+77057,24224
+77058,38635
+77059,51186
+77060,60744,39243
+77061,13574
+77062,64641
+77063,57526
+77064,48915
+77065,4101
+77066,33716
+77067,62297,40076
+77068,22823,2724
+77069,55131
+77070,17097
+77071,2834
+77072,72263
+77073,49942,65525
+77074,26938
+77075,8935
+77076,45354
+77077,21141
+77078,69905
+77079,42483,34092
+77080,87
+77081,43975
+77082,66000,33382
+77083,77573
+77084,3891
+77085,15233
+77086,8929,12059
+77087,54244,15276
+77088,68532,38262
+77089,65618
+77090,52452,32804,16991
+77091,78043
+77092,26946,73070
+77093,43334
+77094,63360
+77095,55559,43199
+77096,71678
+77097,44949
+77098,42678
+77099,76465
+77100,36340
+77101,50403
+77102,64993
+77103,23654
+77104,67027,26268
+77105,44027
+77106,44839,9544
+77107,16264,72119
+77108,22502
+77109,23985
+77110,59404
+77111,25251
+77112,15583
+77113,113
+77114,4622
+77115,11732
+77116,57947
+77117,19193
+77118,68658
+77119,6118
+77120,61550,54469
+77121,39848
+77122,4311
+77123,47363
+77124,12439
+77125,78990
+77126,79563
+77127,41776,41893
+77128,58038
+77129,49931
+77130,77449
+77131,66326,27868
+77132,13497
+77133,72688
+77134,9133
+77135,15168
+77136,38676
+77137,37505
+77138,38770,63491
+77139,26019
+77140,57678,9600
+77141,74549,537
+77142,77636
+77143,7615
+77144,27200
+77145,79479,2881
+77146,51115,43516
+77147,3987
+77148,22099
+77149,524
+77150,42963
+77151,11293,55754
+77152,77661,13056
+77153,70393
+77154,16377
+77155,19966
+77156,73063
+77157,59580
+77158,20584
+77159,55375,60960,50531
+77160,35858
+77161,1196
+77162,40824,56256
+77163,43363
+77164,43712,65736
+77165,52862
+77166,46042
+77167,61046
+77168,8984
+77169,54137
+77170,4891
+77171,55696
+77172,71446
+77173,37191,38131,21907
+77174,42200
+77175,62273,20399,44378
+77176,81326
+77177,69449
+77178,6384,15238
+77179,37059
+77180,26860,65307
+77181,54604
+77182,81453
+77183,54774
+77184,19418
+77185,774
+77186,10443
+77187,5536
+77188,3519
+77189,59740
+77190,5923
+77191,31698
+77192,23787
+77193,35322
+77194,60453
+77195,21113,70094
+77196,17623
+77197,54727
+77198,55462
+77199,28803
+77200,80589
+77201,3275
+77202,32078
+77203,78237
+77204,48968
+77205,77091
+77206,30205,60675
+77207,78650
+77208,66653
+77209,62939
+77210,25575,39515
+77211,11711
+77212,72967,56814
+77213,51551
+77214,2771
+77215,15012
+77216,362
+77217,28769
+77218,78661
+77219,77573
+77220,20365,19201
+77221,81020
+77222,57874
+77223,34059
+77224,11479
+77225,32279
+77226,10148
+77227,59586
+77228,68440,15489,68787
+77229,3266
+77230,76018,195
+77231,707
+77232,67415
+77233,27722
+77234,76126
+77235,31230
+77236,55373,39749
+77237,13188
+77238,73780,79027
+77239,80213
+77240,19482,69320,76681
+77241,805
+77242,40186
+77243,52130,7918,45443
+77244,46655
+77245,44962
+77246,35466
+77247,45396
+77248,57882,69991
+77249,6388
+77250,12583
+77251,51473
+77252,8045
+77253,52640,38997
+77254,71518
+77255,71290
+77256,46462
+77257,36173
+77258,64630
+77259,14581
+77260,18607
+77261,58253
+77262,5878
+77263,16241,69989
+77264,26566
+77265,6784
+77266,4172
+77267,13122,46654
+77268,13703
+77269,47957
+77270,71253
+77271,16910
+77272,34794
+77273,12631
+77274,17418,61195
+77275,69571
+77276,78383
+77277,30701,58886
+77278,18559
+77279,81958,24303
+77280,14228
+77281,70123
+77282,26851
+77283,57783
+77284,71852,44586,75646
+77285,30422,24579
+77286,24457,70961
+77287,45199,40944
+77288,57250
+77289,39686,41748,70284
+77290,33918
+77291,3934
+77292,68269
+77293,13163,43785
+77294,50809
+77295,19054
+77296,70837
+77297,76460
+77298,76393
+77299,57342
+77300,54478
+77301,17890
+77302,7071
+77303,80626
+77304,65844
+77305,12914
+77306,57829
+77307,53990
+77308,49376
+77309,11345
+77310,38139
+77311,50606,27051
+77312,73550
+77313,32299
+77314,58838
+77315,30735
+77316,55139
+77317,37651
+77318,55972,64173
+77319,52911
+77320,21476
+77321,46550
+77322,18238,1923
+77323,19564
+77324,17616
+77325,77955
+77326,45613
+77327,40857,41714
+77328,38878
+77329,27879
+77330,73147
+77331,59622
+77332,57159
+77333,63941
+77334,58510
+77335,50087
+77336,69544,46918
+77337,55304
+77338,817
+77339,55231
+77340,53560
+77341,59041
+77342,28159
+77343,79527
+77344,24650
+77345,14467,9007
+77346,5744
+77347,63528
+77348,43102
+77349,45971
+77350,44457
+77351,27385
+77352,31970,52513
+77353,63462
+77354,10349
+77355,26323
+77356,59942
+77357,81384
+77358,24878
+77359,807,12033
+77360,54711,21790
+77361,23695
+77362,72385
+77363,14066
+77364,23584
+77365,43519,54144
+77366,56161
+77367,1988,20350
+77368,50484,43223
+77369,69904
+77370,16019
+77371,36810
+77372,53854
+77373,58896
+77374,9632
+77375,34395
+77376,45905
+77377,67909,5165
+77378,72040
+77379,56180,40711
+77380,71080
+77381,41062
+77382,5926
+77383,49742
+77384,64965
+77385,37650
+77386,48596
+77387,41059
+77388,49942,5361
+77389,68764
+77390,3406
+77391,26162
+77392,53722
+77393,16299
+77394,22072
+77395,29020,60313
+77396,14763
+77397,64191
+77398,55343
+77399,79797
+77400,43842
+77401,11629
+77402,55162
+77403,6031
+77404,3767
+77405,28457
+77406,68564
+77407,73072
+77408,34725,55835
+77409,50460
+77410,6696
+77411,53238,77409
+77412,71981
+77413,12144,68780,13763
+77414,18178
+77415,1796
+77416,42923
+77417,55266
+77418,68737
+77419,20349
+77420,74991
+77421,36203
+77422,52513
+77423,36492
+77424,31239
+77425,75112,57931
+77426,14034
+77427,39985
+77428,19444
+77429,34761
+77430,36017
+77431,32863
+77432,32566
+77433,75029,69057
+77434,55736
+77435,60774,24702
+77436,4171
+77437,29911
+77438,63059
+77439,73028
+77440,24083
+77441,36615
+77442,73061
+77443,77041
+77444,21350
+77445,61201
+77446,51316
+77447,77997
+77448,42506
+77449,19924
+77450,68419
+77451,47084
+77452,10823
+77453,38225
+77454,43311
+77455,5680
+77456,772
+77457,32842
+77458,5896
+77459,68497
+77460,1583
+77461,28539
+77462,720,51551
+77463,7952
+77464,64205
+77465,23767
+77466,68772,23094
+77467,77989
+77468,81215,65931
+77469,24048
+77470,36865,46794
+77471,5467
+77472,40946
+77473,44645
+77474,50533
+77475,76067
+77476,20287
+77477,7411
+77478,42889
+77479,39798,82020
+77480,68942
+77481,13449
+77482,15192
+77483,61750,15058
+77484,3740
+77485,38146
+77486,78346
+77487,35584
+77488,36056
+77489,66720,9789
+77490,38112
+77491,3795
+77492,7365
+77493,33765
+77494,9657
+77495,73347
+77496,30029
+77497,46670
+77498,33695
+77499,42905
+77500,8194
+77501,6625
+77502,43532
+77503,47519,71142,36774
+77504,40801
+77505,73310
+77506,24610
+77507,22991
+77508,61818,66448
+77509,32510
+77510,67239
+77511,42735,29856,2603
+77512,24690
+77513,73862
+77514,24349
+77515,16556
+77516,57527
+77517,7565
+77518,39882
+77519,12433
+77520,61332
+77521,29945
+77522,52446
+77523,72801
+77524,65290
+77525,55865
+77526,80256
+77527,21383,23281
+77528,21888
+77529,35693
+77530,46910
+77531,34060
+77532,70682
+77533,77601
+77534,61476
+77535,63641
+77536,34266
+77537,4630
+77538,30232
+77539,25771
+77540,25303
+77541,56159
+77542,687
+77543,58249
+77544,45511
+77545,16766
+77546,77452
+77547,63787
+77548,33394
+77549,148
+77550,61840,5321,52702
+77551,51829
+77552,51363
+77553,10934
+77554,21005
+77555,51239
+77556,17257
+77557,49525
+77558,25136
+77559,74434,67008
+77560,16626
+77561,61989
+77562,37377
+77563,41410
+77564,59835
+77565,52791
+77566,76124
+77567,14384,75570
+77568,29909
+77569,50231
+77570,48866
+77571,39848
+77572,41187
+77573,6492
+77574,6652,5835
+77575,82071
+77576,71770,72150
+77577,78806
+77578,37970
+77579,46697
+77580,23231
+77581,30302
+77582,70800,79099
+77583,71257
+77584,76106
+77585,81731
+77586,21024
+77587,6773,56163
+77588,25870
+77589,50059
+77590,21728
+77591,54813
+77592,2187
+77593,12081
+77594,51975
+77595,28641
+77596,4313
+77597,5901
+77598,3623
+77599,8870
+77600,66692,12751,48564
+77601,4337
+77602,40565,49621
+77603,59704
+77604,63478
+77605,76853
+77606,50434
+77607,61051
+77608,25583
+77609,40428
+77610,39708
+77611,73328,61724
+77612,75367
+77613,60703
+77614,42861
+77615,4075
+77616,20030
+77617,67941,50338
+77618,30711,44093
+77619,66618
+77620,61322
+77621,57680,12218
+77622,15375
+77623,6703
+77624,82095
+77625,3716
+77626,80549
+77627,58356
+77628,14743
+77629,32515
+77630,69459,20857,14026
+77631,61813
+77632,14958
+77633,17176
+77634,45366
+77635,10591,66111
+77636,10795
+77637,21344
+77638,5933
+77639,40116
+77640,8650,44808
+77641,20051
+77642,3461,66094
+77643,62884
+77644,66621,17478
+77645,81031
+77646,44290
+77647,13314
+77648,64350
+77649,27047
+77650,36870
+77651,6007
+77652,54159
+77653,48084,33208
+77654,5144
+77655,46880
+77656,13666
+77657,73639
+77658,53016
+77659,27176
+77660,53468
+77661,54936
+77662,10624,12630
+77663,34428
+77664,13930
+77665,11903
+77666,3687
+77667,46409,18958
+77668,44650
+77669,58172
+77670,12344
+77671,26462
+77672,32691
+77673,11364
+77674,80588
+77675,61440
+77676,3204
+77677,68547
+77678,29154
+77679,62184
+77680,22213
+77681,48123
+77682,74650
+77683,27290
+77684,79797,12634
+77685,26341
+77686,72345
+77687,16142
+77688,60461,38683
+77689,2132
+77690,51907
+77691,61999,29739
+77692,57449
+77693,34345
+77694,45373
+77695,17598
+77696,63488
+77697,47511,28627,50179
+77698,64059,6419,40163
+77699,776
+77700,13825
+77701,16635,66005
+77702,47139
+77703,6166,57962
+77704,23627
+77705,33811
+77706,41205
+77707,21828
+77708,44125
+77709,63932
+77710,61315
+77711,60780
+77712,77988
+77713,72194
+77714,12208
+77715,77378
+77716,45689
+77717,31531
+77718,74368
+77719,64197
+77720,17505
+77721,16316
+77722,9455
+77723,41586
+77724,69465
+77725,5412
+77726,41265
+77727,40015
+77728,62127
+77729,59796,20462,27145
+77730,45797,74697
+77731,30160,76252
+77732,4925
+77733,75115
+77734,14810
+77735,12469
+77736,77577
+77737,7119
+77738,7831
+77739,30124
+77740,37468
+77741,169
+77742,77610
+77743,75767,12085
+77744,59263
+77745,10326
+77746,49699
+77747,41208
+77748,62613
+77749,44629
+77750,10203,63000
+77751,65849,41295
+77752,40803,19324
+77753,54910,21097
+77754,58457
+77755,3524
+77756,50128
+77757,23112
+77758,58633
+77759,23928,74900
+77760,18899
+77761,64343
+77762,51705
+77763,81732
+77764,12685
+77765,1783
+77766,10601
+77767,69001,54922
+77768,40659
+77769,29296,76954
+77770,531
+77771,3017,51800,36984
+77772,2626
+77773,34230,74144
+77774,66198
+77775,15179
+77776,22694
+77777,54849
+77778,52515
+77779,76958,78826
+77780,69910
+77781,9083,16991
+77782,10371,76819,43870
+77783,29127
+77784,70032
+77785,21107
+77786,47437
+77787,39502
+77788,45190
+77789,38915,47605,39810
+77790,9404
+77791,47780
+77792,61266
+77793,2319
+77794,41660
+77795,14845
+77796,52167
+77797,34921
+77798,28375,75730
+77799,67508
+77800,5434
+77801,63934
+77802,20639
+77803,39668
+77804,34070
+77805,46150
+77806,58169,31944
+77807,80426
+77808,38163
+77809,70928
+77810,51319
+77811,261
+77812,16673
+77813,50472
+77814,35312
+77815,65174
+77816,74443,33907
+77817,67220
+77818,76843
+77819,19529
+77820,56208
+77821,49328
+77822,42221,67169
+77823,42698
+77824,61809
+77825,54364,9810
+77826,17001
+77827,32728
+77828,9600
+77829,69378,15116
+77830,27763
+77831,10570
+77832,73884
+77833,637
+77834,21199
+77835,10638
+77836,68025
+77837,50470
+77838,70815
+77839,76530
+77840,33198
+77841,38970
+77842,32586
+77843,40158
+77844,1422
+77845,69512,71670,40
+77846,64472
+77847,30266,19527
+77848,74462,74915
+77849,23149,66411
+77850,52657
+77851,16304
+77852,50677
+77853,707
+77854,8361,29152
+77855,55755
+77856,22550
+77857,1384,4754
+77858,80843
+77859,73429
+77860,48251,47238
+77861,44130
+77862,59692
+77863,72262
+77864,78267,71321
+77865,52015
+77866,26445
+77867,19953
+77868,76348
+77869,3516
+77870,18455
+77871,31146
+77872,14734
+77873,57445
+77874,54057
+77875,46332
+77876,75452
+77877,22361
+77878,71692
+77879,36319
+77880,2623
+77881,31493
+77882,36430
+77883,37244
+77884,64756,59044
+77885,72348
+77886,74431,57458
+77887,39909
+77888,62451
+77889,44225
+77890,74291,24429
+77891,78475
+77892,19861
+77893,54198
+77894,66424
+77895,65993
+77896,63308
+77897,21970,47753
+77898,34642
+77899,3527
+77900,57420
+77901,77475
+77902,77583
+77903,34767
+77904,68473,39618
+77905,27392,78859
+77906,13139
+77907,75994
+77908,48231
+77909,29377
+77910,45281
+77911,7885
+77912,18877
+77913,24149
+77914,58006
+77915,45392
+77916,69914,81565
+77917,48266,41795
+77918,13782
+77919,7412
+77920,33703
+77921,54711,65945
+77922,9481
+77923,41218
+77924,54963
+77925,77079,20128,74195
+77926,69100
+77927,44730
+77928,41271
+77929,61803
+77930,1596
+77931,21645,75283
+77932,45163,69823,3593
+77933,54108,1764
+77934,41801
+77935,21269,32970
+77936,30245
+77937,4743
+77938,54519
+77939,10544
+77940,38030,19876
+77941,19924
+77942,22642
+77943,7267
+77944,67112,68258
+77945,31967,24383
+77946,15136
+77947,49334,45770
+77948,67873
+77949,27565,45994
+77950,3186
+77951,37024
+77952,7884
+77953,39112
+77954,57125
+77955,2411
+77956,63122
+77957,25826
+77958,69435
+77959,44372
+77960,22194
+77961,12549
+77962,66346
+77963,34816
+77964,55848,74189
+77965,29767
+77966,44124
+77967,28315
+77968,14409
+77969,76225
+77970,63456
+77971,18249
+77972,31358
+77973,25812
+77974,54653
+77975,64772
+77976,78898
+77977,48082
+77978,30494
+77979,12826
+77980,66366
+77981,52337
+77982,53448
+77983,78296
+77984,19219
+77985,28648
+77986,70937
+77987,48534
+77988,81280
+77989,78399
+77990,13347
+77991,47079
+77992,30725
+77993,61850
+77994,57113
+77995,1827
+77996,35471
+77997,23328
+77998,8526,75927
+77999,71299
+78000,11519
+78001,36310,55267
+78002,57803
+78003,25847
+78004,40347
+78005,37696
+78006,52454
+78007,36908,25135
+78008,19488
+78009,63451
+78010,24316,55644
+78011,56340
+78012,41479
+78013,55990,1855,43874
+78014,53831
+78015,39399,12843
+78016,52562,60391
+78017,29909
+78018,38907
+78019,12835
+78020,77767,32932
+78021,30142,21048
+78022,5402,76054
+78023,55061
+78024,52107
+78025,49630
+78026,46646
+78027,28292
+78028,44934
+78029,44863,20841
+78030,17006
+78031,56330
+78032,58557
+78033,27256
+78034,17000
+78035,15566
+78036,81034
+78037,40327
+78038,18343
+78039,31531
+78040,1280
+78041,50934
+78042,52451
+78043,45738
+78044,42196
+78045,59779
+78046,52241
+78047,27444,20027,13010
+78048,35798
+78049,38117,77469
+78050,30375
+78051,6352
+78052,8903
+78053,49506
+78054,48989,55955
+78055,68007,27351
+78056,45139
+78057,32344
+78058,38761
+78059,70303
+78060,56742
+78061,23729,38444
+78062,34427
+78063,80910
+78064,14539,14598
+78065,15726
+78066,41311,61270
+78067,68194
+78068,12526
+78069,32160
+78070,66664
+78071,2398
+78072,46106
+78073,55478
+78074,66258
+78075,56223
+78076,34691
+78077,50399
+78078,37509
+78079,39613,68619
+78080,64268
+78081,42054
+78082,12251
+78083,12868
+78084,72106
+78085,54104
+78086,32035,6483
+78087,27546,26783
+78088,34023
+78089,36587,59538
+78090,75623
+78091,2128
+78092,35188,41914
+78093,41342
+78094,81520,60072
+78095,49161,38211
+78096,13168
+78097,75095
+78098,28752
+78099,36956
+78100,26434
+78101,70320
+78102,45880
+78103,43195
+78104,27714
+78105,34256
+78106,38674,45449
+78107,29339
+78108,24269
+78109,18657
+78110,35022
+78111,36879,38235
+78112,35217
+78113,39242
+78114,19378
+78115,14476
+78116,11742
+78117,70425
+78118,51628
+78119,24770
+78120,56166
+78121,11545
+78122,28431
+78123,77978
+78124,17739,40243
+78125,17475
+78126,24503
+78127,43975
+78128,60118
+78129,62018
+78130,20239
+78131,53785,69539
+78132,78316,68879
+78133,24762
+78134,12781
+78135,66611
+78136,15764
+78137,40927
+78138,74271
+78139,6186
+78140,33362,52325
+78141,43157,60604
+78142,80395
+78143,66600
+78144,32516
+78145,10177
+78146,13130
+78147,46833,36596
+78148,76393
+78149,81837,8802
+78150,22211
+78151,34030,19685
+78152,14693
+78153,80028,59439
+78154,63293
+78155,5467
+78156,55908
+78157,79728
+78158,58227,23473
+78159,54097
+78160,10621
+78161,46371,9760,72045
+78162,50414
+78163,47444,80833
+78164,47829
+78165,59727
+78166,76451
+78167,5396
+78168,31574,33765
+78169,27920
+78170,52466
+78171,61136,77559
+78172,20898
+78173,53992,57663
+78174,20232
+78175,4302,48798
+78176,61817
+78177,53747
+78178,4865
+78179,36264
+78180,393
+78181,40388
+78182,70636,14114
+78183,884
+78184,48381
+78185,49912
+78186,75113
+78187,77333
+78188,51378
+78189,14704
+78190,33112
+78191,20134,77111
+78192,12209
+78193,46361
+78194,65787
+78195,22412,21668
+78196,16660
+78197,35165
+78198,1196
+78199,63741
+78200,61573
+78201,49400
+78202,47797
+78203,9113
+78204,44502,5551
+78205,67633,4004
+78206,43870
+78207,32740,16352
+78208,7155
+78209,16627
+78210,63337
+78211,35172
+78212,11468
+78213,492
+78214,67316
+78215,78485
+78216,58240,9260
+78217,14287,69925
+78218,6625
+78219,45308,55027
+78220,27246,65790
+78221,37972
+78222,36756
+78223,73795
+78224,71528
+78225,79810
+78226,41473
+78227,52761
+78228,51706
+78229,70213,22746
+78230,80557
+78231,79071,57486
+78232,42447
+78233,14580
+78234,52298,58435,78876
+78235,66417
+78236,9318
+78237,81661
+78238,81656
+78239,4471
+78240,61835
+78241,17586,14954
+78242,5005
+78243,49540
+78244,41318
+78245,8433
+78246,30954
+78247,23980
+78248,26588
+78249,38854
+78250,73627
+78251,12840
+78252,58080
+78253,39847,35797
+78254,170
+78255,56486,74400
+78256,50309
+78257,3041,41424
+78258,74500
+78259,76173,29267
+78260,53145
+78261,72544
+78262,82162
+78263,3303
+78264,68752
+78265,61496
+78266,14824
+78267,39374
+78268,35427,70587
+78269,78251
+78270,26168
+78271,80757
+78272,28539
+78273,13278
+78274,11120,31386
+78275,71304
+78276,59347,38214
+78277,16098
+78278,54112
+78279,44770
+78280,80043
+78281,4372
+78282,71055
+78283,46705
+78284,72115
+78285,963,68641
+78286,17404
+78287,59282,47686
+78288,81690
+78289,79294
+78290,55482
+78291,9119
+78292,10506
+78293,52757,69485,47745
+78294,57302
+78295,50177
+78296,77204
+78297,64158
+78298,71914
+78299,76196
+78300,19850
+78301,45511
+78302,42705
+78303,26757
+78304,70556,20159
+78305,66185
+78306,13598
+78307,67941
+78308,31570
+78309,30208
+78310,50746
+78311,64064
+78312,68959
+78313,76254
+78314,60011
+78315,71427
+78316,38136
+78317,45340
+78318,26846
+78319,15715
+78320,59812
+78321,71278
+78322,21055
+78323,62390
+78324,35101
+78325,73619
+78326,27637
+78327,57705,34496
+78328,72271
+78329,79339
+78330,62024
+78331,62623,36150,51876
+78332,66664
+78333,28383
+78334,67791
+78335,30469
+78336,520
+78337,54663
+78338,21347
+78339,47426,25831
+78340,8971,2532,55738
+78341,59716
+78342,1405
+78343,40757,26323
+78344,18840
+78345,54214
+78346,21024
+78347,10584,9032
+78348,33218
+78349,12310
+78350,12639,44695
+78351,57477
+78352,14446,26606
+78353,62961,54130
+78354,21205
+78355,72118
+78356,81089,52867
+78357,20638
+78358,47896
+78359,50367
+78360,62733
+78361,51728
+78362,33949
+78363,56628
+78364,52103
+78365,842
+78366,71710
+78367,30103,78378
+78368,7265
+78369,34883,69653
+78370,69035
+78371,10718
+78372,54761
+78373,48977
+78374,40799,58716
+78375,21290
+78376,75808
+78377,75394
+78378,72500
+78379,68859
+78380,9774,37751
+78381,40858
+78382,35656
+78383,68859
+78384,44205
+78385,17186
+78386,33914
+78387,61894
+78388,28777
+78389,47584
+78390,14715
+78391,43011
+78392,68837
+78393,57969
+78394,10745
+78395,82097
+78396,39151
+78397,41651,66362
+78398,40813,9130
+78399,73394
+78400,35549
+78401,23000
+78402,2104
+78403,55600
+78404,24240
+78405,54477
+78406,30489
+78407,33918
+78408,53614,35732
+78409,6090
+78410,31464
+78411,60368
+78412,66813
+78413,32428
+78414,44307
+78415,7201
+78416,69205
+78417,8539,12248
+78418,52331
+78419,27836
+78420,35193
+78421,16693,75043
+78422,68584
+78423,79069
+78424,65255,44082
+78425,23573
+78426,49727
+78427,81732
+78428,77476
+78429,17676
+78430,73998
+78431,15590,45592
+78432,53218
+78433,68356
+78434,8
+78435,20899
+78436,21371
+78437,54871
+78438,7727
+78439,6653
+78440,10430
+78441,42249
+78442,1779
+78443,16994
+78444,25232
+78445,69981
+78446,43144
+78447,30443
+78448,38514
+78449,55761
+78450,73767,52235
+78451,80339
+78452,15736,28103
+78453,73248
+78454,9821,20942
+78455,9235
+78456,20706
+78457,2131
+78458,77945
+78459,72406
+78460,70723
+78461,17204
+78462,68501
+78463,67343
+78464,66848
+78465,75018
+78466,58844
+78467,32644
+78468,6731
+78469,69567,50783
+78470,33972
+78471,14942
+78472,6007
+78473,44549
+78474,42253,62867
+78475,34590
+78476,57365
+78477,73513
+78478,41720
+78479,81055
+78480,32872
+78481,54104
+78482,8738
+78483,70794
+78484,42182,28826
+78485,27518
+78486,54415
+78487,43923,34932
+78488,9378
+78489,71322
+78490,56758,67726,80138
+78491,7561
+78492,72927
+78493,7293
+78494,1280
+78495,42298
+78496,10403
+78497,823
+78498,33123
+78499,62928
+78500,36628
+78501,60474
+78502,48103
+78503,79550,29713
+78504,17050
+78505,67615
+78506,4870
+78507,49459
+78508,33571
+78509,10717
+78510,72516
+78511,31905
+78512,33324
+78513,48713
+78514,56273,58432
+78515,44453,80521
+78516,69124
+78517,12465
+78518,72577
+78519,30572
+78520,29186
+78521,23586
+78522,18899
+78523,72910
+78524,2246
+78525,82093
+78526,18354,74457
+78527,3457
+78528,644
+78529,6858
+78530,67471
+78531,67538
+78532,70387
+78533,57012
+78534,60000,12574
+78535,19602
+78536,56226
+78537,21462,24044
+78538,65444
+78539,45237,68042
+78540,32232
+78541,48261
+78542,66031
+78543,23433
+78544,2851
+78545,467
+78546,30705
+78547,14863
+78548,16556
+78549,6370
+78550,61046
+78551,78354
+78552,44291,68750
+78553,14814
+78554,65689
+78555,23702
+78556,56028
+78557,50471,19932,45164
+78558,53012,6814
+78559,12990
+78560,29110
+78561,67942
+78562,79374
+78563,79677
+78564,18298
+78565,80023
+78566,78427
+78567,42246
+78568,308
+78569,21788
+78570,66945
+78571,52194,66816
+78572,29960
+78573,12450,61394
+78574,16626
+78575,69169
+78576,23332
+78577,51768
+78578,66769,24083
+78579,81485
+78580,56082,51227,43811
+78581,57979
+78582,28327
+78583,58586
+78584,78984
+78585,36360
+78586,67769
+78587,77605
+78588,46841,43553
+78589,15640
+78590,81872
+78591,16915
+78592,61761,61015
+78593,36773
+78594,10295,23231
+78595,72324
+78596,18705
+78597,3265
+78598,25280
+78599,69925
+78600,4233
+78601,81206
+78602,79311
+78603,15181,49922
+78604,72399
+78605,15352
+78606,2076,73388
+78607,49103
+78608,58146,54251,53053
+78609,68571
+78610,57870
+78611,41257,41735
+78612,61290
+78613,49068
+78614,42921
+78615,36035
+78616,32945,41621
+78617,8905
+78618,6348,48926,25237
+78619,65886,55019
+78620,1116,34247
+78621,22396
+78622,50189
+78623,76451
+78624,18003
+78625,54491
+78626,74740
+78627,21584
+78628,57495
+78629,32324
+78630,7655
+78631,55788
+78632,29613
+78633,69578
+78634,15126
+78635,59197
+78636,38725,12931,16810
+78637,60898
+78638,31926
+78639,54765
+78640,3278
+78641,13358,44009
+78642,7672
+78643,14763
+78644,76504
+78645,951
+78646,56079
+78647,48731,81115,51682
+78648,63589
+78649,79060
+78650,61493
+78651,70455
+78652,48006
+78653,11809
+78654,25661
+78655,21244
+78656,42926
+78657,36903
+78658,54384
+78659,18189
+78660,41264
+78661,8180
+78662,32095
+78663,75955
+78664,43929,13094,29108
+78665,26323
+78666,23921,3614
+78667,42314
+78668,20675
+78669,15270
+78670,54029
+78671,57873,32
+78672,35827
+78673,64755
+78674,47777
+78675,60575
+78676,68407
+78677,28926
+78678,9202
+78679,39326
+78680,49911,30199
+78681,47000
+78682,47883
+78683,8469,57494
+78684,57780
+78685,7847
+78686,48360
+78687,18149
+78688,2221
+78689,77149
+78690,13583
+78691,44096
+78692,69246
+78693,8901,50887
+78694,80739
+78695,39072
+78696,7495
+78697,69361
+78698,37016
+78699,3501
+78700,10876
+78701,49816,1516
+78702,28389
+78703,76534
+78704,20002
+78705,37948
+78706,12530
+78707,3116,62071
+78708,4415
+78709,25826
+78710,46878,40749
+78711,73676
+78712,72659,30255
+78713,16389
+78714,61963
+78715,51314
+78716,69098
+78717,80865
+78718,40407
+78719,22903,57715,58256
+78720,32086
+78721,44850
+78722,17015
+78723,80138
+78724,81516
+78725,9704
+78726,51556
+78727,274
+78728,79798,75921
+78729,71952
+78730,55272
+78731,16981
+78732,8627
+78733,48613
+78734,16247
+78735,13907
+78736,41035,50051
+78737,2753
+78738,24123
+78739,50190
+78740,69462,65896
+78741,63341
+78742,68797,42415,63891
+78743,30930
+78744,431
+78745,21155
+78746,16596
+78747,3077
+78748,81021
+78749,72612
+78750,54750
+78751,69825
+78752,2600
+78753,71536,77680
+78754,58944
+78755,59171
+78756,1334
+78757,56753,56491
+78758,34847
+78759,25460
+78760,50429
+78761,1887
+78762,44768
+78763,33875,78520
+78764,1454
+78765,4507
+78766,26093
+78767,539
+78768,803
+78769,33794
+78770,59261
+78771,39760
+78772,58415
+78773,8333
+78774,53182
+78775,80914
+78776,57474
+78777,9887,32779
+78778,21507,4369
+78779,13180,71295
+78780,26609
+78781,38068
+78782,42269
+78783,36840
+78784,69234,11725
+78785,22864
+78786,968
+78787,9318
+78788,71002
+78789,51083
+78790,78452,18242
+78791,36678
+78792,73318
+78793,58977,17857
+78794,60963
+78795,29658,18549
+78796,42395,18598
+78797,4382
+78798,45243
+78799,1440
+78800,78479
+78801,30884
+78802,32120
+78803,36905
+78804,49825,52333
+78805,22673
+78806,44584
+78807,4165,31477
+78808,39294
+78809,50014
+78810,7587
+78811,33808
+78812,33725
+78813,65436
+78814,76462
+78815,52238
+78816,60901
+78817,47003
+78818,16634,4543
+78819,41103,63014
+78820,681
+78821,70815,46114
+78822,23688
+78823,65761
+78824,2065,4060
+78825,21733,59523
+78826,77703
+78827,23038
+78828,43350
+78829,27696
+78830,23190
+78831,67200
+78832,73716
+78833,53966
+78834,81602,64079
+78835,30121
+78836,51358
+78837,79351
+78838,17658
+78839,6027
+78840,42506
+78841,20409
+78842,31699
+78843,39540
+78844,20628
+78845,39873
+78846,28260,4135,58180
+78847,77476
+78848,62422
+78849,5312
+78850,7033
+78851,7392
+78852,74221,22999
+78853,20937
+78854,47198
+78855,17855
+78856,13023
+78857,50283
+78858,77150
+78859,22364
+78860,54491,73185
+78861,16104,9050,76407
+78862,5475,46731,25942
+78863,42893
+78864,16339,78114
+78865,22566
+78866,79264
+78867,1859
+78868,34478
+78869,73147
+78870,21199
+78871,78888
+78872,50731
+78873,37792
+78874,4172
+78875,10925,17521
+78876,39840
+78877,65020
+78878,39836
+78879,34575
+78880,81432
+78881,54433
+78882,79424
+78883,18812
+78884,67601
+78885,41586
+78886,81566
+78887,3815
+78888,73060
+78889,17884
+78890,1200
+78891,66063
+78892,7953
+78893,43332
+78894,64045
+78895,12242,55321
+78896,80591
+78897,58214
+78898,48105
+78899,51635,19436
+78900,39264
+78901,14824
+78902,12025
+78903,37118
+78904,62543
+78905,47377,57822
+78906,26928
+78907,76278
+78908,39671
+78909,36716
+78910,48676
+78911,58003
+78912,77832
+78913,33361
+78914,4927
+78915,81897
+78916,53830,28949
+78917,34018
+78918,9961
+78919,26885
+78920,51778,33218
+78921,15401,45736
+78922,32673
+78923,55865
+78924,18047
+78925,44686
+78926,57421
+78927,11315
+78928,50002
+78929,33896
+78930,2754
+78931,72249
+78932,46732,18428
+78933,35777,66588
+78934,24959
+78935,14181
+78936,79194
+78937,36629
+78938,79487
+78939,55837
+78940,19934
+78941,7333
+78942,16725,9782
+78943,6809
+78944,41841
+78945,23547,75174,52757
+78946,68502
+78947,75768
+78948,17867
+78949,43078
+78950,31735
+78951,79911
+78952,27877
+78953,38937
+78954,24630
+78955,2214
+78956,210
+78957,69145
+78958,33123
+78959,1526,54283,51149
+78960,39171
+78961,14435,38818
+78962,2134
+78963,41607
+78964,34591,77832
+78965,25618
+78966,62186
+78967,33462
+78968,57999
+78969,42076
+78970,74782
+78971,903
+78972,15638
+78973,50767,73084
+78974,50034
+78975,45707
+78976,80411,78544
+78977,12630,77353
+78978,50527
+78979,14829
+78980,47401,29820
+78981,18346
+78982,63294
+78983,74601
+78984,77119
+78985,34001
+78986,11297
+78987,72458
+78988,57402
+78989,64083
+78990,73205
+78991,55600,59902
+78992,24386
+78993,80799
+78994,80246
+78995,76771
+78996,62172
+78997,70784
+78998,7692
+78999,9585
+79000,46452,40023
+79001,71480
+79002,4078
+79003,46903,34389
+79004,43195
+79005,10477,57184
+79006,13416
+79007,29902
+79008,4110
+79009,5132,51322,28283
+79010,49568,23476
+79011,65860
+79012,13430
+79013,18787
+79014,48251
+79015,57821
+79016,13668,62981
+79017,61169
+79018,18834
+79019,48711
+79020,63612,63812
+79021,65269,78501,60170
+79022,59835
+79023,76971
+79024,67816,45633
+79025,81588,6959
+79026,76130
+79027,69142
+79028,17975
+79029,81474
+79030,16386
+79031,23397
+79032,19548
+79033,1574
+79034,55601
+79035,38488
+79036,50216
+79037,27583
+79038,13555
+79039,68686
+79040,65298
+79041,33479
+79042,57794
+79043,50356
+79044,3913,70812
+79045,29798
+79046,20454
+79047,11819
+79048,26119
+79049,27590
+79050,68009,914
+79051,1596
+79052,29909
+79053,51995
+79054,25652
+79055,62008,16966,2182
+79056,60920
+79057,60579
+79058,29124
+79059,47070,40783
+79060,53145
+79061,11279
+79062,26225
+79063,64441,27905,51311
+79064,26490
+79065,57692
+79066,8765
+79067,46164
+79068,5447
+79069,52820,33561
+79070,18343
+79071,48457
+79072,67113
+79073,36310
+79074,20657
+79075,49096
+79076,47266
+79077,6114
+79078,31322
+79079,1737
+79080,62728
+79081,30845
+79082,29057
+79083,70376
+79084,67095
+79085,4944,47032
+79086,36259
+79087,15569
+79088,15115
+79089,61264
+79090,6684
+79091,60606
+79092,11518
+79093,75862,31775
+79094,20106
+79095,29550
+79096,78577
+79097,77472,63749
+79098,82054,72544
+79099,9982
+79100,12616
+79101,82080
+79102,72720
+79103,49826,71184
+79104,13914
+79105,11277
+79106,37064
+79107,24392
+79108,33934
+79109,33854
+79110,21886
+79111,44078
+79112,33919
+79113,36930
+79114,16242,13173
+79115,59605
+79116,71666
+79117,15771
+79118,67118
+79119,66011
+79120,22337
+79121,40369
+79122,14476
+79123,13138
+79124,74306
+79125,60187
+79126,74678
+79127,10314
+79128,14895
+79129,8486
+79130,52754
+79131,5418,62226
+79132,20835
+79133,13228
+79134,71145
+79135,67140
+79136,29677
+79137,19323
+79138,24193
+79139,36195
+79140,55152
+79141,14854
+79142,78492
+79143,2383
+79144,47763
+79145,46792
+79146,37452
+79147,74113
+79148,20834
+79149,23260,33089,62905
+79150,834
+79151,9256
+79152,29987,5004,42054
+79153,71951
+79154,6157
+79155,56549
+79156,8000
+79157,2315,43565
+79158,24526
+79159,53615
+79160,46995,34097,51204
+79161,42654
+79162,46243
+79163,81786
+79164,73939
+79165,35990,28784
+79166,78617,40177,23210
+79167,42977
+79168,74567
+79169,42593
+79170,11304,38354
+79171,42048
+79172,15441,49465
+79173,48612
+79174,59148
+79175,11536,53725
+79176,38680,51520
+79177,18729
+79178,76793
+79179,27566
+79180,60920
+79181,34198
+79182,41223,4682
+79183,203
+79184,81281
+79185,77524
+79186,46300,1938
+79187,60846,14572,4829,13523
+79188,2789
+79189,79497
+79190,63461,46695
+79191,81067,6788
+79192,46894,36705
+79193,18691
+79194,336
+79195,44518
+79196,72119
+79197,32096
+79198,48323
+79199,73939
+79200,75828
+79201,72628
+79202,78520
+79203,7914
+79204,29432
+79205,33886
+79206,15521,11419
+79207,4761,65076
+79208,80291,5651
+79209,31924
+79210,77637
+79211,14326
+79212,6596
+79213,19628
+79214,1766
+79215,10204
+79216,71545,50412
+79217,69611
+79218,19763
+79219,20614,37383
+79220,10047
+79221,48663
+79222,28930
+79223,14942
+79224,49869
+79225,61872
+79226,40907
+79227,79561
+79228,31387
+79229,77148,46874
+79230,72824
+79231,39229
+79232,39487,35364
+79233,60866,8552
+79234,39943
+79235,53107
+79236,46414,47526
+79237,14716,26530
+79238,27034
+79239,2201
+79240,1147
+79241,11004
+79242,72825,72697,62012
+79243,50619
+79244,19628
+79245,77204
+79246,1257
+79247,74197,16009,8978
+79248,76391
+79249,42287,23799
+79250,7557
+79251,15581
+79252,43452
+79253,44975,45726
+79254,15578
+79255,50570
+79256,24
+79257,39309,55282,42682
+79258,22081
+79259,32363
+79260,11031
+79261,16523,44601
+79262,19693
+79263,42371
+79264,48727
+79265,9740
+79266,76904
+79267,14656
+79268,54711
+79269,24359,69984
+79270,49388
+79271,81058,40648
+79272,41671
+79273,31261
+79274,80669,52240
+79275,25489
+79276,7114,33519
+79277,63398
+79278,13632,2402
+79279,64796
+79280,64249
+79281,20225
+79282,16858
+79283,54807
+79284,73282
+79285,75556,42563
+79286,75119
+79287,7328,52775
+79288,72992
+79289,69899
+79290,30021
+79291,60086,22675
+79292,64011
+79293,64013
+79294,58345
+79295,69404
+79296,65171
+79297,43516
+79298,61979
+79299,25416
+79300,67283
+79301,7426
+79302,48143
+79303,7914
+79304,7601
+79305,45921
+79306,11463
+79307,69004
+79308,32937,75006
+79309,80072
+79310,49625,8289
+79311,78276
+79312,65579
+79313,40439
+79314,70349
+79315,74795
+79316,5540
+79317,7723,28241
+79318,81343
+79319,25437,22040
+79320,32215,58533,26614
+79321,80347
+79322,42430,64212
+79323,63818
+79324,5624
+79325,26143
+79326,22337
+79327,9740
+79328,31573
+79329,61026
+79330,26883,52249
+79331,50649
+79332,52070
+79333,4570
+79334,67728
+79335,75103
+79336,15553
+79337,9456,43331
+79338,69892
+79339,28134
+79340,46456
+79341,35131,11207
+79342,52848
+79343,19193
+79344,33906
+79345,59523,31685
+79346,76843
+79347,32034
+79348,8299,47685
+79349,77618
+79350,39478
+79351,78785
+79352,51059,1560,29783
+79353,31993
+79354,49792
+79355,6571
+79356,15037,77974
+79357,12237,15646
+79358,49685
+79359,31841
+79360,74272
+79361,48130
+79362,65192
+79363,59597
+79364,23501
+79365,46383
+79366,79521
+79367,3636
+79368,76826
+79369,12995
+79370,15583
+79371,46907
+79372,20561,63438
+79373,48586
+79374,68407,40616
+79375,27474
+79376,31238
+79377,46294
+79378,6964
+79379,39862,7245
+79380,68364
+79381,29269,23
+79382,59629
+79383,78139
+79384,12245
+79385,59306,1370
+79386,45025
+79387,9354
+79388,66866
+79389,36689,82131
+79390,70777,65536
+79391,31719,65979,58326
+79392,40690
+79393,71041
+79394,79631,47826,45791
+79395,46596
+79396,74926
+79397,30579
+79398,72156
+79399,48829
+79400,24908,52082
+79401,69790
+79402,24384,26211,77851
+79403,14508
+79404,79742
+79405,6876
+79406,1736
+79407,66582
+79408,65568
+79409,44236
+79410,36244
+79411,58754
+79412,1082
+79413,75952
+79414,34490
+79415,44936
+79416,6697
+79417,78947
+79418,30819
+79419,69759
+79420,51559
+79421,22624
+79422,73964
+79423,72916
+79424,7106
+79425,46168
+79426,19893
+79427,79931
+79428,57031,57608
+79429,29157
+79430,14688,81405,64756
+79431,82138
+79432,22677
+79433,17541,74274
+79434,7094
+79435,57678,57000
+79436,29299
+79437,7136
+79438,82062
+79439,46882
+79440,49357
+79441,39103
+79442,28848
+79443,57273
+79444,17115
+79445,35790,60403
+79446,53314
+79447,55801
+79448,26351
+79449,49689
+79450,5492
+79451,38006,10823
+79452,1080
+79453,67110
+79454,66626
+79455,14673
+79456,59401
+79457,11281,37908
+79458,74953
+79459,531,1273
+79460,23231
+79461,218
+79462,72082
+79463,80999,68400
+79464,37560,54697
+79465,8448
+79466,36628
+79467,40351
+79468,64957
+79469,51480
+79470,28303,13294,29979
+79471,71264
+79472,7233
+79473,513
+79474,79308
+79475,77692
+79476,4165,69321
+79477,14212
+79478,80455
+79479,904
+79480,25463
+79481,17883
+79482,150
+79483,61403,53001
+79484,15187
+79485,32321
+79486,25295
+79487,29713,27276
+79488,63907
+79489,46612
+79490,55893
+79491,31545
+79492,28465
+79493,67012,63900
+79494,45376
+79495,62294
+79496,27031
+79497,47655,34617
+79498,52526
+79499,1261
+79500,61856
+79501,72387
+79502,40966
+79503,13041,9281
+79504,63288
+79505,75501
+79506,78865
+79507,11972
+79508,61444
+79509,32491,64931
+79510,40767
+79511,40095
+79512,51645
+79513,32614
+79514,18911,24961
+79515,48301
+79516,45555
+79517,54667
+79518,49456
+79519,74358
+79520,60855
+79521,15855
+79522,27461
+79523,80105,72517,25494,60155
+79524,47032
+79525,33244
+79526,33360
+79527,13751
+79528,58515
+79529,50620
+79530,69438
+79531,60773
+79532,81894
+79533,37623
+79534,38224
+79535,15720
+79536,3718
+79537,20330
+79538,51994
+79539,62799
+79540,7382,25245
+79541,36941,22244
+79542,5964
+79543,28348
+79544,49086
+79545,19865,35091
+79546,25751,21067
+79547,55985
+79548,6227
+79549,21205
+79550,7651
+79551,18223,76223,3039
+79552,38468
+79553,44601
+79554,36980
+79555,72851
+79556,26007
+79557,54511
+79558,15474,51248
+79559,39434
+79560,66169
+79561,11334
+79562,73044
+79563,58045
+79564,39258
+79565,11923,11023
+79566,20442
+79567,46880
+79568,4978
+79569,30134
+79570,10329,78579
+79571,47957
+79572,20580
+79573,52901
+79574,66405
+79575,18811
+79576,44638,26648
+79577,76521
+79578,33623
+79579,33700,61001
+79580,28630
+79581,56911
+79582,13088
+79583,75576
+79584,64844,46825,13748
+79585,12541
+79586,55701,64820,910
+79587,72484
+79588,15576
+79589,53600
+79590,22779
+79591,33612,46100
+79592,44160
+79593,76723
+79594,58806
+79595,35256
+79596,28520
+79597,71896
+79598,13213
+79599,75554
+79600,8071
+79601,55563
+79602,80492
+79603,81180
+79604,21903,79822
+79605,81661
+79606,30583
+79607,74204,37600
+79608,49229
+79609,41954
+79610,15703
+79611,60145
+79612,77038
+79613,7556,2346
+79614,53651
+79615,21968
+79616,16228
+79617,43269
+79618,69732,45629
+79619,34436
+79620,36014
+79621,11608
+79622,15535
+79623,51906,68526
+79624,4790,32208
+79625,1686
+79626,77797
+79627,1560
+79628,66439
+79629,77989
+79630,24131
+79631,50711
+79632,70870
+79633,10262
+79634,67827
+79635,65531
+79636,5355
+79637,3711
+79638,16494
+79639,4351
+79640,76843
+79641,79528,31256
+79642,3329
+79643,74474
+79644,18151
+79645,70355
+79646,67501,15577
+79647,33507
+79648,9326
+79649,59082
+79650,77428
+79651,55454
+79652,75293
+79653,23944
+79654,18929
+79655,75022,25027
+79656,30616
+79657,26926
+79658,3984
+79659,440
+79660,54298
+79661,59825
+79662,1945,59987
+79663,14562
+79664,68353
+79665,53150
+79666,53612,23127,13309
+79667,14425
+79668,32013
+79669,37222
+79670,78323
+79671,69490
+79672,63737
+79673,53562
+79674,38601
+79675,67885
+79676,52007
+79677,23177
+79678,38606
+79679,34184
+79680,50601
+79681,24354,70814
+79682,2430
+79683,71845
+79684,54940
+79685,31571
+79686,23714,27833
+79687,23559
+79688,66953
+79689,67248
+79690,15151,58767
+79691,71291
+79692,80440
+79693,14622
+79694,35331,65331
+79695,54585
+79696,79654
+79697,16761
+79698,32244
+79699,46013
+79700,79534
+79701,14551
+79702,65442
+79703,20745
+79704,18448
+79705,45508
+79706,40332
+79707,56073
+79708,59292
+79709,49423
+79710,60793
+79711,80688,54249
+79712,56199
+79713,44545
+79714,55831
+79715,66387,58063,80224
+79716,53314
+79717,51870
+79718,65270
+79719,42643,27444
+79720,56940,19872
+79721,17650,45849
+79722,42963
+79723,38362
+79724,64580
+79725,45533,30575
+79726,14273,75496
+79727,13835,28156
+79728,62817,47584,17780
+79729,43822
+79730,72030,17541
+79731,19803
+79732,57136
+79733,19442,79872
+79734,1213
+79735,33668
+79736,23099,73329
+79737,11235
+79738,6685
+79739,56945,74950
+79740,11173
+79741,2382
+79742,53321
+79743,36098
+79744,38034
+79745,10646,839
+79746,70298,64339
+79747,64431
+79748,3964
+79749,3637
+79750,37898
+79751,29141
+79752,43785
+79753,9389
+79754,40585
+79755,4039
+79756,68104
+79757,53092,72935
+79758,68248
+79759,55369,1641
+79760,76001
+79761,51428
+79762,58694
+79763,34433
+79764,20492
+79765,3560
+79766,63319
+79767,42532
+79768,78290
+79769,57126
+79770,29084,48741
+79771,54192
+79772,13861,50703
+79773,10212
+79774,10740
+79775,80932,75790
+79776,56090
+79777,25141
+79778,53242
+79779,66083,81753
+79780,20027
+79781,72915
+79782,56318,29716
+79783,18218
+79784,52903
+79785,31261
+79786,52619
+79787,10195
+79788,61780,75064
+79789,76904
+79790,27339
+79791,40831,8084
+79792,64747
+79793,24523
+79794,27225
+79795,197
+79796,29434
+79797,15049
+79798,73011,29178
+79799,28492
+79800,63248
+79801,80676
+79802,12503,14310
+79803,81116
+79804,79915
+79805,29395
+79806,49328
+79807,41613
+79808,37158
+79809,10514
+79810,49
+79811,62495
+79812,19126
+79813,49912,30005
+79814,61009
+79815,10800
+79816,38915
+79817,59000
+79818,71290
+79819,2594
+79820,13033
+79821,11788
+79822,5041
+79823,15163
+79824,25207
+79825,6779
+79826,36184
+79827,9235
+79828,38159
+79829,65098
+79830,7332,81437
+79831,62291
+79832,20378
+79833,78485
+79834,28966,66141,77263
+79835,73354,22801
+79836,13956
+79837,80950,60859
+79838,25910
+79839,53639
+79840,14731
+79841,63547
+79842,59231
+79843,22601
+79844,20408
+79845,59956
+79846,30058
+79847,1712
+79848,56384
+79849,65645
+79850,31671
+79851,1502
+79852,79204
+79853,20692
+79854,38764
+79855,27164
+79856,11854
+79857,4251
+79858,34300
+79859,4467
+79860,81624
+79861,71686
+79862,35076
+79863,39787
+79864,70601
+79865,68279
+79866,4082
+79867,6470
+79868,60788
+79869,35568,36904
+79870,73120
+79871,62783
+79872,60076
+79873,69766
+79874,55751
+79875,18317
+79876,20550
+79877,59567
+79878,12440
+79879,13835
+79880,36387
+79881,53536
+79882,57540
+79883,75810
+79884,661,20
+79885,56246
+79886,30334
+79887,67490
+79888,18272,59312
+79889,17597
+79890,68224
+79891,68428
+79892,53220,48154,34721
+79893,32322,19911
+79894,61507
+79895,61725
+79896,20650
+79897,54991,48418
+79898,20643
+79899,70930
+79900,7163
+79901,29419
+79902,54044
+79903,72416
+79904,68304
+79905,42080,36041,15385
+79906,16679
+79907,71069
+79908,59446
+79909,77333
+79910,1236
+79911,48399
+79912,68276
+79913,2262
+79914,67927
+79915,58416,73898
+79916,54148
+79917,57427
+79918,68626
+79919,34989
+79920,52670
+79921,72367,11267
+79922,40585,44084
+79923,56031,61524
+79924,36509
+79925,70889
+79926,36501
+79927,70261
+79928,41963
+79929,11522
+79930,26031
+79931,12196
+79932,54663
+79933,10839,27571
+79934,47531,61762
+79935,24717
+79936,52385
+79937,8373
+79938,23606
+79939,47632
+79940,6929
+79941,26351
+79942,10170
+79943,29060
+79944,58024
+79945,28442
+79946,68195
+79947,76928
+79948,30844
+79949,10391
+79950,50087
+79951,24710
+79952,67502
+79953,28089
+79954,39540
+79955,43059
+79956,7803
+79957,5944
+79958,67855
+79959,26186
+79960,77541
+79961,2139,66832
+79962,3439
+79963,39363
+79964,74253
+79965,63916
+79966,35949
+79967,11961
+79968,58341
+79969,59445
+79970,11794
+79971,54822
+79972,74711
+79973,79797
+79974,52975
+79975,71421
+79976,61834
+79977,16226
+79978,37486
+79979,15694
+79980,24440
+79981,4315
+79982,40053
+79983,71126
+79984,1535
+79985,54902
+79986,75651
+79987,26465
+79988,69401
+79989,38835
+79990,1966
+79991,14376
+79992,62362,1174
+79993,67261
+79994,56462
+79995,17408
+79996,18015
+79997,31307
+79998,52089
+79999,45743
+80000,45493
+80001,13917
+80002,5630,59895
+80003,77518
+80004,60504
+80005,4792
+80006,13875
+80007,32235,73482,65511
+80008,25276
+80009,9957
+80010,12272
+80011,21842,81775
+80012,75032
+80013,71369
+80014,33008
+80015,49349,1253
+80016,49053
+80017,48823,58963
+80018,57684
+80019,933
+80020,41827
+80021,48770
+80022,50931
+80023,52262
+80024,63034
+80025,80566
+80026,7936,73626
+80027,47550
+80028,599
+80029,9129
+80030,54698
+80031,21553
+80032,2789
+80033,76523
+80034,18346
+80035,36332
+80036,33768,12269
+80037,13450
+80038,37553
+80039,36259
+80040,77716,81547
+80041,58660
+80042,44975,39298
+80043,39738
+80044,65493
+80045,58631
+80046,27819,12972
+80047,36859
+80048,7530,63669
+80049,50019
+80050,35399
+80051,4217
+80052,13920
+80053,22681
+80054,28503
+80055,26343
+80056,75922
+80057,78712,41334
+80058,61006
+80059,44190
+80060,75910,56291
+80061,18607
+80062,43144
+80063,67260
+80064,51532
+80065,7013
+80066,75980
+80067,47952
+80068,14879
+80069,18468
+80070,61821
+80071,76982
+80072,26025
+80073,2862
+80074,2152,66913
+80075,30522
+80076,11585,15929
+80077,76783
+80078,16729,81028
+80079,71340,16310
+80080,29748
+80081,42298
+80082,42159
+80083,5666
+80084,20901
+80085,57336,62576,39702
+80086,58729,9198
+80087,14016
+80088,1416,6647
+80089,66048,47045
+80090,23289
+80091,20909
+80092,26926
+80093,31241
+80094,58989,27388
+80095,37034
+80096,60490,24195
+80097,75063,63206
+80098,77873
+80099,41927
+80100,62113
+80101,6597,67453
+80102,42360,81935
+80103,22172
+80104,66555,25321
+80105,15284
+80106,26772,8040
+80107,40322
+80108,69735
+80109,27642
+80110,67029,15154
+80111,13537
+80112,4270
+80113,9052
+80114,926,56508
+80115,81268,25268
+80116,29187
+80117,17356,71323
+80118,70147
+80119,27246
+80120,48388
+80121,8127,51377
+80122,24530
+80123,63669
+80124,55825
+80125,44850
+80126,29864
+80127,1320,37251,70759
+80128,26831
+80129,50963,10594
+80130,15972
+80131,24864
+80132,12792,3828
+80133,1475
+80134,34276
+80135,78580
+80136,55897
+80137,57368
+80138,4480
+80139,78681
+80140,80266,19464
+80141,55453
+80142,61064
+80143,12485,14034
+80144,73610
+80145,70069
+80146,36905
+80147,39007,26986,39286
+80148,30617,76083,5156
+80149,45827
+80150,51984
+80151,42469
+80152,25476
+80153,64300
+80154,4345
+80155,75309
+80156,403,36198
+80157,57493
+80158,68168,4269
+80159,40800
+80160,77521
+80161,79443
+80162,4774
+80163,25752,38275
+80164,52549
+80165,43732
+80166,13347,2066
+80167,64052
+80168,17575
+80169,17199,25415
+80170,66045
+80171,22035
+80172,77356
+80173,41087
+80174,49250
+80175,57253
+80176,17057,79080
+80177,47281
+80178,49903
+80179,41019
+80180,40010,7455
+80181,13144
+80182,54119
+80183,2687
+80184,57117
+80185,53212
+80186,78837
+80187,71043,78296
+80188,68196
+80189,65324
+80190,27641
+80191,9023
+80192,27449
+80193,8776
+80194,11613
+80195,12829
+80196,11331
+80197,76166,40585,21420
+80198,61479,80208
+80199,74404
+80200,67766
+80201,31701
+80202,63191
+80203,73763
+80204,3661
+80205,71568
+80206,66284
+80207,33914
+80208,72489
+80209,46851
+80210,30724
+80211,42995,25939
+80212,5914
+80213,27195
+80214,55010
+80215,48656
+80216,55580
+80217,77740
+80218,24709
+80219,40464
+80220,31959
+80221,23082
+80222,66346
+80223,42698
+80224,48713
+80225,20649
+80226,62997
+80227,27128
+80228,70082
+80229,1588
+80230,78502
+80231,20409
+80232,70506
+80233,35436,73042
+80234,26767
+80235,76664
+80236,77381
+80237,78763
+80238,43723
+80239,34240
+80240,3374,8878
+80241,65795
+80242,65989
+80243,25463
+80244,72598
+80245,68678
+80246,68407
+80247,55233
+80248,78032
+80249,72358
+80250,59934,42377
+80251,2803
+80252,25364,39180
+80253,58804
+80254,49457
+80255,61569,45967
+80256,29402,61250
+80257,43510
+80258,24205,11608
+80259,60136,57537
+80260,58534
+80261,9265
+80262,43096
+80263,27374
+80264,62388,12044,76905
+80265,46953
+80266,61939
+80267,8656
+80268,61205
+80269,42477
+80270,23306
+80271,42691,61970
+80272,27678
+80273,69165
+80274,8024
+80275,1266
+80276,26039
+80277,2877
+80278,18491
+80279,9961
+80280,32254
+80281,4392,44183,16751
+80282,81073
+80283,29828
+80284,30436
+80285,51309,31068
+80286,61837
+80287,73419,32621
+80288,7147,10428
+80289,67435
+80290,81916
+80291,29746
+80292,31307,21819
+80293,73547,46174,73636
+80294,24701
+80295,36804,71840
+80296,43830
+80297,48317
+80298,81557
+80299,8356
+80300,13812
+80301,3275
+80302,27062
+80303,16988,80437
+80304,45485
+80305,54495
+80306,1821,78879
+80307,1209
+80308,59860
+80309,78889
+80310,34683
+80311,62323,834
+80312,10879
+80313,925,35795
+80314,2374
+80315,60622,10301
+80316,17066
+80317,80039,18698
+80318,51976
+80319,22445
+80320,8728,3315
+80321,29126
+80322,76274
+80323,67298
+80324,51486
+80325,51336
+80326,73564,60165,12036
+80327,3681
+80328,68320
+80329,17797,41330
+80330,35972
+80331,13624
+80332,57306
+80333,66775
+80334,55671
+80335,60744,45554
+80336,10201
+80337,45101
+80338,8175
+80339,27533
+80340,58283,33184
+80341,70736
+80342,38834
+80343,26766
+80344,24930
+80345,2838
+80346,45516,53937
+80347,21929
+80348,65784
+80349,26645
+80350,64089
+80351,44878
+80352,4461
+80353,21670
+80354,17470,53859
+80355,58112
+80356,49342,55571
+80357,9507
+80358,70105,18961
+80359,5015
+80360,41132
+80361,6960
+80362,7889,22566
+80363,11527,39903,36669
+80364,53301,13657
+80365,67332
+80366,17111
+80367,63398
+80368,5602
+80369,68778
+80370,40437
+80371,34497
+80372,47482
+80373,13332
+80374,57870
+80375,43443
+80376,5843
+80377,23778
+80378,8244,25584
+80379,67680
+80380,49635
+80381,29248
+80382,44249
+80383,8787
+80384,74830
+80385,40664
+80386,80229
+80387,10938,70976
+80388,57387
+80389,17298
+80390,28669,24573
+80391,57555
+80392,54127,9130
+80393,18803
+80394,58164
+80395,65844
+80396,76558
+80397,71490
+80398,72537
+80399,35666
+80400,34975,12798,1309
+80401,41045
+80402,71788
+80403,7148,7231
+80404,18644
+80405,80492
+80406,4999
+80407,21305
+80408,46886
+80409,40755,74189,42874
+80410,58672
+80411,44256
+80412,78827
+80413,26934,67261
+80414,6180
+80415,34861
+80416,41018
+80417,50744,15087
+80418,51207,74141
+80419,9394
+80420,59856
+80421,52892
+80422,20022
+80423,55462,47522
+80424,75931
+80425,42539
+80426,50745
+80427,61158
+80428,22183
+80429,5171
+80430,40923
+80431,46794,335
+80432,56422,28275,5863
+80433,46585
+80434,37033
+80435,12707
+80436,2797
+80437,26939,14459
+80438,17630
+80439,1676,71421
+80440,79572
+80441,41570
+80442,55013,1601,70262
+80443,572,34388
+80444,36651,14285
+80445,74788
+80446,19690
+80447,544,79046
+80448,25690
+80449,36563
+80450,3873
+80451,63505
+80452,33953
+80453,77459
+80454,39539
+80455,71002
+80456,79988,30110
+80457,10369
+80458,57908
+80459,39128,20637
+80460,69615
+80461,64746
+80462,22863
+80463,43896
+80464,48811,44040
+80465,69483
+80466,64756
+80467,35977,46759
+80468,43294
+80469,46865
+80470,6916
+80471,59499
+80472,60920
+80473,29941,25945
+80474,6268
+80475,71838
+80476,79051
+80477,50170
+80478,24456
+80479,24715,28201
+80480,10011
+80481,74458
+80482,26289
+80483,74928
+80484,23885
+80485,19628
+80486,63630,70425
+80487,63713
+80488,66914
+80489,27777,41003
+80490,6407
+80491,36586
+80492,65169
+80493,2626
+80494,36926
+80495,39709
+80496,13684
+80497,74876
+80498,30517
+80499,3592
+80500,40346
+80501,39848
+80502,43624
+80503,3300
+80504,3898
+80505,52664
+80506,42081
+80507,47979
+80508,57264
+80509,76439
+80510,47657
+80511,71499,81020
+80512,39633
+80513,28741
+80514,67674
+80515,72802
+80516,33313
+80517,39018
+80518,5214
+80519,81229,69402
+80520,51232
+80521,73066
+80522,54474
+80523,66029
+80524,38835,650
+80525,25954
+80526,58554,51734,32615
+80527,68169
+80528,76514
+80529,45410
+80530,31184,35303
+80531,76805
+80532,4913
+80533,28521,32886
+80534,15391
+80535,71397
+80536,5336
+80537,14304
+80538,59406,81295
+80539,40585
+80540,74895,80235,71195
+80541,6981
+80542,35021
+80543,60071
+80544,19077
+80545,32675
+80546,43580
+80547,71163
+80548,59191
+80549,9826
+80550,21813
+80551,47711
+80552,6660,53043
+80553,25070
+80554,68788
+80555,21302
+80556,66183
+80557,73772
+80558,24320
+80559,13968
+80560,78187
+80561,3828,65667
+80562,37931
+80563,70149
+80564,80727
+80565,588,48698
+80566,47328
+80567,81907
+80568,37965
+80569,50058
+80570,615
+80571,28011,19921
+80572,73969
+80573,77050
+80574,62758
+80575,76213,19249
+80576,16839,33813
+80577,11310,71670
+80578,13341
+80579,32503
+80580,54338
+80581,62394
+80582,27944
+80583,52275
+80584,51925
+80585,8378
+80586,78827
+80587,24764,12892
+80588,21914
+80589,13450
+80590,55203
+80591,38143,29726
+80592,25931
+80593,68794
+80594,61816,73818
+80595,30536
+80596,8903
+80597,44634,64943
+80598,30525
+80599,22284
+80600,62623
+80601,54119
+80602,72765,2589
+80603,7130,69823
+80604,25652,3049
+80605,70329,41700
+80606,63245
+80607,76556,77090
+80608,71568,2752
+80609,35102
+80610,24810
+80611,52093
+80612,63129,23203
+80613,17904
+80614,14592
+80615,65447,71247
+80616,18903
+80617,20245,14288
+80618,22806
+80619,39641
+80620,40252
+80621,75830
+80622,914
+80623,4448
+80624,3541
+80625,76300
+80626,40889
+80627,68799
+80628,18805
+80629,19842
+80630,62854
+80631,72809
+80632,4983
+80633,81596
+80634,66907,61065
+80635,20488
+80636,74003
+80637,71827
+80638,19096,34815,26443
+80639,37779
+80640,57318,5139
+80641,62255
+80642,16083
+80643,79670
+80644,20334
+80645,45400
+80646,1114
+80647,45213
+80648,31884,67011
+80649,33262,17840
+80650,16169
+80651,20865
+80652,37828
+80653,36121
+80654,19376
+80655,23090
+80656,8186
+80657,9732,9499
+80658,29197
+80659,60697
+80660,60011
+80661,31815
+80662,9036
+80663,53166
+80664,80001
+80665,31698
+80666,27106
+80667,43118
+80668,33704
+80669,793
+80670,39501
+80671,41195
+80672,48743
+80673,47047
+80674,35097,44811
+80675,29035
+80676,12609
+80677,62801
+80678,81512,23728
+80679,20268
+80680,21639
+80681,23620
+80682,56720
+80683,60229
+80684,68715
+80685,73222
+80686,66234
+80687,48885,22762,37765
+80688,33985
+80689,60684
+80690,45931
+80691,34752
+80692,57063
+80693,11463
+80694,76607
+80695,55901
+80696,40836,73446
+80697,62694
+80698,19444
+80699,7107
+80700,5143
+80701,20875
+80702,73498
+80703,13685
+80704,70253
+80705,41844
+80706,31473
+80707,74801,49134
+80708,51329,51202
+80709,61434
+80710,45649
+80711,9526
+80712,16969
+80713,19416
+80714,58164
+80715,21034,72756
+80716,24458
+80717,48452,68486
+80718,69590,35138
+80719,51330
+80720,81740,213
+80721,2119
+80722,40502
+80723,79410
+80724,24008
+80725,73673
+80726,80080
+80727,22162
+80728,14754
+80729,17707,56992
+80730,38517
+80731,13537
+80732,12392
+80733,68391
+80734,57950,38341,34026
+80735,15740,6163
+80736,8043
+80737,4874
+80738,33462
+80739,65755
+80740,68285,6947
+80741,59730,3933
+80742,7205
+80743,37293,17778
+80744,6849
+80745,55192
+80746,488
+80747,8675
+80748,35648,14664
+80749,46988
+80750,25616
+80751,21681
+80752,13287
+80753,6095
+80754,19693
+80755,9275
+80756,67963,26032
+80757,39686
+80758,16630
+80759,18513
+80760,75644
+80761,23194
+80762,81772
+80763,61610
+80764,68105
+80765,59928
+80766,38446
+80767,40578
+80768,48718
+80769,17326
+80770,51419,44676,45693
+80771,54539
+80772,39179
+80773,33184
+80774,14308
+80775,12059
+80776,64332
+80777,62294
+80778,26434
+80779,69253
+80780,48656
+80781,24283
+80782,51487
+80783,73486
+80784,82087
+80785,73934
+80786,67416
+80787,75835,42127
+80788,29120
+80789,26641
+80790,6109
+80791,41130,65231
+80792,44418
+80793,51546
+80794,70300
+80795,30221,8721
+80796,33876
+80797,25008
+80798,19788,29728
+80799,34184
+80800,74063
+80801,71691
+80802,12764
+80803,48746
+80804,43129
+80805,27457
+80806,13702
+80807,56186
+80808,1649
+80809,6022
+80810,20549
+80811,34458
+80812,26885,62639
+80813,67388
+80814,57922
+80815,64037
+80816,18375
+80817,59260
+80818,10710
+80819,78360
+80820,27930
+80821,53414
+80822,31753,23829
+80823,45197
+80824,75279,5410
+80825,21793
+80826,60837
+80827,25428
+80828,14396,60401
+80829,54813,30832
+80830,30056
+80831,81494
+80832,61870,69886
+80833,69289,20257
+80834,80806
+80835,25653
+80836,40501
+80837,33517
+80838,14386
+80839,7131
+80840,56987
+80841,10690
+80842,62930,22537
+80843,5096
+80844,45389
+80845,57722
+80846,23923
+80847,15628
+80848,25956
+80849,26422,58515
+80850,51555,68745
+80851,74678,44243
+80852,29163
+80853,39715
+80854,49484
+80855,60749
+80856,27607
+80857,35387
+80858,76430
+80859,41998
+80860,10034,33233
+80861,8906
+80862,79361
+80863,42206
+80864,64643
+80865,51994
+80866,15573
+80867,31235
+80868,23131,21708
+80869,34067
+80870,61930
+80871,62099
+80872,50414
+80873,20925
+80874,43538
+80875,23312
+80876,51845,49523
+80877,66604
+80878,40705
+80879,36596
+80880,57941
+80881,13453,80458
+80882,43068
+80883,66700
+80884,25525
+80885,65214
+80886,19295
+80887,59588
+80888,35456
+80889,50648
+80890,62614
+80891,53230
+80892,64169
+80893,8380
+80894,32900
+80895,74101
+80896,21794,47737,61171
+80897,40951
+80898,59458
+80899,64408
+80900,81571
+80901,78732,60312
+80902,75685
+80903,78810
+80904,74501
+80905,64181
+80906,48161
+80907,44812
+80908,27080,10280
+80909,18812
+80910,41592
+80911,13873
+80912,36064
+80913,3976
+80914,35240
+80915,67905,26640
+80916,34879
+80917,16077
+80918,47888
+80919,56797
+80920,4522
+80921,73777,3172
+80922,1859
+80923,33579,32330
+80924,27137
+80925,75561
+80926,6664
+80927,57157
+80928,20119
+80929,15499
+80930,808
+80931,21694
+80932,80165
+80933,8405
+80934,52450
+80935,21476
+80936,8407
+80937,2019
+80938,1820
+80939,40690
+80940,69004
+80941,10256,74754
+80942,43112
+80943,70576
+80944,73884
+80945,73985,61778,67095
+80946,69490
+80947,25505
+80948,50133
+80949,47696
+80950,35684
+80951,28742,59733
+80952,3673
+80953,39733
+80954,31751
+80955,23369
+80956,71400
+80957,76308
+80958,79771
+80959,11243
+80960,48081,53953
+80961,40445
+80962,5117
+80963,61529
+80964,63600,64776
+80965,26769
+80966,71576,47314,34988,1139
+80967,38728
+80968,77906
+80969,21502
+80970,70115
+80971,36270
+80972,35744
+80973,8814
+80974,5747
+80975,63490
+80976,326
+80977,48785
+80978,24693
+80979,59838
+80980,7553,55847
+80981,48571
+80982,74770
+80983,65094
+80984,35979
+80985,28548
+80986,4075
+80987,36053,13386
+80988,2321,1901,19624,77548
+80989,79534
+80990,17889
+80991,22540,23808
+80992,61741
+80993,37521
+80994,17630
+80995,17259,56525
+80996,33461,49232
+80997,3419,42674
+80998,19495
+80999,38728
+81000,69290
+81001,34389
+81002,18944
+81003,13200
+81004,2891
+81005,7805
+81006,57265
+81007,30828,29106
+81008,6845
+81009,75515
+81010,32510,58766
+81011,22916
+81012,22565
+81013,36022
+81014,43376
+81015,7727
+81016,10556
+81017,53263
+81018,70053
+81019,79751,79852
+81020,40689
+81021,65658
+81022,58600
+81023,41819
+81024,12768
+81025,59500
+81026,42074,72439
+81027,56582
+81028,4827
+81029,47206
+81030,49553
+81031,39542
+81032,10808,26022,3743
+81033,26475
+81034,65376
+81035,63761
+81036,2542
+81037,54184
+81038,40139
+81039,54034,2639,56448
+81040,47426
+81041,4639
+81042,20123
+81043,27037
+81044,36651
+81045,15535
+81046,73957
+81047,40178
+81048,31200
+81049,66651,24472,8971
+81050,70927
+81051,62916
+81052,5692
+81053,23037,10714
+81054,48615
+81055,67885
+81056,52313
+81057,10986,46818
+81058,57682
+81059,70130
+81060,60472
+81061,75461
+81062,63322
+81063,46034,21914
+81064,6071
+81065,17331
+81066,52141,52259
+81067,66615,46637
+81068,7943,79252
+81069,79762
+81070,46904
+81071,28596
+81072,52737
+81073,53196
+81074,3017
+81075,33628
+81076,77304
+81077,21781
+81078,14166
+81079,69213
+81080,67587
+81081,64260,49522
+81082,46080
+81083,34526
+81084,65167
+81085,19489,6420,45545
+81086,36983,38337
+81087,21522
+81088,24732
+81089,48143
+81090,70585,33039
+81091,15747
+81092,33277
+81093,52455
+81094,15076
+81095,26269
+81096,19747
+81097,54100
+81098,39528
+81099,45329,5731,66586
+81100,7645
+81101,82045
+81102,51240
+81103,59915
+81104,16782
+81105,55681
+81106,58958,64780,48558
+81107,78976
+81108,9333
+81109,5410,2925
+81110,53232
+81111,48439
+81112,1781
+81113,37042
+81114,29145
+81115,71403
+81116,58844,3109
+81117,5631,45899
+81118,28563,78958
+81119,32569
+81120,38959
+81121,80001
+81122,81025
+81123,80365
+81124,2396
+81125,31296
+81126,75366
+81127,80813,78697
+81128,65192
+81129,36204
+81130,14815
+81131,57233
+81132,37329
+81133,81516
+81134,53863
+81135,2328
+81136,3151
+81137,6678,275
+81138,76055
+81139,25229
+81140,40788
+81141,65746
+81142,45685
+81143,38887
+81144,73131
+81145,71946
+81146,18143,66663
+81147,71008
+81148,33517,31303
+81149,25544
+81150,34528
+81151,36138
+81152,56942
+81153,50570
+81154,11785
+81155,33901
+81156,17493,37177
+81157,61428
+81158,38911
+81159,36973
+81160,71145
+81161,34809
+81162,19598
+81163,56136
+81164,4813
+81165,20109
+81166,77269
+81167,63771
+81168,81702
+81169,61473
+81170,56914,68617
+81171,14690
+81172,67696
+81173,951
+81174,43722
+81175,79204
+81176,61968
+81177,25944
+81178,27505,6981
+81179,27232,78244
+81180,65031
+81181,23655
+81182,8343
+81183,61471,37702
+81184,37207
+81185,61683
+81186,7842
+81187,55339,69496
+81188,65708
+81189,33146
+81190,2166
+81191,64948
+81192,43255
+81193,44516
+81194,49624,21010
+81195,49247
+81196,32363
+81197,19039,5359
+81198,20574
+81199,63035
+81200,79194
+81201,59077,14468
+81202,45883
+81203,13893,14279,44834
+81204,58875
+81205,29127
+81206,44234
+81207,16566
+81208,49810
+81209,21119
+81210,24180
+81211,24492
+81212,28686
+81213,43895
+81214,56900
+81215,26940
+81216,35285
+81217,27293
+81218,51896
+81219,53063
+81220,9321
+81221,52160,68770
+81222,61673
+81223,81345,6343
+81224,71060
+81225,65525
+81226,45975
+81227,48694,67261
+81228,5027
+81229,49088
+81230,42865
+81231,29265
+81232,33101,23521
+81233,2574
+81234,39982
+81235,12222,81881
+81236,48650
+81237,68843
+81238,62867
+81239,74979,30673
+81240,11881
+81241,71248
+81242,7320,55454,56936,54690
+81243,79139
+81244,49412
+81245,44493
+81246,56323
+81247,50212
+81248,54347,38915
+81249,65937
+81250,61279
+81251,35461
+81252,1494
+81253,850
+81254,17417
+81255,37776
+81256,54927
+81257,36118,77862
+81258,45754
+81259,60456
+81260,11648
+81261,56294
+81262,59684,81334,19847
+81263,59563,8776
+81264,75631,27305
+81265,36216
+81266,73979
+81267,54494
+81268,64142
+81269,25869
+81270,43045
+81271,79314
+81272,39093
+81273,50014
+81274,41139,66880
+81275,62741
+81276,6381
+81277,46071
+81278,68960
+81279,26484
+81280,46367
+81281,28990
+81282,49562,24069
+81283,3155
+81284,13555
+81285,29484
+81286,67873
+81287,70391
+81288,26510
+81289,38865
+81290,70619
+81291,34032
+81292,18899
+81293,35793
+81294,6225
+81295,56889
+81296,17187
+81297,57250
+81298,34901
+81299,21781
+81300,14636
+81301,50788
+81302,22603,12472
+81303,8600,46307
+81304,45430
+81305,10256
+81306,32935
+81307,74939
+81308,1852
+81309,26872
+81310,54973
+81311,31561,47929
+81312,27797
+81313,17462,51909
+81314,16695
+81315,53004
+81316,58791
+81317,68647
+81318,16761
+81319,73934
+81320,47437
+81321,49651
+81322,59535
+81323,72381
+81324,7481,847
+81325,29741
+81326,10195
+81327,33553
+81328,22478
+81329,73659
+81330,70354
+81331,46886
+81332,18375
+81333,56078,73058
+81334,76519
+81335,31355
+81336,77018
+81337,62745
+81338,78267
+81339,41560
+81340,25192
+81341,40587
+81342,57034
+81343,60236,40011
+81344,44321
+81345,44866
+81346,7624,1158
+81347,4178,62885
+81348,39853
+81349,59717
+81350,26732,57883
+81351,65281
+81352,16773
+81353,62957
+81354,20795
+81355,50178
+81356,12519,11462
+81357,70202,39093
+81358,18517
+81359,41865
+81360,23116
+81361,42471,14288,48122
+81362,66724
+81363,8962
+81364,23841
+81365,18652
+81366,12033
+81367,36305,8304
+81368,4420
+81369,45823
+81370,76024
+81371,20643
+81372,14031
+81373,59612
+81374,67353
+81375,64860,81751
+81376,19875
+81377,28609
+81378,12764
+81379,47853
+81380,50414,72449
+81381,55696
+81382,37987,17208
+81383,62976
+81384,62113
+81385,34343
+81386,45832
+81387,50426
+81388,33920
+81389,78966
+81390,197
+81391,31233
+81392,64767
+81393,71545,34260
+81394,23360
+81395,13918,43151
+81396,6089
+81397,55585
+81398,17932,22804
+81399,46320,69946
+81400,12203
+81401,72781
+81402,48136
+81403,8956
+81404,58426
+81405,43635,45835
+81406,29820,9841
+81407,37350
+81408,52421
+81409,42096
+81410,52284
+81411,74725
+81412,40148,56773
+81413,6310,67971
+81414,6749
+81415,35474
+81416,69197
+81417,14105,75454
+81418,25856
+81419,41150
+81420,13932
+81421,14531
+81422,4679
+81423,34684
+81424,36496
+81425,78874
+81426,66979,35956
+81427,51086,64453,30921
+81428,72088
+81429,37895,51538
+81430,32982
+81431,55576,19519
+81432,39374
+81433,71942
+81434,80997
+81435,60995
+81436,56900
+81437,62002
+81438,31930
+81439,7737
+81440,45639
+81441,76406
+81442,42827
+81443,21628
+81444,39913,81084
+81445,30863
+81446,19794
+81447,49880
+81448,67173,80698
+81449,48248
+81450,36550,64641
+81451,3254
+81452,8717
+81453,61788,21916
+81454,17311,80809
+81455,2854,71571
+81456,25427
+81457,74690
+81458,9862
+81459,48313
+81460,23212
+81461,56111
+81462,67095
+81463,46829
+81464,22270
+81465,77989,16126
+81466,28630
+81467,52247
+81468,61135
+81469,10734
+81470,47047
+81471,80871
+81472,57691,19465
+81473,23829
+81474,15113
+81475,20993
+81476,10460,55327
+81477,33229
+81478,28423
+81479,22173,31736
+81480,60818,32097
+81481,45052
+81482,6198
+81483,31560
+81484,32293
+81485,19875
+81486,17457
+81487,47800
+81488,8256
+81489,75823
+81490,59111
+81491,38405
+81492,35520
+81493,11367
+81494,53152
+81495,74908
+81496,77306,30281
+81497,70243
+81498,77641,43157
+81499,65285,44249
+81500,65044
+81501,81667,60769
+81502,24086
+81503,9592
+81504,2324
+81505,73524
+81506,8824
+81507,52547
+81508,79614,70387
+81509,53815
+81510,73364
+81511,17782,40641,7778
+81512,9279
+81513,7815,20250,6143
+81514,76377
+81515,14667
+81516,23360
+81517,53815
+81518,54271
+81519,78721,27154
+81520,23670,37471
+81521,43796
+81522,63460
+81523,79595
+81524,16074
+81525,16766
+81526,17715,56586,62878
+81527,56696,57099
+81528,53823
+81529,78250
+81530,81037
+81531,43642
+81532,73612,4440
+81533,61919
+81534,68624
+81535,2914
+81536,41534
+81537,26920
+81538,4385
+81539,1271
+81540,4874
+81541,78398
+81542,45573
+81543,16595
+81544,24574
+81545,64142
+81546,50107
+81547,4311
+81548,46462
+81549,3172
+81550,64525
+81551,55254
+81552,27490
+81553,4163
+81554,53076
+81555,2275
+81556,41892
+81557,29855
+81558,14175
+81559,39322,67255
+81560,62999,10570
+81561,36240
+81562,51415,28319,73643
+81563,35787
+81564,78801,5039
+81565,24810
+81566,22099
+81567,70381,10440
+81568,58271
+81569,54717
+81570,24611
+81571,10943
+81572,37868,74991
+81573,80219,11907
+81574,3209
+81575,65867
+81576,67415
+81577,28350
+81578,27851
+81579,61116
+81580,80381
+81581,62083
+81582,26256,33156
+81583,43183
+81584,32940,29394
+81585,7978
+81586,70270
+81587,22866,2515
+81588,59255,31829
+81589,28975
+81590,231
+81591,58142
+81592,27915,16168
+81593,27839
+81594,80312,63989
+81595,43913
+81596,39427
+81597,27525
+81598,23
+81599,16900
+81600,40616
+81601,66548
+81602,592
+81603,8734,18231
+81604,60374
+81605,26344
+81606,21531
+81607,74600
+81608,45663,9352
+81609,43783
+81610,63068
+81611,6933
+81612,70500
+81613,14195
+81614,34196
+81615,56824,55930
+81616,30678
+81617,68749
+81618,76370,52161
+81619,435
+81620,59041
+81621,56282
+81622,68636
+81623,35068
+81624,64601
+81625,50902
+81626,77743
+81627,59979
+81628,34572
+81629,15064
+81630,1020
+81631,53166,17804
+81632,4792
+81633,11375
+81634,46764
+81635,74616
+81636,37711
+81637,19435,8458,76078
+81638,74658
+81639,20506
+81640,42887
+81641,19360
+81642,19722
+81643,65094
+81644,24515
+81645,62437
+81646,69005,32325
+81647,56721
+81648,74580
+81649,66603
+81650,57058
+81651,48145
+81652,8604
+81653,25541
+81654,54816
+81655,21054
+81656,15960,77062
+81657,25431
+81658,52526
+81659,43525
+81660,9119
+81661,11762
+81662,38224
+81663,14308
+81664,71678
+81665,41205
+81666,23634
+81667,27586
+81668,58346,37597
+81669,49734
+81670,19783,64852
+81671,52635
+81672,807
+81673,64565,8434
+81674,20553
+81675,48731
+81676,44592
+81677,3876
+81678,43192
+81679,60734
+81680,53410
+81681,67776
+81682,74967
+81683,63680
+81684,48606
+81685,78610
+81686,80856
+81687,57063,49568
+81688,60350
+81689,61198
+81690,59173
+81691,25581
+81692,71186
+81693,64994
+81694,34921
+81695,71770
+81696,37281,45607
+81697,19786,7934
+81698,78118
+81699,40608
+81700,25035
+81701,67283
+81702,35318
+81703,21830
+81704,55586
+81705,66443
+81706,49050
+81707,8413
+81708,67515
+81709,78741
+81710,73313
+81711,56360,53419,17398
+81712,54843
+81713,47100,80871
+81714,28734
+81715,51679
+81716,2501
+81717,54314
+81718,68714
+81719,47061,76433
+81720,773
+81721,8018
+81722,9389
+81723,45948
+81724,39716
+81725,31565,78490
+81726,69089
+81727,78635
+81728,42975
+81729,66716
+81730,74326
+81731,11654
+81732,1515
+81733,43935,56011
+81734,77428,52632
+81735,27804
+81736,65285
+81737,77035
+81738,80677
+81739,37733
+81740,43180
+81741,14487
+81742,35764
+81743,4272
+81744,6474
+81745,66663
+81746,45533,44105
+81747,49028
+81748,22272
+81749,15930
+81750,59223
+81751,80251
+81752,54402
+81753,16458
+81754,16550,29665
+81755,36700
+81756,423
+81757,47681
+81758,51903
+81759,24671
+81760,27546,76465
+81761,19275
+81762,73349
+81763,50837
+81764,78139
+81765,2756
+81766,30207
+81767,30788
+81768,61307
+81769,78245
+81770,18034
+81771,80092
+81772,31945
+81773,11709
+81774,18829
+81775,11927
+81776,16946
+81777,69109
+81778,68413
+81779,59607
+81780,51055
+81781,26088,29172
+81782,6587
+81783,75601
+81784,22144,57893
+81785,29239
+81786,14717
+81787,36437
+81788,1768,26125
+81789,74422
+81790,47078
+81791,29681
+81792,55232
+81793,21639
+81794,29541
+81795,78007,7266
+81796,171
+81797,48900,7758
+81798,62466,61020,57531
+81799,69469
+81800,25797
+81801,19519
+81802,60190
+81803,22461
+81804,11098,14837
+81805,71604
+81806,54368
+81807,13883
+81808,79245
+81809,71147
+81810,5057
+81811,22554
+81812,53130
+81813,54927
+81814,10844
+81815,70530
+81816,68390
+81817,30225
+81818,10399
+81819,58712
+81820,64755
+81821,72597,19656
+81822,33610,25994
+81823,57331
+81824,61429
+81825,40298
+81826,65143
+81827,78470
+81828,38032
+81829,49689
+81830,40506
+81831,62094,43879
+81832,46696,76138
+81833,3969
+81834,10111
+81835,19415
+81836,74023
+81837,658
+81838,41924
+81839,19141
+81840,71791
+81841,81333
+81842,24563,51534
+81843,77497
+81844,42977
+81845,73518
+81846,78206,23361
+81847,38338
+81848,51675
+81849,62433
+81850,38327
+81851,52962
+81852,78834,49630
+81853,59920
+81854,72364
+81855,18502
+81856,29844
+81857,9727
+81858,68828
+81859,19944
+81860,51297
+81861,11889,45981
+81862,14755
+81863,59996
+81864,79534
+81865,63667
+81866,12988
+81867,1181
+81868,33873
+81869,73458
+81870,32937
+81871,13600
+81872,33309
+81873,25739
+81874,50565
+81875,18877
+81876,38733
+81877,69202
+81878,22103
+81879,31016
+81880,66864,36243,4847
+81881,62195
+81882,39252
+81883,3635
+81884,23133
+81885,17108
+81886,51259
+81887,1793
+81888,76184
+81889,26200
+81890,12643
+81891,10106
+81892,28068
+81893,5904
+81894,65794
+81895,41244
+81896,78386
+81897,46503,25091,71615
+81898,6546
+81899,54897
+81900,48968
+81901,27951,20485
+81902,51164,57497
+81903,1042,70005
+81904,51500
+81905,37708
+81906,44578,4573
+81907,65681
+81908,53021
+81909,74018
+81910,25079
+81911,70595
+81912,67147
+81913,27561,73031
+81914,34442
+81915,74051
+81916,45022
+81917,40845
+81918,57192
+81919,13879
+81920,27417,5317,36944
+81921,49391
+81922,22695,48162,42824
+81923,65884
+81924,81726
+81925,81341,66964
+81926,69305
+81927,15502
+81928,22469
+81929,49956
+81930,3969
+81931,71527
+81932,41058
+81933,37379
+81934,12682
+81935,58472
+81936,55781
+81937,33808
+81938,68290
+81939,71273
+81940,4733
+81941,7526
+81942,22858
+81943,36543
+81944,3621
+81945,63200
+81946,13624
+81947,4912
+81948,38286
+81949,15533,65133
+81950,34214
+81951,37982
+81952,59936
+81953,65841
+81954,19740
+81955,42709
+81956,7362,35903
+81957,41813
+81958,31669
+81959,33944,58248
+81960,21433,19830
+81961,13873
+81962,40054
+81963,38168,80202,39981
+81964,35911,35096
+81965,20585
+81966,5732,38928
+81967,53585
+81968,50038
+81969,56208,254
+81970,14684,7579
+81971,42719,18968
+81972,40984
+81973,4793
+81974,10253,50761
+81975,65148
+81976,35932
+81977,78544
+81978,46578
+81979,57134,64586
+81980,51760,11732
+81981,39026
+81982,35502
+81983,25939,28982
+81984,19608
+81985,66647
+81986,77493
+81987,25969
+81988,66288,54927
+81989,33927
+81990,35829
+81991,29136
+81992,36956
+81993,76539
+81994,14559
+81995,24418
+81996,39090
+81997,50748
+81998,12649,76333
+81999,75912
+82000,2425,72123,47102
+82001,51205
+82002,81571
+82003,58725
+82004,21829
+82005,43570,23035
+82006,25001
+82007,46348,62064
+82008,27256
+82009,62204
+82010,5051,8644
+82011,61647
+82012,61267
+82013,19876
+82014,48215
+82015,10043
+82016,15336
+82017,71691
+82018,23226
+82019,578,12623
+82020,5559
+82021,7107
+82022,81689
+82023,54731
+82024,49428
+82025,78399
+82026,64367,43328,5292
+82027,1267,46240
+82028,41924
+82029,13030
+82030,80732
+82031,43336
+82032,74453,20639,28129
+82033,52648
+82034,4628
+82035,18317
+82036,31839
+82037,77703
+82038,82035
+82039,68739
+82040,18900
+82041,4364
+82042,72794
+82043,9342,37060,39
+82044,27340
+82045,16633
+82046,11767,52719
+82047,59622,25519
+82048,4458
+82049,70096
+82050,35191
+82051,57515
+82052,2355
+82053,18012
+82054,66146
+82055,74749
+82056,13839
+82057,70480
+82058,35311,28143
+82059,3660,48341
+82060,38013
+82061,59352
+82062,59196
+82063,15654
+82064,43889
+82065,22133,54613,56036
+82066,49082
+82067,9976
+82068,12472
+82069,17611
+82070,44870
+82071,7221
+82072,33020
+82073,47579
+82074,30320
+82075,794
+82076,67210
+82077,76674
+82078,52348
+82079,60556
+82080,27138,29155
+82081,23724
+82082,51896,7769
+82083,64268
+82084,50460
+82085,42736,18446
+82086,47890,7756
+82087,70961
+82088,69810
+82089,46910,33073,43
+82090,62181
+82091,81157
+82092,49946
+82093,17573
+82094,69244
+82095,2350
+82096,75843
+82097,2431
+82098,2399
+82099,24277
+82100,62381
+82101,77579
+82102,41540
+82103,20108
+82104,59168
+82105,66388
+82106,26384
+82107,21197
+82108,36780
+82109,35902
+82110,43785
+82111,32204
+82112,72649
+82113,66906,47144
+82114,53054,36936
+82115,7195
+82116,36935,20874
+82117,19890
+82118,20405
+82119,52333
+82120,39761
+82121,53012
+82122,72998
+82123,20365,27285
+82124,57584
+82125,80393
+82126,47108
+82127,62145
+82128,51145,28633
+82129,9711
+82130,1726
+82131,8950
+82132,27060
+82133,9947
+82134,36341
+82135,36977
+82136,16190
+82137,55546,52352
+82138,1119
+82139,14114
+82140,64274,11867
+82141,67678
+82142,73233
+82143,37470
+82144,35867
+82145,79481
+82146,77195,48964
+82147,13240
+82148,20863
+82149,9451
+82150,8856
+82151,26991
+82152,39996,33028
+82153,9394
+82154,7692
+82155,75687
+82156,75743
+82157,9108
+82158,56223,68778
+82159,26514
+82160,78085
+82161,3975,11291
+82162,22028
+82163,23141
+82164,66620
+82165,9398
+82166,22925
+82167,63898
+82168,36365
+82169,67791
+82170,51285
+82171,62365,44409
+82172,74927
+82173,62220
+82174,56246
+82175,33683
+82176,6227
+82177,34770
+82178,35783
+82179,2740,32850
+82180,72072
+82181,49516,61783
+82182,26865,48907
+82183,11270,28120
+82184,52654,47289
+82185,62096
+82186,78440
+82187,38979
+82188,55868
+82189,39534,1738
+82190,43045
+82191,2016
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms11AmbiguousAncestor.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms11AmbiguousAncestor.txt
new file mode 100644
index 0000000..6afb738
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms11AmbiguousAncestor.txt
@@ -0,0 +1,12 @@
+0,1
+1,2
+3,4
+4,2
+5,4
+6,5
+6,7
+8,7
+9,8
+10,9
+0,10
+7,2
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms200K.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms200K.txt
new file mode 100644
index 0000000..2ad1903
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms200K.txt
@@ -0,0 +1,82192 @@
+0,6238,52883,58360,12536
+1,22787,3690
+2,59189,7485,22798
+3,37973,25751,25046
+4,46046,68868
+5,40134
+6,54207,20403,18652,13190,7058
+7,21885,4191,14966,79269,40632,14760
+8,652,66760
+9,57985
+10,80096,30640,45242
+11,3595
+12,34867
+13,38278,6176
+14,6093,22478
+15,37619,41234
+16,8671,61965
+17,30487,6987,68353
+18,32193,57586,79475
+19,67370,59331
+20,74145
+21,59471,72881,50748
+22,78333,81363
+23,28199,25721
+24,38840,57343,71529,37411,58664
+25,46823,14385,44985,19474
+26,38583,57363
+27,81118,70132
+28,77312
+29,49085,69286,78651
+30,28893,58386
+31,72654,70949,61169,57906,10532
+32,51901,6608,56537
+33,4156
+34,73909,59599
+35,11130,17912,39327,30173,26078
+36,26301,58659,19443,78902,41296,2414
+37,20898,15562,49450,44840
+38,16167,72978
+39,54936
+40,69810
+41,62361,23961,66798,13921
+42,66593,4658,22211
+43,67451,42883,47793,57565
+44,53383
+45,46321,25402
+46,53371,31578,10504,44590,24877,1594
+47,51433
+48,57581,25189,42772,43749
+49,63122,69165,68313,60359
+50,12187
+51,35920,72882,54220
+52,67720,55353,49584
+53,28817,19463,37879,53410,81459
+54,23243,66524,1329,65361,23156,44956
+55,74688
+56,28696,52392
+57,60184,63493,79004
+58,80220
+59,48835,61062,53039,28686
+60,33612,39650,66847
+61,9883,51196,29869,11940
+62,15127,19093
+63,10629
+64,36002,4223,9915
+65,44728,49354
+66,80457
+67,30335,55097
+68,4920,5575
+69,81846,59304,29525
+70,37680
+71,70770,30700,41820,53947,36823
+72,16568
+73,12448
+74,73982,4988,12048,35609,46113,39794
+75,26939
+76,80879,44306
+77,69079
+78,63813
+79,65833
+80,81393,11264,56949
+81,78018,31082
+82,4723
+83,32871,80011
+84,43353,68584,18127,1788,42583,64899,72462,57827
+85,1620,10268,53257
+86,5549
+87,47900,72277
+88,78133
+89,19291,32234
+90,64110,35645
+91,15066
+92,24222,38784
+93,4214
+94,10103,16074
+95,80512,8671,978
+96,21219
+97,4331,47911
+98,81639,63224,7549,28309,59483,73913,29202
+99,60752
+100,50023,21142
+101,12930,30484,57919,33169
+102,67091
+103,35563,28619
+104,35374,37800,16733,49810
+105,6302,46487
+106,9886
+107,27029,42727,12903,77977,40745,48043,16178,18818,61336
+108,57589,68125,30605,5894
+109,78079
+110,69018,10503,8256,10023,40188,27159
+111,76502,1313,77562
+112,48963
+113,61051
+114,57549
+115,16764
+116,6987,7281
+117,36776,27423
+118,54851
+119,44023
+120,61394,5604
+121,42552
+122,55930,55838
+123,67768,21534
+124,67565
+125,37862,59971
+126,58798
+127,54130,46780
+128,76276,11231,46197
+129,67785
+130,14489,38136
+131,7856,53210,41,14299
+132,69972,18369,17331,8926
+133,49789
+134,7124
+135,79687,22549
+136,26397,47654
+137,45984,1403,379
+138,29721,22888,19480
+139,8600
+140,44308,28274,61954,70127,3296
+141,32896,15592
+142,36958,71377
+143,62558
+144,1490,27110,3394
+145,24692,76685
+146,26038,14769,67312,23268,24012
+147,30166,26571,57431,67445
+148,30928,80214,50882,79920
+149,63726
+150,16565
+151,65611,60597,70650,45997,13573
+152,68067,29224,39626,26991
+153,73705,35728,64486
+154,35001,6840,5890,42907
+155,40499,51069,10600
+156,46090,20073
+157,16431,48710,3758,48693
+158,75161,17109
+159,38422
+160,4620
+161,21225,43537,81810,26558,64252,34461,6425,28805,12458
+162,10857,40740,21718
+163,63439,70249
+164,2746,11076,2489,40730
+165,53327,61065,62803,38329,64914,60673,30804
+166,49589
+167,32868,6602
+168,65711,7988,26608,19605
+169,13216,69055,47913,9881,4648,59949
+170,38822,33907
+171,63750,81159
+172,45800
+173,71154,77500
+174,24696,56413,30788
+175,22003,738,22410
+176,62631,61208,75013,77690,46863,22197
+177,79281
+178,7809
+179,66508,51458,67668
+180,11900,20962
+181,60894
+182,12423,26678,26786
+183,738
+184,41858
+185,80413,4279
+186,20442,78131,70556
+187,52504,42552,9524
+188,60075,11756,1949,4157,51735
+189,52489,72217,56474,72884
+190,65010
+191,32319,18913
+192,57129,73210
+193,33249,22595,54828,54518
+194,41422,22785
+195,73428,52190,56871,36610,5754
+196,51000,32840,16598,18272,63605
+197,22593,62546,66138,57672
+198,33381
+199,73570,29655,5415,15603,63897,49587,18488
+200,15690,39962
+201,7755,22026,39787,8757
+202,44059,52391,30692,70986,9310,34561
+203,751,5841
+204,56178,48015,22110
+205,20109,15545
+206,31468
+207,30074,12264,42966
+208,53621
+209,49511
+210,52365
+211,5916
+212,20441,68919,75031,8488,10344,50016
+213,47960,27941,4436,55254,65699,48132
+214,77985,29084,19044,5725
+215,35819,33824,73527,33060,16069
+216,34214,30987,74121
+217,2519,10018
+218,76673
+219,35420,13224,37757,37196,51075
+220,55674,71772,59540
+221,44897
+222,39446,8454,2568,65996
+223,47544,5890
+224,68249,24351,71103
+225,27339,74518
+226,61113
+227,37348
+228,13460
+229,40483,70896
+230,75888,4925
+231,50351,79814,52857,49740,4434
+232,28695
+233,69665,35969
+234,45371,7555,55657,32178
+235,10424,2072
+236,73017
+237,70235
+238,24375
+239,25923,60059,15183,24616,78133
+240,41648
+241,68661,26660,37615
+242,48786,47178,78977
+243,8917,22823,17345,2268
+244,34625,56795,54511
+245,8520,75266,33273,62380
+246,31609,77360
+247,13808
+248,66843
+249,33751
+250,37947,66290,21530
+251,53491,30371,18881,44081
+252,82088
+253,49059,66875,10736
+254,57469,45586,14103,30916,47476,42058
+255,60443
+256,54594
+257,12222
+258,61893,25188,21136
+259,6887,370,64462,55307,43849
+260,24627,68248,71290
+261,48601
+262,43143
+263,75889,67147
+264,29171,44261,14586,11485,75568,8558,80883
+265,36163
+266,55512
+267,63006
+268,33364,77413,65379,50607
+269,18554,47259,14991
+270,18184,59449
+271,22337,75084
+272,69345,40184,77463,38165
+273,64960,71780,12314
+274,20032,738
+275,26450
+276,79145,62179
+277,61285,60735
+278,57905
+279,57644
+280,74479,30846
+281,7969,57150,45665,20750,60271,52107
+282,41739
+283,15948,3845
+284,2657
+285,9833,28430,54548
+286,58440,52429
+287,49944,19665,22714,40705
+288,80805,2337,53762
+289,42498
+290,49589,45609,27666,55394
+291,64635,26391
+292,22313,63455
+293,53118
+294,59406,14502,80638,1970,36897,21607
+295,57675
+296,48142,26366,81809
+297,34029
+298,28604,57238,3255,48478
+299,46537
+300,64821,79827
+301,8919,11647,4974,26853
+302,22405,69012,17408,62284,53962
+303,78927
+304,53879
+305,31467,28859,47033
+306,6367
+307,35392
+308,4868,81242,14186,80707
+309,4539,28974
+310,769
+311,73161,53764,31178,30184,41730
+312,13546
+313,59201,67283
+314,3513,63331,73471,18493,78138,5093
+315,67636,47641,52502
+316,68163
+317,70901,75530
+318,18691
+319,8773
+320,30589,38209,37906
+321,16109
+322,12486,17413,77267,59746,25354,53677,39626,9152
+323,3611,36991,71283,78218,57944
+324,81151,78571,78381
+325,36984
+326,77415,81170,6390
+327,76631,37373
+328,45445
+329,7894,59336,67819,48523
+330,38104,9656,10825
+331,5553,23838,39162
+332,47415,2244,59842,51936
+333,15961,66085
+334,58706,3276,30950
+335,80576,2385,80542
+336,19779,29083,17718,81766
+337,8647,5360,72803
+338,33615
+339,53478
+340,45654
+341,32019
+342,45610,61034
+343,35541,25260,50040,11837
+344,5341,81665,38596,4307,14672
+345,29102,12821,8846
+346,46397
+347,9300,61457,24705
+348,62816
+349,18700,40584,12929
+350,73544,14769,2881
+351,7008
+352,54426,6388
+353,19490,77401,66304
+354,25528
+355,75763
+356,54813
+357,80031,49625,58295,45705
+358,4869
+359,2945,69662
+360,12594,7260
+361,4496
+362,76702,65930
+363,28801,53299
+364,36463
+365,38890
+366,13780
+367,10138,2367,68856,30465
+368,28412
+369,74647,2994,16021,26433,31691,16301
+370,28203,63257
+371,74494,81640
+372,53205,49780
+373,36763,33367,15450,7777
+374,37070,48741,34767,27613,17668
+375,58252,265,30481,43524,38497
+376,30784
+377,23757
+378,60268,81896
+379,20657
+380,19947
+381,69858,16044,11705,9737,81700,73277
+382,73841,61601,12224
+383,48351,19949
+384,77395
+385,5430,81161
+386,3814,62973,13135,49016,21580
+387,22559,6947,21401,50918
+388,11355,24245,27652,64265
+389,49747,34798,16945
+390,14693
+391,35087,45879,34663,72660,67544
+392,53630
+393,42211,48146
+394,79148
+395,50261,37172,20319,12964
+396,51810,29097
+397,37390,22716,45179,31056
+398,70772
+399,46403,80175,10198,48385,48387
+400,44087,27666,13471
+401,54699,43884
+402,54447,68869,72062,79318
+403,9157,65352
+404,24033
+405,48894,79245,17725
+406,649
+407,66561
+408,43145,42874
+409,6425,5209,25961
+410,2014
+411,51568,29226
+412,51216
+413,32772,57981,10285
+414,54391,59156
+415,39218,68323,55853
+416,40262,13107
+417,3333,6280,20337,35607
+418,4445,25468
+419,36474
+420,41583,58430,74205
+421,28372
+422,36546,49125,43694,35320,70496,60725
+423,66206,14095,70935,56403
+424,44871,64729
+425,74791,35739,68960,48027
+426,31477,67047,59853,46742
+427,45219,27376
+428,36360,78259
+429,11370
+430,18726,73452
+431,5790,79140
+432,20235
+433,21155,68935,65432,37583,58831
+434,39487,22826
+435,61274,12274
+436,81149
+437,21569,46816,27312,68778,235
+438,25649,77694,26589
+439,58844,5052
+440,17351,29611,55311
+441,75804,71168
+442,1268,13548
+443,2130,81910,9764
+444,16781,65983
+445,63299,28226
+446,71615,12638,65862,422,36034
+447,55352,72454,35959
+448,1628,12821
+449,1679
+450,22828
+451,14186
+452,13522,67720,42178
+453,80455,71613,36071
+454,60142,30201,12529
+455,39996,7681,71535
+456,29569
+457,67737,37764,66796,61082,53178,119,59533
+458,62161,41047,18478,41960
+459,21361,30509,82145,79577
+460,11181,19269,6353
+461,30130,74200,41497
+462,68839
+463,7477,28852,81098,32928
+464,82165,20915,69817
+465,40908,66155,37966,5048
+466,67300
+467,67855,59637
+468,45427,77909
+469,44181,77774,65300,75015
+470,3738,51068,19807
+471,23812,27019,45132
+472,38363,77656
+473,2774,46308
+474,2808
+475,21038,69811,65363,13295
+476,77324,8184
+477,54904
+478,10502,79400,10115
+479,70599
+480,54366,52018
+481,68847,57930,61339,67322,67477,16387,2146
+482,1988,59418,70515,50781
+483,52693,78620,23318,46081,29922
+484,7376,69346,50897,70379,52012,71338
+485,14095
+486,14120,52068
+487,59687,52745
+488,67096
+489,33956,40108
+490,57828
+491,8195
+492,19383,14352
+493,78526
+494,27540,20945,48148
+495,76389,12099
+496,58706
+497,20946,67075,34252,10452
+498,31436
+499,25201,77357
+500,10206,49794
+501,12450,56068,49021,9328,53129
+502,46130,71195
+503,21017,24253,5697
+504,57514,36681
+505,58446,68325,27930,28336
+506,52623
+507,77026
+508,74266
+509,61561,32313,6373
+510,36680
+511,14084
+512,19612,62845
+513,27026,5530,2998
+514,51217,9716,36038
+515,70794,74693
+516,70888
+517,24851,3045
+518,43972,82123,38528,4254
+519,18984,55756
+520,31989,75155,5658,45634,65389,47206
+521,4494
+522,74289
+523,43196,10170,23264,77199,19636,2071
+524,23074
+525,73366
+526,20487,33248,50062
+527,33331,38748,66005,31278
+528,53999,65503,11681
+529,36181
+530,43607,28987,17769,80161
+531,46188
+532,16685,13754
+533,71173,49110
+534,65699
+535,22400,32153
+536,31262,40541
+537,3729
+538,74340
+539,18468
+540,29107,69679
+541,59830
+542,51284
+543,56485,54307
+544,7767,22801
+545,78435,46986,75485,80687
+546,64454,69080
+547,73202,19871,20174,54753
+548,67316,63140,80563,30434
+549,35641
+550,68316,80383
+551,70516,58159
+552,15502,58263
+553,41978,70843
+554,51450
+555,15156,687
+556,19085,28849,75681,33634
+557,22432,17689,20016,27658,67500
+558,14307,61683,42238
+559,60884,68195
+560,59593,7351,36690,41055
+561,28549,37598,57327
+562,81942,19804,71904,67964
+563,70779,48107,7368
+564,26986
+565,29723,42640,19176
+566,31038,26939,20794
+567,50060,56622
+568,2683,21596,67705
+569,33009
+570,25741,41476,81863
+571,26513,77724
+572,64658,54834,24230
+573,54519
+574,432,78010
+575,27710
+576,11665
+577,2166,5604,47010,79506
+578,53252
+579,2614,53223,77729
+580,7810,25456
+581,52972,73668
+582,49112
+583,18427
+584,24818,16636,8449
+585,39305
+586,81703,71487
+587,37404,12056
+588,28101
+589,81011
+590,58832,16511,17199,66380,8470
+591,20288,60658,43824,46408
+592,16041,19462,44470,18009,56458
+593,42354,47685,9544,11734
+594,17861
+595,3066,56943,77453
+596,64196
+597,19715
+598,64931
+599,19983,29532,43773
+600,11271,25925,35869,16162
+601,39723,14585,33923
+602,44609,75942
+603,60132,38651,38430
+604,39316,18213,70896
+605,49738,26519
+606,58455
+607,71852,36068
+608,53041,78426
+609,45949,51613,76368,13878
+610,31241
+611,25611
+612,32481,64519,73240
+613,70422
+614,31593
+615,9656,19108,66621
+616,32321,11295,72278
+617,15852,25446,31708,38569,35177
+618,78742,61838
+619,67608,62093
+620,60823,62659
+621,3730,46571,43243
+622,10805
+623,35388,39731
+624,37291,46698,5977,46483,43257
+625,59863,66277
+626,68451,47142
+627,54920
+628,59193,15090
+629,67228
+630,67197
+631,14343,8941,12096
+632,59580
+633,1919
+634,1671,57123,63398
+635,31444,45157,76543
+636,64765,21463,15321,204,50515
+637,53274,23659
+638,73361
+639,50267
+640,41427,78249,47450,51094
+641,8149,19653,59353,420
+642,13632
+643,4599
+644,73533,29133
+645,8017,39752
+646,10943,23880,58267,61279,51111
+647,23403,73613,4768
+648,40559
+649,39409
+650,21249
+651,22990,34588
+652,81141,7569,31755
+653,69363,10337
+654,551,73831
+655,50742,25604
+656,24010,29120,54438,23146
+657,18232,38717,12848,2526
+658,26316,55142
+659,54428,61504
+660,29338,22005
+661,41793,1971,33468,39276,45033
+662,24533,34502
+663,67071,37409
+664,37118,48631,37150
+665,64652,13792
+666,23849,38844,66939,76260,67062
+667,55455
+668,29497,78748
+669,79185,48711
+670,13297,732
+671,40940
+672,14904,52744,9443
+673,35876,45640,67536
+674,48640
+675,46915,5875,32695,23683
+676,67270,39131,19230,58247
+677,31233,32196
+678,80110,78595
+679,64579,14401,34381,50938,44126,44986
+680,32280,41089
+681,62247,2368,75485
+682,22311
+683,19714
+684,29855,18385,41778,23647
+685,40588,1803
+686,65005
+687,64550,19648,7936,49216
+688,27642,574,72335
+689,27864
+690,38985,59062,51332
+691,27593,41542,63725
+692,47827,9765,54748
+693,27304,7124
+694,62737,537
+695,3159
+696,6713,80485,17831,33495
+697,40763
+698,36843,58221,33868,64090
+699,75165,52522
+700,25289,4164
+701,25254
+702,61921
+703,67962
+704,43665,71388
+705,22136,47253,50321,55287
+706,54518,44821
+707,61188,39556
+708,75183,1553
+709,81533,24320,6608
+710,60472,34883,6241
+711,10639
+712,57573,67197
+713,70142
+714,34693,79367,31760,15024
+715,79734,35139,67337
+716,39609,45890,38769,73911
+717,38747,19947,66287,45878
+718,70331
+719,32578,75985
+720,70355
+721,42569,5027
+722,80224,76321,60313,17996,48651
+723,37709
+724,76272
+725,10541,27401,31759
+726,29672,74014,17342
+727,9126,72473
+728,41422
+729,29412,44201,15072,21726
+730,14083
+731,65853,8687,71996,31528
+732,25569,21346
+733,4685,75966
+734,28680
+735,9600
+736,27386,18597
+737,64000
+738,31082
+739,30448,18473,61870,16778
+740,40344,53366,76352
+741,40679,44318,58804,71317
+742,78157,40385,58135
+743,41872
+744,12005
+745,10682
+746,73541,44998,71599,28895,10175
+747,48392,59407
+748,45474
+749,6027,49814,59324
+750,74776
+751,41041,20306,81703,39380,56065,81203
+752,14363,14951,18195,58351,6123,46425
+753,38171
+754,49105,52360
+755,15569
+756,52371
+757,48294,15719
+758,68457
+759,26436,10897
+760,36845,57165,51129,20782
+761,49029,32825,58789,65244
+762,72487,8568,6404,10476
+763,55878
+764,10411,28886
+765,20372
+766,8496,3480
+767,80540,20455
+768,11197,1419,74391
+769,12421
+770,5274,68882,67316
+771,69762
+772,36054
+773,26484,1409,37583,56354
+774,13045,18660,18907
+775,19808,33230,69654,52533,77924,72624,134,19414
+776,32659
+777,78010
+778,75666,49932,57477
+779,65414
+780,11086,80973,30535
+781,79681,63391
+782,57656,63736,57637
+783,59784
+784,80904
+785,70086,24611,14320
+786,43500
+787,12112,57898
+788,5625,75794,4787
+789,10939,61836,36295
+790,50110,46146,9026,71950,14400
+791,1620
+792,44049
+793,48407
+794,10966,14320
+795,74084
+796,76885,54177,70241
+797,72293,44384
+798,52109
+799,32660
+800,37742,31345,79333
+801,42390,37092
+802,16878,77717,37414,40114
+803,24366,40316,72445,32258
+804,36239
+805,2314,71463
+806,58716,54448
+807,39255,71815,10562
+808,62463
+809,74494
+810,79258
+811,41074,4343
+812,49946,15549
+813,1540,48841,44451,38176
+814,45665,69836,64086,33713
+815,40618,6929,44354
+816,34536,32864,28132,63727,1559
+817,262,54558
+818,36390,30766,78821,17173
+819,74414,77308
+820,10574
+821,75793
+822,34198,11312
+823,52585,6987
+824,35681
+825,31107,31742,29017
+826,58121,40313,53806,30439
+827,47010
+828,59042
+829,9564,36217,49728,6272,45392,5495
+830,63968,7074,41613
+831,31833,55810,24941
+832,46844
+833,71931
+834,62627,26743,24055
+835,39148
+836,12681,43447,37060,23345
+837,21378,49916,1221,56979,55205,72672
+838,40920,75313
+839,34143,36472,7467
+840,37988
+841,24395,12176,58126
+842,54394,30149,22135
+843,20939
+844,44368,44115
+845,27967,29373,81409
+846,58722,76521,51768
+847,58801
+848,77493,19911
+849,80934
+850,76878,35618
+851,28591,38017,32716
+852,8821,23706,77566,44819
+853,14561,74780,39745
+854,50083,14103,29212
+855,31996,52188
+856,80091,47023
+857,11547,46157,24147
+858,5242
+859,2569,51111,81101,76705,4383
+860,67147,47853,8454,43092
+861,7640,69368,49793,74160,3261
+862,22078,62438,25257,62421
+863,31528,36917,52166
+864,8341,8642
+865,24407,53059,66444
+866,15091,66653,1042,3371
+867,63580,73601,46274,50295,9466,25929,53140,44167
+868,26119
+869,40101,41952,12544
+870,15902
+871,40713,68279
+872,71463,65653,7475
+873,70477,27276,16272,22175,12414,38126
+874,28736
+875,4444,74257,72335
+876,52521,19398
+877,19980,22785,17211,6617
+878,67397
+879,33479,24212
+880,79545,64705
+881,74361,7478,59754
+882,49386,35434,24216
+883,16774
+884,18779
+885,26750,23523,35549,47334,58246
+886,36923,59580,75780,8057
+887,63622
+888,47429
+889,24095,19385,21190
+890,2833
+891,69693
+892,15520
+893,30015,44822,53946
+894,33198
+895,52025,3331
+896,41966
+897,43943,6499,33137
+898,78558,45838
+899,6627,35992,39974,74697,17272
+900,52295
+901,12732,46308,13860,28529
+902,529,45374,55781
+903,60,71309,45721,42491
+904,80365,44233
+905,1534,529,26433
+906,30523
+907,19657,49060
+908,81806
+909,46481,21334,42068,22410,46392
+910,69550,4841
+911,74121
+912,38033
+913,68317,61595
+914,26158,22128
+915,61975,54216,17204,33545
+916,29741
+917,25559,34087
+918,53467,81655,75521,5068
+919,79886,5177,32497,6590,72666,48104
+920,11967,2945,44412
+921,25569,60753
+922,81251,31769,18109,41987,38380
+923,11717,20693
+924,25751
+925,41124,34551,4871
+926,9471,14197,68251,12340,65521,5057,2620
+927,20465
+928,70940,69081
+929,79327,68605
+930,27500,81696,9780
+931,64965,45002,39353,43924
+932,31734,65410,6525
+933,30252,31109,586
+934,31320,512,42326,14250
+935,21844,77975,58931
+936,61610,70078,9041,18924
+937,27790,38659,53313
+938,52998,46594,63355,7385
+939,36013,13590
+940,77236
+941,20898,28093
+942,74753
+943,39959,35261,49035
+944,19673,37383,66906
+945,1553,54442,74061,20819,57874
+946,43293,13135,16305
+947,37675,54712
+948,48335,21216,36812
+949,73718
+950,51235
+951,75776,68149
+952,80680,68422,5265,80511,75085
+953,10908,18202,63698,59331,54990
+954,5935,17189
+955,42493
+956,30050,54939,60411
+957,12177,40786
+958,11202,22804
+959,18895,73360
+960,26168
+961,36292
+962,8193,77487,50636,11916
+963,33880,57138
+964,41390,44623,48665
+965,3571,49740,16505,21680,31000
+966,62474,73998
+967,43326,37560,6542
+968,10815
+969,68516,7480,8944
+970,58086
+971,43487
+972,63042
+973,72332,40639,10680,77994
+974,2439,24263,76770,46481
+975,6772,16443,67175,8451,35428
+976,31603,28952
+977,60340,1447
+978,2391,39128
+979,56312,65944,28069,79886
+980,52352
+981,44783
+982,65030,52725,77235,27920,62068
+983,52185,28270,30311,77838
+984,18745
+985,19994,26377,80604,80588
+986,30689,23360
+987,47754,33840
+988,19510,40960,51851,42327,66364
+989,63284
+990,17678,47121,74614,43265
+991,49599,38658,77982,29758,58943
+992,43463,77555
+993,60210,51363,81728,64480,73724,53123
+994,34972
+995,71037
+996,67122,76806
+997,81201,79866,27925,35701,78906,8311,75577
+998,20210,28777,78777,1371,48985
+999,70810,57573,15723,63371
+1000,47879
+1001,31687,1658
+1002,16031
+1003,19074
+1004,57131,76708,37781
+1005,1960
+1006,18336,50318,56802
+1007,61079
+1008,74019,8127
+1009,75330,7279,66862,24187,32946,6885,14929,6016,21220
+1010,63892
+1011,64713,10898
+1012,67607,55028,27439
+1013,496
+1014,52163,58721
+1015,80200,26723
+1016,8456
+1017,71164
+1018,6511
+1019,16313,31596,40165
+1020,4428,41897
+1021,66223,7641
+1022,69912,27573,48894
+1023,72964,16563,7743
+1024,191,68077,52411,8942,45635,75322
+1025,6249,10958,44949,55422,30241
+1026,31458,54519,8640
+1027,27067,4051,56014,26554,17301
+1028,59877
+1029,24225,2747
+1030,7360,5669,78897
+1031,74239,19980
+1032,19232,36709,32738,60159,20868
+1033,45344
+1034,48540,64848
+1035,22559,10339,90,63963,24629
+1036,32772,55886
+1037,30450,35803
+1038,51427,30729,46359,15132
+1039,23619,44649,25557
+1040,26630
+1041,56029,21143,67698
+1042,20770,63025
+1043,40960,73497
+1044,67507
+1045,61216
+1046,71339,7533,14729
+1047,62289,73377,53311
+1048,19786,12813,44631,73111,3865
+1049,41108
+1050,36559
+1051,19404,74200
+1052,60815,64420
+1053,63927,35778,2683,47801,54829
+1054,7853,21997,48337,11177,70649
+1055,30837
+1056,52047
+1057,42510,36208
+1058,54886,22095,41412,18619
+1059,29657,14278
+1060,13431
+1061,48887,59261,55140
+1062,44140,64941,1104,13085
+1063,48162,55519
+1064,68010,47507
+1065,63204
+1066,60071
+1067,38486
+1068,3685,37430,76386,695,28010,71628
+1069,68380
+1070,79992,21550
+1071,60359
+1072,21443,23788,45659
+1073,7544
+1074,22585
+1075,22660,56040
+1076,58086,66117,75169
+1077,56096,14941,75336,52,55480,48886
+1078,9960,25969
+1079,61538
+1080,32636,17461,63444,60445
+1081,19060
+1082,5398,18893,77615,77794,63363
+1083,52079,14944
+1084,26802
+1085,16427
+1086,49359,76289,2664,57491,25021
+1087,65146,24199,57709
+1088,39042,24201
+1089,68211
+1090,12836,67839,6132,27345,58756
+1091,12833,56241,61666
+1092,66424,5165,36023,74056,24096
+1093,15211
+1094,79140
+1095,16494
+1096,2684,62715
+1097,55533,25446
+1098,66164
+1099,19190,885,30669,47663,23245,30547
+1100,81159
+1101,54376
+1102,31983,43743
+1103,4754,72951
+1104,20625,33556,70287,26471,3031,252
+1105,81551,74409,23757,39184,65160
+1106,77963
+1107,54022,55523
+1108,44276,31733,10856,66290,25489,75926
+1109,42053,39695
+1110,11979,7571,36736,35401
+1111,52104,56240
+1112,54834,57733
+1113,44140,63138
+1114,43717,15139,61901,42903,47556
+1115,14791
+1116,60528,68930,10005
+1117,33352,69566
+1118,56015
+1119,52519,73739,41693,65721
+1120,36160,45286,39704,42410
+1121,65485,51096
+1122,72966,5039
+1123,45077,11824,41346,14601
+1124,29554
+1125,43274
+1126,27328,50760,11914
+1127,9918,17609
+1128,33771
+1129,7498,4380
+1130,4917
+1131,14598
+1132,37692,49713
+1133,18291,71618,9817,69176,41368,47716,65190,41824
+1134,76279
+1135,47569,41032,47572,35010,75130
+1136,28573,21418,27148,40626
+1137,23918,41116,29418,58499
+1138,64218,38623,47450
+1139,81043
+1140,45700,76987,34782
+1141,29058,38528
+1142,66980
+1143,31809
+1144,43189,16273,34764,37666,33742,41115
+1145,28898,72183,15167,42432,41956,25332,61861
+1146,1049,48658,58685
+1147,24940
+1148,46082,14438
+1149,70269,56974,467,59571,59278,13932,17096,59461,16560
+1150,23393,78352,72584,22644
+1151,14185,20591,55815
+1152,42274,19039,64247
+1153,19087
+1154,15223,58113,61283
+1155,58132,58896,63612,24944
+1156,1678,35109,23573,9383
+1157,12188,32930,42116,55795
+1158,30010
+1159,21143,60338,41493,7646
+1160,53373,56212,14293
+1161,18202,34072
+1162,19124,63838,80964,35398,41384,13402,74016
+1163,46685
+1164,16992,71702,71766
+1165,64467,75313,58070
+1166,76030,19163
+1167,59116
+1168,10719,60163
+1169,77469,9194,77983,68626,21490,50757,70467,72749,51235,70284
+1170,10524,19902
+1171,31539
+1172,34988
+1173,17331,51419
+1174,47658
+1175,55293,28764,54791
+1176,20132,5424
+1177,48015,9939,40483
+1178,31306
+1179,55022,81070
+1180,16377
+1181,48421
+1182,34479,41551,16736,17094,4033,36410
+1183,56931,65042
+1184,68313
+1185,27184,54151
+1186,12821
+1187,77086
+1188,34814,58368,18581
+1189,65210
+1190,18336
+1191,79060,58300,78747,56540,68012
+1192,80233
+1193,56185,74439,75172,18502
+1194,47908
+1195,9860,26756
+1196,1407,13262,21612
+1197,63814,22022,75591
+1198,59146
+1199,38824,11400
+1200,29336
+1201,9466,80170
+1202,15476,76199
+1203,68612,32557
+1204,63308
+1205,11331
+1206,10451,76145,38310
+1207,29889,51536,35759
+1208,76262,56629,28515
+1209,5798,21860
+1210,52234,66825
+1211,29760
+1212,80463
+1213,15965,67968
+1214,29921,52937,30682
+1215,63980,37073,22657
+1216,73361
+1217,6796,47921,77387,58442,52503
+1218,1386
+1219,12764,817,45745,54351
+1220,80699,63566,11172,9133
+1221,43225
+1222,31491
+1223,34189,50126
+1224,14894
+1225,63483
+1226,21318,60223
+1227,39239
+1228,75353
+1229,59247
+1230,14315,55113,16577
+1231,46278,75559,80420
+1232,44647,13626,31276,74660
+1233,16112,27712,7567
+1234,7325,5670,31322,3800
+1235,59023,4643,23994,76675
+1236,52104,60222,63279,42846
+1237,72873
+1238,23738,3408
+1239,72963,17589,61216
+1240,28110,41013
+1241,34654,78909
+1242,24597,34812
+1243,71197,63701,34296
+1244,17573,13518,26969,16269,49461
+1245,36490,48826
+1246,77040,39731
+1247,2725,38753,47154
+1248,64601
+1249,68912
+1250,1813
+1251,20302,41420
+1252,43004,32245,8619,34158,39538,12940
+1253,54255,65268,64551
+1254,28280,17582
+1255,13864
+1256,50434,52031,44681,19770
+1257,66891,63794
+1258,36379
+1259,27336,28826
+1260,20625
+1261,36200
+1262,32162
+1263,54782,77757,81142
+1264,75253,22979,11187,9965,80201
+1265,26960,45244
+1266,18384,76725,1433,49197,8613
+1267,44025
+1268,23572,70276,56650,63002
+1269,60601,79372,39945,18387
+1270,37553
+1271,56711,30748
+1272,22923,30675
+1273,49206
+1274,30044
+1275,65229
+1276,26983,76418
+1277,48898,70998
+1278,62957,73422,60523
+1279,67316,69481,50683
+1280,46602,60606,35866,57688,52899
+1281,15131,27373
+1282,39344
+1283,68748,72822
+1284,49863,12417,69794,43376,25313
+1285,71665
+1286,77490,36579,59762
+1287,25075,4149,63367,6132,1089,24039
+1288,13663,3290
+1289,76227,68992
+1290,71832
+1291,1678,75226
+1292,52315,37143,41536,56713,8635,59502
+1293,56822,70251
+1294,40043
+1295,35873,81069
+1296,50671,1313,44125
+1297,28400
+1298,3032
+1299,35939
+1300,60424,61806,35351,37501,44640
+1301,39080,63609,67353,19679
+1302,63275,22438
+1303,32237,27530
+1304,42417,13338,53865
+1305,22291,54064
+1306,18154,38035,27587
+1307,1783,32849,25412
+1308,48701,67852,20125
+1309,72500,43211,30976
+1310,30886
+1311,38505
+1312,55822,19452
+1313,67823,2216
+1314,74196,28037,60442,3984
+1315,58490,25792
+1316,53189,18705
+1317,78514,4691,39445
+1318,79058
+1319,3150
+1320,58798
+1321,77710,61872,70692
+1322,38331,65856,60762
+1323,52654,18367,54294,37484
+1324,12627
+1325,31726,30212,11235,41488
+1326,37999
+1327,81709,69472,1006
+1328,31458,32354
+1329,56099,52180
+1330,34521,5186,9215
+1331,75213,77679
+1332,69276,76911,29428,49708,27237,6363
+1333,26332,8991,63019,12441,57845,19059,37134,53695
+1334,49848
+1335,81014,37486,40543,65906,81837
+1336,9255
+1337,71109,44389
+1338,69631,53267,75981,28674
+1339,81189
+1340,74940,58294,74518
+1341,36054,77474,32081,63724,5367
+1342,41196,22533
+1343,4156
+1344,26650
+1345,36188,27056
+1346,34856,24537,28705,81614,47112
+1347,51789,28034
+1348,21423,19655,57034,15222,20623,17713
+1349,35993
+1350,40596,15861
+1351,18193
+1352,68519,71547,46173,42312
+1353,7279,72993,36192,78425,65026,15870
+1354,33834,59414
+1355,41344,45178,2531,34615
+1356,49942,81623
+1357,36008
+1358,77675
+1359,68748,30445
+1360,38323,6561
+1361,7298,73133
+1362,39505,55515
+1363,35786,46450,69161,30482,35888
+1364,19470,40223,60061
+1365,27826
+1366,53533
+1367,68048
+1368,73906,79480,29853
+1369,33159,167
+1370,53439
+1371,7698,52487,22219
+1372,30642,46909
+1373,78615,22325,69786,61658
+1374,16815
+1375,9033,327
+1376,12303,42275
+1377,36205,19371,61989
+1378,29338,34970
+1379,53363
+1380,50191,42423
+1381,61988,79419,58368,13358,422
+1382,6979,81085,6968
+1383,48327,40483,81346
+1384,34054,26868
+1385,77754
+1386,8490,50867
+1387,75833
+1388,81959
+1389,74334,64420
+1390,45353,12775,57877,31906,1089
+1391,54215,10424,62590
+1392,20532,66026,57659
+1393,54715,54550
+1394,41773,76104
+1395,28352,12408
+1396,26225,21580,52186
+1397,39705
+1398,71542
+1399,29069,57510,19455,71721,14756
+1400,19028
+1401,66452,52979
+1402,59092,52413,61470
+1403,55346
+1404,12122
+1405,43024
+1406,73902
+1407,13296,78558
+1408,62014,48839
+1409,62410
+1410,23164
+1411,7529
+1412,15600
+1413,69793
+1414,81416,465,4341,61034,24399
+1415,70078,40756,28253
+1416,81703
+1417,35359,821,81290
+1418,32037
+1419,41410
+1420,35061,14413,12875,79109
+1421,38157,57690
+1422,8018
+1423,44787
+1424,64081
+1425,62644,21035,71140
+1426,47270
+1427,44449
+1428,1046,62071
+1429,32755,75388,1343
+1430,78548,66646
+1431,50759,69193
+1432,23029,37733
+1433,77723,58875
+1434,28330,30987
+1435,43226,68550
+1436,20885,49861,47015,27101
+1437,6898
+1438,5690
+1439,31034
+1440,25974
+1441,77189,67506
+1442,16150,68366
+1443,11701
+1444,17135
+1445,13588,2263
+1446,59222,66785,57196,14355,72827
+1447,16782,22974,28311,15522,46912
+1448,30894,32207,54387,38112,60893,66717,25033
+1449,38568
+1450,81111,46454,9041,50559,5245
+1451,8026
+1452,76897,5751,24524
+1453,888
+1454,26612,50218,41800,4008,13745,73406,81639
+1455,15462
+1456,46583,58735,13609
+1457,59406,33348,8060
+1458,17439,27253,45562
+1459,7241,8324,68500,58733,7185
+1460,7795,47284
+1461,26776
+1462,36211
+1463,33645,27532,12723
+1464,29415,14498
+1465,65237
+1466,73515,33202,26357
+1467,6714,21978,4536,17504,75193,3475
+1468,72335
+1469,6675,73866,69299
+1470,20032,27180,24784,58625
+1471,67866,13493,38458,11518
+1472,2808
+1473,7536
+1474,29648,58605,41662
+1475,42032,39353,17366,77547,72763,66558,71505
+1476,9081
+1477,16115
+1478,18858,40857
+1479,65226,34875,48488
+1480,45426,57566
+1481,15942
+1482,9021
+1483,31098,29598
+1484,6177
+1485,20008,47067
+1486,51165
+1487,71141
+1488,72202
+1489,33159
+1490,20178
+1491,15589,56608,55268
+1492,27216,18306
+1493,49609
+1494,52729,66244
+1495,74474,6265,19947,52305
+1496,52931,67980
+1497,34995,29801,34677
+1498,2996,76524,29763,36099
+1499,52618,27943
+1500,70347,24999,68607
+1501,34251,6941,19492,62467,71078
+1502,12511
+1503,51311
+1504,14489,22629
+1505,23653,49556
+1506,15297
+1507,23056
+1508,28478,19457
+1509,2023
+1510,72672,2537,53769
+1511,29431,24093,52570
+1512,46954
+1513,25576
+1514,61500,13137,54503
+1515,39316,34225
+1516,35358,11316
+1517,70459,15692,28550
+1518,50963,49068,47060,2554
+1519,14129,78668
+1520,23255,7968,62662,64475
+1521,22,80615,15719,52681
+1522,32660,65939,31989,18565,21376,13037
+1523,33102
+1524,67178,46640,33124,19863
+1525,57821,61129,19939,21226
+1526,16807,44217
+1527,61994,75099,65232
+1528,11441,68527,1697
+1529,63797
+1530,67006,32730,24941,59761
+1531,64033,4878
+1532,66058,17616,6301
+1533,6106,7654,26269,29561,41771
+1534,70365,47538,1911,68436,75377,5468,5489
+1535,3158,15503,24460,62330
+1536,52973,39079,39341
+1537,29283,18043
+1538,4199
+1539,27554
+1540,49458,14247,62097,12112,4716,23585
+1541,61468,64833,1405
+1542,55136,47677
+1543,16002,79400
+1544,39598
+1545,44715,58554,5948
+1546,6544,5206
+1547,43416,49228
+1548,35109
+1549,43115
+1550,54789
+1551,12624
+1552,68470,66808
+1553,65270,41144
+1554,10119,30856,61394
+1555,1462,47768,34781
+1556,81154,53113,20994
+1557,39255,12560,32921,72469
+1558,60473
+1559,7887
+1560,30849,16043
+1561,46437,81038,65393,52274
+1562,44342,36303,3755,16565,1312
+1563,63293
+1564,40588
+1565,28320,38919,7916,62188,26576,73741,14762
+1566,23163,47043,35604,52643,63252
+1567,46779,69706
+1568,64989,72338,61505
+1569,8563,64309
+1570,53064
+1571,66357
+1572,11406
+1573,20061,59944,38181,6835
+1574,7841,16414,69795
+1575,2161,1298,64868,29783
+1576,23992,6759
+1577,22853,57114
+1578,46866,10256
+1579,35786
+1580,16191
+1581,50330,9712
+1582,18138
+1583,78925,49698
+1584,29833,50566,13778
+1585,70548
+1586,76770,44358,69242
+1587,26171
+1588,4514,21750
+1589,26489,65437,6381
+1590,2747,55526
+1591,10988,55756,48681
+1592,63513
+1593,68057,74199
+1594,44213,28387
+1595,46751,44002,26795,39336
+1596,15304,80930,30229,40528
+1597,63142,56982,59157
+1598,79506,77472,44213
+1599,13205
+1600,9539
+1601,60152,74147,77536
+1602,10421,77667,43766,22929
+1603,51673
+1604,36466
+1605,22630,48683
+1606,17841
+1607,37447,11878,52262
+1608,57905
+1609,47298,22084
+1610,45583,59973,63378,44456
+1611,37398
+1612,23657,42552,75263
+1613,15137,27909,7074
+1614,6099,67996,57779,41574,26732,1970
+1615,70498
+1616,52759,44469,71411,55693,45974,5202
+1617,30774
+1618,24359,70206,1628,71461
+1619,27495
+1620,77250,50187
+1621,38725,82105,67413
+1622,11650,38516
+1623,23164,5971
+1624,3845
+1625,59791
+1626,10478
+1627,23722,565
+1628,34791
+1629,11737
+1630,77203,47891,53512
+1631,77604,28205,54668
+1632,45890
+1633,77057,65941,54635,76010
+1634,58572,81848,66681,63518
+1635,39360
+1636,62573,16976
+1637,36293,4752,21220,50473,41469,66814,69081
+1638,35566,45387,49433,56010,6246
+1639,36181,78346,43979,69542
+1640,50142
+1641,52184
+1642,45228,52467,52434
+1643,12867,81415
+1644,31017
+1645,81945,43163
+1646,66431,14310
+1647,2437
+1648,7195,78966
+1649,34280,68596,20607,21428
+1650,30127
+1651,48875,72734,47897
+1652,8386
+1653,57363,35798,64231,74524,74793
+1654,17502,41285,45196
+1655,15667,37559
+1656,12437,37569,58084
+1657,52980,9874,16568,45392,40317,65555,29475
+1658,59737
+1659,35907
+1660,66922,20424,14124,15968
+1661,15489,20987,10782
+1662,56004,8219,44941
+1663,59583,78780,44659,38510
+1664,30736,48822,1174
+1665,49315,17814
+1666,24552,81339,4484
+1667,51500
+1668,31935,65062
+1669,18544
+1670,79860
+1671,18001,22519
+1672,38771
+1673,38340,4853
+1674,47871
+1675,32064,19131
+1676,34385,9628
+1677,27038,14250
+1678,41008
+1679,65349,17018
+1680,23356
+1681,40350
+1682,12917,71426,52255
+1683,26618
+1684,38450,60176
+1685,56018,70048,78574
+1686,8526
+1687,18137,55617
+1688,73723,34186,17057
+1689,34971,35514,4265,77505
+1690,30063
+1691,72173
+1692,78468
+1693,17163
+1694,67968,1115,41199
+1695,75797,64856
+1696,66057,52836,70350,13739,26893,34448
+1697,10520
+1698,62456
+1699,9727
+1700,64716
+1701,36280
+1702,4977
+1703,51951,31519,31726,11972
+1704,58309,30232
+1705,21700,47061
+1706,79741,47237,1995,59138
+1707,32101,58472
+1708,10788
+1709,45279,26019,33251,20002
+1710,9438,80220,34361,6764,72647
+1711,36660,15023
+1712,22927,57833,40488,25032
+1713,33315,40327
+1714,73614
+1715,25327,57081,56991
+1716,24363,73146
+1717,34375,8501
+1718,67645
+1719,59252
+1720,48628,77891
+1721,1527,38627
+1722,18971,8053,66856
+1723,14420
+1724,8329,44186,46223,29433,64847
+1725,72173
+1726,50669
+1727,27848,70243,63813
+1728,13455,27056
+1729,3809,72884,355
+1730,79270,49814
+1731,21293,11159,44814
+1732,28074
+1733,47302
+1734,63231,20958
+1735,15952
+1736,52407,6987,38077,31945,34348
+1737,173,52280
+1738,32889,29570,16056
+1739,29326,73949,62448,57555
+1740,54756
+1741,76718,49307,68861,15636
+1742,36063,34609,71312
+1743,34857
+1744,20441,50477,12999,82171
+1745,26332,40414,60202
+1746,74422
+1747,8116,2900
+1748,59191
+1749,130
+1750,32519
+1751,55886
+1752,17738,56383
+1753,41119
+1754,75090,33924
+1755,25256,79557,8836
+1756,21271
+1757,17390
+1758,69350,25251,78686,40504
+1759,29822
+1760,35547,68260
+1761,7918,27501,50770,78812,80150
+1762,64409
+1763,22933,70486,12951,79043
+1764,61980
+1765,12213,56785
+1766,78791,66485,32349
+1767,33059,7742,53037,53548,3159
+1768,28041,74687,21115,31368
+1769,56201
+1770,43267,533
+1771,4880,80405,79842
+1772,25387
+1773,7398
+1774,6522
+1775,52360
+1776,40559
+1777,79989,47696,79769
+1778,49813,78243,78411,48287,71462
+1779,76447,69600
+1780,72494
+1781,42659
+1782,44495
+1783,33526
+1784,10134
+1785,31487
+1786,82081,15255,1011,12889
+1787,10886,35984,962,25815
+1788,72487,15774,46084
+1789,6858,37613
+1790,27860,34637,57536
+1791,60625,67968
+1792,43271,13471
+1793,733,79814,17690,48608
+1794,7354,30861,36155,61691,22248
+1795,47654,46992
+1796,74884,26566,76020
+1797,14063,80226
+1798,74600,27246,45655
+1799,70505,28992,2624,33875
+1800,63994,36948,49746,37331,75664,18147
+1801,43250
+1802,51410,60862
+1803,18878
+1804,46020
+1805,10292
+1806,50576
+1807,55368
+1808,58174,65231,23254
+1809,63777,8963
+1810,64390,60201,80194,78769
+1811,61517,63365
+1812,80590
+1813,71355
+1814,14732,3120,39714
+1815,30461
+1816,80827,46692,39803
+1817,28617,1244
+1818,77204
+1819,40866,73105,34436,22030
+1820,56248
+1821,74252,44653,15794,76702
+1822,28848,67581
+1823,80761,13864
+1824,66511,14623
+1825,35616
+1826,67385
+1827,24763,26786,12653,29386,9477,54922
+1828,38285
+1829,21128,4738,25853
+1830,713,4754
+1831,7851,32250,9164,45483
+1832,48680,16071
+1833,35886,18408,4603
+1834,29094,30877,14299,8214,80327
+1835,9934,16931,59449
+1836,23924,58503
+1837,43901,60321,28553,2107
+1838,80194,42282,27855
+1839,13696,28348,13047
+1840,53969,3572,33245
+1841,53161
+1842,51491,22453
+1843,52056
+1844,31509
+1845,17796
+1846,34296
+1847,6229,47605,8992
+1848,1141,9941,39110,27217,30983
+1849,23698
+1850,16470
+1851,34898,54535
+1852,33414,30874,40094
+1853,62017
+1854,15558,26638,14933,1394
+1855,10295,65654,52019
+1856,19760,37594,18655,37839,74695,44763
+1857,73318,72137,19694
+1858,6193,61347
+1859,51930,10956,39599,37954,23389
+1860,75839
+1861,76460,1971,38666,34942,68605
+1862,46858
+1863,12462
+1864,64237,34361
+1865,9164
+1866,49105
+1867,62508,57867,24909
+1868,49502
+1869,33811,43965
+1870,51626
+1871,16980,79997,36525,22074,21775
+1872,7975
+1873,80805
+1874,33418
+1875,16584
+1876,24093,59929,51105
+1877,68539
+1878,23174,56502
+1879,14659,4080
+1880,20504
+1881,60140
+1882,16424,76755
+1883,27475,43966
+1884,25749,34604
+1885,42861
+1886,62452,45483
+1887,14835,69022
+1888,4071,38045,6612,72884
+1889,73470,34480
+1890,46724
+1891,5529,80791
+1892,27540,7498
+1893,40492,59117,18187,443,361,79422,23737
+1894,31484,3033
+1895,41092
+1896,68848
+1897,59612,10407
+1898,33381
+1899,48033,5502,26555,73034,19778,44778,608
+1900,43217,35785
+1901,27852,25946,75353,76718
+1902,64091,74102,66022,27836,44183,34748
+1903,36531,39385,52673,18873
+1904,2134,49890,41865
+1905,21409
+1906,48829,32737
+1907,29226
+1908,27528,77,61237,43286
+1909,10320,55092,32949,16249
+1910,11154,29731,64965
+1911,33068
+1912,8358,53087
+1913,81551
+1914,65547
+1915,2435
+1916,20087,81000,1948
+1917,2707
+1918,12889
+1919,24090,32624
+1920,25645,79340
+1921,63568,15883,75380
+1922,70148,29279
+1923,25510,81963,3316,71658,36188
+1924,15783,48497,14874
+1925,28428,40163
+1926,44964,34778
+1927,8205
+1928,7838
+1929,72001
+1930,1041,81003,17960,985
+1931,79238,33469,68963,11782
+1932,22205
+1933,41736,42644,53959
+1934,61757,44258,33218
+1935,47547,5548,48722,58974
+1936,39786,34325
+1937,27502
+1938,72753
+1939,58467,847,61610
+1940,78511
+1941,35269
+1942,36984,43254
+1943,26689,15576,18573,23519
+1944,55501,78708,5316
+1945,37660
+1946,21138
+1947,13155
+1948,58160,41814
+1949,61224,52472
+1950,35976
+1951,45283,18891
+1952,34837,33357,77862
+1953,5725,40740,44989,11479,39191,50443
+1954,23846,41041,34806,51098,2641,64553,24438
+1955,62782
+1956,42952,36882,10742
+1957,11902,31048,50135,61431
+1958,51711,28390
+1959,40980,47639
+1960,23812
+1961,29805
+1962,66368,25695
+1963,39581,28950,24744,45472
+1964,82173
+1965,61845,18599,76669
+1966,61118,28897,60366
+1967,11969,529,57980
+1968,34466,61097,50
+1969,61021,35977,60023
+1970,20181
+1971,33842
+1972,31889
+1973,50494
+1974,62322,80025
+1975,50036,44103,38866,56454
+1976,58290,42838,67160
+1977,4170
+1978,23631
+1979,16375,28799,25271,59988
+1980,71100
+1981,34791
+1982,13512,41085,44907,40570,34228
+1983,6763,21024,25220,14955,39908
+1984,39970,43906,62089,8330
+1985,26714
+1986,25432
+1987,58172,25768
+1988,30950,5735
+1989,36089
+1990,44592
+1991,81195,79155
+1992,24595,47370,66282,15291,60935,30915,3435
+1993,54854,35068,17651,60834,45515
+1994,17482
+1995,72335
+1996,72204
+1997,21811
+1998,30703,56890
+1999,981,25268,23651
+2000,9783,49173
+2001,58464,40706,36417
+2002,28602,50904,50243,22265
+2003,48952,66200,52259
+2004,59941,78377
+2005,43418,26882,8793
+2006,48274,81051,29137
+2007,1056,1367,44562
+2008,59716
+2009,4012
+2010,79842
+2011,36744,59517
+2012,11074,23862
+2013,69968,57940,70532,4705
+2014,67265
+2015,34203,77786,31164,69548
+2016,22062
+2017,71768,66981,25254,67122,77892,26531
+2018,3957,71968,56857,21736,59519,22398
+2019,54084,63420,64211
+2020,7869,37334,76721
+2021,78056
+2022,53374
+2023,46764
+2024,15012,66523
+2025,8774,79459,11760,54390,13200,32059
+2026,22300
+2027,13999
+2028,26953
+2029,71500,9707,55630,49477,79219,23043
+2030,18808,35506
+2031,7289,52261
+2032,59951,29805
+2033,74887,22382
+2034,2439,78750
+2035,14992,42918
+2036,72077,59754,25798,12837
+2037,25323,2107,74429,12123
+2038,78416,52599,25237
+2039,69039,40829
+2040,16603
+2041,22198,72661
+2042,70210
+2043,5955,46354,24209,37995
+2044,69378,24910,18360,48005,10674,49231
+2045,4263,52659
+2046,57427,54761
+2047,16224,9282
+2048,29237,40023,29033
+2049,31771,57811,68666,74728
+2050,20262,32303,12866,8565,43754
+2051,21788
+2052,53134,34715,74433
+2053,77754
+2054,60627,78003,56496,34863,37670,40520
+2055,39359
+2056,57174,53510
+2057,19001,45220,45989,79735,50317
+2058,70317,50105,662
+2059,2593
+2060,47866,72655,7287
+2061,12861
+2062,53527
+2063,75286,15576,80824,14762
+2064,78776,41146,37918,69164
+2065,17063,34549,37716
+2066,32340,41206,69081,38477,38372
+2067,64004,15349,6423
+2068,44070,64255
+2069,43896,2786
+2070,60371
+2071,21791
+2072,44922,20836,27895
+2073,52439
+2074,58425,17825
+2075,40234,80780,44688,23849
+2076,63275,23989
+2077,26168,57840
+2078,534,23337,74741,960
+2079,37745,74807,68519,45758
+2080,14894
+2081,57257,76703,2436,12016,41551
+2082,46121,41646,54592,66307,74476,81498
+2083,74760
+2084,43365
+2085,65565,16566,28199
+2086,31265,67434
+2087,41878
+2088,3740,69513,26870,72551,21162,22268
+2089,14600,73551
+2090,45801,77986
+2091,22852,71051
+2092,14787,31444,63677
+2093,72447
+2094,75738,1920
+2095,29171
+2096,27919,66741
+2097,52309,28221,27103,20161
+2098,38785,35047,31231
+2099,5762,57459,1056
+2100,10823
+2101,76571
+2102,55134,70003
+2103,57170,75357,57129,23295,5162
+2104,74416
+2105,52644,81390,15431,1118,43805
+2106,3883,43324,27956,6897
+2107,33708
+2108,35683,32197
+2109,39571
+2110,20145,79051
+2111,59729,21338,75511
+2112,57504,44976
+2113,25180,4057,8043,15672
+2114,19767
+2115,15054,41197
+2116,67397,60962
+2117,68977
+2118,33645
+2119,66747
+2120,6651
+2121,5195
+2122,17065,77442
+2123,16869
+2124,4707
+2125,2667,54140
+2126,49223
+2127,17394,16637,1404,2154,58152
+2128,37059
+2129,58841,56547
+2130,80683
+2131,40820,10079
+2132,28587
+2133,56999,32470
+2134,60791
+2135,15617,16024
+2136,20592
+2137,21694,48149,62386,22886
+2138,1413,1358
+2139,47375,53017,22012
+2140,1670
+2141,73938,33644,79694,33850,34223
+2142,10684,66784
+2143,74099,13024
+2144,72446
+2145,64299,30217
+2146,4742
+2147,57421,4156,39847,46135
+2148,13718
+2149,73805
+2150,65240,62236
+2151,44212,19076,53211,35537,17395,10917,12628
+2152,15439,71595,23690,4301
+2153,6024,55377
+2154,10329,19800,65338,61488,5405
+2155,34580
+2156,30023,60855,59027
+2157,7234,12936,47783,1721,77068,2743
+2158,28744,40952,52531,40368,71916,16654
+2159,43024,57601
+2160,48971
+2161,12666
+2162,58201,68426
+2163,66315
+2164,683,68110,39638
+2165,31699,62563
+2166,69735,12361
+2167,47741,74294
+2168,57584,50047,738,835,52990
+2169,42293
+2170,46403,75579,14611
+2171,61359,36725
+2172,66921,78780
+2173,197,79474,66376,5570,59778,28461
+2174,71853,80538
+2175,73059,8578,45119
+2176,11419
+2177,1858
+2178,34880
+2179,30825,61154
+2180,60406,62094,27804,24619
+2181,22921,57390
+2182,31931,23067,54135
+2183,8717,78322
+2184,61294
+2185,42100,30786
+2186,54502,63453,74575,74375,19178,34998,30812
+2187,71164
+2188,43844
+2189,59939,76134,5494,51374,77397
+2190,12915,75146,14013,18309
+2191,22137,31451
+2192,10467,41289
+2193,76631,73702,56628
+2194,72363,72524
+2195,39457,27049
+2196,19565
+2197,32409
+2198,76693
+2199,35754,53069,22676
+2200,54763,68666
+2201,31468,19942
+2202,60114
+2203,72321,13575,74161
+2204,69583
+2205,78617,53950,2458,28899
+2206,7003,68976,20725,70375
+2207,80481
+2208,25616
+2209,70549,52860,7348,2109,30832,59029
+2210,10565,25236
+2211,45688,80491,67172
+2212,45957,69095
+2213,57056
+2214,44678,46911
+2215,57538,13137,76479,38844,78437
+2216,44930
+2217,44311,2252
+2218,27030,65406,63476
+2219,28121
+2220,70199,43413
+2221,36400
+2222,67734
+2223,822
+2224,49159,1323,23147
+2225,78936
+2226,35382,63222
+2227,52740,80613
+2228,11746,66895
+2229,79745,61223,2938
+2230,69448,62627,73099,67577
+2231,4493,77145
+2232,74810
+2233,80302,19241
+2234,70085,67962
+2235,55412
+2236,28406
+2237,62081,79131,78234
+2238,62610,60998
+2239,13146
+2240,65320,58844
+2241,44533,52881
+2242,64673,66973,17271,35864
+2243,13632
+2244,34561,72672
+2245,14645,3275,3023
+2246,4242,72233,66242
+2247,9481,25980
+2248,2497,46244
+2249,10372,40536
+2250,70778,53784
+2251,4981,34677,54160,25606,61128
+2252,64601
+2253,16568
+2254,73115
+2255,50705,20772,62587,18771
+2256,78284,79578
+2257,42892
+2258,26715,74074
+2259,1319
+2260,64462,74228
+2261,54191,22983,20969,22270,16886
+2262,5733,28605,27111
+2263,20769,56744
+2264,67802,68849
+2265,65503
+2266,23996,2263
+2267,17421
+2268,42848,56314,60523,49495
+2269,37719,65867
+2270,60988,64030,81660
+2271,59150,33393,66270,67800,2318
+2272,54702,34275,41218,68206
+2273,34887,26234,69481
+2274,47650,73226,29642
+2275,45895,38383,3393,60658
+2276,28808,76343,19860,34308
+2277,6982,38323,15221
+2278,33381,25196
+2279,34983
+2280,80920
+2281,1579,23740
+2282,49071,79681
+2283,9012
+2284,49199,32405,19510,23446
+2285,61978,255
+2286,69670,16037,10546
+2287,13314,54157
+2288,33751,22165,44690,78951
+2289,46055,29706,47471
+2290,17088,49244,50557
+2291,16233
+2292,54795,20300,19804,36104
+2293,55806,29892
+2294,42129
+2295,10371
+2296,26718,39412,10990,32253
+2297,32587
+2298,13997,41315
+2299,23958,6448,45344,13700
+2300,13335,75880,16507
+2301,22481,72041,6149,4611,24722
+2302,4344,41442
+2303,66953,62343,45064,44990,37731
+2304,70089,67608
+2305,19059,40471
+2306,2132
+2307,14373,61852,31536
+2308,73289
+2309,12033,5870
+2310,56546,29162
+2311,14627,59977,15841,69539
+2312,54340
+2313,67744,60657,53161,47103
+2314,8213,47312,1735,74775
+2315,41517,49255
+2316,52818,77707,22220
+2317,56731,64717,78123,57491
+2318,15476
+2319,20403
+2320,28710
+2321,7289,11958,59247,28511,63154
+2322,66783,62384
+2323,74713,72263
+2324,61654,60080,49048
+2325,55940,2337,65175,12334
+2326,59979,11910,9118,68790
+2327,69873,14205,18831
+2328,59352
+2329,4308,66828
+2330,80085,35236,63242,81037
+2331,61624,31590,60102
+2332,1519,70819,11701,6469
+2333,75149,74677
+2334,4737
+2335,19691
+2336,76388,54885,30753,16285,16958
+2337,46090,73893,77217,35683
+2338,70184,72592
+2339,60512,8044
+2340,33250,19361
+2341,78807,10749
+2342,6615,41231,28956
+2343,74318,22122,14981,18776,5628
+2344,38414,47077,69883
+2345,31450
+2346,59849,51466,69479,48627,7365,9288
+2347,60013
+2348,60153
+2349,73133
+2350,76328
+2351,27031
+2352,15099,7075,79400,21353
+2353,14753,2929,70821,47554,44969
+2354,22343,40214,50756,58789,37542
+2355,16443
+2356,12149
+2357,55333
+2358,4735,71037,24324,14658
+2359,13558,56684,22953,79871
+2360,72113,24618
+2361,59475,74437
+2362,71125,9582
+2363,57892,37153,27308,28311
+2364,21255,74007,47562,10613
+2365,46227
+2366,44833,14628,56137,44837
+2367,54828
+2368,20799
+2369,47542,37246
+2370,59200
+2371,4075,44262,48423,8037,17901
+2372,33770,72118,8751
+2373,56431,62802,81967,49420,81696,61186
+2374,53155,68171
+2375,43226
+2376,17764,2549
+2377,31401,64702,160
+2378,42108,50936,54240
+2379,51671,43611,13272,29217,28276
+2380,22173,74435
+2381,40423,33585
+2382,47213
+2383,19673
+2384,37819,42229,10691,9355
+2385,62872,66380,76698
+2386,33235
+2387,65935
+2388,12957
+2389,12354,1782
+2390,72336,26946
+2391,49777,37463,26394
+2392,81842,47337,59647,37324,72456
+2393,44736,25168
+2394,39491
+2395,15958,75079,71561
+2396,22531
+2397,23863,64691
+2398,62525,6203,32953,78776
+2399,1875,38306,69625,55324
+2400,80446,60350
+2401,46111
+2402,72190
+2403,77894,45708
+2404,75651,47853,67599
+2405,65397
+2406,4707,17047,38287,28927
+2407,9941,24984
+2408,26407,21008,45783
+2409,42062,57919
+2410,38526
+2411,11416
+2412,69264,14603,37544,67544,71954,56673,50574,61858,64062,68404
+2413,11291,23376,10264,25550,59264,15454
+2414,14489,17175,9495,54598
+2415,28758,5617,42021,32396,32628,11520
+2416,72550
+2417,49940
+2418,6158,4670,1684,22196,485,44336,49311,70255
+2419,31424,76690
+2420,80628,6878,10083
+2421,32526
+2422,31543,22752,56918,11464
+2423,23842,70580
+2424,7100,26841,52124
+2425,73512
+2426,59237
+2427,8270,22270,27882
+2428,68837
+2429,55916,39906,45487
+2430,78688,25206,53905,54051
+2431,33731,10967,68304
+2432,59236
+2433,43064,53630
+2434,81616,77770,7863,76135
+2435,11947
+2436,59677,24728,12677,9493
+2437,38600
+2438,10172,72204,11703,50176,21474
+2439,4852
+2440,45219,34430
+2441,3814,80208
+2442,22180,62430
+2443,65035,8610
+2444,10808,14451
+2445,45164
+2446,5871,10653
+2447,79527
+2448,52068,79962,74428,58264
+2449,6244
+2450,53813,57849
+2451,28924,2768,43543
+2452,40505,75622,9458,18016
+2453,41234
+2454,17410,43119,27013
+2455,48745,30768,43815,63442,53492,21261
+2456,42268,32662
+2457,28114,30941
+2458,7852
+2459,81139,22842
+2460,12472,18542,62490,81034,15494
+2461,44306,14671
+2462,68959
+2463,35484
+2464,62573
+2465,47698,53544,79597,44152
+2466,68188
+2467,48008,81641
+2468,62598,64662,77791
+2469,43414,481,45992,53477
+2470,36226,18767,60086,58112
+2471,17769,76099
+2472,64298,43945
+2473,10385,57437
+2474,37607,8364,4104,31980
+2475,29570,56055
+2476,78352
+2477,18755,13092,38369
+2478,69693
+2479,35949
+2480,16568
+2481,57935,59032,50148,40304
+2482,70629,53555,69767
+2483,22319,70444
+2484,18488,37255,3071,33394,26233,66045,43599
+2485,32063,76152,5169
+2486,23833
+2487,77078
+2488,63496,29583,59931
+2489,40204,79036
+2490,6088,39875
+2491,54795,25596
+2492,26393,6660,17638,74465
+2493,30339
+2494,10661,60147,43828
+2495,24390,29508
+2496,29441,53170
+2497,67915,37918
+2498,53983
+2499,44506,81232,24503,78335
+2500,17160,23904,53294
+2501,80470,52608
+2502,46422,82056
+2503,71075,55338
+2504,11118,61833,79110,12470,28345,67650
+2505,57908,32101,2996,23505
+2506,18798,1880,77047
+2507,4008
+2508,17153
+2509,77312
+2510,58282,31463,44659,42939,73585
+2511,60752
+2512,54161,65827
+2513,74028,38839,52517,62894,72752
+2514,49970,38375,60129,30902
+2515,56541,11417,36696
+2516,47244,28003,3951,36415
+2517,70648
+2518,50677,6932
+2519,6770
+2520,72856,67611
+2521,44549
+2522,15046
+2523,32888
+2524,24767,40874
+2525,78150
+2526,27249
+2527,36770,49916
+2528,47979,7064,2280
+2529,4403,59419,44881
+2530,81162,42561,59973
+2531,26477,65507
+2532,7382
+2533,45418
+2534,80335
+2535,54250,78156
+2536,72372,20306,25018
+2537,33429,6475,27130
+2538,38008
+2539,7109,21568
+2540,13619
+2541,31908,60693,2553
+2542,2598,3838
+2543,80820,24397,35023
+2544,33551,67202
+2545,5720,13456,44865,27591,57662,4283
+2546,17636
+2547,54069
+2548,52443,27116
+2549,11652
+2550,3001
+2551,34488,30067
+2552,17390
+2553,48927,18637,58107
+2554,36946,74303,29349,56569,2812,25732,15253
+2555,35739,22916
+2556,2168,80486,10391,78344,46594,65503
+2557,19401
+2558,41941
+2559,32444
+2560,48892,63084,21094
+2561,32125,70963,53723,59822,51712
+2562,25000
+2563,60738,77229
+2564,31739,16431
+2565,64336
+2566,70745,67705,24469,55055
+2567,45464
+2568,62189,38140
+2569,46851,7825,80555
+2570,68188
+2571,58706
+2572,71337,74565
+2573,75496,14186,21548
+2574,36524,16936
+2575,28349,31645
+2576,11050,24923
+2577,44572,28312
+2578,59958,1874
+2579,28474,30727
+2580,8645
+2581,77057,12470,23163,16571
+2582,32691,58885,79531
+2583,67677,65478
+2584,28630,68828,65117
+2585,52359,48403,19480,45420
+2586,74194,67334
+2587,67596,53896,13935,52091
+2588,69473,32476,74535,49367
+2589,60870
+2590,17294,37734
+2591,52859,31342
+2592,65832,59090,43869
+2593,32851,71421
+2594,59305,10510
+2595,5145
+2596,19551,22145,24601
+2597,70309
+2598,80457
+2599,55329,78860
+2600,8338,5403
+2601,70147
+2602,50357,50222,50267
+2603,63497,32704,70963,16156,10180
+2604,55634,11916
+2605,48819,28925,67147,75773
+2606,73865
+2607,51498
+2608,74384,73985,28332
+2609,16702
+2610,1753,19584,81414,39369,35645
+2611,43297,67993
+2612,52612,58054,28503,8080
+2613,33059,9564,51837,55498
+2614,10337
+2615,75750,19369,61303
+2616,39820
+2617,76782,24004,16822,50435
+2618,80558,37892,61827,22594
+2619,67893,45470
+2620,53984,57309
+2621,31197,12699,75079,68837,38682,19987
+2622,67789,52593,1953,33064
+2623,25426,50923,6725,31817,19060
+2624,78585
+2625,16280
+2626,76407,13018
+2627,80381,29291
+2628,2464,79362,13497,34789
+2629,4380,15668,43126,64611,11257
+2630,73724
+2631,44535,52896,69263
+2632,24983,43723
+2633,36509,53482,28158,34516
+2634,28541,22366,13838
+2635,64480,61645,42036
+2636,56244,3172
+2637,43214,67178,79631
+2638,74585,12579,76151
+2639,58013
+2640,37795,25503,13016
+2641,23923
+2642,68476
+2643,67309,64322
+2644,51657
+2645,10372,14251
+2646,37197,39923,30611
+2647,19674,3745,37243,43137,65742,14059
+2648,8645,81290
+2649,68104,10769,13386
+2650,28321,24098
+2651,48247,42982
+2652,51402
+2653,67717,4091
+2654,674,76213,29685
+2655,67117,35710
+2656,40959,69377,38435
+2657,68323
+2658,21102,65216,13554,34105
+2659,51252,55415,40218
+2660,79723,7209,38860
+2661,77748,53490,79599,5239,63334,52612
+2662,40651
+2663,78282
+2664,78864
+2665,10565,46952,22158
+2666,37526,71974,13514,57533,69473
+2667,26547,34227
+2668,62376,47547,8043
+2669,40151
+2670,36909,30010
+2671,77187,18259
+2672,32135
+2673,37529
+2674,57980,65960
+2675,69258,16587,13680,40660,64343,43861,39159
+2676,55131,29907,27231,40806
+2677,60556
+2678,23045,20356,48176
+2679,68152,71487
+2680,67504
+2681,69420,20832
+2682,61201
+2683,80988
+2684,80285
+2685,43265
+2686,40592
+2687,45951
+2688,1,62166
+2689,80335
+2690,33852,49180
+2691,53449
+2692,72363,74024
+2693,23257
+2694,50685,8952
+2695,41733
+2696,12978,44606
+2697,48867,49777,25307
+2698,76290,8681
+2699,79769
+2700,2933
+2701,63232,29008
+2702,61007
+2703,66993,56397,77447,28177
+2704,3340
+2705,18646
+2706,3567,46215
+2707,24168
+2708,26234,11261,60129,29713
+2709,65441,45551,70377
+2710,50460,11685,54394
+2711,35261,67769
+2712,47715,57749
+2713,31862,51354,30606
+2714,51084
+2715,70384,65355,41454
+2716,62015,65963
+2717,61831,39952,33999,45004
+2718,10215,12123,64879
+2719,17694,59432,2943,77028
+2720,64305,35070,34527
+2721,4387,63185,50004
+2722,29441,860,28735
+2723,26646,38291,63250
+2724,55734,66473,24732
+2725,28382
+2726,27520
+2727,46422,44495
+2728,70933,63804,12536,41095,21637
+2729,48931
+2730,43078,17048,11561
+2731,37708,6789,7873
+2732,80620
+2733,71159,64784,63387
+2734,79983,28736
+2735,18981,28421,34527
+2736,72724,14744,45842,29129,75021
+2737,31210,29568,10734,30341
+2738,37280
+2739,68550,7975,78909
+2740,81104,42356
+2741,26309,28875,39630,68080,39032
+2742,52931,65798
+2743,48510
+2744,17265,136,55094
+2745,67756
+2746,69608,16055
+2747,51568,72190
+2748,28258,602
+2749,12899
+2750,71283,19994
+2751,28159,63895,17434,60631,69188
+2752,44664
+2753,40905
+2754,10729
+2755,60111,26463
+2756,11558
+2757,23445,44013,49182,3446,12566,19030
+2758,4787,74801,21273
+2759,66980,56352,53664,1590
+2760,78205,8821
+2761,21777,49133
+2762,49704,56749,8804,44708
+2763,14586
+2764,47746,3523
+2765,37480,24608
+2766,35353
+2767,68026,41912
+2768,38505
+2769,73498
+2770,49041,77137,36068
+2771,79591
+2772,81625,44342,22686
+2773,61943,81756,48448
+2774,22612
+2775,55845,55834,48661
+2776,6313,44902,3089,66307,36933
+2777,65372
+2778,76001,63748
+2779,36309,40543,727,13734,60304
+2780,35285,66524,63453,54260,76083,35098
+2781,18230,64522,51760
+2782,69279,14713,21011
+2783,62448,16243,31616
+2784,44358,36143,67753,71670,79608,19257
+2785,53162,23722
+2786,18478
+2787,74341,29919,58439,66076,52110
+2788,44255,14245,5316,1621,51990,47971
+2789,14449
+2790,37646
+2791,46469
+2792,15881
+2793,4008,70538,69190
+2794,8370,30515
+2795,14593,86,60404
+2796,79838,78585,11561
+2797,79148,48369
+2798,11940
+2799,7568,31188
+2800,44618
+2801,70538
+2802,62798
+2803,75390,56058
+2804,33767,38065
+2805,8696,56070,67890,70226
+2806,21472,32325,14005,25712,6126,54228,79379
+2807,68411,37041
+2808,79397
+2809,70164,2834,2214,17662,64475
+2810,32163,79521,19314,79348
+2811,7454
+2812,33966,47616
+2813,53227,55596
+2814,62568,23639
+2815,45355,5911
+2816,56994
+2817,8218
+2818,48781,59198,81389,21991,5826
+2819,59874,39790,62276,41762,24608
+2820,73479,44125,2986
+2821,78522,77884,77188,43281
+2822,58955,59712,21194,24027
+2823,45774
+2824,3037
+2825,61932,54100
+2826,10995,58657,36262,37691,10031,36783
+2827,25973,70594,32854,78064,5672,34272
+2828,24319,57566,33124
+2829,36469,47905,10182,44103
+2830,50968,62312
+2831,62817
+2832,20836,4279,22667
+2833,58164
+2834,78649
+2835,44057,54697,32887
+2836,47219,33628,46390
+2837,81612
+2838,35151,12247
+2839,65723,22841
+2840,44446,19038
+2841,64305,66336
+2842,45081
+2843,78161,77759,21588,34104
+2844,73291
+2845,31706,46341,75158,75782
+2846,46306,37728,24148,42644
+2847,4484
+2848,55177
+2849,55679
+2850,78487,38882,51081,81946,76688,51787
+2851,12145,1106,13316,42424
+2852,72258
+2853,69779,81221
+2854,74303
+2855,2026,46185,64046
+2856,12075,60884,39403
+2857,29797,61062,76521,11767
+2858,60652
+2859,9067
+2860,57996
+2861,44603
+2862,1784
+2863,66129
+2864,15268,21006,33450,3762,68440
+2865,40657,35216,7880
+2866,68470
+2867,47338,52719
+2868,25188,23828
+2869,69512,43311
+2870,41746
+2871,31945,18622,41644,2383,68710
+2872,65480
+2873,35731,63999,34407
+2874,65827,51757,78687
+2875,46057,59,10502,4806
+2876,77306,24238,77220
+2877,689,37786,76555
+2878,6046,10674,5529,1913
+2879,44080,44224,75660
+2880,3822
+2881,30125
+2882,5098,36039,69578
+2883,75971,5528
+2884,37668,55325,20438,66539,23236
+2885,65596,64296,27321,14317,8671
+2886,3921,15624,38795,79300
+2887,13712,68171,82074,62513,48038,25434
+2888,37020,14480,5895,33276
+2889,65955
+2890,23049,33224,33343
+2891,81158,33468,28216,52115,74527,52425
+2892,67634,37163
+2893,63032,77309,61480,46366
+2894,38368,81241,13793,52900,19881
+2895,9412
+2896,3633
+2897,31797,47575,38166
+2898,10580
+2899,62236,37376,29210
+2900,40064,23512
+2901,7681
+2902,51683,47785,29901
+2903,41454,8891,78874
+2904,76853,40202,71715
+2905,64211,72775
+2906,60488,78923,52225,60064,80222
+2907,70206,49529,57635
+2908,35321,51735,75478,65318
+2909,9533,34208,10715
+2910,1224
+2911,37148,36759,75740,12219,24772,60992
+2912,28633,25035,66828
+2913,22707,80960,20593
+2914,24404
+2915,69063
+2916,40038
+2917,2193,43173
+2918,59096
+2919,75856
+2920,39690,2967
+2921,31537,32417,53675
+2922,42609
+2923,29094,26651
+2924,21203,35402
+2925,720
+2926,44600,57517,57827,24999,33612,15281,22522
+2927,54882,42514,75878
+2928,5522,6534
+2929,59236,46634,80594
+2930,53878,43787
+2931,36687,64767
+2932,63797
+2933,2662
+2934,8389,76753,50040
+2935,5162,56982,14245,80900,75374
+2936,46778,46052,76403,58062,55813
+2937,39114,65056,61062,43117
+2938,3165,38747
+2939,66541
+2940,13209,7211,57156,34524
+2941,55839,45356,57136
+2942,17343,79411
+2943,57363
+2944,61772,12519,42984
+2945,63620,27370,59305
+2946,77277
+2947,55878,81145
+2948,3439
+2949,2768
+2950,55481,63770
+2951,56358,63884,76505,7648,30981
+2952,64690,79025
+2953,24653,22720,9194,76690,57306,74550,5041,3374
+2954,61760,21801
+2955,51409,80527,8864
+2956,25018,59189,37898
+2957,62780,11319,78966
+2958,67938,64799,51453
+2959,47588,20856,77870,75433
+2960,32228,14836,64744,75860
+2961,32002,17164,65096
+2962,7669,39083,23632
+2963,28184,1205
+2964,63084
+2965,58663,24738,14500,20438,65902
+2966,51792
+2967,14299
+2968,35928,22634,12022,29798
+2969,77125,53974
+2970,30913,36031
+2971,71983,22013
+2972,75002
+2973,49814,2736,7962,10688
+2974,78319,74084,69564,62821
+2975,76040
+2976,39481
+2977,53221
+2978,15947,31143
+2979,11167,71876,9711,25934,62697,45711,15856
+2980,77838
+2981,40377,30912
+2982,20949
+2983,26136,74607
+2984,73239,59650
+2985,64429,39673,38631,10063,48315
+2986,3984,58413,50871
+2987,4210
+2988,51480,79256
+2989,55883
+2990,33427,73817
+2991,38593
+2992,16685,23793
+2993,43627,34359,15257
+2994,69448,73638,22963
+2995,48226,34885
+2996,24277
+2997,20540,61300
+2998,6489,5158,50435,79957
+2999,9537,24385,42933,76148,14009
+3000,79943,54872
+3001,62816
+3002,41490,29007,74760,63244
+3003,34490
+3004,48289,26646,21136
+3005,1633,14489
+3006,19359
+3007,5591
+3008,39482,22657
+3009,40243,51078,23683
+3010,13016
+3011,8535,53577,48278,67019,7927
+3012,12284,22847
+3013,13999
+3014,4483
+3015,60775,81996
+3016,29325
+3017,80307,17144
+3018,12688,43755,81651,39712,51361,65711,75774,47918,8978
+3019,37801
+3020,46759,21654,70007,79698,73353
+3021,27935,11793,54519,22310,3202,54224,29905,55294
+3022,17902,56457,55825
+3023,70825,61052
+3024,39622,31539
+3025,45211
+3026,13370,75132,61874
+3027,33701,48276,72820,43221,28069,81943
+3028,4473,29208,35493
+3029,72043,76076,34347,74806
+3030,36379
+3031,72083
+3032,66243
+3033,58382
+3034,57356
+3035,56655,29038
+3036,43552,45252,1312
+3037,73747
+3038,17743
+3039,36753,80626,30047,67298,23143
+3040,4644,39164,5357,1912
+3041,14534,52338,30578,61400
+3042,28278,75836,24486
+3043,75933
+3044,2144,3285,24308
+3045,81162,58029
+3046,30634,61223,51772
+3047,38305,45308
+3048,53641,57428
+3049,57292,48911
+3050,75093,23643
+3051,2645,60764,29127,55141,508
+3052,64724,295,26699,30212
+3053,1714,8744,12274,33375,2061
+3054,45474
+3055,2112,59550,4780,64765
+3056,10579,28796
+3057,27189
+3058,22016,20949,41872
+3059,52900
+3060,70788,19635,28967,58973
+3061,6513,64949
+3062,27029,68224,20266
+3063,74828,50202
+3064,73559
+3065,39339
+3066,3698,33939
+3067,50231,54158,76623,10241
+3068,33333,64830,13188
+3069,77333,48661,32672
+3070,34588,48507
+3071,70082,30482,11297
+3072,2952,10496,8407
+3073,5110
+3074,32650
+3075,16158,70630,46720,50671,50848
+3076,6632
+3077,2753,35449
+3078,18679
+3079,26200,23173,7766,16229
+3080,79544,48542,81697,42809
+3081,76482,18128,20165,37944
+3082,24572
+3083,26066,61340
+3084,77851
+3085,29849,24277
+3086,35959
+3087,42331,30154,19879
+3088,7080
+3089,77210,51486
+3090,14416,74885
+3091,42201
+3092,27058,34587
+3093,20573,71668,16441,38444
+3094,37203,46527,74172
+3095,13456,7888,30666,81947,30225,765
+3096,44840,62186,49392,66429,48516
+3097,69917
+3098,28138,19578
+3099,4696,21978,1293,55008,79737,35770,2767
+3100,21302,22033
+3101,19821,1468,38797
+3102,69597,43380
+3103,40377
+3104,5362
+3105,7113
+3106,35895,70152
+3107,16571,65197,38852
+3108,78750,6346,67448,77283,45530
+3109,53455,38606
+3110,34278,31807,54064
+3111,39180
+3112,73635,52857
+3113,41083
+3114,39168,63959,10717,26415,33601,77900
+3115,41452,6180,78669,48600
+3116,32204,77477,66824
+3117,51960,61342
+3118,11479,41337,52958
+3119,26944
+3120,71107,49539
+3121,41031,5866,57924,18525
+3122,36192,45949,54628,13182
+3123,51146
+3124,68374,1254,64204
+3125,63417,46991,69691,21107
+3126,42601,12487,6230
+3127,727,2568
+3128,74167,16966
+3129,34118
+3130,31726,20503
+3131,51061,70539,31177,29432,15112
+3132,12096,56538
+3133,39582,71314,5428,28391
+3134,22215,48265,17935,19949,20787,50245,21643,5261
+3135,25717
+3136,52281,13634
+3137,31675
+3138,61182,47909,24954
+3139,49711,75448,63435,75570,44140,56178
+3140,56744,61201
+3141,34490,15501,47352,67241
+3142,19106,74644
+3143,81825
+3144,23343,56721,77859,15982,35879,13453
+3145,35101
+3146,26108,43391,59032
+3147,74411,28939
+3148,75799
+3149,16286,73553,48356,77171
+3150,38380,2574
+3151,65919,40701
+3152,55444,1259
+3153,16432,18997
+3154,47156,46065,43104
+3155,15507,67392,6503
+3156,2040
+3157,27725,55694
+3158,9405,7829,3165
+3159,18878
+3160,23992
+3161,45208
+3162,41807
+3163,46959,30883,7791,62319,49883,73698,39150,44990
+3164,4034,66009,8553
+3165,36843,8869,591
+3166,55485,1042
+3167,25663,65928,51247,61634
+3168,47182,2331
+3169,20885,12697
+3170,68693,42616
+3171,73444,65051
+3172,48600
+3173,34268,5409
+3174,50298
+3175,12821,35295
+3176,24736,47754
+3177,42874
+3178,64210,14241
+3179,27484,7809,62495
+3180,10225
+3181,79361
+3182,32040
+3183,74585,79647,7449
+3184,49813,82063
+3185,338,63213,42417
+3186,45579
+3187,34592,62927
+3188,9800
+3189,72882,60540
+3190,66360
+3191,14592,78064
+3192,15421,63222,81991
+3193,39574,74927,58182
+3194,3664
+3195,22898,76268
+3196,17203
+3197,11959
+3198,81465,5822
+3199,49319
+3200,8717
+3201,34974,33224,12836
+3202,21481,26576,55884
+3203,55181,29540,43805
+3204,44625
+3205,37349,61732,70462,26359
+3206,59649,57842,19745,59668,58088
+3207,33062,12592,21811
+3208,78174,17897
+3209,14006
+3210,37691,4012
+3211,47399,41095
+3212,12311,43454,5241,2745,36531
+3213,81177
+3214,20384,11399
+3215,1961
+3216,81710
+3217,45674,39385,4527,7994,52266
+3218,23493,21672
+3219,52067,10838,8364
+3220,49618
+3221,33721,70506
+3222,40650,74228,24572
+3223,10376,4328,23478
+3224,20396,7529
+3225,35193,36576
+3226,12690,43389,39813,59080,79264,31533,32875,71180,1422
+3227,55263,26949
+3228,52867
+3229,35514
+3230,61103,47207,23470,40625
+3231,29406
+3232,47140,74335,73442,8060
+3233,15257,51870
+3234,55886,101,44105
+3235,25447
+3236,45936,2140
+3237,12368,65311
+3238,80516,71859
+3239,47544,7486
+3240,72223,54125,81189,45239,47061
+3241,34470
+3242,56402,11398,37251,19800,75326
+3243,5440,70216,35572
+3244,3729
+3245,23402,26,1224
+3246,25235
+3247,46284,24817,29306
+3248,27295,79739,13793
+3249,38744,50635
+3250,56648,22634
+3251,12707,40541,36390,50537
+3252,78212
+3253,7446
+3254,39053,46643,72376
+3255,894,28630,68415,62943,72452,4329,51102
+3256,7577,50597
+3257,19820,42536
+3258,44318,24744,32350,5777,49205,42851,22257
+3259,3727
+3260,55483
+3261,77675,9559
+3262,78074,732
+3263,22752
+3264,61515,57056,47150
+3265,45189
+3266,77055,80994
+3267,7855
+3268,18288,69177
+3269,70125
+3270,57001,4752,68678
+3271,6318,57299,64180
+3272,77785
+3273,64550
+3274,47777
+3275,62777,32734,64712,57372
+3276,61426,21406
+3277,23403
+3278,76816,2225,23484
+3279,81784,26618,8685
+3280,62839
+3281,1031,1661,79995,15210
+3282,79578,53384,37429
+3283,42166,3427
+3284,68163,70567,38685
+3285,76930
+3286,34955,33698,49884,68104,10597
+3287,43328,57092,40295
+3288,30405,12480,45726,9024
+3289,1462
+3290,10409
+3291,8975,36468,15658
+3292,22668,18930
+3293,70024,68994,7048
+3294,74271,77206
+3295,46231,82,17791
+3296,37626
+3297,74157,31817,38638,37017
+3298,12144,11275
+3299,70765
+3300,7218,78012
+3301,62186,53676,36280
+3302,34670
+3303,54243,40223
+3304,79088,42106
+3305,13702
+3306,33636,10011
+3307,16628,18001
+3308,23318,53170,78125,32331
+3309,1045,8624
+3310,78672
+3311,9097,80824,47706,44783,65347
+3312,46048,25964,33879
+3313,74029,45945
+3314,63401,68979
+3315,78451,17371
+3316,6230,13576
+3317,22971
+3318,46613,6569,13530,32273,35064,9365
+3319,67604,39135
+3320,66623
+3321,79989,56571
+3322,63002,18178,16525,19778
+3323,1960,38194
+3324,79297,54285
+3325,76525,67342
+3326,82183,31836,36347,70355
+3327,23916,39013,20597
+3328,2318,50443
+3329,15110
+3330,72424,56546
+3331,16490,11919,36367
+3332,62860
+3333,62798,45007
+3334,74452,73348
+3335,66459
+3336,56360,60942,16768
+3337,53969,67836
+3338,27666,56259
+3339,19108,32853,62864,65200
+3340,79917
+3341,75466,48399,60439,35894,65162,43895,48610,81209,50065
+3342,74546,16428,6252,39902
+3343,82052,5790,17273
+3344,62410
+3345,52204
+3346,362
+3347,73864,44981
+3348,21346
+3349,60244,22593,53134
+3350,10091,10368
+3351,47263
+3352,9018,18958,81187,78170
+3353,22410
+3354,77588,6671
+3355,81486,16232,20041,46177
+3356,54624,41693
+3357,31473,12705,34789,41669
+3358,39818,30935,21654,56178
+3359,51224,7119,59285,48061,50848,46469
+3360,78289,18618,70426
+3361,15402,34458
+3362,61817,70949,31836,70267
+3363,16709,25106
+3364,13726,21973
+3365,4679
+3366,52894,62010,12062
+3367,45784,35571
+3368,71362,49369
+3369,78430,26873
+3370,43701,63583
+3371,56029,51898
+3372,40082,39822
+3373,24277
+3374,69662
+3375,15588,46211,31412,31297
+3376,30177,17088,45309,30586
+3377,59686,52743,74313,78206
+3378,58121
+3379,12525,65242
+3380,80368
+3381,5625,73019,1093,14116,72893
+3382,71940,22237
+3383,41497,43840,38823
+3384,72343
+3385,4483
+3386,3800,37945,69745
+3387,3937,14714,42390
+3388,3656,60296,34481,67309,55522
+3389,78339,80935,56875
+3390,11989,77455,66931
+3391,13673
+3392,7809
+3393,23956
+3394,71763,57427
+3395,39451,9698,10033,1744,44436
+3396,70791
+3397,48351,73687,43435,2293
+3398,12836,1406
+3399,37228
+3400,64333,62702,40084
+3401,6325,27222,44889,34086,10427
+3402,23290
+3403,32538,46839
+3404,5210,73485
+3405,48306,20725,39055,42965
+3406,49586,19756,24225
+3407,61516
+3408,75623
+3409,38779,67103,1815
+3410,69854,41518
+3411,58458,11033,34538,46249
+3412,28372
+3413,82110
+3414,16967
+3415,26866
+3416,9199,59977,24098
+3417,36394
+3418,37971,75836
+3419,78686
+3420,19903,6041
+3421,56547
+3422,58733,81953
+3423,22033,15622,37447
+3424,35655,43591,33487,16728
+3425,65073
+3426,57633,63060,52968
+3427,60991,73052,22391
+3428,56191,14769,66007,61211
+3429,78468,38135,13796,71133,81189
+3430,2080
+3431,81588
+3432,29812,44464,33169,41888
+3433,15133,10121
+3434,52423,69832,63900,49729
+3435,12927,34385
+3436,53414,31216,22633
+3437,29237,31112,79279
+3438,65488
+3439,59774,24471
+3440,3828,51667
+3441,71558,20926,37675,50167
+3442,54686,66385
+3443,22181,78635,1106
+3444,48295,18668,17711,57111
+3445,70140,66738,75013,75195,67751,71433
+3446,51284,38982,17084
+3447,34385,22720,32479,55467
+3448,11410
+3449,31126
+3450,21583,24603,79046,19996
+3451,46082
+3452,28581,78353
+3453,586,18330,73747,70484
+3454,66921,43792,24988,60253
+3455,74754
+3456,10571,45713,71198,21272,2626,7152
+3457,64194,23807,46211,461
+3458,34190,77547
+3459,43949
+3460,71986,31100,45771,37024
+3461,34679,3064
+3462,78662,57675
+3463,32274,79812,63091,34334,38633
+3464,4746,32099,77298,6222,56697
+3465,44422,30365,82008
+3466,61504,75866
+3467,22438,78155
+3468,64860,73562,7047
+3469,19059,40642
+3470,44306,19488
+3471,29253,49216,11752,33785
+3472,16413
+3473,58603,49234,41433
+3474,9079,21361,12361
+3475,61965,9441
+3476,71251,46356,33377,38067,49572,43305
+3477,27996,3900,38423
+3478,11221
+3479,16724
+3480,15271
+3481,32772,5430
+3482,28379
+3483,69251
+3484,25404
+3485,9560,66665
+3486,11353,57074
+3487,31945,72231
+3488,7836
+3489,77888
+3490,10854,25331,77804
+3491,69805,66219,68313,16199
+3492,74525
+3493,19215,23729
+3494,36474,53403,49199,65883,69082
+3495,72235,61470
+3496,54304,30788,46250,40836
+3497,1924
+3498,78442,16408
+3499,76523,4164,40370
+3500,7597
+3501,17309
+3502,39242,65328,34781,2780,69793
+3503,66096
+3504,73826,30878
+3505,62719
+3506,21550
+3507,11936
+3508,78473
+3509,12432
+3510,71715
+3511,18710
+3512,28546
+3513,73876,72673,51394
+3514,34136
+3515,31946,32525,46989
+3516,783,77481,26228,58585,58773,47012
+3517,41912,13197
+3518,43949,80378
+3519,57815
+3520,58680,28623,68043,7795,42084
+3521,27721,11062,76995
+3522,66602
+3523,71835,22138
+3524,79089,13886,40754,19881,60876
+3525,2118,68436
+3526,69374,36155
+3527,57830,21331
+3528,81502,5674
+3529,2753
+3530,75601,65028
+3531,9802,49903
+3532,42095,32963,32392
+3533,9787,10884,80218
+3534,66281
+3535,6697,30955,22974
+3536,65155,12215,20444
+3537,56176
+3538,40462,69408,46312
+3539,6603,22800
+3540,37848,13188
+3541,60432,40961,3191,65972,9343
+3542,67125,63199,9282
+3543,14595,68107,45299,17100,11581
+3544,19075,67064
+3545,2471,22387
+3546,2754,18303
+3547,60321
+3548,15191,53786,78165
+3549,52696
+3550,73835
+3551,528,27712
+3552,57675
+3553,43990
+3554,70636,14107,80368
+3555,57833,39549,61709,61007,18099
+3556,82027
+3557,65706,33723
+3558,54976,256
+3559,33952,32126,25283,6016
+3560,14110,18608,31563
+3561,43554
+3562,56203,24620
+3563,74555,6559
+3564,12739,17345,11864,68298,81708
+3565,22555,17736
+3566,15940
+3567,4495,27251,16292,32243,56970
+3568,26718
+3569,9607,79945
+3570,12222,60512,9619,62585,35120,37905
+3571,20528,58279,50858,26954
+3572,31762
+3573,29973,46601
+3574,77663,51149,41688,36913,81170,11429
+3575,18091,13477
+3576,57111
+3577,41567,40792,69027
+3578,5701,37647,77212,48813
+3579,30683
+3580,18765,62870,33496,30315
+3581,37059
+3582,48775,67766,49423,64433,14042
+3583,55664,78059,45602
+3584,80384,39407,7052,52210
+3585,79563
+3586,26857,78703,48883
+3587,74301,53032,45123,33412,71970,39256
+3588,23198
+3589,20061
+3590,63837,53193,62729,18789
+3591,11919,17814,61080,18733,43269
+3592,60999,22680,80483
+3593,4744,60296,10128,80286,40815
+3594,56001
+3595,28039
+3596,55916
+3597,72425,26720,37231,43430
+3598,76803,79264,48115,29524,32449,2467
+3599,49304
+3600,12376,74622,35489,76926,15792
+3601,70905
+3602,16472,31685
+3603,28071,28216
+3604,73958
+3605,21837,15881
+3606,1176,78499
+3607,8471
+3608,7694
+3609,302,69994,24878
+3610,58559,65055,42211
+3611,28344
+3612,27948,36647,49498
+3613,6925
+3614,44914,33495,7775
+3615,46400
+3616,38411
+3617,48631,16861,39825
+3618,3494,15001,24513,81187,68081
+3619,10079
+3620,17436
+3621,58969,34048,71477,67834,66895,74062
+3622,14942,18403,28369
+3623,37647,69303
+3624,931,70727,40879
+3625,28840,67051,73375,56783
+3626,10062,13662,43706,8575,67108
+3627,66794,50229,69582
+3628,55538,44070
+3629,15071
+3630,48989,70131,33960
+3631,71572,7681
+3632,72121,8752,71125,28842,62739
+3633,26306
+3634,60263,23512,56316,15953
+3635,51244,13997,41471
+3636,17009
+3637,68612,75914
+3638,67911
+3639,53051,20649,63948,72304,59626
+3640,57778,74140
+3641,32957
+3642,55190
+3643,6060
+3644,2453,14586,74733,62333
+3645,23428,34727,46754,23436
+3646,32407,67441,67866,71218
+3647,46451,44277,15899
+3648,58831,65147,38747
+3649,44904,19670
+3650,35852,26563,28729,45309
+3651,29367
+3652,82144
+3653,35668,4808
+3654,56363,67406,40171
+3655,16380
+3656,21992,42987
+3657,75499
+3658,31921,48157,4436,44936,42985,61788
+3659,6664,17203,14608
+3660,67917
+3661,65784,64171,66521
+3662,15762
+3663,45760,985
+3664,24946,73218
+3665,54602
+3666,2753
+3667,41188,57005,80235
+3668,67109
+3669,65755,7647
+3670,29201
+3671,62828,80845,36855
+3672,54234
+3673,71346
+3674,31850
+3675,53510,17533,72360,6364
+3676,45003,62901,53747
+3677,48867
+3678,50598,6023
+3679,50957,26477,44289
+3680,42454,37847,19886,19129
+3681,19701
+3682,20545
+3683,22539,65340
+3684,23259
+3685,11297,60493,18668,59661,34150,72126
+3686,48658
+3687,32811
+3688,1306
+3689,10726
+3690,52195
+3691,23573
+3692,27035,37161
+3693,23494
+3694,6065
+3695,37300,80927,37758,4559
+3696,55963
+3697,56426,51001,76579
+3698,69024,18233,38626
+3699,27604,39275,9836
+3700,1485,65299,64327,29812
+3701,66710,75471,54542,38279
+3702,20962
+3703,8787,43363,74309,38884,25107
+3704,59028
+3705,28458,70770,66772
+3706,67066
+3707,55961,1209
+3708,33576,38204,18385,36659,8583
+3709,6607
+3710,40356,40321,26613
+3711,21794,46114,39640,68499
+3712,50819,68688
+3713,33415,32062,46806
+3714,35942,21669
+3715,51916
+3716,65879,2287
+3717,19509,58225
+3718,67113,32468,29111,1590
+3719,49503,31814
+3720,40038
+3721,70648
+3722,65576,27449
+3723,4623,12123
+3724,47282,70025,32087,8379
+3725,48758,35800,71769
+3726,42495,73083
+3727,37980
+3728,1931
+3729,45558
+3730,36370,2639,9936
+3731,59856
+3732,23465
+3733,35043,43360,19153,58771
+3734,70894,64649
+3735,69937,14495,8380
+3736,48242,35432
+3737,52700,7608
+3738,75723
+3739,968
+3740,29941,2381
+3741,7193,73075
+3742,8071
+3743,5408,28516,48619,16598
+3744,78853,12288
+3745,77592,64598,66783
+3746,69521,68679,32865
+3747,34498,64609
+3748,75540
+3749,58386,53106,33912
+3750,67269
+3751,67831,41814
+3752,13754
+3753,61937,53582
+3754,3138,70632,30409,48810,73240,78879,5315
+3755,57184,11871,71994
+3756,43269
+3757,44850,79476,69925,20667,50600
+3758,35399,6000,53127,70463,6289
+3759,37901,64705,28825
+3760,58322,9803,23196,58506
+3761,16888,324
+3762,2387,70840,72906,3431,20962
+3763,56895,36720
+3764,73371,29180,20443,20803
+3765,1632,10845
+3766,69064
+3767,41987
+3768,50585
+3769,26976,44438,49956
+3770,13233,4514
+3771,75121,35084,49987,80181,61251
+3772,17318,48509,16007
+3773,9806,40334
+3774,78997,1894,17870,50039
+3775,78496,43132,21934
+3776,78051,6687
+3777,44919
+3778,23827,46358,68884,40547,23135
+3779,35930
+3780,67202
+3781,25923,45654
+3782,51810
+3783,17364
+3784,20408,44662,1422
+3785,33069,8115,50764
+3786,73907
+3787,3603,60652,67305
+3788,6706
+3789,46496,64954,18604,16247
+3790,58402,53298,80926
+3791,37879
+3792,67091,55836
+3793,30882,45148
+3794,39215,70803
+3795,49611
+3796,65758,26947,19859,38884,71667
+3797,64492
+3798,4004,35549,31808,64809
+3799,65867
+3800,55412,67615,46709,27901
+3801,67802,70043,22429
+3802,4023,3573,62006
+3803,25747,23715,28034,54708
+3804,41699
+3805,60523
+3806,29415,53464,50196
+3807,13202,70923
+3808,4057,29413
+3809,81159
+3810,81291,55908,54376
+3811,27908,77926
+3812,30042,11563,398,30776,30311,36436
+3813,24974
+3814,29830,70938
+3815,30692,21672,67730,2328
+3816,49332,74390,65573
+3817,2252
+3818,29860,1093,81723,50067,48136,63392,39034
+3819,47283,2198
+3820,60685
+3821,81044,35862
+3822,32685
+3823,78245,55038
+3824,26639
+3825,47852,75072
+3826,69766
+3827,19902,21716
+3828,33810
+3829,68745
+3830,9072
+3831,80761
+3832,18257
+3833,19957,69406
+3834,47052,17263
+3835,77397,34230
+3836,11693
+3837,12335,72604
+3838,59515,51007,63932,81334
+3839,77732
+3840,77702,63060
+3841,59252,12035
+3842,45919,11128,13220,27068
+3843,75120
+3844,5324,33282
+3845,77056
+3846,67600
+3847,15272
+3848,19308,54566,34936,25424,23451
+3849,38696,37171,66516,43142,75866,33797
+3850,18675,30234,33357
+3851,46258,3643
+3852,23752
+3853,25943,50509,67873
+3854,81986,33674,3159
+3855,67309,40456,4712,37032
+3856,20962
+3857,62181,56661
+3858,35514,48374
+3859,35293,20434,33758
+3860,74965
+3861,36595,47655,72225
+3862,45341
+3863,53434,72598,11405,52164
+3864,49714,79031,82178,78383
+3865,37696,71796
+3866,24165
+3867,39159,44141,44171,18468
+3868,11560,59441,64223
+3869,81395
+3870,23551,10532,63326
+3871,40738
+3872,2811,76391,3153,62767
+3873,14025
+3874,54406,40925,43896
+3875,25476
+3876,28532
+3877,30109,53884
+3878,19861,81395
+3879,44487,58870
+3880,65073,43404,37725
+3881,56982
+3882,22598
+3883,70309
+3884,55589,25751,52398
+3885,31619
+3886,30956
+3887,18703
+3888,70798,21438
+3889,78875
+3890,21106,31101
+3891,65394,4008,32239,31796,36060
+3892,15788,14884,50159
+3893,31165,42907,52378
+3894,65215,56344,45737,73235
+3895,22869,3204,55776
+3896,44049
+3897,57679,38044,62176
+3898,78835
+3899,35562
+3900,41171,63745
+3901,69459
+3902,76244,61699
+3903,1305
+3904,53475,6021
+3905,2495,3275,55188
+3906,50407,10037
+3907,63156,44964
+3908,63499,58238,65573
+3909,77537
+3910,6295,11506
+3911,8092,69971
+3912,12215,47083
+3913,79528
+3914,23465
+3915,54558
+3916,35625,7452
+3917,69001
+3918,78790
+3919,10815
+3920,26840,81524,45217
+3921,22593
+3922,63401
+3923,57389,21253,13787,11776
+3924,15584,43052
+3925,18232,19131,61683
+3926,24955,56561
+3927,19619
+3928,25489
+3929,68519,29693
+3930,61896,69746,52406
+3931,78072,32282
+3932,65840
+3933,74296,54682,15612
+3934,32409
+3935,61004,11910
+3936,41718,45752,38162
+3937,77538
+3938,9254,42527,39185,47893,41067
+3939,76643,24808
+3940,39294
+3941,15240,13460
+3942,2834,49923,79618,51150
+3943,45640,54080
+3944,51970
+3945,43919,41905,35831,79791,37450,29691
+3946,70144,56257,14279,33308
+3947,81156,44159,51623
+3948,30099,40655
+3949,65378
+3950,49198
+3951,22285
+3952,12603,50390
+3953,38546,12239,20955,12242,12572,17380
+3954,4986,61354,34673,19223,13155,64024
+3955,51315
+3956,141,45653,70711,24951,68090
+3957,5361,17390,68278,20161
+3958,41423,6447,52334
+3959,61523
+3960,38611,56109,8606,53084
+3961,18819
+3962,66127,44115,2947
+3963,17169,64167
+3964,57694
+3965,65433,60843,20394,18532
+3966,44449
+3967,65134
+3968,17907,62631,26422,29504,38649
+3969,11494
+3970,45210,32914,33186,39185,62378
+3971,19113,67687,70342
+3972,21280
+3973,16508,71654,45417,45599,14300,33440
+3974,39767
+3975,63224
+3976,43843,30999,66989,74399
+3977,46135,19666
+3978,69795,55175
+3979,36479,6316,8746
+3980,12068,8285,33437
+3981,68551
+3982,30158
+3983,38889,46779,39026
+3984,43487
+3985,24341
+3986,64631,42317,14895,75941,34967
+3987,16150,4421
+3988,71089,1850,26044,17037,34175,4704
+3989,69494,50643,68900,6513,38689,10841
+3990,70889,71212,52428,48461,34629,58748,2225,76576,80318
+3991,42935,60017,59660,67537
+3992,59079,29033,57937
+3993,37120,71802,45405,30294
+3994,77600
+3995,54217,22527
+3996,44435,16820
+3997,53295
+3998,41148,41093,47211
+3999,31688,11718,40912
+4000,62458,40117
+4001,67082,25152,47385,5091,56018
+4002,74856,71053,24413,4703,21257,27909
+4003,5120,78161
+4004,49056
+4005,36911
+4006,56325,25424,73517,36621,51706
+4007,14866,47934,28909,1063
+4008,33409
+4009,31102,77949,14409,41670,24812,12564
+4010,4478,69201,26876,21637
+4011,5187,289
+4012,2685,53049
+4013,46835,66570,55437,70834
+4014,73989
+4015,47205,70013
+4016,27655
+4017,73671
+4018,10689,47575,65207,63828,2397,5241
+4019,21818
+4020,59205,25626,54650
+4021,33999,24866,30514
+4022,79873
+4023,53923
+4024,32586,21173,75141
+4025,38003
+4026,75214
+4027,79826
+4028,25408
+4029,7726,53602,30399
+4030,46821,37027,54326,17821,37762,7629
+4031,699,4605
+4032,14056
+4033,33758,21432,75582,63865,40636
+4034,78152
+4035,47708
+4036,19743
+4037,62606,266
+4038,19342,56259,17672
+4039,5237,62330
+4040,74906,13067,53389
+4041,79278,78823
+4042,25510,2267,42505
+4043,44431
+4044,74251,42256
+4045,6744
+4046,44083,2963,30000,16223,23658,38742,71329
+4047,7268,59461,21469,17499,40857
+4048,2832,72084
+4049,1960,35331,36238
+4050,1239,15166
+4051,41038
+4052,12089,18912,47765,48925,24064
+4053,64893,8131,2672,4541,51216
+4054,4166,21457,30268
+4055,78030,70534
+4056,22261,21883,16663,24976
+4057,61920,39859
+4058,37887,51335
+4059,51918,70809
+4060,49411,3735,64805
+4061,50580,33827,20186,11538
+4062,19120
+4063,62839,4078,72765
+4064,63062,18082,15695
+4065,78138,58262
+4066,47438,65873,56543
+4067,15186,30981
+4068,57748,3470,1630
+4069,75647,34796,64549,66198
+4070,76670,4341,1742
+4071,12706,53638
+4072,12786,7873
+4073,22852
+4074,71024
+4075,44298,17604,32582,78705
+4076,29186,52550
+4077,65133,56136,38857,31426,8640
+4078,2639
+4079,7143,4258,50317
+4080,76081,25223,21660,77386
+4081,17482
+4082,39032
+4083,74698,74740
+4084,81113,57808,44081
+4085,11728,55395,2059,364,67276
+4086,49773
+4087,33138,10597,2707
+4088,2919,29990,30891,1648,50050
+4089,19798,1418,26858,9250
+4090,35434,48617,42459,78927,36174,7063
+4091,66168
+4092,76046,51691,11430
+4093,25559,20789,62006
+4094,22587,17138
+4095,25666
+4096,8434,23633
+4097,75455
+4098,49421,34219
+4099,27499
+4100,11792
+4101,32002,24450
+4102,5960
+4103,29862,39381
+4104,38229,23059
+4105,29408
+4106,43017,47610,7252,39981,75235,46800
+4107,34816
+4108,41699,48078,38084,33019,43414
+4109,67430,20004
+4110,42557,18561,59884
+4111,45584
+4112,13898,40939,63114
+4113,18726,61568,21914,8707,21833
+4114,32176
+4115,11737,80340,341
+4116,41719
+4117,34844,17553
+4118,77030,31050,5583
+4119,25952,58943,15432
+4120,65758,78441,68578
+4121,77891,21018
+4122,13403,56397,6113
+4123,43374
+4124,56149,28464,46104,49859,70437
+4125,53251
+4126,43552,46411
+4127,71149
+4128,51663,57299,66735,59193
+4129,43610
+4130,20505,42123
+4131,18873,62858,42514
+4132,58547,62030
+4133,7857
+4134,62937
+4135,44511,35804,64084,62493
+4136,56816,14924
+4137,6990,14433
+4138,51368,47068
+4139,59526,24692
+4140,261,79486,58499,74249
+4141,67228,5679,24888,11262
+4142,5205,4396
+4143,33056
+4144,29819,73921,21970,39254
+4145,59609,2265
+4146,58608,23177,30670
+4147,7133,36802,25292,35167
+4148,28051,52800,12342
+4149,45507,57960,73982
+4150,47678
+4151,70410,64763
+4152,40109
+4153,72843
+4154,30673,30423,44918,52530,10955,75177,1795,18877,6119
+4155,46230,28926,61687
+4156,51568
+4157,61908
+4158,44164,35354
+4159,1608,67498
+4160,7970,58559
+4161,24861
+4162,57926
+4163,28685,22533,27679
+4164,34296,1411
+4165,24083
+4166,16675,49343
+4167,11175,62123
+4168,35749
+4169,5516
+4170,3280
+4171,69903
+4172,29825
+4173,70772
+4174,32903,18339
+4175,25586
+4176,43786
+4177,81749,41218,56701,68039,17396
+4178,42166,1996,70629,7364
+4179,62540,26945
+4180,63081,28864,71295
+4181,53772,13412,6411,78494,41368,37278,49839
+4182,28909
+4183,15153,28524,63366,48195
+4184,18434,46522
+4185,7463,34100,59839,13993
+4186,7210
+4187,56151,7169
+4188,6502,40218,61802,18906
+4189,31069,71396,51946
+4190,46145,37629,81382,16927,73801,47405,50090
+4191,31411
+4192,36992,14598
+4193,46701,37488,46798,16817,58479,8646
+4194,20192,25022
+4195,52079
+4196,35127,38133
+4197,42408,13136
+4198,36172,62425
+4199,2766,57708
+4200,7554,82001,57343,42270,72320
+4201,47794,72607,2596,81205
+4202,38317,19247
+4203,63106,69325,82023
+4204,37980
+4205,80106,70455
+4206,41076,42726
+4207,58497,76788,53195,66888,59754,64955
+4208,72427,36846,71647
+4209,19598,78893,51211,62819
+4210,8974,20455
+4211,34887,27248
+4212,25808,56660,68725,77557,46688
+4213,37707,64647,78676,31870,60616,18300,43480
+4214,50095,15023
+4215,73098
+4216,799,50232
+4217,18815,53087
+4218,64670,68858,15959,24989
+4219,32800
+4220,31286,14717
+4221,37158,8048,78259
+4222,67831,67501,65153,18358
+4223,30277
+4224,43350,55733,24761
+4225,29550
+4226,70719,76752
+4227,72975,73130,1426,27193
+4228,20708
+4229,54714,71470
+4230,7793,7386,29184,75156
+4231,56900,9104
+4232,64448
+4233,64705,15341,48432,14777
+4234,4764,31463,18191,52289
+4235,75297,71881
+4236,40986,66005,42464
+4237,18769,81482,52300
+4238,24495
+4239,496
+4240,17190,42918,40442,33734,70110,65310
+4241,34117,57905
+4242,8118
+4243,53213,59756,5413
+4244,40223,53905,12408
+4245,41030,22786,55800
+4246,62237,1270,38294,17345
+4247,5602
+4248,72445,75162
+4249,1905
+4250,68992,62864,46108
+4251,49754,19448,57791
+4252,59402,21152
+4253,65536
+4254,78121,20907
+4255,66379,60691
+4256,2910,65450,77237,2115,54680
+4257,55030,72075,49739
+4258,72191,70692
+4259,18128,20277,79372
+4260,65906
+4261,54920,70609,68162
+4262,43416,63666
+4263,48678,43079,2146
+4264,62905
+4265,2524,41224,37241,31541
+4266,30617
+4267,53148
+4268,38314,30171,30428
+4269,70549,36087
+4270,3740,26172,9060
+4271,61853,24282
+4272,45723,5560,35467,75617
+4273,53374,70642
+4274,31338,8916
+4275,24464,41834,5473
+4276,74967,5418
+4277,34525,51833,40757,74654,36989,11513
+4278,12421,46595
+4279,74489,16877,64471
+4280,41858
+4281,61329,66276,39471
+4282,17815,8117,71763
+4283,1756,74104,60381,51041,80768,19986,37170
+4284,80731,78683
+4285,26876,16779
+4286,40803
+4287,80772
+4288,26252,40806,2694
+4289,53305,33323
+4290,39505,38275,3676
+4291,16839,50407,51742
+4292,57683,12891
+4293,1343,82097,80880,81051
+4294,71755,33933,81755,28049,9519,72420
+4295,78078,42597
+4296,11147,74450
+4297,64550,78953
+4298,44671,61923,37550
+4299,74162,59964,27525,11411
+4300,25447,78000,47148
+4301,9463,18735
+4302,29242,62493,59106,39588
+4303,56035,17180,45020,26718
+4304,416
+4305,18906
+4306,38407,37634
+4307,39696
+4308,12039
+4309,29646,35096,33656,45325,78664
+4310,19399,71947,6320
+4311,79856,28838,12917
+4312,67511
+4313,52790,18360,19767,70351
+4314,27509,17466,6475,2624,22073,68614
+4315,25690,49410,35509,9628,80609,24610
+4316,25771
+4317,31102,72113
+4318,52726,17461,25034
+4319,73361
+4320,68434
+4321,34303
+4322,47604,56253,79403
+4323,28611,50532
+4324,56725
+4325,25884,57635,42044,16198
+4326,64337
+4327,72124,7014,66365,53104
+4328,25034,6242,37841
+4329,33234,21135
+4330,48986
+4331,71403
+4332,45172
+4333,39720
+4334,81663,46899
+4335,22606,72804,3488,36017,1787
+4336,28082,49729
+4337,12159,71339
+4338,10639
+4339,39972,18219
+4340,56372,9667,9091
+4341,23731
+4342,65983
+4343,39000,62009,13640
+4344,40507
+4345,69708
+4346,19417,21882,9454,37794,59482,19690
+4347,24478,53709
+4348,3123,30541,4969
+4349,76713,62812
+4350,48712,16314,72007,66445,2032,64812
+4351,48501,44007
+4352,67783,68452,76884,67098,35082
+4353,5890,29147,59101,56437,72203
+4354,38251,8950,56585,18096
+4355,19361,40208,57395
+4356,36294,75917
+4357,56989
+4358,15744
+4359,72003
+4360,52201,82121,32412,6749
+4361,34382,52067
+4362,34225
+4363,64059,31486
+4364,72794
+4365,66260
+4366,36448
+4367,13498,75721
+4368,27037,3588
+4369,15967
+4370,58144
+4371,23519
+4372,81424
+4373,69290,45962,44133
+4374,31259,79090,21959,48026,81087
+4375,74340,80170,37006
+4376,74249,40275
+4377,24672,17805,73923
+4378,47537,72661
+4379,5192
+4380,80891
+4381,70218,27284,75443
+4382,26612
+4383,7528
+4384,34286,53128
+4385,917,27210,51949,78650,18291,38604
+4386,9037
+4387,30819
+4388,50170,3483,3059,58829
+4389,2922,72497,52315,50172
+4390,26360
+4391,10032,68125,67816
+4392,34080
+4393,49291,34705,73555,65409,45127,57908
+4394,35082,15023,70112,7678,13142
+4395,13579,76281
+4396,31722
+4397,43687,10777,59806
+4398,5640,29968
+4399,64279
+4400,55465
+4401,45853
+4402,53347,46362,3076,66513
+4403,81389
+4404,22823,32881
+4405,8976
+4406,54038
+4407,48739,61300
+4408,48980,9830
+4409,4943
+4410,4678,34789
+4411,15360,570,26606
+4412,62330,58704
+4413,17555,62540
+4414,16337,80441
+4415,33682
+4416,29250,2833
+4417,46626,52196
+4418,8474,44786,48629,66460
+4419,82169,21331,70915,30826,12455
+4420,53408
+4421,61980
+4422,79831,38660,9569
+4423,36672,65823,1680
+4424,55621,66530
+4425,8513
+4426,63247,3263,35362,56757,40541
+4427,2957,9537
+4428,34935
+4429,9082
+4430,70107
+4431,76757
+4432,69688,62418
+4433,9107
+4434,46701,71097,50918,36019,10281
+4435,60580,46817,59833,68924
+4436,29440
+4437,37111,62793
+4438,22431,36948
+4439,57566
+4440,26217,40583,71305,44181,51673
+4441,47294
+4442,73128,65005
+4443,57045,64341,56197,78505,46489
+4444,18974,45951
+4445,51463
+4446,25956,66532,75247
+4447,8136
+4448,69481,41398
+4449,4279
+4450,63936,52434,73244
+4451,12783,60826,20148
+4452,78897,77710,3030,71855
+4453,57573,35754,27568
+4454,44907,47833,45816
+4455,41881,62084,459,58017,33921,15601
+4456,25956,58425,56199
+4457,72905,4668
+4458,16028
+4459,49701,27930
+4460,46098,53824,22585,66167,8298
+4461,42316
+4462,7406,19556,75575
+4463,65998
+4464,6119,47746
+4465,77500
+4466,6289,38590
+4467,21454,30171
+4468,6230,1303
+4469,65822,46153
+4470,24249
+4471,13717,43581,14777,38929,436
+4472,60445,49876,62444,22757
+4473,29436,16082
+4474,45564,63795,79262
+4475,81690,70412,23127,39558
+4476,23701,31022,54842
+4477,16043,51713
+4478,53747,61705
+4479,25754
+4480,55484,17073
+4481,72752,71645
+4482,55491,26560,7847,68750,4968
+4483,58950
+4484,77659,77355
+4485,10281,71628,11942,55291
+4486,67120,64881
+4487,57869
+4488,13930,71397,42741,39924
+4489,57325,53294,44480,9885
+4490,44205,37792,18396,27327
+4491,10843,23702,3823
+4492,80457
+4493,77920
+4494,12525
+4495,8972
+4496,36825
+4497,27661,66186
+4498,49728,81926,81269,82099,67041
+4499,45692,9446,79287,8699
+4500,76316,38027,23502,28879,5162
+4501,46788,10176,2697
+4502,46120,8879
+4503,6506
+4504,12014,13889
+4505,16555,58759
+4506,26480,20210
+4507,340,16673,28092
+4508,37014,3595
+4509,28073,75882,7628,44714,43618
+4510,76224,51628
+4511,2903
+4512,24314,70593
+4513,23174
+4514,15701
+4515,10815
+4516,43561,70018,284
+4517,42831,44887,70439,29951
+4518,23727,11411
+4519,61811,35056
+4520,18155,51905
+4521,31055,13663,62611,38434
+4522,80613
+4523,33903,29896,39088,7408
+4524,36525,56657,57809,27157
+4525,68918,48304,59046
+4526,64380,44435,7045,20733,59864
+4527,28150,1429,54287,10286,39855
+4528,41817,47011,44781
+4529,75199,33972,58486,60703
+4530,47271,81833,52227
+4531,2476,44555,53080,79013
+4532,58111
+4533,52878,65395
+4534,58249,47820,79384,12721,4764
+4535,28710
+4536,31151,24835
+4537,25036
+4538,77247,23760,41943
+4539,7001
+4540,16790,1258,1807
+4541,75544,24263
+4542,41200
+4543,48765,67821
+4544,45818
+4545,15636
+4546,25580,63770,38798
+4547,25708,50913,49371
+4548,27485
+4549,80506,35778,40562
+4550,30702,70708,4881,69969,25985,59479
+4551,63235,15167,5691,35903,55028,68839
+4552,69896
+4553,36799,37460
+4554,34804,39949,42543
+4555,78747,75517
+4556,73967,26288,76046,16311
+4557,40689,24523,58259,22749
+4558,1673,43878
+4559,15808,71947,69130
+4560,81332,38249,47104,20590
+4561,42797,1911
+4562,46718,79010,20877,11230
+4563,50837,48516,30733
+4564,8041,39398
+4565,51703
+4566,73841
+4567,44006,35272,58541
+4568,31623
+4569,25352,18812,65407
+4570,44319,62259,34998,70139,40181,22187
+4571,33523,29971
+4572,128,53569,14586,17424,52434
+4573,27300,39613
+4574,40812,21507,69252,5894
+4575,80798,28842,81865
+4576,65091,67228
+4577,43999,1374
+4578,69257
+4579,38355,28023
+4580,11205
+4581,71377,19990
+4582,27167,74803,15718,13850,44830,59716,16440,66450
+4583,42592,33014,22273
+4584,80538,54909
+4585,29683
+4586,175,35965,35442,28639,80073,21229
+4587,12518
+4588,35033,65240
+4589,73099,62484
+4590,46670,77555
+4591,59258,20249,18476,57262,72753
+4592,36731,12578
+4593,55306,78874,68985,40442
+4594,30125
+4595,71332
+4596,38823,40208,66271,2007
+4597,23465
+4598,49675,44929,34465,37177,34622
+4599,15930
+4600,32357,41261,44091,36512
+4601,14596,73724
+4602,73170
+4603,64812,46854
+4604,50833,6594,40641
+4605,62681
+4606,3276
+4607,27357
+4608,11739
+4609,14529,58950
+4610,22446,49925,12001,14224,26492
+4611,60680,77111,70082,51276
+4612,33433,1568,69501,3237,51304
+4613,45681
+4614,70008,41950,33239
+4615,66012,78103,31561,1749,17039
+4616,10383,56924,26134,15246,22448,31577
+4617,15723
+4618,78798
+4619,38752,6585,44623
+4620,738
+4621,60180,13482,52543,75618,3483,1013
+4622,37912,15988,77618
+4623,5223,61657
+4624,58126,53433
+4625,60735,28186,66343
+4626,25807,16492
+4627,42150
+4628,55958,43567,30463
+4629,73172,64969,9155,22717
+4630,13785,39490
+4631,69609,70177,20303,6629,71613
+4632,74074,14026
+4633,22963,39276,51509
+4634,45363,50943
+4635,45842,26626
+4636,79638
+4637,11640,5184
+4638,38092,46243
+4639,39454,28327
+4640,51196,26932
+4641,61473
+4642,65032,14866,20805,28034
+4643,40589,22479,2522,63832,76171,67655,50968
+4644,26382,33686
+4645,38114,76521
+4646,30026,3438
+4647,18941,43063,9480
+4648,16929
+4649,80898,69847,26179
+4650,65320,65304,3994,79463,42538
+4651,73132
+4652,19056,70869
+4653,75081,13516
+4654,31304,35518,73575
+4655,50290,25945,68037,28980,12873,18000,47566,32287
+4656,11157,70530
+4657,25387
+4658,69189
+4659,19360,14540
+4660,2207,46437
+4661,73229,56248,75349
+4662,7161
+4663,44023,74416
+4664,45030
+4665,58267,50502
+4666,24476,30802,18549,27288
+4667,22339,74888,9609,13435
+4668,76295
+4669,67413
+4670,73827
+4671,70400,48499,61067,50176
+4672,11621,60082,11562,65953
+4673,63375,77621,3621,60340,6878,58241
+4674,39855,39672,2426
+4675,82011,55017,45646,73271
+4676,22004
+4677,55937
+4678,66650
+4679,78445,50156
+4680,9097,79519,2829
+4681,81162
+4682,65607
+4683,5273,61475,41083
+4684,66834
+4685,24297
+4686,46243
+4687,61476,66336
+4688,57672
+4689,52176,6215,57131
+4690,50677
+4691,14071,27901,894,72100,35250,41038,31277
+4692,65324,45796,5093,65870,50079,19452
+4693,4562,10855,55572,34235,33552,58341
+4694,78552
+4695,57796,81683,48409
+4696,24667,37209,10130,43922
+4697,71180,67978,63708
+4698,38363
+4699,53726,64142,36828,48838,65758
+4700,57601
+4701,80243,78033
+4702,37092,1247,12666
+4703,6430
+4704,28507
+4705,43176,76061
+4706,53935
+4707,26771
+4708,58463,744
+4709,40401
+4710,48765,38228
+4711,29864,37739,77861
+4712,8018,31833
+4713,14540
+4714,5930,11850,3072
+4715,64320,52915
+4716,27163,48247
+4717,52847,51540
+4718,2267,6555
+4719,21550
+4720,64676,77567
+4721,78330
+4722,22114
+4723,12035
+4724,14183
+4725,10753
+4726,17079
+4727,56898
+4728,81433,26561,57131
+4729,65822,78608
+4730,39610,30428,52672
+4731,81762,46557,56397,37687,30950
+4732,65215,41782
+4733,5158,45074
+4734,15562,54186,29476,25924,8593,75448,53031
+4735,31823
+4736,33,36635,3271
+4737,63261
+4738,22274
+4739,81809,43080
+4740,57297,7784
+4741,13367,21768
+4742,67016,46173
+4743,34778,41535
+4744,18886,9488
+4745,52661,73129
+4746,26044,8247,30081
+4747,73647,26764,43840
+4748,17199,69211,13735,52680,6138
+4749,22610,19550,42150,80126
+4750,46311,46938,1147
+4751,62589,63951,17726,2142
+4752,70321,67397,79112
+4753,50148,56996
+4754,9749
+4755,66031,75380,14028,3596,40343,9085,25865
+4756,11172
+4757,3216
+4758,21228
+4759,37987,2693
+4760,2447,2319,75291
+4761,81000
+4762,15704,59142
+4763,4074,1608
+4764,39487,13283
+4765,43977,17475,64821,24322
+4766,30639,61648
+4767,47430,68236,10334
+4768,52679,49377,77646,3135
+4769,2634,14325,47752,39757
+4770,13569,12511
+4771,71376
+4772,19213,40608,81799,16539,45915,43275,78364,4943
+4773,13626
+4774,21635
+4775,22810
+4776,55094,16660,50501,28498,38318
+4777,29508,49854,5516,67585
+4778,10061
+4779,33040,44958
+4780,54162
+4781,16798,60152,33040
+4782,36681,42815,73859,34990
+4783,60913
+4784,42259
+4785,32695,39431,20314,66681
+4786,5790,67735
+4787,55412,49447
+4788,46518,79160,74799,67989,32514,75501
+4789,42229,1804
+4790,70081,53113,26559,28491
+4791,11472,65444
+4792,2999
+4793,56632,32109,38790
+4794,7436,24781
+4795,32627,51400,56705
+4796,61603
+4797,48916
+4798,75689
+4799,9875,13431
+4800,34156,75609,13754
+4801,45664
+4802,5484,4401
+4803,18789,49431,19027
+4804,62889
+4805,23500
+4806,25311
+4807,617,48681,74095,1018
+4808,65014,7563
+4809,69788,77966,32816,2938
+4810,63865,79670,7516
+4811,44006
+4812,67195,52407
+4813,40767
+4814,55712,44368
+4815,2649,49386,45060
+4816,33019,31569
+4817,62277,4190,65213,35229,5039
+4818,18177
+4819,46334
+4820,72049,1371
+4821,63448,76472
+4822,14736,61514,35685,11710
+4823,74037,46733,47460,58615,18108,49154,64025,46840
+4824,71563,22698,64032
+4825,59283,24580
+4826,57415
+4827,82051
+4828,7854,79819
+4829,62946,79998
+4830,45138,4651,10967,59391
+4831,36661,52259,68583,18350,78059
+4832,47134,30235
+4833,29627,65209,45265
+4834,76248,71513,75073,39029,59856,13691
+4835,45264,48875,45111,72300,41273
+4836,16112,8066
+4837,19509
+4838,29374,30359,61230
+4839,81361,49427,73001,11584
+4840,74296,32044
+4841,35359,29150,59444,61795
+4842,69921,36443,78691
+4843,76708
+4844,17098,76244
+4845,34232
+4846,24912,23990,28713,55408
+4847,14779
+4848,8875,26746,40631
+4849,49228,34373
+4850,18350
+4851,79510,34683
+4852,70642
+4853,47069,69001
+4854,50273,55268
+4855,44081,49794
+4856,7281,23214,79361,25771
+4857,66121,80542
+4858,25951,29511,51760,47462,42847
+4859,18522,28277,67607,55054,1808
+4860,51885
+4861,79751,48125,61005,40249,50856
+4862,34043
+4863,8404,41445,20069
+4864,58160,11314,76821,66202
+4865,61158,61699,11575,61973,768,16636
+4866,52244,25643
+4867,74854,76434,79547,3844
+4868,25065
+4869,70194,62865
+4870,72075
+4871,56383,25563,31570
+4872,8482,42609
+4873,79768,31372
+4874,51940,53503,70970
+4875,48665,15129,16134
+4876,29325
+4877,30224,54273
+4878,54712,32983,48745
+4879,28688,77871,54448
+4880,16820,80643,35547
+4881,15265
+4882,71684,30981,3436,10773,23047
+4883,41752,41936,30197,23841
+4884,62330,2051
+4885,72328,48960,76323,49889,2622,62232
+4886,75735,13226
+4887,33099,48813,48130,38845
+4888,49292,70235,21100
+4889,36339,1885
+4890,73677,9822,67285
+4891,54632,70864,25610,77279,49541
+4892,37084,24178
+4893,12906
+4894,16619,54603
+4895,62823
+4896,57847,22512
+4897,50104,63299,48949,17324
+4898,33115,61011,20417
+4899,72734
+4900,19283,7347
+4901,68048,68313
+4902,74207,65122,38961
+4903,40926
+4904,8478,70419,3379,34405,81977
+4905,4169,73518,79410,2366,22766,51285,60116,20315
+4906,10533,32026
+4907,2846,2632,8239,46745
+4908,59863,28710
+4909,12188,22465
+4910,24050,11329,22124,26347
+4911,40346
+4912,22555
+4913,12912,66720,61486,70776,72530,42867,41347
+4914,56557
+4915,31040,65192,54025
+4916,79751,44431,1945
+4917,30171
+4918,39322,14819,72881,41524
+4919,72057,11655
+4920,4143,34700
+4921,52626,11970
+4922,43418,26749,74987,73849
+4923,10427
+4924,57987
+4925,23434
+4926,9878,13126,45486
+4927,63818,57456,53698
+4928,48409,52780
+4929,41323,81549
+4930,4192
+4931,10989,14469,11411
+4932,60324,67191,56466,46905
+4933,64065,57095
+4934,44612,18067,52869
+4935,22273,53728,54341,46508
+4936,2879,74916,21147,2414
+4937,14283,68589,12925
+4938,55712
+4939,25369,28337,61901
+4940,45963,66775
+4941,49076,24944,21994,77139
+4942,56803,50771,72766
+4943,56636
+4944,8438,41138,4215,23862,68793,57925
+4945,3680,41999,52924,75722
+4946,30071
+4947,58040,9649,74273
+4948,55917,26563,27496,76263
+4949,48123,45187
+4950,69963,33072,31435,73422
+4951,2674,36536,49220,11185
+4952,59705
+4953,48021,29244
+4954,73531,13724
+4955,18510,62541
+4956,24926,31855,65590
+4957,81267,79349,5816,64188
+4958,7850
+4959,55197
+4960,40096
+4961,32562,55412
+4962,72711,79563,342
+4963,72856
+4964,17491
+4965,16495,54237
+4966,70809,57299
+4967,21887,34032,37507,51061,64458
+4968,23008
+4969,28384,47120
+4970,76826,40670,56371,52332,77319
+4971,23568,30276,80582,4869
+4972,65766,58188,23090
+4973,37714,64276,59313,40149,31473,9580
+4974,75693,77077
+4975,29789,72091,73897,24528,10557
+4976,25312,16554,81206,35124
+4977,5916
+4978,70545,35409,55065
+4979,48878,40562
+4980,37603
+4981,11955
+4982,32672,47507
+4983,77600
+4984,63740,29250
+4985,36880,56144
+4986,45136
+4987,52445,81561,68676
+4988,26927
+4989,49565,57205
+4990,60133,252,20934,75247
+4991,62329
+4992,73865,60759,58168
+4993,27542,2429,42255,62424
+4994,26977,56403
+4995,65098,71109
+4996,56007
+4997,14423,42392
+4998,12829,27603,64115,79472
+4999,6955,18329
+5000,18156
+5001,62223,28617,46089,24974,14655
+5002,65365,70607,58247
+5003,58774
+5004,74785,7735
+5005,75720
+5006,62301,79046,55420
+5007,58224
+5008,5426,81216
+5009,7789,21596
+5010,31800
+5011,37150
+5012,27106,57333,24620
+5013,27867,20587,12925,64310,76348
+5014,15877
+5015,31763
+5016,18856
+5017,33872,68099
+5018,72508,70185,12214
+5019,64483
+5020,70035,361
+5021,23129,4441,43179,10888
+5022,68438,40430
+5023,76040,77737,53216,66744,14501,34708
+5024,79540
+5025,53886,19814
+5026,27100,65706
+5027,66216
+5028,41122,14420,34927,60360,2965
+5029,2410,75635
+5030,61530,11692,26461,69446
+5031,1949,3014,6526
+5032,81833,48503,6921,45358
+5033,78081,29429,71107
+5034,56386,53793,52507
+5035,32325,20720
+5036,11716,11794,69739
+5037,36375
+5038,6236
+5039,32725
+5040,46039,67241
+5041,7413,32962
+5042,22939
+5043,33506,36706
+5044,37750,53358,77217,39242
+5045,5363,58050
+5046,48699,11208,72473
+5047,66657
+5048,29675
+5049,80891
+5050,16792,25866,67365
+5051,66054,21022,53978,58901
+5052,24393
+5053,23970,20539
+5054,46676
+5055,19767
+5056,34143,15445
+5057,54789,75160
+5058,14651,80209,37922,55815,23761,59931
+5059,50662
+5060,8254
+5061,60730,1936,80598,2798
+5062,31538,54130,63187
+5063,38034,52808,62896,10082,55483
+5064,27810,64914
+5065,23735
+5066,32642,22929,51304
+5067,5121
+5068,35597,79763
+5069,17945,48697,64932
+5070,12416,41501,28512
+5071,25265
+5072,43188,31630,23573
+5073,75290,45556,4754,32384,72086
+5074,80319,65507,39215
+5075,66888,17263,70368
+5076,23064,33101
+5077,50412
+5078,47714,76663,62992,70335
+5079,32968,7078,18160,40425
+5080,21616,43272,14195,32596,12886
+5081,41831,43564
+5082,45465
+5083,26976,36309,71191
+5084,65051,31606
+5085,79188,42677,39201,37124,73241
+5086,69348
+5087,48762,35569,79281
+5088,67487
+5089,67807
+5090,26320,19996,21062,1818
+5091,42373,32310
+5092,13134
+5093,12052
+5094,22986,46259,1267
+5095,49734
+5096,42712,75372,20073,79116,13626
+5097,76435,74217,54790,7407
+5098,57674,36467,45474,2053
+5099,52798,70863
+5100,44253
+5101,8043,33048,79283
+5102,16724
+5103,29295,316,66190
+5104,57951,43441,60637,34073,66614,9431,17922
+5105,53419
+5106,16922,70189,11426
+5107,76371
+5108,75342,34839
+5109,77787,80428,33500
+5110,71804,47059,65953,59705
+5111,74650
+5112,30331,45622
+5113,6731,1689,31213,6958
+5114,14349,55507
+5115,63472,9716,16020,14746,44937,7341,43968
+5116,16961
+5117,63807,52978,60016,71598
+5118,36957,62187,66167
+5119,74073,52691,33575,19968
+5120,51065
+5121,14598,57460
+5122,48172,2226,64713,41342
+5123,68457
+5124,80749,76420
+5125,57043,65173
+5126,33323,939,27257
+5127,37047,70637,38666
+5128,12567,22247
+5129,54314,76257,50220,36052
+5130,77832,15548,50164
+5131,71482,16927
+5132,63974,80090
+5133,66381,63701,26667
+5134,18486,27082,76904,14001,58335
+5135,4276
+5136,8487
+5137,43563,2445
+5138,70383,80926,18410
+5139,15247,21532
+5140,53879,15518,23252
+5141,10802,20213,64163
+5142,18826,48257,50409,72669,37360,67304,27519
+5143,19195,19640,45290,4723
+5144,21757,15003
+5145,38999,57192
+5146,17133,81831,75546,77963
+5147,19269,59850
+5148,17234,35111,33088
+5149,4719,60558
+5150,60614,19080
+5151,12237,39424,74810
+5152,6136,11444
+5153,79440,19522
+5154,79178,3187
+5155,302,53284
+5156,76054
+5157,32578
+5158,56746
+5159,31966,42968
+5160,54536,63994
+5161,53345,21043,25507,62225
+5162,26519
+5163,65836
+5164,32347,278,50575
+5165,10042
+5166,76911,67839,58343,22021,78919
+5167,7904
+5168,47924,48676
+5169,56523
+5170,28458
+5171,68429
+5172,63915,14833,21331,53931
+5173,67713,19404,34044
+5174,80109,38805,55142,21900
+5175,68043,27172,74066,48936
+5176,25503,22311
+5177,4543,75617,407,56875
+5178,65509,59810,62078,69959
+5179,45239,52137,5670,43980
+5180,34954
+5181,16922
+5182,15557,16602
+5183,45388,61465
+5184,55644,72238
+5185,19564,73902
+5186,26939,12736,67460,74655
+5187,28254
+5188,35269
+5189,20791,17147,57459
+5190,57018,8686,72130
+5191,54431
+5192,2657
+5193,2017,69235,34530,61574,20768
+5194,28775,46240,79524,77807,57732
+5195,8295
+5196,25570
+5197,5611
+5198,73239,32494
+5199,30950
+5200,2489,43605
+5201,26214,70128,55013
+5202,50049,71296,37915,34130
+5203,14431
+5204,40580,19168
+5205,6568
+5206,70383,10822
+5207,57400,39190,31501
+5208,58907
+5209,71337
+5210,29142
+5211,75871,43992,14777
+5212,13376,78798,33744,18917,38008
+5213,33843,63109
+5214,75751,6777,78785,28774
+5215,27240,12419
+5216,20277,1270,994
+5217,67241,12429,56512,11063,18346
+5218,37380,27901
+5219,26350,56940,38889,39840
+5220,48498,72197,66333
+5221,69063,5134
+5222,61741,6648,13345
+5223,4336
+5224,35771,23263,48318
+5225,54903,20896
+5226,38881,25645,67108,20971
+5227,59593,75538,78362,48845
+5228,10718,46900
+5229,16274,63439,38354
+5230,17186,44773
+5231,1792,3058,57489,79005
+5232,13098,22375,849
+5233,52429,79655
+5234,48162,26936,2088,71505
+5235,7450,14323,3392
+5236,40152,72555
+5237,79036,49117,52818,78431
+5238,52305,60338,14848
+5239,51442,77217,2700
+5240,73370
+5241,47482
+5242,63552
+5243,65142,16709,33074,43855
+5244,4182,9976
+5245,27304
+5246,54753,21101,50636
+5247,41188,26787,24963,78769,34311
+5248,6568,67919
+5249,27039,27115,78363,23844
+5250,43623,81896,79722
+5251,33038,843,41820
+5252,68306
+5253,53803,22020
+5254,10908,76369,74700
+5255,11966
+5256,80131
+5257,70648
+5258,30682
+5259,37887,8744,15916,28914
+5260,12074
+5261,76705,56505,81220
+5262,16082,31242
+5263,48207,44957
+5264,59971
+5265,66131
+5266,67507,44260,20779,23434,8730
+5267,50504,58557,56053,29425,16212
+5268,13306,6976
+5269,15528
+5270,35527
+5271,63710,48867,8316
+5272,10967,74271,23673,80875
+5273,68194,34349
+5274,38228,69774
+5275,54997,52537,30708
+5276,50966
+5277,74698,61804
+5278,55583,54322,29511,72769
+5279,384
+5280,29907,34336
+5281,47975,14297,70570
+5282,72401,3120,19145,24777,37334
+5283,43049
+5284,10010,68487
+5285,15255,56156,34601,61644
+5286,36038
+5287,47842,72890
+5288,11390
+5289,33148,64142,54892,77103,36008
+5290,35405,34196,37726
+5291,21061
+5292,41651,67125
+5293,18586
+5294,24546,14811
+5295,78218,25045
+5296,52498
+5297,81705
+5298,35819,29244,79800,47169
+5299,26735,3788
+5300,9668,77377
+5301,695
+5302,26436,26046
+5303,80295
+5304,59466,14758
+5305,7463,72671,15228,52913
+5306,41622,18017,19190
+5307,71766,33298
+5308,25585,73644,5458,14274
+5309,33452,73878
+5310,53991,32958,28250
+5311,56946,61009,74944
+5312,13018
+5313,58130
+5314,10184,47777
+5315,44814,26281,6562
+5316,6217,81373,28866
+5317,44594,15133,70112
+5318,48101
+5319,868,38374,38847
+5320,42056,18676
+5321,63038
+5322,7009
+5323,18009
+5324,63725,35274
+5325,47136
+5326,5806
+5327,31789,20474,12562
+5328,69939
+5329,12421
+5330,4376,75625
+5331,5906,42779,22253,7918
+5332,43524,77732,42468,54144
+5333,30775
+5334,27901,40429,71451,48427,60400,38340
+5335,52318
+5336,70480
+5337,60547
+5338,41136,1385,76279,28710
+5339,2922,66981,44258,66729,32652
+5340,36272
+5341,68589,41852,51408
+5342,74550,2332
+5343,79074,58302
+5344,69476,53036,39673
+5345,70516,14990
+5346,60479,53385
+5347,53641,74952
+5348,81040,29333,67756
+5349,68146,60812
+5350,46957,37686
+5351,54904,78884,7964,16694
+5352,67232,26819,31331
+5353,57353,77615,12290
+5354,43303,59761,29896,9412
+5355,3196,68380
+5356,46351
+5357,19800,77816,14581,5573
+5358,11121
+5359,63260,66462
+5360,30724
+5361,70097
+5362,33117,4992
+5363,71789
+5364,53201,25557,4857,54992
+5365,35409,72461,24850,22493,21617,5229,34419,73593,70834
+5366,489,54011,69715
+5367,46145
+5368,59029,49156,67319
+5369,55794,11585
+5370,52629
+5371,78624,46019,79173
+5372,74133,41998,13410,63322
+5373,19928,8839,15291
+5374,24155,51417,3302
+5375,80593,68785,7498,35405
+5376,77720
+5377,40203,25714
+5378,84,18535,40587,29717
+5379,9830,62572
+5380,17274
+5381,4049,41165,46760
+5382,38315,77487
+5383,14451,72840,49918
+5384,38506,63288
+5385,65773,75759,26408
+5386,59265,57987
+5387,21075,68115
+5388,41907,55074,26106
+5389,24709
+5390,52541,31233
+5391,78377
+5392,76940,9546,35144,72320,4797,41004
+5393,29983,63548,60075,25100,10667,15173
+5394,40928,19081,13760,50633
+5395,52210,38834,37828,1729,6146
+5396,41545
+5397,25611,17630,76938
+5398,13396
+5399,3912
+5400,63818,55622,65974,52516
+5401,65014,57018
+5402,41165
+5403,78955,18802
+5404,69497,25697,68758,44423
+5405,49281
+5406,24129,65965,43453
+5407,44601,77124,71175,8422,42326
+5408,71212,29372
+5409,3280
+5410,12758
+5411,15263
+5412,30356,5426
+5413,2915,14278
+5414,63038,51571,69692,65539
+5415,13007
+5416,77823,29859,25249,30569
+5417,5063,19329,12003,67937,37750
+5418,22451
+5419,78078
+5420,22871,36980
+5421,40959
+5422,50782,69122,26657,35302
+5423,54794,34271,56318,14914
+5424,19342
+5425,53065
+5426,47695
+5427,9466
+5428,5833
+5429,43739,17802,56898,24399
+5430,74191
+5431,24200,38583,74585
+5432,60835,66740,22959,17887
+5433,39913,79283,54252,4248,37295
+5434,32020,29078
+5435,48424,4996
+5436,75158
+5437,49011,76829
+5438,6710,77590,43192,15662
+5439,22116,8514
+5440,39612,51940
+5441,10454,65691,59639,78441,30506,32261
+5442,37433,10565,63818,66756,67424
+5443,47840,21572,6239
+5444,36037,52493,9771,14445
+5445,19284
+5446,39494,17466,24827
+5447,78333,41809
+5448,33562
+5449,51028
+5450,14443
+5451,54218,58455
+5452,10101,11248
+5453,31428,8844
+5454,64203,1273,63127
+5455,35351,75131,42973
+5456,76189,27028,45024
+5457,21833,32891
+5458,72443,46484
+5459,52397,52807,28910,2912
+5460,2382
+5461,18388,55310,51351
+5462,20813,12578,29384
+5463,26073
+5464,1955
+5465,82110,46276,9430
+5466,44322,16120,46990,77369
+5467,75923,7905,65133
+5468,4739,38748
+5469,60775,77378,45543,7708,23270,39421,7568
+5470,57136,13623
+5471,18210,2668
+5472,57633
+5473,12091
+5474,81984,49931
+5475,44960
+5476,58947
+5477,49498,1374
+5478,71423,3604
+5479,20204,7603,69416,25287
+5480,80742,58229,76581,70227
+5481,21805,26508
+5482,41045,23507,23976,8902
+5483,744,75876,12544,81251,32703
+5484,54161
+5485,73082,72803,15733
+5486,47309
+5487,41030
+5488,7463,69353,27251
+5489,4999,19335
+5490,71942,17270,70185,10961,33509
+5491,68808,70768
+5492,43400,3345
+5493,1429,64755,52437,61008,30565,5271
+5494,72604,30707,35650
+5495,17835,57347
+5496,60406,67196
+5497,65792,2555,43850,12468,55254,6502,34574
+5498,9787
+5499,36079,29690,42981,70971,76541
+5500,23888,31573,65185,25787
+5501,57139,38797
+5502,68483
+5503,55584,11989,31758
+5504,41083,3579
+5505,34327,40336
+5506,22459,8298,42824
+5507,32678,12981,40290
+5508,2935,20318,18305
+5509,24899,71266
+5510,41364
+5511,19026,901
+5512,47018
+5513,74488,77020
+5514,44724
+5515,36308,66642
+5516,66104
+5517,40352,73643,19272
+5518,74198,81000,67300,46046,70772
+5519,18611,5984,73725,21849
+5520,12402,15261,14249,80137
+5521,78132,59224,52094,45826
+5522,41179
+5523,52374,52897,79109
+5524,10322,37743
+5525,6675,60577,73411
+5526,46288
+5527,42197
+5528,29440,79473
+5529,24390,69220
+5530,72179,19226,4254,61592,36394
+5531,7606,26576,74858
+5532,77002
+5533,42439,65596
+5534,45023,37863,73553,46896,56116
+5535,11630,34854
+5536,9442,36697
+5537,12305,77107,8,56936,46827
+5538,8250,61731
+5539,75222,11673,1256
+5540,48667,57404
+5541,61122,5926,79814
+5542,74912,17138
+5543,69038
+5544,21844,50176
+5545,42567,1580
+5546,4459,39960,16053
+5547,40588,54240
+5548,19013,9590
+5549,30771,54720
+5550,50486,20687,14969,60637,24932,56225,39191,68097
+5551,27967
+5552,22180,69467,27203
+5553,71314
+5554,4608,15636,11295
+5555,6084,5150
+5556,57146,78606,39496
+5557,16939,17520,72537
+5558,57761,44115
+5559,5326,69822,5026
+5560,47882,8581
+5561,39960,57935,35247,50110
+5562,57890
+5563,33147,8396
+5564,78273,3306
+5565,29146,57361
+5566,54139
+5567,14857,45569
+5568,68679
+5569,71696,57607,49872
+5570,1613,38276,70567
+5571,75101,79184,50470
+5572,17886
+5573,24337
+5574,55297,16774,17479,53328
+5575,63892
+5576,41701,72584,77831,65095,79270,11588
+5577,9827,24168,31845,42335
+5578,80785
+5579,81975,24589,55171,33101,54342,62136,72812
+5580,27613,81366,72776
+5581,24739,27523,57593,40757,59641,60912
+5582,47892,34387,34142,34050
+5583,33771
+5584,73072
+5585,71109
+5586,42127
+5587,27786
+5588,79148,11466,2569
+5589,79386,52575,77893
+5590,58558,34539,32133
+5591,18069
+5592,34647,51274
+5593,4420,31718,39623
+5594,2687
+5595,17028,447
+5596,26484,37310
+5597,46387,45003
+5598,8351
+5599,72916,35149
+5600,35433,56698,17192,6871,60138,72133
+5601,69556,52633,14792,75325
+5602,35683,32051,74924
+5603,71635,66885,34300,74448,72783
+5604,76988
+5605,56658,41234
+5606,14417,5515
+5607,39323,12367,40928
+5608,11510
+5609,68142,45324,74475,7708,46700,9477,68587
+5610,17843,1686,26883,17904,46196,41589
+5611,58063,49165,13873
+5612,58335,52044
+5613,65867,51272,17376
+5614,68106
+5615,45885
+5616,10348
+5617,53977,15016,39726
+5618,6084,72339,59069,70010
+5619,44970,36918,33267
+5620,30210,77799,76188
+5621,26710,36382
+5622,58810,45232
+5623,28028,22212,6420
+5624,51206,41515,65925,71558,25191
+5625,73800,45971,74697
+5626,67395
+5627,36455,37629,49967,38438,11018
+5628,23259
+5629,28396
+5630,29970
+5631,11959,32075,64919,59458
+5632,21755
+5633,313,3715,39344
+5634,60154,12745
+5635,53389,47671,26827,77279,33597
+5636,70786,78530
+5637,9742,5775,61874,6528,46069,42723
+5638,55283,59429,74578,44015
+5639,33357,62472
+5640,35560,37427
+5641,36962,66323
+5642,4359,30584,15130
+5643,24265,70606
+5644,61601
+5645,71982
+5646,59828,24226
+5647,33541,65435
+5648,57808,44196,22894
+5649,53555
+5650,53967,22277
+5651,2972,28385,7935
+5652,48409,62273,79545
+5653,50846,15598,68759
+5654,62650,1543,45097,77500,74972,4273
+5655,4923,42363,72976
+5656,7990,27988,46080
+5657,31099
+5658,42515
+5659,30064,73953,33950
+5660,59091
+5661,73522,58706,47489
+5662,72363,42631,53110
+5663,17132,67500
+5664,38016,78171
+5665,53674
+5666,71426,8689,58949
+5667,34192,23057,23080,27065
+5668,66217,60490,16645,11781,21393
+5669,7008
+5670,13782,11745
+5671,27402,53243
+5672,26083,52780
+5673,54187,6374,12692,23269,33567
+5674,41061,63430,61638,29646,57910
+5675,38856,1791,46041,9034
+5676,69724,56575,50181
+5677,66191,39958,51241
+5678,2178,54764
+5679,10087
+5680,55361,66500,65799
+5681,38770,3944,74268,77585
+5682,27488,4011
+5683,45965,47595,9745,80922
+5684,1251,59365,61890
+5685,2533
+5686,25317,33882,35224,60338,10259,17415
+5687,78990,42885
+5688,77292,8274,2534
+5689,62872
+5690,71242
+5691,68313
+5692,24341,31769,38012,42789
+5693,20524,14046
+5694,40787
+5695,29971
+5696,12907,67269,21811
+5697,8746,55506
+5698,71156,63413
+5699,49485,48335,78946
+5700,36056,3011,49773
+5701,9939,75315
+5702,30770,61919,70517
+5703,42095
+5704,25666
+5705,17505,49663
+5706,60941,49475,51917,51262
+5707,69367,40464,62640,66368
+5708,49640,25349
+5709,10228,34386
+5710,25302,18714,10160
+5711,40196
+5712,41535
+5713,34261,44600
+5714,77897,35045,1929,30600,16310
+5715,56391,73294,4511,10725,23329,75904
+5716,53967
+5717,29670,24607,69234
+5718,30909,29615
+5719,13851,45863,7566,53124,59869
+5720,22214,12559
+5721,2640,67269
+5722,16649,51613,46160,16408
+5723,43897
+5724,53554,52207,5556,54316,29893
+5725,45395
+5726,72393,61499
+5727,76375
+5728,68316,57134,20958,2535,35032
+5729,74792,75919
+5730,72207,43142
+5731,16598,52169,10718
+5732,46934,57307,22627,77836
+5733,14228,64458
+5734,54784,75594
+5735,9614
+5736,9041,79361
+5737,12872,65531,62856
+5738,72869,36600
+5739,24495,79501,64147,22282
+5740,3994
+5741,54586
+5742,56082,7984
+5743,28785,62590,13111
+5744,26935,48088
+5745,49125,48367,57330
+5746,34779
+5747,32318
+5748,59714,10167
+5749,44636,68990,38416
+5750,31547,54166,27317,57954,66367
+5751,51075,15090
+5752,43645,71669,81671,73425,48213,39542,19596
+5753,3659,15768
+5754,10296,12405,45815,52775
+5755,28176,76255,81601,21008,18988,75881
+5756,455,77250,3483,69874
+5757,31942
+5758,77524,21868
+5759,49206,4264,34326,60749
+5760,30720,36809,79015,29910
+5761,28155,20424
+5762,3670,32408
+5763,71832
+5764,48825,65817
+5765,10420
+5766,73658,69308
+5767,28213,48540,22874,37888,62169
+5768,52700,51156
+5769,15294,78843,24538
+5770,19093
+5771,16742
+5772,63409
+5773,71293,80715
+5774,32618
+5775,12303,70466
+5776,43840,2601
+5777,15255,15126,70445
+5778,65011,31071
+5779,47271
+5780,79991,62935,25709
+5781,71969,53979,2833,74795
+5782,33719,78489,41328,23674,72517
+5783,3309,20354,9211
+5784,50402
+5785,57221,54683
+5786,33052,5324,45102,15428
+5787,77312
+5788,77836,16806,77284,70558
+5789,38251,74866
+5790,81233
+5791,62094,232
+5792,81776,69747
+5793,32392
+5794,61384,64031,35942
+5795,81806,45520,853
+5796,63355,47547,42250,1243,53276
+5797,37039,30819
+5798,45558
+5799,43298,40464
+5800,67574,17022,13300
+5801,39555,46253,6378
+5802,25131,64568,65787,19741,57539
+5803,62922
+5804,32330,18802
+5805,76690,47953
+5806,33751
+5807,70165
+5808,70796,8431,12520,4583,5971
+5809,8008,65174
+5810,80301,63412,46204,76689
+5811,60526,62671,1916
+5812,7048
+5813,60791
+5814,37976
+5815,58667,17270,8242
+5816,79695,61048
+5817,24395,5165,49362
+5818,19043,20497
+5819,54429
+5820,48335
+5821,24865
+5822,26253,78530
+5823,44612,77205
+5824,16878
+5825,69901,39605,68979,72207,20697
+5826,76910,30066,59987
+5827,80147,40258,54288
+5828,64145,41805
+5829,41969,68944
+5830,32686,59909,29050,42467,34617
+5831,25689,37300,24094,10712,44167,26320
+5832,71309
+5833,8321
+5834,69973
+5835,20210
+5836,3177,12861
+5837,69821
+5838,9474,30269
+5839,71730
+5840,35519,13295
+5841,48404
+5842,26014,18392,4933
+5843,76756,32787,45094
+5844,78549,8820,14264
+5845,58570,39464
+5846,41128,81523,8632,47688
+5847,36855,75780,77821
+5848,8522,4115,1226,42528,15962
+5849,81512,12204,52127,76104
+5850,74368,47217
+5851,1075,70603,24469,79500
+5852,42363,18441,28283
+5853,48859,21004
+5854,47747,78003,51245,77839,25467,63799,40710
+5855,29037
+5856,67517
+5857,21938
+5858,1851,25074,81710
+5859,53849,5689,8412
+5860,60741
+5861,2570,41409,9007,47952
+5862,26273,49392,47614,18344
+5863,27686
+5864,64467,42330
+5865,37848,7114,69633,34302
+5866,6502,81609,63304
+5867,38625,55844
+5868,11829
+5869,47008,56856
+5870,72407
+5871,28043
+5872,72534
+5873,5102
+5874,31150,58982,4533,74636,53435,63594
+5875,59165
+5876,28557,54616,56014,50546,45662
+5877,5064,48919
+5878,44314,23978,29889,40620,38133
+5879,23161,70638
+5880,2785,36206
+5881,76368
+5882,63347,35766
+5883,59389,13569
+5884,66172,71414,15526
+5885,47640,71061,73889
+5886,38061
+5887,51936,53166
+5888,65270,77091,39861,35331
+5889,29212,10233,3813
+5890,46466
+5891,42965,63358
+5892,75936
+5893,72213,4306,60659
+5894,29106
+5895,13686
+5896,77738,80858,73748,5510
+5897,23075,29678
+5898,54877,16425,59645,52701
+5899,10450
+5900,80331
+5901,3752,41337,33008
+5902,79215,37757,3974,11536,11227
+5903,18197,33909
+5904,11703,4152,21338
+5905,27758,55302
+5906,10577,24719,70461,26474,14936,37703
+5907,59612,29416,32391,49782
+5908,59537
+5909,57636,62340,71434
+5910,29281
+5911,62681
+5912,16851,59031,2669,56849,58967,78722,69580
+5913,5984,72664
+5914,58587,12462
+5915,55953,17736
+5916,36038
+5917,23207,55264,42219,50837
+5918,5147,13338
+5919,35786,66766,10897,38357
+5920,60037,42526
+5921,2968,79022,62695
+5922,36260,25171,60329
+5923,14781
+5924,31942
+5925,25683
+5926,51065,57299
+5927,6008,24327
+5928,79634,54734
+5929,58875
+5930,77885
+5931,42897
+5932,28166
+5933,43713
+5934,42898,8540,67500,61042
+5935,72416
+5936,74900,26427,30962,37844
+5937,42616,784,49595,22563
+5938,35056,15131,8475
+5939,12559,73820,4094,711
+5940,2003,48487,24187
+5941,59256,69170
+5942,68623,51176,58989
+5943,45987,20205
+5944,53116,13624
+5945,40368,70497,59333,14413
+5946,56215,37603,45128,67570
+5947,5341,73880
+5948,57475,37906,36748,49586,9347
+5949,19148,59987
+5950,31473,32765
+5951,12926,76119,63777
+5952,77321
+5953,70516,24099,78034,81914
+5954,22636,5174,50466
+5955,62465,795,216,52125
+5956,2039
+5957,69748,30339
+5958,58555,17689
+5959,81866,34280,42192
+5960,72534,252
+5961,36295
+5962,42127
+5963,54903,72978
+5964,10682,25476
+5965,11059,75773,14262,20147,71767,53210,22461,54475,38885
+5966,29150,40201
+5967,46400,59714,9957,32978
+5968,81557
+5969,39083,14993
+5970,39797,7090,71547
+5971,54299
+5972,55549,46601,70746,52698,73803,61840,63088,35466,24435
+5973,454,56125,60089,74857
+5974,61921,63093
+5975,50205,17419
+5976,31482,70652,14960,10848,19889
+5977,4104,38788
+5978,65708,2371
+5979,39448,43132,52467
+5980,64467
+5981,25157
+5982,10966,52186,52216,37984
+5983,49254,17114
+5984,3133
+5985,22124,38356,9523,42563
+5986,13835,175,22408,52783
+5987,33971
+5988,77151,46672,81331
+5989,47913,77192
+5990,61986,17498,5443,68780,68212,28090
+5991,27737
+5992,79598,67270,56149
+5993,79859,1507
+5994,79336,49001
+5995,81540
+5996,45989
+5997,48849,79212
+5998,7420,80843,2260
+5999,29541,21286,48388,27651
+6000,49490
+6001,71082,44204,58441,2528,23040,45450
+6002,81284,4123
+6003,30574,24429,67926,20346,2269
+6004,78214
+6005,57495,11563,31327,14563
+6006,57105,32810,49841
+6007,39222
+6008,69774
+6009,69767
+6010,62188,41055
+6011,10031,4262,24845
+6012,26688
+6013,29076
+6014,42636,35563,80202,37603,64034,20816,81333,7305
+6015,59859,64246
+6016,74037,65377
+6017,66122,17248,58733
+6018,70843,78254,62438
+6019,73284,25661
+6020,44715,53491
+6021,50999,46545
+6022,71865,55036,66963,25659,77286
+6023,73593,35815,42806
+6024,54991,15967
+6025,32271,70388
+6026,26846
+6027,33971
+6028,37720,19658,34850
+6029,33168,59992,77028
+6030,17744,32955,62990
+6031,48979,28886,37980,58313
+6032,73122,59110
+6033,4494
+6034,6329,31571
+6035,56323
+6036,67989,33793
+6037,70886,54968,81453
+6038,880,78171,24660,26246
+6039,58473,62187
+6040,17226,3215,78003
+6041,23692,45717
+6042,37993,14191,36563
+6043,11622,81435,46807,36561
+6044,70311,35609,40023,50722
+6045,80944,56883,67582,78792,72588
+6046,39010
+6047,56587,65073,60033,10198,5169
+6048,20067
+6049,25459,63785
+6050,7555,25649
+6051,68771,37429,28554
+6052,44973,38164,62293
+6053,48245
+6054,9360
+6055,779,75403,74226
+6056,55483,78913,66884,61346,4094,57844
+6057,45762,68372,35962
+6058,38398,44002
+6059,43703,55728,62111,80387,65537,64074
+6060,35468
+6061,80933
+6062,61893
+6063,26771
+6064,40111,77238
+6065,7567,14150,7831,24182
+6066,17671
+6067,25043,3791,36953
+6068,51522
+6069,51144,64468,6831
+6070,75293
+6071,23434
+6072,66539,60655
+6073,23356,8075,20056,33100
+6074,23639,4049
+6075,73909,44495
+6076,31932,73438,64964,21713,22757,61584,6271
+6077,22792,61802,30373
+6078,81700
+6079,1100,5897
+6080,29932
+6081,18480
+6082,61128
+6083,17818,77935
+6084,15985,6840
+6085,69697
+6086,10900,52569
+6087,43630,79202,80001
+6088,28507,64782
+6089,8429
+6090,57322
+6091,69668,19207
+6092,41313,13773,33913,50692,11111
+6093,50478,10436,12076,53134,51009
+6094,70843,2144
+6095,62148,14446,54818
+6096,34476,66426,4525,9939,59279,4885
+6097,26172,32291
+6098,55962
+6099,74643
+6100,31533
+6101,42440
+6102,29154,28716,76525,33405
+6103,70848
+6104,26506
+6105,26664,9112,1231
+6106,71442,3751,56484,26793,10894,61238
+6107,27588,70291
+6108,36900,48335,48635
+6109,61571
+6110,62118,25900,5762
+6111,21714,39603
+6112,71309,78064,28466
+6113,44344
+6114,11505,79003,41207,15325
+6115,16754,11509,5998
+6116,68370
+6117,34984,40280
+6118,40671,59737
+6119,81838,37537,67648
+6120,7189
+6121,61053,15018
+6122,34182,39242,15207,40302,77772,39253
+6123,39962,50602,4671,35170,27041
+6124,39125,57645,71491,4666
+6125,38668,41138,3462
+6126,66153,81944,38925,7164
+6127,26667,38368,79454
+6128,56709,70099,39020,13921,58483,20146,6602
+6129,64868,23950,77314,17993,48227,33280,51446
+6130,66186
+6131,12035,75483
+6132,75367,50743,13309
+6133,32881,13587,13382
+6134,37889,6564
+6135,43882,42323,73684,53253
+6136,54503
+6137,18228
+6138,79173,7303,79282
+6139,7967,26674,50916
+6140,33802
+6141,77981,14717
+6142,5027,57128
+6143,36747
+6144,10972
+6145,57213,41698,37130
+6146,75856,35847,21830
+6147,36682,40401,66805,74846,5182
+6148,25695
+6149,11026,14913,67964,70963,45899
+6150,36395,8151
+6151,11841,45634,6773
+6152,37383,44785,45377
+6153,73877,74729,73957,18579
+6154,65877,17958,43694,53658
+6155,73212
+6156,24228,25827
+6157,78145,55954
+6158,50695,6851,39662
+6159,40497
+6160,8737,5611,61282,64081,76163
+6161,45257,44314,47516
+6162,19234,34102
+6163,28704
+6164,6430,24296,5575
+6165,24462,56714
+6166,45838,24139,36727
+6167,15071
+6168,40825,13721,6811,44468
+6169,54320,60796,56401
+6170,55838,44626
+6171,78085
+6172,41112,77598,40736,36154,7166,24039
+6173,54173
+6174,5312,28341
+6175,12320
+6176,32448,53102,49118
+6177,44311
+6178,3133,16749,53974
+6179,19311,43327
+6180,58486,53398
+6181,47850
+6182,52821,60853,33221,35818
+6183,18029,80708,4319,1823
+6184,74435,68920
+6185,53499,72178
+6186,12408
+6187,72822
+6188,49585
+6189,5652
+6190,47493,60207,40527,32655
+6191,37442,76693
+6192,16571,49638,31733
+6193,58769,46760
+6194,26612,38013
+6195,79638,59279,76285,39165,82097,10741,36991,45935
+6196,72830,30935,24262,61021,27639
+6197,17073
+6198,10823
+6199,7679,66981,13782
+6200,26969,31694,13887,73604,42410,30519
+6201,16973
+6202,54867,26879,45461
+6203,27361,55819,39269,74519,25938
+6204,39029,62304,7251,70522
+6205,52692,9806,80085
+6206,15959,79377,49486
+6207,54299,62949,80478
+6208,70850
+6209,48986,76953,52932
+6210,44527
+6211,59124,45862,24746
+6212,16499,42859,79510,11685
+6213,52261
+6214,81813,52458
+6215,48256
+6216,53323,43500,14468
+6217,48902
+6218,17140,38035,2957,71628
+6219,41980,52534,26844,60284
+6220,42420,29621,63737,26962
+6221,35351,40381,5913,46806
+6222,57170
+6223,7907
+6224,62598,24377,38348,23300,70278,17004,13525
+6225,23992
+6226,64337
+6227,5557,59746
+6228,78064
+6229,10614,74129,56120
+6230,28039
+6231,66812,61519
+6232,12005,72550,79442
+6233,53680
+6234,63347,43922
+6235,78620,21120,10800,73731
+6236,45671
+6237,53709,41400,72447
+6238,35886,34542,46204,49103,57784,13265
+6239,73516
+6240,33352
+6241,71153,12536
+6242,39305,74303,17016
+6243,64321,14114,1973,59872,38329
+6244,81816
+6245,47257
+6246,7336,4594
+6247,73035,51052
+6248,26790,79198
+6249,25590
+6250,35925,73696
+6251,66010
+6252,60741
+6253,80463
+6254,16691,759,74719,21443,12407,81118
+6255,60329,67678,31569
+6256,47293
+6257,44868
+6258,36174,60409
+6259,45813,51938
+6260,67882
+6261,39750
+6262,75603
+6263,17821,50649,63858
+6264,40723,75374,71328,44285
+6265,51078,65906
+6266,82055
+6267,51875,33138,52764
+6268,11882,42554,34752,21789
+6269,21424,4720,36989,51132
+6270,54696,36543,31858,77551
+6271,32491
+6272,79992
+6273,6118
+6274,28950,243,25106
+6275,78709,73584
+6276,49873,33125,13987,16575,57068
+6277,75538,2510,63153
+6278,74411,44789
+6279,78152
+6280,22333,12181,15881
+6281,47201,36167
+6282,62500,10567
+6283,8250,20031,13621,43980,73037,59367,3837,81009
+6284,7299,55346
+6285,65396,29365,58547,17555,33507
+6286,22408
+6287,29250
+6288,19217,43809
+6289,25373,26167
+6290,40865
+6291,80028
+6292,51791,34209,23087,60071,4068,30127
+6293,6654,18966,71231
+6294,33751,73361
+6295,30775,73615
+6296,73076,70852,59689,61396
+6297,80938
+6298,59973
+6299,62333,34605,36462,7383
+6300,319,31983
+6301,40723,80020
+6302,40344,57841,57869,81440
+6303,11621,75674,24381
+6304,53578,25590
+6305,13679,63051
+6306,68706,46659,71619
+6307,2791,8836
+6308,28188,3454,51899,24755,44984,74295
+6309,10782,13921
+6310,61193,63413,65843
+6311,48841,31552,30106,43878,77762,11190
+6312,57043,31396,1435
+6313,58319,81457,12969,19020,62469,40357
+6314,51059,69459,3118
+6315,5596,13999,35513,60009,54016
+6316,23234,43286,23853
+6317,79704,72717,16068
+6318,7016
+6319,17307,75375,9645
+6320,32037
+6321,20808,39897,12449
+6322,57354
+6323,18159,28861
+6324,49590
+6325,45131
+6326,8683,7066,21925,81594
+6327,13971,56252,67839
+6328,64071
+6329,2533,55827
+6330,45420,35241
+6331,32363
+6332,2967
+6333,58599,18778,48016,71564,12959
+6334,7741,79901
+6335,54682,13970
+6336,75177
+6337,77741,38196,2901
+6338,60255,21584
+6339,12642,28651
+6340,79154,42849,25233,47162
+6341,52132,7053
+6342,16167,7360
+6343,17153
+6344,17347,50664,70993
+6345,11576
+6346,28400,10348
+6347,45708
+6348,69693,53237
+6349,69,65216,1061,40965,46070,48450,65931,11838,42346,7370
+6350,40424,21627,33240
+6351,1048,20829
+6352,30392
+6353,49409
+6354,25082
+6355,43684,10335
+6356,44972,33921,7138,15297
+6357,15596,44643,79817
+6358,3604,48628,57980
+6359,69013
+6360,81989,23767
+6361,47011,81132
+6362,30489,52127
+6363,10425
+6364,14665
+6365,45862,48127,61008,8473
+6366,75068,48186,75532,42965,1512,55758,23921
+6367,57482
+6368,25091
+6369,4719
+6370,61194,2192,17612
+6371,17018
+6372,30958
+6373,74563,67413
+6374,43655,69550
+6375,8355,28733,70499
+6376,31132
+6377,45604
+6378,79825
+6379,7240,25802,37479
+6380,13919,62484
+6381,57329,81974
+6382,49951,5200,43581
+6383,68642,22776,1195
+6384,18917,34372
+6385,7789,18461,71962
+6386,68117
+6387,13525,11128,45093,66625,52697,68367,47987,51800
+6388,59551
+6389,74402,41356,28391,412,19528,6465
+6390,80369
+6391,21925,75864,9224
+6392,73370,27046
+6393,47447
+6394,44038,14138
+6395,75171,50399,81733,43377,66033,77791
+6396,44200,71949
+6397,36920,55795,8178,33541
+6398,22162,59235,71138,48186
+6399,75422,36302
+6400,32683,55159,1348,45443
+6401,56712,48778,70172,65941
+6402,67753
+6403,36260
+6404,26214
+6405,72987,4166,72200,80859
+6406,47403,66902,12960,21449
+6407,27268,65192,39145,70466,6758
+6408,57471,8627
+6409,77733,30568
+6410,36824,23723,59839,30941
+6411,847
+6412,41365,49735,6092
+6413,56636
+6414,10536,54273,27290
+6415,16170,59054,31348
+6416,38639,69527
+6417,37568,43769,25615,15314,72569
+6418,7172,53643,9037
+6419,64845,64995,39093
+6420,76422,58632
+6421,36844,47289,5624,16589
+6422,73332,41,57125,73587
+6423,56773,74953,12468
+6424,45236
+6425,27338
+6426,61523
+6427,36650,79952
+6428,16292,2069,68073
+6429,11494
+6430,5391
+6431,58957,24855,58741,12967,70207
+6432,37380,74873,81795,82123
+6433,62559,71321,74745,60695
+6434,14526,40572,68024
+6435,42827,23476,54128,6481,77831
+6436,24728
+6437,63210,38995
+6438,48127,2672
+6439,80152,42496,35889
+6440,57075,78773,46791,35114,72429
+6441,56401
+6442,31158
+6443,15081,24521,56663,33012
+6444,13390,38784,73440
+6445,48401,35920,72861
+6446,59483,27434
+6447,22593
+6448,18691,38438
+6449,7220
+6450,66905
+6451,11649,58976,42769,70510,37623
+6452,26398,4379,16083,47778,24609,43420,81569
+6453,58449,46996
+6454,42162,46821,55084
+6455,71175,76107,43244,39562,48236,13943,59827,46217,57713
+6456,56678,13703,22897,78894,3074,25930
+6457,58917,28378,3310,46110
+6458,72925,80085,56670
+6459,9752,12435,22709
+6460,9382,43334,72784,36722
+6461,55142,6353,62236,70704
+6462,33440,26826
+6463,52357,32574,51058
+6464,48355,35775,38845,6590,17705,37512
+6465,47887,70165,23356
+6466,17756
+6467,72439,12861
+6468,3696
+6469,13205,22410
+6470,21837,17264
+6471,61650,80306
+6472,44976,32171
+6473,31893,29284,69686,65443,20530
+6474,55917,29477,12893,27562
+6475,8790
+6476,81456,26446
+6477,13622,72910,47851
+6478,25308,28339
+6479,45956
+6480,79060,67719
+6481,72275
+6482,73425,39319,27014
+6483,63833,68849
+6484,29046,51635
+6485,74515,58258,27410,55078,54057,57841,59578,61729
+6486,61179,65788
+6487,71515,60948,27608
+6488,32725
+6489,51686,70592
+6490,47973
+6491,59262
+6492,21396,73562,50682
+6493,78672,917
+6494,70213
+6495,56908,58203,49950
+6496,55373,29397,50884,16855,34523
+6497,55799,24445,51812
+6498,32865,17458,8642
+6499,23226,68915,11508
+6500,14352,69529
+6501,6583,42726
+6502,30958
+6503,67000,81010
+6504,20620,69561
+6505,56141,56439
+6506,51065
+6507,81622,78990
+6508,67711,51409,53555,72037
+6509,76638,16673
+6510,16015,78614,12396,30595
+6511,12936
+6512,18216,30291,7563
+6513,38996
+6514,52568
+6515,23903,64781,39668
+6516,61536,28591,6897,75420
+6517,9606,18554
+6518,50458,66798,64256,48064,69859
+6519,80002
+6520,844,47092
+6521,50446,5487,55734,17265
+6522,47278,50449
+6523,68131,68843,20725
+6524,72466,67397,2163,26520
+6525,14908,72753,48468
+6526,48856,66158,55466,24269
+6527,69178,51785
+6528,52798,65093
+6529,35716,65379,25686,15907
+6530,29416
+6531,37197,60242
+6532,75021,71195
+6533,22519,77454
+6534,57590,2839,41426
+6535,9850
+6536,30232,27015
+6537,24857
+6538,13632,1608,73361,1055
+6539,61527
+6540,10850
+6541,72309,51156,51754
+6542,15762
+6543,35986,16891
+6544,32665,69326
+6545,26564
+6546,56505,17226,5361
+6547,76700,10861
+6548,28264,48846,46152
+6549,61955
+6550,13028,25933,38123
+6551,5939,24323,17179
+6552,71061,66290,59503
+6553,69964
+6554,62303,28230,71137
+6555,4577,75269,63531
+6556,23740,18157,9379,47159
+6557,64509
+6558,56670
+6559,62250
+6560,75719,45174,27121
+6561,20064
+6562,73422
+6563,2875,35046,75483,25763
+6564,20361
+6565,24483
+6566,33404,12607,74701
+6567,27879,49710
+6568,65309
+6569,19617,10623,54983
+6570,67505,32420
+6571,63430
+6572,5187
+6573,79623,39323,69591,56311,23825
+6574,27967
+6575,21272
+6576,72954,14508
+6577,25374,45549,26001,32130
+6578,49009,25087
+6579,16562,32885,68626,44719
+6580,21282,63109
+6581,1525,22920,43966,47653
+6582,743,47953,81409
+6583,21310
+6584,2695,68952,55467
+6585,8666,56058,55579,56280
+6586,34267,40086,72535
+6587,5324,22657
+6588,7837,80234
+6589,31746,77084
+6590,53491,40619
+6591,25458,950
+6592,62323,49970,7795,72483,25191
+6593,77083,19106,61573,31641,52618
+6594,36975
+6595,62326
+6596,73178,64743,9263
+6597,73705,25648,4142
+6598,49398,47498,45841
+6599,34203
+6600,42372
+6601,40740,26919,12852
+6602,34504
+6603,19813,28038
+6604,26739
+6605,54035,27637
+6606,70970,18386,48676
+6607,43269
+6608,51319,31424,21665,68918,10152
+6609,73341,13829,48116
+6610,6632,59096,74686
+6611,35847,70629
+6612,42326,27868
+6613,15886,51951
+6614,38766,23685
+6615,41601,21841,43837
+6616,48295
+6617,38323
+6618,42740,56544,81889
+6619,914,72767
+6620,8715,48244,17470
+6621,54571,80365
+6622,4241,51057,61875,77955,62002
+6623,37423,58681,65409
+6624,7393,75785
+6625,52590,2607,32426,6206,74059,74839
+6626,64409
+6627,27071
+6628,2464,34198,27684,43088,43944
+6629,24317
+6630,55236,59469,12186,25553,32313,53722
+6631,35713,12106,7559
+6632,25425
+6633,45074
+6634,16728
+6635,76047
+6636,23267,25865
+6637,22787,61113
+6638,63174,63511
+6639,67788
+6640,79506,20090,45909
+6641,71800,53499,65339
+6642,16233
+6643,72928,30461
+6644,8085,71678,13500,1349,41934
+6645,81652,6626,39412
+6646,40024,21384
+6647,8634,44580,33675
+6648,42635
+6649,8804,13945,13246
+6650,49067,14194,32886
+6651,71788
+6652,12292,44448,59226,3732
+6653,49513,18800,41068
+6654,46755
+6655,51108
+6656,81997,74409
+6657,31745,11898,75927,52655
+6658,13988,71891,13019,21302,51383
+6659,69638,74013
+6660,47017,9882
+6661,79762
+6662,1898,22612
+6663,51522
+6664,59666
+6665,37597,49236,1415,12183,54883,54565
+6666,58794,21663,15476
+6667,40028,19090,44451
+6668,28233,33962,7767,67695
+6669,28657,30029,14999,51649
+6670,1877,66342,70999
+6671,43748,50604
+6672,66234
+6673,20642,36765,50042
+6674,22838,56423
+6675,41601,25908
+6676,67637
+6677,4225
+6678,38552,21713,39741,53366
+6679,76896,56252,70139,31680,71053
+6680,78973
+6681,38630,79288,24762,78366
+6682,40384,6854
+6683,58107
+6684,54101,44042
+6685,81557
+6686,47668,49289,23585,75793
+6687,73116
+6688,65242
+6689,82011,58104
+6690,49057,35434,41101
+6691,18383,71715
+6692,80420
+6693,57312,78367,61567,8291
+6694,44354,66992,10263
+6695,46437,32556
+6696,3707,55304,39671
+6697,82016
+6698,41834,396
+6699,1276,14949
+6700,60167,12936
+6701,41177
+6702,792
+6703,36666,5688
+6704,20332,1558,61710
+6705,28830
+6706,7516
+6707,44892,8439,78222,3209
+6708,23038,62640
+6709,78452,4822,40665
+6710,45081,9343,1372,77659,33031,50829
+6711,67804,63578,7227,7418
+6712,9524,53865
+6713,19809
+6714,50883
+6715,8118
+6716,41322,70821,72982
+6717,17684,23060,56711
+6718,63421,36682,40966,37419,72354,73076
+6719,18887,6641,51839
+6720,26976,30200
+6721,19188,26042,11843
+6722,5532
+6723,50379
+6724,19662,14065,66812,50823,38583
+6725,75085
+6726,52579,29148,764
+6727,18201,42588,81229,13014,56523
+6728,64091
+6729,1883,58946,37569
+6730,69681,11935
+6731,42148
+6732,76284,76914,7091
+6733,45450,81074
+6734,19087,78020,68236,39585,19931
+6735,52556,77453,60620,75864
+6736,47477,59968,77045,55634,55654,11710
+6737,41985,68505,74614
+6738,10039
+6739,62241,63023
+6740,78085,48227
+6741,59797,50459
+6742,62633,65051,73877
+6743,76157,16637,54300,5211
+6744,25511
+6745,25755,69007
+6746,56638,77787
+6747,15746,44612,26605
+6748,41197,21845
+6749,78785,20466,70942
+6750,80229
+6751,51311,63331
+6752,49386,3414,8500,17196,31270,9649
+6753,18156
+6754,34935
+6755,37165,77378,20115,26389
+6756,13372,81610,44220
+6757,14621
+6758,18889,53456
+6759,55863,60607
+6760,10281,74301,19393,59983
+6761,52659,43648,27338,39841,48560
+6762,66251,73911,32679
+6763,9956,17494
+6764,18487,24076,10039
+6765,59450,82157,51251,14416,60395
+6766,15853,71376,56556,58174,39164
+6767,58266,40894,45466,61189
+6768,29269,68583
+6769,53129
+6770,73670
+6771,21365,51063
+6772,17736
+6773,39528
+6774,79832,13508,26645,59560,17317
+6775,45558
+6776,59168,57992
+6777,22426
+6778,66316
+6779,46189,7841
+6780,67162,786,63116,65,39137,78436
+6781,1423,9046
+6782,68413
+6783,26158,31332,16796,20518,76941
+6784,79411
+6785,21530
+6786,54285,30283,71766
+6787,24128,14175,79664,1920,34671,29376,52432
+6788,2639,16181
+6789,44957,50836
+6790,30148,29971
+6791,12499,20886,46124
+6792,2290,3731,47331,68339
+6793,80491,40431
+6794,42344,43359,23093,26396,18160
+6795,20487,55839,16696
+6796,60485,28512,66683,7552,18585
+6797,42399,79025,73677,72327,66489,3049,46401
+6798,42839,54924,42416
+6799,43566
+6800,39903,25737,68051
+6801,33348,78291,31245
+6802,2032,65543,20778,21197
+6803,34491,73025,27318,13345,45640
+6804,24441,64895
+6805,67702,72473
+6806,29295,34372
+6807,32837,55610
+6808,34168,15435,72174,12518
+6809,60072,70,79545
+6810,7918
+6811,1473
+6812,27486,41763
+6813,29578
+6814,53639,57836,42189,77204
+6815,32876
+6816,18777,58390
+6817,78001,3127,54996,29211,74724
+6818,12602,31926
+6819,41245,21613,27447
+6820,9251,32983,46050
+6821,24888,33032
+6822,33574
+6823,26331,50676
+6824,81695,28008,33164
+6825,7962
+6826,60461
+6827,71981,69948,11836,7900
+6828,63190,24151,7219,52902
+6829,18104,63383
+6830,1699,76870,43809,72131
+6831,11168
+6832,6646,64042,28995,22459,28440
+6833,2990,12385
+6834,53086,3449,69917,28940,44526
+6835,9376
+6836,32679
+6837,49550,21615,37103
+6838,46797,44381
+6839,64795
+6840,21841
+6841,378,38416
+6842,40305
+6843,40957,52536,16877
+6844,3729
+6845,47169,81440,17475,69130
+6846,36053,60040,53651
+6847,46420,6012,44612
+6848,41341
+6849,36438,20842
+6850,43970,57050,56433,19610,56975,21804,75561,55024
+6851,78556
+6852,2549,41982
+6853,15565,23885
+6854,56688,31609,56315,81336
+6855,19530,26415
+6856,75379,57491,70309
+6857,4409
+6858,52137,15209
+6859,11641,71507,17985,18319,35652
+6860,1005,40139
+6861,54038,63620,77219,21868,33376
+6862,6146,6491
+6863,64449
+6864,64074
+6865,74992,16470
+6866,66175
+6867,54595,12324
+6868,51712,37271,71561
+6869,37203,12976,49259
+6870,16866
+6871,156,81461
+6872,70388,35062
+6873,6259,9693,78057,18789,80041
+6874,79171,75115,51326
+6875,13170,71259,43875,725,58443,199,169
+6876,46174
+6877,37114,73281,10917
+6878,12795,66307,31259
+6879,48387,62772,58232,62472
+6880,53976,41476
+6881,66012,69470,30221
+6882,21250,3901,16191,53359
+6883,1929
+6884,22373,34534,57657
+6885,57828,42942
+6886,11505
+6887,45856,18008
+6888,22537,11406,72043,43004,45917
+6889,80080
+6890,69718,40920,40840
+6891,52094,41111,27804,19516,26422
+6892,75657,8976,7454
+6893,33995
+6894,6063,56729
+6895,34448,16946,7174,70261
+6896,34064,39283,4137
+6897,75233
+6898,29483
+6899,34734,77487,63078,80559,42665,53217,17551
+6900,56082,73133
+6901,69855,47421,71908
+6902,66589
+6903,14699,28319
+6904,62619,73763,19491
+6905,56688,19967,51508
+6906,11536,64585,62870,26432,58223
+6907,37936,28646,66998,51147,3771
+6908,3721
+6909,27796,17720,70064
+6910,60658
+6911,71248
+6912,32665,80684
+6913,6488
+6914,75954,33879
+6915,78135,53655,78373,41330,10830
+6916,46577,53456
+6917,39454
+6918,1695,75933
+6919,9071,31169,62627
+6920,3709
+6921,80004,14551,38284,48278,60139
+6922,31712,53469,74136
+6923,3289,63046
+6924,51330
+6925,80615
+6926,57146
+6927,34114
+6928,30833,51757,80651
+6929,49293,62165
+6930,69057,31754,61654,10341,42804
+6931,17211,13026
+6932,12456
+6933,42647,13297,20159
+6934,57486,961
+6935,31902,67821
+6936,68604,37003,76723
+6937,68264
+6938,43158,40116,14853,28264,67067,44104
+6939,30164
+6940,39723,57487,13329
+6941,65607
+6942,12688
+6943,68079,68391
+6944,79025,4165,6622,24916,37977,24325,67292
+6945,22197,2588,46744,30619
+6946,77583
+6947,20426
+6948,37063,30275,23369
+6949,71998
+6950,61015,54079,76526
+6951,68956,22428,74451,41987
+6952,79653,1994,29186,18156,2252
+6953,70527,7611,49386,43535,51616,55019,28174,33887,76178,8703
+6954,51220,54220,10325,24376
+6955,16598
+6956,14220,5568
+6957,79301,41358
+6958,45818,17900
+6959,46662,58382
+6960,29593
+6961,6012
+6962,67965,13256
+6963,48984
+6964,57820,59580,56471,69495
+6965,13362,78859,48408,27933
+6966,10043
+6967,66878,45997,1183
+6968,60604
+6969,76516,81520,81004,60246,43701
+6970,81010,53166
+6971,3544,46125,80490,58982
+6972,13987,4962,18644
+6973,75489,73958
+6974,62734,18654,68409
+6975,13506,78864
+6976,36400
+6977,73646,23546
+6978,46878,44204,45423,26209
+6979,5960,71640,63051
+6980,64218,10426,72209,48423
+6981,24045,67294,36994,54494
+6982,76814,25726
+6983,73665,52352,52240,15862
+6984,11462,36299,48825
+6985,2385,2318,33321
+6986,47079
+6987,35942
+6988,29743,12198,23745
+6989,21248,52476,5337,29760
+6990,54536,75870
+6991,15011
+6992,48707,13807,24341,68049
+6993,16153,36835
+6994,13861
+6995,49041
+6996,46157,72606
+6997,16649
+6998,8689,80898,37499
+6999,46529,71459
+7000,75079,126,74770,65480,54940
+7001,64871
+7002,71873,76145,16074
+7003,70012
+7004,52831,9918
+7005,77331
+7006,34202,39371,1732
+7007,65419
+7008,63020
+7009,72255
+7010,70794,44184
+7011,9729
+7012,43001,1174
+7013,9313,6588,20991
+7014,25794
+7015,52902,17911
+7016,30950
+7017,59423,62430,19216
+7018,61480
+7019,45941,51745,11120
+7020,226,58038,37430,69977,19791
+7021,73725,32617,66266,10067
+7022,65183
+7023,15682,28992,67432,81456
+7024,76070,9041,1782
+7025,17924,33158,69888
+7026,66681
+7027,5436,2198
+7028,11219,23767,21008,56438
+7029,70806,79656,12112,34924,39949,65479
+7030,66248,44318
+7031,8180,29685
+7032,6322,73753
+7033,46009,17861
+7034,4002,13651
+7035,10128,211
+7036,4049
+7037,70142,81221,82026,25456
+7038,70138,74039
+7039,51062,61452,31661,9074
+7040,21326,40478,66155
+7041,28103,45047,1052,26186
+7042,377
+7043,36451,41736,54994,22698
+7044,14802,49972,37449
+7045,57305,70234
+7046,10108,12111
+7047,41954
+7048,21879,74487,52780
+7049,36835,61015,20032
+7050,75210,44192
+7051,23407,18879
+7052,50048
+7053,57828,58290
+7054,47785,3015
+7055,53993,21060,63381,72434,11411
+7056,43254
+7057,46603,81836
+7058,61910
+7059,59183,52669,19321,72130
+7060,19139
+7061,77142,79750
+7062,44273
+7063,11847
+7064,16164
+7065,15896,10376
+7066,51938,72974
+7067,20407,58058
+7068,19500,43462,59129,62545
+7069,27628,23927,15619
+7070,56898,68725
+7071,30102
+7072,67591
+7073,39699,48918,22294,10769
+7074,43748,24913
+7075,76932,45631,122,44142
+7076,24182,79184,52262,14819
+7077,12049
+7078,40749,30910
+7079,48375,8295,67645
+7080,65647
+7081,46592,47708,56950
+7082,3175,5602,45186
+7083,24391,75890,12590
+7084,12585,12468
+7085,66761,7530,30870
+7086,44429,28116,63717,37255
+7087,29011,14479,8623,63763,57510,8980
+7088,21304,38407,31699,45166,26599
+7089,8599
+7090,31385,44023,49085
+7091,15662
+7092,65488,3575
+7093,58706
+7094,58799,47060,11108,67451
+7095,26746,36709,39955
+7096,34012,58559
+7097,44294
+7098,61888
+7099,22249,80085
+7100,21163
+7101,67027,28716
+7102,43205,3430
+7103,42622,31624,71329,5143
+7104,5629,43567,49572,32637,72564
+7105,23009,3449,43940
+7106,71411,68460
+7107,61185,52625,75685
+7108,47273,53210,50728,74341
+7109,8719,78018,12026
+7110,17000,50981
+7111,57262
+7112,79282,74650
+7113,79719
+7114,28827
+7115,73781,44368
+7116,9332,16987
+7117,49609
+7118,34257,45006,6751
+7119,71777,69674,38641
+7120,29573,61158
+7121,70642
+7122,69450
+7123,56152,20073,35229
+7124,47815,70012
+7125,71581,2165,17469
+7126,42274,8382,21794,81245,25230
+7127,65882,48610,58260,80957
+7128,13940
+7129,27674
+7130,68272,44812
+7131,68973,53358,78612
+7132,27230,58166
+7133,78658,32806,51836
+7134,9022,6225
+7135,4845,68140,76141,76855
+7136,711
+7137,34760,56711
+7138,38821
+7139,70877,35382,1115
+7140,62072,59006
+7141,4603
+7142,38680,50073
+7143,46134,5195
+7144,42071,40499,40745,79143
+7145,6897,57636
+7146,20159,72823
+7147,79934,39323
+7148,56935
+7149,37277,74044,1000
+7150,35958
+7151,73571,14258,42364
+7152,41367,57379
+7153,81991
+7154,54334
+7155,24827,14927
+7156,61982,58282,39198,75070,8510
+7157,56389
+7158,45796
+7159,63731
+7160,16255,61236
+7161,26168,59295,58023
+7162,58587,31948
+7163,11501
+7164,57174,24475,28587
+7165,38924,16608
+7166,61994,50502,61570
+7167,58331,2520,42580
+7168,1811,32685,81066
+7169,59481
+7170,36602,58675
+7171,33903,66114
+7172,32829,24389,42040
+7173,23544,24708
+7174,21556,17231
+7175,2287
+7176,27031,74826,32938
+7177,14226,49459
+7178,65196,51566,13226,52137,63740
+7179,68299
+7180,33672,63001
+7181,65826
+7182,71573
+7183,52679,30940,1397,16854
+7184,22537,19440,40619
+7185,32026,47982
+7186,34291,47549,20663,1258
+7187,26782,49779,23920,24237,45681
+7188,52050,58300,60731,74633,19596,45723,46858
+7189,11073
+7190,68930
+7191,16943
+7192,28011
+7193,37542,32471
+7194,72158,34874
+7195,50675,19220
+7196,53669,54542
+7197,32330
+7198,73956
+7199,13414
+7200,75170
+7201,77510,48033,60667
+7202,12462,47755
+7203,3554,45709,2293
+7204,5819,57917
+7205,67703
+7206,1013,61071,66086,27387
+7207,81167,11090,65096,22601
+7208,29833,3797
+7209,64070,71695,26193,56002
+7210,66336
+7211,39759
+7212,15321,26309
+7213,56806
+7214,46776
+7215,5330,49973,20746
+7216,8683,45066,56240
+7217,53195,45161,36111
+7218,68911,10035
+7219,24889
+7220,52513
+7221,27623
+7222,19518,26570,35332,61384,59524
+7223,61345
+7224,60433,58775,31599
+7225,26564,34800,57002
+7226,55587,67261,17140,63970
+7227,68626,32026,45782,19649
+7228,6371
+7229,10233
+7230,69677,43681,23122,12954
+7231,72648,49805,33382,41205
+7232,22817,35797,53163,21405,15901
+7233,35763,23964,13301
+7234,33992
+7235,1942,71582,12354
+7236,73312,6180,63917
+7237,5314,60100,24620,51427
+7238,12889,79406,73564
+7239,52587
+7240,19715,26056
+7241,60941
+7242,55142
+7243,22599,68558
+7244,41373
+7245,6557,58193,80331,6445
+7246,27180,78750
+7247,4047,41430,30311,43513,1573
+7248,43481
+7249,142
+7250,17709,4325,74026
+7251,63596
+7252,62625
+7253,11880,13046,78026,80422
+7254,67794,44924,49522,56950,28858,34623
+7255,75070,40073
+7256,27767,22704,19956
+7257,45690
+7258,47594,17988,71689,2690
+7259,45794,19424
+7260,68415
+7261,21113,43652,57875,20699
+7262,11130,20765,8444
+7263,59467
+7264,891,79623
+7265,56536
+7266,13794
+7267,4923,11164,41364,7820
+7268,13371
+7269,75679,7166,82000,47162
+7270,7948,13794
+7271,81749
+7272,74380
+7273,64799,34130
+7274,35993
+7275,14336,5022
+7276,30911
+7277,2632,68823,11814,64390
+7278,73676
+7279,60215
+7280,31541
+7281,57265
+7282,13931
+7283,49654,30458,46576,25341
+7284,47079,47917
+7285,1728,396
+7286,79066,16993,40223,10044,57680
+7287,48929
+7288,61461
+7289,39409
+7290,56016,46465,8588,23016,75658
+7291,57427,45160
+7292,50840,38718
+7293,4676,53400
+7294,6312,28121,48915
+7295,28774,4540,16076
+7296,64533,45095,25713,10146,61682,7822,75071,29497,17865
+7297,58612,10896,2172,42021
+7298,77600
+7299,68313
+7300,29735
+7301,16028
+7302,67005
+7303,74194
+7304,45332,45584,11838,9673,44206
+7305,521
+7306,51827,49819,20788
+7307,44623,80129,44969,46181,78710,18962
+7308,4642,60380,4115
+7309,39752
+7310,20070,62582,65383,1786,17541,2700,4853,53701
+7311,27023,28508,53675,17859
+7312,70775,26970
+7313,36552,15702,776,2885
+7314,74200,71644
+7315,54011,68655,59081,10031
+7316,39035,36756,45932,55392,44511,70635,61661
+7317,20703,76706,53243
+7318,54317
+7319,43124
+7320,6734,17586,76022
+7321,74113,21649,47162,75483
+7322,44119,41389,76734
+7323,72069
+7324,3670,33496,11630,37021
+7325,69553,71148,78269,72980
+7326,51113,45725,8546
+7327,19261,46300,69406,48256,51374,79666
+7328,17216,38979,69753
+7329,17468,73715,21342,2905,55054,31296
+7330,14993,19207
+7331,50071,56779,4495
+7332,8832,911,26943,38314
+7333,52580
+7334,38058
+7335,68488,44659,21629,52974
+7336,75348
+7337,64121,55953,4063,2947
+7338,43536,8057
+7339,57629
+7340,48720
+7341,54702,59143,37835,15189
+7342,52392
+7343,56004,33267,80599
+7344,59986,427,75093,34166,22862,57857,36852,70049,43261,69969
+7345,27003,16986,34637
+7346,72192
+7347,62985
+7348,13068
+7349,71230,29725,79783,23082
+7350,56633,80215,74467
+7351,66861
+7352,57828
+7353,78396,28561,18672,3224
+7354,17302
+7355,49499,19809
+7356,8514
+7357,17403,64775
+7358,47106,32312,19127,38211
+7359,68454,73312
+7360,79060,67413
+7361,74273,78912
+7362,14480
+7363,8207
+7364,74968,13558
+7365,45557,46338,73190,69230,68063
+7366,71599,15658,48465
+7367,12474,54352,75899
+7368,70955,49109
+7369,1096,38606,24681
+7370,79798,23899
+7371,53801,24926
+7372,4959,57783,58478,74618,40470
+7373,14408
+7374,31554,33974,38382,66479,65547
+7375,8608,73721,53185
+7376,43995,68063,36011,29964
+7377,7794,10142
+7378,70947,51969,914
+7379,35554,10828,64686,69109,49882,48530,71308,14600,29819,4770
+7380,63000,33521,2761,22991,51164,68209,49233,79275,26662
+7381,49198,47406
+7382,12595
+7383,18349,81451
+7384,32196,65300,48991
+7385,72271,24139
+7386,13377,1572,18613,40346,137
+7387,53985,57192,16273
+7388,34739,67956
+7389,72409,47099,7971
+7390,74788,68266,35588,52067,68859,66413
+7391,53892,42112,27225
+7392,32984
+7393,39275
+7394,16413
+7395,55068,26746
+7396,21439,36197
+7397,49104,1922
+7398,10090
+7399,20153,63681,1816,33468,15890
+7400,78993,74958,56810,66751
+7401,4717,81835
+7402,7672,27626,24044
+7403,125,25751
+7404,1163,14062,4977,45355
+7405,22519,44726
+7406,77807
+7407,80553
+7408,18154
+7409,11427,55169,68750,15491
+7410,19395,66495,4144,8205,26984
+7411,38962,51854
+7412,54547,65807,32155,10995
+7413,18778,71974,57954,46246
+7414,41154,80795
+7415,81141
+7416,27227,27553,24113,61680,17444
+7417,8850,37888,18308
+7418,51388,29630,43230,53596,79209
+7419,22275
+7420,47462
+7421,53325,31007,11388,26935
+7422,79244
+7423,63240
+7424,29611,62313
+7425,22333,70485,2786,60882,19650
+7426,73140,25619
+7427,50559
+7428,11287,10877
+7429,47605,28711,4231,5110,43137
+7430,33385,65832
+7431,81114,16783
+7432,4044,32990
+7433,13347,48022
+7434,14398,6282,43099
+7435,4322,74766,27218,36732,12169,45401,46079,20084,29494
+7436,14163,7100
+7437,44747,52010,50771
+7438,70454,72534
+7439,41546
+7440,70389,21484,55153,43609
+7441,13522
+7442,57362,48294,29436,12957,49110
+7443,56296,81752
+7444,44494
+7445,69110,22859,10344,7007
+7446,20179,50743
+7447,62487,31755,79619
+7448,53523
+7449,71248
+7450,6428,20883,37383,31865
+7451,13126,23245
+7452,5873
+7453,37927,64622,79601,80019
+7454,45951,41535
+7455,64024
+7456,49893
+7457,68561,6300,44281
+7458,59856,46871,32232,34173
+7459,54276,71930,34555
+7460,59664,42143
+7461,46422
+7462,34078,37583
+7463,48421
+7464,74860,39045
+7465,57909,5796,13728,80356,8695
+7466,29267,7888,35646,51802
+7467,2126
+7468,26385,11378
+7469,6361,24720,46259,31595,56803,73956
+7470,9137
+7471,65310,42145,12162,51570
+7472,43228,19401,67063
+7473,10608,50855,5475
+7474,26032
+7475,4735,68515,60313,29361
+7476,10197,40895,652,75763
+7477,8046,66231
+7478,28166,81562,49476
+7479,74416
+7480,14693
+7481,72939
+7482,18640,29992,2240,67778
+7483,8565,6990
+7484,34940,24739,67665,1662
+7485,66215,66129,20410
+7486,35184
+7487,53621
+7488,49599,54016
+7489,78606
+7490,12236
+7491,23585
+7492,77729
+7493,76617,19911,16161
+7494,38155,60940,62489,26771
+7495,49774,53512,16985
+7496,71313
+7497,2020,67928,52206,54219,22649
+7498,23916,65615,39307
+7499,29492,25340,70971,36651,80453,22809,30747
+7500,61858
+7501,22898,18216
+7502,74634,22038,16097
+7503,60812
+7504,32101,48294
+7505,53414,5168,3760,65841,50633,27841,248
+7506,33309,36346
+7507,71875,5178
+7508,960,34105,3511,58018
+7509,20045,20935,41481
+7510,18561,75940
+7511,47477,13820,15023
+7512,26420,79558,36474,9332
+7513,11461,280
+7514,79832,53471,68094
+7515,10980,4055,73970,55055
+7516,18710
+7517,27000,62728,14609,24924
+7518,62982,12214,51462,15012,1106
+7519,41776
+7520,7045,9347,55953
+7521,7828,45688,2857,55088,56329
+7522,516,3564,14476,3613,52033,74080
+7523,66050,18638,33961
+7524,26488,60483
+7525,40780,68452,17603
+7526,21752,49570,30684
+7527,55832
+7528,4555,1953
+7529,58107
+7530,24559
+7531,37418,68235
+7532,16771,62009,12221
+7533,5102
+7534,52962
+7535,35614,66593,68581
+7536,22593
+7537,44725
+7538,56759
+7539,50258,59551
+7540,1957,63360
+7541,46249,43714
+7542,16741,26987
+7543,61260,27081,3264,22304,50004
+7544,28347
+7545,56182
+7546,16234,67298,53872,40423
+7547,34320,64782
+7548,10387,13023,1419
+7549,14745,119,72236,53911,10090,25716
+7550,64015
+7551,55902,7223,50535
+7552,69159,79540,18475
+7553,46377,54425
+7554,28166,80508
+7555,31204,57455
+7556,57502,70878
+7557,27093
+7558,42924,41293,23745,31496
+7559,5730,73904,66077,69366
+7560,37292
+7561,42026,41249,60845
+7562,76713
+7563,56053
+7564,34153,28046
+7565,19961,75961,63195,62380,79270,60001,2315,29840
+7566,72260,58474,42117,26492
+7567,35991,43575
+7568,24382,69311
+7569,44402
+7570,57869,68921
+7571,51770,18277,47867
+7572,26270
+7573,11571,3379,49040
+7574,21072,42251,4612,55808,33,48293,38319
+7575,49192,1667
+7576,55525
+7577,798,11799
+7578,28258,44354,47078
+7579,61293,65491,77748,11327,69323
+7580,66491,54134,23847,16676,49933
+7581,25323,80636
+7582,72162,47318,21589,20249
+7583,6012,79647
+7584,53367,57255,53484
+7585,3650,30185,28137
+7586,57064
+7587,43257,75336,50115,61500,15333,40156,77810,15925,40098
+7588,11568,54625,65063
+7589,53540
+7590,34626,66148,73721
+7591,13997,18419,58449,18907
+7592,42501
+7593,14325
+7594,68449
+7595,22360
+7596,52944,48138,79124,81044,79591,18845
+7597,26347
+7598,70024,20834,32849
+7599,39762,73360,72677
+7600,12507,6738,18409,54402,81762,61516,69534
+7601,41425,61267
+7602,51282
+7603,24139,19608,27790
+7604,62792,17458
+7605,80272
+7606,69242
+7607,34143,59361,23734
+7608,16410
+7609,71635
+7610,73886
+7611,55570,35464,40736
+7612,74872,36398,39147
+7613,38491,9765,31906
+7614,59641,62187,36616,15377,1220
+7615,25663,7145
+7616,649
+7617,40774,6247
+7618,38994,75444
+7619,47011,56553
+7620,27672
+7621,21950,43506
+7622,3181
+7623,54421,23179
+7624,4833,68211
+7625,65062,53008,39978,13493,41732,53754
+7626,31512,73155
+7627,46655,55295,40153
+7628,2651
+7629,43520
+7630,14691,30997,10856,7501
+7631,52835,78078,61838
+7632,13423,48497,64360,53487
+7633,54986,57858,12429
+7634,31606,52171
+7635,26342,32650
+7636,50101,38255
+7637,67086,62799,57434
+7638,33086,64215
+7639,34972,16322,23083,42311
+7640,47951,32393,50218
+7641,73217
+7642,32915,67150
+7643,54976,11729
+7644,24599,8857,18382
+7645,6843,4289,41813,80827
+7646,833
+7647,19993,68063,50324
+7648,38180,13965,81891
+7649,62198,3620,12299,42044
+7650,16349
+7651,70965,14874
+7652,33297,67988
+7653,13766,25029,30093
+7654,21796,71599,58931
+7655,18952,46011,66880,45759,73729
+7656,6115,21531
+7657,15644,14758
+7658,70090
+7659,1857,11340,18901
+7660,51281
+7661,47422
+7662,37618,64689,19428,48171,37367,28885
+7663,1815
+7664,65904,13086,6984,33583
+7665,51167,1253
+7666,64480
+7667,37084
+7668,17027,63786
+7669,52082
+7670,25507,18104,80600,34344
+7671,26775,30208
+7672,31823
+7673,55550,37886
+7674,47595,11972,42318
+7675,4629,7041
+7676,14487,54681
+7677,38055,29727,5682
+7678,24953,15725,25581,17893,32803
+7679,44256,40456
+7680,80613
+7681,21438
+7682,17177
+7683,11994,3513,34957,31400,24040,53935,28039
+7684,43637,33549
+7685,39601,70154,30505,68100,1067,63204
+7686,75733,47254
+7687,30644,63538
+7688,1938
+7689,6677,63595,21629,74313,2310
+7690,46584,7420,42378,48681,17525
+7691,57400,22691
+7692,15733,69934,38021
+7693,29084,17561,81022,53134,2421
+7694,42906,78835
+7695,75908,39190,19423,45817
+7696,8972
+7697,60891,4624,18536,44584
+7698,41076,17436,66278
+7699,64059,65841,80671
+7700,71259,17872,1395,11393,62113
+7701,19528,13881,5357
+7702,41946
+7703,62120
+7704,78622,39621
+7705,15857,11559,58095,51528,76226,25673
+7706,33906
+7707,17007,42918
+7708,4657
+7709,6549,65348
+7710,36260
+7711,80305
+7712,61937,24251,21623,4768
+7713,56871,2732
+7714,80539,10702,26393
+7715,38407
+7716,34514,3088
+7717,79540
+7718,57172,68038,78791,47910,6893,34469,72534,34378
+7719,11946,18433,36879,79728
+7720,55307
+7721,63188,59488,79576,6280,38505,20073,35396
+7722,41300
+7723,19075
+7724,8874,18877,60948,79458
+7725,32650
+7726,28503,28408,14160
+7727,63929
+7728,24269,78257,2532,28279
+7729,60645
+7730,15433
+7731,54394,52141,516
+7732,68663,14449
+7733,64769
+7734,55263
+7735,50512
+7736,60000,14210
+7737,16086,76050,38396,32666,17215,80005,20221
+7738,44308,43724
+7739,39412,81764
+7740,49186,72285,13139,55634
+7741,35631,28362
+7742,30454,62231
+7743,11408,43841
+7744,25487
+7745,70491,29439,64708,3615,37634
+7746,42263,25528
+7747,57981,40369
+7748,5049
+7749,6684,71116
+7750,44728
+7751,11054,28931,57922,17607
+7752,72876,53709,20335
+7753,6430,21034
+7754,27839
+7755,49273,17418
+7756,21573,39785,51439
+7757,73714,48006,58888
+7758,25811,11727,23692
+7759,22184
+7760,30323
+7761,45086,10216,19930
+7762,56082,9752,1253
+7763,48761
+7764,65374
+7765,2155,31264,7317,55134
+7766,24010
+7767,78650,58475,3367
+7768,33383,25423
+7769,57954,18634,59131,59545
+7770,3710,48915
+7771,17230,66903,68693,27356
+7772,81709,29142
+7773,14330,6533
+7774,22933,55377
+7775,81159
+7776,53968,18561,1980,73498
+7777,42197
+7778,37831,24320,50131,43364
+7779,22683,49234
+7780,12223,32751,62632,6081
+7781,51606,5347,18875,65847,66021
+7782,29927
+7783,48493
+7784,26946,39482
+7785,26398,3358,57485
+7786,25695,3497
+7787,66267,8677,27969
+7788,75976,28509,78500,27175
+7789,78634,36025
+7790,33088,32556,51459
+7791,44640,46641,24633
+7792,52395,28569,26162
+7793,4362
+7794,3074,44083,74465
+7795,25005,61966
+7796,38632,50357,74302
+7797,62059,9413
+7798,58625,12977,78559,22554
+7799,26818,41971,65153
+7800,54716,27784,28532,35139,60690,18827
+7801,50843,50914,73893,21807,23047,54636
+7802,49067
+7803,30025
+7804,42814,210,31535
+7805,40581,33461,40676
+7806,49694,80110
+7807,24207,42757
+7808,55803
+7809,50257
+7810,53639
+7811,69597,24143
+7812,58333,46387,16337,23232
+7813,44592,46168,57987
+7814,56117,62756
+7815,80283,73978,55900,39272
+7816,22291
+7817,44773,70172,77847
+7818,76878,68458
+7819,60391,70027,27814,61823,76032
+7820,25555,57044
+7821,23445,70692
+7822,34274
+7823,66149,70217
+7824,15063,7775
+7825,33071
+7826,14882,65456
+7827,57193,11428
+7828,40829,79090
+7829,43627
+7830,44794,71553,65281
+7831,15201
+7832,11610,16871,37592
+7833,17520,65423,23160
+7834,1664,45522
+7835,78895,31359,77515
+7836,35949
+7837,70877,4908
+7838,20610,50948,5933,68052,591
+7839,62005
+7840,37084
+7841,64373,67611,50630,76915
+7842,12687
+7843,53342
+7844,17089,37052,27347,4852
+7845,21361,27073
+7846,51711,30805
+7847,29160,24399
+7848,14552
+7849,59998,363,30460,25567,61068
+7850,25840,80644,48421
+7851,50455,74473,1646
+7852,37689,74698
+7853,22871,17814
+7854,21846
+7855,35033,12462
+7856,3181,11694,72723
+7857,66216
+7858,53436,33278,55691
+7859,1746
+7860,65456
+7861,20260,18279
+7862,76093,52049,4864
+7863,32766,23786,66622
+7864,62377,40337,7062,77336,33205,61075
+7865,79061,36987,7528
+7866,46918,45036
+7867,49236,7281
+7868,2150
+7869,17,2859,70654
+7870,77087
+7871,4853,31857,5319,22186,21142
+7872,33224,70044,78664,27204
+7873,77180
+7874,28830,61661,42181
+7875,52991,64313
+7876,69716
+7877,47777,49446,33192,78914
+7878,33065,71770,12987
+7879,61007,24438,30284
+7880,14220,62060
+7881,54813,65654,25325,58150
+7882,2702,52067,18197
+7883,74036
+7884,6406,13526,10934
+7885,70555,24409,29955,64279,34449
+7886,8806,60566,20006,13103
+7887,60140,81070
+7888,69823
+7889,2597,10921
+7890,29269,73137
+7891,50666,39831,66435,52302,4769
+7892,45278,26816
+7893,36135,12554
+7894,12887
+7895,7500,53694,73417
+7896,42592,5622,53833,42489
+7897,52927,50043,25971,56901
+7898,11556,4735
+7899,22629,56044
+7900,29550,27268,78668,13970
+7901,69263,4208,48371,59899,66819
+7902,17997,57731
+7903,48222,23585,78284
+7904,72587
+7905,30280,23199
+7906,30409,47816,5029
+7907,77600
+7908,49144,24354,45469,18707
+7909,73948,64621,71664,70563
+7910,30388,6809,71226,22646,15060
+7911,60430,25990,23149,50869,74697
+7912,12138,1248,37654,42603,66177
+7913,5188
+7914,11878,65250
+7915,31950,2526,74804
+7916,43543,73248,23921,77217
+7917,78834,4483,55392,5716,76695
+7918,51463
+7919,56969,62319,75480,6176
+7920,71953,54519
+7921,5691,47434
+7922,55198,63971,28668
+7923,44421,22120,17999
+7924,43259,44885,61510,817,7053
+7925,55634
+7926,9126,71825
+7927,77646
+7928,16753
+7929,56282,27394,65330,22264
+7930,35372,25463,58846,56979
+7931,55090,42500
+7932,30603
+7933,69417,34739
+7934,8876,8386,62659,36831
+7935,46999
+7936,11959
+7937,76457,35090,165,54638,60012,48568
+7938,74965
+7939,55728,55310,26200,67052
+7940,30442,19485,5769,43059,67502,43497
+7941,22373
+7942,5568,66301
+7943,22543,42624
+7944,1535
+7945,23075
+7946,28562,67291
+7947,7759,27008,64280,15560
+7948,42592,51530,72243,6481,79216,21621,81626,76557
+7949,13396
+7950,72781,36326,76202,45853
+7951,46265,68410
+7952,29408
+7953,32617
+7954,25794,7487,10516,3735
+7955,42316
+7956,50613,57804,19426,63149
+7957,32800
+7958,34238,1435,70686
+7959,29769,4872
+7960,16600,47144
+7961,4146,53065,2831,34565
+7962,39668
+7963,17749,58522,64979,26959,21718
+7964,39393
+7965,11624,58029,73204
+7966,30014,59898
+7967,1960
+7968,72311
+7969,63374
+7970,47553,23992,55644
+7971,14592,47048
+7972,72937,24333,80757,78876,44436,66123,41299
+7973,61208
+7974,11565,57139,50117,31813
+7975,49067
+7976,44218
+7977,15636
+7978,75915
+7979,72456,68277,70080
+7980,14948,80489,54789
+7981,77814,40920
+7982,20616,16720,75379
+7983,48634,81413
+7984,31862,56369,56459,39581
+7985,10809,71822,40712
+7986,53154
+7987,37449,36899,80539
+7988,16411
+7989,37181
+7990,5836
+7991,1960
+7992,77685,3333
+7993,1348,27886,79163,75906,5595
+7994,32811
+7995,79397,50463,51716,47714,23701,63184,23378
+7996,74455,7303,80355
+7997,58729,20197
+7998,57680,22820,16832,69033
+7999,10223
+8000,51596,47234,38627
+8001,12973,75480,54064
+8002,31304,81179,60069
+8003,65037,10927
+8004,252
+8005,55669,74348
+8006,22139,57048
+8007,42462,73714
+8008,14565,68278
+8009,26450
+8010,17454
+8011,75121,40729
+8012,19411,75660
+8013,61437,59961,75823,51391
+8014,42510,7949,76991
+8015,68054,68164,49608
+8016,23613,66571,71409,29803
+8017,42569,67706
+8018,15520
+8019,59360,37120,58374
+8020,20429,65873,61158,26873
+8021,720,39599,77272,21083,75029,78084,45372
+8022,29659,33840,80716,27227
+8023,1587
+8024,18587,16233,33774,48323
+8025,62316,12198,7377
+8026,57575
+8027,55725,14503,45493,43220
+8028,22957,52936
+8029,15354
+8030,2041,7512,32564
+8031,20834,36473,52163,52474
+8032,31533,57088
+8033,65649,3137,24582,30499,57795,30611,51635
+8034,20975,76094,75041,81261
+8035,7704,60285,58646,36876
+8036,15514,13762,70326,33989,4426,50962
+8037,9012
+8038,81162
+8039,62040,61871,73804
+8040,21317,23274,65060
+8041,25931,52980
+8042,22740
+8043,64339,69546,43323
+8044,12259
+8045,79540
+8046,59869,58960,60168
+8047,43750,39264
+8048,2226,43192
+8049,70692,16132
+8050,52612,3209
+8051,14000,75168,42592,48926,47553,49519
+8052,72093,8873
+8053,44964,19512
+8054,37459,56031
+8055,37002,47821,67195,76059,20896,65305
+8056,45899,4795
+8057,73670,14402
+8058,52262
+8059,4415,47815,38049,4771,33653
+8060,51269,17270
+8061,71628
+8062,72038,45741,12866,13136
+8063,32499,75541,50816,53739,35681
+8064,41954
+8065,25137,32038,61091
+8066,18802
+8067,70030,49443
+8068,26403
+8069,10115,21453,26430,60929,34998
+8070,14205,75189
+8071,39695
+8072,57284
+8073,50490
+8074,12846,67918,17872
+8075,17016,9530,73965,41810,49164,32695
+8076,35259,30475
+8077,12145,37303,53677,72712,61945
+8078,58008,73734,20073,68647
+8079,68488,53523,6826
+8080,43757
+8081,37163,45189,41671
+8082,14221,17031
+8083,55355
+8084,17538
+8085,31244
+8086,64085,7091
+8087,56376,42350,75137,24618
+8088,63509,39208,1892
+8089,39416,79865,68116
+8090,5256,72744,73137
+8091,34265,61292,62067
+8092,9606,31746
+8093,1363,3715,29375
+8094,81795,57707,27518,25839
+8095,37735
+8096,12209,39173,54134
+8097,37328
+8098,66259
+8099,24792,72307,55882,11813,73112,60371
+8100,77541,5426,46489
+8101,77434,51592,44612,36082
+8102,80728,6359,60924,54969,12851
+8103,18604,51135
+8104,45094,50726
+8105,42137
+8106,16424,38938,48556,59986,5011,47876,54048,56505
+8107,57012,36177,81091,15755,68431
+8108,37501,51672
+8109,58980,10588,70581,5321,18316,58534
+8110,76141,31885,43526,65915,67410,15353
+8111,81395
+8112,68676,4483,67731,42557,34814,70112
+8113,77648,37767,5315
+8114,74784,59606,25595,36846,72122
+8115,77825
+8116,57192,76169
+8117,81192
+8118,13717
+8119,10557,70965,33175
+8120,19583,37603
+8121,39879,3059
+8122,55270,25769,40602,6303
+8123,80101,44983
+8124,53297,79119,22230,23673,45662,34780
+8125,68049,13692,46288
+8126,59869,43872
+8127,64636,54491,15360
+8128,20477,32781
+8129,11402,56368
+8130,31354,9335,9321,50388
+8131,13007,20840
+8132,65421,50385,13477
+8133,7921
+8134,55334,11378,24814,76256
+8135,19259,48110
+8136,62872
+8137,76184,13228,76883,59930,59056,24791
+8138,35491,78110
+8139,31741
+8140,66449,36661
+8141,24727,67874,55174,68616,78020
+8142,29210,58657,30199
+8143,45199,61940
+8144,56512,49184,26046,4164,45429
+8145,58266,50688
+8146,34258
+8147,9697,66584
+8148,4102
+8149,42613,60101,19637,71603
+8150,35534
+8151,52023
+8152,81070,40949
+8153,26163,6046,14846
+8154,43217
+8155,52703,23829,56925,62421
+8156,68648
+8157,30025,25864,55853
+8158,58214,30357,61318,70460,36831,28025
+8159,10657,25878
+8160,41237,25769,21564
+8161,72948,33482,57435,52483,76902,38150
+8162,33359
+8163,35537
+8164,66871,9637
+8165,24080,77569
+8166,49667,24543,71077
+8167,3869,77845
+8168,68931,10655
+8169,37315
+8170,42244
+8171,393
+8172,27207,33691,1950
+8173,216,54423,16276,65846
+8174,56793,71635,52938,53947,46170,59216,19703
+8175,17273,8632
+8176,70483
+8177,20442
+8178,17204
+8179,36171,71112,28460,7165,30765,35262
+8180,6697,80625
+8181,50412,81838,18186
+8182,11115,74123,75339
+8183,27263,2932
+8184,33101,14279,27205
+8185,77044,6317,59115
+8186,40514,19556,66527,36762
+8187,45641,5908
+8188,68098,80729
+8189,50385,71427,40633,46741,11145,22234,81089,66069
+8190,53887
+8191,14056,10073,38974
+8192,68728,12929
+8193,41954
+8194,79176,8328,55798
+8195,8295
+8196,49093,60222,30757
+8197,3995,62652,72452
+8198,45555
+8199,58272,22569,35888
+8200,81953,57817
+8201,30784,50700,43291,38293
+8202,13892,23090,24792,74916
+8203,2116
+8204,19008,28425,62372
+8205,21616
+8206,27930
+8207,42922
+8208,17086
+8209,65328
+8210,76987,11842,1833
+8211,16580,69871,49563
+8212,67337,24310,33744,32179
+8213,73670
+8214,3888,19127,52169
+8215,4536
+8216,74191,26480
+8217,22137,81121
+8218,19830,15433
+8219,74621
+8220,48425
+8221,65545,64744
+8222,47445,5727,16229,52283,41230
+8223,77380
+8224,74697,26480
+8225,22649,80272
+8226,3479
+8227,64158,57247,41566,5158
+8228,14778
+8229,58493,19598,39336
+8230,1693,72671,9664
+8231,50739
+8232,20130,22409
+8233,8538,43891,36449
+8234,18991,16619
+8235,23549
+8236,1210
+8237,19076
+8238,14061,49132,53119
+8239,8430,17049
+8240,34548
+8241,21222,10254
+8242,35969,43495
+8243,52358,29893,17170,50919
+8244,21631,47817,73950,331
+8245,44368
+8246,66537,29353,48767,1415
+8247,38054
+8248,70173,61436,45760,15989
+8249,76361,33138,38437,11320
+8250,75940,18462,1655,39459,8351,42654,54201
+8251,60913,17413
+8252,81933
+8253,75352,61874,11245,80504
+8254,34302
+8255,68290,68122
+8256,12934
+8257,5515,17021
+8258,80967
+8259,27611,56652
+8260,30427,32525,68123
+8261,13426,40291
+8262,33071,25072,19830,10470,34354,74164
+8263,22697,64866,62622,63756
+8264,39337,23238,44256,49640
+8265,64913,75008
+8266,5836
+8267,8362,35555
+8268,38407
+8269,41901
+8270,47297
+8271,24013,22084
+8272,53030,39426,78224
+8273,67625
+8274,40064,13806,66933
+8275,73616,22874,63012
+8276,13620
+8277,31101,62329
+8278,34072,2688,11484
+8279,75290,22223,67534,18473,43677,48089
+8280,44479
+8281,51735,38253
+8282,37241
+8283,71203,28735,49805,10414
+8284,46964,45799
+8285,45060
+8286,16872,68586
+8287,49479,22914,28824,32798,29285
+8288,67443,81008,5107
+8289,79977,15,64307,36662,54717,61702,68946
+8290,72677
+8291,19006,68242,48596,61309,42490
+8292,35443,46965
+8293,78220,9804,25247
+8294,8490,16971
+8295,3994
+8296,73099
+8297,3393,31518,19794
+8298,24044,6731
+8299,79348
+8300,50731,6847,22568,49606
+8301,40138,39315
+8302,13741,14386,30823
+8303,68043,33096,22665
+8304,6249
+8305,21042
+8306,9312,45799,17927
+8307,5476,29238,1017
+8308,46533,74772,79108
+8309,3579
+8310,171,57719
+8311,55534,44723,31196,9284
+8312,66913,69782
+8313,67768
+8314,41481
+8315,51086,81137,76148,1697,972,43060,74916,58487
+8316,17235
+8317,31654,66639
+8318,33509,52837,64951,486
+8319,4035
+8320,69689,39105
+8321,59987,21580
+8322,46713,20771,36608,30089
+8323,81963
+8324,18939
+8325,8563,28177,41692
+8326,38528,8525
+8327,31737
+8328,45886,80217
+8329,24559,16499
+8330,22768,26970,49205,71597
+8331,37099,73460
+8332,64897,58956
+8333,24190,52007,42606,69151
+8334,40470,71918
+8335,39360,35908
+8336,77766,20536,56856,20944,62245,46287,78909
+8337,40424,24469,66078
+8338,36468
+8339,29681,28852,35245,24072
+8340,20530,33238
+8341,22504,34988,77523
+8342,17311,44839,59506,50185,27670,7229
+8343,59255,68283,68219
+8344,77615
+8345,50010,39684,15739,10201
+8346,44950,40195,24559
+8347,16096,4338
+8348,2625,49458,46384,18167
+8349,28033,24327,8039
+8350,54405,53847
+8351,56474,17769
+8352,46506,51673,26275,44630
+8353,1548
+8354,11286,148,35215,58863,29389
+8355,20302
+8356,37497,80603
+8357,64283,80161,67223
+8358,43080
+8359,2794,78386,29845
+8360,19270
+8361,30099,57036,60109,13594,16784,48265
+8362,52308,69261
+8363,71156,44280,48785
+8364,892,16931
+8365,30175
+8366,7228,55936,55380
+8367,42090
+8368,28364,81834
+8369,37172,32438,70888
+8370,79336,72092
+8371,61500,68088
+8372,12290
+8373,15937
+8374,38225
+8375,39829
+8376,36280
+8377,52581
+8378,63499
+8379,63804,73603
+8380,68500,32246
+8381,28101
+8382,71269,35010
+8383,43495
+8384,24138,76141
+8385,12697,34248
+8386,30280,38461
+8387,71316,60725,32796,55263
+8388,64789
+8389,61059
+8390,33000,61888,75467,55654
+8391,40605,10774
+8392,24066,74348
+8393,58631,19035,17834,37645,14950,78491,78046,49956
+8394,9524
+8395,39409
+8396,67869
+8397,19737,30943,10969
+8398,46576,63417,44755
+8399,48315,37867,79161
+8400,57785,8125,46931,4642,70639
+8401,12103,69618,79466,27807,72908
+8402,2579,1531,26291,37088,53791
+8403,53119,17642
+8404,44378,52360
+8405,38769
+8406,69203
+8407,75478,37328,30502
+8408,47569,69190
+8409,53046
+8410,68274,27643,33590,52280,29029
+8411,33902,47819,30936,61728,39811,2444
+8412,42014
+8413,37332
+8414,49965,3988
+8415,50187,41117,81232
+8416,75170,8540,10776,13369
+8417,24947,60229,47813
+8418,33876,1551,1098
+8419,35681,20772,11257
+8420,30510,22453
+8421,7754,41729,28616
+8422,69193,53958,49300,81606
+8423,30899
+8424,36857,58076
+8425,16753,64231,21284
+8426,23760
+8427,6514
+8428,70161
+8429,30823
+8430,5257
+8431,1815
+8432,59602,17641,64676
+8433,53706,10788,4924,33799
+8434,79162
+8435,57209,9638,80605
+8436,9930,26217
+8437,74751,637,79139
+8438,60406,49531
+8439,48495,8281
+8440,38480,47940
+8441,74710,14534
+8442,35677
+8443,43546,51062
+8444,80068
+8445,12535,31404
+8446,81302,20004,76894,77629
+8447,5663,2319,12116,32684
+8448,40264
+8449,13916
+8450,29224,46311
+8451,72884,56890
+8452,44690,46642
+8453,72100
+8454,68725
+8455,41810
+8456,70923
+8457,40460
+8458,30173,23545,32908
+8459,77520,52664
+8460,13764,29754,58189,57369,9049,47897
+8461,72687
+8462,9545,36922,2536
+8463,52626
+8464,72677
+8465,3721
+8466,78318,77279
+8467,53991,16650,10122
+8468,40966
+8469,78560,70737
+8470,18599
+8471,35683
+8472,5210
+8473,77892
+8474,56260,63127,51511,57228,6086,1003
+8475,67967
+8476,64753,54474
+8477,38984,74268
+8478,3999,3028,22580,10233,41146,53058
+8479,42860,63613,67638,4101,1258
+8480,943
+8481,22413
+8482,31451,62349
+8483,53043,23623,37062,25857,12335,7923
+8484,34552,62680
+8485,26133,81512
+8486,45291
+8487,36517
+8488,23749
+8489,14105
+8490,41190
+8491,35207,47162
+8492,27471,59502,34716,22193,35471,35732
+8493,24334,72415,17259,31758,31552,19904
+8494,55709,51914,20597,1433,74500
+8495,16506
+8496,75383
+8497,79800
+8498,3264
+8499,70095,43282,70959,78183,68993
+8500,31926,31234
+8501,68100,62410
+8502,55968,41779
+8503,23401,35143
+8504,59348,7095
+8505,61294
+8506,25381,8589,8830,47419
+8507,13103,24241,41257,48560
+8508,77489,26342,16208,40974,55720,36953
+8509,18802
+8510,3861,15806,10683
+8511,19543,15113,30941
+8512,53712,5922,41405
+8513,19616
+8514,43534
+8515,64504,33198,42020,46736,6162,68974
+8516,10087
+8517,27528
+8518,61820,58524
+8519,69696
+8520,71181,67141,35331,46991
+8521,29965,27920,7722
+8522,49876
+8523,58,60888,71297,78745,69346
+8524,26262
+8525,37309
+8526,37039
+8527,41986,69881,7188,54068
+8528,4408,44857
+8529,20301
+8530,1419
+8531,82105,31128,31105,67505
+8532,58878,6676,42800
+8533,11796,68923
+8534,70781,29743,74356
+8535,52913
+8536,77015
+8537,6223,60411,11466
+8538,51105
+8539,79856,52011,23478,62688
+8540,78539,25456
+8541,27474,34333,45299,33634
+8542,47920,72734,14694
+8543,28388
+8544,17731,44685
+8545,43601,43883,69431,1419
+8546,59555
+8547,7407,60032
+8548,79539,20003,14907,20837
+8549,67010,3610,73609
+8550,36920,22642
+8551,70355
+8552,54631
+8553,36331
+8554,55779
+8555,41423,69968,53121,61062,10688
+8556,18453,48899,23582,35132,74360,45998
+8557,66536,59545
+8558,34635,29302
+8559,66815,73422
+8560,46508,38061
+8561,23519,575,78746
+8562,21074,63832
+8563,68476
+8564,18299,75113,17862,8340
+8565,37741,47648,26073
+8566,43732,55203,56998
+8567,48713,50238
+8568,5203
+8569,79355
+8570,58813
+8571,79463,39931,71245,30831
+8572,22124,79737
+8573,63935,5939,63202
+8574,26636
+8575,21918,37938
+8576,46128
+8577,63060,59021,58577
+8578,44554,49110
+8579,65242,50386,44005,59862,74937,11636
+8580,72211,31339,28664
+8581,34385
+8582,22405,9655
+8583,67423,11024
+8584,58782
+8585,66746,23450,45233
+8586,31308
+8587,69670,42156
+8588,80938,58111
+8589,57647,54696,24753,42928
+8590,72255
+8591,24548,57960
+8592,55981,18597,35280
+8593,35889,40159,67883
+8594,19662
+8595,67219,40758
+8596,44695,81547
+8597,28593
+8598,44147
+8599,21550
+8600,70207
+8601,11604,72594
+8602,67936,1286
+8603,24524,43840
+8604,54246,25885,68376,27689
+8605,51905
+8606,34421
+8607,47308
+8608,43710
+8609,49380
+8610,34149,27030,61457
+8611,81321,17332,77084,12207,56811
+8612,20469,47516,53741,1216
+8613,59283
+8614,78089,43910,31700,4805,68155
+8615,41474,31245
+8616,71410
+8617,21846
+8618,21118,74204,11948
+8619,33258,25634,73428,52027
+8620,40994,2469
+8621,2799,52384,37965,43841
+8622,24478
+8623,51719,55464,3368
+8624,2933
+8625,63326
+8626,6738,41443,59751,53563
+8627,31655,73968,5186
+8628,4352,15173,3573,22557,37161
+8629,14477,48831
+8630,68009,40296
+8631,25273,37887
+8632,43809
+8633,35056,2010,39610,6234
+8634,37658,16097,27782
+8635,26470,57813
+8636,15927,1261
+8637,60414,2148
+8638,11622
+8639,55896,35851,80774
+8640,34002
+8641,6272
+8642,71085
+8643,78835,80801,26147,61121,57520
+8644,50332,42006
+8645,50154,61592
+8646,12176,71999
+8647,29153,69012,78600
+8648,30402,77174,39418,39568,64626,52972,63090
+8649,59987,60303
+8650,82143
+8651,23993
+8652,73463,5425,46972,70107,20322
+8653,2198,75082,59167
+8654,665,5687,72760
+8655,81664,41744
+8656,37209,71463
+8657,76932
+8658,43795,29535,34711,33061
+8659,60052,15508
+8660,66636,54539
+8661,14817,41043,42619
+8662,37012,28621
+8663,21722,50628,17364,79328,65406,5429,12363
+8664,40735,77500,9282
+8665,41165
+8666,62977
+8667,64723,10118,19049,12285,81029,1572,41966
+8668,34087,53314,765,40704,44328
+8669,15996,17989,50926
+8670,56831,44810,81519,44086
+8671,29889,43655,20642
+8672,40451,23315,56592,43440,45796,66955
+8673,72915,64542,79356,78010,30235
+8674,20713,59623,3363,21821
+8675,68921,71683,52659,56502
+8676,5685,79852
+8677,17604,21471
+8678,15304,25951
+8679,37519,81561,53888
+8680,57606,62246
+8681,43400,78829,42583,22366,46295
+8682,7530,12223
+8683,33418,75029
+8684,44706
+8685,49664
+8686,55091,46978
+8687,10872
+8688,76706,79912,52378,79526,81059
+8689,16672
+8690,25557,32856,74131
+8691,25543,67329,44124
+8692,34817,15896
+8693,66435,53676,67441,54680,64068
+8694,40168,49796,57330
+8695,58013
+8696,70515
+8697,70951
+8698,74927
+8699,61000,5152
+8700,31834,8764
+8701,66035,63621
+8702,43722,54432,38122
+8703,46155,34498,37185
+8704,66952,9636,79989,38749
+8705,30558,1996,46697
+8706,11944,36843
+8707,4533
+8708,77706
+8709,37357,37120,36955
+8710,48242,21290,72032
+8711,62995,28638,60652,28259,51141
+8712,15689,57623,19380,73409
+8713,1784,32894
+8714,44114,35010,29979
+8715,42719,44063,74989
+8716,75404,7356
+8717,41345
+8718,3560
+8719,28655,47142,20198
+8720,50416
+8721,55464
+8722,18388,711
+8723,54971
+8724,17565,70987
+8725,18127,25774,24586,72300
+8726,16547,52988
+8727,55873,31625,7089,43325,74268,42829,43606,62341,50057
+8728,31751,56071
+8729,10233,55376,35771
+8730,16115
+8731,735,38593
+8732,9790
+8733,70287,79932,50152,31724
+8734,50956,78622
+8735,23733,31073,77741
+8736,48658,33407
+8737,36933,23403,37019
+8738,35186
+8739,42313,64148
+8740,41470,25518,31722
+8741,58332
+8742,17573,65852,986,78526
+8743,70834,66041
+8744,51211
+8745,9716,68987,68938
+8746,39403
+8747,7994
+8748,22854,62151
+8749,25511,20437
+8750,11334,25487
+8751,15194,45093
+8752,27967
+8753,62186,75868
+8754,12618
+8755,60358,21018,64299,11910
+8756,62434
+8757,49527,14437,3449
+8758,28622
+8759,35927,69101,35704,53216
+8760,33515,46514,31363,3500,27462
+8761,41717,62020,80047
+8762,38214,41815
+8763,5967,13620,66524,62378
+8764,66650
+8765,53353
+8766,14333,12546
+8767,74575
+8768,27496,46014
+8769,35523,18596
+8770,13445,52915
+8771,71270,12310,58959,40655
+8772,11423,14552,61798,32338
+8773,22277
+8774,38770,37519,69589,40540
+8775,1418
+8776,67223,60869
+8777,68650
+8778,58641,44438
+8779,55960
+8780,21967,7004,71825
+8781,15872,31834
+8782,71346
+8783,63279
+8784,43122,13309
+8785,20677
+8786,76553,78640
+8787,25425,9852,77359
+8788,34327,60488,74487,32642
+8789,33712,41538,38758,35575,44256,19761
+8790,43534
+8791,66452,33764
+8792,75757,65072,50683,34603,12136
+8793,53388,49731,81373
+8794,6411,57872,66638
+8795,54876
+8796,52252
+8797,9752,2509
+8798,77562,16305,68044
+8799,78156
+8800,68051
+8801,62388,27981,6885
+8802,23412,75417
+8803,50702,51772
+8804,38510
+8805,61119,50161,46372,18442,58578,15749,67778
+8806,59710,51080
+8807,55846,42384,28110,8952,41414
+8808,38505
+8809,31944,77891,51812,47156,55701,37071
+8810,12903
+8811,25639,27194,46430,29820,37529
+8812,44696,80776
+8813,70143,44023,70387
+8814,18760,62019,23345,20931,60173,32032,24318,17883,19264
+8815,18680,38669,1934
+8816,56636,61480,36204
+8817,70315,23292
+8818,10274,64271,36055,3770
+8819,51084,1439,55523,10669
+8820,55822
+8821,25230,40064
+8822,15300,22446,28253
+8823,78373,78123,39519,72
+8824,58911,32347,54275
+8825,70147,46237,52518,40767,27367,76363,14872
+8826,376,9608,9366,60962,42265
+8827,16409,68575,1447,40280
+8828,60244,9945
+8829,16164
+8830,47308,71953,50698,45455,15095
+8831,56352,66667,41422
+8832,37775,34761,61482
+8833,31125,19784,34916
+8834,37455,74972
+8835,37151,48254,20178
+8836,47476,66001
+8837,74728
+8838,1912,36441
+8839,22037,48407,72945
+8840,2625
+8841,76605
+8842,24000,52027
+8843,2764,16026,24225
+8844,37827,31348
+8845,53905,62891
+8846,63075,39053,46284
+8847,21269,14310
+8848,12870
+8849,15907
+8850,3742
+8851,37151,73035
+8852,3390,67824,27372
+8853,78264,42236,8856,7184
+8854,79104,1254,8730
+8855,74276,67634,57990,2423
+8856,41246,51185,35220
+8857,51692
+8858,73017,25691,30877,37640
+8859,61714,71203
+8860,36014
+8861,58800
+8862,59300,43513,52979
+8863,32421
+8864,32574
+8865,62476
+8866,41117,32082,28992
+8867,6404,9510,70430
+8868,23549
+8869,54519
+8870,47219,25940,58388,4729,47099
+8871,78760,73654,74167,29312,29568,45490,74884
+8872,68605
+8873,7852
+8874,41761
+8875,28033,65445
+8876,39063
+8877,72233,73868,13329
+8878,49618,21206,47287,5616,60730,57747
+8879,65450,60531,64091,55347
+8880,5208
+8881,8184,61455,52457,51899,16778
+8882,16024,6546,33325,12608
+8883,61572,42733,48500,58736
+8884,74420,19481,31811,37419
+8885,8055,1317
+8886,35576,68785
+8887,34582,52622,13807,58304
+8888,28050,51442
+8889,67906,15035,74757
+8890,73918,36689,8834
+8891,52572
+8892,25759,2048,5941
+8893,61874,24472
+8894,58029,70042,23632,59252,65515
+8895,53753,65211,65936,58632,39065
+8896,60441,48088
+8897,55451,28240
+8898,66100,74844,10989,20148
+8899,3295
+8900,16245,55922,69579
+8901,17513,45575
+8902,29822
+8903,16728
+8904,21360,71874,47920
+8905,47885
+8906,19572,36135,40882,11123
+8907,48573,72811,1511
+8908,73924,41279,81983
+8909,39156,42924,31614,74225
+8910,65554,831,47471,33463
+8911,35849,18609,12999,51167
+8912,34194
+8913,66473,12833,18835,70659,67361
+8914,33508,37693
+8915,21310
+8916,37230
+8917,11239
+8918,25524
+8919,62613
+8920,75478
+8921,13143,9875,50474,33032,2318
+8922,18148,8848,46743
+8923,69054,21415
+8924,64371,9536,42289,21787,28049
+8925,30581,33624,57450
+8926,63974
+8927,63738,68548,38268
+8928,39872,37860,43788,71982
+8929,18623
+8930,52996
+8931,49670
+8932,25570,65672,50992
+8933,35343
+8934,75398,75453,74675
+8935,66167,74190
+8936,36936
+8937,69808,56259
+8938,65497,73909,27049
+8939,28685,36158,51208,2551
+8940,44852,52307,25275,31737,26353,37366,1738
+8941,79852,61126,71497
+8942,77139
+8943,55974,72402,7822
+8944,15261
+8945,67005,39185,5667
+8946,2487,74017,58683
+8947,43145,8797
+8948,28166,36052,79957
+8949,28646,63668,55669
+8950,59882,6449,28762,67228
+8951,29325,69813,44652,60481,72291
+8952,56121,66788
+8953,9423,69539
+8954,50880,38008,43951
+8955,52758
+8956,71877,75412,11651
+8957,67546,57753,78379
+8958,6754,72087,20832
+8959,38628
+8960,41066,57730
+8961,27081,64635
+8962,23779,37835
+8963,21704
+8964,35220
+8965,17471
+8966,236
+8967,28509,7157
+8968,42769
+8969,16088,38752
+8970,80899,4470
+8971,17528
+8972,6426
+8973,1920,73291
+8974,10071
+8975,7813
+8976,56539,73375,10425
+8977,41792,62626,13239,67886
+8978,11610,35695,76162
+8979,2743
+8980,65136
+8981,20952,9263
+8982,2033,651,45127
+8983,16730,32143,13139
+8984,2032
+8985,19907,34448
+8986,15634
+8987,61629,43588
+8988,63070,7273,73477
+8989,61872,15560,42220
+8990,47148
+8991,76967,57847
+8992,79323,67478
+8993,28905,54502,20188
+8994,61297
+8995,20210,57734,63185,37136,20888,45521
+8996,81543,56989
+8997,30475,21736,54863
+8998,49905,66540
+8999,79953,76192,79711
+9000,46081
+9001,11900
+9002,36928
+9003,34979,32594,77027,38886,19536,74914,59368,47492,21812
+9004,44358
+9005,60661,62788
+9006,36040
+9007,54299,50982,17235
+9008,74870,44481
+9009,27031,53230,26432
+9010,18408,81759,79228
+9011,7646,341,60353
+9012,77279
+9013,31990,12884,11629,77716,57852,35734,5555
+9014,37151,67424,63768
+9015,44285
+9016,54826,52055,2546,81885,46409,74149,14984,41725
+9017,55897,39481,3573
+9018,40863,11986
+9019,22844,45461,46862
+9020,48619,1498,30164
+9021,31545,79401,21524
+9022,3244
+9023,52733
+9024,44959,47157
+9025,78078,53976
+9026,19187,3603
+9027,32851,59402
+9028,60861,79131
+9029,33271,81095,30453
+9030,47648,9670
+9031,65112
+9032,81736,67927,77560,16132
+9033,44943
+9034,80445,14353,40098,35932,21173,20484,78493,79984
+9035,30048,49132,14854
+9036,12376
+9037,70923
+9038,68047,56262,34319,31372
+9039,22996,4206,73873,74919
+9040,76885
+9041,35802,8513
+9042,601,74598,21101,65844
+9043,46388,79332,30188,24490
+9044,37173,40247,62639
+9045,35631
+9046,34038,7789
+9047,17360,498,26488
+9048,5347
+9049,30771,40497,2536,77005
+9050,24454,44479,31425
+9051,2889,27556,15911
+9052,67405,59475,34518,52769,60091
+9053,78600,14243
+9054,307,38663,62437
+9055,14250
+9056,81716,60931,16758,14468
+9057,33674,51249,47960
+9058,79663,32624,829,64748,6242
+9059,71032
+9060,26998,76849,2400
+9061,45336,48690
+9062,13396,35354
+9063,75789,73967
+9064,59860,40170,28912
+9065,1644,56455,55361,18481
+9066,56689,35274
+9067,26469,1820,73235
+9068,46334,69086,80996
+9069,30827
+9070,53852
+9071,8247,45544
+9072,60653,32627
+9073,49090,62236,5607
+9074,58556,18156,58168
+9075,14386,52231
+9076,57343,78875,45299
+9077,70736,21065
+9078,82123,28264
+9079,12106,64748,76434,52713,36687,67002
+9080,77839,13760,60847,9523
+9081,10077
+9082,8295
+9083,53383,58246,1812
+9084,48162,61866,53419
+9085,17908
+9086,32973,43189,34510
+9087,15704,56048
+9088,76368
+9089,66842
+9090,14610
+9091,24956,78909,65188
+9092,24122
+9093,7609,65936,70576,9773
+9094,17503,15311
+9095,49702
+9096,24630
+9097,38510,61875,15255,31537,4013
+9098,76171,80181
+9099,7601,55057
+9100,32889,37780
+9101,30793
+9102,17529,70652
+9103,49103,74038
+9104,6655
+9105,56223,46875,8196,38189,64195
+9106,65395,78910,53639
+9107,64837
+9108,25948
+9109,80375,64854
+9110,21762
+9111,51023
+9112,68836,31959,35548
+9113,1524,23864,49863,55451
+9114,58638
+9115,67964,2802,39424
+9116,27810,72480
+9117,44901,68854,863,5494
+9118,41980,14940,54002
+9119,10128
+9120,36649,25645,82189,2220
+9121,33811,11696,22974
+9122,76606,20884,75710,4617,40507
+9123,69265,7604,7323,38764,46839,22769,49246,25339,39326
+9124,30863,58411,9174
+9125,29128,60825,78332,66785,24236,73831
+9126,1759
+9127,5192
+9128,78362,76191,59417
+9129,30179,70227
+9130,48670
+9131,45487
+9132,6117
+9133,47355
+9134,78328
+9135,80124
+9136,13751
+9137,7848
+9138,50625,1010,45007
+9139,67590
+9140,56395,74484
+9141,68961
+9142,61640
+9143,58737,77204,26476,31648,65557
+9144,50741,62813
+9145,60079,35485,19829,50125,12314,47537,43688,46029
+9146,5777,36474,18650
+9147,16148,63597
+9148,10404,5940,18072
+9149,73902
+9150,14561,13986
+9151,5933
+9152,75321,53310,76710,14509
+9153,12787,37702,9266
+9154,22650,40560,42187,23751
+9155,10562
+9156,22554
+9157,292
+9158,11542,1243,66620,41051,61835,60916,38319,55770
+9159,73614,42545,63128
+9160,19929,1186
+9161,54394
+9162,71503
+9163,19866,19966,63047
+9164,34785
+9165,14159
+9166,27166,65547,37593,46087,25169
+9167,45236
+9168,72798,1387,7360,78807,21874
+9169,17146,75441,11951,63411,24568
+9170,47769,4160
+9171,14316
+9172,60546,62434
+9173,70422,79271
+9174,78274,56309,360,80093
+9175,76845,27988,7441
+9176,80019,48268
+9177,15994
+9178,22695
+9179,74525,17983
+9180,53972,17177
+9181,63982,70267,75596
+9182,42906,61572,24763
+9183,17748,32162,27737
+9184,4293,6406,49342,26110,71784
+9185,54813,40358
+9186,24076
+9187,37218,3927,74134
+9188,24439,36880
+9189,52991
+9190,68786,29983
+9191,60128,21496
+9192,49734,18515,63463,43894,2091
+9193,72821,36965
+9194,55450,45383,57871,60372,69959
+9195,28454,69367
+9196,53869,56688
+9197,21409,35885
+9198,55254,23643
+9199,80858
+9200,64824,2736
+9201,15898,23232,43363
+9202,80684,7060
+9203,54596,77170,46674
+9204,16414,36324,76282
+9205,80467
+9206,31244,11677
+9207,26917,48854
+9208,64689
+9209,45046,10872
+9210,73441
+9211,44688,76018,10202
+9212,73758,16245
+9213,81819,52536
+9214,24770,54696,49697
+9215,28789
+9216,49059,17143,18319,64822,79413,78616
+9217,60411
+9218,19801,46097,33819,60576,40740
+9219,9393,57120,32687
+9220,6280
+9221,78383,21524,29199
+9222,67807,21407,66269,53763,1042
+9223,4077
+9224,61861,80937,34898
+9225,34691,69491
+9226,20682,29997,8984
+9227,39813,19555,39602
+9228,66761
+9229,35992,13207,44400,48694
+9230,10144,43434
+9231,76909,79292,38656
+9232,71221
+9233,57336,6902,13780
+9234,34232
+9235,43224,30854,67928
+9236,5444
+9237,53264,16596,37031,65620,46368
+9238,49074
+9239,51829
+9240,68437
+9241,56132,61042
+9242,41426,13272,15651,69226
+9243,76227,72057,6181
+9244,60809,75780,76991,68750,77223
+9245,37127,75530,65623,16712,57925
+9246,17389,41758,30956
+9247,35610
+9248,54104
+9249,44850,45045
+9250,56693
+9251,63756,80123,37707
+9252,1255
+9253,26324,4182,53072,79572,76298
+9254,68840,43922
+9255,24001
+9256,74240,18587,51204,41679
+9257,68416,19156,13456,76535,14400
+9258,41803
+9259,820,35192,65749,67591
+9260,36260,75378,81540,11653,32914
+9261,79504,58177,38411,23124,78615
+9262,61949,63509,63679
+9263,78436,20277,33896,44083,43966
+9264,40914,35784,8451,67002,67712
+9265,72285,42561
+9266,34679
+9267,56226
+9268,32421,4037,46924,42162,29992
+9269,71497,41059,67613,1624,2168
+9270,11725,45649
+9271,4359
+9272,68416,56446
+9273,59409,5085,1818
+9274,17135,12094,70834
+9275,59243,32394,33055,32991,12563,51683
+9276,55169,14929,55212,3661
+9277,82173
+9278,69650,14228,31235,10861
+9279,6182,50308,54981
+9280,32835,2478
+9281,9045,37680,891,23008,3448,2115,17452,12382
+9282,14834
+9283,41277,30450,23788
+9284,34597,52239,33675,47099
+9285,70703,42494,37364
+9286,5501,5628
+9287,34609,57009
+9288,70676
+9289,52768,60894
+9290,13954,4535,34426,61122,37829,56863
+9291,49383,74419
+9292,17623,51467
+9293,78940,1494,15602,13292,39588
+9294,24639,73071
+9295,37364,17807,13730
+9296,24658
+9297,70059,25010,3787
+9298,61715,1161,80091,9338,32722
+9299,43612,18242,82051
+9300,5328,67533
+9301,9249,76151
+9302,12700
+9303,41739,71764,67990,34564
+9304,25566,58863,23701,55388
+9305,2965,20259,24562
+9306,38221,19943,6247,55573
+9307,41922,30229,26200
+9308,8722,47885,77040,35015
+9309,25715,52273,54635,39932,13158,50969
+9310,41518
+9311,59800,47123,74232
+9312,41790
+9313,58225,59086
+9314,8970,59999,27493,22206
+9315,52056
+9316,72972,8689
+9317,1199,68990
+9318,72881
+9319,73358,8708,29123
+9320,64059,1460,70029,60659
+9321,81181,73345,59331
+9322,61061,33900,46737,31746,25423,62361,27679
+9323,68828
+9324,70548,24397,53783,58673
+9325,60321
+9326,20549,81576,22153
+9327,60691,64374
+9328,13371,65504
+9329,24358,58309
+9330,51863
+9331,8282
+9332,78158
+9333,28342
+9334,58907
+9335,61695,32829,50576,69102
+9336,21711,48259
+9337,29495,22316,1691
+9338,57308
+9339,62962,39062
+9340,77422,67047
+9341,26309,59011,51253
+9342,81557,51739
+9343,29226
+9344,10565,53802
+9345,15256,73497,30716
+9346,42815
+9347,70598,38247,55048
+9348,61568,11736,4087
+9349,72091,62519
+9350,46635
+9351,22559,27386,52127
+9352,61431,43351,26579,58404,36455,20843
+9353,41954
+9354,24580,45912,50172,44203
+9355,47507,24856
+9356,16132
+9357,10057,67327,70959
+9358,28580
+9359,7437,67748
+9360,32245
+9361,77973,72244,27703,17862
+9362,56598,5059,22018
+9363,53976,81623
+9364,70758
+9365,42458,63855,14603
+9366,15230,43541,50611
+9367,52078,56118
+9368,32888,67111,49588,34971,40249,27218
+9369,35678,60943
+9370,54508,58867
+9371,61325,22128
+9372,11796,8005,40706
+9373,38214,80824,54745,32447,43338
+9374,14411,33279,51907
+9375,69935,71208,20987,6925,31635,14416
+9376,10989
+9377,43355,58137,63872,52373,70940
+9378,79606
+9379,7548,6307
+9380,670
+9381,13091,74047
+9382,8205
+9383,7242,29534
+9384,49891,52707
+9385,58593
+9386,50343,32453,66298,5996,23724
+9387,6549,36812,75316,67329
+9388,26687,62730,49146,69042
+9389,76256,76349,64229
+9390,3256,20212
+9391,60149,13847
+9392,124,12016,77557,56470
+9393,6136
+9394,72621,27691
+9395,70144,14509
+9396,48335
+9397,38856
+9398,70715,61774,58072,36237,5752,4789
+9399,10395,62496,71442,54443
+9400,40182,54779,42441
+9401,78933,19798
+9402,822,9934,45106
+9403,63683,5465,1093
+9404,13161,9380,30823,68273
+9405,79356
+9406,41299,50461,5173
+9407,43559,28693,39852
+9408,72898,48412
+9409,9726,66290
+9410,47106,33172,8634
+9411,34628,8047
+9412,79481,19648
+9413,23074
+9414,59276
+9415,32114
+9416,42569
+9417,39883,27501
+9418,10420
+9419,80715,55614,46930
+9420,58384,27189
+9421,12723,44189,28114
+9422,17138
+9423,81919
+9424,10241,75293,64842
+9425,46098,37193
+9426,6864
+9427,4536
+9428,29805
+9429,78686,14310
+9430,4152
+9431,52986,53267,67609
+9432,59267,29628
+9433,73646
+9434,80847,32527,37346
+9435,30399,10012
+9436,81430
+9437,71076
+9438,52734,80678,18294,46557
+9439,48711,56895,50810
+9440,75731,70239,73377
+9441,32704
+9442,50610,76757,16243
+9443,7147
+9444,49728,1972,27545,70597
+9445,49572,2069,19418
+9446,13794
+9447,26771
+9448,43178,70084,8771,80017
+9449,74128,45290,35981
+9450,70791
+9451,73201,56746,65721,54424,46629,3661
+9452,11331,29366
+9453,4962,66900,51515,77755,14335
+9454,79815
+9455,54157,24907
+9456,23500,66397
+9457,58005,14168,32786
+9458,5690
+9459,61251,7828,24079,8578
+9460,68946,34468,62329,42417
+9461,43437
+9462,6730
+9463,31535
+9464,39103,4676,25452
+9465,42374,73976,9814,77126
+9466,57427,35775
+9467,46844,5,6939
+9468,13612,43875
+9469,32711
+9470,53981,10016,4367
+9471,54218,30604
+9472,20686,630
+9473,29661,53159,2878
+9474,49604
+9475,32273,43911,44049
+9476,81425
+9477,1783
+9478,15381,37218
+9479,26367,37682,24740,63100,69616,25380
+9480,74622,21016
+9481,27311
+9482,7093,73617
+9483,78103
+9484,37433,57431,56890
+9485,22898,42101,46115
+9486,57610
+9487,48841,58680
+9488,833
+9489,70333,57356,41112
+9490,78216
+9491,19689,68117,70497,62670,53580
+9492,27011,67370,30171,38601,17619
+9493,46591,31306,42918
+9494,46670,47404,46608
+9495,40671
+9496,64290,58537,63144
+9497,21673,68424,17138,80415
+9498,55989,72359,73195,13850
+9499,79318,71156,1736
+9500,10077
+9501,18745
+9502,61019
+9503,37936,43610,35239,7089
+9504,3896
+9505,69565
+9506,30682,32578
+9507,78560
+9508,53116,53119,39573
+9509,5357,34464
+9510,79400
+9511,24487
+9512,22565,14447
+9513,46393,73513,46834,35778,55095,52828
+9514,44765,44443,14220,5435
+9515,13524,79494,57174,20715
+9516,75506,22761,79046
+9517,77340,57698,47802,48068,19767,3007
+9518,25837,78431,8864
+9519,35439,17202
+9520,67799,45940
+9521,63266,48539,50094
+9522,23938
+9523,81070,16087
+9524,3729
+9525,25509,77020
+9526,75389
+9527,82052,79139,30523
+9528,50734,73524,24460,26844,42769,60655
+9529,58144
+9530,3462
+9531,3524,66150
+9532,5813,26806
+9533,58454,55922
+9534,871,80517,30962,282,58095
+9535,39260
+9536,43698
+9537,28846
+9538,22299,57112
+9539,64843,59335,40869
+9540,56725,50704,19657,46323
+9541,44858,1091,77821
+9542,81317,75836,37498,13652
+9543,69319,44870,51198
+9544,7180
+9545,17693,46311,28239
+9546,35685
+9547,24789,14610,34567,23785,3483,47157
+9548,37420
+9549,34143,7449,49317,42767,49291,6066,23482
+9550,76396,6232
+9551,1554,64669
+9552,61592,59017,21530
+9553,17767,24552
+9554,72856
+9555,42324,2453,37193
+9556,36163,45931
+9557,80839
+9558,57769,74193,6771
+9559,57465,32156,13896,72060
+9560,19499,69053
+9561,10190,31485,17345
+9562,41806,35938,52968,34137
+9563,39401,10406,77196,79055
+9564,41457
+9565,41928,23551,16222
+9566,78076
+9567,66136,22325
+9568,69677,3563,78036
+9569,73850
+9570,61048,12096
+9571,18941,24824,38227,9116
+9572,1782,55017
+9573,73116
+9574,48892,14948,6491
+9575,76585,35149,32423,49128,42355
+9576,70064
+9577,47023,36741
+9578,23769,33591
+9579,15204
+9580,73830,31318,65036
+9581,22569
+9582,36923
+9583,23070,78762,60679,4431
+9584,69077,6322
+9585,53038,8944
+9586,45135,2836,66123,9917,43281
+9587,52612,14402,65596
+9588,45681
+9589,1571
+9590,68561
+9591,49394,11231,24324,28795,23238
+9592,63448,52029,57785,54488
+9593,39352,9255,60690
+9594,25520,47083
+9595,75959
+9596,44804,66009
+9597,66945,64557
+9598,21735,18341
+9599,10629,69463
+9600,33966
+9601,69207,68510
+9602,32692,15061
+9603,20189,54109,18916
+9604,38731,43198
+9605,42867,9850
+9606,16191
+9607,26430
+9608,927
+9609,14717,68688
+9610,34647,30915,4089
+9611,71214,41926,23870,70158
+9612,59107,47822,65
+9613,56863,59404
+9614,80684
+9615,57140
+9616,70677
+9617,99,1489
+9618,39924
+9619,26670,48539,19902,126
+9620,32065,70282,72512,1120,67981
+9621,27293,69012
+9622,61611,21296
+9623,63009,13791,79888,47114
+9624,76268
+9625,43542
+9626,27597,11828
+9627,39323,60437
+9628,52558,32024,61569
+9629,33559
+9630,3259,49963,53446,63270
+9631,3599,32444
+9632,57485
+9633,38667,70548,43489,17874
+9634,6381,29003
+9635,1571,69925
+9636,44025
+9637,39749,50492
+9638,6705
+9639,7595,51772
+9640,44278,13970,6495,17981
+9641,62885,12790,44204,52042
+9642,29763
+9643,46125,69928,53664
+9644,21189,69327,64171,27971
+9645,33852,60962,67499
+9646,56848,30315
+9647,30473,3890,34883,1805
+9648,35827
+9649,24809,66152
+9650,59471
+9651,21718
+9652,43254
+9653,44479,53336
+9654,5530,67539,10145,71196
+9655,21586,47390,43992
+9656,75723,37002
+9657,7888,12513,12196,7673
+9658,57504,13569,12371
+9659,60111,36415,73276,14189
+9660,41289,68001,58585,48061
+9661,29697
+9662,75499
+9663,17069,35107,8169
+9664,76802
+9665,801,29185,69327
+9666,10382
+9667,30757,16838
+9668,72192
+9669,73760,1606
+9670,29483
+9671,6244,54468,10626,64738
+9672,7820,61699,12431,60606,47422,43893,27041,71825
+9673,11652,21568,22272,64430,68276
+9674,45262
+9675,55106,42466
+9676,56439,11645,33831
+9677,28583,38348,18983
+9678,16844,16708,11556
+9679,71993,75548
+9680,47859
+9681,2876,16713,77509,57363
+9682,18122,33465,64043
+9683,32618,37500,53988
+9684,10620,13726,37124,26056
+9685,27112
+9686,70539
+9687,37517,75914
+9688,66752,46803
+9689,10936,2348
+9690,5084,12349
+9691,67283,12691,44394
+9692,64843,7915
+9693,55190
+9694,81796,19092,20903,21669
+9695,75085,15067
+9696,32199,29152,62596
+9697,27096
+9698,75511,57521
+9699,73527,81216,52406,65696,25135
+9700,55073,49383
+9701,29466,58878
+9702,17528,12950
+9703,7883,58593,29708
+9704,3032,79404,59065,79707
+9705,55368,22774
+9706,4252,13068,20818
+9707,23847
+9708,62640,14221,22680,1057
+9709,29515,64965
+9710,23497,3573,26193
+9711,10420
+9712,28735
+9713,20493,9850
+9714,1148,45611,71999,19
+9715,78280,7783
+9716,25365
+9717,73900,45047,36809,11371
+9718,6517
+9719,60828
+9720,19714
+9721,74368,40548,50600
+9722,14982
+9723,69579
+9724,38818,20393,19982,50348
+9725,54436,50499
+9726,75339
+9727,31030
+9728,81710
+9729,53959,22697
+9730,42862,54659,36382,67597,58792
+9731,80727,70816
+9732,21243,6359
+9733,69540
+9734,20252
+9735,6633,74078,12341,42768,7216,49648
+9736,81098,57047
+9737,53615,31358
+9738,23292,11512,43507,58259,51177
+9739,64076,35625
+9740,73966,46375,35551
+9741,15787,33959
+9742,289,61922
+9743,59307,78430
+9744,77192
+9745,63547
+9746,40873
+9747,2995,41790
+9748,16673,48837,76790
+9749,51259,51785
+9750,34885
+9751,70012
+9752,13482,74807,9430
+9753,15327,1615
+9754,55655,67138,21122,47680,40322,37252,49984
+9755,55254,52982,58393
+9756,62451
+9757,29444
+9758,17139,27456
+9759,20954,67034,39791,42699,24205
+9760,32128
+9761,55606
+9762,79400,64038,9495
+9763,72607,60821,28042,51197
+9764,8105,36885,33954
+9765,75826
+9766,27504,65233,25374,42103,25588
+9767,53772,33933,37683
+9768,78433,15321
+9769,15066,4758,65515,48243,56449
+9770,9579
+9771,21155
+9772,79518
+9773,22457,10077
+9774,18090,25758,41069,22439
+9775,59060,10464,69884,72572
+9776,29276,50731,33930,81810
+9777,75525,19820,27556,81796,67174
+9778,25147,14769,56904
+9779,46797,40994
+9780,44957
+9781,62802,18812,72648
+9782,14110,43074,47382,31818
+9783,4896,26777,55334
+9784,4045,73112
+9785,14684,71071,38346
+9786,43368
+9787,43336
+9788,4991,35048,24458
+9789,5656,49911,67819,56055
+9790,15736,57064
+9791,21449,21844
+9792,19723,12001
+9793,13247,2055,12041,24299
+9794,21945,40245,61445
+9795,63139,72293
+9796,25879
+9797,42926,29729
+9798,13067,39990,68309,65884,40339,72706,16175,29796,73594
+9799,18383,63946
+9800,75763
+9801,22496,32958,33173,33299
+9802,7503
+9803,71031,81430,22363
+9804,79527,69418,64761
+9805,76465,11545,20202,9638,7980,34043
+9806,73694
+9807,35896,37536,34791
+9808,17666,15327,61393,13822,45330
+9809,28787,73195
+9810,82002,15617,15120
+9811,5034,61873,65900,19395
+9812,67733
+9813,64058,34348,48747
+9814,66324
+9815,46168,39537,948,46431,70059
+9816,30983,62745
+9817,56591,64550,30830
+9818,39134,18892
+9819,44634
+9820,37303,68992
+9821,42236
+9822,48797,13864
+9823,68018,76586,80863
+9824,71804,40640
+9825,19990
+9826,16006,37945,17140,16185,17486
+9827,77600
+9828,7242
+9829,45796,64968
+9830,38785
+9831,13674
+9832,59664,32330
+9833,76825,43002,65666
+9834,58983
+9835,30981,36176,36621
+9836,68471,27488
+9837,17846,1862,21507,14606
+9838,48979,8958
+9839,3057
+9840,22475
+9841,22744
+9842,71090,33317,22573,61161
+9843,76252,47862,34452
+9844,64744,36091,47882,23023,74646
+9845,41962,16108,20771
+9846,69923,9944
+9847,19123,32448,8987
+9848,72877,41467
+9849,40457
+9850,41165
+9851,21901,45986
+9852,27417,51797
+9853,20696,51886
+9854,62606
+9855,52377
+9856,81426,27160,78182,42232
+9857,34261
+9858,66070,16242,28814,70325
+9859,47302
+9860,10329,18802
+9861,55591,31397
+9862,52861,35050
+9863,53774,67086,9930,8247,26248
+9864,39308,14687,74500
+9865,2335,76966
+9866,24937,3631,50245
+9867,36943,61338,30353,12152
+9868,57192,15413
+9869,31348
+9870,57077,5424,47744,28952
+9871,72924,58199,48281,63335,48629,33248
+9872,18852,78972
+9873,51556,68571
+9874,59414,34531
+9875,76710
+9876,44178,43681,39365,35182,71126,10554
+9877,21438,68843,58925
+9878,50703,49431,39546,70983
+9879,65592,1131
+9880,68973,20592,61308
+9881,33725,54188
+9882,54519
+9883,75324
+9884,30133,52726,75397,48504
+9885,46905,46817,36929
+9886,34393
+9887,3715,24156
+9888,81879,4338
+9889,22874,79116
+9890,7999,30394
+9891,66256,17269
+9892,47952
+9893,54071
+9894,52712,52242,25067,17482,3637
+9895,45447
+9896,60322,18605
+9897,13661
+9898,31154,60806,44788,54904
+9899,55467
+9900,15237
+9901,22065
+9902,20969
+9903,74448,7759,29447,17446
+9904,66210,80186,8741,75601,64211,74301
+9905,64149,51255,20597
+9906,57,56155,49199
+9907,60245,53481
+9908,61672,77909
+9909,58506
+9910,43415,47581,80269,9412,77959,70698
+9911,75830,74885,79273,13981,31267
+9912,50347
+9913,31038,22273,20438
+9914,30554,21441,81275
+9915,72873
+9916,73204,43907
+9917,31020,35191,11794,10858
+9918,23056,6530
+9919,41816,21540
+9920,43470
+9921,61902,31880
+9922,20153,65998,71897,18695,68720,61400,53301
+9923,26073,2540
+9924,16887
+9925,69566,33682,20664
+9926,62839
+9927,59134,48028
+9928,10603,27332,43052,68,39283
+9929,22718,63830,30361
+9930,74451
+9931,80967
+9932,2842,26781,23535,49060
+9933,30666,25067,62686,42950
+9934,1738,8306
+9935,32734,4188,52448,43042
+9936,9357
+9937,20415,53508,59115,59862,59331
+9938,27721,25363,69466,51996,15011,71044
+9939,46713,2056,45813,79711
+9940,79708
+9941,75226
+9942,36602
+9943,16475,12235
+9944,42178
+9945,65237
+9946,7364,78634
+9947,20986,43853
+9948,64700,72489,2496
+9949,52201,36338,41745
+9950,45390,5369
+9951,41701
+9952,34944,40896
+9953,64099,68883,37252,15897
+9954,12831,19608
+9955,66571
+9956,9252
+9957,5093
+9958,38230
+9959,22048,27323,3935
+9960,65515,24226,70321
+9961,6871,29846,28831,4374
+9962,9458,26495,51664,77402
+9963,22846,5395,64145,13294,72411
+9964,7935
+9965,19389,79827,16002
+9966,65248,34862
+9967,3488,15035,19823,2612
+9968,32748,82097,10962
+9969,68372,67379,6880,70170
+9970,13179,1286
+9971,67318,48121
+9972,54610,58611,16136,8574
+9973,34737
+9974,3505
+9975,1055,3392,28782
+9976,14050,74545
+9977,59633,14801
+9978,64269,59442,28643,71472
+9979,78825,35745
+9980,79094,63287,44138,74196,69332,76044,29744,17636
+9981,32087,37009,8701,64509
+9982,23807
+9983,64900
+9984,30982,37158,70405
+9985,55727
+9986,18253
+9987,71252,11333
+9988,13007,68986,6171
+9989,79419,53286,3311
+9990,62789
+9991,34616
+9992,6744
+9993,73638,4252
+9994,63648,69764,77792
+9995,58929,15030
+9996,47588,50665,28933,23929,64388
+9997,67574,18319
+9998,50566
+9999,47269,57913
+10000,48475,51063
+10001,80374,69491,54895
+10002,64678
+10003,14120
+10004,26560,1591,72870
+10005,7129
+10006,60032
+10007,7489,45481
+10008,41595,69565,16376,5468,26194,50073
+10009,72743,43422,75510,22490,55023
+10010,53462
+10011,26953
+10012,69912,71472
+10013,54812,41222,19797,59823
+10014,26638,32166,17402,19224
+10015,12235
+10016,67683
+10017,75445,10349,64112,17104
+10018,22440
+10019,61158,80547,4117,71761
+10020,34720,19791
+10021,30392
+10022,1605,48606,34725,41133
+10023,42928,61265,15255,38984,27568
+10024,36915,22901,75180
+10025,72843,77905,64135,5113
+10026,29884,46196,25246,79130,44233
+10027,21652
+10028,45352,51317,450,73119
+10029,58114,23290,70698,36631
+10030,68471,12724,78518,74433,53013,12302
+10031,66070,71605
+10032,5049
+10033,59633,40649,15008,73689
+10034,10208,49643,25439
+10035,1658
+10036,40172,62155,41451,65447,43655
+10037,12570
+10038,67945,25794,42083,16049,8304
+10039,1285,35886
+10040,51899,16871,61888,76634
+10041,26281,72063
+10042,78373
+10043,18181
+10044,49457,72263
+10045,16260,15033,26823,29824
+10046,22223,62872,75942,49573
+10047,25481
+10048,62810,68997
+10049,34673
+10050,21374,28233,35637
+10051,17596,9137
+10052,65316,50679,13999,41487,48823
+10053,839
+10054,24277
+10055,39359,27312,80055
+10056,45371
+10057,21135,54537,28168
+10058,32149,76363,56800,35349
+10059,10564,36598
+10060,2272,62653,76421
+10061,81872,64365
+10062,10522
+10063,27452
+10064,43355,56202,32662
+10065,60066,50232
+10066,54874,80264,66406,34929,32793,42685,66427
+10067,21794,8331
+10068,30878,24415,58459,6890,40076
+10069,896
+10070,48494,24487
+10071,26585
+10072,15615,13209,28278
+10073,67839
+10074,6758,68263,48601,42438,25711
+10075,74432
+10076,14232
+10077,73850
+10078,81430,45410
+10079,47427
+10080,56968,54008
+10081,75162,74376
+10082,54452
+10083,33246,13113
+10084,66843
+10085,11152
+10086,69224
+10087,70405
+10088,47144,68990
+10089,10995,24403,26494,79220,39521
+10090,45066,66526,13999
+10091,8220,26013
+10092,26714
+10093,2016
+10094,13312
+10095,74617
+10096,63263
+10097,44573,61034
+10098,28509
+10099,75985,39894,39719,34481,64777
+10100,41045
+10101,40917,22043,22644
+10102,31054,7622
+10103,64059
+10104,16751,835,4428
+10105,16847
+10106,37898,27043,12864
+10107,14053,66516,34252,69604
+10108,6706
+10109,32220,36121,12056,62026,40497,42556,47951
+10110,28355,9251
+10111,74771,38191,78942,62452,59588,24273
+10112,23224,31679
+10113,67379,77399,57441,66566,40041
+10114,31775,48362
+10115,28
+10116,30320,26375,81400,15376,27781
+10117,14869,26006,49881,79185
+10118,24666
+10119,72121
+10120,68025
+10121,64683
+10122,4508,30925,68551
+10123,15416,43787
+10124,11221,61985,71513
+10125,70570,48878,41004
+10126,5743,44116,51391,46620,75145,3053,33853,10067,56315
+10127,48856,6353
+10128,49006
+10129,67146,39441
+10130,29226,58125,42181,20045
+10131,73146,22973
+10132,63961
+10133,40184,32158,24290
+10134,3274
+10135,69340,55700
+10136,50612,54207,44115
+10137,26949,32278,7396
+10138,59945,8851
+10139,78063,35586,39198,24165
+10140,76036,32436
+10141,30349,59813,68027,35111,8266
+10142,75324,58587
+10143,55728,55053
+10144,15667,5630
+10145,6385
+10146,16709,75252,53207,70079,28617
+10147,36001
+10148,63969,48975,44740
+10149,57948,58399,66160
+10150,11701
+10151,50884
+10152,14301
+10153,38455,73430,80412
+10154,78138,26264,47298
+10155,44493,17251,38579,57847,77443
+10156,22865,15033,81678
+10157,54356,7746
+10158,9976,20496,23152,51490
+10159,44784,56410
+10160,15989
+10161,44185,81722
+10162,53683,13028,71802
+10163,4225,63393
+10164,19487,47837,32897,566
+10165,7281
+10166,7691,63984,78677,17140,6786,76659,42416,35187
+10167,20630
+10168,7363
+10169,38852,69690,66434
+10170,67565,31156,8102,80638
+10171,80234
+10172,79524,18468
+10173,14052,54405
+10174,79434,30491,26447
+10175,41150
+10176,28762,76607
+10177,41083,70919,20528,50255
+10178,64786,7973,80525
+10179,23960,34861
+10180,23702
+10181,7323,78020
+10182,54842,27424
+10183,24667,74809,14742
+10184,77210
+10185,23063,54717,23923
+10186,73839,14610
+10187,61131,48934
+10188,65728,46272,38583
+10189,56095,42803
+10190,71434,44318,78017
+10191,64446,69013,77049
+10192,4000,33376,20204
+10193,53052,68912
+10194,25247,50107,1281,81507
+10195,13813,48346,66726,61002,61711
+10196,39268,13351
+10197,40423
+10198,80411,34449
+10199,14363,73336,48334
+10200,47748,71620,36488,18885,63796,62825
+10201,74697
+10202,18623,25141
+10203,61889,16908
+10204,24879,20740,78109
+10205,28898,30344
+10206,17520
+10207,34277
+10208,20840,64687
+10209,18955,43906,77910,71188
+10210,59322
+10211,9055
+10212,22694,76082
+10213,65632,33372
+10214,59638,21967
+10215,80534,67261,58893
+10216,1000,67310
+10217,80218,46931
+10218,11278,7117
+10219,17669
+10220,8572,1221
+10221,81728,68808,47214
+10222,19433,78567,72779
+10223,74484
+10224,30877,80449,56963
+10225,40567,7963,6338,9378,79256
+10226,76322,37428,46651,81739
+10227,69113,15046,2349
+10228,33418,29725,60009
+10229,17263,39214,56946,55002
+10230,74562
+10231,41954
+10232,72894,25387
+10233,48359,79435
+10234,67682,70133
+10235,52644
+10236,4550,9773,17446,47746
+10237,43563,38383
+10238,5081,37787,44171,28862
+10239,23002
+10240,14470,47270
+10241,42797
+10242,48408,15406
+10243,57743,7829
+10244,44634,17785,21542,54912
+10245,7464,2062,67599,23365
+10246,14250,31746,31165
+10247,57634,62181,76538,40998,50327
+10248,68045,21938,72322,81579
+10249,56183,17664,28387,66066,79276,54365
+10250,73527,25275,63297,63214,39214
+10251,27061,3570,61769,50253
+10252,26631
+10253,54070
+10254,59761,71147
+10255,78559
+10256,59762,30238,39195,54488,36337
+10257,7080,29886,43662
+10258,47540
+10259,63115,1686
+10260,69942,41969
+10261,67770,50427,53393
+10262,15108,15686,8326
+10263,69374
+10264,25822,77826,14015
+10265,48498,28456,53961
+10266,73747,2697,26827,24677,56089
+10267,61332,77532,24151,76886
+10268,44580,31741,36015,53244
+10269,31022,67113,6371
+10270,32952
+10271,70187,10600
+10272,81700,61389
+10273,66763,78658,14910
+10274,41929
+10275,40994,35320
+10276,78430,54115,41467,54273
+10277,15190
+10278,58576,69144
+10279,2722,57110
+10280,71212
+10281,50781,58316
+10282,31241,60325
+10283,5690,29388,76725
+10284,18139
+10285,56441,42552
+10286,66448,78984
+10287,56208
+10288,38663,27766,38526,81514
+10289,19590
+10290,70455,67696,23453,38260,53185
+10291,36855,54017,44047
+10292,5476
+10293,57166
+10294,55114,30935
+10295,50113,67116
+10296,2328,5460,81692,27051
+10297,80402,78123,63289
+10298,62853,3558,19244,18341,635,21522,41070,76475,41230
+10299,82
+10300,56827,68862,56188,64036
+10301,11823,34847
+10302,38633
+10303,34153,29320
+10304,3259
+10305,28290,54937,76609
+10306,44109,28902,81043,67374,45006
+10307,63006,67672,50885,7750
+10308,17118,8470
+10309,41297,43246,76978
+10310,32038,54946,824,60805
+10311,30371,53294,2978
+10312,76762,55963
+10313,29184,65486,10512
+10314,45740,69969,79501,31008
+10315,39161,78245
+10316,25483
+10317,43759,81606
+10318,21380,42535,60878,58965
+10319,62508
+10320,64823
+10321,72037,73385,56454
+10322,43302
+10323,74649,22446,53601,46009
+10324,17243,16889
+10325,48889
+10326,17815
+10327,49595,10584
+10328,54533,77590,4323,39040,81472,55174,10139
+10329,73906
+10330,70735,18686,15604
+10331,74660,23942
+10332,33283,76141
+10333,56512,59972
+10334,41554,54719,70612
+10335,18586,73921,80561,19258
+10336,8729,42370,81327,63982,35657
+10337,76002
+10338,14167,59673,18442
+10339,56279,62232
+10340,51691,12222
+10341,24397
+10342,59329,21427
+10343,63078,34549,45729
+10344,63430
+10345,72943,25769,66251,63970,56984
+10346,53751
+10347,45836,72818
+10348,50029
+10349,67086,72945
+10350,19223
+10351,23877,75252
+10352,11347,73919,71974,10287,57412
+10353,72699,65878,80321
+10354,45792
+10355,31821
+10356,45300,59856,17591,5155,21260,59369
+10357,56337,48453,50585,62190
+10358,80901
+10359,22228,71784,80272,43711,56861
+10360,64049,19417
+10361,45179,17482,26939
+10362,6662
+10363,77843
+10364,19736,59708,34143
+10365,78015
+10366,779,18507,55512
+10367,24629,22579
+10368,65348,78973,43387
+10369,6607
+10370,7157
+10371,186
+10372,2213,71603
+10373,69224
+10374,51970
+10375,2216,23448,12690,72599
+10376,18441
+10377,49599,69662,42611,19880
+10378,36472
+10379,70240
+10380,4618
+10381,35978
+10382,1978
+10383,21237,57353,16724
+10384,45160,56314
+10385,40245,40211,51254,27311
+10386,73719,4768
+10387,53941,81906
+10388,1178
+10389,74873,52574,39580
+10390,15664,79113,80331
+10391,25077
+10392,59935,61868
+10393,49702
+10394,79387,13845,26542,16202
+10395,24323,15612
+10396,21326,62590,71473,2043,49833
+10397,76273,58499,44959,35184
+10398,49720,60847
+10399,74303
+10400,34999,30268,64292
+10401,78504,31491,74695,46641
+10402,75390,29845,76955,3545,35427
+10403,54105,23911,69608
+10404,62661
+10405,24435,56247,50532,49609
+10406,12408,36479
+10407,47017,15544
+10408,40790
+10409,4988
+10410,27262,39797,42577,6329,4779,20967
+10411,44725
+10412,74280
+10413,24273,80523,45755,2852
+10414,39216
+10415,6131,38946,2118,60001,74116
+10416,43444
+10417,65618
+10418,24620,66248,61480
+10419,35754
+10420,81879
+10421,69036
+10422,81297,59009
+10423,5171,56372
+10424,34184,56255
+10425,36429,59263
+10426,63261
+10427,81576,24986,81145
+10428,62070
+10429,66852,26740,79081
+10430,47902,27434,29308
+10431,34240,25685,11670,72059
+10432,73376,65226
+10433,16722,58779,76802
+10434,18526,2601
+10435,48702,1851,77840,68947
+10436,53389
+10437,56804,70030
+10438,2072,46869,42517
+10439,35555
+10440,8417,6689,34830,9238
+10441,11761,81466,13527
+10442,23760
+10443,9049,71907
+10444,48372
+10445,36806,35512
+10446,29421,19219,57813
+10447,67595,4678,72202,23452
+10448,23514,35545
+10449,54722,73526
+10450,33995,4839,37967
+10451,32002,73271
+10452,39586,25140,43986,62113
+10453,71665,31986,16311
+10454,15119,58200
+10455,78746
+10456,44136
+10457,16063,13322,5107
+10458,64661,53319,20794
+10459,49172,13446,78705,10376
+10460,51577
+10461,49709,36218
+10462,11677
+10463,19151,75855,50430
+10464,43281,3235,29857
+10465,23416,72943
+10466,34670,33751
+10467,62537
+10468,45196
+10469,24776,60627,12666
+10470,34955
+10471,3831,67981
+10472,2745
+10473,60287,39309,8786,73143
+10474,16502,52510,27533
+10475,34502
+10476,72359,44983
+10477,69367
+10478,24263
+10479,53294,7454,27762
+10480,36465,24499,12994
+10481,18414,3220
+10482,38415,8920,77321,42539
+10483,10798,77221,80593
+10484,74544,52385,48063,34766
+10485,48432,80978,73184,36984,36024
+10486,41262,19968,32936,59287,64875
+10487,31596,40526
+10488,25906,71859,14017
+10489,43834,53587
+10490,56529,73606
+10491,22260,17990
+10492,2777,25278,18061
+10493,14498,44040
+10494,9820,4232,70956
+10495,64618,35261
+10496,43334,49167
+10497,66260
+10498,59419,27802
+10499,42944
+10500,5317
+10501,64900
+10502,18544
+10503,43446,60236,16276,26920
+10504,42368,18530,70627
+10505,61682,11424
+10506,53681,58188
+10507,50614
+10508,31435,37408
+10509,2642
+10510,73421,76448,62104,42694
+10511,73434,62318
+10512,45815,79160
+10513,78801
+10514,46287
+10515,59735
+10516,77242,29439
+10517,81737,260,55177
+10518,25588
+10519,45894,47544,21543
+10520,51214,24256,66915
+10521,17446
+10522,80195
+10523,48234,29232,39659
+10524,12781,33175
+10525,43237,41847,63707
+10526,19681,43031,68096,7569
+10527,1151,49846,46719
+10528,65061
+10529,11855,37046
+10530,26440,14303,78471,71570,74612
+10531,68626,73213,13418,23134
+10532,21879
+10533,44959
+10534,72387
+10535,51771,7149,50457,57161
+10536,66421,17203
+10537,66208,26058,81884,50757
+10538,12132,75098,9405
+10539,1279,46768,28402
+10540,57607,78704,15275
+10541,15571,50190,17855
+10542,75377,9116
+10543,74677,30661,80925,65899,59010,13962,58114
+10544,18197,12889,39305
+10545,56576
+10546,68361,56256,57294,60632,57509,26873
+10547,62017,17799,25289
+10548,80096,61265,59294,61206,61026,40256
+10549,55080
+10550,49508,32065,78216
+10551,16078
+10552,37260,20018,60655
+10553,25489
+10554,51078
+10555,54238,50086,71383
+10556,54631,28336,14723,33709,58255,8880
+10557,55343
+10558,13265,50168
+10559,70883,53425
+10560,5062,76833
+10561,68099,46633,10953,639
+10562,53674
+10563,54951
+10564,31967
+10565,30304,20731
+10566,10049
+10567,21652
+10568,25341,30575
+10569,11979,77366,56144
+10570,12615,29038
+10571,77880,69327
+10572,66891
+10573,46881
+10574,21187
+10575,67932,171
+10576,48212
+10577,41106
+10578,20477
+10579,5881,5595,73801
+10580,24835
+10581,17171,27375
+10582,49435,18514,64206,70466
+10583,55697,27618,26522
+10584,42641,75435
+10585,27322
+10586,26308,77116,4803,56680,15071,39400,58127
+10587,38221,61736
+10588,34104,23226
+10589,2693,57224
+10590,64676,46375
+10591,69198
+10592,2146,19155,74644
+10593,1104,3430,28295
+10594,70597,58351,63802
+10595,60070
+10596,72038,43012
+10597,72621,77888
+10598,49490,38731
+10599,66265
+10600,75914,44987
+10601,44900,73760,71321
+10602,80710,42530,41982,59653
+10603,67208,21021
+10604,74852,44459
+10605,29216,26563
+10606,55517
+10607,72982,61877,22595,21644,42448
+10608,56175
+10609,10835,27699
+10610,21159,51431,75107,15067
+10611,16335,37479
+10612,75427,31056,30653,81672,61850
+10613,51104,14781,35872,72363
+10614,35259,43844,80785
+10615,4879,56396
+10616,23543
+10617,22844
+10618,81259,49756,63097,16388
+10619,45403
+10620,60849,24946,73967
+10621,60417
+10622,66247,45459
+10623,47882,71993,9825
+10624,17881,40905
+10625,61569,1925,15064,2562,38429,68642,59663,40334
+10626,52743,14953,924
+10627,19834
+10628,16764,63439,10943,37751,11181
+10629,76757,49056
+10630,9883,28347
+10631,52147,12884,22277,11572
+10632,69221,48161
+10633,5840,61345,71377,6545,67740
+10634,21817
+10635,3805,37887
+10636,36294,25542
+10637,58326,18703
+10638,20480,62929,38883
+10639,72550
+10640,65521,30368,41798,70426
+10641,2914,49029
+10642,17844,73649
+10643,30898,36980
+10644,34770,37814
+10645,50601,11397,9055
+10646,48833,80096,40577,22195,44475
+10647,6728
+10648,47368,20969
+10649,7471
+10650,20577,32785
+10651,59043
+10652,67602,68267,8929,30483,38695
+10653,25465
+10654,60580,31485
+10655,33985,13631
+10656,542,67285,6331,63414,42896,47033,70124
+10657,20562,63796
+10658,47628,53487,73888
+10659,59483
+10660,5234,14926,10510,52602
+10661,81963
+10662,76030,52983,78233
+10663,64983
+10664,79863
+10665,28103
+10666,81393,15878
+10667,40302,53838,77025,20053
+10668,50647,45935,46692
+10669,32888,16732,15152
+10670,28921
+10671,61551
+10672,16820,79031,35847,39526
+10673,69701,53829,54658
+10674,38389
+10675,38058,9081,58690
+10676,45228
+10677,6475,13928,21902
+10678,5372,73538,27330,49179
+10679,39894,52143,75302,60915,47021
+10680,79686,39887,871,11647,59728,78119,60831,68357
+10681,41656,28525,26219
+10682,41165,34424
+10683,79949,13816,75609
+10684,76627
+10685,76690,75079,55892,33060
+10686,44606,18728
+10687,80558
+10688,67104
+10689,43323,5823
+10690,26592
+10691,77880
+10692,72504,42048,43832,6951
+10693,75032,41071,79293,21786
+10694,64851,33593,23065,1407,76420,48293,72418
+10695,66536
+10696,30966
+10697,16016,42383,15201,15113
+10698,15149,30495,4456,53878,22973
+10699,17278,93,26785
+10700,60803,68064,62203
+10701,59467,60633
+10702,32435,16299,53278,2727,48894
+10703,32305,32151
+10704,30855
+10705,7525,23961,18621
+10706,19589,53833
+10707,64879,10502,7807
+10708,5400,76807,76261
+10709,16453
+10710,39808
+10711,11904,14165,33289,64302,9501
+10712,62593,60417,40102,63342,1615
+10713,1444,74714
+10714,50014,15862
+10715,70201,39838,45373
+10716,3886,14543,24965,173,52623
+10717,80074
+10718,33771
+10719,23738
+10720,53142,46039,54114,71553
+10721,7440,53123,64517
+10722,46182,24342,36248
+10723,17711,53275,12858,4543
+10724,78312,57637,43005,32321,47475
+10725,4433,79581
+10726,79540
+10727,27886
+10728,1298,27459
+10729,20132
+10730,24998,60927,2077
+10731,59791,55415,23368
+10732,382,60069
+10733,33093
+10734,80529,44731,71242
+10735,30426
+10736,32003,5586,49358
+10737,48699
+10738,7014
+10739,27046,8446,9006,70437,43630,40738,54680,66289,13837
+10740,1554
+10741,34520
+10742,68370
+10743,55827,594
+10744,73020,48806,74037,18338,63949
+10745,2393,39807,44996
+10746,12383,27408,49620,46200
+10747,70017,78493,16499,15224,2791
+10748,22333,81582
+10749,64676
+10750,68316,40376,7317,78930
+10751,1121
+10752,701,29703,79209,526,58371
+10753,59419,47445
+10754,16087
+10755,73256,30476,5324,46297,81670,31121,47780
+10756,22874,26603,62387,30585
+10757,26860,54458
+10758,18476,56029
+10759,62514,10591,68386,273,38583
+10760,23398,79686,77070
+10761,33907
+10762,5313,80712,1957,17987
+10763,7200
+10764,29695,5944,4326,20868,33367
+10765,38430,16754
+10766,72045
+10767,19558,28223
+10768,67988,63771
+10769,28368
+10770,21036,59100,64718,27243,40249,80163
+10771,78113
+10772,3253
+10773,36399,47766,11668
+10774,62151
+10775,37755,67477,22776
+10776,21530
+10777,29378
+10778,62909,3817,27717,14486
+10779,11875,27962
+10780,65937
+10781,58403,58840
+10782,70976,49375
+10783,81223,17231
+10784,52342,69327,65058,59575
+10785,61435,70741,8291,82076,41582,8964
+10786,19140,51097,6256
+10787,76721,12613
+10788,79917
+10789,36505,45813,32263,26055
+10790,80913,79661,18497
+10791,27689,45939,19076
+10792,5210,3467
+10793,45494,7474
+10794,2694
+10795,21491,77347,1994,22850,14159,39376,37997,28573
+10796,50192,79651,17961,55783
+10797,20890
+10798,36637,51675
+10799,23470,16048,31042
+10800,54004,81068
+10801,48886,15494,3359,20864
+10802,74319
+10803,62108,50363,43056
+10804,11317
+10805,80625,12699,15202
+10806,58318,36688,15957
+10807,63483
+10808,41858
+10809,41517
+10810,38632
+10811,75084,56802
+10812,67711,19071
+10813,42121
+10814,18686,28388
+10815,72550
+10816,63075,33977,80098,60758,1420,34685
+10817,64669,78556
+10818,57934,9339,9507
+10819,33376
+10820,41706,41733,55674
+10821,14346,17617,49083
+10822,49609
+10823,72765
+10824,76443,30473,61331,63469,39727
+10825,80485
+10826,61561,76991
+10827,16280,61932,3164
+10828,76675,18763,56765,41910
+10829,17902,16950,50734,74040,42602,13964,54505
+10830,77056
+10831,23190,75488,80100,63630
+10832,67548,23289
+10833,62470,31012,2533
+10834,46556,38379,9970,60594
+10835,39997,31117,29344
+10836,68319,37439,4893,11899
+10837,34779,57986,12631,68786
+10838,25238,73508
+10839,46174,34349,45811,19534
+10840,81363,18908
+10841,777,72532,3043
+10842,57436,31853,53127
+10843,17393,3896
+10844,58792,57395,76799,62441,54334,47510
+10845,4107
+10846,20936,43688,50059
+10847,31836,43400
+10848,5696
+10849,69540,625,30227
+10850,74928,72328,510,2639
+10851,5047,39788
+10852,81573,78528,49252,23948
+10853,13028,58104
+10854,17436,14637,19901,7954,10369,72719
+10855,39354,52156,65335,72992,31561
+10856,42437,57785
+10857,1178,28617,60268
+10858,14585,4081
+10859,33093
+10860,74725,48635,5296,545
+10861,81489
+10862,6514
+10863,53587
+10864,80971,14677
+10865,37623,77070
+10866,55762
+10867,3929
+10868,25737,27391,5414,41824,54613
+10869,22267,71512,15733
+10870,50801
+10871,10801,77537
+10872,60372,76633
+10873,64380
+10874,8519
+10875,16224,62020
+10876,58223
+10877,61386
+10878,77226,2681
+10879,36749
+10880,62184,20119,66941,13454
+10881,21100,26504,40867
+10882,32570
+10883,35444,47117,63536,72456,55122
+10884,80132
+10885,39394,12045,349
+10886,47085,26299
+10887,31826
+10888,39609,57554
+10889,71575,36463,11939,3419
+10890,77668
+10891,60417
+10892,70554,38678
+10893,63177
+10894,3034,18999
+10895,10115,14112
+10896,47018,60388,46728
+10897,46742,19173,73298,62326
+10898,72416
+10899,70827
+10900,27706,71390,5120
+10901,14681,77250
+10902,44042,24172
+10903,34604,63683
+10904,63738,55197
+10905,24968,8274
+10906,19254
+10907,66867,4377
+10908,26494
+10909,15985,22694
+10910,55153,54702,18957,62127,35341
+10911,23665,47295
+10912,77286,65995,37715
+10913,18378,65963
+10914,75836,63206,81278,54197,22023
+10915,33043
+10916,64505
+10917,58565
+10918,40422,27276,31456,73709,42013,48744
+10919,62985,55777,63976
+10920,8646
+10921,73195,19987,63158,54909,8533
+10922,74003,65726,24136
+10923,5816,79763,14045
+10924,45092
+10925,81650,9325,769
+10926,65485
+10927,71564
+10928,72220,33894,2232
+10929,19263,48896,11773
+10930,48230,28180,5781,32729
+10931,36204,26181,77716
+10932,41487,73258,36896,9241
+10933,9071,77623,69198,36799
+10934,27784
+10935,7314
+10936,5445
+10937,29420,73652,53465
+10938,8012,17731
+10939,78893,26155,10455,68472,53844
+10940,77550,57209
+10941,21337,41388,76639,22765,24940
+10942,23381,57334
+10943,28390,14374
+10944,5651,21350,48773,36964,13616
+10945,1937,63324
+10946,52374,16365
+10947,39491,32597
+10948,41736
+10949,69290,32996,34280,9992,26303
+10950,12978,37290,1945
+10951,41008
+10952,48165
+10953,78686
+10954,51535,28430
+10955,20720
+10956,76556,7652,24718,46510,63412
+10957,35871,52365
+10958,67831,55783,68809
+10959,65058,3991
+10960,11078
+10961,24635,43108,14102
+10962,54101
+10963,43572
+10964,74400,20653,385
+10965,50205,29865,5857,41573,25581
+10966,61366
+10967,29893,64431,63563
+10968,2005
+10969,36296,60923,51410
+10970,38066,9497
+10971,30438,40166,19737
+10972,57125,53125
+10973,9955,11512
+10974,35297
+10975,14055,4141,71607
+10976,74914,52692
+10977,60788
+10978,15530
+10979,78076
+10980,54946
+10981,4725,42361,58640,65391,66216,6053
+10982,14167,46400,13786
+10983,54605
+10984,65040,40454,32581
+10985,27818
+10986,33874,37786,57662,72383
+10987,54063,80251,57793,11653,39893
+10988,18478
+10989,21249
+10990,32685,39307,62656
+10991,72393,49330
+10992,56328,30266,81980,49961
+10993,41356,28254,35243,29519
+10994,36936,73226
+10995,25943
+10996,41722,60353
+10997,2074,25193,72835,41234,60458
+10998,38375,66657
+10999,80761
+11000,20170,74658
+11001,17596
+11002,12430,55240,72317,73467,71911
+11003,68646,36031
+11004,58031,12731,49029
+11005,62147,61629,23240
+11006,49716,39326,26974,40076
+11007,49046
+11008,59623,58199,12009,81422
+11009,19915,6132,29067,81633
+11010,40934,54566,46579,40054,6392,50077,16232
+11011,4983
+11012,67049,22895,70151,71653,61368
+11013,8163
+11014,40021,81934,19259
+11015,20754,16867,58720
+11016,59879,80932
+11017,47062,51106,11724,9026
+11018,30926,76683
+11019,38823,9438
+11020,50494,62379
+11021,50353,30687,4622,41435,21853
+11022,51872,34339
+11023,31642
+11024,10564
+11025,50823,79477,15130
+11026,24727,25291
+11027,79670,41721,13922
+11028,79058,66141,69148
+11029,17874,16950,78686
+11030,79167,1686,17687,62090
+11031,22079,3220
+11032,35409,72828
+11033,27081,67800,41205
+11034,35995,27507,19869
+11035,44642,41299,27774,35354
+11036,28607,46539
+11037,7685,50463,53423,20401,5415,55239
+11038,50897
+11039,64669
+11040,55171,47712,73638,20978,26715,52152,1973
+11041,43929,30452
+11042,77664,40205,9713
+11043,5679
+11044,28174,66232
+11045,35689
+11046,44523,78629
+11047,45974
+11048,22602
+11049,54709
+11050,32048,76485
+11051,68928,40083,72220,10503
+11052,65408
+11053,77334,18700,56344
+11054,67397
+11055,16945,39201,24636
+11056,17710
+11057,4896,78708
+11058,6607,23380,44748,10088
+11059,15413
+11060,79245,18138,1081,4333
+11061,3927
+11062,66777,58264,74450,6641,74299,53240
+11063,66421
+11064,51052,25635,80354,6817
+11065,48066,21261
+11066,56765,13778,30753
+11067,56603
+11068,59927
+11069,57904,38501,12055,71595,74715,21212,48918
+11070,5476,71337,19990
+11071,51533,63516,19100,10224
+11072,31078
+11073,65409
+11074,9546
+11075,58820
+11076,21317,48560
+11077,53145,25502,34697,40729,12936
+11078,64426,33607
+11079,6756,27234
+11080,13155,9836
+11081,69602
+11082,31149,17976
+11083,50256
+11084,65456,41156,19152
+11085,38129,69873
+11086,53894,30962
+11087,55061,67624,12974
+11088,76797,12513,41378,64331,25040
+11089,39675
+11090,34307,18703,77355
+11091,12903
+11092,73660,48154,32888,66598,59789
+11093,55875,47716,72753
+11094,43113
+11095,10299,60395,49606,25689
+11096,57205,58566,24115
+11097,44318,33601,20946,67967
+11098,71164,6118,5854
+11099,44850,52781
+11100,7831,24195
+11101,46651,47516,17683
+11102,7281
+11103,50428
+11104,47314
+11105,69159
+11106,67936,59224
+11107,5128,69072,11634
+11108,74402,8608,12700
+11109,72577,75959
+11110,17439,14245
+11111,33992,16517,53587
+11112,40380,49198,40369,77296
+11113,79836
+11114,5704,39695
+11115,69738,3160
+11116,75261,43138
+11117,34263
+11118,59438,11676
+11119,5586,80035,19269,41547
+11120,48338
+11121,14118,29092
+11122,5991,82016
+11123,63043
+11124,26878
+11125,276
+11126,21486,10395,23783,77315,65918,32400
+11127,59930,51683,55348,64951,59994
+11128,18242
+11129,81009
+11130,52869,33539
+11131,17171,66593,28330,41049
+11132,58247,11093,67965,63770,46666
+11133,28153,10152,49120
+11134,6602
+11135,14789
+11136,38456
+11137,49358
+11138,17806,31704,31363,62898,40088,16964
+11139,45091,72680,11085,66216,56906
+11140,28171,57830
+11141,41494
+11142,65880
+11143,22814
+11144,38318
+11145,6134,81683,51673
+11146,67177
+11147,78668
+11148,36268,32928,12836
+11149,58834,1970
+11150,46269
+11151,20720
+11152,11967,43775,55490
+11153,6908
+11154,9045,63067,44363
+11155,10433,74695
+11156,7363,80624
+11157,31275
+11158,55369
+11159,14592,18434,30767
+11160,76053,54838,51961,64291
+11161,71641,34652,79420
+11162,30983,41587
+11163,67520,63150
+11164,40322,15345,50692,47910
+11165,73400,8053,60451
+11166,26197
+11167,46038
+11168,13864
+11169,42925
+11170,39448
+11171,13593,32760
+11172,3506
+11173,69013
+11174,202,61132
+11175,23976
+11176,12686,38847
+11177,16405,58967,80223,71822
+11178,35601
+11179,18557,27852,65514,40214,66923,20687,29390
+11180,33509,48878
+11181,25710
+11182,73827,41775
+11183,25516,56344,1631
+11184,52870,4328,43089,16436
+11185,81620,10293
+11186,13358
+11187,64149,62745,66160
+11188,1984,54823,81429,41694,33883,50511,51160,3884
+11189,24197,2608
+11190,55455,52664
+11191,67305,23885
+11192,54278
+11193,12508,9204,62213,66745,42822
+11194,55443
+11195,22612,3408
+11196,58691
+11197,34444,49270,8083
+11198,19784
+11199,46554,44936
+11200,17436,69365
+11201,50364,12146,78970,59515
+11202,11674,24941
+11203,49137
+11204,59167,58764,23944,62896
+11205,29157,23752,59668
+11206,51702
+11207,64018
+11208,26591,57847
+11209,4517,53930
+11210,69211,17503
+11211,39765,53742,54418,42859,52054,69667
+11212,30226
+11213,68370
+11214,44361,61737,67684
+11215,821
+11216,15644,33154,54376
+11217,57123,79472
+11218,75367,24985
+11219,12,68450
+11220,51294,15881
+11221,41343,78925
+11222,35378
+11223,27710,42887
+11224,13986,69385,5088
+11225,76611
+11226,23404,77891,26188
+11227,64795
+11228,55727,58078
+11229,3877,12872
+11230,70147,11317
+11231,66880,64135
+11232,42877,74916,7336
+11233,70466,3887,44726
+11234,66921,1995
+11235,27905
+11236,31606
+11237,6912,36164
+11238,56259,20026
+11239,25413,28505
+11240,12312
+11241,42739,65547
+11242,13680
+11243,50267
+11244,36939,60304
+11245,71969,62789
+11246,37748
+11247,7216,80319
+11248,54432
+11249,25832,33237
+11250,23483,1937,65511
+11251,67947
+11252,23910,63155,27804
+11253,45727,23123
+11254,4146
+11255,2226
+11256,7029,77939,29521,77737,77861
+11257,73392
+11258,11359,56920,38387,9662,48383,78357
+11259,18381,44151,22100
+11260,56099,35619
+11261,32448
+11262,49741
+11263,45952,38636,27514
+11264,47726,24004,1404,22918
+11265,59710
+11266,70053,72916
+11267,64877,34267,66539,29685,80446
+11268,9995
+11269,23305,33114,66049,79090
+11270,77904,15302,21665
+11271,24435
+11272,51108,14984
+11273,35420
+11274,24222,4420,16978,75797
+11275,29731,81623,59413
+11276,22645,31436,19620
+11277,40010,18327,57867
+11278,45575,41200,16732
+11279,26845,47616
+11280,54578
+11281,33443,77360,4258,68538
+11282,40055
+11283,63232
+11284,64706,8396,60809
+11285,15691
+11286,77535
+11287,48296,42373
+11288,80315
+11289,1947
+11290,25025
+11291,58972,79778,45001,74240,70375,33796
+11292,37905,45481
+11293,51202,32849
+11294,17263,28696,55580,23764
+11295,3373,55314
+11296,19243,49699,13057,998
+11297,56924,19564
+11298,65713,25020,52980
+11299,48074,41799
+11300,12814
+11301,22177
+11302,56065,81108,65206
+11303,77082,62010,63533
+11304,63385,65263,18824,69657
+11305,43095,65606
+11306,65801
+11307,42917,70571,59444,7895,18607
+11308,16737,12394
+11309,59935,35564,61039,60125,54478
+11310,65613,53424
+11311,19941,53671
+11312,77939,79215
+11313,4874,14449,4246
+11314,37221
+11315,57698,56040,53044
+11316,13961
+11317,59856
+11318,9423
+11319,52592
+11320,40014
+11321,11512,39577,38348,51144
+11322,48628
+11323,29948
+11324,30186,29444,44222
+11325,7874
+11326,15791,31180,68028,63589,45169,24358
+11327,9330
+11328,80761
+11329,7298,43896,74885,70969,45012
+11330,20706,40767,8294,56827
+11331,25439
+11332,23757
+11333,74834
+11334,67957
+11335,62186
+11336,10322,68336,60509,59633,26833
+11337,42408,76518
+11338,69029
+11339,36697
+11340,58725,30849,67108
+11341,17893,35875,31406,51137,74773,43051
+11342,40441,30649
+11343,34834,45846,39323
+11344,35670,13621,22608,79057
+11345,11806,9271,17273
+11346,26420
+11347,59934,18094
+11348,17303,10671,7213
+11349,13295,4243,32159
+11350,59781,74556
+11351,2491,39992
+11352,3111,76674,67279,13992,64480,71116
+11353,68687
+11354,70855,45269,11318
+11355,45211,37730,49100,61922,12691
+11356,39769,15140
+11357,16593,41885,34262
+11358,27952
+11359,44707
+11360,40518,58000
+11361,72465
+11362,79432,41719,22387
+11363,49310,64051,7048,14120
+11364,49125,45332
+11365,22663,78322,78923
+11366,60547
+11367,66534,35566,42410,22438
+11368,53961,30175,20747
+11369,24910,53619,8522
+11370,41300
+11371,30066,43254,65507,35655
+11372,34106,76494,39952,76397
+11373,25040,23878
+11374,76460,38884,81555
+11375,2491,78172,60705,10995
+11376,14738,60792,78068,29739,51908
+11377,66260,52101
+11378,1680
+11379,22587
+11380,28028,56474,24891,38425
+11381,62825
+11382,67353,18244
+11383,59367,66544,15419,79233
+11384,10795,61272
+11385,68857,56488
+11386,63565,1374
+11387,66991,18398,29075,12389,42788
+11388,50597
+11389,56848,51833,61808,16896
+11390,79638
+11391,54465,64307
+11392,26432,74550,53469
+11393,64356
+11394,53533,70122,42214
+11395,54969,39106,21725,78258
+11396,76569,66791
+11397,1690,82189
+11398,77825,76745,18212
+11399,48902
+11400,28430,38064
+11401,64900
+11402,81783,8501
+11403,52485,42391,3934,80068
+11404,75829,693,79826
+11405,14310
+11406,22645
+11407,4470,24199,70606,56322,7342
+11408,37216,20794
+11409,68850,71323
+11410,467,16922
+11411,27642
+11412,79361,44810,27550
+11413,56149
+11414,50502
+11415,6336
+11416,44755,37620
+11417,37676,60245,62613
+11418,29076,47201
+11419,79268
+11420,7963,14317
+11421,45442,60341,53529,53852
+11422,59115,20955
+11423,44955
+11424,9177
+11425,55739,74655,1334
+11426,72574
+11427,18164,68171,3943
+11428,10409
+11429,36779,4771,41558
+11430,15902
+11431,64030
+11432,7744,13900,28515
+11433,30144,56080,67369,14405
+11434,71245
+11435,42489,74804
+11436,23847,40790
+11437,53157,7398,39381,45748,78170
+11438,38571,12097,26453,8803,74633
+11439,65148,24207,64844,68822,2966,7094
+11440,67200,13632,59445
+11441,55712
+11442,30520,56048,14886
+11443,32611,67575,8785
+11444,60882,15271
+11445,42103,18209,27468
+11446,25022
+11447,58082,3601
+11448,26219,71397,72921
+11449,81872
+11450,70888,48439
+11451,69833
+11452,6263,72293,50923
+11453,62295,64002,23132,58010,41865,22312
+11454,14525,29716,69305
+11455,6193,67540,58593
+11456,53696,7796
+11457,76199,60220,68873
+11458,16757,77102
+11459,39815,3876
+11460,35903,73062,66632
+11461,43040
+11462,59593,2447
+11463,76393
+11464,41693,63072,3089
+11465,34057,12525,59692,70315,35979,42276
+11466,60870
+11467,32030,1462
+11468,77018,60301,60089
+11469,44768,2044,5558,13860,30905,10210
+11470,38329,36945,18406,7448
+11471,22321,42684,19699
+11472,10876
+11473,10043,15446,45379,13057
+11474,48756,57257,58889,55934,43755
+11475,28816,46685,50363
+11476,62787,74799,16117
+11477,18204
+11478,67810
+11479,39857,59735,74038
+11480,60106,14331,73279
+11481,8989,4676
+11482,71377,74289
+11483,3707,68096
+11484,11665,71572,15067
+11485,59740
+11486,32908,44289
+11487,55795,38550,81019,18313,62326,61389
+11488,20786,48196,63041,72194,46290,46499,16727
+11489,77209,26414,9262,23505,42983,39991
+11490,77538
+11491,36134,49247
+11492,40957,71887,14759
+11493,35186
+11494,68370
+11495,27738,36337
+11496,48473,68043,31858,33067
+11497,8048,81430
+11498,7100,68714,29433
+11499,42944
+11500,62936,81661,24931
+11501,58029
+11502,20331,81646,23197,8191,6354,31087,37903
+11503,14442
+11504,6977,33634
+11505,48487
+11506,50024,55044,525,58562,51342
+11507,75683,28651
+11508,16617,10467
+11509,68743,5203
+11510,76751,80381
+11511,23130
+11512,67841,69973,74698
+11513,26186
+11514,29844,29500
+11515,11536,13342
+11516,45982,27133,72629,40529,17028
+11517,40402
+11518,28121
+11519,81368
+11520,79274,74564
+11521,43704,79001,19127
+11522,40840,63754,38905,14569,61994
+11523,72835
+11524,35192,26646,31084,15551
+11525,28516
+11526,28331,5321
+11527,60449,3550,54598,24135
+11528,46976
+11529,60826
+11530,29133
+11531,267,2464,39463,2590,28658,66127
+11532,80576
+11533,21528
+11534,23188,75660
+11535,16736
+11536,24435
+11537,33742,28842
+11538,78478
+11539,4542,41219
+11540,65907,76555,40423,4986
+11541,60250,62405,73358,43508
+11542,81806
+11543,79051,9330
+11544,23118,7154,70360
+11545,28914
+11546,31719,33058,33440,57479
+11547,76480
+11548,41929,36218
+11549,22414,27502,45361,34673,18521,62589,29942
+11550,39410,69148,57628
+11551,65264,57793
+11552,5114,31780
+11553,16960,36160,77185,65108,13361,49833
+11554,49968,30255
+11555,77998
+11556,14443
+11557,5658
+11558,71796,16242,52018
+11559,3517,50534
+11560,55241
+11561,55791
+11562,64963,356,19790,11119
+11563,73888
+11564,53577,52190,6513
+11565,49556,76710
+11566,10655
+11567,20991,33470,28621,26777,61249,56288
+11568,7809
+11569,42655,17887
+11570,50133,12989,25964
+11571,61329
+11572,54668,26547,76708
+11573,44866,60160,9130,39487,20708
+11574,51271
+11575,26794
+11576,15609,41830
+11577,33973,19866
+11578,19457,49784,28980
+11579,16396,27684
+11580,81826
+11581,9413
+11582,1702,591,42463,58973
+11583,67272,23666
+11584,30015
+11585,45180,44280
+11586,18856,27703,65435
+11587,47337,52975,9249
+11588,33282
+11589,40483,16753,64183
+11590,39267,55502
+11591,52986,79558,67460,26455
+11592,32094,61680,46543,50166,28259
+11593,24105,67540,54038
+11594,36885
+11595,44506,67521,41519,25463,7686,46020
+11596,33247,48805,61050,71533,22629,21888
+11597,1960,2527,9037,26427,50372
+11598,22052,37553,44478
+11599,52716,2384
+11600,51193,75239,69572,31128,29444
+11601,56420,16777,14284
+11602,53064
+11603,48601
+11604,29352
+11605,68562,41705
+11606,11195,18428
+11607,33150,71760,50289
+11608,24887,1988
+11609,43638,16048,50164
+11610,39496,79406
+11611,72678,35236
+11612,21740,2839,25488
+11613,44479,60458
+11614,47439,5573,30918,77793,33378
+11615,48669,51860
+11616,34333
+11617,57446,42468
+11618,77671,47834
+11619,66900,13971,7605,57739
+11620,43423,9886
+11621,20880,41975,76454,4428
+11622,62542
+11623,71245,82032,6682
+11624,28438
+11625,63365
+11626,24139
+11627,21945,81502,57183
+11628,9186,23564
+11629,72271,69774,31143
+11630,73640,24438,45131,10426
+11631,40266
+11632,61155
+11633,49504,13912
+11634,65012,76713,59532,73062
+11635,46444,43656,48619,38508,71214
+11636,17186,2673
+11637,6411,64233,78710,69002,29907
+11638,33092,14217,38413,60557,66215
+11639,21249,52304,70421,66053,24142
+11640,14982,39880
+11641,80568
+11642,15745,9488,39588
+11643,1073,80325
+11644,47985
+11645,66737,71825
+11646,21918
+11647,16736,80542,1681
+11648,68010,7593,5969,42745
+11649,31760,43534,54518
+11650,40488
+11651,7299,77702
+11652,56528,67042
+11653,71564
+11654,23768,54955,8955
+11655,20559,3883,21997,1260,6748
+11656,26598,50815,28054
+11657,25544,70822,4925,19977
+11658,30371
+11659,65941
+11660,22791
+11661,54436
+11662,65075
+11663,39240
+11664,10781,18597,22651,33687
+11665,50557
+11666,17089
+11667,71058,76848
+11668,53812
+11669,77807
+11670,67970
+11671,75650,62792
+11672,10145,7451,5997
+11673,62237,74489,19385,68834,28546
+11674,77817,9749,10037
+11675,67501,41337
+11676,31554
+11677,24053
+11678,81019,20804,33298,76012,79501,22020
+11679,54406,26019,58712,47199,81872,59753,18416
+11680,29887,49621
+11681,26585
+11682,53666,72234,26630,3618,57369,59533,17849
+11683,43147,13959
+11684,33286,50357
+11685,61403,41036,73401,70227
+11686,16615,75695
+11687,6242
+11688,69973
+11689,67334
+11690,61334
+11691,30331,77619,80283
+11692,22634
+11693,39053
+11694,58385
+11695,43227,43283,44657
+11696,2681
+11697,19689,7802,2085
+11698,71625,25396
+11699,47815
+11700,30405
+11701,73107
+11702,67102,67528
+11703,66392,134
+11704,30830,68449,16365,79707,27884
+11705,76529
+11706,10388
+11707,8157
+11708,30464
+11709,13932
+11710,78514,14090,26869
+11711,75459,54742,77557
+11712,67630,36296,29846,65977
+11713,55367,51067,2667
+11714,63193,2867,16083,41903,73313
+11715,32393
+11716,21408,66247
+11717,71402,38587,19675,69130
+11718,65439,27378,16496,36412
+11719,38994,24200
+11720,65647
+11721,69728,4252,14008,79001
+11722,1318
+11723,11622,76723
+11724,36770
+11725,62541,70665
+11726,70304,74937,70682,43286
+11727,25940
+11728,69363,34610,4555
+11729,35376,30674,60488
+11730,41491
+11731,74402,44115,48306,22018,64471,47488
+11732,24927,35138,18498,33865
+11733,40289,45885
+11734,68323
+11735,334
+11736,30058
+11737,23404,47624,63885,44087,51355
+11738,74780,16241
+11739,53065
+11740,81555,22121
+11741,51731,31324,34187,17051
+11742,11207,68211
+11743,73994
+11744,59735,21171,42114,9030,4495,50662
+11745,6831
+11746,5314,5548
+11747,32195,59993,1636
+11748,65389,52498
+11749,26419,79815,24722
+11750,31814,21995,65092,53852
+11751,257,78273
+11752,72102,20210,62171
+11753,23737,1437,70945
+11754,42213,76171,45400,44993,53576
+11755,1180,36730
+11756,77555,67175
+11757,80967,77876
+11758,23829,77625,1844,38548,28094
+11759,24609,23125
+11760,12484,19938,7452
+11761,55730
+11762,43998,42452,80066
+11763,60103,60380,50893
+11764,67046,57667,58560,75786,65586
+11765,66731,58816,61752
+11766,39638
+11767,35835,78336
+11768,74565,63226
+11769,26397
+11770,60663,47379,49881
+11771,27038
+11772,69344,6240
+11773,8677,25689,11771
+11774,50951,17724,47867,70730
+11775,32261,46599,33973,59180
+11776,31232
+11777,20618
+11778,45769,13131,73188,47072,42609,72205
+11779,53487,16466,80639,24288,1918,70648
+11780,20426,78447,12395,31496
+11781,30426,44606,27942,78237
+11782,21098
+11783,65523
+11784,60427,68568,34571
+11785,33364,27995,14068
+11786,21782
+11787,14753,39849,2186,55827,55885,78705,78792
+11788,6019,70804,33186,1025
+11789,14273
+11790,12814,7218
+11791,29226
+11792,18284,43538
+11793,50476
+11794,14322
+11795,7921
+11796,64601
+11797,6342,13983
+11798,21257,1953,55911,21000,28085,37183
+11799,48194
+11800,19638,23957,57380,71426,29301
+11801,8503,21829
+11802,23185,9884
+11803,30656
+11804,61554,21983,38098,43761
+11805,54740,2568
+11806,19412,52056
+11807,24950,20457,1523,73331,9260
+11808,28348
+11809,26157,34759
+11810,57019
+11811,56612
+11812,24865,33627,44475,75079,1700,29435
+11813,10077
+11814,26602,10682
+11815,65692,28259
+11816,19140,68564,47695,1364
+11817,49609,59145,62370,37775,31855
+11818,44029,17811,772,29951,1925,46905
+11819,47434,9396,39222,51178
+11820,11662,53954,19719
+11821,78464,78949
+11822,58956,78306
+11823,48229
+11824,58010,76906,24861,79050,43934
+11825,67398,55916,42944
+11826,49566,1194,33545,22291,20343
+11827,64145
+11828,61191,80714,77016,74564,63029
+11829,52261
+11830,19488,40644,73907,41440,60427,57241,14088
+11831,41043,80180,42481
+11832,79140
+11833,29075
+11834,39079
+11835,35209,34313,78414,73272
+11836,62975
+11837,28412
+11838,1772,51887
+11839,46971,77100,63960
+11840,18995,20358
+11841,72550
+11842,33607,47106
+11843,64417
+11844,25808,32884,26912
+11845,52338,80888
+11846,42128
+11847,31532,8568
+11848,67471,37410,31017
+11849,81866
+11850,68618,65910,46881
+11851,17645,7397,47033,24137
+11852,13233,48867,32853,23253
+11853,24469,23862
+11854,3823,23577
+11855,55951
+11856,41200,43295,82028
+11857,14618,32667
+11858,2617
+11859,23290
+11860,32140,16109,67000,8564
+11861,12550,9564
+11862,18124,62472,40850,34587,45155
+11863,19005
+11864,58950
+11865,28620,13027,32905,64996
+11866,35321,71552
+11867,28460,73602,17111,76211,29078,25704
+11868,43241,27656,12336,22769,50650
+11869,3865,39937,58512,28216,5690
+11870,23182,49824,54938
+11871,56575
+11872,3504,12752,54066,26315,66562
+11873,29873,71603,61767,36335
+11874,60943,54519
+11875,6063,8581
+11876,52864,4386,32204
+11877,38194
+11878,57057
+11879,24065
+11880,6504,37578,79933,62226
+11881,30414,5703
+11882,72188,74713,63295,46595,19871,8767,17614
+11883,44220,7802,1180
+11884,26952,65279,57544,55022,22550,12680,54535,31206
+11885,77955
+11886,28829,2987,36260,23125,67370,79552,21524,46168
+11887,40311,17143,56212
+11888,63021,57453,16402,61379,53340
+11889,39559,79860
+11890,34532
+11891,78249,42418,49524,54651,79941,30479
+11892,49660,29416,42979
+11893,20417,70848
+11894,63750,57966
+11895,29928,41470
+11896,44124,23409,21807,63855,60173,40084
+11897,26992
+11898,9027,11178,9138
+11899,5521,16499,70047
+11900,70892
+11901,23768,31533,8700
+11902,47081
+11903,5012,38917,68824
+11904,43133
+11905,25448
+11906,67739,7754
+11907,75355,27421,17999
+11908,49337,25855,68095,48191,59478,41703,15271
+11909,5781,49561
+11910,26397
+11911,39523,74456,23342,25310,53114,60378,48587,15116,19737
+11912,14493,80763
+11913,73180,46697,36429,77716
+11914,37751,9133
+11915,59022
+11916,1487,4288
+11917,44402
+11918,62551
+11919,26554,23465
+11920,8998,72780
+11921,14663,6294,82174
+11922,40345,64258,26728,69222
+11923,75058,15131
+11924,10227,45845,47837
+11925,5680,62412,62865,60240
+11926,23989
+11927,54278
+11928,77799,80360
+11929,18819
+11930,31619,67512,2589,68536
+11931,6339
+11932,4433
+11933,39889,51496,8519,59560
+11934,59666
+11935,17488,32786,39341,77587
+11936,68323
+11937,24027,24530
+11938,24202
+11939,37105
+11940,6353
+11941,77395
+11942,24086
+11943,66136
+11944,4588,48256
+11945,53308
+11946,28809
+11947,56240
+11948,32468,6840,62349
+11949,62176,17613,29615,55777,51480
+11950,51626
+11951,30859,52280,59937,11644,53682
+11952,55983,42147,20389
+11953,40101,46015,43441,1312,62879,48809,64849
+11954,73801
+11955,28606,60828
+11956,13712
+11957,5599,68088
+11958,47138,75347,81655
+11959,34117,16238
+11960,70315
+11961,33032,4890
+11962,32760,76841,1118,80801
+11963,25932
+11964,41352
+11965,79739
+11966,72483,61215,20205
+11967,10470
+11968,45516,12658,42218
+11969,43285,16613
+11970,8718,31867,33213,55231
+11971,80142,50203,48540
+11972,46883
+11973,29590,16648,60614,33045,76399
+11974,19678,37713
+11975,55147,20657,63679
+11976,50882,32285,50564,18045
+11977,40087
+11978,22442,38068
+11979,1938
+11980,66970
+11981,20357
+11982,73587
+11983,12124,61733,20411,5217,53376,295,80958
+11984,15235,65747
+11985,30227
+11986,39041
+11987,8540,77587,32190
+11988,72492
+11989,1746
+11990,21370,42187
+11991,72256,76541,34075,14097
+11992,55661,42967
+11993,54058,16139,68349,28667,53934
+11994,57139,6420,64070,28739
+11995,7533,32214
+11996,66383,30179,37343
+11997,34027,67980
+11998,22136,19518
+11999,31285
+12000,65587,80880,44927,31332
+12001,15436,12893
+12002,24947,1731,73274,69700,61064
+12003,5961
+12004,21450,47719,74965,14196,2001,45391
+12005,40133
+12006,37154,77741,65813,75759
+12007,80095
+12008,38868,658,5381
+12009,31213
+12010,62780
+12011,41768,40913,34002
+12012,22965,45347,5361
+12013,76002,25170
+12014,73113
+12015,75691,15052,4982
+12016,81275,19469,80722
+12017,68906,69745,40482,60221
+12018,79662,11917,64936,9197,39426
+12019,25879
+12020,33350,36969,75824,78514,66433
+12021,53848,57599,5521,37421
+12022,70874,69257,68462
+12023,65527,56090,4852
+12024,16191,73527,13461,7502,79768
+12025,76246
+12026,71800
+12027,67835,74061
+12028,68783,55473
+12029,29127,75623,73279
+12030,46905
+12031,30481,81363,8796
+12032,2466,6649
+12033,25591
+12034,73981,76411,37889
+12035,21740
+12036,67511
+12037,10187
+12038,54014,56204,64497,23545
+12039,77887
+12040,39517
+12041,31464,69087,39553,8743
+12042,16478,39715
+12043,49440,76625
+12044,2068
+12045,59297,66148,9206
+12046,60338
+12047,64795
+12048,6683,22569,48912,68921
+12049,51859
+12050,27460,15360
+12051,27636,8008
+12052,37150
+12053,14443,23882,37499
+12054,38000
+12055,65954,51676
+12056,40651
+12057,29781
+12058,77876
+12059,75393,70186,12860,46511
+12060,12312,26526,20932
+12061,65768,52371
+12062,25024,35494,35310,62544
+12063,71611,4971
+12064,42353
+12065,75888,51174,14820,3287
+12066,65937,70510,65588
+12067,60802
+12068,17648
+12069,75526
+12070,16150
+12071,37912
+12072,33428,62912,1181,56142,78264
+12073,40924,30976,66025,329,44877
+12074,74408,67855
+12075,71020,62456
+12076,79989,74016
+12077,57531,29355,49101
+12078,75036,45693
+12079,30525
+12080,51807
+12081,18192,42180
+12082,55795,75000
+12083,10936
+12084,1571
+12085,15929,31838,66706,42560,17384,12108
+12086,35442,9892,24374,31007
+12087,29461,17273
+12088,40442,23940,18996
+12089,28659,21377,20472
+12090,3564,20384
+12091,74926,29755,45505
+12092,67025
+12093,55075
+12094,52663
+12095,6262,31620,79877
+12096,28705
+12097,78515
+12098,11625,67589
+12099,25167,11261,10425
+12100,41359,9766,79068,9551,75305
+12101,68596,3826
+12102,70958
+12103,10549
+12104,56676,70545
+12105,67858,16086,55302
+12106,75923
+12107,61969,59684,65478
+12108,18742,16241,43904,69472
+12109,31800,10549,42206,79521
+12110,3950,43869,42832
+12111,9734
+12112,77738,72952
+12113,79931,1597,15163
+12114,9997,45637
+12115,24674,77792
+12116,47067,52188,70692,74074
+12117,27456
+12118,6021,54491,43706
+12119,48692
+12120,15144,21922,81874,62478
+12121,62522,16761,32943
+12122,21922
+12123,26480
+12124,40925,80559,73422
+12125,19080,70099,18296,57909,21933
+12126,65544,63927,48875,18468
+12127,23429,33685,18975,32085
+12128,4165,39786,43609,74238
+12129,28254
+12130,70065,65230,79268,44828
+12131,29562,53128,25552
+12132,61516,14215,18695
+12133,73121,31522,27386
+12134,67990,10533
+12135,35937,19154,34916,31176,28848
+12136,35553,25060,30732,81837,41512
+12137,35959
+12138,55393,43722
+12139,17521,25585,52892,69883
+12140,80170,10250,61346,50642
+12141,80958,30941,76925,68451
+12142,70185,58481
+12143,57668,64845
+12144,16343
+12145,57942,6773,68762,61595
+12146,62977
+12147,16645,8120
+12148,63049,17482
+12149,28813
+12150,5288
+12151,22710,18151,27411,30890,41811
+12152,74488
+12153,47451,61053
+12154,51522,6420,77091,55266
+12155,73275,70272,66777,65437
+12156,51710,6425,10226
+12157,26748,29831
+12158,19963,58955,33223
+12159,6639
+12160,43645,7342,10421
+12161,18151,23164
+12162,58061,78870
+12163,29717,727
+12164,21829,202,720,48799,45164
+12165,16673,78057,38809,28219
+12166,66392,57798,24327,51331
+12167,57819,10466,31008
+12168,8918,68573,26585,48766
+12169,72644,50179,18141,45344
+12170,48996,53161
+12171,12010
+12172,14027
+12173,56655,2694,81450
+12174,26694,79577
+12175,47741,26945,75589,55234,41705,27707,79579
+12176,65231
+12177,65093
+12178,54815
+12179,73,38691,32661
+12180,17286
+12181,61394
+12182,3006,51552
+12183,39321,54049,4657
+12184,72966
+12185,67869
+12186,1881,58368
+12187,41367
+12188,31247,21081
+12189,80647,75635,75709,26658
+12190,7093
+12191,60325
+12192,143
+12193,43049,76763
+12194,68090
+12195,2788,70919,77123,70018,55063
+12196,45579
+12197,17049,49874
+12198,48242
+12199,77708,79897,50468
+12200,74110,31343
+12201,52502,23472
+12202,13858,67267,77366
+12203,70316,9835,20128
+12204,60712,69876,31045
+12205,63915,28274,39822
+12206,51159,43122,75087,20082,2717
+12207,78200,12568
+12208,1055,56725
+12209,6946,3043
+12210,14161
+12211,39040,34167,51913
+12212,68279,15692,34784
+12213,61967,27006,53064
+12214,638,18526,8003
+12215,5837
+12216,21302,31594,14870
+12217,11398,4727
+12218,74334,68048,11889
+12219,69230,6759,52259
+12220,50066,81176,36747
+12221,2435
+12222,48685
+12223,80230,55011,47752,59004
+12224,38896
+12225,8464,69650
+12226,64091
+12227,45374
+12228,76809,35736
+12229,2084
+12230,19573,28797,28605,36382,2620
+12231,54468,27505,11950
+12232,19805,696
+12233,10514,57208
+12234,56476
+12235,77716,50126,35192
+12236,32679,30427
+12237,28690
+12238,3744,16847,47496,9074
+12239,4367
+12240,25106
+12241,17163,27189
+12242,44804,50364,55879,50363,25072
+12243,53887,35420
+12244,33613,1310,482
+12245,39350
+12246,15737
+12247,18930
+12248,80952
+12249,68785,47145
+12250,22222
+12251,37203,60459,27032,11613
+12252,54080
+12253,38178,64531,25210,74027
+12254,38026,11436
+12255,2538
+12256,35320
+12257,80078,32401,80251
+12258,52710,75313,40974,24239
+12259,78613
+12260,6517
+12261,80360,11008,21136,17891
+12262,1497,22940
+12263,45480,74554
+12264,25035,21654
+12265,34963,60565,53385
+12266,54611,72083,56000
+12267,64884,76788
+12268,5324,55418,74365
+12269,9944,45418
+12270,4103
+12271,3159,29599
+12272,14423
+12273,6093,25600,6771
+12274,70797,13139
+12275,30079,68711,68391,68516,1588,73342
+12276,7836,26446
+12277,38200,36967,59222,33599,2400
+12278,66568
+12279,57482,43713,12909
+12280,73020,67076,27010,14427,57084,40095
+12281,36482,49933
+12282,32964,33979
+12283,64816,50199,3405,30224
+12284,66666,30275,13606,55289,69090
+12285,21769
+12286,76520
+12287,65211,36922
+12288,81514
+12289,60685
+12290,26675,79640,1409
+12291,8009,43660,64770
+12292,45959,24136,56199
+12293,82142
+12294,1346,54959,62680
+12295,22629,48348,52305
+12296,5457
+12297,38204
+12298,25274,41352
+12299,19059
+12300,46402,76546,61742
+12301,70213
+12302,435,17596
+12303,35986
+12304,46080,49659
+12305,78934,8126,67274,68458
+12306,53519,35901
+12307,29801
+12308,41242,7758
+12309,32422,28411
+12310,38199
+12311,8256,51425,15603,43633,66606,70266
+12312,49429
+12313,41734
+12314,57399,30567,31479
+12315,39410
+12316,30342,70716,52223
+12317,35257
+12318,31949,36766
+12319,73495,47948,58228,40056,76533,51758
+12320,13278
+12321,74682,63008,37528,2619,74273,16337
+12322,48049,28043,49359
+12323,72893,44857
+12324,22268
+12325,63425,69934,59519
+12326,4994,75567,10776
+12327,66490,74900,35436,58570
+12328,526,49997,40201,39423,44867
+12329,36843
+12330,43295
+12331,28873
+12332,4541,67873
+12333,60741
+12334,3385,70116,18749
+12335,79852
+12336,51835,44273,62303,71497
+12337,73258,30494
+12338,39944
+12339,28724
+12340,70078
+12341,22177
+12342,43877,6246,32485
+12343,67125
+12344,23810,21098
+12345,35680,64334,37218,20034,8158
+12346,22568,70380,59383,40272,48224
+12347,4555
+12348,35762,11694,46709
+12349,80967,7816
+12350,47546
+12351,14029,6613,30413,469,55204
+12352,2363,18649
+12353,45358,72448,33347,45075
+12354,44789
+12355,56165,65396,11736
+12356,27435,11210,32518,13654
+12357,4968,34763,69775
+12358,65422,52878,30689
+12359,19130,70623,46294,25516,53831
+12360,32624,34232
+12361,25200,67374,7182
+12362,31354,19319
+12363,79838
+12364,60025,3572,36755
+12365,69471
+12366,41761,44861
+12367,57358,65211,53529,833
+12368,62715
+12369,74994,27542
+12370,62031,31655,24548
+12371,53245
+12372,135,80746
+12373,59858,58683,54805,72784
+12374,28078,5628,18119
+12375,16078,19837
+12376,72858,55047
+12377,60870,77809,50296,36924,9971,54314
+12378,31250,18366,8868,18998,74552,40240,78383
+12379,37533,22813,28588,11525
+12380,48575,62398
+12381,68726,10748
+12382,71423
+12383,16445,18079
+12384,53154
+12385,70383
+12386,63717,77189,17471
+12387,55606,71070,42452
+12388,41529,34890,44562,71161,79696
+12389,55739,39327,36172,2674
+12390,55552
+12391,63059,39024,21521,10468,32741
+12392,56892
+12393,69813,78776,3508
+12394,17692,22645,60757
+12395,17930
+12396,4649,11101
+12397,32250,2578
+12398,15569
+12399,77242,19671
+12400,29162,74278,28955
+12401,10332,78127,48354,9004,18508,74004
+12402,52714
+12403,46315,72758,65817,36810
+12404,67390,75355
+12405,69306,35234,55664,71294
+12406,35263,43535
+12407,52120
+12408,62082
+12409,1100,35190,69680
+12410,15476,43393
+12411,73275,56396,34515
+12412,67130,56112,63707,73438,32371,9390
+12413,77266,52442
+12414,11287,22037,5414
+12415,15583,61922
+12416,32780
+12417,53983,81527,78079,58143
+12418,57273,12877,17267
+12419,66277,35043,21292,43972,79230
+12420,53490,37079,58761,75805
+12421,74776
+12422,69326,65265,49535,55390
+12423,43617
+12424,37685,35727
+12425,76633,81172
+12426,32114
+12427,68519
+12428,53847,20241,48726,60241,80041
+12429,35346,44421
+12430,81660
+12431,32137
+12432,24627
+12433,30846,16185,56742,47876
+12434,45082,4345,53821
+12435,73883,43119
+12436,69374,82009
+12437,75808,76584
+12438,13023
+12439,74618,3186,56076,64744
+12440,62611
+12441,14435,10900
+12442,16653
+12443,53065
+12444,12811
+12445,18934,27974,15056,54112
+12446,10715,74932
+12447,14161,71479,16840
+12448,12767
+12449,50931,50840,59217,24090
+12450,19698,59637
+12451,47301,23921
+12452,788,7969,8820
+12453,72173,77959
+12454,47016,997,37942,55117,70479,9764,45183
+12455,61089
+12456,31876
+12457,60102
+12458,35631
+12459,59467,3166,78145,28482,60089
+12460,55639,18222,80525,28178,40447
+12461,64064,57644
+12462,9606
+12463,53688
+12464,13840,30231,24041
+12465,56615,81490
+12466,34907,70609,34225
+12467,69829,20364,9403
+12468,76643,23847,22593
+12469,32865,51115,62305,516
+12470,7864,51122,21357,36714,41323
+12471,48009
+12472,10577
+12473,75389
+12474,33036,68213,55856
+12475,71539
+12476,23527,56815,71687
+12477,52352
+12478,76276,77849,59541
+12479,59434
+12480,68228,69511,56134,74943
+12481,8713,8451,26710,45417
+12482,109,18835
+12483,38924,59188
+12484,70148
+12485,48475
+12486,24478,56484
+12487,44719,59833
+12488,69632,31092,12588,55176
+12489,18665,13560,12504,49224
+12490,60014,19689,3162,56332
+12491,70567,8840,10338,40546,56763
+12492,47946,38352
+12493,42094,11020,68985,12339
+12494,78650,56176,68263
+12495,42256
+12496,39472,82191,61898
+12497,76633,40998
+12498,74925,3698,76853,5232,68335
+12499,56898
+12500,66215
+12501,66462
+12502,48237,53318
+12503,64461,17080
+12504,36744
+12505,139,10615,18094
+12506,43092
+12507,77550,39357,57701
+12508,14837,20803
+12509,65947,33765,76962
+12510,33536,72191
+12511,6929,34463,18477
+12512,48498,53163
+12513,57709,24135
+12514,36325,74016
+12515,4581,58374,60055
+12516,50506,13873,26484,55275,52567
+12517,59374
+12518,14282
+12519,45195
+12520,66035,73896,54612
+12521,10325,70961,25557,48461,73097,23595
+12522,9047,78630,21398
+12523,77689,81121,75222,59290
+12524,69476,5052,24943
+12525,10989
+12526,37153
+12527,33368,25196,19927,50840,8473
+12528,12600,21145,66169,73982
+12529,26112,74553
+12530,46174,45434,54381
+12531,78144,81141,61268,61866
+12532,35302,52177,59141,78852,48027,19638
+12533,61601,31306
+12534,66447,54307
+12535,69001,41545,20836
+12536,53284
+12537,52692,33429
+12538,21592,13262
+12539,71680,15573,36626
+12540,8642,64922,76168
+12541,53879,2732,36306
+12542,46050,7047,51634,57779
+12543,44331
+12544,4104
+12545,45124,48951
+12546,66105,60088
+12547,41093,5575
+12548,4589,77481,1964
+12549,532,51785,49295,40068
+12550,34197,67962
+12551,26102
+12552,80847
+12553,25586,66375,10043
+12554,44546,45634
+12555,34321,31920,38041,64182
+12556,14282,50341,61491,70198,36465
+12557,53376
+12558,63960,3100
+12559,76485
+12560,54893,82165,18159
+12561,70182,33272,9274,76592
+12562,64864,78387
+12563,64106
+12564,3314,72520
+12565,64396,3148,5955,34221
+12566,51327,40101,12584,53482
+12567,54460,573
+12568,28100,6068
+12569,9756,2684
+12570,65879
+12571,3430
+12572,970
+12573,19289,23195
+12574,71187,51767,75074
+12575,36033,300,50776,10696,34120
+12576,43732,25356,18139,62018,53085
+12577,42539
+12578,24181
+12579,57857,13973,20383
+12580,44980,5731
+12581,28967,25267,25675,24471
+12582,23422,81582
+12583,29405
+12584,14056
+12585,41364
+12586,149
+12587,81676,15900
+12588,4086,43714
+12589,22749
+12590,75773,28789
+12591,69481
+12592,49380
+12593,2318,55048,32896,54756,10501
+12594,14775
+12595,71628
+12596,80644,51642
+12597,14424
+12598,40723
+12599,13215,58886,77032,36176
+12600,27743
+12601,33961,13780
+12602,28082
+12603,19729,42707
+12604,54529,19040,31432
+12605,28164,20616
+12606,41378,16834,42800,59988,74228
+12607,47246
+12608,3729
+12609,60335,75984
+12610,18308,79794
+12611,76401
+12612,17813,40643
+12613,67272,66788
+12614,55483,36001,1290
+12615,17296,74408
+12616,52207,37923,81202
+12617,63740,1265
+12618,29628
+12619,49691,15880,62716,19151,22215,365
+12620,19506,76615
+12621,34760,71043,13468,66418,26259,23220
+12622,42506,64732,21202,65224
+12623,11928,76055,79846,70669,18839,40352
+12624,53723,46975
+12625,72962
+12626,72709,62853,22733
+12627,6963,2171,42084,55044,19431
+12628,27644
+12629,22280,9493
+12630,38569,40496,63348,408,77326,29068,9411,75371
+12631,78953
+12632,65451
+12633,21181,12585
+12634,72534,64809
+12635,8873
+12636,51757,5286,29627,19777,24421
+12637,13889,34571,43554
+12638,73694
+12639,23943,54016
+12640,73072,67571
+12641,16653
+12642,51594
+12643,70923
+12644,76964,53888,27738
+12645,59113,2626,37031
+12646,31015
+12647,36430,65714,48379
+12648,9527,20627,52075,18740
+12649,34867,10902
+12650,37821,78448,26706,80381
+12651,14325,30499
+12652,19039,59028,78484,16020,20147,8001,27754,8397,10132
+12653,59214,44685,52079
+12654,37686,79002,4887,30436,46779
+12655,51951
+12656,66429,13371
+12657,25560,28090,37228,33114
+12658,81906,65786
+12659,17634,29521,37383
+12660,11331
+12661,30622,48287
+12662,50318,10292
+12663,24915,67241
+12664,2690,18852,43513
+12665,76480
+12666,30820
+12667,2134,39828
+12668,22758,35631,3442,6472
+12669,41300,25756
+12670,32073,67625,69250,27522,54676,25036
+12671,45376,39041,45251,61391
+12672,70304,13456
+12673,70817,24722,45369,1023,76450,63418
+12674,24686,74255,57486,43369,78561
+12675,20055,59673
+12676,2636,25583,70643
+12677,63552,51850,29461,23461,57463
+12678,76320,3948,30390
+12679,16841,69220,74602,77681,50802
+12680,10246
+12681,3751,56759,53764
+12682,17271,47478,15798
+12683,50218,69874
+12684,14156
+12685,66959,26272
+12686,7408
+12687,33267,38411
+12688,28439
+12689,47980,33957,19285,64396
+12690,81642,35704,16300
+12691,74926,14282,80504
+12692,29548,74106,53695,65633
+12693,18478,5699,44510,75908
+12694,27915,34793,29356
+12695,36930,34961
+12696,81265,18234,81249,78559
+12697,13864
+12698,49327,47243
+12699,8105
+12700,27901,82081
+12701,57586,48369
+12702,6898,74515
+12703,38192,17611,48783,80162
+12704,46312,22898
+12705,30025,12642
+12706,39442
+12707,80953,28914
+12708,38345,76812
+12709,43117,7189,13194,65146
+12710,51726
+12711,78844,49017,50055,79185,37430
+12712,25934
+12713,7967
+12714,12429,32723,62984
+12715,19755
+12716,29194,9334,28565,40080,28962
+12717,51310,60379
+12718,43377,6399,61527,23624
+12719,50450,44625,4417
+12720,8328,62342
+12721,19830
+12722,16992
+12723,17825,49167
+12724,6137,17260
+12725,15558,79003,33545,24381
+12726,74126,56587,16267
+12727,68106,3883,42526
+12728,26099,52775
+12729,75361,46813,71958
+12730,3267,11847
+12731,72712,43434,76504
+12732,33371,52143
+12733,73680,29861,48703,49126,38492
+12734,22697,41696,21070
+12735,48484,14501,42984,33853
+12736,3371
+12737,43230,60633
+12738,10337,34385,17794,28893
+12739,77717,76670,48025
+12740,52337,32834,72837,38770
+12741,41719,51194
+12742,45496,69875,79910,19714
+12743,9423,25612,25273
+12744,71699,53076,68603
+12745,81610,63428,17540
+12746,24596,22894,68687,51791
+12747,13635,24305,78745,33312
+12748,61261,13866
+12749,46103
+12750,32014,18843,26923,48202
+12751,12144,26595
+12752,28004,79258,27422,50365
+12753,20122,47056,64784,6342,13487
+12754,59900,14640,164,15891,67712
+12755,77623,25839,16089,55258,48349
+12756,52179,21508
+12757,10409
+12758,47930
+12759,49710,30816,371,57525
+12760,69584,9860,65981,32195,36962
+12761,25502
+12762,51977,54431
+12763,56372,52628,1868,51973,25239,50542,15649
+12764,19790,67194,41476
+12765,58862,66574
+12766,66706
+12767,2808
+12768,71564
+12769,17767
+12770,1016,48434,28838,25756
+12771,64893,69937,21510,11858,45339,16813
+12772,70506,31306
+12773,50627,31223
+12774,33468,129,35119
+12775,2357,18958,30363
+12776,4711,19240,32278,28859
+12777,73166,33054,27246,69707
+12778,9488,3224,78716,33774,54785
+12779,59653
+12780,21711,5447
+12781,4379
+12782,11955
+12783,53826
+12784,73264,18063,63737,44105,13037,34534
+12785,18363,311
+12786,75302
+12787,32618
+12788,54264,53629,47263
+12789,78819
+12790,52006,3111
+12791,9888,38044
+12792,69550
+12793,76915
+12794,69633,16589,60910,25094,65934
+12795,30324
+12796,78669
+12797,11548,76956,58290
+12798,81205,14438
+12799,32032,68332,8194
+12800,15226,8127,11498
+12801,50894
+12802,74423,17612,61130,27341
+12803,72842
+12804,6427,50393
+12805,43246,42245,39262,7810
+12806,23030,32470,62329
+12807,63398,7429,5819,20101
+12808,82174
+12809,23022,4819,69194,33632,49821,6111
+12810,13394,58200
+12811,4719
+12812,61937
+12813,57614,20528
+12814,3684
+12815,66718,6063,61485,4552,60431,6064
+12816,16519,69715
+12817,31108,78778,79316,14250,37786
+12818,45952,59869,31913
+12819,66828
+12820,32362
+12821,74930
+12822,43683
+12823,79251,66433
+12824,21906,49722,6445,44794,39289
+12825,38509,78932
+12826,56910,3862,72772,20481,49192
+12827,31099,43878
+12828,39317,42333,49200,37867,15941
+12829,36053,46974,76828,53272
+12830,64835,46046
+12831,18931,27802,6370
+12832,4467,61628,23810,56891
+12833,4845
+12834,68811,74147,65409
+12835,6345,71416,64290
+12836,35847
+12837,39428,44562,80820,2297
+12838,1780
+12839,38541,70171
+12840,70681,37912,29964,36074
+12841,8439,41613,40169,15684
+12842,57403
+12843,49140,4726
+12844,2463
+12845,66967,12143,46169
+12846,16888,13881
+12847,6508
+12848,3596,27383,49824,66041
+12849,28695
+12850,6559
+12851,62274
+12852,27022,59982
+12853,65436,81016,7196
+12854,16227,7203,15653
+12855,44052,52661,73059
+12856,21312,59350,63926,22574,77982,32153
+12857,1511,79909,10716,36740
+12858,49682
+12859,52365
+12860,36448,65803,13766
+12861,17892
+12862,50709,32037
+12863,34474,3827,25052,54519,32014,14398,13557
+12864,67874,27249,11894
+12865,33874
+12866,58771,25560,8740,67837,66963,52851
+12867,68937,28699
+12868,46257,2407,312,18976,37222
+12869,4524,53737,66117,79316,69178
+12870,53770,17288,63200
+12871,35734,70453
+12872,47773,74026
+12873,62377,81947
+12874,6811,5695,41038
+12875,49224,58635
+12876,55154,6430,78418
+12877,42235,46174,38191
+12878,16249,20059,62497
+12879,13310,79383,46117
+12880,8040
+12881,33510,55899,48121
+12882,5445
+12883,6772,49386,7165,28838
+12884,77037
+12885,65203,1732,46807
+12886,62430
+12887,4719
+12888,18414,76082
+12889,79641
+12890,36554,58249
+12891,39814,19076
+12892,41990,39385,10016,49533,13590
+12893,40321
+12894,22703,67466,8673,42943,80151
+12895,59334
+12896,12297,71327
+12897,64179
+12898,63912,52660
+12899,1387,3042
+12900,14330
+12901,52132,57709
+12902,31952,28597,11441,16769,17652
+12903,1905
+12904,45107,70992,23689
+12905,33016,71268,38582
+12906,43685,73888,15764
+12907,23379,29330
+12908,23878,57227
+12909,73862
+12910,51908
+12911,48604
+12912,73871,13423,34276,10713
+12913,44450,39902,33111
+12914,19550,21331,19290,48652,71190,71437
+12915,30,80739,81324
+12916,55795,12055,48605
+12917,39888,15954
+12918,24269
+12919,77293,61798
+12920,18916
+12921,44640,19634,21699
+12922,79386,60091,11972,79159
+12923,80734,22656,23189
+12924,75557,64875,19112
+12925,75795
+12926,66026,79343
+12927,57815
+12928,74133,60892,27200
+12929,77203
+12930,8578,5419,15458
+12931,78997,23780,78633,9881,50857
+12932,58663
+12933,27275,39381
+12934,74889,75719,35792
+12935,75539,42402
+12936,1623
+12937,25648,54018,21636,10262
+12938,1759,42064,80237,50846
+12939,38318
+12940,7059,7793
+12941,12078,45722
+12942,81473,11397
+12943,26743,53210,3391,65307
+12944,21024,8692,15297,8073,33723,16307
+12945,74515,17462
+12946,76673
+12947,57098,15702,56281,11073
+12948,63078,70450,10011,65042
+12949,10477
+12950,73241
+12951,24090,39582
+12952,16501,44843,31232,56175
+12953,75075,11833,60336
+12954,62732,2385,15766,12664
+12955,66263,81010,8353
+12956,59558,17236
+12957,34455,12448
+12958,66312,13850
+12959,79964,9729
+12960,54355
+12961,76184,19749,74383,27351
+12962,16373,29412
+12963,2664
+12964,52377
+12965,41980
+12966,21460,78507,79678,46104,6062,21682
+12967,47011,61965
+12968,3544,55497,12551,40254,78272
+12969,5828,61510
+12970,7628,69227
+12971,16460,60355,80489,68605
+12972,5424,63069
+12973,79937,1567,79962,10163,21440,58635
+12974,48377,67690,30790
+12975,76288,62655
+12976,62338,9733,30227
+12977,65566,70951,10967,26041
+12978,19544
+12979,56397,4407,80994
+12980,2534,81206,68736
+12981,35531,4016
+12982,51456,59299,41834
+12983,6028,19742,16762,68596,35069
+12984,41864
+12985,25990,38547,2338,51993,27471,12649
+12986,38770,38584
+12987,3479
+12988,28388
+12989,63177
+12990,50975,42183
+12991,72142
+12992,26956,36598
+12993,15660,41543
+12994,18743,10955,1578
+12995,30001,10536
+12996,37688,57191
+12997,60565,66206,10154,28800
+12998,66345
+12999,43427,23372,54436,76935
+13000,52520,52302,74154
+13001,71194
+13002,40420
+13003,28388,59900,74474,21337
+13004,25091,6225,4810,29078,55679,17502
+13005,60603,61657,21909,14651
+13006,46641,989
+13007,14183,14320
+13008,3280,16755,74756
+13009,649,19414
+13010,17290
+13011,51216,52026,60059,38396
+13012,25380,6046,53452
+13013,61465,2988
+13014,6029,64744,37207,2245
+13015,51334,76306,14031,23152,63980,42495
+13016,62817
+13017,66012
+13018,69512,32129
+13019,63601
+13020,59365,62973,44073
+13021,22169
+13022,44858,10240
+13023,31876,5735
+13024,3589
+13025,12196
+13026,12160,67136
+13027,29975,53025,25282
+13028,3296
+13029,38714
+13030,21791
+13031,55709,75214,56260,10633
+13032,78798,20879
+13033,80117,50830,63265,81753
+13034,74420
+13035,71141
+13036,7924,6401,68255,66343
+13037,69007,20122,68938,13900,8540
+13038,14946,63436,47732
+13039,51300,61418,8595
+13040,78867,82002
+13041,12803,76099,69889,59708
+13042,6334,76194,54558
+13043,39893
+13044,78659,46630,30781,35133
+13045,76504
+13046,77226
+13047,34819,66044
+13048,31316,15736,72328,50192,4145
+13049,33040
+13050,28038,20944,28819,44420
+13051,44911,13388,17288
+13052,11693,54080,59444
+13053,53060,58150,56213
+13054,32685,19045
+13055,6136,27452
+13056,54747,60803
+13057,68319
+13058,25022,80682
+13059,34625
+13060,75494,13036,33296
+13061,16028
+13062,33510
+13063,55734
+13064,16765,6717
+13065,19000,39909,33776,64121
+13066,29243,992
+13067,55723,16620
+13068,81243
+13069,75972,3332,28643,60052,54158,61316,4733,77674
+13070,55808
+13071,44186,6453,56745,80161,78537,2069
+13072,19967
+13073,12596
+13074,49835,24385,80339
+13075,41016,25603,73317,2093
+13076,18428,16030,19533,9556,30428
+13077,74448,60316
+13078,65743
+13079,32576,5323
+13080,16458,60051,23101,51548,30065,13999
+13081,29308,45438
+13082,65389
+13083,40347,24667,45422,73392
+13084,59638
+13085,64393,29953,65335
+13086,70875
+13087,50532
+13088,28678,11146,2808,19537,395
+13089,68290
+13090,61059,24945,71159,56596,61718,38405
+13091,30775
+13092,11547,39135
+13093,42434
+13094,75181,32792,38818
+13095,36116,74696,3934
+13096,57432
+13097,34254,48162,67876,75199,68824,75660,7669
+13098,2324,32307,5309
+13099,66994,78019,8232,30244,80768,7109,12945,67123
+13100,81860
+13101,30182,80455,25570,47170
+13102,80763,7153,54432,32861,59524
+13103,66277
+13104,60692
+13105,19612
+13106,55247
+13107,64733,41008
+13108,37827,60622
+13109,3742,49570,33602
+13110,70938
+13111,81207,30202,78072,71361
+13112,4473,31007
+13113,10909,21001
+13114,38576,30257,13177
+13115,30181,47493,29320
+13116,73967,31436,49851,50442,60878,55109,4447
+13117,46080
+13118,80012,184,39105
+13119,32948,20120,9293,23237
+13120,31507,56677
+13121,60975,49702
+13122,26278
+13123,9582,12687,25365
+13124,37221
+13125,27174,42211,27666
+13126,18150,59516,405,39095
+13127,56190,30000
+13128,39734,38610,22160,19419,35782
+13129,67947
+13130,39992,73642,20761,19110
+13131,48921,43205,41829
+13132,67808
+13133,79855,6301,25794,27619,70171,22702,62022
+13134,25569
+13135,78470
+13136,78
+13137,15051,62022
+13138,71260,37527,14002,50758,23465
+13139,45323,68016
+13140,53185,20322,42178
+13141,66008,73169
+13142,43271,15598,65979,62092
+13143,30380,504,18411,20541,53670,22341
+13144,73231,75245,78409,69883
+13145,41518
+13146,76388
+13147,79837,74618,53641,31666
+13148,15502,1924,6165,57987,20504,385
+13149,78662,64928,18305,43821,27185
+13150,21071,65425,24362,73275
+13151,51885,72763
+13152,42719,21286
+13153,43460,25829,15162,74127
+13154,63256,63569,49342,9467
+13155,8136,42017
+13156,10902,13752
+13157,19261,75421
+13158,69286,63719,34846
+13159,8235,11240
+13160,26715,17482,42053,61615
+13161,18233,46938
+13162,5816
+13163,48085,34185,68733,23367
+13164,59096,24395
+13165,66530
+13166,62337,22356,5884
+13167,23172
+13168,20779
+13169,42248,63666,45402,36531,23705
+13170,74775,11353,71774,30977,59581,57283
+13171,27746,9807,37683
+13172,78355,22933
+13173,2798
+13174,27357
+13175,44566
+13176,14682,76629
+13177,47785,45043,36475
+13178,50180,78048,54248
+13179,58363,40009,79337
+13180,15202,14312,65881,36133,16185,71746,75278,79635
+13181,185,3919,31172,76213
+13182,66460,17835
+13183,55346
+13184,16659,65427,54960,5682,70866,57785
+13185,81857
+13186,65408
+13187,65054,24656
+13188,8118
+13189,24599,69273,7237,3553,19111
+13190,40429
+13191,78582,47776,43660
+13192,1444,11270,13980
+13193,53783,399
+13194,1013,66021,13627
+13195,78951,64251,20300
+13196,34033,44374,54220
+13197,50449
+13198,43840
+13199,11215,58254,10680,51966,13703
+13200,68645,1134,64363,76372,13183
+13201,24935
+13202,80217
+13203,80005,2032,34692
+13204,46362
+13205,30837,50720
+13206,81847,14239,76310,72239
+13207,50522,2330
+13208,8246,49373,10956
+13209,9994,54955
+13210,57201,61629,42646,81013
+13211,63138,42785
+13212,20673,28028
+13213,4011,31601,38190,68451
+13214,74036
+13215,73470,54278
+13216,43965,12858,61931
+13217,27561,74413,63526
+13218,73943,63263,1550
+13219,58819,68870,33016,62582,48226
+13220,56735
+13221,67525,71691,71756
+13222,61680,245,72959
+13223,46761,60156,3823,52091,26102,73631,63743
+13224,22297
+13225,2166,77125,3436,34360
+13226,8274
+13227,20813
+13228,76231,46923,18995,55596,37583
+13229,18987,8446,72218
+13230,11654,2913,32724
+13231,66085
+13232,36618
+13233,35597,59432
+13234,23864,10343,70346,6310
+13235,531,47399
+13236,42910,55621
+13237,19763,32064,80113,37515,31230
+13238,42244
+13239,6343,69263,49520,64338
+13240,75499,17048,65852
+13241,13064,8873,73842,16826
+13242,50192,50542,51388,68931
+13243,3290
+13244,41940,18358,27905,25637
+13245,75987,70345,33641
+13246,30000,37786
+13247,29198,52144
+13248,48316,43684,33050,39041,65444
+13249,32707,80588,13116,9359,61036
+13250,38345
+13251,75467,59125,13803,48154
+13252,31892,65939,44222
+13253,19957,20783,64431
+13254,43524,65658,26296,21690
+13255,79196
+13256,22246,51248
+13257,31894
+13258,16993,34278,75592
+13259,69189
+13260,24476
+13261,8279,62941,62002
+13262,68248
+13263,23630,53625
+13264,65584
+13265,47642,45521
+13266,66115,15448
+13267,77510,52541,62056
+13268,63319,4706,40792
+13269,8902,55770,50947,39502,59748
+13270,15964,64824,77316,81204,76782,2535
+13271,68960,63512
+13272,35962,41706
+13273,18767,53372
+13274,9457
+13275,19690,10623,49657,15712
+13276,80610
+13277,14074
+13278,30044
+13279,15318
+13280,24277
+13281,44850,12224
+13282,37274,33247
+13283,24076,3792
+13284,76295
+13285,17553,30055
+13286,78833,75409,39083
+13287,60130,62199,39997
+13288,3750,28071
+13289,23259
+13290,13408,32217,44074,50941
+13291,51646,21903,40630,18719,75453
+13292,71313,45040,23398,23633,34659,51529
+13293,3305,5757
+13294,30260,65372
+13295,13651
+13296,32167,6426
+13297,33636
+13298,13861,31573
+13299,15210,68802
+13300,22603
+13301,51409
+13302,22095,35070,64207,41219,4766
+13303,48676,47407,3672,35849,35424,47126
+13304,27573,22794,15957,57052,79221,74410,32446
+13305,11640,71187,62525,5016,56247
+13306,68196,36965,62056
+13307,10061,51786,41163,54732
+13308,71942
+13309,14449
+13310,58730
+13311,66555,70556
+13312,55342
+13313,21131,79739,56855,25012
+13314,30491
+13315,26332,32889
+13316,11413
+13317,48194
+13318,51141,46635
+13319,33838,59485,50304
+13320,19754,80707,28737,55670
+13321,46317,12847,8687
+13322,15133,36195
+13323,58412,16927,81000
+13324,75575
+13325,9957,16133,63743
+13326,5657,37209
+13327,20819,13837,81268
+13328,41169,23420
+13329,45410
+13330,42410
+13331,32510,62692
+13332,70164,11534,51311,25988,26461
+13333,79047,68959
+13334,71134
+13335,33050,36332
+13336,61261,7302,49004
+13337,15189,10642,53161,12792,41993
+13338,22406
+13339,74242,4431
+13340,49609
+13341,38551,46827
+13342,28163,81910,70015
+13343,63073,1632,68570
+13344,78004,23526,78466,45173
+13345,678
+13346,28328
+13347,55418
+13348,26942,41471
+13349,38345,71091
+13350,65114
+13351,4982
+13352,29437,39467
+13353,30000
+13354,6459,43278,61156,61194
+13355,31218
+13356,49708,31789,29927
+13357,12532,7549,15174,25068,64767,3961
+13358,71337
+13359,28253,62277,75165,80318,39719,37486
+13360,79622
+13361,69821,1443,6217
+13362,55955,77159,38822,60958
+13363,57828,42624,12740,55204
+13364,59407,5807,67435,64227
+13365,52601
+13366,75519,73001,54417
+13367,4481,76788
+13368,44724
+13369,48476
+13370,16619,68118,33646
+13371,47949
+13372,21970,23599
+13373,26876
+13374,42994,6027,34444
+13375,35734,25458
+13376,74517
+13377,56001,44602,28543
+13378,20415,67810
+13379,4756
+13380,300,22196
+13381,30215
+13382,24441,34411,12786,47776
+13383,41992,44133
+13384,9103,79942,74982,31362,42149
+13385,62456,664,24894,74993
+13386,19657,6363
+13387,792
+13388,67091
+13389,58067,721,22230
+13390,28507,4192
+13391,62492
+13392,54870
+13393,15177,56547,25298,63769
+13394,66638
+13395,7536,46282,7725
+13396,22408
+13397,68933
+13398,61683,11734
+13399,24780,59095,50071
+13400,60364,34629
+13401,25905
+13402,57514,81404,82110
+13403,32966
+13404,19564
+13405,36438,81811,1892
+13406,2817
+13407,9474,31517,42922
+13408,31983
+13409,37455,31288,24907,37149,33516,54679,69480,40519,76153
+13410,66463
+13411,7446,44383,13058,9196,48053,63093,20431
+13412,61973
+13413,11846,55040
+13414,15934,40238
+13415,67751,80278,39000
+13416,17821,64621
+13417,26964,3998,7251,44316,26828,43373,51513
+13418,76633
+13419,68746,23106,26908,81062
+13420,33417
+13421,80106,48640
+13422,22828,18737
+13423,69617,18009
+13424,77348
+13425,47800
+13426,19409,9495,17185
+13427,25400,20210,63745,80482,44251
+13428,72084,9488,81695,65348,14233,80950
+13429,75004,15687
+13430,4862
+13431,80272
+13432,24403,36339
+13433,42241,9179,64153,64413
+13434,42747,33277,44898
+13435,79946
+13436,63038,48699,32325,46372,73090
+13437,33399
+13438,13981,12662,81245,630
+13439,44643,52413,19178
+13440,73291,45086,78747
+13441,71035,66040,30524
+13442,33255
+13443,16149,46359,61246,47509,32930
+13444,7422,9206
+13445,50992,40305,64063,64487,1128
+13446,68306
+13447,67329,6997
+13448,22745,34716,9601,43535
+13449,39041,59900,65146,27567
+13450,7936,8570
+13451,80146
+13452,4197,28923,64818,64970
+13453,74473
+13454,72883,66745
+13455,11491,10532,44977,78288
+13456,16749,46652,13861,72658,23677
+13457,52814,21905,80346,63048
+13458,79927
+13459,17658
+13460,7481
+13461,40290,67933
+13462,4833
+13463,28483,80523
+13464,42188,67989
+13465,46862
+13466,47253
+13467,70310,74505,22162
+13468,23509
+13469,12137
+13470,41917,53050
+13471,41494,7797
+13472,6376,22424
+13473,14797,69310
+13474,35420
+13475,74008,26049
+13476,62247
+13477,19039,42458,65832
+13478,29344,26039,50088
+13479,2854,13494
+13480,56528
+13481,54624,25678,68874,1434,71122
+13482,25159,42153
+13483,47085,60356,9334,68847
+13484,81623,2684
+13485,26430,27903,24005
+13486,1565,50355,38760
+13487,48005,16989,54719
+13488,47347,27972
+13489,79119
+13490,20336,65103
+13491,60446
+13492,2448,10812,33468
+13493,69284,67648,1746,27412
+13494,48511,48651
+13495,19724,60582,237
+13496,80144,20661
+13497,21041
+13498,28,29685
+13499,40232
+13500,3414
+13501,10962
+13502,19221
+13503,3681,1199,19189
+13504,44269,43785
+13505,14616
+13506,70284,73232,29884
+13507,31030,71531,8665
+13508,9868,10672,27303,34407
+13509,73039
+13510,48009,55002,27186,79979
+13511,64928,69939
+13512,56178
+13513,47317
+13514,11456
+13515,2745,57257,30980,45515,64182,74501,48873
+13516,5027,49060
+13517,17079,48079,1212,40747,17077
+13518,43279
+13519,8326
+13520,49785,24883,30869,19182
+13521,77477
+13522,41199
+13523,18882,14888
+13524,34520
+13525,70247,62333
+13526,27275
+13527,76662,73923,7136,7750,19087,43279
+13528,10804,23788,55893,77734,45717,74053,80756
+13529,75498,11073
+13530,52224,18819,34417
+13531,70493,69303
+13532,72520
+13533,17844,16781,70134,58925,47531,37568
+13534,33546,31771,38310,62661,22001
+13535,7271,16947
+13536,76913,6706,28282,138,51883
+13537,14385,74657,47343,63496,68078
+13538,30774
+13539,22331
+13540,14783,6206,6514,75829
+13541,68523,64318,72233,8096,43235
+13542,49655,65870
+13543,47042,36098,49458
+13544,15471
+13545,64392,19434,49432,46677
+13546,29218
+13547,43373
+13548,47369,34373,51984,74736,22765,53449,18316
+13549,61247,31360,40423,3387
+13550,75645,27317,69195
+13551,57680,22807,6315
+13552,69912
+13553,27581
+13554,71149
+13555,25587,74132,34672,23657
+13556,62917,59209,35095,52785,66370,69677,16392
+13557,34014,40039,14981
+13558,67532
+13559,61110,47154,54382,12095,37317,53457
+13560,58146
+13561,29466
+13562,38294
+13563,58467,14552
+13564,11223,71570
+13565,11033,45073,68763
+13566,39675
+13567,63596
+13568,64658,34488,4984
+13569,78622,28736
+13570,8430,43944
+13571,7932
+13572,70721,57641,11596
+13573,21818
+13574,76495,66657
+13575,37149
+13576,60016
+13577,61257,34140,57674
+13578,44090,53619,81641,3822,49636
+13579,80229,9728
+13580,73108,74804,47806,44013
+13581,79196,4087,15032
+13582,45336,257,42997
+13583,36734,71235,76437,29516
+13584,41524
+13585,31468,78576,63267
+13586,8576
+13587,23360,67619
+13588,60435,28402,78998
+13589,47507,29599
+13590,63436,40720,19269
+13591,53050
+13592,8613
+13593,80454,52948
+13594,32626,79864,77355
+13595,9984,36466,63965
+13596,41712,23106
+13597,19187,79943,78745
+13598,61436
+13599,22055
+13600,48259
+13601,52218,5040,64620,25633
+13602,44350,61897
+13603,42594,67255,24153
+13604,66822,76126,74768,31249
+13605,72530
+13606,26930,27939,57799,50854
+13607,824,21155
+13608,46011,50006,74717,614
+13609,11725,71423,67398
+13610,10242
+13611,9507
+13612,16583,80794,45100,58840,14314
+13613,51153,8419,43249,48078,34571,48125
+13614,34478,10011
+13615,30746
+13616,51792,62028,28775,10334
+13617,53519
+13618,63923
+13619,76800,19570,63041
+13620,39839
+13621,74441,3216
+13622,59883,70115,29115
+13623,66106,71953
+13624,69344
+13625,24832,36681
+13626,39469,9607
+13627,16961
+13628,1060,56739
+13629,61272,28146,65012,22708
+13630,61484
+13631,51642
+13632,16188
+13633,53069,76499,67521,15098,17779,51619
+13634,6479
+13635,18265,73902
+13636,47850
+13637,45775,56682,26847,27873,1373
+13638,56251
+13639,13144,20173,13046,60451
+13640,77723,6181,6893
+13641,36032,32283,1568
+13642,23044,50820,55314
+13643,67911
+13644,41226,32516,22368,54359,37970,54040
+13645,25338,80455
+13646,5045
+13647,3229,3428
+13648,16410
+13649,8135,39228,15273,56594,72657
+13650,15257
+13651,60304
+13652,47115,46915,22657,7604
+13653,31181
+13654,59064
+13655,7646,57848,23402
+13656,57566
+13657,81202
+13658,78746,76727,4532,16479,22490
+13659,42852,44154,39989,36552
+13660,34460,79030
+13661,58200,30125
+13662,71109,20257
+13663,65647,30899
+13664,35095,1639,11748,79403
+13665,75401
+13666,19673
+13667,54202,51741
+13668,51301,59095
+13669,70911,68403,45101,33773,9206
+13670,58904,71815,31886
+13671,69839,55302,68617
+13672,48295,18181
+13673,3734,47875,22140,26427
+13674,58644,56480
+13675,24441,40847,23899,21125,26276,28298
+13676,490
+13677,72574,11588,36227,36330,5196
+13678,79031,21055
+13679,34712,758,24630,8461
+13680,8500
+13681,11668,25971
+13682,20938,21665,14657,62250
+13683,41216,4230,33241
+13684,13107
+13685,34343
+13686,48934
+13687,77272,33035,14672,30649
+13688,39726,35949
+13689,49269,1771
+13690,43615,10742
+13691,15846,58062,3450
+13692,42851
+13693,58946
+13694,60491,81456
+13695,53166,76477
+13696,21655,20550,1961
+13697,68566,23029,33012
+13698,5822,78627
+13699,45042
+13700,22774,70024
+13701,6358,1985,9857
+13702,75257
+13703,77131,49599,63535,44899
+13704,6783,56871,75093,2927
+13705,1187,74879,6207
+13706,56887,42484
+13707,77378,19401
+13708,71929,52114
+13709,9706,28927,16420,56926,18814
+13710,40315,5236
+13711,14349,51063
+13712,74016
+13713,27310,22775,64724,46954,44277,14436,31905,72364,171
+13714,30918,61804,81764,76269
+13715,50242,61158,67162
+13716,76404,27423,37453,76879,65887,74821
+13717,70506
+13718,74289,24398
+13719,80857,60519
+13720,42080
+13721,16756
+13722,58250
+13723,9616,72963,29948,35503
+13724,69777
+13725,77509,28479,56617
+13726,7137,30987
+13727,77072,4636,46224
+13728,55703
+13729,46764
+13730,12881,47923
+13731,63297,18981,8378,58519,18592
+13732,33900,41797
+13733,25195,72548,25745,68963
+13734,61081,19327,59657
+13735,58652,20782,24564
+13736,68424,10115,51311
+13737,63696,60755,21643,13003
+13738,7429
+13739,54845,7308
+13740,19243,63065
+13741,42325,39173,78619
+13742,79410,64020
+13743,76329,68273
+13744,52504,66049,12508
+13745,5000,11632
+13746,585,30502
+13747,76305
+13748,5886,49940,26357
+13749,26454,78214,36169
+13750,37393,54347
+13751,9716
+13752,53380,10994
+13753,66833,64288,37563,70234
+13754,5594
+13755,41334,38758
+13756,32617
+13757,38146,8983,29267,3805
+13758,44058,5994
+13759,9457,28993,4942,8772
+13760,40033,26168
+13761,41106
+13762,19055
+13763,53643,61564
+13764,3507
+13765,50375,6574,67621,41416,43511,24631
+13766,29409
+13767,24816,63055
+13768,36717,63801,28398
+13769,3920,62605,75870,47181
+13770,81456
+13771,13440,82003,25534
+13772,48148
+13773,15989,63596
+13774,30981
+13775,34832
+13776,36002,76655
+13777,51434,77711,32624
+13778,66843,62784
+13779,55398,4949,55341,19410,58527
+13780,2657
+13781,65369,11593
+13782,18635
+13783,34295,2600
+13784,70538
+13785,18528
+13786,64255,823
+13787,15691,15020,71117,80228,80721
+13788,35680,76177,42301,70107,66749
+13789,52423,79711
+13790,67329,39610
+13791,79361
+13792,3160
+13793,30288
+13794,35969
+13795,53589,53858
+13796,56109
+13797,66895
+13798,60593,33680
+13799,55892,44133,67211
+13800,77088,68041,56915,48048
+13801,30356,77935
+13802,3281,34637
+13803,3751,37424,61437,10629
+13804,10278
+13805,21294,36110,26298
+13806,71115
+13807,18439,45043,60126,38408,35653
+13808,56840
+13809,5615,19955,22339
+13810,63513
+13811,74791,49031
+13812,50832
+13813,38475,76123,68270,50407
+13814,49696,56268,59969
+13815,996,217
+13816,22126
+13817,6614,77652,13774,29204,2715
+13818,70374,62755
+13819,60200
+13820,82142
+13821,48666,28859,76359,4953
+13822,48888,57581,80561
+13823,14611,20094,67044
+13824,68556,27173
+13825,52981,74919
+13826,15358,6174,38407
+13827,47544
+13828,56474,64296,27967,49604
+13829,59160,81570
+13830,9476,23092,24686
+13831,22331,34709,61147
+13832,44614,79023,41194
+13833,52148,46664,11615,74582,35497,34330
+13834,26922,71933,51605,80764,56419
+13835,79427,5198
+13836,78275,59563
+13837,34238
+13838,10073,62839,41058
+13839,2345,79996,6279
+13840,28614,70129
+13841,77471,16345,19636,68791
+13842,20424,29865,62969,18337
+13843,44650,70171,36713,74469
+13844,19144,57883,31835,62434
+13845,63267,54650,21133
+13846,34710,6775,47343,9949,9009
+13847,69995
+13848,4279,37597,59556,66814,40055,76772
+13849,13773,66253
+13850,53844,47755,56061
+13851,55825
+13852,32541
+13853,78170
+13854,28342,13627,31205
+13855,66208
+13856,75751,44500
+13857,77357
+13858,68194
+13859,2027,42091,44444
+13860,69903,7713,6641
+13861,63128
+13862,78568,80216
+13863,81506,43886
+13864,54838
+13865,46888,25854
+13866,71362
+13867,10478
+13868,7237,11657,2032
+13869,17981
+13870,37358,2330,35135,3692
+13871,16547,19415
+13872,48690,41786,6994,38489,32176
+13873,4035
+13874,53628
+13875,41494
+13876,6161,54654,358,67300
+13877,80880,44159,4747
+13878,38503
+13879,304,70460,78496,61054,42758,19292,19558
+13880,12564,62743,34158,48863,60882
+13881,36019
+13882,42760,51854
+13883,76855,536
+13884,10519,33678
+13885,16492
+13886,73864,68367
+13887,56012,52273,58599
+13888,61890,25937,15035,2732
+13889,31326,71368,54315
+13890,36466,33888
+13891,2420,58840,79644,9554
+13892,75419
+13893,42597,80039,70856,66271
+13894,33680
+13895,78897
+13896,55721
+13897,53462,41110
+13898,73708
+13899,14685,38733,19883
+13900,7406
+13901,38620,62590,7113
+13902,2290,33088,6949
+13903,70311,23092
+13904,35176,58269
+13905,66467
+13906,52229,67655
+13907,21438,26524,68222,58438
+13908,7422,78885,64167,14275
+13909,65456,18015
+13910,18187
+13911,43868
+13912,24974
+13913,55214,66385,36931
+13914,67806,65856,41604
+13915,13198,43344,1631,6431
+13916,64564,12861
+13917,2197,40686
+13918,33308
+13919,57719,50676,33291
+13920,63215,33641,65097,50983,78565
+13921,59701,64827
+13922,26741
+13923,7791
+13924,79389,37642,4258,70629,40429
+13925,45406,11366,45327
+13926,16539,15486
+13927,65396,5928,15042,28602,59616
+13928,55368
+13929,43099,18614,40104,44333,14022
+13930,24256,19955,59751
+13931,42515
+13932,40289,10802
+13933,49167,41541,45995,62488,13501,27058
+13934,46947,24201,3884,50806
+13935,44469,43071
+13936,1380,54173,32630
+13937,57223,60211,2232,50897,28657,51355
+13938,48029,5324,6871
+13939,61338,51644,42491,443
+13940,68784,44610
+13941,47025
+13942,65811,72555
+13943,75596
+13944,32734,244
+13945,21361,33670
+13946,60114,47610,4884,47231
+13947,39584
+13948,11967,6431,21450,27450,61776,12594,48028,21491,47799,46996
+13949,77662
+13950,32879
+13951,55306,51515,15731,79343,67906,69917,4687,16814
+13952,2080,68205,24504
+13953,6194,22220,28332
+13954,4316,32298,27187,17422
+13955,30483,24809,28431
+13956,43572
+13957,32486
+13958,44885,54317,34555,59672
+13959,70042,46849,67589
+13960,8782,24865,1760
+13961,53848
+13962,13227,2363,74727,47066
+13963,22380,13526,33678,54787
+13964,22223
+13965,71711,36761
+13966,9481
+13967,5933,54964,51880
+13968,55368
+13969,6898
+13970,60110
+13971,72609
+13972,41795,56140,79141
+13973,1041,48918
+13974,59197,19762,29617
+13975,16936,49038,25431,62910
+13976,66075,6849,55664
+13977,45444,4192,17101,53283
+13978,9852,24482
+13979,24721
+13980,58640,25457
+13981,65880
+13982,59835,53016
+13983,34932
+13984,75289
+13985,62713,30356
+13986,13497
+13987,64312
+13988,39897,21011
+13989,29569,76247
+13990,35827,43488,27633
+13991,57715,41368,985,41272,72138,56808,81534
+13992,5696
+13993,45409,4969,27385,2160,78330
+13994,11078,53145
+13995,76446
+13996,21546,5627,53487
+13997,56792
+13998,17931
+13999,46807
+14000,62707,2928
+14001,36482,6990
+14002,45168,21627,24287
+14003,81554,26729,13423,21273
+14004,19135,78462
+14005,72152,8029,4743
+14006,26750
+14007,3289,11616,44394,46231
+14008,6136,32244
+14009,59774,81356
+14010,60220
+14011,48623,35035
+14012,43496,712
+14013,43711
+14014,4525,38746,28308
+14015,78504,16096,44204
+14016,19114
+14017,72758,20688
+14018,27072,36102,4613,56159
+14019,62261,7249,62554
+14020,41328,48843,71098
+14021,30981,47257
+14022,4214
+14023,29503,61087,58433
+14024,27210,5964,63383
+14025,30115
+14026,15989,26134,44074
+14027,52104
+14028,11555
+14029,63883,54385
+14030,56311,5172,61230,12692,76049
+14031,59515,47393,73584,54077
+14032,80793,20554
+14033,13250,39190
+14034,65867
+14035,39474,59093,72340
+14036,76418,26296,60212,30948,45868
+14037,22424
+14038,52783,73298,64456
+14039,56551,4559
+14040,19201,75142,23938,78866
+14041,63690
+14042,32478
+14043,15345,48917
+14044,788,14144,8089
+14045,13532,53961
+14046,59868,69159,51091
+14047,37721,74480
+14048,8190,3662,8105,54130
+14049,22569
+14050,60376
+14051,35600,61235,15416
+14052,37922
+14053,49347,30115,24275
+14054,80941,14662,30806,14691
+14055,19766,71999,13784,23871
+14056,29051,24399
+14057,24736
+14058,81616
+14059,21666,17288,75483,8375,20492,69018
+14060,34097,43179
+14061,42415,9067,36806
+14062,48737,69543,76750
+14063,14442,48614
+14064,11666,49831,25024
+14065,40424
+14066,22416
+14067,13132,20711
+14068,49598
+14069,72649,40321,73491,68521,66472,43607,73827,32485
+14070,60079
+14071,37270,74711,64030,27259,62275
+14072,54533,11536
+14073,54516,53276,74772,74069
+14074,41574
+14075,11833,52579
+14076,74435,11921
+14077,38200,46218,54856,45855,52061
+14078,48581
+14079,16756,14166
+14080,78809,79402,5091,34068
+14081,65408,50569,12451
+14082,66677
+14083,79335
+14084,24898
+14085,37494
+14086,36874,57076,9456,52676,80786,4954,2788
+14087,13267,67023,27408,47594,60870
+14088,18308
+14089,13337
+14090,65026,4078
+14091,5095,26203,30870,46943
+14092,59360
+14093,36559
+14094,25738
+14095,12846,64461,52995
+14096,21507,80937
+14097,66248
+14098,16769,44709
+14099,13283
+14100,56587,77511,22039,68417
+14101,25439
+14102,18193
+14103,67176,52657
+14104,30325
+14105,70684,11703
+14106,15850
+14107,45609
+14108,18734,7679
+14109,24811,4242,75742,31374,38224
+14110,40171
+14111,34336,1826,45055,34304,46528,58325
+14112,48008
+14113,70243,23749
+14114,1529,38764,52750
+14115,33710,71497,24481
+14116,70562
+14117,62263,71175
+14118,184,18820
+14119,29000,32625,58572
+14120,59531,38020
+14121,19120,70090,65294,27309
+14122,81791,53534,45347,57610
+14123,67907,35219,21607
+14124,78533
+14125,54503
+14126,15677,64122
+14127,33518,55738,37449
+14128,18832,80636,73362
+14129,12613
+14130,59580,11497,17030,32026
+14131,20083,48412,58915,34395
+14132,30775,9181,71763,68530
+14133,21165,75354
+14134,81639
+14135,35042,38272,62193,21081
+14136,54008,2462,65960,78274,63261
+14137,54539,48889
+14138,68776,46002
+14139,183,48851,34624
+14140,78012,60647
+14141,46558,40420,45974
+14142,13882,4323,3287,65528,10790
+14143,14718,20128
+14144,34723
+14145,15565,49191
+14146,24295,20161
+14147,72191,10374,69013
+14148,21954,17362,77308,57064,79480
+14149,15288,22508,50127,23077
+14150,7174
+14151,49172,759
+14152,70059,59094
+14153,45470
+14154,51603
+14155,23606,29067,73037,11508,69788
+14156,7274
+14157,35142,71558
+14158,25717
+14159,73967,44208,4169
+14160,80774
+14161,24212
+14162,18259,10027
+14163,15441,32666
+14164,56622
+14165,48820,60394
+14166,68378,58416
+14167,22535
+14168,2747,42576
+14169,72120,71137,35595
+14170,45617,15247,73485
+14171,16063,39551
+14172,71609,55988,42437,34840
+14173,21131,55472,37760
+14174,67581,27602
+14175,21530,3274,55094,9493
+14176,7530,4573,69872,3274,75179
+14177,48523,33048,38461
+14178,50024,41488
+14179,32760,71989
+14180,50894,14370,77102
+14181,14980
+14182,17221,44111,54207
+14183,72494
+14184,10476,62452
+14185,12
+14186,40101
+14187,66080
+14188,64862,27871
+14189,70807,21249
+14190,66009
+14191,10274
+14192,33093,44738,70905,45428,80095,25841,72667
+14193,33936,31502,35888,4852
+14194,19682
+14195,30682,48235
+14196,77235,31513,34775
+14197,11691,51220,72555,78430
+14198,47542,8085
+14199,40038,13160
+14200,50961
+14201,26153,4931
+14202,2816,30277,78262
+14203,49409
+14204,76838,77773,78832
+14205,8300,37172,22379
+14206,24777,17041,73160,46353
+14207,19815
+14208,77474,74641,16415,25537
+14209,5326,1859,51584
+14210,14834
+14211,79751,44726
+14212,78365,12177,21714
+14213,9923,72111,16255,24442
+14214,62514,22757,7274,2335,59407
+14215,64462,20128
+14216,78820,79871,78466
+14217,36633
+14218,7829,52392,53455
+14219,27524,14602,46432,24576
+14220,16408
+14221,18824,69583
+14222,62935,41830,29089,28372,50633
+14223,62208,37073
+14224,5587
+14225,7004,71799,57190
+14226,48369
+14227,15437,23710
+14228,72595
+14229,64260
+14230,48424,63084,56466,15391,78604
+14231,19401
+14232,16724
+14233,54509,34538,2488,16285
+14234,22018,42566,81270,44343
+14235,40630,13143,35557
+14236,73649,28742,70806,52724
+14237,54724,12485
+14238,31091,58888,7113
+14239,40019,52989,74121
+14240,62285,9282,24498,28601,10985
+14241,50666,5505
+14242,13756,31552,14783
+14243,75422,27416,82106,34278,5449
+14244,8065,16030,16373
+14245,31011
+14246,79946
+14247,57273,44491
+14248,5419,46680,61247,13736
+14249,48481,62253,31124,53516,2431,9621
+14250,46688
+14251,24987,18984
+14252,76153,26519,30228
+14253,66227,59717,70082,1871,61375
+14254,54204,66728,39512,45145
+14255,74775,6952,34197,10083
+14256,12226
+14257,5402,65509
+14258,17345,1147,49605
+14259,48963,2792,75879
+14260,53816,28556
+14261,78328
+14262,52326,48600,2586
+14263,14912,48296
+14264,63505
+14265,24079
+14266,71744,2099,3914,5806,64155
+14267,24759,13167,74305
+14268,30208,70697,7271,27669,26325
+14269,31444
+14270,35421
+14271,50919,10152
+14272,38
+14273,46233
+14274,65778,17265
+14275,5427,32523
+14276,61429,45073
+14277,47708
+14278,59283
+14279,53695
+14280,56048,47661,73204
+14281,61523
+14282,15153
+14283,32625,72862,57817,34894
+14284,28362,6538,59642
+14285,9387,28604,73026
+14286,45551,22250,19362
+14287,39901,57968,68116
+14288,7701,13347,28578
+14289,4653,42453
+14290,2043,80646
+14291,76125,15194,52981,12914,77043
+14292,72258
+14293,7268,16290,27451
+14294,27022,36915
+14295,41745,1141
+14296,44147,49905,64502,36917
+14297,73949,65310
+14298,4811,72172,4779,32524
+14299,46231
+14300,36544,38318,29071
+14301,70888
+14302,9110
+14303,28846
+14304,47204,50116,6732,40489
+14305,16421,50976,34811,63964
+14306,81010
+14307,62326,44368
+14308,19352,45458
+14309,5386,18269
+14310,73883
+14311,2283,23372,32014
+14312,67600
+14313,38538,40388
+14314,76318,68060
+14315,47259
+14316,8599,14598
+14317,55467,26680
+14318,12075,699,14256
+14319,23329,55927
+14320,67237
+14321,37163,57314,38403
+14322,51315
+14323,52315,60809,31913,57495,66475
+14324,58058
+14325,4276
+14326,59125,48409,66102,72841
+14327,16105,42462,19840,61393,30940
+14328,58333,23077,45740,78892,32657
+14329,67568,45981,80055
+14330,18265
+14331,50726,60259,20204
+14332,80303,15913
+14333,42646,1804
+14334,68557
+14335,59399
+14336,73496,9936
+14337,27954,46050
+14338,8376,40392,8121,72779,40446,12513,56710,15653
+14339,68172,70646,3431
+14340,18535,32157,17632
+14341,50709
+14342,62241,25964,32412,34672,11603
+14343,11902
+14344,31715,16886
+14345,18439,58779
+14346,66673,17912,49295
+14347,1159,33113,32903,59320,59921
+14348,23724,79802,68691
+14349,77250
+14350,56701,45515,55310
+14351,47190,5735,67769,75718,17538
+14352,66131
+14353,28705
+14354,19173,18332
+14355,48409
+14356,59027,2695
+14357,60576,60677
+14358,9107
+14359,79711,56981
+14360,62856,52429,43088
+14361,14962,31674,45937,36266
+14362,45814,24588
+14363,9722,37295
+14364,60301,54500,27211
+14365,21757
+14366,57187,8382
+14367,2439,20383,5120,71511
+14368,23005,37012
+14369,46641,76123
+14370,182,30567,46490
+14371,62049,72176,61834
+14372,12269,15947,31285
+14373,1433
+14374,34841
+14375,20069,52124,29760,54880,36271
+14376,27139
+14377,7677
+14378,20196,42444,6617,36198,6805
+14379,43508,5515,22768
+14380,48504
+14381,31348,51059,8240
+14382,7423,69738,41889,56466
+14383,34080,81412
+14384,38148,48018,72170,4156,20856,9725
+14385,52210,16858
+14386,31224
+14387,66584,296
+14388,20146,9729,40,8047,36646,33727,41954
+14389,17767
+14390,63311,78796,63001,71202
+14391,53849,51196
+14392,839,51720,1109
+14393,72786,1566,8846
+14394,76482,3133,2730,47612,57057
+14395,20757,21979,38636
+14396,21550,44618,29436
+14397,9648
+14398,39766,37279,72991
+14399,24068
+14400,11575,65433
+14401,64476
+14402,53764
+14403,335,2750,64421
+14404,62330
+14405,54931,35364
+14406,40986,53383,4554
+14407,59196,80634
+14408,28223
+14409,28875
+14410,26249,7511
+14411,27532
+14412,31760
+14413,31182
+14414,40619,56202,76550,56675,57746
+14415,62039,36916
+14416,51839,28601
+14417,36192
+14418,81764,26049
+14419,22859,42539,9055
+14420,13290,32962
+14421,78332,58617
+14422,58976,51566
+14423,75683,27693
+14424,79528,40139
+14425,4345
+14426,55059,45904,81321,15219,17168
+14427,27675,65061,63526,60491,18696,33468,63045,30667
+14428,32040,70366
+14429,20951,20686,18696
+14430,70471,31194,64380
+14431,66260
+14432,21818,17855
+14433,77084
+14434,53362,79011,38662
+14435,53837,47784,56992
+14436,61640,69762
+14437,34064,67915
+14438,12468
+14439,36779,6386
+14440,35925,80168,74104,26346,81695
+14441,69639,81271,9334,69084
+14442,71539
+14443,25167
+14444,61853
+14445,40214
+14446,24712
+14447,33591,57621,43355
+14448,23738,33793
+14449,79809
+14450,23497,55668,63058,75519
+14451,63430
+14452,29094
+14453,68847,52196
+14454,72401,30844,59755,13912
+14455,16186,75957
+14456,61573
+14457,54503,37393
+14458,54535,966,41678,38507,67177,48408
+14459,13968,44214,2444,21996,64767
+14460,9591
+14461,43706
+14462,20644,44328,42241
+14463,61335,33972,5565,34257
+14464,980,53046
+14465,70984,40520,13041,68464
+14466,7793,68419,59388
+14467,28097,71022
+14468,43750
+14469,31326
+14470,41165
+14471,61510,80987
+14472,1781,20248,57225
+14473,72192,62363
+14474,37181,3833,49588,59095,79108,53499
+14475,9280
+14476,14140
+14477,70982,6900
+14478,56848,45575,47289
+14479,43198,51244
+14480,79053
+14481,46311
+14482,16357
+14483,60621,28062
+14484,36213
+14485,44728
+14486,27920,7287,5474,36489,31630
+14487,22399
+14488,17927,45080,43623,65120
+14489,70043
+14490,11212,35350,81397
+14491,52744,50575
+14492,28532,69822,11520
+14493,58414,4980
+14494,44796,23433,37626
+14495,58107
+14496,37965
+14497,8412
+14498,5935
+14499,28919,71689
+14500,15751,43040
+14501,27442,4723
+14502,26472,72934,13901,41690
+14503,33132
+14504,7169,61105,70721,61359,41024
+14505,46862
+14506,42163,68603
+14507,71781,19265,60677,67347
+14508,9998,69762
+14509,46104,50964
+14510,9454,43077,68849
+14511,60752,78133
+14512,53252,515,8762
+14513,23667,62083,26848
+14514,34121,258,60281,55900,25782,58637,10003
+14515,41439,1302,10995,76734,44159
+14516,63267,62854,13389,5715,24034
+14517,6206,76403
+14518,40831
+14519,24944
+14520,60937
+14521,15572,46331,20930
+14522,31561
+14523,66437,8208,11007,68613,55846,37158
+14524,22607,11306
+14525,14909
+14526,34789
+14527,43483
+14528,52780,12440,30747
+14529,37660
+14530,11179,13858
+14531,74280,64623,30136,74374,23125
+14532,1231,50309,18159,52264,23116,41070,32486
+14533,13973,28785,64469,935
+14534,72898,70274,6767
+14535,62187,21187
+14536,20939
+14537,69344,38824,7400,79260
+14538,37780,14355,64535
+14539,68046
+14540,17908,35186
+14541,74655,52392
+14542,64138,39638
+14543,27528
+14544,7934,29022
+14545,81066
+14546,42228,79028
+14547,58082,8590,81697,24499,73404,502
+14548,49409
+14549,54022
+14550,22352,43904,20049
+14551,16255
+14552,32483
+14553,4068,46548,62477,37736
+14554,35754,11301
+14555,51614,16044,78746
+14556,46487
+14557,63839,58239,10458,46867,36370
+14558,43445,44307,47658,45286,38941
+14559,25235
+14560,31398,44300,25939,49389,35880
+14561,77537,45729
+14562,77393,51503,38411,41010,47262
+14563,69789
+14564,60201,2622
+14565,60304
+14566,17664,68039
+14567,60481,6062
+14568,74055,61929,42094
+14569,72945
+14570,44453,14411,41657,8998
+14571,81145,7648,14834,35446
+14572,9918
+14573,9802,12569
+14574,33237,2764,47002
+14575,74324,62409,59097,43619,4270
+14576,15846,6876,34215,36563
+14577,72202,81118
+14578,34159
+14579,20857
+14580,6996,17862,21632
+14581,78548,21254,10092,41517,77658
+14582,22109,74230,48523
+14583,34952,55703
+14584,72783,80763,72573,35122
+14585,57830
+14586,16559
+14587,59043,29958
+14588,17605,61870
+14589,30796,25741,74409
+14590,8782,16824
+14591,48934,43092
+14592,5356,8473
+14593,31640,21653
+14594,78712
+14595,78431
+14596,31236
+14597,11091
+14598,68380
+14599,57215,55176,49788,45295
+14600,76442
+14601,47073,64313
+14602,57361,62490
+14603,68248
+14604,72452,67688,3721,77608,39213,18828
+14605,42354,15662,63885
+14606,35455,65605,55545
+14607,47070,33165,20628,44774,16007,47234
+14608,41045
+14609,23753,12338
+14610,67702
+14611,71245
+14612,2972,58090,24898
+14613,1367,38724
+14614,16614,33539,50318,4157,63456,50964,54489,57992,23602
+14615,9346,58049
+14616,45111
+14617,33219,43991
+14618,8972
+14619,68273
+14620,79202
+14621,13899,61698
+14622,82068,72098,61359
+14623,48916
+14624,50981,27634,57877,80858,53392
+14625,66536,31942,43479,48519
+14626,11467,3605
+14627,50996,44807,69587,41545,22865
+14628,54613
+14629,37555,39989,55239
+14630,45327,36872
+14631,28357,67418,50962,14234
+14632,15267,27304
+14633,3831,68828
+14634,44687,40757,26447,42230,26950
+14635,68142,79963,20840,27322
+14636,45895,49197
+14637,70422
+14638,10719
+14639,3854,70840
+14640,56546
+14641,50819,44646,65056
+14642,48668,37853,33425
+14643,44799,73912,11089,67787,40412,37064,69211
+14644,51292
+14645,54406
+14646,40758,11687,52912,7669,68855,80336
+14647,8551
+14648,48968
+14649,43108,26371,4638,66763,40689,77487,45268
+14650,44892,7217,54341,41211,68921
+14651,41337,5660,2520
+14652,42324
+14653,23144,928,48511,20417
+14654,78614
+14655,64430,10001,38640
+14656,25342,55048
+14657,31346,49117
+14658,59760,66486
+14659,18194,44690,278
+14660,24508,69962
+14661,35582,22361
+14662,3638,73942
+14663,20501,31165
+14664,44942,34021,7072
+14665,37085,34695,8341
+14666,57456,10057
+14667,56430,19921,17862,13342,19179
+14668,38954,16150,62544
+14669,60998,17490,47021
+14670,53997,48537,27953
+14671,24139
+14672,9697,45885
+14673,47081,46253
+14674,43782,80390
+14675,26396,65930,61385
+14676,21922,79979
+14677,30962
+14678,72387,21130
+14679,2316
+14680,17265,30176
+14681,56663
+14682,43929,4986
+14683,41901
+14684,19151,71507,42539
+14685,62900
+14686,67859,45788,13146
+14687,33055
+14688,73676,5634,22841
+14689,49818,37068,2233,24692
+14690,62039,74647,49596,49562
+14691,64281
+14692,51274,55314,26953,70935
+14693,21205
+14694,19319,11068
+14695,51985
+14696,13055,78566,26006,80823
+14697,78383,43638
+14698,59057
+14699,56872,37105,2745
+14700,2559,41219,60637
+14701,12608,69170
+14702,28552,76832
+14703,14753,47671
+14704,57473,11467
+14705,24230
+14706,67371,49972,37427
+14707,45243
+14708,65397,1210,78919,40321,68292
+14709,30510,47421,56130,22947,69767,42524
+14710,66202
+14711,56204,22852
+14712,15620,8111,53052
+14713,1078,74914,35200,57512,66200
+14714,79565,9370
+14715,51467,50804
+14716,33721
+14717,4963
+14718,69854,25364
+14719,48323,71906,10731,45303
+14720,69739,12571
+14721,40424,6225
+14722,68982,18313,12545,27093,72053,9941
+14723,50592,39085,11781
+14724,66498,3807,29660,60388
+14725,73965,20367,16150,5783,62734,31429
+14726,32747,73933,14400,12184
+14727,13620,64,34854,22722
+14728,68453,56975,75093,47243,15012
+14729,43624
+14730,77194,25256
+14731,49079,10202
+14732,60359
+14733,56480
+14734,50636,72041,65985
+14735,40994,44708,52612,39080
+14736,20579,42887
+14737,63842,5071,47160
+14738,57549
+14739,2832
+14740,18316,45481,65112
+14741,81987,6939,80028
+14742,79369
+14743,23422
+14744,18886,2410
+14745,5105,46800
+14746,4853,76868,50233,468,32583
+14747,27351,8584
+14748,72799,66857,59446
+14749,72447,62149,37835,67508
+14750,61633
+14751,16519,58108,51211,10023
+14752,17539
+14753,50119
+14754,30478,76905,67314,27349
+14755,25104
+14756,32417,17428
+14757,67686,55806
+14758,69148
+14759,70377
+14760,54952,31430,71873
+14761,26161,8873
+14762,26939,18180,48024
+14763,64115,70086,66312,25635
+14764,11320,54471
+14765,13086,43285
+14766,35922,39428,80078,53983
+14767,46258,49270,25957,49393,49742,60102
+14768,6213,39655,52203
+14769,2662
+14770,49825
+14771,12613,18187
+14772,56570
+14773,63005,19204,6052,1941
+14774,39317,57586,25984,25225
+14775,35382
+14776,27243,72202
+14777,80913,4238,67214,81396,50192
+14778,33676,69459
+14779,15994
+14780,62070,42619
+14781,53954
+14782,53518,12579
+14783,20178
+14784,62178,65662,5310,39582
+14785,61420,37002,41119
+14786,20325,18730
+14787,45534
+14788,39964,58237
+14789,4347,26602
+14790,31906,38214,27183
+14791,64217
+14792,62869
+14793,51296,56555
+14794,43138
+14795,12628,63417,29832
+14796,32851
+14797,25001
+14798,79135,32117,30403,80783,412
+14799,20172,33296,61240,36376,34547,79690
+14800,6103,31807,23050
+14801,51522
+14802,65161,15437,68150
+14803,75818,47796
+14804,3496,69686,67720
+14805,79376,42780
+14806,69521,67631,18685,34626,76669,72796
+14807,11176,43601,40015
+14808,36605,19240,27799
+14809,12432,10299
+14810,33036,31442,53939
+14811,50156
+14812,19582
+14813,34263
+14814,3740,31507,75726,65723,5720
+14815,69605,183
+14816,7504,35698,75993,3306,6847,9505,28098
+14817,35083,400
+14818,60979,18120,17852,9455,47418
+14819,24552
+14820,80486,33286,14895
+14821,78033
+14822,12836,11995
+14823,55878
+14824,3475,26771,8456
+14825,55180
+14826,57139
+14827,28612,82123
+14828,47800
+14829,63154,64126,42401,26776,56478,58439
+14830,63504
+14831,2416,75674,62911,2875
+14832,7118,71000,21339,69820,39697,54041,53832
+14833,45805,50765,49610
+14834,2844
+14835,27651,19929
+14836,58120
+14837,26630
+14838,52867
+14839,16087,59490
+14840,58285,48665,31945
+14841,23643
+14842,82160,24171,68563
+14843,25596,66878
+14844,67176
+14845,39452,68882,76177
+14846,58638,60510,36714
+14847,677,46224,50688,952,73954,40651,32835
+14848,11243,38462,26981
+14849,81456
+14850,26860,6078,71861,70013,36990
+14851,50211
+14852,22915
+14853,61835,32257,27189
+14854,70728
+14855,17661,25864,77873,64556
+14856,70005,8934,20557,23105,67771,8868
+14857,68725
+14858,33838,37740
+14859,44724,80228
+14860,32711,62283
+14861,15709,69579,59842
+14862,29067,9104
+14863,72344,41633,75518,47837
+14864,17502,7288,33323
+14865,50913,21074,27530
+14866,81395,50779
+14867,12461,69994
+14868,13647,34942,46065
+14869,80306,13174,73402,7899,31002,11773,35951
+14870,47404,66931
+14871,23544
+14872,14007,50964,20915
+14873,73933,48242,31950
+14874,31034,1267
+14875,27289,29160,5414
+14876,47190,76473
+14877,68992,58072,5341
+14878,75888,34014
+14879,30363,22179,45842,2978
+14880,78746
+14881,47507
+14882,73982,12642,9830
+14883,12936
+14884,73227,34524,13046
+14885,50922,46754,12182,55863
+14886,36669
+14887,74884
+14888,55705,40440,3420,68685,76611
+14889,55684,9025
+14890,11466,38471,37554,12728,6448,35901
+14891,53400
+14892,73855,74623,63991,76513
+14893,5016,12102,6769
+14894,28412
+14895,46619,34212
+14896,66961,53990,74671,69799,37852,30059
+14897,14261
+14898,13412,18384,35928
+14899,81271,9409,1412
+14900,32042
+14901,11767,42355
+14902,56840,64336,37428,27854
+14903,59244,43749
+14904,56057,21067
+14905,10891
+14906,13112,38514,21665,26440,25535,9577
+14907,53621
+14908,33224
+14909,80678
+14910,10588
+14911,64105,75619,40319
+14912,57482
+14913,69012
+14914,65305,43907,34411
+14915,29461,64269
+14916,70935,33305
+14917,12960,44491,46612,32166,27225
+14918,31324,31144,4060
+14919,7137,8475
+14920,5935,28658,18768,74874,50310
+14921,72823,24156,3677,27647
+14922,52592
+14923,16594,73596,52341
+14924,1805,79970,42911
+14925,75864,6717
+14926,39236,36813
+14927,109
+14928,52543
+14929,23234,56480,58534
+14930,31151,36792
+14931,74341,74516,48701,73504
+14932,75892,49714,52211,8720
+14933,7014
+14934,1349,36322
+14935,44177,73935
+14936,7473,2512,12191,77
+14937,46782,21413,74344
+14938,78336,41044,60247
+14939,79235,24911,67469,27051
+14940,67379
+14941,10682,79299,28196,2768
+14942,30102,6836
+14943,18074,26703
+14944,61765,32785
+14945,65620,79945,9037,66515,80732,40281
+14946,26269
+14947,44153,58027,31029
+14948,42178
+14949,62215,57983
+14950,51026
+14951,37441
+14952,35750
+14953,40038
+14954,33272,75239
+14955,74656,61770,43181
+14956,36608,72908,67686,57715,73772
+14957,41246
+14958,21186,75043,33807,48723,18108,6309,37956
+14959,11979,50440,22131
+14960,29733
+14961,58325,55899,53226,77280,50699,66606,16419,73281
+14962,7818,72460
+14963,61082,6513,74300,32806,893,31427,6490,45431
+14964,47064
+14965,52359,4797,11989
+14966,204,9747,1988
+14967,52339,69541,1515,65946
+14968,3358,80477,32945
+14969,28073
+14970,33261,11044,12058
+14971,31280
+14972,54184,54797,56873
+14973,37897,44447
+14974,10470
+14975,31113,23016
+14976,68920,5326
+14977,65443,67090
+14978,36363,17382,48312,68836,37954,26765,16970,63758,16116
+14979,52395
+14980,64882
+14981,45048,11530,53838,52685,50105
+14982,1274
+14983,16389,38529,81612
+14984,24726,46945
+14985,66202,18686,80947
+14986,76263
+14987,841,33638
+14988,68717
+14989,75149,23068,34353
+14990,30708
+14991,10240
+14992,6142,38214
+14993,10788
+14994,28318,28752
+14995,38321
+14996,58469,39158,8111
+14997,22005
+14998,3644,30068,15914,58675
+14999,19376,61351
+15000,11280,27583
+15001,38338,25389,23845,27392
+15002,48170
+15003,70012
+15004,4308,60071,883
+15005,78702,46239,79165
+15006,58470,1411,59498,81441,4588,71398,42900,16637
+15007,42428,4241,53680,27826,9634
+15008,47637
+15009,79496,53108
+15010,70631,11290,64114,6874
+15011,28307,42974,53635
+15012,57554
+15013,6995,21691
+15014,54885,62695,20827,5363,57689
+15015,13243
+15016,49981
+15017,42980,55069,8465,48820
+15018,18331
+15019,27743,55953
+15020,63376,10051,4170,2572
+15021,39082,80641
+15022,12697
+15023,38609
+15024,33680
+15025,65601,8731,56520,55654,75152,44341,40314
+15026,76169,78789,75912
+15027,22244,27208
+15028,642
+15029,28639,71583
+15030,17767
+15031,55324
+15032,32413,62448
+15033,54270,71685
+15034,72045
+15035,69667,42184,57892,71579
+15036,70154,47231,14229
+15037,32475
+15038,70843,76260,69204
+15039,31995,36089,23937
+15040,13812,22785,73750,55006,15628
+15041,26397,15758
+15042,4842,48153,65031,78179,12290,14312,32784
+15043,63734,58449,58160,41276
+15044,67839,45009
+15045,15881
+15046,59238
+15047,76542,62110
+15048,59283,21928,51388,68320,68452
+15049,15249
+15050,1061,22293,70985,40904
+15051,70269
+15052,35407
+15053,30148,63883
+15054,2736,61242,63732
+15055,1808,22563,79148
+15056,68976,25727,37357,57730
+15057,80288,36681,70659
+15058,3935,3410,30875,47547
+15059,60211,51594
+15060,41580
+15061,19691,74076
+15062,10598
+15063,9161,69278
+15064,61184,58736,31533
+15065,7957
+15066,6348,76215,21476,8194
+15067,33687
+15068,603,78373
+15069,52966
+15070,57912,19108,15024
+15071,6363
+15072,2518,48217,60354
+15073,73278,18079,68979
+15074,46607,81427,53578
+15075,29623,9761
+15076,46881
+15077,63961
+15078,8370,39260,9250
+15079,77622,40526
+15080,11620
+15081,23097,54016
+15082,63523,51251,3937
+15083,53765,77437,72679,15609
+15084,19168,66384
+15085,4238,55221,49506,71974
+15086,11262,8216,5933
+15087,77098,10388,46855,71479
+15088,76231
+15089,9619,34972,41174
+15090,39148
+15091,34444,38882,7463
+15092,74665
+15093,41523,72268,4843,21817,42200
+15094,529
+15095,47485,24256,13062
+15096,76478,3439,80206,28552
+15097,47309
+15098,76467,34298,10897,57012
+15099,56312,56066
+15100,59868,46153
+15101,20308,71201,77701
+15102,77671
+15103,6082,71495
+15104,22438,36905
+15105,47956,74947,63077,65985,49172
+15106,34963,30588
+15107,49702
+15108,69901,37643,29660
+15109,56482
+15110,39013
+15111,76392,33911
+15112,54486
+15113,73835
+15114,44120,56989
+15115,23509,6451
+15116,10933,12891,32630,22002
+15117,65159
+15118,14866
+15119,22938,71054
+15120,40101
+15121,50748,47741,39639,12010
+15122,76117
+15123,7346
+15124,59268
+15125,36183,14343
+15126,68061
+15127,32618
+15128,22636,79292,65425,38872
+15129,25483,1064,57883,68029,40808,70825,76988,15320
+15130,21301,48651
+15131,17471,2549,59902
+15132,14881,33293
+15133,13001
+15134,20354,64080,76593
+15135,46229,56137,71575
+15136,42851,74411
+15137,73467,4704
+15138,47882,66471
+15139,23492,53023
+15140,41712,75036
+15141,8860
+15142,58730,24427,62338
+15143,13250,2752
+15144,35677
+15145,40033,45359,45796,72625
+15146,37380
+15147,39106,45146
+15148,24122,13776
+15149,64402,50562,46512,15655,53349
+15150,69374,72379,34247
+15151,62126,67477
+15152,73724
+15153,31500
+15154,67530,27587
+15155,66139
+15156,72043
+15157,57149,73435,75582
+15158,29810,53961,72918
+15159,41040,8309
+15160,78864,65765,74078,50818
+15161,28137,51384,61470,30181,38952
+15162,62156,48203,46265,31254,31722
+15163,40781,4504,48893
+15164,58660,46408
+15165,77037
+15166,426,79553,29562
+15167,5277,20787
+15168,59299,533
+15169,8034
+15170,40630
+15171,75190,80176,32589,40147,50823
+15172,16620,5721
+15173,78205,60219
+15174,51026
+15175,24541,11712,48734,60104
+15176,15267,45736,20756
+15177,28974
+15178,20813
+15179,2664,30869,28688
+15180,17149,48355,81924
+15181,49810,39531
+15182,29888,14505,33851
+15183,62839
+15184,44588,28256,72604
+15185,70307,62751
+15186,75720
+15187,79725,53018,66770
+15188,69994,13037,43280
+15189,51145,7563
+15190,11693
+15191,43032
+15192,64451,48680,15860
+15193,48761
+15194,1010
+15195,62845
+15196,15352,38109,1928
+15197,62405,59304
+15198,13568,27190,7163,38104
+15199,22246,63041,18103
+15200,32180,75734,39677,34648,81225
+15201,78018
+15202,22350,51289
+15203,25322,47990,41347,51623
+15204,39767
+15205,23282,25474,25370,38348
+15206,39097,65171,75091,585
+15207,81139
+15208,68945,46772
+15209,51202,59246,67830
+15210,33399,62469,75355,47083
+15211,39448
+15212,63609
+15213,14066,63252
+15214,19969,17594,55166,13703,50428
+15215,67769,70916,10511
+15216,20198,28638,16421,13656,78548
+15217,7278,66518,22976,51658
+15218,12111,54063,78299
+15219,72523
+15220,823,26638
+15221,46839,70442
+15222,12767,37322
+15223,34625,2179,36608,47111,78929,24728
+15224,48752,36312,68704
+15225,40132,72335,48493,67316
+15226,448,8215
+15227,65494,37143,25263,75779
+15228,45195,22274,79343,58488
+15229,16516,33060
+15230,76901
+15231,40136,45469,64221
+15232,58534
+15233,41924,79481,23117,70081
+15234,17586,34221,60392,34638,40998
+15235,8766
+15236,17051
+15237,30981
+15238,62913,16089,70763,78047,50567
+15239,50021
+15240,65005
+15241,815
+15242,58681,23122,26479
+15243,58249,33024
+15244,8065,72836,58220
+15245,60677,78161
+15246,66460
+15247,30392,67577
+15248,53408,54380,15095,15673,33225
+15249,16628,34549
+15250,41191
+15251,22312
+15252,40753
+15253,54618,5133,15881
+15254,45134,56707,74881
+15255,2557,13827
+15256,37587,378,75950
+15257,71148
+15258,41828,72902,14293
+15259,17333,18344,59995,42631
+15260,24869,14616
+15261,60765,7848
+15262,16756,7601,75225,64568
+15263,17163,67686
+15264,38633,34165
+15265,61131
+15266,4337,11038,8108,27376
+15267,24001
+15268,50357,62930
+15269,42244
+15270,46312
+15271,54756,19564
+15272,3025,1740
+15273,49200,4330,78494,65629,13956,13394
+15274,15270
+15275,54704,46978
+15276,2393,32056
+15277,10040
+15278,12258
+15279,66144,75347,45885,61516,46316
+15280,40284
+15281,10987
+15282,2156,43433,9700
+15283,76173,17494
+15284,42982,10850,73500,3503
+15285,81008
+15286,47996,1053,44329,25657
+15287,60546
+15288,63865,29942,26070,5045
+15289,68977,48448
+15290,63938
+15291,30909,6261,18053,43579
+15292,63294,74881
+15293,37209,74562,11561,46395
+15294,13524
+15295,70220,75135
+15296,11523
+15297,58068,33042
+15298,7731,46834,22002
+15299,4137,8681,10599
+15300,66282,50440
+15301,25193,64900,4505
+15302,50804,58898
+15303,33484,11536
+15304,14324,1109,14037
+15305,32836
+15306,4307
+15307,81952,56362
+15308,25430,42188
+15309,80734
+15310,22459
+15311,23926,24050
+15312,35035,22573,49893
+15313,17181,9727
+15314,39156,43241,8673
+15315,8405,73392
+15316,51319,81722,80314
+15317,17538,2923,59705,39993,4329,81961,60123,45100,34425
+15318,3721,80663,37397
+15319,74040,1299,12854
+15320,16008
+15321,11261
+15322,18271,51790,24527,53214
+15323,11027,79244
+15324,2244,34668
+15325,17913
+15326,67202,65566,67008,22173
+15327,46133,61318,30904
+15328,72822,74075,57734
+15329,36401
+15330,9909
+15331,78301,69311
+15332,42847,18564,42431,58102,65211
+15333,37443,57831
+15334,8193,76493,15567
+15335,69136
+15336,64020,43242,62541,7887
+15337,2802,3731
+15338,51200,64656,64655
+15339,42224,47951
+15340,70552,9378,77035
+15341,23921,57616
+15342,68211
+15343,9584,62282
+15344,47295,27370,67619
+15345,42739
+15346,55712,10467
+15347,65840,19045
+15348,29230,38872,35149
+15349,5514
+15350,68339,79527,30992
+15351,31989,43092,6964
+15352,49409,48669,29732
+15353,27459
+15354,72641,15948
+15355,75490
+15356,3225,1883,917
+15357,67844,8638,2654,74647,80504
+15358,25738
+15359,23898,56380,17068
+15360,46512
+15361,74955
+15362,62900
+15363,75693,34215
+15364,80533
+15365,2920,1680,79808
+15366,54260,77558,5564,21430,10097
+15367,64689,10748,63786
+15368,1133,59893,46715
+15369,51692,31692,14979,70195
+15370,26294,8388
+15371,47659,14717,6612,28682
+15372,949,5698
+15373,80774
+15374,41148,80785
+15375,20043,74217
+15376,34564,44423,57321,16940,13890
+15377,30767,11076,64135
+15378,17153
+15379,57695,23098,49987
+15380,8138
+15381,29338,76749
+15382,1437,24080
+15383,27188,50647,42510
+15384,10619,71543
+15385,4948,65914,25220
+15386,56348,38600,74685
+15387,13571
+15388,3662,20534
+15389,23973,52337,32023
+15390,1755,31934,49638,35792,55065,277
+15391,19911,74844,572,10794,26834,48696,24665
+15392,13716
+15393,15264,47527,63642,16745
+15394,16115,78141
+15395,1873,112,33223
+15396,62165,17315
+15397,25148,532,59492
+15398,42445,76697
+15399,58287,59383,10854,48253,59226
+15400,8686,65448,62254
+15401,77279,15440,2032,24833,27074,73841,28220
+15402,63873
+15403,10128
+15404,31176
+15405,24618,80388
+15406,4169,31176
+15407,74472,3689,32511,60165,76150
+15408,79397,22825
+15409,16781
+15410,71547,2444,5359,3713
+15411,29475,11004,49880
+15412,72084
+15413,59665
+15414,69814,17624,56829
+15415,25167
+15416,66975,69912,37915
+15417,4423,60640,47650
+15418,77491,43255
+15419,1426
+15420,4428,3172,69481,54411
+15421,30184,17073,67387
+15422,37583,73324
+15423,21140
+15424,39159
+15425,46618,79809
+15426,33671
+15427,23397,41696,60013
+15428,56523,24971
+15429,6720
+15430,41108
+15431,57166,23052,35887
+15432,19955
+15433,43416
+15434,4396,53125,79362
+15435,18499
+15436,47150,42394,47726,1636,36451
+15437,68713
+15438,27578,31201,75202,73332,24951,2108
+15439,81506,81181,35084,56994,23312,3325
+15440,38140
+15441,34975
+15442,37271,55494
+15443,78418,80194
+15444,43103
+15445,67005,18193,16188
+15446,19495,5591,72753,44916,32346,50286
+15447,58377,12479,47638,8464
+15448,55393,67682
+15449,52298,78933
+15450,33672,81367,20171,81927
+15451,71266,23630
+15452,5781,77366,20969
+15453,57089,50333,52867,52368,71597,32232
+15454,24719,59868
+15455,68583,25297,8430
+15456,80485,40994,36800,19854,31710
+15457,16155,38606
+15458,15567
+15459,18168,18774,76331
+15460,73991
+15461,47347,14304
+15462,54849
+15463,38004,79026,18400,79228
+15464,65743
+15465,61488,20182
+15466,10077
+15467,53630,26968
+15468,47104,57584,9298
+15469,37041,65178,22964,29489
+15470,63779,58656
+15471,58046,47396
+15472,7210,71445,6942,38998
+15473,34978,53979,41185,49546
+15474,51577,80126,78242,1461,76145,62477
+15475,24601,41058
+15476,10808
+15477,15282,69390,37260,42291,11431,72550
+15478,81600,52189,24142,39984
+15479,16916,36903
+15480,58769,68309,45660,81883
+15481,22876,72449,53297,74833,39463,78166
+15482,9957,46196
+15483,63642,30530
+15484,59418,47724,58988,4606
+15485,16950,36136
+15486,34502
+15487,44731
+15488,61776,515
+15489,50399
+15490,10031,72747,46647,4147,12015,18344
+15491,20180
+15492,67828
+15493,53372,81512,7430
+15494,21348,35067,70374,47859
+15495,78640
+15496,49682,81508,60863,51088,13279
+15497,73065,41596,57672,5814
+15498,49138
+15499,26306
+15500,79714,9925,62248,72441,5853
+15501,68307,77877
+15502,11218,19550,41344,27070
+15503,77404
+15504,68892,51311
+15505,27920,67663
+15506,48486,64265,25359
+15507,38236,29149,59437
+15508,73921,70371,64824
+15509,18496,11168,50804,76095
+15510,34416
+15511,2179,26648,52996
+15512,37651,52088,58971
+15513,69570,9082
+15514,70218
+15515,59432,49340,4406,75545,76074
+15516,52409
+15517,14458,20733,15309,27345
+15518,74870,80915,63458,11791,28633,62784
+15519,63316
+15520,56536
+15521,61121,71080,61143,3615,19926
+15522,75047
+15523,10615,68762
+15524,69406
+15525,41701,53754,46513,21562,4506
+15526,66472
+15527,74729
+15528,69947
+15529,27805,4066,34172,28852,77791
+15530,27864,70469
+15531,13246,3175,25588
+15532,29654,42234,43648,32177
+15533,32679,23951,60108,37499
+15534,3568,54157
+15535,26502,78956,34466,28001,23998
+15536,45345,35439,45488
+15537,31596,30413,17432,45234
+15538,54424
+15539,66258,33151,50145
+15540,38720,36089,56857
+15541,18631,12657,25460,62095
+15542,39855,5592,25544
+15543,42875
+15544,69144
+15545,46373,48013,16045
+15546,48400,43055,78258
+15547,12680,50004,41667
+15548,47744,32428
+15549,42016
+15550,42151
+15551,67637,20649,64136,65352,34240
+15552,7154,32896
+15553,25939,1420
+15554,75928,73481,8420
+15555,74726
+15556,62772
+15557,40087
+15558,44701,52567
+15559,17655,64288,46429,48894
+15560,59684,21637
+15561,458
+15562,79706
+15563,62588,57043,58407,25353
+15564,77427,39001,28459,61610,79479,37151,68654
+15565,62538,6555
+15566,77671
+15567,60245
+15568,35263,27124,82064,3183
+15569,33209
+15570,46842
+15571,47421
+15572,48929,76569
+15573,33003,6110,46122,64689,78678
+15574,38368,65005,25005,53680
+15575,48077,59162,5045,2447
+15576,67555
+15577,53505
+15578,61706,81117,54988
+15579,22356,8404,53274
+15580,9149,53977
+15581,48435,55617,54766
+15582,67780,75491
+15583,72775,1933,27096,63192,15598
+15584,60677
+15585,51313,21272,136,74948
+15586,47518
+15587,13290,12681,69070,37942,29572,8849,29771
+15588,56658
+15589,32899
+15590,42324,33626,55660,59945,41740
+15591,49447
+15592,48170
+15593,44053
+15594,21344,78070
+15595,7490,59029,41440,70624,54961,50498
+15596,46351,20991,37394
+15597,6475,77951
+15598,30827
+15599,48676
+15600,77335
+15601,54920
+15602,67639,56848,57221,21606
+15603,17825,46157
+15604,1388,33133
+15605,40909,53382
+15606,59555
+15607,15628,66594
+15608,9891,19236
+15609,72416
+15610,68389
+15611,78076
+15612,2687,53829
+15613,26274,67851,65851,31414,7807
+15614,62597
+15615,67476,34408,14250
+15616,28387
+15617,13621,31194,51614
+15618,24068
+15619,28048,62490,33920,18691,76981,52758
+15620,62778
+15621,77600
+15622,53849,47577,8281
+15623,80650
+15624,6215
+15625,40306,74858
+15626,64776,55046,75615,44172
+15627,65433,31724
+15628,58013
+15629,53752
+15630,68467,54728,77847
+15631,18992
+15632,69443,39222,15350
+15633,69319,58755,18005,66480,17754
+15634,15077
+15635,72861,12867
+15636,9882
+15637,72055,7375,53641,55136,16980
+15638,47022,26845,20981
+15639,67878,79533,18612,1538
+15640,4332,41153
+15641,64760,58658,125,4583
+15642,79239,21477,5157
+15643,48737,25754
+15644,57708
+15645,56241,68160,51526
+15646,32691,49933,4676,55180
+15647,17713,73635,24955,64668,34304
+15648,30192,15278
+15649,68476,14794,34700
+15650,24463,41205
+15651,36515,49354,10726,3995,45085,11441
+15652,60884,7062,65695
+15653,39442,41800
+15654,28412
+15655,60184,61693,3595,28468
+15656,22942,14558
+15657,5163,27307
+15658,33698
+15659,48414,13816,41441,55744
+15660,10936
+15661,68449
+15662,22909,31926,22277,992
+15663,57046,53584,13966,24294,38114,41594,21344
+15664,46312
+15665,8323,55471
+15666,48628,56031
+15667,25674
+15668,33093,75299,67686,80996
+15669,20630,27705,53535,20464,14224
+15670,21590,17505,37417,50363
+15671,40571,57223,9787
+15672,79843,61872
+15673,51620,5200
+15674,54981,62342,48923
+15675,54471,62485
+15676,31926,332,12131
+15677,26894,40195
+15678,41574,66378,23016
+15679,37996,15886,52305
+15680,4346,26905,74977,26822
+15681,31624,10954,74558,51802,74150,64759
+15682,39490,11997
+15683,55571
+15684,6605
+15685,2233,55379,22913,54866
+15686,14120,43866,48849
+15687,64131,36207,6453,80490
+15688,32759,45383,35950,64153,54607,12593,9455,4140,43596
+15689,51033,62895
+15690,70023,81818,57184,48189
+15691,9177
+15692,40480,51315,3160
+15693,4195,58715,40349,71298
+15694,22219,16861
+15695,41098,44354
+15696,7883
+15697,4159,10718
+15698,38821,30903,13983,12240
+15699,10313,46815,7456
+15700,77860
+15701,32108
+15702,32963
+15703,31458
+15704,33824
+15705,70776,50007
+15706,18615,51573,24628,78882,61564
+15707,4081,42647,62819
+15708,49566,38316
+15709,35847
+15710,78171,24676,36697
+15711,63688
+15712,19284
+15713,37643,78792
+15714,32865,35876
+15715,23848,48910
+15716,68227
+15717,57793,38631,68851
+15718,31698,1652
+15719,4847,4263,25146,14428,46603
+15720,38827,9916,58981,12534
+15721,48982,29780
+15722,48626
+15723,45780
+15724,77080,73009
+15725,57057
+15726,12821,16343,6007
+15727,57136
+15728,72884,78629,62866,45331
+15729,15737,81984
+15730,27266,66597,65315
+15731,32859
+15732,22324,76059,15820
+15733,79171,31346,6629,9302,18060
+15734,72003
+15735,67956,888
+15736,79336,72389
+15737,73835
+15738,66190
+15739,70827
+15740,72173,73491,39528,27406,23797,5566
+15741,77293
+15742,12251,19400
+15743,68236,7228,10596
+15744,17399
+15745,24811,55739
+15746,4417,64631,28590
+15747,9282,25544
+15748,41619,1286,47393
+15749,62390,21071,32624
+15750,22492,18439,31695,62057,21005,50899,76672,72511
+15751,6144
+15752,66811
+15753,27064,59406,38734,17212,22394
+15754,1088,68825
+15755,23812
+15756,20182,71217,50938,9063,14997,3916,9301
+15757,27368,40877,34439
+15758,76060,74927
+15759,19593,12727,5407
+15760,22667,32070,81513
+15761,24734
+15762,66316
+15763,29472,43616,67957
+15764,9926,75833,78304
+15765,62788,61488,25849,14945,18898,68320,60073
+15766,66104
+15767,64654,25334,59716
+15768,7926,68933
+15769,16345,11560,52654
+15770,19831
+15771,10648,53185,68491,81933,445,29233
+15772,10235,62716,26241,35440
+15773,9232
+15774,2177,73846,1714,19459
+15775,72523,27018,59652
+15776,13164,8095,30801,55819
+15777,16612,52197
+15778,70592
+15779,70716,50828,68550,8960,45172
+15780,75106
+15781,5363,65028
+15782,25191,73082,62071,45904
+15783,69722,60577
+15784,79508,48484,33879
+15785,38992,11418
+15786,51962,14195
+15787,56233,52281
+15788,73213,64206
+15789,61873,45792,62604,63105
+15790,82096,34914
+15791,62508,57633
+15792,48477,17744
+15793,78148,58477
+15794,19399
+15795,72592
+15796,79155,41245,69619,35760,34302
+15797,5227,13624
+15798,1833,10628,63408
+15799,76629
+15800,7537
+15801,21293,68515,730
+15802,74669,50460
+15803,13624,22437,28507,50709,76534
+15804,51029,8551
+15805,51492,47609,80832,20481,45234
+15806,67008
+15807,63562,68052,81346,75998
+15808,63062,38437,26950,9090
+15809,7986,32547,20804
+15810,23221,49245,25615
+15811,61869,16577,17813
+15812,65356,76745,74346,54794,69284
+15813,47976
+15814,33793,5528,6806
+15815,13145
+15816,58115,78417
+15817,60025,7601,20307
+15818,50180,35343
+15819,58290,56053,77393,8242
+15820,8412
+15821,25809
+15822,79333
+15823,24323,48894
+15824,14487,69511
+15825,72384,25861
+15826,13661,67339,76597
+15827,69078
+15828,13617,49693,710,51049,35802
+15829,27093,22180
+15830,29792,3723,48320
+15831,75353
+15832,45381,24966,74200,55304
+15833,37598
+15834,31718,109,27503
+15835,33140,66706
+15836,12008,32460,58421,14761,45588,2842,75356,46440,26805
+15837,18828,20922
+15838,13881,79652,62323,57854
+15839,66044
+15840,15464,81729,48617
+15841,57663,9886
+15842,64211,36939
+15843,34965,66958,48860,36021
+15844,49705,33397
+15845,61470
+15846,48249,74222,28436
+15847,34326,25745
+15848,42508,11584
+15849,15102
+15850,31999
+15851,58625,75936,29807,43212,21685,59979,12642
+15852,40706,64234,57855
+15853,24399
+15854,7826,53252
+15855,39262,17260,65920,30699,38151
+15856,9888,61049,17618
+15857,34578,79983
+15858,50004
+15859,11434,60454
+15860,38283,23073,15162
+15861,869,65485,61428,75689
+15862,9455,63149
+15863,36549
+15864,19312,8417,63597,43074
+15865,3873,52127,7551
+15866,57579,4978
+15867,55993,35332,43617
+15868,31323,39754,19985
+15869,25589,30572,66078
+15870,9426,28027
+15871,60032,36467
+15872,28846,19584,42330
+15873,6189,39874
+15874,2702
+15875,17641,55886,24497,76424
+15876,33202,3216
+15877,50185,81070
+15878,69144
+15879,34764,56002
+15880,29211,77692,52317
+15881,36155
+15882,27978,45060,63820
+15883,80143
+15884,29209
+15885,750,69793
+15886,70845
+15887,15831,51537,11841,20734
+15888,7237,23218,5712
+15889,67441,66082,82157
+15890,40233,73067
+15891,3390
+15892,18218,71291
+15893,28411
+15894,77303
+15895,24552
+15896,29733
+15897,24032,79637,80456,62576,44967
+15898,61437
+15899,65456
+15900,22016
+15901,68248
+15902,60338
+15903,60487
+15904,4502,48486,36340,66136
+15905,33776,44504,23273
+15906,7557,11116,37667,15600
+15907,30793
+15908,59778,69738
+15909,22841,65200
+15910,44827,16561,75521,80871
+15911,39577,22257,30273,1732,3981,34357,25296
+15912,16170
+15913,9523,19786,54635
+15914,76491,25155
+15915,43869,33344
+15916,6476,23792
+15917,28773,2186,39892,22236
+15918,5628,64947
+15919,37728
+15920,50840,25950,10936,7544
+15921,47272,41231
+15922,37626
+15923,39853
+15924,66641
+15925,40997,7272,34668,40979
+15926,66631,17542,69970,59699
+15927,73099
+15928,56885,42285
+15929,38482
+15930,6426
+15931,422,79887,12374,12640
+15932,46226
+15933,40495
+15934,27103
+15935,61856,51338
+15936,6075,68198,81806,20738
+15937,47309
+15938,74548
+15939,51760,68367,20770
+15940,71573
+15941,54591,48374,27333
+15942,63093
+15943,6588,36614,22410,55945,8263
+15944,69230,14200
+15945,7960
+15946,72924,73072
+15947,1422
+15948,13961
+15949,75115,69555,3538,29313,16575,45947,41766
+15950,41108
+15951,79109
+15952,53465,35649,9151,58587
+15953,22294,23167,27040
+15954,74795,61833,49179
+15955,79537
+15956,71762,650,2264
+15957,66530,22871
+15958,78048,18906
+15959,37178
+15960,17920,41631,46728,2407,40062,36661,12649
+15961,22475
+15962,41076
+15963,63613,40417,52351,60658
+15964,20432
+15965,32814
+15966,31943
+15967,53674
+15968,50637,27338
+15969,45780
+15970,7827,14586,50088
+15971,4348,34404,10308
+15972,77374,56054,81489
+15973,29668,53644,60848,60192,45936
+15974,29337,41331,55533,56888,70938
+15975,13023,44701,5048
+15976,38775,55729,43875,39441
+15977,57917,10861,36773,16824,65382,7976,37838
+15978,39859
+15979,29291,75508
+15980,6449,1368
+15981,67091,75577,28409,12714,4703
+15982,76615,31013,23329
+15983,10328
+15984,25770
+15985,72953
+15986,73165,20609
+15987,47334,46122,57111
+15988,80909,46975,13474,49399
+15989,43627
+15990,81942,5553,59612
+15991,30930,53594,61871,58384
+15992,55521,7157,7848,42430,42387
+15993,66678,40283
+15994,81034
+15995,37751,3617,78468,31256,69873
+15996,46963
+15997,79413
+15998,5452,5033,56991
+15999,31563,47066,69024
+16000,20170
+16001,69474
+16002,27332
+16003,62369,70249,41780
+16004,4137,70645,19294,39188,17384,67590,43121,65607,46818
+16005,69564,37094,4371,29044,65794
+16006,9260,4735,47524
+16007,13136
+16008,12964
+16009,8087,70135
+16010,46299,14380,22237,75580,18219
+16011,44342,19299,41276,48273
+16012,14329,80740
+16013,9417,39141,3568,73648
+16014,55006,41884
+16015,30510,74248
+16016,71013,9510,8426
+16017,59536
+16018,74125,28774,42975
+16019,54103
+16020,71611,12793,79960,63359
+16021,61103,53044,63860
+16022,74201
+16023,18012,65754,63968
+16024,57718,80739,26234
+16025,22190,47864,20651
+16026,71327,74303
+16027,67119,65579,81041,78705
+16028,11406
+16029,10461,30686,14509,75632,5935
+16030,48404,47310
+16031,50268,58013
+16032,62480,19406
+16033,12633,64056,67617,14374
+16034,71109
+16035,40698
+16036,80420
+16037,34548
+16038,3805,30429,28455,46865
+16039,20896
+16040,70959,63020
+16041,44707
+16042,48152
+16043,40019,6753
+16044,52076
+16045,15274
+16046,12017,74623,61629,42381,67384,16830
+16047,50218,49650
+16048,24076,39565
+16049,29129,61952,74340
+16050,40196,27611
+16051,43428,45143
+16052,77655,41386,30695
+16053,81746,78871
+16054,67125,63880,5857,17171
+16055,12932,80418
+16056,68946,34533
+16057,79388,76708
+16058,1611,30392,9283,72820
+16059,31603,46284,20674,71265,79696
+16060,51373
+16061,43561,73246
+16062,49409
+16063,4143,6371
+16064,62182,8908,21739
+16065,8053
+16066,59993,46339
+16067,25694,69835,46297
+16068,17485,59869
+16069,63683,33231,80938,16799,62381
+16070,14117
+16071,46673
+16072,14472
+16073,10722,1521,52242,31480
+16074,60156
+16075,80001
+16076,53069
+16077,39775,71474,15615,56622
+16078,51772,48980
+16079,41515,17704,48385
+16080,14452,5094,59569
+16081,60336
+16082,61260
+16083,35745
+16084,36480,42194,79400
+16085,54843,77879,28904,3555,6088
+16086,21990,70624
+16087,6420
+16088,44643
+16089,48088
+16090,62638,74307
+16091,81539,10138,50324,47783,5216
+16092,18253
+16093,77759
+16094,12818,31588
+16095,43458,9606
+16096,62557
+16097,15787
+16098,1350,62481,79546
+16099,24633,1691,81199,985
+16100,2630,5201,20689
+16101,23992,48364,22585
+16102,12987,68148
+16103,45194,79840
+16104,38147,40860,80115
+16105,5209,68950,58098
+16106,65338
+16107,31318,32261
+16108,19304
+16109,27243
+16110,31718,30890,30545
+16111,37235,62250,45520,37676
+16112,45631
+16113,49341
+16114,74193,22714
+16115,32318
+16116,34718,13,45862
+16117,48685,28825
+16118,39191
+16119,60018,76633
+16120,5855,41206
+16121,22909,20955
+16122,80081,67172
+16123,56802
+16124,39762,69283
+16125,43710
+16126,70198
+16127,35303
+16128,64222,73216,34158,47073,669,73251
+16129,55836
+16130,22169,20706
+16131,17203
+16132,19557,69537
+16133,79618
+16134,59655
+16135,18139
+16136,59628,52417,15254,10782,67732,35668
+16137,29585,49370,10456
+16138,71582,19090,40278,30583,81889,37207
+16139,71246
+16140,81347,75863,19330,4731
+16141,78873,22042
+16142,60711,19741,18549,77016
+16143,75781
+16144,54171,55519
+16145,22676,3876,52692
+16146,48987,1994,27540
+16147,64621,68112,68226
+16148,12658,14320,9476
+16149,53378,6937,4152
+16150,11739
+16151,48240,75250,40139
+16152,78462,60005,45719,60210
+16153,63511
+16154,5360
+16155,58438,45444,20417
+16156,72,30768
+16157,59877,61038
+16158,45927
+16159,3880
+16160,9593
+16161,80462,71770,10119
+16162,14068,53240
+16163,60568,66530,34819
+16164,247,18429
+16165,78328,2808,74201
+16166,3738,24691,55389
+16167,70256
+16168,30756,11517,78229
+16169,25141
+16170,74443,60261,78955,75234
+16171,72121,56479,23005
+16172,18310,46637
+16173,43811,15908,81927
+16174,50714,26076
+16175,79999
+16176,8018
+16177,8903,16838
+16178,78150,64074
+16179,36360,44803,73920
+16180,81364,47796,30994
+16181,63813
+16182,32269
+16183,72395
+16184,78832,51270,79694,58638,25168
+16185,31444
+16186,45374,65793,51262,71906
+16187,56098,39842,82055,61831,72194,50423,9381,33784
+16188,53941
+16189,80187,35722,23144,15076,11624
+16190,56199,14473,12493
+16191,70923
+16192,7004,3260
+16193,28608,42867,58803,24731,35171
+16194,48885,59919,11742
+16195,2091,43523,61381,76743,29975
+16196,21334,31191,45230
+16197,57353,42898,16668,29099,76874
+16198,17288
+16199,77623,48663,40949,56611
+16200,9813,48883,24252,41412,4150
+16201,16758,50801
+16202,59682
+16203,75530
+16204,57880,56806,18447
+16205,75809,45331,1453
+16206,29941,13875
+16207,16938,30575,63822
+16208,833,48503
+16209,7129,32624
+16210,17438,16591
+16211,22766,55196,82154
+16212,59,8181,62416
+16213,52664,37065,45309,82157
+16214,27139,39069,25962,67118,35011,12687
+16215,76968,6656,11560
+16216,4660
+16217,78063
+16218,12559,16132
+16219,20938,75357,18557
+16220,32936,68452
+16221,66541
+16222,70295,65772,77172
+16223,45589,52143
+16224,43955
+16225,74362,79714,4826,41116,54541
+16226,21074,59511
+16227,22593,77671
+16228,12979,56645,426,68824,12318
+16229,59142,65963
+16230,48155,15851
+16231,34798,49934,21928,1290
+16232,50116
+16233,69500
+16234,232,22814,55435,10926,26562
+16235,75459,36338,52579,37480
+16236,52769,10619
+16237,12035,75179,30956
+16238,52580,42737
+16239,17051,10390,51454
+16240,81010,11426
+16241,46515,69873
+16242,15802,38726,35802
+16243,64558
+16244,50334
+16245,76674
+16246,35729,49943
+16247,27729,45438
+16248,115,81576
+16249,6385
+16250,28616,3995,15819
+16251,46612,51720,52475,53123
+16252,16781,66044
+16253,2541,8066,6821,22835
+16254,36974,45277
+16255,73647
+16256,68324,49009,59902
+16257,45963,67395
+16258,40151,4182
+16259,6991,34400
+16260,3421,237
+16261,8242,34766,31876
+16262,68260,64553,72307
+16263,62450,13645,46915,3007
+16264,13950
+16265,58369
+16266,21061
+16267,20691,10425,34719
+16268,29076
+16269,45637,25227,79468,67967,10658
+16270,25970,41729,33298,62110,35303,8945
+16271,36833,30964
+16272,60299
+16273,8514
+16274,23196,12214
+16275,36169,47012,62846
+16276,68914,22853,51788,71830
+16277,25137
+16278,56787,10125
+16279,21694,8768,29318,48857
+16280,39188,37849
+16281,28788,4278
+16282,16387,10154,36683
+16283,75901
+16284,22859,73998
+16285,75921,64786,25703,67303
+16286,55373,8476,42207
+16287,41691
+16288,81626,79374,866,39506,78447
+16289,74693,44595,57848,5562
+16290,3715,55893
+16291,43280,37508
+16292,31459
+16293,48783,41201
+16294,70196,76073,23879
+16295,25612
+16296,66473,36462
+16297,1056
+16298,948
+16299,10749
+16300,53538,63603
+16301,25210,79244,71599
+16302,10867,34313,44141,12666,35589,55349
+16303,52669,30869,1795
+16304,81344,77860,37586,68037
+16305,61516
+16306,11430,79480
+16307,68372,7164
+16308,79957,64001,79937
+16309,13751,46273
+16310,63005,44170
+16311,72807,46658
+16312,1360
+16313,13950
+16314,50449,63015
+16315,10823,41981
+16316,38329,1775
+16317,42200,33168,8054,69446,35829
+16318,39928,25531,16166
+16319,74561,60398,13342
+16320,12551,3860,40933
+16321,3133
+16322,16040
+16323,2717,73561
+16324,77735,74336
+16325,71401,41291,32856,51916,61490,25113
+16326,56596
+16327,27056,39633
+16328,35158,64795,53198,46046,78949
+16329,75053,60023
+16330,63117,63363,735
+16331,61038,75311,77775
+16332,71989,6736,47297,61450,50769
+16333,41075,46853
+16334,70592,31299
+16335,29169
+16336,17813,48843,53225,37134
+16337,78709
+16338,11734,40839,39364,15872,24810,23684
+16339,51733
+16340,55041,82033
+16341,34347
+16342,41293,9779,65696
+16343,720
+16344,65374,5297,72418
+16345,39483,28330
+16346,12706
+16347,48856
+16348,80256
+16349,67538
+16350,67709
+16351,60157
+16352,53641,20972,43165
+16353,18327,41426,57938,42790,16571,75352
+16354,66555,38166,47937,9776,80218,41143,72461
+16355,576,3950
+16356,75478
+16357,17714
+16358,72210
+16359,55787,62396,28410,41254,58487,57183
+16360,25924,13560,18392,63582,49772
+16361,78883
+16362,66930
+16363,65486
+16364,23111,48111,69918,61695,53012,15185,291
+16365,66320,62376,66538
+16366,73214,59084,79620,46896,22533,31346,56203
+16367,23307,50792
+16368,974,5128,9482
+16369,7575,252,52460,13057,8040
+16370,66644,57914,36320,40291
+16371,73480,55957,22457
+16372,13657,75789
+16373,51709
+16374,24868
+16375,79340,23963
+16376,22020,12814
+16377,53607
+16378,5624,22006
+16379,65743,35596,1579
+16380,27662
+16381,67017,13665,25750,44918
+16382,66571,18197
+16383,72820,68090
+16384,7178,14496,15387
+16385,23209
+16386,72588
+16387,65270
+16388,1572,40712
+16389,18666,61901,40891,16760
+16390,81086,24454
+16391,20870,48996,51803
+16392,15244,40778,11677
+16393,60268,69619,22933
+16394,14074,51023
+16395,53050,29473
+16396,77770,65622
+16397,18700,43684,36959
+16398,59224,71575,32702
+16399,61443,6381,17684,35476
+16400,68659
+16401,27093
+16402,25167
+16403,19272,80788,38830,35915
+16404,15749,62557,53330
+16405,25055,71305
+16406,53574,17573
+16407,19598
+16408,59863,77472
+16409,51374,38800,19407
+16410,39152,55896
+16411,15193
+16412,23957,70665,81797
+16413,49167,39357
+16414,58259
+16415,18595,56267,52954
+16416,18878
+16417,75080
+16418,77494,46776,58221,18715,58771,78087
+16419,79450,57061
+16420,29992,47956,36226,61930
+16421,61638,28406,9616
+16422,26539
+16423,68912
+16424,6140,63638
+16425,24625,30484,80704
+16426,71141,28468,6937,12595,17648
+16427,60406
+16428,3633
+16429,64940,64522,27831
+16430,67133,33526
+16431,34240
+16432,77380
+16433,32227
+16434,40800,79372
+16435,74143,61873
+16436,36389
+16437,41609,65901,80366,12337
+16438,22705,72060,61920,20877,31202,78000
+16439,55464
+16440,53122,33150,8821,77905,6063,583,58627
+16441,49741,6793,16663,53750,24667,55994
+16442,10687,74346,19967
+16443,2509
+16444,16099,11310,8374,45154,43454,69022
+16445,10891
+16446,16147,75094,69155,3833
+16447,79724,69579,67705,16427
+16448,78113,8732,18722,78700,65333,21201
+16449,22610,53286
+16450,47571
+16451,69730,25507,26581,2574,21034
+16452,744,65793
+16453,64541
+16454,66966,38790,11046,81885
+16455,12806,62917,67841,11804,42342
+16456,62246
+16457,34304,3345,44425
+16458,7960,56369
+16459,77980,25859,79804,1597
+16460,50151
+16461,63818,46892,19252,21773
+16462,51148,42438,65763
+16463,68550,73806
+16464,22204,35134,77082
+16465,68601
+16466,45018,29421
+16467,61767,38715,1804,36229,58346
+16468,29714
+16469,71834
+16470,25392
+16471,17031,50999
+16472,63288,30064
+16473,3870,81094,41148
+16474,80647,81086,24074
+16475,67967,43688
+16476,51702
+16477,77411,62367,27688,52716,28492
+16478,22333
+16479,21036
+16480,25919
+16481,11945,71388,47851
+16482,36693,19889,7573,72177
+16483,75455,7170,73198
+16484,79148,68695
+16485,42387,15749,24239
+16486,61221,64832,41940
+16487,71078,77579
+16488,80088,80536,29287
+16489,37857,23998,23252,36010,34750,53601
+16490,80020
+16491,37613,43321
+16492,31836
+16493,76021
+16494,75543,38998
+16495,6985,19537
+16496,19834,64373,29641
+16497,33565
+16498,26285,50540,40762,11983,6503,77121
+16499,7047
+16500,22841,65775,18473,75115,23992
+16501,3512
+16502,49578,67347,33556,37072,15572,38379
+16503,52095
+16504,66640,33730,8861,18551
+16505,2790,71960,11088,49152
+16506,64772
+16507,24050,9267
+16508,12972,54094,6985,17570,64457,9881
+16509,29008,56420
+16510,56007,31782
+16511,22898
+16512,73072,71333,31543,54512
+16513,9715,27129,49112
+16514,732,951
+16515,12172,14134
+16516,14425,78473
+16517,16178,728,55446
+16518,22819
+16519,68527
+16520,65038,73543
+16521,21830,43031,32784,3057
+16522,5296
+16523,38020
+16524,75389,71945,25384,28634,52596
+16525,23085
+16526,62502,25180
+16527,69853
+16528,17501,4164
+16529,62330,77096
+16530,65103,24538
+16531,16765
+16532,44495
+16533,11776,47919,48256,2892
+16534,28679,35441,67482,26447
+16535,4427,41191,14228
+16536,27173,61973,61562
+16537,41391,68163,5033,48811
+16538,78494,17622,4541,1075
+16539,78263,54760,45524,29163
+16540,45181
+16541,50853
+16542,4685,46138,6778
+16543,31259,28572,5961
+16544,71399
+16545,67990,51480,57459,62179
+16546,40693,40339
+16547,7014,23897
+16548,55370,1673
+16549,67414,54702,13793,65636,34464
+16550,54483
+16551,77685,72980,6813
+16552,78255,31334,61785
+16553,11133
+16554,18878
+16555,81363
+16556,17748,23882
+16557,29857
+16558,9373,66416,80504
+16559,73034
+16560,60539,40891
+16561,25513,75842
+16562,52787,52360,69123,61164
+16563,79215
+16564,72328
+16565,64091
+16566,1836
+16567,13109,31800,9952
+16568,15022
+16569,61003,63759,66488
+16570,75877
+16571,27103
+16572,62006,58711
+16573,14097
+16574,79087
+16575,56224,74050
+16576,76082,76306,9699
+16577,20785,8120
+16578,16177,60283
+16579,80343,43027,55525
+16580,72987,4274,9353
+16581,66772
+16582,15495,13984
+16583,62946,27585,6876
+16584,6369,13314
+16585,67658
+16586,28949
+16587,52980,51922,39565
+16588,71460,40570,6143,2202
+16589,71385,64558,72517,22625
+16590,52635,28809,72883
+16591,62553,58544,48403
+16592,41653
+16593,68944,80227,27163,21269
+16594,37993
+16595,16229,49643,23745
+16596,77122,3461
+16597,67285,41720,29003,67936
+16598,65790
+16599,41813,4463
+16600,36199
+16601,11273
+16602,10108
+16603,14498
+16604,44548,41026,13571
+16605,21507,48488
+16606,57649,36453,47664
+16607,42818,21724,27614,81874
+16608,45663
+16609,69779,32703,46301,55739,48715,36855
+16610,61519,32103,29694,5739,69252,30810,4506
+16611,45093,7090
+16612,65818,19908,56022,11343
+16613,44634
+16614,38189,48919
+16615,45029,45755,49845
+16616,77791,16936
+16617,18835,69029
+16618,14721,69595,15425
+16619,47156
+16620,47949,78691
+16621,11724,24244,14813,76702
+16622,57278,39504
+16623,25678,4624,45431,7419,48763
+16624,47732,5238,80545,42694
+16625,9099,42212,385,47683,68426,25349
+16626,2216
+16627,60327,27084
+16628,8944
+16629,81297
+16630,39242,4362
+16631,59963,9114,27545,50814,69394
+16632,58013
+16633,63348,71783
+16634,2862,33830
+16635,55339,8481,20933
+16636,34228,78899,7027
+16637,41241
+16638,53995,22205,44801,73804,59078,25571,27217
+16639,40756,3104
+16640,10872,20628,13994,72407,25139
+16641,66538
+16642,63383,44172,63620
+16643,4386,8360
+16644,23240,71975,1931,34999,8205
+16645,15510,58255
+16646,77538
+16647,56904,16572,45464,73512,31914
+16648,183
+16649,78018
+16650,58949,46355,17186,38059
+16651,25835,47002
+16652,35634
+16653,8509
+16654,46787,69164
+16655,31234,2606,42687,55808
+16656,16126,34781,44143
+16657,3572,54563
+16658,75150
+16659,24194,45851
+16660,18275,43702
+16661,25358,49470
+16662,43837,52834
+16663,36277
+16664,19652,52889
+16665,76635
+16666,52377,29242
+16667,41828,3210
+16668,57769,67625,75810,18935
+16669,46543,44583,40168,71698,29315
+16670,26446,66292,26352,36663
+16671,22336,69055,38270,77899,52111,18329,39395
+16672,74191
+16673,75401
+16674,34516
+16675,45271,45550
+16676,41422
+16677,34505,21123
+16678,19217,18883
+16679,35452,52640
+16680,72667,13139,36917
+16681,38331
+16682,44495,21955
+16683,64234
+16684,46174,17164
+16685,59283
+16686,77868,61753,17945
+16687,35503,17503,59772
+16688,23365,64822,31823
+16689,67621,20347,23751
+16690,70488
+16691,7938,64038,16993,48929
+16692,60157,58844,11945
+16693,59341,41852
+16694,73647,55483,50353
+16695,4001,76262,27197,58259
+16696,50105,718
+16697,22599,75088,706,47272,17279,73187,15449,56676,46083
+16698,14721,53533
+16699,74559,56480
+16700,22980,71906,61076,613
+16701,45963,79462
+16702,19993
+16703,66471
+16704,66348,43024,10895
+16705,46803,37074,21083,33974,3229
+16706,57373,17987
+16707,8536,16356,80641
+16708,482,61693
+16709,74261,37170,22455,23870
+16710,1111,59092
+16711,78076
+16712,22277
+16713,5203
+16714,4572,29898,20311,38635,7675
+16715,52284,13070,3672
+16716,14953,80961,63569,20718,79356
+16717,45923,72601,14676,76552
+16718,75036,9404,37516,41741
+16719,76440,59541
+16720,25552,70483
+16721,56957,46283
+16722,46522,31404,34353
+16723,65347,16342,32049,19616
+16724,32483
+16725,33786,59438
+16726,12376,79992,55278
+16727,31797,32595,6661,65084
+16728,74619
+16729,13274,48006,47057
+16730,43579,14487
+16731,20288,40605,65093,53656
+16732,20972,10639
+16733,65451,49654
+16734,44416,26427
+16735,15674,4219,76552,40442
+16736,1988,64965,13784
+16737,74369
+16738,13760,12425,50914
+16739,53049,77823,74252,44004
+16740,61552,20699,25257,51219,59298
+16741,17094
+16742,54519
+16743,33701,70453
+16744,1121
+16745,34631,55153,26030,1824,53049,41373
+16746,11499,7820,74294
+16747,14474
+16748,32946,50671,52998
+16749,35320
+16750,43304,75366
+16751,7986
+16752,14678,45982,24855
+16753,57987,27409,63226
+16754,56839,606
+16755,24880,60815
+16756,42931
+16757,4035
+16758,80485
+16759,48287
+16760,58011
+16761,30194
+16762,53393,45003
+16763,70835,76745
+16764,10684
+16765,51657
+16766,75857,11464,69814,76153
+16767,43528,75339,17476,33005
+16768,68137
+16769,27649,9720
+16770,3957,72271,2977,1312
+16771,45013
+16772,36929,25049,57992,81801,13175
+16773,80498,41948,55756
+16774,52798
+16775,47270,32399,26336
+16776,65352,29865
+16777,64420,17802
+16778,46841
+16779,25251,17922,5375
+16780,66761,47530,4742
+16781,63326,51700
+16782,28315
+16783,51348,80304
+16784,12093,24583
+16785,51736,32204
+16786,14593,65601,36374
+16787,20372,37795,36687
+16788,35912,40807,67428
+16789,67520,34999,79285
+16790,58306,63331
+16791,40995
+16792,56203
+16793,78470,58798,61282
+16794,3579,9262
+16795,1107,21503,45879
+16796,44684,58261,66836
+16797,9742,64313
+16798,30139,47945
+16799,78789,60029,16612
+16800,42972
+16801,19759,59631,21129
+16802,13819,65949,65832
+16803,78010,31922,63850
+16804,55733,50193,23567
+16805,41543,24366,19921
+16806,22519
+16807,32637
+16808,80756,71159
+16809,30864,35400,27519
+16810,53432
+16811,36192,23006,34540
+16812,35014
+16813,72328
+16814,38294
+16815,9376
+16816,77069,73524,68290
+16817,40460,9142,17906,35408
+16818,32689,42436,8208
+16819,17736
+16820,60081
+16821,64475
+16822,51286,78051
+16823,25942
+16824,66247,56362
+16825,33449,70685,4279
+16826,55860,27796
+16827,1117
+16828,39446,38285
+16829,1516,60111,35567
+16830,819
+16831,60282
+16832,44247,69476
+16833,71815,41940,53217
+16834,276,9490
+16835,27985
+16836,45350,2408,60398
+16837,76866,46953,17211,24845,14757
+16838,67358
+16839,15832
+16840,23594,52973
+16841,62681
+16842,81592
+16843,7660
+16844,69530
+16845,45814,38229,31949,30459
+16846,927,76947
+16847,56116
+16848,48901,70994,68818,48745
+16849,963,15051,47979
+16850,45879,49733,67047,39946,29447
+16851,6695,59276,7923,7109,17384
+16852,60386,64055,52676
+16853,8191,17594,26613,67068
+16854,45990,28704,40998,61524
+16855,15252,15413
+16856,9621,55102,66962,72613
+16857,69830,1471
+16858,22451
+16859,72973
+16860,10145,50996,31921,48446,53125,29543
+16861,55937,62130,39097,69064
+16862,81422
+16863,18755,63018
+16864,51937
+16865,50865,63080,15934,66333
+16866,7938
+16867,45168,26935,18002
+16868,14274,64673
+16869,42476,3457,77674
+16870,45168,47658,48659,29412,32473
+16871,20556,32330
+16872,47825
+16873,49205,65095,26539,32352
+16874,40043,52801,62724
+16875,69352,35514,7578,37771,26995,65566
+16876,78038
+16877,80615
+16878,40671
+16879,45795,52663,62196,67551
+16880,28362,3611
+16881,55146,53482,70580,19573
+16882,7825
+16883,63515
+16884,24808,79267,9820,26838,37070,54587,57479
+16885,3959
+16886,80489
+16887,36429
+16888,74697
+16889,58520,58320,19527
+16890,14273,72529,32590,51529,70362
+16891,63541
+16892,14057,48352,49855
+16893,28644,6279,80002
+16894,16492
+16895,5505,52468,53881
+16896,36495,48580,63486
+16897,45148,51522
+16898,78960,56151,21143,56397,31308
+16899,37409,22852,35119,15929
+16900,18929,20921
+16901,59894
+16902,53318,53831,70206,57809
+16903,64916,68960,76039
+16904,12483,5974,54177
+16905,2705,7065,25451,1188,75568,21152
+16906,20390,75758,63736
+16907,60594,77980,26388,45463
+16908,1531,63066
+16909,3987
+16910,29064,46097
+16911,5038
+16912,69032,24252,75853
+16913,7157,12584,49703
+16914,56335
+16915,23721
+16916,15878,226
+16917,43416
+16918,74714
+16919,36635
+16920,52661,7026,60447
+16921,42621,27967
+16922,24559
+16923,37729,42036,41287
+16924,56981,26764,31569
+16925,71212,16584
+16926,10749
+16927,32204
+16928,18753,17058
+16929,50256
+16930,60242
+16931,3896,16026
+16932,5679,14425
+16933,30956,74087,21214
+16934,28293,20675,53255
+16935,34430,31397
+16936,16632,51379
+16937,57239
+16938,38223,21634
+16939,70849,58405
+16940,71141
+16941,17527,58073,69273
+16942,54761,13922
+16943,36379,14567
+16944,61611,42816,30678
+16945,41992
+16946,20415,16105,52314,14608
+16947,66009,24438
+16948,71050,66784
+16949,24185,24225,18942
+16950,20170,33743
+16951,59341,4290,61260
+16952,45805,13939,30439,67459,54137,8443
+16953,81560,22040,32263
+16954,24845
+16955,58183,62996,19290,23513
+16956,62071,53696,4633
+16957,53133
+16958,29964,50640,67327
+16959,6995
+16960,65308,5702,28274
+16961,40670,39407
+16962,80775,60929,17317,77844,18844,2499
+16963,80132,71557,59465
+16964,79856
+16965,77820,36038,78123,59642,39775
+16966,32129,17715,19442,61310
+16967,74435
+16968,27747,10237
+16969,2682,50357
+16970,39286,10721,7939
+16971,26510
+16972,66193,43377
+16973,20776
+16974,44737
+16975,35681,70779,401
+16976,41279
+16977,61191,33720,41537,40881,54359,27767
+16978,51171
+16979,12386,12755,19539,9096,2974
+16980,26168,22825
+16981,74488
+16982,39368,49131,38285
+16983,42329,43313,69261
+16984,48061
+16985,68580,19108
+16986,4860,47807,70466,26233
+16987,6260,20411,41316
+16988,21706,43953,3290,17202
+16989,64152
+16990,37292,20590
+16991,81410,35321
+16992,27770,11796
+16993,2241,45897
+16994,53961,29978
+16995,56544,31240,73562,67499
+16996,72728,34815
+16997,80621,5491,75720,18191
+16998,30703
+16999,65808,12123
+17000,73865,3181
+17001,30352,75829,37548
+17002,63538,36448
+17003,75984,50058
+17004,66551,20241
+17005,4856,38844
+17006,21137,16794,51216,75933,13885
+17007,61894
+17008,59846,55248,12161,57390,24883,23053
+17009,20785
+17010,44228,62941
+17011,52831,22497,2992,18,13414
+17012,61008,68159
+17013,27131,3095,1233,32176
+17014,32828
+17015,29028,25154,36723,34455
+17016,45514,57460
+17017,22046,48554,8761,5358
+17018,73889
+17019,75019,45485
+17020,5859,71062
+17021,8764
+17022,45442,21584,22114,34086
+17023,71507
+17024,24726
+17025,77357,55819,23253,14929,68920
+17026,24301,59094,19249
+17027,39040,50357,9224
+17028,79458
+17029,79780,80348,52710,56174,15971,81220,68377,70178
+17030,34196,78686,66285,73538
+17031,61403
+17032,29532,21588
+17033,30447,75331,64909,17209
+17034,29721,40986,9096
+17035,36367,5442
+17036,60359
+17037,39923
+17038,35497,19000,66448,46682
+17039,19324,43187
+17040,49542
+17041,81251,352,33590
+17042,24804,56071,47104
+17043,12350,14194
+17044,80858,22825
+17045,41853,17564,5625,50343
+17046,80753,27520
+17047,56530,24460,12028,36303
+17048,5092
+17049,43743
+17050,27280,5485,18893
+17051,74414
+17052,46866
+17053,7790,1523,41773,10421,3459,54631
+17054,17999,30746,30933
+17055,62501,23293,50708
+17056,44803,73151
+17057,35160,41912,12884
+17058,61765
+17059,51567,47310,34496
+17060,49337,186
+17061,12781,15709,39496
+17062,74658
+17063,30683
+17064,878
+17065,32044,67894,77293,34564
+17066,41361,61018
+17067,4599
+17068,52572,23764
+17069,54756,44503
+17070,51235
+17071,20794
+17072,80224,6925
+17073,21700
+17074,69334,41851
+17075,44151
+17076,1364,43263
+17077,52996
+17078,13136,13908,34666,36662
+17079,69679
+17080,11059
+17081,49582,35775,27262,52569
+17082,33483,74858,81359,47413,67954
+17083,42177,12559
+17084,54994,62985,63342
+17085,28893,12830
+17086,10713,18339,54465,65600
+17087,4241,6320
+17088,38488,21887
+17089,8972
+17090,56727
+17091,27035,72363,19801,68828,70816
+17092,13403
+17093,2925
+17094,7963
+17095,53283,59189,14503
+17096,26670
+17097,34502
+17098,60906,3637,7826
+17099,63477,5307,13743
+17100,59318,70928
+17101,15373,63787
+17102,20677,67231,10073,36917
+17103,20070,79562
+17104,33539,3928,66672,66856
+17105,63618,67585,14530
+17106,21442,46879
+17107,10501,10344
+17108,51058
+17109,8796,14208,72156,74857
+17110,71275,48357
+17111,72341
+17112,31920
+17113,43724
+17114,61921
+17115,73097,21977
+17116,14095,478
+17117,69261,4067
+17118,15612,72162,106,29815
+17119,48714,39116,26674,27246
+17120,45996,58617,18528
+17121,1334,16729,78062
+17122,64661
+17123,35711,28992,44446,47902
+17124,52448,73244,77774,79518,54070
+17125,34500
+17126,6222,21428
+17127,59402,253,51374
+17128,39079,24101
+17129,24658,31942,5607
+17130,77211
+17131,33810
+17132,69374,63451
+17133,47967,77268
+17134,42158,21273,18360,31524
+17135,66149
+17136,25348,32431
+17137,4341,34575,15705,30730,29048
+17138,31126,779
+17139,28459,44521
+17140,39263
+17141,19201,77681,32307,4122
+17142,12360,52513,36908
+17143,45309,24621
+17144,67742,4617
+17145,80393,56740,31334,4116,35756,16182
+17146,58625,23585
+17147,34148,36992
+17148,49165
+17149,61747,39020,51711
+17150,2553,29212,81870
+17151,1863,20955,69290,34861
+17152,54634,70058,19136,69375
+17153,9081
+17154,28263,73479,71287
+17155,52143
+17156,79883,60869,11704,80586,71006
+17157,74276,47081,10796,49597,10782
+17158,77044,20657
+17159,65988,55581,7042,54706
+17160,43617
+17161,30200
+17162,38532,76954,72293,9647
+17163,6426
+17164,69198
+17165,6876,37149
+17166,73852,19247,80477,49922,35725,46616,30089
+17167,18922,71982,49110
+17168,33566
+17169,76698,46591
+17170,82075
+17171,43408,43440
+17172,80147,10079
+17173,23411
+17174,75620,38659,51331,66506
+17175,21888,30774
+17176,6616,15488
+17177,26722,15274
+17178,20805,40196,72926,61085
+17179,22433
+17180,54332
+17181,47101,79874
+17182,40240,27573,74524,74143
+17183,46389,56381,54486,6589
+17184,29330,75048
+17185,7452,63185
+17186,81816
+17187,37760,5585,38474,40736,53086
+17188,47918,45131,14258,42583,15567,68096
+17189,71028,74266
+17190,46097,60528,55308,65534,70897,73113
+17191,71497,41352
+17192,11398,15138
+17193,59418,22525
+17194,71774,33470
+17195,40582,70300
+17196,57911
+17197,79245
+17198,46756,3116
+17199,42186
+17200,35655,69541
+17201,53208
+17202,68649,8009,72275
+17203,45410
+17204,50073
+17205,41511,37153,49017,36546,47830,61400,4427
+17206,65881,11068,70738
+17207,2355,37676,45520,74878,36008,66169
+17208,47986,78748,60993
+17209,44110,57265
+17210,51810
+17211,37690,31789
+17212,11312,34712
+17213,6013,58685,21467
+17214,78240
+17215,20007,49457
+17216,14402,11748,5960
+17217,27439,1889,10340
+17218,80552,54604
+17219,6856,34928,4242,67807
+17220,8906,79613,34097,45505
+17221,39365
+17222,36849,40226
+17223,31442
+17224,50645,71709,39718,74467
+17225,19128,4802,25704,75632,68490
+17226,13857,71636
+17227,20323,59763,60858
+17228,72557,71019,15583,7057
+17229,23932,58958,77927
+17230,10174
+17231,35969
+17232,60043
+17233,7053,27564,29554
+17234,17163
+17235,25387
+17236,64373,6429,16894,16516
+17237,40735
+17238,35520,52801,11366,46669
+17239,23788
+17240,23299,32276,45744,22228,58763,53314
+17241,39660,50591,59914
+17242,22504,27988,16643,24731,4525,61429
+17243,59597
+17244,3955
+17245,54568
+17246,72223,68950,980
+17247,9983
+17248,51704,51184,32325
+17249,72330,35062,51691,6233,49795
+17250,11322
+17251,20848,26171,5316,12939
+17252,4573,6476,81324,24054
+17253,30015,57648
+17254,122,60998,16641,37212,65792,42031
+17255,70005,50449
+17256,5757,40103,56648,1858
+17257,78763,56772,49624
+17258,20163,3285
+17259,36519,37355
+17260,81180,10567
+17261,32755,9910
+17262,41509,15601
+17263,26953
+17264,51011
+17265,73377,14050
+17266,56503
+17267,58779
+17268,60475,41373,47317
+17269,73606,67810,47937,51420
+17270,49563,53041
+17271,54069,2177,38973,76897,11247
+17272,40423,56395,62632,44523,80488
+17273,7189,59263
+17274,42906
+17275,31623,77826
+17276,32545
+17277,69220,5816,51622
+17278,17710
+17279,24951,82155,25138
+17280,78693,37873
+17281,77483,15275,24839
+17282,33815,50494,17593,19105,4041
+17283,16383,8859
+17284,50942,15769,18992
+17285,42538,62073,6305,59889,38729,57347
+17286,1641,6131,35338,42887,3805
+17287,68377,46724
+17288,15845,14281
+17289,62828,2430,4629
+17290,29801
+17291,68074,80475
+17292,77066
+17293,3251,42233,52562,17394
+17294,55906
+17295,80526
+17296,33246
+17297,78241,57592
+17298,64799
+17299,57042,57427,55082
+17300,41367
+17301,14346
+17302,59144,58950
+17303,48127,29146
+17304,27103
+17305,45558,51250,28223
+17306,53953,46926,48340,62120
+17307,5144
+17308,78870
+17309,178,44804
+17310,31611,77614,22202,81542,51250
+17311,57160
+17312,30088,61328,19345
+17313,980,70402
+17314,14499,44476,45461,19127
+17315,66385,68566
+17316,46274,54590,7784
+17317,15373
+17318,72343,33521
+17319,48066
+17320,9430,27897
+17321,60366,38544,1504,41591,24243
+17322,22668,56260
+17323,2234,6232,36617,39914,14402,23780,597
+17324,19883,66994
+17325,32307
+17326,42935,34136
+17327,6046,55502,61517,49488
+17328,64334,79863,36474
+17329,73982
+17330,22138,6121
+17331,67928,37091,10890
+17332,30425
+17333,30904,46995
+17334,13041,59594,58491
+17335,76394,5053
+17336,63126
+17337,38091,5491
+17338,52811,79289,5875,4055
+17339,21594,58517,22321,32533
+17340,30952,33732
+17341,36589
+17342,29924,25557
+17343,35273,16292
+17344,16707,40287
+17345,42453
+17346,35107
+17347,25928
+17348,53884,35338
+17349,17712,56821,13250
+17350,25329,26002,13087,41966,62533
+17351,62350,27474
+17352,50182,78833
+17353,56530,51047,2586,20394
+17354,24960
+17355,60748,36005,41790
+17356,3680,54017,20502
+17357,41889,56794
+17358,12187
+17359,38338,20608
+17360,47658
+17361,61765,60634
+17362,59682,67334
+17363,77091,20837
+17364,59414,59216
+17365,74467,46977
+17366,73194,23075,64923
+17367,63124,73124,20204
+17368,2538,53529,26746
+17369,28073
+17370,6970,34626,44606
+17371,78113,71797
+17372,18016
+17373,19497,39957
+17374,72776,67191,32528
+17375,37315,24233,41607
+17376,16820,30130,67444
+17377,13024,33014
+17378,69965,60035,11032,79410
+17379,9733,47675,40380
+17380,48049,35941
+17381,8426,60401,67274
+17382,34610,11809,20107,34167,28466,78469
+17383,32652,19799
+17384,69903,20806,76483,4377,1599
+17385,69993,16831
+17386,34971,40928,81357
+17387,67957,44654
+17388,78823
+17389,69896
+17390,60788,41858
+17391,53045
+17392,51166,4394,19774,73473
+17393,34883
+17394,75933
+17395,46024
+17396,9579
+17397,68269
+17398,47430,66110,31675,78015
+17399,12274,37612
+17400,53541
+17401,57356,67300
+17402,11196,22381,46169,36281,15117
+17403,59326,73365,17829
+17404,43274,56823,19226
+17405,44727,36583,79332,34424,69767
+17406,71149,39407,23444
+17407,66500,23634
+17408,48980
+17409,72524,28
+17410,72338,31554
+17411,15090
+17412,57848
+17413,48595,16800
+17414,8465,49496
+17415,35821,35440
+17416,19828,29851,7962,51128
+17417,14769
+17418,24366
+17419,37380
+17420,35683
+17421,33383
+17422,55534,69057
+17423,9278,6916,5211,54158
+17424,6322,61961,24089
+17425,26468
+17426,67327
+17427,34917,72574,75945,35473,49155
+17428,72494,79817,38409
+17429,63516,14380,40084,73842,23591
+17430,30551,11350,19957
+17431,30126,55093,30622
+17432,59133
+17433,70749,55041,71345,71373,4666
+17434,54483
+17435,66972
+17436,76047,60987
+17437,48635,15059,81298
+17438,3537,12360,29507,37513
+17439,30983
+17440,50054,58430
+17441,73741,37923
+17442,32986,55589,3643,68574
+17443,50628
+17444,78747,37307,8491
+17445,40596,39717
+17446,23599,36019,77477
+17447,9215,4160,74476,51376
+17448,21075,38311
+17449,70053,25881,40249,3641,11871
+17450,46878,59984,7873,61441
+17451,299,31930,36198,42208
+17452,45060
+17453,28732,31412,30187,63833,23561,25573
+17454,54756
+17455,80194,71350
+17456,2297,59360,76922
+17457,63055,18858
+17458,69278
+17459,79124,25340,16043
+17460,10259,27686,22954,75557,39950,21618
+17461,78545
+17462,52365
+17463,62294,69865
+17464,80349,30471,48634
+17465,34168,32329,66675
+17466,74422
+17467,15504,42528,47503
+17468,75192
+17469,56382,38656
+17470,12769,76748
+17471,72460
+17472,69011,16491,48853,35925
+17473,31825
+17474,29244,68853,23383
+17475,29985,53195,4379
+17476,64954
+17477,53023,34542,61738,11615
+17478,55422,17643
+17479,37842,20229,54421
+17480,21488
+17481,78205
+17482,537,57354
+17483,52469,24738,66190
+17484,912,5638,9511,17627,68470
+17485,68903
+17486,33811,5516,13372,31855
+17487,61139,45661
+17488,68078
+17489,51096,56260
+17490,75820,10242
+17491,70072
+17492,11852,1512,59278
+17493,6831
+17494,53954
+17495,11693,33558,10427
+17496,71346,59636
+17497,77601,8771,47564,13107
+17498,47756,26262,25920
+17499,38043,56802
+17500,72956,65660,63467,6106
+17501,71668,52423
+17502,71919
+17503,20400
+17504,19471,4613,34333,57425,1152,37370,78314,48570
+17505,29875
+17506,74302,16394,12910,22497,11414
+17507,19881
+17508,39839
+17509,6228,39541
+17510,31072,45365
+17511,54931
+17512,57109
+17513,45015,36352
+17514,51271,48875
+17515,51003
+17516,17759
+17517,52612
+17518,52312,9146,53692,71822,76826,52984
+17519,63889,52015,34909,78514,11499
+17520,52663
+17521,29687,77380
+17522,72893,10457
+17523,8423
+17524,21882,55218,20423,78817,18173
+17525,8958
+17526,14065
+17527,45520,42430,15416
+17528,45551
+17529,22413,65281
+17530,23238
+17531,9284
+17532,34638,6828,19831
+17533,32338
+17534,26070,70579
+17535,79913,39041,53824
+17536,34545,25637,33796,67946,67491
+17537,69653
+17538,16034
+17539,9585,14034,16386
+17540,41389
+17541,25087
+17542,9968,75076
+17543,53682,17028
+17544,31459,77831,76159
+17545,73510,49173,45549,52595,57572
+17546,74609
+17547,11129,71964
+17548,55627,28940,78419
+17549,42731,65916,46308
+17550,58330
+17551,32596,74262,23951
+17552,46603,77902,76741
+17553,4636
+17554,28138,7145,71919
+17555,75972,68014
+17556,41592,4773
+17557,70023,38558,37656
+17558,50259,38484
+17559,29152,32554,7023,68636
+17560,74173,72448,81995,632,32225,21968,3005,307
+17561,10895,36531
+17562,57661
+17563,3696,4204,77148
+17564,49197,5914,48640,45656
+17565,1094,26728,13552,20114
+17566,55882,67943
+17567,9370,13874,43508
+17568,32701,4521,37072,24912,69677
+17569,63717,50982
+17570,50913,58279,63246,36514
+17571,69204,4896,79451
+17572,58013,6073
+17573,69623
+17574,4895,16373
+17575,71564,42314
+17576,61051
+17577,13165
+17578,60344,64671,27084
+17579,15495,46102
+17580,31385,70100,730,51059
+17581,80400,47991,59940,38374
+17582,56992,74764,67581
+17583,40563
+17584,21478,1312
+17585,61947
+17586,43201
+17587,43840
+17588,36864,66680,75441
+17589,24852,43638
+17590,72335,41608,33392
+17591,25586
+17592,60302,31709,51179
+17593,9302,29218,74151
+17594,70497
+17595,71487,46841
+17596,6371
+17597,11000
+17598,43983
+17599,38439
+17600,26325
+17601,11123,60401,48132,55057,51359,23416,56887,16211,13584
+17602,34500,80413
+17603,44033
+17604,67802
+17605,39080,10874
+17606,23078,27251
+17607,22645
+17608,75809
+17609,23938
+17610,21450,69436,51529,66868,51032
+17611,26095,53065
+17612,17009
+17613,76503,9764
+17614,36454
+17615,70592,25754,49230
+17616,66132
+17617,42005
+17618,10972,3552
+17619,22065,67553,980,79641
+17620,31472,45781
+17621,3797,43992,48360,41566
+17622,22322,46218
+17623,33539,63425
+17624,64365,64866
+17625,80429,17122
+17626,57141
+17627,45271,269,25308,74738
+17628,43876
+17629,20264,16442
+17630,5566,6346,45374
+17631,19283,17163,48226,4210,72606
+17632,72203
+17633,37989,54308,56901,18378
+17634,51673
+17635,1729,1266,48576,10926,81155
+17636,72274
+17637,32913,49859,11339
+17638,31275
+17639,17814,29642,26747
+17640,59521,52224,35736
+17641,12336
+17642,64703,79411,27983,26834,76978
+17643,52567,42197
+17644,2374,23983,10804
+17645,70564
+17646,30849,73570,21229
+17647,59158,47597,49217,61296
+17648,5689
+17649,22451
+17650,43284,42330
+17651,68570
+17652,80319,13124
+17653,81247,17417
+17654,33417,11715
+17655,47875,37383,60439,13746,19585
+17656,36078,43887,49076,81809,29175
+17657,6234,61494,23124,21693,2862,63994,46888
+17658,42741,52528
+17659,28916
+17660,27106,34837
+17661,27611,23495,19146,48721
+17662,43299,32436
+17663,42161,7011
+17664,36182,34663,57144
+17665,42562
+17666,29973
+17667,65818,37266,76072,19441,23361,70023,80309
+17668,51990,10635
+17669,28539
+17670,22972
+17671,19329,78880,78900,82000
+17672,7200,2682,20231
+17673,72098,68849
+17674,27019,2786,35537,27279
+17675,79472,58734
+17676,34267,71661
+17677,16416
+17678,56772,70228,49541
+17679,63293
+17680,55822,3444,52527,10122,60079
+17681,74797,22933
+17682,7986
+17683,21497,4901
+17684,29218
+17685,4941,18492,17412
+17686,6110,563,69194,24153
+17687,47698,35082
+17688,55441,68080,27668,44857,37155
+17689,66132
+17690,30617,54587,46836
+17691,4478,57791
+17692,70654
+17693,14090,22760,55346
+17694,15704
+17695,1028
+17696,52810
+17697,53384,33584
+17698,57508
+17699,50720
+17700,60690,55304
+17701,26046,42325,28379,36885,21598,70398
+17702,27329,76334
+17703,70801,31910,2736
+17704,57911,52519
+17705,60670,52044
+17706,78803,76843,45102
+17707,28265,4694,57689
+17708,51528
+17709,40268
+17710,68911
+17711,65456,70639
+17712,71953,24989,74061
+17713,64545
+17714,26981
+17715,2700,81454,17788,9956,61425
+17716,39829
+17717,47310,40388,36379,34566
+17718,27331
+17719,44051,67686,17380,58201
+17720,79653,22026,69228,6663,44184,32793,40668,12454
+17721,51323,61512,53295,20890
+17722,50708,74755,24250
+17723,78360,80568
+17724,81629
+17725,33510
+17726,38409,67175
+17727,17288
+17728,22455,70827
+17729,70397
+17730,26939,60738,29583,68358,24884
+17731,18459
+17732,7263,36945
+17733,59599,10319
+17734,27674
+17735,27372
+17736,27356
+17737,62490,37861
+17738,62043,40373,19606,51186
+17739,36918,18298,56455
+17740,29269
+17741,46999,25888
+17742,44066,77904
+17743,35563
+17744,56669
+17745,81101,37147
+17746,7577
+17747,53974,58416,34247
+17748,40761,30429
+17749,30241
+17750,3235,10533,68724
+17751,50741,35406
+17752,22432
+17753,25505,22593
+17754,54112,17729
+17755,15163,5040,80426,48745,1532
+17756,54756
+17757,12390
+17758,22332,2393,53948
+17759,15762
+17760,50127
+17761,80542,36992,22299,4337
+17762,72997,48277,48023,36928
+17763,79597,9467,54159
+17764,73150,75151
+17765,74260,78846,25457
+17766,12416,38093
+17767,65879
+17768,18101,70499
+17769,2774
+17770,47798,30336
+17771,56783
+17772,20499
+17773,63893,19850
+17774,53330,25375
+17775,50048
+17776,54863,80424
+17777,38271,38014,12532,50993
+17778,20944
+17779,59866,50258
+17780,64339,23924,29007,24767,42670
+17781,60123,63010,59413,42078
+17782,60319,11851,80589,70115,26175
+17783,70950,67241,77253,58076
+17784,52772,47743
+17785,14897,25352
+17786,45547
+17787,80492,25688
+17788,18756
+17789,55819,20904
+17790,14693,7682
+17791,43165
+17792,51587,16471,9646
+17793,68887,21949,14274
+17794,58749
+17795,77611,2992
+17796,30505
+17797,39908,58878
+17798,41887,6402
+17799,54124
+17800,77854,74041
+17801,73991
+17802,3865
+17803,76573,27256
+17804,12951,58590
+17805,43470,42925,13636
+17806,21236
+17807,49872
+17808,34238,8204,42098,27205,52662
+17809,55883
+17810,41300
+17811,50115
+17812,638,5264
+17813,46400
+17814,68273
+17815,61430
+17816,2250,66217
+17817,25702
+17818,54951,37978,16396,24272
+17819,66075,10803,18482,61411
+17820,23870,1178,69344,44949
+17821,22020,18441
+17822,39006,53282,20892
+17823,79860,17761,46435,7091
+17824,56067
+17825,73998
+17826,2624,33509,12430
+17827,10232,45224,71859,69878,26935
+17828,32766
+17829,72384,12297,10053,46422
+17830,75358,50573
+17831,72312,52191
+17832,59177
+17833,80001,40133,81723
+17834,11601,3845,18612,68258,51565,12887,53743,81958,9129,42912
+17835,77161,44204
+17836,7803
+17837,48792,36849,19243
+17838,22073,40247
+17839,24755,72114,2098,55958
+17840,55129
+17841,55712
+17842,64358
+17843,22812,37124
+17844,44119
+17845,30643,19728,48155,3433
+17846,66599,31563
+17847,68062
+17848,49457,8624
+17849,5900,18341
+17850,37097,13516
+17851,25259,48527,22184
+17852,17806,56425
+17853,39376,45807
+17854,37268,25447
+17855,33309,79060
+17856,71459,20827
+17857,6779,75252,44765
+17858,32477,5380
+17859,70267,36918,48670,62095
+17860,36943,8528,33743,55550
+17861,12887
+17862,4544,3519
+17863,18791,28704,32139,9742,44521
+17864,28113,74503
+17865,67410,22743,39920
+17866,30482,30164
+17867,42609,38422,34938,32204,77976
+17868,4423,59814,6713,81000
+17869,76354,28237
+17870,3274,31836
+17871,60455
+17872,73938,76566
+17873,34400
+17874,37959
+17875,1774,23899
+17876,2021,8157,45374,1584
+17877,74252
+17878,40524,78396
+17879,63449,65668,28228
+17880,11441,39394
+17881,30205
+17882,73618,66486,4284
+17883,65329,57227
+17884,45583,53387
+17885,7218
+17886,79725,28655
+17887,76247,61767
+17888,25693,30682
+17889,67627,58875,57830
+17890,25465,49341,32949
+17891,46222,72688,21188
+17892,73212
+17893,80980,13006
+17894,5865,32005
+17895,33566,36318,77576,15551
+17896,21216
+17897,62819
+17898,50308,80163
+17899,36511,37286
+17900,29892
+17901,30502,58638,78715
+17902,25739
+17903,58356,58013
+17904,42059,3657,23207
+17905,73672
+17906,48242,54436,70622,46750,16811
+17907,45784
+17908,48312,64387
+17909,39562,28580
+17910,37252,67198
+17911,24660,3449
+17912,78386,62095
+17913,77211
+17914,6866,63868
+17915,4644,67711,67529,35934
+17916,9267
+17917,48170
+17918,77255,23309
+17919,81713,34548,8605,37595,63994
+17920,56732,16849
+17921,60766
+17922,59392,66104
+17923,42067,23006,1224
+17924,20425,77980
+17925,18886,41591
+17926,31236,70528,68029,56800,62776
+17927,26484
+17928,19687,62222
+17929,36666,75170
+17930,67947,62376,72827
+17931,60706
+17932,82183,8047
+17933,3329,32949,81796,72618,58964,56662
+17934,40919,74889
+17935,8006,4191
+17936,47504,17594
+17937,47379,70151,49604
+17938,20491
+17939,81420
+17940,78629,12708
+17941,65622,79574
+17942,10286,36349,54519
+17943,28330
+17944,25378,79968,73233
+17945,662,53896,26245,32923
+17946,29352,26155
+17947,23093,8979,3194,74301,80727,36869
+17948,22196,33275,26412,34759
+17949,50512
+17950,17775
+17951,70592
+17952,24200,45917,56498,42539,67734
+17953,46069,39127,39612
+17954,71086,81743,40992,36538,31632,11691
+17955,69859,42432,65862
+17956,29851,47477,50902,75451
+17957,56711,61700,46628,80836
+17958,75526,37094
+17959,13182,79484,69616
+17960,24626,19750
+17961,74271
+17962,59902
+17963,31693
+17964,77493
+17965,28016,78348,71872,61240,72506
+17966,50256,30558
+17967,31509
+17968,58980,32563,21029,57605,3192,65699
+17969,48988,22276,51258
+17970,42968
+17971,8010,66678,13928,56904
+17972,38308,72407
+17973,53149,75133
+17974,28607,81249,18372
+17975,46400,33675
+17976,77959,63586
+17977,15129,67692,26258,31035,713
+17978,19825,11403
+17979,75211,50090,38115,57239,5851,32002,80203
+17980,42050,13351
+17981,56380
+17982,26102,61210,32827
+17983,7938
+17984,39180,18005,14318
+17985,68055,57730,80944
+17986,44392,10017,12512
+17987,27356
+17988,39575,17486
+17989,68195,61653,75915
+17990,31232
+17991,51469
+17992,19398,77239
+17993,48295,51426,53530,39471
+17994,68062,65349,10604
+17995,31386,68853,73159,27004
+17996,7648
+17997,56302,70411
+17998,64710,43743,29359
+17999,62410
+18000,32494,249
+18001,55883,32883,31798
+18002,24417,27249
+18003,21020,60272,52579,17891
+18004,35854,18139
+18005,9985,47716,53560
+18006,68372
+18007,81398,74679,2252
+18008,33880,18778
+18009,51931
+18010,57353,27136,23346,27480,7696,65712
+18011,12416,37337
+18012,69231
+18013,34198,68227,74826,14276,24024,48006
+18014,5967,73131,15552
+18015,27483
+18016,18368
+18017,72059,59517
+18018,6233
+18019,10302,40301
+18020,18336
+18021,46158,13973,42383,7694
+18022,74708,52845
+18023,48855,39882,4737
+18024,837,73200,36783,24002,49768
+18025,52331,35331
+18026,34746,46183,60703,71536
+18027,16961,57042,47657
+18028,12990,19299
+18029,41734
+18030,678
+18031,29800,24552,18454,35027,36496
+18032,15789,80643,4562,81564,70638
+18033,70441,27759,64159,1206,37472
+18034,55542,18942,17148,59868
+18035,46068,39711,80663,53010
+18036,585
+18037,12882,48365,63622,30277
+18038,20805
+18039,14569,50729,16566
+18040,66134,26974,49993,78325
+18041,61768
+18042,13162,73105,31538
+18043,77757,19242
+18044,63404,51450,6348,24782,38146
+18045,22694
+18046,8883,36368,66872
+18047,52200,45163
+18048,56614
+18049,51107,17743,78121,59992
+18050,15723,47274,35555
+18051,70340,26272,18361
+18052,52758
+18053,23597,34248,1181,16452
+18054,41703,3785,41287,58077,12722
+18055,29895,7738,54058,4709,12001,17851
+18056,2400,61377,26943,35530,80233
+18057,19747
+18058,22653,74753,8306
+18059,3261,26264
+18060,21249
+18061,19406,61185
+18062,19670,48228,23032,30921
+18063,10642,63996
+18064,53567,74475,39587
+18065,30614,3468
+18066,68391,73922,34046,8891,15798,5876
+18067,53038
+18068,39280,59772,44328,69651
+18069,42922
+18070,10184
+18071,65115,53248,39738,69276,7404,63759,51383,8030
+18072,66501,65747
+18073,63625,26712
+18074,28710
+18075,41347
+18076,22909
+18077,14002,65817
+18078,44251,49838,33954,56634,67559
+18079,23643
+18080,3883
+18081,69538,37192
+18082,69154,8501,12872
+18083,10134,37322
+18084,78092,50496,689,2986,51912,9284
+18085,37417,71269
+18086,45631
+18087,24417,38709
+18088,73817,80508
+18089,77525,10187,12150
+18090,13558,30682,73294,70848
+18091,8773,33988
+18092,39341,13514
+18093,70668,7694
+18094,48788,35231,69181
+18095,62921,54986,20803,60941,37757,44687
+18096,42137,46501
+18097,74175,48458
+18098,21852,29609,10557,40790,33852
+18099,22758,50547,40729
+18100,28015,32822
+18101,40938,60823,31067
+18102,80287,49961,48064,46225
+18103,1223,63779,63968
+18104,28011
+18105,6225
+18106,14828,37947
+18107,81884
+18108,41524,32816,69974
+18109,33016,58425
+18110,64616,12567,60690
+18111,41187
+18112,9765,75590,36896
+18113,42353
+18114,77309,32569,72648,25724
+18115,57132,29211,59806
+18116,10788,16553
+18117,29448,32077,72364
+18118,35663,74956,41120,14296
+18119,34212,29320
+18120,12039
+18121,40033,56968
+18122,18019
+18123,17889,40445,45799,80628,63858
+18124,16113,5896,38167
+18125,50585,58286,81838,38821
+18126,75234,51464,74292
+18127,14997,59949
+18128,28259,26307,36846
+18129,67016,5962,78461
+18130,10481,63495,65684
+18131,20456,55277,62026,612,30712
+18132,54112,20324,20148
+18133,34942,79934,11075
+18134,14883,31559,43947,35996
+18135,68282,28423,30860,18683,16589
+18136,29422
+18137,76368
+18138,34737
+18139,27370
+18140,25157,56599,26331,3252
+18141,21080,26294,3510
+18142,81548,54736,157,59569,60434
+18143,11939,61893
+18144,48124,73045
+18145,77947,32149
+18146,70422,33487
+18147,58405,56315
+18148,18819,58249
+18149,45024
+18150,73812
+18151,80503,81534
+18152,42147
+18153,20076,30933,43662,12782
+18154,56239,70592
+18155,62977
+18156,82
+18157,19927,5692
+18158,33673,6687,40156,22033,74256,3598,72352
+18159,64179,63920
+18160,65244,24847
+18161,28753
+18162,48370,69597,24944
+18163,30078,43320
+18164,52902,27488
+18165,77600,38455
+18166,7202,46411
+18167,22199
+18168,58333,66141,33830
+18169,29837,36105
+18170,56187,66421
+18171,2658,8629,17928
+18172,35192,51839,1926,20244
+18173,25455,56344,22107,6314
+18174,27542,67178,18419
+18175,3514,69512
+18176,18181
+18177,6183
+18178,60494,18524
+18179,43267,13634
+18180,4464
+18181,28651
+18182,25456
+18183,66948
+18184,32053,75693
+18185,142,55324,11212,62893,20001
+18186,32363,40987
+18187,33574
+18188,31833,75450,22479,38864
+18189,37889,11982
+18190,49265
+18191,32928
+18192,41990,28840,734
+18193,79540
+18194,53491,22242
+18195,47366,34045,58485,34231,37684
+18196,53959,834,9273,50841,8449
+18197,53733
+18198,28643,34778,78132,78560
+18199,23725,52969,19613
+18200,62533,546,40849,16473,39559
+18201,3384
+18202,23870
+18203,15294
+18204,30765,3289
+18205,71633,22915
+18206,68629
+18207,33743,36554
+18208,63579
+18209,78606
+18210,50325,28211,77914,1175,348
+18211,37337,36472
+18212,5091,22554
+18213,73132,55963
+18214,1602,58833,60945
+18215,36674
+18216,75085,17999,81963
+18217,67307,76098,46510,14155
+18218,17454,17987
+18219,45164,30163,10536
+18220,9373,78624
+18221,4618,58899,54052
+18222,16447
+18223,82157,60218,79142
+18224,69874,28029,25985
+18225,51004,47851,44252,73273,29195
+18226,47224
+18227,71175,68378,73939
+18228,37039
+18229,2497,20717
+18230,40311,67600
+18231,73269,79868
+18232,17247,59027
+18233,39898,60712
+18234,35112,77785,32948,8895
+18235,74700,20107,27107,76424,79284
+18236,50464,77707,12526,78345,32098
+18237,67512
+18238,73505,54902,14879
+18239,60964,14333
+18240,19604,45895,35819,30152,26446
+18241,76963,23029,13568
+18242,32966,12307
+18243,16918,68278
+18244,41694,62597,11447,1075
+18245,70665
+18246,43507,19588,26748,51222,64975
+18247,54432,4157,3442,53977
+18248,5968,57815,76702
+18249,11094,49997,48904,18567
+18250,52675,852,53880
+18251,5398,67073,38309,18822,61073,11496,47478,35436
+18252,52768,28902,11823
+18253,74776
+18254,26605,72616
+18255,58249,56353,13194
+18256,69790,43520,18606,1590
+18257,64601
+18258,19259,2491,50864
+18259,77574
+18260,47293
+18261,51829,66737
+18262,27335,45176,73792,27091,71701,6626
+18263,31072
+18264,4436,19830
+18265,71951
+18266,1587,29830,51704,77242
+18267,16111,1996
+18268,43373,61037,47754,8578,11490
+18269,64581,79507
+18270,80140,38986,16003
+18271,8196,74512,22809,2831
+18272,77325
+18273,21512,10448,30322,57364
+18274,40840,40067,64212,68952,37951
+18275,40176
+18276,6913,49054,30161
+18277,28260
+18278,3107
+18279,17317
+18280,27915,22246,38148,30444,70581,32506
+18281,42142,8421,34247,49166
+18282,9570,53189,24583,27956
+18283,19618
+18284,67452
+18285,23411,47120
+18286,6442
+18287,61340,440,43114,15581,8736
+18288,45966,24212,51191,48927,44191
+18289,43579,59665
+18290,63097,36099
+18291,18579
+18292,3940
+18293,26257,64078
+18294,35689,28352
+18295,66137,44016,29746
+18296,20835,22721,49967,59653,25908
+18297,28039
+18298,80374
+18299,19366
+18300,7733,56756,2720,10808
+18301,49260
+18302,1566
+18303,28027,78937
+18304,3506
+18305,2571,38495
+18306,68046
+18307,30044
+18308,46514
+18309,36651,39446,63656
+18310,65849,17133,79320
+18311,22970,80116,11066,42725
+18312,34741,81683,47396,62605
+18313,49640,30982,14583,73294
+18314,77567,45744,15681
+18315,65330,32336,50624,19407,19956
+18316,62745,21758
+18317,65836,12044,7200,67125
+18318,61466,37270,59357,32859
+18319,510,17826
+18320,67131,70905
+18321,59977,53333,47873,7578,31775,47208
+18322,40599
+18323,17892,32995,43478,4441
+18324,18867,34837
+18325,67632,25393,16806,32632,68994,32837
+18326,9480,36287,66060,21981,77689,73309
+18327,44930
+18328,20796,78880,4098,54621
+18329,718,42346,75678,79739
+18330,2827,29080
+18331,77885,12258,23729
+18332,76620
+18333,18551,29656
+18334,34431,4265
+18335,44405,81724,46820,13803
+18336,4678
+18337,3065
+18338,32028,35215,3343,30428,36863
+18339,15078,63871,25747,75479
+18340,8647,55695
+18341,37307,38110,65243
+18342,81696,45498
+18343,69557,49002,20719,71021
+18344,74624,58262
+18345,3986,46362,6815,39615
+18346,65485,37898
+18347,77608,71417,2626
+18348,42618,62535,39921,60679
+18349,70472,74489,20274,60370,8332
+18350,71855
+18351,49268
+18352,43325,26515
+18353,51953
+18354,77775,50993
+18355,60762
+18356,52858,50628
+18357,37481,18279
+18358,7764,26685
+18359,4801
+18360,22854
+18361,41847,65546,32144,37434,12998,8685
+18362,72412,5189
+18363,24216,81002,28814
+18364,43714,63571
+18365,61475,58978
+18366,76188,79035,64372,12183
+18367,49429
+18368,29942,12987
+18369,63951
+18370,4013
+18371,39978
+18372,78123,32340,3197
+18373,26094,19349
+18374,76396,26073
+18375,68601,15696
+18376,32242,59457,76054
+18377,19284
+18378,36651,46788,40027,68937,5770
+18379,8469,25699,32088,81205,52030
+18380,44127
+18381,21937,23922,23815,3110,35369
+18382,5077,57881,21665,44181
+18383,28909
+18384,4983
+18385,18354
+18386,64683
+18387,33069,57424
+18388,46817,74007
+18389,73525,66811
+18390,42498,2568,64890
+18391,78533,40407,29116,59036,77960
+18392,54777,27116
+18393,23279
+18394,61455
+18395,54180
+18396,53487,35598,32585
+18397,21837
+18398,76604,49609
+18399,33333,811
+18400,6958,35912,68917,47194
+18401,73689,72275
+18402,80593,2072,20514,4857,60032
+18403,61480
+18404,73866,41817,6671
+18405,36586,33167,80143,51360
+18406,8187,42442
+18407,35985,54634,29224,64090,80515
+18408,76379
+18409,44362
+18410,70415,32650,35986
+18411,41761
+18412,14611
+18413,7197,66459
+18414,62670,20379
+18415,58767,18002,56482
+18416,77410,12517
+18417,36908,21201,48154,76106
+18418,1825,27246
+18419,25885
+18420,6860,66198,3005
+18421,78787,58713,70068,62930,33144,8448,20927,32346
+18422,586
+18423,55391,45550,17564
+18424,38928,41313
+18425,41494,8640
+18426,12900,17815
+18427,76460
+18428,80845,9267,72683,65512
+18429,33662,7346,6101
+18430,72592
+18431,18794,3780
+18432,29413
+18433,10654,41706,10293
+18434,7913
+18435,44390,81977,34544
+18436,76976,3616,44969,77673
+18437,52490
+18438,68160,36260,28846,16315
+18439,8295
+18440,47205,13519,78595
+18441,58988,46429
+18442,74130,49744
+18443,35321,41592
+18444,70501,56641,1606,12598,16665
+18445,64503,7470,22628,35693,25758
+18446,82127,65552,23725,6692
+18447,12919
+18448,72122,77593,58147,15132
+18449,47513
+18450,15270
+18451,35884,42025,79742,7177
+18452,27849
+18453,74704,50387,7060
+18454,76345,38956,1830
+18455,36551,31128,19030,30009
+18456,22438,20007,75623
+18457,66506,55376,74576
+18458,37149,38599,3230,4302
+18459,74965
+18460,36019,73228,7299,46817
+18461,75284,53803,79842
+18462,22697
+18463,15436,19380
+18464,41628
+18465,64446,32159,16847,44800
+18466,15142,53485,76769
+18467,31125,81265
+18468,33159
+18469,48928,27576,57370,21718,40778,77343
+18470,28,71614,57762
+18471,64387
+18472,56368
+18473,9447,3964,42818
+18474,79131,9829
+18475,77685
+18476,39692,17999,7216
+18477,7129
+18478,16433
+18479,35580,47421,74200
+18480,77568
+18481,4229
+18482,56906,31789
+18483,58132,29811,27614,11825
+18484,43973,27154,69675,58817
+18485,48003,49393
+18486,60667,17466,23992
+18487,52340
+18488,56213,18742
+18489,60268,20864
+18490,41751
+18491,55933,8891,8172
+18492,432
+18493,47170
+18494,71484,32380
+18495,60864,61262
+18496,50359,62054,79398,13057
+18497,6429,41619
+18498,69900,32826
+18499,34785,34286
+18500,77366,64557,3702
+18501,72250,75422
+18502,32657,9916,39305
+18503,50218,75228,61089
+18504,44088,77227,13668,71785,33294,13248
+18505,21044
+18506,66824,74499
+18507,54179
+18508,38478,54568
+18509,36983,44172
+18510,21136
+18511,19695,9294
+18512,32751,18177,47222
+18513,82114,63376,16096,77430
+18514,70716,8744
+18515,78350,65619
+18516,48820,81336,28086,47350
+18517,25223,74585,82075
+18518,26173
+18519,18069,5503,43741,61076,73136
+18520,14146,4172,64356
+18521,68992
+18522,76708
+18523,27376
+18524,59486,77020
+18525,21438,23068
+18526,53540
+18527,17444,30005,46287,24809,23673,1568
+18528,72231
+18529,26538,57362,1592
+18530,51959
+18531,81056
+18532,35186,54828
+18533,71109,38963
+18534,57321,32895
+18535,67818,69128,10163
+18536,78258,49755,35305
+18537,27418,66084
+18538,67957
+18539,3652
+18540,56245,11817,65544
+18541,45055,38069
+18542,32547
+18543,27913,25027
+18544,66421
+18545,13615,31294,35235,3801
+18546,81070,37439
+18547,45547,64018,63509,30841
+18548,38423,12091,64748
+18549,15560,31532,54223,16950
+18550,69686,73573,68123,35912
+18551,42755
+18552,40171,79838
+18553,38994,8880,9535
+18554,73938
+18555,28860,44947,51065,9105,55410
+18556,52541,24603,34770
+18557,12137
+18558,53699,74325
+18559,29499,566
+18560,56479,63700
+18561,71264,12736,24000
+18562,30534
+18563,80880,63317,28690
+18564,20673,71427,15774,24550,79982,1724
+18565,77198
+18566,63374
+18567,65949,12374
+18568,60570
+18569,60613,59151,27232,31564,63735,18750
+18570,77096,22012
+18571,55831,70696,50475,15427,74616
+18572,34542,77869,21414,52780
+18573,17454,50720
+18574,76010,54070
+18575,2664,73771
+18576,14276,75036
+18577,59257
+18578,66646
+18579,31542
+18580,16676,63802,64851
+18581,927
+18582,34982
+18583,22198,3700,71317
+18584,39055
+18585,81992,72901
+18586,69693,11192
+18587,44998,42178
+18588,22612
+18589,24170,9852,65645
+18590,71722,17501
+18591,17949,76011,54986,11557
+18592,28270
+18593,37729,73526
+18594,15404,194
+18595,34625
+18596,23585
+18597,63582,34791
+18598,7539,52814,19246,1764,21295
+18599,72380,36304
+18600,16388,30073,77544,34767
+18601,41579,71270
+18602,49749
+18603,53246,7091
+18604,8578
+18605,32786
+18606,37976
+18607,80732
+18608,14697
+18609,15572,56928,39788
+18610,48287,38199
+18611,60589,16164,57605
+18612,34379,30091,29163
+18613,12237,40763
+18614,22038,8625
+18615,77336
+18616,16764,8552
+18617,70370,40815
+18618,72682,67356,23904
+18619,67238,59715,57234,51228
+18620,51165,54682,3822
+18621,6479,50635,56199,38196
+18622,45020,20842,47880
+18623,57432
+18624,50776,51092,19148,59884
+18625,6838,18203
+18626,24987
+18627,1274
+18628,78464,74692
+18629,33714,48415
+18630,34840
+18631,66383
+18632,55845,18763,3462,42742,56821
+18633,17073,22225,69995,78363
+18634,46947
+18635,51854
+18636,36338,44580,5464
+18637,50251,72392
+18638,76947
+18639,36807
+18640,68917
+18641,59943,81154
+18642,75568
+18643,45534
+18644,78533,77191
+18645,9190,47549,75469
+18646,51524
+18647,31241,28483,8197,13402,42570
+18648,31058,3240,20872,27376
+18649,31569,57320,33765
+18650,40471
+18651,57313,62798,81361
+18652,48722,37497,74939
+18653,24886
+18654,14107,5148,34571,74217
+18655,3783
+18656,1958,39253,19030
+18657,15097,12033,28174
+18658,44875,52147,49608
+18659,79040,13145
+18660,46334
+18661,2517,41727,69527,54280,36722,64749,47975,35383
+18662,45992
+18663,8609,20608
+18664,19534,57211
+18665,23255
+18666,4996,15914
+18667,48781,49414,30515
+18668,14794
+18669,57182,72449,71134
+18670,42576,48573
+18671,38744,13310,5556
+18672,8666,77420
+18673,38378,26934,66828,47176,51146
+18674,16079
+18675,50778,13582
+18676,69110,50090
+18677,15049,71905,2101
+18678,26268,60460,13843,65602
+18679,60882,23910,57678
+18680,56344
+18681,5540,54332,35877
+18682,23870
+18683,29869,17052
+18684,69999,6946,52044
+18685,70401,34444,12176,5727
+18686,41407,29925
+18687,452,215,57591,12451,48684,34505
+18688,72292
+18689,64030,75270
+18690,79056,16399,22362
+18691,46437
+18692,57155,4094,29708
+18693,62791
+18694,74940,3150,42326
+18695,44196
+18696,29935,58867,1632
+18697,22881,27071,29955,6615,25288,64331
+18698,80940
+18699,19775,79533
+18700,71661
+18701,38096,40006,74559
+18702,41231,19425
+18703,12783,65458
+18704,12965,15003
+18705,17791
+18706,79165
+18707,43055
+18708,38278,66544
+18709,49573,23807,70204
+18710,9376
+18711,8044,78574
+18712,62101,21937
+18713,34938
+18714,27613,25703,53905
+18715,27189
+18716,22058
+18717,51988,60076
+18718,13525,8375
+18719,46553,43277
+18720,32923
+18721,41162,51270,11158,1029,43547,53044
+18722,47320,66276,26764,11608
+18723,61085,43097,54470
+18724,10813,42354,60263,7121
+18725,34760
+18726,32536
+18727,81138,71898,21726,76568,51115
+18728,50379
+18729,50624
+18730,53415
+18731,78363,26219,17037,78431
+18732,17070
+18733,43250,18379,57838
+18734,30304,22940,76406
+18735,17767
+18736,31306
+18737,29774,17687
+18738,175,7594,7147,21865,22200
+18739,73479,69601
+18740,7580,49638
+18741,68260,28380,48945,49165,10916
+18742,41171
+18743,5787,758
+18744,61154,59549,77248,8174
+18745,69900
+18746,66245
+18747,3300,13296,34772,55749
+18748,67831,25183,62359,19797,18758,8415
+18749,14001,47886
+18750,10772,19030,25634
+18751,11940
+18752,79101,64195
+18753,69415,37680
+18754,18052
+18755,20189,50597
+18756,27307,57549
+18757,67041,69035,25075,39370
+18758,63483
+18759,44609,14004
+18760,81715,47337
+18761,25246
+18762,28593,49936
+18763,7516
+18764,60958,62333,74035
+18765,53424
+18766,5383
+18767,9493,54920,6723,68480
+18768,81343
+18769,82155,3717
+18770,50156
+18771,9022
+18772,16837,1733,50302
+18773,21181,64084,57361
+18774,12058,21566,45585
+18775,4169,38505
+18776,43733
+18777,80041,5911
+18778,6217
+18779,72804
+18780,39219,57126,37673,16897,6140,18085,57835
+18781,48829,42609,74774
+18782,44899,71095,68713,51624
+18783,70340,64848
+18784,76956,63871
+18785,45634
+18786,40223,36349,81721
+18787,10352,65654
+18788,58568
+18789,79618
+18790,30604,44955
+18791,12798
+18792,51621,70241
+18793,67683,74578
+18794,31989
+18795,74572,42643
+18796,72443
+18797,47164,25533,6364,76591,26320
+18798,36710,77084
+18799,50908
+18800,41452
+18801,37101,54475,51603
+18802,34533
+18803,18956,70401,9087
+18804,7657,55549
+18805,19710,41476,68336,64312,78246
+18806,40239,63053,23924,36702,1558
+18807,24582
+18808,52684
+18809,71101,52565,13747
+18810,23919
+18811,22810,64387,77600
+18812,62813,38171
+18813,32344,47373,16173,30413
+18814,12869,17087,71737
+18815,25024
+18816,30199,29359,63770,47513,22629
+18817,45924,45046,57241,53654
+18818,37284,47462,76571
+18819,37039
+18820,62670,5650
+18821,5009,57492,45623
+18822,24851,5913,22219,24170
+18823,4432,41652,42825
+18824,52469
+18825,11877,33927,78379
+18826,7100
+18827,15723
+18828,80512
+18829,74822,25300,5890,54508
+18830,28016,22300,56980,67468
+18831,37714,51668
+18832,78113
+18833,55771,44664,61981,62255,3673,80828,66749
+18834,67429,29067,38373,16193,80287
+18835,52395,21673
+18836,54162,52869
+18837,39622,30877,669,2041
+18838,14285,22916
+18839,78461
+18840,42440
+18841,31977,51838,24328
+18842,70340,68902,38648
+18843,9428,49001,54606,66226,40978
+18844,53625,63010,65766,27264
+18845,64886
+18846,77502,72653
+18847,32956
+18848,68727,80916,40851,61403
+18849,73129,19094,81320,53486,78807
+18850,5650
+18851,58625
+18852,69822,23245,58928
+18853,43025,52968
+18854,14565,5682
+18855,3096,10362,78003
+18856,80684
+18857,55591
+18858,14909
+18859,73264,26882,47783
+18860,65677,9198
+18861,32712,5546
+18862,54975,56544,35530
+18863,19794,25093,65537
+18864,63688,28040,63719
+18865,13858
+18866,25521,72931,70362,9819
+18867,39275
+18868,52716,55596
+18869,38726
+18870,53133,81792
+18871,58410,31525,5821,53168,33782,35539,5103
+18872,69374,19343
+18873,67318,75321
+18874,3634,5455,35538
+18875,76160,49979
+18876,74796,19695
+18877,52983,32558,78861
+18878,38021
+18879,70243,61958
+18880,23132,50630
+18881,28798
+18882,6034,9130,14151
+18883,26039
+18884,43340,34520
+18885,34068,16436
+18886,20181
+18887,74930,47168
+18888,60605,4122,67611,27011,46420,1112
+18889,57891,45611
+18890,21757,64710,66482,1093
+18891,38530,14106
+18892,72504,11819,37042,7335
+18893,59339,70466
+18894,43348,45690
+18895,8955
+18896,20708,68273,23440,81667,53796,6645
+18897,11963,50258,19422
+18898,33470,17260
+18899,70089
+18900,3112,53425,34338,11937,60806
+18901,49437,75379,79155
+18902,54099,49361,66180,14996
+18903,37091,36725,15492,77883
+18904,9238,55764,75825,59684
+18905,17913
+18906,34610
+18907,56118
+18908,5774
+18909,80028,29532,73671
+18910,2101
+18911,36049,36145,40327,8214
+18912,42213,42893,22075
+18913,8927,23971,70768
+18914,49118,69412,36450,80635
+18915,62727
+18916,8666,77493
+18917,20081,56633,310
+18918,7337,48435
+18919,10520,57438,71423,22818
+18920,80136,26513,65674,56277,42029,77586
+18921,73070
+18922,26229
+18923,13718,53975
+18924,14333,6479,78311,46009
+18925,33129
+18926,10190,52847,37636
+18927,36188,52364,69580
+18928,36076,73465,32615,31191
+18929,65778,61868,71750,22220,54756
+18930,63308
+18931,57434,66541
+18932,15067,22115
+18933,76525,6352,57568
+18934,32676,81456
+18935,67589
+18936,8782,59245
+18937,27171,25881,51255
+18938,75176
+18939,18608,50399,26649
+18940,52786,78934,61389,79084
+18941,24327
+18942,4959,33793,41484
+18943,45272
+18944,28859,61468,7016,58360
+18945,21384,5568
+18946,2718,18696,11403
+18947,64607,313
+18948,70362,33198,44299,47768
+18949,24532,64015,39926,51937,10785
+18950,33061,72675,37751,67655
+18951,27249
+18952,77510,2790,48336
+18953,53070,39095,78525
+18954,55734,41678,55346
+18955,29094
+18956,58332,81480,53954
+18957,67857,60338
+18958,30489
+18959,40083,20751,32019
+18960,51038,22005,1277
+18961,72997,12987,8966,19155
+18962,18734,71628,29098
+18963,55876,59713,42466,52191
+18964,13329
+18965,12235,57518,65710,42544
+18966,1404
+18967,27972,64179
+18968,77595
+18969,58386,78993
+18970,11411,34691
+18971,28929
+18972,53331,53317,4002
+18973,70592
+18974,32810
+18975,18276,71831
+18976,48929
+18977,63446,51206
+18978,20567
+18979,8666
+18980,6754,41004,62911,58947
+18981,7873
+18982,24795,59086,41958
+18983,36510,60680,16129,35523
+18984,14993
+18985,80251,41808
+18986,76872,29355,79613,33308,71719,59453
+18987,42783,76350,44899
+18988,43516
+18989,47221,24894,4343,78708
+18990,60290,42560,48335
+18991,33088
+18992,60677,31362
+18993,70001,81845,70952,843,13727,19796
+18994,7263,21243,38122
+18995,14335
+18996,15717,67123,24468
+18997,58265,65383,57488,6722
+18998,53968,42220,33326,7704
+18999,77056
+19000,39737,34122,27010
+19001,64420
+19002,51175,321
+19003,60417
+19004,20907
+19005,37849
+19006,9218,10451,32452,66404
+19007,70191,69164
+19008,16759,65240,77284
+19009,40132,47489
+19010,48558,71060,32391
+19011,51155,75315
+19012,42184,46211,65629
+19013,33491
+19014,3796,70610,4624,8694
+19015,46657,14331,59306
+19016,39994,72955,17131
+19017,40144,47009
+19018,19460,71000,41537
+19019,18073,29281,17225
+19020,1815,34286,17990,6607
+19021,8508,28172,81694,49982
+19022,35124,38649
+19023,3449
+19024,36121,51034
+19025,34693,1477
+19026,78424
+19027,51379
+19028,29822
+19029,68828
+19030,4308
+19031,13878,70491,56532,53602,3308,357
+19032,7654,70962,71953
+19033,39248,76978,24696,61410
+19034,3340,48504,75927,75673,40033
+19035,63087,44119
+19036,65209
+19037,40657,66290
+19038,16568,69471
+19039,4012
+19040,31615,18947
+19041,48631,21312,10059,41784,51144
+19042,73211,69284,18133,43966,14532,6012,75908
+19043,71108
+19044,74839,46138
+19045,13001,64195
+19046,73962
+19047,81866
+19048,21282,18113
+19049,64725,23683,45203
+19050,10809,2593
+19051,3562,65592,58054,48145,54842
+19052,77089,36840,7992,48394
+19053,63625,69867
+19054,63980,80675
+19055,79720
+19056,1337
+19057,82179
+19058,26112,10311,7920
+19059,35122
+19060,51092
+19061,51340,13235
+19062,50734,79860,20220
+19063,47421,74578,14021,19188,74887,71355
+19064,17746
+19065,56956,42432,27776
+19066,43534
+19067,28304,3159,67982,66590
+19068,25239,9063,7388,41445
+19069,23860,8805,45185,78382,54158,53726,51813
+19070,81548
+19071,52706
+19072,36960,5118,51038,70439
+19073,18267,44913,62949,28151,38372
+19074,27056,72926,71360
+19075,49103
+19076,21859
+19077,34150
+19078,17668,25079,5319
+19079,77284
+19080,57299
+19081,16954
+19082,40401
+19083,62804
+19084,55465
+19085,80485
+19086,51570,38021
+19087,53527
+19088,79851,49740,40477
+19089,59233,39063,71246
+19090,40217,46142,69935
+19091,32296,1849
+19092,68144,29873,78129
+19093,9350,960
+19094,22014,6772,73676
+19095,14168
+19096,27850,12616,48001,63169,63491
+19097,72039
+19098,78558,65870
+19099,45295,30784,63610,65407,38739,44496,71122,26570
+19100,79857
+19101,11247,25798,45248,3601,28595
+19102,78331,48455,26269
+19103,2597,69345,45581
+19104,43002
+19105,66574,5916
+19106,25282
+19107,74460,61741,31773
+19108,26275
+19109,650,67543
+19110,55179,16316
+19111,68270,1023
+19112,79035,17443,24894,50337,12899
+19113,37873,24823,66194
+19114,59517,2227
+19115,4456,3918,21178
+19116,10812,59993,8329
+19117,32280
+19118,76542,33946,2033
+19119,26715,7679,38334
+19120,80,40130
+19121,10815,58303
+19122,11387,25218,76649,18161,7315,68884
+19123,17264,53486
+19124,76813
+19125,14539
+19126,17892,7271,67703,48854,13376,49362
+19127,48737
+19128,23259,76770,59925
+19129,27810
+19130,64614,80208
+19131,46276
+19132,41636
+19133,16568
+19134,3800,74458,27771
+19135,72786
+19136,15132,59701,14301
+19137,54287
+19138,16343,80878,9620
+19139,33024,65245
+19140,7430
+19141,18499
+19142,19588
+19143,47317,62418,44979
+19144,68285
+19145,51570
+19146,55137
+19147,26481,47779,47270,49398
+19148,64602,42979,4801
+19149,16233,36113,35654,50126,33352
+19150,52109,34875,51089
+19151,30288
+19152,29529,27271
+19153,74731,58067
+19154,37620
+19155,39223,58798
+19156,44374,59011,40114,2179
+19157,16062,49683,35498
+19158,38601,71582,38175,78595
+19159,25659,34571
+19160,17854,2131,20714
+19161,25048,57806,58510,10777
+19162,48522,39781,9507,79474
+19163,7415,41034,71597
+19164,70316,20271,13587
+19165,7888,63596,41792
+19166,25127,32314,80879
+19167,64303
+19168,48916
+19169,2519
+19170,63838
+19171,1621,58853
+19172,41570,41437,51661
+19173,56095
+19174,57131
+19175,25826,21814,57353
+19176,71882
+19177,53182,59177,75450
+19178,60918
+19179,33234,58493
+19180,65626,63908,16526,13972,71008
+19181,5195,17394,57467,56799,67880
+19182,66026,8569,63703,57889
+19183,16774,6522
+19184,27187
+19185,42309,7439,13018,16682
+19186,31876
+19187,44781,8443
+19188,29122,24314,18017
+19189,30964,2124
+19190,21735
+19191,24750,80033,81618
+19192,79865,81804,37522,1267,17088
+19193,79397
+19194,12977,11418,58213,4695,44572
+19195,25385
+19196,20306
+19197,41846,58083,11300,58188
+19198,32801,27831,47538
+19199,76578,23801
+19200,72670,67926,48124,17508,21903,18150
+19201,81564
+19202,53880,15296
+19203,25792,74356
+19204,27848,71142,43990,30174,70892,28387
+19205,3102,38710,32070
+19206,23729
+19207,63001
+19208,67116
+19209,34462,58306,28370,33876
+19210,28910,15577,79600
+19211,69527,38920,19263
+19212,1112,14758
+19213,26696,53605
+19214,32113
+19215,58188
+19216,63365,24195,32355
+19217,58554,68761,50142,42529
+19218,46835
+19219,39893,23853
+19220,23894
+19221,3613
+19222,3252,23167,8495,67182,36639,77617,11732
+19223,56802
+19224,15028,62406,68676,25603
+19225,6744,60123,45693,12124,45995,16626
+19226,44719,67501,61082,3681
+19227,8530
+19228,76551,20913
+19229,15920,72719
+19230,8268,4906
+19231,29627,66698,56583,21009,74086
+19232,33982,14351,4112,34859,57530,67527,56265
+19233,49371
+19234,48369,23358
+19235,11644,13188,76407
+19236,4130
+19237,13954
+19238,79440,35872,61471
+19239,58213
+19240,71783,58153,26510
+19241,2518,6786
+19242,28456,54581
+19243,36812,28348
+19244,77703,46001,45704
+19245,8337
+19246,71638
+19247,7467,48831
+19248,46529
+19249,14881
+19250,566,46714
+19251,64821
+19252,32743,59808,21668,54351
+19253,24845,60336
+19254,42299,44703,10963
+19255,47408,31356,28033,8135,19798,857,52883,28579
+19256,76771,59724
+19257,39390,21837
+19258,51986,51823
+19259,15270
+19260,78624,41542,43707
+19261,63732,66897
+19262,6734,2524
+19263,43123,9544
+19264,57399,28698
+19265,64042,7234
+19266,11505,73905,69722
+19267,26974,67764,68547,38341,73177,52305,75600
+19268,19256
+19269,30708,79268
+19270,6728
+19271,30685,55795
+19272,22349
+19273,40532,78487,67529
+19274,28100,75029
+19275,77613,12224,7121,7722
+19276,11401
+19277,70800,46325,22930
+19278,80438,12402,4275,64000
+19279,22389
+19280,20410,76039,5488,39600
+19281,76438,33911,64039
+19282,23767,3130,81762,73516,35137
+19283,79267
+19284,48510
+19285,8431
+19286,74697,46969
+19287,19269
+19288,73818,49206,45040
+19289,42008
+19290,45255
+19291,68834,75511,72498,48974,5552
+19292,20094,7160,38198
+19293,51492,25997,81553
+19294,73936,76234,8829,78030
+19295,31618,50452,8313,78707,48239
+19296,81109,77828
+19297,81141,49045
+19298,45325,19455,30276,21516
+19299,62872
+19300,35680,73236,49573,19227
+19301,6526,34839
+19302,48468,70284
+19303,16598
+19304,57531
+19305,78829,29547,41081,26756
+19306,19045
+19307,73772,58301,3797
+19308,9384,13372,31765,52532
+19309,55181,30518,509,9842,29704,11431,4696
+19310,31481,42050,77732,52692
+19311,48352,1354
+19312,62350
+19313,67612,73253,35355,79037
+19314,19091,9693,63239
+19315,5052
+19316,64363,69227
+19317,70806,57424,24999
+19318,73418
+19319,48049
+19320,52317,65223
+19321,1336
+19322,8746,67822,18794,77084,47151,64269
+19323,80205,34540,17786
+19324,6215
+19325,20186
+19326,36966,23060,23677
+19327,2208,77102,18197
+19328,59766
+19329,67234,52719
+19330,15725,50343,68868
+19331,34106,68149,48886,23815
+19332,66218
+19333,28902
+19334,43311,25130,70333
+19335,69709,61943,18586
+19336,29040,45844
+19337,51717
+19338,25238,6589
+19339,19468,45725
+19340,26688
+19341,24937,31659
+19342,9474,43115
+19343,17486,15557,37107
+19344,15230,68006
+19345,1658
+19346,77433
+19347,22944,24982,48974,53217
+19348,78462
+19349,43711,47503
+19350,48421
+19351,62189
+19352,64713,77174,386
+19353,76862,31792
+19354,31535
+19355,37769,78238,30838,75621,74416
+19356,10425,3324,63842,52257
+19357,29685
+19358,26583
+19359,66243
+19360,3721
+19361,17255,68004
+19362,81382
+19363,37642,1942
+19364,59162,18958
+19365,39829,38702,51384,46460,55108
+19366,29051,28230
+19367,39490,23899
+19368,79027
+19369,33397,64356
+19370,59934
+19371,77986
+19372,71179
+19373,74697
+19374,27239,28644,34168,18261
+19375,8720,48247,31340
+19376,17304,10955
+19377,8365,46592
+19378,32429,74750,16688
+19379,2312,75563,9431
+19380,14677,3487
+19381,62517,31268,33158,43650
+19382,1274,11606,32315,81289
+19383,51910
+19384,41353,79537,78776
+19385,171
+19386,1538
+19387,66295,14455,44616,36119
+19388,12486
+19389,49943
+19390,39763,31962,14947,72745
+19391,18533,11526,16961
+19392,44248,14289
+19393,37639,13041,55727
+19394,71444,50415,74754,63002,16602
+19395,47139
+19396,46222,78663
+19397,44201,60953,56029,70884,67664
+19398,5798
+19399,34333
+19400,43919,52543,12272
+19401,43365
+19402,50491,5347,74651
+19403,58106
+19404,53064
+19405,34337,76534,55042
+19406,64949
+19407,1554,1262
+19408,37412,3426
+19409,38932
+19410,42898,76513,40828,77658,16943,39847
+19411,23735
+19412,16292,78431
+19413,18462,64666,61017,14711
+19414,720
+19415,3974,47879
+19416,22866,47626,31573
+19417,75140,26317
+19418,2078,10296
+19419,32835,43795
+19420,76901
+19421,35301,21752
+19422,61112
+19423,40431,19320
+19424,48567,21817,64449,81535,16458,65440,70300
+19425,30837,35889,57202
+19426,32089,4447,42121
+19427,689
+19428,63686,7552,57181
+19429,37973,17242
+19430,81360,53137
+19431,4097
+19432,50306,38978,63421,73250,26188
+19433,39729,37555,49880
+19434,56338,45692
+19435,32149,72483,7722,58030
+19436,54004,35641,75678
+19437,6222
+19438,65551,67971,9475,21121,47500,70729
+19439,19915
+19440,53742,41692
+19441,44960
+19442,64074,50691
+19443,64728,9446,50948
+19444,31113,5607,8941,76668
+19445,57751,64703,24354
+19446,27788,55766,39483,33649,40740
+19447,74482,65604,10150
+19448,19927,31398,33286
+19449,55233,30060
+19450,14845,68159,4508,76611,65960,36955
+19451,16650,59238,73214
+19452,68979
+19453,55823
+19454,64922
+19455,72940,48346
+19456,34753,66606
+19457,17194,26630
+19458,55139
+19459,407
+19460,56585,63026
+19461,39578
+19462,77026,64837
+19463,29959
+19464,13028
+19465,22676,37558
+19466,17087,43577,14150
+19467,54259,31864,16153,30572,9658
+19468,7009
+19469,61447
+19470,18595
+19471,34065,52136,65161,81222
+19472,39053
+19473,73411,57471,23922,8096,45257,35061
+19474,11545,45179,58315,62844
+19475,37601,8963,11235,15320,59471
+19476,39223
+19477,70307,33858,52919,68687
+19478,10730,35928,54186,44140,7846
+19479,20718,28774,61497,70287
+19480,58911
+19481,76422,42212,3984
+19482,23552,55375,49444,9504
+19483,25495
+19484,62261,38358,80933,44717,3389
+19485,68744,27029,32945,31752,26529
+19486,53312
+19487,67819,71105
+19488,2257
+19489,81210,10846,11342,72100
+19490,20836,76493,36512
+19491,63177
+19492,15003,1312
+19493,11837,35982
+19494,31897,3215
+19495,66035,77994,46991,14289,60669
+19496,18604,35847,2925
+19497,27578
+19498,16049,9376
+19499,57313
+19500,66265,4814,82155
+19501,365,15268,67358
+19502,80999
+19503,79115,11668,48394,81274,39164
+19504,52878
+19505,7165,38895,70983,44941
+19506,10337
+19507,76873,46054
+19508,57137,50933,47686,23034,5630,74282,445
+19509,57815
+19510,12721,16224
+19511,76297,43256,78185,1981
+19512,60884
+19513,48009,67503,73030,13874
+19514,79019,68934,10285
+19515,63159,21340,28982,9358,1389
+19516,52094,28703
+19517,41358,45164
+19518,20770
+19519,37886,56129,19823
+19520,46483,35674
+19521,7734,68823,70106,44853
+19522,16774,49660,67011
+19523,13449,81872
+19524,1592,28898
+19525,15194,20684
+19526,58591,68260
+19527,68276,43052
+19528,41542
+19529,51673,55806,182
+19530,22614,1603,19453,2444
+19531,39271,66115,18353,4602,30406
+19532,2210,39229,40313,4103,49659
+19533,52983,79442
+19534,32070,23673,28535,27416
+19535,64958
+19536,34491,75047,37020
+19537,31017
+19538,9462,24834,57297
+19539,50741,7661
+19540,76149,69580
+19541,73514
+19542,9318
+19543,32393
+19544,42128
+19545,75309,20067,64966
+19546,15994
+19547,65221,20242,4651,42522,695
+19548,68374
+19549,8127,11492,61142
+19550,74894,38438
+19551,5472
+19552,76128,17765
+19553,31710,81655,54394,64923,23841
+19554,9993,40157,70317
+19555,15831,61945,56255,76374,15394
+19556,51936
+19557,64789
+19558,71942
+19559,43673,29213,50768,59647
+19560,8066
+19561,7032,52540,61453,13061,21613
+19562,52344,34563,14257,66776,48817
+19563,22338,54008,29601
+19564,9376
+19565,64492,16598
+19566,81456,19811,7365,59008
+19567,66085,18899,78306
+19568,29378,45427,47485,9021
+19569,4803,74258
+19570,34361
+19571,65513,63377,8368,59389,10813
+19572,80647
+19573,28318,38619
+19574,18968,59151
+19575,58948,66237
+19576,26110,21242,31915,33770,40380,54121
+19577,2204
+19578,71376,4664
+19579,57948,23056,3710,71893,23231
+19580,68531,75286
+19581,49890,64399,1833,21137
+19582,40831
+19583,16492,36048,49447
+19584,40021
+19585,60633,26245,65011
+19586,57619,51373,80117,76846
+19587,41638,14081
+19588,60387,61
+19589,47195
+19590,48421
+19591,66961,36574,74026
+19592,29663,67592,49252,50152
+19593,69794,17235,58404
+19594,1349,77796
+19595,47447,55343,25366,72649,37690,15150,70863
+19596,18835,62450,58682,42589
+19597,46036,11162,10430,28802,58963,81741,22656
+19598,43724
+19599,56543,13155,10004
+19600,25005,29027,67878
+19601,76985,65949
+19602,58160
+19603,54500,7536
+19604,76159,26114
+19605,28069
+19606,68865,70618
+19607,49529,10513,22265,36990
+19608,33283,25804
+19609,13978,9266,33596,62704
+19610,65225,50562,53535,32356
+19611,22469,73991
+19612,68536,79857
+19613,44536,10038,42506,22031,30489
+19614,23833
+19615,77111,61194,33028
+19616,30044
+19617,64183,19265
+19618,64201,53041
+19619,79917
+19620,71767
+19621,29366
+19622,57244,12402,7231,68204,48773
+19623,69115,76211,27099
+19624,77823
+19625,27717,34482,33143
+19626,67473,73240,43305,31009,71032
+19627,20720
+19628,8552,50718,73360,55571
+19629,57074,74710,75185,43811,67567,50545
+19630,43261,10764,25578,36609,1272,58375,74246,6175
+19631,33440
+19632,23229,14292
+19633,44800,81556
+19634,79442
+19635,67706,76542,42428
+19636,17836
+19637,31149
+19638,21505,28940
+19639,79963,50468
+19640,51426
+19641,11887,79557,74932,20431
+19642,10519
+19643,32957,56353
+19644,44532,47096,24672
+19645,49040,63103,78224,40841,61975
+19646,74325,62147,79049,76746,69308
+19647,28342
+19648,16191
+19649,34143,7356
+19650,18736,72916
+19651,18845,23127,66864,40244
+19652,8072,60561
+19653,4615,49961,37888,25322
+19654,2128,65245,52752
+19655,43305,7567,30245
+19656,63832,66962,4097,25778,78900
+19657,52736,74928
+19658,45556,45850,70455,69097
+19659,14170,4033,18561,19637
+19660,56729,14619,26590,62332,63258,9368
+19661,75971,10478
+19662,51540,66906,72310
+19663,24220
+19664,5494,52264,57250
+19665,77781
+19666,58275,47647,9971,57720
+19667,43294,72763,59323
+19668,57180,2234,63778
+19669,72263,77506,30784,47160,26802
+19670,66473
+19671,43291,20684
+19672,49321,69766
+19673,66784
+19674,9381,70416,70697,66098
+19675,33719,68297,534
+19676,2234,77422,80277
+19677,17873,69276,76516,35940,24955
+19678,14623,59725
+19679,4137
+19680,15100,77787,41296
+19681,3264,71955
+19682,42248,9955
+19683,46046,19647
+19684,40368,33880,9658
+19685,67004,3304,30178
+19686,50116
+19687,39787
+19688,53148
+19689,74488,71327
+19690,25456
+19691,16202,71260,62537,7775,19133
+19692,79739
+19693,82136,16859,44319
+19694,2696
+19695,48115
+19696,13766,9068,72451
+19697,68207,37242,51115,70570
+19698,42008
+19699,62900
+19700,16774
+19701,67248,6502
+19702,33123,27037,27852,70173,68226
+19703,29436
+19704,54152,59319,39091,62584
+19705,68276,74599,77739
+19706,31372
+19707,15489,27006,69471,60072
+19708,10529,28870
+19709,9618,7852,24129
+19710,28571,16665
+19711,32065
+19712,28008,38838,65877,26219
+19713,57020
+19714,43115,40829
+19715,43304,6912
+19716,14967,8973,69036
+19717,31375,67563
+19718,61833,33353,21201,54747
+19719,35898,3672,37293,62013
+19720,35439,38278,73340
+19721,8563,2384,29636
+19722,52315,27897
+19723,1740
+19724,31453,67644,36591,37677
+19725,54733,19104,61255,61873,20157
+19726,40615,55155
+19727,80159,14224,41387,27058,8879,46855
+19728,33054,80842
+19729,63163
+19730,81884
+19731,17835,70121,61792
+19732,51529,935,11661
+19733,22802,36942
+19734,39485
+19735,9422,22845
+19736,76032
+19737,45102,34348
+19738,47979,44986,54889,69074,58194,31073
+19739,69565
+19740,69412,68182,56204,23396
+19741,32004,77541,30636
+19742,48170
+19743,70798,24355
+19744,42135,81873
+19745,33410,42384
+19746,52168,10333,10126,53365
+19747,50397,54598
+19748,74306
+19749,52027
+19750,32408
+19751,40067
+19752,38836,32403,25028,80321
+19753,61447,49268
+19754,8487,21550
+19755,17401,30388
+19756,36558,30304,72433,61563
+19757,10541,3981,71148,24957
+19758,72077,81339,64334
+19759,29694
+19760,27502,32983,14302
+19761,80999
+19762,70557,17975
+19763,29412,30462,76452
+19764,43310,60077,32761,76385,11315,80034
+19765,34012,44927
+19766,67592,36192,53148,39993
+19767,57273,59958,37861
+19768,73427
+19769,17765,45654,34859,32906
+19770,63552,74756,59524,17144
+19771,3197
+19772,49244
+19773,7693
+19774,48761,46264,50004
+19775,72574
+19776,3392,26265,51957,54280,67515
+19777,67128,29803
+19778,12665,70856,6081
+19779,10246,18449,44600
+19780,44008,68556
+19781,29455,136,6136,2040
+19782,79522,41360,15941
+19783,79258,43611
+19784,21885,102
+19785,42887
+19786,44277
+19787,59491
+19788,43734
+19789,75689
+19790,37067,59009
+19791,49046
+19792,51426,27761
+19793,18588
+19794,80185
+19795,38093
+19796,41281
+19797,10003,48455,67432,39173
+19798,69412,38299
+19799,31684
+19800,67665
+19801,17408,71661
+19802,55610
+19803,78276,78993
+19804,61249,6643
+19805,81910,22391,63374
+19806,31832
+19807,78575,22031,35045,32409
+19808,24761,49803,77026
+19809,65612
+19810,24382,58059,21855,43742
+19811,1488,15460,11819,24475
+19812,18472,50072,75074
+19813,47984,51524,24660
+19814,30769,15835,6503
+19815,20505
+19816,35572,48516
+19817,41959
+19818,35591,41098
+19819,77364,45317,38273,73213
+19820,28078,31899
+19821,68725
+19822,67243,34976,49251
+19823,41242
+19824,28844,58907
+19825,46058,17131,30220
+19826,2136,42784,30439,43452,6194,45011
+19827,51320,36321
+19828,12027,6839
+19829,77839
+19830,12811
+19831,72190
+19832,33399,36559
+19833,45942,2816,29285,19233
+19834,52802
+19835,80247,3623,52338,16182,51796,33390,59183,9872
+19836,7927,80416
+19837,36056,56240,44789
+19838,41760,43128,61283,63704,33422
+19839,55492,78879
+19840,30218,29165,20747
+19841,9301,38758,58793
+19842,59034,21098
+19843,18740,70659,67916,10433,55983,69254
+19844,41402,16603
+19845,80079,11850
+19846,58056,19144,4292,1651
+19847,59964,41287
+19848,28137,76193,65311
+19849,1406,46752,54475,67889,33856
+19850,2901,77281
+19851,55404,80664
+19852,2202,67632,41836
+19853,31749
+19854,46473
+19855,22594,8439,21816
+19856,891
+19857,1228,45520,31073
+19858,33244,53541,38490
+19859,5139,20236,36347
+19860,23548,30045
+19861,59810,7965,71715,46306,78261
+19862,71539
+19863,4338,6785
+19864,27708,54617,60213
+19865,65669,80937,65792,74785
+19866,12978,28685,53248,22341,81067
+19867,78210,26485,20410,8662
+19868,25132,48659,59518,79417,15632,21719
+19869,78986,60869
+19870,8531,56372,66741
+19871,51594
+19872,57667,3410,65124,27035
+19873,59726,45712,5485
+19874,75137,77604,27943
+19875,8062,43879,78605
+19876,52997
+19877,51626,44812
+19878,21071,25643
+19879,3909,46635
+19880,5626,48751,57172,65698
+19881,31485
+19882,2886
+19883,1079,40928
+19884,14093
+19885,2243,27705,42401,65057,45258,35210
+19886,27216
+19887,81459,46022,56080
+19888,18978,33801
+19889,54982,47919,45319,252,2486
+19890,34117
+19891,77793,78906
+19892,47930
+19893,73906,72234,75371,60484
+19894,2586
+19895,55556,14987,62568,10684
+19896,26083
+19897,60527,73818,29389
+19898,59043,41558,68921,55433,20071,15950,4750,28256
+19899,985,13273,44204
+19900,1079,50529
+19901,58470
+19902,49447,76953
+19903,69363
+19904,37060,53185,16107,21762
+19905,63996,11131
+19906,50477,50864,63245,40827,81768,19359
+19907,26161,43761
+19908,72842,65664
+19909,56895
+19910,32865,29508,77546,12426,3061
+19911,3899,49482
+19912,9171,47730
+19913,14755,41058,80669
+19914,62382,13062
+19915,15063
+19916,59886,20555,3200
+19917,5463,44196,66548,71829,10475,59797
+19918,49476,50456,5613
+19919,6683
+19920,82121
+19921,56257,72661
+19922,12061,32158,28008,53530
+19923,74930
+19924,68977
+19925,66686,48418,53384,55642,44557
+19926,65740
+19927,59435,28592
+19928,53745,48849,54394,6913
+19929,80727,30552
+19930,73885
+19931,49414
+19932,3927,20894,34861,69985
+19933,68255,38751
+19934,75897,25345
+19935,39169,5583,47752,40927,46548
+19936,36434,55788,80180,39040
+19937,33509,69348
+19938,67902
+19939,79857
+19940,64448,25120,70439
+19941,13950,53669
+19942,17358,20747,2799,58089
+19943,46810,2166,35385,11353
+19944,15423,58538,12001,47326,2814
+19945,39663,25159
+19946,28444,21705
+19947,33383
+19948,41420,54124,29792
+19949,44662,46323
+19950,71850,48665,8185
+19951,38325,54719
+19952,70516,16321,12679
+19953,80383
+19954,15230,81181
+19955,55783
+19956,43491,56892
+19957,36807
+19958,74376,76080,20943
+19959,36722,28584,50236
+19960,48841
+19961,54361,72641,79741,71534
+19962,60500,39691
+19963,17520
+19964,68546
+19965,23034,79292,13714
+19966,44527,26237
+19967,53984,43350
+19968,30276,22526
+19969,28760,37505
+19970,69300,47295
+19971,16343,44402
+19972,8663,51324,23507
+19973,28867,57755,50944,11137,57064
+19974,55312,4002,12104,8194
+19975,49533,43542,47584
+19976,65669,17159,23514
+19977,40486,10943,24874
+19978,56867
+19979,26934,45926,79576
+19980,2227,18397,65312
+19981,26233,68148
+19982,19471,65798,11751
+19983,39224,58300
+19984,71903,42905,62590,51531
+19985,79946
+19986,81259,69147,62944,14577
+19987,44787,73739,9263
+19988,66121
+19989,23937
+19990,7129
+19991,54361
+19992,31952,27587
+19993,16227,21438,16460,32319
+19994,29638,27173,64869
+19995,34011,14448,33129,51937
+19996,69124,25271
+19997,54257
+19998,22401
+19999,65040,23747,32719
+20000,17007,23993
+20001,45816,17192
+20002,72349,17622
+20003,17767,62449,9874
+20004,55832,64940,14717,44576
+20005,18552,9564,888
+20006,36590,48477,30854,57265
+20007,37319
+20008,22782,43877
+20009,15420,15007
+20010,51294,18207,46468,339
+20011,54027,75663,58303,3008,77022,82005
+20012,6041
+20013,30643,26677,12153,46132,31985,78403
+20014,74491,2556,57778,73029,66084,20757
+20015,77366
+20016,48006,306,67672
+20017,55899,2084,22702
+20018,80089,14663,68756,21845
+20019,7211,56014,55020,16790
+20020,4901,80226
+20021,62093
+20022,21672,10578
+20023,79209,68532
+20024,79664,13004,29203
+20025,5277
+20026,43588,12635
+20027,69867,64528
+20028,18423,39543,30955
+20029,34311,46196,23608
+20030,64494
+20031,60723
+20032,51179,73689
+20033,4356,31793,41328
+20034,39097,76199,3380,37257
+20035,35373
+20036,71091,38202
+20037,34779
+20038,47943,52208,74282
+20039,62674,23172
+20040,40713,45047,45349,51802,17874
+20041,5641,48071
+20042,48287,53478
+20043,20061,27833
+20044,20027,38729,59749,81520
+20045,76117,49972,71709
+20046,74443
+20047,73392,16676,66475,57999,35894,73590,7122
+20048,33469,1917,3356,36241
+20049,13145,18610
+20050,14471,25978
+20051,9727,49393
+20052,15483,10078,40475,79635,50490
+20053,29822
+20054,77722,42456,61472
+20055,65947,8242
+20056,64366
+20057,15958,5070,37777
+20058,27593,45596,59598
+20059,6229,27289,75313
+20060,69521
+20061,24552
+20062,45065
+20063,22400,31164,14941
+20064,79484
+20065,46738,14461,13076,77923,40429
+20066,19499,29446,37309,42213
+20067,80220,40787
+20068,62863,26306,6276,47667
+20069,67228
+20070,59493,479
+20071,44910
+20072,63938
+20073,67396
+20074,37760,39901,53409
+20075,7856,32722,49577,20940
+20076,36471,17132
+20077,32301,44528
+20078,74490
+20079,33167,68681,3869
+20080,59036,23031
+20081,16233
+20082,27373,11247,36093
+20083,10509
+20084,21493
+20085,5814,61192
+20086,2557,1988
+20087,17170,39042,606
+20088,13474,62123,5573
+20089,36254,80454,34816
+20090,17489,69382,12718
+20091,33512,39980
+20092,30805,16191,26294,40721,60144,5931
+20093,67831,56596
+20094,26685,55746,46917,50220,67294
+20095,30672,15222
+20096,66397
+20097,19206,71874
+20098,65308,69616
+20099,9605,26272,25696
+20100,66047,46132,35871,44828
+20101,12946,70490
+20102,29267,50023,65122,41289
+20103,15762,19762,7790
+20104,32688
+20105,69453,76887,53587
+20106,30393,64607,4610,20059
+20107,72447,22488,6094
+20108,36740,26384,72941
+20109,13434
+20110,54990
+20111,67915,30132,27941,59218
+20112,23594
+20113,19399,63185
+20114,55793,27104,67174,77604
+20115,42644,49205
+20116,21074
+20117,39179,77168
+20118,9390,70478
+20119,52175,23006
+20120,21574,61558
+20121,7735,34588,35234
+20122,75654,78920
+20123,38161,73781,3994
+20124,28288,78976,27953
+20125,50416,71981,2161,9632
+20126,16987,495,5615
+20127,40339,19090
+20128,1130
+20129,31035,15902
+20130,77543,76436
+20131,23881,25558,15229,51270
+20132,11406
+20133,71115
+20134,40035,44422
+20135,65489
+20136,45654,3274,16135
+20137,81629,78056,9249
+20138,23116,79092,60406,3127
+20139,8541,51310,37788,4230,4351,61855,63858
+20140,53433,519,25970
+20141,82139,79043,10396
+20142,33362,52876
+20143,9466,48399,58577
+20144,7887
+20145,68100,59760,58715
+20146,74276
+20147,16043,58870,45886,26585
+20148,11676
+20149,54625
+20150,15155,31319
+20151,52061
+20152,57653,68649,28479,70479
+20153,12056,74517
+20154,69087,38334,77743,68377,16577,61791
+20155,6823,39018,27396
+20156,43151
+20157,56027,8145
+20158,25698
+20159,49178
+20160,37148,63065,78390
+20161,79720
+20162,45992
+20163,52679,4326,62914
+20164,47874
+20165,33900,17264,54712
+20166,16167,14990
+20167,50626,48854,28832
+20168,27203,579
+20169,70221,71034,41241,18791,23440,80728,10256,3696
+20170,17861
+20171,49045
+20172,55961,62005
+20173,35304
+20174,2416
+20175,32145
+20176,21187,3314,40040,54852
+20177,27807,5658
+20178,68048
+20179,35063
+20180,41191,46429,76691
+20181,59863
+20182,15030
+20183,34143
+20184,4312,52472
+20185,48241,76798,1819,5924,37586,76044,39202
+20186,15679,2385,10301
+20187,46965,68601,6925,65554
+20188,28887,68658
+20189,75455,23158
+20190,35696,66201,48968,7841
+20191,24561
+20192,9220,57192
+20193,19939,2165,53266
+20194,52317
+20195,8205
+20196,32130,24068
+20197,4852
+20198,33687
+20199,73947,36882,72561,61285
+20200,4916
+20201,46417,13850,12656
+20202,14632,28672,33361,50600,69427
+20203,4897,64949,7131
+20204,78864
+20205,36669,59133
+20206,45856,507,79968
+20207,51931
+20208,37758,39638,5783,75403
+20209,54631
+20210,61470
+20211,14433,32539
+20212,77420
+20213,73087
+20214,6100,38635,13736
+20215,49459,28699
+20216,2899,34410,40283,30232
+20217,3181
+20218,8606,6479
+20219,56268,62515,81713
+20220,61042,76625,32159
+20221,9090,74188,11467,54518,43322,67807
+20222,13620,32890
+20223,73096,20556,13372
+20224,70708,68363,77250
+20225,13894,30606,19756,34537,63489,60651
+20226,80181,54722
+20227,24453,35645
+20228,6575,70546,57739
+20229,61267,41309
+20230,73782,66536,65879,36732
+20231,57733
+20232,45601,51815
+20233,11399
+20234,58729,50192
+20235,41574
+20236,77237
+20237,73514,72671,59868,26510,29281
+20238,42017,34219
+20239,45708
+20240,59532,73185,16102,54537
+20241,59258
+20242,26263,24775
+20243,49782
+20244,51548,41889,57659
+20245,68090
+20246,37397,18209,12402,32882
+20247,81249
+20248,47567,58659
+20249,74175,67921,40491
+20250,21860,44591
+20251,63895,15896,56841
+20252,68518
+20253,23650
+20254,25896,8858,53753,34680
+20255,3944,66413
+20256,13174
+20257,38021
+20258,13510
+20259,45894,21163,75416
+20260,65887,37177
+20261,58657,59809,41948
+20262,71108
+20263,67292,45063
+20264,20322,39815,49362
+20265,44026,8407
+20266,15820
+20267,23174,1991
+20268,27195,20018
+20269,64973,13174
+20270,34173,52358
+20271,76595,70780,79434
+20272,61233
+20273,40064
+20274,34298
+20275,32340,13654,13125
+20276,8391,4411,76856
+20277,42016,64983,59252
+20278,50137,77422,64038
+20279,6180
+20280,33690,63159,3960
+20281,67136
+20282,25934
+20283,79171
+20284,75826,52413
+20285,65164,40909,49165,42723,24637
+20286,40429,24277
+20287,39369,41147,60673,38434,34295
+20288,82111
+20289,23318,16502
+20290,74336,829,63167
+20291,79593,23665,53286,36481
+20292,29988,19980,49926,27209
+20293,80577
+20294,53610,76049
+20295,14341,50137,18017
+20296,48392,37515
+20297,35802,54067
+20298,60121,81383,12173,64266,69410,58489
+20299,14754,73549,70252,4385
+20300,50108,20425,4869
+20301,59287,38107
+20302,14187
+20303,4204,71339,15833
+20304,70402
+20305,49138
+20306,74311
+20307,34816
+20308,40626,5262,3109,6279,57646
+20309,28284,56395,70915
+20310,24967,72588,71355
+20311,4877,15809,80216,42490
+20312,1300,63686,69644,65841
+20313,7061,61982
+20314,8415
+20315,74435,15155
+20316,19779
+20317,16726,80584,40646,8180
+20318,32749
+20319,39173
+20320,29461,36554,65690,49185,47002
+20321,52707,62969
+20322,19284
+20323,38520,11914,45078,52831,43103
+20324,29104,60901
+20325,42900,46019
+20326,45550,47904
+20327,25587,74786,42897,32152
+20328,30423,27408,46904
+20329,16818,14713
+20330,74565
+20331,63892,510
+20332,11521
+20333,22262,9046,61038
+20334,36280,20999,13109
+20335,41689,80953
+20336,49971
+20337,40101,2356
+20338,15856,5956
+20339,53052,43838,76916,26952,18192,17918
+20340,30310,52822,65505
+20341,51568,60855,56750
+20342,20500,71542
+20343,46755
+20344,31072,11148,35166,55995,70478
+20345,78358,18293,80192
+20346,7289,67622
+20347,72009,70448,42394
+20348,39400
+20349,40477,9458,30018,76639
+20350,5824,47987
+20351,47876,20525,66455
+20352,42453,77110,45599
+20353,37097,42874
+20354,2461,31624,60815,20049,34545
+20355,35643,59131,52774,11341
+20356,16897
+20357,52144,63541,7527,50759
+20358,10242,9901,70936
+20359,68648,30983
+20360,61284,32572
+20361,78568,62872
+20362,33518,5375
+20363,12421,16632
+20364,33143,10872,76239
+20365,5401,7352
+20366,70476
+20367,78180,33743,14265
+20368,45182
+20369,21205
+20370,9405
+20371,48495,51327
+20372,14707
+20373,2297
+20374,13667
+20375,64825,32005
+20376,42255,639
+20377,23238
+20378,10335,25049,29755,30619
+20379,45951
+20380,81162,76135,22332
+20381,47708,7173
+20382,2390
+20383,54091
+20384,45172
+20385,1039,78998,58574,15091
+20386,65444,60497
+20387,16082,78802,70570,16954,14801,61482
+20388,72734
+20389,54955,17488,66297
+20390,49938
+20391,54591
+20392,41816,13214,11362,34639
+20393,8118
+20394,7242
+20395,40691,54757
+20396,67619,63595,54650,74741,66538
+20397,65479,48538,38978,64360
+20398,19572,24120
+20399,69569,78743,51292,64483,71456
+20400,37067
+20401,39133,53696
+20402,43988,61095
+20403,41987,60944
+20404,10190,13063
+20405,79722
+20406,7417,22470,19360
+20407,29250
+20408,4184,7807
+20409,13986,64821
+20410,47564,29581
+20411,24944,42321,875
+20412,3368,13718,47985,1958
+20413,1586,79293,32630
+20414,17479
+20415,64426,79442
+20416,29424,749,28383
+20417,4104
+20418,53032,39350,3250
+20419,31089,1610
+20420,54101
+20421,45497,22312
+20422,78672,16831,64824
+20423,38742
+20424,54850
+20425,31256
+20426,4996
+20427,26453
+20428,73841
+20429,51230
+20430,63629,19852,14707,52454
+20431,70979,2084,26483,15308
+20432,57911,52915
+20433,74249,49605,58368
+20434,42867
+20435,7880,41439
+20436,4644,66991,41244,65924
+20437,42508,72077
+20438,15994,22785
+20439,61435,39535,1846,14711
+20440,35259,9436
+20441,62349
+20442,44061
+20443,23639
+20444,25385,72446
+20445,46466,20653,71964
+20446,54218,27
+20447,7718,629
+20448,52009,56766,12444
+20449,68382,37383,71762
+20450,69861,44303,59711,14570,20644
+20451,67039,42352
+20452,7353,28071,17359
+20453,30950,67237,2070
+20454,449,43265,13677
+20455,7406
+20456,61646,7124
+20457,25825,48450
+20458,58455,9433
+20459,17461,43823,50040,21246
+20460,59655
+20461,53756,506,74488
+20462,79444
+20463,48987,7053,57558,17717,27439
+20464,62946
+20465,64091
+20466,49281,80972,36916
+20467,42938,80577,52573
+20468,2740,27872,64049
+20469,50037
+20470,33837
+20471,41535,2028
+20472,51132,22149,73883
+20473,1096
+20474,10783
+20475,61778
+20476,20253,24427
+20477,67334
+20478,21397,25912,78907,12131,73320
+20479,20297
+20480,73889
+20481,65096,74088
+20482,23330,10554,13993
+20483,81719,54403
+20484,27564,74431,35493
+20485,28819
+20486,20765,15176,81358
+20487,62872
+20488,8820,46964,40708
+20489,31630
+20490,26297
+20491,47104
+20492,8874
+20493,12325,54842,81118
+20494,60556,40097
+20495,57970
+20496,49803,22323
+20497,35591,79411,34826
+20498,6446,46061
+20499,71168,1726
+20500,56964
+20501,67344
+20502,29953,78612
+20503,10418
+20504,16880
+20505,53170
+20506,18149,53134,69038,19348
+20507,3097
+20508,37551,62937,24468
+20509,64143
+20510,67782,16846
+20511,3461
+20512,36199,58347,4508,19316,48059
+20513,55232,23047,42035,29858
+20514,56232,16561,42767,81456
+20515,41445
+20516,32090,55349,3480
+20517,2657
+20518,77199,52122,43080
+20519,23539,72198,15212,10053,56088
+20520,40368,59971,54818,17818,34197,59361,15969
+20521,34212,75589,57180,32437
+20522,1775,9658
+20523,52983
+20524,24068
+20525,42330,4737
+20526,60317,72943
+20527,64145,13436,7346
+20528,53860
+20529,78493,81327
+20530,8902
+20531,54663,33635
+20532,46257,11736,79139
+20533,44354,2059
+20534,3995,31725,29727
+20535,70770,30004
+20536,50298,19187,5052
+20537,21725,18776,42514
+20538,23729,14581,42962,81287,53544,10356,64461
+20539,17786
+20540,59518,15492,60959,36399
+20541,55394,39854
+20542,61131,77562
+20543,64509,2842,69200
+20544,66765
+20545,23951
+20546,69063,41697
+20547,55512
+20548,73035,59650
+20549,61429,27112
+20550,2645,75371,17313,57701
+20551,34120,78377,29201,22527,57726,25454
+20552,30428,14555,48756
+20553,81674,27167,48987
+20554,26942,7486
+20555,48847
+20556,50318
+20557,80410
+20558,18603
+20559,72101,29602,56575
+20560,16572,19452
+20561,52268,26049,46238,26089,54897
+20562,24393
+20563,70272,44298,81198
+20564,59774,28724
+20565,29136,6961,74723
+20566,75302,40149,9781
+20567,20890
+20568,12215
+20569,49965,10230,64085,42437
+20570,57401
+20571,37586,75218,61129,6549,55973
+20572,45481
+20573,22048
+20574,66855,17628,72001,11424,73642
+20575,58535
+20576,30261,52449,31176
+20577,6785,28173
+20578,34358,39720,74777
+20579,10606,68102
+20580,26714,18379,33541
+20581,1538
+20582,55777,34481,64420,46828
+20583,61369,53044,35954,27745,61471
+20584,77403,30271,48178,28873
+20585,56688,42602
+20586,80756
+20587,25603,28933
+20588,47121,61553
+20589,2136,26650
+20590,13861
+20591,70183,20976
+20592,68850
+20593,36262
+20594,1933,16861,49819
+20595,59064,19249,32019
+20596,65129,504,44003,79727,26055,14326,52075,81188,23150,50410,23433
+20597,22848
+20598,77107,65515,46178,19288,66420
+20599,17371,15571,25798
+20600,73527,72090
+20601,72556,2979
+20602,64255,46403,8182
+20603,50398,43122,77968
+20604,16555,54009
+20605,27630,48930,5492,37050,40956,64047,1779
+20606,72334,43704,73974,50662
+20607,76373
+20608,6369,22201,76938,18998,56322
+20609,56204
+20610,14880
+20611,4045,4496
+20612,22895,17658,31732
+20613,21563,36724,39520,2536
+20614,22719,7512,79061,50692,61049
+20615,66189,81742
+20616,80533,15287
+20617,41045
+20618,24009,13570,3581
+20619,16866,49667
+20620,71117
+20621,61377,46033
+20622,24870,23888,737
+20623,12285,47453,80049,5418
+20624,45937,19039
+20625,73124
+20626,57160,76491
+20627,39391
+20628,21657,13035
+20629,28529,59894,41779
+20630,23419
+20631,12764,6695,46171
+20632,45299,9471,55633,38271,47401,32873,71754
+20633,16009,24480
+20634,17039
+20635,51320,78394,49073
+20636,80844,15579,28673,42722,46892,20124,74830
+20637,34923,75032,27025,27483
+20638,21148
+20639,68025,80955,3451,11958
+20640,907,5054
+20641,8247
+20642,33574
+20643,49953
+20644,24880
+20645,762,22885,6905,36043,73496
+20646,31402,20972,79047
+20647,56812
+20648,1182,77889,24696,80274
+20649,24727
+20650,50510,48200
+20651,20045,844,80423,60972,55445
+20652,79927,69974
+20653,22187
+20654,5033,16181
+20655,23549,28528
+20656,19464,72377,51506
+20657,71355
+20658,38831,6796,53166,56775,44467,10763,29367
+20659,10926
+20660,45558
+20661,72219
+20662,81337,69701
+20663,30575,53211
+20664,49341,50385
+20665,18232
+20666,9246,28006,26198,73871,54578,43331,72233,46052
+20667,71783,78312,22368,60243,39527
+20668,68963,30781,26942,62273
+20669,60713,7260,73107
+20670,58813
+20671,75915,78183,1056,81237,45310
+20672,38379,80571
+20673,70147,10174
+20674,53821,31745
+20675,1572
+20676,70129
+20677,59863,13408
+20678,66342,70292,6512
+20679,52504,10837,63216,44326
+20680,46128,22450,27819,35837
+20681,22044,67543,56150,21830
+20682,49392
+20683,76952
+20684,50311,61242
+20685,46408,78993,70927
+20686,1918
+20687,1780
+20688,19059,15681,8807
+20689,30229
+20690,5025,12961,71297,57945
+20691,20500,59752,48658,67020
+20692,48461,1498
+20693,42717,46752,77070,50491,43709
+20694,14500,80226,38439,26167,11695,78072
+20695,59867,38319,77911,62093,28663,66328
+20696,18863,39047,23814
+20697,48328
+20698,52677
+20699,46400,70368,56688,77188
+20700,42287
+20701,53906,61098,69813
+20702,71153,14778,69960,13750,78901,51141
+20703,16918,47785
+20704,39652,6615,19854
+20705,66215
+20706,7053
+20707,3791,24046
+20708,46481,77976
+20709,31938,19443,65933
+20710,13579
+20711,42062,19487
+20712,55377,76305
+20713,72408
+20714,35203,26253,19753
+20715,3638,49244
+20716,67156
+20717,1473,16499
+20718,80774
+20719,30383,71806,7992,78513
+20720,35247
+20721,45
+20722,42542
+20723,29119,70319,49744,11748
+20724,43841,1543
+20725,52165
+20726,1915,32009
+20727,38831
+20728,81846,24775
+20729,50284,47020,10627,57858
+20730,65734,45401
+20731,25166
+20732,71639,64964
+20733,18449,14628
+20734,78601
+20735,69255,77100
+20736,22318
+20737,65675,52786
+20738,79182,54457
+20739,1678,17420
+20740,12157,80503,7192,27670,24712
+20741,53941,78790,59487,32023
+20742,73774,53088,26860,36273
+20743,79595,16022,77291,78577
+20744,24582,6570,80685
+20745,51594
+20746,81507,13449
+20747,79895,68206,17622,38214
+20748,63443,14081,13970,80402,32309,6933
+20749,7203,24902,56246
+20750,81882
+20751,23226
+20752,23587,56073,36161,48281
+20753,42885
+20754,24577,20701
+20755,38193,80126,46327
+20756,35343
+20757,22851,37961
+20758,2387,12519
+20759,70239,7623
+20760,23259
+20761,20823,65566
+20762,26286,65893,78583,11253,62200
+20763,12508,22267
+20764,80559,15148,80580,46067
+20765,46684,20453,8538,31538,13315
+20766,19960,7677
+20767,61794,27973,56509
+20768,10976
+20769,22768
+20770,74776
+20771,22790,8303,39999,56984
+20772,20205,77618
+20773,38154,66048,34708,41959,65590,26152
+20774,4712,19427,62911
+20775,1286,11367
+20776,56382
+20777,12382,48001,22965
+20778,34130
+20779,73164
+20780,80661,40639,59371
+20781,19323,80504
+20782,44196,21837,27170,59295
+20783,24435
+20784,54406,262,41113
+20785,55094
+20786,64873,38457,51269,29996
+20787,42800,13928,57781
+20788,43721,25753
+20789,68825,33812
+20790,60549,13469,70960,80208
+20791,18397
+20792,16540,74221,23404
+20793,40295,13070,81610,67932,67433
+20794,61849
+20795,62879,33421,70204
+20796,65564,55633,67180,73202,3719,58989
+20797,13115,45974,60617
+20798,68380
+20799,4968
+20800,15556,64794,15203,58886
+20801,81149,554,1238
+20802,51439
+20803,77690
+20804,42829,39839
+20805,28826
+20806,77587,61394
+20807,66109,2483,37840,1208
+20808,33919,951,21192,37612,23346
+20809,54026,67457,18424,26209,38700,26980,46910
+20810,64044,5363
+20811,14971
+20812,40456
+20813,32789
+20814,35862
+20815,53475,45927,51075
+20816,19352,66705,6206
+20817,81549
+20818,70894,62655,62804
+20819,21672
+20820,25223
+20821,32699
+20822,42785,69690
+20823,1945,38008
+20824,17224,51457
+20825,19287
+20826,71972,1421,62055,76761
+20827,19494,3613,72178,68817,51758
+20828,99,40418
+20829,34265,50559
+20830,63120,38144
+20831,28665,31241
+20832,23143,30491
+20833,41193,42044,21100
+20834,17300,58326,75467,7455
+20835,26510
+20836,9886
+20837,69676,51797
+20838,16888,19747
+20839,12456
+20840,44465
+20841,21579,69732
+20842,76218
+20843,61318,44039
+20844,76415,51899
+20845,60913,7894,16470
+20846,74446,7274
+20847,45087,42125,65641,78839,33990,59768,72869,38731
+20848,58395
+20849,77668,65200,67971
+20850,73069
+20851,63391,52803,25288,22848,64276
+20852,74303,19412
+20853,23417,38794,37004,38811,50289,77119,1115
+20854,68728,13981
+20855,49375,31826,20248
+20856,49553,38626,4381
+20857,10710,70599,50512,68649
+20858,47886,64835
+20859,21006,63786,10568,14479
+20860,38845,30460
+20861,33590
+20862,68074
+20863,56220,56955,68624,69094,123
+20864,3462
+20865,21162
+20866,6007,39940,7234,19055
+20867,58347
+20868,75076,615,27895,47546,49784,75889,18735
+20869,77831,80109
+20870,18793,57879,42147
+20871,79705,65351
+20872,4388
+20873,52392,7741,48222
+20874,35958,25691
+20875,22700
+20876,48667
+20877,46253
+20878,40217,18596,17533,22310
+20879,19036
+20880,61414,1775,72103
+20881,78332
+20882,70507,65922,48102
+20883,52889,19317,44328
+20884,2846,73514,5721,6175,56178
+20885,30825,68850
+20886,34043
+20887,536
+20888,4764
+20889,1319,63734
+20890,39302
+20891,39968,74646
+20892,56084
+20893,57801,15243,29397,31798
+20894,72784
+20895,79785
+20896,27308
+20897,378,80650,37229
+20898,43270,23116
+20899,65972,69777
+20900,43577,50208,43657
+20901,81584,71337,27578
+20902,1928
+20903,7100,52700,20606,57396
+20904,52498,5011
+20905,24034,60952,38536
+20906,57742,18206
+20907,12787
+20908,36668,52712
+20909,28846,68593
+20910,71181,8303,38790
+20911,38631,68110
+20912,32323,44798,6481,37171
+20913,23746
+20914,35829,21754,73135
+20915,31285
+20916,2607,5412
+20917,45161,75633
+20918,21169,66597,4283,9057,34021,48559
+20919,21351,10472,48709
+20920,41233,19980,16974
+20921,24421,40208,4473,52852
+20922,59315
+20923,65411,22064,2683,33057,79998
+20924,23464,28699,48426
+20925,61208,61493,42430
+20926,26735
+20927,57184,75489,47882
+20928,1895,2051
+20929,55933,29031
+20930,13651
+20931,73764,66826
+20932,41591
+20933,12933,28789,77258
+20934,49328
+20935,6702
+20936,33344
+20937,35582
+20938,65699
+20939,41410
+20940,51108,64142,74966
+20941,75699,36965,20359
+20942,57902,69060,66098,5187
+20943,74201
+20944,27681,70315
+20945,9107
+20946,73809,79055,73368
+20947,63526,57465,43775
+20948,81873,69453,58881
+20949,59444
+20950,2679,66217
+20951,78846,72197,77478
+20952,1905
+20953,48194
+20954,11768,56585,5176,61829,23626
+20955,9819
+20956,2636,53160,16615,48677,24957
+20957,77612,26182,15033,44392,10653
+20958,8685
+20959,69969,62989
+20960,46897
+20961,39956,55517,31548
+20962,20301,28131,9536
+20963,77819
+20964,76169,64606,81490
+20965,49067
+20966,46349,48043
+20967,27442,3822
+20968,68797,45479,46230,73487
+20969,572
+20970,12061,8974,80740,56283
+20971,80950
+20972,67773
+20973,43922,51239
+20974,27188
+20975,7096,74402
+20976,74952
+20977,20677,2003
+20978,69093,42625
+20979,50421,28456
+20980,56589,26845
+20981,72699,26809,3052
+20982,35077,998,54606,57691
+20983,36923
+20984,22007,63249,56831,27428
+20985,11944,23202
+20986,42685
+20987,78255
+20988,56725,34644
+20989,72784,71510
+20990,33908,19800,73101
+20991,5787
+20992,71079
+20993,67932,22554,62730,40418,76770,64747,66390
+20994,52709
+20995,8531,77255
+20996,39512,57109,68196,62856
+20997,6359,30018
+20998,49816,3922,2267,25882,64492,51788,22705,7236
+20999,29719,80682
+21000,13885,2616,34298
+21001,1849,16478
+21002,18394,24786,75770,4518
+21003,67532,61822,48122
+21004,1751
+21005,7932
+21006,43226,16227
+21007,53998,33329
+21008,15589
+21009,59797,53951,61916,47146
+21010,69282,49951
+21011,68483
+21012,80291,21026,66231
+21013,50257,17696
+21014,64810,44377
+21015,42920
+21016,2574
+21017,55190,66551,44156
+21018,5288
+21019,67311,15173
+21020,42387
+21021,178
+21022,12385
+21023,66140,53833
+21024,57038,58774,78264,54082,37636
+21025,40032,9538
+21026,58939,52790
+21027,30649
+21028,16861,45244,51461
+21029,45461
+21030,51216,80818,1972,35008
+21031,22872,66585,27424,50477
+21032,58362,14866,66383,76521,37543
+21033,3324
+21034,13794,64217
+21035,15749,7193
+21036,56245
+21037,73857,28366,19475
+21038,75699
+21039,1659,62948,25965
+21040,15263
+21041,65279,24230
+21042,24736
+21043,59969,40264
+21044,69962
+21045,37255,71564,28924
+21046,14097,77025
+21047,28764
+21048,13006
+21049,12305,30589,42811,5145,40912,56401
+21050,32489,81380,55867,42450
+21051,33945,58286,3202
+21052,72613,62048,16491,69270,65000
+21053,72778,22232,34630
+21054,18689,11959,56282
+21055,29663
+21056,52397,39218,6812,2123
+21057,51763,7532,23165,18182,3489
+21058,4442,67838,23808,60396,38740
+21059,18578,6721,9238
+21060,7129,53208,25376,19797
+21061,29663
+21062,17756
+21063,72685
+21064,16349,583,80468
+21065,25254,78283,55691,28630,77081
+21066,7975
+21067,5055,23496,43373,38656
+21068,29228,55867,55242,24591,35422,22710,53090
+21069,18706
+21070,51577,60692
+21071,39394,32966
+21072,14409
+21073,10253
+21074,40235
+21075,10990,77718,73792,22
+21076,8282,50866
+21077,30784,10908,34302,68883,23065
+21078,29737,14948
+21079,28417,70091,74422,6057
+21080,40038,23894,40148,21852
+21081,42806,67534,34737
+21082,25048,30881
+21083,73074,15773
+21084,64670
+21085,35520
+21086,35829,41304,67499,14584,81099,80149,64960
+21087,4090,34851,3498
+21088,61021,23519
+21089,68301,73706,23954,70849,56838
+21090,52430,56868,38503
+21091,42487,41763,14450,17294
+21092,8520,66598,56685,23507,74881,42212
+21093,11053
+21094,17577,4591,59205,34695,5428
+21095,68468,76387,46523,70530,11141
+21096,618,32885,35122
+21097,27024
+21098,60102,55853
+21099,21225,27260,43701
+21100,6257
+21101,76674
+21102,37867,24713
+21103,80963
+21104,31264
+21105,58638,61003
+21106,74677,76234
+21107,27832
+21108,11348,48875,32806
+21109,8213,3244,74126
+21110,48917,9383,18423,44606,6515
+21111,3164
+21112,45119,74489,73189,20462,73743,6751
+21113,60323,80688
+21114,52103,45285
+21115,55800,31216,3865,26954,74044
+21116,22508,43078
+21117,23731,67424
+21118,38842,80944,74053
+21119,41617,12780,21261,2708
+21120,43299,2121,47350
+21121,80684,32020,63572
+21122,75593,61615
+21123,20171,17436,27988,39299
+21124,38982,65250
+21125,31692,40642,69730,5984
+21126,19293,60842
+21127,51988,64786
+21128,44429
+21129,48004,58266,31813,68151
+21130,54166,23544,68544
+21131,56727
+21132,22388,46940
+21133,57056
+21134,14194,40283,14699,62005,45436
+21135,21138,67911,74036
+21136,23085,78533
+21137,30125,38967,772
+21138,53879
+21139,64621
+21140,17186
+21141,21800,6070,63465
+21142,79742
+21143,44331,3479
+21144,25250,16248,40250,60124,28378,40939
+21145,65313
+21146,22835,37863,70804,7943,21341,24074
+21147,67505,69063,37421
+21148,57098,77553,22582
+21149,62064,5859,37355,3649
+21150,17756
+21151,17400,60129,43296,82112
+21152,47815
+21153,37648
+21154,47777
+21155,20526,32317
+21156,62582,22102,17330,15025,55889,50918,35325
+21157,12224,4666,9907
+21158,63110,70837,7430
+21159,2022,56162,29459,15291,34885
+21160,46921,56536
+21161,24860,35102,21686,10825,10788,183
+21162,59963
+21163,14431
+21164,49775,13058
+21165,21985,10641,461
+21166,26509,57787
+21167,65112
+21168,70011,31464,16028
+21169,76826,66926
+21170,14359,34256
+21171,68924
+21172,54361,24372,16603,27141,58496,13531
+21173,39883,61962,56190
+21174,46377,32405,80083,67938,30162
+21175,69924,76381,9295
+21176,65454,49841
+21177,16654,32953
+21178,63061,41561
+21179,31196
+21180,69348
+21181,55278,31629
+21182,19512,70169,79553,719,70454
+21183,81640,14596
+21184,65171
+21185,53901,54356,68713
+21186,42326,21120,77778,10787,45153
+21187,52109
+21188,23643
+21189,80588,51016
+21190,70637
+21191,59927,9463,1186
+21192,78619
+21193,48503,17301,51583,37329
+21194,48788,49032
+21195,63393
+21196,13766
+21197,12350,28128
+21198,18004,21184,13367,18147
+21199,62136
+21200,10512
+21201,779,36652
+21202,71818
+21203,30114
+21204,50049,13546,72662
+21205,12625,1995
+21206,49031,34944,77198
+21207,17775
+21208,42338,16066,77616,27750,8064,59709
+21209,57784,10900
+21210,9483,4645,54506,70682
+21211,30002,1823,75587
+21212,62333,3181,61430
+21213,7489,75694
+21214,6559,39485,53006,12381
+21215,26528,19530,80520,36641,75572
+21216,55355,32409
+21217,73831,64341,2530,75601,46251
+21218,13343,11486
+21219,32349,78556,79774
+21220,8248
+21221,36207,58473,81111,7439,34297
+21222,64040,13008,17779
+21223,29497,24676
+21224,53446
+21225,11881
+21226,81796,7734,21443,18732
+21227,71423,17251,52299,22506,43420
+21228,80503
+21229,35129,53010
+21230,12872,47876,13621,51624,20049,26020
+21231,28856,64028,36285
+21232,49124,7454,46391
+21233,7775,8640
+21234,36218
+21235,20966,35315,61076,52313
+21236,56536
+21237,69969
+21238,64866,59969,81660
+21239,45993,56657
+21240,79275,1462,3967,81458,2710
+21241,59091
+21242,2476,45161,31139,18971
+21243,3951
+21244,32177,23259
+21245,12613,72222
+21246,25120,13782,75613,38733
+21247,28365
+21248,21580
+21249,22277
+21250,45078
+21251,73806,78542,66129,63522,75022,41421,18397
+21252,78348,18444,71074,56322,72307
+21253,22209,39409,23687
+21254,65374
+21255,16306,50527
+21256,70303
+21257,10285,30323,5277
+21258,39519,6300
+21259,62878,1595,77237,78471,45708,23770
+21260,66040,74962
+21261,36609,22296
+21262,28829,66384,55965,79687
+21263,71789
+21264,78443
+21265,14815,45507,395,69232,42833
+21266,19003,67175,27062
+21267,35240
+21268,53766
+21269,67830,23308,36172
+21270,78008,16417,1781,10779,5430
+21271,73781
+21272,31655
+21273,75667
+21274,78490,24947,51168
+21275,64798,76629,76562,1672
+21276,28553,358,63563
+21277,55061,52685
+21278,39146,9040
+21279,33558
+21280,28830,57190
+21281,60511,80824,13224,10207,75478
+21282,41470
+21283,21233,57424
+21284,25220,53605,17412
+21285,43677,31739
+21286,7676
+21287,59818,45750,41597
+21288,34037,67203,25233
+21289,26925,23725,31838
+21290,14497,34757
+21291,81362,24660,59751,68289
+21292,1617
+21293,53227,58424,41287
+21294,13061
+21295,78083,45512,16130,71235
+21296,21758
+21297,76747,31500,15291
+21298,72557,41539,3835
+21299,37306,61869,5580
+21300,11705
+21301,62456
+21302,5071
+21303,2912,81186
+21304,69555,64563
+21305,80940,50908
+21306,19733,42768
+21307,48158,28789,11889,76041,9146,36125
+21308,30089,81355
+21309,1705
+21310,21409,75225
+21311,65243
+21312,77474,80597,29611,80356
+21313,58939,22638,60852,50478,51818,17914
+21314,5821,75755
+21315,52071,22572,38734,18001
+21316,62149
+21317,31717,71754
+21318,57983
+21319,36930,54179,58948,57384,18621
+21320,49436,79966,14191
+21321,5415,56454
+21322,31200
+21323,31916
+21324,10808,9886,8989
+21325,71776
+21326,7280,19415,25293
+21327,64363
+21328,31643,8979
+21329,61304,62597,40411
+21330,22475,10790,39813,69158
+21331,29325
+21332,18522,47022,38008
+21333,14755,81208,79723
+21334,53050
+21335,57275,74075,17745,17023,20250,69468
+21336,58741,21548,10096,59454
+21337,49268
+21338,26397
+21339,70411,39414,34439
+21340,6273,45712,68081,56139
+21341,2357,11331
+21342,20765,7635
+21343,15102,61007
+21344,31731,63926
+21345,53083,12939
+21346,72219
+21347,4866,50600,54389
+21348,38348
+21349,40519,30617,4398
+21350,61082,25794
+21351,24575,5495
+21352,5037
+21353,80368,45018
+21354,12758,75101
+21355,72202,30026,67023
+21356,43720,68847,77080
+21357,18518,73003,36054,2972,21811
+21358,36510,41078,28751
+21359,5583
+21360,26747,12344
+21361,62366
+21362,50152,54393
+21363,75889,75220,66752
+21364,47723,4392,14191,56507
+21365,56001,52639,45442,81749,5626
+21366,34561,36212
+21367,31208,45867,2915
+21368,24182,9302
+21369,12911,79132,16386,70023
+21370,61522
+21371,56935,31798,31386,10931,39045
+21372,6085,41411
+21373,11988,42510
+21374,76423
+21375,71193,72692,17395,3089,37982
+21376,43949,20464,8817
+21377,550,10408
+21378,34082
+21379,16938,14447
+21380,10499
+21381,42515,49537,30976
+21382,9544,66002
+21383,76608,69087
+21384,25223
+21385,35958,80680
+21386,27989,8955,9011,81423,73524
+21387,18222,25105
+21388,29907,42005,57468
+21389,54944,36331,8246
+21390,77791,21752,73137,18400,79605
+21391,53029,43239,70591
+21392,47404,72604
+21393,39418
+21394,62012,10086
+21395,16260,45840
+21396,60790
+21397,65300,73037,35219,44809,64937,80591
+21398,49110,55479
+21399,59761,73553
+21400,26470,79393,75688,76492
+21401,58542,51253
+21402,61019,28995,52769
+21403,72627,79633,74807
+21404,56130,7801,64345,35655
+21405,79647,32656,30078
+21406,25141,78226
+21407,36473
+21408,13792
+21409,34333
+21410,44256,45280,1644,6849
+21411,79634,13561
+21412,10385,33769
+21413,55353,66572,36910,50710,70861,18383,48127
+21414,81210,78110,79985,11651
+21415,1112,6508,59890,67532,48101
+21416,13007
+21417,23842,34299,47330,12068,19649
+21418,76041,64848,80451,1339,40191
+21419,19380,42508,40514
+21420,51599,19525,25034,11429,48105
+21421,72178,76711,32336
+21422,17443,14880,23645,11889
+21423,28693,64056
+21424,49920
+21425,70496,52239
+21426,36283,61993,54575
+21427,29744
+21428,6559
+21429,23882,69188
+21430,13664,1465
+21431,28810,31948
+21432,2885,65451
+21433,8823
+21434,58082,19790
+21435,25745
+21436,10256,56955,38374,33858,69810,17669
+21437,27374
+21438,52685
+21439,36281
+21440,68304,68809
+21441,67364,2449,37666,40263,18012
+21442,17752,53514,44267
+21443,22316,67293,45374
+21444,40090
+21445,67183
+21446,20714,52847
+21447,36410
+21448,8043,17503
+21449,4599,26262
+21450,33716
+21451,50748,44449
+21452,27922,13357,62110,30561,49919
+21453,8334,52844
+21454,31500,69748
+21455,23100,81462
+21456,51769,60372
+21457,79975,49478
+21458,78746
+21459,63267
+21460,69166
+21461,65953,70898
+21462,46323,74330,38060
+21463,46505,49074,60633,57830
+21464,69744
+21465,15348,8053,10603
+21466,38501
+21467,7078,30872
+21468,8206,61620,61482,54607
+21469,78526,48658,8260,31237
+21470,12069,45352
+21471,48962
+21472,30487
+21473,22965,22908,67446,57724,53377,74740,1056,67104
+21474,23066
+21475,32279,15270,4174
+21476,78515
+21477,45111
+21478,61402,46174
+21479,60441
+21480,34167,32659
+21481,57483,53639,10498
+21482,27502,22069,37947,63496,60849
+21483,43346,31486,46099
+21484,44634
+21485,50661,54264,1705,77066
+21486,37429,39412,32998,44482
+21487,47252,43968,38910,1740,20875
+21488,49192
+21489,29865,43168,37136,6290
+21490,81371,64848,59864,69705
+21491,5192,72691
+21492,10325
+21493,9882
+21494,62895,59993,72037
+21495,16631,15134,68989
+21496,3776
+21497,38416,76858
+21498,22328
+21499,43275,62590,41112
+21500,3390,35316
+21501,23683,59885,71451
+21502,53208,51789,77308,71835
+21503,74692,41106
+21504,2727,23626
+21505,20453,10078
+21506,74174,60855,67705,15832,16536,44250
+21507,4756
+21508,73400
+21509,25943
+21510,60757
+21511,34304
+21512,19164,7424,53698,31881
+21513,34238,33038
+21514,40575,25814
+21515,9233,82004,14895
+21516,69667,48761,20347,21474
+21517,1298,52733,57988
+21518,64149,26331
+21519,60658
+21520,12454,10056
+21521,15476,54671,8260,35497,69942
+21522,74807,6374
+21523,2212,15174,69443
+21524,30125
+21525,58130,50434
+21526,64241,43579
+21527,61932,39386,75658,31915,42386
+21528,6966
+21529,25734,42494,2065
+21530,72389
+21531,75415,23976,15306
+21532,27304
+21533,19535,17764,24656,53034,46779,17774
+21534,9941
+21535,2411
+21536,22496,2938
+21537,47827,18995,21280,13064,47653
+21538,22270
+21539,23168,5833,60638
+21540,66428
+21541,43165
+21542,29604,79527
+21543,22496
+21544,34230,57166
+21545,34296,56245,35853,50740,35873
+21546,75358
+21547,31547
+21548,74112,29217
+21549,9529,15580
+21550,3550
+21551,48649,13089
+21552,37671,36711
+21553,81710
+21554,61710
+21555,43424,23941,52040,82144
+21556,66132
+21557,52746
+21558,39908
+21559,29754,76744,24167
+21560,17199
+21561,77628,34726
+21562,49588
+21563,10060,53070,19729,53935,12765
+21564,70390,37447
+21565,56765
+21566,64099,53625,47219,76919,26857
+21567,33027
+21568,71931
+21569,6672,58409,59933,54697,71584,42017
+21570,64302,59948,3440
+21571,57077
+21572,67658
+21573,44571,1971
+21574,62294,43305
+21575,6314,3065
+21576,20121
+21577,22818,8439,43546
+21578,42240,48239,40602,55229,77661,35638
+21579,64494,65874,27607,80199
+21580,63531
+21581,21222
+21582,61817,15274
+21583,69887
+21584,65989,9095,79643
+21585,59304,34142,45781
+21586,48357,29658
+21587,14377
+21588,1406
+21589,70045
+21590,44546,355,30018,36291
+21591,329,46285,38374,8365
+21592,23910,24225,77292
+21593,28239
+21594,61357,31432,63090
+21595,13432,64183,22662
+21596,41367,10502
+21597,62394,23610,45079,73292,5295,16318
+21598,62096,46839,4831
+21599,30231,26760,37955,61333
+21600,57194,77758
+21601,69445,22300,63149,6184,21612,38772,67960,52994
+21602,39178,37689,11210,22497
+21603,76826,43365,52508,27837
+21604,38641
+21605,6232,39879
+21606,52593
+21607,26612
+21608,75802
+21609,26906,27084
+21610,75026,77051,66009,125,49272,49627,15600
+21611,49763,14063,48243
+21612,10078,9964,67151
+21613,76446
+21614,81478,27308,59883,40534
+21615,73650,74200
+21616,41494
+21617,44042
+21618,7160,10292
+21619,15091,20673
+21620,16582,65289,59811,82081,18660
+21621,71402
+21622,24067,9536,28740
+21623,48866,59601,20054,22415
+21624,48667,22704,50081,51302,20005,40925
+21625,53342,51242,39920
+21626,22489,3216
+21627,16283,15052
+21628,60748,65162,42876,81005,27773,76223,39161,4063,34251,69753
+21629,18693,34789
+21630,60795,40691
+21631,1034
+21632,23019,69063,5527,67289
+21633,33237,55294,70589
+21634,62177,69480,60745
+21635,30388,20477,77258
+21636,8990,68013,57927
+21637,64596
+21638,51533,9295,27010,76997
+21639,67819,7938
+21640,55135,27259,27407
+21641,80131,48576
+21642,39194,15612,65162,48419,20342,35845,4320
+21643,46807
+21644,24487,31756
+21645,47700,17745,58271
+21646,63701,33000,73855
+21647,41434,25930,52987
+21648,68568,26553,14292,13636,52391,66471
+21649,60238,67992,21925
+21650,4678,48415,4908,26630,51253,25492,45740,75370
+21651,64010
+21652,17113,81290
+21653,73294,72363
+21654,80319
+21655,10979
+21656,12794,14797,64735,59125,68760
+21657,70850
+21658,77037,78535
+21659,64471
+21660,22043,5703
+21661,7890,66838,52446
+21662,24908,73432,66778,50499,70582
+21663,72952
+21664,9382,79758,20715,21493
+21665,31435,63381
+21666,12497,59826,24471,7482,62748
+21667,46269,17329
+21668,58351,39611,10839,79528
+21669,10823
+21670,23820,60542,76094
+21671,17587
+21672,31760
+21673,44803
+21674,22683
+21675,68848,65032,35822,46829
+21676,12085,6688,12338,42726,67637
+21677,50882,81219,74218,41864
+21678,7217,26628,64619,10031,52966,63305
+21679,55807,59348,55728,64558
+21680,31642,36419
+21681,17568,79805,23461
+21682,19791,12918,43792
+21683,64665,23259,41826
+21684,77084,48056,17460,1865
+21685,42580,47802,71805
+21686,12186
+21687,2265,13532,57111
+21688,78041,71355
+21689,46682,42263,43397,35548
+21690,70888
+21691,9481,80155
+21692,14101,31342,81990
+21693,80628
+21694,70379,7875
+21695,81526,50070,35993,59334,40648,43820,38665,6989
+21696,6495
+21697,55951,12963
+21698,61131
+21699,42128
+21700,80920
+21701,53555,71543
+21702,21787,76062,7621,71990,1116,73497
+21703,54788,61938
+21704,42565
+21705,5123
+21706,4894,67747,67002,75043
+21707,51618,61571,30159,6478
+21708,77664
+21709,39333,79403,31375
+21710,40733,57124,6554,62479,68365,77949
+21711,44431,24083
+21712,14228,20745,8705
+21713,43829,2794,52903,72660
+21714,19504,54975,30635
+21715,9004
+21716,24038,35802,12927
+21717,63673,23191
+21718,7136
+21719,4599
+21720,37612,44042,43745,58201
+21721,36203,51603
+21722,71879,28276,65226
+21723,75540,48607,77690
+21724,38175
+21725,22759,25036,22475
+21726,68104,79051
+21727,72438,28152,25645
+21728,73248,36160,38971,52962
+21729,28621
+21730,11886,50287,68543,29263,43443,57644,49311
+21731,14088,2617
+21732,46607,41280,55543
+21733,72327,39731
+21734,66833,65634
+21735,12339,1781
+21736,79442
+21737,395,52220,19766,44622
+21738,45844
+21739,44445
+21740,67645
+21741,121,61485,37845,51699
+21742,68137,14794
+21743,6265,42178,53845,9140,12803,10436,38737
+21744,14831,43706,67417,77043,58519
+21745,16031
+21746,67774
+21747,38362,4591
+21748,65868,40917,76836,19062
+21749,22180,69494
+21750,24366,42818,22990,76978,35198,75952,43146
+21751,20394
+21752,9177
+21753,80802
+21754,70759,40694,17108,77812
+21755,24314
+21756,61389,12508,21249,48339
+21757,24956,44412
+21758,73098
+21759,26281,16125
+21760,53491,74754
+21761,2458,23481
+21762,76568
+21763,30044
+21764,14187,45815,73416
+21765,58040
+21766,39839,34130
+21767,42815,40703,71059,62345,76350,29344,32934,82169
+21768,66010
+21769,18260
+21770,10421,1551,74072
+21771,60431,72741,17542
+21772,26663,36874,9210
+21773,14375,61864,44394
+21774,35992,42197,74643
+21775,69973
+21776,35766,2502
+21777,24980
+21778,22164,6717
+21779,56671,28040
+21780,60282,45654,51500
+21781,39770,39382,42559
+21782,32566,79951,44709,6279
+21783,22208,51924,62232
+21784,10588,61513,23893
+21785,80196,62656,23600,78552,59428
+21786,36227
+21787,3727,70668,22488
+21788,53848
+21789,18538,43687,32663,77868,45709
+21790,48328
+21791,54491
+21792,41656,67705,26859
+21793,72446,61000
+21794,48781
+21795,28826,66126,76426
+21796,4396
+21797,5632,45365,66956
+21798,40123,46697,72502,21700
+21799,1807,23313
+21800,78833
+21801,17584,70051,26320,80794
+21802,39354,26259,42926,75905,42233
+21803,43350
+21804,9788,74327
+21805,32811,15741,20530
+21806,71986,53013,81576,60637,71908,81446
+21807,56510,28739,20069
+21808,56925
+21809,57686,58295,71208,45252,23000,22618,50430
+21810,80799,3171
+21811,79451,63962
+21812,18322
+21813,64158,43720
+21814,32886
+21815,79134,38991
+21816,70238
+21817,17368,19701
+21818,13592
+21819,27966,11352,7450,72758,63504,18472
+21820,59899,34472
+21821,63858,45306,11396
+21822,74047,43607,13451,19003,68370
+21823,65335,63917
+21824,79785
+21825,56,29874
+21826,73676,74565
+21827,73091,43011,80680
+21828,23957,33782,76997
+21829,1578,37481
+21830,59969
+21831,42966,16210,215,36786
+21832,61340
+21833,81162
+21834,49398,77071
+21835,61741,45274,47096,1636,11948
+21836,22728
+21837,68911
+21838,42630,56824,59692,2400,11245,47139
+21839,81835,217,75083
+21840,74862
+21841,37660
+21842,12861
+21843,5124,26844,43241,36603,42025,10630
+21844,52421
+21845,71592,58803,57785
+21846,55420
+21847,45685,3788,35514
+21848,9882
+21849,60626,27653,44980
+21850,37039
+21851,38232,4271
+21852,70848
+21853,22718,38782,49362
+21854,69135,21749,3358
+21855,25544,17417,66240
+21856,18283,3197,30765
+21857,24559
+21858,9829,1652
+21859,20064,76306
+21860,33656
+21861,21010
+21862,22323,49969,8778,15615,57694
+21863,11125,27758,25311,26588
+21864,75433
+21865,60488
+21866,22783,60893,76513
+21867,36419
+21868,7918,49645
+21869,53358,71403
+21870,23654,33594,44335
+21871,66058,12815,63522,36125
+21872,65385,11249,22332
+21873,738
+21874,24083
+21875,51409
+21876,58343
+21877,30491,68589
+21878,75143
+21879,12706
+21880,11141
+21881,38229,36928
+21882,57527,24987
+21883,76014,68605
+21884,24985
+21885,49284,2010
+21886,2662,47410,47454,63666
+21887,5798
+21888,48470
+21889,32440
+21890,76883,7792,10285,78161
+21891,78259
+21892,67038
+21893,21836
+21894,71258,69474,63417,8928
+21895,69540,3261
+21896,65740
+21897,35320
+21898,38939,49836,69819
+21899,11791
+21900,52612,52304,77739
+21901,70651,50506
+21902,4935,79036
+21903,34261,55654
+21904,9611,67504,4177,67916
+21905,15378,48446,79051
+21906,56208
+21907,46319,5805,16872,17286
+21908,16385,21660
+21909,60988,24468
+21910,70097
+21911,49584
+21912,70912,13016
+21913,66468,45930,42437,16281,15762
+21914,49475
+21915,7062,58082,9369
+21916,81048,17719,76574,2620
+21917,3541,33574,75878
+21918,1189
+21919,21468,72534
+21920,34169
+21921,81140,68557,14413,73912
+21922,70506
+21923,28634,58429,56856
+21924,1853,75043,9246
+21925,20477
+21926,41076,25890,63699,59040
+21927,77212,46974,46905,35200,16598
+21928,896,18351,6362
+21929,18296,23810,55540
+21930,29525,10071,12083,72079,40821,2881
+21931,81654,63428
+21932,10840,65274
+21933,26173
+21934,77374,80636
+21935,53279,46901,4154,34181,27600
+21936,37945,47183,68404,63218
+21937,29388
+21938,31234,31008
+21939,53976,51717
+21940,36352,42371,22655,3512,50192
+21941,72498
+21942,13246,66724,8303
+21943,5186,41248
+21944,77586,40087,9220,47851
+21945,46522
+21946,18253
+21947,70005
+21948,11792,1342
+21949,28838,40787
+21950,63679,58638,17183
+21951,42147
+21952,58146,45401
+21953,15229,43444
+21954,23134
+21955,9334,6538
+21956,68527,36485
+21957,28956
+21958,24150,34993,73252,66955,29144,63505
+21959,50578,67488,56027,55955
+21960,33388,1658
+21961,49863,34377,81597,74267
+21962,5401,26076,7084,63199
+21963,81021,7792
+21964,18411,75625
+21965,26846
+21966,40434
+21967,34760
+21968,20051,1016,7647,25010,8226,44759,21846
+21969,38856,67980,27646,49628,45305
+21970,76379,41599
+21971,14990,37845,75786,80639
+21972,14600,50999
+21973,14374
+21974,57241
+21975,56799,36289,40381,70510,37030,38588
+21976,36696,47487,36904,24442
+21977,25544,37781
+21978,6961,73422
+21979,22270,17503
+21980,37935,37661,73959,29217
+21981,76656,40519
+21982,32879
+21983,6215,23631
+21984,36271,6976,50763
+21985,77087
+21986,52264
+21987,52499
+21988,50535
+21989,36466,52550
+21990,30045
+21991,810
+21992,41671,50397,41148
+21993,43597
+21994,55271
+21995,53958,53378
+21996,25107
+21997,14567,9857,72928,3611
+21998,37847,25333
+21999,32131,18917
+22000,806,2250,76098,64195
+22001,48244
+22002,68459,3118,17771
+22003,63200
+22004,12861
+22005,77015,1691
+22006,28866
+22007,76909
+22008,44430,36897,34496
+22009,69693
+22010,23864,74258,3822
+22011,74334,5056
+22012,37886,24593
+22013,27024,22062
+22014,47018,50649
+22015,9593,64652
+22016,47454,59216
+22017,40706,25718
+22018,32002,49542,82174
+22019,284
+22020,13135
+22021,59982,41459,51241,48909
+22022,55552
+22023,10877,68549,175,53649
+22024,64267
+22025,62156,37990,46854,69937,21631,14698,3708
+22026,7994,48407,49072
+22027,44146,74729,9997,5682
+22028,23008
+22029,38769,47278
+22030,37293
+22031,41716,59428,76688
+22032,44936,61110,57603,48316,7279
+22033,61219
+22034,28643,58617,61049,1310
+22035,512,47066,17335
+22036,32988,52679
+22037,79719
+22038,32545,9530
+22039,75789,77161
+22040,13109,81694
+22041,18332,45769,34725
+22042,70072
+22043,18966
+22044,23897
+22045,42163,71141
+22046,23930,75232
+22047,5329,6334,13747
+22048,75012
+22049,44186,8910,23092,60685
+22050,51338,46882
+22051,23390,64339,55361
+22052,6009,33965
+22053,52005,75023
+22054,73406,70289,42346,80914
+22055,26585,78451,77481
+22056,43151,1160,4069,35413
+22057,17224
+22058
+22059,80838
+22060,6373
+22061,23194,12384
+22062,72202
+22063,74647,62747
+22064,66752,23589,73662
+22065,48797
+22066,30009,62784
+22067,5192
+22068,26296,77392,2444,57435,59599
+22069,12571
+22070,9376
+22071,36012,13224,35373,6069
+22072,14497,20227
+22073,2263,62865
+22074,18117,48075,57953,49351,34999
+22075,73828,79865
+22076,45018,72124,53882
+22077,62712,42711,36315,73702
+22078,30742,68677
+22079,10853,70165
+22080,37493,23842
+22081,50757,29337,68733
+22082,16617,26445,70995,47374,51905
+22083,38473,58949,78313,22010,65216
+22084,28735
+22085,13923,2638,60110,67664
+22086,7335,41073,49230,71664
+22087,81666,28318,34720,56795
+22088,18517,59540,56079
+22089,82033,73063
+22090,14187
+22091,54682,54260
+22092,39585,58069
+22093,69514,59093
+22094,67228,67147,4428
+22095,58425,58438
+22096,38091,69875,1765
+22097,64738,36950,70510,21337,66850,52378
+22098,39441,19831
+22099,73235
+22100,50205,75170
+22101,9975,54963,81943
+22102,74722
+22103,81663,23918,14223,13890,73291,26879
+22104,14042,4956,41504,1752
+22105,59808,20530,29097
+22106,43581,58590
+22107,71194
+22108,69029,566
+22109,6646,47217
+22110,29353,56485,61265
+22111,75234,31368,76936
+22112,73203,75544,21769,19951,73635
+22113,23295,33054
+22114,34465
+22115,64076
+22116,69528,29924
+22117,46141,15030
+22118,55688,713
+22119,80578,62163,32809
+22120,70289
+22121,52295
+22122,39353
+22123,3684,57128
+22124,66788
+22125,33943,78447,53259
+22126,79480,18015
+22127,34138,21699
+22128,38488,1164
+22129,10781,61019
+22130,65986,78516,19334,5816
+22131,3133
+22132,81876,6628
+22133,47408,71442,9232,14791
+22134,27189
+22135,76099
+22136,73024
+22137,13679,19251
+22138,68424
+22139,24627
+22140,19038
+22141,77193,70489,39719,27297,75359
+22142,71024,77442,75450,30951,52931
+22143,66,81691
+22144,67207,58362,21749,80099
+22145,25570
+22146,891,68830,49028
+22147,28636,60670,80170,79184
+22148,23000,6687
+22149,36439,46780
+22150,79787
+22151,27249,30464,16908,14487,20252
+22152,41419,55532,35461,10707,2930
+22153,15045,25751,60149
+22154,62048
+22155,48847
+22156,44998,19109,56875
+22157,72064,12721,70476
+22158,37667,59170
+22159,58133,77314,81814,19406
+22160,14484,2375
+22161,81083,43447,1176,59093
+22162,6843,76464,18976
+22163,76467,47070,29231
+22164,8640,64462
+22165,38428,27172
+22166,2732
+22167,48004,7646,50727
+22168,78075,45413,14191
+22169,35420
+22170,57629,20996,68043
+22171,22287,36389
+22172,57710,1355,75386
+22173,34274
+22174,13324
+22175,21788
+22176,67202,6607
+22177,54955
+22178,28075,12293,11620
+22179,56794
+22180,25137,45930,19220
+22181,3323,11133,30251
+22182,59402,65938
+22183,49818
+22184,53378
+22185,49247,32369
+22186,54792,12720,18540,65340,33473,47468
+22187,36352
+22188,34253,64628,37504,66546
+22189,29856,55903,76076,72128,3285
+22190,27822,25758,68568
+22191,69063
+22192,48833,29801
+22193,52949,26604,26585
+22194,55627,72182,10751
+22195,46384,6423,32570,65569
+22196,10493
+22197,28206,74690,45587
+22198,70825,45072,57516
+22199,45148
+22200,40603,41939,43132
+22201,48986,76173,68825
+22202,67548,12092,66434,52901
+22203,3340
+22204,56543,6923,68151,33231,2670
+22205,31858,81180
+22206,1948,46325,77902
+22207,32539,50613
+22208,33828,79552
+22209,52991
+22210,50649,22236,58522
+22211,71180,15702
+22212,26214
+22213,76931
+22214,43742
+22215,5026
+22216,73484,67096,62692,46746
+22217,22651,2021,44793,61245
+22218,53077,21316
+22219,62442,23594,6507,67686
+22220,48932
+22221,7115,40735,27105,34272
+22222,51900,31054,7571,62015
+22223,17009
+22224,9616,77399,67294
+22225,31891
+22226,13863,54445,52318
+22227,23645,6137
+22228,4014,81854
+22229,1069,4226,62551,40367
+22230,23086
+22231,70703,67092
+22232,58224,58929
+22233,20382,33349
+22234,64418,39438,65920
+22235,24891
+22236,20173
+22237,66193
+22238,54328,1795,31070
+22239,63822,29567,21223,60687
+22240,29635,35053,77075
+22241,65925,41610,48672
+22242,33054,28766
+22243,50811,52443,79967
+22244,28239,11414
+22245,70498,11334,67937
+22246,56112
+22247,64283
+22248,39260
+22249,29013,8026,54266,46363
+22250,75085,57942
+22251,11279
+22252,48383
+22253,71037
+22254,15270
+22255,14256,23893
+22256,52020,1409,3258,74166,31504,47387
+22257,38379,12895,34544
+22258,23916
+22259,77713
+22260,39710,45341,5415,51243
+22261,69583,58917,70193
+22262,57840
+22263,9336
+22264,31853
+22265,15109,62984,60783,49507
+22266,64533,41281,57511
+22267,81399,23346
+22268,3550
+22269,78107,16024,58724
+22270,7935,496,52677
+22271,67291
+22272,21102,64847
+22273,22237
+22274,30932,75162
+22275,32088,51770,27518,3670
+22276,76399,59587
+22277,3994
+22278,50289,31996
+22279,10934
+22280,24317,21249
+22281,6199,43124,19736
+22282,14187
+22283,78766,60857,31064,17561
+22284,52023,34148,53104
+22285,69198
+22286,55372,10706,25098,49260,62859
+22287,22607
+22288,127,22410,37408,67519
+22289,44523
+22290,11353,80106
+22291,72606,12068,19488
+22292,69363,22565
+22293,18745
+22294,57273
+22295,82016,46269
+22296,42812
+22297,74939,47121
+22298,40486,26839
+22299,54931
+22300,42518
+22301,69234,36936,47312
+22302,64054,7053
+22303,3623,66989,53358
+22304,5487
+22305,31499,21122
+22306,59332
+22307,54288
+22308,80609,31534
+22309,10264,14084,6615,14367,54294,60569
+22310,80799,23701,58867,23164,65255,57551,51507
+22311,36822
+22312,59987
+22313,12301
+22314,54483
+22315,19297
+22316,57890,30125
+22317,12903,45874
+22318,47309
+22319,57485,55705,48951
+22320,68066,17875
+22321,67925
+22322,4930
+22323,39327,20798
+22324,23072,10951
+22325,42811,6574
+22326,16542,37807
+22327,26822,24109
+22328,17499
+22329,74630,1899
+22330,70848
+22331,13928
+22332,22692,33907
+22333,61798
+22334,47384,41177
+22335,72984,72916,65611,82147,65520,18867,59185,65366
+22336,48072,42762,64359
+22337,63844
+22338,67396
+22339,11706,54941,11238,8940
+22340,18701,39158,12689,11062
+22341,41433
+22342,54834,11616
+22343,41992
+22344,7110,62628,19310,69878
+22345,60779,69245,5632,14025
+22346,34731,13690,16078,81583
+22347,19663
+22348,21061
+22349,66123
+22350,46990,64601,57452
+22351,34197,72939,21273
+22352,38643,4938
+22353,51315
+22354,1248,69385
+22355,36666,43464
+22356,24643,3780,493
+22357,59525,38877,54434,74795
+22358,77084
+22359,9924,50276,46085,66613
+22360,74175
+22361,33491
+22362,30114,26990,18850
+22363,81764
+22364,79287
+22365,78961
+22366,71920
+22367,35245,24797,31300,45196
+22368,9822
+22369,11116,45828,27717
+22370,35984,8513
+22371,41404
+22372,1507
+22373,56420
+22374,22370,55509,42661,11607
+22375,46473,21788
+22376,57388
+22377,73229,68339
+22378,64064,54508
+22379,62294,48241
+22380,36021
+22381,42453
+22382,25425,9376,54855,57648
+22383,28621,19926
+22384,76843,61995
+22385,72296,77765
+22386,48701,20615
+22387,20798,69887
+22388,40796,61565,51097
+22389,61045,48101
+22390,23135,63229,70450,20243
+22391,61345
+22392,15403
+22393,27969,27130
+22394,76693,60647
+22395,17520,76231,23473
+22396,18580,29829,20321,36777
+22397,79504,12096,78610
+22398,8473,57503,1777,69666
+22399,64949
+22400,36040
+22401,40924
+22402,66857,7425,314,16058,17263
+22403,77290
+22404,52109
+22405,71696
+22406,31030
+22407,22306,3636
+22408,28
+22409,6629,80547
+22410,28033
+22411,30237,8156,2679,28273,18581
+22412,70995
+22413,38021
+22414,28567,49040
+22415,17358,51805,26923
+22416,58537,64349
+22417,70043
+22418,21372,7762
+22419,4877
+22420,10187
+22421,21526,82113
+22422,58478
+22423,52532,31275
+22424,65485
+22425,6672,50833,23106
+22426,33198
+22427,76355,49163
+22428,64649
+22429,34971,47466
+22430,51594,30923,35090,25762,37284
+22431,77842,4568
+22432,52980
+22433,55349
+22434,64654
+22435,77717,10070
+22436,66059,24847,79629,7364,5776,4045
+22437,70832,45769,69280,38944
+22438,61249
+22439,2694
+22440,22376
+22441,55243,69194,57366,26157
+22442,15502
+22443,64728
+22444,44276,33100,30399,55299,9888
+22445,37561,44553,52818
+22446,30288,64739,16636,1374,907,67859
+22447,33824,68810
+22448,38954,42942
+22449,45113,20407,77072,5625,43219
+22450,33508
+22451,46445
+22452,8181,64301
+22453,55609,63734,49420
+22454,11685
+22455,77340
+22456,9693
+22457,2589,8226
+22458,27241
+22459,55589
+22460,61714
+22461,14987,20579,66916,14057
+22462,37146
+22463,81907,77658
+22464,80774
+22465,66681,52769
+22466,17710
+22467,54508
+22468,24377,6082,32195,77607,42289,25550,11884,42825
+22469,14535
+22470,15263,72179,44042,56799
+22471,70752
+22472,23051
+22473,58800,32342,68605
+22474,65215,46780
+22475,19537
+22476,799
+22477,14064,64331
+22478,3822
+22479,25684,21195,63688,52579
+22480,19086,18755
+22481,48946,24767
+22482,18341,15009
+22483,13590,68776
+22484,48683,2218,78941,5267
+22485,3672
+22486,45484,34875
+22487,31057,56096,75003
+22488,15422,66462,30489
+22489,5181,39750
+22490,19998,1836
+22491,79319,25251,59368
+22492,50992,32136
+22493,66884,70684,46633,68500
+22494,43415,24375
+22495,28041,27222
+22496,14092,27117
+22497,77097,62060
+22498,1759
+22499,43724,47801,20477
+22500,28213,79145
+22501,59588
+22502,50465,24680
+22503,56718,59200
+22504,5424,1670
+22505,53378,65723
+22506,14182,13513
+22507,67850,15094
+22508,22203,21140
+22509,20944,58862,29329
+22510,62211,20768,31396,24753,37513
+22511,39695,49250,47701,33558,3209,30139
+22512,24122
+22513,71600
+22514,45350
+22515,65716,57191,74874
+22516,41734
+22517,46343,61277
+22518,77574,44781,42068,53822
+22519,57672
+22520,58559
+22521,13911,60465,32722,8116,41579,74764
+22522,15324,61888,55610,81304
+22523,19043,13878,43254
+22524,74620,21318
+22525,41542
+22526,79361,78959
+22527,68149
+22528,17743
+22529,21456,12287
+22530,15064,10664
+22531,39940
+22532,64922
+22533,21392,56070
+22534,39861
+22535,64196,81243
+22536,40701,20183
+22537,81896,25751,29660
+22538,2436
+22539,7560
+22540,34470
+22541,41911,14880,16271
+22542,178
+22543,9524
+22544,51417,45580,70013,82026,71949,58115
+22545,38871,22431
+22546,19734
+22547,36526,49703,2037,32878
+22548,3404
+22549,72884
+22550,7071,12779
+22551,77832,72593,76408,52804,14986
+22552,21933
+22553,63617,44003,45520
+22554,37003,15296,57566
+22555,29250,34097,78545
+22556,81950,13800,79167
+22557,26800
+22558,77504,19421,2348,24833,13563,39250
+22559,72121,49006
+22560,17073
+22561,55264,6732
+22562,76847,31251
+22563,63797,52244,47415
+22564,29026,7129
+22565,48825,72493,38527
+22566,70494,7803,40138,12330,63921
+22567,21938
+22568,80199
+22569,27925
+22570,54702
+22571,1174,4531
+22572,35806,9075,10346,16429,32848
+22573,78869,69261
+22574,30461,68136
+22575,73480
+22576,1039,52068,79398
+22577,8606,26528,22210
+22578,12278,58364,27264,21859,74366,76339,10025,57261
+22579,68768,43430,4190,30514,49854,35371
+22580,42109,71141
+22581,27968,332,15252,18738
+22582,33065
+22583,71615,75335,21479,78966
+22584,32808,12887,50538,36425,35209
+22585,81220
+22586,67637
+22587,19208,71987
+22588,39164,51797,36932
+22589,49951,43744,69889
+22590,60678,76031
+22591,73030,31832
+22592,57898
+22593,32594
+22594,13214,42922
+22595,27027
+22596,55915
+22597,20893,43014
+22598,25924
+22599,15635
+22600,11684,73754
+22601,25919
+22602,66251
+22603,54658,31098
+22604,25526,42610,57081,22776,56152,76503,3783,32552
+22605,48097
+22606,17173
+22607,8309,35476
+22608,11235,62699,118
+22609,7657,43854,43072
+22610,8431,21020
+22611,43349,6425
+22612,4983
+22613,13215,20834,73102,12847
+22614,47636,55584,42260,12281
+22615,24504,66793
+22616,74724,76577
+22617,6660,149,79890
+22618,22027
+22619,22835,80683
+22620,7351,692,62424,6024
+22621,79434
+22622,75044,10763,30356
+22623,47401,28230,42602
+22624,62514,29610,1305
+22625,57552
+22626,7158,54503
+22627,74686,68587,2691
+22628,23581,21040
+22629,15623
+22630,67453,58131,78157
+22631,76843
+22632,37690,74857
+22633,17943,48788,71237,14120
+22634,31251,68920
+22635,50415,52261,75587,65213
+22636,3865
+22637,67253,47136
+22638,5665,24938
+22639,17811,23958
+22640,72130
+22641,41594,6168,52612,43774
+22642,5757
+22643,9570,58352,73719
+22644,42090
+22645,3729
+22646,23006,38749
+22647,9220,79572,62760
+22648,33283
+22649,51097,81840
+22650,42665,63688,77813
+22651,11507,12987,33562
+22652,57476
+22653,12079,72040
+22654,18850
+22655,12932,31804,11372,75365
+22656,29346,47726
+22657,64983,62127
+22658,16540
+22659,52637,20686,25037
+22660,80430
+22661,24161
+22662,66473
+22663,61395,62532,4423
+22664,9355
+22665,1189
+22666,64260,73614
+22667,77799
+22668,29604,10853
+22669,28867,72116,60536
+22670,37475,76941
+22671,79705,5123
+22672,41845,73544,9327
+22673,61447
+22674,19372,58133,70716,58414
+22675,47217,47065,48014
+22676,27864
+22677,29763,80848
+22678,8017,56742
+22679,579,8135
+22680,14417
+22681,33148
+22682,39613,36681
+22683,65005,10299
+22684,13368,65265,14508,6305
+22685,39934,44553,79415
+22686,40418,81420
+22687,16256,75632,72816
+22688,7965,28636
+22689,49734,48631
+22690,5971,21972
+22691,24192
+22692,28307,7660,76748
+22693,60451,73701
+22694,80891
+22695,7953,9899
+22696,39265
+22697,10815
+22698,10184
+22699,60222
+22700,62149,76171
+22701,32946,32278,3129,33913
+22702,23550,60321
+22703,73248,57978,74577,57014
+22704,50586,79222,65305
+22705,60664,73459,23963,46135,39455,53699
+22706,53395,65094
+22707,74578
+22708,39715
+22709,64349
+22710,59467
+22711,15527,6924,23951
+22712,7994,10341
+22713,76491,2305,8064,62536
+22714,25107,80877
+22715,19190,81198,54781
+22716,70558,33134,12600
+22717,954,35661,65935,40136
+22718,1270
+22719,4026,80032,19323
+22720,22569
+22721,58685
+22722,57815
+22723,71731
+22724,81910,53765,80167,37675
+22725,47098,44829
+22726,75829,77417
+22727,38325,53365
+22728,75557
+22729,69254,39766
+22730,329,3208
+22731,15593,16401,74220,67022
+22732,64748,55394,39173,48831,23437
+22733,30568
+22734,36000,58714,72140,54737
+22735,21102,60750,61401,3401
+22736,30854
+22737,58593
+22738,31052,60624,35142
+22739,57442,2880,61088
+22740,8118
+22741,58993
+22742,23230
+22743,73133
+22744,78821
+22745,16781,48031
+22746,6725
+22747,8422,37677,79615
+22748,29455,21264,45388
+22749,32170,67799,30332
+22750,69188
+22751,13928
+22752,47018,37423,17961
+22753,31998,38137,48965,28267,74985
+22754,49873,33681,46091
+22755,78273
+22756,29186,76425
+22757,32785
+22758,70488,50610
+22759,10467
+22760,42922
+22761,38528,19133
+22762,10682,19796
+22763,58364,67015,36394,67096
+22764,23003,42565,55628,62909
+22765,3919
+22766,52802,36982
+22767,54838,55268,71376
+22768,73460
+22769,73902,64095
+22770,43619
+22771,10029,65179,31002,8786,21403,55133,7467,66566
+22772,29822,26876
+22773,14091,19167,32630
+22774,63552
+22775,15737,11091,37109,1122,73405
+22776,17458,12188
+22777,61277,16111
+22778,59022,34055,13578,49350
+22779,45074,21338
+22780,12396,56573,6974,81167,57703
+22781,7214
+22782,44625,77575
+22783,21249
+22784,48458,69117,52175,9681
+22785,34760,78076
+22786,10671
+22787,48861
+22788,47055,53262,11442,66411,55093
+22789,20607,2147,46240,63489
+22790,37974,8215,43758,34639
+22791,39409,80533
+22792,63051,72905,24134,57814,30971
+22793,68933
+22794,37671
+22795,3756,66966,9934,80196
+22796,81067,60091,22293
+22797,74201,26713
+22798,20215
+22799,42695
+22800,41569,1305,27459,59583
+22801,55856,31993,62586,30417,61448,21913
+22802,24582
+22803,81290,52384,41694
+22804,32373,8283,46448,58632
+22805,59955,30635,5921
+22806,75669,3551,19939
+22807,32555,13477
+22808,55343,56571,62954,72193
+22809,27384
+22810,8666,17410
+22811,20772
+22812,75727,54139,81281
+22813,20491
+22814,4016,46365
+22815,25802,48237,24071
+22816,9423,32741,79600
+22817,25747
+22818,20657,41345
+22819,53240,20657
+22820,61698,55825,33590,31091,40267
+22821,47389,33421,52431,70239,35883,10625,68255
+22822,77205,45660
+22823,5287
+22824,30841,75380,13876,15188
+22825,11410,57265
+22826,26771,9150
+22827,71732,19584
+22828,52592
+22829,56868,32973,68304,17670
+22830,39220,60082,33405,75107,48966
+22831,64782
+22832,20634,24904
+22833,41429,27237,13109
+22834,73356
+22835,49777,32255
+22836,24846,38915,63603,36106,7900,43429
+22837,10347,37900,29658
+22838,33019,22853,62865
+22839,4209,71301
+22840,32930
+22841,18736
+22842,37398
+22843,16933,5091
+22844,5691
+22845,81958,71797
+22846,10808
+22847,77855,69508,24666,19057
+22848,27243
+22849,75383
+22850,68084,42489
+22851,173
+22852,48351
+22853,18802,78613
+22854,74776
+22855,52983,64666,41382
+22856,39778,67668,34729,37978,10264,33288,60576
+22857,73111,79169,45002
+22858,17271,28324,71308,54241
+22859,40418,18607
+22860,30560,55640
+22861,37230,43306,79885,34777,47540
+22862,851,63355,46036
+22863,31563,10126,8288,8249,79504,71066,32588
+22864,7928,2543,71584
+22865,41404,78075
+22866,61849,19417,48640
+22867,12713,33219,4476
+22868,56321
+22869,60958,60275
+22870,37522
+22871,73001
+22872,43324
+22873,15294,53529,71289,46263
+22874,51726,2207
+22875,35550,77468,20995,31468
+22876,73198
+22877,5859,46355,5342,59227,79631
+22878,8829
+22879,78069,49655
+22880,9493
+22881,48497,12219,35940,35684,49841,15011
+22882,42220,50511
+22883,7730
+22884,41687,16736,12512,29225,13758
+22885,58526,6933,30220,37396
+22886,3681,21377,54605
+22887,39946,70134,5985
+22888,28620
+22889,61651,67041,61645
+22890,65790,40829
+22891,23393,32931,15832,59796,80453,52497
+22892,49804,80074
+22893,20273
+22894,24985
+22895,26006,41565,37491
+22896,60091,51765,23494,46768,12621
+22897,47324,26859
+22898,8309
+22899,67516,16352,45413
+22900,17196,68462,25036
+22901,55106,46019,49182
+22902,74334,24935,76061,59628,47398,30959,56838
+22903,65786,31348,29681,29787
+22904,79006
+22905,59884,33682,30023,24453
+22906,54243
+22907,9933,3994,58711
+22908,30232
+22909,73852
+22910,8395
+22911,81822,12698
+22912,15690,72107
+22913,76799
+22914,24366
+22915,14310
+22916,32546
+22917,6682,35168,9272
+22918,77472
+22919,13527,33409,15251,10479
+22920,41736,37437,21190,52650,5209
+22921,18937,17663
+22922,10141,24139,81201,69226
+22923,25853
+22924,25785,41191,728
+22925,75574,51082,77046
+22926,62293,22513,63566
+22927,37439,477,43671
+22928,74782,17108
+22929,78796,72083,5356
+22930,36774
+22931,61795
+22932,56104
+22933,134
+22934,22457,12585
+22935,5514,72100,51570,47471,4229
+22936,36434,49246
+22937,20008,34654
+22938,44723,71472
+22939,78043
+22940,64065,40562
+22941,72179,75417,67915
+22942,66360,32177
+22943,68497,1749
+22944,15915,17193,51999
+22945,28278,67905,66,31046
+22946,76357,39731,66290,77391,41491
+22947,74411,30268,19701,27130
+22948,8578,48723
+22949,71570,60476,36030
+22950,69268,52876,31421
+22951,64731,4487,81479
+22952,63927,76427
+22953,41171,56632
+22954,74447,60432
+22955,65986,56609,68579,24161
+22956,61791
+22957,45033,80887,59495,77690,56023,68510,34697
+22958,38199,67947
+22959,48475,81879,34785,28898
+22960,44954,22397
+22961,9942,20282
+22962,74289,69716
+22963,17511,16499
+22964,21875,16258
+22965,44048,38633,29207,20852
+22966,4276,37203,74825,61330,23433
+22967,37096
+22968,75803
+22969,77538
+22970,49056
+22971,45393,79377,63642,56623,11144,6481
+22972,55856,69513
+22973,28402
+22974,68458
+22975,47584,60680,59338,36831,5390,75562
+22976,13986
+22977,53832,57617
+22978,13020,9109,63420,21094
+22979,29753,47515
+22980,77510
+22981,46403,68724
+22982,45284,81613,62594
+22983,20857,23251,38785
+22984,19565,31925,66025
+22985,4982,56663,63320,41165,47516
+22986,12047
+22987,12134,13816,44415
+22988,49776,3916,23821,39367
+22989,38013
+22990,4214
+22991,69767
+22992,27722,8193,44630
+22993,62819,19548
+22994,80420,62283,57062
+22995,52057,15618,71189
+22996,15743
+22997,17665,54587
+22998,50723,25171
+22999,47382,81139
+23000,35056,19854,14870
+23001,7011
+23002,80684,18573
+23003,12435,78394,6255
+23004,28255,36722,33204
+23005,5184
+23006,44708
+23007,40797,70191,51421,3932
+23008,57265
+23009,81203
+23010,8769,69214
+23011,31216,28053,77219
+23012,22166,6429
+23013,22314
+23014,75179,61405
+23015,29195,34299
+23016,20548
+23017,42098,72696,39309
+23018,41889
+23019,15818,79863
+23020,72703,39626
+23021,55437,52648
+23022,53566,27625,63060,24797
+23023,57266,37961
+23024,22526
+23025,63991
+23026,79975,62060
+23027,11466
+23028,26665,48455
+23029,11466
+23030,22140,79013
+23031,11168
+23032,80374,42479
+23033,67783,49272,70191
+23034,51595,15344,29216,74469,9380
+23035,46786,6448,2600,79823
+23036,10144,47943,15175
+23037,15523,9996
+23038,56738,16048,65026
+23039,10860,38002
+23040,7694,72963,58495,26935
+23041,61908,57787,36448,59043
+23042,71545,59767
+23043,31185,3912
+23044,12307,52305
+23045,68142,53809
+23046,41249
+23047,75619,54020
+23048,24346,38325,42961,14431
+23049,12588
+23050,58461
+23051,5451
+23052,21071
+23053,13295,74467
+23054,19697,58098
+23055,72654,79289,71398,63750,35398
+23056,30774
+23057,66874
+23058,52014,47865,31703,73826,51259,14534
+23059,62290
+23060,79613
+23061,42443
+23062,1230,18268,23763,80774,52034
+23063,9526,67711
+23064,41980,11023
+23065,18122,5709
+23066,22291
+23067,27246
+23068,25107,58446
+23069,55647,71027,35142
+23070,14002,27948,72939
+23071,68216,68542,3326,7966
+23072,6187,77925
+23073,75481,30185
+23074,21249
+23075,58801
+23076,20083,56773
+23077,82006
+23078,66590,36915,25396
+23079,22721,2687
+23080,55139,59370
+23081,57262
+23082,53696
+23083,60737,19715,22024
+23084,23886,43379
+23085,11547,48823
+23086,59276
+23087,55950,25502,39299
+23088,15993,45364,73170
+23089,67773
+23090,72803,73337,19420
+23091,2593,20032
+23092,71942,80489
+23093,39946,33727,77720
+23094,56751
+23095,57351,81911,73258,34985
+23096,21575,30515
+23097,17685,52337
+23098,30881
+23099,5572,33105,46844,19303,15682
+23100,56935
+23101,72,21482
+23102,64219,47337,67915
+23103,67544,41020
+23104,17757,78051,67162,48779,57263,59132,74215
+23105,40075,62696
+23106,52374
+23107,73071
+23108,34866,52273,79519
+23109,49584,82074,31424,65900,11103
+23110,76565
+23111,53337,14855,71519,21962
+23112,52137,57911
+23113,53310
+23114,5253,30849
+23115,17854,42634,641,16520,20685
+23116,6643
+23117,37451
+23118,3253
+23119,67042,23702,24768
+23120,76015,26412,12010
+23121,48699,5989,51839,32871,45836
+23122,33054
+23123,58319
+23124,8839
+23125,49805,38977
+23126,27150,7797,47515
+23127,24115,60227,78842,13724,68028,49950,18529
+23128,35777
+23129,39097
+23130,77020,1302
+23131,73350,4825,13899
+23132,29448,78955,12613
+23133,1754,17620,34893
+23134,37559
+23135,63748,58137,33959
+23136,48845,47494,79397,42508
+23137,9233,51196
+23138,59134,54403,51807
+23139,8290,71951,81010,31384
+23140,20093,27704
+23141,40932,74669,58068
+23142,5165,70434,55609
+23143,46726
+23144,57208,34080
+23145,22617,2487,75644
+23146,62996
+23147,54842
+23148,9869,46333,71105
+23149,30806,78220,40221
+23150,28061,71207
+23151,792,27607,9449,37730,63754
+23152,14452,42253
+23153,22976,10733,19662
+23154,70275,58759,9631,6873
+23155,28345,73368,32044
+23156,79792
+23157,31271,48201,65784,81874,66839
+23158,3959
+23159,62713,78801,11733
+23160,65511,61202
+23161,31367
+23162,78261,50001,60119,79803,57770
+23163,57883
+23164,37640
+23165,76607,60699,57227,32079,25458
+23166,28594,43450
+23167,56696,38928
+23168,49834
+23169,31289,48267,36468
+23170,62301,583,22456,25620
+23171,44807,78802,32894
+23172,71855
+23173,5428,46724,19366
+23174,13627,5048
+23175,48720,291,38046,31131
+23176,30161,74787,23669
+23177,62869
+23178,445,78887,61850
+23179,66243
+23180,69420,40585,62680,17212,69077
+23181,66397,32257
+23182,27173,60680
+23183,17769,17809
+23184,78089,81947,5997,46375
+23185,70727,7537,17090,60718,19652
+23186,5607,7060
+23187,22184
+23188,26620,50226
+23189,2334
+23190,11696,51329
+23191,14355
+23192,39111,4397,79719,1262,10104
+23193,40101,2817
+23194,26514,70302
+23195,62315
+23196,14312
+23197,35646,10957,61991
+23198,10591
+23199,68260,42127
+23200,25063
+23201,12724,36722
+23202,63151,44164
+23203,33923,25287,81380,73226,59302
+23204,39268,71431,71412
+23205,67693,62483,5669,81407,10004
+23206,81314,31772,39389
+23207,4395,68408,16563,44350
+23208,5454,70895,76744,48353
+23209,79809
+23210,55301,39336,61687
+23211,53234,38366,53286,40390,61841
+23212,11739,69107,35466
+23213,9772,57848,24620
+23214,46414,31411,53390
+23215,23880,15664,76714,27253
+23216,5085,41844,72214,64326,45520,66619
+23217,23086,50145
+23218,66854,79515,9083,73767
+23219,69001,32898,48544,14219
+23220,48699
+23221,67763,6616
+23222,12570
+23223,6912,81201,31771
+23224,76269,291,77967,49179,49870,204,17500
+23225,72691,67049,52728
+23226,32245,72827
+23227,30955,4327,1056,67249,72161
+23228,12401,3875,48398,19773
+23229,45014,4165
+23230,39195
+23231,62911,71949
+23232,39276,71570,26402
+23233,55341
+23234,26294
+23235,65766,61780,75697,14287,52466,54100,15995
+23236,56777,17600
+23237,18695
+23238,27103
+23239,72598,28428,69055
+23240,26359,15324,68437
+23241,32955,77909,473,80368
+23242,59334,28704
+23243,17336,30623,70243
+23244,72884
+23245,75420,81321,7185
+23246,15076,7989
+23247,23760,63279,68303,47347
+23248,55855,18474
+23249,52047
+23250,50720
+23251,50860
+23252,14506
+23253,24035,68919
+23254,5900
+23255,19452
+23256,16538,9728,67958
+23257,72416
+23258,81872,3392
+23259,78473
+23260,23790,58844,35082
+23261,80440,1404
+23262,19469
+23263,40636
+23264,57924,8680,60614
+23265,62009,66753,66516
+23266,30159,81749,80447
+23267,10797,73212
+23268,61933,28712
+23269,74487,26743
+23270,81186,1880,32323
+23271,58632
+23272,57221,9871,49206
+23273,14033,37533,53551
+23274,1988
+23275,75523,14074
+23276,53409
+23277,60237,23074,41393
+23278,32288,18702,63974,78532
+23279,46258,76002
+23280,58540,79405,58656,79992,67105,21107
+23281,68180,44462,24163
+23282,80011,56821,73185,22704
+23283,82,72223,68961,43729
+23284,29542,63822,72515,62536,15937
+23285,43876,45018
+23286,31507
+23287,3719
+23288,2636,21674
+23289,59724
+23290,54270,45268
+23291,71855,6458,68245
+23292,45409,43446,36975,33259,52225
+23293,46066,32723,34812,55435
+23294,38730,6216,66955,15087,45866
+23295,43230,52095,18284
+23296,77395,27011
+23297,30463,27608
+23298,54275,66572
+23299,81325
+23300,2640
+23301,43406,4992
+23302,69821,74004
+23303,47018,12508,2957
+23304,46469,74489,69597
+23305,51679
+23306,59000
+23307,72322,7336
+23308,68850,2126
+23309,56806,31691,71722
+23310,77050,73965,81999
+23311,58775,40454
+23312,21181
+23313,4221,55290,12657
+23314,75323,71029,45647,80037,68121,57998
+23315,31537
+23316,10924,57174
+23317,36317,67504
+23318,63085,15313,47918
+23319,75635,13860,38281
+23320,65610
+23321,37875,14289,56879
+23322,80350,20689
+23323,68383,63149
+23324,49162,10955
+23325,7151
+23326,78846
+23327,75689
+23328,16412,76594
+23329,1698
+23330,35043,8991
+23331,10349,42762
+23332,46311
+23333,53447
+23334,66834
+23335,63462,33998,55775
+23336,70047,22103,47494
+23337,39309,25137,5980
+23338,18984
+23339,64424
+23340,78103
+23341,48703
+23342,75893,17230,57312,73668
+23343,68616
+23344,78137,9600
+23345,16335,45589
+23346,2925
+23347,1837,77454
+23348,37574,19487,64697,16890
+23349,12489,66137,26977
+23350,77254
+23351,8256,19512
+23352,53933,74484,10425
+23353,72663
+23354,62070
+23355,68680,66167,6887,54457,24606
+23356,36200
+23357,7105,15423,9239,30663,37292
+23358,18698
+23359,79743,33910,35508,58400,14529
+23360,51577,17390,6639
+23361,71290,23411
+23362,6753,52792,44442,1215
+23363,55124,8228,61519
+23364,7548,69214
+23365,64781,69497
+23366,77796,38392,6629
+23367,43687,78516
+23368,76480
+23369,27568,14168,6942
+23370,8751,70263
+23371,72360,9192,72203
+23372,28825,29676
+23373,17901,72401,70210
+23374,58898
+23375,68593
+23376,46851,14944,57172,10969,13634
+23377,8484
+23378,28009,23284,18073,78584,26640
+23379,68911,3519
+23380,9209,65026,75240,16608
+23381,63095,65727
+23382,23081,29669,30464,33919
+23383,13006,15560
+23384,3908,36075,71255,53384
+23385,77463,65724,26722
+23386,6717,79631
+23387,42069,8284,80478
+23388,77006,63291
+23389,76885,23238
+23390,40767,300,77284
+23391,26029,2672,69831,76375,15244,34221
+23392,3024
+23393,67300
+23394,76119,42173
+23395,30530,10873,81470,60230,25105,12363
+23396,38391,9516,33409,35467
+23397,32380
+23398,2421,60602
+23399,22755,10230
+23400,74048,30155,31836,7203
+23401,37681,39297
+23402,29586
+23403,79349,20067,46240
+23404,49698
+23405,34907,54231,49607
+23406,78186,5424
+23407,58267,81182,74410
+23408,35396
+23409,34372
+23410,33900,58207
+23411,1933,75490
+23412,45631
+23413,74429,36318
+23414,17274,40401
+23415,14787
+23416,79967,49490,35569
+23417,4597,20260,44007
+23418,31411
+23419,720
+23420,74587,72855,79035
+23421,38988,60657
+23422,59716
+23423,36751,76135
+23424,12173,27060,19951,4484,64529
+23425,59116,51526
+23426,20720
+23427,18856,38208
+23428,35156
+23429,9546
+23430,57290,79211,29484,76008
+23431,76858,14019,7540,27959,44613
+23432,63409
+23433,37892,22698,7129,31623
+23434,50182
+23435,57466,792
+23436,18357,76744,27417,55581
+23437,4923,17365
+23438,37303
+23439,29730,51100
+23440,29437,60091
+23441,72194,3570,68252,44708,67685
+23442,70048
+23443,33415
+23444,76802
+23445,7011
+23446,66544,72778
+23447,79173,71115
+23448,77775,78131,29406
+23449,24398,61154,65524
+23450,72247
+23451,52972,12721,59712
+23452,38875
+23453,4573,6074,16398
+23454,22276,52132
+23455,56936
+23456,57999,62326,39381
+23457,41230,71683,54844,28529,27243,63973
+23458,82118,48424
+23459,30950
+23460,3828
+23461,30992,2856,39515,56203
+23462,30734
+23463,4704,50444
+23464,28517,62354
+23465,21837
+23466,57456,67835,223,479,16905,66850
+23467,19544
+23468,23911,38272,33354,58919
+23469,67177
+23470,79470
+23471,20686,7022,9147
+23472,56679,80000,72383
+23473,66500,29243
+23474,35947,12538
+23475,33584,10170,49279
+23476,69670,3344
+23477,48634,53975,36725,68636
+23478,18995,30045
+23479,56622
+23480,36849,81430
+23481,30512,80967
+23482,46445,46120
+23483,32041,3579
+23484,26761,81606
+23485,79794,50769,19236,64327
+23486,20659
+23487,69691,39242,76117
+23488,41199,21445,29181
+23489,39902,75495,68506
+23490,26361,74658
+23491,57651,36480,49168
+23492,39422
+23493,55787,58204,12298
+23494,4707
+23495,62030,45579
+23496,46635,43540,10815
+23497,65347,4949,43091,30897
+23498,73812,32969
+23499,64862
+23500,69242
+23501,44221,34360,82103
+23502,62136,66392
+23503,9564,14687,58013,23840,66044,46268
+23504,48962
+23505,20597,274,48831
+23506,74311
+23507,25450,14707,15927
+23508,58976,74594
+23509,42295
+23510,37140
+23511,16158
+23512,18820,62817
+23513,38923,70337,43021,6555
+23514,42972,30617
+23515,1010,7022,69042
+23516,54236
+23517,34628
+23518,46269,20799
+23519,46523
+23520,43248,46861,56576,8891
+23521,33734,51704
+23522,60144,27349
+23523,74413,36576
+23524,13522,9538,68825
+23525,11610,74465
+23526,78766,20715
+23527,36318,27459
+23528,65978,27259,26142
+23529,28916,51221,51600,41860
+23530,32928,69100
+23531,57722,18067,56949,3659,40429,23009,67833,80369
+23532,3736,36519,5349,19967
+23533,71710,17115,29795,42496,17153
+23534,44660,53451
+23535,63846
+23536,12251,48159,36900,7734,70668,40661,21608,54959
+23537,5714,11436,71601,65363,70325,10712
+23538,59728,34994,13255
+23539,49040,74606,72337,1789
+23540,40990,35930,16683,28213
+23541,64606,12600,75094,7407
+23542,1961
+23543,36992
+23544,32042,59307
+23545,35314
+23546,82016
+23547,78874
+23548,42214
+23549,1815
+23550,77690
+23551,48290
+23552,49030,68993
+23553,11915
+23554,70778,49707,61763,52150,79333
+23555,44180,67270,13381,51772,8180
+23556,66193
+23557,58271,41809
+23558,4954,22017,36713,45660
+23559,75368,57420,44659
+23560,48888
+23561,70883,51387,31952,54242
+23562,64920,81067
+23563,7997,15375,41621
+23564,59506
+23565,3647,39466,24079,27894,1813
+23566,80211,80289
+23567,7490
+23568,532
+23569,64769,60563,50109,54982,14351
+23570,59141,8916
+23571,22186,40939,81657
+23572,66920,10608
+23573,9526,29211,59227,6476
+23574,75654,4307
+23575,13661,25035,70135,81699,8540
+23576,74535,5205,81444,21061
+23577,19911,21482,75827
+23578,23476,81204
+23579,75888,68618,13724,6908
+23580,14124,19988
+23581,70923
+23582,16842,59094
+23583,23812
+23584,61042,80220
+23585,61039
+23586,75999,11570,46362,66181
+23587,37853
+23588,45492,31778,21016
+23589,46304
+23590,54339,64428,55612,52112,78342
+23591,4816,61255,18812,53764
+23592,29729,23358
+23593,71459
+23594,76894
+23595,35798,76473,47388
+23596,19040,58127,7796
+23597,28439
+23598,45703,15901
+23599,76473,78843
+23600,6663
+23601,1897,47829
+23602,12633,27395,65955,79792
+23603,26674,3292,71740,54196
+23604,66591,4986,43438,9056,73795
+23605,45637,21241,18410
+23606,5411,2091,67452
+23607,55772,18018,66980
+23608,62813,68691,25100,78922
+23609,58285,57101,44502,52110,11306
+23610,14057,48980,71601,41723
+23611,66356,4214,50965
+23612,8958,67218,1461,39381,69470,11279
+23613,77773,33698,30788
+23614,47663,20000,66342
+23615,51282,61100,4798
+23616,10684,28866,23636,41878,48012,80964
+23617,7117,43524,35886
+23618,46249,40965,80964
+23619,20210
+23620,29197
+23621,71907,9441
+23622,41885,57452,76956
+23623,59593,54788,69656
+23624,42230,29570
+23625,15683,3923
+23626,78471,32423
+23627,9177
+23628,34446,12731
+23629,70677
+23630,78117
+23631,15567
+23632,62288,21787
+23633,32250,62687
+23634,36674
+23635,51936,32894
+23636,12160
+23637,14288,2691,59267,64012
+23638,14610,41267,26991,57016,15342
+23639,60828
+23640,17975,56199
+23641,6331
+23642,68346,12209
+23643,60242
+23644,62466,16456
+23645,45194,20720
+23646,18883
+23647,41198,18336,15325
+23648,14802,27717,7723,21658,62079,12444
+23649,27116,4511
+23650,8738
+23651,44496,69123,5482
+23652,49486,46069,58138,4486
+23653,58347,34518,77466
+23654,26235,78755
+23655,39882,64731,4431,18896,9091,37641,28972
+23656,13081,56610,65455
+23657,8606
+23658,58116
+23659,25456
+23660,14187
+23661,72132,49827,43397
+23662,36736
+23663,2531,10322
+23664,13468,58104
+23665,7097,55490
+23666,49336,12360
+23667,17351,80665,61475,42264,73048
+23668,34133,46481,21616
+23669,66544,72137
+23670,21661
+23671,69540,68717
+23672,29309
+23673,49226,32130,54756
+23674,30065,27410
+23675,36590
+23676,4194,79838,3650
+23677,17836
+23678,66917,38503
+23679,70794,73869
+23680,11195
+23681,54696
+23682,81990,70968,64234,46537,74465,21222
+23683,35800
+23684,36813,26375
+23685,60698,58082,21360,60923
+23686,26049,77889,42652
+23687,14449
+23688,80451,18492,54304,53967
+23689,4372
+23690,4519,19027,9337,16445,14526,67500
+23691,74650,47748,20239
+23692,64606
+23693,77942,61130,76290,61437
+23694,37427,28810
+23695,46235,7577,70339
+23696,70884
+23697,65013,73984,36973,81613
+23698,29927
+23699,47951
+23700,15472,40500,6997,43430,62785,63007
+23701,56886,35001
+23702,33297
+23703,52837,39073
+23704,30819
+23705,57813,10291,3071
+23706,64658,82
+23707,53677,76363,63129
+23708,78111,5913
+23709,4717
+23710,25345,66277,46143,77662,16312,61569,43770
+23711,37128,42296
+23712,66166
+23713,1159,61782,69040,30098
+23714,32247,6493,50003,20585
+23715,24938,9187,42733,52162,42807
+23716,72873,73327,42063,61949
+23717,47320,53776,57259,81783,46459,21621,51149
+23718,47980
+23719,53358,21102,75811,26649
+23720,51417
+23721,31869
+23722,59425,61467
+23723,56176,24982,70355
+23724,32604
+23725,18384
+23726,53822,70317,12371,8410,69554,81680
+23727,26667,39996
+23728,29764,72843
+23729,9127
+23730,29355,13562
+23731,48201
+23732,1443
+23733,48573
+23734,2526
+23735,73646
+23736,36647
+23737,68476,81548
+23738,70585,70483
+23739,45494
+23740,12443
+23741,45487
+23742,63638,75605,34988,6395,59262,76850
+23743,61658,52690
+23744,32861,17460,40135
+23745,76317
+23746,46602
+23747,3696,24200,17023,54108
+23748,27398
+23749,55643
+23750,66026
+23751,58446,57184,27614,5929
+23752,45445
+23753,75474,19994,77565,11986
+23754,7160,72543
+23755,31986
+23756,35919
+23757,17825,25718
+23758,23423,60511,38594
+23759,32441,10974,12903
+23760,3589
+23761,69459,77955
+23762,29403,74466,14350,21899
+23763,46963
+23764,63393
+23765,14237,39363,10947,60511,52235
+23766,38895,74923,70938,71599,15430
+23767,15710
+23768,74094,12458,66216
+23769,12083
+23770,74136
+23771,56867
+23772,19808,58173
+23773,72773,11290,81518
+23774,7232,53900,4663,24963
+23775,43052,80002,76549,12500,70936
+23776,19043
+23777,73760,118
+23778,35445,7041
+23779,11013,55490,13447,2288
+23780,5071,11545
+23781,35410,45211
+23782,29437,39992,15432,77474
+23783,29570,29814
+23784,72130,12041,74516,20720
+23785,70043
+23786,65113
+23787,64909,677,39455,81909,22660
+23788,44331
+23789,55352,48548,62855
+23790,47686,61736,21534,18365
+23791,59929,78604
+23792,29084,41645
+23793,55773
+23794,8305,15653,76634
+23795,33353,8196
+23796,17616,68782
+23797,2636
+23798,81110,69109
+23799,76234,79151,32828,115
+23800,52169,12869,25526,24083
+23801,71869,57129,23948,16942,33684,78748
+23802,76894
+23803,56512,72083,62506,44047,11465,38436
+23804,9552,62436,65815,30509,28896
+23805,68805,15329,50205,77806
+23806,46343,53049
+23807,29177
+23808,17577
+23809,28810,24428
+23810,29439
+23811,34251,66319,10742,28789,73658
+23812,39222
+23813,34526,8700
+23814,43612,17752,70627,703,54185
+23815,19367,37392,75079,43549
+23816,2907,19779,17451
+23817,36152,50354
+23818,35567,39085
+23819,27105,79707
+23820,69157,34400
+23821,62092
+23822,31213
+23823,44228,20889
+23824,60890,68046,703,39275
+23825,52508,74558
+23826,64396,31070,71168
+23827,10663,27084,38501,15331
+23828,17379,73480,78849,52662,47047
+23829,31126,71617,37084
+23830,58565
+23831,15832,42533,20357
+23832,78823,50726,39854,62301,12468
+23833,68974
+23834,77939,80319,52644
+23835,70562,6529,26096
+23836,81600,77555,41911,1288
+23837,4170
+23838,46400
+23839,7673,28071
+23840,66386,13257,52514
+23841,67658
+23842,78056
+23843,76788,26057
+23844,52393,26220
+23845,51936
+23846,52767
+23847,5787
+23848,42173,35935
+23849,44892,73014,57966
+23850,67350,36953,50880
+23851,70383
+23852,39418,585,70707
+23853,14500,23683,46543,43513
+23854,59424,5798,27957,66834,57573,10781
+23855,42201
+23856,40674
+23857,68922,78085,27170
+23858,7264,4224,68521
+23859,18710
+23860,55221,39122,67944,10684,60905,45267
+23861,74321,779,18856
+23862,31101,28100
+23863,70758,75234
+23864,53918
+23865,18861,58135,23783,20455,66518,52003,62345,30642
+23866,67682,21653
+23867,67430,78162,45990
+23868,37615,59216
+23869,69431,61907
+23870,43820
+23871,38136,65193
+23872,40043
+23873,9931,58250,15978,75159
+23874,29790,63647
+23875,67720,19620,65587
+23876,34757
+23877,77433,48152,18373,3405
+23878,47144,48201
+23879,20534,13517
+23880,35048,31078
+23881,64990,41076,1960,22247
+23882,79860
+23883,62969,62004
+23884,30607,370,46828,72429
+23885,37667,80818,45483
+23886,47741,56635,45843
+23887,25945,17505
+23888,25122
+23889,16126,18745
+23890,6608,38876,79886
+23891,15616,24585,45022
+23892,40734
+23893,76141
+23894,23549
+23895,70791,36865,33133,38438,63737,28135
+23896,3761,33342,63782,54259,25204
+23897,13430
+23898,49542
+23899,2357
+23900,73378,32942,31666,48126
+23901,25611,67492
+23902,33999,4577,30665,65740
+23903,10230,21192,40268
+23904,47815
+23905,20502,42826
+23906,75353,17183,72178
+23907,10957,59051,35781,62728
+23908,4996
+23909,66192,28777,29545,33846
+23910,66673,77730,80028
+23911,39997,59638,68064,55337
+23912,80700,75547
+23913,19003,32548,71477,70087,57229
+23914,74873,54682,53239
+23915,60387,21338,17368
+23916,57385
+23917,81822,79536,10121
+23918,62927
+23919,75162
+23920,10731,69442
+23921,15737,54838
+23922,78373,48731,12374
+23923,4483
+23924,49986,10823
+23925,82174,2433,54509
+23926,71201
+23927,28606
+23928,25078
+23929,44208,62357
+23930,75664,33465,36676
+23931,22948,57252,32582
+23932,24459,61341
+23933,65496,24736,20744,33213
+23934,6536
+23935,71572
+23936,11308,29000,48340,33268,16814,80953
+23937,55341
+23938,46688
+23939,51453,8239
+23940,73099
+23941,23245,70618
+23942,53110,79800,24782
+23943,74167
+23944,48821,4814,10062
+23945,17488,59141
+23946,10032,19013
+23947,78457,71663
+23948,40214,63291,36510
+23949,24612,30452,48363,19954
+23950,8869
+23951,79585
+23952,23492,72153,11059
+23953,6915,29871,36800
+23954,56710,25475
+23955,31719,38011
+23956,37112
+23957,14470
+23958,43922
+23959,58399,12473,19836,70759,37513
+23960,49346,71777
+23961,24731,66980,61177
+23962,52564,28234,33263
+23963,60731,49435
+23964,66891
+23965,39549
+23966,55290,14492,31425
+23967,46554
+23968,19953,26329
+23969,79694,46623
+23970,68159,5840
+23971,55703,54329
+23972,48124
+23973,45097,5529
+23974,23781,77150,5814
+23975,25456
+23976,37039
+23977,71456,43868
+23978,67989
+23979,42230,39501,22166,34700
+23980,29763,59808
+23981,29069,43104
+23982,30355,37441,33170,17609,61182,26216
+23983,76229
+23984,28145,19847,33167,64623,46908
+23985,71032,2812,64276
+23986,22178,53992,30125,63191,57800,5357
+23987,39764
+23988,62093,66658,21343,2977
+23989,48101
+23990,52995
+23991,38018,37539,44749,62626,21019
+23992,34232
+23993,1351
+23994,71824
+23995,49859,33662,350
+23996,31470,70057,2921,5272
+23997,8501,1036
+23998,41456,15806
+23999,40431
+24000,64500
+24001,74645
+24002,6538,47477
+24003,73404
+24004,68059,46387
+24005,14130,41457
+24006,58590
+24007,31145,29384
+24008,51758,78128,14586,71345
+24009,75075,55702,71497,12060,59759,56032
+24010,50601
+24011,61817,77527,35876
+24012,48721
+24013,69256
+24014,61811,31952
+24015,58723,61454,68596
+24016,30649,7681,33090
+24017,42231,52948,13256
+24018,42370,69124,77981
+24019,27684,1862,8632
+24020,22587
+24021,3706,65430,33578,65086
+24022,59752,6573
+24023,58404,7601,67996
+24024,24660
+24025,25910,28340,50763
+24026,47864,32197,31535
+24027,48737,36333
+24028,24351,22263
+24029,65200,48779,44481,2194
+24030,40817,42824,53452,45395
+24031,34533
+24032,60211
+24033,49472,15933,43978,55180,71157
+24034,38440
+24035,80801,73584
+24036,37599,6021,47376
+24037,50875,64775,13620,73459,8313
+24038,50154,24409
+24039,30405,48235,31290
+24040,79906,11847
+24041,23143
+24042,31169,18161,22138
+24043,70795,40612
+24044,25840
+24045,46901,51135,56441
+24046,24054,81555,63136
+24047,30493
+24048,69418,71987
+24049,5359,51626
+24050,40420
+24051,69426,31173,54219,53089
+24052,80368
+24053,40101
+24054,57667,40117
+24055,4153,52814
+24056,71226,60293
+24057,42898,67658,13909,55297,53736,54668
+24058,11499
+24059,58326,74854,16390,50318
+24060,31880,10534,65994,16950,35420
+24061,35639,39618
+24062,43609,11917,17874,54992
+24063,51023
+24064,48217,7876,6449,31685
+24065,46979
+24066,65330,23258,64728
+24067,57292
+24068,54762
+24069,73368
+24070,27422,11565
+24071,20907
+24072,22368
+24073,24369
+24074,76375,58109,38139
+24075,80795,42407,6246,36167,58327,39303
+24076,24353
+24077,12974,22262
+24078,10909,58200
+24079,62817,1205
+24080,3814,77925,13702
+24081,10291,64491,66922,8097,2704,75099
+24082,35965,44027,38013,43938
+24083,45410
+24084,42310,59971,81413,31715,52005
+24085,15872
+24086,69157
+24087,65248,33546
+24088,29038,11650
+24089,24571,27690,45854,16712,4632
+24090,62508
+24091,63178,54180
+24092,67696,45169,79830,21849,32792
+24093,28096
+24094,37784
+24095,58225,57380
+24096,58638
+24097,78333
+24098,57706,61155,42438
+24099,64995,78084
+24100,44269,78449,14492,63631
+24101,65996
+24102,15826,25406,3512
+24103,16842,28711
+24104,60395,30509,71965,56763,8765
+24105,5039,1249
+24106,15113
+24107,50411,22908,33316,40157
+24108,28152,26084
+24109,65433
+24110,22790,60904
+24111,37469
+24112,17180,15731
+24113,35775
+24114,59332
+24115,10230,61354
+24116,51146,39075,72492,46688
+24117,23983,11295
+24118,65579,33509,32698,20954
+24119,15560,65366
+24120,15217,13973,75444
+24121,76919
+24122,44606
+24123,36221,9095,59754
+24124,42100,9978,65410,15749
+24125,10312,25840,7216
+24126,81708,75818,34096,63692,32741
+24127,55862,14391,78622,11887
+24128,59371
+24129,61761
+24130,30163,29284,73521,41349,3353
+24131,68063,122
+24132,37012,35304
+24133,6763,19016,46022,81645
+24134,59983,21447
+24135,28458
+24136,23034,57918
+24137,47101
+24138,52558
+24139,5798,79377
+24140,56777,46583,80328,64928,73691
+24141,28138,17325,31330,26471
+24142,62848
+24143,27889,17891,20198,61682
+24144,16121,66411
+24145,7363,44700
+24146,65045,24063,46036,743
+24147,24362
+24148,9901
+24149,61612
+24150,7646,70969,15696,78217,39068
+24151,4930,60338,45239
+24152,49507,33747,55468
+24153,36821
+24154,52883
+24155,51343,53607,67755
+24156,53669
+24157,40195,37691
+24158,14419,638,36517,65894,70364
+24159,51295,58612,79750
+24160,28479,4630,54297,35987,24751
+24161,19636
+24162,20819,29600,24290
+24163,43271,35080,4648,41259
+24164,27309,53133,74362
+24165,74733,29209,78835,81006
+24166,61437,56241
+24167,17756
+24168,31509
+24169,8481,22526,39156,74674,73578
+24170,65846,79292,7658,77252
+24171,68146
+24172,10478
+24173,63523,61121,1256,3612,1914
+24174,25203,76146,45974,65334,44526,75185,30336
+24175,80354,49122
+24176,35618,21134
+24177,59526,33553
+24178,59032
+24179,7075,25906,56054,38889,13406,43054
+24180,32724,5935,16807,40864
+24181,42373
+24182,43740
+24183,66323,29585
+24184,25476
+24185,58635
+24186,66110,5763,71474,42830,10201
+24187,40656,14525
+24188,80570,35958,78823,50093
+24189,55178,76919,36801
+24190,41792,69947,44743
+24191,45826
+24192,72036
+24193,9616,55430,24459
+24194,30655
+24195,64417
+24196,17497,20242,71001
+24197,32677,36872,66446
+24198,41836,67600,73357,68793,23085
+24199,50670,26583
+24200,46749
+24201,6228,45196,51244
+24202,50437
+24203,118,80869
+24204,14503,42918
+24205,25613
+24206,15482,23270,15386
+24207,13211,2126,498,2551
+24208,79997
+24209,48446,20061,20444,19728
+24210,27607,13055,76909,43226
+24211,63100,54859,48935,58779,48507,26821
+24212,3721
+24213,5228,64465
+24214,41719,51950
+24215,76590,68973,39686,72888
+24216,71309
+24217,23158,73514,23328,60193
+24218,64476,28350
+24219,29453,58272
+24220,72942
+24221,50880,22062,9633
+24222,64570,18549,9281
+24223,73324
+24224,37490,16686,65477,5383,66378
+24225,76314,1050
+24226,22333,32171
+24227,69973
+24228,63294,36075
+24229,72041,38209
+24230,7809
+24231,52900,81606,24525,51250,68736,36104
+24232,26350
+24233,16967,72720
+24234,65240,39683
+24235,11545,48522,74508,54917
+24236,37674,36155
+24237,79434,1978,9131
+24238,52991,55730,34564
+24239,1678,25001
+24240,29122,6103,15886,42807,32775
+24241,32349
+24242,18351
+24243,20132
+24244,19556,24296
+24245,65763,47326,19263
+24246,32413,51741
+24247,17809,66413,45125,2749
+24248,63966
+24249,24997,46662,24185
+24250,81514
+24251,9255
+24252,60114,33828
+24253,59589,8439,20150,13334,14826,8407
+24254,29031,6012,59807
+24255,72225,41308
+24256,26450,26317
+24257,47210
+24258,11625,12846,26754
+24259,23075,22524
+24260,71039,12685,8762
+24261,29207,47138
+24262,33771
+24263,77453
+24264,78812,37595,44688,73397,28215,56716
+24265,30708
+24266,49133,62012
+24267,67086,50683
+24268,48070,68435
+24269,55853
+24270,30387,50063,69249,69204
+24271,35458,73871,23350,61941
+24272,11419
+24273,69254
+24274,61042
+24275,5746,75066,61359
+24276,74229,63725,15416,485,80893,35222
+24277,19564,49165
+24278,15251,78477
+24279,32803,73149,66312,59217
+24280,77199,31006
+24281,25923
+24282,63425,61698
+24283,68626,34691,71032
+24284,2493
+24285,18462,45504
+24286,41579,44982,74815,39135,76091
+24287,78843,29893
+24288,15734
+24289,9957,76333
+24290,72077,29285
+24291,33124,52054,9727,513,18269,54100
+24292,58071,40656
+24293,63863,13145
+24294,32876,35800
+24295,11689
+24296,37643
+24297,32836
+24298,78741,44029
+24299,64907
+24300,53837,73991
+24301,37328
+24302,18845,71496
+24303,72311
+24304,29399,72338,72593,1671
+24305,44868,81404
+24306,81487,73821,77525,44273
+24307,35755,46757,44820,52229
+24308,72592,25166,53894
+24309,2171,64178,16831,13974,30320,62634
+24310,43924
+24311,79185
+24312,43490,41585
+24313,50814
+24314,28962
+24315,32264,65915
+24316,72327,12302,27375
+24317,48101,65007,70148
+24318,33333
+24319,71628,15263
+24320,57363,57819
+24321,38122,78678,45580
+24322,46767,44127
+24323,12371
+24324,20379,61039
+24325,25122,73543
+24326,53716,27367,3552
+24327,34938
+24328,77710,76711,6660
+24329,72770,31487
+24330,28368,6747
+24331,31899
+24332,23834,4286
+24333,18456,73524,77086
+24334,36430,19523
+24335,27930
+24336,49224,17561,52449,24495,49511,9567,66601
+24337,14838
+24338,16028,48230,5476,47684,21253,76563,35376
+24339,75064
+24340,11698
+24341,14183
+24342,71982
+24343,71958,26341
+24344,47080,58712,5232
+24345,301,9173
+24346,25905
+24347,3637,81834
+24348,52005
+24349,29994,583,41370
+24350,24268,28380,31132,72374
+24351,13016
+24352,46568,11560,35257
+24353,16887
+24354,13205,60081,32907,1063,59910
+24355,67797
+24356,54898,39894
+24357,31101
+24358,18644,80987,79178,68555,75852
+24359,53829
+24360,20537
+24361,76940,12597
+24362,491,13522
+24363,76102,53109,70268
+24364,19245,72084
+24365,46187,53487,53392,11397,69489
+24366,81159
+24367,2367,80373
+24368,48898
+24369,69889
+24370,65758
+24371,19080,81870,66647
+24372,52367,49941,54383,55127,17915,13285,81278
+24373,54334
+24374,74702,42138,38344
+24375,31593,29469,80173
+24376,49870,52355,48866,43467,76629,42314
+24377,65329,10495,12557
+24378,19045,15673,30475
+24379,27569,79917
+24380,72553,3418,38362
+24381,44141,60384,75938
+24382,28852
+24383,23016,69064,56260
+24384,66152,36674,24212
+24385,65216,42458
+24386,30491,35843,20512,36607
+24387,19229,21365,3095
+24388,36852,41756,40219
+24389,69821
+24390,33154
+24391,53390,53941,26630
+24392,5006
+24393,3550
+24394,60245,18657,42165
+24395,23992
+24396,13741,28110,46149,38402
+24397,14480
+24398,29415
+24399,22612
+24400,75825,10749
+24401,77876
+24402,21826
+24403,44480,11414
+24404,15845
+24405,47603,289
+24406,70284
+24407,33094,44494
+24408,29906,22970,25119
+24409,41980
+24410,18202
+24411,33856,48270
+24412,40233
+24413,18955
+24414,50333,6973,37861
+24415,44592
+24416,25718
+24417,49362
+24418,24537,25492,3465,45720
+24419,49617
+24420,48902,46914,68292
+24421,78329,48340,36489
+24422,5959,81235,29417,5692,4008,81960,42897
+24423,79397
+24424,16037
+24425,79864,54996
+24426,25077,5147
+24427,63401,81359,16386
+24428,78186
+24429,41190,72421,67379
+24430,79880,26478,26862,54535
+24431,35303,12148,2796
+24432,73396
+24433,15653,71561,78349,35386,3750
+24434,78994,60513
+24435,30038,77214,70995
+24436,82176,42757,8298,51235,53397
+24437,20059,61043
+24438,73392,10845
+24439,28509,499
+24440,26506
+24441,26846,25657,38659
+24442,67740
+24443,44060,4603,10836,40319
+24444,81618,25746
+24445,65238
+24446,25494,80830
+24447,44507,10722,43737
+24448,39542,19585,71548,32088,4710
+24449,57415
+24450,32826,76464,32271
+24451,81786,16382
+24452,1085
+24453,79897,72795
+24454,45092
+24455,62136,67444
+24456,18641,45972,35381,42238
+24457,59325,26146,71516,11588
+24458,41345
+24459,48221,72156
+24460,34386,67309
+24461,24399
+24462,52685
+24463,69480,76751
+24464,48698,27067,3710,30538
+24465,28973,18857,30293,79938
+24466,286
+24467,50762,57520
+24468,11681
+24469,48407
+24470,14602
+24471,18242
+24472,3440,38461
+24473,34249,75208,69074,17419
+24474,67313
+24475,69774
+24476,61475
+24477,35531,71614,12852,38022
+24478,23752
+24479,58952,16056
+24480,8550,62064,44673,5835,20232,45842,45675
+24481,55973,40460
+24482,41622
+24483,14333
+24484,62101,77841,66232,1591,27365,64641,18882,54319
+24485,28113,8597
+24486,35280
+24487,16887,39859
+24488,8903,42158
+24489,13021,70134,3321
+24490,41138,38264
+24491,58050,18380,38687
+24492,3040,29240,70420
+24493,3778,50307,73312,39200,22508,77135,10778
+24494,75047,8864,59505
+24495,25597
+24496,52867,22270
+24497,20904,40943
+24498,53882,53638,59609,60542
+24499,65246
+24500,40190,51636,57553,20249,66491
+24501,39298,70761,16087,37172,70550,20604,76906
+24502,62437
+24503,16998,6469
+24504,48229
+24505,62499,62247
+24506,24482,73956
+24507,77002
+24508,6060,39857
+24509,2227,5621,64054
+24510,78130,17077,68731
+24511,50735,37980,27589
+24512,66530,74268
+24513,59894,54429,33912
+24514,70763,78519
+24515,16366
+24516,24268,30239,67959
+24517,71159,29960,11661,31069,71193
+24518,26449,80527,29810,40657,55811,50937
+24519,71503,4218,49223,61062
+24520,76800,23826
+24521,65960,79445
+24522,13136
+24523,69502,2060,47743,68467
+24524,15003,54421,19283
+24525,33031,16573
+24526,53059,3633,60042,7051,1646
+24527,77418
+24528,56080,71440,18367,3492
+24529,80592,74955,80651
+24530,17169
+24531,33677,71850,53879,41847,46281,8722
+24532,69873
+24533,43054
+24534,56310,68021,56303,61676,8525,16643
+24535,44519,56669,54212
+24536,59784,38338,58449
+24537,34935
+24538,34795
+24539,5806,67669,12661,76642
+24540,37437,10755,80121
+24541,67202
+24542,64377,49133,25070,69472
+24543,25741,56760,1386
+24544,79431,7824,15153
+24545,80516
+24546,71542
+24547,51744,31516,6521
+24548,9232,38437
+24549,37175
+24550,46317
+24551,65374
+24552,22277
+24553,70317,63775,46311,44999
+24554,23075,24032,33982,42812
+24555,22165,4247
+24556,72069,9703
+24557,7588,79307,78849,66388,15618
+24558,47018
+24559,71137
+24560,66129,14755,81068
+24561,2619
+24562,31619
+24563,70978,79704,33423,32338
+24564,13928
+24565,50723,22128,4005
+24566,72238
+24567,52027
+24568,13894
+24569,46808,63737,72182,15362
+24570,50469,574,60075,39389,3326
+24571,46308
+24572,57953
+24573,46717,63976,75633,62959
+24574,15206,64496,41263,45070,20918,39789
+24575,73248,41727
+24576,74340,3575,43655
+24577,19671,62019
+24578,70640,18759
+24579,9458
+24580,29075,40994
+24581,77361,26621,16947,54097,68733,12534
+24582,77078,12769
+24583,80217,325
+24584,5505
+24585,58948
+24586,13903,58449
+24587,63265,81065,31967
+24588,46627,6799,43981,64241
+24589,29436
+24590,46225,65066,65231
+24591,31484,74660,6722
+24592,23346,46323,40616
+24593,2579
+24594,66546
+24595,37383,80153
+24596,23130,19775,16807,80272
+24597,77532,70500,54592,44332,19044,5158
+24598,9271
+24599,58725,32913,12862,35940
+24600,30936,57733
+24601,44463,37674,51251
+24602,27381,71392,54103
+24603,21951
+24604,30020,12836,38478
+24605,68856,8236
+24606,4979
+24607,23840
+24608,30089,45985
+24609,1885,13440
+24610,77829,2207
+24611,70622,29405
+24612,63722,73324
+24613,79453,25963
+24614,59021
+24615,303,15324
+24616,61411,23598
+24617,54011,56579,25195,77984,20668,17117,55027
+24618,61998
+24619,771
+24620,33958,64324
+24621,71221
+24622,56199
+24623,76328,2486,3836,54748,40793
+24624,55765
+24625,30693
+24626,33144
+24627,30461
+24628,52792
+24629,17161,57358
+24630,70183
+24631,53789
+24632,33427,53784,56088,73525,11387,29188
+24633,73694
+24634,69656,19759,48601,21553,36855,22548
+24635,1678
+24636,16948,73888,57478
+24637,74106,35043,28335,31192
+24638,68786,8474
+24639,74289
+24640,44694
+24641,81640
+24642,39722,35332,55012
+24643,60141
+24644,53959,8316,62423
+24645,48491,36134
+24646,41559,80582,4111
+24647,14526
+24648,45354,58973
+24649,20161
+24650,22765,31491
+24651,33534,16980,31894
+24652,35295,65942,62859,66717
+24653,46783,28233
+24654,39354
+24655,13894
+24656,80713
+24657,67400,65738,64326,61934,47201
+24658,26685,68556
+24659,7869,69150
+24660,19557
+24661,45692,5327,29190
+24662,10496,31205,56981
+24663,44619,68350
+24664,80907,44269,7988,11075
+24665,81232,66118,75284
+24666,72395
+24667,31326,32441
+24668,54483,42161
+24669,12083
+24670,76770,44502,4558,38609
+24671,15445,37046,20898
+24672,12221
+24673,43376,42417
+24674,13057,34793
+24675,35304,11435,15964,17078
+24676,77109,34296
+24677,55878
+24678,41571,8615,41420,54788
+24679,45285
+24680,32062
+24681,57644
+24682,46361,41415
+24683,30131,857,45647
+24684,19756,2900,680,79220
+24685,68741,37784
+24686,77888
+24687,70485,31956
+24688,32640,6594
+24689,3487
+24690,46321,8298,54093,16672,68344
+24691,71153,4387
+24692,48407
+24693,56657
+24694,28131
+24695,62192,50240
+24696,47741,8178,15773,73945
+24697,63356,72907,60536
+24698,61815,31421
+24699,9634
+24700,70382,18482
+24701,18814
+24702,23030
+24703,14341,54632,54406,61795
+24704,82076,68563,2197,33336
+24705,62917,19437,78943
+24706,53880,23792
+24707,11793,33582,37515,22478
+24708,29295,67690,23615,64144
+24709,42646,30293
+24710,63536,56473,41421,60360,69938
+24711,76939,70660,7861,20007
+24712,989,43627
+24713,47440,39208
+24714,48510
+24715,12028,8931,50105
+24716,12957,31645,10808,46760
+24717,51564,31358,17494,68938
+24718,35548,31264
+24719,15713,35785
+24720,55599,26805
+24721,39428
+24722,16051,15069,54865
+24723,20556,69231,6230
+24724,51171
+24725,65207,9730,72108,6616,63279
+24726,33977,41011,39422
+24727,34778,3684
+24728,78057,44386
+24729,15514,47497,78677
+24730,30752
+24731,80447,14057
+24732,67296
+24733,41614
+24734,75318,6185,58186
+24735,81482,46618
+24736,63513
+24737,49936,75669,57471
+24738,9855,18228
+24739,72520,49943
+24740,38681,39175,1327,32572
+24741,22124,54623
+24742,42567
+24743,18609,2350,33518,70198,3700,45828
+24744,32371
+24745,4342
+24746,30003
+24747,63169,35614
+24748,3655,17051,41025
+24749,59984,2220,56519,67488,16677
+24750,48026
+24751,13776,6094
+24752,65338
+24753,12537,4057
+24754,15865,41999
+24755,3984,79531
+24756,74079,10317,82039
+24757,35096
+24758,32485
+24759,47282,53189
+24760,69976,61369,31852
+24761,21249
+24762,43302
+24763,39240,79977
+24764,63505,9955,12625,45930
+24765,34215
+24766,72810,36178,45483,3127,17382
+24767,39446
+24768,63684
+24769,6645,80503,68911,79573,77880
+24770,31959
+24771,47400,27149,3973,68227
+24772,54355,45441
+24773,13981,9951
+24774,61651,38594,59214
+24775,7789
+24776,57715,49702,81285,17888
+24777,33212,1012,6706,58500
+24778,12229,57909,69308,49548,74207
+24779,4055,17759,4760,16012
+24780,17317
+24781,48438,18150
+24782,13198,19342
+24783,14029,29814,63159
+24784,56374,42148,29562
+24785,62149,46628,6132
+24786,14025,65035
+24787,59727,80169,18456,10090
+24788,14419,15818
+24789,6992,24415
+24790,32064
+24791,14050
+24792,29021,15414,54557
+24793,46394,46098,19150
+24794,39380,68893,25517
+24795,44852,13573
+24796,49421,1813,71252
+24797,66385,32003,74899,59593
+24798,47811,64091,28638
+24799,74084
+24800,16676,3951,25582,12181,39427
+24801,22479
+24802,12255,44228,57243,23167,64102
+24803,28270,68142
+24804,28114
+24805,9147,46071,47589
+24806,44795
+24807,34214,56485,54109,9883
+24808,20660
+24809,10741
+24810,23703,48522
+24811,40559
+24812,15403
+24813,49570
+24814,16074,10585
+24815,8340,68380
+24816,24669
+24817,11262,80836,9151
+24818,11135,48706
+24819,36536,29473,26332,57368,29293,7003
+24820,24617,11738
+24821,74105,78959,32549,37522,70903,20254
+24822,21437,47878
+24823,40325,36663
+24824,74880,69799
+24825,3291,47780,52606,12598,79790,508,1223,53445
+24826,65021,57280,51866
+24827,50718
+24828,8440,82173,54686
+24829,17092,5451,73521,47525
+24830,35257,2852
+24831,29809,9436,72589,77286,1125,34253,7910,53248,48703,24991
+24832,24337,4012
+24833,7244
+24834,48213
+24835,81816
+24836,75673
+24837,65314,46514
+24838,49472
+24839,38524
+24840,77222,58331
+24841,49319,44057,39823
+24842,34531,9408
+24843,16554
+24844,65160,42849,41119,57111
+24845,48797
+24846,11148
+24847,37259
+24848,1821,68460
+24849,46229,48152
+24850,56324,80032
+24851,17696
+24852,44872
+24853,71835,59418,62578,29485,62619,6611,54033
+24854,70497,75685,50134,36490,2570
+24855,57654
+24856,28100
+24857,39763,63701,57958,48699,47870
+24858,76496,4511,75876
+24859,9395,12115,21000,62150,37779,6649
+24860,79563,67122,59040
+24861,45909
+24862,23994,7122
+24863,61335,33263,27182
+24864,34755,1479,65992
+24865,14733
+24866,53982,50636,76295
+24867,55197
+24868,75170,53319
+24869,79178,69994
+24870,13643,55936,35474,59609
+24871,16719,32458,73585
+24872,30509
+24873,65231,50891,5832,14172
+24874,21249
+24875,44344,16055,5496
+24876,22457,40498
+24877,56151
+24878,76376,40064,23978
+24879,64329,55142,18441,66867
+24880,10128
+24881,66123
+24882,46469
+24883,46285,5203,71474
+24884,4104
+24885,43317,2908
+24886,81011
+24887,41868,26688
+24888,17422,45686,25649
+24889,35930
+24890,27305,76238
+24891,32624,78862
+24892,79057,36180,27577,72696
+24893,60060,66042,39913,71638
+24894,25596,32988
+24895,61661
+24896,48764,19
+24897,20840,51016,64976
+24898,79758,31894,41893
+24899,15975,45164,15993
+24900,8420,53947,24559,80874,12166,67797,60740
+24901,26394,8431,44435,58058
+24902,80000,1297,78724
+24903,4749,45040
+24904,68286,72034
+24905,37902,11117
+24906,19502,48031,28275
+24907,5195
+24908,18544,21398,74259
+24909,58664,39469,72235,54218,64010
+24910,75899,31607
+24911,53344,13408
+24912,64530
+24913,27568,61747,18693,20051
+24914,28376
+24915,41641,19582,24142,50582
+24916,21830,51362,70620,3985
+24917,29727,80774
+24918,64506,35571
+24919,3257,19216,61385,43051,77486,2914,77105,8909
+24920,53653
+24921,70589
+24922,76274,34340,17771
+24923,61329,6062
+24924,70452,25984,44819,70836,49373,20554
+24925,13103
+24926,29500,66584
+24927,79113,1027
+24928,21841
+24929,32143
+24930,71120,72224
+24931,49529,19095,18277
+24932,71403,27654,15603
+24933,6217,32596
+24934,55453,5656,52317
+24935,35834,30453
+24936,53312,21849,28482
+24937,48201
+24938,9495
+24939,56057
+24940,54668
+24941,72835
+24942,55534,51936
+24943,35937,6838
+24944,79335
+24945,43342,15153
+24946,51092
+24947,78846,39458,68539
+24948,82059,37583
+24949,76005,78087
+24950,26697,80607,74261
+24951,21994,21245,15942
+24952,80682,48748,67519,25543
+24953,12956,2246,3533
+24954,29570,25734
+24955,65421,34527,82022
+24956,29415
+24957,2746
+24958,39309,11636
+24959,71806,74829
+24960,63967,13453,21084
+24961,9174
+24962,36274,28828,3888,23867
+24963,54270
+24964,55063,32996,28258
+24965,63267,6479
+24966,50873
+24967,33147,81798
+24968,23735
+24969,78983,80634,10105
+24970,62613,4506
+24971,73291,35631,21034
+24972,71906,26237,81487
+24973,26561,18634,10322
+24974,11936
+24975,30827,80263
+24976,36260
+24977,76654,78721,71134,40940,13023
+24978,57332,21060,10368,59952
+24979,22698,24400
+24980,48841
+24981,32828
+24982,54604,31015,56330,33429
+24983,15272,4743
+24984,81399
+24985,44803
+24986,34621
+24987,61048
+24988,66428,56530,3963,29291
+24989,2856,68027,31148
+24990,12900,14692,81975
+24991,69321,56922,61930,60349
+24992,29988,55525,69245,25426,35173
+24993,49958,47982,52683
+24994,29276,67409,5008,64125
+24995,52726,77268
+24996,49972,69652,48584,80932,8226,25187
+24997,48744
+24998,63994
+24999,81336,73406
+25000,25019
+25001,14232
+25002,24258,15364
+25003,46208,3056,43599,3674
+25004,69443,59579,15298,58182,32990,4360,12992,37564,20637,12615
+25005,25073
+25006,54250
+25007,48210,31534,63698
+25008,6217
+25009,47893,13694,51946
+25010,27372,13146,21837
+25011,5445,4373,34080,66445,36183,46162
+25012,43045,2858,44831
+25013,19324,74611,39743,72568,48742,33455,29344,27084
+25014,81862
+25015,27218
+25016,8307,43250,56212
+25017,8076,54742
+25018,41035,63955
+25019,6517
+25020,64000
+25021,76086,72835,54005
+25022,37504
+25023,18670,14185
+25024,10387
+25025,25745,79145
+25026,13972,208,54328
+25027,9907,7650
+25028,66193,26891,4051
+25029,27015,72282
+25030,37752,17612
+25031,69010,10647
+25032,39249,66647
+25033,10428,32313
+25034,57361,16202,12468,3289
+25035,73724
+25036,6831
+25037,14647
+25038,40465,77895,58393,5948
+25039,60073,59255
+25040,27100,57981
+25041,56369,30938,36017
+25042,4064,43795,53732
+25043,42298,36909,32508
+25044,43917,63139,12596
+25045,23992,64838,68771
+25046,16257
+25047,11383,586,55009,74822
+25048,26766,32108
+25049,43406,35354
+25050,26935,46090
+25051,27344
+25052,31155,18036,70952,26040
+25053,44512,57678,70963,49286
+25054,80404,51777
+25055,41706
+25056,33132,31224,78742
+25057,57100,33871,70207
+25058,64953,16532
+25059,56230,28513,40466,39386,17283,31627,30441,70604
+25060,9712,4430,71172,76419,403,52850,74037
+25061,4903,44562
+25062,9926
+25063,17226
+25064,78932,61442,63051,45453
+25065,15127
+25066,30515
+25067,77071,52917,804
+25068,6088,9302
+25069,51723,12510
+25070,63129,793
+25071,62188,76799,20523,29873
+25072,74686
+25073,12884,78377
+25074,25564,46469
+25075,12184,60540,16152,776
+25076,29950,23880,18484
+25077,52861,70603
+25078,962,20236,16160,16432,29783
+25079,29031,12391,46702
+25080,15483,2847,9875,58272
+25081,51405,40618,58548,67561,66428
+25082,78566,56315
+25083,28813
+25084,30060,56942
+25085,50682,59934,18138,34683,37304
+25086,39528
+25087,50699,59796,47779,57056
+25088,19648,60404,41468
+25089,23100,36196,12219,82183,46549,73052
+25090,7134,81622,44218
+25091,59318,56004
+25092,29511,3925,48578
+25093,7124,25620
+25094,23998,63067
+25095,7351,2743,8849
+25096,44220,54838
+25097,43886,42979
+25098,7401,15961,13521
+25099,6009,43962,58363,77847,56466,18683
+25100,59841
+25101,67385
+25102,22766,76707,42492,24124,74691,80681,25869
+25103,10761,43762
+25104,30171
+25105,69810,2296
+25106,49392
+25107,34548
+25108,68848,59028
+25109,62727,33997
+25110,57025,75615,14359,11740,35615,27860
+25111,660
+25112,34819,33932,17329,15424,73032
+25113,58898
+25114,17987,11688
+25115,53999,35008,534,78205,23713,38636,33930
+25116,22699,64334,43997
+25117,57088,43949,1115
+25118,26182,44655,26520,60356,46866
+25119,18105,26578,3088,41721,41183
+25120,28391
+25121,37760
+25122,14495
+25123,39080,12144,81964,6854,28174,36140,80481
+25124,20031,66447,39371,70019
+25125,52460,53770
+25126,46494
+25127,28916
+25128,1744,61944,74842,7382,51146
+25129,68960,56783
+25130,82009
+25131,67533,60458
+25132,52522,2319
+25133,58115,38228,21107
+25134,36955,81910,59938,18958,4542,32922,56420
+25135,12394
+25136,7693,47152,57431,32028
+25137,59093,10426
+25138,73970,55810,18298
+25139,73087
+25140,38346,52048,66781,52348
+25141,8195
+25142,5726,70267
+25143,43895,68524,26671
+25144,45156,28072,22161,63530
+25145,62541,5360
+25146,61019
+25147,43365
+25148,67358,18635
+25149,29669,48583,49392,56232,31052,41483,19425,69129
+25150,56615,19239,22971,21846
+25151,30512,19306,23565,38887
+25152,18973
+25153,38602,79291,56338,24115,53657,60164
+25154,68793
+25155,74322
+25156,39750,41954,35582,70546
+25157,13600,67996,32618,49607
+25158,33909,44265,30585,34430,40855,80318,71473
+25159,62071
+25160,28767
+25161,51271
+25162,3579
+25163,10987,72934,7962,19151,10409
+25164,35155,74534
+25165,74690,56336,28715,182,6959
+25166,21911
+25167,42453,61591
+25168,81934
+25169,53544,30978,26249
+25170,9579,23059
+25171,57733
+25172,53289,49971,15553,4211,79924,32118
+25173,27070,58801,4901,5384
+25174,22928,5888,72861,34909
+25175,883,52609,43986
+25176,650
+25177,51609,66788
+25178,29629,13919,778,30198,30693
+25179,23051,8146,45904
+25180,17394,9711,3412
+25181,30982
+25182,51157,34106,72878,71563
+25183,16943
+25184,16050,26275,48742,72153
+25185,26102
+25186,66770
+25187,47462,11108,59971
+25188,82191,42967
+25189,57047,25084,14195
+25190,2457
+25191,52073
+25192,76395,5237,42326
+25193,58951
+25194,75942
+25195,76409
+25196,44025
+25197,67122,68245,29046,13890
+25198,80760,72028,50712,62276
+25199,47240,73150,18060,9446,8207
+25200,54519
+25201,68546
+25202,30378,21450,55536,72795,15119,30704
+25203,50191,20791
+25204,75492,32596,24138
+25205,47670,25033
+25206,65037
+25207,79057,28938,72677,17236,32875
+25208,70189,14622,69646,73070
+25209,20878,43090,38667,70261,49392
+25210,3181
+25211,23527
+25212,48909,62482,40469,22371,4842,20938,31164
+25213,77786,63316,28170
+25214,31976,12889
+25215,9490
+25216,43349
+25217,79005,72829
+25218,68374,12087,18889
+25219,78339
+25220,37493
+25221,28362
+25222,78184,26261,79833,20728
+25223,64542
+25224,15586
+25225,8936
+25226,30231,50975,42218
+25227,68100,22107
+25228,22055
+25229,23090,45444,46904,28135
+25230,30737
+25231,52291,55821,64119
+25232,32040,8748
+25233,17075
+25234,47741
+25235,10989
+25236,37059,12371
+25237,79635
+25238,27366
+25239,66683
+25240,25688,53644
+25241,68273,71470
+25242,75947,67917,13073,72255
+25243,26469,58442,22166,15769
+25244,36391,73739
+25245,79920,52936
+25246,15924,41112,56817,55377,30765
+25247,79738
+25248,63139,46622,69820
+25249,7109,35668
+25250,30829,73340,57684
+25251,11343
+25252,64153,11236,59933
+25253,50152,46119,73446,37150,73264
+25254,67255,76745
+25255,71699
+25256,21444
+25257,79113,46845,12177
+25258,71028,64648,62619
+25259,29094,75165
+25260,81696,67270,80832
+25261,44819,1348,26380,27077
+25262,51258
+25263,376,51526,13169,18069
+25264,2823
+25265,60211
+25266,32905,19074
+25267,68560,63755
+25268,30238,490
+25269,78407,71468,64230,78071,62568
+25270,25503,27688,18428,51244
+25271,21974
+25272,25725,53816
+25273,27040
+25274,77205,67645
+25275,23958,36487
+25276,66760,12408,15110,71817,29287
+25277,67337,41517,68413,1000,60612
+25278,32587
+25279,45265
+25280,42680,71120,32577
+25281,40276,53213
+25282,15584,77792
+25283,20848
+25284,63666,80528
+25285,34137
+25286,26350,11827
+25287,3972,28695
+25288,70131,490
+25289,75454,3506
+25290,65443,43874
+25291,79627,68582
+25292,10790,24498,55787,72647
+25293,75892
+25294,29720,1089,42489
+25295,52776,76502
+25296,61039
+25297,24052,67740,7274
+25298,67840
+25299,56837,36330,35940,55826
+25300,65105,2074
+25301,52266,26433
+25302,14355
+25303,26446,16843
+25304,4887,60731,16398,32627
+25305,1141
+25306,696,36900,39538,17418
+25307,9336,29443
+25308,41880,45395
+25309,23502
+25310,13634,18743,61937,2355
+25311,26953,50662
+25312,19798,59490
+25313,54240
+25314,47686
+25315,12149,59276
+25316,12174
+25317,11434,51252
+25318,67858,1520,10393
+25319,57558,35678,34328
+25320,16442,66261,71959,31527,51695
+25321,67808,40380,28471
+25322,51156
+25323,63724
+25324,26657,42646,42093
+25325,61689,68289,58268
+25326,44247,56017
+25327,19649,58331
+25328,7454,34969
+25329,66434,76962
+25330,7242
+25331,76378,70329,8394,59118
+25332,5097,52798,79410
+25333,19015,60066,81168
+25334,39308,38835,79268
+25335,78159
+25336,20496,50211
+25337,54474,56245
+25338,62914
+25339,50303,58525,32971
+25340,75882,8804,61224
+25341,21651
+25342,39542,54101
+25343,31595,6078,26460,79030
+25344,58948,71437,62838,55684
+25345,18929
+25346,78974,20129,38652,18786
+25347,60321
+25348,81162,29436,11733
+25349,35261,14756
+25350,17921
+25351,43689
+25352,20969
+25353,45514,64409,43293
+25354,16126
+25355,74091,46013
+25356,63427
+25357,62772
+25358,41868,45547
+25359,33326
+25360,20864
+25361,12852
+25362,44898,44862,49573,19363,37988,1817,53846
+25363,37371,187
+25364,17135
+25365,71245
+25366,63058,53195,61672
+25367,80229,416,27927
+25368,33002
+25369,36280,23643
+25370,39896,33085
+25371,65961,58733,42326,40055
+25372,66017,39079
+25373,19911
+25374,60375
+25375,319
+25376,15324,46028
+25377,46015,58565,38917
+25378,38042,40456
+25379,29749,79624,26553
+25380,34150
+25381,64115,62948
+25382,78226
+25383,57345
+25384,50418
+25385,55883
+25386,76454,53161,3277
+25387,51235
+25388,28664,15100,8844
+25389,35619,79261
+25390,55822,60828
+25391,32278,37612,61801
+25392,43977
+25393,43230,71237
+25394,54054
+25395,37268,59982,13730,29219,45055
+25396,60962
+25397,80243
+25398,81243,56144,36898
+25399,47994,19712,56872,29198
+25400,12557
+25401,17814,42032,42968
+25402,57035
+25403,30606,72708,62790
+25404,60227,54307
+25405,72603,77591,11824,116,47907,42909,22750,47251
+25406,30212,60313,8786,66572,64470,6198
+25407,34133
+25408,71542,55895
+25409,45195,7438
+25410,34578,26942
+25411,49827,871,10059
+25412,73882,59816,19066,67131,45529
+25413,59404,5254
+25414,13515,35264,18094,57615,35517
+25415,9310,52533
+25416,81978,59283,45558
+25417,2949,43297,52863
+25418,51738,10917,66813,69175,5482
+25419,53487,81379,45707
+25420,19683,37453,36206
+25421,43683
+25422,18062
+25423,49851,45781
+25424,28447,67607,34042
+25425,72540
+25426,34059
+25427,73383
+25428,5022,5625,80947
+25429,28542
+25430,71932,62037
+25431,15823,30770
+25432,43512,67534
+25433,46749
+25434,15491,37041
+25435,74665,26475,72252
+25436,26475
+25437,27994,52587
+25438,21022,36167,21511
+25439,68546
+25440,10824,58430,44250,20736,44272
+25441,7949
+25442,14015
+25443,65711
+25444,1618,59513,61992
+25445,42409,69575,15645
+25446,9588
+25447,4515
+25448,49504
+25449,67556,35684
+25450,15156,13473
+25451,77125
+25452,66160,59633,36812,58858
+25453,67855,5323
+25454,48381,65793,54951
+25455,60940,52317,67995,42541,8961
+25456,47016
+25457,44311
+25458,75848
+25459,75441
+25460,35725,73132
+25461,50346,32135
+25462,29699,59792
+25463,81282,25886,48503,56751
+25464,49944,7568,19830
+25465,44922
+25466,77696,76100
+25467,61342
+25468,28312
+25469,57942
+25470,31022,5517,54655
+25471,26534,55227,67890,10983,10757,355
+25472,9977
+25473,30845,76997,4537
+25474,35569,76502,47951
+25475,37424
+25476,4983
+25477,51435
+25478,5177,14957
+25479,12657,37322,57371,70016
+25480,51667,27545
+25481,43363,22586
+25482,38194,32618,68437,62436
+25483,52037,16992,71834
+25484,32380,63111,33381
+25485,34764,79096,78345,77076
+25486,3738,48889
+25487,55176,29000,27656
+25488,3379
+25489,34935,68840
+25490,8890
+25491,32810
+25492,19270,62434
+25493,12787
+25494,80247,6130
+25495,22898
+25496,50412
+25497,59401
+25498,48715,8546
+25499,82052,31574,29796,672,19534
+25500,37112,67091,20179
+25501,30350,63799,73065,76024
+25502,19598
+25503,62869,46978
+25504,66572
+25505,71788
+25506,63616,15426,35122,43506
+25507,80568,3672
+25508,16343,58646,36270
+25509,30512,34564,10301,36379
+25510,4252
+25511,59191
+25512,24317,44382,17239,13468
+25513,34844
+25514,22072,59749,22524,7892
+25515,49660,15560,62333
+25516,28364,15950
+25517,44180,35318
+25518,43711
+25519,21572
+25520,18526,8378
+25521,7582,21429
+25522,39109,20766
+25523,21881,67212,43401
+25524,78223,74612
+25525,22763,16363,74234
+25526,63406,6411
+25527,33790,78266,4128,17802
+25528,19487
+25529,42709,42072,38984
+25530,2111,27398,24336,77354
+25531,21018,79826
+25532,18139
+25533,53250,3615,28592,47953
+25534,29219,74268
+25535,53189,7282
+25536,37749
+25537,15173,77615,20425
+25538,69633,37337
+25539,33117,49731,81841
+25540,42679
+25541,70585,17420,75973
+25542,72861,57380
+25543,42984,55263,58403
+25544,46351
+25545,66428,62314,37291,36404,39050,37409
+25546,6266,64211
+25547,75477
+25548,77793
+25549,56455,65168,41814
+25550,16545,56017,20981
+25551,82113
+25552,40345
+25553,45215
+25554,56457,63812
+25555,45020,4723
+25556,23129,17438,17436
+25557,61888,29769
+25558,7544
+25559,6530
+25560,67396,60597
+25561,18030,7084,17684,54294
+25562,36039,70203,63959,46234,54339
+25563,9881,1589,5153
+25564,18441,13202
+25565,29355,43121,49531
+25566,23833
+25567,72975,68840,63589,14446,52139
+25568,51515,13283,15033
+25569,68313
+25570,74420
+25571,64723,23429
+25572,58052,17625,24987
+25573,25048,34715,28079,50628,50512,14446,58084,74035,48778
+25574,75839
+25575,2630,55898,11208
+25576,6223
+25577,39025,17191,25674,82110,49170
+25578,37494
+25579,26377,56753,63267,63677
+25580,54429,4219
+25581,57527
+25582,8513
+25583,37605,26547
+25584,45923,15831,21775
+25585,36989,39118,49484,42050
+25586,47507
+25587,8857
+25588,27439,45157,43638
+25589,39325
+25590,16926
+25591,42918
+25592,17606,51276,45016,35935,38480
+25593,62095,46379,18728
+25594,5849,23321
+25595,17964
+25596,76565
+25597,68370,32246
+25598,80888
+25599,76968
+25600,5887,47700
+25601,72231,17948,75487
+25602,48421,27530,12487
+25603,11734
+25604,35295,29422,43075
+25605,19964,69395
+25606,16143
+25607,71412
+25608,19189,17371
+25609,22968
+25610,13909,4102
+25611,62872
+25612,47318
+25613,75401,65274
+25614,9077,26
+25615,50158,44039,43326,18549
+25616,73531
+25617,55503,78610,18106,18582
+25618,30978,32495
+25619,22331
+25620,6683
+25621,8396
+25622,39928,55124
+25623,75177
+25624,54989,17964,58967,30641
+25625,74620,76435
+25626,46663
+25627,48483
+25628,67120,52733,44958,28785
+25629,29444,32041,17670
+25630,40986,28739
+25631,52200
+25632,41220
+25633,21557,13928,70848
+25634,1726,77515
+25635,21833
+25636,38913,81254,15394,78071
+25637,9012
+25638,68963,74804,63596
+25639,82173,45111
+25640,70934,69916
+25641,64498,76139,11881
+25642,49839
+25643,13905,71076
+25644,48035,64000,60305,59104
+25645,51862,10184,22268
+25646,17906,34860,15773,20792,75595,10638
+25647,9997,26186,2574
+25648,55493,71806
+25649,49120,4782,12341,70892
+25650,23200,41718,20081,17596
+25651,61381,66996
+25652,12126,723
+25653,27650,31754,24572
+25654,55626,57190,8909
+25655,1493
+25656,50039,79862,40971
+25657,5962,51606
+25658,80625,27057,67957,50437
+25659,58525
+25660,53752,45079
+25661,40301,22929
+25662,26829,57391
+25663,62417,67042
+25664,63576
+25665,30363
+25666,33574
+25667,68281,54117
+25668,65891,15533,25159,36323,28914,44512
+25669,7115
+25670,81282,801,28086,25494,46258
+25671,16960,24672,9500,46644
+25672,36367
+25673,82122
+25674,78226
+25675,21588,76454
+25676,60890,44262,6257
+25677,10734,7426,26947,13982
+25678,36008
+25679,49265,59967,19781
+25680,73764,32101,22728
+25681,62872,14987
+25682,64975,10533
+25683,72818,47797
+25684,38753
+25685,21763
+25686,75086,2914
+25687,71390,4994,36074,17248,48204
+25688,8513
+25689,58005
+25690,35696
+25691,13864,48699
+25692,3925,17309
+25693,67578,48359
+25694,29426,49076,77875
+25695,60759,18253,75613
+25696,49782
+25697,75062,57841,26377,20994,78548
+25698,2221,31730
+25699,23838,32648,10663
+25700,32104,7650,26815,76279,5695
+25701,46958,76442
+25702,81664
+25703,41837,54291
+25704,65089,16291,76018
+25705,77316,50003,75178,52663
+25706,38411,5924,68782,16203,13397
+25707,70686
+25708,29884
+25709,59777,48277,53419
+25710,17796
+25711,7533,69774
+25712,72974,49621,32159
+25713,11692,51241,14329
+25714,80120,33218,4871,58030,51552,65686,49973
+25715,19133
+25716,18279,41547
+25717,16822,45997,71709
+25718,5735
+25719,41654,7818,38013
+25720,17183,43581
+25721,17233
+25722,38785
+25723,9055,17512,17692,24858,72071,54274
+25724,42506,15645
+25725,40729,69804,62472
+25726,78657
+25727,22014
+25728,74443
+25729,9226,47010,76143,167
+25730,28957,2857,46304,2080
+25731,77328,70916,65948,16135,68960,77550,28671,45382
+25732,44196
+25733,67062
+25734,50239,42477,75435,69920,72079
+25735,50916,56623
+25736,81404
+25737,24000,15102,33407
+25738,29415
+25739,52239
+25740,31768,63333,11705
+25741,72460
+25742,60580,64753
+25743,34476
+25744,42506,66798
+25745,16115
+25746,26220,29746,73452,6964,48357,58920
+25747,21236
+25748,37494,46918
+25749,57109
+25750,1955
+25751,47150
+25752,26953,39316,28896
+25753,60605,63614,10901
+25754,42565
+25755,22819,23143
+25756,80179,35304
+25757,4467
+25758,28811,56036,15794
+25759,63609
+25760,58078,71562,75973,31089,17017
+25761,77941,42739,55949,74711,24887
+25762,43049,32498,66177,19008
+25763,16221,33669
+25764,51754
+25765,14833,69715,43057,45616,41386
+25766,24223,63260
+25767,27897,74177,62198,22715
+25768,44647,21693,37269
+25769,21061,4204
+25770,69599
+25771,45989
+25772,82088,68192
+25773,69577,20788,12517,58025,63445
+25774,13430,64556,20281,65743
+25775,69974
+25776,22063,81359
+25777,11881,19545
+25778,11775,47369,66320,76956
+25779,25020,13778,81019,43606,57430
+25780,10920
+25781,30897,41865
+25782,29336,18579
+25783,33138,76868
+25784,63113,34578,21276
+25785,29822
+25786,50566,45355,30527,26555
+25787,31125,53456
+25788,4197
+25789,36906
+25790,66525,28191,5158
+25791,30706,78246,64457,36595,51343,13510,59725
+25792,60354,41959,75375,74578
+25793,6324,23649,52468,52116,74528,1822
+25794,24230
+25795,43403
+25796,41574
+25797,63918,63140,79139,10600,60538,58618
+25798,46787,33708,43024
+25799,5073,64886,51623
+25800,45324
+25801,76142,19886,74753,77946,59674,31508
+25802,41954
+25803,29615
+25804,34734,36412
+25805,4798,43595,40724,45158
+25806,49165
+25807,80801,9888,79139,54542
+25808,14120,58490,53582,26148
+25809,49257,73662,48930
+25810,65374,30015,34988,73141
+25811,45426
+25812,16413,44724
+25813,974,42220,5777
+25814,14323,710
+25815,40939,18082
+25816,29602,46613
+25817,61049
+25818,71642,59957,8807,31176,71905
+25819,38748
+25820,16777,72364
+25821,59017
+25822,3244
+25823,37306,32517,57057
+25824,49227,74495,36158,57813,17533,19733,73240
+25825,56315
+25826,10957
+25827,80374,55154
+25828,68536,2387,11715,50470
+25829,80000
+25830,17681,78223
+25831,65794,58226
+25832,64222,35766
+25833,12198,81921,70225,31551
+25834,43373
+25835,46688
+25836,25603
+25837,44298
+25838,5127,62455,61724,60746,35533
+25839,25781
+25840,31535
+25841,27041,73354,46328
+25842,2016,43303,74979
+25843,52345,15975
+25844,51812,31798
+25845,27027
+25846,51942,73885
+25847,61539,2980,41836,14436
+25848,26943,62015,4792,42246,76679,50738,64668
+25849,31089,49898
+25850,30163,24261
+25851,57902,51549
+25852,56837,11399
+25853,1625
+25854,73521,66495
+25855,52107,54756
+25856,10743,51284,80812,27251
+25857,68206,22865,28138
+25858,67279,39362,1360
+25859,78095,60845,44813,73598
+25860,64065,24856
+25861,490
+25862,29257,21070
+25863,60570
+25864,44308
+25865,19060
+25866,61715,1171,65437
+25867,59584,14353
+25868,72923,6494,22695
+25869,16306
+25870,62095,75694,81967
+25871,37043,39993,59483
+25872,53698,81887,8713
+25873,73602,32242,78622,26169,21381
+25874,77781
+25875,43543
+25876,18660,55906,19154,5023,71764,80013,62514
+25877,56197,23910
+25878,17812,55353
+25879,70315,68353
+25880,2568,54512,62872
+25881,78018
+25882,2334
+25883,43008,4403,47379,67233
+25884,45271,71812
+25885,81798,7601
+25886,42829,32070
+25887,22807
+25888,11903,57188,69631,35382
+25889,69234,27612
+25890,8864,7482
+25891,4361,51659,43436
+25892,39675,16315
+25893,58445,51271
+25894,74978,1578,73043,888
+25895,33569,34058,2693
+25896,80685,50435
+25897,43315,57344,73468
+25898,38059
+25899,76712,71363,34641
+25900,29553,64352,46341,20895
+25901,16601,29926
+25902,29978,67772,57083
+25903,79154,79546
+25904,73263,42924,21749,79637
+25905,15063
+25906,17654,16232,50043
+25907,18808,51910,78548,3185
+25908,5553
+25909,49916,27818,43201,27157
+25910,25620
+25911,46437,65815
+25912,15870,25023,3636
+25913,74492,24147,30637
+25914,81554,9488,51216
+25915,43931,13071,76902,42346,23738,66065,25866
+25916,60610,724
+25917,65823,30900,11654,74876
+25918,56239,27975,29777,60803,47009
+25919,68483
+25920,17116,36332
+25921,74193
+25922,39149,50109,37823,594,64585
+25923,73886
+25924,65223,27474
+25925,42038,5331,8183,54715
+25926,30859,70520,49414,80002,36397,41383,50178
+25927,45654
+25928,67116
+25929,68777,54736
+25930,74773,40117,67199,392
+25931,44738,28886
+25932,53283
+25933,6946
+25934,62136
+25935,1869,32707,75742,64056,32031
+25936,14618
+25937,35374,47318,2339,31473
+25938,24252,74799
+25939,33191,68188,44063
+25940,7500
+25941,81012
+25942,6083,16239,40647,71276,72380,20657,59243
+25943,51741
+25944,68701,71150,35518
+25945,66578,45174,13018
+25946,18704,45069,49396
+25947,56436,59424,4528,70543,50215
+25948,66857,10872
+25949,22809,29519
+25950,11461
+25951,52378,60222
+25952,25481,11805,14671
+25953,53850,28786
+25954,76658,30893,51051,7244,18307
+25955,74939,81032,75261
+25956,25785,61377
+25957,24998,75497
+25958,67492,50984
+25959,35723,73852,5636
+25960,68898,60114
+25961,14274,82105
+25962,55550,35618
+25963,51841,9072
+25964,12350,43582,48143
+25965,22728,66304,14694,21752,69259
+25966,75279,68532,21569
+25967,29850,34126,46541
+25968,34501,8466
+25969,68745,69468
+25970,27410
+25971,81549,56711,46776
+25972,22448,74083
+25973,19137,12610,81308,7567,4097
+25974,60969,77238,35565
+25975,44937,62003,68472
+25976,7274,9769
+25977,79888,81812,57699,71823
+25978,65822
+25979,54367,6849,32266
+25980,47092,53634
+25981,4045,23804,7174,25978,59270
+25982,12950,60677,14894
+25983,73354,45123
+25984,39849,61882
+25985,16031,59360,71329
+25986,60671,69605,54293,5320
+25987,18707
+25988,61955,30100,77687
+25989,67365,64563,80957
+25990,25560,10471,23946,41237
+25991,71421,43269
+25992,42530,48329,52777,23801
+25993,16821,13030
+25994,1905,15523,39310
+25995,49719,49173,4373,43723
+25996,80124
+25997,24398
+25998,79750
+25999,72701,81830
+26000,37025,27816
+26001,28039
+26002,28940,63984,1730
+26003,20365,332
+26004,79812,26938
+26005,20693,68931,53723,20544
+26006,13482,79517
+26007,77237,28953,47071,24924,6833,55690
+26008,46413,1320,27307,55110,10730,32379
+26009,19167
+26010,33924,81941,57083
+26011,44511
+26012,23056,36030,27540,13620,75121
+26013,51672,13340,70763
+26014,69580
+26015,26588
+26016,81898,16774,54247,60421,56111
+26017,26184,62848,33158,67571,30798,70391,29876
+26018,58548,62619
+26019,18182
+26020,24556,7454,60513
+26021,2571,59444
+26022,53770
+26023,36259,39043,76903,16569
+26024,3208,15503
+26025,5206,13659,5207,55588,24161
+26026,77124
+26027,57644,10578
+26028,22710
+26029,65243,70087
+26030,8640,80673,5049
+26031,66976,64628,61959,30202
+26032,40014
+26033,77819,78247,55498,60930
+26034,46669,17268,31037,6373
+26035,75929
+26036,28349,58094,986,15758,54201
+26037,33888
+26038,73853,53042
+26039,50318
+26040,30727,13330,64122
+26041,27249
+26042,66581
+26043,73148,23933,62314,80700
+26044,26347
+26045,47951
+26046,28551
+26047,35668,11248,1814,81559
+26048,56640
+26049,57566
+26050,3219,54370,58681,18016,30805
+26051,27669,70883,77195
+26052,24775,61898
+26053,59504,66247,28543
+26054,25048,5793,54605
+26055,56711,12133
+26056,28438
+26057,64733,37971,55038
+26058,40488
+26059,19469,20782,75358
+26060,73213
+26061,32828,33734,47804
+26062,78701,78339,14040
+26063,77256
+26064,80667,52640
+26065,50289
+26066,66378,33669
+26067,71546,44205,76890
+26068,44221,64550
+26069,60770,50712,19255,51055
+26070,40249,6149,46708,65732,15125,64933,28117
+26071,62425,40213,76295
+26072,22005,60015,35392,73877,15814
+26073,21241
+26074,32369,65169,28990
+26075,52185,52989,54542,55711
+26076,40014
+26077,80455,36169
+26078,28541,77796,34672,64779
+26079,7759
+26080,53361,286
+26081,4678,35478,35385
+26082,20235,6397,2225
+26083,6103
+26084,65911
+26085,26390,19372,72804,2770
+26086,34795,9819
+26087,6721
+26088,3729
+26089,16738,73221
+26090,3746,43368,3878,9282,78721
+26091,66487,73016,25017,6340,63413,30026
+26092,23459,40694,33182,30532
+26093,25108,69633
+26094,65937
+26095,13631,57232,39710
+26096,78229,3677
+26097,75835,80916,58718,32192
+26098,10460,42739,12171
+26099,51801
+26100,8471,78330
+26101,2031,57374,13238,1626
+26102,5270
+26103,48696,81037,66356,20446
+26104,8373
+26105,63524,13639,36434,32162,38810
+26106,65399,35010,15795,41474,47731
+26107,13958,73947,48189,58474,41402,74257
+26108,14861
+26109,26285,6766,71799,29425,37694,18461
+26110,70969,55205
+26111,64416,56455,46664
+26112,23237,18979
+26113,44021,21446,76682,5513,2036
+26114,1624
+26115,48781,44908,36142,32169
+26116,58898,29830
+26117,26675,74799,24371
+26118,43904
+26119,68264
+26120,41197,56887,23329,38468
+26121,38428
+26122,59907
+26123,47629,31690,39365
+26124,5002,33860,51199,77051
+26125,38415,39371
+26126,68919,69404,56652,38666
+26127,31102,37251,65310
+26128,24274,80307,31871,14795
+26129,50720
+26130,59225,49611,28248
+26131,48851,22178,67818
+26132,76047,42473
+26133,70761
+26134,49056
+26135,40349
+26136,63090
+26137,26553,76034
+26138,28406,40821,58174,23768
+26139,75540,75187,70684
+26140,26306,6733
+26141,53726,55713,64674,26274
+26142,51097,51294
+26143,42588,62229,5933,30489
+26144,61592
+26145,20302,16022,113,80603,27590
+26146,1799
+26147,34416,79761,54909,71059
+26148,36992,13812
+26149,61023,34517
+26150,62349,80171,69745,5884
+26151,32555
+26152,45314,32332
+26153,57730,23897
+26154,16414
+26155,50180
+26156,23530,25423,81458
+26157,41007
+26158,26044
+26159,19289,80523,4531,71711
+26160,37777,3493,16416,40181,2596
+26161,51374
+26162,30347,68383
+26163,68687,15725
+26164,82061,11045,23379,55091
+26165,79428
+26166,42256,43390,79709,21424
+26167,6132,71092
+26168,9318
+26169,59154,20641,18372,57374,80030
+26170,42115,76962,63351,66156
+26171,62745
+26172,81712,43860
+26173,56280,29154
+26174,64337,9245,65542,33431,58174
+26175,6322
+26176,57329
+26177,14157
+26178,52818
+26179,58414
+26180,19653,54271,4073
+26181,7342
+26182,67008,35491,23207,29978
+26183,4025
+26184,66295,60404,64073
+26185,80282,69913,15432,76138
+26186,19985,78624
+26187,1560,52802,69002,59573,43906,6541
+26188,43126,10062,73966
+26189,26269
+26190,32428,79138,55025
+26191,6789,76194,29078
+26192,45562,50804,31818,41716
+26193,1007,1665,14203
+26194,61478,33,62572
+26195,35563,67488,41248,46094
+26196,1532,52360,64664,51660,33120
+26197,60114
+26198,76860
+26199,59602,10386,36273
+26200,67397,75177
+26201,78109,54756
+26202,19420
+26203,34361
+26204,21043,89,58708,25969,24370,72950
+26205,41069
+26206,6327
+26207,9257,22817
+26208,21294
+26209,30277
+26210,67175,2178,52440,16087,52665,22383,76808
+26211,43510,26738,46210,4838,9599,57250
+26212,74324,41504,68898,12457,51203,49771,35967,27615
+26213,7990,59564,13280
+26214,3274,31688
+26215,16105,13662,40393,58592
+26216,58912,78870
+26217,23585,28959
+26218,14346,10894,30262
+26219,32171,67434
+26220,11588
+26221,23636,76276
+26222,10053
+26223,73128,76564,64573,54058,30440,42703,23173
+26224,40064,10077
+26225,9882
+26226,48512,67072
+26227,9833
+26228,13406
+26229,72977
+26230,55008,43430,39621,33471
+26231,19043,67963,55195,28873,72991
+26232,60394,5705
+26233,5405
+26234,39996
+26235,75666,6889,51702
+26236,13272,63687,41941,77828,52305,79989,19350
+26237,59210,44819,25324,56255,13538
+26238,40040,62221,25588,1861
+26239,18839
+26240,24735,149
+26241,54948,42885
+26242,37540,28703,12414,79704
+26243,75816,36766,69828,10157
+26244,34679
+26245,56657,51661
+26246,61036,72503
+26247,44146,54392,71250
+26248,40028,41390,50310,40318
+26249,16685
+26250,38087,57193
+26251,55693,45718,14337,43078
+26252,7305,73883
+26253,50257,10206
+26254,6826,54371,23410,49315
+26255,22433,60376
+26256,76839,11468,81126,52169,37142
+26257,65178,12116
+26258,16761
+26259,52867
+26260,30674,18820,63403
+26261,36938,69577,25375,28659
+26262,19401
+26263,44910
+26264,2318
+26265,11836,74020,78314
+26266,33276,81884
+26267,52090
+26268,57208,521,6555,24742
+26269,57432,1733
+26270,35974
+26271,25934
+26272,63722
+26273,22587,4014,3721
+26274,72813,10050,51782,51100
+26275,69278,10567
+26276,64335
+26277,42760,31196,53943,55364
+26278,69536,79350
+26279,1668
+26280,54275,44375,47043,17320,32095
+26281,74002,78406,50595
+26282,60409,49855
+26283,80057,1729
+26284,32440,39850,65528,28618,20683,41170
+26285,70990
+26286,7364
+26287,17878,75246
+26288,22328,16297,73361
+26289,5699,6253,54869,35223
+26290,10979
+26291,9828,66192,30228,41551
+26292,42575,55814
+26293,33666,68634
+26294,5257
+26295,38565,19853,15518,32588
+26296,53574,55675,75719,43203
+26297,15230
+26298,12039,68696,3433,32216
+26299,78791,66641,74555,45273
+26300,57888,57739,61891,58154
+26301,10976
+26302,53206,2531,5962
+26303,17804
+26304,27224,70188
+26305,71088,56564
+26306,41018
+26307,24478,80447
+26308,55733
+26309,49786,118
+26310,33182,62655,27724,13634
+26311,30832,66162,80813
+26312,5183,40083,31586,2453,75967,62342
+26313,67868,76501,21469
+26314,1594,49249,23926
+26315,77849
+26316,25666
+26317,1056
+26318,23050,55338
+26319,25735,6494,67735
+26320,71512,26542,3467
+26321,46839,67488
+26322,44038
+26323,48430,78163,65875,77151,20862,71878,6027
+26324,39155,79182
+26325,2657
+26326,56572,18721,59134,46870
+26327,75694,35689,7172,32541,26560
+26328,12904,20571
+26329,32012
+26330,59401,41667
+26331,65695,37612
+26332,38613
+26333,33332
+26334,29532,48038
+26335,11023,54908,14908
+26336,50759
+26337,33858,18117
+26338,68765,53666,4687,2750,67993
+26339,30203,36816,57485
+26340,24167,37408,6020
+26341,35122
+26342,44717
+26343,62037
+26344,10049,10071,28789
+26345,24723,58443,35858,11253
+26346,15127,29516
+26347,50256,22939
+26348,29407
+26349,53464,79131
+26350,18368
+26351,43055,77214,76456
+26352,66684
+26353,73291
+26354,52380,45800,74619,6216
+26355,78909
+26356,43854,37237,35301,24389,80529
+26357,75,23847,45645
+26358,71999,22236
+26359,16601,33686,33834,29418
+26360,65088,28288,70892
+26361,53978
+26362,81025,52634,80279
+26363,43185,16871
+26364,66563,63515
+26365,41417,52755,20951
+26366,29968,17209,60229,1577
+26367,29320
+26368,68026,16188,45846
+26369,60670,6057,72641,4275
+26370,41604,78996
+26371,55827
+26372,41889,22605,12714
+26373,24563,43972,23786
+26374,51228,72229
+26375,41234
+26376,9920,66566,56042
+26377,18568,18932,10619,51255,36598
+26378,19886,22961,48849
+26379,26103,30034,59119
+26380,59694,26750
+26381,72475,64502,57556,5598
+26382,51785
+26383,73721,33926,27327,7415,43458
+26384,61707,5695
+26385,39344
+26386,59558,135
+26387,38285,26975
+26388,17027,17966,61134
+26389,26775,73248
+26390,39283,22275,43482,70333
+26391,20189
+26392,79980,17475,69907
+26393,23878,6240,64441
+26394,82081
+26395,57867,51362,71369
+26396,59486,79090,69774
+26397,43977,11390
+26398,13732,39612,41397,37951
+26399,16903,11980,10493
+26400,6240
+26401,78113
+26402,59948
+26403,66776
+26404,78219,46145,960
+26405,17166,53560
+26406,78791,43612
+26407,8314,58635,66990
+26408,53596,47119,51885,13766
+26409,73871,58949
+26410,30066,54121
+26411,50823,55181,61473
+26412,41234
+26413,65159,4159
+26414,30962
+26415,18887,63278,33918
+26416,63898,51961,3858
+26417,44521,55606
+26418,37954,22740,79565
+26419,70763,14335,22247,66223
+26420,27597,38890
+26421,57840,5832,68517
+26422,20737
+26423,77732,20399,24223
+26424,27556,20932,79404,55055
+26425,51938,24182
+26426,11052,59593,10524,12182,15362
+26427,61230,57840
+26428,37303,20684,54540,68784,31131,16830
+26429,71441,55596,61592
+26430,69822
+26431,839,25123,56434
+26432,29604
+26433,13186,25924
+26434,56349,81310,37206,24201,7951,65853
+26435,17332,64939,57241
+26436,70978,59032
+26437,31606
+26438,57719
+26439,43500
+26440,8976,74773
+26441,76109,73790,40566,18659
+26442,26245,63043,25595,47135
+26443,52027
+26444,34385,61578,11967
+26445,38734,37825,79195
+26446,16761,79735
+26447,61359
+26448,4081,38365,28755,70173
+26449,68323,348,50530,21836,75470
+26450,52522
+26451,4429,41482,11291,71793,76397
+26452,59924
+26453,23393
+26454,13928
+26455,13634
+26456,36950,44775
+26457,47157
+26458,65432
+26459,20120,56825,11694,56554
+26460,63090,15758
+26461,30996,29446,1531
+26462,78539,78235
+26463,66828,77113,29681
+26464,78120,38755,24256,34957,48394,10153
+26465,58043
+26466,1522,12330,65625,9126,75823
+26467,19926
+26468,20820
+26469,65231
+26470,57297
+26471,57568,53721,48073,52093,18360
+26472,49874,74033,18623
+26473,81785
+26474,30164,51572
+26475,12773,14054,39609
+26476,16871
+26477,81756
+26478,70681,36112,33823
+26479,17502
+26480,19270
+26481,61505,7652
+26482,18245
+26483,79581
+26484,32137
+26485,12462,2368,22542,33
+26486,71581,64439,59060,24660
+26487,21675,26231,81409,56699
+26488,36092,38945
+26489,22403,9110
+26490,67305,79799,12194
+26491,41669,76849,24742,14329,24700,27103,72801,80181,75257
+26492,72594,54128,71837
+26493,2593,43582,29971
+26494,48132
+26495,75725
+26496,35166,14194,61658,75733,76818
+26497,30473,2509,47194
+26498,64225
+26499,2056,53387
+26500,69408,21688
+26501,59116,18561
+26502,12880,37558,4981
+26503,31798
+26504,57307,67501
+26505,43175,57149,77060,1161,61201,68376,29896,81736
+26506,3993,16074
+26507,19583,29869,54429
+26508,52848,78558,3038
+26509,31039,57599,60371
+26510,76953
+26511,11808,55146,75539
+26512,32340,52137,23729
+26513,34107,58923
+26514,47949
+26515,7733,25306,3718
+26516,52403,26110
+26517,24724,44098,43512
+26518,3133,75901
+26519,64782
+26520,42922,72529
+26521,54420,70102,18646,35152,37302
+26522,59343
+26523,59081,10868,28696
+26524,18089
+26525,38285
+26526,23486
+26527,62285
+26528,39565
+26529,5242
+26530,42717,67156,66539,74344,7346
+26531,50611
+26532,47594,35614,42998,79836
+26533,134
+26534,52692
+26535,17799,38927
+26536,81639,29859,33067
+26537,15631,1067,72473,49123
+26538,67769
+26539,12688,29601
+26540,60222,15325,31153,71904,50301
+26541,42609,39373,5722,78192
+26542,66270
+26543,22697
+26544,5863,18883,74713,55666,11775
+26545,31158,32560,69988,4477
+26546,4917,37439
+26547,31511,45071
+26548,13086,64717
+26549,11778,11972,25680,65611,78571
+26550,11852,68921
+26551,5122,61773
+26552,56492,5205,33460,68471
+26553,66490
+26554,36579
+26555,19170,63846
+26556,71801
+26557,63193,8423,28804
+26558,71595,30684,4479
+26559,55166,1490
+26560,73246,63532,8622,31442
+26561,3421
+26562,67093,40280
+26563,28352,58844,75225
+26564,12787
+26565,2252,9452,75976
+26566,6876,65740,3256
+26567,8971,73048,63873,17484
+26568,5867,62861,2547,58768
+26569,34342,35492
+26570,9495,22330
+26571,41660,37692,51692
+26572,6381,61314,47334,28273,55940
+26573,15762,14715,17892
+26574,40807
+26575,3326
+26576,4896,75140,71812
+26577,63824,34515,31818,48685
+26578,37675
+26579,80772
+26580,62870,56965
+26581,36934
+26582,39515,38626,27227,4901,68283,59762
+26583,37175
+26584,15244,33367
+26585,46312
+26586,9537
+26587,57982,67702,42101
+26588,47984,21718
+26589,64830
+26590,39501,65626,19708,74011,64403
+26591,13984,34625
+26592,17007
+26593,12593,38779,36602,50939
+26594,64979,685,6778,34552,48066,53745
+26595,68756,30603,26588
+26596,66060,19789,42785
+26597,26935,3572,74790
+26598,37544,67573,42415,12180,18579
+26599,34410,53532,2278,1733
+26600,21459,43526,68745,12153
+26601,33910,38635,31673
+26602,1686
+26603,24390,77032,27749
+26604,35128
+26605,60220,71824,24908
+26606,55145,57905
+26607,44795,42983,52449
+26608,13762,22317,52566
+26609,10308,43673,10595
+26610,79349,67454
+26611,3931,77628,61814,78433,73108
+26612,44785
+26613,73886,49304
+26614,76656,18238,44758
+26615,71519,69934
+26616,70676,43681,72708,54810
+26617,23594,55498
+26618,21456
+26619,34802,42016,63658
+26620,16423
+26621,80732
+26622,33249,38086
+26623,32970,11689,66132,15703
+26624,3118,15755
+26625,39393,43118,20704,56931,53517,55224
+26626,79058
+26627,27249
+26628,62897,58438,37899
+26629,61394,29212,66428
+26630,63347
+26631,50770
+26632,57601,39019,69821,58742
+26633,44710,76533,77799,66857
+26634,45590,61590,13089,11416
+26635,49012,8323,67821
+26636,8018
+26637,68004,42213,17076,34117
+26638,22337
+26639,17921,59349
+26640,67762,75303,44473,44889
+26641,76206
+26642,24656,7177,44971
+26643,11985,61811,6411
+26644,12595,79641
+26645,29769,47562,5974,73879,40124
+26646,68309,71930,45923,2877
+26647,47501,16901,72978
+26648,58640
+26649,50459,39519,33454
+26650,71309,51281
+26651,73579
+26652,22055
+26653,79766
+26654,60679,51701,29893
+26655,67047
+26656,24359,50832
+26657,29719
+26658,25369,56260,77588,57336
+26659,82071,47656,37490,49271
+26660,43285
+26661,22457
+26662,43365
+26663,2725,8472
+26664,62437,45442,37292
+26665,62425,12697
+26666,71976,11191,21380
+26667,4307,62872
+26668,29226,75156,25120,23344,7688,6517
+26669,61399,14607,77494,12830,64008
+26670,33999,77179,42123,35689,21416,75685
+26671,63237,50357
+26672,16901
+26673,10420,59438
+26674,48649
+26675,63722,41007
+26676,67192,61682,33740,65268
+26677,58840,52780
+26678,60481,58013,61745,62845
+26679,8617,31782,7440,47030,170,14066,44374
+26680,67831,65822
+26681,73464,63468,24641,78561
+26682,6344,40156,11490
+26683,32338
+26684,63968,37105,46168,80528
+26685,10603
+26686,9273,76604,14625,66670,74273,19017,46733,39419
+26687,61709,68307,29797,44148
+26688,5798
+26689,8874,73108,16026
+26690,27406,46101,13634,21800,50266
+26691,21974,51810
+26692,20494,76588
+26693,870,38444,49251,989
+26694,60475,9233
+26695,46586,22013
+26696,14125
+26697,54890,47398,75902
+26698,65343
+26699,69824,17835,48311,24028,19270,50113
+26700,78241,19525
+26701,78496,59657,27097
+26702,2987,34169,69868
+26703,20255,66571,69024
+26704,25115,47670,20646
+26705,23117
+26706,8178,35563,16480
+26707,27361,72093
+26708,66149
+26709,45123
+26710,65166
+26711,8779
+26712,1005
+26713,68680,22605,22825,75820
+26714,70596,17304
+26715,67568
+26716,60588
+26717,45685,52317,39969
+26718,12122
+26719,81495,17062,48169,76935,16722,44811
+26720,43820
+26721,80659
+26722,15833,36730
+26723,22990
+26724,10730,50879,20887,56797,35264,4172,49951
+26725,3541,67702,34940
+26726,14110,45315,4839,22007
+26727,73543,71033
+26728,14881
+26729,76009,59256
+26730,25657
+26731,12267,49116
+26732,10231
+26733,41347,8613
+26734,42411,8526
+26735,22180,48003
+26736,67658,35836,18867
+26737,67011,66624,68232,5034,12150
+26738,31906,64849,46365,43556
+26739,18610,57056
+26740,70811,72782,32331,49890,45272,67249
+26741,8790
+26742,32467,42761,13780,6615
+26743,58208,19800
+26744,37339,51448
+26745,58490,9955
+26746,3181,45285
+26747,3794,61648,70232
+26748,50268,39180
+26749,43530,42933,53733,66973
+26750,80728,70825,74575,76965
+26751,67492,6240
+26752,29713,72770,60619,19038
+26753,4342,22315,77095,77728
+26754,68951
+26755,35758
+26756,17401,15423
+26757,2322,22729,77828,74053,31459
+26758,35984,19713,79466
+26759,3175,54928,38680,29830,80844
+26760,73635,20850
+26761,49785,29728
+26762,9750
+26763,61073,10912,64197
+26764,50399,75383,77537
+26765,15492,67944
+26766,23822,33383
+26767,71620,72931,76420,78890,16053,30935
+26768,66632,16169,64489,6948,53450,22717,61198
+26769,24974,38255,53254,58032,78595
+26770,30891,79335,68888
+26771,16878
+26772,1325,82087,73683
+26773,53470,36791,43576
+26774,11,28688,29814,63237,76702,56011,11405,22311
+26775,14565,47061
+26776,55734,36473
+26777,14492
+26778,50480
+26779,9066,1360,79907
+26780,31964,30429,651,2898
+26781,81869,76909
+26782,17507,67327,29381
+26783,30459,22373
+26784,72713,45254,48723,60034
+26785,79208
+26786,79559
+26787,80683,40090
+26788,42218,34372,58005,62372
+26789,18548,25780,58781,31364
+26790,26208
+26791,10708,36159,35602,40400,30405
+26792,207,37285
+26793,68452
+26794,24391
+26795,80490,5900
+26796,36292
+26797,23620,58940
+26798,24399,47956
+26799,23673,17012,16755
+26800,39683,24676,60394
+26801,14990,1400,59682
+26802,11206
+26803,49660,80041
+26804,60767,22546
+26805,17943
+26806,17736
+26807,19535,66035
+26808,29071,21800,61037
+26809,49340
+26810,3771,40170,18878,77474
+26811,62444,23764
+26812,870,71787,35941,77594
+26813,34832,69035,36626
+26814,66187,4632,67696
+26815,37736,35449
+26816,32135,56524
+26817,72768
+26818,34212,79244,70849
+26819,27636,43225
+26820,25348,17987,41287,46691
+26821,27919
+26822,66299
+26823,42387,11150
+26824,6514,66371,74202
+26825,45917,17276,51405
+26826,24880
+26827,58095
+26828,40766,78017,65155,18764
+26829,47305,31992,61946,13998,51668,61709,72366
+26830,36333,6995,29057
+26831,76270
+26832,58903
+26833,15425
+26834,7764,20122,908
+26835,35690,33414,73553
+26836,16250,51290,52794
+26837,24147,4159
+26838,70302
+26839,11366
+26840,50625,6994
+26841,27532
+26842,58006,65414,9489
+26843,59295,38744,53332,77755
+26844,20524
+26845,75699,21458
+26846,9119
+26847,494,8437
+26848,6305
+26849,35793,37370,22010,5926
+26850,39137,55698
+26851,60080,65366
+26852,51588
+26853,27174
+26854,66,42378
+26855,66106,38602,15704
+26856,7272,48962,77980,32424
+26857,45918,26796
+26858,34778,32659
+26859,3329,58086,41198
+26860,3030,4588,24669,81285
+26861,26725,65052
+26862,69268,55187
+26863,3786
+26864,22563,76262,10896
+26865,25392
+26866,29792
+26867,56862,72723,23784,58537
+26868,42289,17083
+26869,8764,56676
+26870,77413
+26871,73572
+26872,81373,71331
+26873,31056
+26874,26881,34844,56023
+26875,68155,6632
+26876,25702
+26877,16976
+26878,53069,48566
+26879,25008,48619,29755
+26880,23117,529,67109
+26881,47380,36439
+26882,64018
+26883,46678,33653
+26884,6967
+26885,76385,5374,8224
+26886,37480,26165
+26887,18852,1760
+26888,15325,79203,32292,58204
+26889,15650,66674
+26890,66431,70939,50320,69835,44390,18923
+26891,57867,66528,40244
+26892,49643,73428,24904,46296,19381,80586,76518
+26893,49388,29226
+26894,72492,44975,69527
+26895,9617
+26896,4735
+26897,63202,19796,61282,39725
+26898,8190,44563,29510,71061
+26899,44087,23527
+26900,62719
+26901,80218,61220
+26902,45326
+26903,54735,1622
+26904,50463,16607,13548
+26905,22914,14768
+26906,53233
+26907,43749,4287
+26908,883,37788,42824
+26909,6925,57227
+26910,74285,60709,73540,43503,18240
+26911,37312,43217,41733
+26912,32660,31688
+26913,16758,19086
+26914,75972,61945,76762,64647,45389
+26915,71984,59664
+26916,45038,80316,57313
+26917,17040,53110
+26918,68821,38830,41678
+26919,30018,41073,25381
+26920,19055
+26921,57892,35552,77695,12821,16748,63191
+26922,12084,74307,64612
+26923,67549
+26924,78164,17114,63603,59907
+26925,25246
+26926,30339,28488,40081,80043,4015,9606,74724
+26927,69766
+26928,58649,52631
+26929,36236,49030,47159,16211,8066
+26930,49143
+26931,50382
+26932,34993,14592
+26933,26002,45368,34740,40098,38309
+26934,30179
+26935,1274
+26936,51249,59686
+26937,72664
+26938,29406,25710
+26939,58495,9131
+26940,78704,77717
+26941,73141,78131
+26942,51540,5957
+26943,20731,63476,62899
+26944,32049,14489
+26945,9722,63656,32545,73694
+26946,11240,75559
+26947,8018
+26948,56678
+26949,16626,68417,48504
+26950,61344,69236
+26951,15364,47532,72368
+26952,1274,70015
+26953,67501
+26954,57487
+26955,69078,24622
+26956,76381,74614
+26957,67168,61434,19520
+26958,8368,28135,62461,28438,73334
+26959,71931,68742,10741
+26960,19360
+26961,36030
+26962,65741,26039,55219,64290
+26963,76274,78330,34058
+26964,79817,40771,45356
+26965,23213,68120,5141,69137,12735,35210,46924,37536
+26966,64354,36176,20505
+26967,6739,45383,39551,39230,60739
+26968,2739
+26969,64703,61105
+26970,74455,942,17731
+26971,58562,3894
+26972,30146,42631,40552
+26973,64634,63990
+26974,5427
+26975,70198,77327
+26976,2789
+26977,54270
+26978,58495
+26979,54451
+26980,76363,1098
+26981,77192
+26982,31616,36945
+26983,47294,20415
+26984,36840,22593,27331,30930
+26985,34823,5756,24170,37536
+26986,33591
+26987,39195
+26988,33908,76355,75850
+26989,13009,66018
+26990,37355
+26991,69662,54731,9452,77659
+26992,21830,61305
+26993,73344,28387
+26994,58096,14299,64951,39485
+26995,68194
+26996,8849,58608,79161
+26997,74654
+26998,78764,41259,68194,29822
+26999,33188,14964,21104,14873,71353,49366,36271
+27000,69412
+27001,51992,73073
+27002,69640,68960,39338,10276
+27003,10776,54173
+27004,70612
+27005,31056
+27006,4382
+27007,57733,68158,78332,17625
+27008,23960
+27009,70651
+27010,4636,72244,42383,29285
+27011,51595
+27012,75883,76702,67538
+27013,26503
+27014,51199,64589
+27015,1285,65723,26677
+27016,68102,28651,55746,9495
+27017,910,67556
+27018,25898
+27019,77537
+27020,35476
+27021,63193,58343,78107,607
+27022,16240,42016
+27023,70372
+27024,48871
+27025,66706
+27026,79822
+27027,68149,61872,17936
+27028,69032,9250
+27029,32098,70137,1667,35020,42033
+27030,2221
+27031,52537
+27032,34274,76039,77078
+27033,38228,64320
+27034,8730,31435,73035,33971
+27035,13931,53376,286,12595
+27036,65210
+27037,36217,6830,17172
+27038,22854,53709,38228,37643
+27039,15514,56552,27739
+27040,80446
+27041,19723
+27042,80683,53064,32873,56215
+27043,48088
+27044,15024,32983,65113,65090
+27045,16764
+27046,31876
+27047,33362,61664,11089,42781,16933,47801,15541
+27048,12381,61126,75684,54824
+27049,29720,35555,36739
+27050,56729
+27051,15895,71375
+27052,54990,70713,70399
+27053,13849,9130,64090,71103,73694,8719,14680
+27054,71490,16678
+27055,20235,66265,31223
+27056,78873,52164
+27057,78123,5253,57223
+27058,10301
+27059,58099,64549
+27060,50205,78992
+27061,60455
+27062,54844,61912
+27063,24301,13218,62823
+27064,82001,65525,77895
+27065,43935
+27066,56631,42937,11036,18482
+27067,55998,49204,28141
+27068,54304,55721
+27069,30002,63968,3156
+27070,38019
+27071,26450,64032
+27072,72595,68582
+27073,35149,33448
+27074,71116,25751
+27075,538
+27076,47180,62390,78431
+27077,18684,24877,11611
+27078,66650
+27079,13432,52658,22489,38431
+27080,81982,32473
+27081,57635
+27082,75508,67721
+27083,67767
+27084,61916,13640,53482,40908
+27085,23093,36847,46431,52175
+27086,54447,36231,51358,14751,16193
+27087,80755,48979
+27088,81800,58067
+27089,6844,14480,14172,58106
+27090,9022
+27091,33664,60548
+27092,2368,31080
+27093,30926
+27094,69699,10421
+27095,45535,68802,46865,48036,58569
+27096,27218
+27097,13473,33006
+27098,4250
+27099,57425
+27100,62655
+27101,15945,41219,45496,449
+27102,34626,40051
+27103,80759
+27104,60633
+27105,64909,40643
+27106,56192
+27107,45401,22913,22155
+27108,77166,10713,3784,33962
+27109,22400,37046
+27110,16559
+27111,45190
+27112,14979,31609,16002
+27113,47453,31538,906
+27114,3135
+27115,80877,68791
+27116,42106,75804
+27117,73562
+27118,26248,50091
+27119,20112,50447,43801
+27120,47705,12669,48182,24251
+27121,39253
+27122,74529,7554
+27123,47951
+27124,63374
+27125,3744,27873,51671
+27126,31327,45079,20876
+27127,19320
+27128,67928
+27129,26044,24423,65930
+27130,58587,19233
+27131,69777
+27132,69767,21893
+27133,60923
+27134,33966
+27135,72277,75088,8686
+27136,500
+27137,32744,65505,1804,66107
+27138,6429,41783
+27139,77955
+27140,1680,8382,34504,31496,887,60515,54738
+27141,48840,45000,23165,66387
+27142,70639
+27143,48503,4870,66210,14879,42025
+27144,63010,54994,9202,45635
+27145,70086,51795,47408,59622
+27146,25457
+27147,77874,58866,28659,57891,64897,77193
+27148,59421,7128
+27149,67334,40653
+27150,15051,46184
+27151,41702
+27152,69889,60244,4155
+27153,43251
+27154,80193,17051,61040
+27155,8903,64849
+27156,71855
+27157,28505,78226,81626,71073
+27158,14633
+27159,36324,50586,80247,32120,36401
+27160,19356,29948,50054,61400
+27161,44111,42117,17811
+27162,16216
+27163,9974
+27164,25435,55766
+27165,29653,33970,50093,68831
+27166,17475
+27167,52551,19529
+27168,29416,39789,8504
+27169,70639
+27170,59894
+27171,20395
+27172,31807
+27173,65093
+27174,43601
+27175,31792,24261
+27176,65675,40828
+27177,63724,15342,21974
+27178,70082,19512
+27179,4080,19919,28799
+27180,5889,2539
+27181,76343,35749,37540,71696
+27182,49252,47851,54698,20474
+27183,37255,44412,15360
+27184,68380,59452
+27185,43714,27186,42829,37959,52423
+27186,41048,35534
+27187,41030
+27188,16132,72235
+27189,15907
+27190,41030,27409
+27191,26418,27924,17883,2285,66148
+27192,16208
+27193,31977,64082,10710,44944
+27194,3739,12151,34091,70581
+27195,26137,79245
+27196,1873,34926,41604
+27197,15430
+27198,18614,27877,46847
+27199,69645,3088,57798
+27200,3390,64486,45393
+27201,33480
+27202,23368,43393
+27203,30561,57486
+27204,55419,41837,18870
+27205,64981
+27206,46177,29915
+27207,21205,23584,68224,40443
+27208,24498,3568,69794
+27209,53635
+27210,59809,66193,22523
+27211,62777,60145,48320
+27212,2889,77142,67934,45563
+27213,60382,55650,75452,72594,15844,73042
+27214,79073,23179
+27215,12603,6836,80545,28623
+27216,17426
+27217,79708,81339
+27218,12811
+27219,71954,5092
+27220,80956,10699
+27221,47569
+27222,57683
+27223,12500,70247,22880
+27224,35683
+27225,9101,33053
+27226,64733,53394
+27227,62627
+27228,891,56398,65527,12992,51337
+27229,80234,48817,60928,31394,25662
+27230,31063,64599,12001,82071
+27231,45797,72532,75352
+27232,65167,76033,34784
+27233,39803
+27234,63395,33321
+27235,1990,45874,47301,20295
+27236,9031
+27237,4076
+27238,439,21137,66852,50550,41965,52139
+27239,23898,58699,73595
+27240,39498,79559,73571
+27241,61962
+27242,77065,63444,76394,25553
+27243,58631
+27244,9502,56404,29097,44053
+27245,50709
+27246,61080
+27247,5629,37409,40664,49320,7899,1766
+27248,45229
+27249,80503
+27250,68596,74741,56004
+27251,31935,40692
+27252,49336,40702,19527
+27253,68948,27596
+27254,1045
+27255,69991,68378,331
+27256,36595
+27257,55685,67903,8269
+27258,59438
+27259,20760,67202
+27260,49109
+27261,48856
+27262,21547
+27263,53842
+27264,2023
+27265,11626,34135,45447,35682
+27266,25347
+27267,4933,75862
+27268,21177,26460,47944
+27269,22212,68016,33771,76693,31191
+27270,37845,66359,39515
+27271,2528,22136,39167,79805
+27272,59687,64640
+27273,42709
+27274,74308
+27275,16299
+27276,59511,29165
+27277,66990,64445,21913,28184
+27278,2085,76947,34848,53690
+27279,26203,39040,32138
+27280,21437,31359
+27281,21591,7624,69042,6311,12832,80147,58727,24692,51593
+27282,54717,6170,2840,21245
+27283,48632,24959,59509,77444,28864,70592
+27284,32137,73969
+27285,6534,35486,18643,29745
+27286,71396,78943,25010
+27287,13353,28518
+27288,31948,7022
+27289,9131,25674,31117,44829,6468
+27290,45830,64201,8044
+27291,54044,64611,6987
+27292,55177,62732,23956,79533
+27293,14049
+27294,49610,40192,10888,63794
+27295,67237
+27296,41990
+27297,52008,30547
+27298,51046,39047,76169
+27299,28979
+27300,40055
+27301,25677,12411,35372,22307
+27302,52378,43130
+27303,72978,19907,21139,47264
+27304,15204
+27305,16925
+27306,28606
+27307,9882,59297
+27308,24541
+27309,81032,67599
+27310,52902,50286
+27311,38331
+27312,63583
+27313,61089,56711
+27314,46625
+27315,32197,4599
+27316,38680,73725,21332,68737
+27317,50004,68707
+27318,13408
+27319,25264
+27320,20567,13487
+27321,47492,78365
+27322,28557
+27323,79342,9018,60411
+27324,49653,41150
+27325,40990,55436
+27326,46918,57292
+27327,68110
+27328,26384,8047,66092
+27329,29604
+27330,12003,69666
+27331,75169
+27332,29569
+27333,26845,62681,3804
+27334,42545,9135,13064
+27335,76027
+27336,65070
+27337,41201,9604,68462
+27338,77056
+27339,74348,71403
+27340,23047,22272
+27341,35858,78575
+27342,5616,62667,22608,62220,20732,14649
+27343,15278
+27344,63718
+27345,3919
+27346,40066,61208,31072
+27347,57270
+27348,10031,8275,24700,6624,22814,13009,45015,66691
+27349,1253,4338,73474,54798,56655
+27350,2180,50471,41943,70495,15836
+27351,47756,8440
+27352,44635,3814,19111,21579
+27353,61944,56582,6840,50441
+27354,61866,11150,76505
+27355,17595,37469,5039
+27356,79809
+27357,19616
+27358,69474,44643,78541,43032,59113,54403
+27359,4038,62239
+27360,33771,10679
+27361,64612
+27362,62390,6546,32426,18720
+27363,59052,4483
+27364,72820,12362
+27365,10246,36438
+27366,57683
+27367,28546,27071,73218
+27368,28027
+27369,35136
+27370,50804,58013
+27371,72287,2061,79255,11470
+27372,39494,43864,75921,64426
+27373,32781
+27374,78859
+27375,36244
+27376,47293,227,53276
+27377,40323,81148,21825,24110
+27378,19183,2704
+27379,1486
+27380,9488,69146
+27381,1293,69669,38321,42492,60251,63778,49173
+27382,62618,80230,79762
+27383,74531
+27384,29720
+27385,11568,23114
+27386,25387
+27387,7766,42925
+27388,60853,66797
+27389,47788,55019
+27390,36487,19406,47540,18339
+27391,48463,48282
+27392,62696,19621,77245
+27393,18029
+27394,39323,20087
+27395,82073,25647,2632
+27396,34044,23971,69670,3487
+27397,30461
+27398,24391
+27399,38708,52960,26231,35631,18761
+27400,3312,75487,37594,42329
+27401,4325
+27402,72457,20049,71334
+27403,499,77880
+27404,71491,64468,30814
+27405,21434,13356,16105
+27406,49916
+27407,63038
+27408,49348
+27409,60433
+27410,67348
+27411,56812,66258,15873
+27412,15891,1349,75263
+27413,34729,30406
+27414,30865,30801
+27415,2788,30574
+27416,4773,27172,65006
+27417,24366,80713,60739
+27418,12596
+27419,61220,16990
+27420,79769
+27421,31364
+27422,64777,75218,69219,40744,6100,81854,52260
+27423,18138,30071
+27424,50781
+27425,43403,40055
+27426,23914,65596,60941,23427
+27427,42281,50328,7265,31038,21669,16620,47487
+27428,50330
+27429,62662,26683,57598
+27430,14900,40072,19459
+27431,39561,67329
+27432,14926,52511
+27433,27245,11029,69677,80997,52492,56584
+27434,36099,4799
+27435,64761,62956,43549
+27436,33689,80367,78056,34095,45007,38423
+27437,73653
+27438,56446,36732
+27439,35912
+27440,61177,47469,21505,75964
+27441,5293,11954
+27442,42576
+27443,40934,14483,68672,13750
+27444,65347,4709,64281
+27445,44040
+27446,77142
+27447,44207,40304
+27448,79058,6583
+27449,75316,9031,42307
+27450,37748,9758
+27451,28441
+27452,32832,62396,37079
+27453,5560,44233,74009,26063
+27454,31126,12697
+27455,42784,2170,35080,47193
+27456,75888
+27457,45954,8882,31747
+27458,8053,46866,16441,21838,41932
+27459,12056
+27460,30065,4280
+27461,70084
+27462,76110,48292,36910,18644
+27463,7284,70156,23438,34213
+27464,36260,5341
+27465,51696,21665
+27466,50100,29225,41899,46609
+27467,68338,80451,77692,23223,45210,46648
+27468,7942
+27469,32135,39193,58040,11313,40666,81893
+27470,72963,36896
+27471,20056,79501,37681,40086,74337
+27472,43951,33165,62605
+27473,35970,3148,10505,25017,9501,58876,17855
+27474,11192
+27475,10749
+27476,52083,18998
+27477,229
+27478,17120,32022,63222
+27479,38450
+27480,74033,69305,50298
+27481,74837,74428,5502,79516,9945
+27482,30717
+27483,33771
+27484,5837,9605
+27485,9729,39137
+27486,1780,67844,60869
+27487,78938,39280
+27488,29927,12226,30819
+27489,47855,9477,66881,55028
+27490,13767,33428,23302,28354
+27491,66224,67678,9215,17368,68063,56132
+27492,22456,57327,27295,51903,70128
+27493,1804,45795,66336
+27494,34838
+27495,37525,11207,41032
+27496,10591
+27497,41102,71813,14134
+27498,23412
+27499,36359,33558
+27500,38266
+27501,19703,13950
+27502,78417,81492
+27503,47845,20310,35871,19670
+27504,25239,30600
+27505,60887,35193,47642,32576,68259,11941
+27506,41200
+27507,75938,39208,65250
+27508,36419,33375
+27509,38278,24401
+27510,43878,5038
+27511,76362,43096
+27512,64091
+27513,80234,66410,78156
+27514,4629
+27515,79617
+27516,18266,12899,5733
+27517,27976,64761,81838,53359
+27518,35295,59809,8779,52710
+27519,43335,41076
+27520,69777,3616,77797
+27521,3246
+27522,68742
+27523,7192
+27524,33282,67981
+27525,74700
+27526,76749,5583
+27527,68460,57133
+27528,80899,69583
+27529,63061,31892,3269
+27530,63163
+27531,10920,63807,67206,40252
+27532,61201
+27533,61802,27810,18631,76511
+27534,5797,45091
+27535,45882,76579,54393,50743
+27536,4416,40818,30487
+27537,31234
+27538,36394
+27539,45565
+27540,15961
+27541,650
+27542,9283,29044,43049
+27543,14355,64334
+27544,68163
+27545,39487
+27546,45217,62123,27551,17531
+27547,6613,38058,59389,18676
+27548,16754,40796
+27549,41281
+27550,47616,14769
+27551,52688,16465,72449,3549
+27552,8282,10710
+27553,79216,55731
+27554,4636
+27555,50116,81901,2400
+27556,4266,51318
+27557,26702,16846,46407
+27558,69420
+27559,40086,6002,56150
+27560,18242,22322,55462
+27561,15287,7270,63974,33505,14550,33213,63364
+27562,65562
+27563,21294,1931,47995,20825
+27564,78634
+27565,58350,81164,40821
+27566,2227,31375,53501
+27567,1115
+27568,60870
+27569,42562
+27570,53639,62767
+27571,218
+27572,2119,34841
+27573,4506,28376
+27574,50919,246
+27575,16487,55415
+27576,68749,66248
+27577,60296,47238,11704,70853,43095
+27578,81963,41970
+27579,71323,1947,74598
+27580,55462,32393,2221,54340
+27581,49109
+27582,81911,62575,80014,29080,15619,34247
+27583,14598
+27584,69619,67060
+27585,17265
+27586,67487,52243,25189,25347
+27587,81367,72753
+27588,10460,8722,11354,69927
+27589,21301,9833
+27590,45785
+27591,19437,50330
+27592,9290,1200
+27593,21873,70199,59008,43095
+27594,77975,78377,60645,60244,19794,52412,41576
+27595,33718,14129
+27596,54751,10748
+27597,77472,38167
+27598,12449
+27599,764
+27600,74884,42330
+27601,9075,19013,54275,28997,54391
+27602,45910,62172
+27603,3032,18303,17687
+27604,13341,65570,52950
+27605,40208,52230,53098,76196,18903
+27606,81344
+27607,16492
+27608,34880
+27609,5286
+27610,65895,2609,26253
+27611,47507
+27612,78484,12757
+27613,73813,76376
+27614,38503,54719
+27615,77069,59705
+27616,78802,29081
+27617,34075,81296,11875,61301
+27618,53843,24567,14536,76247
+27619,3662,13262,36015
+27620,16120,71337,75339,76799
+27621,67882,78489,14838
+27622,72392,165,13497,12929,43686,78376
+27623,22376
+27624,74632,32199,50490
+27625,47718,28581
+27626,29191,12087,60904
+27627,22808,59280,2035,11334
+27628,13490,48267,59737,51976,70196
+27629,81442
+27630,30518
+27631,3799,51026,51352
+27632,26168,7813
+27633,49259,77905
+27634,52057,48272,68025
+27635,69318,8356
+27636,54529
+27637,81356
+27638,25072,66260
+27639,42724,36847,27450,52843
+27640,27903,77574
+27641,46529
+27642,1740
+27643,12111,19527
+27644,74965
+27645,78839,79045
+27646,71750,6488
+27647,39018,51643,74873
+27648,59932
+27649,13238
+27650,71237,48481
+27651,6148,12547
+27652,15126,8018
+27653,51584,71754
+27654,39897
+27655,41797
+27656,47891,35489,54568
+27657,70065,22570,57610,45946
+27658,8821,61395,66777,62978
+27659,67233,59493
+27660,60998,68014
+27661,8076
+27662,49268
+27663,30912
+27664,1427,4785,32147,14380,51681,76381
+27665,80167,44
+27666,11172,4738
+27667,2788,4120,22886
+27668,40116,5913,33429,76810
+27669,24310
+27670,56001,22682
+27671,51528
+27672,55930,63629,35919
+27673,30925,39341,24626,69538,27652,43123,74758
+27674,38785
+27675,13736
+27676,17812,39450,51145
+27677,43561,67111,75680
+27678,44872,74000
+27679,25296
+27680,32370,5085,81798,2697,68148,31782
+27681,71141,60723
+27682,34355,10270
+27683,62794,13701,20050
+27684,57354,66639
+27685,27613
+27686,69265,66878
+27687,46423,4929
+27688,55825
+27689,71512,63775
+27690,22621,54698
+27691,73912,64713,28974,56023
+27692,49773,76607,76592
+27693,65210
+27694,60481,77880
+27695,9393,31343,63870,51176,8313
+27696,1538,68920,2306,65184,4337
+27697,51132,15996
+27698,49447
+27699,53860,29901,69040
+27700,23444
+27701,48682
+27702,18728,69573,48971
+27703,48124,12278
+27704,14934,10758,20229,69730
+27705,30830
+27706,49110,69748
+27707,37999
+27708,50289,43269
+27709,21009,23338
+27710,29925,32323
+27711,59353,21880
+27712,67005,55863,36602,30870
+27713,67798,63927,31421,47212,32025,9007
+27714,11333
+27715,53249,80047,71673
+27716,52639,67132,63126
+27717,23910,51108,5147,36959
+27718,32622,19541
+27719,10051,25862
+27720,1718,65062
+27721,53721
+27722,55771
+27723,51557,17729,31122
+27724,59110,56954,34853
+27725,3696,51228,50440,80259
+27726,38603,75577
+27727,11629,8617,31582,40782,24301
+27728,78941,66137,3941
+27729,27759
+27730,58820,60155
+27731,37498,35564,56732,8794
+27732,34753
+27733,78733,68801
+27734,61415,31700,24859,56559
+27735,28397,24254,30859
+27736,65698
+27737,63979,70622,51901
+27738,18836,13521,26525
+27739,68848
+27740,71345,24147,15304,10549
+27741,74914,6502,32458
+27742,74129
+27743,31522
+27744,13297
+27745,58711
+27746,55770
+27747,42639
+27748,40651
+27749,66496,70494,4246
+27750,3504,65540,49632
+27751,74905,6889,8463
+27752,35645,11684
+27753,48761,57487,12628,81388
+27754,46642
+27755,6675,55415
+27756,29529,15930
+27757,525,14543
+27758,37248
+27759,65229
+27760,32806,41520
+27761,52507,41889
+27762,55698
+27763,30669,82106
+27764,41923,4539,59996
+27765,1216,80759,55224
+27766,61873,47842,43188
+27767,19337,18158,78285
+27768,55280,1648
+27769,43566,12534,27092
+27770,30819
+27771,49223
+27772,10354,6691,9240,24911,43946,46868
+27773,72258
+27774,12557,66461
+27775,57131,16711
+27776,72775,6809,60388
+27777,63676,645,40423
+27778,23399,12514
+27779,22093,53042,80770,41418,17378,74913,3300
+27780,36923,46262,71668
+27781,25230,51539
+27782,66496
+27783,47156,50978
+27784,33282
+27785,77459,53711,35212,39398
+27786,34760
+27787,52459,70376
+27788,15221,7385,37322,72033
+27789,12943,14117
+27790,82105
+27791,26281
+27792,30038
+27793,21590,61953
+27794,72293,42349,78791,8279
+27795,66186,28503,79707
+27796,29064
+27797,60492,60910,58644
+27798,7625,24330,24225
+27799,81219,79318
+27800,81456,12579
+27801,43896,37331
+27802,31366,64078,61199,77478,80313
+27803,13163,33
+27804,122
+27805,81869,81472,21625
+27806,71754,833
+27807,27266
+27808,36146,31223
+27809,5415,31824,49599
+27810,58133
+27811,15886
+27812,36026,32920,3557
+27813,16764,34457
+27814,74094,61103,73550
+27815,377,67841,40928
+27816,32773,64334,32435
+27817,79479,69677,44316
+27818,5415
+27819,64487,40464,52460
+27820,29744,23092,58897,76621
+27821,40807,12989,74622,30711
+27822,41417,22158,17142,45191
+27823,48516,81080,14207
+27824,54488,30674
+27825,32789,13482
+27826,4724,52916,26297
+27827,9267,67700,72100,70071
+27828,52624,23741
+27829,4484,63350,77723
+27830,53145,55317,7419,9612
+27831,71331,79431
+27832,50257
+27833,51506
+27834,13238
+27835,33294,36340,25971,35362
+27836,16433,46052,57140,18819
+27837,73728
+27838,70866,29884,63559,60311,38021,6600
+27839,67208
+27840,11740,4144,59275,4292
+27841,54316
+27842,80504
+27843,52827,36835,24481,1786
+27844,39729,69468
+27845,39906,21775
+27846,61057,49319
+27847,51798,26209
+27848,42443
+27849,44208
+27850,49530,32220,32335,43336
+27851,35677,21746,79031,44936
+27852,80052,26084,9437,79022
+27853,65790,13068
+27854,78204
+27855,69992,42670,81506,6132,6753
+27856,39889,5526
+27857,7860
+27858,40702,31248,48853,50887
+27859,44116
+27860,79858,7736
+27861,77361,17481,80179
+27862,10043
+27863,81587,36608,8727,59045
+27864,41281
+27865,25544,56412,36004
+27866,42044
+27867,52958,8770,35501,28245
+27868,15120
+27869,79797,53430,53566,50518,80237
+27870,61297,28172,29971
+27871,43169
+27872,950
+27873,72533,37399,35359
+27874,26039
+27875,38534,65801,61554,52917
+27876,26068,51082
+27877,47665,31197,53549,65135,11919,3627
+27878,11950
+27879,59486,54480
+27880,78062
+27881,38091
+27882,9457
+27883,80553,9693
+27884,29094
+27885,63701,49238
+27886,16416
+27887,63380
+27888,19775,3765,41760,50585,72030
+27889,64706,61895,48634,8816
+27890,14618,19681
+27891,65358,9773,55389,4414,70571
+27892,40279,52946,17964
+27893,55544
+27894,23509
+27895,30926
+27896,25970,79634
+27897,76306,60136
+27898,75461,10628,48282,66707,28046,70275,60272,47386
+27899,79778,41566,74445
+27900,41565,19056
+27901,81034
+27902,38723,67788,41838,15015
+27903,22831,34439
+27904,25797,27137
+27905,41256
+27906,27418,21815,53496,33223
+27907,50352,61844,66108,53935,66050
+27908,23791,41341,2461
+27909,70585
+27910,82160,3553
+27911,55434
+27912,69969
+27913,2414,76114
+27914,33743
+27915,14286
+27916,79736,61573
+27917,18151,67151
+27918,57233
+27919,64019
+27920,54602,55009,45310,7613
+27921,29661,18882,14989
+27922,12215,46280
+27923,25025
+27924,22997,44437,38424,7624
+27925,81676
+27926,45401,38567,65433,21435
+27927,58042
+27928,62780
+27929,78148
+27930,33995
+27931,41568,73587,59992,1313
+27932,73821,9656,58559
+27933,28424,39208
+27934,45285,77555
+27935,65811
+27936,20442,33672,66144
+27937,72822,6576,53111
+27938,61354,24184,17290
+27939,30767,24004
+27940,9418,76163
+27941,64544
+27942,47533
+27943,38425,45657,72573,34841,61475,48115
+27944,33314,35084,27506
+27945,25082
+27946,56671,38367,24746,21721
+27947,10529,81421,77599,43233
+27948,13984
+27949,38008,56095,9310,35669
+27950,36458,76747
+27951,22420,11881
+27952,57564,76140
+27953,27525
+27954,40886,75623
+27955,79581,60762,38419,41591
+27956,56587,66538,66683
+27957,73938,61969,26162
+27958,5779,75581,72818,39931,58752
+27959,27868
+27960,19005,16255,9546,47915
+27961,52110,15780,15117
+27962,66564,21361
+27963,38005,62798
+27964,8722,67457
+27965,28134,51577,26733
+27966,55747,30281,50755
+27967,9729
+27968,17009
+27969,67609,5049
+27970,18315,183
+27971,22911,61147
+27972,47016
+27973,28693,20468,33518,80693,8953,31107
+27974,79470,9349,48792
+27975,58013,71822,2104
+27976,29448,5756,48550
+27977,17066
+27978,41379,76920,4704
+27979,76150,36260,76702,23529,57600
+27980,79819,14278,5159,70235
+27981,24594
+27982,16125,43918,37446
+27983,46683
+27984,73475
+27985,1587
+27986,46296,17515,30069,35538,9313,63763
+27987,48152,56949,30905,19903,67550
+27988,65006,74861,31771
+27989,50334
+27990,78533
+27991,51804,4808
+27992,76357
+27993,26519,17826,2387
+27994,70557,44266
+27995,27100,11494
+27996,31276,59904,54177
+27997,54696,60369
+27998,52588
+27999,3219,26051
+28000,47843
+28001,39838,58661,63537,35038,65686,3301,18968
+28002,47245,60236
+28003,69340,3042,26741
+28004,63308,1242,40509,74527
+28005,73448,11508,10964,21023,73664
+28006,70148
+28007,59763,29013,32776,81775,73906
+28008,81089,12851
+28009,65644,65489,79774,22617
+28010,57830
+28011,62237
+28012,1151,14373,47721,37745
+28013,80364,73416,45232
+28014,106,9494
+28015,69879,7710,39582,36368,38602
+28016,39660,9803,23110,43996
+28017,35392,64610,55643
+28018,45511,25823
+28019,42255,31326,71825
+28020,62484,54333,16183,46324
+28021,297,61760,18728,53342
+28022,27271,15019,37319
+28023,27748
+28024,17385,41680
+28025,58320,39309,28950,4933
+28026,45249,59919
+28027,41721
+28028,54658,7941,48312,74167,44967,69352,54340
+28029,48805
+28030,63998,37582,39826,6321,21695
+28031,26765,10554
+28032,41929
+28033,45654
+28034,43924,23419,16408
+28035,63382,3161,81836,47944
+28036,42143,3738,47606,5814
+28037,32584,16425,55610,72724
+28038,81456
+28039,19340
+28040,42147,53931
+28041,54536
+28042,78435,68222,56547
+28043,19342
+28044,45867,42143
+28045,48580,70235
+28046,75725
+28047,12525,58727
+28048,17952,40829,28879
+28049,29065,75677
+28050,57617,32757
+28051,12887
+28052,14526,57915,81360,46725
+28053,61632,77911
+28054,1000
+28055,77618,54195
+28056,48229,50386
+28057,10533,76752,53403,58732
+28058,78774,28629
+28059,30437,42409,73831,57068
+28060,66784
+28061,42643
+28062,50151
+28063,3710,52084,43599,41451,44250,48403
+28064,70016,56543,36735
+28065,29233,45629,5271
+28066,32928,40886
+28067,9380,27530,58431,47840
+28068,81363,19932,24868
+28069,4855,14621,52734
+28070,45781
+28071,63966,28171,70302
+28072,34197,67532
+28073,24230,41108
+28074,30063,81999,28502
+28075,43648
+28076,1709,14159
+28077,73108,60033,69000
+28078,1815
+28079,71603,64821,9187,73654,73029
+28080,10924,29483,59523,29937
+28081,22043,56750
+28082,39962
+28083,28312,30631,28490
+28084,11136,51331,68201
+28085,47761,57621,52821,40093,3361,40617
+28086,3672,36532,79679
+28087,31615,24459
+28088,52048,34310
+28089,70903,43048
+28090,7976
+28091,16655,78626,5777,74221
+28092,64449,58295
+28093,9745
+28094,74020,17194
+28095,80944,32786,66397,28664,23919
+28096,17815
+28097,38200,62410,33394,62940,71104
+28098,6730,8397,73618
+28099,21824,41992
+28100,15895
+28101,575
+28102,74988,76453
+28103,79545,54762
+28104,68163,72219,48892
+28105,73656,79839,4629
+28106,26136,768,61724
+28107,17675,50996
+28108,28618,35637
+28109,68912,80233,8089
+28110,68515,5594,70593
+28111,75923,57131,12954
+28112,26709
+28113,16797,36056
+28114,51434,67068
+28115,79622,6223
+28116,4184,55691,25928
+28117,49367,67348,52044,9131,48251,15881
+28118,39898,50875,2531,19499
+28119,31124,4164,30335,40029
+28120,73849,46875,62138
+28121,49319
+28122,32458,33368,58993,11532
+28123,21836,1686,21362,29812,65938,25289,75081
+28124,16846,54908,3652,10212,62573
+28125,56318
+28126,4335,49043
+28127,49615,59452,31275,47140,28163
+28128,13198,79090
+28129,33248,68324,38641,51596,54077
+28130,6789,16007,76670
+28131,30311,29853
+28132,718
+28133,71906,29479,5607
+28134,35683,70841,51129,30971
+28135,71657,31571
+28136,24015,53657,35038,49427,26178,8293
+28137,9493
+28138,16822,69319,160
+28139,26318,16792
+28140,60364
+28141,62661,22958,31016
+28142,36708,23285,46020
+28143,75556,32741,16858
+28144,28418,5645
+28145,2749
+28146,19648,70174,17677
+28147,29393,17347,71549,15488,20593,5327
+28148,67208
+28149,45002,74281,43137,57069,25181
+28150,4481,23438,60547
+28151,48517,22035
+28152,66724
+28153,36749,27623
+28154,70199,17957,82162
+28155,26630,44480
+28156,74758,40169,27785
+28157,74906,69421,12012,52633
+28158,48242
+28159,81510,48914,67124
+28160,15768,48499,81514,34510,492
+28161,8408
+28162,34589,40926,49270,31042
+28163,35282
+28164,42984
+28165,13855,52337,18404,12948,63366
+28166,50299,73917
+28167,47191,33165,28765
+28168,37012,47278
+28169,22404
+28170,79494,18442
+28171,58018
+28172,80993,79950,38332
+28173,1212,50191,53363,62900
+28174,20555
+28175,37204,15499,8720,1571,7680
+28176,58278,58438
+28177,70717
+28178,61191,17888
+28179,30502,532,1698
+28180,68711
+28181,54431,55540,67418
+28182,82028,2184
+28183,57420
+28184,18941
+28185,37177,62270
+28186,9931
+28187,18882,51759,22790,37544
+28188,31949,40377,47145
+28189,43724,30878,22563
+28190,60210,25052,55353,6595
+28191,66511,66260
+28192,81926,78261,45469
+28193,22642,11515,45815,72822,38778,81896,43549,44794
+28194,7735,50545
+28195,17079,75065
+28196,65966,27864
+28197,18423,25666,2255,74298,22713
+28198,46458
+28199,79387,21758,45148,19779,61738
+28200,13108,69717,17343,8440,47180
+28201,8053,11499,19892
+28202,73915,25741,43565
+28203,62409,81271
+28204,11141
+28205,55018,81155
+28206,65211
+28207,22353,77395
+28208,71585,78210,38730,32952,63346,16713,79173,1566
+28209,54613,57010,53703,15111,31386,70072,76315
+28210,32330,20869,70183
+28211,17983,3957
+28212,29766,81764,11242,11669,50637
+28213,34263
+28214,40408
+28215,69629
+28216,32406
+28217,76442,37615,42578,21622
+28218,54902,66477,33902
+28219,36479,62081
+28220,5794
+28221,74091,11730
+28222,29918,56917,16980
+28223,31760,25152
+28224,64933,63267,10740
+28225,68504,41667,6642,57213
+28226,40038
+28227,44556,67927,59490
+28228,69249,6100
+28229,42302
+28230,59833
+28231,71350,39052
+28232,6439,53116,27092,48662,45037
+28233,11747,54724,262
+28234,33313,66591,67072
+28235,57161,33011,16696,16976
+28236,64034,70745,66022
+28237,63990,67944
+28238,72655,44221,65971
+28239,25764
+28240,29478,22242
+28241,23564
+28242,2450,74122,28341
+28243,24401
+28244,61514
+28245,39621,43615,54069
+28246,34565,56952
+28247,2155
+28248,76329,36252,54876,68337
+28249,10142
+28250,19349,38648
+28251,80241,79258,11301,39707
+28252,35666
+28253,26432
+28254,67574
+28255,10608
+28256,40707
+28257,17295,16642,27128
+28258,13643
+28259,46347
+28260,29477,21922
+28261,43443,313
+28262,25364,30432,62681
+28263,74562,47310,38774
+28264,36663,60633
+28265,69212,13130
+28266,66394
+28267,60187,60081
+28268,29408,55451
+28269,61048,76310,58085,76066
+28270,3589
+28271,81947,31353,36863
+28272,50480,69318,50460,80889,46696
+28273,78223,23568
+28274,64393
+28275,55998,76612,48906
+28276,7577,4739
+28277,76867,51767
+28278,31609
+28279,79058,64835
+28280,43983,51282,15194
+28281,23938,66690
+28282,33529,32723,38342,81423
+28283,54020,67073,29766
+28284,37517,45413
+28285,58909,81443
+28286,75047
+28287,72183,36038,58365,1545
+28288,31016
+28289,43165
+28290,68523,7115,81449,37295
+28291,27606,80184
+28292,34532,51836,81068
+28293,37258,79281
+28294,45589,8828,56512,81472
+28295,47930
+28296,62739,74549
+28297,47830,63683,58403
+28298,30860,33701,46349,73731
+28299,24478,62428,74575,2484
+28300,31034,33207,1275
+28301,79706,76179
+28302,33671,43868
+28303,68900,53988
+28304,58163
+28305,7840,10062
+28306,77293,46224
+28307,68375
+28308,28037,49756,22540
+28309,52423
+28310,71988,41520
+28311,27015,65906,61829
+28312,50916
+28313,50118
+28314,63854,15128,56067
+28315,63974,46020
+28316,75594
+28317,48394,47819,69083,12512,56572
+28318,68933
+28319,29853
+28320,63048,26519,55327
+28321,35820,17319,65223,21942,67326,65051,59385,67895
+28322,73049,36679,17992,34711,809
+28323,59404,26001
+28324,13676
+28325,33731,23019,79983,40805
+28326,38508,46306,7914
+28327,65620
+28328,64824
+28329,14438,52437,78686,36971
+28330,32510
+28331,42797,50664
+28332,3045,58813,12310
+28333,23267
+28334,42501,32253,30168
+28335,10152,45487,5337
+28336,14861,77420,12186
+28337,63046,70279
+28338,10097,73667,61744,14767,81893
+28339,59398,51769
+28340,73909,35421
+28341,66673,30654
+28342,78484
+28343,2251,13084,33035,42860
+28344,64179
+28345,4152
+28346,34816,39218,19437,7708
+28347,23549
+28348,73361
+28349,79267,8944
+28350,23599
+28351,22206,75174,58176
+28352,24944
+28353,44184,24569,80464
+28354,17163,40315,7192
+28355,9964
+28356,79036
+28357,36773,40476,29948,3595,783
+28358,26371,81143,80206
+28359,2917,23262,80108,39714,77443,65921
+28360,13715
+28361,51327
+28362,40301
+28363,17400,13546,40190,40281
+28364,2976,4273,67184,50354,67607
+28365,28568
+28366,42562
+28367,25866,42063,53190
+28368,31943,60847
+28369,49791,67002
+28370,50616,81220
+28371,2125,12744,23089,76108,9452
+28372,41410,58133
+28373,73045,42368,4102
+28374,8599
+28375,76727,8477,76456,48053,28275
+28376,74411
+28377,6240,81253
+28378,43709
+28379,60163
+28380,2318
+28381,30815,54619,101,42721
+28382,21651
+28383,25569,58813,70850,5566
+28384,57708
+28385,5447,23672
+28386,81750,10985
+28387,53454
+28388,55584
+28389,62578,52434
+28390,61921
+28391,60141
+28392,24595,8657,56035
+28393,18161,30816
+28394,82063,38311,16768
+28395,76966,78982
+28396,26520,68960
+28397,48910
+28398,21061
+28399,18203
+28400,35489,70792
+28401,19856,33396,68862,61739
+28402,41545,8936
+28403,29629,51520,75788,42790,61426
+28404,7381,19109,15075,47876,76860
+28405,45088,30781,36660,46913
+28406,39887,45519
+28407,65633,20072
+28408,27541,26347
+28409,11135,69939,26029
+28410,80335,72088,34829,55770,56442
+28411,68523
+28412,54103
+28413,34275,81382
+28414,30558,81688,7372,50581,81783
+28415,8389,17193
+28416,1153,8980,28407,69207,52175
+28417,74416,7534
+28418,75890,36239
+28419,44262,73748
+28420,46206,40817
+28421,70896,68041,30947
+28422,14882
+28423,8816,70282,11942,43579
+28424,25565
+28425,72976,460,62894
+28426,75350,59924,68189
+28427,9977,72220,46657,8231
+28428,15403
+28429,39401,8379,57145
+28430,75889
+28431,55049,11689,67697
+28432,18232,14592,76708,48122
+28433,20172,4920,4878
+28434,75444,10167,73399
+28435,61711
+28436,67674,40746,7364,45363,47937
+28437,41400
+28438,68518
+28439,24227
+28440,9111,5257,21124
+28441,72547
+28442,54689,5980
+28443,2099,5907,78027,10740
+28444,78417,31393,37989
+28445,66657
+28446,6504,63082,73129,81876
+28447,43624
+28448,48566
+28449,30344,36379,65006,19346
+28450,57842
+28451,61983,29785,57029
+28452,53887,40780
+28453,68028,8041
+28454,36089
+28455,44567,40508,29636,68003
+28456,40630
+28457,68468,38374
+28458,27528
+28459,19564
+28460,31308
+28461,17330,16868,71797
+28462,4274,7133,68160,41917
+28463,52337,67171,55933,19145
+28464,20425
+28465,78801,44450
+28466,58347,13947,35090
+28467,57421,49246,50328,46328,33913,80916,69069,65606
+28468,45007
+28469,57935,21722,8116,37014
+28470,47987,63571
+28471,75953
+28472,56385,61333
+28473,57256,6463
+28474,16568
+28475,65274
+28476,18373,31293,14207,40182
+28477,33030,77505,74308,43214
+28478,47972,3606,2405,4445
+28479,65548
+28480,78946,79929,53055,32090
+28481,46211,3031,10619
+28482,70856
+28483,43103,68646,61916,19087
+28484,81047,58823
+28485,31982,69232,35463,82147,25600
+28486,52689,45206
+28487,31770,40673,33977
+28488,25753,65072
+28489,63565,57734
+28490,79275,30560,40758,75591
+28491,8273,9605,51327
+28492,46890,14697
+28493,55311,10761
+28494,56018,5768,32055,43724,12121,62239
+28495,44715
+28496,5203,58587
+28497,30148,19517,31353
+28498,38624,67073,46815,49412
+28499,28821,34723,72130,26256,51681,38591
+28500,30959,79524,61367
+28501,72765
+28502,48362
+28503,16815
+28504,71117,54337
+28505,57466
+28506,61129,55220,41352
+28507,26042
+28508,3312,39618,7266,62061,58474
+28509,72092
+28510,45082,69774,17018,59792
+28511,10436,68685,23667,29890,58945
+28512,74791,48357,22406,28542
+28513,75452,73021,55026,56719
+28514,16019
+28515,43787,79335,34599
+28516,29469,49359
+28517,29166
+28518,49618,7300
+28519,47938,73017
+28520,58143,58213,23836,32583
+28521,13151,22069,62093,11634
+28522,55290,65424,20224
+28523,32657,52360
+28524,29737,29096,42945,3014,59228,40661
+28525,24562,50385
+28526,11588
+28527,68265,15701,31606,18731
+28528,68155,42455
+28529,36226,65528,37790
+28530,27515,49233,19216,58957,57428
+28531,35985,69887
+28532,39766,16112,22199
+28533,75618,48245,69813,73336,53997,56032
+28534,31621
+28535,45574,60810
+28536,14218,56858
+28537,23056
+28538,20310,82088
+28539,68904
+28540,36735,44346,4780,57101
+28541,47666,40252,65829,76797,34214
+28542,73998,50152
+28543,21276,79840
+28544,50236
+28545,20150,71699
+28546,3641
+28547,19244,4766,66535,69500,20971
+28548,74967,51839,1590,53580
+28549,35758,79751
+28550,9055,3216
+28551,44402
+28552,24914
+28553,67971
+28554,22134
+28555,10144,36824
+28556,72335
+28557,81983
+28558,60445,75348
+28559,41163,3216,26013,54264,23989
+28560,70580,71189,44862,12552,25255,23575
+28561,61636,46786,46263
+28562,80752,78992
+28563,38437,34544,5848,51316,56210
+28564,51597,45556,53024
+28565,16169
+28566,62156,29073,10812,56711,32742
+28567,58772,69374
+28568,73218,80181
+28569,19714
+28570,52360,48995,65328,11802,60179
+28571,17681,64337,54627
+28572,211,72454,81958
+28573,41318,72670,7584,14191
+28574,34252,33914,59514
+28575,55799,22467,24954,10733
+28576,29060,68130
+28577,68783,20725
+28578,79239,59671,79019
+28579,59693
+28580,34819,19129,65681
+28581,14721
+28582,53390,20816,42354
+28583,16713,48827,14675,23117
+28584,56199,77634
+28585,72800,1835,1895,19189
+28586,3611
+28587,31008
+28588,45472,16556,30947
+28589,67795
+28590,73338,68811,60894,28318,33224
+28591,60224
+28592,43226,40151,21143
+28593,71949
+28594,66824,26425
+28595,24066
+28596,31652,75757
+28597,72848
+28598,17586,10657
+28599,52948,11028
+28600,31569
+28601,74134
+28602,38317
+28603,37896
+28604,43935,42830,66835
+28605,43332
+28606,57084
+28607,9137
+28608,35489
+28609,72017,81715,6423,61567
+28610,50743
+28611,61012
+28612,44350
+28613,66865,53464
+28614,81001,10292,42248
+28615,19212,15141,27822
+28616,51975
+28617,29849
+28618,17515
+28619,82173,9931
+28620,43350
+28621,34670,81356,17493
+28622,70085
+28623,62881,23415,9476
+28624,80253,49673,46801
+28625,71266,71572
+28626,21834,4878
+28627,39838
+28628,48456,35024,2892
+28629,81705
+28630,17457,7577
+28631,76673
+28632,35474,57471
+28633,72456,76096
+28634,9510
+28635,45484
+28636,54627
+28637,45844,34424,7666
+28638,65166,48024
+28639,70266
+28640,32355
+28641,14128,59499,63110
+28642,71050,2778,10563,75375
+28643,67020
+28644,40004
+28645,26453,40104
+28646,12294,48240
+28647,39962,21316
+28648,78489
+28649,18075
+28650,10584,62103,7053,5474,60441
+28651,53499
+28652,78475
+28653,31236
+28654,1881,20246,33552,58865,60808,40658,55004
+28655,27087
+28656,22406,73130,54160
+28657,25148
+28658,34037,65702,53617
+28659,78853,30531
+28660,37063,18053,9578,29836
+28661,66010,37658,27309,23085
+28662,64866
+28663,5079,27494,35209,80275
+28664,39994,55611,53903
+28665,61501,7479,14412,3668
+28666,7096,42747
+28667,53837,51080,59248,34720
+28668,47851,24403,70729,64860,79524,1343,35284
+28669,34405,15792
+28670,52030,20996,77251
+28671,25036,860,24864
+28672,18148,58171,24753,44106
+28673,52564,62081,46325
+28674,80282,5890,58575
+28675,48136,49717,76904,60958
+28676,57663,33766,14463,43755,5152
+28677,1550
+28678,21341,44125
+28679,41165
+28680,25274
+28681,13546,17975
+28682,53756,10075,8408,66033
+28683,27424,64530
+28684,65665,65188,44765,27568,19760,8042
+28685,9756,58907,50088
+28686,20787,45229,64164,29662
+28687,67970,74495,33048
+28688,45473
+28689,61017,28505,64311,63012
+28690,52592
+28691,11681,61369,1934,35040,49257,57071,17865,15654
+28692,55787
+28693,72947
+28694,42014,17278,42926
+28695,34520
+28696,62506
+28697,30288,55398,29211,11436,58733
+28698,12122,72389
+28699,80999
+28700,64961,25369,36980,48634
+28701,62933,63759,43374,444
+28702,67683,49747,37571,75155,62467
+28703,70892,31101,13231
+28704,42387
+28705,3244
+28706,33301,45912,2217,78471
+28707,80096,79127,76686
+28708,22435
+28709,64655,78382,54229
+28710,18228
+28711,80733,37408,58141
+28712,19758
+28713,28695
+28714,82082
+28715,72606
+28716,63078,38904,62812
+28717,31265,54093,45871,35168
+28718,25384,41483,73145
+28719,12298,56131,38034
+28720,4724,79295,65770
+28721,58749,39365,31297,16929
+28722,69891
+28723,40566,35330,8129,45068
+28724,8295
+28725,19454,81539
+28726,17451,78210,63127,19748,56581
+28727,56797,2386,11775,29571,39766
+28728,53456,41966
+28729,60384
+28730,53066
+28731,55038,74926
+28732,7016
+28733,80482,73493
+28734,41471
+28735,58295
+28736,77357,18259
+28737,11956,36346,19287,41056,79082
+28738,79299,67070
+28739,71290
+28740,56622,52815
+28741,19227,52276,11319
+28742,27954,44978
+28743,20955,54488,43376,5402,17643
+28744,2258,12764,69393,12896,7362,2166
+28745,21918
+28746,50289
+28747,21880
+28748,78185,52354,59017,56883,39559
+28749,39124,44265
+28750,2707,11268,10751
+28751,2385
+28752,53886,2331,38982
+28753,25073
+28754,59425,70581
+28755,1036,20577,4097
+28756,16223
+28757,13366,48281
+28758,31760,28938
+28759,13435,42774
+28760,70287
+28761,68918
+28762,38340,28805
+28763,50078
+28764,48926,134,63465,8076
+28765,42874,12335
+28766,79638
+28767,48256
+28768,28395,40567,36554
+28769,39554,35095
+28770,72881
+28771,70754
+28772,34147,73303,7394
+28773,47204,59969,62848,62105
+28774,79112,6232,22297
+28775,74791
+28776,43008
+28777,45830,69061
+28778,19697,21824,76643,45931
+28779,5044,38749,9287
+28780,1603,12736
+28781,26955,45237
+28782,80935,46138
+28783,22810,73362
+28784,67428,36632,55944
+28785,81575,70177
+28786,32590
+28787,3551,33915
+28788,68380
+28789,38503
+28790,9468,45752,33684,22483,65512,47649
+28791,57872
+28792,66020,3441,31947,66782,75054
+28793,43277,80640,79585,12961,8148
+28794,31484,44009,56947
+28795,26178
+28796,60759
+28797,53458,36075
+28798,46890,82159,28173
+28799,78988,1246,52379,26042
+28800,44546
+28801,70317
+28802,33721,14234,75169
+28803,19745,27063,55878,44923
+28804,76011,80002,8980
+28805,49997,42043
+28806,17971,73454,33775
+28807,35012,57149,17358
+28808,64824
+28809,62946,50062,80128
+28810,50331,39605,68786,20567,56424
+28811,2747,63891
+28812,19350,42185
+28813,38945
+28814,47081
+28815,14246,66539,27365
+28816,1498,2880,32772,16305,29081
+28817,34138,36238
+28818,4119
+28819,42967,14074,17412
+28820,78027
+28821,5417
+28822,70368,78312
+28823,44796,38419,11185,81372
+28824,360,35193
+28825,72440
+28826,57788
+28827,78857
+28828,697,26853
+28829,43017,80650
+28830,2140,36183
+28831,35822
+28832,70382
+28833,52081,57131,76394
+28834,69481,20455,36910
+28835,40419,34731,4002,66193
+28836,74517
+28837,82142
+28838,6840
+28839,10414,9946
+28840,36739,3483
+28841,24438,1371,45100
+28842,29000,65086
+28843,40463
+28844,30044
+28845,46353
+28846,5337
+28847,44595,7710,64267,28832
+28848,32419,25811
+28849,9180
+28850,37114,8673,52536,6984,38501,34015
+28851,5052,17174,68792,40742,13333
+28852,2687
+28853,46033,14765,66593,81344
+28854,77086,13669,71332,71826,59332,6620
+28855,31632,39558,63341
+28856,13362,52780,53457,1078
+28857,45047,7226,58518,52561,30240
+28858,19492,74150
+28859,43445
+28860,1458,38576,28552,74911,70554
+28861,40411,31030,26775
+28862,32672,29224
+28863,3747,63400
+28864,67782,41885,49017
+28865,39712,7676
+28866,13667
+28867,69679,77279
+28868,69693,14466,24757,60198,69662,59621
+28869,58625,6101,4602
+28870,14783,1326
+28871,55452,38166,69313,19821
+28872,3850,49527
+28873,22939
+28874,23958,60102,39,57796
+28875,74654
+28876,65659
+28877,70544
+28878,55886,79726
+28879,25932,74416,51379
+28880,24635,55292
+28881,68778,29871,77914
+28882,46867,22149
+28883,62119,15834,45837,7400,44031
+28884,12489,53296,77050
+28885,72974,70681
+28886,32307,38982
+28887,55899
+28888,47258,53845,6077,36062,46095,57544
+28889,5371
+28890,77203,40704,33056,24673
+28891,54401,9053
+28892,11336,15699,73957,53107,48551,58343,52003
+28893,81584
+28894,16819,35029,4851
+28895,10362,58582,80057,62897
+28896,21565
+28897,13146
+28898,71614
+28899,54792,30462
+28900,29320,10565
+28901,54350
+28902,54259
+28903,60612,69780,36914,11877
+28904,78064,69270,22248
+28905,4358,41728,34971
+28906,79492,4089,47386,37852
+28907,52769
+28908,50398,42161,55654,55008
+28909,31983,65343
+28910,26009,20085
+28911,44106,75583
+28912,21123,13707
+28913,23918,70559,25719,62153
+28914,69595,25755
+28915,12811
+28916,24537,31519,80685
+28917,45756
+28918,39621,31699
+28919,20562
+28920,59857,63053,46583,16165
+28921,76845,22260,44152
+28922,24759,13764,76812,13290,79193,53558
+28923,21635,20086
+28924,70289
+28925,40908,78568,82135,23954
+28926,58440
+28927,35666
+28928,24086
+28929,75544
+28930,7802,26771
+28931,58960,30041,62019
+28932,63391,33850
+28933,1346
+28934,73002,62589
+28935,38061,48243
+28936,20517
+28937,15452,11553,42304,38205,57924
+28938,32072
+28939,34789,18418,6611,66137
+28940,21885,29156,21044
+28941,26317,15636
+28942,65947,67167,80809,21693,26567,31409
+28943,42980,14533,7182,62277,24196
+28944,77102,48164,758,1405
+28945,46327,11589,52780,4210,5342
+28946,9298,20189,38441
+28947,42090
+28948,53075,24878,53898
+28949,31497,68419,47883,49210
+28950,29142,20745
+28951,13274
+28952,76894,37233
+28953,39575,21027
+28954,72379,12102,11015
+28955,35443,13381
+28956,36517,9333
+28957,31910
+28958,25494,50203
+28959,70896,4810,36710
+28960,16641,9868,61082,40352,20827,65536
+28961,72332,55679,48714
+28962,3550
+28963,13456,62946,46789
+28964,33669,73721,3731
+28965,78121,46098
+28966,2998,52455,59544,44388
+28967,20731
+28968,10223,72336,78706,23444
+28969,50200,29042,41537
+28970,58037,49880
+28971,24543,11910,34808
+28972,18441,32499,5573
+28973,75923,57329,70384
+28974,6835
+28975,56610,22494,55224,4443,44566
+28976,58847,10751,408,43035
+28977,46274,25458
+28978,33075,1884,51752,30418
+28979,60547
+28980,13539
+28981,35766,48487
+28982,52885,39299
+28983,60620,45374,10979
+28984,31946,7755
+28985,37819
+28986,57273,78888,17943
+28987,66616,79445
+28988,14168,5011
+28989,26785,65142
+28990,12751
+28991,31148,14396,67672,46495
+28992,21553
+28993,22770
+28994,71495,25599,21040
+28995,38095,56550,29169,55568
+28996,9070,44055,39665,42059,46210,4095
+28997,2416
+28998,43609,70731,73871,5784
+28999,31114,68138,28577
+29000,34610
+29001,74661,19602,78141,56049
+29002,76314
+29003,45465
+29004,65531,81445
+29005,46578,22072
+29006,77648,20277,77998
+29007,60664,55676
+29008,875,73714
+29009,55418,77349,54414
+29010,53084,19364
+29011,62121,31007,37924,62822,18689,24562,36569
+29012,17589,25462
+29013,13096,68220,24918,54314,23757,71673
+29014,27137,17837,29738
+29015,75540
+29016,68205,71453,19971
+29017,50116,11980
+29018,66838,35986,68344
+29019,4290,38544,1548,76363,77290
+29020,38618,47020
+29021,75349,55853,24525
+29022,5645,13263,64042
+29023,51682,40087,80966,23343,58204
+29024,18265,71904,40958
+29025,1228,45846,79822,18489
+29026,57939
+29027,30959,3876
+29028,60224,3972
+29029,14511,41641,41253,47041,70202
+29030,73475,10381,21125,56088,14316,42673
+29031,62715
+29032,51492,80450,28879
+29033,39519
+29034,51099,81265,13086,18962
+29035,525,5914,60607
+29036,6407,37021,25288,66856,24676,50664
+29037,31964,26275
+29038,39052,18499
+29039,6784,81645
+29040,63873
+29041,72939
+29042,44925,69938,8538,33249
+29043,67911
+29044,67589
+29045,74758,71154,82120
+29046,35610,33209,34303
+29047,81430,55746,27398,51884,28025
+29048,52139,41420,65971,72872,8097
+29049,79413
+29050,20182,21814
+29051,74698
+29052,59481,48068
+29053,15743,53266,20407
+29054,25651,21861,59490
+29055,9274,65128,54422,69933
+29056,48050,45069,7979
+29057,57252,66031
+29058,57675
+29059,42150,26518
+29060,59540,39957,14543,65979,12074
+29061,65189,18431,74450,74621,58558
+29062,73459,48153,41850,45618
+29063,6558,42461,78392,54225,53474,35799
+29064,4660
+29065,51564,4928
+29066,56898,26013,63452,44609
+29067,69973,46673
+29068,16918,28638,2511
+29069,49847,81838
+29070,10040,76152,19975,24392,45990,47513
+29071,54748,62246
+29072,8765
+29073,73328
+29074,4225
+29075,69823,49005
+29076,24808
+29077,19188,81660,72085,32403
+29078,70558,53283
+29079,35600,41355,38665
+29080,45842,18197
+29081,57513
+29082,28959
+29083,14895
+29084,60072
+29085,48697,42069,17591,27337
+29086,65183
+29087,26918,74174,33829,59800
+29088,34117
+29089,58579,734,76261
+29090,16699,32692
+29091,65188,54371,73951,3025
+29092,41517,79751
+29093,24314
+29094,81705
+29095,39032,37303,44124
+29096,56354
+29097,74867
+29098,79015,2662
+29099,51432,68046,51990
+29100,59047,77373
+29101,25213,6526,49285,42382,64354
+29102,51540
+29103,8816,10983,31515,32667
+29104,81792,34105
+29105,24046,26696,22228
+29106,39308
+29107,41970,65596
+29108,78143
+29109,55908
+29110,6494
+29111,48404,74609,18521
+29112,4043,21075
+29113,77298
+29114,42517
+29115,72835
+29116,46244,80910,49714
+29117,20472,20205,6497
+29118,10781,16532,53529,2055,41917
+29119,23312,45555,24317,17681,80142,2774,69491
+29120,6987
+29121,51338,64712,71634,23307
+29122,38106,64849
+29123,6215
+29124,23006
+29125,40460
+29126,43078,76653,67062,20773
+29127,1345
+29128,57938,2033,31703,51718,13845
+29129,64909
+29130,57637,46087
+29131,14113,77537,19374,50021
+29132,68436,34719
+29133,34789
+29134,33506,10654,49348,66530
+29135,77774,60924
+29136,64095,21679,33247,29325,26943,45369
+29137,11687,73148,81517
+29138,72656
+29139,22524,40363,69192
+29140,6245,26751,57909,36669
+29141,2641
+29142,9822
+29143,16578,50871
+29144,39222
+29145,70796,70339
+29146,22498,70154
+29147,40662
+29148,24619,33939
+29149,51047,2527
+29150,50993,24423,16382
+29151,33036,1168,44005,42262
+29152,30940,30523,45535,4494,75745
+29153,64480
+29154,55025
+29155,5091,22184,78870
+29156,65765,8731
+29157,62326,54394
+29158,1258
+29159,48220,68266,48628
+29160,50637,8494,52266
+29161,33717,52658
+29162,33491
+29163,61601
+29164,22751,331
+29165,77568
+29166,69721,9751
+29167,44600,32392,12298
+29168,11161,22193,23468,26484,49484,44174,19709,73156
+29169,1320
+29170,10334,63755,4189
+29171,21207
+29172,65505,20951
+29173,45422,11168,3095,66475
+29174,2420
+29175,63288,57075,25747,22976
+29176,21808,47787,64420,7120
+29177,35033
+29178,23728,34250,19213
+29179,39697,37995,5837,47611,76920
+29180,15489
+29181,22958,13863
+29182,55214,12962,28441,53129,31241,955,33180
+29183,29919,5984
+29184,51572
+29185,51512,81515,27125,40761,37427
+29186,79613
+29187,35827,28385,71446,22411,80727,25885
+29188,18162,76841,30776
+29189,56745,33252,54228,75483,50160
+29190,70047
+29191,10743,13447
+29192,48706
+29193,55373
+29194,13152,65530,68423,76312,43806
+29195,27368,74677
+29196,26882
+29197,79207,33687,43336
+29198,42640,17668,34166
+29199,11699,57201
+29200,69795,41489
+29201,35392,27748
+29202,67311,34538
+29203,51704,26110,55648
+29204,7957
+29205,15911,19049,73872
+29206,75443,53708,69101
+29207,71539
+29208,7298
+29209,36379
+29210,36399,76145
+29211,1960,70476,1781
+29212,45403
+29213,50588,16713
+29214,63216,7244,17290,20189
+29215,50539,57436
+29216,67740,13806,19798,66027
+29217,4156
+29218,14435
+29219,29094
+29220,252,32953
+29221,6908
+29222,52171,58071
+29223,33594,22859
+29224,8873,52734
+29225,72659,1594,42085
+29226,56547
+29227,39744,62014,34027
+29228,57983,52276,55274,58682
+29229,50793,35207
+29230,36714,42827
+29231,50449,28826,59042
+29232,32408,29572
+29233,12216,62489,11164
+29234,29156,31902
+29235,57869
+29236,75465,40152
+29237,43314,58521
+29238,61510,69599
+29239,80691,56424,56193,62270,7696,32966
+29240,11303
+29241,56088,9887
+29242,31178
+29243,74193,10134
+29244,73668,2103
+29245,11960,79964,12153,38390
+29246,7894,62504,16431
+29247,55765,51965,72776,2250,54917,34390,32444
+29248,29782,59339
+29249,40334,40506,37203
+29250,53456,16433
+29251,77704,32314
+29252,12601,9463,53688
+29253,75771,54764,50685
+29254,20911,13287
+29255,48950,55027
+29256,48852,45162,33955
+29257,75141,9466,73649
+29258,52303,34973,32638,60855,14168
+29259,16988,54148,5568,71949,28134
+29260,10596,69982
+29261,80041
+29262,52355,44658
+29263,62894
+29264,1906,31268
+29265,64889,32666,60991
+29266,18042,67785,11590
+29267,4573,69736
+29268,8412,76464,24498
+29269,38093
+29270,17571,73406,21429
+29271,13803,39695,54048,71140
+29272,69565,66079,45010
+29273,55892,57915,12235,68992
+29274,24643,4850
+29275,24815,41547
+29276,70340,23725
+29277,64209,76627,64456
+29278,73947,81966,66548
+29279,64836
+29280,8879,34241,65182
+29281,2789,26876
+29282,70301,45038,22710
+29283,48058,44985
+29284,36254,7001
+29285,4170
+29286,5515
+29287,72373,39813
+29288,25159,8955,39792,70090
+29289,53285,38671,40599,37992
+29290,54656,34286,15851,64917,58166,9888
+29291,60043
+29292,1864,49396,28193,64899
+29293,64744,13774
+29294,9161
+29295,66858,50713
+29296,41294
+29297,49660
+29298,14655,72674,1497,33464
+29299,72649,10787
+29300,81512,9151,50327
+29301,78082,81676
+29302,58376
+29303,5957
+29304,72755,10699,4735,61147
+29305,67590,17143
+29306,8281,58166
+29307,75908,73524,46731
+29308,18554
+29309,71868,62019,38093
+29310,36250,76130,55723,72870
+29311,78078,14637
+29312,43076,45397,78352
+29313,53505
+29314,6480,24221,74651
+29315,28666,35756
+29316,26391,55106
+29317,67911
+29318,68551,44081
+29319,50455
+29320,79053
+29321,68317,44645,15823
+29322,31850
+29323,56839,21652,18942,56979
+29324,32437
+29325,44592,62472
+29326,32615
+29327,81203,2533,74204
+29328,50226,54712
+29329,12005
+29330,50357
+29331,23493,73054
+29332,74886,50709,58503,45535
+29333,45759,64536
+29334,16182,8694
+29335,26776,81002,14697,66056
+29336,14480
+29337,44439
+29338,62232,16570,42161
+29339,490,61146,40843
+29340,70566,67369
+29341,82115,3668,6699
+29342,29219,50262,80836,9149,76719
+29343,34509,77380,887,11118
+29344,62574
+29345,26252,34003,70959,66494,61983
+29346,23402,2754
+29347,5685,74416,43929
+29348,78076,7949,51135
+29349,5329
+29350,31740,60801,46459,56789,52067,24566,30637
+29351,74880,79638
+29352,60762
+29353,68404,21928,575
+29354,4742,37889,23852
+29355,45720
+29356,69810
+29357,33704
+29358,49713,32826,17884
+29359,58481,22003,10581
+29360,48451,37383,8384,57782
+29361,24736
+29362,74782
+29363,74054,50932,23221,48401,27780,75738
+29364,70453
+29365,28068,78895
+29366,5187
+29367,80285,65817
+29368,43819,8624,44933,25176,2794
+29369,49320
+29370,18134,53546
+29371,50709
+29372,57088
+29373,57414,7913,34781
+29374,59822
+29375,16816
+29376,76342,52273
+29377,10497,81048,51521,37102,8431
+29378,20094
+29379,33468,68745
+29380,18992,2349,3506
+29381,38443,45638
+29382,33903,54236
+29383,45136
+29384,37197,2381,57672,6291
+29385,47658
+29386,27771,77689,35942,64648
+29387,49652,16662,17096
+29388,76184
+29389,46602
+29390,365,6327,76627,57909,285
+29391,77887
+29392,61472
+29393,47387,60975,31046
+29394,55302,9048,17588
+29395,22764,32882
+29396,59210,52136
+29397,78721
+29398,51119
+29399,38200
+29400,24039,216
+29401,15703,21583,62701,67741
+29402,34995
+29403,25879,36484,45900,61736
+29404,38714,56201
+29405,28766,35730
+29406,70665,40559
+29407,8500
+29408,35155
+29409,19834
+29410,29342,43612,28679,3119
+29411,51159,13644,80347,13869,30727,30230
+29412,78226,75694
+29413,1868
+29414,44695
+29415,10071
+29416,15895
+29417,3418,49943
+29418,60070
+29419,12566,12757
+29420,27245
+29421,41231,51381,80704
+29422,46173
+29423,56839
+29424,71396,49034,70192
+29425,16820
+29426,42350,22757
+29427,25758,66300
+29428,4112,9343,65875
+29429,57266
+29430,49200,27708
+29431,74564,24335
+29432,55933,28907
+29433,27748
+29434,52848,2847
+29435,20261,46204,50885,54762
+29436,49447
+29437,36367,36846,73982
+29438,34743,21830,15185,21931,9975
+29439,42829,4847
+29440,50048
+29441,47140
+29442,76595,67590,20063,16536
+29443,29873,28680
+29444,8965
+29445,63765,1066,66743,57647,25307
+29446,8706,76177
+29447,54497
+29448,56792
+29449,16143,57952
+29450,57207,68062
+29451,49134
+29452,72327,44547,48877
+29453,65790,26764
+29454,35829,26064,49204,1265
+29455,7530,47642
+29456,591,79600
+29457,38232,29324,63858
+29458,32039,77472,46251,73128
+29459,47935
+29460,15966
+29461,33526
+29462,66290
+29463,69453,10001,23063,18899
+29464,58388
+29465,6582,7189,26133,45231
+29466,45337
+29467,43834,5543
+29468,45951
+29469,38764
+29470,48496,78079,79529
+29471,23876,77284,7672
+29472,64638,57842,66085
+29473,30341
+29474,9028,50759
+29475,35716,36753
+29476,64649,18736
+29477,43820
+29478,56249,24852
+29479,30066,44184,44868,20461,38229
+29480,36832,63980,23308
+29481,30272,48779,60135
+29482,55690,8153
+29483,20597
+29484,76870,61194
+29485,14134,61747,49922,31011
+29486,1718
+29487,78552,27515
+29488,29371,72947,53562
+29489,960,15593
+29490,3028,10047
+29491,21356,61745
+29492,11177,61338,54778
+29493,75955,70458,42460,49273,46561
+29494,69330,73583,52551,70305
+29495,51286
+29496,46251,56898,54300,45628,5168
+29497,25104
+29498,29138,42014,17872
+29499,17938,46377
+29500,9554,44510,7755
+29501,58953
+29502,27346,63579
+29503,51852,34639
+29504,55676,78924,27745,36374,16663
+29505,65768,58314
+29506,72573,48195,50922
+29507,48527,45718,75648,14662
+29508,27895,37012
+29509,43920,25146,77093
+29510,46095,63719
+29511,67390,5806,8015,30133
+29512,76763,14742,47251,37120
+29513,18895
+29514,68463,78220,41558
+29515,27370,15962
+29516,36749
+29517,10129,65445,2115,55349,35855,38474,65094,40944,26989,35359,61392,48657
+29518,70076,49692,1924,56365,52237,59226,33630,78973,79660,28242
+29519,76160
+29520,66444,18740
+29521,17295
+29522,49779,43315,26941,18477
+29523,47047,42437
+29524,49290,55620,16751,28
+29525,21588
+29526,1440,27909,60348
+29527,30859,67630,19458
+29528,18004,1611,23056
+29529,80335
+29530,39001,25840,37768,10717
+29531,49423,29356
+29532,21424
+29533,12473,48830,69999,42801,40588
+29534,13873,71539
+29535,44014
+29536,9123,81860,9059,47853,67997
+29537,30487
+29538,15942
+29539,26484
+29540,55129
+29541,80457,3806
+29542,2614
+29543,53778,10114
+29544,25584,62627
+29545,52423,17412
+29546,26655,65616
+29547,31760
+29548,77404,80659
+29549,10114,74258,61708
+29550,46481
+29551,66538,11468,62419,64563,76199,49693
+29552,77607,79700
+29553,53432,51676
+29554,48232
+29555,660,49571,16953,21173,36291,68920,15759
+29556,37084
+29557,47214,36073,2731
+29558,6866
+29559,24164,43627,75895,48852,58520
+29560,68317,65127
+29561,19473,23128,56268,46148
+29562,12744,34515
+29563,74569,78542,41404,64475
+29564,42884,49762,40925
+29565,14393,68404,55366
+29566,64550
+29567,48389,58414,43520
+29568,1686,65229
+29569,27972
+29570,78226
+29571,11878
+29572,71772,50735,27483
+29573,72633,67737
+29574,27484,27672,32371,24971,80031,6732
+29575,71805,4266,51977
+29576,21228,37504
+29577,17600,71930
+29578,77505
+29579,20408,81122
+29580,63925
+29581,45871,32197
+29582,20210,232,16230
+29583,5703,72009,54760
+29584,52701,56784,47305,49823,3393
+29585,36256
+29586,67740
+29587,51321,76795,16518,43272,33053,50677,14278
+29588,46838,74458
+29589,28470,47219
+29590,80005,38299,67122,32789
+29591,15092,44331
+29592,31980
+29593,47986,76384,57374
+29594,52769,38873
+29595,58555,68990
+29596,44799,2333
+29597,68147,32259,25145
+29598,68234,16749
+29599,14536
+29600,22568,44549
+29601,52374
+29602,22058,43403
+29603,73862,45073
+29604,69583
+29605,56055
+29606,48440,38510,63813
+29607,76836,57886,6070,1741
+29608,60280,70370,41980,21536
+29609,55380,42954,79600
+29610,1578,40403,36957,6663,55398
+29611,36304
+29612,44918,20240,34724,15045,24153
+29613,73802,79942
+29614,67377,10811,44286
+29615,72001
+29616,60898,16119,74735,49763
+29617,25565,34298
+29618,45991,47153
+29619,50505,46727
+29620,81640,31772,53834,21974,3033
+29621,70693,61193,19023,8000
+29622,74645,43205,3296
+29623,60141
+29624,51854,62298,76282
+29625,5994,49074
+29626,35534,7765,74187,52456,46099,21525,6341
+29627,71392
+29628,57733,43757
+29629,70043,23842,13643,73179
+29630,34509,15849,79270,49715,4371,78063,41035
+29631,4239,43102
+29632,49093,13851
+29633,62254,35480,11812
+29634,468,60791
+29635,58451
+29636,52980,60812
+29637,72304,41651
+29638,72520
+29639,80930
+29640,27841,4503
+29641,50330,42121
+29642,23606,67106,47696
+29643,15153,73555,69424,46797
+29644,12159,73981
+29645,19135
+29646,75939,15306,8697,32167,48169
+29647,79393
+29648,77097
+29649,72024,33271,11333,68970,39319
+29650,58546
+29651,69754
+29652,19492,41575,49881
+29653,62504,7438,40720,71149
+29654,41574
+29655,40273,10438,36313,47892
+29656,56674,22092
+29657,46755,14953,5545
+29658,58685,72252,79428
+29659,78047
+29660,2219
+29661,74810,76807
+29662,68912
+29663,56744
+29664,41521,27232,71611,63947,68558,77299
+29665,38448
+29666,27004,68698,45962
+29667,53664,73668,75300
+29668,42214,49520
+29669,29746,7016
+29670,25666,77877,38093
+29671,59759,46894,13981
+29672,5739
+29673,2575,521
+29674,6876,63304,78833,43430
+29675,55346
+29676,67831
+29677,78148,50742,32012,25939
+29678,71529,19080
+29679,25707,73479,4580,27485
+29680,78036,78866,67347
+29681,21593
+29682,39839,11366
+29683,35695
+29684,51600,4766
+29685,32160
+29686,76398,25291,67944,41431,80022
+29687,12567,8916,19095,66857
+29688,6595
+29689,76042,43741,28138,60329,35373
+29690,8647,9316,66962
+29691,10962,27307,19617
+29692,40958,64096
+29693,21066,56264
+29694,57647,23924
+29695,68449,71472
+29696,12547,62500,10346
+29697,47777,72711
+29698,19367
+29699,42106,5322
+29700,37555,43424
+29701,38021
+29702,61184
+29703,39524,46222
+29704,64386,26751,58514
+29705,38286
+29706,79126,25754,80936
+29707,5575,45501,51973
+29708,70428
+29709,61057,71805
+29710,10928,43423,58582,46672
+29711,25022,78162,9654
+29712,25035,7164,20404
+29713,71375,68929,5005
+29714,34383,16089
+29715,36487,64149
+29716,32977
+29717,16724
+29718,36709,49039
+29719,45694,57146,62612
+29720,61470
+29721,23438
+29722,65392,67532,14160
+29723,32129
+29724,77337,7545
+29725,47406
+29726,6225
+29727,66316
+29728,81592
+29729,17440,48975,17007
+29730,19129
+29731,4168,80859
+29732,81183
+29733,18119
+29734,80441,20991,47623
+29735,31234
+29736,15835,74098,69170
+29737,14325,2915,22264,36558
+29738,19977,70144,60451
+29739,58638
+29740,73132
+29741,51228,38620,77600
+29742,41521,67213,66596,48635
+29743,45200,24370,1334,29322
+29744,79518
+29745,13238,21066
+29746,48008
+29747,21526,14969
+29748,12557
+29749,42070,67272,49716
+29750,67077,56964
+29751,64060,81144,38937,52086,28754,23891,11401
+29752,24326,56898,8971,78282
+29753,9751
+29754,21406
+29755,24811,61314
+29756,81056,4420
+29757,8808
+29758,23250
+29759,79060,73441
+29760,28411,57190,841
+29761,66788,61075,74271,76676,6493,38604
+29762,65602,1769
+29763,7124
+29764,27103
+29765,75545,52908
+29766,31935,78539,8810
+29767,63929,37277,18403,4986,55224
+29768,66043,29719,68790,55268,18736,62707
+29769,74487
+29770,41032
+29771,756
+29772,31816,74398,1170,44908,58792,77964,33573
+29773,70122,237,29431,81676
+29774,16063
+29775,43495
+29776,6350,39754
+29777,27672,76926
+29778,34657
+29779,42189
+29780,58495,76836,61193
+29781,63973,76411
+29782,55898,76867,48798
+29783,62533,22176,42952
+29784,14718
+29785,45097,30238
+29786,11588
+29787,72449
+29788,2939,14886,18621
+29789,34844
+29790,52323,54130
+29791,35898
+29792,75556,65433
+29793,28356,7598,54214,65990
+29794,43418,77379
+29795,60126
+29796,67788,15584
+29797,30075,42128,73976
+29798,47471,11659
+29799,47819
+29800,3791
+29801,29336
+29802,257
+29803,31009
+29804,8645,5327
+29805,37067
+29806,16532,69495
+29807,69572,60476,51368,12390
+29808,15628,71930,62184
+29809,11430,34291,70371
+29810,77066,35674
+29811,19835,3281
+29812,77256
+29813,81610,66564
+29814,22797
+29815,64217,73306
+29816,8926
+29817,3487,1238,4297
+29818,36376,34760
+29819,11979
+29820,9668,21153,74488
+29821,71603,7193
+29822,72765
+29823,35729,80136
+29824,8722,32724
+29825,42063
+29826,58229
+29827,63777,42969
+29828,16612,81193,39081
+29829,36984,3430
+29830,75401
+29831,30018
+29832,17764,52499,20308
+29833,9868
+29834,43155,5109,33429,75022
+29835,60464,5687
+29836,36021,43393,79613
+29837,8473,68221
+29838,54042
+29839,9621,27594,70286,42148
+29840,32384
+29841,32192,16475,34614,25973,15265
+29842,6447,5077,8540
+29843,33338,40594,37694
+29844,48515,56245,30057,24142,63943,38393
+29845,14586
+29846,65086,44737,12625,77379,37892
+29847,40051
+29848,4503,78939,8397
+29849,51910
+29850,40262,16812
+29851,65057,7969
+29852,53911,9506,32042,15764,64195
+29853,16774
+29854,53770,3417
+29855,56488,26391
+29856,57136,21888
+29857,72683
+29858,7005,42988,19743
+29859,45318
+29860,38370,66184,56309,27732,68743,8172,27148,21812,3576
+29861,25122,38489,57810,1153
+29862,60409,42815,13985
+29863,37583,71829
+29864,45579,63924
+29865,22854,25749
+29866,4425,20434
+29867,52902,30750,60760,47754,4051
+29868,63423
+29869,65647
+29870,1903,28705,46039,39622
+29871,42640,81285
+29872,4344,58231,35280
+29873,77759
+29874,50671,64970
+29875,35935,60056
+29876,47779,63199
+29877,42526,21012,76914
+29878,25984,75905,68350,22691,2045
+29879,79783
+29880,65024,46953
+29881,13226,2199
+29882,42767,66755
+29883,20986,50845
+29884,3886,65935
+29885,26457,15071
+29886,37433,46380,23332
+29887,70387
+29888,64387,50071,29250
+29889,35828,6450,9656
+29890,40001,23958,7474,24594
+29891,62654,27638,23572
+29892,21471
+29893,73889
+29894,28568,76829
+29895,78032
+29896,75368,47010
+29897,9360,44047,80446,23456,47099
+29898,55521,70188
+29899,42457,39873
+29900,33666,26639,20505,38919
+29901,57719
+29902,21099,22667,72255,63836,42143,44674
+29903,43758,77568
+29904,35785
+29905,42186
+29906,42198,48180,18239
+29907,69134,61070
+29908,42778,47762,41638,62684
+29909,72911,40098,68282
+29910,16821
+29911,57987
+29912,45762,63174,42594,25754,14231
+29913,7143,77268,12685,60024,54131,66323,77960
+29914,57996
+29915,42592
+29916,11936,70933,41245,71997,14612
+29917,43064,17470,7965
+29918,44481,14289
+29919,62189
+29920,49975
+29921,61136,53194,27343,69529
+29922,57986,68060,76669
+29923,20926,52364,23828
+29924,183,16824
+29925,36394,29547
+29926,11772,34757
+29927,61470
+29928,37784
+29929,23750,73932,40376,10668,7601,74846,32472
+29930,72641,51133
+29931,5940
+29932,5210,62589,52254
+29933,6616,76
+29934,41362,77598,76169,41463,80866,22037,71504
+29935,63093
+29936,51074,41772,71548,68461,53803,6398,53168
+29937,60843,9650
+29938,61852,64462,44547,62082
+29939,37626
+29940,36747,202,70770
+29941,10130,81651,55903
+29942,44634
+29943,29843,3859
+29944,15373
+29945,9070,20555,57075
+29946,57648,16797
+29947,57943,64842,72364
+29948,33510
+29949,75439,72158,13455,20603
+29950,66112,12123
+29951,57362
+29952,51289,10285,41364
+29953,22093,62187,58109
+29954,54840,61895,5126
+29955,17432
+29956,45813,9115,30373,3682,6865,37470,47883
+29957,33154
+29958,39903
+29959,18955,60745
+29960,17509,44829
+29961,20280,48068,77222,10601,26838,73586,32193
+29962,43694,1246
+29963,76068,53527,8294,32925
+29964,59131,65352,24970,36987
+29965,72763,49826,13653,60476
+29966,48125,28095
+29967,15686,46324,49405
+29968,81970,31305
+29969,18532,59487,58600
+29970,34720
+29971,34530
+29972,63037,68990,53644,48992,46655
+29973,70217
+29974,7893,81505,13383,73838,35177
+29975,68373,46601
+29976,47845
+29977,72549,20267,42149
+29978,30211,3688,21859,42486
+29979,40525,46287
+29980,32866
+29981,70531,34952
+29982,7944
+29983,42680,42849,20820
+29984,27338,59822
+29985,4583,16918,15618
+29986,439,37354,67706
+29987,31686,51667,51034,73813
+29988,60431
+29989,81812,16221,50769
+29990,44889,53865,515
+29991,5956,69478
+29992,39147
+29993,63784
+29994,65870,26059
+29995,71411,81945
+29996,9964,48210,14469,7525
+29997,10241,44104
+29998,68017,942
+29999,31761
+30000,79053
+30001,43654,41822
+30002,38114,12229
+30003,60811
+30004,149
+30005,38011,46550,56494,27279
+30006,38648
+30007,61422,23481,58779
+30008,11291,33115,14748
+30009,14320
+30010,50152,15773
+30011,16014
+30012,42560,59348,66426,58705
+30013,34563,77493,34636,27783
+30014,16735,80351
+30015,29547
+30016,59185,53351,64400,11575,64288,48721
+30017,33773,16164,39726
+30018,63552,56503
+30019,3208,32904
+30020,80430,40978,74901
+30021,45489,13085,10101,68677,51692
+30022,2341
+30023,64676,7446
+30024,5263,14170,7638
+30025,68556
+30026,33965
+30027,29306,36535,82031
+30028,45513
+30029,19699
+30030,37613
+30031,29417,53577,28463,49741
+30032,39490,51295,67348
+30033,14265,44608,40507
+30034,9719,7694,2549
+30035,30767,8732,17446,2950
+30036,54132
+30037,68820
+30038,60882
+30039,43146,17284,65502,61939,15373
+30040,5384,38521,77171
+30041,36410,16568
+30042,59516
+30043,36725,52113
+30044,22058
+30045,1889,54162
+30046,75534,73055
+30047,11881
+30048,8355,22948
+30049,73364
+30050,47135,47400,22627,1292,57511,72376
+30051,75186
+30052,21136
+30053,38570,45505
+30054,5228,466,77102,28009,66357,49040,2329,20527
+30055,30683,20322,81478
+30056,25659,42281,70314,39355
+30057,1961
+30058,57815
+30059,64844
+30060,61620,29644
+30061,52949,21055
+30062,17729
+30063,44866
+30064,11434,33409
+30065,59637
+30066,34576,67840
+30067,51065
+30068,23664,38954
+30069,1903,27408
+30070,7088,55609,34394,49552,80707
+30071,48336,76853,4515
+30072,1036,63237,69306,67790
+30073,290,16148,32424,50604
+30074,55836
+30075,59971,25943,67492
+30076,63917,53313,38541
+30077,68976,62061,67867
+30078,72534,14057
+30079,33704,48127,48847
+30080,42827,48784,40745
+30081,20132
+30082,61803,77774,75295,53014
+30083,64823,7715
+30084,3613,70409
+30085,72295,20400
+30086,24912,15249,43380
+30087,33513,6611,43080,12369
+30088,63874,54698
+30089,65710
+30090,6865,35846,34759,78586,1075
+30091,22527,36248
+30092,30510,81934,1749
+30093,3323,71535,33028,41828
+30094,40200,71521,69415
+30095,5529,61736,41819
+30096,5359,20192,38209,17267
+30097,16484,32044
+30098,1509,44449
+30099,5527,36589,30825,46258
+30100,58472,55299,11948
+30101,44512,59301,50182
+30102,61430
+30103,18885,14927,38096,42093
+30104,2969,48726
+30105,55725
+30106,5100,40495
+30107,42733,29531
+30108,81610,25884
+30109,8637,60317
+30110,53089,68143
+30111,556,27376,28029
+30112,3859
+30113,42164,19737,38411
+30114,68873,67589
+30115,37039
+30116,39191
+30117,22084,32312,69007
+30118,57687,8151,51612
+30119,262,48099,51291,19297,9151
+30120,41877
+30121,15580,1913,79247
+30122,24914,591,51506
+30123,35147,9994,44607,19119,22244
+30124,63312,14874
+30125,60667
+30126,68561,69251
+30127,75477,78631
+30128,63141
+30129,52371
+30130,12374,53102
+30131,44904
+30132,70377
+30133,74200
+30134,66044
+30135,45011,67188
+30136,38187,15329,20779
+30137,37540,22695
+30138,55882,81096,41689,75781
+30139,6143,59303,9267,5149
+30140,16283,71861
+30141,59340,17020,75741,47150,58302
+30142,53793,42516,62612
+30143,2796
+30144,1577,71861
+30145,27953,53762,2361,59210,28536
+30146,43256,7160
+30147,35848,61544,1764,22850,66581
+30148,37224,24072
+30149,57125,3090,36614
+30150,48761
+30151,63318,41819,78171,45374
+30152,15953,43222,60525
+30153,13554
+30154,14838,52803
+30155,70496,54743
+30156,43265,31730,53041
+30157,64975
+30158,1895,36210
+30159,40418,52746,73614,76938
+30160,34138,34333
+30161,45283
+30162,54054
+30163,80651
+30164,58393
+30165,27290,57487,45201,28461
+30166,8647,65958
+30167,5408,42361,39373,55901,31825
+30168,54942,42399
+30169,81008,14637,48033
+30170,45521,25275,25669
+30171,45610
+30172,5420,72211
+30173,56407
+30174,73906,21192,25766
+30175,47949
+30176,1803
+30177,11602,12535
+30178,7836,30369,15957
+30179,56018
+30180,23760
+30181,75283,67523
+30182,2155,47220,61814,80151
+30183,63662,42893,50021
+30184,65433
+30185,3623,57491
+30186,9751
+30187,60777,43126
+30188,15113,19608,53513
+30189,3269,78062,20243
+30190,64975,37841,72756,60692
+30191,50330,7116
+30192,61497,59027
+30193,33992,30430,56114,60445
+30194,24504
+30195,22120,42082,29071,81066,29264
+30196,38331,2509
+30197,53305,51795
+30198,12994
+30199,30063
+30200,67772
+30201,50610,1599
+30202,23992
+30203,59091,72321
+30204,46049,28980,5836,3955
+30205,26981
+30206,67697,53641
+30207,80762,82052,44340
+30208,78436
+30209,76315,15018
+30210,18736,3264
+30211,46080,34213,68299
+30212,59447
+30213,21880,33678
+30214,51798,49856
+30215,34469,14813,75770
+30216,52058,16269,14925
+30217,73023
+30218,48649
+30219,63597,41146
+30220,11271
+30221,74311
+30222,7455
+30223,63705,66783,17142
+30224,38671,53744
+30225,49090,45253
+30226,13255,22766,255,3333
+30227,11715,65237
+30228,67852,22743
+30229,33287
+30230,73529,81663,61721,76871
+30231,44194,32000,31402,53010
+30232,72911,73356,22933,35903
+30233,24142,57834,71020,30956
+30234,20500
+30235,20972,75939,53492
+30236,49255
+30237,47012,59198
+30238,48287,35186
+30239,70382,30690,10426
+30240,45217,81423,6692,69623
+30241,1100
+30242,5842,71999,52351,62112
+30243,8777,69207,3603
+30244,25787,72054,58316
+30245,69079
+30246,27329,18006,3898,70493,48821,46679,22372,6973
+30247,19147
+30248,66117,79378,41206,66623,28170,73396
+30249,13960
+30250,14306,1486
+30251,12473
+30252,173,38665,28638
+30253,65769,65737,23883,40057,15241
+30254,5145,65998
+30255,21981
+30256,15939,30636,71835
+30257,81842,37892
+30258,48312
+30259,19817,5739
+30260,78330,14448,46481
+30261,54334,37782,6648,42018,607
+30262,37209
+30263,59804,28842
+30264,50635
+30265,74069,8853
+30266,70315
+30267,58362,52900,44384
+30268,71181,65515
+30269,11898,59071
+30270,44280,24053
+30271,53090,12035
+30272,21192
+30273,25131
+30274,64161,43256,1230,43182,23207,27510
+30275,26281,37690,56031
+30276,51065
+30277,63724
+30278,67137,58834,63450
+30279,12624
+30280,6217,42129,70368,3300
+30281,15850,44314
+30282,82075,80749,10791,48097
+30283,66547
+30284,23307,19786
+30285,79355,69903,23147,10483,6429
+30286,36649,28128,37676,28340
+30287,69652,28095,43210,22608,13324,29040,6989
+30288,43534
+30289,82009,35803
+30290,75320,66916,66828,36497
+30291,49916,47639,35423
+30292,10580,29060,74917,69767,25941
+30293,6371
+30294,466
+30295,73748,24106
+30296,11168,60792
+30297,13329,7441
+30298,8477,39958,12734,13381,37775
+30299,59352,27411,77996,52957
+30300,64835,21122,28242
+30301,350
+30302,2808,53978
+30303,38020,36603
+30304,28509
+30305,74341,46557,11047,23187
+30306,24277,35259
+30307,53449,81197,1328,6119,26954,14912
+30308,61095,66002,68900,42308,5083,57681
+30309,38384,81430
+30310,66054,23926,41031
+30311,76634
+30312,12585
+30313,42478,27879
+30314,60220
+30315,44859,10578,68607
+30316,77435
+30317,47111,51793
+30318,71547,32575,68557,49461,7329,14719
+30319,64754
+30320,1066,21546
+30321,17236,79384,68325,43706
+30322,20404,28612,63224,29691,55388
+30323,32189
+30324,62655
+30325,52514
+30326,51658
+30327,68303,28638
+30328,77573
+30329,75406,12285
+30330,35230
+30331,79533
+30332,6946,65070
+30333,8481,26181,1590,820,30115
+30334,33229,34186,66383,15188,51989
+30335,64417
+30336,14632,30227,41778
+30337,21896,36022,45769,62136
+30338,55900,68624
+30339,74191
+30340,11642,2376,16810,60704
+30341,16819
+30342,45002,56390
+30343,57459,6991,47937,5175
+30344,34621,56401,16917
+30345,53424,48533,67856
+30346,13150,13159,75365,39819
+30347,57815
+30348,964,11503,48270
+30349,32108,19963
+30350,71653,8837
+30351,13610,63842,67936,79438,29172
+30352,60944,67797,57188
+30353,7282,33050
+30354,3602,61106,8740,2799
+30355,27562,13362
+30356,37380,58316
+30357,32043,10020
+30358,46602,37868,47419,66669
+30359,28819,18265,13702
+30360,28614,39242,70755
+30361,77905,61546,36741
+30362,80980
+30363,22176,17618
+30364,50004,50437,17216,44758,31925
+30365,7139
+30366,35714,28962,39371,67033,50104
+30367,48998,10644,12377
+30368,45285,21273
+30369,37641,11581,79641
+30370,50481
+30371,79050
+30372,46091,61548,1386
+30373,18539,19226,53176
+30374,5425
+30375,36167,60659,38706
+30376,77421,65029,42714,69989
+30377,25836,1943,9044,60029,26510
+30378,6545,9429
+30379,17791,28724,22658
+30380,46188,59028
+30381,54551,78219
+30382,41090,13423,73900
+30383,77072
+30384,39651,43636
+30385,78874,40593,52246,69237,50649
+30386,62824,496,72719
+30387,50724,45335,73967
+30388,76257,65489
+30389,54834,62680,29805,46968
+30390,3611
+30391,23065,35387
+30392,31643
+30393,73250,20008,19075
+30394,4221,73965,57962,37737,50682
+30395,55435,54251,58662
+30396,8026,35084,77598
+30397,20885,73212
+30398,71048,70412,15915,5176
+30399,61538
+30400,57265,26937
+30401,55895,78867
+30402,37981,35371,71020,625
+30403,56390,2089,18918,23003,10502,49815,15352
+30404,46241,62495
+30405,82183,44415,69136,23734
+30406,60371
+30407,58434
+30408,50021,29774
+30409,15331,73702,43845,50472,11004
+30410,80174,52331,42439,46256
+30411,41449,66240
+30412,65660,15753,61172,37974
+30413,70934
+30414,70147
+30415,47182,8525
+30416,51407,39474
+30417,27078,74659
+30418,56999
+30419,6025,59677,40994,18713
+30420,26336,18381,11150,34797
+30421,35872,35330
+30422,76713,26815
+30423,72977,81829,59584,288
+30424,26176,27995
+30425,42387
+30426,54935,40423,81551
+30427,12333
+30428,7748
+30429,79071
+30430,68004,30746,30028
+30431,10327,61252,24406,60625,1921
+30432,20361
+30433,30418,47151,48953,65873,65135
+30434,56338
+30435,53643,57601
+30436,43192,47979
+30437,26133,24110,22962,53574,31853,36152
+30438,56763,10220,77096,2360,38863
+30439,28670,58520,59943,67757,745
+30440,30359,80446,17614,9041
+30441,52720,4568,30049,80987,73257,10644,23811,11719,75343
+30442,51379,71637,7534
+30443,69070,67476,61326
+30444,68101,80888,78981
+30445,6261
+30446,20300,49660,56935,36772
+30447,81555,69753,57924,24351
+30448,44150,51015,35037
+30449,21773,2213
+30450,22375
+30451,28328,16485
+30452,45756
+30453,53829
+30454,16063
+30455,19620,30469,19396
+30456,49499,3158
+30457,55528
+30458,57265
+30459,46197
+30460,48667,69865,46825
+30461,34816
+30462,48099,66307
+30463,15313
+30464,45534
+30465,50630,9978,5297
+30466,7064
+30467,25732
+30468,42491,34347
+30469,70542,66392
+30470,30753,411,17116,78122,70593
+30471,53216
+30472,48095,34353,40004,4364
+30473,40134
+30474,10658,46668,69879
+30475,76194,67591
+30476,20610,56401,44388
+30477,52726,18710,3927
+30478,46343,29397
+30479,48319,4949,38220,2916,7835,76282,24687
+30480,78049,81581
+30481,55391,53045,7454
+30482,71024,26629
+30483,53628,68499,2790,14707,56261,17584
+30484,76863,75355
+30485,54918
+30486,59669
+30487,63513
+30488,46012,46258
+30489,8295
+30490,44221
+30491,40581
+30492,70530,50053
+30493,59134
+30494,8326
+30495,72967,68395
+30496,64820,64329
+30497,49270,41736,20178,71865,54108
+30498,67006,68558,69675,65436
+30499,26453
+30500,52029
+30501,52043,64646,20962,37489,80380
+30502,2216,42077,74308
+30503,47142
+30504,70057,49323,81612
+30505,73365
+30506,33176,12618,52436,71774
+30507,42712
+30508,37898
+30509,38164
+30510,79905
+30511,55227
+30512,53530,76643
+30513,19195
+30514,56965,625,30390,53279,50717
+30515,61155
+30516,61392,41678
+30517,13291,24836,53388
+30518,79015,33402,6921
+30519,51078,66156,9669
+30520,41863,28876,10815
+30521,3195,36891
+30522,30665,58259
+30523,39522,68505
+30524,62263,25032
+30525,57694,28801
+30526,49175,12322,4839
+30527,55351
+30528,59471,32100,44814,12380,77667,12995
+30529,66540,76928,41696,5494
+30530,19276,75389,32409
+30531,2932,22868
+30532,30810,40084
+30533,7440,53640,53824
+30534,46416,62204,66783
+30535,60918
+30536,32438
+30537,33060
+30538,79785
+30539,43336,8339,76527
+30540,81756,58741
+30541,25750,54183,7102
+30542,25759,44706,49291,50941
+30543,71305,71748
+30544,39341,51149,5069,59638,38613
+30545,21471
+30546,68796,55949,40023,59498,70398,67839,64456,25896
+30547,58470
+30548,64891,2530,12818
+30549,58188,47064,39246,15601
+30550,81211,70128
+30551,37493,45685,64530
+30552,81382
+30553,51546,9905,2458
+30554,43829,77330,66168
+30555,15549,18916
+30556,67453,16078,63138
+30557,65454,57881
+30558,65992
+30559,7739,67451,35085
+30560,8389
+30561,2601
+30562,81659,59142
+30563,38042
+30564,55029
+30565,31389
+30566,34899,1451
+30567,54903
+30568,51584,48357,42105
+30569,15734,29723
+30570,52443,15873
+30571,39897,68753,70446,4152
+30572,12037,55241
+30573,46231
+30574,22741
+30575,38625,4599,30507
+30576,60340,31561
+30577,50765
+30578,66568,39089,26052,75498,51753,69394,21196
+30579,19284,37073
+30580,68845
+30581,20874,48107,78411,24256
+30582,11125,37835
+30583,43425
+30584,61942,65439,24423
+30585,30822,27421,59081
+30586,70048
+30587,31054,70791,13136
+30588,521,340
+30589,3458,14639,26673
+30590,17376,39608
+30591,56277,49112,33237
+30592,57037
+30593,71588,32128
+30594,37494,44328,63594
+30595,46561,45412
+30596,31435,31135
+30597,81260
+30598,77363,22595,54506
+30599,48352
+30600,20776
+30601,65008
+30602,15120,78558
+30603,8773
+30604,30962,17097
+30605,45134
+30606,58239,70880,82148
+30607,58081,76915,70139,32392
+30608,75270,17943,7101,3368,44231,15124
+30609,15504,42158,64436,25852,18981,16385,81301,42649
+30610,38470,68248,43700
+30611,46901,45817
+30612,21170,10248,63500,40479
+30613,51609,65274
+30614,33980,47270
+30615,21868,40425
+30616,76497,37370,42016,12658,69242,24547
+30617,63939
+30618,34806,71554,11166
+30619,14065
+30620,21256,18496,59904,64649
+30621,71818
+30622,64612
+30623,16298,51753,54385,57616
+30624,81293,80449,74103
+30625,37760,52364,31546,34162
+30626,56340,56326,22616,19189,79504
+30627,6951
+30628,54965,3695,55782,53280,21525
+30629,46702,35214
+30630,49236,27567
+30631,45207,47840,39996
+30632,48651,70326,2730,79621
+30633,71968,28918,37846
+30634,76867,76221
+30635,39449,49248
+30636,16880
+30637,52190,66115,36393
+30638,41563
+30639,59684
+30640,28873,74092,53285,71349
+30641,55517,49069,19139
+30642,5409,32923
+30643,81256
+30644,30324
+30645,4868,18432,45289,76813,48189,63937
+30646,34808,29850,3518,12058
+30647,47655
+30648,25325,52494,22732,48384,35183
+30649,60242
+30650,61042,62224,20740,29658
+30651,57921,70047,47291
+30652,56716,28805
+30653,53267,61017
+30654,76967
+30655,27549
+30656,59622
+30657,33326
+30658,15261,61205,44313,59590,59736
+30659,46493,17769
+30660,32282,38151,23289
+30661,17974,41187
+30662,15078
+30663,64933,72255
+30664,28579,71896,75038
+30665,12611,25570
+30666,78875,50823,43980
+30667,36924,56073,23992,60776
+30668,41052,41091,65116,37614,48916,21908
+30669,36302,66407
+30670,74489,71827
+30671,80693,62095,31976
+30672,40169,8516
+30673,8381
+30674,61732
+30675,47157
+30676,32044,47569,74745,6386,59005
+30677,43460,10943,35176,57239,7457
+30678,20465,73947,58691
+30679,39268,1371
+30680,74151
+30681,45851,9315,2526
+30682,53621
+30683,41199
+30684,8136
+30685,19084,69890
+30686,340,70406,73839
+30687,24318
+30688,11056
+30689,68370
+30690,17420
+30691,67519,19190
+30692,67686
+30693,26583,68470,70298
+30694,65183,61008,17677,10232
+30695,57288,6032,38738
+30696,34420,75957,79058
+30697,58135
+30698,52709,23733,55157
+30699,77820,65827,44152
+30700,59521,27005,28952
+30701,23068,34558,23303
+30702,25479,53643,46498
+30703,4609,32753
+30704,66123,27501
+30705,810
+30706,41596,26630,33024
+30707,43956
+30708,23289
+30709,59279,33484,58850,81826
+30710,41072,57817,78820,56362,58284
+30711,54020,50743
+30712,54437
+30713,13712,61710
+30714,7560,64210,19077
+30715,36393
+30716,81184,45047
+30717,407
+30718,56218,61390,24043
+30719,56979
+30720,57170
+30721,69425,44783
+30722,75427,68612,14992,27008,20218
+30723,31942,82056
+30724,55467
+30725,51302,14448
+30726,1209,6378,20743
+30727,1174,7967
+30728,32491,79465,56535
+30729,67748,20120
+30730,65455
+30731,27452,9765
+30732,28814,58201,37473
+30733,28033,11523
+30734,43931,60033
+30735,61405,76976
+30736,42797,65140
+30737,28330
+30738,70398,46972
+30739,11461,68148,11102,31948
+30740,31871,35036,69185
+30741,53838,49655
+30742,23181
+30743,14877,64949,7533,4153
+30744,47072,50767,51035
+30745,46467,19840,61465,41040,52029
+30746,43520
+30747,34709,67690,50076,35388,35573,1590
+30748,72798,54370
+30749,60631,23891,60340
+30750,63202,15181
+30751,45997
+30752,19988,64689
+30753,65246,30873
+30754,45522,81946,20976,46087
+30755,47634
+30756,37878,74984,7155,15551
+30757,54728,42842
+30758,25512,80161,21161,61580,27488,43203
+30759,26453
+30760,16057
+30761,73728
+30762,68350,42084,24514
+30763,81019,37091,9223,63681
+30764,6859,4467,69874,59576
+30765,73976
+30766,18649,59025
+30767,67919
+30768,26203,46964,71243,42544
+30769,14129,17051
+30770,53387,48614,2385
+30771,572
+30772,67399,468,9288
+30773,64312,14480
+30774,22451
+30775,57942
+30776,47930
+30777,34976
+30778,44356,42428
+30779,42050,32375,45744,52229
+30780,40051,21154,21606,56059
+30781,81365
+30782,24986
+30783,16375,1314,45164,74331
+30784,7960
+30785,4880,25776,66077
+30786,4428
+30787,11919
+30788,11241
+30789,5658,43115,5522,30043
+30790,75634,30392,61051
+30791,30865,65672,27805,72610,14268
+30792,38589,40624,1795
+30793,41858,81141
+30794,51906,21784,73913,54346
+30795,26850,45014,79600,24404,1877,12485
+30796,57762
+30797,13809,68092,17839
+30798,76189,59167,23919
+30799,25119,49471,24560
+30800,58505,43133,39916,5272
+30801,48008
+30802,46466,48169
+30803,70085,12673,22198
+30804,73529,32062
+30805,50257
+30806,15661
+30807,33419,61588,24925,23554
+30808,1089
+30809,41410
+30810,49814,38872
+30811,6062,70878
+30812,38766
+30813,39409,35469,6696,14212,45231
+30814,38852,75523,68766,23833,81001
+30815,6846,58137,77771,37207
+30816,61129
+30817,1181,64334
+30818,39813,800
+30819,73850
+30820,48902
+30821,42724,31967,64585,64170,4688
+30822,9566,70498,41628
+30823,15052,46793,28813
+30824,8520,63372,15458,27523,79040,1948
+30825,10032,24449,1776
+30826,3674,58171,23621,43045
+30827,71421
+30828,42837,77049,9781,26404
+30829,34137,39060,70012
+30830,59717
+30831,65880,6416,73150,52555
+30832,48894,7784,51258
+30833,71748,37777,14161
+30834,60082,73063,20886,7710
+30835,73042,75440,55131,15569,2900
+30836,56928
+30837,55324,16453
+30838,79763
+30839,4263,22015,12697,36770
+30840,63192
+30841,4410,50585,45063
+30842,6649,11564,1459,11294
+30843,63932
+30844,56509,40102,11776,30009
+30845,23764,67020
+30846,5916,37907
+30847,79596
+30848,41443
+30849,42235
+30850,75337,38450,9561,69309
+30851,54277,64394,24790
+30852,62477,58911,78171,19762
+30853,71499,62782,57183,4600,53017
+30854,50930
+30855,18441
+30856,51175
+30857,66193,14445
+30858,1784,1702,40311
+30859,21282,8872,55579,39926,24609
+30860,27234
+30861,15905,40347,37242
+30862,67507
+30863,25323,45962
+30864,4133
+30865,52663,65998,36239
+30866,22952,72662,66904
+30867,2930,54512,62645
+30868,43428
+30869,34669
+30870,13666
+30871,29353,63485,40253,22864,6283
+30872,29815,64517
+30873,13414,53336
+30874,62015,39159,34973
+30875,80993,30915,2956
+30876,74345,75602,45229
+30877,591
+30878,28348
+30879,78430
+30880,75012,73915,65597
+30881,2197
+30882,42923,9142,48068,14150
+30883,64868
+30884,49845,68556,810,65574
+30885,79989,72534,21652,38878
+30886,52810
+30887,34885,28365,35752
+30888,40638,57586,51299,15454
+30889,78816,70791,19223,66926,67157
+30890,7252,3926,37109
+30891,41048
+30892,80383,54505,64234,21949
+30893,55944,63261
+30894,60009
+30895,3030,37053
+30896,11378,81389,8554,3363,3600,58977,67047
+30897,25931
+30898,15549
+30899,16076
+30900,5899,64266,28018
+30901,41185,16662,66845
+30902,21722,18755
+30903,76197
+30904,30251,67584,41315,62483,21682,65592,1791
+30905,68978,24727,34379
+30906,21184
+30907,20529
+30908,79031
+30909,13875
+30910,9474
+30911,52006
+30912,76252
+30913,32796,16233
+30914,70437,21349
+30915,77774,30689,52854
+30916,71229
+30917,67495,63831
+30918,38059
+30919,48731
+30920,76631,34741,54988
+30921,431
+30922,18735,33224,38875
+30923,58302,80410,30657
+30924,39026,15912
+30925,11331,30512,28613,21671
+30926,77390
+30927,43363,20163,32791,13500
+30928,36433,15704
+30929,75618
+30930,13035
+30931,21015,23747
+30932,43045
+30933,12501
+30934,75244,31663
+30935,66141,5007
+30936,75723
+30937,51988,80419,23590,19938,9768,19978
+30938,2639
+30939,79706
+30940,16964,56505,69739,41420
+30941,40928,22372
+30942,57744,29532
+30943,61667
+30944,59301,46253,63796
+30945,14707,24935,58921,49448
+30946,63294,25123,66870,52576,72937,55502
+30947,59784,49392
+30948,41259
+30949,73090,79647,39095,52726,61953
+30950,12625
+30951,71942
+30952,66268,55630
+30953,62867,11466
+30954,39621,28782,9317,81308
+30955,71212
+30956,27090
+30957,63705,61801,77799,7153
+30958,57828
+30959,66407,35251,5297
+30960,14205,39257,37281,62608
+30961,27796,70765,68864,20615,17797,73188
+30962,48841
+30963,8251,72376,67076,31332,7591,9707
+30964,76871
+30965,40373
+30966,38510
+30967,34291,80848,77855,30173,6963,69505
+30968,72225
+30969,22004,35496,27072,27755
+30970,66895,52767
+30971,64975
+30972,61786
+30973,58421,25663,38524,64969,75212
+30974,80549,79496,34823
+30975,81489,14637
+30976,48678,43866,63947,20664
+30977,69087
+30978,51897,56838
+30979,19192,49506,5560,34542
+30980,32422
+30981,66564
+30982,72065
+30983,15155
+30984,17248,28526,13420,30258,73218
+30985,43311,3860,3709,41761
+30986,29717,4908
+30987,65445
+30988,20805
+30989,10614,7945,53656,40883
+30990,63124,70195,76082,47273
+30991,16135
+30992,17290
+30993,15221,75122,37831
+30994,40653
+30995,75455,61750,6314,19837
+30996,76132,10077,23861,47631
+30997,28464
+30998,31996,36339,63576,27691
+30999,71033,17582
+31000,76700,23943,13552,81587
+31001,65328,26154,76513
+31002,1393,1481
+31003,18021,44020,49032
+31004,36749
+31005,365
+31006,39897,26233,37406,3118
+31007,10115
+31008,11936,48562
+31009,49708
+31010,13623,50019,44495
+31011,22438
+31012,65524,3709
+31013,74167,46311,25559
+31014,4406,47066,54005
+31015,76002,40691,52132,63725
+31016,29416,55799,14442
+31017,23056
+31018,73559,81096,18904
+31019,65124,49300,56201
+31020,2988
+31021,66756,50735,7575
+31022,56007,36374
+31023,64581
+31024,36843,78098,68497
+31025,61832,24609
+31026,37447,28613
+31027,62970,65996
+31028,37563,49511
+31029,28382,21438
+31030,47388
+31031,7646
+31032,24956
+31033,73828,78703,5803,37373,3833
+31034,47692,10719
+31035,47416,78512
+31036,57152,41125
+31037,17018
+31038,49393
+31039,45558
+31040,31426
+31041,2844
+31042,45325
+31043,1312,73299
+31044,81915
+31045,4719,5059,44294
+31046,69810
+31047,258
+31048,52773
+31049,80378
+31050,19396,78003
+31051,42233,77966,13708,12251
+31052,80642,79432
+31053,27378,36843,26754
+31054,29993,62949
+31055,17938
+31056,72207
+31057,3252
+31058,7350
+31059,26355,75988,47420
+31060,44886,5165,65792,61687
+31061,36030
+31062,60600,74466
+31063,24764,44523,44978,61782
+31064,52907,3079
+31065,4347
+31066,51667,24312,35667
+31067,22970
+31068,27934
+31069,40945
+31070,55247,13999
+31071,35410,5553
+31072,64720,73889
+31073,73497
+31074,39341,71774
+31075,13009
+31076,28021,41894,74159
+31077,62898,55117,76592,20622,70397
+31078,43648
+31079,19060,1089
+31080,36277,58504
+31081,51043,41177,77065
+31082,77192
+31083,23423,52177,39988,32782,25033,17517,33704
+31084,8485,48328,16982,39120,53880,3884
+31085,53248,12568,39994
+31086,17401,5435,38917,3214
+31087,25531,19200
+31088,63091
+31089,60631,45384,4414
+31090,48934,28216
+31091,19221
+31092,47217,81366,72625
+31093,30979,74024,33101
+31094,35721,67444
+31095,40322,29910,76964
+31096,69370,75993
+31097,45471,44384,20781,48776
+31098,48792
+31099,52377
+31100,77455
+31101,71108
+31102,61436,4386
+31103,59828,3831,74952
+31104,64338
+31105,47714,7268
+31106,13169,46064,80104,59881
+31107,15992
+31108,53240
+31109,35276,27010,65063
+31110,14232,44095,72399
+31111,55649,50919,73903,42037
+31112,48005
+31113,19411
+31114,15320,46020
+31115,24944,6731
+31116,62937
+31117,70195
+31118,54268,49874,35932,45204
+31119,71864,48930,22289
+31120,12635,9312
+31121,7053,45551,43365
+31122,42838,1006,737,45610
+31123,13599,75754,60284
+31124,23924,17028,66719
+31125,12402
+31126,75467
+31127,4896,33489,7164,33357
+31128,31285
+31129,47722,31051,59685
+31130,78208,42751,22183,12430,23276
+31131,19389,38661,6748
+31132,54278
+31133,52145,63991
+31134,38924,42013,60488
+31135,57670
+31136,37620,75247,1726
+31137,44726,22967
+31138,32264,14529
+31139,40796
+31140,1611
+31141,7518,79449,76100
+31142,13960
+31143,64683,79920
+31144,17696
+31145,67490,81232,62990,75727,76048,36052
+31146,70445,58976,49842
+31147,76093,57942,47374,49268
+31148,23027
+31149,15201
+31150,69303
+31151,20556
+31152,2198,39962
+31153,56922
+31154,60276,25715
+31155,2404,43732
+31156,75378
+31157,59899,74394,4864,36008,29155
+31158,35527
+31159,20060,36312,6771,63213
+31160,32946,33518,81344
+31161,17602
+31162,56852,80680,37058
+31163,52196,28610
+31164,48780,49588
+31165,43990
+31166,54101,51931
+31167,69738,55085,65658,21163,47134,79746,53505
+31168,79661,52230,47666,76457,10315,18184
+31169,25025
+31170,21869,7062
+31171,24468,43226
+31172,60802
+31173,73209,32832
+31174,13868,70611,24013
+31175,30015,41388
+31176,54542
+31177,70593
+31178,46476,2525,20842
+31179,45551,43393,61796
+31180,31424,3552,8859,55652
+31181,30489
+31182,58503
+31183,10228,23089
+31184,6160,66195,12702,50230,23512,42458
+31185,10293
+31186,76644,36367
+31187,21187
+31188,9198,1691
+31189,69166,23170
+31190,80836,19436,1311
+31191,80834,61848
+31192,78445
+31193,57119,19652,56005
+31194,36412
+31195,67940,15215
+31196,5218
+31197,45482
+31198,4792,54187,72545
+31199,20815,71386
+31200,72964,59488,51771
+31201,60215,38122
+31202,4172,28311,23085
+31203,20707,37173
+31204,61573
+31205,33329
+31206,58312,30904,46400
+31207,27834,16093,71355
+31208,52128,18243,6094
+31209,4486
+31210,24872,16036
+31211,56955,15265
+31212,45558,41402,40852,61093
+31213,46334
+31214,27831,61436,73492,54142,47773
+31215,52056
+31216,5403
+31217,21472
+31218,10823
+31219,70152,42520
+31220,23337,73248
+31221,45180,22044,7100
+31222,9381,26539,78767,57921
+31223,24154
+31224,61538
+31225,46725,58323
+31226,77953
+31227,4377,54083
+31228,50014,36855,75907,42456,848,20071,50086
+31229,49767,63027,53690
+31230,33478,47216
+31231,70100
+31232,56867
+31233,15755
+31234,70047
+31235,11568,74886,35122
+31236,70021,44180
+31237,58343,76408
+31238,39077,23966
+31239,7920
+31240,44172,44994,75143
+31241,23812
+31242,23290,78318,36536
+31243,58548,38393,49147,22723,33286,11166
+31244,31181
+31245,61754
+31246,54389,28977,67006,50512,529
+31247,66905
+31248,76247,45729,47170
+31249,53766,15854,34255,15354,55597,11141
+31250,1052
+31251,47746
+31252,26029,49850,58325,58172
+31253,19398
+31254,15194,49815
+31255,9979,24472,69665,76952,28605,24624
+31256,64900
+31257,8383,79943,55369,30337,52124
+31258,15148
+31259,78117
+31260,62548
+31261,38470,65433
+31262,8872
+31263,54534,68994,28257
+31264,48421
+31265,76708,57401
+31266,72140,51300,77733,54563,1723
+31267,42953
+31268,68306
+31269,51905,75634,73205,512
+31270,80374,2016
+31271,76894
+31272,52727,29551,35073,68142,72337,79574,20165,20803
+31273,62578,54249,10888,79582,11882,49042,28593
+31274,35078,12903,43877,37463
+31275,75137
+31276,78383,28812,307,9307
+31277,28760,79117
+31278,16347,60613,56718,67807,65512
+31279,66194
+31280,8076,25025,75981,37681
+31281,46108,71134
+31282,57707,37833,41426,48638,69525
+31283,12893,54761,40097
+31284,31648,74495,78362
+31285,79809
+31286,16048,78242,38752,27536
+31287,81908,33701
+31288,17144
+31289,26286
+31290,78709
+31291,35184
+31292,74247,80346,44630
+31293,47307,70516
+31294,58332,75133
+31295,15857,60446,48722,75458
+31296,24225
+31297,5968
+31298,16076
+31299,1679,55521,14161
+31300,59318,6690,28683
+31301,64733,40143,6233
+31302,35131,16250,81177,80793
+31303,33427
+31304,58107,74385,31651
+31305,20162,78386
+31306,80038
+31307,8931,67271,65248,72916
+31308,77884,20682,21850
+31309,2721,26939
+31310,52204
+31311,22798,48674,44184,76872
+31312,15798,7287,46664,15328
+31313,17687
+31314,53116,22757,68834,23624
+31315,66333,4187
+31316,14232,69579,64436
+31317,13095,44264
+31318,61475
+31319,81373
+31320,12343,19879,17144,42442,67905
+31321,12111,29102
+31322,37988,57513,20213
+31323,51450,51688
+31324,23684,30341
+31325,11600,32860
+31326,67498
+31327,54649,66572,43259,70501
+31328,38764,80754,10919
+31329,50468,49970,39371,28825
+31330,69286,21536,63450
+31331,77883
+31332,20453,62284,19553
+31333,39685,2854,22111,64966,51503,27339,16172
+31334,11128,46547,8991
+31335,25347,79927,64978
+31336,24265,24195,2431
+31337,31557,68698,48027,36263,68697,79110
+31338,28651
+31339,11053
+31340,69543,66590,40153,7197,75401
+31341,26449,52541,81766,68059,1044,28492
+31342,79783
+31343,44449,16673,78139
+31344,15707,61409
+31345,57953
+31346,59374
+31347,32307,5669
+31348,79835
+31349,34306,58343,12589
+31350,56293,56715,24974
+31351,50133,68699
+31352,51078,51120
+31353,53384,73371
+31354,62376,67208
+31355,10407,1155,33744,34798
+31356,2920,69151,69972
+31357,65827
+31358,56514,78435
+31359,78212
+31360,10955
+31361,47655,42747,50720,71521,57336
+31362,61242
+31363,58,40103
+31364,48481
+31365,17199,41191,36539
+31366,60371
+31367,7463
+31368,31812,73281,78553,55045
+31369,36680,14698,15425
+31370,32354,20769
+31371,65456
+31372,42562
+31373,76493,72307,73504,80970
+31374,20069,71113,8149,81383,57958
+31375,34042,34621,63455
+31376,33059,32769,2532
+31377,63403,45023,61133,16960
+31378,25376,30533
+31379,43849,79666
+31380,66289
+31381,64059,17457,43783
+31382,75317,80233
+31383,46854,54992,1349
+31384,51961,41708,3787
+31385,81010
+31386,43508,54088
+31387,32606
+31388,41391,47072,72341,5579,20741
+31389,61620
+31390,56175,65883,55455,40146
+31391,59637
+31392,50991,66466,12012,24419
+31393,40709,56178
+31394,6233,30048,47852,8355
+31395,25255,25825,21140
+31396,63620
+31397,28226,71975
+31398,52997,67216,68078
+31399,4036,25768,75491,81721
+31400,2812,20000,71338
+31401,73427,59370
+31402,54101,14908
+31403,68367
+31404,25450,22258
+31405,57194,5162,27435
+31406,17631,30985
+31407,2243,11932,52412,42479,22127,4189,72048
+31408,54842
+31409,34204
+31410,7709,79574
+31411,46498
+31412,9092
+31413,41088,56433,1083,19490
+31414,39251,21875,28040,63984,47539
+31415,46987,68269,25453
+31416,71161,75063,29766
+31417,65088,34616
+31418,12240
+31419,68471
+31420,2278,57370,50551
+31421,69985,13736,75326
+31422,22472,39230,57038,49195,78362,39950
+31423,38163,54231
+31424,73738
+31425,8776
+31426,79090
+31427,9505,69398,45547,6074
+31428,19645,20953,31817,39131
+31429,54491
+31430,46713,42120,66622,17830,37384
+31431,76394,79367
+31432,71892,78845
+31433,62517,77828,43302
+31434,33594,69311
+31435,63331
+31436,76744
+31437,43082,42973,79783
+31438,58826,60475
+31439,35305,6219,8038,77704,25373
+31440,64214,52093,17769
+31441,81094,31472,64186,80387,51426
+31442,12536,41364
+31443,59995,21074,55311
+31444,76565
+31445,17625,67591
+31446,12329,59136,46748
+31447,70955,36938,9380,61537
+31448,71749,32291
+31449,62785,51271
+31450,54756
+31451,41364,8316,29336
+31452,72614,45196
+31453,26349,41083,35048,22828
+31454,13401,43349
+31455,41813,25911,65123,14054
+31456,77194,35264,36198,54567,1180
+31457,55222,65651,4680
+31458,56221
+31459,67594
+31460,73218,76894
+31461,78973,17643,34298,17445,14415
+31462,75688,66370,30338,19689,24158
+31463,6942,52606,11023
+31464,32957
+31465,76782,64509,55902
+31466,38913,41998,20653,69766
+31467,66589,45066
+31468,32747
+31469,8292
+31470,33267
+31471,70503,31830
+31472,58950
+31473,68300
+31474,54503,2014
+31475,36419
+31476,39980,53224
+31477,70713,6020
+31478,35547
+31479,2565,15749,57356
+31480,46179,69063,57686
+31481,5757,77279,69912
+31482,17850,79879
+31483,71905,77555,78840,74138,66606,28397
+31484,12544
+31485,52364
+31486,81028,6230
+31487,7774
+31488,34677,41364
+31489,44463,24466
+31490,72562,30332,66941
+31491,32167
+31492,72018,62253,50005
+31493,23288,12864,74564
+31494,9603,65095
+31495,42484,27545,10274
+31496,37725,28636,10509
+31497,79228,18431,75913
+31498,26161,64229,16619
+31499,66993
+31500,49584
+31501,34232
+31502,62558
+31503,75202,58303,5427
+31504,70017
+31505,72275,31120,15704,20178,5899,55963
+31506,65349
+31507,77356,38733
+31508,53538
+31509,73888
+31510,48831,22086,43006,61423,12607,48116
+31511,10788
+31512,5415,60634,42749,60023,14865
+31513,55679,49322,73226
+31514,31191,7822,74893
+31515,25574
+31516,33992
+31517,57647
+31518,56346
+31519,6847
+31520,23506,54587
+31521,1498,45020,8903,44743,21833,18006
+31522,71535,33764
+31523,65505,73633,50323,6445,29905
+31524,11273
+31525,57353,66155,64117
+31526,3538,62812
+31527,35719,77196,58846,19082
+31528,62687
+31529,35556
+31530,20756
+31531,57763,59361,71033
+31532,53245
+31533,19082,47614
+31534,73291,67679
+31535,52392
+31536,77089
+31537,22914
+31538,79825,45741
+31539,66320
+31540,42463,72198,70643,2749
+31541,70422
+31542,71109
+31543,76625
+31544,16276,57449,24286,31823,71771,24033,72811
+31545,80011,70884,65364
+31546,12457,18606
+31547,63923
+31548,62500
+31549,56285,35594,49291
+31550,71035,69735,56348,14988
+31551,81029,68313
+31552,53326,24686
+31553,19821,9041
+31554,70090
+31555,67036,12288,64994
+31556,28313,40186
+31557,43569,60319,4173,70016,19556,5447
+31558,79988,64253,39312,74653,51917
+31559,71558,17031
+31560,3610,70063,4602,64355,75599
+31561,68483
+31562,43206,48148,81067
+31563,35331
+31564,80850,76306,67933
+31565,8650,15937,78102,62598
+31566,71110,73824
+31567,23987,66265,68850,59419
+31568,75484,31102,4133,75446
+31569,79216
+31570,75477,18514
+31571,6660,7500
+31572,1489,55490,75455
+31573,36466
+31574,61141
+31575,66619,64683
+31576,49715,51071,34467,43243,10720,63353,38365
+31577,45092,21751
+31578,48936
+31579,72077
+31580,33579,46037,17164,27702,52041
+31581,30275,76299,21425
+31582,29886
+31583,74753
+31584,9576,26613,74232,19537
+31585,72976,25015,76746
+31586,65448,47313
+31587,38288,54236,55095,18852
+31588,78526,16963,6069
+31589,47012,25349,68809
+31590,62823
+31591,70311,74747
+31592,71092
+31593,42646
+31594,22295
+31595,968,54719,10383,59760
+31596,76171,61983,54766
+31597,7202,22532,77473
+31598,5218
+31599,67768
+31600,32659,5753,13322
+31601,68825,51056,51452,57360
+31602,60222,42769
+31603,52170
+31604,49617,69962,30522,515,6437,1420,4298,32278
+31605,71436,45893,13920,52689,36455,10419,20525
+31606,6376,13398
+31607,5277
+31608,47463
+31609,49590
+31610,10182,11751
+31611,15336,54276
+31612,53102,8913,78912,74647,14554,47585
+31613,52745,51991,19303
+31614,36092
+31615,57647,37086
+31616,58470,61034,64860
+31617,39427,69675
+31618,61307,51001
+31619,13396,24053
+31620,3739
+31621,75532,25956,27624,19297
+31622,78908,15881,24878
+31623,37408
+31624,3280
+31625,12187
+31626,51810
+31627,15591,255
+31628,37736,2163,16580,47042,40152
+31629,22028,46380
+31630,28132
+31631,44737,41373
+31632,56503,57841,29890
+31633,37459,80269
+31634,8698,27522
+31635,24852
+31636,37685,74311,4039,11247,55446
+31637,34408,21938,45018
+31638,35993,20768
+31639,7864,48232,38415,71300
+31640,77538
+31641,15224
+31642,64119
+31643,65210
+31644,22563,48514
+31645,56192,20955
+31646,35478,49646,29532
+31647,15267,20529
+31648,38275
+31649,57625,47878,32943
+31650,62917,64755,78955
+31651,8899
+31652,17810,17949,66091,25865
+31653,70316
+31654,12713,78709,48982
+31655,27864
+31656,22838,61284
+31657,61788,73151
+31658,17893,18007,37831,64356,61504
+31659,257,64148,55015,68903,68683
+31660,21241,38452
+31661,73344
+31662,57192
+31663,61898
+31664,38613,13023,29662,49485
+31665,33937
+31666,80874,47274
+31667,26689,35727
+31668,13404,78394,62314,6213
+31669,46885,11059,76481
+31670,11058,18573,32955,37894
+31671,46237,55454
+31672,77819,62350
+31673,59151,35539
+31674,54525,59144,19628,32371,2971
+31675,48742
+31676,29356,2663,57986,62289
+31677,68524,48766,13920,67018
+31678,42189,34066,37467,32417
+31679,18308,46994,2091,37351,39412
+31680,15812,35738,53982,27273,20872
+31681,59289,65454
+31682,47402
+31683,25671,8162,15039,66704,5621,64209,10668
+31684,32019
+31685,4364,63224
+31686,9804,47610,1294,57270
+31687,73345,63961
+31688,1055,78521
+31689,73402
+31690,53628,66620,56999
+31691,69850
+31692,63237,51374,15829
+31693,35926,60870
+31694,10034,9144,15076
+31695,52937,18935,33332,44993
+31696,29186,78158
+31697,16075
+31698,51315
+31699,12083
+31700,62450
+31701,23948,64213,47427
+31702,68685,17962,18686,10608,5865
+31703,5709,7698,60833,74370
+31704,67704,49032,54665
+31705,66480
+31706,26518,466
+31707,73529
+31708,19439
+31709,38480
+31710,47501,54101,79138
+31711,56557,78952,67586
+31712,52348,74489,13813
+31713,76294,72794
+31714,80162,12895,53857,77953,54900
+31715,2032
+31716,44024,46838
+31717,41352
+31718,56729
+31719,35090
+31720,11684,9161,30081,65974
+31721,57744,60025,67823
+31722,42822
+31723,9869,34824,13826
+31724,34935
+31725,22439,80683,7896
+31726,65792
+31727,72111,46732,22211,6378,20035
+31728,50057,28338,59923,46593,41439,48047
+31729,20393
+31730,76282
+31731,69064
+31732,49399,17791,78146,59498,81320
+31733,75862
+31734,44307,58107,15111,66224
+31735,75093,74401,71014,56731,46425,24509
+31736,75312,329,45201,8885
+31737,29892,9918
+31738,28844,75150
+31739,13138
+31740,31902,46368,37064,26931
+31741,74962,26865
+31742,74441,58779
+31743,46361,62311,71293
+31744,22511,25018,62910,47654
+31745,1504
+31746,45136
+31747,71069
+31748,45375,30038,28616,63967,38120
+31749,51257,46271
+31750,59845,21200,56658,68881,54454,29377,78674,24131
+31751,22524
+31752,75325,56358,20647
+31753,16655,31221,58769,37143
+31754,13680,52119,75122
+31755,40460
+31756,68564,23711
+31757,2838,77646,63241,435,4543
+31758,57636
+31759,43224,30486,46107
+31760,5935
+31761,45971,61427
+31762,20453
+31763,13778
+31764,29129
+31765,75263,81376,81639,24745
+31766,33107,67128,19521,48580
+31767,52596,11878
+31768,8500,60767,37741,37817
+31769,22399
+31770,52692
+31771,59201,1971
+31772,32266,20686,19284
+31773,59376,24974,31664
+31774,41944,70368
+31775,19412,77214
+31776,73316
+31777,80580,75448,50948,7403,78174,42158
+31778,26114,40281,20241
+31779,42987
+31780,10142
+31781,14720,79013,67720,63009
+31782,58704,30489,65103
+31783,50743
+31784,61490,34641
+31785,11219,15360
+31786,72152,11943
+31787,8259
+31788,49447,2062,3668,11413
+31789,25519,38276
+31790,25200
+31791,22621
+31792,12224,57781
+31793,68856,39127,4843,74741,81705,71952,37140,49737
+31794,14553,25851,21083,40430,65459,55533
+31795,75389
+31796,38677,15107,2208
+31797,16154
+31798,74779
+31799,30356
+31800,45091
+31801,22147,53518,76208,11776,51655,74098
+31802,20564,76316
+31803,28695,25633,17403
+31804,17348,3107,78381
+31805,51956,25973,43196,45513,75996
+31806,712,77482,1773
+31807,5356
+31808,17235,70204
+31809,52169
+31810,5569,78980
+31811,36166
+31812,70848
+31813,67047,72678,14587
+31814,51193,23635,4704
+31815,22702,80716,76021,58301,64783
+31816,80843,76070,30554,24905,12091,76590
+31817,67932,71269,35852,51912
+31818,60382
+31819,14924,35180,76061
+31820,22736,79751,58506
+31821,72020,28813,81065
+31822,30194
+31823,46312
+31824,10434,66190
+31825,26930
+31826,54022,45725,12229
+31827,17362,76097
+31828,23106,33239,48174,22744
+31829,4387,28363,21000
+31830,53574,73226,74569
+31831,26585,19413,64339
+31832,6635
+31833,23972
+31834,63261
+31835,31147,68026,67292
+31836,72550
+31837,51278,50947,81143,29323
+31838,12866,80957,41537,70249
+31839,64451,27134,61372
+31840,79900,35126,37468
+31841,32517,48985,744
+31842,52035,43974,71599,34219,9615
+31843,47785,33384,74047,10699
+31844,74757
+31845,34386,81450
+31846,42876,42816
+31847,72185,80415,16107
+31848,29240,54809,73188,4042
+31849,8976,31204,36809,4876,42649
+31850,17907
+31851,8931,11573
+31852,4447,41421,63711
+31853,21637,2021,47010
+31854,53294,41058
+31855,9130
+31856,17727,47934
+31857,46943
+31858,57549
+31859,26430
+31860,81521,49939,29727,935,80398,37220
+31861,10891,42673,68090,10491,43351,31853
+31862,7216,50663
+31863,28239,21818
+31864,49411,48875
+31865,33308
+31866,32704,11032
+31867,1934,73443,46703,54200,38167
+31868,20505
+31869,44994
+31870,35462
+31871,60775,80072,58787,62399
+31872,55358,67672,23779
+31873,16409,63231,11670,74498
+31874,835,1924,55691
+31875,33574,27173
+31876,15204
+31877,81804,45188,16054
+31878,19459
+31879,62149,80699,19367,69078,59439,26150
+31880,79709,24643,25366
+31881,421,42146,35396,5979
+31882,29745,35434,22611,43128
+31883,45324
+31884,72786,21438
+31885,20499
+31886,3104,1592
+31887,20132
+31888,10980,62739,81829,2032
+31889,38857,67625
+31890,68756
+31891,36898,79739,19612
+31892,67466,60364,62626,43186
+31893,67773
+31894,69144
+31895,14819,6945
+31896,48413,46900,77421
+31897,54719,44654
+31898,2537,32967
+31899,26846,31285
+31900,43495,19638
+31901,77675,33683,24483
+31902,2932
+31903,8768,23088,48913
+31904,66189,34650
+31905,13056
+31906,9234,4398,16082
+31907,19188,79769
+31908,51771,14150,52755,71142
+31909,42875,69850,21180,14882
+31910,23702
+31911,57042
+31912,59961,34745,674,78603
+31913,50771,13430,3030,72658
+31914,10863,54938,33139,20867
+31915,8677
+31916,9295,10921
+31917,31871
+31918,69508
+31919,80446,8146,59676,72302,21646,54875
+31920,23258
+31921,60404,69589
+31922,62528,15197
+31923,77955,6866,39717,10694,7679,52986
+31924,77864,63965
+31925,5008,46899
+31926,52261
+31927,37872,73497,25689,72922,12126
+31928,8098,46808,76800,40832,55570
+31929,52113,5621,17194,49063,56922,78318
+31930,14106,51804,26712,35359
+31931,60360,62601,5306,48946,30563
+31932,65087,54008
+31933,31306,32974
+31934,23393,78976,1411,36501,3402,66190
+31935,72606
+31936,32904
+31937,20926,51666,60367,57862
+31938,78790,32440,50845
+31939,71791,8976
+31940,57414
+31941,53493,61640
+31942,66241
+31943,50759
+31944,2972,24165
+31945,5293
+31946,76800,1628
+31947,8917,17358,24983
+31948,63324
+31949,72438,66854,19967,49837
+31950,56382
+31951,5514
+31952,65846
+31953,18605,19439
+31954,24428,54804,51177,53099,48006,55717
+31955,63178,43324
+31956,20590,31421
+31957,47383,9156
+31958,30886,58881
+31959,6194,41344,75095
+31960,68907,38715
+31961,21911
+31962,31771,81663
+31963,38998,53837,49101,45890
+31964,62778
+31965,79162,49354,76074
+31966,75854,37228,37420
+31967,77976
+31968,73836,39446,45199
+31969,79036,47472,59458
+31970,47463
+31971,27234,17499,893
+31972,66110,35903,77796,27772,70083,45200
+31973,41161,72947
+31974,74074
+31975,33917,1807,80423,28733,40605
+31976,73957
+31977,2704
+31978,48833,44805
+31979,46858,15002,3369,58409
+31980,46900
+31981,70942,11254,20302
+31982,6734,74099
+31983,67774
+31984,13064,58980,67171,54813
+31985,78237,19710
+31986,38741
+31987,12874,75380,24041,56602
+31988,45123,3709
+31989,2925
+31990,28138,57648,65801,48110
+31991,7878,41345,51249
+31992,1146,34516,20976
+31993,69450,799
+31994,33518,53176,2829,74489,37260,34985,24407
+31995,72809,57317,79987
+31996,23220,61042
+31997,34353,22428,55634
+31998,63659,9900,2153,14868,32043,40655
+31999,61048
+32000,53670,67869,20192
+32001,45201,80909,79367
+32002,2334,62747,2080
+32003,51315
+32004,34990
+32005,78373,66490,78887
+32006,46022,56421,81598
+32007,5253,49599,59968
+32008,31603,70497,29836,58617,11665
+32009,5648,31398,76890
+32010,24795,72631,36339,27177
+32011,332,78655
+32012,54201,5744
+32013,32949,46731,17995,62327,39362
+32014,78939,66705,32062
+32015,80577
+32016,55848,24744,23983
+32017,81723,40741
+32018,79230
+32019,55819
+32020,50226
+32021,73671,17967,53045
+32022,27788,47999,39036,56169
+32023,9101,73470
+32024,76719,36094
+32025,30224,49780,67555,8640
+32026,5833,19167
+32027,44560,7240
+32028,23737
+32029,23195,38163
+32030,63240
+32031,4758,13215,56128
+32032,69489,58017,14929,73576
+32033,38822,43534,25570
+32034,66713,8984
+32035,28802,46901
+32036,57099
+32037,55368
+32038,64030,45909
+32039,19370,25528,2492
+32040,78018,28695
+32041,36323
+32042,79927,50845
+32043,76762,44251,22658
+32044,73579
+32045,75023,58460,68893
+32046,48372
+32047,80578,76366,56119,26701,44905,24031,29428
+32048,65184
+32049,43617,64430,75802
+32050,48167,5815,5882
+32051,73919,74355
+32052,38404,74519,3007,80961,21202
+32053,55085
+32054,16384,18505,8322
+32055,27292,60707
+32056,65073
+32057,7761
+32058,37303
+32059,67988,20734,27613,984
+32060,36479,74853,18220,60059
+32061,19423,73370
+32062,71964
+32063,8309,8855,20997,57038
+32064,43694,27081
+32065,79428
+32066,65264,7795
+32067,16858,69983,8080,80234
+32068,54037
+32069,2511,72211,6575
+32070,20652
+32071,14894
+32072,638
+32073,77892,47880
+32074,77477
+32075,74271,73440
+32076,5337,51452
+32077,76374,36466
+32078,16311
+32079,72583,15381,49616,54188,23337,60141
+32080,5740
+32081,39432,46758,75579,26514,70091
+32082,56180,61250
+32083,34339,33013,42802,53016
+32084,16139,65226
+32085,60016,65226,75177
+32086,14002,46106,32660,70322
+32087,67073
+32088,4447,78691,81848
+32089,69353,73132
+32090,7214,11796
+32091,29038
+32092,5725
+32093,15514,36842,55584
+32094,33059,18644,34592,50213
+32095,41032,35263
+32096,3948
+32097,9121,72744,44630,31034,47253
+32098,37032
+32099,37303,13205,60255,57026
+32100,16180,36979,46387,36251
+32101,19371
+32102,70303,57965
+32103,81209,76031,80604,34951
+32104,20302,20753
+32105,65088
+32106,482,70660
+32107,40204
+32108,41404,6208
+32109,80818
+32110,360,51367,36346,77667
+32111,42557,66358
+32112,28622,77194,80218
+32113,70848
+32114,59872,22495,69063
+32115,15965,17181,29763
+32116,847,74394,78980,65300
+32117,1312,79815,63690
+32118,45917,36945
+32119,52397,38459
+32120,15514,22651
+32121,34321,76253,70146,30990
+32122,26995,27351,26502,69864
+32123,21860
+32124,48652,52070,3650
+32125,81367
+32126,1224,52167,50236,24416
+32127,24946,50499,51770,4574
+32128,63315
+32129,9350
+32130,54130
+32131,32242,18063,60370
+32132,36361
+32133,13894,16971,77252
+32134,16108,16076,9087
+32135,32479
+32136,74806,13073
+32137,75401
+32138,3767,45445,70806
+32139,33297
+32140,60198,21740,17516
+32141,17625,54801,46982
+32142,32841,33803,11642
+32143,33383
+32144,57056,50107,20875
+32145,69041
+32146,19057,68687,75708,54262
+32147,38626
+32148,79857
+32149,431,66460,21828
+32150,64338,81138,28380
+32151,45236,25550
+32152,6335,36758
+32153,74753,55104
+32154,66020,12385,32079,69573
+32155,58858
+32156,18973
+32157,31549,42653
+32158,69135
+32159,48685,70850
+32160,51379
+32161,64366,65486
+32162,17092,51767,21580
+32163,43907,34837,42478,20879
+32164,48435
+32165,53687,37620,72155,79437
+32166,41761
+32167,57466
+32168,78617,76184,47620,73691,26244,68515,4628
+32169,18730,20059,17049,66856
+32170,37657,44981
+32171,8068
+32172,3157,22707,22106,28054
+32173,27864
+32174,7390,6915,56460
+32175,38923,39263
+32176,45417,26987,20778
+32177,9868,2207,66044,78445
+32178,7375,60419,60078
+32179,77738,62843,21769
+32180,37656,9413
+32181,54282,80491,27433,20727
+32182,3295
+32183,23974,3721,50720,7875,8479
+32184,29305,23551,28185,79045,26114
+32185,46059,61056
+32186,79362
+32187,14391,22505,43564
+32188,27155,75691,31197,13041
+32189,50476
+32190,43419,27540,64210,52379,81159
+32191,61423,24484,40558,31421,13702,14685
+32192,42791,17880,34525,19878
+32193,59532
+32194,16087,66134
+32195,61437
+32196,71137,31868
+32197,56352
+32198,42512,39330
+32199,81512,69643
+32200,61069
+32201,2557,54640
+32202,6559,77735,81833
+32203,47595,71975
+32204,38703
+32205,26682,39814,78094,62370,14289,18305
+32206,44334,44691,42014,13632,1489
+32207,48327
+32208,48757,72382,32132,27821
+32209,65588,20639,26169
+32210,74704
+32211,18357,22052,63023
+32212,5944
+32213,17175
+32214,55530
+32215,16112
+32216,17983,56118
+32217,82173
+32218,25853,21152
+32219,18263
+32220,52313,19631
+32221,38641
+32222,30876,44724,78479
+32223,73912,70721,35880,61895,35197
+32224,3332,68450
+32225,15026,53543,52973,73270
+32226,71346
+32227,72807
+32228,2990,55216,34933,33571,18683
+32229,7602,19960,22807,37865,56071,27274
+32230,32806,63016,19007
+32231,843
+32232,54557,24446,19284
+32233,69914,56595,42816,7157
+32234,76114,64469,44051,18368,14552
+32235,47121,29749,70641,50385,76625
+32236,28618,10524,32227
+32237,45377,68922
+32238,36395
+32239,69188,3001,69670,24031
+32240,498
+32241,3829
+32242,13406,69643
+32243,65029,16030
+32244,12736
+32245,28651
+32246,8695
+32247,14593
+32248,55301,51662,36931
+32249,36029,57752
+32250,67705
+32251,8983,35625,71818,31008
+32252,35805,40505
+32253,71301,75851
+32254,66280
+32255,37141
+32256,54164
+32257,74435
+32258,46725,74979,45901
+32259,29067,5691
+32260,63062,58577,49993
+32261,70938
+32262,53135,81740
+32263,44096,77669
+32264,34934,69679
+32265,51959,4344,63025,46271,72687
+32266,54790
+32267,52975,64309
+32268,51128,2416,71516
+32269,14552,36248,6222
+32270,39345,27190,57654,7408
+32271,30893,51393,24861
+32272,8829,54414
+32273,77500,21454
+32274,43053,9725
+32275,6688,22965,79832
+32276,59305
+32277,68473,67510,22770
+32278,62094,18695
+32279,73658,38740,22237
+32280,79857
+32281,63493,25932,15142
+32282,29669
+32283,38551,65625,11763,13831,53268,68933
+32284,79662,65975,2711,81995,61990
+32285,44843,76688,23597
+32286,74564,3001,12484,11091,5011,3408,64346
+32287,57733
+32288,4907,24816,73741,41698,21046,34133,56636
+32289,75534,11186
+32290,53041,74016
+32291,18665
+32292,70866,15611,10565,31296,26731,34834,60766,39811,75921
+32293,68756,63736,67575
+32294,59357,26782,6637,31733
+32295,66617,48401
+32296,12457,23639
+32297,61675,69981,6918
+32298,47422
+32299,16427,3611
+32300,39110,44764
+32301,14775,45003,59159
+32302,66433,40139,42901,23495,18184
+32303,15572,15800
+32304,60538,25150
+32305,55241,53388
+32306,11477,45587,48037
+32307,43804
+32308,44214,62088,65105,17421
+32309,24290
+32310,12475,60890
+32311,74343,51782
+32312,532,25234,10477
+32313,25749,75297
+32314,68281,47048,37781,71598,10807,54193
+32315,55742,61767,29758
+32316,24416,52187,35451,74784
+32317,60901
+32318,49431
+32319,73886
+32320,5588,69043,5883,74254
+32321,52276,75789
+32322,35061,63045,33995
+32323,57643
+32324,56843,47123,4369
+32325,45427,79581
+32326,42545,72438,18955
+32327,82168,74104,30848
+32328,41316,43587,11626,7252
+32329,15902,57061,34020,30136
+32330,66316
+32331,53838,10695,9450
+32332,66416,5039
+32333,34064,5540,45035,49936,57815,13182
+32334,79241,15373,15032
+32335,43750
+32336,36649
+32337,39802,52136,17625
+32338,48421
+32339,45458,15473,28619,69524
+32340,69340,63012
+32341,62981,72923
+32342,24661,63967
+32343,21329,73629
+32344,45799,47769,33999
+32345,54504,9357,63423
+32346,41190,12614
+32347,37315
+32348,19899,58676,18098
+32349,2753,37726
+32350,67540,66030
+32351,2241,23054,38751
+32352,79410,44721,41676,72505,33969,36369
+32353,23530,61594,36809,38918
+32354,67305
+32355,24998
+32356,8735,25755,65395
+32357,68224,63701
+32358,70607,133,54119
+32359,54434,66501
+32360,30931,82006,3956,1094,31633
+32361,59163,33894
+32362,31383
+32363,39668,57762
+32364,12930,34464,50192
+32365,70317,67285
+32366,5514,34951,15492,71801
+32367,24813,22386
+32368,72614
+32369,42276
+32370,73203,52800,16408
+32371,31182
+32372,75187,68652
+32373,25934,10661
+32374,60910
+32375,42796
+32376,20161,73651,73045
+32377,22476,50679,71705
+32378,41109,6594,67173
+32379,3729,14826
+32380,33939,27583,17806
+32381,59481,4862,78735
+32382,67241,43334
+32383,36416,36750
+32384,43146
+32385,23698
+32386,9649
+32387,610
+32388,16763
+32389,69694,39379,63225,5888
+32390,7153,35907,74130,74516,68808
+32391,65382,47701
+32392,35514
+32393,79826
+32394,32952,26745,74020,63684
+32395,76355,32684,11099
+32396,48761
+32397,51430
+32398,23843,47844,47285,31045
+32399,46251,57117,25240
+32400,50213,47318,22135,26883
+32401,19369
+32402,1815
+32403,80331
+32404,59932,24211,11164,25065,17851,67163
+32405,39780,29654,35204,16056
+32406,19824,67996
+32407,59856,41809
+32408,28348,41980,41332
+32409,48201
+32410,9572,65839,6498,57983,19718,46032
+32411,81121
+32412,13715,79914,76613,10105
+32413,26469,26976
+32414,14107,48355,35871
+32415,8920,40146
+32416,9204,41293,52593,39631
+32417,26672
+32418,55436,79042,64866,670,9363
+32419,4319
+32420,40418
+32421,7663
+32422,22199
+32423,73418
+32424,25157,67908,649,60653
+32425,26044
+32426,75343,64468
+32427,27137,25353
+32428,78360
+32429,27234
+32430,74369,68287
+32431,36586,35729,34127,16730
+32432,34317,54000
+32433,49470,79131
+32434,49767,64092
+32435,71688
+32436,63193,29971,34228
+32437,44812
+32438,4620
+32439,75328,12526
+32440,71033
+32441,21911
+32442,79130,31082,19356,41102
+32443,76674,16563,70129
+32444,33504,43922
+32445,41324
+32446,27482,43062,18971,3167
+32447,22948,50133
+32448,53579
+32449,64974,44416
+32450,61927,5437,48501,6925,57546,13633,8128,72406
+32451,51316,52433
+32452,66200,25294,11074,79581
+32453,33480,78020
+32454,25235,34952,73399,43713
+32455,40265,71976,39360,32068,81070
+32456,32330
+32457,68723,4547,28358
+32458,34913,10830
+32459,43926
+32460,25775,10701,75233,41289,81349
+32461,75146,77577,2880
+32462,54539,67846,25254,76231,41488,81397,12339,37295,80700,20216,171
+32463,32263,18409,57684
+32464,22138,66008
+32465,28285,26455,50546
+32466,25096,40199,43466,74847
+32467,8872
+32468,6479
+32469,49059,79840,80497,25958
+32470,68377,57869,24463,78107,72939,76446,77997
+32471,64260
+32472,23056
+32473,79597,78959,81692
+32474,66298,40347,35300,56460
+32475,14567,3333
+32476,13952,65320
+32477,8223
+32478,65444,47384
+32479,67594
+32480,11583,50448,19452,42780
+32481,30356
+32482,25889,50836,26723,22974,34550
+32483,3994
+32484,19825,81840
+32485,33670,21833,21865
+32486,77716
+32487,17351,63888,54316,53104,77124
+32488,64676
+32489,10114,58659
+32490,18187
+32491,30081
+32492,80759,63026
+32493,80451,18696,28480,58041
+32494,1783,71899
+32495,80577,64786,48676
+32496,56381,58779,44031,28955
+32497,30270,47913,74428,32500
+32498,64661,34644
+32499,46599,47941,42511,72495
+32500,46473
+32501,68117,79852,35263,61320
+32502,53489,55063,38946,64536,19826,8649,34367,70531
+32503,48746,58691
+32504,21993,2823
+32505,56576,19431
+32506,48970,50613
+32507,76309,76502,16947,39066
+32508,4156,13618
+32509,21373,62794,29211,15510
+32510,79053
+32511,22621
+32512,63158,1221,59367
+32513,60396,25235,365,13465
+32514,25242,79284,54126
+32515,81713,15077,11613
+32516,25991,79512
+32517,77537
+32518,27528,39463,18319,38770
+32519,20611,40295,39245
+32520,56683,57270,40280
+32521,53958
+32522,44048
+32523,55878
+32524,49011,69255,60569
+32525,13718
+32526,62461
+32527,80349,25453,29673
+32528,54392,26736
+32529,13297,16565,43970,14703,12585
+32530,78209,9698,76361
+32531,9558,31996,57200
+32532,34683
+32533,54565,43085,17057
+32534,66578,39459,8834,36210,69541,55663
+32535,32658,80005,73654
+32536,3140
+32537,1821,12391
+32538,18899,58348
+32539,17505,21664,8741,43615,10277
+32540,46529
+32541,41792,48435
+32542,22459,49251,65823
+32543,4664,34298,12770,41740,42013,21283,12705,32421
+32544,44196
+32545,66905,42061
+32546,22378,30347
+32547,23725
+32548,81934
+32549,55977,61736,31999,447,66530
+32550,75762,74932,79647
+32551,27153,76841
+32552,48009,70389,12877
+32553,32882,53515,76447
+32554,46082,47658
+32555,31643
+32556,20804
+32557,36595
+32558,77271
+32559,57084,77883,77976,72894
+32560,15458,73151
+32561,22544,43336,36033,51282
+32562,69502,31890
+32563,64374
+32564,72931,80070,39745
+32565,37228,47941
+32566,30471,45479,64556
+32567,15455,29760,50062
+32568,64245
+32569,46002
+32570,73025,8600,16806
+32571,51885
+32572,28775,37237,47476
+32573,30392,47194,12744
+32574,69425,24168
+32575,68877,36911,44817
+32576,58012,37716,62182,16216
+32577,38535,45094,65727
+32578,72003
+32579,27689,34544
+32580,35122
+32581,8728
+32582,59201
+32583,70611
+32584,71076,74563
+32585,37332,34718,58678
+32586,40796
+32587,79917
+32588,27019,15122,67482
+32589,2708,2689
+32590,34759
+32591,48971,80415
+32592,52691
+32593,26563,22710
+32594,72416
+32595,33293,21201,40411,11574,50731,38450
+32596,9734,26595
+32597,4782,82045
+32598,16665,73921,53670,17701,77431,43507
+32599,59217,55841,11752,45729,4157
+32600,79733,74760
+32601,61528,41824,80171,31843
+32602,18070,24702,9005,78519
+32603,16638,44615,6014,49721
+32604,8048
+32605,47903,27579,52603,57715
+32606,62167
+32607,55352,10455,81210,1781,17516
+32608,66511,35086
+32609,74612,20556,44296,24936
+32610,46752,35858,5102
+32611,24888,60816,11401
+32612,30983,75748
+32613,62918,1270
+32614,24477
+32615,28073
+32616,52454,50745
+32617,6230,21459
+32618,30044
+32619,24394,39388,21150,14098,64016
+32620,54604
+32621,8752
+32622,38623,11849,75881,42922,42007
+32623,24644,18914
+32624,11791,30406
+32625,21191
+32626,40402,76769,57480,40444
+32627,1387,17466
+32628,64795,11941
+32629,22944
+32630,35478,56657
+32631,54167,63171,66752,19491
+32632,34043,7977,58947
+32633,35619,72045,10588
+32634,70533,20761
+32635,76824,43935,5484
+32636,64237,74099,24459
+32637,31884,70691
+32638,194
+32639,52995
+32640,37646,70692
+32641,43314,47089,67489
+32642,45940
+32643,35974,66277,44025
+32644,33850,81007
+32645,70145,75323,16817,7877
+32646,35515
+32647,8554,223,13270,9887,11539,40526
+32648,13680,40047
+32649,81783,10243,53156
+32650,44857
+32651,46879
+32652,22209,36603
+32653,49719
+32654,22453,34676,35854
+32655,70802,63485,2528,13150
+32656,69969,19350
+32657,17155
+32658,32216
+32659,70888
+32660,22059,6932
+32661,8799,37463,48714
+32662,74987
+32663,31710,62192
+32664,30099,61453,77477
+32665,63380
+32666,73360,17646
+32667,36052,35976
+32668,13857
+32669,35681,32454
+32670,75025,79709
+32671,31588,9773,66146,37173,34165
+32672,9745,78043
+32673,74916,31974
+32674,62571,2309,48945
+32675,14134,68303
+32676,76525
+32677,36833,29058,51736
+32678,5689,75585
+32679,51120
+32680,53351,6839,5830,78322
+32681,2826,56197,34304
+32682,31741,28116
+32683,34705,44419
+32684,45334,22406
+32685,80217
+32686,21530
+32687,79695,22787,56998
+32688,20819,75492,13309
+32689,41893,38407
+32690,32384,65003,14425,25220
+32691,44941,42383
+32692,2250,56996,69344
+32693,7274
+32694,19846,6251,46141,54034,67792,55666
+32695,36088,3331
+32696,44642,72161,16048
+32697,53460
+32698,59735
+32699,36066,11054
+32700,68860,55085
+32701,47688,56711
+32702,63393,15749,16414,67094,1981
+32703,19953
+32704,70832
+32705,22140,8206,63163
+32706,57754,32853,24034,54246,74335,16566,13275
+32707,63456
+32708,36443,25948,24812,60455
+32709,23296,46916,30906,11681,9844
+32710,21887,12347,63865
+32711,81002
+32712,71314,65669,6959
+32713,68966,3696
+32714,10605,80406,53541
+32715,36242
+32716,38963,44196
+32717,45937,57741,66819,19291,23216
+32718,62817,59084,9318
+32719,59710,68339,61587,1538
+32720,8397,21019
+32721,48981
+32722,24713
+32723,65419,30326,62349
+32724,12945,9505
+32725,13396
+32726,77006,577,15811,31829,28303
+32727,63535
+32728,42833,44650,66662
+32729,38334,67452,44919
+32730,49300,56596,13371
+32731,22963,30028,18048
+32732,81441,64476,70944,19222
+32733,78302,3861
+32734,77694,67300
+32735,49459,57222,13319,70826
+32736,26884,6137,68778,14345,8528
+32737,15362,49431,44875,62398,45145
+32738,45767,63364
+32739,68057,2303,62100,35880,33383,63786,63920,64269
+32740,78229
+32741,41631,32969,81905,5208
+32742,38368
+32743,67337,69316,6508
+32744,63129
+32745,52798,80956
+32746,66798,19768,37065
+32747,23822
+32748,5992,6663
+32749,3246,45595
+32750,45770,30083,38549,6252
+32751,53623
+32752,31535,63987
+32753,44612,42918
+32754,47278
+32755,14008,2707,12177,14589
+32756,68634
+32757,60740,22660
+32758,69627,51091,29043,18670
+32759,11715,44821
+32760,43601,68269
+32761,20790
+32762,78816,78660,3303
+32763,55236,31006
+32764,48451,51606,13167
+32765,56262,30926,25678,32135
+32766,77080,5512,33628,8551
+32767,8778,44627
+32768,77312,73171
+32769,38999
+32770,26935
+32771,21162,65055,80055
+32772,70888
+32773,32621,24183
+32774,79705,46866,67121,52025,74362
+32775,70304
+32776,69565,78479,9747
+32777,27713,18891
+32778,55126,33954,36736,40890,23885
+32779,62823,65946,5372
+32780,46334
+32781,73670,40268
+32782,21982,35303
+32783,48991,66972
+32784,4100
+32785,53826,5757
+32786,78461
+32787,42095
+32788,77342
+32789,14652,54929
+32790,3130,50741
+32791,70400,72390
+32792,24476,62727,60913
+32793,81486,67501
+32794,55127,59722,45088
+32795,66897,60794,77437
+32796,69594
+32797,67023
+32798,18305,47463,6353,72655
+32799,81753,82058,41332,36922,40143
+32800,7967
+32801,2232,35304
+32802,36270,63222
+32803,59414
+32804,23033,37941
+32805,15032,78186,27597,26028,54750
+32806,26688,1112
+32807,70015,26175,8125,75592
+32808,73561,51795,57799
+32809,54467,24145,23053,49115,58952
+32810,10369,32477
+32811,1740,63920
+32812,78489
+32813,39223,66902,48525,26620,740
+32814,1718
+32815,13016,36301,55837
+32816,46788,15298,55695,19537,43311
+32817,68983,79892,64750,56721,60134
+32818,28293,20326
+32819,41925,8576,76612
+32820,27689,23509,54929
+32821,37629
+32822,57903,49917,54224
+32823,75658,49111
+32824,52722
+32825,14580
+32826,14355
+32827,31652,43332
+32828,43416
+32829,57792,50828,25255
+32830,8411,53520
+32831,60627,26026,78715
+32832,4382,76776
+32833,24264,4444,50815,11833
+32834,48410,23808
+32835,36872
+32836,56622
+32837,3165
+32838,38854,56436
+32839,36872,38276
+32840,3137,54921
+32841,54587,65545,5228,6687
+32842,61122,24308,43178
+32843,50495,45833
+32844,60426,47547,80379
+32845,27941,52753,12904
+32846,20176,28034,22669,31018,29875
+32847,30512,8542,71166,1820,69524,77877,13982,35071
+32848,40651,12642,35803
+32849,23495
+32850,55305,32884,33231
+32851,19577,52558
+32852,41299
+32853,47921,78990,48342
+32854,77827,67352,40033
+32855,2553,39206,78043,60557
+32856,17211,24106,5299,78574,55294,49272
+32857,73345,1416,42305
+32858,23086,27810,24230,33383,1998
+32859,35304
+32860,44540,27281,63336
+32861,77200,50183,56312,42090,2395
+32862,43127,10805,45105
+32863,39854,45578,23346,2320,45231,77870
+32864,17458,74175,27120,79792,35597,27728
+32865,56203
+32866,75508
+32867,7789,56583
+32868,64606,46897
+32869,79502,16185,10092
+32870,6448,61557,30015,48166,26358,67255,14955,22012,60199
+32871,61260
+32872,3259,4103,11746,6291
+32873,16394
+32874,17508
+32875,59479,943,36860,57476
+32876,49599,10830
+32877,24011,1168,58082,65152
+32878,29889
+32879,67755
+32880,33040,54931
+32881,26636,63169
+32882,27332,11410
+32883,50048
+32884,71381
+32885,26298,8662
+32886,58947
+32887,60165
+32888,67899,45657,43315
+32889,11565,18485
+32890,31770
+32891,78462,33086
+32892,32541,37328,35600
+32893,61091,65338
+32894,59791,50257,11959
+32895,46249
+32896,67855
+32897,59971
+32898,51591,8379
+32899,69425
+32900,44789,43452,67980,14191
+32901,9538,48623
+32902,20753,51370
+32903,38261,63883,56886,33937,12821,39676
+32904,78360
+32905,72483,3763
+32906,15871
+32907,31016,33981,67722,27424
+32908,70470
+32909,65454
+32910,45951,36096,67379,22175,45107,55194,3889
+32911,41974,14785,56812,35321,43456
+32912,73681
+32913,10436,38932,62978,69889
+32914,42077
+32915,1702,79404
+32916,41096,40552,46683,21206,11944
+32917,54994,45999,4397,26323
+32918,39900,62506,4752,69243,5516,58849,63137
+32919,74668,72406,72098
+32920,64876
+32921,1978,10468,47842,80566
+32922,15676,67018,4992,55461
+32923,75836
+32924,75985,78131
+32925,6897,71346
+32926,71028
+32927,79832,20185,76354,15467
+32928,47278,52094
+32929,1652,66650,38840
+32930,29733,62325
+32931,5026
+32932,61158,47283
+32933,13412,1343,9969
+32934,69992,23583,33297,27247,14881,6754
+32935,57990,25211,30789,71843,75409
+32936,35894
+32937,68121
+32938,65294,48410,53635
+32939,37533,19540,73902
+32940,66383
+32941,4357,21450
+32942,8230,10256
+32943,51165,13431
+32944,18478,61100,36357
+32945,14852,64974,17181
+32946,41858
+32947,68156,60018,43954
+32948,69859,65900,7139
+32949,34968,28370,43554
+32950,64970,44678
+32951,75123
+32952,24086
+32953,9902
+32954,34160,75169
+32955,43543
+32956,79578,620
+32957,35111
+32958,35976
+32959,25745,16888,79798
+32960,50472
+32961,14341
+32962,26510
+32963,19401,5026
+32964,57789
+32965,17071,17643
+32966,66316
+32967,29554
+32968,24905,74281
+32969,65493,39272
+32970,56718
+32971,71137
+32972,52141,3181
+32973,60620,51064,68222
+32974,69974
+32975,37788,31619,15959,44801,1453
+32976,36429,25753
+32977,49482
+32978,56628,30921
+32979,65009,31225,54128
+32980,25996,50171,54618
+32981,81088,72724,8092
+32982,38994
+32983,27540,76007
+32984,43918,58558
+32985,38425,59980
+32986,37690
+32987,25987,7396,18366,8230
+32988,22155
+32989,34014,81365,13068,90,10621,48580
+32990,6708,4107
+32991,1645
+32992,9588
+32993,14487,15654,76685
+32994,24488,47533,49951,64574,16377,4225
+32995,79684
+32996,53310
+32997,46792,73865,38830,14372,74174
+32998,50718
+32999,25964,1918,25881,80762
+33000,66384,809
+33001,73212,8544
+33002,2076
+33003,36505,23702
+33004,70557
+33005,29228,42356,11508
+33006,67604
+33007,14153,50198,74854,47597
+33008,78706,19399
+33009,27736,45905,38715,41348
+33010,53478
+33011,4796
+33012,13571,1007,5059,28456
+33013,65388,34283,59031,54818,38365
+33014,28419,60123,23308
+33015,78430,48751,25506,45215
+33016,47047
+33017,28909
+33018,76541,60861,70936
+33019,77087
+33020,71668,10042
+33021,34403
+33022,43041,41464,35183,2258
+33023,72772,12881,70934
+33024,51165
+33025,26748
+33026,28223,57282
+33027,12052
+33028,77111,34756,43917
+33029,30329,9697,74361,33116,58358,68530
+33030,19963
+33031,54761,1049
+33032,69554,25590,34888
+33033,14541,30420,49674
+33034,71800,43811,50573,26762
+33035,74598,1624
+33036,43348,17489
+33037,52073,58952
+33038,58239,57527,22925
+33039,63951,60766,35159
+33040,49664,34779
+33041,30371
+33042,49753
+33043,9052,69538,78164
+33044,51637,66308,75820
+33045,46090,24626
+33046,63521,61544
+33047,15740,47094,52811,79559,28246
+33048,12475,74016
+33049,52344,78924,29241,23669,13501
+33050,31999
+33051,80302,2798,24957
+33052,6562
+33053,81553,15436,75799,62657
+33054,24976
+33055,39391
+33056,43192
+33057,7734,35734,19993,28965
+33058,67925,42696,31612,12342,14238,48742
+33059,49365,79362,77463
+33060,64551
+33061,4215,19878,13930
+33062,54863,183
+33063,10773,25777
+33064,60677
+33065,16028
+33066,76187,81832
+33067,64440
+33068,16076,9095
+33069,22890
+33070,49045,16758
+33071,63775
+33072,52932
+33073,82074,31208,76207
+33074,13784
+33075,22042,35951,10467
+33076,79130,26208
+33077,82011,57432
+33078,73996,33761,835,81839,25881
+33079,43688,18763,40486,34557,788
+33080,78640,77064,4698,56333
+33081,5071,69321
+33082,13587,20711,30437
+33083,58635,17311,19385
+33084,60898
+33085,54598,9232
+33086,63961
+33087,3846,36309
+33088,1826
+33089,76564
+33090,76634
+33091,27056
+33092,10244,69040
+33093,12706
+33094,63025
+33095,25091,17867
+33096,28634
+33097,62712,28634,18980,68430,20592,15431
+33098,18873,36649
+33099,58849,55080
+33100,52526
+33101,8810
+33102,34840
+33103,27988,39542
+33104,69223,72795,10027
+33105,45654
+33106,70571,76652
+33107,30733
+33108,73721
+33109,41656,35442
+33110,22700,31657,62179
+33111,2091,27962,51406
+33112,63465,81225,21815
+33113,47022
+33114,82187,37032,80391,48387
+33115,36822,70678
+33116,29428
+33117,68438,76617
+33118,62852,14680,1466,73367,32615,59578
+33119,7938
+33120,51299,41075,45303
+33121,45395,1624
+33122,62057,29869
+33123,63932,56935
+33124,29051
+33125,5430,28611,38276
+33126,81006,1671,55358
+33127,44088,68042,38929
+33128,42830,16652,17970,7916
+33129,878,32665
+33130,6327,76401,39797,78550,39967,76756,78755,7454
+33131,30106,36182,41499,19409,51853
+33132,62542
+33133,41630,25591,76635,70651
+33134,10167,48798
+33135,255,54080,12320
+33136,37311,55539
+33137,2511,70033
+33138,49039,52567,35860
+33139,47139,660
+33140,57644,39185,27106
+33141,37991,23632,22131,58330
+33142,73178,37907
+33143,38836
+33144,39454,24666,28739,30827
+33145,65576,3969,7997,21325,2176
+33146,72211
+33147,45956,55963
+33148,74756
+33149,6369
+33150,32454,25441
+33151,33316,64467
+33152,28962,46788,11109,7795
+33153,48984
+33154,36389
+33155,58034,45239,55045
+33156,65358,65081
+33157,80844,2148
+33158,28406
+33159,81879
+33160,1861,62882,5782
+33161,6934,42692,9803
+33162,20776
+33163,77926,78315,62889
+33164,21524,50625
+33165,11192,72492
+33166,76915,28472,4836,11517
+33167,66482,19557,2304
+33168,68048,33247
+33169,33352
+33170,27643,72643
+33171,70816,587,2539
+33172,21286
+33173,27013,21173
+33174,79711,56054,59198,53829,37623,65380,10635
+33175,61765
+33176,17569,60764,80368,77200
+33177,52847,2923,45781
+33178,3036,60156,4128,21650,732,50062,15486
+33179,42023,69666
+33180,3408,77535
+33181,81546,19011
+33182,74064,77925
+33183,16619,66224,79890
+33184,70402,78396,34018
+33185,30312,49623
+33186,62711,30990
+33187,68844,66727
+33188,81081,67120
+33189,79668
+33190,33143,50104,8098,32523
+33191,42788
+33192,60418,41342,51376,46057,62644
+33193,58873,81149,32175,62235
+33194,23026,5534
+33195,17804,67524,37399,649
+33196,48168,22684
+33197,77076,48588,44867,37571
+33198,5935
+33199,33122,14337,54852
+33200,33228,76909,10687,11286
+33201,79088,77255,4987
+33202,55501,25840
+33203,49375
+33204,59169
+33205,59256,40021,28830,70422
+33206,67379
+33207,40547,9855
+33208,38835
+33209,31213
+33210,40297,4306
+33211,16208
+33212,13531,14645
+33213,49138,53378,72274
+33214,49324,5415,46617,46525
+33215,52295,22138,59516
+33216,31358,16487
+33217,36720,21449,43556,65200
+33218,79155
+33219,67926,34697
+33220,11520
+33221,75002,33286
+33222,52908,46395,14657
+33223,59064,29622,73128,36304,37218
+33224,35298
+33225,75415
+33226,36655,73803,36466,48494
+33227,37285,10794
+33228,80795,55895,12268,11135
+33229,74966
+33230,42960,54687
+33231,64205,61217,7169,68104
+33232,64632,31256,77392,24513,65984
+33233,55955,60312,75397,72648,54333
+33234,23324,16936,57547,43275,72446
+33235,61921,53894
+33236,15267,60923,67509,64890
+33237,5047
+33238,63174,16496
+33239,3579
+33240,67269
+33241,15606
+33242,43506,52108,75226
+33243,43262,40241,12145
+33244,14246
+33245,54025,63421,58310
+33246,71242
+33247,16292,34939
+33248,32003
+33249,69509
+33250,58794,49717,52025
+33251,72335,47714
+33252,48598
+33253,21665,36494,15853,68063,44306
+33254,47934,37593
+33255,54792,67341
+33256,15576,72932,33278,12435
+33257,20252
+33258,31696,41494,53779
+33259,24691,51099
+33260,64598,2017,21777,13460,74428,59580
+33261,73371,50402
+33262,80011,25802,43188
+33263,46780
+33264,49025
+33265,5468,80324,43876,46179
+33266,4942,30761,9634
+33267,51315,80218
+33268,36034,70612
+33269,58390,34538,67776,21784,59432
+33270,22173,54847,55764,71306
+33271,27077,11014
+33272,32673,73729,72933,50048
+33273,43314,40835
+33274,6249
+33275,11406,23677,16523,49178
+33276,47263,55229
+33277,42423,72711,71676,24966
+33278,29297
+33279,12787
+33280,27651,64665
+33281,34932
+33282,15165,63393
+33283,29864
+33284,22702
+33285,34426,69898,58935,4392
+33286,58675
+33287,30809
+33288,74708,7763,16150
+33289,29781
+33290,60735
+33291,18597,76571,6233,45846
+33292,30179,32319
+33293,52169,46601,45986
+33294,36280
+33295,49244
+33296,11312,62222,28686
+33297,6775
+33298,35816,13312
+33299,48895,37111
+33300,70826
+33301,29836
+33302,5176,59262
+33303,38546,17412,55730,18630
+33304,39013,27642,41082,53395
+33305,77210
+33306,1823,8050
+33307,82045,33901,10409
+33308,2184
+33309,43088
+33310,70348,36299,73075
+33311,29593,52977,41589,62294
+33312,31476,40273,6966
+33313,18216,51099
+33314,39254
+33315,72460
+33316,18029,73850,22828
+33317,30523
+33318,53526,30622,71908,81514,20217,35824
+33319,15617,1883,19516,77445
+33320,45413,78691,1815
+33321,24083
+33322,54921
+33323,43163
+33324,68092,23680,11130,37887,5756,67052
+33325,66783
+33326,38163
+33327,69787,77993
+33328,37423,36244
+33329,21897,21918
+33330,76434,8786,72802
+33331,66642
+33332,46896,32133,55520,13645
+33333,49640,30218
+33334,36608,81678,51211
+33335,54991,67860
+33336,738
+33337,46086,4445
+33338,31264,47447,3696
+33339,31308
+33340,48115,77930,8116,75238,59308,58146
+33341,69730,23279
+33342,6430
+33343,41359
+33344,61798,6530
+33345,55649,51126,681,32251,73246
+33346,5974,19923
+33347,41456,36553,53498,34888
+33348,73255,48127,8329
+33349,4467,6574
+33350,25496,70056
+33351,34208,58055,55310,37797
+33352,76093
+33353,11505,20018,79164
+33354,29021,23607,48859,53237
+33355,58635,270,12894,24520,35989
+33356,73070
+33357,36401,30507
+33358,15471,18212,46632
+33359,74860
+33360,30475,22608,59066,74670
+33361,79469,7057
+33362,51628,66589
+33363,21179,38001,80866,27335,26251,47313
+33364,76962
+33365,62853,65977
+33366,10233,61236,59728
+33367,46522,17089,2743
+33368,36337
+33369,20907
+33370,10007
+33371,78515,73365
+33372,19398
+33373,23326
+33374,73375,12594,76371,64071,81369,47643
+33375,7827,77348,42129
+33376,59984
+33377,44024,37795,8395,17981
+33378,67581,60625,42214,12343
+33379,21393,59937,47431
+33380,33604,34268,66056
+33381,30809
+33382,19154,39818,30870,56109,29696,57703
+33383,6225
+33384,42498
+33385,62816
+33386,4228,2008,68144,52602
+33387,23989,77539,30947
+33388,40780
+33389,22416,42290,46976
+33390,54813,65746
+33391,72771,31910
+33392,79015
+33393,72840,59741
+33394,12152,17899,39315,35566
+33395,27409
+33396,41116
+33397,48598
+33398,56286,16290,16343,65423,58319,58917
+33399,16601
+33400,6197,5783,1870,55801,36867
+33401,40330,11822,73131,58051,53597,12353
+33402,60217
+33403,37039,76178,11359,18356,9049
+33404,12360
+33405,34487
+33406,49204,16981,18820,37153
+33407,17634,3215
+33408,37620,57647
+33409,14787
+33410,57306
+33411,46626,60834
+33412,31254
+33413,30623,10496
+33414,60284,32625,59558
+33415,63128
+33416,25684,53294
+33417,29539,72621
+33418,49542
+33419,22524,57232
+33420,14090,31008
+33421,6861,72459
+33422,70555,24490,79934
+33423,13369
+33424,22607
+33425,80714,78982,78149,29924,73782,17372
+33426,57488,81409,34681
+33427,44211,20081
+33428,46868
+33429,54164
+33430,28399,29568,24815
+33431,32042,65879,5933,76655
+33432,75074,6033,55633,55406
+33433,65535,36703
+33434,72217
+33435,28713,37676,65570,75604,10726
+33436,63347,14411,76978,43523,31960
+33437,52575,39789
+33438,59510
+33439,5975
+33440,61817
+33441,49361,19452
+33442,27175
+33443,81040,47588
+33444,37585
+33445,25691,69865,19619,74487
+33446,66145,65400,1038
+33447,65095,47937,17587,18700
+33448,22682
+33449,63153,41727
+33450,31549,32442,80227,77823,39344,54968
+33451,67216,4072,68761,5306
+33452,34530,70383
+33453,42805
+33454,21763,38064,73474
+33455,34501
+33456,57926,46748
+33457,3869,35636,50368,30906
+33458,72796
+33459,41459,71448,45804,68111
+33460,23788
+33461,70121
+33462,22649
+33463,68324,21080
+33464,24939,7340
+33465,4681
+33466,48696,7064,66185,23007
+33467,70536
+33468,10087,32319
+33469,62799,15620
+33470,25493
+33471,23553,21311
+33472,42926,72311,47542
+33473,29368,81650
+33474,30883,42037,16565
+33475,59123,57792,59366,75686,13863,29945,67171
+33476,35895,75860,43492
+33477,38329,22969
+33478,10035,9267,81059
+33479,53889,70706
+33480,61894,38766
+33481,16348,69745,24265,3670,22505
+33482,12108,23031
+33483,38489
+33484,3199
+33485,47244,77997,21750,72001,1594
+33486,59052,9470,23061,15972,52622
+33487,67485,70923,26644
+33488,29678,66156,10273,46169
+33489,55538,75870,66855,7480,77669
+33490,31976,20756,40771
+33491,19616
+33492,39409,53890,2404,42234,48387
+33493,36449,27184,72162,45917
+33494,57811,51946
+33495,51765
+33496,6137,24346
+33497,5474,31529,15874
+33498,12700
+33499,53177,42165,56925
+33500,5306,20722
+33501,58567,13670,42298
+33502,66884,34798,29644
+33503,64581,67298,28276,13894,49881,42330
+33504,13316
+33505,12176,59255
+33506,13035,78484
+33507,28273,53928
+33508,77899
+33509,39152
+33510,48256
+33511,21592,8750,25722
+33512,52543,18353,9271
+33513,7244,58744,58259
+33514,19228,20842,33537
+33515,61962,29578
+33516,51301,41435,54320
+33517,30552
+33518,47341
+33519,60976,10815,1557,52005,48555,63874
+33520,66715,70045
+33521,16031,18006,17916
+33522,33867
+33523,53398
+33524,46308,69539,78975,20725,70794
+33525,31484
+33526,32080
+33527,12224,67169
+33528,29652,53939,41047,82153
+33529,70469,81995,9703,72296,68638
+33530,20710,28478,66296
+33531,19807
+33532,73270,76074
+33533,4500,22113
+33534,58045,36199,34625
+33535,8695,67859,45720,29340
+33536,64145
+33537,3006,33352,15878
+33538,61591
+33539,50407
+33540,1327,41351,27683,17731
+33541,54921,62969,69442
+33542,72747,60102
+33543,50602,46553,34424,57186,60562,8896
+33544,24469,43600,18639,73671
+33545,49482,55953
+33546,48166,40555
+33547,4839
+33548,72550,60825,42377
+33549,25272,55908
+33550,67056
+33551,57565
+33552,20055,81630,65607,12965
+33553,62197
+33554,5475,3358,54463,53091
+33555,6466,36868,79057
+33556,7508
+33557,29531
+33558,13729,54628
+33559,20577
+33560,6761,36933
+33561,14238,50485,38383
+33562,53276
+33563,25066,49542,16501,7198,78487
+33564,69898
+33565,37310
+33566,44983
+33567,2153,76270,2689
+33568,68110
+33569,35582,26826
+33570,64340,45983,18460,40201
+33571,64544,81521,44174,17245
+33572,74493
+33573,42165,50650,44883
+33574,72395
+33575,58142,25711
+33576,71611
+33577,68280,65646,78398,72975,70542,30104
+33578,35001,71502
+33579,51486,53166
+33580,1571,50512,43843,17646
+33581,19612
+33582,30132,36323
+33583,33209
+33584,23738
+33585,33010
+33586,10229,1600
+33587,49478
+33588,32723,81770
+33589,57186,56741,53436,3100,51798
+33590,77020
+33591,12787
+33592,31374
+33593,30950
+33594,61052
+33595,68998
+33596,34278,52693
+33597,4845,4458,67983,59084,38338,76596
+33598,44006,32617
+33599,41732
+33600,30770,58360,17709
+33601,15848,66776
+33602,17471,74016
+33603,2087,59928,32687,70998,9836,49713
+33604,16613,51412
+33605,16758,26374
+33606,50311,53694,43525,4146
+33607,50601
+33608,36483,17281,72274,45185,25952
+33609,14779,11645,54528,54684
+33610,35930
+33611,70766,54698
+33612,79850
+33613,20917
+33614,60705
+33615,40301
+33616,47692
+33617,31626
+33618,73603,79656,3948
+33619,17231,17203
+33620,24412,9372,63622
+33621,25233,17951
+33622,76958,8012
+33623,37950,36872
+33624,70529,8334,13356
+33625,69762,22642
+33626,79119,74076
+33627,45617,23333
+33628,73775,3713
+33629,34174,54905
+33630,24073,32941
+33631,60260
+33632,69042,51405
+33633,8746,48605
+33634,20235
+33635,285,32337,37815,63897
+33636,7242,11982,56057
+33637,61514,28032,69816,32385,29770
+33638,71071,24355
+33639,75898,47048
+33640,58753,77294
+33641,42652,72445
+33642,67607,30599
+33643,3813,63675
+33644,53677
+33645,41442,75068
+33646,33797,79129
+33647,25281,4729
+33648,5329,46788
+33649,57791,15186,58939
+33650,55958,22876,35172,49422,14857,26750,48596
+33651,36812
+33652,48351
+33653,28348
+33654,69274,56903
+33655,66450,53823,36920
+33656,68583
+33657,9095,26786,9114
+33658,42714
+33659,12698,11670,79768,11412,73338,80855,49708,72447
+33660,3238,48125
+33661,42498
+33662,27710
+33663,6063,8730
+33664,68331,45254
+33665,16480,82151,30879
+33666,1807
+33667,60032,39446,16945,9679,12773
+33668,64183,81911
+33669,75151,67874
+33670,16233,42007,59633,56152
+33671,44151
+33672,34372
+33673,79856,20396,80512
+33674,47381
+33675,46631,27420,19506
+33676,237
+33677,46473
+33678,7150
+33679,6246,15168,27642,63000,30664,24489
+33680,49319
+33681,18673,46264
+33682,68500
+33683,78737,32923
+33684,65183,5269,1282
+33685,20490,32335,63193,2115,45584
+33686,32526,35295
+33687,57683
+33688,69451,35262,8247
+33689,24079,80491,52733,77537,31780
+33690,46764
+33691,65601,2681,73306
+33692,80704,78445
+33693,69701,62114
+33694,1102,5884,36936
+33695,75233,283,41721
+33696,53142,63541
+33697,17764,5664,27275,60415
+33698,8181,8547,6946,3655
+33699,37327,67343
+33700,64570,26947,33012,51797
+33701,32660
+33702,76755,62973,11366,55580
+33703,80780,57846
+33704,21788,22483
+33705,37691,59144
+33706,76177,4189
+33707,10228,78016
+33708,55550
+33709,52509,36329
+33710,27413
+33711,36789,37171,66787,21083
+33712,35793,69481,10904,24777,52707,65445,63622
+33713,23822
+33714,77706,15011,45755,11696
+33715,76470,75177,16153
+33716,52592
+33717,42439,52317,14064,9603
+33718,54035,18016,17371,8903,33988
+33719,33581,7836
+33720,78398,62527,80740,45735,43184,61984
+33721,56180
+33722,19044,44788,25684,81131
+33723,9161
+33724,49734,60145,58694,36463
+33725,80319,6663
+33726,14046,31710
+33727,6999
+33728,20336
+33729,71757,70802,48757,33190,52729,3687,24150,79289,40164
+33730,55143,38633
+33731,64010
+33732,56968,10231
+33733,31234,65266
+33734,71376,40356,45818
+33735,61126
+33736,22990
+33737,70238,73691,50108,20060
+33738,46353
+33739,12128,66854,40139
+33740,45000,539
+33741,45078,787,42353,57390,70350,24270
+33742,78933
+33743,5658
+33744,14256
+33745,39442
+33746,70329,76613,57321
+33747,65640
+33748,61153,59684,63348,24328
+33749,63024,14871,65583
+33750,78273,41262
+33751,34816
+33752,32326,27258
+33753,15102,7214
+33754,65365,5009
+33755,78976,20468,9687
+33756,37450,10766,53670
+33757,22854,11373,61943
+33758,8355
+33759,21349,40822,67015,32837,45758,2976,57643
+33760,59266
+33761,70125
+33762,69060,23054
+33763,994,22314,44397
+33764,59255
+33765,82009
+33766,39585,6998
+33767,34925
+33768,77887,77625,69227
+33769,36885,81181
+33770,3385
+33771,81806
+33772,9266,52924
+33773,66454,14758,78704
+33774,19190
+33775,3119,30172,41780
+33776,58013,55490,39771,5670,53084
+33777,49693,59171,18607
+33778,23035,38826
+33779,59976,236
+33780,54628
+33781,58329,75853,78149
+33782,66815,51463,11482
+33783,24122,69664,61984,23679,61541
+33784,2426,47500
+33785,33797
+33786,73256,18526,26168
+33787,62003,81313,3658,54236,56314
+33788,8813,56875,73733
+33789,54503
+33790,39106,35120
+33791,20429,64975,30489
+33792,70990,19527,74964
+33793,42953,27573
+33794,68205
+33795,14416,39935
+33796,67903,77637,22774
+33797,37361,17626,32318
+33798,52750,75000,70109,14694,35732
+33799,64964,37585,1481,9930,21356
+33800,20493,47106,54605,376
+33801,61216
+33802,78226
+33803,31876
+33804,79437,50278,2872
+33805,35635,17209
+33806,27167,43880
+33807,44210,32003,13277
+33808,37515,56152,31570,77122,20978,11115
+33809,64725,56974
+33810,42095,60884
+33811,79565,33100,27543
+33812,74259
+33813,53018
+33814,6925,15331,8581
+33815,77046,11221
+33816,18048,26612
+33817,82118,61500
+33818,63925,36529,79360,30284,70124
+33819,60923
+33820,38847
+33821,18418,79899,12301
+33822,71564,26703,10676
+33823,50947
+33824,46311
+33825,54276,52028,29591,8558,29381,10173,80034
+33826,2103,25262,40527
+33827,11417,80457,72952
+33828,81512
+33829,4651
+33830,73070
+33831,2181,36399,11302
+33832,53464,42885
+33833,11882,24834,26981
+33834,79335
+33835,5823,41725,16201,25637,28487,39757,1968
+33836,1374,22022,3817
+33837,6427,6839,34552
+33838,53978
+33839,21211,36538
+33840,36524
+33841,2589
+33842,80272
+33843,47061
+33844,71822
+33845,32408,18882
+33846,47850
+33847,60148
+33848,23467
+33849,42291,25058,43490
+33850,30649
+33851,35813
+33852,51676
+33853,15027,32070
+33854,44549,36563,34819,54403
+33855,36341,71923,26692,43933,49517
+33856,57607,29732,46627
+33857,67786,73802
+33858,33088,74591,29601,18967
+33859,51770,32391
+33860,6773,650
+33861,17300,7832,18907,56490
+33862,25886,9507
+33863,47818,31621,6873,20176,78838
+33864,14029,18154
+33865,49794
+33866,81636,10257,62663,13145,68614,55887
+33867,69024,67799
+33868,70596
+33869,17507
+33870,48115,47244,18868,37045,47543
+33871,41893
+33872,70577,7067,61871
+33873,23540,44654,75339
+33874,23898,70234,59656
+33875,70816
+33876,31034
+33877,26172,56405,55138,42103,76585
+33878,50056,40911,37703
+33879,65283,10713
+33880,17347
+33881,57996,18434
+33882,46046,10606
+33883,3809,49207,74172
+33884,74915,41912
+33885,6229,21381,64080,36431,23043
+33886,59751,18610,6262,7129
+33887,47309
+33888,20785,61978,46750
+33889,60966,9393,14245,57953,66590
+33890,67423
+33891,18586,11643,16327
+33892,42994,1792
+33893,482,44936,35116
+33894,1349,51456,66653
+33895,7969,24695
+33896,51833
+33897,77009,43009,73146,43241,58965
+33898,17266
+33899,81338,66273,22825,16767,20110
+33900,43359
+33901,53128,6260,66979
+33902,52365
+33903,19129,71706,43537
+33904,66492,31967,35264,61590
+33905,52546,21882,36295,35898
+33906,75516,5776
+33907,20174,820
+33908,55412,26779
+33909,6544,55030,69326
+33910,23499,32128,4859
+33911,18878,7467,74016
+33912,67511
+33913,51206,53717,3523,55749
+33914,63320,64872,9801
+33915,22258,7124,60420
+33916,42390
+33917,62437,17627,71270,16247,17542,79274
+33918,4333,21800,65395
+33919,20083
+33920,25352
+33921,4274,4153,12076
+33922,33355,39568,25171
+33923,63676,46321,1239
+33924,24738
+33925,6769,28290
+33926,40035,49077
+33927,72598,2799
+33928,59732,19955
+33929,50485,3343,36528,65798,7926
+33930,59490,20838
+33931,36489,68361,3234,60645
+33932,53513,47623,69810,78829,7189
+33933,60054,31484,63235
+33934,27674,2637
+33935,79629,38131,44416,31145,77729,81486
+33936,80142
+33937,23870
+33938,73042,48257,44224
+33939,37879
+33940,49728
+33941,4825,1282,77938,16941
+33942,24095,23445,18838,73489,47477
+33943,19398
+33944,52258,19664,72216,7615,5715
+33945,22246,32789
+33946,60855,68447
+33947,49179,49459,55728,48992,53310
+33948,52476
+33949,27020,56636,39994,64729
+33950,37315
+33951,59263,2056,81696,27786,72812
+33952,44070,10078,18090,11693
+33953,58886,50775,3696,13007
+33954,14881,24816
+33955,16601
+33956,18441,882,65155
+33957,50978,69107,45621,64153,7902,48859
+33958,24619
+33959,69077
+33960,60970,8915,40939
+33961,25589
+33962,76625
+33963,7075,39267
+33964,59413,66112,75041
+33965,13024,53751
+33966,54161
+33967,75225,30188,12060,17139,6624
+33968,25500,19988
+33969,4752,76298,15226,65534,74927,24816
+33970,36579
+33971,35489
+33972,47768,31245,74662
+33973,18083,12421
+33974,30825,8108,68027,36257
+33975,60682,16020,53988,8063,61259
+33976,49861,14776,57258,38361,41924,78101,25607,38820
+33977,42687
+33978,15927,63229,64613
+33979,78496,39305
+33980,21842,42861
+33981,34172,74616,19570
+33982,126
+33983,50601,76757
+33984,8783,5184,9291,678
+33985,62537,3507
+33986,69782,33912
+33987,77880,51161,13766
+33988,81840
+33989,2181,16288,6419
+33990,46964,45781
+33991,69123,67288,34502,41660,51700,16700
+33992,45534
+33993,25451,50115,32814
+33994,3435
+33995,65210
+33996,3547,26853,34788,56510
+33997,59857,42056,23164,41100
+33998,75602,48950,36641,10004,53780,15940
+33999,76571,47761
+34000,24308,59129,34075,29867
+34001,49711,41827,60769
+34002,54719,73040
+34003,46120
+34004,22338,30719,50471
+34005,61240,51461,72691
+34006,36252,20736,25196
+34007,30572,24441
+34008,64476,17469,73169,54815
+34009,70329
+34010,66013,14823
+34011,1178,80634
+34012,71032
+34013,60035,53572,40197,34721,5642,206
+34014,33149,78229,68389
+34015,41803,9031,12728
+34016,34028,21457
+34017,75882
+34018,4681
+34019,60417
+34020,8842,45662,80169
+34021,54229
+34022,58663,35774
+34023,11081,36328
+34024,33452,14423,49926
+34025,49915,33286,20411,34456
+34026,32656
+34027,10508,40830
+34028,54931
+34029,43350
+34030,69826,26656,3915,37632
+34031,80402
+34032,59593,78311
+34033,7804,43917,43876,3174,49744
+34034,79060,45170
+34035,23183,14863,74937
+34036,62978,55234
+34037,6000,67052,57781
+34038,22048
+34039,8993,62949
+34040,71330,3314,35795
+34041,14210,9046
+34042,2745
+34043,46141
+34044,13272
+34045,30464
+34046,36394,68862
+34047,70693,52978,15004
+34048,72911,59284,81078,49546,72881
+34049,48200,31616,46182
+34050,63326,17144,21276
+34051,21528,73926,14208,48502
+34052,15892,38125,22017,68744
+34053,14257,70707,2812
+34054,30955,79606,72384
+34055,18327,60447,20521
+34056,52061
+34057,56282
+34058,48354,20657
+34059,14228
+34060,54649
+34061,81520,35885,56665
+34062,78377,14240
+34063,12512,18779,13298
+34064,43030,58512
+34065,31267
+34066,44468,75856,65241,58987
+34067,47752,11675,2246
+34068,20181,26554,44662
+34069,63358,18471,80440
+34070,38021,24835,51713
+34071,7803
+34072,69810
+34073,23484
+34074,18924
+34075,38338,78056,54362,32903,5164
+34076,1045,18912,51771,50710
+34077,28540
+34078,36269,64581,70592
+34079,82189,75820
+34080,71827,66167
+34081,47718,33287
+34082,78373
+34083,40166,46282,81753,19675
+34084,45795,4787
+34085,22517
+34086,55537
+34087,693
+34088,12497,35405,44715,59104,67226
+34089,35433,4325,81149
+34090,40908,73690,60842
+34091,45992
+34092,59649,22131,3832,19339,32536,48311
+34093,38995
+34094,29676
+34095,51374,62922,10803
+34096,23212,31556,31588
+34097,47294,73193,11900
+34098,798
+34099,5238,78248,22849
+34100,26674,17434,2071,77103
+34101,71141
+34102,51529
+34103,72241,54436,19535
+34104,37626
+34105,17063
+34106,63042,46578,14200
+34107,35214,10003
+34108,59905,8971,53773
+34109,9029,2343,54941
+34110,9037,27686,64149
+34111,49478
+34112,21911,71460,34074
+34113,43498,29256
+34114,47315
+34115,31385,47495,20687,25997,35082
+34116,37366,6148,36061,49144
+34117,63413
+34118,80216
+34119,62794,57939,63206
+34120,72054,62118,71189
+34121,63837,79618,33868,26627,26367
+34122,59323,20832,65486,3500
+34123,27539
+34124,81715,12858,75813
+34125,38476,39026,14202
+34126,67087,43690,25390,78161
+34127,14322
+34128,74127,56734,44879
+34129,13727,67573
+34130,53203
+34131,512,17179,78511
+34132,31043,23706,58849,74330
+34133,74901
+34134,71965,79495,17787,25075,7681
+34135,31412
+34136,12307,29591
+34137,38579,36163,7696,75328
+34138,22890
+34139,64091
+34140,43990,35993
+34141,4632,52453,55411,23672
+34142,49278
+34143,71020
+34144,53328,71051,79613
+34145,17361,80901,22198
+34146,27690,61891
+34147,29104,1471,69773
+34148,57708
+34149,73470,26055,45638,29371,46311
+34150,29805,41701
+34151,80014,49891,55998,31112
+34152,35203,14922
+34153,59872,71094
+34154,36900
+34155,43110,54956,39694
+34156,32747,18971
+34157,1947
+34158,58174,72631
+34159,3407
+34160,59634,78216
+34161,38105,4972
+34162,6230
+34163,28450
+34164,21956,19761,53473,81449
+34165,59666
+34166,57829,80452,59580,58041,12787
+34167,41795,79670
+34168,19043,59630,79161
+34169,19804,50529,72755
+34170,5971,21136
+34171,9892,52238,28523,38366,40858
+34172,65183,14261
+34173,73903
+34174,80730,53712,15861,10517
+34175,8959,78507
+34176,33136
+34177,12438
+34178,45806,77370,46363
+34179,5940,6884,35091,36882
+34180,77574
+34181,27992,30983
+34182,71598,49153,31573,50026
+34183,12570,38518
+34184,51255,39190
+34185,31691,14062,18927
+34186,66937,12166,58893
+34187,67377,47201,77659,10943,41641
+34188,40953,73498,15150,22942,54046
+34189,18307
+34190,71987,53623
+34191,14068,12602
+34192,25840
+34193,9070,8448
+34194,24487
+34195,51294,60176,3734,15309
+34196,56119
+34197,20330
+34198,72603,8903,25148,25441
+34199,26015,18256
+34200,41790,6155,20426,73406
+34201,41560,52729
+34202,50245,16816,28161,8408,79826
+34203,60727,43797,60148
+34204,18689,6312
+34205,75720
+34206,2022
+34207,75616,12235,11187
+34208,36281,38541
+34209,41300,70596
+34210,15681,21397,50864,1820,27207
+34211,73969,65012,34941,3334,68973
+34212,25065
+34213,17216,60692,63408
+34214,5594
+34215,50076
+34216,50694,15897
+34217,26494
+34218,12946,81530,12223
+34219,24643,78662
+34220,9284,19028,51197
+34221,893
+34222,59709,28878,56079,78152,80362
+34223,48847,75921,61664,81584,27952
+34224,32471,50922,43240,49245
+34225,13780,2028,79510
+34226,20935,20096,30971
+34227,73587
+34228,45706,41660
+34229,61127,49917,76088
+34230,28988
+34231,72321,77146,59770
+34232,31535
+34233,15113,41275,7407,38154
+34234,72424,80251,78462,7098
+34235,9368,70444
+34236,38308,4242
+34237,23750,78407,33019
+34238,25582
+34239,60504,2698,21640
+34240,30473
+34241,29630,72797,78499,32595
+34242,4908,81958,54181,21509
+34243,34465,57112,1585
+34244,75299,27609
+34245,26526
+34246,24611,68094,11904
+34247,9321,71679,77278
+34248,12010,25569
+34249,13279,57910,2124
+34250,36860
+34251,75090,16019
+34252,63725,40414
+34253,16380
+34254,18211,41108
+34255,9940,25914,15832
+34256,56001
+34257,58237,64413,35407
+34258,50478
+34259,49377,37813,80542,45573
+34260,41814,72351,24212
+34261,50073
+34262,5641,56498,71989
+34263,46351
+34264,64298,76237,29890,66618,351
+34265,26168,25177
+34266,66012,28990
+34267,68725
+34268,49202,78085,77089,21409
+34269,62167,54595,51075
+34270,36013,1122
+34271,67426,4274,8572,59195
+34272,12499,78620
+34273,40280,54109
+34274,62872
+34275,28266
+34276,14785,67956
+34277,79226,12761,14330
+34278,38822
+34279,54316
+34280,39626,6527
+34281,8098,13206,32291,57920,27873,40466
+34282,31176
+34283,42279,48021,66452,5123,57552
+34284,18474,10293,12186
+34285,48897
+34286,51854
+34287,55364,34501,59184
+34288,57797,42162,40520,40234,61476,41807,18771,33681
+34289,48872,35431,10270
+34290,59970,60593,42809
+34291,52822,28553
+34292,31455,62436,46093
+34293,31958
+34294,74296,25037
+34295,35201,67986
+34296,53166
+34297,69495,16511,10606
+34298,76115,47663
+34299,35293,34556
+34300,29932,16675,80375,78808
+34301,51491,37640
+34302,41878,21813
+34303,11047
+34304,4620
+34305,18759,53882
+34306,38475,53977
+34307,678,3088,39478
+34308,73543,28989,64714,9799,42593,25179
+34309,44256
+34310,29469,42709
+34311,67985,38191
+34312,37540,80394,59882
+34313,3941,45023,29139,26395,81777
+34314,20252
+34315,66981
+34316,5207,66716,10656,68905,81579
+34317,3215,80672
+34318,6843,36264,33674
+34319,5326,15788,40761
+34320,23188,47092,74724,11367,81245,41287,30063
+34321,72726,341
+34322,21216
+34323,19029,71668,57516,2445,24790
+34324,31796
+34325,15619,62485
+34326,25447,68046,75547
+34327,47034
+34328,44415,17927,67309
+34329,1531,70698
+34330,56714,14543
+34331,53344
+34332,63601,41352
+34333,8084
+34334,56321,54702,75243,49713
+34335,31758,25231
+34336,46227
+34337,8044,3686,15262,34017
+34338,26149,2195,14780,27486
+34339,38094,51115
+34340,74475,9548,73454
+34341,31468,72055,30299
+34342,16565,23942,62149
+34343,46349
+34344,45110
+34345,61008,80732,67774
+34346,33282,15354,71737
+34347,78509
+34348,31952
+34349,62941
+34350,2838,71944,8150,36496,53385
+34351,4624,11940,25595
+34352,14242,69297,33082,74539,27243
+34353,33297,32003
+34354,72024,14137
+34355,12965
+34356,73674,55091,51000,10955,78209
+34357,35118,81415,31072,3505
+34358,12889,24262,79056,45445,20375
+34359,64978,37128
+34360,71590,33532
+34361,19509,49179,23752
+34362,11257,24034
+34363,72638,23067,77804,47597
+34364,24571
+34365,63371,58560,71962,10558
+34366,44807,57305,53647,34572,37689,76634
+34367,61804
+34368,49872,17958
+34369,81001,12843,69363,64476,77455
+34370,63874
+34371,3828,76002
+34372,64517
+34373,10663,39675
+34374,77359
+34375,54895
+34376,61993
+34377,35854
+34378,54180,38422
+34379,75832
+34380,14789
+34381,40942,79168
+34382,8205,74797
+34383,56920,13570
+34384,52131,4833,36751
+34385,46377,17186,16887
+34386,25086
+34387,58576
+34388,19084,65248,25695,42278
+34389,19171,9303,46496
+34390,31021,34523,60102,78630
+34391,13723,173
+34392,31227,60135,75784,80228
+34393,31535
+34394,46940,42981,44922
+34395,62220,53989
+34396,56389,37125
+34397,27497,32237,57135
+34398,35033,63838,59601
+34399,65806
+34400,71660
+34401,23629
+34402,72752,42292,63966,70201,1188,25537,81745
+34403,41398
+34404,50332,36427
+34405,7137,34072
+34406,33483,55094,28467
+34407,52359
+34408,11484,4791,74624,78789,63810
+34409,78246
+34410,24256,39854
+34411,30878,73782,26531
+34412,46595,42648,11746,62669,25167
+34413,42473
+34414,53763,43703
+34415,30425,48739
+34416,80916
+34417,72749
+34418,44266,13571
+34419,58160
+34420,79518,3431,1361
+34421,14721
+34422,5601,46337,2393,2174,29908
+34423,45556,37982
+34424,77453
+34425,17892,67485,68693,17756,70996
+34426,29825,60198,64548,59248
+34427,67441,50925,59908,8634
+34428,71764
+34429,24629
+34430,1368,74447,52606
+34431,22728,17298
+34432,25584,1899,48455
+34433,16160,60705
+34434,2512,11827,19080,31133,65160
+34435,41045
+34436,44231
+34437,57410,5253
+34438,35431,82009,16026
+34439,44764,55355
+34440,39083,64936
+34441,5196
+34442,61128
+34443,40945
+34444,28586
+34445,18803,36763,69868
+34446,67992,18358
+34447,76659,79718,46471,6655,39242,34403
+34448,71421,77109
+34449,59064
+34450,21306,47708
+34451,6995,42397,7389,45062,55153
+34452,7658
+34453,65545,25590,64017
+34454,74751,41080,58398
+34455,71422,70088
+34456,2281,46166
+34457,18120
+34458,29405
+34459,77079
+34460,2068,12881
+34461,10751,75260,3687
+34462,69871,11134,81754,9427
+34463,11927
+34464,2970,80922
+34465,42178
+34466,28507,22500,36872
+34467,39063,29476,2430,46579,41619
+34468,53055
+34469,8890,34588
+34470,73281
+34471,48512,48734
+34472,72884
+34473,49200,33774,62320,78600,28729,69138
+34474,54401,1899
+34475,79756
+34476,78461
+34477,46300,66865,66607,48874,11219,1387
+34478,8045,75872
+34479,63091,13611
+34480,48896
+34481,74480
+34482,66868,71467,32955,34435
+34483,6493,36560
+34484,6528,15190
+34485,76735,46850,77780,36973,36541,62238
+34486,20965
+34487,75271,51123,35050,52632
+34488,30494,2790
+34489,7368,11705
+34490,39060,61804
+34491,33902
+34492,12850,51533,3760,38783
+34493,77991,65186
+34494,58726,9067,63900
+34495,24662,38739,52762
+34496,13928
+34497,66905,10554,13964,17169
+34498,39522,81356
+34499,13666,26942,65454,81797
+34500,56149,78912
+34501,32123
+34502,24212
+34503,73944,4160,28381,78716
+34504,70850
+34505,70620,72093,1046
+34506,38747,55263,67988,81605
+34507,43659,61102,51679,19019
+34508,40266,76084,59670,64462
+34509,22164,71126
+34510,74918,32618,18604
+34511,67524,31530,13132,5564
+34512,73818,79733,58543,33264,10682
+34513,72190
+34514,3296
+34515,40021,50232,81362,28898
+34516,35392,50913
+34517,54895,56063,70289,51249
+34518,71327
+34519,53903,28774,9374
+34520,9376
+34521,11399,46352,9886,4160,15009
+34522,63185,35883,40459
+34523,37101,6063,50910,9215,66485
+34524,50965,80736,41226,64201,33290
+34525,74695,22728,58617
+34526,20421,78217
+34527,72208,51522
+34528,23309,32207,26268,29089
+34529,74313,58717,38087
+34530,21788
+34531,16034,45579,4400,57924
+34532,23957
+34533,79992
+34534,56959,12813,47840
+34535,9282,43303
+34536,37260,10053,26489
+34537,20303
+34538,45816,1194
+34539,20890,48453
+34540,29508
+34541,30643,61978
+34542,80484
+34543,80183
+34544,58711
+34545,34372,9829
+34546,33332
+34547,72045,34790,38743,76776
+34548,67831
+34549,39053
+34550,29985,28623,11706
+34551,60101
+34552,6113
+34553,4069,13472
+34554,71377,74852,12926
+34555,15661
+34556,25745
+34557,65827
+34558,69476,4062
+34559,52566
+34560,61896,2246,11845,49967,67540
+34561,28704
+34562,7957,47952,59641,21536
+34563,29351,62101
+34564,41205
+34565,80146
+34566,26793,68707
+34567,64280,63107,9179
+34568,1655,44764
+34569,74277
+34570,4682,3575,54157
+34571,43350
+34572,29571,7356
+34573,3405,47253,50845,54568
+34574,30830,41404,67824,12684,34681,52397
+34575,71463,4808,19853,56029
+34576,37551
+34577,72492,58183
+34578,52177,10501,14090
+34579,31421
+34580,58576,73102
+34581,26685
+34582,65493
+34583,75072,26981
+34584,33406,45562,72788
+34585,31066,27556,75075
+34586,26525,15710,18525
+34587,40325,26963
+34588,57265
+34589,32044,63642
+34590,43452
+34591,54319,39718,43587
+34592,58146,67676
+34593,17908,38878
+34594,43750
+34595,62978,33614
+34596,33742,39499,71583,74547
+34597,56176
+34598,32570,59396,7057
+34599,52365
+34600,81443,24064,79183,47654
+34601,47096,44675
+34602,18556,20553,57531,58561
+34603,6078,67487,42576,71649
+34604,23296
+34605,7154,50535,19608
+34606,18418,36522
+34607,73806,28647,60738,11844,50629,19810,19173
+34608,65607,78805
+34609,30759,33583
+34610,53499
+34611,37670,72452,33444,54763
+34612,71594,3619,51712,19504
+34613,33971,46003,53459,13862,73099
+34614,70076,78917,81990
+34615,74229,46441
+34616,22603,48003,53699
+34617,5290
+34618,47651,81083,75873,81277
+34619,58683
+34620,64753,54817,73593,17709,27663,36122,49383
+34621,25223
+34622,6633,37037,57567,16407
+34623,24444,8448,14469,15313
+34624,49702
+34625,80028
+34626,72535,31834
+34627,35872,58734
+34628,56490
+34629,55413,17184
+34630,16911,14304,56502,43030
+34631,2580,58295,74617,35549
+34632,4104,7016
+34633,67435,48798
+34634,43236,82026
+34635,41146
+34636,18375,20425,43682,35302
+34637,15598,5797
+34638,47656
+34639,4682,31031,10039,9706,55914,60943
+34640,46949,39194,67489,69675
+34641,52892
+34642,60620,57909,16281
+34643,11045,66026,36384
+34644,9446,10532
+34645,29171,38
+34646,46400
+34647,48458
+34648,74836,11608,32977,36409,42897
+34649,3107,48720,76617,25434,48691
+34650,32703,74708,31098
+34651,42043,62412,365,27846
+34652,50676,29668
+34653,69823,24880
+34654,14093,9564,14322
+34655,52160,15845,28073
+34656,56192,16305,15304
+34657,35406,40444
+34658,71175,37855,18105,144,55550
+34659,12977,74953
+34660,39474,456
+34661,77576,55883,39080
+34662,29306,49236
+34663,50900
+34664,33470
+34665,59197,25307,5037
+34666,40303
+34667,23579,32495
+34668,62167,39037,55944
+34669,67424
+34670,41316,10240
+34671,70139
+34672,55134,25035
+34673,34353
+34674,41574,53314
+34675,14697,19736,25738,65507
+34676,13484,75289
+34677,80809,65347,22304
+34678,19039,32371
+34679,36325
+34680,9855,1973
+34681,48026
+34682,36878,72547
+34683,61790
+34684,44696,63508,25578,10798
+34685,56998,79757,56946,10122
+34686,32858,74697,17888,64346,997,21456
+34687,77685,46530,7735
+34688,80700,40331,6805
+34689,27608,66980,42962
+34690,80734,75698,65259,1742,44422,45006,24723
+34691,45796
+34692,37542,9833,20899,56957
+34693,58018
+34694,4445,58094,40790
+34695,73202,9507
+34696,38972,1613,60449
+34697,8839
+34698,988,64800,13478
+34699,501,79423,56058,11323,39267,23548
+34700,44953,25576
+34701,41524
+34702,71543
+34703,34688,28858,55153
+34704,68767,73918
+34705,12367,4011,34291,15598,28482
+34706,11190,46289,2970,22124,49450,16014,23850
+34707,13940
+34708,28724,80488,68392,64968
+34709,31551,78897
+34710,30336,15345,33251
+34711,54209
+34712,36729,21437
+34713,19964,51232,13800,11702
+34714,48673,62289,22384,7928,22288
+34715,66678
+34716,60964,82054,12651,62162
+34717,60631
+34718,21392,62973
+34719,14278,46882
+34720,4338
+34721,5904,62094
+34722,11125,61664,54865
+34723,3553
+34724,54602
+34725,16313,6544
+34726,49546
+34727,44591,7857
+34728,50149,16328,62117
+34729,8929
+34730,37377,36096,1636
+34731,78133
+34732,59506
+34733,40746,28601
+34734,3959
+34735,60556
+34736,17358,1055,23812
+34737,35219
+34738,3806,6099
+34739,32672,24419,68742,28956,15530
+34740,18296
+34741,46602,3809
+34742,58526,80892,19500,70333,12460
+34743,40098
+34744,61762,48523,37048
+34745,43248,68031,70365
+34746,65920,64966
+34747,63932,66158
+34748,10360,12301,71254,9944
+34749,46731,33464,60446
+34750,58572,69177,70608
+34751,46900,79020,23961,51080,33448,13577
+34752,21914,51957,28288,13378,37764
+34753,33391,9206
+34754,73907,64184
+34755,49778
+34756,9014,8528,482
+34757,49268,57898
+34758,33311,75483,18088,3004,70348
+34759,65274
+34760,510
+34761,40264
+34762,63783
+34763,79927,79055,22930
+34764,42644
+34765,63347
+34766,18865
+34767,64366
+34768,57398,29871,11574
+34769,81776,67375,13519,930,71193,2052
+34770,55826
+34771,30171,38069
+34772,71911,55867,72856
+34773,9649
+34774,41488,80960
+34775,58413,36636,73792
+34776,1883,54662
+34777,77003,62695,22644,4195
+34778,57672,80609
+34779,70603
+34780,79547
+34781,19370
+34782,68604
+34783,75420,27176,19829
+34784,70392,45108,41932,28777,2989
+34785,49584
+34786,20819,11518
+34787,74308,41418
+34788,78775,21557
+34789,57924
+34790,18452
+34791,70089
+34792,46464,62085
+34793,54838
+34794,64380,5177,15631,22936
+34795,45018,54760
+34796,18979,11338,12031
+34797,62068,42831,43907,9413
+34798,62315
+34799,51087,25150,53145
+34800,50512,11559,5663,52901
+34801,22208,46515
+34802,19104
+34803,34896
+34804,80935,75179
+34805,11315,14135,13792,32885,55526,33550,71134,63453
+34806,44839,30469
+34807,58708,48712,57641
+34808,58310,36184
+34809,25995,1590
+34810,1478,22791
+34811,17481
+34812,17494,74894
+34813,69215,36507
+34814,67785,15863
+34815,9853,30397,29901
+34816,49584
+34817,18459,75389
+34818,10637,13559,8316,34159,21201,34325,31152
+34819,21458
+34820,5049
+34821,20569,723,59136
+34822,28651,80453
+34823,15263,31188,31460,65867,81987,40453
+34824,63177,47878
+34825,8580,53520,41077,43944,10153
+34826,50399
+34827,79418,37571
+34828,5821
+34829,30510,27248
+34830,34951
+34831,23746,7976,57106,38756,57300
+34832,4194,75895,43168
+34833,35030,62980,78769
+34834,37146,30659,55955
+34835,76735,19879,2417
+34836,32586,40727,16892,6046,23497
+34837,81641
+34838,10277,5591
+34839,70497,60455
+34840,32105
+34841,8290,34029
+34842,54957,30603
+34843,35722,68612,30809
+34844,21004
+34845,75080,35107
+34846,14307,20248,16174
+34847,16584
+34848,69134,9668,4425
+34849,39508
+34850,75417,43625,515
+34851,73045,14318,75957
+34852,3585,33433,80594,44059,17356
+34853,50233
+34854,34715,60765,12160,60033
+34855,23177
+34856,11428,70826
+34857,54039
+34858,74720
+34859,32788,53948
+34860,12465,34532,65999
+34861,69668,65186,38208,65535,30272
+34862,28509
+34863,79295
+34864,20458,7268
+34865,20308
+34866,80430,34448,27218
+34867,64900
+34868,10221,30067
+34869,76322,11495,41781,46280
+34870,2557
+34871,19369,47937
+34872,4289,69314,74780,13742,13049,33191,33831,77405,47805
+34873,63382,2669
+34874,42680
+34875,21143
+34876,73635,70221,547,31350,19298
+34877,61039,56035,67068
+34878,1226,42225
+34879,68504,3601
+34880,72363,49422
+34881,81016,18658,77178,17833,68517
+34882,57340,4632,26918,19516
+34883,74662,71391
+34884,52102,30254,30585
+34885,43416
+34886,50205,6661
+34887,26214
+34888,51739,10228,79602
+34889,56095
+34890,55646,58116
+34891,67622,65838,34887
+34892,52979
+34893,10070,10460
+34894,21302
+34895,64291,43827
+34896,32800
+34897,29945,27319,6863,42017,64669
+34898,7913,4608
+34899,45237,52724,62189
+34900,29087,23502,15539,65176
+34901,24548,23685
+34902,38954,45681
+34903,34857,29441,350
+34904,15283,26937,14618,7451
+34905,78645,28659,7433
+34906,50638,54391,17843,732,53878,1964
+34907,24357,20554,37439,50522
+34908,80414
+34909,27989
+34910,7780
+34911,15672,49443,18938,78417
+34912,17815,2160
+34913,55621
+34914,52413,67962,24624,65022,52551,79207,19951
+34915,12368
+34916,1493,37311
+34917,45871,31143
+34918,48257,51904,39305,82023,82129,81313,49459,58511
+34919,74199,12755,38310
+34920,804,40599,36571,66882,64127
+34921,49511,1361
+34922,52204,17690,24167,50239
+34923,69512,734
+34924,36983,51960,33557
+34925,63061,6232,8395
+34926,66297
+34927,66215,29809,61238
+34928,24347,24830
+34929,45196,48377,17454
+34930,54863
+34931,23027,80230,45910
+34932,29439
+34933,66041
+34934,10823
+34935,59863
+34936,79709,12496,50092
+34937,31537,81645,45045
+34938,69565
+34939,54218
+34940,51694,27356,81892
+34941,20346,17417,71822
+34942,30414,6180
+34943,29713,42603
+34944,968
+34945,53541,70055,51240,9356,25886
+34946,16028,48335,13751
+34947,58602,72321
+34948,65786,70377,23078,52012
+34949,51544
+34950,5884,17111,14270,51386
+34951,27776,40023,47406
+34952,20252
+34953,70866,15135
+34954,37850
+34955,44451,57513
+34956,66104
+34957,62573,59856,17681,73082
+34958,55068,74291,5797,45207
+34959,71793,15293,71554,1282
+34960,72489
+34961,71907,45706,80586
+34962,1354
+34963,12889,17871,35974
+34964,71081,77718
+34965,47139
+34966,12295,43140
+34967,24551,10363
+34968,38012
+34969,44364,60677,71229
+34970,39105,42491,63526
+34971,67968
+34972,79040
+34973,71337
+34974,27180
+34975,36713,48455,68809
+34976,66719,566,9507
+34977,16004,11542,53896
+34978,3682
+34979,59469,63424
+34980,31292,65981
+34981,75701,13027,75642,44793,36491,81783
+34982,70355
+34983,45277
+34984,26838,9074
+34985,21205
+34986,21541
+34987,2447,82115,29273,62141,37322
+34988,81314,58576,75420
+34989,41972,19809,75402,75747,49849
+34990,35871
+34991,72820,65194
+34992,58503
+34993,15950,68054
+34994,17887,37739,56459,13854,60848
+34995,45007
+34996,50939
+34997,34376,40920,31861,56524
+34998,54594
+34999,66857,61299,31946,46481
+35000,72295,36035,77710,18507,25438
+35001,62819
+35002,38003,30272
+35003,14793,68540
+35004,60730,33988
+35005,66872
+35006,24509,60545,40098
+35007,27628,79842,63401,81334,79539
+35008,25091,32588,61293,72718,65826
+35009,42316,32403
+35010,79431,67265,72730
+35011,40805,50245,31376,42305
+35012,9452,73551,17938
+35013,45651,70194,46120
+35014,26995
+35015,48057,19213,72035
+35016,25697,77768,18139,22162
+35017,47383
+35018,5321,58246,21300
+35019,12800,68081,29500,69599
+35020,28428,65223
+35021,11335,74878
+35022,58797,75064,27368
+35023,48963,37602,63293
+35024,51265,34212,72182
+35025,37259
+35026,18028
+35027,19621,44376,910,1716
+35028,4431,24296,45776,21159
+35029,19265
+35030,11301,54383
+35031,22882,28010,64547
+35032,74946,4377,33632,29827,51037
+35033,13894
+35034,31463,44978,75252,66862,61036
+35035,66557,14256,9658
+35036,66323,31590
+35037,15504
+35038,42208
+35039,50763,44739,68284,47718,60643
+35040,25808,652,13398,33484
+35041,35901,456
+35042,17962
+35043,55901
+35044,3855,79977,76809,80263,50023
+35045,72550
+35046,43073,46146
+35047,20330,31993
+35048,64179
+35049,5586
+35050,8285,36982,59622
+35051,3043,60431
+35052,81215,50758,9329,25522,43267,70621
+35053,49717
+35054,14183
+35055,61405,51074,61065,55862
+35056,68956,52803
+35057,68458,49757,50400,66228
+35058,33373
+35059,50564,20605,15052,30500
+35060,62171,63432
+35061,54316,27967
+35062,9636,65941
+35063,62333,5277
+35064,61301,39023,43990
+35065,47528
+35066,54381,68964,24246,65992,47657
+35067,35269,37106
+35068,79788
+35069,75968,74190,41721
+35070,41851,10976,8008
+35071,624,5800
+35072,6381,70795
+35073,38390,61418,15951,72446
+35074,51606,42569
+35075,65623,31348,1147,39001,78030,79693
+35076,19058,17880,13627,24402
+35077,37228
+35078,32751,12995,1934,1352
+35079,9410,44220,21706
+35080,38729,72563,66714
+35081,10281,47385,68277,21071,36435
+35082,20745
+35083,48761,34042
+35084,77204
+35085,14224,9606
+35086,4058,76162
+35087,10983,35981,44812,12541
+35088,40776,77075,61549
+35089,75416,66658,57070,4847,61499
+35090,31603,63983,12500,20628
+35091,59170,61208
+35092,17248,19110,45102,57651,17108
+35093,78816,42474,47987,76612
+35094,47708,53415
+35095,34657,7015,62503,80767
+35096,11861,35421
+35097,7854,39486,15267
+35098,51062
+35099,843,4849,67808,10973
+35100,302
+35101,8032
+35102,69078,77381,51723
+35103,78656,38707,62295,4577
+35104,63942,28926,17682,9766,69561
+35105,5299,59558
+35106,70515,20691,17212
+35107,61402,63645
+35108,17490,37635,34119,59202
+35109,21704
+35110,20165,62799,35409,57722,81710,33331
+35111,30461
+35112,41653,40734,34343
+35113,22177,38655,78683
+35114,72952,61048,40862,28478
+35115,40778
+35116,40778,69579
+35117,1281,28397
+35118,59093,29944
+35119,13615,18245
+35120,48009,74831
+35121,80733,40829
+35122,49794
+35123,38027,63976,22814,67702,55492,20595
+35124,31770
+35125,57961,71195
+35126,32719,61849
+35127,2193,20247
+35128,8575,20473
+35129,25606
+35130,71906,58061
+35131,14838
+35132,11423,46659,30352,19129,12906,12948
+35133,54798,44476
+35134,6753
+35135,49422
+35136,55570,56517,13987
+35137,73888,79815,59652,79811
+35138,4338
+35139,78321,29425
+35140,44008,24833
+35141,68043,1970
+35142,38628
+35143,24545
+35144,13082,14982,753
+35145,30132,11029
+35146,56023,75299
+35147,21329,44460
+35148,65388,27227
+35149,65733
+35150,52398,8916,11372,15993,57347,44954,12585,62967,60909
+35151,26877
+35152,3928,33740
+35153,1203,15108,65498,66079,60425,18740,5790,35545
+35154,13516,28417
+35155,34206,47030,32571
+35156,6244
+35157,3299,48215
+35158,6424
+35159,64954
+35160,11734
+35161,33088,5528
+35162,33294,54287
+35163,58881,76402
+35164,75856
+35165,56537,54017
+35166,74252
+35167,81454,49838,68216
+35168,60600
+35169,73485
+35170,65949,21967,52491,56344,29862,73760
+35171,32421,35917,37098
+35172,6507,48108,11342,29678,67822
+35173,2816,79138
+35174,6229,25921
+35175,19623,53323,61242,50246
+35176,13506,2579,60338
+35177,21337,21700,18613,76962
+35178,65711,49346
+35179,56285,81306,33590,45669
+35180,80455
+35181,42263,6940
+35182,17265,18626,54202
+35183,32683,25963,5933,71041
+35184,63308
+35185,7124
+35186,35054
+35187,50666,57848
+35188,38060,38431,63908,44765,26194
+35189,80594
+35190,68196,18350
+35191,80418
+35192,11641
+35193,16653
+35194,60145,48090
+35195,28348,36735
+35196,5664,54640,43893
+35197,14269,62544,1379
+35198,78156,74128
+35199,77713,58250,12171,34864,12572,35692
+35200,632,8065,6525,77575,63342
+35201,77763,20791
+35202,62573,42297
+35203,39442
+35204,19109,19038,53639,38086
+35205,6816,47054,22542
+35206,51826
+35207,34263
+35208,82159,46619
+35209,79592,9103
+35210,42017,42123
+35211,78163,74569,72263
+35212,1524,76213,36895
+35213,65456
+35214,40691,44592
+35215,58568,33930,61621
+35216,38527,6244
+35217,50781,68899
+35218,36718,55471,33577,78380
+35219,24435
+35220,50705,48765
+35221,71791,39883
+35222,14548,31515,74788
+35223,53525,39649,48371
+35224,46312
+35225,19915,36129,23452
+35226,48105,65770,11661,13678
+35227,48229,43410
+35228,82105,73864,7679
+35229,16653,48626
+35230,2423,34091
+35231,3133
+35232,11624,73230,38291,74050,16370,36981
+35233,67609,2428,61382
+35234,41609,74598
+35235,17398,28323,11089
+35236,48737
+35237,78992,49260,57248,54878,16147,65394
+35238,68166
+35239,42621
+35240,47800,33739,66304,3229,335,39721
+35241,24449,71969
+35242,8521,47147,67482,14281
+35243,28276,62687,14088,66512
+35244,10982,14116,63367
+35245,73945
+35246,40371
+35247,47777,62804
+35248,57925,67179,44954,46137
+35249,7056,74558
+35250,41944,65588,34548
+35251,11230
+35252,49111,939,74357,8397,53561,23761,53193,29346
+35253,15502
+35254,23183
+35255,58636,79835,51076
+35256,52495
+35257,63453,80319
+35258,26430,42816,37311
+35259,47820
+35260,16688,54037,1270,3486
+35261,20189,40134,29540,7157
+35262,5987,13681
+35263,81691
+35264,48902
+35265,47726,12998,8465,41842,61418,53970,62567
+35266,65056,28816,49507,35264,43036
+35267,45780
+35268,51222,58938,6886
+35269,73133
+35270,33173,41670,1367,37706
+35271,34779,39950
+35272,40101
+35273,54229
+35274,65402
+35275,22695
+35276,40019
+35277,20876,39925,61197,61587,39504,46563
+35278,2208,10980,53298
+35279,45797,68506,49358,8373,44397
+35280,74965
+35281,4632,69740,11840,12386,5298,5926
+35282,12706
+35283,69114,70978,38505,37845,22812
+35284,42095
+35285,3865,45245
+35286,75261,22660,49344,23669
+35287,68794,63769,31157,50504,61462,40628,45777,57191
+35288,73065,69112,66714
+35289,58903,46233,6941,48032
+35290,44728
+35291,35109
+35292,76418,19926,72991
+35293,12537
+35294,63145,35942,28878
+35295,77198
+35296,52495,62011
+35297,43878,47717
+35298,2932,35908,54757,1468
+35299,50333,40961
+35300,49843,70945,59579
+35301,28298,73958,78323,75678
+35302,68966,29320,74201
+35303,7330
+35304,54931
+35305,31868
+35306,35802,25482
+35307,7574,63675
+35308,47763,66975
+35309,68080,46929,53907
+35310,8177
+35311,40926,14772,731,65996,42039
+35312,13751,45045,28792,48863
+35313,10456,63204,57256,65577
+35314,56192
+35315,67169,28808
+35316,27874,18811,44099
+35317,42131
+35318,70234
+35319,34847,63811
+35320,78382
+35321,5853,26712
+35322,13559,65562
+35323,29672,44475,37286,65621,59957,44856,9470,29639
+35324,35438,48723
+35325,9238,75484
+35326,29404,48303,78591,52442,8768
+35327,70361,53206,42089,67418
+35328,44997,33949,32368,25773,7086
+35329,67441
+35330,25551,37980
+35331,19284
+35332,48260,67570,3088
+35333,49001,29598,64206
+35334,61671,60685,65353
+35335,30,74352,51273,19422
+35336,33219,10910,74124,56398
+35337,44059,24708,72829
+35338,58059,57605,63468
+35339,28878,37477
+35340,77981
+35341,2249,9656
+35342,30893,26203
+35343,69762
+35344,67082,44189,62786,11846,55260
+35345,15525,7913,75275,2689,8668
+35346,57604,26181,12963
+35347,55877
+35348,77483,40674,73084,47508
+35349,55180,16738
+35350,69541,37915
+35351,71854
+35352,57565,45544,25390
+35353,55420
+35354,19441,9221,73504,49431
+35355,51584,71314
+35356,67971,2669,34344,38998
+35357,23006,837,13428,70015,26958,76995
+35358,15126,57690
+35359,79613
+35360,14680
+35361,44253
+35362,1374,13732
+35363,52031
+35364,72,12259
+35365,3936,4100,41085
+35366,80842,39502,1062
+35367,65915,35261
+35368,16538,64796
+35369,27995,50741
+35370,73122,54872
+35371,3553
+35372,50658,5188
+35373,55875
+35374,11771
+35375,37455,43636,57047
+35376,18297,27000
+35377,24476,67508
+35378,60360,55403,36032
+35379,55092,46616
+35380,36708,7482
+35381,51099
+35382,34621,22543
+35383,649,1628
+35384,58121,63374,22564
+35385,13898,9829
+35386,60790,6368,69846
+35387,36877,34018,72284,21489
+35388,28344
+35389,55521,44207
+35390,59791,6939,2595
+35391,27226,78381,34827,15194,52657
+35392,62069
+35393,70156,42443,16262,24192
+35394,40091,75018,59546,39266
+35395,43622,55826,18631,56425
+35396,2557
+35397,7551,51992,80340,12662
+35398,650,34006,45019,22327,14715
+35399,8177
+35400,32866
+35401,78445
+35402,2938,79831,22969,77553
+35403,19677,63153,44707
+35404,28410,18308,57000,65306,24736
+35405,66510
+35406,52365,50688
+35407,44610
+35408,54503
+35409,49304,70331
+35410,51171,20206
+35411,81110,26015,20489
+35412,6814,21294,48210
+35413,40184,60959,20970,62627
+35414,54880
+35415,78423
+35416,18968
+35417,46272
+35418,66731,51768,8544,62496
+35419,15658,71029
+35420,41199
+35421,5411,37861,63393
+35422,14320
+35423,45010,48257
+35424,67983,53669,6079
+35425,29723,17177,35552
+35426,60396
+35427,45776,52750,38688
+35428,8085
+35429,35432
+35430,11787,64750,38404,55042
+35431,80940,73037
+35432,20197
+35433,25978,62537,41651
+35434,75625,57046,72557,29483
+35435,79784,8259,30349,71040
+35436,35745,46977,61363,23309,17290,24823,81128
+35437,33881,1389,51419,46676,76457
+35438,79559
+35439,7498,60115,74259,21282
+35440,49716,61035
+35441,33419,13190,31909,18785,13379,23020,77984,12318,21446
+35442,47799
+35443,44759,53312
+35444,10749,60167
+35445,65633,69044,854
+35446,33017,21493
+35447,66320,40832,11166,15356
+35448,20949,75787,17732,50231,56795
+35449,7160
+35450,51657,25535,11614,38290
+35451,40391,49016,18129
+35452,27485,67150
+35453,1907
+35454,52863,29230,71054,71722
+35455,14355,39364,25519
+35456,54727
+35457,44985,53634,75453
+35458,44423,59765
+35459,81287,47241,41760,55510,18472,64292,76988
+35460,57890,70390,7271,13922
+35461,22938
+35462,44216,4814
+35463,78629,53754,24011
+35464,65342,18759,69327,13587,52883
+35465,52937,31150,40148
+35466,65719,5532
+35467,55517,36910
+35468,72225
+35469,37207,68867,63430,17438
+35470,15889
+35471,32347,64076,54635
+35472,66499,56257,40931,79229,24452
+35473,49920
+35474,49009,57248,55973,67735,2791
+35475,74852,6326,30271,79295,13926,46732
+35476,46929
+35477,43841,41274,57972
+35478,64983
+35479,56382
+35480,53457,10147,57293
+35481,53556,39514,10402
+35482,4942,46748,45829
+35483,53312,51646
+35484,14152
+35485,42836,52390,67208,80877
+35486,76190
+35487,6619,70494,20802,68354,35683
+35488,16227,9987
+35489,58333
+35490,31741,56332,16121
+35491,22640
+35492,28893,62055,38746,59881,4462
+35493,18423
+35494,22774
+35495,17300,59209
+35496,81551,36813
+35497,42876,23735
+35498,22770,12945
+35499,58007,51533
+35500,45488
+35501,59216
+35502,69718,19454,35338
+35503,45657,34844
+35504,78262,17804,15612,58496
+35505,2283
+35506,3651,68688,47883
+35507,51412,46958,74971,62262,67392
+35508,42495,17264
+35509,18575,56705
+35510,17955,19958
+35511,13504,3953
+35512,77281,46867,15117
+35513,67196
+35514,16034
+35515,62038
+35516,52810
+35517,23146
+35518,46481,71156
+35519,64094,73460
+35520,66785,77724,29634,52654
+35521,24206,55742,64355,10044,12243
+35522,55727,76708
+35523,24065
+35524,60426,47433
+35525,31289,78090
+35526,67781
+35527,40356
+35528,63282,26849,37075,29029
+35529,22523,29945
+35530,31551
+35531,57752,60305,22245
+35532,15541,26257
+35533,16509,5776,80162,13325
+35534,57849,77966,12888
+35535,44763,58102,21722,33521
+35536,67423
+35537,23249
+35538,57034,81202,37398,52803
+35539,16431,38556,36363,65324
+35540,22213,1801,37981,68450
+35541,37955,15992,45816,26510
+35542,79383,41026,35901
+35543,67367,78862
+35544,63450
+35545,19652
+35546,60157,6927,45535,56764,37907
+35547,32517
+35548,64835
+35549,49826
+35550,41359
+35551,68377
+35552,36204
+35553,21048,24924
+35554,34864
+35555,49474,62917
+35556,48229
+35557,6533,37295
+35558,48085,58462,59092,79179
+35559,36074,1285
+35560,78470,71714,32679
+35561,53422,10134,45365
+35562,56648,19360
+35563,8526
+35564,42918
+35565,59891,29910
+35566,37094
+35567,63095,21468
+35568,1398,13055,62625,27439,64849,56976,72504,15343,66874
+35569,61569,80030,346
+35570,71026,61672,31920
+35571,67905,72336
+35572,29726,26981
+35573,34556,9090
+35574,72939
+35575,40980,61655,19213
+35576,1462
+35577,42103,34508,45644
+35578,35700,39246,44053
+35579,55025,48578,26959
+35580,60340
+35581,28285,17756,4441,60125
+35582,1718,70886,9238,23113
+35583,15003
+35584,61240,16343
+35585,79277,50302,30425,11478,68447,75726,81703
+35586,68918
+35587,21067,14184,18776
+35588,29468
+35589,69224
+35590,59041,32713
+35591,22546,34470,35308
+35592,52858,23288,51436,77118
+35593,7291,52900
+35594,51120
+35595,73985,60238
+35596,39254
+35597,51529
+35598,37067
+35599,72268,31351,29579,68353,21343
+35600,25688,36906
+35601,77986,32004,49204,40899
+35602,20353,47596
+35603,47878
+35604,1186
+35605,16885,19516,31547
+35606,53726,32613
+35607,39019,23117
+35608,31338,63093
+35609,40434,16265
+35610,75678
+35611,71169,12441,33913,48404,40663
+35612,80156,77509
+35613,19966,48860,69296,68958,46238,79617,22610
+35614,74760
+35615,9796,31004
+35616,36198,20505
+35617,30249,81777,72906
+35618,40362
+35619,36990,79333
+35620,18124,49787,46266,18722,11115
+35621,55695,71326,10157,73638
+35622,57720,55716,33060
+35623,64545
+35624,32526,31313,68544,69525
+35625,22424
+35626,50763
+35627,27500,44852
+35628,60013,51351,15978,461,11444,39896
+35629,56017,55349
+35630,11333
+35631,43293,52237
+35632,24852,32417,51613,56191,33102,63970
+35633,22568,71930,69983
+35634,9944
+35635,67693,48319,25478,13993,29833
+35636,77127,11665,30552
+35637,28619
+35638,9483,63138
+35639,32686,60752
+35640,46340,91,41611,1001
+35641,75625,64658
+35642,30047,51276,41370
+35643,72712,15140,6851
+35644,59973
+35645,14324,16858
+35646,33612,4928
+35647,36842,36772
+35648,80552
+35649,47864,62626
+35650,66745
+35651,46230
+35652,38600,31004,27036
+35653,59601,2450,77357
+35654,42326,12833,64553
+35655,21507
+35656,8046,43597
+35657,34433,9528,64466,49266
+35658,46311,23994,57228,27410,58941
+35659,78318,58576
+35660,17732,25227,31532,5457,76001
+35661,5420,36051
+35662,4638,30043,11086,30032,76925
+35663,53503
+35664,46627
+35665,36882,78595,50185,22782
+35666,37571,44151
+35667,3215,23822,24537
+35668,9037
+35669,62480,33948,23921
+35670,12035
+35671,65221,34743
+35672,15623,52361,66316,7189
+35673,546
+35674,31733
+35675,26029,48674
+35676,411
+35677,43627,45169
+35678,30461
+35679,80791
+35680,13125
+35681,66240
+35682,30737,14091
+35683,81243
+35684,42274,78526
+35685,6925
+35686,57008,52961,79183
+35687,15427,55583
+35688,46727,78546
+35689,58025
+35690,52870,67692
+35691,53705,16280
+35692,66392
+35693,26696,20059,42562
+35694,65148,10178,21381,61655,13546
+35695,24410,17131
+35696,76841,51953,75400,5515
+35697,37330,29949,67008,69199
+35698,29992,55776,733
+35699,54928
+35700,80110
+35701,21651
+35702,29426
+35703,23999,4982,37978,77428
+35704,56812,68618
+35705,54109,33982
+35706,59847,63339
+35707,49623,47655,75016,65623,51448,36204,41718,68890
+35708,54860,37031,67778,54273
+35709,1305,24069,71392,66920
+35710,33114,75209,49731
+35711,51741,75204,64649
+35712,7991,18386,57983
+35713,60141
+35714,48256
+35715,56207,33356
+35716,29611
+35717,2153,48774,69895,46991
+35718,56232,38094,28947
+35719,77539,29293,57954
+35720,40372,36061,1049
+35721,358,19787
+35722,81223,17331
+35723,4859,78494,74287,5214,69810
+35724,58688,49933,69248,80596
+35725,64747
+35726,25597,20180,59307
+35727,64312,12862
+35728,16866
+35729,67686
+35730,29416
+35731,74493,76279,59847
+35732,29223,42210,957,21687,70949
+35733,67645
+35734,62382
+35735,64563,61334,70207
+35736,52905,719,35072
+35737,32628,24244,14118
+35738,5165,15413,13377,48215
+35739,67276,15026
+35740,69539
+35741,26543,19888,9469,5501,30641,72184
+35742,73942,21205,51206
+35743,41049,36876,15587
+35744,6724,63510
+35745,22236
+35746,17299,38880,47536,25379
+35747,33438,47526,8345,9701,9001
+35748,75023
+35749,16283
+35750,38671,16673
+35751,30067
+35752,81011,27700,80398,25835,17949
+35753,75084,20788
+35754,48649
+35755,2049,28184,61765
+35756,48239,18899,76480,1915,2076
+35757,12262,75733
+35758,3064,9041
+35759,63023,35293,9977
+35760,55509
+35761,14701,7066,6824
+35762,61299,66541,5312
+35763,47825,18974
+35764,58578,57508,41341
+35765,80755,31147
+35766,50499
+35767,36272,64147,4963
+35768,27965,50034,26917,44172
+35769,3500,1579,23178,75606,15093,51589
+35770,52650
+35771,41800
+35772,56036,9118,49371,11292,49166,77655
+35773,53366,77534,44434,20683,78551
+35774,73034,55227,59925
+35775,15445
+35776,28178,6887,57695,13418
+35777,13728,34829,3860
+35778,45014
+35779,27822,29684,79524,75505,76091,627
+35780,59306,1360,46688,51172,81268
+35781,2197
+35782,66429,14894
+35783,20363,17441,43293,70513,33168,37931
+35784,38317,77531,2848,25010,41670,38223
+35785,67208
+35786,37163
+35787,27583
+35788,11508,74516,47731,8579
+35789,19421,6088,59808,48917,62927
+35790,80793,42172
+35791,36513,48643,42370,33100,3332
+35792,63409,64634,19251
+35793,9350,76673
+35794,40663,44596
+35795,27333,11715,61624
+35796,27716,24559,11505
+35797,81040
+35798,36318
+35799,11,21985
+35800,75433,55346
+35801,41370,56360
+35802,46641
+35803,57694
+35804,32841,53778,32293
+35805,17859,9287
+35806,1783
+35807,66737
+35808,21637,77203
+35809,32542,28299,29613,20945,12384
+35810,19396,5665,23262,60293,38972
+35811,38588,29384,52408,13019
+35812,17389,36372,47812,7485,61400,65894,29421,55616
+35813,65097,70585
+35814,40143,61873,34606
+35815,11939,26504
+35816,29720
+35817,60542,40491
+35818,35959
+35819,70982,32785,81245
+35820,65300
+35821,35374,46990,22934
+35822,34250
+35823,69786,79383
+35824,75064
+35825,63096,73948,62605,49544
+35826,60912,46003
+35827,7594,57345
+35828,33523,65610
+35829,31435
+35830,25990,22636,36769,80116,60903,15930
+35831,6095,56410,49997,73097,65778,64395
+35832,54017,49254
+35833,14097
+35834,76956
+35835,53639,68475,30771
+35836,80659
+35837,4306,18154,58315
+35838,70245,80501,54026
+35839,53819
+35840,7914,73903,28683,37442,74711,37311
+35841,1544
+35842,61223,71349,46301,79230
+35843,31616,28259,69223,44226
+35844,78299,77179,5556,60135,5348,2320,18689
+35845,20022,62303
+35846,42165,24753,70786
+35847,73087
+35848,27654,33072
+35849,32068,70422
+35850,48894
+35851,51667,54591
+35852,28938,36962
+35853,19265,62451
+35854,63456
+35855,57369,53567,72726,41860,4917
+35856,49725,22838,38058,72933,40214,46333
+35857,62144,75013,33313
+35858,55049
+35859,36164,13874
+35860,77574
+35861,7896,60543,26538,30011,23919,41217,10507,68768
+35862,54346,59201
+35863,22636,28775,20893
+35864,45767,45586
+35865,46760,66751,4324
+35866,59032,23657,32383
+35867,67595,4178,55395
+35868,49477,58401
+35869,34877,30177,57942,22524,78084
+35870,19081
+35871,63552
+35872,4423
+35873,48742
+35874,53536,50453,2057,74856
+35875,6297,5412,66506,66916
+35876,34091,28876
+35877,68136,58754
+35878,69988
+35879,28092,47949,23016,55983,48783,39397
+35880,64563,39442
+35881,29060,540,9357,58729
+35882,12432
+35883,53530,50586
+35884,17881,21216
+35885,41698,12850
+35886,17493
+35887,29313,80126,8085,35385
+35888,1010
+35889,42631
+35890,77778,65781,8741,7865
+35891,8229
+35892,80271
+35893,30451,28393,76797,20953,47115
+35894,313,68482,80464
+35895,28332,64121
+35896,23676,2074,74787,34481
+35897,58157,9796,42792,887,68749,53050
+35898,9037,34194
+35899,43655,74239
+35900,2565,30835,23634
+35901,18107,15183
+35902,76473
+35903,47406
+35904,29413,70651,39731,70893
+35905,41075,35005,499
+35906,5161,62277,55019,11736,43744
+35907,13692,2798,17745,53767
+35908,28788
+35909,14099,62027,57729,15011,44837,3287,57926
+35910,40502,12474
+35911,60559,62097,34378
+35912,36680
+35913,29285,71773,66003,11999,38001
+35914,6420,20191,49911,39587
+35915,28330,16971
+35916,1665,81304,1336,23654
+35917,9552,32686,3300
+35918,72271,67973,54903,46648
+35919,53454,70768
+35920,66358,29432
+35921,64475,73232,34934
+35922,33208,36458
+35923,49421,78826
+35924,34098,57171,46628,24426
+35925,63515,33636
+35926,464,35711
+35927,76921,27104,55953
+35928,2687
+35929,59112,61961,68043,42894
+35930,72395
+35931,56643,24234
+35932,12977,9499,62396,74556
+35933,44369,25588,69144
+35934,43931,9277,72177,40904,71346
+35935,39752
+35936,63106,54402,9131,41348
+35937,7158,72369,48962,36930
+35938,40847
+35939,66925,60217,31967,32841
+35940,16439,6723
+35941,42146
+35942,22353
+35943,11251,78466
+35944,6078,15901,8138,33924
+35945,29914
+35946,16028,19214
+35947,57486,9021
+35948,47228,8474,46571
+35949,36306
+35950,42198,39299,45604
+35951,56985,19
+35952,534,28213,5957
+35953,30859,68668,57134,71730,40106
+35954,54092,46696
+35955,46033,11242,53133
+35956,49526,49435,33880
+35957,53439,20577,60861
+35958,31082
+35959,9579
+35960,51613,6377
+35961,60138,61935,70787,4379
+35962,25531
+35963,73857,66664,14114,67055
+35964,49291
+35965,77139,3196,27748,25157,11067
+35966,71657,55373,76866,20762
+35967,36570,51663,47747
+35968,49761,52933,61729
+35969,22969
+35970,2375,66843
+35971,38167
+35972,24367,54818
+35973,68027,20617,57388,149
+35974,15737
+35975,33888,48989,9716
+35976,24761
+35977,30604,14742,77426,23333,4463,6580,76399
+35978,35389,73724
+35979,30736,5697
+35980,28406,41272,55658,66887,54781,81067
+35981,77192
+35982,697,75511,43922
+35983,8470,32792
+35984,68848,41384
+35985,9088,65944,14314
+35986,73145
+35987,76711,81241,20644,45664
+35988,11867,9787,50396
+35989,81975,20210
+35990,13916
+35991,60091,66104
+35992,32590,1374,35222
+35993,78373
+35994,43121
+35995,49446,24472
+35996,14112,4139,35597,8284
+35997,29369,50809,63784,81372,50537
+35998,2090,60819,6146
+35999,53349,40453,35413,27471
+36000,44429,53749,41370
+36001,35131,73889,1676,8040,18004
+36002,49165
+36003,27472,17665,58826
+36004,42318,33443
+36005,37419
+36006,32952,78862,9055,50567
+36007,29116,25974,72228,78376,39952,49488
+36008,37067
+36009,47846,56757
+36010,23763,33516,3765
+36011,38643,26001,16787,9905,13277
+36012,62941
+36013,22991
+36014,53381
+36015,58260
+36016,7047,81970,2101
+36017,6701
+36018,79751
+36019,17390
+36020,32700,33583
+36021,58797
+36022,18459
+36023,2022
+36024,16170,53752,42297
+36025,20515
+36026,2786
+36027,29097
+36028,39492,53649
+36029,44371,42103
+36030,23978,76919,51119
+36031,78170
+36032,48142,8728
+36033,81996,47259,76129,31508
+36034,61798
+36035,61864,25260,80463,27907
+36036,77831,7355,11536
+36037,23305
+36038,63380
+36039,66434
+36040,22649
+36041,71721,4814
+36042,32473,56796,79217,2930,24211,3904
+36043,57926,45279,8031,50354,4790
+36044,13557,37726,9041
+36045,81409,74529
+36046,58393,8176
+36047,37391,6979,9189,30264,78817,15841,14452
+36048,78212
+36049,78214,36536
+36050,40474,29528,77385,61512,74362
+36051,79140
+36052,65210
+36053,81344,52817
+36054,4463
+36055,63078,29657,23014
+36056,58170
+36057,52044,21900,80002
+36058,60945,23788,8627,4512
+36059,10243,23212,46306
+36060,57756
+36061,78735,24243,20788
+36062,46768
+36063,66865,15603
+36064,74155,69388
+36065,7598,28880,61673
+36066,30452
+36067,77218,42371
+36068,62394,2207
+36069,63926,56771,64392
+36070,35752,21221
+36071,73048,20424,22540,70075
+36072,42324,73007,40104,19246
+36073,42121,51843
+36074,56535,22587
+36075,38554,27249,54567
+36076,21887
+36077,39818
+36078,1143,57629,37200,5896,12047
+36079,55793
+36080,2707,51959,2549,6402
+36081,33468,26802,65030
+36082,7398,47094,14581
+36083,12642
+36084,76306
+36085,4379,31181
+36086,4286,31906,66536
+36087,2480
+36088,14565,52876
+36089,40401
+36090,3651,26452,21444
+36091,12798
+36092,57675
+36093,67739,75154,20753,58598
+36094,64195
+36095,7650,45863
+36096,78386,31166,5747,80996,72994
+36097,17233,56446,34355,49658,44325
+36098,80909,64845
+36099,19401
+36100,31324,15138,9868,25722,16872
+36101,11578,4063
+36102,53396
+36103,52691
+36104,45231
+36105,78071
+36106,24648,6316,46390
+36107,19016,74806,57479
+36108,48970,75250,17170,73026
+36109,61874,72840,51101
+36110,73738
+36111,57781,78558
+36112,30425,43527
+36113,35524
+36114,19924
+36115,14147,451,30733
+36116,6371,49500
+36117,22743,38003,43169,14044
+36118,78540,30064,47220,29965
+36119,48697,76711,46768,57211
+36120,79372,33119
+36121,53054
+36122,61889,62798,55770
+36123,27246
+36124,36747,24007,20877,43087,28705,19064,69022
+36125,21978,17862
+36126,51272
+36127,42995,2947,52317
+36128,32210,65432,41420,82145
+36129,78154,26303,17817
+36130,8775
+36131,38039,56612,47902,29603,22849,63821
+36132,5257,37689
+36133,60387,28979
+36134,51972
+36135,39967,47085,57483,5980
+36136,23820
+36137,24676
+36138,17336,4543,38840,80907,69721
+36139,58056,60794,58749
+36140,38954,19866
+36141,63825,52602,36224
+36142,76085
+36143,53284,46550
+36144,37739,27098
+36145,62326,77360,51388,19287
+36146,17596
+36147,68957,4587
+36148,72786,15600
+36149,34726,76748,13702,56623,17804
+36150,62953,70266
+36151,67823
+36152,6941
+36153,80031,14926
+36154,71898,70453
+36155,49223
+36156,79238,17761,27274,36142
+36157,7532,16670
+36158,25726,54443,4712
+36159,4812,79607,2186,49052
+36160,46408
+36161,80953,29285
+36162,2272
+36163,8225
+36164,76981,33532,7935
+36165,614
+36166,57342
+36167,68914
+36168,17494
+36169,12475
+36170,48813,15523,21077
+36171,65850
+36172,45558
+36173,9471,45465,34551,10051,71796
+36174,56049
+36175,1347,56855,17848
+36176,1400
+36177,35880,48621,47678
+36178,78972,53669,25062
+36179,45738,9193,23447,30026,20623,44016
+36180,22980,53746
+36181,20987
+36182,67005
+36183,27090
+36184,61587
+36185,27743,39136,43354
+36186,55072,69091,10171,11076
+36187,45815,78398
+36188,48841
+36189,28698
+36190,951
+36191,7880,63594,39582,7236
+36192,51463
+36193,25874,29079,20283,73038,22800
+36194,57964,11588,28447,28091,48461
+36195,23056,5026
+36196,29725,71067,20605,5384,78350
+36197,50630,62486,1868,63541,69114
+36198,56280
+36199,26367,54162
+36200,77056
+36201,17539,62516,41177
+36202,8605,74721,70759,14172
+36203,38866,48207
+36204,40669,44696
+36205,62905,34990
+36206,22237,74625,79530,22160,24932,26445,16759,58935,6225
+36207,46269,64276
+36208,8788
+36209,60829,20949,34139
+36210,20805,64440
+36211,34533
+36212,42962,18532
+36213,6917
+36214,46329
+36215,66596,47552,75463,73153,41517
+36216,14313
+36217,77656,54233,36462
+36218,66642
+36219,26859,34028,41630,16699
+36220,50686,6414,69249
+36221,32848,2446,79671,64144
+36222,54863,26393,53981
+36223,81291,41359,65448,80308
+36224,19719,80523,16754,42899
+36225,17419,13813,18693
+36226,31310
+36227,33371,43263,35259,55479,19618
+36228,44170,16074,76193
+36229,11308,59807
+36230,10822,25619
+36231,41981,37906,45091,58078
+36232,72307
+36233,22129,44778,19899,42635,72282
+36234,26733,48659,60564,41064
+36235,65646,42053,68986,45856
+36236,1380
+36237,70176,81181,79213,39355
+36238,28295
+36239,77466
+36240,1160
+36241,13494
+36242,25450,72336,45877,35524,66566
+36243,69982,73145,23929
+36244,65545
+36245,38273,51970,3073
+36246,35838,52003,34167,76479
+36247,12122
+36248,28852,43534
+36249,22406
+36250,72704,2809,30123,56017
+36251,17646,38094,60661
+36252,81676
+36253,21374,45171,50554
+36254,50691,39448,34880
+36255,8123,56186,53328,59121
+36256,28569
+36257,46570,26271,32966
+36258,15660,69644
+36259,6844,72393
+36260,32704
+36261,24939,74650,61366,50301
+36262,2253
+36263,17276,8709,23733,33123,21369,76985,30171
+36264,61294,15193,76415
+36265,9115,35547,39919
+36266,982,11921,70991
+36267,37877,38561
+36268,23848
+36269,73531
+36270,50048,18139
+36271,45474
+36272,81586
+36273,12043,57068,52222,3877
+36274,34213
+36275,1727
+36276,2593,54526,13002
+36277,76173
+36278,35957,79627,15746
+36279,56009,42901,64356,19709,25929
+36280,34274
+36281,38461,74645,8068
+36282,77860,80359,16651
+36283,64834,16783
+36284,77951,42115
+36285,21565,70339,56206
+36286,52251,32591,41817,72918,6797
+36287,34291,24245
+36288,70897,34226,55063,34674
+36289,17454
+36290,77110,62656,14976
+36291,15148
+36292,42446,80256,16427
+36293,23099,26197
+36294,26229,25685,13539
+36295,22853,19087
+36296,44439,15627
+36297,72171,53630
+36298,44333,63504,44112
+36299,11746
+36300,59112,61328,13055
+36301,14271,31708,73560,35588
+36302,53559
+36303,62349,81543,52096,24838
+36304,74229
+36305,41267,62391,49073,43912
+36306,65977
+36307,44321,54188,8196
+36308,15077
+36309,69822,59833
+36310,14746,20502,56928,57025,5083
+36311,28465
+36312,5383
+36313,45293
+36314,74733
+36315,44101
+36316,46271,55467,9649
+36317,38589
+36318,26678,48669
+36319,22504,58950
+36320,2614,65072,57546
+36321,45835
+36322,74525,9511
+36323,33652,71663,21701,67327
+36324,31217
+36325,45060
+36326,35670
+36327,40436,1889,81944
+36328,23899
+36329,29760,58798,34169
+36330,61222,67501
+36331,79949
+36332,4324,6964,71644
+36333,63451
+36334,23729
+36335,50048
+36336,35934,58365,63321
+36337,70593,76368
+36338,54114
+36339,52476,39215
+36340,39848,47062,16388,79890
+36341,9185,34282,23633,13403
+36342,81138
+36343,61065,17497,70861,26473
+36344,21989,25997,19687
+36345,48492,78678
+36346,30289
+36347,62554
+36348,12219,77324,51154,18392,77007,11794
+36349,57944,49942,22173,8655,40272
+36350,6302,77511
+36351,7512
+36352,68458
+36353,76069
+36354,46423,73018,75029
+36355,42064,71591,27059,20573
+36356,45962,70841
+36357,9628
+36358,51386,16258,26112,50151
+36359,14685
+36360,68449
+36361,24438
+36362,54762
+36363,42161
+36364,11674,46745,63916,55799
+36365,47807,58022
+36366,45922,43657,68045,64248
+36367,45211,57114
+36368,21282
+36369,847,19265
+36370,19627
+36371,28032,77372,28370,77775,31985
+36372,52712
+36373,42659
+36374,17870,12218
+36375,27493,64608,48132,80235,80202
+36376,1784,11020,6910
+36377,33668,73256,74220,69227
+36378,30288
+36379,56368
+36380,69276
+36381,3079,18798
+36382,47663
+36383,30272,14632,4264,76872
+36384,49118,74334,75433
+36385,59093,25034
+36386,23216,30951,52178,65492,74862,28068
+36387,47420,62812
+36388,39913,58875,23434
+36389,30819,58706
+36390,45714,65349,39522,21332,70631
+36391,42719
+36392,13159,1131,1482,47837,27859
+36393,21524
+36394,25569
+36395,71510
+36396,43012,47811
+36397,46849,69151
+36398,1719
+36399,20213
+36400,1274
+36401,15127
+36402,38338,53763,63525,58093,48861,18468
+36403,80123
+36404,51273,23841,29110
+36405,37529
+36406,22828,25426,49983
+36407,22253
+36408,81705
+36409,58243,69002,20994
+36410,50683,36052
+36411,80120,19119
+36412,5195
+36413,20433,69795,6284,34367
+36414,1313,52826,22814,25406,12913
+36415,27251,72837
+36416,25159
+36417,72893
+36418,20266,28941,39052
+36419,64009
+36420,62523,75644,39642,10604,54357,22358
+36421,13864,2995
+36422,61640,51524,62983,13624
+36423,1487,1820,53728,60546
+36424,62738
+36425,8971,79827
+36426,37349,17563
+36427,60933,75324
+36428,34391
+36429,25065
+36430,74878,51600
+36431,7595
+36432,62597,79810,27686,16560
+36433,32723,47664,35107,9699,5870
+36434,48944,70158
+36435,27445,60255,71999
+36436,9977
+36437,35220,5584,51293,41717,43176
+36438,43706
+36439,66241
+36440,31039,7679,2949
+36441,13952,37311
+36442,48300,18789,77654
+36443,7575
+36444,64754,30250
+36445,71105,1649,41344
+36446,34798,5032,52444,54247
+36447,22100
+36448,8215,3939,73268
+36449,16922
+36450,43742,39571,25311
+36451,31724
+36452,60067,57003,60767,15581
+36453,32056,37282
+36454,59882
+36455,18746
+36456,11427,44710
+36457,68882,8695
+36458,70047
+36459,11593,58424
+36460,27534,38104,40888,8182,21637
+36461,20522,18139,38749
+36462,1550
+36463,7014,58386
+36464,81396
+36465,53221,17491,76316
+36466,8071
+36467,52381,22686
+36468,52537,5424
+36469,13330,14844
+36470,58525,81726,32724
+36471,49077
+36472,51975
+36473,1686
+36474,34767,4607
+36475,51065
+36476,80882,59971,48047
+36477,56228,77847
+36478,54237,69031
+36479,58383
+36480,77738,69697,76318,73649
+36481,607,72156,48723
+36482,71355
+36483,58388,13780
+36484,33657,63422
+36485,12214,43543,16972,60579
+36486,73935
+36487,56283
+36488,58072
+36489,16866
+36490,65815,9658,12812,55885,19367
+36491,7840
+36492,26098,13597
+36493,28925
+36494,65489,2590
+36495,80485,58574,1029
+36496,34887,40141,27568,60110
+36497,75074,28082
+36498,79360,75132,34943,16250
+36499,70579,49176
+36500,62423
+36501,61167
+36502,76044,27882,37804
+36503,7139,8391,8353,40398,8069,17914
+36504,56253,3549
+36505,55527,46054,18167
+36506,46573,28165,3829,7816
+36507,73274
+36508,63732,12600
+36509,5,68147
+36510,50354,70654
+36511,45145,81242,12504,29495
+36512,26484
+36513,56810
+36514,36256
+36515,23293,45405
+36516,67733,55038,17332,68430
+36517,31151
+36518,77290
+36519,2595,66092
+36520,67111
+36521,28258,63338,79960,62078
+36522,16593,31283,28411
+36523,77254
+36524,14552
+36525,10035,55917,34197
+36526,43265,25432
+36527,6278,57320,64454,26533
+36528,42161,38999
+36529,28079,81244,62973,50103,68075
+36530,30221,44668,8245,21699,19368
+36531,27383
+36532,69144
+36533,14178,35904,70825,50960,81281
+36534,12680,72473,2734,41654,41960
+36535,48416,56674,27356
+36536,18610,74066
+36537,39167,62783,55046,3072
+36538,63526
+36539,20526,65505
+36540,36222,24362,80156,5391,26364,15145
+36541,36299,42814,64245,65799,61454
+36542,12399,29167,64372,12946,1563
+36543,69472,80824,74228
+36544,60317
+36545,32865,62510,54388,4125,52298
+36546,29227
+36547,25476,27304,47859
+36548,57136,16514
+36549,61470,39917
+36550,37412,22735,3517,10734,14156,40168,23685
+36551,52490,28623,34253,26845
+36552,62849
+36553,3305,58412,57719
+36554,69619,14536
+36555,55370,70894,17145
+36556,4335,20140,76738
+36557,58694
+36558,46911,3541,62517
+36559,21874,70402,1960
+36560,66558
+36561,20026,2720
+36562,43244,29216,51767
+36563,44662,1290
+36564,25065
+36565,13280,44276,47330
+36566,75019,76002,69170
+36567,52186,22696
+36568,54338,73244
+36569,24050,211
+36570,36163
+36571,55366,52628
+36572,60998,23399,78671
+36573,32205,45316,66343,42220
+36574,77556,33970,27652
+36575,39218,33204,15442,23932
+36576,58099
+36577,28184
+36578,24666
+36579,16922
+36580,56955
+36581,69020
+36582,75024,36476,82080
+36583,25314,27409,57114,9370
+36584,149
+36585,62260,48271,45240
+36586,72243
+36587,17867,67921,30504
+36588,73864,25037,60903,55253,48791
+36589,24269,68438
+36590,41712,49071,34331,21704
+36591,17826
+36592,21922
+36593,2068,24187,4385
+36594,27167,43682,32538,71188,35720
+36595,40064,43254,40617,37153
+36596,50803,60559,60204,66577
+36597,39294,78932
+36598,18941,12262
+36599,30348,10233,16555
+36600,48722,35214,25772,77229
+36601,23014,14065,19895,56589,64542
+36602,54976,35320
+36603,20053
+36604,64231,68638,48327
+36605,24113,25794,5445
+36606,64227,81568,21529,48666,75093
+36607,27232,46970,71019,22295,78406,22516,13552
+36608,1972,73310,70542
+36609,69842,78561
+36610,30133,7238
+36611,43097,13018
+36612,55694,78647,71769,81120,82160,34531
+36613,22516
+36614,64279
+36615,73880,5268
+36616,8509
+36617,75472,36164
+36618,9524
+36619,1750,15020,32028,53586
+36620,69705,9669,26787,24080
+36621,30097,82110,51978
+36622,21673,43563,15846,26781
+36623,62644,34261,4804,70186
+36624,60182,32898,7951
+36625,25152,499,48926
+36626,36314,26663
+36627,31169,20453
+36628,12836,44843
+36629,38839,1109,68632,16674
+36630,49482
+36631,68366
+36632,59147,49479
+36633,30638,44592
+36634,11271,75150,61871
+36635,15965
+36636,66490,45320,33819
+36637,43901,44525,70934,71392
+36638,5580
+36639,38506
+36640,23249
+36641,20525,68339,28466
+36642,11912,67727,65281
+36643,69814,2214,68880,34310
+36644,33362,42747,44937,11977
+36645,54926,39041,49205,29440
+36646,63012,72016,81350
+36647,33992,50095
+36648,8006
+36649,65545,24065
+36650,78790,35545
+36651,39479
+36652,50126
+36653,44183,43350,70097,61304,57405,40583
+36654,7672,13979,19271,76316
+36655,24987,42371
+36656,70917,18070
+36657,45874,72382,66140,28371,19165
+36658,32902,7130,58700
+36659,37780,53751,58911
+36660,35426
+36661,17032,73233,60991
+36662,27821
+36663,24001,42506
+36664,614
+36665,18230,74659,28191,78780
+36666,14797,33056
+36667,47701,58192,56108,53416,11829,49916,8261,56614,10448,40586
+36668,49206,15126
+36669,31542
+36670,59737,52685
+36671,939,61866,53459,42251
+36672,72958
+36673,52437,40979
+36674,2947
+36675,1698,40067
+36676,15961
+36677,33441,74652,54048,17636,62999,17209
+36678,55519,77529,2497
+36679,53643,22007,64808
+36680,61470
+36681,47769
+36682,1965,2713,52354,3735
+36683,45656,68950,64569
+36684,71760,29480,6429,27901
+36685,39541,18763
+36686,11868,58502,79614,55715,36127,2146,37947
+36687,72815,29801
+36688,76,15937
+36689,47550,70558
+36690,37863,47568
+36691,58470,67223
+36692,2310,15630,51132,37102
+36693,1311,23183
+36694,17037,51208
+36695,76531,45352
+36696,65039,17332,55104,51383
+36697,9177
+36698,23994,22197
+36699,13183,407,44829,18974
+36700,11796,47817,25966,13324,11797,41668
+36701,68014,7022,18277,43008,805
+36702,42816
+36703,64476,26151
+36704,79219,62199
+36705,45345,39230
+36706,54037
+36707,24312
+36708,32148,26960,47694
+36709,25083
+36710,44318
+36711,62037
+36712,60950,70934
+36713,70995
+36714,52522
+36715,6963,49516,2031,72253
+36716,70398,11701,74060,17093
+36717,19362,7878,45101
+36718,5483
+36719,44956,37300,65070,45780,71037,28393
+36720,58351,6639,48667,31116
+36721,7323,24764,64664,1866
+36722,27488
+36723,58218,29675,48481,23565,12153
+36724,59092,80179,53252
+36725,1143,12562
+36726,12680,10393,28319,45409,13330
+36727,1878,56523,2616,47038
+36728,70905
+36729,18935
+36730,10838
+36731,19760
+36732,11414
+36733,17800
+36734,56332
+36735,735
+36736,72835,46990,50156
+36737,1041,69889,49200,59150,31041
+36738,74992,55659,12248,40211
+36739,79244
+36740,74053,45094,61504,57100,57174
+36741,15914
+36742,59889,9868,35466
+36743,2881,19083,78426,23381,76349
+36744,17725,19881,20415,2027
+36745,36146
+36746,66649,51869,2267,9725
+36747,12691,57234
+36748,22874,17732,6697
+36749,1804
+36750,53479
+36751,14950,17987
+36752,49071
+36753,71573,45734
+36754,10580
+36755,18297
+36756,27524,1644
+36757,22088,49863,59975
+36758,65706
+36759,52905,20175,65881,44719
+36760,23552,8693
+36761,14281
+36762,39407,66177,42508
+36763,80600
+36764,6408,1695
+36765,5875,48971
+36766,20745
+36767,45846,44127,25008,68523,43012
+36768,67635,63701
+36769,70410,26705,34609
+36770,77210,29601,30473
+36771,30387,75929
+36772,49411,22177,40926
+36773,24655,54851
+36774,61967
+36775,63163
+36776,60338,32375
+36777,528,66526
+36778,12965
+36779,81664
+36780,75893
+36781,75081,6778
+36782,14417
+36783,52537
+36784,25700,11523,39598
+36785,76634,57793,77189
+36786,80546,15983,40407
+36787,37111,28274,34853,9050,10115
+36788,35207,60366,59564,2930,66033
+36789,211,30473,21849
+36790,77033,25619,13476,56144
+36791,20421,55392
+36792,71892,59926
+36793,66836,18178,58354,9930,75713
+36794,21416,40032,39483
+36795,76281,29451
+36796,65740,55942,13546,5159
+36797,11563,36041
+36798,17203,30809,26118
+36799,2416,80549,72483,16736
+36800,70995
+36801,58832,57266
+36802,23728
+36803,28006,9275,24819,71116,39450,53735,7965
+36804,68373,49278
+36805,51091
+36806,41083,19357
+36807,27103
+36808,68931,34270
+36809,16554,81001
+36810,16356
+36811,44204,43339,62637,69366
+36812,12608
+36813,70603
+36814,64122,54828,33837,59362,32151
+36815,211,22323,16181,77114,72923
+36816,8025,12860
+36817,60051,44378,42972,50999
+36818,32548,73251
+36819,33608,78246,55314,53014,64231
+36820,1115,19051,75588
+36821,5257
+36822,70896
+36823,46751,2117,31889
+36824,21338,63627,51577
+36825,72219
+36826,60359,45513
+36827,36965
+36828,6207
+36829,64814,48661,20413,27969
+36830,73809,27355,44473
+36831,48745
+36832,66107
+36833,14470,9751
+36834,79006,4139,2890,75405,59475
+36835,55612
+36836,56121,48407,51962
+36837,74738,55510
+36838,10999,80010
+36839,50614,62463
+36840,34847,18713,45273
+36841,28956
+36842,74773,10426
+36843,40262
+36844,74902,32890,15117,64939,66096
+36845,73528
+36846,5657,4011
+36847,29904,64646,15442,50931
+36848,42121
+36849,44356
+36850,28177,66546,41035,50931,62144,58186,67974
+36851,60767,820,45227,51590,69552
+36852,65935,32940,69859,8553
+36853,63190
+36854,62454
+36855,63740
+36856,64778,20879
+36857,58890,77335,74875
+36858,68739,10311
+36859,49495,56507,4269,28802
+36860,29822
+36861,27757,2698,52539,66823,40335
+36862,16741
+36863,37188,21081,75985
+36864,70256
+36865,43045
+36866,30317,57900,75241
+36867,4146,81587,34968,42609
+36868,4241
+36869,76289
+36870,53298,41049
+36871,67369,40474,27514
+36872,12312
+36873,46988,6260,61912,62999,60319,60984,51293,5940,31600
+36874,47781,44515,34481
+36875,63031,79616,82040
+36876,13728
+36877,43582
+36878,3659,67785
+36879,42449,78596,43541,24232,18529,64847
+36880,77342
+36881,49152,19904,28670
+36882,29212
+36883,45310,25707,64205,71859,75972,37763,6252
+36884,5887,77166,17996,46331
+36885,29322,77568
+36886,17964
+36887,14997,80119
+36888,59296,13322
+36889,71834,2128
+36890,47002,80938
+36891,27614,78258,31117
+36892,38631,33096,54524,36809
+36893,15096,70183,422,67259
+36894,72104,21669,60952,15088,4397
+36895,21866,42090,62056
+36896,72919,17587
+36897,67734
+36898,73906,51419,66745
+36899,48811,78598,80482,6947,31642
+36900,12432
+36901,8728,65504,81465,67785,50599,18216
+36902,76751,68051
+36903,5824
+36904,59507,51930,35358
+36905,5604,34286
+36906,78373,49431
+36907,76382,35930,67973,18644
+36908,41739,35295
+36909,45418,39668,4806
+36910,39487
+36911,2836,76697
+36912,44678,72604
+36913,80154,70880,59995
+36914,23000,68
+36915,22443,38362,35756
+36916,21994
+36917,6761
+36918,26838
+36919,38304,44375
+36920,3934
+36921,17263
+36922,38974
+36923,31795,18060
+36924,1328
+36925,45681
+36926,75193,72173
+36927,16352,43524,54340,26015
+36928,2764,66290
+36929,16922,75864
+36930,52379
+36931,73166
+36932,5484
+36933,12440,20992
+36934,50675
+36935,4646,46100,81381
+36936,22312
+36937,21243,68645,81790,49742,17706,58516
+36938,48491,1812,56042,6959
+36939,25066,78323,40200,13999
+36940,1402,13532
+36941,77571,1029
+36942,1933,24453
+36943,28557
+36944,19498,20595,55635,24507,47357
+36945,81746,59633,42885,28279
+36946,10471
+36947,7023,56141,22494,27500
+36948,9414,20706,810,18336
+36949,62719,14747
+36950,42032,67316,44005
+36951,27888,48537,42208,78966,29550
+36952,64666,46710
+36953,77836,13061
+36954,76513,15947,64602
+36955,35630
+36956,43623,2249,78047
+36957,60005,36495,6057
+36958,45992
+36959,59064
+36960,41092
+36961,20943,67645
+36962,8331
+36963,57879,13446,5300,69798
+36964,42355,23768
+36965,58386,38459
+36966,10256,52291,23402,76964
+36967,24889,38886
+36968,6986,74035
+36969,21918,62863,37537
+36970,36403,47676,2350
+36971,56802
+36972,15930
+36973,32814
+36974,19603,70923,65120,77216
+36975,48287
+36976,81511,2591,25521,51796,74626
+36977,57227,73535,59993,77137,74439,24652
+36978,35021,53317,59666
+36979,21303,68731,77512,51517
+36980,16078,22366
+36981,71566,57413,40009
+36982,65425
+36983,32256
+36984,74878
+36985,16262,22791,70497
+36986,17443
+36987,70592,38646
+36988,9217
+36989,6788,77130
+36990,26493,53895
+36991,34347,15131
+36992,70570
+36993,57980
+36994,58503,61208,39972,3187
+36995,32338
+36996,55935
+36997,21951,72932,45309
+36998,17643
+36999,18791,70346
+37000,55027,53096
+37001,45703,30662
+37002,60376,62314
+37003,31528
+37004,23138,14671,6401
+37005,61932
+37006,20273,30133
+37007,76577,75243
+37008,62656,67492,47396
+37009,81430,28456,23829,11832
+37010,74766,25378
+37011,57294,43739,47553,2467
+37012,63740
+37013,10616
+37014,68745,64090
+37015,65855,50035
+37016,17682,14776,59230
+37017,81634,79406,42680,37754
+37018,48100,58314
+37019,33744,71460
+37020,2862,44395,52131
+37021,12196,36421
+37022,65040,12264,17495
+37023,21183,26556
+37024,55815,35730,58370
+37025,81249,19285
+37026,45429,58828,60929,37881,26764
+37027,17943,28480
+37028,6223,26472
+37029,73171,12780,59510
+37030,18306,11829
+37031,18980
+37032,48392,56537
+37033,30289
+37034,2770
+37035,60456,37621,33297,80961
+37036,58837,6188
+37037,14626
+37038,78375,75180
+37039,14480
+37040,57823,73701,27692,62280,27908,55515,51992
+37041,67831,69767
+37042,80292,57762,52056
+37043,69589
+37044,29865,60062,78306,2165,17736
+37045,14837,15324
+37046,27883,5612
+37047,48841,28307
+37048,49193,46254,24955
+37049,3709,30169,51627,77523,18698
+37050,14790,4964,53316
+37051,18986,18941,76746,44660
+37052,65972,23980
+37053,29622,21704
+37054,61052
+37055,6232,47285
+37056,53027,72446,65822
+37057,4257,80716,4194,39155
+37058,26068
+37059,19786
+37060,36393
+37061,70177,77250
+37062,61858
+37063,5591,67600
+37064,8311,13692
+37065,40555
+37066,10128,63556,29336,49329
+37067,16433
+37068,26574,77547,63393
+37069,25552,57373
+37070,81846
+37071,43673,69609,30736
+37072,67223
+37073,68991
+37074,4454
+37075,23222
+37076,29975,65105,48618
+37077,79349,69250,15552
+37078,63552,55580
+37079,32676
+37080,13317
+37081,59841,13843
+37082,21106,41589,41609,15262,13519
+37083,61973
+37084,17239
+37085,77939
+37086,58383
+37087,70044,18485,18357
+37088,47382,25853
+37089,30288
+37090,16923
+37091,8010
+37092,30392,81291
+37093,73616,75967,13186,76799
+37094,23199,57966
+37095,72862,8273,36232,31616
+37096,11665
+37097,67135,10979
+37098,68220
+37099,62996
+37100,43411,2862,30813,67039,52812,1852
+37101,27241
+37102,17757,20783,24595,19297
+37103,71855,76047
+37104,37177,71300
+37105,37795
+37106,34755
+37107,6831,46900,47278
+37108,67444,11508
+37109,33756,20657
+37110,59487,54464,5897,28705,27039,4741,54832
+37111,36173,69279,68950
+37112,81456
+37113,78511
+37114,48241,51257,36081,42402,61628,18440
+37115,69331,54240,20437
+37116,12977,2263
+37117,65085,69766,2657
+37118,34530,11024
+37119,40450
+37120,49266,29660,81695
+37121,70,53952,46465,23735
+37122,42359,45428,70341,66068,4740
+37123,58047
+37124,32958
+37125,7346,36729,60193
+37126,14684,50663
+37127,66613,68698,71092
+37128,55101,15023,3033,48497,20823
+37129,68753,20200,45902,49650,22817
+37130,72373
+37131,27333,44731,78087,25082
+37132,15476,18353,17908,31533,65689,11166
+37133,74533,45101
+37134,34781,65862
+37135,30842,46095
+37136,35527
+37137,42577,14187
+37138,8092,79906,70650,62721
+37139,70762,75361,43358,66851,36632,68729,47390
+37140,69995
+37141,38284
+37142,55397
+37143,65355,59664
+37144,74890
+37145,54307,68111,5501,3029,64297,18981,7864
+37146,56744
+37147,50836
+37148,65685,47440,36226,16653,33239
+37149,36017,60862
+37150,17999
+37151,20682
+37152,25580,52979,53588
+37153,18573
+37154,77026,43920,32875
+37155,32555
+37156,9681,63594
+37157,60393
+37158,49362,77256
+37159,67318,6238,74567
+37160,21054,58183,61999,42154
+37161,34197
+37162,70304,52489
+37163,77453
+37164,69181
+37165,10962,8225
+37166,59462
+37167,68410,181,51354
+37168,48600,59569,40692
+37169,64453,63205,38631,81847,65850,63315
+37170,10863,36048
+37171,73876
+37172,15305
+37173,35056,37751,34935
+37174,61571,59069,53475
+37175,61551,24666,70047
+37176,17367
+37177,78191
+37178,27528
+37179,57826,51243,42956
+37180,18197,30200,8213
+37181,46658,62224
+37182,54563,31979,33644,52948,48198,69684
+37183,25857,6934
+37184,4470,76802,61073,16226,18789,77754
+37185,17863,64884,69095
+37186,73936,61502,38258,64766
+37187,32297,39174,43787,20580,43158,12076,8819
+37188,13001
+37189,63208,36619,18159
+37190,45178,59167
+37191,74767
+37192,22512
+37193,15483
+37194,2132,54854,48408,28047
+37195,1460,44952
+37196,75547
+37197,77792
+37198,4378,4925,74615,49863,2046,1609
+37199,50342,69410,76251
+37200,41573,46408
+37201,27268,13995
+37202,67237,45060
+37203,54551,67756,21199,32536
+37204,48828,77685,11899
+37205,46752,257
+37206,37989,4325,78511
+37207,2995
+37208,54128,64854,74825,31377
+37209,69865,48707
+37210,66233,24251,80455,51987,26202
+37211,52863,13375,68019
+37212,19799,52090
+37213,81018,41012,74389,47002
+37214,74606,24890
+37215,6175,3374,6812,18819,40802,16130
+37216,23502
+37217,35010,7571,72950,66129,13866,26993,48756
+37218,73010,43504,34385,47642
+37219,71268,26039
+37220,70304
+37221,58383,40518
+37222,54229,70628,43217
+37223,24313,10704,13574,37394
+37224,54851
+37225,61901,52898,28391,12421
+37226,4323
+37227,29382,52693,78235
+37228,3547,77210
+37229,59637,6721,56403
+37230,25355
+37231,17235
+37232,34588,44040
+37233,76551,68580
+37234,81032,31078,51850
+37235,7812,9396,73839
+37236,13700,44147,59453,79233,70632,27057
+37237,33510,21541
+37238,1290,37835
+37239,56771,34065
+37240,3333,10388,22230
+37241,13205
+37242,29367,49472
+37243,69074,79967,75318,49071,7743,16043,33733
+37244,27018,43404
+37245,31254
+37246,20888
+37247,55604,17675,1311,24929,11342
+37248,34349,45755,11381,28196
+37249,75852,2824,27894
+37250,19617,44326,42847,33502
+37251,52321,49198
+37252,10769,66672,25005,35077
+37253,39091,51006
+37254,78558
+37255,69374
+37256,66712,35437,72232
+37257,77113
+37258,23324,45079
+37259,38751
+37260,35229
+37261,8396,38520
+37262,49174,79796,64451,38742
+37263,52392
+37264,37496,14118,55782,38682
+37265,34116,40838
+37266,17594,8799
+37267,65673
+37268,59315
+37269,59275
+37270,19062,27306
+37271,75763
+37272,57203,74464
+37273,59860,47101,77086,55667
+37274,77520,25908,47008
+37275,75760,32149,51757
+37276,42439,38352,55391,74173
+37277,42918,28800
+37278,629
+37279,53792,25684
+37280,45512,59935,10695
+37281,55934,64896,14091,26940
+37282,56283
+37283,17419,81907
+37284,21435,23943
+37285,55836,11247,44023
+37286,39526,60454,5148,27020
+37287,35467,61589,23833
+37288,35941,48296
+37289,26282,76915
+37290,22542
+37291,77505,32290,71875
+37292,5445
+37293,33902
+37294,26655,53397,62559
+37295,14809,65537
+37296,70002,53338
+37297,65890,54513,65006
+37298,1313,11360
+37299,27355,67682,52501,60302,42353,70902
+37300,56376
+37301,19701,23134,76476,49432,21125
+37302,23408
+37303,1686
+37304,53041
+37305,12274,48855
+37306,20046
+37307,29422
+37308,10565,60409,56092
+37309,12525
+37310,37905,9310
+37311,34988
+37312,7423,50332
+37313,32097,44480,48362
+37314,4127,15881,67744
+37315,23992
+37316,72882,78344,12001
+37317,18923,50049
+37318,37671,59991
+37319,28153
+37320,22136
+37321,20823,77624
+37322,71355
+37323,59879
+37324,8693,38631
+37325,69573
+37326,49063,73831,63826,50016
+37327,47675
+37328,54490,27759,34663
+37329,14589,76037,75770,27967
+37330,77963,64614
+37331,16470,34790,69157
+37332,61699
+37333,26874,50589,16542
+37334,36481,43032
+37335,19039
+37336,72762,39613,77629
+37337,59969
+37338,16620
+37339,29361
+37340,28742,29782,22143,20621,8510,17975
+37341,22840,54521
+37342,28901,74803
+37343,79218,76435,67908
+37344,44100,13300,72018
+37345,55703,2995
+37346,50151,3699,976,43004,47694,42199,13616
+37347,43950,42817
+37348,64854
+37349,61518,46066
+37350,66409
+37351,30301
+37352,76127,51815
+37353,27670
+37354,76043,25535,67960,69311,77524
+37355,73099
+37356,3682,13339,53325,6961,14601,10854
+37357,19598
+37358,24454
+37359,75524,15194,32651,81909
+37360,21504,10724,22801,71711
+37361,16758,42639,21557,194,17059
+37362,59256,63446,8695,70429,10018
+37363,73720,30168
+37364,23238
+37365,30849,77326
+37366,53170,73991,81961,57606
+37367,46235
+37368,76436
+37369,28776,43042,9717,33882
+37370,35029,68637
+37371,5765,13690,64661,55413
+37372,43235,29170,74811
+37373,20805,30341
+37374,4486,12789
+37375,37202
+37376,79363,40484
+37377,61577,4800,66675,19636,46114
+37378,28339,45506,48089,14456,77510,79114
+37379,65651,6012,24052,44928
+37380,17767
+37381,9838,57427,50586,79394,37719,40977,34173
+37382,74796,53424,3660,47271,11647
+37383,43108,57924
+37384,25599
+37385,19701,10808,70571,44097
+37386,43696,70120,53906,50667,65146,34729,40930,25713
+37387,20550,15691,12472,28100,4534
+37388,74173
+37389,30714,57499
+37390,41885,40460
+37391,49702,17539
+37392,14813
+37393,69632,41367
+37394,74441
+37395,49112
+37396,48232,58667,5849
+37397,32486,36605
+37398,56233
+37399,43662
+37400,28808
+37401,37248,44029,37060,57655
+37402,63078,45660
+37403,18984
+37404,61958
+37405,32412,52691,12126,13676,40907
+37406,42003,23086
+37407,6584,2534
+37408,19616
+37409,26942
+37410,4618
+37411,16548,38364
+37412,56289
+37413,150,73555,62152
+37414,21750,22976,78859
+37415,79858,66798,46258,6415,67995,4924
+37416,62372,36168
+37417,24552
+37418,15119,891
+37419,27061,21346
+37420,55159,69039
+37421,37742
+37422,68338,11268
+37423,76502
+37424,7797
+37425,71648,65481,40505
+37426,62472
+37427,71197,19804,4232
+37428,6368
+37429,24835,17929
+37430,17723
+37431,18915,18913
+37432,21590,17139,74674,49714,3759
+37433,6120,2027
+37434,6327,48264,35679
+37435,54497,36985
+37436,48229
+37437,43688,43780,70475
+37438,77018
+37439,15806
+37440,65916,16338,31866,29870,34787
+37441,74700,54189
+37442,23161,17642,46015,80907,49454
+37443,67318
+37444,65977,76449,19264,18962
+37445,3007,64869,15752
+37446,75560,17943
+37447,52076,30464,3744
+37448,31170,29045
+37449,81855,64064
+37450,64862
+37451,77192
+37452,52785,65245,61004
+37453,3285,70015
+37454,51011,53389
+37455,77930
+37456,79283,80467,50946
+37457,68894,69014,16902,54893
+37458,60290,52364
+37459,14838,46000
+37460,32481
+37461,6990,16049,31102,67895
+37462,9555,48681,11100,24583,31031
+37463,44576
+37464,67178
+37465,3472,77098,27269
+37466,70217,2294,73813
+37467,59445,18290,19711,25645
+37468,8285,30003
+37469,34594
+37470,67692,55292,40134
+37471,50883,41428
+37472,16281,27524,8023,7928,52711,13841
+37473,47018
+37474,70053
+37475,77793
+37476,51850,55089,524,55190
+37477,38020
+37478,58632,15224
+37479,44196,69506,66467
+37480,25220,64882
+37481,9001
+37482,41990,54085,31242
+37483,43792,39156,38568
+37484,58592
+37485,48948,30050
+37486,59833,36517
+37487,41057,46544,47732,55467
+37488,31236,1982
+37489,39309,21541,41821,72794
+37490,12755,4015,75351,20978,3061,75532
+37491,77401
+37492,39270,14265,63030
+37493,27499
+37494,31231
+37495,81054,16570,76277
+37496,20504
+37497,67823
+37498,55345,1357,73402
+37499,78131
+37500,59837,69922,18316
+37501,81223
+37502,25025,25483,75667,58249,69774,5120
+37503,76677
+37504,14281,39265
+37505,77909
+37506,27033,10915,25368,13525,57535
+37507,29094
+37508,35514
+37509,18401,56831,1202,59951
+37510,62611,63033
+37511,53214,63601,60528,45805
+37512,50477,45147
+37513,47930
+37514,42185,28130
+37515,4896,49021,41375,36346,3078,60256
+37516,5575,47716
+37517,12312
+37518,43983,16950
+37519,15660
+37520,78156,46993,10206
+37521,52355,41877,47537,36526,69353,19466,32330
+37522,2568,32772
+37523,41754,62863,46359,71892,71090
+37524,66428,34265,30699
+37525,73938
+37526,65006,55963,5997,59653,45597,60559
+37527,36775,3199
+37528,60395,62139,4054,35187
+37529,30507
+37530,61523,17810,62029
+37531,11693,74056
+37532,63399,57092,16276
+37533,2753,35160
+37534,22311,10220,30957
+37535,5306,79266,70204
+37536,25953
+37537,17607,30452,40437,47136
+37538,37980,20592,31624
+37539,62687
+37540,72173
+37541,51759,12895,14287
+37542,11319,58052,44298,68849
+37543,70351,43470
+37544,38951,9101,13568,32265
+37545,22372,36479,75641
+37546,67965,29766
+37547,15880,4898
+37548,36410,22959,55493
+37549,81562,10547
+37550,7791,72190
+37551,2217
+37552,46317,55108,36898
+37553,24337
+37554,62727,24929,73354,46599,9257
+37555,31884,5660
+37556,72128,43024,16800,11264,7091
+37557,11159,1977,41521,25537
+37558,45562,50331
+37559,24353
+37560,14021,52585
+37561,69766,22543
+37562,70836
+37563,69502
+37564,17184
+37565,58960,44087,6336
+37566,45220
+37567,42406,77806,48241,58309,53640,60559
+37568,75616,74529,16631
+37569,74206
+37570,43861,50933,44474,23194
+37571,24976
+37572,16960
+37573,54817,71942,56592,41865
+37574,12997,47597,29252
+37575,22079
+37576,24348
+37577,71975,20204
+37578,38558
+37579,60362,47828,9438,51430
+37580,3055
+37581,38034,57614,73334,55389
+37582,82174,24068
+37583,22852
+37584,80805,23540,22280
+37585,75383
+37586,81567,58259,53733
+37587,78
+37588,21960,76592
+37589,58956,42135,22967
+37590,13316,55131,70926
+37591,21672,8646,1434,56992,23183
+37592,15183,7302
+37593,13218
+37594,51522,64500,37915,80976
+37595,17980,12535,66766,30283
+37596,40596,78459,14248,63502,19904,81876
+37597,63537,2307,66293
+37598,20805
+37599,27184,29538,45223
+37600,58797,40336,73406
+37601,68235,49766,13233
+37602,54529,65389
+37603,10621,31232
+37604,15859
+37605,59021,19696
+37606,74570
+37607,31584,51468,74807,71234,74190,23910
+37608,77359,56480,20409,12990
+37609,38571,22897,12753
+37610,27207,68270,14770,13931,51962
+37611,73564,39126
+37612,11827
+37613,1075,9751
+37614,52728,25764,39613
+37615,61894,16564
+37616,81643,70764,69861,9943,15817
+37617,76971,81907
+37618,5257,45490,50323
+37619,71035,71920,6362
+37620,52114,29716,45228
+37621,72007,70345,78780,10886,74309
+37622,19401,70917
+37623,5475,42230,53388
+37624,49699,2794,13110
+37625,7921,38726
+37626,32409
+37627,40814,66563
+37628,55299,43332,81987
+37629,22512
+37630,46518,70884
+37631,76426,75858,5451
+37632,25130,61062,79318
+37633,31643
+37634,69804
+37635,1956
+37636,21818
+37637,8961,47463,7657
+37638,52609,71547
+37639,48014,9936
+37640,24655
+37641,71339,37147
+37642,67052,63136
+37643,64374
+37644,23383,7718,35174,68070,41765,70564,11220
+37645,4492,1660
+37646,72263
+37647,13591
+37648,79245,14999
+37649,20706,37882,12240,8850,28137
+37650,49734,9831
+37651,78762,28163
+37652,36389
+37653,16538
+37654,19920,17632,65415,47672
+37655,24537,26376,13706,13913
+37656,68211
+37657,17698,15994,42177
+37658,78018
+37659,66437,17253
+37660,48335
+37661,37508
+37662,72255,74777,3510,46775,24609
+37663,12629,76796,63777,29724,25995
+37664,29992
+37665,68806,14328,28479,14797,77724,45665,37834
+37666,61172,80670,49173
+37667,1843
+37668,41573,3030,64906
+37669,59948
+37670,24091,77499,26667,53870
+37671,47035
+37672,10600,57496,6554,44920,20684
+37673,32873,6826,42281,12466
+37674,74010
+37675,31067
+37676,63441
+37677,56449
+37678,66783,76748
+37679,26601,36331,51155,23429
+37680,30878,42953
+37681,46790
+37682,34616,41470,172
+37683,29766
+37684,5962,79912,4398
+37685,31843,54691,28822
+37686,78214,53206,3500,14004
+37687,1172,26096
+37688,61969,52300
+37689,30461
+37690,67627,304,68618,15270
+37691,65027,74558
+37692,46618
+37693,45592,34180
+37694,11261
+37695,74094
+37696,968,20750
+37697,28185,5888,38286,5052,36536
+37698,39609
+37699,15069,53069,46280
+37700,47804
+37701,60408,14113
+37702,1824
+37703,40782,47331
+37704,43723,40107
+37705,72935,28622,12706,54522
+37706,15766
+37707,67995
+37708,3738
+37709,43265
+37710,22634,69404,69662
+37711,1600,8335
+37712,36766,75079,42886
+37713,38136
+37714,1130
+37715,51192,19687,29818
+37716,71032
+37717,17114,33338,29504
+37718,10180,73915
+37719,12056
+37720,21962,79654,76434,49321
+37721,62274,77163,36637,73969
+37722,73294,33415
+37723,53315,16522,38455,66896
+37724,36407,79659
+37725,61011,58440
+37726,43263,18467
+37727,10401,22062,30734,23223
+37728,60979,22353,7715,10270
+37729,41159
+37730,41439
+37731,31104
+37732,31460,57809,12766
+37733,69348,44151
+37734,71000,2980
+37735,10936
+37736,38858,25274
+37737,54842
+37738,39928,53781
+37739,66511
+37740,41182
+37741,49017,81942
+37742,76863
+37743,25495,52662,63731,54729
+37744,6589,74575,2550
+37745,35355,46121,14480
+37746,59949,17276,11738,15327
+37747,78102
+37748,4049,39082,4160
+37749,6327
+37750,28755,53849
+37751,79413,75548
+37752,39853,15655,42396,18522
+37753,77749,33491
+37754,74289,74751
+37755,20465
+37756,878,39253
+37757,6163,48226
+37758,71832
+37759,10466
+37760,7945
+37761,13212,80920,41550,61264
+37762,26798,72911,27445,51272,43206
+37763,78270,59113,40433,72446
+37764,69102,29135,26606,79785
+37765,79567,13609,45189,21140
+37766,24883,4965,72048,32829,77133,4260,4115,43462,4446
+37767,14138,68333,38042
+37768,42424,58509
+37769,44710,64248,31469,78396
+37770,15966
+37771,71332,20429
+37772,75618
+37773,76395,52395,1948
+37774,17873,22501,64906,6033
+37775,1450,73435,22006,35923,15741
+37776,47053,16244,46169
+37777,56374,71301,49239
+37778,47401,40483
+37779,22413,6825
+37780,30773,9446
+37781,76826,61185
+37782,59084,52199,16737,21833
+37783,65416,14422,52692
+37784,45769,67798,71770
+37785,77419
+37786,61966,28352
+37787,8996,38506
+37788,67735,65565,26417
+37789,75269
+37790,72631
+37791,23252
+37792,15339
+37793,47029,39364,12558
+37794,12068,15142,29842,36933
+37795,4410
+37796,13299,68131
+37797,79641
+37798,67567
+37799,15043,26801
+37800,42076,48136,24013
+37801,47214
+37802,9588
+37803,8097,79702
+37804,68150,21229,55229,73606
+37805,67519
+37806,2766,473,77360,80195
+37807,80481,28037
+37808,14372,31982
+37809,81146,13807
+37810,59767,43404,57674,72752
+37811,30311,47164,7408
+37812,44872,4312
+37813,5516
+37814,46241
+37815,25256,8396,49223,5560
+37816,81671,36748
+37817,17627,33105,46272
+37818,74026,36984
+37819,31419,22400
+37820,41330
+37821,2193,29635,41435
+37822,7744
+37823,64104
+37824,66641,38475,31579
+37825,21427,6643
+37826,15189,6527
+37827,77250
+37828,262,49880,71020,3117
+37829,69650
+37830,77524,64823,69706
+37831,60933
+37832,40055
+37833,1815
+37834,75605,22850,20642
+37835,28602,79001,4994
+37836,72928,24079
+37837,22999,7540,5392,42768,30527,34495,6574,1782
+37838,396
+37839,73889,16357
+37840,43050,37614
+37841,24582,50718
+37842,47507,21865
+37843,54592,28902,26942
+37844,59169,46085,32897
+37845,53041,25484,31778
+37846,9816,1606
+37847,76868,63669
+37848,57336,22058
+37849,78925
+37850,4459
+37851,14787,73270
+37852,25293,75888,59203,49854
+37853,61632,48411,1591
+37854,24745,15762,38769
+37855,5279,37285,55106
+37856,46674,15239
+37857,36357
+37858,49951,27474,13546,33148
+37859,75302,63770,28245,56827
+37860,69753,76385
+37861,13396
+37862,13894
+37863,51214,41542,32710,46099,65587,31845,79046
+37864,61815,10209,6320
+37865,51153,40532,74731,75618
+37866,3325,28078
+37867,41024,47859
+37868,12607
+37869,63166,39462,64703,60350
+37870,60924
+37871,50696
+37872,15950,40659,16812
+37873,45551,77568
+37874,5650,14363,58423
+37875,56862,7898,33959,68094
+37876,78229,75679
+37877,47297
+37878,17583,19734,75689,26771,71515,30622
+37879,2901
+37880,9030,13651
+37881,50508,71797,81942,40464,11270,57488,10463,56207
+37882,11982
+37883,14293,52141,49317
+37884,44366,69805,77868,79215
+37885,59437,4845,44251,26416,2710,3078
+37886,42330,75312
+37887,80034
+37888,22761,65947
+37889,52104,56187
+37890,15818
+37891,8983,50115
+37892,25919,54000
+37893,74982,3095,20995,12617,52398,65887,76845
+37894,39062,38668
+37895,19460,32882,34555
+37896,64678,46512,68027
+37897,78678,34700
+37898,2219
+37899,45375,80229
+37900,42248
+37901,47139
+37902,24478
+37903,79862,21464
+37904,68324,73696,43455,38126,23530
+37905,74414,8576,14114
+37906,34764
+37907,68912
+37908,36331,62627
+37909,35549
+37910,45314,10119,32079
+37911,4611,81554,45141,21753,14453,29042
+37912,39325
+37913,69195,19765,68233
+37914,45513
+37915,30531
+37916,3960,47236,20798,28958
+37917,30605,49478,40491,13788
+37918,17593,25868,38379
+37919,22014
+37920,68373,54963
+37921,9028,28084
+37922,2480,42789
+37923,7138,11959
+37924,75320,79184
+37925,60759,30321,61844
+37926,51326,14949,65056
+37927,66101,35619,68383,39767
+37928,26839,1691,53281
+37929,64748,69486,67832
+37930,2674
+37931,76193,66277
+37932,52151,32519
+37933,77219,74309,66869,32992
+37934,80066,40982,35459
+37935,79268
+37936,14933
+37937,77494,26960,14324,64491
+37938,34348
+37939,27810,32451
+37940,44125,72328
+37941,29220,15718,27581,3425,76029
+37942,49291,62103
+37943,71997,14507,64138
+37944,15734,24889,75661,71264,47799,74271
+37945,49593,22749,41888,54215
+37946,39823
+37947,50759,33417,45299
+37948,81579
+37949,32689,6131
+37950,10405,4986,2207,62040
+37951,51205,18828
+37952,32543,24264,74477,34371,30262,29122
+37953,75064
+37954,45573,42371
+37955,69250,38896,69254
+37956,2915,33645
+37957,76984,37458,24825,25789,51374
+37958,39241,59862
+37959,50359
+37960,71088,55400,2868,46557,72371
+37961,5026
+37962,17078,63770
+37963,38389,45007
+37964,74256,19564,39651
+37965,73015,30363,13239
+37966,73279,26255,71829
+37967,14794,51646
+37968,39610
+37969,24735,34683,34251
+37970,79725,31764
+37971,17270,29733
+37972,7084,48676
+37973,17440,576,44919
+37974,56658,25830,78794
+37975,61118
+37976,77192
+37977,49870,54713,43705,61441,40035,47747,74624
+37978,70877,78417
+37979,6451,68379,80228,56285,74923,51513
+37980,20465
+37981,31575
+37982,66168,23073
+37983,51343
+37984,12964,3852,2986,11572,38257
+37985,6831,60414,17603,5907
+37986,78377,34638
+37987,14103
+37988,25274
+37989,8045,39966,18981
+37990,70853,43757,53621,65974,2748
+37991,29930,12447,25197,76895,70152
+37992,45727,68822,66530
+37993,4215,2831
+37994,43981,75924
+37995,65807,4605,60969
+37996,56199
+37997,47167,37303,19307
+37998,41037,67983,76688,62443
+37999,1418
+38000,37254
+38001,33162
+38002,51883,39684
+38003,12444
+38004,27479,61359
+38005,52916
+38006,58185,7862,45447,19780
+38007,80329
+38008,28254
+38009,835,27959,58720,44019,78610
+38010,62879,34466,55629,24741
+38011,67947
+38012,47768
+38013,63629
+38014,43489,36716
+38015,67791,23881
+38016,22421
+38017,16088
+38018,58878,1394,48099,13372,2207
+38019,44785
+38020,22765
+38021,7938
+38022,60423,41241
+38023,78666
+38024,42176,81519,17172
+38025,54169,73051,44563,39226,31189,74531
+38026,61590
+38027,10420
+38028,45044
+38029,28697,31654,65312
+38030,25827,10994,4225
+38031,76281,52345,68325,75342
+38032,21978,24728,76036
+38033,69039
+38034,65935,14402
+38035,3159,46575,57952
+38036,55584,41903,60666
+38037,35412,72337,24621,45283
+38038,11257,3628,4887
+38039,1743,63802,34771
+38040,60257,56148,32651,78068,21269
+38041,38430
+38042,46397
+38043,21241
+38044,79952
+38045,39353
+38046,8412
+38047,7792,80530,44631,71427
+38048,9773,14984,30674
+38049,52026,13963,28821,35393,39590
+38050,77434,34302
+38051,45851,7498
+38052,66489,48481,62930,24465,68874,3374,59478,20228,69608
+38053,43420,66353,53397,78875,15248
+38054,65867
+38055,32454,37959
+38056,75427,48817
+38057,69734,37724,62476,21692
+38058,56287
+38059,43795
+38060,20760,60928,71875,24932,37314
+38061,18951,81180,15046
+38062,56734,73696,69197,44600
+38063,33724,39297
+38064,18316,52520,18341
+38065,41858
+38066,81380,11799,56288,57192
+38067,23001,6116
+38068,9817,31700,9564,16593
+38069,29708,14691
+38070,47439,60388,53519
+38071,41654,21345,2505,36306
+38072,8053,66457,48026
+38073,46177,26531,13979,57014,2608,12117,22807
+38074,4396,7687,43596,54144,64132
+38075,79369,62276,62010,71504,5977
+38076,1281
+38077,3611
+38078,76741,68152
+38079,1868,25631,12568
+38080,66152,35303
+38081,51829
+38082,73370
+38083,1389,880,14795
+38084,3033
+38085,64474,60182,70656
+38086,73202,894,532
+38087,30825,28759
+38088,39760,17009,78513,22638,63116
+38089,24182
+38090,15326,60067
+38091,67968,6078,68929
+38092,72541
+38093,57643
+38094,60176,66104
+38095,8907,20417
+38096,57382,23307,70345
+38097,22058,8132,66686,50910
+38098,47219,11559,67848
+38099,15106,69220,80322,50508
+38100,65412,46049
+38101,74877,49913,1824
+38102,76789,40280,40748
+38103,42117,17021
+38104,4792,19723,78073
+38105,58590,3344
+38106,65184
+38107,57917,7945
+38108,21186,31239,2844,52091,65146
+38109,20280,10381,54692,16633
+38110,61817
+38111,67991,2836,54847
+38112,72674,32094
+38113,5408
+38114,5192
+38115,43629,63140
+38116,58521
+38117,32627,22214,41452,74975,53163
+38118,47097,31413,44417,60572,49873,37760
+38119,45385,67722
+38120,73915,60427,63147
+38121,58440,15226
+38122,37786
+38123,12214,29973,22575,23358,28572,75272,14844
+38124,60801,57993,3294,48341
+38125,56862,30503
+38126,56386,36451,25751,38651
+38127,52751,64938,53056,6820,41484,70535,40611
+38128,42761,15376,79718
+38129,53941,74309,40740
+38130,77297,43589,62533,26026
+38131,14223,12651,3261,65190
+38132,32890,23519,14721
+38133,63012
+38134,38015,57387
+38135,33225,53479,14130,12255
+38136,28878
+38137,37774,17675,49394,17888
+38138,72341,39245,73411
+38139,62719
+38140,5806
+38141,74844,59410,68171,73608
+38142,11220,53244,3648
+38143,56104,24290,61714
+38144,79572,46243,79053
+38145,16075,68313
+38146,33662,15714
+38147,13808,70896,76814
+38148,7340,54392,44278,54064,43820,30323
+38149,34355,69010,79816,70255,13110
+38150,28092,64182
+38151,41910
+38152,62832
+38153,76688,28349
+38154,25024,14821,43117
+38155,34939,58631
+38156,36788,39633,69249
+38157,17193,27968
+38158,58031,63563,80058,78857,22333,18715
+38159,41773,67922,62828
+38160,2159,73466
+38161,72396,39538,38704,52677
+38162,62188,33961
+38163,36238
+38164,74578,6033,59760
+38165,7544,43478,33633,63237
+38166,57077,42330,65870,80937
+38167,55342
+38168,21973,79989,20776,15148,8198,74129
+38169,58793
+38170,67253,78254,12236
+38171,43709
+38172,52250,6100,11766,49848,42259,52707
+38173,66663,28390
+38174,5658
+38175,70855,30221,26371
+38176,7714,61146
+38177,81513
+38178,34963,73782,68560
+38179,55107,45168,45419,82021,22716,81675
+38180,23008
+38181,79755
+38182,36719,15798,57839
+38183,1533,22191,21252,12612,52468,59782
+38184,15008,66170
+38185,23444,79205,72087,72855
+38186,27207,70868
+38187,38503
+38188,50481,73000,67762
+38189,27022,1161,68583
+38190,5625,82128,61488
+38191,53492,53670
+38192,47996,57380,15515
+38193,76030,33887
+38194,51861
+38195,20505,4845
+38196,60575,41188
+38197,14435,59152
+38198,42473,3805
+38199,19060
+38200,52692,42440
+38201,23529,8182,29389,66916
+38202,30063
+38203,18522
+38204,36184
+38205,34859,68489,1922,21453
+38206,76622,21081,34541
+38207,75998,64088
+38208,52526
+38209,13087,68279
+38210,55281,32318,37475,56594,61804,63156,80138
+38211,74716,75349
+38212,78955
+38213,18677
+38214,81251,15462,40024,35851
+38215,39542,23570,27402,675,38208
+38216,41761,53634,71017,34768,76099
+38217,80088,66696
+38218,71207,7311,40678,31667,9247,3416,47123,57200
+38219,23030,61189,10933,645
+38220,32654,13117
+38221,26202,78752,71436
+38222,20205,64293,7180,37003
+38223,66756
+38224,56183,46810,49994
+38225,27786,19502
+38226,48976,37669
+38227,75336
+38228,77671
+38229,46793
+38230,73432,54631,9987
+38231,58414,951,44925,9709
+38232,6240,35301,65823
+38233,75837,17591,49800,45134,38227
+38234,38290,66462
+38235,51504,41563
+38236,20610,41763,30251,66822
+38237,79417,10654,76563
+38238,19720
+38239,63075,12322,74205,15884,7214
+38240,14708,35469,2719,13168,59528,75724,52473
+38241,78783,68129,4487,1737,57721
+38242,36513,68186
+38243,39710,30962
+38244,12596,62997,44994,61654,54342
+38245,28113,73660,26762
+38246,75440,1777,56270,54452
+38247,76909,54556,42195
+38248,65976,26927,21529,34785
+38249,6915,47954,9333
+38250,14096,77179,29221
+38251,25604,73658
+38252,80019,42774
+38253,14231,19723
+38254,16676,57558,66168
+38255,49790
+38256,27841,81447,79630
+38257,54850
+38258,30026,80696,40278
+38259,79635,4571,33817,14358,74437
+38260,14583,44976
+38261,67797
+38262,14718,17643
+38263,33343,28104,37366,27601
+38264,80450,1883
+38265,44155,3704,48848,79133
+38266,73958
+38267,72284
+38268,55441
+38269,16531,6280,38434,37009,72601
+38270,80756,58261
+38271,26503,50832
+38272,19709,37794,8459,53603
+38273,32793,14535,70002
+38274,25101
+38275,39230,78619
+38276,19871
+38277,76018,28622,3394
+38278,10869,48628,31153
+38279,44964,7792,57584
+38280,80768,55782,62843
+38281,10240,41340,61672
+38282,62463
+38283,58870,79155,3375
+38284,56839,28214
+38285,3729
+38286,31434
+38287,51765
+38288,81826,47714,51760,32706
+38289,18150
+38290,3118,55727,69695
+38291,24975
+38292,75613,62517
+38293,5102
+38294,64900
+38295,54000,2951,22071,47295
+38296,52860,4059,48409,41760
+38297,56993,11264
+38298,32783,9146,80468
+38299,59927
+38300,78207,8855,71683,4618
+38301,55911,14698,36489
+38302,75487,76236,80785,36958,7053
+38303,32225,62428,50242
+38304,46184
+38305,70593,33383
+38306,27063,15521
+38307,74223,57353,20286
+38308,5556
+38309,68907,70375,21505,34794,56709
+38310,39321,34894
+38311,54162,71290
+38312,23706,35467
+38313,20867,32518
+38314,3925,62705,49174
+38315,57701,67748
+38316,73205,35802
+38317,72204
+38318,70892,13519
+38319,28985,37517,17420
+38320,75009,20694,37923
+38321,58364
+38322,81573,9308,2247
+38323,53230
+38324,79375,60518
+38325,59555
+38326,58062
+38327,30081,31611
+38328,51952,42925,79459,44631
+38329,41425
+38330,6175,13426,12178,66010
+38331,72843
+38332,16088,15,15415
+38333,18129,47057
+38334,56386
+38335,80011
+38336,23743,40580,78690
+38337,25459,8538,28084,59869,51068
+38338,15094
+38339,1904,80990
+38340,521,69867
+38341,77219,73305,18922,8782
+38342,77671,24393
+38343,79972,77176,30312,47016
+38344,10884,26200
+38345,25392,47800,32753
+38346,57322,52593,61049,48507
+38347,32213,53080,80271
+38348,67686
+38349,10626,63955,40748,2328
+38350,6058,7261
+38351,37245,46421,71820,59223,80121
+38352,8215,22915
+38353,14680,47005
+38354,4159,48604,20042,40805,52579
+38355,13085,13607
+38356,7461
+38357,1370,78658
+38358,37534,76268
+38359,19135,80722,53213
+38360,56925,81457
+38361,80174,28213,4177,76240,54105
+38362,55886
+38363,38285
+38364,62600
+38365,46863,48274,46438,3340
+38366,69107,41448,32505
+38367,78794
+38368,20501,56789
+38369,36772
+38370,50914,12710,30827,65083
+38371,54635,20503,27059
+38372,30114,48629
+38373,62741,65870,22569
+38374,18865,30522
+38375,44263,79298,38744
+38376,35886,15165
+38377,37703,51038,72887,32997,76932,80207
+38378,2725,14314,49800,10027,47463
+38379,66357
+38380,60156,31751
+38381,40861,69190,22523,67660
+38382,16538,3421
+38383,13202
+38384,78436
+38385,57637
+38386,19681,32656
+38387,15980,22990,78487
+38388,28438,79634,47508
+38389,20898,68605
+38390,20177,46475,61603
+38391,63019,60412,42225
+38392,28786,69653,34587
+38393,29538
+38394,36475,17934,31692
+38395,44994,50065
+38396,40369,30858
+38397,2100,37725
+38398,45851
+38399,27167,39193,28489
+38400,21004
+38401,81596
+38402,40424
+38403,56674,23232,2444
+38404,79604,30890,70466,73406,8740
+38405,19014,51124
+38406,61408,23433,30690
+38407,47940
+38408,67518,19140
+38409,1212,81399
+38410,78036,43084,39303
+38411,33154,38452,46235
+38412,77886,33884
+38413,68578,22965,17596,15603,57228,4012
+38414,60577,76344
+38415,78966,20770
+38416,25564,51528,54613,47796
+38417,287,53722,28564,81306,11165
+38418,56867
+38419,65103,73804
+38420,18803,14055,2318,31062
+38421,71644,55547
+38422,48066,28621
+38423,10620
+38424,54355,74480
+38425,9564
+38426,5329,2166
+38427,24709
+38428,19795,48726
+38429,56514,71586
+38430,47493,48006
+38431,52537
+38432,17272,67025,43912
+38433,38270,22466,45375
+38434,31894,8578
+38435,48613,52984
+38436,7158,82112,50756,67505,3615
+38437,44048,22913
+38438,78128,55131
+38439,14168
+38440,16037,42473
+38441,52317
+38442,13847,63462,80107
+38443,48761
+38444,21816,22915
+38445,49352,43140,6865
+38446,49855,7014
+38447,50900,54128,63973
+38448,60748
+38449,78308,58041,33689,63204,60937,42407
+38450,5691
+38451,71645,10619
+38452,69283
+38453,1055,38450
+38454,28954,12379,35972,67746,52897,25612
+38455,29380,36329
+38456,47709,70917
+38457,6102,36835
+38458,5896,66260
+38459,55131,38323
+38460,36962,8264,49524,19389,14048
+38461,4387
+38462,52519,79531
+38463,77451,24294,57781,2238
+38464,12436,41101
+38465,75387,34431,16872,54895,77961,33427,74884
+38466,67793,67106,59296,22799,1501
+38467,77557,10086,8565
+38468,63997,4412,52657
+38469,74249,52524,61978,35220
+38470,68238
+38471,5907,11778,4494,17647,8320,16113
+38472,9483,50065
+38473,9075,50120
+38474,15934,74704,10737,6371
+38475,10080,62817
+38476,62500,42495
+38477,58951
+38478,42725,29382
+38479,79355,9883
+38480,20045
+38481,81259,75529,65105
+38482,35247,15271,61430
+38483,71103,73766,6189,46815,72578
+38484,32866
+38485,49542
+38486,40990
+38487,34566,70986
+38488,34449
+38489,65211
+38490,2905,71397
+38491,20867
+38492,41330,15885,17088
+38493,62010
+38494,54414,50481,47716,19784
+38495,689,12097
+38496,18987,12412
+38497,48761
+38498,47688,61745,4828,81705
+38499,63873,39433,64893
+38500,17018
+38501,68742
+38502,63737
+38503,66248
+38504,68553,59505,14301,79276,13566
+38505,67720,28330
+38506,342,77080
+38507,33445,21571
+38508,4852,35324
+38509,43149,23746,13042
+38510,53696
+38511,36326,57362
+38512,53385,37982
+38513,62859,48667,59154
+38514,65444
+38515,19978,17439,24359,49476
+38516,75602,42975,66401,13631,55091
+38517,32952
+38518,61299,58506,63455
+38519,15273,3043,75804,44345,66259,34766
+38520,14353,30499
+38521,37241,51634
+38522,71592,71284,43085,3672,20984
+38523,53313,49942,47768,49384,49854,68195
+38524,63163,60972
+38525,46945,15432
+38526,31306
+38527,65229
+38528,64492
+38529,35197,40666,81834,78413
+38530,32801,36211
+38531,73383,1206,59128,41285,20456
+38532,62239,65528,34152,12502
+38533,58617,11799
+38534,66841,17694
+38535,63777
+38536,44814,79458,4238
+38537,31056
+38538,12129,25283,40336,33412
+38539,51953,19787,72622
+38540,27993,24631
+38541,66394
+38542,67246,16226,51467,59298
+38543,52948
+38544,45438,4845,1301
+38545,2999,64352,70240,1117,73891
+38546,29694,66706,65664
+38547,30220
+38548,38834,30399,46739
+38549,8561,52111
+38550,52802
+38551,34476
+38552,81029
+38553,62754,32554,25811,17082,81810
+38554,1189
+38555,37322,36711
+38556,69579
+38557,27368,1339,3562,39074,65715,2341,43752
+38558,58993,70596,34647
+38559,20098,1312,60866,63120
+38560,9544
+38561,68074
+38562,74906,64029,74388
+38563,24662,79410,79598
+38564,69354,45591,9711,40990
+38565,81793,46105
+38566,76532
+38567,66899,39105,62785
+38568,50853,66236
+38569,35012,74223,75589,30773
+38570,48514,52928,72045
+38571,7920,47999
+38572,20010,32821
+38573,61541,29865,28730,15897
+38574,68172,6514
+38575,23924,55398,36148,45271,44175,16711
+38576,39657,67595,35048,76719
+38577,36373,64010
+38578,7990
+38579,1342,42953
+38580,32899,61540,62018,14567,4918
+38581,55972,52008
+38582,17197
+38583,28289
+38584,13283
+38585,26808,19963,63382
+38586,46395,27784
+38587,40488
+38588,58738,62005
+38589,35388
+38590,35086,19800
+38591,63058
+38592,52852,5137,62930
+38593,66394,56811
+38594,17987,184,70154
+38595,73964,27499
+38596,68566,23711,20354
+38597,58774,3158
+38598,3541,53014,18681
+38599,30835,10884
+38600,53894
+38601,71389
+38602,7650
+38603,12135,69375,36465,66269
+38604,61489
+38605,9157,80507,73386
+38606,32287,28327
+38607,23492,63595,19541
+38608,9936,15078
+38609,40424
+38610,48133,75284
+38611,78192,42106
+38612,345,68618,12559,73947,74936
+38613,4712
+38614,45406,52082,56634,42057,57648
+38615,12600,49606
+38616,34517,71202,59529
+38617,60833,39582
+38618,53588,31132,57911,14930,51407
+38619,59414,74968
+38620,69179
+38621,62977,27799
+38622,25388,1063,4601
+38623,4332
+38624,2281,73943
+38625,17604
+38626,42244,3159
+38627,64040
+38628,49392
+38629,72468,5302,54618,20741,29796,20023,57097
+38630,45087,65421
+38631,66320
+38632,22612
+38633,48088
+38634,72215,9477,49940
+38635,19830,29325
+38636,34415,34245
+38637,2208,52120,33354
+38638,64789,14273
+38639,66401,57565,68865
+38640,39506,27326,78867
+38641,57828
+38642,80933,77040,5094,74655,72361
+38643,77716
+38644,16926,77326
+38645,75570,57565,46251,63153
+38646,59225,78649,40518
+38647,77127
+38648,79031,3479
+38649,29694,33497,80478
+38650,34561
+38651,43523,76221
+38652,55519
+38653,38878,73035
+38654,7650,9573,77651,33382
+38655,55986
+38656,70080,33198
+38657,81172
+38658,67389,6336
+38659,44527,13961
+38660,62516,66276
+38661,15920,21072,79454,35401
+38662,44101
+38663,65296,61952
+38664,75858,17149,20467,62848
+38665,39155,23669,54813
+38666,34760
+38667,33041,64558
+38668,26430,70729,78428
+38669,41044,4223,70390
+38670,55135
+38671,46537
+38672,7289,73535
+38673,77695,2465,12041
+38674,7354,9743
+38675,16692,22263,48922,6864
+38676,51561,8576,69270
+38677,5712
+38678,38437,65536
+38679,65548,51813
+38680,31989
+38681,44532
+38682,72727,10616,14021,5450
+38683,79391,32703,53499
+38684,72859,63403,32226,67533
+38685,63348,75919,15051
+38686,23913
+38687,2009,4747
+38688,69488,58092,64810
+38689,10134
+38690,79636,73458
+38691,4372
+38692,66568
+38693,75648,38741,52272
+38694,29733,25121,73827
+38695,43461,38427
+38696,47788
+38697,70056,46437
+38698,14886,1017,13686,16652
+38699,60426,47708
+38700,63890,21897,23446
+38701,70021
+38702,25135,44114
+38703,22285
+38704,9632,58335,21711
+38705,72993,53755,9048
+38706,21472
+38707,63524,75209
+38708,42635
+38709,63899,5557
+38710,41638,56331,15898
+38711,47520,27698,62235
+38712,35195
+38713,64530,2738,49249,75620
+38714,67042,77939,79042
+38715,4260
+38716,39934,46990,23669,56095,81482
+38717,65511,5172,21391,7301,24957,33228
+38718,63571
+38719,45445,7305
+38720,10736,25906
+38721,28391,33500,29770,35210
+38722,49377
+38723,11803,17632
+38724,38335
+38725,67645
+38726,73276,19259
+38727,6672,48222
+38728,14069,18475,31071,61535
+38729,61129
+38730,63210,14577,10174
+38731,23506
+38732,79735
+38733,24541
+38734,60576
+38735,41786
+38736,2209,29766,46209,37036
+38737,7273
+38738,60259,12773
+38739,56813,2682
+38740,58051,62962
+38741,48797
+38742,57905
+38743,23923,66518
+38744,29622,30390,72213
+38745,71660,13735
+38746,77360
+38747,33169
+38748,61049,37098,33124
+38749,80425,348,5864,24373
+38750,80771,28862,49692
+38751,76953
+38752,57571,72307,49722
+38753,45060
+38754,46743,381,62223
+38755,21249
+38756,40455
+38757,39528,79486
+38758,20684,77078
+38759,60423,43724,55102
+38760,64558,76152,44451
+38761,71661,2881,58713
+38762,5231
+38763,75436,250,23244,24171
+38764,18478,18735
+38765,15582,21297,45531
+38766,64830,53486
+38767,76135,20278,45482,24635
+38768,9606,58677,26282,77494
+38769,71054
+38770,16950
+38771,32341
+38772,76161,45055
+38773,67390,81509
+38774,34424,55703
+38775,72967
+38776,79111
+38777,52798,5824,58898,60296
+38778,39963,22874,20999
+38779,70018,35937
+38780,10727
+38781,7236,27224,78622
+38782,33593
+38783,36804,68319,69437,515,53111
+38784,73316,40138,55367,62686
+38785,32227
+38786,10490,18984,76597,78119
+38787,79473,53533
+38788,61366,4214
+38789,27042,25105,33215,77710
+38790,49431,67325,27662,62204,17376,33286
+38791,53330,33552,14210
+38792,20996
+38793,6483,80651,77326,62062
+38794,18910,60437,56004
+38795,15448
+38796,29431,502,55724
+38797,56546
+38798,172,74045,82008
+38799,67282,57093,18549,28886,26191,9710
+38800,19220,27890
+38801,68840,36595,20257,29045
+38802,75309,64204,878,19285
+38803,34807
+38804,39254,33121
+38805,80772,30796,20794
+38806,22454,46963,7847,25946
+38807,9862,28758
+38808,13238,51936,72233,49957
+38809,33030,26114
+38810,53404
+38811,70548
+38812,15384,63502,23256
+38813,55883
+38814,2006,62586,19460,61175
+38815,66149,36934,65459
+38816,62784
+38817,58691
+38818,31615,6672
+38819,13735,41838,2486,42726
+38820,64076
+38821,53941
+38822,23089
+38823,31767,57711,43194,28040
+38824,6291,34192
+38825,60737,56300,81910,8883
+38826,18695,763
+38827,17938,17987,78094,54106
+38828,32742,77058,29933,22761,27124,32257
+38829,22668
+38830,44091
+38831,9908,51811,78853
+38832,42412,64791,48061,65859,29017
+38833,14773,21181,11018
+38834,23711,29759,37696,72888
+38835,22250,63531
+38836,3959,62625
+38837,13273,10215
+38838,9350,81314,4862
+38839,16919,76428
+38840,29355
+38841,67271,15148,23926,36271
+38842,60129,81515,10341
+38843,68435,8567,55436,69941
+38844,21616
+38845,64601
+38846,50530,13608,14279
+38847,73345
+38848,78468,62249
+38849,68908,81268
+38850,54628
+38851,45020,40995
+38852,67295
+38853,23386,3501,34412,26422,32831
+38854,25934,70696
+38855,31647
+38856,13502,67554
+38857,76269
+38858,15423
+38859,38111,12842
+38860,81655,66945,2686,5605
+38861,70837,1587,33159,2788
+38862,24036,34549,46782
+38863,73229,44112,14270
+38864,70591,51031,21013
+38865,22108
+38866,59132,20515
+38867,19371,37345,24439,78590
+38868,78018
+38869,24310,79270
+38870,73255,49315,6561,57689
+38871,47686
+38872,38495,4911
+38873,75754,51434
+38874,43980,5165
+38875,39608,37107,65166
+38876,39606,77785
+38877,28362,6835
+38878,40460
+38879,81394,62298
+38880,10524,18947,5044,67937,53137
+38881,21472,37668
+38882,67197,41987
+38883,18839,45469,31531
+38884,37319,955,77159,2241
+38885,34484
+38886,6197,7870
+38887,21152,81726
+38888,43491,49412,58861,76445,56700,19572
+38889,4852
+38890,20330
+38891,29915
+38892,8695,31730,11936
+38893,57990,61129
+38894,21376,19946,31422
+38895,31770,35618,75787
+38896,24076
+38897,37081,53917
+38898,18074,61747,66328,23128,47957,33422
+38899,33324,74791,40888,21072
+38900,62249
+38901,70921
+38902,75195,23357,3091,30249
+38903,70226,66418,54475,6736
+38904,65613,4445,51522
+38905,65807,55822
+38906,31250,65922
+38907,56688,68479,34909,2944
+38908,5411,22963,80713,63804,3994,63515
+38909,51381,81164,24622
+38910,16797,80516
+38911,68440,2694
+38912,11646,64432,1718,21808,35319,48433
+38913,7622,73739,15485,76925,22215,27304
+38914,80352,2090
+38915,17204,50675
+38916,62456,9126,68686
+38917,28382
+38918,18374,25965,21711,19643,13972,30957
+38919,33397
+38920,6570,30846
+38921,15418,81402,29089,73266,70691
+38922,17736,56312,37822
+38923,55307,33433,14271
+38924,10808
+38925,66784
+38926,74872,77997,52471,30940,64398,29356
+38927,45835,10142
+38928,16925,47270
+38929,3934
+38930,27804,27613,70846
+38931,41162,7001,9201,43372
+38932,3133
+38933,63837,27460,37735,28447
+38934,24220
+38935,49758,20283,62794,22943
+38936,8431
+38937,35318
+38938,44285,52300
+38939,14346,14993
+38940,76270,61516,1918,79591,22779
+38941,57329
+38942,6242,30904
+38943,16877,45966
+38944,47700,18021,76916,12875,49162
+38945,8773
+38946,62157,45639
+38947,58372
+38948,63617,75627,80747,23243,21592,37044,8194,74222,46815
+38949,51918
+38950,16121
+38951,4382,26052,47138
+38952,4319
+38953,4447,28430
+38954,9944
+38955,9934,67136
+38956,65878,30579
+38957,2464,32996
+38958,23353,76369,80921
+38959,48745,70867,75017,55668
+38960,46827
+38961,27560
+38962,43910
+38963,76400
+38964,70647,35811,49147,47228
+38965,42174,23824,78102,74665
+38966,6228
+38967,5106,16476
+38968,39606,14940
+38969,56348,40131
+38970,78241,74058,25634,41893
+38971,12194,7210
+38972,46094,60841
+38973,67989,31948
+38974,76748,20874
+38975,26074,35002,72741,42896
+38976,72899,4971,76334,47646
+38977,71521,13827,57070
+38978,61497,6994
+38979,37315,34755
+38980,38746
+38981,31600,70637,21504
+38982,35668
+38983,49969
+38984,792
+38985,45947,63874,25160,69570,29369
+38986,50936,34116,24097,79242
+38987,80020,42704,75049,34672,9814
+38988,31761,43819
+38989,4695,52834,28536,21935
+38990,11408,76914,32325,21406
+38991,80774,64269,75788
+38992,74564,44904,64856
+38993,24351,67683
+38994,33239
+38995,43082
+38996,9707
+38997,45547
+38998,10103
+38999,68785
+39000,22180,76712,69594
+39001,34532,15687
+39002,48182,75680,45511
+39003,43146,71150,13855,17169
+39004,1781,103
+39005,44362,79308
+39006,45259,57068,24512,693
+39007,74652,50780
+39008,67073,6041
+39009,59115,77261,24004
+39010,65875,23339
+39011,75639,28214,15008,26394
+39012,36187,21939,23445
+39013,38407
+39014,54331,8608,57628,19625
+39015,82135,51247,30027
+39016,16135,14626,54109,27568
+39017,73015,22213,42769
+39018,32586
+39019,81699,12500,77261,26096,77925,73170
+39020,49423,13262,5528
+39021,45861,21017
+39022,58035,59883,15337
+39023,16551,60165,967
+39024,67457,62161
+39025,62224,18566,65195
+39026,5401,4855,38652,38973,50556
+39027,53709,1676
+39028,61182,61941,48777,59600,12450
+39029,49789
+39030,63455,13758
+39031,73710,72508
+39032,33680,62614
+39033,44957,54892
+39034,80246,69189,5557,8632,46390
+39035,13316,41545
+39036,49986,68502,32880
+39037,62136
+39038,7361,10226,76059
+39039,69674
+39040,30467
+39041,64260,28348
+39042,22413,39706
+39043,61151,56442,54011
+39044,1189,32330
+39045,56192
+39046,45496
+39047,79679
+39048,28478,13167,49194,49387,4012
+39049,19969
+39050,21740,8071
+39051,7400,3520
+39052,19220
+39053,7298
+39054,1387
+39055,25384,60703,11616
+39056,26881
+39057,37786
+39058,51701
+39059,34295,60820,75113
+39060,56744
+39061,46845,31519,42185,14750
+39062,34189
+39063,39057,6476,74624
+39064,8857,39196,60930,5991
+39065,6202
+39066,37431,19399
+39067,27051,23859
+39068,8804,49014,32117
+39069,33661,5863
+39070,34700,11198,45110
+39071,65082,63077,77609,6520
+39072,34059,33959,9625,25798,43676,21345
+39073,74632,76411,8270
+39074,48576,21900,35532,50405,40070
+39075,15274,59419,1285
+39076,56510
+39077,549,45454,25083
+39078,66473,21844
+39079,45929,79613
+39080,6261
+39081,60979,5374,75921
+39082,52786,13296
+39083,62655,36882,71368
+39084,32162,59794,29707,45219
+39085,81203
+39086,64186,64018
+39087,60093,66329,35766,17519,12525
+39088,39841
+39089,65173,31517,27246,75829
+39090,6180,12374
+39091,36674
+39092,11727,7836,45306
+39093,60794
+39094,36056,40530,79145,9346,42697
+39095,49539
+39096,80512,9520,19362,13957
+39097,37647,17358
+39098,73337,77176,17935,74451
+39099,36142,20560
+39100,69608,63241
+39101,12578,4214
+39102,26019,11266,22223,22313,66882
+39103,226,32851
+39104,15561,14561,81520
+39105,63467,10061
+39106,61814,63315
+39107,65834,57806
+39108,48046,55974,79785,10902
+39109,39004,12516
+39110,75378
+39111,80066
+39112,73122,64816,16074,25581
+39113,60943,4116,436
+39114,78612,55109,27707
+39115,81229,34252
+39116,68017,32080,56447
+39117,50057,46450,67655,71945,72981
+39118,16103,79001,23083
+39119,18256,44175,69490
+39120,20162
+39121,36048,64462
+39122,77712,36234
+39123,38133,12219,47862
+39124,35126,80728
+39125,33177,19084,38110
+39126,36040,39391
+39127,21932,38602,4262
+39128,56118,22274
+39129,64879,25138,13588,61490,22080
+39130,29006,2788,79891
+39131,19820,58960,55962
+39132,77573,38083,12600,34183
+39133,59050
+39134,24580,26420
+39135,69072
+39136,80259,52534,68373,69703
+39137,68164
+39138,3305
+39139,20651
+39140,55556
+39141,5989,59639,30917,44023
+39142,62186,71854
+39143,43912
+39144,14653,9550
+39145,67932,70155,61714
+39146,77342,65985,54055,58499,48360,67842
+39147,58472
+39148,28852
+39149,7761,59656,53170
+39150,15973,50445,38250
+39151,6048,71619,32061,73452,47008
+39152,43627,61958
+39153,22272
+39154,9715,70462
+39155,41012
+39156,1238,18057,61286,47048
+39157,69211,76227,13558,24776,56476,40664
+39158,80641,14830,53091
+39159,52948,43824
+39160,4430,34856,37449,36522
+39161,8380,45291
+39162,65992
+39163,57633,16819,37383,61343
+39164,63994
+39165,20901,69824
+39166,44703,28183
+39167,47828,66441,6971
+39168,54444,21429,40302,12717
+39169,13661,77857,70797,8738
+39170,68174,12693,38722,65400,73672,30098,80183
+39171,67372,63315
+39172,14355,62872
+39173,48714
+39174,40520,48652,71368
+39175,22155
+39176,33771
+39177,49530,53819,64374,79053,41152,22605,55331
+39178,10374,36394
+39179,55591
+39180,906,11594
+39181,77256,79061,14518,73346,5168,51461,72862
+39182,12281,38427,44943,5637
+39183,27368,60754,52299,65849,69694,245,61871
+39184,73441
+39185,62969,66555
+39186,58403
+39187,64863,20756,2511
+39188,79484
+39189,66139,27024,35849
+39190,71327,55916,9729
+39191,3817
+39192,13010,53578,43092
+39193,13035,65851
+39194,18851
+39195,73485
+39196,14245
+39197,57436,8696,79289
+39198,69924,78598
+39199,31652,23704
+39200,26586,49234
+39201,9280,14628,37751
+39202,7189,78197,16738,69352
+39203,73584,80547,55155
+39204,67064,81327,4176,63664,38332,23217
+39205,8844,31072
+39206,47150,27275
+39207,49475
+39208,738,25385
+39209,82032
+39210,17514
+39211,78687
+39212,12111
+39213,64589,1128,63371
+39214,28526,20210,73153,21327
+39215,54594
+39216,24495,28553
+39217,55935,13767,24125
+39218,62739
+39219,54904,52942
+39220,64981,65731,33827,55716
+39221,4464,46646,24685,1510
+39222,78386,81141
+39223,2318
+39224,20938,57412,55187,19064
+39225,19811
+39226,43966,52394
+39227,61657
+39228,1965,34778
+39229,10957,45483,57340,73862
+39230,11666
+39231,47315,46755,46212
+39232,69957,58834
+39233,79213,76853
+39234,18418,76772
+39235,62515,34253,78510,11377
+39236,37477
+39237,19952,71614
+39238,40630
+39239,69020,71090
+39240,66784
+39241,81734,33691
+39242,41574
+39243,41198,21055
+39244,34562,64380,22209,71314
+39245,39993
+39246,33367
+39247,74745,54720,623
+39248,49594
+39249,26083,71899
+39250,75358,15993,14229
+39251,9240,5461,47101,9764
+39252,51782,39874,23264
+39253,24366
+39254,60870
+39255,36959,20966
+39256,39409,15183,27445
+39257,18971,9785
+39258,59948,16638
+39259,64644,60165
+39260,19304
+39261,57169,13456,25881,29676,64748
+39262,42603,5606,66009,55118,29257,67151,5472
+39263,81991,66906
+39264,13656,76184,44579
+39265,53674
+39266,81288
+39267,68263,28651
+39268,58403
+39269,55843,61425,10872,12920,15157,60629
+39270,35976,71688,60215
+39271,58254,59829,54747,66969
+39272,20880,2836,6420,80667
+39273,43163
+39274,40408,6770
+39275,53813
+39276,2219
+39277,44572,16991
+39278,25535,54092,46204
+39279,37332,13707,33028,40913
+39280,48841,13964
+39281,14716,29157,4121,57620,17091,68684,67328
+39282,72138,30197,54159
+39283,67118,39267,38508
+39284,7968
+39285,35219,9329,30271,16995,23837
+39286,24548,57344,25494,6063
+39287,56670,25341
+39288,15653,45619,16451,76542
+39289,37619,34417
+39290,79121,44701,65142,46149,14941
+39291,26750
+39292,6771,59544,26962,22709,10684
+39293,70285,67773,33896
+39294,26292,47855,1253,36840,26671,42801
+39295,20780,66448,49312,18012
+39296,37002,58324
+39297,76901
+39298,9895,77584,76920
+39299,30808
+39300,3553,42649,16015,39981,62218
+39301,65788,44369,58544,6140
+39302,12987
+39303,53263,53868,64666,16218
+39304,10458,24600,4715
+39305,24476,62363
+39306,9773,13755,190
+39307,10872
+39308,69198,70422
+39309,16922
+39310,57503,5501
+39311,41579,25297
+39312,60765
+39313,247,27807,6922,7446
+39314,76132,41582,57478
+39315,61341
+39316,19452
+39317,384,38257,49900
+39318,70526,35925,69556,80302,29561,75227,27526,60756
+39319,31341
+39320,2123,77036,3918,28589,57721,16654
+39321,2076
+39322,63109,2802,60215
+39323,60575
+39324,36782,24005,63601
+39325,78558
+39326,3258,78690,40515,1691,33539
+39327,989,47678
+39328,75603,3161,27977,58324,47982
+39329,62274,229,28607
+39330,76247,78142,21180
+39331,46460,11067,25796,27800
+39332,24366
+39333,80582,66480,46580
+39334,71855,80452,80482
+39335,28074,40419,32554,66454,28050
+39336,57678,27236
+39337,56740
+39338,31077
+39339,74839
+39340,23333,47313,15741,50910
+39341,14539,81159
+39342,37293,30406,34452,15544
+39343,1581
+39344,34791,61299
+39345,23460,3088,51401
+39346,49304,26259,67437,45205,80814
+39347,24713,60320
+39348,19750,65097,14027,56886,32245
+39349,458,21363,63485,59221
+39350,14545,29043
+39351,74322,39409
+39352,49532,32129,53203
+39353,6987,65607
+39354,71290,7035
+39355,76605,36845,80900
+39356,57425,20097,51946
+39357,67316
+39358,39499,54605,65842,67283
+39359,58706
+39360,27665
+39361,29154,30690,41271,46312
+39362,15271
+39363,54621,10421,14004
+39364,17309,31411
+39365,80234
+39366,61140,24266,58891,48603
+39367,30217,63854,65839
+39368,28375,63930,16658
+39369,14789
+39370,42196,69828
+39371,62977
+39372,3344,29384
+39373,26044,31999
+39374,27235
+39375,12396,27921,36782,70313,81516,22677
+39376,61300,48970
+39377,51363,8552
+39378,52390,31920,38535,57136
+39379,11565,67343,62770,57129
+39380,63730
+39381,52673
+39382,8799,59487,62839,16223,68699
+39383,11653,32832
+39384,68540
+39385,51247,16125
+39386,18567,18979,61714,31906
+39387,43540,73411,69582
+39388,64812,41044,32747
+39389,1611
+39390,69012
+39391,68546
+39392,59343,10182
+39393,80938,9614
+39394,68370
+39395,12399,16399,17188,1574
+39396,9155,51162,26886,11170
+39397,39693,71800,45352,77746,46810
+39398,52558
+39399,64014
+39400,7671
+39401,76279,74231
+39402,8408
+39403,32227
+39404,59039,60360,6328,74090,75380,40470
+39405,21073,22128,36337,73910
+39406,26317
+39407,9250
+39408,35182,66857,46348,62236,27949,67833
+39409,25341,31539
+39410,47404
+39411,44485,48102,71738
+39412,39037
+39413,19242,72425,12721
+39414,21027,26678
+39415,38807,23089
+39416,42567,9363,50669,46984,9196
+39417,32963
+39418,43302,7748,59568
+39419,25987,53523,33302
+39420,14987,427,36977,15810,4257
+39421,13096,74745,52193
+39422,49608,71392
+39423,29067,11178,17609
+39424,73640,60969
+39425,27258,960,56075,66540
+39426,1736
+39427,63140
+39428,14097
+39429,61049,1630,3451
+39430,38262,27774
+39431,43643,69203,53751
+39432,48934,80470
+39433,14783,43846,73256
+39434,28267,26896
+39435,56316,16034
+39436,29067
+39437,1815
+39438,441,74790,76577
+39439,9711,67335,63705,65943
+39440,43485,77652,6466,50468,68008,18672
+39441,21846
+39442,39695,74679
+39443,24142,36367,27486
+39444,76431,82178,81303,77515
+39445,6048,48286,39561,33018,10275,41235
+39446,10845
+39447,11014,24801,12746
+39448,67772
+39449,61167
+39450,44147,11871
+39451,22038,79949,46883
+39452,57047,63308
+39453,42064,61583,81324,17099,70225,48497
+39454,70227
+39455,24823,34731,28054,31515
+39456,18245,32351,64268,7113,6650,33038
+39457,81984
+39458,48507,2669
+39459,18865,9900
+39460,4431,24812,3483
+39461,79331,25980,6042,74302
+39462,60855,41837,36169,537
+39463,10972
+39464,80579,4229
+39465,43769,72907,58179
+39466,80598,61378,23458,57964,49981
+39467,73001,24341
+39468,19525,15988
+39469,24167
+39470,42078,75868,2114,44773
+39471,75289,60079
+39472,7500
+39473,32012,30813,39308,10087
+39474,38641,13412
+39475,50520,8439
+39476,56158
+39477,36687,11436,75218
+39478,73998
+39479,57265
+39480,20828,28061,45476,42888,40739
+39481,48699
+39482,73902
+39483,35634
+39484,79992,72243,16178
+39485,59701
+39486,62657,55620,3742,34743,65233
+39487,23859
+39488,59022,68788
+39489,30383,10409,17710
+39490,27918
+39491,29547
+39492,6346,44976
+39493,32986,1950
+39494,78051
+39495,45793,77334,82165
+39496,45681
+39497,50769,81765,32256
+39498,35774,81842
+39499,30426,27187,30622
+39500,56906,43891,32460
+39501,63966
+39502,57663,38475
+39503,81834,26840,27202
+39504,58671,29143
+39505,71090,18104,26193
+39506,35001,5591
+39507,18769,62054
+39508,56184,5277,7433,20876,74568,16794
+39509,74265,66347,72226,34296
+39510,72137,44199
+39511,44962,20179,72224,20814,19216
+39512,52068
+39513,21472,4814
+39514,54340,65733
+39515,42106
+39516,19680,39142,51891,38801,71675
+39517,69249
+39518,17438
+39519,34496
+39520,25236
+39521,61387,57055
+39522,23447,37571,1464
+39523,10629,36945
+39524,41289,49304
+39525,59846,67105
+39526,55346
+39527,16781,17934,10835
+39528,34944,7214
+39529,41405,22035,25157,82091
+39530,9099,32477,31943,78226
+39531,59672
+39532,6084,28322,43639,9682
+39533,25218,69566,72351
+39534,37039,6369,52143,2419
+39535,75496,35895
+39536,355,51121,4452
+39537,48202,3790
+39538,34779,16150,52023
+39539,47816,26161,58710,46429
+39540,61867,41575
+39541,21380,67983
+39542,46400,73087
+39543,22169
+39544,40124
+39545,22212,5475,45780
+39546,65778
+39547,42306
+39548,39542,58523
+39549,870,58704
+39550,80463
+39551,47679,18219,14632,2851
+39552,45844,1297
+39553,4742,58915,43115
+39554,40957,70640
+39555,74472,77757,23394,15093
+39556,72687,34340,18746,53101,11269,76472
+39557,47059,56585,4463,48447,25464
+39558,17300,16886
+39559,16724
+39560,2801,53940,40303,1676
+39561,47167
+39562,21950,79295,16380
+39563,36535,37086,2855,9983
+39564,40740,34520
+39565,5102
+39566,30456,64747
+39567,56779,21256
+39568,46844,14591,43456,17689,46954
+39569,17130,20122
+39570,2087,66028
+39571,46214,5957
+39572,51949,20022,14130
+39573,60509,19290
+39574,13183
+39575,29657,59766,79057
+39576,8939,65313,6753,58645,8595
+39577,3329
+39578,64228,43311
+39579,6101,6204,56598,17411
+39580,60438,39977,40144,30655
+39581,10187
+39582,69808
+39583,29800,48798,31464
+39584,17878,49358
+39585,35685,62410
+39586,34921,23032
+39587,79198,33986,48930,42602
+39588,28286
+39589,57990
+39590,57830,24395,36469
+39591,66564
+39592,24687,77092,24016,14519
+39593,72766,5646,20775
+39594,60363,3537
+39595,16698,3771
+39596,48928,79867,8451,25703,67307
+39597,81104,53430,36200
+39598,54635,6990,47140
+39599,9934,32878
+39600,70131,29699
+39601,45691,8837,30198
+39602,2633,34361
+39603,62477,34185
+39604,39813,72205,34058,29758
+39605,35224
+39606,29427
+39607,49256,47290,32335
+39608,26935,52891
+39609,39872
+39610,57471,51348
+39611,52126,36972
+39612,43563,6475
+39613,21471
+39614,69255,52844,72948
+39615,44435
+39616,61096,63033,37254,15900
+39617,30748,58774,61652,19451
+39618,22475
+39619,19543,62592
+39620,17746,45366
+39621,31501
+39622,1403
+39623,17368
+39624,12137,39305,53426
+39625,5228
+39626,54161
+39627,35876,25489
+39628,70229
+39629,69266,19473,295,5949,71634
+39630,68661,74606,66058,71406
+39631,81026,70492
+39632,49223,78938,34965
+39633,77909
+39634,9581,44073,57734
+39635,55620,45861,58085,51647,69526
+39636,14991,42206,50255,77812,34471,69713,46952
+39637,4228,35549,73377
+39638,78150,58950
+39639,9389,48504
+39640,70428,69264
+39641,61285
+39642,53251,48120,77293
+39643,49942
+39644,22029
+39645,18876,33279,13191
+39646,19079,59337
+39647,31223
+39648,42061
+39649,42797
+39650,61709,63572
+39651,75593,59346,54456,62310
+39652,27506,70081,44524
+39653,29285,75957,53738,80303,43980,30462
+39654,45238,7754
+39655,14851
+39656,32638,35335,8809
+39657,48721
+39658,59272,7500
+39659,23724,41745,33965,19189
+39660,13843,38893,54304
+39661,29124,30612,43564
+39662,34578,48023,46319
+39663,43843,2351,19274
+39664,25382,66449,46800,23414,13751,51807
+39665,47090,77293,66538,34322
+39666,9028,66734,80758,20967
+39667,50704,59032,33145,24412,19437,51451
+39668,23056
+39669,81811,1068,16640,59503,71633
+39670,16491,39084,79582,75588,37792
+39671,72434,486
+39672,12149
+39673,9998
+39674,66740,62588
+39675,61587
+39676,13653,15052,31798,35154
+39677,29221,59832,49032,4244
+39678,18549,74701,14369,52783,12907
+39679,52603,64821
+39680,61710,10831,9441
+39681,74407,15737,38571,74038
+39682,24139,32737
+39683,43249,12569,32396
+39684,59604
+39685,44930,41108,44181
+39686,62368,9180,2620
+39687,48134,78846,24428,9147,51537
+39688,28321,32449,67681,46158,20529
+39689,64747,41112,33075
+39690,30573,27839,31662,59656
+39691,49005,11421,60494
+39692,39638,78622
+39693,21273
+39694,35634
+39695,57672
+39696,80759
+39697,72798,35627,2375,65778,69236
+39698,40275,35933,76508,25521,76231,64729
+39699,1016,72763
+39700,36783,47403,39339
+39701,50614,38705,40465
+39702,18724
+39703,67802,68476,75733
+39704,78377
+39705,47686
+39706,45374,62652,27177,74756
+39707,76045,76377,74023
+39708,42115,79711
+39709,50145
+39710,25962
+39711,63420,11903,8666
+39712,43713
+39713,66265,60610,28874,16778,40609
+39714,38753
+39715,68725,42211,66431
+39716,14493
+39717,59878,39222,33577
+39718,78038
+39719,27500,65005
+39720,25638
+39721,3284
+39722,49431,33272,54489,62770
+39723,78909
+39724,25958,50386
+39725,16981,30378,20001,50750,72191
+39726,20992,37686,46799
+39727,41872,7185,22128,2716
+39728,3733,70067
+39729,38901,20595
+39730,21609,26317,15683,5168
+39731,51178
+39732,17990,26197,53044,18099
+39733,76735
+39734,46850
+39735,40631,35284,65225
+39736,29213,46216,6995
+39737,56985,41129,75015
+39738,12797,20354,60582
+39739,19960,33182,3500,11620,19203
+39740,25997
+39741,13526,4248
+39742,36169,42711
+39743,3556,60312
+39744,3479
+39745,81695,29970,10241,79313
+39746,21854,16937,16708
+39747,77359,44040
+39748,68293,7663,5765,8780,41703
+39749,27190,6291
+39750,10989
+39751,59124,23169
+39752,6785
+39753,50947,81725,29505,28239
+39754,58352
+39755,52938,77626,38624,43108,54270,30703,24828,30623
+39756,29802,1342,57343
+39757,69679,42502,33204,33223
+39758,17043,12897,16050
+39759,75589
+39760,63413
+39761,3059,80363
+39762,17861
+39763,80683,28053
+39764,33297
+39765,27808,61402,67246,65643
+39766,77395,63547
+39767,4719
+39768,30708
+39769,80478,67396
+39770,14229,34331,54838,55934
+39771,54026
+39772,30125,9561
+39773,27414,37098
+39774,67077,6973,56991
+39775,37086
+39776,62151
+39777,64948
+39778,25489
+39779,60576
+39780,81984,68172,5927
+39781,71744,65394,73810,14976,2153
+39782,60715,56987,52393,80694,63647,42570
+39783,63814,46011
+39784,54495,71613,37337,22093
+39785,29693,36418,56089,6207
+39786,3713,52831
+39787,24172,77005,68820,79758
+39788,33820
+39789,32137
+39790,63778,24347,58623,51746
+39791,20178
+39792,28517,28254,68756,61439
+39793,49879
+39794,64164,70794
+39795,63284,27771,17764
+39796,57885,39277,44889
+39797,76129,38322,65607,65223
+39798,9739,62313
+39799,28655,10853,35187
+39800,70896,3327
+39801,50135,69035
+39802,22593
+39803,35729
+39804,72654,24067,36160,52946,79428
+39805,48867,44516
+39806,56264,42235
+39807,34952,43085
+39808,62926
+39809,40476,56693,19323
+39810,1295,71122,32249
+39811,46231,33546
+39812,67840,30161,26714
+39813,31524,37636
+39814,26846
+39815,1000
+39816,67972,18876,54871
+39817,13085,35786,33725
+39818,78585
+39819,53634,20196,26883
+39820,49046
+39821,39467,75926
+39822,58947,1781
+39823,41018,41828,777
+39824,26845,80692,46908
+39825,46134,31515,17097
+39826,13874,79491
+39827,60495,40672,56972,41380,14950
+39828,69778,12836,20874
+39829,13636,51037,23515
+39830,45990,72293,10704,82174,63803
+39831,7967
+39832,68468,3145
+39833,40825,79037,20951,18299
+39834,45479,42785,6549
+39835,79664,77656,74871
+39836,15217,41570
+39837,32592,156
+39838,34130
+39839,68048
+39840,24005,15015
+39841,33732
+39842,43724,23320
+39843,39984,22346,57964
+39844,51481,35375,29480,24982,66524
+39845,42427,31304
+39846,11333,71130,28712,18265
+39847,38204
+39848,38373
+39849,71105,46449
+39850,52160,27383
+39851,19745,51061,5587
+39852,5736,54846,6159,51615,67103
+39853,48823,76571
+39854,14487
+39855,58772
+39856,58449
+39857,46841
+39858,73310
+39859,81456
+39860,27020,6329,80171
+39861,28950
+39862,68684,47195
+39863,52195
+39864,43248
+39865,39424,11198,70210,41306
+39866,47357,52259,11280,32023
+39867,32656,5227,4837,20363,61590,57040
+39868,76
+39869,68991,33225,31778,78069,78596,10950
+39870,51641,5914,23553,47055,48453
+39871,5415,79620,19066,2847
+39872,9606
+39873,49859,26037
+39874,40124,56346
+39875,40649
+39876,48991,61898,35503
+39877,49101
+39878,29884,82174
+39879,37814
+39880,67855
+39881,13766,22786,18324
+39882,70183,40239
+39883,75605
+39884,24679,66343
+39885,64882,5709,30176,66939
+39886,54319,49516,41829
+39887,51970
+39888,49137
+39889,80484
+39890,46104,47568,58238,6084
+39891,49090,16649,30932,10634,18651,34729,7463
+39892,81736,42931,54458,51400,37291
+39893,63967,78780
+39894,71899
+39895,58810,25593,45900,65749,28480
+39896,76799
+39897,74026
+39898,61908
+39899,76688,23815,53268,74348,25795
+39900,12226,59877,58498
+39901,66231,33279
+39902,60987,17040,74258,60205
+39903,73087
+39904,7171,55455,76044
+39905,57014
+39906,32526
+39907,33035,11671,74966
+39908,8839
+39909,62724,40361,43823,10380
+39910,28344,37009,9658
+39911,65202,33007,57244,79412,4014
+39912,63431
+39913,46813,9179
+39914,15850,79528
+39915,78516,46022
+39916,75291
+39917,57170
+39918,46904,61462,63409,60225
+39919,42090,59225,36184,57789
+39920,78262,56145
+39921,37548
+39922,52359,75140,6335
+39923,29385
+39924,59449
+39925,58268,48260,74964
+39926,1172,18475,62739
+39927,28425,21000,17470
+39928,37709,18419
+39929,15552
+39930,35581,32300,17365,24866
+39931,27897,54579,35549,57886
+39932,40650,22869,68321
+39933,70926,6692
+39934,12176,78554,47085,11009,72988,61845,2619
+39935,2154,40703
+39936,5883,34322,46553,69019
+39937,53562,23922,77823
+39938,58113,29098,57309
+39939,77331,61387
+39940,36872
+39941,36226,17577,59637
+39942,17676,52044,15706
+39943,42662,2571,70775,46696,49129
+39944,78469,11945,37839
+39945,1098,48455
+39946,29853,42985
+39947,80556,42370,29957
+39948,65402,22482,69141
+39949,30770
+39950,60433,23356
+39951,62782,32554,14355,69614,61139
+39952,35564,28327
+39953,55418,29388,30530
+39954,1970,13892
+39955,3886
+39956,16167,68992,70405
+39957,74894,11917
+39958,55174,31596
+39959,64845,12602,37879,75669
+39960,64866
+39961,5411,58323
+39962,7047
+39963,67265
+39964,80110,36732
+39965,37079,66265,56827
+39966,48481,76800,2414,5594
+39967,53573,37748,81443,59945
+39968,32429,27883
+39969,50110
+39970,19657,52019
+39971,59715,32295,80761
+39972,4920,79783
+39973,65416,18673,12658
+39974,34198
+39975,12466,64931,14508,52632
+39976,39223
+39977,10920,68722
+39978,66104
+39979,65644,45244,34940
+39980,227,7500
+39981,78709,50208
+39982,38919
+39983,22592,33923,6928
+39984,18819,60155
+39985,49682
+39986,4544
+39987,51237,42418,27341,13619
+39988,20938,34848,54534
+39989,19071
+39990,65918,22772,891
+39991,25626
+39992,507,24878,1276,24941,25009,40443
+39993,24546,63929
+39994,69962,22598
+39995,71999,18941,3285
+39996,5691
+39997,65433
+39998,69346,4117,7787,21221
+39999,61527,54451,53313,36030
+40000,23853,28828,35675,51664
+40001,41273,46012
+40002,39266,58151,55593,36449
+40003,22047,23608
+40004,23725
+40005,67498,67791,73067
+40006,47151,19681,52085
+40007,20710,22633,74800,54089,39887
+40008,23789,25999
+40009,2445
+40010,73699,20991,21337,29628
+40011,16196,30733,23286,14277,75556
+40012,80832,60275,73345,50284
+40013,35214,42293,67009
+40014,15845
+40015,61675
+40016,71685,36892,29206,10755
+40017,54720,28797,59019
+40018,46426,29255,33533,81067
+40019,25159
+40020,44013,30932,29572
+40021,25738
+40022,15431,32691,76192
+40023,68890,28910,2506
+40024,51393
+40025,20932,41101,40987
+40026,34343
+40027,42489,69079
+40028,43123
+40029,13987,4431,8396
+40030,49593
+40031,67493,24343
+40032,5218,81096
+40033,4242
+40034,55658,27919,43622,118,73524
+40035,72205,24083,19048
+40036,71532,23006,23433,77817,33754
+40037,78623,72564,61833,39748
+40038,54270
+40039,29302
+40040,7544,24580,24777
+40041,62029,6961,15723,23942
+40042,28344,76099,39598,23706,50060
+40043,38331
+40044,66613,51731,39604
+40045,23195,31952,29973,14602
+40046,13311,68509,22701,3238,58056
+40047,45774
+40048,1823,59279,54985
+40049,43164,21593
+40050,76927
+40051,74689,76032,32003,57330,77179
+40052,41386
+40053,59674
+40054,29381,34043
+40055,32828
+40056,11426,80375,80374,42001,58414,53276,44866
+40057,23194,63620,1636,35905
+40058,16076,21084,18456
+40059,12648,17115
+40060,64360
+40061,65667,34845,31018,69153
+40062,7105,1877,70923,78318,32215,38527
+40063,20138,71344,55770,34505
+40064,45148
+40065,41451,80418,38871,80956,9864
+40066,23698,27013,68887
+40067,45974,58577,35498
+40068,2901
+40069,23057
+40070,28766
+40071,80281,64506,38828
+40072,57070,69755
+40073,50729,45918
+40074,72467,56023
+40075,17726,34874,35588
+40076,81137,50512
+40077,59075,22760,81879
+40078,33728,13693
+40079,47485
+40080,40301,23512,64703,57058,24006
+40081,44368,19403
+40082,17007,17132
+40083,58029,3809
+40084,65152,18640,15081,48852
+40085,48145,24720,75446,50443
+40086,33819
+40087,3605
+40088,7311,75775,44501,2097,70488
+40089,74805,47487,25214
+40090,75839
+40091,37375,2538,79043
+40092,28874
+40093,45479
+40094,27414,50480
+40095,389,30156,19452
+40096,26068
+40097,10603,16846
+40098,19971
+40099,4396,45669,35578
+40100,42663,52193,9955
+40101,19616
+40102,8192
+40103,19584
+40104,42345,25871
+40105,20239,78783,67608,58905,68255
+40106,20573,68078,1678
+40107,46107
+40108,73133,72349,49772
+40109,28852
+40110,343,3082
+40111,18117,23711,73741,22537
+40112,6194,59217,29322,56904
+40113,40542,7170,33329
+40114,7303,40480
+40115,2553
+40116,27407
+40117,4862
+40118,47496,30369,48145,58612,57846,76959
+40119,57781,19636,49167,942
+40120,21605,64963,41648
+40121,44363,7529,15032
+40122,865,47321,57037,40873
+40123,46311
+40124,50318,36822
+40125,57551,78267
+40126,73327,1493,10866,8429
+40127,23408,31101
+40128,28897,293,80954
+40129,35571
+40130,32536
+40131,4564,19055
+40132,70517,18779
+40133,24487
+40134,34789,51702
+40135,37680
+40136,58011
+40137,76895,6623,39491
+40138,52131,76399
+40139,72307
+40140,46352,51248
+40141,5185
+40142,10470,37114,76209,23962
+40143,57734
+40144,10462,38744,12416
+40145,74083
+40146,56283,30239
+40147,41024
+40148,16613
+40149,39612,26779,69823,54291
+40150,29264,40836,42268
+40151,30018
+40152,42964,55525,58
+40153,12309,80861
+40154,82110,27229,7530,59457,38674,12717,21142,68080,71752
+40155,23567
+40156,56180
+40157,43458,80366,26209
+40158,12270,9171
+40159,55791
+40160,2860,71908,48941
+40161,68663,42084,3165
+40162,39841,34465,19723,45385
+40163,25559,48476
+40164,14172
+40165,55798,42992,73013,32895,20002
+40166,37641,66765,45271
+40167,51853,13674
+40168,12010,54103
+40169,74620
+40170,76189
+40171,30933
+40172,43286,4194
+40173,19150,39,50042
+40174,18613,48702,50515,37953,44118,11499
+40175,14705,79661,75270,65315
+40176,52096,43123
+40177,2967,75522,45457
+40178,43126,46278,62687,23094,45874
+40179,1362,7822
+40180,49687,46773,27285
+40181,29114
+40182,43525,3631
+40183,39751,11280,73917,15920,66402
+40184,43409,65037,32618
+40185,52210,69450,14851
+40186,15875,81935,12860,55343
+40187,24838,29610
+40188,11940,48752,40807
+40189,39515,70309,50417,30392
+40190,15912,28116,38342,5495,78301
+40191,35116,25374,66447
+40192,63738,52373,60488,36807
+40193,30793,21018,40315
+40194,13918,4467,3368,74229
+40195,38415,62269,17843,61686,66804,53349
+40196,55024,2383,64965,26698,44199
+40197,71653,9526
+40198,66967,47144,59616,80555
+40199,42463,69786,8713,62873
+40200,30319
+40201,75758
+40202,36015,48664,30495
+40203,41622,12962
+40204,33165,10637
+40205,37177,68712
+40206,49251,42972,58727,12525
+40207,81074,75420
+40208,78377
+40209,61425,5611,10100
+40210,38286,4359,59125,73421
+40211,54828
+40212,1237,66860,51914
+40213,54753,43376
+40214,67371
+40215,78507,78630,17526
+40216,70926
+40217,40081,57926,30482
+40218,21178,66646
+40219,22007,32883,52421,61259,61307
+40220,30655,81114,75825,26442,24802
+40221,24357
+40222,63281,25313,21692
+40223,5185,32113,43706
+40224,4048,68364,57092,40515
+40225,48127,75,37242
+40226,78873,60177,46046
+40227,25949,62296,41555
+40228,34135,11550
+40229,16120,29797,68755,13701
+40230,22540,53979,1367,30084
+40231,51401,50453,38731,31469
+40232,19512,30913,29051,64417
+40233,6245,59850
+40234,19619,5565,31046,73516
+40235,39469
+40236,70372,20473,73573,30971
+40237,5644
+40238,11791
+40239,66787,61947
+40240,44494
+40241,6075,15838,80762,24262
+40242,69778,69405,12567
+40243,49025,29845
+40244,22282
+40245,10513
+40246,11876,17960,28514,71939,21118,81150
+40247,27015
+40248,22351,57160,59760,26622,63522
+40249,62657
+40250,45862,44682,39166,81202
+40251,25344,80366,39625
+40252,41857
+40253,34238,51294
+40254,4057,14621,36785
+40255,16928,22094
+40256,32557
+40257,3166,27682,45287,66719
+40258,160,2119,76234
+40259,9000,80361,30156,60282
+40260,42702,80600
+40261,31719,12552
+40262,47270
+40263,76469,79938,19951,54426
+40264,10936
+40265,36906,67072,31868,67869,65097
+40266,15190
+40267,20733,60606,66237
+40268,6753
+40269,58554
+40270,81549,28491,67253
+40271,14976
+40272,66815,23960
+40273,75559,52091,58957,68148
+40274,22004,60376
+40275,57902
+40276,31444
+40277,73645,65191
+40278,51511,62382,71748
+40279,21062
+40280,15930
+40281,80894
+40282,59868
+40283,31459,45544
+40284,32904,28384
+40285,29876,59318
+40286,31363,75086,79623,46329,30324
+40287,55662,29658,51186,53337
+40288,43287,60876
+40289,4986
+40290,73392,33840,7446
+40291,33966,66696,24063
+40292,81857,52716,22529
+40293,47661,72069
+40294,77257,42829
+40295,10426
+40296,34448,28591
+40297,71353,39195
+40298,6910
+40299,26773
+40300,12419,27592,28703
+40301,55878
+40302,53621,22488
+40303,67574
+40304,21163
+40305,43579
+40306,52184,11060
+40307,55230,57830,48507,25822,16442
+40308,70664
+40309,12891
+40310,49694,68875,837
+40311,76234,6893
+40312,82105,16306
+40313,44839
+40314,79046,76298
+40315,18450
+40316,26294,17094
+40317,5296,42719,39134
+40318,64983
+40319,40116,16399,49117
+40320,50112,59515,23111,21466,27888
+40321,51594,61861,43280
+40322,5428,58736
+40323,46400,29147,54450
+40324,75348
+40325,30933,24965
+40326,80343,74759,12074,55207
+40327,25353,41287,31996
+40328,33744
+40329,10845
+40330,51999,5403,64076,8550
+40331,31883,67536,64983,2458,73942
+40332,71993,72938
+40333,47845,42940,80486
+40334,49016
+40335,61035,75400,66563,79140,62312
+40336,67515,49284,63936,73607
+40337,57465,55630,5213,79975
+40338,46434,69336
+40339,82155
+40340,81438
+40341,35478,46711,79043
+40342,29397
+40343,31868,40502,80216
+40344,5360
+40345,34986
+40346,43684
+40347,27681,52584
+40348,72689,61921
+40349,71221,75021
+40350,25167
+40351,11518,9384,39972,38550
+40352,31645,43944
+40353,81862,28753,6398,52835,71922
+40354,38877,21243
+40355,17861,42895,31124,31451
+40356,24666
+40357,56441,23019
+40358,80909,6663,21672
+40359,65444,11203,19055,69603
+40360,75377,55986,78631,48865,11985,13532
+40361,61325,40373
+40362,31643
+40363,58131,3655
+40364,20714,6280,15327,17800,52003
+40365,73686,50323,19859,50122
+40366,25716,72584,56655,54568
+40367,17059,12541,56017,68381,62301
+40368,38861,74948,46624
+40369,19598
+40370,11792,5040
+40371,70656,25606,42256,81363,81783
+40372,41150,69779,29508,65862
+40373,61849
+40374,14772,74111,66423,8920,81334
+40375,59103,19058
+40376,24024,18018,80713,81942
+40377,2987,54753,9581
+40378,6492,60046,57758,61613
+40379,5393,64296,79627,2307
+40380,67327,18155
+40381,46288
+40382,47452,6547,73883,46156
+40383,59264,17536,76831,36905
+40384,7481
+40385,16674,18276
+40386,63879,38883,26169,4352,75992,67441
+40387,42833,80167,25107,58113
+40388,68532,64236,2524
+40389,51078
+40390,50156,23971,25943,3529,2458
+40391,32406,34385,9667,40145,52643
+40392,1914,4969
+40393,14228,12033,65012
+40394,59258,42273,18207
+40395,49605,50737
+40396,71403,17742,49367,6571,21379,68636
+40397,10567,75727
+40398,23246,33573,51174
+40399,46078,5478,66487,39766,30301,4132
+40400,2844,54475,78742
+40401,69155
+40402,74046,3425
+40403,74894,46679
+40404,74846,30203,27825,19361
+40405,62519,25580,13710
+40406,59469,76705
+40407,73212,62363,47820,43748,53512,68679,27773
+40408,47777
+40409,81232,1319
+40410,27059
+40411,43040
+40412,33475,33441,68983,72762
+40413,49447
+40414,39880,30635
+40415,13961,11579,32325
+40416,56531,27062
+40417,77708,77299,64884
+40418,35685
+40419,68159
+40420,17714
+40421,79336,59382,42024
+40422,45730,67790,31099
+40423,47194,42769
+40424,69166
+40425,37404,43961,24293,5231
+40426,39690,52786,20095,70609
+40427,70504
+40428,17223,48621
+40429,81919
+40430,14189,16523
+40431,59042
+40432,34773
+40433,81509,31473
+40434,31006,11640
+40435,66860
+40436,8247
+40437,20708,50664
+40438,81570,67222,19886,72166
+40439,12082,67921,18298
+40440,711
+40441,77976
+40442,7214
+40443,77453
+40444,17704,1691,9800
+40445,25388,30567,22470,19801
+40446,20864,6385
+40447,61624,43536
+40448,71798,5279,47922
+40449,45418
+40450,74284,39359
+40451,67614,45555,1233
+40452,24600
+40453,8996,82055,64154
+40454,78856
+40455,40773
+40456,32887
+40457,61238,2390,2708
+40458,17571,38403,19063
+40459,61522,7666,39213
+40460,51936
+40461,7839,2939,14758,48867
+40462,68046
+40463,17862,5463,19383,49192
+40464,57674,14844
+40465,6701,60224,3187,21090
+40466,35115
+40467,59998,46473,25065,40734,56353
+40468,42201,59022,62229,49041
+40469,49652,42602,65900
+40470,3668,33682
+40471,58663
+40472,58179,10409
+40473,27887,65447
+40474,49923
+40475,45017,12423,55496
+40476,59609
+40477,66864,14292
+40478,61309,58644,50228,72845
+40479,46479,29399
+40480,26197
+40481,6007,75878,25190,66450
+40482,64303
+40483,18386
+40484,74493,35407
+40485,1916
+40486,76090,17987
+40487,21163,26970
+40488,69808
+40489,23889
+40490,50866
+40491,68841
+40492,7573,65353,33999
+40493,7619,5867,33844
+40494,12443,5575
+40495,5594
+40496,36869,42072
+40497,34012
+40498,53653,9310
+40499,14851,31201
+40500,32238,80369,50846,26823
+40501,36379
+40502,79112,16635,61184
+40503,45210,19535
+40504,56371
+40505,61194,46570
+40506,73324
+40507,79559
+40508,58293,63423,3537,42337,55341
+40509,8187,11190,31980
+40510,12113
+40511,72840,11967,3165,39367,74545
+40512,68951,20043,60271
+40513,67618,11050,44722
+40514,72130,9426
+40515,55765
+40516,54157,22810,64255,70841,80909,5562
+40517,68046,58837
+40518,43373
+40519,50779
+40520,9107,75547
+40521,62510,55476,11923
+40522,24367,55641
+40523,44525,45789,8592
+40524,5837
+40525,15146
+40526,38187
+40527,74930
+40528,62444,39383,1435,65562
+40529,28709,70083
+40530,34903,71430,59114
+40531,15064,70893,76766,8844,36804
+40532,42434
+40533,54354,4865,48689,66814,18849
+40534,55181,57006,34494,38545,41363
+40535,57828,38422
+40536,36900
+40537,71389
+40538,82186
+40539,40966,30713,3552
+40540,17212,20716,60441,9850
+40541,42647,69060
+40542,68730,33507,74252,28587
+40543,888
+40544,42463,75526
+40545,81207,44804,40661,14377
+40546,208
+40547,45401,41045
+40548,64477,17494
+40549,1332,78801
+40550,40434
+40551,70020,42942
+40552,4472,76511,9673
+40553,72220,21436,40958,44761
+40554,48995,57021,35268
+40555,45487
+40556,66913,38001,25393,26702,55616,28586
+40557,58659,14673,62209,59782
+40558,39780
+40559,65900
+40560,55017
+40561,8597,12145,52147
+40562,80920
+40563,78113
+40564,20928,7808,73267
+40565,23124,32672
+40566,38055,6854,49646
+40567,30572,37831,28826,8012,77960
+40568,55898
+40569,24217,41228,29283,29147
+40570,54494,69478
+40571,11070,23187
+40572,63676
+40573,66859,50433
+40574,66573,31313,69717,17079,5767
+40575,72791
+40576,41288
+40577,30221,14540,77671,30908
+40578,61485
+40579,49607,47603,33859,41303
+40580,21867
+40581,55886
+40582,7577,68273
+40583,46701,60054
+40584,7548,58448,45112,66269,34822,33485
+40585,18290
+40586,77349,61562
+40587,16631,4971
+40588,30819,53065
+40589,9606,19728,4608,46865
+40590,56711
+40591,77790,48992
+40592,49252
+40593,48829,22567,14651
+40594,41479
+40595,24533,27460
+40596,42005
+40597,11997,26355,29859,65916,74987
+40598,74381,21543,45066,76543
+40599,27420
+40600,26408,71606
+40601,45154,81365
+40602,63279
+40603,14982
+40604,17401
+40605,67020
+40606,61256,32645,51622,50273
+40607,78625,23360,41435,54366,55118,77329,59933
+40608,77455
+40609,64019,10963,59809
+40610,21763
+40611,16334,18330,52969,3156
+40612,56936,72595,55307
+40613,7813
+40614,80963
+40615,25669
+40616,4054,38872,66025,45717
+40617,16297
+40618,12028,62216,2284,55693,41322
+40619,6538,30424
+40620,39668,69709
+40621,81486,61873
+40622,32093,22954,73663,67623,79549,39694,69562,39886
+40623,37636
+40624,28096,54480,3960
+40625,67508
+40626,66106
+40627,32582,73797,26844,44810,54299
+40628,49168,2488,46374,70173,80357
+40629,81322,38056
+40630,52047
+40631,38202
+40632,22843,62673,17272
+40633,20642,18474
+40634,35075,41225,78769,71072,47626
+40635,52961,49893,5626
+40636,44654
+40637,64027,66099,58947,75665
+40638,49197
+40639,58498,14759
+40640,50182
+40641,47768
+40642,1769
+40643,24852
+40644,78953,45418
+40645,11852,22249,56728,18047,3450,76410,74753,34777,4602
+40646,41768,39208,15802,17454
+40647,43820,38096
+40648,8240
+40649,34578,24837
+40650,52547,74791,40363
+40651,1189
+40652,34530
+40653,64131,46756,77046
+40654,22567,66429,35239,21622
+40655,27169,73214
+40656,33736,77380
+40657,29589
+40658,478,42330,26112,40900,2273
+40659,25002
+40660,51135,39950,50939
+40661,42492
+40662,10691,1655
+40663,32951,60725
+40664,15429,78488
+40665,24367,15156,23232
+40666,36148,67883,14373
+40667,76218
+40668,63777,70567,49307
+40669,31176
+40670,25595
+40671,30683
+40672,35245
+40673,22126,78694,50814
+40674,13183,22768
+40675,59523,47655
+40676,72479,45845,73361,1963
+40677,30950
+40678,48726,66939,22124,43388,58838,11791,66114
+40679,52460
+40680,11278,66668,252,61442
+40681,29367,55340
+40682,72663
+40683,61312,74034,27465
+40684,81532,7654,40140,21311
+40685,73597,79661
+40686,41535,38609
+40687,21832,68384,4742
+40688,4122,7574,11947,76356
+40689,54402,36418
+40690,954,35174
+40691,66297,39050,73281
+40692,30491,13729
+40693,21027,60149
+40694,46182
+40695,20974,72451,68427,70365,28242
+40696,28898,22777,72388
+40697,50611,65600
+40698,68048,30690,68110
+40699,60590,46342
+40700,39764
+40701,12037
+40702,31742,41696,54393
+40703,8863,38415,64489
+40704,78966
+40705,69573
+40706,74698
+40707,3181
+40708,27503,49899,65304,49713
+40709,28629
+40710,23976
+40711,81065,20085,50860
+40712,19358,4676
+40713,48292,61853
+40714,65105,73460
+40715,29942
+40716,47122,27251,12186
+40717,9941,48757,50436,77729,24944
+40718,52660,50074
+40719,65178,17640
+40720,29939
+40721,11378,73198,81774,56181
+40722,55113,81713,4287
+40723,44196
+40724,32987,63434,352,53466
+40725,47853,56352
+40726,63973,57248,17325,73527
+40727,44388,61648,40314,1748,17167
+40728,52321,732,12373,60876
+40729,52006
+40730,79137,8160
+40731,78240,61430
+40732,16402
+40733,53695,18660
+40734,12222,18716
+40735,27488
+40736,13404,40484,19023
+40737,12813,5070
+40738,55345
+40739,52714,71771
+40740,3519
+40741,588
+40742,64786,26711,10549
+40743,11135,39132,75823,59762,28529,81410,62291,34790
+40744,28979,16129,49697,52094
+40745,57284,37373
+40746,71470
+40747,32662,46229
+40748,24627,49717
+40749,3729
+40750,75676,58413
+40751,36416,54513
+40752,15624
+40753,73132,74901
+40754,31291,24916,3525,41598
+40755,51501,1715,50627,65810
+40756,31324
+40757,35193,50904,31426
+40758,38316
+40759,69828,70794,51991
+40760,55510,78835
+40761,43129,72809
+40762,79979,55467
+40763,40671
+40764,35828,81829
+40765,26543,14354,59097
+40766,33765,22063
+40767,31524,8305
+40768,8936
+40769,45238,66019,36026,58770,27799
+40770,18177
+40771,47546
+40772,14025,6469,53535,10626,29177,16160,81861
+40773,76893,38171
+40774,11220,13619,59381,67568
+40775,82076
+40776,73311,7426
+40777,6371,12888
+40778,55822
+40779,68603
+40780,82112,42378,71649,40358
+40781,45576,17214,532,41188,51408
+40782,1335,10136,7239
+40783,61460,79047,13163,30285
+40784,75709,77088
+40785,54426
+40786,33302,78712,4869,1818
+40787,15662
+40788,50913,52813,71404,25872,15764,24659
+40789,32030,44125
+40790,31176
+40791,64078,12579
+40792,60211,10522
+40793,82002
+40794,13093
+40795,11314,77644
+40796,68828
+40797,80526,47257
+40798,20525,37277
+40799,69738,4105,50751,31286
+40800,38107,16076
+40801,79351,13485,21527,67283
+40802,6334,22139,29829,48609,15290
+40803,77726
+40804,11758,42321,2838,59885
+40805,79031
+40806,18670
+40807,68367,47726
+40808,18608,70351
+40809,47119,807,80372,34436,63314
+40810,21477,2391,75882,53051
+40811,79540,64733
+40812,6547,50050,61260,74569,65223
+40813,9232,67583,76254,70092
+40814,39267
+40815,74531
+40816,68742,37846,36373
+40817,49657
+40818,41524,41004
+40819,13042
+40820,24294,14191
+40821,73312,5199,29427,4623
+40822,50105
+40823,51956,36155,24013,24120
+40824,21618,25887,61463,33236,25665
+40825,38733
+40826,78752,1350,37349
+40827,41459,1461,72648,31411,5428,30727
+40828,43133,78304,12718
+40829,6230
+40830,32266,15466,12551
+40831,1186
+40832,17049,39543
+40833,78081,47112,37435
+40834,24762,74140,11837
+40835,31176
+40836,21437
+40837,65433,35289,45881,27228,25120
+40838,18471
+40839,29235,36910
+40840,41773
+40841,11747,57793
+40842,38588,23553,11944,53880,76796
+40843,66681,69539,48698,1599,24442
+40844,72354,73954
+40845,19368,31387
+40846,4184,40620
+40847,59927
+40848,29900
+40849,72529
+40850,29836,5989
+40851,52031
+40852,75025,76704
+40853,42327,46725,7499
+40854,40773,53310,21663,14471
+40855,34935
+40856,62538,75709,13295
+40857,47679,11610,45479,14687,80274,28957,37692
+40858,47057,27132
+40859,59672,54698,2673,23737
+40860,65882,53576,69767,3330,65975,61389,39785
+40861,57299
+40862,34380
+40863,8381,56695
+40864,16901
+40865,75289
+40866,13784,31876
+40867,10193,29976,53920
+40868,75074,39471
+40869,68986,80920
+40870,12081,72065,37278,44589,52830,59546
+40871,11249,73360,67785,18791
+40872,21768
+40873,78477,58133
+40874,24398
+40875,80455,63136,65352,2404
+40876,51554,55398,16672,16466,32682,40148
+40877,32012,70086
+40878,24037,63252
+40879,64338,82008
+40880,3531
+40881,47848,73074
+40882,35087,49149,42784,2863
+40883,9648,58679
+40884,54883,44752,38591
+40885,3497,80787
+40886,59869,9206
+40887,33615,68904
+40888,59737
+40889,13578,11770
+40890,77955,26325
+40891,61550,56917,52124
+40892,55832,65343,6449,78376
+40893,50945,48439
+40894,57212,37681
+40895,81065
+40896,33336,63504
+40897,42910,62935,47307
+40898,42641
+40899,18159
+40900,42441
+40901,7865,55451,61754,27239,14194
+40902,43304,59339,6927
+40903,2224,81588,53337,25598
+40904,29081,38019,19535
+40905,68918
+40906,35823,77956,43310,76767,60798
+40907,7239,33912,51414
+40908,5975,30489,23941,75207,11111
+40909,74539,45157,47784,37669
+40910,46434,33510
+40911,22276
+40912,64498,72663
+40913,11505,14953
+40914,7748
+40915,51393,29591
+40916,57216,58089,41491
+40917,8553,9215
+40918,58690,76274
+40919,21163
+40920,65406
+40921,38437,53136
+40922,39840,22284
+40923,74585,64168,67309,78841,19800
+40924,23002
+40925,1671,2898,37136
+40926,80761
+40927,23333,50715,64303,40196
+40928,43534
+40929,61361,68173,76744,34266,6494,59820
+40930,15941,30192,56279
+40931,40506,77455
+40932,12744,1790,77061,13306,29969,54219
+40933,75353,73683
+40934,27006
+40935,53216,18705,78050,2135
+40936,5450,58514,53972,49618
+40937,65084,58655,76360
+40938,60633,34853
+40939,28629,40470
+40940,57788
+40941,66981,81710,65006
+40942,73852
+40943,19439,81575,82142,45780,44298
+40944,29528,13599,60133
+40945,13875
+40946,24878
+40947,69244,17030,26808,74563
+40948,58331
+40949,38167,1367
+40950,68518,60538,2901
+40951,23915,78626,11041,59525,19680,7628,72452,28249,5018
+40952,39441
+40953,48021
+40954,25512,3877,26756,18340
+40955,25072,21777
+40956,68985,16097,68752,21759,29149
+40957,38398,24488,2595
+40958,26881
+40959,36238,73865,36379
+40960,30956
+40961,36054,41375,73373
+40962,30669,78117,30221
+40963,38611,35736,32355,19489,20322,34046,15439,63287
+40964,24908,7480,51302
+40965,65246
+40966,52341,21698
+40967,18913,15011
+40968,48292,17194
+40969,42110,30052
+40970,53932,73331,58629,57120
+40971,30691
+40972,48718,71889
+40973,45190,16229,23380,66745
+40974,29415
+40975,67869,71933,65913,73649,4862
+40976,62477,17474,15146
+40977,51691,56406,60779,21254
+40978,17018
+40979,13023,51894,20670
+40980,58440,33840,9280,48438,66173
+40981,20603,44773,66605,43336
+40982,55986
+40983,7853,81521,38230,45795,36254
+40984,63980,73336,20372
+40985,42931,62623,22849
+40986,64321
+40987,51658,70585,48089,37993
+40988,20060,74276,39064
+40989,57562,56433,45153,38482
+40990,21180
+40991,9598
+40992,38680,8882,55064
+40993,62727,36829,21476
+40994,1772
+40995,72258
+40996,60818,68760,23460,81502,32396
+40997,17341
+40998,79863
+40999,63889,12068,12804,58284,67296
+41000,19850
+41001,47379,47428,63511,37941
+41002,12045,57421
+41003,62126,2351,65038,70761
+41004,18193
+41005,53076,37065,3024,73996
+41006,70026,36004,15007
+41007,38868,68149
+41008,14187
+41009,319
+41010,6755,48721,74495
+41011,40424
+41012,58555,77018
+41013,6255
+41014,8970,71054,67794,9714
+41015,63051,34121
+41016,40082
+41017,39612,40453,11709,58434,33590,30281
+41018,1351
+41019,59796,4400,43272,45637,73786
+41020,9457
+41021,64481,59188,77350,75802
+41022,38057,44828,52287
+41023,74280,13744,69932,7817
+41024,5594
+41025,75087,59896
+41026,16258
+41027,23617,35582,71077
+41028,59821,44181,47951,49896,40074
+41029,31710,11413,61452
+41030,63430
+41031,80017,70326
+41032,8240
+41033,1137,37592,30135
+41034,26713,40990,23254
+41035,20170,76373,70172,30227
+41036,29188,13231
+41037,23845,50762,32315
+41038,59856
+41039,10702
+41040,49400,12814
+41041,9734,72342
+41042,9343,73969,8922,46421,15475
+41043,6476,14417,64854
+41044,72798
+41045,21021
+41046,65254
+41047,71459,40945
+41048,80365
+41049,36543
+41050,54535,79130,16515
+41051,63838
+41052,59510,22469
+41053,78503,5574,27510,24846
+41054,20885,68725,14318
+41055,63764,37170,49765,36836
+41056,22136
+41057,69160,41256,61538,34954
+41058,29406
+41059,8426,61250,56302
+41060,10476,39193,66132
+41061,66129
+41062,74602,15898,81212,278
+41063,3137,78838,426,81721,55672
+41064,76863,73460
+41065,36461,77880,35708,72479
+41066,69693
+41067,17236,17871,41309,13462
+41068,49741,56188
+41069,48229
+41070,9477,14834
+41071,56049,16045
+41072,75967,14548
+41073,20889,20885,14203
+41074,57830,41609,64590
+41075,2843,63831,5403,30957
+41076,51577,17736
+41077,32217,7022,46595,13727
+41078,21983
+41079,1247,69903
+41080,72235,68219
+41081,78036,3475,76101,73344
+41082,66243,27040
+41083,67086
+41084,79992,11651,71719
+41085,76799
+41086,27335,18113,6005,44222,44166
+41087,65495,65498,49346
+41088,73579,71401,20495
+41089,12374,72550
+41090,35569,33257
+41091,49114,51848,81584,74641,6582,68673
+41092,72387,75678
+41093,61394
+41094,81943,3887,44627
+41095,74054,24897,61379,44864,38180
+41096,79964,59335,30133
+41097,51480,37397,78610,37466,16510,57158
+41098,13724,13615
+41099,70963,78601,79384
+41100,20246,22794
+41101,15510,67135,81149
+41102,20178
+41103,51442
+41104,35056,13271,40644,14540
+41105,16072,22475,3040,19687
+41106,41386
+41107,77009,67021,43299,62650,38225,68473,63681
+41108,81879
+41109,21380,47859
+41110,34346,31434,17717,33074
+41111,44986,48013,73426
+41112,14497,10256
+41113,63794
+41114,14285,55766,11086
+41115,61876,72030,34265,61650
+41116,21098,9728
+41117,28688,17073
+41118,38091
+41119,46601,53595
+41120,12101,35247,51303,28132
+41121,77148,81247,33215
+41122,1081,44643
+41123,75380,41750,52074
+41124,7489,65300,40785,13997,6911,41889
+41125,80158,41925
+41126,56612,52200,45213,14341,69518,14665,7678
+41127,11317,20952,42046,57437
+41128,6255,77188
+41129,67434
+41130,49585,72330
+41131,61088
+41132,2508,23401,43451,44859,81812,20328
+41133,37172
+41134,13390,4083,78171,46281
+41135,5339,53354,55281,135,37993,66010,21435
+41136,26148,69692,9172
+41137,45735,55155,75663
+41138,42621,42842,49143
+41139,4303,43268,25112
+41140,59551,61718,60712,80770,19670
+41141,60604,54647,4541
+41142,64243,5496,72732,20718,51959,11729,38391
+41143,25559,58978,8752
+41144,4156
+41145,59673,68101,44174,37507
+41146,25570
+41147,44511
+41148,3451
+41149,68280
+41150,28813
+41151,21351,5697,52300
+41152,14986,59701,43016
+41153,78462
+41154,2251,28182,16786,3300
+41155,79525,41518,49804
+41156,6758,13900
+41157,10990,65551,21828
+41158,58041,49399,62316
+41159,37770
+41160,58500,18478,2531
+41161,3922,74007
+41162,51655,43098
+41163,74297,26293,41808,24280,23009
+41164,64042,65929,81231,40807
+41165,10071
+41166,78730
+41167,26006,78889
+41168,28801,2749
+41169,63424,45638,33349,70916
+41170,23106
+41171,49004,59091,62547
+41172,5900,22145,5272
+41173,393
+41174,26121,42188
+41175,67620,56715,71098
+41176,36794,70367,64969
+41177,45997,10011
+41178,38424,71876,937,59087,48358,76980
+41179,16778,44899
+41180,46304,74844,37521
+41181,18905,7795,66170
+41182,11262,8931,78487
+41183,3380
+41184,71423
+41185,18626,80158,26022
+41186,35310
+41187,42784,12665,51248,64219
+41188,59462,10391
+41189,1836
+41190,73474,21876
+41191,20465
+41192,79868,67205,37987,15860
+41193,60320,78628,57646
+41194,31262,73240
+41195,70618,78432
+41196,36547,6941
+41197,8182,37096,47188,38510
+41198,35596,44294
+41199,50257
+41200,23443
+41201,1178
+41202,24028,32000,46954,73152,50188,26144,41380,14640
+41203,34851,72399,47383
+41204,34227,4639,38703,42569
+41205,33357
+41206,30619,71564
+41207,4639,54393
+41208,59760,23973
+41209,46242,39727,63095,6107,49174,70934,14898
+41210,72768,53680,71237
+41211,64451,7009,72395,2881
+41212,25578,28962,62954
+41213,40641,60387,58058
+41214,19668,80723,50066,17040
+41215,78795,53331,53229,59461,79932
+41216,9243,17013,66840
+41217,9861
+41218,18218,28997
+41219,37633,22058
+41220,34760,38982
+41221,48502,58738
+41222,70279
+41223,19650,74268,72013,4043
+41224,16531,29585
+41225,10655,53450
+41226,17736
+41227,53263,50780
+41228,62054,52102
+41229,10990,73208,14787,41201
+41230,20817
+41231,23432
+41232,4184,60114,46493
+41233,60811,53730,36425,60799
+41234,75839
+41235,27297,7646,57409
+41236,69933,35899,65235
+41237,32594
+41238,58388,42431,76531,43174,10005
+41239,56364,11487,47148
+41240,8361,59229,56244
+41241,74414
+41242,12887
+41243,13730,3159
+41244,78473,11494,70000
+41245,64441,76148
+41246,70121,32897,53894,33672
+41247,80542
+41248,48125
+41249,28204
+41250,71054
+41251,74575,68478,31201,73813
+41252,46685,50833
+41253,64354,39452
+41254,40315,18424,17469,52710
+41255,6408,6753
+41256,54716
+41257,3259,29095
+41258,64593,26401
+41259,32428,58909
+41260,4194,44415
+41261,46220,57849,25979,14191
+41262,29524,26602
+41263,79858
+41264,2022,58050
+41265,38804,50143
+41266,72504,60765,71346
+41267,64290,76722
+41268,67903
+41269,61984,20258,51904,18310,8021,49250,63976
+41270,19714
+41271,59980,9725,32170,37150,80185,56393,23049,43601
+41272,75658
+41273,68084
+41274,31606,9727
+41275,75610
+41276,70806,2644,29948
+41277,26270
+41278,50038,60938,61136,49517,65666,40979
+41279,28705
+41280,55622,47341,53728
+41281,46214
+41282,81082,34668,71786
+41283,43853,35493
+41284,26357,54976,29325
+41285,61542,24626,64186,5996
+41286,31843,43126,60946
+41287,64409
+41288,47003,38606
+41289,41364
+41290,65301
+41291,67645
+41292,66481
+41293,80425
+41294,66775,22825,795
+41295,8561,37039
+41296,53330,74768,31450
+41297,855,78125,53108
+41298,79279,37331,41222,73373
+41299,30176
+41300,10898
+41301,18294,42991
+41302,43685,26644,57966,29969,25240,74834
+41303,55698,73392
+41304,43253,76927,26819
+41305,10735,73029
+41306,79968,27315,11771
+41307,24258,75836,26395,8738,47804,23295,69126,76012
+41308,35426
+41309,25595,630
+41310,61037,27968,44034,46657,19820
+41311,11575,25840
+41312,51343,66758,67883
+41313,29925,10976,12686
+41314,11867,74935,8653
+41315,1896
+41316,65414
+41317,31268
+41318,20944
+41319,31385,50699
+41320,38535,38650,36321
+41321,44027,28422,23759
+41322,68604,17201
+41323,21751
+41324,20239,4463,35305
+41325,48898
+41326,54790
+41327,68696,20925,1574
+41328,28148,40514
+41329,32854,74976,22939
+41330,16713
+41331,55800,10116,74485,62843,45038
+41332,18193
+41333,15635
+41334,71512,73214,54063
+41335,5806,58566,22291,80204,38668,24747
+41336,27255
+41337,40401
+41338,79825,4143,41580
+41339,16756,41025,57030
+41340,68017,27090,73551,30775
+41341,68456,479,81828
+41342,51627
+41343,47326,76446
+41344,59914,31218,72709
+41345,12697
+41346,13599,71918,76041
+41347,61193,62204,771
+41348,29739
+41349,9572
+41350,29123,70142
+41351,69636,45629,67208,524
+41352,28695
+41353,26710,13812,14577
+41354,11168
+41355,17348,9066,15,78186,11290
+41356,46697,14277,14951
+41357,45610
+41358,27131,2306,31980
+41359,11424,1751
+41360,37408,19230
+41361,71346
+41362,36744,2327,56285,63031
+41363,79216,9406,80952,37603
+41364,50993
+41365,77813,1572
+41366,6004,80319,43827
+41367,58881
+41368,36465
+41369,22322,70057
+41370,26377,22409,46676
+41371,51232,73227
+41372,53234,15814
+41373,80650
+41374,63862,44664
+41375,64051,68811,50108
+41376,16347,37675,8215,64770
+41377,29175,35441,73472,40253,56122
+41378,3480
+41379,17175,6165,32876,64315
+41380,45228,42947,65862
+41381,69403,33069
+41382,43254
+41383,30408,44652
+41384,17596
+41385,4533,76326
+41386,49165
+41387,40029
+41388,14894
+41389,8010,9457
+41390,4869,6785
+41391,57434,8771,18166
+41392,20562,78795,25432
+41393,54273,57263,36085,31924,46392
+41394,76852
+41395,30239,8940
+41396,68578,38447
+41397,468,50645,28752
+41398,34840
+41399,79582,3673
+41400,76002
+41401,21325,63400,42011,7722,52137,28069
+41402,43304,50968
+41403,5619,77335,81244,6954,77011,9138
+41404,69249
+41405,15791,17250
+41406,65111,27041,36736,23109
+41407,61039
+41408,69758,18732,29204,7509
+41409,45754,48527,68714
+41410,51805
+41411,25502
+41412,18392,14168,20071,15107
+41413,48487,76347,68882
+41414,77819,25898
+41415,18909,47633,49384
+41416,5841
+41417,54468,37097
+41418,22007
+41419,19256,54302,34411,77346,27078,44306,72460,52051
+41420,70707,50228,4008
+41421,60794,4948,81059
+41422,23989
+41423,21725
+41424,67076,37700,13310
+41425,80569
+41426,71353,22377
+41427,3894,75823
+41428,1766,42769
+41429,76853
+41430,54178,74585,38684,74686,65877
+41431,21580,24055,22809
+41432,68207,65278,42634,32228,66332,39786,43684,52012,80528,28757
+41433,40176
+41434,42059,34517,19735,69380,40317
+41435,56792
+41436,69117
+41437,6083,12714,19998,47128,7221
+41438,14981
+41439,22991
+41440,39879,379
+41441,44914,51755,61762
+41442,23258
+41443,57114
+41444,55276,77457,2900,24595
+41445,35184
+41446,79946,66383,58405,63666
+41447,19668,5838,80265
+41448,2402
+41449,26678,75234,21043
+41450,18591
+41451,50398,1563,19504
+41452,29336
+41453,30513,75532
+41454,41219
+41455,51402,31020
+41456,11192
+41457,32409
+41458,58541,71769,74484
+41459,79403
+41460,67151,5837,13673,28648
+41461,35398
+41462,49559,34811,81232
+41463,66730,60316,14890,27943
+41464,43254,43438,52489,11184,32028,3113
+41465,11828,69199,49620,39441,27627,76465
+41466,7010,76552,66895,76213,65826
+41467,29415,58980,473
+41468,12813
+41469,54296,42377
+41470,1098
+41471,720
+41472,61519,78758,7617,80434
+41473,35208
+41474,4908
+41475,31986
+41476,73057
+41477,59687,32861,2872,13756
+41478,74780,584,35853,7191
+41479,16843
+41480,22383,19406
+41481,42067,47801
+41482,56364,3090
+41483,4568,28258
+41484,66600,61199
+41485,14665
+41486,59730,1115
+41487,60371,8586,43838
+41488,65229,33612
+41489,41559
+41490,1910,76282
+41491,59665
+41492,28430,4608,34850,7679,8551
+41493,13445,43234,23264,70188
+41494,67508
+41495,36296
+41496,35229,75711,57916,45424,2766,55618,38277
+41497,57194,33113,19417,26826
+41498,10581,79298,25513
+41499,8073,9082
+41500,18341,42985,80703
+41501,69981,516,24288
+41502,3757,35142,37984,80277,36879,71232,2628
+41503,77443,75895,60869,20604
+41504,80196,324,81227
+41505,37719,45385
+41506,33875,68596,8347
+41507,32002,79844,23051,20257,63486
+41508,71472
+41509,6152,79484,27447
+41510,6420,51120
+41511,37396,10533,76384,12462
+41512,67420,9231,22512,36359
+41513,75076,46281
+41514,81180,62823,45524,5688,41405
+41515,34065,45074
+41516,46063,65645,59927
+41517,908
+41518,17164
+41519,40623,54277
+41520,35318,38816
+41521,25983,14603,66400
+41522,78283
+41523,59315,12628
+41524,33680
+41525,39723,45805,7004
+41526,17495,16486,66312
+41527,76091
+41528,53299,4547
+41529,5140,79435,29232,61730,36656,31345
+41530,52431,13684,50342,72156
+41531,45725,4675
+41532,25788,81282,49082,29003,28170,33499
+41533,2073,45798,28011,22168,58249,70863,78764,24441
+41534,34727
+41535,20477
+41536,6430
+41537,30034
+41538,10171,68805,26228,19969
+41539,72173,72973
+41540,39173
+41541,30523,76005,69945
+41542,77574
+41543,57534,68707
+41544,77560,5065,10082
+41545,7022
+41546,32676
+41547,19953
+41548,52706
+41549,17791,9886,16685
+41550,31283,54891,4023,44163,13373
+41551,60572,18439
+41552,47909,67487
+41553,6325,23437,38917,10570,11041,31458,58321
+41554,22413,16299
+41555,51445,74626
+41556,68940,74286,19739
+41557,52705,71256,61070
+41558,54000,12208
+41559,11838
+41560,12064,68171,36825,81878
+41561,67534
+41562,73475,47524,70800,9428,42045
+41563,64126,19230
+41564,13277,32880
+41565,3817
+41566,62402,38323
+41567,45654,36543
+41568,5689
+41569,15016
+41570,23621
+41571,76800,27479
+41572,37307
+41573,33294,53716
+41574,62900
+41575,35949
+41576,66939,26660
+41577,37735,39950,80574
+41578,7131,5570,26636
+41579,78959
+41580,11982
+41581,50072,52647
+41582,4723
+41583,55443,17399
+41584,18497,33686
+41585,30808,5841
+41586,10069
+41587,70611
+41588,44957,32226,25707
+41589,4145,35655,10483
+41590,61780,56204
+41591,19259,64498,32483
+41592,77588,41323
+41593,7926,2183,69075
+41594,50213
+41595,24227,68542
+41596,63778,70387,49702,48515,52992,42548,17454
+41597,20264,44814,57003
+41598,20199,55709,12971,19127
+41599,16414
+41600,72438,29914,3181
+41601,52568
+41602,7918
+41603,15165,75348,40734
+41604,48367,32195,28551,44975
+41605,36552,57033
+41606,14572,40433,72699,41871,3569
+41607,48125,10277
+41608,66636,48351,59115
+41609,44910,46673
+41610,53786,39573,43030
+41611,31435,71713
+41612,19287
+41613,17931,53358
+41614,78554,50714,31696,24907,72465
+41615,26391,12070,24944
+41616,16164,50079,39647,58554
+41617,42232,46750,11382
+41618,79280,3,52695,27190,26325
+41619,39872
+41620,33967,63986,23887,41797,22609
+41621,52295,26032
+41622,13403,12208
+41623,54070,20960
+41624,80912,76120
+41625,53017,21534
+41626,23026,72944
+41627,58341,73233,9530,18835
+41628,3750
+41629,80746,55906
+41630,52114
+41631,21803,67961
+41632,41538
+41633,31661
+41634,20058,7413,9683,52335
+41635,24040,42594,13093
+41636,64798,56865,72445
+41637,8920,38292,81869,63430,51722
+41638,79171
+41639,17355,5242,13949
+41640,770,52575
+41641,42153
+41642,30231,6594,72352,19158,59669
+41643,291,14271,16996,22263
+41644,68916,9986,65007
+41645,64476
+41646,67947
+41647,13532,60177,47050
+41648,8118,59869
+41649,72483,30894,65028
+41650,65400,67131,9013
+41651,59526
+41652,35098,34743,47776,33410
+41653,6506,65454
+41654,76612,22672,57648
+41655,38191,15386,52691,9976,75704,53017,35070
+41656,49810
+41657,16792,50264
+41658,80277,24097,81093
+41659,67102,78106,51153
+41660,39720,51593
+41661,78566
+41662,30823,53306
+41663,15848,40251,57026,61212
+41664,64764,42960,70975,81886,202
+41665,14761,58042,27388,37277
+41666,40777,6763
+41667,34424
+41668,61469,4614,55379
+41669,27925
+41670,29548,18992,18526
+41671,40184,80859,24943
+41672,22135,35721,60687,76655,27484
+41673,49331,21309,71109,76991
+41674,14444,19470,29996
+41675,15418,41201,678
+41676,29000,73365
+41677,71051,36140,44632,58973,36044,53901,6411,22960,56128,4329
+41678,80001
+41679,74490,2035,51752
+41680,36885
+41681,2007,55756,70493,60958,32155
+41682,60622,2483,48274,26712,54994,32241,30543,43711
+41683,34624,34677,76830,23961,63372
+41684,15139,75426,71387,50487,29242,64257
+41685,49770,80756,21050
+41686,59993
+41687,26519,8943,14950
+41688,4988,53812
+41689,30201,29082
+41690,62876
+41691,16966,39956
+41692,12964,81860
+41693,27642
+41694,46603,29726,62448,36554
+41695,71031,45780,73379,65855
+41696,24852
+41697,77361,27891,64925,45472
+41698,34436
+41699,33198
+41700,6708,54528,47074,45523
+41701,18119
+41702,53664,34791
+41703,65356,25241,65638
+41704,72393
+41705,60861,80274
+41706,35847
+41707,13732
+41708,21283
+41709,77581,3275,79397
+41710,36972,34135,25590
+41711,74570,25338
+41712,13338,55596
+41713,80542,39859,43207
+41714,8351,76698
+41715,17421,15982,11400
+41716,42121
+41717,77314,19085,30015,59533
+41718,6369,72798,26317,39795
+41719,67772
+41720,53822
+41721,46764
+41722,57531
+41723,7900,496
+41724,81574,55737,77556
+41725,42429,30894
+41726,36889,54532,33144,63070
+41727,21438
+41728,47597
+41729,69627,38261
+41730,24096,75417
+41731,27578,53213,25253,44279,20213
+41732,75433
+41733,34779
+41734,9830
+41735,34580
+41736,74679
+41737,27935,64566
+41738,53583
+41739,64356
+41740,62068,49223,57129
+41741,54530,4362,43003
+41742,64836,29943,6908
+41743,71201,47310
+41744,50814,11879
+41745,40919,64167,20081,34470
+41746,78649,42084
+41747,70005,59094
+41748,35022,7190,74646,72673,55721,65278
+41749,80075,15051
+41750,54294
+41751,62681,72973,73998
+41752,31822,40281
+41753,54211,41528,70792,15068
+41754,53418
+41755,64882,57937,68268,35318,29439
+41756,35670,32260,34059
+41757,14823,48048,51342,4434,45805,19420
+41758,53365,16423
+41759,27108,11238,49501
+41760,61523
+41761,31698
+41762,26712,51286,65086,8140,25024
+41763,3371
+41764,24591,16492,10333,15020
+41765,43321,4157,33811,9932,1189
+41766,40640,10446
+41767,28577,80960
+41768,59078,66825
+41769,64191,18931
+41770,73638,24138,56768
+41771,22033,22549,70891
+41772,31454
+41773,78226
+41774,33017,45300,28777,41960
+41775,64196,66747,8273
+41776,72561,23595,12991
+41777,50005
+41778,76595,5543,7160
+41779,565,5123,8940,61101,9262
+41780,80576,70398,34556
+41781,69898,68655,62915,16249,22018,59558
+41782,41000,24949,25323,75457
+41783,8519
+41784,52544,21311,7129
+41785,41367,36259,27423,30723,995
+41786,60631
+41787,7938,33869
+41788,48975,65689,32742,72383
+41789,41895,42017,79556,66915,55881
+41790,55799,2557
+41791,23209
+41792,28352,23581
+41793,6822,56713
+41794,79357,66536
+41795,33381,33743,30727
+41796,7352,78353,17342,8779,46033,75516
+41797,20302
+41798,46003,18000,50182,49341,40625
+41799,26644,65073
+41800,16897
+41801,58949
+41802,57375,917
+41803,53721,32891
+41804,47104,18457,36117,26890,35714,46124
+41805,49794
+41806,79391,66443
+41807,15003
+41808,6880,26195,49478
+41809,12312
+41810,9524
+41811,19502,31149
+41812,34430
+41813,45066
+41814,4225
+41815,76642,26639,19241
+41816,53008,4337
+41817,35054,25940,20393
+41818,14004
+41819,70317,41733,29144
+41820,71786,49200,2058,53279
+41821,26,51400,14420
+41822,57415
+41823,45503,36910
+41824,75972
+41825,5095,549,25020
+41826,25195,26786
+41827,23870,42612,57403
+41828,30156,19723
+41829,27173
+41830,56712
+41831,9756,15263,37464
+41832,81806,42438
+41833,9349
+41834,25606,17917
+41835,29900
+41836,35958
+41837,48463
+41838,15179,55603,24789,53653,285,69117
+41839,17826,1433,37107
+41840,36368,7598,20731,54124
+41841,31519,25509
+41842,80269,76901,61870
+41843,23410,30288,54282,4429
+41844,50820
+41845,71138,76010,45179
+41846,10845
+41847,61374,3010
+41848,9189,57303
+41849,6025,38688,11379
+41850,49836,22321
+41851,78558,4204
+41852,6897
+41853,70046,73650
+41854,11399,52168
+41855,1013,34992
+41856,71447,15357
+41857,45254
+41858,72550
+41859,51712,32095
+41860,72266,77694,46331,29883,79392,38718
+41861,73648
+41862,76232,73184,57048,66129,58612,24445
+41863,60580
+41864,16407
+41865,61573
+41866,32545,15534,8553
+41867,48971,75712,6049,74992,70737,11094
+41868,41912
+41869,17539,71512
+41870,80910,62838,32088
+41871,48287
+41872,22909
+41873,53345
+41874,64703,45170,14581
+41875,41879
+41876,58025
+41877,1046,65481
+41878,10369,14993
+41879,12624,34491
+41880,10989,80001
+41881,13077,57037,12310,53106
+41882,19937,67232,12178
+41883,46652
+41884,12483,27191,338
+41885,66824
+41886,77430,59234,43745,58921,71650
+41887,20879
+41888,23943
+41889,55307
+41890,5997,81967
+41891,8864,8546,17169
+41892,3686
+41893,26715
+41894,22421,32424,4053
+41895,62179,5981,59658,6063
+41896,62516,59169
+41897,16135,66397
+41898,18918
+41899,23545,61118,71661
+41900,21983
+41901,67271
+41902,6864
+41903,46135,4512,59877,51778
+41904,32062,27057,65822
+41905,1569,58127,69923
+41906,32326,50294,26868
+41907,19723,29325
+41908,29169,60443,64440
+41909,58382
+41910,66462
+41911,54931,989
+41912,30603
+41913,49140
+41914,1301,37317
+41915,72457,3827
+41916,68782,15854
+41917,79240,4866
+41918,7529,3430,79028,72841
+41919,80354
+41920,73241,23847
+41921,20969
+41922,72191,52522
+41923,62953,47607,45685
+41924,68808,9157,27083,40249
+41925,68629
+41926,81282,48887
+41927,40693,15156
+41928,30066,68173
+41929,75383
+41930,74646,56160,11885
+41931,64407,19681
+41932,68629,34992
+41933,18288,3302,55490,75957,69992,15016,44303
+41934,75616,1064,55520
+41935,80842
+41936,55481,8869,80858,58363,69870
+41937,3716,25221,20506,33833
+41938,45003,38977
+41939,51433
+41940,16698,63290,31808
+41941,27972,59584
+41942,31691,66640,8777,73183
+41943,80228,28620
+41944,47933
+41945,18631,16925,78863
+41946,29067,5208
+41947,8013,13558,52131
+41948,9827,32754
+41949,28690
+41950,34111
+41951,44216
+41952,13283
+41953,39811,6650,77728
+41954,44989
+41955,62527,40658,62636,38192
+41956,41070
+41957,55505,48139,8294,61465
+41958,55134,6209
+41959,44973,54872,44813
+41960,48504
+41961,36985,42273,52048,68479,24536,61466
+41962,7580,79363
+41963,16561,25897,21361
+41964,52411,71223,3774,43541
+41965,36954,52825,10291,65724,1129,59683
+41966,25934
+41967,45496,41236,24400,27277
+41968,70516,45763,33709,52898,28804,81178
+41969,60940,9934,24194,34162
+41970,16453
+41971,21518
+41972,44575,47144,59341
+41973,30589,60301,54260,21720
+41974,79215,1725,65457,20241
+41975,59583,2696,73250
+41976,58684,1334,30198
+41977,48931,34357,20095
+41978,47921
+41979,75439
+41980,73958
+41981,31730
+41982,78426,64051,79818
+41983,39704,62376
+41984,11279,55035
+41985,66193
+41986,55096,32592,75016,64096,23597
+41987,15762
+41988,7036,19422
+41989,52977,43653
+41990,79975
+41991,53319,41920,13002
+41992,6272
+41993,30601,48345,75080,37886,29965
+41994,45320
+41995,49052,28814,80413,49779
+41996,45708,51628,49428,37146,19510
+41997,18845,36140
+41998,42178
+41999,68165,19105,70846,34762
+42000,30793,67668,14866
+42001,56329,31661,57061,73508
+42002,36870,76140
+42003,17360,8247
+42004,29585,67183
+42005,47140
+42006,75233,68793,54409
+42007,6575
+42008,13104,80756
+42009,79409,50254,1772
+42010,46948,60020
+42011,49581,35834,5463
+42012,46308,81626,29864
+42013,41038
+42014,36410
+42015,45637,10020,48731,81491
+42016,8526
+42017,14470
+42018,858,17435
+42019,23557,14677,30171
+42020,9186,44133
+42021,71818
+42022,54234,29083,29901,67749
+42023,8223,31016
+42024,1555
+42025,53527
+42026,34228,38864,62027,66496,21188
+42027,10869,11088,3966
+42028,27671,701,26835
+42029,41747,53529,22972
+42030,27449,2780,40847
+42031,81332,66657,45851,80628
+42032,37706,30649
+42033,23543,787,36465
+42034,36238,67383,8019
+42035,68562,34173
+42036,22018,4467
+42037,35667
+42038,42689,26553,65526,18278,80952,57543
+42039,36379,55827
+42040,40845,16649,30169
+42041,79955,70921
+42042,31473,28897,3467,46583
+42043,53849
+42044,66828
+42045,41583
+42046,31176
+42047,58867,29332,11701,20032,53914,21693,11633,64513
+42048,52640,19577
+42049,24119,13997
+42050,31147,40303,2387
+42051,17235
+42052,29220
+42053,76947
+42054,16603,37468
+42055,24827
+42056,71327
+42057,719,40336,78803,61542,4920,1807
+42058,1482,15622,24974
+42059,17000
+42060,55034,77404,21964
+42061,45377
+42062,17855,9068,71100
+42063,31450
+42064,32437,22569
+42065,16939,12046
+42066,22917,75230,67114
+42067,19066
+42068,10395,28956
+42069,64644,68560,75606,19714
+42070,73823,36903,78935
+42071,53066,12593,31121,70217
+42072,7512
+42073,66936,74602,55032
+42074,25657,4340,47044,63606,50883,18971
+42075,30047,67763,65302,37623
+42076,57286,81663
+42077,7938
+42078,74666,62839,14325
+42079,47462,9666,68962
+42080,81112
+42081,28916
+42082,51274,71245,37604
+42083,29773,81289
+42084,47018
+42085,38738,11025,48296,42436
+42086,49217,57608,30736,38708
+42087,21906
+42088,69368,49393,6561,61409,67224
+42089,65300,2169,56741,33056,5208
+42090,28710,63331
+42091,9621,24139,8984
+42092,7064
+42093,1994,38373
+42094,39565
+42095,33995
+42096,46152,65069
+42097,30465,3541,20796,24664
+42098,78377,75348,74131
+42099,50841,594,7470,829,75079
+42100,50978,78360
+42101,29389,70776
+42102,49940,3886
+42103,5059
+42104,46808,50961,14655,49663
+42105,42390
+42106,55886
+42107,49848
+42108,57528
+42109,56007
+42110,15612,25568
+42111,68341,55057
+42112,594,33176,62937
+42113,28060,74556,6265,37595
+42114,18623,9628
+42115,79400
+42116,48760,65072
+42117,21117,23494,80739
+42118,39982,34284,47864
+42119,72752,33279,49627,2269,32984
+42120,59244,44165
+42121,14449
+42122,25734,79553,28899
+42123,25166
+42124,71296,5914,2263,19427,27842,34641
+42125,73660,4607
+42126,61792,50171,46396,73525
+42127,18397
+42128,62136
+42129,77899
+42130,5203
+42131,60575,77082,28581,34371,78553
+42132,80004,22240
+42133,66796,28909,60348
+42134,79872,50344,57431,44362,77366
+42135,23581
+42136,60448
+42137,72164,44143
+42138,12011,11663,50691,38044
+42139,6960,17651,53486,34871
+42140,79920,75809,79855,29844,30215,80559,9191
+42141,69078,26042
+42142,72653
+42143,9111
+42144,38631,62541
+42145,55240,34491,27058
+42146,6893
+42147,43820
+42148,18060
+42149,78832,11739
+42150,59307
+42151,35527
+42152,22379,74711,23196,40047,36853
+42153,48049
+42154,61721,75576,15362
+42155,33285,55292
+42156,49143
+42157,63491,64486,50245,52343
+42158,34875
+42159,63619,81445
+42160,65211,11394
+42161,1844,65209
+42162,47967,15800
+42163,74930
+42164,65379,34708,16959,69753,12469,70397,73707,24718
+42165,11836
+42166,45886
+42167,59965,2114,46857
+42168,69176,25744
+42169,32784,29018,27190
+42170,44446
+42171,12391,19852,31616,48630
+42172,41747
+42173,62229,57861
+42174,60472,9945,38110
+42175,45829,55553,54592,37855,29547
+42176,23075,11691,1419
+42177,2823
+42178,18710
+42179,56678,60375
+42180,71221
+42181,80337,68054,58220,12045
+42182,21985,19644
+42183,76617
+42184,23254
+42185,54644
+42186,56490,54928,44785
+42187,71442,47190,23142
+42188,22512
+42189,28260
+42190,25376,43963,77455,49327
+42191,62817,33024,79218
+42192,79826
+42193,28078,65485
+42194,29905,8050,50357
+42195,53310
+42196,64661
+42197,671
+42198,61664,17286,71527
+42199,18289,74646
+42200,54757,38782,40806
+42201,8861
+42202,18159
+42203,40864,8205,67151
+42204,53595,76274
+42205,1423
+42206,36552,73904,55513,9545,67267
+42207,37507,1359,52703
+42208,6772
+42209,40470,38848
+42210,52056,70304,62214,65065
+42211,73310,59283
+42212,35453,70611
+42213,70637
+42214,40264
+42215,71175
+42216,27784,50522,41600,74869,35043,63900
+42217,78493,32030
+42218,71930
+42219,74776
+42220,31038
+42221,7242,64761,38394
+42222,37948,13025,32411
+42223,65141,23560,20659,59709,10447
+42224,24935,81369,24413
+42225,73028,44839
+42226,20642,41443,1584
+42227,59848
+42228,64379
+42229,46760,57675,59348
+42230,14525
+42231,21124,49585
+42232,34562,365
+42233,18082
+42234,43651,78932,65874
+42235,65454
+42236,41868
+42237,40453,23916
+42238,6185,36077,67874
+42239,17714,38804
+42240,42007,76409
+42241,62541,27117
+42242,62148,70204
+42243,80532,46095,78099
+42244,61760
+42245,68783
+42246,78411,56235,47439,44689
+42247,23922,27067,19560
+42248,78352
+42249,76701,60580,46489,45514,42188
+42250,46882,9951,24635
+42251,51448,19230,38753,30004
+42252,76570
+42253,73714
+42254,63986
+42255,62930,59086,15344
+42256,71137
+42257,56893
+42258,33375
+42259,7753,58838
+42260,62985
+42261,10779,18996,67144
+42262,37976
+42263,46854,54505,12067
+42264,41810,80997,18796,70536,22494
+42265,54429,14299,55087,73516
+42266,72662,67787,7375,79204,28720
+42267,29547,71988,47903
+42268,49873,25540,76380,76894
+42269,32859,58858,35886,53100
+42270,15059,21924
+42271,18906
+42272,24545,51972,44601,67436,4734
+42273,40133
+42274,69962
+42275,16681,59013,65216,1529,50802,21150
+42276,34824,51627
+42277,33370,22549,31569,79039,31128,49676,69933,17052
+42278,54478,74633
+42279,74009,52691,38696
+42280,532
+42281,16305,22382,1419
+42282,23492,39628,80861,28981,69339
+42283,16742
+42284,33663,14015,24893
+42285,40575,13056,17896
+42286,45905,75355,60910,74242
+42287,49605
+42288,22319,15294,44662
+42289,21438
+42290,81380,33225,49607,74536
+42291,71402
+42292,19403
+42293,33594
+42294,41909,79233,36094
+42295,53555,52831
+42296,53438,37494
+42297,12462
+42298,1849,79537,22547,46237
+42299,22939
+42300,72532,18117,53822,51741,61736,23857
+42301,37221,47675
+42302,69249,71964
+42303,79826,67327,29732,34212
+42304,61667,33619,49265
+42305,48712,7735
+42306,44074
+42307,61852
+42308,80222,5859,53128,20366
+42309,9829,55731,4478
+42310,36074,31817,68150
+42311,52781,76782
+42312,37427
+42313,78669,15614,10493
+42314,49198
+42315,80144,39011,18566,38234,71270
+42316,7873
+42317,16887
+42318,70781,60389
+42319,15525,10718,29152,38595,26728
+42320,37681
+42321,57482
+42322,27805,32004
+42323,65917,70331,36280,75064
+42324,1050,34561,24389
+42325,64303,47263
+42326,62082
+42327,51106
+42328,64287,2314,75553
+42329,1002,24016,41000,30776
+42330,73938
+42331,63598,44960,33108
+42332,28599
+42333,45325,12562,67270
+42334,79902,34660,78849,81817,50809
+42335,60251
+42336,37887,75367,76711
+42337,13059
+42338,12631,14112,36367,15047
+42339,32103,28878,27676,58777
+42340,34455,64433
+42341,44987
+42342,71314,13632,70593,81612
+42343,31319,46469
+42344,28366
+42345,27884
+42346,81841
+42347,75445,77450,44014,12390,44726
+42348,48602,53313,48843,60815,35545,17609,26508,56890,61552
+42349,47761,35894
+42350,19208
+42351,1170,2684,53849,77838,6741,35709
+42352,72311,52016
+42353,54365
+42354,48761,45929
+42355,10897,27994
+42356,19026,68565
+42357,28950
+42358,41162,55199,50470,40244,48099,63924,26148,68707
+42359,65040,46
+42360,3130,60123,48338,25964
+42361,71654,33385,72465,5776
+42362,32080,55987,62622
+42363,5742,36104
+42364,22254
+42365,72075
+42366,21752
+42367,38441,37719,43548
+42368,72416
+42369,70302,4878,57254,67451
+42370,73218,20379
+42371,35192
+42372,27806
+42373,59276
+42374,81356,17539,37297
+42375,6639
+42376,64194
+42377,62325
+42378,67284,54935
+42379,31694,33063,29964
+42380,41614,47773,69127
+42381,2696,27005,22616,32007,20891
+42382,32153,22845,18015
+42383,34530
+42384,18384
+42385,3595,39414,786
+42386,41045
+42387,10808
+42388,52526
+42389,48806,49341,24974,68921
+42390,72574
+42391,17929
+42392,59472,58404
+42393,23068,7189
+42394,68680,34779
+42395,43335,42485
+42396,15499
+42397,74555,25009,69903
+42398,53485,59444,6883,46164
+42399,29708,25892
+42400,73345,52744
+42401,68757,77237
+42402,15566,405,44123,36440
+42403,48820,25015,74073
+42404,6564,80251,21701
+42405,75942
+42406,74526,75590,57147,33032
+42407,62824,67395,15814
+42408,51568
+42409,42007,31603,15520
+42410,11333
+42411,54409
+42412,6284,43008,59290,55483
+42413,52643
+42414,2287,4171
+42415,72531,8232,79412,72787,46305
+42416,26200
+42417,28283
+42418,16301,19023,70892
+42419,1661,17821,46071,55537,69210,38145
+42420,40940,4726
+42421,75079
+42422,56795,61316,77643
+42423,78622
+42424,69506,8708
+42425,57214,80512
+42426,67162
+42427,13984
+42428,79917
+42429,27275,60546,73476,26844
+42430,41352
+42431,1094
+42432,81586
+42433,66401,45011,40763,40441,31913
+42434,49529,44218
+42435,69140,44991,28475,19614,66469
+42436,4681
+42437,14697,80117
+42438,51311,5208
+42439,34791
+42440,47949,21228
+42441,66301,44866
+42442,74252,6198
+42443,74795
+42444,35848,36782,52524,66291,55519,36929,14049
+42445,60107,3708,35849
+42446,46759
+42447,51500,79659,9787
+42448,49475,76449,18042
+42449,37508
+42450,60946,29720
+42451,9211
+42452,31032,39472,40419
+42453,14470
+42454,62591
+42455,39995,15310,44119,28736
+42456,52743
+42457,78160,3774,75587,4499,22261
+42458,60215
+42459,65989
+42460,21852
+42461,39540,71078
+42462,54941,68328
+42463,59647
+42464,44351,41880
+42465,19122
+42466,53978,55013,74047
+42467,58304,48085
+42468,60275,45136
+42469,40260,39692,22690,40618
+42470,71539
+42471,17090,48512
+42472,8407,26249,57895
+42473,12178
+42474,18360
+42475,48287,46631,39648
+42476,75797,45963,61769
+42477,80761,75610
+42478,74429,81220
+42479,9208
+42480,42822,58725,50363,28780
+42481,72938,71028
+42482,75538
+42483,32338,9024
+42484,18807,77484
+42485,39079,9855,60082
+42486,66,67703,41828
+42487,25657,70496
+42488,43272,36041,29485
+42489,4008
+42490,76323,5101,51335,55822
+42491,49509
+42492,5361
+42493,18597
+42494,46864
+42495,68536
+42496,8754,52767,34790,15351,7095
+42497,69436,863,52977,21949
+42498,42383
+42499,63269,61201
+42500,19098
+42501,23229,1632,61439,1370,71527
+42502,46231,43563
+42503,26147
+42504,3900,71639,76080
+42505,72943,40480,62911,48888
+42506,32685
+42507,30846,73526,43043,54320
+42508,6990,79720,67485,81884
+42509,52240,792,78563,36322,58138
+42510,64211
+42511,29550
+42512,17203
+42513,55812,12176,24733
+42514,18468
+42515,13928
+42516,73550,24327,79885
+42517,27500
+42518,44591,7234
+42519,72103
+42520,69481,61527
+42521,57739,21175,14065
+42522,21934,79486
+42523,64494,66058
+42524,49109
+42525,27316,17766,7248,41572,31302,13832
+42526,59982,39253
+42527,76997,11564,149
+42528,33907,1423,31271
+42529,32955,71660
+42530,6368,71264
+42531,63856,68363
+42532,27138
+42533,40586,28365,10493,14447,51840
+42534,72207,55325
+42535,77609,53861,2358,46111,21269,58625
+42536,37850,52593,70894,14871
+42537,56215
+42538,49637
+42539,35692
+42540,81745
+42541,11693,35964
+42542,58772
+42543,21740
+42544,15620
+42545,255
+42546,13896,27669,56615
+42547,37449
+42548,38628
+42549,42497,14634,65402,54029
+42550,34992,42186,24071
+42551,36358,41148,62472,54911
+42552,26347
+42553,4517,56953,34844,42217
+42554,61961,22618
+42555,19125,69834,74992
+42556,68575,27899,58220,4208
+42557,36068
+42558,66501,42596,7797,59389
+42559,5868,8313,39515
+42560,51529,49110,12514
+42561,74167,54272
+42562,34232
+42563,58368,69866
+42564,41542
+42565,12965
+42566,6753
+42567,56199,52714
+42568,39710,72340,47214,14237
+42569,38043
+42570,56002,15354
+42571,59784,25804
+42572,58957,48240
+42573,40925,2691,71601
+42574,5486,28985,58593,50105
+42575,3480
+42576,51673
+42577,9772,2148
+42578,80761
+42579,64275,1571,43302
+42580,45403,16106
+42581,80553,30584,64687,18657
+42582,4881,20490,3433,65522
+42583,29309
+42584,23763,52883,20000,61238,50891
+42585,33064
+42586,3649,596
+42587,60819,24462,48047,20819
+42588,61523,41400,34472
+42589,81369
+42590,28718,8052,75178
+42591,18070
+42592,62922,68370
+42593,19350
+42594,73647,62284
+42595,58299
+42596,67740,54632,7030
+42597,13401,40303,25806
+42598,73443
+42599,79673
+42600,21597
+42601,26641,66044
+42602,24911
+42603,70589,17742,39245
+42604,77458,33966
+42605,67424,71629
+42606,47462,24418,19377
+42607,45630,31190,35073
+42608,42093,79399
+42609,53336,15294,3353
+42610,26896,62536,48610,45379,68951,81369
+42611,52162,51843,73415,45519,61894,15236
+42612,5835
+42613,64028,3250
+42614,73965,43162
+42615,43280,28968
+42616,78853
+42617,49936,9019,26510,56890
+42618,67390,64776
+42619,67056,81142,77986
+42620,79722,38011,69064
+42621,73368
+42622,35775,26986
+42623,53042,37534,40646
+42624,26270
+42625,7281
+42626,6194,61529,15106,79599
+42627,51409,56696,78693
+42628,73587,21016
+42629,58776
+42630,73885
+42631,11960
+42632,25992,64558,34966,70593
+42633,5492,67618
+42634,39908
+42635,51568
+42636,35708,3407,56168
+42637,18474,52339,4280
+42638,18101,19758
+42639,13473,18765,61034,1010
+42640,75207
+42641,75338,2533
+42642,78201,64236
+42643,12990
+42644,61430
+42645,76646,40267,37350,44063,46091
+42646,38925
+42647,55819
+42648,31437
+42649,77404
+42650,22185,39170,2325,71900,80122,6696
+42651,22052,22030
+42652,49609
+42653,76948,29069,57309
+42654,43755,13159,59935,13620
+42655,50195,56122,32260,64806,28206
+42656,17811,68930,23360
+42657,2527,81056,45718
+42658,23916,19080,54641,19701
+42659,45168
+42660,81784
+42661,4406,3214,39921,521,68945
+42662,76588
+42663,35371
+42664,66707
+42665,75498
+42666,33793,39966
+42667,40514,38823,6898
+42668,70781,1065,18846,61075,44393,26835
+42669,63089,7077
+42670,19315,73010,70539
+42671,58879
+42672,30138,55036,81865,28919
+42673,21664,51735
+42674,38568,59078,45989,6960,15279
+42675,45265,79978,63617,49998,7866,82184,50334,78414
+42676,53456,856,20461
+42677,39917
+42678,66358,77284
+42679,61760
+42680,20725,48859
+42681,11520,65554,64259
+42682,46147,15284
+42683,73218,30642,22097,15493
+42684,55308,70294,61538,55655
+42685,43185
+42686,31397,37437,44324,75100,77563,3650
+42687,45091
+42688,4134,26732,44231
+42689,68908
+42690,51623,7821,11169,41809
+42691,4565
+42692,44529,75192,43902
+42693,51844,80179
+42694,81554
+42695,23857,8270,35372
+42696,36767
+42697,35144,36020,41858
+42698,31994,16819,59460
+42699,45106
+42700,67295,68544,47308
+42701,33914,2830,42817,68602
+42702,74287
+42703,44480,68470,63065
+42704,4019,40739,63270,46614,24248
+42705,57814
+42706,63664,3033,46266
+42707,10119
+42708,33361,52210
+42709,45134,51391,50710
+42710,1171,31291,11171,81052,33853,36868,4785,68067,14397
+42711,59511
+42712,46776,49931
+42713,29113,67937,11481,53935,8608,60343,2294,22535
+42714,49953,53053,62977,57255,45459
+42715,20496,26416,56330
+42716,66185,39285
+42717,72744,38194,35618
+42718,43265,65397,67986,76250,42367,53795
+42719,79434
+42720,43092,35122
+42721,28730,76135,18308,38297,58647
+42722,29283,48050,15454
+42723,79203
+42724,78789,72285,78897,47034
+42725,42390,62749
+42726,14758,42384,41367
+42727,55894,81156,21302
+42728,19383,39312
+42729,40212,37310,9904
+42730,64454,853
+42731,13127,19480,18109
+42732,70658,53337,76431
+42733,39357,23155
+42734,25037
+42735,3085
+42736,35263,14951,13442
+42737,27361
+42738,79668,38277,60509,38050,30877
+42739,71628
+42740,11559,50622,21504
+42741,102
+42742,13692,74249,62797,74924,11245
+42743,29324
+42744,42151
+42745,53420
+42746,63024,58486,48806,41183
+42747,42576
+42748,28717,3070,35330,64418,64543,75976
+42749,58046
+42750,57225,13483,38139,54107
+42751,25808,8172,19076
+42752,67648,29489,6601,68964,34776
+42753,36737
+42754,44927,75138,51012,24537,48824
+42755,45736
+42756,27776,46468,67036,36840,67214
+42757,36207
+42758,40350
+42759,33495
+42760,13182
+42761,56922,2834,66888
+42762,23465,40373
+42763,7420,73149
+42764,36584
+42765,16259,18203,80268,33831,61750,43680
+42766,71209,23779,53344,63815
+42767,2080,58498,38927
+42768,21268
+42769,34571,22285
+42770,39403,3023,33514,68979
+42771,23709,49711,81759
+42772,75625
+42773,7750
+42774,78504
+42775,20078
+42776,55087,21558,62524,79818,58795
+42777,61510,56039
+42778,29213,17191
+42779,80576
+42780,55215,22181,25388,3010
+42781,28437,42536
+42782,9130
+42783,78887
+42784,52885,81700,19673
+42785,9177
+42786,60483,34334
+42787,2783,29242,50683
+42788,40483,31102
+42789,57101
+42790,17654,37827,73270,79133,10219,66799,78799
+42791,30543
+42792,46821,31700,51569,37123,25177,47510,57685
+42793,26416,9586,49995
+42794,69798,30312,54686,63642
+42795,34444,39,49701,79907
+42796,32985
+42797,16299
+42798,53007,73864,81832,8093,28140
+42799,23414,35962,24453
+42800,29641,16764
+42801,22844
+42802,36111
+42803,81676
+42804,15549,550
+42805,9770,52825
+42806,35295,7529
+42807,74860
+42808,58261,2948,9617
+42809,20071
+42810,17689,26388
+42811,35727
+42812,7281
+42813,35261,45516
+42814,60923
+42815,38020,28870
+42816,70603,81243
+42817,50873,21017,5192,14245
+42818,65338,48146
+42819,28296,31705,81449,34700
+42820,75561
+42821,71368,29975,33824
+42822,68278
+42823,69747,23061,20146,24355
+42824,30210,77072,66714
+42825,66404,61129
+42826,28754,57565
+42827,34909
+42828,9983,60692
+42829,38528
+42830,31717
+42831,33428
+42832,25223,18398,37041
+42833,43064,48239,16964
+42834,33734,49226
+42835,81149,12661
+42836,19085,60102,71774
+42837,13091,45703
+42838,46028
+42839,38626,49278,10390,46176,61274
+42840,16284,58104,40865,60432,35971
+42841,59984,48596,6429
+42842,17270,44034
+42843,10809,68795
+42844,61586,70129,68220,36410,30074,60911,62163
+42845,55346,20785
+42846,74302,52642,22737,30004
+42847,52541,65316,34221
+42848,29739,3723
+42849,72435,46312,29762
+42850,64899,61926
+42851,71404
+42852,39442
+42853,55724,47949
+42854,57265
+42855,76583
+42856,22519,57964
+42857,67986,36904
+42858,50769,66361
+42859,76529,79369,22267,7195
+42860,5135,61610,62405
+42861,46261,17009,70991
+42862,28286,34826,55490,33587
+42863,48022,66428,15497
+42864,12338,5048,75084
+42865,41940,25403,57067,20459,67589
+42866,27778,35037,65952,36926,61944
+42867,72461
+42868,51281,81241,23299
+42869,31079
+42870,18999
+42871,65996,48267,43061
+42872,59480,38901
+42873,33791,62011,24736,60406,65379,37559
+42874,71137
+42875,35433
+42876,12360
+42877,28669,1967,12188
+42878,32914,12045,11760
+42879,75665,18968,40573
+42880,67515,2848,61409,43353,32790,39887
+42881,61728,39471,40676
+42882,2694,26903
+42883,43357,28907,18047,23207,65124,46861
+42884,41234,49248
+42885,14160
+42886,46114,15900,13969,62605,7326
+42887,55756,38777
+42888,25728
+42889,5797,13773,57668
+42890,61134,316
+42891,48548
+42892,65320
+42893,17981,55769
+42894,76033
+42895,37543
+42896,32500
+42897,25086,46377
+42898,60741,11379
+42899,5639,29775
+42900,11322,29320,23688
+42901,37754
+42902,70379,17166,46798
+42903,6223
+42904,29152,39097,31459,20494
+42905,59306,54844,33021
+42906,5689
+42907,35042
+42908,12680
+42909,28775,37583,64036,54713,74828
+42910,66678,52834,75689
+42911,18322,22806,37789
+42912,78243,70795
+42913,19624,25620,19506
+42914,41211,62674,26727,64339,17375,25901,72457,55764
+42915,35327,21882,33732,25232,55434
+42916,28183,51761,64884
+42917,2862,60757,42090,30971,1030
+42918,71459,81034
+42919,23465,72377
+42920,37956,4198
+42921,57763,52290,18168,26489
+42922,69348
+42923,59982,71552
+42924,60729,32170,74908
+42925,26009,6785
+42926,67086
+42927,73658,16790
+42928,30897,29444,65166,15046
+42929,4278,42230
+42930,13926,61445,76534
+42931,33159
+42932,29433
+42933,35063,53226,4116
+42934,75602
+42935,39050
+42936,22263,12550
+42937,31039,30863
+42938,32137,54414,41963,18212,30481
+42939,30720
+42940,22749,247
+42941,3569,39020,6614
+42942,61262,2633
+42943,20359
+42944,79809
+42945,11073,20258,60652,46953
+42946,63708,48923,8530,48569
+42947,7991
+42948,6155,30184,78793
+42949,74302
+42950,61522
+42951,14166,23014,54827,24520
+42952,66547,71153
+42953,57084
+42954,66538
+42955,73123,21962,41908
+42956,38321
+42957,22545,3359,21243,57391
+42958,27873,7909
+42959,79020,59314
+42960,58751
+42961,26294
+42962,24911,35141,74437
+42963,4400,2814
+42964,36560,13957,66287
+42965,51854
+42966,45681
+42967,39403
+42968,15667,49006
+42969,68769
+42970,63510,4587,39272,6248,55643
+42971,82087,22201
+42972,17553
+42973,17499,13243,15452
+42974,9131
+42975,42115,57486
+42976,72312,42816
+42977,77214
+42978,9675
+42979,62059
+42980,20907
+42981,49254,33124,52216
+42982,58925,25919
+42983,19744,59052,46963,62639
+42984,4301
+42985,71268
+42986,22388,3667,57429,75944
+42987,23764
+42988,19377
+42989,9832,2073,20986
+42990,59025,34816
+42991,50250
+42992,6726,45365,25427
+42993,18377,62740,37318
+42994,23849,4104
+42995,56112
+42996,48524,56596,56013
+42997,15091
+42998,80303,75921,33456,14008
+42999,66937,76471,38649
+43000,25313,26272
+43001,31764
+43002,13329,78117
+43003,75625
+43004,1583,9129
+43005,20996,14857,33710,49031
+43006,2910
+43007,56976,44986
+43008,64179
+43009,14437,55742,79805
+43010,78932,47282
+43011,4739,12724,75969,8533,77625
+43012,30323,71874
+43013,21589,62224,41083,42051
+43014,78748,54081
+43015,51470
+43016,39872,55484
+43017,19947
+43018,44725,47187,13741
+43019,45270,78691
+43020,42779
+43021,33666,30809,51600
+43022,47927,11425,3934
+43023,4279,72771,7351
+43024,54790,66642
+43025,16926,27665
+43026,52783,70396,33137,59609,4471,26670
+43027,27573
+43028,67928,9151
+43029,60579,3010,80888,41566,25503,81705,5915,19715
+43030,76662
+43031,32595
+43032,10805,74045,58649,30864,42737
+43033,73647,8662,19767,70256,34015,73066
+43034,72738,49955,13673
+43035,40581
+43036,3527,20217,66277
+43037,79382,22642
+43038,6501,71989,48037,71579
+43039,75402,26342,45385,36973,6326
+43040,14685
+43041,8007,79952,70112
+43042,46807,67533,78017,39700
+43043,50494,30825,17367,50706
+43044,54834,61088,47388,48615
+43045,22375
+43046,46054,74086,78303,35167,49319,56892
+43047,68457,52941,64396,45639
+43048,2155
+43049,3043
+43050,30333,26270
+43051,45573,37244,34082
+43052,55131,38501
+43053,10329
+43054,46619
+43055,77998
+43056,19097,52991,3390
+43057,9149,39097,64494,48788
+43058,28985,42591,70448
+43059,20237,76342
+43060,19167
+43061,38285
+43062,79969
+43063,76859,62483,5882,70589
+43064,44015
+43065,39052,33099,31403
+43066,71194,36315
+43067,10788,77247,8015,53171,32875
+43068,57319,68570
+43069,66745
+43070,40979,80190,75475,12372,5120,48742,32776,17387
+43071,72186
+43072,50111,80309
+43073,38980
+43074,66786
+43075,2142,62968,81933,34650
+43076,70594,80512,78081,51869
+43077,21842,4839,22331,35438
+43078,65208,21509,42891,58125
+43079,4756,53221,75789
+43080,36048
+43081,16278,71685,9255
+43082,66397,67272,65136
+43083,16034,869
+43084,532,69871,60237,81216
+43085,14823
+43086,44061,13931,2112,40207,66446,17312
+43087,31411,18979
+43088,44061
+43089,5935
+43090,28311,7860,44354
+43091,51769,4881,14710
+43092,35754,69595
+43093,30734,81544,31799,34696
+43094,50055
+43095,58978,57103
+43096,32822,9419,63910,60222,37751
+43097,71300
+43098,2365,15367
+43099,61087,59530
+43100,16423
+43101,15079,3180
+43102,48688,15210
+43103,26032,18728,26443
+43104,31396
+43105,1497,71053,77459,33886
+43106,20308,60381,15624,71243
+43107,48200,73069,31857
+43108,78835
+43109,55800,80822
+43110,30375,52225
+43111,81266,17244,11772,1473,28447
+43112,11088,29747,39047,62200,13155,70882
+43113,79437
+43114,25325,11400
+43115,15024
+43116,26331,74525
+43117,1880
+43118,78048,49150,20625
+43119,72380
+43120,29387,60398,54198,22512
+43121,20037
+43122,73375
+43123,46688,56623
+43124,67590
+43125,51687,40133,14886
+43126,41571
+43127,44726
+43128,63984,73145
+43129,68566,8285
+43130,51990,65241
+43131,26874,46288,11972
+43132,1094
+43133,19066,67265
+43134,23442,75085
+43135,72820,78419
+43136,19013,22541,30120
+43137,34779,53123
+43138,81424,8537
+43139,57504,26827,27189,64322,27035
+43140,70647,77308,64842,56508
+43141,11135,35284,1522,37549,41031,71270
+43142,58950
+43143,75914,72092
+43144,45534
+43145,2643,13519
+43146,65030
+43147,78411,57637,3063
+43148,5798,24077,46058,23942,71615,19666
+43149,77500
+43150,59587,65488
+43151,56395
+43152,24403,78539,7723,16427
+43153,5736,1155,30881,60038
+43154,41089,25046,64609,64928
+43155,34242,6231
+43156,64743,51035,42241
+43157,56670,1723
+43158,44304,79552,57162,30568,69378,31734,14797
+43159,26361,8283
+43160,49219,65320,9448
+43161,17264,35871
+43162,17244,67685,4617,72933
+43163,31531
+43164,36663,27564,19371
+43165,13864
+43166,15020,43236,32236,80119,26188
+43167,76427,2812,75016,11134,41077,14653,45756,75529
+43168,69071
+43169,42102
+43170,3307,67541,65945,14296
+43171,21682
+43172,7643,56169,15569,20846,80725
+43173,75209,60294,46047
+43174,71262,52280,40586,38996,68084
+43175,49407,36511,33323,50463,81791
+43176,71892,31100,22375
+43177,21017,81652,52975
+43178,772
+43179,30427
+43180,5195,14716,35097,67939,8659,78608
+43181,33613,45332,26893
+43182,46430,38374
+43183,56649,66806
+43184,51847
+43185,36680
+43186,27637,5000
+43187,72773
+43188,21665,5664
+43189,79462,31412
+43190,76611,20559,21269,52747,19233
+43191,60711
+43192,60384
+43193,23665,21763,70375,10103
+43194,36195,74258,16123,25933
+43195,19074,80402,35786,70262
+43196,29720
+43197,58832,39032
+43198,11545
+43199,14675,2511,6984
+43200,59024,38297,44496,16618
+43201,33019
+43202,16109,44278
+43203,77887
+43204,43802
+43205,48878
+43206,44095
+43207,5787,63393
+43208,3807
+43209,26467,629,40141,49159,16834
+43210,58657,14304,34148,66071
+43211,31066,50682,40245,73379,23764,25560
+43212,43290,24630
+43213,20760
+43214,32458,7449
+43215,39443,70178,12069,30525
+43216,79377
+43217,71377,79537,48414,60370
+43218,27543,43765
+43219,56331,55484,77997
+43220,15125,21117,58040
+43221,22465,13819
+43222,76526
+43223,45140,81297,54859
+43224,18525
+43225,39045
+43226,62804
+43227,80132,67555
+43228,73808,59727,63665,81320
+43229,73160,77178,26273,48479,25244,16882
+43230,2802
+43231,30052,15105
+43232,63854,43237
+43233,81840,82123,31234
+43234,17878,27568
+43235,36697,13729
+43236,76732
+43237,1994
+43238,79050,15890,9589,79855
+43239,34326
+43240,67479,24938,48707
+43241,78657
+43242,76749,34559,22691,33526,59774,1938
+43243,24423
+43244,29374
+43245,59630,61710
+43246,2142,54565,1085,70868,7551
+43247,9635,60757
+43248,63229,12343
+43249,1303,53671
+43250,42449,46696,38007,56998
+43251,74711
+43252,1580,65223
+43253,12735,65265,52403,60614,18070
+43254,35186
+43255,68207
+43256,1808,1477
+43257,71362,16065
+43258,6281
+43259,56007
+43260,63443,45279,65226
+43261,25756,53619,22485,80555
+43262,41279,19360
+43263,23506
+43264,28423,21300,18386
+43265,69231
+43266,65210
+43267,77618,66765,25300
+43268,44809,14374,71379
+43269,72395
+43270,58798,9569
+43271,23722,53349,32836,76551,13558
+43272,8773,62898
+43273,42458,48615
+43274,44822,77340
+43275,41893,51171,12635
+43276,37161
+43277,14535
+43278,7796,44502,60650
+43279,48566
+43280,56241
+43281,1701,74308
+43282,42768
+43283,32068
+43284,23305
+43285,65485
+43286,45975
+43287,17319,49165,62727
+43288,69701,80899
+43289,18439
+43290,27474,33840
+43291,80621
+43292,72361
+43293,65407
+43294,42510,68238,78236
+43295,79140
+43296,75913,9707
+43297,62126
+43298,28316,60435,30503,45872,75170
+43299,48598
+43300,34123
+43301,81288,45454,59095,63918,34228
+43302,12468,70383
+43303,16097,32488
+43304,25591,73639
+43305,11063,30505
+43306,11910
+43307,58386,21276,2837
+43308,30378,33460,79702,48335,72693,32928
+43309,50344,69716,9778,42959
+43310,58070,76978,62241
+43311,26176,81778,3752
+43312,4241,57136,66469,1877
+43313,18307,74817,30964,66030
+43314,13984
+43315,62661
+43316,9391,70062
+43317,43575,14233
+43318,13259,32231,18723
+43319,57054,11134,17712,79369,35006
+43320,46854,33933
+43321,56354,79906,46230
+43322,15179,27275,30897
+43323,5730
+43324,44721,16234,70693
+43325,57299,70294
+43326,63938
+43327,7089
+43328,6447,79726
+43329,33768,69077,60488
+43330,6937,27128
+43331,6799,56921,18621,50033,24308,25061,6573
+43332,37209
+43333,21565,6894,21585,27234,57866,44527
+43334,53198,44308
+43335,50625
+43336,51536
+43337,17794,48334,47800,80375
+43338,42279,12510
+43339,16149,80227,3545
+43340,66223
+43341,25062
+43342,28764,63724,33470,46013
+43343,4178,37919,57700,30367,72041,24211
+43344,21451,39690
+43345,48451,12997,43607,50850
+43346,57960
+43347,48464,62488,48885
+43348,59537
+43349,45498
+43350,3729
+43351,53098,42394
+43352,50258,11481
+43353,4607,59266,50226
+43354,14572,43381,3896,67196
+43355,23668
+43356,53208,43134,38227,44734,48568
+43357,64241,22253
+43358,69995,58659
+43359,33440,33615
+43360,19863
+43361,7125,15051,12802,35189,62623,16509,57456
+43362,42493
+43363,66241
+43364,39316,75570
+43365,19616
+43366,80075,63513,36929
+43367,36149,8118,81652,35234,6396
+43368,49116
+43369,10648,7970,60005,28248,50633
+43370,24631,80080
+43371,63612
+43372,45565
+43373,24907
+43374,10287,37828,72617
+43375,45060,36199,12112,54573
+43376,10184
+43377,16045
+43378,55674,12112
+43379,30156,38386,42545
+43380,8543,57889,65933
+43381,59071,68160
+43382,52482,53653,25572
+43383,76843,56714,26964,40990
+43384,65522,66068,77554
+43385,66558,60155,68081,2674
+43386,61760
+43387,62875
+43388,2230,62205,60528
+43389,51069,78222,59450
+43390,57762,25756,34169,77122
+43391,80664,78047,27848
+43392,68449,26995
+43393,19577,75803,32988
+43394,73883,68395,2994
+43395,43280,31269
+43396,37537,55227,35991
+43397,42715,29436,9418
+43398,32160,49544
+43399,20592,62159,15796,49515
+43400,43327
+43401,12959
+43402,58012,3662
+43403,52706
+43404,21180
+43405,36157,24709,22151,46215
+43406,22747,22022,70195
+43407,67544
+43408,32080
+43409,8319,47156
+43410,40829,64149,15950
+43411,25315
+43412,61444,77344
+43413,18076,76375
+43414,65930,17297,4071
+43415,71709
+43416,48847,17815
+43417,25824,76865,6911,81385,76468,22447
+43418,59189
+43419,11878,42775
+43420,27356,26154,63542
+43421,34375
+43422,70517,76270,67183
+43423,70892
+43424,9363,73869,10554
+43425,50416,5892,12832,15643,8242
+43426,16394,33526,62247
+43427,62696,43295,47533,62323
+43428,30329,62573,47896,23581
+43429,10299,74676,58700,26273
+43430,21437,23442,40642
+43431,67786,74062,18746,13898
+43432,48373,32101
+43433,45482,79161,34838,49836,42466,66066
+43434,58638
+43435,79262,45597,29569
+43436,7494,16888
+43437,66283,79840,58691
+43438,20400,6277,4196,56118,67018
+43439,33556,33760,44524
+43440,13476,16754
+43441,20257,50233
+43442,42491,81336,73725
+43443,52198,66970
+43444,4401
+43445,67501,71904
+43446,36430,59583,25887,7202
+43447,40641,81306
+43448,71841,56321,43119,78999,19587
+43449,62256,11587
+43450,27846,70383
+43451,47243,5580,49480
+43452,24375
+43453,72566,74140,35410
+43454,46282,7174
+43455,67473
+43456,71507,44216,24230
+43457,4939,36063,20235
+43458,62384,16433,18995
+43459,71473,12608
+43460,33121,45927,79012,24909,60845
+43461,26452
+43462,70667,47341
+43463,24181
+43464,48936,22580,711,68784
+43465,77758,43787,58867,40211,35085,33300
+43466,28040,4894,76321,17043
+43467,26720
+43468,35285,21988,8015,64882,12263,66878
+43469,72054,60072
+43470,80616
+43471,40046,30217,24129
+43472,22757,53000,19358
+43473,32897,42487,41970
+43474,16299,56632
+43475,62318
+43476,75348,18730,67157
+43477,57283,30416,78297,18090,69515
+43478,30653,6461
+43479,62720,66079
+43480,50509
+43481,11836,12557,63531
+43482,36964,2903
+43483,43706
+43484,47518,41802,78727,76156,47946
+43485,43085
+43486,65832
+43487,11370
+43488,28614,18516
+43489,12727
+43490,35192,74455,7857,43263,42289
+43491,40015,57124
+43492,61249
+43493,15975,4239,70033,27618
+43494,33392,68818,55791
+43495,38797,51178
+43496,22968,19079
+43497,32545,4837
+43498,81855,59419,31487
+43499,45350,73231,10840
+43500,79917
+43501,21007
+43502,371,7369,2837
+43503,3345,57371,78806
+43504,6932,59146
+43505,12485,51715,58012,74092,30467,31722,18759
+43506,37418,70795,70592
+43507,61365,45471
+43508,77629,26667
+43509,15409,67870,11778,74200
+43510,12700
+43511,12884,13233,73051,81673,46693
+43512,51762,56705,80441
+43513,57111
+43514,49525,35997
+43515,19063,44240
+43516,44277,31115,32797,42208
+43517,38533,29635,44221,79442
+43518,11581,17301,75261,57389
+43519,15956,24533,66459,42974
+43520,31535
+43521,30842,38082,45385
+43522,58331,46849
+43523,51508
+43524,1942,5828
+43525,2685,73072
+43526,22201
+43527,63430
+43528,44125,78430
+43529,74660
+43530,63109,80858,16613,78764,1667,51058
+43531,26923,31563
+43532,37865,62181,25626,59795,57213
+43533,23480,58171,37710
+43534,14449
+43535,16149,41660,78562
+43536,62839,31535
+43537,67202,48797
+43538,2119,48005
+43539,71610,6885,21314
+43540,62739,22586
+43541,29755,26009
+43542,54174,16601
+43543,27090
+43544,13285,75891,10882
+43545,24956,82123
+43546,78387
+43547,71854,1563
+43548,59332,5337
+43549,44447,73991
+43550,17571,16501,55232
+43551,1395,23125,54395,38771,75464
+43552,29728,1174,46670
+43553,11484
+43554,11791,50601,24956
+43555,40472,63541
+43556,53553
+43557,42145,45318,29336,4439,29953
+43558,4783,348,41543,35994,49513
+43559,3220,46163,29833,13089,34792,31375
+43560,22619,56609,30895,63228
+43561,79552,73805,53662,8576
+43562,54197,40884,19700
+43563,70100,13712
+43564,67768
+43565,74916,267,75832
+43566,69237,5725,39446
+43567,65875
+43568,80599,81882,12722,37974
+43569,39501,72166
+43570,71009,32666,4198
+43571,36209
+43572,18800
+43573,50332,66278,77744
+43574,46078,71069,42702,49633,55329,17911,80896,18476,73742
+43575,4104
+43576,70877
+43577,17632,21880,76246
+43578,38719,54861,78960,68931,66715,40737,697
+43579,55838,42639
+43580,38391,46720
+43581,77194,45998
+43582,59634,4555
+43583,19735,57246,40327
+43584,18562,27578,61233
+43585,11162,41535,15988
+43586,65473,83,53703
+43587,15349
+43588,72204,30674
+43589,72687
+43590,72910,60304,3143
+43591,25077,16866
+43592,42390,73080,36327,30969,15584,15933
+43593,5040,46012,30117,36833,78165,75808,48080,69719,28691
+43594,4147,49227,72947,79543
+43595,74686,63675,9226
+43596,32843,78102,74949
+43597,22176,60491
+43598,46056,71992,79171
+43599,33633,71259,29766
+43600,47351,22326,1592,76748
+43601,29468
+43602,53177,79397,14300,15297
+43603,10972,69254,474,17740,18278
+43604,9251,46300,72074,1391,24554
+43605,28761
+43606,56989,17172
+43607,46476,22391
+43608,23164,31194
+43609,79393
+43610,29145,53508,81217
+43611,45769
+43612,27482,27266,51113
+43613,81288,35598
+43614,80488,23724
+43615,79618,21918
+43616,52259,70869,40029
+43617,49046
+43618,41354,78566
+43619,7696
+43620,75726,51712
+43621,29985
+43622,61420,20456
+43623,45194
+43624,60141,46591
+43625,8247
+43626,47630,15475
+43627,16532
+43628,40550,52383,80016
+43629,19184,24472,69174
+43630,13589,17652,67512,1579
+43631,51875,70460,55643,55435,22428
+43632,50114,12327,61436,25335,1776
+43633,41901,36672
+43634,787,73561,53503,68773,53336
+43635,44664
+43636,19311,72553
+43637,48136
+43638,26375
+43639,13381
+43640,61268,24737,80997
+43641,59484,66079
+43642,78333,17191
+43643,79591,62314
+43644,13957
+43645,13756
+43646,22790,35816,24113
+43647,52975,44769,75735,54044,21392,78510,53243
+43648,2421
+43649,52467,18351
+43650,37827,43843
+43651,7482,25378
+43652,30575
+43653,19207,28798,66973
+43654,17358,58613
+43655,54931,9944
+43656,78241
+43657,58806
+43658,20880,57645
+43659,59042
+43660,66814
+43661,23249,53739,60294,63700
+43662,7927
+43663,55552,23733,52987,10258,20924,12423
+43664,12078
+43665,55268
+43666,44827
+43667,35867,37111,75421,21405
+43668,67157
+43669,3224,61747
+43670,45112,74322
+43671,34347,47906
+43672,15922
+43673,28914,1658,77876,1096
+43674,13645,34688,17692,56282,56445,36425
+43675,59446,25387,8019,11396,33692
+43676,38743,6825,49083,31857
+43677,11308,7853
+43678,14045,11114
+43679,77667
+43680,74211,36327
+43681,51099,49244
+43682,76571
+43683,47347
+43684,71539
+43685,23768,51679,16311,24225
+43686,36294,21763,43870,61946
+43687,33939,34194
+43688,23620,36813,29338,67992
+43689,67300
+43690,48097,45092
+43691,55955,23254,9772,20756,71191
+43692,44626,29905,50449
+43693,27013,45045,18406
+43694,28517,34973,54022,42806
+43695,69141
+43696,78455,66072
+43697,14096
+43698,71246
+43699,19342
+43700,64665,34660,56608,12557
+43701,69035
+43702,58180,71800,15349,47825,4170
+43703,31000,48665,59859
+43704,75078
+43705,11740,26320,69933
+43706,30245
+43707,28368
+43708,41989,20528,75498,290
+43709,521
+43710,25718
+43711,22376
+43712,33764,79111,63430
+43713,28391
+43714,31836
+43715,42391,26644
+43716,50386,34082,49481,42887
+43717,72541,19324
+43718,17652,19529
+43719,15832
+43720,49496
+43721,2435,27832,23738
+43722,17736
+43723,12713,13858
+43724,34816
+43725,57804,15314
+43726,56358,55237
+43727,36989,24181,78869,66778
+43728,60058
+43729,32831,74697,73117
+43730,78807
+43731,67214,63141,27040
+43732,15023,1274
+43733,65592,44332
+43734,37293
+43735,26148,62515,79180
+43736,36244,53369,19081,23249
+43737,5486,3259,31166,56587
+43738,39639,60712,35761
+43739,54162
+43740,33610
+43741,34019,66798,76289
+43742,68366,11261
+43743,7529
+43744,72098,55019
+43745,10895
+43746,15726,41469,44711,25298
+43747,40157,4512
+43748,42918
+43749,49226
+43750,41858
+43751,40991
+43752,49871,18107,25224
+43753,48490,18132,80841,47510,79603
+43754,68335,80917,50103
+43755,73141
+43756,81344,51450
+43757,5199
+43758,28038
+43759,18820
+43760,62890
+43761,9983
+43762,25156,52579,66284
+43763,15141,21729
+43764,76101,50678,6651,9833
+43765,17596
+43766,2692,29376,17652,75686
+43767,65789,11566,77783,41868
+43768,58754,22948
+43769,5957,67763
+43770,62499,64456
+43771,34539
+43772,53047,63597,30211,69289
+43773,73476,63834,48917,4102
+43774,12129,7861,58163,45833,30489
+43775,11578,26949
+43776,76932,12831,27911
+43777,70388
+43778,38123
+43779,53376,42616
+43780,27461
+43781,68226,33463,31985
+43782,79391,34544
+43783,23029,47897,63061,11814
+43784,74707,64226,56503
+43785,48912,13238
+43786,34032,55153,31625
+43787,41069
+43788,72873
+43789,16386
+43790,7694,5664,78663,23737
+43791,10294,26635,25943
+43792,29717
+43793,26564
+43794,51293,32620
+43795,15466
+43796,73256
+43797,943
+43798,68981,64788
+43799,8987,26350,45599,37248
+43800,61813,39487,24706
+43801,2349
+43802,73773,7468,46740
+43803,14881,8942
+43804,59963
+43805,43290,50878
+43806,26779,27011,50071,41330
+43807,75532
+43808,58333
+43809,79855,43870,45264
+43810,65409,73969,78738,43918
+43811,40763
+43812,53168,72783
+43813,33283,72032
+43814,34817
+43815,16096,24435,75866,41392
+43816,55854,19074,60168,42053
+43817,68963
+43818,21768,70517
+43819,36547
+43820,77210
+43821,47656,49391,36674
+43822,34897,6343,44067,66564,25966,26741
+43823,81549
+43824,72962,66510
+43825,42042,22113,33288,36964
+43826,74120,43565
+43827,60457
+43828,47845,33638,15152,6245
+43829,10301,40957
+43830,63124,35649
+43831,4384
+43832,50073
+43833,13159,30093,4617,40202
+43834,60155,3461
+43835,75339,78435,27193
+43836,50965
+43837,76858,30767,49553
+43838,13586
+43839,29856,21120,1462
+43840,6987
+43841,32923
+43842,31200,24695
+43843,33204,44866,7594
+43844,67855
+43845,9448,59364
+43846,1680,26547
+43847,34286,44855,57205,1611
+43848,72075
+43849,64462,7809
+43850,31049,73431,20917,64084
+43851,73742,10825,51787
+43852,59315,70759
+43853,71870
+43854,80146,64628
+43855,47195,58459,59402,54476,9776
+43856,81032
+43857,58027,24880
+43858,28366,62638
+43859,50586,50460
+43860,14526,22813
+43861,23630,38172,53737,20175,67897,63514
+43862,15221,22494
+43863,26612,35320
+43864,9138
+43865,38114,20288,55258
+43866,54512
+43867,47645,13122,54324,31239
+43868,6040,72893
+43869,40626,14677
+43870,70816,80641,74852
+43871,45520,53354,62418
+43872,32876,53529
+43873,81641,48895,34091
+43874,59322,63725
+43875,27007,53213,73166
+43876,65998
+43877,52159
+43878,29801
+43879,20716
+43880,33368,35449
+43881,71069,60918,8600
+43882,80915
+43883,79258
+43884,58025,36595
+43885,39787,62513
+43886,13524,76502
+43887,34121,66510,47051
+43888,74525,13139,74568
+43889,17683,3619,67992,15766,28043
+43890,62646,58818
+43891,18689,38402,73447
+43892,41687
+43893,31347,64196,31620
+43894,16742,51908
+43895,26612
+43896,56118,81369,4223
+43897,79517,55731,6376,8797
+43898,43366,28519,18784,71517
+43899,18218
+43900,36799,50600,38524
+43901,29123
+43902,72114,57976,69814,5125,31142,54732
+43903,44001,28076,64582
+43904,32618
+43905,53743,17249
+43906,74337,37993
+43907,31974,56530
+43908,18866,7874
+43909,31359,36886
+43910,20420
+43911,71029,61000,44231
+43912,33671
+43913,5279,39623,3158
+43914,1002,76016,27159,71267,25433,40167,25717
+43915,3136,70785,28915,18701,38509
+43916,46635
+43917,17264
+43918,24106
+43919,71137,58313
+43920,57872,48788,1043
+43921,4630,67300,33652
+43922,57460
+43923,62676,25436
+43924,17698
+43925,29352,49496,39164
+43926,11861,64921
+43927,75216,45993,11068
+43928,24270,32988,58190,30089
+43929,62472
+43930,17725,34277
+43931,54550,32403,49731
+43932,13073,79578
+43933,69241,37717
+43934,74756,19991
+43935,65279,6429
+43936,20805,16572,30902,19465
+43937,46389,53789
+43938,46094
+43939,32259,47218,24651
+43940,65136
+43941,62458,74381,63120
+43942,75869,15075,34466
+43943,49251
+43944,48592,60432,75596
+43945,61312,32785
+43946,42994,59450,25371,46589,43916
+43947,8270,42684
+43948,34894,57561
+43949,29822
+43950,81102
+43951,65037
+43952,59591,9081,60075,34848,59298,29037
+43953,69549,23814,4723,77769,3436
+43954,79963,28649,76268
+43955,67091,80530
+43956,71390
+43957,48941,28101
+43958,73583,17754,23581
+43959,47600,23377,52449
+43960,5945,67938,29322,7671
+43961,944,69900
+43962,33691,47441,65570
+43963,51097
+43964,70797,80894
+43965,78041,57265,49041
+43966,38706
+43967,60480,58350,19341,9463
+43968,22478
+43969,144,12372,10910,72124
+43970,30458,57659,74135,24397
+43971,62918,10010,68945
+43972,62516,25956
+43973,34683,32554,20503
+43974,38762,71304
+43975,29122,10990,27114
+43976,28384,14541,16883
+43977,75901
+43978,64313,29925
+43979,62839
+43980,66399
+43981,30639,37322
+43982,21090
+43983,48715,45158
+43984,47620,72768,75184,45181,62480
+43985,30155,59467
+43986,72465,7753,40026,60623
+43987,49645
+43988,59710,57088,71360,71579
+43989,20147,15905
+43990,64065
+43991,38600,12485
+43992,6628,5543,31005,81317
+43993,45187,20041,71983,40195
+43994,35888,45631,7646
+43995,73522,76799
+43996,46901,21994,44207
+43997,30909,27814
+43998,5455,70925
+43999,29051
+44000,37427,1612,54438
+44001,75699
+44002,27914,2463
+44003,75161,45752
+44004,55682,48319,39347,39073
+44005,46080,45940
+44006,70070,29681,62715,30638
+44007,38938,44978
+44008,35491,75966,25544
+44009,42532,78428,59124,25376
+44010,16087
+44011,124,59235,73108
+44012,14658,73559,67685,79252,51540,48076,80879
+44013,15384
+44014,72446
+44015,14443,47493
+44016,38491,46214,3221,15885,54236,78660
+44017,19318,61891,45417,37415
+44018,66994
+44019,75038,74638,39871,69235,31822
+44020,4878,22938
+44021,48487,31890
+44022,68810,2932
+44023,13984
+44024,51354
+44025,8118
+44026,31372,2530,73832,62865,66641,49614,23247,65567,14918,69653
+44027,864,72796
+44028,30319
+44029,41279,70938
+44030,43384,46543
+44031,77388,74296,64557,45505,1013
+44032,20912,48999
+44033,51584
+44034,71999
+44035,68930,2578,7346
+44036,65352,16241
+44037,42265,22855,71356,21569,46496,12121
+44038,30176,36176,59329
+44039,47144,47728
+44040,13999
+44041,69718
+44042,33988,47404,59724
+44043,45669,50211
+44044,16792
+44045,6079,58405,32864,77386,24214
+44046,65784,70437,34616
+44047,51260,22854
+44048,10035
+44049,64676
+44050,34547,75258,49398,81682,51153,11467
+44051,73099
+44052,47745,78966,27435
+44053,15584
+44054,73911,48061,72044,22711
+44055,9426,47148
+44056,54290,71814,10612,54971,37834
+44057,19340,54714
+44058,53974,14200,72037
+44059,57719,42165,62189
+44060,39333,28601
+44061,16613
+44062,17833,22326,64469,55593,24432
+44063,34133,19926
+44064,18630,8151
+44065,49868,79181,32234,58232,68925
+44066,26712,17734,14097,75420
+44067,25936,4896,77005
+44068,29183,68527,20725
+44069,58637,25247,76521,6450,54721,34870
+44070,54039
+44071,77777,4478,44018,16186,80720,50359,54625
+44072,81390,12592
+44073,58743,11662
+44074,41540,15895
+44075,21918,24398
+44076,37204,46059
+44077,38706,14336,59421,79778,69553
+44078,10197,22743
+44079,22806,31053,47250,53779,329,73429
+44080,34117
+44081,37263
+44082,51257
+44083,70832
+44084,75778,76658,62239
+44085,14768,18079,21891,39448
+44086,16724,52114
+44087,24409
+44088,21102,81366,30475,54181
+44089,77539,5767,23428
+44090,10216,65287
+44091,73615,60907
+44092,12035
+44093,6706
+44094,39741,69962,53425,59741
+44095,69386,2486
+44096,11482,15818,74441
+44097,10743,12976,60809
+44098,45835
+44099,45963
+44100,48049,42415,18855
+44101,69693
+44102,2517
+44103,28128
+44104,21346
+44105,39414,32525,60296,5604,77718
+44106,12149
+44107,68977,3601,53987,40578,78049
+44108,27337,68135,64697,15819
+44109,32203,61027,15146
+44110,64965
+44111,80011,34094
+44112,2947,19871
+44113,19853,18684,37412,26177,55142,7498,39847
+44114,50506
+44115,45060,55886
+44116,49559,25464,21202,50327,5975,76841
+44117,60263,68405,1667,1927,19536
+44118,29405
+44119,42316,5553
+44120,47933,69735
+44121,60140,49918,51493
+44122,66434,53487,29387,38788
+44123,64866,11153,76722
+44124,19670,61591
+44125,72032,79907,20944,64444
+44126,81575,53266,59881
+44127,41201
+44128,39001,31892
+44129,69187,54265,77842
+44130,13827,74384
+44131,24846,30489,36922,34526
+44132,33898
+44133,66975
+44134,81444,6075,10783,23111
+44135,44421
+44136,29113,40725,45816
+44137,10970,48337,51646
+44138,3920,23924,21405
+44139,64352,41822,51409,58171
+44140,28424,53259,30304
+44141,30414
+44142,43840
+44143,75257,41494,76082
+44144,22793,37085,59201
+44145,2999,43430,21826
+44146,45331,29439
+44147,69155,32865
+44148,2597
+44149,18876,52132
+44150,40319,41959,41539
+44151,41540
+44152,12123
+44153,62889,16262
+44154,43064
+44155,67309,60154
+44156,39297
+44157,1317
+44158,56900,28532
+44159,11568
+44160,36086,49675,11614,36106,49030,26710,49134,44777,57331,79175
+44161,48553
+44162,2375,42464
+44163,6596,65747
+44164,41093,59246
+44165,79678,22894
+44166,63565,36420,80702,8512,42364
+44167,21538,18977,22014
+44168,69925,2815,53829,1385,52540
+44169,78277,70705
+44170,76809
+44171,14215,73180
+44172,19029,66164
+44173,6424,45547,9720
+44174,39961
+44175,1454
+44176,14754,72780,24457
+44177,65528
+44178,65057,79400
+44179,2104,10295
+44180,73938
+44181,15941
+44182,81811,25063
+44183,37158,27523,57187,31424,13979
+44184,13924,73876,29103,7775
+44185,62423,11737
+44186,36374,67614,41830
+44187,48008,34731,77675,77940
+44188,40541,50952
+44189,42350
+44190,18119
+44191,30277
+44192,18139,79617,7347
+44193,45184,77005
+44194,52785
+44195,13724,75204
+44196,35959
+44197,81466,10427,59114
+44198,8680,36789
+44199,74266
+44200,51741
+44201,77005,34934
+44202,49266,43553,34555
+44203,56824
+44204,29569,65093
+44205,60163,53340,17799
+44206,54419,77091,80881
+44207,72164,38816
+44208,24552
+44209,47747,30158,16405
+44210,30724,49872
+44211,47801
+44212,22398,40928,65836
+44213,62999
+44214,21472
+44215,37164,21755
+44216,17122
+44217,61700,15606,73281,10619,40840
+44218,13063
+44219,28345,50151
+44220,28148
+44221,34760
+44222,70849,70234,64517
+44223,32894,35329
+44224,20273
+44225,27269,18835,48526
+44226,62905,4688
+44227,39777,4447,70408,3132,22169
+44228,5451,40760
+44229,18921,4035
+44230,7289,23967,24466
+44231,64204
+44232,70550,80526
+44233,76473,58107
+44234,27596,71601
+44235,1511,36396
+44236,68817,29723,64261,28775
+44237,71324
+44238,136,13414
+44239,80719,6260,20243,18528,68350,23333
+44240,52357,78346
+44241,58393,76112,22814,19533
+44242,55723,22343,24417
+44243,27757,71257,622,82016
+44244,79615,41039,77712,9807
+44245,51295
+44246,49355,472
+44247,6770
+44248,20204
+44249,54401,20277
+44250,81181,69221,42025
+44251,80418
+44252,8042
+44253,56839,58425
+44254,8862,64894,38294,38846,71788,6928
+44255,42440
+44256,80678,21254
+44257,74585,27386
+44258,31606,22321,25957
+44259,19625,4796,32929
+44260,80132
+44261,70763,2212
+44262,77298
+44263,64996,65281,25327
+44264,68793,82008,22967,57212,66136
+44265,19229,65364,77738
+44266,35516
+44267,63351,30101,69667,73496
+44268,35542,10686
+44269,62680
+44270,71799,60111
+44271,36221
+44272,63266
+44273,52171,69249
+44274,56002
+44275,50806,39703,61351
+44276,60499,48993,960
+44277,66561
+44278,15734
+44279,19443
+44280,59348,31078
+44281,18951
+44282,57397,42000,16887,41744,40822
+44283,18877,41656
+44284,23519,71835
+44285,41277,9944,6103
+44286,56653,36680,14591
+44287,45793,70334,12297,67975
+44288,9083,18160,70648
+44289,20783
+44290,70660,5190
+44291,49553,41817
+44292,62585,75302,42401,20358
+44293,901,58827,62596,38396,20532,54412
+44294,56622
+44295,39083,10390,45135
+44296,14289
+44297,2451,35518,37149,41657
+44298,47882
+44299,79501,6985,10489,4627
+44300,62273,5873
+44301,54329,39128
+44302,7066
+44303,58778,64040,81801,54458
+44304,38945
+44305,34800
+44306,2790
+44307,41721,46870,43876
+44308,56658,13793
+44309,42854,41315,24951,80328,51129
+44310,44912
+44311,38294
+44312,79569,18332,65890
+44313,40450,79079,68171,57645,60948,22960,70745
+44314,58806
+44315,60341,52047,69220
+44316,41457,76541,20501
+44317,9725,9190,45579,53277
+44318,31291
+44319,49703,61275
+44320,76721,36714
+44321,77885
+44322,17831,73116
+44323,69568,71949
+44324,29142,23768
+44325,51913,5258
+44326,37045,57140
+44327,73630,60794,15809
+44328,15849,26161
+44329,28876,45840,69086
+44330,73252,63314
+44331,18710
+44332,57347,3715
+44333,18187,34719,16208
+44334,28886,9814,24445,1860
+44335,70589,3256,74188,20964,66687,18881
+44336,16096
+44337,38918,66328
+44338,18561,10315,40627
+44339,8504,81181
+44340,63930
+44341,54228,8283
+44342,12074,24241,21715,23480
+44343,65086,30026,42236
+44344,18012
+44345,32730,76680,23570,60023,42249,41660
+44346,5739,16573
+44347,73079,9245,37164,78511,17497
+44348,72448,48158
+44349,34571
+44350,19589
+44351,77420
+44352,35649,79843,37376
+44353,31817,57144,71331,34465,25024,6193
+44354,50182
+44355,26650,38078,57310,1440
+44356,76965,49409
+44357,11852,20998,80405,75701
+44358,10814
+44359,69263,70557
+44360,12283,34551,47887,28344,56771
+44361,39276
+44362,57356,55142,35829
+44363,48635,74812,10061,46506,1572
+44364,18835
+44365,9726,49838
+44366,81074
+44367,52992,65197,32594
+44368,59649
+44369,72038
+44370,37813,56952
+44371,49427
+44372,61145,32447,12147,31352
+44373,32823,8748,37298
+44374,40238
+44375,81180,10955
+44376,29441,56055
+44377,65954,18126
+44378,31542
+44379,76611
+44380,65122,53250,57208
+44381,43094,32422,25711,79442
+44382,7548
+44383,59225
+44384,60304
+44385,76283,67498
+44386,78984,30662
+44387,38850,46616,71687
+44388,34766,29645
+44389,48476,10926
+44390,23851,49268
+44391,29445,11535,54856,18432
+44392,75064,6608,24182
+44393,34115,53907,60903
+44394,42158
+44395,68366
+44396,42091,55876
+44397,79261
+44398,72210,76156
+44399,79417,8329,62875
+44400,13424,67019
+44401,27312,38917,22403
+44402,43787
+44403,41416,69308,18079
+44404,73711,7080,42403,51165,17891,44099
+44405,67457
+44406,3588,34512,35338
+44407,24476,711
+44408,68794
+44409,38869,16091,41358
+44410,62667,50902,72690,38792,39746
+44411,24297,58081,23699,53070,47108
+44412,27541
+44413,72776,50204
+44414,61303,39541
+44415,63838
+44416,20165,37450
+44417,44136
+44418,25465,59401,5657,2677
+44419,10180
+44420,28368,32422
+44421,73422
+44422,46512,20922,48242,8072
+44423,72272,64541,80916
+44424,76960,56465
+44425,74941,35372,38937
+44426,52501
+44427,77324,60054
+44428,51068,21023,68226,17177
+44429,80446
+44430,689,38348,67808,39546,58137
+44431,79826
+44432,61242,14790,16684,82176
+44433,66295,49622,45643,31719
+44434,63621
+44435,15485,57056,46374
+44436,58767,28621
+44437,6462
+44438,23833,31267
+44439,75901
+44440,11285,43606,760
+44441,41397,33027
+44442,53374,27346,74715
+44443,58622,35424
+44444,18756
+44445,34033
+44446,31509
+44447,73492,21138
+44448,23542,70213,72302
+44449,52190
+44450,75686,6167
+44451,66277
+44452,77374,5025,13797,3342,80607
+44453,7612,5091,72877
+44454,19717,44154
+44455,33591,9990,30478
+44456,82088,48148
+44457,36412,53610
+44458,59813
+44459,58247
+44460,1490,52605,64678
+44461,48993,66435,79117
+44462,4092
+44463,64822
+44464,22668,55233,39924
+44465,22475
+44466,20866
+44467,11464,38444,29957
+44468,21524
+44469,65407,33607
+44470,37874,5157,65070,16778,74189
+44471,3820
+44472,24090
+44473,23412,39417,49154,68307,5512,3671
+44474,21740,75804
+44475,76992,39437,26403
+44476,4112,15856,32876,10726
+44477,71386,9770
+44478,60157,76493
+44479,8873
+44480,41279
+44481,12697,33738
+44482,4484
+44483,32667,36882
+44484,76131,28411,3312
+44485,50199,61232
+44486,75478,5630,260,72444
+44487,12691,5192,57446
+44488,23992,13293,8528,37843,76914
+44489,24862,38866,79532,59596
+44490,73074,80053,57266,67517,54960,31117
+44491,48323,43016,44573,74451
+44492,17865,21290,77499,55646,76428
+44493,33371
+44494,82079
+44495,15270
+44496,43244,28714,19673,33410,46227
+44497,1069
+44498,2630,5283
+44499,55797,21229
+44500,10077,42161,45691
+44501,67269,7629,69208,35880
+44502,48432,6866
+44503,27882,20351,30493
+44504,18676,81828,49630
+44505,15023,76374
+44506,65926,10909
+44507,15543,138,6643,6893,76030
+44508,53230,30558,29443,18161,38379
+44509,79863,4971
+44510,73826,2053
+44511,2933
+44512,40148
+44513,27719,50830
+44514,27454
+44515,34065,19535,33812
+44516,64071,16227,28778,23132,47365
+44517,678,53659,78860,41946,66162
+44518,15598,10240,11653
+44519,53824,56015,33302
+44520,24281,6835,19377
+44521,21867
+44522,34371,66046,75269,76893
+44523,39268,10741
+44524,66699,44822
+44525,11317
+44526,63813
+44527,32287
+44528,79559,58847
+44529,1343,33664,47314,26040
+44530,68969,61382,528,80065,3196
+44531,9651,50482
+44532,47404
+44533,76622,27903
+44534,11262,17250
+44535,7462,45717,72303,35666
+44536,29968
+44537,47718
+44538,44000,40349,24193,34064
+44539,21021
+44540,69300,75757
+44541,42355,30947
+44542,77099,75459,61469,63279,41123,33202,64068,47675,40464,55883,79171
+44543,25049,43792,77355
+44544,20433
+44545,24453,1667,52171,75128
+44546,21550
+44547,33575,66889
+44548,69423,31945,4345
+44549,58144
+44550,28652,33245,80756,69890,8281
+44551,36778,33977
+44552,67828,17265
+44553,26096,36299,70976
+44554,4242
+44555,26363
+44556,41787,55447,33580,81014,78109,42063
+44557,52881,36971,45108
+44558,32131,77136
+44559,48222,25181,9960,1914
+44560,80933
+44561,12692,68728,30078
+44562,41199
+44563,54429
+44564,17412,43868
+44565,21017,43109,28566
+44566,70843,27747
+44567,69179,80564,66683
+44568,56438,34895
+44569,5570,5638,27498
+44570,81492,54025
+44571,80285,4260
+44572,44619
+44573,35466
+44574,71645
+44575,46197,81561
+44576,65320
+44577,21436,74888,1762
+44578,4449,56377,25734
+44579,35224
+44580,2453
+44581,59658,39494,36505
+44582,29162
+44583,34376,10609,38582
+44584,67769,30507,7353,59910
+44585,75225
+44586,7696
+44587,67399,30264,13309
+44588,30429,2318,26116,34234,10589,63752
+44589,47182,8395,59017,4331
+44590,4177,12536,62493
+44591,36474,52780,53752
+44592,24627
+44593,24788,28150,24781
+44594,6261,26630,43360,62151
+44595,13784,51168,79682,36792
+44596,19080,1389
+44597,33649,37396,8079,74825
+44598,31989
+44599,64491
+44600,66276
+44601,78820,44219
+44602,16311,40677
+44603,21310
+44604,68598
+44605,72193
+44606,40677
+44607,8392,36268,11868,67615
+44608,33315,51244
+44609,70047
+44610,53065
+44611,62888,7660,4204
+44612,30025
+44613,45527,7857
+44614,26208,69633
+44615,38045
+44616,42624,65851,20455,26329,80206,13563,27752,55986
+44617,26275
+44618,61267
+44619,20893,77291,16260
+44620,6371,1520,53792,47162
+44621,36962,58362,13080,58949
+44622,21378
+44623,76652
+44624,62721,45177,38222,24459
+44625,25932
+44626,48048,11119,22768,63786,17576
+44627,36689
+44628,6279,34038,34374,14272,34379,15928
+44629,30586,7220,14637
+44630,29148
+44631,42458
+44632,81373,26718
+44633,21794,16649,78725,56428
+44634,39695
+44635,75518,13866,72551
+44636,12460,80554,10111
+44637,36982,58803,6121,43622
+44638,29731,42037,61775
+44639,40995,46324
+44640,65070,44328
+44641,51453,50082,67983,32237
+44642,47231,651,59518,70557,81700
+44643,13388
+44644,75443,16185
+44645,4034,45579
+44646,10686,64306,19539,56538
+44647,11769,81181
+44648,15654,13314,61378,80852,64925,27116
+44649,77729
+44650,7220,51770
+44651,7681,34883
+44652,34428,16760,39950
+44653,17889,48492
+44654,41721
+44655,4273,1968,47104,82190
+44656,63769,11234,27709,63750,36385,51789,75117
+44657,50526,73989,51066,51755
+44658,40626,75592,29226
+44659,53709
+44660,20687,41836,5137
+44661,12385,66775,41332
+44662,51810
+44663,67212,37862
+44664,66642
+44665,54946,55655
+44666,2290,31502,56661,1590,5042
+44667,35695,17028,30089,3995
+44668,51420,71329,12089,32379,67513,25572
+44669,8208,77524,34546,29743
+44670,76588,68460
+44671,51754,55764
+44672,38584,67882,1704,63216,7879
+44673,16790
+44674,8477,1488,58705
+44675,28438
+44676,76769,71864,10973,47228,4188
+44677,1577,76694,6610
+44678,65846
+44679,49241,1429,13568,50288
+44680,68028,73184
+44681,51962,27096
+44682,69755,71513
+44683,12821,41542,60548,71789,60118
+44684,29884
+44685,15713,51303
+44686,19657
+44687,1646,8748
+44688,19539
+44689,27262,73014,51078,51270,32161,40253
+44690,23298,50711
+44691,3950,67421,72929,19080
+44692,14314,65231
+44693,16107,18759
+44694,70045,63371
+44695,25231,65726
+44696,10898
+44697,19421,20828,76642
+44698,11659,754,16570
+44699,27028
+44700,60000
+44701,62839
+44702,13265,22954,51847,39505
+44703,44354,53006,57309
+44704,47049,43948,65793,13538
+44705,38954,54573,15035
+44706,26224
+44707,23158
+44708,46523
+44709,30886
+44710,33244,35991
+44711,41567,52012,33167,47588,68590,79556
+44712,29625,25379
+44713,2858,9629,10742
+44714,39588,7818,25086
+44715,40324,27501
+44716,52785,58935,19797,52737,57435
+44717,25559,57788
+44718,64617,49529,56509
+44719,32510
+44720,64526,35998,46200
+44721,39791,51037
+44722,51044,2849,66608,58450,62482,74863
+44723,80210
+44724,34720
+44725,9510,40014
+44726,75901
+44727,78558
+44728,35836
+44729,56389
+44730,69438,34248,73579,16380
+44731,22062
+44732,56866,50596,60543,67781,72688,6392
+44733,72142,28341,34505,30936
+44734,45645,38734,71519,75764
+44735,34540,36544,24021
+44736,42689
+44737,10943
+44738,53050
+44739,54358,6569,18532
+44740,31349,29250
+44741,70870,74003,55818,10650,61704
+44742,75454,1164
+44743,17235
+44744,53081
+44745,9221,60061,43114
+44746,70879,3903
+44747,76622,23916
+44748,78893
+44749,6778,53373
+44750,25584,16842
+44751,11756,11754,1079
+44752,20421
+44753,73568
+44754,4991,42474,39450
+44755,20994,36379,61208,12468,22100
+44756,8484,1560,49933
+44757,54430,60761
+44758,3608
+44759,72786
+44760,78661,72515,67055,79837,50160
+44761,32129
+44762,1503,47893,34774,49705
+44763,17329,40262
+44764,56636
+44765,73702
+44766,22419,56837,44653
+44767,12499,53185
+44768,607,20768,19690
+44769,32024,16185,68309,20881
+44770,15580,15906,81522,36811,68694,13498,5503,36887
+44771,56412
+44772,55601,24014
+44773,72179
+44774,77983
+44775,44233,59158,17213
+44776,27115,7270
+44777,81557
+44778,75021
+44779,78753,60106,24227
+44780,17230,69608,14203,46447,15809
+44781,22543,32656
+44782,12659,744,9914,55435
+44783,45868
+44784,47013,6137,11881
+44785,80620
+44786,59463,69462
+44787,47072,72018
+44788,73082
+44789,63858,34353
+44790,32244,65134,37433
+44791,57019,29388,61428
+44792,71339
+44793,73828
+44794,16746,79238,14682
+44795,13567,78174,63060
+44796,52070,8018,31943,71105,66342,46791,4246
+44797,21846,79434
+44798,41510
+44799,80858
+44800,68603
+44801,23516
+44802,43758,25273,9417
+44803,32992
+44804,77312
+44805,57084
+44806,63210,26579,2972,23711,2638
+44807,7845
+44808,34605,20577,50560,44614
+44809,56116,19698
+44810,69367,30275
+44811,32402,36366,10864
+44812,18384
+44813,56922
+44814,72179
+44815,48797,75965
+44816,71103,40249,32866,39134
+44817,32518,14170,27962,74360
+44818,11832,24428
+44819,43981,67240,35400
+44820,79481,28277
+44821,26806
+44822,17179
+44823,60270
+44824,27327,6684,69071,13764,41520
+44825,9901,35445,43599
+44826,70440
+44827,12005,3127,67894
+44828,81388,67299,32820
+44829,63768
+44830,32995
+44831,52877,4851,13570
+44832,12992,15704
+44833,29407,57305,74982
+44834,46952
+44835,25812,39046,42405,74999
+44836,34488,10584
+44837,74322,24558,60506,24789,28720
+44838,66619
+44839,80446,32652
+44840,2933
+44841,9019,39963,48013,36484,59894
+44842,80480,9819
+44843,18242,28096
+44844,46538,20635,66150,33511
+44845,59774
+44846,80418,61178,10493,6580
+44847,81694,68457,69597,42245,35433
+44848,79003,57911,10633
+44849,81415,56783
+44850,38641
+44851,18918,46063
+44852,6186
+44853,13493,41070
+44854,51847,75727,44412,50937
+44855,35808,35295,32321,30898
+44856,52606,61457
+44857,23627
+44858,62573
+44859,80904,71026
+44860,73744,65986
+44861,20282
+44862,13238,43795,13066,12207
+44863,49856,13643
+44864,41051,67517,4290,49747,79637
+44865,41761
+44866,57714
+44867,8929,18728,7065,5258
+44868,28454
+44869,32399,36450,65718,74836
+44870,33305,78820,15881
+44871,36004,67736,37403,79296,43832
+44872,9463
+44873,70385,60984,64909
+44874,13248,43135,64543,28184
+44875,6522,41047
+44876,50342,906,46168,647
+44877,24606,81257
+44878,26783,4813,5426,56905,25230,70940,79141
+44879,53868,16881,64337,2905
+44880,52741,21378
+44881,72604,59698
+44882,61015,70345,14335,68427
+44883,62002,37629
+44884,64780,29607,21012,40169,39910
+44885,53256,36980
+44886,15696
+44887,59983
+44888,64201
+44889,28592
+44890,56886,66987,3056
+44891,13198,6183,52247
+44892,5532
+44893,12368
+44894,36775,12368,7136,11011
+44895,46161
+44896,21736,78501,31607
+44897,55333
+44898,79185
+44899,70708,17304
+44900,67243,31626
+44901,15046
+44902,72259,68148,15020
+44903,17828
+44904,22848,82075,39053
+44905,4537,38205,59537,20886
+44906,46963,63354,14296,64842,31213,51872,18199,25357,20533
+44907,6814,1036
+44908,42474,25968,13226
+44909,46694,14447,22330
+44910,72395
+44911,15881,9707,61414
+44912,36406,35293
+44913,35519,38671,54748
+44914,56149,5102
+44915,10821,76403,77845,62933
+44916,13582
+44917,61035
+44918,33023,28283
+44919,2198,6099,73405,48340
+44920,76477
+44921,22800,73978,60574,23690,72981,4003
+44922,51311
+44923,44580,2097,60765,30894
+44924,48021,47641,72200,1946
+44925,30978,19358
+44926,66276,31951,78621
+44927,77975,57794,4321
+44928,76438,36378
+44929,60959,27068,9060
+44930,65241
+44931,47011,30034,18345,40603,13812
+44932,12260
+44933,15847
+44934,33568,1590,18123,59226,71867
+44935,40031,24294,55112
+44936,40640
+44937,11665
+44938,39595
+44939,74416,49586,15119,33763,55569
+44940,4456,29443,68354,17585,59898,61038,64326,19111,18653
+44941,79001
+44942,18439
+44943,54626,39377,30390
+44944,1127,47210
+44945,72255,68607,48773
+44946,62400,22134
+44947,33765,39280,60622
+44948,25940,7427,18755,38539
+44949,22016,5658,66137
+44950,79917
+44951,55240,33363,38874
+44952,51938,32796
+44953,62798
+44954,77896,47862
+44955,53677
+44956,56261
+44957,29142
+44958,13226,21221
+44959,72371
+44960,74441
+44961,11615,42910
+44962,45813
+44963,59652,63855
+44964,42106
+44965,37400,52163,34041
+44966,15053,64849
+44967,23756
+44968,19697
+44969,2518,10509,30015
+44970,19767,43393,26476
+44971,64531,70958,26006,53465
+44972,6099,68389
+44973,29758,56658
+44974,78846
+44975,46866,38102
+44976,44066,59863
+44977,58982,26956,64008
+44978,39559,16401
+44979,80001,47817,66030,74916
+44980,73658
+44981,10032
+44982,1454,51387,43743,80525
+44983,11791
+44984,48847,73889,31807
+44985,4738
+44986,26871,38086,77265
+44987,59682,67196,78133
+44988,73988,35851,72685
+44989,25235
+44990,20530,25436,22667
+44991,31247,59569,24620
+44992,39481,51543,4199
+44993,3379,28342,67703
+44994,4382,67828,13651
+44995,21004,79281,61292,20694
+44996,20390,30398,2298,25137
+44997,67087,71688
+44998,16619
+44999,30793,55413,19175
+45000,29372
+45001,57843,70125
+45002,78742,79437
+45003,63609
+45004,3572,10532
+45005,28313,47404,58138,78425,9326,80637
+45006,16131
+45007,64862
+45008,42643,9204,66702,77728,33364
+45009,58031,27226
+45010,38979,21565
+45011,7537
+45012,3664,13912
+45013,37151,3767
+45014,75719
+45015,77710
+45016,42940,33259,56783,229,41868
+45017,17537,62594,79537,8782
+45018,2280
+45019,45562
+45020,56040
+45021,31737,80544,73275,18304
+45022,22580
+45023,24488,32250,57754,648
+45024,15464
+45025,59100,39527,80646
+45026,5860,69974
+45027,67827,17759
+45028,39443,75145
+45029,28087,1222,80
+45030,14034,2789,36378,50836
+45031,58168,58201,59223,47639
+45032,78382
+45033,42799,31498,42285,45978
+45034,80821
+45035,10312,43834,32340
+45036,2657
+45037,21859,130,28918
+45038,63261
+45039,6290,23868,45776
+45040,69495,10524
+45041,77220,77765,59445
+45042,6687,66874
+45043,12536,33900,11799
+45044,51877,17417
+45045,22426,29133
+45046,5757
+45047,8321,12035
+45048,70592,15052
+45049,47779,38331,71570,21108,38917,52337,14367
+45050,11137,6108,72138
+45051,33344,12657,28715,64860
+45052,21629,42131,33419,43130
+45053,11544,12702,68822,30771,30197
+45054,73275,80211,9918,36909
+45055,57926,61242
+45056,49695,51759,17056
+45057,46723,44611,20152,30818,890
+45058,62581,59306,76997
+45059,22913,5871
+45060,24504
+45061,43500,36501,78,52188
+45062,60387,13498,77367,16797
+45063,51899
+45064,11435,17377,32166
+45065,57048
+45066,67501
+45067,71327,45510,79736,44651,64469,16963,45233
+45068,843,34724
+45069,6664
+45070,51771,2331,27058,618,23399
+45071,35479
+45072,68877,55843
+45073,28214,9074
+45074,42851
+45075,1036,19084,29337,25279
+45076,54579,1583,55423,56776
+45077,27454,52691,12870
+45078,46416,45324
+45079,45663,35396
+45080,49223
+45081,34764,31504,50066
+45082,71837,73075
+45083,40294,53499,13117
+45084,17443,33528
+45085,28086
+45086,38253
+45087,76469,9384
+45088,42005,75715,47686
+45089,32760,40139,39812,68329
+45090,45439
+45091,67460
+45092,6987
+45093,18554
+45094,1599,47246
+45095,121,61340
+45096,80229,699
+45097,10972
+45098,57796,19058,70619
+45099,57342,69844,56763,11505,31940,78696
+45100,46466,72984
+45101,77893,8275,38189
+45102,5712,11070
+45103,73996
+45104,32567,16170
+45105,51386
+45106,4483
+45107,28584,81172,56610
+45108,26347
+45109,29541
+45110,70803,54389,42906,33633
+45111,46481,72753
+45112,31397,50504,77526
+45113,25716,80843,40468,28659
+45114,75047,9026,18067,65695,20023
+45115,76033,34307,57792,104
+45116,25646,21850,7715
+45117,49199,28987
+45118,63093,74490,43875,56759,11468
+45119,17059
+45120,43633,63855
+45121,60682,55745
+45122,36509,64001
+45123,73240,29444
+45124,80425,65210
+45125,75567,73864,4580,19809,75870
+45126,40151,38493
+45127,51473,33595,57470,81752
+45128,4191,79791
+45129,47998,16147,48629,50846,77413
+45130,18762
+45131,56468
+45132,4169,7333
+45133,36060,16216,37671
+45134,68375,30711
+45135,5512,55747,41629
+45136,48600
+45137,13845,41283,64556,65708,68398
+45138,69688,33005
+45139,11196,33724,5790,48276
+45140,26564
+45141,48827,30941,31626,20517
+45142,82089,69612
+45143,15603
+45144,21557,66912
+45145,59894,41797
+45146,69300,67182
+45147,9111
+45148,65026
+45149,73854,65439
+45150,28392,58483,81848,19285
+45151,75448,29847
+45152,67410,8850,27362
+45153,29893
+45154,64613,17630,7614
+45155,27554
+45156,25710,33454,2746
+45157,8118
+45158,75917
+45159,5147,5245,45491
+45160,61852,39223
+45161,13146
+45162,40131,51474
+45163,13236,65158
+45164,60943
+45165,8298
+45166,70317
+45167,43820,769,73771,69198,1598
+45168,3181
+45169,1994
+45170,55819
+45171,82122
+45172,30774
+45173,57439,69711,12619,33690,3404,76172
+45174,49128,28286,65248
+45175,38632,58978,47312
+45176,26658,5102
+45177,62917,60281,22037,68551
+45178,46805,15901
+45179,77838
+45180,3384,40832,56773
+45181,25691
+45182,79101
+45183,69584,3886,25708,7146,75764
+45184,67456
+45185,57100,23113,64085
+45186,47784
+45187,38284,29324,30893,57714
+45188,5866,60751,45587
+45189,26612
+45190,68146
+45191,29849
+45192,53587,34004,1265,2502,44615,33080
+45193,78526,10893,20641
+45194,15274
+45195,68974
+45196,76956
+45197,47155,78243,46198,4587,13523
+45198,25780,24295
+45199,63342,43543,63923,76397,55176,53985
+45200,50717,23893
+45201,14580,8079
+45202,18101,12580,6163,18166,43847
+45203,64324,15822,62298,53344
+45204,1792,2688,65159
+45205,60062,74861,71291
+45206,9119
+45207,55898
+45208,22005
+45209,2801
+45210,48237,70220,63226
+45211,30507
+45212,69696
+45213,16995,18473,33300
+45214,34608,54328,28089,8440
+45215,5824
+45216,44262,22953,28459
+45217,23727,68207
+45218,19682
+45219,11632
+45220,3220,75354,11850
+45221,30989,18222,75093
+45222,27277,25669,76056
+45223,63426
+45224,77634,43503,48971,66967,60629,15815
+45225,47605,63106
+45226,20158,39683,73612,73985
+45227,36163
+45228,26997
+45229,16478
+45230,9115
+45231,12096
+45232,52877
+45233,7396,17502
+45234,59567
+45235,52876
+45236,47356,35111
+45237,20643,24551
+45238,59555,66165,17870,31696
+45239,45191
+45240,59169,7541
+45241,59914,61709
+45242,9437,33048
+45243,53533
+45244,49260,15263
+45245,49328,49972
+45246,28695,75650,19543
+45247,28085,67697
+45248,52982,44447
+45249,65942,48181,29540,58882,75338
+45250,49874,27803,66803,74846
+45251,75934,42993,72007,17714
+45252,19981,23229
+45253,2140
+45254,78529
+45255,49641,2653,25835,8952
+45256,21572,69927,34114
+45257,65028,71496
+45258,33953,28372,64223,43519,35733,45361
+45259,15099
+45260,32554,1258,79709,11088
+45261,78532,68220,71432,40090,79346,34171,43396
+45262,70593
+45263,63883,35886
+45264,36321,8584
+45265,11397,61081
+45266,44785,10455
+45267,35919
+45268,14993
+45269,1737
+45270,79531,67655,73402
+45271,62804,59475
+45272,38226
+45273,8177,39276
+45274,37348
+45275,38830,8045,35763,22796
+45276,44865,12700,17508,32389
+45277,32888,45638
+45278,48720
+45279,42378,15987
+45280,78564
+45281,3484,28111,37702,5658,42655,44961
+45282,21154,36855,28323,39966,16692
+45283,70868,78773
+45284,59810,35684,56339,46779,72770,948
+45285,57380,17692
+45286,76991,43792
+45287,71232
+45288,68516,20898,81331
+45289,37559,24425
+45290,12033,70385,43270
+45291,61958
+45292,20740,40442,79656,45771,11890
+45293,429
+45294,51560,39612,77883
+45295,24122,59430,54638,43700
+45296,38842,74773,48993
+45297,8560,1192,5060
+45298,55445,53403,44999,12980,10360
+45299,12897
+45300,59374,7500,66681
+45301,49192
+45302,9889,48522,64413,10751
+45303,59835
+45304,30465,67268,39229
+45305,79633,58096
+45306,15063,18105,54997,58720,75078,43495,9721,29131
+45307,64343,35953,12242,50867,67370
+45308,16967,22721
+45309,19509,44251
+45310,68921,47065
+45311,70940,68850,21891
+45312,62421,34301,28106,30118,20830
+45313,53894,57555,42827
+45314,3794,5774
+45315,36213
+45316,38163
+45317,33639,39109,76030
+45318,73588
+45319,45861,27243,21085
+45320,29586
+45321,69344,55908
+45322,49843,52734,61907
+45323,71931
+45324,49792
+45325,26786
+45326,49191,59409,14630,30573
+45327,24445
+45328,27915,38810
+45329,13420,44650,75820,9755,82066,23868,47463
+45330,80133,38345,7741
+45331,65425,74606
+45332,76820,80278,54166
+45333,57168,77937
+45334,6318,71348,55179,10825
+45335,31993,74837,28214,60461
+45336,30513
+45337,34679
+45338,56381,11312,66303,60192,69901
+45339,2176,55936
+45340,7702,31134,14790
+45341,14301
+45342,2933
+45343,29860,61505,25285,34832,62264
+45344,12371,45354,80331,3399
+45345,4954,38008
+45346,65985,79920
+45347,36018
+45348,19615,21273,57235
+45349,52666,41361,32437,37352,23935,432
+45350,81835,48045
+45351,56608,16627,58077,66796,25066
+45352,72128,38012
+45353,22362,47970,54761
+45354,29532,47186,3117
+45355,16433,39322,38319,36151
+45356,6695,75611,32123,52433
+45357,51400,21896,80279
+45358,26660
+45359,22846
+45360,49006
+45361,2450
+45362,69766,64163,47056
+45363,60887
+45364,2681,28365,16322
+45365,15664
+45366,29366
+45367,12106,33937
+45368,63711,11195,52023,67331
+45369,54828
+45370,52067,60979
+45371,42643
+45372,72965,54687,33212
+45373,63488,35158,72207
+45374,15781,29548,22822
+45375,62799,20492
+45376,23689,65000,8840
+45377,25065
+45378,45732,22148
+45379,396,1257,68956
+45380,71943
+45381,2862
+45382,12692,67343,75457,79666
+45383,35224,25093,58270,16703
+45384,70609
+45385,39550
+45386,45607,71915,80331,31488
+45387,53750,39377,64988,30294
+45388,73291,31128,19328,20724
+45389,2487
+45390,20991,61201,10511,57305,25734
+45391,7839,78311,79361,42431
+45392,62409
+45393,43045
+45394,22043,78147,18639,20229
+45395,28724
+45396,18937,61307
+45397,51801,21890,74126,67348
+45398,80654,62869,894,23155
+45399,80557,37138
+45400,81861,26003,2193,21405
+45401,24090,38489
+45402,45776,68049
+45403,21249
+45404,38804,13692,23636,3814
+45405,40588,64360
+45406,41337,35819,42235
+45407,37375,28102
+45408,79132,11668
+45409,13866,346
+45410,3729
+45411,49152,72268,22952
+45412,43785,39427,80425,23067,33512
+45413,40275,74451,1305,47951
+45414,72179,18525,74288,29160
+45415,15374,20430,67734,19217
+45416,76268,20922,4458,9866,26756
+45417,40169
+45418,18377
+45419,15645,70066,25759
+45420,50224,35781,28367
+45421,67597,42646,7448,71235,10943,76771,12179,57298
+45422,75825,55958
+45423,31009,20083,32685,30985
+45424,60741,41025
+45425,59564,57428,69745
+45426,66510
+45427,2219
+45428,49432,71558
+45429,21303,81150,75691
+45430,17675,61304
+45431,73151
+45432,80486,895
+45433,20182,64434,41865,28304
+45434,534,8942
+45435,10534,73460,58898
+45436,70091,51146,42484
+45437,52117,49402,44363,29019,57895,75360
+45438,7362,68950,29441
+45439,18730,11261
+45440,44619,65051,50578,55400,48824,57661
+45441,68367,59859,15548
+45442,81070,26561
+45443,59555
+45444,77939
+45445,77205
+45446,25907,138,20710
+45447,54332,12343
+45448,71617,40568,12572
+45449,71625,869
+45450,3030
+45451,26490,14797,23597
+45452,1011
+45453,46196,17317,22897
+45454,56005,36173
+45455,51625,23650,29476
+45456,35868
+45457,71227
+45458,51115,52191,10830,13049
+45459,40289,54703,2847,29754
+45460,66778
+45461,49717,75969
+45462,73590,80501,7932
+45463,56998
+45464,66072,80685,17111,32810,45932,23707
+45465,40460
+45466,13054,79968,32413,53837
+45467,70060,48194,55669
+45468,39467
+45469,33158,60988
+45470,16632
+45471,61715,53328
+45472,491,37383,55498
+45473,77109
+45474,5195
+45475,58742,66968,71207
+45476,45331
+45477,6605,14201,10275,11229,41725,76618
+45478,74524
+45479,52159,23668
+45480,79195,31140
+45481,66104,43520
+45482,60488,39195
+45483,16559
+45484,41011,66880,13513
+45485,22410,49016
+45486,60784,56596,56005
+45487,47851
+45488,61414
+45489,47483,22923
+45490,45524,61737,10408,19086
+45491,49304
+45492,60388,55647,14665,18107,67686
+45493,80938
+45494,66601
+45495,8211,15694,5825,7660
+45496,59255
+45497,18908
+45498,56744
+45499,6063
+45500,8473,71748,47952,1079,40429,15791,38905
+45501,78386,77463,29114
+45502,31539,22319,33865
+45503,33596,50718,65073,9998,23014,32135
+45504,12122,32550,25896
+45505,17652
+45506,66139,49223
+45507,27210,25463
+45508,6731,75746,15057
+45509,82149,35902
+45510,40966,14561,42808
+45511,13630,7920
+45512,7148,6508
+45513,76010,71377
+45514,61922
+45515,78490,7533,68468
+45516,52569
+45517,21989,74465,38111,59090,16303
+45518,71178,3405
+45519,72923,33610
+45520,7657
+45521,6758
+45522,22375,61551
+45523,78691,40197
+45524,60383,63974
+45525,11315,64008,41689,44333,48511,24974
+45526,79807,19892,51619,46329,39646,40641,38891
+45527,6554,30392,77439
+45528,18800
+45529,50833
+45530,62627,76169,16613,61872
+45531,39275,63458,59367,70284
+45532,66118,12501
+45533,68066,71573,8314
+45534,78678
+45535,23063,20803
+45536,41282,75340
+45537,52591,22169,44843,31809
+45538,65817,51313
+45539,55810,24071,25438,81991,30643
+45540,67111,56662
+45541,31769,19668,72225,64299
+45542,47213,8271,7789,48392
+45543,25840
+45544,32587,7342
+45545,80628,13983,64312,20894
+45546,15592
+45547,20955
+45548,7129,61287,27566
+45549,36845,41153
+45550,61973
+45551,8223
+45552,53456,39195
+45553,60177
+45554,76406,53655,44340,23746,31509
+45555,1725
+45556,66571
+45557,58085,30227,62281,53096,4085
+45558,72807
+45559,73585
+45560,48115,32810,33601
+45561,80340,13588,74334
+45562,30406
+45563,74422,33594,61764,78033
+45564,31625,60019,9428
+45565,7154,7047
+45566,79950,51150,60407,40572,78590
+45567,9761
+45568,29988,34726,79220
+45569,75197,36077,53382,36810
+45570,19043,14382,66446,14176,50329,79275
+45571,63446
+45572,81762,77542,10919,5888
+45573,41554,37583
+45574,49110
+45575,78990,37657
+45576,3900
+45577,19928,67400,62381,26188
+45578,8427,51756
+45579,14083,4344,78012
+45580,33156,46925,68964,76814,7694
+45581,20229,19714
+45582,72822,2528
+45583,36614,57342
+45584,60366,45189,81141
+45585,2832,27236
+45586,13634,48372
+45587,40460
+45588,34385,56948
+45589,43611,72235,62687,2008
+45590,80182,71266
+45591,20111,48081,40507,10805
+45592,77025
+45593,22405,54995,52502
+45594,55107,57922,7104,11374,5637,53895
+45595,16523
+45596,32485,47899,48598,40873
+45597,25978,59666
+45598,57239,78437,23495
+45599,72554,80779
+45600,57683
+45601,7302
+45602,35594,127
+45603,75010,485
+45604,43922
+45605,63468
+45606,12585,47429,5691
+45607,65850
+45608,34963,25626
+45609,4421,43819
+45610,7852
+45611,10462,19753
+45612,72410,29488,54928,35499
+45613,62275
+45614,35385,2685
+45615,28909
+45616,11986,75495,37022
+45617,29256,27543
+45618,58983,78205,1769,3280,58355,34832
+45619,71929,10977,54199,27435
+45620,1773
+45621,81372,71107,11466
+45622,53905
+45623,20500,7298
+45624,18050,81708,80090,29162
+45625,1764,54943,41130
+45626,59000
+45627,2264,39251,13607
+45628,72161,69867
+45629,10350,32842,47272
+45630,54485,44054,31152,20368
+45631,720
+45632,31021,21877
+45633,44297
+45634,53049
+45635,53846,81225,13353,30636,40116
+45636,81340,12594,15467,27330,55321
+45637,27384,39380,11948
+45638,59536,4184,56837
+45639,77746
+45640,64581,31100
+45641,76423,2360
+45642,65741,67805,11626,63941,37895
+45643,22819,51236,54326
+45644,25522,66301,53819
+45645,73883,47567
+45646,78630,33093,66880
+45647,382
+45648,15424,4825,21284,58510
+45649,15384
+45650,76838,43496,40331,80099
+45651,57568,46633
+45652,48242,67599,52972,49168
+45653,31519,38166,43796,65938,80504
+45654,41165
+45655,73962,33774
+45656,69081
+45657,74831,1774
+45658,55582,21070,14458,7348,43290
+45659,26273,1527,12077
+45660,56042,24122
+45661,1511
+45662,13901,46188,13167,74128
+45663,5192
+45664,29540
+45665,50676,56267
+45666,70148
+45667,66342
+45668,58254,283,65918
+45669,31836
+45670,41524
+45671,48472
+45672,70805,19624,17694,43157
+45673,5414,29039,68346,28092,76401
+45674,27656,42100
+45675,68850,48328,64226
+45676,77178,81835,81557
+45677,5860
+45678,10463,45143,62788,2661
+45679,67637,65684
+45680,11736,60475
+45681,13653
+45682,48671,59724,69648
+45683,32907,19894,19343,36737,33043
+45684,66158
+45685,47139,36689,55400,40773,28198
+45686,17494
+45687,2754,77748,46416,27928
+45688,81963,4758,8369
+45689,12418
+45690,3451,4842,44699,43897
+45691,12667,59406,52333,14908
+45692,63073
+45693,35258,81631,32123
+45694,31807
+45695,10246,75745
+45696,12076
+45697,78650,72032
+45698,68102,48287,11808,56727
+45699,4613
+45700,65556,35898,38001
+45701,6476,52691,43922
+45702,39454,9103,65130
+45703,62508
+45704,70068,37424,30621
+45705,48066
+45706,28980,45471,17967
+45707,66981,68131,26659
+45708,81094
+45709,11864
+45710,62778,42836,30276,54686,51129
+45711,45317,38720
+45712,30892,65456,10569
+45713,71070,46834,47721
+45714,18610
+45715,28259,65026,42826
+45716,70983,54784,47273,15457,75437,18241,46537
+45717,55377,37508
+45718,56658,28000
+45719,61426
+45720,70896
+45721,24168
+45722,63210,48875,12951
+45723,11380,24477,30860
+45724,48846,80653,61758,35319
+45725,23494
+45726,71361,36996,46203
+45727,40369
+45728,5833,20634,33504,73145,10530,73546
+45729,46996,17412
+45730,39070
+45731,40315,33208,25803,32135,36963
+45732,81702,2981,10388
+45733,17439,23072,41702
+45734,22280,3265,4613
+45735,67011,5022
+45736,18951
+45737,60340,6630,74191,15148,71560,9855
+45738,2800,35282
+45739,41981,26264
+45740,1942
+45741,26712
+45742,3010
+45743,79952,3942,51172,42093,19969,25802,71809
+45744,62151,38909,22860
+45745,42100,35696,4245,33971
+45746,46618,52619,36973
+45747,77345,62915,8214,70355
+45748,44970,22797,58907,19678,64978,51075
+45749,59775,71798,80677
+45750,70554,16813
+45751,33546,20028,23198,76364,60284
+45752,60344
+45753,75510
+45754,20384
+45755,30513
+45756,2691
+45757,1891,6801,6256,8606
+45758,69864
+45759,30083
+45760,37350,14912
+45761,80275,57049,51740,33430,71099
+45762,77357
+45763,26992,15917,69961
+45764,57226,39494,19847
+45765,51703,79566,61795,31619,13748
+45766,31579
+45767,63185,10532,62450,43495
+45768,26429,67934,6359,17013,59140,18035
+45769,28852
+45770,30239,27036,33848
+45771,28417,61679,24268,36346
+45772,31482,69160,52964
+45773,51103,66366
+45774,60547
+45775,11719,38310
+45776,14705
+45777,68959,14979
+45778,57284
+45779,33084,32365
+45780,34118
+45781,19045
+45782,16469,1334,74479,62888
+45783,2687
+45784,18638
+45785,70007,54712
+45786,21322,55301,25193
+45787,21055
+45788,2146,36451
+45789,14168,56317,77940,407
+45790,10562,9511,76845
+45791,55505,22755,59741,10617
+45792,24076
+45793,8239
+45794,68944,70121,45752,79051
+45795,64030
+45796,61011,39734,52307
+45797,51956,48635,16260
+45798,75597,78662,2654,39733
+45799,44554,78746
+45800,76145,15985
+45801,14984,22247
+45802,25565,8428,44146,42429,28812
+45803,35766,14640,60605,34305
+45804,78015
+45805,55142
+45806,44172,1115
+45807,6362
+45808,9014,46844
+45809,32163,31610
+45810,6246,3863,34721,50066,58593
+45811,80096,5630
+45812,19652,50914
+45813,23332,49761,22868,53295
+45814,39822
+45815,54452
+45816,3165,72720
+45817,53198
+45818,48229
+45819,19831,23806,33364,52564
+45820,65488,64900,77694,68860,20532,49751
+45821,18611,70922
+45822,8782,24940,33896
+45823,24199,43291,54136
+45824,62537,24271,77704
+45825,27375,64449
+45826,20697,13970
+45827,75541,58470,25553,73736
+45828,49982,9343,36239,28709,22587
+45829,20936,65895
+45830,74914
+45831,45078,57453,34367
+45832,42998,45615,24965
+45833,57781,28936
+45834,78254,16271,28957,70418
+45835,79384
+45836,7057
+45837,55574,72014
+45838,51083,70387,23090,78980,34789,6462
+45839,19195,64228,52819
+45840,25544,1343,5391,55564
+45841,82143,17068,29883
+45842,30251,53449,74804
+45843,4663,80684,53050
+45844,29694
+45845,26900
+45846,69509
+45847,17319,39858,5818,8731,62724,23831,57832
+45848,75844,22626,48364
+45849,46657,48074,39079
+45850,42392,61569
+45851,57903
+45852,55895,21384
+45853,22940
+45854,30656
+45855,76508
+45856,34599
+45857,79432,2720
+45858,29993,4771,18664
+45859,6040,77439
+45860,46540,51834,39857
+45861,53761
+45862,63107
+45863,21698,64424
+45864,19084,71967,80491
+45865,44368,60424,54625
+45866,44024,19306
+45867,44289
+45868,45308,70453
+45869,71206
+45870,6724,20421,19416,49251
+45871,3419
+45872,22091,17518,72892,33812,12153
+45873,76096,32211,77871
+45874,6773
+45875,47642,77172
+45876,18341,68748,51689,35434,4177,7355
+45877,40325,69804,58826
+45878,78069,51492,20252
+45879,65928,38510,31910,23079
+45880,19601,69648
+45881,32985,58260
+45882,22350,55898,44932,72030
+45883,15197,327,11894
+45884,55554,8929,26419,2838,48557,9139
+45885,38628,79213,54443
+45886,68698
+45887,9348,54224
+45888,39900,17614
+45889,39716,12153,76468
+45890,14424,4968
+45891,2444,1883,35775
+45892,13561,44280
+45893,67451
+45894,7282,39715
+45895,63897
+45896,14671
+45897,39325,61086
+45898,65318
+45899,72100
+45900,63754,46147,24267
+45901,55601,65324,46515,66889
+45902,9480,63279
+45903,81970,19725,61240,51533
+45904,73566
+45905,81592,21817,28578,33722
+45906,37357
+45907,57837,22425
+45908,51416,30732,65448,54703
+45909,71245
+45910,12457,75843
+45911,35833
+45912,6033
+45913,50463
+45914,30212,36351,7531,57721
+45915,10017,38856,73204,68045
+45916,81325,42990
+45917,13351
+45918,55166,3613,34564,56206
+45919,47853,15145
+45920,48148,17655,28619,72374
+45921,38136,9745
+45922,47393
+45923,74488
+45924,59295,45009,7302
+45925,31271,62272,22003
+45926,4547,46174,42536,35940,80978
+45927,71301
+45928,63609,58566
+45929,2552
+45930,35516
+45931,73748
+45932,70015,75380
+45933,76822,64032,37668,28298
+45934,33954,23149,38710,46399
+45935,23027,41713,75158,40032
+45936,15664,55073
+45937,74175
+45938,41471,80680
+45939,55872,77474,22155
+45940,11964
+45941,51454,70809
+45942,19369
+45943,26924,16659
+45944,26220,42293
+45945,28256,60370
+45946,76582,43163
+45947,21246,56753,43083,24568
+45948,2568,65459,46517,1267
+45949,66921,28216,77020
+45950,80555,7118,33004,79487,41047
+45951,81879
+45952,16281,51689,73289,61136
+45953,46094,60326
+45954,44647,58470,20970
+45955,76866,54206
+45956,23056
+45957,44362
+45958,39563,65685,14797
+45959,1812,31710
+45960,37805,15603,64946,51072,71161,25048
+45961,7415,41360,37063,44001,52571
+45962,56663,32836
+45963,72540
+45964,13686
+45965,14113,55855,41474
+45966,78657
+45967,29328,71590,68325,79092,5606,11720
+45968,31852,56960,58901
+45969,39706,67570,43896,81428
+45970,1621,61587,53325,45295
+45971,55697,61329,32801,60396
+45972,33268,33045
+45973,1171,58120,49409
+45974,43207,7747
+45975,43520
+45976,53029,32733,19576,56524,4191
+45977,30492
+45978,78764,71603
+45979,2700
+45980,4557,47705,42042,20217,50504
+45981,614,7986,45592,50866
+45982,80308,21973,17036
+45983,22282,77345,51198,33682
+45984,79949
+45985,33842,12278
+45986,17202
+45987,80216,79112,66434
+45988,80210,10214,41414
+45989,28753
+45990,53615
+45991,77291,38579,57342
+45992,27930
+45993,76015
+45994,30065
+45995,30692,67056,37882
+45996,70708,70828,62
+45997,13146
+45998,43221,69221,81192,64420
+45999,24210,24780,5679
+46000,58246
+46001,35189,17941,3468
+46002,19907,65087
+46003,41949
+46004,33611,37423
+46005,34647,11424,78229
+46006,20274,1017,8810,50164
+46007,34710,59612,49109
+46008,55864,56986
+46009,62095,42007,75401,59027,60622,35537
+46010,18631,75737,67271,67625
+46011,78857
+46012,74334,55676
+46013,59622,80272,56067
+46014,1109
+46015,18309
+46016,71625,53160,31045,28940
+46017,16183,4193,45407
+46018,6458,78094
+46019,78709
+46020,14468,45547
+46021,65157
+46022,74587
+46023,64687,39849
+46024,21534,8223
+46025,57844,15031,79348,41145,21225
+46026,50325,64440
+46027,27061,6718,5430,58502,31624,12833
+46028,66547,22694
+46029,47589
+46030,4707
+46031,59746,77172,62096,24357,22669
+46032,49069,47273,28382,18983
+46033,58018
+46034,11625,4730,25117
+46035,70536
+46036,70697,76939,46543
+46037,47011,76473
+46038,44328,6237,57478
+46039,48057,58047,46576
+46040,46398,74221,35687,2608
+46041,8374,41383
+46042,20318,64393
+46043,61578,64302,63738,54794,8624,12819
+46044,35871,19120
+46045,20224,74183,29766
+46046,4847
+46047,65562,78111
+46048,22569
+46049,37842,68477,18104
+46050,42932
+46051,77659,79917,9882
+46052,8275,33913
+46053,22293,33069
+46054,22145
+46055,2517
+46056,70579
+46057,78099
+46058,73452,24735,54689,52869
+46059,22260
+46060,54689,74057,61690
+46061,67027,81381,68244
+46062,48208,16768
+46063,29883,49887
+46064,71147,35678,52736,64558
+46065,79945,57223
+46066,79393,2745
+46067,31149,81339
+46068,74758,19937
+46069,21538,18485,54938
+46070,25524,55534
+46071,6987
+46072,36289,13331,31290,61061,32504,1352
+46073,11266
+46074,33901,51170
+46075,69969
+46076,27374,29150
+46077,1052
+46078,81380,57801
+46079,7941,30728,44747,39723
+46080,74939,51500
+46081,56441,57306
+46082,62284
+46083,33939,52958,71999
+46084,10893
+46085,78612,24469,34415
+46086,18525
+46087,31495
+46088,79745,64673,17997,29540
+46089,49972,52511
+46090,44654
+46091,29367,45219
+46092,10980,44331
+46093,54167,38389
+46094,36015
+46095,15201,39978,68051,32691
+46096,45406,16446,64473,508,43040
+46097,14733,74964,54508
+46098,47292,30790,78839,31057
+46099,25708,70622
+46100,36409,443,10617,45778,43891
+46101,71305
+46102,8622,74695,66607
+46103,66791,57696
+46104,62354,33333
+46105,14407,68974,12744,52957
+46106,76822,19043,62733,74674
+46107,6137,52520,62059
+46108,44989,21928
+46109,8448,74789
+46110,828,56852
+46111,77582,1940
+46112,59706,572,46141,25821
+46113,54632,65432,55390
+46114,73368,52558
+46115,47929,80340,64328,30556,30084
+46116,65187,6118,25696,42852
+46117,49382,41155
+46118,9315,12348,70480,75941,56522,26808
+46119,25771,73135,71143
+46120,38425,58133,36211
+46121,52170
+46122,60787,26678,62789
+46123,56297,27222,62190,10127,70400
+46124,58310,57810,80220
+46125,48600
+46126,41125,36695
+46127,7043,21768,74703,51953
+46128,29142
+46129,2743,50512,30168,41497,1582
+46130,44898
+46131,21236,81069,2320,16756
+46132,27953,22004,36346
+46133,37643
+46134,40298
+46135,70030,23606
+46136,15023,50355,1205,78130,79011,69120
+46137,38187,28311
+46138,64542
+46139,56090,10236
+46140,34790,42147,37661,46244,42341
+46141,35882
+46142,5380,79195,26678
+46143,21078,48688,71661,63226,11366,57344,17413
+46144,18388
+46145,60481,73645
+46146,20955,76549
+46147,80004,79756
+46148,66498
+46149,58
+46150,54193,28185,47992
+46151,27206,42155,20748,18101,52487
+46152,48135,26001,73095,13531,55811
+46153,36843
+46154,79958,40619,72816,15970
+46155,46806,8719
+46156,54231,71830,51146,20722
+46157,178,31999
+46158,72827,31073
+46159,50055,12489,67701,56122,78662
+46160,8248,62975
+46161,60163,54803,65505,8572,67303,22749
+46162,79975,73943,3615
+46163,60338,33070
+46164,65913,14015,40897,17766
+46165,64468,22460,9232
+46166,27096,54547,79140
+46167,78207,19402
+46168,28621
+46169,12123
+46170,49914
+46171,22127,29525
+46172,10639,47908,64900
+46173,49698
+46174,81705
+46175,77596,40537
+46176,47283,52637
+46177,55952
+46178,5188,9494,73886,7223
+46179,78094,45831,76286,50792
+46180,36394,55448
+46181,46595
+46182,45187
+46183,55509,1888
+46184,33381
+46185,58277,33768
+46186,76856,61885,35627
+46187,73778,71484,34937
+46188,29720
+46189,43491,11559,69889,30953
+46190,14757,58547,80147
+46191,69919,35896,1538,17398,37515,80074,27102
+46192,68234,14335,43552
+46193,10004,74923
+46194,27702,70030,24311,58083
+46195,54452,1737
+46196,50751,7676,35940,25678,23559
+46197,10010
+46198,16176,18917,8631
+46199,19589
+46200,55506,21818,24895,73258
+46201,74587,9822,51420,72008
+46202,22786,26784
+46203,42229,42204,42950,46355
+46204,22974,60056
+46205,17934,36380,49171,52028
+46206,18962,79208
+46207,51207,8126,38135,27015
+46208,67720,26754,65250,24013
+46209,40424,57926
+46210,5762,38368
+46211,4306
+46212,42394,60021,10464,49403
+46213,69900
+46214,72494
+46215,47366,44632,26443,3747
+46216,49122,47967,44093
+46217,78396,4514,60213
+46218,77813,20453
+46219,36089,63099,70834
+46220,72577,30275
+46221,70243,10681,40200,36023
+46222,73889
+46223,7323
+46224,52315
+46225,26922
+46226,31609,71179,76030
+46227,57590
+46228,23290,71487,38797
+46229,80548
+46230,9931,32865
+46231,22499
+46232,31104,31142,52365
+46233,39962
+46234,44650,28639
+46235,44366,10478
+46236,55527,75976,63873
+46237,4685,24874
+46238,49266,7722
+46239,64544,38667,33306,63901
+46240,71987
+46241,24192
+46242,16636,38904,73198
+46243,13615
+46244,46537,7646
+46245,54464,6500,40283,18351,35468,44002
+46246,5208,80153
+46247,68722,27776,80354
+46248,27689,62002
+46249,13643
+46250,74677
+46251,56670,45246
+46252,40588,23981,52392
+46253,74679,27644
+46254,33586,30409
+46255,18835
+46256,69231,69925,64591
+46257,69415,5562
+46258,62151
+46259,66766,63871,61958
+46260,39224,46292,63098
+46261,13401,17304,26832,55945
+46262,65989,67621
+46263,40760
+46264,73322
+46265,57309
+46266,11047
+46267,74201,36888,61226
+46268,71300
+46269,27356
+46270,52020
+46271,48232
+46272,44743
+46273,51216,80783,57498
+46274,38974,69220
+46275,2221,82060,77537,31501
+46276,17769,29935,18228,10434
+46277,68288,67435
+46278,10228
+46279,5141,75544
+46280,31359,4074
+46281,12176,28041,2160,44872
+46282,18015
+46283,45448,32594,32028,69773
+46284,62719
+46285,21131,14775,36967,26613,42711,17812
+46286,73459,73739,40694
+46287,33840
+46288,34012
+46289,20877,68313
+46290,16078
+46291,9467,63884
+46292,13579,10900
+46293,8641,56131,23845
+46294,45417,40505,12512
+46295,45513
+46296,19871
+46297,24817,71566,59501,29868,23579,61803,50
+46298,34829,39844,23442,52211,40587,27258
+46299,57777,8214,1511
+46300,69599,74679
+46301,18819
+46302,76156
+46303,41563
+46304,21763
+46305,27573,44532
+46306,76867,16960
+46307,69664,72599,1693
+46308,64705,72036
+46309,19685,24507,16063,59691
+46310,43769,56156
+46311,45818
+46312,26935
+46313,12224,50178,5274
+46314,72174
+46315,7395,28910,52210,5123,80034
+46316,3296
+46317,51019
+46318,19356,47110
+46319,69100,19315,50024
+46320,6908,69573
+46321,52639
+46322,30425,31216
+46323,22055,39802
+46324,41196,27024
+46325,10201
+46326,61579,41323,70976
+46327,23345,75624,77566,18934,36329
+46328,54519
+46329,28428
+46330,80133,42446
+46331,45044,60080
+46332,55799
+46333,27312,20409,52932
+46334,49319
+46335,50582,45308,13099,20515
+46336,41551,76457,79519
+46337,35081
+46338,78135,30342,46635,25095,68650
+46339,31132,39263,68952,69923,27239
+46340,37303,13358,18935
+46341,78223
+46342,19242,46289,40910,14273
+46343,61754,20257,22525
+46344,56438,71830,20860,802
+46345,61312,18638,67216,7741
+46346,80717,57327,37435
+46347,72662
+46348,38168,71656,4477
+46349,42095
+46350,77098,45881,30812,28867,54173
+46351,77205
+46352,9151,13396,67087,1498,70280
+46353,34274,8501
+46354,29453,26931
+46355,66500
+46356,65095
+46357,54204
+46358,61692,16620,72043,33258
+46359,20330
+46360,1931
+46361,67087
+46362,81200,22033,37254
+46363,55907
+46364,8617,28307
+46365,64030
+46366,20354,56015
+46367,6721
+46368,27264,75444,31402,42778
+46369,50819,17163,32587
+46370,67866
+46371,38907,67390,47685,33766,46260,18919
+46372,13576,72672
+46373,76530
+46374,32003,53677,71764
+46375,27807,11771,19374,2028
+46376,21078,30842,64700,44153,24028
+46377,33982
+46378,76386,78216,58810,70451,3714,79226
+46379,1161,52986
+46380,14779
+46381,6777,25602,33989,26149,7241
+46382,44898
+46383,41893,31855,69678,34003
+46384,77826
+46385,75005,30671,39541,81259,25789,8855
+46386,5294,53756
+46387,50416
+46388,35476,17683,68281,62109
+46389,75890,73235
+46390,46427,33506
+46391,72503,38554,55942,82082
+46392,39263
+46393,67046,51486
+46394,15113,79195,71023
+46395,70791
+46396,32582
+46397,27568
+46398,54054,35735,33534,33978,19834
+46399,14068,35010
+46400,31306
+46401,70132
+46402,39478,67754
+46403,54921,31104
+46404,54902,35332
+46405,2908,74633,16575,74612,16590,15011,26756,41670
+46406,26957,18387,38910,71221,55745,3947,71632
+46407,3110,69937,34106
+46408,61888,16181,36501,59622
+46409,7005,76836,36473
+46410,64461,38556
+46411,75839,81925
+46412,535,47841,36175,70693,35466
+46413,82174,80283
+46414,76184
+46415,64217,77823,21825,30786
+46416,5337
+46417,23234
+46418,13377,35128
+46419,28894,11321
+46420,25469
+46421,73038,57144,79917
+46422,81480
+46423,76091,6411
+46424,42332,42042,10271,70607,60491
+46425,38979,17311,34647
+46426,21755
+46427,20420
+46428,56342,73487,61161,40960
+46429,62500
+46430,10080,42929
+46431,15861,47016,70558
+46432,30799
+46433,14848,31364,40689,65461
+46434,59553,47792,56783
+46435,9752
+46436,42413,15652,3948
+46437,32958,64283
+46438,67334,12070,71825,44479
+46439,57525,30554
+46440,50792,50261,54975,42861
+46441,39230,11334
+46442,77390,21268
+46443,7628,65074,74019,62352
+46444,54259
+46445,43750
+46446,25279,79607,53664,45841
+46447,27903,60887,44675
+46448,31698,54250,47412,57708
+46449,6754
+46450,55283,40119
+46451,9691,78155
+46452,68411
+46453,39823,54712,61100
+46454,1549,62901,19652
+46455,55582
+46456,80039,53876,58240,22462,64999
+46457,26554
+46458,48939,51754
+46459,53177,37733,47471
+46460,31067,18434,52492
+46461,48169,33982,24745
+46462,72612,63053
+46463,21149,972,37254,78424,80455
+46464,64612
+46465,47256,80189,2888
+46466,36578,79727
+46467,40264,3951,26214,32393
+46468,42548
+46469,67558
+46470,72953,34509
+46471,31098
+46472,10274,6979
+46473,31698
+46474,14610
+46475,75992
+46476,12026
+46477,64217
+46478,82092,35220,50831,20758,67156,45506
+46479,74083,67379
+46480,6674
+46481,45410
+46482,45687,6175,23230
+46483,46010,70404
+46484,75776,18360,67159,63184
+46485,62951,48191,59970,61700
+46486,28330
+46487,40139,15252
+46488,36051,25457,15943
+46489,69063
+46490,11846,13024
+46491,74995,14076,8040
+46492,60521,58353,15814,43082
+46493,21818,10407
+46494,30445,49066,77806,69064
+46495,82155
+46496,22755,61841,4796
+46497,61711,24086
+46498,33069
+46499,6781,55325,68923,56739
+46500,69870,31926
+46501,43377
+46502,50029
+46503,34200,29444,18061
+46504,38742
+46505,29073
+46506,7991
+46507,3040
+46508,57565,23718,74561
+46509,11189,61119
+46510,70768
+46511,10984,31100,10863
+46512,67358
+46513,20597,44192,53404
+46514,36713
+46515,41404
+46516,28703,30748,5429,79527
+46517,43698
+46518,4548,29853
+46519,48003,16662
+46520,76131,62845,34500,43944,44914
+46521,34673
+46522,32500
+46523,76953
+46524,61312
+46525,4756,47601,20514,67677
+46526,41323
+46527,32729,27419
+46528,11417,9664,65534
+46529,18770
+46530,48254
+46531,68626,54093,56199
+46532,79412
+46533,60565
+46534,3319,8505,26731,78676,20695,45297,79568
+46535,2485,3700,74735,53075,15405
+46536,22062,52165
+46537,2518
+46538,30387,56904,5286
+46539,61745
+46540,3344,60634,53994,68852
+46541,80221,16675,72704,58987,41784,45369
+46542,45576,43392
+46543,67243,71847
+46544,29227
+46545,9606
+46546,80398,18654
+46547,81138,44290,46561
+46548,40661,56152,41754
+46549,37936
+46550,70848
+46551,26624,78840
+46552,57641,4318,38209
+46553,34117,39481
+46554,2065,35668,3934
+46555,44726,48859
+46556,65051,11377,46370,21617
+46557,68550
+46558,42428
+46559,79743
+46560,48829,16239,15323,74972
+46561,51178
+46562,75457,77245,23958,21360,21502,11169,75743
+46563,60051,68860
+46564,24556,16501,17942
+46565,4597,5000,71905,27806
+46566,30119,62065,70075
+46567,44591
+46568,78276
+46569,34736,46384,29226
+46570,26588,9250,6171
+46571,51096,66548
+46572,77707,47337,22941,49669,57810
+46573,36021,25538,63214
+46574,5913,12710,70334
+46575,39302
+46576,74914
+46577,81131
+46578,28266,72293
+46579,29356,59957
+46580,80533,36547
+46581,20306,34774
+46582,23029,27831
+46583,63380,1751,76206
+46584,47218
+46585,79487,4215,42401,75654
+46586,72009,27942,26955
+46587,38364,62286,24755,66153,41090,48908,70495
+46588,69331,64018,6217,70620,76042
+46589,54351,21480,69810
+46590,39264,41540,4923
+46591,45818
+46592,44822,18009
+46593,25716,68398,9110
+46594,1766,58644
+46595,65555
+46596,25564,45937,44586
+46597,33063,32089
+46598,69151
+46599,59331
+46600,38383,21105
+46601,32269,6424
+46602,74472
+46603,1708
+46604,41835,20233
+46605,58612,10924,77534,47139,41451
+46606,78672,59382,37311,20332
+46607,66391,5448
+46608,43185,14416
+46609,71049,18467
+46610,23724,17727,76042,23390,58680
+46611,61389,2254,72161,59240
+46612,44747,63840,31551,52168,16936,65386
+46613,34765
+46614,64020,65638
+46615,6964,44730,50245,7665,52845,27758,3182,14950
+46616,61880
+46617,42803,72246
+46618,41518
+46619,13928
+46620,67624,72902,43479,25453,80633
+46621,40851,41321,3858
+46622,52767,81652
+46623,36112,49254,76478
+46624,8647
+46625,20562
+46626,63380,46347
+46627,78657
+46628,48934,37499
+46629,78615,33094
+46630,26060,2177,32872,447,47769
+46631,22277
+46632,45097,7026
+46633,37736,25863
+46634,62721,5328,1479
+46635,32523
+46636,80047,46827
+46637,46545
+46638,23917,81246,81940
+46639,23155
+46640,43088,37976
+46641,68648
+46642,30830
+46643,55364,17001,11172,72673
+46644,18474
+46645,13371
+46646,27293,72577,80067,46395,7621,8995
+46647,20848
+46648,33072
+46649,26900,21974
+46650,45944,63178,59402
+46651,60815
+46652,20630
+46653,69891,73071
+46654,74768
+46655,14107,23274,33391
+46656,36885,45498
+46657,37657,33240
+46658,67023
+46659,21751,21471,76566
+46660,6549,39657
+46661,62095
+46662,2553
+46663,47833
+46664,80326,7944,16123
+46665,16591,4839
+46666,51281,68142
+46667,41064
+46668,71019,45200
+46669,78382
+46670,16224
+46671,20750,26802,67016
+46672,19938,30892
+46673,68142,32753
+46674,67385,56443,34991
+46675,21751,39364
+46676,3150
+46677,56008
+46678,79563
+46679,10475
+46680,8588,42677
+46681,39435
+46682,1085,41069
+46683,67501
+46684,1552,30111,76178
+46685,67228
+46686,28188,72410,67246
+46687,53611,22058
+46688,46445
+46689,62258,49955
+46690,75449,28395,1348,38257,50349,44607
+46691,40428,47524,43300
+46692,9139,73404,5148
+46693,30872,69608
+46694,73045,16245
+46695,20280,38047,60035
+46696,59735
+46697,40651
+46698,71547
+46699,62109,67389
+46700,26939,54676
+46701,26296,33371
+46702,70541,26341
+46703,27131
+46704,16651
+46705,5921,81156
+46706,34927,45010,52639
+46707,17807,35281,48357,17241,63169,81951,10471,13442,49076
+46708,60687,73902
+46709,9780,25812,19771,68680
+46710,8450
+46711,53055
+46712,47008,3850,72379
+46713,75049
+46714,66454,50080
+46715,30452,31117,35220,45082
+46716,50923,26592,31410
+46717,21793,20687,68429
+46718,72564
+46719,29939,48873
+46720,21777
+46721,3519
+46722,59542,37551,20608
+46723,37417
+46724,78449,30435,18316,42575
+46725,74839,34116,28786
+46726,31548
+46727,13772
+46728,4737
+46729,57455,77916
+46730,15900,33920
+46731,76461,77675
+46732,75773,17734,41594,31971,81304,8012
+46733,3666,6081,9507
+46734,22890,22440,36390,3644
+46735,48745,49983
+46736,81640,62697,60082
+46737,58684,12263,18228
+46738,25581,44956,34209
+46739,61785,19398,534,42585
+46740,33013,46743,32839,81652
+46741,28590,37352,76487
+46742,40588
+46743,28258,20568,64579
+46744,67243
+46745,74277,28249,78929,14314
+46746,73862
+46747,43016
+46748,11681
+46749,50156
+46750,25606,14335
+46751,11878,22306,33680
+46752,13414
+46753,39283,10959,33386,2252,42946
+46754,67779
+46755,29477
+46756,10629,51432
+46757,31061,54139,41720
+46758,22400
+46759,1186
+46760,43876,31218
+46761,32137
+46762,18515,36679
+46763,27573,66680,19799
+46764,37643
+46765,47731,5689,19972
+46766,79018,11356,17700
+46767,66314
+46768,1849
+46769,72667,77637,27044,43119,45647,9397
+46770,263,80827,10272,71993,48230
+46771,35781,33744,64849,1276,63192
+46772,80000
+46773,50925,70685,447,2938,63046,62117
+46774,40703,76796,78627,8735,48688
+46775,31596,72899,26981
+46776,31535
+46777,37842,19043,61212,78887,32069
+46778,36660
+46779,66231
+46780,36218
+46781,14277,72831,28435,63744,36495,26098
+46782,66869,55983,222
+46783,70658,35272,30339,39640
+46784,14016,63515,27594,31600
+46785,80849,32892,1012
+46786,79320
+46787,21643
+46788,7878
+46789,60353,43543,54037
+46790,16585,3767
+46791,43706,64860
+46792,30038
+46793,48899
+46794,69700,41137,40464,17037
+46795,33448,58558
+46796,41334,31038,81408
+46797,5203
+46798,12884,53384
+46799,81592
+46800,68194
+46801,11691,19735,8497,56716
+46802,25092,63374,69020,70546,49157
+46803,48479,4938,62711,28150
+46804,45198,79372
+46805,19750
+46806,49778
+46807,76289
+46808,35407
+46809,75339
+46810,11745
+46811,39878,18093,33977,2103
+46812,34019,74764,34473
+46813,48194
+46814,59212,76727
+46815,56813,26382
+46816,54904,22854
+46817,63813,55831
+46818,20500
+46819,74900,70827,15200,42491
+46820,26244,79296,63883,78385,27280
+46821,33419,32753
+46822,57609,49720,76859,5458
+46823,47832,19292
+46824,2697,72973,78109,26147
+46825,41628,69500,79126,61003
+46826,7991,25015
+46827,19736
+46828,5052,47069,18927,55806
+46829,25716,55700,51326
+46830,70917,48685
+46831,46236,2464,72191,58675
+46832,52335,79314,80289,21186
+46833,63424,42064
+46834,19796,71410
+46835,407
+46836,46437,76318
+46837,73258,31193,12567,37179,6307
+46838,73629
+46839,5833
+46840,5690,43963,14695
+46841,47777
+46842,6764,69679,66900
+46843,47441
+46844,22743,43418,22680
+46845,30221
+46846,35742,61035,44349
+46847,1833,66220,48073
+46848,63104,61296
+46849,14363,41801
+46850,28295,29092
+46851,66248
+46852,49739,60898
+46853,13262
+46854,891
+46855,12303
+46856,576,32940,26704,40288
+46857,21955,44560,10122,2582,44768
+46858,58804,49938
+46859,67619,24348,20525,74339
+46860,15379,42281
+46861,71587,33953,1836
+46862,19619
+46863,35816
+46864,7747
+46865,11622,57881
+46866,75723
+46867,61853,69119,20715,58598,23512
+46868,80028,35408
+46869,44354
+46870,2641,31655
+46871,73405,41525,82016
+46872,78418
+46873,69555,24199,15898,69206,70539,18663,70592,77861,44431
+46874,78893,17643
+46875,69420,10425
+46876,36971,32029
+46877,76755,36268
+46878,58047,48213
+46879,9165,61828,56654
+46880,41645,64587,1624
+46881,28327
+46882,11701
+46883,14281,17132
+46884,81145
+46885,124,25100
+46886,11432,35950,47645,64843
+46887,7450,49803,73279,6037,81781
+46888,58086
+46889,47724,10256
+46890,23120
+46891,35122,48700,16502,37407,25291
+46892,5873,6378
+46893,40350,6634
+46894,14275,25272,56940
+46895,26641,63759,70379
+46896,34636,39457
+46897,36779
+46898,56575
+46899,18378,25211
+46900,65469
+46901,10788
+46902,16726,1646,34811,18543,61365
+46903,2076,71891,56518,47212,43266
+46904,23051,73996,65790,40369
+46905,5421,25439
+46906,41545,67813,12973,14910,59752
+46907,62016,46202,22406
+46908,843
+46909,74194,5765
+46910,46120,32558,72060,56996
+46911,18973
+46912,229,59869
+46913,5902,38996
+46914,51940,33088,77397
+46915,26846,21814,15452
+46916,78049,73017
+46917,71812,66775,1388
+46918,62367,59712
+46919,27882,41303,2695
+46920,58056,61252,15059,19373,48551,76094
+46921,6514,7591
+46922,8679,32873,59087
+46923,38184,7931
+46924,26237,50156,5556
+46925,71327
+46926,43189,75399,5910,50115
+46927,9263,48281,27190
+46928,31338,63425
+46929,42158
+46930,27544,57879
+46931,43040,23494
+46932,30565,49500
+46933,61190,18689,18247,37999
+46934,65945,64146,54932
+46935,51269,59352,142,33342,42922,21665,51240,17650
+46936,12749,52626,67072,31715,70053
+46937,36454,71156
+46938,60918
+46939,57628,38770
+46940,1896,71614
+46941,22347,33639,69530
+46942,72853
+46943,37099
+46944,78275,35569,68895,42644,45323,75160
+46945,46881,76633
+46946,72229,25769,60071
+46947,75953,31643
+46948,3890,55224
+46949,9792,62774,27472
+46950,26094,75263,78442
+46951,37078,43760,24827,60768
+46952,1493,45393
+46953,3579
+46954,48978
+46955,48978,28110,32044,19109
+46956,78381,28421
+46957,5718
+46958,38546,66698
+46959,27990,9027,6249,25659
+46960,65046,18202,4300,25377,20521,13200,78348
+46961,47776,52554,22593,28318
+46962,51711,35918,13954
+46963,15016,14355
+46964,30018
+46965,64302,149
+46966,59185,24268,3270,52126,49176,37336
+46967,32963,33271,28117,49076,35018,56418,2144
+46968,67919,38619
+46969,42289,69964
+46970,31551,77033,42425
+46971,68556,29421,54436,43130
+46972,42491,74734,24764
+46973,21546,2017
+46974,71975,75123,58526,81616
+46975,4737
+46976,33162
+46977,76194,13085,18908
+46978,50625
+46979,5660
+46980,81471,45871,71800,10347
+46981,71164,29326,69795
+46982,63316,81383
+46983,57678,57354
+46984,30860,39514,60080,66259
+46985,56626,19907,18796,17968
+46986,53278,5204,30098
+46987,24845,10828
+46988,71787,8225,77755,31697,74837,71243
+46989,76906,75074
+46990,65437
+46991,5632
+46992,22501,40888,38845
+46993,61703
+46994,46132,80478
+46995,45217
+46996,16188,14021
+46997,47302,20155,28397,81106,13597
+46998,4539,34117,25620,27086
+46999,28546,2486
+47000,63430,58085,19546,29683
+47001,49802,20677,9009,38721,32270
+47002,63331
+47003,18355,2387
+47004,50683,29675,26935,54516,3348,2524
+47005,31218,73166
+47006,19468
+47007,15215,71554,56372,80676
+47008,43999,14529
+47009,56246,23581
+47010,73116
+47011,74645
+47012,23950,4954
+47013,44950
+47014,28551,15933,57756,62998
+47015,20237,22087,30405
+47016,46269
+47017,75548
+47018,41410
+47019,46062,32004,5244,18004,41004,4414
+47020,9151,25293
+47021,81719
+47022,64621
+47023,1433,69340,23408
+47024,62388,22125,48370
+47025,63380
+47026,79173,22080,44443
+47027,34692,37667
+47028,27655
+47029,52779,8645,42522
+47030,54760
+47031,41821,65937,72285
+47032,75495
+47033,54483
+47034,73160
+47035,34232
+47036,48219,10991,58542,75549,54869
+47037,65734,37461
+47038,47594
+47039,35143
+47040,6154,75664,65737
+47041,73017
+47042,14451,9490
+47043,72320,40361,55730
+47044,27009,80120
+47045,49953,65803
+47046,55171
+47047,47851
+47048,24195
+47049,1981,8859,81490
+47050,35388
+47051,42346,71613,15034
+47052,37770
+47053,36910,74867
+47054,8835,47383,15350,58455
+47055,62484,53492
+47056,4168
+47057,4408,8790
+47058,72341,2630,70062,55198
+47059,64468
+47060,13617,23098
+47061,10230
+47062,33154,63541
+47063,48744,72126
+47064,3250,13018,79543
+47065,75870
+47066,27019,41338,5828
+47067,74348
+47068,63006,36519,5876
+47069,31876
+47070,60803,82008
+47071,29860
+47072,23499
+47073,16096
+47074,5477,40296,53239,25337
+47075,12932,32667
+47076,22355,38806
+47077,25093,28759
+47078,79727
+47079,76604,58741
+47080,65309,61570
+47081,79975
+47082,20743,34650,54537
+47083,64768
+47084,2323,46556
+47085,77792
+47086,6852,35751,7802
+47087,31770,18342
+47088,69543,25870,2551,44002
+47089,40433
+47090,41190
+47091,30091,52659,40464,58394,45567,50325
+47092,46576
+47093,81354,31255,46374,65060,23261
+47094,72310
+47095,18181
+47096,74901
+47097,63161,43720,58490
+47098,61274,46253,71446
+47099,63015
+47100,62851,36857,26908,80428
+47101,60457
+47102,47120,80184,5653,9442,65564,79307
+47103,82164,17034,35074,66470
+47104,64860
+47105,58727,79500,30143,79224,63608
+47106,45634
+47107,11334,64570,2916
+47108,34679,49496,55782
+47109,14823,43178,3109
+47110,46950,2284
+47111,74130
+47112,20492,70428,59191
+47113,12094,57819,27544
+47114,75023,18954,16019
+47115,54957,16572
+47116,10687
+47117,81505
+47118,57518,73602,2996,53279,56189,3098
+47119,31952,60344,70964
+47120,8673
+47121,38526
+47122,6708,39240,61747
+47123,59869
+47124,52492,71505,20508,37230
+47125,45168
+47126,51821,50967
+47127,30127,78517
+47128,80420,477,9618
+47129,68679
+47130,8322,72309
+47131,1620,46946
+47132,32257,71201
+47133,49566,24864,31938
+47134,49739,975
+47135,24328
+47136,22410
+47137,81618,15269,4544,25100,70544
+47138,12462,47247,2208
+47139,25201
+47140,53387
+47141,15030
+47142,66131,62554
+47143,56048,41547,28725,25190,35662,63965
+47144,26876
+47145,74578,74724,45161
+47146,43078,68570,8420,17377
+47147,11520
+47148,33656,77235,46365
+47149,15903,64591
+47150,43269
+47151,4663,73544
+47152,20697,73003
+47153,37968,78536
+47154,11832,63498,63690
+47155,42373,56260
+47156,51374
+47157,48123
+47158,66118,35426
+47159,7594
+47160,32070,6481
+47161,31810,47977,57677,45201,72663
+47162,13174,73497
+47163,53032,44869
+47164,81983,42350
+47165,56147
+47166,52636,37607,20153
+47167,25635,55000,16401,60764
+47168,6188
+47169,28286
+47170,5586,77555,55131
+47171,19699,48913,62230,75460,15653,18391
+47172,79360
+47173,38715,37469,64045,78080,75356
+47174,51623,16316,33539,50783,224,49003,8745,19007,54078,57278
+47175,78864,19699,6713
+47176,61197,29097
+47177,39683
+47178,51318,32801,79860,35428
+47179,60060
+47180,3822,4363,44296,7137,28182,82151
+47181,19246,6807
+47182,56248
+47183,31081,17110,25939,79272,28692
+47184,79769,66121,55307
+47185,2268,15513,16360,54569,19334,78182
+47186,64821,48561
+47187,51659
+47188,43123
+47189,35680,3145
+47190,69245,31533,37709
+47191,23617,64979
+47192,50529,61919,54627,34846,39395,64478,4531
+47193,75791,32336
+47194,36083,896
+47195,48402
+47196,54396,41913,24390,69836,39512,21608
+47197,11413,70609,18406
+47198,80849,68098,55640,61280
+47199,43426,10828,39599
+47200,37888,60511,21911,68299
+47201,56249,20770
+47202,27660
+47203,78526,56433,73603
+47204,39073
+47205,62030
+47206,17494,41741,7266,74058
+47207,31511
+47208,19422
+47209,79312,36570,25896
+47210,74679,28043,6925
+47211,77826,73184,49251
+47212,66825,35959
+47213,48004
+47214,52849
+47215,59597,54352
+47216,48176
+47217,24065,4152
+47218,63499,66502,75802
+47219,575
+47220,77174
+47221,81291
+47222,51202,3307,35371,20107
+47223,3672,5012,64803
+47224,51356
+47225,54661
+47226,59052,8528,16442,11463,62223
+47227,17439,75994
+47228,54906,45094,49139,4663,72168
+47229,25813,52986,9024,31788
+47230,27648,63658,37382,47927,51468
+47231,38868
+47232,16083,59089
+47233,10241,25369
+47234,77871,78180,32231,783,32831
+47235,16088,44453,78751
+47236,52722,50400,53182
+47237,7926,660
+47238,25918,8829
+47239,62972,67374
+47240,51270,57753,44098
+47241,15270,35420
+47242,28085,5568,17135
+47243,23316,35431
+47244,35709,59813,25279,992
+47245,73270,11838,18763
+47246,15077,33159
+47247,78835
+47248,13497,58133,26992,52020
+47249,12205,69132,74625
+47250,70611,80805
+47251,79362,76850,27638
+47252,63422,15902
+47253,28636
+47254,56968,47616
+47255,34970,80392
+47256,16910,58675,1662,2411
+47257,55697
+47258,36749
+47259,73035
+47260,76656
+47261,77793,28163,11020
+47262,52914,42004,15829,7525,74793
+47263,13712,74536
+47264,42105,80569
+47265,32704,77945,21052
+47266,76219,20085,30425
+47267,66621,60209,50611,80450
+47268,17022,50159,75760,22043,80796
+47269,3652,51019
+47270,25065,34530
+47271,972,50264,38261,28599
+47272,4898,60340
+47273,45172
+47274,76409,28465
+47275,74228,31427,58368,11119
+47276,53729,54452,78955
+47277,54032,56098,43506,65892
+47278,36188
+47279,52118,37732,22114
+47280,54584,74986,75523,65095,60517,59462,42313
+47281,43503,76612
+47282,3986,32899,51037
+47283,42459,13024
+47284,41056,7941
+47285,45187,29645,57846,66078,11306
+47286,43282,29717
+47287,25236,64360
+47288,35837,43040
+47289,10467
+47290,6778
+47291,22782,48213
+47292,66776
+47293,750
+47294,60376
+47295,53376
+47296,36800,39042,624
+47297,54702,11242,55951
+47298,6291,8163
+47299,11590,46768
+47300,7837,27000
+47301,43310,382,35495
+47302,2808,26058
+47303,16218,20774,33259
+47304,78808,76552
+47305,45158,17991,41020,41244
+47306,2160
+47307,32971
+47308,68149
+47309,59555
+47310,73526,261
+47311,72979,68741,12129
+47312,15342
+47313,28688
+47314,15153
+47315,74464,33064
+47316,48856,69114
+47317,48043
+47318,31876
+47319,8168,61454,53888
+47320,25145,15880
+47321,69224
+47322,70787,38321,51972,47764,56648,35254
+47323,49820,27204,80268,26942
+47324,36099
+47325,7793,15497,11150,79512
+47326,56175,5048
+47327,43251,30102
+47328,54299,30639
+47329,76711,762,39969,55695,13487,80830
+47330,47607
+47331,47006,72363
+47332,73572,69093
+47333,77813,44845,65872,31810,74473
+47334,26837
+47335,10143,10994,32888,48984,7835,60672,13997
+47336,1957,51015,40714,74488,37934,22572
+47337,14090
+47338,58840,77483
+47339,17259,53385,70406
+47340,17221,50467,38927
+47341,28344
+47342,42661,7575
+47343,64298,67655
+47344,71405,4011,68800,31521,58511
+47345,34606,12620
+47346,2177,47525,3746,19622,15248
+47347,20682
+47348,18135,15157,27763,44094,67814
+47349,37519,29210,61483
+47350,56221
+47351,77258,5424
+47352,72084,29297,29008
+47353,52811,10917
+47354,57106,23768,9973,9772,75928,42409
+47355,44664,1509
+47356,38008
+47357,924,42782,3683,8497,77226,74651
+47358,71458,41238,69920
+47359,68678,34814,67562,55904
+47360,47527,45927,12922,33485
+47361,46271,68941
+47362,15173,38421,18791,1083,57957
+47363,74276
+47364,79124,78111,22217
+47365,50288,54926,68337,19736
+47366,30856,50704
+47367,38996,51007,3072
+47368,26790
+47369,1349,6378
+47370,50467
+47371,46892,61158,62222,66917
+47372,35804
+47373,57166,19427,78173
+47374,20037
+47375,77353,58526
+47376,34670,18587,30702,41696
+47377,18939,22536,72793
+47378,13595,70751
+47379,1694,73976
+47380,72621,75290
+47381,20421,56002,81710
+47382,30513
+47383,69155
+47384,64572
+47385,10783,78883,14714
+47386,16470,7595
+47387,493
+47388,3506
+47389,58166,70024,29815
+47390,58699,32899
+47391,29666,5153,50471,43766
+47392,36761,59572,24268,11292
+47393,53869,71403
+47394,51371,74789,17283
+47395,42913,38214
+47396,74860,64754,20867
+47397,49640,11659,71264
+47398,16341,5295,4981,66444
+47399,8444
+47400,78444,9591,54937
+47401,58881
+47402,80988
+47403,49874,69060
+47404,65006
+47405,42772,22038
+47406,25274
+47407,33073,50292
+47408,12392,5083,7089
+47409,60580,42117,18358
+47410,49875,54812
+47411,50776,66259,74490,6935,3349
+47412,111,74892
+47413,69241,41739,14210
+47414,77553,18136,17067
+47415,50465,12758
+47416,8795
+47417,50126,30779
+47418,61510,44789
+47419,56603,24948
+47420,51383,73996,31045
+47421,61267
+47422,3408
+47423,68224,2447,39240,75088
+47424,15820
+47425,44868,61550,45074
+47426,26668
+47427,29308
+47428,56854,35683
+47429,81712
+47430,60024,56705
+47431,80266,69592,37531,75236
+47432,40065,15732,50266,66554,76080,49227
+47433,77203
+47434,80374
+47435,27136,24556,51177,25095,11784,30678
+47436,77261,19923,13145,47339,69650
+47437,80698,53044,20031,11888
+47438,36322,58146
+47439,33012,16584,73597,30938
+47440,47843,20210,32836
+47441,5213
+47442,74472,48892
+47443,78948,80843
+47444,70618,43451,57117,79387
+47445,44978
+47446,52606
+47447,53615
+47448,3220,19345,79082
+47449,39540,5586
+47450,32447,62573
+47451,25293,47513
+47452,75309,26045
+47453,61217,48755
+47454,73107
+47455,51217,324,77205,48058,76317,18916,77541,56104,40780
+47456,4163,17653
+47457,77544,74134,1333
+47458,71269,74340,80628,19371
+47459,2766,23857
+47460,45604
+47461,71402,40441
+47462,62719
+47463,68038,49944
+47464,67117,33694,17421,27060,80343,11314
+47465,66012,21516
+47466,23645,57225
+47467,74133,19964,51216,25130
+47468,20709,19830
+47469,22098,68340,12083
+47470,35591,38363
+47471,73416
+47472,19581,11216
+47473,34736
+47474,47389,75143
+47475,17987
+47476,61359,32510
+47477,36089,66600,77080
+47478,5553,68726
+47479,16422
+47480,78369,73392
+47481,23631,21259,29166,14402
+47482,38620
+47483,38045,45480
+47484,15000,53134
+47485,9822
+47486,70043,8115,69029
+47487,3700,514,70852
+47488,26507,74425
+47489,73227,50854
+47490,71234,16519
+47491,69663,51659,77594,63701,17264
+47492,35885,14049
+47493,23812
+47494,48836,37639
+47495,75435,69579
+47496,57458,8258,48797
+47497,1189
+47498,62025
+47499,71406,33594
+47500,64324
+47501,65250
+47502,21606,77190
+47503,47069
+47504,35976
+47505,79057
+47506,78550,21434
+47507,18478
+47508,26855
+47509,53605,16815
+47510,52430,5568,39024,71226
+47511,65941,42355,36368
+47512,81158,43113
+47513,37667
+47514,60546
+47515,8356,77391,39205
+47516,37603,29547,78323
+47517,63616,33071,75269
+47518,21237
+47519,22455,58464,81106
+47520,48723,80251,69174
+47521,64038,62977
+47522,72351,63823,47057,13469
+47523,45602,28074
+47524,34747,66710,57819
+47525,71653
+47526,31069,81021
+47527,60903,42682,44143,24860,78646
+47528,71421,35766,63566
+47529,46868,28372,77792
+47530,49707
+47531,54074,19119,55909,81004
+47532,12526,27828,33042,37507
+47533,62035,55017,35798,49896,48872
+47534,24331,29196
+47535,35804,992,17739
+47536,39216,12421
+47537,50302,52533,29084
+47538,72395
+47539,1109,63195,51497,15941,31606
+47540,46237
+47541,4218
+47542,11472,28643
+47543,41851,22668
+47544,76744
+47545,16401,80916
+47546,51772
+47547,41813
+47548,10934,6295,29278,12011,37038
+47549,52166,51675,51101
+47550,49071,1387,43999
+47551,75325,12958,25998
+47552,54713,493,63655
+47553,19060
+47554,40599,42273
+47555,46199
+47556,77799,66224
+47557,58541,49163,52075,80124,25181,75501,70585,1906
+47558,16326,26866
+47559,28606,44214
+47560,51765,62580
+47561,9992,49490,32454,47382,46965
+47562,24600,64603,28013,32744
+47563,59295,13599,38656
+47564,33684,50
+47565,59902,57194
+47566,22721,80842
+47567,54000
+47568,23729,57592
+47569,72972
+47570,176,57138,53106,40232,79633
+47571,22606,15645
+47572,49826,80201,26608
+47573,35198,25093,72200
+47574,20118,45207,73595
+47575,73966,42571,72712,7536
+47576,58527,15524,61325
+47577,26959
+47578,43831,1172,35049,27747
+47579,52141,30719
+47580,27104
+47581,12236,32982,31213
+47582,57600,11899
+47583,29024,62244,26011
+47584,78515,19991,22373,67903,25756
+47585,52160,36810
+47586,19652,34314,31786,60328,43159
+47587,56713,31847
+47588,53533
+47589,58972,21755,59133
+47590,67293,22102,40720,64798
+47591,69912,45808,62516,47493
+47592,17511,48726
+47593,21449,74189,24101,37519
+47594,43534
+47595,21621,61336
+47596,46434
+47597,50397
+47598,5476
+47599,13748,31606,5,8769
+47600,37784,2328,48394
+47601,20965,16480
+47602,24333,46661
+47603,53198,73292,79231,74280
+47604,6110,26304,46163
+47605,19285
+47606,33484,39954,78194
+47607,76695
+47608,24214,15422,38369
+47609,73841,61411
+47610,74083,35456
+47611,12207,15577,33882
+47612,27111,46868
+47613,18053,17173,49535
+47614,34418
+47615,49284,34969,27051,55137,14925
+47616,34720
+47617,34948,79300,75304
+47618,47930,43255,77870,34547
+47619,78237,31247
+47620,22198,54537
+47621,24798,77909,45769,4494,1442,18560
+47622,59771
+47623,17425,32519,32796
+47624,71440,44603,32942
+47625,40923,59299,74439
+47626,74228
+47627,72274,49640,1257
+47628,53381,35467
+47629,63454,28043
+47630,10963
+47631,46343,80634,33632,45244
+47632,7406
+47633,17668
+47634,73797,81710,20664
+47635,56647,38945,70
+47636,11327,28376
+47637,80447,72588,48899
+47638,36086,1052,58989,24816
+47639,41676
+47640,28515
+47641,69693,50182,68687
+47642,16518
+47643,51567,66551
+47644,20871,64491
+47645,28459,17714
+47646,25675,46602,47995
+47647,52316,11530,48409
+47648,3010
+47649,77056,60548,669,73432,77246,50469
+47650,23308
+47651,13653,67389
+47652,6324
+47653,9196,10747
+47654,40401
+47655,49854
+47656,58225,64658,46726
+47657,67508
+47658,70355
+47659,49472,17298
+47660,46561
+47661,28705
+47662,40854,46445
+47663,64676
+47664,53551,6447
+47665,80301,61905,60765,52277
+47666,76811,15622,73629,56032
+47667,38604,75629
+47668,17938,29103
+47669,2102,56477,58817,78615,36133
+47670,76410,49270,31808
+47671,15031,67738,62249,43755
+47672,43293,74287,66243
+47673,75409,51106,65054
+47674,649,5011
+47675,59454,33771
+47676,35631,12697
+47677,14097,60944
+47678,64018,48049
+47679,16822,64349
+47680,2947,1751
+47681,1551,61634,44998
+47682,81935,14396
+47683,38407,14150
+47684,62535,10883,40019
+47685,24974,11941,37619,53014
+47686,43040,12056
+47687,32138,6626,21185,59185,448
+47688,33337,36169
+47689,44569,59524,13982
+47690,57310,1392,4065,72102
+47691,57951,36337,13525,47318,58543
+47692,47048,62408,40038
+47693,63854,54384
+47694,48170,80220
+47695,69748
+47696,50478,49590,65564
+47697,19099,30408
+47698,35959
+47699,50290,52811
+47700,66056
+47701,31551
+47702,46214,54324
+47703,16563,32831
+47704,59400,60952
+47705,49623,66338,1588,79256
+47706,36198,1106
+47707,57075,50867,10810,75115
+47708,16724
+47709,32441,41609,78034,69921
+47710,4849,21033
+47711,2925,45990
+47712,27425,21189,34826,62707
+47713,36805,68503,36804,40148,51099
+47714,4332,64443,17605
+47715,58516,17612
+47716,81576
+47717,39176
+47718,46258,29699,68317,10206
+47719,2220,30844,37115
+47720,18478,5757
+47721,73274,56859,32490,36812
+47722,47799
+47723,57638
+47724,27308
+47725,43107
+47726,5806,53770
+47727,74880,42547
+47728,14637
+47729,54581,23253,46284,33537
+47730,77207
+47731,62139,21845,61112
+47732,18429,41109
+47733,71730,15485,74860
+47734,72993,59516,36361
+47735,18470,50021
+47736,18287,74159
+47737,19922,28609,52153,8933,10768
+47738,7885,70500,63082
+47739,6239
+47740,67119,36077
+47741,22683
+47742,20462,59220,28734,19994
+47743,47140,8932
+47744,55822,63961
+47745,82076
+47746,17494
+47747,11070
+47748,68378,48046,43749
+47749,20624,58529,52706
+47750,8739,70688
+47751,5813,30238
+47752,38489
+47753,58397,54798
+47754,59265
+47755,56395,24666
+47756,49358,79800
+47757,14002,1482
+47758,16743
+47759,12624,20736
+47760,25786,37997
+47761,28765
+47762,42494
+47763,16349
+47764,37172,52909
+47765,32985,24571
+47766,62054,59604,53298
+47767,24671,54694,19057
+47768,66276
+47769,15347
+47770,23628,49399,3732,29892
+47771,67539,2625,71453,27900,78881
+47772,4766,3557,19790,72917
+47773,59116,19257
+47774,24425,11342,33684,78567
+47775,49163,18658,14318,48251,305,49021
+47776,33868,73812,70516
+47777,4494
+47778,29643
+47779,28865
+47780,49351,66751
+47781,72446
+47782,29919,70002,36239,15600
+47783,39876,70365,3064
+47784,59511
+47785,36778
+47786,41229,3431
+47787,14527
+47788,34789
+47789,23739,64768,12197,40210,53122
+47790,69271,32974,31949,16402
+47791,33995,65473,4198
+47792,62867
+47793,58903,37455
+47794,56197,50976,10938,22835
+47795,4959,20588,47482,78083
+47796,71101,75780
+47797,34043
+47798,13127,23722
+47799,60803
+47800,50
+47801,80503
+47802,49532
+47803,79741,51990,16904
+47804,35047
+47805,78155
+47806,7627,32806,56812,27666
+47807,32111
+47808,77554,35793
+47809,23658,18971,47278,57894
+47810,14866,2643,1152,78817
+47811,9006
+47812,64597,75297,31792
+47813,1746
+47814,20101,38188,6277,44299
+47815,15204
+47816,81626,76809,63020,30276,58023
+47817,35601
+47818,8109,65845
+47819,38527
+47820,2802,10253
+47821,50083
+47822,80234,72541
+47823,79600,18091
+47824,56701,25087
+47825,3214,23545
+47826,41262,24659,25832
+47827,65977,24937
+47828,14979,36592
+47829,37080
+47830,12198,15466
+47831,69656,29185,73651
+47832,45656,31217,44164,14140
+47833,47011,3006
+47834,17634
+47835,58584,50987,29096,69101,37413,68749,65868
+47836,71055,44119,55675
+47837,48752
+47838,29675,75654
+47839,7654,60971,51084,44823,79934
+47840,46487,18702,73336
+47841,55555,8307,1043,81499,46843,72329
+47842,45418
+47843,9396
+47844,62917,68974
+47845,19618
+47846,63170,24576
+47847,53665,62714,51092
+47848,61798
+47849,33773,69585
+47850,38266
+47851,41234
+47852,12185,15008,35600,67685
+47853,26667
+47854,64583,47006
+47855,33770,18369
+47856,71824,2849,27846
+47857,51067,9833,71324,70596
+47858,36966
+47859,74488
+47860,14025,52790,49568,24495,46094
+47861,32736,77611
+47862,35876,5318
+47863,22985,71787,40779,4283
+47864,2642,10462
+47865,961,32371,42975
+47866,74340,65188
+47867,38059,64126
+47868,12722,43403,966,80930,49558
+47869,13711,37379
+47870,57153,23486,21081,53573
+47871,60376,14792
+47872,67771,21721,41343
+47873,42591
+47874,4309,17489,62916,30511,32564,48610,9910
+47875,29336
+47876,68840
+47877,18907,45615,74605
+47878,47871
+47879,69250,38847
+47880,72291,23902,45000,28712
+47881,19701,30373,24765,48095,55660,69186
+47882,57828
+47883,62739
+47884,76762,72014,70447
+47885,59510
+47886,12536,49244
+47887,11414,13117
+47888,19748,42567,2668,22199
+47889,66922,24410,50537
+47890,44078,3591,51939
+47891,48226
+47892,47461,43690
+47893,12773
+47894,25459,26154
+47895,51837,35665
+47896,31655
+47897,6663
+47898,26342,75753,62688
+47899,61590
+47900,43577
+47901,70095
+47902,23595,25571
+47903,51286,21618,73480
+47904,31067,11176,11280
+47905,20473
+47906,26040
+47907,21640,2160
+47908,65316,67696
+47909,6075,33666,30713
+47910,55017,50526,80534
+47911,20508,1589,14113
+47912,44178,56141,57307,80439,24616
+47913,4684,25886,2579
+47914,26471,49120,31800,20683
+47915,5995,30958,67428
+47916,3006
+47917,21044,65096,31855
+47918,36975,29129,139
+47919,65358,70345
+47920,51255,20688,38887,69194,4817,79475,26131
+47921,15662
+47922,15809,51825
+47923,69537
+47924,22625
+47925,76795,55506,54209
+47926,23643,7533,51953
+47927,72836,49485,18474
+47928,30288,60,62910,46640
+47929,59121,23008,68680
+47930,13961
+47931,56816,10000,75628
+47932,77385
+47933,62816
+47934,52867,48918,62655
+47935,10475
+47936,69055,24059
+47937,33977,72001,70382,52383
+47938,14820
+47939,1596,3238,30998
+47940,4280
+47941,67971
+47942,61596,56655,55705,37754
+47943,64443,51803,69506
+47944,25347
+47945,73411,55574,77590,30277
+47946,79670,54345
+47947,55563,12826
+47948,61998,62891,47971
+47949,79769
+47950,32159,38056,78834,62339,46560
+47951,69721,75929
+47952,17470,4568
+47953,79342,43597,75567
+47954,51100,39078
+47955,47511,25725,8605
+47956,44763,22295,36077
+47957,40958,15644
+47958,5355,48136
+47959,15605,27801
+47960,29436,58109,43085
+47961,74129,61622,21941,61443,78861,29786
+47962,68377,28561,11507,5145
+47963,24258,3958,55185,18718
+47964,15415,43295
+47965,62531,22683,26838,25880,65957
+47966,40982,34105,33950
+47967,55633,81645
+47968,70529
+47969,63813,60538,45201,35422,13631,78688
+47970,59533,17872,71543,74287
+47971,22531
+47972,34139
+47973,23894,74296,45669,11547
+47974,60444,13410
+47975,1313,68569
+47976,26895,53369,16813
+47977,81029,33548,59777
+47978,4592,35298
+47979,16572,63563
+47980,64196
+47981,48089
+47982,76218
+47983,66765,15395
+47984,16436,81942
+47985,66763,66421
+47986,32879
+47987,70402
+47988,12925,17652,74428,59719,65583
+47989,82173
+47990,30787
+47991,58332,40049,26702,14024,6289
+47992,41339
+47993,5986
+47994,10992,227,68714,44476
+47995,67821,10375
+47996,17696
+47997,36981,13892,66778
+47998,27919,13777
+47999,50363
+48000,13300
+48001,69738
+48002,25584,3808,37451
+48003,17756
+48004,13388
+48005,82054,40401,11406
+48006,34669,42008
+48007,61377,38173,5848
+48008,4764,81447
+48009,30128,9447
+48010,64307,20332,17622
+48011,36419,8426,9004,22492
+48012,46845,60245,32441
+48013,66231,24811
+48014,22176
+48015,37157,25049,33923,81275
+48016,44119
+48017,23760,21954
+48018,69145,23909,82167
+48019,73537,64166,51467
+48020,59409,80420,47696,45706
+48021,40133,62573,81866
+48022,40941,34190
+48023,12601,67253
+48024,20682
+48025,76193
+48026,46631
+48027,5993,39769
+48028,27884,74755
+48029,5885
+48030,25569,220,30556,23399,19335
+48031,5094,31308
+48032,13412
+48033,62918
+48034,27635,5522,40600,43716,79749
+48035,35912,12274
+48036,69014,54959
+48037,22645
+48038,62376,40425,3726,47220,58371
+48039,16196,61605,64561
+48040,19353,64989,73385,49937
+48041,57308,5280
+48042,76002,63925,34111
+48043,81879
+48044,77637,66421,69268,52572,3959
+48045,45334
+48046,700
+48047,70642
+48048,39479,75465
+48049,34625,67538,44402
+48050,77384,57336
+48051,64042
+48052,67016,40414
+48053,56796,14246,25357
+48054,41037,52090
+48055,10626,52759,31334,79549
+48056,71668
+48057,43624,80243
+48058,33385
+48059,58211,28758
+48060,39406
+48061,79613,41230
+48062,34101
+48063,67907,70533,76076
+48064,49040,10819,44518,26026
+48065,56072,56693
+48066,29927
+48067,29193,17890,69276,57110,79088
+48068,67300,52958,80146
+48069,18415,65370
+48070,59561,38329,65693
+48071,79855
+48072,79623,21768,26364
+48073,80841
+48074,15188,8802,16584,53050
+48075,34771
+48076,1313
+48077,39922,48842
+48078,24505,60126
+48079,18104
+48080,52116,2923,21511
+48081,5191,32303
+48082,33536
+48083,16613,14701,68879,4132,50205
+48084,52915
+48085,587
+48086,72598,67473,13804
+48087,69777,61154
+48088,80217
+48089,68313
+48090,63542
+48091,51905
+48092,65936,69270,6488,54647,26691,58159
+48093,51669,56978,3901,2951
+48094,20904,7598,17791,75813,42058
+48095,28333,46937
+48096,17724,49273,31850,57742
+48097,24944
+48098,7601,62732,81473,21852
+48099,52522,41337
+48100,40495,63090
+48101,49584
+48102,33846,8750,36752
+48103,34196
+48104,36325,65016,17238,74158
+48105,60870
+48106,22966,24545,63937
+48107,54273,79112
+48108,36752,67584
+48109,2101,60101,54236
+48110,74642,3129,10460,55195
+48111,50337
+48112,16963,42617
+48113,34435,53195,74935,32675,64303,61896
+48114,60531,12869
+48115,19572
+48116,14739,60984,27573
+48117,5868,80583,27476
+48118,81642,63593,18173,64615,14788
+48119,33305,34853
+48120,22851,26621,30611
+48121,80247,52076
+48122,70639
+48123,51097
+48124,25167
+48125,7878,72369
+48126,56948,23634,25728
+48127,35959
+48128,64321
+48129,40631
+48130,22406,57644
+48131,79357,58402,29439,22037,10202
+48132,39469,65037
+48133,70317
+48134,62218,46061,15165,3575,72515,33625,55799
+48135,68365
+48136,79706,20545
+48137,53695
+48138,54681
+48139,79635,57836
+48140,3028
+48141,4049,26808,41620
+48142,4386,10073,51877,15650
+48143,12208
+48144,80435,16211,22022
+48145,17173
+48146,73724
+48147,57994,5086,26659,59009,50167,72294,54450
+48148,49986
+48149,12634
+48150,43367,52677,47538,62250,38600,74066,57464
+48151,51829,57804,14677,27337,1799
+48152,41359
+48153,12836
+48154,35042
+48155,61675
+48156,68919,66867,26887,51894,7864
+48157,37558,56075,33099,16928
+48158,4663,12196,61735
+48159,63137,36048,58949,40251,53962,66524,72035
+48160,78510,26057
+48161,46408,74576
+48162,41761
+48163,2310,22254,25282,33372,22963,47026
+48164,25539,51156,62635,23324,21727
+48165,50196,24618,73124,20867
+48166,80659
+48167,62263,13989,26883,23893,68573,77823,66519
+48168,68749,35854
+48169,20803
+48170,76460
+48171,61956
+48172,53424
+48173,68734,66666
+48174,63436,4429
+48175,23589,28115,73513,31535
+48176,10536
+48177,77254,68181,71611,26968
+48178,5449,33346
+48179,78154,75405
+48180,76735
+48181,14922
+48182,74464
+48183,68898,11758,69178,329
+48184,7648,20525,31086,77753,25006,20111
+48185,72296,63214,76881
+48186,37981,24658
+48187,75415,20647
+48188,18332,30181
+48189,74009
+48190,38913,17690,64906,40704,35134
+48191,33144,21454
+48192,5021,4675,7945
+48193,1290,34189
+48194,57672
+48195,6732,48978,49678,43451,69688
+48196,40776,9358,763
+48197,25626,49079,46120
+48198,18154,81006,64512,60632
+48199,54680,15251,42772,69158
+48200,48414,12513
+48201,9022
+48202,27543,79375,27548
+48203,30429
+48204,55792
+48205,74391,67120,25036
+48206,1961
+48207,12643
+48208,35812
+48209,7744,65539,18968,30267,13236
+48210,54964,44981
+48211,13244,37770,27822,52338,20881
+48212,31041
+48213,53424
+48214,39426
+48215,40919
+48216,15802
+48217,8808
+48218,5059,52311,23323
+48219,64574,74733
+48220,61019
+48221,52736,21874,55965,51274
+48222,11053,56612
+48223,73687,50250,7507,63189,41881,73974
+48224,4416,49774,24142,62023
+48225,19781,45255,7148,27023
+48226,80553,76252
+48227,81570,55893,33977
+48228,41848,76930
+48229,16433
+48230,2471
+48231,57515
+48232,28348
+48233,79423,34922
+48234,41066,31787,78972,68188,74707
+48235,66571,22710,62721
+48236,41730,53073
+48237,10639
+48238,17153,28736
+48239,44262
+48240,36782
+48241,19283,74735
+48242,47752,19823,49987
+48243,29433,11518
+48244,34263,30893
+48245,42725,2736
+48246,47125
+48247,50873,76269,32811
+48248,52618,5838,73106,42379
+48249,18117,70033
+48250,25944,21518,67289,50180
+48251,72842
+48252,41057
+48253,20192
+48254,20500
+48255,62351,12826
+48256,18377
+48257,478,54895
+48258,18729,14130
+48259,29779
+48260,69529
+48261,52846,51236
+48262,55353,70716
+48263,39872
+48264,24537
+48265,71588
+48266,4726,79654,29332,1972,42917
+48267,19034,29103,20861
+48268,54473,20282,75359
+48269,34168,3305,71897,5436,70797,48169
+48270,53503,35355,67550
+48271,50317,30078,35818
+48272,77403,70835
+48273,76565,23992
+48274,65507,14487
+48275,53184,14962
+48276,79331,58693,8852,14185,78336
+48277,59216,47670,2595
+48278,16652,52394,42014
+48279,49063,55276,35091
+48280,71949,53090
+48281,56546,50070
+48282,35711,13981,4484,67553,24545
+48283,6030,73627,50769
+48284,81606,2750
+48285,21887,56888,33315
+48286,20911,25447,7736
+48287,35295
+48288,79981,16658
+48289,78385,63858,81034
+48290,16792
+48291,70798,7592,63992,30471,26997,22194,80290,81537,35522
+48292,66558
+48293,57996
+48294,24410
+48295,38999
+48296,19186,76082
+48297,61978,70072
+48298,45140
+48299,2968,51479,73281,29153
+48300,16878
+48301,75149
+48302,15278,40156,37914
+48303,52190
+48304,20342,81380,7199
+48305,81419
+48306,2834
+48307,47212,36341,77360
+48308,20083,50943
+48309,78713,7061,38768,31940,49015
+48310,32382,77470,17935
+48311,6528
+48312,66392
+48313,21955
+48314,3537,39612,9201
+48315,24423
+48316,22782,36132
+48317,49491,25559
+48318,5489,68555,2740,77073
+48319,55054,61544
+48320,14273,70374
+48321,63086,80876,11462,42113,63994,32346,38980,39699
+48322,5868,20867,80512
+48323,46917,80907,9830
+48324,78999,22825,15022
+48325,78441,17587
+48326,24040,24895
+48327,27841
+48328,61052
+48329,73427,2592,27004,33995
+48330,3001,65490
+48331,66394
+48332,74693,19608,36356,35541
+48333,8469,42365
+48334,67574
+48335,43904
+48336,30194
+48337,81718,58220,46565,46447,26630
+48338,61664
+48339,11218,43978,226
+48340,27134
+48341,9129
+48342,47257,66208,19283
+48343,46602,25336
+48344,64920,32697,10067
+48345,35261,79282
+48346,556,17300,64059
+48347,2397,34044,38554,8885
+48348,63046,20801,42460
+48349,46641
+48350,68837,5421,51003,69804
+48351,78117
+48352,16888
+48353,70880,12095
+48354,53398,70148,48402,1915
+48355,24856
+48356,17913,71549,74844
+48357,48714
+48358,29694,40595,65676
+48359,22593
+48360,77018,24875
+48361,1487,61561,36586
+48362,45181,50610
+48363,35851,10289,49634
+48364,56241
+48365,76818,77919,3330
+48366,53602,24445,35731,24502,6282,63013
+48367,75053,32784,30998,65748
+48368,27103
+48369,64629
+48370,79295
+48371,4782,44226
+48372,9524,42797
+48373,6371
+48374,19404,68442,44957
+48375,65666,11396,39159,21027
+48376,19988,73734,53556
+48377,80937,14094,73572
+48378,25005,58390,55994,5834,53870
+48379,56463,28786
+48380,60503,25836,19213
+48381,53151,588
+48382,20440,3468
+48383,39344,49251
+48384,19202,25853,36726,25100
+48385,78745,59475
+48386,69488,45101,49414,38790,8179,52163
+48387,20112
+48388,22710,49074
+48389,55539,39053
+48390,8162,18612
+48391,56441,58164
+48392,51373,6545
+48393,20610
+48394,16191,62283
+48395,42885
+48396,6947,51298
+48397,71771,38104,10872
+48398,11441
+48399,28474
+48400,8006,36900,71497
+48401,64719
+48402,27090
+48403,74698
+48404,70476
+48405,45335,26239
+48406,7827,3656
+48407,71300
+48408,42849,9680
+48409,75162
+48410,79431
+48411,22496,55671,65806
+48412,33585,78034
+48413,66956
+48414,3611,7033
+48415,6705,6246
+48416,14408
+48417,9412,4999,74248,27615,19284
+48418,53206,72016,78298,58817
+48419,9593
+48420,12258,36650
+48421,42944
+48422,38671,13132,6941
+48423,38277,49266,80617,73694
+48424,21922,63308,12615
+48425,44858
+48426,4345,36207,40176
+48427,13172,47132
+48428,45405,38933,9182
+48429,17509,20438,32467,6489,19804,29852
+48430,71348,62290,14926,41487,26747
+48431,25529,35719
+48432,15252,70206
+48433,22017,72250,45498
+48434,8430
+48435,69854,4195
+48436,57280,3536,33046,37931,27263
+48437,42881,38416,2638,62244,4763,77583,11475,43113
+48438,34133
+48439,20589,55507
+48440,1148,78323,9367,57088,74066,32241,989
+48441,47843,23282
+48442,20328,61543,48897,47062
+48443,69369
+48444,50364,34230,34689,52638,33925,4052
+48445,22013,61576,81606
+48446,11813
+48447,51481,33999
+48448,47003,24775
+48449,79850
+48450,32069,30942
+48451,38402
+48452,52464
+48453,17424,54945,18136,64566
+48454,46923,1948,20633,36905
+48455,51119
+48456,30295
+48457,38666,60929,50563
+48458,44196
+48459,33880,10682,74789
+48460,67015,60761,14094,16533
+48461,1514,11923,12058,62351
+48462,58509,47213,12590,19592
+48463,59934
+48464,36603,49083,62846
+48465,32182,68464,26747,76334,45554,11009
+48466,70924
+48467,67977,47655
+48468,72274,32319,41523
+48469,68116,24520
+48470,45681
+48471,53108,44556,78890,11553
+48472,51426
+48473,67709
+48474,37956,7111
+48475,27459
+48476,61754
+48477,61008
+48478,21212,62672,34629,30672,3508,81256
+48479,11320
+48480,35289,3607,63283
+48481,33995
+48482,10003,23836,77723,43818
+48483,42194,53353,37252
+48484,77252,42149,9936
+48485,72021,12918,56314,24337,62726
+48486,1803
+48487,43520
+48488,51419
+48489,20235,32628
+48490,53356
+48491,2943
+48492,23209,40987
+48493,78541,9142,1844
+48494,58249,47150,14058
+48495,65876,22307
+48496,22535,62323
+48497,69823
+48498,44402
+48499,53611
+48500,17418,7563,10520
+48501,33709,66595,22450,71700,8655,21480
+48502,15624,1044,80636
+48503,3721,80822
+48504,6228
+48505,66902,10640,16125
+48506,15136,62861,38886,33167
+48507,10533,22368
+48508,26517,37633,63701
+48509,16887,8996
+48510,69867
+48511,54760
+48512,80440
+48513,7352,63711
+48514,45565,42644,21249
+48515,26995,13136
+48516,71588
+48517,47744,49328,40491
+48518,61457,70819,61719,25742,10999
+48519,32951,78174
+48520,64833
+48521,66474,43670,72649,10982
+48522,68045,10299,17576
+48523,30552,60565
+48524,21718,32830
+48525,44256,57012,80855,315
+48526,51550,41204
+48527,13146
+48528,31722
+48529,6554,78861,40474,55755
+48530,71518,21200,73013,49342,78571
+48531,15707
+48532,79001,63669,30882
+48533,53498,67810
+48534,41178,57034,18950,51503,42846
+48535,66452,62312,75691,40590
+48536,50624,9415,2930,24147
+48537,45402,61250,20301
+48538,70506
+48539,10283,15924
+48540,261,36777
+48541,19897,56932,56854,39521
+48542,25452,2091,62613
+48543,559,54041
+48544,37150,73314
+48545,24499,25217
+48546,41341,41873,28621,62438,50290,31211
+48547,78936,72672
+48548,22009,70202
+48549,26208,45843,53248,38804,32012
+48550,64186,75324,22169
+48551,78706,47404,22594,59914,58526,46666,36172
+48552,2369,20051,76795,63588,55885,17985,43179,63740,45080
+48553,46726
+48554,71770,74416
+48555,34857,35941,9758
+48556,46060,17624,29265,35871
+48557,68457
+48558,56694
+48559,58482,74390,16139,69282
+48560,70478
+48561,61501,20395
+48562,58638
+48563,48080,47590,49587,62240
+48564,20555,56610,68648
+48565,23249,28546,49619
+48566,34734,44777
+48567,59183,54698,64485,38419,31871
+48568,81268
+48569,63664
+48570,63047,42297,5203,65723,32111
+48571,60901,54157,23508,74806,61682
+48572,53318,33273,1515
+48573,66970
+48574,63554
+48575,57168,11428,74156,44684
+48576,76995,35971,27355
+48577,73036,19033,45544
+48578,27274
+48579,359,27087,17161,34191,56536
+48580,68295,54182,69445
+48581,52966,61335,4758
+48582,67192,4609,69020
+48583,65099,40887,28229
+48584,76409,66440
+48585,27745,37310,50303,15717
+48586,50837,62255,70669
+48587,20457,44866,47254,36698
+48588,75297,37463,9881,62082
+48589,44016
+48590,55427,37983,68725
+48591,78040,75953,43263,37786
+48592,71872
+48593,47879,37687,50048,27766
+48594,26624,20120,68334,887,54677
+48595,46759
+48596,56242,1996,53315
+48597,20462,66275,13586,77803,4089
+48598,35432
+48599,80585,15530
+48600,24262
+48601,19214,1608
+48602,34870,23404
+48603,19779,11950,63393
+48604,29113,26317,8608
+48605,31760
+48606,42241,10301,50203
+48607,6146,41306,10079
+48608,27882,49155,72688
+48609,48097
+48610,65381,61364,79349
+48611,43249,56486,9487,23173
+48612,61063,9721,12532,9065
+48613,6447,20657
+48614,81141
+48615,57607
+48616,59071,7899,22341,81990,55825,81118
+48617,56536
+48618,61759,12296
+48619,64283
+48620,26021,37232,19459,60346,2180,54967,22785
+48621,60700,47403
+48622,7490,32596,58781
+48623,32590
+48624,66153
+48625,46436,58270
+48626,73164,79640
+48627,8574,27617
+48628,61037
+48629,57601,56636,49504,11442
+48630,79720
+48631,69985
+48632,5771,25888,18301
+48633,74406,40630,73350,81713
+48634,21841
+48635,46697
+48636,29792
+48637,76151,16161,2694
+48638,21960,5995
+48639,26739
+48640,7154
+48641,81051,57712,20765
+48642,5062,64157,2953,46556
+48643,50904,17732
+48644,82055,48300
+48645,79061,33531
+48646,50218,74004,20114,33469,55260,30623,49007,60666
+48647,46370,26961,69623,73563,56704
+48648,19306,64655,78824,64499
+48649,6225
+48650,56004
+48651,74311
+48652,53177
+48653,13554,30246
+48654,8584,33793,69155
+48655,9121,61513
+48656,8042,60576
+48657,79557,29243
+48658,10071
+48659,28254
+48660,40350
+48661,24221,69339,32153,56569
+48662,51252
+48663,57477,36772
+48664,25347
+48665,14744,18138,69774
+48666,81226,22606
+48667,22497,17237
+48668,73724
+48669,30759,61501,21700
+48670,13532
+48671,60475
+48672,76448,30918,24967,55762
+48673,78798,32730
+48674,35273,39206,78214,55747
+48675,31441,71588,26464,16788,957
+48676,18384
+48677,4694,28177,51957,10522
+48678,45799
+48679,48829,65324,37770
+48680,34150
+48681,55999,47083
+48682,64336,24251
+48683,65488
+48684,15309
+48685,27693
+48686,81339,63173
+48687,72813,35805
+48688,31491
+48689,26665,68603,17186
+48690,2571,21237,8015
+48691,6345
+48692,73104,58635,17197,21528
+48693,62225
+48694,19762
+48695,37047,34068
+48696,66852,23060,35291,6583,43917,38647
+48697,79409,16299
+48698,71330
+48699,33279
+48700,60626,65364,37996
+48701,51458,32490,52766,35545
+48702,62490
+48703,59519
+48704,28760,596,63240
+48705,13089,1052
+48706,47503
+48707,50156
+48708,62538,73295
+48709,11644
+48710,5492,70132
+48711,56437
+48712,78646,7918,74193,13941
+48713,6553,81461
+48714,22645
+48715,14851
+48716,18821,57377,61588
+48717,41761,3265,80096,31385,27521,57417,30464
+48718,34117,10409,3969
+48719,3901
+48720,15907
+48721,26688
+48722,16568,42940
+48723,46897
+48724,75032,54484,63552,22420,78552
+48725,69339,53925
+48726,44955,21899,21946,64458
+48727,7385
+48728,38098,40444,52736
+48729,52898,15610,52114
+48730,74260,12986,11677,74899
+48731,5470
+48732,7154,57134,10584
+48733,63265,49744
+48734,74550,79818
+48735,48247,79994
+48736,36081,68778,12958
+48737,38632
+48738,8120
+48739,17347,26480
+48740,62434,52164,20901,18865
+48741,55617
+48742,74303
+48743,32565,34093,31189
+48744,7748,2252
+48745,33119
+48746,17584,70880
+48747,33276,75144,27590
+48748,18216,13516
+48749,39454,73276,41124
+48750,64812
+48751,45774,72855
+48752,52867
+48753,34556,24317,47744
+48754,19042,54762
+48755,46523
+48756,5024,44532,74479,63737
+48757,77037,46610
+48758,70377,30562,5384,10717,63912,48654
+48759,34206,1736
+48760,79161,30757,6547,52572
+48761,1718
+48762,81651,67109
+48763,80791,63378,11588
+48764,35439,67946
+48765,18462,19834
+48766,45975
+48767,19795,60946,37714,610
+48768,53128,18355,69166
+48769,48962,41744
+48770,13766,70235
+48771,22244
+48772,15181,72944,45022
+48773,79148,5450,81834
+48774,64922,80847
+48775,75758,69599,67645,62345
+48776,68695,22349
+48777,67779,61439
+48778,3220,27774
+48779,45793,15823,81688,67625
+48780,70768
+48781,53041
+48782,58671,21876,70801,60350,62376
+48783,61565
+48784,21130,37285
+48785,24071
+48786,20694,10132,16437,34367
+48787,3117,46805
+48788,14021
+48789,20213,60151,3939,76364,51554,81893
+48790,75300,35353
+48791,36269,38527,27839
+48792,5824
+48793,81872
+48794,19729,15447,49187,56634
+48795,57629
+48796,6655,46239,65523,35428,52039,9357
+48797,13928
+48798,62519
+48799,3195
+48800,12965,23290
+48801,81641,52194,16189,18389,32645
+48802,40560,28963,68706
+48803,52295,70793,41055
+48804,56839,81275
+48805,25147
+48806,35598,56234
+48807,68303,63400,11590
+48808,49335,67778,22777
+48809,31066,25413,23734,45209,59924
+48810,75304,29313,41905
+48811,6295
+48812,19079,70616
+48813,178
+48814,33284
+48815,52878
+48816,68064,51352,21589
+48817,55135,50346,29895
+48818,42631
+48819,74780,14139,68894,26750
+48820,30867
+48821,23621,64091
+48822,71605
+48823,232,11230,80181
+48824,76697,48502
+48825,23897,44731
+48826,53397
+48827,31013,20301
+48828,23757
+48829,3140
+48830,28734,68710,38209,79074
+48831,29420,55361
+48832,56537,6535
+48833,2357,67091,4387
+48834,30929,63880,57962
+48835,71092,13111,41813
+48836,3340
+48837,848
+48838,61086,66713,39630
+48839,27424
+48840,11028,74756,67233,55044,58758,64469
+48841,74420
+48842,78387,11130,15536
+48843,22825,15645
+48844,70520
+48845,29604
+48846,53543
+48847,12787
+48848,49780,45932
+48849,4102,34262
+48850,82042,38389,34835,26844,53340
+48851,71164
+48852,5327,47569,76464
+48853,55895,25751,58993,70580,5107
+48854,36800,24059
+48855,31384,70863
+48856,50604
+48857,43956,75502
+48858,8788,26036,378,40880
+48859,59609
+48860,57794,25970,16315
+48861,58142
+48862,76877,50999,21691
+48863,50745,40931,9780
+48864,81921,50646,69033,51933,50785
+48865,5024,22236
+48866,61354
+48867,19820,35537
+48868,16411,55704,22401
+48869,4210,68439,27800,4991,14357
+48870,43143,14245
+48871,76218
+48872,37867
+48873,81936
+48874,20197,80859,57535,10192
+48875,33148
+48876,62886,43378,36169,1819,79585
+48877,18775
+48878,77236
+48879,80637,75914,75927
+48880,30292,72603,44,63897,81495,22100,45294
+48881,44696
+48882,44407,15373,17699,51904
+48883,123,36306
+48884,57885,71692,6812,37760,46685,59482,17089,60145
+48885,78946,63508,52534,22969,36643,14399
+48886,11756,1933
+48887,63267
+48888,79826,12851
+48889,48162
+48890,72595
+48891,40318,47679,65554
+48892,48232
+48893,17167,4325,13376
+48894,66164,68066
+48895,70606
+48896,4170,6320
+48897,9149
+48898,40763
+48899,62872
+48900,67827
+48901,46876,52221
+48902,64837
+48903,56260,79361,59021,76476
+48904,56746,14440,47723,49195,35183
+48905,66805,5470
+48906,79238,18360,82081
+48907,74626,58917,74403,40708,48731
+48908,25256,57642
+48909,17726,53871,3057
+48910,29693
+48911,67310,79923
+48912,7500
+48913,23240,25453,23845
+48914,33829,70131,16053
+48915,57149,261
+48916,4845,81795
+48917,11013,43538,80834,14257
+48918,17018
+48919,43416
+48920,63761,12713
+48921,53279,38731,63557
+48922,78900,19182
+48923,25100
+48924,39931,46180
+48925,81411,27221,43589,69864,54514,16476
+48926,27968
+48927,4719
+48928,17491,11644,60225,12521
+48929,39718,77331
+48930,44256
+48931,65243
+48932,52817,35563
+48933,52858
+48934,50257
+48935,25639,27420
+48936,67694
+48937,17962,60387,71502,38858
+48938,17371,69491,71124
+48939,38821
+48940,32447,49633,70183
+48941,12037,6180,50588
+48942,31415,74646,3269,47006,67262,27866
+48943,68048
+48944,72621
+48945,35536,53602
+48946,65226
+48947,25791,58302,68907
+48948,68234,32705,3572,30507,36687
+48949,1668
+48950,22125,5564
+48951,81507,36992
+48952,28865,20455
+48953,25466,81430,18181
+48954,61684,35410
+48955,63450,8025
+48956,13850
+48957,27020,75499,69022,38180
+48958,5679,10545,65852
+48959,10952,18096,27322
+48960,38362
+48961,10309,17275,33777,2572
+48962,73218
+48963,70053
+48964,47604,19263
+48965,74899
+48966,1841,14776,11401
+48967,20386
+48968,25806,62970
+48969,45098
+48970,32129
+48971,62461
+48972,50551,58910,36564,70087,43369,56838
+48973,43278,67911,11490
+48974,57892
+48975,27748,60735
+48976,61515
+48977,53682,60317,27618
+48978,54681
+48979,59526
+48980,61958
+48981,60461
+48982,42375,27264
+48983,7798,29567,69378,36366,20891
+48984,79829,18187
+48985,42963,19293
+48986,68518
+48987,22612
+48988,37638,72994,48230,55609
+48989,69036,45191,21547
+48990,77715,12830,5184,54178
+48991,79472,71433
+48992,15896,28
+48993,29084
+48994,55502,2690,72038,55808
+48995,54844,57363
+48996,24662,33294,2777,76563
+48997,74008,2128,11327,54563
+48998,27451,37320
+48999,41551,9556,40015
+49000,24859,79256,10890
+49001,9466,62640
+49002,66253,75460
+49003,28939,27127,68593
+49004,15654,53282
+49005,13155
+49006,76289,60475
+49007,42974,19556,24400
+49008,71725,46276,49995,44710,62655
+49009,9239,447,3791
+49010,19234,3523,81746
+49011,37924,52395
+49012,10003,64678
+49013,22325
+49014,55826,11273
+49015,6012
+49016,29663
+49017,17987,45631
+49018,22253,60293,1894
+49019,17327,3937,20963
+49020,72768,9173,58160,37568
+49021,6330,26012
+49022,38484
+49023,577,33683,37138,42679,2411,29567,2520,52828
+49024,77386,16205
+49025,10409
+49026,40886,73502,17146
+49027,48960,14808,70517,69887,70174
+49028,54946,59979,30111
+49029,37123
+49030,43164
+49031,73969
+49032,29760,57128
+49033,47334
+49034,44996,43097
+49035,66678,66380,55788,4548
+49036,79143,21257
+49037,50849,11994,40391
+49038,60884
+49039,9024
+49040,46141
+49041,75901
+49042,59439,12549,53155,29488,18775
+49043,66474,19001
+49044,44673,28843
+49045,55899,3927
+49046,78383
+49047,21690,67908,61473,18767
+49048,4381
+49049,62652,78285,48830,49706
+49050,61265,30217
+49051,21124,55238
+49052,32958
+49053,5179,15385,37436,76985,13519
+49054,31630,5329,60647,47038
+49055,31175,48461
+49056,30773
+49057,72577,24816,66526
+49058,43070,6383,32156,20581,5965,5524
+49059,74490
+49060,52371
+49061,34309,12731,33115,40646,40463
+49062,75955,8205,55816
+49063,18798,16971,53975
+49064,6088,73508,81926
+49065,43338,45669,70090,56748,20736,65855
+49066,62508,7356,44865
+49067,78386
+49068,53478
+49069,34837
+49070,2487,45157,45732,40648
+49071,77179,69767
+49072,17710
+49073,81440
+49074,53093
+49075,67310
+49076,12591,77861
+49077,46641
+49078,29038,29746
+49079,1740
+49080,26496,54234,24656
+49081,45002
+49082,40490,33309,16208
+49083,54777,15950
+49084,59969,52251,69722,36996
+49085,77161,38054,64095
+49086,11431,46082,172,17952,57341
+49087,73101,28150,54312
+49088,3964,74369
+49089,52129,31370,73156
+49090,70896
+49091,15221
+49092,18017,29790,82146
+49093,70195,48539
+49094,39763,35250,23442,45462,28508
+49095,76748
+49096,61318,79982
+49097,24963,29516
+49098,33090,37658,60870
+49099,9262,5273,52844,76415,62987,71784
+49100,40605,72823
+49101,29971,75829
+49102,43622,32807,16480,49278,72585,22558
+49103,26294,25037
+49104,16995,10735,46325,75964
+49105,42785,65026
+49106,5636,50477,17624
+49107,69090,46445,68637,48158
+49108,79835
+49109,55379
+49110,9564,38266
+49111,67291
+49112,78543,40
+49113,31864
+49114,13988,13895,32984
+49115,62749
+49116,65026
+49117,23408,49319
+49118,51862,50268
+49119,35521,49376,34015
+49120,52359,19399
+49121,78631,4049
+49122,69051
+49123,17064,8233,4288
+49124,29746
+49125,79506
+49126,20421
+49127,80909,66724
+49128,30429,75000
+49129,68213
+49130,19187,55938,23017,10248
+49131,45064
+49132,10902,26205
+49133,81373,3575,73369,55791
+49134,47231
+49135,69165,58081,24798
+49136,28082,59491,36438
+49137,57708
+49138,62247
+49139,50738
+49140,60481
+49141,17444,29413,68401
+49142,52978
+49143,65596,37802
+49144,54859
+49145,27924,76130,80576
+49146,52960
+49147,18036,27981,40015
+49148,22352,40709,40905,8214,54473,25359
+49149,14335
+49150,16113
+49151,68795,17562,37901,73661
+49152,11472,14685,2160,79606,75423,37548
+49153,36209
+49154,28315,37019,16425
+49155,70266,74128,50862,48977
+49156,51931,39850,65706
+49157,44989
+49158,7741,78893,24848,43372,5108
+49159,42517
+49160,63454,17420,60359
+49161,29775,15654,37252
+49162,56480
+49163,19621
+49164,18083
+49165,42383
+49166,39561,20829,66443,62517
+49167,29873
+49168,4261
+49169,8223,67926,9985
+49170,276,80552,18048,71333,38963
+49171,42440,64899,15305
+49172,3498
+49173,53090
+49174,14471
+49175,1907,14137,41171
+49176,22017,66077,11501,66715,7113,8631,47777
+49177,64567,56900,64477
+49178,66044
+49179,48742,20181
+49180,28586
+49181,43587,24299,72045,56527,76349,49252
+49182,31887,2704
+49183,46439,49618,23668
+49184,78556,72077,48785,51362,58123
+49185,6030,14383,32851,8453,15097,25489,39455
+49186,18344,9262,76761,65562
+49187,29281
+49188,34982,60350,45245
+49189,19044,40336,63281,66278,20683,12111,61222,26710
+49190,43824
+49191,2981,73105
+49192,3506
+49193,27590,33326,45374,44944
+49194,59495,26354,9133,1192
+49195,46002,34484
+49196,3037,63549,78334,77646,81808,64794
+49197,36314,21607,69488,31959
+49198,25574
+49199,37499,45176
+49200,81557,12721
+49201,3435,32591,23073,34082
+49202,16931,6244,48600
+49203,31772,53786
+49204,56405,43270
+49205,30619,47022
+49206,10594
+49207,78651,19795,68847
+49208,41287,38800
+49209,70188,67452
+49210,72355,31506
+49211,50765
+49212,57573
+49213,24845
+49214,5174,19000,23970,65849,33643
+49215,441,56603,50704,278,21372
+49216,77192,54070,81798
+49217,51686
+49218,11397
+49219,23544,448
+49220,7199,51709
+49221,51857,29238,78801
+49222,60412,16800,60080
+49223,69766
+49224,64864,54581
+49225,75471,80819,29745,31365,23117,40449,40608
+49226,46641
+49227,77398,74309
+49228,40272,9532
+49229,74885,5992,40356,38583
+49230,61538
+49231,1791,38402,30454,31299
+49232,22063,17604,58931,67632,64906,74152,74326
+49233,10187,533,48220,3887
+49234,32868,34217
+49235,6717
+49236,12131
+49237,77473,17046,4347,3165
+49238,13928,64749,46659,28899
+49239,67508,34557,35462,63268
+49240,42141
+49241,62385,29143,38978,78966,66232
+49242,18054,73333,67277,17721,11633,48407,60152
+49243,35216,45272,41334
+49244,5665
+49245,22683,68386
+49246,19612,77229,75489,13103
+49247,24585,51241,12283
+49248,18705
+49249,66429,22201,81951,68688
+49250,23951,5324
+49251,4636
+49252,9734,80822
+49253,80412,53692,70763,71427,63233
+49254,40362
+49255,25314
+49256,39230,50863,60941
+49257,73572,7953,7804,61091
+49258,21943,10236,56484,49683,41798
+49259,51806,72782,30830
+49260,18297
+49261,17499,71911,1497,11830
+49262,32498,36595,70494,67645
+49263,8448,24156
+49264,60930
+49265,39924,77226,47005
+49266,67397
+49267,41790,6420,65852,44553,21722,8644,21679
+49268,71141
+49269,16617
+49270,23968,21454,78818
+49271,28415,68264
+49272,54954,16600
+49273,13784
+49274,53192,3706,54097
+49275,7228,34283,16545
+49276,75101
+49277,54990,5768
+49278,33045
+49279,42316,17270
+49280,42364,66536
+49281,16492
+49282,10966,69010
+49283,7961,73638
+49284,33203
+49285,11584,71248
+49286,7827,5492
+49287,16633,63720,35673
+49288,21168,17507,67082,15718,81321,29634
+49289,75826
+49290,43619,44328
+49291,71660,12178
+49292,63768
+49293,14416,21618,69989,41440
+49294,74719,32658,42874,50389,59669
+49295,66061
+49296,77357
+49297,20218
+49298,60150,44239,70068
+49299,32850,23664,51083
+49300,9414,1698
+49301,1646,20081,64339
+49302,76060,1991
+49303,1827,28694,7117,39062,38464,43032
+49304,25476
+49305,45263,67443,54901
+49306,41992
+49307,43882,34172
+49308,6402,79529
+49309,60988,32760,81209,20773
+49310,79932,44670
+49311,10769,27200
+49312,19013,43809
+49313,64024,59859
+49314,21606,2505
+49315,75420
+49316,31165,54946,2684
+49317,50652,12150,31023
+49318,72256,30587
+49319,69583
+49320,28698,23030,65349,30229
+49321,57980
+49322,42165,820,33315
+49323,1718
+49324,43507,9138,77272,37849,33283
+49325,54699,25433,52775
+49326,81723
+49327,60455,37380,73199,51373
+49328,57733
+49329,32985,76408
+49330,74620,18840
+49331,1603,42885
+49332,12589,73824,75019,21668,25535,62145,39512
+49333,1997,759,28439,59090,24605,59163
+49334,39553,7193
+49335,5272
+49336,78859,70193,59200
+49337,53761,28568,7669
+49338,71949
+49339,33001,36710,44927,21113
+49340,22768,81557
+49341,18307,67996,68090
+49342,22460
+49343,52825,55834
+49344,78465,57875,27050,54236
+49345,81807,79829,35970,7706
+49346,36410,6216,14108
+49347,51024
+49348,59279
+49349,78396
+49350,72049,53237,81407,5649,47469,2414
+49351,53413,65241
+49352,30485,42243,9090
+49353,73730,68156
+49354,22527,29939
+49355,24851,28928,15787
+49356,52573,49543,49310,22701,45825
+49357,4644,5581,21222,30056,17439,67214
+49358,62817
+49359,7154
+49360,4068,77139
+49361,68605,15557,72270
+49362,51354
+49363,62901,63033
+49364,3340
+49365,49209,37364,52992
+49366,55296,79035,67754,60143,12284
+49367,55263,38952,35213
+49368,59452,34402,41725,42850
+49369,42230
+49370,66874,78146,34770
+49371,1740
+49372,68177,1296,66500,6468,66368,67956
+49373,17810,40675
+49374,3811,20535
+49375,30380
+49376,17388,131,41095
+49377,80894,70948
+49378,3120,1346
+49379,58982,39992
+49380,30683,73291
+49381,70737,62410,27674,58089
+49382,3451,50919,6323,1405
+49383,7848
+49384,73650
+49385,3061,73096,1050,23656
+49386,48084,2416
+49387,17346,36382,34812,71956,65355,31691,60623,36791
+49388,33395,4075,15614
+49389,19619,54051
+49390,48822
+49391,43326
+49392,80331
+49393,65778
+49394,71619,35314
+49395,5105,65093,22400,7485,56695
+49396,67016,70598
+49397,55452,43607
+49398,65786
+49399,7210
+49400,11154,12510,78276
+49401,6672
+49402,2651
+49403,69340
+49404,49082,69350,12154,16684
+49405,32560,58211
+49406,80119,11769,11237,68198,40874
+49407,24668,72831,53686,69900,78139,73338
+49408,64612,10562
+49409,6223
+49410,57044,28144
+49411,39057
+49412,28988,30605,32105
+49413,25623,58120,7297,63278,19191,74845
+49414,80035,4363
+49415,35222,37487,63613,33070
+49416,59766,60306,4994,62379
+49417,12214,9278,21942,73615
+49418,73716,11003,54290,62016
+49419,44882,64489
+49420,1843
+49421,57648,64295,18107
+49422,19029,67086
+49423,21361
+49424,50347
+49425,60782,70048,21768,67159
+49426,35256,12699,43549,44594,27318
+49427,73613
+49428,44803,50832,65984,57536,4479
+49429,3550
+49430,59245,73006,31477,71790
+49431,33297
+49432,13338,69353,15661
+49433,2981,1222,59193
+49434,69922
+49435,22065
+49436,60557,81704,37614,70158,5417
+49437,51223,78544
+49438,2068,20343,45741
+49439,79797,71013
+49440,81369,75516
+49441,37829,41376
+49442,29409,34187,14757,53490,39330
+49443,16878,72274
+49444,29483,43863
+49445,73480,81576,21131,61901,73533,46231
+49446,43386,39053
+49447,8599
+49448,8686,14407,21788
+49449,48568,73850
+49450,35346
+49451,43795,4502
+49452,6423,40248,51539
+49453,55018,66323,68084
+49454,39391,24985,25878
+49455,44563,64102,14927
+49456,62002,10377
+49457,33721,37061,42103,56827
+49458,74175
+49459,41561,1907
+49460,28498,49793,65421,81939,16351
+49461,39164
+49462,66996,37194,46689,47706,1227
+49463,77551,56326,14473,51102
+49464,32852,23829,2511,31424
+49465,33836,71100
+49466,5885,56904,60643
+49467,15671,67264,32223
+49468,42395,22503
+49469,20307,16673,69983
+49470,6272
+49471,29133
+49472,2402
+49473,58996,44053,2887,10191,78561,68070
+49474,8239,52364,31223,41845,38646
+49475,14140
+49476,31028,78363,48921
+49477,78917,77539,77610
+49478,14813,59339
+49479,82014,11766,1124,28632
+49480,28979,8689
+49481,47256,67604,45353,51975,41665,71649,27475,65795
+49482,29550
+49483,5685
+49484,65162,3344,75344
+49485,29095,51711
+49486,36752,59555,42966,8313
+49487,53285,64183,7027,32511
+49488,31884,10281,61240,75791
+49489,34647,29809,33744,1526
+49490,37640,2995
+49491,12045,55954
+49492,10512
+49493,75469
+49494,38703,25186
+49495,36482,33027
+49496,34194
+49497,44251,48503,71138
+49498,58928,65469,51626
+49499,66973
+49500,67469,19155
+49501,21918,29797,48916,34185
+49502,6997
+49503,81811,28184,1418,68117
+49504,65098
+49505,67902,15948
+49506,29106,15253
+49507,34942
+49508,12037,28116,59279
+49509,71403
+49510,82064,22079,22834,70329
+49511,9004,19711
+49512,48050,75220
+49513,47252,40151,6267,68074,19408,9380
+49514,3876
+49515,33508,67781,9445,71110,40779
+49516,38409
+49517,43879,25920,68126,56352
+49518,41573,41071,61,22955
+49519,76722,63618
+49520,37404
+49521,22268,82150
+49522,7035,30996,40692,24545
+49523,17030,79408
+49524,59212,16763,28734,67083,30064,32970
+49525,72,12097
+49526,15737,1686
+49527,21735,30957
+49528,48817,79580
+49529,71543
+49530,80375,10071
+49531,44081
+49532,63924
+49533,60017,76858
+49534,57275,73830,11113,65040,54291
+49535,69087,4345
+49536,21218,49002
+49537,70467,51811
+49538,63603,24868,23107,81109
+49539,52507
+49540,60566,59741,60029
+49541,2381,31088
+49542,12335
+49543,46400,3870,74078,14524
+49544,16757,52958
+49545,28791,29002,60905,66887
+49546,72656
+49547,459,79483,51616,57650,35062,6959
+49548,63427
+49549,27139,48456
+49550,79428
+49551,8711,27880
+49552,64453,61049,77216
+49553,58164
+49554,56633,71596,80162,55915,2104,47215,28290
+49555,13353,1673
+49556,43409,80684
+49557,6599,53515,24508,19236,76630,25487,14266,58547
+49558,27019
+49559,53586,13988,24551,18582,11056
+49560,24233,49598
+49561,64989
+49562,21356,900,69333,70818
+49563,36040
+49564,1422,68194
+49565,71289,63619
+49566,980
+49567,58820
+49568,77252
+49569,2734,54916,46931
+49570,66044
+49571,39641
+49572,77976,39640,64936,63045,18510
+49573,25065
+49574,56699
+49575,57190,56596
+49576,80964,8553,58422,36328
+49577,67143,23285,8441,23999
+49578,13940
+49579,59842,69114,31643
+49580,74800,60693,618
+49581,48338
+49582,73368,10134
+49583,71766,49377
+49584,10639
+49585,62657
+49586,68757,56312,74078
+49587,57383
+49588,10977
+49589,74847
+49590,10639
+49591,5056
+49592,73361
+49593,47067
+49594,71633,4461,71089,31291,37207,4038
+49595,29113,32264
+49596,67202,54910,26468,56990
+49597,38495
+49598,1267
+49599,62366
+49600,53829,16643,5816
+49601,57575,80196,72159,78483,30628
+49602,36836,76070
+49603,48600
+49604,38294
+49605,60752
+49606,2219
+49607,900,37315,39997
+49608,2915
+49609,27295
+49610,38706
+49611,4467
+49612,49533
+49613,52175,31472,63498,26275
+49614,52377,36620,64876,75477,55294,35815,63320,21029,54556
+49615,3398,47077,29769
+49616,21897,27621,43955
+49617,19808
+49618,79112
+49619,73337,75427
+49620,67632,41277
+49621,17919,26283
+49622,17573,20302
+49623,35256,56896,67046,65188
+49624,14898,25234,22073
+49625,64311,59658,43441,1345,56121
+49626,46477,63115,72124,56376
+49627,9430
+49628,49833,4727
+49629,64812,18257,39093
+49630,34407,19043
+49631,24004,7328
+49632,57100
+49633,38276,45666,75366
+49634,77951
+49635,49248,52961,31822,40676
+49636,21459
+49637,64338,60268,31345,63951
+49638,22432,26906
+49639,13963
+49640,29570
+49641,75234,68171
+49642,55886
+49643,65712,73151
+49644,55483,55901,14738
+49645,27614,2575
+49646,16958,33127,37924
+49647,33498,11602,53516
+49648,2445,20421
+49649,59712,52280,32019
+49650,278
+49651,65185,76472,47168
+49652,80418,69607,29378
+49653,12036,58000,75859,48712
+49654,49213
+49655,34663
+49656,61129,66893,19042,74955
+49657,16926
+49658,27647,45379
+49659,39403
+49660,51175
+49661,39423,52136
+49662,6880,10648
+49663,55358,65231
+49664,81372,48169
+49665,53902,28258,18626,39185,4614
+49666,10966,44813,18559,82144
+49667,55333
+49668,3197,20440,55972,16397,74459
+49669,64670,48512
+49670,8912
+49671,61002,17771
+49672,69060,2992
+49673,17130,12450,63880
+49674,58994,51192,24651,25431,55135,10292
+49675,6286,26857,31515,36100
+49676,69148,54498
+49677,68440
+49678,74133,17368
+49679,72444,37296,75557,2085,50217
+49680,8218,32586
+49681,13847,73178
+49682,61710,52663
+49683,42830,79635,41733
+49684,53307,5552
+49685,66715,44392,25890
+49686,19359,134
+49687,11190
+49688,24445,69947,71431
+49689,44913,8191,18019,17181
+49690,28155,62120,23584,11099
+49691,62333,8190,75845
+49692,55949,11434,48365
+49693,73888
+49694,61891,75664
+49695,7077,37380
+49696,70081,8317
+49697,65171
+49698,70848
+49699,70509,40562,53026,11173
+49700,35005,25501,6521,26672,60026
+49701,71402
+49702,63923
+49703,81616,24714
+49704,6475,23855
+49705,35129,3497,33916,79696
+49706,20556,27195
+49707,21472
+49708,5024
+49709,75820,23183,12607
+49710,14589,75120,24375
+49711,66602
+49712,75519,27261,79287,59073
+49713,8874
+49714,22055,46281,46790
+49715,43376
+49716,26181,75154
+49717,2351
+49718,26230,75765,17525,11655
+49719,41445,20305,37912,26715
+49720,30331,29180
+49721,69528,38748,18223,26837
+49722,18638,71209,36992
+49723,75079,63897
+49724,41140
+49725,7298
+49726,40430,34491,5492,11449
+49727,56192,63926
+49728,44179,40576
+49729,52023
+49730,3482,69302
+49731,13068
+49732,63706
+49733,64036
+49734,29538
+49735,68561,42149,69180,8407,21736
+49736,36849,65987,75049,821
+49737,3401,72430,67228
+49738,49030
+49739,55179
+49740,53376,22918,29322,76026
+49741,26588,76755
+49742,16314,53742,73334
+49743,64655,60569
+49744,3259,21472,43916,71491
+49745,42487,52358,34054,67042,74569
+49746,32215,17123,41122,30133,77425
+49747,69804
+49748,38005
+49749,4008,15491
+49750,80255,35335,39516,7141
+49751,24382,71783,28703
+49752,74889,18735
+49753,57830
+49754,53362
+49755,80132
+49756,56806,106
+49757,51604,40583
+49758,38226
+49759,34623,35415,67907
+49760,1466,16466
+49761,20204
+49762,17290
+49763,3781,39522,63810,10295
+49764,29180
+49765,37529,46578,25906,30227,31207
+49766,15870,51529
+49767,53756,17949
+49768,19839,71896,25800
+49769,62415,49510,62568,31922,46570
+49770,64137,77121,25908,25592
+49771,69633,9504
+49772,80821,10591
+49773,49359
+49774,9510,24166,821
+49775,23118,57297,72282,26264,45886,65200
+49776,61575,71454
+49777,31539
+49778,15664
+49779,28332,30194
+49780,16245,43654
+49781,66536,15794,76928
+49782,17288
+49783,42974,12258,36048,37140,43392
+49784,32982
+49785,55241
+49786,49031,32955
+49787,23882
+49788,26349,22985,33127,75712,77654,27161,58282
+49789,80772,19299
+49790,10299
+49791,43919,79481,24585
+49792,59869
+49793,57069,3663,26358,23687,35351
+49794,62537
+49795,58593,73277,60816,53249
+49796,18228,48226
+49797,25971,19722,51276,76853
+49798,17526
+49799,62238,33048,56005
+49800,48169,24907
+49801,3070,2089,36706,78113
+49802,61191
+49803,75070
+49804,2117,52489,77851
+49805,75222,62970,37620
+49806,81665,70922,22303
+49807,3915,73130,74388
+49808,1867,50396,76703,2157,28991,9647
+49809,32511,26455
+49810,35591
+49811,48176,13505
+49812,74277,38925,10949,35617
+49813,31153,73437,11636,72608
+49814,64255
+49815,62312,11261
+49816,32197,55772,58284
+49817,39701,18817,74861,6503
+49818,49716,42514,17540
+49819,44139,59506,75647
+49820,37123,46280
+49821,16118
+49822,72336,68704,45257,59778
+49823,71262
+49824,64535
+49825,40281,5291,46790
+49826,8258
+49827,4842,77427,21951,31940
+49828,30985,10678,15767,39866,25095,9776
+49829,70513
+49830,27849,66756,65064,3983,26155
+49831,65989,15080
+49832,13657,15336,38891,62171
+49833,16174,28583,73967,42541
+49834,29663,4565
+49835,54176,42999,66730,42142,44376
+49836,73338
+49837,12789
+49838,21751,64121
+49839,8699,28715
+49840,78216,71881,21065,61976,79004
+49841,6756,40662,18606,78256
+49842,53520,73513,60359
+49843,59575,49654,45484
+49844,693,80818,62186
+49845,63465,82026
+49846,18615,1783,17131
+49847,67785
+49848,53880
+49849,57434
+49850,75715
+49851,43030
+49852,1082,81594,6126,16824,58528
+49853,56244,50677,5710,57160
+49854,52685
+49855,77378,15309
+49856,79502,8443
+49857,70877
+49858,35709,38291
+49859,60215
+49860,81183,1690
+49861,35271,25337,12990
+49862,55563,70185,32473,39832
+49863,45091,11734
+49864,46845
+49865,56322,22429,38332,59023,29519,28330,32876
+49866,68777,76204
+49867,24181
+49868,62427,1429,3731,14577,17843
+49869,61858,74796
+49870,840,24738,59096
+49871,50183
+49872,48649
+49873,68092,70183,43749,53742,29088
+49874,21353
+49875,68100,65168
+49876,52300
+49877,36077,37084
+49878,13432,1074,46163
+49879,22242,65324,68061
+49880,11028,55446,29538,70923
+49881,55999,24406,34655
+49882,12133,14251
+49883,2927,62551,29140
+49884,13868,82008,1493,27972,64824
+49885,57286,80897
+49886,55073,43049
+49887,43846,73447,52754
+49888,59286,72193,12127,46839,50062
+49889,77592,15527
+49890,27261,71019,13400,2023,78461,29885
+49891,51434,16394,3623
+49892,20321,20525,30137
+49893,35598
+49894,35247,38021
+49895,31049,13518,65436,62710
+49896,29373,36524,57990
+49897,64066,21339,66213
+49898,60629
+49899,36370,78246
+49900,69480,69939,26592
+49901,30402,46098,29233,31549
+49902,10684,26790,31920,67950,3019
+49903,64988
+49904,77890,21122,57265,35898,23255,18061
+49905,51001
+49906,40185,59507,81212,20283
+49907,19339,41898,78693,81879
+49908,66104,44986,1326,20868
+49909,34041,43003,46608
+49910,12204,29047,40433
+49911,18076,28941
+49912,80719
+49913,57830,23288
+49914,1070,28214
+49915,26436
+49916,54488
+49917,76149,35102,10128
+49918,80441
+49919,49683,48603,69681,26272,25596,79113
+49920,73202
+49921,7580
+49922,11115
+49923,47718,19195,27245
+49924,1213,60126
+49925,8498,54928,9687
+49926,17414,39323
+49927,7200,51590,74232
+49928,25817,60055
+49929,46967,61991,77855,5095,11177,55390,17686
+49930,49606,28811,428,23347
+49931,42515
+49932,49037
+49933,23761,47887,37989
+49934,4709
+49935,15131,42885,41054
+49936,75068,49609
+49937,49495
+49938,51463
+49939,4724
+49940,9524,7216
+49941,17468
+49942,33060,30848,58382
+49943,33418
+49944,41332
+49945,6401,20813,42328,22264
+49946,26935
+49947,35100,33932,47090
+49948,55958,34614,25014,50831
+49949,28701,63797
+49950,70354
+49951,29133,49969,1367,4045,70048
+49952,311,32597,52324,6616,38600,20946
+49953,28286
+49954,52608,53072,11777,14974,28850,4240,76964
+49955,263,6538
+49956,38550,53792,9931,38725
+49957,1462,7787,44913,37282,6448
+49958,53020,7947,20691,59044
+49959,53293,64253,40941,57187,27743
+49960,63579,72827,33121,46861,56360
+49961,10899
+49962,70397,35423,11334,67618
+49963,2557
+49964,42265,3101
+49965,756
+49966,80259,13071,3015
+49967,63226
+49968,103,66723,27707,22896
+49969,51320,67911
+49970,4917,1581,45320,60653
+49971,80132
+49972,80603,76496,6101,4169
+49973,59713,7209
+49974,40814,14321
+49975,35604,70118,10015,7944,65910
+49976,70565,37219,46205,30772,16913
+49977,11766,57248,17489
+49978,10545,32866,35398
+49979,24619
+49980,29789,55146,33680,1318,29323,68140,47833
+49981,61052
+49982,41024,4662
+49983,17417
+49984,77707,48309
+49985,43038,10539
+49986,59724
+49987,5297,35383
+49988,25155
+49989,74893,14852
+49990,78403
+49991,34329,71438,70344
+49992,67313,77511
+49993,64365,16887,16618
+49994,62230,15764,24640,2167
+49995,81670,26219,53643
+49996,8274
+49997,32590,31808,23741,79266
+49998,25905
+49999,15869,35008,13164,22748,248,25277,75121,28749,54406
+50000,23761
+50001,3532
+50002,61140,62461,78942,33326
+50003,40151
+50004,38653
+50005,57340,7774,62323,5269
+50006,35044,44649
+50007,51474,31240,53280
+50008,33753,43003,18346,4558
+50009,43425,59877,43526
+50010,69397,64487
+50011,61696,72986,62038
+50012,59255
+50013,49435,1748
+50014,8281,3127
+50015,68685
+50016,71206,68726
+50017,62804,36489
+50018,7002,23924,53694
+50019,8685,6775
+50020,5328
+50021,41542
+50022,11472,68786,295,5297
+50023,48049,20769
+50024,72185
+50025,39885
+50026,60616,68974,74134
+50027,29855,57128,65434,70097,31619
+50028,40245,68686,46457,69971
+50029,2031,32090,59716
+50030,2011,38003,33012
+50031,54076,14960,9446
+50032,5311,4630
+50033,68924,21525,44449,33388,43053
+50034,1599,75293
+50035,79727,48951,69939
+50036,38275,4036,71928
+50037,70697,80212
+50038,65008,61708,30819,80605,47581
+50039,37684,33595
+50040,15922
+50041,64751,64284,25886,77286,6717,50638,25592,44481
+50042,57466
+50043,7174,71529
+50044,27482
+50045,54212
+50046,43901,44724,5941,27732
+50047,42807,71872,19902
+50048,65879
+50049,62010
+50050,10825,48878,12843,6925
+50051,74122,74074,4995
+50052,73861,59318,50289
+50053,46349,78994,49843,26104
+50054,54753
+50055,62342
+50056,74248,584,14428
+50057,40638,79816
+50058,9138,28241,79361,64001,36467,2510
+50059,1669
+50060,29695,55077
+50061,28785,81252,72950,73081,63368,79395
+50062,4756
+50063,79519,35560
+50064,9151,52102,64608,42671,47020
+50065,2654,59078
+50066,49244
+50067,63275,1405
+50068,41067,60750,64138,29778,68955
+50069,65716
+50070,31140
+50071,67538
+50072,64908,22786,49307,44304,61638,53481,27984,22542
+50073,78192,68476
+50074,43922
+50075,33483,26586,64900,52571
+50076,68947
+50077,32402
+50078,59252,5575
+50079,36395,36256,18850
+50080,7263
+50081,29102,61250,77976
+50082,29093,6009,80702
+50083,7855,66486
+50084,37777,2085
+50085,43470,19242
+50086,33507,24249
+50087,14761
+50088,1046,2402
+50089,43494,68442,70381
+50090,81346
+50091,72831,56165,58294
+50092,31500
+50093,5856
+50094,47763,19850,44378
+50095,67208
+50096,47815,23661
+50097,48567,47144,12495
+50098,21361,49095
+50099,41534,24425
+50100,45402,72899,63438,22985,28561,18292
+50101,80123,54613
+50102,9204,24053
+50103,30062
+50104,56669
+50105,6753,8195
+50106,80999,26269,24028,49068
+50107,46526
+50108,72950
+50109,1862,9349,50417,23926
+50110,77746,976,16276,60408,37237
+50111,30277,45086
+50112,78706,36244
+50113,45000
+50114,30753,57184
+50115,47507
+50116,21062,43207,6925
+50117,17348,24711,70495,49937
+50118,2700,25224,36277
+50119,17759,79756
+50120,47658
+50121,19723,30894,30666
+50122,46892,79602
+50123,70596,57831,12777
+50124,45634,58870,41196
+50125,28072,34582,75667,29895,7606,76967
+50126,15305
+50127,76770,19728
+50128,81997,42248,60187
+50129,12462
+50130,76796,14870,47095,63701,27442,36406
+50131,45793,9635
+50132,63001
+50133,29548,31101,56192
+50134,65314,55202,51862
+50135,65604,5762
+50136,54920
+50137,72219
+50138,37758,48423,16836,45504,72621,71569,37845
+50139,15687,35194,38174
+50140,17667,12186,10185
+50141,19738,20876
+50142,71892
+50143,59216,22009
+50144,39073,77684,66649,9021
+50145,29717
+50146,29398
+50147,62254,28239,24177,55801,28083
+50148,21280,72506,71294,74531,74999
+50149,48962
+50150,38297,4295
+50151,1403
+50152,65333
+50153,22274,40640
+50154,40101
+50155,3948
+50156,75839
+50157,51676,1288,59665,47639
+50158,79975,68353,34814
+50159,69798,62502,78064
+50160,116,63399
+50161,2334,21718,70512,21263,13539,44091,7973
+50162,10969
+50163,52920,68584,56068,67166,16283
+50164,66745,51296,24514
+50165,72416,62477,14335,38311
+50166,382,74469,23345
+50167,13345,37309,75592,72981
+50168,68235,42960
+50169,61494,65415,28997,70863,34642
+50170,29064
+50171,62282
+50172,44941
+50173,52570,4588
+50174,54892,17273
+50175,76477,62168,18675,54573,3213
+50176,36946
+50177,47520,31089,42982,56178,66033,53001
+50178,3782
+50179,61420,40640,67111,77455
+50180,28438,16191
+50181,7482,54534
+50182,19800
+50183,42012,48091
+50184,80346,24736,38232,42196,63984
+50185,1310,18951
+50186,53014,74992,55529,56989
+50187,77320
+50188,9902,82095
+50189,47356
+50190,68198,30884,65949
+50191,23250,43624
+50192,63537,51907,60193,40064
+50193,3631
+50194,68174,66777,24064,50828,62874,39989,26750,63429
+50195,15028,46133
+50196,21700,38167,40442
+50197,27945,70575,13946,18104,51410
+50198,55886
+50199,77049,67734,65178
+50200,15854,36510,39815,81040,49120
+50201,50734,23460
+50202,30392,21162
+50203,73070
+50204,70934
+50205,5553
+50206,75187,75940
+50207,76471,1539
+50208,62285,43571,24487
+50209,60589,9355,42043
+50210,80735,34478,49631,55084,3190
+50211,18704
+50212,54458,40086,31731,1192
+50213,18955
+50214,1443,62041
+50215,9518,28342,71595,10485,23845
+50216,11588,26944
+50217,53102
+50218,56476
+50219,59141,42426,59234,8048
+50220,30950
+50221,43408
+50222,68186,31391,17949
+50223,42377,68307,59114,51214,21779
+50224,15485
+50225,10859,51022,38968,10633,46212
+50226,76306,50928
+50227,71288,60129
+50228,33159
+50229,22459,32420,28309
+50230,57990,27448,79659
+50231,3875,32988
+50232,72835
+50233,40641
+50234,17049,68177
+50235,44460,59650,52201,79388
+50236,46568,54969,67785
+50237,68958,11492,35169,72137
+50238,63247,56802,5549
+50239,31511,48538
+50240,44547,34331
+50241,19564
+50242,44415,48201,51019
+50243,8063,59280,67694,28210,35398,45796,15610
+50244,33511,64898,2016,54847
+50245,1075
+50246,48903,11319,38043
+50247,13734,37700,55055,646
+50248,68719,28287,29445
+50249,80589,11517,18400,2072
+50250,7560,14665
+50251,65097
+50252,2032,30060,19081,65324,38968,48068
+50253,17727,32730
+50254,69008,51705,44565,61768,37780
+50255,53709,59964
+50256,76306
+50257,68911
+50258,69947
+50259,35586
+50260,15134,3164
+50261,72894,67526
+50262,12035,43844
+50263,5275,26082,28607,64658
+50264,35415
+50265,14432,73557
+50266,67791,67730,73793,14778
+50267,77250
+50268,39482
+50269,759
+50270,68429,53419
+50271,66952,11625,39390,52044
+50272,65600,28509,72734,39897
+50273,24633,47012,20070,23411
+50274,55154,78009,35942,59927,8793
+50275,62903
+50276,19639
+50277,25074
+50278,59810
+50279,74200,43801,20803,42786,11979
+50280,78766
+50281,27597,54946,24660
+50282,34861,8633
+50283,80470,36824,72041
+50284,67466,64140
+50285,53551,10114,36915,9178,53767
+50286,13120
+50287,58461,69453,68409,50116
+50288,9134,56338
+50289,6225
+50290,23346
+50291,79298,24067,17090,77328,24651
+50292,55780,54882
+50293,38264,53501,66243,2847,52470
+50294,45352,38385,59878,15778,22125
+50295,78262,34058,26858,16539
+50296,1599
+50297,67625,65922
+50298,31223
+50299,13230,68021
+50300,28261,60223,40790,962,3838
+50301,34552
+50302,23149
+50303,15929,6072,19415,58185
+50304,68299
+50305,40128,33609,10475
+50306,30802,15857
+50307,63077
+50308,78387,15499
+50309,41524,24242
+50310,34563,14703,68701,66904,13764
+50311,3805
+50312,71217,72246,65285,1940,2579,13663,51832
+50313,25683
+50314,40561,49291,62801,59590,66700,28263
+50315,70853,7025,24024,6662,70616,63436,71598
+50316,34196
+50317,57334
+50318,8295
+50319,45664,9504,17828
+50320,55701,53905,55933
+50321,9312,11271
+50322,10053,74174,18103
+50323,10822,15934,72205
+50324,44331
+50325,339
+50326,29990,56617
+50327,75682,52264
+50328,41410
+50329,68753,81062,76625,65258,13382
+50330,60803
+50331,65515,17273,40087
+50332,77959
+50333,9868,30115,9406,73657,80068
+50334,40424
+50335,17054,67852,19423,53902
+50336,35405,53259
+50337,41744,8586
+50338,74407,81521,22655
+50339,5720,79019
+50340,56373,7095,53160
+50341,52615,1948,72632
+50342,66287,42158,50241
+50343,41701
+50344,17317
+50345,28373,13383,64487,12673
+50346,8067
+50347,30102,39858
+50348,56032,33223,1310
+50349,52201,1581,23620
+50350,17992,57956,28399
+50351,74773,35933,81944
+50352,54578,5418,36964
+50353,36094,48468,10804
+50354,54757
+50355,37423,54903,64843,60055,57233
+50356,30841,58159
+50357,30324
+50358,38163,10308,72176
+50359,74686,14912
+50360,77055,6840,7956,60551
+50361,81980,57114,51203,65262,77755,29695,27183,8602
+50362,66925,52160,59652,61659,38429
+50363,36928,15624
+50364,30477,51850,14377
+50365,40328,81090,52094,57395,48780
+50366,23780,11027,6773,29730
+50367,52077
+50368,49182,72547,45451
+50369,21867,81229,71146
+50370,35667
+50371,37736,19297
+50372,65219,20481,19303,48260
+50373,1897,45255,66106
+50374,64543,36875
+50375,43687,60499
+50376,13574,39779,1288,79835
+50377,54192,17602,78775
+50378,69670,16343,23653,34368,57571
+50379,68828
+50380,56503
+50381,48685
+50382,42874,4156
+50383,79180,55916,51431
+50384,51691
+50385,37690,45776,41085
+50386,5321,11492,76193,73352
+50387,9720,7195,57608
+50388,61036,36282,10498
+50389,11346,21932
+50390,22389,40670,5187,19272,10123,24518
+50391,77163,57994,45414,9640
+50392,69555,12582,29917,56656,55744
+50393,6884,74560,29439,53059,30657
+50394,35392
+50395,68137,6134,80091
+50396,62306,8394,28436,1490
+50397,17135
+50398,29231,33507
+50399,14982
+50400,73647,75233,27925
+50401,27403,33155
+50402,58028,14161,59402,5900
+50403,22262,17682
+50404,56496,77958
+50405,28592,66392,18973,46088
+50406,59075
+50407,16819
+50408,77649,35165,1493
+50409,54910,45180,6441,71987
+50410,63073
+50411,82148,53426
+50412,2160
+50413,12709,28750,62357,27386
+50414,13055,16880,65115,30326
+50415,65535
+50416,13103
+50417,9452
+50418,58632
+50419,26995,21906,35400
+50420,47279,45153,81087,61443,23894,15967
+50421,10742,48614
+50422,42689,58201
+50423,34778,23059,15895
+50424,12933
+50425,4282
+50426,9436,34083
+50427,73083
+50428,75933,30654,39506,47842
+50429,32582,73659
+50430,40004
+50431,8198,31263,62798,1787
+50432,40101,32884,45229
+50433,80285,36769
+50434,19369,14539,43110
+50435,21973
+50436,13827,6442
+50437,42953
+50438,21122,74940
+50439,68769
+50440,38977,52429,78418
+50441,18765,60270,32829,13589,66498
+50442,29338,15228,20205,8996
+50443,32167,78423
+50444,41959,45071,42932,20379
+50445,8220,42642,6074,15930
+50446,50187
+50447,37866,38244
+50448,69829,40159,12521,80973
+50449,54954
+50450,65022,70834,40738
+50451,55959,51702,66046,15375,24231,65784
+50452,16598,9709,11936,82162
+50453,19700
+50454,20862,54228,66665
+50455,19863,7715
+50456,48335
+50457,34990
+50458,20210,68277,36775,32751,79154
+50459,28204,79440
+50460,79622
+50461,24830,6099
+50462,74056,26219,80035,5355
+50463,77056
+50464,63376,28415
+50465,71806
+50466,65266,73290,78017
+50467,71546
+50468,57431,69753,64430,43197
+50469,60033,53249
+50470,20586,19990,64615,65723,43996
+50471,1948,50931
+50472,78194,52344,75174,79860
+50473,2136,14032
+50474,5129,20554
+50475,40253,58441
+50476,7406
+50477,46498
+50478,43269
+50479,25041
+50480,23882,29075
+50481,68375
+50482,52186,81088
+50483,32489
+50484,80392,79,10310,18529,15412,17849,14336
+50485,17458
+50486,61512,56074,82068,63766
+50487,10634
+50488,37692,45778,667,69165
+50489,81430,31339,53060,40140,75380
+50490,54490
+50491,76495,466,45736,36209
+50492,64844
+50493,34832,37267,8855,46217
+50494,57656
+50495,34258,11070,35637,7669
+50496,18732,33308,54299,49658,24979,38749,49016,12713
+50497,9766,1270,67874,37374,10233,53723,45371,61344
+50498,65684
+50499,11322
+50500,80515,77416,55207,52748
+50501,34610
+50502,31459
+50503,16506,2267,7137
+50504,63513,34455,8974,62817
+50505,41499,17843,43127
+50506,81034
+50507,5448,18767,37878,33412
+50508,78615
+50509,36330,67102,12083,7827
+50510,68224,10404
+50511,17114,79726
+50512,14349
+50513,34574,3059
+50514,33257,37805,75624
+50515,66969,34669,113
+50516,55911,76911,24460,14407,34150
+50517,67237
+50518,76115,62416,74632
+50519,52355
+50520,62819
+50521,33468,72493,65281
+50522,29064,29436
+50523,82151,45675,16855,76301,15713
+50524,19346,22249
+50525,6959,77059,11707
+50526,43546,9074,21978
+50527,3616,5890,22963
+50528,34426,81906
+50529,45930,8568
+50530,58514,29672
+50531,61801,11543,30641,15371
+50532,39546
+50533,63522,11866,11952,19846,7239,74374,45782
+50534,26621
+50535,25305,15060,45161,13449,42440
+50536,77091,79191
+50537,58779
+50538,17644,18886,72156,703
+50539,54539
+50540,1965,27398,54167
+50541,47212
+50542,7694,68106,65347
+50543,5533,42947,30621
+50544,65531,80754,3200,30671,19254
+50545,3177,31012
+50546,78222,26871
+50547,69376,4599
+50548,6849,4569,31514,71671,36559,22180
+50549,24470,11967
+50550,8151
+50551,1100
+50552,39861
+50553,51003,48349
+50554,53456
+50555,1608,26044,10522
+50556,16559,32068,46321
+50557,20556
+50558,34641
+50559,33045,26375
+50560,53002,61915,44067
+50561,63224,1275,31127,39582,47417
+50562,21306,78796
+50563,1910,9739,54136,39425
+50564,52706,33218
+50565,43184,22464
+50566,10948
+50567,65008
+50568,73743,8481,25951
+50569,45172
+50570,21516,56848
+50571,49274,44115
+50572,27031,78716,11011,31115,30469
+50573,53014,9888
+50574,64746,26278,38747,9115,61778,76073
+50575,14922,28608,4994,4543
+50576,16258,28349,37572
+50577,68705,41601,42719,69718,27052,78552
+50578,59971
+50579,64844,1015,53026
+50580,14503,41381,46628
+50581,68144,50188,35639,78627,38929,71965
+50582,15243
+50583,45717,53644,43554
+50584,3136,17358
+50585,1055
+50586,49998,17661
+50587,19877,72015,23977,35916,58098,44770,57080,47364
+50588,16224
+50589,64169,18332
+50590,5081,36842
+50591,53260,1539,76739,81990
+50592,10699,33774
+50593,76827,11923,62915,11833
+50594,81664,70614,7948
+50595,43055
+50596,29075
+50597,75023,7273,1069,11789
+50598,53801,73911,3746,6177
+50599,45026,3331,36789,39491
+50600,60531
+50601,16343
+50602,74612,66327,9546
+50603,16505,52498,21317,65005,68689,68962,29864,37009
+50604,6369
+50605,8455,30908
+50606,68532,75792
+50607,63241
+50608,39920
+50609,2874,54460
+50610,34130
+50611,9941
+50612,76223
+50613,76389,60393,44793,54602,52049
+50614,13209,77646,47351
+50615,20633,65450,26547
+50616,79678,70024,53084
+50617,55664,19923,54324
+50618,17353,10049,37894
+50619,75480,77317,3504
+50620,52643
+50621,65607
+50622,65022,44777
+50623,12897,67473
+50624,38520,59938,23927,48066
+50625,22169
+50626,39785,44457,19926
+50627,35388,43187
+50628,72881
+50629,49610
+50630,54426,64713,62609,68550
+50631,75277,14147
+50632,48624,44527
+50633,54287,29717
+50634,62969,5741,13560
+50635,9001
+50636,47801
+50637,31751
+50638,66539,55525
+50639,8565,57534,81639
+50640,47236,57409,60635
+50641,39991,4599,23570
+50642,55593,25273,15450,39353
+50643,74719,58684,80913
+50644,15967,39768,28597,65259
+50645,53579
+50646,13514,53901,64988
+50647,17354,23257
+50648,77261,35215
+50649,38868
+50650,65633
+50651,11808
+50652,14271,23990,73210,47082
+50653,72507,79723
+50654,19028,5961,7723,18414
+50655,2228,75709,38917,69537,49592,1988
+50656,60398,38606,63025,76255
+50657,65063,27403,68075
+50658,41889
+50659,59339
+50660,45001
+50661,24833
+50662,2351
+50663,69078
+50664,10603
+50665,47730,2466,80032,76171,4355,53545
+50666,24435,79202
+50667,66205
+50668,44251,21071,42172,25055
+50669,57388
+50670,36443
+50671,14183,28941
+50672,49664,29953,9477,55883
+50673,56212,28100
+50674,50532,17584
+50675,26680
+50676,54324
+50677,28254,81705
+50678,41076
+50679,55777,58496
+50680,60333,21124
+50681,74834,61662,27277
+50682,14424
+50683,14065
+50684,67223,55265
+50685,48161
+50686,35401,42214,23494
+50687,36349,19449,70456,6764
+50688,17396
+50689,35786,77316,12525,24587
+50690,28638,64824,30666,16891,64870,18152,53271
+50691,34844,72926,79323
+50692,79277
+50693,61737,47788,49193
+50694,53093
+50695,80767
+50696,57382,58063,48839,53690,57310,30392
+50697,60396
+50698,18080,62844,48023
+50699,53460
+50700,5934
+50701,13964,490
+50702,27712,58893,71931
+50703,36248,62508,32662
+50704,52204,1176,32037,63511,15165
+50705,25505
+50706,35798,34192
+50707,19853,58263,73338,43320
+50708,39861,49851,61055,47773
+50709,65038
+50710,40101,64468,67056
+50711,6572,70850,78687,18574,22845
+50712,67931,20441
+50713,59737
+50714,52927
+50715,36327,34168
+50716,80224,14278,1745,66198,11108
+50717,74733,31545
+50718,54081,73107
+50719,38775,19617,15097
+50720,47815
+50721,5096,10380
+50722,68057,16881
+50723,16208,48889
+50724,79274
+50725,38108,72896,45169,73503
+50726,70387,82123,77393
+50727,72075,39750
+50728,31538,25360,21102
+50729,17732,41116
+50730,4492,61924,69198,69125,52093
+50731,76732,10943
+50732,17122,53753,46646,14900
+50733,13965,62252,55542,56247,43125,57125
+50734,44495
+50735,56252,62865,17443
+50736,31603,56295,482
+50737,33645
+50738,10090,24914
+50739,39215,18779
+50740,57336,4681
+50741,43277,54008
+50742,50541,53137
+50743,70331
+50744,31393,67720
+50745,8426,79203,58516
+50746,77880,10312,26171,8095
+50747,12554
+50748,1581,10329,4414
+50749,2571
+50750,68619,3785
+50751,52143,56279,22440
+50752,46922,9295,65733,13215,10695
+50753,17145,3538,1450,76290
+50754,60372,5448,24559,61706,26114,57370,80928
+50755,19476,57058,73956,31659
+50756,40176,19186
+50757,9252
+50758,42106
+50759,16034
+50760,11624,61,7131,8148
+50761,18634
+50762,69558,18619,15768,37620,71668,72092
+50763,10381,70673,2930,937,79508,26476
+50764,2093,70431,76755
+50765,7541
+50766,55407
+50767,7867,66319,10097,27719
+50768,65676
+50769,65210,58779
+50770,77284
+50771,66358,64271
+50772,44952,31282,49133
+50773,55502,6213,51770
+50774,72787,4561
+50775,8752
+50776,54416
+50777,61510,45776,20637,30464
+50778,23045,12368
+50779,11881
+50780,11455
+50781,9524
+50782,65505
+50783,38577,76093
+50784,26167,27404,25738,15433
+50785,17908,77453,62798,47167,69885
+50786,53894
+50787,24712,73852,3891,68610
+50788,80302,25556,71262,13127,71576,72024
+50789,28000,24267
+50790,60788
+50791,49398
+50792,18763,48510,43277
+50793,77066,65408
+50794,47572,76119,38492,51028,7504,28103
+50795,27884,70978,60677
+50796,34580,315,57475
+50797,58561
+50798,63589,52263
+50799,18712,59374
+50800,28789,47710,34848,38932,81007
+50801,1804
+50802,43040,42495
+50803,29292,5534,54466
+50804,54986
+50805,15288
+50806,33419,56376
+50807,48805
+50808,45709
+50809,19771,77868,27744
+50810,52862,56369,41440,21945,10089
+50811,38315,21222
+50812,77420
+50813,77872,54061,27114
+50814,60145,37438,62056,13404
+50815,4063,57358,15783
+50816,47072,46626
+50817,57723,54757,12145,19374,46835
+50818,45461,81549,68192,1443
+50819,24944
+50820,35192,34002
+50821,9800,10526,62353
+50822,54016,40933
+50823,80879
+50824,12500,80940,71693
+50825,8504,10763,55406,34592,39624,12197,4963
+50826,62127,62423
+50827,30704,63267
+50828,57924
+50829,43365,1843
+50830,3216
+50831,65037,73306
+50832,75131,64795
+50833,53688
+50834,79632
+50835,64473,39420,48600,55194
+50836,41739
+50837,3569,67830,30659,50855,61202,40319
+50838,46883,6876
+50839,62898,5705
+50840,22299
+50841,19714,42953,33152,34480,77296,19900
+50842,42695
+50843,67087
+50844,9260,45064
+50845,45410
+50846,59841,29071,6180,7302
+50847,46071,19463,67501,69979,1700
+50848,23764
+50849,69923,64822,17911
+50850,15565,13151,36740,5555
+50851,10755,49977,54151,76657,28370,21031,5842,75858,73817
+50852,13960,22380,48600,50639,47284
+50853,31500,7822,59846
+50854,58691
+50855,39243,11141
+50856,35664
+50857,33988,51425,51845,42306
+50858,57160
+50859,39588,81870
+50860,24287
+50861,37765,36558
+50862,42008,13183,60473
+50863,39544,47745,13909
+50864,22737
+50865,32672,66854,8415,80041
+50866,14057
+50867,2208,54091
+50868,50981,79362
+50869,39347,74786
+50870,3828
+50871,41250,66375,47104
+50872,41523,78128,18267
+50873,46020
+50874,32293,47749,59642,40454
+50875,51735
+50876,23112
+50877,71154,73686,78046,25393
+50878,76236,17280,63931,76904
+50879,28256,36747
+50880,77580
+50881,26201
+50882,74665,26259
+50883,46033,72033
+50884,11195
+50885,5152,57968
+50886,74162,11327,59597,78049
+50887,81446
+50888,2839,55999,38963,52983
+50889,27972,66332,75295,58448
+50890,31480,16643,23223,46271,35782
+50891,34629
+50892,20029,81320
+50893,41052,7359
+50894,19370,74655
+50895,65811,547
+50896,30952,61082,15752,33006
+50897,13756
+50898,24660,50747
+50899,30057
+50900,51924
+50901,689,36841
+50902,59463,16000
+50903,42929,35898
+50904,14130,44911,77342,43434
+50905,71747,74228,11115
+50906,77588
+50907,46493
+50908,78283
+50909,34423,73551,74498,74312
+50910,38816,31809,58779
+50911,65455,66715,35118,72383
+50912,56344
+50913,48927
+50914,3611
+50915,74996,22399
+50916,51536
+50917,76591
+50918,65245,56575
+50919,27883,20505
+50920,40411,22818,63061,68043,17116
+50921,63257,79340
+50922,65095,17884,6009,37507
+50923,71641
+50924,14633,20289
+50925,17861
+50926,40912
+50927,36618,102
+50928,43386
+50929,63448,78541
+50930,62224,79193
+50931,53722
+50932,44103,52393,58478,10216
+50933,28893,1587,25658
+50934,51031,79212,46627
+50935,33175,39425,36697,35813,33416,9537,34844
+50936,18838,51200,76759
+50937,44059,783,38787
+50938,63878,68779
+50939,49532
+50940,14792,37059,10416,1586
+50941,68370
+50942,31850,28039,32841,17887
+50943,48604
+50944,1011,12054
+50945,3110,59188,9259,56694,56379
+50946,10790,55509,53340,67112
+50947,14493
+50948,60312,62500
+50949,13263,6503,58915,30519
+50950,16540,28303,51225,64495,70997,13513
+50951,17551,51692,12047
+50952,37519,51031,69814
+50953,49728,50954,76044,49307
+50954,67986,81494,55712
+50955,68031,13498,12702
+50956,21309,11144
+50957,4725
+50958,33306,6144
+50959,45669,57070,19808,52417
+50960,57898,36323
+50961,72540
+50962,49399,39126,42699
+50963,63783,19842,48751,48191
+50964,43373,52523,66549,19678
+50965,61473
+50966,71813
+50967,2244,70269,19589,65480,70660,29789
+50968,74795
+50969,73075,62845,521,41082
+50970,13748,56023,57801
+50971,34793,39178,5116,28770,1197,30400
+50972,37892,21984
+50973,56331,63915
+50974,18400,42500,73519,49990
+50975,73193
+50976,36479,16580,19859,36737
+50977,17133,45146
+50978,28938
+50979,78559
+50980,37454,50875,22974
+50981,25603,60284
+50982,25539
+50983,49491,53260
+50984,13754,16221,74878,34592
+50985,78674
+50986,7605,59745,24757
+50987,4738,37719
+50988,56712,43638
+50989,6622,36140,77819,21076,79338
+50990,68893,70732
+50991,73576,55136,60546,45071,12767,1933
+50992,9499,21379
+50993,21922
+50994,7471,28041
+50995,73023,79797,43636,27896,33050
+50996,22387
+50997,43249,63867,72019
+50998,41350,48884,11709,50394,55011,13158
+50999,3822
+51000,7022
+51001,20198,71822,289
+51002,19686,50077
+51003,6932
+51004,14065
+51005,13408,69126
+51006,38357,46801,20204,9734
+51007,31370,3710,30158
+51008,45484,4110,37451
+51009,58911,66360
+51010,7453,40391,57481,38175,74522
+51011,22331
+51012,18596,76585
+51013,9731,46996
+51014,68699,63095,20785
+51015,16681,66472,48770,29113
+51016,13068,76947,58402
+51017,79002
+51018,78490,21246
+51019,3599
+51020,47798,23525,67897,80427
+51021,79983,57362
+51022,62689,42345
+51023,49244
+51024,66407
+51025,26538,30830,54535
+51026,77312
+51027,59787,24792,67868,54210
+51028,47949,6934
+51029,16121,532,29849
+51030,35969,13126,43846
+51031,40082,49198,12392
+51032,13282,63735,61405,9833
+51033,10208,16045
+51034,35509,45331,15565
+51035,16618,6897
+51036,10533,47769,14426
+51037,58625,69808
+51038,17863,75640
+51039,58048,75412,39419,31197,63258
+51040,32436,56813,29050
+51041,19398
+51042,67834,32034
+51043,23866,78421,37877
+51044,25322,60514,81111,20820,20021
+51045,61503
+51046,63504
+51047,71877,9855,65184,23624,61683
+51048,34006,4791,56018
+51049,44159
+51050,48032,35446,31705,44434,44180
+51051,74598,79340
+51052,37124,76272,50178
+51053,391,14967,17971,35851,24426
+51054,80044,27607
+51055,44803,52644,29074
+51056,51534,49081
+51057,18434
+51058,11523
+51059,37163
+51060,78323,12615,29568,72449
+51061,3845,64213,10524
+51062,33373,40244
+51063,65456
+51064,2119
+51065,31529
+51066,51278,14976
+51067,6242
+51068,46634,12075
+51069,37474,11791
+51070,40720,10736
+51071,2690,43547,13570
+51072,21244,23494,57386,20049,79754,69187
+51073,70398,8187
+51074,71806,5458,12017,28911
+51075,73615
+51076,41228,8375
+51077,37702,17070,61995,47974,27280,32276
+51078,25036,25978
+51079,20592,20305
+51080,45718,22762,10621
+51081,18959,6989,46518,31080,31099
+51082,19208
+51083,36407,40778,7093,30775
+51084,25566
+51085,16658,5120
+51086,74591,79019,3120,75013
+51087,73535,49983,68636
+51088,9540,67751,16017,30099
+51089,76295,11720
+51090,150,1411
+51091,44606
+51092,12887
+51093,67577
+51094,19370,65908,58267
+51095,26412
+51096,27356
+51097,20556
+51098,81779,12770,72692,40511
+51099,42446
+51100,34121,80671
+51101,34737,386,30823
+51102,49734,52000,53584
+51103,69977
+51104,22157,23085,80975
+51105,69708,72494
+51106,21021
+51107,8696,25294
+51108,53721
+51109,59202,52673,23782,68690
+51110,45443
+51111,47679,28775,26430,25188,42952
+51112,80239,56139,15906
+51113,23426
+51114,42025,5048
+51115,72328
+51116,73718
+51117,41612,11176
+51118,21184,4072,80325,59630,59699,28306
+51119,52766
+51120,9396
+51121,70781
+51122,64532,9579,81407,19109,44098
+51123,55394
+51124,44657,61767,3642
+51125,30140
+51126,75375,18656,26267
+51127,62470,59032,21251,38999
+51128,3533,46879,6262,53517,5044
+51129,53838,38174
+51130,32582,7998
+51131,33909,12735,11144,64405
+51132,15229,9295,27849
+51133,55349,38725
+51134,53858,45286,67834,25065,17468,46098
+51135,71976,57566
+51136,43310,20122
+51137,7964,25108,1393,73718,15686
+51138,41738,27635,55636,1991,80246,16492,42302
+51139,17594,43934
+51140,35374,74936,81627
+51141,29930,51577,64676,10743
+51142,18746,53595,17767,41815,7097
+51143,23855,19604,75968
+51144,1366,1403
+51145,21488
+51146,6677
+51147,43678
+51148,63814,60157
+51149,37242,49335,49160,40315
+51150,19736
+51151,63814,79239,82189,4142
+51152,71355,41456,38462,71572,29819
+51153,60445,53123
+51154,2144,47297
+51155,17226
+51156,74624
+51157,78147,1152,32338
+51158,66049,16551
+51159,24775,52067,41594,53178
+51160,50385,65342,41939,29388
+51161,62268,38720,11105
+51162,17096,11128
+51163,64257
+51164,19173,72459,39310
+51165,27901
+51166,6843,25279,5795,41979,80934
+51167,37795
+51168,74257,48607,38451,42249,6222,27472
+51169,10564,13230
+51170,52682
+51171,62879
+51172,12647,3487,70,78722,43337,57133
+51173,36394,29423,50439,66975
+51174,44274,6607
+51175,31798
+51176,36525,4327,20823
+51177,8092,90,17516,81074
+51178,39442
+51179,75763,61745
+51180,5649,63663,29550,38321
+51181,36156,44889
+51182,12303,31046
+51183,43659,49450
+51184,74091
+51185,21882,58295
+51186,77416,72126,75712,58114,71094
+51187,50776
+51188,53519,24631,75416
+51189,37643,2178,61469,30641,78403
+51190,22413,28334,66028
+51191,32217,6633
+51192,81979,29222
+51193,21922,58907,78672
+51194,365,68413
+51195,21508,76914
+51196,49006
+51197,37640,51239,19497,39176,62026
+51198,21731,29313
+51199,33521
+51200,56122,11449,12721
+51201,34672,17074,7242
+51202,11837,66244
+51203,27758
+51204,74041,19999,22393
+51205,80916,38209
+51206,31030,19509
+51207,75952,56846,60222
+51208,66546
+51209,553
+51210,54238
+51211,12927
+51212,25878,3176,66593,79501
+51213,43828,16599,24504,5403,9969
+51214,16976
+51215,33912,77310,31902,35847,37839
+51216,62230
+51217,64305
+51218,44803,52788,54576
+51219,71935,27761
+51220,69039,41357,81207
+51221,59961,80730,19274,3414
+51222,30682,8193,36752
+51223,9263,2844
+51224,45817,66365,77393,10447
+51225,80774,5828,22135,63446
+51226,34677,81535
+51227,2047,27826,45168
+51228,22196,38092,21882
+51229,3115,22674,54130,58333
+51230,79540
+51231,65016,53309,3202,50008,26631,17242
+51232,22819,45784
+51233,48752,55731
+51234,18787,57844,15642
+51235,40109
+51236,67204,55894
+51237,54762,13931,75389,5478
+51238,41615,48694,50325
+51239,64848,24688
+51240,11308,59381
+51241,76797,6912
+51242,53267,60263
+51243,11963
+51244,1070,26270
+51245,10395,44091
+51246,15538,39238,65045,66366
+51247,61515
+51248,3623
+51249,77774
+51250,65299,72500
+51251,19029,50625
+51252,49986
+51253,24582,56663
+51254,54724
+51255,55944,39695
+51256,66118,50426,70927,2462
+51257,34331,32105,18069
+51258,47949
+51259,22312,68904,21062
+51260,75863
+51261,14169
+51262,62408
+51263,74000,69788,25163,9954
+51264,10097,32490
+51265,50961,20071,67006,52787
+51266,49147,44792,4340,44966
+51267,16931
+51268,60293
+51269,39588,13361,52960,46363
+51270,66622,11561
+51271,34898,65733,68680
+51272,57329
+51273,73256,11456
+51274,11776
+51275,45358,2625,27251
+51276,11771,52137
+51277,32468,49396,19738
+51278,48562
+51279,29726,8775,65931,77827,46696
+51280,70266,50794,20341
+51281,21740
+51282,18586
+51283,50509
+51284,45529,70564,42418,61704
+51285,49491,52837,62422,40892
+51286,19221
+51287,50418
+51288,49155,63135,20518,59084
+51289,11959,27841,69999
+51290,62600,56669
+51291,333,69594,5056
+51292,73064,29342
+51293,13693,38811
+51294,12436
+51295,77232,66684,14183
+51296,51019
+51297,11701,67122
+51298,20112,17030,75604,30554
+51299,13851,81167
+51300,71770,2852,59318,70627
+51301,36439,80652,46204
+51302,76290,12970,74292
+51303,71831,40740
+51304,33064
+51305,25456,40652,28525
+51306,45794,62284,67413,38448
+51307,69179,37933
+51308,57158
+51309,38430
+51310,76522,8800,56332,6868,50931
+51311,12312
+51312,74930
+51313,63381
+51314,31290,66975
+51315,73835
+51316,31961
+51317,4286,77428,41660,68768
+51318,14693,13730
+51319,69764,28121,53931
+51320,79809
+51321,55792,30751,129
+51322,31899,76256,47842,71116,5882,62377,64549
+51323,47002,63848,80380
+51324,38021,78834,2849,72595
+51325,74016,62809
+51326,81592,43577,54740
+51327,81456
+51328,72262,77210,47061
+51329,72514,37620
+51330,74562,19184,47129
+51331,37165,43295
+51332,37906,53025
+51333,25603
+51334,38228
+51335,20805
+51336,43718,40340,48075,25975
+51337,64675,56145
+51338,52571,31009
+51339,26044,36151,2606
+51340,7976,75140,51627,65277,65556,64177
+51341,75374,8366,81766,72369,37507,1030
+51342,5987,37828
+51343,70193
+51344,53999,32402,45762,74324
+51345,4211,18814,68805
+51346,75673,20599,15957
+51347,8686,5937,36904,72862,43825
+51348,7282
+51349,70484,40275,13645,28493
+51350,24881,3645,40669,3974,303,10192,7200
+51351,44707,39164,80553
+51352,59076
+51353,16573,76515,50261,10127
+51354,15895
+51355,38008
+51356,18684,62222
+51357,28362,34587
+51358,33883,37037,71188,11955,81519
+51359,11627,55858,6480,11953
+51360,9770,14779,61794,20188,20733,2367
+51361,76005,52441,48745,23866,78974
+51362,75310,68123
+51363,63601,77089
+51364,24072,7557,12990
+51365,76847,6150,50604
+51366,80137,31939,72168,49615
+51367,46647,2264,55676
+51368,53464,30475,27275
+51369,50667,42038,16031
+51370,6913
+51371,46161,52247
+51372,56415,56915,19831
+51373,53941
+51374,52333
+51375,9106,70809,24195
+51376,47656
+51377,57644,69602,19182
+51378,17935,64962,65356,81964,23315,48634
+51379,23594
+51380,58596,49542
+51381,39344,31464,69072,17494
+51382,63524,2746
+51383,9277
+51384,80553,62323
+51385,76141,61437
+51386,77583,12177,14668
+51387,28372
+51388,60518
+51389,52738,12637
+51390,46041,772,32675,19186,68947
+51391,50650
+51392,78511,43620,66187,82066
+51393,40651
+51394,55951
+51395,34899,4658
+51396,73836,5528,48105,73806,54761,70100
+51397,22050,19624,36852
+51398,52939,43504,2928,7510
+51399,70320,32541,7873,45883,32695
+51400,32988
+51401,56330
+51402,32501,41680,77409
+51403,17367,24941,39959,59738
+51404,58277,38521,12110,60788
+51405,77205
+51406,37540
+51407,34196
+51408,34955
+51409,78396
+51410,64683,56892,52973
+51411,63327,72419,40268
+51412,63711,18354
+51413,17499,65656,35031,66910
+51414,16863,58751,70107,66029
+51415,8584
+51416,46601,79289
+51417,74738
+51418,12075
+51419,23812,61858
+51420,12910,42580
+51421,77896,50778,16476
+51422,3161,36603,5984,2205,1422
+51423,25808,26477,23913,42416,31897
+51424,54130
+51425,56516,50129
+51426,9081
+51427,54303,70259,4024
+51428,28745
+51429,33320,10998,31263,26407,32567,61668,43304
+51430,7153,25375
+51431,40064
+51432,79727
+51433,81879,47270
+51434,48251
+51435,51913,74966
+51436,42425
+51437,73571
+51438,74311,65171,7508
+51439,33840,18083
+51440,32722,20735,4637
+51441,81016
+51442,45081,68499,62719
+51443,4957,15406,75055,71397,63071
+51444,71656,57700
+51445,6057,1171,74059,40752
+51446,21409,7792
+51447,77454,77089
+51448,45196
+51449,33488,26270
+51450,43265
+51451,22676,81176,25954,32677,48196
+51452,72850,78587,34984
+51453,49059
+51454,34669,75567
+51455,12271,21743
+51456,14292
+51457,5882
+51458,13653,66765
+51459,20783,17553
+51460,13073,58298,5214,19454,23977,5848
+51461,12830,15856,25785
+51462,36474,6781
+51463,46312
+51464,3281,25265
+51465,10020,18581,45848,48718
+51466,6815,73596,61313
+51467,81399
+51468,3001
+51469,30962
+51470,32516,13322,76491,15545
+51471,12827,41946
+51472,42705,81540,6493
+51473,57382
+51474,76026,72338,62962
+51475,20985,49074,2428,23641
+51476,36994,7787,40651,80844,62068,67555
+51477,1711,32620,27423,70607
+51478,32710,3235,10118
+51479,32130,70043,71491,62859
+51480,24686
+51481,32630,7532
+51482,21593,24789,43046
+51483,22428,36005,70819,9639
+51484,54790
+51485,21428,65116
+51486,72574
+51487,56007
+51488,27909
+51489,79992
+51490,66755,16148,43712
+51491,71590
+51492,71688,74266
+51493,33740,42838
+51494,28103
+51495,58732,17481
+51496,76755
+51497,8148
+51498,20575
+51499,35296,41971,19373,10808
+51500,29169
+51501,32442
+51502,1416,43671,55701
+51503,45634,64979
+51504,49450,75467
+51505,67554,72362,22966,15558,46949
+51506,48511
+51507,15305,49845,69972
+51508,68100,24956,35798
+51509,27887
+51510,67450
+51511,66815,52606
+51512,30057,25048
+51513,4851,80017,60054
+51514,68674,43713,39652,10765,17283
+51515,12197,50562,39977,21212
+51516,56959,12425,24933
+51517,40767,60487,34832
+51518,54698
+51519,23620
+51520,21643,50719,2194
+51521,5712
+51522,24230
+51523,19176,74478,50300
+51524,16034
+51525,3189,2552,79018,43408
+51526,15240,14729,64954
+51527,26848
+51528,46316,75062,22338
+51529,5288
+51530,58133
+51531,1310,51115,72171,57648
+51532,18178,43254,24727
+51533,16780
+51534,9537,34817
+51535,15476
+51536,50759
+51537,24199,64574,67264,16132
+51538,52554,29155,27954,37774,80000
+51539,50551
+51540,19804
+51541,42224,74094
+51542,49607,62631,37194,4864,67433
+51543,41854,27540,3244
+51544,62965
+51545,6119,14349
+51546,50823
+51547,3700,52818
+51548,34355
+51549,28927,75457,62477
+51550,55442
+51551,64502,21004,54975
+51552,65719
+51553,1542,81700
+51554,2226,33218
+51555,79735
+51556,17815
+51557,70121
+51558,77842,81933,5383
+51559,4343,44025
+51560,58840
+51561,78795,27992,44986
+51562,13645
+51563,56073
+51564,19270,62680,3102
+51565,13163,35517
+51566,5413,53505
+51567,63381,56537,55695
+51568,60791
+51569,73053,32396
+51570,77050,15063
+51571,9482,53408,76500,53279
+51572,62410
+51573,47633
+51574,30926,57513
+51575,44124,32887
+51576,30246,26318,49655,2996
+51577,15664
+51578,21510,13007
+51579,1098,509
+51580,42966,20808,42153,78020,8953
+51581,26203
+51582,9891,6404,7839
+51583,45120,23930
+51584,20417,53826,66186,35282
+51585,14015,12544
+51586,35758,80569
+51587,35644
+51588,68148,34021
+51589,55141,80028
+51590,28207,64363
+51591,74020,63768
+51592,30321,66927,35284,23975,7936
+51593,56007
+51594,24627
+51595,29486
+51596,15952,59754
+51597,64900,67412
+51598,71307,552,24144,62664
+51599,11692,12749
+51600,63376,14083
+51601,57987
+51602,36643,23179
+51603,65870
+51604,39471,45046,50093,58032
+51605,25566,40987,50701,3181
+51606,14637
+51607,62187,48226
+51608,27684,25517,31169,4250
+51609,77050
+51610,70801,26712,20841,27666
+51611,53166,46602,25488,39333
+51612,31508
+51613,72380,47422
+51614,4685
+51615,73607
+51616,68802
+51617,57638,43930,22350,9541
+51618,81067,72892
+51619,35877,11367,64426,57273
+51620,33369,66930
+51621,74647,30438
+51622,48729,4743,70901
+51623,38093,58431,1942
+51624,25825
+51625,79097
+51626,64366
+51627,12176
+51628,53674
+51629,22483,69941,76469,59497
+51630,78205,47555,7218,51654
+51631,15883,13345
+51632,12721
+51633,18686,20630,31535
+51634,32167,76690,36199,66116
+51635,75836,17331
+51636,65169
+51637,79577,7905,51662,75878
+51638,63353,14631
+51639,21469
+51640,72038,74098,37407
+51641,75178
+51642,59863,25702,41702
+51643,55621
+51644,40930,8495
+51645,16408,54340,27061
+51646,71427
+51647,13214,15173,32396
+51648,25619
+51649,70010,53831,46273
+51650,70661,34941,66365,77375,41273,47303,10598
+51651,68499,45877
+51652,60327,61554,51182,78863
+51653,72302,70479,29862,15351
+51654,62427,77445,56509
+51655,61113,34419
+51656,81268
+51657,59682
+51658,50941,24399,9266
+51659,55491
+51660,25840,53842,65348
+51661,19612
+51662,38643
+51663,20803,62002,59648
+51664,47006
+51665,60998
+51666,37200
+51667,79769
+51668,28680
+51669,51225,7543,75135,15491
+51670,60177,13322,45451,36306
+51671,18791,57221
+51672,62508
+51673,7764
+51674,36868,64967,50711,58095
+51675,11240,893
+51676,130
+51677,48342,35623,53544
+51678,80821,37868
+51679,63261
+51680,80980
+51681,62242,63557
+51682,75917,68458
+51683,9902
+51684,60894,547,57854
+51685,51946,63869,4174
+51686,73889
+51687,25461
+51688,9875,13282,10570,3887,40077
+51689,64570,54748
+51690,52067
+51691,64517
+51692,30849
+51693,6069,31427,38125,46576
+51694,18608
+51695,28614,41515,69251,59197
+51696,21769
+51697,59033,27855,18320
+51698,36038,5218,47137,19193,72534,25642
+51699,42913,27530,978
+51700,22831,30071
+51701,54544
+51702,58049
+51703,45951
+51704,66619
+51705,18983,64500
+51706,76708,28037
+51707,2187,10312,65836
+51708,46489,2273,51296,73405
+51709,16150
+51710,23193,5263,12298,80967
+51711,46349
+51712,31545,16950
+51713,7193,72229
+51714,1087,28731
+51715,33751,49847
+51716,995,51644,80208,42542,16315
+51717,67773
+51718,74243,11892,78582
+51719,50309,18980
+51720,73046
+51721,75524,66314,24081,10698,61494
+51722,64010,28503
+51723,14665,11653
+51724,69912,3766,29364,78666
+51725,78150,62169,42548
+51726,22660,30622
+51727,20864,55343,5820,4571
+51728,73511,43908,76315,31578
+51729,7572
+51730,64134,42413
+51731,27483,4369
+51732,15683,3241,80180,22721,77700
+51733,14615,79856,62402
+51734,57891,72266,65243
+51735,56239,82158
+51736,55883
+51737,27745,79308
+51738,7171
+51739,68648
+51740,9008,75669,8037
+51741,79769
+51742,33114,29250
+51743,35610,15764,51378,76527
+51744,12425,33002,8613
+51745,80304
+51746,77973,13275,47141
+51747,35776,2578,55454
+51748,81749,75717,21573,25040
+51749,1523,56219,28535
+51750,78733,39331
+51751,48944,18791
+51752,39997,81243,59332
+51753,4663
+51754,40651
+51755,38484
+51756,23056,68366
+51757,1073,80516
+51758,27614,50832
+51759,64940,38963
+51760,63917
+51761,52783
+51762,8846
+51763,33222,4485,36590
+51764,5968,10882,6152
+51765,77828
+51766,50396
+51767,46334
+51768,29096
+51769,22849
+51770,71949
+51771,8108
+51772,55734,34532
+51773,51311,3074,65256
+51774,12033,51931,76704,45815
+51775,70139,31659,75287,45589
+51776,44564,24054
+51777,32477,42958
+51778,73318
+51779,5129,16243,32880,31778
+51780,77420,79906,39218,50883
+51781,8565
+51782,2302
+51783,10921,33671,55549,79388
+51784,17632,65142
+51785,26976,10277,64824,18008,17132
+51786,80899,72595,67387,27040
+51787,73724,15820
+51788,59011
+51789,23060
+51790,29103,42685,72626,47081
+51791,17576,20173,37467
+51792,28348
+51793,66131
+51794,6405,28798,79349
+51795,44318,75150
+51796,9796
+51797,58011,48127,2812
+51798,63128,19105,8489
+51799,37858,58547,45711
+51800,5751,13573,23181,488,49513,31466,53437,24800,29405,74866,62409,63342
+51801,58047
+51802,71812
+51803,67921,78494
+51804,25998,58638
+51805,79912
+51806,51770,19652
+51807,49741,24086,1844
+51808,47008,66850,68745,7855,43279
+51809,38990,49532,19329,77909
+51810,38785
+51811,80636,27434,33731
+51812,66788
+51813,63493,52510,57213,71932,45556
+51814,26550,77050,37661
+51815,26976,69355
+51816,1699,1384,45478,9463
+51817,30296,20775,15397
+51818,69576,78624,51676,68962,18351
+51819,21524,22061
+51820,71898,25515,61090
+51821,66527,37143,42077
+51822,2570,55476
+51823,21736,63929
+51824,32733,79191
+51825,79948,8739,31294,4783
+51826,7303,43537
+51827,1818
+51828,21480,34947
+51829,6866
+51830,54425,647
+51831,67494,35081,50193
+51832,29199,29737,60510
+51833,66277,71337
+51834,37355,35608
+51835,27445,26350
+51836,506
+51837,75550,67908
+51838,12340,35424,8710,2826,1490
+51839,54568,61565
+51840,46099,10737,49071,70710
+51841,34436,39820,35862,5927
+51842,77500,61987
+51843,59671,41337
+51844,53037,7423,82168
+51845,15107,41471,1430
+51846,59868,15745,81378
+51847,3832
+51848,11935,6402,7832
+51849,43707
+51850,6527,44149
+51851,23506,2404,3374,25684
+51852,62625,47087
+51853,80457
+51854,33591
+51855,8124,63978
+51856,3113,76710,31360,47085,38979
+51857,40108,55654,66937,16017
+51858,26872,4166,48503,59042,38596,79142
+51859,75024
+51860,76571
+51861,23938,45474
+51862,283
+51863,69591,25934,22601
+51864,49322,23851,14618,62010,63779
+51865,60404
+51866,55988,29444
+51867,63921,71181
+51868,43369,24394
+51869,23752,28924,61238
+51870,6466,1574,39528,77881
+51871,59861,11122,25352
+51872,2273,43235,35922,31346,47064
+51873,9502,42824,81749,81587,7160,39350,77050
+51874,24423
+51875,51931
+51876,54324
+51877,51860
+51878,34517,2824
+51879,65596,18136,41580
+51880,29869
+51881,7382,74052
+51882,78368,51995,69902,9297,21609
+51883,75326,62969
+51884,51262,80877,13864
+51885,32665
+51886,25496,69235
+51887,59420
+51888,12142,26429,16045
+51889,75379,32883,79537,59683
+51890,47692,57972,9636,62873
+51891,17881
+51892,54188,39008,22612,14984
+51893,14408
+51894,26776,69607
+51895,32593,1663,41276,36913,76787
+51896,75265,68437,8257
+51897,64965
+51898,65879
+51899,42373
+51900,19324,35111
+51901,49443,12416,40052,75613,16601
+51902,17787,70364,71972,46206
+51903,54651,7264,60847
+51904,12077
+51905,58383
+51906,22361,76568
+51907,77384,109
+51908,25439
+51909,67631,63935,79275
+51910,24423
+51911,20764,50083,45355,8316,67730
+51912,81549
+51913,22069
+51914,21062,6026,78791
+51915,48877,26194,73383
+51916,51702,31809
+51917,6793,61578,65456
+51918,62839
+51919,51776,20429
+51920,36309
+51921,53833,11381,80307
+51922,59263,52802,3451,74129,20936,27674
+51923,29303,15277,53455,64420
+51924,10187
+51925,74972,28673,1256,55241
+51926,66825
+51927,50458,50578,68165,30125
+51928,6392,76569,47257
+51929,20322,63552,69875
+51930,33455,33207,30161,2798,56795
+51931,67038
+51932,38893,70016,66022
+51933,54460
+51934,60661,60944
+51935,77472
+51936,48256
+51937,28355,49382,79585
+51938,73771
+51939,50943,42289,33927
+51940,3550,16822,14988
+51941,2349,19677
+51942,19080,53860,53344
+51943,9274,7861,53119,79698
+51944,27911,56404,60438
+51945,59047,37902,28345,42307,34499
+51946,82186,7955,42687
+51947,7994,73278
+51948,75289
+51949,26739,5045,19369
+51950,29154
+51951,17177,47941
+51952,20879,2833,34687,24525,54724,74240
+51953,15127
+51954,59992
+51955,10293,60942,27720
+51956,12705,16761,57306
+51957,44727
+51958,79374,67637,50549,39667
+51959,22485,16841
+51960,12811
+51961,32129
+51962,15342,81373
+51963,78999,39529
+51964,46982,72009
+51965,15019,51765
+51966,23920
+51967,47958,54777
+51968,74133,64557,40218,51965
+51969,63424,38724,39813
+51970,77793
+51971,73562
+51972,30965,62970,60081
+51973,81026,80687,48424,7931,37238
+51974,46036,27559,24883,66862,50608,63065,72804,26832
+51975,67023,58950
+51976,178,1152,42800
+51977,17844,49585
+51978,59348,63085
+51979,24442
+51980,20297
+51981,29652,71040
+51982,81108,11331,52008
+51983,71283,52169
+51984,27208
+51985,72164,20865
+51986,1836
+51987,51655,54699,40135,16236
+51988,22757,48635,70886
+51989,65605,56217,33558,37255,6249,30805,7548
+51990,21318,56007
+51991,36005,73210,50897,9023
+51992,8503,33060,3035,22129
+51993,31389,32682
+51994,5187,19401
+51995,80162,2939,15099
+51996,23045,46252,64732
+51997,48371
+51998,54681,56729
+51999,25171
+52000,9001
+52001,77524
+52002,6131
+52003,36725,21572
+52004,2016,27459,6271,42963,67101
+52005,58738
+52006,20455,66187
+52007,74058,41392
+52008,45815
+52009,53267,47943,18567
+52010,18789,21055
+52011,54093
+52012,23229
+52013,25493
+52014,12025,28319,36212,50126
+52015,35379,77430,42398,19474,15104
+52016,42458,79769
+52017,72735,33653,40789,72923
+52018,44930,31371
+52019,13425
+52020,54270
+52021,45993,54548,2135
+52022,44362,20430,41015
+52023,37112
+52024,55361,66078,59241,38741
+52025,54658
+52026,64468
+52027,58013
+52028,65328,28661
+52029,66107
+52030,41574,5322
+52031,4494
+52032,22575,21682
+52033,3385,26588,20179
+52034,26678
+52035,12285,25255,5592,8572
+52036,16927,34121
+52037,42147
+52038,65741,54988,65712,11144,2674
+52039,5782
+52040,49877
+52041,50987,75784
+52042,59728,31215,56712,74643,27045
+52043,22366
+52044,51410,4657
+52045,23521,18253,71066
+52046,32259,59777,20592,25731
+52047,4280
+52048,65518
+52049,331,26220
+52050,10907,18511,17475
+52051,76523,78563,54762,52924,48438
+52052,37669,80609
+52053,2914,42042,57893
+52054,60193,70165
+52055,80554,36727,82062,66766,36427,25438
+52056,53764
+52057,56114,65168,6153,12998,61202,15212
+52058,17101,42654
+52059,42370,31306,55221
+52060,53824
+52061,67698
+52062,50898,38081,14317,11316
+52063,29165,67388,48888,58089,62553
+52064,5569,27031,79922,61737,77443,13356,7952
+52065,7632,734,51632,51198,64170
+52066,50855,20523
+52067,10121
+52068,2639,32676
+52069,73332,63226,57365,25092,20230
+52070,31460,47156
+52071,59360,120,4209,33937
+52072,33357,13401,2874
+52073,13394,4367
+52074,51232,8782,75794
+52075,37097
+52076,11693
+52077,78988
+52078,39359
+52079,32204
+52080,45962,39625,72329,28618,79457
+52081,42161
+52082,67937
+52083,51108,57400,57019
+52084,17830,65377,20720
+52085,2070,78751
+52086,36592,43131,73406,12618,22251,45359,9776
+52087,69379,47545,55737,1207,8293
+52088,7711,4232
+52089,29799,12123,46970
+52090,56420,7660
+52091,42779,42032,81102
+52092,47008,61420,33030
+52093,450,26391
+52094,68452
+52095,9037,27103
+52096,47144
+52097,25564
+52098,80620,33067,13647
+52099,8665,52615,44987
+52100,8796,53625
+52101,21746
+52102,69709,36920,10742
+52103,3983
+52104,45890
+52105,78087,54079,4590,6181,63109
+52106,50240,42973,43348,54482
+52107,80678
+52108,43681,54425
+52109,9131
+52110,41518,6564,44200
+52111,45686,73495,54426,54409
+52112,59117,73171,11707,81718,27102,40566
+52113,4308,54631
+52114,6272,67202
+52115,78200,3470
+52116,20305
+52117,54830,68416,77357,33140
+52118,38835,67734,59843,24672,3782
+52119,32374
+52120,73227,13186
+52121,41258,17677
+52122,47321,70371
+52123,36171,29734,71396
+52124,5270
+52125,10719,44643
+52126,63187
+52127,12146
+52128,69044,6008
+52129,57709,43008,37901
+52130,6103,9975,31300,18763
+52131,51011
+52132,48213
+52133,12931,58694,62311,56173,76557,71507
+52134,75725,15690
+52135,41746,19494,26832,71245
+52136,47971,76344
+52137,69631
+52138,32094
+52139,62126,637,38534
+52140,7328,33491,45360,68883
+52141,38847
+52142,29269
+52143,28382
+52144,43032,67504,29499
+52145,54521,37332
+52146,39035,12002,61707,69282,31026
+52147,54371,7265,21140,78921
+52148,64321,21878
+52149,59694,80496,15814,14231
+52150,10027,56397
+52151,62936,20926,18393
+52152,81149
+52153,47414,25023,30128,68816
+52154,37146,43528,15415,12318
+52155,70381,69391,14502,25739
+52156,13345
+52157,59732
+52158,79670,4085,60958
+52159,1190,37451
+52160,72137
+52161,25465,63221,52025,25842,26252
+52162,24635,48448,70372,26129
+52163,72773,32886,21589
+52164,38785
+52165,22846
+52166,62918
+52167,40576,1551,50149
+52168,75691,69942,10077
+52169,76776
+52170,80028
+52171,31623
+52172,62497,12969,61736,42498,66116,69715,2879
+52173,26488,77880,4055
+52174,76441,70761,20264
+52175,77726
+52176,48847
+52177,82111,53069
+52178,81408,25005,74863,61669,15758
+52179,23633,28417,125
+52180,41836,48548,79552,66394
+52181,67767,42293,7339,51457,25547
+52182,73288,61947
+52183,7080,36298,21406
+52184,23346
+52185,51054,47568,47982
+52186,24478
+52187,7413,18342
+52188,38997
+52189,851,56725,44387,15443,38988,77694
+52190,13524
+52191,53931
+52192,2011
+52193,37330,63704
+52194,21939,38137,74886
+52195,1686
+52196,68986
+52197,22918
+52198,48446
+52199,65258
+52200,36474
+52201,55853,14346,25211
+52202,14471,32033,72543
+52203,12181
+52204,25392
+52205,77676,76242
+52206,8200
+52207,23550,69065,79027
+52208,74927
+52209,7865,81511,5380,29208
+52210,2341,42774
+52211,70301
+52212,5409
+52213,19892,70706
+52214,39270,52237,72192,29423
+52215,46790,22787
+52216,60735,14065
+52217,38113,13918
+52218,66400,68779,12243,11799
+52219,59533,31012,44780
+52220,43967,48719,58939
+52221,36962,2686
+52222,36248,76050,5869
+52223,69762,25185,11400
+52224,25426
+52225,26175,54672,2053
+52226,48536,22936,28312
+52227,24390
+52228,44786,35151
+52229,9522
+52230,21955,70346
+52231,38243,21444
+52232,12407,15850,19955,32760
+52233,20838,45789,28199,75714,41013
+52234,74484
+52235,19690
+52236,42711,70823,48024,59630
+52237,37067
+52238,55821,13408
+52239,68730
+52240,25120,57488,73935,65768
+52241,53394,35756,26713
+52242,71229
+52243,2361,68098
+52244,53010,78803,15095
+52245,44036,81867,2251,64629,27489,34552,17422,1776
+52246,31504,43983,9540,35091,81776
+52247,53607
+52248,36410,67015
+52249,54180,73213,28668
+52250,7501,46946,59642
+52251,32510,76173
+52252,70143,20751
+52253,41902,25017,38019
+52254,74837,36328,32256
+52255,32269,9199
+52256,65440,53154,79218,4409
+52257,16792,23240,3792
+52258,28471,55328,73826
+52259,73365,9974
+52260,57361,81356
+52261,47035
+52262,3479,49983
+52263,14849
+52264,4852,33159
+52265,6507,72172,20953
+52266,13653
+52267,7163,3847
+52268,46282,78792
+52269,34406,80607
+52270,57414,45376,60369,28387,19930
+52271,48975,36009,9517
+52272,19215,72395
+52273,15346
+52274,22838,16051,81888,61199
+52275,13726,77022,6940
+52276,17122,5712
+52277,18164,20195
+52278,52468,79704,20866,42244
+52279,44889
+52280,54552
+52281,44375,69327
+52282,81976,43999,31673,18576,47562
+52283,28552,34819,22656
+52284,67215
+52285,67046
+52286,47495,22476,8697
+52287,29731,23760,12171
+52288,70576
+52289,44067,55841,17400,18180,32180
+52290,80229,21135
+52291,27249
+52292,23097,2387,3706
+52293,60085,39165
+52294,45669,34291
+52295,53574
+52296,54102,80195,60779
+52297,20996,44527
+52298,7356,47638
+52299,3614,40131,9696,13
+52300,14979
+52301,56151,47284,42045,27658
+52302,37791
+52303,32886,1013,58904
+52304,77004,20492
+52305,49792,49105,68811
+52306,23407,57298,64706,70334
+52307,52318
+52308,26882,63102,47501
+52309,50894,21933,68646
+52310,80635,62063,64266
+52311,47203,16300,18663,39808
+52312,19921,6517
+52313,18259
+52314,24731,74878,64070
+52315,29218,27928,64956,49900
+52316,19013,39984,47951
+52317,69151
+52318,51673
+52319,48361
+52320,65803,71525
+52321,69693,28817
+52322,635,38961,533
+52323,35742,3636,45558
+52324,42743,76795,54417,17663
+52325,43905,5233,71760,6182,48659
+52326,34642,48105
+52327,29821,21518,37788
+52328,19593
+52329,71086,17844
+52330,72410,63046
+52331,16398
+52332,54205,69497
+52333,8118
+52334,50385,38373,32315
+52335,50893,51574,29329,32631
+52336,1183,45283,18760,22020,29315
+52337,69739,14673
+52338,27000
+52339,25674,33468
+52340,25837
+52341,73106,5467,75538,12891
+52342,76042,57273,20687
+52343,74319,53844,78012
+52344,57631,58412,56579,30717,70035
+52345,32123
+52346,54550,38334,19544,38671,27110,81143,66012
+52347,53351,26491
+52348,36396,37349
+52349,70548
+52350,24320,77268,68399
+52351,17
+52352,31983
+52353,15360,65918,49192,2115,78478,14320
+52354,8632,13984,35259
+52355,80504,53980
+52356,51255
+52357,51754,7503
+52358,65236,5774
+52359,2351
+52360,21254
+52361,20209,11316
+52362,37327,12171,39855
+52363,9636,74630,4345,8283
+52364,25159
+52365,72204
+52366,73393,73942,75181,42014,45460
+52367,21478,18819
+52368,46365
+52369,60633
+52370,64259,71381
+52371,6932
+52372,82024,81026,27471,21768
+52373,21824,22262
+52374,76306
+52375,62882,3451,51490
+52376,56056,73588,35673
+52377,10815
+52378,51286
+52379,4379
+52380,27934
+52381,63857,43843
+52382,12012,59357
+52383,70315
+52384,5632,53883,22446,71647,17836
+52385,67937,70384
+52386,62126,32995
+52387,52780,15547,31067,53383,70992,75632
+52388,65733,14949,1948
+52389,81550,27945
+52390,31502,25500
+52391,13968,49790,38584,11974
+52392,70506
+52393,77113
+52394,56226,59263
+52395,65900
+52396,65671
+52397,31486,18795,23972,33934
+52398,55215,3380,51426
+52399,29171,39108
+52400,66758,7056,66419,80005
+52401,77584,72554
+52402,60632,13708,17004
+52403,23841,73298,12957
+52404,27366,12301
+52405,42537,30663
+52406,34502
+52407,49563
+52408,42256,43030
+52409,63676
+52410,49046,69253,21569,40388,4806
+52411,55366,32949,81197,58521,72480,14118
+52412,68896
+52413,20343
+52414,65371,56545
+52415,74852,14791,71097
+52416,40301,49179,17214,76679,24883,9902,33021
+52417,43390
+52418,55923,11054,23320,11677
+52419,45156,69879,20617,61747
+52420,33113,74401,35109,25164,33688,28
+52421,80020
+52422,40661,53046,77889,47363
+52423,37497
+52424,31946,13414
+52425,38488,59694,75933
+52426,50845,68330,82146
+52427,38409,284,12694,30574,8876,20568
+52428,3837,31316
+52429,56985
+52430,50913
+52431,35493
+52432,66968,71070,26584,71402,19202
+52433,36775,30720
+52434,23992,1462
+52435,59033,1213
+52436,64705,35420
+52437,1598,70458
+52438,39826
+52439,43563
+52440,61784,31367
+52441,52785,56323
+52442,54426
+52443,44048,40169,8516
+52444,63261,42006,69717,43926,50153
+52445,15822
+52446,53176
+52447,31767,44603,21663,15333
+52448,70885,28226,55832,6948,53935
+52449,73555
+52450,71532
+52451,65910
+52452,637,11983,77194,6813
+52453,33894,26539
+52454,41448,76278
+52455,35479,26960
+52456,80700,7342,50983,7639,7503
+52457,18327,32834,5763,68760
+52458,9902,47356
+52459,69918,42974,23494
+52460,62293
+52461,65918,5716,21758
+52462,78367,29129
+52463,13259,40483,49777,62881
+52464,25632
+52465,53220
+52466,17645
+52467,31459,18765
+52468,77418,1489,28827
+52469,56005,72534
+52470,57503,65112
+52471,40244,18435
+52472,450,4686,81447,28914
+52473,32328
+52474,44554
+52475,25856,54388
+52476,50720
+52477,9527,54696
+52478,7597,64978
+52479,61562,67070,39538,77031,39568
+52480,7677
+52481,68521,62752
+52482,64979,9356,44019
+52483,56734,21635,23354
+52484,61512,23021
+52485,75349,46787,9944,16885
+52486,37647,24219,22271,77005
+52487,65397,50585,52530
+52488,81358,36111,79030,7876
+52489,81211
+52490,53081,79858,1691
+52491,49613,26555
+52492,22307,5735,68828
+52493,72783,56067,22176
+52494,41987,34764
+52495,54647
+52496,7281,56527
+52497,44564,32176,65081
+52498,54161
+52499,26844,72220
+52500,4573,18663,4240,77698,64391,78335
+52501,29678,5527,32276,11735
+52502,1708
+52503,6121,64946,52812,10150,53313,63979
+52504,61967,39544
+52505,42062,57434,40821
+52506,36176
+52507,33682,23957
+52508,29209
+52509,62715,34332,3375,43003
+52510,62114,36172,27800
+52511,40411,24483,41950
+52512,10696,11551
+52513,42972,68376
+52514,33124,63865
+52515,63566,4705,51626,34497,7561
+52516,585,51329,32080
+52517,49202,28167
+52518,15334,28233,79173
+52519,16877
+52520,45818
+52521,74729,77996,3054,23259
+52522,33491
+52523,45956,1690,73213,11644
+52524,69920,25674
+52525,39230,19264
+52526,45168
+52527,6430,22817
+52528,36038
+52529,45978,20005
+52530,16897,49093,3299,59297
+52531,48234,31846,67921
+52532,61880
+52533,39021,67579
+52534,36902,29427,44807
+52535,20272,58466,76554
+52536,78079,68875,45143
+52537,31910
+52538,59896,32780
+52539,30468,10656,49318,50146,49411
+52540,6733,78328,13240
+52541,30249,18580
+52542,38089,7347
+52543,60667,55617
+52544,8931,54316
+52545,11503
+52546,53884
+52547,29352
+52548,36728,49124
+52549,60322,48719,27271,69233,77252,50000
+52550,65881
+52551,3010
+52552,4079,18857
+52553,22974,20950,33526,46393
+52554,7415,1632
+52555,67512,61250,61445
+52556,336,79567
+52557,20256,72242,74926,1878
+52558,79540
+52559,46476,74481,40072
+52560,12005
+52561,14322,18986,15283,76192
+52562,54951
+52563,55643,12903
+52564,62192,74428,25396,68066
+52565,12541,20889
+52566,25750
+52567,7219
+52568,21472
+52569,73839,6271,63892
+52570,5630
+52571,10187,54719
+52572,14838
+52573,36870,5738,15712
+52574,66949,70380
+52575,64551
+52576,80577,31028,62896
+52577,1296,14382
+52578,20012
+52579,69242
+52580,5516
+52581,16044,77791
+52582,64720,58991
+52583,54698,5554
+52584,30736
+52585,76314
+52586,36722,56218
+52587,54512,15193
+52588,9332,34065
+52589,25186,60001,42197,19501,40763,51528
+52590,50379
+52591,37077,68737
+52592,33574
+52593,24985
+52594,55376
+52595,69147
+52596,29084
+52597,2861,69044,2280
+52598,12238,5941
+52599,51719
+52600,25476
+52601,24053,3231,17212
+52602,45604,79031,267,941
+52603,7479
+52604,15853,64210
+52605,4215,48439,47421
+52606,20657,44728,45268
+52607,75745,16407
+52608,43750
+52609,19706,40667,39858,49532,52773
+52610,3885,66243,35747
+52611,23878,64252,15895
+52612,34734,69810
+52613,24862,33276
+52614,45079,34971
+52615,42853,12415
+52616,75446,3127,10717,53887
+52617,68001,30567,31798
+52618,80918,1041,15556,36805
+52619,29663
+52620,32629,18182
+52621,1220,38599,40478,67042,71148,8115,39075
+52622,25943
+52623,81582,35389
+52624,70100
+52625,62248
+52626,63579,32056,44023,14314
+52627,57733,670,47668,39111
+52628,76924,71730,44717,72343
+52629,1555,46947
+52630,3259,15076
+52631,42652,11186
+52632,32072
+52633,38774
+52634,74884
+52635,56014,7796
+52636,46550
+52637,22015
+52638,69676,50402
+52639,70538
+52640,32985,79303
+52641,43188
+52642,62314,32030
+52643,48554,16141,24721
+52644,24985
+52645,40882,62712,27989,4893,13354,1835
+52646,23742,53415,46624
+52647,3330,60602,68680,62094
+52648,42321
+52649,25751,25292,10661,45626,2112,31338
+52650,41821,40789
+52651,38144,59484
+52652,9573
+52653,72906,61428,4698
+52654,74570
+52655,4819
+52656,19809,10508
+52657,65340
+52658,28805,74084
+52659,63535
+52660,331,77509,54697,52200,22302
+52661,46666,7214
+52662,60194,14274,17967
+52663,20288
+52664,80731,17466
+52665,66005,14685
+52666,78214,42007
+52667,16513,34985,3138
+52668,76870,58469,61880,12217
+52669,34436,14265,73650
+52670,28752,47277,3953
+52671,31212,76809,35087,26363,21363
+52672,45898,12104
+52673,18371
+52674,77320,48561,80620
+52675,54863,9611
+52676,56330
+52677,61664
+52678,15406,17884,24573,64078,62319
+52679,59482
+52680,10741
+52681,71583,39597
+52682,10223
+52683,62576
+52684,48315
+52685,33842
+52686,80078,36695,75386,20386,51395,13657,5252
+52687,20001,1057,67789
+52688,17171
+52689,16532,46897
+52690,44885,17458
+52691,23289
+52692,52392
+52693,24486,62290,32931,15612
+52694,19915,66387
+52695,73864,43575
+52696,50743,31009,68488,36143,16584
+52697,64931,66536
+52698,11482,22048,37311,79968,30335,21673
+52699,72182,1047,66790
+52700,61307
+52701,5214,51202
+52702,16790,29649,56058,49586,47986
+52703,79962,47231
+52704,31149,70485
+52705,25456,64363
+52706,41108
+52707,19195,48458
+52708,18005,50455,80122,2758,80580,43633
+52709,17663,35308
+52710,42330
+52711,34475,28544,52897,61476
+52712,50180
+52713,14993,55379
+52714,41069
+52715,47933,57793,48342,15968
+52716,41990,46986,49337,60650,55393
+52717,39808,25561,76716,39603,21813
+52718,69676
+52719,47996,75654
+52720,60079,40189,40841,40064
+52721,50586,44820,11909
+52722,15883
+52723,80993,68014,17949
+52724,38058,20071,52798
+52725,48783
+52726,26528
+52727,79303
+52728,66263,65587
+52729,19141,47308,4107
+52730,59537
+52731,35171,26036,33887,73929
+52732,41949,51432,82028,23770
+52733,17132
+52734,22268
+52735,36713,13740,78516,74688
+52736,35993
+52737,31080,19343
+52738,25665,69812,2639,20103
+52739,14496,64967
+52740,68046,47061
+52741,73531,23897
+52742,16617,48689
+52743,27771,48254
+52744,56968,80080,28568
+52745,27655,71109,45992
+52746,15024
+52747,42193
+52748,41098,46524
+52749,17101,24256,66889,54670
+52750,51119,63376
+52751,73369,48259
+52752,7330,62593,44579
+52753,15316,25904
+52754,71093,44191,41898,34469
+52755,45122,65063,29553
+52756,12665,69061
+52757,53567,59732,50162,60903,28069
+52758,33538,40295
+52759,60623,22042,67526
+52760,142
+52761,33662,16906,47289,24305
+52762,46324
+52763,76898,67589,72404,9370,3186
+52764,78622
+52765,58678,40310
+52766,2219
+52767,39394,65240
+52768,37820,49826,15019,46181
+52769,37408
+52770,40385,73062,28125,55816,35926
+52771,19260,52252,41619
+52772,1869,28332,43500,40625
+52773,35818,57495
+52774,51139,35337,58267,67800,9718,18693
+52775,377
+52776,33305,74081
+52777,16436
+52778,30116,35462,28632,30812,4768,28832,4118,73714
+52779,31475,14105
+52780,65941
+52781,15994
+52782,66007,53967
+52783,40998,72102
+52784,76426,930
+52785,41817,5071
+52786,27770,43108
+52787,64417
+52788,11044,71879,53790,32497,64613,36857,14010
+52789,41069,53969,4336
+52790,47859
+52791,40186,3546
+52792,80935
+52793,8301,40929,65866,81080,46620
+52794,51208,56900
+52795,39302,64397,17202,71908
+52796,48180
+52797,8220,30879,50873,24660,33316,19760
+52798,75820
+52799,54240,6897,26050,34517,12172
+52800,23568,37065
+52801,47092,40681
+52802,52592
+52803,67866,28680
+52804,47550
+52805,16561,7039,49717,7775,53116,69727
+52806,18100,78925,26811,64223
+52807,54809,45270
+52808,64277,20158
+52809,27857,61547,73819,35945
+52810,67091
+52811,8268
+52812,5116,48407,59678,72923
+52813,77278,23903,10617
+52814,69263,44719
+52815,47081
+52816,67156,71436,5817
+52817,31942,24031,31926
+52818,55441,58348
+52819,51123,58787,52802
+52820,26065,76965,74818,70030
+52821,79512
+52822,6770,26644,2852
+52823,9596,61434,70667,49174
+52824,95
+52825,41069
+52826,78883,17517,44053,54681
+52827,80260,21699,5216,33914
+52828,9569
+52829,15762,51015,2486,1733,61218
+52830,2370,62258
+52831,37988
+52832,71009,9990,66478,21128,16224,78480,61334
+52833,50104,35959,30440,27045,35682
+52834,18355,34913,49578
+52835,79782,66922
+52836,68922
+52837,33399
+52838,16056,72719,71041,10062
+52839,68238
+52840,65201,40901,69234,48072
+52841,6911,16485,42580
+52842,54901,67033,36913,32625
+52843,36419,31467
+52844,43360
+52845,26611,81441,3506,15958,71230,35879,81729
+52846,15901,8617
+52847,67371
+52848,43830
+52849,60242
+52850,51381,37091,20515,5043
+52851,28130
+52852,20731,61500,68480,36391,77550
+52853,41522,5850,61318,67754
+52854,38628,80173
+52855,36801,8237,68227
+52856,45474
+52857,38164,1038,76643,65008,35468
+52858,67498
+52859,60713
+52860,44087
+52861,19971
+52862,17343,48640,30491
+52863,8418
+52864,9965,60881,30415,54180
+52865,41250
+52866,43416,3672
+52867,66104
+52868,80824,39898
+52869,79155,58316
+52870,71543,38681
+52871,29524,77337,76934
+52872,42051,31099
+52873,27864,62398,48070
+52874,73084,53532,60842
+52875,34788,19420,1298,121,26624,33248
+52876,53363,689
+52877,50975,56765,55354
+52878,33006
+52879,71254,75013,6202,1950
+52880,34439,26255,55860,56331,7025
+52881,37999
+52882,15428,9271
+52883,42575
+52884,50630,47991
+52885,5855,26620
+52886,8632,80772,13491
+52887,40720,30339,62589,81774,75422,40106
+52888,48562,4265,51625,52861,22035,25675
+52889,20505
+52890,27831,77307,36674,55341
+52891,15845
+52892,25534
+52893,10582,42353
+52894,81840,11435
+52895,60734,29724
+52896,79446,73412
+52897,18149,16665,73965,75898,41723
+52898,16681
+52899,36211,52157,20748
+52900,4325
+52901,66740
+52902,51424,38889
+52903,57227,39544,46540
+52904,1655,45839,42048,48462,30661
+52905,71352
+52906,47517,776,66650
+52907,52990
+52908,16981
+52909,2572,40641
+52910,42260,8181,11360
+52911,57848,51786
+52912,70805,57027,65186,6208
+52913,19360
+52914,43142,47158,21947,39063
+52915,36143
+52916,10520,17300
+52917,65467,23193
+52918,8284,15036,67309,60761
+52919,52148,49023,39151
+52920,61488,38417
+52921,4866,53409
+52922,43982,37308
+52923,55854,1222
+52924,57970,42330,30482
+52925,742,69044,47460
+52926,44110,60105,25768,30928,64050
+52927,42739,37619,11076
+52928,21236
+52929,46595,34375
+52930,11124,61331
+52931,11960,23438
+52932,30125
+52933,15215,80049,47062,21673
+52934,54761,32271,14859,49690,29830
+52935,79895,32976,11508
+52936,53398
+52937,53233
+52938,29560,40744
+52939,6940,63240,9208
+52940,28463,30311,71695,14597
+52941,31602,57289,35280,20624,51632
+52942,77360
+52943,78292,67534
+52944,2608,37807,7196
+52945,69085,65828,61113,59110
+52946,14143
+52947,67590,68509,9473
+52948,60312
+52949,2699
+52950,26651,31945,36528
+52951,10615,45215
+52952,72881,38298,29924,62326
+52953,67602,57616,18478,12626,56181,303
+52954,410
+52955,36065,58573,52434,28769,67037
+52956,39102
+52957,57815,21424,13847
+52958,38811,72551
+52959,58425,16941,1844,20608,53904,13092,28843
+52960,6996
+52961,1571
+52962,15153
+52963,44632
+52964,39000,19269,52572
+52965,65989,66856
+52966,79826
+52967,25429,31948,47096,78093,65852,76500,34585
+52968,875,77779,45452
+52969,3070
+52970,52520,33287,69668,30464
+52971,57431
+52972,23447
+52973,61523
+52974,41005,41218
+52975,6116
+52976,13775,48104,45973,703,5038,10503,72924
+52977,52985,38904,59017,2045
+52978,5519,58548,66790,11939
+52979,48676
+52980,78786
+52981,47381,74776,48976,10007,47600,5461,41443
+52982,8216,81829
+52983,51333,77685,1275
+52984,66498
+52985,20436,16712,81745,33308,40273
+52986,1360,59094
+52987,8284,22489,70397
+52988,44989
+52989,53208,28517,62782,26857,15321
+52990,47746
+52991,77206
+52992,45187
+52993,46834,49753,10672
+52994,54105,16048,14549,64724
+52995,80899
+52996,61772,71375
+52997,30176
+52998,72879,72400,28032,72391
+52999,23799,3763,82081,50626,62452
+53000,492
+53001,22605,29905
+53002,81975
+53003,73687,56445,28324
+53004,46124,61366,20493,80063
+53005,40140,50235
+53006,35730,51924,69193,31346
+53007,16319,79295,67600,78933
+53008,58753,18898
+53009,23299,9274
+53010,75917
+53011,34739,68420,6022,25069,25616,45683
+53012,12070
+53013,54508,37128,8214
+53014,7479
+53015,48263,72120,12311
+53016,55793,45225
+53017,72700,62361
+53018,41935,79552,69650
+53019,23473,62895,66358,35742,59297
+53020,45345,54986
+53021,66495,36166,35943,21355,51298
+53022,81170,6282
+53023,15262,29951
+53024,11038,62332
+53025,24761
+53026,4719,44930
+53027,20865
+53028,37725
+53029,47213,57706
+53030,40181,81372,80816
+53031,36914,55060,11548,11723
+53032,68710,36825,40293
+53033,81120,75629,19384
+53034,56648,80173
+53035,55776,35383,7466,45910
+53036,37995,73268,66842
+53037,13881,76349
+53038,36482
+53039,39609
+53040,56395
+53041,70047
+53042,44298,61304
+53043,31943,280
+53044,65507,37527,13470,26834
+53045,45493,23338,47148,23163
+53046,64231,36207,23255,71201
+53047,52826,64759,40459,68532
+53048,24568,24324,73811
+53049,22844
+53050,76968
+53051,39659,77310,60511,11494,50810
+53052,33224,29321
+53053,47482,3025,28705
+53054,8326,43965,35091
+53055,56628
+53056,12738,64317
+53057,59591,28738
+53058,50375,51491,43332
+53059,46384,75734,14837,58598
+53060,53930,30243,67423
+53061,19990,36579,57187,21182
+53062,81106,80664,17405,32759,29394,24818,45039,58162
+53063,67554,6315,42005,57045,37802,56699,36950
+53064,48761
+53065,19564,68048
+53066,22196,49015,36210
+53067,61437,41535,24072
+53068,62015,16366,40591
+53069,32409
+53070,65783,7706,48492,16308
+53071,58005,27136
+53072,19006,58198,42166,73888
+53073,40974
+53074,55455,38919,67827
+53075,81716
+53076,13586
+53077,66224,3620,34926
+53078,46908,30283
+53079,28782
+53080,77357
+53081,49556,16838
+53082,14052,11734,15700,53325,37320
+53083,79581
+53084,12526
+53085,42280,9917
+53086,66327,46003,15186
+53087,38668,30088
+53088,35569,60862
+53089,43222,77629
+53090,1171
+53091,36925,27625,17937
+53092,71706
+53093,56119
+53094,59356,18351,39542
+53095,81695
+53096,29553,64030
+53097,2414,60887
+53098,25154,48977
+53099,25813,23232
+53100,62516,39215
+53101,71485,29983
+53102,53984,31419
+53103,31796,35972,22538,44689,78763
+53104,66981
+53105,37477,52223
+53106,79336,64761
+53107,62452,6189,41747,67112
+53108,79161,49090,72598
+53109,56609
+53110,68998,27500
+53111,71203,44771,62255,39657,30058
+53112,39665,48340,66460,17154
+53113,52025,77848,61279,9735
+53114,65664
+53115,37317,78111,76885,5777
+53116,66342,75933,75654
+53117,54786,32677,76071,67187,7015,21766
+53118,75725,57208,30720
+53119,77574
+53120,27530
+53121,62499,70372,17591
+53122,76962,69221,29532,63656,73988,53880,3974
+53123,60870
+53124,21202,57351,44531,74597
+53125,63261
+53126,5263,49007,77862,43557
+53127,11548,1538
+53128,12039,80383
+53129,66417,61053,42664
+53130,12518,65567,4410,60686,76272
+53131,80121,5493,71125,74773,73000,12149
+53132,50157,71616,46738,8331,638,61732
+53133,2219,39280
+53134,5420,29585
+53135,4014,78255,39528,26395,8963
+53136,58679,69597,31826
+53137,12758
+53138,78846,2224,267,32232,65203
+53139,51552
+53140,2387,26663,34816
+53141,39149,19092,78805
+53142,53975,24438
+53143,14846,12552,38892,36347,49331
+53144,3431,68739,77523,16759
+53145,44976
+53146,66352,40255,8844
+53147,55568
+53148,63374
+53149,8068
+53150,39245,57252,81299
+53151,74616,1226,18061,35638,31643
+53152,56534,48798,28292,67393
+53153,60997,38456,73962,27482
+53154,76825
+53155,75616
+53156,77501
+53157,72416,4960
+53158,36922
+53159,20275
+53160,13372,17966
+53161,37660,49105
+53162,45868
+53163,30009,944,46714,19423,31371,55041
+53164,59657,66039,69537,75008
+53165,52002,16700,19695,47119,45062,14929
+53166,79860
+53167,20528
+53168,54791
+53169,32153
+53170,67005
+53171,56573
+53172,6862,16812,24689,22231
+53173,21515,27255
+53174,52208,24435,67319
+53175,6757,28581
+53176,58702,44078
+53177,22263,14603
+53178,3925,58899
+53179,81450,22287,50070
+53180,52541,7605,74403,79866,41296
+53181,11139,24522,75748,26434,55377
+53182,72749,68793
+53183,29033
+53184,50268,25591,70934
+53185,42416,63210
+53186,8591,35491
+53187,17482,35537
+53188,3571,36809,38452,12502,78529,26205
+53189,55779
+53190,5218
+53191,10767,62613
+53192,40943,23946,11640
+53193,16290
+53194,21465,59748,41857,44734,30047
+53195,52736
+53196,75615,75401
+53197,44068,43978,4118,49553
+53198,2023
+53199,3529,80333,49299,23045,7516
+53200,61119,30914,2210,37550
+53201,1703
+53202,35224,32203,10708,32553,25423,5287,71714
+53203,39053
+53204,26769,6106
+53205,51802,38966,44248
+53206,26786
+53207,61427
+53208,6280
+53209,35142,55851
+53210,69071,77681
+53211,44281,7115
+53212,58548,76824,27926,44390
+53213,28811,42158
+53214,42858,35895,4241
+53215,76344
+53216,45473,31101
+53217,58683,39872,34971
+53218,4171,48303,32707
+53219,51905
+53220,13941
+53221,25996,24487
+53222,27201,45388
+53223,5383,66963
+53224,17970
+53225,59958,2487,57425,44894
+53226,42373
+53227,82111,52395,11646
+53228,74321,64658
+53229,68534
+53230,26484
+53231,39875,22782
+53232,29113,2549,15646,54205
+53233,5257
+53234,20165,72392
+53235,9285,42218,3240,78308
+53236,58791,19075
+53237,47025,80801
+53238,38549,38611,16095
+53239,11141
+53240,53959
+53241,27818,21800,2471
+53242,31512
+53243,22890,5736,45000
+53244,34140,9334,46363
+53245,1426
+53246,81364,36110,13569,129
+53247,45705,23948,77027
+53248,80080,46481
+53249,45558
+53250,6265
+53251,73345
+53252,69896
+53253,32264,67962
+53254,51494,66172,74992,65338,73718,70372,40752
+53255,10687,39842
+53256,73899,13329
+53257,46370,7821,36960
+53258,29459,48969,8026,78950
+53259,21608,30820
+53260,2628,20643
+53261,27707,9173,20983,29227,31706
+53262,39703,57372,32731
+53263,28605,74161,58068
+53264,37561,66222
+53265,510
+53266,66519,51702,65014,70144
+53267,51701
+53268,28161,51590
+53269,15139,63572,62852
+53270,59133,21852,49259
+53271,23001,71501
+53272,73146,56985,3415
+53273,26234,24182,52900
+53274,47859
+53275,73354,43713,14186
+53276,58813
+53277,72252,68583,76336
+53278,8412,48626,3274
+53279,9135,4307
+53280,63046
+53281,39574,78721
+53282,55254
+53283,33687
+53284,75454
+53285,53482,14973
+53286,55876,18637
+53287,61392,43671,69473
+53288,6602,72599
+53289,62827,75843,41315
+53290,10917,59407
+53291,74708,81696,47290,68938
+53292,68196,40654,68649
+53293,50427,12851,57374
+53294,64795
+53295,22451
+53296,39683,75832,47700,62443,70495
+53297,10716
+53298,34185,79363
+53299,67240,51171,64874
+53300,75335,9553,80684
+53301,77066
+53302,44095,7978,65454,29002,21225
+53303,69025
+53304,36080,10090,11271,46409
+53305,47302
+53306,40429,49234,58582,7064,80553
+53307,68078
+53308,24631
+53309,13019,36517,24139,3860,47716,61284
+53310,81576
+53311,6226,13992
+53312,60457,39519
+53313,7965,27873
+53314,7754,13340,9907,310
+53315,39541
+53316,72336
+53317,12657
+53318,47797,5931
+53319,78819
+53320,69557,52111,72708
+53321,49566,43790,21799,46855,75535
+53322,78193,8572,23083,52383,79400
+53323,3852
+53324,79544
+53325,11262,7673
+53326,37517
+53327,16522,54468,56371,27625
+53328,74724,27708
+53329,30430,56920
+53330,40460
+53331,75618,43422,10405,70547,31241,10248,70643,53123,73151
+53332,126,45163,785,2216,7874
+53333,23988
+53334,10322,48511
+53335,3539,3613
+53336,36578
+53337,53420,77079,22063
+53338,4866,34257,64160
+53339,39718,57110,37934
+53340,10909
+53341,62554
+53342,74492,64979,73920,17960
+53343,57514,34663,36409
+53344,25589
+53345,74489,67402
+53346,8357,11660,15578,69649,51099
+53347,55811,2697,1401
+53348,77090
+53349,18906
+53350,68808,79587,31780,71721
+53351,41540,48021
+53352,56521,16958
+53353,34842,40725
+53354,60383,1948,3542,23653,6501
+53355,1366,33676,54310
+53356,25747
+53357,41029
+53358,48170
+53359,77955,8522
+53360,57451,25016,39223,66212,39832
+53361,4779,79733,71089,57372
+53362,64906
+53363,78662
+53364,3058,9073,60976,12615,12429,54097
+53365,32137,43635
+53366,29465,27190,61656
+53367,1056
+53368,34502,48797
+53369,32003,81795
+53370,885,40314
+53371,44326,73413
+53372,54533,47935
+53373,52679
+53374,41494
+53375,58380,75939,52867
+53376,23788
+53377,33590,44866,66380
+53378,55464
+53379,61663,9880,970,74030
+53380,11734
+53381,28382
+53382,63979
+53383,73116
+53384,817
+53385,18284,35555
+53386,3899,54429,30059,64763,17767
+53387,20053
+53388,11563
+53389,71497,21101
+53390,2925
+53391,30918,47374,32347
+53392,42884,14699
+53393,4191
+53394,33148
+53395,23024,70232
+53396,78357
+53397,36614,15424,64851,52403
+53398,31887
+53399,61832,52326,81936
+53400,52184,62741
+53401,78455,43227,51826
+53402,58612,80631
+53403,17360
+53404,80650
+53405,22098,67405,17111,32976,32179
+53406,19212,33908
+53407,43038,19811,14005,34677
+53408,12624,4719
+53409,2293,63814
+53410,74294,7508,6809,19290
+53411,32447,13317,8771,63738
+53412,50231,54849,68282,8844,71573,2822,17383
+53413,24580
+53414,67866,70025,28233,38925
+53415,7093
+53416,36895,22278,16050
+53417,48435,58558,78070
+53418,15432,50430,76784,49115,33933,53853
+53419,21974,37433
+53420,22549
+53421,7294
+53422,73113,33382,67530,25919,18002
+53423,76127,22331,37059,48865,20803
+53424,21669
+53425,81564
+53426,54739,52738,77674
+53427,65609,43719,55243,10788,8975,35241
+53428,70777,32136,5543
+53429,34912,52499
+53430,33352,9210,67791
+53431,21459
+53432,22909
+53433,60101
+53434,23237,74643,20174,27708
+53435,73929,14632
+53436,39276,66248,57901
+53437,20038
+53438,32105,52734
+53439,335
+53440,40590,22580,54078,38863
+53441,61871,75910
+53442,3261,77708,79819,72718,68711
+53443,6047,59298,10679
+53444,3767,9218
+53445,55953,20913
+53446,80328,77689,67329
+53447,9824,51115,25183,54977
+53448,64813,71251,53179,68261,48300
+53449,4988
+53450,45855,60294
+53451,60313,19686
+53452,52019,25441,28406,17636
+53453,5145
+53454,55896
+53455,78003
+53456,44221
+53457,10141,45512,38938
+53458,46710,9795
+53459,2322
+53460,6574,25596
+53461,52983,2696,22615,30446,47365,78722,27257,1435
+53462,16712
+53463,66378
+53464,33162
+53465,42851
+53466,71614,36618,74298,38273
+53467,55665,46545,36160,37300
+53468,11068,30227,8389
+53469,73578
+53470,19734,56189,48766
+53471,68764,13779,71695,2368,12385
+53472,11242
+53473,19871,29587,36852,66079
+53474,10818,1527,67082
+53475,28340
+53476,57789,161
+53477,7398,68914
+53478,59969
+53479,61470
+53480,72047,19579,3769
+53481,24744
+53482,41020,27361
+53483,45316,59886,71949,72114,25880
+53484,11168
+53485,70513,41024,65250
+53486,30461,52056
+53487,35976,46898
+53488,46010
+53489,24415,49951,63187,36681
+53490,65263,64728
+53491,67196
+53492,24453,36855
+53493,52262,53518,66490,22188
+53494,33840,14993
+53495,65421,58840,67743,8278,45158
+53496,30936
+53497,40829,39825,19524
+53498,76384
+53499,62101
+53500,37083,11730
+53501,30172
+53502,33295,29281,25660
+53503,17454,61480
+53504,47256,32634,60374,38013
+53505,33745
+53506,75370,67288,67220,32681,40234,12720
+53507,57575,67652
+53508,34387
+53509,15856,1729,81315
+53510,58680,79432
+53511,66123
+53512,11813
+53513,76076,5044,4265
+53514,4133,33593,53325
+53515,26430,63703,34819
+53516,55758,69996,25786,8268,58752
+53517,63854
+53518,35304,2526,6565
+53519,32227
+53520,81534
+53521,60903,14609,45264
+53522,40472,22722,70727,31570,4657,28367
+53523,12613,53559
+53524,37066,36442
+53525,80615,78328,15929
+53526,12631,9844,72278
+53527,56382
+53528,35614,72533,81215,5713
+53529,29726
+53530,36155,50759
+53531,45019,67956,33800
+53532,52624,26041
+53533,34520
+53534,17322,3339,1302,38137,73274
+53535,59708,1895
+53536,58791,39638,2241,39965
+53537,9132,53574,8559
+53538,55734
+53539,68351
+53540,34734
+53541,63844
+53542,61973,75694
+53543,55875
+53544,36174
+53545,64009,32747
+53546,41299,45827
+53547,16188,13136,35416,71295,18259
+53548,74323,23411
+53549,53455
+53550,50677,64186,51904
+53551,7883,40294
+53552,37237,62427,25597,4206
+53553,57743
+53554,78961,81471,68420,30434,2900
+53555,3613,33024
+53556,11465,57570,24890,74399,51123,9587
+53557,17070,54579,14261,34859
+53558,44097,58649,81812
+53559,74665
+53560,45997,2435,18351
+53561,21933,16000,71644,50570,20497
+53562,36174,17135,62020
+53563,81598,25113
+53564,24054,76396
+53565,15451,59094,36559,13510
+53566,52567
+53567,65555,25392
+53568,44328,31379,1335,67833
+53569,16315,38478,77079
+53570,26376,15828,59804,18187,64739,55116
+53571,36490,73997,72978
+53572,23741,69178
+53573,38325,45649
+53574,23339,36473
+53575,60933,65986,79256,44793,15968
+53576,1290,58169,72012,44162
+53577,76532
+53578,31795,11906
+53579,68297
+53580,47717,25810
+53581,78079,15583,57578
+53582,52349,18840,18525
+53583,10081
+53584,65258,23645,45520
+53585,81572,12558,63696
+53586,43269,8720,3414,45273,14405,20260
+53587,13984
+53588,21455,20062,44531,58459,12860
+53589,19851
+53590,32973,56868
+53591,69943,5724,58827
+53592,51678
+53593,66116,59264,59580,77793,63680,72856,43370,8339,25169
+53594,5702,25005,77153
+53595,43197
+53596,70309,53643
+53597,79039,7580,59993
+53598,81295,7413,44354,44534,41610,23354
+53599,64646,17353,41297
+53600,25071,21564,22761,74688
+53601,65124,20773,15105,59382
+53602,66541,29212
+53603,14200
+53604,53643,71959,54920,78003,34862,39975
+53605,81102,34669
+53606,40694,58348,36468,13170
+53607,54757
+53608,65839,24311,80462,58922,10957,30218,30816
+53609,23999,10939
+53610,78556,41112
+53611,43230,38703,34386
+53612,30799,19859,31811,22080,7071,53835,65066
+53613,43259,33479,48414,29384,70945,62781,17464
+53614,43090,23610,79668
+53615,18083,74645
+53616,21106,10220,57693
+53617,69683,76937,48504,67317,66963
+53618,14347,45187,68501
+53619,20969
+53620,21177,6390
+53621,63159
+53622,57114,2194,9670,12767,72132
+53623,25040,34194
+53624,23086,24696,67992,63082,30681,15022
+53625,48688
+53626,13345,29683
+53627,17233,5262,67825,1209,19439
+53628,59432,7189,44306
+53629,31760
+53630,81835
+53631,12361,45055,72985,52113,6021
+53632,38228,38869,5933
+53633,61727,10076,76682,49998,8191
+53634,28312
+53635,45194,45365
+53636,28741,37989
+53637,21145,44389,25253,65313,52983,69829,47834
+53638,11073,45140,37084
+53639,46050,47406
+53640,77214,36394,50029,81869,28297,72091
+53641,77087,23985
+53642,73152,32968,30235,68825,77698,29277
+53643,19714,24201
+53644,23051
+53645,37407,8998
+53646,15092,9045,32666,31089
+53647,57060,27689,25596
+53648,70575,39269
+53649,54101,46030,37725
+53650,10211,4121
+53651,27487,39449,39775
+53652,64658,30767,72743
+53653,47656,15989
+53654,7601,31345,57571,12290,2307,34215
+53655,8791,57988
+53656,43203,20372
+53657,22118,24375
+53658,1672,37894,76388,35289
+53659,15226
+53660,37788
+53661,12449,28702,16901,21550,246
+53662,78688,53337,65069,29050,18099
+53663,60720,71317,37089
+53664,73918
+53665,28776,5383
+53666,78470
+53667,76362
+53668,45829,73840,46331,14924
+53669,30654
+53670,36547,62869,39037
+53671,71702
+53672,61394,30416
+53673,16571
+53674,15165
+53675,29762,56556,11782
+53676,75713
+53677,43368,60912
+53678,61476,65765,63815,7916,79113,80631
+53679,81243
+53680,72307
+53681,39195
+53682,9217
+53683,60130,78001,51661
+53684,7451,78610,44331,7335,77227
+53685,66551,51272,37885,38653
+53686,77380,63020,67821
+53687,58086,44356,13380
+53688,67208
+53689,29086,76441
+53690,58991,78117,26785
+53691,37713,21651
+53692,26309,44245
+53693,66772,14493,55688,34172,5319
+53694,17317
+53695,19221
+53696,58813
+53697,65117
+53698,62384,61571,62493
+53699,52401
+53700,40674,19480
+53701,77418,34917
+53702,72782,38361,28572,24225
+53703,37755,25586,41288,814,72333
+53704,55502,55247,52137,16515,56528
+53705,54986,19703
+53706,10687,44431,45944,69083
+53707,48336
+53708,36294
+53709,31542
+53710,54543,8810,61980,13031,38228
+53711,52023,54672
+53712,72008,36841
+53713,28466,5644,35400,45219
+53714,60729,60269,70453,70291
+53715,70273,38388,72760,21660
+53716,1130,25639
+53717,52663,64356,60787
+53718,15246,14408,71830,34741,9499
+53719,47648,63854,56950,60048,24394
+53720,29267
+53721,48707
+53722,20991
+53723,59642,58331
+53724,9304,14558,4207,43523
+53725,32617,12592,42567,23165,21196
+53726,9061,57465
+53727,2593
+53728,76589,3119
+53729,29401
+53730,67395,79879,30934,1858
+53731,13592,61901
+53732,38746,42480,19360
+53733,18427
+53734,44523,1655,69908,65716
+53735,19858,26861,70708,37366
+53736,39859
+53737,69786,68679
+53738,299,508,19389
+53739,31868
+53740,43500,32848,63139
+53741,56848,62571,68950,69393
+53742,77153,72177,36259
+53743,35762,71059,4547
+53744,70841
+53745,77696,28765
+53746,68194
+53747,1216,9899
+53748,79902,9905,47381,29222
+53749,9150,53770
+53750,30994,74481
+53751,50688
+53752,51673
+53753,33119
+53754,76743,61236
+53755,48762,32995,39571,20440
+53756,6012,79215
+53757,75624,50535,48897
+53758,27822,40776
+53759,65466,78334,34341
+53760,73070,10174
+53761,56484,62130
+53762,36394,33468,75545
+53763,13824,80772,15942
+53764,21887
+53765,74158,65365,59933
+53766,54838,48359
+53767,71138,47819
+53768,35347
+53769,60206
+53770,35993
+53771,36470,41730,19901
+53772,351,37886
+53773,39210,60711
+53774,9062,54162
+53775,5391,81633
+53776,17566,77063,75518
+53777,28751,32590
+53778,75272,21456
+53779,9983,64782
+53780,56813,17194,76927
+53781,63503,41196
+53782,9285,48393,50158,56931,68597,24130
+53783,22962
+53784,49986,74614,49200
+53785,4581,72372,23861
+53786,6527,12468,70118
+53787,24142,10186,68052
+53788,15577,52352,26233
+53789,65366
+53790,53936,38441,71257
+53791,74692,29730,79067
+53792,74801
+53793,30656,754,31367
+53794,24564,13308,67981,55528,17565,25975,81180
+53795,79268,72677
+53796,42878
+53797,16062,19416,15137,77185
+53798,33738
+53799,69025,45251,52151,14759
+53800,70636,43607,4336
+53801,16335,15593,11419,53455
+53802,4799
+53803,43266
+53804,11689,41330,7200,12056
+53805,9577,79084,70019,42609,82003,57241
+53806,56713
+53807,43434
+53808,71594,26982,9146,81278,18296,15927
+53809,40019,20528
+53810,81017,81271,33470
+53811,78997,3791,54671
+53812,23585,46445
+53813,59216
+53814,35993
+53815,61633,5810
+53816,21027,26197,12208
+53817,5316,34726,17772
+53818,72923,67937,961
+53819,45074
+53820,21565,78423,58732,78093
+53821,79400
+53822,70603
+53823,15150,80917,58423
+53824,64128
+53825,15598,18336,47740,75104
+53826,30675
+53827,77657,64842
+53828,43024,30268,14680
+53829,66642
+53830,81409,70772,23878
+53831,1188,24878,78395
+53832,23683,963,32500,45793
+53833,35236,61146
+53834,41048,31976,7812
+53835,77050,71837,52667,7588
+53836,44369,74446
+53837,2252
+53838,13146
+53839,62492,74724,55900
+53840,27461,4446
+53841,7803,79163,11785,21808,33069
+53842,53042,45813,65469
+53843,4382,57990
+53844,15628
+53845,40735
+53846,68762
+53847,53605
+53848,75401
+53849,58078,33723
+53850,36247
+53851,336,16,44464,44095
+53852,16433
+53853,53803,14953,19848
+53854,4295,26527,1560,57150
+53855,32800,51742,13965,28869,36510
+53856,16384,57927,29740
+53857,59017,52231
+53858,58174,47580
+53859,29571,47763
+53860,32139
+53861,77032,28361,9519
+53862,29004,54605,44321,75877,78359
+53863,73635
+53864,57996,68564,50330,33791
+53865,24692
+53866,64122,50540,33991,51739
+53867,57687,78000
+53868,24847,19431,46249
+53869,4225
+53870,75143,51935
+53871,5971,76708
+53872,27876,25157,5958,64178
+53873,7982,1821
+53874,79030
+53875,49459
+53876,8874,3969
+53877,45622,10034
+53878,62247
+53879,67136
+53880,58779
+53881,10284
+53882,2351,34778
+53883,50551,14981,46331
+53884,45132
+53885,17653,48401,39047,30565,63378
+53886,49268
+53887,43916,3750
+53888,34205,49520
+53889,48124
+53890,27548,42299,4011
+53891,68749,1089,72584
+53892,63622
+53893,48836,14063
+53894,41540
+53895,52313,67992
+53896,2124,22752,71774
+53897,5337,30375
+53898,12435,71731,59150,69327
+53899,21481
+53900,78125,49362,52386
+53901,81835
+53902,81872,29301
+53903,59479,29531,71235,54598,53628
+53904,66213,69001,66830,41397,69250
+53905,33491
+53906,59833
+53907,22260,68096,70018,2928
+53908,76333,30251
+53909,69782
+53910,29093,51729,30580,45409
+53911,42514,25696
+53912,24001,34042
+53913,18517,27215,4879
+53914,66167,29167,80880
+53915,11158,16636,68422,68216
+53916,34785,52746,52391
+53917,4250,11510,13253,39037,12726
+53918,51801,2108
+53919,51910,67781
+53920,1283,15890,78394,9172,63043,60005
+53921,81402
+53922,26728,58740,57656
+53923,1079
+53924,28117,60226,71518,63306
+53925,37634,58376,52786,9936
+53926,61411,68645
+53927,16003,27871,12099
+53928,64613,30002
+53929,72369,22358
+53930,41359
+53931,46790,74578,53688
+53932,9511
+53933,38625,42619
+53934,49162
+53935,52147,32215,18800
+53936,61042,53967,44801,75699
+53937,79200,50415,63355
+53938,7642,13355,57214,12211,65793
+53939,67512,31741,3272
+53940,30894,65873
+53941,19350
+53942,64069,51107
+53943,67995,17170
+53944,207
+53945,49384,17652
+53946,57788,49109
+53947,80940,63472
+53948,56259,75617,76468,13995
+53949,29727
+53950,49638,2120,38438,3064
+53951,55109,15712
+53952,65495,23540,40,3830
+53953,13809,46209,80923,15835
+53954,66394
+53955,80615,73307,3969
+53956,25559,22568,54889,74998
+53957,64765,26821,49776
+53958,45066
+53959,10788
+53960,60375,39665,69991,63469
+53961,60653,22413
+53962,6687,33666
+53963,9012,60667,79510
+53964,25251,19584,13794,72662
+53965,38966,17963,68517,35420
+53966,81840,1175,67410,27445
+53967,51769
+53968,57494
+53969,64309,38706,17401
+53970,2549,14497,73988
+53971,22612
+53972,22813
+53973,50549,6754,24559,30360
+53974,45491,34345,59116
+53975,58246
+53976,38844
+53977,70773,4496
+53978,74303
+53979,79799
+53980,39734,23859,42510
+53981,39791,39201,21911
+53982,70315,77155,66186
+53983,55181
+53984,48402
+53985,45172
+53986,74740,68188,71701
+53987,47677,69321,50107,78921
+53988,60577,8391
+53989,4810,9121,42824,59178,71389
+53990,59127,50600,48412
+53991,81380
+53992,10642,71663,12284,32990
+53993,22655,29465,59561,67854
+53994,25167,62785
+53995,10799,74121
+53996,4524,19312,60753
+53997,15605,31437,59185,5008
+53998,68353
+53999,28347
+54000,77312
+54001,957,63269,40546,57875,10573
+54002,54702
+54003,54779,62077
+54004,73584,65647
+54005,16554,2831,13274,11242,22394
+54006,38561,49188,72986,8928
+54007,73148,18104,14366,34656,58001
+54008,46387
+54009,46304
+54010,29673,36647,37493,37062,79544,57401
+54011,5390,68121
+54012,19019,69214,60358,38154,52433
+54013,49874,48787,49993
+54014,4063
+54015,4336,77307
+54016,5501,10152,76800
+54017,79336
+54018,8720,24039,11853
+54019,9758,37918,35301,23279,57628,9146
+54020,32523,62896
+54021,40836,16043,28700
+54022,62094,23106
+54023,52597,46287,76908,30058,13794
+54024,43546,20773
+54025,71895,73370,63783,9799
+54026,3296,69310
+54027,32317,7220,16183,63067
+54028,59285,44560,5154,67644,9667
+54029,78254,65435
+54030,24248,34505
+54031,48201,42755
+54032,80628,81159
+54033,17668,9107,9920
+54034,36018,45460,31746
+54035,37571
+54036,32330,60995
+54037,8195
+54038,28569
+54039,44591,6101
+54040,22257
+54041,66854,38586,19079,48805
+54042,31020,3368,59352
+54043,23249
+54044,49691
+54045,65182,16052,24178,41980
+54046,49705,29812
+54047,53926
+54048,11261
+54049,44053
+54050,25906,2306,58174
+54051,40221,74642,73966
+54052,77538,59641,25223
+54053,35815,48918,52407,60472,14703
+54054,8974
+54055,51951,6839,6564,32540
+54056,8104,70090
+54057,36602,9374
+54058,17991,19032,63923,22976
+54059,45514,57187,57778,33896
+54060,4280,15997
+54061,56255
+54062,37046,32968,35183,26559,53344
+54063,4428
+54064,61833,46862
+54065,77608,41530,76380
+54066,14277,78077,39407
+54067,6562
+54068,10994,59472
+54069,56203
+54070,15994
+54071,76162
+54072,54596,37491,62469
+54073,81386,40640,53887
+54074,8554,66149
+54075,31543,21007,77758
+54076,30109,79168,35693,79337
+54077,49977
+54078,40541,75410,44370
+54079,54592,18136
+54080,47941
+54081,42562
+54082,60547,19917,59469
+54083,69951
+54084,38369,37424,50651
+54085,2423,16431,4258
+54086,58388
+54087,10972
+54088,27966
+54089,42664,50440,76853,5680,52941,9052,28418
+54090,79796,75238,75677
+54091,32832,56639
+54092,63002
+54093,7481
+54094,67353,21613,74644,33215,58650
+54095,31964,26735
+54096,63985,65700
+54097,48169,1667
+54098,48530,51318,58412,31029,78117
+54099,30032,47384,55998,31615,47497
+54100,26271,39275,39485
+54101,29708
+54102,76369
+54103,12608
+54104,81205
+54105,67369,44998
+54106,3253,19351,50359
+54107,63987,38140,54111
+54108,49244
+54109,71141
+54110,2006,36509,22135,4752,46269,45623
+54111,47846,42827,52470,58137,72205
+54112,21206
+54113,25398,35899,9502
+54114,109
+54115,56186,17709
+54116,33924,3648,35282
+54117,37269,25802,28928
+54118,55898,39495,48569,36985
+54119,11482,7560
+54120,42858,30110,2407,27537,79469,93,14225
+54121,50742,42671
+54122,65838,74484,27501
+54123,16286,62844,17896,81007,28072
+54124,19242
+54125,46337
+54126,13824
+54127,269
+54128,44532
+54129,52426,46228,73646,20559
+54130,52988
+54131,4925,23310,48428,31528
+54132,30009
+54133,49363,73200
+54134,36900,47410,75719
+54135,48697,4206,36101,71815
+54136,52085,13135
+54137,79877,7317,61707
+54138,77348,15189,13266
+54139,2674,63184,39037
+54140,23878,51622,59316
+54141,11945,31641,79272
+54142,51281,71617
+54143,49026,72718,18490
+54144,17345
+54145,70494
+54146,56910,65415,59896,27942,17527
+54147,19215,52801,57527,43551
+54148,60050,30536,45333,13131
+54149,79193,31125,41700,69234
+54150,77900,68521
+54151,15671,66150,66048,41699
+54152,2049,62861
+54153,76318,79986,35544,59709,55285,24689,53881
+54154,59919
+54155,31724
+54156,33990,71533,18944
+54157,37380,79739
+54158,65410,74960
+54159,14759,398,11026,31840,58952,14894,78922
+54160,13785,65535
+54161,64030
+54162,16407
+54163,74903,10651
+54164,52883
+54165,81443
+54166,75339,14680,53651,64625
+54167,32105
+54168,52892,79040
+54169,39916,77326,19295
+54170,27503,13456
+54171,65100,62816,41388
+54172,40519,42053
+54173,39050
+54174,18930
+54175,73310,685,19120,16313,34054
+54176,71770,2028
+54177,28837,50231
+54178,5059
+54179,67175,49790
+54180,32660,69821
+54181,26585
+54182,60712
+54183,77254
+54184,26572
+54185,46978
+54186,35781,64822,1636,7623
+54187,43931
+54188,38045,69414
+54189,66619,75192
+54190,56203
+54191,43737,75674,15437,16807,63744
+54192,39673,70826,45809,40672
+54193,81753,40145,38348
+54194,52440,40303,57636,68021,5987
+54195,47687,68965,25400,37915,63391
+54196,70593,54851
+54197,65719,12513,30644,44316,80420,26754
+54198,6273,24462,71526
+54199,72693,5665,60389,58633,39364,66510
+54200,58703,13007,5516,6338
+54201,43720,51529
+54202,14495,4458
+54203,51963,61766
+54204,64725
+54205,60328,54812
+54206,17793,25945
+54207,77298
+54208,71070,40174
+54209,52160,5665,39135,6908
+54210,55094
+54211,61312
+54212,1258,45476
+54213,7068
+54214,23825,77318,64684
+54215,66571,63058
+54216,55738,23286
+54217,57153
+54218,75165,59042
+54219,1069,6016,17312
+54220,13186,73210
+54221,53214,80989,24509
+54222,43523
+54223,49056,39353
+54224,67329,47595
+54225,76550,15603,49491
+54226,43004
+54227,72936,12323
+54228,19024,19453
+54229,2862
+54230,37300,70956,26979
+54231,27903,16516,27202,50984
+54232,4494,8665
+54233,66639,28459,56066
+54234,73639
+54235,9765,39127,17924,68697,22435
+54236,10253,51096
+54237,80615
+54238,3074
+54239,52216,14596
+54240,14097
+54241,7748
+54242,32105,59042
+54243,61427,65933,45778,6228
+54244,56218,77656
+54245,10978,59655,69031
+54246,31319,30938
+54247,29316,43459
+54248,6291,14505,19270
+54249,25835
+54250,40679
+54251,31968
+54252,59046,21793,65351,40702,63402,33241
+54253,26148,38696
+54254,61857,21765,35950,3782
+54255,67174,49589
+54256,66483,28761
+54257,47119,17945,33277,63269,43679,53561,61999
+54258,67992,67807,64221
+54259,70494
+54260,33887,2216,44048
+54261,21996,15620,66376,55045
+54262,12610,517
+54263,20611
+54264,50311
+54265,23443,29053,45122
+54266,62087,13769,48415,3668
+54267,56258,77731,57332,78213,48155
+54268,69377,35628,48090,41673
+54269,15219,67505
+54270,47930
+54271,29033,66574
+54272,78063,64123,12510
+54273,77414
+54274,75873,63187,16121
+54275,22465
+54276,70546,54990,65793
+54277,21848,38396,78238
+54278,25036
+54279,8255,72657,7322
+54280,25711,31910
+54281,25451,50870,20252
+54282,45042,33218,79955
+54283,28764,15542,53516,74582,82062
+54284,27010,6396,70496,74484,44768,66276
+54285,75080,77050
+54286,57187,31567,64213,22069,61802,21190
+54287,48919,75605
+54288,1128
+54289,16851,76866,4005,5048,79511,52326,37438,72095
+54290,8359,58698,27071
+54291,15257,59980,48682
+54292,17627,37790
+54293,57054,54506,47072,15087
+54294,12458
+54295,46148
+54296,11870
+54297,45722,28124,41577,51210
+54298,70947,5809,24205,50412
+54299,53226
+54300,78029,69280,52900
+54301,40550,33523,77226,29407
+54302,45145
+54303,80217
+54304,47427
+54305,1762,37047,13654,5569,22947,65084
+54306,9756
+54307,61864,59467
+54308,8296,70542,28640,75443
+54309,3129,46867
+54310,54248,23289
+54311,33478,41824
+54312,19075,9615
+54313,16518
+54314,47404
+54315,70848
+54316,21460
+54317,42144,46926
+54318,20407
+54319,56779
+54320,34275
+54321,25472
+54322,51445,66570,11190
+54323,65535,45264
+54324,564
+54325,37297,56051,33954,57279,14194,16611
+54326,79525,75325
+54327,28088,67861,58321,49695
+54328,77426,28639,44793,53378
+54329,34533
+54330,78558
+54331,37542,35470,48857
+54332,21859
+54333,72992,43883
+54334,74679
+54335,64231,30921
+54336,31528,9846,46382,24781,53853,4838,58892
+54337,12405,38805,31704,67152,35866
+54338,47546
+54339,79627,23525,79473,68956,45494
+54340,3937
+54341,79905,74465,18021,48763,66821
+54342,68421
+54343,7090,74942,68707
+54344,2407,39517
+54345,43178,1849,5545,78628,35551,653
+54346,13388
+54347,58901,2786,34531,77022
+54348,72358,67352,12920
+54349,10325,17971,62129,68299,69190
+54350,15560,66431
+54351,45874,20874
+54352,49331
+54353,53734,55769
+54354,3869
+54355,34816,52689
+54356,45550,30509
+54357,50885,46209,48854,38296,13930,19431
+54358,9421,34594,13059
+54359,71689,34657,77126,10391
+54360,76139,74837,53276,15605
+54361,32836
+54362,23692,71207
+54363,40210
+54364,29067,21036,49126
+54365,67983
+54366,65953,12579,44376
+54367,58133
+54368,46600,58557
+54369,40584,80164
+54370,1784
+54371,28362
+54372,46340,31441,1038,76702,15335
+54373,67495,3210
+54374,73342,81938,47149
+54375,44787,44297
+54376,42346,38096
+54377,22094,17422,46693
+54378,54975,40740
+54379,56590,46067,58493
+54380,63401,80926
+54381,69901,55013
+54382,68737
+54383,34082,78263
+54384,2331
+54385,48414,11172,68699
+54386,60139,22093
+54387,77229,49650,49322,9908
+54388,53049,54456,58115,26901
+54389,51557,5695
+54390,26950,11901
+54391,65650
+54392,13398
+54393,30941
+54394,37398
+54395,50224,6002,62611,29782,52485,29473,14595,18992
+54396,65188,65657,12691,33969,22812
+54397,51596,80656,30397,50853,69595,80802
+54398,64496,61587
+54399,44862,75557,20444,33095
+54400,40825,9218
+54401,61550,19215
+54402,2073,71301
+54403,63129,22543
+54404,13474,78321,61698
+54405,55691
+54406,18083
+54407,75945,40249,60813
+54408,75680,14338
+54409,1513
+54410,33728,6163,39538,21498
+54411,59826
+54412,65875,63255,64836
+54413,43277,64376
+54414,25566
+54415,26100,46548,40005
+54416,19558,78509,30663,18358
+54417,80685,55895
+54418,50462,52949,58866,21589,17428,25828,56043,60729
+54419,72693,20828,68711,3573,17766
+54420,45610,17750,61339
+54421,25943,66186
+54422,19798
+54423,49429,59570,64476
+54424,10823
+54425,5048
+54426,36982,64374
+54427,31187,82125,53644,3940
+54428,55019,49939,69921
+54429,8195,76675
+54430,69670,43552,60910,47896,75485
+54431,52044,45178
+54432,46141,3636
+54433,71242
+54434,25606
+54435,27121,19526
+54436,71081,15947
+54437,25835
+54438,43087
+54439,38064
+54440,10709,67734,12310
+54441,59841,33121
+54442,69357,53191,62055,56027,50518
+54443,10639,29138
+54444,10832,5327,69150
+54445,16815,14210
+54446,25500,50511
+54447,73550,25462,13638
+54448,81243
+54449,38857,15594,3684,77100
+54450,31603,55192
+54451,59093
+54452,62896
+54453,33650,19324,11749
+54454,14908
+54455,25433,71009,23736,46243
+54456,763
+54457,79641,73918
+54458,70892
+54459,887,19563
+54460,57849,30335
+54461,53494
+54462,33426
+54463,66271
+54464,56584,18539,68471,59256
+54465,3340
+54466,40467,76175
+54467,73217
+54468,41072,14442
+54469,65009,43393,5992,39098,27589,81748
+54470,67532,23172,52905
+54471,44384
+54472,41089,53532,50477,33384,61896
+54473,62982,47050
+54474,21090
+54475,79365,33701
+54476,6908
+54477,35426
+54478,28880,31072,49946
+54479,65890,19201,67926
+54480,22375,51754
+54481,46828,71658,27347,61457,77613,6713
+54482,52257
+54483,21180
+54484,11207,5163,75133
+54485,78619,48997,9084
+54486,38092,53161
+54487,79771,69717,7249,7994,35066,11850
+54488,21788
+54489,79270
+54490,79826
+54491,13598,13049
+54492,69318,56713,20657,10745,57804
+54493,40302,10003
+54494,62937,54179
+54495,41855,68687
+54496,14555,3462
+54497,11955
+54498,81582,59004,10175,32558
+54499,17784,961
+54500,42830
+54501,17246,54185,32510,18162
+54502,64103,47156,3781,27192
+54503,24761
+54504,50630,46815,52603
+54505,75544,65122
+54506,22535,32440
+54507,49388,37939,79510
+54508,23957,21740
+54509,9824
+54510,59445,13026
+54511,70582
+54512,41008
+54513,78109
+54514,57420
+54515,13564
+54516,81978,67779,19269
+54517,18411
+54518,47500
+54519,58638
+54520,35203,14173,2540
+54521,79630,35645,63485
+54522,20823,48063,24314,53116,445
+54523,63756,38089,16155,43926
+54524,51384
+54525,16531
+54526,70462,29634,8586
+54527,14264
+54528,59672,41581,69257,44422,5962,19918
+54529,14112
+54530,21740,18932
+54531,18275,34082
+54532,10509
+54533,8516,60528
+54534,71529,53901
+54535,10578,42979
+54536,11401
+54537,69599
+54538,76538
+54539,6720
+54540,67755
+54541,38647,47841,24793,20547,42424
+54542,4338
+54543,77837,49546
+54544,19509
+54545,19613,15911,65260,9389,17210
+54546,15530,38834,63389,20108
+54547,41007
+54548,52986,771,37361,45055
+54549,34047,4879,79404,78409
+54550,30414
+54551,14681,25122,76376
+54552,66421,81700
+54553,61829,26093,11381,25507
+54554,18191,39612,24421
+54555,60519,36870,76695,68155
+54556,35563
+54557,50301,257,52127
+54558,37146
+54559,57223,42800
+54560,63378
+54561,75529,66651,57636,40174
+54562,70637,11883,38706,7423
+54563,54552,18709
+54564,18964,21318
+54565,22663,47926
+54566,34285
+54567,77893
+54568,39339,54838
+54569,29426,53656,69930
+54570,50358,81035,63487,73786,40009,2888
+54571,42130,9325,20442
+54572,44429
+54573,51156,44777
+54574,46437
+54575,32880,9935,17506
+54576,6935,57075,52229,2272,36085
+54577,20307,34268,75659,54865
+54578,78270
+54579,941,12986,17726
+54580,65545,18157
+54581,62037,28391
+54582,55928,76712,15173
+54583,45721,48542,30131,26600
+54584,8177,69119,52566
+54585,72230,79169,59558,8273,74682
+54586,41631,74225
+54587,81666
+54588,20211
+54589,37890,73535,31128,8123
+54590,46220,60932
+54591,20758,58
+54592,34065
+54593,66737,56092,67171
+54594,45587,18886,76184
+54595,35797,34520
+54596,32625,44350
+54597,30428
+54598,48312
+54599,76635,55742,43539,12318,29975
+54600,22522,74273,41366,7873
+54601,16536,11191,3894
+54602,45231
+54603,65216
+54604,14980
+54605,44664
+54606,11191,38317,39407,19522,73915
+54607,76379,40599
+54608,59028
+54609,48338,70062,74288,35905,12681,81567
+54610,81599,78755,26132
+54611,12028
+54612,21876,5318,13636
+54613,54844
+54614,59600,27810
+54615,47807,25730,14617,57479,34906,38964
+54616,6033,75389,55564,79885
+54617,14074,13280
+54618,1826
+54619,21842
+54620,81106,48398,17209
+54621,39004,73417,69931,16991,66845
+54622,47254,53786,32812,604
+54623,53221,44883,7684
+54624,73760,73943
+54625,44546,53449
+54626,75450,19894
+54627,78357
+54628,76289
+54629,6530
+54630,80933,9751,13599
+54631,6961,82032
+54632,33480,78393,17522,75500,66855,51942
+54633,5047,20808
+54634,78430
+54635,40431
+54636,72529,42373,16885
+54637,81492,23217
+54638,40494
+54639,57599,7694
+54640,20987
+54641,49761,22954,7266,14841
+54642,32111,44984,2914,23466,47471,45928
+54643,61721,56245,36325,61561,68033
+54644,37089
+54645,44119,43790,55649
+54646,55199
+54647,45108
+54648,80916,41326,67851
+54649,67497,4336
+54650,63722,33508
+54651,58793,48409,72264
+54652,55861,37286,18609,15423,57697,80141,50546,6477
+54653,3570,10360,81043,70379,12743
+54654,68059
+54655,58957,1111,58474,24624,72108
+54656,9372
+54657,25179,41126,55142,78354
+54658,71822,66555,29269
+54659,66008,71996,61096
+54660,47594,78746,69233,33578
+54661,31067,32904,28461
+54662,16056,17530
+54663,56192,52314,16561,4536
+54664,64539,8154,74725
+54665,13656
+54666,65485,19491,25598,27650
+54667,77842,82023,48518
+54668,13986
+54669,38529,67989
+54670,67284,25281
+54671,42968
+54672,74106,79544,64019,58051
+54673,32795,28696,5616
+54674,22100,66783
+54675,52772
+54676,44973,27187,43285
+54677,39433,63752,15026
+54678,63331
+54679,38505,76105,1950
+54680,33810
+54681,5363
+54682,10823
+54683,77384
+54684,81131,26853
+54685,5977,68176
+54686,61072,21167
+54687,58993
+54688,72174,4968,3888
+54689,47429
+54690,81507,80552
+54691,57202,31528
+54692,49810,55931
+54693,5192,39499,17642
+54694,41237,55680,24113
+54695,71985,44002
+54696,68344,52349
+54697,59090,36560
+54698,29177,31741
+54699,50967,73387,48026,4318
+54700,17636,31822
+54701,67111,37919
+54702,49248
+54703,29169
+54704,47859,79369,45604
+54705,74240
+54706,20753,17332
+54707,4258,64978,9217
+54708,79453,30305,15862,63046
+54709,11628,1535,45404,5869
+54710,28843,52620,55747,2724
+54711,78496,58187,17789,8678,67296,12374
+54712,28121
+54713,24220,68073,20195,667
+54714,33716,891
+54715,67234
+54716,16653,80707
+54717,17874,28829,5961
+54718,2572,33229,36517
+54719,62161,43487
+54720,75038,5833
+54721,4278
+54722,63458,693,15270
+54723,33334
+54724,22076,8061
+54725,52403,55187,68449
+54726,78614,54334,69860
+54727,37089
+54728,61993
+54729,2027,50941
+54730,39672,72397
+54731,54112,73368
+54732,3966
+54733,36148
+54734,9104
+54735,61115,25952,38809,70813
+54736,1563
+54737,614,3987,79113,2764,45720,2724
+54738,63832,69653,77380
+54739,17040,16653
+54740,57683
+54741,17665
+54742,46870
+54743,32437
+54744,61242,66896
+54745,26133,74366
+54746,3122,32824,65094,5922,56114
+54747,18475
+54748,78976,25943
+54749,19276,38333,22765
+54750,7927
+54751,2073,46042,31271,45846,46662
+54752,55865,62932,40850,25489
+54753,61565
+54754,29465
+54755,26092,139,23018,19080,35800
+54756,75289
+54757,73850
+54758,39736,45201
+54759,24683,8368,31081,58808
+54760,81034
+54761,47843
+54762,5337
+54763,24987,11011,32897
+54764,33509,16594
+54765,50907,34228,26179,39807,79439,32880
+54766,57954,66941
+54767,75848
+54768,59748,45866
+54769,3334,43917,50920
+54770,34737,5794,34969,18786,56066
+54771,66775,54181,39013
+54772,44048,76598,35144
+54773,14484
+54774,78405,53567,8522
+54775,13105,27284,42108,19625
+54776,1859,7839,33181,79359
+54777,70832
+54778,43205
+54779,26503
+54780,35429
+54781,42123,9090
+54782,68061,80568,48504
+54783,15514,33572,28893
+54784,71309,13853
+54785,28254,40586
+54786,64082,24624,7084,79806,61054
+54787,16511,22143,3832,63185
+54788,42489,20804,43556
+54789,246
+54790,14353
+54791,44941,33970
+54792,35854,60680
+54793,40935,24951
+54794,68725,63404
+54795,48193,51371,62745
+54796,22100,15976,3771,48931
+54797,39753,69445
+54798,63284,54581
+54799,59052
+54800,66722,61345,42410
+54801,58406
+54802,58963,36843,3336,19127,75575
+54803,32310,18924
+54804,74278,48679,24119,42902
+54805,12814,39021,47087
+54806,77471,12208,39230,34964
+54807,46475,33322,82153,28122
+54808,20054,53496,40223
+54809,59266
+54810,74167,53541
+54811,1955
+54812,32814,52764
+54813,9129
+54814,71511,72549,7210
+54815,75416
+54816,75420
+54817,49681
+54818,62937,16815
+54819,62486,79611,58768,50684,29123
+54820,70430,645,81380,24248
+54821,81656,19736,76556
+54822,34647,44943,11931
+54823,17268,66868,70512
+54824,28137,44092,4073,76563,13445
+54825,80112,76765
+54826,63732,31048,50333,73536
+54827,35733,36674,25814,72317,18535,5472
+54828,63380
+54829,27782,40640
+54830,21508,70923,42806,8108,3790
+54831,63775,52654
+54832,45023
+54833,15133,46397,50010
+54834,39767
+54835,30519,77358,66656
+54836,4544,34353
+54837,66252,526,20102,60380,3756
+54838,69867
+54839,48256,57644
+54840,41563
+54841,16330,45861,79964,27689,12717,64915
+54842,20257
+54843,68304,79808,8663,23094
+54844,88
+54845,9624,68512
+54846,28266,75610
+54847,80879,78615,68014
+54848,67083,76158
+54849,2435
+54850,19616
+54851,81625,50354
+54852,9316
+54853,1198,1249,66201
+54854,75080,10893,64195,2297
+54855,79840
+54856,9175,59725,7480
+54857,68080,30572,32836,15885
+54858,62510,74277,25629
+54859,21842,35500,65515
+54860,67005
+54861,27736,30981,80296,53968
+54862,44666,19602,47601,28375
+54863,22368
+54864,67262
+54865,66518,59866
+54866,26603,16710,71006,29349
+54867,26573
+54868,1314,73954,30565,25884,53309
+54869,8430,53071,62903,30125,46379,63380
+54870,33384
+54871,63226,22760
+54872,68043,75969
+54873,60580,80643,50251
+54874,31522,21583,79957
+54875,4962
+54876,62914,73310
+54877,49465,42204
+54878,15620,76909,46626
+54879,9085,41576,7975
+54880,14981,797,24052
+54881,20611,57764,58628,34833,75996
+54882,58347,53525
+54883,58649,8800,69097
+54884,44879,68257,72734,17709
+54885,64990
+54886,1641,33148,46754
+54887,14396,25620,56367,4444
+54888,22646,4769
+54889,16939
+54890,32458,37165,12473
+54891,41143,70356,613
+54892,80181,80569
+54893,77080,30736
+54894,46518,59820
+54895,80485,65320
+54896,30416,52514
+54897,45041,1404
+54898,34558,12141,41546,12006,9537,68790
+54899,5195,62026
+54900,7999,26245
+54901,44591,32409,53898
+54902,71605,48832,21072
+54903,51194
+54904,69792
+54905,50145,71009,19941,69081
+54906,74958
+54907,37451,43143,48282,34851,27149,74530
+54908,30341
+54909,24884,850,80732,3836
+54910,46052,25049,51606,24545
+54911,45562
+54912,6320
+54913,76706,50845,27888,3642,50175
+54914,50554,25971
+54915,62425
+54916,49979,17608
+54917,57849,19396,27087
+54918,33636
+54919,2174,78399,42385,51472,28535
+54920,68370
+54921,29031
+54922,65769,79865
+54923,33759,9394
+54924,80632,24091,136
+54925,47097
+54926,34273,41772,45007
+54927,29975,44701,36285
+54928,72978
+54929,52612
+54930,5399,34173
+54931,7927
+54932,76774,34419,57571
+54933,10642,74805,20577
+54934,58797,45859
+54935,51812
+54936,66874
+54937,44638,45106
+54938,54860
+54939,13149,57205,41763
+54940,67819,22915
+54941,60091
+54942,49110,44119
+54943,61397,2047,27517
+54944,37031,70638,18480,13941
+54945,77859,31864,27202
+54946,49605,37626,54299
+54947,25957,45713,79981,11796,20215,6389
+54948,10522
+54949,16431,47122,21376
+54950,81600,5448,13283
+54951,75419
+54952,71771,36121
+54953,26394
+54954,37398
+54955,28082,30383
+54956,58949,26591
+54957,45060
+54958,19709
+54959,16657,21759,8310,81582
+54960,53677
+54961,65974,28341
+54962,53249,44101,57789,43557,44789,51185,14959
+54963,15096,78030
+54964,7487
+54965,58143,19253
+54966,36977,20862,78476,34086
+54967,21498,40060
+54968,62225,67839
+54969,57232
+54970,12814
+54971,43896
+54972,75947,45654,58991
+54973,51894,56909,79158,48907,50570,32991,27839,7414
+54974,30978,57381
+54975,54650
+54976,46595,75939
+54977,54278,49713
+54978,24306
+54979,15837,47451,15452
+54980,8133,82126,18764,17876
+54981,31037,59984
+54982,43733
+54983,76030,23684,16880
+54984,81415,26578
+54985,19427
+54986,72794
+54987,58774,70834
+54988,10888,27882
+54989,78162,81921,18449
+54990,57849
+54991,30849,60193,37147
+54992,24195,11317
+54993,34005,4361
+54994,37383
+54995,39640,29722,5349,19042
+54996,76635,49644,4423
+54997,55299
+54998,77669,66133,47386
+54999,10749,17077
+55000,63582,78470,32402
+55001,74733,6320
+55002,18552,14282,45681,29436,4328
+55003,49420,44763,2684
+55004,51425,54631
+55005,52491
+55006,47686
+55007,45802,54669
+55008,30574,28739
+55009,39818
+55010,50298
+55011,80304,56690
+55012,15461,62353,40543,53763,27257
+55013,67645,37674
+55014,20897,6223
+55015,456
+55016,62267,36116,12854
+55017,40440,15030,52470,73748,64169
+55018,48851,72827
+55019,70708
+55020,62756,80229,80130,15582,21419
+55021,63924
+55022,7123,72882
+55023,79006,39240,40045,78505,75094
+55024,55988,27498,20002
+55025,50675
+55026,74834,14281,66770
+55027,66262,35408,58358
+55028,76009
+55029,66421
+55030,7479
+55031,21855,66121
+55032,19672,65711
+55033,26062,66137,19039
+55034,37153
+55035,27015,7552,30415,29328
+55036,21947,71817
+55037,69227,35562
+55038,18525,6839
+55039,27588,52629,69405,52471,67910
+55040,8590,18329
+55041,38066
+55042,17786
+55043,58362,34427
+55044,7838,28408,64541
+55045,9383,3682
+55046,62015,50980,22208
+55047,39369,11555,80462
+55048,75321,59399,22612
+55049,55519
+55050,65634,79714,40547,29039,41353
+55051,51221,10951,22514,1813,51200
+55052,34822,6995
+55053,38296,80470,57936,1974
+55054,65565,18344
+55055,559,56802,78955,43085
+55056,82064,17692,26015
+55057,72804
+55058,33037,30642
+55059,9197,71691,15450
+55060,43819,72710
+55061,894,2578
+55062,78391,53490,7383
+55063,67295
+55064,67123,30137,70972
+55065,49031
+55066,3091,52353,64153,64768,80465
+55067,42212,7010,45964
+55068,14677,32278,81322
+55069,30184,77037,78256,41818
+55070,81397,9731,26923,62441
+55071,17921,64291
+55072,69253
+55073,79313
+55074,30190,45223,3920,56764,36240
+55075,26644,6955
+55076,69021
+55077,51672
+55078,63293,53149,68575
+55079,24532,57400,13036,76868,73625
+55080,59894,67565
+55081,28305,32081,46309,60360,19832
+55082,80518,43358,15534,12044
+55083,27395,80477
+55084,72350,68017
+55085,72660
+55086,69089,59353,5423
+55087,34098
+55088,18147,51435,15567,30388
+55089,37676
+55090,38733,73866,34417,26710,27662,37508
+55091,36410
+55092,57840,976,19261,5712
+55093,60757,24504
+55094,70090
+55095,59382,1625,73731,37638
+55096,32869,71789
+55097,12299,31843,36546,2027
+55098,49426,68207,37910,69303
+55099,2480,24263
+55100,1626
+55101,6565
+55102,28678,1437,39991
+55103,62012,76354,16151
+55104,26547,2752
+55105,15455,54869,42472,16098,33229
+55106,39978,58881
+55107,17203
+55108,45846
+55109,18202,66243
+55110,77776,35341,15737
+55111,9711,70637,50536,79146,49486,70819,57917
+55112,31066,35641,50699
+55113,11039,50744,46511,56158,2688
+55114,67830
+55115,28041,13743,58004
+55116,71770
+55117,64606,72848,63741
+55118,2021,25188
+55119,62934,64277
+55120,76749,40588,57641
+55121,70557,62298,45963
+55122,56999
+55123,51935,46549,5237
+55124,29648,35010
+55125,45172
+55126,4969
+55127,61877,37328
+55128,7603,33381,58281
+55129,1112
+55130,34554,72245,30677,25663,54158,72423
+55131,46481
+55132,72039
+55133,32152,39190,81087
+55134,42249,56628
+55135,10606,60317
+55136,65522
+55137,72039
+55138,14081,1468,48536
+55139,72451,50792,73586,71972
+55140,40264,40064
+55141,57819,36030,80146,75019
+55142,71054
+55143,66040,61346
+55144,11981,78241,65693,3487,42579
+55145,36813
+55146,73906,39674,25908,65622
+55147,60570,21149,81306
+55148,60336,17931,43367
+55149,10092,17599,5409,68378
+55150,28836,76324,18052,50478,15921
+55151,74575
+55152,16346,44251
+55153,13446,33760
+55154,12035
+55155,74088,19877
+55156,19714,36271,65629
+55157,14505,63073,69502,67893
+55158,43719,18643,48789,15072,72077
+55159,55612
+55160,2889,60451
+55161,54791,67217,43004
+55162,42674,64226,50024
+55163,45884,2969
+55164,7157,36696,78468
+55165,79022,73213,15428,64224,72773,72609
+55166,46577
+55167,13098,49618,63109
+55168,63967,61868,32982,32787
+55169,26229
+55170,74124,42297,48370
+55171,59262
+55172,23305,14283,49112,9177
+55173,65837,49093,44715,6234,23159
+55174,27384,61601
+55175,43049,4749,22991,68038
+55176,26589
+55177,41622,38593,2508,56349,28075
+55178,59493
+55179,63515
+55180,13023
+55181,41901,50116
+55182,33887,71611,10512
+55183,10144,77826,47584
+55184,24242,20453
+55185,46269
+55186,13239,76141,24752,73448
+55187,70776,2486,75320
+55188,21021,22007
+55189,7628,33528,31143
+55190,47241
+55191,3613,23158
+55192,35045,77767
+55193,14120,17370,46320,23135
+55194,82027,45788
+55195,9189
+55196,37879
+55197,74555
+55198,50537,45555,2861
+55199,22874,7096
+55200,43322,49622,23822
+55201,21643
+55202,66927,19713,4874,20461
+55203,65891
+55204,26397,63936
+55205,19762,69447
+55206,3361,41713,33509,10980
+55207,45191,52047,695,9579
+55208,68631,15510,74964,46571,78961
+55209,56129,33180,54984,61231,15091,29870
+55210,17005,18371,30267
+55211,50601,78247,1803
+55212,52507,48766,42832,49178,19259
+55213,7646,36407
+55214,14083,80002
+55215,59649
+55216,31778
+55217,11350,78366,18261,1232,78418
+55218,33915
+55219,40495,63887,58201,78553,79414
+55220,72493
+55221,60538
+55222,52467
+55223,60792,36171
+55224,50257,27541
+55225,19136,10067
+55226,75904,54803,48014
+55227,72765
+55228,24067,77174,12432,13367,55448
+55229,52104,10516,66593,23426,50546
+55230,44975,26860
+55231,29399,31262,38640,30569,19793
+55232,74807,68675
+55233,59323
+55234,64514
+55235,39950,24498
+55236,3813
+55237,42871,22656,41183,55702,42241,47677
+55238,16312,9074,46450
+55239,52813,4617
+55240,57801
+55241,52532
+55242,48240,51401
+55243,26065,50966,25447,7711,49986
+55244,69519
+55245,16481,22901,27859,34412
+55246,46688,28319,3901,35681,31031
+55247,43115
+55248,384,29267,55180
+55249,67444,67951,41923
+55250,41234
+55251,69137,59274,8744
+55252,51436
+55253,21298
+55254,55201
+55255,21887,15127,60766,21946
+55256,79130,43938,76389
+55257,24625
+55258,34935,53508
+55259,57385,2134,54333,47034,54955,77330
+55260,77113,8456,31469,80204,69028
+55261,61657,66511,67564,39614
+55262,82170,2057
+55263,65006
+55264,19902,23893
+55265,29663,3299,6559
+55266,3384,41750,55331
+55267,54650
+55268,80967,3799
+55269,8041,19589,26035,55220
+55270,34406,58664,39345,27913
+55271,12456
+55272,50745
+55273,74954,16127,55498,60980
+55274,57531,10274,29107
+55275,5914
+55276,80681
+55277,21090,65535,7821,35749
+55278,48127,1646,38858
+55279,80229,9321,15130
+55280,46761,9280,61615
+55281,66330,50900
+55282,9843,63029
+55283,74062
+55284,45240,53110,74617
+55285,8084
+55286,25082
+55287,40814,35714,8436,68289
+55288,54669,31280
+55289,34717,57357,946,18302
+55290,9358,13680,10828,57343
+55291,31242,57248
+55292,67810,10233,67831,28753
+55293,29769,2790,78849
+55294,5181
+55295,72807,22846,55465
+55296,3200
+55297,80614
+55298,19364
+55299,54762
+55300,50407,30670,47422
+55301,35493,26167
+55302,5305
+55303,63409,14695
+55304,70665,6232
+55305,52333
+55306,71742,45487
+55307,14849
+55308,650,76441
+55309,14772,72974,14525,19692,30068,29058
+55310,59653
+55311,43487
+55312,2010
+55313,64898
+55314,5835
+55315,55977,225,61136,22267
+55316,69725,19323,4411,33049,57644,58423,60687
+55317,47609,4768,127
+55318,34608,21011,14223,30382,15983,11635
+55319,57838,81081
+55320,79944,35787
+55321,37227,34906,46300,59968,43179,44824
+55322,78803,18339,39976
+55323,55875,26387,65042,5241
+55324,66248
+55325,78243,2479
+55326,46423,50886,14631,47756
+55327,79454,48169
+55328,78249,47745
+55329,1437,13584
+55330,33997,79874,34444,11219,29138,13070
+55331,10740,69417,40117
+55332,13162,40595,80700
+55333,33105
+55334,74547,81243,49774,31308,32701
+55335,23711,64779,72628,60693
+55336,53479,54987
+55337,43350
+55338,51700
+55339,70047
+55340,34549
+55341,44721,28116,49847
+55342,28474,792
+55343,68686,73921,52164,22793
+55344,60319,52931,62426
+55345,50804
+55346,41966
+55347,74095,44063
+55348,68979
+55349,1644
+55350,64366,54834
+55351,47598
+55352,77192
+55353,36252
+55354,77535
+55355,33383
+55356,71033,16626,56358,36570
+55357,21117
+55358,53984
+55359,69353
+55360,68454,26068,74764
+55361,5287,26044,47550,45621
+55362,78934,4228
+55363,2617,14260
+55364,12382,11091
+55365,64942,6216
+55366,37907
+55367,43722
+55368,43724
+55369,28785,37507
+55370,53801,13347
+55371,42423,71291
+55372,27658,22690
+55373,23787,9308,16605,39764
+55374,10777
+55375,45867,19827,8340
+55376,67091
+55377,24692,25708
+55378,65530,63756
+55379,80132
+55380,62151
+55381,9737,48217,66178
+55382,59577,17268,2591
+55383,31124,56696,32544,40465
+55384,64529,52165
+55385,1890,12083,9470
+55386,20161
+55387,70238
+55388,36259,10042
+55389,54698,52714,43724,19324
+55390,66639
+55391,21041,47213
+55392,76853
+55393,62680,12082,28602
+55394,31419,64542
+55395,63424,69311,791,29049,41029
+55396,7718,5722,9903,12171
+55397,15922
+55398,34549,20539
+55399,50733,73087,69558
+55400,11808
+55401,36210,29199,70341,7209,44442
+55402,70996
+55403,73768,59171,37438
+55404,1006
+55405,20248,39172,67087,30655
+55406,50247,28223,33578,49370
+55407,8309
+55408,56151,65200,21216,27799
+55409,21395,53055
+55410,29564,55750,62405,76147
+55411,77196
+55412,15120
+55413,61342,4081,16182
+55414,44956
+55415,17744
+55416,58109,8314,25039
+55417,74084,70954
+55418,52160,60866,76473,3961
+55419,59406
+55420,48847
+55421,35969
+55422,47935,44738
+55423,52384
+55424,6826,9046,64047,67105,78000
+55425,13133,54668
+55426,75798,69224,53345
+55427,79660,57564,20373,24054,49642,33953
+55428,1365,28753,67679
+55429,25334,28571
+55430,59245,34339,54751,68378
+55431,49675,15826,68696,2992,65333
+55432,57726,4179,54633,2821,49460
+55433,16290,67583,4416,80638
+55434,29091,38526
+55435,61741,18284
+55436,75654
+55437,45140,35834
+55438,70813,33164,1373,62455
+55439,81828
+55440,23692,76689
+55441,3295
+55442,81731,52474
+55443,43080,63195
+55444,56783
+55445,37443,9197,65465,39771
+55446,27884
+55447,34993,47439,61454
+55448,33098,7106
+55449,54714,60689
+55450,63914
+55451,63093
+55452,29142,7284,18462,4816,19303,81564
+55453,72585
+55454,79631,77637,17649
+55455,7449,6117,33721
+55456,56907,49452,36260,52782,77181
+55457,22942,28703,71173
+55458,65323,77570,58509,75503,30361,49383
+55459,20116,19019
+55460,11917,28754,72574,22169
+55461,59709,14843,58727
+55462,52718,6863,81730
+55463,28076,34787,8981
+55464,25235
+55465,34520
+55466,4873,6121
+55467,57265
+55468,50683
+55469,63276,6839,39671
+55470,535,66400,14479,61775
+55471,36218,60580
+55472,8613,60396
+55473,61042
+55474,68969,8506,7522,23467
+55475,41058,77569,81910,49860
+55476,47390,81288
+55477,72668,5803,28777
+55478,24446,11530,65503,27897
+55479,11548
+55480,69307,57764,4535,7218
+55481,28253
+55482,62334,12907,42823,5330
+55483,53638,51003
+55484,21637
+55485,44087
+55486,25822
+55487,21874,19392,77541
+55488,30557,28776
+55489,5139,55796,54376,14415
+55490,23581
+55491,69291,26764,27583,62557
+55492,65026
+55493,47409
+55494,53123
+55495,69918,26198
+55496,63019,5924
+55497,67747,48857
+55498,75516,69061,9463
+55499,13913,7982
+55500,296,16260,25713
+55501,71092,52769,47698
+55502,38293,50074
+55503,47761,22410
+55504,19227,34739,80020
+55505,4698,31419,56669
+55506,46884,63095,43880
+55507,64830
+55508,26494,52986,21527,7179,76039,21453
+55509,46720
+55510,79905,67706,53498
+55511,54830,33256,24894
+55512,56996,68569
+55513,44833,14811,79880
+55514,22773,42207,61719,24875,32256,41105
+55515,62874,33002,42642
+55516,62319,41137,37458,36916,33484
+55517,73039
+55518,25486,51741,69110
+55519,70213
+55520,65998
+55521,1624,70642
+55522,629,63584
+55523,73294,60738
+55524,22427,300,46628
+55525,54780
+55526,331,44449
+55527,79826,50446,73954,56655
+55528,7276,34411,53814
+55529,21574,59877,8109,12009
+55530,8426
+55531,55547,59988
+55532,65203
+55533,9353,25785,16949,74863,6568
+55534,34760
+55535,80618,78432,17278,1165
+55536,54858,7814
+55537,70194
+55538,38229
+55539,55263
+55540,43071,67076,78791,26566,13278,18867
+55541,36395,72480
+55542,31814,28519,60576
+55543,8128,73322
+55544,27612,41383
+55545,77366,17206,77519
+55546,7003
+55547,79119,60942
+55548,40608,37212
+55549,67209,33465,10877
+55550,14886
+55551,49181,22042,26244
+55552,49773
+55553,79861,50517
+55554,70768,67926
+55555,9428
+55556,48359
+55557,78072,59216,76508,43736,25108
+55558,46293,60068,9505,81229,3869,33442
+55559,25667,708,52471,78662,81519,76080,50149
+55560,1507,4095,33487,61952
+55561,16793,80029,51248,77247
+55562,79719,20886,11852,31300,32391
+55563,47123
+55564,25574,25754,39216
+55565,44448,80712,62419,33518
+55566,50353,5473,54119,16748
+55567,56796,81105,62739
+55568,71649,59524
+55569,7527
+55570,57793,65874
+55571,38887,7957
+55572,30363,48235
+55573,40484,6674,45760,9403,37727,76265,57881
+55574,13408,76012
+55575,66828,67971,41860
+55576,34569,68960
+55577,2720,71250,18329,62023,37165
+55578,46624
+55579,34042,24907,71867
+55580,9570,56922
+55581,24935,55179,27167,39523,71766
+55582,64498,75609,53852
+55583,57701,2930
+55584,79727
+55585,33277,12367,45368
+55586,67359,830
+55587,7057,216,22081,39052
+55588,65556,65005
+55589,29356
+55590,67962,28156,71817,7559
+55591,45534
+55592,16855,46523
+55593,51144,18423
+55594,41678,50461,24427,58607,7827,56293,67746
+55595,74147,44034,5014,12726,69288
+55596,56539
+55597,27355,76394,16756,75605,71441
+55598,25093,73170,80251
+55599,35598
+55600,75245,80799,69123,27222
+55601,6297
+55602,74420,3358,56348,76031,20564
+55603,66091
+55604,43699,18468,54277,10894,37245,77407,28820
+55605,75813,40659,18202,42583,1209,51938,61272
+55606,45774
+55607,56131,45228,29821,5162
+55608,22893,66009,23698,77353,51334,56,13368
+55609,45038
+55610,71081,52965,62860,44659
+55611,79529,39080,20661,56984
+55612,8570
+55613,29001
+55614,60217,35728,3244,57112,78845,69327
+55615,70086,21981,31645
+55616,25293
+55617,51702
+55618,65822
+55619,51920,32213,75295,55662,57566
+55620,53579,22991
+55621,70896
+55622,2278,69037,24080,65883
+55623,81614,54109
+55624,78182,35775,43297,50616
+55625,5682
+55626,41805
+55627,12451,13108
+55628,4229,19698,3154,22676
+55629,17016,25775
+55630,82136,15202,53349,11938
+55631,21959,1789,44021,70240
+55632,52298,10052,40633
+55633,22042
+55634,33247,31729
+55635,31583,59196,30205
+55636,20874,67784,38850,62061
+55637,40477,11040,1772
+55638,58272
+55639,80614,30332,59323,69706,65178
+55640,15075,17812
+55641,19360,81347
+55642,40555,50854
+55643,65211
+55644,5270,16036,69867
+55645,72258,65574
+55646,76438,42330,52434,55898,52455,10866
+55647,3980,71597,75517
+55648,15662
+55649,34042
+55650,19066,29003,27344,49247
+55651,25870,13468,5578,45452
+55652,23412,69481
+55653,16858
+55654,10585,23822,69923,52031
+55655,60061
+55656,60903,6958
+55657,73106,12423
+55658,16529,43132,23849
+55659,4525,52357
+55660,31952,8948
+55661,61214,50615,19487,8487,42598
+55662,63901
+55663,57243,24561
+55664,6261
+55665,65746
+55666,38904,26960
+55667,22450,35596
+55668,11251
+55669,19342,48805
+55670,67056,12471,73855
+55671,18904,30911
+55672,62696,75434
+55673,62028,14276,18336
+55674,25235
+55675,73649
+55676,27384
+55677,46683,42042,54112,10834,33983
+55678,32840,65048,26678
+55679,19871
+55680,7394,72763
+55681,6568,58511,60080,81299,62386,5266
+55682,14810,22517,10414
+55683,7491
+55684,3348,77474,25796
+55685,38488
+55686,65423
+55687,29611,46839,59760
+55688,17202
+55689,7977,26572
+55690,482
+55691,38501
+55692,52716,4104,25782,1405
+55693,43978,67600
+55694,36180,11109,35596,38396
+55695,81543,3392,28331
+55696,49665,24751,20959,29849
+55697,15881,35111
+55698,16423
+55699,36996,37403,31609
+55700,16395
+55701,61341,8736,56944
+55702,78358,32322
+55703,17987
+55704,2905,15494
+55705,19745,34779
+55706,28444,17746
+55707,22643
+55708,76329,68745,15759,21001
+55709,6217
+55710,30288,43901
+55711,4680
+55712,51196
+55713,42544,67342,23334,32691
+55714,55041,74926
+55715,22160,647,39937
+55716,69297,4199
+55717,8585,67640,68250
+55718,6774,1681,1698,50715
+55719,79160,21922
+55720,62886,8919,2387,61310
+55721,64866
+55722,29868,11377
+55723,78742,61552
+55724,69706
+55725,29640,19584,52315
+55726,81054,59724,4405
+55727,64860
+55728,23639
+55729,21455,44159
+55730,17907
+55731,80613
+55732,70303,29958,60863,8623,47939,81316
+55733,70704
+55734,7342
+55735,67653,66226,13087,40890
+55736,9983,10716,20233,75342
+55737,17872,13657,13820,24639
+55738,34269
+55739,52790
+55740,9896,78241
+55741,22695,16081,66082
+55742,306,13082
+55743,4541,57997,43102,55733,76896
+55744,33458,82002,63336,41983,44281,33881
+55745,50162,48382
+55746,49520
+55747,48251,47096
+55748,45378,22273
+55749,16568
+55750,18740,43266,80892,1426,39637
+55751,80173,75574,62289,26429
+55752,68893
+55753,1609
+55754,79130,42613
+55755,4421
+55756,12234,68456
+55757,14344,44709,26439
+55758,78516,45444,24105,77327
+55759,27788,54621,7922,40685,45602,36676
+55760,69367,61246,51645,31102
+55761,8758,15653
+55762,50257
+55763,27898,10040,32878,19104
+55764,41948
+55765,64126,34669
+55766,33159,39487,36280
+55767,1215,25752,34108,25011,43310
+55768,12691,38491
+55769,38174,21674,24319,11625
+55770,11342
+55771,53039,53555
+55772,36280,78
+55773,53463
+55774,58331
+55775,39773,26873
+55776,25402,25073,4332
+55777,69079,26402
+55778,22965,17288,32078
+55779,65754,6831
+55780,26887,11131,15091
+55781,33980,67432
+55782,22600,22117
+55783,12177
+55784,2733,29302,52861,33864
+55785,78589
+55786,59706,37710,70640,59212
+55787,51686,6773,73151
+55788,42966
+55789,79695,6230
+55790,24858,67145
+55791,1980,5277
+55792,23729
+55793,42044,32538,79250
+55794,47125
+55795,48335,79852
+55796,4001,6419
+55797,17582,80482,60913,78832
+55798,55227,28502
+55799,62376
+55800,52131,75883,77196
+55801,3959
+55802,16223,69203,74865,61814,65507,20582,45401,57238
+55803,39498
+55804,69976,19701,3221
+55805,61129,67313
+55806,75548
+55807,81102,17167
+55808,22242,62484
+55809,75064,33740
+55810,11047
+55811,55389
+55812,57801,74387
+55813,79917
+55814,55899,38541,76446
+55815,79829
+55816,79325,77277
+55817,20902,2581,74621,72010,28445
+55818,34622,6886
+55819,8057,76460
+55820,52659
+55821,1106
+55822,21041
+55823,54486,31638,1334
+55824,73804,77160,82042
+55825,45550,22270
+55826,32814,44095
+55827,20487
+55828,65163,28035,16812
+55829,26504,67742
+55830,71911,65177,40990,71838,11437,66035
+55831,19971
+55832,44146
+55833,63979,34514,66284
+55834,39705
+55835,24455,74745
+55836,53125
+55837,76770
+55838,19509,43266
+55839,31022,1885,15476
+55840,37518,6061,5228,41234,68486,25167
+55841,45007,60356,61955
+55842,81357
+55843,21796,5316,32162
+55844,4232
+55845,68787,38214,75691
+55846,38180,26430
+55847,37084
+55848,75489
+55849,81088,9733
+55850,72994,45628,56852
+55851,72595,70252,14453
+55852,22113,81027
+55853,15466
+55854,20684,57926,34592,56716
+55855,6697,319,1273
+55856,491
+55857,33031,41334,60878,73641
+55858,46058,896
+55859,26927
+55860,63475,26132,70342,80946
+55861,30383,66649,77074,25586
+55862,37641,24582,61284
+55863,29805,69063
+55864,11467,2537,9576
+55865,35827,63817
+55866,72851,10104,71426
+55867,29425,22485,16376,1380,39142
+55868,46796,59823,64069,44266
+55869,80170,18088,21422
+55870,27378,72165,31835,55922,48235
+55871,3096,19224,79247
+55872,32479,24424,25962
+55873,76405,39490
+55874,54955,13283
+55875,24353,56839
+55876,62970
+55877,11168
+55878,70923
+55879,50802,21826,36099
+55880,12826,27262,74796,41568
+55881,48130
+55882,49586,7573
+55883,42383
+55884,60114,11622
+55885,41858,69425
+55886,73368
+55887,6051,42784
+55888,51178,70232,18730,26057
+55889,9719,1454
+55890,61623,27558
+55891,3468
+55892,29069
+55893,79313
+55894,1680,61035,80117
+55895,37667,66376
+55896,1644
+55897,6473
+55898,16075,80066,34653
+55899,39762
+55900,17233,4963,63831
+55901,58598
+55902,19425
+55903,43327
+55904,12056,69100
+55905,51220,77754,22217,69272,72259,81188,49537
+55906,76289,34347,28341
+55907,69896,32587
+55908,59235
+55909,68427,28266,69908,61531,27004
+55910,15108,73521,67131
+55911,77174,67417,21991
+55912,33211,48494
+55913,44052,60138,49749
+55914,26785,46429
+55915,51720,58815
+55916,36218
+55917,25794
+55918,36767
+55919,9162,11278,22389,21239
+55920,74612,21022,74556,55118
+55921,81395,32162,64183
+55922,82079
+55923,14215
+55924,58351,74289,22475,25813,51679
+55925,37388,75726,8178
+55926,78934,73050,13871
+55927,37802,13573
+55928,47984
+55929,56119,36380,8239,25045,73437
+55930,15183
+55931,25716
+55932,21982,34279
+55933,46387,46683
+55934,67651,43142,19848
+55935,70309,75985,68756,40411
+55936,55779,50467
+55937,81590,71619,23063
+55938,13383,4281
+55939,74193,23806,54251
+55940,2312
+55941,59636,8199,6978,21323,38425
+55942,58255,4410,81186
+55943,30499
+55944,1759
+55945,22842,13730,13494,53330
+55946,69230,36688,33932,28352,3157,20338
+55947,23078,19327,39720
+55948,42941,55711,15971
+55949,45974
+55950,81838,53203
+55951,68061
+55952,43226,58635
+55953,21216
+55954,60417
+55955,80628
+55956,49208,72111
+55957,34213,19955,61408
+55958,47917
+55959,60626,40811,3234,72521,22415
+55960,45956
+55961,12320
+55962,24619,10774,61872
+55963,17203
+55964,141,12497,44013
+55965,11563
+55966,28959,58104
+55967,49257,49661,25398,40280,2356,51898,49029
+55968,33137,77629
+55969,24648
+55970,57607,69776,71456
+55971,20273
+55972,39426
+55973,78564,54103,16439,54474
+55974,25392
+55975,16655,9248,34878
+55976,23574,68557,64294
+55977,45585
+55978,66558,4404,57792,72045
+55979,70090,32558,10994
+55980,7821
+55981,42316
+55982,6852,40578
+55983,4439,31148
+55984,18208,17917,36407,12888
+55985,63875,44324
+55986,81138,22755
+55987,19879
+55988,9819,25181,75247,15584,38527
+55989,67704,30988,48399
+55990,58467,27430,2762,19071
+55991,63467,31974,75776,38651,27658,46319
+55992,80123,20810
+55993,73528,22452
+55994,31314,26751,1907
+55995,27097
+55996,61011
+55997,53143,62677,23246
+55998,1411
+55999,9505,71454
+56000,58771,13198
+56001,40753,27311
+56002,3244
+56003,41364,126,19401
+56004,41998,58335
+56005,2786
+56006,32147,30329
+56007,76968
+56008,59975
+56009,39193,54964,80441,67055
+56010,58715,19290
+56011,35886,3667
+56012,2932
+56013,5196,27807,35978,81652
+56014,19488,29107
+56015,57608,21456,190,32003
+56016,54017,29515,51638,71995,20789,24518
+56017,14006,36369
+56018,11693
+56019,5857,73683,840
+56020,63883,9364,24865
+56021,61822,56391
+56022,15723,29901
+56023,15237
+56024,56645,34866,43202
+56025,6995,57532,42094
+56026,62674,73784
+56027,9997
+56028,35871,72899,20974
+56029,81906
+56030,21276,63156
+56031,3909
+56032,58598,66491
+56033,47260,48547,38527,34033
+56034,16373,46299
+56035,50913,56725
+56036,81626,37907
+56037,34361,47101,18016
+56038,72806,35199,37930,44133
+56039,42925,25666,30321
+56040,70593
+56041,38873,26517
+56042,12443
+56043,26195,71240,62464
+56044,72564,53876,46568
+56045,33079,37669
+56046,81186,537,64838,8184,325,66156,38264,10278
+56047,15316,44689,53721,30223,45444
+56048,75187
+56049,65433
+56050,59671
+56051,18815,1121
+56052,15629
+56053,27093,3421
+56054,44654
+56055,24812
+56056,12146
+56057,9510
+56058,43185
+56059,60320,79850
+56060,11405,34916,77284,6633
+56061,17009
+56062,46937,44901
+56063,61158,32513
+56064,17006,34344
+56065,24999,75368
+56066,55464
+56067,55354
+56068,50316,40184
+56069,66777,32477,46351
+56070,17503,30968,7266
+56071,27567,5196
+56072,63012
+56073,37059,34786,59212
+56074,63920,5180,45686,63983
+56075,66292
+56076,42592,65487,15668
+56077,30570
+56078,14161,1336,64307,12509,40252,29229,37002,577
+56079,403,63300,7988,53545
+56080,81507,44850
+56081,6155,25335,64687
+56082,79458
+56083,40723,1164,81072,58221,34114,65209,1507
+56084,5491,9024,37001,79530,9319
+56085,26447,38035,2323,2542,13567
+56086,58117
+56087,76047,38908
+56088,1607,7426
+56089,11011,26833
+56090,66961,53515,19816
+56091,20745
+56092,68036,10545,13288,13690
+56093,60730,76090,20944,47379,79549,44464,73055,58386
+56094,36520,18745
+56095,23231
+56096,77696,56367
+56097,9287,5119,69607,10637,49388,38861
+56098,68164,63010,18098
+56099,3878,53020
+56100,81831,46261,797,66912
+56101,7504,47274,34130,35272,58006
+56102,81499,74641,32432
+56103,24206,23587,70070,62117,12351,8349
+56104,9839
+56105,66559,39553,48808,51970
+56106,67762
+56107,45186,22419
+56108,34514,66431,69461,11545
+56109,17889
+56110,81464,39473
+56111,28131,37397,27396
+56112,12475
+56113,33721
+56114,14527,58608,27388,17452,78918
+56115,20602,66980,74693
+56116,36583
+56117,46850,18775
+56118,60575
+56119,15476
+56120,50793
+56121,79480
+56122,14871,20188
+56123,54791,39838,17800
+56124,52618,37127
+56125,23752,60770,26814
+56126,64022,31870
+56127,54040
+56128,80256
+56129,15566
+56130,67281,32329,54844,3974,18769
+56131,66591
+56132,18442,62184
+56133,44298,81987,68002,45844,69044
+56134,35033
+56135,16993,27853
+56136,17364,38061
+56137,23346,754,47745
+56138,55388,19479
+56139,28328
+56140,30883,11808
+56141,4543,71416,267,58751
+56142,49520,73821,41144,20631,61285,2591
+56143,53154
+56144,73291
+56145,625,79886,62800
+56146,40256,12400,35834,2520
+56147,57127,76797,46285
+56148,18374,68587
+56149,38021
+56150,6021
+56151,22605
+56152,40429
+56153,17473,61927
+56154,72271,17234
+56155,4847,5931,77364,17304
+56156,34954,61057
+56157,80157
+56158,75863
+56159,50182
+56160,19184
+56161,34134,26249,40720
+56162,67094,61070
+56163,8641,31436
+56164,23312,25402
+56165,37866,70364,34243
+56166,34909,1333,12128,57691,27036
+56167,62935,42172,33467
+56168,64614,74689
+56169,24090,67987,7075,54654,26572
+56170,22259,14788,39963,40113,60819
+56171,17807,73523,2092
+56172,72671
+56173,39445,76728,61862,55188,60748
+56174,54308,23100,22023
+56175,7281
+56176,23594
+56177,21398,80199,50009,63060,69970
+56178,29076
+56179,6348
+56180,31504
+56181,62082
+56182,42574,36195
+56183,49284
+56184,68655
+56185,17331,62839,55762,64266,2602,14252
+56186,27611
+56187,13971
+56188,29461,68142
+56189,18459,73088,62386
+56190,27384
+56191,72137
+56192,12146
+56193,10602,74622,36983,42420
+56194,7535,51212
+56195,47234,18060,19269,3402,13997
+56196,15635,59020,76686,7585,71207
+56197,72688,1419,58326
+56198,45352
+56199,48651
+56200,43099
+56201,66581
+56202,32204,27221,52511,36151
+56203,72884
+56204,69344
+56205,69538,22425,73145
+56206,22462
+56207,643,54525
+56208,7537
+56209,69000,4504,25311,75775,31166
+56210,70155
+56211,11112,28627,29439,29992,36551,21309
+56212,1374,81462
+56213,39040,76703,66888,60429,38874,22660
+56214,31846,4097,28177,50191,51301
+56215,31342
+56216,37062,25285,1128
+56217,10057
+56218,47059
+56219,78708,31197
+56220,21041,43722,57056
+56221,11318,50024
+56222,32225,1837
+56223,70419,26019,74406
+56224,47796,20924,24695
+56225,70551,53400
+56226,38226
+56227,33802,76271,24298,23848
+56228,4917,61154,62436,51810
+56229,20889,36909
+56230,10334,3808,2546,61234,41391,66868
+56231,27092,5328,54125,70791
+56232,19324
+56233,30487
+56234,38480,19866
+56235,55927
+56236,8730,7836
+56237,48578
+56238,507,66565,62664,47495,48560,72471
+56239,57415
+56240,14449
+56241,70797
+56242,4703,60905
+56243,24640,43823,49319,66530
+56244,11715
+56245,27642
+56246,49500,49244,79451,10616
+56247,15948
+56248,73888
+56249,4738
+56250,32477,57564,33775,48200
+56251,5595,17727,31992,34056
+56252,57427
+56253,43556,78791,62448
+56254,77180,19647
+56255,78036,59637
+56256,37507,46356
+56257,64864
+56258,59491
+56259,13246,48409
+56260,36872,42685
+56261,32003
+56262,28396,78791,42071,32650
+56263,32628,39849,15838
+56264,29532,65244,17071,75557
+56265,6664,49263,5182
+56266,2645,26967,9112
+56267,35993,77312,29973
+56268,44600,78373,48313
+56269,13800,72093,53004
+56270,54017,1961
+56271,68132
+56272,16441,9606,34282,739,34606
+56273,41542,6935,8805
+56274,30962,69876,22862,69384
+56275,10835,71806,19030
+56276,58653
+56277,51985,53384,19472,29303,13167
+56278,63967,19190,27654,19911
+56279,58820,46882
+56280,12226
+56281,6984
+56282,69509
+56283,11206
+56284,58815,56253
+56285,41871,74076,16887
+56286,35942
+56287,8239
+56288,7463
+56289,81882,27690
+56290,50975
+56291,34324,53932,46350,14852,45756
+56292,63063,682,56846,4976,61854
+56293,68398,73344
+56294,65510,9446
+56295,9859,23443,78496,2010
+56296,65836,47984
+56297,768,21454,2126,40298,66413,78808,16414
+56298,45780,58121,38468,79249,17517
+56299,37061,70935,13850,949,27421
+56300,4008,44333,68698,58030
+56301,59986
+56302,6026,1946
+56303,80841,16178,70410,936
+56304,79874
+56305,55987,74046
+56306,7179,21470
+56307,55041,8681,7941,76911
+56308,29060,67180,54351
+56309,7115,48896
+56310,55618,39731,43571,10691
+56311,55749
+56312,5968
+56313,64573,13109,73272,76048,4116,14836,11671,15300
+56314,32625,14539,26803,77843
+56315,8118
+56316,39427
+56317,60149,31748
+56318,35659
+56319,42414,28498,20310
+56320,14367,7809,59316,74208,71944
+56321,30675
+56322,51065,36972
+56323,19877
+56324,79797,39417
+56325,17664,51211,6347
+56326,54903
+56327,13960
+56328,73569,9960
+56329,6462,36136,62316
+56330,49670
+56331,24066
+56332,43707,28312,71731
+56333,33853
+56334,52935,18462,59150
+56335,30808,30538
+56336,47018
+56337,133
+56338,51096
+56339,11836,61017
+56340,42809,9773,35142
+56341,48780,21197
+56342,24333,74660,5272,52541,1297,40275,69148,19361
+56343,30145,81921,25105
+56344,2213,20682,56792
+56345,19233,5703,26748,40665,19318
+56346,28568
+56347,33429,1820,78515,7650,13728,28214,80736
+56348,69327,7646
+56349,37583,72321,34968
+56350,60336,69311,23611,6018,33018,37948,79419,20972
+56351,28730,64716,72061
+56352,30878,25476
+56353,70563
+56354,68273,52883
+56355,47108,76388,52915,30265
+56356,1558,69476,3479,17698
+56357,24409
+56358,51026,718,27338
+56359,17395,21828
+56360,37337
+56361,64689
+56362,59438
+56363,12186,14319,69092,48459
+56364,25924,73528
+56365,56902,57601,27188,75629
+56366,18451,58557,48345,2748
+56367,42056,18939
+56368,13928
+56369,67702,63376
+56370,23082,74516,80093
+56371,69836,24804,74091
+56372,46083,43024
+56373,5424,60546,68281,48785
+56374,64719
+56375,69130,49586
+56376,19020,78447,68381
+56377,39419,2487,51391
+56378,50634,56728,9289
+56379,45441,40005,6599
+56380,46122
+56381,77697,59645
+56382,31213
+56383,29586,75624,63239,68486,63514
+56384,55141,13561,51203
+56385,23337
+56386,12432
+56387,70295,73846,55258,37792
+56388,19851,9589,74524,20431
+56389,57266
+56390,58197
+56391,26986,1098,30999,71050
+56392,77671,31231,36965,44755
+56393,42502,50332,31440,20172
+56394,13547,23379,4695,52211
+56395,31961
+56396,53300,3731,28270
+56397,35598
+56398,54762
+56399,55425,33752
+56400,61578,43383,73904,22321,77574
+56401,3380,72658,11144,1192
+56402,531,42565,65356
+56403,674
+56404,35829,79798
+56405,355
+56406,55307
+56407,29508
+56408,58674
+56409,15172,24833,36649,58680,5760
+56410,77579,45574,50743
+56411,60765,48740,81964,68743,824,19296
+56412,37813
+56413,56309,18409,69614,54814
+56414,54944
+56415,24012,28620,34367
+56416,14065
+56417,38504,44115,69762
+56418,68573,62799,12386,69546,76603
+56419,57544,15622,69583
+56420,13620,3344
+56421,14595,31524
+56422,47337
+56423,61035
+56424,31205,56859
+56425,30605,59926,41005,13792
+56426,62849,66434,4507,15157
+56427,57682,11219,29382,3743,38524,52839,58917
+56428,28213,29219
+56429,38586,1913,58525,71942,41493
+56430,7939,31148,4610,59297
+56431,718
+56432,76919
+56433,41071
+56434,33382,6544
+56435,41256,43123,18338,22815,49172,4726
+56436,26351,7056
+56437,736,78446,7197,58646
+56438,30065,44306,17313,77613
+56439,27332,77574,74495
+56440,41600,32111,58846,41223
+56441,14851
+56442,34538
+56443,60789,13643,24667,3383
+56444,33862,78520,15755
+56445,3817,74789,10502
+56446,26306,7537
+56447,51278
+56448,14687,9067
+56449,6430
+56450,21474,55922
+56451,6300,48300
+56452,71327,14472,10484,29213,57456,41796,40888
+56453,55859
+56454,23976
+56455,5924
+56456,58171,1298,41822,43917
+56457,72083
+56458,20189
+56459,25433,50301
+56460,45793
+56461,65433,81815,74453,63676
+56462,20845,7239,7034
+56463,79613
+56464,48516,13892,5559,76375,61832
+56465,50298,65,66608
+56466,65551,49894
+56467,11404,46798,16455
+56468,62661,8748
+56469,53343,55453,39788,65320
+56470,46598,39134
+56471,81233
+56472,30869,1822,48204,67438,74242,45583
+56473,33333,8223,28590
+56474,25066
+56475,50335,26178
+56476,11832
+56477,53551,6364,45523
+56478,5420,72340,13648
+56479,64965,8490
+56480,24353
+56481,10621
+56482,75794
+56483,9417
+56484,37380
+56485,63129
+56486,5931
+56487,3383,54041,61711
+56488,28179
+56489,21799,30564,2975
+56490,12333
+56491,30408,3051
+56492,30302
+56493,45563,9588
+56494,31135,50726,21001,28013
+56495,66752
+56496,60275,17603,25907,52869
+56497,61768,47430,29466,18207
+56498,26937,50231,26114
+56499,57607,18513,4792
+56500,68214,76116,59767,61054
+56501,75600,17654,73771
+56502,74566,32893,55281
+56503,78396
+56504,70548,77793
+56505,13573,72332
+56506,60962,43147,74069
+56507,33302,62453,57209
+56508,69308
+56509,80576,47114
+56510,40411
+56511,76616,15121
+56512,16045,2263
+56513,66734,29997,23311,72313,5695,53266
+56514,59442,6782,34455,64649
+56515,35872
+56516,44156,50718,2023
+56517,69480,25291
+56518,2090,67145,35520
+56519,51643,68358,78320
+56520,8057,41428
+56521,22658,61578
+56522,77733,32287,22464
+56523,13414,40207
+56524,49604,59042,58086
+56525,67816,59456,38658,78866
+56526,60667
+56527,63187
+56528,24980
+56529,41037,4609,38799
+56530,9147,61333
+56531,23483,29491,24686
+56532,7788,61582,45961,70402
+56533,9531,7139,40079,39347,13602,19369
+56534,56377,65763,77242,22031,40153,34519,77700
+56535,58772
+56536,77726
+56537,68281
+56538,29120
+56539,5798
+56540,35955,73420,36329
+56541,17212,56296,68679,76030,40213
+56542,69177,7407,17878,11609,36946,69853,8634,55003
+56543,64718
+56544,54490
+56545,20515
+56546,13984
+56547,15077,54181
+56548,7574,78062,78133,31335,65922
+56549,35239,33584
+56550,29907,9713
+56551,63724
+56552,13569,2361,18689,29758
+56553,11436,51683
+56554,21100,63711,35582,22355,6813
+56555,43896,45420,53385
+56556,53751
+56557,32210
+56558,42616,58837,52186,25451,21023,36711
+56559,27515,12166,51284,54961
+56560,48670,7577,62640,75137,36273
+56561,47482,22317,45993
+56562,69251,56422,18519,37801
+56563,47215,23088,26270,77843
+56564,34862
+56565,46536,49157
+56566,19038,26844
+56567,63760,52096,56324,57252,63484,47647,6814
+56568,39704,65358,79037,51299
+56569,57990,29884
+56570,12965
+56571,53226
+56572,47186,68207
+56573,75773
+56574,12945,63522,48243
+56575,52962,70428
+56576,5703
+56577,67182
+56578,21731
+56579,34599
+56580,79804,47015
+56581,52104,31642
+56582,12936,12846,59850
+56583,22452,76330,52608,27447,1343,42291,75916,54057
+56584,62574,79661
+56585,7796,73057
+56586,47972,57263,21778
+56587,17734,1043
+56588,44938,26033
+56589,55896
+56590,27539,7790,61850
+56591,74683,29223,49792
+56592,68505
+56593,17146,22770,71806
+56594,5399,75907,16543
+56595,72614,55803
+56596,12700
+56597,65997,45013,35778,63210
+56598,31103
+56599,58683
+56600,50698,52988,60262,54444
+56601,2596,49693,75300
+56602,49502
+56603,40830,88
+56604,63130,68787,45447,47637
+56605,68978,58491,19786,36800
+56606,61927,59582
+56607,54740,41538,11073,61687,71607
+56608,71737
+56609,19226,56575,76531,336,67747
+56610,41133,63376
+56611,59564,5986,18879
+56612,28286
+56613,76081,24046
+56614,54524,64822,78884,6758,43931
+56615,58674,35912
+56616,43837,27613,48961,56,1341,70298
+56617,24862
+56618,49049,69433,19535,51755,52333,56878
+56619,25188,24366
+56620,5114,15540
+56621,42605,17071,67525,36298,55165,11884
+56622,18710
+56623,72003
+56624,52764,4478,31089
+56625,42510
+56626,42566,53018,66644
+56627,20149
+56628,12608
+56629,48956,41291,67328
+56630,21917,36040,79559,66974,46796,57684
+56631,20862,57749
+56632,34453,42800
+56633,66570,51593
+56634,47015,69203,31930
+56635,17439
+56636,57924
+56637,73576,1589
+56638,52899,75733,526
+56639,1426,1079
+56640,6272
+56641,37661,21925,7317
+56642,12150
+56643,80331
+56644,37114,15380,22642
+56645,79314,31400,57478,77033
+56646,29758,80047,43695,79293,7733
+56647,61757,49032
+56648,9569
+56649,34785,54003
+56650,50494,71150,29991
+56651,24384,29933,78203,73099,22150
+56652,19796
+56653,61817,70194
+56654,71395,75054,22743
+56655,60406
+56656,63525,9862,8320
+56657,23731
+56658,31910
+56659,26802,43126
+56660,49263,32766
+56661,15402
+56662,52569,56950
+56663,14611
+56664,23492,39603
+56665,54433,14401
+56666,1446
+56667,55525,68999,14683,54397,2459
+56668,65963
+56669,68912
+56670,14993
+56671,604
+56672,42231,47229,21594
+56673,67706,36998,29000,46514,12551
+56674,42518,21746
+56675,31258,36857,48784,13977,12184,57777
+56676,47698,31217
+56677,41452
+56678,14794,7863,49545
+56679,15174,59268,48130
+56680,38506,30678
+56681,10043,71317,54944,45720,6167
+56682,15255,21444
+56683,3353,79004
+56684,77359
+56685,25906
+56686,20114
+56687,48317,81915
+56688,18930,44220,71009
+56689,1100
+56690,48221,77331,79154,24135
+56691,30877,75169
+56692,24172,34765,51664,66082
+56693,41199
+56694,70110,31421
+56695,45727
+56696,42972,3845
+56697,78562,24027,72406
+56698,46849,57995,40712
+56699,35710,14081
+56700,25734
+56701,58556,41418,43000
+56702,13624,71404
+56703,81275,11478
+56704,80341,62802,6698
+56705,7663
+56706,31114,71286,61527,15896
+56707,80589
+56708,19320,65167
+56709,79600,14355
+56710,40380,21762
+56711,20798,7363
+56712,14838,30962
+56713,13458,61249
+56714,28638
+56715,41018,23008
+56716,19150,43733
+56717,799,57202
+56718,10591,40238
+56719,37209,8432,72733,74579,73769,57744
+56720,2630,47025,73426,25808
+56721,39362,41467,7861
+56722,57954,73384,17034,57442
+56723,33629,47610,47733,64834
+56724,36253,8396,33699
+56725,80110
+56726,54734,33090
+56727,7977
+56728,7836,37897
+56729,41760,44989
+56730,22118,40400
+56731,6499,17983,43637,9820,80700
+56732,22477,31148,59121,54606
+56733,31419,57926,76622
+56734,76269
+56735,13754,67236,49139
+56736,25051,32000,28688,51578,79004
+56737,26522,50380,60644,71709
+56738,24987
+56739,70666,1861
+56740,29223
+56741,21528,27331,13882
+56742,57969,20159,2167,32194
+56743,64705,21523,75241,2862,22160,54184,45189
+56744,11837
+56745,32029,54671
+56746,968,16343
+56747,42209,479,50266
+56748,19226,22125,19601
+56749,25045,44644,11513,52398
+56750,32914
+56751,63476,54941
+56752,20426
+56753,46211,75074,49716
+56754,21007,2046,9383
+56755,24764
+56756,62456
+56757,78001,25861
+56758,81696,58083,12220
+56759,48088
+56760,80109
+56761,61247,26657
+56762,62405,51623,75306,15003,30822
+56763,58734,77871,33682
+56764,58976,35969
+56765,75401
+56766,66981,26147,73428,61966
+56767,39035,69016,73578,80326
+56768,2078,70557
+56769,78
+56770,78640,59621
+56771,55617
+56772,63202,60148,16637
+56773,78521
+56774,33923,15743,73345,50726,2298
+56775,36936,46787,63959,3368
+56776,348,39009,40051,11584,33893,69560
+56777,31501,32810
+56778,34369,19730,70510,38461
+56779,29416,18011
+56780,24281,47470
+56781,73147
+56782,40895
+56783,51092,49490
+56784,58539,37083,12572,74147
+56785,1427,71358,35192,52764
+56786,7873,30002,34736
+56787,39675
+56788,55290,79071,64668
+56789,20256,78853
+56790,4723
+56791,26790
+56792,3605,53123
+56793,71754,52643
+56794,52961
+56795,50182
+56796,25517
+56797,712,64172,77244,57494,59099,297
+56798,73876,61650,49729,69041,44229
+56799,7938
+56800,1932,52698,76957,30427
+56801,24629,1037
+56802,15644
+56803,14710,36337,9506
+56804,15302,36399,29238
+56805,8751,41791
+56806,54912,72932
+56807,61916,29291,59707
+56808,81489,1389,2952,30892,44331
+56809,774,16518,35526,31466
+56810,9716,22658
+56811,65425
+56812,11317
+56813,52165
+56814,43875,37701
+56815,20097,7390
+56816,68056,25141,21568
+56817,20363,24655
+56818,47873,34676,17556,56959,60020,21374
+56819,53777,59849,38441
+56820,64836,61540,13500,55500
+56821,15958
+56822,4589,51232
+56823,20341,61078,25637,15247,47546
+56824,6838,55312
+56825,53087,43687,69895,56196
+56826,18079,76375,72925
+56827,2304
+56828,43859,53874,24625,34808
+56829,75120,60472,42587,42449
+56830,13718,47892,53483,47732,33152
+56831,64931
+56832,14317,57538,18912,47689
+56833,56784,18954,13478
+56834,62342,67208,41289,52097
+56835,43797
+56836,8254
+56837,28568,52445
+56838,14374
+56839,79719,30293
+56840,41912
+56841,29003,13047,25971
+56842,1624,57396,55119
+56843,23177,51644,7953
+56844,42329,4337
+56845,51208,59923
+56846,6714,63595,14302
+56847,48654,32122,58338,16774,59173
+56848,30737
+56849,50910
+56850,45494,74290
+56851,7263,35393,65141
+56852,76655,11701
+56853,916,66065,45430
+56854,29495
+56855,3746
+56856,65458,13018
+56857,3033,20514,3932
+56858,167,62525
+56859,34242
+56860,9027,11410
+56861,41616
+56862,75029,46806
+56863,5751,65167
+56864,36845,3831,14353,9750,6279
+56865,50607,77265,9455,20162
+56866,73210,47648,3344,37719
+56867,69119
+56868,43203
+56869,31799
+56870,26009,11003,78736
+56871,28983
+56872,31319,21826
+56873,24135,16809,14292,46785
+56874,73733,67323,17479,25440,60688,65507
+56875,81118
+56876,28663,22332,47149,46647,64695,74519
+56877,16533
+56878,25892,60354
+56879,19770,7444,50206,52028
+56880,28280,7945,8563,50173,40995,59097,21277
+56881,2879,46134,67764,41885,780
+56882,67617,1747,10948
+56883,68289,7710,1212,40265
+56884,20848,73155,73460
+56885,63484,45807,35048
+56886,28171,32925,70692
+56887,52578,56673
+56888,25216,28163
+56889,68924
+56890,52076
+56891,64341,1647
+56892,79208
+56893,70121
+56894,9081,71010
+56895,78691,49648
+56896,42479,9576,37117
+56897,37828
+56898,49920,42712
+56899,38104,1867,69348,677
+56900,17609
+56901,48407,18138
+56902,51086,29787,55601
+56903,58909,15144
+56904,49421,12012
+56905,62537,49134
+56906,47291,28295
+56907,22005,8535,80875
+56908,30002,70226,33978,22963
+56909,54605
+56910,36091,67524
+56911,48943,69751,51860,66525,61064,65706
+56912,49044,73602,69944,47879,73534
+56913,41420
+56914,59914,30626,73424
+56915,66320
+56916,66090,1970,26467
+56917,45106,22918,46984,69265
+56918,74875,9536
+56919,32661,41404,10312,23392,52493
+56920,50115
+56921,60499,61716
+56922,75383,35993
+56923,53282,62949,2525,23701
+56924,44274
+56925,44708,14307
+56926,73647,28813,65943,15123
+56927,43487
+56928,70991,39715
+56929,81560,49883,17723,46947
+56930,24512,55591
+56931,53355,69631,31890,17634
+56932,17921,20626,29928,38583,42114
+56933,68789,26908
+56934,52138,11404,6614,38698,5241
+56935,20785
+56936,30200
+56937,50586,74756,78981
+56938,14156,50022,19105
+56939,47156
+56940,45161,24426,269
+56941,78634,36366,59313,48514,68299,27387,28341
+56942,34789
+56943,71181,18728,62477
+56944,34978
+56945,73318,37138
+56946,39898,77335,61049,53239
+56947,12046,28639,57788
+56948,58867
+56949,37802,25863,5929,18119,37447
+56950,68546
+56951,78722,17120,9476
+56952,69923
+56953,65183,27742
+56954,53681,45649,71521
+56955,57273,59665,19755
+56956,45576,7888
+56957,21813,6231
+56958,21541,69524,25749
+56959,79783,36957
+56960,45018,22014,6441
+56961,67364,14719,30971,34347,1570
+56962,44764,63530,48785
+56963,3295,610
+56964,49584
+56965,29681
+56966,7994,81492
+56967,23445,38334,68331,19350
+56968,7533
+56969,37677,19356,45862,57540,81878
+56970,53245
+56971,60836,55393,68619
+56972,28729
+56973,33337,24197
+56974,10641,18020,39941,41425,44449
+56975,762,78712,5359,36029
+56976,6164,11382
+56977,46220,64595,79663,67581
+56978,26907,44642,2625
+56979,22644
+56980,67303,31079,40250
+56981,8872
+56982,59263,65801,50625
+56983,62092,34356,66968
+56984,48048
+56985,10936
+56986,70828,53889
+56987,18959
+56988,18735,46978,48744,63024
+56989,47072
+56990,74139,13321,28053,29257,78560
+56991,80861
+56992,72222
+56993,16053
+56994,77785,55145,33124
+56995,72244,74525
+56996,4359
+56997,81000,64924,42839
+56998,75179,17810
+56999,64387
+57000,35704,12149
+57001,26443
+57002,45714
+57003,35740,26134
+57004,47226,9743,16451
+57005,63197
+57006,46206,61310,20378,58897
+57007,49147,47499,71009
+57008,73406,43085
+57009,43743,57798
+57010,40569,2526
+57011,65659,63736
+57012,24407,25308
+57013,58166,64513,40343
+57014,1552,17749
+57015,49903
+57016,58599,44766,81630
+57017,4332,28313,75768,26696,22718
+57018,23408
+57019,18450
+57020,56215
+57021,40525,2876,2918,60595
+57022,68698,80932,75328,16535
+57023,53105,58520
+57024,20845,6342,72730,66263
+57025,55672,60222,70389,27653
+57026,61953,61356
+57027,66775,82061,81205,37388
+57028,57577,4342
+57029,51507
+57030,8901
+57031,75405,77161
+57032,70871
+57033,49610,56981
+57034,23019,894
+57035,25171
+57036,75851,19395
+57037,71479,66270,7219
+57038,50651,51877
+57039,3481,67019
+57040,62331,34019
+57041,684,11867,41791
+57042,19743
+57043,4536,22070,55862
+57044,19317,23635
+57045,27173
+57046,22794
+57047,9126
+57048,73994,18203
+57049,11007,53647,18862
+57050,77655,18514,29331
+57051,46252,61463,8411,26448,54398
+57052,39435,17562
+57053,40019
+57054,55862,57619
+57055,46055
+57056,8929
+57057,75383
+57058,41443,6175
+57059,73709,12503,28774
+57060,42184,44904
+57061,11701,44220
+57062,18309
+57063,23223,8076,17033,7138
+57064,66153
+57065,40463,78619,5643
+57066,37319,28002,26749,48208
+57067,29369,1357,71744,53165
+57068,10877
+57069,49849,56219,6533,25375,1063
+57070,28344,75389,6215
+57071,77767,44151,13555,35002
+57072,13870,46461,56457
+57073,75610,63413,76151
+57074,61569,54176,80547,29773,62311,79475
+57075,74517,81575
+57076,52449,35894
+57077,43207
+57078,72730,20294,10985,81851,45,76933
+57079,80496,48346
+57080,81783,79976
+57081,11,45176,48823
+57082,76305
+57083,47960
+57084,76289
+57085,13758,81645,73231,12477
+57086,34653
+57087,38631
+57088,12811
+57089,50381,41138
+57090,66601
+57091,80146
+57092,54857,39369,71929,31843
+57093,34711,48430,4328
+57094,51469,6676,32810,57199
+57095,33743
+57096,9052,7354,9876,71937,23250
+57097,32579,418,34601
+57098,25475,27643,75851
+57099,15375,6790,53972,650,47210,5814
+57100,14256
+57101,53065,45692
+57102,63048
+57103,43129,59929
+57104,19047,53214,17776
+57105,56988
+57106,39270,6708
+57107,41802,7704,54737
+57108,65770
+57109,51577
+57110,2060,69551,1115,20124
+57111,15930
+57112,4204
+57113,810
+57114,68862,64844
+57115,51959
+57116,24616,17647,11021,18619
+57117,68852
+57118,75604,25538
+57119,67523,53641,80342
+57120,29218,51916,2023
+57121,61066,62900,42953,379,6244
+57122,74791,55278
+57123,29757,50004,42005,36563
+57124,76762
+57125,32685
+57126,75639,9328,1745,11144
+57127,16894
+57128,28929,76691
+57129,38012,47801
+57130,15995,18700,20309,54743,60616
+57131,638
+57132,70691
+57133,78345,81332,68756
+57134,28618,77176
+57135,56787
+57136,77959,45778
+57137,496,13462,40978,31540,80779
+57138,61076
+57139,48805
+57140,34082
+57141,13961
+57142,48949
+57143,5483,57111,75163,34364,2873
+57144,59209,20227,45048,18779,53203,12887,54054
+57145,649,65153
+57146,54303
+57147,18650,68278,29044
+57148,39883,28978,52260
+57149,61714,6245
+57150,39013,21543,80830,69961
+57151,51164,76944
+57152,70903,24179
+57153,67176,47797,26026
+57154,8248,16894
+57155,82132,46330
+57156,52588,67383,4287
+57157,66652,12888,22377,26917
+57158,3384
+57159,49331,23761
+57160,18309,64123,27790
+57161,15634,50434
+57162,33207,42084,57915,46352
+57163,1919,50480
+57164,6335,21928,74478,67720
+57165,37533
+57166,3959
+57167,44403,46712,42263,82060,39760,78478
+57168,71094,60034,63210
+57169,57402,61965,26626,72408,71535
+57170,37408
+57171,62676
+57172,58804
+57173,38895,7960
+57174,41471
+57175,11304
+57176,30619
+57177,45244,47823,76746
+57178,18832,1411,75465,9614,8073
+57179,57114,59628
+57180,31537
+57181,76213,54367,51122,55499,79726
+57182,60441,65352,70131,37255,19762,50398
+57183,55377,2502
+57184,70235,31626
+57185,63324,27159,76870,21301
+57186,59252,48723
+57187,16105,73878,79979
+57188,3713,2235,29567
+57189,23129
+57190,56368
+57191,36227,57289,64885
+57192,71470
+57193,25358
+57194,6113
+57195,50819,53975
+57196,44975
+57197,65955,28770
+57198,17059,53751,74032
+57199,77035,7895,68581,26658
+57200,25674
+57201,66166
+57202,73017,20504
+57203,38677,71602,62612
+57204,55969,47118,46732,53631
+57205,11642,37784,20427
+57206,11772,16977
+57207,31435,10794,14323
+57208,60325
+57209,64589,64862
+57210,18586,75240
+57211,56398,65105,42942,1764,5660
+57212,54719
+57213,15552
+57214,79857,74191
+57215,61740,5307,23476
+57216,39773,11996,70979,26987,69859,42253
+57217,582,42762,16787
+57218,34720
+57219,13362,81671,58846,18426,12678,77114,61093,36070,52378
+57220,17898,42014,12077
+57221,55467
+57222,47866
+57223,11892,49223
+57224,2121
+57225,36294,22755,26208
+57226,81102
+57227,25511
+57228,42025,13910
+57229,80107
+57230,57173,62657,70371,49654
+57231,7124,5446,81124
+57232,79071
+57233,53233
+57234,20706
+57235,57479,10019,73812
+57236,29483,81704
+57237,12323,17269,63927,20180
+57238,24038,20169,47853
+57239,24362,72225,46634
+57240,38952,54369,33500,43025,471,3304
+57241,30044,25794,40974
+57242,76502
+57243,65301,70658,61356
+57244,16524,34317,42094,16555,53053,40331
+57245,69076,8600
+57246,31253,67082
+57247,35197,48822
+57248,75889
+57249,13985,54451
+57250,63315
+57251,78984,32590
+57252,78217,1757
+57253,66190,47889,36988,8054,1660
+57254,3059,78326,74007
+57255,61872,63312
+57256,32543,46062,54201
+57257,33842,5065
+57258,35504,29898,8715,73271,8559,49560,24914,76253
+57259,57187,12405,54578,1673
+57260,39328,36308,45986
+57261,40627,47802
+57262,22184,59684
+57263,56348,70884,45897
+57264,53959,43249
+57265,37039
+57266,50095
+57267,38380,27800,51301
+57268,3189,42186,5393
+57269,44500,80096,79692
+57270,12423,6955
+57271,13954,34975
+57272,61750,71139,18384,25670,35927
+57273,65469,29538
+57274,37319,42244
+57275,67073,42542
+57276,73226,24261
+57277,40614,59742,12812,69198,55998,65693,44859
+57278,17380,47418
+57279,45554,40844
+57280,15503,6290,80177
+57281,60561,53464
+57282,40391,50526
+57283,19921
+57284,51211
+57285,9347,10952,48299,15937
+57286,11063,65037,51129
+57287,61909,31485,54062,14789,61517,61916
+57288,72300
+57289,28980,37311
+57290,33246,57336,19081
+57291,41011,51230
+57292,66148
+57293,55065,34615
+57294,9057,21586
+57295,51658,77729,61250
+57296,36409,9140,21211,15024,41573
+57297,12526,49127
+57298,78552,17669
+57299,3479
+57300,2088,6640,10169
+57301,76605
+57302,81177,54061
+57303,37562
+57304,80546,78228
+57305,32574
+57306,56119,72856,23989
+57307,23296
+57308,8980,632
+57309,21945
+57310,65823
+57311,41559,48853,10033
+57312,36822,9846
+57313,55107
+57314,22311,14511,34702,20286
+57315,49748,32547,38949,62829
+57316,1651
+57317,32837,33812
+57318,39463,25528,36246,81680,60588
+57319,43758,71772,40701
+57320,11076,81339
+57321,54409,9588,37643
+57322,33523,45206,55129
+57323,13271,27516,76358,34359
+57324,13708,62148,9320
+57325,68324,34708,34053,76871
+57326,11693
+57327,18107,3527,15996
+57328,40905,42512,27606
+57329,65026
+57330,20597
+57331,48340,7790,51122,68759,74946,55182
+57332,72382,36672
+57333,3652
+57334,498
+57335,37342,5072,54748,47274,26536
+57336,53783,19627,32042
+57337,63833,13294,79154,36188,54604
+57338,40616,37846,44701,26183,54271
+57339,11253,47538,60046
+57340,19550
+57341,11748
+57342,77412
+57343,44717,13087,48630
+57344,63177
+57345,15165
+57346,6331,6,45597
+57347,75939,72884
+57348,59175,52697,47094,39903
+57349,75204,73141,56987
+57350,32166,53947,27551,56271,7810,18522,63209,8313
+57351,17296,16261,80501
+57352,69565,50506
+57353,48926
+57354,62911
+57355,4938,54548,77574,57690,5548
+57356,31082
+57357,65880,6462
+57358,45951,26403
+57359,5995,6169,68166,33912
+57360,52341,54016
+57361,52526
+57362,50228
+57363,26453
+57364,16251,14479,63188
+57365,75794,70007,20528
+57366,36438,79282,54467,81485,80046
+57367,70454,82118,36602,34880
+57368,14529,80460,47842,41066
+57369,55502,18778
+57370,72461,78846
+57371,5024,12586
+57372,21584,49573,42257
+57373,74289
+57374,42814
+57375,32582,49346,49733
+57376,61855,52890
+57377,70878,73728,80432,23684,27647,17752,36919,20433
+57378,46953,77864
+57379,8972,60924,14402
+57380,59980
+57381,4347,42602
+57382,78333,1874
+57383,80941
+57384,40436
+57385,9566
+57386,72773
+57387,61664,6359
+57388,33591
+57389,52102
+57390,64352
+57391,79185
+57392,31957,15034,4520,43296,51230
+57393,36804,31767
+57394,70478
+57395,76776,24219
+57396,33951,31394,70312
+57397,10031
+57398,12178
+57399,70660,24287,42779,38797
+57400,56760,54483
+57401,19524,59877
+57402,18974
+57403,58049,61587
+57404,4971,11028
+57405,52575,82157,4835
+57406,38857,45120
+57407,45943
+57408,13999,58175,1736,37340,59884,69824
+57409,24139,9198
+57410,81260,6876
+57411,23727,67017,81061
+57412,31121,49868,46989,62249
+57413,71100,31192
+57414,56029,45520
+57415,37398
+57416,17638,34144,53740,35654
+57417,11565,26414
+57418,21488,1460,75899,21004,7713
+57419,52602,43114,46167,63679,62482,61564
+57420,4347,7754
+57421,68818,3235
+57422,67704,39580,46112,43039
+57423,8015,6854,24389,50315
+57424,29317,50537,71120
+57425,61242,61561,53848,72113,20438
+57426,766,42761,72100
+57427,26906,1961,21572
+57428,34372,25024,7960
+57429,22184,81998
+57430,67500,75650
+57431,23923,43053,59786,32775,610
+57432,16028
+57433,13457,18246,39578
+57434,59467
+57435,34501,42211,13631
+57436,38058,62979
+57437,65509,46634,20823
+57438,46805
+57439,25099,64034
+57440,8468,3081,46060
+57441,50110,80635,64228,8519,34367
+57442,3129
+57443,25610,4425,43489,35892
+57444,66250,69194
+57445,80119,67149,51854,43888,35855,3815,17281,12036
+57446,68767
+57447,42625,48174,71447
+57448,51134,56795,60804
+57449,47694
+57450,35556,71862,72507,22009,10208,55843
+57451,30936,13694
+57452,53975,17369
+57453,44318
+57454,15499
+57455,26678
+57456,10407,11939
+57457,38510,37242,46977,43006
+57458,18360,38077
+57459,630
+57460,70923
+57461,81378,49371,5311,17006
+57462,4814,33638,34561
+57463,6013
+57464,62456,3402,26947
+57465,64296,56023,69336,38657
+57466,34393
+57467,9734,38051
+57468,10581
+57469,6372,36089,17924,18877
+57470,9983,37835
+57471,60245
+57472,28246,52986,54560
+57473,45007
+57474,73255,14809,66368
+57475,45634
+57476,16390
+57477,30078,54137,29589
+57478,17626,7500
+57479,25376
+57480,58740,76636
+57481,11062,26064,32681,3629,80685,58680
+57482,63331
+57483,21828,40808
+57484,78008,70326,24954
+57485,27930
+57486,49046
+57487,34855
+57488,47701,38244
+57489,26112,75669,65907
+57490,43473,5916,17867,40484,16218
+57491,74484,79112
+57492,25232,43334,43714
+57493,14671,17606
+57494,24761
+57495,22612
+57496,22873,81173,48757
+57497,59209
+57498,36807,42574
+57499,3061
+57500,49523,36569,3588,65445,2032,39023
+57501,44023,43998,22390,67886
+57502,60832,19188,2846
+57503,60149
+57504,47940,69865
+57505,41621,20489
+57506,13061
+57507,80223,34526,80878,32194
+57508,31535
+57509,80340,37874,4900
+57510,81882,9662
+57511,16841,31104,583
+57512,35061
+57513,53696
+57514,8045
+57515,69406,15133,41506
+57516,48953,28096
+57517,31720,47125
+57518,27107,21528,55844
+57519,18480,28062
+57520,39613
+57521,50423,65024,31780
+57522,22791,72216,17765,16407
+57523,23049
+57524,77547,189
+57525,76117,22005
+57526,2710,6867,25607
+57527,51467,68404
+57528,56693
+57529,68085,15939,47169,44900,43245
+57530,4055,54063,79492
+57531,51119,3553
+57532,29869
+57533,8260,50482,75540
+57534,67485
+57535,23992,15149,76281,41487
+57536,61667,72293,55434
+57537,55945,51556,41159,17402,1946
+57538,11244,39610
+57539,73327,61040,32105,63216,66452,24808
+57540,22027
+57541,77289,8524,38457,59726,41146
+57542,80110,77374,60139,62420
+57543,60620,7618
+57544,57785,77439
+57545,77416,8293
+57546,66262,46308
+57547,57813,42093
+57548,11572,36271
+57549,22683
+57550,55501,81516,58279,5253
+57551,81420,57182,79592,35762,8689
+57552,59279,31486
+57553,66237,887
+57554,6987
+57555,79591,75261
+57556,358,80630,81961,79927,69817
+57557,11442,20609
+57558,57708
+57559,12309,72370
+57560,4991,60187,78013
+57561,47699,52076,71664
+57562,48315,47018,18446,2834
+57563,53475,21044
+57564,66431,74807,2410
+57565,27329,23768
+57566,44196
+57567,64551
+57568,58674,56049,7138
+57569,31775,75298
+57570,844
+57571,34526,54544,81783
+57572,10286,47203,59297,33638,51985
+57573,52210,70951,8891,73861
+57574,15908,7863,69647,61783
+57575,49315
+57576,15837,26722,31313,20873,49307,39903,3396
+57577,50257
+57578,48015,54926
+57579,52124,53649,3058,13829
+57580,21751,63556,14543,4816
+57581,81155,34589
+57582,31207,1027
+57583,76702,36227,3127
+57584,23957
+57585,13095,13062,27972,4073
+57586,78150
+57587,69565,73692,36968,6071
+57588,51226,58369
+57589,12543,16736,53338,48667,6888
+57590,64303
+57591,18079,3834,10125
+57592,3752
+57593,67120,27266,16922,18030
+57594,47524,37162,3090,25437,56498,17233,16944
+57595,60777,69053
+57596,13860,65035,9700
+57597,29989,57716
+57598,48754,38187
+57599,55213
+57600,16039,40473,29783
+57601,26249
+57602,57330,31102
+57603,40136,81983,8933,24578
+57604,69144,78798
+57605,6996,44532
+57606,65178,53746
+57607,23594
+57608,80430
+57609,72211,72063
+57610,21488,47982,72438
+57611,46396
+57612,36536,71193,30769
+57613,54529,52928,51913
+57614,70783
+57615,26523,58698,28946,66857
+57616,22138
+57617,75062,13690
+57618,14887,68204,43892
+57619,78990,50636,51936
+57620,51069
+57621,46808,32643,51741,79863
+57622,67517
+57623,74256,54817,56000
+57624,67363,25401,5064
+57625,25934
+57626,61999,15426,73148,33842
+57627,15508,29965,15421
+57628,25870,63073
+57629,27136,54432,40712
+57630,13642
+57631,49323
+57632,11566,68993,74364,9901,20175
+57633,67774
+57634,3795,53338,63544,29578
+57635,17538,36400
+57636,38187
+57637,60692
+57638,70022,57079,9426,71591
+57639,76831,16143,78609,75435,33499,965
+57640,7485,51445,62794,11148
+57641,24397,56012,6307,42867
+57642,36999,80346,67748
+57643,37475
+57644,21651
+57645,23312,40524
+57646,25046
+57647,17815,8295
+57648,45445
+57649,37976,42390,36849
+57650,56340,16892
+57651,36213,1946,64051,21691
+57652,30708
+57653,49935
+57654,47832,21066
+57655,32421,25764,39268
+57656,48899
+57657,60061,31048
+57658,52591,45109,2486,11190,17571,80814
+57659,29418
+57660,14130,67543
+57661,3773,20145,68698,26384
+57662,43838,34046,33880,76948
+57663,57009,35518,79553,41213,62238
+57664,73133,7969,8789,76497,14209,4016
+57665,34359,15717
+57666,57812,15151,51269,73404,63626,57099,61171
+57667,67023
+57668,62936
+57669,17596,25879,61437
+57670,62574,38606
+57671,39743,31962,74287,14859
+57672,57788
+57673,18892
+57674,13127,36031
+57675,77726
+57676,54493,57564,75871,16226,35547
+57677,59841,81231,71759
+57678,44112,78529
+57679,41582,20302
+57680,80132,12157,16343
+57681,25564,33176
+57682,24532,67332
+57683,74411
+57684,71479,56264,40957,33683
+57685,37260,20124
+57686,69677,60793,7826
+57687,55285
+57688,51709,9477
+57689,52667,19535
+57690,3043,14680
+57691,39450,41071,27339,55958,75543
+57692,16814,16710
+57693,19323,71061
+57694,60032
+57695,79451,78746
+57696,40933
+57697,40899,65250
+57698,72978,69257
+57699,43827,66421,26691,76281
+57700,15311,69502
+57701,16841,6079,2844
+57702,62789,33886,55118
+57703,11401,30038
+57704,28619,78152,39026
+57705,18981,34050,76123
+57706,27681,72222
+57707,28226
+57708,4983
+57709,29388
+57710,506,39449,13823,17853
+57711,46720,38641,29979
+57712,41694,36489,19750
+57713,82159,14226,67283,71029
+57714,3919
+57715,69907,70789,65007
+57716,45093,57942
+57717,82034,40913,38876,24938,24351
+57718,3074,81427,71100,67172
+57719,43207
+57720,29754
+57721,32029,43392,52312
+57722,60474,77284,74873,64395,14324,31967
+57723,9727,10671,19147
+57724,50239,52558
+57725,29661,63473,25766,46845
+57726,16577
+57727,16112,33281,81427,45303
+57728,66,31206
+57729,64949
+57730,53319
+57731,64975
+57732,67268,20846
+57733,18710
+57734,11466
+57735,29233,69883,33225,18080,81269
+57736,77854,20241
+57737,12267
+57738,66635
+57739,72191
+57740,34162,10655
+57741,50120,52650,9471,43313
+57742,10233,8981
+57743,60604
+57744,3855,32544,19306,81174
+57745,74411,28974
+57746,1775,74441
+57747,67536,16160,25381
+57748,30264,37350
+57749,35396,14809,74059,61429
+57750,64568,81847,30663
+57751,34935,78864
+57752,17319,70025,19853
+57753,62504,65148,3380
+57754,16880,45604,82186
+57755,74558,81220,19356
+57756,45140
+57757,63483,56155
+57758,60256,41190,4543,65105
+57759,29658,45405
+57760,13901
+57761,22175,78212
+57762,25387
+57763,65210
+57764,52371,32115,55952
+57765,82187,47049
+57766,10214,22486,55107,3538,76891,52889
+57767,14132,35988,17819,59935
+57768,49289,35544,8495,43398
+57769,61129,72708
+57770,56141,18410,69413
+57771,80172,43284,63808,7374,36418,74585
+57772,54312,7413,33159
+57773,75448,25439,19365,10799,20560
+57774,54503,50110,8064,23973,11994,32331
+57775,72703,81715,58390
+57776,73327,47671,79424,55114
+57777,65829,50996
+57778,844
+57779,39734
+57780,6185,76199,48545,56671
+57781,32660,23752
+57782,57734,54038
+57783,44226,52176
+57784,8958,20770
+57785,45309
+57786,36910
+57787,2552,41481
+57788,69583
+57789,59144
+57790,52171,67398,13699
+57791,18438,70938
+57792,77296
+57793,25943
+57794,19066,2288,33557,13673
+57795,61093,11706
+57796,59636
+57797,12724,58406
+57798,58907,6236,28680
+57799,50203
+57800,72552,60676,78742,10228
+57801,32042
+57802,40295,19270
+57803,5661
+57804,35597,25286
+57805,78254,23070
+57806,69739,71763
+57807,22573,12551,31887,12512,34979
+57808,25638,19359
+57809,67711,48037
+57810,2800,60927,45449
+57811,37404
+57812,57952,70189,33031,18423
+57813,2028
+57814,46141,40349,71668,43226,45479
+57815,21199
+57816,57463,19073,28615,10578
+57817,80226,61431,29601
+57818,42292,70082
+57819,22718,51097
+57820,78018
+57821,58007,56257,56001
+57822,72176,41073,20754,58813
+57823,34973,33536,386,31890
+57824,40102
+57825,68147,80724
+57826,5048,47935,44361,25836
+57827,8955,20895,3944,7567
+57828,14470
+57829,35649,33404
+57830,2687
+57831,64872,28,36877
+57832,47108
+57833,34734
+57834,40166
+57835,36408,22197,70195,13579,19957
+57836,44942,53733,58347,68160
+57837,49937
+57838,12950,40321,61081
+57839,73291,63191,21044
+57840,12137
+57841,47503
+57842,70924,17111
+57843,1950
+57844,53305
+57845,58144,26203,4564
+57846,7620,48791
+57847,37813,45787,3065
+57848,48685
+57849,5725
+57850,24331,44127,50528
+57851,33764,25152
+57852,12686,61937
+57853,20949,76958,18447,32258
+57854,43327,27012,30917,79014,33008
+57855,2674
+57856,2154,43204
+57857,2593
+57858,70566,43512
+57859,9070,61945,965,63772,11701
+57860,29469,30218
+57861,20204
+57862,30341
+57863,29210
+57864,6275,53032
+57865,24358,41628
+57866,15624,5813,11441
+57867,50673,20491
+57868,65531,50818,23704
+57869,33751
+57870,24478,56255,14276
+57871,43968,67501
+57872,43964,81205
+57873,9409,5867,44468,77202,5955
+57874,22081
+57875,39551,68985
+57876,44575,69250
+57877,1493,62985,26932
+57878,74346,78875,71828
+57879,34027
+57880,23012,42306
+57881,61714,11045
+57882,72489,21614,32551,78184,60533,71982
+57883,39764,28765
+57884,9588
+57885,23741
+57886,9553,73903
+57887,12592
+57888,50051
+57889,32578
+57890,48927
+57891,57558
+57892,71664
+57893,56993
+57894,377,13650
+57895,6302,77085
+57896,49354,78365,32073,39260,35271
+57897,56760
+57898,53499,58591
+57899,66626
+57900,61736,20087
+57901,46230
+57902,29532,71360
+57903,30414
+57904,66996,1913
+57905,58461
+57906,45148
+57907,34430,18327,49325,40358
+57908,52570
+57909,58348
+57910,33686,29303
+57911,43408
+57912,47167,24640,6267
+57913,67650,5003,23678
+57914,27545
+57915,77434
+57916,15439,9757,52823,2523,26775
+57917,21669,61737
+57918,78610,59863,62670
+57919,42148
+57920,25025,50480
+57921,45301,9325,5886
+57922,57357
+57923,70264,67665
+57924,39695
+57925,9184,76918,48769,46984,53762
+57926,19939
+57927,81620,7154
+57928,48668,34731
+57929,67809,50480,75026,5453,23089,12268,67570
+57930,71060,78393,33899,42664,35149,46573
+57931,55141
+57932,52211
+57933,34705,79842,57810,64179
+57934,70400,56713
+57935,36034
+57936,5924,45830
+57937,55348,58841,72705
+57938,41151,55682,39696
+57939,45805,8787
+57940,43980,75914
+57941,65669,39704
+57942,13174,29477
+57943,78149,78982,30233
+57944,36210
+57945,11850,4869,4028,42913
+57946,80684,2856,21826,29952,42101,9373,58631
+57947,44236,41273
+57948,52762,52317,70420,19728
+57949,49407
+57950,20759,2505,12488
+57951,38116,70708
+57952,54000
+57953,28915
+57954,69220,54128
+57955,68986,72939
+57956,31869,16522
+57957,68862,49041
+57958,30252,36948
+57959,74862,14470,38147
+57960,50321,20805
+57961,76252
+57962,52147
+57963,38589,31213,68793
+57964,79049
+57965,3384,73350,13188
+57966,5529
+57967,66318,49698,3809
+57968,12269,33999,69355
+57969,18357
+57970,71020
+57971,21118,14898,55192,66970
+57972,61128,52002,5266
+57973,12951,16092,71535
+57974,27528
+57975,53431,1107,36285
+57976,1274,16556,8591
+57977,23702,40860,53628,42875
+57978,39824,5244,18767
+57979,46795,64811,75806
+57980,80999
+57981,60803
+57982,67331,25084
+57983,54483
+57984,5056,10498
+57985,71386,8736,38331,76153
+57986,25447,46780,41089,46591
+57987,21187
+57988,2606
+57989,17662,57537,8071
+57990,6932
+57991,69348,47450,32976,14279,78403
+57992,15792,35500,413,18883,55858,15798
+57993,31864
+57994,54534,878,29035,59939,65153
+57995,33079,24773,30921
+57996,42785
+57997,14408
+57998,14771,3408,24976
+57999,11041
+58000,34935
+58001,28172
+58002,34801,30647,16932
+58003,77299,60008,48448,16252,79799,35202
+58004,35732,46401,3346,54412
+58005,73336,79494,66825
+58006,2798
+58007,70340,27928,30943
+58008,5128,75011,76357
+58009,7342,79393,10195,24643
+58010,5803,66378
+58011,40825,59482
+58012,81424,75031
+58013,55762
+58014,50217,67511,7449,20805
+58015,20976,78155
+58016,48484,44257,37381
+58017,26259,50981,223,22959
+58018,19304,20799
+58019,6340,39705,22863
+58020,25483
+58021,34687,64674,68826,33980,31341
+58022,30485,36880,38675
+58023,7577
+58024,58200,5476,10496
+58025,72958
+58026,476,40925,24452,67730
+58027,42012
+58028,888,73344
+58029,7150
+58030,41374
+58031,66285
+58032,32217,73646
+58033,45066
+58034,54155,8045
+58035,5625,57586
+58036,81149,4719,8874,7672
+58037,32214,8388
+58038,21571
+58039,1941
+58040,56568,64593,6332,50295,43645
+58041,45896,8576,51722,42806,71105
+58042,81244,2572,78825,37755
+58043,62245
+58044,6301
+58045,79664,64321,17393
+58046,30065
+58047,82
+58048,67374,17074,72814,81779,75802
+58049,8295
+58050,44420
+58051,51557,78999
+58052,6223,70495
+58053,64427,72669,31109,40643
+58054,35222
+58055,23305,8613,55125
+58056,26288,19564,2916
+58057,2595,39768
+58058,61573
+58059,78640,77843
+58060,48615,2744
+58061,36714,8942,58044,43510,19784
+58062,5204,28988,27609
+58063,75914
+58064,30383,42302
+58065,26963,65887,68330,30645
+58066,77403,71475,65013
+58067,75580,37906,52624,42603
+58068,79670,36933
+58069,66880
+58070,75862
+58071,68353
+58072,6132,57987,43526
+58073,50145
+58074,7628,51759,56195,22913
+58075,48100,10210,30651,35559
+58076,38620,30704,69778,25774,12162
+58077,65949,62450,46647
+58078,63583
+58079,28474,42294,39947,2701
+58080,39098,64612,25423,59354,58562
+58081,18443,33275,9007,56508,8020
+58082,38824,42720
+58083,63732
+58084,79775,28406,14063
+58085,58129,52392
+58086,20061
+58087,36275,27396
+58088,55813,49015
+58089,38628,66607,61476,11264
+58090,17943,45165
+58091,57088,54011,34766,41177,76253
+58092,59536
+58093,17109,44224
+58094,51470,37408
+58095,63871,79803,35301,4766
+58096,1592
+58097,22704,32454,36151
+58098,9022,33675
+58099,67508
+58100,81353,25170,11210
+58101,86,67329,50534,3972,57003,42353
+58102,78164,1012
+58103,65733,53539,15341,53345,8322,25841
+58104,64914
+58105,61537,57592,22087,27705
+58106,70923
+58107,22169
+58108,23877,33104
+58109,33843
+58110,67567
+58111,1320,59373
+58112,16890,44646,19491
+58113,64320,12224
+58114,17419
+58115,37795
+58116,48886
+58117,66554,79585,51620,12612,31539
+58118,30360,2465
+58119,76794,56452,66831,61691
+58120,38999,44495,76014,75459,50536
+58121,79451,52883
+58122,52917,49744,63491
+58123,35771
+58124,40603,21931,44954,64036
+58125,6522,7969,52349,5205
+58126,76460
+58127,38180,29078,29425
+58128,35526,64549,13509,33584,5823
+58129,48497
+58130,40815,59486
+58131,20504,78451,49500
+58132,40060,40835
+58133,80774
+58134,10721,50689,57199,12558,68500,61618
+58135,6325,54231,28599,78164
+58136,65352,43584,60279,24873,57127,39641,58325
+58137,34304
+58138,68449
+58139,45553
+58140,42427,63553
+58141,36389,9728
+58142,71267
+58143,47023,48483,58819,43740
+58144,7857
+58145,72255,50698
+58146,75166
+58147,8281,76526,73998,69518,63756,39799
+58148,30675,35725,19123
+58149,35845,11908,41315,17450,27234
+58150,27864,15306,10529
+58151,30970
+58152,16811,21318
+58153,38733,71744,11276
+58154,78880
+58155,42109,78204
+58156,74912
+58157,68808,74764
+58158,22004,38297,59376,2010,66416,77095
+58159,3310,1037,44650,44151,15485,73747
+58160,49542,70089
+58161,17239,12871
+58162,50828
+58163,27361,15714,75047
+58164,51594
+58165,24366,32725,30489
+58166,44,41030,59307
+58167,18241,42616,62550
+58168,64849,1759,17009
+58169,29242
+58170,65190
+58171,77477,40933,72179,9099,24399
+58172,21546,53630
+58173,30863,18827,11974
+58174,25235
+58175,54335,57925
+58176,18672,72820,55617
+58177,40446,37862
+58178,53789,26937,72380
+58179,39053,65088
+58180,14787,5065
+58181,8793
+58182,35560,18070,40311,56104
+58183,70196,68490
+58184,49912,5483,36200
+58185,75249
+58186,21721,68673,27423
+58187,65641
+58188,33480
+58189,53903,12076,65271
+58190,53539,54539,37980,7185,80867
+58191,55479,39582,11343,9163
+58192,64572,34652,55080
+58193,75137,73238,2642
+58194,28456,35596
+58195,24763,62322,9311,65947,47768
+58196,61855,78320,11931
+58197,40942
+58198,50833
+58199,25782,54574,62342
+58200,5409,7726
+58201,29578
+58202,53574,29799
+58203,17419,2257,4430
+58204,2817
+58205,49892,80321,18937
+58206,32853,22736
+58207,46530
+58208,16927,73804
+58209,21832,24620,10560,73420,27286,81605
+58210,3256
+58211,75377,60538,13243
+58212,81778,18471,50114,31392
+58213,37181
+58214,79172,14365,39117,78417
+58215,55992,44531,78905
+58216,21188
+58217,75186,34760,51853
+58218,26412,54790
+58219,3515,44,34339,37188
+58220,65445,62898
+58221,2234
+58222,60839,20897,110,19009
+58223,49636
+58224,17814,68733,52317,56282
+58225,55886
+58226,24533
+58227,52985,26129
+58228,38285,76823,5216,12711,17626
+58229,61952
+58230,79111,58631,34463
+58231,76526,22003
+58232,2500,31459,54795,41429
+58233,82023,81110,53898,19402,38352,76211,81449
+58234,38727,66489,59889
+58235,40709,21635
+58236,35393,12778,56183,27111
+58237,50077,82076,20481
+58238,31885,3641,38450,30130
+58239,38001,47779
+58240,14657,49993,57193
+58241,27995
+58242,81406,36611,67902,13106,57014,71405,16619
+58243,4199,17502
+58244,15219,51156,34501,19311
+58245,49328,40820,35949
+58246,50055
+58247,5703,793
+58248,9231,73462,62413
+58249,53363
+58250,38012,4025
+58251,41439
+58252,295,65826,64954,49160
+58253,34649,35126,78360,7881
+58254,12131,81430,64366,3101,39215
+58255,33970,10125
+58256,65722,61978,62882
+58257,49848,2568
+58258,10533,44328
+58259,69036
+58260,30392
+58261,44081
+58262,1818,38450
+58263,4558,70434,27908
+58264,41005,53983,63441,76047,2880
+58265,62827,78001
+58266,22455
+58267,33965,22942
+58268,32788
+58269,48759
+58270,30004,23012,64559,41670
+58271,7496
+58272,49116
+58273,32240,73781,4242
+58274,30416,71290,26596
+58275,80716,73250,62314,46347
+58276,73054
+58277,16484,33094,68355,18580,23728
+58278,26839
+58279,28736
+58280,46268,72018,5711
+58281,21182,46747,23716,69606,1588,42877
+58282,6744,60916,48591
+58283,66316,64232,75945
+58284,48031,29723
+58285,4806,58488
+58286,28061,44731
+58287,6697,50965
+58288,17864,20997,57689
+58289,7836,35448,32692,11539,76731
+58290,72093
+58291,66569,26683
+58292,82128,44499
+58293,49460
+58294,43291,29308,32402
+58295,429,71491,79985
+58296,35041,53393,52769,12704
+58297,29673
+58298,8741
+58299,52890,58802
+58300,17482,35295,54687
+58301,15087
+58302,46355,57430,81356
+58303,8427
+58304,69012
+58305,19648,72889,3418,3240
+58306,57478
+58307,37896,69948,79239
+58308,69809,43484,71742
+58309,28450,62023,11142
+58310,32080
+58311,7340,55907,3690,74376
+58312,19590
+58313,73040,26735,31316,29352,46839
+58314,78704,46607
+58315,35516,70791
+58316,53559
+58317,67936,58554,10406
+58318,73958
+58319,66131
+58320,4893
+58321,47195,42541,37996
+58322,76000,68057
+58323,48805,58334,22527,149
+58324,10580,18434
+58325,51661
+58326,74429,79184
+58327,16157,58429
+58328,15273,11427,41313,72607,15772,40684
+58329,11001,68104,30349
+58330,63563,78559
+58331,62283
+58332,41345
+58333,5199
+58334,80288,15934,18161
+58335,29324
+58336,16470,75123
+58337,14373,70116
+58338,74000
+58339,19947
+58340,47531
+58341,68367,40773,66175
+58342,16794,70060,49172
+58343,74875,68756
+58344,11081,17516,15654
+58345,31326,64581,77604
+58346,3349,21593,15173
+58347,5286
+58348,71616
+58349,63214
+58350,26673,73179,40474
+58351,64424
+58352,24219
+58353,42158,50494,81642,19336
+58354,22953,74719,9156
+58355,79289,20828,11789
+58356,19315
+58357,79169,60080,3506,14056,65853,38196,18497
+58358,69412,54757,71791
+58359,33114
+58360,28685,51581,7474
+58361,16382,34265,5214,34692,34289,54077
+58362,79734,74719
+58363,19137,80140,53358,60153,43263
+58364,28631,2550
+58365,52494
+58366,37756,27255
+58367,22408,47210
+58368,79412,19045
+58369,3623
+58370,25314,33090
+58371,58476
+58372,60375,26032,59980
+58373,40144,6493,61850
+58374,2217
+58375,30534,50411,3295,63135,59828,3909
+58376,22084,68543,79032,728
+58377,52566
+58378,17224,63070,46049,78328,69562,66849
+58379,45435,52372,35361,22811
+58380,28735,46236,22093
+58381,73543,62496,63392,75794,29847
+58382,34889
+58383,49223
+58384,41740,2144,34317,58485
+58385,72363,36608
+58386,17390
+58387,44312,43609,41195,67857
+58388,19892,3828
+58389,5153,8304,5083,3751,25317,34184
+58390,29065,75339
+58391,65026,26346,3613,68557,6245,67683
+58392,32572,47217
+58393,19412,13146
+58394,3828,44091,25671
+58395,31182
+58396,32122,70789,44922,23112,24373,26318,26011
+58397,8651,23465
+58398,49085,66340,35321,3359,33652,7274
+58399,1803
+58400,80610,68049,67876,53085,9852,77683
+58401,31450,47092
+58402,53233
+58403,7764
+58404,24987
+58405,44318
+58406,77420
+58407,65036,11784,2988,43794,4962,49072
+58408,41891,67965,26739,41383
+58409,13882,24631,8390,19062
+58410,70182,65005,72095,5358,73023
+58411,358,16665,75024,57343
+58412,1486
+58413,78139
+58414,65989
+58415,66357,16363,35443,7531
+58416,77367,5823
+58417,51801,16380,3972,44547,33852
+58418,55671,12089,40108,76430
+58419,7731,76245
+58420,13472,15035,15315
+58421,62573,10320
+58422,9268,31214,14702
+58423,40362
+58424,51335,34544,49392
+58425,76836
+58426,3350,14219,13193,18137
+58427,34505,46466,54409,60769,12573,74496,60847
+58428,2771,19759
+58429,8528,78470,60655,69035
+58430,25826,29792
+58431,25148
+58432,8385,45140,71431,35689,78801,65311
+58433,65929,63436
+58434,61901,53828
+58435,48306,62044,65326,7422,21464
+58436,3057
+58437,42570,17893
+58438,74134,1866
+58439,9415,8048,63783,13711
+58440,51431,70116,44725
+58441,66563,52231
+58442,71611,15194
+58443,75372,61172,6538
+58444,67397
+58445,47134,10991,30341
+58446,21850,8473
+58447,1772
+58448,40171,52476,27243,65977
+58449,32879
+58450,22149,10868,9470
+58451,44468
+58452,47853,54719,23137
+58453,37118,47044
+58454,23559,50699
+58455,48600
+58456,21228,40015
+58457,54426,58293
+58458,18017,65685,1958,65488,28390,70484
+58459,18668,42950
+58460,9803,37836,17361
+58461,63331,65061,43698
+58462,54970,3682,62369,22818
+58463,48264,70128
+58464,53860,57234,39668,42892
+58465,80694,67636,30687,9426
+58466,40923,41306,32509,29054,46075,21254
+58467,66962
+58468,26270
+58469,37352,38402,41736
+58470,50399
+58471,35852
+58472,50410,13082
+58473,3285,68480,44942,64476,12112,11458
+58474,68582
+58475,41394
+58476,5740
+58477,73526
+58478,34610
+58479,47233,17531,35410,28164
+58480,39381,80551,53902,14925
+58481,58759,28468
+58482,56460,38335
+58483,7768,59106
+58484,47787,3796
+58485,79279
+58486,64799,75969
+58487,42478,51269
+58488,74441
+58489,10894,5363
+58490,35873,49496
+58491,49030,6672,32556
+58492,50526,74601,24421,40641
+58493,11669,68847,19338,67595,20440,34237,58544
+58494,592,3817,57001,34265,58949
+58495,45403
+58496,39767,49896,20972
+58497,19742,24272,15962
+58498,14721
+58499,44472,18355,52398,58049
+58500,4456,28571,70170
+58501,63599
+58502,21236,20256,39528
+58503,70648
+58504,46523
+58505,28715
+58506,22852,67094,33521,15543
+58507,44025,15662,68067
+58508,51560,62126,29267,47002
+58509,43221,54873,74161
+58510,15270
+58511,50604,62430
+58512,37150,25447
+58513,19202
+58514,62592,31538
+58515,42004,81521
+58516,49590
+58517,68026,25024,65309
+58518,59775,52714,42939,58176
+58519,47933,28593
+58520,18149,63246,82157
+58521,52547,64786
+58522,36092
+58523,46281,14825,36396,67939,53302
+58524,42226,30625,53384
+58525,828,64448
+58526,57158
+58527,9022,39632,22246
+58528,54213
+58529,25807,46555,63531
+58530,68689,29532,60390,74309
+58531,13338
+58532,23633
+58533,71031,70647
+58534,18807
+58535,80979
+58536,73069,32311,20725,26759
+58537,43526
+58538,4561,43424,30661
+58539,20677
+58540,68468
+58541,70934,4614,61513,10430,31458
+58542,76173,26157
+58543,80909,52047,8438
+58544,32003
+58545,49769,44181,62777,16328
+58546,25583,2290,56964,29051,26463
+58547,53071,66193
+58548,23438,17767,44899
+58549,30208,45236
+58550,15060
+58551,625,16176
+58552,30862,54568
+58553,7278,26588
+58554,21727,38488
+58555,41352
+58556,2204
+58557,71012,54380,53894,11146,78669
+58558,44218
+58559,22612
+58560,27831
+58561,60712,65458
+58562,77588
+58563,9074,41706,60009
+58564,6007,65610,37245
+58565,14897
+58566,61221,51235
+58567,25273,74773,75540,30210,41846
+58568,67016
+58569,46728
+58570,11399
+58571,11921,14203,27082
+58572,7755,54883
+58573,42004,20836,50303,61558,81299,8881
+58574,28352
+58575,74173,75321
+58576,22549,42885
+58577,50267,37398
+58578,101,12082
+58579,25785,47632,48191,44736
+58580,81347,23888,3783,25592,74902,60309
+58581,59651,72517,40021,48360,12521
+58582,29064,11568,64201
+58583,25386,32620,72475
+58584,79895,50124
+58585,24444,71422
+58586,7273,62341,64152,69874
+58587,14412
+58588,52847,57733
+58589,26722
+58590,31073,47944
+58591,15907
+58592,54834,56192
+58593,15030
+58594,36471
+58595,81303,62747
+58596,80319
+58597,41449,78731,42842,13698,39367,2140,68967
+58598,9944
+58599,3860,63454,21876
+58600,44196
+58601,25932
+58602,25802,33372,64661
+58603,78423
+58604,47909,25260,28179,8495,71976
+58605,5218,5652
+58606,37922,26565
+58607,36037,13928,59443,4942,13468
+58608,72442,65947
+58609,11318
+58610,80108,17793
+58611,44660,1037
+58612,79086,81001,16661,78318,21561,70656
+58613,11832
+58614,82158
+58615,10799,6830,65785,1087,53301
+58616,44955,55333
+58617,10077,77826,73226
+58618,6131,25908,16708
+58619,35975,45629,15105,33308
+58620,68300,14691
+58621,68557,56430,10163
+58622,31630,17990,2176
+58623,52986,38733,29469
+58624,21284
+58625,62542
+58626,74071,10423,78543
+58627,5263,78009,5016,16972
+58628,20533,31031
+58629,71868,30452
+58630,59402,2101,19059,38828
+58631,5689
+58632,77571
+58633,48259,31348
+58634,64748,52363,76253,2257,72237
+58635,32909
+58636,2913,63365,33568,60759
+58637,46780
+58638,15024
+58639,27200,40029,603,67172,11210
+58640,65963,47421,4209
+58641,43975
+58642,13892,66686
+58643,19908,17237
+58644,5774,24181
+58645,3845,64415,80010,2566
+58646,46157
+58647,65631,25482
+58648,14187
+58649,41734
+58650,44449
+58651,42588,13024,52933
+58652,48121,71714,29789
+58653,58286,76117
+58654,11779,55126,42526
+58655,18480,18937
+58656,27759
+58657,12965,20491
+58658,54291,61854,60818
+58659,48739
+58660,64309,22410
+58661,1306,53393,68051
+58662,20304,11804,12816
+58663,80503
+58664,61222,59298,14383,74863,20025
+58665,9419,12567,66838,22416,34629,15986,34261
+58666,75811,67209,65191,43645,48896
+58667,54346,28610
+58668,45391,25990,55766
+58669,38199,74202
+58670,79159,35551
+58671,53029,45961,60193,9301,48729
+58672,46989,52062,10677
+58673,48522,44833
+58674,75959
+58675,61470
+58676,40725,78423
+58677,51467
+58678,14134,43387
+58679,41801
+58680,61569
+58681,54904,78991
+58682,57756,30601
+58683,47916,9940
+58684,31411,28791,7888
+58685,51829
+58686,66879
+58687,602,60195,33562,61188
+58688,21659,35243,79497,52980,19690,58444,74703
+58689,3003
+58690,54761
+58691,45487
+58692,28821,11071,37214,36687,40336,9851
+58693,45179,62838,72660,26613
+58694,48256
+58695,56498,29038,8477,34591
+58696,444,31981,58040,80055
+58697,3758,79148,27727
+58698,21833
+58699,64837,38797
+58700,36989,80553
+58701,81517,10663,60504,11189,45046,25582
+58702,62126,48369
+58703,18303,40866,61505
+58704,25574,68556,42803
+58705,44904,23619
+58706,3244
+58707,46954,13794,52251
+58708,39613,65062
+58709,48757,64906,49425,55982,34314,106
+58710,25241,79400
+58711,28601,57926
+58712,66169
+58713,17682,67834
+58714,59846,27254
+58715,44930
+58716,45240,56035,32171
+58717,77206
+58718,55464,74308,74155
+58719,77724
+58720,33868,42044,77279
+58721,28221
+58722,74407,42677
+58723,35513,22929
+58724,51382,12197,27113,10761
+58725,36238,7694,54698
+58726,65171,61222
+58727,75959,58395
+58728,25835,25576
+58729,42434
+58730,66115,27968
+58731,34715,53573
+58732,80609,62687,65480
+58733,25589,30603
+58734,71770
+58735,77555,51418
+58736,29250,51330,10753
+58737,4908,31883
+58738,53752
+58739,68076
+58740,28039,28844
+58741,81809
+58742,38055
+58743,10594
+58744,78245,42350
+58745,8162,66068,30287,1181,64731,28027
+58746,9014,37525,67739,36950,4027
+58747,37060,43965,65332
+58748,64615,79955,36304,8845,65886,13314,68484
+58749,1291
+58750,82078,11635,55013,1589,56968
+58751,67137,62316,69319
+58752,44497,8516
+58753,34504,74024
+58754,17889,72075,31358
+58755,45360,20604
+58756,1183,26013,57160,46039,80539,49181
+58757,73367,81162,75607,67268
+58758,26056
+58759,47195
+58760,48414,49318,33022
+58761,81380,74251,45990
+58762,35155,52991,29071,40456
+58763,30536,42954,8973
+58764,2689,19003,55893,79842
+58765,3781,51202
+58766,32461,35292
+58767,63001
+58768,72210,26245,81862
+58769,58593
+58770,34296,47322,1753,59297
+58771,75314
+58772,76565
+58773,5927,10395,57193
+58774,49608,2753
+58775,48939,5541
+58776,57603,56143
+58777,38211,9790,75220
+58778,3709,43242,51497,16410,52116
+58779,30683
+58780,53809,35705
+58781,23432
+58782,57861,77871
+58783,14603
+58784,4819,12880,29376
+58785,78091,60768,7232
+58786,17615
+58787,1102
+58788,73119,1068,59217,25474,17647
+58789,5612,9139,62451
+58790,78552,46168
+58791,27681,70875
+58792,24462,59951,63189
+58793,432,10340
+58794,73017,66981,28618
+58795,36857,68449,58616
+58796,66036,55257,53067
+58797,57694,33149
+58798,74488
+58799,22403,36882
+58800,35269
+58801,20198
+58802,71615,66670,56186,9731
+58803,22810
+58804,78686
+58805,72372,47593,76694
+58806,38500
+58807,32521,42394,19340
+58808,13506,21406
+58809,68346,53694,2635,47326
+58810,28286
+58811,68895
+58812,37069
+58813,63513
+58814,58109,45817,79791
+58815,44208,5381
+58816,52384
+58817,30907,2551,67702,1178,81051
+58818,17861,70466
+58819,75574,40082,13361,68570
+58820,35683
+58821,35550,8092,42875,62560,26427
+58822,29558,50620,8148
+58823,72037
+58824,45160,54578,49115
+58825,54480,50034,63434
+58826,14269
+58827,33572,554
+58828,67389,23886,34015
+58829,7608
+58830,38294,48508,1669,62133
+58831,47632,53803
+58832,32481
+58833,69686,12035,22813,55133
+58834,37336,64607,45665
+58835,17252,2742,6698
+58836,70849,9382,4696
+58837,36964,30541
+58838,22242,45951
+58839,15657,34028
+58840,25235
+58841,31176
+58842,30986,69632
+58843,29152,76604
+58844,20911
+58845,67903,61232
+58846,73747,40494
+58847,66041,18120
+58848,26571,18475,4433
+58849,46658
+58850,78501,6095,18453,55656,56537
+58851,38501,58395
+58852,64559,39631
+58853,45692
+58854,47005,12919,79036
+58855,67672,9360
+58856,31352,66600,7640
+58857,38877,7936,39061,57281,15796
+58858,66970
+58859,19518,66295
+58860,68585,41000
+58861,66444
+58862,49266,49786,71684
+58863,37322,22488
+58864,29232,64747
+58865,38856,14773,71008
+58866,26657,64860
+58867,693
+58868,57369,63353,61293,60030
+58869,54061,66770,58482,32585,62263
+58870,70188
+58871,72383,51150,10537,77767
+58872,64907,69824
+58873,20913,79032
+58874,44386,69779,45569,19378
+58875,68016
+58876,77149,53163,39434
+58877,130
+58878,61236,77716
+58879,57861,50078,45995,45040
+58880,2480,63007,57638
+58881,45410,65374
+58882,45093,61872,70365,69871
+58883,79553,82110,29895
+58884,22939,35176
+58885,65161,53756,2441
+58886,75820
+58887,31533,31567
+58888,76552,78416,69064
+58889,35151,14268
+58890,27136,38646,2547,55996
+58891,54280,52513,22546
+58892,638,36806
+58893,42631
+58894,7194,57698,70115
+58895,61167,72419,4791,75290
+58896,42795,9282,27096
+58897,79671,24353,43874,71116,7502
+58898,13018
+58899,63202,29731,79934
+58900,12512,65153,24079
+58901,19178
+58902,69098,70794
+58903,13317
+58904,38631
+58905,29487,1230
+58906,42706,56008,24221,50491,51965,36525
+58907,78662
+58908,52782,81095,60725
+58909,870,12984,13552
+58910,13917,20255,44011
+58911,15989
+58912,25558,11699,67852
+58913,4172,9740,73299
+58914,77785,14038,64332
+58915,4303,8341,64179,72364
+58916,57470,42268
+58917,31812
+58918,64893,81087,34093,18914,58441
+58919,28765,17199
+58920,31856
+58921,19762
+58922,76755
+58923,49017,2356,25775
+58924,57158
+58925,32615
+58926,29990
+58927,2878,79570,24453
+58928,59856
+58929,67616,57201,41541
+58930,69947,51655
+58931,73354,54189,41563
+58932,76380,36778,17665,65148
+58933,52596,65159
+58934,28394,52892,70839,51402,47743,4934
+58935,8320,15450,5480
+58936,11898
+58937,12700
+58938,20465,53066,56199
+58939,28141,7572
+58940,42952,25018,72762,2489,516,24045
+58941,17436,46001
+58942,32204,45555,26253
+58943,40836
+58944,77680,67284
+58945,43553,78261
+58946,36021,27070
+58947,58347
+58948,4602
+58949,21657
+58950,37408
+58951,14050
+58952,66132,7942
+58953,65004
+58954,52948,11692,36669
+58955,79039
+58956,79127,15560
+58957,10951
+58958,24384,55749
+58959,5628,44865,55525
+58960,79598,49815
+58961,6346,81740,21749,14550,42565,39462
+58962,20576,45787,3530
+58963,50542,40780,58278,10224
+58964,66521,24894,8218
+58965,10489
+58966,59972,33210,35561
+58967,17171,17268
+58968,20682,79046,41851
+58969,66150
+58970,22676,48659,34056,52252
+58971,64625,60312
+58972,51626,75049
+58973,24763,40829,34387,72529
+58974,15620,60914,47480,45239,56593
+58975,9603,10831,29250
+58976,40244
+58977,50093,81098,65503,38441,7338
+58978,39950
+58979,48136,24182,7598,47957
+58980,80569,63768
+58981,15870,412
+58982,25840,61395
+58983,63093
+58984,73237,18147,10210
+58985,10628,62626,70277
+58986,20178,54467,45490
+58987,43304,3054,29570
+58988,1094
+58989,55914
+58990,25217,47453
+58991,53541,55556,23509,58667,59964
+58992,71106,31788
+58993,66394
+58994,63424,29202,49720
+58995,19809,41596,6152,3918,56347
+58996,80523,16303
+58997,69326,8346,69725,38329,24740
+58998,58201,24086,59867
+58999,39917,34814,28610,17881
+59000,42733,54941,58504
+59001,71746,51240,46635,73766,36996,81669
+59002,70313,54475,35407,64626,44680,2078,67491
+59003,23853,24244,23300
+59004,54753
+59005,23137,74111
+59006,21580,50988
+59007,65150,40137,37011,32332,18174,63629,66125
+59008,56768
+59009,63537
+59010,15901,64520
+59011,73671,49782
+59012,15323,23321,21894,51738
+59013,63582,24580,70366
+59014,61788,54536,53771,10686,48673,47399
+59015,16373,24299,74633,26928,65205
+59016,5984,14277
+59017,81641
+59018,35434,28006,42062,10030
+59019,1996
+59020,11417,23097,59656,72549
+59021,12009
+59022,35029
+59023,25082,10804
+59024,36048,73579,78152,31628,41509
+59025,48194,55299
+59026,58030,19025
+59027,63254
+59028,62247
+59029,2740,71925
+59030,59878,40389,52443,79827,43042
+59031,39676
+59032,69419
+59033,62028,13878,38276
+59034,67677,67992,70654,37626
+59035,11755,37819,68279
+59036,48538
+59037,44662,14113,40926,20877
+59038,32664
+59039,47341,82122
+59040,51933
+59041,71817,6275
+59042,27356
+59043,24956
+59044,51904,70901,28092
+59045,12339,34909
+59046,19589,80941
+59047,2590,22571
+59048,17814,71988,27918
+59049,31909,28561,4768
+59050,48944
+59051,62911,13361,2957
+59052,59749,11846
+59053,52473,12058,24525
+59054,35324,29973
+59055,36321,34377
+59056,7541,73258,48313,4636,56869,35921
+59057,64487,39362
+59058,56715,54264,81770,63050,41778
+59059,22699,73895,49768,54935
+59060,41213,59560,43249,75373
+59061,79134,43945
+59062,73791,52387,40936,69538,19055,47300
+59063,26413
+59064,61515
+59065,75205,8411
+59066,74391,79308,29198,81829
+59067,19013,46145,70280
+59068,47744,74800
+59069,44612
+59070,3146,51439,72848,28959
+59071,53669,73778
+59072,40377,72164,75991,47766
+59073,78219
+59074,76608,22925,42226
+59075,76047,80490
+59076,17304
+59077,74201,63883,38656,177,46594,9362,46387
+59078,38994,5359
+59079,186,34245
+59080,23951
+59081,7234
+59082,78592,61333
+59083,52907,43652
+59084,81654,57193,26264,79537
+59085,70715,14911,8421
+59086,28352
+59087,61039
+59088,2027,42324
+59089,11178,31326,70684,28107,49461,43030
+59090,11430,70856,69690,41740
+59091,30324
+59092,58393
+59093,49041
+59094,39917
+59095,11827,15020,26833
+59096,81942,44218
+59097,74707,15289,31633,41005,30503,3225
+59098,26485,55694,26142,21219,28930,55791
+59099,77229,4764,71376,72322
+59100,22394,56401
+59101,32522,71700
+59102,78390,1960
+59103,73236,78949,60988
+59104,62810,2231
+59105,15173,36013,52234,53616
+59106,13847,26585,60461
+59107,9726
+59108,57965
+59109,50258
+59110,43040
+59111,80959,23216,76627
+59112,7090,48109,80801
+59113,51092
+59114,44013,23987
+59115,25812
+59116,24357
+59117,64996,81670
+59118,18664,23701
+59119,48236,55426,62394
+59120,17435,67950
+59121,14993
+59122,15341,41656,9205,37933,60616
+59123,30787,41036
+59124,54534,64812
+59125,19371,25402,58556
+59126,18182,219,51242,59345,26435
+59127,71628,5426,4987
+59128,31724
+59129,1351,10361
+59130,593,21510,75264
+59131,44306
+59132,6012
+59133,32643
+59134,52333
+59135,5864,21808
+59136,32555,14026,64454
+59137,63617,14055,8945,13973,60195,61011
+59138,53950,38949,34597,43392
+59139,72105
+59140,80753,7265,41275,53226,68112
+59141,62816
+59142,79015,33907
+59143,75892
+59144,46742
+59145,22845,56759,8964,25166,60080
+59146,56252,72320,36973
+59147,69157
+59148,4703,46702,58644
+59149,76406
+59150,68559
+59151,66338
+59152,27025,13365,7679,7739
+59153,46401,37922,25425
+59154,47696,52865
+59155,79433,26246,18986,63936,63503,72376
+59156,37733,73441,30311
+59157,81783,29750,63024,65117,37333,67861,58198
+59158,66616,80859,12382
+59159,25664,70575,81066,20235
+59160,9185,14672,62645
+59161,984
+59162,79632,25234
+59163,5425,43579
+59164,58193,8414
+59165,6353,45097
+59166,57550,45705,49523
+59167,62189
+59168,49054,27670
+59169,30205
+59170,12918
+59171,32650
+59172,17892
+59173,28662
+59174,54900,38398,12657,10339,34646
+59175,63885,72505
+59176,39853,72607
+59177,79722,36982,9316
+59178,72124,2405
+59179,59075,51795,42239
+59180,11479,76446
+59181,36092,72749
+59182,50932,41153,20092
+59183,73771,34934
+59184,28826
+59185,48470,38941,52228
+59186,20246,79518
+59187,14446,58250,6757,37795
+59188,12290,74756,1046
+59189,24415
+59190,66293,22265,6334,5175,72627,15078,77510
+59191,59540,25141
+59192,28315,25617,5663,56091
+59193,69376,20624
+59194,42928,81453,33919
+59195,38123,75556,24187,81622,8258
+59196,64551
+59197,3332
+59198,54706,67024,24059,7826
+59199,15277,35949
+59200,25836,17696,11941
+59201,26042
+59202,15514
+59203,79161,13396
+59204,15510
+59205,53536,10904,55379
+59206,9578,19929,73037,67623,46731,1699,43149,77096
+59207,41801,15402
+59208,67855,66520
+59209,56867,5575,11650
+59210,77505,75137,70684
+59211,72426,44102
+59212,29232,22541,75466
+59213,23179,29163,66019,61057
+59214,70404
+59215,4073,17969,52042
+59216,52333,60165
+59217,36972,30908,26595
+59218,4917
+59219,53087,4564,55787
+59220,43565,23530
+59221,18106,22368,47396
+59222,16117,28940,39724,48722,49669,45483
+59223,25122
+59224,12430,14225
+59225,59134
+59226,7777,11540
+59227,70053,51627
+59228,82161,34555
+59229,28600,14423,33574,56367
+59230,50557,14497,11316,70396,2096
+59231,13155,16800,3649
+59232,66856
+59233,26855,11772,66366,77495,66766
+59234,9530
+59235,74619,58685
+59236,40200
+59237,38887,29745,43834
+59238,29801
+59239,67551,37822,46852,59640
+59240,24666,36103
+59241,73553
+59242,58786,31786,24359
+59243,26433,77374
+59244,70755,11842
+59245,23938
+59246,66116,70266
+59247,63679,49324,4376
+59248,73643,49449
+59249,7016,79406,38569
+59250,22420,62890
+59251,23389,69577
+59252,61735,73345
+59253,69850
+59254,12060,20388
+59255,52883
+59256,40418
+59257,72284,70268
+59258,72496
+59259,8992,79442,40783,58079,66771,17362
+59260,5925,46242
+59261,10189,66756,12408,78069
+59262,19919
+59263,57672
+59264,59209,32340
+59265,66564
+59266,8547
+59267,58031,52746
+59268,49009
+59269,78466,35778
+59270,56359,72040
+59271,9356,17421
+59272,13816
+59273,67702,19123,23621,72496
+59274,24176,75079
+59275,48099,32963,41863
+59276,80383
+59277,61721,13412,54189
+59278,19858,44674,6739,33642,8744,67192
+59279,55675
+59280,27332,42050
+59281,51709,26641
+59282,53198,26096,53425,61934,47352,73133
+59283,46631
+59284,37241
+59285,58858,8490
+59286,48359,72369,77600,71796,9201
+59287,22914
+59288,15668,38093
+59289,32489,23565
+59290,8242,68319
+59291,77429,15414,6042,319
+59292,47011,77982,25237,18011,61491
+59293,3028,58397
+59294,74267,56393,40580,67346,8365,3735,61760
+59295,70676
+59296,69579
+59297,53803,51948
+59298,45007
+59299,65836,3057
+59300,14931,1632,17917
+59301,25735,21133
+59302,62346,49244
+59303,17186
+59304,48776,47953
+59305,79912
+59306,68375
+59307,14982
+59308,2491,9065,54244
+59309,62480,23024,6815
+59310,5080
+59311,1646,12559,43590,53170
+59312,28408,19902
+59313,76498,41433,68991
+59314,77515,78468,40176
+59315,51486
+59316,8791,12207,57129,19094,23230
+59317,58988,11190,6291,54857
+59318,50829,35563
+59319,35409,16272,24243
+59320,43831,32748
+59321,25186,26727,58982,69417
+59322,15022
+59323,68339
+59324,5199,64570,80859
+59325,75088
+59326,9854,44015
+59327,41780,48499,63230,78652,67552,20104
+59328,58580,80856
+59329,29166,5
+59330,46315,81698,6166,42923
+59331,69310,65610,22048
+59332,74776,62069
+59333,71180,11298
+59334,44618
+59335,74479,27058
+59336,28173,70202
+59337,76909,27046
+59338,65530,46874,58604
+59339,35280,32781
+59340,34327,11518
+59341,66539
+59342,71334,17191,35224,3822,42251,33575,13663
+59343,79303
+59344,9427,11107,1165,15460,8545
+59345,26600,8386,28469,24770,28581
+59346,24861
+59347,74406,12246,13868,66249
+59348,10671
+59349,13295
+59350,34033,63486,14306,56114,60554
+59351,24200,67513,49648
+59352,47069,59980
+59353,77998,51362
+59354,2283,80410,4324,66137,14685
+59355,15702,17976,80997,52935
+59356,81459,5405
+59357,41361,45163,16306,63974
+59358,16411,32275,30314,74173,13756,34222
+59359,46222,60465
+59360,31655
+59361,18319,44233
+59362,42662,27567
+59363,4762,60274
+59364,12365
+59365,68679,47150
+59366,27016,74612
+59367,48090,51532
+59368,64171,56,71495,40389
+59369,47317,33203
+59370,63473,60661,70267
+59371,66784,42051
+59372,79363,7297,20445,33061
+59373,20785
+59374,80620
+59375,65128
+59376,57264
+59377,22959
+59378,16673,26623,29816
+59379,18462,65207,11371
+59380,32584,52986,10814
+59381,71852,32488,34317,33743
+59382,79819,43276
+59383,26613,51304
+59384,64071
+59385,4481,67038,26438,70816
+59386,75232
+59387,52423
+59388,76447,20182,72418
+59389,44922,5264
+59390,27774,20851,10285
+59391,19919
+59392,61683,77575,31472
+59393,68238,14033,42233
+59394,58175,41791,47659
+59395,15691,23217
+59396,48377,57374
+59397,58478,29492,34684,9971,6252
+59398,67398,53959
+59399,28213
+59400,49507,52830,59008
+59401,36394
+59402,61916
+59403,8258,56087,29234,73018,36095
+59404,61848,39268
+59405,42266,5798,23200
+59406,2578,81507,16357
+59407,12613,43372,79432,30227
+59408,81822,38882,21073,77189,27532,22421
+59409,59993,64593
+59410,30535
+59411,68585,21834,80380
+59412,80306,48404
+59413,3246,61312
+59414,18856
+59415,14596,37925,18470,25804,64295,43324
+59416,82161,77691,65096
+59417,19376,14613
+59418,30063
+59419,66814
+59420,22740
+59421,36618
+59422,41262,6739,67348,51694
+59423,80945,48610
+59424,60589
+59425,26432,45361
+59426,11248,61407,39504,80938,67537
+59427,337,58051,58682
+59428,68365,63453
+59429,78935
+59430,28753,54025,78034
+59431,41925,9484,47196,12970
+59432,22100
+59433,11403,10280,61551,60197,40571
+59434,40135,38608
+59435,63261
+59436,59520,65010
+59437,31897,47686
+59438,65211,7382
+59439,51354
+59440,5754,11512,65834,65111
+59441,9579
+59442,76625
+59443,34232,43758
+59444,34333
+59445,8085
+59446,78561,33035,35758
+59447,71290,28168
+59448,9613,63004,67601,79854,60061,59303,58859
+59449,2512,65093
+59450,66375
+59451,61394,41325,371,15269,25297,19621,24626
+59452,22499
+59453,25352,38226
+59454,8071
+59455,81351,12078,1471,23453,8451,59291,35015,12660
+59456,42885
+59457,24677,80795
+59458,48856,34363
+59459,80186,24330,74747,67449
+59460,30651,12838,79822,17743,45020
+59461,29338
+59462,38064
+59463,77726
+59464,8042,448
+59465,73858,25826,30507,32397
+59466,57033
+59467,74416
+59468,70979,56017,56898,36887
+59469,77316,11386
+59470,26768
+59471,70827
+59472,76306
+59473,38680,2908
+59474,4173,71327,5703
+59475,43834
+59476,54563
+59477,51472,78107,32078,68372
+59478,81399
+59479,60409
+59480,212,24559,72405
+59481,17075,6854,72950,15749
+59482,14074,57473,59238
+59483,9208,69283,72231
+59484,10807
+59485,51570,51294
+59486,23812
+59487,11919,65052
+59488,26307,45519,25166
+59489,81883,33163
+59490,11119
+59491,78003
+59492,46779,62778
+59493,36347
+59494,49791,43828,42301,7950,10380
+59495,11563,35184,24614
+59496,18408
+59497,14463,69268,56412
+59498,20056,6777,60358,10641
+59499,54586
+59500,53400,34568
+59501,18507,81882
+59502,14449
+59503,75073,57857,2123
+59504,76722,81584,80151,15715,60089,2584
+59505,53755,56441,20517
+59506,34532
+59507,17551,30962
+59508,40271,51055
+59509,81964,39886,29804,27813,25484
+59510,32426
+59511,33383
+59512,29199,60619
+59513,1805,48502
+59514,64345,81068,4082
+59515,7106,32119,27725,39958,80468
+59516,19524,43286,76295,46514
+59517,25674
+59518,59633,11013
+59519,45345,43904
+59520,70277,5814,13443,61625,37439,19134
+59521,14120,8056,23647,14108
+59522,23699,2739,50651,21451,65011,40316,45898
+59523,57869
+59524,24985
+59525,65906,25543,45828
+59526,72962
+59527,38211,70834,41609
+59528,59587,33895
+59529,7710
+59530,49025,60461,37999
+59531,68785
+59532,10581,2388
+59533,64618,727
+59534,32800,40658,81249
+59535,12252,36174,15818,54345,10977,80904
+59536,59454,8268
+59537,54081,6702,7809,62557
+59538,42967,35725
+59539,47463,55725
+59540,61515
+59541,21180
+59542,76435
+59543,42210,62977,67348,68442,5503,63723
+59544,70046,26000
+59545,25766,43513,41043,67125
+59546,26709
+59547,46810,60714,71139,6749,34613
+59548,45327,77442,59617
+59549,56794,74733,33974,16992,73903,5895
+59550,39849,56437
+59551,22274,55853
+59552,490,71639,53963,1066
+59553,30406
+59554,65491
+59555,69822
+59556,998,72590,76691
+59557,42005,80198
+59558,36915,42985
+59559,9186,78949,24914,16494
+59560,68791
+59561,55109,16626
+59562,29102,539
+59563,55295
+59564,70892
+59565,33689,57707,36188
+59566,65238,39180,12588
+59567,79046,54164
+59568,69418,25451
+59569,43299,75090,25691
+59570,4280
+59571,10709,5276,12496
+59572,21296
+59573,70607
+59574,57962,10237,49396,21129
+59575,76666
+59576,35531,20785,25507,78806
+59577,16363,31643
+59578,72103,3805,39786
+59579,67457,53317
+59580,79638,57861,62298
+59581,9436,69193
+59582,81106,59665
+59583,31271,58877
+59584,62376
+59585,73493,17950,11814
+59586,14596
+59587,72755,22708,46170
+59588,11251,76749,23551,77793
+59589,72545,64267,68543
+59590,29723,27594,54815,52141,24219,48308
+59591,67807,58368
+59592,6019,33608,3442
+59593,61192,49935,28437
+59594,43056
+59595,69701,74795,31669
+59596,7655,81967,8772,40591
+59597,69102,15538,22921,16040
+59598,7259,5136,63223,25239
+59599,76503,70964,75415
+59600,73699,61825,54346,21679,14762
+59601,39764
+59602,74729,67389,16631
+59603,31563,37502
+59604,77338
+59605,71264,60046
+59606,46725
+59607,66534,14975,51682
+59608,63842,42585
+59609,26953
+59610,66878,11710,80527,31062
+59611,77403,5127
+59612,37039,44546
+59613,44557,77523,51839,9138
+59614,66631,37144
+59615,20182,82036,75338
+59616,74494
+59617,18416,78868,3234
+59618,77762,74728,65191,41510
+59619,77371,18101,12640
+59620,47146,80585,62153,48570,55692
+59621,72770,79438,14974
+59622,76853
+59623,51101
+59624,4630,70501,21128,68725
+59625,54273,81970
+59626,64469,38047,49359,78688
+59627,72877,18398,9328
+59628,77336,28413,38963
+59629,62872,71385,70585
+59630,4496
+59631,37978,32513,73854,62410
+59632,4552,22762,2375
+59633,49341,22007
+59634,32811
+59635,45586,73948,50353
+59636,43304
+59637,36680
+59638,58383
+59639,3729
+59640,59454,81757,81462,77537
+59641,2674,64468,21755,39307
+59642,44764
+59643,17488
+59644,79980,47810,36102,9853
+59645,46663,62028
+59646,17814
+59647,13406,75213
+59648,44414,68956,28808
+59649,73883,80216
+59650,42470,14823
+59651,21449
+59652,69923
+59653,80266
+59654,6770,70398
+59655,47350,40872
+59656,41929
+59657,12248,30855
+59658,78347,33521
+59659,4845
+59660,49671,44887
+59661,55563
+59662,60470,69702,36399,11025,21185,81874
+59663,43189,44196
+59664,22940,21850
+59665,51379
+59666,72494
+59667,64723,81012
+59668,24053
+59669,35974
+59670,51551,26206,2541
+59671,8516
+59672,78713
+59673,27662
+59674,64743
+59675,57607,48815
+59676,24985,81448
+59677,18002,43750
+59678,3482
+59679,43895,17744,27551
+59680,43963,48547,2426,25821
+59681,14838,42377,52389,79578,75096
+59682,54740
+59683,7356,53187
+59684,76400
+59685,14464
+59686,5165,4401,47330
+59687,69487,42594,56957
+59688,55954,48379,71796,38394,35009,34008,60800
+59689,16538
+59690,47137,48238,38271
+59691,39646,49997,24884,28940,47428
+59692,12932,59132,47415,33736
+59693,4618
+59694,67773
+59695,45632,31268
+59696,72952,48336,71103,47658,15967
+59697,78773,34705,12108,2077,48193,49328
+59698,35247,19100,75289,65801
+59699,51929
+59700,65753,68852
+59701,16976
+59702,71152,73586,71604
+59703,21381,79340,24925,61317
+59704,81904,70854
+59705,33559,73803
+59706,44840,70480,48050
+59707,68630,17284,37670
+59708,25200
+59709,47843,22989
+59710,45587
+59711,70486,9052,37060,40942
+59712,15527
+59713,15023,64958,55484,80269
+59714,46683,11699,41213
+59715,58625,65192,66452
+59716,69594
+59717,50682,39768
+59718,62739,45918,30942
+59719,67395,64772,19140,35536,74994
+59720,65180,29741,81481
+59721,32041
+59722,64796,67131,54164
+59723,3218,40444
+59724,16492
+59725,46170
+59726,66085,8764,74046,31165
+59727,21363,30018,9744
+59728,3651
+59729,1558,29422,81237
+59730,37789,5288
+59731,51248,65684,35514
+59732,2517,6520
+59733,717,42747,18672,40546
+59734,55068,71526,75355
+59735,48918
+59736,35328,349,33805
+59737,75467,16712
+59738,18598,17493,2341,60406,23405
+59739,9275,49923
+59740,68734,75291,54734,19401
+59741,74238
+59742,20288,66913,12229,16178,70309
+59743,10258,34754,54294,62281
+59744,67172
+59745,16932,38261
+59746,24799,14569,1016,51659,15100
+59747,589,43541,72384,19362
+59748,79022
+59749,75601,1189,49747
+59750,27924,16296,65552,35915
+59751,40024,40928
+59752,61385,30347,52566,7408
+59753,30922,32084,10271
+59754,32546,5196,11467,11242
+59755,63372,1746,23134,81806,52767,71916,14752,31573
+59756,63582,76634,74753
+59757,74263,13395,17181,42128,73792,50499,47143,23190
+59758,288,11747
+59759,67081
+59760,56538
+59761,77255,38020
+59762,67594,68389
+59763,6479,23096
+59764,74950,2767
+59765,66328
+59766,25717,31078
+59767,43767,50984,5257
+59768,8616,21279,78220,33744
+59769,59856,21986,34885,38658
+59770,34889
+59771,53462,50714
+59772,47598
+59773,75913,15019,21712,42939
+59774,1571
+59775,13290,13494
+59776,38223,54874,11379,24913,13195,43342
+59777,79421
+59778,35608
+59779,40599
+59780,28973
+59781,54486,2754
+59782,21254,40387,67512,49153,53016
+59783,14693,81425
+59784,59863
+59785,42242
+59786,55473
+59787,29684,67927,79600
+59788,23650,58111,8846,30958
+59789,56693,11681,70905
+59790,49992,38687,32754,17602
+59791,66843
+59792,5797
+59793,66201,30258,36648,33966,80186
+59794,4668,15833
+59795,49931,2005,75205
+59796,40958,93,33237
+59797,16131,21945
+59798,37178,47992,48222
+59799,77723,72408,11764
+59800,4719,9417
+59801,52014,77199,82010
+59802,48505,51549,54481,77746,53686
+59803,6535,5996
+59804,50463,80593
+59805,66207
+59806,78516,59021,6050,65559
+59807,38663,61255,53374,42931
+59808,18763
+59809,52196
+59810,71850,54513
+59811,17912,18654,18076,52720,6699,40098
+59812,70646,7079,38432
+59813,32217,25827
+59814,38830,33135,40924,78318,30482
+59815,12525
+59816,74704
+59817,63217,69343
+59818,45256,8983,40972
+59819,52773,19254
+59820,33156,56311
+59821,7948,7031,60706
+59822,32828
+59823,196,25676,38724
+59824,71954
+59825,24567
+59826,81796,26224
+59827,55171
+59828,65491,81507,66216
+59829,79190,23769,34200
+59830,69304,75714
+59831,59786,51645,24230
+59832,82154,34504
+59833,4494
+59834,79484,30804,74146,21397
+59835,39547,17399,39033
+59836,7503,68951
+59837,26858,6800,75257,19947
+59838,13100,65699
+59839,77472,76997
+59840,49678,6363,20185
+59841,20384
+59842,64914,24865
+59843,68076,13506,54857,677,57380
+59844,64271,68705,67386,46629,49016
+59845,79619,14755,75399,72261,66513
+59846,61155,75616,67931
+59847,77265,31932,65177
+59848,64602,36014
+59849,29135,38701
+59850,198
+59851,71582,24483
+59852,58729
+59853,57208,25796,56725
+59854,27472
+59855,24830,69428,75115
+59856,31698
+59857,76473
+59858,40585,61569,19584
+59859,45890
+59860,81361,74598
+59861,75913,71969,79094,32789
+59862,6221,55964,45488,22220
+59863,54000
+59864,14018,51919,31724,2416,24318
+59865,16049,8407,61667,2174,18075
+59866,54743,55584
+59867,39041
+59868,26264,26739,35479
+59869,48927
+59870,54014,39072,43389,9237,34973
+59871,30371,32606,974,33607
+59872,26151,77671,65949
+59873,72656,55038,10908
+59874,75583,24132,64914
+59875,71983,45452,54591
+59876,15127,60109
+59877,25576
+59878,74066
+59879,75036
+59880,63115,22176,52536,4738,13665
+59881,72327,72633
+59882,78321,54828
+59883,2058,67271,81094
+59884,27977
+59885,80194
+59886,55307,48488,78078,26559,7544
+59887,19523,25066,3764,57088,35339
+59888,74221,9397,40831,42961,11814,52629,5475,3969
+59889,16674
+59890,12526
+59891,47257,77393,56471,80736
+59892,12162,36298,18979,11387,1762
+59893,5337
+59894,51235
+59895,10116,9199,32900,44576,40695
+59896,18284,14057,14124,34238
+59897,32820,1205,30036
+59898,38758
+59899,49733,38397,58105,9927,53605,40614
+59900,69007,36361,58029,5206
+59901,18229,50894,42441,60987
+59902,21837
+59903,7279,15748,52240,10052
+59904,48992
+59905,3136,73425,18015,57692,12316
+59906,48871,22980
+59907,5274,31464,33881,75876
+59908,11420
+59909,1444
+59910,36889,56909
+59911,33790,72092,2898
+59912,64838,30332
+59913,5102,55937,62683,31171,22281,579,33235,66652,75415
+59914,8516
+59915,42574,37559,42888,67417,12487
+59916,20628,61978
+59917,65711,70766,48562,68051
+59918,31254,17718,69011,77728
+59919,26181
+59920,18440,67903,17711,23368
+59921,32374,45944,14899,4269,54612
+59922,14275,67852
+59923,60228,55922,35547
+59924,61849,70892
+59925,19220
+59926,7696,80836
+59927,1275
+59928,54892,21922
+59929,52558,75603
+59930,80983
+59931,7826,9987,29075
+59932,10672,64043,22328
+59933,20218,5793
+59934,29538
+59935,20305
+59936,29306,55020,8535
+59937,16649,73377
+59938,63744,64081
+59939,8981,77590
+59940,33148,35331,66530
+59941,78776,5894,56866
+59942,41631,2534
+59943,7331,56339,48606
+59944,3057
+59945,15257
+59946,44978,61970,56117
+59947,9800
+59948,67508
+59949,23748
+59950,8758,67713,6411,60350
+59951,31411,58710
+59952,4267,26155
+59953,48354,11199,38018
+59954,36838,12423,45288,1025
+59955,7595,68415,54613
+59956,60272,74409,62530,67560
+59957,12545
+59958,21788
+59959,23760,62795
+59960,25137,70708
+59961,43896
+59962,30469,32711,2130,21957,30020,10140
+59963,4983
+59964,69690
+59965,8881
+59966,38542,28751,70607,41529
+59967,15006,41500,19454
+59968,79026
+59969,49590
+59970,25609,39829
+59971,21042
+59972,81006,47636,41338,70704
+59973,53363
+59974,48576,20505
+59975,6386
+59976,8673,109,79258
+59977,35247,76653,81666,39855,9946
+59978,25325,16442,9166
+59979,46817
+59980,12335,65374
+59981,67859,35995
+59982,59017
+59983,41651
+59984,650
+59985,9906,24139
+59986,49943,12568,45639
+59987,41069
+59988,66872,72710
+59989,17363,66604
+59990,78939,74383,33840,66932
+59991,32392,9605
+59992,66168
+59993,24167
+59994,23379
+59995,60766,14621,31267
+59996,37429,39591
+59997,46880,18089,65157,41799
+59998,68353
+59999,76973,61869,35111
+60000,5556,39383
+60001,36378
+60002,22048
+60003,36528
+60004,5488,46130
+60005,12097
+60006,74059
+60007,12157,64244,54977,75132
+60008,15181,58237,16746,78340
+60009,68648
+60010,42001,58001,59587
+60011,14405,36498,65421,67859
+60012,79678,62695,14461
+60013,71422,15194,15075
+60014,64041,25463,39602,35247,58702,54855
+60015,25506
+60016,15097
+60017,73010,48634
+60018,20426,4137,53901
+60019,62631,75762
+60020,3344,41353,59706,58574,1681,10876,37709
+60021,67259,47581
+60022,12525,34194,60749
+60023,19339,18294,59391,32756
+60024,9800
+60025,49180,14114
+60026,44144,66252
+60027,58863,22864,54766
+60028,40313,27020,66530
+60029,39789
+60030,56681
+60031,43793,59141,43425
+60032,77793
+60033,8284
+60034,78519
+60035,17144,53814,1933,81631
+60036,57192
+60037,48078,30920,11680
+60038,77907,51013,71377,2948
+60039,53251,56186
+60040,5873
+60041,71397,73376
+60042,81041,24240,26802,29053
+60043,14301,56493,66553,80644
+60044,31042,21188,4617,58635,26446
+60045,61147,72473
+60046,31348,8839
+60047,4407,59374,37098
+60048,41418,20901,23288,55535
+60049,69945,20363,22607,30439,43270,28075,18453
+60050,59972,50739,23941,53626,80100
+60051,63514,748
+60052,74435,62246,68902,1469
+60053,58239,23899,52580,28186
+60054,49744
+60055,75713,62179
+60056,78792,39362
+60057,48838,15269
+60058,11898,71427
+60059,38453,55134
+60060,81507
+60061,47253
+60062,27786,6514
+60063,65406
+60064,29080,38544,29170,45987
+60065,24869,66841,64916,8888
+60066,21244,55047
+60067,4561,26420
+60068,77567
+60069,36244,11703,65418
+60070,51594
+60071,78333
+60072,68730
+60073,78472
+60074,73475,60727,62990,94,35949
+60075,64715,50030
+60076,62293
+60077,5865,70321,5770
+60078,75098,13726,55937
+60079,33992
+60080,25235
+60081,45268
+60082,364,28121
+60083,50017,73461
+60084,9447,6690,8867,19614,49219
+60085,2685,19249
+60086,36152,9707
+60087,75078
+60088,41901,22178
+60089,73800
+60090,40720,36832
+60091,33297,75763
+60092,66698,20092,38283
+60093,30943,77220,8874
+60094,68856,23188,33283
+60095,45998
+60096,2497,50807,12540
+60097,55656,40859,30088
+60098,65131,31054
+60099,52942,63873,56848
+60100,66222,28778
+60101,23444
+60102,71535
+60103,24300,53535
+60104,75560,39608
+60105,36716,12593,20770,42876,20962
+60106,52608,80558,26748,5560
+60107,43000,12441
+60108,13430,25135
+60109,10798,66106,60101,57988,50128
+60110,66357
+60111,5929
+60112,784,18386,78949,27379
+60113,36358
+60114,7672
+60115,43681,63786
+60116,5776,21362,36766
+60117,29161,80752,4283
+60118,32876,31899
+60119,2185,76294,14070,18011
+60120,71040,67027
+60121,15916,34693,29624
+60122,29599,74599,37692,46864,56919
+60123,69706
+60124,31374,56636,15702
+60125,9009,40873,10283
+60126,32851,78786
+60127,52317,69177
+60128,67046,20599,59979
+60129,14325,23908,70716
+60130,39917,15030,37633,76893
+60131,58447,34340,79606
+60132,54112,52279
+60133,11466
+60134,6171
+60135,36986,80229,26183,75623,32382
+60136,56936,51907
+60137,31322,57228
+60138,55368,61804
+60139,3908,32037
+60140,20257
+60141,11366
+60142,11335,55340
+60143,74361,80175
+60144,47404,31136
+60145,56293,6171
+60146,12660,1736,26906
+60147,41599,5204,75491
+60148,50468
+60149,6562,72577
+60150,14106
+60151,59622,42498
+60152,19098,78805,47196,36610
+60153,38325,76588,19187,3919
+60154,32780,76634
+60155,43787
+60156,56248
+60157,78442,41011
+60158,30156,81070,25131
+60159,52097,66182,39850,80607,42140
+60160,81835,1782
+60161,1095,29032,60623,78975,37130
+60162,13964,57590,78686
+60163,11406
+60164,31733,75805,27341,7248,26200,51500
+60165,81879
+60166,99,65609,38189,49390
+60167,4173
+60168,48336,64436
+60169,55521,27660,34089,54263,33775,50327,70782,68927,26360
+60170,1994
+60171,39205,63953,59953,38998,33368
+60172,71786,23805
+60173,36308,51337
+60174,74650,37889,64844,46474,38837
+60175,18432,72826
+60176,31224
+60177,6728
+60178,49396,22785,20586,67162,42236,69029
+60179,31797,29021,27661,56694
+60180,33410,79643
+60181,50073,62863
+60182,46050
+60183,38452
+60184,25807
+60185,12542,16934
+60186,54223
+60187,58563
+60188,37481,11855,69312,52333,69280
+60189,61795,77731,44019,70690
+60190,55345,60521,71694
+60191,37622
+60192,68260,28812,6046
+60193,18377
+60194,78029,69042,4407
+60195,74707,26664,60088
+60196,55299,57827,77958,24661
+60197,53976,12500,72001,65329
+60198,15558
+60199,30265,56998,68469,79810
+60200,46545
+60201,72820
+60202,5409,81614
+60203,78886,960,53721,13355,75367,19145
+60204,80496,15654,56001
+60205,57057,72207,6607
+60206,1079
+60207,68849,67519,45290
+60208,1043,7125,45766,8306,61551
+60209,76007,63023,64976,45799
+60210,76577
+60211,48458
+60212,14307
+60213,51055,70717,30565
+60214,35645,80316,67922
+60215,38945
+60216,759
+60217,54232,34790,20758
+60218,19768,75580,15891,52975
+60219,64363
+60220,67255,43332
+60221,59040,7202,48636
+60222,70798
+60223,67893,22164
+60224,36722
+60225,22854,40644,64710
+60226,81973,21779,44095,51313,16820
+60227,32290
+60228,57917,346,48889
+60229,76101,32584
+60230,75466,9532
+60231,25862,73891,33343
+60232,45859,29888,76076
+60233,46481,36781,17564,32401,47761
+60234,45366,46358,26129,26819,50030,29614
+60235,52825,21690,63300
+60236,20492,10341
+60237,68048
+60238,27739,50262,17520,63979
+60239,79508,20686,42149,77562
+60240,59401,79535,61634,17916
+60241,31251,9983
+60242,66431
+60243,65726,33369,62943
+60244,16585
+60245,71572
+60246,42962
+60247,12957,80087
+60248,61394,13432
+60249,51961,18372
+60250,34720,68524,71648
+60251,76368
+60252,15950,65182,5664,35129,24873,54914
+60253,38061
+60254,36546,9605
+60255,10897
+60256,4332,70279
+60257,47096
+60258,77619,49734,9826,53009,48167
+60259,9636
+60260,28380,47079
+60261,56935,72923,41279,19584
+60262,3993,49934
+60263,21177,33907
+60264,29087,33095
+60265,65875,22776,11698
+60266,6893,64953,7679,58221,5276,54498
+60267,65239,34657,22556,40494,13324
+60268,36416
+60269,10121
+60270,67347,49900
+60271,19399,74364,77195,53475
+60272,6702
+60273,81565,79937
+60274,74606
+60275,69134,31992
+60276,17836,1121
+60277,66889,11640,52395
+60278,62918,10522,16556,20776
+60279,22954,66277,12546,75500
+60280,48229
+60281,49205
+60282,22854
+60283,30503,62181
+60284,24416,34759
+60285,23121,60090
+60286,81407,23679,290,78560
+60287,48916,14779,33582
+60288,12209,35821,47147,79472
+60289,72820
+60290,67579,39063,1701
+60291,74490,29005,31419,50870,16860
+60292,36376,41290,18423,44057,1357
+60293,38054
+60294,14110,44575
+60295,34833,36946,30264
+60296,48605
+60297,50563,6047,3533,46533
+60298,81639
+60299,40047
+60300,7870,55600
+60301,45001,57525
+60302,19750,2977
+60303,14606,73857,48046,38256
+60304,64467
+60305,67993,51804,26939,20492
+60306,53789,55214
+60307,46544,29172,41192,8911,45298,32351
+60308,18402,49361,68477,24147,10506,17351
+60309,65926
+60310,57533,36268,1222,515
+60311,56191,49654,26504,32007
+60312,8972
+60313,58369
+60314,28757
+60315,69365,5022
+60316,34856,19423,75731,52468,33415
+60317,1056
+60318,34212
+60319,65545
+60320,79274
+60321,51431
+60322,29444,60413
+60323,41051,6574,57656
+60324,54608,59217
+60325,37424,37439
+60326,66089,77217,38962,8912
+60327,34819,3310,8937
+60328,13188
+60329,51092
+60330,14645,66429
+60331,30050,47052
+60332,3304,76265
+60333,72387,30099,9731,23164
+60334,53435,12586,57366
+60335,26977
+60336,27710,49495,10230
+60337,6432,75620,27001
+60338,67574
+60339,3126,71485,13820
+60340,66842,59958
+60341,27131
+60342,54704,62771,57654
+60343,25685,21229,885
+60344,33086,9733
+60345,63006,54051
+60346,18836,54654
+60347,57883,2965,22149
+60348,69311,26329
+60349,76034,66193,37401,46969
+60350,70377,1069
+60351,80293,615,48212,52456
+60352,9267,66054,41559
+60353,9271,3852,54402
+60354,66836,30116
+60355,3216,43113,56859,79572,52950
+60356,78273,20331
+60357,19828,55650,17010,69434
+60358,17794,8846
+60359,60870
+60360,44594,5532
+60361,72208,45291
+60362,23930,56592,21841
+60363,42923
+60364,65457,71600,78634,47754
+60365,16391
+60366,1045,26129,79496
+60367,45229,48435,36525
+60368,76568
+60369,11023
+60370,64206,80824,14412
+60371,1094
+60372,72407,15661
+60373,67252,60531,48403,13331,21466
+60374,48483,54995,57722
+60375,62612,77
+60376,19027
+60377,8089,74585
+60378,78952,1942
+60379,32950
+60380,48781,4547,42962
+60381,16063
+60382,71301
+60383,3461
+60384,17815
+60385,72120,58554,72964,40507
+60386,24514,40651
+60387,42314
+60388,32374,24928,3552
+60389,46855
+60390,26907,20278
+60391,56970,53494
+60392,76757,3797,27293
+60393,72535,30820
+60394,40309
+60395,28557,20659,33777
+60396,23833,11927
+60397,73831,59588,54621,18940,5910
+60398,860,46114,2918
+60399,18246,28383,65492,27356
+60400,11936,13282,18161,17026
+60401,80739,31291,77337
+60402,321,75566,21282
+60403,45223,43993,57299,74625
+60404,27706,8646
+60405,41710
+60406,22774
+60407,67105,68612,53733
+60408,62784
+60409,50218
+60410,2124,49390,61115,79714
+60411,67501
+60412,31936
+60413,55657
+60414,54892
+60415,14064,29211,65554
+60416,24590,5983,45953,40210,61730
+60417,62573
+60418,76282
+60419,29245,8873,27644,66623
+60420,8547,23074,1538,27883
+60421,11832,57942,42778
+60422,35800,30413
+60423,69788
+60424,39198,7977
+60425,37545
+60426,77493
+60427,49916,31324
+60428,46831,6854,53614,11629,70931,50752,32556
+60429,57552,7377,13407,70213
+60430,52201,52958,46326
+60431,33397
+60432,46532
+60433,1073
+60434,19847,29311
+60435,19589,66476,53479
+60436,61728,46498,27061
+60437,74340
+60438,80217,18011,14951,10212
+60439,62968
+60440,61891
+60441,32883
+60442,208,24624
+60443,67739
+60444,71700,10235
+60445,1877
+60446,891
+60447,17687,28739
+60448,73484,211,78871,53414
+60449,1995,71197,71543,34117,39307
+60450,69031
+60451,73305,33331,63796
+60452,61051,24870,61578
+60453,18592,20717,7674,37304,74212
+60454,73553,41435
+60455,46416,66555
+60456,50267,39594
+60457,3216
+60458,15020,52979
+60459,38054,19422
+60460,26651
+60461,13785,10891
+60462,25370,58356,42329,58878
+60463,31485,60165,8836
+60464,48222
+60465,42185,34418
+60466,27542,41710,66566,24045,25457,7562,48207
+60467,56808,41122,64336,22298
+60468,69876,45324,754
+60469,54063,37165
+60470,11505,59860
+60471,20966
+60472,45381
+60473,47485
+60474,77207
+60475,63393
+60476,60376,76117,36361
+60477,23519
+60478,53582,36706,76047
+60479,52188,46945,9968
+60480,55656
+60481,68785
+60482,31437,72393,58390,3799,29510
+60483,33969,1895,79143
+60484,73121,32782,40952,1178,15086
+60485,57076
+60486,44893
+60487,79207
+60488,65935
+60489,75220,48237
+60490,13710,80266,41626
+60491,17596,49664
+60492,30575
+60493,53656,24509
+60494,32026,45365
+60495,22071,60364
+60496,69334,26094
+60497,20002,66431
+60498,77540,80341
+60499,33843,4011
+60500,12760
+60501,72606
+60502,63106
+60503,23727
+60504,29466,54342
+60505,81932,71584,49736,30854
+60506,76734,8538,75073,63503
+60507,23684
+60508,27584,76968,38021,28718
+60509,65414,23595,62384
+60510,19557
+60511,38714,9089,39956
+60512,61425,56764
+60513,27398,25193,67519,56504
+60514,10053,21655,40657,55588
+60515,56662,9705,65486,25897
+60516,46892,11756,20457,11100,80458
+60517,665,1898,6533,33683
+60518,56992
+60519,34695,46568
+60520,69752
+60521,7180,27644,25317
+60522,10027,19037,810,75211,77061,65228
+60523,27786
+60524,23358,63969
+60525,50137
+60526,77796,9199,5455,25795
+60527,18891,35942,21331,21538,77546
+60528,76802
+60529,59832,18766,18473,1510
+60530,61051
+60531,59604
+60532,75763
+60533,40506,21928,31964,60389
+60534,59407,39069,71342,61512,5635,32561
+60535,70399,64772,32308
+60536,55241,45034
+60537,29848,31062,67651,57879,37232
+60538,33830
+60539,34221,29624,20722,5019
+60540,56473
+60541,72716,17767,24559,10852
+60542,62094,74733
+60543,33418,28765,48502,15263,70786,6799
+60544,79299,42981
+60545,79381,28795
+60546,29904,34660
+60547,21887
+60548,66696,64949,78993,71510
+60549,46746
+60550,19062,52311
+60551,20064,68152,10862,47154
+60552,15886,30980,46269,47602
+60553,58045,3613,48952
+60554,32347,51144,60115
+60555,56694,62280,19929
+60556,34118
+60557,54604,38461
+60558,79545,78259
+60559,30935,80899
+60560,3323,72188,49681,32595
+60561,77793,69896
+60562,16427
+60563,29803,4044,18143
+60564,51948
+60565,68179
+60566,50021
+60567,7121,73684,50794,13554,81942,28880,56293
+60568,19486,17329,21406
+60569,66431
+60570,48481,65097
+60571,13807,51564
+60572,3480,45640
+60573,55979,2620,25682
+60574,79240
+60575,40424
+60576,23259,25934
+60577,55643
+60578,22539,70837
+60579,48693
+60580,5740
+60581,57127,17193
+60582,32263
+60583,32615,35224,67047,44201
+60584,2023
+60585,7965,26076,28914
+60586,22969,5005,63203,60916
+60587,15885,50231
+60588,25595,4988,25898
+60589,340,80285
+60590,30312,57174
+60591,36307,38180
+60592,26162,17440,17536,49670
+60593,71300,10114
+60594,50914,20376,58847,52210,29434
+60595,80793,57828
+60596,41085,55679
+60597,29717
+60598,28519,10496,39550
+60599,1055,3509,22999,4984,54630
+60600,58207,35346
+60601,61562,6695
+60602,8225
+60603,72183
+60604,64900
+60605,70389
+60606,49754,27518
+60607,52508,76909
+60608,46137,27587,35023
+60609,77826,53392
+60610,16828
+60611,34527,74740,62497,11586
+60612,46703,11689
+60613,13309
+60614,55996
+60615,4689,29150
+60616,15342,33244
+60617,30651,40082,48772
+60618,48023,49038
+60619,44814,81748,54873
+60620,29196
+60621,55886,35426
+60622,55342
+60623,53080
+60624,24025,5287,74073
+60625,14186,38766,2753
+60626,23443
+60627,80791,46834,50142
+60628,40391,50956,38996
+60629,33491,37497
+60630,72062,53753,29641
+60631,31108,76748
+60632,6473
+60633,5658
+60634,36014,70355,37181
+60635,15980
+60636,39853,23615,55234,59340
+60637,2361,37873
+60638,38872,526,46097
+60639,45359,64961,54163
+60640,21947,25449,49842,3170,2267
+60641,70707,13886,78350
+60642,54345,54277,51071
+60643,13539,13806
+60644,26955,5291,58655
+60645,20159
+60646,62471,69667
+60647,30125,14536
+60648,53767,67697,74448
+60649,67432,19577,50287
+60650,80547
+60651,57809,60176,11332,79641
+60652,26846,51097
+60653,4845
+60654,18125,2990
+60655,11525
+60656,29071,24120,73473,2415,40045,35034
+60657,27180,80643,72495
+60658,43617
+60659,8583,44351
+60660,54027,55536,25576
+60661,63923
+60662,16375
+60663,77474,19798,42148
+60664,23002,26347
+60665,20171,39551,4488
+60666,62715
+60667,80044
+60668,5922,66235,55128,62419,63674
+60669,14705
+60670,11675
+60671,48759,56347,71232,74575
+60672,56659,52469,63449
+60673,56331,30940
+60674,14368,74050,7166,66106,32249
+60675,27970,66133,72031
+60676,32102,22065,44062,27822,55058,4511
+60677,5476,19004
+60678,28985
+60679,35324,81827
+60680,37827,58677
+60681,60620,39950,81416,9048
+60682,70755,73731
+60683,2415,25298
+60684,20926,61941
+60685,75901
+60686,20628,2565,27246
+60687,81121
+60688,28784,16426,63829
+60689,31474
+60690,16182
+60691,30805
+60692,32977
+60693,26912
+60694,73876,50203,55271,1981,46984,45703,30160,77297,43941
+60695,62124,22660
+60696,71717,63281,62504
+60697,24765,73288,56516,25517,27688
+60698,10567,59710
+60699,72203,21243,65536
+60700,40536,31876,34972,76234
+60701,30901
+60702,55351,55147
+60703,8419,3934,81010
+60704,27364,34385,81271,72235,15147
+60705,48899
+60706,45992
+60707,67083,2742
+60708,40575,23734,59973,27483
+60709,55911,25752,47205,46623,26261,45411
+60710,43601
+60711,46197,21282
+60712,28755,81456
+60713,54513
+60714,48256,55892
+60715,19805,41992,44206,16950
+60716,66446,48614,13128
+60717,40226,50047,76230,56244,1278,49907
+60718,21066,6329,3159
+60719,55910,74086,17586,54048,12038
+60720,24407,58907
+60721,70544,2692,14900
+60722,13840,58935,31099,53940
+60723,46288
+60724,52731,43601
+60725,11441
+60726,56091,67854,10557,49995
+60727,16885
+60728,47252,75435
+60729,39789,30538
+60730,8834
+60731,59452,38299
+60732,15544,73145,3169,4925,73889,69985,32978,16019,32417
+60733,78326,53544
+60734,51431,74409
+60735,45194,4869
+60736,28312,16341
+60737,62597
+60738,25881
+60739,56480
+60740,46580
+60741,51673
+60742,36089
+60743,32240,37459,58616
+60744,34554,44640,53160
+60745,4742
+60746,58632,42500,46362
+60747,20210,80516
+60748,31807,15766
+60749,55160,17812,69487,55901,38316
+60750,51021,41458,54619
+60751,76117
+60752,5516
+60753,57801,30856
+60754,76431,19290,58498,70815,13881,51270
+60755,59964
+60756,46133
+60757,42453
+60758,58066,32320,58334,65036,54765,33186
+60759,16433
+60760,16000,44196
+60761,70896
+60762,26039
+60763,31357
+60764,44120
+60765,575
+60766,67911
+60767,73404,75663
+60768,69025,54941,22405
+60769,60908,35565
+60770,49371,17263
+60771,38549,18200
+60772,62648,73767,31939,68877,25697
+60773,76012,15785
+60774,52590,41977,16847,41543
+60775,39829,27703
+60776,43597,72404
+60777,78747,67020
+60778,12586,22252
+60779,8581,35958
+60780,49620
+60781,47764,38059,43294,62951,15610
+60782,22164
+60783,30917,44688,72794,47008,73538,76234
+60784,47933
+60785,77154,55931
+60786,11968,70634,31236
+60787,38500
+60788,71020
+60789,64045
+60790,43207,25254
+60791,17756
+60792,3820,17698,62461
+60793,8068
+60794,39422,39173,79558,63291,66089
+60795,47628,25502,8937,68073
+60796,15210,40710,14324
+60797,1562,33317
+60798,36614,79252,3708,75079
+60799,14586
+60800,53274,53194,65711
+60801,65241,702,45769
+60802,45574,76757
+60803,54103
+60804,224,26606,14584,40303
+60805,26275
+60806,12974
+60807,55189,44539,80931,69029,39229
+60808,29461
+60809,54931,66245
+60810,7182,21488
+60811,30837,42575
+60812,51626
+60813,23781,76328,37695,6289,47149,42612,40894,288
+60814,52816,39768,50943,23130,1121,55067
+60815,79435,32897
+60816,18581
+60817,11766,63251,25617
+60818,3783,21250,33294,17164
+60819,3623,1988
+60820,80700,62021,45017,32406
+60821,81737,14496
+60822,67853,30846,22880
+60823,81778
+60824,73493,73520,30250
+60825,26936,51719,73300
+60826,15528,64658
+60827,23093,78038
+60828,17515
+60829,72204
+60830,76590,34036,48391,7166,20363
+60831,58333,30390,27254
+60832,62454,30600,77463
+60833,45899,40445,44616
+60834,39668
+60835,16515,3638,55137
+60836,19097,49992
+60837,69164
+60838,60417
+60839,22281,9133
+60840,70187,14950,68175
+60841,53813
+60842,71453,55699,40543
+60843,81012,61441,54699,14095
+60844,66773,24158,80141,28752,38572,57413,405
+60845,41288,23660
+60846,50269,36182,53451
+60847,40408
+60848,55355
+60849,3888,28347
+60850,6063,80849
+60851,51804,69061,23707,50575,12185
+60852,51910,25837,3410,38633,73479
+60853,47388,33737
+60854,718,78282,36272,80170,885,38116
+60855,72446
+60856,19761,2198
+60857,8039,59441
+60858,38531,6836,53564
+60859,7122,5073,11020,60687,16145
+60860,67614,70185
+60861,71999,45060,30184
+60862,65480
+60863,22737,40077,72196,41827
+60864,60376,57322
+60865,70022,77590
+60866,27131,72025
+60867,73852
+60868,63024,4197
+60869,60155
+60870,55368
+60871,8375,8049,56516,67612,69969,36965
+60872,51839,37362,45324
+60873,44124
+60874,37777,68884,55935,18621
+60875,66794,13903,59067,50380,58392,34290,28577
+60876,50205,3738,43404
+60877,18581,20366,74449,69924
+60878,70524,38055,43950,78721,78424
+60879,15048
+60880,13875,19957
+60881,61615,3235,40749,79695
+60882,63515
+60883,66357,60812
+60884,23950
+60885,44075,55085
+60886,25215,6538,55116,34840,73093
+60887,71421
+60888,26228,4241,66672
+60889,78095,24282,71447
+60890,34117
+60891,7138,55526
+60892,77852,64874
+60893,62525,44812
+60894,39448,29449
+60895,11663,53952
+60896,72709,78231,40807,4305,45462
+60897,19795,35840,38740,19375
+60898,78186
+60899,77019,48033,15758,4133
+60900,66650,70497,45081,61292
+60901,51789,74515
+60902,60646,77945,70186,52989,76588
+60903,70454,74972,50218,8105
+60904,44634,27182
+60905,18865
+60906,2129,66521
+60907,34857
+60908,56420
+60909,38277,70281,31531
+60910,23757,62784
+60911,17452,73598
+60912,65279
+60913,14307,70912,10617
+60914,50384,70800,19827,2725,31789
+60915,32468
+60916,69140,44608
+60917,60161,80927,3710,75999,45290
+60918,54100
+60919,65725,47356,75677,63513
+60920,546,58313,43011
+60921,55223,21931,47841,40180
+60922,9421,3480
+60923,71539
+60924,62914,31760
+60925,69607,28415
+60926,45573
+60927,73099
+60928,74012,2285,39276,63015
+60929,45691,29278,41708,70437,56082
+60930,4613,76748,4638,62941
+60931,18342
+60932,32049,31194
+60933,36025
+60934,7143
+60935,11093,7002,10207,7951
+60936,2164,55292,2410
+60937,29372,15034
+60938,81889,13043,33578
+60939,13673,22934,1196,26495
+60940,10432,1812,73003
+60941,50239,22404,21557
+60942,32931,62874,54844
+60943,9524
+60944,70317,46898
+60945,64366
+60946,69900
+60947,8736,37696,78089,4598,802,43515
+60948,28061,70169,14636,71156
+60949,42420,73527,36847,3980
+60950,55935,7078,73982
+60951,44578,78722,11532,183,18160,9153
+60952,30283
+60953,74528,260
+60954,68273,9670,21928
+60955,69872,38298,4623
+60956,34499,6163,75305,56985,18371
+60957,69335,31478,73095
+60958,56888
+60959,32204,262,28155
+60960,46801,77987,38890,48314
+60961,31979,47752
+60962,33278
+60963,49269
+60964,31125
+60965,43052,41390,1096,24765
+60966,40507,13598
+60967,22226,11144,73475,79913,19049
+60968,33170,47154,78554
+60969,27972,76863
+60970,80285,77072
+60971,72517
+60972,52507,68771
+60973,27972,34305
+60974,67285,79188,28920,77079,63470
+60975,39172,67543
+60976,9450,71426,5551,80910
+60977,32940
+60978,76317,22378,44380,52975
+60979,47501
+60980,55464,28632,25099,6405
+60981,12077,40769,44120,8653,3360
+60982,9828,28072,62990,30820
+60983,27484
+60984,40431
+60985,55999,51123,46892,35726,43707
+60986,41868,52188,60791,66724
+60987,73800
+60988,65454,1996,78598,51316
+60989,46356,54906
+60990,42431,42281
+60991,49831,14168
+60992,70908,81479,81016
+60993,60912,16400
+60994,11149,81283,29468
+60995,67064,496,14349,37730,10632
+60996,12499
+60997,42931
+60998,36766,19968
+60999,4747,53509,23845
+61000,22375
+61001,12568
+61002,16273,51105,26677
+61003,37731
+61004,11192
+61005,56176,67529
+61006,70193,20295,69823,80416,79032
+61007,76642
+61008,76642
+61009,30380
+61010,45039
+61011,38266
+61012,11196,51330
+61013,40021,60000
+61014,12702,23347
+61015,67928
+61016,76046,22254,72661,20043,3690
+61017,29186,60561,55862
+61018,12385
+61019,20659
+61020,8797,31947
+61021,51485,64201
+61022,34723
+61023,73303,5739,39417
+61024,49346,52390
+61025,4685,39818,22037
+61026,36319,69459,52998
+61027,68456
+61028,6448
+61029,20025,75929,82106,66474,63537,81226
+61030,73366,52791,46410,17043,31518
+61031,16838
+61032,53396,7105,11626,77071
+61033,48762,57888
+61034,39940
+61035,23802,33309
+61036,24147,8296
+61037,47388
+61038,33238,29495,35917
+61039,62839
+61040,10388,76977,76786
+61041,78432,70524,78824
+61042,70007
+61043,47241
+61044,4403,43737,75659,60141,57562,34217,8149,69140
+61045,81906
+61046,72932,80281
+61047,14545,6465,23061,53259,21246
+61048,78373
+61049,71020
+61050,79276,78566,68646,47147,73369
+61051,82032,29483
+61052,30081
+61053,11841
+61054,62922
+61055,55574,57554
+61056,35289
+61057,44910
+61058,29562,40419,19464
+61059,69721
+61060,15592,15700
+61061,62010
+61062,41954
+61063,15606,47274
+61064,69530
+61065,24053
+61066,66275,17435,54226,21194
+61067,13686,247,17022
+61068,48189,14754
+61069,19648,31113,26800,34901
+61070,28437
+61071,76076,62228
+61072,35949,71266,63300
+61073,44014,912,7445
+61074,58556,59030
+61075,67086
+61076,74700
+61077,23143,32532
+61078,45417
+61079,71832
+61080,38299,73406
+61081,1073
+61082,74860,8156,42317
+61083,28938
+61084,60136,10210,53525
+61085,10591
+61086,77097,9114
+61087,4301,66342
+61088,6223,6831
+61089,32679,39839
+61090,56705,71179
+61091,68756
+61092,25744,3160
+61093,58275,76333,37519
+61094,22786,71421,38602,17178,71060
+61095,66939,43244
+61096,18790
+61097,36450,33553
+61098,20073,35440
+61099,74844,51768,43913
+61100,72514,5605
+61101,50838,67685,18182,34563,81244
+61102,65791,53829,74110
+61103,57881
+61104,53459,46823,9374,39202,10187
+61105,25005,17799,55965
+61106,19085
+61107,58397,34115,53025
+61108,36841,34431
+61109,29222,5152,80923,44268,16462
+61110,32872,25262,1998,11628
+61111,30663,53155
+61112,57125
+61113,490
+61114,20308,47138,47567
+61115,55377,26571
+61116,74128,69780,3638
+61117,52196,17004,67452,59218
+61118,40994
+61119,64542,53878
+61120,58448,58646,21264
+61121,42526,3508,15878
+61122,58393,2856,14411,36370
+61123,45069,40551
+61124,29019,21080
+61125,77995,44178,67800
+61126,4319,38746
+61127,66406
+61128,34812
+61129,60417
+61130,58064,79500,77699
+61131,58988
+61132,33891,34812,70443
+61133,31165,40176
+61134,71766,30026
+61135,49639,6165
+61136,10406
+61137,79698,56936,76705,7471,47982
+61138,64556,45847,52196,56799,58253,26747,70199
+61139,76831,4891,41106,74140
+61140,60757,20189
+61141,22600,57571,12342,71847
+61142,57504,21695,55601
+61143,55325,52462,46255,26171,59779
+61144,42998,2874,35163
+61145,31844,61397,79678,14589
+61146,41910,46673
+61147,71695
+61148,80060,73296,36963,70550,33759
+61149,65428
+61150,3426,67483,382,56410
+61151,72200,75663,35107
+61152,57163,26045
+61153,76858,16249,12629,51785,50334
+61154,26860,54185
+61155,27644
+61156,62927,30600,44521
+61157,67842,25002
+61158,33652
+61159,65873,1519,16663,8431,16120
+61160,77941,4761
+61161,44563,11186,37899
+61162,71899
+61163,54552
+61164,412
+61165,68373
+61166,42826,46444,11676
+61167,3927,30649
+61168,9356
+61169,73860,27797
+61170,44134,19217,28280
+61171,58324,5357,8858
+61172,18979,52822
+61173,16203,31604
+61174,57048
+61175,58710,12950
+61176,8889,43856,73190,5039
+61177,52104
+61178,34064,23857,5966,39192,22203
+61179,65918,2897,37486,62678
+61180,27670,80124
+61181,5099,10217,42177,62374
+61182,56942,53050
+61183,76940,66397
+61184,26155,70710
+61185,46363
+61186,18693
+61187,69083,19188
+61188,72284,62386,6483,20046
+61189,78214
+61190,50529
+61191,73485
+61192,12551,62220
+61193,61698
+61194,47568
+61195,49595
+61196,60100,6246
+61197,80988
+61198,81834,65947,70529
+61199,6320,52958
+61200,28861
+61201,74834
+61202,58704,10606
+61203,38671,18643,40960
+61204,79522,42189,72667,50086,60341
+61205,12976,79337,41182,13804,66930,67255
+61206,22970,48723,73116,78076
+61207,42604,15086,61721,43657
+61208,42977
+61209,53549
+61210,56175,66444
+61211,45161,10782
+61212,50278,17444
+61213,7406,59070,36543
+61214,73188,41870,66448
+61215,40004
+61216,3177
+61217,13894
+61218,36680,8464
+61219,65754,65444
+61220,52095
+61221,51028
+61222,59540
+61223,12607
+61224,66683
+61225,12342,81217
+61226,62689
+61227,37568,46984
+61228,44533,59893,51898
+61229,34458,16876,64265,450
+61230,6677,52663
+61231,10466
+61232,80516
+61233,27544,6717
+61234,11559,63676,37255
+61235,23506,51135
+61236,11864,8136
+61237,342,46133
+61238,35051,19239,30450
+61239,29097,50550,23870,77040
+61240,31182
+61241,55476,45974,37092,75000
+61242,13283,31435
+61243,75802,31042,2905,47935,55620
+61244,45339,55466,44731,77010,17451
+61245,5160,25166,63023
+61246,71210,39568,11593
+61247,27815,26709
+61248,57476,77815,26056
+61249,45148
+61250,35111
+61251,927,68679,17921,46054
+61252,59091,55552
+61253,32286,55738,10629,609,33268,13909,44011
+61254,60989
+61255,13878,45473,65300
+61256,64894,78515,12306
+61257,49631,8802
+61258,28328,3869,65085,81433,26512,49820
+61259,21509,6337,52119
+61260,7526
+61261,60193
+61262,21803
+61263,33296,54597,4253
+61264,23616,59462,75801,52059,12062,6258
+61265,50743,449
+61266,78378,80206
+61267,70676
+61268,22226,32578,23142
+61269,81500,6920,50213,69638,68449,63151
+61270,45623,47483,37935,76355
+61271,29370,25593
+61272,24050,59391,19848,62198,36143
+61273,23981,57490,77120,31756,79955,66543
+61274,11936,57819
+61275,54953,72014,27264,19150,33958
+61276,7405,59107,1411,44025
+61277,40630
+61278,23584,2944,20277
+61279,26209,65928,22253
+61280,5210,40945
+61281,2602,1589
+61282,4725,24397,48235,74620,17007
+61283,48934,6103
+61284,52027,24487
+61285,60766
+61286,52544,67678,34455
+61287,27661
+61288,76583,72017,31561
+61289,76025,33550,30332,79421
+61290,52008,45614,6651,78533
+61291,11899,50127,36060,23945
+61292,26781,42687,46595
+61293,13418,30900,41983,38954
+61294,52266
+61295,29709,41198
+61296,10450,58999
+61297,37827,32679,6078
+61298,75647,59214,48126
+61299,66747
+61300,71539,25072,52020,25493,56204
+61301,55349,65985,43507
+61302,62244,9490,72389
+61303,63683
+61304,79992
+61305,23307,17408,29697
+61306,78998,38602,81816,72796,12340
+61307,57170
+61308,32471
+61309,3865
+61310,62022,26970
+61311,677,67555,9672,65486
+61312,66506
+61313,59647,55351
+61314,50737,41795
+61315,34273,22676,41511,53907,44045
+61316,23729
+61317,29455,28771,3732,68463
+61318,65895
+61319,3506,68848,51334
+61320,58332,22565,17599
+61321,17643,6567,17772,75047
+61322,43571,61528,23102,15964,47273,47300
+61323,64629,8455
+61324,64640,61163
+61325,72945
+61326,32968,41837,55538,24022,16156,76895,21557,26
+61327,5014,38311,50111,51679,58485,9693
+61328,26151
+61329,12768
+61330,21460,64318,30619
+61331,63774
+61332,22129,52499,71390
+61333,11135,26267
+61334,80707,47341,46884,52936,27248
+61335,51319,19862,72219,63192,68590,29491
+61336,29957,48970
+61337,46275,79020,49607
+61338,27914,7736
+61339,18899
+61340,2234,3677
+61341,17930,7129
+61342,61985,22665,79462
+61343,65873,34498,13724,5987
+61344,19834,59540,60141,59971
+61345,51211,23077
+61346,853
+61347,69766
+61348,64601,75631
+61349,77285,67658,43857
+61350,50167,28933,53879,20804,56992
+61351,43373
+61352,58847,22223,33815,21740
+61353,67830,45462,38869
+61354,10639
+61355,65984,38302,57190,27013
+61356,75161
+61357,60666,1702,38271,29693
+61358,55352,74340
+61359,40021
+61360,28712
+61361,42195,33836,54393,60959
+61362,13023,15272
+61363,25438,56641,25196,34082
+61364,68977,48032,5064
+61365,52593
+61366,16106
+61367,74612,30129
+61368,52810,77584,64429,73596,50714,40430,59160
+61369,9428,64528,37429,65062,66044
+61370,18612,76530,3750
+61371,47724,63987,32770
+61372,824,6992,49457,72701,45843
+61373,29499,17788
+61374,2673,1043,55766
+61375,43393,22869,56283,11149
+61376,31980,18889,42769
+61377,24582
+61378,1111,60898
+61379,67283,55832,67395
+61380,29185,65372
+61381,61459,17811,82010
+61382,73861
+61383,29804,41907,76856
+61384,72669,68432,77838,60665,60558
+61385,79992
+61386,13023,43977
+61387,2752,79983
+61388,18083
+61389,820,69762
+61390,71283,76122
+61391,2633,17785,75297,50569
+61392,45356
+61393,29207,72555,55688
+61394,39917
+61395,27959
+61396,21353,54928
+61397,2226
+61398,69540,19796
+61399,24940,79717,56347,38501
+61400,79193,10280
+61401,72515,29282,23016
+61402,75758
+61403,40692
+61404,38659,57497,19842,14122
+61405,66895
+61406,39744,45106,34773,75233
+61407,60228
+61408,17643,13954
+61409,59087,48712
+61410,61959
+61411,72190
+61412,3300
+61413,15862
+61414,66571
+61415,71479,46570
+61416,34369,79669,56779,25858,1377,24579
+61417,30473,65041,2705,52880,50851
+61418,33793,73212,13493,61182
+61419,59732,60736,15744
+61420,15305
+61421,65972,12498,65556
+61422,78042,13558,15118
+61423,10536
+61424,13125,5946
+61425,48688,33966
+61426,29815,34504
+61427,45341,80802
+61428,46128
+61429,10475,17596
+61430,69766
+61431,75034,51549
+61432,68016,70399,26446
+61433,31343
+61434,13829,22916
+61435,10604,27245
+61436,1933
+61437,78220
+61438,53119,25375,583
+61439,22694
+61440,27726,40499,81538,8278,55569,2359
+61441,33954
+61442,23189,47205,71807,67669
+61443,75737
+61444,81710,37741,870,9590,12180
+61445,23972,12889
+61446,54075,48735,33179
+61447,9024
+61448,33653,14345
+61449,56680,21460,54172
+61450,26553,40442
+61451,32876,22597,72919,28328
+61452,22438
+61453,43820
+61454,71517,31410,5775,30144
+61455,39428,46571
+61456,33891
+61457,69211,74362
+61458,56131,44556
+61459,19264,48316,1555,29476
+61460,61056,64070
+61461,43758,39321
+61462,68047,57413,14693
+61463,29057,9366,47878,80020
+61464,58348,13823
+61465,16103
+61466,38329,50506,44307,22691
+61467,65456
+61468,39818,25597,55622
+61469,36163
+61470,12525
+61471,44308,1729
+61472,66831
+61473,40109
+61474,52314,2996
+61475,79863
+61476,81629
+61477,20889,53698
+61478,9862,32118,40068,2823
+61479,49950,20775,36127,38587,22662
+61480,66828,7789
+61481,24398,77880
+61482,50055
+61483,15310,20173,40414,23867,70003,72805,67538,48157,34528
+61484,49398,18908,35256
+61485,43310
+61486,79294,54503,15912,71682,7609,73274
+61487,29386,10343,40047,42183,30355,63499,71022
+61488,20302
+61489,34889
+61490,22797,21071,20026,64596
+61491,8656
+61492,39502,59282
+61493,53102
+61494,78214
+61495,41687,9564,61985
+61496,51406,25632,61710,32618
+61497,35935,73782
+61498,41920,78203,30139,50175,51478
+61499,36755
+61500,9493,69883,19779
+61501,65900
+61502,33507
+61503,59791,46392
+61504,44177,8029,78940,24343
+61505,51003
+61506,37019
+61507,21154,47080,17203
+61508,13264,65258
+61509,42248,24441
+61510,33810
+61511,53606
+61512,28616,30075
+61513,75613,65666
+61514,57170
+61515,70116
+61516,51432,59784
+61517,78619
+61518,18367
+61519,27259
+61520,68807,22659
+61521,73553,77618
+61522,22081,40709
+61523,48229
+61524,65740,17608,9689,30370
+61525,23136,37896,57035,62006,60023
+61526,57866
+61527,13103
+61528,26677,62678,532,1538
+61529,19167
+61530,11907,11511,29000
+61531,23980,81179
+61532,55868,23391,80860,36487
+61533,65615,2908,45763
+61534,59241,60201
+61535,61644,5901,49349,38870,51426,4125,34123
+61536,68290
+61537,49810,47917
+61538,6426
+61539,47024,46116,42957
+61540,21750,46639,57813,29597,69988,4690,67492,81655
+61541,77963,67776,71290
+61542,24476
+61543,71284,8367,53316,34899
+61544,33819,79763,56669,61005
+61545,61772,28963,8100,81681,59220,23552
+61546,73738,9701,13194,22462
+61547,52185,31760,10381,23886
+61548,9262,80921,30489,53067,33731
+61549,33261,27310,19758
+61550,62792,11705
+61551,31655
+61552,36169
+61553,54260,2520,48089
+61554,77453,48706
+61555,72769,28137
+61556,73011,72889,69136
+61557,2170,4829,69670
+61558,47984
+61559,7950,10135,22774,41462,62176,62962,48719
+61560,47283,50472,33821
+61561,5881
+61562,31853
+61563,67485
+61564,72660,80408,59370,41676
+61565,53879,69344
+61566,7893,3228,30361
+61567,60238
+61568,7097,79024,33440,15567,13667
+61569,39768
+61570,35604
+61571,4968
+61572,52942,55727
+61573,35353
+61574,53553,14886
+61575,32479,60564
+61576,4536,34885
+61577,2915,38949
+61578,3581,68698,38938
+61579,26446,24487
+61580,59789,69125,48635
+61581,32693,73867,72615,59166,9769
+61582,79400,23077,43934,30418
+61583,41614,2204,12367
+61584,39483,51754
+61585,65164,35515,11562
+61586,68683,37146
+61587,34043
+61588,54954,32005
+61589,64759
+61590,42985,77659,3133,37976,3556
+61591,20210
+61592,73958
+61593,25244,65419,81754
+61594,32586,39754,24658
+61595,54280,46384
+61596,65028,62082
+61597,28037,31088,32156
+61598,5207,76670,28372,12939,44450
+61599,6589
+61600,72925,42026,4232
+61601,8136,60110
+61602,79164,8300,66997,5
+61603,6222
+61604,47511,2704,14848
+61605,73970,8428
+61606,32414,3051,78527,40113,53890
+61607,72666,47752,64147
+61608,61920,68950,26646,9355
+61609,47952
+61610,27975
+61611,77425,12260
+61612,57889,66207,70151,70978,66961
+61613,59494,4898,24289,46850,31543
+61614,15510,17153,4476
+61615,78990
+61616,74636,7133,13942,71520,12432
+61617,5396,69708,27573
+61618,71527,70488,42679
+61619,37391,3907,14242,55968
+61620,53969,55826
+61621,76122
+61622,36923,61466
+61623,73364,3371,78456,58523
+61624,51099,71898
+61625,40247,1040
+61626,45390,7682
+61627,64458,14925,39547
+61628,38380,48194
+61629,58476,33971,44125,72827
+61630,47162,77564,50055
+61631,78712,16051,19094,24160
+61632,26534,19154,26756,17962
+61633,37297
+61634,43780,12843
+61635,34442,27033,40532,6199,43540
+61636,51380,11561
+61637,62227,57547,24003,8683,42300
+61638,67334
+61639,35901
+61640,12010,64276
+61641,46967,73596,46806,24622,21192,64995
+61642,80649,49295
+61643,28683,57815,45628,316
+61644,66242,32452,57819,56869
+61645,55885,51754,71077,72862,44510
+61646,59374
+61647,80052
+61648,51211
+61649,38025,50196,58870
+61650,44451,19862,5824
+61651,40434,35038,33176,61038
+61652,73820,15893
+61653,33144
+61654,3767,11889,72075,19168
+61655,26777,39819,4588,40806
+61656,70772,77369,3573
+61657,8514,12407
+61658,13343,36832
+61659,51492
+61660,64290,42311,9138,5840,59601,50757
+61661,12624
+61662,57527,46968
+61663,71376,12823,46260,67125
+61664,14168
+61665,46678,77896
+61666,3514,13591,63512
+61667,39053
+61668,4975,70506,50784,13441
+61669,13761,13446,52950,13515,163
+61670,11342,20752,23138,75136
+61671,10496
+61672,40866,70091,78778,60284
+61673,70541,56354,60975,33875
+61674,62688,44501,73088
+61675,7113
+61676,29237,5680,17634,36258
+61677,49137
+61678,80111,73728,3985
+61679,64254,1581,69606
+61680,41013,74324,76735
+61681,52775,5298,6614,35829,81347
+61682,17929,25775
+61683,54834
+61684,79143
+61685,50284,3826,74871
+61686,8971,51600
+61687,3696,25156
+61688,73880,33577,41875,74788,53127
+61689,24343
+61690,51656
+61691,72379
+61692,50541,39941
+61693,64309
+61694,47904,13467
+61695,57508,44420
+61696,44755,25402,7888
+61697,49595,13893,29312,75695
+61698,47156
+61699,19270
+61700,51719,2814
+61701,41907,2344,79235,73842,12264,46621
+61702,65054
+61703,22528,7534,66251
+61704,81563,62166
+61705,8156,16133,26474
+61706,45511,44542
+61707,65558,79800
+61708,11568
+61709,31029
+61710,54000
+61711,25754,34789
+61712,41100,50819,70759,56560
+61713,40992,10267
+61714,66115
+61715,73184,18660
+61716,6826,54035
+61717,33107,56151,66591,21391,32996,35666
+61718,21673
+61719,77126
+61720,2747,41518
+61721,72035,72363
+61722,19306,26301
+61723,72111,21526,42474,75612,30958
+61724,77774
+61725,10635,51571,23174,81098
+61726,58688,30786,29805,43979,63332
+61727,48814,28706
+61728,38932,36714
+61729,34874,60735,74689,62689
+61730,6316
+61731,66649,80755
+61732,37039
+61733,63153,81533,60568
+61734,32505,24741,36827,81329
+61735,1005
+61736,11322
+61737,28254
+61738,43722
+61739,31504,25006,27408,14191,51457
+61740,1387,43841,44920
+61741,53760,15655,18736
+61742,81090,7776,31075,64320,32130,37348
+61743,67920,26099,56682,19859,66445
+61744,19710,44872,14820
+61745,46481
+61746,53650,46912,27376,51661
+61747,51432
+61748,44666,61698
+61749,21839,2639,57970,26575
+61750,79379,64033
+61751,18209,76656,25574,12149,15053,23569,37550,37272
+61752,46567
+61753,40586,40725,8535
+61754,53424
+61755,48328,25626,29138
+61756,72743,71843
+61757,61629,23286
+61758,57365,11991,20430,752
+61759,72307,32962
+61760,26771
+61761,25238
+61762,30571,38787,56657
+61763,36259,66428
+61764,34844,9266
+61765,79852,11530
+61766,73635,72791
+61767,31894,25853
+61768,77685,58481,32264
+61769,60559,43552,12329,59850
+61770,22065,24671,56704,49735
+61771,27103,15797,36316
+61772,67091
+61773,67233,41364,68272
+61774,8591,10696,54532
+61775,7111,59143
+61776,9331,70124
+61777,76616,17172,35461,20897,76694
+61778,51628,17662
+61779,7870,45180,13665,9020
+61780,71336,57592,41629,14603,56346
+61781,44028,18151,31037
+61782,1313,27525,32203
+61783,56901,52569,20960,5626
+61784,46349,39128
+61785,67197
+61786,25800
+61787,64312,64392
+61788,78724
+61789,30471,10696,33411,51634,53698
+61790,11482,55394,22759
+61791,37907,42526,36936,59998
+61792,53118,79612,39920
+61793,26147,47849,16298,41017,21197
+61794,42892,38373,11342,35187,38318
+61795,81725
+61796,12889,61737,23857
+61797,69848,36978,5373,22191,60860
+61798,48538
+61799,80755,3226
+61800,3196,47446,43748,15458
+61801,9757,34101,28619,69119,15898
+61802,45046,69924,29660,77433,11241
+61803,48394
+61804,71699,61858
+61805,25446,20238,36668
+61806,40594,21864,18947
+61807,58431,9133
+61808,37532,31721,39018
+61809,334,19259
+61810,27176,22410,3099,46515,2160
+61811,67791,46850,43901
+61812,2261,70675,58420,984
+61813,70379,3662
+61814,72252,54557
+61815,22777,54565,33480
+61816,9413,9909
+61817,17987
+61818,76862,48265,12438,3833,35118
+61819,72550
+61820,79612,19772
+61821,45488,57378
+61822,79255,19739,35434
+61823,36925,78627,65500
+61824,81131
+61825,78752
+61826,52643,58292,29440
+61827,4602,22110,65010
+61828,41800,79798,60810,74692
+61829,9839,3285,39955
+61830,9495,29790,52254,69748
+61831,47600
+61832,26588,9536
+61833,42183,5181
+61834,72919,6152,41938,59707
+61835,71843
+61836,59090,47381
+61837,30482,44987,64978
+61838,59710,79988
+61839,56852,67157,25306,24006
+61840,46693,171,51637,30203
+61841,12047,8132
+61842,21241,27964,12063,50735,14238
+61843,6113,69701
+61844,38974,29662,46489
+61845,52107,53069,67903
+61846,20793,40366,77843,63578
+61847,52977,66160
+61848,67755
+61849,5873
+61850,40971,11769
+61851,64564,31246,63267,43606,35880
+61852,2055
+61853,28738
+61854,25384
+61855,46617
+61856,4642,66121,81110
+61857,29466,30189,56210,18932
+61858,11832
+61859,73150,22019
+61860,49077,21260,34310
+61861,6291
+61862,41286,81036
+61863,55285,64200,2698,26715
+61864,56623
+61865,23950
+61866,34569,78007,37542
+61867,66129,74064
+61868,21447,40480,53978
+61869,70593
+61870,33443
+61871,42876,29224,22318
+61872,19480
+61873,3191,19213,30869
+61874,18521
+61875,758
+61876,68675,33577,33251,3181
+61877,23280,66742,26969,45571
+61878,57791,33221
+61879,79862,10436
+61880,69594
+61881,53889,72627
+61882,78328
+61883,27048,6827,81445,74788
+61884,9152,40125,22095
+61885,41174
+61886,44924,16139,48369
+61887,69689,70985,16129,51992
+61888,52494
+61889,66775
+61890,49321,58931,47104
+61891,33744
+61892,9464,41860,46759,30679,22544,77690
+61893,4107
+61894,81641
+61895,43917,22605
+61896,54389
+61897,2263,81901
+61898,1112,81086
+61899,17641,18478,73957,45096
+61900,45997,28408,33749,79231,63300
+61901,74973,16278
+61902,53278,45904,43352
+61903,46057
+61904,79303,61356
+61905,634,28843,34437
+61906,61007,64613,60389,51506
+61907,24054,12112,49761,74802,60340
+61908,72190
+61909,42631,18530,58870,44155
+61910,44344,13387
+61911,29685,44325,81745
+61912,18907,73040
+61913,34975,15293,78066,54022
+61914,69787,1543,53931,13131
+61915,78541,8926,6613,76911
+61916,46678
+61917,11323,7000,2095
+61918,80832
+61919,14561,75358
+61920,65454
+61921,1070
+61922,27315
+61923,58372,14797,5380
+61924,47309
+61925,33035,30205,65089,45063,64229,16932
+61926,50574,54614,50430,73959,23046,50383
+61927,72978
+61928,12055,32300
+61929,62785,43113
+61930,67772,19772,81413
+61931,58589,28441,71103
+61932,6136,48336
+61933,60605,73945,10408
+61934,59656
+61935,37394,67369
+61936,54732,1693,60901
+61937,8915
+61938,3874,67869,57294,81276,62568,68480,14662
+61939,65457
+61940,2791
+61941,44042,32572
+61942,16559,48682,77002
+61943,30205
+61944,65130
+61945,19425,39078,72211
+61946,22203,20209,69584,32710
+61947,12423,29538,18139
+61948,56521,32409
+61949,18832,42297
+61950,68779,50597
+61951,80392,77893
+61952,81694
+61953,65026,50023,34956
+61954,39675,78601
+61955,24545,29361
+61956,4186,62363,16395
+61957,73637,46902
+61958,64303
+61959,58806,29585,39085,61403
+61960,29318,35626
+61961,73975
+61962,22375
+61963,3860,63274,17543,70478
+61964,8038,69326,49223,77193
+61965,52365
+61966,12
+61967,4636
+61968,69846
+61969,14380,54069,75099
+61970,37585,65867
+61971,80614,4808,66787,17381
+61972,25272,45783
+61973,49998
+61974,27192,49068,28771,61594
+61975,68898
+61976,17420,15138,46633,29876
+61977,5993,10189
+61978,34938
+61979,68911,56492
+61980,29801,56119
+61981,24441,16736,17160,4364
+61982,36882,61704,16223,9719
+61983,51673,60165
+61984,32903
+61985,4016,28439,65998
+61986,5644,63738
+61987,6994,46821,64755,39333
+61988,9088,57606
+61989,46390,50358,65301
+61990,25583,48084
+61991,18691,33317
+61992,71235,59564
+61993,26585
+61994,79643,35159
+61995,48143
+61996,44688,3392,46743
+61997,48636
+61998,26249
+61999,33523,14330
+62000,32338,77713,13151,81149
+62001,26637,43679,72712
+62002,78930,31500
+62003,763
+62004,13648
+62005,64849
+62006,49570,35829
+62007,72867,36103
+62008,49138
+62009,78357,59255
+62010,15077
+62011,66783,61387,26994,39388
+62012,42390,64810
+62013,19670
+62014,38043,16922
+62015,5510
+62016,50397
+62017,18765
+62018,12320
+62019,32574
+62020,38659,38261,15144
+62021,60953
+62022,81812
+62023,36713,22654,40081,71667
+62024,22326,13186,19449,190,59179,44217,2192
+62025,79519,36292,23445
+62026,18703
+62027,77417,24900,62333,49075
+62028,9070,17714
+62029,15310,80512,81521,73596,69794
+62030,55271
+62031,25478,9395,9541
+62032,28411,11378,20706,44257
+62033,58522,21302,62216,21952,61620
+62034,57503,13108
+62035,70466
+62036,81304
+62037,76366,25274
+62038,7005,77113,13961,31887
+62039,55361,46512
+62040,67538,39710
+62041,78333,69257,41935
+62042,54210,78353,60281
+62043,66001,42218,15525
+62044,2639,80787
+62045,34953,67934,49949,9260,14416
+62046,52384,27430,25473
+62047,12779,38482,69864
+62048,1022,45910
+62049,18696,27624,64671,40535,31236,21661,34784,76625
+62050,46568,3016
+62051,72638,75771,43819,12259,58719
+62052,5448,36967
+62053,65172,76640,63710,37009
+62054,80360,25347
+62055,53540
+62056,48088
+62057,32286,2591
+62058,36152,28304,64941
+62059,6215
+62060,13680,57432
+62061,44719,80011,37329,46552
+62062,51406,73508,72199,37671,56071
+62063,53903,72371,60009
+62064,44659
+62065,35985
+62066,27487,47985
+62067,56076,39600,52508
+62068,42493
+62069,80732
+62070,3187,65026,78402,21876,1411
+62071,20907
+62072,17495,61031
+62073,48402,66448,9449,30835
+62074,5886,79149
+62075,12209,424,54422,42786
+62076,43411,10890,76349,22467,48006,52398
+62077,11960
+62078,74779,27708
+62079,18927,20734,36390,65962
+62080,57825,62214,69793
+62081,45,61584
+62082,4483
+62083,62968,7234,41336
+62084,22191,44063
+62085,6249,17731,61189
+62086,1445,25506,63023,34949,14742
+62087,67405,24566
+62088,49531,54008,23677,40900
+62089,37053,23073
+62090,73877,711
+62091,75610,53285
+62092,76722,30537
+62093,25152,51235
+62094,42772
+62095,81629
+62096,69774
+62097,2069,27612,37056,29197
+62098,22259,5970,76748
+62099,72548,69705,23776,35606,61394
+62100,76708,17001
+62101,43266
+62102,61513
+62103,43983,21983
+62104,22223
+62105,46764
+62106,30371
+62107,35348,56200,52043
+62108,11864,74348
+62109,47504,81746
+62110,40232,43597
+62111,16036,7323
+62112,79438,58424,27451,20581
+62113,44661,73934
+62114,23068
+62115,7098,26145,40464,57954,8722
+62116,35427,32402,60387,80859,24931,43733
+62117,66179,3741,72773,47876
+62118,57733,31539
+62119,43838,5638,19219,44198
+62120,81006,79906
+62121,74920,29067,18906
+62122,14920,7312,50748,14960,27147
+62123,40697,38997,70490,42365,56927,34225
+62124,25975,37817
+62125,44095,6544
+62126,4099,53282
+62127,43722
+62128,27172,21635,31649,17410,45360,78342
+62129,37010,1643
+62130,61538
+62131,5236,12372,48359,27673,69877
+62132,31194,67160
+62133,10163,81414,51791,42585,1124
+62134,2881,71531,36159
+62135,51660,17546,13375,39564
+62136,54000
+62137,28846,17169,26836,3788,69368
+62138,7763,80755
+62139,63095,42366
+62140,21080,27961
+62141,46423,73164,46054,26777,78082,11636,28838,26121,31486,74101
+62142,6757,49266,41994
+62143,79427,40690
+62144,34043,68250
+62145,12340,73524,56391
+62146,35935,73149,60366,11056
+62147,44715,58849
+62148,30717,31608
+62149,31319
+62150,27925,21017,11841
+62151,28962
+62152,77312,42367
+62153,50288,50038,8143,72145,29483
+62154,48570,31575,15351
+62155,81052,16518,69960,45675,4628
+62156,45045,56321
+62157,8990,49520,48682
+62158,49667,64782,35831
+62159,12303,23978,55241
+62160,34343,42498,53530
+62161,52333
+62162,81990,40540,69742
+62163,27593,82151
+62164,81019,59258,38569,66353,10775
+62165,77080
+62166,53979,39978,28228
+62167,21294,30981
+62168,46299,54918,73535,71155
+62169,9423,54724
+62170,37635,69114,32204,17351
+62171,31999
+62172,56972,22728,57733,78247
+62173,29429,11102
+62174,37800,71366
+62175,5708,69021,35504
+62176,66352
+62177,68598,11490
+62178,72831,32086,35899,57775
+62179,46437,57762
+62180,68110,74616,6960,29337
+62181,60757,15818
+62182,45581,68524
+62183,78723,62443
+62184,23736
+62185,79343
+62186,15060,65343
+62187,41289
+62188,3427,70401,38363
+62189,2833,25216,56029
+62190,6525,63730
+62191,13078,66416,60990
+62192,4623,9971,12611
+62193,68837,36741
+62194,32175,31823
+62195,34591,436,45956
+62196,23149
+62197,72190
+62198,44472
+62199,3177
+62200,11449
+62201,49233
+62202,61378,44315,21192
+62203,30837,40547
+62204,73218
+62205,58300,28614,78993,75670
+62206,17151,14728,62789,25472
+62207,76104
+62208,65923,73965,72566
+62209,71870,30989,40341
+62210,65695,36783
+62211,51591,64595,59561
+62212,24587,22605,11485,60263
+62213,52212,81786,52872,22770,52540
+62214,68887,69073,80869
+62215,39412
+62216,54255
+62217,3854,62563,81475
+62218,2694,24024,70983
+62219,15363,57536,69883,16654,4090,70231
+62220,58049
+62221,19082,42624,36600,41838
+62222,49899
+62223,81888,67950,81712
+62224,39820
+62225,8473,66444,2681
+62226,75673,3029
+62227,3887,1571,59410,60746
+62228,31488
+62229,48745
+62230,33995
+62231,14729,73082,10927,46145,26980,50034
+62232,14611
+62233,13096,73199,52119
+62234,36075,29145,22408
+62235,4779,72293
+62236,32630,22794
+62237,72773
+62238,21258
+62239,75074
+62240,46683,59377,14024,20954,8566,17849
+62241,79244,70125,43151,58318
+62242,48624,55479,76237
+62243,74928,44351,39611,25718
+62244,75787,10877,65193,45104,13972
+62245,65998,75808
+62246,34377
+62247,67334
+62248,78924
+62249,45148
+62250,16757
+62251,37402,15199
+62252,8653,42594,30181
+62253,71419,29716
+62254,21447,77417,18580
+62255,26417,22582,17607
+62256,6245,17739,48389
+62257,16881,16916,4652,30804
+62258,26469
+62259,56152,60864,15912
+62260,37924,74917
+62261,19204,75830,64909
+62262,22980,68904
+62263,43144,1237,15430
+62264,41706,41511
+62265,2575,74054,70082,65062
+62266,59664,17968,20091
+62267,17122
+62268,27963,46945,43920
+62269,75544,12607
+62270,43327
+62271,36251,69045,24978,50241
+62272,39446,61804
+62273,31823
+62274,63275,25770,19796
+62275,22016,21128
+62276,48790,75356,47667
+62277,1784,74729
+62278,53368,54091
+62279,14785,29505,6195
+62280,59813,26022
+62281,60147,35084
+62282,60426
+62283,31132
+62284,42090
+62285,40874,34942,18260
+62286,53445
+62287,26420
+62288,45324
+62289,47156,7407,44738
+62290,73492
+62291,2367
+62292,3001
+62293,50532
+62294,13717,43458
+62295,63761,79531,19361
+62296,66649,22238,37237
+62297,44694,31496,62463
+62298,24184,44612
+62299,51310,19483,74153
+62300,45609,49612
+62301,26698,17071,20173,55698,60739
+62302,17951
+62303,66558
+62304,20434,47840,14851
+62305,43731
+62306,13296,8680,1915
+62307,8872,75420,75940
+62308,17670,70213,55602,44248,9852
+62309,28400,4064,43368
+62310,41287,74327,60641
+62311,16925,11455
+62312,81245
+62313,23699
+62314,48761
+62315,61000
+62316,15136,54954
+62317,34992,71045
+62318,12691,74481
+62319,2269,67389
+62320,41782,72416,74286,59490
+62321,27380,64318,55136
+62322,12736,35802
+62323,26391
+62324,22214,80634,28137
+62325,3512,64676,27241
+62326,28458,72550
+62327,80776,54932
+62328,76674,46703
+62329,70498,2146
+62330,71375
+62331,13230,60613,49178
+62332,37263,64795
+62333,48600
+62334,4814,59581
+62335,60643,46698
+62336,67016,29011,39939
+62337,19487,53566
+62338,35443,19207
+62339,39373,3080,29515
+62340,6755,20060,46929
+62341,14041,28643,6775,1468,59868
+62342,34072
+62343,73123,11845
+62344,31517,24079,2849
+62345,7136,42532,7792
+62346,69583,9477
+62347,81054,76920,81396,47837
+62348,4148,51051
+62349,29701,71032
+62350,9323,5663
+62351,13643,12559
+62352,54778
+62353,32945
+62354,66536,2383
+62355,8382,39605,20727
+62356,5828,69781,28348
+62357,37039
+62358,7854,37589
+62359,64490,73377
+62360,60793,15012
+62361,32747,34625,54851,69070
+62362,31300,28715
+62363,62798,56813,67869
+62364,21990,27268,39540
+62365,30859,26563,45631
+62366,49447
+62367,1513,67060
+62368,23114,42346
+62369,34880
+62370,45266,55723,62258,19094,51931
+62371,32321
+62372,76936
+62373,49623,23435,64446
+62374,716,60839
+62375,63892,56715,335,30765
+62376,31306,4307
+62377,47626
+62378,55507
+62379,63684
+62380,80048,44394,63860,14527
+62381,3378,25503,14633
+62382,319
+62383,46550
+62384,11399
+62385,69408,16365,33154,18025,60757
+62386,74901,54512
+62387,49836
+62388,74047,6189,38423,33068
+62389,26577,57440,27004,69129,35443,58103
+62390,37380
+62391,64428,36968,23250,20132
+62392,40900,34885,8913
+62393,14439,58335,19636,33836,75883
+62394,25934
+62395,21775,57145,37844,59803,26335,65320
+62396,36524,42106
+62397,52373,74080,27062,50250,962,7945
+62398,52377
+62399,74703,44177,64661
+62400,32704,11099,11862,43575
+62401,77389,40764,60533,74954,44898
+62402,1577,17980,20384,54533
+62403,50578,80796
+62404,5494,72470,53088,17336,7578,56091,75417
+62405,47616
+62406,63424
+62407,55785,52175,54092
+62408,28163
+62409,23740
+62410,24907
+62411,41439,19796,45615
+62412,40166,48477
+62413,5285,66850
+62414,34609,60583,11801,82161
+62415,18596,16463,27784,72751
+62416,55660,39813,42950,37728
+62417,77690
+62418,2977,5165,48679,14687
+62419,16120,45361,22046,80902,70713
+62420,55268,54828,13211,79308
+62421,17139,46222,40116,47870,73353
+62422,59107
+62423,49824,42539
+62424,3244
+62425,53449,71600
+62426,25693,24522
+62427,67648
+62428,23788
+62429,77159,5314,36763,11009,60427
+62430,67469,29628,39517
+62431,23954,63221,14343
+62432,41926,53537,40716,69377,29554
+62433,28715,78548
+62434,80838,69386
+62435,19332,23209
+62436,51626,44773
+62437,65666,12946
+62438,22138,57431,81688
+62439,24051,47219,32572,12134,52938
+62440,4458
+62441,25306,47430
+62442,64996
+62443,81716,39514
+62444,48872
+62445,11314
+62446,64064,29759,2533,10536,58124
+62447,23937,64287,20635,32124,51663,20941
+62448,9336
+62449,9358
+62450,43409
+62451,17943
+62452,72980
+62453,40786,20356
+62454,54951
+62455,15634
+62456,18342
+62457,50840
+62458,27263,66510
+62459,9779,72291
+62460,30047
+62461,38407
+62462,79975,22199,51029
+62463,69326,46518,727
+62464,32551,67923,75475,1279
+62465,62935,18870
+62466,15329,35860,35179
+62467,53078,20427,52726
+62468,64947
+62469,68336,49893
+62470,36443,78409,18439,33765,35588,6913
+62471,18700,56944
+62472,19509
+62473,78302,13995,35955
+62474,8321
+62475,64028,17761,73768,46941
+62476,24142,74273,56311,62687
+62477,26771,22555,12720
+62478,9408,78750,61202
+62479,53434,5865,17362
+62480,891,4607
+62481,73882,31760
+62482,70592,7408,70671,49747
+62483,27386,13999
+62484,10533
+62485,24136,22909,75043,41537
+62486,16227,7818
+62487,7534,19133,3480,18873
+62488,79231
+62489,27665,35213
+62490,19703
+62491,53533,25298
+62492,52575
+62493,34842
+62494,54008,77418
+62495,64305
+62496,79805,78212
+62497,53001,72407,20438
+62498,55804,36584
+62499,75165,35834,31218
+62500,3274
+62501,5670,31823
+62502,15876,66216
+62503,79270,34671
+62504,779,41241
+62505,67149,19568,53879
+62506,30693
+62507,74344,1725,71865
+62508,79313,4307
+62509,53675,45595,78388,24917
+62510,16672,72609,15528
+62511,52597,19796
+62512,81106
+62513,23998,36672,35058
+62514,1836,41901,65953,6051
+62515,29268
+62516,10621,683,76622
+62517,1036,56057
+62518,28170,56886,68632
+62519,39357
+62520,26671,43283,52814,11248
+62521,44559
+62522,14083,67311
+62523,30163,33328,81515,35762
+62524,39503,11903,74411
+62525,41864
+62526,39850,27503,63726
+62527,79416,68960,29027,65003
+62528,52718,75171,70374,16123
+62529,50836,26401,52294,66092
+62530,42197
+62531,56454,47546,8796
+62532,37548
+62533,56907,44898
+62534,24080,63207,10911,5577
+62535,11889,36614
+62536,22274,278
+62537,57643
+62538,65324
+62539,23689
+62540,9901,54414
+62541,13494
+62542,74776
+62543,49190,11688
+62544,50021
+62545,27786,36315
+62546,81694,38635
+62547,37634
+62548,9208
+62549,60396,33836,2467,1026,20137,68113,41037,32298,38388
+62550,13876,65975,27916
+62551,11772,45579
+62552,70075,64491,8508
+62553,66693,50688,52132,76980
+62554,64065
+62555,80396,24149,42440,34123,82127,25189
+62556,69125,50206,74892,19728,77749
+62557,49429,76901
+62558,79897
+62559,32037,22809,68944
+62560,65375
+62561,10880,27027,60268,33554,17419
+62562,57895,33648,58451,67306
+62563,7794,14452
+62564,62901,55494,57759
+62565,60685,47788,31215,54074,16905,40692,11220
+62566,59625
+62567,45792,31689,3804
+62568,30288
+62569,19744,17988
+62570,24546,76901,76526,78073
+62571,40669
+62572,66028
+62573,25934
+62574,71297,3385
+62575,58937,6239
+62576,34294
+62577,24391,39662,22838,15383,76887,42755
+62578,75293
+62579,50863
+62580,71975,27541
+62581,13557,16938,11331
+62582,60419,63989,19861
+62583,51734
+62584,65588,67612,42585,74799,9867
+62585,24058
+62586,42311,19247
+62587,59258,8977
+62588,64786
+62589,54936,13736,6020
+62590,65963
+62591,438,20495,36740,14462,28049
+62592,67957
+62593,43491,19338,47643,44455
+62594,52636,45671,28893,42524
+62595,52556,69507,25964
+62596,76314,8723
+62597,18159
+62598,72851
+62599,26006,55437,39062,928
+62600,22372
+62601,60319
+62602,15840
+62603,69529,30104,18881
+62604,5049
+62605,10807,81692,22952,35142,62357
+62606,65511,52558,35978
+62607,43395,71611,34773,40244
+62608,34763,3286,12923,42281,37632,64565
+62609,2664,10663
+62610,41612,18992,22373,42064
+62611,35318,2732,54790
+62612,27770
+62613,43423
+62614,39517
+62615,29283,19695
+62616,69958,80167,24162,16542,69766,12493
+62617,43906,5199,19229,65584
+62618,34697,79578
+62619,5264
+62620,36095,42559,25510
+62621,22215,23543,67076,65805
+62622,26255
+62623,12229,24855
+62624,75294,20080
+62625,80915,8874
+62626,12209,22037
+62627,33014
+62628,21306,14894,64636
+62629,39519,38554,35147,66459
+62630,51681,25271
+62631,81934
+62632,43088,65282
+62633,80743,79433
+62634,78363,12283,57616,59671,3430
+62635,37268,33308
+62636,73711,39039,53509,21273,61557
+62637,1753,73724,13985
+62638,122,19066,24454
+62639,26042,8583
+62640,57667,37080
+62641,75338,50077,30197,47949
+62642,19223,28844,30990,65766
+62643,16022,67032
+62644,24855,20120,34666,70917,22802
+62645,70599
+62646,11850,19063,68921
+62647,30473,81927,41017,940
+62648,28611,50627,68069,12865,39459
+62649,30458,18117,59655
+62650,27959,37203
+62651,48932,32084,39179,40127,9380,37377
+62652,33599,21571,35033
+62653,30537
+62654,10888,8576
+62655,17756
+62656,77535,74852
+62657,40101
+62658,65190,19087
+62659,22323,67676,24249
+62660,52643,13842,74284,5045,16068,32455,52987
+62661,44025
+62662,41247
+62663,25278,74083
+62664,57855,68890,27653
+62665,36415,66371,1487,43731
+62666,7839,37688
+62667,25275,40395,81694,58217
+62668,62678,62236
+62669,72962
+62670,20934
+62671,65008,21328,12887,73105,61515
+62672,56713,45262
+62673,62350,75250
+62674,10957,24828,57174,42071
+62675,78314,3043,24552
+62676,43694
+62677,69780,28683,46817
+62678,46517,8424,24660,67841,36265,38619
+62679,26589,44365
+62680,55822
+62681,6033
+62682,39630,54161,66756
+62683,57495
+62684,41699,69993
+62685,73292,28973,54177
+62686,13764,13498
+62687,17203
+62688,67128,17092,7252,16713
+62689,69261,54941
+62690,56079,62456,45653,33662
+62691,11147,49367
+62692,41814,29725
+62693,78725,13656
+62694,79037,32267,15597,15924
+62695,59227,72589
+62696,45022,54996
+62697,43508,66861,25953,43355
+62698,77897,36171,7988,74233,14432,42703
+62699,25171,35803,78841
+62700,61460,47533,65349,16670,70324
+62701,80346,26963
+62702,38764,25307,79727,65033
+62703,17812,30635
+62704,55686
+62705,77137,42961,38157
+62706,58081,1596,10387,55854,65722
+62707,44013
+62708,75852,68937
+62709,65749,80863,25636,3325
+62710,21837,75078,21954,3744,67956
+62711,41814,38000
+62712,26869,12585,48688
+62713,62314
+62714,16683,12382,41244
+62715,42515
+62716,12628,63779
+62717,54792,15610,15421,17941,73994
+62718,67713,65031,19479,27834
+62719,4852
+62720,60997,3025,32669
+62721,19627,34520
+62722,68509,44110,58578,49866
+62723,6795,76752,18933
+62724,81285,61919,50820
+62725,61636,1189
+62726,70046
+62727,50052,68120
+62728,42730,15269,37373,57314,72677,5881
+62729,16460,82121
+62730,46742,74076,69057
+62731,32650,30950,25359
+62732,15764,1542,43897
+62733,8550
+62734,58751,62
+62735,68504
+62736,65254,20099
+62737,30692
+62738,32077,32984
+62739,28980
+62740,31548
+62741,4228,8378,30276
+62742,25025,10133,20195
+62743,45336,34998
+62744,68336
+62745,55762,26056
+62746,9380,27173,40461,62472,22819
+62747,64864,73198
+62748,71636,3253,7597
+62749,36025
+62750,71122,19782,23309,27438,78026,18578
+62751,81181
+62752,56839
+62753,33837,46091,16333
+62754,77029,40193,36644,32899,41875
+62755,17407,53463
+62756,80947,40283
+62757,46103,72730,33077,47418
+62758,68041,59304,4141
+62759,7014,65963,81164
+62760,19336,59461
+62761,7454,60923,24269
+62762,43079
+62763,11067,53555,15964,74116
+62764,834,81080,54107,42604
+62765,60860,27930
+62766,12291,71895,67160,3290
+62767,17829
+62768,76309,41326,25469,79708,58377
+62769,58566,54171
+62770,46013,32650,30877
+62771,10289,21782,79913
+62772,22058,23845,26263
+62773,9618
+62774,51432,27786,46361,5772
+62775,27880,31442,55401,625,15438
+62776,20545
+62777,17276,22859
+62778,58598
+62779,38602,4433,30149
+62780,67774
+62781,27311
+62782,23238
+62783,77328,60623,78773,46737
+62784,1994
+62785,42646
+62786,34677,78879,31690,48327
+62787,33293,2093,65292
+62788,25531,4661
+62789,76464
+62790,7795,24439,22682
+62791,19558,61736
+62792,10489
+62793,20053,40196,75808,498,80532
+62794,56769
+62795,70207,72645,46908,26827,45885
+62796,80207,49507,30455
+62797,47923,76645,3064
+62798,56280,69348
+62799,67492,60224
+62800,25491,41338,24054
+62801,60463,74237,69153,81368
+62802,14611,37107,41773
+62803,35662,79062,66452,34840,33624,36739
+62804,1994
+62805,73544,69105
+62806,32029,44793,20866,69025,52176
+62807,33448,59235,9444,50918
+62808,15450,79392,13056,66536,6995
+62809,78622,42932,26845
+62810,51657,11115,8362,5957
+62811,60231,45481
+62812,44180,69087,63037,13922
+62813,76930,62313
+62814,61418,18579,45904
+62815,34429
+62816,28962
+62817,70116
+62818,81086,4421,34554
+62819,14552
+62820,16776,58633,39841,58948
+62821,20799
+62822,33062,9415
+62823,33297,77192,57633
+62824,20246
+62825,20288
+62826,46095
+62827,43270
+62828,1374,57683
+62829,58767
+62830,66080,74945,38493,62997,41718
+62831,7399,74326,730,66638,55336,65781
+62832,59772,21583,22100
+62833,51630,48528
+62834,77584,53789
+62835,55721,17104
+62836,81920,62989
+62837,36567,33569
+62838,29190,56389,9360
+62839,57170
+62840,22018,33386,16571,36227,74251
+62841,28846,41805
+62842,23240,59033,443,48727,26513,18467
+62843,66861,77735,2547
+62844,31868
+62845,5585
+62846,66243,40440
+62847,63262,33504,5502,47112,10319
+62848,9800
+62849,21135
+62850,11867,81131
+62851,41638,72519,59256,30300,67188,385
+62852,11779,63297,40675
+62853,73104,11934,70901
+62854,43763,40839
+62855,54957,76018,45895
+62856,42578
+62857,13885,74257
+62858,60018,2062,40068
+62859,48978
+62860,17983,106,78592,80001
+62861,58323,24809
+62862,48507
+62863,5870,71500
+62864,25718,38500,35536
+62865,9607,42785
+62866,55137
+62867,59669
+62868,23545,16227
+62869,12787
+62870,69081
+62871,7371
+62872,77600
+62873,78572,74262
+62874,52234
+62875,34504,56727,68195,42591,26397
+62876,47800,66138
+62877,9459,9724,53811
+62878,35414
+62879,58522,54594
+62880,43039,78091,11759,18576,58513,60705,32468,66972
+62881,64689
+62882,69336
+62883,2091,37454
+62884,1612,57516
+62885,62139,12010,3220,18909,78892
+62886,79383,39514,36710,40787
+62887,50080,5127,53323,9252
+62888,45216,80243,48065,30689,12724,49371
+62889,23902
+62890,58223
+62891,26839
+62892,20941,20279,71569,48768
+62893,36959,64753,20765,53991,13984,69483,54277
+62894,26855
+62895,25553,40081,34655,25254
+62896,77342
+62897,40620
+62898,65552
+62899,29361
+62900,55131
+62901,14697
+62902,70120,50481
+62903,78407,52883,64360
+62904,20172,45434,46272
+62905,5916
+62906,32343,44556,60484,70603
+62907,14778,17546
+62908,66185,59616
+62909,61612
+62910,54022
+62911,50993
+62912,51742
+62913,29808,51841
+62914,7907
+62915,80576
+62916,9250,35228,78769
+62917,3706,40339,72945
+62918,30759,1094
+62919,31730,47692,6958
+62920,40450,20764,71869,67668,3534
+62921,68466,2080
+62922,20835
+62923,65852,18045
+62924,40656,47462,49112
+62925,19848,31061,24880
+62926,5665
+62927,45535
+62928,35264,4170,20182,51400,42326
+62929,21752,55233,37096
+62930,13283
+62931,25724
+62932,28374,25519,9519
+62933,64927,69714
+62934,60759
+62935,26589,2714
+62936,2908,61829
+62937,14707,55688
+62938,79917
+62939,65565,31637
+62940,46332
+62941,72077
+62942,54448
+62943,2534,35159
+62944,53639
+62945,59291,19464
+62946,44328
+62947,24196,30910,29486,73325
+62948,3135
+62949,36040
+62950,54128,59511
+62951,49218,80005
+62952,60621,53726,74791
+62953,53749,56575,71654
+62954,73009,46020,33898
+62955,25400,56490,75213
+62956,56514
+62957,64090,5045,31545
+62958,80753
+62959,75612,14161,22666,39289
+62960,44599,64595,22750,69128,66053
+62961,16767,44922,40045,243,67576
+62962,81158,8552,58005
+62963,76206,34691,55000,17582,40480
+62964,38181,34083
+62965,39984
+62966,39056,75721
+62967,28003,9727
+62968,40418
+62969,36280
+62970,23752
+62971,71635,79162,49256,8500,21268,52603
+62972,19462,51124
+62973,61374
+62974,57953,62853,56050
+62975,22761
+62976,72879,22012,18402
+62977,54760
+62978,77757
+62979,7289,33930
+62980,6144,2533,56201
+62981,10627
+62982,63770,73299
+62983,56783,3468,45330
+62984,61439,64550,40440
+62985,65349
+62986,63153,25801,24504,67235
+62987,57289,22343,40934,76988
+62988,11906,37397,50960,36317
+62989,10501,17617
+62990,69263,52973
+62991,44359,49687,11574,38688
+62992,73965,2223,6663,78128,55349,61690
+62993,57714
+62994,29062,19648
+62995,9458
+62996,46445,81806
+62997,25111,33376
+62998,41317,55787
+62999,43643,56952
+63000,78424,77214,58851,11073
+63001,32227
+63002,7797
+63003,18536,21475,70001
+63004,43158,42310
+63005,1941
+63006,14097,67565
+63007,73755,20569,17328
+63008,59938,46262,37628,124,24183
+63009,44601
+63010,69390,22567,57683
+63011,49584
+63012,23614
+63013,62574,9758,28799,24404
+63014,41334
+63015,61476
+63016,16655,27660,34691,72570,78670
+63017,64543,45983,40511
+63018,9055
+63019,58243,50073
+63020,20823
+63021,31348,52612,37151
+63022,80910,10946,35229,15031,4949
+63023,3295
+63024,14623,39839,20377
+63025,9474
+63026,24974,80446,32456,77117
+63027,81919
+63028,45708,18677
+63029,39478
+63030,55711,52996,66437,70280,78580
+63031,42211
+63032,35887,15465,67695,52295
+63033,12229
+63034,28004,4178,52937
+63035,67293,18974
+63036,23710,33278,19069,40939,58072
+63037,70571
+63038,56526
+63039,40301,27070,70545
+63040,56223,43242,29209,51404
+63041,948,54380,15661,77349,66317
+63042,19243
+63043,11927
+63044,14485,80479,27875,30125,64289,6091
+63045,31563,31241
+63046,80913
+63047,52990,8015,7271,8756,22593
+63048,78864,59432,11761
+63049,23259
+63050,54842
+63051,52191,38541
+63052,5155
+63053,57466
+63054,16499,80413,24735
+63055,70878,75024,58950
+63056,27824
+63057,64880,61924
+63058,46351
+63059,62501,3623
+63060,31367,37031
+63061,80574
+63062,72018,5092,7652,35228
+63063,4796
+63064,33940,51793,55646,61250,34527
+63065,32719,24680,17676,30092,34995
+63066,37285
+63067,81339
+63068,40767,40353,18127
+63069,17336
+63070,34520
+63071,47755,49754,41281
+63072,41098
+63073,46311
+63074,39004,25461
+63075,52082,49179
+63076,27915,33190,34579
+63077,80512,48220,63920
+63078,68472
+63079,31370,63904
+63080,63049,40981,32117,45626
+63081,43554
+63082,36900,28380,18533
+63083,73448,76843,71332
+63084,21138
+63085,78707,12960,28213,49796
+63086,74554,76684
+63087,13340,6335,73786
+63088,41182,48176,15504
+63089,75156,1874,64629
+63090,80337
+63091,41093
+63092,47042,23354,70737,68370,44305
+63093,19616
+63094,21693,33290,44527
+63095,51667
+63096,55764,2121,37399
+63097,2786
+63098,72927,4396
+63099,5265,59331,59329
+63100,74331,20133,61388,3197,37482
+63101,10827,80838,76553,56469,41609
+63102,18858
+63103,68373,29108,73418,22480,42193
+63104,76772,46940
+63105,40239,23867,57120,63498,67248
+63106,992
+63107,1843
+63108,46441,19380
+63109,57265
+63110,72100,46476,72086,76762,49111,5516,59432,1987
+63111,64849
+63112,50713,59345,33865,27430
+63113,74810,16492
+63114,11271,11195
+63115,70850,407,36778
+63116,29730
+63117,18076,75798,51950
+63118,11455,5878
+63119,2240,48744
+63120,76882,15105
+63121,22948,62437
+63122,53984,29300,11633,23299
+63123,1869,57062,32176,58420,74243
+63124,32135,18355,27708
+63125,60983,11687
+63126,41877
+63127,28441,52604,12736,11929
+63128,33491
+63129,47162
+63130,9719,63947
+63131,2966,74347,70030
+63132,28579,7444,26070,31532,37940,1916,18928,29370
+63133,76291,32323,74528
+63134,32170,78622
+63135,51778,67269,32030
+63136,74801,16078
+63137,39021,53255,52272
+63138,81549,55819,67995
+63139,16433
+63140,44285
+63141,1089,7932
+63142,15802,17553,59178
+63143,34938
+63144,14139,33997,2835,508
+63145,53489,80146,51308,29495
+63146,45775,47567,22924
+63147,12867,76669
+63148,59228,3091
+63149,31245,45558,63924,8869
+63150,44028,72664
+63151,15620
+63152,63043,10617,11491,32311,41414,31807
+63153,64784,11907
+63154,67992,2410,79663,55572
+63155,9664,39452,18635,11747
+63156,4869,57719
+63157,50502,19311,27500,63985,2980
+63158,31223
+63159,1187,19359
+63160,75121,35184,48178,54398,66075,14779
+63161,36089
+63162,66534,70092
+63163,15274
+63164,35816
+63165,10819,16643,29388,12828,37451,59579,9871
+63166,80948,15987,66558
+63167,80393,17794
+63168,55533,5452,7191,36841,4017
+63169,76443
+63170,25347,8617,10037
+63171,25928
+63172,36062,11695,22596
+63173,58691,55867,9116,57960
+63174,60565,27121,3664
+63175,8265,18356,68744,23076,56523
+63176,17040,24441
+63177,9474
+63178,19590
+63179,24004,14110
+63180,3554,21133,30686,7174
+63181,80252,3912
+63182,61983,39640,40372,19858,71540
+63183,2405
+63184,21763
+63185,19064
+63186,35203,3501
+63187,28837,42931
+63188,32204,71761
+63189,74266
+63190,53226,55392
+63191,71008,49337
+63192,2124
+63193,35667,36048
+63194,76721,25066,63807
+63195,34455,76374,27379,66375
+63196,50057,8496,54005,70261,26363
+63197,13127,2644,25356,37143
+63198,14771,41382,73939,49394
+63199,60811,30487
+63200,20330
+63201,10641,61391,22226,30734,57944,14586
+63202,70406,70155
+63203,35228
+63204,78748
+63205,11950,8328
+63206,73190,47038,26739
+63207,69032,38298,23843,67636
+63208,35971,56338,34954,33648
+63209,66193,79113,75617,60325,69866
+63210,41201,2572,43792
+63211,55813,12219,35239
+63212,21247,59046
+63213,76735
+63214,65111
+63215,20525
+63216,27308,71831
+63217,39812,64223,54780
+63218,3168,26806,51878
+63219,69526,75993,49435
+63220,67435,20504,8797
+63221,61081,7775,3828
+63222,16976
+63223,26526,51934,62392
+63224,77026,25273
+63225,12795,75544,67840
+63226,68398,22291
+63227,72144,61844
+63228,18702
+63229,44431
+63230,78776,41635,41407,22018,17308
+63231,16529,42583,28762
+63232,8839,36278,3423,24800,24545
+63233,42250,75800,9069
+63234,64641,42296
+63235,63237
+63236,3244
+63237,3550,61473
+63238,70911,40283,81069,48557,40038
+63239,2744,71759
+63240,69939
+63241,78571,66544
+63242,69303,4943
+63243,20011,26475,56885,10162,42507,35729,52612
+63244,2080,46414
+63245,80370,47150,75506,36739,60009
+63246,3870,38044
+63247,60713
+63248,53323
+63249,4679,43922
+63250,5753
+63251,14529,12532
+63252,46188,15237,23019
+63253,14645,54880,34654,41841,42459
+63254,8799
+63255,81321
+63256,23276,1336
+63257,52486,34790,74443
+63258,35123,60269,17062,19938
+63259,43295
+63260,59517
+63261,14552
+63262,61661
+63263,9588
+63264,67171,11075,47301,3323,80669
+63265,40480,6568,17966
+63266,29505,13367
+63267,38407,23992
+63268,75286
+63269,48779,26442,26028
+63270,54468,16089,21184,1952,26253,14270
+63271,15067,60034,31890,74480,34542
+63272,14543,66140
+63273,74404,37413,40706,15420,36315
+63274,78397,69147,36689,31308
+63275,3750
+63276,56259,8608,36489
+63277,30753,42163,13531,18204
+63278,59940,13811,26357,49137
+63279,68585,30787
+63280,50294,31992,14681
+63281,55008,29983,53229,59646
+63282,79238,17493
+63283,23994,25597
+63284,41004
+63285,58073,44753,4549,70406,64712
+63286,45653,8464
+63287,44034,7997,46869,37608,11206
+63288,53494,78094
+63289,79296,12394
+63290,60319
+63291,39000,25997,15419
+63292,46208,48385,64103
+63293,17471,80354
+63294,11242,42189
+63295,4801,49848,59082
+63296,73106,56917,66271,43629,76799,9795,53526
+63297,7318,63002,30706,49630,73516
+63298,19419,45115,67630,79712
+63299,43698
+63300,43717
+63301,20703,48278,45200,36855
+63302,54566,28379,39615,52284,35042,35531,30802
+63303,37934,67577,57026,40480,8003,13004,70960,3826
+63304,26056
+63305,69891,69958
+63306,56539,8239
+63307,65576,23487,45604,57024,79031
+63308,31181
+63309,12234,52775
+63310,60817,41846
+63311,62322,26808,63126
+63312,26688,76744
+63313,7821,463
+63314,55254
+63315,28458
+63316,18852
+63317,74901
+63318,6074,22145
+63319,81524,77649,17378,53459
+63320,4573
+63321,64176,18666,8328,68424
+63322,41018,44351
+63323,37653,13562
+63324,39394
+63325,61043,47951,38911,57685,63516,72408
+63326,60141
+63327,80217,5164,22897
+63328,21679,76039,27736
+63329,50734,37261
+63330,57192,17361,27448,39744
+63331,24552
+63332,27964,73377,48232,70982,25303,33317
+63333,25393,32278,44689
+63334,44816,53236,33566
+63335,67434,75451,38925
+63336,30947
+63337,52061,29765,12891
+63338,3501,60468,41897
+63339,1718,29641,74394,25319
+63340,71660,53318,45597,80217
+63341,51577
+63342,62749
+63343,51863,67724,56432,9976,57872,65146
+63344,38229,78216,42601,20588,63827
+63345,44824,80429,50664,67873,31590
+63346,79811,52670,50103,10190
+63347,36052
+63348,4681
+63349,25201,44424,27141
+63350,14581,59019
+63351,52439,59262,11652
+63352,21160,57679,27091,29515,35781,42255
+63353,14405,79680,75092
+63354,4338,31622
+63355,41398
+63356,36195,54890,20755,63852,36737
+63357,60841,78413
+63358,4243
+63359,41722,42330,27604
+63360,51327,63953,52317,49109
+63361,40581,13961,39245,12424
+63362,67999,40602
+63363,69284
+63364,55791,57425
+63365,48458
+63366,74131
+63367,13382,77
+63368,5703,73541
+63369,438,4438,44917,80238,64990
+63370,13011,64843,19519,26475,8945
+63371,56004
+63372,39649,23442,9536
+63373,47951
+63374,16106,22499
+63375,55354,42275,16007
+63376,60847
+63377,80245,41848,990,5244
+63378,70266,16925
+63379,51439
+63380,5257
+63381,35304
+63382,70978
+63383,7342,67346
+63384,65160,3862,78387,29859,55238,23747,54869
+63385,9515,81666
+63386,53884,72585,76283
+63387,59677,30736,12960
+63388,78984,17242,20153
+63389,64747,28040,2872,66156
+63390,9132
+63391,71644
+63392,49778,76441
+63393,30489
+63394,78759,33962,30093,70557,76152,46165,19668
+63395,60177
+63396,74314,39602,49229,19519
+63397,78813,11210
+63398,1096,19584,31467,7530
+63399,16918
+63400,32806,16556
+63401,40526
+63402,78832,53884,11397
+63403,58589
+63404,11074
+63405,24389,62040
+63406,24151,11240,1676
+63407,65013,65419,4453
+63408,20745
+63409,1813,48934
+63410,78123,55371,41256
+63411,56259,70629
+63412,40686,55328
+63413,30324
+63414,27451,45422,2244,62639,47478,14893
+63415,40245,48933,7739,55029,68727
+63416,15386,43569,64084,10832
+63417,14413,73017,15557
+63418,42429,80980
+63419,50206,23009,31691
+63420,50726,40483
+63421,833,17967,7731
+63422,25073
+63423,60912
+63424,500
+63425,33523
+63426,51137
+63427,30025,61091
+63428,3276
+63429,12241,16506,38671
+63430,47777
+63431,22760,24630
+63432,62289,59252
+63433,47749,30805,24545,25882,19384
+63434,5887,16783,71364
+63435,5454
+63436,51064,8662,68598
+63437,31971,71998,34570,38646,700,2965
+63438,72209
+63439,50157,43095,27914,70065
+63440,38945,1740,2003,43751,49172
+63441,48742,35142,45042
+63442,79015,56936
+63443,36412,53676,71882
+63444,14153,50612,36680,38723
+63445,81472,70192,79196,61914,68109
+63446,39696
+63447,19102,81483,72766,37133
+63448,32152,29196
+63449,1836,51063
+63450,52295
+63451,12035
+63452,6438,1564,36888,5380
+63453,54571
+63454,30047
+63455,40148,28376
+63456,53424,34972
+63457,10691,46032,21427,53039,70824
+63458,14618
+63459,14110,15114,82060
+63460,11390,76997,80060
+63461,40931
+63462,55352,8666,15749
+63463,82171,79015,18495,27495
+63464,72389
+63465,73650
+63466,27683,50791,24775
+63467,76015,40978
+63468,6069
+63469,64465,3034,68009
+63470,32585,2287
+63471,8568,67389
+63472,46014
+63473,53104,62597,9729
+63474,46497,67757,8669
+63475,25238
+63476,71722
+63477,13666,9664
+63478,44668,42035,61218,59610,52117
+63479,47368,43358,33113,45430
+63480,28313,31457,21155,59584
+63481,64999,74345,36919
+63482,75952,78442,79462,71574,16791
+63483,24643
+63484,67141,15739
+63485,37586
+63486,21951,75570
+63487,30821,9181
+63488,78709,5135,2653
+63489,47670,76519,46135,37877,29753,14374
+63490,6862
+63491,4025,57384
+63492,19076,23379,74602,8537,31451,69275
+63493,64609,40865,53878,14501
+63494,6629,52918,14105,61278
+63495,59601,44662,50622,73714
+63496,14595
+63497,6766,72238,15177,62484
+63498,73850
+63499,58559
+63500,78333,47380,45073
+63501,27259
+63502,37910,73093,69036
+63503,8177,69339,18800,54054
+63504,64816,56948
+63505,66589,80121,47923,72625
+63506,41226,55548,64786,66865,4538,57379,80321
+63507,59144,3074
+63508,45844,688,67450
+63509,69583,55621
+63510,78797,10027
+63511,31275
+63512,57564
+63513,66357
+63514,54488
+63515,37643
+63516,62017
+63517,62004,73683,68031,7977
+63518,5049,22784,67901,68966
+63519,64432,74693,77953
+63520,3022,26084,33512
+63521,54189,64377
+63522,44974
+63523,52726,51430
+63524,54990,14791,65817
+63525,25194
+63526,40168
+63527,42461,73438
+63528,67365,55455,62408,27811,58497
+63529,71490,55052,10037,76506,31285
+63530,81167,21777
+63531,78018
+63532,22128,45645,51992
+63533,66905,31005,77474
+63534,15544
+63535,8240,54240
+63536,41865,18434
+63537,1807,5486
+63538,4184,39194,15503
+63539,34751,18482,47753,80230,42246,48868
+63540,65169
+63541,8392
+63542,12537,64983
+63543,78470,55247
+63544,59636
+63545,21407,54621,33557
+63546,35624
+63547,34502,78
+63548,49348,39123,54448
+63549,33803,39528,8126,63754
+63550,72831,29166
+63551,37786,71172,48054,11855
+63552,2823
+63553,39056,26608
+63554,11318,79046,51348
+63555,38908,36303
+63556,34969,50083
+63557,53807
+63558,44140,46523,1597
+63559,32711,30205
+63560,5624,13936,23758
+63561,21805,10972,61960,21978
+63562,60438,16369,81120,14592
+63563,78275,71972
+63564,37218
+63565,55420
+63566,21128
+63567,6042,35289,40617
+63568,44119,3501
+63569,49540,58342,43979,22358
+63570,56890
+63571,22375
+63572,62739
+63573,9108,29434,64957,67128,61287
+63574,79374,63978,65330
+63575,25732,50321
+63576,52406
+63577,9481,27610,57153,61562
+63578,24693,17950,54971
+63579,60655,5015,73452
+63580,59437,37501,49108
+63581,72583
+63582,4107,10263
+63583,60156
+63584,47975
+63585,68313
+63586,30283,56040
+63587,55839,30945,539,39
+63588,53807,23518,29118
+63589,10529,32071
+63590,7163
+63591,36475,34385
+63592,54878,36021,69365,81926,2174
+63593,45741,9749
+63594,69236,63705
+63595,10647,20306
+63596,68867
+63597,21951,18067,70598,52520,34415
+63598,44960,44196,27882
+63599,56689,26876,26524,36452,19851
+63600,38734,51352,7851
+63601,24389
+63602,58663
+63603,62600
+63604,81692,57055,4234,10850
+63605,73876
+63606,8457,17725,5556
+63607,39780,29135,80215
+63608,4179,25342
+63609,9855
+63610,47055,17478,66597,22970,32436
+63611,2218,59387
+63612,3468,38600
+63613,29478
+63614,81641
+63615,79333,21545,61212
+63616,39240,32319
+63617,61652,57625,18668,37252
+63618,30932,8543,36681,73107
+63619,8731,25897
+63620,13732
+63621,69199,60389
+63622,70888,68413
+63623,66270
+63624,37653,76784,35315,41654
+63625,23089
+63626,36980
+63627,22322
+63628,21877,62889
+63629,18202
+63630,49933,5141,80004
+63631,25150,77676,55045
+63632,62422,34469,81012
+63633,34739,45997,38359,12668
+63634,49489,28912,78558,20019,20509,29599,67321
+63635,19636,20611
+63636,3919
+63637,30189,46258,24448,54317
+63638,18212,27061
+63639,40854,63865,61426,3756
+63640,53327,80967,55572,23577
+63641,78794,46854
+63642,28736,449
+63643,68061,22915,73628
+63644,52386,43720,5276,79454,13348,47147
+63645,59762
+63646,74702,51781,75232
+63647,54288,77998
+63648,50228,58798
+63649,24520,43324,72232
+63650,77545,52910,12830,74547,9115
+63651,17884,55733,15567,6839
+63652,3862,69505,24020,45320
+63653,51018,12832,15623,7728
+63654,52524,68647
+63655,72603,35388,46384,36590
+63656,57672
+63657,59283,58282,21020,53046
+63658,4757
+63659,42599,22161,11197
+63660,21494,9071
+63661,47135,74324
+63662,56295,51145,72572,70189
+63663,21191,43206
+63664,49017,26762
+63665,70112,79256
+63666,72059
+63667,17923,54392,70388,18358,16572
+63668,44827,42042
+63669,2948,47142,14076
+63670,24093
+63671,77226
+63672,36619,60301
+63673,30823,36464,48603,81592,67597
+63674,20474,30662,52663,59266
+63675,36882,49195,5568
+63676,14993
+63677,77,12706
+63678,895,25127,29923,61110,36821,25227,25802
+63679,16814,51938
+63680,32479,37632,47782,42466
+63681,42956,41518,9279
+63682,16472,20620,45489,63290
+63683,13458,29873
+63684,28038
+63685,40741,12590,14975,32475
+63686,10341,19761,81905
+63687,17302
+63688,16585,6240
+63689,21139
+63690,5725
+63691,21121,63126,29659,74113
+63692,58099,39984,27432,2614
+63693,8354,71782,60876,37554
+63694,51096,20082,17288
+63695,56392,69304,24699,21189,76203
+63696,76458
+63697,52384,52985,9360
+63698,24669,80524
+63699,72855,28950
+63700,18009,34939
+63701,39853
+63702,62910,72791,80634,80292
+63703,77,3250
+63704,80170
+63705,49420,1343
+63706,18973,78462
+63707,48588,59041
+63708,48745,8158
+63709,11039,73249,49817,60671
+63710,33682,22184
+63711,7202
+63712,65469
+63713,57819,81123,37202,71332
+63714,15484,68579
+63715,71079,57720,57993,9889,52230,21179,20475
+63716,41190,9659
+63717,69874,13117
+63718,29015,24343,48300
+63719,67991,7952,8187
+63720,62283,69993,18858,26346
+63721,699,32853
+63722,11399
+63723,20628,17832,68092
+63724,2146,61222
+63725,4338,21556
+63726,54334
+63727,54343,29201,36920
+63728,33793,81053,21516
+63729,50643,30707
+63730,73133
+63731,73786,6876
+63732,24621,9983
+63733,31535,34362,1065
+63734,81242,70048,72655
+63735,37107,72388,8955,76098,37910
+63736,32138
+63737,10165
+63738,46422
+63739,21419,10927,62932,13537,77573,51428
+63740,70592
+63741,4417,3005,79943,72614
+63742,46447,62482,49704,67495,12163
+63743,10617,37561,54587
+63744,29833,33147
+63745,16362,59737
+63746,2655,33709,13091,44984,58277
+63747,63758,5915,46733
+63748,34299,35033
+63749,14142,48752,362,6536
+63750,13477,11806
+63751,80914,20595,36036,13528,49650,69700
+63752,43966,44514,4639
+63753,27192,27386,28028
+63754,39474,38409,24692
+63755,60268
+63756,12950
+63757,40433,28834
+63758,5328,63530,17140,46272,65284
+63759,45550,24532,16125,49140
+63760,62464,75029,55100,37907,21592,44020
+63761,36785
+63762,79882,67319,20142
+63763,63171,19334,81582,58599,35349,59353,69241
+63764,55552,53752
+63765,55244
+63766,9061,27097
+63767,80441,43904,30108
+63768,46082
+63769,44383,2065
+63770,38422
+63771,29078,42542,23098
+63772,10447,39900,47663
+63773,25874,19108,69155,36401
+63774,64802,2023,59202
+63775,65822,17067
+63776,55782,36987
+63777,30176,79202
+63778,78217
+63779,6007
+63780,73434,42405,80311
+63781,50722,39652,13628
+63782,23095,36365,1987
+63783,54443
+63784,39083
+63785,73149,11367,32019,39371
+63786,4568,75618
+63787,57194,10280,16089
+63788,69888,68433
+63789,3564,70997,73158,16458
+63790,32498,23119
+63791,35537
+63792,40910,32795,5619
+63793,62395,54494,61954
+63794,10936
+63795,39423,33708
+63796,74555
+63797,17596
+63798,26516
+63799,74587
+63800,2795,74856,75198,35791,51102,37863
+63801,56286,56395,57200
+63802,50529,38225,5644,39710
+63803,5587,44994,1343,48335,58903
+63804,73399,64195
+63805,21616,46325,56910
+63806,47380,30009,63689,59006,77865
+63807,60509,3563
+63808,80464,76895
+63809,30874,4953,50233
+63810,61453
+63811,51409,26367,9110
+63812,38995,29301,63106
+63813,4719
+63814,35958
+63815,41953,75742
+63816,35268,49970,72478,60819,28372
+63817,63139
+63818,48791,72653,8247
+63819,4437,47152,17705
+63820,17418,55093
+63821,24592,12087,36395,58933
+63822,25369,51862,13140,26923
+63823,50455,67412,44763
+63824,8083,51613,35374,79141,25376
+63825,74113,41653,30943
+63826,35085,79612,37764,4896
+63827,31949
+63828,14990,75651
+63829,6260
+63830,19030
+63831,53239,81268
+63832,14319,9111
+63833,1874
+63834,21699,44043,75714
+63835,48014,75421
+63836,38731,8676
+63837,37477
+63838,45951
+63839,49760,34893,43240
+63840,68173,40109,39075,80554
+63841,80662,58016,47851
+63842,43872,61922,12456
+63843,57278,292
+63844,49931,1580
+63845,45559,18277,18415,69214,45809
+63846,66619
+63847,36266,62754,37239,11427,68275
+63848,5616,18433,31211,11172,66543
+63849,75130,77615,51510
+63850,23519,66265,43230,67000
+63851,52349
+63852,11730,3709
+63853,56777,22691,44892,4284
+63854,28352,11572,4988
+63855,36932
+63856,1628
+63857,50231,60003
+63858,22488
+63859,22762
+63860,23106
+63861,55992,13608,2027,29061,73561,32495
+63862,7406
+63863,61277
+63864,72,53505,47998
+63865,43601
+63866,72963,36865,10928,70557
+63867,46240,338,70473,72772,75602,76231
+63868,14245,22446
+63869,74871,3425,79975,38731
+63870,21769,10092,407,29046,30921,43841
+63871,40978,34693
+63872,508
+63873,76585
+63874,2101,48331
+63875,11048,16993,9986,71403,24599,54899
+63876,21491,32779,74753,73265
+63877,29571,7260
+63878,4336,5486,29003
+63879,10837,41759,78736
+63880,51463
+63881,35876
+63882,2812,4078,39752
+63883,2725,21084,79258,75389
+63884,31688,48712,57491,40444
+63885,29462,13283
+63886,78604,63263,66359,22073
+63887,47982
+63888,31285,9141,1143,73837
+63889,34636
+63890,34668,67097,78955,46188
+63891,40064
+63892,15520,13864
+63893,23956,68902,36473,48239,63259,53087
+63894,76223,34269,1181,452
+63895,47295,4888
+63896,34519,39798
+63897,57924
+63898,24438,7489,19358,44950,62867,54560
+63899,27504,25750,55311
+63900,59983
+63901,14168,62780
+63902,34570,45267
+63903,48932,61500,66921
+63904,30990,64009
+63905,35501,74400
+63906,21179,29652
+63907,8238,61440,70861,20191
+63908,59622
+63909,71008,15182
+63910,14092
+63911,26351
+63912,24812,76634
+63913,46579,29655,31774,24719
+63914,21550
+63915,38077,2119
+63916,47275,77158
+63917,59646
+63918,6280
+63919,51108,24530,39312,15618
+63920,32038
+63921,15409,38345
+63922,22672,37237
+63923,319
+63924,33995
+63925,81200
+63926,32883
+63927,56247
+63928,52029,26723,72668,20944
+63929,51673
+63930,28415
+63931,57388
+63932,75969,81233,27275
+63933,81011,18064,44969
+63934,20610
+63935,25147,32977,43964,34376
+63936,554,65592
+63937,37031,60017
+63938,49664
+63939,28439
+63940,71450,62326,36790
+63941,8260,60024
+63942,31034,14193,29810,12149,71229,21116
+63943,31000,34654,38492,76797
+63944,66639,77735,31437,37648,35316,50002,64480,18858
+63945,72098,1183
+63946,58316
+63947,67118,65333
+63948,56136
+63949,11964,66854
+63950,70055,45429
+63951,21199
+63952,34158,62109,52634,36283,41495,21657
+63953,57520,36570
+63954,30943,73025,26234,63787
+63955,28164
+63956,34883,76738,54880
+63957,74726,74964,24088
+63958,70648
+63959,53336,19319
+63960,39463,73992,9608,48353
+63961,3506
+63962,58568,35149
+63963,41872
+63964,7960
+63965,55055
+63966,24816
+63967,59305
+63968,56336,64827
+63969,78959
+63970,64324
+63971,64413,76295
+63972,52790,13960,41631
+63973,30429,67537
+63974,18623
+63975,37270,16866,19793
+63976,1005,69063,1955
+63977,41322,6352
+63978,68742
+63979,74402,43904,1485
+63980,73399
+63981,38662,62667,43133,67530
+63982,58565
+63983,30724
+63984,45092,57558
+63985,3483,74284,57601
+63986,19195,67658
+63987,8375,17825
+63988,35586,41900,40787,44237,7596,61431
+63989,30907,10648,5296,74622
+63990,47387,22497,34276,31786
+63991,7326,36984,12504,43389
+63992,45097,53768
+63993,23984,42072,21264,68391
+63994,39308
+63995,67705
+63996,10041,25145
+63997,14246,18148
+63998,67358,62715
+63999,7708
+64000,34296
+64001,33371
+64002,71902
+64003,71719,65241,11669,67634
+64004,27117,38584
+64005,17643
+64006,76647,63537
+64007,55049
+64008,39538
+64009,78619,31926
+64010,77056
+64011,78205
+64012,66276,38877,39808,5253,73947,74686
+64013,73652,77513,12851,60537
+64014,57358,67651,15471,27127
+64015,12441,41676,71679
+64016,65521,9632
+64017,4316,3969
+64018,6137
+64019,49173
+64020,23580,40677,19612
+64021,68019
+64022,39824,17888,30843,39961
+64023,57001,65349,60343,18829
+64024,25274
+64025,70671,35165,12787,45432,61428
+64026,41098,47151,34458,1659
+64027,52103,28062,20981
+64028,70648
+64029,63582
+64030,43750
+64031,38447,11450
+64032,4757
+64033,36920,37451
+64034,44013,18418,64220
+64035,3601,23077,41546,49680,47756,70011,11572
+64036,29725,32571,38178,38984
+64037,77385
+64038,35860
+64039,76882
+64040,25171
+64041,27708
+64042,16632
+64043,66215,18298
+64044,7548
+64045,30515
+64046,75207,46896
+64047,1093,40692,12393
+64048,23214,74693,58867,26234
+64049,58730,31853,62144
+64050,55566,78805
+64051,24732
+64052,36803,74398,28158
+64053,45742,23622,12537
+64054,30711,23653,62929
+64055,65219,24354
+64056,50151,41483,57709
+64057,20990,5112,5242,64858,74868
+64058,75685,838,5544,51170,15727,50452
+64059,59418
+64060,37510,50426,48355,15438,58535,28769,5849,75559
+64061,70146,51519
+64062,71465,38615
+64063,32483,75271,21933,64462,39538
+64064,29893,54490
+64065,80684
+64066,63033,63880,16541,71534,4425,64989,34961
+64067,25072,29418
+64068,79336,44277
+64069,34816,64628,66591
+64070,17589
+64071,1202
+64072,20707,36316,37715
+64073,1354,40443
+64074,38811,61865
+64075,25613,21022,60677
+64076,37898
+64077,10141,13165,7945
+64078,21199
+64079,47293,16832
+64080,43512,46095,16917
+64081,9846,32409
+64082,56821
+64083,4720,59128,24986,6744
+64084,59336,11418,2092,50122
+64085,55709,6335
+64086,70570,5803,35860
+64087,26225,50451,49550,78762,26290
+64088,57818,2360,52693,17481
+64089,71159,33673,39622
+64090,33908,37636
+64091,21887
+64092,46430,34202
+64093,63275,24925
+64094,32617
+64095,71789
+64096,19526,61750
+64097,6107,55478,81578,78874,50487,48650,2757,70896
+64098,18403,80335,33439
+64099,63458,69319
+64100,41573,72931
+64101,69135,57000,32369
+64102,38844
+64103,25487,36394,62680
+64104,64195
+64105,77711
+64106,17676
+64107,41570,26053,38995
+64108,30408,6578,49779,75344,36213,29229
+64109,43433
+64110,10202,68946
+64111,5585,8610,27266
+64112,80862,72888,73947,74015,27612
+64113,11890,50004,50947
+64114,41219,57554,23346,40197,76782,58849
+64115,68762,6574,29088
+64116,54852,17280
+64117,16809,55129,33846,45523
+64118,60908,15345,1281,31524,66056
+64119,81369,29725
+64120,65827,43137
+64121,41446
+64122,7957
+64123,7646,43722
+64124,1114
+64125,38166,48934
+64126,33309
+64127,58249,79986,22043
+64128,52470,60594,15812
+64129,41612,52194,81546
+64130,43910,43854,26678
+64131,7754
+64132,57717,2608,71767,4580
+64133,22527,39771
+64134,67091
+64135,22602,14279
+64136,58591
+64137,34611,73852,29562
+64138,18701
+64139,4406,65078,47930
+64140,49134
+64141,60024,65513,3462,68939,785,65510
+64142,28298
+64143,45461,26518
+64144,19831,40280,44725,35973
+64145,67091
+64146,71362,79942,53976
+64147,2518,39575,33671,13539
+64148,42299,15806
+64149,52766
+64150,7102,47524,57170
+64151,61888,12070,18938
+64152,77097
+64153,653
+64154,2538,7883
+64155,29114,20023
+64156,35739,1591,4266
+64157,74075,31649,71459
+64158,78487,75593
+64159,18970,2055
+64160,70165,71102,9997
+64161,5778,21377,13037
+64162,22654,36357,34012
+64163,62082,58851,36973
+64164,71191
+64165,36836,66965,30012,72244
+64166,80937,17432
+64167,76978,51829,31863,30811
+64168,71757,10532,24753,68049,33241
+64169,9021,40749,27930
+64170,41535
+64171,46450,61309
+64172,26490,56386
+64173,45490,12282,73317,53079
+64174,21617,25307
+64175,67922,14745,76088,33755,54066
+64176,71865,62494
+64177,53573,47139,78741,67687
+64178,62302,65140
+64179,48229
+64180,79622,54594,8489,29025
+64181,21911,19043,70651,52273
+64182,52834,67739
+64183,77057
+64184,12440,33170,40406,11205,10554
+64185,70100
+64186,75142
+64187,78427,54727
+64188,31691
+64189,4870,1036,19396
+64190,47075,60070,72977
+64191,80229,38323
+64192,69119,64155,57801,67510,34990
+64193,21246,23862,17974
+64194,16375,78020
+64195,12887
+64196,1538
+64197,59256,43358,29997,47039
+64198,44556,71551,66585,20644,73285
+64199,38782,71223,55102
+64200,60705,6104,62967,47632,28456
+64201,49393
+64202,28169,19353,4675
+64203,33653
+64204,42953
+64205,71605,61228,48498
+64206,59420
+64207,40321,6701,13476,68299,7014,28516
+64208,37924,50264
+64209,26177,7672,69871
+64210,6462,47513
+64211,34695
+64212,49413,15543
+64213,23410
+64214,32092
+64215,38325,54215,69417,16637
+64216,10632,29431,36639,45847
+64217,9396
+64218,18181,70420,8570
+64219,4017,80227,11144
+64220,493,47422
+64221,8205,8688,7508,12966,56949,46346
+64222,6171,55596,24941
+64223,21639,42489,38702
+64224,7686,66132
+64225,22838
+64226,7157
+64227,15091,58851
+64228,44738,56437,47434,31410,29610
+64229,26299
+64230,68303,67621
+64231,82073,8683
+64232,28447,49754,49936,9464
+64233,70373,55954
+64234,61569
+64235,46540,71625,50287
+64236,45721
+64237,966,3133,26641
+64238,17189,35070
+64239,61693,1069,17146
+64240,68902
+64241,12595
+64242,19131
+64243,23894,66234
+64244,67519,40266,54128,78609
+64245,74016,81494
+64246,7516
+64247,17231,81006,65058,61085,12987
+64248,81576
+64249,73901,60569,67353
+64250,78627,71525,34786,21127,56185
+64251,51528,27245,13700
+64252,33828,74167
+64253,81184,4664,51096
+64254,58922,66135,45327,60609,68080,51049
+64255,29812,60867,46529
+64256,10122,6963,70693
+64257,43689,66680
+64258,59643
+64259,14151,61517
+64260,11705
+64261,71835,60326
+64262,13651,47132,14767
+64263,68442,66537,40181,57027,50029
+64264,6225,66973,66644,37358
+64265,23495
+64266,42643,25591,683
+64267,43654
+64268,49603
+64269,5264
+64270,53970,5322,58410,77684
+64271,23459
+64272,38657,9448,77703,60987
+64273,47975,6472
+64274,68004,48818,3875,54574,16107
+64275,1412,19321,81264,74806,63089
+64276,59637
+64277,20965,19808
+64278,51708,67037
+64279,29308
+64280,14772,76890
+64281,55142
+64282,29243,10274
+64283,46214
+64284,31949,9447
+64285,30554
+64286,42158,42974
+64287,17083,1048
+64288,54196,60284,70263
+64289,58790,76910,13622,14756,65811,7851
+64290,19535,50771,15120
+64291,72942
+64292,32685
+64293,77743,63701,18490
+64294,23083,47463,30912,11001,81699
+64295,42321,16408
+64296,24113
+64297,41361
+64298,30353,52844
+64299,25022
+64300,63316,66788,61639,37042,20644
+64301,29924
+64302,48651,22254,49039,80185
+64303,35537
+64304,79152,64184,21214,74446,4471,37926,61333,35830,8816,50628
+64305,41098
+64306,51296,20461,20080,63673
+64307,52780,69488,44043,30508
+64308,13751,66205,12094
+64309,72246
+64310,61388
+64311,26225,47672
+64312,52392
+64313,57427
+64314,34198,66329
+64315,27131,8594
+64316,10018,71868,73280
+64317,57106,16525,70523
+64318,76965
+64319,66160,66784,2932
+64320,9728
+64321,1434,22455,61080
+64322,42417,24032,18324,13782
+64323,29217,23647,25099
+64324,33680
+64325,80293,9188
+64326,45327,81942
+64327,69497,58174
+64328,9003,37686,16398,3407
+64329,17669,69471
+64330,1238,62601,13983,66145
+64331,22124
+64332,50841,29235,41577,60881
+64333,38493,50670,57810
+64334,36038
+64335,66231
+64336,35269,59784,42592
+64337,60091,12303
+64338,60371
+64339,56287,59159
+64340,18587,80926,38502
+64341,68583
+64342,46109,14626,42293
+64343,70642,50939
+64344,49573
+64345,64629,58122
+64346,72772
+64347,30082,2936,72392,46508,18935,5498
+64348,25799,21908,4683
+64349,3959
+64350,11684,63030
+64351,26640,22804,34127,15566,12171
+64352,73017
+64353,86,28037,28355,52725
+64354,29875
+64355,74046
+64356,69821
+64357,81963
+64358,14330
+64359,32145,9193,24409
+64360,66383
+64361,69221,19666,21021
+64362,13068,55676,72461,54419,52358
+64363,81664
+64364,9339,56933,50079,60355,42701,40407
+64365,23935,817,60317,6488
+64366,62977
+64367,68383,2097,7443
+64368,53969
+64369,77619,4288,12079
+64370,19367,25599,29446,34443,61998
+64371,70800,26616
+64372,27386
+64373,19947
+64374,58706
+64375,30429,76581,45859,73498
+64376,23026,71172,14185
+64377,49296,60220
+64378,24296,58738
+64379,41864
+64380,46754,39715
+64381,61510,67257,69186,64335
+64382,36077,42899,21320,67281
+64383,35717,76300,33298
+64384,77416,46064,25747,36298
+64385,76933,79408,21131,79518
+64386,54581
+64387,41069
+64388,64960
+64389,13368
+64390,24614,37271,75901
+64391,10800,18260,6198,78758,30562
+64392,52948,67703
+64393,69221
+64394,1621,15679,6863
+64395,32550,36709,53722,7977
+64396,71479,51435
+64397,36023,24875
+64398,73761,69018,18904
+64399,16691,921
+64400,23383,28926
+64401,37791
+64402,19093
+64403,2167,50645,38569,11065,39166
+64404,44159,43833,17488,61372
+64405,81981,61493,28955,65248
+64406,55517
+64407,7913
+64408,13238
+64409,3402,81543
+64410,57153
+64411,34742,31878,32282,10352,36631
+64412,28743,8568,71133,40538
+64413,20379
+64414,48595,69364,70352,59849
+64415,1393
+64416,46316,72502,15344,13576,56945,80111
+64417,11466,78
+64418,46779,52932,29133
+64419,64599,25483
+64420,55981,18060
+64421,69848,19917,65206
+64422,58011
+64423,12131,44654
+64424,6562,69203
+64425,20826,49310,36871,19865,4014,42867
+64426,46641,8319
+64427,15832,41718
+64428,7454,55233
+64429,45942,21704,79256
+64430,60281
+64431,44472
+64432,53530
+64433,59760,11510,22779
+64434,33207,35327
+64435,53974,64984
+64436,6137
+64437,62280,24208,15701
+64438,45914,13311,25080
+64439,40757,1818,79034
+64440,79559
+64441,63401
+64442,55739,58968
+64443,61921,23476
+64444,63331,54684
+64445,63483,16516,16022,27011
+64446,71112
+64447,74527,3034,37193,9976,63326
+64448,63547
+64449,63503,31072
+64450,63820,61048,67815
+64451,35737,5210,26346
+64452,20862,22285,75248
+64453,70056,46776
+64454,10726,1069
+64455,65559,12214,24427,9919
+64456,14231,41484
+64457,27520,78487,82040
+64458,80915
+64459,63695
+64460,29374,49295,2420
+64461,44366,41300
+64462,41457
+64463,79643,50492
+64464,72123
+64465,30932,257,79874
+64466,51330
+64467,41435
+64468,21187
+64469,67413
+64470,4623,13301
+64471,44654
+64472,36816,56126,57167,5791,80239,52083
+64473,79645,25479,16789
+64474,60812,35493,18099
+64475,16555
+64476,40532
+64477,22107
+64478,32148,63875
+64479,51415,70888,68206,75917
+64480,81167
+64481,58104
+64482,51518,15686,61250,57528
+64483,80119,44407
+64484,79577,14345,1782,25463,62446
+64485,17714,48089
+64486,33184,3896
+64487,54452,33770
+64488,26992,46394,50457,21937,72830,16858,69816
+64489,24559,61146
+64490,78686,6322
+64491,69799
+64492,38363
+64493,33393,20555
+64494,15644,7347
+64495,56390,67911,17752
+64496,80651,61215
+64497,36967
+64498,69850
+64499,17007,41056
+64500,59710
+64501,71652
+64502,57968,57934
+64503,66953,43672
+64504,11047,69044,67846,52671,81852
+64505,29701
+64506,58171,40218,69668,32566
+64507,76282,63744,60078,43863
+64508,24423,79468,54461
+64509,56131
+64510,31902,6240
+64511,66717,32000,1784,66605,75084,50755,77036
+64512,4408,73397
+64513,50017,71293
+64514,4026,61787,57813
+64515,1942,14220,63354
+64516,46740,51553,46949,13596
+64517,55944
+64518,6430
+64519,80068
+64520,14759,81613
+64521,81521
+64522,58319
+64523,68582,65254
+64524,16955,17161,68332,59791
+64525,44518,11877,24700,42986,33992,51751,43464
+64526,79535,48578,4054
+64527,66860,48903
+64528,3042,7011
+64529,65900
+64530,65876,57460
+64531,77207
+64532,82178,67444,27083,72360
+64533,55142,53057
+64534,48196,74561,8636,64455,76172
+64535,7136,13916
+64536,19930,51961,50597
+64537,66723
+64538,43237,63834,27205,67228
+64539,61817
+64540,8101
+64541,53941
+64542,24944
+64543,74841,46626
+64544,53971,38379,35863
+64545,20842
+64546,80001,6759,20116,58656
+64547,57129,17752
+64548,7342
+64549,8926
+64550,39446
+64551,22516
+64552,18974,40588,23005,7291,36074
+64553,71153,21652,14779
+64554,48170,72692
+64555,6717,33504,477
+64556,44438,69782
+64557,9529,40506
+64558,21669,36984
+64559,57403,20297
+64560,41981,145,34439
+64561,28339,81165,53263
+64562,20143,75214
+64563,66547,43129
+64564,33093
+64565,41433,69273
+64566,33985,11122,17499
+64567,51486,22166
+64568,66595,49683
+64569,10436
+64570,76625
+64571,72166,7788,28097
+64572,38114
+64573,42834,73239,74547
+64574,35131
+64575,7168,41504,2607
+64576,3964,57265,59783,22002
+64577,23187
+64578,22426
+64579,65088
+64580,44813,51472,52426,41645
+64581,20330
+64582,36921,68894
+64583,73212,50318
+64584,8448,53655
+64585,45717,60211
+64586,5522
+64587,26402,27883
+64588,33894,57319,49881
+64589,16553,79131
+64590,59701,19683
+64591,72807,68028
+64592,1115
+64593,54790
+64594,69555,67008,74536
+64595,13598,31846,16928,11680,29087
+64596,72884
+64597,44036,62950,79043,10751
+64598,70392
+64599,18691,57313,54650,31370,5293,20178
+64600,80813,81628,58597,29185,25135
+64601,50048
+64602,11423,78314
+64603,66473,79939
+64604,4906,53912
+64605,31008,44280,31567,64308,21451
+64606,10815
+64607,45709,72249
+64608,28593,38172,16978
+64609,8497,16645
+64610,35547,79361,18028
+64611,39787,15667,55380
+64612,71764
+64613,6068,2104
+64614,18371
+64615,3920,44218
+64616,34416
+64617,20796,53565
+64618,55125
+64619,41066,59934,30985,46929,78360,5614,8283
+64620,37141,662,72283,81939,32992
+64621,68648
+64622,13224,52654
+64623,66980,59129,6662,12224
+64624,47871,63848,51402
+64625,6997
+64626,20517
+64627,67823,64003,15429,30624
+64628,36512,81492
+64629,44420
+64630,42279,78696,9418
+64631,36595
+64632,72130,77799,15422,30737
+64633,31551,38844
+64634,56615
+64635,61889
+64636,19422
+64637,45599,58515,47724,19958
+64638,56056,36280,39993
+64639,50804,14136
+64640,30666,8039,63417
+64641,71654,54991,72916,28225
+64642,74959,29208
+64643,63376,72274,74667,54406
+64644,669
+64645,26263,65974,39328
+64646,18605
+64647,3462,63336,43335,43066
+64648,76650
+64649,62376
+64650,31452,48401,39428
+64651,15901,29570,56976,60531,31517
+64652,2387,53901
+64653,57080,81094,67243,16318
+64654,60805
+64655,28517,35952
+64656,76461,81892
+64657,55049,12881,79985,7866,13259,69730,9322
+64658,53125
+64659,61202,67223
+64660,52203,62600,25555,23207,78329,33785
+64661,52318
+64662,18999
+64663,19569
+64664,51551,8083,28189
+64665,64661,34424,4869
+64666,33760
+64667,46502,29388,40592,1075
+64668,46986
+64669,62204
+64670,5326
+64671,29583,60348,293,59180
+64672,48,77689
+64673,31245
+64674,28114
+64675,67241
+64676,23992
+64677,37806
+64678,69433
+64679,7625,40540,33587,35795,49492
+64680,81152,14581,31291
+64681,45080,25859,4333,80749
+64682,11083,78419
+64683,67070
+64684,78017
+64685,12314,40603
+64686,32983
+64687,765,730
+64688,15454,15094,79852,36289
+64689,22331
+64690,50917,14088
+64691,60072,24310
+64692,5483,72967,51102
+64693,47947,39709
+64694,36763,45487
+64695,72104
+64696,70544,79702
+64697,41179,60588,48570
+64698,65444,61764
+64699,53201,13271
+64700,56048,24139,74276
+64701,71159
+64702,35828,16886,24256,26454,2568,57342
+64703,17113
+64704,58661,9786,40071
+64705,39126
+64706,58047
+64707,59248,75417,15049,77339,9797,30665
+64708,54557,54351,69670
+64709,53288,14097,33956
+64710,16663,55395
+64711,30765,33593,45218
+64712,73011
+64713,25446
+64714,24862,68180,35486,65741
+64715,66763,59732
+64716,57401,49986,31412
+64717,24013,33867,67964
+64718,67086,54303,25576
+64719,71812
+64720,44974
+64721,29343,43267,19901
+64722,11877,60540,48240
+64723,60304
+64724,16376,32411,72691
+64725,68673
+64726,16993,44838
+64727,60446,44981,81323,66256,6757
+64728,68377
+64729,39517
+64730,567,69519,46726
+64731,39874,44152,29948
+64732,32533,74679
+64733,66234,47129
+64734,52396,73639
+64735,49900,78897,42741
+64736,16547,32781
+64737,42012,59501,3016
+64738,41498
+64739,71600,51593
+64740,34466,15485
+64741,60762,48379,5166,10874,50937,53435
+64742,77743,45912,37193
+64743,27488
+64744,32310,78468
+64745,20229,56858,50650
+64746,70970,78924,24870
+64747,66152
+64748,76310,9161,6131
+64749,55620,35685,50900
+64750,58043,29668,73920
+64751,32640,7498,8753
+64752,22764,75849,52795,1644
+64753,29531,15997
+64754,19350
+64755,6639,70099,3129
+64756,70330,68385,48894
+64757,5045
+64758,55048,31022
+64759,10845
+64760,7194,10810,2766,55909,60943
+64761,37107
+64762,70165
+64763,22582,74930,6835,44608
+64764,7394,74474,39307
+64765,75339
+64766,22088,57551
+64767,39369,17709,75650
+64768,24986
+64769,15094,46810
+64770,54863,57828
+64771,40833,32203,12262,56985,18257
+64772,65611,20442
+64773,27830,48822,90
+64774,32371,39734,40282
+64775,61893,15384
+64776,29180,37525
+64777,1791,8489,9719,12901
+64778,23838
+64779,50623,82031,7879,4536,41896,974,80268
+64780,25001
+64781,7242,11847
+64782,29884
+64783,76860,65695,45886,59320,57725
+64784,45818,31191,59859,31117,5486
+64785,32841,23861,40098
+64786,56992
+64787,57399,53125
+64788,61650,43112,15839,73635
+64789,70548
+64790,14446,27632,35817,73151
+64791,71252,35320
+64792,78882
+64793,80676,55171
+64794,45038,17789
+64795,68220
+64796,28278,32558,15249
+64797,14961,56827
+64798,3191,42106,65408,1671,73779
+64799,7988
+64800,50895,66799,28525
+64801,27130
+64802,43644,64042,76748,3269
+64803,22081,22675
+64804,66747,24183,73332,76069,52379
+64805,6424,63057,17542,73142,28244
+64806,45670,57077
+64807,21480,61259,20278
+64808,42384
+64809,1401,37661
+64810,18213
+64811,75450,53727
+64812,9757
+64813,70195,72409,67819
+64814,53052,31253,62800,49480
+64815,78270,11009,7168,43732
+64816,61515
+64817,52682,23999,70412
+64818,8741,81346
+64819,26584
+64820,38318,16594,49351
+64821,19060
+64822,49111,71389
+64823,15270
+64824,40098,75917
+64825,47048,28581
+64826,5058,79707
+64827,81872
+64828,28950,7298,50021
+64829,54885,9355,80412
+64830,61921
+64831,42110,75101,39151,24629,32192
+64832,17591,28164
+64833,18275
+64834,59128,12525,30100
+64835,65989
+64836,75167,13630
+64837,56151
+64838,51761,62780
+64839,36748,31398,74866
+64840,59878,77755
+64841,78117,62655
+64842,62197,42330
+64843,35756
+64844,51536,26688
+64845,17724,23698,15024
+64846,52276
+64847,79218,65245
+64848,18411,49969
+64849,50759
+64850,33069,39328,1042
+64851,15614
+64852,69246,33479,76151
+64853,40840,15722,23434
+64854,15667
+64855,70049,80238,66701,75282
+64856,7661,52395,50769
+64857,56857,52073,37648,38442,58259,28602
+64858,20988,66749
+64859,57437,49685
+64860,9396
+64861,23112,32072,40407
+64862,56528
+64863,38153,68164
+64864,27170,72494
+64865,60086,2545,67455
+64866,70317
+64867,1568,29893,17683,39095,22054
+64868,21450,12929,53538
+64869,70597,58987,70868
+64870,42768,37627
+64871,36379,31099
+64872,69923,27901
+64873,74711
+64874,62316
+64875,45354
+64876,38893
+64877,65773,2817
+64878,29570
+64879,24689,43840,7489,13004,24168
+64880,1757,12185,20944,65697,45701
+64881,27309
+64882,36260
+64883,13998,11938,24236
+64884,71309,39880
+64885,7318
+64886,10189
+64887,33574,62550,73708
+64888,13428,277
+64889,41442
+64890,39044,10040
+64891,31659,33184,30556
+64892,73431,59996,29734,51363,35270,50773,34875,16435
+64893,56636,49471,48490
+64894,21102,60869,6042
+64895,14314,23509
+64896,9667
+64897,80252
+64898,31652,72564,53390
+64899,1017
+64900,75839
+64901,19551,61285,47921
+64902,73696,42116
+64903,11822,69828,27433,46039
+64904,32076,43126,12593,66108
+64905,8662,69822,70945,61237
+64906,25827,32899,8084
+64907,81564,15067,50156
+64908,31758,61050,12456,45827
+64909,52020
+64910,25792
+64911,1320
+64912,25262,77726,13532
+64913,47564,12360
+64914,30773
+64915,12723,48349,32019,16645
+64916,37820,72609
+64917,23611,16106,47107,32328,2814
+64918,20978,33177,32713,78470,38264
+64919,8246,10382,22270,65459
+64920,64603,79918,4433,33048
+64921,49532
+64922,10979
+64923,57345,24032
+64924,22381
+64925,80490,75026
+64926,4039,13072,63254,49510,43382
+64927,76281,77793,42953
+64928,3200
+64929,3814,32846,31622
+64930,52490,51114,34598,37305,61761
+64931,49443,70483
+64932,65096,37147
+64933,73392
+64934,18532,49073
+64935,69923,45912
+64936,24273,77526,70139
+64937,11636,30683,1129,25181,54738
+64938,24790
+64939,50758
+64940,10077
+64941,47213
+64942,39454,67390,15442,10633,60692
+64943,23329,46797
+64944,62199,40710
+64945,47501,74947,21453,50482
+64946,75286,25298,47788,68884
+64947,66018,79525,53764
+64948,74302
+64949,66277
+64950,68370,21124
+64951,78545
+64952,18907
+64953,77550,17765
+64954,33480
+64955,24696,68993,25666
+64956,72840,8073
+64957,17690,60658,47921,56788,61693
+64958,9507
+64959,39312,67550,34014
+64960,48101
+64961,55194,23368,2308,50010
+64962,5992,29911
+64963,40143,37269
+64964,7661
+64965,54986,70044
+64966,961,37722,76026
+64967,9266,81131
+64968,67830
+64969,77088
+64970,58765,9303,69154,45339,31761
+64971,80923
+64972,36700,80591,43655,18308,75716,49311
+64973,46883
+64974,35109
+64975,69583
+64976,52284,69299,5930,38495
+64977,55384,23217,73205,45638
+64978,19779,67922,64001,43681
+64979,43722
+64980,52537,25671,30653
+64981,69721
+64982,60227,34565,70487,73616,51395
+64983,46473
+64984,55930,53312
+64985,4070,77474,64921,48956,65266,36693
+64986,48566,17040,71757
+64987,23166,49477,52393
+64988,62199
+64989,51657,46429
+64990,8015
+64991,3161,52975
+64992,47077,72623,80402,49710,57015,77706
+64993,31404,45074,36773,15762
+64994,60017,73209
+64995,48927,9745,24522
+64996,69445,74134
+64997,68632,64802,64140,64415
+64998,3829
+64999,1073
+65000,29065,54142,30271,30114
+65001,41064,18602,55210,42645,69420
+65002,52869,50404
+65003,40264,47663
+65004,49618
+65005,53829
+65006,76968
+65007,29075
+65008,48446
+65009,5549,75169,27308,61745,3865
+65010,20394
+65011,23519,52079
+65012,11730
+65013,3546,29448,78267,4025
+65014,9189
+65015,76144,17039
+65016,2901
+65017,38399,46263,20349,21421
+65018,48997,39291
+65019,47993,52769,31698,23094
+65020,5228,81082
+65021,31563,48024
+65022,257
+65023,15285,49560,27744,38437
+65024,70505,67987
+65025,126,38870,54845,12294
+65026,49584
+65027,26157
+65028,57733
+65029,59539,80629,80373
+65030,47337
+65031,29740,80922,4431,21188,34059
+65032,17328,23737
+65033,19986,54497,31145
+65034,39825,62777
+65035,53774,29825,9579
+65036,50814
+65037,38348
+65038,2421
+65039,4367,20096
+65040,15305,57208,44218,37039,8767,30899
+65041,14973
+65042,41966,3413
+65043,26960,46216,75478,43177
+65044,11530,72184,55555,12377,2421
+65045,25551,34415,8205
+65046,68556,65631
+65047,2508,61410
+65048,42040,2572
+65049,29223,22743
+65050,68575
+65051,66323,78493
+65052,57694
+65053,65313,22218,76893,76273,15642
+65054,33263,41386,61595,31181
+65055,41537,44697
+65056,55073,49213,24212
+65057,136
+65058,30603
+65059,60919
+65060,1680,69001
+65061,73888
+65062,19259
+65063,44115
+65064,3883
+65065,75293,8558,19258
+65066,32974,46756,11935,61501
+65067,53673,52709,27831,14155,29973
+65068,75553,66568
+65069,80904,2134
+65070,36172
+65071,22728,51964,35586
+65072,46855,9055,65223,50901,4436
+65073,41165,1740
+65074,45720
+65075,76218,34421
+65076,9121
+65077,75769,14666,55027,70082
+65078,3350,23675,67947,4240,2126,10716
+65079,48692,25625
+65080,21505,64517,76014,17527,23904,5192,69560,9002
+65081,49520
+65082,63297,23365,50001,17870
+65083,50352
+65084,9566,56860,78850
+65085,56570
+65086,54460
+65087,31638
+65088,1418
+65089,42515,69778
+65090,521,16888,47726
+65091,23772,54052
+65092,1628,13634,49155,22175
+65093,20907
+65094,74836,44529,53754
+65095,2667,65604
+65096,39312
+65097,81664,48793
+65098,22525,23812
+65099,43721,4149,21898,20233
+65100,44526
+65101,58659,60147
+65102,55845,26859,65841,60918,34568
+65103,63200,61351
+65104,17809,78899,13221
+65105,41213,40301,49605,23810
+65106,6889,64634,58033
+65107,74261,81578,54886,12199
+65108,44207
+65109,27361
+65110,16807,40331
+65111,25616
+65112,12298
+65113,73713,28685
+65114,80150,62867,8973,52996
+65115,7677,79096
+65116,53273,1737,56360
+65117,64420
+65118,65843
+65119,14360
+65120,13280
+65121,69374,6428,69207,57828
+65122,20835
+65123,63949,60237
+65124,12641,48839,49083,48785
+65125,13446,71636
+65126,62544,14252,57357
+65127,6488
+65128,28791,13045
+65129,46439,23006,56763,17754,48866,36699,71396
+65130,65477,994
+65131,65389
+65132,6822,78552,41124,71633
+65133,56652
+65134,76406
+65135,69874
+65136,41751
+65137,58135
+65138,50981,432
+65139,51333,44081
+65140,46308,58225
+65141,57388,72884
+65142,48494
+65143,20389
+65144,10393,37322
+65145,59684
+65146,54892
+65147,27882,35574
+65148,46141
+65149,59496,26149,59169
+65150,6104,13224,64187
+65151,36039,917,21023
+65152,60542,37105,3292
+65153,23825
+65154,63689,60126,65090
+65155,72225
+65156,59584
+65157,30484,1393,63964,58069,72691
+65158,34162,35574,44664
+65159,60443
+65160,19472,25265
+65161,14981,33156,31324
+65162,25978,26963,21788
+65163,25822,14028,18093,32002,29437,33569,16942
+65164,10010,55
+65165,29018
+65166,23725,70385
+65167,14310,9263,17147,77189
+65168,25552,40787
+65169,66905
+65170,36033,77332,55641
+65171,57577
+65172,62343
+65173,76744,36650,44594
+65174,19451
+65175,8509,51985
+65176,34418
+65177,67217,68742,42574,48216
+65178,18427,25259
+65179,17290,56999
+65180,55950
+65181,24840,55550,72313,32943,75532,22656,11231,43240
+65182,14001,25375,48382,1085
+65183,37517
+65184,3244,10071
+65185,50512,2120,80472,44106,63039,9494
+65186,23550
+65187,65292,72805,78716,66385
+65188,46561
+65189,57221
+65190,61059,26453
+65191,39841
+65192,62425
+65193,19479
+65194,73597,13850
+65195,56917,1335,46841
+65196,49509,73352
+65197,70896
+65198,40044
+65199,49367
+65200,16232,40651
+65201,24887,79308,75245,81249
+65202,72585,7252,34106,73781,18693
+65203,46171,21201,57292
+65204,4870,66208,42730
+65205,39996,66753,70912
+65206,15985,2579,35716
+65207,53219,38194
+65208,22828,63521
+65209,12697
+65210,61523
+65211,21249
+65212,73018,59940
+65213,51383,744,79405,588
+65214,61080,60358,41072,38474,69484,18568,48181
+65215,59395,18566,58888
+65216,21945,13916
+65217,20436,19858,70983,56197
+65218,15642,40863,27296,16974,74991
+65219,40519,33678,71261
+65220,38415,17448,45534
+65221,54035
+65222,26366,29603,58238
+65223,76270
+65224,4950,45153,80078,48183,43121
+65225,11964
+65226,78304
+65227,80187
+65228,30312
+65229,19284
+65230,62590,68892,61589
+65231,3526
+65232,7927
+65233,39811,24589
+65234,56424
+65235,68968
+65236,69473,39551,48143
+65237,38266
+65238,7681,1624
+65239,43935,77557,28214
+65240,37719
+65241,37067
+65242,69947,31182
+65243,61958
+65244,53533
+65245,71108
+65246,57911,364
+65247,4396,12398,61832
+65248,21070,6835
+65249,30845,73367,19447,41989
+65250,46173
+65251,40450,78386
+65252,3834,20366,31198,80223,11915
+65253,72890,33497,762,54580,48014
+65254,15544,80617,47544,33979
+65255,55085
+65256,19005,15686,46889,28617,74382,5448
+65257,69790,21065,1310,44310,75853
+65258,11241
+65259,4281
+65260,47778,45189,17058,81443
+65261,45646,77848,19414
+65262,22467,69519,30820
+65263,32673
+65264,11739,6778,29133
+65265,12243
+65266,37315,34771,822,59019
+65267,67750,26627,62804,35228
+65268,7876,22666,70504
+65269,73244,78310,66777
+65270,24889
+65271,15885
+65272,1504,27296
+65273,78449,42281
+65274,13984
+65275,41293,8828,32606,50660
+65276,49161,27318,22139,989
+65277,57987,17255,50092
+65278,39481,70398,72839
+65279,35420
+65280,60619,55490,24917,1681
+65281,21933
+65282,19027
+65283,37900,77174,11805
+65284,68726
+65285,53403,38286,14695
+65286,71440,60438,81428,33901,29570,50047
+65287,53230
+65288,69762,68485,81696
+65289,2177,58404,70667,31590
+65290,62846,38962
+65291,27727,35734,7029
+65292,71535,26709,51185,7337
+65293,21381,45545,3059,16158,78183
+65294,35001,59225
+65295,2644,13523,82098
+65296,9177
+65297,69930,78844,12720,4148
+65298,894,70437,59971,62269
+65299,38648,67604
+65300,46288,41035
+65301,67739
+65302,47610,48761,77875
+65303,33914,76927
+65304,58351,73232
+65305,33027,52878
+65306,80524,47263,65754,46300,35997
+65307,16911,77241
+65308,64683,54935,11331,35063
+65309,15373
+65310,9107,34295,66207
+65311,50770,52101
+65312,45268
+65313,10579,750,44216
+65314,9110,15831
+65315,44074,59948,58863
+65316,16191
+65317,62212,56100,1730
+65318,79468,58988
+65319,22306,43938,14115,42751
+65320,22169
+65321,58899,22294,18071,52105,17560,27168
+65322,4306,68402
+65323,39997,47271,20145
+65324,60040
+65325,59227,54617
+65326,78066,37274,64358
+65327,70942
+65328,11166,48720
+65329,52916,68951
+65330,81367,43844,72263
+65331,36472
+65332,26934,71872
+65333,42453
+65334,48973,81076,4578,2257,44537,60588,78510
+65335,12099,72077
+65336,29862
+65337,59812,45442,23871
+65338,73958
+65339,5328
+65340,31876
+65341,64589,2545,72701
+65342,73317,22948,9554
+65343,48229
+65344,14695,44255,54177
+65345,77604,56579,56440
+65346,43505,3788,6333,34520,55586,3417
+65347,67334
+65348,73906
+65349,23257
+65350,2022,61814,61702,2592,79439
+65351,70056
+65352,42148,79784,37383,58013
+65353,70366,28254
+65354,58292,75738,27494,50044
+65355,44870
+65356,56416,33690,65801
+65357,5475,56887
+65358,80625,51756
+65359,34649,656
+65360,36186,28801
+65361,32748
+65362,5931,75414,81355
+65363,46477,37772,41387,25948,47902,12602,3600
+65364,57813,5356
+65365,2197
+65366,33834
+65367,78788,52611,47960,60080
+65368,31612,75225,72899
+65369,80651,47730,6671
+65370,42715,27183,36865,44250,57354
+65371,36287
+65372,7887,57208,27905
+65373,60585,47141,63978,59167
+65374,52056
+65375,56756,48511
+65376,45957
+65377,50601,56109
+65378,64059
+65379,8411,80173,24056
+65380,1394,32223
+65381,75877,74368,45308
+65382,19420,11936
+65383,5058
+65384,2272,19673,62942
+65385,48769,63732,63856
+65386,43365
+65387,76229
+65388,35293
+65389,42287
+65390,45664,37220,69773,498
+65391,79617
+65392,26151,10951,78929,4265,531
+65393,16777,58836
+65394,59572,10823
+65395,51862
+65396,26497,78102
+65397,7150
+65398,78412,54709
+65399,69001,40753
+65400,47445,13159,39437
+65401,62071
+65402,19990
+65403,51168,12858
+65404,47274,30573,24860,74419
+65405,48356,18795,6366,56432
+65406,39459
+65407,32594
+65408,64789
+65409,37039
+65410,36074
+65411,22201,58302
+65412,29242,40790,19469,10648,18220
+65413,3287,59337,65679,55968,45991,64880
+65414,74665
+65415,12194,41102
+65416,32383
+65417,19688,54274,64699,23692,10106
+65418,53451
+65419,46522,67318
+65420,59038,47644,73501
+65421,64019
+65422,71976,81549
+65423,57432,36578,31508,71574
+65424,24667
+65425,58503
+65426,27952,52401
+65427,1782
+65428,35639,81708
+65429,73243,50495,36535,14190,15942,37129
+65430,71403,17796,56557
+65431,11412,34478,56859
+65432,26983,40753,49590
+65433,13573
+65434,36116,10825,30697,5894
+65435,38105,64837
+65436,62727,45969,62653
+65437,64417
+65438,54138
+65439,80516,31285
+65440,63403,47135
+65441,67497,75171,8358
+65442,51906,41673,27250,38052,9192
+65443,67689,4012
+65444,72928
+65445,8118
+65446,49998,61708,71722
+65447,33165
+65448,67111,18060
+65449,77754
+65450,81380
+65451,59389,7594,20525
+65452,7423,30670
+65453,19154,50359,19168
+65454,55368
+65455,10648,81768,68705,46009
+65456,12056
+65457,80167
+65458,1996
+65459,48170,49429
+65460,51292,1479
+65461,76794,37366
+65462,19937,43007,31548,20279,20221
+65463,80412,37095,59864,48115,67681,69904
+65464,8528
+65465,27030
+65466,5585,57233
+65467,22048,37494,62598
+65468,1001,82045,27105
+65469,74575
+65470,43645,7276
+65471,57289,61870
+65472,35306,22192
+65473,80742
+65474,28811,42378,24333
+65475,23516,62089
+65476,25205,46353
+65477,4331,69574,80090
+65478,9718,37136,31872,27222,16598,67364
+65479,7043,29527,67952,66876
+65480,51003
+65481,32204
+65482,76770,31108
+65483,12303,12907,50181
+65484,39564,42128,25393,68099
+65485,62817
+65486,68585,14823
+65487,46246,78838,80682,63428
+65488,32182
+65489,14539
+65490,11603,58486,49155
+65491,82082,53025,81563
+65492,61228,70234,11831,64774,48346,9443
+65493,48676,17927
+65494,25000,2404,79510,22866,80771
+65495,53643,59766
+65496,81054,62930,73870
+65497,39418,60580
+65498,42188,64983
+65499,42825,30767,60703
+65500,45641,38211,26151
+65501,38755,52552,38932,65486
+65502,46449,57657
+65503,49693
+65504,65992
+65505,55856,11769
+65506,696,4687,16066,20562
+65507,10804,25738,51526,20128
+65508,57957,9956,74790
+65509,22694
+65510,55606,9480,17478,15876
+65511,15610,59609,42906
+65512,35935,22457
+65513,38165,76150,81879,63358
+65514,5803,6323,30042
+65515,14485
+65516,52415,81609,59909,57186,30189
+65517,74855,51115,62460,6339,54961,25332
+65518,17615,56944,13516,70390,40764,13201
+65519,47937,30150,21460,69657
+65520,40936,6033,74234,79173
+65521,47013,46811,64349,65600,49845
+65522,54668
+65523,20384,35301
+65524,24763,24469
+65525,30784
+65526,52169
+65527,48005,10994,68141,71406,2153,17907
+65528,55986
+65529,41150,6501,52079,17180,6713
+65530,51845,65696,49951,54237
+65531,303,29630
+65532,75148,43957,55862,74304,53249
+65533,1073
+65534,43035
+65535,60525,13124,50142,7241
+65536,13894
+65537,57733
+65538,73119,69898,10534
+65539,11248
+65540,19760,6072,58042,70562
+65541,61703,67044,56578,58338,68330
+65542,3809,45015,69854,33427,62784
+65543,12234
+65544,44914,66747
+65545,24393
+65546,24384,52479,65837,43124
+65547,36308
+65548,19459,45423
+65549,42392,81925,76363
+65550,29886,17724,72672
+65551,38623
+65552,24423
+65553,8779
+65554,18316,74266
+65555,24195
+65556,38980
+65557,50968,19191
+65558,77390,42885
+65559,8447,2097
+65560,69074,60313,54659
+65561,17573,1259,14655,48087
+65562,24744,67056
+65563,46372,33628
+65564,75556
+65565,58556,35256,62519
+65566,63507
+65567,18383,56906
+65568,41196,13875,78933,24325
+65569,71138,18937
+65570,69883,40429
+65571,29611
+65572,69504,40328,75977
+65573,5840,76314
+65574,76812,33680,51376
+65575,52850,77996,60409,52915
+65576,65378,36076
+65577,7441
+65578,77206,69157
+65579,67619,79789,38624,34619,48769
+65580,54742,43675,24056
+65581,5379,78185,29615,26169
+65582,68236,77893,53161,6551,65289,29883
+65583,61854,57924,27776
+65584,66383,74576,66583,23500
+65585,55923
+65586,81094,78088
+65587,79427
+65588,74620,49561
+65589,35056,1753
+65590,11273,7788,18578,33159,71055,81001
+65591,76464
+65592,70938
+65593,23444,6987
+65594,72208,12371,70941,34329,44223,41619
+65595,73346,33975
+65596,68442,36188
+65597,43635,74400,45258,61474
+65598,29316,38165
+65599,3673,39682,21240
+65600,40677,3440
+65601,11927
+65602,66657,63724,41066
+65603,31242
+65604,8182,69226,55100,78150
+65605,60677,45535
+65606,42378,45563,10472,46990
+65607,26176
+65608,26543
+65609,36223,65863,48962,51935
+65610,39479
+65611,32371
+65612,80503
+65613,75085,6193
+65614,4681,52061,48327
+65615,34889
+65616,74973
+65617,15171
+65618,3010,34750,9948
+65619,56128,22054,70406,6632,45841,53061
+65620,58801
+65621,21714,49690
+65622,28438,8057
+65623,39162
+65624,50290
+65625,25337,21444,51628
+65626,57451,65998,38656
+65627,2624
+65628,65167,49045,68313,39618
+65629,1282,36962,53829
+65630,29399,62233,52432
+65631,67397
+65632,48884,45985,37478,43479
+65633,6103
+65634,68834,2428,52631
+65635,41641,67025,26674,63385,71254
+65636,7005,40166
+65637,17212,35256,34342,43747
+65638,2575,24635,11628
+65639,36084,79247,78177
+65640,62848,74930,71362
+65641,54436,32159,66548
+65642,37660,17349
+65643,81395,75600
+65644,38042,49643
+65645,31533,39887
+65646,40033
+65647,33966,38878,15948
+65648,64564,39526,79898,8875
+65649,27688,66563
+65650,4293
+65651,55630,32587
+65652,8097
+65653,37930,26540,63222,64309,62798
+65654,55638,54218,41835,18700
+65655,71227,8697,8882
+65656,60198,628
+65657,4316,48674
+65658,29181
+65659,25387,19060
+65660,19363,21332
+65661,56435,51478,12362
+65662,15838
+65663,28714,31968
+65664,47144
+65665,44853,14897
+65666,12056
+65667,2447,5781,77285
+65668,55192,20197,47565
+65669,76384,46285
+65670,53240
+65671,24914,2801,43241
+65672,21202,24028
+65673,18930
+65674,76349,63326,30384,58521
+65675,29448,20725
+65676,57663,67951
+65677,50926,50505,67169,57164
+65678,78406,72059,12214
+65679,34610,42293
+65680,22574
+65681,25928,70896
+65682,13168,32744,4940,41653
+65683,2752,14782,27451
+65684,21476
+65685,77031
+65686,77047,3609,10559,23440,23395,70678,70174
+65687,26319,1792
+65688,13261,81639
+65689,26485,1418
+65690,75537,32875,17900,49475,47459
+65691,58691,50455
+65692,30536,68432,22665,29755,6982
+65693,22603
+65694,49208,11195,49656,50985
+65695,27684,65427
+65696,38318
+65697,27251,46439,9780
+65698,26794,74570,65356
+65699,46545
+65700,31788
+65701,14057,48819,23910,37898
+65702,31308,73788,9758,101
+65703,10991,52817
+65704,33159,61416,77115
+65705,77642,8465
+65706,1274
+65707,36804,42974,77526,44522
+65708,3358,60024,14509
+65709,16120
+65710,19804
+65711,40620
+65712,25853,57898
+65713,45078,48561,31619
+65714,79046,59068,33225,64311,13721
+65715,6001,21320,51731,5057
+65716,30026,70161
+65717,13136
+65718,46645,52192,25427,39662
+65719,59374
+65720,31766,69161
+65721,14563
+65722,32253,71090,63512,38019
+65723,12122,16871,5757
+65724,75676,75826,72039,59983
+65725,81245,2119,53027,74304,73991
+65726,76749,72641,8048
+65727,37282,35474,52639
+65728,3508
+65729,6714,11927,48891,45062,52764,15852
+65730,57852,8214,67264
+65731,47666,17626
+65732,33943,1776,47244,52800,22384,38551
+65733,75289,73422
+65734,9020,68921
+65735,64517
+65736,80983,74037,8697,13252,11089
+65737,15627,23595,23253,77582
+65738,29268,6894,29571
+65739,11447,57273,73434
+65740,58598
+65741,39021
+65742,62865,59807
+65743,80044
+65744,47072,38920
+65745,6806,55100,17335
+65746,45360
+65747,43926
+65748,26489,48304
+65749,76196
+65750,61854,8954
+65751,63104,33218,68132
+65752,20620,54629,33700
+65753,38383,14124,22157
+65754,43949,51003
+65755,48963,37828,66581,38063,60279
+65756,40253,45621,62809,48781
+65757,73640,69140,81592,3477
+65758,16143,12537,81874,2078
+65759,14431,16978,69874,54075
+65760,57968,15567,51304,77102
+65761,75363,70960
+65762,24100,7300
+65763,29864,10100
+65764,7257,5949,78856
+65765,67852,39714
+65766,1367,24914
+65767,73852,17429,27167,73011,33498
+65768,29763
+65769,61004,66630,72894
+65770,13146,35207,35930
+65771,74443,69798
+65772,6450,27097,33102
+65773,54423,7445
+65774,76066,46497,22501,58498,34373
+65775,17233,81202
+65776,47634,82070
+65777,17927,10476
+65778,5911
+65779,76153,21046,49898
+65780,27851,71410,59494,9310,68645,27522,26992,63949,58295
+65781,59318,33945,28844
+65782,69126,64876,41476,26366,46800
+65783,29789,31339
+65784,50435
+65785,42130,60856,44714
+65786,41279
+65787,71696,68273,79452
+65788,49145,45887,65611,4110,1581,55480
+65789,24833,61590,15097
+65790,45136
+65791,38151,80827
+65792,66216
+65793,29385
+65794,49780,64487
+65795,61241,50347,33965,27780,74763,28217,62707
+65796,48476,51704
+65797,10451,65779
+65798,9379,75365
+65799,43222,77709,13918,3780,4122
+65800,48481,24366,17810
+65801,59973,20556
+65802,30477,30959,22557,64875
+65803,74385
+65804,38727,39818
+65805,57134,25018,16555,23184,11972
+65806,12040,9150
+65807,58058
+65808,79213
+65809,26764,47833
+65810,58436,38910
+65811,51664,33045
+65812,53543,16925,78718,53869,21784
+65813,63949,36839,68895,11876,33045
+65814,17676,52451,14551,51825
+65815,31403,59255
+65816,48832,44294,7019,43939
+65817,64900
+65818,25171
+65819,61990,47888,80757
+65820,4926,33506,2605
+65821,57902
+65822,33751
+65823,15930
+65824,42560,17887,19825
+65825,10288,20405,27554,71130,4635,5956
+65826,30413
+65827,1823,54581
+65828,55377,71217
+65829,11128
+65830,3294,17478,77266
+65831,49826,15569
+65832,67136
+65833,17718
+65834,50012,22434
+65835,67335
+65836,29486
+65837,23699,55782,22209,39803,25319
+65838,354,67491
+65839,74958,17342,80233,62677,37825
+65840,1646
+65841,29114
+65842,72050,23627
+65843,39892,73488,76845
+65844,45208,21073,62899,46473
+65845,4859,38363
+65846,45000
+65847,22828,12872,966,31885
+65848,66723
+65849,3899
+65850,67452
+65851,65894
+65852,3181
+65853,115,60884
+65854,62003,81749,10232
+65855,33903,15379,72812,34885
+65856,25013,23834,5614
+65857,26952,71460,46983,64258
+65858,30329,21483,22131
+65859,78792,52128,71705
+65860,2971,42408,54992,16531
+65861,65508,52736,71086
+65862,46619,72784
+65863,52582,21008
+65864,21237,63752,55049
+65865,59643,25829
+65866,67976,31392,52675,43568
+65867,53967
+65868,25900,62127,44290,71847,27930,23081
+65869,38966
+65870,49698
+65871,18959,70815,66090,58523,17215
+65872,47981,80916
+65873,72972
+65874,65822,68377
+65875,64789
+65876,11494
+65877,19367
+65878,65528,27781
+65879,79140
+65880,33297
+65881,28959,70453
+65882,74877,43123,54017
+65883,4495
+65884,47842
+65885,72760,79606,3937
+65886,63930,5498
+65887,25358
+65888,49643,61443,32280,9942,18901
+65889,50316,73025
+65890,76594,23810
+65891,48363,63240
+65892,81513,52195
+65893,79769,28657
+65894,17538
+65895,70632,24598,80256,52587,70809,48290
+65896,73098,77179,16345,69952
+65897,70056,69817,3793
+65898,29000,29355,50209,62704
+65899,16828,13325
+65900,36479
+65901,78000,41829,10390
+65902,2297,18720,57344
+65903,398,60191
+65904,52010,19920
+65905,63229
+65906,38501
+65907,64981
+65908,5583
+65909,28643,12787,33011
+65910,33834
+65911,79277,76557,68962
+65912,38530,10725
+65913,52696,48504,12720,78518
+65914,60142,44112,52970
+65915,37725,40787,53777,43635
+65916,56863,4019
+65917,42862
+65918,58938,43981
+65919,38556,70046
+65920,27662
+65921,7268,78515
+65922,18682,70345
+65923,52076
+65924,45842
+65925,62342,13546,54854,47546
+65926,57122,19472,6174
+65927,71585,72343,35171,65016,37489
+65928,72831,18202
+65929,14948
+65930,20526,67597
+65931,51853,9895,52168,30284,49660,37352
+65932,45033,51940,67850
+65933,38334,68048
+65934,60312
+65935,75467
+65936,46583,53418,80613,61015
+65937,80216,27370
+65938,56517,62970
+65939,71812
+65940,28900
+65941,34816
+65942,58861
+65943,31593
+65944,39188
+65945,51214,12132
+65946,75491,42446,38980,6910
+65947,51316
+65948,57353,2923,15174
+65949,2367
+65950,60378,36074,23658,73504
+65951,78600,28343
+65952,15039,50618,62479,80617,69539,10169,20143
+65953,65037,738,35169
+65954,3344,75933
+65955,34123
+65956,7994,13494
+65957,468,40646,40447,75709,25622
+65958,19834
+65959,79989,32408,1318,10219,44579
+65960,26045
+65961,78000
+65962,70366,34842,76577
+65963,70901
+65964,48229
+65965,51396,69643,17072,21541
+65966,48472,44208,69580
+65967,48361,81978,7737
+65968,14636
+65969,74771,64321
+65970,10354,3367,14304,47757
+65971,29805
+65972,63193
+65973,27004,12965,29538,77567,31334,41288
+65974,28223,45211,10233,72178,34898,76870
+65975,42148
+65976,6564,5002,34589,62048,52641
+65977,20061,12298
+65978,45346,49244
+65979,7124,19750
+65980,76361,62545,75225,23121,57567
+65981,28974,55916
+65982,52006
+65983,65331
+65984,45168,46995,25281
+65985,81974,4337
+65986,9819
+65987,72210,12513,61973
+65988,74569,36285,10354,8399
+65989,77909
+65990,22466,66135,23490,55621,25264,73337
+65991,8494,60666,59549
+65992,49590
+65993,44930
+65994,49161
+65995,34576,12980,71639,60479
+65996,71211,28766
+65997,72264
+65998,22065
+65999,50635,12887,15144,10924
+66000,38138,52317,53183,33620,78969
+66001,81828,6033
+66002,31185,30655
+66003,8388
+66004,41857,71872
+66005,76957,30877
+66006,65012,77826
+66007,46280
+66008,32145,57744
+66009,6362
+66010,36848,53688,64393
+66011,28031,39486
+66012,10916
+66013,34967,76476
+66014,80347,25812,4598,79116,71288,61981
+66015,72215,34446,73875,61924,9709,14223
+66016,34677
+66017,38273,65221
+66018,4943
+66019,47875,43722
+66020,60944,73472,2593,65622,36493
+66021,20805
+66022,11240,52344,62269
+66023,10639,25087,63025
+66024,35951,26605
+66025,35734,65712
+66026,45010
+66027,3431
+66028,16185
+66029,537,28549,73496,12758
+66030,36169
+66031,38718
+66032,70530,15402,32276
+66033,48918,81087,17364
+66034,73112
+66035,9985,2120,52014
+66036,47377,80295,30957,48101
+66037,9069,58807,16720,32148
+66038,28033,57951,71503
+66039,4883,23581,26721
+66040,76825,79528
+66041,72475,40546
+66042,13301,35462
+66043,28282,12456,25099
+66044,14779
+66045,54524,14772,62667,7268
+66046,67945,48387,23320
+66047,26619,9414
+66048,22526,33803
+66049,37993,60224
+66050,70161
+66051,56761,36656,62968,30881
+66052,78960,26864,22264
+66053,4199
+66054,58430
+66055,48411,23451,40187
+66056,67068,55827
+66057,44987,11128,72296
+66058,31191,61396
+66059,25216
+66060,32571,9001,53078
+66061,68908,23499
+66062,71494,28155,56042
+66063,65877,173,60146,65696
+66064,39582
+66065,48847,28788
+66066,57844,12229
+66067,78769,78381,2638,42567,25794
+66068,79585
+66069,23749,12080,30746
+66070,70828
+66071,39773,76682
+66072,17494,41481,45405
+66073,69362,74660,80932,80937,41716
+66074,17597
+66075,1515,36100,73200
+66076,5914,8380
+66077,40887
+66078,32004,48919
+66079,47871
+66080,62872
+66081,49940,68385,53912,28663,50539
+66082,17186
+66083,76202,29937,40760,75053,66918
+66084,65347
+66085,15046,78470,24643
+66086,45686,74552,20506,71985,24225
+66087,63664,39369,31262
+66088,7978,15630,9992
+66089,59352
+66090,4597,29757,27432
+66091,20785
+66092,27485,11028
+66093,9157,25398
+66094,18523,32119,41129
+66095,80922,61378
+66096,29935
+66097,63589,72814,17789
+66098,38299
+66099,44053,6542,52707,33479,68794
+66100,35476,8638
+66101,44003
+66102,64032,60076,69748,2296
+66103,51464,69387
+66104,30603
+66105,65747
+66106,3875
+66107,7014
+66108,26946,80503,34474,63917,43956,35636
+66109,67430,6220,46292,22417
+66110,31749,21022
+66111,25856
+66112,66269
+66113,15059,52246,27738,80756
+66114,61385
+66115,42807,13586,42003,3751
+66116,35438
+66117,22967,14442
+66118,23267,26871
+66119,31734,65088,65469,12169
+66120,61453,14310
+66121,33397
+66122,26880,28204,78054,27280,63931,59850
+66123,18478
+66124,27557,53068,65281
+66125,79699,29088
+66126,7619,4800
+66127,10341,16415
+66128,33786,57319,49383,28928,13619
+66129,68749
+66130,38932,3762
+66131,77998
+66132,14232
+66133,35705,34286
+66134,19418,77663
+66135,40159
+66136,20366,21918,77312,5557
+66137,14480
+66138,49331,68634
+66139,21922
+66140,7888,16916,42044,62797,70280
+66141,28096,59444
+66142,7283,30493
+66143,46755,17493,20464
+66144,78229,64374,3523,28051
+66145,32038
+66146,75079
+66147,60379,44028,42418,68347
+66148,15664
+66149,74311
+66150,4409
+66151,56901,36474
+66152,63684,21150
+66153,27832
+66154,8821,18917,5974,53431,82123,12730
+66155,29489
+66156,52746,20492
+66157,12377,52750,19080
+66158,77035,81625
+66159,60880,79023,67500,10999
+66160,18941,29641
+66161,5822,61133,81155,53069
+66162,4496,70019,34606
+66163,48516,47816
+66164,5024
+66165,63293,79992
+66166,41574
+66167,81963
+66168,19360
+66169,14527,51230,10215
+66170,38643,46289,12296
+66171,81861,31767,3374
+66172,79622,17412,42548,65120
+66173,45862,58680
+66174,57201,35613,58240,6777,8467
+66175,65894
+66176,55612,18677,13553,18297,80688,32383
+66177,27824,54922,54606,77621
+66178,4916,58814,77735,12448
+66179,72407
+66180,79226,68733,67376,74964,64568
+66181,3933,59824
+66182,68937,10804,49192
+66183,20567,26851,64573
+66184,45172
+66185,43290,26780
+66186,7883,68924
+66187,64312
+66188,42658,50897,23953
+66189,57769,67808,206
+66190,63203
+66191,35498,54218,79445,13653
+66192,28047,75620
+66193,71229
+66194,606,62019
+66195,70620,61191,39788,27526,53994
+66196,21601,11410
+66197,20283,17418
+66198,12444,55521
+66199,1256,72868,54547
+66200,18167,56178,34757,26796,62715
+66201,34353,18596,71054
+66202,50226,65923
+66203,38019,5895
+66204,9766,67515,22338
+66205,24635,31143
+66206,32014
+66207,75286,9045,46059,76253
+66208,9820,45897
+66209,61096,57939,3660
+66210,20447,67520
+66211,72133,3833,73255,65488
+66212,63543,19753
+66213,25971,21384,10481
+66214,25051,75026,65228
+66215,27275,60299
+66216,11056
+66217,20529,25551,31812
+66218,6654,37923
+66219,7965,46955,28023,18408,81056
+66220,20324,72133,64994,23264,79863
+66221,13181
+66222,33329,8223,71949
+66223,72691,54682
+66224,24230,49796,10341
+66225,33158,44194
+66226,80625,21271
+66227,49491,30120
+66228,60270,78106,47686,26252
+66229,56365,55048
+66230,67963,74543,11937
+66231,79653
+66232,22990
+66233,58598,40975,75352,43992
+66234,57356
+66235,5487,37181,19987
+66236,57420
+66237,30787,40691,63656,64044,37755,71590
+66238,47258,32952,77180,64510,43919,48836,39549,23015
+66239,2614,30607,80458
+66240,41701
+66241,22890
+66242,64424,20061
+66243,42387
+66244,26133
+66245,27895
+66246,72953,62923,62410
+66247,7093
+66248,7463
+66249,7228,58194,58201
+66250,64020
+66251,59853,49851,17975
+66252,23214,6487,76269,5736
+66253,48851,34353
+66254,57275,5012,31946
+66255,62134,79178
+66256,34784,45801,38334
+66257,57454,54015,16420
+66258,58657,72430,56760,61707
+66259,67294
+66260,8295
+66261,12393,65971,27537,66463,23544,75432
+66262,66912,44023,46524
+66263,34619,55643
+66264,8991,14819,57286
+66265,79145,4723,52307
+66266,53100,72412,31664,5857
+66267,29591
+66268,61527
+66269,76761,24461,30864
+66270,56368
+66271,2919,24720
+66272,42687,67228,62317
+66273,18309
+66274,23106,21550,11796
+66275,21616
+66276,22408
+66277,58107
+66278,70576,8753,43918
+66279,73227,30639,81764
+66280,36292,33357
+66281,71252
+66282,50156
+66283,11610,29703,45324,820,32369,10334,60855
+66284,53300
+66285,34530
+66286,9317,30056,58595,58513,17462
+66287,63177
+66288,59991,56348,43998
+66289,24823,8793
+66290,19401
+66291,2547,77899
+66292,70691,71648
+66293,81513
+66294,5897
+66295,72945,49304
+66296,68937
+66297,11837
+66298,79599,58947,39789
+66299,23254
+66300,8223
+66301,8836,10647
+66302,34652,64218
+66303,70832,3670,64636,80351
+66304,46084,73671
+66305,15033,30713,26483
+66306,68868
+66307,26245,4899
+66308,841
+66309,68421,15922,67925,78149
+66310,53983,33768
+66311,5139
+66312,22355,66972,48217,52910,44437
+66313,72352,41455,51656
+66314,70877,46976,31502,54202
+66315,35247,65226
+66316,49223
+66317,39362
+66318,67445,23069,19049,42737
+66319,79435
+66320,80684
+66321,22700,81052
+66322,7204,80125,10584,5790,66306,37438
+66323,46387,24445,32943
+66324,13970,6977
+66325,5418
+66326,21276,78778,77521,69146,39677,53253
+66327,50090,53012
+66328,57635
+66329,53069,79962
+66330,2747,78064,49670
+66331,52612,12448
+66332,53500
+66333,50205,60091,1401
+66334,80426,74771,22910,21154,73796,38211
+66335,68375,81015,18316,31277
+66336,54181
+66337,35105,17594,1542
+66338,53330,4210
+66339,20194,31088,38736,72887
+66340,26502,24330,46372,43653,47911,59666
+66341,14110,42220
+66342,79050
+66343,64183,1490
+66344,28397,52504,40093,11284,72290
+66345,17245,79598
+66346,59523,65659
+66347,14120,30399,19147,77881
+66348,26779,39227
+66349,59403,42727
+66350,28816
+66351,72764,57784
+66352,51023
+66353,33461,69785
+66354,3921,2359
+66355,20255
+66356,33699,30434,72988
+66357,22058
+66358,71764
+66359,54505,18694,55808,24173,76050
+66360,2187
+66361,65355,11591
+66362,52462
+66363,70500,26745,15774,40713
+66364,70020,63955,70643
+66365,9955,64593
+66366,15387,13872,48161,43608,59849,21729
+66367,19504,34963,66355
+66368,15486,25359,66569
+66369,69948,44170,24228,53816
+66370,15824,9198
+66371,64489,63616,47382,67327,59980
+66372,71352,52469,4446,77238
+66373,2150,33067
+66374,60444,34339
+66375,35969
+66376,55606,52190
+66377,18035,37264,66085,221
+66378,66538,64765
+66379,31792,68439,60870
+66380,80554
+66381,57577,44214
+66382,37244,59861,49855,38685
+66383,65456
+66384,48024,79039,64352
+66385,32957,56208
+66386,67705
+66387,45949,54719
+66388,40287
+66389,67200,45246,72828,75091,53365,77091
+66390,6940
+66391,35536
+66392,11900
+66393,8341
+66394,55762
+66395,38708,65946,26206,56367
+66396,11202,43207,42639
+66397,8207
+66398,25557
+66399,5086
+66400,2642
+66401,55930,44752
+66402,1232,37595,10839
+66403,13911,75698
+66404,6447
+66405,62131,22517,33854
+66406,10682,33854,2743,8576
+66407,720,17360
+66408,71189,68492,20173,14224
+66409,54712,44366,54307
+66410,11675,21271,64102,30426
+66411,7407,40790,20235
+66412,59445,18212,17348,53688,2036
+66413,81696
+66414,52792,33682
+66415,7835
+66416,43949,9127
+66417,1740
+66418,39941,29801
+66419,67906,21045,67501,2476,41631
+66420,79087
+66421,46269
+66422,3629
+66423,66473,20430,46855
+66424,66532,36398,4997
+66425,52026,25714,40079,7280
+66426,73162,25596,4092
+66427,55331,33385,59540,68170
+66428,1480
+66429,79864
+66430,466,70659,52394,25743,52593
+66431,28680
+66432,71278,54790,30134,74569,49859,26429
+66433,5137,11904,73812
+66434,31069
+66435,40139
+66436,19349,54764
+66437,41805,32656
+66438,17520,28492,12877,28526
+66439,51242,21037,78835
+66440,76434
+66441,18474,59581
+66442,29263,77746
+66443,16683
+66444,78640
+66445,57874,53754
+66446,18403,43470
+66447,28580
+66448,61880
+66449,29822
+66450,17186,66200,20564
+66451,3020,11023,31993,15148,73574,69386
+66452,2232
+66453,17349,33774,68193,26477,57023,27413,35796,44003
+66454,57196
+66455,13756
+66456,35237,20228,60225,35552,9249,28415
+66457,10788,67492,5765
+66458,75863,55944,13908
+66459,65356
+66460,47136
+66461,9433
+66462,43185
+66463,28113,4265
+66464,19585,28091
+66465,9772,33871,70886
+66466,39112
+66467,15243,27338
+66468,52143,20564
+66469,23620,930,19680,36493,40365
+66470,12026,37586,56395,8685
+66471,42811,68019,71906,3199
+66472,36544
+66473,47150
+66474,26733,58877
+66475,51454,62382,8236,52676
+66476,80641
+66477,42106
+66478,1915,15270,3225,23589
+66479,62702,70297,56816
+66480,18257
+66481,3088,67170,38061
+66482,61759,44717
+66483,49926,12037,43879,43048
+66484,20987,38241,257
+66485,59665,78121,66821
+66486,71337,35793
+66487,36238,10922,59109,50665,67119,4818
+66488,49588,26205
+66489,9577,39834,3778
+66490,55675
+66491,64670
+66492,71074,384,36238,43779
+66493,28250,33515
+66494,14002,1967,68858,26583
+66495,30955,1733
+66496,65287
+66497,5762,68742
+66498,32925,31516
+66499,16700,15269
+66500,32710,58188,71389,1409
+66501,13931,47374
+66502,71548,31594,73763,21616
+66503,12122,9567,68408,71328
+66504,27773,9478,8259,65352
+66505,65407,15289,44450
+66506,40749,24083,52532,18218,56057
+66507,24513,15023
+66508,72336
+66509,10376,30902,81494
+66510,54756
+66511,61294
+66512,44437,62390,67104,39720
+66513,1927,23347,12153,70789
+66514,56012,3118,35405
+66515,18371,43765
+66516,58438,49390
+66517,55434
+66518,11530,28796
+66519,6911
+66520,61589
+66521,17975,22201
+66522,81380,78130,37291,6368
+66523,13501,54183
+66524,29993,36401
+66525,28964,29286
+66526,61386
+66527,44526
+66528,614,14281,35134
+66529,59322,26353,37897,82136
+66530,27275
+66531,21955,3446,10401,63972
+66532,43720,68663,58873
+66533,10630,37865,34697
+66534,30916
+66535,34755
+66536,74289,65480
+66537,45334,43950
+66538,60261
+66539,47567,80516
+66540,9493
+66541,19170
+66542,14618,79478
+66543,12264
+66544,15152
+66545,12387,37967,33429
+66546,32321
+66547,46713
+66548,67000,13087
+66549,47614,36910,72431,48155
+66550,47152,57602,28787,25197,82131
+66551,78385
+66552,51108,11536,29692,19953
+66553,19955
+66554,18383,31906,6514
+66555,64461
+66556,70620
+66557,516,54704
+66558,36713
+66559,365,13217
+66560,27486,30198,71656,9490,81548
+66561,37039
+66562,40200,23187
+66563,68452
+66564,45166
+66565,3529
+66566,79235
+66567,56943,45993,47923
+66568,1807
+66569,10976
+66570,7918
+66571,62715
+66572,19728
+66573,66138,35536,45483
+66574,42387,72923
+66575,81188,66342,30237
+66576,27356,74364,74273,30466,66368
+66577,32999,7197,79695
+66578,42779
+66579,52025,23647
+66580,12660,47691
+66581,9082
+66582,42630,4471,10634
+66583,40701,24227
+66584,47676
+66585,41487,67712,20996,64730,25127
+66586,73163,17174,73275
+66587,63090,51252,71305
+66588,64816,10005,71766
+66589,80217
+66590,77984
+66591,73645,34353
+66592,28747,26582
+66593,5053
+66594,79897,53392,26262,21610
+66595,17723,3779
+66596,62677,13380,67088
+66597,64689,36038
+66598,24399,39083,21460
+66599,26070,62816,43735,9172,19612
+66600,36051,7486
+66601,3907,45136,48718,16436,15873
+66602,78318,23161,54838
+66603,4095,68096
+66604,54161,67005
+66605,22999,70832
+66606,31593,79333
+66607,26995
+66608,20181,60829
+66609,24357
+66610,53198
+66611,11108
+66612,27337,22660,15046,8209
+66613,67678
+66614,71616,36252,29979
+66615,78953,17881
+66616,5855,76240
+66617,68141,24955,52434,6330
+66618,4229
+66619,71300
+66620,22793,13259
+66621,31834
+66622,40068
+66623,35269,61221,65843,46206
+66624,44266
+66625,1675,8432
+66626,37863,27518,23398,753
+66627,9529,63308,64550
+66628,32578,18080
+66629,32046,20438
+66630,17255
+66631,31958,40514,81159,72074,34302
+66632,989,8963,75996
+66633,33988,75754
+66634,11921
+66635,6942,36479
+66636,47501,32543,67414,22818
+66637,35863,26776,46234,33189,61654
+66638,59017,32505,29207
+66639,60215
+66640,31687,13311
+66641,47843
+66642,8295
+66643,25546,41941,355
+66644,33559,49478
+66645,42025
+66646,66160,77501
+66647,22523,63711
+66648,40240,8254,48149,5180
+66649,40767,78385
+66650,42106
+66651,12236,79132,39110,15248,36415
+66652,31856
+66653,77257
+66654,7030,26574,13340,22424
+66655,53081,28819
+66656,69063,53367,81428,38550
+66657,10813
+66658,27770,79912
+66659,1458
+66660,40739
+66661,43783,20087
+66662,13930,30520
+66663,45742
+66664,57417,68581,82088
+66665,70841
+66666,22575
+66667,72343,32913
+66668,65935,67202,12706
+66669,33268,35408
+66670,63584,47990,26239
+66671,71209,11130,81135,80617,55490,46622
+66672,27988,65606
+66673,41878
+66674,35716,5056,66758
+66675,34564,31046,16082
+66676,25800,3029,81846
+66677,38666,12337,11148
+66678,23698
+66679,70836,25464,76630,71814,53647,46896
+66680,41018,6880,1017
+66681,10718
+66682,12828,21078,14779,61140
+66683,81189
+66684,80389,2005
+66685,77074,22577,19439
+66686,15744
+66687,21223,46530
+66688,62448,6810,44289
+66689,2150,81446,64724,31920,70520
+66690,70382,42117,41758
+66691,54287,2874,79630,13127
+66692,55871,3666,48012,51293
+66693,43387,69398
+66694,78838,31121,46547
+66695,19583,27254,59784
+66696,5888,66044,9182
+66697,5531,9728,44888,62280,15233,62288
+66698,18557,23249
+66699,25259
+66700,63597,32261,19645,46642,77128
+66701,6250,39302,66537,19932,30252
+66702,13903,56565,60533
+66703,24389,63143,29250,39483
+66704,13042
+66705,26674,77510
+66706,31165
+66707,27131,22139
+66708,50517
+66709,72457,26588
+66710,60993,15278
+66711,48244,29141,52083,53367
+66712,26179,78537,53449,52611,61022
+66713,11756,24601
+66714,64305,6849
+66715,44894,964,76425
+66716,59991
+66717,37687,35945,2890,79592,60298
+66718,5367,59581
+66719,35908
+66720,13680,10495,36004
+66721,22017,36844,38536,32860,20131,46402,24059
+66722,70385
+66723,48408,71715,27434,47670
+66724,51230
+66725,65207,62510,28774,21844
+66726,71301,71660,9471,76836
+66727,36192,31602,76910
+66728,13489
+66729,51115
+66730,1243,8634,61408,54611
+66731,25633,71029,65406
+66732,36256
+66733,17710,46448,24679
+66734,53297,78267,10782
+66735,1896,3635
+66736,49605
+66737,68043,59414
+66738,5414,42956,6195
+66739,18701,49955,74077
+66740,10671
+66741,20996
+66742,4445,49001,4280,36463
+66743,33500,47775,19854,30472
+66744,21482
+66745,7134
+66746,80922,71570,46390
+66747,56007
+66748,15426,63294,52688
+66749,13650,5279,29935
+66750,58010,58772,45003
+66751,28519,36092
+66752,58676,5064
+66753,9526
+66754,30759,20791
+66755,1422
+66756,13388,13680
+66757,50822,4333,68120,73081
+66758,23274
+66759,19462,19336
+66760,22236,15031,5573
+66761,8309
+66762,43315,51539,36579
+66763,35938,63537
+66764,60378,36610,47554,22569
+66765,28878,448,79427,36449
+66766,38643
+66767,44509,31507,61941
+66768,73957,59698
+66769,65540,43119,81180
+66770,62681
+66771,70936,25475,58523
+66772,73383,33735
+66773,37061,43859,31171,16617,35257
+66774,24714,51854
+66775,49539
+66776,26723,39481
+66777,43208
+66778,3246,69074
+66779,42665,79241,55598,44777,29258,77075,7326
+66780,76691,39883
+66781,48912,78651,39446,27839,45496
+66782,39980,26104
+66783,78377,498
+66784,41289
+66785,62298
+66786,57429,8215
+66787,47733,67291,28205,79418
+66788,24262
+66789,81781,41279,10879,33796,78197
+66790,22667,19030,51672
+66791,69934,64564
+66792,44462,35433,74564,43930
+66793,14469,14601,3379
+66794,3085,73084,78394,36214,80896,46198,34386
+66795,25689,66205
+66796,1187
+66797,11940
+66798,711
+66799,33444,77006,40376,21949
+66800,70874,20509,78644
+66801,21049,15447,62485
+66802,65647,28723,73770
+66803,50470,46963,58448
+66804,15074,7591
+66805,59177,68761,45867
+66806,5817,21085,31887
+66807,74713,5108
+66808,77886,40096,63293,33602
+66809,3197,43393,1852,35522,50464,72887
+66810,76660,34372,25145
+66811,57388,74609,51028
+66812,26347
+66813,8697,49592
+66814,12543
+66815,55492
+66816,7016,6646,28518
+66817,79405,10699,75388,60692,56885,59045,11816
+66818,16291,55859,16811,17989
+66819,17348
+66820,2659,23944,63730,46896
+66821,3651
+66822,25206,23465
+66823,60573,12372,19127
+66824,37067,5812
+66825,14758
+66826,53119
+66827,12177,70097
+66828,11366
+66829,31268,47972,36561,79848,3231
+66830,68516,64610,27275,55124,38279,12389
+66831,22812,64067
+66832,52271,47713
+66833,5634,35537,23554,14058
+66834,46090
+66835,47973
+66836,1181
+66837,59493,78942,75522,59807,63354,34031,10568
+66838,26385,26650,65895
+66839,31477,43854
+66840,37628,46322,46059
+66841,24337
+66842,34693,77547
+66843,6215
+66844,30543
+66845,6352
+66846,48328,43363,73496,48157
+66847,25015,22686
+66848,36896,35748,69231,21317,46400,69926
+66849,62570,66744,17758
+66850,76640
+66851,55782,45729
+66852,5095,51408
+66853,74491,42239,67116,23476,35273
+66854,63260,77002
+66855,22838
+66856,60812,58767
+66857,9918
+66858,54091
+66859,52076
+66860,27081,74473,45195,70021
+66861,72359,54975
+66862,25259
+66863,55450,54315
+66864,42263,53705,26586,77821,9497,21631,47876
+66865,55190,37012
+66866,10731,21017,63187,77980,81128
+66867,41268,54458
+66868,32593,22845,11495
+66869,29895
+66870,47271,59980,14556
+66871,58846,75972
+66872,64656,31708
+66873,80379,66582,73061
+66874,72173,18607,54081
+66875,11876,14812,31217
+66876,21152,26734,25107
+66877,28880,29364,70403,67224
+66878,71525
+66879,44311
+66880,69804,25107
+66881,43582,33297
+66882,18658,74765,59005,12620,77869
+66883,63153,60578,47053,555
+66884,6876,23255
+66885,8583,27912,52445,56872
+66886,39666,23553,30581,33204,16913
+66887,81970,34695
+66888,30081,76525
+66889,38187,51278
+66890,39948,29757
+66891,52698,33713
+66892,72179
+66893,79769,16601,52863,49398
+66894,52145
+66895,67645
+66896,80935,30619,33065,22809
+66897,73544,72242,64471
+66898,24399,30774,11281,42962
+66899,29177
+66900,32371
+66901,70594,11561,48199,25309,25620,5185
+66902,19767
+66903,43448,46086,46793,11142,27563
+66904,55878,70763,37235
+66905,13028
+66906,6660,44603
+66907,48635,47075,36656,66404,2862,5600
+66908,25349,14013
+66909,28599,74884
+66910,38792,75479,70979,20591
+66911,9952,9031,55935
+66912,53792
+66913,8936
+66914,29328,60670,76081,72789,47286,19446
+66915,24713,34150
+66916,27308
+66917,27004,70183,55285
+66918,23817,52661,55026,41603,28095
+66919,38135,42567,34382,69174
+66920,36833,36333,25188
+66921,16728
+66922,34551,74319,58919,38390
+66923,72734
+66924,18413,59889,62688
+66925,78507,72369,29285,17875
+66926,66019,519,68845
+66927,78462
+66928,12407
+66929,7827,1686
+66930,11936,43935
+66931,73204
+66932,66317,17698
+66933,53090,70667
+66934,23414,27886
+66935,24713
+66936,47530
+66937,50382,23515,20933
+66938,27034,42532,10909
+66939,67238,43080
+66940,51644,20049
+66941,18907,37254
+66942,16794,75619,72332,62326
+66943,37742
+66944,59395
+66945,22781,51626,52907,50185,66763
+66946,15968,80688,1004,36017,9151
+66947,75090,206
+66948,68530,36122,64162,585
+66949,46701,41966,60556
+66950,23258
+66951,19419,50724,2356
+66952,59924,19837
+66953,57048,76853
+66954,58639,59092
+66955,67336,31360,74161
+66956,16133,33203,66681
+66957,28698
+66958,10337,57551,7763,38303
+66959,51686
+66960,61194
+66961,47310,15552,41621
+66962,51717
+66963,55712,4884,68582
+66964,69090,81836,74775,8264
+66965,72879,9614
+66966,25209,31876,24957
+66967,39260,76270,6209,29462
+66968,24656,18977,76257,69157
+66969,41879,78769
+66970,2642
+66971,54766,16433,79056,80264,8791
+66972,32371
+66973,76153
+66974,75070,43338,55669,12376
+66975,3742,25997
+66976,76887,29443,55040
+66977,4101,14040,48369
+66978,22709,5787
+66979,41891,74603
+66980,51052,36732
+66981,30171
+66982,3143,40916,49236
+66983,53880,47300,41157
+66984,18340,68055
+66985,58236,55569,57991
+66986,72770,22042,17655
+66987,36822,71419,40193
+66988,41359,80374
+66989,50191,32423,15962
+66990,12660,4707
+66991,39766
+66992,57647,82027
+66993,47544
+66994,77360,39731
+66995,1835,78075,10325,16778
+66996,13007
+66997,1575,12053,76199,52475
+66998,38180,4786,72435,16062,68794
+66999,40147,16499
+67000,14097,9642,74797
+67001,77342
+67002,13498,44511
+67003,16282,78629,22746
+67004,26860,54332
+67005,14779
+67006,21910,54584,68381
+67007,32890
+67008,37643
+67009,6378,56668,2048
+67010,55339,6391,69388
+67011,63163
+67012,396,38294,2043,64562
+67013,65058,10819
+67014,8834,58388
+67015,32780,44960,2093
+67016,29822
+67017,73132,61012
+67018,31041
+67019,58154,58476,71390
+67020,33491
+67021,74155,34255
+67022,68171
+67023,48847
+67024,35669
+67025,14628,17061,71854,28380
+67026,40599,16047,78130,38739,20477
+67027,21543,44985
+67028,5578,29601,2092
+67029,36212,38965
+67030,21116,40400,71031,55528,33733,26214
+67031,49304,33745,19644,39268,25220,65773,39307
+67032,8779
+67033,12957,11399,80170
+67034,73191,74939,25698
+67035,20870,39271,80477,51167
+67036,50757
+67037,2294,11091,58478,34430,52650
+67038,32323
+67039,15655,81000
+67040,35180,64894,17092,40591,37726,78991
+67041,4694,57480,9405,17814
+67042,74091
+67043,72960,81753,41726
+67044,36953,46799,5009,62598
+67045,42039,77231,60741
+67046,23027,31043,42385
+67047,793,34194
+67048,76329,17153,16516,61450
+67049,44476,21011,69854
+67050,65821,58061,52138
+67051,25830,19717
+67052,53273,10301
+67053,5844,802,81988,44522,34302,23727,25252,3133
+67054,40024
+67055,62255,20958,28258
+67056,58993
+67057,65731,41048,40339,4825
+67058,58782,60478
+67059,53282,23323,53753,60429
+67060,37315
+67061,76765,23580,54334
+67062,28298,12235
+67063,44666,73360
+67064,26347
+67065,45318,26488,27355,47152,33334
+67066,39391
+67067,26286,2927
+67068,44609,46850
+67069,20427,39352,31845
+67070,80124
+67071,78106,22361,32798,48301,53631
+67072,63095,3589
+67073,81480
+67074,67882,64140,51049,36614
+67075,10476,42068,81187,21322
+67076,67117
+67077,26288,64876,74083
+67078,3668,69856,12569,76439
+67079,78033,74500,72342,56994
+67080,62104,69299,23664
+67081,78094
+67082,45442,77268,76788
+67083,62938,13699,34569,26430,62881,7197
+67084,4231,48385
+67085,72568,16355
+67086,10591
+67087,42095
+67088,63308
+67089,75444,37639,10536,38247
+67090,7084,74857,40886,32712,9360
+67091,55354
+67092,69035,6935,70056,67674,13693,12001
+67093,33903,3742
+67094,19541,25091
+67095,51121,39669
+67096,10319
+67097,68159,43393,12989
+67098,38014,27450,74432,54411,37351
+67099,55989,67288,55129,51794,12309,53680
+67100,77266,47341
+67101,48507,16458,64101,39325,81151
+67102,53383
+67103,7741
+67104,14120,669,22465,6188
+67105,81076,56175
+67106,16000,76686,64219,25239
+67107,65125,69905,7340,33693
+67108,10574,16617
+67109,61538
+67110,14402
+67111,28619,4660,48898
+67112,65045,3605,52261,38388
+67113,10168,60009
+67114,32819,12920,5447,50944,15522,44529
+67115,22450
+67116,32227
+67117,76968
+67118,56972
+67119,40905
+67120,13519
+67121,2649,61743
+67122,28586
+67123,43966
+67124,53213,54364,60465
+67125,54329
+67126,47020,11480
+67127,3233,22698
+67128,45795,11652
+67129,59087,9111,66892
+67130,34763,78245
+67131,47228,75292
+67132,56963
+67133,29416
+67134,38211,25394
+67135,19820,43266
+67136,72395
+67137,36475,47887,26943
+67138,81334,62497,54938
+67139,29216,79382,21553,32884,77275
+67140,37819,66247,12605,76132
+67141,49789,66223
+67142,18931,57724,61393
+67143,44937
+67144,62554
+67145,62230,29855,64145,74764
+67146,5650
+67147,8430
+67148,28029,80800,26298
+67149,62293
+67150,19535
+67151,21458,21001
+67152,29281
+67153,525,41606,63713
+67154,65564
+67155,28324,60156
+67156,54519
+67157,45574
+67158,29927,44726
+67159,7217
+67160,21301
+67161,30119,45868,33288
+67162,75233
+67163,48997,51701,21245,1231
+67164,36662,41763,68049,61937,50807,44493
+67165,26026
+67166,65570,16401,74126
+67167,50400,6286,23859
+67168,70845,50675,52838,36169,78125
+67169,75013,20608,72541
+67170,34425,71546,94,41133,27831
+67171,3274
+67172,5859
+67173,3545,9179,34400,13780
+67174,12137
+67175,68556
+67176,35426,70093
+67177,12987
+67178,79785
+67179,28472,3439
+67180,2673,27357
+67181,61241,76317,20421
+67182,13778
+67183,64541
+67184,37406,40520,22871,65392,78046
+67185,35735,76780,31578
+67186,9422,21066,60,33549
+67187,40715
+67188,30938
+67189,5049,49893,50410
+67190,13297,42663
+67191,6683
+67192,43064,17809,43055
+67193,33886,3538,16543,36334
+67194,19789,6932,11058,5720
+67195,25711,43601,12989
+67196,32788
+67197,33279
+67198,59067,24575,26646,70586,25218,12381
+67199,28148,40,228
+67200,39344
+67201,45846,26543
+67202,54103
+67203,34410,22275,14836,12048
+67204,49570,10544
+67205,73782,46870
+67206,3443,4097,10225,79421,14826
+67207,57294,65173,21219,22214,15030
+67208,81034
+67209,59761,47677,21205,49330
+67210,71500,6090,60302,58226,37394
+67211,81796,65037,79222
+67212,11768,79616,41778
+67213,23102,77103
+67214,41246,49435
+67215,32392
+67216,27123,57075,11242,13692,75312
+67217,56279,51676,11561
+67218,79469,28212
+67219,74947,21437,27205,79655,32379
+67220,10234,59418
+67221,75758,21880
+67222,3415,5099,29448,33142
+67223,6103
+67224,28344,34415
+67225,23820,60243,43384,79617
+67226,12925,19342,74262,10331,72135,72578
+67227,2427,5685,52128
+67228,61505
+67229,28927,5228,19733,11423,79513
+67230,4417,14706
+67231,56252
+67232,43507,73419,7392,38813
+67233,51412,53420,78015
+67234,55777
+67235,43252,57400
+67236,28366
+67237,70598
+67238,60372,47908
+67239,22582,14952
+67240,47754,39789
+67241,32887,58049
+67242,9540,48604
+67243,17341,76100
+67244,77052,65071,76560,23336,51425
+67245,40892,63708
+67246,53192,58862
+67247,41234
+67248,59998
+67249,34222,68796,21954
+67250,14200
+67251,18810,67728,8903
+67252,76153,77361,73574
+67253,29495
+67254,4685,68937,44007
+67255,43230
+67256,24455
+67257,20281,57786,50329,49922
+67258,10399,53833,30388
+67259,36151,45664
+67260,59216,14107
+67261,75827
+67262,42464,52762,20283,56321
+67263,50580,51827
+67264,39874
+67265,9822
+67266,68593,61891,81537,54286
+67267,35203,57940,60638,23813
+67268,65664
+67269,23764
+67270,55308,27295
+67271,4242
+67272,53065
+67273,15474,50241,72109
+67274,37959,9536,56364
+67275,19809,10339,17394
+67276,50034,23802
+67277,2598,48504,30586
+67278,23572,1053
+67279,29770,20120,38485
+67280,27061,10032,61079,13498
+67281,19655,19517,10092,57093,37065,54962,16642
+67282,9886,4363
+67283,73098
+67284,17278,71570
+67285,280
+67286,45334,47268,50842
+67287,77847
+67288,38554,50270
+67289,44708,11288,9384
+67290,2450,8692
+67291,60812
+67292,50709,11176
+67293,4756,58315
+67294,36744
+67295,10979
+67296,10788
+67297,10495
+67298,12986,78212
+67299,23250,76787
+67300,32618
+67301,47331,22283
+67302,26733,68794,9411,58617,26748
+67303,2657
+67304,24736,41880,50492
+67305,60969
+67306,61927,49943,73959
+67307,77536,30064
+67308,57857,73121,10031,30128,40892
+67309,79468,19791
+67310,62298,78442,48300
+67311,908,18367
+67312,50154,2718
+67313,13680
+67314,14306,3225,14489,12122
+67315,4901,33203
+67316,64649
+67317,34222,47269,5816,32965,15726
+67318,68840
+67319,80553
+67320,2459,77437,79705,45406,9284,25539
+67321,61608,1347
+67322,74560,37820
+67323,40710,31619,15211
+67324,58451,46463,34201,23264
+67325,28928,47773,80614
+67326,75383,33364,66500,74978
+67327,18878,56712
+67328,62126
+67329,36103
+67330,24884,25416,18678
+67331,26197,25511
+67332,56689
+67333,32444,81006,250,24091
+67334,32618
+67335,52965,77883,27948
+67336,61895,64318
+67337,52005
+67338,7594
+67339,4102,68714
+67340,50893,30979,76281
+67341,70013,26987,61129
+67342,25928
+67343,25878
+67344,78079
+67345,81007,32247
+67346,70772
+67347,43999,26630
+67348,48630
+67349,65403,67792,46483,69306
+67350,7046,56504
+67351,32326,38208,67481
+67352,43500
+67353,32156
+67354,40032,24560,37781
+67355,24987,34853
+67356,1055,79039
+67357,29633,6108,58183
+67358,73748
+67359,59443
+67360,24426,63401,17355,69965,79544
+67361,18387,42972,45479
+67362,22668
+67363,15285,4007,21644
+67364,14215,32004,53715
+67365,74439,7859
+67366,80598
+67367,1104,26671,1849,3636,61786
+67368,71459,8787,66728
+67369,14316,60165
+67370,69686,70935
+67371,51003
+67372,44800,4806
+67373,22619,18129
+67374,31460,26754,21874,5425,51376
+67375,51938,450,9224,51091,50168
+67376,31495
+67377,6048,65120
+67378,71488,60500,59282
+67379,7342
+67380,46464
+67381,44223
+67382,69073,46238
+67383,58841,41609,69739
+67384,68142
+67385,56867
+67386,81892,34697,22944
+67387,11931,61347,56312,11359,20524
+67388,35757
+67389,32992,42806
+67390,16408,76896
+67391,27509,46786,46531,43479,19639,10177
+67392,59214,25303,6069
+67393,75337,74833,80328,54314,55345
+67394,25833,5041
+67395,64281,44914
+67396,46445
+67397,40763
+67398,55471
+67399,5837,43447,79726
+67400,37814,38398
+67401,74992,44269
+67402,43008
+67403,47761,77268,8116,53134
+67404,13497
+67405,67965
+67406,74191
+67407,31798
+67408,35957,7198,28211
+67409,33328,76806
+67410,878,59587,28344
+67411,6159,43426,53386,77926,56332
+67412,41898
+67413,1583
+67414,17471
+67415,20424
+67416,35740,76246,38081
+67417,38555,20061
+67418,40874
+67419,62878,25105,20689
+67420,5980
+67421,68272,54405,58218,56415
+67422,6859,19582,28466,39152,32014
+67423,69012
+67424,56589
+67425,44606,73595,56545,72380
+67426,80357,43987,71872
+67427,13923,10952,48202,11556,40199,13674
+67428,65552
+67429,33139,50318
+67430,461,53675
+67431,57170,60902,18979,80862
+67432,20842
+67433,32014,68162
+67434,58667
+67435,68430,56184
+67436,3324,31202,81208,10489
+67437,80032,24833,21495,57997,61610,50204
+67438,36373,13668,74536,40490,81862,35863
+67439,71741,4738,51009
+67440,47366
+67441,14468,79140
+67442,6181,38144
+67443,36967,20318
+67444,76366
+67445,50483,62369,24113
+67446,48781
+67447,14987,66769,21201
+67448,6684,12395,25254,31162,44528
+67449,19452,39215
+67450,61711,1124
+67451,67853,24287
+67452,46726
+67453,22065,13667,65251,30982
+67454,76569,8295
+67455,69212,16967,63060,35827
+67456,16791,72560,6048,7973
+67457,39362,57531
+67458,26818,75244,25199,34632,10505,32548,33914
+67459,55762,47991,81497,58113,39938
+67460,13928
+67461,48051,29103,59047,4208,11067
+67462,27057
+67463,65741,78629,35839,12266,62967,77825
+67464,46387,60721,65118,14729,54768
+67465,19265
+67466,32536
+67467,1745,38790,69741
+67468,38084,70422
+67469,56005
+67470,3625,39814,15846,43616
+67471,56463,17175,8314
+67472,9803,9149,64281
+67473,70158
+67474,62193,33583,68527,62785
+67475,43642,60338
+67476,14402
+67477,38003
+67478,74298
+67479,2156,62341,81267
+67480,60685
+67481,39307
+67482,64045,7176
+67483,58499
+67484,50135
+67485,54931
+67486,13618
+67487,23882,33876,66371,7597,10404
+67488,11378,26832,14301
+67489,17376,37235
+67490,14442,24109
+67491,20913
+67492,11611,51600
+67493,79647,71238,6835
+67494,50491,22456,3326,58577,885,31098,23435,49986
+67495,34321,61482
+67496,66812
+67497,27861,69236,51694
+67498,13278
+67499,60544,39176
+67500,79462
+67501,32665
+67502,54708,46284,13690,62654,73508,71044
+67503,11076,72293,39957,59296
+67504,53064,48651
+67505,16929,38945
+67506,67971,46626,60847
+67507,46565,20072
+67508,65210
+67509,56662,34546
+67510,29788,20789,19488
+67511,49074,69057
+67512,57458,4492
+67513,80285,15458,5212
+67514,27314,62354,74889,78785,70018,51808
+67515,43612,15426,57144
+67516,1669,74284,52928
+67517,14278
+67518,4184
+67519,62537
+67520,28985,45986,42670,67371
+67521,64313,48359
+67522,36145,46679
+67523,7455,56985
+67524,44095,47565,80210,21852
+67525,44436,16293
+67526,35467,24324
+67527,31789,80961,32898,49632,18933
+67528,3015
+67529,27333,40265,72822
+67530,73748,76117,22282
+67531,57680,4237
+67532,75433
+67533,4547,57095,28330,10808
+67534,61222
+67535,15441,10976,52629,21613,20425
+67536,23486,55863
+67537,42515,18070
+67538,40928,71221
+67539,79143,64900,34163
+67540,29330
+67541,33388,48137,49401
+67542,65929,56447,34982,57670
+67543,63515,35216,29948
+67544,14310
+67545,28435,16608,51431,12948
+67546,70261,8140
+67547,1405,45721,56663
+67548,68427
+67549,64409
+67550,57212,69465
+67551,61060,28874
+67552,15609,58446
+67553,15562,45206
+67554,68499,50055,68763,44124
+67555,50465,15985
+67556,23733
+67557,68988,32421
+67558,22423
+67559,79093,53670,79824,6137
+67560,66392,74287,23229,22432
+67561,21392,43425
+67562,64530,44572,25356
+67563,10129,36739
+67564,30759,47927,24899,62411
+67565,17014
+67566,44958,4322
+67567,24619,57027,79457
+67568,74729,17951,74620
+67569,28136,69814,39823
+67570,29740
+67571,70100,69912,1942
+67572,51539,67874,8010
+67573,65577,53879,1403,37473
+67574,61037
+67575,74308
+67576,68851,14312
+67577,50268,77420,56283
+67578,63430,60723
+67579,72032,39808
+67580,35136,81243,65945,24878
+67581,66931,7526,39045,53330
+67582,39233,22612,12430,61439
+67583,50017
+67584,27530
+67585,66164
+67586,20610,64095
+67587,33322,60206,12803
+67588,53397,73096,27862,68830,58178,36141,19904,38920
+67589,26200
+67590,55963
+67591,20302
+67592,29720
+67593,71760
+67594,80331
+67595,39103
+67596,75011,11385,35874
+67597,42616,2754,78012
+67598,16960,2571
+67599,28387,41790
+67600,12736
+67601,81334,13323,42541
+67602,62978,68450,33123,11689,80066,53064
+67603,4030,22587
+67604,31894
+67605,52472,36142,20862
+67606,63033,43842,37569
+67607,28397,66166
+67608,16877
+67609,80489,52706,81332
+67610,77327,36340,36242,14369
+67611,18368
+67612,73361,75197,27203
+67613,65186,47599,60930,11218
+67614,21627
+67615,49431,365
+67616,72060,3100
+67617,7968
+67618,35304,53378
+67619,60170,27653,9570
+67620,45949,61904,51324,38403
+67621,12585,42115
+67622,48213,78564
+67623,62453,8858,43350
+67624,58683,60826,53374
+67625,42317,33086
+67626,70518
+67627,77281,573,34693
+67628,77004
+67629,17645,5821,74430,64145
+67630,76749,76072
+67631,67836,74866,14318,39138
+67632,70676
+67633,57533
+67634,74366,34192,9707,28532
+67635,59258,41433,6165,1426
+67636,28096,16186,29663
+67637,4797
+67638,73385,21553,2450,51542
+67639,43194,17591
+67640,8779
+67641,19726,25645,18161,79232
+67642,21104,23684,30952,5292,1316
+67643,58971,3540,4988
+67644,39584,25672
+67645,55368
+67646,67706,29806,36734
+67647,73688,78914,63635
+67648,25273,25728
+67649,62273,72902
+67650,76278,80866,60523
+67651,70611
+67652,6535,81459
+67653,80044,51628,64832
+67654,65929,5547,59735
+67655,53498
+67656,61469,30720
+67657,79312,61950,3808
+67658,56040
+67659,69528,5692,65469,43538
+67660,42194,47581,64614
+67661,45479,29313,58754
+67662,26291,38748,35286,65597,61905
+67663,26980
+67664,30245,60009
+67665,63128
+67666,63364,22118,67533,66828
+67667,70656,75890,6053
+67668,61677,61351,76206,37785,56505,65133,53297,28718,48041,72170
+67669,32453,4274,81611
+67670,74390,39944,41558,81544
+67671,66521,10187,30174
+67672,78826,64377,14823
+67673,4275,30448,50734,53080
+67674,47005
+67675,3514,4540,19955
+67676,34889
+67677,49159,18187,6078
+67678,23859
+67679,81942,46523
+67680,18969,4006,24739,24893,62619
+67681,64388
+67682,21985
+67683,17317
+67684,10100,72369
+67685,64102,24451
+67686,73361
+67687,62366,36002,22020
+67688,54736,40649
+67689,62293
+67690,28255,27019,46020,6278
+67691,78912,63212
+67692,14611
+67693,36098,58518,72462
+67694,68771,11360
+67695,35124,9244,7090
+67696,16299
+67697,64140,1903
+67698,33322,37849
+67699,55471,22876,33349
+67700,77963
+67701,19715,50367,52279,23512,16007
+67702,17063
+67703,62798
+67704,77831
+67705,75544
+67706,42580,6210
+67707,71326,70426,62026,35531,68038,20694
+67708,80525,31765,42402,75967
+67709,32133
+67710,37003,59450,67969
+67711,12298
+67712,30368
+67713,50211
+67714,42796,34990,74064
+67715,66479,16459,4642
+67716,27362,9241,8042,11829
+67717,26173
+67718,19871
+67719,38008,26540,66718
+67720,37626
+67721,65108,27379,19420
+67722,5447
+67723,61129,11688
+67724,51296,31718,32632,79707,78456,61886
+67725,31046,759,71583,76229,19606,43009
+67726,47728,31915,65190,55047,31121
+67727,20929
+67728,62130,28259
+67729,29426,51784
+67730,80420,15712
+67731,48155,31372
+67732,16343
+67733,62865
+67734,9940
+67735,3552
+67736,58304,39515
+67737,22817
+67738,62597
+67739,43904
+67740,77198
+67741,81710,55100,43929
+67742,2852,34670,5337
+67743,9204
+67744,66558
+67745,79109,23295
+67746,41242,57343,54274
+67747,55599,47189,77057,75629
+67748,51594
+67749,29548,7775,15874
+67750,50845
+67751,56191,60302,20983
+67752,59214,13919,60344,9136,82132,75134
+67753,71588,71605,47356
+67754,53101,58653,60247,12550,5291
+67755,9751
+67756,24660
+67757,70765,2244
+67758,68263,14229,66276
+67759,47904,24971,36500,34531
+67760,60879,29296,75605
+67761,32381,35272,23244
+67762,54988,13511
+67763,66978,20356
+67764,27217,15357,55908,52239,47056
+67765,30638,33333,35478
+67766,44415,14090,60283
+67767,24737
+67768,22939,70832
+67769,35503,81154
+67770,38707,62737,77022,39417
+67771,30201,72197,58920
+67772,39053
+67773,24736
+67774,30464
+67775,55745,41148,32455,6261,5410
+67776,46890,53234,6656,21906
+67777,15197,24883
+67778,52170
+67779,48927
+67780,45706,42404,1553,63724
+67781,3605,43054
+67782,11791,60141
+67783,32773,67526,33224
+67784,72606
+67785,3826
+67786,23066
+67787,53532,80561
+67788,10647
+67789,2704
+67790,74008,42906,22657
+67791,23698
+67792,32584,48841,75117,335,78081,38279
+67793,75540,35427,26255,50643,14485
+67794,46572,64210,23242,26009
+67795,34785
+67796,50248,4824,16137
+67797,25978
+67798,43795
+67799,62225
+67800,16337,38747,28967
+67801,6760,33601,40263,56051
+67802,82113
+67803,11623,67568,56034
+67804,14613,19023
+67805,42451,37526,26009,58277
+67806,8748
+67807,32459
+67808,32977
+67809,1297,46898
+67810,44868
+67811,27925,15072,50205,72088
+67812,20197,37297,18151,62346,78234
+67813,41210,39464,2551,19007,76385,38730
+67814,78538,44920,46926,35250,57811,70136
+67815,51129,27474
+67816,27563,17174,44271,3275
+67817,81147
+67818,17495,34487
+67819,73889,40829
+67820,3304,65038,1522,31982
+67821,34982
+67822,47104,53409
+67823,22569
+67824,45110
+67825,59682
+67826,16573,75308
+67827,79819
+67828,65183
+67829,17304,37450,2749
+67830,37862
+67831,34449
+67832,33829,79671,43430,5386,42366
+67833,348,19642,49934
+67834,71427
+67835,72190
+67836,44369
+67837,24333
+67838,74845,14787,69024,22140
+67839,366
+67840,80533
+67841,31876
+67842,58051
+67843,34068,72407,21840
+67844,27387
+67845,58625,59890
+67846,36489,5644
+67847,52203,68269,61419
+67848,55712
+67849,11601
+67850,17204,67465
+67851,26074,82148,13309
+67852,71368
+67853,24980,17260,9438
+67854,73516,78511,27332
+67855,63730,80707
+67856,66744,18138,14769,53704,77774
+67857,968,73933
+67858,65295,34665,33334
+67859,41357,69268,48527,40344
+67860,44333,45465
+67861,55638,468,6605,29268
+67862,63332,74426,30342,19214
+67863,48336,53997
+67864,23478
+67865,8323,42459
+67866,28616
+67867,11100,20879,29128,34222,11579,70444
+67868,30665,35383,8680,7713
+67869,44858
+67870,77254
+67871,27543,2023
+67872,50682,650
+67873,955,9127,52223
+67874,61515
+67875,40153,72220,24212,66145
+67876,64207,61819,10265
+67877,69151,37188,6329,61626,7198,70763
+67878,31233
+67879,75434,28983,77539,32830,75796,76472
+67880,52909
+67881,44496,11994,15841,42303,28750
+67882,61237
+67883,74733
+67884,60857,5187,18771,72355,71983,45319
+67885,37547,17939,47838
+67886,58888
+67887,44623,37177,71788,67840
+67888,68044,69798,34778,29815
+67889,15994,9480,30256
+67890,73541
+67891,11548,80000
+67892,23645,22304
+67893,57891,55342
+67894,73418,26665
+67895,69965,38268
+67896,52506
+67897,4617,74291,29992
+67898,68290
+67899,37647
+67900,3357,50240
+67901,28114
+67902,28724
+67903,36378
+67904,30790,53356,64454
+67905,64789,32068
+67906,16837,34499,65511,50776,57466
+67907,65933,48515,47779
+67908,5657
+67909,57538,49905,77704
+67910,60604,12811,55389,32957
+67911,6012
+67912,76397,71752
+67913,43386,68813
+67914,10716,25505,28752
+67915,792
+67916,13778,55450
+67917,43919,26626,29709,19306,81820,58950
+67918,8063
+67919,53226
+67920,68910
+67921,25488
+67922,59198,56888
+67923,25005
+67924,64430,80821
+67925,60741
+67926,78780
+67927,51554,39647,33744
+67928,25674
+67929,79068,34278
+67930,55013,42538,23026,40752,67618,8939
+67931,79451
+67932,10687
+67933,5392,13773,81210,69808
+67934,61055,10380,39493,24085,66963
+67935,30108,31398,32528,23093,66972,64635
+67936,4614,5516,19524
+67937,64661
+67938,43739,11959,15672,7138
+67939,57546,61389
+67940,71147
+67941,10513,43365,65241,64612
+67942,65235
+67943,4090,51802,72350
+67944,80498,72993,81246
+67945,74685,48685
+67946,38461,9471
+67947,74036
+67948,19570,74013,40667,10190
+67949,4153,33986,23641
+67950,26137,46368,32363,43437
+67951,38059
+67952,1251,61527,40345
+67953,33470,54241
+67954,63750
+67955,74626,3706,38893,69141,25762,44868
+67956,1001,4799,26564
+67957,510
+67958,7045,81747,78969,48500
+67959,71181,48330,80464
+67960,44250,52478,36730,26147,81068
+67961,2801
+67962,53125
+67963,44120,23702
+67964,30490
+67965,4868
+67966,18978,3077,51109,69830
+67967,75489
+67968,51908
+67969,19783,65681,61976,56681
+67970,3006,46637,13721
+67971,25341
+67972,30336,19093
+67973,18828,49382,4744
+67974,60123,52494,10329
+67975,47396
+67976,28773,59711,10123
+67977,35534,76520,58324
+67978,28800,78525,43146,2847,32347,51711,73180
+67979,25957,38235,5730,68263,15914
+67980,74619,32958
+67981,7281
+67982,24310,18610
+67983,76571
+67984,11018,43335,60434,17608
+67985,39859,37466,3353
+67986,14076
+67987,33761
+67988,3951
+67989,46836,7406
+67990,53533,20086
+67991,38229
+67992,59352
+67993,9944,53166
+67994,49174,81116,15611,3159
+67995,7650,76460
+67996,81008
+67997,24054,39887
+67998,14336,80720,583,62153
+67999,14210,32980,63740,5463
+68000,28236,36731
+68001,3933,13117
+68002,46901,21507,73917,12506,26524
+68003,49418,22718,80580,51527
+68004,63156,44024
+68005,17731
+68006,48194,61613
+68007,72669,28353
+68008,2975,50648,33705
+68009,62074,1719
+68010,2117,61736,52769,25571
+68011,8194,78716,28103
+68012,57182
+68013,71639,50885,77026
+68014,36671,9239,3612
+68015,51531,28816,73652,73999,39774
+68016,18304,66187
+68017,73889
+68018,28183
+68019,10687,2108,61366,39409
+68020,62066,52252
+68021,26832,15364,58370
+68022,71876,33172,67508,25558
+68023,73739,40298,15153
+68024,73910,71594,24092,56408
+68025,39172
+68026,57195,65355,28553,45309
+68027,21775
+68028,25223,75625,34421
+68029,16280,37833
+68030,73717,49705
+68031,50359,30149,37108
+68032,55933,74595,8854,15247,57465,12293
+68033,12098,32729,80800,76062,52665,72236
+68034,25428,44413,32864,9432
+68035,70992,34483
+68036,12905,19518
+68037,30102
+68038,33002,59523
+68039,17475,31715,59129,47390,50756
+68040,56622
+68041,43293
+68042,80441,42214,59180
+68043,65226,61386
+68044,34301,5481,32087,74892
+68045,75792
+68046,81443
+68047,16169,55649
+68048,6775
+68049,26042,45470
+68050,41616,56895,71197,81663,58988
+68051,2447
+68052,55349,69539,9001
+68053,10026,32036,20415,68577,44953,73870,74607,74053
+68054,17358
+68055,51778
+68056,48805
+68057,31522
+68058,40494
+68059,27460,22129
+68060,58461
+68061,13202
+68062,75270,50809,74207,33739
+68063,65723,45556
+68064,439,24317,39602,31586,50464,32330,10464
+68065,61096,59267,76448
+68066,13001
+68067,23429,74930
+68068,35781
+68069,41219,75877,23232,42293
+68070,76940,47285,226
+68071,56549,69232
+68072,17410,69656,40460
+68073,48548,62541
+68074,6368
+68075,31296,36400
+68076,30505,71454,1938,47087
+68077,57708,64842
+68078,70084,56725,13396
+68079,13728,42485,77229,13869,71169,61860
+68080,30281,9942
+68081,61554,38666
+68082,45189,73779,39504
+68083,12609,43393
+68084,48965
+68085,23108
+68086,81499,38346
+68087,38652,80632,19518
+68088,62009,61853,39894,45178
+68089,46990,49563
+68090,19598,10872
+68091,78937,39940,37402
+68092,9647,39135,78280
+68093,39496,50053,40948,25526
+68094,25034,68821,47503
+68095,66922,75985,32106
+68096,24580,58820
+68097,7265
+68098,17170,74205,30767
+68099,35165,64188,48897
+68100,13103,41388,53381
+68101,32488,32604,61728
+68102,67908
+68103,60165,53202
+68104,30025
+68105,25214,14317,69779,73962
+68106,80210
+68107,16677
+68108,36954,63374
+68109,75813,77527,60948,51660,68112,3248
+68110,35514
+68111,56215,8430,8242
+68112,15636,8813,65817
+68113,77901
+68114,2645,43643
+68115,3488,71189,63215,38227
+68116,51717
+68117,50182
+68118,52566
+68119,60059
+68120,73998
+68121,17179,45055
+68122,22217,184,80615,77296,651
+68123,64724
+68124,59285,48568
+68125,11406,17296
+68126,74490,27049,28587,65217,52786,58123
+68127,7772,51059,9758,18962
+68128,38414,33447,48364,50556
+68129,40844
+68130,46747
+68131,21162
+68132,45836,44266,35429
+68133,78075
+68134,11852,47445,22401
+68135,24870,74785
+68136,75085
+68137,79939
+68138,62716
+68139,71404,23512
+68140,22331
+68141,27376
+68142,27786
+68143,36473
+68144,73248,30464
+68145,46916,61233,28041,3534,52440
+68146,5554,52281
+68147,64065,51656
+68148,28875
+68149,8514
+68150,66785,28041
+68151,43891,55346,72407
+68152,1905,27329
+68153,660,10395,1497,28655,75078
+68154,81020,77441,4286
+68155,46969,17815
+68156,49349,15049
+68157,5428,52408,61334
+68158,54844
+68159,49636
+68160,47011
+68161,26478,313,40541,29845
+68162,9862
+68163,37619
+68164,6113
+68165,36378,22881
+68166,677,2969,67246
+68167,68889,41344
+68168,77960,5707,51169
+68169,6375,76411,13435
+68170,25426
+68171,45254,13562,5106
+68172,71092
+68173,74669
+68174,16685,72914,40831
+68175,50743
+68176,47215,75040
+68177,33250
+68178,18970,28395,38258,46870,63928
+68179,81676,36244
+68180,43575
+68181,74640,50461,74896,7018,79421
+68182,16931,12767,77131
+68183,72669,46575,1901,51348
+68184,61554,23760
+68185,42631,21481,50452,51153
+68186,10332
+68187,35291,55192
+68188,47597
+68189,48148,30486,68852,15621
+68190,38638,17134,63026,3512,75408,22223
+68191,77525
+68192,60745
+68193,31360,54872
+68194,20179,14094
+68195,68100
+68196,27775,5720,24335
+68197,81677,11885,28454
+68198,32080
+68199,66285,17570,6835
+68200,56862,26874,53614,61384,36592,13597,40158
+68201,52390,49337,11131
+68202,2093
+68203,53604
+68204,23089,59128,10641,25421
+68205,3296
+68206,19304,52928,25293
+68207,4063
+68208,62249,24695
+68209,30091,60713,54613,13089,1063,19170
+68210,69119,68129,76160,1031
+68211,7907
+68212,77437,59682
+68213,69166
+68214,24254
+68215,49478,29549,15599
+68216,57138
+68217,26563,43646,44284
+68218,13450,67188,40753,71257
+68219,39284,24997,41388,76440
+68220,24552
+68221,69716
+68222,42764,20196,28622
+68223,45590,72720,44394,13569,25004
+68224,63342
+68225,35649
+68226,64842,36075
+68227,4678
+68228,3169
+68229,7363,80428,35639,67776,2582
+68230,57283,79939,23605,13172
+68231,78747,43623
+68232,33934,64613,68845,77641,74854
+68233,11436,61236,5296
+68234,28107,25245,57995
+68235,44617
+68236,39230,51121
+68237,50321
+68238,43965,3037
+68239,81085,54003,79943
+68240,39996,58053,22757,57026,28640,9671
+68241,21271,19439
+68242,42876,25065,56615
+68243,61347
+68244,16929,5883
+68245,41877,23521
+68246,44323,23020,67513,80854,5235,37838
+68247,23183,49396,72952,80059
+68248,70422
+68249,46097,27684,25755
+68250,68194,33,31175,20548
+68251,42587,77601,43057
+68252,79576,59113,32303,77174
+68253,31503,23709,54902
+68254,52821
+68255,7846,69445,9500,65216,81640
+68256,22812,23807,18119
+68257,60097,47217,61915,16476
+68258,52355,12925,51744,35415
+68259,21763,25566,32426
+68260,38187,27133
+68261,50502,69814
+68262,42353
+68263,66383
+68264,260
+68265,65763
+68266,1513,54456,28636
+68267,40975,43979,73555,64789,48978,18219
+68268,16576,73949,27465,71360,15850
+68269,38411,14091
+68270,3636,69846
+68271,8575,71357,54316,43848,8108
+68272,10040
+68273,54270
+68274,31893,19458,36499
+68275,35388,40547,75877
+68276,12010
+68277,34123
+68278,27249,33988
+68279,18627
+68280,44020,14360,56175,13970,59637
+68281,49931,52333
+68282,40395,10128,79864
+68283,76421,1777,33024
+68284,5475
+68285,27839,4011
+68286,21469,45659
+68287,12476,31423,44999,8209
+68288,4848,23172,18916,51028
+68289,74189,29661,763
+68290,16257
+68291,35909
+68292,12350
+68293,64395,5845,43198
+68294,12619,52528,64312,35151
+68295,27051
+68296,33577,56950
+68297,48934
+68298,70630,57645,59183,66630,68605
+68299,69716
+68300,45709,30746
+68301,53394,50956,39763,81142,76661
+68302,58243,31056
+68303,36326,66857
+68304,63656
+68305,1212,9319,78070
+68306,16774
+68307,54929,70
+68308,51363,5238,48941,81020,10354,50380
+68309,1291
+68310,54877,38503
+68311,35139,49140,76037,72882
+68312,49762,13860,6044,15295
+68313,12525
+68314,4957,52494,9883,711
+68315,65924,18072,76603,37299
+68316,38020
+68317,68648,36501
+68318,71085,46501
+68319,62612,32240
+68320,80016,45927
+68321,72304,67018,60201
+68322,599,66730,25140,13440,41662,8806,30478
+68323,75901
+68324,4139,703,12506
+68325,66480
+68326,30600,47493
+68327,76598,2877,21330
+68328,33483
+68329,14094,51976,32661,49174,60035
+68330,17885,1085,71935,7274,33568,34385
+68331,24227,76033,52612,53050
+68332,49701,23675
+68333,71243,31049,70110,47747
+68334,3132,32998,43750,17641
+68335,69760
+68336,78691,25487
+68337,6404,18306,42443
+68338,26621
+68339,24122
+68340,5806,29868,41320
+68341,36718,62361,58535,29980,55641,72424,17359,75464,28635
+68342,6978,27977
+68343,13299,58461,31055,9868
+68344,76159
+68345,46157,29713,23337
+68346,2022,51586
+68347,6244,15374,63783,16722,25496
+68348,49408,15996
+68349,64590,72762,27083,63968
+68350,53326,18979,78592,52928
+68351,65246,62829
+68352,52029,31197
+68353,30981
+68354,30571,48090,18944,33043
+68355,75021,49916
+68356,81605,81539,29212,30837
+68357,68560,11586,55705,72357,38196
+68358,74899,35968
+68359,54818,11963
+68360,31730,60304
+68361,32513,32042
+68362,70563,58455
+68363,48897
+68364,10388,41262
+68365,75233,64032,16608,53619,11301
+68366,55521
+68367,22090,31201
+68368,41872,35750,46964
+68369,71742,68955
+68370,43500
+68371,40491,2684,41084
+68372,66132
+68373,4458
+68374,34214,14322,68951
+68375,23465
+68376,2526
+68377,73852
+68378,46397
+68379,26922,59530,68511,23473
+68380,65374
+68381,8790
+68382,26292
+68383,41542
+68384,2576,60961
+68385,11409,21234
+68386,48259,73801,32677,55638
+68387,23783,51989,21353,68792,67778,53193,66949
+68388,23563
+68389,64337,42498,66581
+68390,39664,62074,44846,42691
+68391,59625,79103,48845,15475
+68392,58374,25055
+68393,36275,64614
+68394,52212,66936
+68395,32592
+68396,71858,23393,26208,45088
+68397,77634
+68398,39976
+68399,78548,55369,12543,20539
+68400,61306,26747
+68401,10522,8373
+68402,45576,47065,65883,6465
+68403,16880,46449,42720
+68404,80368
+68405,39577,61133,36997,61481
+68406,36081,76175,18510
+68407,38477,81239,60752,6556,78667
+68408,792,61967
+68409,79989,41338
+68410,80719
+68411,45345
+68412,12608,69119,11736,50056,50511
+68413,58706
+68414,7071,46728,25492,24966,9046
+68415,3604,26510,17000
+68416,42483,11696
+68417,58521
+68418,55384,7095
+68419,76153
+68420,27691,56963,79741,45377
+68421,76965
+68422,72795,29166,2176
+68423,2400,14351,59429
+68424,48919
+68425,73753,57019,56474
+68426,63331,61394
+68427,71346
+68428,46280,43296,43788,3899
+68429,75,26477
+68430,13624
+68431,56752,22137,26413,74693
+68432,17399,23808,60605
+68433,6325,10271
+68434,31688
+68435,1824,26049,24341
+68436,42654,76935,47172,74448
+68437,69311
+68438,25620
+68439,29191,29864,21953,49313
+68440,21698,27479,81502,75656
+68441,21793,21084,43120
+68442,34734
+68443,74528,60893
+68444,75610,54733,21897,66860,48194,70598
+68445,26739,1512,50695,43102
+68446,43350,512
+68447,43639,79706
+68448,79316,37380,53104
+68449,62798
+68450,15606,12307
+68451,7541,68791
+68452,22740
+68453,41034
+68454,62127,66314
+68455,76344,39700,75656,79458
+68456,4552,51431
+68457,32246
+68458,17164
+68459,38122,33820,37094
+68460,61057,60160
+68461,8370,81533
+68462,24122
+68463,23747,63055,63255
+68464,4057,27234
+68465,1805,58156,11916,76943,24559
+68466,74504
+68467,41893,13950
+68468,69786,57549,47440
+68469,24737
+68470,40411
+68471,52165
+68472,6866
+68473,26631,65136
+68474,75432,58248,26442,78896
+68475,72950,41601
+68476,10936
+68477,22787,36406
+68478,12144,7726,43271
+68479,4880,18299
+68480,14882,7818
+68481,14264,17949,2200,49805
+68482,44872
+68483,32617
+68484,77409,61906,32253,35972
+68485,45717,32336,3786,36148
+68486,62434,42299
+68487,36360,64005,36889
+68488,8773
+68489,50149,68687,57000
+68490,18178,14447,44977
+68491,1894,32614,60732,13563
+68492,27058
+68493,574,28061,1298,22935
+68494,26585,53622,41320,58783,62325
+68495,39571,49390,40912,46048
+68496,67016,15209,15265,67300
+68497,17362
+68498,60175,56330,19841,75916
+68499,60677
+68500,18012
+68501,28819
+68502,58657
+68503,41072,26762,78857,67704,60081
+68504,53852,123,33810
+68505,57388,17,36211,34898
+68506,41728,14088,65107
+68507,1168
+68508,39841,37495,32285,72919
+68509,28144,31863
+68510,74838,38033,78992
+68511,70516,46818,20951
+68512,37376,14068,16828
+68513,32129,28925,69373,68095
+68514,30068,61439
+68515,57552
+68516,35976
+68517,27444
+68518,50993
+68519,80704,44194
+68520,73416,20856,11444
+68521,75663,60054
+68522,19854,54536
+68523,29822
+68524,61089,81427
+68525,76199,23465,35303
+68526,10939,72419,9482
+68527,34424,48896,24782,6307
+68528,44690,587,1249
+68529,67824,40546,21668
+68530,7176,236
+68531,68462
+68532,34148
+68533,45200,55055,26400,28823
+68534,74494,29125,56639,55853,3480
+68535,26843,3571
+68536,52392
+68537,22420,28445,11545,26519,67751
+68538,66457,51953,42181
+68539,69721
+68540,16074,77300,22743,8986
+68541,17609,35282
+68542,53118,31812,11400,52595
+68543,28879,48304
+68544,58262
+68545,42238,32226,54081,49246
+68546,14470
+68547,57690,62318,4171
+68548,55455
+68549,67339,12028,38669,1740
+68550,51175
+68551,19564
+68552,17463,71055
+68553,23904,80896,42647,68778
+68554,47539,36041,10984,47947
+68555,68626,67506
+68556,35930
+68557,16476,19129
+68558,24300,29585
+68559,68056
+68560,5703
+68561,5765
+68562,77875,19496,25676
+68563,42352,81288,33478,75496
+68564,15012
+68565,54728,8276,8916
+68566,39173
+68567,65676,54071,17559,17373,64264,48385
+68568,27448,66304
+68569,56007,29385
+68570,3328
+68571,7512,71289
+68572,39945,34929
+68573,70447,32707
+68574,19248,17320,5616,44787
+68575,6958
+68576,73836,28273,76023,8060,14525
+68577,41952,34391,74625
+68578,27236,51953
+68579,80988,51666,48201
+68580,38628,80441
+68581,58405
+68582,80020
+68583,56935
+68584,2490,49207,36792,45833,9888
+68585,55464
+68586,11603,4188,77019,43524,36972
+68587,30892,1937,63430
+68588,65472,29369,47384,15577,46347
+68589,33657
+68590,18002,67736,21859,4104
+68591,76450,18541,65473
+68592,46641,66254,2264
+68593,15605,3652,44954
+68594,20443,7783,33413
+68595,7701,54274,32062
+68596,22378,75518
+68597,53443,31343,21,37205
+68598,27500,29868
+68599,38923,72516,2747,78205,59117
+68600,79015,26906,18549
+68601,29337,48788
+68602,50259,7876
+68603,73895
+68604,45854
+68605,47949
+68606,79617,71374,43959
+68607,15000
+68608,63226,39780,14665
+68609,10869
+68610,48957,76706
+68611,66893,6611,26465,34883,57829
+68612,63073,61366,67740
+68613,74433
+68614,34610
+68615,41137,56187,52972,48330
+68616,65300,2572
+68617,57902,47383
+68618,78226
+68619,13009,45228
+68620,44734,15194,4207
+68621,76097,61958,60019,47073,6119
+68622,11289,77764
+68623,38515,75781
+68624,13620,70243
+68625,27967,76211,81537,57546,9192
+68626,72312,35803
+68627,27008,78516
+68628,57317,33856
+68629,81828
+68630,36833
+68631,47114
+68632,28505,18655,36213,72561
+68633,52876,47284
+68634,14498,16758
+68635,67954,38299,72093
+68636,13277,59839,77222,16737
+68637,11751
+68638,33016,58797
+68639,69495
+68640,74947,54902,66660
+68641,24281,67849,49500,72309
+68642,26490,49039,48466
+68643,47180,8133,51253
+68644,42227,55439
+68645,57708,51590
+68646,78212
+68647,71296,49421,70288
+68648,25147
+68649,45092
+68650,15978
+68651,57556,49590
+68652,21972,69514
+68653,79387,40787,19828
+68654,43241
+68655,17950
+68656,68414,35715,19039
+68657,11508,9719
+68658,21939
+68659,6318,49914,65223
+68660,21534,67188,68356
+68661,12635,60468,27884,45698
+68662,48459,37536,8533,80328
+68663,9707
+68664,13216,28309,37394
+68665,67720
+68666,49608
+68667,30981,20694,18202,67713,4108
+68668,11248,61377,50362,50557,16031
+68669,33712,38174,77675,78223
+68670,57927,72972
+68671,49517,34474,11152,67476,78440
+68672,24483,26630,59147,12093
+68673,78558,19736
+68674,59335,1960,20266
+68675,32631
+68676,75135,14229,6937
+68677,61260,26997,57792,5980,36164
+68678,11782,75554
+68679,33680,31259
+68680,6187
+68681,36388,73782,7637,21290,13626,60588
+68682,57451,7529
+68683,33594
+68684,65635
+68685,69748,75609
+68686,12237,34345
+68687,17016,72818
+68688,11410
+68689,47477,35838
+68690,8526,78629
+68691,9108
+68692,73010,26081,41558,26028
+68693,35002,6345,73001
+68694,37619,82190
+68695,16712
+68696,1630,22066,80228
+68697,15271,37464,34121,12681,21363,12723
+68698,2641
+68699,29721
+68700,78197,65235,64888,2789,59280
+68701,22664
+68702,57605,31818,9608,14655
+68703,41212,47690,29417,77017
+68704,64123
+68705,69080,81174
+68706,20835,27837
+68707,26234,66259
+68708,25884,22126
+68709,75337,54784,11007
+68710,17682
+68711,25879,43523
+68712,63576,9350,8316
+68713,70090,75623
+68714,45273
+68715,22146
+68716,6474,22708,360,28733,58959,70912
+68717,8430,10690
+68718,56259,10406
+68719,54900,71962,11461
+68720,51433
+68721,51669,80066,60148,40265,73553
+68722,75693,2126
+68723,3686,39755
+68724,35749,68840
+68725,73497
+68726,79693,16028
+68727,18083,56352,61414
+68728,2933,77558
+68729,48793,23519,4897
+68730,23992
+68731,66435
+68732,37877
+68733,23100,46395
+68734,51686,50003,71429,37821
+68735,44451,19884
+68736,30252,3066,25289,6336
+68737,45842,371,10955
+68738,80421,26452,81063,1046
+68739,26198,41934,26186,55140
+68740,36886,68421,10454,68426
+68741,28760,66937,26623,25941
+68742,68220
+68743,63923,71246
+68744,39581,54870
+68745,65900,25385
+68746,39991,53445
+68747,81507
+68748,67840
+68749,11141
+68750,39280
+68751,52958,74704,49918
+68752,56716,2861,69513
+68753,36369
+68754,51837,65974,41071,75622
+68755,67248,36231
+68756,6068
+68757,6996
+68758,2739,39797,74057
+68759,57694,61894,47834
+68760,13812,6941
+68761,23752,17058,29097
+68762,12176
+68763,14849
+68764,27210
+68765,45631
+68766,30964
+68767,12721
+68768,20626,43829,78712,43689
+68769,62030,49138
+68770,70924
+68771,72380
+68772,41699
+68773,42192,44167
+68774,51712,15687,71045,28967,44758
+68775,43060,3898
+68776,18242,3274
+68777,72950,64356,46679
+68778,23902
+68779,78713,33024
+68780,31022,18791,11254
+68781,51182
+68782,33502,63965
+68783,56670
+68784,15739,68195
+68785,22612
+68786,75270,56129
+68787,14435,44070
+68788,59672,39543,50532
+68789,24971,47427
+68790,2143,1000,49177
+68791,42301
+68792,15273,70794,33164,61652
+68793,65386
+68794,10118
+68795,71173
+68796,25343,41631,46098,70770,61693
+68797,55026
+68798,73018,33662,32713,2475,41439
+68799,17562,79150
+68800,41774,63619,79079
+68801,25349,24635,12068,34355
+68802,59940
+68803,14266,37822
+68804,74374,61357
+68805,29516,69552
+68806,72175,28887
+68807,72790,76812,65718,52124
+68808,50116,16485
+68809,40740
+68810,24679
+68811,66970
+68812,50595
+68813,43107
+68814,45952,16362
+68815,3947
+68816,18159,22177,32265,63789,68955
+68817,56330,34837
+68818,42517
+68819,74806,6320,33745,80559,22980,74620
+68820,39528,6920
+68821,33907,30899,77510
+68822,21456,27246,29120
+68823,11220
+68824,38628
+68825,6194
+68826,58115,56223,14668,81133,79578
+68827,56058,20966
+68828,72535
+68829,68546,18827
+68830,6008,31561,68765,1950,38558
+68831,25413,35975,37955,54630
+68832,53712,13072,42735,67873
+68833,39168,56599,46213,12984,18958,31710,27123
+68834,60926,34541
+68835,137,29741,46892
+68836,19029
+68837,70087
+68838,9936,41310
+68839,4792,29781,14852
+68840,25794
+68841,45785
+68842,23645,32265,75228
+68843,52436,21879,44967
+68844,33198,52522,34285,23987,48383,54063
+68845,31675
+68846,16906,27319,58726,24732
+68847,63883
+68848,48797
+68849,16877,4182
+68850,20178
+68851,41289
+68852,36391,31045
+68853,29585,5048,30731
+68854,11819,43445
+68855,50673,69431,40258,19728
+68856,49613,41246,39398,48759
+68857,58886,2356
+68858,76012,64589,42913,53649
+68859,55843,48174,80869,27985
+68860,59150,13772
+68861,18552,41845
+68862,45206
+68863,29886,64068,1870,35513
+68864,19455,30379,31739,33145
+68865,73368
+68866,19003,59272,27389
+68867,70053
+68868,75593
+68869,26298,12039
+68870,68797
+68871,45758,53138,20335,42747,39768,59967
+68872,29752,65917,25865,43419,28578,26008
+68873,11931,66200,17692
+68874,12921,17040
+68875,54756
+68876,71247,64701,68724,42568
+68877,32255,24419
+68878,51363,66934,10946,39006,80094
+68879,14010,8426,36148,44343
+68880,48335,21618
+68881,42884
+68882,26457,4605
+68883,10954,3686,53211,73822,60856
+68884,59646,29830
+68885,35158,54179,65034
+68886,45738,29796
+68887,22543,60845,30638
+68888,45835,19786,30388,10898
+68889,77494
+68890,68211,79977,78937
+68891,27768,3869,10022,46484
+68892,56773,31967
+68893,5123,61927,19304,61736
+68894,27543,25347,49849,47660,34334
+68895,36021,47716,49585
+68896,22944,26407
+68897,43211,57331,1322,51917,27587
+68898,76846
+68899,10725
+68900,68928
+68901,36015,37685,4057,20284
+68902,26208,5421
+68903,51970,62938
+68904,72407,62784
+68905,51676
+68906,61579,30451
+68907,23199
+68908,18941
+68909,31138,58347,16857,8429,32911,72118
+68910,42812,68224
+68911,73835
+68912,1349
+68913,79004,36346,46339
+68914,80915
+68915,35637
+68916,51711
+68917,33343,78360
+68918,1070
+68919,64612,17264
+68920,72807
+68921,11142,575
+68922,64030
+68923,65003
+68924,18156
+68925,972,10240
+68926,62622,79103,29541,56571,26507,45471,51053
+68927,42065,5771
+68928,82174,21794,67623
+68929,60338
+68930,45145,72947,75310,30855
+68931,35358,51108,2392,9912
+68932,75252,32608,21792
+68933,43192
+68934,63483,68921,42195
+68935,27312,28010,20108,32000,27585
+68936,52774,38813,2884,30826
+68937,33048,36918,54517
+68938,18336,50250,49393
+68939,55644,12305
+68940,26054,65548
+68941,43184,50601,51628
+68942,45718
+68943,44533,71456,37294
+68944,38764
+68945,26411,24702
+68946,32323,57901,28173
+68947,78016
+68948,11396
+68949,70498,45067,25765
+68950,61008,71193
+68951,52191,29885,22459
+68952,49786,39724,54772,28579
+68953,14412,49438,21040,19762
+68954,48264,55859
+68955,49631,42069
+68956,72550,77838
+68957,377,9244,57986,80544
+68958,2266,30076
+68959,27442,28537
+68960,23899
+68961,52606,54572,66950,66699,67259,54842,66680
+68962,15955,24589
+68963,35111
+68964,61973
+68965,45260,30186
+68966,24256,28413
+68967,36182,45590
+68968,16806,75053,28786,81804,54320,30985,78546,57778
+68969,78339,81369,65528,12376,35882
+68970,18193,81819,21588
+68971,24411,48204,42838
+68972,54660,5695,46380,56329,56181
+68973,75349,42170
+68974,70355
+68975,38743,15996,59519
+68976,37259
+68977,44159
+68978,69526
+68979,9606
+68980,39860,58912
+68981,53095,21571,17789,38014,74192
+68982,50126
+68983,15516,78117,13924
+68984,29024
+68985,68468,61395,48845
+68986,67405
+68987,19268,53322,27355,42994
+68988,4620
+68989,43274
+68990,70368,37175
+68991,13010
+68992,60667
+68993,77442,16761,75012,393,59124
+68994,66407,55609,44554
+68995,30983,69299,51200,77473,72204
+68996,59400,29138
+68997,29958,2495,77013,74701
+68998,66116
+68999,74364,61835,79496,74794
+69000,67505,18304
+69001,63001
+69002,35274
+69003,57140,28048,47311,42996,35035
+69004,18643,63141,1304
+69005,65793,51906,12438
+69006,26144,32618,78769,18242
+69007,28060
+69008,53481
+69009,58116
+69010,19631
+69011,3251,72534,14473
+69012,9588
+69013,69155,15737
+69014,35615,81594,14336,25016,50202,2664
+69015,61625,2337,68965
+69016,79089
+69017,32687
+69018,51938,41669,50070,78537
+69019,3105,47764
+69020,30955,17092
+69021,13591,27208,37025,51919
+69022,49192,7957
+69023,15987
+69024,65890
+69025,65226
+69026,20751,64076,45361
+69027,21553
+69028,19863,78164,59964,31464
+69029,21757,10936
+69030,300,76200,27374,71436
+69031,76135,50180,76199,53420,25353,62060
+69032,66391,44985,17643
+69033,13375
+69034,42437,41163,51722
+69035,50494
+69036,47270
+69037,9179,6026,20212
+69038,37906
+69039,77726
+69040,29448,45894
+69041,28100
+69042,49165
+69043,26013,49859
+69044,61529,45993,55305
+69045,27391,54818
+69046,60855,14792,73087
+69047,61268,50143,19380
+69048,68328,3795
+69049,29529,6794,10103
+69050,18195,12915,32018,381
+69051,42621,58972
+69052,31946,63270
+69053,70081,35539
+69054,69616,61757,74720
+69055,1423,31005
+69056,63594,60447,47397,3605
+69057,19584
+69058,80822,46255
+69059,32396,27379
+69060,31763,8874
+69061,44061,70148,72973
+69062,47780,63865,29960
+69063,27569
+69064,11490
+69065,20579
+69066,66350,42038,27360,61293
+69067,29073,50250,3513
+69068,70477,12916,46234,27562,67517,56089
+69069,34223,1062,36614,45607
+69070,45736,29308,8018
+69071,45123,1623
+69072,33369,42144
+69073,59529
+69074,40447,36833,70422,27263
+69075,24677,31850,68244,79514,14708,51019
+69076,39482,9255
+69077,74677
+69078,4308,26997
+69079,1184
+69080,31745,74484
+69081,64603
+69082,59762,52750
+69083,10849,66657
+69084,365,81106,11510,9666,63442
+69085,36880
+69086,70183
+69087,62277,40990,66613
+69088,51157,3294,13922,73771,18591
+69089,55762
+69090,28090
+69091,46914,33454
+69092,72369
+69093,3483
+69094,31583,14959,2478
+69095,40413,18889,74378
+69096,19985,6864,51454
+69097,43999,950
+69098,51182,47292,1534
+69099,60766,81893,68242,59904
+69100,28090,33406
+69101,70080,77584
+69102,12500
+69103,79435,14769,11153
+69104,81674,11270,1404
+69105,68263
+69106,69552,55917,74069,3249
+69107,71381,51950
+69108,71400,18072
+69109,10920,81838
+69110,34275,30809
+69111,9618,16463,37786,19763
+69112,26463,56729,14718
+69113,45535
+69114,62825,81479,28962
+69115,6580
+69116,24259,55214,18389,58956,14431
+69117,75803,26947,77312
+69118,71198,12967,13957
+69119,55263
+69120,19985,53741,35349,71169
+69121,77970,78843
+69122,36523,20157
+69123,66905,21945,58782
+69124,12366,54691
+69125,1815,59374
+69126,50862
+69127,79528,49988,71270
+69128,71699
+69129,27208,43787,64819
+69130,25991,46850,60259
+69131,7084,26696,15115,14517
+69132,12595,44529,43246,55902,5737
+69133,5166,18612
+69134,36314
+69135,64042
+69136,33508,51244
+69137,7964,11837,64163
+69138,22376
+69139,5297
+69140,24287,73640,9868
+69141,49362,45951,29431
+69142,12182,61398
+69143,8744,27858
+69144,57388
+69145,64498,39044
+69146,46613,63235
+69147,60155,51133
+69148,22331
+69149,82051,73499,62102,15598,70869
+69150,34971,26953,9614
+69151,60070,69254
+69152,13404,19461,70781,14106,44317,64365
+69153,77939,78042,53513,32749,15376
+69154,14813,53969
+69155,78558
+69156,1258,53641,60475,72922
+69157,10082,79277
+69158,56545
+69159,78585
+69160,68279,51529
+69161,27880
+69162,65822,13032,46316,78234
+69163,1361,70735,5967
+69164,49328
+69165,49585,15305,72338
+69166,48538
+69167,18544,75539,79001,61286,38029,68018
+69168,32970,15070,31502
+69169,52877
+69170,58877,80041,64475
+69171,54868,77023,55183
+69172,30266,33372
+69173,60623
+69174,15940,69134
+69175,29468,61707
+69176,3966,31375
+69177,63091,41161
+69178,25837,50228,80482
+69179,54167,30160,36309
+69180,25987
+69181,23589,5359
+69182,80337,24058
+69183,61079,80382,56369,3315,68134
+69184,76591,58507,70478,80872,47466,10282,47405
+69185,15640,57127,12290,3497,1544
+69186,70478
+69187,12443
+69188,35389
+69189,16181
+69190,26056
+69191,14105,54696
+69192,26644,3795
+69193,7274
+69194,68908
+69195,70684,45445
+69196,61909,42188
+69197,40995,52037
+69198,16878
+69199,33012,43053
+69200,14093,32084
+69201,66509,47168,62732,52541
+69202,50668,36315
+69203,70315
+69204,56992,23419
+69205,21428,81812,67694
+69206,55747,61230,75329
+69207,23100,3682,52693
+69208,73499,22465,23116,35637
+69209,54121,27551,11997
+69210,57424,14637
+69211,35618,43793
+69212,51540,73038
+69213,41813,71926
+69214,9167,37745
+69215,82054
+69216,50606,73469,63287,10830,13311,31394,80347,30606,49614
+69217,66775,76056,25117
+69218,72905
+69219,70382,75905,45567
+69220,32958,69245
+69221,38325,58948,45092
+69222,23701,24346,35932
+69223,14498,78257,38319,62111
+69224,38746
+69225,73907,7627,75083,79221,55657,59733
+69226,9327
+69227,54164,11210,17739
+69228,69722,75191,35034,42337,10851
+69229,54055,8592,7252,12377,28781
+69230,7828
+69231,8295
+69232,74167
+69233,72404,82158,57622,40282,25678
+69234,62591,41179,80522,27406,58069,39089,51545
+69235,36898,13042,63594
+69236,43834
+69237,64490,52364
+69238,12091,37170
+69239,72158,67285
+69240,56660,50090
+69241,57840
+69242,57828
+69243,27038,75118,73596
+69244,11988,75933
+69245,9751,71497
+69246,53134,17426,37657,43186
+69247,678,17925,38484,36163,58364,22708
+69248,52634,52831
+69249,68912
+69250,35203
+69251,21752
+69252,45498,72808
+69253,73128,48588,74886,58995,18703
+69254,11316
+69255,30999,82130,81814
+69256,12145,26255,59169,4015,40366,58431,15433,51615,26144,46240
+69257,30388,28542
+69258,76078,32438
+69259,62601
+69260,75451,60179,23134
+69261,34071
+69262,44589,45240,758,69505,54004,51803
+69263,81000
+69264,67457,45558
+69265,71998,43866,71800
+69266,73001,74224,35848,25302,18870
+69267,45366,34961,14986
+69268,2662
+69269,55427,57312,215,8340
+69270,81201,56159,80556
+69271,39250,11622,76790,44151
+69272,78063,43191
+69273,2834
+69274,30015,79235
+69275,60061
+69276,13165
+69277,9909,77055,4543,66988,72831
+69278,41547,59948
+69279,26239
+69280,23785
+69281,22417,48222,47641,63120
+69282,21665,26412
+69283,55085
+69284,26161
+69285,34348
+69286,64661,4996,71767
+69287,14792,53998,80659
+69288,52624,4795,51897,26057,33038,13764
+69289,7823,48207,74666
+69290,65817
+69291,64841,55312,30071
+69292,10133,46827,80557,27675,35447,67760
+69293,8974
+69294,24033,80993,6559
+69295,24095,49409
+69296,10431,15152,71192,52321
+69297,52743,25176,17616,53634
+69298,38534,55769
+69299,25881,15985
+69300,39519,55803
+69301,66587,25708,69746
+69302,37088,49122,45755,2562
+69303,72807
+69304,15268
+69305,58070
+69306,29219
+69307,66223,63936
+69308,73886
+69309,8547,2351,42939
+69310,76802
+69311,37508
+69312,81158,26799,48783
+69313,42800,61991
+69314,68861,2524
+69315,37065,41872,62252,79972
+69316,15671,44468,37012,75751
+69317,9241,15940,60956,37032
+69318,28849,5819,75445,38264,55393
+69319,12219
+69320,80568,55995
+69321,7449,77284
+69322,9931,40345,7093
+69323,51811,71620,6144,51596,24317,15476,24656
+69324,12577
+69325,64314,40005,63881
+69326,66018
+69327,32323
+69328,24471,47406,8851
+69329,64895,16601,75798
+69330,79367
+69331,4597
+69332,14767,62345
+69333,6749,81128,22593
+69334,27305,10667,76780
+69335,57120,58144
+69336,20336
+69337,1687,28886,76553
+69338,40209,50196,29075,5395,9681,52621,39733
+69339,14685,5405
+69340,9179,71964
+69341,22968,6669,1206,33121
+69342,5483,63513,46389,58728
+69343,79681,23978
+69344,36089
+69345,29771,11593,4738,7450,16083,6767,52993,68627
+69346,16447,17235
+69347,74780,27499,56184,9840,45835
+69348,46631
+69349,46279,74425,33679,76608
+69350,1955,69861,23869
+69351,32566,64614
+69352,3937
+69353,12787
+69354,10914,8642
+69355,27614,56203
+69356,47379,40709,52306,70234,56581,1878
+69357,1299
+69358,8697,39508,13503,31852
+69359,7446,32533,47679,39853,4678
+69360,20198,20215,29361,52698
+69361,55650,13493,63139,70890,24708
+69362,43876,47443
+69363,24761
+69364,79086,24272
+69365,3215,55620,36713,24088
+69366,17056,23709
+69367,11572,3974,49409
+69368,60507
+69369,24886,26814,21463,11634
+69370,47062,20810,69214,7441,73761,36234
+69371,29451,3983,60857
+69372,33740
+69373,62844,65473,62669
+69374,22169
+69375,54128,78938,71859
+69376,27710
+69377,72082,30167
+69378,80631,23567
+69379,61278,66843,6708,3897
+69380,66233,61743,23856,29107
+69381,22762,50886,54649,71549,36026
+69382,56392,59172
+69383,37131,21937,29554
+69384,36992
+69385,65447,31477,59860
+69386,8666,33591
+69387,74376,16945,57454
+69388,56787,11325,50573
+69389,77597
+69390,37806,28366
+69391,7015,57875
+69392,37733,15150,2086
+69393,48143
+69394,10472,58924,50017
+69395,22968
+69396,40093,76129,46153,19502
+69397,36990
+69398,67742,20434
+69399,22917,61050,40464,1352,68855,77438,49937
+69400,14758
+69401,63969,53726,9380,36899
+69402,29669,44321,33117,7391
+69403,59502
+69404,27528,47422
+69405,81578,40672,77892,35700
+69406,56652
+69407,80408,1228,29325
+69408,79558,2823
+69409,25582,8547
+69410,19233,353,44955,12542
+69411,50922,63204,76379,73440,65574,39180
+69412,12468
+69413,21453,11575,49827,22799
+69414,78340
+69415,48458
+69416,47800,15489,24954
+69417,69344
+69418,57434
+69419,24874
+69420,55538
+69421,7076,73899,67246
+69422,39344
+69423,67926,22328,45097,11192
+69424,72162
+69425,68370
+69426,66542,80358,74494
+69427,31935,6233,75200
+69428,50043,36239
+69429,5957,6508,75660,80670,24919,70969
+69430,5473,46356,28317,72380,71013,65680
+69431,1701,78501
+69432,18010,53352,78205,26542
+69433,73683
+69434,79428,9787
+69435,12295,34200
+69436,46578
+69437,33164,8823
+69438,64389,7760
+69439,28980,14221,24891,5498,21447
+69440,3117,4330,71161
+69441,8197,10619
+69442,9107,7914
+69443,16594,76314
+69444,40555
+69445,13124,74229
+69446,30617,81817
+69447,79036
+69448,36046,70995,44190
+69449,12055,52774,26470,17305,6976,2329
+69450,78094
+69451,76135,12549,68885
+69452,66808,65895,68284,11960
+69453,77885,59933,63796
+69454,4908,11500,75395,9362,26922
+69455,15733,61284
+69456,43792,46079
+69457,75416
+69458,30368,25130
+69459,50917
+69460,11038,21509,5348,78569,68129
+69461,73590,12712,348
+69462,9396
+69463,60306,62834,24256
+69464,63855,33313,77164,78472,11423
+69465,63854
+69466,10240,17090,48741
+69467,55386,11823
+69468,76082,61648,26970
+69469,7555,21568,12481,65213
+69470,20326
+69471,17493
+69472,26009,75596
+69473,13423,15113,74928
+69474,23012,67714
+69475,80341
+69476,14469,30525
+69477,37634,75031,41945,81722
+69478,17079,74515
+69479,32435,78709,14898
+69480,76007,59399
+69481,42147
+69482,58254
+69483,25171,31522,66262,46155
+69484,51317,37474
+69485,8985
+69486,12514,44467,76096,39940,12376
+69487,56051,55806,54130
+69488,9579
+69489,40033,4186
+69490,5218,9726,28543
+69491,24001,15373,55190
+69492,12636,80936,1516,39176,81813,23076
+69493,36843,46247,66415,53312
+69494,8319
+69495,55467
+69496,78284
+69497,65134
+69498,81118,44016,3688,7838,38325,40830
+69499,52048
+69500,72200
+69501,74801
+69502,23146
+69503,13382,37009,516,682
+69504,28266,60910
+69505,15944
+69506,3545,49593,69157
+69507,69181,54986,60408
+69508,80200,9186
+69509,61470
+69510,67722,31231,10726
+69511,80834
+69512,62782
+69513,66391,32237,52804
+69514,20839,14529
+69515,78464,63510,53316
+69516,8920,72726,51789,8864,46502,24269,41941
+69517,71156,1739
+69518,22220
+69519,4401
+69520,4163,21665,33887
+69521,74839
+69522,72436
+69523,62470,22761,43084
+69524,54635,26733
+69525,63538
+69526,54957,60060
+69527,72077,52359
+69528,6034
+69529,78146
+69530,54691
+69531,2651
+69532,53176,26498,21903
+69533,80891,37490,19173
+69534,74111
+69535,78141,65584,69697
+69536,66194,52762,37020,35423
+69537,22854,69693
+69538,47404
+69539,55368
+69540,73039,66784
+69541,30877
+69542,51771,5625,59872
+69543,33204,37735
+69544,39744,65400,5999
+69545,51220,51208,33572
+69546,66096,40490
+69547,60112
+69548,52928,25933,75513,52975,11669
+69549,49860,17605,2022
+69550,32879
+69551,56596,67327,70846,32002,40318
+69552,70334
+69553,55841,40130
+69554,75600,47482
+69555,56176
+69556,10591
+69557,77204,53867
+69558,42952,71707
+69559,63418
+69560,53430,2912,23179
+69561,30424,49338,75876,30417,38737,38193,14345
+69562,50871,50816,75299
+69563,43064
+69564,19188
+69565,43350
+69566,20879,74569
+69567,46756,31976,3344,7743
+69568,48169,2379,64189
+69569,34697,52593,30166,28468,35846,55592
+69570,66547,70289,27071
+69571,24846,29687,20900,58980,49595,73888
+69572,49931,3170,68249
+69573,8118
+69574,66287
+69575,211,19200,74901,67807
+69576,35785,77484,61875,34610
+69577,55517,25804,30162
+69578,71226,30397,55781
+69579,33480
+69580,37012
+69581,78233,43835,73141,49564
+69582,61112,15889,47796
+69583,73835
+69584,23486
+69585,62312,30038
+69586,4492
+69587,50688,80732,11355
+69588,34142,39325
+69589,63777,55675
+69590,21217,9823,65471,42433,7036,65957
+69591,80603,44609
+69592,74965
+69593,68904,75082,75285
+69594,12096
+69595,55025
+69596,25387,57697
+69597,70592,66248
+69598,53684,78320,20974
+69599,80463
+69600,64700,48465,35331,18365
+69601,46281,64604,75179,50668,39468,31590
+69602,32909,61394
+69603,73836,14048
+69604,26483,34837
+69605,21833,35668
+69606,35107,58193
+69607,23833
+69608,36199
+69609,48264,37961
+69610,1459,1860,81086,27204
+69611,33336,38726,938
+69612,28846,13766
+69613,1755,15955,48230,53399,58999,37602
+69614,79475,76593
+69615,42922,30168,25649,69013,47661,51554,1714
+69616,81584
+69617,76782,61499
+69618,16362,81458,3885
+69619,75938
+69620,72805
+69621,61309,72589,6916,3361,76787
+69622,30080,69928
+69623,28569,5472,51001,8065
+69624,78687,34331
+69625,28348,64063,13257
+69626,21985,43453,74051
+69627,24967,14973
+69628,60400
+69629,29413,74188,16571,47556,35044,49273
+69630,35123,15505
+69631,58631,9530
+69632,52360
+69633,48510
+69634,73014,14802,29747,9412
+69635,45734,69084,14950
+69636,43323,42593
+69637,53853,57514,25887,27506,40188
+69638,57740,33065,1818,27388
+69639,62657,60443
+69640,26744,22669
+69641,74649,2011,23708
+69642,38889,68380
+69643,81474,26175,1729
+69644,11009,75302,66613
+69645,47626,61622
+69646,24718,1167,66231
+69647,21362,60026
+69648,25797
+69649,17516,54836,33285
+69650,19315
+69651,32931,61387,2299
+69652,4035,49223,44901
+69653,77255,19168,78948
+69654,54681,33300,45721
+69655,14684,62614
+69656,3497
+69657,30452,37525,12039,76431
+69658,47252
+69659,8026,13747
+69660,45085
+69661,45536,25677,44723,39521,78796
+69662,6367,18456
+69663,63951,76177
+69664,75485,62188,11406
+69665,58570
+69666,21482,49270,49093
+69667,78048,77067
+69668,29076
+69669,54935,54285
+69670,2664
+69671,50737,51980,46140
+69672,71512
+69673,60044,21670,34044,3253
+69674,39469
+69675,36770
+69676,10578
+69677,79792,16768,53878
+69678,30814,17507,46416
+69679,2639,28662
+69680,69814,55783
+69681,62554
+69682,1781,3636
+69683,4847
+69684,70142,53340,7444,17424
+69685,44731,28191
+69686,16672,59238
+69687,47294,72948,6632
+69688,27307,81398,9495
+69689,21938,52075,6831,4833
+69690,79977
+69691,50804,55911
+69692,45589,41773,15202
+69693,20564
+69694,78798,16188,4303
+69695,44199,62772,58782
+69696,59992,1010
+69697,23687
+69698,30294,30303,19025
+69699,71503,40217,78847,5349
+69700,68362,34574
+69701,38980,74701
+69702,8981
+69703,12591,44536,47005
+69704,72547,39668,26592,20657
+69705,56517,24195,18253
+69706,60723,27386
+69707,63422
+69708,55464
+69709,36132,5329
+69710,50348
+69711,7375,34223,58266,46101,50627,4051
+69712,75086
+69713,27458,21779,60768,629,42091
+69714,48137,25993
+69715,58632,35143,75158,68793
+69716,69973
+69717,31777,65502
+69718,40450,42012
+69719,34074,51210,7672
+69720,4999,8780,26988,34344,8415,32748
+69721,24980
+69722,25584,64601
+69723,79184,3524,48683,29477
+69724,64204,64830,18941
+69725,30537,36232,31230,77306,56302
+69726,75040,49898,18452
+69727,40704,5832,32874,69896
+69728,56570
+69729,9530,14986
+69730,32970
+69731,66347,18620,66706,54677
+69732,51676
+69733,43629,15243
+69734,78699,3105,60179,69293,4663,81098
+69735,18695
+69736,41007
+69737,26849,50906
+69738,9161
+69739,68159
+69740,34799,69422,5596
+69741,18354,41112
+69742,66287,82016,23931
+69743,10225,3878
+69744,18933,67995
+69745,78235
+69746,32725
+69747,41204,66031
+69748,4599
+69749,70985,8156,37982
+69750,22425,42401,6367,55741,40757
+69751,37987,69418,18542
+69752,40469,49568,55015
+69753,51767,24967
+69754,24792,59637,51506
+69755,7860
+69756,60322
+69757,44912,63956,8626,46646
+69758,15313
+69759,26023,64083,31779,40977,13791,21822
+69760,44420,47781,4223
+69761,43039,72155,16239
+69762,35353,77037
+69763,40327
+69764,68884
+69765,3783,26479,14004,14248,63483,17794
+69766,32483
+69767,52685
+69768,2419,45784
+69769,71630,51314,38632,40556,1617,69657
+69770,49432,17021,66635
+69771,54797,17084,51407,59019
+69772,1721,47401,9992,63780
+69773,72244,60941,39359,3010
+69774,66815
+69775,51214,13135,74548
+69776,80712,10207,67144,68010
+69777,31234,4608
+69778,76701
+69779,36911
+69780,18992,29601,26794
+69781,40048,53490,50595
+69782,32630
+69783,53802,47433,78240,21079,73882,44967
+69784,4856,79854,8939,75117
+69785,46512,15606
+69786,42639,11769
+69787,76050,27322
+69788,65226,70708,73771
+69789,49719,60803,43079,58596,7007,4461
+69790,26542,56812,30428
+69791,68506,37915,37157,76000,24631,15895
+69792,54920,78909,44647
+69793,47934
+69794,78426
+69795,12600
+69796,52608
+69797,63658
+69798,72284,30490
+69799,35836,33740,1366
+69800,19809
+69801,1684,63055,54839
+69802,45094,50996,24727
+69803,31926,34510
+69804,69198
+69805,28393,54080,34045
+69806,23118,33409,35927
+69807,41327
+69808,26688
+69809,46713,21397,61764,12283
+69810,19221
+69811,1731,54994,30915,43113,67792
+69812,72192,13089
+69813,52837
+69814,63929,57527
+69815,43859,3354,27606,77404,51704,2952,72797,32882
+69816,15618,76999
+69817,26705
+69818,57738
+69819,69013,32167,824
+69820,39647,5670,58556
+69821,73958
+69822,21199
+69823,77206,62823
+69824,58800,63291
+69825,51064,44867
+69826,19544,80038
+69827,75918,10741,78730,33368
+69828,57981,71505,21752,43481
+69829,10830,65422
+69830,19170,27034
+69831,80496,74962
+69832,36639,77588
+69833,18921,57410
+69834,52467
+69835,2449,26157
+69836,35400,53045,37804,43929
+69837,17653,78670,13454,13948,43344,67400,21264
+69838,26689
+69839,57798
+69840,49169
+69841,78393,25736
+69842,19739,34245,12905,17319,54454
+69843,8329,38195
+69844,25830,14527,19270,17180,8619
+69845,9924,78752,57225,42697,27356,35070,34112
+69846,15113
+69847,69632,65402,68527
+69848,18689,27510,6985
+69849,13919,40021,75022,71909,50520,57442,4606,61210
+69850,57828
+69851,35401,28225
+69852,1223,46713,56727,5757,18306
+69853,58816,48806
+69854,37646
+69855,40975,13008
+69856,30309,79474,68760,75210
+69857,75651,3736
+69858,27922,73069,40753
+69859,23440,15464
+69860,31409,10563,45865,22424
+69861,11727,52596,11969
+69862,75886,27319,61872
+69863,32186,78917,69497
+69864,15217,60372,23399
+69865,80285
+69866,17925,15113
+69867,22058
+69868,1529
+69869,7009,47330,56435,18771
+69870,44064,44664,73942,11727
+69871,40541,77597,41425
+69872,54763,65942
+69873,78226
+69874,36589
+69875,66534,75940,7560
+69876,66152,44207,58928
+69877,6236,16088,60023
+69878,78511,67546
+69879,55794,33534
+69880,14838,19696,29890
+69881,34743,25063,73480,45491,78225
+69882,69129,12939,49935
+69883,17468
+69884,53419,67284,61247
+69885,59877,71617
+69886,15647,26256,24360,41218
+69887,36713
+69888,39483,6229
+69889,33067
+69890,3404,1074,17301
+69891,72483,44468
+69892,38279,5925,3248,10644,72588,71603
+69893,80152,59717,35792,47589
+69894,79039
+69895,54108,32737,33367
+69896,71246
+69897,26963
+69898,17143
+69899,53951
+69900,22433
+69901,25574
+69902,32186,42068,61682,45949
+69903,52203,27905,44764
+69904,65894,60693,27655
+69905,30655,35302,78518
+69906,5056
+69907,44277
+69908,6177,64842
+69909,28597,38146
+69910,73387
+69911,18899,36107,50267,42103,54299
+69912,34173
+69913,24070,70937
+69914,18840,38539,69835,60950
+69915,59238,57523,81921,58552
+69916,81775,50502
+69917,34080
+69918,44446,11316,47221,7110
+69919,73602,22784,9329,52184,11001,63453,5064,78157,14561
+69920,16034
+69921,78259,74810,79734,713
+69922,7839,40311,76133
+69923,61015,56658
+69924,9606
+69925,36722,54280
+69926,15341,20954
+69927,30950,28091
+69928,65713,62897,81016
+69929,20746,34333,27761
+69930,67786,26294
+69931,22621
+69932,61007,56042,16637
+69933,51624,18151
+69934,9888
+69935,72711
+69936,14965,43000,34074
+69937,10462,81725,7287
+69938,55554
+69939,76909,1426
+69940,8040,19590
+69941,40282,14538
+69942,59984
+69943,33902,79821,45891
+69944,80712,67762,47119,40373
+69945,46082,5254
+69946,67233,49362,38954
+69947,57265
+69948,20407
+69949,42637
+69950,31724,162
+69951,48712
+69952,28032,51326
+69953,43747,27645
+69954,28071
+69955,12663,25195
+69956,34935,68017,45651,24856,75635
+69957,27890,66128,76616,71054,78921,19604,79419
+69958,68714
+69959,63846
+69960,44901
+69961,13591
+69962,30319
+69963,67132,46804,51165
+69964,22410,69947
+69965,17604
+69966,39308,42583,66573
+69967,73048
+69968,7490,8941
+69969,53312
+69970,30675,38261,29427
+69971,48932,48157,42773
+69972,3064,947,79907
+69973,19360
+69974,19340
+69975,18560,70889
+69976,73981,71684
+69977,48742
+69978,32197
+69979,15629,1853
+69980,54605,60627,35818,76463,50118
+69981,65061,11248
+69982,29281
+69983,72592,52216,17466
+69984,9402,39362
+69985,49703,76800
+69986,73630,38340
+69987,64306,3566,31529,610
+69988,60499
+69989,67042
+69990,44839
+69991,24483
+69992,62362,61587,20165,1550,61918,20121,63424
+69993,18049,49296
+69994,52901,58468,34105
+69995,3440
+69996,2898,17743
+69997,17119,68188,44405,5200
+69998,51182,26338,44619
+69999,76571
+70000,2898,26691
+70001,73744,64346,26298,53063,77285
+70002,40990,51595,43588
+70003,18596,68254,71260
+70004,25236,21680,43393
+70005,47241
+70006,15900,48515,2786,81182
+70007,33591
+70008,33452,13425,56756
+70009,81618,33841,9180,65727,56804
+70010,40941,33824,43733,33325,15479
+70011,34400,70351
+70012,25928
+70013,37698
+70014,41189,12909,61680,71093
+70015,47930
+70016,66275,28000
+70017,22846
+70018,61453,17097
+70019,36120,10896,20398,45520
+70020,72805,24987
+70021,14979,50156
+70022,17104
+70023,68988,20095
+70024,22774,57313
+70025,5705
+70026,57260,7326
+70027,12160,42406,35249
+70028,45788,6999,50660,49776
+70029,40505
+70030,43335
+70031,72608,26804,46982,77879
+70032,79533,77755
+70033,77412,77823
+70034,74606,35241,25870,9818,46571
+70035,42519,31541,47819,52212,32851
+70036,8839,28013,67664
+70037,17749,43263,50058
+70038,61278,44415,40527,12194,60910,5230,75100
+70039,44789,53170
+70040,21901,7782
+70041,2549,56503
+70042,48893,49013,74298,54421
+70043,61222
+70044,1181,61414
+70045,65454
+70046,14006,9385
+70047,56152
+70048,3379,74952
+70049,33903
+70050,16888,14717,3159
+70051,64041,4168,27415,6055
+70052,65643,2565,54145,74078,52747
+70053,74776
+70054,12255,67781,11653
+70055,67356
+70056,1274
+70057,49606,39526,11636,30163,41727,65258
+70058,24552,57334,46671,31935,64983
+70059,60040
+70060,70100
+70061,37849,79513
+70062,41853
+70063,4224,23471,21261
+70064,9334,15112
+70065,62232
+70066,30850
+70067,49040,24290,21972
+70068,1807
+70069,3054,64724,45051
+70070,15609
+70071,52030,32486,61002,32485,59102,25960
+70072,7660,31030
+70073,36,37275
+70074,57314,9803
+70075,76935,43653
+70076,58817,1306,68438,8760,30421
+70077,70513,7136
+70078,45774
+70079,13129,81414,26296,60665,6458
+70080,42965
+70081,75678
+70082,26945
+70083,15165
+70084,9055
+70085,1184,58133
+70086,71649,43572,75660
+70087,77646
+70088,37689,7803
+70089,49584
+70090,12811
+70091,10462
+70092,57084,79964
+70093,63883,74311,59982
+70094,40449,37167
+70095,32384,20429
+70096,27988,42025,35015
+70097,14058
+70098,53037,7860,12115,56234
+70099,43164,5877,30163,72265,28115
+70100,45558
+70101,67506
+70102,25686,18025,9666,13635,57540,26153
+70103,69045,23317
+70104,27068,55717,81479
+70105,14067,42152,786
+70106,13521,40849,18297
+70107,77829,45361,18742
+70108,20016,13173,73489
+70109,49981,64931,44737,30888
+70110,60241
+70111,5597,68783
+70112,25684,44684
+70113,1371,55750,64373
+70114,68612
+70115,13806,5699
+70116,47658
+70117,27537
+70118,51628,9604,63073,78370
+70119,68792,13269,14640
+70120,18386,50465
+70121,21042,35468
+70122,67524,36936
+70123,3662,23409,46650
+70124,52568,42702,36172
+70125,47048
+70126,75032,18277
+70127,61019,13754
+70128,57432
+70129,45877
+70130,18265,19458,20412,30788,62893,54328
+70131,26039
+70132,19632,27355,76466
+70133,80574
+70134,26099,49861,2114
+70135,15980,43554,5656
+70136,53183,1492,7689
+70137,48723,79696,39993,11273
+70138,66173,36730,68209,4960,74435
+70139,13666
+70140,50527,71847
+70141,20466,8963,4194,56890
+70142,13620
+70143,3933
+70144,48189,6286
+70145,58680,18903,38625,76610,74974
+70146,143
+70147,25570
+70148,58593
+70149,38342,57573,21170,5678
+70150,23075,46807
+70151,4676,35203,51885
+70152,74428,63451
+70153,18245,48936,42711,14693,16007,62609
+70154,45268
+70155,65408,6101
+70156,21991,184,62210,71218
+70157,10573,11675,29861,65378,13416
+70158,11791
+70159,59949,35650,1542
+70160,81320,29293,49342,69935,70400
+70161,59265
+70162,24047,48537,52377
+70163,42609,15624
+70164,3137,80117,5386
+70165,28234,31164,30003
+70166,32500
+70167,21284,77910,17467,41435,9670
+70168,71874,7792,40247
+70169,38847,12123,49539
+70170,19043
+70171,22062,52612
+70172,21398,19881
+70173,52714,2682
+70174,36394,36714
+70175,60450,54067
+70176,42295,75503
+70177,59438,62891
+70178,80568,5248,1480,163,15572
+70179,37955,18604,40836,46727
+70180,67313,31760
+70181,43872,52394
+70182,60033,26397,75598
+70183,81162,30335
+70184,16312,53555,73579
+70185,47151
+70186,54104
+70187,7113
+70188,68281
+70189,62060
+70190,7393,13400,67658,75904
+70191,38535,50773,53278
+70192,55139,42936,22345,29766,34638
+70193,54760
+70194,9137,14721
+70195,3922
+70196,36953,30644
+70197,55610,79170,7157,73173
+70198,71297,8851
+70199,46387,11626
+70200,58713,18263,69036,76767,45520
+70201,27568,18840,32832,68284
+70202,55501
+70203,23906,68717,14753,13290,28630,47550,42033
+70204,9985
+70205,66313,74195
+70206,78283,45909
+70207,1776,40402,23249,71982
+70208,17268
+70209,10790,46417,26719
+70210,47609,50154,62423,69847,17184
+70211,45784,58820,1469,1141
+70212,62105
+70213,6234
+70214,80470,55114,74266,7474
+70215,80215
+70216,26298,53722,69708
+70217,77490
+70218,22368,16291
+70219,10670
+70220,33615,69977,28666,79469
+70221,37155,46619
+70222,64782,56589,21394
+70223,19214,6307
+70224,80490,72742,41684
+70225,31421
+70226,31876
+70227,80684
+70228,28333,42144,18342
+70229,67529,43785
+70230,12235,69821
+70231,33616,2,50984,45487
+70232,60222
+70233,30305,20779,80266
+70234,36813
+70235,20417
+70236,36523
+70237,74562,18102,51123
+70238,71392
+70239,34029,30934
+70240,38919
+70241,15548,74845,2963,73557,75911,37042,8974
+70242,59164,50933,67041
+70243,73906
+70244,58578,34841
+70245,77877
+70246,35133,73564
+70247,11146
+70248,65913,69976
+70249,75825,40872
+70250,48927,15752,11811
+70251,74433,65900
+70252,17767,58051,23512
+70253,71807,4279,29725
+70254,72850,73070
+70255,2982,71187,5853,66715,10529
+70256,55960,2687,16877
+70257,69639,81533,75923,59320
+70258,76376,61365,52488,20530,30930,14016
+70259,46865,81321
+70260,34650,36328
+70261,10256,71181,50074
+70262,24006,67485,53055,15878
+70263,47023,61845
+70264,2888,47483
+70265,25357
+70266,48516
+70267,22451
+70268,53381,47746
+70269,75140
+70270,24192
+70271,10434,55540,51964,41693,67769,3213,6964,78314,56790,38480,26286
+70272,79410
+70273,37779,58146,16484
+70274,5475,61131
+70275,76691,73178,41939,111
+70276,21168,36554,77029,55307
+70277,78640,14409,5212,1647
+70278,70676,2681
+70279,77298
+70280,47518,50417
+70281,20768,68825
+70282,79153,72973
+70283,8369,70545,13349,50689,60067,45390,25330
+70284,66116
+70285,15808
+70286,22580,35598,30693,64601,65163
+70287,36898
+70288,79384,2933,79500
+70289,63222,35969
+70290,55599,3209,4328,70888
+70291,29320
+70292,57884,3343,54169,62442,27423
+70293,13784
+70294,20823
+70295,15211
+70296,31246,66986,28373,12211
+70297,60457,12964
+70298,47568
+70299,35678,66446,77161,68457
+70300,17391,78953,1820,46208
+70301,72621,17767
+70302,7298
+70303,54183,79202
+70304,80785
+70305,39797,12722,77619,19001
+70306,27662,45760
+70307,62809,76645
+70308,55011,82084
+70309,69251,65166
+70310,23626,12208
+70311,41345
+70312,44866
+70313,1227,12557,23338,13774
+70314,48050,27067,54105
+70315,68828
+70316,50004,15479,65230
+70317,32227
+70318,53709
+70319,64393
+70320,69224,75073
+70321,46855
+70322,44220
+70323,47855,32716
+70324,3504,51587,74365
+70325,11039
+70326,1104,27033
+70327,125,4337,43134
+70328,30190,46113,23785,51091
+70329,19612
+70330,36860,82019,78416,18309,26864,29154
+70331,58223
+70332,66536,20085,60242
+70333,46414
+70334,432
+70335,31173,18227,33402,28160,42050
+70336,16783,118
+70337,16303,65311,3187
+70338,9418
+70339,67008,38174
+70340,19354,71266
+70341,60604
+70342,73294,63929
+70343,74286,29099,59928
+70344,24548,26553,37109,36088
+70345,52365
+70346,25616
+70347,66906
+70348,40408,53230
+70349,71645,42439
+70350,23293,45812,33734
+70351,23226
+70352,62135,9824,77547
+70353,2818,15669,47615,80165,5012
+70354,21263
+70355,72550
+70356,75953,45217,5924
+70357,56864,50879,63963,38136
+70358,61864,13276,77087,428,31136,15609,23402,1930
+70359,56121,56905,28075
+70360,3209,55798,10265
+70361,80387,55197,31477
+70362,64396,52106
+70363,69135
+70364,35823,22939,49378
+70365,33760,15173
+70366,64475,5253,57709
+70367,14768,24003,32852
+70368,19038
+70369,80774,42854,28867,27935,65983
+70370,7489
+70371,77743,7657,77700
+70372,39032,34668
+70373,30663,17960,15023,66836,77453
+70374,10804,24672
+70375,48568,7201,41418
+70376,41474
+70377,42017
+70378,66220,35578,60375,62508,8044
+70379,17089
+70380,20533
+70381,77166,71466,22536
+70382,12365
+70383,79434,19953
+70384,9318,5491,30288
+70385,71600,71747
+70386,56988,38550
+70387,20400,55154
+70388,8268
+70389,78158
+70390,73317,30494
+70391,37710,47603,13587
+70392,54038,70309
+70393,69692,46321
+70394,40994
+70395,31484,44955,57670
+70396,7565,22564,31371,38218
+70397,77887
+70398,15895
+70399,34719
+70400,70654
+70401,12964,37231,54438
+70402,36872
+70403,71924,64954,59507
+70404,7957,66320,22403
+70405,54270
+70406,75455
+70407,79800,56111
+70408,36659,67582,3107
+70409,81320,23541
+70410,76100,62293,16712
+70411,67473,54851
+70412,55278
+70413,74683,1488,30867,49362,36847
+70414,1745,24549
+70415,38094,65106,60453,18983
+70416,36244,62445,73052,47671,60054
+70417,20719,37663,25044,5767
+70418,7267
+70419,35775,57607,4206
+70420,29347,28616,23792
+70421,45505,53878,79518
+70422,69166
+70423,13456,20225
+70424,75217,37331,22742,80339,17161
+70425,75745,22293
+70426,70611
+70427,4002
+70428,19598
+70429,12365
+70430,53816,44392,28578
+70431,47844
+70432,66750,49548,72911,16596,43175,15102
+70433,71838,55586,71355,80893
+70434,15653
+70435,81237,3545,61860
+70436,25025,31974
+70437,68488,46082
+70438,65611
+70439,25595,72146,74447
+70440,72855
+70441,43564
+70442,67036,32156,18105
+70443,68962
+70444,48085,52898
+70445,42578,37124,72917
+70446,25223
+70447,54798
+70448,55180,20783
+70449,49707,28369,52677,52477
+70450,56705,63240
+70451,29817,42827,34730
+70452,57503
+70453,11653
+70454,75557
+70455,17234,52522
+70456,65331,2009
+70457,78712,2597,81696,62020
+70458,22061
+70459,17256,38558,33205,9070
+70460,3001
+70461,49595
+70462,4461,368,24721,8431
+70463,69155,28437
+70464,46195,69465,71984,23606
+70465,65157,80944,8271,51832
+70466,11659
+70467,35787,23757,48370,47160,20037,5257
+70468,34310,17798,19960,40102,22599,2368
+70469,22743,45168
+70470,78745,65746
+70471,13850,50301
+70472,20913,61059
+70473,58412,64236
+70474,54956,42187,55040,69420,4074,58680,42392
+70475,81989,4316
+70476,36711
+70477,60627
+70478,38066
+70479,38285,36512
+70480,73015,30769,62826
+70481,37424
+70482,66940
+70483,53424
+70484,31869
+70485,72309,55285,35730
+70486,9189
+70487,14411,7080,60162
+70488,37454,261
+70489,12596,14102,24884
+70490,70304
+70491,32805,34525,18882
+70492,25673,23106,8121,72599,837,59558
+70493,63619,10743,27502
+70494,51657
+70495,1216,24963
+70496,78387,19570
+70497,60193,55355
+70498,77793
+70499,18832
+70500,80066
+70501,15195,69887
+70502,23935,10393,77235,79837,10689
+70503,27959,40644,40056,5981
+70504,44383,70315
+70505,74914,29758
+70506,72550
+70507,27246
+70508,23080,21901,167,43434
+70509,31865,66705,65058
+70510,28061
+70511,68309
+70512,31245,73583
+70513,55465
+70514,6603,61017,22558,47634,32958
+70515,81290
+70516,27959
+70517,43368
+70518,21256,69526,69250
+70519,64483,28056,71248,16274,68057
+70520,52782,4752
+70521,50996,59342
+70522,37914,76129
+70523,22898,62715,52593,76655
+70524,55521,633
+70525,65232,4281,4118,51549,26693,44183,19251,23993
+70526,4698,69627,27921
+70527,41924,40429,80718,76130,23290
+70528,45114,52165,12257
+70529,77361,81050
+70530,36532
+70531,51627,31633
+70532,41230
+70533,13882,29391,54475
+70534,40581,21557
+70535,22902,7695
+70536,14034
+70537,67778,81380,24142
+70538,70506
+70539,60160,52433,72661
+70540,28878,4761,43683,11542
+70541,45345,64406,76771,42346
+70542,80331
+70543,39850,38409
+70544,19758,11964
+70545,52407
+70546,29945
+70547,9901,2069,51656,78464,19269
+70548,2023
+70549,41607,16855
+70550,31687,42186
+70551,37942
+70552,66815
+70553,431,47556
+70554,12918,71561
+70555,62228,78373,51959,17609
+70556,63513
+70557,992
+70558,65340,59238
+70559,43095,71257
+70560,67526,8868,15353,12003,21057,26340
+70561,54986,29352
+70562,18906
+70563,3974
+70564,36183
+70565,48333,78362,34838
+70566,32517,49632,36886
+70567,78200
+70568,77104,51119,67682,2992,44802
+70569,31563,20443,71031,73768,14631,20943
+70570,4319
+70571,50675
+70572,71902,67512
+70573,67310
+70574,64392,53372
+70575,12821
+70576,29611,49429
+70577,69086
+70578,40739,71928
+70579,73862,29748,48491
+70580,81083
+70581,58271
+70582,30602,73639,13997,18962
+70583,77791,14112
+70584,63594,48353,35058,62900
+70585,75908
+70586,6970,5818
+70587,25287,60389,68900
+70588,31501,54904
+70589,72222
+70590,7047,81908
+70591,60873,45610
+70592,48229
+70593,73361
+70594,72934,63962
+70595,46319,57364,34348,32546,30271
+70596,47850
+70597,69907,9931,56571,27608
+70598,39896
+70599,19775
+70600,64285,80065,11855
+70601,6156,46748
+70602,72498,59777
+70603,4280
+70604,50397,28252
+70605,10171,72709,27236
+70606,55949
+70607,66956
+70608,77498,54941,10874
+70609,67460,5895
+70610,78161,36182,4928
+70611,19214,37571,63656
+70612,74414
+70613,53621,11687,180
+70614,19151,21953
+70615,81696,68170,1222
+70616,26572,72818,60411,34348,76324
+70617,25619,1709
+70618,40429,7818,10125,9497
+70619,65340,9737
+70620,9983
+70621,74553,67607,49234
+70622,75889
+70623,21983,45937,46264,27862,43092,62665
+70624,2609,11517,19367,40474
+70625,5687
+70626,27573,17694,10489
+70627,66328,36849
+70628,250
+70629,78018,17196
+70630,23108,8876
+70631,65592,34068
+70632,24630
+70633,38220,19592,53997,36766,39220
+70634,61572,80914,54405
+70635,40223,70279,307,52698
+70636,48965
+70637,37062
+70638,19900,52691
+70639,78377
+70640,7794
+70641,32171,18533
+70642,11168
+70643,53192
+70644,77490,56669,8094,67299,67655
+70645,42121
+70646,57622,23200,79351,6476
+70647,70611,50621
+70648,3550
+70649,61967,32088,20086,60354
+70650,39339,62613,52988,11482,80839
+70651,53240,11745,52094
+70652,19543,64593
+70653,11430,62828,49377
+70654,33830
+70655,27864
+70656,79864,72446,8535,7516,5991
+70657,6345,54013,71445
+70658,27300
+70659,81631
+70660,21004
+70661,10475,27690
+70662,23296,43631,13077
+70663,13677,81417,5296,47155
+70664,20504,2667
+70665,35785
+70666,38835,17658,5535,15473,49878
+70667,29133
+70668,78001,23866,55055,12728,16620
+70669,67300
+70670,66437
+70671,54443,57429
+70672,11821,44310,40476,27023
+70673,45910,11898,31718,46885
+70674,34042,52516,70093
+70675,76036
+70676,36473
+70677,49056
+70678,77211
+70679,11769,43616,40085,8980
+70680,22463,51176,9564,31515,30573
+70681,72134,36427,21459
+70682,29221,13267,10000,13985,16100,18808
+70683,6831,31979,36076,75538
+70684,81480
+70685,79920,29531
+70686,41627,57566
+70687,54176,40562
+70688,81874,81462,22410
+70689,29043
+70690,30473,30881,47484,24809
+70691,38696,29695
+70692,55519
+70693,81149,12198,20319
+70694,12229,40398,64814
+70695,77524,24024,55906,69090,29328,31887
+70696,67260,13952
+70697,18403
+70698,61819
+70699,57010,26123,62888
+70700,16710
+70701,47086,59490
+70702,25566
+70703,53751
+70704,53886
+70705,77997,786,75541
+70706,76002,81399
+70707,44207
+70708,13388
+70709,13368,30500
+70710,3951
+70711,81874,49837,78619,18166
+70712,40338,40483
+70713,29104,18607,3759
+70714,26550,5602
+70715,61199,45342,78073
+70716,20750,18351
+70717,72205
+70718,19808,17958,34671
+70719,53316,60383
+70720,32427,14450
+70721,70484
+70722,54361,72564
+70723,17527,50856,76504
+70724,23885,80875,9147
+70725,21153,38305,70314,23168,6184,63064
+70726,41773,59169,10939,3420
+70727,32105,49112,80284
+70728,31964,41150
+70729,64152,73447,76598,70392
+70730,50500,6180,28203
+70731,55965,76769,15095,55379
+70732,48251
+70733,79906,14054,23804,80861
+70734,32020,36692,78301,3649
+70735,27994,76018,68005
+70736,4452
+70737,26427
+70738,70786,23255
+70739,38678
+70740,25448
+70741,47401,72783,61310,55236,78719,6900
+70742,61194,18074,43513,29229
+70743,67653,33275,54121
+70744,49067,69093,14596,25910
+70745,32654,27990,27173,66934,53095
+70746,78892,60238
+70747,23385,79079,8221
+70748,74899,48765,43742,50759
+70749,56538,56308,68951,23787,35269,18862
+70750,58931,62563,40281,26144
+70751,80529,74391,25780,27386,11366,59073
+70752,41346,59693
+70753,36606,33526,15854,62589
+70754,59196
+70755,23128,60580,45136,60579
+70756,18927,28867
+70757,23257
+70758,77792
+70759,31963
+70760,12183,17023,73795,64081
+70761,16885,24397
+70762,42912,65356,12340,71412,29668
+70763,24239
+70764,45413,50324,6103,25152
+70765,67329,35274
+70766,33977,46510,22331,24816
+70767,79400,30737
+70768,2601
+70769,24429,61565
+70770,72460,43161
+70771,58091,17624,68952
+70772,63565
+70773,58846,67835
+70774,4033,1961
+70775,78699,49403
+70776,43717,7216
+70777,42862,72323,13001
+70778,68323
+70779,58180,28,20915
+70780,25426
+70781,21101
+70782,38840,42767
+70783,28801
+70784,33435,2185,11785,80755,11443
+70785,48845
+70786,42147,51348,47184,30065
+70787,18219
+70788,78225,18195,42995
+70789,67718,41289
+70790,70167,13885,35952,63645,81629,20861,38543
+70791,20842,20132,71109
+70792,77390,4968
+70793,53133,14422
+70794,20495
+70795,62456
+70796,24385
+70797,10741
+70798,78846
+70799,57908
+70800,45179,40060
+70801,61644,12052,55087,37269
+70802,18962,76427,58155
+70803,73689,31055,63113
+70804,76524,73232,447
+70805,50016,39457
+70806,55603,38171
+70807,15052
+70808,65793,30680,69313,51099,28250,56935
+70809,12
+70810,25297,75698,46795
+70811,58660,27971
+70812,26627,74400,55264
+70813,75679
+70814,67577,67070
+70815,58208,43109
+70816,41868,34532,2016
+70817,60296,45595,22378
+70818,64147,48984,56357
+70819,71427
+70820,11192,5125
+70821,15140,3735,2990
+70822,19570,1055
+70823,46525,67462
+70824,38579,76748
+70825,72461
+70826,74029
+70827,12736
+70828,43040
+70829,57473,60577,37320
+70830,78103,71551,34371,3682
+70831,32744,15844,32619,3128,62383
+70832,40671
+70833,78590
+70834,45083,35564
+70835,16580,5832
+70836,51910
+70837,60313
+70838,18683,36711
+70839,70122,65626
+70840,64530,13598
+70841,39393
+70842,11323,78700
+70843,72576,67236
+70844,63954,15312,53034,19647
+70845,78966,64283
+70846,47507
+70847,41378,2356,80976,11853
+70848,68375
+70849,70056
+70850,13522
+70851,32149,70126,2338,12301
+70852,44177,46639,20051
+70853,10808,60823,51686
+70854,74839
+70855,79060,15628
+70856,58109
+70857,35240,1305,79214,32808,64471
+70858,20950,65647,32341
+70859,46779,34608,30827
+70860,40840,15716,9157,40592
+70861,35685,69268
+70862,65590,33851,35669
+70863,3714
+70864,76493,78630,15566,25171
+70865,51108
+70866,55292,59207,34615,33339,61072,34774
+70867,77809,28611,34956,22449,56256
+70868,5165
+70869,34743,74634
+70870,64970
+70871,75054,52608,63623
+70872,72328,28743,17161,72332,16762
+70873,766,34816,34597
+70874,47114,36986,29429
+70875,36308,3563
+70876,36982
+70877,42440,70542
+70878,28715,58978
+70879,79055
+70880,45007,69353
+70881,60435,23608,36970,76171
+70882,1803,26316
+70883,27656,36431,6633
+70884,57460
+70885,80542,64393
+70886,61329,32030,39903
+70887,70900
+70888,31698
+70889,10665
+70890,76453,1765,6936
+70891,24265,21567,53644
+70892,74965
+70893,39426,3897
+70894,7129
+70895,71919,17618,46196,18060,32363,75648
+70896,71949
+70897,20230
+70898,221,49440,7085,39337,21140
+70899,20225,55951,65895,62473
+70900,55596,44515,50801
+70901,60556,11624,14057
+70902,22462,50120,7619,26229
+70903,80118,12045,6298
+70904,44228,79291
+70905,72225,61639
+70906,77723,31034
+70907,5261,45401,59941
+70908,77080,39357
+70909,40405,48254
+70910,67020,56953,68550,55474,6376,56357,22226
+70911,13356,63725,53664
+70912,7935,59984
+70913,63799,12819,53501
+70914,19736,23855
+70915,78834,19527,79980
+70916,50705,11390
+70917,71422,18710
+70918,15831,20788
+70919,26954,61973,31830
+70920,38140
+70921,80685
+70922,2747,13680
+70923,80124
+70924,22525
+70925,75624
+70926,55643,72285
+70927,53064,27760
+70928,64866,34405
+70929,30766,80456,78771,7850,13652,82114
+70930,71307,41999,47627,54991,80451,63718
+70931,22845,19719,676,78952
+70932,24601,78008,69746
+70933,80220,35653
+70934,71229
+70935,40139
+70936,70845,75683
+70937,59584,7883,22363
+70938,38266
+70939,38448,56302,60409
+70940,17941,18682
+70941,64465,49113,41276,26250,5650
+70942,75047,12705,18091
+70943,74762,27456,22020,73026,19533
+70944,28865,70196,46287,2766
+70945,20424,74645,23640,57044
+70946,3180,11274,21782
+70947,6073,34021,20048
+70948,29043,63159
+70949,12895,5894,80124,17292
+70950,40337,55543
+70951,21124,39565,74029
+70952,68110
+70953,48742,31302,52614,42890,14743
+70954,40558,26701
+70955,35940
+70956,26483,8045
+70957,58805,46394,71658
+70958,54456,77902
+70959,61754
+70960,22445
+70961,60990,58314,75344,16419,20461
+70962,57465,44278
+70963,4597,34515,12215,47979
+70964,78191,9918
+70965,5421,36985,68902
+70966,67834,22992,52613,76134
+70967,79033,45455,20010
+70968,29443,79397,18586
+70969,1973
+70970,1228,55049,39860
+70971,13140,53643,19335,49226
+70972,41035,21318
+70973,50713,71557,75519
+70974,72815,73178,15462
+70975,27623,21824,13521
+70976,62558
+70977,20264
+70978,25741
+70979,54928,65300,54512,34514
+70980,68012,54692,9877,34909,71688
+70981,52900,70232,31615,12813
+70982,55770
+70983,24168,59141,45108
+70984,24887,40149
+70985,69222
+70986,23114
+70987,45091
+70988,80216,74992,44596,72722,54344
+70989,11553,45142,14347,45729,17599
+70990,37643,56955,67825
+70991,62816,16571
+70992,25083,54950
+70993,31539,24178
+70994,73776,52255
+70995,5798
+70996,1632,1267
+70997,25612
+70998,56473,20597,71777
+70999,80090,54422
+71000,23189,33303,16135,63475
+71001,15155,1578
+71002,64478,31986,80026
+71003,20466,51363,53529,30907
+71004,32193,23631,41704,60243,13022
+71005,77791,60348
+71006,303,79941,29705
+71007,25207,49114,5311
+71008,51626,39574,6378
+71009,25040,69057,10212
+71010,59006
+71011,12779,19761
+71012,13654
+71013,17739,59099,61594
+71014,77771,33638,23989,79633
+71015,34124,76550
+71016,80126
+71017,71836,9868,4953,39518,61350,44366,6682
+71018,57416,25685,37331
+71019,15271
+71020,71108
+71021,23674,19130
+71022,5677,25034,78431
+71023,24627,49204
+71024,23950,70498
+71025,77054,48493,42272,78279
+71026,33824,80001,61715
+71027,72064,60942
+71028,20277
+71029,21128
+71030,56933,63485,62184,29946,58082
+71031,26224,54130
+71032,65338
+71033,58769,43003
+71034,59984,44040,29806,35495
+71035,45721
+71036,46347,58563,69589,31419,55512,35449,35849,22227
+71037,78511
+71038,70125,37192,82059,22321,30112
+71039,17199,69795,9220,62611
+71040,76363,44189
+71041,32555
+71042,46899,21353,75858,60333
+71043,54873,9037,11181,28411
+71044,48210,45066,53611,73360
+71045,33336,39173
+71046,5612,30428,56663,59825,29150,23747,64766,61269,57682
+71047,32092,34169,6753
+71048,28776,5612,28893,48338
+71049,54682,59252,42952
+71050,41910,30849
+71051,47150,70045
+71052,80012,36213,2519
+71053,9095
+71054,19340
+71055,66441,21803,45484,37867
+71056,56063,9396
+71057,23756
+71058,3831
+71059,35426
+71060,6223,11396,11651
+71061,59273,1868
+71062,6315
+71063,78387,17606,61782,29339,31405
+71064,49637,25146,6929
+71065,41792,20999,69401,71948,43709
+71066,35939,65269,79392,39070
+71067,54926,5141,80438,65184
+71068,34967,72402,37433
+71069,63078
+71070,76981,29379,27425,3641
+71071,20842
+71072,43416,9515,39175,70053,54651
+71073,33368
+71074,9009,36900,43765
+71075,9313,27090
+71076,59555
+71077,22135,17881,8796
+71078,56854,54766,31741,22612
+71079,77189
+71080,58182
+71081,70897,65240
+71082,24219,19258,9646,59453
+71083,53987,65941,19767,42186,2686,9760,36496
+71084,49302,16943,77196
+71085,13776
+71086,33282
+71087,76394
+71088,76901,26430
+71089,23207
+71090,55190,10661
+71091,72814,38476,6948
+71092,39308
+71093,66518
+71094,25534
+71095,65934,21491
+71096,25358,28233,24579
+71097,74955,57498,59815
+71098,53663,14241,12001,2600
+71099,41667,74626,59238,11191
+71100,58174
+71101,74700,11039,67460
+71102,53858,12589,29661
+71103,46561
+71104,50829,61836
+71105,68922
+71106,114,15713
+71107,24002,48756
+71108,81795
+71109,4280
+71110,18848
+71111,58334,56669,37589
+71112,72532,37908
+71113,26282,37117
+71114,19146,72556,6020,20523,54619,46721,67182
+71115,20132
+71116,30796
+71117,68536
+71118,1817
+71119,11776,67828,4035
+71120,42439,61220
+71121,43310,28885,73284,32413,49796
+71122,45331,11944
+71123,72662,16132
+71124,5165,22009,37251
+71125,30034,29620,71089,37971,72809,30293
+71126,6932
+71127,45947,20030,12098,46731,53244
+71128,55061,46618,55003,34569,79061
+71129,65175,79909,41938
+71130,17934,62382,54678
+71131,66953
+71132,67449,4423,58434
+71133,56991,37742,58898,25534,40021
+71134,46355
+71135,55025,9743,53208
+71136,31074,19894,3170,2457
+71137,49223
+71138,39482
+71139,2429,72098,69550,6503,43021,9170
+71140,48138,45720,76029,34837
+71141,58049
+71142,5106
+71143,34349,28915,23045
+71144,14947,79901,43803
+71145,9951,65186,29173,34516
+71146,2717,16931,67155
+71147,50004
+71148,25584,21458
+71149,78109,20366
+71150,73116,7060,9749,60756
+71151,765,54239,9022,6184
+71152,76150,60460,2986,11172
+71153,25595
+71154,16414,37706
+71155,69868
+71156,27452
+71157,59171,7628
+71158,67921
+71159,18015
+71160,46755
+71161,72165
+71162,57515,58050
+71163,46628
+71164,6683,54760
+71165,76378,52628,72068,10379,19908
+71166,61154,1209
+71167,49165
+71168,40139,39152
+71169,81113,4330
+71170,36266,76322,54875
+71171,70599,16407,15985,69308,70135
+71172,17704,58758,21273
+71173,23878
+71174,4334,60112,46216,79213,49446,45187
+71175,13662,49187
+71176,51949,37534
+71177,3834,66330,18359,26981
+71178,18838,26357,36908,75495,69682
+71179,4515,68211
+71180,80832,71265
+71181,26009
+71182,78304
+71183,59412,74810,63162,25575
+71184,11327,53491,11078
+71185,55569,25469,71427,35908
+71186,23902,17595,61425
+71187,33924,58172
+71188,14962,76818,14981
+71189,12415,38749
+71190,24292,44300
+71191,57374,5889
+71192,19820,17196
+71193,31946
+71194,24552
+71195,13188
+71196,33356,22513
+71197,23845
+71198,10182,11110
+71199,12562,6712
+71200,31384,46650
+71201,20564
+71202,77013,18630,50591
+71203,79318
+71204,15786,31926,18612,16724
+71205,29222,18284,63128,50993
+71206,23443
+71207,47085,249,70207
+71208,3209,6677
+71209,2989,18499,71763,77229,46303
+71210,23992,63376,55603,38924
+71211,53639
+71212,76306
+71213,21347,44315,24946,6604,34349
+71214,61034,14261,75852
+71215,6562,70768,23740
+71216,71195,74934,58427
+71217,2475,63247,67940,50014,72710
+71218,18499,51473,19506
+71219,69678,67418
+71220,48516,73147,52696,76117,4725
+71221,65879
+71222,65616,6325,28610
+71223,31615,61950,64302,48434,43398,21216,14283,64327
+71224,73738,76605
+71225,74547,31196,73788
+71226,36395,11484
+71227,60101,23149
+71228,40983
+71229,69063,67423
+71230,34117,9495
+71231,45736,63448,63928
+71232,37175,76206,52352
+71233,44488
+71234,71707,21751,8692,39489,48488
+71235,76930,62249,62054,2512,38997
+71236,4269,78336,1317
+71237,14317
+71238,70056,21891
+71239,59512,74193,7848,51481,44909,20084,42808
+71240,76468,23967
+71241,26228,80180,71761,39705,61592
+71242,7913
+71243,52801,31967
+71244,165,80329,19810,30089,76478
+71245,70317
+71246,36680
+71247,32354,65467,65840,6591,75795
+71248,16416
+71249,63035,55653,47546
+71250,16102
+71251,25991,47446
+71252,39120,8700
+71253,34327,41470
+71254,58334,26269,59771,36971
+71255,50645
+71256,1044,69842,54729
+71257,30712
+71258,27910,5941,61290
+71259,51755,57891
+71260,74308,75953
+71261,18011
+71262,38740,26709
+71263,10749,60634,45258,81513
+71264,74489,44211
+71265,57227,68959,33751
+71266,55450
+71267,72809,42044
+71268,44983
+71269,29092,45066
+71270,45647,64599,2923
+71271,29357,69018
+71272,70406,39373,51328
+71273,80017,25217,65406
+71274,2564,63024,7858,67602
+71275,72879,73828
+71276,29855,572
+71277,78147,2576
+71278,42694,49942,47374
+71279,78060,77540,39703
+71280,55002
+71281,7663
+71282,45522
+71283,8163
+71284,49763
+71285,27028,54389
+71286,1471,23556,27580,1400
+71287,79267
+71288,73643,46931,61578
+71289,5185
+71290,64866
+71291,58820
+71292,45189,74443
+71293,73806
+71294,79121
+71295,61345,63314,2889
+71296,56839,55197
+71297,66394,429,60488,40753
+71298,64889,16141
+71299,18967,45964
+71300,37660
+71301,31926
+71302,70444,74930,18005,24459,73086
+71303,66320
+71304,10447,9598,57711,55041
+71305,77196,17131
+71306,67697,74797,22061,54734,51421,41336
+71307,74543,39745
+71308,41960,52756
+71309,74322
+71310,61914,26241,25777,59430,4757,76078,78889,59992
+71311,80960,42758,37076
+71312,76846,20874,4994
+71313,19673
+71314,32227
+71315,21619,55311,68755,65811
+71316,70783,7128
+71317,80413
+71318,80733,47207,4326
+71319,64072
+71320,36943,66130,12497,80323,63832
+71321,20204,26920
+71322,47422,40417,75270,1801,12030,61227
+71323,16540
+71324,20442,61735,32319,54389
+71325,16369,47613,25520
+71326,51878,69718,12867,59604,25511,39077,33002
+71327,2509
+71328,9925
+71329,33723
+71330,43336,27914,33796
+71331,73250
+71332,64542,12730
+71333,77748
+71334,32685
+71335,73487,24028,35793,36975,30834,363
+71336,12333
+71337,25066
+71338,75454,79031,76930
+71339,64989,71032
+71340,7930,34580
+71341,23073,24434
+71342,64018,67576
+71343,49639,15990,29776
+71344,71696,222
+71345,16768,65120,11613,53850,6523
+71346,4225
+71347,70827,30097,50024,7977
+71348,48051,68618
+71349,53939,11536,9343,81034
+71350,49815,36154,82077,47447
+71351,69507,18813,46824,48751,40283
+71352,30015,18626
+71353,48001,82113,56151
+71354,18604,51839,64862,53340,36436
+71355,82026
+71356,45002
+71357,61708,8701,2305,38315,47173
+71358,74197
+71359,34721,71928,44075,8469,28265,55645
+71360,57901
+71361,15823,7007
+71362,53819,54936
+71363,72025,40117
+71364,43856,66107,58454,10848
+71365,43820
+71366,27849,39474
+71367,73160,10086,28739
+71368,11843
+71369,10142,47347
+71370,76498,303
+71371,2965,46070,24314,22977,25356
+71372,13745,16180,72317,38149
+71373,22751,16300,55633
+71374,78746,21445,47759,32518
+71375,13317
+71376,74133,51810
+71377,63058
+71378,54176,70154
+71379,70901,46685
+71380,16358,61225,16215,56791,7111,25298,33978
+71381,70877,49349
+71382,61620,45966
+71383,62797,28859,34444,7138,15230
+71384,5162,5832
+71385,42029,63842,20094,15692
+71386,5111,9379
+71387,45567,42372
+71388,3874,57156,22900,20711,5992
+71389,27652,26735,38777
+71390,62151,66132,18279
+71391,15419
+71392,7342
+71393,9020,38263,25759,74624
+71394,76407
+71395,30392
+71396,28260,3604
+71397,60255,38619
+71398,66737,35359
+71399,943,9381
+71400,61277,33760,25547
+71401,1997,5083,4107,38657
+71402,61980
+71403,23639
+71404,23117
+71405,50084,81560,29521,81474
+71406,47546,78624
+71407,8966
+71408,29094,2963,66199
+71409,68533,352
+71410,78678
+71411,23146
+71412,4786,2562,48903,61412,2526
+71413,46915,61626
+71414,9597
+71415,46867,36191,61034,72945,26111,25710
+71416,43856
+71417,75554
+71418,3717,36973,2724
+71419,58820
+71420,36344,73256,28553,46408,49643,34857,64703
+71421,70402
+71422,59666,77078
+71423,57303
+71424,15602,36280,56796,74128
+71425,52907,41287,21107,26488,79664
+71426,58644,46717
+71427,13827
+71428,72137,77421,52355,77910,44186,56838
+71429,12215,58374,4303,43945
+71430,9115,80497,9569,15909,72309
+71431,57683,26841,67911
+71432,63629,3875
+71433,3884
+71434,54241,71669
+71435,1716,16630,79036,39868,9738,38658,51500
+71436,46052,68464,79632,55407
+71437,96
+71438,80260,63282
+71439,55335,2589,15183
+71440,6062
+71441,69135,32204
+71442,56138
+71443,75864,35950,74751,44944
+71444,53620,42256,39927,36083,50943,34546
+71445,24301,50382,77926
+71446,14004,27479,69620,77268
+71447,3824,34883
+71448,22038,75518,39855
+71449,30373,31845
+71450,38592,1685,33004,38703
+71451,29378,18631,11868,48107,21143
+71452,10042,21633,54229,30592
+71453,61906,81641
+71454,58231
+71455,20619,6747
+71456,45734,42861
+71457,6073,74235
+71458,15361,52937,62813
+71459,8773
+71460,79852,27901
+71461,13519,776
+71462,73369,67000,61603
+71463,12487,41671
+71464,5213,20802,44258
+71465,68992
+71466,51179,62930,25188
+71467,25635,16554
+71468,41069,10121,21195
+71469,71735,25427,81563,5502
+71470,50257
+71471,66503,33700
+71472,20182,48336
+71473,77266,20198
+71474,21279
+71475,69283,56206,80394,51701
+71476,67647,61546
+71477,59873,35680
+71478,10171,75848
+71479,57432
+71480,16760
+71481,15951,7936
+71482,21427,40015,27083
+71483,1202,31741
+71484,2920,20718,73607,76585,18319
+71485,62247
+71486,55913,38136,67838,25380,62302,51623
+71487,39820
+71488,60284,4111,26502,30809
+71489,58637,25649
+71490,55264
+71491,1411
+71492,47120,54436,40875,47513,49209,73072
+71493,71347
+71494,50083,73378,27041
+71495,72243,62247
+71496,79864,25589
+71497,18187
+71498,6420,14529,60898,12897
+71499,20573,66333,6443,72641,77717
+71500,68066
+71501,61565
+71502,11563,26976
+71503,52316,79946,74491
+71504,21652,65730
+71505,42383,81029
+71506,34041,71054,79182
+71507,73958
+71508,46468,68260,49610,16380,75066,56335,25369,2218,21588
+71509,38056,1785,6937
+71510,69721
+71511,68500,66226
+71512,78742
+71513,70884
+71514,45025,8233,50578
+71515,13481
+71516,17919,60725
+71517,65022,10119
+71518,67701,53044,66569,54037
+71519,14303,48363,26267
+71520,36818,35837,5868,37293
+71521,74010
+71522,20776,71423,22569
+71523,7275,30035,8834,59701,27807
+71524,4171,49427
+71525,61001,66121,62449,53190,69541,22203
+71526,60752
+71527,37451,75959,71172
+71528,23006,23991,78998
+71529,48300
+71530,41797,73029
+71531,229
+71532,77256,22894,49844
+71533,38054,23276,662
+71534,45940
+71535,51057
+71536,29856,47383,36908
+71537,27062,65464,21570,37284
+71538,24507,12954
+71539,8295
+71540,63764,76995,58012,69597,78513
+71541,53415,21500,80117,18653
+71542,62816
+71543,63740
+71544,67622,80778,47743,77479,35245,9638,14223,67481
+71545,74104,42858,19473,12883,78041,66462,16792,40401
+71546,31321
+71547,9615,5427,43919
+71548,79274
+71549,75419,37046,63242,79154
+71550,11335,8781,23040,26115
+71551,17634,61317,23213,10170,49591,62910
+71552,49922,80210,65087
+71553,2641,17206
+71554,55307
+71555,40835
+71556,31345
+71557,539,61955,8383
+71558,36014,1970,50490
+71559,71988,75580,66381
+71560,29525
+71561,29123
+71562,469,1737,36758
+71563,32519,52088,44371,14979
+71564,63308
+71565,67282,24728,74716,12493
+71566,27650
+71567,15240,5318,37290
+71568,62721,46831,7203
+71569,26911
+71570,22516
+71571,55391,72088,41092,49505
+71572,65879
+71573,80383,54008
+71574,69376
+71575,57344,21020
+71576,25394,23470
+71577,48763,74422,4679,16041
+71578,53451,8343,12021,22944
+71579,32458
+71580,23920,20784,74766
+71581,27712
+71582,65211
+71583,4379,76141,16208,55614
+71584,41043
+71585,32331,49560
+71586,54970
+71587,65352,1670
+71588,45610
+71589,19526,42425,5278,71956,28357,58741
+71590,72322
+71591,49717,4459
+71592,41966
+71593,27381
+71594,41572,19470,11342,25682,24660
+71595,1022,30647
+71596,44344,76984,56235
+71597,78083,49321,9787,66485
+71598,12769
+71599,67611,51057
+71600,31643
+71601,67773
+71602,68879,6246
+71603,36722,66857,33810
+71604,62711
+71605,17235,38653,47744,62424
+71606,26292,61958,72045
+71607,43430,56539,8482
+71608,81677,16959,80883,11179,55419
+71609,839,23728
+71610,47739,69063,21814
+71611,51736,47851,42592
+71612,39110,70171,64823,44062,8661
+71613,66742,75491,19734
+71614,65211
+71615,2217
+71616,30809
+71617,71470,11172
+71618,37687,30249,27089,2667
+71619,15751
+71620,21488,15370
+71621,9067,12009,53608
+71622,22388,79006,58875,5857
+71623,37445,5390,43197
+71624,38857,57815,23578,19610,51846
+71625,63572,25743,66673
+71626,712,54432
+71627,55676,63253
+71628,15489,48097
+71629,57732,11306
+71630,18836
+71631,68806,11960,52290,18291
+71632,70012,8426
+71633,38771,42483,27368,14166
+71634,73074,15336,29053
+71635,30958,50758,43922,24172,62739,34727
+71636,54680,25322
+71637,17970,73757,29241,53582
+71638,43579
+71639,53413
+71640,26412
+71641,11701
+71642,80369,7658,31182,63218
+71643,8012,70858
+71644,46514
+71645,59019
+71646,56928,70496
+71647,12290,40959,49540,19321,31271
+71648,36807,65624
+71649,78256
+71650,65147,57622,2523
+71651,44707
+71652,57001,79185,65147
+71653,45309
+71654,48951,19242,46963,18266
+71655,392,74512,26984
+71656,71783,36214
+71657,72641
+71658,35476
+71659,48312,17266,36153
+71660,57830
+71661,21272
+71662,35664,59069,72791
+71663,52692,34042
+71664,184
+71665,61447
+71666,50558,1714,21836,54936,78704
+71667,68377
+71668,54665,58468
+71669,35523
+71670,24586,19616,2031,16859
+71671,45237,15372,26579
+71672,49105,59830
+71673,71969,5040,11128
+71674,2569,59322
+71675,81474,30462,54904
+71676,5614,25619
+71677,65522,50174,28447,49140
+71678,9648,29380,11691,10438
+71679,26585,6048
+71680,517,23340
+71681,67512,80049,77943
+71682,47369,3188,32701,78419,50343
+71683,17209,12381,63216,8225
+71684,75832
+71685,4512
+71686,63980,53709,47870
+71687,34513
+71688,17007
+71689,81660,6789,60439
+71690,5248,38886
+71691,4406,40567,46686
+71692,79800,15599,45199
+71693,79239,49705,32061,81646
+71694,80044,60424
+71695,43689,52508,4738,41234
+71696,61242
+71697,297
+71698,56752,51960
+71699,67774
+71700,82158,4191
+71701,44728,63627
+71702,12176
+71703,80343,56240
+71704,40139,39450,60404,62056,29326
+71705,73584,22708
+71706,74455
+71707,56581
+71708,28408
+71709,54838
+71710,9508,61297,74492,77878
+71711,50456
+71712,22584,78292,10516
+71713,47996,3292
+71714,26718,41716
+71715,48761
+71716,70906,17185,79761,66608,54945,56554
+71717,77090
+71718,51664,44946,36258,31128
+71719,54014,26795,18383,53895
+71720,80889,9049
+71721,81806,67091
+71722,57265
+71723,55963,69406,23454,78938
+71724,44473,59984
+71725,64900,38511
+71726,32932,45634,35448,69857,24131
+71727,2517,21037
+71728,18424,78921,62513
+71729,71220,55425,43128,80673,52850,71344,52395
+71730,4195
+71731,51862,64149
+71732,71375
+71733,75034,6024,39784
+71734,9987,68451
+71735,69237,16346,48861,15896
+71736,36778,14216
+71737,25447
+71738,53673
+71739,75423,47509
+71740,1234
+71741,71892,37603
+71742,24965,72164,4214,80975
+71743,11518,44517,13922,41540
+71744,27653
+71745,45198,20261,63107,30525
+71746,69299,51806,29749,4739,67980,55893,62466
+71747,9177
+71748,37841,8268
+71749,73814,79618,30323
+71750,37598,70707,73026
+71751,15464,42091,49082,48290
+71752,37639,44623,64599,54144
+71753,78817,31697
+71754,68313
+71755,8334,19603,62207,70173
+71756,41805,74004
+71757,15495,40710,20055,71569,5812
+71758,23718,48953,50449
+71759,71434,1586,31477,10189,63342,34771
+71760,20112,23927
+71761,15402,40620
+71762,47016,36663
+71763,25620,63513,64824
+71764,31943
+71765,81641,28489,10822
+71766,31291
+71767,66012
+71768,47194,6790,11199,58952,42121
+71769,69804
+71770,16401
+71771,42797,35596
+71772,18105,6643
+71773,7168,80937,75921
+71774,18377
+71775,56930,19948,17542
+71776,34626
+71777,48133,8930,10184
+71778,23275,54705,39004,32139,36199
+71779,36200
+71780,24777
+71781,58794,75827
+71782,19372,71926
+71783,37690
+71784,39142
+71785,43839,70419
+71786,80486
+71787,31463,24647,63138,57561
+71788,51469
+71789,69708
+71790,77825
+71791,58577,76160,25314
+71792,64613,34666
+71793,31749,3607,17798,6995
+71794,8703,42985
+71795,53668,22778
+71796,23332
+71797,56362,11039
+71798,4063,64468
+71799,6908
+71800,49056
+71801,7053,46636
+71802,51091
+71803,30475,63735
+71804,37221,31091
+71805,68990
+71806,57403
+71807,50510
+71808,51825,3931,61050,39735,34219
+71809,63963,66155,10479
+71810,45886,53950,10389,16650
+71811,18637,46946,54635,55911
+71812,52979,70768
+71813,19955,80582,43304,23085
+71814,74151,17171,42251,3738
+71815,13686
+71816,51044,72608,77676,54518,44845
+71817,16258,7394
+71818,75917
+71819,27675,65369
+71820,61008,60436
+71821,44764,14151,42244,52623,65486,58320
+71822,34274
+71823,51664,72382,4619,74159
+71824,30827
+71825,1000
+71826,23923,29625,37453
+71827,1907
+71828,32677
+71829,26357,325,41089
+71830,7941
+71831,55899
+71832,36280
+71833,35621,23653,20821
+71834,34449
+71835,65906
+71836,50172,3924
+71837,50848
+71838,53307
+71839,35130
+71840,48931,25655
+71841,21253
+71842,16149
+71843,20917,50380,37193,70583
+71844,47922,65645,76684,68782,26696,13411
+71845,10326,46246
+71846,18536,18777,50555,8081
+71847,55376,26872
+71848,34307,38960
+71849,2697,5090,1201
+71850,31128,47897
+71851,71168,59387,18886
+71852,25957,10689,3118
+71853,32248,33965
+71854,82186
+71855,35952
+71856,1781,69896,60905,57345
+71857,52362,30363,67192
+71858,76715,35912,39432
+71859,42387
+71860,4400,11141
+71861,58999
+71862,25167,76583,50595
+71863,17612,44128,27412,21728,19121,31685
+71864,18971
+71865,51408
+71866,76809,65634,45652,77125,10160,4221,18007,72934
+71867,23172
+71868,65790,51823
+71869,4347,57881
+71870,31645
+71871,49621
+71872,3638
+71873,27396
+71874,21013,35251
+71875,82179
+71876,30536,10752,30161
+71877,26685,66320
+71878,12661,32392
+71879,22466,11494
+71880,24044,49790
+71881,46133,36357,44975,75474
+71882,76060
+71883,7062,54916,53054
+71884,38799,27702,39137,33512,58076,66886,36478,35870
+71885,29680,5537,34062,27899,35107
+71886,75221,29932,66537,7981
+71887,47271
+71888,5255,6088,43838,74995,62653,43297
+71889,24301
+71890,17742,47502,29227,62525
+71891,56969,69214,4487,14759,41307
+71892,20379,4983
+71893,78069,38966,15421
+71894,28733
+71895,38822
+71896,44893,76274
+71897,35813,50521
+71898,25696
+71899,56318,41912
+71900,16392,77280,7869
+71901,7443,2807
+71902,24600,26547
+71903,65339,38662,35925
+71904,79019
+71905,6462
+71906,62804,62273
+71907,32458,36203,11931,33094,28349
+71908,27652,46728,81076
+71909,9735,18929,1925,27185,17684,3324,19672
+71910,60779,72374,28320
+71911,75192,70173,65324,31615,2922
+71912,60461,25883,68504,23098
+71913,58600,11728
+71914,26683,29826,48820,77401,51187
+71915,51484,51667,53203
+71916,73781,21874
+71917,76498,73224
+71918,26095,72811,66858
+71919,35185
+71920,48927
+71921,65543,19653,51782
+71922,38579,54060,36322,48485,47132,59449
+71923,35363,49940,73357,73728
+71924,46429,30947,8959
+71925,13751,11056,27183,21042
+71926,28350
+71927,13770,39661
+71928,79592,46845
+71929,35282,43819
+71930,18836,31603
+71931,18259
+71932,50304
+71933,48548,33765
+71934,56211,78675
+71935,54226
+71936,74402,39337,32213
+71937,53018
+71938,42260,51625,49390,39227,18005,59666,37427,20276
+71939,81779,40845,64956
+71940,35036,10975,81229,41024
+71941,2462,6372,36117,35420,52281
+71942,53069
+71943,52567
+71944,70849,70234
+71945,37065,28393
+71946,52473,9859
+71947,67276
+71948,55675,22651
+71949,33574
+71950,70498,21025,80152,76397,61708
+71951,51194
+71952,75174,61485
+71953,27972
+71954,66569
+71955,38751
+71956,69192,76909
+71957,34334,26023,28301,63282,77870,42216
+71958,53880,2707
+71959,64266,37903
+71960,43263,26537,22954
+71961,59369,66287
+71962,69190
+71963,9376,37517
+71964,9606
+71965,59877,67337,36465
+71966,20787,33531,12778
+71967,8214
+71968,24572,74465,57306,53318,3805
+71969,36971
+71970,42262,49017
+71971,53161,59186,81041,27631,48518
+71972,14358
+71973,11125,24219
+71974,46791,7991
+71975,2704
+71976,75290,2204
+71977,79176,27259
+71978,10217,18265,9597
+71979,56443,64616,64394,65437
+71980,78426
+71981,2802
+71982,77179
+71983,50831,65723
+71984,57866,81404
+71985,10642,13989
+71986,67182
+71987,53512
+71988,80256,56053
+71989,32138,75162
+71990,69072,67648,28817,34089
+71991,48395,69716
+71992,66323
+71993,53294,33907,34314
+71994,17328
+71995,34715,34111,70085
+71996,43401,9940,46157
+71997,56862,47396,68486,77839,18847
+71998,63552
+71999,68903
+72000,42254,11097,68030,49558
+72001,63483
+72002,44801,76127,32544,73957
+72003,43266
+72004,6403,47234
+72005,33272,61929,49801
+72006,61433
+72007,7782,23254,60949,55906,29202
+72008,28411,51232
+72009,48660,51430
+72010,18614,4838,75769
+72011,27655,12394,64280,57593
+72012,51434,60841
+72013,34671,45186
+72014,57262
+72015,37251,36882,55484
+72016,35302
+72017,56122,29397,18428
+72018,27948
+72019,2534,23850
+72020,36166,79130
+72021,50081,52228
+72022,48115,57857,56561
+72023,54650,45813,49047
+72024,9732,519
+72025,54716
+72026,79578,68417
+72027,39048,8451,68601,12037
+72028,35816,2748
+72029,44278,56777,49507,13761
+72030,21482,45466
+72031,7987,56617,30703
+72032,43332
+72033,1655,71660
+72034,3650,36781,55280
+72035,42123,11684
+72036,22640
+72037,64529
+72038,3340,62905
+72039,35537
+72040,47664,55621
+72041,1586,76782,26044,37084
+72042,34078
+72043,74465
+72044,27188,48193,58109,16169,57706,52470
+72045,54513,51936,48992
+72046,47692,50604,31455,46551
+72047,48892,68206
+72048,49333,25783
+72049,45417
+72050,26692,49230
+72051,77496,35111
+72052,4964,53386,34857
+72053,28600,44594,35219,21460
+72054,66783,34071
+72055,32299,12463,44293
+72056,36219
+72057,34043,80199,54704
+72058,60370
+72059,66843
+72060,69667,52280,14480,68421,69321
+72061,6612,80378,36333
+72062,78488
+72063,49060
+72064,52079,80672
+72065,22387,14886
+72066,17122,39500,14228
+72067,14393,16557
+72068,26057,62009,37669,62408
+72069,37938
+72070,45487,43322,50761
+72071,65426,59224
+72072,72854,17683,43104,2580,15857,19276
+72073,81785,52427,51332,30473,68359,48242
+72074,67698,19603,16559
+72075,1628
+72076,4785,72034,10966
+72077,1815
+72078,30869,52412,22671,42989
+72079,58599,76957,15822,54539
+72080,72194,34248
+72081,28029,19753,36304,41078
+72082,56428,64518
+72083,77185,40201
+72084,44049
+72085,36102,10686,13051
+72086,16327,17248
+72087,1128,20556
+72088,72100,1869,16036,11624,62322,45321,53159
+72089,67594,8608,25809
+72090,50887,48492,11490
+72091,17546,69203
+72092,23731
+72093,30194
+72094,26847,39150,38374,26087
+72095,40098,71855,28418
+72096,43502,80639,45448,33924,63140,18500
+72097,63790,30402,40332,52565
+72098,60607
+72099,77781,30064,80663
+72100,1055
+72101,36174,41317
+72102,69012
+72103,27959,71421
+72104,38490
+72105,31678,9180,24823,24297
+72106,16280,42453,78864,2752,60528
+72107,13238,62259,61492
+72108,59272,67923,31411,48720
+72109,40343,50614,53467,21017
+72110,12680,24643,8695,66649,39260
+72111,79397,81804
+72112,74166,40807,31037,1441
+72113,33411
+72114,38570
+72115,22014,44408
+72116,54870,77081
+72117,78544,34204,22764
+72118,27596,64018,61903,63023,27915
+72119,27816,60268,65245
+72120,23859,59900,78529,66796,39737
+72121,53233
+72122,335,38785,24677
+72123,20437,60367,81108
+72124,48194
+72125,37779,57553,68905
+72126,63986
+72127,68122,54968,33923
+72128,9433
+72129,52781,47925,17635,27543,75839
+72130,57166
+72131,37735,3393,52199
+72132,63730
+72133,77111,24594
+72134,23749
+72135,42462,52164,73982,18418
+72136,63417,79294,40147
+72137,48516
+72138,24435,63235,25956
+72139,70660,15153,17851
+72140,34204,56152,3472
+72141,15246,50865,24580,39377,36300,65627,40648
+72142,74492,11529
+72143,37836,17116,78577,79585,62358
+72144,26984,59058,16212
+72145,60054,6378,48360,35425,60833,19119
+72146,73268,55094,23903
+72147,41613,30317
+72148,35771,4862
+72149,76695,64843,29469,8633
+72150,60312
+72151,49281,38111,66369,52412,40797,76252,10904,57690,60206
+72152,69908,65778,63240
+72153,2678,64728,29937
+72154,26443
+72155,76919,25979
+72156,76344
+72157,80611,72697,52287
+72158,39856,696,20560,13995
+72159,67617
+72160,65264,2765,37392,50926,64458,64235,38208
+72161,32214
+72162,78032
+72163,550,60779
+72164,79050
+72165,10108
+72166,81606,43171,64494,37935,77699,56420,71798
+72167,48044,65658,56905,55532
+72168,72495,72974,61003,10062
+72169,25711,47022,38459
+72170,74147,61329,77733
+72171,4719
+72172,2355,12461
+72173,32500
+72174,56905,50506
+72175,17352,47850
+72176,39959
+72177,53540
+72178,39839
+72179,48101
+72180,75459,13997,39438
+72181,18493,25298,55974
+72182,11776,13451,63745,19884,18552,41888
+72183,62809
+72184,9839,29374,36277
+72185,41912
+72186,82179,51524
+72187,48262,19715
+72188,12241,65080
+72189,54197,23496,64451
+72190,37408
+72191,63025
+72192,43820
+72193,37788,38850,18807
+72194,37909,7464,34545
+72195,40189,15941,55609,33458,9692
+72196,52363,70911,64495,44547,17197
+72197,17369
+72198,20437,2501,32088,37455
+72199,11846,49192,44785,99
+72200,36038
+72201,17561,48377
+72202,25934
+72203,38087,35689,64211
+72204,30208
+72205,47278
+72206,18894,7085,17292
+72207,73889
+72208,52677,5725
+72209,69011,30698
+72210,31098,44087
+72211,14857
+72212,29437,29755
+72213,39390,68655
+72214,2033,44999
+72215,68009,59599,23196,10772
+72216,2011,64266
+72217,22153
+72218,3547,30380
+72219,50625
+72220,64123,43286
+72221,2557
+72222,39668
+72223,3780,63261,75355
+72224,46168,4862
+72225,52377
+72226,51778,71268
+72227,31000,74938,50805
+72228,20459,67689,57400
+72229,257
+72230,61064,41816,59013,27916
+72231,24677
+72232,75225,38668,28173
+72233,14495,81290
+72234,9181,57516,66533,13049,40542,11367,13525,14583
+72235,66742
+72236,68413
+72237,33375,38689,65397
+72238,33440
+72239,31410,82028,78051
+72240,64033,5649
+72241,56768,9617,77071
+72242,52210,9457,49785
+72243,69344
+72244,49697
+72245,48242,31294,43112,38109
+72246,71539
+72247,41345
+72248,77587,73067,17544,70036
+72249,38437
+72250,53334,24608
+72251,69223,11653
+72252,32788
+72253,36720,14433,22315
+72254,56791,48792,64293,5189
+72255,9510
+72256,121
+72257,30520,67466
+72258,68911
+72259,25775,61193
+72260,56441
+72261,11192,66716,57108
+72262,34779,40974
+72263,42106
+72264,26837,12867,56354,63994
+72265,60472,51984
+72266,27663
+72267,14431,80546,28597,25330,10744
+72268,13666
+72269,35544,52145,2713
+72270,80953
+72271,61735
+72272,35836
+72273,73706,30623,24736,47413,56571
+72274,51426
+72275,35749
+72276,27128,9518
+72277,41146,11451,76981
+72278,22069
+72279,20289
+72280,7727,6481,20000,45732
+72281,17001,78682,15245,63607,51526,40919,3829,11818
+72282,1870,4829,27741,71956
+72283,54207
+72284,47016
+72285,6844
+72286,3431,67150
+72287,59314,10110,16089,72819,14270
+72288,79027,8743,22810,82113
+72289,45841,46475,10355
+72290,20698,25321
+72291,69595,45366
+72292,36630,79624
+72293,14535,37886
+72294,18786,1652,30596,50984,3525,16254
+72295,22197,1754,35787,58439,25446
+72296,35274
+72297,32722,46821,40125
+72298,46303,24010,22970
+72299,57122,18703,49396
+72300,29464,26677,37636
+72301,37625,25256,12510,71427
+72302,73587,74768
+72303,43904,32379
+72304,40021,15880,29160
+72305,52207,31519,16781,59856
+72306,42944,52546,2579
+72307,80684
+72308,63202,48501
+72309,51052
+72310,29508,76643
+72311,80938,32481
+72312,38994
+72313,6402,55981,16283,54280
+72314,38766,31528
+72315,29733,9066,32650
+72316,59931,45853
+72317,828
+72318,44193,20446,21394
+72319,29751,29906,68728,5726,65330
+72320,49987,57779
+72321,11428
+72322,75959
+72323,70846
+72324,73786
+72325,35156,7268,30333
+72326,36475,54563,75495
+72327,72720,78038,33344
+72328,69433
+72329,49660
+72330,71770,22759,63318,32299
+72331,331,24630,66590,24868,56821
+72332,51214,18137
+72333,63046,53615,44025
+72334,39352,55030,72606
+72335,12641,26720
+72336,71485
+72337,47114,80196
+72338,69159
+72339,44796,61098
+72340,73585
+72341,80167
+72342,39923,43748
+72343,59540
+72344,5548,68418,13614
+72345,17240,13665,64380,48257
+72346,1783,4540,41626,26589,74773
+72347,54684,79449
+72348,47740,28711,42493
+72349,59318,72598
+72350,47569,25459
+72351,20846,60602
+72352,54201,42170,21964
+72353,4341
+72354,68110,16922
+72355,36975,44632,5204
+72356,28121
+72357,23943
+72358,3224,44262,50576,79527,19949
+72359,59462
+72360,54202,12061,22024,3216,15552
+72361,26522
+72362,52513,76760,49732,66620
+72363,3380
+72364,22786,66320,38484,20174
+72365,57189,66054,36111
+72366,25676,63591,50399
+72367,41798,38708,37696
+72368,43972
+72369,3779
+72370,10115
+72371,73368
+72372,72910,45480
+72373,2923
+72374,16842
+72375,70083
+72376,24052,32014,37107
+72377,4265,24043,57561
+72378,38435,51196,63005
+72379,31306,51897,42910,47822
+72380,42014
+72381,47833
+72382,24894,18344,63315
+72383,69304,69386
+72384,22074
+72385,32591,27386,7311
+72386,39491,52609
+72387,65209,51069,6300
+72388,46227
+72389,24944
+72390,48005,76705
+72391,72687,73587
+72392,3340
+72393,10979
+72394,74234,11782,14964
+72395,37408
+72396,27581,19847,65447
+72397,67376
+72398,22490,79647,47938,79642
+72399,29476
+72400,50289,1006
+72401,10995,28786,11464
+72402,42542,36614
+72403,26487,40331,556,69579,63689
+72404,22331,41569,45975
+72405,1486,49041,76427
+72406,45438
+72407,79962
+72408,12259,61194
+72409,54893,76294,33402
+72410,61199,12769
+72411,80329,8923,36635
+72412,76371
+72413,67257,40405,10329,41508,62857
+72414,62590,30450
+72415,39735,16836,381
+72416,45534
+72417,35700,80010,31121
+72418,36187,40832,31268
+72419,32020
+72420,4075,56933,34098,76798,81766,974
+72421,43227,31634,5131,10990,13678
+72422,52546
+72423,34504,32543
+72424,5363,12394
+72425,33297,73659,55017,36766,78283
+72426,44392,61871
+72427,43780
+72428,44776,78274
+72429,81361,13454
+72430,32806
+72431,23869,68542,37350
+72432,33599,11400,44222,11689
+72433,1238,58491
+72434,81424
+72435,71628
+72436,43607,45506
+72437,49329,58284
+72438,33992,34679
+72439,32338,79404
+72440,28387,42972
+72441,39691,27334
+72442,54946,50492
+72443,53080
+72444,14561,73572
+72445,21424,55387
+72446,7463
+72447,56029
+72448,28724
+72449,66187
+72450,27762,64238,14964,28512
+72451,44382
+72452,74045,47387
+72453,54340,57010,51859,9592
+72454,30502
+72455,31529,43197,77998
+72456,32152,3869
+72457,69214
+72458,71948,32944
+72459,34580
+72460,42383
+72461,30926
+72462,54513,38524,34029
+72463,42300,31913
+72464,9532,59529
+72465,31460,43949
+72466,30538
+72467,23924
+72468,79912,75599,39874,44887
+72469,47885
+72470,18998,81736,42929
+72471,52145,10518
+72472,43675
+72473,319
+72474,21110,39541
+72475,41058
+72476,42873
+72477,54658,56669,78566,24261,22554,5135
+72478,13804,60449,34424,56279
+72479,12104,74201
+72480,57035,32897,12887
+72481,38675,26293
+72482,46965,40738
+72483,54334
+72484,47065,39097
+72485,27620,65012,65985,33584
+72486,41161
+72487,42314
+72488,24449
+72489,26542,69374,61087,22272,70015
+72490,27972,76905,23554,69161,5191,29701
+72491,70470,31475
+72492,7052
+72493,12312
+72494,30774
+72495,32896
+72496,37315
+72497,69400,81756
+72498,48026
+72499,4359
+72500,62800,65142,35667
+72501,25236,77925,15988,20203,51597,1458
+72502,22065,13006,70165
+72503,47135,67373,72897
+72504,2648
+72505,35464,42942,52234,61861
+72506,71874,71154,35273
+72507,78437
+72508,3235
+72509,34435,70721
+72510,39011,15013,57881
+72511,22056,81702
+72512,25884,30052
+72513,24306,78419,59055,1386
+72514,63304,5962,50948
+72515,55465,38485,74535
+72516,79153,64260
+72517,65763,25817
+72518,946,4597
+72519,4341,38114
+72520,3994
+72521,22303,14372,48870,57656,19207,3797,3533
+72522,22587
+72523,55706,16531,46313
+72524,20562,43124,78484
+72525,38180,40327,67918,8322
+72526,60408,66031
+72527,30739,1552
+72528,54381,61025,76812
+72529,39469,10329
+72530,60160,48142,52013
+72531,20027
+72532,4278,61615,31788
+72533,6131,62285
+72534,28206,65610
+72535,1274
+72536,50638,20241,31554,19260,8376,70359,7483
+72537,81691
+72538,70934,66343,36991,10086
+72539,65461,10780
+72540,22404
+72541,31691
+72542,79169,26502,24406,40326,23673
+72543,37329,66149,78630
+72544,22502,33542,65125,58764
+72545,66902,35306
+72546,99,46137
+72547,1571
+72548,32532
+72549,77886,59136,10995
+72550,66357
+72551,33680,57109
+72552,21241
+72553,76427,23358
+72554,51355
+72555,46377
+72556,77911,28657,36889
+72557,71100
+72558,75665,31632,65813
+72559,7103,71875,31189
+72560,73029
+72561,80739
+72562,69444,3933
+72563,29021
+72564,27837,6318,56241
+72565,22942
+72566,23217,56326,57931,67839
+72567,80891
+72568,78094
+72569,35805,17804
+72570,24745,31472,72333
+72571,73831
+72572,58980,61517,55106,50380
+72573,48776,39640
+72574,24168
+72575,4864,46326,4946
+72576,35889
+72577,55131
+72578,81317,4417
+72579,6379,75880,13529,9788,3779
+72580,10478,58231,30681
+72581,57506
+72582,9057,66375,71464
+72583,18836,62597
+72584,58727,26161
+72585,35271,10743
+72586,75974,45780,71849,50242,5422,55010
+72587,23960,37615
+72588,56484
+72589,24877,31385
+72590,27939,40519,74000
+72591,63645,62546,78445,67223
+72592,44865
+72593,56407,27313,28440,5305
+72594,45438,21531
+72595,65183
+72596,54813,35219,70322
+72597,58570,58367,18733
+72598,73902
+72599,5872,72488,66290,7640
+72600,6188,30948,17921,80953,21885
+72601,24096,8495,48817
+72602,13644,6016,32755,22300,36560
+72603,76366
+72604,63683
+72605,18053,67402
+72606,25738
+72607,33585,29402
+72608,48212,4242,20491
+72609,47157,5086
+72610,8109,48415
+72611,76656,39514,54358,9533,72207
+72612,78224,36997,36822
+72613,30688,23801,40202,72293,58284
+72614,64564
+72615,27934,4304,37488
+72616,51985,62536,52092,10136,22263
+72617,75335,32796
+72618,24744,73244,28389
+72619,21733,26585,18349,12727
+72620,65523,65500,3691,68753
+72621,80181
+72622,38284
+72623,76650,13776
+72624,79833,70426,53129,13388
+72625,11761
+72626,56932,21175,12492
+72627,48438,68249
+72628,71635
+72629,4425,59505
+72630,68991,53884,68192,43718,42197
+72631,19791
+72632,22297,27539,63951,13707,48659
+72633,12687,5964,63594
+72634,52725,76995,73588
+72635,41414
+72636,6032,74390,79389
+72637,64593,9241
+72638,5162,47882
+72639,24822,75681,23584,173
+72640,30056,979,66607,21379,9651,50785
+72641,36335,55358
+72642,21683,40017,42665,11499
+72643,8009,25091
+72644,25260,8971,39976,57606,23924
+72645,33456,9635,23263
+72646,9302,45990,15862
+72647,68920
+72648,19036
+72649,57999,13174
+72650,6996,3523,70706
+72651,80802,78496,70763
+72652,68471,56149
+72653,79934,81192
+72654,79275,81804,27163
+72655,53090,44976,65200
+72656,79598
+72657,78562,24030,40838,63376
+72658,71570
+72659,18514
+72660,62273
+72661,73017,23193,3289
+72662,73361
+72663,68911
+72664,10475,17917
+72665,70356,53220,69512
+72666,10106,75650
+72667,58810,68063,79553,64703
+72668,25072
+72669,19037,2744,678,1108
+72670,34314
+72671,49598,36379,42244,12625
+72672,33384
+72673,40499,23328,81
+72674,46561,63874
+72675,26300,39889
+72676,11047,76337,39880
+72677,64363
+72678,69867
+72679,26263
+72680,54507,44081,70124
+72681,53393,64480,10810
+72682,70759
+72683,33919,56226,74764
+72684,64254,14596
+72685,69994,7847
+72686,540,58351,43801
+72687,9566
+72688,39321,79664,22774
+72689,52213,65112,36026,25867
+72690,980,69431,38334,16484,79705
+72691,80554,34760
+72692,36259
+72693,49581,17049
+72694,9583,76878,37823,69887,53149,79666,7955
+72695,36744
+72696,80994,50685
+72697,55038,34279
+72698,7299,2880,39581
+72699,80988
+72700,56267,39299
+72701,35753,41244,23673
+72702,12043,72768,3326
+72703,40148
+72704,2557,47201
+72705,33585
+72706,79932,53912,35245,15645
+72707,43188,66123,66329
+72708,72255,46979,14057,38261
+72709,63177
+72710,77166,79865
+72711,5814
+72712,43137
+72713,37720,24183,62834
+72714,13977,30574
+72715,29186,41197,72140
+72716,25507,77091,31092,30323,21816,43539,79712
+72717,21428,34376,72036
+72718,32137
+72719,2568,80821
+72720,11317
+72721,28344,38626
+72722,62480,77597,2691,47253,54876
+72723,21004,58566,14042,35986,79313
+72724,36052,33965,68698
+72725,2608,57382,62197
+72726,72380,69327
+72727,2697,31800
+72728,29457,52527,26908,23397,30592,70555,82162
+72729,51508,41151
+72730,2589
+72731,7413,53638,51828,21789,10537
+72732,66125,58728,66
+72733,63717
+72734,22331,32775
+72735,67789,15734
+72736,51053,24259
+72737,54118,27668
+72738,72443,77330
+72739,38326,31385,74487,6694,3254,49698,22375
+72740,77496,49217,4814,64394
+72741,13602,8071,52949
+72742,18284,51847,72228,26159
+72743,25162,41237,13051
+72744,1124
+72745,76032,20798
+72746,30962,20267,74304,32428,65214,29750
+72747,39496
+72748,11168,6822,76046,35571
+72749,43283
+72750,78049,29796,3496
+72751,53444
+72752,59360
+72753,64283
+72754,57831,4146,410,47038
+72755,3579
+72756,57048,36289,41071
+72757,28642
+72758,88
+72759,7992
+72760,2812,34071
+72761,46547,61355,80551
+72762,61895,19086,46825
+72763,22915
+72764,7934,60278,2227,55328
+72765,30487
+72766,38003,34559
+72767,73073,76160,71600
+72768,20210,56405
+72769,70893,39068,65592
+72770,71771
+72771,47035
+72772,66639,51739
+72773,62428
+72774,47717,40605,53647,22466
+72775,14608
+72776,69748
+72777,17508,36640,27077,63477,47693
+72778,35144,48699
+72779,16044
+72780,12184,39479,72069,74400
+72781,47231
+72782,72203,35725
+72783,61
+72784,55025
+72785,19583,39103,63980
+72786,74647
+72787,76317
+72788,74729
+72789,47511,24056
+72790,42658,26290
+72791,24395
+72792,75505,7618,35107,54803
+72793,23985,52252,43237
+72794,786
+72795,37451
+72796,31538,45358,16239
+72797,48848,68075,28153,13721
+72798,57305
+72799,34433,34073
+72800,55783,76904,17806
+72801,7075,66863,58520,56895,53576
+72802,11227,70296,51367,21416,8835
+72803,16034
+72804,37976
+72805,1388
+72806,10574,4795
+72807,30044
+72808,22380,27219,52821,49711
+72809,12056
+72810,13297,45352,31158
+72811,45604
+72812,30567,67133,75171
+72813,14481,74730,59487,1005
+72814,51887
+72815,51493,39296,80647
+72816,27264,3919,61700
+72817,19156,59008,20128
+72818,79140
+72819,43119,51801,3394,69606
+72820,47769,75658
+72821,51656,34072
+72822,36971
+72823,79454
+72824,15667
+72825,45946,4889,7825
+72826,61163
+72827,7994
+72828,252,71487,55339,11907
+72829,35952
+72830,79905,807
+72831,52413
+72832,33110,1910,13944
+72833,28792,17299,49281,24862
+72834,11561
+72835,70648
+72836,12987,38407
+72837,25840
+72838,4240,24770
+72839,62544,15602,53167,51111
+72840,48254
+72841,74167
+72842,41024
+72843,5806
+72844,77690,46000,60461,29094
+72845,6852
+72846,58263,48232,75835,15884,33087,50814
+72847,2349,15135,44099
+72848,32966,56866
+72849,60508
+72850,75053,43834,78038
+72851,19398
+72852,13338,47210,31244,35659
+72853,35648
+72854,80952,61079
+72855,310,38718
+72856,13827
+72857,72446,41074,58042,16588
+72858,45484
+72859,11324,10067
+72860,55446,23886,81497,3315
+72861,42184,23989,13824
+72862,57802,81506
+72863,11709,78597,61182,36405
+72864,34137,55764,50088,62853,42128,33363
+72865,46989,36453,10504,62631,18609
+72866,24981,60435,28006
+72867,30893,37259
+72868,74158,66080,71206,63818
+72869,71491
+72870,27560
+72871,72382
+72872,18060,64341,71951,65975
+72873,23916,46602
+72874,17988,30491,24596
+72875,29825,73802
+72876,19180,53373,627,64318,53228,43804
+72877,55286
+72878,34136
+72879,41619,60154
+72880,58976,6271
+72881,32617
+72882,16891
+72883,73500,66644,23193,13259
+72884,21249
+72885,70238,58950
+72886,71904,19186,81614,48559
+72887,41908,80126,77463
+72888,1725,36449,48745
+72889,67782,7071,12103
+72890,9101,12186,71944
+72891,16231,7391,2160,6563,28945,9917,44769
+72892,33907
+72893,48671,64593
+72894,25447,67460
+72895,20137,31502
+72896,10163
+72897,71892,40649
+72898,26123,60326
+72899,72309
+72900,13673,15007,45011,50605,21387
+72901,70261
+72902,65287
+72903,10401,75364,32630
+72904,43176,24939,61406
+72905,27021,22270,58,12577
+72906,67518,47129,58141
+72907,43611,18831
+72908,45669,37930
+72909,12254,56510,28513
+72910,48744,57476
+72911,72631
+72912,67899,69527,81030
+72913,65769,56622
+72914,72931,54419,39673
+72915,51657,46663,15483
+72916,19544
+72917,7252
+72918,36208
+72919,24041,15124
+72920,58372,25853,11909
+72921,15452,7671,396,11308,71353
+72922,56856,78526,20849
+72923,27698
+72924,69864
+72925,55998
+72926,67196
+72927,22509,45816,23122
+72928,63451
+72929,29511,62449,36888,60985,15917,14549,13481
+72930,76739,19899,64791,71103,32664,75592
+72931,33958,25951,33508
+72932,8965
+72933,80233,9119
+72934,76829,76372,79161
+72935,65784
+72936,81883
+72937,62548,52396,17669
+72938,18322,35614,20206
+72939,26375,17235
+72940,19341,17499,24909
+72941,59088,29169
+72942,49529,25666
+72943,17648
+72944,63642,26519,33239,12500
+72945,14982
+72946,31989
+72947,49495,75228
+72948,45657,76160
+72949,33584,81044,34816,65312,26743
+72950,67348
+72951,62126
+72952,39057,9126
+72953,60943
+72954,74473,31062,13402
+72955,51792
+72956,40772,69496,81143
+72957,75876,18536
+72958,60177
+72959,16034,55555,44074,28630,62480
+72960,3713,68192,63620
+72961,340,2521,33131
+72962,18710
+72963,58049
+72964,71802
+72965,61499,39078
+72966,9396
+72967,9693
+72968,52584,42623
+72969,15182,49632,47834,80367,39849,61889,54212
+72970,68321,67904,14931
+72971,2536,48288,50257,79844
+72972,71660
+72973,1583
+72974,39159,8903,17503
+72975,37981
+72976,15958,78741
+72977,65719
+72978,76744,31218
+72979,66770
+72980,73369,38893,54380,56057,11756,58648,80809
+72981,79215
+72982,33086,81594,69597,59852
+72983,64285,10547
+72984,12389,49553
+72985,52467,29759
+72986,11477,77183,28264,43792
+72987,41641,72460
+72988,63312,58031
+72989,57336
+72990,72131,65555
+72991,50743,46110,17750
+72992,56836
+72993,53034,69186
+72994,34197
+72995,11270,11808
+72996,7803,71311,50987
+72997,4092,155,70295
+72998,45062,9645,11447
+72999,15858
+73000,64913
+73001,49542
+73002,70729,38945
+73003,49127,65770
+73004,9260,7291,14425
+73005,45367,62855,50130
+73006,55877,4948
+73007,55057
+73008,77684
+73009,6314
+73010,43241
+73011,16559,62929,60275,13284,14548
+73012,36608,2192,34030
+73013,52881,42013
+73014,61790,46145
+73015,5269,45309
+73016,8390,58424,42460,60791
+73017,51484,81700
+73018,36376,38889
+73019,54625
+73020,8552,25421,228,16231
+73021,31564,41475,65380
+73022,15630,14708,36709
+73023,43894,10243,60163
+73024,64517
+73025,16570,64448
+73026,77057
+73027,66824,40509,21386
+73028,2526
+73029,67577,60081
+73030,43916,77081
+73031,64148,24943
+73032,58733,24716,11985,30010,30541,62979
+73033,21016,11066,5927
+73034,3641
+73035,63656,2915
+73036,75439,45661,57624,76818
+73037,6369
+73038,32679,19964,18554,13890
+73039,53065
+73040,18695
+73041,39722,43691
+73042,65550,32797,21197
+73043,69823,28200
+73044,63541
+73045,56095
+73046,7536
+73047,73922,82145,47683
+73048,45993
+73049,28246,43270
+73050,18166,14436
+73051,21486
+73052,72966,2121
+73053,24775,45756
+73054,10449,62480,82073
+73055,74489,24800,31645
+73056,41298,21714,76234
+73057,5071,69808
+73058,70865,288,20886,26655,10455,22585
+73059,20383,37263,62092
+73060,38737
+73061,45155
+73062,60933
+73063,15557
+73064,58888
+73065,20069,30513,81438,81513,45352
+73066,13146,73371,69147,76424
+73067,12475,49803
+73068,5950,54525,81567
+73069,21885,34804,27216
+73070,28411
+73071,68920
+73072,5064,13764
+73073,63049,54183
+73074,35610
+73075,3472
+73076,77013,3706
+73077,10221,2119,42011
+73078,4872
+73079,22668,42851,15787,29803
+73080,52825,3101,44780
+73081,13620,64900
+73082,68413
+73083,75541,32072
+73084,4330,45565
+73085,11013,32311,27746
+73086,5726
+73087,319
+73088,33657,76701,79356,30125
+73089,7845,69560,27280
+73090,13174
+73091,42387
+73092,27532
+73093,75033,3566
+73094,32338,45957,48207,31710
+73095,29114
+73096,7026,55274,75506,53489
+73097,14002
+73098,33119,66392
+73099,69973
+73100,53910,27349
+73101,77377
+73102,5725
+73103,81162,76489,19188
+73104,72113,78929
+73105,56538
+73106,9107
+73107,11406
+73108,11014
+73109,20145,23629,3293
+73110,18114,44502,15273,33439
+73111,265,62613,33186,51295,46099
+73112,1994
+73113,81945
+73114,34372,64850,8380,1482
+73115,76806,35898
+73116,8599
+73117,51791
+73118,7214,60556,12342
+73119,76314,45846,18480
+73120,67310,33283,28767,32712
+73121,9433,19412
+73122,29252,76260
+73123,16760
+73124,4594,23761
+73125,22827,49272,74666
+73126,17684,21946,29185
+73127,36366,31777
+73128,70000,23851
+73129,25985,36695
+73130,8844,50253
+73131,12095,17943,31964,53958,18338
+73132,37315
+73133,47388
+73134,41124,27288,40265
+73135,63513
+73136,17983,11206,72054,21137
+73137,42241,47984
+73138,38048,7777,50706,64119,5871
+73139,42689,2483
+73140,58706
+73141,26129
+73142,32765,20627
+73143,16894
+73144,71181,60167,2458
+73145,22285
+73146,62483,21655,10337
+73147,15924
+73148,45567
+73149,6564
+73150,58877
+73151,3216,56095
+73152,11775,30721,60423,42498,27221
+73153,70234,8642,45722,69947,50034
+73154,68098,38727,23807
+73155,57221,36333
+73156,25156,63759,50309,70902
+73157,17615,4216,15525,9965
+73158,77652
+73159,15153
+73160,43165
+73161,37106,68964,4137
+73162,9104,38268,70301
+73163,25032,80004
+73164,1970
+73165,5449,49200
+73166,5545
+73167,965,24244,17437,13545
+73168,81483
+73169,27562,51613,80537
+73170,3845
+73171,62932,11584,62609,66537,39347
+73172,39838
+73173,76543,33546
+73174,14792
+73175,49776
+73176,28800
+73177,8341
+73178,64428,74949,34983
+73179,7634,45807,6544
+73180,24530,31339,26439
+73181,28244
+73182,43526,13973,78170
+73183,26811,15549,29925,21653,41959
+73184,58903
+73185,23736
+73186,71071,53119,455
+73187,20709,78938
+73188,69666
+73189,72588,10955,56789,54785
+73190,69650,17425,1654,9012
+73191,80874,49660,10602
+73192,25206,38550,6934
+73193,42453,74714
+73194,39397,63226
+73195,8156,40264
+73196,40884,44617,47632
+73197,74776,77019,60338,65928,37541,21357
+73198,45157
+73199,21241,2187
+73200,34175,2204,41159
+73201,54302,32186,53061,45775,20110,51095
+73202,42106
+73203,22481,36204
+73204,18202
+73205,28039,69969,30150,70053
+73206,34961,6186
+73207,6560,32675,62895
+73208,7422,61953,412,21816
+73209,25066
+73210,31876
+73211,56536,81925,28096
+73212,34935
+73213,49717,74531,78762
+73214,27948,77909
+73215,50836,70397,10439,8265
+73216,42502
+73217,31486
+73218,72962
+73219,39417,16616
+73220,44780
+73221,34137,54938
+73222,69538,42812,9850
+73223,76860,30277,41112,35119
+73224,11308,43262,53415,26596
+73225,74385
+73226,61351,11650
+73227,30324,2227
+73228,44856,70174,18963
+73229,1865
+73230,31722,22236,73646,3825,9746,35708,20130
+73231,56471,31232,36656
+73232,79607,32883
+73233,39240,45951,63011
+73234,4246
+73235,6021
+73236,77074,37291,79215,25709
+73237,51933,26526
+73238,78668,20395,71887
+73239,29138
+73240,10924
+73241,61307
+73242,59313,17843,7945,28637,27805
+73243,33479
+73244,60585,73888
+73245,3813,38284
+73246,11919,29988,3601
+73247,7735,71628,3963,44969,25726,6282
+73248,54392,15097
+73249,50238,29028
+73250,48359
+73251,48403
+73252,66153,17616
+73253,6241,3218,65400,29716
+73254,25072
+73255,39460
+73256,77357,39312
+73257,54944,12431
+73258,61783,79058
+73259,17112,76872
+73260,4079,31872
+73261,45224,28190,64351,56967,54790,80489
+73262,73602,2246,56974,19622
+73263,6558,78036
+73264,42123,27322,71383
+73265,38957,56896
+73266,60380,71106,25880
+73267,8407,60718,74075
+73268,73942,81074
+73269,74612
+73270,42892
+73271,60491,56942
+73272,66869
+73273,29285,17794
+73274,17088
+73275,22999,79012
+73276,16761
+73277,15900,66417
+73278,30690,15064,80512
+73279,35668,77571,12068,37879
+73280,28886,58311,14144,74904,44666,12966,29775,22893
+73281,27748
+73282,72068,45516,42968
+73283,24803,69774,9184,66844,14538
+73284,45917
+73285,23915
+73286,152,79801,7500,42640,27007
+73287,35007,57773
+73288,72526
+73289,14828,7539,37251
+73290,77430,74102,36835
+73291,16439
+73292,73485
+73293,56075,25364,62455
+73294,74729,81567
+73295,68635,70608,10978
+73296,25396
+73297,35434,6156,53849
+73298,37680
+73299,51069
+73300,24030,59810,40217
+73301,33727
+73302,81337,14583,6438
+73303,32495
+73304,32341,54646,59881
+73305,77570,43271,78276
+73306,10184
+73307,461
+73308,21486,22082
+73309,48731,52401,68788,36880
+73310,55492
+73311,46898,34817
+73312,71706,44813
+73313,55443
+73314,73781,76547,31850
+73315,28816,7776
+73316,28039,64662
+73317,68476,38625
+73318,43964,55589
+73319,37404,46368
+73320,29818,68149,65305
+73321,74484,60383
+73322,64786,22953
+73323,30924,2388
+73324,43269
+73325,64833
+73326,50685,70780,78274,66533,15434
+73327,62009,16390,79148
+73328,68374,32684
+73329,33306,37107,50540,22797,50438,44881,79449
+73330,74402,11636,78927,51552,53396,54698
+73331,34499
+73332,44539,43392,47679,77212
+73333,47166
+73334,10696,11576
+73335,46244,44714,18017
+73336,69250
+73337,4170
+73338,52333
+73339,72107,14097,57410,42468,21995
+73340,66231,52334
+73341,35903,12269
+73342,79945,55227
+73343,81128,33248,1952,5171,72149
+73344,31606,64276
+73345,73958
+73346,12963,65581,12442,47133,10932
+73347,62120,3566,76237,49938
+73348,33680
+73349,48262,43831
+73350,65528
+73351,66879,40546,32081,76992,70874
+73352,80859,48962
+73353,60051,19779
+73354,25407
+73355,46881,45829,48465
+73356,70576,29313
+73357,57775,71138,3751,47695
+73358,25800,12680,63583
+73359,44657,13027,21291
+73360,57141
+73361,79140
+73362,42317
+73363,50980,81975
+73364,13378
+73365,31244
+73366,30856
+73367,64213,48207,28971,30947
+73368,1274
+73369,49880
+73370,38488
+73371,39749,9378,21534,71714,46304
+73372,45649,63763,21649,72098,76910
+73373,2620,58324
+73374,10012
+73375,60359
+73376,73906
+73377,3550
+73378,10621
+73379,61505,9795
+73380,20021
+73381,63441,61314,9356,37355
+73382,2552,15120,46259,31770
+73383,48640
+73384,74164,37147
+73385,75477,81573
+73386,64635,46645,15783
+73387,65883
+73388,24858,59358,28925,29523,45546
+73389,67128,68029,39011,82102
+73390,17178,80367,57250,59406,29399
+73391,36098,71477,43925,78042,19568,74811,80447
+73392,74562,7991,28132
+73393,269,68306
+73394,80798,23427,52705,10964
+73395,68855,45271,51419
+73396,44632
+73397,71368,78521,26375
+73398,47128,54498,80700,78615
+73399,36779,69249
+73400,59360,5545
+73401,52958
+73402,1405,66530
+73403,16743
+73404,10369
+73405,8412,42985,71719
+73406,65425,44429
+73407,50900,51236,26202,23846,20677
+73408,71237,67695,36878,72088
+73409,48512,18657
+73410,17299,58940,31256
+73411,7605
+73412,69418,29260,19368,58057
+73413,37955,17051
+73414,35986,49946,16019
+73415,2546,49341
+73416,51407
+73417,18956
+73418,24256,54017
+73419,82032,37179
+73420,13404
+73421,1302,16125
+73422,2732
+73423,39574,70667,75024
+73424,75314,479,73218
+73425,62926,72560,47402
+73426,37080,42151
+73427,71050
+73428,69740,81029,51129,49541,8879
+73429,26299,71564
+73430,7140,68054
+73431,51904
+73432,69448,62198,65726,14916
+73433,5688,46202,61475
+73434,38133,79001,17132
+73435,48088
+73436,18493,10217,17224,27836
+73437,15547,15079,14704,19899
+73438,71898,10779,66547
+73439,57939,138,23864
+73440,38824,24065
+73441,12052
+73442,57793,10315,58326
+73443,1289,28250,43387,28811
+73444,51935,24165,23207,43487
+73445,57802
+73446,798,61247,27748,44181,13838,50092
+73447,60217,31197,44930,8547,5486
+73448,70512,69255,70213,64167
+73449,34031,73841,30386
+73450,24824
+73451,65939,40583,78215
+73452,58685,58810,80498
+73453,5585,36101,68923,42674,66634
+73454,31042,57981
+73455,21248,1941
+73456,35053,63111
+73457,26479,7774
+73458,19927,1053,32688,26806,5939,62905
+73459,47397
+73460,30809
+73461,14572
+73462,3883,65089
+73463,3668,48674,36716,53226
+73464,6156,41279
+73465,48203,38268,62003
+73466,4786,13615,76070,13903,52177
+73467,48432,24621
+73468,57345
+73469,34066,63905,9787
+73470,47139,8912
+73471,37832
+73472,13922,58455,31008
+73473,41140,17553
+73474,22741
+73475,53388,39390,16810,59616,40402,53582
+73476,24317
+73477,42250
+73478,78357,37785,35122,3634
+73479,5016,43178,31885,4329,29217
+73480,67581,79835,61817
+73481,25602,25613,10445
+73482,39650,25391
+73483,79725,30597
+73484,21546,1260,17699,45931
+73485,78558
+73486,16308,52873,28401,28211,55846
+73487,59258
+73488,3644
+73489,42218,3919,69087
+73490,35639,60013,15646
+73491,81727,44865,77779
+73492,47777
+73493,45169
+73494,76662
+73495,75720
+73496,18265,44326,76070
+73497,77312,75917
+73498,20226,38198,32679
+73499,45866
+73500,31509
+73501,23198,58431,32392
+73502,44206,65631
+73503,37586,78435,53578
+73504,60104,9501
+73505,67819,73613,79706,62184
+73506,30558
+73507,66644,11677,76904
+73508,33591
+73509,82168,20001,45921
+73510,57968
+73511,45472,12790,42004,10891
+73512,58231
+73513,1933
+73514,69974
+73515,55141,57614
+73516,49998
+73517,73155,5657
+73518,31192,52136
+73519,48766,31993
+73520,15043,42548
+73521,43709
+73522,32560,4097
+73523,38069
+73524,60815
+73525,12796,72146,19977
+73526,17538,11652
+73527,28412,17032
+73528,38836,41540
+73529,51373
+73530,34303,11822,55879
+73531,16724
+73532,6171
+73533,67625,5626
+73534,64907,79905,6026
+73535,14195,10381
+73536,67354,69465,29383,7301,20130,35264
+73537,7897,55207,68214
+73538,64217,63938,38528
+73539,74190,38380
+73540,14116,72410,20420,81994,51469
+73541,41670,18578
+73542,66172,51649,8025
+73543,6187
+73544,32166,75290
+73545,77729,72828,38363
+73546,32314
+73547,55271
+73548,53847,23736
+73549,58816,67,68342
+73550,49618
+73551,81482,66706
+73552,79840,9474,34401
+73553,13018,23426
+73554,44805,17097,44339
+73555,49072,70078
+73556,61549,47684,59561,6166,52876
+73557,21099,74519,45671
+73558,12063,8328,80722,58703,52354
+73559,50965
+73560,25077,55821
+73561,17605
+73562,48898
+73563,23234
+73564,78079,45320
+73565,56260,39385,1875
+73566,1184,19497
+73567,44346,66522,75817,857
+73568,43844
+73569,59057,26255
+73570,1626
+73571,55825,76557
+73572,67962
+73573,29264
+73574,26949,81517,55580
+73575,57129,44643,65109,21879
+73576,6622
+73577,78663,16535
+73578,13816,81749
+73579,6118
+73580,37450,66301
+73581,29051,18195,1296,73148,10179
+73582,13481,61457,1620,75266,24152
+73583,1673
+73584,52700
+73585,19760,67860,65784,54557
+73586,55546,77550,73344,65112
+73587,43787
+73588,81884,16929,59352
+73589,23246,75290,24658
+73590,75620,52632,5502
+73591,78147,80708,51542,28601
+73592,11401
+73593,74760,67424
+73594,41087,41253,50537
+73595,56395
+73596,26453,19187
+73597,15922,3912,36910
+73598,1482,53512,73935
+73599,30572,77028,77805
+73600,69060,40532
+73601,33151,28496,44288,46423
+73602,3985,27876,7680
+73603,16901
+73604,58942,63401,81026
+73605,74408,23945,16291,20059,47730
+73606,77265
+73607,61869,67501
+73608,49990,73475,57646
+73609,32396,44053
+73610,24719,78705,73350
+73611,12047,30327,78737
+73612,43669,76215
+73613,22462,58315,70315
+73614,27775,67600
+73615,35111
+73616,30323,58512
+73617,55190,38284
+73618,20444,59191,48466,44560
+73619,64273,36074,58303
+73620,78680,49092,54577,25761
+73621,49310,60614,63424,14648
+73622,35791,66003,66689,37712
+73623,22101,75904,9913,13063,41878,59495
+73624,62530,62685
+73625,74947,9142,51757,68021
+73626,15903,23389,541,79826
+73627,71008,4903,15074
+73628,37502,8604
+73629,63039,33559,50961
+73630,44013,5176
+73631,73299,19598
+73632,7225,73568,30605
+73633,63011
+73634,9936,10741,13239
+73635,40170,8820
+73636,38535,74219,47414,9376
+73637,24538,41427,30202,67364,36520
+73638,44306
+73639,14278
+73640,73291,75455,57577
+73641,73493
+73642,45762,51075,42583
+73643,43249,76044,29037
+73644,9393,27925
+73645,4607
+73646,41165
+73647,21637,54508
+73648,9488,73256
+73649,41404,81028
+73650,63200
+73651,49257,57621,51194,25040,32679
+73652,79086,27262,66620,11048
+73653,15734,7593
+73654,44497
+73655,49201,15629,41612,30918
+73656,1434,9501,257
+73657,79189
+73658,17927,76652,59360
+73659,14417,74569,883
+73660,76925
+73661,47990
+73662,9506,66429,56241
+73663,5665,7382
+73664,82140,57756,45178,29780
+73665,63498,1290
+73666,31731,60998,63091,72778
+73667,33463,21301,60910,20420
+73668,72235,3439,26095,65846
+73669,65228,19226,71764
+73670,53621
+73671,69155
+73672,43427,70822
+73673,72010,17167,27328,8411,2588,15204
+73674,70608
+73675,61782,52674,40843,80195
+73676,59144,79698
+73677,21170,15649,60568
+73678,36248,53125
+73679,53727,29030,66121,78649,4542
+73680,4660
+73681,35193
+73682,4192,59147,19498,52292,32483
+73683,4845
+73684,44813
+73685,11715,12863,18754,23949,22962
+73686,75098,16160
+73687,24677,37907
+73688,60799,14270,8121
+73689,64424
+73690,19303,61648
+73691,16433,36711
+73692,77884,65972,74121,68650
+73693,27521,55758,35504
+73694,53344
+73695,16794,51530,57813
+73696,7422,41364
+73697,4104
+73698,73180,34089,27351
+73699,24925
+73700,20469,50873,16384
+73701,42911,27323
+73702,23455
+73703,64188
+73704,7249,23149,79140
+73705,53807,11849,5933
+73706,49738
+73707,43696,55945,66207
+73708,39383,44401,76588
+73709,3412
+73710,34033,4336
+73711,33768,37756,28472
+73712,28388,24194,70334,23464,40173
+73713,78076,25201,9889
+73714,9636
+73715,66650,55029,17603
+73716,56608,2669
+73717,47052,29110,27706,35665
+73718,42150
+73719,55705,49250,40289,26488,25224,51877
+73720,67273,30830,29628,33585,24490
+73721,21440
+73722,81468,30436
+73723,6149,36562,39116,48189,58440,63174,41725
+73724,50819
+73725,36024,43682
+73726,24410,78442,20835
+73727,59356,19772,66427
+73728,26839,27264
+73729,36024,21593,74411
+73730,52224
+73731,54912,4463
+73732,63554,5113,56020,65401,14995
+73733,12071,15470
+73734,54628,12225
+73735,8211
+73736,48568
+73737,79040,2729,53431
+73738,30639,50382,59634
+73739,15967,72958,13135
+73740,54135,34205,65161
+73741,3140
+73742,34994,57498
+73743,17216,28804,30683,41194
+73744,61160,13547,15416
+73745,53770
+73746,11568,4408,76822,49899,2078
+73747,66650
+73748,81549
+73749,38314,27341,54633,32513
+73750,24599,77404,53974
+73751,67204
+73752,38716,6477
+73753,32955,22568,57478
+73754,1673,25358
+73755,59199,57926
+73756,63855
+73757,37327,76622
+73758,68823,4715
+73759,60333
+73760,66010
+73761,28740,14083
+73762,69534,55996,8967
+73763,72827,57645
+73764,11640
+73765,62040,17712
+73766,62510
+73767,21826,3154,37684
+73768,44190
+73769,69682,50301,54598,12523,79795
+73770,78569,66043
+73771,79739
+73772,65681
+73773,37770,19896
+73774,77057,72812,55387,49393
+73775,45897
+73776,13667,46811
+73777,29680,64595,43791,21418
+73778,63515,55145
+73779,55908,45002,76526
+73780,26271
+73781,78624
+73782,66921,51433
+73783,45207,45277,57101,64503,59353
+73784,71401,66046,14862,68404
+73785,18877,27543,80070,45492
+73786,11181,41963
+73787,80180,12952,7622,68041,1820
+73788,56726
+73789,47222,855,60736
+73790,26947,26040,51462
+73791,70061,48762
+73792,33924
+73793,42592,6614,466
+73794,74046
+73795,21859,22680
+73796,5166,24770,53716,69437
+73797,72677,29971
+73798,10547
+73799,79047,10058,18010,45975
+73800,1970
+73801,70154,40280,50913
+73802,44081
+73803,76270
+73804,30878
+73805,35690,61042,51573
+73806,42931
+73807,73677,51151,73166
+73808,56760,48270,56523,44914,27818,40201
+73809,31249
+73810,62602,48559,22686,61556
+73811,27745,47278
+73812,19005
+73813,77490
+73814,23167,47987,80052,79938,46301
+73815,81566,58028,4436,16891
+73816,75100,21468,18992
+73817,16499
+73818,23703
+73819,79067
+73820,12171,71695,61087,80604
+73821,67296
+73822,6561,80041,34250,17962
+73823,14764
+73824,50758,25764
+73825,76751,54526
+73826,50494,4676
+73827,73495,5575
+73828,60777
+73829,28612,64996,64111,39008,22261,46453,43497
+73830,3794,28066,35396
+73831,19321,67901
+73832,42956,43610,73410
+73833,61420,7271,22001
+73834,79531,16100
+73835,4983
+73836,58333,79751
+73837,56635,23054
+73838,13345,71783
+73839,35873,3264
+73840,38816,27260
+73841,69353
+73842,64860,4658,20234,7537,43335,46969,61761,75829,1757
+73843,62426
+73844,10598,19722
+73845,53920,58248,23668,28077,19737
+73846,2933
+73847,22453,56281,14100,41671,63738,44133,73051
+73848,13676,36905,17098,26876
+73849,75889
+73850,65026
+73851,49871,30532
+73852,20682
+73853,34580
+73854,18670
+73855,44199,35946,63597,30108,64595
+73856,61934,41589,909,60122,6151,34692
+73857,5111,7067
+73858,35156
+73859,14137
+73860,70999,75279,40654,14470,49124
+73861,53454,22846
+73862,79885,40832
+73863,17457,62052,66245,15125,36015
+73864,41373
+73865,15464
+73866,36531
+73867,81770,38048
+73868,79708,55571,41918,30782
+73869,22554,77920
+73870,53763,55133,31123
+73871,72486,5463
+73872,19249,45387
+73873,33505,60759,73842
+73874,12116,7302
+73875,29586,9738
+73876,62937,50980,15479
+73877,75123,16694,56255,26376
+73878,15930,17502
+73879,47952,59939
+73880,17231,4215,24326,18672
+73881,39245,45492,71075
+73882,1477,71120
+73883,4852
+73884,4984,71606,58110,75412,13284
+73885,15737
+73886,79972
+73887,59170,48868
+73888,31798
+73889,73368
+73890,76386,60885,46479,73557
+73891,74179,17368,62519,40082
+73892,13686
+73893,64816,63242
+73894,17986,57611,14130,7205,80171
+73895,74408,35516
+73896,24598,71862,8494,2799,59377
+73897,7159,11484
+73898,44758,44156
+73899,60890,75540
+73900,36968,60494,43762
+73901,20964,72225,19672,45232
+73902,47404
+73903,80620
+73904,61052,4689,76939
+73905,11054,14982,70552,20411
+73906,10741,23259
+73907,51430,40352
+73908,80391,61606,78688
+73909,64965,68725
+73910,8822,57507,62739,16152,73048
+73911,31573,54346,7950
+73912,30683
+73913,80898,64551
+73914,48166
+73915,38008
+73916,52026
+73917,34982
+73918,25711
+73919,9761
+73920,50814
+73921,18319,49782,43943
+73922,63844
+73923,55836
+73924,32310,69376,32177,26745,28631
+73925,14121,69093,39706,30847
+73926,10877,60500,44298,81059,27898
+73927,16086,46490,61814
+73928,15173,25745
+73929,6998,36117,34217
+73930,307,30938,55101
+73931,43050,15090,72085,62853,13940
+73932,46349,19201,47625,58561
+73933,12774,20212,43876
+73934,11677,69537
+73935,67676
+73936,16292
+73937,78993,35520,64008
+73938,769
+73939,63155
+73940,55810
+73941,29209,35118,10098,8139
+73942,13388,66104,1073
+73943,68998
+73944,79480,35356
+73945,31528
+73946,82094,4688,45660,59836
+73947,29685
+73948,79581,81367
+73949,63446,53334,44887
+73950,54278,27573,29346
+73951,13894
+73952,28519,42602,31143,2127,16882,56889,74211,69756
+73953,56004,31785,32179,47380,50272
+73954,48392,61359
+73955,56545,38154,62557,79355
+73956,58710,37638,35637
+73957,63141
+73958,70506
+73959,64703
+73960,65823,4058,43830,56979
+73961,8359,24184,80387
+73962,15404,26263
+73963,36753,64860,62,74381
+73964,10672
+73965,72504,50704,30036
+73966,66467,33297
+73967,30717,48101
+73968,9328
+73969,8010
+73970,17987,19499
+73971,71502,70046
+73972,3999,16458,46362
+73973,59224,45161
+73974,58820,13460,13660,5075
+73975,13862,40563,45391,78678
+73976,57427
+73977,73895
+73978,62594,1907,50264,36153
+73979,75634,37781
+73980,75090,48415,27754
+73981,64965,21672
+73982,5835,58798
+73983,576,11239,54218,33862,39153
+73984,45336,47595,14464
+73985,71497
+73986,38834
+73987,43658,60626,82171
+73988,59634
+73989,2107,11532
+73990,26705
+73991,76549
+73992,69421,81246,44146
+73993,80237,43310
+73994,62872
+73995,54752,49457,19675,16668
+73996,81777
+73997,74926,74355,28588
+73998,27019
+73999,66050,66365,61650
+74000,51165,10657
+74001,18199,70415,61117,29012
+74002,81795,71964
+74003,78286
+74004,27404,49052,78085
+74005,28983,48006,35254,32620,49961,4675
+74006,4630
+74007,53283
+74008,45267
+74009,20548,47639
+74010,8717
+74011,22372,8133
+74012,73771
+74013,20331,52973
+74014,21659
+74015,64678,20198
+74016,7991
+74017,17976,8519,59258,25794,71999
+74018,29015,54040
+74019,17496,73593
+74020,19285
+74021,64404,40415,31081,70265,53665
+74022,997,81500,8520,33085,9824,12358
+74023,24956,31277,38659,29758
+74024,8859
+74025,20053,69770
+74026,43142
+74027,54748
+74028,42757,53396,35271
+74029,4573,69808
+74030,28086
+74031,61561,42803,21042,12316
+74032,21869
+74033,47154
+74034,47764,68884
+74035,25155,55300,3727
+74036,63159
+74037,62151
+74038,52132
+74039,260,13667
+74040,48143,41611
+74041,55896
+74042,14853,28813,13569,5259,61640,69872,30873
+74043,55406,38546,14771
+74044,5135,3117,22845
+74045,66121,38731
+74046,14277
+74047,75792,1883,28838
+74048,6462,6824,28670,57528,28377
+74049,892,16451
+74050,7582
+74051,3140,62382,19636
+74052,77696,9719,60941,17051
+74053,40281
+74054,50871
+74055,42374,13836,75311,10818,33152
+74056,42538,39640,11772,28685
+74057,38093,17000,25950
+74058,59717,72519,71598,73480
+74059,77474,40201,51415
+74060,72879,77976
+74061,54656,15914
+74062,29694
+74063,38992,74902,50139,19498,72154,154,12079
+74064,42013
+74065,42763,80498,75754,25098
+74066,17169
+74067,30277,31173,63257
+74068,4424,32766,47578,45256,35926,56601
+74069,38270
+74070,55518,28671
+74071,42335,71737,55626
+74072,18836
+74073,60182,12522
+74074,7975
+74075,80996,3698,6205
+74076,54665,43054
+74077,51097,72137,35548,25623
+74078,7880
+74079,81612,39275,37181,31122
+74080,53878,78914
+74081,7526,65282,27038,50268,22353,40442
+74082,46569,64615,53683,34637
+74083,62867,32300
+74084,42107
+74085,34077,15533,15104,58215
+74086,77407,58395,77981,75170
+74087,78185,30232
+74088,63726
+74089,349,62959,33870,45459,33598,15240,16355
+74090,42718,57232,67276,33585,34671
+74091,15193
+74092,53295
+74093,55048,47761,43564
+74094,14273,33656,10788
+74095,62017,8575
+74096,59899,11295
+74097,868,17750,68694,21565,48112
+74098,63409,3595,59450
+74099,32491,14685,27693
+74100,44441,16860,60813
+74101,45780,40808,23941,38370
+74102,38600,11651,64481
+74103,29308,77711,46497
+74104,31231,80087
+74105,30427,15099,74312
+74106,27011,53312,59373
+74107,50156,26487,71349,8315,46501,14610
+74108,63306
+74109,60864,17850,50190,49743
+74110,66044,38891
+74111,57248,69291,63858
+74112,12011
+74113,11089,2101,5994
+74114,52815,2582,39675,76356
+74115,34885,69063
+74116,39693
+74117,63408,77390,65258,8737
+74118,61374,65155,55965
+74119,73905,60928,35829,8849,54549
+74120,57457,21333,24552
+74121,51084
+74122,28509,52528,21582,37633
+74123,17726,72493,48635
+74124,42245
+74125,44872,9425,72662
+74126,63320
+74127,7826,26866
+74128,34309,81275,52847
+74129,36218
+74130,77696,53653
+74131,50257,34653
+74132,45852,70081,28278,15053
+74133,49608,21580,57607,58559
+74134,24627,32068,29726
+74135,46073
+74136,47041,59144
+74137,15100,31073,19133,56108,80766,241,78288,39622
+74138,17913,37030
+74139,47078
+74140,79012,6297,67088
+74141,20062,19028,21973,75569,75485
+74142,80836
+74143,47958,51238,35596,55404
+74144,37441,47469
+74145,62619,17921
+74146,34881,15052,8576,45060
+74147,81428,77930
+74148,40899,30461,36591
+74149,2614
+74150,48781
+74151,15762,71696
+74152,22448,65783,23116,20791,35721
+74153,65447,37907,32056,432
+74154,68256,16524,62683
+74155,4421
+74156,48989,28830
+74157,33075,29980,2268,4828
+74158,8655,17201,71433
+74159,41319,31594,20785
+74160,33295,71937,17613
+74161,73869,47751
+74162,19013,66271
+74163,13168
+74164,7333,6339
+74165,54865,79523
+74166,48574,17252
+74167,60870
+74168,73205,77056,52844,4806
+74169,34719,26667,73209,78245
+74170,16681,39546,55454
+74171,43274,25397,59203
+74172,79901,41745,68673
+74173,40283,67087
+74174,69604,36822,60242,7788,70095,15076,49260,53128
+74175,4868
+74176,28041,39564,54299,27246
+74177,9939,20348,25748,46258
+74178,27959,71487,62813
+74179,5424,54928
+74180,2996,55439,37732
+74181,15424,53023,68513,75074,78340,5841,42887
+74182,68824
+74183,47463,48724,74906
+74184,2277,62717,73497
+74185,67334,51918,34441
+74186,37742,20368
+74187,52648,46128,79270
+74188,68138,43528,2743,24887,30461,75612
+74189,31501,4862,52544
+74190,57801,56459,19043,6508
+74191,72207
+74192,54041,22291,42922
+74193,27522,54231,37735
+74194,66564
+74195,33676,75145,65674
+74196,66444
+74197,6684,41305,32245
+74198,75269
+74199,59721,23414,16908
+74200,19276
+74201,62056,43624,43185
+74202,7568,52796
+74203,70322,1552,80468,20434
+74204,40411,69064,15849
+74205,50501,2881
+74206,66280,16555,51668
+74207,37636
+74208,74955,63194
+74209,48626,81942,10094
+74210,17312,82026,17036,77147
+74211,36027,48351,19445
+74212,68344,68985,10566
+74213,60875,20987,16364,59806
+74214,59977,76623,47677,67156,53013,35701,54388
+74215,50229
+74216,77398,77934,67868
+74217,65093,46787
+74218,51990,7401,21338,26118
+74219,51967,19296,62773,16561
+74220,41991,11231,40422,55521,28460
+74221,75929
+74222,75232
+74223,74747
+74224,51736,19822,14453,2562,54704
+74225,76598,29425,47518
+74226,60740,36259
+74227,67523,9012,80485,41970,19678,51500
+74228,32042,67016
+74229,6952,40599
+74230,19371,42753
+74231,12443,14834
+74232,61761
+74233,5864,10977,57972
+74234,45009,36567
+74235,39477,37942,10778,77453
+74236,54687,12176,68017,76098,1247
+74237,31204
+74238,10180,47106,46659
+74239,25782,758
+74240,80591,44726
+74241,73942,57506
+74242,23978,61215,77273
+74243,44141,6705,25473,14733
+74244,62142,71683,81732,67355
+74245,23957,20198,78222
+74246,27631,25324,41195,81966
+74247,6854
+74248,3371,23117
+74249,67705
+74250,12076,75968,76604,3248,34677
+74251,75024
+74252,57212
+74253,5554,61762,76579,78750
+74254,74989,59946,33006,55252,63035,1122,60269
+74255,24630,64710
+74256,7093,17161,53998,70064
+74257,41038
+74258,11076,51935
+74259,74066
+74260,24090
+74261,54941,42416,9405
+74262,23756
+74263,25527,73826,32754,68335
+74264,68938,36473,39588,42023
+74265,35067
+74266,59669
+74267,41734,61784,44161,4760,32118,56363,49051
+74268,57942,41966
+74269,10131,70836,61681
+74270,44130,25862
+74271,20555
+74272,41656,29889
+74273,62293,43300,28112,34150,24624
+74274,25236,56314,40948
+74275,61873,72036,18357
+74276,1524,53027
+74277,53312
+74278,67025,32028
+74279,46347,77905
+74280,74433,48671,44894,1152,27954
+74281,27193,67795,74014,23377
+74282,16273,7824
+74283,43742,78666,36351,66281,51070
+74284,48296
+74285,21738,22236,29630,29785,10248
+74286,45493,1671
+74287,47081,30775,6568
+74288,64550
+74289,56765,1426
+74290,65073,59541,28509
+74291,44554,34197
+74292,27636
+74293,21826,53503
+74294,14819
+74295,6287,56437,54790,56203
+74296,21476
+74297,12588,40681
+74298,39333,2920
+74299,62069
+74300,21074,44375,65103
+74301,34295,53027,63391
+74302,79698,79444
+74303,1961
+74304,3869,25108
+74305,32849,45022,18053,1743
+74306,2975,7654,43768
+74307,70571
+74308,78043
+74309,71507
+74310,31339,43571,68810,24029
+74311,78473
+74312,35872
+74313,52479,10163,39474
+74314,40342
+74315,1304,21509,66251,73558
+74316,17245,63770
+74317,559,25390,20446,15289
+74318,49947,11207,5148,327,50682
+74319,11624
+74320,58379,53491,70111,43145
+74321,71837,23304
+74322,22331
+74323,49635,44562,24080
+74324,61461,4414
+74325,62118,46011
+74326,7468,74430,37075
+74327,75547,76508,69579
+74328,76561,34302
+74329,20659,46302,67690,39585,53095
+74330,62890
+74331,19133,45157,78627
+74332,66034,63636
+74333,41446,37262,405
+74334,47241,70012
+74335,24655,69672,48522
+74336,20975,70873
+74337,55339,49663,22333
+74338,13404,33238,15133,71445
+74339,76489,70030
+74340,53838
+74341,2747
+74342,62115,23500,53026,68214,21131,61720
+74343,5840
+74344,28053,46570
+74345,49373,11523
+74346,70995
+74347,41207,68074,1819,5873
+74348,51805
+74349,55481
+74350,81903,80617
+74351,47948,76471,31737,68079
+74352,15464,29676,17014
+74353,58173,61769,75251,3907
+74354,60202
+74355,19603
+74356,37292,16346
+74357,7159
+74358,59977,25267,65655,49701,74174
+74359,45181,1531,9593,68860
+74360,25396,577,4408
+74361,51967,14729,46413,56297
+74362,15464,8365
+74363,14676,48315,70005,63323,16147
+74364,39989
+74365,7512
+74366,17502
+74367,572,80886,6132,74993,6204,34114
+74368,43500,33924,12870
+74369,16507,8584
+74370,82088,6549,49702
+74371,8472
+74372,60942,27031
+74373,53891,16119,3839,77896,5929
+74374,24413,19706
+74375,75968,11823,54488
+74376,60740
+74377,14597,76493,28979,9140
+74378,24377,76122
+74379,70388,57857,61696
+74380,64811
+74381,37384,82121
+74382,42759
+74383,51529
+74384,49953,52818,17130
+74385,3828
+74386,28430
+74387,19258,76752
+74388,75517
+74389,80427,44218,67150,81678
+74390,1498,71112,5895
+74391,840
+74392,29967
+74393,26159,76290,80059,76015
+74394,54020,54264
+74395,18938,42662,36268
+74396,21725,33972
+74397,68025,42695,46279,17576
+74398,13178,65963
+74399,12039,15674,26330
+74400,72224,72259
+74401,45556,50740,62499
+74402,64260,68306
+74403,60864
+74404,76581,7425
+74405,23064,76511,12141,50235
+74406,74686,67698
+74407,62019,43407
+74408,12402
+74409,21228,28586
+74410,73279,5473,14163,66361,73607
+74411,46631
+74412,33207,79198,41394
+74413,32688
+74414,39013
+74415,42456,30295
+74416,36479
+74417,53972
+74418,14076,62449,54095,4543
+74419,51035
+74420,61453
+74421,43527,59931,45583,48158,69153
+74422,35871
+74423,28625,43762
+74424,62259,79508
+74425,59684,48369
+74426,19537,21860,58030,80344,72916
+74427,46493,16200,67556,20036
+74428,76652
+74429,81816
+74430,72672,19075,615
+74431,27329
+74432,63931,18796,14105
+74433,66555
+74434,33802,77594
+74435,61894
+74436,35627,49585,6018,24105,27212,42445
+74437,28100
+74438,12119,11520
+74439,8273,7489,43058
+74440,45622,31822,72446
+74441,58813
+74442,61292,56692
+74443,10253
+74444,1414
+74445,10995,66341
+74446,48739
+74447,10902,10916
+74448,70583
+74449,66646,77077
+74450,11633,58829
+74451,37062,40890
+74452,11624
+74453,11878
+74454,16978,50030
+74455,42184
+74456,64321,12732
+74457,52355,63622,64679,61371
+74458,72307
+74459,74423,19275
+74460,43700,6036
+74461,47421,38378,17748
+74462,48767,34923,36091
+74463,3824
+74464,72818,1980
+74465,20832
+74466,78117
+74467,49603,53167
+74468,72382,81471,17179
+74469,18472,29009,38974,25753
+74470,22821,79241,22316
+74471,13478,37648,24532,5819
+74472,77360
+74473,22939
+74474,49598
+74475,50258,76363
+74476,23743,74839
+74477,60969
+74478,39543,12861
+74479,9414
+74480,58472,56389
+74481,41596,3934
+74482,77996,12978,62338
+74483,56561,81909,57989
+74484,55822
+74485,20604,11423
+74486,62946,41398,17570
+74487,78686
+74488,40940
+74489,48946
+74490,54457
+74491,20444
+74492,67000
+74493,15030
+74494,79949,30208
+74495,47002,55815
+74496,26930,29832,28653,43377,15019
+74497,76043,8826,50104
+74498,37173,60740,50645
+74499,27118,10436
+74500,11959,40038
+74501,64226,29716,78113,23412
+74502,14022,14420,665,68054
+74503,38920,25008
+74504,8972
+74505,39671,4903,25983,61867
+74506,79123,54819,67059,35539,64640,66066
+74507,40985,54534,65419,62304
+74508,46222,79510
+74509,32373
+74510,78107,22120
+74511,19732,230,14042,50687
+74512,7354
+74513,64849,6496,72929,67148
+74514,80975,22184,50535,71434,57894
+74515,73889
+74516,31921,12159,61845
+74517,70920
+74518,68946,48230
+74519,70563
+74520,27114,23372
+74521,79025,49270,8689,30582,53390,53669
+74522,48558,53622,69482,56535,24556,65972,69606,73295,9599
+74523,65140,29895
+74524,45868,49531
+74525,13864
+74526,34126,41302,25218
+74527,38316,78996
+74528,4642
+74529,22642,78568,43207
+74530,66934,70652,2777
+74531,61880,35184
+74532,58675,40790
+74533,12056,22201,46078,3380,54119
+74534,61937,56579,81786
+74535,26981
+74536,55340
+74537,54626,27357,72827,81933,36452,20512
+74538,76713,9239,43024
+74539,13945,78769
+74540,73468,27239
+74541,47776,9273,45490
+74542,9606,43995
+74543,76268,55088
+74544,9973,35935,65947,4709,43084,72330,52597,1789,46518
+74545,79543
+74546,38269,61098,50514,25041,28135,10994
+74547,44899
+74548,11601,43164
+74549,48690,3319,59863,62790,73590
+74550,39451,36063
+74551,29420,21360
+74552,15470,10524,22147,38284,71502
+74553,28503,55109
+74554,25211
+74555,10926
+74556,45442,10639
+74557,1146,18593
+74558,61192
+74559,12393,79285,18591
+74560,47979,30371
+74561,36399,26234
+74562,29822
+74563,8331
+74564,41161,80498
+74565,4983
+74566,75833,8060,10175
+74567,64283,9260,55451,73356
+74568,46287,39454,42014
+74569,44748,37357
+74570,70374
+74571,25859,79475,50183,19412
+74572,18487,24914
+74573,6345
+74574,52494
+74575,37309,27693
+74576,27218
+74577,36048,13961,14372,33557,59202
+74578,45395
+74579,11523,39560
+74580,10627
+74581,14659,67512,40390,69249
+74582,32513,16833,67002,56286,40490,68028
+74583,80744,5296,56938
+74584,71573,26108,33077,54569,9139,68534
+74585,43980
+74586,42646,72830,54004
+74587,80953
+74588,10698,43928,33852,939,42813
+74589,1900,15163
+74590,57009,14479,27895,30700,81306,25240
+74591,25619,31126,22640
+74592,23105,2095,56347
+74593,58429
+74594,44361
+74595,69899,72087,81071,63979,60321
+74596,8605,71910,81519
+74597,70155,51124,15795,880
+74598,21458,70776,10411
+74599,69032
+74600,45486,9355,67471,42096,75788
+74601,70892,44771
+74602,50675
+74603,54957,30793,11378
+74604,45892,50635,81517
+74605,75443
+74606,55464
+74607,53906
+74608,55335,18498,53003
+74609,46429
+74610,47738,71445,47676,64324,72354
+74611,78613
+74612,40998,56348
+74613,76680,19642,4292
+74614,12181
+74615,75668,1121,11960,67735
+74616,65675
+74617,14882
+74618,69716,81987,30907
+74619,5203,31213
+74620,3505
+74621,35959
+74622,18979
+74623,81276,30834,46519
+74624,62872
+74625,75526,16525
+74626,30560,61908,11086
+74627,48755,68138,49743
+74628,43391,80710,81677
+74629,20897,70916,72139
+74630,81906,23810
+74631,7613,20482,8469
+74632,29477
+74633,27620,41048
+74634,60325
+74635,36292,74266,54903
+74636,53879,82151,6181,19191,34784
+74637,61935,6961,37686,27990
+74638,24390,77730,81055
+74639,62799,2008,1031,20899
+74640,70297,10252
+74641,3813
+74642,81630
+74643,47663
+74644,30957,58925
+74645,1718
+74646,71111,65074,78999
+74647,38746
+74648,54333,79912
+74649,29914
+74650,76256,50636,37626
+74651,24737,48836
+74652,76457,9480,43642,15893
+74653,60565,80897,52629
+74654,64467
+74655,53363
+74656,45674,46649,30623,13915
+74657,20276,41944
+74658,48676
+74659,11687,18514
+74660,63614,62819
+74661,22338
+74662,20257
+74663,77611,12978,62525,77832
+74664,30876,17100,12730,73544
+74665,13653
+74666,57329,38136,53538
+74667,12656
+74668,35534,28155
+74669,65552,54537
+74670,31505,13658,15716,6617
+74671,63417,40594
+74672,28740,22819,57912,42801
+74673,47215,5782,14881
+74674,47231
+74675,38243,13506
+74676,67480
+74677,71507
+74678,36743,70817,53731
+74679,64091
+74680,24875,77686
+74681,47887,46635,2778
+74682,12234,70767,25051,64495,24481
+74683,17750,7026
+74684,80934
+74685,41719
+74686,79058
+74687,12844,60498,48175,68134,3998,27848,23775,41621
+74688,8469,33398,76535
+74689,42183
+74690,1988,14034
+74691,33129
+74692,52705,56287
+74693,7239,12382,22794,65710,14572
+74694,64296,4681,54538,70257,76854,50931
+74695,49110,76319
+74696,23237,57981,21179
+74697,38527,27249
+74698,53764
+74699,9911,44085,31348
+74700,68476,72363
+74701,19306,52606
+74702,24318,81655,69934
+74703,53736,35185
+74704,48349
+74705,41445,73387,39581,80501
+74706,71250,37721,63823,63306
+74707,39080
+74708,72794,21484,8073,40753
+74709,32305,3391
+74710,19337,49527,39064,49524,70400
+74711,58663
+74712,10989
+74713,8386
+74714,49200
+74715,70530,46868,19318,28496,764,64593
+74716,69237,47144
+74717,59584,5451,46346,39355,42576,2553
+74718,52977,22240,75135,14792,32165
+74719,575,78357
+74720,18232
+74721,26992,30495,48127
+74722,15229,2525,36964
+74723,31778,70895,63324,70540
+74724,63737
+74725,81535
+74726,4112,30044
+74727,27105,50308,75080
+74728,78802
+74729,79540,14277
+74730,20888,56053
+74731,27056
+74732,24998
+74733,40098
+74734,7669
+74735,60481
+74736,48512,59491,26507,12366
+74737,74958,68088,59964
+74738,59036,48605,17677
+74739,3138,9361
+74740,78421
+74741,10606
+74742,75200,54730
+74743,55644
+74744,52338,12777,19813,23146,25664,49015
+74745,7271,38570,10136,62069
+74746,12293,30666,40576,33066
+74747,1042,81222,61958,9985
+74748,57593,18144,35603,9433,32392,80482
+74749,76190
+74750,12663
+74751,72522,47008,39814
+74752,9466,74547,42774
+74753,79607
+74754,71942,79962
+74755,43935,23030
+74756,7100
+74757,66696,23012
+74758,71805,51994
+74759,67702,2672,46917,20930,32215
+74760,20336
+74761,77442,63062
+74762,75375,32891
+74763,46073,9579,37116,33382
+74764,47546
+74765,27783,57755
+74766,59822
+74767,24689,69529,26790,32300
+74768,31869
+74769,12062,33468,67333,28952,49259,13928
+74770,24667,41736,4571,7567
+74771,30302,18623
+74772,23429
+74773,3644
+74774,41544
+74775,60692,32543
+74776,74965
+74777,31869,44785,34017
+74778,41312,6610,75
+74779,64312
+74780,17191
+74781,47157,5242
+74782,68698,54789,40647
+74783,45071,19480,61943,35797,43765
+74784,4968,60148,37418
+74785,74252
+74786,14769
+74787,53587,42520,18009
+74788,119
+74789,76441,29186
+74790,40965,68413,56514,9106,6654
+74791,70791,23249
+74792,9955,14550,45417,64816,23515,80649
+74793,25084,63169,9494
+74794,9830
+74795,48162
+74796,19139,66755
+74797,66247,68043
+74798,40884,35800,2976
+74799,37647,24488,38391
+74800,56690,47949
+74801,38493
+74802,8205,33937
+74803,41822,42803
+74804,9546,17769,927
+74805,70475,570,51327
+74806,73943,6920
+74807,2257
+74808,60576,72572,38860
+74809,14484
+74810,64676
+74811,52754,783
+74812,15296,61852
+74813,82063,8591,46234,77749,43861,36300,15512
+74814,20784,78471,61436,24926
+74815,58061,3234,47777,10839
+74816,26111,21670,7487
+74817,11768,74916,35691,26031
+74818,22516,3064,6316
+74819,23627,34726,48706,38486
+74820,23946,36745,30576,35143,36653,60669
+74821,68961,15217,28758,77831,28529
+74822,19953
+74823,38592,76393,79908,44611
+74824,55285,49399,30761
+74825,51918,41302
+74826,75939,58570
+74827,48267,5074,21418
+74828,70015
+74829,73745,60219,39657
+74830,59677
+74831,26534,68908
+74832,33921
+74833,43378
+74834,55606
+74835,70412,48819,71042,5241,16598
+74836,78156,80467
+74837,31213
+74838,74319,24184
+74839,20770
+74840,23452,68253,4971
+74841,56192,61304,4876
+74842,777
+74843,28796,61369,20804,13310,62020
+74844,76625,54370
+74845,31427
+74846,37924,12142
+74847,59144
+74848,18594,18220,55964
+74849,36880,80896,4874,12170,75209
+74850,18253,74417,76655
+74851,25001,56812
+74852,59784,13155
+74853,10225
+74854,256
+74855,70070,42741
+74856,80453,942
+74857,45547
+74858,48809,53574
+74859,77615,11121,7044,7986,17594
+74860,11677
+74861,57310
+74862,3252
+74863,60523,8163
+74864,42555,41271,29089
+74865,80950,38484,33251
+74866,47416,57014,9126,18265
+74867,76336
+74868,50242,36430
+74869,55052,53981,36635
+74870,21682,17515,34097
+74871,78529,80940
+74872,56347,31275,65377,39953
+74873,17682
+74874,23946
+74875,15271
+74876,66998
+74877,45813
+74878,76526
+74879,22013
+74880,68500,41045
+74881,70836
+74882,59214,69242
+74883,17225,75744,21464,72392
+74884,37714,66568,71887
+74885,56029
+74886,70056,67241,41678,44300,57531
+74887,25951,49279,67217,54540
+74888,11061,45829,52524
+74889,62204
+74890,79374
+74891,46574,57339,22623,12153
+74892,30513
+74893,78939,819
+74894,66336
+74895,80233,58914,64018,62976
+74896,12496,38752,1028,42831,27389,10259
+74897,25600,55974
+74898,60170
+74899,81032,71898
+74900,61147
+74901,70570
+74902,69692,2012
+74903,52854,42073,34418,69560
+74904,34608,74277,39441
+74905,67701,23365,51660
+74906,57549,4261
+74907,62729,81462
+74908,17362,25699,63192
+74909,4043,9204,913,5484
+74910,31236,56422
+74911,43002
+74912,21580,7265
+74913,37668,14935,81552,46772,51288,59919,22996,54085,23897,76918
+74914,61869
+74915,15627,42544,58449,76192
+74916,12611,32526
+74917,61285,1122
+74918,29009
+74919,39921
+74920,63109,25302,9524
+74921,14045,48219,41417
+74922,8677,73919,43692,42603,39020
+74923,79547,33156,1395
+74924,3723
+74925,78396,73417,74828
+74926,71688
+74927,77198
+74928,32159
+74929,37375,80950,3504,34631
+74930,5102
+74931,55899,6252,31710,26814
+74932,46078,32458
+74933,80360,37688,58873,17676,29433
+74934,16730
+74935,40146,37429,77676,840
+74936,27795,76411,60000,2118
+74937,16547,30774
+74938,74868
+74939,24880
+74940,3407,62645
+74941,77247
+74942,58800,4333,41541
+74943,60396,18178,3410
+74944,65964,36298,78569,50667,52747
+74945,61342,63136,50042
+74946,14033,78216,12336,79056,50401
+74947,19220,7117,6935,20832,66601
+74948,34962,36946,58800,21337
+74949,9773,21746,9495,46749
+74950,21219,13694,14064
+74951,55120,42002,56572
+74952,29801,34082
+74953,10248,59296,19930
+74954,10749
+74955,26391
+74956,851
+74957,64106,28440
+74958,63039,25397
+74959,25171
+74960,13296
+74961,24864,78180,77654,186,66695
+74962,78133
+74963,40749,69209,11566,68904
+74964,80451,71221,56589
+74965,12608
+74966,64921
+74967,33316
+74968,61048
+74969,72019,7010,43495,72386,12974
+74970,37941,21630,65574,4376
+74971,59361,70238,67907
+74972,74066
+74973,55698,3813,66668
+74974,31547,53843
+74975,71935,75746
+74976,56176,65533,77629,26512,33442,16800
+74977,13881,74765,13867
+74978,22455,40679,9927
+74979,4318,68376
+74980,24705,21814
+74981,27669,48446,19064
+74982,12517,58194,9733,56669
+74983,43707,59064,73995,48439
+74984,60770,3656,30588,35859,7622
+74985,51118,18586,21936,75618,23758
+74986,45792,53932,954
+74987,7216
+74988,53198,47901
+74989,3845,42330
+74990,4016
+74991,44306,43821,55989,61911,64547,9498
+74992,2900,48872,56821,49030
+74993,47648,17482,31497,5917,59268,12335
+74994,1774,20746,49270
+74995,44594,1443,52392
+74996,68636,49209,11633
+74997,74247,30150,12775
+74998,30061
+74999,10399
+75000,4597,9318
+75001,9243,73189,41821
+75002,23089
+75003,74311,20673,8840,51930,29003
+75004,42851
+75005,60251,22317,18147
+75006,33781,66160,36545
+75007,73584,74066,42516,2442,24221,36489
+75008,34419,51194,65352
+75009,49748,71259
+75010,64469,39042,38470,9097,55147,63734
+75011,6847,30543,50601
+75012,77335
+75013,75595,61724,258,30774
+75014,54922,58357
+75015,14335
+75016,68823,29848
+75017,47170,18878
+75018,32574,36318,58221,81089
+75019,66116,13401
+75020,44924,77510,60222
+75021,68299,13663
+75022,57562,21416
+75023,32787,15791
+75024,68979
+75025,42404
+75026,4210
+75027,22548,49199,26976,50234,58043
+75028,6363
+75029,50819
+75030,18716,43853,10044
+75031,22128
+75032,55788,41908,2273,70993,6065
+75033,66064
+75034,60309,75842
+75035,27280,6477,21995
+75036,10908
+75037,57568,8802,28266
+75038,78585
+75039,43509,57901,71865
+75040,5271
+75041,79858,24648,99
+75042,37519
+75043,34205,51863,53884
+75044,171,64981,8290,65584,20029
+75045,6146
+75046,53544,1535,28261,724,54880,63422,53272
+75047,25493
+75048,22451
+75049,36412
+75050,4712,29024,1036,71072,79695,51159
+75051,17143,29927,9381
+75052,76952
+75053,81534
+75054,67791
+75055,14183
+75056,65639,9431,37334
+75057,30119,63842,57330
+75058,23040
+75059,476,62717,42218,16951,61524
+75060,51770,17343,8985,77726
+75061,74721,26935,37478
+75062,8869
+75063,69471
+75064,23627,72204
+75065,69537,29120
+75066,2617
+75067,22422,71243,65138,17401,61383,46800,24886
+75068,29725,72939
+75069,61523,65612,48619,27983
+75070,39000
+75071,12163,49553
+75072,30332
+75073,65728,16888,39275,12290,48930
+75074,40151
+75075,35077,65827,71175
+75076,70083,27072,18187,53100
+75077,80780,8930,11032
+75078,71636,22605,14010
+75079,81028
+75080,42885
+75081,59924
+75082,31264,64499,56063,69828
+75083,49826,71969
+75084,18383,70318
+75085,7113,40087
+75086,14819,1312
+75087,29337,28253,44692
+75088,19144,30089,14399
+75089,11557,79259,17502
+75090,20215
+75091,45059,64046,33735
+75092,43886,74754
+75093,79288
+75094,47501,28898,67156
+75095,6426,31528
+75096,49777,18808,78950
+75097,46711,62591,35959,61549,48103
+75098,36297
+75099,6013
+75100,10657,29235,38354,27882
+75101,18659,9879
+75102,31168,67882,54519,19789,39720
+75103,78795
+75104,28977,60841,38657,80329,46036
+75105,27020
+75106,54438
+75107,80593,21211,1439
+75108,15064
+75109,34298,56765,75170,39215
+75110,65381
+75111,16055,20126
+75112,25070,47429,31029,16530
+75113,21688,42211,40897
+75114,23964,30175,74168,70452
+75115,75569,46206
+75116,15336,19094,35015,29836,69087
+75117,70095
+75118,23469,31069
+75119,22116,29852
+75120,34086
+75121,3235
+75122,54762,78117
+75123,27487,47730,73782
+75124,65122,49500,60666
+75125,73054,38450,22916
+75126,33852,57235,18746,81972
+75127,69114,53755,42747,73143,42013,79587
+75128,42147,51912
+75129,8615,53976,32007,74881
+75130,67622,62093
+75131,56480
+75132,68221,27737,13451
+75133,78377,41542
+75134,82172,43552,62006,60826,65411
+75135,59036,65244,2930
+75136,10400
+75137,65340
+75138,34593,75469,63289
+75139,43372,62985
+75140,31887
+75141,26935,71789
+75142,29297,56040,5687
+75143,33384
+75144,12508,75797,37797
+75145,14761,45530
+75146,77687,13002,48619,4620,10169,25085
+75147,35843,19560,79858,13114
+75148,50962,26366
+75149,49838,76531
+75150,29461,17941,2524
+75151,19207,1489
+75152,71904,6612,615,77939
+75153,76533,54785,76114,34734,43953,5470
+75154,44525,51692
+75155,3196,47909
+75156,73013,60071,28988
+75157,66877,23311,3765,81443,19627,41750,49837
+75158,78634,82183
+75159,77894,5933
+75160,81016,35567
+75161,21459
+75162,34867
+75163,68398,5879,50614,46749,46121
+75164,79462,80465
+75165,27275
+75166,32590,40651
+75167,81792
+75168,53192,47483,19554,73493,43609
+75169,59540,13482
+75170,36710
+75171,20371,41334,62794
+75172,23885,57898,55327
+75173,59383,22064,41332
+75174,37047,65881
+75175,67604,64386
+75176,14758
+75177,76344
+75178,8223,35081,12172,12074
+75179,750
+75180,60928,22179,76787
+75181,68991,18736,49101,64875
+75182,69231,3728
+75183,32042,11208
+75184,21974,29386,8400,30989
+75185,19361,56444,71498,3562,67692,33791,69729
+75186,71685,38927,17452
+75187,57814,74926
+75188,63870,61839,9881
+75189,21759,56976,47213,80551,28865
+75190,67672,28060,54034
+75191,37867,8388
+75192,32788,81172
+75193,63889,71232
+75194,64346,39479
+75195,70738,44055,49254
+75196,37944,19091,45267,68377
+75197,70879,33648,4428,21949
+75198,44319,66927,52244,20808
+75199,65628,11035
+75200,12305
+75201,73127,41609,18193
+75202,7189
+75203,18446,80412,2056,54994
+75204,4719
+75205,74707
+75206,28549,38140
+75207,63365
+75208,63510,56190,31397,58613,51763
+75209,78043,5039
+75210,47873,38087,26793
+75211,634,67772
+75212,6773
+75213,39316
+75214,55492,39876
+75215,70780,20215
+75216,76271,3595
+75217,34399,50080,13449
+75218,33979,33575,62619
+75219,58790,38321,1201
+75220,30827
+75221,13247,70229,3647,64876,54174,55126
+75222,70315
+75223,11196
+75224,75902
+75225,38503
+75226,72059
+75227,50008,47802
+75228,33992
+75229,34569,41394
+75230,46492,35057,14273
+75231,41613,47159,62988
+75232,31894,50370
+75233,59141
+75234,53049,64862
+75235,15239,74414,72773
+75236,39355,65728
+75237,57788,68374
+75238,24627
+75239,1438,52714,2435,78382
+75240,32255
+75241,29417,29525,37569
+75242,4504,75602
+75243,33843,23822
+75244,50556,25096
+75245,66268
+75246,3448,23167
+75247,26205
+75248,27972,69709
+75249,40526,32756
+75250,2595
+75251,80945,46569
+75252,6639,3917
+75253,65789,31703
+75254,52203,62544,75315,53184
+75255,70536,29952,47190,11551
+75256,20991,46299,80913
+75257,63690
+75258,25887,78972,2793,56648
+75259,77733,45567,41710
+75260,8225,21102
+75261,71242
+75262,25873,62741,69562
+75263,48797,29406
+75264,41207,8293,78141,59122
+75265,61628,55332,53207,51206,34180,27910,64952,15425
+75266,77335,57394,66827
+75267,63885,13835,47284,70837,80149
+75268,5194,60046,41525
+75269,44159,40294
+75270,35775,58207
+75271,71804,75923
+75272,7753,49138
+75273,20334
+75274,61867,75685,59765
+75275,32226,52495
+75276,29099,75465,78491
+75277,36021
+75278,54552,7707
+75279,3086
+75280,54713,25736
+75281,48503,5828,9816
+75282,6265,64856,72487,31478,12057,9153
+75283,71665,59861,69020
+75284,355
+75285,69822,4698
+75286,47503
+75287,65408
+75288,26122,67711,64719,16685,73709
+75289,46631
+75290,45157
+75291,47726,35745
+75292,55665,35895,4131
+75293,52383
+75294,15350,43151,41745
+75295,60296,50673,32456
+75296,27615,37652,68870
+75297,44726,31952,23657,50095
+75298,36326,71994
+75299,66652,73422,65142
+75300,15329,69306
+75301,40055
+75302,81936
+75303,76636,8858,57456
+75304,53887,24024
+75305,72672,11907,8372
+75306,70088,64587,34578
+75307,49874
+75308,69662,79270
+75309,34405,53886
+75310,56236,17067,7832,45833
+75311,63994,24672
+75312,9744,77192
+75313,75289
+75314,53959,23512,34082
+75315,56149,54929
+75316,23822
+75317,70991
+75318,22157,79681,26655,7798
+75319,18753,61364,73418,43079
+75320,22353
+75321,1489,74632,17736
+75322,6008,41417,29850
+75323,41706,4317
+75324,53985,14485
+75325,11988
+75326,3479
+75327,64353,21520,61707
+75328,45556,46281
+75329,42517,65478,31095,8612,10285
+75330,62057,55080,31906
+75331,14289,69048
+75332,1439,31423,63456
+75333,17461,69064,40249
+75334,66076,55838,62064,68887
+75335,3064,15033
+75336,51374
+75337,43454,8782,40874,7381
+75338,6194
+75339,76571
+75340,73312
+75341,81698,4938
+75342,30653,79782
+75343,35886
+75344,26406,25837,19389,80164
+75345,55260,852,6116,25682
+75346,52828
+75347,36395
+75348,71507
+75349,49420,78217
+75350,10874,75713,8697
+75351,19964,53681,80589,55829
+75352,67001,62349,80739
+75353,77690
+75354,22737,77824,14037,43841
+75355,45930
+75356,44913,48878,61592
+75357,6232
+75358,7544
+75359,48448,27452
+75360,54878,50804
+75361,76019,26655,64808,18661,46116,49300
+75362,51311,10094,10758
+75363,2400,15350
+75364,46675,53838,7634
+75365,57575,62118,23677
+75366,37657,47796
+75367,50916,44612
+75368,3150
+75369,51021,25249,71178,35177,55321
+75370,71906,34923,39965,45684
+75371,65507,24472,3767
+75372,41113,78057,76173,45556,31935
+75373,28973,16642,36404,56581,26891
+75374,23089
+75375,45004,69542
+75376,78055
+75377,34504
+75378,24835
+75379,33409
+75380,51178,37106,45074,23859
+75381,74165,4794,17449
+75382,56854,4160,16922,66395,80366
+75383,7852
+75384,46898,8235
+75385,25382,55636,40122
+75386,812,79352,46605,20405
+75387,8706,23731,46875,36986,33182,77437,80435,67403
+75388,68852,37540,33682
+75389,63043
+75390,5986,33411,24714
+75391,79895
+75392,37348
+75393,80427
+75394,64981,71126,35594
+75395,28451,6702,41223,41088,23212
+75396,25406,10280
+75397,77056,20128
+75398,22935,62349,66306,17990
+75399,3259
+75400,55695
+75401,4719
+75402,16797,25923,68784
+75403,59129,21731,70671
+75404,23693,55457,61478,4271,29166
+75405,40262,42260
+75406,73531,74756
+75407,17018
+75408,67909,10407,65380
+75409,60319,39591,70952
+75410,79975
+75411,31262,57036
+75412,30713,3346,39128,34444
+75413,27501,76503,59258
+75414,18939,77315,51972,712
+75415,39208
+75416,50897,80533,27972
+75417,79842
+75418,71402,16357,54751,55879,79712
+75419,48761,70676
+75420,32650
+75421,23074,38824,39692
+75422,31475,80880
+75423,68705,14711,37205,48968
+75424,56195,66027
+75425,63542,44618,66536
+75426,57416,15544,27119,53075
+75427,50585
+75428,65611,55510
+75429,29177,44362
+75430,62993,46144,80267,5975,67612
+75431,66307,62229,63848,69414,39382
+75432,23043,30022
+75433,11927
+75434,78107,71147
+75435,19786,62745,63267
+75436,38371,68978
+75437,6717,45271,38869
+75438,72223,23709
+75439,11014,4198
+75440,61858
+75441,15967
+75442,42696
+75443,67704,60924
+75444,17362
+75445,71669,77803,61167
+75446,12039
+75447,33202,44366,46680
+75448,38810,67496,54703
+75449,35583,20069,81759
+75450,46184,68472
+75451,53198,15031,52547
+75452,42345,52642
+75453,10570,42544
+75454,46269
+75455,41300
+75456,76976,9638,10050,55885
+75457,74677
+75458,78628,31797,11511
+75459,35641,76460
+75460,50883
+75461,65246,61882,37042
+75462,45097,77724,74786,64644,36676,23703,64308
+75463,19791
+75464,9430,74568
+75465,5391,24580,64413,25244
+75466,2217,75575,21530
+75467,30487
+75468,11673,26822,45178,42054,31687
+75469,45729
+75470,73421,3979,38761
+75471,74441,41544,44990
+75472,17171,14729,42479
+75473,18951,29026,12060
+75474,44764
+75475,67405,56336
+75476,69415,58182
+75477,10797
+75478,77584,43285
+75479,76454
+75480,32163,66681,71904
+75481,19767,34217,71321
+75482,30409,54441
+75483,47356
+75484,56451,9228
+75485,12457,59116
+75486,32790,32417,10831
+75487,73306,14721,79400,40207
+75488,10717,70082,3768
+75489,34532
+75490,32505
+75491,39872
+75492,39215,76802
+75493,59740
+75494,12294,74788,34962,80319
+75495,21241
+75496,64015,52469,25224
+75497,67732
+75498,51412,31230
+75499,44973,70933
+75500,74325,46880,17276,63195
+75501,80415,37868,16731
+75502,61126,60748,60779
+75503,15893,15211,60454
+75504,41360
+75505,7618
+75506,47960,81846,75425
+75507,10900,55832
+75508,75358,57101
+75509,48391
+75510,27923,53071
+75511,26691,64658,39820,24938
+75512,9634,4280,73243,23492,853
+75513,56786
+75514,8095,59264,11089,6514
+75515,39680,55576
+75516,4515,74580
+75517,18839
+75518,54895,61591
+75519,75358,30808
+75520,7051,12402
+75521,75289,6951
+75522,20471,50226
+75523,7973,7150,35420
+75524,14681,27070,68057
+75525,59835,75552,14070
+75526,20624,68049
+75527,78642,71088,34073,63987
+75528,40659,74452,12221,57792,63431
+75529,2405
+75530,1784,19215,31101,24281,64001,1813
+75531,74293,33772,43679,23123,79001
+75532,50645
+75533,43827
+75534,13434
+75535,55478,7557,31641,25645,13454
+75536,11921
+75537,33740,64360
+75538,36592
+75539,56061
+75540,29477
+75541,75401
+75542,68834,12128
+75543,81386
+75544,12811
+75545,73274,37310
+75546,30526,39208,19484,3096
+75547,27410
+75548,67136
+75549,18473,20569,36785,27791,53709
+75550,984,62670,25924
+75551,25899,564,34313
+75552,35774,24898,17507
+75553,22925,31532,50718,16925,53823,31461
+75554,46361
+75555,23723,29744,36108,52205
+75556,41732,68353
+75557,25314
+75558,38828,58862,20789
+75559,12641,70188
+75560,64529
+75561,46124,3501
+75562,45022,71800,63392,74943
+75563,72223,79859
+75564,38539
+75565,818,67087
+75566,23683,13159,43201
+75567,7423,28617
+75568,25307,35141,34530
+75569,689,50492
+75570,9750
+75571,60609,77668,8739
+75572,44366,64535,62981
+75573,71837,24876
+75574,57892,52861
+75575,38500
+75576,62127
+75577,30464
+75578,34320,42002,43846
+75579,41179
+75580,60086
+75581,31316,43115
+75582,8828,76096,25696
+75583,51031,77668,19239,65920
+75584,73047,19067
+75585,75939,18720,26693
+75586,35835,58657,18127
+75587,42575
+75588,76315,33727,68156,65872,28814
+75589,76246,74510
+75590,8194,64546
+75591,66602,78554
+75592,50170
+75593,75222
+75594,26576,4813,8331
+75595,10619,16399,80343
+75596,6775
+75597,62495
+75598,46400,65733
+75599,41907,33698
+75600,11794,71915,13762
+75601,33218
+75602,67627
+75603,59329,6572
+75604,66888
+75605,67423
+75606,10654
+75607,2852
+75608,25156,9118,79198,10146
+75609,11360,10999
+75610,82079,52907
+75611,23155,46145,20529
+75612,65467
+75613,19488
+75614,80141
+75615,55857,59878,28990
+75616,74536
+75617,73555,8270
+75618,35625
+75619,51884
+75620,36052
+75621,26357,24074,24874,61333,22868
+75622,65917,54057,42352,18230
+75623,74414
+75624,66641
+75625,76744
+75626,69398,46999,77936,6284,9043
+75627,69924
+75628,22358,25871,54682
+75629,40045
+75630,40343,68552,19899
+75631,15636,81142
+75632,57262,674,21900
+75633,21317
+75634,62187,730,36975
+75635,45874
+75636,76187,31318
+75637,57199,5364,55913,16495,29872,51292
+75638,25039,64268,65174
+75639,57413,65955
+75640,7062
+75641,62614,52872,17943
+75642,79013
+75643,81570
+75644,27758,50416,41902
+75645,73994,39236
+75646,15346,16766
+75647,57679,24678,53426,47211
+75648,69974
+75649,18205,40513,23720,26022
+75650,77124
+75651,19431,3307
+75652,18616,1786
+75653,82182,27482,16258,71947,6453,37480,4565
+75654,33017
+75655,70995
+75656,48811,25881
+75657,12129,4764
+75658,69736
+75659,76472,13928,18283,47542
+75660,9515,51626,3107
+75661,31502,24063,25467,17346
+75662,12739,43400
+75663,1661
+75664,51208,34326
+75665,2512
+75666,44731,64470,55088
+75667,74686
+75668,46451
+75669,22196,79972
+75670,5148
+75671,29206,2286,59937,53353
+75672,52635,28970,62008,31900
+75673,76984
+75674,26245,984
+75675,31474,77067
+75676,11343
+75677,50492
+75678,17263
+75679,55254
+75680,18013,13969,28062,1662
+75681,28041
+75682,44091
+75683,24552
+75684,41518,45805,1750,18129
+75685,47513
+75686,45331
+75687,2920,26255
+75688,29945
+75689,42539,36302
+75690,57204,69710,53968,20219,1374
+75691,60723
+75692,53526,62609,71744,37846
+75693,66530
+75694,29074
+75695,16439,17047
+75696,21532,10542,2547
+75697,60020,60129
+75698,56448,73353,41780
+75699,57719
+75700,68057,4045,44407
+75701,37056,485,44496
+75702,57777,14260,15766,74955,55617
+75703,78419,44398,37754,17355,20943
+75704,41257,80185,49709
+75705,57155,2003,73751,11505,66614
+75706,8338,76320,29068,18778
+75707,30238,56059,53667,39155,40993,5813
+75708,27890,30097
+75709,297,4408,53000,19892
+75710,4811,78857,16111,53998
+75711,45065,14456
+75712,19439,22416,38194,1958,63595
+75713,11620
+75714,30065,25155,69753
+75715,65912
+75716,77385,17925,54355
+75717,53828,51760
+75718,29317,12953,71353
+75719,21459
+75720,63967
+75721,80569
+75722,64710,41162,36729
+75723,73099,45140,17526
+75724,79428
+75725,17881,61429,7273
+75726,45575,71473
+75727,16433
+75728,33018
+75729,69927,7426,19953,74261
+75730,27344,59430,7523,14729,12279,47982
+75731,54354,53845,35802,62359,28361,60381
+75732,48944
+75733,44216
+75734,67248
+75735,44013,77353,74075,8961,61346
+75736,36024
+75737,72803
+75738,5075,36330,49719
+75739,55046,26358
+75740,47639,54644
+75741,629,16075,34709,32265
+75742,29687,53512
+75743,64205,53059
+75744,81725
+75745,66216,22464
+75746,13570,78192
+75747,4494
+75748,23842,31422,2912
+75749,60788,14443,11684,78811,18015
+75750,15165,46169,71039
+75751,44989
+75752,23016,78533
+75753,1994
+75754,74707
+75755,8380
+75756,32742,43627,40245,79020,10127
+75757,14232
+75758,6223,62127
+75759,21608,64618,73941,10892,73802
+75760,74885,80365
+75761,53389,44697
+75762,7870
+75763,3579,10823
+75764,23870
+75765,24463,73832
+75766,37039,39642,65263,80480
+75767,23305,27339
+75768,32165,22859
+75769,33760,69242,40369,66127
+75770,79852
+75771,75279
+75772,60315,36378,54223
+75773,2368
+75774,74634
+75775,22729,4548,28900,20997
+75776,44115
+75777,62704,53638,20222
+75778,18746,10813,37438
+75779,6699,73399,14821,186
+75780,80552
+75781,23465
+75782,7056,30665
+75783,4518,49632,62622,68797
+75784,25234,21580,6328
+75785,30098
+75786,75380,7453,4898,31871
+75787,29381
+75788,44040,24788,20241
+75789,468
+75790,14887,28929
+75791,44726,12068
+75792,69969,54367
+75793,33175
+75794,1580
+75795,46866
+75796,80001,20765,71678,12523
+75797,63804,41846
+75798,31822,18565,36063,65190
+75799,44368
+75800,37224
+75801,66767,40309,30479,10327
+75802,27011
+75803,65226
+75804,23390,78927
+75805,43824,21794
+75806,67177,35563
+75807,61661
+75808,3479
+75809,20162,13847
+75810,17264
+75811,75781
+75812,24672
+75813,56750,78056,78458,40588
+75814,5691,26094,17947,36445
+75815,35889,16754
+75816,57811,18277
+75817,12394,7518,12960,18162,14424
+75818,50475,52171,59515
+75819,54813,32853,612,80177
+75820,6225,33297,23581
+75821,22999,73478,52059,19080
+75822,6236,2047,71635,44781
+75823,14613,55782,80313,77940
+75824,4864,77189,11856,12903
+75825,35295
+75826,66981
+75827,40995
+75828,23354,41207
+75829,23870
+75830,43875,31342,54709
+75831,40442
+75832,71491
+75833,79480
+75834,10667,81155,3423,51354
+75835,60472,55300,7641,18870
+75836,56007
+75837,38209,51511,48523
+75838,79708,42232,63320,42557,61033,52393
+75839,67645
+75840,57740,68886,58192
+75841,2234,67808
+75842,53363
+75843,27485
+75844,62366,79890,2995
+75845,51496,70677,1762,65915
+75846,41577,30535,22645
+75847,64838,1060,57325
+75848,47355,37079,43418
+75849,48189
+75850,33955
+75851,32408,48115
+75852,759
+75853,32164,80926
+75854,2551
+75855,17983,81330
+75856,20181,72660,25688,35067
+75857,33588,70444,26455
+75858,25797,21543
+75859,28980,54049
+75860,14543,80799,72760,28508,71153
+75861,17619,8198
+75862,12811
+75863,14041
+75864,66570
+75865,43249,2619,59646
+75866,55156,23448,17511,76452
+75867,19509,33601
+75868,42312,33510,8929
+75869,54175,62845,79462
+75870,70592
+75871,77054,17089
+75872,31945,72146
+75873,59655,13482,47061,67338,8408
+75874,56564,64636,80751
+75875,4792
+75876,5585,49936,56669
+75877,16034
+75878,46120,58018
+75879,31935
+75880,47914,46576,25141
+75881,64873,53864
+75882,12276
+75883,79458
+75884,13066
+75885,5530,1892,50062,57610
+75886,28092,28731,17343
+75887,72823,35578,51290
+75888,63299,75121,59170
+75889,3392
+75890,41893,16478
+75891,34791
+75892,43119
+75893,49993,55312,23751,74203,5149
+75894,27119,23258,44161
+75895,25551,79149,18162,8699
+75896,77870,75845
+75897,66311,28622,6206
+75898,7113
+75899,77002
+75900,59716
+75901,54334
+75902,5916
+75903,13115,24552
+75904,65226
+75905,16547,35787,76582
+75906,57942
+75907,66418,51154,62597,30115,60366
+75908,31535,12887
+75909,47191,19917
+75910,20213,65606
+75911,54758,60124
+75912,16993,81827,4292
+75913,67491
+75914,74175
+75915,35236
+75916,39325
+75917,72884
+75918,61538,29502,73761
+75919,31623
+75920,68704,9332,46197
+75921,6725,50354,16525
+75922,33480,12410,5064
+75923,1224
+75924,5501
+75925,71268,61199,30099
+75926,64603
+75927,36987
+75928,32748,59601
+75929,30655
+75930,56360,18588
+75931,41998,40032
+75932,49755,55036
+75933,78595
+75934,35393,16538,48755
+75935,6032,76687
+75936,76829,80440
+75937,66366,43124,30686
+75938,19509
+75939,12181
+75940,50595,53478,37745
+75941,66784
+75942,56657
+75943,18649,1950,66568,26746,80032
+75944,80451,68849
+75945,73918,79842
+75946,11397,74062
+75947,5969,78841,59069
+75948,73785,37924,18318
+75949,30678,71221,61625
+75950,44732
+75951,52875,892,8314,29908,11167,17745
+75952,47843,22644,9780
+75953,72678
+75954,78598,37450
+75955,36419,30029
+75956,71598,54558,65145
+75957,20992,5468,9500
+75958,53628,3576,43619,14045,71800
+75959,35269
+75960,21225,21898,36732
+75961,55903,14377,24426
+75962,81066
+75963,60054,172,37449
+75964,5619,80978
+75965,57678,40705,81812,33887
+75966,51063,72537,36958
+75967,49004
+75968,2844,14469
+75969,52318
+75970,66791,41452,54872
+75971,66962,72791
+75972,57990
+75973,17937,9840,58438,52973
+75974,29073,78387,32265,70625,15008,24871
+75975,74352,70442
+75976,32886,50848
+75977,46686,45203,80900,49332
+75978,42295,58072,38736,79336,38494,75533,66466,50255
+75979,78556,50242,57083
+75980,26976,43754,55704,772,47779,24886,69540
+75981,22812,7407,51468,8708
+75982,9949,58853,19723,53391,45693,13730
+75983,22432,57194,36943
+75984,39073,10551
+75985,8259,32897,9255
+75986,50124,41194
+75987,75905,25291,56295
+75988,62818,17530
+75989,51695,35858,55445
+75990,81731,33983
+75991,44256,81138,77109,46851
+75992,47380,11266
+75993,68027
+75994,3615,70562,78392,22918,59511
+75995,15383,16374
+75996,34759
+75997,80551,20893
+75998,41561,53574,33505
+75999,29904
+76000,20035,56598,7089,28912,80374,70813
+76001,46864
+76002,34935
+76003,56088,43400,37340,23149
+76004,41626
+76005,28759
+76006,81860,74719,23428
+76007,3845
+76008,21464,30224
+76009,67789
+76010,44941,5195,17494
+76011,23031
+76012,23195
+76013,11301,57186,13609
+76014,30886,11660,1996
+76015,68442
+76016,26766,58983,56490,14389
+76017,37036
+76018,15212,31016
+76019,68377,31457,12714,5445
+76020,50157
+76021,31347,81266,5530
+76022,70617,70564,77809,31327,35618,36992
+76023,75833,60280
+76024,21212,7879,68025,26119,27874
+76025,9156,72842,14281,71706,29195
+76026,56691,55379
+76027,22372,74122
+76028,68109,67188
+76029,619
+76030,18778
+76031,23079,334,42300,50245
+76032,72794
+76033,62284,79323,23194,7926
+76034,33209
+76035,3927,12806,28081
+76036,81321,9901,37439,49361
+76037,6008
+76038,11856,52156,40452,65846,55700
+76039,13178
+76040,71982
+76041,30004,15362,58275,45912
+76042,25931,78029,35678
+76043,57308,26037,48251,32250
+76044,6009
+76045,29052,58404,14636,8207
+76046,4168
+76047,33149
+76048,15270,76645,34429,41586,51837
+76049,41827,11701,78769,82066
+76050,51998
+76051,68101,21041,8445,13718
+76052,67084,79907,22449,64881
+76053,19367,75252,5864,77857
+76054,79457
+76055,82161,34497
+76056,56669,57373,36491,3296,10899
+76057,79837,53983,37413,28273
+76058,43611,25822,73786
+76059,65061
+76060,71564
+76061,79981,53244,25910
+76062,15222,21561
+76063,65918,78950,41234
+76064,28257,28259,57158,75670
+76065,22518,72779,56997,81152,3067,16935
+76066,69374,23255
+76067,28675,48306,51812,55603
+76068,39950
+76069,11191
+76070,16553,55907,19987,36751
+76071,61398,79803,19029,21013,22325,59737
+76072,3035
+76073,15522,77002
+76074,44104
+76075,48383,11498
+76076,53310
+76077,56872,63306
+76078,27661,68635
+76079,48615,70460,210,33267
+76080,32629,80189
+76081,57361,21034
+76082,32665,79050
+76083,76673,5216
+76084,41881,34907
+76085,15052,4698
+76086,28198,29746,28702
+76087,14758,7096,59232
+76088,3880,30477,20873,27785
+76089,8045,54804,81261,5887,34962
+76090,1462
+76091,32397
+76092,66285,70517,12766
+76093,47781
+76094,26129
+76095,58713,28959,15141
+76096,71572,41177,41975,4963
+76097,20757,34042
+76098,29344,16730,15713
+76099,51936
+76100,30728,44143
+76101,1874
+76102,51613,71796,48826,81340,69738
+76103,80951,43428
+76104,25531,13636
+76105,25991,8578
+76106,64514,79877
+76107,18689,10220,46700,43256,18524
+76108,25639
+76109,37725
+76110,5746,18981
+76111,81857,27894,75650,40679
+76112,41763,79389
+76113,14476,69730,23152,69646
+76114,52677,21560,29653
+76115,80910,22680,80288
+76116,71987,22846,58953,11809,3969
+76117,73568,31790
+76118,74573,42974,35545,81804
+76119,79666,45169
+76120,22350
+76121,81847,38245,76877,54181,29508
+76122,16501,8226
+76123,42262
+76124,78078,14200,65181,23413
+76125,37421,71069,63028,48661
+76126,178,5801
+76127,36987
+76128,9463
+76129,65197,15704,6192
+76130,249,32887
+76131,29186,4663
+76132,29887,59090
+76133,6713,47510,75596,25797
+76134,23978,16279,53857
+76135,36925
+76136,24619,1078,62213,36296,48974,57894
+76137,30448,33959,60181
+76138,69192,21526,67475,73931
+76139,82097,12893,41242
+76140,65120,68515,40441
+76141,10420
+76142,8599,24941,62421
+76143,35144,27201,9180,25487,12758
+76144,22304
+76145,12443
+76146,8570,50245,33551
+76147,5077,24269
+76148,80953,33027,24453
+76149,68726,22539,56336
+76150,75348
+76151,81854,40957
+76152,76947
+76153,36174,22696
+76154,77919,47598,3545,55515
+76155,60246,45925,1432,66072,25467
+76156,47588
+76157,43795,59006,38928
+76158,52369,29875
+76159,24181
+76160,70772
+76161,51270,18535,81111
+76162,14792,77056
+76163,60202,33182,2082,51444
+76164,68858,60536,824
+76165,18432,19284,57233,72782,13377
+76166,25613
+76167,41670,62606,32126,64591,9300
+76168,32119,80828
+76169,45795
+76170,58307,16961,48263,52778
+76171,19186,72379,18983
+76172,30621,21439,45106,48543
+76173,6324
+76174,34422,72545,47561,48739,12885
+76175,12774,78468
+76176,77163,38674,23429,65038,15142,50212
+76177,35446,23702,49611
+76178,40748,76194,58650,57675,35368
+76179,45744,67708,8015,42929,46243
+76180,82059,26394,36925,17032,31774
+76181,62709,20811,66744
+76182,73476,58652
+76183,28926,57306,79932,34908
+76184,16411
+76185,79407,5166,3640
+76186,52601,70070,37418
+76187,20282,12893,5703
+76188,47112,44340
+76189,74952
+76190,10160,43423
+76191,28945,37771,5672
+76192,65899,58102
+76193,30464
+76194,68227,45179
+76195,52066,58913,32007,30189
+76196,28775,31550
+76197,53721,28880
+76198,67682,35497,25758
+76199,23687,63923
+76200,70512,24288,81591,47683,77593
+76201,8309,39350,11073,39578
+76202,61861,10812,81070
+76203,73356,6588,32415,35350,74859
+76204,54008,40614,48238
+76205,25004,70274,28582
+76206,78273
+76207,28894,58920
+76208,58781,16858,31543
+76209,71975,25005,28014
+76210,48354
+76211,16111,2053,25613
+76212,20179,81477,32626
+76213,71628
+76214,67183,30907,29672,22220,18001
+76215,1093,81980,54922,9773
+76216,38607,77393,25472
+76217,21605,73892,618,39900,2259
+76218,78357,51097
+76219,48097,24248
+76220,36259,7079
+76221,36518,11847,40315
+76222,49882,68647
+76223,71194,41803
+76224,21405,75605
+76225,78836,76641,52648
+76226,13797
+76227,11947,45309,37947,47315
+76228,29258,48518,81730
+76229,25234
+76230,27714,72810,77920,44297
+76231,6925
+76232,1171,49600,27522
+76233,43673,67709
+76234,63656
+76235,6594,45547,69221
+76236,72614
+76237,58051,14153
+76238,10727,57836,37078
+76239,68911
+76240,63275
+76241,73427,44177
+76242,14841,30654
+76243,51917,41572,47648
+76244,37603,18599,27975
+76245,59265
+76246,67903
+76247,15644,55379
+76248,28279,71748,8673,63354
+76249,4202,52721,2717,16603
+76250,62745,79131
+76251,34550,65468,81712
+76252,32481,55492
+76253,35388,34841
+76254,70315
+76255,8813
+76256,40682,27134
+76257,34816
+76258,17754,18917
+76259,33814,75119,75022
+76260,38655,13575,44384,79985
+76261,75427
+76262,50385,64465,11834,37806
+76263,78275
+76264,32236,6327
+76265,60441,4425
+76266,80979,71159,78572
+76267,46404,46639,5488
+76268,23072
+76269,48688,74474
+76270,50024,18434
+76271,39479
+76272,22404,2021
+76273,48831,43151
+76274,38852,26745
+76275,61615,50105,56907,81604
+76276,42316
+76277,51510
+76278,14974,8631
+76279,76250
+76280,37426,77501,51710
+76281,31629
+76282,39764
+76283,17681
+76284,26613,47540
+76285,1256,38847
+76286,72719,21959
+76287,81030,69492,64942,39064,33630,24999
+76288,35189,14764,69939,75858,75190,56033
+76289,62542
+76290,71867,43378
+76291,54414,76391,24162
+76292,10337,21736,29981,38379
+76293,39934,73121,39861,61052,54760
+76294,70372,31234,38166
+76295,24119
+76296,74729,65109,75437,37682,60570
+76297,3782
+76298,41471,51289,74647,51769
+76299,70499,54081
+76300,32455,62881,65387,53617
+76301,54704,61147
+76302,33754,11782,59076,45076,38429,26519
+76303,42707,76936
+76304,56839,62572,61716,71278,42803,16583
+76305,7461,25996
+76306,9822
+76307,27946,62507,44352
+76308,67789,40815
+76309,23692,15669
+76310,28738,46659
+76311,3570,3684
+76312,61991,54284,41309
+76313,1922,73294,121,46194,27992
+76314,37504
+76315,66205,70705,77580
+76316,50671,31563,6520
+76317,53792,66418
+76318,48927
+76319,81404
+76320,79336
+76321,21458,19980,13414
+76322,32788,46759
+76323,20220,72650,67297
+76324,26068
+76325,1172
+76326,76716,73857,50612,3212
+76327,32448,61287,63673
+76328,81146,27117
+76329,78263,76571,30881
+76330,24625,5742
+76331,56203,75859,34998,32819
+76332,19128,44885,40026,20857,76339,48731
+76333,41525
+76334,7229,1267,48214
+76335,60180,77342
+76336,16632,51434
+76337,70954,1550
+76338,3051,67986,4999,67774,2032
+76339,3874
+76340,29844
+76341,58993,59495,80858
+76342,29283,31251,1970
+76343,15629,71434,38521
+76344,11563
+76345,6324,71639,67068,15561
+76346,20429
+76347,12905,8039
+76348,27333,51905
+76349,2664,22331,60259
+76350,77315,49877
+76351,6371,1695,44327,41304,68400
+76352,53243
+76353,43053,77738,55528,113
+76354,38516,12123,12634,81109
+76355,34072
+76356,31387,66570,15275
+76357,21066,40151
+76358,40059,43789,73892
+76359,3278,75595,67074,50116,51535
+76360,2208,42226,60237,8950
+76361,6517,21511
+76362,9477,73101
+76363,71197
+76364,78693,586,49129
+76365,4299,28830,37920,44583,13717
+76366,54850
+76367,43286
+76368,28962
+76369,70792
+76370,65047,63626
+76371,72555,44006
+76372,26414,70072,80447,38065
+76373,54631
+76374,11832
+76375,80126,38524,32028
+76376,48338,26626
+76377,41226,23092
+76378,73493,14980
+76379,68380
+76380,27942,81756,60962
+76381,36394
+76382,70519,81341
+76383,34334,49740,47811,79596,28679
+76384,496
+76385,33616
+76386,25722,63317
+76387,30568,18423
+76388,80542
+76389,9334
+76390,66278,52265,35365,62315
+76391,6463,1414,11091,36887
+76392,25262,2933,328
+76393,79433,54448,21345,45069
+76394,52913
+76395,62990,75291,4398
+76396,44866,75078
+76397,67176
+76398,20022,44151,67772,78885,23862
+76399,2575,26088
+76400,8268
+76401,77236,10948
+76402,54702,58556,37241,33342,6181,76642
+76403,54238,48105,27081,8942,7167
+76404,79477,26675
+76405,49245,69938,56460,75443,32991,21863,66892
+76406,66277,13202
+76407,60268,20069
+76408,34533,77537
+76409,45003,75496
+76410,21803,47842
+76411,67968
+76412,63932,22540,73619
+76413,15271,21580,44613,58282,7849,25986
+76414,58859,18378,67458,44325,23442,60546
+76415,66563,14101
+76416,53266,74486
+76417,13962,35940
+76418,69124,17983
+76419,51303,63522
+76420,80898,38706
+76421,8490,65852
+76422,6294
+76423,69804,6775
+76424,72627,74341
+76425,77843
+76426,43447,75616,77366
+76427,23903
+76428,8514
+76429,2986,8275,60261,75882,72812,54677,17520,19133
+76430,53716
+76431,71100
+76432,64020,42565
+76433,40130,55942,76461,41736
+76434,73861
+76435,55091,12891,35667
+76436,57424
+76437,44875,40709,39907
+76438,26049,72493,18594
+76439,56893,47724
+76440,67491,2011
+76441,40960
+76442,29169
+76443,33900
+76444,45215,48227,9462
+76445,3544,76967,2559
+76446,21651
+76447,80319
+76448,61003
+76449,31630,1691
+76450,37322,68462,41289
+76451,6987,74545
+76452,8875
+76453,45271,28819
+76454,3379,75548
+76455,58810,46754,20579,34112,57131,30606
+76456,46835
+76457,42150,20252
+76458,11875
+76459,13415,29414,1392
+76460,8526
+76461,54278
+76462,75161,1147,43787,73683,20753,46464
+76463,58543,67612,27124,34545
+76464,50819
+76465,69552,5248
+76466,11466
+76467,56955
+76468,38646
+76469,51821,42530
+76470,79295,40933
+76471,1558,38214
+76472,16751
+76473,67501
+76474,46926
+76475,35572,31710,57258,28607,5765
+76476,53154,22525
+76477,60847,29330
+76478,57778,16055
+76479,32766,26297,17614,71453
+76480,26039
+76481,17007,13185,71590,48507
+76482,43090,73233,70173
+76483,27103,77089,37667
+76484,53767,884,5330,37271
+76485,55254
+76486,43796,76274,33798,59870
+76487,49072,2774,77378,38346
+76488,57325,72592
+76489,41952,38703,17809,10520
+76490,17941,58430,73499
+76491,48918,37641
+76492,76549,46530,61677,60156,78069,30023
+76493,18672
+76494,20902,1386
+76495,7047
+76496,47763
+76497,3526
+76498,25073,4159
+76499,66091,14284,35951
+76500,26855
+76501,10428,70806
+76502,33159
+76503,2753
+76504,80756,12423
+76505,70598
+76506,23729,4337,56035
+76507,50297,54888
+76508,53319
+76509,46098,54330,53774,74587,14374
+76510,583
+76511,27385
+76512,67776,51421
+76513,52281,49443
+76514,60154,27446,26031,50812,57257,16559,52061
+76515,17443,15224,64769
+76516,69148
+76517,36824,377
+76518,78627,32982
+76519,3613
+76520,40389
+76521,73819,50083
+76522,4416,30995
+76523,9761,71663
+76524,81640
+76525,9161,47507
+76526,81141
+76527,27541,79444
+76528,24549,30254
+76529,3425
+76530,19414,79481
+76531,46532
+76532,3696,43350
+76533,36928
+76534,8038,67137
+76535,65633,32101
+76536,2952,38942,6864
+76537,46933,47624,29541,24109,70463
+76538,103,68259,11386
+76539,39226,70940,3023
+76540,72469,39574
+76541,4996,70177,32379,75593
+76542,76962,11823
+76543,53162,75478,37046,62274
+76544,26786,11154,38189,48250
+76545,41687,71670,67708
+76546,5929,51594
+76547,4416,17101
+76548,69172,28293,61629,6038,38932
+76549,30038
+76550,27828,16911,12045
+76551,50104,37669
+76552,30044
+76553,5514
+76554,34547,7356,64169
+76555,60942
+76556,57400,79079
+76557,26088
+76558,32654,8762,31803
+76559,71784
+76560,925,59781,50913,36904,30251
+76561,28686,70684
+76562,1005,78741,55537,56827,59800,20896
+76563,71811,72710,60321
+76564,24809,13466,24372,48887,64666,62218
+76565,14187
+76566,46892,53764
+76567,1687,7731
+76568,11837
+76569,40460,39450,42245
+76570,60312,61762,37054
+76571,64541
+76572,14227,65990,21673,48606
+76573,14609,48561
+76574,69655,2870,23033
+76575,58301,14480,45438,37134,61027
+76576,74894,15545,80651
+76577,48788
+76578,41092
+76579,63699
+76580,64036,44523
+76581,15471,34683
+76582,61522,55247,31865
+76583,68505,51153,52990
+76584,76070,72632,78271,59042
+76585,4341,30964
+76586,66693,8909,4047
+76587,49648,17658,69910
+76588,7646
+76589,2410
+76590,41975
+76591,66336
+76592,17841
+76593,118
+76594,32038
+76595,15090,40832,23957
+76596,36410
+76597,62255,42788,36427,29453
+76598,33988,19670
+76599,79185,44325
+76600,43543,8316
+76601,28274,52463,47615,28764
+76602,38652,47403,62826,81751,51536,66295
+76603,67981,61761,53198,27357
+76604,26225
+76605,8223,7115
+76606,78048,2732,16880,74745
+76607,70684
+76608,39100,58175,64009,20735
+76609,3867,56202,81643,17990,17565
+76610,79987,80947
+76611,80557
+76612,4279,39553,54052
+76613,64443
+76614,7733,80576,40527
+76615,66506,69502
+76616,79880,34867,56813,25333
+76617,75693
+76618,4028,38924,32071
+76619,77486,21975,81447,1742
+76620,77242,37978
+76621,2164,36670,47155,30538,7049
+76622,33558,45267
+76623,64467,11650,35944,39816
+76624,56936
+76625,15466
+76626,63889,3432,71265,79712,63085
+76627,66243
+76628,67783,51804,41493,24197,58582
+76629,74949,32772
+76630,8424,15436,69871
+76631,366,34470,68224
+76632,38002,9159,31737,7427
+76633,59399
+76634,7129
+76635,30860
+76636,69977
+76637,13970,48531,73544
+76638,38551,26125,10206,64581,79089
+76639,30884,46510
+76640,27203,65971
+76641,21293,67901,10221
+76642,8599
+76643,42146
+76644,54129
+76645,63648
+76646,64313,53909,4994,41374,60144
+76647,38680,65678,42212
+76648,7861,77983,37995
+76649,59101,64856,11206
+76650,40068
+76651,22217
+76652,54488
+76653,32171
+76654,10390
+76655,81372
+76656,11426,576,25063
+76657,54288
+76658,50048
+76659,74466
+76660,38270,71262
+76661,70148,11172,4191,62236
+76662,28438
+76663,71091,54113,33573
+76664,8258,67630,30251,54328
+76665,52787,8550,17669
+76666,77016,5639
+76667,2156,65237,29779
+76668,72484,3246
+76669,20210
+76670,1769,68565,67383
+76671,6756,56789,46741,48987
+76672,29661,81923,24538,63865
+76673,34760,72621
+76674,31213
+76675,45196,51096
+76676,2058
+76677,49205
+76678,70996,57896,57601,19641
+76679,3401,28705,37818
+76680,78087,45169,30635
+76681,22311,44653,70213,39183,33408
+76682,65852,44401
+76683,3408
+76684,6947,40491,72116,73083
+76685,29483,23005
+76686,45997,15466,59283
+76687,74257
+76688,38900,58769,13674,23432,21245
+76689,40636,49308,69592,9850
+76690,57388
+76691,23106
+76692,10020,66554
+76693,24709
+76694,24184,46311,8594,30857
+76695,53432,21310,17607
+76696,57113,72356,32532,25678
+76697,54332,32080
+76698,16407,74738
+76699,41409,18205,13196,31607,15346
+76700,72881,48598,39779
+76701,6753
+76702,56405
+76703,79785,26911,75870
+76704,80940
+76705,49411,69792
+76706,72492
+76707,10129,4161,60091,78829
+76708,41289
+76709,3189,6338,41442
+76710,46522
+76711,62996,47156
+76712,79295
+76713,25728
+76714,79973,3381
+76715,80393,45585,64950
+76716,42030,68130,22985
+76717,28313,70295,30521,42596,11315
+76718,38810,79612,59418
+76719,34496
+76720,59629,75257,62469,41770
+76721,12371
+76722,65183,9985
+76723,8448,59170
+76724,3035,63687,78742,61116
+76725,15492,61639,44731
+76726,37601,36945,79345,57213,67061,6048
+76727,82189,67544
+76728,80080,53276
+76729,44553,58180
+76730,81482,12206
+76731,60739,6494
+76732,32513
+76733,53967,17897,62332
+76734,80882,23888
+76735,72169,70405,23822
+76736,58376,53649,30533
+76737,52950,7148,61081,58230
+76738,63200
+76739,63521,15012,25034
+76740,78566,53786,5487
+76741,22680,12176,72494
+76742,66640,67758
+76743,69592
+76744,12456
+76745,73564
+76746,57905,59202
+76747,67136
+76748,80440
+76749,55863,20277
+76750,47195
+76751,18017
+76752,51156,42801
+76753,11878
+76754,71188,77978,81055,69677,4302,46213
+76755,29094
+76756,50023,38475,46653,5277
+76757,63267
+76758,57855,39422,14574,15625
+76759,21296,42569
+76760,28065,9777,64801,24862
+76761,77433,65959
+76762,81480,12468
+76763,17247,28094,48706
+76764,66419,45739,12148,13271,23166
+76765,24723,59673,48495,62126
+76766,35803
+76767,80023,456
+76768,41144,37123
+76769,23198
+76770,7265
+76771,22155
+76772,79184
+76773,56412,23725,15892,13253
+76774,60157,12365,38340
+76775,29045,72897,73040,10611
+76776,3519
+76777,15217,1535
+76778,73668,7759
+76779,10792,8146,59542
+76780,70625
+76781,34518,77084
+76782,11636
+76783,62949,78521
+76784,44780,60355
+76785,10776,64613
+76786,63097,56898
+76787,42631
+76788,61051,29138
+76789,48823,61973,55537
+76790,34767,38863
+76791,56027,9720
+76792,56521,45478,15431,31957
+76793,53182
+76794,4471,36954,14550
+76795,35834
+76796,74472,34707,58691,61412
+76797,10591
+76798,73098
+76799,78273
+76800,51522
+76801,27507,7087,70204
+76802,63093,60788
+76803,3472,10524,75845
+76804,22644,44529,77198
+76805,52591,58260,9846
+76806,49249,68220,66026,8290
+76807,14324
+76808,70770,1388,30693
+76809,5428
+76810,37695,1957,17,13402,52298,56074,68919
+76811,72614
+76812,6706,10010,61425
+76813,12269,42621
+76814,22453,12301
+76815,80716,11698,37775
+76816,11610,70466,10663,40103,28248,70016
+76817,81722,60078
+76818,50081,48328,44738
+76819,4727,3013,9739,26075
+76820,48549,76734,41106
+76821,68751,13656
+76822,77300,7076
+76823,20860,72625,62990,10021,9633,50161,48280,76281
+76824,60072,42737,69025
+76825,25599
+76826,71972,68048
+76827,9321,9116,39083,41857
+76828,40437,1610,70711,50683,9530,80979
+76829,72747,67720,26480,73728
+76830,60370,13912,34463
+76831,76139
+76832,28867,21070,38627,70721
+76833,17161
+76834,45821,33401,53891,8167
+76835,82135,77859,33049,11776
+76836,37706,29893,23668
+76837,31680,81759,78816,40807,31894,43612
+76838,17331,73017
+76839,19064,9889
+76840,49918,55589,29499,13737,60588,11901,26207
+76841,31795,26353,65979,1823
+76842,44620,34272,14312,2847
+76843,41836,26430,75165
+76844,1130,25688
+76845,43285
+76846,3865
+76847,61924
+76848,67713,6626
+76849,73179,20503,13903
+76850,7935,44231,43020
+76851,53850,75063
+76852,12657,34317
+76853,52558
+76854,3162,28850
+76855,34309,55046,16301,54233
+76856,60699
+76857,32549,2684,54236,16411
+76858,36482,4204
+76859,23870
+76860,3298
+76861,33483,72439,45186
+76862,54582,71361
+76863,39767,65210
+76864,3914
+76865,55110,44696
+76866,78060,58122,43623,46841
+76867,34526
+76868,52184
+76869,26407,26954,67945,44036
+76870,31737,20697,18279,48980
+76871,16191
+76872,62794,21629
+76873,70070,46269
+76874,51235,37113,36571
+76875,16272,4025
+76876,39206,7809,50079
+76877,44552
+76878,4169
+76879,78726,13054,42654
+76880,48660
+76881,47003
+76882,47002
+76883,16208
+76884,42982,12212,61557,37515,35644,6405
+76885,52360,39218
+76886,14517,20689,6399,61400,78191
+76887,17596,23675,7932,51879
+76888,27742,45835,40043
+76889,74464,43979,25362
+76890,68460,26129
+76891,30523,48133
+76892,20008,29303,62010,3820
+76893,45131,64337
+76894,29385
+76895,75048,4136,70486,62791,29615
+76896,5935
+76897,40415
+76898,13449,67501,34415,24439,80427
+76899,32325,10198,5872,40511
+76900,13471
+76901,5658
+76902,46952,26556
+76903,58227,71983,32769
+76904,23085,20242,37046
+76905,43834,75025,23633
+76906,53148,74123
+76907,48497,2350,37309,40235
+76908,71422
+76909,73912
+76910,32796,5411,65407
+76911,26401,42962
+76912,33926
+76913,39289,50809,17805
+76914,51299
+76915,2457,6120,42922
+76916,17952,41161,25625,3269
+76917,21488,14443,22209,31861,74228
+76918,70884,55505,15643
+76919,5575,67508
+76920,74028,78721,69534,27410,68249
+76921,73981,12608
+76922,14970,19071,9858
+76923,55488,47355
+76924,34939,68211,18001
+76925,28616,24546
+76926,15749,72343
+76927,20716
+76928,18514,64977
+76929,3579,40543,7914
+76930,45111,54503
+76931,1590,12278
+76932,52114
+76933,57833,62106,68277,49643
+76934,47933,14922
+76935,69896,47569
+76936,19786
+76937,47201,4607
+76938,24835,9007
+76939,43408,25230,30872
+76940,4906,81700,15293
+76941,8517,21221
+76942,38715,4246,67553,70817,22862
+76943,18806,43884,16640,71515,69398
+76944,51843,3533,53718,63205
+76945,2196,54542,43060
+76946,59819,80504,61303,39972
+76947,13317
+76948,29144,81700
+76949,27619
+76950,15572,4691,31964
+76951,39100,41177,58935,63503,6531,3764
+76952,29547
+76953,38379
+76954,29806,6568
+76955,17673,66874
+76956,81840
+76957,81399
+76958,7932,40249
+76959,40586
+76960,11197
+76961,41080,6732,26695,2165
+76962,71019,31477
+76963,50839,80593,3237
+76964,38363,22090,71193
+76965,48402
+76966,23963
+76967,39215
+76968,48927
+76969,63419,52743,67704,1749,28248
+76970,62843,12881,21698,14675,63315
+76971,12579,51692,49919,13082
+76972,70319,64761,58588,22628
+76973,56772,45265
+76974,18452,33829,68122,10923,78669
+76975,22619
+76976,4380,8412,3981
+76977,28382,43840
+76978,73923
+76979,78628,59970,68890
+76980,81748,46761,79599
+76981,10807,31104,41161,41116
+76982,81830,51417,924,54658
+76983,53186,55564,29788
+76984,66085,33410,16242
+76985,19762,64214
+76986,10531,19490,71907
+76987,60060,39536,7008
+76988,662
+76989,26019,60440,75859,78269,44941,76826
+76990,68329
+76991,47871
+76992,56192,33761,75070,7205
+76993,27721,18705,57169,56570
+76994,24444,81158,60103,54167,51645
+76995,38113,80731,29367,40472,54842,52417,58388
+76996,20319,15947
+76997,29453
+76998,20632,44653,74459,18987
+76999,3237,22287,63382,28314
+77000,76752,16815
+77001,65107,13574
+77002,58495
+77003,6726,32904,62613
+77004,42053
+77005,48336,10749,50691
+77006,24106,23938
+77007,41129,31156,54303,3461
+77008,9125,77290,76897,18929
+77009,26963,33927,10591,67397,16565,71384
+77010,65942,64
+77011,24438,71022,35868
+77012,18271,20040
+77013,16594,54282,65766
+77014,75455,70390,19086,8772
+77015,58663
+77016,42892
+77017,28947,58165,43505,21186,30484
+77018,43787
+77019,74697
+77020,26680
+77021,13025,74940,48614,26854,15437
+77022,74952,15566,1305,15384,34240,31460
+77023,18559,58774
+77024,42487,21469,47203
+77025,53717,38502,29638
+77026,29223
+77027,46042,52730
+77028,44364
+77029,1296,57619
+77030,50668,80685
+77031,2874,75043,50970,29755
+77032,68862,64690,29901
+77033,27583,13726
+77034,3174,11612,37720
+77035,46133
+77036,49600
+77037,52047
+77038,60284,2945,36486
+77039,65395,72317,74862,25742,61010
+77040,72753
+77041,67265,45799,706
+77042,24552,64795,43389
+77043,12222
+77044,28746,25223
+77045,11698,79093
+77046,65089
+77047,56159
+77048,75839,19192,40837,19921
+77049,20787,5604,5419
+77050,76263,33868
+77051,18427,51793,74465
+77052,28645,22202,6423,32095,81516,22811
+77053,30287,27430,12894,65377
+77054,75378
+77055,23267,2340
+77056,6775
+77057,61217
+77058,68618,62600,52239
+77059,58696,61665
+77060,25728,26331
+77061,39040,52072
+77062,63387,35272,42115,38170,35422,44211,70799,15700,61741,23245
+77063,36289
+77064,79161,55118
+77065,25602,65263,6667
+77066,23619,47104
+77067,29547
+77068,27775,56392,81387
+77069,68956
+77070,32042
+77071,62290
+77072,29892,6130
+77073,13019,19062,25908,38646
+77074,13986
+77075,55523,72867,10275
+77076,50463,50359,19078,71149
+77077,27041
+77078,72200
+77079,25162,19449,56221,20706
+77080,70087
+77081,34376,9149
+77082,72001,52076,6445,57157,72334
+77083,49581,57174
+77084,52706
+77085,20230
+77086,48934
+77087,39442
+77088,786
+77089,6234
+77090,25087,1220,15303
+77091,27284,14074,53123
+77092,49068,75736
+77093,5585,76953,26584,63836
+77094,21968,62745,57889
+77095,82009,11902
+77096,38980
+77097,16878
+77098,3214,31158
+77099,57657,5587,14511
+77100,27109,46451,19733
+77101,25048,67689,58533,1363,1563,33128
+77102,3119,16150,64968
+77103,51214,34058,43657
+77104,14189,50978
+77105,24483,25879,55035
+77106,78790,58289,66297,76168
+77107,54544,18955,8731
+77108,8583,1781,42685,65133
+77109,9161
+77110,69024,55324
+77111,65038,59831
+77112,62161,22,27330
+77113,46473
+77114,53070,70812,61995
+77115,12751,2385,71854
+77116,14718,50591
+77117,1799
+77118,15819,30174
+77119,10442,24047,50630
+77120,23440
+77121,67136
+77122,73614
+77123,56579
+77124,35382
+77125,31070
+77126,54307
+77127,82028,53977
+77128,28767,60221,316,72243,57892,1918,70580
+77129,51511,1221,72548
+77130,15514,70047
+77131,30383,14402
+77132,3679
+77133,73500,80613
+77134,2643,30326,43407,10779,79934
+77135,21136,19148
+77136,36088,17541
+77137,28441
+77138,38354,3961
+77139,68137,70116
+77140,43283,62666,14675,15670,47169,63620,50180
+77141,51553
+77142,36557,53052,68467
+77143,17238,54617
+77144,37844
+77145,32665,7572
+77146,39273,13900
+77147,68370,71572,2876,46290,24080
+77148,77963,36908
+77149,21716,54740,54812
+77150,1013,25472,29712,32702
+77151,77442,41584,37725,38086
+77152,64031,39991,35074,3595,42264
+77153,15183
+77154,62105
+77155,24122
+77156,34760,9022
+77157,68395
+77158,25251,33337,25065,48434
+77159,77868,32545,58454
+77160,53277,78445,43227,35915
+77161,31444
+77162,69451,67004,41097,8950,65375,46078
+77163,39355,42860,21867
+77164,29166,78630
+77165,68630,2219,414,26531,32408
+77166,2121
+77167,17379,52695
+77168,43523,77046
+77169,8270,27521,27140,64086,66897
+77170,62598,34148
+77171,62826,20591,11768
+77172,2832,38889
+77173,41570
+77174,20888,24403
+77175,68995,68818,38687,24160
+77176,55777,2161
+77177,9781,25918
+77178,35118,81725,40675,26427,68628
+77179,25606
+77180,21445
+77181,70338
+77182,33869,16685
+77183,37062,63114
+77184,23913,58984,27618
+77185,78318,1705
+77186,70208,45387,74866,13134,14035,27180
+77187,60740,60089,55131
+77188,22415,50394,35058,74939
+77189,66981,30304
+77190,39020,62978
+77191,47929,73250
+77192,1507
+77193,80976,38365
+77194,15734
+77195,23989
+77196,34148
+77197,11601,53102,26064,45346,1553
+77198,43820
+77199,42530,81605,1833
+77200,51165,69419
+77201,38434,78789,67405,75080
+77202,33107,2815,42521,14962,59687
+77203,52714
+77204,52802
+77205,4319
+77206,763
+77207,69353
+77208,22195
+77209,32871,78745,42044,68346,67583
+77210,22277
+77211,31039,70592
+77212,66054
+77213,57745,74986,78095,37101
+77214,69900,49178
+77215,59438,23557
+77216,52467,73264,53065,77893
+77217,48170
+77218,15185,70630,26765
+77219,43722
+77220,30642,28786
+77221,1274
+77222,47799
+77223,81942
+77224,67149,4146,18381,75210
+77225,81983
+77226,72389
+77227,3550,9252
+77228,5364,74338,30750
+77229,6574
+77230,54465,26918
+77231,27971,71150,79945,70705
+77232,80669,39764
+77233,5695,57673,9874,47408
+77234,12339,49106,53946,747
+77235,21711
+77236,53125
+77237,13524,35641
+77238,69808
+77239,19824,56909,39273
+77240,65997,57655
+77241,65894,59167,41381,5848
+77242,54558
+77243,80205,33860,69029,50879,8881
+77244,13894,33382
+77245,80039
+77246,25755,44439
+77247,74308
+77248,49725,65012
+77249,4735,3762,15944
+77250,30805
+77251,33064
+77252,11960
+77253,50137,11134,72831
+77254,80615,50399
+77255,27773,34232,12963
+77256,68867
+77257,28800
+77258,2898,45482,30643,53276
+77259,76361,42562,68629
+77260,64979,4637,22382,48732
+77261,32931,73588
+77262,22153,30695,60215,69816,26497
+77263,51726
+77264,74083
+77265,46238
+77266,52165,63275,76800
+77267,21643,59222,59842
+77268,70238,37124,9742
+77269,68859
+77270,77101,3193,25751,73828
+77271,10406,66193
+77272,7619
+77273,39690,10010,77217
+77274,77081
+77275,13707
+77276,18626,21466
+77277,32479,72753
+77278,64182,33244,8931
+77279,67992
+77280,26591,41747
+77281,15274
+77282,64017,875,50381,62228
+77283,48492,22164,5484
+77284,59305
+77285,6378,23120
+77286,2890,71016,31595
+77287,20401,28396,62242,48348
+77288,13179,74029
+77289,35596
+77290,55795
+77291,66138,60803
+77292,70536,64853,7979,30602
+77293,46975,70148
+77294,62865
+77295,20586,70057
+77296,45479
+77297,34306,73040
+77298,76571,24044,62782
+77299,69876,19048,9757
+77300,20342,63331,61240
+77301,29741,20283,81189,6420
+77302,18122,45754
+77303,69577,17654,38889
+77304,46463,45368,75960
+77305,38939,53714,719,42236,49619
+77306,78051
+77307,17073,62303,41008,40518
+77308,51235
+77309,17223,79191,30812,26722
+77310,59143,33060,208,51296
+77311,62340,52266
+77312,46312
+77313,46989,24131,29709,59529
+77314,47495,51120,49556,5935
+77315,70611
+77316,65108,34571,76152
+77317,75232,62705,28957
+77318,71328,71790,62755,46459,3469,6914,62187
+77319,29786,62376,16395
+77320,62136
+77321,38838
+77322,63830,75809,32344,48729
+77323,33632,47893
+77324,54179,74494
+77325,29171,71824,57804,30414
+77326,46506,45851
+77327,26317
+77328,33392
+77329,77550,72022,36436,34853,71731,17736
+77330,80727
+77331,49159
+77332,77137
+77333,64194,45206,11116,45416,37265
+77334,36860
+77335,66277,56007
+77336,44623,37224
+77337,22040
+77338,14611
+77339,1678,13351,1587
+77340,58691
+77341,48896,10978,13057,33094,54496
+77342,80441
+77343,64668,71382,19345
+77344,52747,3098,71862,62211,32574
+77345,13375
+77346,65401
+77347,67199
+77348,12758
+77349,15024
+77350,75913,66132,16363
+77351,38452,16766,10386,2002,23250
+77352,38092,77439,20677,52203,50162
+77353,9707,81010,25557
+77354,20347,36113
+77355,54437
+77356,15183
+77357,63422
+77358,13390,23466
+77359,74134,58873
+77360,10808
+77361,35807,81879,48498
+77362,9149,79430,62501
+77363,1187,46986,46669
+77364,81760,4177
+77365,72223
+77366,63169,52281,35563
+77367,79058,65409,57275,7900
+77368,3556
+77369,48601
+77370,8641,65953,3171
+77371,43981,1989,37652,33889,76826,75221
+77372,8248
+77373,70959,59424,20435,74349,38895
+77374,7666,13317
+77375,14022,1927
+77376,43156,62127
+77377,28788
+77378,37399
+77379,7536,27607
+77380,41165
+77381,36520
+77382,81677
+77383,79441,48977,35793,33924,73024,10090
+77384,10426
+77385,60302
+77386,10821,4698,34955
+77387,18851,79161
+77388,46284
+77389,14201
+77390,67748
+77391,80858
+77392,17371
+77393,46943
+77394,74053
+77395,1070
+77396,45284,37541,26605
+77397,67441,35331
+77398,33607,15987,20505
+77399,60856,56144,65998
+77400,78361,74125,22893,56396,25641
+77401,33395,28553
+77402,22956,3501,67617,27553
+77403,80660,72390
+77404,43187
+77405,54674,20737,52869
+77406,27308,46623,64564,60401
+77407,47096,55099
+77408,23345,18951,70624
+77409,82006,39938
+77410,48311,57168,77146
+77411,73312,28189
+77412,45403
+77413,4382
+77414,12416
+77415,3135,477,22862,40758,10705,35174,22245
+77416,16897,25964,23029,80501
+77417,57266
+77418,14623,23459
+77419,53149,75234,44401
+77420,24397
+77421,63828,18691
+77422,15305
+77423,51521,25980
+77424,49079,56022,63166
+77425,4362,57960
+77426,56498,1112,45124
+77427,52295,12580
+77428,8390,47605,27972,49085,15318,40269
+77429,25185,49109
+77430,73859,60338,81618
+77431,27967,25446,40060,46005
+77432,46675,65783
+77433,78357
+77434,72824,5772
+77435,47246,75931,8726
+77436,50477,71846
+77437,7961
+77438,42304,48852
+77439,75400
+77440,75920,21079,44472
+77441,16818,70778,60126,38602,12472,73796
+77442,65038
+77443,50871,29303,43643,12256
+77444,12507,59049
+77445,6031,12438,25094
+77446,20035,19730
+77447,62382,19583,978,41938
+77448,61339,12816,64709
+77449,70693,49476,73907
+77450,14477,47240,32996
+77451,16707,74787
+77452,53996,50455
+77453,56746
+77454,19221
+77455,60667
+77456,52603,23177,51666,31516,74550
+77457,28783,964,67964
+77458,60812,16240
+77459,34971,66017
+77460,1446
+77461,46900,67621
+77462,22770,60069
+77463,38510,40483
+77464,9510,27509,71163,61972,69786,70385
+77465,54578,3488
+77466,68205
+77467,77698,8714,66719,73318
+77468,63648,4646,40419
+77469,74785,38746,44200,36485
+77470,18093,14714,14596
+77471,23958,70515
+77472,24504
+77473,68861
+77474,14677,4035
+77475,55011,28633
+77476,53139,63703,6053,6478
+77477,13188,16673
+77478,74062
+77479,3871,56933,26973
+77480,1071,57194,69624
+77481,2028
+77482,70550,38054
+77483,24230
+77484,61798
+77485,13519,930,62291,5519
+77486,39474
+77487,64893,18184
+77488,11763,37719,53077,10828,63503
+77489,6378,22810
+77490,42944
+77491,52028,46430,8041,45843,43623
+77492,27130,18856,80799,70709,69255,24177
+77493,968
+77494,58813,68475,53844
+77495,29562,20130
+77496,26657,13686
+77497,76836,44147
+77498,40670,1131
+77499,78038,71529
+77500,14355
+77501,54236,34942
+77502,24475,9892
+77503,32577,32423,69836
+77504,80033
+77505,36524
+77506,22721,25964,73619,42060,46854
+77507,60445,52218,67807,36332,65604
+77508,37141,27628,25450,73980
+77509,35144,16425,75964
+77510,57084
+77511,34018,34253
+77512,36781,26725,77015,44251
+77513,54969,17502,80234
+77514,32318,53160,41187,681
+77515,29443,40268
+77516,57734,39372
+77517,20997,16269,8060
+77518,60483,55633,34128,50837,3644,68163,116
+77519,32139
+77520,56570,53323
+77521,58822,75251,68221,22219,9506,11672
+77522,43082,25971,64056,38124
+77523,46523
+77524,69462
+77525,18819,22115,36333,26430,2752
+77526,33505
+77527,30796,50783
+77528,73225
+77529,77691,16265,68173,10019
+77530,12861,3282,52987
+77531,1462,81459
+77532,17778,33407,40462
+77533,69496,26172
+77534,68661,29946
+77535,79860
+77536,14724
+77537,57683
+77538,45558
+77539,44606,42063,16422,16224
+77540,9424,8221
+77541,19590,72708,10372,31571
+77542,26522,54451
+77543,55101,57783
+77544,76641,72422
+77545,81459,20212,16411,77180,5692,2559
+77546,15547,49472,21541
+77547,30425
+77548,80186,43445,79726,34106,23157
+77549,74232,14203,19319
+77550,46090,70506
+77551,25495,8418,50557,25691
+77552,3787,66932,59676,81490
+77553,39207,21665,59850
+77554,22714,39133,46797,54240
+77555,32957,12613
+77556,43874,51338
+77557,57478,1955,26096
+77558,44110
+77559,31554
+77560,14838
+77561,60200,68907,59578,14463,10534,63145,11717
+77562,64480,23564,21788
+77563,1081,48595,62886
+77564,45491,10119,36369
+77565,33576
+77566,36666,79278,79400,22388,29683
+77567,47006,2736,37468,36257,35838
+77568,25147
+77569,62035,59115,37373,60305
+77570,5264
+77571,68918
+77572,71270,41146,57024
+77573,9330,41698
+77574,11406
+77575,37124
+77576,32617,80331
+77577,75419,1665,67705
+77578,21181,56326,14813
+77579,57540,25672
+77580,36416,67504
+77581,60945,19837
+77582,53000,52660,45496
+77583,9334
+77584,7913
+77585,71485,21813,10093
+77586,5112,72081
+77587,79031,27826
+77588,79882
+77589,76209,12084,51737,71186,40106
+77590,36146,44125
+77591,37109,31075,81700,81370
+77592,4458
+77593,74811,3649,79042,5103
+77594,45481,60723
+77595,10876
+77596,58549,21173
+77597,11011
+77598,73862,41241,51547,72057
+77599,68534,82165,80791,34175
+77600,41858
+77601,25294
+77602,48419,26773,31029,36427,30049
+77603,15829,57357,80260
+77604,50765,77983,36248,11542
+77605,74613
+77606,66098,23409,47050,77027,60449,60613
+77607,19108,42557,24314,33973,69929,329,46993
+77608,51106,38408,7680,37933
+77609,15029,81575
+77610,34217,7336
+77611,3373,18144,68708,39472
+77612,68575,49079,3651
+77613,4382
+77614,72505,62876,59139,66251,4257
+77615,16007,63189
+77616,26437,36613
+77617,33890,53499,48991,22877
+77618,8258
+77619,4813,27645
+77620,45831,39056,7496,44236,21033
+77621,46287,53972,53837,67333,44576
+77622,43339
+77623,12398,66774,74206,42885
+77624,28009,62694,22661,51175,66847
+77625,28011,42624
+77626,70238,21241
+77627,59900,29589,65953
+77628,25696,10838
+77629,56261,74238,38364,1805
+77630,57047,45315,18292,41320
+77631,59693,12322
+77632,54528,43361,77151,76103,45038,46477
+77633,22331
+77634,57897
+77635,31925,28085,13736,66953,69646,66819
+77636,60081,23853
+77637,52349
+77638,70050,47462
+77639,17841,37010
+77640,69420,21785,13712
+77641,62264,72447
+77642,19706,61973,79910,26883
+77643,24568,20097,63855
+77644,9428
+77645,32874,25223,28345,23347
+77646,50819
+77647,17980
+77648,20945,61719,41789,37449,23711
+77649,45787
+77650,47784,21591,20215,46428,48694,31704
+77651,71781
+77652,43877,31535,27826,15257
+77653,68009,72492,78360,38415,15438,23621
+77654,11378,21608
+77655,75048
+77656,14363,974,33099,60653
+77657,16215
+77658,24882,5288,7078
+77659,62926,22813
+77660,19852,4942,48520
+77661,14703,60281
+77662,823
+77663,792,19951,75967
+77664,25227
+77665,26153,55000,34140,79053
+77666,51960,26043
+77667,23267,32582,55652
+77668,22460,764,80185
+77669,37006,46323,10246
+77670,57449,2141,18442,1753
+77671,52047
+77672,54649,46459,59196
+77673,5194,49423,27901
+77674,78545
+77675,35054
+77676,1633,73163,81694
+77677,9285,44420,1374,8889
+77678,55589,67907,47351,24935
+77679,52466,66622,43560,10730,23339
+77680,14056,60408,42352
+77681,78313,10426,21627,81447,17936
+77682,2489,50793
+77683,54860,21068,33207
+77684,57908
+77685,34331
+77686,51509,74348,47183,68457,4756,2428
+77687,4280,20051
+77688,15168,19469,38078
+77689,73045,7976,51628
+77690,81034
+77691,14809,64530,29446
+77692,25294
+77693,27975,78843
+77694,65343
+77695,41410,16188,49590
+77696,13794
+77697,17505
+77698,77050,73640
+77699,34541,11248,53462,38017
+77700,80685
+77701,70997,3972,263
+77702,3547,29405
+77703,4954,75854,72663,9417
+77704,55747,65283,43380,79332
+77705,6217,81583
+77706,79634
+77707,20012,24737
+77708,379,51585
+77709,12205,11555
+77710,12374
+77711,6728,56669,18713
+77712,6385,10361,27712
+77713,18077,58207
+77714,74894,45025,61643,12281
+77715,51186
+77716,47253
+77717,32260,7598,1279,70504
+77718,5008,58370,34838,9112
+77719,35337
+77720,34130,70005
+77721,7507,20711,66388,57291,2754,63998,37712,43872
+77722,73806
+77723,67311
+77724,65226
+77725,67315,30880,72625,48726,20169
+77726,65879
+77727,59964
+77728,79791,23541,13936,7124,65766
+77729,8547
+77730,31542
+77731,35941
+77732,77690,2463
+77733,71422,47851
+77734,51078,52170,19943,40312
+77735,10278,53055,52685
+77736,46612
+77737,61433,26658,21621
+77738,64596
+77739,74467,27210,64777
+77740,70890,27820
+77741,63462,43743,20279,26375
+77742,77537,79275,69557,76405
+77743,27366
+77744,59808,7826,53802
+77745,60455,36388
+77746,19537
+77747,14239,33208,37596
+77748,51105
+77749,17201,75771,66672
+77750,5644,106
+77751,53665,61772,49159,81860
+77752,40904,80753,15700,27645
+77753,79706,63312,44689,6736,51716,11280
+77754,60463
+77755,74797,11517,30434
+77756,52936,39330
+77757,20783
+77758,79863
+77759,66784
+77760,60155,11322
+77761,53751,4752
+77762,15000
+77763,6538
+77764,51086,81518,79069
+77765,2694,60151
+77766,4901
+77767,11906,74228
+77768,25162,16799,31571
+77769,40349,7113
+77770,63467
+77771,58278,19167,2265,74435
+77772,39483,52509,40654,81655,39585
+77773,27553,27868,57362
+77774,23741
+77775,5322,40677
+77776,36033,59658,16843,52054
+77777,11043,54651,9908,50781
+77778,56523
+77779,56688,58477,36158
+77780,38923,15091,67302,19565,34680
+77781,19522
+77782,39242,46212,16043,17270
+77783,72804,56596
+77784,59712,53093
+77785,68438
+77786,75720
+77787,25279
+77788,18611,18487,28676,67483,50237
+77789,75828,50970,76208
+77790,13450,67467,54181
+77791,48162,13314
+77792,76585
+77793,41858
+77794,25063
+77795,56959,17428
+77796,25167,10738
+77797,47744
+77798,59087,32578,59160,52659
+77799,46284,68048
+77800,76194,25576,14372
+77801,35689,73481
+77802,35537,26497,59092,22072,63536
+77803,63067
+77804,26042,7968,74624,82025
+77805,8655,38319,56760
+77806,74284,72210
+77807,2589
+77808,63671,43650,6771
+77809,38055,47605
+77810,80697,24923,36753
+77811,32824,3497
+77812,24935
+77813,10134,12984
+77814,67536,34276
+77815,67848
+77816,54005,22689,5207
+77817,18167
+77818,44685,40746,61785
+77819,16022
+77820,79127,51990
+77821,50917,14691
+77822,11616
+77823,31375
+77824,7860,22274,47182,65509
+77825,17769,3589
+77826,61249
+77827,30494
+77828,44899
+77829,47761,3729
+77830,27520,54547,47842,45432
+77831,59969
+77832,7455,10729
+77833,38641,82188,17525,43474,74452,48751
+77834,63778,22722,24788,52798,46214,7149,54110
+77835,1742,52289,75400
+77836,39226
+77837,47906,1407
+77838,16613,20252
+77839,45759,48903
+77840,10283,24185
+77841,80741,65444,67951,57727
+77842,45085
+77843,62804
+77844,52429,4928,69931,64633
+77845,54312,7314
+77846,1434,47618,49693,31965
+77847,81462,72867
+77848,63799,72514
+77849,82122
+77850,27067,7860
+77851,57872,53695,67424
+77852,61868
+77853,32452,78718,38232
+77854,49369,26112
+77855,23142,5994,37482
+77856,66469,12264,77136,69471
+77857,33394,77020
+77858,65810,8896
+77859,43185
+77860,42408
+77861,25565,10223
+77862,25708
+77863,60255,8109,74051,24799,22801,54065
+77864,23307,44763,53116
+77865,11602,44832,275,77272
+77866,19807,31211,400,25817,28277,80349
+77867,31075,54663,9031,75574
+77868,11317,40149,33293
+77869,40582
+77870,71255,15576,42977
+77871,32703
+77872,6154,43931,61554,50623
+77873,76952,60276,45490,4943
+77874,16757,38177
+77875,30536,21735,10086
+77876,48176
+77877,49392,10872
+77878,15018,28928,12975
+77879,81101,4276,73,25650
+77880,50191,76846
+77881,51487,28601,62996
+77882,32888,64916,5529,67937,40663,59842,50495
+77883,41241
+77884,58576
+77885,62930
+77886,14343,12258
+77887,46473
+77888,62977
+77889,16147
+77890,7954,28112,64065
+77891,69148,19556
+77892,14449
+77893,79735
+77894,32832
+77895,55347,2453
+77896,25996,55779
+77897,61629,51084,62536,64453,27609
+77898,75125,38958,76984
+77899,15155
+77900,57208
+77901,32085,21763
+77902,11584,19030,35513,13592
+77903,75106,70304,29906
+77904,38229,211
+77905,54525,19544,6026,4968
+77906,54025,27188,38441
+77907,67836,76770,81438,68605,8140
+77908,69530,8959,29804,31757,6075
+77909,44910,13729
+77910,9026,66139,9317,15148
+77911,70901
+77912,44953,78665,2746
+77913,3586,78927,20644,16349,61374
+77914,48371
+77915,47866,31147,15340,21742
+77916,60879,9350,48989
+77917,53138,29581,7270,63401,21373,26688,75568
+77918,28077,24126,11895,78662,6729
+77919,69668,2546
+77920,40153
+77921,47003
+77922,38868,43953,1998
+77923,77476,58604,56390
+77924,79743,81376
+77925,32476
+77926,6530
+77927,49643,77510
+77928,3681,41282
+77929,17934,26823,65129
+77930,49729,49782
+77931,53238,57043
+77932,8572
+77933,18552,51884,26602
+77934,43707,23293
+77935,38194
+77936,32228,72187,63425
+77937,33980
+77938,58711,80671,33471
+77939,57708,25493
+77940,40081,67423
+77941,31467,1349
+77942,42187
+77943,78436,61365
+77944,54407,59517,69085
+77945,113,79348,31887,49896
+77946,3974
+77947,38871,26708,60692
+77948,81422,64694,81575
+77949,65515
+77950,38387,24537,6250,47001,40719,5274
+77951,75992
+77952,23205,10421,45732,45967,20928,8430,65111,34999,45329
+77953,1746,7461
+77954,3659,69850
+77955,7927
+77956,45905
+77957,16905,65277
+77958,25380
+77959,49359
+77960,46330,51396,13773,45320
+77961,48494,19823
+77962,19393,2618,11339,59664
+77963,31108
+77964,53121
+77965,72898,63660
+77966,67835,7608
+77967,78329,33293,26370
+77968,2307
+77969,39523,9711,35195,55267
+77970,24804,73864
+77971,20704,40392,5751
+77972,20748,73358,10011,63184,19471,63516
+77973,26455,73889,73922
+77974,34766,19717
+77975,35382
+77976,22516
+77977,55218,15914
+77978,23236,35711
+77979,72107,62089
+77980,50741
+77981,40641
+77982,36088,11275
+77983,8218
+77984,8026
+77985,37045
+77986,39353
+77987,57254,62995,3694
+77988,62284,10232
+77989,9133
+77990,67591,38998,12521
+77991,49940
+77992,51421,43263,19325
+77993,63575,15052,37078,4933
+77994,43367,75600,78119
+77995,14442,18259,66619,15612
+77996,77637,49652
+77997,8958,3285
+77998,28121
+77999,38685,20646,11080,39718,36049,16306
+78000,22262
+78001,69846,23870,71835,69036
+78002,28101,35081,67358
+78003,57380
+78004,26822,28879,10000,32229
+78005,65096
+78006,37788,5043,75228,19899,16417,39223
+78007,79992
+78008,65946,15975
+78009,62843,22189,76254,24572,17544
+78010,34149,71617
+78011,42202,52103,74867,53670
+78012,31770
+78013,53445,70542
+78014,70581
+78015,37350,7764
+78016,15305
+78017,25751
+78018,26585
+78019,76010,3797
+78020,8800
+78021,2771,75665,1364
+78022,27739
+78023,81995,66766,42227,58339
+78024,71410,34745,63406,47471
+78025,10296,28395,19063,24274,36804,18782
+78026,17626,39655
+78027,70783,81385,8037
+78028,14567,3405,17251,4202
+78029,46253
+78030,61684,27748
+78031,42250,79739,23925,79027,58488,23916
+78032,3961
+78033,31890,69989
+78034,26205,45402
+78035,19832,16760,42226,2257
+78036,18842
+78037,79448,29993,33383
+78038,15193
+78039,73687
+78040,3124,45826,71861
+78041,62977
+78042,59886,81198,69654
+78043,78835
+78044,25435,29346,8314,42602
+78045,70058,34054,15726,13348,60969
+78046,70445,7967
+78047,67983,18532,22658,12458,58587
+78048,56840,53579
+78049,247
+78050,59585,37693,71037
+78051,29043
+78052,72343
+78053,59796,76197
+78054,22606,285,18605,58266
+78055,7701,46731
+78056,45018
+78057,43137
+78058,4889,71162,40189,41925
+78059,20053
+78060,64094,18228,51840,25267,29499
+78061,5565,78577
+78062,5782,40958,66641
+78063,28038,43623
+78064,67908,4301
+78065,31610,47006,67504,18694,36616,13429
+78066,35594
+78067,20700,76760,52936,65305
+78068,35734
+78069,73615,61003
+78070,73514
+78071,11157,69924,34453
+78072,26402
+78073,11701,35941
+78074,56920
+78075,37072
+78076,35295
+78077,46975,47934,50105,15294,21080,41816
+78078,81792
+78079,41289,29212
+78080,67343,78083,44104
+78081,29993,29709,76504,7860
+78082,37091,20715
+78083,45452,18178,3943,77139
+78084,23494,52847
+78085,72535
+78086,37111
+78087,18230
+78088,32665
+78089,24640,16824,11169,22425
+78090,58827
+78091,54145,6294
+78092,14583,65619,10435,21348,73328
+78093,16804,76705,64807,28449,3572
+78094,22413,11681
+78095,60317,65929,82062
+78096,49293,46390,25341,27228
+78097,45393,79137
+78098,51230,4116,38636
+78099,65610
+78100,77939,47269,40189,69611
+78101,964,77016
+78102,57828,51268,60847,72036,30119
+78103,12945
+78104,34697
+78105,59210,357,2145,49557
+78106,76434,1084
+78107,29074
+78108,66931,70295
+78109,33744,15644
+78110,8429
+78111,13718,70878,51491,66945,79561,65380
+78112,47772
+78113,38077
+78114,72046,34016,12262
+78115,41239,57883,69046,20805
+78116,81346
+78117,15644
+78118,40506,60203,56681,38515
+78119,30037,70299,26060
+78120,12122,22859,40558,26034
+78121,72672,3615
+78122,37658,80650,12494
+78123,34250
+78124,41069,1107,30321
+78125,4917,12768,81982
+78126,43497,2534,29231,80257,80166
+78127,57459,25180
+78128,2027
+78129,28893,43487
+78130,69246,25048
+78131,9579
+78132,34885,59373
+78133,2707
+78134,25156,14776
+78135,82033,23419,69963,16031,60805
+78136,43633,75257,43959,39609
+78137,59285,60794,11207,13049
+78138,31749
+78139,8195,38641
+78140,70981,24601,50736,16024,27269,2254
+78141,25794
+78142,75502,15049
+78143,49149,58339,75587,62012
+78144,62733,62215,42395
+78145,257,64556,39178,73841
+78146,13425
+78147,30184,26693
+78148,65596
+78149,39195
+78150,80383
+78151,274,46209,43872
+78152,71601
+78153,29177,13204,52322
+78154,24038,31206,8655,10132
+78155,27410
+78156,79912,40098
+78157,24032,21480
+78158,36347
+78159,38659,58343
+78160,69607,19026
+78161,60443,33337,70406
+78162,2028
+78163,80776,36008,82091
+78164,41599
+78165,63376,62394,10165
+78166,60329,76101,7052
+78167,71247,52657,39826
+78168,2957,4667,36308,64551
+78169,30435
+78170,11273
+78171,1691,44468,30452
+78172,10348,21818
+78173,54954
+78174,39359,82088
+78175,10270,54350
+78176,12049,68877
+78177,48568,8676
+78178,22423,15989,869,65834,74660,41382
+78179,38549,32097,63972,17197
+78180,19233,41554
+78181,18519,37635
+78182,35991,28516
+78183,55987,63266,25369,32483,80209
+78184,34023,57680,58185
+78185,74724
+78186,78321
+78187,28252,41600,36932,80572
+78188,18028,80422,36017
+78189,14747,69949
+78190,56762,1864,26454,38946,41698
+78191,59121
+78192,48628
+78193,35155
+78194,77487,60861
+78195,17320,80052,43811
+78196,51196,2557
+78197,66652
+78198,72546,42837,8879,13365
+78199,9234,53391,39612,75776
+78200,65159
+78201,69624,54760,72258,14140
+78202,36771,44996,24088,63470
+78203,56191
+78204,53967
+78205,70920
+78206,27822,76329,57029,70244,33175,44880,27183
+78207,1403,40303
+78208,33101,68366
+78209,16894,37463
+78210,81526,53118
+78211,10741,45607
+78212,79949
+78213,4855,11011
+78214,59352
+78215,28526
+78216,66417
+78217,68323
+78218,46147,11661,765
+78219,79578
+78220,56812
+78221,27271,3187,5825
+78222,66678,72442,20630
+78223,19990
+78224,70043
+78225,42892,10376,38838
+78226,72075
+78227,14673,20678,60847,9088,19090,41943
+78228,79153
+78229,10979
+78230,50919,60262
+78231,64825,9955,7062,17736,21178,2153
+78232,38833,48286,41428,53523
+78233,45780,7790,19648
+78234,71911,38535,10511
+78235,51278
+78236,77558,59021
+78237,42774
+78238,77783,2065,35677,19537
+78239,45997,8972,41676,27414,69060,5428,72722
+78240,48351
+78241,2486,41520
+78242,47184,5434,54350
+78243,19100
+78244,23699,73264,1464,55972
+78245,1443
+78246,11206
+78247,77236,8355
+78248,35293,81614
+78249,76799
+78250,26614,46687
+78251,31527,45384,36021
+78252,53079,47438,34308
+78253,75232,62776
+78254,73365
+78255,80044
+78256,56744
+78257,6060
+78258,53325,77968,50118
+78259,26986
+78260,7655,34880,19987,77755,58525,30064
+78261,18265,19556,52822,28569,21700
+78262,4494,76480
+78263,7346
+78264,37901,2258
+78265,40961,54502
+78266,15600,48634
+78267,25220
+78268,36807,33603
+78269,32673
+78270,71314
+78271,19930,27329,25077
+78272,15230,67370
+78273,31285
+78274,18150,57495
+78275,50145
+78276,26723
+78277,30959,13700,10037
+78278,30515,12656,78156
+78279,73680,2700
+78280,58425,23428,13451,44521
+78281,52644,63533
+78282,78627,41878
+78283,22318
+78284,58028
+78285,46244,45966,70647
+78286,51557,38434
+78287,16652,9488,27776
+78288,18419,59467,43359
+78289,50143,46796,11464,46631,55419,45540
+78290,16404,76782
+78291,76569,32130
+78292,72592,32196
+78293,74087,38987,7432,19389,40049
+78294,34193,12721,7890,29665,12589,67166,42851
+78295,63202
+78296,27991,80382
+78297,25427,13063,73156
+78298,28077,73040,11713,56132
+78299,37408
+78300,41276
+78301,23585
+78302,44371
+78303,59779
+78304,61430
+78305,1841,39000,60247,70928
+78306,57402,35685
+78307,3941,50589,73813,5861
+78308,47553,78312,3164
+78309,28568
+78310,78020,56061,10747
+78311,37861,14124
+78312,33615,16635,40818
+78313,73889,47817
+78314,64468
+78315,33682,57915
+78316,10888,67928
+78317,79574,51940
+78318,3641
+78319,12920,73060
+78320,26626,68880,70884,11328,16306
+78321,29884
+78322,60812
+78323,64974,36166
+78324,67866,23861,19803
+78325,22720,13984,9040,38255
+78326,12989,63320,59934
+78327,1575,8549,8599,67779,29248
+78328,71919,9606,20252
+78329,78912,40958
+78330,60913,52609
+78331,67413,8061
+78332,67808,49422,56789
+78333,48649
+78334,34506,52677,7956,43675,52572
+78335,31577,6476
+78336,6942,27876,26562,7115
+78337,26237,19900,21382,28866,41205,45986,76981,56614
+78338,48978,2625,73945
+78339,75898,82121
+78340,58133
+78341,45679,22005
+78342,44423
+78343,69810,56029
+78344,41554
+78345,43393,32226
+78346,29237,51734,44291,61,48103
+78347,12185,61587,4410
+78348,29964,60013
+78349,11751
+78350,21253,42979,14058
+78351,3900
+78352,11397,61452
+78353,73060,81670,36999,82018
+78354,34444,8538,3700
+78355,23094,2746,491,72955
+78356,35406,66036,24948,46847,18507,2624
+78357,15737
+78358,57160,80744,53459,64829
+78359,76342,81074,13090,9359
+78360,59669
+78361,29887,12465,43996
+78362,18615,6885,29924
+78363,42260
+78364,79081,8660,10617,48387
+78365,76117,76122
+78366,3780,67005,18177,9019
+78367,77372,8514,72927
+78368,49391
+78369,76441
+78370,10537,42163
+78371,63185,34119
+78372,1824,7613
+78373,55762
+78374,28496,11793,63391,28355
+78375,15930,60936
+78376,5457
+78377,67208
+78378,922,55896,53030,43017,2144,48771
+78379,19351,494
+78380,15193,17347,39064,64135,44583
+78381,45874,58139,41191
+78382,52802
+78383,79769
+78384,74652,69656,65402,3389
+78385,30380
+78386,18193
+78387,24393,31910
+78388,17414,41328
+78389,30353
+78390,43619
+78391,58152,76463,37783
+78392,13777
+78393,34027,30567
+78394,55483,70934
+78395,30734,36975,81014
+78396,69766
+78397,23763,2994
+78398,19357
+78399,54221,12952,35551,76880,39587
+78400,25768,73628,53240,13367
+78401,48693
+78402,45736,9150,6236
+78403,52176,36244,61222
+78404,76733,42877,20978,8987
+78405,42025
+78406,56474
+78407,67554,50457
+78408,4424,46529,67684,13142
+78409,1932,63226,55254,60017
+78410,63602
+78411,48037,75220
+78412,45055,79952
+78413,17769
+78414,52188,68624,8713,24249,23068,9772
+78415,65771,10624,20379
+78416,59927
+78417,7282
+78418,8744
+78419,79726,61573,48459,29129
+78420,39647,32505,2003
+78421,968
+78422,35473,11678,20672,5981
+78423,14022
+78424,63304,37163
+78425,28631
+78426,28852
+78427,66627,8816,62007
+78428,47916
+78429,71754,28445,51246,45553
+78430,66770,6917
+78431,32080,67869
+78432,67751,24957
+78433,60474,46782,62015
+78434,3754,4951
+78435,59439
+78436,69708
+78437,5644,79422
+78438,46022,71617,68766,21128,15817
+78439,70364,48222
+78440,42090,81915,48868,33538
+78441,18427,61011
+78442,30619
+78443,36713,81945
+78444,21008,2988
+78445,11652
+78446,76401
+78447,70234
+78448,3764,31996,29137,45886
+78449,27475
+78450,75055,8910,13178
+78451,3751
+78452,9734
+78453,42379,5496,54744,35209,56785,11452,7548,79276
+78454,38652,77146,82024,53941
+78455,65378,7382
+78456,61398,11149
+78457,47381,37744,25702
+78458,27019
+78459,51666,35412,73091
+78460,49037,72943
+78461,36330
+78462,61993
+78463,61599,13633
+78464,5245,12814
+78465,34617,74761
+78466,15644,69792
+78467,55953,6118,5046
+78468,39253,41085
+78469,38400
+78470,75401
+78471,66282,31799
+78472,4073
+78473,3506
+78474,14756
+78475,81883,28475
+78476,28553,50048,78406,40603
+78477,61536
+78478,28617,77404
+78479,61182
+78480,62432,67228,24426,67544,1569,29175
+78481,63958,44044
+78482,44827,35719,42396,34074,32887,36459,61633
+78483,22899,33323,46501,68867,80598,49569
+78484,34333
+78485,54686,41451,28401,55843
+78486,1928
+78487,67658
+78488,54500
+78489,66167
+78490,46158,38352,9960
+78491,65703,69130
+78492,24198,41335,1329,70868
+78493,34727,227
+78494,22565,53065
+78495,34951,41752,38304
+78496,59825,10802
+78497,71702,56107
+78498,80177,12011,75316
+78499,4345
+78500,40070
+78501,31275
+78502,49310,70498,80836
+78503,58438
+78504,38945,28033
+78505,45657
+78506,44220,63814,23640
+78507,38304,46365,65623
+78508,26439
+78509,24353
+78510,18969,42241,18289,38828
+78511,1128,31500
+78512,37882,48047,68061,64476
+78513,35982
+78514,9751
+78515,43408
+78516,30823,73090,13986,27513,75737
+78517,44149
+78518,25505,19967,61386
+78519,57917
+78520,35728,70291
+78521,80568
+78522,10916,46778,34064
+78523,34628,32129,68051,50151
+78524,18806,2403
+78525,23512
+78526,26952,36218
+78527,17009
+78528,25296,57102,20589
+78529,49568
+78530,37956
+78531,11070,39538,46015
+78532,843,61724
+78533,14783
+78534,38362,63638,9844,27540
+78535,60473,20384,62250
+78536,78920,50308,21286
+78537,17807
+78538,51885,61262,52769,57802
+78539,44526
+78540,6042,16181
+78541,54278
+78542,7210,81563
+78543,60296
+78544,6081
+78545,79890,11841
+78546,34955,62590
+78547,57850
+78548,48706
+78549,26352,6053,8162
+78550,41585
+78551,42029
+78552,72260
+78553,71468
+78554,33491
+78555,42928,5187,76050,31054
+78556,35347
+78557,43562,57360,47041,10674,38800
+78558,15737
+78559,78049,39299,43386,9210
+78560,54103
+78561,76722
+78562,53454
+78563,21407,24405,70346
+78564,32197,19750
+78565,64017,62181,11772,44953
+78566,891
+78567,49962,71375,60946
+78568,63951
+78569,73850,18958
+78570,17603,48761
+78571,56279,25584,32796
+78572,6966,66061,38414
+78573,48083,47802
+78574,76607,46078
+78575,60293,31531
+78576,68636,55834
+78577,43714,81796
+78578,23187,81699,875
+78579,14214,69927
+78580,25978,54940,8484,36482
+78581,46447
+78582,68862
+78583,28620
+78584,5335,61538,2833
+78585,78678
+78586,44821,62255,46817
+78587,44913,40777,64920
+78588,47445,40923,65533
+78589,8297
+78590,22277,19534,11281,71055
+78591,41584,31424,74555,50380,627
+78592,13773
+78593,21046
+78594,31472,15952,61686,14438
+78595,54602
+78596,52026
+78597,49453,39603,25309,1613,57683,57999,63082
+78598,79670,36110,14857,70564
+78599,53792,4141
+78600,2334,68962
+78601,1757,41797
+78602,48753,62538,10202
+78603,11456,11317,41609,59413
+78604,71119
+78605,21775,75234,57355,63084,1176
+78606,52494
+78607,48553,60484,12514
+78608,35742,77975
+78609,26799,33800,15981,20362,1458
+78610,70648
+78611,30232,11032,18339,2140
+78612,14913,10274
+78613,43500
+78614,33785,3603,6721
+78615,68711,72322
+78616,12766,29287,21348
+78617,80928,22211,67188,59086,68865
+78618,23310,80755,67718
+78619,56018
+78620,19832
+78621,55800,53978
+78622,20197
+78623,5886,9096,53795,53896,79070,42155,60278
+78624,25476,34393
+78625,37205,18835,69636
+78626,56061,8698,24951
+78627,8048,41912
+78628,46645,73121
+78629,7928
+78630,25591,25673
+78631,28411,32624
+78632,73703,38517,22846,42305,14755
+78633,33395
+78634,77308
+78635,69707,39945,60841
+78636,50187,61521
+78637,30971,36765,24312,34928,43518,51494
+78638,70967,39704,48638,17482
+78639,62764,47118,6001,31341
+78640,69419
+78641,81161
+78642,54567,5703,73992,53397,24054
+78643,5255,76506
+78644,74565,9480
+78645,2009,25166
+78646,47125,71086,81979
+78647,80684,50347
+78648,26580,70572,80975,18770
+78649,19647,7048
+78650,59553
+78651,72514,79427,8697,61351
+78652,26472
+78653,58181,54632,15959
+78654,16390,74273,34437
+78655,15144,77554
+78656,52304,3663,56549,59550,67060
+78657,5873
+78658,12068,36840,54692,63619
+78659,18017,34205,34452,45267
+78660,1883
+78661,5090,68472
+78662,968
+78663,61216,49398
+78664,25745,63140
+78665,42148,78075,76606,29405
+78666,63324,78874,21745,40848,1889,41525
+78667,75149,35131,10404,13267,15631
+78668,12438,13516
+78669,70856
+78670,42775,37141,34348,4962
+78671,19003,68076,75335
+78672,35208
+78673,59216
+78674,71799,62120,3643
+78675,73822,37107,47406,6159
+78676,38119,52915,14788,33630,66684
+78677,49899
+78678,21887
+78679,21366,14306,10480
+78680,23063,74364,41477
+78681,78226,62985,10835,18325,44477,22199
+78682,37708,22757,75342,79939,58128,10783
+78683,60193,10897
+78684,31624,34670,52328
+78685,48088,59527,22178,33553,8660,27832,81396,61166
+78686,49266
+78687,45565
+78688,48626,5192,68037,40211
+78689,63024,49618,65565,76289,6281,7582
+78690,40620
+78691,68990
+78692,66750,19983,81254
+78693,73184
+78694,60904,38150,4983
+78695,62094,38796,37030,33627
+78696,30074,76334
+78697,62890,36337,20528
+78698,36625,3248
+78699,53963,74113,9757
+78700,41622,8907,50480,54053,8213
+78701,27852,6583,3996,25631
+78702,24880,14927,31262,37552,70167,16670
+78703,22612,78090,3109
+78704,71398,2683
+78705,5626,45374
+78706,64821,76526
+78707,65664,74927
+78708,6692,37993,34778
+78709,80457
+78710,45001,24219
+78711,24490,47338,31570,12814
+78712,76495
+78713,2367
+78714,62530,59738,69693,11979
+78715,79092,58892
+78716,75012,68693
+78717,62420,78895,42015,2397,72159
+78718,50152,66242
+78719,53953,57327,24194
+78720,3475,15271,78581
+78721,14250
+78722,31290,43734,17587,75895,61110,13547
+78723,30223,19818,22105,6102,80324
+78724,42546,31817
+78725,67595,39898
+78726,74753,47986,8236
+78727,23992,77930,68993,80289
+78728,64042,73788,28501
+78729,7372,81712,74016,44506
+78730,82059,33405,45867
+78731,39651,23704
+78732,48580
+78733,4025,63151
+78734,46398
+78735,62625
+78736,74519,30649
+78737,75090,55528,55617
+78738,47441,52569,10390,26776
+78739,68220,6977
+78740,7115,40281,47690
+78741,40519
+78742,45071
+78743,56023
+78744,41233,309,33249,37525
+78745,24389
+78746,68297
+78747,39962
+78748,68861,69072,71153
+78749,34822,18072,24098,49390
+78750,46662,59765,79719
+78751,34102,64461,67704
+78752,5293,25048,50769
+78753,77720,60909
+78754,58937,81556,38670,2065,67299
+78755,26144,63666
+78756,3815,73899,60385,43828,2570,79316
+78757,27744,73800
+78758,54871,39952,70901,57128
+78759,13780,29367,60108,18593
+78760,11594,61529
+78761,40503
+78762,81882,18573
+78763,49367,72981,28203
+78764,1679,41734,61284
+78765,75921,42943,39706
+78766,48043,28367,27858,17389,44962
+78767,73861,75407,61466
+78768,56420,1277,63292
+78769,78802,26657
+78770,60412,15586,34914,74294
+78771,59569
+78772,60533
+78773,19652
+78774,81746,80628
+78775,20178,30494,55065,57252
+78776,22967
+78777,17022,38484,64122
+78778,683
+78779,67413,17982,66921
+78780,19080,57694
+78781,64005,1047,60347,49171
+78782,52386,21466,30237,20911
+78783,12568,65938,47066,30304
+78784,30640,33052,27704,3245
+78785,42344,37996,74941
+78786,73650
+78787,58682,48683
+78788,20864,18541
+78789,80256,72173,58706
+78790,49362
+78791,48176
+78792,54602
+78793,70300,41925
+78794,76519,5793
+78795,81083
+78796,23870
+78797,29303,76787,73396,24317
+78798,47544,64010
+78799,62687,67259,24121,60304
+78800,46766,20177,55568,75466,73232
+78801,37165,65037,53432
+78802,33480,62247
+78803,54719,74952,22353
+78804,79850,54744,52778
+78805,32578,28071
+78806,54497,56494,66687,3601
+78807,78786,76863
+78808,30784,55281
+78809,14990,35191,11344
+78810,30338,21187,79857
+78811,49931,21437,8742,984,59491
+78812,5347,33943
+78813,59747,29554,17139
+78814,42225
+78815,38035,52897,46383,75243
+78816,10891,55109,80776
+78817,35045
+78818,80879,24053
+78819,74834
+78820,70768,15413
+78821,9495,25599
+78822,27271,42176
+78823,16374,48516
+78824,56907,61007
+78825,6280,53679,9423,16376,1599
+78826,39394
+78827,59347,39305,81692,61816
+78828,4874,35583
+78829,61192
+78830,6159,43530
+78831,58372,79161,46994,72663
+78832,51028,12666,64842
+78833,62028,32271,21918
+78834,60211,72202
+78835,53941
+78836,1571
+78837,61335,15102,70373,21337
+78838,37009
+78839,80937,33902
+78840,31101
+78841,72856,6770,53167
+78842,49550,18811
+78843,249
+78844,1808,13957,65108,2797
+78845,674
+78846,10749
+78847,10091,21740,14333
+78848,78511,12765,6460,62835,81684,21787
+78849,78686
+78850,8427
+78851,79188,3388
+78852,5120,64449
+78853,74952,42646
+78854,4336,39272
+78855,12787,57641
+78856,31039,14310,79917
+78857,11319
+78858,76223
+78859,61386
+78860,65379,39871,68937,55548
+78861,44196,66811,29624
+78862,9266
+78863,34961
+78864,35420
+78865,13686,17950,53597
+78866,47440
+78867,15623,62121
+78868,3782,57790
+78869,54756
+78870,73670,69433
+78871,2797
+78872,15299,67149
+78873,65620
+78874,5105
+78875,49744,39460
+78876,45845,25910
+78877,27674,8006,38090,29989
+78878,16141
+78879,64195,49701
+78880,42979,38929,57313
+78881,45717,74510,51452,18750,75184
+78882,43452,67352
+78883,28651,3200,68713,53695
+78884,79090
+78885,6902
+78886,81201
+78887,3934,66865
+78888,10843,80120,53297,13019,9554
+78889,72805,66869,39883,61654,35429
+78890,23397,1965,31093,35428
+78891,67972,52740,49673
+78892,67937,81189
+78893,55555
+78894,75505,46728,60661
+78895,80308,30846,10655
+78896,32145,80124,70840
+78897,78373
+78898,42715,78438
+78899,72540,51092
+78900,8151
+78901,23409,66980,13547,36102,22062
+78902,67547,40106,35159,24375
+78903,15069,66151,9068,32986,38165
+78904,28491,32966,11381,41776,4587
+78905,56488,2218,16158
+78906,58749,24233
+78907,51700
+78908,46625
+78909,60884
+78910,4458,6636
+78911,71127,37058
+78912,7927
+78913,77964,36637,16310,14088,5835
+78914,22413,79638
+78915,55195,46194
+78916,21283,41600,34263,30570
+78917,44074,43095,31662
+78918,3918
+78919,8787,17439
+78920,36026,29223
+78921,22761
+78922,74875
+78923,64656
+78924,13412
+78925,31535
+78926,46082
+78927,35012
+78928,45814
+78929,68040
+78930,10872,67718
+78931,70113,25106,51045,43514,39545
+78932,34065,28082
+78933,57486
+78934,45157
+78935,44229,19487
+78936,43410,16538,24625
+78937,80425,44115
+78938,17927,61129,47306
+78939,64621,27948
+78940,48916,45030
+78941,14555,56138
+78942,63226,26460
+78943,651,76966,33721
+78944,50282,59219,60499,38484
+78945,45964,77495,17499,24953,15194
+78946,45722
+78947,30200,44119
+78948,35367,51141
+78949,3427,17091
+78950,82173
+78951,2367,40945,79484
+78952,74443
+78953,38003,70905,81596
+78954,79693,37505
+78955,40021,65545
+78956,59463,80933,39112,19264,18975,49479
+78957,74973,53116
+78958,79997,3088,11996,24758
+78959,58947
+78960,13233,51357,77684,50554,18907
+78961,36199,54574
+78962,21597,71764,60170
+78963,18287,46073
+78964,62418,29107,35563,45799,51243,5027
+78965,31478,19154,46733,69592,73681,1144
+78966,36473,34502
+78967,80672,27442,44702,35176
+78968,51408,62028,17712
+78969,52587,76392,34874
+78970,44885,61591
+78971,7913,75287
+78972,42244,79438
+78973,17743
+78974,74229,35155,29257,8990
+78975,6376
+78976,14894
+78977,34322,70938
+78978,29842,33218,3613,48323
+78979,19344,53001,15847,35317,70827,73100,11744
+78980,4008,61059
+78981,44080
+78982,57370
+78983,21663
+78984,48568
+78985,77521,75414,21328
+78986,20834
+78987,16924,20684,4182
+78988,80858
+78989,54306,50248,5077,57508,49991
+78990,65211
+78991,22495,21181,74490,63732
+78992,72916,74894,31537
+78993,9901
+78994,25547,52982
+78995,37585,17092,41960
+78996,41497,69512,42393
+78997,64399,15257,24490,25200,50424
+78998,47866,36204
+78999,47580
+79000,64387,17351,2402
+79001,33955
+79002,9803,12198
+79003,1085,73885,75343
+79004,6245
+79005,5185,48711
+79006,74575
+79007,54620,35152,26655,70393,6861
+79008,23466,79233,68613
+79009,63103,40503,77951
+79010,77423,60990,81069,9904
+79011,46133,65312,4608
+79012,34819
+79013,63430,27100
+79014,32485,31989
+79015,50437
+79016,65088,72852,2943,47837
+79017,27804,50542,37954,16765
+79018,80828,56199
+79019,72059
+79020,46343,26809,56759
+79021,47453,80686,30240
+79022,59337,35180
+79023,55221
+79024,47482
+79025,27826,55263
+79026,21055
+79027,5575,73781
+79028,72032
+79029,40048,31101,17559,44937
+79030,21758,6021,49603
+79031,20189
+79032,10346
+79033,60653
+79034,32801,26044
+79035,16240,63475
+79036,29409
+79037,32455,7197,48763
+79038,22834,21254
+79039,68918
+79040,61735,18213
+79041,70143,80796,75719,72588
+79042,13890
+79043,29662,41645,38650
+79044,81052,27818,78973,5708,12176
+79045,34862,53809,17967
+79046,52867
+79047,2557,37996,63980
+79048,24292
+79049,69823
+79050,70428
+79051,16311
+79052,15367
+79053,68911
+79054,20829,43866,29662,60192
+79055,419
+79056,39802,29120,17408,62839,62072
+79057,61249,55606,56504
+79058,28515
+79059,17603,28412,36256
+79060,42646
+79061,63769,38315
+79062,40691,15452,72944
+79063,41988,37351,75913,36103,11789,36842
+79064,31699,21134
+79065,40138,72324,77455
+79066,69777
+79067,49608
+79068,53908,63621,16384
+79069,36919,63127
+79070,21760,77604
+79071,28438
+79072,62074,27081
+79073,71893,79310
+79074,25239,22044
+79075,3235,43428
+79076,19446,17879,17127
+79077,15715,14521,26747,41841,28529
+79078,27031,67511
+79079,40043,62627
+79080,73363,67416,60083
+79081,19725,42424,70563,46278
+79082,80122,33322,21090
+79083,72175,49377,75117,15977
+79084,18337,71360
+79085,57158,15469,75853
+79086,72688,22131
+79087,23937,71890
+79088,52703,47065
+79089,78803,37163
+79090,12766,891
+79091,67932,18824
+79092,45769
+79093,70620
+79094,42530,42479
+79095,71513,72323,10125
+79096,5541,27942
+79097,42326
+79098,49772
+79099,22521,80858
+79100,81870,80659,54751
+79101,35044,64614
+79102,19391,20817
+79103,7527,46090
+79104,22184,30766,7939
+79105,38764,75892,58459,22854
+79106,13429,43498
+79107,66210,11086
+79108,57214,14823
+79109,7595,29107
+79110,74526,25919,81692
+79111,74488
+79112,16819
+79113,58663
+79114,72522,10850,43365
+79115,8440,47525,75229
+79116,74036,15261
+79117,55810,44602,65294
+79118,59251,62275,20739,75074,74868
+79119,36649
+79120,19360,45316,64923,75228
+79121,67228,69556
+79122,46379,34361
+79123,10774,25800,8637
+79124,52779,75687,14237,76878
+79125,78675,23091,41386,61050
+79126,27806,56676,24702,30647
+79127,3576
+79128,29452,59618
+79129,36785,50355
+79130,36352
+79131,43659,51108
+79132,70940
+79133,10146,25676,1337,39586
+79134,11923,39861,62734,80736,80384
+79135,13316,60733,62269
+79136,33883,65477,2922
+79137,10184,78798
+79138,7189
+79139,2823
+79140,69867
+79141,56696,33337
+79142,79496,58488,38196
+79143,57730,33656
+79144,51478,33686,77603
+79145,48421
+79146,34724,64059
+79147,34065
+79148,72278,43649
+79149,1641,69788,61783,42884
+79150,20577,42109
+79151,62338,77876
+79152,47366,14321,53673,57693,58667
+79153,52259
+79154,25065
+79155,10627,10813
+79156,18478,68713
+79157,34884,79949,11885
+79158,19490
+79159,75567
+79160,3421,43527,20046
+79161,29169,57528
+79162,62428,61497
+79163,76290,76238,70264,69808,81080,44369
+79164,41622,14645,50638
+79165,30872
+79166,47838
+79167,39773
+79168,71806,52859
+79169,7154,39825,9930,61024
+79170,26240,6827,27127
+79171,46030
+79172,69963,37660,16861
+79173,15950,61386,63924
+79174,72959
+79175,69254
+79176,29315,67473,53836
+79177,17254,31720,8083,59947,11634,12468
+79178,37292,72130
+79179,27845,63020,61290,52569
+79180,23458,32505,27318
+79181,42548,33125,57849,32336
+79182,9310
+79183,23861,9129,81622
+79184,62472
+79185,8268
+79186,41829
+79187,74406
+79188,10999
+79189,9819,19743
+79190,81989
+79191,269
+79192,76664,17637
+79193,72328,76762
+79194,77891,60518,27096
+79195,59984,51703
+79196,46820
+79197,27372,27651,31319,9380
+79198,56234
+79199,42335,72857
+79200,34496,21889
+79201,35862
+79202,40796,32897
+79203,27784
+79204,32318,60211
+79205,63458,33329,51680,12071,52126
+79206,50453,26956
+79207,77880
+79208,37634
+79209,11652
+79210,5087,3984,1201,11055,34786
+79211,1680,57533
+79212,54299
+79213,31419,43408,63883
+79214,75533,57473,56898
+79215,2831
+79216,30293
+79217,47003,10421
+79218,63395,64767
+79219,5682,37989
+79220,21279,24385
+79221,446,4981,51058
+79222,17712,60016
+79223,28027,7833,18954,23862,46542
+79224,32899,75560,35056
+79225,61113
+79226,61219,31618
+79227,21718
+79228,3305
+79229,41431,67146,59639
+79230,32695,1443
+79231,19287,27157,62409
+79232,10011,857,46699,30459
+79233,28412,11507
+79234,62062,156,35829,81329,1659
+79235,76878
+79236,5101,53605,38704,78090
+79237,57398,16584,53864,62302
+79238,39410
+79239,35711,52191,23993
+79240,10753,30091
+79241,53215,60952
+79242,20343,75754,13
+79243,13881,81997
+79244,14273,50948
+79245,23063,46836
+79246,64024,17185,37067
+79247,60329,16568
+79248,26176,20785,10119
+79249,21286,67838,23846
+79250,9855,2028
+79251,71429,8730,30303
+79252,36633,70,28440,72921
+79253,55571,47105,71877,76735,34124,9756
+79254,1941,14432,26197,1736,1355
+79255,35151,3398
+79256,45418
+79257,6997,61895,64676
+79258,36429
+79259,64822,67891
+79260,70494
+79261,32246
+79262,60946,78598
+79263,59863,7784
+79264,43613,30258
+79265,33698,52257,23757
+79266,68698,43619
+79267,26375
+79268,40021
+79269,36400,42300,31869,46788,48919,4886
+79270,80383
+79271,81056,665,62618
+79272,2391,70347,70321,9888,495
+79273,21195
+79274,78449,56524,42592,18886
+79275,31192
+79276,33083
+79277,73888,53080
+79278,56149
+79279,5962,12458
+79280,35619,34603
+79281,4399
+79282,22904,66342
+79283,62557
+79284,74061,54057,51590,14638,34619,4173,57559,34962
+79285,68978
+79286,2864,8118,15746
+79287,22039
+79288,9712,59287
+79289,14269,49187,79840,43896
+79290,74028,5649,1172,72317
+79291,39312
+79292,3353
+79293,3550,6702
+79294,22762,47827
+79295,58767,61430
+79296,68976
+79297,58231
+79298,21272,50268
+79299,80613
+79300,15692
+79301,78286,73476,37373,61677,80904
+79302,65971,24631
+79303,7214
+79304,5105,11745,31281,11906
+79305,8876,33859,39527,8318,15870
+79306,53025,15726
+79307,31561,56341
+79308,80441
+79309,32314,65734
+79310,46844
+79311,49150,76510,56074
+79312,9006,28539,62643
+79313,51196
+79314,68881,65657,56217
+79315,69142,48519,13956
+79316,72084
+79317,12896,6692,66812,50985,20643
+79318,50256
+79319,39838,36200
+79320,6897
+79321,75213,63835
+79322,24119,22710
+79323,37971,42985,17814
+79324,40217,75803,42122,25218
+79325,26255
+79326,79055,74578
+79327,48606,14410
+79328,62721
+79329,10413,32741,37884,19320,40541,59605,63385,31292
+79330,78521
+79331,30010
+79332,9234,47135,53176,70226,23919
+79333,39357
+79334,6960,33849,53715,44600
+79335,34232
+79336,13136,43990,20395
+79337,37834
+79338,45321,41331
+79339,39091
+79340,64828,47960
+79341,18918,66340
+79342,40815
+79343,69250
+79344,76658,30126
+79345,10851,20544,4002,61580,39141
+79346,45320
+79347,51319,61024,29778,9455
+79348,58590
+79349,51417,66994,54761
+79350,13336,79843
+79351,65681,1715,37853
+79352,73278,30621,17765
+79353,24886,35310,21105,79739
+79354,19917,71203,51000,59078,694
+79355,81567,75795,35010
+79356,68634,57527
+79357,22621,82078,1907
+79358,50011,34662
+79359,26290,55054
+79360,8929
+79361,45909
+79362,9944,42007
+79363,31031
+79364,13288,45074,62004,60823
+79365,74878
+79366,70969,9782
+79367,8976
+79368,7301,67154,887,59612,81610
+79369,25271,51642
+79370,15988,80574,34722,34823
+79371,26385,42101
+79372,29197,66080
+79373,42506,66248,4925,32070
+79374,36439
+79375,11150,51736,6424
+79376,21792,3453,81997
+79377,19673
+79378,15305,15295
+79379,30341
+79380,9207,39815
+79381,46850,22567
+79382,13970,6347,33344,13023,16572
+79383,76483
+79384,40424
+79385,2683,14046
+79386,27580,15257,57299,64579
+79387,23822,76400,80591
+79388,451,27197,41787
+79389,66953,18756
+79390,79012,42720,50821
+79391,57643,44067,35639,56191
+79392,5840,41720
+79393,75316,68695
+79394,772,4799
+79395,41725,15647,4600
+79396,63992,81663,17555,75728
+79397,44664
+79398,6013
+79399,22691
+79400,7342
+79401,70193,43684
+79402,58616,75410
+79403,75856,30057
+79404,24567,46567
+79405,30601,15600
+79406,11073,29927
+79407,48172
+79408,14843,13761,16501
+79409,60102
+79410,39364,59815
+79411,39859
+79412,46787
+79413,34939,22918,69607
+79414,64623,4782
+79415,15252,28184
+79416,13243,79184
+79417,69823
+79418,68730
+79419,39527,41312,81642,55859,45797
+79420,68684,48065
+79421,21559
+79422,35310
+79423,20400,77101,72716,41864,55857,20194
+79424,31387,26787,53102
+79425,74122,15805
+79426,75079,76915
+79427,49761,2852
+79428,28761,18554
+79429,54842,32160,6300,50704,33997,24816,67827
+79430,49614,37312,42367
+79431,70832,30406
+79432,38011,5625
+79433,69472,4017
+79434,24856,72185
+79435,31267
+79436,27013
+79437,52076
+79438,65425,25576
+79439,1874,71602,80904
+79440,26249
+79441,61347,56634
+79442,31176
+79443,39121
+79444,16813
+79445,47101,69403,8955
+79446,58840,36106,23329
+79447,47912,78444,73273
+79448,54852,23515
+79449,1128
+79450,3964,21000
+79451,73835
+79452,17021
+79453,68856,4521,13379
+79454,67109,32517
+79455,65521,49107,23438
+79456,19857
+79457,45573
+79458,62687
+79459,48923,64115,57100,13956,47211,43420
+79460,24561,58020,50784
+79461,74903,43620,71414,25757
+79462,22376,33309
+79463,15528
+79464,53812,43283
+79465,9131,30682
+79466,58915,66130,45552,46390,31836
+79467,5855,27957
+79468,2486,81444
+79469,21306,25564
+79470,5403,31818
+79471,55931,76641,42076,24084,20660
+79472,73943
+79473,58223
+79474,43642,74242
+79475,41949
+79476,9170,52088
+79477,77538
+79478,26076,73133,662
+79479,9170,3029
+79480,68922
+79481,24761,56226
+79482,22378,61017
+79483,34489,18266
+79484,71539
+79485,75478,52977
+79486,71328,77179
+79487,75738,9618,25771,11941,64813,37428,26663
+79488,35473,71842
+79489,19544,76020
+79490,26865
+79491,41828,3869,22792,26029
+79492,44957
+79493,65526,51015,34610,31895
+79494,31511
+79495,81650,20727,62753
+79496,6245,2130
+79497,22090
+79498,47056,72220,54116
+79499,74107,4495,72909,46530,34800,16638,22808
+79500,12457,9827,50446,16412
+79501,8084
+79502,36390,21881
+79503,72552,17093
+79504,3479
+79505,37142,71650,49671,81219
+79506,62772,53378,14881,61,61054,55179
+79507,21546,73037,73869
+79508,23500,25837,69387,59177,62312
+79509,33740,58312
+79510,22169
+79511,53997,55496,44617,31742
+79512,42944,48172
+79513,18836,74207
+79514,46413,8874,17962,52228
+79515,78403
+79516,81416,42814,38433
+79517,4382,20760
+79518,42016
+79519,9103,47017
+79520,61048,78184,51632
+79521,14114,49230,45079
+79522,66393,45423,55008
+79523,9915,51049,60360,4343
+79524,62068,1393
+79525,65666,39215
+79526,46122,30109
+79527,14102
+79528,30950
+79529,22312,22114
+79530,54240
+79531,36400
+79532,61937,13698,58951,61632
+79533,79480,52767,36466
+79534,22087,62678,51062,54226,13916
+79535,42163,72162,21715,25166
+79536,82143,15410,63401
+79537,66089
+79538,52834,36041,81138,74452
+79539,64456,56416,47943,15250
+79540,19616
+79541,41138,10211,58960
+79542,69028,60748
+79543,17975
+79544,42189,61119
+79545,52692
+79546,678,53883,60356
+79547,57119,18873
+79548,27929
+79549,81726
+79550,17033,60593,11831,81068,32602,38976,4111
+79551,12950,24582,4966
+79552,8491,71081,13961
+79553,58181
+79554,29088
+79555,8903,60173,47138,40195,45776,5577
+79556,60457,2329
+79557,72103
+79558,40334
+79559,76662
+79560,12461,65115,31882,76376
+79561,37080,17101,24997,24398,14185
+79562,45060,34333,49207,26747,29082
+79563,81963
+79564,49219,6223,52700,54184
+79565,20647
+79566,37739,72044,30215,9436
+79567,56982
+79568,49508,6374,68961
+79569,55624,48030,80557,48802
+79570,10270,43805,14738,52978
+79571,78154,30851,64427,77607
+79572,33971,75699
+79573,16177,65633
+79574,60653,1881
+79575,57081,27477,63613,74179
+79576,48265,70314
+79577,35708,58444,15722
+79578,50836,62899
+79579,19858,67217,16529
+79580,1291,48241
+79581,28766
+79582,49869,2646,76468,2246,44454
+79583,40596,29855,33624,55026,33109,60957
+79584,7580,76940,19706,18525
+79585,37384
+79586,16780
+79587,63398,77664,57599
+79588,51960,58409,6923,26277
+79589,55950,22618,33455
+79590,7291,75029,48214,39569
+79591,8599
+79592,37031,27681,28728
+79593,24261
+79594,60093,78558,42808,3879
+79595,13488,57417,33136
+79596,3176,22527
+79597,30227,59450,18679,74179
+79598,11366
+79599,79452
+79600,58711,33559
+79601,52211,23792,30125,23935
+79602,39802
+79603,6245,20247
+79604,43904
+79605,4149,55308,65065,28256
+79606,24239
+79607,43748
+79608,22958,1513
+79609,68410,56067,65147,68545
+79610,53856,55112,21038,46812
+79611,33012,40738
+79612,47830,49491
+79613,49006
+79614,56923,46103,70251
+79615,39079,15091
+79616,27459
+79617,4175
+79618,23764
+79619,80485
+79620,29412
+79621,34075,18827
+79622,28909,27959
+79623,46030
+79624,47039,37157,45483
+79625,23298,57255
+79626,15059
+79627,19871
+79628,52599,11648,27663,34541
+79629,61061
+79630,16352,29344
+79631,23412,10616
+79632,67627,47698,68986
+79633,38528,65052,5356
+79634,26602
+79635,19488
+79636,54285,2078
+79637,22760,22273,79976
+79638,52056
+79639,44336,26714,65955,37238,10481
+79640,34847
+79641,39859
+79642,33085,4799,64266,33520
+79643,10090,20758
+79644,10863,65885,57789
+79645,79581,56482
+79646,28882,9176,14052,17529,72039,31319
+79647,19027
+79648,19040,75383,51649,62925
+79649,15429,5506,39002
+79650,1785,56012,25598
+79651,35339,42633,18401
+79652,30200,54539,44539
+79653,31579
+79654,60752,29758
+79655,63496,38889,35969
+79656,13922,28594,29713,36078
+79657,75354,56514,59884
+79658,36959,56489,38750,77179,37396,42508,21992
+79659,28812,16141,38194
+79660,78269,27421,60856
+79661,63140
+79662,66078,7989
+79663,19830,19648
+79664,67005
+79665,75119,54313,52868,33751
+79666,41648
+79667,3208,20828,81339
+79668,65489
+79669,47613
+79670,16554,51918
+79671,71741,33508
+79672,66641,55140
+79673,40381,61325,15623
+79674,48404,37945
+79675,14843,67173,32759
+79676,60089,42120,21109,4361,45826,3928,75062
+79677,32063,52622,26586
+79678,39542,34043
+79679,33961
+79680,20992,75223
+79681,57779
+79682,67385,49824
+79683,43503,33367,56690
+79684,72389
+79685,22765,77079,1815,42437
+79686,42845,41020,63819
+79687,68649
+79688,1620
+79689,36942
+79690,30406
+79691,12025,7724
+79692,79934
+79693,46807
+79694,44603,7121
+79695,17390
+79696,12798
+79697,39131,74467,11154,17426,69887,51732
+79698,67086
+79699,54104,12554
+79700,18013,66532
+79701,41025,73495,41103,38458,61637,35269
+79702,13468,55859,60118
+79703,79127,19390,73357
+79704,18696,63351,79809,34672
+79705,10565,44049
+79706,13135
+79707,63880
+79708,7975
+79709,79850,15849
+79710,57394,73237,46445
+79711,25771,34781
+79712,69822,25143
+79713,74267,59171
+79714,31771,79326,23476
+79715,51735,57844,34803,73570,63878,51676
+79716,39165,49110,51379,43441,31343
+79717,30653,71644,79027,52198,33986
+79718,56714,66300
+79719,46897
+79720,3550
+79721,73602,68938,29927,21283,61301,55314,37450,59575
+79722,36824,18294
+79723,71035,72803
+79724,64131,75547
+79725,17421,1400
+79726,41289
+79727,537
+79728,4842,79566,71034
+79729,64586,55304,14405,42695
+79730,82092,368
+79731,55558,2844,4675
+79732,68646,50757,34555,54810
+79733,6815,44872
+79734,23699
+79735,80110
+79736,66995,4399,4716,53259,73060
+79737,61052
+79738,68614
+79739,2100,70147
+79740,30810,10214
+79741,6148,46046,70122
+79742,24314,53264
+79743,41108,71154,12474,18109,6748
+79744,28326
+79745,46958
+79746,43271,56988,60166,1914,21447
+79747,26335
+79748,987,41807
+79749,15727
+79750,76552
+79751,5787
+79752,45647,78332,54508,78493,60185,54342,26761,80907
+79753,61260,52786
+79754,1644
+79755,79360,67413,1176
+79756,31717
+79757,3396,63276
+79758,66145,11791
+79759,66267,16927,52936,3932,5264,17528
+79760,79763,12039
+79761,9735,56488
+79762,60528
+79763,15304,44164,67091
+79764,73342,56994,62227,24427
+79765,44656,4576
+79766,34345,56054,51241,81995
+79767,8340
+79768,47241
+79769,73888
+79770,2904,30978
+79771,79939,17201,1536
+79772,5873
+79773,46578
+79774,21135
+79775,34937,32919,37046
+79776,7568,7747,73279
+79777,17444,3000
+79778,67383,50135
+79779,449,25942,64829
+79780,28864,9800
+79781,67585,7625
+79782,3782,39192,33065,7404,6530,64820
+79783,80368,6722,61064,42545
+79784,27460,78859
+79785,56152
+79786,1023,65335,50107,79693,81539
+79787,32269
+79788,25606,73325,56713,46752,33685
+79789,868,11386,34679
+79790,72537,67511,11133
+79791,22040,67720
+79792,49420,11390
+79793,17669,50829,67241
+79794,25073,71699
+79795,47012,17039,39191
+79796,54777,49608
+79797,77254
+79798,9006
+79799,47594
+79800,26667
+79801,25960,51342,55911,62911,39190
+79802,12534,72659
+79803,59580
+79804,45454,47267,29435,57113
+79805,34486,77820,80314,52592
+79806,9335,64916
+79807,20083,58889
+79808,61423,60761
+79809,63513
+79810,52924
+79811,58012,24973
+79812,56810
+79813,58010,16943
+79814,41845,8698,53458
+79815,21589
+79816,8504,75460,44306,67487
+79817,32580
+79818,67983
+79819,18452,72648,6753
+79820,57845,54044,60363
+79821,27256,50318,26239
+79822,80449
+79823,11725
+79824,25611,65382,78333
+79825,4242
+79826,31836
+79827,30312
+79828,52663,29443
+79829,59869,64396,59425
+79830,54607,57811,51747,82004,79869
+79831,56523,10642
+79832,41587
+79833,62696
+79834,45861,25031,57437,30571
+79835,22169
+79836,33894,3159,73352,25095
+79837,56218
+79838,26351,34309,42067
+79839,4037,33852,26786
+79840,16930,56953
+79841,2936,76478,13901,7360,12859,18013
+79842,73212,22426,72222
+79843,81920,29304
+79844,48207,81954,29384,41147
+79845,79509,44961
+79846,28000,19110
+79847,1830,35334,56897,52605,36960,29227,50448
+79848,17828,48498
+79849,6700,4602,75034
+79850,8526
+79851,70034,45894,78957,22884,3994
+79852,4983
+79853,66876,28302,2250,5160
+79854,33529
+79855,25023
+79856,45316,73140
+79857,63200,61908,3605
+79858,33509
+79859,37820,9875,36210,14101
+79860,22451
+79861,69223,14567,30635,48486
+79862,23668
+79863,49931
+79864,1406
+79865,53673,15324
+79866,41379,67682,75239,8960
+79867,49470,33761,30088,79479,74995
+79868,70813,16311
+79869,25032,5623
+79870,11154,38881,1739
+79871,42552
+79872,81348,66177,3801,57845
+79873,27447,38373
+79874,17951
+79875,27662
+79876,53371,72686,24491
+79877,7195,63002
+79878,21659,79268,2685
+79879,76867,16125,73945
+79880,51922
+79881,50839,35714,78448
+79882,64462
+79883,63287
+79884,29453,64064,57099,7873
+79885,36268
+79886,28569
+79887,63015,24616
+79888,19193,64093,74325
+79889,11870,71699,45890,25516,23830,41309
+79890,24445
+79891,33538,70081,27450,34812
+79892,49421,64378
+79893,46742,23128
+79894,56736
+79895,13468,43919
+79896,19545,57736,50081
+79897,69565
+79898,72219,56260
+79899,39613,39062,35807
+79900,75151,46281
+79901,3300
+79902,72142,56292,61372
+79903,62709,31315
+79904,40038
+79905,37012
+79906,15644
+79907,49794,41829
+79908,27224,29368
+79909,21094,67934
+79910,70371,40301
+79911,16150,60044,72148,717
+79912,43750
+79913,45438,15624
+79914,23669,74659,37481
+79915,78594,30654
+79916,74536,11646,76755
+79917,46445
+79918,28542,33966
+79919,16707,36025,18601,34196
+79920,18202,72923,15709
+79921,75598,54619,26208
+79922,9027,60284
+79923,76771,71934,65237
+79924,72242,34529,28712,43955
+79925,80714,74863,37536
+79926,18030,38671,30387,55583,67899,69892,36620,24982
+79927,37322
+79928,74782,6461,29847,49776,14840,27879
+79929,31710,14408
+79930,43698,3810
+79931,38482,67404,13471
+79932,32971,5287,67536,21437,78576
+79933,78138,72952,71637
+79934,24546
+79935,66371,26510
+79936,75291,61087,43311
+79937,59414,4102
+79938,71931,15202,14337
+79939,5188
+79940,80374,65765,76053,68039,48150,39305,10652
+79941,19985,43410
+79942,44414
+79943,42906
+79944,30331
+79945,30283,46850
+79946,21580
+79947,30058,63368,15723,78696,44013
+79948,38342
+79949,55883
+79950,80041,1319,55949,46173,36041
+79951,42939,27640,25423,57739
+79952,20839
+79953,75945,47015
+79954,78058,56267,72240,23427,32742,66789,27219
+79955,12368,42519
+79956,33852,32495
+79957,63240,58164
+79958,3730,45930,59373
+79959,19693,33373
+79960,5849,61251,30495
+79961,8564,77245,71674,76105,37496,69899,66133
+79962,53486
+79963,3696
+79964,74679,42241
+79965,482,42433,1762,77976,41654
+79966,32711,74369,77661,39114
+79967,3698,76305
+79968,18411
+79969,9280
+79970,40121,62402,68821,67337
+79971,44871,34021,52571,42143
+79972,57415
+79973,47865,17436,23972
+79974,58448,20504,23490
+79975,20189
+79976,5736
+79977,44803
+79978,16079,57921,69438,41695,65390
+79979,17142
+79980,26096,77380,4916
+79981,60261,3652
+79982,18915,75143,10387,51655,55672
+79983,74200,65058
+79984,31790
+79985,69501
+79986,9620,49300
+79987,68977,30210
+79988,75829
+79989,17179
+79990,68772,69253,24419
+79991,23178,2823,5704,14753,3535
+79992,26585
+79993,44088,30453,27616,52017
+79994,2179,16585,40790,20611
+79995,1084,61715,73387
+79996,8603,37872
+79997,74601,14363,55606
+79998,12595
+79999,60901,403,26494,56690,19800
+80000,1255
+80001,79962
+80002,58025,70429
+80003,66741,8509
+80004,19476
+80005,16040,6034,63059
+80006,31472,4798
+80007,51116,54426
+80008,5420,45255,17929,31638,32949,60717
+80009,20634,32989,32396,17481
+80010,3105,23635
+80011,3752
+80012,1038,26922,59661,2100,60322
+80013,29099,28798,79988,18472
+80014,1302,13808,3862
+80015,53096,2174,8437,44582,43999
+80016,53573
+80017,71142
+80018,23072
+80019,870
+80020,9376
+80021,65597,26514,65034,29648,75102
+80022,64226,41567,67180,44514,72749,54874,40840
+80023,46555
+80024,17165
+80025,13680,44727,59346
+80026,73795,37104
+80027,3036,5228,47904,58882,54058,9808,47765,70994,44481
+80028,38021
+80029,67798,74325
+80030,40140
+80031,55101,44211
+80032,35609,15147,40638
+80033,42453,10061,63331,46679
+80034,13643
+80035,37107
+80036,40245,73312
+80037,6024
+80038,61453
+80039,59449
+80040,7202,46570,42050
+80041,9358,46669
+80042,72672,24535,76422,43413,50766
+80043,19681,52164
+80044,26688
+80045,12965,66136
+80046,53845,59082,41336,2584
+80047,69344,66107
+80048,39022,42405
+80049,29301,25703,56014
+80050,18838,66913,46367,57313,60,81383
+80051,11372,47681
+80052,66573,7736
+80053,25732,70012
+80054,26637,1225,38518
+80055,57793,62823
+80056,44476,64251,5505
+80057,39591
+80058,39984,42335
+80059,64728,885,9762,68110
+80060,72609,36647,25868
+80061,44930,37041,23820
+80062,80004,20668,25474
+80063,67428
+80064,51887,21729,335
+80065,7857,29723,52747
+80066,55721
+80067,15645,24668,55407
+80068,77775,28601
+80069,73034,16439,18857,18676,70542,73128
+80070,38485,34609,42782,78403
+80071,12925,79134,25839,81248,71890
+80072,16682,69716
+80073,61049
+80074,39111
+80075,11114,81161
+80076,48237,43921,74963,2195,71684
+80077,48902,72012,44889
+80078,56559
+80079,46103,41491,42826
+80080,78038
+80081,20642,26440,35210,51731
+80082,73531,62268,62533
+80083,60864,42889,41925
+80084,75239,16133,75446,72561,59554
+80085,60645,47186,39222,12550
+80086,56503,24041,60680
+80087,9507
+80088,11206,2226,75850,45792
+80089,16000
+80090,12766
+80091,70754
+80092,2184,52761,5199,56305,49122,10821
+80093,70399
+80094,29380,81964,31195
+80095,81450,2310,42920
+80096,15415,77391
+80097,15639
+80098,8481,69187,9776,62968
+80099,18926,23960,3252,71725,21842
+80100,81260,38415,69181,66462
+80101,37006,48680,77770,11673
+80102,75623,61247,73135,49818,78577,77691,75421
+80103,70384,34972,18363,25416
+80104,2170,11115,1061
+80105,56060,70938,23149
+80106,17648,64360,22080
+80107,74126
+80108,45350,44773
+80109,42602,69041
+80110,51065
+80111,22527
+80112,8584
+80113,34992,32033
+80114,78051
+80115,4364
+80116,8613,59235,58806
+80117,47777
+80118,7838,9135,57857
+80119,40133,18472,41698
+80120,77547,78
+80121,49664
+80122,49134
+80123,9861,65467
+80124,3244
+80125,24738
+80126,54452
+80127,59589,6327,47927
+80128,45725,40625
+80129,14894,13910,17250
+80130,30982,26209
+80131,27307,2263
+80132,15762,24227,24643,71229
+80133,78455,39811
+80134,28938,1529,31334
+80135,12453,53268,29486
+80136,15895,4636
+80137,26834,22700,28298
+80138,28196,65369,24622
+80139,28303,32422,62067,41569
+80140,29914,17410
+80141,72851,81564,38082
+80142,21565,38850
+80143,33961
+80144,63931,66797
+80145,78856,13154
+80146,27832
+80147,921,60387
+80148,3897,10302,14586
+80149,24281,60812
+80150,39267
+80151,20437,75309,32347
+80152,58208
+80153,37587,40626
+80154,64069,51487,4836
+80155,68206,11624,36957,74309
+80156,32189
+80157,19592
+80158,12234
+80159,20803
+80160,74265,39441,19918,75172,34693
+80161,24558,43765,47146
+80162,17907,27868
+80163,22933,24651
+80164,21687,23888
+80165,73474
+80166,37605,22438,29566,17115
+80167,72284
+80168,29000,56050,62497,38036
+80169,45906
+80170,45894,28915,74650
+80171,45521
+80172,50755,45420
+80173,14552
+80174,64256
+80175,23601,65062,55104
+80176,28831,1985
+80177,40068,13623,43963
+80178,4381
+80179,76787,12964,46363
+80180,6230,28861
+80181,68413
+80182,7185,60962,41568,75624,18360
+80183,52592
+80184,47601,50382,18626,12306
+80185,21643
+80186,40441
+80187,43400
+80188,29659
+80189,61667
+80190,38064,43589
+80191,39496
+80192,80524,69730,43115
+80193,28466,10088,12964
+80194,1202,18478
+80195,69738
+80196,11196,74650
+80197,51494,40868,4893,17842
+80198,77045,19830,59258
+80199,52740
+80200,34992,73745,68717
+80201,4688,73112,62078,62278
+80202,77091,11808,8738
+80203,14127,48754,38572
+80204,37231
+80205,5594
+80206,40342,10223,16937
+80207,12770
+80208,5645
+80209,50463
+80210,50145
+80211,81811,53216,24389,45215
+80212,64243
+80213,68789
+80214,13216,21061,14140,74875
+80215,37649,25029,62995
+80216,31509
+80217,22451
+80218,56982
+80219,12652,71670
+80220,70896,62804
+80221,70731
+80222,41367,40654,69826
+80223,35745,2132,66620
+80224,30873
+80225,13332,15201
+80226,65727,49440,22311
+80227,68084,5703
+80228,38098,15522
+80229,19795,47273
+80230,35264,46926,35142
+80231,9621
+80232,40090,20103,54941
+80233,18980,35625,56653
+80234,40998,77109
+80235,58181
+80236,63364,69193,63720,24797,71737,24282,39664
+80237,56207,68452,73964,23728
+80238,78116,21444,3888
+80239,12335,75689
+80240,6486,15255,4881
+80241,69368,30165,53528,82134
+80242,35042,40781,67848,12874,82185,43171,60127,68436
+80243,67370
+80244,68188
+80245,21758
+80246,34476
+80247,2160
+80248,3154,63365,16048,28177,75689
+80249,11135
+80250,6701,51317,29779,35515
+80251,73903
+80252,9463
+80253,64842,80647,30280
+80254,6323,44987,12042,80175,6453,41693,67840,43064,50224
+80255,60815
+80256,74662
+80257,79980,39239
+80258,56515,32929,67228,14000,8748,6883
+80259,55875,198
+80260,9642,12083
+80261,65525,28528
+80262,42638,80974,35580,34603,72852
+80263,31251
+80264,52949
+80265,80354,18456,22848
+80266,45927,52997
+80267,69903,28693,29301,75467
+80268,13539,81256,79501,76700
+80269,30865,30682
+80270,35252
+80271,8263,59929
+80272,16034
+80273,15596
+80274,59756,23833
+80275,11610,36906,57301,60511
+80276,65039,81563,75764
+80277,61355,80110,64880
+80278,21542,44415,1980
+80279,31224,46327,45341,42885
+80280,42123,33055
+80281,29425,37450,64399
+80282,39976,71887,23942
+80283,26186,7731,39266,46905
+80284,51355
+80285,16711
+80286,62996,35084,12830
+80287,40958,80607,40165,23330
+80288,49198
+80289,31551
+80290,62427,67306,52381,20456,63629
+80291,25206,81983
+80292,75829
+80293,56215,25591,45379,48200,5187
+80294,76894,68771
+80295,41234
+80296,46864,14275
+80297,34261,2010,2686,47960,71605,63535
+80298,11450,48801
+80299,62394,8473,81056,78403,69762,42217
+80300,35617,74634,33209
+80301,67737
+80302,27136,29953
+80303,75400,67827
+80304,46567
+80305,27011
+80306,66459,70495
+80307,38613,78269,24960
+80308,2999
+80309,59472,64000
+80310,49214,54056
+80311,64257,68756
+80312,46688,44439,29098,49872
+80313,40998,71513
+80314,73691,8642,61210
+80315,48689,37043
+80316,71462
+80317,63039,68269
+80318,60784,42185,40293
+80319,40669,6697
+80320,16685,66286,20979,37487
+80321,24062,2078
+80322,79696,52093,66836
+80323,12324,10167,5408
+80324,44675,69846,3904,354
+80325,7136
+80326,38482,59042,71423
+80327,18712,28950,45388
+80328,8427
+80329,68556,63892,31486,20517
+80330,59020,3532,20406
+80331,23870
+80332,36508,42213,74183
+80333,54571,37284,57549,43965,77137
+80334,73733,53809,51515
+80335,22645
+80336,27831
+80337,21700
+80338,69061,41626,35155
+80339,11657,9367,81666
+80340,23527,6616,40491
+80341,6756
+80342,50231,48856
+80343,8926
+80344,31037,75317
+80345,1212
+80346,260
+80347,29039,52869,75229,66527,15598
+80348,41157,51729
+80349,35723,66034,11643
+80350,61122,44865,25352
+80351,15495,71460,45638,76145
+80352,43767,16393
+80353,5995,24126,5941,3555,32037,38247
+80354,13146,37626
+80355,33700,42064,37111
+80356,73220
+80357,67895,35684,75464
+80358,24287,65061,43185
+80359,12713,42940,9026
+80360,65038
+80361,52839
+80362,15947,1084,6764
+80363,45136,54551,64612
+80364,53634,49449
+80365,33723
+80366,59133,20917,13857
+80367,78964,67869
+80368,46128
+80369,62819,33494
+80370,69430,56400,10861
+80371,35224,81552,68257,77459,6683
+80372,13586
+80373,1404,61518
+80374,80383
+80375,31986
+80376,78268,39070
+80377,4049,76253,18005,46518,53698
+80378,54756
+80379,58802,78609
+80380,72595
+80381,12071,17520
+80382,58827,78914,53381,8436
+80383,47777
+80384,18329,82105,76447
+80385,47104,79721,50516,40801,81132
+80386,49195,60653,26189,50162
+80387,21007
+80388,4837,22165
+80389,683
+80390,77149,67122
+80391,45015,58318
+80392,58632,15825,49112,61471
+80393,27327,24812,10420,28474,1668
+80394,17718,1549
+80395,13348,11130,26482,69873
+80396,78531,25003,34688,79446,31504
+80397,14358,17394
+80398,61215,44318
+80399,68265,56324
+80400,64228,27241,16037
+80401,21124,2823
+80402,36005,20483,30360,36406
+80403,16373
+80404,31789,33415,55446
+80405,61211,78839,71634,57881,18482,56964
+80406,4520,66915,53666,30956
+80407,45712,77303,42613
+80408,48487,10567,30241
+80409,80745,21989,3336,41445
+80410,62318,74090,24335
+80411,64691,39479
+80412,18189,65843,78123,26122,40752,51910,57606
+80413,31072,17061
+80414,13977,33283,66025
+80415,21711,71877
+80416,76592,39155,74409
+80417,15580,20367,44817
+80418,27104
+80419,58817,22400,74700
+80420,52790,76015
+80421,32758,1301,53363
+80422,20396,49288,38782,39787,28689
+80423,6435,58739,36019,61481,64708
+80424,63197,63135,54638,57817
+80425,610
+80426,28928,1967,1988,17653,3195,39515
+80427,11271,15261
+80428,51536
+80429,19815
+80430,17138
+80431,40230,26142
+80432,36833,24475,7287,31833
+80433,63779,63648,9719
+80434,2293,65817,76100
+80435,71679,69848,15842,31708
+80436,54602,54961
+80437,48446,28146,4927,59708,62666
+80438,12516
+80439,45775,11810,80260,78512,35569
+80440,32679
+80441,23465
+80442,49709,60110,30023,78114
+80443,31919,50842,45675
+80444,66140,80937,19729
+80445,10582,3092,71871,24396
+80446,80181
+80447,3704
+80448,28489,63002,8905,30137
+80449,8381,68762
+80450,46787
+80451,33067,30897
+80452,68299,45273
+80453,76247,62713
+80454,1914,12662
+80455,6424
+80456,26257,1021
+80457,2402
+80458,66978,42455
+80459,23671,10565
+80460,10341,33999,31445
+80461,81582,29702,12358,62361,46499
+80462,82173
+80463,1056
+80464,72363
+80465,71837,55882,8978
+80466,14658,66020
+80467,67473
+80468,46233,45574
+80469,47424,51586,3881,5872,3110
+80470,65485,56612
+80471,25776,55806,42033
+80472,39788,59052,51683,17286
+80473,70337,40371,75179,77845
+80474,61019,19156,59268,60344,13934
+80475,70362,73169
+80476,23339
+80477,3690
+80478,39442,59021,8205
+80479,47558,43441,40055,50190,8516,43491,53400,11088
+80480,25431,77037,46282
+80481,7441
+80482,77266
+80483,56706,24287,49973,31444
+80484,34885
+80485,57466
+80486,55799
+80487,12698,49468,55399,20018,74787
+80488,58841
+80489,73368
+80490,49226,52300
+80491,61943,35514
+80492,16362
+80493,37001,47491,72841,65219
+80494,60653
+80495,43977,52578,26621,7074
+80496,21237,3576
+80497,2184
+80498,4169,79863,60387
+80499,30149,7927,18527
+80500,26240
+80501,79720
+80502,39822
+80503,38725
+80504,20888
+80505,51749
+80506,56636
+80507,40778,12092,62275,871,34428
+80508,3599,59398
+80509,47068,20006,24646,40026
+80510,45670,58996
+80511,58877,49106
+80512,30932,22242
+80513,63950,14304,49612
+80514,73541,49871
+80515,70015,36687
+80516,72550
+80517,59244,75347,39365
+80518,69599
+80519,7339,67651,42016,21847,40967,3872
+80520,16270,73874,44053,23716
+80521,64084,14056
+80522,23049,37694
+80523,74689
+80524,35445,56817
+80525,41004,15146,28178,51165,17508
+80526,66796
+80527,43087,51529
+80528,27471,5540
+80529,21317
+80530,32788
+80531,74927,27672,48037,61178,9580,32632,41096
+80532,2914,47003,61514,43785,69065
+80533,23957
+80534,67951
+80535,71903,20603,32977,39469,74924
+80536,50807,23992
+80537,3158,1052,47154,54160,81291
+80538,8728
+80539,30476
+80540,53808,28405,21653,52809
+80541,44251,72063,7214
+80542,73116,63513
+80543,5208,5647,34337
+80544,26906,70995,21655,56359,17188
+80545,17004,27914
+80546,31218
+80547,33966
+80548,13964,63012,3917
+80549,36412,69738
+80550,43612,514
+80551,9975,25775,29498,869
+80552,25001
+80553,20197
+80554,42874
+80555,59348,71379
+80556,27952,2329,24324
+80557,4868
+80558,1374
+80559,39839
+80560,68797
+80561,44124,69543,27456
+80562,50736,23912,9147
+80563,39718,14791
+80564,48906,79119,6081,82059
+80565,32448,7685,79441
+80566,78811,71952,21932
+80567,34845,54024,11952
+80568,29336
+80569,46793
+80570,27645,18003,15667,18974
+80571,13881,67116,66693
+80572,18394,51024,30636
+80573,69736,74553
+80574,30491
+80575,8175,77562,16491,7411
+80576,15820
+80577,75655
+80578,8005,14485,51344,48036,22284,11276,75194
+80579,20597,50048
+80580,16031,21657,41109
+80581,81701,12208,38567
+80582,36306,74036
+80583,52160
+80584,65008,22850,48692
+80585,46655
+80586,69250,20890
+80587,28313,11091,17502,22972,77060,37848
+80588,23580,79558,74724
+80589,78843,81032,25571
+80590,24227,64670
+80591,36479
+80592,21150
+80593,50231,80834
+80594,32158,63043,19169,29754
+80595,32439,49827
+80596,13836,4679,20983
+80597,46936,59900,52458,30144,31668,30953,51807
+80598,65847,61475,75277
+80599,47525
+80600,79850
+80601,59188,51174,19095,11281
+80602,24035,54920,28592
+80603,28380,17767
+80604,21711
+80605,40499,64569,16588,75323
+80606,39879,62732,37667,35754
+80607,23193,16309,66881,18083
+80608,30572,4130
+80609,72460,7154
+80610,13246,59496,60060,20588
+80611,11859,50427
+80612,1012,64237
+80613,29740
+80614,74555,71969
+80615,3994
+80616,54000
+80617,68556
+80618,2557,81974,68765
+80619,38343,60633
+80620,19340
+80621,22311
+80622,38414,33713,47641
+80623,81716,68628,44774,45430
+80624,60544,56325,24370,53975,62186
+80625,79617
+80626,53340,73255,45662
+80627,66681,50788,8640
+80628,81214
+80629,36407,66927
+80630,76604,16412
+80631,67645
+80632,48699,57474,35576,38294,8783
+80633,20554,78925,80162
+80634,37277,1050,51278,21493,46163
+80635,15350
+80636,39996,78657
+80637,46669
+80638,22658,27868
+80639,18927,63571
+80640,56385
+80641,28557
+80642,76189
+80643,68850,9526
+80644,67132,17393
+80645,21163,50030,32000,21735,71881,43276
+80646,29212,21530
+80647,10951,5075
+80648,63109,55229,26234
+80649,36825
+80650,13278
+80651,72092
+80652,27576,47289
+80653,36965,51990,69695,51866
+80654,63895,53787,35081,12369
+80655,6516,73945,36745
+80656,70434,62905
+80657,31463,7042,49509,2684,41916,16662,35740,34973,75274
+80658,40726
+80659,67534
+80660,21704,70841
+80661,80199,71006,4194,55337
+80662,69958,44105,31319
+80663,32315,79666,78299
+80664,30688
+80665,78049,67412,75984
+80666,81767,7303,10498
+80667,79783,20132,64358
+80668,11643
+80669,78131
+80670,19393,49567,25343,29721
+80671,499,67060
+80672,45940
+80673,18202,61341,53876,675
+80674,47235,23787,71133,80467,73607,27045
+80675,47377,73771,30856
+80676,23214
+80677,49287,58602,40612
+80678,44331
+80679,550,30241,6063
+80680,79707,54692
+80681,58810,30388,50446,2348,81149
+80682,49987
+80683,54334
+80684,63513
+80685,34133
+80686,51938,22586,70708,26037
+80687,56523
+80688,16376
+80689,5021,12732,82027,65299,24482,72753
+80690,42103
+80691,60017,32606,45012,21328,68226
+80692,36308,68278,33338,33850
+80693,47123,32982
+80694,31836,5833
+80695,68225,31372,78312,11913,9091,48011,25364
+80696,18518
+80697,31362,78873
+80698,62841,3513,75562,14320
+80699,2130
+80700,5356,69900
+80701,18799,43973,60622
+80702,20647,72020,65270,40552,58514,43688
+80703,42064
+80704,43376,17023
+80705,74362,12584,74456,70890
+80706,43336,69689
+80707,56040
+80708,62071,68634
+80709,65543,54634,58877,66538,58211,32630
+80710,15156,1207,53582,80468
+80711,3090,44466
+80712,68150,62458,30059
+80713,48934,56970
+80714,48374,60437
+80715,39471,42239
+80716,71542
+80717,11794,70912
+80718,23142,80720
+80719,23289
+80720,69165,46968
+80721,56681,29144,46618
+80722,54362,1687
+80723,29301
+80724,54278
+80725,65507,20426
+80726,15376,21645
+80727,27901,81835
+80728,80489
+80729,46883,10273,54342
+80730,78246,22295,6750
+80731,45949,41189
+80732,25569
+80733,14277,15599
+80734,35420
+80735,40344
+80736,75577
+80737,43365,34452,1647,3242,11124
+80738,34321,35348,76309
+80739,7093
+80740,77293,19821
+80741,68904
+80742,73988,25221,1607
+80743,29770,42747,52991
+80744,16774,36752
+80745,24577,16312,17596
+80746,31834,1942
+80747,4782
+80748,24837
+80749,16093,68467
+80750,55439,37542,15356
+80751,11966,8195,6168,28886,30584
+80752,55626,22910
+80753,652
+80754,64017,72384,55893
+80755,62804,66841
+80756,24337
+80757,71705
+80758,71634,27005,65773,53101,75222,25337
+80759,30044
+80760,35460,57271
+80761,73850
+80762,81346,66530
+80763,38696,45574
+80764,21818,64547
+80765,17611,23714,37769
+80766,6323,31962,75368
+80767,41138
+80768,42012,23679
+80769,51759,71931,3935,78121,53433,21755,31178,11952
+80770,60126,23647,9006
+80771,62535,32336,11805,1862
+80772,27218
+80773,5185,41397,19890
+80774,64830
+80775,42083,43121,76593
+80776,6788,42149,421
+80777,74705,79805,7313,71021,39308
+80778,78953,42295,51430,13065,18385,37427
+80779,52395,50000,67237
+80780,43656
+80781,46113,22339,49684
+80782,21347,5044,10616,12329,81741
+80783,974,59900
+80784,2448,74161,75895
+80785,23346
+80786,35556,25657,65977
+80787,69982,36922,49146
+80788,39393,66457,74207,77145,80964,46209
+80789,32407,59404,26277
+80790,26197,64739
+80791,35618
+80792,27759,65300,29764,79422
+80793,48927
+80794,23998,13198,6511
+80795,70078,44987,22940
+80796,78242
+80797,15340,5966
+80798,58015,57466,48136,71672
+80799,48658
+80800,40377,60366,47197
+80801,68297,65309
+80802,33731
+80803,41583,9104
+80804,50368,39170
+80805,36714,52644,41323
+80806,55951,75770,21878,15675
+80807,58102,68663,3780,64371,35032,8320,63266
+80808,40561
+80809,58568
+80810,10511,14342,68557,37879,45587
+80811,29535,18165,51259,15964,46606
+80812,19409
+80813,51949,9263
+80814,78116,14027
+80815,48672,74796,57001,6406
+80816,70843
+80817,25891,7566,52588,44496,24884,1940
+80818,6033,48402
+80819,14306,62551
+80820,65822
+80821,48956
+80822,69900
+80823,39820,32947,77147
+80824,29884
+80825,23079,63786,59466,78476,72848,17232
+80826,101,69243,3604,74896,31820
+80827,48455,9423,56150,4142,74012
+80828,25259,66104
+80829,48862,38652,6695
+80830,2329,3686
+80831,61945,35677,4118
+80832,18691,18182,30770
+80833,21724,62277,27536,15190,27266,19825
+80834,51772
+80835,70106,34470,72189
+80836,34405
+80837,34332,53903,35985
+80838,71246
+80839,720
+80840,46324
+80841,81676,26347,42500
+80842,40825,58174
+80843,52907,43280
+80844,68742,44678
+80845,19226,44684,927
+80846,32703,22811,49027,73482
+80847,45623
+80848,29789
+80849,26962,71597,76703,1826,17380
+80850,66557,1023,10726,1422
+80851,49623,50508
+80852,8809,24741,34254,3753,47893
+80853,62693,44528,29437,20193
+80854,3863,5790
+80855,32718,39196,54054,12883
+80856,73128,68429,64708,36481,62097,3024,35521,40519
+80857,4957,27498,69147
+80858,31976
+80859,40928
+80860,14786,75293,41075,46060,22206
+80861,21880
+80862,19672
+80863,60612,60249,12383
+80864,5907,48745,109
+80865,59898,70172,67387,38681,77051
+80866,25813,16838,16538
+80867,9901
+80868,58943,81756,53370,79398,48082,31831,53044
+80869,79379,17016
+80870,45114,12431
+80871,23676
+80872,34451,22934,16124,2327
+80873,44247,72918,57404
+80874,17916,52499,65528
+80875,728,52826,37639
+80876,57379,26354
+80877,68452
+80878,3043,19220,3615
+80879,76708
+80880,26039
+80881,19947
+80882,78473,36812
+80883,32792,77851,26815,43277
+80884,30911,49054,28453,36640,51607,81724,49315
+80885,12718,33114
+80886,51457,27621,26014
+80887,7196,20280
+80888,28914,30015
+80889,37307,43122,37320
+80890,3130,6993
+80891,68911
+80892,24981,19420
+80893,72629,29254,42691
+80894,77360
+80895,16207,2813
+80896,46184,41648,80588
+80897,26463,26056,41723
+80898,25487
+80899,59017
+80900,54452
+80901,17505,14462
+80902,7423,3519,27636,14162
+80903,9612,40734,46641,55953,12121
+80904,20252
+80905,42933,48304
+80906,5438,36739,6309
+80907,21824,45963
+80908,39994
+80909,1907,13353
+80910,3714
+80911,19691,66360,38662
+80912,34353,77061,30272
+80913,10808
+80914,58181
+80915,74289,17390
+80916,8746
+80917,76023,11836,26762,1938
+80918,304
+80919,2109,67740,39980
+80920,56382
+80921,75459
+80922,10174,62610,26039
+80923,22015,36145
+80924,76039,78419,33885,5379
+80925,52915,80832,16758
+80926,31823
+80927,2932,41250,2980,61978
+80928,37513,39826
+80929,71195,33954,9047
+80930,76110,74781,76604,76011,79277,78725
+80931,17079,52462,23064
+80932,74594,21022
+80933,42812,56386
+80934,3576,58331
+80935,76755
+80936,65209
+80937,11295,42544
+80938,46900
+80939,76464,79790,38428
+80940,53415,40749
+80941,23627,78382
+80942,18532,72266,45818,65133
+80943,54448,10848
+80944,499,42818
+80945,39934,29330,13804,68686
+80946,18707,68603,2686
+80947,27035,70005
+80948,78220,64039,54691
+80949,19260,59236
+80950,16730,75633,16119,49076
+80951,1828,24799,26986
+80952,54022,64911
+80953,25674
+80954,46669,34045,13308
+80955,38503,71982,67982,49535
+80956,19369,33618,27428,76151,47051
+80957,62412
+80958,73141,52782
+80959,60220,76695
+80960,15120
+80961,12861,63249,55060,26157,60979
+80962,51391,39978
+80963,6222,44200
+80964,49503
+80965,36849,49490
+80966,4100,71321,35791,74286
+80967,11568
+80968,22019
+80969,63217,28158,26980,46182,23842,65846,21474
+80970,42024,67753,16178
+80971,30499,25770
+80972,67975
+80973,76531
+80974,5949,1206,62291,27530
+80975,3001
+80976,34613,12270
+80977,20922,12138,61445
+80978,49116,54490
+80979,42639
+80980,11495
+80981,27103
+80982,52147,43086,74971
+80983,33383,42492,65512
+80984,17897,77349
+80985,43801,2856,6556
+80986,3057,33510,12066,70959
+80987,13312,61234
+80988,16109
+80989,60155,73365,76017,54596,32083
+80990,80527,74280,81413
+80991,27922
+80992,58020,72607,19354,55413
+80993,31532,64387
+80994,76588,44468
+80995,15217,7393,61486,12897
+80996,42453
+80997,60606,31482,20567
+80998,38325,33259
+80999,36389
+81000,52831
+81001,45359
+81002,15966
+81003,4231,78285
+81004,28113,13345
+81005,72677
+81006,73324
+81007,891,57696,78585,56587
+81008,17791
+81009,6976,3019,42114,48849
+81010,28438
+81011,53607,47604,9802,57656
+81012,5257
+81013,73555,28468,73395,60259
+81014,76787,56648
+81015,64519,49612,47453
+81016,25298,37454
+81017,60842,11234
+81018,74520,65978,35298
+81019,52013,13396
+81020,11221,23176,40014
+81021,65197
+81022,55493
+81023,61925,34584
+81024,28625,5477,31538,20938,15536,31082
+81025,8010,53276
+81026,73003
+81027,5941,29094
+81028,60081
+81029,73650
+81030,34679,12320,10394
+81031,32919,56523,28116,40662,29027
+81032,74619
+81033,72322,22301,26371,10557,80288
+81034,55762
+81035,74038,28816,132
+81036,14016,63705
+81037,40957,2053
+81038,27783,19918,41586,44278,75090
+81039,3200
+81040,56839
+81041,69033,47833,3209,21908
+81042,33615,65152,71425,78955
+81043,73497,20183,39861
+81044,63297,51214,28807
+81045,7843,38729
+81046,72835,20627,54719
+81047,78048,8912,50645
+81048,64018,70969,31626
+81049,11866,47626
+81050,2834,67371
+81051,279,54093,9603
+81052,79238
+81053,46460,56502,47604
+81054,64492,49563
+81055,44007,48886,45216
+81056,63442,20915
+81057,5348,19857
+81058,23092,44778,30606
+81059,67797,35670
+81060,69450,33012,27854
+81061,72302,4305,75506,5994
+81062,49443,46827,33377
+81063,3696
+81064,25132,18221,20515,45005
+81065,46778
+81066,15117,76099
+81067,54680,31091
+81068,6878,73470,48699
+81069,68888,31755
+81070,30727
+81071,60236,54371,36472
+81072,77817,24616
+81073,11695,75259
+81074,38925
+81075,17728,33842,28282,49755,3456
+81076,48389,1757
+81077,59790,46982,6436,65134,18103
+81078,80204,77051,33012,22015
+81079,54547,76315,70334,44671
+81080,65626,24556,24985,32729,66406,65509
+81081,58959
+81082,31182
+81083,60359
+81084,61000,69477,27229,22238
+81085,34791,57081
+81086,45164,39917
+81087,20189,1740
+81088,38340,71339,35946
+81089,18307
+81090,74458,34753,42336
+81091,52682,67866,26385,77707,47179,54333
+81092,24737
+81093,17664,48152
+81094,17014,41491,49359
+81095,67616,40245
+81096,17147
+81097,40904,41711,63883
+81098,34116,63857,25132,79755
+81099,10849,58341
+81100,5340,13974,5918,65952,8067,52724,61722
+81101,46506
+81102,9899
+81103,49349,8785,64312
+81104,4280,68686
+81105,72577,36775
+81106,40729,53084,9749,62186
+81107,75795,76275,70824,38742,53631,3150
+81108,56241,60222,23595
+81109,9101,68278,28919
+81110,9554,77951
+81111,23106
+81112,80053
+81113,51494,36401
+81114,33971,30549,37233,62444
+81115,64046,28926,70356,59710
+81116,2765,15305,34262,76457,28342
+81117,48849,5621,78457,12942
+81118,58949
+81119,31950,62258,52020
+81120,9889
+81121,36524
+81122,3571,13174,81720
+81123,72047,81678,30426,76153
+81124,38043,29498,21078
+81125,40762,16098
+81126,14263
+81127,51404,78650
+81128,43490,73460
+81129,27369,79139,9125
+81130,69265,59490,14225,79894
+81131,57190
+81132,82121
+81133,79775
+81134,5457,34594
+81135,67921,56339,6449,27964
+81136,36916
+81137,73716
+81138,16523,13257
+81139,38317,26510
+81140,7441,42250,61018
+81141,74965
+81142,69221,12194
+81143,3187,46222,24320,17489
+81144,7585,2977,23729,3739
+81145,38733
+81146,13776
+81147,3309,68316
+81148,1626,48868
+81149,24965
+81150,8108,38941
+81151,26488
+81152,25987
+81153,24151,48625,54550
+81154,40305,72121
+81155,4410,53389
+81156,72978,7567,12705,18552
+81157,54897,36645,68781
+81158,43458
+81159,29550
+81160,33504,45229,21838,49643,73878,72323
+81161,50999,42177
+81162,24874
+81163,43769,59325,51284,14991,15131,19553
+81164,63583,46380
+81165,39210,68568,75712,74658
+81166,51677,15000,34190,66917,65862,76847,5104,57509
+81167,28801,41980
+81168,35795,30484
+81169,31747,14849
+81170,58684,63858,50128,78355,48057
+81171,22936,25037,26990
+81172,68054
+81173,29806,59622
+81174,81346
+81175,2725,45756
+81176,32882,61403
+81177,28029,67264
+81178,65429,42960,7318,46106
+81179,40767
+81180,31961
+81181,58318
+81182,60866
+81183,60789,80879,57635
+81184,55156
+81185,73552,63222,59277
+81186,19831,1782,46947,67993
+81187,18178,43911,78730
+81188,29676,59584,1724,59637
+81189,3638
+81190,33837,6091
+81191,13163,42811,21810,35489
+81192,68862,30176
+81193,64133,47720
+81194,8282,2833
+81195,54124,59511,46396,60350,60667,33277
+81196,22740,58688,51581,60879,22295,36317,44979,12994
+81197,65470,45193,3467,73184,34866
+81198,22029,53981,65087
+81199,46269,18799
+81200,7189
+81201,45143,82,46975
+81202,63923,7730
+81203,72492
+81204,61426
+81205,4332,74756
+81206,75802
+81207,72805,34121
+81208,47761,56036
+81209,45339
+81210,43074,4035,34601
+81211,19499
+81212,27854,69283,65007
+81213,31430
+81214,50819
+81215,18695,275
+81216,20621
+81217,21553,34552
+81218,72616,16678,42303,38004,46798
+81219,49563,32945,35982,12425
+81220,12821,80462
+81221,48091
+81222,14294,38829
+81223,67855
+81224,31144,48283
+81225,23683,68413,78519,66571
+81226,29110,39446
+81227,25718,49605
+81228,30729,25560
+81229,5147,11405
+81230,77195,51877
+81231,53058,9830
+81232,64935,35002
+81233,22794,65279
+81234,7115,69906,50676
+81235,26553,23143
+81236,67473,53888
+81237,9649,15736
+81238,35550
+81239,27871
+81240,17358,40212,4607,56309
+81241,24314,67444
+81242,36592
+81243,35111
+81244,68090,1405
+81245,529,27989
+81246,54950,37552
+81247,22272,55240,14802
+81248,3043,21205
+81249,70562
+81250,59341,38161,80693,75311
+81251,10363
+81252,70046,31147
+81253,42207,56241,47207
+81254,80252,10519,45521
+81255,56585
+81256,61529
+81257,12549,36409,68970
+81258,75318,69964,39422,16506,65593,74884
+81259,64723,52758
+81260,67740
+81261,26134
+81262,71250,22313
+81263,10251,20232,21828,33218,29088
+81264,72932,38063,62528,76401
+81265,16572,57575
+81266,12806,23945,29441
+81267,7143,68373,26592
+81268,66320,33297
+81269,18105,14929
+81270,75351,1064,76020
+81271,4049,4184,20721
+81272,54876,80120,21444,57550,73886,2844
+81273,55856,40511,51406
+81274,37318,33814,76278
+81275,80809
+81276,71026,59486,78186,34601,70677
+81277,78533,70852
+81278,70841
+81279,58717,50482,73131,25402
+81280,26619,56451,76070,41607,44408,13828
+81281,47607,21974
+81282,71802
+81283,22985,66193
+81284,30556
+81285,9114,76662,65910
+81286,31293,45802
+81287,47025
+81288,24212
+81289,61869,2007,68110
+81290,80913
+81291,64770,55468
+81292,79385,28131
+81293,47716,7037
+81294,47775,61238,60151
+81295,58736,74871
+81296,59313,11468,1644,75446,42214
+81297,76988
+81298,63216
+81299,11484,72077,36273
+81300,66397
+81301,44892
+81302,64291,68605,20064
+81303,78706
+81304,76901
+81305,3538,50910,26648,8554,55574
+81306,81543
+81307,71877,55787
+81308,5795
+81309,26528
+81310,72249,26741
+81311,2371,45473,59491
+81312,18804,2281,74448,58247
+81313,22825,56545
+81314,51450
+81315,24838,29927,26606
+81316,40435,72313,607,49981
+81317,35556
+81318,18521
+81319,79725
+81320,36616,30659
+81321,15853,17164
+81322,1147,50870
+81323,43901,6961,34190
+81324,70200,36508
+81325,53666,40289
+81326,59447,19705
+81327,70398
+81328,29852,64522
+81329,50914,55073
+81330,41000
+81331,13078,36419,4520
+81332,9349
+81333,34532,43258
+81334,68733,62419,15195,466,72499
+81335,39533,10154,46422
+81336,11370
+81337,54681,56744,24054
+81338,35001,82011
+81339,20955
+81340,71857,23333,23948
+81341,63073
+81342,10858,63500,81641,80512
+81343,11945,38678
+81344,2707,25035
+81345,76403,2947,5379,39536,36725,75530,78119
+81346,33418,30955
+81347,31450
+81348,23570,4520,3720
+81349,6392,45722,56197,31856
+81350,52498
+81351,62151
+81352,22492,43299,42390,34409,70498
+81353,17294,63072,61294
+81354,73438,9381,33705,7154,33814,4427,81718
+81355,4004,7216
+81356,2639
+81357,67773
+81358,71019,53894
+81359,7726,21816,1174,51469
+81360,55576,50848
+81361,13117,21571,67241
+81362,15016
+81363,10690
+81364,19981
+81365,36821
+81366,44922
+81367,22695
+81368,20614
+81369,51767
+81370,52429,30566,49369,41970
+81371,76197,66436,55665
+81372,70548
+81373,39872
+81374,7516
+81375,48204,36831
+81376,65675,48979,55877
+81377,26856,56896,53853,1808
+81378,18878,81010
+81379,6081,1730
+81380,13522
+81381,8754,49336
+81382,77357
+81383,44268
+81384,31046,7875
+81385,2447,28471
+81386,4968
+81387,1225,69899
+81388,43400,1701,31297,18375
+81389,6626,66224
+81390,26585,28501
+81391,10357,21974
+81392,21375,62975,77540,70502
+81393,66383
+81394,71847,5301
+81395,63324,6081
+81396,14097
+81397,14593,3295,12184,65635,45455,77706,26531
+81398,27502,4862
+81399,62977
+81400,19786
+81401,559,42299,6691,14982
+81402,16439,58967
+81403,33257,63190,20876
+81404,29415
+81405,22101,59021,12801,13173,53608
+81406,77727,17240,46533,3907
+81407,63443,69051
+81408,5539,26009
+81409,46426
+81410,35371
+81411,71296,66763
+81412,27123
+81413,30359
+81414,79598,45602,23070,47042
+81415,77365
+81416,19421,20900,68162,51603,40896,15108
+81417,23056
+81418,32677,58820,67825
+81419,34767
+81420,22523,36972
+81421,54182,2253,6522
+81422,74654,41400,80142
+81423,56322
+81424,38788,34847,66104
+81425,69353,14097
+81426,20212,18805,33663
+81427,26602,23332
+81428,60752,22028,16167
+81429,15716,74414
+81430,53245
+81431,75961,7163,34044
+81432,12407,39570,46365
+81433,29959,36681,70978
+81434,23015,23786
+81435,81585,14100
+81436,58907,55685
+81437,33348,63901,68850,43582
+81438,31642,9900,65348,34102,9436,27479
+81439,11455,49257
+81440,36038
+81441,75513,48757
+81442,47815,19806
+81443,73835
+81444,43376
+81445,72265,51084,15862
+81446,36651
+81447,22939
+81448,10461,19857,76119,62384
+81449,70549,9318,20133
+81450,10011
+81451,3120,66065
+81452,22656,38333
+81453,68118,33860
+81454,11191,8823
+81455,40488,38893,16478
+81456,55886
+81457,30435,5145
+81458,62078
+81459,25881
+81460,21905,38890
+81461,80988,65942
+81462,18119
+81463,46364,18148,71214
+81464,65509,39857,77127,81528,6055,37528
+81465,8191,51019,69406,59928
+81466,60156
+81467,71556,72882,47698
+81468,51815,39587,71166
+81469,59160,1137,36108
+81470,121
+81471,59934,57881
+81472,30324,25948,50557
+81473,78712
+81474,42498,8319,24562
+81475,12360,72064,11245
+81476,23926
+81477,27096,49879,66930
+81478,50919,5984
+81479,35422
+81480,16711
+81481,62905,43644,10889
+81482,22831
+81483,81295,4332,37270,68807
+81484,3888,26639,15557,60531,61448
+81485,77437,6462,75580,45917
+81486,59824
+81487,44289
+81488,75240,72132,73836
+81489,47150
+81490,23320
+81491,34757,20837
+81492,20969,24415
+81493,11115,29315
+81494,23086
+81495,80243,20523,81411
+81496,57966,53880,56445,48728
+81497,49839,59090,37902,5775
+81498,28174,39435
+81499,70120,2823
+81500,21106
+81501,75591
+81502,30249,18155
+81503,14565,59957,56180,52120
+81504,60372
+81505,14422,17059,59646
+81506,3399
+81507,48934
+81508,42662,80532,26874,50170
+81509,22527,66581
+81510,14483,35758,53228
+81511,12590,1982,17279
+81512,58531,12462,67327,3274
+81513,80739
+81514,31537
+81515,43843
+81516,46148,76908,63190,78529,17160
+81517,841,50559
+81518,78277,63899
+81519,74642,36103,8516,75827,59832,8874
+81520,24720
+81521,40753,74099
+81522,32923,19778
+81523,55547
+81524,24259,66541,80938,14236
+81525,80622,50666
+81526,64246
+81527,66421,1516,34824
+81528,80078,7525,46106,8427
+81529,13174,20125
+81530,2867,45529,79074,57987
+81531,19058,67934,32892,13607
+81532,23242,31734,32223,36930
+81533,76268,37638
+81534,22139
+81535,73943
+81536,60734,13311
+81537,21249
+81538,34654,17148
+81539,3714
+81540,64789
+81541,37615,25519,56138,52195
+81542,22897,60771,75758,27320,20673
+81543,23847
+81544,47538,30047,76652,70872,1257
+81545,55190,76361,80569
+81546,52140,20996
+81547,45037,24097,80654,34180
+81548,76894,14183
+81549,59669
+81550,75510,17264,12025
+81551,18303,36809
+81552,2793,69011,824
+81553,79442,61031,78219
+81554,36464
+81555,44014
+81556,73734
+81557,11192
+81558,20914,75467,19190,49761,12394,9521
+81559,66164,5832
+81560,37948
+81561,41951,77813
+81562,16036
+81563,65171,54719
+81564,20235,54839,74662
+81565,40677,18168
+81566,59582,75964,9001,12505,42229
+81567,67344,2176,40295,79927
+81568,39623,65074,5579
+81569,43113
+81570,57084
+81571,64717,15567
+81572,32289,77983,35609,40008
+81573,9614
+81574,60149,65366,80639,5088
+81575,59042
+81576,46713
+81577,79942,78742
+81578,43949
+81579,78953,22967,72224
+81580,29720,35082
+81581,29035,24342,50276,42089,6654
+81582,23447
+81583,24498,26762,16301
+81584,34548
+81585,61516
+81586,6538
+81587,68277,65112
+81588,62225,6545
+81589,77598
+81590,6616
+81591,54491,77489
+81592,52421
+81593,12702,7272
+81594,9427,11298
+81595,36063,34211,13776
+81596,31858
+81597,65639,61342,81301
+81598,25707,43961,57806,18582,4464,13453
+81599,36818,66856,63140,23941,31123
+81600,23639,57100
+81601,63594,81512,76445,73090
+81602,74968
+81603,28167,19398,76489
+81604,42458,27790,31705
+81605,67718
+81606,5746,16724
+81607,23318,71350,3352,28068
+81608,62248,51058
+81609,36345
+81610,1372,23553,74660,75799
+81611,7887,56599
+81612,14535
+81613,44439,71195
+81614,13317,25347,67591,68162
+81615,21295,47443,44814,12194,70850,15907
+81616,20590,16815
+81617,70495
+81618,20231
+81619,16410,117,18462
+81620,37953
+81621,20628,54082
+81622,66224,67618
+81623,78542
+81624,13150,67181,21363,18404,42517
+81625,73958
+81626,75433
+81627,72487,79156
+81628,38805,12819,47838,18366
+81629,79860
+81630,65558,70894
+81631,41373,39574
+81632,20597,16068,36651,10881
+81633,71479,68551
+81634,15083,32490,16236,80984
+81635,27831,43973
+81636,12543,14997
+81637,28958,13341
+81638,28901,29560,9395,42344,40698,64177,63790
+81639,53880,19558
+81640,70917,60409
+81641,3244
+81642,60893,68335
+81643,48662,8568
+81644,18067,3917,35101,32811
+81645,17626
+81646,48761,14446,42730,71581
+81647,68911,53526
+81648,8532
+81649,13702,55525,8625
+81650,37844,44200
+81651,31609,51953
+81652,51962
+81653,14218,50160,47988,32071
+81654,31934,14041,4025,10378
+81655,23259
+81656,25921
+81657,33952,81594
+81658,68821
+81659,37403,47271
+81660,6893
+81661,50282,26547,5096
+81662,79022,22743,59301,23025,63978
+81663,28295,48024
+81664,80383
+81665,58920,65895,71664
+81666,37067
+81667,37949,47457,34710,19742,7134
+81668,41342,64019,72610,66382,36768
+81669,19902,26350
+81670,79998,13063
+81671,49874
+81672,74936
+81673,6698,13842,47191,1987,72878
+81674,57398,21550,17436,50968,71573
+81675,27266,67466,69990,37743,58015,25942
+81676,73958
+81677,47297,21663,8470
+81678,71905,29408
+81679,69663,76495,41085,50112,82151
+81680,59392,30490
+81681,36151,78462,74823
+81682,3599,19426,57476
+81683,60690,46806,52188
+81684,41251,17743,46831,32443
+81685,60666,4471,63371,45094
+81686,59081,18946,70755,6267
+81687,18980,62703,49748
+81688,64126
+81689,32368,53027,80735,55177,14529,69930
+81690,78568,10848,58738
+81691,45923,27488
+81692,26685
+81693,2234,5165
+81694,4359,33069,38537
+81695,29207
+81696,31436
+81697,78254,79681,16665,33456,36586
+81698,80316,69087
+81699,77051,70046,29585
+81700,46813
+81701,22171,32850,47300
+81702,52196,65564
+81703,54539,17603,11628,70177
+81704,53675,35429
+81705,35974
+81706,43765,3652,37750,45811
+81707,13767,11207,49837,62834
+81708,81138
+81709,3172
+81710,72962
+81711,24295,20055,78204,466,22406
+81712,63938,62056,68194,2084
+81713,17727,53533
+81714,55618,71610,31230
+81715,32287,73728
+81716,39195
+81717,70522,20990
+81718,63797
+81719,59391
+81720,61930,38491,48214
+81721,79072,72748,55419
+81722,28,63342
+81723,65176,35431,54351,17040
+81724,15957,81106,77238
+81725,69036,57460
+81726,25001
+81727,45461,39148,13202,81583,64366
+81728,51658
+81729,76708,21876
+81730,510,52892
+81731,804
+81732,21805,75505,12602,28604,7195,66059
+81733,40919,29528
+81734,51778
+81735,6447,47373,9504,10981
+81736,56922
+81737,12135
+81738,54003,44205,1957,44241
+81739,70085
+81740,62787,11090,62218,73121
+81741,65006,26509,71446,33438
+81742,29583,55805,61781
+81743,40327,59114,1047
+81744,44239,65257,41948
+81745,13403
+81746,70429,21616
+81747,35216,35220,44781
+81748,38106
+81749,2786
+81750,19421
+81751,28616,37951,60887,82160,57939
+81752,3709,74062
+81753,8730,75081
+81754,103
+81755,48425,13687,1301
+81756,57109,39126
+81757,47300,24905,65380,44290
+81758,40700,65072,75301
+81759,52199,36807
+81760,74091,70150
+81761,47176,28936
+81762,77711,44346,36758,4528
+81763,57241
+81764,26877
+81765,65207,79486,77035
+81766,65874,76604
+81767,29630,78318
+81768,23493,41316
+81769,65865,74644,77526,78362,52151
+81770,58813
+81771,25096,40825,34940
+81772,32298,68643,29902,29340,38849,38120
+81773,52023,35315,11892,72776
+81774,18349,34430,50718
+81775,2097,22870
+81776,24147,22488
+81777,81440,51536
+81778,7301
+81779,51424,20817
+81780,3928
+81781,66320,69900
+81782,4288,76833
+81783,78951,22209
+81784,45290
+81785,51194
+81786,63255
+81787,62696,1941,17841,59493
+81788,35609,52838,22747
+81789,18310,74490
+81790,2922,17644,63667,5806
+81791,55834,20856,63964,7853,25500
+81792,9250,22115,261,70819
+81793,30493,19338,35192
+81794,41374,18793,12600,74424,51736
+81795,1815
+81796,63442,66784
+81797,63161
+81798,8321
+81799,19004,39633,32250
+81800,63983,36779
+81801,21486,43635,9526
+81802,63156,62361,71736,5935,15716,7018
+81803,19797
+81804,10635,15902,59043
+81805,31862,2252,66992
+81806,42931
+81807,78530,8700,24231,32167,51766
+81808,11430,2506,5251,43356,2582,78516,60375,3875
+81809,12159
+81810,70773,39091,74689
+81811,27338
+81812,75474,24220
+81813,20928,72421,10340,46738,23600,70577
+81814,55930
+81815,7821,79308,2964,7169
+81816,77192,30746
+81817,66241,38937,57230
+81818,52204,31745,48888
+81819,2700,17539,8157,27483
+81820,10040,72256,63538
+81821,67786,8791
+81822,43169,74448,30251
+81823,70046,14940
+81824,64038,18000,56361
+81825,33687,33288,34391,7124,9691
+81826,40453,30434,19781,39105
+81827,35224,66431
+81828,64676
+81829,62655,45956
+81830,58348,55291,47741
+81831,15300,52826,34535
+81832,469,77786,23179
+81833,52456,27672,56175,52634,38374
+81834,80568
+81835,33526
+81836,51756,69539
+81837,32946,80418,33510
+81838,43487,31536
+81839,65093,6181,56658
+81840,11490
+81841,18899
+81842,41575
+81843,41898,1330,14060,18909,57970,31967
+81844,17696
+81845,45887,36580,65902,40928
+81846,50559,52188
+81847,11242,64898,6936
+81848,69495
+81849,28685,76853,20008
+81850,35291,46725,59811
+81851,34597
+81852,14222,5235,52261
+81853,69453,52993,7862,8159,17931,67549
+81854,9652
+81855,16584,71616,12363
+81856,75694,40248
+81857,31645,62865,58114
+81858,10128,19052,56370,74408
+81859,55625,37896,74152
+81860,75352,68714,59684
+81861,25550,16479,69874
+81862,33753,33371,60444,44725
+81863,50267,35536,54155
+81864,9657,54089,8094
+81865,36885,60477,38589,4134
+81866,56382,34189
+81867,69755,34133
+81868,75089,24579,57764
+81869,31776,52537
+81870,28411,54432,27528,23669
+81871,17563
+81872,46776
+81873,35529,64024
+81874,17425
+81875,39640,64582,18080,5505,43254
+81876,63786
+81877,61494,55995,22839,29525
+81878,71574
+81879,41069
+81880,65022
+81881,27732,79388,62295,53645
+81882,20798,10253
+81883,69102,4091,72821,17236
+81884,57482
+81885,76629,42573,56732
+81886,42155,55389,76031
+81887,79789,13365
+81888,51646
+81889,55519,47751
+81890,34063,36198,66820,28718
+81891,29733
+81892,81715,14755,73485,75992
+81893,75583,58534
+81894,2915,10397,45236,63698
+81895,58290,34322
+81896,16112,702
+81897,48480,65238,25578,37978
+81898,60327,9989
+81899,68687,78374,40168
+81900,46005,62425
+81901,53705,37750,689
+81902,37301,81744,44962,7611,54767,78376
+81903,74079,60102,46311,17089,9737,66843
+81904,52528,21295
+81905,52534,22409,67553
+81906,55886
+81907,20647
+81908,60423,22835,49167,20522
+81909,73976,17270,2614
+81910,6717
+81911,78663,7807,39584,12514
+81912,40514
+81913,58240,56655,25722,60772,72085,65020
+81914,33404
+81915,45003
+81916,51815,65730,38433,19801,51592,14914,28271,37131
+81917,43526
+81918,9179,23126,55823,69591,40832
+81919,69867
+81920,468,5498,44866,73859,7185
+81921,42517
+81922,5283,68073,23319,17333
+81923,41864,16227,79275
+81924,42954,29770
+81925,58231
+81926,63048,66678
+81927,9180
+81928,6734,59723,64587,34319
+81929,23813,74987
+81930,15343,56516,39498,39617
+81931,67308,53605,553,77179,39546,51614
+81932,3608,48483,25835,736
+81933,12897
+81934,9318
+81935,56363,66352,71690,72555
+81936,19862
+81937,76504,27411
+81938,72114,53484,27688,39954
+81939,10308,40163,71474,68516
+81940,64214
+81941,23653
+81942,30962
+81943,57834,1686,21954
+81944,33326
+81945,75320,14452
+81946,30555,45758,19246,42294
+81947,14982,40202,33268
+81948,6161,22043
+81949,80770,4224,5344,46265,66996,24192
+81950,29781,35754
+81951,73500,34502
+81952,73899,36466
+81953,34191,80649,5232
+81954,57744,37831
+81955,43509,64640,52873,41903
+81956,66543,6557
+81957,41430,3941,30365
+81958,81000
+81959,38609
+81960,3846,1220
+81961,38507
+81962,7268,13104
+81963,9727
+81964,40196,10695,3385
+81965,32999,30935
+81966,49005,32620
+81967,32873
+81968,43869,81820,68937
+81969,67343,6122,16383,81642,72205
+81970,1691
+81971,62813,31993
+81972,15185,66881,59116,63846
+81973,76829,40113,80413
+81974,56280,44728
+81975,24065
+81976,31755
+81977,28979,66459
+81978,60018
+81979,58947,5812
+81980,49088
+81981,60641,80005,27518,76972
+81982,69923,67810,56988
+81983,19556
+81984,3752
+81985,42438,49105
+81986,41045
+81987,35224
+81988,70204
+81989,58888,12544,14105,13680
+81990,59766
+81991,78527
+81992,55772,69158
+81993,2710,58588
+81994,51058,30787
+81995,79139
+81996,342
+81997,66527,3683,11262
+81998,76456,46882,30175
+81999,20928,56257
+82000,39779,9582
+82001,9528,31411,23116,4590
+82002,69032,12886
+82003,71601,59927,35454,7146,33241
+82004,7018,26154,52591,40520,8413
+82005,8868,28238,77002
+82006,76772,59669
+82007,14785,18099,47289,59492,23795
+82008,8965
+82009,14495
+82010,7625,18912
+82011,33
+82012,60274,32878,64229
+82013,24110,10532,51989,68487,48995,68184
+82014,5097
+82015,31059,29656,77659
+82016,36051
+82017,50814,22443,60983
+82018,14374
+82019,67279,12770,17065,35197,60890
+82020,11272,79391,26851,65508,12250,70169,69343,37253
+82021,52192,69090
+82022,9733,15261
+82023,16024,5248,59224
+82024,3896,74494,21476,44156
+82025,38896,4320,40415
+82026,45951
+82027,78333
+82028,67717,19303,65192,63629
+82029,69418,25196,73182,45291
+82030,37194,76845
+82031,76271,35827,54867,26296
+82032,80256
+82033,47930
+82034,786,5024
+82035,17618
+82036,50625,22904,78428
+82037,30099,59754
+82038,80861,81865,26509
+82039,182
+82040,41074,62488
+82041,74245,56215
+82042,61897,52978,5887,75913,24932
+82043,27462,22687
+82044,7794
+82045,43143
+82046,73969,44341,36576,27418,67403
+82047,79386
+82048,64882,17270,68677
+82049,59827,26074,11289,75206
+82050,62852,51781,5134,41638
+82051,2204,27525,25191
+82052,55135,61230,24137
+82053,14836,21405,50395,45521
+82054,30947
+82055,66776,55847
+82056,43787
+82057,60710,77849,74357
+82058,42370,79969
+82059,36908
+82060,54595,24244,25307
+82061,40723
+82062,44918,46451
+82063,77570
+82064,17075,34449
+82065,70706,68027,58685
+82066,56322,61389
+82067,7390,21196
+82068,64652,36410
+82069,57940,67321
+82070,50738,30801,16193,30806,20153,73635
+82071,64191
+82072,80885,30352
+82073,66386,28174
+82074,39222,80511,58449,80524
+82075,31291
+82076,34625
+82077,26621
+82078,19005,54488
+82079,13018
+82080,27206,29422
+82081,36168
+82082,10861
+82083,75087,17891,65477
+82084,70286,30942,44887,11657
+82085,28155,29894,11741,77744
+82086,18705,78729,72938,16280,58491
+82087,1261,13760,66684
+82088,34194
+82089,68530,61259
+82090,59409,78224,56471,34681
+82091,53460
+82092,46845,14837
+82093,68451
+82094,64008,25468
+82095,15850,53666
+82096,64944
+82097,3472,77574
+82098,56053,17826
+82099,30261,28689,58570,73183
+82100,32898,64292,15249,11189,3564
+82101,46590,1301,69334,2044,58521
+82102,7679,49033,40390,76163,74887,13310
+82103,11733,82066,24906,77468,25484
+82104,71327,60972,81104,60168
+82105,48336
+82106,13371,60637,80444
+82107,55576,53426,63250
+82108,56026,51984,2424,9427,66130,30944,42769,16905
+82109,45953,79183,27888,38077,60886
+82110,74574,52801,52423
+82111,40518
+82112,70557,64956,14449
+82113,57828
+82114,75416,49082,77397
+82115,58223,56257
+82116,57526,17668
+82117,39155,62505,29798,81225,8707
+82118,21807,21331,4762
+82119,62720,67608,17408,64664,46677
+82120,53574,81659,39226
+82121,77807
+82122,58133
+82123,60866,49761,15052
+82124,65874,81460,4550
+82125,5094,52008,81502,80878
+82126,66192,29464
+82127,7898
+82128,54986
+82129,68349,39708,73391,45306,66519,55285
+82130,67982,43294
+82131,77089
+82132,67182
+82133,5006,25101,62253,28814
+82134,66708,77599,15636
+82135,41554,77124
+82136,39442
+82137,27692,66601
+82138,31545,31877
+82139,22275,19771,11942,36933,81410
+82140,37839
+82141,2284,67767,75131,25439
+82142,49859,24880
+82143,63381,56972
+82144,71050
+82145,72749,3662
+82146,3921,674,33024
+82147,48815,26754,64720,5262
+82148,10549,37897
+82149,34789,50494,40503,14736,67676
+82150,9572,17878,6031
+82151,37059
+82152,40805,73551
+82153,21205,75312
+82154,53544
+82155,26525
+82156,37251,41367,36160
+82157,31326
+82158,21199
+82159,59265
+82160,69189,81770,11622
+82161,17925,36239
+82162,70628,22997,36945
+82163,66247,44610
+82164,77823,77384,36207,19758,52638,78014,66419,77807
+82165,62074,10751
+82166,23904
+82167,11906
+82168,5492
+82169,48229,70225
+82170,40689
+82171,14487
+82172,27421,48287
+82173,22743
+82174,72025
+82175,53884
+82176,48307,67200,80809,14052,50665,42660,69282
+82177,31340,17088,65888
+82178,10903,64798,59499,23600,73345,12951
+82179,69403
+82180,45752,6824,27606
+82181,63912,7047
+82182,9712,48456,46738
+82183,4917
+82184,43911,42085,70703,2262,53239,80171
+82185,25449,62193,55553
+82186,75383
+82187,8365
+82188,77217,2638,65348,58431
+82189,80761
+82190,70336,40890,20384,37757
+82191,79772
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms300K.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms300K.txt
new file mode 100644
index 0000000..ffd2c00
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms300K.txt
@@ -0,0 +1,82192 @@
+0,52876,54116,37480,31144,30322,36729,19417
+1,58384,19765,47085,30298
+2,74512,77633,69359,22793
+3,46235
+4,77438,40643,74898,24942,63008
+5,12626,73857,81315
+6,42307,75526,68332,6373,22443,31875
+7,46024,20333
+8,22614,35088,2316,28631,68476,30531
+9,54839,75136,74141,72792,56924,33922
+10,57153,51476
+11,9593,45494,66284,65019,24975,48804,40481,17389,6533,71984
+12,80384
+13,40851,75871
+14,51031,43754,18075,13321,4873
+15,10122
+16,43533,5767,75615,72223,8864,3946,73494,39403,7546,10760
+17,49163,73727,81055,41574,52037,17704,46039,62695
+18,62009
+19,46735,1012,1709,56709,74691
+20,73066,28876,36810,26042,41729,11351,80668,53830
+21,56878,57615,50821,72999,15003,62935,54505
+22,56384
+23,38295,39247
+24,1459
+25,65992,53999,53541
+26,72295,37227,398,37565,28007,17141
+27,62466,16162
+28,4497
+29,43873,13031,26967
+30,2429,79310,46553,45243,78529,75166
+31,43938,50540,68324,25205
+32,5119,35093
+33,16502,31777
+34,42584,57300,54983,24973,1651,12182,32638,68920,29582
+35,64852
+36,77625,59916,64150
+37,11038,43483,34714,75262
+38,28068,31594,10696,7489
+39,81554,38328,47838,39516,27223
+40,20526,19839,69077,23894,45674
+41,57458,26410
+42,4405,23480,33994,37339,71332,71099
+43,69210,24634,6509
+44,42975,42088
+45,51682,2721
+46,8523,40921
+47,20125,76115,45567,23603,28349,48098
+48,75806,11536,60378,45454
+49,44204,71933,74163
+50,4066,12686,5126
+51,30666,44293,26702,47375
+52,73870,79126,78763
+53,52492
+54,10486
+55,72219,81357,4912,34105
+56,75491,62699,39838,68063,81722
+57,29717,52096,56845,61308,2228
+58,43202,66833,69073,55278
+59,9815,2348,54731,50082,53592,53297
+60,37172,71635,63878,8815,50759,32644,16909,52083,24300
+61,81412,15401,67975
+62,40527,11181
+63,16592,5081
+64,43810,4454,2216,41137,21436
+65,29151
+66,71479,16026
+67,77131,42666,36707,17925,68290,13333
+68,75625,26914
+69,51609,7018,51919,5819
+70,79514
+71,45310,34817,12829
+72,54489,65233,27351,74395,12265
+73,54385,6356,45186,81648,62628,10030,34025,39795,11433
+74,18723,28534,14673,76000,19959
+75,4494,23084,35440,66187,2205
+76,39833,55474
+77,52552,1893,71034,46966,52567,19354,33178,72438
+78,54422,11703
+79,59471,57643,13957,74940,48057,19285,28577,75549
+80,50580,3249
+81,39780
+82,65152,67424
+83,53544,39762
+84,78843,13642,57457
+85,46239,46610,77981,15026
+86,64345,32547,43341
+87,30903
+88,76951,48938,79492,74496,77806
+89,22119,52986
+90,56126
+91,31302,26949,15676,2113
+92,77670,67718
+93,71494,66527,81448,58570,69426,30493
+94,28261
+95,79908
+96,1807,75039
+97,66814,63684,68275,46305
+98,19674,77474
+99,30901
+100,28759,36464,722
+101,81021,17035
+102,56307
+103,16771,16067,28055,4792
+104,70929,71103,19852
+105,8543,15072,62498,29729,47884,37167
+106,54610,79454
+107,19104,6709
+108,80959,40982
+109,46036,52850
+110,22805,28021
+111,17618,25124,78731,5887
+112,71708,75165,73301,16943,58875
+113,66257,60700,15613
+114,55862,44856,69174
+115,39429,57373,71249
+116,38353,62628,10405,5201,73674,13642
+117,59110,57639,53903
+118,9993,29921,78704
+119,10762,20756
+120,73723,68409,68848
+121,3141
+122,18273,27671,54416,3053,17946
+123,18580,46547,45517,65401
+124,73079,10588,15029,48652,49777,61669
+125,66359,1033
+126,48748,4808,38215
+127,70805,67466,76217,9810,6616,77418
+128,34138,25452,74889
+129,61956,58055,63417,64509,30688,29004,22847,16516,1860
+130,15613,45345,71042,39426,23465,47979,73217,34613,81379
+131,32910,10669,70485,46954,12205
+132,70428,15684
+133,35958,13555,71296
+134,55369,53764,20010
+135,9969,65250,21161,81453
+136,14266
+137,8843,51029,3655,55041
+138,73191,72840
+139,41246,47706
+140,39323,42525,40828,61807,76211,57786
+141,12941,30399,17128,10532
+142,46771,45010,32180,65265,26562,47295
+143,69117,20909,29777,32585,31494,74665
+144,57270,53841,54781
+145,53190,6314,76025
+146,74771,40218,26048,75190
+147,35202,78358
+148,64100,32062,61792,55707,36351,60337,68935
+149,74557,10210,2072
+150,41982,26180,42060,41426
+151,55452,71114,67375,36018,35955
+152,34983
+153,7311,75177,71075,18918,71489,7028,56043,81160
+154,47195,20930,35316,49826
+155,82076,2611,53102,80688,11326,51538
+156,11979,8478,41232,49521,77223
+157,69478
+158,47129,21825,13010,67169,13684,1732,4225,3666,48694,76271
+159,36831,27132,47648,29791
+160,52985,28998,24286,54763,67462,77349,78571,72032,59716,57762
+161,44729,80519,36749,928,42984,80076,63578,62335,36426,76673,77214,78535
+162,40677,47125,36461,40361
+163,76541,6825,45768,78637,45731,71082,65224
+164,52375
+165,51951,70141
+166,35419,22362,39623,20241,51333,42873
+167,3145,76839,4012,28699,1165,16816,74299
+168,16651,62579
+169,23901,41451,18634,24223,58250
+170,30083
+171,35361,15535,43056,46941
+172,51773
+173,66985,36334,57448,62598,61212,6527
+174,31558,59010,37882,76784,6098
+175,65332,17787,3571,23226,51811,6783,55051
+176,67393,33660,7290,15805
+177,26536,79691,1176,28033
+178,55937
+179,81033
+180,9153,7278
+181,22033,20856
+182,18850,60747,36003
+183,53632,72136
+184,35289,2640,10773,50187,19639,36517
+185,69290
+186,7968,15249,22649,68367
+187,73298
+188,81345,37861,74782,55680,22768,1784
+189,74958,50473,47225,22496,73916
+190,64652,30359,38160
+191,17119,35771,43966
+192,26282,25984,78171,81318,15090,64359
+193,23805,15555,49981
+194,78204,51076,21253,56663
+195,73668
+196,23923
+197,1102,29981
+198,47348
+199,37464,31387,18469,40034,6905,47754,69395,65235
+200,34504,54368,63012,55445
+201,5956,12035,39539,28324
+202,52734,24224,51716,21551,49834,44117
+203,36630,30688,36745,61888
+204,37894,13086,14233,64030,49010
+205,4125,48297,82060,24026,71642
+206,80890,31778,69439,10881
+207,24336,34047,66964,69285,30218
+208,10247,40558,74692
+209,26414
+210,61623,3661
+211,47989,50663,76765
+212,3368,65037
+213,48027,77487,34148,7492,304,23661,26114,2050
+214,40500,53379,74140
+215,16355,75935,3509
+216,77119,14984,52330,30713
+217,47038,50404,51254,30191,3739,47901,80752,27499,8521
+218,13635
+219,81838,35724,9650,43533,35240
+220,50748,51475,35675,23362,24267,65594,18643,27274,32345,17367
+221,48159,67103
+222,71233,17064,27465,18997,14405,71377
+223,75670,33497
+224,79618,73739
+225,23017,4415
+226,38407,65815,50400
+227,80137,47294,37870,18238
+228,50735,5757,18657,25859,51295
+229,14098,71016
+230,36490
+231,25481,57757,36879,104
+232,44392,62953,65161,58166
+233,29938,54773,1769,10250
+234,52317,39981,60157
+235,10407,65442,71399,51150,49112,57321
+236,54864
+237,68446,18826,55091,11832,1973,62438,39780
+238,50489,63662,42236,55358,14796,18422,11091,72994,28072,48131,65927
+239,45030,44003
+240,20525,68482,27348,34931,81973,4497,37653,67827,39398
+241,17966,29032,74938,24612,46221,38633,66748,36251
+242,50460,49072,68060,7936,72969,42016,9658
+243,65030,2911
+244,68473,15064,9871,22213
+245,56817,51096,7228,61988,815
+246,73365,34295,11549,43445,45132
+247,55037
+248,66826,42890,16739
+249,70561,82071,46888,27564,69568
+250,75695,1041,42152,9009,80718,19909
+251,60247,34347,8752,44457,39840,81958
+252,44319,99,74446,3097,50894
+253,78681,2205,44932,31641,13651
+254,10592
+255,28400,71304,2608
+256,46629,70376,60031,48961,28071
+257,62155,11909
+258,47429
+259,75903,30443,45732
+260,73656,21514,4333,57654,65957
+261,77565,74103,41222,60371,12983,616
+262,23430,21482,75936,34640,57759
+263,63869,25334,61173,48990,46649
+264,52955,8127
+265,22573,55559,75626,52207,61249,8611,50722
+266,33615,81534,59974,15856,75184,19167,37290
+267,65668,16438
+268,22293
+269,5983,52232
+270,40232,40253,45406,59644
+271,58001
+272,80876,58154,25500,8413,62855,26045
+273,13006,685
+274,30018,41721,79092,3274
+275,1092,68511
+276,42818,5503,22187,43112
+277,77201,9492,45151,30060,30676,21831
+278,39310,7699,71585,46123,81226
+279,8988,411,7386,70391
+280,25626,23326,25723,81074,44124
+281,59469,60276,77558,54872
+282,20698,74542,57209,34948
+283,453
+284,51051,9847,66817,34916
+285,10955,77483,56043,23408,11483
+286,3944
+287,62139,27446,81781
+288,24480,43726,39444,28727,32743,15892,51438,33560,55423
+289,81976,74050,27294,45862,8945,58523,70960
+290,49252,48484,67731,72101
+291,18279,44448,2640,44463,27734,6665,50409,62753
+292,57608,7080,44737,32833,23215
+293,46762,15860,53485,9511
+294,80384
+295,31838,11695,42985,5352,42476,746,7423
+296,18477,3402,66333
+297,19495,68628
+298,53795
+299,73678,19618,27779,46017,69114
+300,14347
+301,61645,5829
+302,25628,4974,48803,27495,50209,15361,54185,72803
+303,29683
+304,9885,57241
+305,37808,25,70110,53702,29274
+306,74499,67952,31112,78650,15830,6734
+307,41305,44462,67623,3244,54728,62888,60800
+308,69445,71574,3956,12140,55432
+309,41315,15587,1630
+310,36682,2832,74635,69714,18240,61541,67586
+311,62198,32110,73216,11923,34480
+312,5038
+313,26418,73222,2144,73067,5620,77254,53897
+314,48853,3047,35836
+315,74713,79318,61718,12438,50597
+316,15946,4828
+317,77603,54187,57106,60777,45431,29368,4727
+318,66793,57559
+319,60008,49351,57119,25990,52264,69966,17746,38589
+320,15987,61962
+321,16412,30348,22124,20619
+322,13257,18691,11209,18304,45075,4396,40723,71800
+323,36994,47232
+324,14266,60596,43943,22176,42127,26082
+325,68257,73455,30789,64081,16145
+326,42999,80957,25788,33278
+327,17891,68609,12040,79115,78732,33758,2797
+328,36013
+329,32059,25835,70823,60481,77569,18305,68064
+330,32832,31235,51267,21993,38332,68570
+331,36112
+332,46179,9062,17917,12658,77380,11740
+333,67583,55689,74294,34253
+334,31231,10500,50093,12501
+335,62104,67870,35383,17313,44200,13905
+336,29293,80106,66180
+337,79835,81001,57921
+338,52800
+339,36784,5408,63644
+340,44212,38850,1817
+341,24115,73094,10956,16185,24211,76910
+342,5884,35113,24801,80403,71443,30947,5570
+343,51358,25976
+344,71230,62240,2014,53534,33407,31359
+345,38762,34485,39584,46155,43800,74993
+346,71074,38411,25443,63459,8008,43659,48252,37436
+347,15393,4991,41873
+348,65002
+349,62935,14599,61042,535,11824,13132
+350,3468,33169,8084,37592,38380
+351,46160,81144,19138
+352,54381,75071,2948,67626,20927,47989
+353,37651,13864,63254,60883
+354,29870,67477
+355,25329
+356,17516,55320,66020,43214,13931,61525,63485
+357,2355,74434,59974,72610
+358,6801,68115,64968
+359,22862,30575,16731,658
+360,76978,34785,54149
+361,23603
+362,8523
+363,1532,57449
+364,81626,58206,26415
+365,15571,44956
+366,17257,82162,55352
+367,6109,25764,30510,64223,35968,4604
+368,77462,43930
+369,81552,67047,57635,39381,79990,20286
+370,33592,52007,48713,2908,41732
+371,17713,68010,51138,74766
+372,8164,74246,66742
+373,71450,62390,6479,57729,50043
+374,52064,68111
+375,52017,66697,30099,13252,11791
+376,67845
+377,78156,61621,3854,63153
+378,67231
+379,48527,55326,40981
+380,32887,31820,29772
+381,10482,78153,24275,7447,24516,22802,32029,58407,42157
+382,13253,38893
+383,50410,23618
+384,80839,57640
+385,43993,52400,78182
+386,46330,14535,42981,72167,8492,11193
+387,64906,30311
+388,38498,10884,5110,70223,30385,6060,42592
+389,67937,14960,81979,9103,70169,27446
+390,45470,28404,21334,71526
+391,1812,48334,80553,77
+392,28561,7449,30717,28874
+393,46341,61183,21034,14821,50532
+394,50780,35216,37822,5269
+395,66378,2529
+396,17368,15432,36731,44265
+397,59390
+398,23330,31617,6510,34399,12759
+399,69047,10422,13622,39190,41670
+400,21689,43530,26727,20384
+401,1127
+402,22157,69369
+403,40748,73511,27404,27276,66944,804
+404,37144,71808,21735,22550,45443,38251
+405,80959,79713,30064
+406,6012,54544,3674,14561,67871,58535,64594
+407,20582,67127,18250
+408,63302,36622,72615,5832,34496,22618
+409,14508,64748,34143,50302,21569,70949,57290,41787,49159
+410,17757
+411,48411
+412,10497,68210,78811,41837,46388,42196
+413,41402,6954,33172
+414,58370,52049,26872
+415,20642,20633,42112,6021,68965,41406
+416,47653,80305
+417,64645,31354
+418,70449,71620,21014,47502,9515
+419,12768,32339,54599,73140
+420,48829,9968,38928
+421,24560,72308,6224,69350,78220,45914
+422,29103,22310,56840
+423,67781,2144,59637
+424,7268,64531,216,47984,53394,41111,80086,22268
+425,63407,71497,5623
+426,58625,621
+427,66802
+428,71240,39270,6749,66088
+429,71932,57563,52688,65064
+430,64139,81562
+431,76433,16287
+432,16079,7262,74551,32414,69919,9431,22935,58951
+433,10738,35725,67555,1048,31579,4443,66151,36804,23129,3570
+434,73077
+435,38462,33155,75937,36525
+436,7720,26211
+437,44863,35528,13958,55913,23656,55808
+438,58743,46258
+439,25688,37715,81766,56140,33130
+440,72235,64862,81547,77287,57620,59637,68370,61267
+441,2617
+442,2316,30729,8672
+443,65774
+444,37221,15652,41916,21500
+445,18382,38423,49868,15271,39865,73358,78573
+446,10300,9718
+447,3536,61737,3832
+448,62358,79106
+449,8856,50240,16005,39514
+450,18431,34754,18708
+451,43785,80070,14755,36938,74833
+452,35960
+453,34116,66628
+454,71994,35220
+455,22511,70524,14811,23320,54575
+456,65055,5614,51871,55663,59524
+457,78208
+458,30015
+459,56222,26930
+460,37536,72837,73782,52616,77292,52595,33381,22533
+461,71809,52917,36868
+462,50843,63416,33782
+463,28954,73511,80793,79086,7441,63472,14258
+464,50956
+465,57112,8136,75520,53878,71241
+466,47277,19973,9476,1484
+467,797
+468,25888
+469,55946,58297,8477
+470,31587,33282
+471,39261,38601,1524,43691
+472,24115,10909
+473,39789
+474,18553,51253
+475,17876
+476,7329,39870,63949
+477,10911,40630,71167,614
+478,25782,74670,77990,6196,64702,43996,26681,48914,55487
+479,51809
+480,57700,14833,61577,43122
+481,21286,39070
+482,4420,76883,63196,37323
+483,53937
+484,80636
+485,37314,20891
+486,28929,61300,77666,64437
+487,75088,18008,62436,44387,8766
+488,17339
+489,47867,61688,18616,61957,2429
+490,3667
+491,993,37022,1083,45842,36029
+492,13543,637,55047,6565,66335,55753,14991
+493,28636,38416,39964,54054,69331,73716,71744,42984
+494,6123,22685,62969
+495,41462,39784,17562,60723,28935,20291,46825
+496,27787,8523,11834,26489,18079,55563,40093,65501
+497,3374,67748
+498,75813,43108
+499,11718,14901,25131,33816,2760,53601
+500,18453,10625,43533,31613
+501,7693,21541,41912,26928
+502,41801,62423,42994,62843
+503,24035,32489,6617,39145,21796,76886
+504,53622
+505,39223,24762,47425,36274,16418,66911
+506,71838
+507,53434,49212,32583
+508,65802,80417,67168
+509,56712,44173,55181
+510,57631,43433,61505,22251,43160,24737
+511,24935
+512,1616,58892,22774,12410
+513,27989,74919
+514,35637,19744,13328,51178,81582,33164
+515,74538,77722,11634,37614,24812
+516,67571,2277,52003,35509,38371,79818,53932
+517,13135,66712,16791
+518,59875
+519,38215
+520,47485
+521,27266,33807
+522,40394,23500,51136
+523,46980,70054,13345,51264
+524,69634,9621,24074
+525,39275,77826,45362,79492,4761
+526,69238
+527,72727,62996
+528,2311,42860,21445,70298,71432
+529,22034,34747,68563
+530,69232,54521,18767,80373,36155,3784
+531,7887
+532,7225,41046,47095
+533,31801,27033,65192
+534,81303,21670,4796,45678
+535,537,58081,57278,51548,8939,330,51747,14080
+536,59318
+537,48042
+538,81680,36545,65401,32491
+539,16561,3130,27448,28501,78676,36444
+540,11442,50645
+541,72237,21242,15049,49220,66306
+542,37459,37695,32207
+543,72608
+544,34470,64565
+545,75871,65755,39926,81725,60241
+546,36568,26089
+547,69007,43825,81109,67956,31977,55227,73500,25423
+548,31921
+549,26200,7321,22149,42355,38195,8176
+550,12885,44776
+551,70588,49751,72828,5977,67170,52471,16623,69221
+552,16176,36030,28639,59280
+553,16466,64190,66660
+554,59724,48245
+555,9715
+556,5958,24385,28025
+557,45375
+558,51663,42667,10032,9924,10590
+559,42318,73320
+560,22121,65948,62501,36395,62320
+561,17719,70431
+562,54457,22590,1025,58488,18879,12259,8905,63552,20588,33159,70410
+563,14123,63940,52463,69986
+564,32577,71935
+565,27991,40890,45292,43312,10231,5540
+566,9130,38059,18345,49114,55849,76490
+567,71285,36610,4704,57625,43321,5586,48209
+568,63162,22279,65957,41544,20810,28925,44577,37439,53625
+569,50980,66376
+570,8849,13625,38374,17738,43295,54823,42051,436,79773,36365,48246,61836
+571,16703,64492,2789,58779,28565
+572,20390,6288,33498,59649,21552
+573,64806,18163,955,32423,49692
+574,7746,47048,53996,15521,17542,24506
+575,56244,74770
+576,32741,79773,37369
+577,10625,80233,21143
+578,90
+579,37480,66203,51174
+580,36758,44194,26400
+581,32495,66220,38002,48677,35869,34295
+582,21666,77190,27047,10503,1232
+583,61991,12990,29127,49475
+584,34761,16090,20297
+585,61144,42969
+586,24154,7562
+587,41610,66469
+588,46423,64821,54181
+589,44260,44856
+590,8218
+591,67115,63741,7165
+592,62449,79337,45157
+593,35162,10048,56140,52526,78028
+594,35489,57364
+595,17128,8539,29753
+596,56747,61269,18686,30856
+597,15324,63551
+598,35346,21159
+599,64217,39853,54253,61024,17532
+600,72007,37971,5660,59291,66262
+601,42317,8090,28894,41667,56096,78082
+602,70893,70430,82112
+603,22879,40629
+604,38559,52369,61763,74822
+605,62902
+606,46134,59932,76061,59035
+607,64326
+608,55775,28809
+609,56229,74590,39208,40582
+610,6721,35564,66659,77191,64328
+611,68677,22467
+612,72693
+613,45835,34636,34511,34188
+614,34165,28727
+615,81963,67364,1052
+616,10848,79194
+617,42115,42301,75267,50132
+618,79942
+619,4841,16310
+620,22847,24964,46510,65205,34101,38015
+621,47280,74880
+622,24652
+623,40013,26021,30378,28243,47525
+624,48042,13380
+625,50496
+626,15406,6762
+627,79191,52393,21491,22009,10705
+628,99,74932,12435,81601
+629,38339,19181,79073,73605,65770
+630,26522,65723,57346,27564,57279,21694
+631,30671,41401,63901
+632,32437,4224,46542
+633,52864,38260,26473
+634,43190,20667,11644,61889
+635,81174,64773,50265,8765
+636,9610,6334
+637,29874,16760
+638,5968,21863,11848,5625
+639,70543
+640,34761,24026,59286,61293
+641,29500,37457,37801,49304,34735,18765,57557
+642,56239,16052,52866,57244,54848
+643,39405,12810,38686,44775
+644,74144,55962,4919,29408,64646
+645,31922,21896,38386,62937,79639,50659,56976,9413
+646,26706,34615
+647,55775,24355,12603,1077
+648,13990,34427,3412,65136
+649,81334
+650,43361,64535,67252,1273,579
+651,73946,80225,69750,674,77723,12822,63694
+652,63077,57949,55306,35215,63438,20659,32314
+653,52920,15760,69722
+654,19336,67242
+655,8123,7690,1826,61957,32042,55727,38355,70548,18006,41674,74648
+656,40449,11093,70910,56525,1599,44639,45590
+657,28516,38709
+658,19769
+659,57640,44806,257
+660,52595,68536
+661,9924,53470
+662,8569,17216
+663,52481,34751,57465,56669,75585,67852
+664,9073,23626,64626
+665,57653,70129,48129
+666,14767,53567,9451,40897,37771,50991,45764,50483,30869,69426
+667,76964
+668,39056,38391,75341
+669,21414,74772,75792,12021
+670,27870,40582,74832,11063
+671,3689
+672,54760
+673,16991,26244
+674,6525,39503,38118,80233,27243,43793
+675,38332,57865,68424
+676,54918,46766,20203
+677,56638,67362,11240,28732,56478
+678,38844,45776,69137,68409,64772
+679,58228,28751,45911,32285,37385,11192,69553,14253,15969
+680,1724
+681,14119,8040
+682,68441,64895,47377,38667
+683,21961,61996,29541
+684,3024,54185,28543
+685,56873,33500
+686,20721,27587,52779,20019,10869,43170,8550
+687,453,8814,19308
+688,34552,10242,40657
+689,18727,32748
+690,77005
+691,9611,26852,50167,5340
+692,4961,18914,60626,12633,64157
+693,1164,73999,32582,64404,79893
+694,39415,16175
+695,55836
+696,26898,48627,68338,65264,78048,40624,13448,61175
+697,46465,74784
+698,9963,19627,68068,55608
+699,1047,28547
+700,32967,50864,14802,54140,14458
+701,52855,49400,17596,1878,56920,58921,13456,70962
+702,78476,54034
+703,27834,555,79126,50525
+704,23946,58161,9698,41214
+705,1922
+706,59725,23952
+707,66674,72438,31939,55561,8491,33534
+708,31175
+709,10459,27741
+710,47782,19274
+711,52470,40471,31875,67820,72235,11807
+712,30853,32740,33891,49984,10194,17850,68936,29087
+713,54909,81642,22055,81375
+714,47129
+715,4982,31125,29792
+716,19842,1372,59802,50618,75196,14676,8663,62596,77384
+717,37960
+718,14781,24214,80212,79600,50684,1721,68008
+719,58431
+720,57116,32863,10470,29549
+721,20429,16285,8202
+722,1642,71296
+723,73602,76542
+724,14801,30673,17985
+725,1724
+726,6198,75702,61148,17176,36109,8628,53359,33031,73647
+727,31820
+728,78061,25457
+729,52722,23006,12951,6171
+730,66334
+731,14750,69802,12092,68752
+732,75813
+733,350,11641,22573,56406,48273
+734,11592,80281,15776,14526
+735,39013
+736,51553
+737,73155,38799,11563,4828,13450
+738,8355,34400,38789
+739,48421,66940,8081,37385,3942
+740,81993,54318,79082,53160,54534
+741,58680,54105
+742,56898,79151
+743,67076
+744,81990,1746,6915,43470,40128,26514
+745,76212,2903
+746,31316,34090,34684,40044
+747,69466,25945,42193,79675,20233,36878,71024
+748,45343,82100,9081,15445,38237
+749,80492,60732
+750,51951,51148,38526,7657,40666,28842,13426
+751,79328,50899,15162,13747,34047,81932,67263
+752,7622,44168
+753,3025,45586,49213
+754,46027
+755,78394,70434,67504
+756,26651,26854
+757,69410,38412
+758,35093,27131,21619,62935,15585
+759,26827,31205,56824
+760,5057,63973
+761,30359,76522,17884
+762,37400,43111,25187,35876
+763,43419,78795,29131,51412,63184,38176,25594,71476,48200
+764,51829,77655
+765,57330,24754,58855,46446,73253,51884,44758
+766,48234,39165,13052,37331
+767,65127,71205,31880,76999
+768,23882,15050,73940
+769,65723,21260,4415,54154
+770,40224,47137,39911,10157
+771,1391,34897
+772,2737,30139,46875,38515,16528,27138
+773,15206,3641,28317
+774,41729,5066,65688,12835
+775,21894,35901,8243,18329,46498,61995,2472
+776,26135,48174,56975
+777,81851,63319,32839,67926
+778,17348,32444
+779,27343
+780,43258,18564,1550
+781,79152,64218
+782,22378,29942,74980
+783,64894,34253,8063,75554
+784,64730,12623,74389,66872,14458
+785,14444
+786,33101,29583,7411,74042,67037,1064,49567
+787,74264,35606,36651,44798,76353,1016
+788,66446,56345,39883,27623,9705,16101,24227
+789,116,77544,16634,79066,13305,31501,46680,80398,51816,8068
+790,36337,22209,3760,51696
+791,36534,35557
+792,10441,65122,5105,47339,4697,16677,1924,29651
+793,49726,77778,69408,2800,52407
+794,78942
+795,51237,29747,68647,43963,59513,56153,34704,20872
+796,67318,69755,6806,67847,48914,212
+797,77973
+798,31068
+799,41511,37840,74831
+800,80857
+801,73308
+802,8176,13145,41158
+803,71538,28918,39088,71799,69361,65218
+804,10696,57977,32627
+805,24927,52042,63151,27184,12626,45931
+806,72470,54227,12608,15,5738,35976
+807,71118
+808,41918,22455,2182,32672,45826,40067,13768
+809,31415,70781,55485,80001,75497
+810,35086,80492,39212
+811,32923,28847,17280,63053,60502,19291,44596
+812,80584,47611,74564,78569,11875
+813,22321,5588
+814,49142
+815,40814
+816,17318,47583,54520,41794,14776,57312,44169,28487
+817,49047,4926
+818,18637
+819,76617,11418,29017,51924
+820,29202,28076,45632,67243,7851,74333,11369
+821,44815,70299,77513
+822,41900
+823,19480,35929,31354,23531,52978
+824,34220
+825,79360,39856,73925
+826,68707,78226,79281,74216
+827,33444
+828,19566,1513,34630,21957,59790,76894,6726,12099
+829,74063,55407,75828,71233
+830,54964
+831,35901,33073,59802,77506
+832,46537,49120
+833,14092,27403,32987,769,27401,41428
+834,47855,62942,58275
+835,19224,25354,6949
+836,80022,33247,3842,17927,72167
+837,81021
+838,16547,24368,50812,60139,82092,30346
+839,27323,9448,64959,36790
+840,54458,18542,58424,82016
+841,56496
+842,7718,67817,41108
+843,58016
+844,74978,47795
+845,31205
+846,40802,64347,10262,2061,66292
+847,6718,54352,10119,40504
+848,65962,66250
+849,46514
+850,434,70176
+851,3466,8955,22985,37523
+852,20891,35936
+853,24623,77670,43789,81675
+854,41144,56449,48656,38979,42981
+855,54793
+856,28795,72008,50010,32110,24417
+857,17978,52613,73236
+858,21304,2259
+859,46891,11789,61148,55957,11162
+860,81723,22937,38767,69767,102,19780
+861,68507
+862,17614,48318,23969,41462,77538
+863,5057,21635
+864,56176,39774,19366,29323,36435
+865,15607,8177,41883,3375,42013,60898,40927
+866,32667
+867,49047
+868,64486
+869,28764,6298,102,63450,51936
+870,26604,6927,41504,57003
+871,66438,36373,75572,76056,21922,56611
+872,27324,51084,32732,15392,46427,78993,60217
+873,8938,13449,30427,59273,37285,69103,14567,51437,5743,22230
+874,53903,11396,79161,4160,1941,6921
+875,27104,34373,12209,16627
+876,3757,40163,58989
+877,12538,2168,2707,71391
+878,80540,12785,28440,36015,68559
+879,57910,25723
+880,31034
+881,44052,75228,21285,56169,37972,55915
+882,22841,13195,50280,54656,22397,75166
+883,27131
+884,49970
+885,80213
+886,79394,76553,54380,53373
+887,40385,81107,29300,69280,22267,40654,32987,73731
+888,10306,15901,20821,69851,77596,78678
+889,64806,33057,77504,60766
+890,12697,49073,45020,69959
+891,79571,20884,68403,53900,66350,13889,68889,77012
+892,40617,52645,45551,21079,35546
+893,60246,78658,81918,29560
+894,17541
+895,48010,63627
+896,11898,56951,4773
+897,44118,17054,76543,32588
+898,69159,52223,19241,77950
+899,27643,47565,20270
+900,17840,20390,40333
+901,10654
+902,44818,66193,69242,58943,37379
+903,40737
+904,511,31980,14736,70561
+905,76482,77474,18164,6931,39397,11927
+906,69185,5998,38280
+907,17679,74735
+908,33521,50500,40262,20881,68409
+909,42835,5330
+910,26621,38184,23976
+911,12716,18451,11270,52048,54277,62901
+912,79460,61456,74841,27471,29567,49791,41125,14748
+913,25851,69488,77095,21392,67699
+914,60936
+915,23852,4147,73543,39324
+916,527
+917,63683,38284
+918,77306
+919,10932,23160,53391,13381,16626,17188
+920,49261,34678,8110,17959
+921,67763,28822,36791,48383,48721,15113,15492,36207
+922,32454,76786
+923,67873,466,45990,29367,49132,11596
+924,77351,58396,72903,66813
+925,58639,80405,12623
+926,20326
+927,72913,61368
+928,38097
+929,26422
+930,52538,36993,60928
+931,9044,12992
+932,60422,24684,55840,52841
+933,56896,8481,47544,62426,38527,56229,68952,48002,70714,49429,52205,62403,25092
+934,26499,13165,82185,6350,10630,62480,53474,54521
+935,46156,12525,52258,16295,17395
+936,47816,72364,3110,81051,20403
+937,10037,41792,48516,64705,34821,42697,55207
+938,23863,57419,19606,53605,29851,68736,69203
+939,39775,5552,3515,24599,79471,56616
+940,58801,52210,19769,66562,79589
+941,22138,27087,26342
+942,42026,63166,70819,80843,13737,51935,33951,73143,49390,24574,26374
+943,63183,53830,40772
+944,16010
+945,47697,78347,23470
+946,10723,35690
+947,51245,61726
+948,71627,42228
+949,45362,35048,75029,76111,38219
+950,71418
+951,50154,18584,27925
+952,41250,61946,79200,58388,20556,55276
+953,10464,26953,67315,71860
+954,37847,73956,17619
+955,57979
+956,13984,61200,81082,73134
+957,5406,38537,43552
+958,23999,71212,63753,80129,36755,81094,40106
+959,32127,72371,21697,15282,63477,68268,56281
+960,39649,65022
+961,50610
+962,2394,36903,33052,15481
+963,36236,42866
+964,30121
+965,53393,47024,40468,30318,58863,53079,38921
+966,63361,10073,56622,1743
+967,48561,36432,75156,74041,5585,38132,44781,2830,75683
+968,13018,41906,70313
+969,16451,63384,4227
+970,72081,10971,73121
+971,67783,68573,13329,73222,62526
+972,43875,31504
+973,80670
+974,13008
+975,10510,38878,61303,39136,49655
+976,5612,12663,25171,11950,14163
+977,47033,12114
+978,30444,18332
+979,40851,27615,51326
+980,36305,51966,68794,23933,21117
+981,30947,30590,80471,13930,4220
+982,50043,19479
+983,44418,45932,32016,10520
+984,15216,81284
+985,70130,4105,23100,57282,18958,14005
+986,49491,47219,47141
+987,33104,9568,77049,55830,667,67726
+988,41430,8409
+989,5883,58503,61087
+990,32021
+991,35339,34750,5504,18509,68420
+992,48446
+993,47267
+994,30254,8421,2086
+995,19719,52458,18857,30610,49632,76347,51651
+996,42542,40974
+997,78343,54025
+998,36377,68644,6006,29280
+999,63508,41118,6139
+1000,13218,67402
+1001,50707,71490,10885
+1002,58444,59853,80113
+1003,29545
+1004,60447
+1005,70397
+1006,15255,21567,32859,42846,59698
+1007,51267,25066
+1008,74632,57472,13276
+1009,56624,71546,49781,1285,5327
+1010,2324,52556,24208,58459,42402
+1011,73835,20364
+1012,55298,5984,34683,55986,66256,51350,1762
+1013,65501,75259,23009,22468,4765,11427
+1014,74072
+1015,14111
+1016,9510,34481,14433
+1017,53305,74544,29606
+1018,58979,38997,2586,81489,10138,68216
+1019,3523,45406,59095
+1020,16451,12753,74474,18193,49108,23687
+1021,29052,74463,43377,43425,1295
+1022,54827,23863
+1023,42587,9668
+1024,18478,59318,7970,81598
+1025,81385,61881,50102,62231
+1026,49663,16903,73859,74649
+1027,39140,29701,23877,12529
+1028,29162,59668,44124
+1029,50613,21286,57313
+1030,3312
+1031,56525,19308,51894
+1032,52651,15744,80115,22815
+1033,37081,10498,14363,24310,22719,20591
+1034,56525
+1035,25096,62472,38357,28351,36552,54912,46148
+1036,20881,18302,23912
+1037,44095
+1038,7304,64305,23048,1253,75340,20208
+1039,26015,53683,4013
+1040,76968
+1041,36002
+1042,14001,18958,54915,35978
+1043,26717,57660,29331
+1044,25300,71608
+1045,16134,47149,7152
+1046,64867,16679,44915,38962
+1047,64241,66826
+1048,33023,10119,52196,74777
+1049,40498,74783
+1050,44510,55470,3401,75894
+1051,25603,1902,47137,56336
+1052,81717,6891,5943,71230,197
+1053,13412
+1054,63191,62657,30021,60782,51460
+1055,77950,36848,44530,9993
+1056,52719,12830,909,26402,11749
+1057,75002,55500,57040,32859,48887,5907,45672
+1058,20189
+1059,50043,74476,28292,3571,32511
+1060,62504,41199
+1061,56754,57735,19775,16045,9880
+1062,56205,77459,42109,8192,1673
+1063,11668,14232,12861
+1064,19625,66919,8144,17605
+1065,4415,81242,2032,18029
+1066,4146,70477,33528,39906,25692
+1067,8949
+1068,27756,54813,75958
+1069,71654,65221,69607,67002,32791,10939,79728
+1070,19138,21897
+1071,37664,14671,61172,9801
+1072,31200,29849,79465,62756,50469,78176
+1073,75973,53385,22532
+1074,33579,26149,79816
+1075,79044,17969,49389,58026,46019,48055,30318
+1076,26890,65320,27141,50822,1405,17175,40218
+1077,14611,29018,21599,3355,19753
+1078,67699,73888
+1079,19776,72467
+1080,27200,67700,26280,58206,29642
+1081,65202,32072,80457
+1082,25141
+1083,60556
+1084,22176,46509
+1085,12158,71153,74675,71612,66688,70416,12828
+1086,44626,46542
+1087,5196
+1088,72858,5636,80934,24506,22262
+1089,78620,12674,6855
+1090,24095,34613,58569,61655
+1091,58062
+1092,27007
+1093,12251,76321,22714,60690
+1094,17882,71740,39795,78462,40615
+1095,45193,20817,72394
+1096,4522,6156,28210,34817,75846
+1097,40160,11889,51268
+1098,29586
+1099,32554,69807,44197
+1100,45199,7139,4633
+1101,50471,47479,44205,13064,6947,16407,64569
+1102,40303
+1103,4030,2992
+1104,48304,8766,81811,12574
+1105,43273,76460,23230,29959,32417
+1106,23698,4819,75956,48171
+1107,56893,40682,33054,57206,76806
+1108,67689,9740,77141
+1109,66537,28393,15714,49753,60520,8168
+1110,16250,72134,48979
+1111,46695,19899,17737,76528,70366,50000
+1112,54034
+1113,76384
+1114,30703
+1115,44580,70981
+1116,36314,29346,65158
+1117,2767,12222
+1118,29817,71495,75936,70021,48059,35685,32586,43529
+1119,81818
+1120,75664,14032,71454,66277,43694,447,72036
+1121,41805
+1122,54204
+1123,2822,50774,44623
+1124,40533
+1125,69293,54843,71122,57387
+1126,67353,10248,45165
+1127,33997
+1128,55651,43951
+1129,9739,4811,20402,13165
+1130,26184,80943
+1131,1444,14904,62201
+1132,28713,59571,40172,36149
+1133,34704,50877,7946,48882
+1134,16758,50156,1044,5532,6339
+1135,46694,13991,65962,34385,44324,1926
+1136,77953,39571,53488,73882,10441,64012,54741
+1137,63244,69315,25207,11507
+1138,80387,38211
+1139,5615,7270
+1140,47989
+1141,32729,21803
+1142,42386,59637,68409
+1143,56616
+1144,70974
+1145,46866,78032
+1146,70732
+1147,21152
+1148,63310,49886
+1149,46300,53115,12541,69044,24350,4232
+1150,72718
+1151,31791,57654
+1152,70782
+1153,12751
+1154,1861
+1155,78750,73213,65224,42758
+1156,17446,35615,30780,1426
+1157,55391,15731,34568,41598,3081
+1158,80379,24087,33932
+1159,17964,11589,57330,27865,13255
+1160,43165,65595,71205,44219,31916
+1161,15458,70253,21754,33303,27094,75832
+1162,20098,41365,29851,80405,81485,64850,64171
+1163,40428,28005
+1164,55236,36825,74457
+1165,17011,6628,5041,38759,18751,1292
+1166,34865,33187,49308,5816,68097,17011,72743
+1167,22776,64395,31832,57764
+1168,54662,71652,28054,8126,21237
+1169,78182,21826,7342,59693,42050
+1170,59957,34681
+1171,55937,80049
+1172,66798,44072,72239
+1173,70276
+1174,76261,81392,58042,65493,69452
+1175,34299,81092
+1176,63120,27915
+1177,61225,77767,75392,36605,52489,76033,53075,16701,35762,62064
+1178,23006,46227
+1179,42965
+1180,42392,1404,4337,32227,67045,39494
+1181,75242,12215,65634,33761,46729
+1182,33436,2834
+1183,53934,14447,82117,36473,67477,47171,16042,20587
+1184,34903,28771,24754,31891
+1185,6213,80620,32868,12411,53002,65934,44493,72216,7408,38504,15744,80150,28303,45194
+1186,20433,21324,64733
+1187,18592,44375,46822
+1188,23776
+1189,66677,7627
+1190,4660,59929,61072,35785,79172
+1191,30563,51430
+1192,21338,66245,65735,78450
+1193,61839
+1194,48637,55380,73433
+1195,29066,71530,72080,21209,17220
+1196,51067,6082,40490,11853,25936,18180
+1197,8779,54964,37152,59878,11948,50213,38727
+1198,6654
+1199,29330,63164,76520
+1200,25681
+1201,46577,81997,944,62040,2903
+1202,46823,61441,81365,15535
+1203,25343,49630,45618,61546,65524,21836,36148,71566
+1204,65329,73557,44878,77979,67837
+1205,43525,58560,36982
+1206,74580
+1207,629,52626,14172,31583
+1208,8129
+1209,80664,41122
+1210,49042,58250,60625,43188,73845
+1211,70614
+1212,62071,3406,35741
+1213,36760,39366,56641,14975,43238
+1214,81878,50686,39639,69376,26323,8025
+1215,49042,73304,34730,43765,35343
+1216,59103,6547,53511,554,25107
+1217,16860,3635,8833
+1218,19769
+1219,31316,76924,59758,55963,42012,72075,1821,27075
+1220,22461,67674,3446,48727,58830
+1221,8428,24878,59672,70700,44900
+1222,14979,69519,69194,47031,51412,69072,25990
+1223,81168,61074
+1224,62165,73258,60184
+1225,48641,50142,46331,24020
+1226,68955,82023,64305
+1227,50428,51698
+1228,71591,63206,44337
+1229,12463,52288,60959
+1230,70602,52154
+1231,22265,38252,2756,17501,11420,16611,59366
+1232,46799,76056,56545,52067,23708,11110
+1233,73403,81013,44285
+1234,4684,31366
+1235,81705,40794
+1236,48465,6640,18985,8172
+1237,69828,3020,21764,72343
+1238,57921,76675
+1239,22553,38054,72924,14000,67410,49996,19712
+1240,36982,74870
+1241,51732,15567,42184
+1242,80569,30052,13758,36183
+1243,59232,33223,49462,26748,33608,80716,25233,8685,7450,5904,1520
+1244,50687,6886,48330
+1245,32585,36215,81397
+1246,29545,34252,27434,78199,48596,50263
+1247,31978,66637
+1248,27053,16715,11545
+1249,79887,30560,50754,549,40079
+1250,50959
+1251,13142
+1252,63325,55789
+1253,51909
+1254,7543,44072,23461
+1255,17998,8288,58009,13399,18927
+1256,44905
+1257,6400,312,30189,66948
+1258,63300,60972
+1259,52917,18658,48714,79293,27623,75536
+1260,71059,54673,41346,9178,13888,71409
+1261,81996,20258,69043
+1262,2270,76672,11413,12747
+1263,18403,17655,60639,17533,29030
+1264,41713,29162,53444
+1265,61447
+1266,36764,63766,58917
+1267,37318,24125,34,80972,18649
+1268,51150
+1269,75188,79847
+1270,39611,35970,52352,11025,67086
+1271,49422,2914,61226,64891,58730
+1272,43295,26749,58879,51597,29553
+1273,34941
+1274,3716
+1275,10108,75734,6558,39899,43468
+1276,28915,12718,56980
+1277,4807,54472,28993,8115,41671,61750
+1278,75517
+1279,49197,71529,28144,78447,24305,18020,28633,79604,57198,59372,24857
+1280,17838,34695
+1281,62838
+1282,67041,71265,59085,6787,48631,35876,74225,70416,76942
+1283,7179,42455,75037
+1284,61041
+1285,26121,20483,1970,25654
+1286,6696
+1287,80465,69216,44718,13283,30212
+1288,38680,16012,18870,5799,27105
+1289,62387,5998,3816,38781,1587
+1290,53026,66712,38474,3396,76462
+1291,16264
+1292,81049,45020,20837,6737
+1293,63955,44228,52560,19321
+1294,54960,66783
+1295,19165,89,42638,41812,33094
+1296,72249,82122,73300,30549
+1297,48429,14558
+1298,75240
+1299,22310,40083
+1300,2873,10743,26324,73080,22304,24810
+1301,43665,1463
+1302,783,9811,10467,34993
+1303,24778,25310
+1304,2481,34436
+1305,28412,40331,31850,36005,24523
+1306,76494,11541,79710
+1307,2993,51629
+1308,12717,11758,12877
+1309,19042,25450,49765,71722
+1310,57848,16584,47206
+1311,32479,55061
+1312,1855,67609,15228,43473,28057,36002,15867,64170
+1313,47212
+1314,5328,46351,21347,6285,45166,49252,13826
+1315,27664,26698,17942,18699
+1316,42061,53897
+1317,69393
+1318,2213,79352
+1319,15460,43841,57307,73995,74799,73085
+1320,20505,15957,81688,79106,17726
+1321,33048,31660
+1322,67485,30609,66629,28338,22153
+1323,55060,16462,22820,23034,38650,2611
+1324,49381,80086,5601,47985,17982,52446
+1325,35739,8085,79021
+1326,50824,50962,18387,53572
+1327,16811,80608
+1328,30065
+1329,9538,14855,73710,81442,71464
+1330,81577
+1331,26230,29527,26852
+1332,6788,1843,51668,43502
+1333,24652,36305,52803,17438,77749,63636
+1334,57878
+1335,72568,9584,47864,16066
+1336,65261,4250
+1337,53768,32772,5591,30983,45685
+1338,35547,19947,81882,3582,78028
+1339,18921,28468,25911
+1340,81743,1748,27382,81414,19052
+1341,80190,56232,77962,66766,65094
+1342,57449
+1343,10726,32415,50871,11595,36504,52079
+1344,48489,50318,13351,24844
+1345,77792,68256,31637
+1346,38672,48711,10001
+1347,4447,52878,41673,7286
+1348,72502,52213,62366,53374
+1349,54388,73795
+1350,50993
+1351,58817,34765,22232,62310
+1352,77802
+1353,77288
+1354,43797,17810,6333,11010
+1355,64051,50664
+1356,81961,40,19320,25652,27830,15750,514,1554
+1357,29929
+1358,41715,20850,13576
+1359,81210,19128,19156
+1360,37961,1650,1255
+1361,2861
+1362,19391,57683,46885,80924,49837
+1363,59434,2903,31293,46979,62739,43804
+1364,21715,78898,24508,29367
+1365,2174,33403,44418,23209
+1366,57065,21960,64124,35358
+1367,63254,39187,358,25175,22271,70437,71183
+1368,33339,28623,69266,30653,31138
+1369,12412,47632
+1370,77550
+1371,36778,23761,7303,49331,28222
+1372,54017
+1373,35706,64818,16449
+1374,474
+1375,65274
+1376,33210
+1377,68182,64315
+1378,48603,60002,29006,24506,1876
+1379,49846,64019,66839,1845,34308,26769
+1380,55229,16671,20134
+1381,41014,33727,55479
+1382,6966,67186,19197,28741,37715,46742,63389,25115,15515,65903
+1383,29263,28547,51588,33559,64168,11346
+1384,499,16612,66251,17195,73020
+1385,36832,50741
+1386,41249,57478
+1387,7062,67407
+1388,56788,82146,25114
+1389,1156,16096,805,6371,70626,65471
+1390,6986,222,6196,18715,14233,19478,20151
+1391,74557
+1392,16117,54706,41100
+1393,74316,49241
+1394,28166,24769,78549,7091,56614,55410,32526
+1395,60633,48620,60072,19452,56072,30966,65582,3015
+1396,46627,39779,37745,77795,55986
+1397,60501,14149
+1398,30402,56873
+1399,69621,74622,67389
+1400,75228,25627,4710
+1401,58500
+1402,20637,1932,8229,79845
+1403,66027
+1404,51338
+1405,40883,62004,27804
+1406,28900,31067,7597,43443,77856
+1407,73862,21725,20857,26016,45970,1876,68067
+1408,11681
+1409,39847
+1410,1498
+1411,65833
+1412,36283,15008
+1413,49297,2213,27046,42309
+1414,28140,22740,43016
+1415,15389,45588,78017,38583,21117,15981,29081,71896
+1416,17848,58098,10625,71288,50888,32637,81905,63561
+1417,47131
+1418,66843,67578,13144,4255,72951,66117,32129,52000,42001
+1419,62598
+1420,39404,71617,55848,73300
+1421,71927,9921,6548,31798,31970
+1422,13066,66887,36162,50908,8925,22623,42364,57293,73736,50636,36983
+1423,44489,10572
+1424,34783,67645
+1425,48060,54480,79751,45808,22390,41041
+1426,21754,69408,4948,13823,25697
+1427,24522,52218,38536
+1428,70245,8795,11662,41149,49320
+1429,2481,49707,49211,56516,21921
+1430,64976,13869,49358,40639,67255
+1431,30229,21711,54212,58058,38983,76866
+1432,74783,15163
+1433,72085,19132
+1434,6606,72609,66130,70442,31567,15940,23667,44871
+1435,3591,1044,57295
+1436,46796,49726
+1437,29465
+1438,56619,54865,11804,3287,72298,65695
+1439,53945
+1440,30868,11644,54902,40463,3809,46618,76904,47954
+1441,34537,70699,14420,2682
+1442,40134,34584,56729
+1443,67534,67903,76782,32217,51466,37757,40160,11658
+1444,81699
+1445,12431,55986
+1446,37591,66968
+1447,43257,6270,40963
+1448,31959,74457,58537,7647,40904,26133,75019,56257
+1449,60011
+1450,2269,29881,19793
+1451,52255,22648,29373,14146
+1452,27326,57920,18822
+1453,31659
+1454,18141,33250,40834
+1455,22544
+1456,75158,29276,32406,71676
+1457,30524,80862,56209,70175,32553,19000
+1458,50895,79960,70189
+1459,44279,31459,6969
+1460,28697,9775,43808,48931,19692
+1461,10463,39692,355,78664,1494,31330
+1462,60794,75209,79539,30115
+1463,41073
+1464,74891
+1465,62016,77379
+1466,19404,80839
+1467,34810,37642,76390,50493,61390,34545,12623
+1468,57464,23877
+1469,19440,67697
+1470,58545,35844,3455
+1471,55279
+1472,9591,65030
+1473,30657
+1474,75245,61375,18417,8811,34570,46304
+1475,56681,41279,19773,60957
+1476,50043,70954,72416,20136
+1477,81274,26174,55718,56271,14867
+1478,76117
+1479,57114,73162,67548,59695,50871,33745,25065,66281
+1480,6237,20597,73873
+1481,78857,48698,15075,66334
+1482,26854,60249,23061
+1483,42288,5623
+1484,11915,43606,68021,18202,54072
+1485,32245,13540,26037,15091
+1486,59934,35835,73097
+1487,21647,80210
+1488,48094,58882,12256
+1489,25261,19701,16015
+1490,4547,53008
+1491,18267,80232
+1492,65946
+1493,79990,57742,71396,28046,5666
+1494,46347,37260
+1495,71755
+1496,55319,60451,16062
+1497,73929,30279,63815
+1498,56150,50026
+1499,46497,42236,26922,24485,43751
+1500,79509
+1501,50355,13107,57020,40572
+1502,32650,17687,27791,14847
+1503,34512,3042,40848
+1504,69071,54523,13815,18365,38386
+1505,54111,21551
+1506,18851,71552
+1507,15996,54309,4415,63861
+1508,21242,82142
+1509,29374
+1510,62133,195,34802
+1511,44656,38483
+1512,58417,31601,55679,76326,66042,2072
+1513,72414,75202,76413,39499,16775,10
+1514,39440,60342,16438,15648,24684,44425
+1515,78539,20399,43145,216,51007
+1516,60692,51521
+1517,27610,51918,65490
+1518,53529,28451,54347,58538,3176
+1519,79437,32696
+1520,12288,76606,58260
+1521,24390,25120,70283,71562,69000,49369,42028
+1522,81753,69578,33218,36954,79034,76832
+1523,9797,46341,71860,76281,23908
+1524,48396
+1525,68802,26832,30356,65392,23459,45515
+1526,12583,80896,59322
+1527,626,26467,69626,64174,13296
+1528,15104,77158,60583,37706,27281,78947
+1529,78521,21564,2759,62501,50897,46435,41655
+1530,3356
+1531,66683
+1532,69418,10223,18424
+1533,28489,75854
+1534,30498,459,8200,34124,34021,75368
+1535,12410,15050,14852
+1536,68809,23316
+1537,71974
+1538,17838,53182
+1539,19366,1044
+1540,46087
+1541,19998,42837,30155,49030,35477,40134,74027,27249,51722,41212
+1542,4542,11266,24109,7106,31659
+1543,21005,57002,41951,69056,5420
+1544,67190,66747,17976,34739,69514
+1545,3858,19240,68124,29045
+1546,33388,25811,58295,49522,15490,3199,21039,66871,45060
+1547,62481,6446,31014
+1548,44673,48284,17485,50320
+1549,35016,74222,55909,8238,41538
+1550,47530,67863,51582,15826,69832,43022
+1551,29488,64701,73539
+1552,46994,39698,11563,64230,32680
+1553,56577,34717,57742
+1554,51877,25945,52607
+1555,53418,20829,32134,29943,13142,76115,76195,50123
+1556,48494,7289,59483,65553
+1557,27285,24917,67245,22837,16416,73007,48921
+1558,47818
+1559,71974
+1560,78384,16999,20666,56878,29670
+1561,78021,97,5630,55309,50663,17951,60105,21359,53943
+1562,4702,47793,23508,49901
+1563,46449
+1564,50266,8898,74545,74936,70594,11178,15244,40463
+1565,46667,23905,33710,35036,45630,61581,59804
+1566,80877,19458,81094,63592,46905,12295,70064,78336
+1567,58229,33318,28658,20775,81539,51262
+1568,53633,81666,15075,57048,57113
+1569,76254,32969,18580,49475,25170
+1570,71971,1402,59403,76404,40916,28104
+1571,2721,66997
+1572,80931,4701
+1573,7266,26965,33624,73965
+1574,15755,2251,1637,72685,25318
+1575,67612,31630,61510
+1576,36566,54086
+1577,65454
+1578,42677,42040,66242,66121,73192,18020,12176,17002
+1579,20800,76834,27935,32688,62146,31072
+1580,47845,11912,46418,19759,80024,59111,53003,42564,77150,22827,27133
+1581,41424,37939
+1582,6372,67231
+1583,69485,50527,3560,64530,490,40709
+1584,57541,34831,30366,67157
+1585,51248
+1586,3399,7971,80535,39396,43988
+1587,64653,32444
+1588,59024,37004
+1589,11374,60286,38474,75316,36340,62003,79757
+1590,77794,66534,20037,38495,17064,68233
+1591,31132,6615,70546,56873
+1592,27592,51582,56588,80308,32737,22459
+1593,5644
+1594,69747,26680,59753,56407
+1595,49264,65017,4395,77790,2097
+1596,70003
+1597,5581,52044,62280,54859,45708,36921
+1598,30240,8069,72668,24857
+1599,67534
+1600,17292,41979,49158,42564,7792
+1601,569,82116,43626,25882,22530
+1602,5880,37561,15567
+1603,32221,78156,65924
+1604,71801
+1605,45433,23865,23802,21290,2837,4677,3499
+1606,57216,29455,36357,32318,37517,33411,48993,723,3150
+1607,49258
+1608,22039,80682
+1609,61996,50864,30212,73116
+1610,929
+1611,52660,29785
+1612,80909,8641,48530
+1613,34819,52751,26917,70243,43773,74946,70337,52165
+1614,71109,60247,21944
+1615,30334,48739,40092
+1616,81842,19194,31413,15760
+1617,66748
+1618,30855
+1619,78199
+1620,5209,62240
+1621,33405,20190,23593,61236
+1622,75966
+1623,34262,29660
+1624,15736,11439,11574,2773,38097,8859
+1625,56668,33460,61445,32112,35231,79023,77248,56962,11241
+1626,14293,8887,30858,30706,9528,53474
+1627,21738,18070,5040,82143,57657,17824,24782,34258,70741
+1628,61366,34587,17623
+1629,18014,38058,60447,63183
+1630,18208,74978,72129
+1631,38704,68612,45843
+1632,40375,32342,78236,80600,24570,33730,33938,61316
+1633,76141,2905,51472,5683
+1634,19955,2166,19637,75690,37520
+1635,61029,9087,59868,441
+1636,6266,63162,23909
+1637,61603
+1638,48635,49696,64372,23668,27239,32584
+1639,13914,33390,30722,35941,21775
+1640,21842,80513,1533,23304,26782,57553,22698
+1641,74149,19176,22519
+1642,66047
+1643,51826,67506,43542,52219,38002
+1644,22100,41034,60315,80890,18730,53013,47500,40730
+1645,16197
+1646,40359
+1647,12603
+1648,69630,51794,20740
+1649,52546
+1650,34027,48330,76482,23585
+1651,45552
+1652,19688,43297,37841,28257,9402
+1653,37346,40129,73531,29845
+1654,13720,74729,490
+1655,4617
+1656,44333,40647,57805,72964
+1657,27708,13500
+1658,70041,33246,17911
+1659,35051,28302,25556,20531
+1660,51738,70950,81318,82042,22156,52664
+1661,6490,60779,17528,62244,66693,79313
+1662,34455,76522,23755,69184,38220,45648
+1663,5763
+1664,73890,62871
+1665,27884,73856,59858
+1666,26876,80602,37624,26104
+1667,15012,72101,56998,67931,75544,59536,21348
+1668,19593
+1669,16568,41809,80441,16354,70790,66823,63708
+1670,71361,16378,40313
+1671,44593,15588,10344
+1672,37699,39404,39989,35105
+1673,14442,16638,55859
+1674,51456
+1675,9506,13959,68021,53537
+1676,46639,61729
+1677,44238,11070,11247,38851
+1678,68190
+1679,78909,67746,81922,30104,11665,58742
+1680,40893,3268,46253,8462,33875,40344
+1681,1023,34357,81687
+1682,63686
+1683,40371,72737,30853,54784,57109,32344
+1684,1375
+1685,20111,72186,27644,68724,24854
+1686,14857,24615,57248
+1687,77306
+1688,1649,75366,80773,49996
+1689,63901,31521
+1690,12818,1593,21623,31354,65064,63058
+1691,24261,68084
+1692,32489,33471,66218,20666,24319
+1693,25522,65488,3174
+1694,14453
+1695,54692,22365,76821,51699
+1696,77236,60745,14358,46142,67134,42981,77648
+1697,36043,18525,18657
+1698,72911,79502,18431,51798,7657
+1699,26085
+1700,17248,71617,76956,81422,1095,53970,38663
+1701,79726
+1702,64529
+1703,75327
+1704,7576,14894
+1705,63829,43217,61651,56569,43417,55692
+1706,71692,1639,36580,65632,47615,69465,41686,59227,51078,68550,68801,51981
+1707,70165,81297,30306,51638,22877,54935,54075,15848
+1708,6446,56310,31569,78968
+1709,649,36080,61587,59928,9886,33028,12731,38032,15901
+1710,25587,56409,41247,34613,7688
+1711,7878,28838,42633,60073,1724
+1712,11979
+1713,47023,4719,79186
+1714,18824,82053,46045,76867
+1715,77452
+1716,64014,34084,49200,76285
+1717,17958,46509,11728,21646,30649,52137
+1718,69106,12814,72730,32195
+1719,8459,26722,5926,4309,75079,7066,3844,11086
+1720,4548,5050,62874,52055,25467,54296
+1721,35484,24355,56204,125
+1722,60091,11580,7248,81858
+1723,58531
+1724,59668
+1725,65389
+1726,13864,10175,17794,12262
+1727,40430,48040,51404
+1728,32839,23878
+1729,8888,2728
+1730,21521,76833,26997,14597,5018,78004,24519,34186,80316
+1731,26517,31384,40946,19440,63339
+1732,32165
+1733,69034,81403,48039,60468,67417,70954,26063,18637,40977
+1734,58665,79825,29927,4582,18468,11860
+1735,34616,80207,17575,78879,22035,71254,60752,65898,2616,39162,40926,49459,26726,55538
+1736,17957,3225
+1737,27535,5681,49601
+1738,50999,58813
+1739,48403,850,64464,12054,48112
+1740,36535,79942,63085,32322,26731,15116,3194,60611
+1741,66868
+1742,46525,33342,34819
+1743,31552
+1744,4949,59977
+1745,40985,81092
+1746,56818,8202,15600,10381,29103
+1747,75626,49540,26375,16115,59923
+1748,32562,71789
+1749,8768,19681,9571
+1750,59234,50149,44010,22652
+1751,38409,5369,41011,81049,39054
+1752,21210
+1753,25240,7056,14757,44967,18553,56261
+1754,24348,35577,20267
+1755,70438,5877
+1756,30003,72316,16958,52605
+1757,65886,51917,39683,34135,75869
+1758,27895,30514,6625,54431
+1759,81556,33733,20805
+1760,65211,17956,23314,63144,69634,30374,40699,63096
+1761,66811,78805
+1762,61382
+1763,51168,30903
+1764,8387,31992
+1765,15308,6357,7875,67387,6754
+1766,51391,22303
+1767,22011
+1768,19937,56315,9966,15970,5386
+1769,42914,4828,18478,59882
+1770,24895,15704,38761,75135,50182,40089,26921,38726,61045
+1771,45739,20144,44291,78863
+1772,6372
+1773,1534,78756
+1774,7957,63424,43465,33153
+1775,40175,31192,80424,63686,46274,59907
+1776,43019,3324,74029,59402,15234,24222
+1777,57710
+1778,381,2572,30267,21438,52369
+1779,10196,11920,70401,57791,46708,73853
+1780,26484,29600,80277,58953,26600,3192
+1781,33017,9832,38944,41695,6697
+1782,2381,38430,20501
+1783,49315,23749
+1784,34597,36464,15571,23009,3215
+1785,12112,46057,80784,45723,78655
+1786,48191,41538,15980
+1787,74215,6065,17773,45183,65526,76812
+1788,75293,64830,13211,36731
+1789,35475,21417
+1790,73744,79489,42873,28461,41123,60423
+1791,70855,72389
+1792,66540
+1793,44389,72899,54012,20581,26916
+1794,41447,78403
+1795,36002,24609
+1796,60150,19096,52965,54123,36548,11465,43176
+1797,71242,69227,17701,3446,61545,14649
+1798,16609,22066,73866,8564
+1799,26140,10688,27662,21526,50731
+1800,37235
+1801,47485
+1802,39681,65808,51318,56277
+1803,16136,46116,11543,28511,67768
+1804,68956,64092,13925,57391
+1805,55257,4070,1307,16811
+1806,14711,53112,19048
+1807,77254,55190,58813,35359
+1808,65618,74203,57797,67425,68529,40395,13039,54935,49408
+1809,32501,9071,69747,5284,31004,63062,58284,34151
+1810,11231,48781,63650,11477,37159,43243,18308,35127,79403
+1811,53521,40057,8634,10775,52357,74778
+1812,69654
+1813,12215,82027
+1814,51344,2538,36969,52196,29545,33020,11094
+1815,62482,65692,10152,40790,53968,3948,29926
+1816,21636,12222
+1817,46023,76776,17504
+1818,1176,60409,12468,19600,60615
+1819,38396,29515,62367
+1820,21488,12371
+1821,7548
+1822,39029,11853
+1823,81006,753
+1824,47131,14972,62009,73766,70027,8949
+1825,19368,74079,6822,54907,63027,50800,54045,34219,80184,33897
+1826,69448,41547,36406,6474
+1827,64364,1563,63291,29709,17838,65712,67669,82009,33612,55064
+1828,49077,73539
+1829,28407,51108,11813,57316,70748
+1830,39564,35998,33190,39164
+1831,40512,56545,34333,61963,34138
+1832,60100,70050,18055,10741,66588,43775,61082,62063,46571
+1833,67534,81591,56248,46711,20158,64904,53623,16655
+1834,49228,48691,68467,23761
+1835,8125,62917,59994,3348,43123,17241,78967
+1836,75786,28237
+1837,57478,867,38097,55521,36964,22957
+1838,33917,36669
+1839,14917,49677,30311,55663,59119,64741
+1840,77493,10999,4717,35562,30563
+1841,20950,37290
+1842,50909
+1843,32254
+1844,35830,51365,61865,62350
+1845,46795,3837
+1846,74559,24321,39722
+1847,78392
+1848,49884,13470,53297,62805,70517,23317
+1849,43008,20376
+1850,18662,18641,22187
+1851,736,803,12772,10243
+1852,25638,5617,698
+1853,31464,50882,63266,6149
+1854,6815,22256
+1855,65900,18816,56885,22706,42267,29122
+1856,73833,26230,45763
+1857,28085,4079,65259,16167,66357
+1858,15758,30733,5083,22882
+1859,24501,54311
+1860,79837,37575,56443,28299
+1861,16304,15445,3572
+1862,3169
+1863,61215,16477,26687,60276,43601,81137,14188
+1864,9458,43930
+1865,34462,54460
+1866,82141,71758,73447,1759
+1867,69282,15267,4465,60380,62408
+1868,80137,34597,67241,77101,35373
+1869,15339,24910,22898
+1870,42009,40616,73157,50824,16253,80243,59764,81572
+1871,62802,25375
+1872,70618,27410,26228,35118,48956
+1873,37890,43337,864,77588,61417
+1874,59082,5129,56076,50476
+1875,64805,26412,74259,63099,69956,147
+1876,69555,18396,15985
+1877,65537,6833,24427
+1878,18932,12505
+1879,56840,50699,75464,38101,47355,39616,29068
+1880,71538,45335,49972,52663,62853,73871,6028
+1881,56384
+1882,20708,11665,68136,71783,56863
+1883,39604,45958
+1884,20364,64080,2442,23781,78280,20317,35048,33125
+1885,54415,31540
+1886,15660,64853
+1887,66826,54912,56070
+1888,81
+1889,45772
+1890,74014
+1891,46647
+1892,2008,8392,66203,67464,72198,66996,46147
+1893,44087,78255,22200,8492
+1894,6242,81968,66781
+1895,30737
+1896,59603,58801,58275,62464,78453,39379
+1897,62531,15197,26396
+1898,65809,27333,73684,77361,47959
+1899,4702,82000
+1900,18385,26674,2316,28983,15438
+1901,62948,43981,43719,24373,35056,24211
+1902,29570,54463
+1903,65454
+1904,6949,45301
+1905,56488,29069,2389
+1906,1271,10587,28383,38459
+1907,51256,86,56162,9892,26050
+1908,77201,8184,29988,16190,27402
+1909,9715,61125
+1910,76866,8955,2513,78136,16267
+1911,82188,61543,39330,3840,72268,15453,7187,81047
+1912,42940,34158
+1913,61989,14867,76804,57934,63546,11870
+1914,43630,78490,28746
+1915,3600,37988,47066,24388,59773,61812,9524
+1916,32840,13467,9383
+1917,72903,55274,40311,26581
+1918,55096,77294
+1919,63361,50394
+1920,15305,20357,5687,38621,66356,57007,34091
+1921,75227
+1922,54007,14369
+1923,59653
+1924,7011,25666,65943,56051,76963
+1925,58575,67884,52396,7485
+1926,42987
+1927,58592,49109,20369
+1928,18440,42148,25648
+1929,46952,18683,37705,52863,39994
+1930,41344,68549
+1931,20070,58576,50407,81063,48095,26324,20971
+1932,25124,974,52660
+1933,40567
+1934,18518,51456
+1935,21143,46509
+1936,48439,28671,78677,75600,24855,42521,61915,590,45283,79525
+1937,19165
+1938,44654,68107,66196,4193,3170,480,8668
+1939,1637,38496,30597
+1940,21299,64051
+1941,4641,70041,25107
+1942,72266,26370
+1943,67637,12198,16038,62530
+1944,54784
+1945,71108,43549,18422
+1946,22713,56831,43647,38508,30868
+1947,66210,36840,11911,81094
+1948,29278,60431,37659,33141
+1949,61640,35185,22888,21506
+1950,72458,56225,12610,39024
+1951,37726,19947,15153,50811,6732
+1952,68617,20799,20075,59417,1941,50958
+1953,504,17003,15431,11693
+1954,27049
+1955,51427,28071,44123,77433
+1956,62066,27394,56188,36229,11361,6013
+1957,77762,2176,65562,7338,46100,55651,38295,34992,56759,67610
+1958,72484
+1959,25759
+1960,64904,37244,26033,63249,55283,23382,38221,12509,30033
+1961,76078,16042
+1962,39179,68738
+1963,14407,1098,4346
+1964,24511,43704,49291,58221,71810
+1965,58851,62035,13106,16728,26316,67095,11862
+1966,6095,19683,32016
+1967,58958
+1968,32392,8533,78916,14837,18477,29959,65709
+1969,7626,57394,38178
+1970,48374,23747
+1971,63022
+1972,20188,29078,35578,63478,13071,17912,14940,47453
+1973,20656,50909
+1974,57847,20876
+1975,48379,78815,53978
+1976,18538
+1977,69013,72297,29999,14947
+1978,8387,81444
+1979,9620,28888,45718
+1980,44935,66794,67591
+1981,60867,1935
+1982,24112,37490,23894,81630,39435
+1983,12614
+1984,27377,78943,38249,33387,9522
+1985,81404,73682,80238,59104
+1986,71480
+1987,50821
+1988,18828,60841,47083
+1989,74201,78922
+1990,75926,75134,27563,77133,26070
+1991,57440,36605,372
+1992,43607,10119,42693,58341
+1993,27224,30548,60690,78803,30633,14810
+1994,16422,45509,35484,34376,27813,51228
+1995,12411
+1996,6242
+1997,26319,29274,26210
+1998,20022,9403,75689,43219
+1999,35430,15435,49906,67117,79613,70067
+2000,36194,41215,62697
+2001,62214,36109
+2002,50956,18017
+2003,55907,51607,74323,64287,6069
+2004,53921
+2005,32331,78807,21099,27216,30042
+2006,15962,27759,73681
+2007,19079,71337,17492
+2008,50511,79718,7641
+2009,79009,74148,53480
+2010,16363,31377,79923,81087,23893,29275,45563
+2011,6278,71703,41595,9233
+2012,2153,5317
+2013,58361,79509,28537
+2014,72651,13158
+2015,9448,25848
+2016,14589,63950,71821
+2017,32732,40567,51011,13074
+2018,81060,24392
+2019,22944,72392,31311,75172,30066
+2020,18147,54909,20309
+2021,46414,37912,40523,60674,47840,43250
+2022,77092,38440,72343,50244,2429
+2023,11336,5436,41304,50924,55613,45338,55194
+2024,23234,32570,26066,6528
+2025,46649,72057,38615
+2026,7424,71771,75819,39136,62671,51139,72416
+2027,48601,66584,45586,38967,29462,68475
+2028,32209,11429,10255,61398
+2029,24961,15795,17190
+2030,47969,34108,35238,51908,8064
+2031,13967
+2032,44625,80713,30132,25893,45215
+2033,61012,9904,47444,749,19459,74940,2763,78860
+2034,47996,31427,61201,38593
+2035,51128,17714
+2036,28543,60900,11046,24500,6357,47793,5353,81623
+2037,63262,23593,30742,62812,25091,70023
+2038,66369,19162,51745
+2039,75188,42720,8119,52620,71044,68232
+2040,2617,62174
+2041,26096,67448,62600,16815,75327
+2042,13955
+2043,61868,23937,56865
+2044,55328,69583,39887,70239,67473,57718,24737
+2045,17730,22204,62248
+2046,62541,68037,20804
+2047,41997,37502,52094,12258,33289,27326,16206,16576
+2048,52800
+2049,81950,51069,23180,74885,744,29762,27550,3059
+2050,15031,71396
+2051,4497
+2052,17340,58401
+2053,22402,28615,26255,37590,5058,6394,75930
+2054,14356,77722,28406,17994
+2055,70200,55151,27258,26139,62683,34467,66589
+2056,8645,29891,71865
+2057,23987,76833,17317,21618,79532
+2058,38709,21385,35849,41463,68355,79523,76083,57000
+2059,56430,19687
+2060,24669
+2061,45479
+2062,94,6623,65746,8364,44791,48285
+2063,60520,73559,18389,69163
+2064,49834,17967
+2065,24092
+2066,68622,49332
+2067,6024,79103,2148,36963,55189
+2068,74072,67896
+2069,4331
+2070,56102,53478
+2071,15566
+2072,43549
+2073,5784,44108,74523,67509,65864,16328,43803,79653,14402
+2074,57528,60860,70681,47495,67298,4566,9606
+2075,3887,10822
+2076,68968,72447,21142,42886,50036,3622
+2077,55259,1645,65412,42094
+2078,69249,39271,38697,18811,34216,22626,60575
+2079,65044
+2080,14000,81092
+2081,31330,71262
+2082,46780,66064
+2083,43363,27095,72998,60921
+2084,21899,77880,10785,69540,52403,43494
+2085,7288
+2086,67001,28961,54901,20343
+2087,24732
+2088,72091,22776
+2089,40294,77957,58947,12625,25698,80220,11012,21886,35436
+2090,11777,42176,60985,50557,31360,66478,74174,78878
+2091,41314,46453,71608,34061
+2092,70967
+2093,29376,10974,16694
+2094,61575,17579,19189,29407,60239,33112,47800,78293,17949,75041
+2095,67048,67061,52665,1921
+2096,74599,55260,4732,10826
+2097,76542
+2098,14794,66979,35063,40736,48356,2163
+2099,22273,36435,56825
+2100,40537,21029,2806,3963
+2101,66970,20166,5862
+2102,18870,70805
+2103,48063,23783
+2104,35351,51781,74260,79522,14715,55895
+2105,17348,22881,16818,37555,54752
+2106,67986,11130,29184,34893,46012
+2107,34842,49671,63711,70267,12759,14738
+2108,13744
+2109,57896,51280
+2110,72620,56220
+2111,12455
+2112,70989,1559,53120,52886,81013
+2113,64393
+2114,23856,60380,8801,13843,38870,10975,30994,17791
+2115,81243,26836,681
+2116,52344,70698,64862,48901
+2117,31345,68139,65571,56131
+2118,18154,50836
+2119,74117,71542
+2120,9680
+2121,5503
+2122,22995,60062,45826,52066
+2123,2721,55051
+2124,30574,48711
+2125,49726
+2126,48789,73019,25623,10969,39979,14719,78140
+2127,15182,10762,51649
+2128,2400,34198
+2129,50318,75835,22007,65722,2538
+2130,63292,40083,14760
+2131,28975
+2132,55429
+2133,13,25326,24267,39350
+2134,76273
+2135,31725,66748,40393
+2136,50810,9503,53358,58286,30674,8140
+2137,46470,78773,1045,67094
+2138,68394,67580
+2139,25888
+2140,77171,36438,32481,69590,30906,74767,72333
+2141,47724
+2142,41411,33980,18956,56290
+2143,28807,76747,22259,60405,69652,10017,68697
+2144,19610,34830,74685
+2145,57805,80461,37567,5573,9165,19854
+2146,45215,58651
+2147,68424
+2148,36879,18981,13737
+2149,77982,67797,38447,16141
+2150,76054,55821,76351,60764,72451,50396,21368
+2151,44541,20751
+2152,62616,80541
+2153,51898,67977
+2154,593,59254,56309,77668,64338,67173
+2155,36779,43587,3885,71027,6924,62834
+2156,23637,2861
+2157,26782,25261
+2158,66066
+2159,44673,12626,75805
+2160,32103
+2161,72520,46318
+2162,56099,7599,43511,10098
+2163,47785
+2164,37122,7388,51130,60104
+2165,56530,11083,67530,35894
+2166,74326,17394
+2167,19141,42047,40692,42094,44394,61396,38785,27275,45997
+2168,36677
+2169,24460,52361,19804,66480,78072,46946
+2170,60079,12697,55062,3614,60998,14586,40731
+2171,58157,59847,15845,40833,15512
+2172,41524,15706,19110,26657
+2173,20115
+2174,67586,31330,19527,81223,79861
+2175,56583,64145,70519,4668,62360,46678,81043
+2176,53507,54617,11714,62229,38132,43837,31554
+2177,37373,79221,24801,16204,4024,72072,67558,81540,31598,58416
+2178,22505,34584
+2179,28780,69626
+2180,20221,16233,54306,34322,15897
+2181,51177,29684,32237,30153,29794,46179,27768
+2182,8086,12271,56570,61960,25183,55843,58155
+2183,80911,60347,53603,49027,8696,66412
+2184,69634,12067,74162,7796
+2185,14144,26138,63152,48145,73921,2424
+2186,36223,2885,48263,51944,16416,31940,22440,3725
+2187,14823,21449,7623,63898,61946,39247,39182,2580
+2188,73331,50682,64212,21103,37566
+2189,75863,7139,17481,9879,68324,30999,14391,13989
+2190,81083
+2191,76100,54063,47800,64503,51935,44756
+2192,8935,2841,30950,75555,80304
+2193,1884,39845,30730,76480
+2194,73458,27299,39541,66679,37572,2211,68891,55631,37027,3020,35298
+2195,20203,74216
+2196,55611,1747,5391,7976,35667,64985,59757,12545
+2197,65851,59695,64892,38678,27284,29059,23597,31565
+2198,43897
+2199,43984,41380
+2200,61992,63352
+2201,57990,59543,37360,58650,16412
+2202,37926,48316,46283,42301,53315,81355
+2203,78884,46274,73276,17439,40952
+2204,56970,36898,29022
+2205,170,78731,53459
+2206,33888,53511,67045
+2207,56843,13525,65986,74126
+2208,39477
+2209,23825,1026
+2210,31261,33552,38421,26182
+2211,43742,82147,80183,41922,52890,8940,49209,49228
+2212,30147
+2213,61255,17313
+2214,73944,62327,59801,55907
+2215,48596,35489,74036,22820,38919
+2216,11238,76266,57806,26096,24318,26139,75485,14748
+2217,19327,76779,15722,2198,35499
+2218,4465,40383,42778,74729,73887,25372,54047
+2219,49730,2113,48229,71598,61637,14927,49975,69453,48956
+2220,49518,61187
+2221,34972,16115,58743,5978,67242,24396,26872,17240,74530,30877
+2222,12224,22745,28661
+2223,70964,69137
+2224,30294,60309,11850
+2225,43822,62804,62253,15618,76873
+2226,50944,23894,63487,30346,38337
+2227,20414
+2228,20266,67912
+2229,67969
+2230,65359,33988
+2231,55644,54116
+2232,15614,32247,3947,11109
+2233,49010
+2234,31539
+2235,16548,5657
+2236,76407,46804,25846,54128
+2237,78646,1933,62935,26022,16509
+2238,32602,70614,77252
+2239,17573,6867,52101,34535
+2240,53252,79106
+2241,39388,5984,20782
+2242,7758,41994,59424,36255,51529,4957
+2243,49022,25034,43919,38255,21852,58472
+2244,5782,66118,45465,72630,2381,68075
+2245,18247,74430,66082,53908
+2246,54274,39085,34847,48891,67926,41403
+2247,51553
+2248,25832,76441,15649,48610,53358
+2249,67382,30896
+2250,22712,43710,3465,71739,3346,14747,79659,7231
+2251,78681,55992
+2252,24715,13208,77649,20468,80418,31991
+2253,68169,26258,2463,46635,7344,9328
+2254,53905,61068,33415,77993
+2255,50919
+2256,11714,9665,21891,23586,20416,65718,21712,65751
+2257,38630,56967,37174,79226,55980,56929,38335,40298,5134,78613
+2258,48481,42948
+2259,46900,51773,63418
+2260,31755,59099
+2261,80359
+2262,47802,23937,63172,63633,60057
+2263,51139,45947,1562,3367,16315,66601,60715
+2264,75253,8042,65838,303,6297,28719,25872
+2265,61393,68938,35877
+2266,30046,36878,35495,67462,47529
+2267,59120,5446,9733,16408,10238,30763,19503,66206
+2268,21880
+2269,21038,44209,51716,41795,24995,67445,68604
+2270,964,71240,26234
+2271,23755,31161,65564
+2272,37107,61096,39763,64380,54421
+2273,53768,41189
+2274,28269,72688
+2275,54391,61199,33550
+2276,7224
+2277,32653
+2278,30270,77388,37789
+2279,36149,7964,60061
+2280,4553,68518,2255,79270
+2281,20442,76587
+2282,37583,58517,60813,4735
+2283,39023,11134
+2284,9647,4928,19927,28508,36918,58993,67402,43393
+2285,32091,28373,13526
+2286,53069
+2287,69311,13711
+2288,5542,22662,74050,58256
+2289,51494,22802,11407,18989,62187,74102,16552
+2290,78021,42314,67981,33747,64497,74749
+2291,12698,56992
+2292,11090
+2293,27083,11535,54580,58018,80753
+2294,33125,48633
+2295,64753,39652,33617,15060,10969
+2296,40792,81677
+2297,61709,12908,78357
+2298,56409,62967,68952,17145,13328,14457,60491,57255
+2299,18811,37426,76738,4154,68987
+2300,7266,52434
+2301,11674,18448,78813,39721,48566,22204
+2302,37491
+2303,4144,8537,47465,19396
+2304,1287,20648,1300,51054,71232
+2305,5040,36851,36971
+2306,48713
+2307,47939,43764,13165
+2308,8502,50272,64733
+2309,65210,64241,62762
+2310,22321,29879,27884,8767,23601
+2311,32644,72825,62891,79424,49255,30771,31532
+2312,48978,63067,44009,35910
+2313,38718
+2314,686,2550,19226,5259,32125,6878,40460
+2315,71222,51010,2384,64551
+2316,6930,75078
+2317,38754,72509,8166,26264,42739,71304
+2318,16030
+2319,56878,52057,34867
+2320,55392,60325,46309,24030,73339,63645,24367,41336,16107
+2321,38033,50724,68085,40930,28053,26166
+2322,29055,2123,37097,53206,70378
+2323,58410,12658,75137,38129,34446,3629
+2324,28648,19490
+2325,72063,9013,76482,40115,41111,38961,75313,54873
+2326,79138,70039,68811
+2327,1994,68853,70579,45908,15263
+2328,22362
+2329,10762
+2330,21892,13896,28152,26969
+2331,14852,72773,49830,42030
+2332,21304,72953,30443
+2333,62772,64769
+2334,68412,58385
+2335,74853,20326,32602,64587,3241,60679,71309,31257
+2336,44733,24
+2337,68108,57587
+2338,72028,38709,36104,58208,55512,19405,14293,66237
+2339,72871,27791,67161,78034,68487,49854
+2340,50919,59272
+2341,46360,9945,52747,32491,56206,36966,2486,56098,38876
+2342,36054,78407,28654,68040,235,32979,54629,53284
+2343,57459,23201,28480,28556,81400
+2344,20759
+2345,48312,15005
+2346,79567,45535,64807,31939
+2347,9572,6772
+2348,27642,44839,63277
+2349,12149,51054,1862,16106,18959,67537
+2350,55734,71067,72360,47295,48346,7809,42228,19647
+2351,51062,58650
+2352,8286,76852,62741,26318
+2353,36915,33684
+2354,44464,49025,22660,78197,55709
+2355,34454,24366,11451,4964
+2356,73300,56398,16925
+2357,79071,23668,7295
+2358,2138
+2359,41402
+2360,61189,9374,53812,58044
+2361,28747,53344,51353,72274,26636,1715
+2362,4678,76639,72030
+2363,26708,62010,5693,59492,24330,33684,17429
+2364,29649,41685
+2365,20741,43797,36314,72820,57722,70670
+2366,33861,11915,34028,38978
+2367,7145,5436
+2368,51781,68743
+2369,56455,16391,47138,7564
+2370,37668,17681,29488,20001
+2371,63317,71088,40869
+2372,33268,36742,66282
+2373,4329
+2374,30361,61577
+2375,73347,13969,37417
+2376,4645,8856,44923,30926,60453
+2377,54470,57979
+2378,6976,63342,21506,48239,43718,81274,61088,44398
+2379,17119
+2380,2243,11354
+2381,15986,81450,59370
+2382,70755,39849
+2383,24879
+2384,60257,67979
+2385,5447,12067,76249,65946
+2386,7557,10141
+2387,60705,77681,77901,68421,34431
+2388,30843,51196,74050
+2389,62533,64070,59237
+2390,22155,17313,65164,49615,67050
+2391,66146,24368,14111
+2392,74918,19354,21510,53577,48036
+2393,76942,48866,25152
+2394,26427,49884,17435
+2395,22934,3502,81779,16018,23229,9483,26584
+2396,9432,50823
+2397,73893,37423,50876
+2398,21816,2552
+2399,61553,65527,29796,66225,7324,17926
+2400,29891,69953
+2401,48590,3201,52157,2147
+2402,66076,7392,33059,66960,19360,50766,23361,17240,61913,25526
+2403,13642,65022,64026,61398,1945,49695,28270
+2404,1684
+2405,40428,31045
+2406,15163,18765,8366,2163
+2407,68131,37397
+2408,5747
+2409,41695,54912,37553
+2410,13227,56655,80070,30410,61424,36328,45205,70413
+2411,21241,28773,79786,62400
+2412,45206,7458,70377
+2413,9676,50903,36258
+2414,33321,56973,70588
+2415,68930,64717,74602,1674,52225,65826
+2416,46330,42972,37432,33925
+2417,6509,69691,49620,36974,3730
+2418,35287,76292,55625
+2419,30496,57205,75166,78182
+2420,40737
+2421,22461,27452,15558,19011,7783,70084
+2422,58258,62005,71665,48573,19616,40231
+2423,3293,75350
+2424,50324
+2425,26184
+2426,20950,81144
+2427,77119,32603,62334,23745,42240
+2428,16657,1696,81671
+2429,52137,17446,8080
+2430,23198
+2431,28276,28640
+2432,60950,14422,31840,49070,66933
+2433,67645,3444
+2434,56861
+2435,64095
+2436,22363,56933,72020,51635,49259,44292,40347
+2437,48856,4628,58090,75215,17907
+2438,26173,78194,57492,44918
+2439,15686,10624,23086
+2440,27047,58062
+2441,53516,21973,11916,4360,64570
+2442,70681
+2443,67650
+2444,73510
+2445,61081,32711,50135,38919,17229,2608
+2446,19165
+2447,64773,38781
+2448,27424,72965,24607,1468,59976
+2449,26794,54329,14957,12526,39208,58869
+2450,59095,20565,65031
+2451,72525,72431,49857
+2452,53681,8647,13140,80970,41007,18877,42302,20652,51726,32788
+2453,5674,60764,9088,14958
+2454,42492,6132,28012
+2455,40264,31713,72075,11609
+2456,70391,56314,67499,34701,34349
+2457,65401,26999,46417,6840,21229,8903
+2458,30393
+2459,72258,57729
+2460,3171,81119,42486
+2461,17229
+2462,1800,70611
+2463,60218
+2464,3036,73847
+2465,37459
+2466,29060,53834,20255,51819
+2467,70911,61398,21750
+2468,44673,33611,3536,14747
+2469,80359,48934
+2470,39288
+2471,18709,78627,17461
+2472,16803
+2473,73021
+2474,17666,19444,43895,53900,65377
+2475,30407,3984,11381,7152,45283,55334,81057,72994,18945
+2476,14042
+2477,76280,73605,60084
+2478,6445,1582,44090
+2479,73197,72647,17707,36665,53973,22344
+2480,12611,67848,81884,73002,57134
+2481,9568
+2482,28527,20103,80777
+2483,46933,33695,61985,65375,23000,14972
+2484,41044,76432,66843
+2485,4197,34993,48673,4433
+2486,34369,30376,74065,41880,81272
+2487,80877
+2488,76640,7879,25710,37926,15003,41422,53016
+2489,76463,27610,16354,38241,13613,37656,59345
+2490,71503,56171,44673
+2491,55570,41031,26205,37792,59925
+2492,7626
+2493,13526
+2494,41426
+2495,18705,33325,50865,28696
+2496,56876,13944,10933,73854,24680,12523
+2497,67638,39187,44273,49079,40208
+2498,51212,29723,21563
+2499,19604,1100,40166,3599,59850
+2500,26976
+2501,36255,74332,55165,76644
+2502,36157,63644
+2503,62297,10766,13666,26393
+2504,66341,36052,69999
+2505,36232,54814,23591,48501,75691,50343,52077
+2506,27625,69760,38248,63888
+2507,7043,22384,31028,1180,59307,53339
+2508,48045,58533,61456,73649,2512,70089,50855
+2509,26476,45411,72855
+2510,2358,35631
+2511,10482
+2512,4465,30573,42662
+2513,53357,49097
+2514,74592,55915
+2515,80561,19445
+2516,10288,7549,34113,58511
+2517,54274,49843
+2518,10626
+2519,65132,53622,47498,40153,63853,24886,53173,23303
+2520,80210
+2521,13240,38208,25375,10079,1986,58215,64209
+2522,40732,38935,73528,20431,54910
+2523,64914,43870,50114
+2524,81168,40298,24328
+2525,42279,33402,53739,67318,21470
+2526,65611,55918,18882,55890,33436,46794
+2527,52055
+2528,19826,10916,73228,20141
+2529,40083
+2530,72130,72784
+2531,19241,78004,61455
+2532,9691,52755,36347,72444,9172
+2533,29391,53599,43682,56357,39806
+2534,20818,52933,35262
+2535,42196
+2536,45380,57760
+2537,69067,58639,62535,27718
+2538,52544,72477,62442,66987,80704,40048,3564
+2539,76992,24917
+2540,42488,78114,33980,24828,23833,17623
+2541,14896,1954,18398
+2542,28990,74015,49628,15833,33461,59263
+2543,11839,62112,32483,81727,31312
+2544,59655,19461,18584,41340,24043,65700
+2545,58232
+2546,73784,33998,47910
+2547,65133,20422,72490,12064,36787
+2548,63172,50899
+2549,36882,32226,73264,67135,14576,27515,24336
+2550,49549,68157,62061,51875,50368,58429
+2551,37789,19468
+2552,38109,32678,72311
+2553,65814,28924,60388
+2554,42326
+2555,4518,29597,60138,31719,59789
+2556,62066,10366,81311,46731
+2557,43894,10939,50795,7959,69468,52051,82052,63374,15855,54565,61155,56503
+2558,74804,57921,18219,39273,40974
+2559,35038,29924,25486,33647
+2560,61907,32333,76322,58964,2588
+2561,19651,19899
+2562,25487,49090,6945,52832
+2563,56882,42530
+2564,19967
+2565,74231,52060,37291,36267,55864,79671,70412,35657
+2566,5874,74630,50214,81481
+2567,9607,21174,6782
+2568,49974,75522,61030
+2569,57374,80094,17583
+2570,53557,42389,71202
+2571,58154,64961,7526,72533,10282,73151,8548,10257
+2572,78316,31232,76592,54803,36268,4340
+2573,74986,56140,67454
+2574,22587,50340,51777
+2575,81977,20199,12889,45440,24444,4365
+2576,52109,21609
+2577,63059,38440,58460,73946,33182
+2578,16216,8830
+2579,79136,57232,2516,8844
+2580,43057,7816,33300,62847
+2581,52425,43580,12227
+2582,66411
+2583,13697,33730,47439,58617
+2584,17237,22307,35620,27272
+2585,17472,21049,43799
+2586,42424,58919,10655,65427,49482,5825,44487,20632,60049,58123
+2587,54614,75227,40893
+2588,38356
+2589,45907,34319,39622,42132,65524
+2590,20096,36963,62343
+2591,53315,43873,54577
+2592,67131,80370,76654,13443
+2593,21251,25566
+2594,18096,67382
+2595,72556,13136,44232,68275
+2596,71851,14493,11615,67050,31924,78527,40543,28834,22272
+2597,55912,52593,37490,4573
+2598,69446,71825
+2599,55181,29253
+2600,6782
+2601,78746
+2602,31352,57179,39598,68343
+2603,28078,73431,66885,61698,10784,3435,40379,59769
+2604,33635
+2605,66911,64282,13796,38658,68994
+2606,76453,79833
+2607,23189,60375,8943
+2608,39366,48487,18558
+2609,8463,46756,55100,51508,54771,17509,40954
+2610,78362,65593,63599
+2611,59626,2725,8166,54608,58625
+2612,36665,70047,73106,71232
+2613,50200,51267
+2614,5473,44313,12198
+2615,35324,497,43809,69999
+2616,74992,6783,59712,33071,38801
+2617,51179
+2618,33086,15536,41628,34277
+2619,63410,51066,23756,30134,75962,51895,45697,45453,14511
+2620,23183,65810,56695,13606
+2621,75188
+2622,13097,46951,45538,77517,20143
+2623,42595,40530
+2624,16377,25255,814,63988,18002,56295
+2625,34227,38832,56190,18384
+2626,11942,828,53760,20904
+2627,26764,77838,10882
+2628,7103,73596,15604,65241,34732
+2629,3814
+2630,52132,35388,2892,58255,36070,24936,43289,32973
+2631,44546,16631,23923,72124,42568
+2632,57818,34340,79011,63962,13848,31763,61523
+2633,18538
+2634,19285,4243,79027,70616
+2635,14645
+2636,11663,10991,72426,60193,20356,3497
+2637,40588,63375,27249,22547,8661
+2638,8721,46656,14229,39520,18283,27614,40577,42257
+2639,81899,18020,10542,37370,9133,59379,74116,14195,61306,5089,50359
+2640,20227,46252,50625
+2641,80283,735
+2642,10583,21084,33344,71461,8027,61554
+2643,40414,21577,32359,16629,62480
+2644,27740,30086,22506,54676,80727
+2645,62267
+2646,70780,42094,81751
+2647,41657,62869,63515,31411
+2648,41431,29081,64312
+2649,50559,4976
+2650,63099,20942,65868,45032,16700
+2651,23685
+2652,46886,44175,78411,4396,80530,18310,43507
+2653,73849
+2654,79780
+2655,17040,72490,67094,2819
+2656,81915,409,65848,70492,18297,7031,15566,49394
+2657,32671,69704,61882
+2658,46865
+2659,25047,48554,25741,74392,21152,55710
+2660,52308,57033,59584,60974,65493,75914,20662,40377
+2661,47589,10249,81533,50840,29590,78820,22519
+2662,47500,6341,79710,23016,395
+2663,29398,40529,60504,48416,79163,48823
+2664,11085,49505,26525,3184
+2665,40531,80372,11914
+2666,41226,22031,25742,20972,52133,21276
+2667,19319,56362,30991,72151
+2668,40527
+2669,8820,62464,78032,31474
+2670,40313,21611,51188,56647
+2671,65737
+2672,15232,51745,69425,19367,31560,51458
+2673,10762,25538
+2674,79912
+2675,31139,8236,32503
+2676,37022,62585,13313,77558
+2677,6804,60916
+2678,66088,42549,65864
+2679,47765,30920,51930
+2680,21088,65499,81398,77778
+2681,2448,18216,33953,16653
+2682,37420,69330,64970,30471,80912,32647,71138,47452
+2683,20768,36530,36043
+2684,41742,14444,6285,53509,13140
+2685,31201
+2686,75036,1558,16455,63286,6544,63923,39702,54661
+2687,11331,59963,22146,58928,19762,412
+2688,51126,34681,74979,40005
+2689,29734,50962,24640,24546,52878
+2690,62357,46769,18338
+2691,57378,44041
+2692,14555,41434,39697,41221,9694,6880
+2693,8965,65339
+2694,34065
+2695,39397,15614,32718,33879
+2696,56611,4174,62144
+2697,76640,34061,38220,58867
+2698,64222,20738,11643,66392,76832,71598
+2699,75905
+2700,21346
+2701,66438,24997,33869
+2702,2156,17663
+2703,72560,21169,72753,13635
+2704,22338,49309,75351,4162,8098
+2705,12719,6606,9845,34907,11669,29718
+2706,695,40046
+2707,34367,47043,45125
+2708,45949,65586,75682
+2709,66405
+2710,11709,32319,62690
+2711,10348,63536
+2712,43805,8355,54661,17313,18746,47633
+2713,14498
+2714,54688,23312,33676
+2715,26061
+2716,71027,8348,43469,58177
+2717,31150,52996,11997
+2718,44749,59389,60477
+2719,5108,61170,12015,3258
+2720,37803
+2721,56877
+2722,79294,47249,68231,72494,42807,29789,63739
+2723,80500,70377
+2724,44755,50902,68511,32893,68919
+2725,32091
+2726,48858,58680,81131
+2727,13277,51749,2143,18222,53602,68790,50602,18901
+2728,56759,31588,69601,54304
+2729,53099,69869
+2730,74985,78392
+2731,62900,53945,25242,49357,21386
+2732,61637
+2733,7217,31027
+2734,57921
+2735,33403,20233,42328,56745,13449
+2736,30292,5933,54572,45950,49725,51092,17292,2592
+2737,45730,27394,79310
+2738,79149,70550
+2739,35408,34343,16889,54444,74728
+2740,49118,78143,2968,46968,9622
+2741,53259,70807,15901,8118,81382
+2742,12712
+2743,74070,69367,2280
+2744,50182,46656
+2745,38552,16468,19112,67861,76902,52809,34335,56564,12369,393
+2746,82130,30703
+2747,32117,19243
+2748,17508,30759,61643,44512,22306,35415
+2749,40984,22408,49951,10278
+2750,6285,40988
+2751,41003,35883
+2752,29389
+2753,65709
+2754,62907,57595,78867,19641,54155,51617,56034
+2755,35513,47420,14376,16978,27228
+2756,74780,32159,39165,55782,4417,6326
+2757,21209,22858,41004,20870
+2758,59818,25303,74852,12234
+2759,76490,39311,80304,64658,67581,71549
+2760,25444
+2761,75416,56278,59186,1238,54296
+2762,38219,47085
+2763,61287,9390
+2764,22170,56630,77437
+2765,57325,20705,50162
+2766,5278,10119,39102
+2767,40002,24447,4417,74369
+2768,397,68657,77012,5534,75357,37747,43432,29330
+2769,11780
+2770,61226,68163,79564,3883,73965,21035,56699
+2771,3965,11272,59526,74051
+2772,34261
+2773,54185,59628,6532,67030,50749
+2774,32888,3184,77098,608,13958,37733,71060,42431,9093,25880
+2775,39655
+2776,62600,77799
+2777,16910,18561,12650,2272,47972,10097,71154,80270,61863,64797
+2778,51151,25735,27452,64597
+2779,60113,60165,59823
+2780,15123,51746,50443,71326,10155,27050,22019
+2781,37604,25855
+2782,54658,12824,27432,24864,77489,24318,69278,40308,48259,57678
+2783,43665,78332,62765,27016
+2784,39786,76106,30350,355
+2785,45226,68893,14763,79062
+2786,51132,39870,59481,65430,69138,77024
+2787,15578,65900,15954,53569,24289
+2788,9753,964,17851,28007
+2789,18191,15960,49546,38183
+2790,31659,62190,42722,38950,33259,57378
+2791,28822,70956,79593,33711,50053
+2792,72159
+2793,62170
+2794,73774,8779
+2795,52464,29670,36299,12654,12705,40266,30016,31504,76056
+2796,54595
+2797,74983,43944,23470,58098
+2798,20635
+2799,80936,65087,58692,3072
+2800,65914,45935
+2801,12217,26558,39309,54632
+2802,73193,66064
+2803,48138,49846
+2804,19637,55842,54996,61642,41004,43822
+2805,36983,26865,67770,64332
+2806,30944,43784,30351,44083
+2807,47676,8415,7575,48842,7931,70964
+2808,79841,61998,11908
+2809,50687,63716
+2810,15137,73268,40560,34282
+2811,64767,56274,58639,10579
+2812,901,67648,66932,29723,17239,64507,2902
+2813,77722
+2814,66193
+2815,39041,32378,38801,61980,29338
+2816,14437,52945,80526,38016,30888,63017,29859
+2817,48728,10528
+2818,17058,39993,26417
+2819,43878,32632,1295,56196
+2820,69494,12537,59060
+2821,52086,68164,28478,79707,6703,6883
+2822,19092,12215
+2823,28665,50102
+2824,36972,81070,61993,36127,55814,75597
+2825,27217,45900,66494,49673
+2826,22304,37398,66405,26201,76484,21038
+2827,45983,68884,49721,73377,9152
+2828,2128
+2829,31617,26884,57972,598,71033,69452,30828,73455,17216
+2830,14040,17154
+2831,8362,15838
+2832,57078
+2833,38804
+2834,68856,43439
+2835,64095,53910
+2836,12441
+2837,69643
+2838,75492
+2839,48520,498,42779
+2840,58552,36725,50326,825,24741
+2841,26184
+2842,15632
+2843,75166,34442
+2844,40468,33440,67285,20009,72347
+2845,32300,25448
+2846,18781,73681,80373
+2847,48752,12270
+2848,73096,60523,8941,21898
+2849,56254,4137,31368
+2850,54048
+2851,4499,24090
+2852,78592,9255,23084,9828,38501,25981
+2853,76755,52079,57718,54346,37651,44844,43635
+2854,19593,64928,13341
+2855,2125,20791,39509
+2856,62049,33114,2778,65492
+2857,25446,66793,35437,6860
+2858,67299
+2859,20141,16532,61087,12719
+2860,16306,36562,16198
+2861,49914
+2862,11061,57439,79771,1848,56218,60537,21765
+2863,45918,54526,9316,12405,49075,77343,17045,10720
+2864,6069,49830,27244,73301,37756,17869,79433
+2865,44932,27137,8484,4398,37236
+2866,37360,64795,62198
+2867,58559,71063,69190,40855
+2868,81040,34116,15376,75353,73485,58133,56631
+2869,81872,76635,7212,51791,44080
+2870,46961,28946,43746,8225,69928
+2871,3463
+2872,55926,33950,41304,56104,45335
+2873,35264,35619,46625
+2874,1176,72620
+2875,9681,49177,53142
+2876,10178,18974,42791,4865
+2877,63476,31424,29538,68256
+2878,78399,18178,69803
+2879,2040,30147,54806,81539,74148
+2880,857,63185
+2881,29782,50121,67873,9263
+2882,532,45578,64267
+2883,80677,17747,33944,3091,12877,12738
+2884,25190,26208,79929
+2885,14954,39817,81733,46483,73326,44487,10778
+2886,13052,64143,15397,9220,67710,64795
+2887,41822,32387,55147,13454,42380
+2888,60563,37066
+2889,39654
+2890,69995,80054,39159,68244
+2891,73922,42916,60894,68870,44641
+2892,7408
+2893,46100,58611
+2894,68856,31330
+2895,30724,50574,5911
+2896,49875,44777,27245,64948,7796
+2897,46023,5968,66125
+2898,34442,55671,42522,59366,55847,21861,39973
+2899,50373,70485,20499,38457
+2900,35488
+2901,1374,22903
+2902,5658,81522,22494,12256,3018
+2903,60447,69695
+2904,14917,37932,529,61694,76676
+2905,64802,3880
+2906,76632,10464,39324,66716,25379,75491,54764,71360
+2907,9498,62197,81223,53879,71086,33382
+2908,52699
+2909,67137,22644,35513,75654,75348,10851,68343
+2910,82010,28525,32490,66497
+2911,5771,32390,43417,35353
+2912,42097,58813,60189
+2913,47085,24452
+2914,45263
+2915,6643
+2916,46790,5143,20189,24064
+2917,64424,52079,46124,43525,44072,45772,60081
+2918,61957,57570,38834,40500
+2919,72054,45284,10883,73736
+2920,32990,36136,39539,81373,51169
+2921,48372,21497,22875,25361
+2922,10497,79437,46155
+2923,68953,34563,65691,69961,73823,7769
+2924,54031,49797,58252,12891,61116
+2925,26115,61393,58139,11583,55328,30222
+2926,26251
+2927,25551,23791,54047,63909,19771
+2928,33935,31848,67704,39208
+2929,5458,74485,53493
+2930,58125
+2931,55659
+2932,71674,42683,52361,4494,18257
+2933,71212,19244,61522,38372
+2934,30801,75354,27267,81974
+2935,48408,17832,16463,55246,57396,68601
+2936,65597,1769,25988,6794,48549
+2937,33772,59140,47247
+2938,18771,36400,30342,16754
+2939,27272,53620,61160,62775,58746,72631,39681,2156,15288
+2940,28642,37641,30744,11129,53453
+2941,16893
+2942,1840,66865,40704,11759,16704
+2943,1871,81186
+2944,32956,34385,54394
+2945,15892,47290,72713,58706,42253
+2946,46692,9650
+2947,9610,9851,65987,24906,78996,8393,5150
+2948,10195,54326
+2949,4071,59201,11497,54803,29811,79658,35234,53663,20988
+2950,65317,44499,50587
+2951,35201,25280,21969,29801
+2952,33460,72718,1490
+2953,35757,18927,27266,14603
+2954,26425,68238,33941,12733,44442,11060,31854
+2955,22754
+2956,45528
+2957,42334,71342,43853,48336,52996,52092
+2958,37594,35760,78284,3730,35110,29675
+2959,43962,42701,63539,48496,28573,57361,53489
+2960,77915,29136,26117
+2961,21313
+2962,51174,39023
+2963,62514
+2964,36754,22904,5369,59605,27957
+2965,63719,69925
+2966,75888,17866,38319,27273
+2967,2359,36888
+2968,55792,38832
+2969,41272,9270,1140,66940
+2970,42393,24530,42184
+2971,36678,65151
+2972,30731,11518,2423,70369,19594,22454,54003
+2973,46144
+2974,12532,74038,12753,17350
+2975,70437,21461
+2976,17506,37484,31391,42014,14645,17576,2467
+2977,31808,76440
+2978,18233,46339,78654,75024
+2979,58385
+2980,31541,50085,24067,64262,16707,25569
+2981,77182,68513
+2982,79952,1311,3412,33237
+2983,53082,22050
+2984,24704,2280,8839,18384
+2985,38929,24132
+2986,52171,64388,24868
+2987,17528,70210,69102,45616,21155,59346
+2988,22941,32041,40558
+2989,1704,55385,76677
+2990,77580,51878,50291,39546
+2991,71079,56952,3143,50462
+2992,2956
+2993,41973,63186
+2994,73740,18651
+2995,43358,61459,45504,15472,75293,7722,14568,53782
+2996,31037
+2997,27031,1121,20439
+2998,29136,50759,80775,64299
+2999,57896,22255,31944,3865
+3000,47374
+3001,41199,78265,11909,19601,55958
+3002,17271,69495,37690,67477,31609,72704,22021,39979,28899,82063,13833,653,35909,10822
+3003,80552,78504
+3004,64389,59535,46588,72138,51264,33022,14204,66086,42732
+3005,5910,17029
+3006,13699,60358,1292
+3007,63769,32557,33714,18528
+3008,48416,948,37571,60276,55461,26080
+3009,70698,70908
+3010,73539,37136,7599,53359
+3011,36577
+3012,23039
+3013,57667,57910
+3014,6081
+3015,33533
+3016,59069,34313
+3017,21466,1769
+3018,23755
+3019,49104,64686,32849,40320,41760
+3020,38789,15604
+3021,48586,52801
+3022,21686,71193
+3023,4966,18614
+3024,38607
+3025,64060
+3026,66310,49869
+3027,25803,21564,70739,3366
+3028,38863,11980
+3029,50039,33258,53148,58771
+3030,35755
+3031,81336,3438,60814,32756
+3032,13975,44789,79669,5766,30460,43190,43382,59741
+3033,15374,48782,77219,74333
+3034,3589,52217
+3035,46319,36728
+3036,77331,64059
+3037,14230,5094,55382,35088
+3038,25189,65517
+3039,52465,52002,44698,45342,4575,23170,39429
+3040,9252,62416,26243,78805
+3041,32687,60291,35194
+3042,40650
+3043,30201,31123,28900,35003,11822,21942,63279,2655,78591,9089
+3044,21359,80180,5728
+3045,74045,40520,16684,31790,6032,16414,20498
+3046,74481,417,48675,76364,60800,12803
+3047,13045,63511
+3048,44064,2384
+3049,19907
+3050,55498,74069,33037
+3051,48587,30820,36844,70619,66133,9633,27734,6727,39084
+3052,9189,58961
+3053,25493
+3054,48352,11025,61498,72994,13428,42584,69656,50845
+3055,40926,29965,3727,29504,8203,79558,66016,30077
+3056,43256,38396,35884,16457,47308,278,16414
+3057,45936,26041
+3058,11958,59653,68495,77108,5002
+3059,37753,13924
+3060,54214,28480,14763
+3061,506,65202,64177
+3062,48930,72227,60819,44345,78621,53834,19601,38216,31176,58373
+3063,37048,74057,20586
+3064,147,50759,26370
+3065,65555,63174,66994,79892,15980
+3066,50212,15504,20675,50282
+3067,77519
+3068,36950,16585
+3069,16817,49304
+3070,42971,80358,22936,76934,61242,19692,59329,43807,8041
+3071,20342,18184,76238
+3072,23878
+3073,51747,79514,51056,16836,25375,23846
+3074,44422,78675,37293,53212,14842
+3075,59945,3499,50852,25748,50453
+3076,66671
+3077,18364,11948,3105,4100,54237
+3078,31186,57909,37409,18139
+3079,40789,11325,14694,6227,62762
+3080,2955,31175,53738,48558,40114
+3081,16726,32019
+3082,76868,61100,77128,3118
+3083,81397,58087,34499,19264
+3084,49939
+3085,34554,47493,66869,71088,28502,32500,3275
+3086,50999,6608,67607,50724,47043,61482,67239
+3087,8405,70681
+3088,38919,62907,68747,878,50716,77883
+3089,12565,72297,43166,73506,8016
+3090,20931,28119,75247,7643
+3091,20788
+3092,30201,82012,37004,35928,15531
+3093,5732,9828,37097
+3094,13053,75864,29179,56333,64400,71394
+3095,79899,19840,40854,53902,77472,24866,5818,48923
+3096,4301,63104,74931,53730,9632,47069,14011
+3097,8378,62061,65272,76314
+3098,72362,38451
+3099,53934,8913,6185,7062
+3100,16557,72713,45322,30537,9125,54934
+3101,73939,76603,13449,13942,79311
+3102,76796,81717,30334
+3103,8990,52259
+3104,18049
+3105,49877,11521,32539
+3106,77624,47823
+3107,12796,1661,78028,64874,30432,44868
+3108,43302,17235
+3109,36605
+3110,39182,31311,7407,47010,61994,14704,10004,49644
+3111,30954,64969,45394,27318,61417,24742
+3112,1173,53404,61058,10973,61188
+3113,39564,53359
+3114,71211,32992
+3115,47852,48224,65784,23238,73778,74887,32142
+3116,7619
+3117,82112,39874
+3118,20891
+3119,23904,61372,43211,68855,70039,64554,49274,4300
+3120,1336,58296,80999,28230
+3121,3087,66509,20752,18929,49718,4576
+3122,61484,23383,80201,40587,35257,101,64581,3490
+3123,34025,44908,77092,24548,47859,1250,33526,74396,39017
+3124,78326,78889
+3125,14315
+3126,1238,55585,1342
+3127,29982,14592,65096,21558,44198,53983,19991,6913,24049
+3128,40840,44105,56475,37127,40514
+3129,28779,53140,18422,72268,44264,397
+3130,43952,71564,21591,51665
+3131,25840,73474,4567,54526
+3132,58493,30918
+3133,41696
+3134,28732,30234,68746
+3135,59043,70720,60208,4148,17477,68739
+3136,79209
+3137,69786,17602,43683
+3138,57470,49129,21732,31968
+3139,45909,27290,9209,56759,68185,40937,76745,51203
+3140,77027,9302,67191,15274,11974
+3141,35784,27371
+3142,51144,7673,24532,51171
+3143,55434
+3144,71865
+3145,81918,29415,61633
+3146,64869
+3147,77003,37374,25702,78284,51447
+3148,37226,43395,37904,30262,9605,48084,1857,21685
+3149,68553,55919,65717
+3150,68802,31019,39640,6795,47373,34585
+3151,57584,53554,4971,29910,55771
+3152,1918,15204,54122,76877,15499
+3153,30467
+3154,15762,51265,38042,67370,49779
+3155,71908,78007,2782,43505,47841,24225,3933
+3156,17814,51078,7192,76334,5319,26526,48363
+3157,57994,39464
+3158,28033,79912,27215
+3159,20995
+3160,34764,24963,20735
+3161,34400,13237,33136
+3162,60018,67899,60897,73142,16660,11151
+3163,45186,11761,3565,78454,39614,58291
+3164,77603,82092,37686,32536,72242,51813,4050
+3165,81296
+3166,57701
+3167,19479,57990,73778,5781,54635,4576
+3168,78741
+3169,41139,71335
+3170,6081,10397
+3171,11673,37293,24569,55434,44265,75859
+3172,36444
+3173,39071,69221,57336,15835,77323,3090,24339,17568
+3174,54586,16231,27819
+3175,40246,51982,53266,14783
+3176,63629,35813,38872,36515,60621,34554,18521
+3177,46882
+3178,59027,36106,39807,65677,21790,42760
+3179,44335,39759,803
+3180,2281,43995,16244,41174,60814
+3181,3182,48184
+3182,42275
+3183,16377
+3184,24876,61506,24963
+3185,14307,65802,38941
+3186,63349,71118,74246,73168
+3187,52237
+3188,8757,6199,72131
+3189,24430,31459,3629
+3190,62707,24441,49142,52702,32468,24057
+3191,52258,72923,71552,36273,62877,14888
+3192,14445
+3193,80110,18451,13404,73371
+3194,24343,25829
+3195,61401,8638
+3196,35190,5738,38212,28773
+3197,232,33873,37275,63109,66541,25175
+3198,51996
+3199,50343,22879,78721,6320
+3200,50764
+3201,37467,59603,5200,48149
+3202,40233,35457,37162,79322,26660,48924,8818
+3203,51932,45577,76133,23541,56148,51288,1122
+3204,69389,24251,71129,34685
+3205,33254,74603,48694
+3206,75809,80562
+3207,817,60413,72056
+3208,78838,18220
+3209,76412,49265,4875,75680,22579
+3210,44238,81688,23495,13011,31680
+3211,45304,741,30031,16075,63533,59366,65344,69698
+3212,16379,6067,4701,3,15954
+3213,10801,43875
+3214,33749,47879,32056,70571,66461,72595,41389
+3215,51750,66210,61411,23221
+3216,13434,42700,46091,12122,79431,78273,2514
+3217,31414,33410,2446
+3218,34467
+3219,69220,65543,26533,37986,61949
+3220,17179,36810
+3221,40749,8448
+3222,56759
+3223,78246,20643,52566,3723
+3224,33797,81934,64515,58982
+3225,7860
+3226,29006,68730
+3227,36575,67533,22054
+3228,45795,63120,50460,5830
+3229,19986,6021,68418,38261
+3230,59843,78209,81708
+3231,30201,6602,8801,15771
+3232,74974,37817
+3233,72049,3154,59257,73924,13543,71817,11769
+3234,69910,80359
+3235,80991,75700,34309,56350,35614,67141
+3236,22372,31848,39169,64713,58264,73211,40559,36410,76900
+3237,57446,74821,20884,33067,69886
+3238,39730,51327,70418,33236
+3239,34102
+3240,71300,6809,70581,65301,11122
+3241,77551
+3242,18159,75957,610
+3243,14158
+3244,71662,48539,32177,54790,57486,29422
+3245,62869
+3246,26279,18652,25988,65728
+3247,72114,4333,41614,4724,68281,28971
+3248,64714,9076,73428,38908,51149
+3249,72118,59930
+3250,40232,13238,2053
+3251,5115
+3252,35902,71023,19776
+3253,24128,19637,64407,55530,33273,33928
+3254,4937,56930,70565
+3255,34912,65436,27574,29865,50278
+3256,26267,72421,25247
+3257,12769,6370,73774,852
+3258,43326,79794,19004,20853
+3259,71718,49466,42380,37030
+3260,12831,40272
+3261,7256
+3262,48292,59529,824
+3263,25950,6945
+3264,19090,81851,17325
+3265,34270,40527,63296
+3266,28292,51630
+3267,548,73739,429,27625,58323,9355,36009,53072
+3268,47454,48766,5,48959,46974,78517
+3269,72947,80171,49518,23530,15492,10610,56605,43553
+3270,7041,32224,75976
+3271,52172,59708,4303,64459
+3272,74672,12384,54767,26001,7407,31152,39688,8433
+3273,13605,50174,29109,60907,7072,3306,65099
+3274,22271
+3275,34243,34570,29939,3454,21901,56211,35870,73836
+3276,43836,264,11306,65993
+3277,10476,36989,48499,71717
+3278,53563,75880
+3279,27054,51967,62552,37756,8292,77024
+3280,79165,64399,66195,59512,40794,40819,77146
+3281,56271,53119,76243,64141
+3282,81883,40858
+3283,23133,11589,69436,80308,49178,45173
+3284,5799
+3285,56647,3850,35534,68672,43341,60770,67298
+3286,63987,56482,10137,34927
+3287,59923,47295,60861
+3288,67287,58070,66823,80312
+3289,37996,20817
+3290,38109,50209,50394
+3291,1340,586,36960,52772,39731,57381
+3292,53104,5508,9991
+3293,60631,7824,51171
+3294,75507,6031,48993,41946
+3295,33150,19077,20746,25691,43494
+3296,29576,66281,52242,6836,81311,11079,46534,5286
+3297,54472,46664,72660,51256,53632
+3298,53747,48763,6234,72217,39085,70997
+3299,76408,13642,13362,41192,73158
+3300,58476,27149,33075,51814,59026,14207
+3301,51863
+3302,27568,44233,39882
+3303,55366,43383,46987,55651,35503
+3304,58439,55612,51529,74951,12055,41227,7405,57718,68545,54014
+3305,15962
+3306,56318
+3307,45228,29151,51006
+3308,1669,55565,5654,40566,68790,47303,23251
+3309,13071,5684,39477,41083,33336
+3310,67927,56769,53046,34377
+3311,42851,66244,35757,78012
+3312,76140,25857,4388
+3313,49210,20467
+3314,25675,79083,9312,36526,37460,55479,41090
+3315,71042,6479
+3316,80277,72056,69645
+3317,45831,63334,42199,15929,70925
+3318,58644,41615,50451,53715
+3319,10497,76922,3857,52285
+3320,27261,41458,63642,57938
+3321,9153,65985,18973,62414,56263
+3322,6807,73635,71014
+3323,19115,77944,3804,48908,2955,34512,51066
+3324,76874,73762,39406
+3325,34988,6871,25842
+3326,37561,53905,15397,70431,53971
+3327,20612,49481,46870,19692,18413,75919
+3328,50424,1609,769,13099
+3329,30339,81281,45049,55259
+3330,6514
+3331,26746,14004,65677
+3332,19181,43278,59408
+3333,3554
+3334,20942,12729,47551,54893
+3335,53167,44357,3378,41455,56697
+3336,79115,11999,13000,55692
+3337,49909,62010,50209,33084,22672
+3338,10543,30282,3624,58987,50613,29922,77078
+3339,33440,48449,62520
+3340,23610,62001,69871,23986,46176,48989,69794,61261
+3341,70013,23835
+3342,30901
+3343,57455,71502,57171,13160,8490
+3344,49368,28143,27176,16432
+3345,65122
+3346,43374
+3347,63221,69175,1388,61064,62368
+3348,75581,7577,53241,25509,58860
+3349,64172,65344
+3350,1516,45628,25298
+3351,32208,12256
+3352,75966,17060,362
+3353,22889
+3354,77922,21436
+3355,62513,62495
+3356,50088,57130
+3357,60491,33850,18490,1297,21575
+3358,64842,72498,54267
+3359,3924,19467,14862,31787
+3360,39086,70176,14946,20166
+3361,25820,6469,62116
+3362,42035,24665,48399
+3363,46104,16222,15939,3390
+3364,56642
+3365,53454,65522,11541,60478
+3366,74502,45021,4432
+3367,17920,43348,57604,49466,36362,18745,25872
+3368,56313
+3369,12277,55370,82112
+3370,56062,43511,66169
+3371,46998,48141,75438,46680,27523,4622,48295,42061
+3372,61897,13005,76148,52394,50833
+3373,80308,9858
+3374,2123,6552
+3375,2031
+3376,72255,41835,45447,45451,33650,20849
+3377,27500
+3378,64850,2601
+3379,36109
+3380,30436,50566,18014,1361,24833
+3381,21746,77119,56395
+3382,30849,50093
+3383,64693,67740
+3384,49937,59867
+3385,31202,20582,29600
+3386,506,18380,79329,67935
+3387,34944,74446,15741
+3388,42631,75011,46842,26478,38132
+3389,49493,7364,4057,23112,80262,17161,33749
+3390,27030,62213,67017,70949,21292,42916,3626
+3391,41636,6097,25194
+3392,63308
+3393,53427,3988,17328
+3394,19190,35510,81974
+3395,10604,38945,78509,55053,53861,54693,23370,25465,67121,39986,1882
+3396,12755,39571
+3397,57171,1095,74730,21673
+3398,46068,28601
+3399,63639,32140
+3400,14486,80968,71865
+3401,26830,24347,57701
+3402,8468,51128,49722
+3403,72079,32256,22793,926
+3404,42182,77959
+3405,8002,37218,79147
+3406,51588,59435,3943,28876,34882,65120
+3407,37629,63257,18863,49136,22500,12720,816,20996
+3408,23031,71321
+3409,40175
+3410,3379
+3411,57100,71731,26388,18249,48162,38548,35075,22469
+3412,14255
+3413,57375,6646
+3414,38799,62630
+3415,55906,69240,1164,71723,41729
+3416,42567,9467,61428,35163
+3417,38260,52382,43919,46581,65219,48792
+3418,46149,45738,30377,11159,38483,26526,33353,40428
+3419,7357,27885
+3420,63860
+3421,10507,71678
+3422,46017,40794,35030,13280,81719,43979
+3423,64879,24113,28699,67497,25052
+3424,78803,19091,65277,8614,78067,4071
+3425,80976,12251,77474,41711,40800
+3426,24938,69463,65004,19264,78124,81539,60968,26511,20904
+3427,10822
+3428,14511,57043,40701,59747,1372,78177,3474,58106
+3429,13519,70823,1147,46143,33461
+3430,65237,24001,61061,21638,59819,24064,26597,26169
+3431,43436,42243,45402,12187
+3432,17996,61417,5156,58017,6815
+3433,79729,47977
+3434,29775
+3435,49748,58002,74262,59449
+3436,10096,64791
+3437,13397,28482
+3438,56057
+3439,36475,74171,36109,60371,29278
+3440,43776
+3441,27431,54173,16232,67253
+3442,65678,71677,60469,19412,27454,3571,65107,41004
+3443,48619,2120
+3444,15115
+3445,10486,4557,45236
+3446,41860
+3447,23586
+3448,64546,67827
+3449,42898,65841,26201,37381,7415
+3450,53404,44806,36494,18714
+3451,68739,13888
+3452,76164,52308,28569,27626,81456
+3453,64443,50362,3292,12738,68202,76949,73017
+3454,46844,344,41137,74225
+3455,34463
+3456,65899,25533
+3457,64138,21204,80177
+3458,41412,14661,11747,24006
+3459,4302
+3460,10173
+3461,13968,33286
+3462,28620,33011,77986,22154,81086,39260,18469
+3463,60110
+3464,77200,7142,21405,30002,62874
+3465,80359,68830,20227
+3466,21326,71994
+3467,13882,61912
+3468,70837,73478,35620,55824,6286,69689,79499,30548
+3469,33373
+3470,79285,25913,14151,65151
+3471,28105,1060,14662,11007,32157
+3472,21523,27994,34773,69952,53505,36183
+3473,51971,49087
+3474,78851,46900,2547,3129,22430,75078
+3475,41073
+3476,69695,32629,75581,75810
+3477,78924
+3478,40676,49593,12804,17821
+3479,6522,974,49367,27243,65274,47741
+3480,23129
+3481,8843
+3482,16140,46732,46632
+3483,57353,26392,76130,18115,33633
+3484,61165,28297,20954,17477,47617
+3485,23505,12687,5943,55862
+3486,27051,9824,31186
+3487,26084,44444,32293
+3488,63333,7699
+3489,23808
+3490,65030,1334,42832
+3491,50224,46923,73046
+3492,26503,52229
+3493,38111,31462,20227,57777,61379,81145,1890
+3494,2796
+3495,27016
+3496,44281,13457,49229,70319,63547,77195,29458,39974
+3497,57349,68177,44598,19098,61496,53877,69841,22941,51826
+3498,31292
+3499,65272,20039,4356
+3500,81741,42377,20624
+3501,41509,53113,69056,46672
+3502,5417,2224,76201,64365
+3503,29092,42671,5349,56494,45868,38527,55783,74660
+3504,3226,4121,52460
+3505,15638,33119
+3506,74371
+3507,1315,36473,29729
+3508,43992,21670
+3509,81756
+3510,754,77573,59774,24600,20876,23247,74675
+3511,27036,67606,43703,77256,38973,17447,71152
+3512,58370,44169
+3513,26827
+3514,61455
+3515,63449,32029,15558,45667,3600,62674,38780,55382,23278,28296,31908
+3516,1807,54232,30353
+3517,77135,54800,80847
+3518,902,8944,63508,7992,36535,70318,43188,41639
+3519,77425
+3520,26819,24445,45465
+3521,2441,52035,61515,77836
+3522,35536,26721,22171,67691,2820,38138,14524
+3523,71906
+3524,8270,27136,67517,45337,31862
+3525,77650,20975,33288
+3526,77189
+3527,74476,75268,47312
+3528,43399,1356
+3529,41001,29911
+3530,28020
+3531,17485,3342,26035,23129,66512
+3532,20934,75114,80813,50049,17785,78160,62241,47344,74063,34654,28390,27849,296
+3533,44905,71820,67988,71439
+3534,27023,64107,39208,75008,41484,74302,64766,54326,69844
+3535,40603,67672
+3536,69202,1083
+3537,78802,64134,72848,79299,60995,74051
+3538,67273
+3539,38917,62604,10431,50838,24745,60209
+3540,16163,45853,17401,5080,22665,71888
+3541,78170,23707,6760,57573,43754,29506
+3542,23562,55019,76830,82154,12251,70919
+3543,13211,22483,80380,2806,78848,33954,20294
+3544,70347,47613
+3545,37225
+3546,51689,43274,26124,54631,49156,63644
+3547,73450,19234,72134,5779
+3548,12073,82063
+3549,76527,79263,10371
+3550,31715,8956,37393,17786
+3551,80159,13698,70348,3801
+3552,79850
+3553,45096,55062,32029,61053,37819
+3554,28675
+3555,63451,48308,34714,16903
+3556,49217,50630,29654,42424,42749,80664,44495,44416
+3557,49075,11271
+3558,2533,36612,11153,55677,28890
+3559,79664
+3560,33721
+3561,74089,58450,29958
+3562,11454,22865
+3563,27532,3894,51028,312,19409,31073,65050
+3564,55242,79450
+3565,80242,39182
+3566,19745,11619,13439,70744,34387,79633
+3567,68542,14316,4299,6068,57734,61068
+3568,24100,58992
+3569,38622,29635,16997,80071,60492,4632,28679,4178
+3570,56009,18399,14832,40566,26156,49610
+3571,2905
+3572,77449
+3573,58027,28212
+3574,58531
+3575,6867,19941,51087,23348,23630
+3576,73667,22499
+3577,61835,76238,57103,45455,43665
+3578,8545,52288,47651
+3579,78183,37630,82031
+3580,45976,45384
+3581,11942,81402,70079,42225,69183
+3582,34606,34418,42529,26478,54694
+3583,18278,80203
+3584,28045,57073,44285,10762,60921
+3585,13598,74968,22675,38094,59546,65433
+3586,30224,12930,4457,65083,76244,6278
+3587,67918,70481,71825,13479
+3588,43192
+3589,65760
+3590,25182,38849,28090
+3591,59408
+3592,74221,31969,47313,15208
+3593,43340,26370,65024,7876,27603
+3594,64521,26111,68490,11113,6140,45787
+3595,3745,48314
+3596,49082,42118,57362,1493,59871
+3597,36220,53091,63044,66843,32499,77608,22738
+3598,52927,18167,75983,59084
+3599,53268,66277,18669,79228,62741,69376,5249,70613,82176
+3600,27545,31298
+3601,60278,2127,50993
+3602,14596,12669,48858
+3603,51827,6463,9169,10268,62408,47898,40850,45928,67175
+3604,42487
+3605,27733
+3606,47150,68946,5784
+3607,37730,31840,50433,30533
+3608,61141,60611,14629,10645
+3609,70908,22987
+3610,1037,17284,18531
+3611,62231,15028,35336,82060,13827,60882,15288
+3612,4744,43639,54582
+3613,79183,71668,61680,51337,81007
+3614,38614,34764
+3615,3135,21020
+3616,57283,9643,9322,76547,68242,21091
+3617,32667,3312,9545,51378,59832,78861,51489,9821
+3618,44655,30901
+3619,37300,8174,44673
+3620,8576
+3621,6457,14596,30286
+3622,39234
+3623,15382,42578,75574,56842,28299
+3624,44940,52850
+3625,36634,64427,34862,7050
+3626,38215
+3627,26328,49192,12470,50401,67285
+3628,16012,41813,37799
+3629,24669,36149
+3630,73296,52202,49522,67770
+3631,3991,32148,19280,33503,11830
+3632,20440,21351,30752,45601,35896,28942
+3633,24812,71854
+3634,75005,55914
+3635,25517,43533,25351,54438
+3636,27321,4623
+3637,22059
+3638,75680,73210,22546,74485,31086
+3639,54197,79559
+3640,449,27192,55132
+3641,77966,18797
+3642,27355
+3643,63877,18273
+3644,78824,50522,45518
+3645,14627,10287,15103,63531
+3646,37538,18545,38218,18357,73488
+3647,75695,55422,51378,40939
+3648,10096,69845,43905,9213,3928,70851,66454
+3649,62612
+3650,14716,11204,48800,69933,25333,35322
+3651,48752,27269
+3652,67067,44044,55407,44748,62016
+3653,72166,33441,70224,80498
+3654,47158
+3655,20233
+3656,354,33036,51868,7170
+3657,2381,31733,37194,42199,46537,47185,75477,78182,9207
+3658,58404
+3659,76191
+3660,19763,46161,71705,37109
+3661,4000,62819,79682,33485,31864,71437
+3662,77362
+3663,15460,81522,80118
+3664,42309,79964,10351,70906,68039
+3665,40697,7894,69239,25467,33854,75011,1020
+3666,57063
+3667,68084
+3668,47352,75265,62775,77317,72803,61634,15964,54313
+3669,6801
+3670,2315,40956,14966,35617,60554,34274,30378,75083,57188
+3671,72188,727
+3672,61985,22422,27870
+3673,58016,40240
+3674,62248
+3675,22990,51507,76429,37662
+3676,35317,23856,68101,73508
+3677,2261,15763,63637
+3678,20118
+3679,18997,77812
+3680,35397,46789,53190,986,43141
+3681,12903,37975,53914,74175,56592,68167
+3682,28059,38178,68533
+3683,39653,69910,27533,69264
+3684,29000,54114,9277,20712
+3685,53971,26173,24174,69598,20675,67117,33322
+3686,42932
+3687,26862
+3688,65068,25837,60232,10100
+3689,25584
+3690,42165,274,66483
+3691,31792,43437
+3692,63538
+3693,45594,46650,2002,29944,63674
+3694,60074,40985,33798
+3695,78017,64416,36821,16286,33679
+3696,3578
+3697,13112,77617
+3698,67918,55361,49401,79148,80021,33917
+3699,36257
+3700,34794
+3701,46721,63159,40557,53691,20901,41610,32724,47862,20087
+3702,81845,56437,10011,23573,55721,25715,63946,22296,13730,43436,45781
+3703,12894,2249,64993,27894
+3704,66330
+3705,55717
+3706,80359
+3707,71368,29719,67058,30689,26560,12784
+3708,76246,78721
+3709,61130,27401,8092,70015,57530,74513,28682,40641
+3710,75134,66754,410
+3711,36109
+3712,24758
+3713,58905,38071,43784,66027
+3714,45391,7952,71454,70398,81231,13448,26805,28603,32125,53085
+3715,13081
+3716,4001
+3717,79148,45257
+3718,51248
+3719,24220
+3720,72620
+3721,22009,82162,6810,48889,15300,25390
+3722,67344,73921,59233,11894,72031
+3723,40928,20932
+3724,5871,78233,29196
+3725,57218,73068,74781,49826
+3726,51098
+3727,7572,44025,40358,5986
+3728,38172,569,47555,62853
+3729,39741,58840,53104
+3730,27908,60950,11663
+3731,10597,23737,53369,81486
+3732,45341,73116,25439
+3733,3946,41641
+3734,12187,80909,46717,44082
+3735,46370,14642,45579,61104
+3736,40930,79992,2040,52090,45005,6479
+3737,38480,40948,44711,34183
+3738,62696,5745,49211,43251,59465,2688
+3739,68158,59788
+3740,15572,27850,52090,26245,42766
+3741,73309
+3742,16107,81339,35216
+3743,24708,43573,79495,50423,61134,12802
+3744,12007,25991
+3745,77889,39572
+3746,49893,16811,14891
+3747,8100,30410
+3748,464,14367,31576
+3749,55613
+3750,33888,41568
+3751,67972,35931,1060,45022,30446
+3752,32084,78795,13739,35993,4001,8620
+3753,81610,65432
+3754,74096,52172,65556,54838
+3755,58686,2319,6858,66844,63386,35805,3445,75886,50333
+3756,7466,42581,24654,35640,13275
+3757,47075
+3758,17257,9276
+3759,76753
+3760,38144,81740
+3761,13502
+3762,44983,67047,9996,64440
+3763,65594,73577,73834
+3764,474,50262,64844
+3765,11980,68893,16280,73638
+3766,39524
+3767,20866,37083,82016
+3768,25837,39221,35285,58710
+3769,41701,18059,16398,24677,63108,45536,6475,80583,68657
+3770,26762,12514,41043
+3771,75198,45007
+3772,27999
+3773,31393,53577
+3774,23964
+3775,15986,56181
+3776,18371,48129,24742
+3777,20223,65003,80965
+3778,17940,18525
+3779,50116,64073,33102,30512,8928,11164
+3780,52651,1247,19908,11483,60128,75665
+3781,70055
+3782,31728,49850,43187
+3783,49717,28536,24802,57603,16463
+3784,70639
+3785,37434,72483,47140
+3786,27550,30022,29059,7196,20269
+3787,13527,71763,11817,17864
+3788,479,34204,66035
+3789,80754,32064,69077,9247,67979,78066,610
+3790,30390,9991
+3791,57786,67300,24103,41565
+3792,32926,43627,70864,49786,77534
+3793,21378,9018,21332,32189,75708,52144,65777,41657,8861,57579
+3794,63673,36770,68717
+3795,22904,76239
+3796,42444,27090
+3797,29222,33410,15011,75187,16979,70005,16467
+3798,63481,76628
+3799,41627,54830
+3800,72762,25624,48645,4311
+3801,17535,30362,14458,26022
+3802,22299
+3803,4376
+3804,20409
+3805,59385,78366,14719,70538,12151,39561
+3806,8969
+3807,53459
+3808,59605,52529
+3809,36876,5483,55759,60775,22201
+3810,16833,73980,27622,67952,48742,9718
+3811,42287,69858,29836,21463,11212,47266,49194
+3812,26402,72108,15648,20549,7242,47287
+3813,24485,33410,75669,58062
+3814,63254
+3815,22410
+3816,13686,20881,77252,11594,31609
+3817,20592,30039,599,5784,42247
+3818,46469,64532,64880,63596
+3819,54888,52132,5322,61493,45302,74975,10101,5344
+3820,55261,51441,43216,927,23499,35832,32511
+3821,50043,1207,77140,17081
+3822,71058,21479,41796,66776
+3823,32395,63680,7780,81993,39364,44156
+3824,25209
+3825,1275,41127,35635,75174
+3826,57872,65208,29423,46294
+3827,19162,70029
+3828,52896,2600,55080,32599
+3829,76966,62857,37387,43964
+3830,14466,73359,11451,40370,37033
+3831,49010,66173,24603,73901,17238
+3832,54159,78652,37432
+3833,21996,71893,28021,26749
+3834,47146,73779,19980,41055,54464,2543
+3835,81575,68892,68393,7243
+3836,46150,81476,5597,42953,71048
+3837,20670,77119,6642
+3838,35256,64345,24654,61035
+3839,72877,71309,5642,22773
+3840,36745,18330
+3841,31330,17569,8450,57112
+3842,40243,17340
+3843,60916,71353,50,63656,74255,51754,46275,2989,21526
+3844,26581,16449,17975
+3845,23002,80943
+3846,47487,48459,77123,8796,6105,27484,1365
+3847,31585
+3848,52209,34354
+3849,1926
+3850,47454,43185,6572,36635,68640,3509
+3851,71850
+3852,6342
+3853,37559
+3854,25039,25262
+3855,19676,69481,33663,46897,71124,75301,42776,21604,66101,35828,18760,25186
+3856,63506,13739,15307
+3857,63875,75935,56635,44641
+3858,57640
+3859,77987,4433
+3860,79780
+3861,70176,10711,24997,71554,59739,53338,76408
+3862,65165,81147,24750,42089,81830,36017,23312
+3863,5833,28864,81376,27454,17975,75145,19307,75812,12899
+3864,52318,72074,21025,72981,17496,53117,1940,62978
+3865,20377,56825,59676,52641,48471,53701
+3866,77845,63513,62907
+3867,17224,30174,43900,39918
+3868,33513,80405,57552,13596,50840,17093,7580
+3869,6759,64573,691
+3870,6680,80471
+3871,3290,19533,26985,35473,31015,61384,2742,59712
+3872,66324,47738,36214,61890,71927,78593,50492,55194
+3873,32756,4165,6488,40477,67765,60458,81934,66426
+3874,76599,61407,43316,53214,7891
+3875,63230,31012
+3876,14466,52785,71773
+3877,7612,70565
+3878,6670,43281
+3879,50910,26962,73455,73016,73125,32357,60842,79366,15916
+3880,25742
+3881,68512,19314,47522,9182,52436
+3882,1867,61137,15927,48060,22423
+3883,14266
+3884,3388
+3885,55322,6560
+3886,61810,31726,3838,78928
+3887,7570,13728
+3888,76164,47749,48526,41663
+3889,35048,15875,55529,58226,71902,28242
+3890,14966,34336
+3891,23050,24654,74728,58125,64413,35137,26068,52365
+3892,41344,47334,50716,41793,72166
+3893,39001,48675,63724,52924,48307
+3894,47656,14957
+3895,23450
+3896,74299,57250,45681,14928,14534,47376,28508
+3897,5268,4731,81540,16690,50404,43898,77038,32524
+3898,20654,67886
+3899,51028
+3900,6172,1630,67235,44552,12523,81932
+3901,10347,21974
+3902,81378,8862
+3903,32524,81396,70828
+3904,57069,6013,78104,70443,47165
+3905,72431,7163,65027,52128,80159,12390
+3906,28485,63043,2256,65579,14511,6348,66864,10310,76853,63928,7518
+3907,66425,21183,34801,34816,31955
+3908,51105,43804,53320,14769
+3909,23765,20809
+3910,39294,45910,30544,6941,24039
+3911,68014,76612,15752
+3912,47996,38659
+3913,69073,54575
+3914,71296,41053,3591
+3915,14163,34978,63859,49745,60254
+3916,22024,27300
+3917,4298,75844
+3918,26161,29018,66384,35582,63180,68218,20905,24295
+3919,34591,19618
+3920,14856,5432,38155,65691
+3921,40278,9999,81852,58073
+3922,13146,31840,53706
+3923,2083,46451,14035,12000,81867,63317
+3924,68130,62108
+3925,15244,51208
+3926,42599,56794,57215,33413,18997,77895
+3927,4137
+3928,17216,71800
+3929,7191
+3930,69436
+3931,5224,77097,18574
+3932,57159
+3933,22073,54227,61453,27591,55804
+3934,71870,16412,63923,3949
+3935,52670,41953,67603
+3936,62161,3851
+3937,8300,5226,53936,61543,29350
+3938,16225,34452,6038
+3939,48477,38347,42101,4186,78682,6145,13207,64349,68915,43895,74440
+3940,32235,4139,58569,66658,77784,32377
+3941,53949,52510,31506,8499,60079,7394,32217
+3942,44773
+3943,54171,71494,68848
+3944,81924
+3945,13450,75349,4247,61906,46480
+3946,46427
+3947,68220
+3948,5075,4130,71109,14655,69247,27137,69423
+3949,21576
+3950,4106,49245,61182,34283
+3951,59692,59346,74959,33339,51183,31409
+3952,56719,59736,73513,18221
+3953,62071,68223,65281,62165
+3954,29791
+3955,48099,76451,7314,13489
+3956,3243,57587,79023
+3957,6760,8777,13385,69026,37669,7023,41303
+3958,63994,69132,17189,28109,42132,33937,23136
+3959,19120,10897,40204,51583,74719,37786,42945,51538
+3960,41568,3379,42314,53720,54059
+3961,33896,30671,64398
+3962,64066,68184
+3963,52526,22964
+3964,31918
+3965,45439,4773
+3966,42462,68063,36362,58911,44890,38905
+3967,23237,75071,13015,57846,34775,55644
+3968,22146
+3969,20345
+3970,5855,77794,29856,80304
+3971,46164,51868,29094,76919
+3972,7208,4337,43286,25280
+3973,41686,9136
+3974,73293,48823,26312,7013
+3975,79256,23642,16913
+3976,72146,78197,53667,66689,20795
+3977,29336
+3978,69872,53456,63940,35208,28134,46579
+3979,13008,68062,10177,26165,59320
+3980,21563,2527,27364,1921
+3981,38382,73887,53557,52878
+3982,63307
+3983,27781,60009,32567,75283,53260,59157
+3984,50545
+3985,37939,78813,13035,9475,28087
+3986,16340,44066,31161,33998,59791,10291
+3987,49932,16653
+3988,63286,10373,59928,34392
+3989,61575
+3990,48817,78946,5998,29094
+3991,69630,39086,47625
+3992,75669,31015
+3993,75517,27064,24813
+3994,5068,50205,57378,6090
+3995,33203,52472,31395,53264,20434
+3996,60228,42804,60218,50326
+3997,31719,59464
+3998,41898,43000,20741
+3999,34252,77145
+4000,69070,77422
+4001,52699
+4002,26667,9517
+4003,11992
+4004,9276,37494
+4005,30758,65398,3447
+4006,43172
+4007,38086,46685,69409,77479,37807
+4008,28156,35616,28727,68629,45883,6556,52269,42508,65329,77712,74963
+4009,57827,70954,72198,31626,50801,43188,58863
+4010,50253,27782,34775
+4011,31459
+4012,64306,29870,63993,73733,77225
+4013,24655,43065,18919
+4014,42726,77920
+4015,73719
+4016,49505
+4017,9297
+4018,52615,80051,38646,34535,1905,58162,32289,21700
+4019,33986,19984,63447,79982
+4020,18782,57539,16548,57638,58964,19942,30713
+4021,57488,26746,11761,66999,25774,32557
+4022,47144,41077,29532,77364,28087,37325
+4023,10561
+4024,21868,31742,9647,53962,44370
+4025,65809,61675,64503
+4026,25683,47984,5271,53098,29068,52586
+4027,3159
+4028,25823,71084,41191,62460,80433,81594
+4029,12811,57054
+4030,58291
+4031,49458,48515,5465,18881
+4032,29689
+4033,41407
+4034,22751,70654,69213,21859
+4035,61138
+4036,48058,5781,38261
+4037,63377,50287,69783,31789,58805
+4038,48331
+4039,73332,47523
+4040,81782,34755
+4041,68987,39899,72620
+4042,39041,35077,8992,58089,68271
+4043,65951,25630,78369,7503,60660
+4044,24358,25791,57298,55319
+4045,30422,47292,80955,15874,78309
+4046,40844,68897,59169,16650,78509,19659,79505,68180,3641
+4047,42747,725
+4048,19462,42083,24785
+4049,55987,78910
+4050,7558,57444
+4051,53905,14040,32724,15422,39197
+4052,19459,64943,12250,429
+4053,77038,57981,13295,47005,8160
+4054,42804,17818,76324
+4055,66660
+4056,74334,15954
+4057,68628,45048,57273,80040,81132,21403
+4058,58867,57148,22611,58441,7643
+4059,1012,40750,21086,33986,39429
+4060,54873,55468,49154
+4061,51512,8224,4903
+4062,7359,52621,45950
+4063,71122,5187,48529,45541,26720,4944,35737,3450
+4064,6016,36030,58067,53543
+4065,51603
+4066,15445
+4067,28518,77198
+4068,76385,34349,7803,68066,27252,13853
+4069,65640,5491,78765,52413,63543,25806
+4070,15614,40752
+4071,43473,72838
+4072,1375
+4073,1945,23576
+4074,48314,64345,41123,554,18658,28033,72498
+4075,64124
+4076,45624,81180
+4077,68474,36280,69335,75849
+4078,57840,31898
+4079,10258
+4080,42116,34857,4639,67921,14284,10132
+4081,26254,22340,57884,17721
+4082,7900,64206,42272,45574,77949,75358
+4083,67257,58471,30978,36645
+4084,36506,44631
+4085,65802
+4086,36467,14859,66366,65453,77055,19196,22713
+4087,51775,26123,66682,69815,68335,71522,18764
+4088,42843,50193
+4089,51521,30014
+4090,33636,11081,57722,70800,575
+4091,24413,56629
+4092,68271,2434,29992,763,79851,63931,10734
+4093,77922,11860,3655
+4094,11718
+4095,53531,27744
+4096,50138,72485,77402,59849,1772
+4097,68638
+4098,67358,61149,18398,40378
+4099,32080,75520,7899,75458
+4100,9742,1143,76446,74125,32646,32829
+4101,51520,27718,10716,31627,77268
+4102,20857,25484,40449,7179,16602,49295
+4103,75280,60626,68493,24671,14787
+4104,57398,2732,17255,60890
+4105,68493
+4106,62855,25277,73357
+4107,43188,13306,56578,8496,12546,76174
+4108,44878,49346
+4109,43205
+4110,16308
+4111,69481
+4112,30110
+4113,64853,15732,3136,17627
+4114,44332,30193,12008
+4115,33354,50795,43408,9072
+4116,26831,2734,59522,73400
+4117,9427,38540
+4118,13927,68108,38190
+4119,59830,64748,42157,78007,16879
+4120,81158,67748,79774
+4121,80884,37556
+4122,40012,8903,44869,14099,46168,36207,76531
+4123,80282,22939,72188,10192
+4124,18184,10003,26716
+4125,56835
+4126,39650,29667,74587,27186,41872,49585
+4127,32516,35362,16885,20768
+4128,77667,21707,8627,48470,14261
+4129,77175,36535,67184,47620,43272,32899,11471,51304,3633
+4130,9263
+4131,754,11618,38782
+4132,67552,1333,46873,69934,8406
+4133,20749,74890,7359,52889,15622
+4134,50904,57079
+4135,46880,19525,54045,42878,40135,60087,51330
+4136,27356,37503,34131,60920,82089,79468
+4137,56070,27410
+4138,81585,56581,23410,60554,75284
+4139,59725
+4140,81878,76412,23807
+4141,47054,25926
+4142,954,44512,52645
+4143,14207
+4144,38403,58967,13082,52545,47682,59083,67006
+4145,63126,70881,81860,82135,30076,61083,34448,32827
+4146,54635,53286,41793,56862,78288,56009,60680,743,69552,70611,56463
+4147,39917,81116,35772,68273,16500
+4148,67324,59306
+4149,74224
+4150,66053
+4151,2627,46993,72572
+4152,49788,12567,82005,81628,10576,18654,47452
+4153,49463,18495,25803,31903,23375
+4154,3559
+4155,64537,13111
+4156,32902,74880,5152
+4157,79767,25901,26477
+4158,78101,34352,35553
+4159,43440,38974,21561
+4160,47012,14270,47706,63815,70376,27865
+4161,43430,63670,45942,3396
+4162,12189
+4163,44828,42288,5129,54078
+4164,19344,38840,54658,56624,38001
+4165,17681
+4166,40752,70402,30038,20955,2934,38152,6783
+4167,17860,64051,18454,79419,43879
+4168,58311,72668,12719
+4169,63336,62422
+4170,76756,57974
+4171,9761,57748,32956,69453,18060,6788,27383
+4172,25741,66880
+4173,2535,9208,13325
+4174,6411,14645,80768,35847,48999,11276
+4175,618
+4176,23294,49428,40537
+4177,10492,70041
+4178,69293
+4179,38814,51518,4923,61001,67728
+4180,3498
+4181,44921,890,53019,49363
+4182,78678,9824,38734,30567,68772,66210,73319
+4183,74460
+4184,11111,2806,10608,40816
+4185,59656,51274
+4186,29017
+4187,56031,39710,58444,45669
+4188,56770,50893,35115,61346,74916,49900,14663,73234,50656,47042,60878
+4189,51343,7281,6752,34035,43424,58815,32517,36929,1340
+4190,173,14127,77335,80578
+4191,10972,78143,36572,9177,7661,79564,45730,18369,30603
+4192,55169,62328,57434,56303,25343
+4193,19458,74856,45579,54007
+4194,9989,25971,43866,81897,81935,81942,29261,69833,40746
+4195,27060,24975,5884,33155,64945,10400
+4196,20582,17199,60850
+4197,67112,14498,4834,1622
+4198,55396,1747,75475,60475,11677
+4199,18490,16973,54092
+4200,20597,74103,12795
+4201,44656
+4202,54011,58994,62442,55922,43751,62288,49965,70031,13290,10957
+4203,5509,38942,65521,3875,19735,77135
+4204,73224,44953
+4205,44973,49157,26009,2937,18748,44772,13338,52802,38877
+4206,4950,3764,52891
+4207,58658,66907,29449,24451,6115,81210
+4208,44539,69112,23142,75598,73548,60284
+4209,62844,4301,20239,4186,1826,20738
+4210,70135,43599,70211,61814,39883
+4211,37717,24711
+4212,25942,76840,25990,37118,48122,3488,26930
+4213,51472
+4214,12363,9493,15284,68689,55836
+4215,68125,41368,71914,4014,22747,60342,47054,36156
+4216,52385,9409,22587,21166,49734
+4217,69347,42760,49961
+4218,34295,8914,73226,36652,47139,73046,67140,9147
+4219,35631,10830
+4220,9677,63649,81838,52891
+4221,17340
+4222,44280,9522
+4223,26533,73413,26412
+4224,27404,3844,27438
+4225,5736,36720,3693
+4226,78502,39870,3729
+4227,43281
+4228,34278,34734,46976,75382,66919,41448,59312
+4229,73540,20977,44368
+4230,55320
+4231,50938
+4232,42585,52645
+4233,63098,45515,80561,4047,72325,2817,68943
+4234,42617,20527,52778,51321,42272
+4235,63833,35387,6998,57946
+4236,61075
+4237,75569,1854,43013
+4238,58549
+4239,19585,7221,13125
+4240,18465,32370
+4241,13941,44102,68225
+4242,72727,31970,24026,42778,49028,74796
+4243,39086,81414
+4244,55466,72553,5201,71817
+4245,32266,28926,39341,55798,31958,32298
+4246,39464,72580,32448
+4247,36120,65890,18558,4294
+4248,29275,806,41777,35696
+4249,60287
+4250,27104,52492,72855
+4251,52206,62691,16575
+4252,16585,42767,32548
+4253,4074,31760,53140,20111
+4254,30676,51686,19625,50702,2929,48372
+4255,10429,35664,30311,45096
+4256,50082
+4257,56085,14873,67056,7438,9097,78316,36273
+4258,55768,10237,2104,67753,74025,64179,1277,20388
+4259,57240,1972,19758,77372,66540
+4260,59428,79198,61772,37446,45735,57978,66055,54831
+4261,78226
+4262,28315,77915
+4263,28121,15651,61528,80812,60318
+4264,40542,79998
+4265,72095,6370,81490
+4266,29145,53011,59877
+4267,72972
+4268,43591
+4269,34238,55718,43104,64759
+4270,42316,17618
+4271,11345,53799
+4272,14616,35053
+4273,43172
+4274,48067,64697,76205,70136,20618,57664,15691,14094,67627
+4275,82138,30259
+4276,58102,61697
+4277,56747,47579
+4278,52242,38116
+4279,1193,30523,76318
+4280,43817,29675,71088,15985,40672
+4281,32611,52021,20954,10829,59570,22417
+4282,44409,2617,67576
+4283,76767,69797,79945,3578,77014,27845,16185,3704,78874
+4284,52631
+4285,70853,69476,63943,51489,45851,76924,20481,59163
+4286,21503,26689,4915,35856
+4287,63016,78455,9311
+4288,36859,4970,74064,27768,44165,35002,78323
+4289,60089,62543,54405
+4290,43341,21334,15591,49853
+4291,5485,48035
+4292,32334,6607
+4293,61463,32180,5741,71017,51912
+4294,27339
+4295,68131,23198,56492,31308,506,60839
+4296,41610,33723,42831,34597,18468
+4297,69294,29876,4814,77454,44898,1159,14658,68422
+4298,23367
+4299,20358
+4300,7243,37459,36497,80937
+4301,37497,16475
+4302,21060
+4303,3282,6689,34360
+4304,80877,58700,6265,80874,60106
+4305,41686,2166,8392,59949
+4306,6604,75306
+4307,31613
+4308,69682,49047,43107,10058,16264,889,32480,23876,65667
+4309,66199,24819,80760
+4310,76691,47886,34004,41738,35233,14743,51717,10391
+4311,80884,70318,71877,77580
+4312,27887,42720,21157,50295,21343,7588,63686,36209
+4313,48744,17906,8757,40323,47048,58010,26214,67306
+4314,47390,31117,42851,129,21932
+4315,20334,79698,67769,20636,18026,55211
+4316,28744,25633,65652,77917
+4317,43626,16627
+4318,26139,60682,44903
+4319,80283
+4320,46175,64559,57939,29880,44822,20116
+4321,9574,13799,45228,2313,26031
+4322,38654,17961,21815,41281
+4323,25609,14160
+4324,68970,50432,64127
+4325,36993
+4326,42881
+4327,62951,9116,80889,65583,38441,60444
+4328,26624,77254,11360
+4329,16064
+4330,11904,37929,40147,46597
+4331,31006
+4332,16480,20739,37669,18439,65616
+4333,71662,30361,33282,42291
+4334,6095,74253,737,66045,37825,39225,44146,5036,5499
+4335,60252,68460
+4336,54802,77616,69506
+4337,3706
+4338,69393
+4339,15191,57436,5612,6576,8988,19316,13515,40836
+4340,80265
+4341,44340,65396,55473
+4342,54652,73400,9980,13205,37983,76373,10359
+4343,40078
+4344,20733,43066
+4345,7952,13223,68634,34992
+4346,72347
+4347,31681,3624,42315,61728
+4348,41458,26975,76620,71891,18297,26689,44246,42440
+4349,49884
+4350,16736,69792
+4351,73872,47232,72668
+4352,37677,39786,33112,23847,30298
+4353,35485,72792,51636
+4354,14645
+4355,17764,12529
+4356,48574,48955,49514,5958
+4357,7582,44411
+4358,53622
+4359,55123,7145,5293,55644,43182
+4360,16814
+4361,23307,53802,35528,77338
+4362,9338,54407,6738,61423
+4363,61787,28523,49170,49775
+4364,35214
+4365,42421,62765,55855,60646,7347
+4366,10401,973,43838,58874,35101,36128,12605
+4367,36324,16204,45059,59114
+4368,28677,17265,66473,37359,26704,76925,79801
+4369,64251,25541,9105,77403
+4370,4798,29459,60859
+4371,16259,46463,51913,55114
+4372,30897,51926,28636,40289
+4373,13570
+4374,27637,24773,16743,35535,57217,65853,37762,1193
+4375,1971,7377
+4376,22256
+4377,18483
+4378,34392,2401,65351,27967,45489
+4379,42137,5332,18658,37502
+4380,21254,26008,49785,20656,35623
+4381,7470,67550,29266
+4382,12419,81244
+4383,56815,2548,17794,6450,37511
+4384,74352,75114,4292,17554
+4385,12188,756,683,63430,55117,28764,57683
+4386,30069,51280,4656
+4387,33381,62871
+4388,23863
+4389,29432,14194
+4390,30712,51634,42383,42848,52230
+4391,1455
+4392,72030,76504,71377,44701,66051,22221,23646
+4393,4728,65454
+4394,46314,24401
+4395,74267
+4396,38253
+4397,1772,497,58367,69684,63674
+4398,65285,5853,67446
+4399,55468,65697,42895,17569
+4400,54399,57788,60703,6380
+4401,48610,44861
+4402,33774,46439,81766
+4403,69116,70031,51368
+4404,20810,45576,17323,72484
+4405,69640,75890,30603,57450
+4406,45138,32448
+4407,73995,44390,75325,3208,61681,68768
+4408,63734,16245,34747,873,50464,11670,58322,74335,69536,71268,30990
+4409,31335,34460,68722,48197,71840,41865
+4410,81992,66277,68978,8696,37437,15648,68935
+4411,72020,29360,59084
+4412,38108
+4413,50692,79378,77557,42818,5314,45998
+4414,52519,54061,26180,45928,1538
+4415,29730
+4416,68007,30206
+4417,54388,79437
+4418,44341,34722,37358,2305,12705,27275,3845
+4419,28663,13631,64586,35098
+4420,59269,30202,42631,57722
+4421,73889,31975,65595
+4422,42642,5132
+4423,28276,3020,25226,53440
+4424,65232,10822
+4425,27099,20332,78071
+4426,38880,25288,73791
+4427,35656,35824
+4428,39847,38348,69010,2396
+4429,44182,79682,60177
+4430,46954,39630
+4431,56350,63746,64603
+4432,4373,52174,34291,71446
+4433,54533
+4434,44445
+4435,77145
+4436,40781,53591,68834,16510,67543,25306,43977
+4437,48502,64876,24054,8707,72302,64817,17485
+4438,62664,67827
+4439,64497,58909,35628
+4440,14413,8965,62310
+4441,76894,48726,27185,53412,64182
+4442,37800
+4443,40895,66510,61895,31433,20960,5378
+4444,74455,69494,76205,47979,50247,12667,72673,6955
+4445,15452,57979,3526,78662,80871,52736
+4446,78938,6840,59098,11895,39023
+4447,76605,50626,20050,20650
+4448,2909,69437,60864,45513,81499
+4449,31839,56951
+4450,32022,46430
+4451,58374
+4452,56245,65530,67299,74876,71645,39150,41473
+4453,31794,40025,49234,68639,14020,38673,4160,52526,39786,36991
+4454,74345,26029
+4455,69343,70611,24120
+4456,79098,30979,36469
+4457,1887,23285,33464,26843,38893
+4458,8455
+4459,42921,46891,75980,71080,39210,138,75589
+4460,64024,1554,23377,22726,23623
+4461,75061,41123
+4462,81330
+4463,57680,9840
+4464,45622,8133,63955,67886
+4465,74780
+4466,69712,40348,66431,23534,42610,48408,47345,14128,5154
+4467,36081,75299,22437,38559,49822,23308
+4468,62277,7196
+4469,67258,61709,72841,20956,43332,76601
+4470,43667,13545,48736,12020
+4471,46992,78544,66546,19093
+4472,44174,28639,11844,53992,10372,62663,3993,3796,3976
+4473,62276
+4474,51002,60228,75041,5219
+4475,71052,53852,24363,82094
+4476,24074,71879,58208,53146,14271,25276
+4477,26768,23367,20760,57263,78788,59632
+4478,80472,3551,61901,1687,80319,57438,3267
+4479,5810,59888
+4480,66986,18516,75159,40762,5517
+4481,65970,33868
+4482,41279,54858,26505
+4483,47818
+4484,5907,45199,63099,41281,71211
+4485,16129,76075,79169,18455
+4486,21706,81655,22682,14938
+4487,74715,6214,54021,1352,66957
+4488,57325
+4489,73872,34695,39734
+4490,81255,65083,37758,21159,42888
+4491,18054,29614,15416,59344,67624
+4492,78766,16878,74208
+4493,55168
+4494,81215,1108,72118
+4495,73613,47950
+4496,3384,70412
+4497,66256
+4498,34456
+4499,40844,77316
+4500,55270,15752,33599,73248,58692
+4501,45477,53360,49380,30529,45283
+4502,17920,20254
+4503,5675
+4504,8591
+4505,46200,21769,21954
+4506,28174,39671
+4507,26038,49167,14738,149,62634
+4508,32443,65342,50093
+4509,6305,35260
+4510,52480,27806,35851,59254
+4511,50818,6084,59161
+4512,79415,3744,71007,69674,2860,71437
+4513,60688
+4514,35847,13622,33550,6722,78394,18533,34684
+4515,68560,42955
+4516,6804,14483,28607,10536
+4517,10996,3081,40093,34690,2300,2715
+4518,30496,54237
+4519,72745,11486,68068,66752,26704
+4520,68552,46796,508,68373,39172
+4521,55913,14700,45604,19814,50146,60578,47418,30988,46859
+4522,48504,71755
+4523,15288,473,45375,53531,68617,13598,80307,9740
+4524,64929,57884,7752,18772
+4525,26908,21042,34939
+4526,8453,56778,72310
+4527,60890,12795,36531
+4528,25457,38545,48100
+4529,81537,11915,75441,5067,56093,9714,10730
+4530,34123,39701
+4531,44082,14164
+4532,69532,29866,10146,50571,6584
+4533,74771,1668
+4534,4841,66156,66597
+4535,12409,79459,62433,70646,31887,4151,17897
+4536,73083,50034,62698,61779,66665
+4537,27966,73159,35415,5652,22403,27879
+4538,37970,28522
+4539,70547,18538,55398,569,79686
+4540,20481,24068,59912,76394,42540,45612
+4541,52058
+4542,22325,22683
+4543,63564,7565,75809,10766
+4544,1336,61137
+4545,60532,56614,10314,43430,11163,1491
+4546,31560,69379
+4547,9175
+4548,44173,50597
+4549,74969,13468,68763,55984,64131
+4550,46306,738,74220,3759
+4551,20420,66254,40433,2594,78091,41282,42380
+4552,28728,36775
+4553,20454
+4554,56368,39375,7705,38454
+4555,79467,66920,35163,70543
+4556,69265,48468,3814,68063
+4557,29500,59853
+4558,1055,75489,63577,31414,25406
+4559,42305,8173,44834,27011,10203
+4560,11023,59549,40416,5162,42597,42847,7133,48924
+4561,41368
+4562,31576,19715,9279,3628
+4563,80277,51204,59620
+4564,79577,34262,36477
+4565,40303,43660
+4566,31027,74780,69066
+4567,46144
+4568,49361,44943,6250,47143,16521,70955,24404,78423
+4569,39795,74579,20565,9804,74070,8410
+4570,33556
+4571,51530,51839,80426
+4572,20587,59074,77310
+4573,53036
+4574,28370
+4575,38692,28059
+4576,6115,21497,41872,59571,42953
+4577,31330,59504,41615
+4578,33152,45658,12505
+4579,10589,19913
+4580,52699,75883
+4581,48954,26316,62052,1841,28265,50822
+4582,76108,58439,38999
+4583,43469,6479,36511,65097,42725,67850,11190
+4584,14775
+4585,9367,19681,70823
+4586,55848,2184,34621,9277
+4587,66873,81782,461,4536
+4588,30049,62282,18724,58295,71723,70222
+4589,54290,69957,64689,865
+4590,50443,4267
+4591,4845,44917
+4592,47595,65366,63420,33295,81061,13855,39262,64242
+4593,42624,18216,12430,16278
+4594,3293,67331,37414,34578,40999,66012
+4595,66405,54305,48807,56310,77303
+4596,55439,17995,47860
+4597,30784,3288,39072
+4598,5682
+4599,65054,65703
+4600,16903
+4601,74050,49967,20115
+4602,13725,6409,79502
+4603,39177
+4604,51367
+4605,58402
+4606,65294,42533,25839
+4607,16899,18838
+4608,49763,56031
+4609,19952,4119,56982,5882
+4610,49328,40428,69076
+4611,42624,61309,72796,32020
+4612,9589,80548
+4613,67037,6780
+4614,11031,20404,71049,35493,55471,58702,62327,71985
+4615,72670,25293,56847,4803,11593
+4616,55947,50930
+4617,48419,51288,48687
+4618,30265,49369,1558,72996,19796
+4619,20430,1433
+4620,56045,76110,22795,77467
+4621,6291,45685,46459,38241
+4622,66769,65068,24332,41147,10929,81241
+4623,23525,38189,61359
+4624,42557
+4625,46372
+4626,5736
+4627,5345,37502,44475,37337
+4628,54543,51277,53279,26838,15222,8767,11948
+4629,75468,1298
+4630,61325,34442,63832,8755,77369,57398,19490
+4631,68674,25840,46678
+4632,39458,12196,79171,72784,29038,14392,78510
+4633,46643
+4634,1662,63741
+4635,62591,28591,26324,19798,29730,48315
+4636,60672,40476,5882,51853
+4637,44260
+4638,71892,28087,21726
+4639,31257
+4640,72519,54163,12626,43383,76826,46425,78733,42249,80425
+4641,80191,17537
+4642,29619,61799,28255,72403,33619
+4643,29032,2460,25579
+4644,14537,80304
+4645,16226,50840,23724,30251,73889
+4646,49697,30253
+4647,75736
+4648,16770,27388,64626,17131
+4649,30496,74891,14182
+4650,46643
+4651,37999,15870,30476,78829,39372,49177
+4652,76512,79936,5553
+4653,21720,19156
+4654,30362,53946,7939,69284
+4655,48418,61552,12821,79924,28479,16697,16020,6558
+4656,70973,41561
+4657,39364,506
+4658,74324,11736
+4659,34426,53251,5795,60435,2783,81702
+4660,24343,50925
+4661,72249,39876,81905,66584,19981
+4662,73292,13223,34256,74565,54631,42727,24189
+4663,47345,67776,72059,55702,73004,26598
+4664,55320,37459
+4665,47727,65584,44143,32669,22299
+4666,79716,2531,78844
+4667,26772,56769,35812,6439
+4668,17016,70639
+4669,48228,47991,52324,79309,27456,58004,39372,57951,64103
+4670,18628,64356,18589,29005,74255,81468,1947,53101,63737,29073
+4671,14174,29540,33320,3760
+4672,61205
+4673,32462,5381,40427,3930
+4674,66706,56533
+4675,42774,11545,77917,13986,26232
+4676,70835
+4677,6794,77189,2220
+4678,36469
+4679,31459,23191,8551,50750
+4680,76173,35084,23359,41231,79212
+4681,21658,25574,54856,71495,33206,57652
+4682,14305
+4683,22660,9159,56164,21653,55258
+4684,53947,9997,71389,82142,31711
+4685,2902,60607,1463
+4686,18558,18483,46011
+4687,60039,58275,8810,61598,80266
+4688,14505
+4689,27239,28991,16864,56457,78611
+4690,37252,34771,60831,70790,39823,79890,67643,32287,62581
+4691,55924,45648
+4692,80519,81054,58326,25169,5543,52400,79475
+4693,62831,10024,7
+4694,11591
+4695,59991,63097,155,69943,17448
+4696,3993,59559,5566,35678,55057,13596,28467
+4697,10203,24548,17987,77634,32890,51143,78401,442,44357
+4698,52171,55278
+4699,54684
+4700,15897,13914
+4701,52242
+4702,18336
+4703,63147,61614
+4704,5144,75106,78956
+4705,41711,76994,71481,43725,20335,39995
+4706,31732,28412
+4707,70879,63943,44089,37889,61010
+4708,71646,54452,64701
+4709,30684,46941
+4710,59043,15565
+4711,66508,6909,33978,1216
+4712,3718,77294,45376,681
+4713,56952,18503
+4714,37860,56762,61826,79817,68819
+4715,51773,78910
+4716,42188
+4717,3648,481
+4718,7858,39488
+4719,7442,73247
+4720,25920,49387,39689,31685,45099,2956
+4721,15504,36995,35366,71919,71575,16905
+4722,80757
+4723,44973,66193,17230,42424
+4724,72230
+4725,43319,62919,625,32061,50231
+4726,76549,17070,34192
+4727,77286,75538,34476
+4728,28847,58067
+4729,20237,5011,11269,72325,58634,36753,8346,47661,63666,5351
+4730,29604,36492,41413,51793,55697
+4731,73358,70696,38377,41139
+4732,58857,6272,67065
+4733,36795
+4734,56427,18174,66627,70820
+4735,44405,77691,33442,5886
+4736,77909,35862,63505,48275,1911,40854
+4737,12854,58801,7270,75436
+4738,50039,1772
+4739,63168
+4740,63641,64810,77829,78351,20241,74980,40093
+4741,5271,27186,24261,44334,69651,30468
+4742,34216,29147,59382,36222,3585,63563,42446,14812
+4743,62054,44100,78522
+4744,24957
+4745,36093,2334,27196,37482,28398
+4746,575,81476,7869
+4747,37970,26086,25045,57475,19019
+4748,42570,48520
+4749,45346,20279,64100,49222,80694,75788,53090,54825
+4750,10944
+4751,50725,79763
+4752,11718,79609,42843,45849,80500
+4753,65550,40558,30476
+4754,47884
+4755,9518,7737,9805,16308
+4756,25138,37300
+4757,68880,9681
+4758,10043,23863,60397,74430
+4759,5525,39015,71850,28534,48983,63898
+4760,2793
+4761,52390,5813,40956
+4762,26381,71430,7936,10371,72590
+4763,59804,45483,27355,7402
+4764,75443,32943,75631
+4765,79988,19822
+4766,21706,57308
+4767,20334,19754
+4768,68961,29974
+4769,80468,18508,52978,71388,57652,4715
+4770,74985,70347
+4771,50497,20558,14972,35412,28541,80536
+4772,3835,64626,28311,74106,37148
+4773,81548,81131
+4774,78940,19242,55799,69413,64053
+4775,6172,39538,22701
+4776,38099,22091,78987,33413
+4777,43002,32067
+4778,42821,65808,36803,27268
+4779,22243
+4780,77243,76887,6345,80845,25465
+4781,21151,75748,52480,81556,55633,273
+4782,78256,39713,58167,67302,13434,75668,64024
+4783,71821,45954,1484
+4784,66288,65403,33594,64263,75126,17014
+4785,17492,25171,45610,77166,46859,78683
+4786,2405,8081,954
+4787,31062,34373,11904
+4788,55305,62880,55882
+4789,45756,513,40323,11454,69791,49852
+4790,42801,45341,472
+4791,10862
+4792,70451,25857
+4793,54078,76895,46645,45424,55651
+4794,74017,71835,33897,191
+4795,64545,15707,71346,27805,38252,31006,57435,77359
+4796,21903
+4797,44555,33807,20253,6658,2961,44471,68199
+4798,10770,5319,25191
+4799,59875
+4800,18962,4530,22121
+4801,31223,31139,37995,12854,61451,9090,21840
+4802,64978,63063
+4803,32585,79581
+4804,55302,75517,44505,52678,2482
+4805,35194,25447,80473,18803
+4806,12983,13830,61515,41843,46559,45844,57449
+4807,62883,66695,12291
+4808,328
+4809,50112,6265,38122,53171,45709
+4810,69115,36578,24718,58094,59670,73719
+4811,138,76839,19256,8343
+4812,68769,11331,56733,9345,56164,20829,50697,63804,5017,66868
+4813,34867,9720,77537
+4814,61514,35656,26184,14672,80362
+4815,39351,80163,82060,47951,62690
+4816,52229,33698,56697,63264,54874
+4817,44204,72130,1877,25825,64403,13456
+4818,73869,2711,49328
+4819,1664,64906
+4820,18573,36121,64809,57511
+4821,65323,64500,17598,61344
+4822,67645
+4823,37920,60749,59422,19923,30050
+4824,45486,24003,31744,54011,76944
+4825,52366,15274,36910
+4826,53428
+4827,22604
+4828,31498
+4829,63709,40619,1329,7529,58898,40784,50255,42290,70752,75793
+4830,13423,25517,1492,6045
+4831,6654,45282,57673
+4832,31520,58699,73143,27330,64905
+4833,67007,27699,14832,63083,54836
+4834,30104,4346,81049
+4835,54533,10560,61236
+4836,35656,16115,15896,62426,81688
+4837,38139,70047,19249,33304,16074,26186
+4838,56662,26283,71336,1586
+4839,4519,22952,70618,10939,36972
+4840,28633,42127
+4841,17911,51732
+4842,22300,70990,80282,32237
+4843,56150,42693
+4844,20251,11813,79193,1542,46395,54459,10025,9963,9174,81521,10175
+4845,22544,20265
+4846,41606,30573,67323,41639
+4847,45186,81606,74143,81406,233,2040,53625,50902
+4848,71689,45892,35539,53690
+4849,52209,32908,1552,6547,76394,74206,15283
+4850,74420,33094,20811,38520,37428,33872,65152,16691
+4851,42401,61324,60736,63382,9670,80708,45308
+4852,29172,76697
+4853,64,23330,17053,75797,49410,56831
+4854,38065,25680,7404,73511
+4855,13477,31414
+4856,24737,52397,69328,60638,30133,62660,58920
+4857,57342,12909,5161,78408,16958,50577,70897
+4858,52360,62026,19183,43385,36504,81030
+4859,21541,2327,1817,27120,5966,50815,74759,67740,3816
+4860,34416,37358
+4861,59411,51865,1762,25843
+4862,21020,52876
+4863,33552,3174,74415,8218
+4864,75099
+4865,43343,71492
+4866,61001,35501
+4867,78063,55935,72881
+4868,56443
+4869,37434,14942
+4870,74501,22105,16875,46788,60367,2929,10698
+4871,16587,71249,63628,57001
+4872,74457
+4873,32131,55401
+4874,40591,47740,67712,12175,18327,31245
+4875,18277,32411,7953,27849,79024,36714
+4876,44412,14419,2045
+4877,81865,19680,8932,69549,24168,76782,33746
+4878,40771,46569,4053,19799,64500,43202,68027
+4879,15828,62967,20721,66066,42912,68840
+4880,29340,81909
+4881,63588,9148,50400,12336,9410
+4882,34954,44804
+4883,81832,30468,66347,68422,39045
+4884,29999
+4885,6372
+4886,5790,38219
+4887,74261,68446,46808,40651,49276,17918,55055
+4888,81416,25292,63551,35892,75698,46958,24336,17732
+4889,23648,30432,64124
+4890,34449,56883,26064,1622,79203,14241,37097
+4891,80998,37207,11250,47144,34445,78138,21425,3700
+4892,28078,3179,41136,24672
+4893,144,27714,14825,13974,71690,13442,50859
+4894,75791,70350,82156,78067,59812,76173
+4895,32627,46247,10859,67789,80850,16510
+4896,40270,69501,39179,43709
+4897,8795,58370,19529,34382
+4898,5267,60383,10746
+4899,11371,29058,43860,40652,48515,3341
+4900,58350,48606,52094
+4901,41801,23369,70782,37054,68721,71068
+4902,6554,45884,54802,22157
+4903,2500,81673,62435
+4904,77598,5327,53948,25522
+4905,31233,4067,48277
+4906,65387,36258,59900,41845,10336
+4907,82190,64412
+4908,16594,21063
+4909,80799,54877,26643
+4910,74284,43339
+4911,9470,48119
+4912,21263
+4913,20015,50380
+4914,33608,10915,53474,81398
+4915,52344
+4916,15361,30391,60788,41574,33060,23610
+4917,18467,28097,49420
+4918,28140,58737
+4919,49122
+4920,11610,79295,51676,52127
+4921,27771
+4922,40682,69465,81096
+4923,77256
+4924,61159,1,47918,24041
+4925,66310,8104
+4926,60309
+4927,78856,69283,25888,20057,9010,80903,68598,57440,26087,66845,36368,16044
+4928,27276,72705,36457,65425,54676
+4929,64071,19668,32578,17779,16165,73938,58007,50576,45376
+4930,5079,52323,79823
+4931,3543,6151,29980,42996,10028
+4932,29164,4216
+4933,34009,62402,35021,53120,34457,58900,38044,23931,77633
+4934,18349,62819,35341
+4935,2911,59172,32721,11165
+4936,37536,25079,8900
+4937,60670
+4938,34591
+4939,58176,23443,42706,53434,69050,8632,9284,36557
+4940,43187,2274,28291,70532
+4941,16975,50580
+4942,44433
+4943,36680,75782,33942,36511,29831,76941
+4944,43535,52597,37669,12140,68134
+4945,34676,63398,80289,56153,66777,62095,56966,19518,77902,73193
+4946,57565,3087,28983,6651,36508
+4947,35354,67432
+4948,7769
+4949,74961
+4950,36576,21212,8439,37891,75990
+4951,35882,71370,71764,10648,65313,80387
+4952,45797,61332,29538,61714
+4953,20218
+4954,64930,39076,71240,77531
+4955,26681,45879,65663
+4956,57883,29887,29834,17619,76240,70927,16423
+4957,76286,54485,44794,77691,12798
+4958,61459
+4959,41005,26029,79882
+4960,5093,34867,52559
+4961,74425,5066
+4962,20598,57836,17853
+4963,42403,38947,43172
+4964,24069
+4965,10515,19158,4247,55380,22585,2657,50878
+4966,69198
+4967,61226,36963,51008
+4968,1084,57798,80096,507
+4969,2733,25833,66053
+4970,43709,71695,44215,40377,13133
+4971,24624,8814,69813
+4972,62719,41095,67053,1230
+4973,68760,12803,29157,57751
+4974,31807,4256
+4975,76015,32750,23520,72288,954,41308
+4976,53036
+4977,5173,41042,72531,55141
+4978,77280,63960,66438,1417,51801
+4979,70312,13987,7077,57084,73408
+4980,396,39023,67678
+4981,42792,71571,56282,32276,37942,70030,57687,16833
+4982,81753,58113
+4983,15298,73956,75291,80995,6566
+4984,2268,13046,5616,43267,38083
+4985,33468
+4986,287,7284,8203,77585
+4987,28986,49736,55418,57440
+4988,21370,70067
+4989,23014,54563,25581,49362,43208,15940,25439
+4990,66355,31572,10640,51246,56057
+4991,48431,65565,27862,38602
+4992,7635,41019,65059,74272
+4993,74712,15074,54918
+4994,79319,67643,13045,37756
+4995,51205,50171,18710,79896,73143
+4996,76260
+4997,70367,51190
+4998,21985,65689,38491,18154
+4999,1548,77761,11153,49662,64694,12281,46545,1665
+5000,30761,2039,48773,32938,50421,24424
+5001,38714,67238,11433,31212,81089
+5002,64551,40800,37911,7256
+5003,8619,38197,24633,32850,48140
+5004,50409,40935,71739,69689,69885
+5005,32156,41569,64396,27708,44392,48374
+5006,23790,981
+5007,53470,42924,30619,15996
+5008,5837
+5009,75329,12319,51005,78968
+5010,22713,50309,52263
+5011,14865,51208,51273
+5012,33739,10850,19282,39421
+5013,12645,27269,28832
+5014,46314,17198,22970,10746,18148
+5015,17680,75401,30294,3469,26517,53117,76390
+5016,80375
+5017,18748,42422,67909
+5018,80375
+5019,8630,48436,27366,49163
+5020,26011,77412,24044
+5021,26376,60779,17027,14128,73585,72729,3218
+5022,68394,54819
+5023,30970,22730,11203,29599,71594,11390
+5024,421,10828,24837,42245,2631,30476,15866
+5025,17957,48007
+5026,79652,79026,8996,18018,82054
+5027,12766,66489,22590,37653
+5028,54959,22331,69090,10376
+5029,26422,57429
+5030,35742,17164,8965,20829,9545,39136
+5031,77686,48434,54800,14891,74007,67757,64287
+5032,50673,47625,14857
+5033,79071,24725,34977,76733,24050
+5034,59697,51190,35359
+5035,77037,28338,59701
+5036,80486,48046,87
+5037,12769,23432,11808
+5038,39056
+5039,66121,78522,47669
+5040,66776
+5041,15308,14423,1635,61997,25432
+5042,22057,37097,74542,43182
+5043,51368,2561,36450
+5044,20103,47536,3227,51728,12075
+5045,55710,37343,53638,28584,50405
+5046,53100,56545,78428
+5047,55836,15526,18204,33114,31748
+5048,33019,47217,18484,49064,9786
+5049,77222,15689
+5050,22407
+5051,2993,59360
+5052,59004
+5053,10248,47230,21602
+5054,52714,41614,58746,17281,21405,29675
+5055,81170,70715,63915,33505,60448,72299,65256
+5056,49346,24625,1130,6372,15919
+5057,54426
+5058,6348,64629
+5059,52196,74480,43442,4645,34173,74890,66347,66635,80542,72086,67361,38881
+5060,33799,76393,57608
+5061,36792,65811,35808,78586
+5062,66811,42134,42904,65055,19902
+5063,14851,74852
+5064,68108,63923,43006
+5065,54029,45787,33633,28744,664
+5066,67814,26661
+5067,79841,76986,24849,3885,19947,47389,960
+5068,65697,30018,17647
+5069,12383,4262,60130,30717
+5070,14356,44108,60514
+5071,19236,22551
+5072,673,26754
+5073,28394
+5074,75077
+5075,74400,12747,79303
+5076,32105,73841,39225,69849,74857,52602
+5077,23011,31172,63199,50892,17603,73643,22766
+5078,31441,19440,18268,51832,7757
+5079,62161
+5080,31355,27448,9054,74705
+5081,78788,62580
+5082,35351,62417,14766,33964,33609,42074,35881
+5083,9376,12435,33715,77000
+5084,37260,58882,52547,80878,46246,2139,33631,29015,28561
+5085,79546,16837,6564
+5086,54111,22083,62274
+5087,78092,58670,26608
+5088,57693,26577,49552,13275,57567
+5089,26260,55927,11704,5691,3543
+5090,64392,48866,59499,37315
+5091,55651,55498,71597
+5092,65484
+5093,9493,55930,12226,35092
+5094,44424,38214,11949,1579,22964
+5095,19514,40248,51164,38608,2238,70088
+5096,34756,32227,30590,70540
+5097,27758,64101,54910,64459
+5098,54883,44244,56686,80658
+5099,12538,50718,42033,46569,1478,17574,53165
+5100,22994,7875,71088
+5101,753,51165,1079
+5102,25446,13514,38967,67006,42596,4195,47286,41728,58764,46852
+5103,50819,49526
+5104,41225,9105
+5105,10821,47324,66635
+5106,9922,21973,18619
+5107,81798,3952,76718,41299,33296
+5108,21741,9582,81067,54035
+5109,34620,67504,64243
+5110,51777
+5111,13659,35694
+5112,8352
+5113,41046
+5114,24078,26079,55826,77769,46175,21214,65028,58073,54663,77425
+5115,16639
+5116,23737
+5117,15757,52896
+5118,56374,64187,26827
+5119,53458
+5120,19899,79593,38949
+5121,68597,36385,42199
+5122,78320,16383,3750,6510,34315
+5123,54503,25329,16664
+5124,34931,1903
+5125,26509,47088,76520,72254,4292
+5126,67332,35110,34844
+5127,38201,67603
+5128,8875,73622,66211,12556,50614
+5129,54179,69794
+5130,48541,20764
+5131,13,45701,48024
+5132,26180
+5133,4273,57910
+5134,28275,23069,46270,45146,2501,48818,4193
+5135,13606,20392,33414
+5136,73797,1944,60911
+5137,50475
+5138,46197,80760
+5139,43009,25661,23719,71938,60311
+5140,35553,62772,59890
+5141,3332,41239,14135
+5142,1614,37038,81132,27462,35878,10515
+5143,57216,28329
+5144,56811,81168,68367
+5145,15259,63805,75371,37872,10373
+5146,36939
+5147,45972,25862,76625
+5148,44941,4772,24594,2428,13463,51799,54287,8106,4827,11573,80618
+5149,45826,21550,22339,39135,21108,44664,75335
+5150,14999
+5151,18558
+5152,69393
+5153,52377
+5154,58066
+5155,41966,71253,62219,35105,24044,76804,55222,62468,53994,81566,14885,21688,16143
+5156,35309
+5157,43468,36967,75386
+5158,15180,58645,5109,76931,14803
+5159,61787,20474
+5160,45184,28150
+5161,49789,37729
+5162,80831,17899,62680
+5163,50593,63044,78702,37367,66992,3869,10896
+5164,44215
+5165,71250,18115,73874
+5166,24965,27113,46142,14888
+5167,51378,39998,2548,20660
+5168,46384
+5169,52986,40370
+5170,23581,38435,54554,73137,57720,67457,5131,28993,49598,66168
+5171,36257
+5172,39045,63887,35637,8707,24686
+5173,37787,11231,19579,73921,50243
+5174,61725,66682,27566,20436
+5175,77616
+5176,51814,24300,80011
+5177,39753,11495,48956,34378,60655,66577,12305,11988,9952,71863
+5178,23164,53540,29310,64542,35265,3903
+5179,55014,78385,1763,47184,5772,77578,78999
+5180,70427,46713,1661,68095
+5181,71688,72451,25494
+5182,9734,57060,81598
+5183,67586
+5184,14998,54312,33884
+5185,31742,30478,79503,55848
+5186,44742,9171,37511
+5187,60126,59899
+5188,52734,49035
+5189,13610,73185,1405,32644,41461
+5190,59297,69482
+5191,70726,74884
+5192,40916,18144,43331,81326,15691,16946,39265,75656
+5193,81355,48414,23169,45301,712
+5194,69279,67843,43139,9653,26037,43066,55452,79292
+5195,49127,69266,70367,75521,63684,50624,53945,34417
+5196,52612,16361
+5197,9152,67412,5164,21755
+5198,69284,46928
+5199,20464,63065,66446,56915,35597,33074,40377
+5200,42328
+5201,74410,65509,44830
+5202,15054,60900,58822
+5203,77,59403,82104
+5204,33337,37831,20846,10445,59211,6339
+5205,76625
+5206,24880,76318
+5207,10748,49396,12325,66527,36476
+5208,21054,49951
+5209,79831
+5210,73956,17550,78029,22623,40446
+5211,33018,19793,21408
+5212,67216,25844,13509,79325
+5213,59474,72144,24484,73369,80574,36596
+5214,8298,37029,49428,26821,22156
+5215,10662,55621,41553
+5216,23282,83
+5217,32095,5221,37056,51519,59037,61001,58322,81235,41814,64083,18947
+5218,58301,28137,73963
+5219,58873
+5220,25156,72594,24132,59710,71071,80684
+5221,1313
+5222,79520,63746,21928
+5223,28602,25457
+5224,52278,66547,61614,55416
+5225,23857
+5226,4001
+5227,36497,2709
+5228,68044,1608,45081,19160,18942,70659,18086,50781,65046,71263
+5229,44585,39817
+5230,41052
+5231,36718,70883,65297
+5232,15756,15446,41592,74664
+5233,81454,4997
+5234,33037,21531,2554,70084,57614,29051
+5235,16279,31376,15265,18841,47290,54123,42295
+5236,34357,77335,23269,28472,43943,34202
+5237,16250,44876,8701,58001,20924,27596,17966
+5238,68829
+5239,45491,27316,54341,16715,13121
+5240,21891,1026,23249
+5241,66794,61842,26352,17776,73161,15685
+5242,7984,54612,52866,77580
+5243,71814,29275,65124,59058,22243,7035
+5244,46867,614
+5245,47213,63768
+5246,55485
+5247,11609,18703
+5248,43654,36330
+5249,35151,5175
+5250,19981,78173,33868,45117
+5251,16821,81610,66557,76727,64978,72294,71558
+5252,40757,698,42960,20081,54807
+5253,54941,41957,75007,52622,24898,51503,56810,37261,288,72186,33323
+5254,27017
+5255,27601,58400,67508,61196,71481,5528
+5256,71769,41860
+5257,52461,1497,47452,71275,42564,76100,72894,33647
+5258,50975,7991,20932,45378
+5259,47536,4488,51468,79165,55630,8352
+5260,46026,16298,7173,15034
+5261,60848
+5262,49973,18613,60874,50369,12574,74820,64330,75587,45451
+5263,26453,55908,46621,43994
+5264,18184,13688,9090,21566,28431,46769
+5265,29610,27724,65938
+5266,79780
+5267,3560,51584
+5268,2473
+5269,18573,77504,19138,33260,80548
+5270,75316
+5271,6949,76747
+5272,35366,74176,45802,1339,48758
+5273,42330,17635,69455,16730
+5274,77845,28810,20233,76744
+5275,60435,81526,6773,67250
+5276,35503,42844
+5277,69100
+5278,18152,44816
+5279,71585,46762,73576,65124,66856
+5280,48665,54045,35008,16310,21706,25053,66502,53857
+5281,15526,62242,56393,33893,66764,35412
+5282,47485
+5283,19000,55476
+5284,73624,30261
+5285,58247,21624
+5286,65594,50591
+5287,13854,20601
+5288,18870,59323,32568,3530
+5289,6170,36164,30932,80847,4160,61493
+5290,5830,6312
+5291,62762,5663,18744,73183,1477
+5292,8046
+5293,9413
+5294,1445,23170,29361,19242,35328,18716,69718
+5295,16023,37453,25618,10940,77234,71548,47711
+5296,63538
+5297,3368,44907,58370,8288,62804,80233,27529
+5298,66349,54892,32862,77576,75068,38066
+5299,11322,30326
+5300,17775,16187,33060,32523,28235
+5301,48163,2889,28420
+5302,44073,55789,7145,60335
+5303,34713,23145,25954,61443,35621,72194,46177,3249,75280,1708
+5304,34814
+5305,81898,40531
+5306,14120
+5307,66810,22868
+5308,21134,38332,50621,19861
+5309,36760,74058,63306
+5310,80004
+5311,50907,51337,3371,5196,16480
+5312,137,5218,2678,16595,827
+5313,30581,74245,65581,72255,20695,19803,4026
+5314,72780,48541,5857
+5315,53360,78894
+5316,9062,23334,12681,54972
+5317,71838
+5318,22181,4598
+5319,71978
+5320,6989,45257,71141,25125,15876,13055
+5321,54469,49277,39273,1455,19070
+5322,2962,63206,57519
+5323,10784,63230,65192,80971
+5324,22481
+5325,43374,38558,27156,67653,16619,59411,62891
+5326,40593,57168,68324
+5327,46643,25183
+5328,80428,6810
+5329,14172,29184,49952,16590,52531
+5330,39889,52577,23585,66411,8592,33917,732
+5331,11751
+5332,26407,38397,2212,7971
+5333,42645
+5334,62023,54361
+5335,72524,49471,74448,29319,17880,62016,79236,65849
+5336,81109,28020
+5337,16537,4295,42610,12855,7427,67810,18074
+5338,78065
+5339,34904,28991,3010,33560
+5340,68570
+5341,57365,51182,36602,78607,25151,7376,71901,64293
+5342,36957,2985,54186,18425,63495
+5343,82016,30642,79277,69455,61790,64879
+5344,37678,6182,70341,35320
+5345,73444,25450,53203,19299,48508
+5346,80101
+5347,27410,26704,81591
+5348,25004,75970
+5349,47493,26202,7440
+5350,14253,19816
+5351,18515,34776,28795
+5352,8592,17274,54023
+5353,45211,65994,75378,71451,69194,66197,80165,22836,56320
+5354,43097,71729,2645,30703,58533,66188,58983
+5355,77142,27698,46900
+5356,16345,56320
+5357,67608,43929,64730,49328,16057,45041,54272,16376,17853,76744
+5358,22404,41443,61494,33608
+5359,66500,52485,61174,75617,22883,57243,38458
+5360,15638,67325
+5361,31943,13496,6744,57556,8104
+5362,55437,66785,4489,55853,6151,48701
+5363,70706,2473
+5364,50418
+5365,10870,41950,81088,18771,69493,1886,12333,29513
+5366,16072,78841,66794,65729,16269,59867
+5367,64326,72598
+5368,78788,45554,49789,27788
+5369,73149,34158
+5370,26165,79126,67537
+5371,69134,981,1859,17816,29926,56987
+5372,74574
+5373,75419,37595,12350,58951,4882,12088
+5374,8661
+5375,57870,32653
+5376,55298,13684,48410,20752,23551
+5377,20015,61131,68626,55808,44199
+5378,35180,48192,14561
+5379,61233,4889,17593,38491,50648,22714,29031
+5380,45470,58675,46920
+5381,76469,47374,50685,81171,28999,47278,28569
+5382,17368,3228,62417,62535
+5383,78522
+5384,14554,21890,2726,29381,26137,30759,20969
+5385,11326,56678,70776,66977,74324
+5386,71801
+5387,37996,29610,29943,52751
+5388,52848,24816,9488,50514,62402,59077,4773
+5389,29465
+5390,59235,2153
+5391,40472,48357,36937,40539,44340,1648,48427
+5392,24016,19308
+5393,42722
+5394,27596
+5395,29707
+5396,66594,10698,67742,58384,43768,80805
+5397,24413,68571,57470
+5398,11765,6825,6846
+5399,24451,35051,71528,2217,73504,65974,18469,8593,69621
+5400,43967
+5401,46692
+5402,45146,32375,42832,12007,2608,30563,64749,19058,40164
+5403,57457,64490,41728,25403,51749
+5404,28805,44910,35618,30796
+5405,47236,21181,44353,35993,32160,25485
+5406,66180,6810,68873,64343,68108
+5407,13912,52487
+5408,28652
+5409,71608
+5410,29190,28396,21861,73235,23780,48238
+5411,6841,48768,10805
+5412,63572,12167,16467
+5413,34609,31715,73046,2110
+5414,14939,68627,51622
+5415,77701,39368,79848,50070
+5416,3142,72397,58627,39173,16019,9372,75235
+5417,50062,23808,61189,28601
+5418,80902,21252,36954
+5419,67632,44109,7353,79427,12895,59103
+5420,16382,26451
+5421,55439,11774,68534,30108,53622
+5422,10116,35337,72576,44535
+5423,54667,9175
+5424,44286,18840,46151,40068,48868
+5425,33149,68896
+5426,64680,14919,42504,55723,78067,37246
+5427,19061,21682,59058,37188,38587
+5428,81603
+5429,29088,76271,19000,11547,75319,37783
+5430,26155,61397,42036,65326
+5431,68157,31580,67408,21488,20711,19462,38566
+5432,74640,26445
+5433,47663,25129
+5434,30965,46698,62172,5176,8517,64990
+5435,4137,52003,34681,62309
+5436,60998
+5437,51438,48823,54706,51267,24877,56952
+5438,16854,23021,32868,32641,66124,1314
+5439,28704,50791,3674,26551,48649
+5440,67215,62754,71118,1055
+5441,50277,11699
+5442,39773,17413,9149,24313,25139,2373
+5443,11171
+5444,30467,73399
+5445,80689,16541,63508
+5446,12405,23613,63913,62226,19947,28293,66620,23823
+5447,52969
+5448,14564,18720,35577,42584
+5449,17298,80822,20436,66983,61548
+5450,18921
+5451,59809,1954,5373
+5452,50135,73555,14194,55647
+5453,36317,6099
+5454,9475,30925
+5455,65043,49973,57946
+5456,46574,3949,57120,79939,58490
+5457,26217,67728,27699,41642,2473,13330,6965,69556,21750,59586,69041,66760
+5458,70954,61601
+5459,71717,8813
+5460,10807,53391,39218
+5461,68431,76465,52912
+5462,6558
+5463,9826,78123,39114,14568,20594,37857
+5464,32177,56587,602,79348,41263,61576,45935,44972
+5465,548,61075,78919
+5466,15669,50499
+5467,33851,78663,6687,58187
+5468,59435,77761,20825
+5469,48142,31132,7225,12609,64646
+5470,57291,79213,66888
+5471,52865,35833,77313
+5472,59000,9293,21409,299,19063
+5473,65673,52869,56968
+5474,63178,30015,72939,31128,43125,37846,76800,28475
+5475,75227
+5476,81343,16014,80438,24118,55008,49729
+5477,80377,49365,23377,23791,13964,61740
+5478,29602,19176,29333,59728,37128
+5479,56350
+5480,37891,1803,73838,36878,17575,16235,80980
+5481,18617,2562,14385,74089,75708
+5482,49135
+5483,43019
+5484,34423,56760
+5485,56794,52476,57128
+5486,77961,69964,19256
+5487,14724,24907,5643,61115
+5488,55289,17035,50531,19828,36758,38715,59133
+5489,50714,3839,28394
+5490,40776,79984,6319,28839,26035,28707,48685,66649,28676,30510
+5491,63639,78998,21957,21379
+5492,9810,44977,69045,11267,35598,50744
+5493,55990,58005,13463,36808
+5494,72057,1876,35669,34491
+5495,66064,34819,13267
+5496,26434
+5497,49491
+5498,16073
+5499,74810,27724
+5500,20788
+5501,22529,3569,33201,53613
+5502,62087,31732,8819
+5503,67832,34227
+5504,45728,15695
+5505,68749
+5506,43371,80299,28099,36186
+5507,17753,68064,56616,22642
+5508,47855,33139
+5509,6982,79205,54520,6098,14521
+5510,27438,38311
+5511,63890,33718,74155,42103
+5512,73326,18109,78884,18400,76865
+5513,42990
+5514,58410,79970,20416,4400,23798,66522,39338,50036,57414
+5515,44140,316,73302,37292
+5516,10349,11511,18825,48516,46317,76543,80702,73774
+5517,32363,49845,38381,11684
+5518,42845,21711,57994
+5519,34115,81924
+5520,52106
+5521,58705
+5522,9551,13508,60043,37374
+5523,26597
+5524,79058,29420,66696,42122,30150,39912,60634
+5525,15726,48537
+5526,1278,53294,30230,45914
+5527,55236,1250,15282,40736
+5528,76963
+5529,3216,16953,10165
+5530,48031,67197,56589,69156
+5531,45458,76212,32559,62272,24806,52779
+5532,38760,5596,75070,41395
+5533,81574,41723
+5534,23946,10679
+5535,24383,70280,53130
+5536,44906,25377
+5537,10915,80150,48714
+5538,33890,35398
+5539,34228,20240,31279
+5540,1230
+5541,42198,8423,53540
+5542,73686,10543,19608,6989
+5543,35572,16306,66087
+5544,78357
+5545,51002,65050
+5546,35166
+5547,71309,55831
+5548,66844,67905
+5549,33620,32454,33059,54555,33898,35736
+5550,48002,67974,50980
+5551,7600,1453,6081,10086
+5552,45668
+5553,64991,20559,59560
+5554,21804,25317,5006,64183,22164,16671,41379
+5555,55019
+5556,18484,5907,859,31186,11789
+5557,8252
+5558,24423
+5559,37297,79963
+5560,78824,67509
+5561,11578,7606,29787,77506,49853,32800,55934,11810
+5562,11979
+5563,68439
+5564,44959,14989,11994,81053,75487,68335
+5565,3447,267
+5566,15571,82141,40208
+5567,79602,39505,32232
+5568,14663,47759,10886
+5569,41024,54182,76550,48202,60082
+5570,29376,52362,5269
+5571,17606,26718
+5572,57137,17184
+5573,33084,58592,42725,42173,32001
+5574,26720,66040,48815
+5575,71242,58183,12027,32796,30134,40113
+5576,51708,15502,64422,61615
+5577,54840,80006,63212,28198,12973,38915,62734,15289,44300,25386
+5578,75230,64130,7423
+5579,29861,23986,23194,48708,27285
+5580,6057,12243,64889,42547,62500
+5581,9801
+5582,11826,61167,49276,17244,54926,27983
+5583,64070,55671,59483
+5584,47010,15200,42746,31257,66369,52549,58939
+5585,18742,75975,7359
+5586,63768,61675,72228
+5587,49063,48805,73091
+5588,23656
+5589,52972,30465,19382,19723,16388
+5590,2099,77130,7887
+5591,15826,65666
+5592,41866
+5593,40480,44427,74167
+5594,47879,37065,32606,30399,47162,8950
+5595,24684,73073,2823
+5596,41279,26651,73694
+5597,60357,20800,13742
+5598,34138,17410,14199,36216,45048,44553
+5599,9506,21374,42507,57758,3493,42641
+5600,10510,44711
+5601,11937,31744,5818,27915,32016,75297,36831
+5602,35137,5920
+5603,62467,27372,78774,13958,11287
+5604,27014,13933,66695,12867,11608,41756
+5605,51900,64957,57390
+5606,58096,39474,19571
+5607,4270,51329,75230,32698,35589,57459
+5608,44790,31831
+5609,44042,60883,32589,70499
+5610,35687,69509,16286
+5611,71524,71971
+5612,61168,49690,11398,14545,32926
+5613,71555,45860,52480,45460,32931
+5614,32646,51974,25612,25347,59794,30113
+5615,52801,65359
+5616,50923,39322,17230
+5617,25550,37885,12490,23602
+5618,23995,67643,46671
+5619,64951,75252,82167,12114,14736,76438
+5620,56802,24556,31183,46382,56142,22459,72923
+5621,3306,65096,43814,36223,45102,67834
+5622,42542,52083,58959
+5623,37051
+5624,11872,27938,67045,14751,7656,24244
+5625,24082
+5626,21971,45288,81538,69039,47936,37226,10442,68005,52169,67155
+5627,20804
+5628,57119,18253,37337,62824,36622,4024,18716
+5629,73201,37384,5590,15493,7301,51604
+5630,55722,24431,3944
+5631,42189,57412,74602,33348,3807,47763
+5632,78514,19506,22307,10432,47048
+5633,73587,2160
+5634,80304,13801,56473
+5635,6661,62182,40125
+5636,34696,12746,12171,32868,60033,78703,1736,77015,23678,54747,49942,24523
+5637,81065,73849,59194,72111
+5638,48069,35074,77020
+5639,2545
+5640,16022,61706,12233
+5641,22337,79604,11207,40454
+5642,58966,48278,67597
+5643,78592,38122
+5644,22148
+5645,8888,25182,61144,73303,78846
+5646,63732,73866,8204,17541,446,14656,59818
+5647,32657,64381,32492
+5648,12970,28676,15062,33866,31862,66628,11051,66744,50774
+5649,79903
+5650,70092,72263,49097
+5651,22843,69961,35242
+5652,12441
+5653,9304
+5654,8388
+5655,21428,32332,5672,39390,47939,69423
+5656,26914,34740,61092,25980,62540,39811
+5657,46290,71116
+5658,25129,18277
+5659,63561,65102
+5660,70180,52800,34591,65503
+5661,67447,78013,41419,71829
+5662,81212,31039,16885,63455
+5663,29521
+5664,53100,43168,35936
+5665,30461,13540,25940,48765,72341,39526,22601,43289,18372
+5666,60128,70305,67532,75887,45248
+5667,68233
+5668,20983,43114,63061,43581,19128,53350,80230,35213
+5669,1571,15448,55192
+5670,6386,44250,18077,26495,57645
+5671,51418,45169,19272,17090
+5672,17340,74022,51751,78804,25114
+5673,41687,69014,44334,63716,67769,38924,45419,72231
+5674,69333
+5675,70807
+5676,19067,53907,14787,3458,46433,11710,7512,43424
+5677,81656,27770,61852,11769
+5678,47289,31618
+5679,4779,20787,66743
+5680,37517,15113,65443,66523,79599
+5681,18422,29054,20132,14663
+5682,69396
+5683,3667
+5684,76292,72824
+5685,24536,66880,24488,72459,51266,79455,6426
+5686,41399,51700,23880,48725,324
+5687,19258,27469,44427,25015,51307,75888,48118
+5688,42908,22346,43719
+5689,19725,5770,58390,6711,13020
+5690,53101,6235
+5691,18478,33556
+5692,15115
+5693,62155
+5694,63571,40125,53224,53242
+5695,57136,32956,56487,32598,25367,34697,69191,41920
+5696,79243,34016,50911
+5697,56093,29384,81610,9749
+5698,7588,51907,78824
+5699,19226
+5700,44280,57457,16378,19321,81245
+5701,56105,37199,29427,78778
+5702,14655,78209,32016,15587,14528,79038,81821
+5703,77037,56140
+5704,53975
+5705,58560,17906
+5706,63740,80379,31540,69776,65585,74489,54560,60836,10863
+5707,6503,17894,26279,33322,75291
+5708,70031,29931,81569
+5709,3352
+5710,15452,42135,76507,76769,47657,59237,23913
+5711,70371,68186,44095,37414,48888
+5712,66014,71160,20183,19960,57143
+5713,2128,31332,27761,57751,40325
+5714,13238,71059
+5715,38063,56930,70933,794,25770,81444
+5716,50114,6810,51222,66977
+5717,53185,42754,43406,22086,28035,76499
+5718,5669,31665,78157,68374
+5719,35326,70427,8281,15285,70460,18812,47868,64274
+5720,17477,28241,50136,27013
+5721,56112,8401,31529,79503,58112
+5722,30451,31483,55947
+5723,53978,61093
+5724,20329,30538
+5725,44388
+5726,68074,1942,49455,73332
+5727,14457,71047,18007
+5728,79913,64091,19846,6707,53943,631
+5729,10057,50502,55299,4288,15668
+5730,74847,35647,51392,48860,82055,30955,6584,5898,80103
+5731,62198,18936,53175
+5732,72584,69198,51062
+5733,64128,23565,30153,75057
+5734,34830
+5735,49744,16465,55640
+5736,29997,51879
+5737,66102,39693,42373,55063,68960,1578,31421,58007,48516,62983,26655,6269
+5738,71058,74324,20017
+5739,61055,25891,20584,69343,49594,24451,40798,70398,3009
+5740,74421,34465,30959,79599
+5741,75794,74286,78331,15230
+5742,16420
+5743,43689,80304,9036,46101,12230,31057
+5744,52683,60430,4070,33362,1590
+5745,19600
+5746,7093,6344,30167,7038,74981,37533,66874,74949
+5747,48609,473
+5748,60091,67550
+5749,15439,20283,19458,67600,38972,15562,62126
+5750,56723,39655,59736,64974,62467,81332
+5751,25329
+5752,35132,16325,43717,68796
+5753,59658
+5754,26333,27410
+5755,1221,75813,76107,35351
+5756,7491,75478,77168,46886,75215,11205
+5757,38762,78305,50381
+5758,75863,63068,3487,69669,78778
+5759,25492,81037,73152,11557,73918,37124
+5760,28680,68965,43406,54442,53897
+5761,65969,2814,16513,24902,53689
+5762,43009,28553,61806,48376
+5763,11540,53301,7626,53282
+5764,62648,6144,52033
+5765,64110
+5766,132,1531,81753,78918,40710,20425,25811
+5767,51715,67639,62343,71804,59434,55223,34158,56718,70932
+5768,22594,39670,35361,61187,40472,82016,38095,80838,77693,48330
+5769,3629,62512
+5770,69431,79558,13421,12108,3505,58516,76662,1293,21909
+5771,39439,28872
+5772,18803,59439
+5773,27999,81865,6693
+5774,43551,61165
+5775,34212,20526,73238,13496,70315
+5776,41825,48349
+5777,67218,33427,19778,23182,1251
+5778,77461,16868,47262,18608,3832,34164,9681,18888
+5779,35065,41723,20429,9731,79772
+5780,58368,34657,21078,77128,62190,67275
+5781,24864
+5782,10459,80633
+5783,7190,20164,63074
+5784,8244,68604,48853
+5785,53463,15299,67567
+5786,57781,73887
+5787,39876,61295,66207
+5788,69404,49839,71838,38978,37640
+5789,60087,7968
+5790,79778
+5791,54156,5699
+5792,43282,65587,4021,12557,43567
+5793,13565,39710,31572,16105,26705
+5794,72355
+5795,79398,47196,41277,37555
+5796,49264,44260,6192
+5797,36277,30858,66541,77253
+5798,72276,39294,64773,22223
+5799,47373
+5800,4820,59464,45312
+5801,57078,42422,49101
+5802,30461,54601,37061,59757,75056,76826
+5803,73180,1983
+5804,59660
+5805,16100,14845,22843,26365,14122,57232,16466
+5806,18054,25628,3600,71895,44825,3947
+5807,57659,6031,37076,56373
+5808,7883,51684,6361,44129,19702,71330,64521,27239,63032,18772,81247
+5809,23180,66611,53044,8928,32671,18370
+5810,1702,67367,31256,67709
+5811,47667,62363,76812,1419,41803
+5812,60249
+5813,65524
+5814,69693,64058,52841,31728
+5815,63048,66043
+5816,36211
+5817,2690,65987,14364,26508,66772,40209,63764,46902,59410
+5818,12450,44032,17514,69081
+5819,73849
+5820,18977,44243,44486,17897,80084,72743,43897
+5821,51409,22609,1792
+5822,14364,7931,66514,67324,10348
+5823,75020,7460
+5824,78855,68534
+5825,22192,38618,73295
+5826,30172,68322
+5827,55506,26588,38283,55230,16027,55941
+5828,42921
+5829,14253,20186,47265
+5830,20961
+5831,11655
+5832,32184,75665,20047,55914,55325,35681
+5833,20662,71092,3307
+5834,37280,38423,62435,70432,44646,3464,30411
+5835,16211,79106,26009
+5836,21861,59306,77847,69118,67797
+5837,77652
+5838,80725,47051,70160,18615,2445,38547,21486
+5839,39297,15426,16443,43796,64085
+5840,57209,72239,12753,3316
+5841,23515,14437,22405,51288,72990,74170,26230,73559
+5842,27504,19952,25589,68023,43323,34651,80873,20996,66370,46957,75569
+5843,24479
+5844,67407,63961,52414,77485
+5845,14429,56206,52253,50921
+5846,53435,24249,69598,39450,31949
+5847,60052,1777
+5848,13898,71211,43260,24323
+5849,76583,29647,46592,24095,33508,50305
+5850,56495,77474,54635,16348,4982,43727
+5851,37136
+5852,73116
+5853,77824,36870,79523,3880
+5854,38771
+5855,65976,44362
+5856,66873,35373
+5857,74770
+5858,32396,47233,1701,18708,44995,28421,64048
+5859,79071,13458,178,9054,49153,48103
+5860,75765,49478,41753,72464,15667,827
+5861,26698
+5862,11405,59879
+5863,35118,67983
+5864,43680
+5865,15390,22175,15707
+5866,7020,79560
+5867,60004,70554
+5868,34809,33373,80127,11643,1313,80144
+5869,70404,63580,71888,19880,25618,48664,8208,68577,17095,42461,74958
+5870,22270,34518,8629
+5871,80409,12185
+5872,72874,128,54321,25038,7718,64858,48868,1624,46517,41852,26528,70910
+5873,43581,13166
+5874,14130,19257,60254,38143
+5875,21719,67198,16639,76445,54683,78247,38771,26892
+5876,15299,75432,67677,39309
+5877,29897,1250
+5878,56616
+5879,25231,73270,34212,65749,4016,2728,45648
+5880,20055
+5881,81907,48163,28276
+5882,73750,48853,72258
+5883,54505,15117,1576,46626,23972
+5884,71166,57363,32022,26193,27720,843
+5885,43977,59653,50193,43006,21894,16163
+5886,82167,10093,35076
+5887,11660
+5888,75735,63333,33173,70227
+5889,73042,18903,59724
+5890,36697,69630,41514
+5891,81360
+5892,58269,16193
+5893,8835,28724
+5894,60894,58573,36331,57358,18714,66180
+5895,2743,47439,27451
+5896,62694
+5897,62412,67803,9473,8381,7260,47789
+5898,13137,79158,62145,28772
+5899,44686,42128,14612
+5900,55565,75419,57566,36736,80630,52536
+5901,73928,54396,12623,36915,74858
+5902,35844
+5903,52015,6140,38988
+5904,53975,7834,62273,75386
+5905,27709,13226,20370,12435
+5906,81656
+5907,16724,48283,1439,32540
+5908,62692,41138,17176,51600
+5909,41850,10930,8712,71076
+5910,76581,12810
+5911,17542
+5912,47185,53478,23277
+5913,11168,4340,29300,59774
+5914,1147,16084,37747
+5915,1577,34112,59735,51921,53940,33828
+5916,57079,22339
+5917,121,66281
+5918,55755,68460,78393
+5919,17336,71597,78433,4002,14177,49605
+5920,47158
+5921,27707,66173,34128,60952
+5922,57302,66123,35272,74538
+5923,58196,20969,32857
+5924,25368,74626,73243
+5925,69779
+5926,22188,61107
+5927,34054,30855
+5928,25652,41538,33656,53800,66443,73562,13904,81530
+5929,39681,34086,50129
+5930,13460
+5931,47972,51313,24276
+5932,15357,65296,3554
+5933,22880,26443,80173,26260,47167
+5934,74994,23749,37602,81387,76283,56742,44392,21473
+5935,24300,42410
+5936,2021,76660,47618,39920,16985,81527,55435,19019
+5937,75137,49832,19347,41224
+5938,65399,63233,16064
+5939,79850
+5940,52217,71251,60741,70924,42576,27392
+5941,76588,58573,7040,27357,23112,34579,54742,72872,26736,742,23673,71897
+5942,672
+5943,16402
+5944,35421,37627,54760,70271
+5945,37132,26985,7927,5611,18503
+5946,43665,10918
+5947,10658,24220
+5948,31314,19941,25602,43286,50398,45685,21553,38084
+5949,777,50054,21504,2987,73845,60209,9765
+5950,9608,3870,33476,20041,68322
+5951,45690
+5952,21423,13636,62848,48087,5821,67024
+5953,5896,41301,18135,70650,824
+5954,7172,55503,41362,80008,401,7690,68918
+5955,42947,21612,49044,43651
+5956,9361,30014,40017,46075,13399,50632,34493
+5957,44078
+5958,73031
+5959,65219,211,62719,59249,78689,27516
+5960,55165,58594,11822,41655,3011,48593
+5961,57541,28291,7989
+5962,37459,532,62990,70057
+5963,7591,73763
+5964,25253,45822,56956,9352,28604
+5965,32072,35572,27546,29823,44693
+5966,18077,40373,49006
+5967,53626,42359,61058,22876,43952,33000
+5968,63844,76280
+5969,77281,25517,51135,78938,14077,62206,76611
+5970,39953
+5971,7946,76212,42343,60692,26929
+5972,23141,73730,18964,8307,8766
+5973,74543,3977,25377
+5974,37098,28437,30462,42424,57578,8256,75834,37868
+5975,72515,53106,11202,56778,47691,16384,76972
+5976,10360,33282,23051,52550,46791,35719,16483,35854,4656,14680,77873
+5977,20836
+5978,18652,45377,59646,39685,44316,47275,37135,56640
+5979,70869,39447,46004,41876,37566
+5980,24732,25360,31054,55930,53692,67853,18912
+5981,78883,33773,3118,24839,22490,72158
+5982,79509,73262,17745,14878,76958
+5983,78658,16976,42125,51955,60359,63276
+5984,40179,79912,52778
+5985,74756,20617,66599
+5986,41356,20367,12589,32854,64607,75476,554
+5987,62683,26664,34028,31320,30410
+5988,17244,36859,47534,53551,7588
+5989,29517
+5990,54233,28425,14430,22001,29998,3455,61476,9987
+5991,72198,26400,51865,21694
+5992,16871,56190,75322,81846
+5993,64723,60138,3417,43579,10452,78575
+5994,64107,59526,64850,15980
+5995,52847,52090
+5996,66620,15856
+5997,7407,39810,45411,20005,71694,66931
+5998,8992
+5999,31,62494,2646,21569,68639,61824,30582,19444,13931,64209,78223,58441,44587,30601
+6000,42890,31041,80959
+6001,8006,15639,46650,16650
+6002,68704,49662,16623
+6003,36873,27203,42611,45935
+6004,78420,65914,58131,50963,31475,17273,50477
+6005,63340
+6006,8068,6449,45661,28046,8253,38866
+6007,52536,39327,16652,59719,40281,29405
+6008,41580,17179,64423,30870,42535,55379,27078,52582
+6009,11189,51381,8032,64919
+6010,5275,26605,3225,78804,15250,4798,45874,67929,32646
+6011,80943
+6012,42187,51215
+6013,24144,46101,43222
+6014,45493,35868,26737,57603,31684,30612
+6015,49863,19347,15980,40615,30659,50961,33041
+6016,24968,43240,6391
+6017,64907,78358,53591,36640,1369
+6018,52807
+6019,40106,27771,77488,61213,32473,44037
+6020,16198,42309,29785
+6021,51391,72354,67092,20562
+6022,50298
+6023,78217
+6024,1543,22882,1676,8014,76946
+6025,28804,65581,73933,47466,32496
+6026,14663
+6027,1543,24050,34174,68736,2313,72573
+6028,79901,72534,78800,13886,14039,72837
+6029,16771,28661,70254,13379
+6030,1130
+6031,29407,6560,68600
+6032,16137,40538,50474,11932,31202,11234,43676,47540,80012
+6033,48232,74493
+6034,4872
+6035,36128,78332
+6036,18849,38125,15871
+6037,14671,62912,57938,24827,17107
+6038,53444,26013
+6039,24520,48868,37420,62839,3474,49711,69384
+6040,44404,38387,43006,72087
+6041,18277,14023,67808,67886,60499
+6042,42587
+6043,72940,3475,35346,25637,22877,75737
+6044,23136,33627,73168,28124,36365,31027
+6045,40293,76428,16168
+6046,17026,52519,71650,24602
+6047,55411,66198
+6048,52586,36467,25261,31146
+6049,1409,64185,79549
+6050,3067
+6051,59305,69082,51552,43653
+6052,63729,47179,52110,17453
+6053,3370,45562,48722,48391,75338,10851,59146,31156
+6054,49154,2929
+6055,62797,3382,81878,53813
+6056,69256,47511
+6057,62751
+6058,11939,77528,62088
+6059,68258,76635
+6060,18422,37291
+6061,77635,30316,57424,65844,57301,76887,21397,10763
+6062,25192,21024,63766,64707
+6063,1748,46517,79442,69269,58512
+6064,57654
+6065,20341,18699,27744,45942
+6066,46849,8454
+6067,60624
+6068,39786,24830,18048,78747,6570
+6069,72008,30663
+6070,67258,66123
+6071,27058,78004,52089
+6072,69410,36911
+6073,61712
+6074,50072,6927
+6075,27386
+6076,34686,81548,61658,17413,71503
+6077,40188,20246,38609,26379
+6078,71630,53689,20306
+6079,42196,12126,37659
+6080,10099,42850,9330,57519,8630,62115,80803
+6081,36531
+6082,60395,39031
+6083,41476,50269
+6084,37348,2914
+6085,41859
+6086,23572,36805,59492,13617,76037,36061,61809,72696
+6087,23593,33413,25776
+6088,12550
+6089,39364,27033
+6090,50301
+6091,20689,39736,10397
+6092,51456
+6093,2617,5406,73845
+6094,10424,49974,25403,42993,7853,4586,67439
+6095,73427
+6096,27231,67349,42467,25858
+6097,16425,44444
+6098,69118,9453,15106
+6099,65022
+6100,42947,28186,80064,73172,74881
+6101,40533
+6102,45628,66548
+6103,4861,80063,45252
+6104,45273,8787,24632,58105,65597,81808,48799,4413,59995,31055,35165,64224
+6105,39818
+6106,65158,9551,73114,52191,75818
+6107,15028,56566,16032
+6108,79374,80949
+6109,46523,30487
+6110,64401,57978,56714,48068,67675,50015,57595,49480,5254
+6111,67224,56563,10169,35910
+6112,23376,70012,10272,59371
+6113,30296,12557,13778,20882
+6114,35700,42162,73278
+6115,13790,48948
+6116,20786,18822,20785,50518
+6117,23877,23263
+6118,56097,25805,11595
+6119,9522
+6120,63146,63334
+6121,37671,9510,57890,80851
+6122,61850,34506,54903,25788,37187,22326,3235,45412,50980,28634
+6123,9267,15132,46534,40492,28804,18493
+6124,51096
+6125,30377,61110,3928,36322,64400,64359
+6126,27885,6108,63351,34104
+6127,79269,27091,49448,50511,54179,68773,56419,56821,54687
+6128,50545,38169,22862,25922,8648,27613,75802,67776,28118
+6129,54085,65579,13312,47910
+6130,27979,26206,71808,60415,6540,17303,42030
+6131,48946,22503
+6132,7276,10341,9442,82047
+6133,25503,29190,61379,18516
+6134,24911,25383,58747,48077,77785,4748,57443,13854
+6135,56196,47296,12375,49529
+6136,25569,78201,19527,24573,32936
+6137,47439,132,31979,22657,52178,52946,25939,76785
+6138,45537
+6139,27075,65748,19579,18332,25990,29707
+6140,75658,8216,74267
+6141,38790,77489,82117,61226,35475
+6142,39311,77370,11460
+6143,36784,70975
+6144,34088
+6145,39211,76642,79147,34008,81801
+6146,47593,61796,43243,58542,17501,35151
+6147,80772,35092,64776,68414,63232,69187,48534,1086,49706
+6148,59390
+6149,56320
+6150,4397,35146,10726
+6151,26464
+6152,9419,19170,64086
+6153,66497,55215,62901,77715,1410,52104
+6154,49476,23291,13087,46649,8803,69166
+6155,48938,61916,7355,51448,24530
+6156,70186,4724,7375
+6157,8406,68630
+6158,74596,31628,68188,20164
+6159,61250,15237,56254
+6160,28640,20782
+6161,50746,5755,28862,2531,1988
+6162,28931,46988,3149
+6163,1115,47950,76224,80951
+6164,65570,31289
+6165,35570,14848,67144,30986
+6166,65855,58495,67852
+6167,22123,20071,15278,58433,27721,53085,10512,73137
+6168,80247,28316,13948,28513,76308
+6169,56928,50790,23928,53003,78662
+6170,35826,32374,64913
+6171,56654,35835,53117,33994,19205,53708,56155
+6172,43283
+6173,63172
+6174,65197,56396,67262,704,49002,24208,38364,54691,72556,43628
+6175,30150,52560,65352,16487,4328
+6176,58232,12583,26177,3141,50530,42889,3087,78716,50844,14578
+6177,46043,66872,38713,16984
+6178,25775,53428
+6179,56541,65370,56015,80201,79804
+6180,81243,8006
+6181,65090,50508,44711
+6182,17861
+6183,53357,20132,71342,68086,70710,43513,39189
+6184,8005,79197,22339,73159,59744
+6185,54503,44400
+6186,76609,68758
+6187,34771
+6188,38919,71648
+6189,39463,30202,13676,1186
+6190,80065,25653,31547,21504,56206,46503,68173,36246,80757
+6191,8399,81411,29568,63927
+6192,46643,63321
+6193,3557,55383,47863,11760,71541,44921,18416
+6194,76942,19552,54881
+6195,17235
+6196,60311,3927
+6197,35728,81997,65913
+6198,75863,15414
+6199,6592,23753,31791,40078,38691
+6200,42951
+6201,45758,11467,59832
+6202,52329
+6203,9608,10975
+6204,68669
+6205,46666
+6206,29834,36764
+6207,76655,23116,47120
+6208,70290,63410,52316
+6209,21750,62492,54663,48292
+6210,24289,17531,59754
+6211,9025,46756
+6212,43149,38458,74939,69538,54346
+6213,960,80440,58378,78540,37811,54939,67395,48319,36320
+6214,11428,74068,58550,40902
+6215,75226,48282
+6216,39681,39317,9509
+6217,76929,67375,74499,22638
+6218,4264,73297,39026,28565,65347
+6219,38888,21075,40571,62357,43394,77468,6182,34736,47925,10326,63334
+6220,79593
+6221,17330
+6222,65010,58118,7023,79621,14877,72212
+6223,76956,39661,26617,74399
+6224,50961
+6225,538,22682,81860,12909
+6226,37300
+6227,79101,11768,54861,71574,34884,65771,58350,41281
+6228,44355,47806,26091,42982,24824,39141,35992,46456,18396,80471
+6229,63871,42554
+6230,36768,56124,45619
+6231,61955,13051
+6232,61128
+6233,9175
+6234,71148
+6235,78522,73682
+6236,19322,73201
+6237,3666
+6238,47907,6117,36943,63242,32337
+6239,44537,56721,36728,70960
+6240,71051,37828,48152
+6241,13906
+6242,12614
+6243,38304,19597,72659,39316,16409
+6244,73714,75660,24401,18336
+6245,74294,14473,70235,73091,18127
+6246,62013,35969
+6247,1112,1792,20803
+6248,26020,39722,2353
+6249,42814,69440,65807,2590,32356
+6250,2407
+6251,69589,57373,61106,73745,20442,52171
+6252,52645,26282
+6253,2688,27730
+6254,3099,43555,14834,16225,22998,37455
+6255,62369,79539,68721
+6256,24695
+6257,63025,48322,48224,3098,44260,50551,39063
+6258,33854,44878,35279,10844
+6259,47818,36931,41832,56285,49175
+6260,41297,23853,50506,53108
+6261,35386,35150,73456,52599
+6262,35620,76440,31875
+6263,33639,80543
+6264,4018,41228,47332,59906
+6265,40396,10028,6706
+6266,74978,36639
+6267,16560,52822
+6268,7921,21483,77828,79818,47900,49995,20143,81364
+6269,4601,56963
+6270,67118
+6271,2102,19055
+6272,35007
+6273,899,65459,56921
+6274,19244,11507,66450,53746,23944
+6275,74941
+6276,70191,72966
+6277,51349,18603,70790
+6278,55122,32984,70602,44940,52296
+6279,54753,2237,49088,47286,9235
+6280,68832,16553,39633,22249
+6281,3809,76592,3711,25713,56516,34130
+6282,14129
+6283,6599,25824
+6284,49197,58592,57962,77971,45548,44372,39193,49148
+6285,22226
+6286,19386
+6287,68701,34078,60676,18531,16075,72904,36215
+6288,20376
+6289,19386,14823,23150,46677,51239,23237,75163
+6290,47523
+6291,6635,30069,66350
+6292,79693,22256,36055,6584,33070,3669
+6293,22856,59786,60373,45291,71579,10822
+6294,31289,52655,78072,51325,56146
+6295,16670,7449,70043
+6296,19479,24443,61157
+6297,47232,42362
+6298,78182
+6299,74649,10787,27447,57094
+6300,1602,48752
+6301,63513,53740
+6302,47224,25067,18544
+6303,11760,11149,47407,44370,77542
+6304,6332,17520,24833,74536
+6305,69484
+6306,64767,78655,36161,52185
+6307,74932,62543,34465,42089,16163,6968
+6308,43604,68942,17657,26658,42382,80025,26948,23793
+6309,40736,67109,55299,68217
+6310,69577
+6311,32935,50622,19341,72144,14233,46477
+6312,14565,11273
+6313,25850,28172,65943,48104,50164,24856
+6314,37467
+6315,75807,5238,30888
+6316,81608,64495,17986,36485
+6317,6426,66153
+6318,2294,56062,1971,41772,28112,8406
+6319,64883,66725,11745,1679,22293
+6320,63296,24762,18875
+6321,78843,28778,4546
+6322,56014,57134,56338,58581,79133
+6323,16783,32957
+6324,59758,74134,67553
+6325,73890
+6326,77935
+6327,1207,40482,69784
+6328,19492
+6329,20993,20065,41725,16336,20872
+6330,68367
+6331,81164,11638,34304,49140,19393,46768,69265
+6332,4029,5428
+6333,12226,38977,28675,60309,33102
+6334,22083,6095,79817,41642,72848,63753,43682
+6335,28683,75728,57830
+6336,43680,18936
+6337,5686,67448,51798,63204,17323
+6338,50920,6114,63896,42958,45849,64613,23804
+6339,56495
+6340,42496,9576
+6341,27718
+6342,16310
+6343,19715,57792,28819,55570,60640,17671,37867,28579
+6344,48342,45824,63029,25741,24200
+6345,64916
+6346,24200,64243
+6347,58339
+6348,37954
+6349,27677,78507,43400,1121,73831
+6350,39379,69952,80318
+6351,5580,6766,60626,45208,63782,24603
+6352,75791,13184,75728,37348,15715
+6353,26247,36472
+6354,27507,20144,16881,10682
+6355,67436,75644,25709,8231,76779
+6356,79347
+6357,52400
+6358,66104,69177,66822
+6359,28177
+6360,59061,54045,49411,67711,16863,26764
+6361,65147,73193,8257,10399,57218
+6362,2176,72543,16620,45485,59294,9703
+6363,17215,5699,22451
+6364,80236,31770,31421
+6365,45250,7231
+6366,32262,81157,66169,34192,61223
+6367,69790,41045,5092,51530,38604,2830,5841,61871
+6368,42013,6846,14120
+6369,62767,67639,24935
+6370,77982,31311
+6371,55695,47717
+6372,62681
+6373,5051,21976,78721
+6374,45262,20714,70272,60241,34879
+6375,20598,60291,41658,5079
+6376,45131,55121
+6377,69312,62016,25692,48986,66792,61932,26538
+6378,9968,81642
+6379,6884,60071
+6380,17199,49828
+6381,9112,45388,34734
+6382,42490,916,29210,79060
+6383,79602,29162
+6384,35486,10719,11097,24267
+6385,37630,21988,42240,59766,15677,81563,32962,25663,47038,26783,57065
+6386,29115,66491,50231,9211
+6387,47219,10579,26384
+6388,37321,15904
+6389,60694,16525
+6390,13907,34210,56019,25906,69268,52724,19589,72227,20040,53830
+6391,74573,56821
+6392,47811
+6393,33695,73475,49662,33462,1913,73880,45379
+6394,52783,76682,2706,19019,37415,37675
+6395,74647,65506
+6396,72072,19257,15106,75028,46489,16548,32828
+6397,60241,1828,77525,80813
+6398,32923,69585,8839,13238
+6399,65617
+6400,23803
+6401,2040,11280,48562
+6402,39222,75061,39376,30803,81713,80261,10473,32435
+6403,3011,12407,35654,69449,68151,27426,71720
+6404,32216,34751,66793,57441
+6405,1904,22726,44250
+6406,69634,53,39349
+6407,16231,43234,52940,74024,1268,53391,54962
+6408,19113,54231,14697,30474,28553
+6409,29723,62355
+6410,41460,1674,6489,3744,13979
+6411,1551
+6412,533,17941,39286
+6413,20175,45027,49536,69179,54958,28153,55227
+6414,27388,19454,35500,63838,35212,25399
+6415,57780,17277,35162
+6416,63701,62191,2561,63913
+6417,56283,5050,74807,36367,38462,51641,45337,15545,77941,22494,32337,40772
+6418,69494,66958
+6419,37867
+6420,9801,52783,61581
+6421,34779,67838,39328
+6422,52162,53985,23880,13681
+6423,43253,4240,32650,39856
+6424,1712,11171
+6425,52701,59355,1678,7088,27929,63791,12403
+6426,51857
+6427,31016,24605,71473,12162,35429,56293
+6428,81109,61808,47851,54044,32749,19302
+6429,64969,26993,909,68481
+6430,63681,4268,68257,54328,30435,37278
+6431,32463,49676,59065,1872,28514
+6432,53305
+6433,23987,57346,47050,47004,37070,30046
+6434,55837,26019,33183,13783,72215,75914
+6435,24135,3664,16602,60765,59130
+6436,25077,1022
+6437,64781,26228,74993
+6438,53827,42797,2380,34071
+6439,49428
+6440,12076,35396,28661,4593,78741,53546,27742,9033
+6441,65111,65723,76749,62,51795,72812,5405
+6442,28753,35562,38771
+6443,15445,7221,41319,6023
+6444,19693,71057,37756,61319,51025
+6445,16724
+6446,10472,43678
+6447,64305,38241,70032
+6448,77191,59098,70589,13059
+6449,3692,65474,47625
+6450,58542
+6451,45577,48504,4270
+6452,77452
+6453,24882,51096,4573,60072,20106
+6454,32736,1244,2613
+6455,24906,31016,41346,49826
+6456,72910,69054,5930,12603
+6457,29128,77248
+6458,18330,9659,67567
+6459,12861
+6460,74501
+6461,52397,4739,15835,45194,28759
+6462,67127,27256,6913,39587,32370,79444,36784,34446,2798
+6463,22405,79956
+6464,50956,77849
+6465,34496
+6466,71363,39445,63045,1503
+6467,2346,75724,61589,38293,17438,13933,1125,23106,365
+6468,19365,21876,79076
+6469,22010,54082,4464
+6470,68440,55971,36919,67799,79520
+6471,3729,65837,45090,50068,23919,10154,63231,65925,63121,59381
+6472,71955,51183,72995,48799,72605
+6473,20640,14507
+6474,23703,56718,65351
+6475,45267,48786,38108,58405,27204
+6476,54625,20481,17490,54196,25273
+6477,3996,22763,70422
+6478,63004
+6479,78646
+6480,63168
+6481,34598,69978
+6482,11943,14778,33404
+6483,39786,73202,30260,66214
+6484,26948,1084,44904,46509,76076,61179
+6485,18311
+6486,71035,40050
+6487,76944
+6488,35264,22431,82012
+6489,5156,10388,19673,56867
+6490,78261
+6491,52029,33230
+6492,71099,9124
+6493,76675
+6494,44870
+6495,69821,59833
+6496,80433,51832,66835,10683,27811,27855,50323,69723
+6497,31354,2809,54290,53173,70733,23037
+6498,65037
+6499,6514
+6500,72402
+6501,48889,5996
+6502,36119,17624,49817,30926,10210,37003,40323
+6503,10075
+6504,67801,10497,5748
+6505,79504,25323,64615
+6506,32803,55049,10836,16496,25685,2087,49004,56865,35029
+6507,62083
+6508,63866,76383,66561,35674
+6509,39366,17119,75600
+6510,32636,25316
+6511,47188,34902,21567,8212,78500,36552
+6512,38140,9110,79335,25176,27524,11440
+6513,50496,39421,55438
+6514,19243
+6515,80490,21749
+6516,44501,79167,26322,16621
+6517,521,51363
+6518,11304,74982,56807
+6519,27838,67875,52398,10027,46454,47030
+6520,37049,56747,39101,36782,52189
+6521,72086,39419,48963,65477,24261
+6522,53947,21031,75894
+6523,52822,64960
+6524,34669,69694,12149,45081
+6525,70237
+6526,24361,23943,17752,18680,22497
+6527,4376,12732
+6528,10482
+6529,17778,57120,11584,69220,70646
+6530,12960,17646
+6531,42116,35802,2445
+6532,62690
+6533,78312,62705,72866,49300,1420
+6534,18412,30732,76805
+6535,55504,66943
+6536,57871,27871,1587,32785,74611,60264
+6537,61726
+6538,47576
+6539,4739,7266,2482
+6540,76625,42183,359
+6541,7108,35944,75861,6003,57447,39381,11590,18243,41401,19283
+6542,54358,81151,54666,38635
+6543,61586,65548
+6544,3802
+6545,6310,54230,54010,9978,18581
+6546,50711,48429,7741,12247,66564
+6547,57364
+6548,48483,8988,7139,52164
+6549,74898
+6550,30689,72351
+6551,58048,46315,54272,55713,64669,52989,68309,64943,60783
+6552,49914
+6553,81974,57002,17684,46974,56010,50619,61074
+6554,25708,46418
+6555,81152,25114
+6556,56628
+6557,41948,6325,39067,19423,39159
+6558,67787,35732,28953
+6559,44313,79862,80152,3160,60700
+6560,32606,29291,68260,54149
+6561,81698,11316,12726,3552
+6562,9532,70559,22344,1459,38962,23821
+6563,37194,8386,58821
+6564,59904,4864,41031,17124,73246
+6565,29227,28389,59124,2851
+6566,26210,54974,79850,7869,24803
+6567,3994,24058,61928,22438
+6568,35222,73942,34655
+6569,18334,2985,58959,43696,13757
+6570,26168,46506,59520
+6571,13731,18712,74605,22200,3261
+6572,72297,69122
+6573,27127,21590,27930,54128,65161
+6574,36613
+6575,80053,53890,7600,23159,6608,81769,63955,3647,66458,70538
+6576,22385,75003,70137,7125,5984
+6577,12861,36171,36097,43924
+6578,17703,30464,81781,70511
+6579,5259,47140,63516
+6580,4072,47146
+6581,29431,41416,61655,76546,23631
+6582,63199,57310,81690,24590,38321
+6583,58619,75194,25457,45983,21780,4416
+6584,12648
+6585,69484,10098,63720
+6586,75218,39832,31589,23075
+6587,42621,33301,28838,37809,18122
+6588,32750
+6589,7615,54361,1343,68822,69297
+6590,61880,76640,8062,17047
+6591,81244,36290,22481,59088
+6592,69822,46637,55069,40824
+6593,64019,28097,53316,40032
+6594,16842,27555,34283,74619,72130,1829
+6595,59214,56338,64343,78321
+6596,76812,11514,50011,3662,60502,53412,22238
+6597,24642,54388
+6598,36232,76797,54233,21320
+6599,55382
+6600,16912,72501,16408,69131,79024
+6601,53463,25381,13428
+6602,15406,5299
+6603,34038,37190,27635,59403,13829,51217
+6604,27741,28452,60928
+6605,80899,5232,4963,21003,30205
+6606,78919,6090
+6607,29620
+6608,34774,22969,48549,7764
+6609,63743,36955,76667,61170,62409
+6610,72347,21456
+6611,32503,35113
+6612,53305,32064,66303,51069
+6613,62441,49728,36422,50463
+6614,18193
+6615,74414
+6616,63860,61075
+6617,76957
+6618,41941,47148,66471
+6619,33227,49170,69072,46737,49626
+6620,80016,51308,60473,40337,10680,43753
+6621,12039,18406,19658,37459,7149,61151,30250,16426
+6622,46788,26674
+6623,9636,67547,31916,78882
+6624,59974,73715
+6625,55759,76457,72408,59961,20453
+6626,17131
+6627,27501
+6628,20282,66194,72107
+6629,15716,949,58270,80522,9718
+6630,66588,24644
+6631,461,46486,68339,14470,70098,16176
+6632,67288,69238,52252,1723,37494,46116
+6633,65201,38635,29367,14106,54723,53858,1076
+6634,6151,29272
+6635,61828,36256,2742
+6636,6456,21918
+6637,63746
+6638,45978
+6639,33289,56288,35940,79954,39193
+6640,5581
+6641,44773
+6642,80238
+6643,60402
+6644,6550,14869,47994,17349
+6645,64629,57688,19058,77859,50955
+6646,75219,32885
+6647,20150,41623,70070,54620,17607
+6648,7303,69191,54959,15339
+6649,33552,60074,76076
+6650,32548
+6651,57788
+6652,74550,7666,28814,61273
+6653,37816,48374,59246
+6654,8654,17722
+6655,10976,13097,9858,53661,40850,62207
+6656,37316,36512,16619,6762,20270
+6657,1148,76222
+6658,47031,15482,77918,21997,24933
+6659,14198,65986,13102,27272
+6660,43044,17422,1065,21801,78146,78514
+6661,71321,34989,47115
+6662,33796,79236,42818
+6663,527,35954,43549,77842
+6664,40919,70941
+6665,67787,40966,33893,28216
+6666,20548,67331,22145,8814
+6667,79557,26493,10634,25142
+6668,365,40467,36193,72845,23783
+6669,26847,56268
+6670,27615,51787
+6671,1251,77872,76906,51150,71776,70369,10432,24401
+6672,45221,38576
+6673,437,31359,66619,45094,34219,61600,72746,71343,41796,62171
+6674,57025,65684,68375,56453
+6675,71935
+6676,22435,57799,56272,47611,48914
+6677,80101,61873,39309
+6678,53691,33316,4967,67406,64565,6219,53816,32263
+6679,57364,26704,3964
+6680,53803
+6681,31733,49862,74995
+6682,55044
+6683,70182
+6684,39480,55935,37118,19589,71588,58453,50354
+6685,23089,52486,16269,58803,30744,69147,6021
+6686,24758
+6687,55138,59036,68907
+6688,80902
+6689,1954
+6690,44503,67087,69869,81107,52782,77533
+6691,58453,50500,61334,50268,75088,81241,23937,63219
+6692,49930,71897,52533,25276,75314,40063
+6693,29357
+6694,10594,30816
+6695,79873,49366,52014,33542,48689
+6696,62155,30993
+6697,34764,73133
+6698,64010,18750,3898,31722,79305,37262,58438
+6699,30931
+6700,13479,42887,38591,20400
+6701,28413,53030,77556,14431,52839
+6702,44597,72278,26712,61106,16886
+6703,3804,30517
+6704,22078,64996,47681,56413,27835,336
+6705,5537,38348
+6706,6722,71662,15725
+6707,12435
+6708,10771,81793
+6709,16677
+6710,9861,78324,33756,46931,64527,21030,38311
+6711,49990,62255,65909
+6712,53876,78209,77812,70929,69399,32707,40219,47803,58017,6998
+6713,49346,1594,80873
+6714,57837,62905,67675,25702,34482
+6715,47656,6230,77540,81962
+6716,70319,56589,43606,47903,45122,69785
+6717,17640,79415,69622,12824,46617,74430,70778,44195,79661,16029
+6718,55370,38782,78220,53813,76769,28619
+6719,38144,40771
+6720,24849,67008,65370,12112
+6721,61997,1593,14855
+6722,82136
+6723,55335,73986,29416,39163,41400,159
+6724,62957,55015,73852,18248,62656,43159
+6725,50867,36489
+6726,56448,66852,27341,23729,39026
+6727,50809
+6728,68367
+6729,52097,10035,13165,22433
+6730,71863,72142,52986,60914,1439
+6731,69318,33940,67201,68238,65092,15590,73193
+6732,6664,27001,75497,53513,77692
+6733,11115,37402
+6734,12729,4030
+6735,37867,65037,38851
+6736,72014,50626,50367
+6737,39110,46281
+6738,50809,56320
+6739,65282,76567,37557,79726,75558,61202
+6740,8783,26965
+6741,58651,73105,54229
+6742,47667,50668
+6743,17434,59411
+6744,12221,44790,29164,10307
+6745,71729,7585
+6746,57736,46429,59852
+6747,53713,33362,6060
+6748,59142,43413,56747,10766,39479
+6749,37045,71861,34335,25998
+6750,19445,51550
+6751,30057
+6752,46737
+6753,38836,20140,12360,31022,49086,35819
+6754,23045,76404,68708,31720,11266
+6755,8086
+6756,30182,81613,9905,33356
+6757,58126,6878,50031,51157,28798,35669
+6758,40776,53251,21883
+6759,24690,66234,21253
+6760,18925,53393
+6761,4565,77129,42379,3292
+6762,77519
+6763,18583,18163,53153
+6764,21180,76823
+6765,54892
+6766,26295,72919,5079,7213
+6767,61439,69691
+6768,9568,76082
+6769,38162,49662
+6770,31580
+6771,59791,5500,39129,40530,44955
+6772,72309
+6773,54748
+6774,14185,36742,14334,57597,79771,74876
+6775,35825,24009,48,7727
+6776,76563,447,15059
+6777,66942,43776
+6778,21097
+6779,16228,74015,19688
+6780,73001
+6781,44729,11899
+6782,43452
+6783,10139,13253
+6784,43496,65725
+6785,65796,30701,24577,77926,1577,7913,42684
+6786,40136,25856,25711,27788,52901
+6787,27441,12880,47454,42353
+6788,35361,50423,27489
+6789,62345,14222,20472,15017,10803,51434,60496,38408,1671
+6790,12633,59184,9291
+6791,41202,79942,67859,50963
+6792,50262,665,80173,66235,33540
+6793,13484,23832,50689
+6794,43185,20594,77919,61956
+6795,43339,61535,27494,20119,2797
+6796,25552,32208,33453
+6797,49698,1181,65351,17006,34700
+6798,81491
+6799,15114,76483,6383,18827
+6800,77150,33177,62898,6798,80500,75551,47993,74053,28627
+6801,36870,77588
+6802,24702
+6803,56489,42761,77798
+6804,52137
+6805,14387,30777,72864,70092,8702
+6806,69201,70900
+6807,38743,11717,39527
+6808,49245,19929,26542,18673,39792,3415
+6809,21019
+6810,41570,15604,19610
+6811,54,65826
+6812,45123,57056,5428,38828
+6813,10835,51104,61814,60652,60901,2594
+6814,73880,25472,26232,64097,78727
+6815,49949,23980,33599
+6816,33746,55476
+6817,80747,81774,67928,62173,45166
+6818,20977,48601,61894,25654,40123,23973,29978
+6819,3410
+6820,7997,68454,63809,24873,67008,5810,11640,21838
+6821,72372,40721
+6822,56437,29133,23817,7209
+6823,45456,51661,10265,49692,42421
+6824,56175,14018,57109,59795,8840
+6825,7076,797
+6826,75579,40646
+6827,51208
+6828,69452,59117,37306,28939,4233,29470,35653
+6829,60338,80221,28944
+6830,35471,32952,32471,6472,58405,17161,31090
+6831,76187,64676,49284
+6832,25276,59512,45193,70061,74211
+6833,4111
+6834,32129,79175,75794
+6835,9078
+6836,60069,10240
+6837,57074,17498,38162
+6838,50835,19403,66315,75867,22887,69868
+6839,23628,17417,39700
+6840,81426
+6841,31087,23551,64677,25354,60014,41822
+6842,29468,20448,54366,81177
+6843,9088
+6844,62544,50418
+6845,12340,69966,63977,76621,3777,20423,14743
+6846,44053
+6847,3146
+6848,73853,70321,9399,73194,18337
+6849,62095,50687
+6850,4640,20537,65869,40340,57307,76258
+6851,71945,8562,49653,32231,54646,69161,29159,46039,71424,31896,4318
+6852,22563,3464,21813,38390,19816,35269
+6853,47640,12251,55523,25428,6527,77935
+6854,33319,25334,38871,38614,1591,63060
+6855,51267
+6856,75083,73535,49680,27708
+6857,36497,39707,44201,57330
+6858,80280,58268
+6859,8665,43558,52416
+6860,72855,8751
+6861,71965,40734,450,73175,66482
+6862,75201,55944,69220,40759,45407,10292
+6863,48713
+6864,53542,27129,29635,55369,16443,23634
+6865,53180,46397,68343,32020,4236,52597
+6866,68220
+6867,52206,41680,53257,55004
+6868,76963,53021,1647,37818
+6869,16735,22305,41723
+6870,36497,75889,6430,12356,30245,73881,10097
+6871,8760
+6872,23650,75946,40959
+6873,58130,76052,35997,71560,18258,26204,66303,53663
+6874,66621,51485
+6875,30644,38988,1191,49747,47179
+6876,21659,50269
+6877,78343,50665,33739
+6878,30391,25069,57032
+6879,48019,47031,78100,9136,67390
+6880,30865,70437,70354,11773,79111
+6881,722
+6882,56854,26139,19547
+6883,8049,78572,54506,38121,52005,53253,20572,38314
+6884,65538
+6885,69676,78803,11287,35727,9730,51016
+6886,41898
+6887,32209
+6888,49505,38762,68198,31841,55666,43630
+6889,57864,56939,4485,20500,50490
+6890,52531,21722,47502,53621,79927,57215
+6891,49253
+6892,68472,48562,58570,18865
+6893,61025,58786
+6894,57300,56338,57283,32532,11754
+6895,60631,6731
+6896,5400,33746,27596,49010
+6897,21099,51735,67516,79064,36024,44531,37349,57444,37979
+6898,72551,70683,16473
+6899,76347,45346,72776
+6900,36002,43097
+6901,62964,41104,39464,16781
+6902,55368,52522,32712
+6903,8281,53444,26235,44745,12903,17785
+6904,15114
+6905,18424,1921,36208,67127,32888
+6906,48849,34579,71028,51686
+6907,64263,34603,55355
+6908,40869,63366,73143
+6909,15260,33879
+6910,28196,81061,66067,65338,72584
+6911,75657,76258,22974,24249
+6912,20612,55,70485,21844,78112
+6913,36775,71857
+6914,63683
+6915,36090,34216,54771,72529,53591,57386,5874,75916,43553
+6916,74705,37734,16209,37637,30797,17676
+6917,18139,26481,12184,65205,20986,16130
+6918,41548,24894,76754,68155,15114,8018,56073,41663
+6919,28306,75512
+6920,69326,21941,44817,12030
+6921,43470,46553,18300,11088,54322,4601,48306
+6922,42800,62751,33246,24268
+6923,74782,57542,66596,79026,42003,36581
+6924,4172,29379,46140,82137
+6925,27961,59133,4850,40113,69158
+6926,44400,45089,38063
+6927,37359,4072
+6928,73974,50373
+6929,60596
+6930,10777
+6931,75605
+6932,81784,43350,60080,29026,52740,53110
+6933,66454,54763,72232
+6934,65807,61164
+6935,76496,66497,57542,9854,44009,661,36855,28975
+6936,48403,57922,72233,24608,75431,40211,37372,76565
+6937,530,61279,69948
+6938,48655,490,3682,24363
+6939,78642,14716,14000,65064,9943,68279,68960,59523,80416
+6940,64419,71344,17659,13596,20693
+6941,77722
+6942,41100,35514
+6943,70981,22609,73873,65817,58617,16540
+6944,60790,23673
+6945,34066
+6946,35898
+6947,71230,17926,59764
+6948,18856,15211,8743,741,76111
+6949,39439,59286
+6950,67510,3350,45085,7160,29462,17443
+6951,2603,28736,21961,81780,36724,25711
+6952,22852,12221,62697
+6953,57470
+6954,22256
+6955,21976
+6956,76420,68609,41950,66716,53026,7735
+6957,22635,69332,18777,2078,73602,76618
+6958,57968,17916,19164,24870
+6959,30,67317,77954,59045,26518,80907,24470
+6960,63726,58580,49954,7025,64134,3466,48087
+6961,53024,62893,58652,17373,48846,63340
+6962,65544,64652,37047,59069
+6963,37559,46352,1575,68037,45526
+6964,49042,46081,41837,60957
+6965,38497,62328,46956
+6966,76709,45017,57862,52935,16904
+6967,78164,57156
+6968,63435,36784,81737
+6969,71141,405
+6970,55090,21883,67340,16047,32135,60798,59205,50856,72299
+6971,56939,10247,77556,53740,47311,19993,67943
+6972,40852,57032
+6973,13479,14767,50097,24884,42352,1143,75473,46307,69330
+6974,34907,46110,1389,1803,22027,6008,76692,7535
+6975,6846,67981,3815,644,39620,46868
+6976,36644,51158
+6977,74906,77575,4100,29259,74903,27951
+6978,79046,36917,9488,79832,41145
+6979,45153
+6980,38937,55619,25038,64882
+6981,3154,6617,62006,60869,52751,65175,7933,21555
+6982,44637,73763
+6983,71330,28102
+6984,57729,51427,78934
+6985,50713,35803,30558,7806,13353,79904
+6986,67591,26035,47102,61581,31790,26337
+6987,70340,1547,76111,53168,8071,63811
+6988,38397,61495
+6989,42012
+6990,21749
+6991,19342,79055
+6992,31554,61285
+6993,2390
+6994,49061,65431,27350,71071,73958,77392
+6995,72063,44957,65285,44866
+6996,8939,59215,16100
+6997,17596,41781,7780,37307,64018,56502
+6998,28776
+6999,55947,79664
+7000,16122,45634
+7001,41608,38928
+7002,9024,38507,73842,35264,14179,42289
+7003,34074,69964,10193,31615,10105,18641
+7004,30215,32281,6843,40749
+7005,4822,19183,3498
+7006,12042,7590,46252,47669,61610,12982
+7007,71871,66747
+7008,13922
+7009,74106,12772,38419,56586,53953,30819
+7010,66461,37696,74297,36275,40226,75843,725,1813
+7011,12753,56095
+7012,43682,50980
+7013,50286,51777,31999,80971,54500,48844
+7014,14389,71784
+7015,20050,43119,13099,68971,13218
+7016,44654,51199
+7017,53786,23769,39678,7482
+7018,69510,13163,50899,47859,50564
+7019,26937,2870,59143,73456,16268,49161,22077
+7020,71223,34042,34954
+7021,16117
+7022,65761,66414,69875,55473,71200,48494,71681
+7023,11930,24124,34443
+7024,59605,4451,12383
+7025,35353,35150
+7026,13979,63309,61372,67173,72483
+7027,48200,77033,37829,42626,8298,24223,6553
+7028,34275,11646,30858
+7029,6798
+7030,62206,67829,20515,19804,71642,40692
+7031,55052,16237,46971,16152
+7032,57330,71476
+7033,2261,70379
+7034,53573,81880,39783,54898
+7035,64159,48546,77989
+7036,27994,80202,39315,60953,78455,54160,31740
+7037,81575,37605,81250,77926
+7038,41403,18279,43965,66263
+7039,38734,73031
+7040,64430,59400,56423,16431,20564,80205,44882,26869,43836,68840
+7041,3761,62380,2742
+7042,71684,68629
+7043,13913,74804
+7044,63729
+7045,11824
+7046,4438,11762,870,18380,12027
+7047,75971,55419,63541,31028,57539,6615,53013,72929
+7048,62324,72707
+7049,76412,72776,13735,16053,1605,25358
+7050,29644
+7051,47795,54550,80699,74761,19602,70638
+7052,49103,60379,56754,10237
+7053,20714,75228,40477,19084,13773,53709
+7054,52071,73385,2316
+7055,3194
+7056,53485,69956,29208,49800
+7057,53551,72885,40314,56636
+7058,53391,10035
+7059,12411,31432,71641,57533
+7060,34581,54698,8055,21731
+7061,72975,68640,64224,1274,19860,16581,73108,70402
+7062,31078,66846
+7063,66935,61842,25237,6298,69405,41049
+7064,68873,23470
+7065,569,49574
+7066,67691,71994,14076,42476,5256
+7067,45282,64332,7425,50485,46790,80612,27909,39188
+7068,35646,74102,7487,11912,65739,33872,32856,42020
+7069,17607
+7070,38672,49142,54506
+7071,66981,47979,10558,42619,79718,63904,46743,78595,49815
+7072,42460,47675,34556,82114,37652
+7073,30777,60779,17718,70800,42747,65808,54941,60269,73151
+7074,28286,44778,38725
+7075,22482,40509,61555
+7076,1983
+7077,56301,33109,16580,53952,78505
+7078,81994
+7079,37508,38517,74460,17333,58131
+7080,52815
+7081,16510,60961
+7082,15805,19895,46750,53948,22818,79970,9805,13129,50128
+7083,23521,76103,19383,73605,78108
+7084,71046
+7085,22417,7905,7554
+7086,79766,51639,14018
+7087,11370,23826,12002,21919,72366,78287,35451,32247,12895
+7088,42334,71882
+7089,16664
+7090,66738,11279,53854,14553
+7091,17581
+7092,347,6846,37910
+7093,30013,59864,1321,78532,5005
+7094,18341,40172,77263,35743,33069,32939
+7095,66867
+7096,51509,63499,77097,27361,49343,33302
+7097,66863,15830
+7098,69525,10895,17777,77784,51543,35465,10292,81468,22548
+7099,8657,13823,63718,60191,23353,72355
+7100,49566
+7101,55726,15845
+7102,35977,32501,72661
+7103,57788
+7104,62217,21328,121,30854,52542,72636,63148,57790,58560
+7105,21841,77871,48123,58446,12999,79997,80380,39341,74780
+7106,78226,62597,60040,28063
+7107,56904,7971,39149
+7108,1369
+7109,47329,80859,29964,864,38681,6672,5439,34410,34112
+7110,26322,43470,13004,34136,48027,61385,13379,52170
+7111,41060,8245,56368,2992
+7112,73399,113,5394
+7113,67556,17866
+7114,35052
+7115,60866,29241
+7116,45063,9695,7404,49241,9157,56474,16896,21071
+7117,18887,40227,26076,50010,2083,30637,60884,76353,11323
+7118,69071,75883,33444,64756,8696,51581,72906,59684
+7119,56221,54327,46117,25928,18773
+7120,63925
+7121,37863,49396,56738,76721
+7122,3605,51397,4279,50899,23224
+7123,39596,53878,29948,75723
+7124,75754
+7125,57368,80160,72786
+7126,73336,61592,19608,21523
+7127,48425,41765,80218,19173,4841,73707,70002
+7128,52101,42293,64596,42947,4520,56544
+7129,58,27863,76263,73740
+7130,53375,77469,19901
+7131,13296,15446
+7132,7204,17221
+7133,75308,46470,12761
+7134,31494,31428,28639
+7135,34134
+7136,80952,23299,62791,49311
+7137,75261,69960,80656
+7138,43454,32841,72253,53403
+7139,48191
+7140,452,75581,51
+7141,77716,6866
+7142,81535,62188,34599,55384,66018
+7143,73808,34170,61456,28888,58918,69553,62962
+7144,66789,33831,60795,51079,19864,11783,77578
+7145,27444,79450
+7146,39354,63194,49093,81993
+7147,69166,10633
+7148,8497,34694,14276,30577,78333,41445
+7149,50343,67533,64222,2227
+7150,80452
+7151,32721,68386,3818,65753,54597
+7152,48432,76710
+7153,26139
+7154,50086
+7155,73155,9948,50181,56546,52462,59712,45252,71563,61457,26254,3329
+7156,70705,38369,9534,74391,22649,28909,42364,6452,3372
+7157,18096,16667,76833,3573,47130,42994
+7158,49017,1315,20393,60011,19749
+7159,64578,17565,9967
+7160,29135,59716
+7161,66688,31316
+7162,79350,57392,44705,71150,404,5764,66665,13454
+7163,60105,73148,11225,49916,41611,13372
+7164,33679,53382
+7165,36778,28452
+7166,22129,54742,57087,50236,27930
+7167,19019,30324,3694,64164
+7168,40613,12381,58408,24074
+7169,58395,5454
+7170,50200
+7171,1814,16540,11413,81036,78273,47390,24140
+7172,21732,76926
+7173,50295
+7174,32351,14355,4254
+7175,56363,27292,26146,31702
+7176,14380,6756
+7177,81568,11341,60612
+7178,33400,9510
+7179,60899
+7180,14869,75274,2147,79263
+7181,15962,31094,1871,3448,24690,73907
+7182,24907,47520,33871,14144
+7183,31327
+7184,24346,39466,45,60698,71040,17602,10595
+7185,4379,42790
+7186,65583,2198,35245,6229,57905
+7187,78841,80845
+7188,10347,21003,34690,13938,32864,17993,44057,36870,72253,56250,60701
+7189,69218,50757,20066,45348
+7190,59893
+7191,66371,5171,52660
+7192,56485,1005,62616
+7193,30838,54528,73271,73804,32429
+7194,81374,23835
+7195,70539,49526,14303
+7196,74961,57605,31031,81705
+7197,11502,64059,7644,6311
+7198,15567
+7199,72502,59504,37172,21660,22924
+7200,2173,28069,57306,48425,27334,45506,14590
+7201,55391,47593,11287
+7202,29033,63579,40754,54678,12731,18365,29015,33160
+7203,77988
+7204,56359
+7205,41246,63400,17626,67007,57288,61850,69607
+7206,9817,61727
+7207,53937
+7208,44728
+7209,53050,21667,7905
+7210,19318,67171,17044
+7211,1414,67240,22367,11224,78461,58124,56467,47509,28319,36847
+7212,41060,15614,58071,80082,43886
+7213,59286
+7214,25676,54741,78818
+7215,30501,55997
+7216,52618,66324,62976,21417,11794
+7217,22774,3015
+7218,76454,20648,40559,69596,21446
+7219,59401,32693,67617,61339,61383,57111,75427
+7220,5037,49096,2520,19860,14925
+7221,31034
+7222,60557,74364,5400,6259,23705
+7223,25676,6707,56215
+7224,43016,75523
+7225,75471
+7226,40378,36924,25499,51967,42913
+7227,42557
+7228,61075
+7229,68810,37322,53085,75082,33098
+7230,46079,67861,196,33297,40217,77736,6906,15615
+7231,74660
+7232,68977,28837
+7233,12710,36155,80959,50511,62258,15019
+7234,29147,4246,64822
+7235,36036,30320,42352,61813,36566,31142
+7236,6364,11572,66123,38189,6054,7535,12071
+7237,36154,5750,58571,62315,60871,62218,81051
+7238,53085,29436,37992,16526,57479,10656,39474,115,57006,58912,44582,74302
+7239,20490,76508,16876,67469
+7240,36109
+7241,58612,4950,20015,3694,6443,52057
+7242,55996
+7243,65240
+7244,49743,42373
+7245,6595,38508,10647,8067
+7246,11082,72660
+7247,77889
+7248,76963,60624
+7249,35126,66310
+7250,7702,42351
+7251,77522,5717,24695,11223,18509,79274,80315
+7252,889,82184,35391,22948
+7253,8100,28188
+7254,80936
+7255,17376,65313,5578,9852,30034
+7256,20143
+7257,36364
+7258,54847,30144
+7259,19139,42542
+7260,39733,60541,63473,43051
+7261,28490,46692,25991,6388
+7262,62965,4750,66689,51917,53853,80474
+7263,30493,6064,74855,64613
+7264,12996,5938
+7265,16319
+7266,48864,12754
+7267,6780
+7268,15391,5093,25091,25928,43375,1661,26862,60211
+7269,7426,54296,13163,32392
+7270,67586
+7271,22697,42760
+7272,80254,13818,1752,14886,42859,47657,25770
+7273,76372,47687
+7274,77886,78492,44340,81230,22603
+7275,16286,19404,18159,31305,517
+7276,58790,3523,9508
+7277,15170,36362,24428,47917,69363
+7278,56888
+7279,54621
+7280,59582,60797,38321,43337
+7281,42538,337,44516
+7282,21277,22074
+7283,1558,33650,8465,41571,81386
+7284,64294,7539
+7285,14650,70626
+7286,7209,44309,22835
+7287,18072
+7288,60936
+7289,9161,1992,1890,35692,66068
+7290,35993
+7291,51267,16869,7231
+7292,36112,65809
+7293,54676,53391,47225,34007,67519
+7294,32224,5268,12470,80498,69645
+7295,8143,48914,28913
+7296,19422
+7297,27615,50093
+7298,47044,33650,31521,1381,24223
+7299,82165,6881,69107
+7300,22450,35915,72801,9581,49528,2391,59201,8323,7617,50331
+7301,40685,31462
+7302,36916,29087,25783,39535
+7303,27189,30666,40468
+7304,33273,60379
+7305,21359,247,43439,2581
+7306,14324,28468,28031,9124,17861
+7307,30015,28000,55022,13266,62044
+7308,70836,81148,43804,22853,17778,72705
+7309,3137,59608,72373
+7310,23068
+7311,78425
+7312,10918
+7313,39913,23649
+7314,36566
+7315,41421,297
+7316,54823,39745,44969,47717
+7317,18574,53268,35554,81095
+7318,27055,16174,62063
+7319,36810,22578
+7320,25778,80493,62248
+7321,17298,53518,3589
+7322,74939,51233,35538
+7323,7570,25226,41569,72622,26703
+7324,41580,46281,30516,12859
+7325,79625,52883,39205
+7326,49045,34354,74211
+7327,48055
+7328,23835,57201,26402,2478,47785,80316
+7329,22553,57968,37914,16495
+7330,1902,1173,5181
+7331,62533,52546
+7332,48094,48917
+7333,9010,75453,73931
+7334,52096,71767,18628,19450,80956,24725,75245
+7335,19978,62631,35726,32389,19850,81608
+7336,41193,34791,11214
+7337,25555,68271,47555,9532,80756,74477
+7338,79213,58737
+7339,48342,25175,68789
+7340,35237,77627,23061,33084
+7341,9364,6138,60040,9024,56425,82025
+7342,61535
+7343,36292,76267,4915
+7344,53280,24241,58749,21978,51154
+7345,77052,72216,71680,24622,81154,39587
+7346,52969,76834
+7347,3667,14520,80598
+7348,78637,80130,41743,77385
+7349,58115,13065,82181,82013,60658,70645
+7350,2723,44957,60752,8714
+7351,47462,29441,67145,9093
+7352,75907,27041,36915,33048,60295,16941,32060
+7353,57525,13742
+7354,14923
+7355,63162,67770,45301,74991
+7356,30698,57041,5183,34664,59733,38190
+7357,40752
+7358,23235,55381
+7359,39916,19112
+7360,53203,15844,52644,74929,22697,58811,24188,24420,59105
+7361,12198,34375,20354,48223,71855,76589
+7362,39896
+7363,40700
+7364,8852,71703,67550
+7365,77050,50941,46871,39806
+7366,39128,5139,79832,41898
+7367,19995,23346,11760,32686,32904
+7368,26562,52859,54968,47694
+7369,23846,74707,7940,62408,21960
+7370,2147,19530,77712
+7371,18856,1709,6681,15307,68947,21284
+7372,43017,6235
+7373,38602
+7374,26448,53273,64099,68485,5398
+7375,26862,68045
+7376,28978,22173,41983,27195,27944
+7377,27584
+7378,45652,29184
+7379,38858
+7380,20825,56364,60087,47148,19126
+7381,23419,2486,36515,7876,75213,27021
+7382,75809,39515
+7383,66860,55403,45356,30893,28938,3049,7512
+7384,8687,24831,24673,76413,4300,7971,80991,41734,29254
+7385,5306,81469
+7386,20327
+7387,23118,65359,2040,35423,5847,13028,30769
+7388,65844,2000
+7389,72890,75178,57346,20190,24357
+7390,68613,10805,76033,74715,38662
+7391,9475,72970,60967,71920,35687,29449,47482,60100,33526,23467,45640
+7392,67379
+7393,1495,42242,61473,25509,7551
+7394,33037,54001
+7395,31753
+7396,45956,61390
+7397,47529,24401,22686,2173,49773,66469
+7398,43742,67044,45886,76826
+7399,32262,49791,54597,75255
+7400,43280,22774
+7401,77940,49621,46327,12069,53361
+7402,23875
+7403,21890,22895,27390,44106,65241,39209,1177,25295,19837
+7404,44195
+7405,13396
+7406,57799,31381,30295,56350,38845
+7407,49547,8824,29780,73116
+7408,82173,75436,29601,32041
+7409,43536,24302,49854,61140,40433,32800
+7410,16287,69306,47189,50705
+7411,42014,6291,5803,6839
+7412,27055,68672,40921,77318,58246,75781
+7413,66788,46515,73252,363,11612,53974
+7414,25373,34233,3364,50366,68265,79415,9321
+7415,71028,64169,11062,56423,49761
+7416,39235,109,45193,69647
+7417,60041,23576
+7418,25790,15549,33366,17867,62174,46336
+7419,3368
+7420,56649,55281,10316,3999,80668,57322,46745
+7421,22357,48463,53189,40564,77816,3574,15697,24466,17710,33417
+7422,49328
+7423,70906,59035
+7424,58767,46855,45922,62156,56972
+7425,66501
+7426,33560
+7427,45303,52883,48425,63758,20909,10414
+7428,44962,71379,61697
+7429,32429,46311,36029
+7430,63284,64971,27023,23986,74472
+7431,31817,6769,68491,32390
+7432,34622
+7433,78791,41567,17215,39728,42760
+7434,38579,48119,8804
+7435,3774,7147,19573
+7436,13926,25128,43837,55962
+7437,38015,39847
+7438,28818,18369,59880,52262,7802
+7439,57745,29465
+7440,12412,14538
+7441,64336
+7442,23530,34943,77099
+7443,65004,39700,79806,15601
+7444,23500,74363,70790
+7445,7813,735
+7446,52229,63742,19876,28703,41096,3151
+7447,6463,65528
+7448,74870,15096,63763,10966,71251,79618,68406,51464
+7449,59128,6493
+7450,80053,16151,4826,28029,57019
+7451,77581,3170,45674,65120
+7452,29540,77300,50083,15867,9778,15613,56874
+7453,10196,42271,38714,18548,61687
+7454,54835,26236,31759
+7455,13036,43025,18448
+7456,80955,74160,64797
+7457,56057
+7458,12615,42136,3097,56526,52662,78701
+7459,40619,69575,17540,40921,33017,1022
+7460,62855,22138,28487,77166,16741
+7461,9847,36514,29339,74892
+7462,31215,79968,40639,56544,13144,3499,67779
+7463,31218
+7464,9952,70239,81517,29058,44708
+7465,19879,3266,12182,52665
+7466,5675
+7467,33661,28404
+7468,17267,34694,2110,61425,57287,17654,32388,41280,50460,19506,20329
+7469,68262,47127,58693,12362,81425,54598,659
+7470,56340
+7471,74841,44093,17030,71082,49553
+7472,16358
+7473,774,14000,62098,44363,66732
+7474,8807,53314,51255,33479
+7475,41011,41774,11872,61510,65536
+7476,59008,31413,16871,76668,2796,67154
+7477,63034,8586,63803,47720,27127,60026
+7478,2213
+7479,74216,81191
+7480,58893,29770
+7481,45795,69517,17699,30655,68771
+7482,61709,9228,31350,29488,72544
+7483,47799,28536,10212
+7484,21777,918,16826,11704,65294,12651,5837
+7485,6534,17902
+7486,18180,32488
+7487,50114,14741,33926,8103
+7488,33230,49724
+7489,3463
+7490,44520,17175,54771,17701,29817
+7491,71437,8657,34375
+7492,49914
+7493,69701,66743,69181
+7494,28014,20782,52062
+7495,38508,70336,13795,30619
+7496,39022,6295,23727,60842,42914,996
+7497,4854
+7498,18129
+7499,11542,72246,32786,11811,19822,25718,34052,58635,35413,55358,77774
+7500,348,76150,80387,8241,71674
+7501,69996,67457,44549,66309,43482
+7502,49100,10212,34200
+7503,25976,37012,74018,24205,9780,61877,13091
+7504,63753,18105
+7505,42055,53521,45658
+7506,74508,71057,66581,23193,47910
+7507,57070
+7508,10351,21445,35240,34953
+7509,18016,23642,63045
+7510,57069,71865,47018,65506,62334
+7511,71689,20383,27661,79886,30516,71444,44330
+7512,25922,8916,34456,55243,17122
+7513,2613,28888,40838,33250
+7514,35146,33825,11431
+7515,7769,46038,30221,46532
+7516,40383,61768,81493
+7517,56201,10738,40606,30173,44608,11350,24895
+7518,12219,72136
+7519,12280,5547,17856,46194,7771,20664,47771,22674,48047,70589,4131
+7520,18127,46083,25899,11597
+7521,15216,68463
+7522,6931,20059,47349,5973,17203
+7523,44285,40855,69099,73155,61510,39159
+7524,38338
+7525,54083,62061
+7526,65955,46245,33424,78060,54569,62130,31618
+7527,43329,63176,18201,3961,61619,11658,43431,64762
+7528,68700,26239,76773
+7529,22407,12622,49705
+7530,79890
+7531,72461,22892,63584,2213,65579
+7532,42204,28552
+7533,30479,68475,70568,70980
+7534,27469,52566,34951,46247,63882
+7535,81880,58462,35515
+7536,60184,2730,53676
+7537,50759
+7538,71633,54031,41388,43493,72429
+7539,22035,14832
+7540,31857,6118,52807,66973,32417,8354,21841
+7541,61311,56216,79433,11590
+7542,39475,79253,73259,1084
+7543,42578,22551,34403
+7544,33695,12804,54013
+7545,79608
+7546,43960,44878,41714
+7547,70095,41131,77305
+7548,1152,42661
+7549,54794,80839
+7550,57105,76035,19507,23310,60897,75086
+7551,23537,31968,27808,4337
+7552,30587,32444,65633,33815,45419
+7553,65121,36920,22563,28956,51032,32701,1556
+7554,55376,81422
+7555,5602,79714
+7556,79161,31756,1824,63018,2987
+7557,21984,77029,80752,47302
+7558,68009,60841
+7559,67626,38798,40690,23005,10625
+7560,42291,17702
+7561,75238,69986,73652,13294,78121,68030,2524
+7562,35695,8340,12436
+7563,55498,43876,57365,50540
+7564,28847
+7565,19503,74890,23037,44555,16409
+7566,70091,17477
+7567,743,67042,5753,10206
+7568,58228,26086
+7569,56748,50740,35992,51353,15213
+7570,44773
+7571,61907,27509
+7572,30948,18458,44830,61061
+7573,65426,46217
+7574,16243,72231,33832,76685,66131,20224,26885
+7575,40897,42464
+7576,25860,36280
+7577,71480
+7578,40034,45382,27272,50478,80521,59161
+7579,33879,53533,77889,22805
+7580,27782,8741,8835,58419,28696,45728,68368,44764,25433
+7581,26204,72325,15905,28356,51802,41
+7582,46647,30649,20037
+7583,29442
+7584,12622,62690,37882,63197,9194,10705
+7585,54259
+7586,60759,69489,40161,77193
+7587,80514,11252,23775
+7588,21644,67305
+7589,51950,26414,58899,51839
+7590,46903,24267
+7591,1321,72483,39512
+7592,13134,57527,22790
+7593,29853
+7594,45853,52114,20872,26589,418
+7595,62848,33372,65375,79548
+7596,38867
+7597,22352,40217,9366,54610,34415,54911,176
+7598,12614,42762,75825,76266,12547,49558,2877,38270,57926
+7599,47959,33237
+7600,22071,76000
+7601,39520,30052,30286
+7602,49860,675,8350,7730,23665
+7603,42038,34539,49213,24074
+7604,55059,34007,639,54868,48190
+7605,69858,47016
+7606,70146,38785,76157
+7607,55637,45733
+7608,41388,29396,68514,32613,17785
+7609,10373,30532,43629,27475,19037
+7610,44498
+7611,43754,14356,45463
+7612,40643
+7613,58396,20490,29044,73179,72376,56102,66709
+7614,14747,81476,40555,73377,51660
+7615,75225,76990,22786
+7616,2950,52127,3635,42363,81046,21673,56890,31225
+7617,73973,57405,42056,63276,50453,74867
+7618,80831
+7619,66748
+7620,18777
+7621,74729,14372,19028,21843
+7622,60056,46200,49409,78450
+7623,45010
+7624,47323
+7625,81998,33523,49267,70413,46809,80622,11356
+7626,31485
+7627,37039
+7628,57623,19784,12914
+7629,50764
+7630,54676
+7631,45828,44265
+7632,63486,68932
+7633,5049,26014,28119,34303,50618,49234,1463,81633,70956,68461,65571
+7634,44368,80885,52130,42568,39040,68447,50877
+7635,27865
+7636,3818,26276,5357,49635,22986,45376,39465,7571
+7637,9359,25417,27830,75046,19771,6647,32748
+7638,29895,9112,19640,19145,13380,71917,53090
+7639,28338,17090,58144
+7640,24820
+7641,3943
+7642,81105,78605,47876,6190,23739,77107,74411,60091,19647
+7643,15563,29527,63561
+7644,75133,77022
+7645,36474,38185,44773,41252,5810,42548
+7646,60402,18220,64217
+7647,38457,17469,77194
+7648,4100,39054,3867,73622
+7649,30530
+7650,77135,48713
+7651,25457,25998
+7652,10119,33373
+7653,60005,65183
+7654,61829,81783,71874,20308
+7655,18579,26097,59407,62591,10198,80249,68523,6838
+7656,69795,25115
+7657,8402,51050
+7658,25381,15511,51781,7603,36708,65015
+7659,42999,35234
+7660,71666,3705,35084,59828,20667,25725,72464
+7661,3922,40975,26354,64416,71280,18084
+7662,15873,58108
+7663,16853,58225,33272,13569,80327,63937,29238,39970
+7664,14447,21612,70543
+7665,37287,5852
+7666,63684
+7667,53199,29192,66515
+7668,68619,60172
+7669,57427,45528,48731,29810,74022,44818,70190,1207
+7670,63436,78639,25067
+7671,52525,80873,54589,34043,80191,59431,12140,26147,44406,15623,81003,31437
+7672,53453,69250,76707,45829,54425
+7673,65115,67397,76753
+7674,51353,71895,15018,59975,29739
+7675,47173,49911,24256,56732,58373
+7676,36810
+7677,69756,30585,77765,32295,41826,17025,19283
+7678,14049,48149,74603,26959,40014,75663
+7679,17764,27785,9392,74306
+7680,16570,5573,1762,81149,80795,2296
+7681,72593,66612,1663
+7682,72227,77712,63062,72467,19503,43620
+7683,19378,7126,38767,34328
+7684,63477,8378,37234,82042,75581,20908
+7685,71662,78539
+7686,7278,67717,41640,25838,84
+7687,67160,37632,43098,62249,13540,964
+7688,48175,15557
+7689,81846
+7690,78600
+7691,34931
+7692,73276,60189
+7693,39993,60601,24532
+7694,14755,79109,33035
+7695,14485,63806
+7696,51357,69824,61906
+7697,24118
+7698,81169,56273,52300,50746,18993
+7699,25377,59271,40278
+7700,45852,35637
+7701,7323,43006,1436
+7702,56273
+7703,80450,14407,58688
+7704,17203,8172,27231
+7705,71500,8155,79726,52536
+7706,8415,6812,73816
+7707,31813,82070,27148,30907,19763,9774,27533
+7708,65638,53185
+7709,64651,65848,5211,46143,74541
+7710,78007,28559,62951,55581,65161
+7711,20424,81816,39833,76530,6953,56519
+7712,60290,2609,13935,81469,4463
+7713,28165,24100,51797,54470
+7714,53003,60002,71389,17966,62067,79438
+7715,69238
+7716,68063
+7717,62175,57770,22772,7834,33758,15483,22401,48266
+7718,45356,22711
+7719,64814
+7720,79947
+7721,19422,31172,56251,16726,68308,32040,20523
+7722,17497,24765,59235,78273,43682
+7723,15799,41079
+7724,79381,75984,30518,77561,10156
+7725,10320,5071
+7726,63418,55504
+7727,50684,57676,18360,36707,4642,61032,56637
+7728,8981
+7729,35631,40484,53417,23459,65717,28405,114
+7730,13146,62746
+7731,9191,49336,63848,75765,22361,72349
+7732,66579
+7733,16406,66002,80118,77986,71088
+7734,1288,71207,57346,48922,52714,15041,3307
+7735,46851,17696,39511,14075,61121
+7736,52955,27577
+7737,35454,38661
+7738,53820
+7739,6341,54471
+7740,35844,71528,37651
+7741,24961,41512
+7742,55412,8502,39303,31639,26560
+7743,68604,37999,80535,43670,31987
+7744,72291,46434,66042
+7745,35837,60757,26692,13508,14264
+7746,45634,30618
+7747,78749
+7748,55048,53289,35414,14211,31027
+7749,17430,76926,5330,31704
+7750,80588,72541,75109,57413
+7751,49175,46055
+7752,40310,45147,3742,67897,75793,12122
+7753,58716,37318,20025,46887,13601,42293,29004,26914
+7754,74296,74347
+7755,33429,17212,53407,63915
+7756,60619,44871,59323,46572,29097,79831,29008,49232,58186,14430
+7757,348
+7758,16341
+7759,20533,17421,73616,63418,52451,39114,25152
+7760,45520,53962,66379,2459,18472
+7761,60019,43686
+7762,56573,69623,48681,29572,64574
+7763,37072,77079,13744,31425
+7764,45,74826
+7765,21261
+7766,72701,57968,5755,65871
+7767,65286,69982,681,46483,24401,18369,7355
+7768,38395
+7769,23762,64517,5169,40401,19245,71072
+7770,25451
+7771,57380
+7772,47016
+7773,77706,62869,78802
+7774,50493,31050,28261,66118,80813,50389
+7775,28284,6352,23946,45709,25264,13916,8976,39580,43476,9037
+7776,75897,52654,73407,41315,13637
+7777,70823,50987
+7778,45085
+7779,41615
+7780,8420
+7781,40298
+7782,22537,73920,78342,79369
+7783,9178,20668,43029
+7784,34816,41206,9682,56205
+7785,300,25925,50167,20804,19375,20280
+7786,62023,42376
+7787,41448,76728,80472,56621,28869
+7788,35658,47512,37679
+7789,66326
+7790,64502,14876,3024,44229
+7791,56239,15876
+7792,54454
+7793,52476,25097,73295,31917,65621
+7794,19445,36938,81932
+7795,61237,29912,64166,63183,41138,4789,1025
+7796,30433,36155
+7797,63436
+7798,9986,28582,45165,77976
+7799,21797,38874,64675
+7800,11765,15759,12826,33336,64516
+7801,44118,71325,47582
+7802,15101,5123,13628
+7803,53036
+7804,79939,41199,10859
+7805,49673,27099,66971,43522,31266,26302,29998,67960
+7806,36188,11608
+7807,77084,17073,5569,49696,11583,20466
+7808,8754,57038
+7809,26041,10291
+7810,4516,51757,80029,30516,10233,1355,21000
+7811,74075,54418,16020
+7812,24023,30505,65729,36109,64261
+7813,37078
+7814,59992,5527,31918,78156,48990
+7815,10253,7088,18590,73746,52710
+7816,78341,73889
+7817,80902
+7818,19823,26434
+7819,80008,4349,19274,537,39733
+7820,61236,33242,62620,421,57884,52832,75231,470,72179,32738,18099
+7821,60507
+7822,78907,618,19182
+7823,17978,78102,57226,66842,35587,80384,2754,6301,76951,76653,46807
+7824,16391
+7825,5508,60953,3178,60851,37526
+7826,1961,2935,30314,36799,56085,18843,63923,51935,47779,53941
+7827,29958,36897,62284,40702,63140,69605
+7828,69304,15184,34108,5812,44019,26678,67226
+7829,69236,80971,21148
+7830,56541,44208,1268
+7831,24337,66972,9420,32063
+7832,40095,30035,75926,6644
+7833,61428,18451,75450,34473,64392
+7834,59369,8708,8820
+7835,11687,18737,36859
+7836,6804,46509,47115,31428
+7837,16141,50234,32022,27305,81451
+7838,1140
+7839,81090,3013,62169,27805,5504,20004
+7840,5513,60867,35867
+7841,47296,61890,27555
+7842,74161,42409,14941,19588,53911
+7843,42503,58697,3490,55992
+7844,79552,72791,57159,40263,50832,28665,56368,11060,15970,15432
+7845,66486,21296,76157
+7846,29704,5395,62926
+7847,61920,4984,81793,39296
+7848,24880,70253,10217,22127
+7849,78236,32496,80434,66802,39914,39080
+7850,54065,8134,53012,33656,43012,45757,74538
+7851,49367
+7852,53212,4701,11899
+7853,40162,74278,27089
+7854,14565
+7855,37936
+7856,44549
+7857,43104,25189,62118
+7858,5880,15658
+7859,48149,18217,37488,69696
+7860,55640
+7861,53945
+7862,52842,57465,7828,52171
+7863,7311,18875,45432,29141,51221,13722
+7864,65594,9804
+7865,74094,50823,79875
+7866,29507,61544,78815,40901
+7867,9811,1176,9041,25144
+7868,45766,47873,22587,53700,13016
+7869,24385,74233
+7870,32448
+7871,15194
+7872,51852,19618,7690
+7873,58963,2950,59407,39036,20895
+7874,6847,16501,20923,75468,42519,58994,31161
+7875,54023
+7876,21320,37297,50844,64795
+7877,15760,17060,54803
+7878,30083
+7879,43266,79849,68985
+7880,2785,48121,43222
+7881,73742
+7882,41452,57758,12186,69612,25071
+7883,61675
+7884,34274,75739,46118,29004,53458,49013
+7885,43240,24558,46737,64223
+7886,43440,78422,62492,53713
+7887,38062
+7888,19481,40648,9217,43424,16050,43034
+7889,38825,72361,6588,37457,52798
+7890,32917
+7891,50344,37602,42362
+7892,11539,270
+7893,11905
+7894,2056
+7895,24300,73072,1856,23758,27366,49782
+7896,45838,74337,64895,68388,61366
+7897,15170,70070
+7898,48742,60392,34000,34171,961,67587
+7899,1339,75530,9130,31563
+7900,41733,40293
+7901,41856,80341,66756,968,78300,53280
+7902,18603
+7903,57914,26044,59728
+7904,6102,25429,44844
+7905,39058
+7906,36387,19341,55770
+7907,26228
+7908,74468,24160,72138,67126,81625,62042,44004
+7909,20282,41033,13412
+7910,71112,6688,38440,47737
+7911,67074,13112,55329,64830,51877
+7912,23537,34423,24689
+7913,4862,34141,54990,9427
+7914,40048,57214,52593,80446,43220,9122,38254,30577
+7915,41598,8941,24228,26049,20116,23467
+7916,3166,48483,4269,19079,60786,46206,71638,13407,26249,67335
+7917,23535,64025,9135,9385
+7918,40771,65968,79175,43191,7971
+7919,22751,11734,44573,68988,62064
+7920,24550,46333,60588
+7921,25071,35667
+7922,22273,27239,59326
+7923,30517
+7924,48327,18725,78130
+7925,19522
+7926,48122,34641,24286,30171
+7927,80036,2340
+7928,40994,77263
+7929,15299,37854
+7930,8952,51510,12206,7662,61218,36153,4,40816
+7931,9111
+7932,14052,66352,49980
+7933,1472,38400,28265,1140,46817,9915,22476
+7934,58355,23263
+7935,32958,32143,7861,43651
+7936,31404
+7937,14057,37076,39868
+7938,17155,52403
+7939,42890
+7940,78708,29507,21654,32196,42196
+7941,43366,65012,26618,8745,5433,24442,22245
+7942,29564,52323
+7943,36774
+7944,42627,2569,48265,27771,77269,40010
+7945,81228,81741
+7946,30744,38523
+7947,73567,2752,12375
+7948,61002,34992,77088,41551,70219
+7949,54678,75079,67751,54685
+7950,22687,18431,70397,67889
+7951,12666,73381,408,74729,78249,77358,56578,54402,8134
+7952,8135,15770,51226
+7953,1022,19809,73958,49526
+7954,71069,57515
+7955,66550,39905,431,70361,74823,2488,65148,45581
+7956,5722
+7957,11971,38432,76375,1466
+7958,40937
+7959,45028,3447
+7960,74701,50269,4784,56027,38886,64152,39603
+7961,11696,4384,30607,23701,69904,18542,80066,48392
+7962,42542,76620,12697
+7963,8551,54773
+7964,79270,2973
+7965,24595,22968,71998,65295,29327
+7966,5110,62858
+7967,37086,19290,62
+7968,42536
+7969,25998,6778,71904
+7970,15632,1127
+7971,66334
+7972,27212
+7973,22620,17818,70807
+7974,82061,28738,3302,82142
+7975,71720,47733,9114,49318
+7976,46236,76241
+7977,15588,52881,1053,79686,32120,1700
+7978,9670,60131,73508,16941
+7979,28384,74066,63936,51309,66230,42460
+7980,54313,65014,59131,2153
+7981,51887,39683,45150,5347,14363,6816,74971,51819,49874
+7982,52063
+7983,31149,51664,38227
+7984,59124,79562
+7985,43527,31837,15814,75087,31618
+7986,68403,3627,70044,55966,68971
+7987,51125,42827,10861,22109,36611,61660
+7988,17721,6650,75508
+7989,1268,5050
+7990,60836,40643,9475,12930,6821,63741
+7991,76648,75216,47281,56815
+7992,76270,24564,70904
+7993,27790
+7994,67183,48067,82038,51594,59892,45999
+7995,18661,21081,42820,55417,75127,46675
+7996,16904
+7997,22314,48633,68756,14832,48896,22143
+7998,27411
+7999,6983,42426,25622,60672
+8000,3802,55713,28587
+8001,25529,50943,48904
+8002,13914,10048,68195
+8003,5606,7491,17903,53680,77936,2812,4938
+8004,16477,4782,70545,69525
+8005,41737
+8006,27371
+8007,72664,61667,12128
+8008,1498,20594
+8009,33446
+8010,62550,59524
+8011,45007,270,42536,32207,15642,79243
+8012,34511,48825
+8013,27172,8946,25883,51506,38376,55088
+8014,68638
+8015,19231,59864,33051
+8016,12270,13218,43776
+8017,32954,27635,73630
+8018,53908,46141
+8019,21488,22898
+8020,61191,80116,28412,58648,49049,50957,54774,2714,21796
+8021,102,43276
+8022,910,56246,35933,25590,32005,61630
+8023,76738,71977
+8024,22871,55113,75130,64504,74304
+8025,68420,20349,31425,29220,1317,14154,3355
+8026,29424,71493,44482,44887,47811,44185
+8027,58325,15920
+8028,11436,59677,13098,76315,17779,40534
+8029,29962
+8030,30107
+8031,30242,39780,72414
+8032,50519,42536
+8033,55165,19415,60291,77777,29028,79389
+8034,66534,60871,56781,81944
+8035,49409,39813,16306,51039
+8036,73146
+8037,54422,36886,77201,74658,56065
+8038,65199,23183,29864,49377,64518
+8039,32999,60791,28104
+8040,34238
+8041,66656
+8042,8670,47512,38205
+8043,63644,42926,72605,64152,49307,41551,7221
+8044,22636,61857,57921
+8045,79134,59838,44616,46824,25134,16082,9830
+8046,56192
+8047,5408,43486,72338,4758,76131,47987
+8048,9706,60860,82130,40544
+8049,79456,3963,65205
+8050,48670,50369,7607,55826,36029,27532,56547,21922,44168
+8051,36224,311,64507,54368
+8052,71828,53614,25354,32157,65365
+8053,81822,71396,73675,24596
+8054,46177,57611,21551
+8055,14920,490,67581
+8056,23329,25652
+8057,358,38451,41318,25734,11263,40521
+8058,9606,5880,13133,75440
+8059,12217,60656,63242,26256
+8060,79023,50657
+8061,76885,47120,7940
+8062,16987,248,8413,366,1671
+8063,38473,25284,67634,31521,61890
+8064,22424,71561
+8065,5533,26100,61060,81659,61124
+8066,44909,45895,8949,40436,11908
+8067,21740,28087,23601
+8068,13112
+8069,58067
+8070,7267,10405,53694,70680,28028,20437
+8071,48178,62396,65491,77992
+8072,54118
+8073,71356,70429,44332
+8074,9172,75010,268
+8075,77533,77617,80519,27903,75544,77656,69185
+8076,33165,59361,6114,7735,54781,34387
+8077,19217,74234,2645
+8078,34806
+8079,39564,39415
+8080,25168
+8081,80118,17860,25668,65362,40890,30932
+8082,30871,34932,54933
+8083,8072,17529
+8084,68537,30174,40337,35645,69174
+8085,55581,44195,58928
+8086,14694,25210,12491,26159,10034
+8087,7635
+8088,6514,12035,11912,51785,59940,73237,72821
+8089,75367,48123,55434
+8090,3572,10503,18983,4511
+8091,41754,1352,31619,69858,21875,55987
+8092,46682,36029,43145
+8093,57990,36029,28459,75658,35279,52115
+8094,22718,19622,56205
+8095,14374,48448,69017
+8096,65043,44319
+8097,48631,26801,4127,81125,33188,29087,81821
+8098,66383,62269,11134
+8099,3355,72873,53908,50644,57472
+8100,52147,59263
+8101,10435
+8102,37770,54035
+8103,75294,57729,39725
+8104,71148,56340
+8105,72144,28753,10320
+8106,70990,48552,8492,11287
+8107,63576,53324,43799,1413,43911,62500,65591,14009
+8108,43251,23943,55019
+8109,6722,42575
+8110,40083
+8111,80529,43022,41382,46464,68331
+8112,56363,1015
+8113,24059,77563
+8114,51921,19181,43134
+8115,70162,70264,14205
+8116,67809,64345,77003
+8117,27092,73579
+8118,7124,753,142,39593,40725,12885
+8119,77057,81401,80969
+8120,17702,80976,51558,62700,45300,806,61379
+8121,30822,8244,45492,5890,67470,65648,26267,24072
+8122,81635,78105,5464,49877,16145,66016,32345
+8123,46116,50790,32756,78874
+8124,17829,79816,51751,58186,72361,71181
+8125,74805,16539,78964
+8126,25343,5634,50622
+8127,41184,37651
+8128,35570,50606,27400,57735,59355,3635,3333
+8129,35844
+8130,30732,77484,24924,67254
+8131,6544
+8132,13206,78934,35822
+8133,11091,16216,24547,52488
+8134,59753,47341,16560,62370
+8135,37316,36497,51504,49335
+8136,42184,27055
+8137,41615
+8138,24105,25375,30947,29027,9307,66843
+8139,28175,10603,47159,42370,24115,63129
+8140,5171,65985,82136
+8141,55446,49017,16237,10098,3837,71258,74359,8891,23772
+8142,6290,26030,52154,64010,77003
+8143,54179
+8144,74410,76284,52421,43404
+8145,43176,75908,80963,20758,75082,66694
+8146,7575,28548
+8147,29747,42553,68657,40555
+8148,79998,68794,70333
+8149,78534
+8150,52984,26748,53690,1408,75114
+8151,13996
+8152,60745,54409
+8153,13416,62701,39259,71440,18604
+8154,54589,60793,70340,46091,29245,43502,49589
+8155,59605
+8156,22954,53554,36017,38881
+8157,54676,3091
+8158,19245,64708
+8159,9215,40356,64058,32845,11329,75824,38377,26397
+8160,70089
+8161,69651,41272,49155
+8162,48160,37131,79195,32095,62632
+8163,81028,10610,58698,18016
+8164,6643,21218,26170,50092,64419
+8165,57999,8880
+8166,366,69957
+8167,2539
+8168,79707,7248,20187
+8169,49745,7881,54919,24687
+8170,44845,65223,9630
+8171,69344,61174,4648,40647,2043
+8172,31454
+8173,61659,31770,75928,4701,74318,44075
+8174,27926,74152
+8175,75203,73683,60917
+8176,24237,9861,39196
+8177,5618,67344
+8178,1150,36603,13021,45049,64960,48149,29066,59575
+8179,3595
+8180,53131,31715,57661,36354,38174
+8181,8622
+8182,4002,73382,45776
+8183,1445,63069,51998,64559,52394,55947,72677
+8184,59616,81654,20799
+8185,6347,23514,1745,14996,51263
+8186,8840,13277,11826,15764,18726,81365,24460,23576
+8187,73124,38355,76696,74463,17558,59081
+8188,21788,19899,19322,24827
+8189,28956,29060
+8190,59503,109,66391,50917,25981
+8191,56622,27532
+8192,57921
+8193,52161,65241,43907,44449
+8194,6375,80161,42527,16549
+8195,44749,54416,35898,43645,2516,71802,6742
+8196,13864,78468,39379,6000
+8197,58797,62987,16142,42955,27012,64334
+8198,51866,75736
+8199,12121,79633
+8200,69440
+8201,5489,28216,44903,72786,38728
+8202,62108,72955,46369,60147,57063,77656,52284
+8203,68707,37491
+8204,45340,28810,11214,45624,46372
+8205,16168,32701,41829,19396,5849,71129,12564,8684
+8206,54727,19282,11215,58298
+8207,6754,21131,66668,64359,80020,46569,42043
+8208,37762,37735
+8209,48033
+8210,80414,5983,42336,71562
+8211,62535,40517,12215,43443
+8212,28847
+8213,286,36018,35808,2121
+8214,23906,28936,82024
+8215,13078,2063,50475,72422,76000,9735,62012,71136,79231,67630,55290,35566
+8216,26652,27855,65109
+8217,23351,16102,44444,68483,17242,30786,19499,30018,42112
+8218,69411,38709
+8219,24545,60739,13435,61645,41222,50555,34758,80036
+8220,20654
+8221,77498,43980,36189,20959,68578,28318,54858
+8222,31576
+8223,56298,28036,36927
+8224,57463,43660,36335,20699,35570,31864
+8225,74096
+8226,1922
+8227,42932,41267
+8228,70145,66414,64914,18528
+8229,27240,54116,10165,15453,39682,29025,76855
+8230,27811,39403,1856
+8231,37397
+8232,74185,27479,76074,13852,63627,56312,57113
+8233,28508,53700,53257,38233
+8234,33687,59385,38504,9635,1653,5757,70325
+8235,14344,18503
+8236,57216
+8237,52090,23591,31041,71497,33238
+8238,48714,68130,19189
+8239,69166,1254
+8240,17159,73905
+8241,2861
+8242,2270,52679,41460,53541,55044
+8243,74167,22248,12446,2299
+8244,1278
+8245,68209,67229,15093,32867
+8246,67290
+8247,49278,80306
+8248,70908
+8249,43625
+8250,45682,75112,66944,51657,17317,49028,24501,40114,24679,11986,61410,22895
+8251,62324,72026,42564
+8252,18135,31589,78259
+8253,55291,71742,34698
+8254,50833,50669,57630,45771
+8255,9795,3776,7136,5661
+8256,34216,36648,61873,41483
+8257,46682,13623
+8258,20246
+8259,48665,4139,64424
+8260,78215,34711,38504,64152,49135,1178,48818,20715,40420
+8261,57429,74463,47840,66082,18684,14804,70256,20802
+8262,26535,29008
+8263,27132,54259,19681,14299,39820,76471
+8264,54788,17166,78207,66913,18097
+8265,58069,37486
+8266,55099,25121,67940,79391,20188,49424,3717
+8267,21867,76065
+8268,66793,36257,57149,19136
+8269,69732,63511,2658
+8270,31753,33446
+8271,39338,55496,5890,66910,42514,79257,3276,25167,63254,2151
+8272,11850,36276,21789
+8273,62354,44520
+8274,10894,23149,37542,18705,25804
+8275,60635,19838,11525
+8276,62948,46286,4985,43349,71864
+8277,32775,61289,6086,45162,12,57562
+8278,24728,653
+8279,63297,40405,36077,13698
+8280,36775
+8281,34227
+8282,42201,43793
+8283,3700
+8284,26380,1838,5782,10974
+8285,32246,1820,55886
+8286,71084,52045,51177,10667,42972,52276,5040,33255,80757
+8287,10033,27667,1112,81095,48221,22259
+8288,4787,5862,9571,69908,53940,81952
+8289,60692,50548,37916,46576
+8290,38074,28466
+8291,803,4747,7521,48500
+8292,75081,1292,42484,52903,26618,71762
+8293,3464,41794,23351,76498,69818
+8294,5064,47579
+8295,23484,47105,48979,6740,45234
+8296,10870,450,29220
+8297,38899,81335,21570,63230,23224,75879
+8298,80458
+8299,28005,7419,78041,29114
+8300,49424,62871,42747,17295,41348
+8301,53423,55841,12550,63863,35181,3681,46941,48304,13866,36091,40902,13000
+8302,11407,74087,64548,73651,18575,21270,37925,44622
+8303,77497,17689,60365
+8304,78573,22916,8929,15778
+8305,32835,76939,78199,34664,66662,16395
+8306,7297,39421
+8307,62742
+8308,15382,6481,79528,76732,11718,14316,49332
+8309,75552,20950,46912,15913,63996,39666
+8310,60996,74834
+8311,55962
+8312,46948,50320
+8313,58625,81353,36549,76497,1651
+8314,64844,51313,7594,47723,22600,14375,67049,50343
+8315,15322
+8316,64706,64270,54948,50324,38026,35592
+8317,73466,72651,58508
+8318,71824,13151,8904,67748,62199,53606
+8319,44768,70714,33368,14110
+8320,62411,69622
+8321,16788,56878,35407,41800
+8322,80171,8172,62449,1387
+8323,50640,1944,79004,64424
+8324,63651,16107
+8325,79122,40963,34343
+8326,64243,45569,16542,7968
+8327,70928
+8328,19657,78087,5205,23246
+8329,77544,16010
+8330,29253,16507,7548,14758,56899,17430
+8331,33740,22761,56237,7630,50867
+8332,37346,68692,26867
+8333,53003,18184,48023,31441
+8334,53997,78126,15778,80610,14322
+8335,3050,7197,6200,33546,77002,29955,68998,51438
+8336,75211,62206,4546,51177,31391
+8337,57775,17342,28254,71055
+8338,27215,18138
+8339,77403,77915
+8340,22233,64028,38029,81701
+8341,6836,18790,18684,10125,43093
+8342,43698,3317,39405,31765,50009
+8343,49008,7564,81138
+8344,807
+8345,63302
+8346,47586,31469,13777
+8347,79687,53994,23075,79793,22588,52364,26963
+8348,31049,26586
+8349,11529,51970,1002,16449,29093
+8350,76315,32890
+8351,6220,74982,58131
+8352,73021
+8353,81378
+8354,29973,81933,73095,64267
+8355,66063,45219
+8356,45960
+8357,56815,2168,35216
+8358,39364,15998,74132,14578,6195,7032,2690
+8359,24935
+8360,80172
+8361,67255,2556
+8362,16903
+8363,73506,18150,24105,62411,68407,40155,35338,53880
+8364,36682,53725
+8365,62676,47502,45821,63008,55935,8318,9050
+8366,46079
+8367,45682,46470
+8368,62009,9811
+8369,70318,77790,63868
+8370,9124
+8371,54581,13914,40061,51478,46082,7760,22996
+8372,13190,57696,52996,75809
+8373,50717,11964,45477
+8374,62198
+8375,71067,17219,38182,32161,76448,40236,33816
+8376,10039,18813,76622,72140,52942,68841
+8377,56308,2158,60627,66480,50860
+8378,36775
+8379,76984,18344,13691,74244,32699,29451
+8380,9042,46383,75138,12282
+8381,40866,70583
+8382,3667
+8383,76231,68024,61134,35910,4781,34494,63652,7705
+8384,22669,11940,41271,42621,34602,10590
+8385,81404
+8386,36745,65317,77561,65770
+8387,47004
+8388,42466
+8389,23854,8237,48610,24021,36758,71017,49970
+8390,78234,71225,78747,28803,47086,40195,78967
+8391,61815,35881,27049,16670,60704,9603
+8392,76316,28943,81000
+8393,44112,26652
+8394,16815,41408,20747,41623,11589
+8395,14626,15121,12701,78592,15682
+8396,63220,34630,22617,39494,78949,22204,30095
+8397,59399,78204,44400,42270,11351,25351,38293,22365
+8398,57408
+8399,36840
+8400,15339,55438,36197,5058
+8401,40567
+8402,4869,20227,68266,38274
+8403,15659,48016,64958
+8404,47676
+8405,51624,57073
+8406,50380,43368,15558
+8407,62048,44168
+8408,10891,53131,27505,19478
+8409,6391,17903
+8410,39452,4760,43816,50081,12291,70033,75712
+8411,19182,3266,47430,42890,7794,80037
+8412,59128,36002,12596
+8413,20788,75899,10649,74986
+8414,17159
+8415,8489,58862
+8416,39682,80016,61958,24882
+8417,23678,39178,79036,27189,5937,80678,74834,30422,25033,60086,35000,33292,74180,23915
+8418,64258,18455,41326,4830,56854,44666,18085,81914,74781,9193,50138,26948,62378
+8419,39067,65727,23191,49254,3135,44511
+8420,41975,60337,74079,36820
+8421,79845,70212
+8422,75060,5117,19625,49745
+8423,43922,997,35070,41183,68332
+8424,6875,1503,41635,52394,67797
+8425,57262,45763,42810,70421,12577
+8426,34102,51456
+8427,60314
+8428,69999
+8429,59069,56084,25388,31064
+8430,48875,31087,30890,37853
+8431,4047
+8432,54664,52236,32367,5505,57962,21768,62988,58383,44506
+8433,65161,59615
+8434,16391,72402,42620,61325,80634
+8435,47212
+8436,69210,17829,51097,51594,26285
+8437,48836,40658,2308
+8438,59705,3585,64553,14452,49326
+8439,62248,20785
+8440,57609,79077,75441
+8441,76446,24193,67440,44902,29609
+8442,590,70157,41213
+8443,1813,75099,29825,70258,56954,49181,54901,35602
+8444,8880,6159
+8445,70941,2841,59943
+8446,46746,63061,76185,18084,66199,61755,15687,76058,31039
+8447,36915
+8448,9073,40298
+8449,4656,63663,7781,71620
+8450,20591,35209,38523,64466
+8451,20764,16202,56276,19564,27912
+8452,3513,36050,50335,17248,39418
+8453,39511,80083
+8454,26315
+8455,69333,49103,2515,6037
+8456,7072,51478,54098,15131,55890,57367,28119,46267,11072,25482
+8457,50495,10728,80818,46825,56995,32020,2682
+8458,27844,57626
+8459,4451,30567
+8460,32816,31211,81664,40603
+8461,34936,21789
+8462,12603
+8463,1145
+8464,74238
+8465,25742,32701
+8466,47829,58252,5025,33223,22547,46185,24032,77266,68116
+8467,6963,2970
+8468,57470
+8469,68052,61826,17176,56681,54940,48113,48961
+8470,26188,17279,54682,27711,67566,4482
+8471,41161,54005,16604,44761,32320,22270,80895
+8472,47005,78509
+8473,4783,61499,55941,15853
+8474,20788,54341,31025,51768,71792
+8475,76765,60743,20327,28888,67594,9829,18645
+8476,71615,26367,29805
+8477,55120,54026
+8478,24881,62434,81918,39296,38010,78661
+8479,77121,60098,6572,37087
+8480,38482,37398
+8481,1780,13942,50407,10482,74400,5994,66745
+8482,60672,10994,69959,61209,81731
+8483,244,42292,14063,72238,31727,60883,61934
+8484,71391,6544,31222,74863,58102,17455,60710
+8485,38552,10382,20183,80842
+8486,14381,42835,8333,73170,46629,36581,70270,67516
+8487,70278,68689,12149
+8488,23035
+8489,4600
+8490,73631
+8491,17623,6246,38252,26804,20326,42936
+8492,70852,331
+8493,65010,14370
+8494,78586,43667
+8495,47987,10934,19072,33114,34686
+8496,66290,34903,13219,61770,44608,75048
+8497,62819,29444,6920,35969,50406,42819,74766
+8498,53991,61688,27081,47702,9312,42578,5031
+8499,10128
+8500,21426,15137,77417
+8501,62527,67442,27791,24573,60065,71345,34449
+8502,51028,41391
+8503,41044,31626,33245,63447,7267
+8504,48851,52921,19828,73840,79205,49492
+8505,64727,31851,32881,16341,57984,10582,78985,43552,14189
+8506,44028
+8507,14855,71473,65826,73204,8252
+8508,64620,47004,48851
+8509,33416,69674,65708,19915
+8510,5360,11104
+8511,37348,35331
+8512,26458,55449,67365,2211,54395
+8513,60002,51056,31441,30952,63759,10062
+8514,72599,12681,24027
+8515,22633,67523,47131,18038
+8516,47082,23798,11836,46846,48646
+8517,48608,23083
+8518,65462,19088,79474,26125,81642
+8519,72294,35210,40217,17925,43182,68943
+8520,14120,78173
+8521,22409,56631,34724
+8522,66158,66512,37133,78453,56815,61125
+8523,2001
+8524,74374,2144,51947,16115
+8525,71921
+8526,62631,36013,38901,81364,53629
+8527,77691,35958,26141,17829,23765,73833
+8528,29096,3493,26957,520,9767,38108,40244,21522
+8529,45141
+8530,42693,14870
+8531,56526,31846,26399,33515,39141
+8532,5732,62423,67423,57278,49424,21724,28663
+8533,55977,14998
+8534,77485,38662
+8535,36362,80593,57971
+8536,66797,30842,57582
+8537,73571,6563,18849,59004,39335,29274,66678,82121
+8538,14038,2852,15498,29361,11684,16999,50123,32746,66349,19651
+8539,29644
+8540,59679,26386,36898,37901
+8541,67824,38976
+8542,57525,16612,78838,28773,12108,74810
+8543,28633,64186,31449
+8544,66022,27405,39096,79838
+8545,12035,32889,62905,27484
+8546,71632,29084,76605,53126,42570,30606,30488
+8547,29131,5873,63920,69096,50990
+8548,49086
+8549,37434,19892,18613,58996,46710
+8550,71755
+8551,65258,22316,57558
+8552,56741,81726,28130,57661,37337,47718,38660,38037
+8553,74781,8388,13795,61930,59136,1120,72979,14267
+8554,40764,76925
+8555,68272,19587,10137
+8556,70465,72633,24169,41327,62022
+8557,47669,39208,73478,45495,11876
+8558,60591,16307,68454,20985
+8559,13264,75654,6979
+8560,79847,70077,30907,29781
+8561,81294,60278,48253,29054,54756,66437,73527,26585
+8562,37045,2806
+8563,60946,12249
+8564,74461,24876,77475,13482,44385,26255
+8565,80410,17112
+8566,73461,19830
+8567,48754,48423,49098,59577,67263,71,55517
+8568,78193,2084,18923,71832
+8569,74031,37332,50881,8930
+8570,58740,50619,22280
+8571,32539,37760,46832,69143,16773,72839,23,66327,53504
+8572,44763,50800,19363,75213,14195
+8573,40014,57160,23943,56748
+8574,34563,65310,66642,2042,40795,16560,25036,2704
+8575,11734,26937,41207,20636,24724,37373,68818
+8576,35150,16443
+8577,40900,7990,58699,60657,74220,10262
+8578,32279,30218,63576,41562,728,78063,69679,42746,66811,66129
+8579,50263,60884,33732,33632,63282,79577,3774
+8580,22183
+8581,16304,49971
+8582,9805,26149,54937,17183
+8583,28590,31123,48872,22672,36942
+8584,28332,69156,61528,78321,5714,25383
+8585,30733,1465,61645
+8586,22538,55834,43349,37220,25013,1376
+8587,57937,60264
+8588,46035,44513,59529,54020
+8589,8062,60274,43787,9016,43145,14957,32343,6190,23999,68212,42062,22523
+8590,9715,20581,59036
+8591,15445,10435
+8592,63349
+8593,56628
+8594,77133,2111
+8595,361,75385
+8596,54012,13067,37819,26409
+8597,11654,60827,1812,3746,1427
+8598,51584,42645
+8599,57382,31518,35726,55532,35086,40396
+8600,29844,73869,71944,77656,80488
+8601,63199,38615,68499,38156,24444,43305
+8602,63907,70234,8446,32928,29744,35686,23202,34191,44536,5597,66551
+8603,8312,16272,9960,16702
+8604,4049,33804,65191,77374,71568,30238,28890,62591,39583,69557,15646,71035
+8605,33552,44366,9587,80076,21705
+8606,32053,76985,30665
+8607,66057,71193,72799,27103,31220
+8608,51292,40933,75953
+8609,56183,79878,4438,63426,26230,6029,82030,5185
+8610,7558,29095,78907,75378
+8611,6151,29511,33831
+8612,61050,72079,48139,10928,9494,43371,14384,42532,5192,14265,41136
+8613,57896,46948,32940,6925,55581,2944,63497,53592
+8614,12741
+8615,16957,1919,27781
+8616,75072,50174,20503,45142
+8617,52052,43056,74946
+8618,38192,26873,50613,59347
+8619,5878,75340,75124
+8620,64959,14064
+8621,50516,23382,42461,16010,79454,50628
+8622,16903
+8623,57118,76303,13790
+8624,27120,81692,71070
+8625,5012,25253,38794
+8626,32627,24700,32562,14164,3512,16997
+8627,39907,28688,15208,23256,76570,53004,72570
+8628,10821
+8629,70032
+8630,1937
+8631,60382,70076,14291,68505,80680,73578,15331,11125
+8632,31422,44666,25462
+8633,79522
+8634,52913,15299,20635,29039
+8635,60217
+8636,8419,27203,21293,73596,41758,44944,55649
+8637,29747,6798
+8638,11496,81698
+8639,43464,38563,38982,22525,50026,25144,67058
+8640,46157,44540,54225,69779,14528
+8641,13966,25182
+8642,22431,9547
+8643,68346,46371,34261
+8644,4250,41353
+8645,46281
+8646,50711
+8647,9541,70256,72363,30002,51096,80492,8189,65648
+8648,18183,12307
+8649,34116
+8650,6341,43992,16286,53976
+8651,537,7558,30943,52689,3649,14947
+8652,32585,39356,31859
+8653,75892,55212,18347,71214
+8654,45356
+8655,11812,33676,5491,7595,7886
+8656,72018,69849
+8657,21576,73268
+8658,63622,44346
+8659,72632,3983,49076,80660,57151,38755,16185,37663
+8660,1800,33416
+8661,4307
+8662,54904,33061,81448,45309
+8663,76733,66437,46669,71298,74390,41253,57288,69834,62069
+8664,79263,47792,79767
+8665,40213,71648,38
+8666,41383,35754,16244,40148,52151,78674
+8667,69705,49228,48983,18822,2311,11521
+8668,54003,20310,57833,71428,24018,5700,13258
+8669,17661,46258,9054,68507,42332
+8670,9991,52047
+8671,67827,61850,64086,12803,5152,34467,41137,70944,33695,13874
+8672,50115
+8673,49743,81313,76472
+8674,50988,36204,14318,22039,55682,38515,78334
+8675,21886,24941,78235
+8676,56842,60323
+8677,34305
+8678,79760,30549,65239,75232,75616,61614,5411,44361
+8679,45262,78241,78968,52766,7502,700
+8680,46984,58463,66535,883,73612,19921,59644
+8681,8620,43969,13361,51509,43562
+8682,79945,76242,72348,37156
+8683,75135,68136,56901
+8684,53599,3024
+8685,23793,9111,68098,11858,30237
+8686,24026,53364,51374,50006,63924
+8687,70895,66311,1370
+8688,74216,32091
+8689,7994
+8690,1620,71959,51919
+8691,30621,56049,45742,6503
+8692,12030,74072,43214
+8693,79804,55037,77801,65650
+8694,23958,81824,5119
+8695,56824,10473,40426,41992,68391,28473,21135,27949
+8696,58417,31791
+8697,52891,71614,40849,8439,35146,33528,28303,24868
+8698,14125,77048,46572,53933,19699,71144
+8699,74088,21636
+8700,3991,42361,62266
+8701,51244,10032
+8702,3420
+8703,1303,3710,55182,24402,7252,72490
+8704,51529,11889,14788,29576
+8705,8930,48192,8581
+8706,62657
+8707,58645
+8708,58444,50798
+8709,62268,30651,54057
+8710,24994,10038,44301,3787,35411,55848,20923,889
+8711,37351,75025,61418,53714
+8712,77922,52543
+8713,22390,67872,45757
+8714,58022
+8715,41201,9016,61534
+8716,67479,37397,62709
+8717,42759,12068
+8718,60496,70213,29825,46908,64204,55428
+8719,32287,72206,64987,26003,18109,21335,67682
+8720,5368,32852,243,72487
+8721,47493,42385,77449,25986,9191
+8722,79983,15764,31270,47415
+8723,51144,26225,35666,22317,62032,46362,7192,75704,73977
+8724,6719,77038,19558
+8725,76585
+8726,36770,41049,43397,69098,64117,33594
+8727,27626,65115
+8728,23250,56225,76058,57559,6636,18284,4421
+8729,49254
+8730,47523
+8731,36518,74519,70929,3867,59910
+8732,65230,76033,40727,27790
+8733,51503,17378,64376,1506
+8734,79504,73726,19830
+8735,51716,21880,37030
+8736,35838,69135,37793,80237,34462
+8737,3030,14158
+8738,60957,76941,73402,31292
+8739,18146,33651,26963
+8740,19019,45586
+8741,71717,17875,72855
+8742,7165
+8743,12922,17402,42020
+8744,32917,48106,14607,61309
+8745,60579,63621,39856,55667,39838,70385,52165
+8746,59099,47928,35390,8802
+8747,76309,7688
+8748,49740,51684,73082
+8749,19528,35659,16558,12414
+8750,68844,78041,26218,36274,27374,21355,46038
+8751,68084
+8752,81443,81556,72366
+8753,17035
+8754,27197
+8755,25261,26422,77814
+8756,74283,2425
+8757,58070,35505,65814,41013
+8758,26092,75526,14790
+8759,80735,4866,60600,73093,47110,76602,38442,46944,63870
+8760,7570,23314
+8761,65332,7231,23075
+8762,58665,10061
+8763,80772,29103
+8764,49438,18256,29065,33242,18309,5209
+8765,34485
+8766,44390,51973,29802
+8767,8751
+8768,75185,7240,50093,27102
+8769,5535,78541
+8770,727
+8771,1966,70272,48275,7155,79989,51240,46477
+8772,21789,49278,55333,29674,23492,81349
+8773,72919,54206,38821,590,5523,22169
+8774,46807,40404,81757,60903,44815,79987,22081,63225
+8775,77815,4428
+8776,18283,26361,47105,8326,48465,32110,9076
+8777,71791,56036,74197,66192,15462
+8778,35094,25898,2944,46534,8338,67720,58589
+8779,58017,43280,26827
+8780,39661,64727,47490,8519,76642,13581
+8781,41449
+8782,19117,40531,77424,62292
+8783,50881,42965
+8784,72085,1664,11038,67689
+8785,57478
+8786,65553,16775,28893,79713,12236,1308
+8787,33211,43623,67234,64998,55309,22930,75741,43487
+8788,58112,49306,74237,24491,33031,49187
+8789,38387,50174,77051,30662
+8790,68081,54753
+8791,63881,3447
+8792,45174,75904,32501,32376,25643,55239,22540,9840,28523,43203,48113,55573,81378
+8793,49619,77436,81071
+8794,49537,19291,22822,20502,21031,33121,9693,71113
+8795,9918,3526,59116,4819,48369
+8796,62593
+8797,75626,61867,7857
+8798,14768,43682
+8799,30581,21572,71612,49273,50471,74552,5147
+8800,23802,65414,41879
+8801,1132,49017
+8802,67851,29045,9616
+8803,35734
+8804,52951,17678,5395
+8805,30234,3917
+8806,55847,67556,36635,36557,28917
+8807,29997,28947
+8808,72232,62696,57637,50461,44928
+8809,17647,69249
+8810,69718,39963,46994,62293,56571
+8811,49351,69128,71470,79039,67318,54902,26206,22139
+8812,53782,27504
+8813,9471,81456,9376,37252,73508,28111
+8814,1921,39804
+8815,44547
+8816,21466
+8817,56907,41726,68695
+8818,79764,12325,57640
+8819,44373
+8820,38421
+8821,36390,32374
+8822,50514,35333,33983,74162,67387
+8823,25981,14405,46238,75934
+8824,30705,40244
+8825,23868,15919,47484,65759,17966
+8826,70811,53853,13267,22711,44574
+8827,55037,4832,70302,58225,74840
+8828,45243,44744,311,70938,53082,59295
+8829,34982,45436,5916
+8830,78276
+8831,14322,77701,74160
+8832,57854,2552,4000,43996,18485
+8833,56333,16880,19772,20000
+8834,35338,74224
+8835,13361
+8836,15813,59162,48557
+8837,81390,36714,36639
+8838,78498,31654,8001
+8839,76992
+8840,42999
+8841,7878,53963,33333
+8842,66376
+8843,41423,79982
+8844,52418,75227
+8845,74475,52130,62609,19776,49951,79965
+8846,9083,70449
+8847,10505,42879,59063,39975
+8848,50860,24907,9555,70309,61660,39071
+8849,37098
+8850,78641,57206,50179,50764
+8851,31405,22941,50530
+8852,56485
+8853,28538,71749,28002,29844,70357,55219
+8854,13207,62232
+8855,48087,64677
+8856,14315,56485
+8857,50331,23986
+8858,37579,3421,6244
+8859,6847
+8860,60264,16790,14541
+8861,4867,68407,40566
+8862,3559
+8863,22798,77213,47378,954,15235,19215,38698,22166
+8864,39035,9805
+8865,49815,11994,44377,12684
+8866,22164,18355,26998,76677,23402,18485
+8867,24987,19450,76684,39453
+8868,29291,4273,36971,28924
+8869,17568,80669,53124,59338,75293
+8870,32045,19291,38890,79998,56710
+8871,69309,6486,31223
+8872,24043,65842,52343,10593,54402,19604,59994,66842
+8873,18143,48502,8828,81751
+8874,36438,32911,81413,74759,19687,44445,70731
+8875,73300,2809,42790,34306
+8876,44845,43164,63230,59000
+8877,23014,3999,754
+8878,17057,28178,60303,70947,48505
+8879,72679,15790,8653,74898
+8880,67397,25379
+8881,73470
+8882,67197,42417
+8883,44950,46958,64303,31556,10366
+8884,67432,22012
+8885,49031,37624,77135
+8886,31040,81423,28162,17388
+8887,41880
+8888,5664,3170,47141
+8889,53403,76593,41407
+8890,29847,7253,51430
+8891,51308,65193
+8892,35871,76701,17709,17293
+8893,75838,50026
+8894,76318,50356,27745,56035,42039,57477,38576
+8895,74375,21603
+8896,16382,41511,19802,3977
+8897,32705,54973,54774,81899,69191,76260,27898
+8898,72309
+8899,4717
+8900,16347,60095
+8901,48717,74161
+8902,69102,54822
+8903,14663,51797,80669,39239
+8904,36377,22969,58420,80695
+8905,64034,48655
+8906,41297,32303
+8907,65187,66148
+8908,27359,12268,29016,72386
+8909,48210,45659,42474,948,16263
+8910,12615,23459,81379,13592,40020
+8911,8714
+8912,41551,27244,34680,1294,53292,35501
+8913,50086
+8914,55935,7507,37647,70654
+8915,21141,23537
+8916,44950,51878,75046,68521
+8917,2425,11201
+8918,79650,22049,75243,10397
+8919,61121,21659,74705,443,63923,1808
+8920,46629,60786,22927,2493,21133,22880,81324,25855,10389,23461,30957
+8921,11944,30042,64193,23114,56569,36071
+8922,61668
+8923,77222,72775,62923,17512,51630,53591,53027,16400
+8924,67171,41721
+8925,43368,43193,53116,11909,31483
+8926,28077,1602
+8927,687,42301,23179,16518,50231,30649,20323
+8928,77774,30478
+8929,7259,29704
+8930,2139
+8931,73708,56250,42656,63869,61139,19719
+8932,79900,5878,11262,58628,29893,52079,22441
+8933,76922,24980,11037
+8934,51781,81414,64853
+8935,17884
+8936,5224,41309
+8937,60818,77437
+8938,44265,29237,77482,47610,71233
+8939,72830,77094
+8940,35163,30415,39534
+8941,32264
+8942,53916,38692,55283
+8943,22444,42890
+8944,52859,26979,54150
+8945,33027,29287,44457
+8946,61107,61996,32082,74165,77805,78655,10258,37208,27877
+8947,33652,16609,46162,15744,54833,43447
+8948,45495
+8949,79269
+8950,49159,9538
+8951,65342,19339,14207,37682,43536
+8952,68260
+8953,25058,68369,16943
+8954,15071,31532,7353,10347
+8955,75328,54255,79379,21466
+8956,48740
+8957,2702,7723,77066,31689,55861
+8958,51343,31211
+8959,52306,23965,43460,25751,66132,65770,73084,67844,72772
+8960,42472,34681,24415,62376
+8961,74288,34093,29677,77454,46011,11393,15005,9774
+8962,67007,81404,73808,38095,27525
+8963,31881,17438,50105,48225,76924
+8964,33211,32407,82136,40425,26745
+8965,78575
+8966,78688,51763
+8967,507
+8968,23070,34704
+8969,33440,56943
+8970,29306,5008,8809,27814,10375,69924
+8971,9164,16332,20134
+8972,59942,79968,4576,79353,51451,22387,13352,45596
+8973,14095,61285,68743
+8974,47302,27444
+8975,39584,21036,41324,67402
+8976,80695,40879,55906
+8977,63540
+8978,45193,17202,8381,1093,14355,3528
+8979,35653
+8980,46963,72605,56031,53119,76820
+8981,9817
+8982,25820,45302,46312,44525,34891
+8983,80670
+8984,59109,14929,56721,29973,31074,30536
+8985,41471,73409,17895,34836,1011,40277,14342,66503
+8986,7451,1787,28170,57875,18254,31103,4284
+8987,57455,43979,4828
+8988,49395,17604
+8989,10207,39585
+8990,49914
+8991,54539,68143,15434,12372,24372,4714,60050,51254
+8992,14128,65770,16051
+8993,36188,23603,39852
+8994,1098
+8995,67695,74989,36017
+8996,37928
+8997,68613,72610,71019,27548,47158,29325
+8998,39013,82069
+8999,58024,49930,6628,23767,15556
+9000,14536,6556,32383,64155,42520,74202,26035,17010
+9001,50401,51433,33743,76371
+9002,29657,79427,38215,31861,46677
+9003,18656,21827
+9004,76439
+9005,38579,5118,62700,48742
+9006,8188,30860
+9007,4616
+9008,19199,76602,32533
+9009,33603,34423,19318
+9010,79764,40480,39500,54179,39234
+9011,77997
+9012,39431,19174,10637,33485,25700
+9013,34818,30950
+9014,32221,45772,80468,14834
+9015,35515,42667,78572,23746,43333
+9016,18732
+9017,68394,49374
+9018,2753
+9019,75389,69476,29179,43868
+9020,11433,61639,24711,40212,5200
+9021,43341,28640,36444,63744
+9022,41005,70526,33554,77696,59225,37708,9383
+9023,26828,34157,16708,79773,19902,54571,78858,18231,11490,57967
+9024,80384,50978
+9025,46092,73545
+9026,39750,58126
+9027,42210,27369,26050,78259,49437
+9028,54608,66471,45712,2758,50074,29977,22407,40937
+9029,19589,63797,16057,38402,68830
+9030,20594,15682,51362,20450,16755,35488,72753
+9031,49730,1238,6909,41134
+9032,33222,47362,28810,27508,38946,21802
+9033,77074,19241,21071,33210,67643,56135,8988
+9034,52132,23317,2753,73599,7713
+9035,73289,37166,74486,66758,47704,33855
+9036,50373,59058,14498
+9037,28125,56376,8767
+9038,24539,73461,61023
+9039,54646,61996,70459,9321,81038,80640,22060
+9040,49437,34440,24748
+9041,73545
+9042,68084
+9043,69013,33069
+9044,67403
+9045,32565,14453
+9046,43828,75049,5067,59473,38183
+9047,34832,25434,56693,3554,31479,18494,28171
+9048,2725,8537,63992,76480
+9049,10482,26888,38665,35548,62076,44017
+9050,18366,63869,15480
+9051,55095,68987,54696,71359,46643
+9052,10592,6392,12715
+9053,34157
+9054,73064
+9055,41609,1899,45578,66822
+9056,23707,23544
+9057,44711,70003
+9058,70988,74043,77644,62045
+9059,39173,70537,67351,58726,54928
+9060,27184,5697,71825,29860
+9061,73123,51722,29551
+9062,64434,77696
+9063,25559,45175,34818,21456
+9064,32071,56918,57801,41236,36080,24724,53411
+9065,48896,74998,55930,13888,66778
+9066,65494,30492,65525
+9067,11864,17618,26844,13647
+9068,22035
+9069,66360,81197,46932,80586,41782,19850,78753,65315
+9070,57482,38479,61395,23170,41702,41852,67533
+9071,45628
+9072,12602
+9073,81699
+9074,20859,2034,18860,61900,71492
+9075,70692,9559,27784,76240,1662,20569,21848
+9076,19256,35607,45652,59183
+9077,61308,29852,73760,51402,5674,12552,53168,77651
+9078,19052
+9079,80289,57485,79003,11507
+9080,74466,49327,24602,53716
+9081,43343,78074,51877,66471
+9082,80242,53909,23268
+9083,35295,36184
+9084,33611,71439,61669,61440,59044,79807,35547
+9085,79673,64731,40198,32204
+9086,29150,82031,33643,22225,46169,59643
+9087,61880,71833
+9088,66620
+9089,47926,70217,35462,52482,20170
+9090,39668,9980,39757,70008
+9091,19240,63348
+9092,47461,41437,34089,20319,71752,1288,53681
+9093,48633,4770
+9094,20940,31303
+9095,21948
+9096,18887
+9097,26685,14119,2781,34824
+9098,79447,27009,36007,29785,26450
+9099,14396,74099
+9100,67924,22797,75516,31654,62260,15074,33512
+9101,61454,77966,28866,30146
+9102,49504,22600,67717,13071,69688,70392
+9103,81111,52177,54072,2097
+9104,74951,2640
+9105,54503
+9106,21030,1681,39930,14781
+9107,74506,35226,80101,14671,75627,18848,76857,18351,29044
+9108,75882,16138,46597,9495,71340,55434,9348
+9109,47280
+9110,12577,45512,13450,58427,24285,24249,39918,44937
+9111,35338
+9112,57521,69038,45709
+9113,59259,57247
+9114,14060,17082,52190,38480
+9115,50643,29635,78850,10861,41701,35794,56468,13640
+9116,59653
+9117,65285,7362
+9118,22579,35847,66863,33012
+9119,51545,56688,9011,34186,36328,59252,61833
+9120,40269,6618
+9121,49931,57324,20373,61303,60202
+9122,25377
+9123,33925,67589,45518
+9124,14498
+9125,21563,76340,69790,50440,63317
+9126,78942
+9127,77890,20119,50690,12174,21288
+9128,75681,76383,20325,35074,41657
+9129,56761,65781,22471,70364,25141,67303
+9130,16487
+9131,20418,38294,17117
+9132,72362
+9133,78180,64211,8540,73038,34753,64410,80585,47452,10758
+9134,25502,30942
+9135,67042,71332,79203,27634,2510
+9136,20454
+9137,48596,60611,43283,53186,72147,1183,66491
+9138,4743
+9139,17282
+9140,21880
+9141,50881,26519
+9142,25099,76320,12866
+9143,69127,46430
+9144,41593,79716
+9145,57654,44728
+9146,77616,60877,6237,36107
+9147,75186,68409,12105,42550,8816,71209
+9148,36960
+9149,49017
+9150,9138,42308,26477
+9151,59655,17602,31031,55119
+9152,76396,27623
+9153,14381
+9154,32275,40302,14306,55649,44475,7966
+9155,41826,6479,52615
+9156,69411,69338,31812,76273
+9157,58269,68369,47604
+9158,46866,9809
+9159,71533,4852,30445,18257
+9160,45098,61151,3271,3543,71184
+9161,43836,52147,81924
+9162,51787,13368
+9163,77399,43134,72100
+9164,28029,34144,48649
+9165,51229,10409,68780
+9166,23181,38717,59576
+9167,44673
+9168,70341,80570,39780,22128,73544,37353,67352,26578,16267
+9169,68289,20992,30818,36400,70932
+9170,4534,11417,28071,58053,64878,23104,4360,24702,13607
+9171,79158,6803,20253,21243,32930
+9172,9417
+9173,26180
+9174,74012,58362,12186,63693,38867,61911,13992
+9175,13134
+9176,60292,79618,9181
+9177,64960,49526,29610,74922,18299,11319,67290,78392,41609,79642,52751,31996
+9178,57159
+9179,30403,80292
+9180,46941
+9181,66524,67387,26930
+9182,39959,19164,71946,26109,12717,40856,37188
+9183,72132,62973,36300,7226,25799,79035,24393
+9184,17420,20079,66686,5072,28935,9400,45528,44935,11786,33735
+9185,10242
+9186,12674,49740,45975
+9187,7476,5118
+9188,55782,73631
+9189,27366,42331
+9190,81675,46382,27248,41409,15304,64903
+9191,42047,69733,51489,8467,29623
+9192,9711,12162
+9193,19274,67752,47611,10109
+9194,70908,65136
+9195,56864,39913,71929,45709,58192
+9196,19076,36940,18448,28587,39412,66373
+9197,542,31818,14198
+9198,771,57332,51592
+9199,47231
+9200,43700,25329,44993
+9201,66675,18281,79018,72688,8055,9502
+9202,7936,26392
+9203,55930
+9204,26304,63046,69196,33077
+9205,36349,66148,64415
+9206,6066,32902,10881
+9207,72392,2968,4216,81717,78975,59926
+9208,56545,30788,4118,44669,66506,60294,39659
+9209,76734,22596,29048,11202,60305
+9210,79909,54637,34986,48730,20643
+9211,20085,34201,19360
+9212,34487,19562,73516,6654
+9213,27224
+9214,16031,22741,29467
+9215,2847,43965
+9216,33308,52575,7294,46740,80413,39323,9260
+9217,32692,25401,44591,44012,11483,31387
+9218,38113,62047,40582,49985,18796,77811,14006,23451
+9219,74942,65108
+9220,51982,47940,36692,13134
+9221,59194,58652,31884,7976
+9222,59270,63062,57360,1559,52605,4755
+9223,72455,59448,65953,74180
+9224,56621,71020
+9225,24651,61120
+9226,76318,64639,3373,50914
+9227,42157,16518,56167
+9228,7280,20559,63600,18
+9229,19093
+9230,25993,24387,74295,18415
+9231,21698,38829
+9232,13796,26085,13605,64974
+9233,55427
+9234,16551,20345
+9235,51561,6778,18929
+9236,81286,7851,76424,70104,6180,4951
+9237,61850,62791,21528,64879,43031,59952,70875,81057,22883
+9238,34182,22969,2742,62629
+9239,19783,61476,1889,31409
+9240,38895,67556,58548,56853,52157,81828
+9241,51997
+9242,76676,63251,57657,66140,2376
+9243,73165
+9244,75161
+9245,24705,81491
+9246,40270,49118,72485,63645
+9247,9259
+9248,40498,6149
+9249,55634,23467,1548,79889
+9250,69532
+9251,7851,10000,51476
+9252,48094
+9253,80788,52038,79727,16473,14396,54359,55685,68756
+9254,63049,13072,74562,33877
+9255,53780,78956,20650,14131,68477
+9256,31428,73323,36369,69384,44448,77640
+9257,59669,12286,21661,9452,71387
+9258,8287,11967,64761,40272,39441,79874
+9259,37039
+9260,8849,61496,68045,75135
+9261,23722,35785,50145,61903,19767,7621
+9262,3159,18203,28744,39674
+9263,48396
+9264,52919,13906
+9265,26156,78196,50587,20302
+9266,37767,76704,17877,9968,10503
+9267,18862,68152,18615,80194,35097
+9268,14270
+9269,45896,48498,21512
+9270,69688,72017,67957,27844
+9271,6239
+9272,58388,43991,10236,5188,38576,56890,81481,45129
+9273,80490
+9274,4003,46550,9592,16216,1955,30449
+9275,36758,50725,45416,43687
+9276,37924,57830
+9277,2627
+9278,26260,59295,31539
+9279,26388,64180,16338,12242
+9280,65070
+9281,81101,13729,23267,62239,40803,46221
+9282,33437
+9283,10817,43752,34035,18295,62690
+9284,60651
+9285,21299,12394,62473
+9286,46320,59419,1087,33937,36684,11738,54825,31962
+9287,65570,1945,45919,62297,210
+9288,58239,55020,10478,46273,2871,9790,9671,22347
+9289,588,19983,70850,50754,15032,4791,67765
+9290,7732,17265
+9291,2121
+9292,64174,30445,53815
+9293,56760,59893,1328
+9294,42119,44909
+9295,31202,44012,72029
+9296,5678,13318,29416
+9297,51307,46828
+9298,20166,51106,50908
+9299,39290,71314,71223,17794,41708,32575,67654,65806
+9300,57149,8581,34255
+9301,51880,11234,58581,82009,22590,15374
+9302,66309,22572,38921,33791
+9303,40647
+9304,20064
+9305,36450,30354
+9306,61300,4235,54830,57168,59495
+9307,50295,40749,33325
+9308,66127,5277,4792
+9309,66198,61427
+9310,63410,46472
+9311,71070,9979
+9312,79697,47811,12279
+9313,63553,68838,41767,42150
+9314,52631,39862,20499,63878,40272
+9315,58144
+9316,13955,65353
+9317,6686,65250,29921,26541
+9318,55913
+9319,26003
+9320,37410,48758,18148,14754,1411
+9321,41179,37908
+9322,48901,3109,42316,9571,81131,10589
+9323,2725,79558,16233,4813
+9324,60074,26876,41158,13081
+9325,17303,46857
+9326,50198,50867,47921,77010,43626,23086,20989
+9327,65087,66266,75072,8646
+9328,59269,32119,68394,48914,54945
+9329,56276
+9330,19614,13722,32634
+9331,2698,47717,7691,10348,3466,27334
+9332,74078,35387,58743,53383,14714,18841,69929
+9333,81826,76628,61343,25431,68962,34188,81627,9860
+9334,49036
+9335,64529,48264,16607
+9336,21904,22377,69430,25403
+9337,45208,34561,9206,44528,26158
+9338,23811,2658,24771,59530,1902
+9339,6949,69043
+9340,30860,15401
+9341,81416,57639,42353,19320,27311,14720
+9342,42507,21602
+9343,15204,47517,66125
+9344,51692,50753,59605,75637,52574,5053,50938,46997,75353
+9345,39630,39597,80648,73511
+9346,11214,39060,58126,77034,64701
+9347,41270,11438,3796
+9348,44623,9316,59291,19166
+9349,41713,1646,1576,10850,77803
+9350,73616
+9351,62312,39803,29247
+9352,82170,46939,48496,5663,77327
+9353,79788,1210,30059,45265,31192
+9354,63099,31734,78775,42242,7752
+9355,33275
+9356,13926,81690
+9357,36269,6681,22841,79345
+9358,4376,53511
+9359,43054,10193,6172,54173,48297
+9360,12069
+9361,80265,76681,40974
+9362,54400,68598,18370,14487,23529,43926,39677
+9363,74517,51098
+9364,64896,80282
+9365,55558,34855,64748
+9366,15337,846,58851
+9367,69722,36280,67557,61794,42170,33455
+9368,80999,40374,30526,41275,9397
+9369,25958,45109,61870,22091
+9370,30570,13683,28415
+9371,11715,6319,2227
+9372,6585,50571,74352,34200,79147
+9373,31255,64575,80281,54694
+9374,51197
+9375,63110
+9376,65929,59541,37379,55049
+9377,52049,6342,64387,75981,73645,81274,5559
+9378,75174,63685,55715,82111,53166
+9379,27799,18397,71180
+9380,66521,27476,77307,31094,78594,63683,64233
+9381,55714,45308,61869,20433,41331,610
+9382,1813,31139
+9383,16952,44007,76314
+9384,2220,44293,48227
+9385,6547,72310,63753
+9386,56755,67440,71647,52821
+9387,17617,60938,10100,31984,33840,56453
+9388,60004,48001,27089,46013,66942
+9389,49538,43436,6716,46756,45622,33439,55630,67758
+9390,75099,49345,21612
+9391,80591,3251,18998,20295,61439
+9392,53399,66958,49122
+9393,54556,81483,46974
+9394,68560,31637,16051,62851
+9395,70028,20229,19395,10607,50038,47138,77560,49238
+9396,48191,23092,62512
+9397,72351
+9398,9622,55757,36050,25486
+9399,58876,56034,60877,48143,62300,60121
+9400,58523
+9401,17092,35918,66573,930,18537
+9402,42202,17275
+9403,76709,36808,35648,16596
+9404,53028,12222
+9405,48253,10382
+9406,18285,30119,67901,65771,52194
+9407,62280,63400,76767,54842,57081,81331,17031
+9408,17339
+9409,59539,14488,51079
+9410,42151,11695,11418
+9411,28212,38664,74682,43788,74575,8400,49982
+9412,28412
+9413,64311
+9414,23331,81311,43546,10045,49869,59940
+9415,34306,28066,18431
+9416,2520,63027,56346,64691,26713
+9417,17418
+9418,62467,62304,8968,74919
+9419,37203
+9420,26193,74557,58087,58324,54240
+9421,26591,9726,54732,63511
+9422,23069,41711
+9423,15992,44687,5602,19693,61725,24788,45245,23572
+9424,52955
+9425,23507,33287,75746,36174,13320,36271,51025
+9426,63274,11722,23068,19691
+9427,32264,42595,71468
+9428,59195
+9429,46125,77817,6565
+9430,39343
+9431,77115,3642,7111
+9432,2064
+9433,8403,27091,80431,18462
+9434,20227,56755,18652
+9435,8677,4073,49083,37759
+9436,38626,11828,30427,3299,15572,79885
+9437,21349
+9438,22303,45041,59,69323,73799
+9439,76658,5691
+9440,31502,53240,22906,15208,68390,44251,80667
+9441,38489,5517,22718,46130
+9442,56835,4221,53118,42167
+9443,37701,4186,70763,29475,42370,19386
+9444,37270,25077,60627
+9445,33448,68477,1551,79429,77079,23356,36979
+9446,73558,8802,49473,34108,45115
+9447,78325
+9448,69493,59407,30863,47099,16138
+9449,13532,71303,19829,56431,60259
+9450,14453,5458,43625,9791
+9451,50138,70546,61993,46072
+9452,3256,18654,50405,36889,61541,66296,38786
+9453,61417
+9454,64257,15981,51391,46703
+9455,23964
+9456,57938,59897,32122,117,75761
+9457,29576
+9458,40525
+9459,60766,73278,52564,37692,73894,27810,43458,45682
+9460,32308,19334,60099,60780
+9461,27275,18253,16306,21870
+9462,14163,3609,63597,15366
+9463,1299,71179,47201,79178
+9464,80161,16131
+9465,66190,32298,36504,4360,44377,50107,54709,69301,75443
+9466,57977,10955,11128
+9467,40005,17038,13636
+9468,36265,47570,5140,22108
+9469,80818,31999
+9470,41182,1684,42575,25539
+9471,20057,30351
+9472,18305,30531,3931,9993,42516
+9473,62225
+9474,35983,46302,40211,59004,27936,50845,36837
+9475,77165,29929
+9476,3153
+9477,67492,32085,57413,23365
+9478,5081,80115,16242,35344
+9479,76413,48817,23653,30573,58623
+9480,30591,62823,64389
+9481,69430,51939,62042,43575,19876,40485
+9482,70826,26876
+9483,62024,64439,62240
+9484,59956,29173,67473
+9485,53394,52640
+9486,7225,54657,56539,58984,64229,6373,18068,76327
+9487,2135,61164
+9488,32828,62899
+9489,2462,55283,17693,20106,47648,77246
+9490,14456,68155,40542,67936,1085,14314,77217,1168
+9491,42170,16634,33121,41004,63672
+9492,13437
+9493,78514,54213
+9494,25069,39031,60729,33401
+9495,71195,6868,69319,16805,36578,58267
+9496,22229,69993,81839,68797
+9497,59916,40636
+9498,56350,24069,16766
+9499,69133,28331,33153
+9500,17884,34168,39947,17688,1535
+9501,46610,30194
+9502,78909,29717,32252,18184
+9503,57188,62052,59469,61293,17947
+9504,46412,40833,67491
+9505,39582,36221,60399,30196,43514,18556,55565
+9506,48396
+9507,43765,51200
+9508,12761
+9509,57921
+9510,52206,70132,52465
+9511,51773
+9512,35627
+9513,66519,79532,9663,62098,52062
+9514,66782,80082
+9515,81016
+9516,2625,18568,50711,47648
+9517,53820,17482,44350,64670
+9518,77592,81544
+9519,49242,72509,52177,16125
+9520,7486,35264,53740,44906,47653
+9521,35610,50900,67124,2561
+9522,29576,8581
+9523,13058,74157,81766,3982,14607,59665
+9524,1388,20503
+9525,78857,24057,6651,31231
+9526,31794,77919
+9527,67269
+9528,12292,74318,73167,79585
+9529,30430,25828,33155,52228,59217,73183,52932
+9530,63940,60516,28607,37796
+9531,43805,2056,12994
+9532,44541
+9533,14473
+9534,30460,27384,46185,53651
+9535,38640,74607,71112,28948,74766
+9536,45244,33120,64888,42647,29332,59883,52350,45057
+9537,74588,12185,38802,67175,54421,6498
+9538,5268,10850,50499
+9539,76881,5143,39390,43002
+9540,77467,5831,13808,79712,19513
+9541,67534,8306
+9542,50190,50320,53635
+9543,66760,53412
+9544,65077,77440,63088,13442,73944,61534,34887,68674,28545
+9545,45010,72136
+9546,7600,61533,16342,47129,77591,36144
+9547,65147,37529
+9548,29732,80931,6242
+9549,49883,64434,75307,24997,68668,65115
+9550,55594,27103,3382,28150
+9551,10980
+9552,19373,37444,37924,29359,24230,23226
+9553,47516,9541,59477
+9554,45087
+9555,20558,28791,37488
+9556,17725,12840
+9557,50511,498,24144
+9558,26593,27331,10166,42709
+9559,68002,9644,71248,64964,59385
+9560,54829,6078,17816,44549
+9561,81931,81779,35169,62461
+9562,67961,58160,24671,7593,18630
+9563,34902,9508,2987,45335
+9564,52822
+9565,36910,74779,72078,25752
+9566,33317,56929,20149,49052,55592
+9567,80256
+9568,36982,57346
+9569,51346
+9570,16324,76484,24617
+9571,42237
+9572,62543,2842,33
+9573,40412,20586,27198,78993,25215,57413,3440
+9574,15619,77113,29910,71348
+9575,43185,28582
+9576,52790,71755
+9577,69207,45821,70821,73627
+9578,9787,21922,25839,45203,7085
+9579,67709,44408,20097
+9580,37712,71996,60659,41531,42640,37783
+9581,14733,33861,25600,44987,15873,13145,19238
+9582,75958,3692
+9583,65575,27812,12329,51430,11914
+9584,4169,73791
+9585,48625,31084,53679,20541,80465,46692,72263
+9586,37912,5961,44858,51435,68772,9974
+9587,14760,77114,10425
+9588,40034,66491,24251,32910,7463,51177
+9589,42638,55726
+9590,10922,18831,36153,57129,74985,74285,45962,38871,17104
+9591,43024,26816,49459,53713
+9592,72061,41447
+9593,44321,12213,64677
+9594,34462
+9595,29734,13366,52381,67271
+9596,60604,79004,55178,6769,40604,35567,40798
+9597,66470,47177,62893,24249,5970
+9598,34824,44053,74139
+9599,23755
+9600,62132,10115
+9601,6904,57768,640,32003,9036,42015
+9602,12531,76908,2683,16724,62265
+9603,27405,32984
+9604,3351,37225
+9605,62425,183,69535,16234
+9606,23857
+9607,57128,70739,1067
+9608,70845,69772
+9609,45780,21299,79372
+9610,74485,9158,40682,80904
+9611,18958
+9612,52846,16721
+9613,35969
+9614,70626,35714,48321,40627,3301
+9615,56041,4474
+9616,81379
+9617,38462,14131,39332,39117
+9618,65737,18184,9715
+9619,33440
+9620,79715,77861,18559
+9621,81901,50623
+9622,59105
+9623,62884,70857,4837,40757,1302,55192
+9624,33246,32643,56744,33505,78333,57909
+9625,52835,79218,80674,64456,77981,61640,48762,51511,45666
+9626,81736
+9627,35747,60049,15554,56312
+9628,1997,44818,55416
+9629,7125,53601,76059,19045,36253
+9630,45577,37220,7173
+9631,35215,58501,25350,68252,63772,80410,10233
+9632,74011
+9633,77305,79222,44285,18817,39174,60878,26418
+9634,65136,77836
+9635,41537,38933,73606,63637,39787,39374,80442
+9636,70276,24882,75061
+9637,52608,57857,26446,62679,64930
+9638,45926,76244,52962
+9639,61383,57449
+9640,69607,48221
+9641,48267,1537,10788,60506,81228,38120,58320
+9642,40862,67637,39211
+9643,24475,11424,47522,9582,50153
+9644,44591,35110
+9645,66353,26467,52629,70792,65987
+9646,17680,52071,4237,1401
+9647,77447
+9648,80605,38590,49357,39468,36166,33851,56053,27417,4336,59802
+9649,55390,67061
+9650,55334
+9651,6826,11218,57205
+9652,69769,34714,57729,58197,41127,1208
+9653,60575,58193,23658,44611,24824
+9654,5441,26014,46766,78875,27577,63836
+9655,78077,75670,59628,32541
+9656,14092,78425,45586,18330,22496,16083,52173,35937
+9657,23996,50927,44917,39623,36867
+9658,53369,43542
+9659,6782
+9660,22431,22543,37299,13924,62796,25338
+9661,49175,46201,55962,49930,75553
+9662,45587
+9663,15345,64835,36689
+9664,44459,12291,29843,24066,24623
+9665,74225
+9666,42496,28489,32577
+9667,6604,63643,37065
+9668,26491,70990
+9669,64326,70816
+9670,76679,44171,41220
+9671,34175
+9672,49809,10662,37643,46073,50089,18430
+9673,32813,6914
+9674,33436,336
+9675,21313,837,63642,54687,5436
+9676,50587,498
+9677,9861,44190,78260
+9678,7972,8366,49213
+9679,36782,45525,63693
+9680,69590
+9681,65241
+9682,77785,73234,82035,79916
+9683,22425,40263,52135,35150
+9684,49722
+9685,46440,15940,10688,11652,59159
+9686,26547,77968,33286,77013,40610,35201,29158,12918
+9687,20726,64817,31366,75385
+9688,65350,10509,70512,51869,80915,75365,44252,34522,38874
+9689,74277
+9690,81367,46679,12277
+9691,56021,81484
+9692,37910,53424,71514,13029
+9693,60331,55726,3883
+9694,13191,27415,51552,65840
+9695,34244
+9696,6226,67041
+9697,45825,7725
+9698,25507,37083
+9699,24605,38661
+9700,57396,28730,71120,55869,5791,8040,74407
+9701,45709
+9702,79586
+9703,66943,22751
+9704,60357,78335,7057,81660,37251
+9705,67250,64984,80831,72651,19601,25842,4650
+9706,25124,34755,77963,34343,42710
+9707,51892,66977
+9708,4629,41296,30955,53561
+9709,4171,33758
+9710,32429,28270,22991,67980,22783
+9711,21461,22619,63765
+9712,2500,1987,77511
+9713,18420,13226,16715
+9714,72219,75161
+9715,75099
+9716,32014,47069,64199
+9717,25542
+9718,47852,79489,40935
+9719,42245,23720,3903,77081,78112,53211,62964
+9720,23671,14836
+9721,49266,4561,7813
+9722,62159,35367,12749
+9723,17747,9096
+9724,4564,63361
+9725,44719,50957,39107,68900,64778,8754,74970,9464,13153
+9726,33805,46572
+9727,5115,49154,58687,1391
+9728,53248,64436,56767,28958
+9729,21305,60447
+9730,70642
+9731,12946
+9732,19325,22940,14688,38983,59595
+9733,44138,71024,80561
+9734,63361
+9735,50612,48727,36143,76983,34331
+9736,46185,49304,41438
+9737,80859,80194,74256,19871,17682,67123
+9738,70556,21575,46002
+9739,32408,18862,69301,19409,18711
+9740,49567
+9741,48979,68544
+9742,32849,44477,6654,22237
+9743,27625
+9744,65527,56034,55829,8998
+9745,15554,47484,14009,7036
+9746,55763,14826,34256
+9747,42495,16186,56932,8300,70945
+9748,68026,76875,42108,64806
+9749,59161,20399
+9750,55358,9400,81669,19464,57570
+9751,26611,80074
+9752,36273,81644,51363,49727,66858
+9753,20425,16897,40050,4412
+9754,42535,110,7801,65744,33579
+9755,48625
+9756,51204,68367
+9757,70032,35346
+9758,62201
+9759,49167,24355,48922,15257
+9760,66594,43109
+9761,31585,53827,24818
+9762,67631,22464,69097,22405,24239,29887,72167
+9763,44124,69805,10846,78140,64775,1351,28474,27592
+9764,6404
+9765,65662,41909,36467
+9766,58877,40734,18062,58972,57330,20237,753,35885,3102
+9767,69220,5483
+9768,7407,40218,26764,43814
+9769,79955,12422,6073
+9770,34471,61324,32654,37480
+9771,3798,66510,24288,10307,72263,12772,81993
+9772,29586,20646,53968,31929,65697,43019,46504
+9773,32869,2909,33222
+9774,66415,14686,1610,49971,57269,26315
+9775,36986,53634,33882,61453
+9776,76205,34981,6703,29549,28155,76809,32996,29479
+9777,38774,56881,29047
+9778,7026,11759
+9779,44414,80291,58232,35492,23941,45213
+9780,60085,67615,6427
+9781,55545,50802,56649
+9782,72310,30998,78444
+9783,35225,32310,61424,75737,17958,41992
+9784,22137,36677
+9785,8281,80074,39897,15502,71246,20803
+9786,37787,7195,77222
+9787,44666,19333
+9788,42096,80713,22148,16960
+9789,66769,54271
+9790,66275,59629,32568
+9791,42116,41402
+9792,45537,61475
+9793,27633,2858,17081,61529
+9794,53475,14010
+9795,60543,42729,13504,18561,63410
+9796,54549,252,68016,27829,27776,62603
+9797,37187,30538
+9798,67135,32053,68840
+9799,10425,37914,69308,26469
+9800,34471,76813,69042
+9801,52865
+9802,1730,33908,68378,44653
+9803,17866,37819,69309
+9804,62543,77757
+9805,29723
+9806,993,25494,2749
+9807,54680,14329,3343,32791,12083,74608,27208,8523,12587,33864,37792,28066
+9808,64503,39534,38418
+9809,29357
+9810,17818,25029
+9811,50243
+9812,28913,36645
+9813,58725,78786,76976,6878,74596,2564,22312,70726,36167
+9814,61659
+9815,55616,32973,71230,80465,29667,57677
+9816,65265,6277,48748,68156,26665,8342
+9817,9487
+9818,23505,59601
+9819,65386,60411
+9820,6493
+9821,26651,33545,16037,5920,50508
+9822,14056,46510
+9823,4346
+9824,46847
+9825,3061,23648,20680,64895,81869
+9826,27446,33422,584,27355
+9827,43193,46123
+9828,54007
+9829,62095,21960,28079,26104,59707
+9830,33352,47859,4267
+9831,65153
+9832,14944,73298,57719,6067,45528,64692
+9833,65132,7972
+9834,42427,16823
+9835,65080,77485,62185,59287,27479
+9836,74414
+9837,68807,12635,20461,52857,79562,62714,44034,70151
+9838,63998,36101,31658,54093,8459,70057,40208,55873,53572
+9839,33164,76617,25889
+9840,57700,42927
+9841,43653,32446,6624,55577,57695,17026,58811,19583,62339,6676
+9842,68382,58255,55968,25412,29534,25091
+9843,69369,10945,21465
+9844,30608,74994
+9845,5282,55882,57899
+9846,12946
+9847,77185
+9848,15498,68003,61893,54647,73150,1995,37095
+9849,65102,55098,6727
+9850,81736
+9851,13925
+9852,6626
+9853,59103,63249,13568
+9854,71629
+9855,15156,73235,44233,35587,22492,8803,50750,4185,20916,27617,51572,13227,38228,59953,45520
+9856,30324,22928,65692
+9857,406,63968,1231,19950,44779,32717
+9858,13508,17363,6399,42307,57833,33528
+9859,81080,29710,74720,60034
+9860,76132,45179
+9861,56289,32965,10659
+9862,15284,7739,69756,42585
+9863,57405,34111,3761,57953,30764,26903
+9864,5788,38927,56312
+9865,59057,43691,5043
+9866,38016
+9867,57153,42157
+9868,45838,34308,75847,14247,34678,66555,19598,60633,64117
+9869,70485,32935,13161,36397,24212,79920
+9870,38494,65269,76877,78028,36980
+9871,556,19819,50866
+9872,1524
+9873,33564,32923,72158
+9874,59959,7619,10642
+9875,41841,74986,59469
+9876,80208,53453,44556,18147
+9877,67960,71946,35667,13656
+9878,23601,7461,80449,74334,52714
+9879,28847,3451,55590,43424,67565,25523
+9880,30888,10001,9054
+9881,64349,1121
+9882,32109,60792,13454,73795,26621,35064
+9883,65265
+9884,36542,70787,35535,62202
+9885,54732
+9886,75319,73450
+9887,21347,41548,38595,41242,59081,57380,53871
+9888,67755,77814
+9889,43384,34781,7750,10224
+9890,35355
+9891,65821,71924
+9892,519,17195,45488,20731
+9893,28713,27623,5152
+9894,24486,19647,47433,14634,72151,39112,60903,30104
+9895,2092,39206,43431,78194,5925
+9896,67832
+9897,1684,8730,43057
+9898,56317,61311
+9899,15323,38967,23552,19661,17388,78530
+9900,28468,53970
+9901,40302,22398
+9902,59928,33746,37309,50714
+9903,73398,641,77191,12281
+9904,6623,30910,24501,62819,26962,76892,35681
+9905,47063,58374,18810
+9906,16991,80108,41761,54063
+9907,4113,59414
+9908,1743,23335,61879,26141,7205
+9909,30785,28974,3091
+9910,32434,65314
+9911,55246,4637,53257,68305,40590
+9912,53764,51,76780,44647,80184
+9913,14110,30442,79109,23359
+9914,13041,43699,20943,51598,14257,71257,18587
+9915,64648,29438,67143,27055,41916,57312
+9916,2682,44633,31076,80229,73218
+9917,55416,70807,58291,73956,53688,40839,10473
+9918,2213
+9919,79179,81928,2330,16620,49708,57832
+9920,13356,56662,50701,14247
+9921,76334,78468,59322
+9922,54273,73755,52850,41812,36528,47239
+9923,72296,78865,12618,16194,40001,53115,8458
+9924,18713,45470
+9925,34635
+9926,58571,40293,8549,19747,44630,22910,70138,18085,55190
+9927,75541,50572,27221
+9928,29955,56089
+9929,75552,61489,40498,36681,75565
+9930,64514,33706,57806
+9931,79942,62025,77315,44000
+9932,49471,68266,53334,25630,73042,39899,3693
+9933,57447,76588,19142,27353,33262
+9934,64376,70710,37480
+9935,52821,10901,47236
+9936,14356,61577,13799,34384,39465
+9937,31056,75333,44015
+9938,74900,58012,52607
+9939,9599,3565,1729,53212,44394
+9940,24826,48587,17062,11776
+9941,41859
+9942,42226,61885,52338
+9943,59034,8192
+9944,54935,54261,13644,47045,66523,36109,7610
+9945,19360
+9946,64224
+9947,71642,69942,66424,62285
+9948,53764,44759
+9949,12886,80212,80716,25189
+9950,71154,32226,11712,31871
+9951,55613
+9952,71761,20297,60411,43639
+9953,27798,53746,8805,21236,11814,26785,31096,21267
+9954,72599,3475
+9955,61367,33647
+9956,47422,62609,2285,66448,47840,49053
+9957,20907,10295,16912,13995,17295,303,19891,37873,75173
+9958,69625,1749,53461,73727
+9959,77966,38086,29468,17906
+9960,36561
+9961,10863,27326,20001,47452
+9962,70506,41538,4516
+9963,73413,5704,74771
+9964,33033,58870,20227,70279,30119,20821
+9965,29631,34130,52511,1514
+9966,62358,75945,81534,18415,76932
+9967,22849
+9968,22573,13926
+9969,4964,80656
+9970,12213,52866,19088
+9971,34390,81716
+9972,35683,18034,72447,32106
+9973,35524
+9974,68895,37447,72526,21389
+9975,27946,79048
+9976,51318
+9977,74843,8422,23223
+9978,63336,80129
+9979,44156,32067
+9980,44083,9509
+9981,30126,12708,66907,75273,77038
+9982,17216,34751,54730,3469,54614
+9983,70613,53725,45131,13914,31711,18084,7718,28681,24570
+9984,8783,54614,66157
+9985,17828,41982,73994
+9986,21727
+9987,46524,36165,57945,33354
+9988,65230,41768,46336,36698,61322,76
+9989,79712,26433,16069
+9990,65545,34462,32962,20989
+9991,35118
+9992,43017,35358,101,65462,44369
+9993,9564
+9994,6711
+9995,75521,70227,45364,60375
+9996,50563,48616,60038
+9997,33343,61328
+9998,35064,34775
+9999,69722
+10000,9619
+10001,14671
+10002,50470,17647
+10003,71554,50581,14054,3005,4938
+10004,45161,59682,4133,9450
+10005,68125,72008,24425,30021,59415
+10006,15980,481
+10007,55045,13654,65544
+10008,12200,25429,58799,74632,24891,49295
+10009,28097,22824,31350,2029,20479
+10010,9896,71368,27269,78759,40800,76401,11271,57556
+10011,43899,46668,28522,65987
+10012,23546,78730,4100,23739,17732
+10013,7703,80349,47939
+10014,37929,6446
+10015,56477,48850,78126,29546
+10016,42287,71992,79666
+10017,43073,61746
+10018,35205,54731,76854,6395,62065
+10019,51372,17071,27549,81173,57565,16170
+10020,9526,42082,661
+10021,74244,60168,30855,34157,6199,55402,50425,61199
+10022,42434,44323,52059,49291,43518,76783,43482,44292
+10023,80391,38338,30767,33622,39813,53306,76855
+10024,54434,979,36223,58044,20187
+10025,75486,43917,21941,72234,31266
+10026,48818,18920,60058
+10027,81404,49908
+10028,36215
+10029,66522,74120,2992,55263,6097,72866
+10030,78063
+10031,6505,68350,78190,69270,7539
+10032,59216
+10033,58904,48725,64908
+10034,32157,18060,51543,77200,30979
+10035,42038
+10036,34200,77571
+10037,18977,39058,11718,75025
+10038,1637
+10039,65788,61738,25427
+10040,21063
+10041,75188
+10042,32728,51179,68619
+10043,73061
+10044,17171,46535,6353,15131,27319
+10045,49795,74439
+10046,17269,80144,38277,54414,63832,53151,27990
+10047,32393,52164,30901,79016
+10048,43193
+10049,64665,47642
+10050,61879,72067,69267,50825
+10051,31450,69218,20095,71557
+10052,1494,64267,77382,47401
+10053,28273,59662,2500
+10054,20660,25888,60957
+10055,17083,12
+10056,43862,60520,17903,13038
+10057,7971,55474
+10058,29353,7137,51392,73235,78921,54401,75638,24955
+10059,60110,7983,27130,82050,20213
+10060,14910,15446,78250,58070,54325,60868,54620
+10061,13411,64653
+10062,29738,36938,57045
+10063,36612,80557,50043,56747
+10064,67479,80274,66581,58887,19264
+10065,43377,58343
+10066,66955,21334,15459,53444,30890
+10067,67612,31202
+10068,5790,19625
+10069,81984
+10070,20513,10192,67334,67896
+10071,45607,44489,39444,51502,15023,11761,2889,15493
+10072,54324,45893,50497,11872,20050,18492
+10073,64028,32389,68160,52349
+10074,53634,71898,72396,38768
+10075,16338
+10076,44025,46495
+10077,7379,45229,80261,38738
+10078,77680,41884,78698
+10079,68309,31898,28121,17519
+10080,4886,7644
+10081,53456
+10082,39998,38018
+10083,38153,7197
+10084,49053,21197,30387,24771
+10085,54330,71201,67038,59895,39921,36162
+10086,47533,74417,18997
+10087,77040
+10088,71689,52942,77444,9419,42013
+10089,79741,48071
+10090,59654,14095,70534,30746
+10091,80943,20422,69716,2319
+10092,59370,65004
+10093,66943,78990
+10094,15211,64836,1443,55646,63674
+10095,63382,40529,12159,13666,1149,5718
+10096,44656
+10097,70506,37847
+10098,64107,26210,43170,71496,71324,44745
+10099,21815,15497,31604,59070,26224
+10100,38794,20745
+10101,14430,65050
+10102,15604,37103,32881,45662,52417,10761
+10103,26646,36330,34210,41898
+10104,26652,42890
+10105,22035
+10106,78942,31700
+10107,48849,25495,10537,73727
+10108,50272
+10109,6642,41215,26922,56150,79953,35007
+10110,34069,28762,54933,8814,20865,21680,43622,49424
+10111,55402
+10112,6026,29541
+10113,18969,48606,73971,81026,2605,59223
+10114,24095,69531,35256,59839,20931,27404,20361,68263
+10115,8101
+10116,27324,40449,5436,248,49950
+10117,63943,39058,13467,3848,51605,10750,23011
+10118,16667,39644,1198,31382
+10119,80359,61138,54901
+10120,27635,22188,44861,59294,51993
+10121,28432,38442,28713
+10122,14942
+10123,25529
+10124,69227,72072,51203,34981,26236,50038
+10125,41973,25131,2828,60492,56455
+10126,48327,6934
+10127,9007,1929,67494,40436
+10128,667
+10129,48752,47679,19008,31083,71407
+10130,11727,45211,39692,25766,29853
+10131,7830,73495,16636,32363
+10132,14714
+10133,19786,81056
+10134,54366,68880
+10135,6905,74982
+10136,79511,1439
+10137,25428
+10138,60399,78746,252,16347,36485,50799
+10139,10122,69077
+10140,52778,51127,38282,46694,65296
+10141,27289
+10142,69913,8928,6314,16518,81754
+10143,48879,65724,37640,79697,15366,12415,31611
+10144,25092,10856,32511,64256,50640,27894,22547,75876,63035,48206
+10145,40990,19683,37696,54654,10171,8800
+10146,14213,29463,6875
+10147,22884,14650
+10148,10689,18392,72492,50340,20905,22932
+10149,30993,50007
+10150,43665,4760,63627
+10151,77279
+10152,43051,80798,45348
+10153,80660,3290,38030,16865,22609,49575,33659
+10154,47391,10598,58337
+10155,24332,2638,40255,43527,50633
+10156,73066
+10157,27475
+10158,28329,5066,28508,59911,71421
+10159,32888,57525,81061
+10160,42502,20799
+10161,65727
+10162,62013,51843
+10163,45935,25718
+10164,55269,81127,5449,52255
+10165,41818,4496,8101,18448
+10166,15870
+10167,17043,47763
+10168,74350,35240,59054,2173,22341,71546
+10169,1527,82144,23158,9126
+10170,19627,20866,34000
+10171,28635
+10172,50401,25115,71222,35529
+10173,19019,75627,29652
+10174,56196,81989,73921
+10175,52958,82077,24,36786,78787,36864,74088,71098,71872
+10176,63672,45611
+10177,79953,75819,21238,24506
+10178,76088,71931
+10179,72111,68549
+10180,40418,27419,40997
+10181,18544,56062,29155,30746
+10182,62750,27701,17060
+10183,14067,77889,70705,10806,14290
+10184,74368,60709,75204,31366
+10185,15236,59575,44667,13782,68584,18754
+10186,60167,2306,20364
+10187,44620,30361,61565,3445,19170
+10188,72932,71674,10897,31821,74511,57196
+10189,53135,12048,70035,38372,71555
+10190,55120,48544,78112,81544,45621,40791
+10191,12539,68203,56604,80638
+10192,68553,18498,14794,57145,31707
+10193,70050,45477
+10194,66025,63267,23048,62956,45754
+10195,75485,27654
+10196,8954
+10197,19087,71861,24262,33672,14232,24470,1748,41463
+10198,44279,45684,47877
+10199,36216,59183
+10200,5676,41377,5768,43008
+10201,61598,14367,46752,29529,17
+10202,40751,34474,59618,65871,17182
+10203,53468,12470,33710
+10204,43774,2651,25,68520,80522
+10205,56825
+10206,48490,5600,24836
+10207,13841,71165
+10208,29114,75585,77644,73528,35122
+10209,33925,1842,55936
+10210,25107,29648
+10211,54584,25171,39372,52695,1687,6374
+10212,78705,61504
+10213,75870,17937,57586,9665,62756
+10214,80274,8415,76914,16340,79458,31581,62190
+10215,40655,56918
+10216,43347,7617,53229,67590,2930,4593,55292,13099
+10217,39707,23520,24870,51802,8994
+10218,52267,20983,28677,74872
+10219,78323
+10220,25813,55976,57258,44206,47225
+10221,41027,7854,60753,52041,15690,81341,8226,75936
+10222,69576,66231,30817,73863,58923
+10223,41846
+10224,70681,53580
+10225,80311,71933,55748
+10226,9211,23796
+10227,27885
+10228,65310,72377,28741,64503
+10229,81667,71873,18869,25388,52989,58437,80294
+10230,36549,22239,57792,43259,64089,56305,35431
+10231,79092
+10232,34733,29359,79715
+10233,42309,41752,78525
+10234,9654
+10235,25170,78263,2581
+10236,4603,71857
+10237,38523,41543,31907,2914
+10238,54539,65802,48029,13418,39309,805,34262
+10239,57712,56925
+10240,26731
+10241,48655,70938
+10242,11627
+10243,70509
+10244,17145,12148,28938,71268,15073,81444,18800,13477
+10245,40837,44478,62,66819,62883,5942,27884
+10246,73653,66598,13720,9913
+10247,30221
+10248,69929
+10249,25245,32352
+10250,15558
+10251,32575,41702,35419
+10252,4331
+10253,4148,56711,20066,41604
+10254,9724,29799
+10255,23456,49806,74587,66954,12967
+10256,33793,49916,51043,25403,41281,79588,59094
+10257,50961,22410,54573
+10258,14933,50269,58419
+10259,18944,31951,53900
+10260,5790,52396
+10261,50354,64759,79106
+10262,50901,11298
+10263,58296,60965
+10264,22768,23312
+10265,21040,28291,36322
+10266,9758,32198,16577
+10267,15192,44986,82033,44383,17775
+10268,45684,60800,31688,78030
+10269,31791,56759
+10270,42446,10347,65422,10614
+10271,28204,30339,1647,51195,1843
+10272,50559,82122,14453
+10273,25306,12896,20938,65353,13234,75626
+10274,57410,22629
+10275,57438
+10276,74406,14191,41288
+10277,4716,14876
+10278,17606
+10279,3251
+10280,10450,41811
+10281,78909,48419,40188,47825,49002,9021,41214
+10282,19569,72683,46166,76824
+10283,80746,61591,55656,78362,34771,22869
+10284,72157,34216,11002
+10285,38654,64917
+10286,36188,58883,45209
+10287,25473,39620
+10288,64786,35992
+10289,51857,63942,18750
+10290,65002
+10291,64939,12823,1498,65502,1838
+10292,46756,5444,21148,72304
+10293,33552,6166,77537,1533
+10294,16273,61186,6196,21232,61909,7085,21070
+10295,23365,46470,30907
+10296,36477,63069,24169,79234,71398,26452,72697
+10297,12365,53803
+10298,70554,79947,73906,68878,81305,12551,30110,31493
+10299,14645
+10300,46957,62046
+10301,6279,7254,58273,72839,41382,18442,60697,33350,64781,7337
+10302,67808,78513,69616,13253
+10303,43185,72808
+10304,1409,2725
+10305,59882,35902,46952,26003
+10306,33698,27133
+10307,23758,47048,33679
+10308,10984,16978,27267,11565,69422
+10309,3475,45242,26221,14466
+10310,55498,51411
+10311,31526,64774,44501
+10312,57975,4130,50559,23148,43508,38171
+10313,76310,63254
+10314,61107
+10315,20869,48818,9117,51331,54837,49773,25453,78349
+10316,57730,3042,56878
+10317,34622,70983,65537,37118,79457,70352
+10318,5847,64317,70029,34515
+10319,25980,6840,58085,9636,52696
+10320,16715
+10321,20882,6616
+10322,45562,55154,51158,61058,11610,45212,42620,52741
+10323,48602,38234,31679,11906,38657,306
+10324,29648,56597,202
+10325,1103,15751,38430,43036,5185,15295
+10326,26031,43276
+10327,69197,63940,70586,72757,58366,34623
+10328,78926,27633,18088,60470
+10329,52512,30703,57124,16952,35772,32935
+10330,56426
+10331,60837,14523,61537,3721,6865
+10332,25460,36532,72985
+10333,2828,39740,67572
+10334,62007,78012,43122,65227,44951
+10335,45234,40394,16194,73873
+10336,39003,21528,14307
+10337,3182,42670,71962
+10338,53880,25652
+10339,13114,53790,5862,79929
+10340,65092,10501,60825
+10341,74474,48508,75683,80171,28035
+10342,60423,10043
+10343,56639,6884
+10344,44554,77979,65143,33833,21038,63993
+10345,6574,78130,34356
+10346,20451,72410,42679,28156,6456,54238
+10347,50205,18655,8439
+10348,1437
+10349,77982
+10350,2318,47240,62516,45012,78344
+10351,17952,52069
+10352,494,9854,63226,6649,9966,42470,27913
+10353,17014,10994,60571
+10354,47195
+10355,73754,51038,58023,51101,73759,67322,35663
+10356,231,3142,13615,20853,21021
+10357,75559,30169,69684,65155
+10358,37296
+10359,80895,77245,73749,66920
+10360,23769,61893
+10361,47916,75417,42777,37874
+10362,23626
+10363,80096,16397
+10364,44276,75887,2064,1073,65028
+10365,23088,34278,44125,12574,15800
+10366,42175,47004,73787,11189,16789
+10367,5106,77989,33614,44449,18062
+10368,20015
+10369,37825,34785,1986,23177
+10370,72285,55173,62178,8819
+10371,3266
+10372,31911,70516,520
+10373,10821,44049,77029,4799,78216,73045
+10374,36708,36193,12803
+10375,21946,76855,55057,77334,19654
+10376,49305,59519,20380,67127,1779
+10377,54495,28156,48079,37342,76521
+10378,67265,54579,81374,73031,9291,60259,26972,33234
+10379,73933,62956,49074,81961
+10380,65484
+10381,41635,8533,43371,42855
+10382,40213,68923,46946,35029
+10383,42086,34823,48725,18842
+10384,74040
+10385,14738,1505,10534,71560
+10386,20129,31201
+10387,62985
+10388,10776,75350,30890,54728
+10389,66337,64581,76338,5973
+10390,80943
+10391,82121,34480,53344,20822,52097,78133,40834
+10392,59773,76144,17128,41142
+10393,11284,33398,41283,67981,60976,46431
+10394,73358,71767,8569,10610
+10395,30728,72032,66850,21292,8275
+10396,74216
+10397,18262
+10398,6534,44355,35020,76874,27756,45044
+10399,28873,44813,38138,72234,37318
+10400,39783,10427,3041
+10401,32503,65382,10134,61423,69567,43748
+10402,3143,35181,61753,54929
+10403,8506
+10404,11581,60419
+10405,26930,54122
+10406,13364,46386
+10407,26373,77333,74555,30763
+10408,28988,66580,9860,34402
+10409,4750
+10410,18467,7978,59788,22714,54730,40840
+10411,45667,29336,56486,65995,29982,20829,65509
+10412,31194,60481,595,31862,1658,8253,19970
+10413,10589,803
+10414,58906,80483
+10415,45768,35647,8159
+10416,43366,10251,34238,51443,68619,28653,22952,14129,78514
+10417,27510
+10418,62416,65820,10727,81149,2241
+10419,15073,62807,26544
+10420,26375,18532
+10421,29070,37039,70845
+10422,72651
+10423,1711,21415,31402,64081,80210,74255,2858
+10424,42408,18772,31209
+10425,6188
+10426,76902,25065,37625,22682,10350,41408,35709
+10427,42771,71296,22790,21143
+10428,17906,25355,41532
+10429,46987
+10430,74566,139,8960,65345
+10431,21143
+10432,1404,37053,42405
+10433,70908,548,18418
+10434,17297
+10435,74259
+10436,25213,13582,1904,10434
+10437,57573,55003,50269,76303,30809
+10438,15888
+10439,53621,6635
+10440,60120,76779
+10441,16553,43983,35065
+10442,18694,48003
+10443,72910,72394,62734,82157
+10444,52878,54096
+10445,52965,490
+10446,255,15188,22246,50997,39168,12973
+10447,55509,44773,17954,47280
+10448,52072,7968,66089
+10449,55701
+10450,64868,27885
+10451,32957,23411,44810,23311,73458
+10452,11949,77617,4544,64028
+10453,8859
+10454,23545,23365,32650,57424
+10455,71084,41792,48346,54963,3462,73434,31064
+10456,56339,32295,4221,37058,23310,39820,68623
+10457,31745,13439,39700,78272,72195,48914,38058
+10458,397,35380
+10459,28165
+10460,3488,16011,1047,23956
+10461,65971,3427,13471,77197,4686,60658
+10462,52588,13497,13126
+10463,52529,29958,25305,36091
+10464,67494,10826,71483,24732
+10465,79614,1218,40468,31578,68582
+10466,44445,53831,59509,58884
+10467,62288,42994
+10468,64687,63147,82117,51561
+10469,6777,81609,43834,2362
+10470,78122,51147,66123,1391,56590
+10471,77121,76441
+10472,61455
+10473,75363
+10474,61716,22192,5100,75612
+10475,32156,17787,13890,15123,52582,6952
+10476,13744,22319,2326,75057,5271,47474,80721
+10477,24366,2713,19088
+10478,32995,12894
+10479,63766,2890,70878,28693
+10480,8236,44247
+10481,8638,82038,21552,79447,2665
+10482,38132
+10483,67653,75017,43857,20352,73150,45488
+10484,39620
+10485,42831,44687,41292
+10486,29008
+10487,59945,18912,10918,61978
+10488,77640,39470,60371,9619,33787,58729,78688,15942
+10489,48973,56086,20272
+10490,60547
+10491,42528,10252,67895,58766,1417,65059
+10492,63556,41159
+10493,28260,45055,25364,71959,36299,28189
+10494,37387,57229
+10495,9189,46057,15033,9485,59538
+10496,80249,18421,56069,53523
+10497,24652
+10498,68372,65887,30395
+10499,62552,1237,63880,40587,14205,20026
+10500,29810
+10501,68554
+10502,65907,40823,11247,37604,52842
+10503,40617
+10504,40422,57043,42165,3278,26837,44100,57206,23013
+10505,13335,17159
+10506,32750,48183,46036,16338,27090
+10507,57028
+10508,15050,5038
+10509,32360,41285,71481,33300,23399,71766
+10510,53344
+10511,30519,39622
+10512,76032,24115,7777,55587,17569
+10513,79407,10290,3766
+10514,33052,48396,71309
+10515,14935,25057,12115
+10516,46975,292,22570,21516,76502,33679,33316,5782
+10517,60308,35967
+10518,2633
+10519,22116,15514
+10520,68009
+10521,17070,38911
+10522,13232,31612,56328
+10523,66993,11384,47445,71193,25109
+10524,72032
+10525,65816
+10526,9375,73832,62683,38243,28476,18661,76683
+10527,20291,63973,31433,77526,40734,9019,37703,62466,35659,26030
+10528,1800,31037
+10529,25540,41793,11674,34233,23733,30897,34114,11569
+10530,73669,75135,38220,62240,60896
+10531,25717,44225,53315,74178,46249,20466,49253,23849
+10532,64060,54065,71877,15836,39895,81547
+10533,5137
+10534,73715,54318,43934
+10535,32791,42927,45983,81158
+10536,6399
+10537,56328,65102,14603
+10538,51499,30965,48908,12162
+10539,79071,78957
+10540,45888,52422,38039,71604,79528,28634,70468,13457,54816,63496
+10541,43435,9130,58500,4073
+10542,7248,44878,79184,18600,16571
+10543,34462
+10544,13563,55267,28725,69916
+10545,44188
+10546,61698
+10547,45086,9263
+10548,37181,45902,69601
+10549,31248,72075,29254,17860
+10550,64802,51174,78999
+10551,64844,16702,30925,35499,54651,39899,10141,5844
+10552,7880,30385,63881
+10553,44781,13692,3866
+10554,40392,43784,75045,7659,17396,45800
+10555,56344,76183
+10556,78070,46689,9414,55722,10892
+10557,52932,42484,73891
+10558,78483,46174,33398,41353
+10559,51308,73097,15060,22060
+10560,17520,58395
+10561,2861
+10562,54400,19727,25523,59686
+10563,56403,57234,74772,67912,21645
+10564,30433,30215,25761,70028,65939
+10565,8353
+10566,3667,42124,60871
+10567,17684,8116,27105,22309,51555
+10568,12809,24529,21286,81939,8203,50431,1585
+10569,26300,18626
+10570,23137,63649,8189,71309,16912,33706
+10571,51398,62406,65365
+10572,1103,42529,70499
+10573,7444,18961,13473,74961
+10574,2901,38893
+10575,56315,60258,40250,43441,17240
+10576,9019,3585,67862,880,34198,4391
+10577,56614,38294,4563,25825,6522
+10578,32028,3607,76291,17432
+10579,54023,68760
+10580,55653,9001,60514,53853
+10581,28632,70790,57449
+10582,79028,50220,6226,31354,15106
+10583,45214,55604,39322,19318
+10584,9643,5137
+10585,32140,38502,22141,69683,11670,3594,68517
+10586,76864,531
+10587,17892,80368,969,28997,20414,40851,75308
+10588,76949,41209,61684
+10589,68008,80916,22102,33436,61456,33617,25091,77211
+10590,7124
+10591,81575,8029
+10592,54864
+10593,21498,13849,21905,40238,59820,42153
+10594,38556,7846
+10595,56352,81840,74525,59119
+10596,6522,71651,64617
+10597,31909,6934
+10598,56257,47493
+10599,44112
+10600,41161,69970,34937,9071,73947,56728,76810,60067,72854,63593,53911,78233,78624,38230,13474
+10601,80719,57589,60580,30058,56597,64998,3094
+10602,54297,26774,46204
+10603,34597,31600,17083
+10604,5633,81979,40325
+10605,9203,77198,56343
+10606,28047,36508,79366,75860,30242,19606,9898,33027
+10607,50107,31237
+10608,23817
+10609,76753,55411
+10610,55908,53065
+10611,48931,10871,22349,78514
+10612,29684,12389,69754,68955,57603,80334
+10613,63513
+10614,67332,53086
+10615,76132,14577,44400,31061
+10616,61637,70415
+10617,39788,80357,7066,45757
+10618,65727,15895,80567,37208,9747,34070
+10619,57887,14764,10982
+10620,80575,64045,23729,78747,26421,68257,56936,68584,73212
+10621,68874,15803,67451
+10622,714,20298,68622,12546,9328
+10623,55069
+10624,73015,17244,19926,15946,64810
+10625,20429,6707
+10626,59601
+10627,62849,59458,78256,13073,81038,71359,45580
+10628,827,24027,687,49963,62571,10982
+10629,81878
+10630,54663,43660,56196,59029
+10631,70881,8783,5961,17963,65876
+10632,78169,27584,62572,11086,28510,72579,37728
+10633,75498
+10634,49930,59269,50398
+10635,25521,62323,68277,47454,12109
+10636,72441
+10637,36817,37801
+10638,68422,23247,38424,76420
+10639,62696,41069
+10640,69112,51675
+10641,34073,54883,24719,52723
+10642,44540,42749
+10643,74168,37605,55695,50217,80177,19559
+10644,65012,64930,43337
+10645,58251,69340
+10646,31839,51218
+10647,21367,6234,8992
+10648,71655,74741,68954
+10649,31909
+10650,65663,9526,18611,51090,48761,75357,1715
+10651,56735,58883,7728
+10652,10535,55410,76526,33283
+10653,29031,5649,23546,30324,59150,41867
+10654,395
+10655,12981
+10656,47387,51539,23614,67441,45162,61929
+10657,18523,63019,9339,71752,23687
+10658,50266,41953
+10659,13411,68807,13570
+10660,37807,24281,45907,27077
+10661,19096,21841,38234
+10662,12603
+10663,59953,889,9358,12589,34137,70852
+10664,7194,22248
+10665,47720,78458,28426
+10666,79559,12629,65964,62150,48173,2000,67045
+10667,51394,75813
+10668,78995,14533,15862,32334,51311
+10669,78133
+10670,32374,76414
+10671,18655,21110,30375,18025,73294,31629
+10672,48934,49966,22628,71673
+10673,35657,79273,22064
+10674,14011,18726,57178,32459,26894,12447,56886,54754
+10675,20607
+10676,60803,39594,26949,70680,63057
+10677,41265,4629,77310,14751,75575,81414
+10678,46870,80117,51412,39544,65665,17849
+10679,1711
+10680,71503,78278,18965,56363,72070
+10681,12444,60594,14423,16771,39244,57074,52296
+10682,7928,56779,19555
+10683,30460,76109
+10684,5087,43562,21167
+10685,51973,38850,67189
+10686,20729,79308,356,46433,35531
+10687,36967,6220,68682
+10688,35308,31021
+10689,18069,42267,15264
+10690,40148,26712,15476,8582,8730
+10691,31922,29592,75468,72763,66326,55832
+10692,9225,31134,1,62402,50698
+10693,58434,22126,17131,30733
+10694,19569,34694,80429,12308,34825,48781,39456,57855
+10695,18699,21180,76487,32156
+10696,55281
+10697,77191,61292,74241,59351
+10698,11231,53920,38615
+10699,35007,311,19781,53785,22457,81276,14416,71297,66472,47977
+10700,54361
+10701,70664,9676,74919,57221,23104
+10702,79767,41271
+10703,55706
+10704,31432,22593,35592
+10705,5500
+10706,19482
+10707,10756,25685,65984,5727
+10708,11575,39539,81508,47165,38760
+10709,530,77329,21187,773,9949,42645
+10710,52221,33836
+10711,53845
+10712,67711,18616,21549,20488,38141,50889
+10713,43708,18850,68206
+10714,28987,30465,48425
+10715,21931,70158,61153,43460,14388
+10716,64837,81396
+10717,59087,29897,81799
+10718,40048,71777,26737,40109,9670
+10719,70767,30146,44252,7353
+10720,67789,7606,29923
+10721,73251,5818,6585,69444
+10722,19870,11163,79035,74406,57890,62982,23317,52579,31320
+10723,10405,6085
+10724,23656
+10725,33881,78844,54400,33153
+10726,74902,5543,74815,21865,20546,46710
+10727,48917,55813
+10728,30598
+10729,59124
+10730,39762,53216,51132,45471,53679,17708,32303
+10731,58673,58591,34165,63493,77280,61690
+10732,14674,35572
+10733,9836,29171,14652,3194,31775,16217,51543
+10734,23510,37126,53133,5401
+10735,10197,74464,25073
+10736,67201,64551,28004
+10737,23334,59034,4577
+10738,41262,78115,43922,37856,22586
+10739,61262,57859,41300
+10740,45117,6854,66207,17693
+10741,69675
+10742,13642,39329,25256,39890,61902,19814
+10743,66498
+10744,12083,30293,26989,35855,10424,62178
+10745,52381,66244,36234,57618
+10746,23803
+10747,17650,26186,16823,34435,75237,62709,41956,72032,41631
+10748,50478,49619,68358
+10749,1579,32534,65710,69947,41796
+10750,41702
+10751,47359,25315,68481,59214,7713
+10752,75292,2031
+10753,29026
+10754,18772,38780,1297
+10755,20814,81563,69181,63211,38641
+10756,54961,22156,55095
+10757,16383,35171,2905,19234,47077,66500
+10758,38246,12081,68632,74821,33416,39399
+10759,75840,14457,9870,71495
+10760,7300,37263,63860,7339,37101
+10761,69554,28483,79015,12479,61058,45451
+10762,28163,62997,67058,50163
+10763,5683
+10764,13751,2560,8909,18472,65230
+10765,27603,25138
+10766,10171,50163,65846
+10767,65857,45517,10531,60431,28728
+10768,23163,48908,23480
+10769,34664,29140,39799,26267
+10770,39404
+10771,30250
+10772,49007,72367,30401,31847,77018
+10773,36794,31149,51333,29027
+10774,29872,50134,38085,66092,60508,80605,29662,11874
+10775,73045,20691
+10776,7688
+10777,52345
+10778,43870,50329,53512,21859
+10779,68433,14590,37812,66701,4919
+10780,1205,65219,6399
+10781,60387,52616,63055,33260,65479,47882,39876
+10782,76914,53702
+10783,74804,14781,3630,53123,35258,3124
+10784,34376,37271,80437,27153,74960
+10785,3990,12835,34018,1473,7284
+10786,29939,42097,80741,72584
+10787,74415,52546,18851,53486,45683
+10788,71098
+10789,59925,20015,77149,10291,60617
+10790,20664,23692,141,81780
+10791,11285
+10792,63228,79787,5615
+10793,17318,57996,77196
+10794,8834,34494
+10795,50483,71862,79296,17005,12358
+10796,50910
+10797,78867,57527,73762,32593,72733
+10798,72966,57833,67880,73097
+10799,23500,1189,27617,45735,5870
+10800,75401,80554,26838,64960,47682,77903,50027
+10801,14680
+10802,73105,56556,9022,29592
+10803,39832
+10804,78942,63202,62615,55406,57559
+10805,5763,24969,53224,75171,55593
+10806,10736,16365
+10807,21615
+10808,28461,51016,65666
+10809,69631,63101,39894,46026,66134,70330,80035
+10810,3519,54973,77149
+10811,58794,48439
+10812,54553,54105,80967,56281,64506,38116,22079,40413,77993,23554,59055
+10813,73545,50640
+10814,13676,29927,57853
+10815,19698,49585,21601,71526,48145,23143,39944,25193,12761,2166,65870
+10816,7705,68974,15462,30757
+10817,59930,28033
+10818,55977,73931,58840,25173
+10819,50709,17712,13733,20664
+10820,77990,64975,62521,39768
+10821,25544
+10822,54703,18827,28656,17702
+10823,61734,36297,74961,26361,32406,62166,46682,71852,7430,54538
+10824,7543,29094,64315,71494
+10825,78815
+10826,26175,28005,46360,76128
+10827,16928,41027,28579,71825,19698,56296,36715
+10828,49641,875,68811
+10829,23047,41237,49281,25746
+10830,36184,51805,72947,16106,42709
+10831,60213,49318,27560,40292
+10832,34209,16672
+10833,65591
+10834,76162,54763
+10835,35947,74156,65060,40603
+10836,51497
+10837,29124,34416,37671,41959,65793,37881
+10838,51329
+10839,43363,82007,29922,28344,27577,57962,79887
+10840,70681,60670,17966,5154
+10841,27965,6095,2080
+10842,76141,17327,14446,18301,61305,6422,27034,65266
+10843,16552,30496,55284,31413
+10844,66942,45020
+10845,29931,16404,21654,34501
+10846,22928,49673,58742
+10847,48433,48456
+10848,33272,59725
+10849,60301,77175,27098,47830,50821,20453
+10850,39538
+10851,4497,69793,39253,27417,44567,79670,2232
+10852,43097,32192,68618,22903
+10853,7856,30077,81370,77981
+10854,16227,35918,35369
+10855,40506,67824
+10856,25680,16634,66556,55786,16122,33136
+10857,6574,77845,11642,58728
+10858,73340,52207,80971,62395,41469
+10859,78576,53719,2248
+10860,23156,60120
+10861,25391,32281
+10862,45896
+10863,22408,72357
+10864,3920,57595,55215,55151,59199,69105,30911,47007,34013,47975
+10865,81932,20227,69733,36179
+10866,44456
+10867,39360,56805,66053,64784
+10868,35047,22808
+10869,25463,70875
+10870,15174,65115
+10871,55316,64891,46327,63727,7304,15235,25174,29946,75195,51409,39768
+10872,66256,28148,12705
+10873,12742,18658,65829,29784,61577
+10874,75123,7769,13751,58622
+10875,8214,20097,42007,48982,75394,53877,50263,80777
+10876,75578,41462,12133,28353,36625,59636
+10877,78867,10910
+10878,66294,31550,21882,43692
+10879,5382,74640
+10880,69017,66343,61230,57071
+10881,4302
+10882,26832
+10883,69760,56632,28948,11325,28664,51249
+10884,7449
+10885,71983,22831,10291
+10886,78973
+10887,40952
+10888,61216,58227,61460,13742,30147,73975
+10889,71042,17179
+10890,17216,7740
+10891,3890,2698,32130,56971,17010
+10892,61753,75754
+10893,75204,69418,53887
+10894,56531,73016
+10895,57535,67237
+10896,36573,39931,81811
+10897,13228,43911,67984,7743,80535,36450,19583,54322,22499
+10898,70347,39994
+10899,57378
+10900,27780,81554,65594,30570,65759
+10901,18387,19015,24401,48010
+10902,57528,9336,24112,14468,40939
+10903,41112,4537,34974
+10904,31992,80083
+10905,36016,4781,56170,16919,2485,4292
+10906,78714,78456,45430,77325
+10907,23364,29578,23576
+10908,7562,950
+10909,72169
+10910,51082
+10911,9946
+10912,41339,67441,77889,8689,61417
+10913,22793,80057,14927,3438,72718,51955,73546,22604
+10914,20817,4023
+10915,70732
+10916,18726,53336,80409,37384,33763,37836,79303
+10917,69598,63056
+10918,8078,62690
+10919,16961,17198,64921
+10920,55501,13691,10922,5106
+10921,71360,20820,80664,7465
+10922,2152,49561,53740,33638,57364
+10923,5847,4238,54653,54946,6258,26628,41001
+10924,63815,6510,52502,45062
+10925,13723,69610
+10926,71027
+10927,49565,8884,81426,9163
+10928,81526
+10929,24267,15873,40555
+10930,73217,66071,49786,35334,48097
+10931,45341
+10932,32623,50961,51689,24097,21586,2979
+10933,70568,51352,60532,31410,75589,68531,72331,25485
+10934,80719,58576,18273,34901,51649,34615
+10935,63596
+10936,51757
+10937,68639
+10938,51139
+10939,15205,76619,52832,64850,45590,64486,3920,52996
+10940,14245,17119
+10941,35803,76910,62367
+10942,34435,74991,21943,25696,80293
+10943,66773,48247,19895,64326,33686,16394
+10944,44444
+10945,6537,8174,34549,43219,69676
+10946,38957,42003
+10947,43244,58906,62009,42207
+10948,18135
+10949,28440,18921
+10950,6034,58533,10567,19413,37069,21893,2990,73308,35643
+10951,9627,16149,7576,3768,71171
+10952,47066,8913,19967
+10953,1449,57471,27518
+10954,73794,45848,56573
+10955,52123,67638,56102,14066
+10956,56368,70047,53465,4234
+10957,4055,34802,52357
+10958,71401,1113,37397,4666,55,52665
+10959,17409,27956
+10960,12583,27089,38413,52597,81356
+10961,73007,61774,1340,23580,63962,36400
+10962,80208
+10963,11907,63479,34075,79854,19340,71065,22964,227
+10964,6265,40257,56029,39210,6858,24866,48061
+10965,45708
+10966,2482,10303,76714,31420,81408,13304
+10967,14772,34237,30596,55352,54274,19093,20107
+10968,63075,28939,59962,12264,8971,6389
+10969,21954,26597,37507
+10970,53514,59178,75255,49637
+10971,23016,18870,61603
+10972,28070,10163,64414
+10973,71335,6250,27849
+10974,50517,8523
+10975,34261,44129
+10976,46202,47374,15318
+10977,22777,66833,9568,34761
+10978,20988,56998,67271,58166,30596,45186
+10979,52506,19528,53915,42237,1119,63778
+10980,40776
+10981,17298,13851,52386,18167,81774,8257,60301
+10982,52491,27671
+10983,11476,54605
+10984,59933
+10985,59939,52520,29214,32518,40821
+10986,27102,24396
+10987,8826,34414,75806,7963,54291,59785
+10988,42584,65922,5925,57709
+10989,66370,38801,60009,10993,51556,5439,57512
+10990,2739,15201,78208,50722,18590,23787
+10991,63681,37811,32518
+10992,19816,19152,77319
+10993,32085,81321,16141,1288
+10994,72544,21550
+10995,29714,45378,81882,14177,58040,6202,26343
+10996,500,15916,81504
+10997,7617,4897
+10998,47688,13771,9493,120
+10999,74041,29976
+11000,57977,59381,8068,73225,38261
+11001,44691,12355,61019,58902,26963
+11002,18147,20930,64303
+11003,68787,5638,78209,37969
+11004,17022,65457,47566
+11005,4879,5184,3796
+11006,74579,43355,9948
+11007,53533,73016
+11008,52696,15676,58423,61583,24287
+11009,9419,51523,30153
+11010,64303
+11011,18173,16443
+11012,50005,37085,49638,64581,47712
+11013,15877,81056,50644,18685,74906
+11014,78226
+11015,5144,6314,18023
+11016,33226,33882
+11017,23560,18280,48589,60600
+11018,48696,33486,60807,56925,17689,21911,11899,32993
+11019,23351,45547,2046,26413
+11020,71433,17509
+11021,13598,73971,72061
+11022,51485,35333,76690,17377
+11023,65889,49073,11712
+11024,78539,62901,81191
+11025,73694,15800
+11026,45649,12161,18080
+11027,963,50421,27468,76490,76391,33948,65879,50664,6366,38511
+11028,49194,13257,61417
+11029,47120,114,81882,80567,56529,63368,38099
+11030,15385,18095,59725,13375,58442,41649,49380,4245,45595
+11031,1645,59262,16549
+11032,20414
+11033,38111,42714,625
+11034,42925,41617,53853
+11035,42657,35871,70404,51686,62601,45001,50968,37189
+11036,41937,47888,16768,6875,52990,19948
+11037,43552
+11038,63277,31018,41027
+11039,50358,33089,23821
+11040,13768,1037,19362
+11041,14202,27790,53297,78136,72486,81223
+11042,76871
+11043,16031,65479
+11044,59799,27921
+11045,35872,52319,64051,76430,30602
+11046,29155,66150,55819,41311
+11047,58198,4803,80423,44797,23729
+11048,48873,20388
+11049,77013,62735,821
+11050,2079,55376
+11051,41380,81472
+11052,79281,53517,36820
+11053,27019,46786,71105,72497
+11054,47616
+11055,30625,21379,59075,55519,58571
+11056,35328,15962,49714,45885
+11057,66678
+11058,16194,74360,40224,59609,11945,30593,1971,48010,2559
+11059,54446,81442,29869
+11060,70110,73489,61116,81714
+11061,32408,59682
+11062,35896,19324
+11063,49289,15041
+11064,78919,79824,7588,43181,8769,52854,73716,73063,52779
+11065,33241,68026,9188,3767,13409,60771
+11066,50548,30709,15137,67206
+11067,21459,50187
+11068,13774
+11069,9627,62491,52746,47857
+11070,76945,4066
+11071,50906,61554,5234,30454,79032
+11072,65555,48578
+11073,35870,310,69175,75485,30847,41173,77813,33875
+11074,15752,18816,4582,32937
+11075,59021,25538,47872,38641
+11076,11163,24383
+11077,47082,37493,51441
+11078,15628,79367,80091
+11079,47536,31777
+11080,77568,55511,25119,20894,40900,37240,9387,26163
+11081,40563
+11082,13073
+11083,58511,52520,64880
+11084,15204,45479,50981,60397,39283,77811
+11085,76134
+11086,8887,28242,43712,14195
+11087,74819,3583,73584,21109,35552,52671,9158,22509,25146
+11088,58115,8887,8629,25966,33622,38228
+11089,284,6328,69950,73347,7404,13004,26460,34113,9414,65977,40947
+11090,69368,64425
+11091,81016,55962,12910
+11092,30877
+11093,25206,53518,61271
+11094,78716
+11095,50489
+11096,41898
+11097,16446,17347,7664
+11098,13232,49976,10926,12196,30264,7062,47484,12303,63803,10918,32728
+11099,32340,2502,2056,12248,21571
+11100,52590,29711,51217,28340,49813
+11101,77617,19153
+11102,56854
+11103,48469,66819,12355,33245,9744,38964
+11104,76020,20386
+11105,49356
+11106,65869,35195,45935,29148,77982,40164,42584,35767
+11107,56278,80036,76465
+11108,19557
+11109,64653
+11110,8859,77994,17554,81984,30812
+11111,62657,1154
+11112,13802,17101,30713
+11113,57961,36571,20685,41478
+11114,24059,53571,13046,46709,61459,58530,15989,1183,23348
+11115,21604,36104
+11116,35238,60317,51017,66195
+11117,35054,60470
+11118,39855,7069,13348
+11119,21970,1005,35864,16630
+11120,26591,3305
+11121,23714,36070,63056,74937
+11122,19252,31664,61978
+11123,28918
+11124,55255,36468,80835,16491
+11125,27865
+11126,1684,4267
+11127,44071,64570,53463,35589
+11128,28552,72230,17266
+11129,79664,27804,77779,71752,72520
+11130,32803
+11131,55608,27142,52368
+11132,73927,81210,33356,2741,71988,30585
+11133,65173,37885
+11134,55865,61633
+11135,76587
+11136,73578,40124,73510,19350
+11137,26917,67612,5649,61437,37626
+11138,7714,9001,56349,63510,60399,73939,1861
+11139,41378,40737
+11140,30679,29750,59255,81598
+11141,75215,46817,75227,3023
+11142,40739,71417
+11143,20483,49838,25330,29710
+11144,6833,59355,9518,22138
+11145,27132
+11146,6138
+11147,51158,30842,78807
+11148,32537,68760,75046,14944,61540,61846,45249
+11149,55350,80028,15184,25355
+11150,37938,63676,20949,53578,61002,46242
+11151,3251
+11152,23217,18162
+11153,28864,62449,15754,13083
+11154,9587,78870
+11155,5815,21030,24039,70518,25161,16242,8468
+11156,57661,75401,52597,70503,39740,42912,56007,81574,19201
+11157,16688,45915,59120,19699,2493,8182,2855
+11158,11907,46932,12042,76908
+11159,67592,78228,78575
+11160,70911
+11161,60751,3842,38982,55376,20824
+11162,22644,56411
+11163,15676,40103
+11164,17795,31735,80452
+11165,38717,62001,42119
+11166,81958,40603,47979,77031,3440
+11167,17605,74096,11441,76199
+11168,12831,68987
+11169,72873,78975,3094
+11170,834,12191
+11171,59256,14615
+11172,76463,77953,69152,43280,79088,55819,41475,12521
+11173,25593,1361,1938,57153,14060,80409,10300,26049
+11174,65363,57728,33949,30541
+11175,53862,34127,5576,22730,31132,4045
+11176,45361,53256,69536,31617,18114
+11177,81610,26080,44226,46083,65527,78338,14981,59869
+11178,28265,44147,68553,27349
+11179,22816,41571
+11180,52428,50116,56620,34668,63771
+11181,74660
+11182,47784,22933,78399,29214,9067,774
+11183,63721,37263,70967,22260,63206
+11184,1677,31029,51271,77624,81885,78860,49114,56648
+11185,74656,75010
+11186,17577,49891,66161,56193,81226
+11187,17751,81376,39760,35495,24862,44578,45307
+11188,30292,42622
+11189,71740
+11190,28035,74456,39109,44762
+11191,54613,14791,69728,1310,7699
+11192,39827,31168,8138,11302,10076
+11193,41609
+11194,70677,40376,42202,21056,28605,23358,50144,20276,12138
+11195,17324,35412,2494,25806,75005,80521
+11196,54191,75338,475,13912
+11197,20581
+11198,19941,37738,14900,62278,44711
+11199,21448,15300,80037
+11200,7712,50550,12853
+11201,6887,19196,23642
+11202,7496,32878
+11203,74912
+11204,38019,20738,43024,31742
+11205,64581,16953,2604
+11206,2814,5660,7235,46759,9145,9109
+11207,59879
+11208,71369,29601,31993,53405,80498
+11209,3192
+11210,41973
+11211,41424
+11212,79661,50394,40375
+11213,69999,981
+11214,75166
+11215,57639,78912,7485
+11216,66786,38536,2548,79686,10394,10473
+11217,75212,37577,605,63069,46156,53229
+11218,468,1313
+11219,72420,41248,31219,61758,20275,45542
+11220,34564,1481,72563,39045,7027,44375,56488
+11221,43053,5674,7163,17033,80208,77343
+11222,67353,53217,50335
+11223,4493,11786,8506
+11224,62464,80275,245
+11225,7033,16553,62953
+11226,50964,60095,30525,62767,37004,64805
+11227,47693,81747,77238,59434,65964,63961,1645
+11228,4097,28459,81207,49962,62247
+11229,26481,32716,42938,34317,12503,11715
+11230,74337,60008,16391,78739
+11231,9817
+11232,16774,72489,14343,35308,48744,41290,2683
+11233,35237
+11234,27707,56939
+11235,10057,70824,65553,31585
+11236,75650,60495,34232
+11237,28919,27142
+11238,79664
+11239,1724,40188,11405
+11240,35328,39065,12664
+11241,17545,46561,34938
+11242,38111,48102,74949,70507,64504,5972,66757
+11243,76549,30826
+11244,41235
+11245,56236,56943,79773,42982
+11246,20390,52812,55428
+11247,26887,66764,33060
+11248,71364,25889
+11249,185,70964,4470,647,31013,79691
+11250,55803,8200,19816
+11251,22593,24437,66442
+11252,11684,61900,54571
+11253,40649,54569,20462,79739,20659,44302
+11254,41422,49046
+11255,54846,52691,73339,47753,49236,44447,68435
+11256,21423,60797,73909,35184,38708
+11257,57180,55929,11081,71052,66834,15633,74918,35153,71527
+11258,40741,81972,44078
+11259,79681,22541,35453,24415
+11260,60773,41790,49538,73777,64352,28162,71612,21338,18767
+11261,50716,17290,36121,66185
+11262,12815,78756,43405,33869,15464,73438
+11263,76006,65472
+11264,59261,55695,21379,21779,44390,59767
+11265,21000,24580
+11266,57902,27555
+11267,69347,62188,36973
+11268,23653,33935,72549,20336,30407,80952,25512
+11269,62351,72827
+11270,27885,60167
+11271,7039
+11272,579,41910,17319,1689,82157
+11273,32227,80666
+11274,40786,595
+11275,3166,19584
+11276,78266
+11277,6062,16568,55468,31740
+11278,36015,69990,46487
+11279,54040,73779,66244,76828,64311,73859
+11280,81152
+11281,56683,73910,6057,1813
+11282,30863,7870,29874,41826,17963,52865
+11283,33206,20013,69437,4894,37652,5743,24460,52342,58538,8489
+11284,51772,61320,39666,78407,72483,29238,27090
+11285,20974
+11286,60274,76670,58448
+11287,72194
+11288,29008,75418,7893
+11289,1763,75111,6737,30234,28197,10936
+11290,47752,52267,2908
+11291,69289,78225
+11292,23718,47227,68779,3750,14294
+11293,32559,14176,61709
+11294,17074,59948,39448,60443,23502,39681
+11295,41674,10233,44477,4996
+11296,81591,24670,60072,52354,23623
+11297,34360
+11298,2379,23964
+11299,66531,2499,27011,15926,28370,39247
+11300,9365,22032,59323
+11301,49926,67195,34423
+11302,62571,22149,19600
+11303,19146,40392,58074
+11304,41497,56289
+11305,40968,10807,56625,60265
+11306,6209,65336,77020,57807,1939
+11307,51789,59613,19692,1200,74101
+11308,31871,70998
+11309,32129
+11310,47545,42498,46017,39286,10171,36215,26085
+11311,55936,13886,73923
+11312,19683,13288,4560,58202,28951,40785,39231
+11313,80826,76469,50619,66509,58105,81613,43550
+11314,16748,66089,30540
+11315,2088,5977
+11316,78230,63139
+11317,72169,55526,27195,15198,69675,24855,42484,60100
+11318,51150,52236,44155,51054,52219
+11319,30728,21858,24537,77190,44178
+11320,48837,22272,78604
+11321,39650,46039
+11322,34535
+11323,52067,79840
+11324,66868,49137,36498,28985,62260
+11325,81131
+11326,34539,16842
+11327,18244,2968,79213,50809
+11328,39835,14153
+11329,67142,66573,36441,7611,70925
+11330,78095,64944,81196,25258,59340
+11331,46767,12201,60440
+11332,34560,23798,51055,22071,38568,58355
+11333,58897,13006,9644,62145,10470,63541,27745,74247
+11334,69465
+11335,10972,19280,26839,56940
+11336,65359,51891
+11337,67344,28436,1512,32284,58410,40093
+11338,34896,20929,50114,52402,23179,21764,32875,13400
+11339,65737
+11340,8356,72360,59297,19491
+11341,57281,50645,19904,67821,36437
+11342,20056
+11343,62528,67895,16093,52790,22935,37911,55353,14697,20925
+11344,40050,49220,79205
+11345,48262,78942
+11346,10776,25855
+11347,72063,38214
+11348,76236,38384,54788,81417
+11349,66561,43852,71298,60814
+11350,20173,57544
+11351,6679,59043
+11352,49871,77297,21658,30648,27890,32901,37617,12356
+11353,60655,60869
+11354,14714
+11355,13967,57533
+11356,80572,54060,13308,58690
+11357,45265,75439,43091,32984,26979,21128,69529,73455,79519,23569,46850,23050
+11358,55031,60538
+11359,64851,65124,38569,4715,4587,68385
+11360,37778
+11361,33435,65659,38964,27940,46810,10123,36803
+11362,39110
+11363,30712,18473
+11364,73675,42796,8734
+11365,68824,1683
+11366,73710,51916,41182,38084,55261,9331,45776,36681,50757
+11367,55867,22405,43425,24890,63520
+11368,32666,61326,15412,74419
+11369,21446
+11370,42993,78064,57799,71329,61712,71027
+11371,70732,48846
+11372,24666,45151,60724,29421
+11373,54882,19130
+11374,1022
+11375,65757,21857,71672,4038,48486,4609,36271,51441
+11376,78216,22355,43238,52629,20584,41776,25663,46625,11290
+11377,6298,58855,65419,74898,60166,63314
+11378,14042,48792,33112,47373
+11379,45753,19776,28445,2121,27446,51630
+11380,77074,49139,20566,4392,64006,41357
+11381,8835,6927
+11382,32469,27696,58987,67694,2523,51726,22237,71944
+11383,21155,81741,25166
+11384,55435,7480,37679,2147,45664,18864,58802,18595
+11385,28111,57364,150,12316,77496,76784
+11386,81442,30364,64134,55332,77403,51773
+11387,75126,13277,23604,60205,45597
+11388,45448
+11389,15419,54416,21521,32185,9915
+11390,45203,4677,56094,22364,35406,59441,67396,10522
+11391,55111,54965,60819,27940
+11392,61828
+11393,48858,54735,50665
+11394,69338,13555
+11395,8491,32299,26647,14166,14248,59187,43966,28722,56996
+11396,68884,45034
+11397,70118,39026,28879,61176,61141,710
+11398,68327,52313,78059,25507
+11399,22480,13378,8707,37117
+11400,36273,52086
+11401,59147,58931,75135,72931,9584
+11402,53945,59094
+11403,43465,25391,25313,6459,23337,11273,73554
+11404,75408,41419,27523,58684,52794,23508
+11405,49812
+11406,77346,45622,79691,77157,70395
+11407,46200,61072,76453,17661,34128
+11408,55684,76109,43387,80175
+11409,81574,67231
+11410,46119,77030
+11411,79413,13929
+11412,28334,81120,32603,53620,32958,81820,20204
+11413,56274,43555,71852
+11414,8990
+11415,801,67800
+11416,61956,52778
+11417,24003,743,1178
+11418,51287
+11419,25621,24936,13346,63577,17938
+11420,30415,72970,20030,26551,54131
+11421,31015,225,22427,59127
+11422,61378,50833,50508
+11423,81322,71549,74039,62202,27926
+11424,78017,10860,41639,59945,37959,17319
+11425,35971,20408,40056
+11426,72991
+11427,23238,73930,30597
+11428,64349,8751,63453,32122,57182
+11429,68570,55654
+11430,33465
+11431,38321
+11432,28721,8582,40542,48311,27825,21282,2855,17036
+11433,81324,53989,32020
+11434,57568,52291,52362,10955
+11435,19199,49057,44069,14103,67553,5595,73985
+11436,65312,25774,80978,52908,60973
+11437,40063,36367,70088
+11438,81033,19687,25132,18516
+11439,34107
+11440,76710,48789,69880
+11441,36674,10890,58797,40361,64111,65703,78070,28658
+11442,25643
+11443,48277,75287,29944,11388,66359,18597
+11444,41840,34115,45046,20144
+11445,70998,30201,38558,54725,69115
+11446,33504,9853,7114
+11447,26494,16766,39742,42353
+11448,7445,26137,19918
+11449,14595,50683,25383,62629
+11450,26339,59794,51398,57515,41058,18498
+11451,11346,26422,33136
+11452,11846,65713,48037,63244,60098,61869
+11453,46091,40805,26179,70353,8834
+11454,62482
+11455,56768,18192
+11456,12993
+11457,65396,46335,27828
+11458,74272,59116,34053,19365,46131
+11459,490
+11460,54351,74056,27000,338
+11461,77930,42715,81026,45251
+11462,72345,70151,50704,81109,79147,30276,33219,59169,20546
+11463,51805,35527
+11464,29652,72803,11298
+11465,56644,15092,72851,50956,65289
+11466,59867,45068,44383,81961
+11467,28474,80567,40406,3021,65529
+11468,3161,63182,27142
+11469,1903,6504,65469,7221,13261,68515
+11470,41845,27354,2150,73841,30702,21785,4813,44905
+11471,75370,46229
+11472,20685,36784,27339
+11473,62613,61845,43354,24135,47657
+11474,28559,19802,39054,20804,77055
+11475,20716,38057,12577,39212
+11476,29999,48033
+11477,10892,38262
+11478,29651,4620,25085,66641,28766,20987,39537,25235
+11479,49655,10270,22188
+11480,1684,30724,30467
+11481,8405,38905,48865,38335
+11482,49160
+11483,57680,3255,2515
+11484,69476,61789,13030,75238
+11485,47005
+11486,15533,73094,15929
+11487,71532,45919,8742
+11488,23009,23246
+11489,59439
+11490,73899,22107,80215,23553,46583,31227,81465
+11491,27664,1618,60540
+11492,72757,40259
+11493,12619,76674,78738,64223,6118,19511,74871
+11494,82053,80856,57467
+11495,48493,16416,11001,52061,34187
+11496,25141
+11497,4937,18860,25191,23654
+11498,29017,4025,22230,80256,14875,73070
+11499,6095,64246,18773
+11500,7457,61137,77005
+11501,30079,14459,35946,45929,81530,24099
+11502,59899
+11503,10723,58980,75189,61497,8396,56387,51059,59128,41736
+11504,57760
+11505,35505,6048,39153
+11506,76436,40508,61370,33478,25741
+11507,37051,28803
+11508,53280,33586,58633,48660
+11509,2866,37803,59131,18953,5654
+11510,79537,71296,49047,19423,38335,20365
+11511,77734,57542,19166,81097
+11512,26319,33782,38351,47570
+11513,58655,37322,30399,56729,77427,72545
+11514,35112,46941
+11515,24120,51014
+11516,12075
+11517,46290,82000,74299,38899,81456,49431,16250
+11518,60779,50924,60592
+11519,11728,11601,41561
+11520,67096,3495
+11521,62902,74007
+11522,50692,63359,58845,6289,2344,14538
+11523,32924,66510,68574,81556,11864
+11524,1278
+11525,33951,40151
+11526,75736,68159,36847,54154
+11527,51082
+11528,29500
+11529,30457
+11530,58084,79652,49856,44828,81241,12782,30103,80923
+11531,27938,75628,69839,7223,39248,29428,36986,9702
+11532,60115,73144,57254,4172
+11533,71789,26012,61198,5346,11673
+11534,80373,15034,54397,8559,26916,7662,33535,50983
+11535,75133,24075,79098
+11536,47616,71401,23338,14603
+11537,41415,73415
+11538,51808,30362
+11539,5952,33686
+11540,26415
+11541,66735,16501,52309,14603,40802
+11542,40707,47261,49549,71646,20338,74156
+11543,4604,49943,16210
+11544,73415
+11545,5505
+11546,62358,18937,44086,79696,48672,47619
+11547,80969,66033,73963
+11548,58427,39368,16032
+11549,81060,53160,18485,30369
+11550,18507,29921,46252
+11551,56237,67924,36314,7285
+11552,49203,81468,24437,27253,34090,1445,79985
+11553,18458,71661,13906,70804
+11554,16949,39331,39316,56556,43599,45185,31760
+11555,44789,38216,14376,45629
+11556,72441,22435
+11557,69738,61544,10512,8249,1892,16121,33356,36855,23576
+11558,17663,78347,7954,25360
+11559,45300,49511,78981,18141
+11560,6320,12219,31858,39081,49839
+11561,77670,61568,58918,64944,80490,10596
+11562,56035,11115
+11563,52482
+11564,58655,13247
+11565,19058,37428,24864
+11566,10345,61000,659
+11567,15845,77713
+11568,61447,81989
+11569,33742,77198,39832,143,16206
+11570,64683,23038,48520,64690,75203,16969
+11571,45891
+11572,64330,40721,22394,43988,42921,18868,60521
+11573,57278,68875,62446,52475
+11574,21922
+11575,36960
+11576,13814,70080,37327,30113
+11577,23434,8628
+11578,23332,36651,33008
+11579,32960,19668,67126,60545,46077
+11580,46406
+11581,63186
+11582,49266,18538
+11583,34208,69040
+11584,31949,45668
+11585,36032,54192,76144,18674,79989
+11586,77382,45279,56610
+11587,71211,32888,65041,25045
+11588,59624,15188,45128,77965,53344
+11589,311,32941,15716,4550
+11590,16846,21697,78588,6117
+11591,71740,69042
+11592,31577,46664,73984,26370
+11593,1462,39202,2051,37291,30497
+11594,22448
+11595,65426,35412
+11596,5683,81450,64427
+11597,58454,53157,47906
+11598,60015,75398,23201
+11599,7768,29392,7794,7374,79149,72600,52782,72746
+11600,72624,49430,69481,4080,67777,80265
+11601,36832,53115
+11602,22735,57301,37107,57589
+11603,70365,20856,41589,76605
+11604,17409,61885,6073
+11605,81086,46383
+11606,32593,56155,65204,1471
+11607,40700,55241
+11608,37039
+11609,65158
+11610,11020
+11611,40975,55865,41104
+11612,66701,21001,7303,12644,31054
+11613,65876,27540,58156,44907,27914
+11614,35527,45513,74040,1579,54732
+11615,63311,27033,50943
+11616,22045,58787,31958,22365
+11617,54772,57304
+11618,34697,50443,72214
+11619,15089,36587,61311,43710,24561,24789
+11620,9642,53493,52110,53359,75204
+11621,16890,64100,74994
+11622,8547,58943
+11623,6937,53780,78998
+11624,62629,34294,33390,77321,8450,78539,25029,23603,15744
+11625,54706,12998,61750
+11626,16953,61037,39397
+11627,74517,42176
+11628,6383,9174,7731,45522,73264,1915,14857,36809
+11629,6201,76610,27267,38455,5814,63984,75427,53517,54154,75116
+11630,31068,16066
+11631,59500,43093,8516,15341,63093,24032
+11632,8428,26813,78649,20613
+11633,58904,27470,25579
+11634,77572,52551,6226
+11635,8945,37598,13847,57100,80212,54582,6889,19519,47623
+11636,41346
+11637,17239,16724,27446
+11638,68815
+11639,36378,65275,74864,42680,17606,7602
+11640,61498,10777,12259,31156,8714,81057
+11641,52454,80053,67140,11545,75408
+11642,34836,2429,55987,59791
+11643,19398
+11644,64857,70057
+11645,38690,62426,12991,54273
+11646,1200,39712
+11647,9649,5195
+11648,64150,14095
+11649,61712
+11650,71456,78436,38135,21367,52696,27364,69731,48878,26407,80648,37062,24743
+11651,54448,68816
+11652,27543,42989,27559
+11653,5105,17754,76234,54463
+11654,6059,22278,29339,6556
+11655,25993,43665,17171
+11656,53725
+11657,25717,42767,25396,43185,4824
+11658,479
+11659,27444,22114,33714,76859,19964
+11660,57931
+11661,27,22832,58873,81998,34454,38424,28814,55708
+11662,9675,10572,81032,60399,29885
+11663,902,79909,60411,12557
+11664,14836,67314,10866,1285,13479
+11665,52349
+11666,41699,26080,44783,40552
+11667,81678,49609,59850
+11668,49998,24036,20148,70239
+11669,37057,73091,74203,76109
+11670,36223
+11671,65192,1251
+11672,50940,81789
+11673,64629,18366
+11674,37055,56896,44886
+11675,61505,60251
+11676,53425,40109
+11677,50229,56840,20437,27690
+11678,27860,33471,80645,45406,18614
+11679,36205,29690,31627,15799,19910,35648,40080,44485,74653
+11680,2823,41976,35726,77170
+11681,24062
+11682,24488,22256,7867,73288,30858,10916,19045,50131
+11683,77413,44673
+11684,81328
+11685,46235,25605
+11686,45250,77666,49550,7855
+11687,26273,77278,30436,14330
+11688,9413,3969,66164,66504,65838,62762
+11689,49323,8349,61291,24313
+11690,33084,46351,40977,25455
+11691,44045,75677,22029
+11692,44631,29304
+11693,38680
+11694,55621,5400,53772,34289,30322
+11695,61971,48799,28978,12191
+11696,69833,55920,24325,72781,26109,76927,31705
+11697,53376,20752,9695,69226,21260,69981
+11698,18192,57387,22047,76522,9284
+11699,50016,47639
+11700,10192,71367,74952,21665
+11701,6580,54702,3243,40226,40090
+11702,69036,50844,52619,75691,56989
+11703,74551,24715
+11704,72169
+11705,5509,78793
+11706,69105,80824,40730,31208,67529,57757,11929,75252,65895
+11707,69216,3010,66887,52461,51976,14565
+11708,72367,4544,24401,12336
+11709,24557
+11710,12724,41338,45627,23687
+11711,66517
+11712,42119
+11713,33091,67845
+11714,21948
+11715,23454,36223
+11716,17373,74544,45693,52393,46941,38326,13364,3931,76846
+11717,14527,1687,20559
+11718,82138
+11719,79149,38070
+11720,20265,25680,10592,43081,45622
+11721,65452,62556,5406,36844,51068,305
+11722,28496,58996,75012,58263
+11723,50868,57722,37940,9622,61186
+11724,68180,76903
+11725,51465,76278,57570,24898,36842,39020,51606,72945
+11726,39098,6149,74914,70563,29193,73256,43533,28475
+11727,71850
+11728,38789,60411
+11729,20207,73367,21191,81061,39293,38020,60790,29849,36059,71645
+11730,24003,15086
+11731,41367,76241,31847,57247,35936
+11732,26091,82051,43744,1942
+11733,47748,74653
+11734,50895,3509,70801
+11735,24887
+11736,6950,10311,15801
+11737,33069,56657,76371,34555
+11738,58177,35947,44005
+11739,9285,75408,67052,69823,71749,19946,47843,12042,36574,71658,10476,37872
+11740,57377,76917,60296,34261,40774,15298,80090,16694
+11741,49155,53245
+11742,30857,2361,9567,21850,63055,11911,41998,28838,18038
+11743,78138,31283,72517
+11744,4420,39000
+11745,5650,25790,70638,28352
+11746,62078,64256,6204
+11747,6056,1060,75852,11773,79582
+11748,80041,8612,65887,11741,39459,12118,35590,44105
+11749,59647,47040,30922
+11750,46368,60018
+11751,58419,43404
+11752,45133,38709,8990
+11753,50597,78276
+11754,79070,65417
+11755,60788,79570,74840,17483,8257,56371,36964,31918
+11756,28738,11672,42697,13819,23740,34856
+11757,13966
+11758,81037,1715
+11759,32627,10528
+11760,71703,9358
+11761,18583,21162,2909,1147
+11762,39132,36768,74049,55715,2358,61264,73705,24987,57183
+11763,8448,37205,39926
+11764,33170,50179
+11765,33578,22309,51268,53190,21436
+11766,68918,12684,57701,50391,73891,71352
+11767,37595
+11768,61165,39527,56451
+11769,25241,75702,5952,63809,37470,40016
+11770,64415,55832,27798
+11771,78439,20025,3802,70720,52984,23428,3201,17020,17958
+11772,66064,5852,36719
+11773,66712,64879
+11774,28536,47875
+11775,14209,62510,44502,68365,12483,323
+11776,57922,38509,18810,13030
+11777,44702,48588,45450,41836
+11778,46423,1712,10959,11803,69961
+11779,15514
+11780,39013
+11781,81702,8360,1891
+11782,12987,13924,10223
+11783,54763,5278
+11784,15429,4582,3393,44618,24395,70561,55361,45473
+11785,3525,31846,4555,47604,61947,44358,79467
+11786,70826
+11787,8488,47229,80175,186,50478,81825,24996
+11788,17885,73903
+11789,8634,1067,72215,80886,807
+11790,62489,26514,19181,51553,6514,80885
+11791,26990,24895,82159,12759,65046
+11792,59291,38092,62486,35473
+11793,28991,43660,45276
+11794,49673,77262,62690,9071,32476,74848,16690,13761,13
+11795,58022,63812,9002,77848
+11796,36870
+11797,1581,12222,43259,34605,26193
+11798,16591
+11799,31229
+11800,78840,51737,4562,7244,8452,44152
+11801,12106,75311,27216,79820,46639,69121,3176
+11802,8837,6508,11738,5475,49949
+11803,8200
+11804,54094,15915,6247,24844,80688,57209
+11805,41670,70755,80424,72825,70790
+11806,28062,30070,28093
+11807,65155
+11808,40134,78639
+11809,42190,77775,14232,11197,1480,78403,42869
+11810,25858,3619,81934,25688,48127,17415
+11811,34585,24622,75336,50650
+11812,13253
+11813,75294,56748
+11814,19982
+11815,65395,32125
+11816,69128,67653,43906,2114,49815
+11817,57960
+11818,71974,17089
+11819,9275,23223,37466,6659,9678,19912,34383,5099
+11820,514,3560,32091
+11821,14366,68730,25319,51234,63186
+11822,14326,8649
+11823,39112,49859,72489,12311,70466,28090
+11824,79073
+11825,64795,10251
+11826,50213,65823,50929,50777
+11827,403,33520,54328,50929
+11828,63330,4391,9869,5071
+11829,30163,24521,54213,55726,6522
+11830,30213,50403
+11831,61367,28152
+11832,39614,34210,70710,7498
+11833,37377,77134,12729,6242
+11834,75406,14774,48308,7153,68442
+11835,63403,297,75366,18311,81120,30889
+11836,36831
+11837,43569,56960,41355
+11838,40631,17020,29340,32965,63319,43843
+11839,29940
+11840,27045,17856,26983,47477
+11841,18902,36150,80450,5836,40246,39537,5805
+11842,28744,18138
+11843,29389
+11844,69498
+11845,34090,49409
+11846,64721,22675,54191
+11847,30986,1957,64572,47754
+11848,55782,54391,35183,55850
+11849,79602,63144,33176,39505,63057
+11850,48728,78950,72750
+11851,76779,6300,28856,21261,71466,20490
+11852,39510,48564
+11853,52167,32374,36562
+11854,12784,78556,75403,39721
+11855,68002,39622,64199
+11856,66588,5187,6392
+11857,5224,58147,19309,40252
+11858,74969,21775,75184
+11859,68987
+11860,20811
+11861,22457,66687,24154
+11862,70911,18080,52812
+11863,4155,30868
+11864,16758,5562,56642
+11865,14372
+11866,58482,4519,71497
+11867,58246,72455,69162,32055,18769,3138,10138
+11868,12112,21968,34947
+11869,71364,22384,70344,61593,13311,9639
+11870,52779,8898,65865,47839
+11871,21968,60491,24120,1702,2895,1785,38731,80364
+11872,44923,17568,21649,57215,59755
+11873,33963,50653,34355,46619
+11874,49590,70550,29796
+11875,76977,31349,26084,82039,81894
+11876,58357,35674,66479,45327
+11877,12574,34784,47874,31307,50875,31859,16602,54609
+11878,81651,31008,68717
+11879,28607,50802,49527
+11880,46649,43366,65149
+11881,30740,75611,24475,16088,79514,12829
+11882,20445,40233,24094
+11883,33960
+11884,53783,21094,18735
+11885,22685,70189,31701,55091
+11886,44780,71876,72371,33805,48360
+11887,25329,72448,81369,60569,75861
+11888,36408,57038,55037,72534
+11889,24026,40134,63436
+11890,77731,56195,76053,69302,14556,69439,10571,21925,6910
+11891,63426,18282,77805,6810,27555,21165,38101,57916
+11892,27341
+11893,72250,14759,14591,34007,7914,11513,30444,54968,4473,31048,2572
+11894,843
+11895,67253
+11896,33317,34720,8158,49226,68677
+11897,68705,41323,51380,77261
+11898,55735
+11899,66495
+11900,3768,19155,77250,8039,9804
+11901,27469,14652,46909,48366,72614,4577,78663
+11902,77901,22454,69949,68568,17922,45336,17529,59609
+11903,9437,60836,28671,5970
+11904,14520,27463
+11905,61577
+11906,31521,50786,59812,13163,1350
+11907,4290,20666,46846,76984,22547,28286
+11908,5503
+11909,63769
+11910,79573,41545,71566,69203
+11911,65265,50432
+11912,22300,43874,49550
+11913,12914,19845,74803,26876,80620,39725,16026,7607,79297
+11914,81613,74070,32568,65295,80884,48163
+11915,1483,28597
+11916,8543,32235,78076
+11917,13849,26339,56086,55447,43756,41131
+11918,45404,53023,22719,12302,48490,10538,50796
+11919,73708,12534
+11920,18574,42638,57937
+11921,62779,13367,16646,71821,73485
+11922,8426,35817
+11923,31909,54688
+11924,27048,2262,16223,38463,72663,75046,27653,69010,1676
+11925,30231,74865,67238
+11926,13478,40716,67631,53421,27679,49394,75885
+11927,36347,54843,65832
+11928,15800,37575,21084
+11929,77952,20782
+11930,71418,66517,10001
+11931,12429,5029,24764
+11932,79988,80338,43600,48342
+11933,78415,1715,59411,80190,23553,2461,21212,69540
+11934,45119,62301,23251,13743
+11935,45606,71555
+11936,38455
+11937,38570,80398,63231
+11938,31746,67586,82069
+11939,18055,360,75835,12593,16698
+11940,47292,48562,62126,59134,38035,75473,71715,30524
+11941,20734
+11942,14811,24464
+11943,24909,51673
+11944,64476,68499,13223
+11945,49583,4275,5857,57563,36044
+11946,37523,49773,36433
+11947,5348,4518,79291,3168,50926,65421
+11948,9227,26973,36719,24431,70039,6476
+11949,8241
+11950,6078,65452
+11951,12490,44681,32325,233,76514,7802,56596,10848
+11952,41257,44410,26219,33333,61433,72676,74309,19971,20644,79891,58587
+11953,27467,157,15854,12359,19614,8204,74218
+11954,75254,29036,2106,12112,35431,10044
+11955,50373,80896,80873,16343
+11956,40996,43268,40694,81353,57898,54864
+11957,44042,62457
+11958,23813,21468,52651,49635,61482,81357,31858
+11959,72835,65890
+11960,38101,17172,80346,42054,66466,39124,46509,65018
+11961,40622,12705
+11962,65416,60673,71232
+11963,69220,61653
+11964,20342,41010
+11965,56288,52184,2623
+11966,3552,48937,13270,60234,22790
+11967,54217,73248,5146,10045
+11968,32889,30480,7881,28416
+11969,32429,11256,25878,58117
+11970,65295,15866,66770,51195,17386,54933,52774,13123
+11971,72085,53103
+11972,26255
+11973,77030,31019
+11974,22759,60210,55427,75319,17342
+11975,56837,57878,14387
+11976,29065,5293,76417,52631,55354,24305
+11977,10931,4533,28014,22981,38898,39783
+11978,56019,37932,36288,10633
+11979,58973
+11980,36317
+11981,35489,57239,72275,35731,32306,60790,46372,5886
+11982,35743,20455,35987,43664,4621,77014
+11983,53844,25738,57989,5509,50113,77916,22366,22375,81285
+11984,73016,36273
+11985,49159,64763,50904,41311
+11986,60358,45020,37351,41571,59114,55202,67787
+11987,68692,14561,61195,2327,13634,69098
+11988,4301,3220,50234
+11989,56553,44184,2759,77868,32567
+11990,37020,69929,69355,63033
+11991,80567,21534,34394,27639,43780,74577
+11992,64227
+11993,23107,44509
+11994,1392,31387,81708,52344,55881
+11995,60868,18118,73956
+11996,13862,33611,54918,76212
+11997,9689
+11998,61079,81088,42531,73555
+11999,73567,26328,79732
+12000,3680,45242,78960
+12001,81648
+12002,58044,62649,12803,45033,58758,81139,24299,1534,77062,20134
+12003,4005,41326,18841
+12004,1338,4217,17159,4510,22299,36348
+12005,31645,25141
+12006,25544
+12007,57429
+12008,64756,55264
+12009,49661,7750,52135,81663,57697
+12010,12406,15396,28977,58290,56890,50950
+12011,37250,55686,45491
+12012,79370
+12013,24392
+12014,10773,69935,3345,44930,65068,28548
+12015,71081,26108,6373,38733,55906,801,53580
+12016,81919,32390,2962,77616,55178,67674
+12017,63937,59851,26239,73503,17754,78076
+12018,40347,52,63659,15393,57744,55366,61182
+12019,32699
+12020,8269,26739,80524,26989,26638
+12021,47965,44648,16209,68578,65644,1337
+12022,64576,69694,59976
+12023,32204,58918,43234
+12024,298,10955,36050,74122,65728
+12025,81201,75834,56042,28096,56775,43402
+12026,1469,51681,12582,29770,32598
+12027,20146,32627,33560,41433,53617,50490,59881
+12028,62838,25638
+12029,47907,65125,66562
+12030,26068,30806,25605,56982
+12031,33068,71833,71485,43420,80638,44763,55444
+12032,27366,60210,69725
+12033,5403,15129,54142,44370,50910,38461,13919
+12034,43871,24330,4864
+12035,51675
+12036,14814,12820,76413,68141,58694,63374,82103,69475,28948,31903
+12037,63322,5544,8497,9681
+12038,15197,51918,35601,59533,19098
+12039,40480
+12040,70515,37648,29837
+12041,34714,46708,35130,78837,34479,20199,55967,61272
+12042,53353,70010
+12043,79613,6164,9761,27120,29576
+12044,13926,38883,79508,29642
+12045,33838,80057,9851,21460
+12046,10549,46027,38440,51260,57876,58432,11852,30197,79020
+12047,13683
+12048,57030,18600,17022,12207,81648
+12049,31873,53812,72738,75015,61667,17356
+12050,65373
+12051,77121,19849,77533
+12052,34778,17093,38669
+12053,35358,7921,7972,392,26956,59675,45203
+12054,62551
+12055,53210,71128
+12056,9099,73048,55746,24025
+12057,67265
+12058,74445
+12059,79700,77991,60344,55701,33546
+12060,8210,48404,39535,60587,27733
+12061,48192
+12062,2279,778,24614,7628,79529,37084,2480,2453,74634
+12063,27949,49784,61819
+12064,40253
+12065,18299,79491,53913
+12066,40762,82054,52469,65725,31529
+12067,56960,18404,52174,41452
+12068,25142,77548
+12069,67256,25895
+12070,22633,69841
+12071,80857
+12072,49194
+12073,62301,24120
+12074,78552,18136
+12075,24343,14735,23603,47883
+12076,37004,10258,71102
+12077,18737,9358,74079,57312
+12078,79190,48655,56628,9759,45050,43432
+12079,27218,73856,16779,36372,3777,71242
+12080,81278
+12081,78468,56058
+12082,39215,35529,51358,58030
+12083,63136
+12084,20833,61360,44483,5327,52309
+12085,78233,22594,80248,17392
+12086,40107,37109,17661,38015,38227,41301
+12087,36914,60960
+12088,69158,77073,46717,37258
+12089,40615,57334,44941,49210,25844,42962,70686,40024
+12090,35058,37439
+12091,54252,226,66708
+12092,23163
+12093,72632,74394,63342,34973
+12094,20189,4927,34235,51560
+12095,2979,16536,18897,21373,47536
+12096,78795,30837,57712,74253,40504,39937
+12097,868,82006,16994,22404,45903,62754,4451,61414,54805
+12098,66123,40069,9963,7853
+12099,49160
+12100,43117,1455,31542,8927
+12101,72275,42605,62365
+12102,81058
+12103,75102,62401,61370
+12104,20858,64653,65464,23770,70916,7210
+12105,13927
+12106,9479,32131,67300
+12107,51183,21775,43930,80150
+12108,75385,15980,20746,42488,125,49867,72277
+12109,71190,60859,81036,32006,2962
+12110,27878,14021,52001,8355,32574,73142,27949
+12111,36112
+12112,45680,60658
+12113,19336,76569,37758
+12114,53019
+12115,35223,52526
+12116,25057,76093,31446
+12117,44428,5730,49738,19848
+12118,25069,1872,32598,27642,67302,81357,52656
+12119,57995,1919,64740,68153,78103,15607,47201
+12120,9318,74172,26497
+12121,17028,53730
+12122,63172
+12123,63197,63664,5141,68749,34078,8018
+12124,77550
+12125,53554,60859,67098,31996,33120,69890,8973,47968,67236,63196
+12126,40201,10482
+12127,13750,44333,23222,51047
+12128,58324
+12129,80384
+12130,81828,74447,21810
+12131,76310,46276,66993,73510,37859,9590,236,13596,56111,68996,80940,27566,58066,76204
+12132,34632,58736,7342,65028
+12133,32008,40027,69919,56962,55019,59412,56609,35691
+12134,33552
+12135,77606,60168,13696,57809,68976,63150
+12136,67448,12911,10822
+12137,64107
+12138,23959,77483,5843,19244,54630,35993,77500,48678
+12139,69920,24210,15247
+12140,8816
+12141,79202,72689,61309,78685
+12142,61978,43611,55986,3293,39292,34234
+12143,24690,41702
+12144,69708,66801,38798,60811,81071
+12145,24859,70754,76316
+12146,5918,1946,13685,59127
+12147,12656
+12148,67288,18478
+12149,29689
+12150,76021,30057,79849,68286
+12151,42289
+12152,38581,53466,18957,72131,51044
+12153,47262,53085
+12154,45984,33099,80907
+12155,66500,30091,77063,62636
+12156,50086,29826,44271
+12157,51766,56094,46407,68611,38931,48861
+12158,81132
+12159,60911,53171,28493,64653,16728,22783
+12160,70696,61900
+12161,71673,27799
+12162,39177,55325
+12163,59305,14662,53413,25040,49812,25043,63729,1400,74055
+12164,56702
+12165,7521,10373,17757,29245,11105,263
+12166,10305,33431,30738
+12167,61423
+12168,71514,64693,38556,12277
+12169,58573
+12170,12558,61496
+12171,76153,49574
+12172,13680,29893,61634,18119,16200,15556,8475,74231
+12173,58771,76917,9447,43889,50950
+12174,16458,77533,77301,63887,50427
+12175,9507
+12176,37491
+12177,2425,80395,37089,22675,1725
+12178,71482,20549,73761,27565,58510,80193,4825
+12179,22987,46603,52922,24309
+12180,30703
+12181,10579,43791,42364,19454
+12182,9897,66870,77984
+12183,82176,79105,1823,81421
+12184,28961,25001,42346,35742,75682,67287
+12185,19863
+12186,31960
+12187,11015
+12188,50734,2523,79690,1943,60705
+12189,2931
+12190,5790,78990
+12191,29402,14592,58903
+12192,46265,55996
+12193,75536,59230,49460,4742,29496,22703,8825
+12194,50515,10810,11607
+12195,76454,34491,76100,57640,52466,43186
+12196,29610,12571,69460,7818,64095
+12197,62441,64982,33587,81251,16593,49703
+12198,25451
+12199,50930,51344
+12200,9427
+12201,40303
+12202,39601,81374,11085
+12203,1604,21235,30615,11024
+12204,55210,11456,65355,70610,47269,16478,33843,43905,6858
+12205,28918,37004
+12206,27654
+12207,79867,63284,74640
+12208,32079
+12209,30430,71066
+12210,51755,59074
+12211,3804,45935,5542,13210,43723
+12212,79108,59843,65509,3790
+12213,79013
+12214,68321,70065,79395,36517,474,41579
+12215,52101
+12216,62753,41455,9717,54188
+12217,23171,19019,38399
+12218,61481,64945,73965,81689,76814
+12219,16080
+12220,71151,36805,10033,40863,45422,46923,43096
+12221,61940,20357
+12222,21392,22745,14630
+12223,19399,30620,71482,7953,80965
+12224,52067,80813
+12225,46946,55866,18147
+12226,29265,69590
+12227,58498,39439
+12228,32364,52269,63652,57925
+12229,66212,60274,69779,5202,54386
+12230,59352
+12231,1548,4550,71555
+12232,18493,63371,59484,3848,44394,60451,47790,5742
+12233,31469,37804,42612
+12234,25729,45141,25381,54159,51756,81626
+12235,77286,27262,23454
+12236,24496,67205,79742,73297
+12237,30365,8592,28014,56521,69419,48695,40567
+12238,15856,49455,36075,66978
+12239,80903,20132,65449,25014,43285,38671
+12240,5525,63776,71933
+12241,16707,66548
+12242,27662,395
+12243,769
+12244,74321,65283,37145,24019
+12245,30756,45064,27192,70532,80318
+12246,23432,52400,47069
+12247,22916,26516,51047,69574,3105,55546
+12248,24366,71655
+12249,5395
+12250,52526,70555
+12251,25654,56948
+12252,20745,25471,40456,65392,36964,52368,8331,2034
+12253,78525,59562,16947
+12254,29181,26202,34407
+12255,13378,50296,438
+12256,33033
+12257,40371
+12258,79301,4678,26384
+12259,20885
+12260,13123,26846,13295,81481
+12261,56297,49776,4156
+12262,18554,45515,57436,61379,63297,58573
+12263,12913,3376,13368,54752,8948
+12264,15459,10142,35725
+12265,58484
+12266,60222,67061,63314,39574,8957,46124
+12267,25306,36273,48311
+12268,49800,80713
+12269,67021,61164
+12270,12137,6400
+12271,43635,861,55521
+12272,67302,66992,62692,43259
+12273,22057,30649,44321,19802
+12274,66888,47619,24802,40312,2089,33416,55273,18579
+12275,42696,5839,74150,71497,61205
+12276,31205,4240
+12277,17946
+12278,16535,50026,60063,74735,72421,49405
+12279,72985
+12280,58439,66966,60591,71435,69938
+12281,48247,8743,46216
+12282,18119,15067,73201
+12283,65274
+12284,69027,38527,64393,72260
+12285,77652,15978,58618
+12286,16421,12822
+12287,36441,68676,49667
+12288,24118
+12289,3263,61090,54808,52946,7840,4869
+12290,81386,74116,27652
+12291,20311,47083,28571
+12292,9954,47115,49808,15446,15274
+12293,35837,43903,2332,61608,20873,11622
+12294,80284,50522,34664,741,54,74971,76723,21475
+12295,16567
+12296,9998,46233,28387,45644,5828,13177
+12297,25227,23459,64015,10185,71268,32541,51931
+12298,29927,62544
+12299,70327,67638,37902,56662,613,27393,11582,42369,68086,29982,16625,13368
+12300,47323,41777,20504,73089
+12301,71999,32957,82101,67462,36821
+12302,6666,11752,74619,10896
+12303,23585,5238,9405,74340,51144,3930,76515,74786,78820
+12304,68190,45138,54319,60477
+12305,24405,19682,64629,48549,73221,5691,61215
+12306,41394,72270,31943,45553,61133,24295
+12307,70539,24188,4796,65317,53309
+12308,37300,60500
+12309,41165,45962,7630,55052,22435,28319
+12310,5953,53583,40734
+12311,6734
+12312,48782,54455,59632
+12313,79299,25940,81151,62774,8363
+12314,78142,20400,48218,32254,38360
+12315,42025,61770,7019
+12316,36791,64165,51254
+12317,54515,48372,51204,7754,40667,76016,42652
+12318,11411,54868,66712,9099,75260,82112
+12319,21138,81692,71315,14917,48893
+12320,21566,56753,61920,17834,69929
+12321,36735,5663,69396,62741,4206,51596
+12322,47162,76402,27934,10697,72222,36782,61159,34761,13340
+12323,17700,68553,47555,55570,35229,80207,59791
+12324,48221,49159,65138,11326,5368
+12325,40663
+12326,23678
+12327,36751,39800,5343,33898,25115,70191
+12328,82078,48677,26518,39783,70994,25683,8672,76158,13141,55449
+12329,71480
+12330,43805
+12331,11031,77974,29149,35856,22259
+12332,24184,31578,72825,29050,10758,37158
+12333,63213,34305,68046
+12334,58539,56947,30254
+12335,31420,41606
+12336,68260,79929,3910
+12337,20321,44347,24501,60501,24825,18412,53072
+12338,39151,59409,80246,43238,17804,30600,70434
+12339,18291,75839,51926
+12340,26380,21939,70291,53740,274
+12341,31156,35144
+12342,25013,9715
+12343,32503,6900
+12344,13153,5509,33401,79556,51761
+12345,79586,76463,23886,43541,9036,74588,67140,12014,27762
+12346,64504,14521,21122,21409
+12347,19527,30251,22566
+12348,2671,60324,57682
+12349,19677,78363,45284
+12350,9979
+12351,19444
+12352,58676,26644,67767,71181,37713
+12353,27435,863
+12354,1732,39278
+12355,5562
+12356,75239,33681,25320
+12357,66643,45945,6764,22235
+12358,35397,51243,77141,34540
+12359,24451,63909,63388,32110,4004
+12360,54225,66401,15908,11829,18182,44681
+12361,77406,26155,14,68779,36416,14889,48620,8518,39001,4675,69089
+12362,6310
+12363,55597,44153,14663,32238,27496,73673,9887
+12364,75051,54687,19494,48752,54479,57991
+12365,6846
+12366,19602,48467,74554,479,75007,48684,54396,52945
+12367,43600,13135,18538
+12368,8670,29599,36872,20699
+12369,73017,23232,55375,76617,2328
+12370,78600
+12371,36371,22157
+12372,23282
+12373,53970,36970,50236,69290,19693,6255
+12374,76292,78799
+12375,60965,36191,78576,71442
+12376,44006,6833,58821,2443
+12377,75354,45113,59934,50972,69158,54749
+12378,43422
+12379,57459,75172,3356
+12380,82077,16521,69406,78209,24185
+12381,9138,71977
+12382,77942,64632,34371,82042
+12383,7871,13514,81563
+12384,16810
+12385,78035
+12386,17425
+12387,13640,23189,79736,55430,11734,36079,48719,37316,43358,49666
+12388,75110,69529
+12389,48711,57513
+12390,32707
+12391,2396,52362,12716,29894
+12392,19592,81675,7790,62117,32564,6116,52715,79767,57229
+12393,35338
+12394,15128,3306
+12395,44425,10776,49761,65181,54230,23270
+12396,3757,56947
+12397,5674
+12398,67457,66729,1140
+12399,7670,8016
+12400,41553
+12401,78805,36758,20110
+12402,64029,3886,36381,35286,80456,55403,1209,23937
+12403,13744,1959
+12404,31850,37127,52321,79818,57060
+12405,2752,67787,25544
+12406,5087
+12407,60988,56516,52003
+12408,6196,59358,23271
+12409,61957,57706,37375,25990,66590
+12410,68283,27104,8949
+12411,801,21648
+12412,74296
+12413,18765,71270,55610,11862,69371
+12414,9599,16614
+12415,21103,69713,34796
+12416,70381,34386,4271
+12417,45747,51295,63612,13904,68834
+12418,2447,77713,990,59698
+12419,77668,37299,5087
+12420,25975,48666,9175,3138,42333
+12421,38969,2653,45086
+12422,22628,2850,24261
+12423,1784,36714,11588,24425,41921
+12424,64526,34857,60542,53048
+12425,51349,76716
+12426,4754
+12427,72459,21937,79268,51130,67764,64553
+12428,27356,20107
+12429,22049
+12430,42351,67041,30472
+12431,39847
+12432,52310,54996,21490,35720,37068,71061,58873
+12433,58741,32402,28334
+12434,34549
+12435,37734
+12436,22903
+12437,79721,35561,72688,21112,59480,67764,19336
+12438,48973,67535,26764,64771
+12439,3462,62995,72068,42290,9049,49639
+12440,9674,63403,18203
+12441,26422
+12442,80845
+12443,46801,995,77352,71715
+12444,49064
+12445,56982,14028,3708,80381,75525,19751
+12446,71521,43356,34465,75982,15274
+12447,71767,24433,3142,21667,58642,75208,20715
+12448,53124,53523,8915,17214,68330
+12449,26149,35976
+12450,68258,44921,26351,65538,22881,23281,27136,75449
+12451,21504,1327,77612,38975,63177,74285
+12452,51883,48470,70751,69299,52392,41734,62178
+12453,33245,18163,63112,64124
+12454,11449,66627,32275,25198
+12455,35755
+12456,2582,38332
+12457,55542,44344,33790,71581,43017,38681,14441,79476,21224,77765,31010,79661,37718
+12458,5651,18134,3388
+12459,20816,80700,28053,27880
+12460,81907,81673,54651,47043,50791,43883,61164,5591
+12461,13844,41424,56004
+12462,79113,79258,63506,43687,73979,67530,70071
+12463,42807
+12464,4094,48618,50850
+12465,35054,77462,80888
+12466,26296
+12467,73082,11528,2048
+12468,57877
+12469,32288
+12470,18831,31364,33353
+12471,59518,65497,4928,68310
+12472,81768,68790,81515,36566,36498,46112,17509,27857
+12473,72416,66337
+12474,35916,53081,38680,1599,81930
+12475,69626,5113
+12476,75598,34636
+12477,52048,56609,68713
+12478,73276
+12479,62161,19607,42188,41711,67958,5224
+12480,45766,28493
+12481,22137,50229
+12482,73115,34599
+12483,28561,15087,66478,32499
+12484,40630,76471,6606,58663
+12485,48197,61412,8278,35807,72737
+12486,48463,33776,26452,8110,31884
+12487,53398,68097
+12488,13596,4449,48313,64592
+12489,55174,34864,3280,13078,78190,73368
+12490,58909
+12491,27885,63058,6544,22243
+12492,73395,26149,2269,57811,21353,38664,78368
+12493,24892,70649,23634,57883,44763
+12494,67856,80336,64203,51128
+12495,24870
+12496,70981,18947,55856,72697,21414,28150,57143
+12497,57378,47111,9118,41387,44829,38631,39369,31414
+12498,909,56070,12495,14603,77055,66115
+12499,42472,78961,55654
+12500,60946,77199,43257,13900,42101
+12501,67747,18388,4471,12846,48071,79938
+12502,68002,69803,15654,8943,62206,33732
+12503,67884,49661
+12504,46327,67412,28955
+12505,52714
+12506,4446,41161,6135
+12507,56830,13065,3341,8150,63866,22546,74845
+12508,67299
+12509,72340,16298,18808,27902,9675,32061
+12510,31626,25096,61237,21439
+12511,23665,52115
+12512,41594
+12513,49119,76064,40129,18957,6206,29401,72700
+12514,48493,39686,5825,16348,53317
+12515,43831,7851,70326,68123,44102,20837,76327,44795,81627,41784
+12516,61551,77587,3549,27813
+12517,22226,22312,62664
+12518,47244,31202,22691,18220,71012,79418
+12519,34902,57889,41093,50822
+12520,48411
+12521,46018,63496
+12522,61906,41787,6687,8784
+12523,52492
+12524,29618,1992,43911,9587,1698
+12525,15865,31726
+12526,37087
+12527,26586
+12528,57996,56600,27852
+12529,6262,24878
+12530,16055,27377,23263,30504,34175,64835,17415
+12531,76528,51174,33163,36028,54514
+12532,44450
+12533,81931,39218
+12534,65921,78185,35358,77990
+12535,41800,4976
+12536,2901,49395,5132,50123
+12537,4435
+12538,1465,31249
+12539,39466,64730
+12540,72202,16844,64144,4717,17119,78805,21587,20798,7630
+12541,33435
+12542,23856,11025,18745,33192
+12543,48121,69476
+12544,70253,28022,10213,3164,999,178
+12545,46085,80674,72793,49455,49394
+12546,60734,80686,70556
+12547,8850,76277,19110,39463
+12548,42006,9338,44117,11250
+12549,74521,17415
+12550,36060
+12551,79903,1664
+12552,64717,17195,3194,57050
+12553,18018,34275,79013,45709,79063,668
+12554,36857,41822,11037,28831,61615,3024,2156
+12555,57984,67034
+12556,64486,33250
+12557,2772
+12558,32488,75122
+12559,5119,76316,73097,51533,60099
+12560,60564,72835
+12561,43899,55709
+12562,38243
+12563,34844,70354,41651
+12564,61002,60890
+12565,74580,59381
+12566,9593,31652,9755
+12567,34814,37695,72311
+12568,49937,33037,62229,14540,58432
+12569,31816,80181
+12570,19280,36905,36876,14906
+12571,13642,26255
+12572,22505,22317,77816,60371,48530
+12573,50500,50278
+12574,16487,32131,16084
+12575,10157,41125,52223,73215,78111,47809,11341
+12576,34588
+12577,46788
+12578,13875,23200,6128,19555
+12579,8089,76510,15204,20928,19360,59998
+12580,12498,58531,75657,43892,54762
+12581,28284,51418,42128
+12582,5401,3
+12583,45964
+12584,24827,77452
+12585,20581
+12586,15
+12587,10234,3605,79329,24266,45518
+12588,79008,16173,45186,56835,73653
+12589,66659
+12590,40939,55683,24402
+12591,42309,18578,68340
+12592,66294,51480,41708,132,6011
+12593,31432,60252,26656,13916,50568
+12594,36872
+12595,44846,49508,55591,40735
+12596,9849
+12597,25844,48121,1277,55085,50722
+12598,15772,8598
+12599,62534,48973,7177,11150
+12600,19218,61169,29710,4047,15381,16099
+12601,73881,7862,29175,2314,63369
+12602,64958,24026
+12603,60218
+12604,61595,47176,24784,29946,63846,58423
+12605,20086,69203,21893,74373,58353,21850
+12606,42292,55231,36819,50868,28259,11655
+12607,10990,28358,51350
+12608,47877,71636,49374,7573
+12609,79312
+12610,35162,60077,55997
+12611,6525,24959,68560,12137,6032,23843
+12612,8852
+12613,20001,3756,31746,29502
+12614,65807
+12615,24764,15946,71300
+12616,2160,37960
+12617,12771,19591,40125,71193
+12618,430,18270,5890,59478,1108,51445
+12619,10862,14750,74489,31636
+12620,19755,5784,75361,34070,32332
+12621,34941,46447,53404,20631,35801,25760,13594,68377,23802
+12622,44199,48372,54738
+12623,19547,28405,73290,14210
+12624,56767,16026,25866,1970,17842,77856,72231,9421
+12625,54247,26662,30021,38520,26926,21090
+12626,12612
+12627,79147,44875,46365,45309,20371,75886,45660,37081,42912,63912
+12628,46380,10860,64748,72157
+12629,55492,20865,65483,76462,59372
+12630,2962,77399,36528,18555,16575,15699
+12631,35877,20411,36608,61961,41137,1374,2063,67200
+12632,78611,53802,5291
+12633,33231
+12634,54819,26
+12635,41505,38886,61550,20025,59433
+12636,80181,2884,8171,63167,79768,28234,18547,34717,48764,36205
+12637,69565,4240,1261,68097,2530,52846
+12638,9809
+12639,78427,74558,55767,4846,4055,70145
+12640,33343,59688,22859,55023,52176,57959,73047
+12641,44963,33780,51835,29381,48933,73993,57839
+12642,8174,57083,70231
+12643,21609,13771,30310,49082,15607
+12644,41602,15946,10786,49543,62694,6799
+12645,40990,38618
+12646,41984,42180,2031,25998,49583,32830
+12647,40797,77175
+12648,30423
+12649,35946
+12650,62535,70993,13675
+12651,33135,20287,40221,66943,37745,47982,28272
+12652,63328,61787,71077,12968,47500
+12653,66303,45083
+12654,46866,27605
+12655,42073,11337,38554,300,64383,53502
+12656,54651,79679
+12657,61571,522,40402,4403,22408
+12658,57365,49013
+12659,232,8333,81221,7829,51863
+12660,57001,38208,39877
+12661,61392,81488,11025
+12662,17648,7187,44169,60133,54749,27740,24530,25491,44175
+12663,52597,38,25587
+12664,45439
+12665,4154
+12666,78095,33859,14655,11068
+12667,37805,7640,73899,70883
+12668,80043,42243,32793,4264
+12669,51038
+12670,23632,49573,3986
+12671,4490,56571
+12672,60011
+12673,72803,53897,72298,39408,23018,54682,48101,14313
+12674,56541
+12675,27565
+12676,66897,65003
+12677,6452
+12678,22287,45341,31214
+12679,30959
+12680,40742,46964,79725
+12681,36745
+12682,17599,4644,6681,67428,6498,17850
+12683,24759,9361,42932
+12684,21935
+12685,1896,79683
+12686,46318
+12687,62902,26202,63396,26081
+12688,59753,6052,2028,31585
+12689,15799,59852,69753
+12690,74945,67332,81870,57798,67872
+12691,70089,24356,49584,61530,40384,16823
+12692,69694,24325,60262,13755
+12693,48975,58082,14538,24781,15487,47595,31344,28637
+12694,60011,35220,14143
+12695,12914,15572,34086
+12696,49254,65470
+12697,59390,78636
+12698,57943,54150,65258,20679
+12699,21379,78818
+12700,47374,78394,51924
+12701,37733,24300,47206
+12702,28781,35859,58379,41357,64114
+12703,13041,13270,31780,61204,42055,34655
+12704,57410,18727
+12705,72498
+12706,44794,20673
+12707,59992,8752,4704,66263,47180,64057,36044
+12708,68115,19738
+12709,11709,17005,17509,64346
+12710,34515
+12711,33240,23521,19672
+12712,14211
+12713,70223,17433
+12714,30644,55064,37760,51372,44742
+12715,58291,35470,31570,29848
+12716,72931,72855
+12717,12435
+12718,5124,8660,80704
+12719,78877,36870,50241,70402,57974
+12720,50554,18590,27509,11164,11680,54508,49174,57069
+12721,1337,55278
+12722,77006,66110,78331
+12723,47594,33604,67080,4429,74313,10069,20683,80624
+12724,75029,48441,10762,38901
+12725,28309,3135,59190,2222
+12726,28406,64853,45661
+12727,49936,43198,32430
+12728,73847,43951,81774,54813,42911
+12729,55917
+12730,32407
+12731,46974,48488,40651
+12732,48063,69411
+12733,64591,14430,81974,76792,34794,68293,79790,77822
+12734,40643,56948,79381,44428
+12735,46681,38241,6825
+12736,17563,34174,46994,75310,80327,76124
+12737,75122,58144,43377,54614
+12738,47642,75440,32404,40055,50938
+12739,14671
+12740,70361,14877,4911,68579
+12741,6487
+12742,19593
+12743,47505,10741,46550,11025
+12744,66849,48890,69003,62019,21728,43856,61510,12761
+12745,29194
+12746,42295,73528,68923,25792,63276,73349
+12747,1954
+12748,7170,3808,74773
+12749,24872,55507
+12750,48691,708,74678,30767,48942,6165,67520,21004,16271
+12751,39882
+12752,18207,40326,68893,80535,28655,58691
+12753,26201
+12754,10882
+12755,1724
+12756,16306,72701,33407,28081
+12757,8715,11558,31448
+12758,20445,69298,59633,75544,21579,36910,78843,53321
+12759,27918,43016
+12760,10450,65640,22311
+12761,31725
+12762,15093,63962
+12763,9071,17074,36648,34127,7803,29953
+12764,15522,15734,30270,19489
+12765,13450
+12766,76965,20178,32370,14081
+12767,38388,67418,70384,1125,18142,59240,54593
+12768,10861
+12769,77778
+12770,63815,75041,56258
+12771,43542,43429,19129
+12772,52013,21401
+12773,10326,72404,42345,23048
+12774,12538,57556,63599,33867,16495
+12775,28316,37803,51788,53570,23995,13484
+12776,49815,55380,43437,18014,22981,2518,61637,62953
+12777,3232,5542
+12778,39769,46030,30187,51802,67110
+12779,26874,49163,14626,64145
+12780,24160,30769
+12781,81867,32498,33897,65414
+12782,58855,77804,578
+12783,43253
+12784,18448,72780,13725,43966,14140,21647,31746
+12785,23939,18072
+12786,25171,18912,40726,74831,12420,30137
+12787,76460,66151,19191
+12788,59001,11645,71548,70032,30775,79589,4137,2472
+12789,51533,53726
+12790,67709,62009
+12791,26035,7232
+12792,58105,50685,10920,6750,73456
+12793,71300,24132
+12794,74537,36909,19182
+12795,7939,12664,57913,26582,71695
+12796,8725
+12797,5390,23110,48233,54300,81439,24456,74900
+12798,47654,27111,57642,42194,24705
+12799,69500,1507,28808,59519,67850
+12800,31877,69646
+12801,40679,68992,31440,27806,75708,37977,65208
+12802,25240,916,60447
+12803,22099
+12804,48124
+12805,49266
+12806,58966
+12807,48799,6801
+12808,39397,71962,27406,49524,66104
+12809,53726,27007,78133,25597
+12810,52029,75277
+12811,26608,65181
+12812,49697
+12813,53036,12972,62489
+12814,34493,10401,10207
+12815,44037
+12816,65017,17586,58066,46374,77395,31342,49076
+12817,11642,12092,59575,7132,45887
+12818,12711,58517,78194
+12819,16005,69040,14735,40480
+12820,16366,80390,55410,36076
+12821,3829,17599,19257
+12822,42088
+12823,45483,20650,15326
+12824,72520,64624,26016
+12825,56809,47356,44227,35492,12843,43016,45247
+12826,82170
+12827,57894,16024,11039,44062,66149,60080,6729,24490,50333,81391
+12828,13067,29667,41904,27024,65232,36903
+12829,14372
+12830,14939
+12831,60779
+12832,60968,61893
+12833,51028
+12834,4842,4770,12571
+12835,15459,45480,78517
+12836,68490,69607,27813,79094,5310,32908
+12837,5901,61031,10459,80515,66679,79679
+12838,39282,48788
+12839,14908,12065,1378,50614
+12840,73897,2374,71601,45397,23625,64204,36586
+12841,21168,29522,53030,73968
+12842,48122,41155,33746,20489,52785,67549,66297,78139
+12843,44084
+12844,64334,26616,33952,26682
+12845,70922,77232,2694,37976,32772,18627,55966
+12846,7718,78215,74708,10114
+12847,1315,49920,27381
+12848,51253,24351
+12849,59795,48547,24087,78222,41857,3627
+12850,1053,58783,52492
+12851,68450,49762,71835,36778,7169,46754,78551,75577,75168,14771,39065
+12852,61075
+12853,46816,48520,78399
+12854,16391,15618,56100
+12855,3784,11938,27017,38030
+12856,33883,13847,16311,9806,63583,42130,66090
+12857,16108,60492,26613,63645,14456
+12858,52127,15793,80423,51401,29362,23887,80308,77802,24454
+12859,46915,72656,13742,37072
+12860,53878
+12861,36790,41304,39138,50462
+12862,14449,76835,22483,40786
+12863,11783,2176,75966,53469,26745,63463,60627,48749
+12864,11522,72934,5029
+12865,76964,41469
+12866,42468,69650,40615
+12867,59855,53573,72523,28836,41386,65917
+12868,37089,80720,17916,38003,46647
+12869,61683,53764
+12870,76111,39005,41947,33366,54199,56340
+12871,45386,41750,61893,43095,72808
+12872,8398
+12873,31097,16819,38785
+12874,82000,46597,74728,35037
+12875,45724,19363,36223,6156
+12876,46209
+12877,12822,50495
+12878,78674,31153,41103,48038,28797,22925,52244,3455
+12879,45615,6537,23335,64066,54658
+12880,25431,59724
+12881,30457,76487
+12882,43720,35672,48044,77245,4948
+12883,22126,46433,38667,15911,44427
+12884,18967
+12885,68536,38844,78236
+12886,48684,61378
+12887,8729,29020
+12888,58361,38919
+12889,22182,47750,18713,68432,42272,66101,65153
+12890,21112,40680
+12891,22726,38341,39822,6031,72974,73508
+12892,79498,50093
+12893,71961,37321,9943
+12894,19468,38858,52919
+12895,43302
+12896,41235,54048,52485,45391,77116
+12897,43468,6358,74487,3799,48374,76745,49807,31300,45724,5855,57907
+12898,29266,57156,77398
+12899,69718
+12900,40510,60325,9331,43651
+12901,39064
+12902,1524
+12903,49828
+12904,67253,17040,19569,56059
+12905,27866
+12906,40198,52677
+12907,18654,47762,38440,61319
+12908,73428,41018
+12909,34220,19769
+12910,61575
+12911,70612
+12912,50706,60590,41519,81477,20089
+12913,64256,19492,80690
+12914,39889
+12915,77481,69125,44365,43011,54334
+12916,62274,32260,24207,51628,67431
+12917,62497,25958
+12918,58857,36436,17300,79386
+12919,6822,53511
+12920,55428
+12921,50955,80123,504
+12922,6548,68517,47138,4246
+12923,26617,26945,9740
+12924,31989,74795
+12925,66822,73984,78828
+12926,30424,19243,21038,3555
+12927,24649,35824,34417,60755,8785
+12928,70434,24519,76918,10731,3719,51876
+12929,11727
+12930,32236,29860,69340
+12931,58410,28854
+12932,9344,6237,25638,67450,73629
+12933,81670,47004
+12934,43193,50790
+12935,39367
+12936,34232,23293
+12937,28163,78012,21071,30587,54962
+12938,12594,6357,36924,28956,66773
+12939,74341,45614,65712
+12940,44064,29538
+12941,80040,29583,9697,2850,14674,56135,25020,38377,4980
+12942,2574,11977,62160,49468,78223
+12943,49774,81313,24030,46897,65864
+12944,3353,67998,41387,6858,9427
+12945,29429,32326,13500,816
+12946,36364
+12947,33710,82072
+12948,7728,41138
+12949,27234,24833,11539,8223,64939
+12950,26386
+12951,70703,51128,30186,40445,31055,75300
+12952,23274,69822,34681,19272,51689
+12953,29700,64000,16086,24266,61383
+12954,60598,17247,57513
+12955,74459,10520,1759,68571,22515,81629
+12956,51098,78653
+12957,13998,48122,3875,56124,33527,52113
+12958,8029,64883,35825
+12959,61344,72867,57443,30310,35930
+12960,13910,18571,16470,74044
+12961,37032,18387,49505,8002,41759
+12962,19212,59828
+12963,77070,6359,29392,29178,10422
+12964,72228,37516,75603,21778,73299
+12965,81519,49343,58771,1803,55502
+12966,55789,49413,3410,48703,13971,43789,1297
+12967,57401
+12968,20414
+12969,22173,9279,34890
+12970,53309,69159,66419,69175,78828
+12971,11898,481,59835
+12972,35480,41096,37911,13060
+12973,67486,66677,47133
+12974,48535,35641,15272
+12975,5249,66536,28894,38969
+12976,62661,35244,46760,26109,33412,74352,70396
+12977,25053,19841,77026,24787,7862,15298,80618,1992,6547,66175
+12978,53985,53848,25500,32845,49906,74438,71254,80862,50068,56825,34557,44273
+12979,16711,36686,65365,44977
+12980,68887,43476,32451,1776
+12981,58706
+12982,77994,7740,25179
+12983,14694,19304,40373,32429,51917
+12984,29183,57252,43513,67696,55152
+12985,53621,61857
+12986,32628,11322,51581,63205,32854,43814,63374,5635,47464
+12987,30147,74548
+12988,50017,23112,57447,29923,3878,61149,70654
+12989,15902,15550,370,9543
+12990,33770,4580,13945,23730
+12991,39415,23048,67112,70446
+12992,45865
+12993,52055
+12994,79675,60644,65800,46215,20780
+12995,47122,46888,9090,9826,29549
+12996,47536,42549,32159,75945
+12997,76609,12664,3460
+12998,46994
+12999,36107
+13000,2220,46236,19130
+13001,57424,14292,79948,45620,32297,1828
+13002,35081,49199,81844,1060
+13003,80471
+13004,15656,28818,20381,26805,59385
+13005,16272,12490,20637,81271
+13006,20885,40395
+13007,74573,1759
+13008,70309
+13009,23297
+13010,9163,9791,73579,7612,3781
+13011,28344,49398,61760,75081
+13012,25766,56635,23034,66359
+13013,16510,71354,64603
+13014,28986,80408,51187,56835,63748
+13015,5617,81299,19138,72174
+13016,11043
+13017,7454,26083,77213,16604,21595
+13018,51959
+13019,27633,43995,49505,4944,61943,46673,81809
+13020,72374
+13021,65022,4503,67870
+13022,56881,30731
+13023,34923,22583,76029,70801
+13024,45093,30221
+13025,1953,3792,38844,65019,51502,55107
+13026,76677,61212,51315,40030,22213
+13027,9263
+13028,54047,12342
+13029,80909,55241,39876
+13030,16404
+13031,51062
+13032,7165
+13033,46349,75084,30998,28430,5367,23173,38359,65630
+13034,30147
+13035,59294,10104,65928,79650
+13036,27263,36496,19264,32262,4596,30027
+13037,22628,16145
+13038,23630,17751,20870,70254
+13039,32555,33360,45359,42238,54394
+13040,81943,80428,10222,72357,66175
+13041,68689,28601
+13042,73394,21630,50455,27922,56590,39016
+13043,66497
+13044,15739,27431,16801,49182,78975,22958
+13045,25144,74902
+13046,10481,56949,57016
+13047,12086,6806
+13048,55301,58675,37298
+13049,66255,78437,31194,51141,33963,3076,6671,12126
+13050,54312,63512,28717,11500,45264
+13051,11627
+13052,57710,67477
+13053,51581
+13054,76313,79436,9708,27215
+13055,72054,24745
+13056,15587,58808
+13057,71700,54942,19518,31420,28370,42587,74069
+13058,69517,20924,63093,11591,8835
+13059,13038,22296,12948,14335
+13060,58279,50490,47523,65889
+13061,21263,50401,586,66424,61460,4783
+13062,55376,15266
+13063,52581,41475,76676,55329
+13064,65688,37659
+13065,34386
+13066,81008,40078,31010,26860,78587,18250
+13067,66242
+13068,31584
+13069,38686,71417,54463,81055,73230
+13070,28609,47309,67102,6320,67600
+13071,35038,52719
+13072,72114
+13073,9140
+13074,70900
+13075,43057,71792,75396
+13076,17524,12753
+13077,54122
+13078,59028,71382,55637,27276,29667
+13079,36534,69779,11711,5532
+13080,39007,53434
+13081,73225
+13082,64495,30946,9297,48741,1326
+13083,51374,5265,24924,21694,14641,42463,80497,46815,41547,48484,70204
+13084,21526,6758,24649,49660
+13085,9406,22616,35866,76296,27386
+13086,35597,30727
+13087,2409,53882
+13088,29590,44024
+13089,79920,39782
+13090,18960,31443,68177,74507,63519,69070,63662,52989
+13091,46676,45902,38659
+13092,42592,38547,67870,16466
+13093,26651,15693,62635,35949,35552,22389,39994,68215
+13094,23959,33739
+13095,67149,32284,75711,8101,21602,7573
+13096,67318,56761,48384,28442,51965,3571,8736
+13097,79687,62314,78945,43684
+13098,76920,54985,2647
+13099,3914,11415,24836,71181,7023,1923,26533,7208,36770,54444
+13100,8490,81523,3912,57246,6422,35905,14400,57107
+13101,60823
+13102,42619,47568,62700
+13103,10414,46139,41544
+13104,64294,39202
+13105,24964,37556,80692
+13106,45009,30683,778
+13107,49690,62842,7377,7790,11892
+13108,10669,75966,14532,68918
+13109,23006,55388,39464,57946
+13110,58849,21280
+13111,61070
+13112,18538
+13113,14874,22365
+13114,32292
+13115,4607,77657,20437,75746,75212,17993,69710
+13116,16667,12099,24523,31816,48052,29866,57115,18138
+13117,946,65142,6826,21725,54196
+13118,33117,43144,52083
+13119,60246,56705,4792,39813
+13120,80428,20931,62544
+13121,14303,31949
+13122,31472,1697,35077,78020,39994,14294
+13123,6359,21238,54226
+13124,11043,81353,17092,52653,47311,2087
+13125,61776,67075
+13126,16396,75060,42709,9404,1866,76382,41019,68486
+13127,35205,37220,72093,69717,1607,72996,58234,35120,3954,18092,49854
+13128,49939,72780,7246
+13129,2237,71264,80100,78047
+13130,77765,27766,35071,76894,18055,27991,37551,32371,20629
+13131,81020,27305,28902,42236,73711,77954,39477
+13132,22676,5126,2379
+13133,16716
+13134,66334
+13135,27660
+13136,61996,7103,629
+13137,80024
+13138,36521
+13139,12205,23820,62859
+13140,49122,37423,41682,40052,35141
+13141,24023,61885
+13142,68081
+13143,34274,34706,6729,51947
+13144,62077,46311
+13145,78392,36314,26527,23219,39654
+13146,64964,55025
+13147,67030,56834,48820,28639,65406,76287,50905
+13148,18705,42382,544,73825,76038,71214
+13149,70024,55786,49893,37187,54886
+13150,41174,5374,36923,5113,62310,67301
+13151,51555,46739,32947
+13152,65087,20752,18031
+13153,31096,37855,50833
+13154,26926,43019,68975
+13155,6067
+13156,42652,50376,58917
+13157,23084
+13158,76302
+13159,49498,10965,76060,54237,20152
+13160,18553,11285,15888
+13161,15856,71976,71650
+13162,46694,2217,10258,20905,3931
+13163,33643,74072
+13164,4760,12643
+13165,71298,51663,70754
+13166,29545
+13167,35690,19039,46252,4807
+13168,16791,593,56703,57436
+13169,51530,81318
+13170,27226,15800,52566,47176,49710,79296,39831
+13171,70055
+13172,33951,67336,69695
+13173,50220
+13174,48308,68070,58996,55106,41311
+13175,45272,47317,81034,60459,69399,31613,29047,46171,22297,52869,25084,29879
+13176,13935,4284,47754,28020
+13177,31736
+13178,17060,17449,70590,10899,40387,57184,7296,73798
+13179,54649,40615,77006,41929,26900
+13180,82082,69596,22521,80081
+13181,24979,34751
+13182,54533,50222,9987,39401
+13183,65529,66193
+13184,857
+13185,37429,30290,59042,48110
+13186,54828,32775,14761,14388
+13187,17494,69659,62843,31140,22969
+13188,80316
+13189,19691,28261,63727,34068,16405,16536,41112
+13190,16355,53257,41862
+13191,18392
+13192,55292,61680
+13193,81598,815
+13194,4079,586,10351,9010,73704,43521
+13195,30214,26922
+13196,25475,67868,35757,72087
+13197,36789,50069
+13198,74567,275,11245,69008,27608
+13199,40183,3552,20921,46583
+13200,73008,24313,8954,56531
+13201,72268,65644,61183
+13202,42804,55782
+13203,9906,48330,4515,4562
+13204,4019,48018,16704,48439,26111,75546,62719,79053
+13205,58375,35098
+13206,32067
+13207,50772,52375
+13208,17971
+13209,3738,77477,54979,6742,49532,19332,22090
+13210,807
+13211,39182,76846
+13212,26812,31279
+13213,79055,22293,21027,40577,2351
+13214,73137,21386
+13215,77009,13513,10278,39274,59960,51179,22010,72834,40393,6073,44937,32423
+13216,73171,62487,17623
+13217,14984,21236,47466,54773,6090,11752
+13218,24313
+13219,47536,34781,8256,51443,39518
+13220,57449,9978,30221
+13221,10460,47752,2996
+13222,52048,5929,77644
+13223,80690,58668
+13224,7730,15262,69167
+13225,45275,25996,18967,9626
+13226,8398
+13227,78173,47126,69755,65274
+13228,56126
+13229,69135
+13230,1860,67673,13839,12466
+13231,70553,44168,24785,81556,11446,26295
+13232,50921,61483
+13233,74833,74670,31112,44780
+13234,25515,42384,27839,13226
+13235,53968
+13236,69613,76863,79981,59585,74197,67242
+13237,52876,13409
+13238,40663,39815
+13239,29704
+13240,2713,52131,79899,21955,72288,69396
+13241,5698,65144
+13242,28128,6029,14197,64171,40860,44259,47894,77660
+13243,13267,67271
+13244,76871
+13245,60185,894,31336,55602
+13246,50833
+13247,21862,31409,73006
+13248,49692,34331,61874
+13249,14713,55850,65419,34795,63857
+13250,29141,5937,62415
+13251,39007,68103,19105,67351
+13252,19089,58458,79559,12264,38955
+13253,31034
+13254,25320,78535,52171
+13255,33093,26894,9675,28912,8734,69047,20899
+13256,66066
+13257,20855
+13258,4079,39711,62850,39899,23936
+13259,43502,43320,21001,24397,5692,78488,43744
+13260,48262
+13261,17636,57263,55678,56128
+13262,30737
+13263,53984,69066,67491,47992
+13264,14127,60254,81671,68121
+13265,20974
+13266,74417,71150,55977
+13267,76106
+13268,42966,62661,61017,22853,56946,51314
+13269,55993,22369,4142,66888,26443
+13270,36516,69636,63130
+13271,27270,29234,70574,23899,30883,51874,27900
+13272,55165,61898,19768,51048,701
+13273,12066,64976,79127,73511,62849,29163,77572,32414
+13274,43390,7854,43882,15050,35467
+13275,77006,31160,18857
+13276,1297,46136,12759,6651
+13277,47289,9991,21243
+13278,52705,74428,37861
+13279,52728,58645,29941,23757
+13280,15544,58465
+13281,49408,11223,33945,34274,32917
+13282,22473,43590,2653
+13283,807
+13284,35174,74349,9584
+13285,5544
+13286,71792,55504,32352,66478,28826,8585,18586,43245
+13287,35998,55870,75343
+13288,68637
+13289,6043,9552,52953,34848,59114
+13290,76471,13449,71319,24407
+13291,8082,66082,12714,78381,56279
+13292,49845,80156,42222,49666
+13293,34481,31523,4886,47889,18619,24639
+13294,25673,16295
+13295,52091,35590
+13296,32589,68225,73890
+13297,45788,13218,32497,72071,32832,40244
+13298,35457,81715,30604,34222,79278
+13299,55380,51326,47854,23019,19087
+13300,62367,14051,80008,76718,56350,81444
+13301,9846,12584,57603,62454
+13302,40359,41860
+13303,62593,51082
+13304,15757
+13305,65152,35453,57673,9312,63849
+13306,49052,78455,31827
+13307,26487,24850
+13308,70644,78343,53181,152
+13309,23522,62683,42550
+13310,77760,24739,15,73614,51282,50121
+13311,32221,59366,22908,80798,47233
+13312,55735
+13313,36508,76480,17181
+13314,15063,14712,57390,35571,20019
+13315,17849,29756
+13316,64044,5328,4364
+13317,45919,75956,31736
+13318,73510
+13319,70945,27630,802,75356,4733,56920,2890,57990
+13320,79199,60092
+13321,7050,1527,64376,46792,8089,17999,47274
+13322,42305,72566,65220,74994,61848
+13323,6466,50687,12612,33479,80642
+13324,49955
+13325,80959
+13326,5073,73385,68160
+13327,56939,79583,80128
+13328,79115,27938,42162
+13329,14108,32736,27603,40154,42165,22710,4011,68189
+13330,47048,69921,80836,63393
+13331,81061,7425,6173,73663
+13332,9345,68104,74782,22517,39402,3914
+13333,19286,48006,49008,80151,10822,33278,77953
+13334,36732,15257,76663,4061,4679,72608,51484,22990,38571,36249,37630,34159
+13335,16564
+13336,34869,66596
+13337,41803,49568,37125,24273,15930
+13338,16975,30724
+13339,47066,15960,81783,47286,15143,6671,16516,2465
+13340,73588,57544,45989,70471,77027,10821
+13341,33049,10028,54893,67678
+13342,78609,75031,67482,61057
+13343,20481,79030,57947,79502
+13344,37144,72280,14440,47287
+13345,28112,27009,49861
+13346,38037,62294,15278
+13347,34392,46217
+13348,12577,53635,1876
+13349,12880,15737,15648
+13350,10717,28930,44003,25960,22523,32815
+13351,36758,26376,75590,22257,23969
+13352,974,29541,79084
+13353,38060,43407,25147,8805,17427,57289,77842
+13354,9158,55428
+13355,27023,54529,39115,28509
+13356,24476,60477,18695,71910,21068
+13357,18716,79929,31748
+13358,59630,53425
+13359,81974,47067,25574,19890,40077,44869,66558,62433,37706
+13360,8132,30341,78389
+13361,3438
+13362,58424
+13363,26101,7168,22848,57621,52877,53116,12742,80373,49656,17430,67800
+13364,9273,42557
+13365,59110,29431,66776
+13366,68923,5226
+13367,55543,48526,46849,52826,243
+13368,60395
+13369,75558,21104,27080,18179
+13370,76680,29732,40650,62103,55887,22207,8569
+13371,71788,2086,47682,80211,68428,81551,28827
+13372,49338,4763,21719,64474,45388,45740
+13373,15267,23894,9469,61462,20520
+13374,7542,69044,77204,19214,36959,14621,22615
+13375,38931,29791,39313,62237,80904
+13376,43979,76946,17096
+13377,48272
+13378,37067,50901,42564,62422
+13379,80119,75602
+13380,75580
+13381,13582,31760,741,67309,34674
+13382,36004,59362,43403
+13383,73324,728,36870,52668,66203,71586,75302
+13384,4880,33136,50646,52578
+13385,38086,20388,9781,39013
+13386,60249,39427,64963
+13387,59585,26,54930,65514,530,42359
+13388,41681,8983,70730,40302,34171
+13389,50370,70846,68076,60780
+13390,18713,14772,56492,56552
+13391,2584,78194,32700,65763
+13392,49959,73791
+13393,38409,2139,54702,32497
+13394,24617,72821,8364,48401,23268,61331
+13395,52821,15810,8426,38001,8776,16751
+13396,31994
+13397,43803,36924,30861,21969,37890,46017
+13398,33653
+13399,39064,65539,81842
+13400,39405
+13401,23781,38020,77772,70866,80935
+13402,29690,42464,26926,59897,42538
+13403,66730,38739,16330,39406,27125,52029,20350,58543,41921
+13404,81717,73638,32568,28463,11149,28322
+13405,7878,64038
+13406,70954,63191,64121,17425,78565,62463,78650,43008
+13407,38951,16144,75536,47925
+13408,74868,51243,63920,61353,22375
+13409,77331,35129
+13410,8010,30102,47284,15866
+13411,63540
+13412,38738
+13413,18960,58827
+13414,52824,2384
+13415,16907,68703,20640,27840,63469,60053,77619,81029
+13416,82124,37723,25361,80610
+13417,8547,58929
+13418,52055,56169,49258
+13419,48898,16065,57141,18310,75143,81913
+13420,74757,49750
+13421,62951
+13422,30711,20068,79384,10335,58842
+13423,5602
+13424,34272,22288
+13425,56686,22913,63551,13280,25986,1873,57465,31741,69231,17724,6050
+13426,52444,37963,59248,33077,4589,8689
+13427,63581,3652,13377,51235,29906,38258
+13428,1424
+13429,65989,44606,18549
+13430,2655,38796,37959,70282,44810,59560
+13431,4489,76081,35323,19794,10834
+13432,9542,74369,27427,77422
+13433,9152,51673,52919,22999,61061,73102,78803,78743,51489,37655,37722
+13434,56126
+13435,46072,65617
+13436,33345,81712,67494,12061,29099,5521,61642,24485
+13437,9358
+13438,2128,23825,4494,68394,61447,50564,13065
+13439,67777,64687,71498,23695
+13440,16546,900,54454,37704
+13441,16501,36468
+13442,77832,44140,74434,43872,29872,29436
+13443,40025,46659,52714
+13444,43678,57657
+13445,68291,52754,3421,40711,25555
+13446,35601,55616
+13447,67357
+13448,69650
+13449,39780
+13450,51273,8136
+13451,26406,11241,25288,45839,8184,16466
+13452,68046,8592,25864
+13453,72737,65166
+13454,59969,38663
+13455,69942,9487
+13456,61598
+13457,9599,78779
+13458,31687
+13459,42241,45970,41214
+13460,46140
+13461,48386,63662,9774,72523,14005
+13462,61013,46795,42401
+13463,37803
+13464,10954,73874,56749,31493
+13465,3591,78457,57731,17276,25015
+13466,13470,58082,69117,55067
+13467,66943,50959
+13468,77991
+13469,10091,858
+13470,76299
+13471,65220,13216,68822,52247
+13472,20726,65035
+13473,47688,71924,60862,29987,60636
+13474,41865,78635,45027,29824,13614,12299,28583
+13475,3419,2213,14106,47833,17830
+13476,66011,7103
+13477,1942
+13478,70271,39505,43317
+13479,23649,3887
+13480,77275,18979,38466
+13481,16614,23455,928,30294
+13482,9181,31864,16431,2697,64710,46743
+13483,17084,61144
+13484,56092,7716,24857
+13485,80631,13718
+13486,54764,40682,11887
+13487,34755,81869,64659
+13488,32066
+13489,31726
+13490,29504,56416,58754
+13491,32480,53740
+13492,54444,22992,35152,7164,4925,18506
+13493,41069,43579,45691
+13494,76220,27720,34177,76399,73215,17358,71448
+13495,45189,18737,50904,80574,27388,65285,33907
+13496,66995,28815,11415,70225,54302
+13497,65196,44552,66937,52784,11275,62263
+13498,65802
+13499,21114,29108,73522,12221,21944,51159
+13500,39471
+13501,81021,79393,7524
+13502,24762,65064
+13503,19679,18278,43198,68629,17784
+13504,59126,77142,70896,40893,40636
+13505,2721,25895,75504
+13506,80073,24069
+13507,6220,1797,39362,60331,75377
+13508,19081,36170,71565
+13509,71043,67046,57114,31160,44108
+13510,9755,62708,20468,18347,28498
+13511,8057,12759
+13512,21859,54676,40792,22091,14277
+13513,18771,23997
+13514,67076
+13515,30689,20404,61160
+13516,47979,6764,77826,64292,81370,38672,82081
+13517,24536,79108
+13518,68426,29763
+13519,41538
+13520,62775,51199,74180,6485,17871
+13521,42246,7088,23719,60687,38426,30719,44446
+13522,6687,46183,18078,21648,6166,37033,23655,46851,44825
+13523,35706,76000
+13524,70931,44018
+13525,70990,7943
+13526,20785,76015
+13527,9652,49910,2653,49303,23677,32553,60724,18357,23591
+13528,19780,80531,59994,81390,43925,71803
+13529,22820
+13530,35623,13692
+13531,32391,62643,59226,12950,30351,10986
+13532,68169,76427
+13533,50610,50115,43065,81814,59237
+13534,6505,77684,10495,61665,49908,6539,69221
+13535,19632,13942,51790,34531,71713,46681
+13536,7287
+13537,15591
+13538,61483,404,32787,70553,23533
+13539,2138,16001,76963
+13540,14188
+13541,34809,67015,46721
+13542,21310,16898,27482,42389,54341,75772,39061,52733,74339
+13543,20280,71595,36875
+13544,81944
+13545,6002,47640,52547,14985,68922
+13546,48076,47831,57873,19182
+13547,48797,54170
+13548,2769
+13549,73283,35141,37930
+13550,38755,20915,25525,26300,42803
+13551,77313
+13552,51103
+13553,38574
+13554,41109,77433,10445,58861,3698,15944
+13555,81365
+13556,26742,63647
+13557,58192,62071,40217
+13558,1808,7385,45268,65779,60026
+13559,66508,15317,54295,26189,72962,5675,79556
+13560,35480,73726
+13561,72324,39587,56615,76227,53069
+13562,61958,14322,25175,9805,64975,67090
+13563,48637,38773,62006,45002,20187,15986,45962,54256
+13564,4333,42380,66956,73740
+13565,31391,20395,33960
+13566,78541
+13567,39502,9202
+13568,71936
+13569,11866,63137,63066,20468
+13570,65737
+13571,44289,38534,40959,8851,54889,49917,32377
+13572,21615,54408,12311,76363,11437,29200
+13573,69145
+13574,68378,27410,75253,35799
+13575,59910,59592,48434,19959,57288,81700,60104
+13576,53629,14511,27110,28050,3508
+13577,44746,43376,15194,15835
+13578,49561,36316,33074,28340
+13579,37260
+13580,63186,14317,44499
+13581,47738,4657,18896,71561,81767,62633,36029,73290
+13582,10675,31714,51171,51104,19655,7991,36107
+13583,48103,17169
+13584,71275,47635,38944,69385,18776,67298
+13585,23976,21296
+13586,35631,41846,32021,22367
+13587,3109
+13588,7290,31684
+13589,43205
+13590,70622,20137,41711,68565
+13591,5800,45140,71742,54787
+13592,1996,74568
+13593,67486
+13594,54092,48112,43994
+13595,19582,30446,55233,9248,65545,77193,45789,7033
+13596,78403
+13597,68281,74687,54470,12860,60099,7614
+13598,2227
+13599,41212,39620,8451,16183,46399,22972,75325,5874
+13600,81949,32150
+13601,75352,53494
+13602,23261,68486,73083,27898,36054,56474,57096
+13603,23628,6117,12534,47346,27388,3010,44373,48145
+13604,10207,27434,44740
+13605,59995,50654,24884,41281
+13606,154,7190,64930
+13607,48500,78968,49129,21969,49613
+13608,17860,7463,3620,48007,39351
+13609,36996
+13610,46439,20306,68552,56271,54598,30666,68799,42971
+13611,62969,893,22618,20802,61453,29625,71173
+13612,67982,30490,31053,56688
+13613,57241
+13614,10703
+13615,37046,61412,53694
+13616,27262,16376,71047
+13617,41311
+13618,65044,14558
+13619,55183,40382,59605
+13620,42319,68298,29253,1649,72262
+13621,24984,77899
+13622,54341
+13623,28673,71935,29689
+13624,21645,13393,81700,19391,9136
+13625,42369,10351,81071,26224
+13626,25329
+13627,51978,57082,13964,17401
+13628,40736
+13629,77222
+13630,49072
+13631,6604,4701
+13632,54762,55721,67420,3488
+13633,7621
+13634,54452,58161,9890,25515
+13635,16453,71716,25282
+13636,4431
+13637,76711,77664,55192,17907
+13638,64224
+13639,14491,60392,70259,56726,70704
+13640,7382,24778
+13641,60873,57706,1449,59439,37510
+13642,36191
+13643,40285,40521,41287,39014,9957,560,52620,51271,60765
+13644,37989,14819,49438,2109,49630,57054
+13645,73021,20468,3159,43761
+13646,50759,16953,53993
+13647,34416,80535
+13648,33452,61358,75382,40465,3743
+13649,67794,67760,29981
+13650,71139,2894,45201
+13651,15485,32453,64099,21771,175,48748
+13652,80606,71552,40393,46744,38138,63874,72526
+13653,17643
+13654,59589,71866,42914,71466,81487
+13655,46097
+13656,30496,8192,61189,9384,30654
+13657,5736,17163
+13658,68707
+13659,39015
+13660,3697,38399,61529
+13661,53534,69017,71057
+13662,16034,77847,68573,29813,39710,59117,55299,31585,22154
+13663,18816,20187,63966,33090
+13664,47813,66993
+13665,19303,11451,45836,21766,61884,58309
+13666,70612,78964,31418,52283,76711
+13667,54562,40575,14191,39251,4562,75613,47641
+13668,60402,27505,10293,36287
+13669,42019,56626
+13670,36150,74038,39131,57660,73678,3776
+13671,37794
+13672,76987,50128,40848,76628
+13673,61361,51496,68681,66259,45891,55538
+13674,16365,56301
+13675,69436,38609,17279,72541
+13676,3712
+13677,76639,35048,57730,24865
+13678,76276,5745,32254,8120,58590,3082,74418
+13679,63084,17966,19884,75574,61788
+13680,81579
+13681,64411,27331,27825
+13682,25046,41284,63257
+13683,42762
+13684,946,51521,53533,62631
+13685,6445,67852
+13686,53793,69837,48863
+13687,60358,25363,78074
+13688,51288,48241,73875
+13689,15726,71671,45380,38667,73221,5870,45795
+13690,48419
+13691,3208,14906,36541,21937,1970,78948
+13692,42326,7492
+13693,8790,43991,21626
+13694,39656,36013
+13695,75538
+13696,2732,54271
+13697,44776,66497,69100
+13698,36256,51441
+13699,283,50098,40244
+13700,7768,42003,62362,64728,25857
+13701,14148
+13702,81857,26640,49022,79675,23310
+13703,51797,31831
+13704,59615,65556,34499,62959,35279
+13705,4329,68182,18896,27246,35653,74300,29103
+13706,14592,55518,40085,60358,2331,66790,61408,8896
+13707,50668
+13708,10918,49863
+13709,26718,65597
+13710,60053,55881,10755,63493,35087,78369,42882,27803,75362
+13711,39253,28029
+13712,35714,27016,71569,39064,11461,53554,33671,65820,38196,59966,22092
+13713,63536,1254,45797,16402,64138
+13714,8654,866,58177
+13715,79796,74025
+13716,35749,35824,53738
+13717,35610
+13718,47840,77743,73152,51909
+13719,39855,19040
+13720,55914
+13721,38333,3982,70865,52844,24604
+13722,23249
+13723,18162
+13724,39622,67639
+13725,8006,35667,41741
+13726,39515,53167,81069,12751,78322
+13727,12134,8092,79290,8452,2710,80597,69269
+13728,64224
+13729,57401,50141,43505,1099,36890,16907,54000,30691,64755,19535,39271
+13730,4676,67596,16974,4666,40464,59652,73631
+13731,18626
+13732,51855,80898,52497,17107,191
+13733,1317,50640,48625,42529
+13734,13718,76462,23127,58027,65871
+13735,49365,69995,12435
+13736,67458,5770,42538,38607,2891,9429
+13737,43750,45684,57070
+13738,26871,32998,43307,33611,28415,48814,40355
+13739,54422,13841,24492,55608
+13740,23978,60470,73382
+13741,4911,63898
+13742,76314
+13743,26339
+13744,64959
+13745,490,22909,65798,35171,43316
+13746,27016,71428,19672,35157,35336,484,5478
+13747,44467,29644
+13748,74153,16668
+13749,55810,64550,29192,17704
+13750,75767,4386,22813
+13751,49160,78154,74216
+13752,81671,1891,13380
+13753,64372,57128,37067,33872,32165
+13754,71703,9461,27839
+13755,14899,51839,29849
+13756,33529,57788,17107
+13757,77543,15987,36760,49346,32753
+13758,35110
+13759,24224,38927,77435
+13760,996,53195,73963,4017
+13761,49982,9905,63407,49295
+13762,24996,11452,16481
+13763,80950,53474
+13764,10848,63382,30619,38821,80686
+13765,67209,40762,27220,54578,13087,18669
+13766,51738,7703
+13767,55952
+13768,51863
+13769,44412,39861,80213,43104
+13770,74230,10431,72805,71431,66799,21394
+13771,1918,26595,3353,17090
+13772,40855,48626,27652,40497,30479,59710
+13773,73925,50253,58928,47136
+13774,67625,74537,29085
+13775,78842
+13776,35073,60364,64591,23833,47065,52004
+13777,27000
+13778,78403,31907,46510,19422
+13779,68134,16312,44699,67324,51796
+13780,57491,2134,6934,47021
+13781,49866,76512,23610,81843
+13782,16122,61915,19213,81637,12215
+13783,70413
+13784,44870,17598
+13785,62973
+13786,58151,37417,11894,76828,53208
+13787,1055,65183,46312,53147,51347
+13788,27300,51600
+13789,75253,39244,43274,43647,69767
+13790,28818,12226
+13791,68023,9074,48016,27879,46712,45748
+13792,2318,57648,49357,65725,40483
+13793,4085,72178,69658
+13794,42376
+13795,32614,42128,65517
+13796,68760,28955,12192
+13797,29076,63242,80087,8468,50918,8654,22444,46642
+13798,68762,51177,3183,51191,34660
+13799,18263,24959
+13800,54922,11235
+13801,27683,33743,10228
+13802,45479,51797,37660
+13803,48218,35531,50942,72873,81210
+13804,20923,25436,64150,15980,35469,62876,77032,74882,38092,48239,4416,1605,23431,35934
+13805,77396,66707,15641
+13806,13946
+13807,31532,900,59380
+13808,19273,15737,79194,27626,61244,73157
+13809,27258,57474,76826
+13810,71491,29108,62855,19148,34271
+13811,8090,63637,41489,23639,26293
+13812,49899,12414,78927,64812
+13813,78393
+13814,46951,28404,47859
+13815,15352,43477,13518,32453,1576,66329,8944,26078
+13816,51366
+13817,6967,58086,19380,33284,70424
+13818,42413,25245,30046
+13819,53360
+13820,46004,77544,58075,25378
+13821,49386,6530,69815,37043,4174,34558,25123
+13822,49260,60992
+13823,33446
+13824,2647,13960,77423,56646,16358
+13825,45436,35623,57529,69839,414
+13826,77182,19164
+13827,15097,20361,68301
+13828,15764,18184,18215,29939
+13829,30970,37284,20961
+13830,41894,51096,63083,72835
+13831,36600,47320,22155,62659,34813
+13832,1942,28315
+13833,20356,49972,42975,72541,7952,27712
+13834,40804,47436,46851,3671,5428,40461,40595
+13835,32061,45914
+13836,29637,24634
+13837,43482,77098,71210,34170,37999,42068,7124
+13838,73539,28498
+13839,47604
+13840,57148,59613,24116,4455,72311,3141
+13841,36922,16210
+13842,33373
+13843,44082,2713
+13844,30067,5185,26091,44172,20712,58918,50786
+13845,71978,41149,32103
+13846,78748,46966,59142,52801
+13847,14128,2516
+13848,58617
+13849,75732,61095,47229
+13850,49983,47938,58615,69369,386,1017,75444,5250,47650,40492,43911,28148
+13851,76170,58467,5113,21941
+13852,26458,75635,8645,82114,62890,17763
+13853,16139
+13854,47628,1269
+13855,43748,41906
+13856,6700,12906,56387,24763,60289,19205,49232,31953
+13857,7936,55026
+13858,50309
+13859,54911,81262,39356,69407,52607,59600,47463,60249
+13860,30533,16064
+13861,64130,76827
+13862,61160,73292,17386,71385,5394
+13863,400,33535,64571,38076,8999
+13864,65862
+13865,6896,22317,7351,16602,26595
+13866,41258,62460
+13867,28331
+13868,26932
+13869,62457
+13870,56998,5520,37538
+13871,34879,33436,73037,32339,77329
+13872,30018,20993,35224,5581
+13873,22766,47610,64520,3827,38308,78707
+13874,35539,23560,80927,44026,30077,78803,11475
+13875,39301,73169,16791,12048
+13876,5407,62056,80815,72693
+13877,35714
+13878,55240,22399,46961,69245
+13879,34356,2442
+13880,13139,48688,60860,15577,35128,32770
+13881,49900,77950,11302
+13882,40243,77184
+13883,14110,22237,36930,67769
+13884,41045,75198,46647,55874,77385,45224
+13885,65603,21546,63695,60882,34363
+13886,65372
+13887,57157
+13888,28038,6357
+13889,50525,17299
+13890,38566
+13891,45965,39423
+13892,78374,19462,80502,20307,74482,34035,28677,17781,80965,21024
+13893,20318,9353,59126,46594,35545,60928
+13894,45984
+13895,50937,40838,35112,43795
+13896,20462
+13897,6914,36871,11555
+13898,59028
+13899,57431,73378,78458,49550,2234
+13900,34549,51317
+13901,37242,61889,16126,26686,40074,58600
+13902,889,66433,66372,27443
+13903,77540,82179
+13904,52037,59034
+13905,46907,19033,41010,42907,2968,63400,25700,43847,7500,56321,69207
+13906,2621
+13907,64355,81043,46805,59621,74523,7218
+13908,39074,59945,59386,32388,47397,51199,49225,68136,23866,46703
+13909,12311,4133,48002
+13910,29199,37671,59885,66766,52980,71955
+13911,23875,39475
+13912,43618
+13913,47884
+13914,40006
+13915,11475,65539,73652,18114
+13916,59262,25771,14363,3911
+13917,33993,49481,4400,66068,75369,49219
+13918,56528,36160,79992,47050,23830,57228
+13919,64829,47813,33535,41000,11734,32783
+13920,68920,80493,29096,71737,6969,17275
+13921,39094,50318,20258
+13922,33888
+13923,35312,64466,43086,77937
+13924,68032
+13925,38846,35150
+13926,41279,40384
+13927,78733
+13928,29461,61141,12871,72442,26112
+13929,64224
+13930,72402,29515,4267,51323,38723,9832
+13931,22346,78828
+13932,52243,41420,21395,59581
+13933,10571,39753,68938,67224
+13934,15045,29145,66133,60370
+13935,71046,68802
+13936,81793
+13937,54034,80950
+13938,61903,59286,68326
+13939,45604,63294,75006,11282,64876,57908,45689,38688
+13940,27033,56630,14891
+13941,22532,51118,64407,10689,76894,22200,20159
+13942,43152,15579,24525,45234,26037
+13943,52846,78709,79888
+13944,76078,58360,79997,33643,19547
+13945,17141,7685,57374,77472
+13946,31735,13848
+13947,6429,13091,15374,31976,14278,25965
+13948,18745
+13949,6804,62533
+13950,31792,79261,81933,27538,38541,26451,29087
+13951,18973,54762,42893,59507,5892
+13952,66977,64048,33512,65110,65758,67126,34100,51347,51716,53667
+13953,17839,5207,47599,53453,6818,10196,78170,52392
+13954,81010,40751,8823,29803,70992,33625
+13955,73304,52091
+13956,24208,13991,65329,53554,835
+13957,37874,72728,50058
+13958,71357,19364
+13959,4941,60624,24981
+13960,82111,11394,48688
+13961,23471,28205,76866,61912,53469,67519
+13962,67853,13152,32149,45793,62041
+13963,10899,37163,69187,28388,33486,29903,28771
+13964,58747,79857,39455,36488,9428,13843
+13965,9234,23080,40426,59624,56626
+13966,67569
+13967,33033,82138
+13968,42807
+13969,41610,25921
+13970,25903,4674,58434,42525
+13971,71150,15927,36681
+13972,23301,25396,60073,48869
+13973,13306,41692
+13974,3210,29714,26151,15927
+13975,79537,61093,13940,54249,28274
+13976,29995,30452,2148,80130,15769,51499,37314
+13977,63117,40559,59521,10518,39227
+13978,60009,47485,15379,55466
+13979,37107,45068
+13980,74202,6429,23823,70434,20617,20885,13854,71175,56497,79170,24705,39479
+13981,15591,13207,16122,79296
+13982,56444
+13983,43078,78199
+13984,38894,12283,854
+13985,12571,32107,33640
+13986,33842,52501,31928,53068,53210,41953,20902,34785
+13987,16214
+13988,76238,65106,7686,74031
+13989,3741,48927,17334,49372,56735
+13990,77143,38846,75990
+13991,65767
+13992,71646,4088,21525,61499
+13993,65406,38991,67670,37331
+13994,71907,23388,48153,18053
+13995,15374,41800,44488,48191,80328
+13996,71666
+13997,16355,34118,54887,15681,45120,39135,61468,14997
+13998,38466,74224,1462
+13999,25325,31429,853,40406,34660,73730,33596,47650
+14000,14317
+14001,42489
+14002,29149,71769,49260
+14003,57149,61126,37799
+14004,68893,43453,11765,18170
+14005,37348,16633,51034,51478,57507,45513
+14006,78066,36898,34832,56117
+14007,52827,3246,49374,39597,2693,49953,23502
+14008,10269,2960,52421
+14009,52206
+14010,6516,31108,4075,55831
+14011,58483,74082,29096
+14012,67115,55481,43880,15826
+14013,8175,57135,23664,55755
+14014,50586,80964,4920,32054,35413,58859,3003,27537
+14015,10690,74289,49076,42358,8649
+14016,77005,41941,62964
+14017,60823,25251
+14018,24086,54632,39913
+14019,33751,67705,21389,69412,81801,80436,4938
+14020,37689,55375,24840,71745,32949,42218,30210,12785,28198
+14021,78106,38425,46440,81112,68327,6494
+14022,63425,72309,75394,40291,72874,7714,28605,46265
+14023,312,61962,14819,27649
+14024,34863,72145,10582,18274
+14025,47206,79105,56055,73567,67048,2600
+14026,26988,77006,14457
+14027,36735
+14028,74337,64529,33917,79726
+14029,51338,8736,61045
+14030,31604,33326,13157,50981,60514,40047,17130
+14031,63430,37232,44204,52180,27952,80516,11368
+14032,40160,48191
+14033,43377,58040,41813,65371,58858,69421,68731,35789
+14034,69411
+14035,10362,72651
+14036,46529,41590,33971,33023,66509,63216,3241
+14037,26142,9335,24824,57992,82020,9880,47572,43773,29974
+14038,57030
+14039,74927,8764,20055,65133
+14040,40371
+14041,1684
+14042,22644
+14043,59031,76800,38141,78610,5536,42101
+14044,72452
+14045,10555,16115,3847
+14046,14957
+14047,74945
+14048,47669,17452
+14049,20106,46199,67121,57721,56147,17157,22048
+14050,4344,20017,32226,76315
+14051,76765,7154
+14052,15951,50112
+14053,70604,63692
+14054,70385,16691
+14055,55301,3243
+14056,65298
+14057,48728,35223,31025
+14058,59709,27325,81033
+14059,61637
+14060,34524
+14061,38407,11254,32933,17732,34467
+14062,1325,30644,65657,14176
+14063,78482,16412,12031,51668,76
+14064,43041
+14065,58538,53536,376,26343,59551,32606,36501,49753
+14066,22969
+14067,44699,14493,52008,30045,34592,25878
+14068,28125,24820,48227,1519,64465
+14069,34594,16290,3268
+14070,6076,16554,12346
+14071,59799,40244
+14072,54806,1619,46752,46992,75016
+14073,78993,69482,69829
+14074,32235,50306,45854,13301,53683,66061,65981,48124,24890
+14075,62625,66969,80811,15547,43313
+14076,32237
+14077,62676
+14078,39879,26424
+14079,4003,8768
+14080,73616
+14081,70422,40792,29414
+14082,57509,10438,4612
+14083,21260
+14084,27189,69677,77491,39176,46844,28662
+14085,58727,8345,21238,4070,53355,65202,44587,45747,71311
+14086,12410
+14087,33137
+14088,28456,23294,26654,55596,42826
+14089,18865,38403,18835,7657
+14090,34969,3208,50555
+14091,57054,18283,29170,60246,21846,27576
+14092,21768,18806
+14093,19845,43891,42545,12974
+14094,26810,39371,52606,77190,21228
+14095,11574
+14096,66630,58184,76514,7910
+14097,28665,35533
+14098,49264,45007,16375,78376
+14099,39757,55242,37263,79068,4964
+14100,39153,2362,57511
+14101,8369,35173,20958,27381
+14102,22439,66594,5406,4100
+14103,41941,50491,5862
+14104,8231,44725,40124,57640
+14105,27491,22936,71133,17378,52326
+14106,42435,6642,4376,27318
+14107,26810,59067,16086,8590,15170
+14108,20648
+14109,58517,52915,55176,59981,62592,40194,5374,20530
+14110,64424,78349,49291,59071,77134
+14111,8317,29923
+14112,25305,11482,7303,66933,8449
+14113,32322,81356,56434,34731
+14114,55507,77701,23139,40425
+14115,64948,78789
+14116,4526,53275,2707,58266
+14117,32101,60777,13220,78415,48296,78803
+14118,65757,7011,80881,2201
+14119,41004,37553
+14120,3667
+14121,38625,24542
+14122,58277,8630,81070
+14123,42260,16233,3460,50806,5861
+14124,31593,64695,51612,9493,32452,47106
+14125,7154,70686
+14126,40835,18572
+14127,75007,31915,65323
+14128,2014,64869,10000
+14129,81346
+14130,47962,52443,64800,41386,54475
+14131,20414,61535
+14132,39570,17872,9667,56827,74263,33859
+14133,17677,81816,5481,22537
+14134,62694,44387
+14135,15211
+14136,41290
+14137,32932,49141,29939,13181
+14138,72615,23637,50494,64015,64647
+14139,28664,59058,70024,61607
+14140,50810,55602,46439
+14141,6560,65967,10597
+14142,21520
+14143,66966
+14144,2152,80877
+14145,60598
+14146,27510,45789,59547,81239,53186,14927,36497
+14147,31300,81861,56526,52943,81576
+14148,55350,49959,47033
+14149,53975
+14150,20650
+14151,31255
+14152,9993,42166,49444,18174,67199,9769,36842,6300,12403,68687
+14153,43097,27093,69436
+14154,13406,72486,67367,11649
+14155,7457
+14156,13582,53272,66614,66360,29066,33170,35234,74611
+14157,22974,59992,68398,17203,6166,77125,11501,37501,67905,48586,19323
+14158,14056
+14159,51869
+14160,48500,39295
+14161,4611,34705,27960,14461
+14162,38077,12054,53258,8374,39318,56143,30175
+14163,25812
+14164,68570
+14165,76667,8257,54475,64729,66933
+14166,35057,72808,6173,52130,66985
+14167,62533
+14168,73755,18472,54118
+14169,34262
+14170,57153,54236,48860,21216,36356,80096,72231,2227
+14171,44184,39935
+14172,31279,74842,63415,69053
+14173,22303,28543,4356
+14174,50622
+14175,25885,81901,16728
+14176,62172,57003
+14177,5274,68385,43894,51440
+14178,53207,35092,46085,65195,16188,9603,56846,52896,58474
+14179,60233,16601,74148
+14180,68700,76964,38708
+14181,67038,17465
+14182,64218,18285,36914
+14183,65538,2588
+14184,20961
+14185,21302,69289
+14186,26733,43987
+14187,70598,43239,48297,60953,9133
+14188,79070,30509,40869,13145
+14189,20701,75022
+14190,60790,80006,31726
+14191,75618,56226
+14192,61813,70072,37722,79615,78515,71002,36736
+14193,22945
+14194,62198
+14195,53205
+14196,5651,2843
+14197,44408,8910,595,24248,27832,68332,17947,56154
+14198,48817,23649,26220,18544
+14199,5075,36778,41697,46708
+14200,21671,60652,43984,61739
+14201,58709,29368
+14202,48268,40771
+14203,61417
+14204,79027,49291
+14205,32185,70050
+14206,27584,53965,17773,66756,25587,48232
+14207,31891,23308
+14208,19080,60658,35398,31736,14592,38713
+14209,3970,30796,3208,6432,35688,74174
+14210,11735,70596
+14211,37734
+14212,81371,29742,11511,2726,75595,6266,36617,23067,54450
+14213,61660,13504,43592,38357,17643,46379,8177
+14214,12937,65538,50809,72490,6570,64544,31720,11425,28186,52318,72644
+14215,37955,13525
+14216,28312,46842,47022,38579
+14217,8862,30258,7913,64762,51755,67955,24875,70858,81640
+14218,58293,31175
+14219,31179,20772,15351,35544,68333,29223,62965
+14220,78618,41792,17622,33228,23843,2938,36456
+14221,25674,10407,12816,26015,52415,46685
+14222,66977,5051
+14223,64371,48434,23649,65003
+14224,23969,44496,56020,64399
+14225,22105,72216,48047
+14226,58781,22248
+14227,42732,36408,8239,40175
+14228,73692
+14229,36111,5591
+14230,1524
+14231,57054,1092
+14232,35703,16864,75627
+14233,20668
+14234,25617,77544,74729
+14235,37734
+14236,49483,36031,78276,67314
+14237,39470,21564,31560
+14238,62225
+14239,17163,41901
+14240,46992,50740,40813,69345
+14241,56233,68535,71287,67423,29097,40898
+14242,59724,63469,50862,75671,62790,42978,21378,70553
+14243,54963,14076,14939,4548
+14244,7615,80172,22831,44085,42027,71717,68930,70352,56342
+14245,9050,47466
+14246,18854,50038,72260
+14247,58888
+14248,36539,58593,80210,64180
+14249,44402,21981,44049,66654,9795,81850,52163,37273
+14250,80094,32204,52072
+14251,56621,46498,67153
+14252,81826,35234
+14253,62225
+14254,62077,1511,33342
+14255,79932
+14256,30363,78039,41910
+14257,67027,81085,3012
+14258,20454
+14259,41573,48867,76973,79729,80876,58589,29471
+14260,79105,41086,24195,72648
+14261,27300,78280,79393
+14262,12500,44739,31547,14485,11033
+14263,22548,8087,49113
+14264,31719,16304,17600,3447
+14265,9597,50747,60191,65760,8491,3926,67032
+14266,46859
+14267,60395
+14268,23006,54204,51957,69418
+14269,66422,43157,61202
+14270,64884,59326,7902
+14271,25061,31778,2274,22517,10203,35388
+14272,78130,2668,79351,38846,68145,63217
+14273,79357,42650,74388,65190,27747,47076,3342
+14274,31395,57640
+14275,54283,63295,8497,44635,26960,80610,77861,56909,80828
+14276,5942,39593
+14277,63186
+14278,16032,33920
+14279,2481
+14280,81314,40732
+14281,61285,23115
+14282,18522,7287,71764,39313,68266
+14283,75559,3099,55371,64916,10453,48942,32838
+14284,75742
+14285,78262,9341,18484,54157,78183,39476,4964,26777,19245,50480,64569,18254
+14286,81530,62734,66702,67403,38305
+14287,61293,36344
+14288,13922,57002,8871,52427,52725
+14289,6335,47125,13265,51974,38145,44247
+14290,46896,52587,31647
+14291,82086,5782,74620,36403,6169,72335,11033,39862
+14292,41729,27276
+14293,1864,23781,49740,27883,60580,19559
+14294,17022,15352,6868,11720,65534,15211,50649,41402
+14295,5793,71002,662,14868,71084,1740,10249
+14296,77429,54967,17298,24387,56768,47536,68853,46838
+14297,42920,69224,4718,76168,32041
+14298,27322,38631,74724,34689,24781,12464,15493,25650
+14299,667,15672,60748,23365
+14300,2077,60076
+14301,396,80620,7095,35851,49549
+14302,75294,42912,42725,27049,51686,68600,12483,10548,10373,42455
+14303,10247
+14304,60903
+14305,66533
+14306,77006,49703,47195
+14307,12633
+14308,71216,37007,28769,43125
+14309,38207,12000,59649,36041,227,38931,39094,13686
+14310,29116,59878
+14311,78330,55595,78326,21364,74349,31872
+14312,31940,28805,30195,45831,63770,722
+14313,33884,10944
+14314,79496,12243
+14315,67909,42109,6949
+14316,43792,64398,16145,18125,62687
+14317,21813
+14318,81919,60500,77129,55522,16202,78726,15524,59229,53388,31287
+14319,48562,18784
+14320,44015,40490,46973
+14321,48374,76639,67982,38450,73585
+14322,1922
+14323,16287,57601,51155,52362,59878
+14324,64653,14035,77303
+14325,16177,30420,45308,3837,35210,80360,3795,40399
+14326,10813,59346,24705,35933,9396,67323
+14327,73289,30135
+14328,46390,2431,35391,60388,76187,312
+14329,37932
+14330,12190,24959,21558,40966,38006,31066
+14331,46092
+14332,53656,14,59339,22141
+14333,76164
+14334,20166,34737
+14335,51553,24479,81452
+14336,37803,15274,58802,44795
+14337,61312,28953,27031,10861
+14338,47043,14989,49758,53579,77870
+14339,18829,30630,78427,30250
+14340,5373,33249,20496,34238,48335
+14341,26496,92
+14342,2018,48450
+14343,11050,7869
+14344,65132,17090
+14345,27266,2871,47874,2864,709,63803,68312,14167,58534,64609,12552,43809,16277,33959
+14346,79510,54646,34494
+14347,71480
+14348,56563,74158,47441
+14349,20074,75127,80250,55715,43220,57132
+14350,70238,70759
+14351,34333
+14352,73886,4603,67125
+14353,2291,1486,76716,629,2080
+14354,39600,55247,36379,31150,20388,47604,40774,42842
+14355,27085,35094,24812
+14356,78130,15072,75515
+14357,37997,73024
+14358,65840,54338
+14359,37575,60273
+14360,35054,74089,7101,61900,54728,52846,12414,36428
+14361,50123,62912,70612,7846,27636
+14362,36171,32517,54444,1402,25803,10439,60483,54399
+14363,36984,75086
+14364,61500,61533,19167,19588
+14365,24899,66860,81068,61505,56887,70286,765
+14366,55510,21644
+14367,82063
+14368,15631,81042,25627,77656
+14369,26731
+14370,2551,23269,8056
+14371,38474
+14372,71066
+14373,29458,62497
+14374,6696
+14375,7715,949,51637
+14376,18561,3466,6449,59853,61900
+14377,28480,47206,70095
+14378,54030,55850,46520,70782,64648
+14379,22363,75159,46635,51878,5887,43429,30873,50362,25728,70994
+14380,11162,35533,27007,76997,71595
+14381,51280
+14382,45681,53702,80413,19040,29304,77794
+14383,7959,62438,11704,25816
+14384,71140
+14385,68708,26182,58966
+14386,58203,45665,62762,22465
+14387,45712
+14388,64009,35473,24430,24501
+14389,38751,7494
+14390,25339,24972,59379,47064,3089,44488
+14391,31526,59880
+14392,2476
+14393,73240,13277,31137,34579
+14394,49300,31201
+14395,26108
+14396,46235
+14397,17418
+14398,49075
+14399,30489,38984,13660
+14400,22651,79243,44433
+14401,74770
+14402,3775,28170,60581,38144
+14403,51080,21990,81316,10734,12543,69251
+14404,57541,32936,37538,13991,69993,20481
+14405,77695,57597,14098
+14406,36477,9470,47172,18431
+14407,26261
+14408,1852,46912,12473,13985
+14409,34100
+14410,3130,16459,40001,31620
+14411,40563,43793,64625,67694
+14412,17694,64178,9811,61799,49864,52938
+14413,2109,69716
+14414,70977,51681,75297,34923,52924,40124,29421,78363
+14415,62336,64455,384,20528,4272,42446
+14416,45942,143
+14417,19306,33389,62822,79583,21819,25810,40589,51809,32989,19125
+14418,58917,10001,30737,43070
+14419,62892,42444,50112,81844,67922
+14420,4221,60762,15484,59108
+14421,30010,33938,51729,13656
+14422,55077,31081,68318
+14423,27596,65917
+14424,68901,15542,53210,67088,69053,37135,39340
+14425,57561,69042,49974,53921,36037
+14426,41228,3234
+14427,12672,66869,77482,4032,47213,36494,20738,62442
+14428,24112,77578,4468,41446,27290,38327,51416,71015,35800,75145
+14429,30120,53801
+14430,35355
+14431,47153
+14432,10548,33931,9578,45490,21356
+14433,22636
+14434,29465,20295
+14435,71527,26578,37444,69621,49854,66925,64410,35970,65974
+14436,58914,71549,61369
+14437,6278
+14438,61548,56537,59624
+14439,39734,64629,54842,24626,47671
+14440,35846,79419,78842
+14441,76791
+14442,54034,79117
+14443,37199,40401,80568,63139,13038,32233
+14444,6544
+14445,35316
+14446,35899,17732
+14447,18130
+14448,54938,43387
+14449,72765,74048
+14450,56418,43681,25127,62465,24503,10855
+14451,51247,2448,35097,18268,63915,18964,14901
+14452,47610,81283,75398,58992,63511,16903
+14453,24742
+14454,33237
+14455,969,35740,76299,27644
+14456,68596,67970,59700,20953,18302
+14457,81000,19867
+14458,2838
+14459,69051
+14460,54206,38688,45627,72590,37545,11373
+14461,43831,78858,38632,8094,79054,13391,9215,10938,17689,8262
+14462,42009,73484,32318,44743,73532,26632,9593
+14463,17599,47120,64748
+14464,77543
+14465,44701,28313,18964
+14466,38037,28971
+14467,32160
+14468,73296
+14469,23663,58268,16186,40114
+14470,63074,20244,6913
+14471,67393,48846,7035,56336
+14472,49533,62214,22855,76782,7148,4111,69757,17363
+14473,30363,72198
+14474,8493,52575,22594,19378,39960,47782
+14475,57241
+14476,81630,67742,59227,40994,8095,6643,54282,53698
+14477,6887,3165,18483
+14478,17884
+14479,77975,26067,4430,56557
+14480,2393,51196,63697
+14481,9773,51427,76464,79038,18584
+14482,58591
+14483,16526
+14484,1352,31721
+14485,53429
+14486,56644,7425,19153
+14487,37551,41478,12342
+14488,4647,32463,19037
+14489,78126,14662,48706,34260
+14490,22932,28313,42254
+14491,66491,67634
+14492,67015
+14493,48371,18367,5010,60189,63524,63973
+14494,13060,79515,69859,81901,52774,58367
+14495,45713,16953,52033,81788,27376,49380,54475,39292
+14496,31652,62551,28635,38447,48498
+14497,15404,40915,5867,7761,54031
+14498,73904
+14499,22413,72418,519
+14500,74296,27437,30351,65352
+14501,59334,5153,53953,46633,36831,3807,54816,81442
+14502,60779,54872,66991,2014,71689
+14503,64658,966,42728,33808
+14504,36698,19566,71638,80321,56730,54975,33384,38765,16004
+14505,52841,56171,10845
+14506,13925,11318,2323,22593,25105
+14507,40464
+14508,53360,15976
+14509,14293,64882,63488,50329,32416,81201
+14510,17206,40408,18914,45286,77705,27820
+14511,21344
+14512,27276
+14513,6112,76566,51540,41765,50429,33162,57535,27560
+14514,53049,35003,44838,39007
+14515,57633,38502,58149
+14516,43511,53860,75188,79472,31956,23396,79361
+14517,23174,74971,40101,28406
+14518,64928,25685,72344,9926,56960
+14519,65258
+14520,38402,77020,46994
+14521,29981
+14522,22961,30259,56667,34694,60286,72117
+14523,71695,13568,54986,24603
+14524,1596,55881
+14525,72556,45896,3264,61175,66548
+14526,19570,23157,68321,3705
+14527,17895
+14528,54655,77066,3315,16018,983,74719
+14529,49575,69465
+14530,35740,63227,45257,61906
+14531,16881,28005,40782,71047
+14532,74032,37951,46388,23729,48214,77818
+14533,11921,77749,70468,34040,36383,62143
+14534,9996,2979,43227,5034,61193
+14535,35808,18559,57408,37332
+14536,37632,77754,36578,5960
+14537,53559
+14538,49044
+14539,17322,18851,52288
+14540,20836
+14541,38967,22407,8145,21237,73210
+14542,9606,31359
+14543,59376,1044
+14544,2762,69436,764,6439
+14545,75363,79810
+14546,76147,1866,28070,72394,40708
+14547,71,55498,74488,24814
+14548,23980,18023,1017,73973,2916,46970,33726
+14549,54199,30053,31210
+14550,68869,56376,15894,67005
+14551,52080,76220,53755,25925,71282,64149,48724,6493
+14552,40921,37715
+14553,33339,67612,41308,19324
+14554,22153,37469,52423,36639,40340,55600,4118
+14555,28183,81472
+14556,66067,60254,53090,11094,75871,22760,41767
+14557,74224
+14558,64388
+14559,43765,69817,51128,13335,78020
+14560,22651,77482,38118,16001
+14561,8200,3667,74685,40711
+14562,51244,20336,34742
+14563,10883,34964,44868,55592,29201,6012
+14564,64193,2382
+14565,43098
+14566,29946,3409,53208,42837,37676,579,746
+14567,77578,18735,43926
+14568,51559,25001,81793,35209,60545
+14569,12239,56956,78337,16929,47469,37793,36342
+14570,26434,64639
+14571,24844,72598,7507
+14572,20516,64895,5523,51010
+14573,56660,30198,68166,57820
+14574,44628
+14575,11904,43626,70621,9130
+14576,74826,41197,79783,29997,102
+14577,71375,33635,55936,58149
+14578,3748
+14579,13206
+14580,29307,24963,60254,39003
+14581,17311,17477,17841,33963
+14582,75125,16082,79249,31979,1711,74559,20606,3673
+14583,12712,17620,18335,26072,78624
+14584,45397,81888,63545,26124
+14585,17279,76046,27470
+14586,30871,15911,14557,2591
+14587,25783
+14588,78865
+14589,14856,58873
+14590,26872,75012
+14591,3774,75473,43408,68445
+14592,4773
+14593,22776,66986,43778,51684,10593,41831
+14594,41609,70635,70325,29482,21339,65364,48411
+14595,70111,10597,3261
+14596,26657,62419
+14597,44656
+14598,16284,27389,43830,58307,71662,44298,65040,24730
+14599,19129,70543,53789,52029
+14600,38610,20085,23502,64069
+14601,59246,34604
+14602,13471,7549,60521,36326,77824,24919,37227
+14603,79883,16291
+14604,64604
+14605,25027,5837,50125,69307,25316,76175
+14606,24019,5886
+14607,2529,38743
+14608,2843,34890,34868,13306,37302
+14609,10438,62665
+14610,25792,69376
+14611,71833
+14612,61681
+14613,38625,74363,69394,3396
+14614,6220,50783,43598,34262,41482,51644,55329,73508
+14615,20581
+14616,73772
+14617,16865,77095,5364,58778,64430,975,10702
+14618,25368,5345,56737
+14619,50186,21141,58545,39341
+14620,80175,60292,37507,22200,60168
+14621,79671,29265,22398,29622,30116,26230,31738
+14622,60644
+14623,50995,27134,30957,63728,59115
+14624,44417,29842,51829,24272,76317,2567
+14625,28452
+14626,6599,76909,61910
+14627,1256
+14628,2252,7400,1260,31057
+14629,77288,52872,47296
+14630,44427
+14631,32405,62845,46270,31425,26896,385
+14632,38520,28974,7112,56135
+14633,61417
+14634,21993,76163,81654
+14635,65593
+14636,27979,10828,71660,72995
+14637,20488,49833,64459,74975,81952
+14638,59483,36433,36355,35653,62500,70273
+14639,69172,59387
+14640,79022,40707,22824,40727,56312
+14641,21764,39229,7852,81207
+14642,45842,17719,53606,76676,19088
+14643,64659,39325
+14644,65648,29552,51800,10777,60015,60074,25941,15800,43373,72143,73162,75294,12642
+14645,13166
+14646,60800,48129,5720,3656,1613
+14647,6336,2569
+14648,21386,19839,76550,4713,81692,67459
+14649,58091,74360,10779,81329,57720,31698,15600
+14650,60396,42176
+14651,44448
+14652,33759,49381
+14653,22538,8382,67709
+14654,9884,16424,7392
+14655,9526,54706,75795,34882
+14656,75627,26854,77489,11995,1345
+14657,54316,79003,69238,8368,19996,28676
+14658,54822,56402,70829,40266,69252
+14659,64523,26923
+14660,71467,3465,65197,23966,79656,67982,61899,57237,27880
+14661,63486,72452,15384,57688,28816
+14662,23122,60039
+14663,49330,34494
+14664,544,16083
+14665,41785,19147,22200
+14666,76313,33262,77515,48432,66466,75071,968
+14667,31651,50331,79528,71031,58710
+14668,65259,68321,21612,31560
+14669,35207,8965,58614
+14670,56889,6604,81929,71594
+14671,59684
+14672,53316,68288,71733,14724,62273
+14673,57485,55983,5252,40786,48669,49050,55656
+14674,26624
+14675,6798,46647
+14676,51378,38464,8421
+14677,35285,71708
+14678,75352,73949,23887,63129
+14679,37996
+14680,69440
+14681,13840,50440,34249,48293,44281
+14682,8837,75639,40706,29264
+14683,61639,9718
+14684,64576,77023,21989,21681,39244,65777,38806,3289,12972,72443,57803
+14685,65037,35546,38272,74329,2718
+14686,2227
+14687,54420,34034,47738,22893,37510,15436,14490
+14688,32101,16256
+14689,1307
+14690,21153,40410,11964,69028,38300
+14691,72137
+14692,23100,68507,66212,55288,81484,51471,16975,2668
+14693,28961,39064,43483
+14694,35270
+14695,7810,52999,48494
+14696,19975,56782,26444,58692,26509,32364,74662,33304,47749
+14697,82093,54505
+14698,24965,8208,75675,62442,11535
+14699,27485,7644
+14700,1497,26585,36759,6585,12961,5525,67308
+14701,34560,57840,79412,43284
+14702,7984,68024,12755,65689
+14703,56886,60198
+14704,44003
+14705,6266,41859,77693,27419
+14706,4767
+14707,65012,39202,43700,75530
+14708,24106,5325,52055,60935,30277
+14709,33902,36903,52514,73842,42094
+14710,2298,3346,63733,69445,3841,11468,78422,74319
+14711,17502,79994,13256,3706,40415,72884,73301,64831
+14712,49875,17971,68190
+14713,48624,78265
+14714,31786
+14715,25226,41735,46499
+14716,59865,49163
+14717,71333,14326,4394
+14718,5540,51561,43627,22947,61973
+14719,51490,3969,73710
+14720,46092
+14721,55349,63541,75728
+14722,69248
+14723,49821,25645,37710
+14724,71955,56566
+14725,23083,18857,11015,31411,55603
+14726,74182,76895,29356,11695,43664,34870
+14727,38450,29542
+14728,46628,49081,16202,28402,31755,76646,69795,43013,16900
+14729,30622,54442,51391
+14730,77292,43390,26133
+14731,43482,9646,62687,5945,52574,70211,2173
+14732,183,69933,443,1553
+14733,52944
+14734,60449,19819,60947,32222
+14735,50987,73831
+14736,78609,68976,13600
+14737,22468
+14738,4017,66868,40396
+14739,76404,37296,17556,5447,80265
+14740,3274,38973,30863
+14741,43251
+14742,74901,71732,8031,46335,54146
+14743,7792
+14744,55130,38309,31743,47068,13578
+14745,17935,63267,33867,59893,22016,31462
+14746,39865,48548,37396,18794,26478,4761
+14747,16961
+14748,43897
+14749,32634
+14750,9178,9334
+14751,11623,5394,55068,39696,70797
+14752,40377,75594,11638,33039,77271
+14753,30725,22672,73989
+14754,80433,36469,16639,60993
+14755,79800,51190,6097,56320
+14756,6898,42645,42218
+14757,3764,57052,15273,49649
+14758,27438
+14759,47722,61965,81539,79071
+14760,13555,11844,8712
+14761,11605,2522,77094,11867
+14762,2425
+14763,79243,55839
+14764,3768,69822,26008,66753,5970,79217,31470,41103,39283
+14765,57034,21428,63445,82116,6177,80490,66805
+14766,70158
+14767,38049,64862,31175,78058,7872,36496
+14768,16132,2861,42415
+14769,31574,23808
+14770,79102,46418,69696
+14771,5891
+14772,54607,71357
+14773,45513,56733,63387,65689,36332,23254
+14774,48192
+14775,56636,46659,43776
+14776,18673,8770,34574,72820
+14777,16707,81308
+14778,46471,34710,42575,72620
+14779,4662,14245,565
+14780,18078,64214,32738,74981,24988
+14781,37627,2604
+14782,72264,39773,38828,5043,33461,18083,13899,79865
+14783,32334,13161,68359,53022,24505
+14784,45610,13932,16815,29572,66282,77475,49533,12623
+14785,58577,38753,2251,70415,71060
+14786,53383,22444,17062,51349,66197,64982,71716
+14787,80380,7984,32825,46677,51603,52595
+14788,20467,12424,75587
+14789,71648,79959,25950,72780
+14790,80542,18062,79906
+14791,6325,39870,18179
+14792,4857,27719,18178,1917,67144
+14793,61541
+14794,30849,74537,59237,64581,15059,76932
+14795,2836,15962
+14796,25316
+14797,26001,69110,3713,47361
+14798,33942,56093,16162
+14799,36960,46592,51909,58855,39433,38092
+14800,50690,19459,46583,37122,6387,3917
+14801,79358,49900
+14802,65727,71800,78910
+14803,58874
+14804,53387,69948,82091,54397
+14805,71624,64976,73634,80859,81816,48753,54636,18113,78747,37124
+14806,72310,11164,74653,37743
+14807,81339,6187,22029,51600,33036
+14808,38515,72794,41224,30702,50422,39645
+14809,36964,9809,67888,8164,80335
+14810,15211
+14811,50301,17571,75408,46164
+14812,76525,75391,72640
+14813,78165,45192,4412,28664,80814,31960,66676
+14814,9954,25019,35047,16380,74976,59354
+14815,77537,74485
+14816,2232,73937,74932,4782,64611,4762
+14817,40597,71818,59303,43708,53456,14836,49422,1847
+14818,77369,35096,80700,62340,54073,64581,11001,63244,30393
+14819,19073,8374
+14820,70509
+14821,18647,56954,48664,71687,43571
+14822,54962,13731,43667
+14823,70888,19588
+14824,19099,61843,6370,51368,16065,28376
+14825,63058,33940,72709,29851,51844,608,48269,30353
+14826,52445,2979
+14827,31671,76709,3626,75625
+14828,41133,80410,81756,24055,4247
+14829,46847,17589,58279
+14830,45779,78508,19173,40314
+14831,72165,57365,39970,68049
+14832,74875
+14833,4270,45577,5230,41803,42553,79253,28457
+14834,36591
+14835,65390,22794,49889
+14836,15395
+14837,5493,11731,70589,45893,55499,55132
+14838,13400
+14839,62005,78749,57507,71672
+14840,35432,43013
+14841,431,3051
+14842,21194,22686,44406,60019,32003,31539,24816,59819
+14843,26267,76721,55656,36268,27002
+14844,57527,2400,36739
+14845,5395,27251,45624,24116
+14846,7666,101
+14847,1612,8948,71193,43831,31290,20695
+14848,3409
+14849,70524,40582,29297,77975,67915,47711
+14850,14215,42460,2091,46053
+14851,46229
+14852,64615,9683
+14853,68272
+14854,11649
+14855,56962
+14856,32130,8005
+14857,51418
+14858,56203,47628,6954,71512,20667
+14859,61629
+14860,81793,66263,23028,58222,41764,38277
+14861,22751,69213,26536,73837,68225
+14862,61075,43299,6479
+14863,68598,55324,51360,79021,74272
+14864,4113,60895,37575,78974
+14865,5891
+14866,2719,39180,17650,65008
+14867,56953,15137
+14868,49978,61053,42504,42314
+14869,26496
+14870,81422,33768
+14871,41402,71978,45574,77845
+14872,50833,64625,68670,23451
+14873,11796,63987,6780,46835
+14874,58374,36674
+14875,65017,5509,15646
+14876,6097,60001,6022,77022
+14877,68474,23672,79699,79062
+14878,69198
+14879,61977,19450,59630,60747
+14880,1947,43475,72280,7096,13676,20269,41120,71505,40525
+14881,18628,557,24226
+14882,65121,27934
+14883,73163,54215,35018,35065,13553
+14884,70750,2985,17911,76088,3480
+14885,11795,65194,26648,10479,63086,3916,58295,7610
+14886,35007,11165,5141
+14887,42446
+14888,18889,58890,46130,55129,714,1629
+14889,15647,13620,23515
+14890,74610,45548,13206,15674,4267,5906
+14891,79004,80941
+14892,71733,79395,42689,62128,80473,76800,16212
+14893,22777,10423,32134
+14894,6490,39742,52846
+14895,66729,63880,64163
+14896,12761
+14897,11803,77236
+14898,72231,5221,8211,42426
+14899,29637,71335,9893,368
+14900,69541,63622,38659,67454,70180,24184,56808,20302
+14901,34775,66486
+14902,40614,17447
+14903,56936,6847
+14904,13072,47522
+14905,43741,22830,651,3897,44190,16227
+14906,23353,3420,31226,42060,9850
+14907,68188,62007,76282,72802
+14908,75795,80717,75493,34418,47729,74174,13143
+14909,20028,66377,1606,3352,10784,17617,29998
+14910,483
+14911,24718,66993
+14912,70612,36067,61760,3789
+14913,76491,32911,38968,11783,77161,52862,62489
+14914,17522,30996
+14915,28938,32873,35900
+14916,78154,13802,66193,64215,72410,34622
+14917,13866,35884,23528,80638
+14918,48974,49934
+14919,34890
+14920,12520,67800
+14921,45136,23420,26612,25967,45528,63297,46465
+14922,9716,49549,64087,21734
+14923,76926,360,57762
+14924,7558,68212,24794,45863,81835,55522
+14925,60473,8756,75369,6881,3942
+14926,76343,4598,11646,14689
+14927,68689,53827,29096,338
+14928,41916
+14929,63420,7543
+14930,9804,70945,24381
+14931,30705,24651,66592,44325,48477
+14932,62814,61527
+14933,22570
+14934,45199,57424,21417,21062
+14935,66017,39822,8665,23259
+14936,31774,51728,54492
+14937,35908,66903,12660,79215,9979,73038,58069,18391,65119
+14938,41545
+14939,14453
+14940,43834,66051,13290,20626,51419
+14941,4335
+14942,4573
+14943,63709,6512,2844,39181
+14944,61760,5671
+14945,23109,38559,33181,35010,7555,70298,54864
+14946,29799
+14947,44701,27878,60732
+14948,58833,40832,52408,67484,71566,77616,23407,24517
+14949,33620,47030,74382,24292,31578,8858
+14950,59933,459,34893
+14951,64376,9785,22273,62835,62250
+14952,16161,48585,46997,22943,58795
+14953,8770,54101,39086,32565,23912,36857,66703
+14954,2627,73414,13051,62734,16917,81648,57790,13030,60174
+14955,27410,29135
+14956,58728,49867,10380,66359
+14957,36060,16455
+14958,77165,32547,44124,76875
+14959,19147,5725,80188,41202
+14960,26731
+14961,63889,55383,25203,52740
+14962,3880,67016,81264
+14963,49025,19465,19690
+14964,61455,13312,44566,1028,17622
+14965,64989
+14966,30516,471
+14967,58909,4331,24843,53573,64439
+14968,79669,76790,76824,55893
+14969,61996,42797,38294
+14970,17115,26792,15889,16748,59344
+14971,43952,81490,66612,27393,41977,25484,55607
+14972,77893
+14973,75395,30488,65683,4030,68809,69276
+14974,1856,45967,69756,55223,2484,51653,25263
+14975,73189,41079,14869,76331,80213,29730
+14976,15856,60762,57655,72429
+14977,39593,2775,40002,17411
+14978,34587,3228,52550,51476,55021,68997
+14979,69453,50590
+14980,28893,65462,23734,79186,41548,79155,23417
+14981,7350,23930,35722,36162
+14982,32954,3545,7279
+14983,30213
+14984,10043
+14985,38728,40325,76038,68771,28347,8029,73298,18626
+14986,32962
+14987,14392,54727,56179,44793,56544
+14988,33280,57535,69060,19931,78036,38713,40974,45684
+14989,10636,1507,56678
+14990,21987,37026
+14991,6949,65520
+14992,12353,27420,15074
+14993,36115,72318
+14994,57522,7266,53,67894,21075,25823
+14995,72498,78476,56722
+14996,27733,62636
+14997,67411,30200,7515,9014
+14998,77657
+14999,49358
+15000,7968,13913,58,79008,57137,43114
+15001,24758,37100,9840,57120,16084,32964
+15002,37803,48755,58774,33579
+15003,8405,19152,24742
+15004,26599,3705,16702,46148
+15005,6590,37246
+15006,24526,41815,74080,16212,73169,23827
+15007,46477,46537,53845,20185
+15008,20227,18004,26839
+15009,61443,60619,76652,43156,16980,35639,15449,48037
+15010,50926,19211,66822
+15011,57594,35423,10486,48832,52032,25022,26819
+15012,78359,49014,41971,42020,54523
+15013,31347,77383,70222,76034,47146,41863
+15014,18183,3658,79425
+15015,55405,36186,21478,75337,74611
+15016,42693
+15017,11420,69381,30379,72071,60822
+15018,14303,30302,51498
+15019,60411,6574,3048,50642
+15020,27462,4901,27440,3578,18915,39422,46341,69022
+15021,29442,69341
+15022,26190,15279,7431,13316,1134,65760,81456,7609,79789
+15023,18467,72276,26422
+15024,18549,72819,47583,7359
+15025,73361,78996
+15026,16439,64647
+15027,3688,2963,23566,21628,58943
+15028,2277,38615,42652,8468,38609
+15029,44155,7715,26824,29880
+15030,36710,68103
+15031,29576
+15032,38509
+15033,11899,54489,41673,37299,4970
+15034,6363
+15035,1465,31699
+15036,44373
+15037,53796,4457,67697
+15038,19111,70741,7868,25326,46215,14204,833
+15039,17090,28909,72086,63755,76607,43009,29641,23116
+15040,48277,2134,1524
+15041,28634,27646,45309
+15042,77533,78321,21181
+15043,4326,18686,2511,10748,14772,70546
+15044,52437,31061,10533,45900
+15045,29560,36018,79009,71317,24609,70476,79965,63877
+15046,21399,76450,69548,73488,34973
+15047,64336,81897,1812,30457,71864
+15048,6549,56534
+15049,59785
+15050,37428,12351
+15051,73895,1759,54690,56808,64018
+15052,28199,48983,26110,36728,29412
+15053,42759,58306,55775
+15054,62606,52097,41963
+15055,76921,62269,26338
+15056,63226,51664,80474,15888,71502,29620,39529,9292
+15057,12568,38348,76581,38719,42981
+15058,66292,38440,26651,58680,9161
+15059,15145,76183
+15060,36257,60073
+15061,75148,72278,12594
+15062,4761,4109,65356
+15063,59609,10738,30142
+15064,3028,76274
+15065,18597,5245,73921
+15066,12946
+15067,81248,75859,56872,9822
+15068,76592,57079,78884,32800
+15069,70857,60940,58809,24075,5817,33667,63166
+15070,22624,38814,61802,9809,19766
+15071,55848
+15072,13265
+15073,69887,23037
+15074,42914,73697,72599
+15075,79008,22245,6865,59803,68454
+15076,79626,7139,62377,36504,70498,79003,4155,76173,35002,63144,60882,70866
+15077,16080,4041,25209,39054,56340,12490,28332
+15078,53493,40313,34188,64415
+15079,20512,34629,73382
+15080,55545,41296,66911
+15081,62276,27276,54857
+15082,52817,28914,80337,28943
+15083,80136,54985,71144,9131
+15084,79961,17684,56379,58390,18488,5385
+15085,36770,33471
+15086,72909,48890
+15087,3398,14991,70909,2604
+15088,71934
+15089,40263,75194,66591
+15090,19809,24874
+15091,41770,30898,16053,57174,56711,44140,34739,64817,16917
+15092,69473,59460,43984,59777
+15093,47639,3981,30443
+15094,43417,45089,42448
+15095,42964,8785,22998,69526,22927
+15096,79251,33468,48609
+15097,55122
+15098,64150,81111,56671
+15099,80601,4155,74695,57940
+15100,54489,7757
+15101,55405,20275
+15102,29327,76323,31544,55492,10940,32902,66952
+15103,18647,50074,35519,59650
+15104,68,39539,18213,40393,27435,63844,28615,77024
+15105,80490,69610
+15106,54803,75858,69836
+15107,55174,6016,36485,48887
+15108,59867,46090,12854,42204
+15109,27536,5326,70483,15517,23417
+15110,74372,13708,4755,49875,47947,50799
+15111,31562,77123,39440,572
+15112,58208,15307,7460,39531,67492,74927
+15113,6928,59559,62420
+15114,63378,57282
+15115,14305
+15116,27417,34910
+15117,64916,59267,14564
+15118,34210,11681,62526
+15119,46675,67415,79433,32938,53218,71489,15257
+15120,109,73901,49517
+15121,37348,7861,55839
+15122,43821,70357,68070,79111,62926,49639,27837
+15123,23766,45562
+15124,61421
+15125,62888,2848,724,18445,74713
+15126,26282,15093,17743,66158,69242
+15127,33441,51409,6157,48228,57870
+15128,67535,18279
+15129,58225
+15130,47876,15863,18671,74931
+15131,12330,28296
+15132,25272,47541,22165,75526,60489,81498,55350,60384,40395,4389
+15133,71833,5195,44279,41069,49058
+15134,64233,12696
+15135,24224,36029,61709,7164,76917,53620,49219,39818,73455,56061
+15136,56261,48259,5397
+15137,78109
+15138,39904,59191,61454
+15139,4808,11843,59104,81726
+15140,75163
+15141,74177,7614
+15142,77098,17805
+15143,54578,74770
+15144,55466,3528
+15145,42838
+15146,28802,50514,76902,20597,51972,7438,32650,69455,62764
+15147,25109,77091,35607,74928
+15148,13336,42541
+15149,27601,50418
+15150,46027,71811
+15151,62966,53740,21993,76163,69964
+15152,41519,80393,31806,41687,21040,20954
+15153,67556,49715,15427,170
+15154,37502,77764,69037,42059,23525
+15155,36469,36546,73413,53472,12885
+15156,69129,32478,20260,48205,59347,65199
+15157,53830,52645,47916,60932,57864
+15158,42714,48695,23245,32348,36804
+15159,59843,23518,46078,53324,34988
+15160,65346,19084,16589,53,38787
+15161,56160,34437,32322,1606,6874,67085
+15162,7876,51182
+15163,38218
+15164,42803,49748,77686
+15165,21701,2645,71329,46500
+15166,39399,15113,19292
+15167,65758,56097
+15168,13703,49387,40232,51748,71837,42519
+15169,69376,24724,38557,9453
+15170,51320,52283,11658,35878
+15171,5910,21471,49522,56835,3158
+15172,53577,26795,29583,14754
+15173,72544,37252
+15174,32085
+15175,12747,39475,1635,43536,10181,62775
+15176,37158,27451,30728
+15177,48522,81735,55758,2053,2817,32903,41598
+15178,3507,68175,15068,5562,2533,20948
+15179,26677,17166,35834,76734,35922
+15180,72012
+15181,47530,2244,7966,18165
+15182,33435
+15183,30104,17978,39407
+15184,59658,49170
+15185,8241
+15186,65507,8715,19165,5367,12763,79182,44762,7007,78437,25654,19592,57079,16312
+15187,67212,40509,36626
+15188,77217,42613
+15189,74454,61005
+15190,11943,20782,34592,60738,30782,44376
+15191,46417,50281,48347,45701,21128,68382
+15192,28558,7652,2556,63221
+15193,37120,67773,22634,51080,543,67564
+15194,14305
+15195,59158,20037,70938
+15196,2629,53051,40741,70965
+15197,3694,81265
+15198,39225,13845,27677
+15199,20442,65384,78176,43945
+15200,20359
+15201,32925,30868,8068
+15202,25710,33088,27322,19840
+15203,14475,17834,70919,25077,64712,5048,39282
+15204,48959,30461,19445
+15205,66043,30144,53206,53116,81085
+15206,42381,71932,74961,56050,68650,61493
+15207,40340,74172
+15208,32599,77575,61070,20795,42833,2828
+15209,19110,62053,35138,53899,46277,26643
+15210,74601,12336,6196
+15211,70938,56874
+15212,79458,19417,22484,14807,64279,3625,82064
+15213,51478,19514
+15214,2548,25315,63368,59716,25998,77408
+15215,7757,69421,76899,60602,22055,10174
+15216,25721,59668,28924
+15217,49164
+15218,36851
+15219,46235,8840,77076,3777,3807,48334,20597
+15220,17865,60538
+15221,6917,78927,52237
+15222,22057,80923,25990
+15223,81264,77699,46570,61247
+15224,64025,2123,69427,51575,35978,32537
+15225,3673,77773,3824,20956,22250
+15226,4881,48882,61384,63676,60297,53912,31952,68074
+15227,9643,45282,53181,54730,28091,30033,8888,61890,79765,12501
+15228,36362,49722,15318,24806,25735,35760,5444,27420
+15229,58177
+15230,18422
+15231,75475,45962,44322,69413,35341,10833
+15232,51098,1533,53080
+15233,41079,34781,63040,58509,35690,33350
+15234,67294,77979,16941
+15235,65602,20691,11280
+15236,77924,78354,24386,31875,58966,60147
+15237,78945
+15238,72011,27950,40531,24513,14142,80561
+15239,8192
+15240,48504,179,22099
+15241,25625,2673,40716,30276,54318,73260,79833
+15242,12862,66802
+15243,1002,53582,67597,54982
+15244,41182
+15245,51030,15257
+15246,69923,36474,441
+15247,57063
+15248,63123,60540,54322,36205
+15249,3194,9547
+15250,18366,62921,80688,59208,54243,54905,13064
+15251,32587,62498,81502,943,25813,57382,71763
+15252,67977,14769,71751
+15253,26052,10737,17712,53440,50202,14050
+15254,32575
+15255,48280,31900,39761
+15256,13089,32246,4463
+15257,60895
+15258,15091,1336,64994,63771
+15259,4335,54442,4030,30324
+15260,5394,21635
+15261,42747,10597,47762,63269,71763,52746,17601
+15262,8378,65591,30618,25831,65002
+15263,45186
+15264,46987
+15265,985,66343,28458,24104,48949,68158,70725,31875
+15266,56943
+15267,47055,77150,31222,20242,35855
+15268,32457,4163,72348,24964,6375,79098,49578,3135,21723
+15269,858,66641,5181,74117,76254
+15270,9403,75441,53989,56750,54830,6449,62684
+15271,3186,66794,9924,36440,24103
+15272,31446
+15273,61575
+15274,8244,69727
+15275,55708,17598,31742,67057
+15276,51852,79635,64554,1402
+15277,79070,76541,2503,66732,47214
+15278,11760
+15279,7836,6515,29843,56511,59318
+15280,26351
+15281,6204,4174,34620,59958
+15282,72012,70428,56843
+15283,65486,65920,38809,43934,78323,63922
+15284,2233
+15285,56630
+15286,52350,69063,20409,24323
+15287,39760,54097,22886,60171,68978,17469,37244
+15288,69639,75521,25675,16604,11818,9029
+15289,30265,71526,3854
+15290,51624,57557,51405,15909,56412,42042,41189,28952,26067
+15291,22423,10717,6021,74056
+15292,20894,23904,38283,68907,52776
+15293,48284,31909,67625,18163,71041,33396,80979,49394
+15294,25448,14099,25295,38651,46769,36790
+15295,63432,30146,21244,32064,59678,5121
+15296,53395,45885,28329,37126,26686,63,9436
+15297,33640,81962
+15298,70650
+15299,74247
+15300,74912,39248,57406,44830
+15301,39208,63149,63412
+15302,14336,9893,46690,57640,75083
+15303,55262,51576,77622,10157,78558,14136,19968,32225
+15304,60365,55034,64985,64306
+15305,59926,4125,27861
+15306,25449,48268,5637,10234,17986
+15307,6204
+15308,15325,1903,74479,705
+15309,31859,20090,24237,67412,48123
+15310,66575,53300,26225,44803,81376,39531,6716,69733,2329
+15311,59758,44847,39679,35071,69892,45664
+15312,44944,66771,69383,64463,20505
+15313,75324,22967
+15314,46414,20812,76338,43057,37520
+15315,25998
+15316,77424,30573,73925,81971
+15317,6863
+15318,20891,41346
+15319,39822
+15320,42948,69553,29610,78025,44180,50986,37800
+15321,64709,68669
+15322,22806
+15323,13956,75024,66017,67252,4238
+15324,11979
+15325,29976,37680,45712
+15326,28626
+15327,69716,16422,2106,42979,48755,65322,49944
+15328,10354
+15329,76762,49569,27331,51430,17228,46832
+15330,29780,63217,47062,64678,57007,79635,77134
+15331,16298,69685,13794,31911,62272,25115,2316,56890,2459
+15332,54830,60514,80793,74375,13089,27752,2261,77170
+15333,50496,1448,81174,32242
+15334,44345,30388,70125
+15335,17230,4716,35431
+15336,76313,51772
+15337,28484,80931
+15338,23278,12954,70346,37598,48699
+15339,14869,16591
+15340,2408,41280,2382,78474
+15341,38570,7688
+15342,59287,3164,40679
+15343,70356,10192,14236,45660,26896
+15344,28440,26467
+15345,79127
+15346,27331
+15347,41416,27852,66572
+15348,3012,56588,78415,52495,2975,22713
+15349,7517,73295,8530,36786
+15350,30522
+15351,34794
+15352,19674
+15353,1182,72736,16080,26589,1846,79894
+15354,62832,75116,42097,54716
+15355,330,19446,24863,32015
+15356,365,32038,13661,31753,42234,33893
+15357,68442
+15358,40778,34431,80093,76504,61859,7869,80834,7835
+15359,31251,45586,57771,55616
+15360,32910,25725,73429,56264,70005,73009
+15361,22994
+15362,12873,38694,52305,20915,77880,16084,42194
+15363,79008,14151,39196
+15364,70436,7233,35768,20183
+15365,73106
+15366,72208,71528
+15367,21292
+15368,80252,44809,35726
+15369,74398,24062,63204,81007
+15370,54455,57348,79305,21224
+15371,68852,12475,283,11896
+15372,37120,41721,12614,13570,17435
+15373,685,4284,78343
+15374,35174,82136
+15375,10887,44075,55966,21296
+15376,14724,66844,32569,67633
+15377,13827,81551,60621,28317,43681,25541,4846,35928,9982,48535
+15378,24870,27805,33726,74690,14103
+15379,53145,35623,64089
+15380,2374
+15381,12198,64773,14400,66209,76555,357
+15382,65602,75858
+15383,56090
+15384,77005
+15385,15457,62461,55721,75823,38654,54937
+15386,4991,8673,19034,49779,69167,9028,19660
+15387,7476,64582,17201,66633,12307,63119
+15388,20876,25745,75048,12752
+15389,53977
+15390,14458,30748,15860
+15391,68745
+15392,16699,1095,1628,24368
+15393,19028
+15394,46866,74116
+15395,77168
+15396,29088,56371,39317,59355
+15397,46792
+15398,80022,39707
+15399,61117,21070,73283
+15400,46688,76849,13682,24373,58339
+15401,53702
+15402,48214,39654,275,7913,70147,8711,82077
+15403,5051,82027
+15404,23204
+15405,39054,66293,32490,27526,7999,56641
+15406,77616
+15407,664,51928,20333,46057,20957,32629,35242
+15408,67712,16748,39545,37369,73933,19484
+15409,45479,32639,29986,69703,14528,52287,71151,4211
+15410,20221,81043,67045,1235
+15411,55190,8914,58408,56851,10765,53627,64365,52427,67380
+15412,13301,54434,35486,47212
+15413,68629,12395,46964
+15414,11656,9888,38691,36486,41814,8409,74370,73652
+15415,80935,26965,69426
+15416,79281,55492,3733,17597
+15417,48266,29236,48677,31719,39318,33896,43428,24154,61458
+15418,11287,25550
+15419,40942,1731,34070,7149
+15420,15068,50686,19813,49346,43378,26965
+15421,65836,67747,66897,30094,17636
+15422,58717,15004,67457,20036,61993
+15423,82025,31798,57723,54036,16694,78342
+15424,61381,57114,59209,40445
+15425,60946,76858,64807,10826,51212,35663,2905,75730,26242,59869
+15426,42550
+15427,73921,29596,53101
+15428,24709,78027,37822,39071,79433,33843,52165
+15429,36387,64124
+15430,12457,39368,28313,67555,1339,29873,46552
+15431,36223
+15432,11674
+15433,13004,23050,4689,74717,81561,12102,40892,23046,57145,51081,75768
+15434,34258,19077,1728,39655,56629,9673,54960
+15435,28277,7331,25541
+15436,21667,48713,69340,27894
+15437,29319,50453,13184,62128,39528,77323,28638,41014,61980
+15438,31346,32006,21652,63434,78056
+15439,53823,63913,37417,69519
+15440,18396,39474
+15441,7757,15871,5786
+15442,81626,17823
+15443,70104,5219
+15444,5840,11714,1433
+15445,74347
+15446,47989,12805
+15447,61080,60309,75479,48670,20970,56741,21914,12712,2998
+15448,56759,54311
+15449,76397,68863,13368,5763
+15450,45469,38557,25640,37014
+15451,56318
+15452,66454,35486
+15453,49253
+15454,66319,48119,58603,2434,3914,7338,44311
+15455,45536,15086
+15456,40384,4307
+15457,20309,67337,66198,47790,51599,66500,51667
+15458,81373,75820,57423,41722,80113
+15459,27883
+15460,35755
+15461,65015,41104,77010
+15462,48998
+15463,43849,22535,2121,6674,7686,43039,51799,59474,54410,20339
+15464,2184,8248,13756
+15465,22187,19553,5268
+15466,61103,2633,53594,39302,43449
+15467,14258,73278,15515,3688
+15468,73232
+15469,30299,67373,74482
+15470,3519,48326,11297,19766,40780,11673
+15471,25864,53940,3936,43734,43791,55579
+15472,41003,59094
+15473,50682,32729,39702,14781,8414
+15474,59874,7139
+15475,9676,77963,2836
+15476,37901,14473,47296,38785
+15477,34539,19231
+15478,48612,28874,17991,46363,10650,21,81705,31170,81932
+15479,75966,50484,66283,23471,23988,71257
+15480,40017
+15481,11309,41777
+15482,5583,19754,52100
+15483,22012,40055
+15484,77073,79650
+15485,71394,70960,57759,55449
+15486,11826,65034,32086,18177
+15487,66536
+15488,62966,4752,81490,56314
+15489,62958,12019,22422,79841,59507,52154,64741,69248
+15490,78703,55359
+15491,64269,45480,51868
+15492,62629,58966
+15493,49315,63997
+15494,993,24019,22563,36422,5127,73172,2788,46523
+15495,64049,53571,2261,13239,77584,29614,68248,50311
+15496,53651,7452,64643,11433,41658,68874,52710,10408,44827
+15497,35152,53048
+15498,56143,59186,69906
+15499,38702,13949
+15500,60097,11914,37733
+15501,25207,33907,60915,7786,67459,36214
+15502,69849,47075
+15503,40566,51678,35366
+15504,38205,56822,33250
+15505,61840,7540,49552,29843,78978,66761
+15506,30278,17277,65697,50741
+15507,8903
+15508,17684,57197,26345,41355,35535,2023
+15509,60723
+15510,23145,67691
+15511,33047,45579,38566
+15512,48218,18109,39610,15286
+15513,13772,22207,42307,76493,41502,7087
+15514,41420
+15515,38437,30233,48230,34260
+15516,61545,24140,20568,60833,33416,7659
+15517,49017,20740,49420
+15518,51808
+15519,51874,77710,25008,1353,38483,22723,78833,30945,66702
+15520,33004,57175,32311,61737,52369
+15521,66833
+15522,60061,31306,5786
+15523,37675,5466,63381,73605,78889,11608,71635,1222,28701
+15524,8284,7640,53320
+15525,36749,57948,26227,11827,43749,38765,66650,21773,54462,71072,55640,15912
+15526,20993,60685,58295
+15527,30470,44329,36088,12368,41361
+15528,11759,43537,49634,66443,70892,12207,25828
+15529,43415
+15530,15266,45972,43695,59296,3459
+15531,6735,38798
+15532,3455
+15533,77408,58939
+15534,35727,82149,7286,32713,38029,30319
+15535,68184,59985,3366,12947,78033
+15536,57441,56517
+15537,43409,9095,25998
+15538,42837,26838,68339,60177,65119,36409
+15539,74754,33365,49929,1907,5666,43383,22190
+15540,23371,14482,61787,3345
+15541,62015,31252,16854,25209,56310
+15542,34550,31488,73374,81429
+15543,15371,80360,37430,2887,32156
+15544,17340,2268,53844,10723
+15545,35809,44156,1577,8949
+15546,9954,24021
+15547,60384,66198,57248
+15548,49797,13492,71212,43397
+15549,41277,78164,2152
+15550,68682,37751,6006,81395,1871,75937
+15551,37310,44920,61653,46418,44517
+15552,77768,34967,37928,65321,3981,30436
+15553,34837,79442,36477,64956
+15554,38753,57826,11962
+15555,74341,28107,5868,1886,47132,24662,25484
+15556,21381,60538,40775,20939
+15557,31201
+15558,21675,66369
+15559,63871,50734,18764,55259,67441,70418
+15560,21277,58712,20441
+15561,37416,51429,81484,675,34213,62451
+15562,21876
+15563,41045,51104,11017
+15564,22283,23992,81918,20853,58604
+15565,2351,68604
+15566,10625,27215,52174
+15567,48369
+15568,27477,60692,5857,37573,26126,68604
+15569,31205,38626,15036
+15570,37565
+15571,35514
+15572,60694,51088
+15573,22373,51358,3802,64212
+15574,78741,41562,17905,40345,61134
+15575,40531,56422,64395,12747,46271
+15576,32073,49982,9895
+15577,72214
+15578,12884,72916,42838,29050,59313
+15579,7545,16451,64903,17472,73328,66263,45552
+15580,15108,59766,46946,179
+15581,20950
+15582,72861,76278,54882,70483,5717,25043
+15583,46606,47994,44250
+15584,20640,36728,26231,56316
+15585,82081,12938,6280,57750
+15586,52576,19963,78280,14130,53790
+15587,53036
+15588,17817,29125,59078
+15589,5863,41715,35734
+15590,35669,21601,61217
+15591,33018
+15592,36064,19478,67037,37759,15786,61598,66783
+15593,13051
+15594,32499,64434,33169,3257,55377
+15595,17028,53970,12325,25077,67622,74722,47533,60993
+15596,629,46688,30104
+15597,62517,11755,77498,49939,45400,72935
+15598,24664,55472,36365,46403,14579,16651,35581
+15599,40964,3071,75102
+15600,42348,77989,13212
+15601,55766,53931,37799,21128,76669,20932
+15602,70890,1087,48858,80176,7301,2030,1108
+15603,32362,55797,31359,26501,28595,57537
+15604,78537
+15605,7934,3512,43894
+15606,68361,61211
+15607,23525,14527,31112
+15608,72640,33012,74326,13043
+15609,57657,77374,22,77955,81221,28015,65601
+15610,32245,28013,81005,26519
+15611,29192
+15612,79862,70611,11086,20803,42028
+15613,46993,16122
+15614,6088
+15615,17275,78370
+15616,29628,51162
+15617,52841,22051,58916,69983
+15618,48124
+15619,75858,57639,72952
+15620,23671,23031,15849,8329,21358,74649
+15621,14299,10314,69923,10750
+15622,37686
+15623,34695
+15624,33920,40544,68230,2147,20815
+15625,81627
+15626,62859,24392
+15627,68856,71468,16951,3728,21774,10539,2000,44098,3691
+15628,72826,4704,9903,6790,12823
+15629,24684,32490,43214,77006,13542
+15630,59238,11704,3282
+15631,53480
+15632,21171
+15633,67718,26431,47736,57618,77645,40455,18759,23935,41908
+15634,65123,19535,18647,78230
+15635,29542,75784,71441,41698
+15636,37190,14567,12783,18504,61218
+15637,22094,3719,45677,58989
+15638,9951,65022
+15639,30926,77569,7306
+15640,75380,60295,74948,9986,73608,50809
+15641,14810,49428
+15642,37111,60704
+15643,38965,26365,6361
+15644,7871
+15645,8935
+15646,11032,1391
+15647,17604,1328,42400
+15648,26323
+15649,13157,73114
+15650,30201,46076,5218,76644,71184,52420
+15651,316,18072,38951,21908,50404
+15652,31570,37542
+15653,39568,9951
+15654,2586,42609,79544,77829,368
+15655,71140,629,37529,42488,39346,20642
+15656,5927,46560,60024,66419
+15657,74082,25630,3446
+15658,2841
+15659,55602,28704
+15660,79559,6342
+15661,71325,47681,20953,67030
+15662,44038,13377
+15663,12231,58526,28001,51163,61702,78388
+15664,44777,25198
+15665,56289,13642
+15666,27488,52421,66157,18465
+15667,8861,20167,25684,14314,53799,56989,25804
+15668,71956,35052
+15669,69120
+15670,41492
+15671,35965,55863,44790
+15672,2802,31916
+15673,6487,60561,60406,28601,79576,47754,13931,26701,45455
+15674,43109,5880,74326
+15675,38867,4964
+15676,1647,75382
+15677,29797
+15678,40472,54180,50559,62680
+15679,61933,19170,77468,75791
+15680,43466,56944,57218
+15681,64338,25759,42394,63004
+15682,3808,8151
+15683,1762,38756,38099,35227
+15684,58705,74912
+15685,66417,35248
+15686,28862,62801
+15687,52930
+15688,46537,67608
+15689,9941
+15690,79442,70906,42909,54440
+15691,79023,47980
+15692,66063,55489,11521,43312,61224
+15693,49578,81479,47503,64403,70239,51274
+15694,75112,24293,23747
+15695,35728,39364
+15696,51225,53049,14145,74551
+15697,55189,6762
+15698,74703,37021,30743,36904
+15699,15949,68924
+15700,28536,44729,59326,53371
+15701,28564,77599,80630,10861,78022,66183,41759,34694,27070
+15702,34886,14449,20455,68066,731
+15703,26022,53614,16304
+15704,42621,24749
+15705,3266,35141
+15706,54784,35976,20440
+15707,52072
+15708,59615,17333,50876,26436,62299
+15709,39254,75890
+15710,38559,59738,46474,25636,49398,79945
+15711,64177,61988,12156,12736,57628
+15712,69156,66947,17434,6524,11516,73925,27509
+15713,48019,56105
+15714,30300,41661,57703,48747,41158,51560
+15715,32583
+15716,81740
+15717,38207,26993,40107,319,30984
+15718,13612,77766
+15719,68420,1812
+15720,9058,6252,54597,17238
+15721,4731,15307
+15722,17005
+15723,49388,43615,28835,30189
+15724,57440,33205,52224,33599,63701,18542,65459,74299
+15725,58907
+15726,5119,70908
+15727,312,49055,44445,67451,29491,61885
+15728,14946,17885
+15729,5882,39944,49718,29452,68572,6088,1786
+15730,3729,60687,50926,47837
+15731,1235,7160,57105,58093,9275,52262
+15732,36552
+15733,13902,51623,43074,13517
+15734,16885,22419,31231,51950
+15735,51750,18721,7027,37633
+15736,61998
+15737,17425,36591,5882
+15738,49075,29390
+15739,7210,3460,76170,30064,47294
+15740,75256,79199,48230
+15741,34620,27560,64576,74285
+15742,60724,30392,43734,52135,40338
+15743,24989
+15744,75664,56453,32517,34138,23677,11906,13889
+15745,35444,76895,54803
+15746,32053,70443,57902,35569,13101
+15747,59695,40073
+15748,20007,62174
+15749,77696,66071,13719,4406,13657,42761
+15750,17094,65408,41835,40176
+15751,60760,42750,16590,49182,58794,9337,46619
+15752,23369,12711
+15753,23011,30865,20399,60084,55262,24566,31660,53835,5881
+15754,69293,8555,32935,31071,8566,12869
+15755,41248,59380
+15756,73602,22176,21978
+15757,71071,70732
+15758,22991,3215,42166,75391,54611
+15759,76450
+15760,51751,46951
+15761,32071,20133,18643,42012,21529,17852
+15762,32880,59411,62649,66475,21905,13854
+15763,61620
+15764,56096
+15765,1105,45614,58400,45825
+15766,23988,52193,69346,41123,35886
+15767,8796,21038,75269
+15768,8598,37548,56647,81979
+15769,67397,6628,74604,37997
+15770,59882
+15771,45630,71850,48515,15920,52347
+15772,17708,42543,8160,50361,66263,32829,75741,68516
+15773,79944,38545,12713
+15774,53071,16649,63706,58954,33050
+15775,81058,60779,78050
+15776,17885
+15777,71319,19965,11920,51025,21965,67967,66977
+15778,17644,73740
+15779,2030,47130,9944,20723,43916,870
+15780,461,58011,41485
+15781,75793,11864,61201,14739
+15782,15789,6298,50504,27189,21610,65528,20551,77765
+15783,17566,81738,70726
+15784,27357,68632,71579,61452
+15785,18494,66992,11794,11041,21754
+15786,60329,52624,31698
+15787,56342,26635,8935
+15788,605,38293,66874,77402,9833,63383,61478,40614,79450
+15789,75988,17961,11615,69822,55323
+15790,63921,58831,73723
+15791,14999,54915,9175
+15792,14542,10040,6187,50531,76177,64800
+15793,1028,17780
+15794,67907,1053,71725,44745,64563,4162,32537
+15795,38014
+15796,4376,47811,42427
+15797,24434
+15798,9906,77796,24393,20154
+15799,34110
+15800,63259
+15801,32622,42237
+15802,4606,5757,24132,72534,78388,75383,79476
+15803,40892
+15804,38432,11633,78230,34986,50639,43067
+15805,27646,70459
+15806,80138,16791,51988
+15807,3092,79735,24692,52586,80788,34795
+15808,20494,50477
+15809,17366,33145,73529,9488,19242
+15810,35557,38130,61403,70
+15811,20414,37192,27241,4574,43009
+15812,56338,36765,44835,2468
+15813,64730,27615,45168,46988,5844
+15814,12525
+15815,31871,24633,70494,80363,48653,33913,50677,54630
+15816,45652
+15817,3763,35151,14760,57164
+15818,5168,34036,81971,59147
+15819,60448,61279,27523,6345,14730
+15820,80131,75775,34201,4577,53763,35369
+15821,30650,71929,46116,55468,29665
+15822,78772,5387,19600,10979,39110,46136,40737
+15823,42801,1409,1295,25928
+15824,8098,63013,59186,38517,59703,36440,9846,79077,27549
+15825,36054,54577,6337,32911,68369
+15826,11718,26764
+15827,33448,44049,18758
+15828,34346,76963,36349
+15829,31922,25621,45255,56541,21129,42097,80066
+15830,78421,31425
+15831,24154,61830,70821
+15832,54985,14848,78197,556,66594,81723
+15833,67740,18059
+15834,48955,55301,28145,56876,38609,39641,3908
+15835,38474,56892,29599
+15836,44091
+15837,77845,78594,43556,31940,9743
+15838,64731
+15839,45956,12151,33913
+15840,72755,21790,49653
+15841,57890,9304,12179,21800
+15842,9890
+15843,37131,75849,63347
+15844,66116,75326,24100
+15845,36108,70696,70616,65295
+15846,30493,1019,55121,34660
+15847,5642,26432,50676,13069,2083
+15848,56614,20341,35017,17200,8454
+15849,21058,31613,47862,39620
+15850,1828,41431
+15851,63008,48466,31559,4265,11837,73919,18355,75641,59112,19647
+15852,46508,67683,32796,41351,75578,36546
+15853,36613,18124,52529,17006,63070
+15854,44374,31469,30860
+15855,46845,72650,37355,81089,64100,19048
+15856,2097
+15857,73549,49360,81214,2229,49066
+15858,39693,62343
+15859,51310,67886,32110
+15860,51229
+15861,39032,73794,72405
+15862,28583,33011,16632,30242,64392
+15863,57889,4852,64625,52800,54725,56890,15551,4197
+15864,41443,27619,19110,51882,19170
+15865,42676
+15866,5773,2300,50236,6687,44748,42520
+15867,10262,26072,40103,21677
+15868,56058,76909,29472,16014,81067,58710
+15869,45284,67796
+15870,35843,54310,11556
+15871,59804,35790,18841
+15872,47233,70644,26024,33843,65193,67368
+15873,47044,67303
+15874,37716,71761,8545
+15875,47752,23802,69423,64017,46417,49998
+15876,9756
+15877,61850,59163,41408,47763
+15878,18837,5680,81062
+15879,3031,30602,81744,60796
+15880,61716,74777,31398,30684
+15881,28433,67957,3917,19766
+15882,27994,60275,76902,32945,39356,64156,57623
+15883,80124,15436,74296,78020,59330,60224,929
+15884,35599,20237,66848,76324,47560,65231,69686,42127
+15885,7227,40391,35462,47437,34984,59328
+15886,71263,62003,6278,32583,36096
+15887,33033,30116,46961,77654
+15888,32636,61729
+15889,6487,81001
+15890,41183,18144,48309
+15891,32714,64206,29633,23294,39011
+15892,48174,35422
+15893,78598,75435,19779,21658,60466
+15894,72092,2536,43965,77563
+15895,24956,36691,79518,7069,49838,3982,10107,29639
+15896,38502,50847,67524
+15897,65350,47817
+15898,69506,63692,12582,7703,16806
+15899,38155,42403
+15900,69210,24826,6336,25464,22016,4261,61046
+15901,12061,65798,78827,52908,1674
+15902,9867
+15903,64047,25566,11480,18439
+15904,35007
+15905,56240,10536,70546,26731
+15906,46550,23240,4547,4553
+15907,26560,9487,12246
+15908,66932
+15909,40799,24503,52105,66029,16767,12874,39279,26521
+15910,31295,38411,6369,53210,53588,78790,32016,49667,29553
+15911,2967,61378,45328,66930,24711,68841
+15912,65200,46243,11860,51065
+15913,27212,58755,43343
+15914,33762,22001,74150,47393,74251,56095
+15915,58906,52881,64466
+15916,68220,29730
+15917,9409,13593,41331,49246
+15918,56697
+15919,69423
+15920,36904,52110
+15921,33056,1952,18433,75979,39713,752
+15922,45018,58809,42052,12416
+15923,15307,59812,33023
+15924,62913,77633,31566,9554,45035,36611,66212
+15925,38594,55055,10479,6483
+15926,50491
+15927,65289,17695
+15928,1890,70169,32149,76661,39330,29688,50298
+15929,12039
+15930,31941,4709,45424
+15931,38613,43577,49857,30309,37673,69637
+15932,73277,73531,71058,25043,38390
+15933,34860,57618,58031,37176
+15934,61255,32553,48879,24991,71803,60624,13492
+15935,33679
+15936,55406,58619,17237,72788
+15937,65729,74371,27314,79269,56402
+15938,81594,12310,28194,40044,3245,46527
+15939,29961
+15940,46727,66555,1937
+15941,59562,52434,47916,25639,34482,1550
+15942,72435,65342,21814
+15943,3074,71501,10992,66950
+15944,31783,80423,47141,53599
+15945,36696,66431,13089,42259,26869
+15946,54462
+15947,69413,20024,62272
+15948,1022,25131,33671,2340,78847
+15949,75186
+15950,12056,73369,13631,67051,16737
+15951,75122
+15952,33887,51728,22175,62322
+15953,48725,57587,45787
+15954,78865,32298,3554
+15955,20155,43834,50299
+15956,2386,76613,59684,64801,13545,46336
+15957,56515,16122
+15958,30938,52790,71357,65650
+15959,69906,77094
+15960,69661,61482,9067
+15961,40873,67466,15389
+15962,76085
+15963,57574,78455
+15964,16912,35968,60497
+15965,38887,815,74156
+15966,43910,69425,57899,75129,55217,46293,1293
+15967,68131,16672,28479,47711,78659,23970,27912
+15968,60711,38761,8657,48815,37792,43697,47334,12790,48119
+15969,41870,70681
+15970,15606,47124,45105,62103,17744
+15971,4885,27033,68244
+15972,73272,74472,75779,79220,1232,59791,56305
+15973,11442,48755,20934,69307
+15974,57931,37018,30014
+15975,22315,803,41971,21654
+15976,7817
+15977,3071,11488,40783,2279,2192,36635
+15978,37078
+15979,69158,12974,50444,66315,19375,45017,65074,24975,79440
+15980,59179
+15981,76563
+15982,8905,24138,5440,14862,81111,15413,58668
+15983,62854,51610,28237,65782,46781,77886,79790
+15984,77953,28845,106,79369,16704,55846,59852,80458
+15985,30147
+15986,19492
+15987,5765,61305
+15988,5852,53548
+15989,13099,49947,60989
+15990,52210,23002,74217,6516,55126
+15991,76242,46747,62293,2771
+15992,36803,42614,29070,61758,7590
+15993,36474
+15994,65050,40224,35770,51537,25724,52559,10484
+15995,47639,58513,7498,43634
+15996,55855,44438,25404,30191
+15997,536,11667,65764
+15998,43435,5320,2231
+15999,67325,63042,61509
+16000,48919,68895,12669,70217
+16001,9482
+16002,26553,29099,11144,71000,23331,40692
+16003,62249,17996,31877,74459,40975,36040,63382
+16004,29241,71435,70539,70866,58025,78978
+16005,42592,35969
+16006,76513,15315
+16007,11614,9252
+16008,61375
+16009,39327,37180,10409,38787,62339,86,68079,5533
+16010,64106,10959,6670
+16011,34021,78957
+16012,730
+16013,20925,28064,41211,21546,43519
+16014,32143,21277,55321
+16015,51777,72200
+16016,59681,14786,41209,55213,66700,20524,7259
+16017,45439
+16018,78774,72991,22340,57069
+16019,42800,43176,19359,72349
+16020,32397,23840
+16021,56066,31805
+16022,66732,15767,59560,80288,66912
+16023,37241,59334,54519
+16024,69469,51763,44124,53133,81451
+16025,5788,47683,38037
+16026,46866
+16027,20185,26121,47944,23045,8286,22816,15163
+16028,81962,12118,18204,42767,30040
+16029,67606,58295,63378
+16030,44757
+16031,76964
+16032,45851,43878
+16033,33040,24869,16174,80376,35196
+16034,44776,65555,7208,12790
+16035,21892,56613,27963,21684
+16036,48378,17740
+16037,6242
+16038,80571,29667,62598,15676
+16039,18728,27937,6530,71017,19996
+16040,30194,2898,26315,11675,80276,77949,62893,72423,67958
+16041,80531,15830,53152,226,6133,59523,1800
+16042,25966
+16043,19449,56936,74434,56266,59655
+16044,16702,2802,4023
+16045,35100,36335,76910
+16046,22031,4111
+16047,72076,73696,43773,81703
+16048,1459,26712,19219,33994
+16049,15163,72659,1413,46009,28913
+16050,15716
+16051,63705,22277
+16052,9091,58019,69412
+16053,78332
+16054,4252,14324,45133,5012,1679,81282
+16055,12151
+16056,7410,1298,73936,20188,50496,24688,33740,68749,5147
+16057,70576
+16058,24199,76025,5171,23106,21592,40321
+16059,5106,39283,66741,65227,17083,65725,47806
+16060,60328,56190,71262,4275,10957,73534,31286,41543
+16061,73164,3772,24170,8703
+16062,78848,54819,27418,33898,22604
+16063,49889,58526,296,3702
+16064,80670
+16065,24678,39964,47236
+16066,16908,1034
+16067,80562,43193
+16068,64920,21292
+16069,74865,26696,17008
+16070,9828,20714,1473,79672
+16071,68480
+16072,47425,31527
+16073,60853,59303,28960
+16074,31131,78964,43029
+16075,10243,15065,56992,17104,16596
+16076,57645,45486,24997
+16077,31840,10224
+16078,3673,40577,3944,44605
+16079,31078,32402
+16080,75449
+16081,55987,61873,40148,22168,59114,42957
+16082,23463
+16083,9259
+16084,1741,38773
+16085,6138,17422
+16086,56668,9603,37739,53561
+16087,15500,39793,37682,39313,61311
+16088,46027
+16089,59063,38355,759,46762,20563,22006
+16090,20442,13064,25201
+16091,18591,23012,40636,34954,5574
+16092,59081,4953,46557,36695
+16093,51868
+16094,7543,75665,39439,15618
+16095,64617,40340,33324,80713
+16096,28429,13065,12763,80975
+16097,48887,60904,13749,64958,36253,38982,38436
+16098,45400,79649,67482,21249,12926,7347,19026
+16099,9915,8139,81629,31536
+16100,57410
+16101,17817,24118,42272,55240
+16102,36449
+16103,9018,70621
+16104,51755,12084,66274
+16105,35592,23626
+16106,5050,65538
+16107,1455
+16108,55481,27409
+16109,1581,66660,5234,43568
+16110,26149
+16111,33606,16835,8341
+16112,47138,42075,15510,12291,43736,2377,74068
+16113,20072,8513,29061,37010,72165,73494
+16114,38631,26687,21753,51580,67053,1273
+16115,39798,5345
+16116,20135,72970,57052
+16117,74844,80490
+16118,12187
+16119,55435,49536,22944,64459
+16120,62571,24595,1672,75334,25808,1952
+16121,73432,7934
+16122,71862
+16123,19153
+16124,39511,66742,76765,65192
+16125,51273,51331,33250
+16126,20376
+16127,21639,356,77469,45511,70596,18268
+16128,74701,61280,17391
+16129,36235
+16130,63711,22588,47545
+16131,80782,23081,77194,66887,52952
+16132,60447
+16133,75622,28603,13101,9259
+16134,44795,8727
+16135,35522,75672,37765,6420,33454
+16136,12455,42370,50044,43341,75438,64004
+16137,72580
+16138,61884
+16139,77858,76944,69499,41546
+16140,63675,29006,33182
+16141,61164
+16142,30506,55865,58798
+16143,55350,70437,36104,51895
+16144,81428,30058,72296
+16145,56090,71372,57971,27319
+16146,13043
+16147,42251
+16148,14062,77808,31283,34964,14218,80002,68884,15570
+16149,61034,1153,79919,52962
+16150,12592,70560,38059
+16151,51051
+16152,9413
+16153,24100,62857
+16154,69577
+16155,74134,1432,47233,74126,18779,21573,34216
+16156,44028,24881,45906,53350
+16157,3266,8657,19413
+16158,73362,20242
+16159,70967,80986,46090,6428,45536,62680
+16160,66005,40447,19694,45673,60945,15850
+16161,16272,26689,63932,71059,47495,75432
+16162,70795,74140
+16163,75891,75433,36119
+16164,38360,73652,27640,79896,33790,76320
+16165,13069,62321,62413,17991
+16166,38951,2809
+16167,19871,76040,66268
+16168,80570
+16169,38169,38061,33559,62213,36663,38182,24955
+16170,32963,45609
+16171,82077
+16172,73391,27023,52368,42979,48026,8929,59902
+16173,8181,38413,52506
+16174,81499
+16175,81901
+16176,55128,5286,68680,43486
+16177,75781,60144,53127,55127,72296,21669
+16178,54945,30972,22392,54985,67227,8863,42043
+16179,59808,49051,16104,77182,1213,35330,41924
+16180,54504,59678,57587,59231
+16181,19389,21690,65532,41236,72564
+16182,70852
+16183,23919,24615
+16184,2750,56344,38116
+16185,37256,8900,35522
+16186,58734,49886
+16187,49559,47355,51527
+16188,60451
+16189,65833,76424,40004,74156,54867,8499,9698
+16190,13073,18478
+16191,48341,19894,68303,79663,75139
+16192,39282
+16193,51663,52869,51592
+16194,79804,79661
+16195,7867,182,81013,39858,19400,57195
+16196,41031,61683,69845,6883
+16197,18637
+16198,32535
+16199,2524,50777
+16200,2673,8754,72580,885,63396
+16201,44988,21490,36449
+16202,17448,46826,53634,57597
+16203,33557,63540,1642
+16204,21005,22312,33362,16876
+16205,78747,31255
+16206,56411,9696,78287,72873
+16207,1711,36155,18842,77545
+16208,28626,29447
+16209,34440
+16210,37565,58303,3689
+16211,12920
+16212,4303,35408,75382,32161
+16213,29624,27943,54124,2336,71343,35708
+16214,49740,80283
+16215,70505,32228
+16216,39702,58471
+16217,58899,77688,26875,66819
+16218,55769,70842,9197,67640
+16219,71506,43697,28548,48291,75499
+16220,74333,58518,71164,14975,13501,27754,33869,49448,37963
+16221,12814,58036,48496,80419,9642
+16222,28235,3946,30502,51034
+16223,2746,22446,556,44118
+16224,62049,80637,40142,74037,66044
+16225,16744,15908,75382,71203,74040
+16226,63651
+16227,30751
+16228,53116,47010
+16229,14922,26467,32415,23973,45960,29686
+16230,10655,7059,19336,56698
+16231,38015,45083,60218
+16232,40109
+16233,22538,78961,55603,9277
+16234,36969,81719,52529,41469,1930,77808,7590
+16235,67086,75880
+16236,28399,37536,4141,24674,67519,43444
+16237,62274,8727,2386,48889
+16238,63577,8218,28569,27645
+16239,31505,8374,51908
+16240,65360,31966,54054,36330,15426,18824
+16241,8945,24554,12416,29813
+16242,25170,26110,40604,3201,77757
+16243,36218,78236,38174,14945
+16244,52646,12122
+16245,53082,33400,26696,44745,9885,38535,61306
+16246,1620
+16247,28438,57122
+16248,3243,2730
+16249,54125,74222,41266,32102
+16250,51754
+16251,45229,67243
+16252,7214,42547
+16253,55316
+16254,44772,44233,28800,76036,77571,32637,16310
+16255,58450,48521,36440
+16256,53051,43323
+16257,16760,45753,21636,38552
+16258,75859,57303,79163,61517,75144,24881,45990
+16259,77645,38664,56293,23882,36910,10965
+16260,32334,71793,60150
+16261,7714,60305,67194
+16262,19776,27495,1095,14407,64964,72321
+16263,58612,49058,689
+16264,53300,56371,40539
+16265,50486,52942,10866
+16266,4276,53509,44688,34335,54950,74635
+16267,70962,64152,11026
+16268,6201
+16269,27597,19786,55706,28769
+16270,71541,39084,13422,6819,72299,35808,6515,23103,10932,41377
+16271,29233,73139,31852,41401,60721,10050
+16272,43747
+16273,34224,35494,54049
+16274,14150
+16275,74379,20391,13013,42580,48235,34831,48221,54105,686,33020
+16276,56258,57060,68188,43537,58510
+16277,58508,74528,10631,60485,3356
+16278,4227
+16279,19229,45588,4674,36165,47290
+16280,36311,58875
+16281,69695,37963,13996,15456
+16282,12910,86,12725,6812,47166,36581,14535,26621,18754
+16283,59520,45305,58002,65335,16242,6555,39143
+16284,42567
+16285,46855,80482,14615,4473
+16286,57160
+16287,25591,17062
+16288,37664,27885,78480,33514,60197,9598,38681,19913,42415,39062
+16289,450,43607
+16290,77734
+16291,35338
+16292,10174,51909,17942
+16293,33530,56861
+16294,73912,2381,50166,1511,31549,42405
+16295,63158
+16296,37415,68288,38977,79088,33500,27767,68924
+16297,51580,3815,57544,42732,56229
+16298,45471,57112,28035
+16299,78211,16231,37117,81642,44307,7076,56256,79948
+16300,28290,72706,42712,554,40812
+16301,44281,27044,70913,48871,73647,45112,50343,12642
+16302,51773,50002,54226,52174
+16303,64053,38280,37242
+16304,2793
+16305,17421,871,892,46763,80398,43739,23627
+16306,61912
+16307,53090
+16308,16525,47087
+16309,67909,69447,14184
+16310,38121
+16311,53640,49366,74263,2874
+16312,17159,45566,33611,18017,73022
+16313,47274,3914,68853,66863,42294,71400
+16314,55219,2081,24425,49394,7494
+16315,2161,61195,2545,67921
+16316,37185,43174,16352,44693,9743,62130,52072,67437
+16317,61317,48992,18621,54459,77096,47082,46350,54495,35726,66974,29937,35875
+16318,81033,31984
+16319,15976,39578,19827
+16320,18082,26791,42751,42529,38330
+16321,54412,45959
+16322,67276,42080,24839,64237,75174,67580
+16323,23121,70685,52488,33388,4450,41732
+16324,4613,80465,73901
+16325,71478,23501,31722
+16326,1821,62063,75432,63663,25533
+16327,76139,75841,4354,14393
+16328,62855,27796,44227,81837,77078,45986,57867,52386
+16329,72873,80457,39844,771,11648
+16330,10482
+16331,44037
+16332,25654,46948,8581
+16333,7039,12478,2081
+16334,23954,76419,60658,8465,61717
+16335,10479,18281,63770
+16336,51079,38095,33137,76465
+16337,75279,64490,66593,18359
+16338,26202,4624
+16339,27640,26220,81834,66664,67140,8948,42689
+16340,6437,72247
+16341,12602,19543,40205
+16342,69647,53387,62182,26215
+16343,32062,77543
+16344,8203
+16345,58581,51553,35860,73517
+16346,49252,11324,75259,19607,46042,66603,17606,66205
+16347,78972
+16348,37310,77319
+16349,74146,4181,5909
+16350,73204,41355
+16351,50302,9028,40434,21030,33708
+16352,9297,23429
+16353,38469,13990,1909,26178,27256,79699,28502,57951
+16354,1025,66564,57771,49522,8803,8550,50226
+16355,76036,41369,12793
+16356,73653,48040,19454,5211,62029,29529
+16357,15420,21363,44211,74021,40860,77665,32313,58463,24
+16358,30654,40179
+16359,59098,79378,19071,81352,23236,14327,11461
+16360,2561,57208,5732
+16361,59027
+16362,75382,46421
+16363,72425,44858,63671,5704,47138,9993
+16364,66350
+16365,68474
+16366,44143
+16367,25460
+16368,53385,49989,20674
+16369,62892,27950,17057,8842,66553
+16370,35868,37464,80523
+16371,5664,4276,30249
+16372,29332
+16373,24591
+16374,63092,14250,20107,36048,26170,15299,43200
+16375,79073,42113
+16376,25463,19708
+16377,66517
+16378,24152
+16379,3141,24850
+16380,61160,77167,47387
+16381,20015,671
+16382,41487,45209,64330
+16383,3494,61841,64930,77143,6855
+16384,34046,51159,47756,75793,50923
+16385,58353,36474,11672,59282,30915,14610,4208,57892,57294,44248
+16386,30278,24316,44518,54235
+16387,46434,41876,34068,52241,46980,19350,15970
+16388,59345,24903,27009
+16389,25100,76263,8880
+16390,28434,45405,18632,33970,22898
+16391,79941
+16392,63962,60086,19423,28120
+16393,17543,71114,8768,33922
+16394,39405,24742
+16395,58736,12330,1336,62465,14120,53738
+16396,80877
+16397,32,1249,63022,25019
+16398,78787,66422,56244
+16399,35514,77930,5925,17188,35196
+16400,6071,55931,66676,19243
+16401,8628,47007
+16402,72058,42550
+16403,55970,44695,45109,48806,62486
+16404,77802,41224,44179
+16405,2555,82056,24183
+16406,1151,59035,69603
+16407,25696,44537
+16408,71921,22390,3354,56474,79566,27450,7923
+16409,3720,82181
+16410,26108,77202,68538
+16411,58589,128
+16412,50295,11843,32880
+16413,21735,31257,42873,11916,44392
+16414,60800,14735,5075
+16415,50490,800,60365,79495,2294,54058,16047,42642,10427
+16416,37783
+16417,24075,49091,3777,9376,30945
+16418,34102,13774,46499,22488
+16419,48865,70711,34398,19153
+16420,26228,77196
+16421,15916
+16422,24410
+16423,708,70413,59433,52868
+16424,11269,82189
+16425,64991
+16426,60239,72180
+16427,33638
+16428,67850,1850,73070,69290
+16429,39128,35229,27599,77939,18899,67076,64719
+16430,61168
+16431,13935,36755,40864,64593
+16432,7991,33943,21716,69175
+16433,47632,41846,41485,74669
+16434,75464,74996,70455,12501
+16435,81750,72926,59169,35787,30486,2494,35354
+16436,67278,2825,15591,31105,23598,45119,20712,3012,52133,55237,62328
+16437,14579,75913,52648,15929,79311,20461,62267,49692,61167
+16438,66955,9508
+16439,63151,44163,77531,35344,53788
+16440,53931,46035,49828,34806
+16441,1584,7884,57146,76382,73836,73472
+16442,80050,10729,54945
+16443,37459
+16444,59963,52841,81961
+16445,66438,49763
+16446,68780
+16447,7395,58995,58045,74740,35430,2760,4309
+16448,73059,49830,58872,75615,9217,68815,71578,63940
+16449,65263
+16450,62376,59847,21891
+16451,46169,55434
+16452,58319
+16453,41053
+16454,57719,11098,9094,76264
+16455,28742
+16456,79941,66970,72590
+16457,57300,26860,39534
+16458,75865,55906
+16459,15845,56731
+16460,43390,81426,62759,31424,75081,70351,28412,48730
+16461,21795,26144,63095,43488,62295
+16462,18163,70851
+16463,63649,63866,4196
+16464,17035,49195
+16465,49351,18612,50806
+16466,18831
+16467,58769,48498,67344,80832,77388
+16468,6233,54462,42542
+16469,69534
+16470,36775
+16471,3141,39935,71792
+16472,9655,22863,30871,35225,30933,19723,40707
+16473,28622,43988,70670,58462
+16474,13292,73183,56788,4444,59621,52484
+16475,24069,15725
+16476,54556,31071,17101,5059,68724,44459
+16477,73663,81239,75169,34898,55433,2600,81566,11421
+16478,55831
+16479,56425,64857,7813,45456,66244
+16480,27331,21734,10886
+16481,62577,49893,66224,30909
+16482,18688,51363,9613
+16483,56731,62343,25710
+16484,16569
+16485,73139,47294
+16486,75499,75368,16140,66842
+16487,38717
+16488,44517,7825,16758,75358
+16489,28692,39693,65624
+16490,77470,37355,40514,58994
+16491,70162,75935,5153
+16492,55058,33352,72226,79851,80629,35052,10560,78404
+16493,3296,76583,24274,62685
+16494,31331,19265,51682,16913,65504,48629,34216
+16495,30530,73857,45201,73165
+16496,18490
+16497,64140,35965
+16498,3693
+16499,54315,24639,28872,64872
+16500,1676,73955,77240,9790
+16501,58324,50428
+16502,18518,195,17098,9698
+16503,55882,67930,52018
+16504,67479,17938,78393
+16505,10071,45947,63871,65082,24360
+16506,45695
+16507,14983,35703,46226,64459,59648,42888,68990,77023
+16508,7507,27564,37567,19423,19367
+16509,75459,15980
+16510,52966
+16511,40749,58707,76027,42027,65482
+16512,32875,62174
+16513,30608,49154,61175,39470,56640
+16514,68455,70493,75707,56794,2093,56070,33713,15535,69627,9726,44742
+16515,11709,6481,51071
+16516,19015
+16517,70297,77000,15502
+16518,37446
+16519,37812,47796,79389,67348,9217,81636,51024
+16520,40994,63172,76617
+16521,30762,20090
+16522,61374,80181,66846,78636,14413
+16523,34330,22235,22815,77914,66445
+16524,31584,49613,5296,44346,60039,14545
+16525,1284
+16526,59893,29389,73485
+16527,61696
+16528,25847,48511,17161,12313,17535
+16529,23974,38134,59817,13365,68684,21384
+16530,50263,75494,29697,57751,26677
+16531,73959
+16532,16778,64231,22818,47287,20786
+16533,74381,40841,39979,55023,67457,72769,9885,64729,75522,1374
+16534,71115,37069,19695,67619
+16535,69961,25128,43542,45468,34182,72914
+16536,81601,1876,73884
+16537,40634,69306
+16538,8380,52159,4787,80529,15175
+16539,8184,44138,8670,58446
+16540,48040,19212,30897
+16541,29576,81601
+16542,58523,55869
+16543,6816,36962,1284,26696,46833
+16544,30237
+16545,24948,17927,55783,67923
+16546,47837,47206
+16547,16469,59031,68018
+16548,78153,78600
+16549,32832,39512,45776
+16550,19420
+16551,70900
+16552,47311,71558,40225,55328,71335
+16553,32917,70685,64985
+16554,72092,5334,43073
+16555,24459,75068,28222,46335,72973,30806,14574,10440
+16556,61379,26693,16101,15840
+16557,8409,65257
+16558,32140,77798,22721,36118,76713
+16559,56368,55946,4081,25016,64790
+16560,81450,70791
+16561,63832,40984
+16562,52844,29670,49193,20367,35395
+16563,65694
+16564,36832,80679,44053
+16565,30146,31064,43788,44917
+16566,73106,33963,21989
+16567,60043,16391,45276,6300,65718,37429
+16568,76153
+16569,19399
+16570,40395
+16571,66327,12568,18673
+16572,67886
+16573,47234,56544,25232,81793,57229
+16574,5535,7048,27565,14379,57556,38705,77522
+16575,9980,69807
+16576,32491,53783,1899,55336
+16577,79013,36990
+16578,14104,32053,76838,61637,4346
+16579,56226,22256
+16580,26652,79928,5527
+16581,65276,4227
+16582,29932,49047,66266,38972,72888,21061
+16583,5378,37086,21792,33170,50439,11541,52013,55443
+16584,66583
+16585,82086
+16586,51539,60234,43994
+16587,42040
+16588,4422,30772,62888,25019,47102
+16589,71377,29600
+16590,28242,20649,45551,30969,9940,52593
+16591,51756
+16592,45229
+16593,31909
+16594,17348,40325
+16595,60924,71900,2764,62546,65667,22840,315,58763
+16596,46700,54503,37698,43797
+16597,10835,45752,43176
+16598,54261,33994,41430,8903
+16599,15195,31483,76859,44515,10783,25364,15220
+16600,47701,11848,26618,63208,67635
+16601,62198
+16602,49330
+16603,69953,17401
+16604,36749,46171,2101,6290,5127,42062,52701
+16605,63998,11117,76533,22512
+16606,34255
+16607,65725,1442,50793,16077
+16608,19075,14435
+16609,15026,66349
+16610,42593,41610
+16611,13477,36114,18711
+16612,55831
+16613,23018,57699,81292,9778,70262,28967,68347,5664,10851,66757,82126,56171,19404
+16614,73276
+16615,53252,56484,11031,25846
+16616,18635,72655,35968,80671
+16617,13604,69282,26975
+16618,3954,22756,46161,338
+16619,20226,30293,36795,65178,78741,39544
+16620,51398,61607,66121
+16621,56145
+16622,57251,76151,55162
+16623,48424,68103,53320
+16624,24622
+16625,45020
+16626,18661,37875,53044
+16627,14040
+16628,8238,4741,36091,50366,8832
+16629,19784,5658
+16630,65862,71456,21601
+16631,64381,54371,31366,16970,32875
+16632,10778,2753
+16633,18305,70623
+16634,22,29600,20282
+16635,29293,25835,56301
+16636,53991,59381,71961,32892,44943,31740
+16637,79329,70638,26833,7722,18919,1521,15016
+16638,49995,76157
+16639,3667
+16640,49140,73488,58044
+16641,71688,21604,63489,22372,65030
+16642,4042,20314,22773,64955,61508,62548,81266
+16643,68540,10134
+16644,35992,18964,7489
+16645,26728,6558,11761,21228,26445,53195,11325,7425
+16646,71715,37634,12368,38645
+16647,65066,76235,6097,23277,20167,30552,16679,23782
+16648,75986
+16649,77876,77901,1373,67349,59323,46056
+16650,10633,28763,81922,24602,20409
+16651,30853
+16652,44300,77010,42564,66054,67448
+16653,59551,78279,41517,55509
+16654,5497,32160
+16655,73060,81617,61155
+16656,68009,45486
+16657,24961,3011,81430,44475
+16658,26638,40208,69538
+16659,81111,66913,12210,41030,5917,4216,31808
+16660,78141,40690,77145,58028,74583,21807
+16661,51829,35214
+16662,12277,24690,70204,30489
+16663,32115,18646,45135,51502
+16664,520
+16665,43791,61330,27276,19757,25840,20382,26453,40240
+16666,9508
+16667,13302
+16668,2554,15558,35533
+16669,39669,67619,11992,56918,73015
+16670,30393
+16671,74978,47935,26652,15716,81562
+16672,22001,77798,26058,78108,26508,72906
+16673,68074
+16674,75879,50903,53594,26556,313,38723,64681
+16675,65391,30081,21948,58726,34754,23005,28451,43308
+16676,48027,69482,4533,56069,48383,67941
+16677,4798
+16678,50940,29639,5838,73709,2922
+16679,73571,28998
+16680,61489,56586,78811,17181,69475
+16681,76996,50261,23121,63451,70911,34720,33581
+16682,76907,71198,71331,3876,64647,53260,16591,67719,18468,20149
+16683,15848,26779,34332
+16684,5400,11994,20400,47875
+16685,65802,29129,52248
+16686,7728,40171,74655
+16687,29130,52015,20541,45041,68921,35859
+16688,71648,44796
+16689,71721,53701,24222
+16690,56671,10984,453
+16691,52965,66012,54823
+16692,57797,26107,3717
+16693,27469,17167,30916,49726,681
+16694,11373,7478,15509
+16695,63205,7668,2922
+16696,19396,10341,72709
+16697,44466,68140,44122,14083,69933,44680
+16698,39471,80486,69849
+16699,64191
+16700,65764,71722,29185
+16701,53094,70112,6412,69718,66631
+16702,35209
+16703,15823,74175,50607,27215,5175,18348,52300,18978
+16704,46048,60890,77866,12987,22246
+16705,5516,49810,3356,65935,45722,64736
+16706,34524,73060,25147
+16707,69738
+16708,52763,77119
+16709,54001,57434,14062
+16710,50749,20324
+16711,4516,8557,79408,69981,10810
+16712,7725,44838,55107,33007,71109
+16713,32418,17793,35996,36014,51107,64025
+16714,36996,18345,42113
+16715,31916
+16716,16011
+16717,7160,48158
+16718,74369
+16719,56727,40919,70061
+16720,42410,46935,37423,21907
+16721,1859
+16722,77426,17866,42807
+16723,51079,54229,19538,46351,60256,67948,42133
+16724,15263
+16725,55763,39364,27386,7344,67455,49926,81309,71455
+16726,25147,47597
+16727,16958
+16728,77399
+16729,55630,24747,22987,2093,22212
+16730,41869,29596
+16731,21038
+16732,11168,31832,67393,70587,62225,58779,36036,47042
+16733,63415,77294,8030,19597
+16734,530,45638,16861,68667,64985,49728
+16735,36477,30947
+16736,50701,9011,71152
+16737,66414,55297,30933,10915,68268,9192
+16738,79728,11557,69229,55943,52672,60282,4922
+16739,72830
+16740,65738,60516,47761,79992
+16741,56840,24313
+16742,29738,45648,32620
+16743,44617,71558,3847
+16744,8112,79697,20082,78077,9138
+16745,20186,74974,16314,13358
+16746,72362,8676,49600,57908
+16747,40744,1403,74184
+16748,24987,16138,38872,45926,26751
+16749,17820,76969,31583,28841,33720,42683,3876
+16750,58503,13910,76239,62523,35728
+16751,64067,3350,55166
+16752,72195,46492,76827,59343,71185,68269,27063,26779,70293,20857
+16753,50033,50009,8400,36956,7769,26412,37862,41227
+16754,5505,23462,18282,13140,57759,8871
+16755,24569
+16756,68111,13722,48550,8108
+16757,18166,58442,65352,23508,79984
+16758,82086
+16759,60233,883
+16760,70791,8008,75794,25723
+16761,48113,21775
+16762,71319
+16763,28051,30341,64035,29322,30877,22929,53375
+16764,75882,22336,58725
+16765,36592,73031,74739,81288,69998
+16766,34116,67845
+16767,51289,70979,54608,38189,79444,10266
+16768,76411,7077,37711,1487,63730
+16769,67005,7405,26628
+16770,62883,50556
+16771,67434,30115,66461
+16772,6544
+16773,58233,23346,64345,70046,44095,64004
+16774,3122,4038,3312,78956
+16775,24717,29865,76216,16976,69483
+16776,75261,51155
+16777,69691
+16778,27521,44714,22370,43486
+16779,8387,22732,36372
+16780,20590,46216,38710,34078
+16781,3040,23576,8137
+16782,50870,19270,2166,21043,34142,14359,59030
+16783,32332,27925,13305,66824,77445,62737
+16784,81404,74233,2031,72780
+16785,62985,8475,17092,6255,77098,11643,41934,39906
+16786,51538,71822,8790,48347
+16787,18731,45234,66041,50593,81991,56181,378
+16788,66257,67613,37034,50044,67089
+16789,81613,19687,15318,1433
+16790,63251,35722
+16791,45283,61956,8629
+16792,4473,71740
+16793,2296,56204,70184,23745,74252
+16794,33761,72626,40733,71628,74665,71495,21580
+16795,69307,59862,8974,46910,37802
+16796,62506,57979
+16797,65122,71269,37751,17453,57244
+16798,6772,18302,68974,51622,26519
+16799,77472,61427,67424,1781
+16800,45477,5703,77425
+16801,46241,21741,55972,54470,38751
+16802,65068,47523,16330,48093
+16803,49466,16666
+16804,26181,73690,52625,7196,9720
+16805,26463,17073,31222
+16806,66555
+16807,62985,71748,53808,43116,56096,80662
+16808,39814,11409,18650,24963,54937,67432,28421
+16809,64939,69228,76937,2273
+16810,14965,26296,45757,33747
+16811,73904
+16812,3356,41431,59316,49295,57942
+16813,56717,973,68337,45334,7489,44303
+16814,61193,12503,13155,10574
+16815,64553,43031,13146,42137
+16816,22234
+16817,2629
+16818,57606,43351
+16819,37318,40878,44450,10489,25977,7587,66722
+16820,4346
+16821,48711,30907,35225
+16822,63789,77912,8709,76366
+16823,34086
+16824,43720,58548,6540,75602,25414
+16825,21967,64460,19984,64678,53214,30064,60222,5360
+16826,50925,40753,5887,12151
+16827,29237,517,52721,60155,18668,17785,34396,9558,34843,51525,74662
+16828,1417,73204
+16829,66138,49386,54366,48127,52978,27766
+16830,77834,23639
+16831,45338,49248,2124,14250,61435
+16832,21703,23047,76292
+16833,32173,61289,9808
+16834,68692,21334,5157,21776
+16835,63666,2533,64405,44291,31028,55150,5718,51832
+16836,39593,71319,9866
+16837,48284,53151,30659,57801,26963,71363,35795
+16838,31300,4645,1783
+16839,25666,17392
+16840,21609,66050,81348
+16841,51023,59697,64861,50999,42338,54021
+16842,25958,73773
+16843,71824,17990
+16844,60440
+16845,73417,37428,35242
+16846,66082,6928,36403,55813,67882
+16847,14812,3395,57193,79338,8245
+16848,33760,35444
+16849,26605
+16850,52037
+16851,23613,56021,72590
+16852,73358
+16853,61034,75543,35331
+16854,71533,63965,35722,10373,28842,27690,12189
+16855,29578,75717,12834,23800,41165
+16856,49198,25953,73096
+16857,70367,58798,33715
+16858,71835,82000,6204,78985
+16859,76020,75618
+16860,69423,28165
+16861,39361
+16862,68923
+16863,33335,47075,73044,9740,26913,4639,51288
+16864,63282,37285,31218
+16865,25167,47988,47195
+16866,18264,30163,73679,18172,69993,55085
+16867,70923,27576,78772,39469
+16868,20212,52386,13533,42115,77766
+16869,28848
+16870,37389
+16871,49113,20516
+16872,81497,81837,11362,22232,71960,9089
+16873,43469,60692,60571,29883,17275,77990,27856,6423,22591
+16874,46583,55304,27261,22282,64774
+16875,80687,22328,39118,54780,45696
+16876,42237,27523
+16877,16284,29597,44209
+16878,5226
+16879,42483,59182
+16880,64835
+16881,27457,54083,72780
+16882,65192,4960
+16883,28806,37488,80853,15455
+16884,75682,28037,18611
+16885,48228,63672,40367,50757,61809,20733
+16886,68059,21221
+16887,34057,25717,6851,34082,30012,5824,42786
+16888,5562
+16889,56877,68461
+16890,43748,71862,48842
+16891,23344,48622,69965,26807
+16892,27997,48784,53598,24115,23621
+16893,74062,71180
+16894,55325
+16895,54829
+16896,53408,6810,75208,67535
+16897,53316,34815,37045
+16898,32273
+16899,25410,80721,54394
+16900,12963,34535,8148,56760,5415,79989
+16901,62072,70487,52397,35949,15147,72230
+16902,50431,72861,44420,58042,81416,38955
+16903,61828
+16904,31498
+16905,58821
+16906,34923,70407,50333,80576
+16907,32548,77512,80779,4911
+16908,74233,11322
+16909,30217
+16910,73588,79246
+16911,81016
+16912,9073
+16913,39072,14476,3746,9482
+16914,69783,37562,56138,71472
+16915,67624,15431,46893,55868
+16916,77333,40026,50275,12771,43582,26556
+16917,6661,11637,42355,19338
+16918,40347,4824,26582,20727,16349
+16919,45226,57304,61287,27743
+16920,57689,46790,40135,16281
+16921,57788,60274
+16922,54933,21906,29665
+16923,67976,17272,6033,29132,73224
+16924,63711,29628,75130,3717
+16925,8896,10966,63670,41974
+16926,42455,54069,41395,68874,21533
+16927,68008,46057,68361
+16928,23412,24649,51671
+16929,55732,41392,31524,31543
+16930,47403,69532,47717,5407
+16931,51539,50648,59929,39431
+16932,7670,67451,29797
+16933,21768,3993
+16934,23678,11014
+16935,30449,67915,79180,29969,44905,36477,64059
+16936,22110,11456,29891,43021
+16937,10723,77316
+16938,24690
+16939,50120,64538
+16940,76075,61020,24745,47545,27573,49360,26195,43192,11858,6216
+16941,12176,2001,59178,57365
+16942,8764,11146
+16943,61655
+16944,46727,50508
+16945,10123
+16946,49696,16603,77069,17474,2848,12740,70927
+16947,46692,29085
+16948,64024,58535,69278,82013
+16949,65915,34997,47646,30381,74501,5343,38087,69514
+16950,68101,18028,69634,79314,9594,81027,7544,77831
+16951,25730,24246
+16952,23750
+16953,1967,51215
+16954,910,61267,17191,16778,80895
+16955,17347,11679,25550,70212,25641,49891,18744
+16956,32182
+16957,52420
+16958,69105
+16959,24273,70907,48870
+16960,24366,31955
+16961,36490,25584
+16962,18258,70190,1141,45823,48145,40865
+16963,71791,12349
+16964,28267,20887,58689,70251,18324,10861
+16965,48275,78770,21243,35329
+16966,30492,20931,44088,20712
+16967,385,30183,63625
+16968,15346,74409,62275,1462
+16969,27305,4712
+16970,2734,76917,33638
+16971,2784,61308,22396,67509,68001,34761
+16972,67653,12388,41473,54249,54113
+16973,79420
+16974,73026,20583,26440,53417,57265
+16975,16051,30724
+16976,49598,430,74956,65937
+16977,57602,47926,54475,78360,55280,46608,31243,7476,48262
+16978,28376,903,72071
+16979,2905,47012,40422,78273
+16980,41401,71236,23247,55638
+16981,63479,53796,72219
+16982,17517,42252,52116,8832,14429
+16983,34141,18812,67321
+16984,11489,19093,61541,4017
+16985,26000,74687
+16986,17220,1797,7134
+16987,18165,22318,74355,30458
+16988,9555,65519,38059,18450
+16989,10043
+16990,3078,9163,57934,74629,30699,55725,59648,68916,53945
+16991,18920,3412
+16992,69169,12114,61582,33659,68907,33275,29360,60660,33223
+16993,4514,9928,37353,46310
+16994,49138,51539,61331,35103
+16995,52101,32667,63110,25938,1129
+16996,69019,73306,29357,49396,63662
+16997,64387,2127,54545,79013
+16998,18219,76613,21904,51660,59028,39320,29425,78255
+16999,51539
+17000,29521,7257,71650,60599,52829,29597
+17001,17967
+17002,4743
+17003,37218,70821
+17004,21964,71670,71110,77682,38118
+17005,50063,4767
+17006,71384,11906,46169,30476,43872
+17007,68266,76076,59821
+17008,9252,77010
+17009,50547,47971,42320,56485,55826
+17010,31645,79149,1261,18361
+17011,38360,73061
+17012,16500,10178,70796,9566,22072,18670,37970,69626
+17013,14957,58208,37048
+17014,23100,30302,73143
+17015,48461,57874,16516,31194,30503,27593,79959,53349,41893
+17016,71528
+17017,70554,20420,7585,48937
+17018,43237,52816,10314,11005,17211,43818,26654
+17019,20735,37221,76947
+17020,27457
+17021,54136,80602,35353,47424
+17022,37696,62953,25405,18784
+17023,69227,81905,67942,7356
+17024,45564
+17025,12044,20701,55325,69225,80282,56455,26606,2371,1095
+17026,41492
+17027,27127,19166
+17028,21873
+17029,33410
+17030,27008,47154,69871,62139,33097
+17031,71682,8349,57184,36707,23821,16587,39218
+17032,37756,73600,28435,23504
+17033,63120,77325,54480
+17034,70883,29860,31000,57689,57724
+17035,71486
+17036,66634,864,25582,50591,50685,47227,69225,18502,36697,39840,34740
+17037,37787,39213,24241,28176,78293
+17038,51777
+17039,24877,42875,48364,19950
+17040,52625,50112
+17041,63148,36487,21099,66821,44128,55682
+17042,78889,78795,42168
+17043,68131
+17044,64781,27660
+17045,69973,81708,32417
+17046,76690,13077,75746
+17047,51495,2000,60585
+17048,49135,33329,72823,81461,5616
+17049,74521,52117,72662
+17050,48411
+17051,60195,68306,4269,8042,23744
+17052,20453,36288,74364,4666,36688,60233,80902,3399,43178,67032,72761,75849
+17053,27398,3302,72615,72835
+17054,56140,15658
+17055,51944,74490
+17056,80379,39130
+17057,36267,44260
+17058,12068,55033,17447,76731,51686,76482
+17059,50918,31220,80991,4922,40189,69399,43700,19337
+17060,81397
+17061,5176,2764,20312,82081,53447,76446,71510,9761,15517,35211
+17062,10608,8913
+17063,30012,61598
+17064,730
+17065,72733
+17066,24817,17093,43773
+17067,34380,13958,45670,25733,76461
+17068,48571,30535,75185,39271,41735
+17069,8179,46509,28741,9026
+17070,79070,76654,44924
+17071,74481,61963
+17072,43581,42970,7165,67222,33890,74375
+17073,18714,50861
+17074,6038
+17075,59483,35337,20265
+17076,40460,10808,60930,417
+17077,30618,5269,527
+17078,38526,23233,71921,62129,43675,81545,35895
+17079,56779,47131,54768,45248,70700
+17080,56840,25493
+17081,38734
+17082,950
+17083,56543,49116,44402
+17084,28894,32635,55070,43100,47541,34849
+17085,77550,74710,31960,47239,4046,72067,21799
+17086,29754,46420,49518,14313
+17087,64023,36695
+17088,9479,67446,61770,59445,16529,64931,79233
+17089,29402
+17090,8688,67509
+17091,79903
+17092,50262,20140,35728
+17093,56350,36138,53081
+17094,26016
+17095,57995,65389,49631,15166
+17096,59770,55916,37879,32474
+17097,32280,79757,35120,73138,13396
+17098,52106
+17099,30426,11076,37536,9111,8721,70128
+17100,18865,68961,12126,11626,20642
+17101,24991,66524
+17102,23935,3547,39930
+17103,67238,17391,77848,59414,77236
+17104,6460,62851
+17105,11074,17450,48185,32997
+17106,27501
+17107,23757,79713
+17108,25623
+17109,20361,22531
+17110,33787,24096,43687,28756
+17111,9515,31702,57291
+17112,13398,78341,918
+17113,30499,62390,54977,29787
+17114,62590,25321,3847,44483,66251,41787,53772,12262
+17115,7991,24796,32773,36362
+17116,45396,47819,6938
+17117,76964,68927
+17118,42045,9635,77231,19459,27938
+17119,65929
+17120,16423,65444,81425,45083,51350,70683,4587,24752
+17121,26300,74409,44159,33668,23696,63861,80885,25793
+17122,23035,57584,59705
+17123,66595,50895
+17124,30528,45096,22667,52584
+17125,72580,7225,16037
+17126,12435
+17127,13311,45729,33168,57238,45694,58890,14313,17608
+17128,81690
+17129,68322,18122
+17130,74665
+17131,20780
+17132,42023,20902,50876,26556,35335,20330,41003
+17133,50585,21748,60730,5005,72874,71217,65293,21502
+17134,78362,27563,14673,63925
+17135,12046,45675,67593,77039,2206,80858,21619
+17136,79123,8191,13149,69049,37536
+17137,59256,50673,270
+17138,41331,57639,48223,15805,79098,63061
+17139,49549,77504,12616
+17140,56896,69648,36783
+17141,81985,7808
+17142,71028,41929,44369,31361
+17143,71549
+17144,42833,77290
+17145,9132,37562,14564
+17146,9334,44656,16677
+17147,22683,53759,69418
+17148,2116,36378,56755,66675,32061,27362,48745,14181
+17149,60687,14724,26626,26776,13552
+17150,66069,49790,61704,43959,63895
+17151,73621,10421,29933
+17152,35358,56020,65011,37126
+17153,76234,23513
+17154,2149
+17155,71144,60698
+17156,43986,17745,49664,65724,9055,35867
+17157,76454,52728,64795,75067
+17158,47989,82086
+17159,44156
+17160,21736,67424,67074,4155
+17161,38819,35254,25508,38706,64648
+17162,32884,5295,37447,5258,53890,29426,71585,13653,40780
+17163,21417
+17164,2431,66586
+17165,61103,64745
+17166,11662
+17167,30913,28452,59449,34824,37767
+17168,29812,49015,36708,12331
+17169,5267,74576
+17170,862,33282,63715,33444
+17171,40506
+17172,23301,50288,60218,79136
+17173,33560,38026
+17174,13444,59853,66993,77982,58553
+17175,79126,74576,40471,42187
+17176,16908
+17177,32285,8313,41156,15822,70401,6960,37964,79154
+17178,19628,33432,43905,74943,54105
+17179,47515,77196,57469,30052
+17180,68039,11592
+17181,16903
+17182,4808,73021,20587
+17183,71140
+17184,18558,32021,28188
+17185,2539,17216,42779,43234,49671
+17186,48208,66307,60924,22912
+17187,10055,73216,45237,58312,42523
+17188,23266,36714
+17189,77323,7890,37969,67403
+17190,12362
+17191,74602,68140,72114
+17192,38908,44827,40663,9273,48944,66347,15352,70705,23108,6246
+17193,62305,53032,25873,71567,68165,42827
+17194,78942
+17195,61900,32493
+17196,54690,66845,24682,18606,14391
+17197,74741
+17198,9986,52391
+17199,39763
+17200,52414,36531
+17201,59027,47055,53622
+17202,17772,30473,60253,8629,28387
+17203,10770,26149,41799
+17204,75198,35918
+17205,48706,21789,23186
+17206,44209,79837,57018,70248,42388,24413
+17207,75569,50444
+17208,40171,13175,33887,42648
+17209,66483
+17210,41104,76108,52924
+17211,73302,56331,23267,19824
+17212,50532
+17213,56311,12790,78940,16772
+17214,15499,23107
+17215,79354,38002
+17216,48864,35316
+17217,27684,63548,70104
+17218,42198,33418,38961,40573
+17219,27977,67526,27422
+17220,39209,24069,14222
+17221,11649,47883,46510
+17222,43924,1607,77795,48532,11427,9962
+17223,73670,64779,28994,40965,25599,31498,44577,48567,33278
+17224,55049
+17225,21700,70130,60989,31608,58555,80083,76755,59147,76842,47802,4358,10477
+17226,45031,10905,75729,24957,70526,383
+17227,9137,20701,81376,73770,57221
+17228,12982
+17229,76020
+17230,60708,12191,17895
+17231,2574,32096,20993,10044,21726,81834,45558,58973
+17232,68249,55737,39136,3327,58211,53552,62141,16448,68561,81908
+17233,58914,79982
+17234,15860,22221,76744
+17235,64059
+17236,51902
+17237,46169
+17238,69839
+17239,7008,57667
+17240,22307,79713,63916
+17241,38935,5882
+17242,25681
+17243,77356,28848,61326,6840,50559,15547,46504
+17244,8707,17535
+17245,71359
+17246,66203,35494,35965,29538,19068,49828
+17247,66198,1712
+17248,78173,73559
+17249,11712,4444,42114
+17250,30522,29171,19744,63235,36641,57952,20586,22622,69837
+17251,50755,68993
+17252,45010,66834,40482,58495,7395
+17253,50306,10932,17116,47951,17493,11308,20985,52906,4682
+17254,69939
+17255,30097,29482,51521
+17256,51869,21467,4356,41914
+17257,22405,30052,61107
+17258,41286,54537
+17259,48515,46421
+17260,25937,1311,21950
+17261,28600,15235,75099
+17262,35575,78145,7281,62897,22793,8036
+17263,36518,8180,40504,76429
+17264,4671,18155,26117,32014
+17265,61588,41762,75890,17324
+17266,51204
+17267,59624,24369,66066,12234
+17268,36693,5596,73860,27586,64580
+17269,33395,30503,40651
+17270,72459,60584,62746,75737
+17271,209,24520,68921
+17272,79329,81245,31292,17700
+17273,9817,18854,6049
+17274,35260,12533
+17275,46524
+17276,53951,16256,12238,30642,67929,80503,79044,51106
+17277,14042
+17278,2344,27133
+17279,33825,7792
+17280,56423,68060,64038
+17281,20113,63486,44287,72545,51106
+17282,15760
+17283,62036,30703,70759,36224,55701,41430,68467
+17284,16688,8637,60837,16032,79060,34952
+17285,33003,24464,44456,6078,50343,23842
+17286,72889,918,43051
+17287,24770,48477
+17288,25163,12209,15286,8423
+17289,11281,7860,33889,13895,58075
+17290,50384,34212
+17291,14125,2184,44058
+17292,72974,74633,77198,24160,51282,28719
+17293,32811,37507,28699,31139,80869
+17294,30964,12739,55298,11863,38116
+17295,4868,9202
+17296,17278,23451,37064
+17297,47185
+17298,61273,68577,18630
+17299,41235
+17300,65890,59300,18012,9577
+17301,35575,1254,7174,25447,56722,75313,39147,6430,9844
+17302,10242,39468,40066,57158,60384,12550,26858,33586
+17303,64142
+17304,73976,64736,8903,2561,58565,10973
+17305,23171,47570,75413,73915
+17306,63621,73116,6151,73667,16379
+17307,37313,62225,81334,4096,11199,19608,50434,5285,8585,57899
+17308,46038,23342,22242,10959
+17309,40281,961
+17310,12527
+17311,71927,49970,17008,53077,47439,56240
+17312,43098,49973
+17313,64224
+17314,15074,76894,3326,80028
+17315,70678,33711,65522,8982,38965,55055,8559
+17316,30945,9278,26786,70875
+17317,62625,2344,31542
+17318,39384,55923,49721
+17319,46803,17407
+17320,23190
+17321,10038,7693,77691,71532,22078,24895,60638,68793
+17322,44763,69583
+17323,64978,75391,28595,54130
+17324,15244,1269,55076
+17325,34781
+17326,12028,15565,1805,71695,46334
+17327,49297
+17328,35419,56605,48267,7703,51676,74562,37185
+17329,65688,57498,61957
+17330,17537
+17331,48684,56343,73894
+17332,53056,32847,54573
+17333,8941,29782,15902,64485,2545,78624,30318
+17334,65372,62461
+17335,25549,70566,23084,74326,14348
+17336,62023
+17337,35175
+17338,17540,63762,81286,80702,23598
+17339,27049
+17340,65060
+17341,68225,26253
+17342,17108,50192
+17343,11107,49963,30858,55597,52218
+17344,79603,36951,43913,54155,72992,50831,31686
+17345,4420,71791,20017,63780,48715,41086
+17346,41503,55359,46543,45936,54431
+17347,830,21423,62375,50929
+17348,60396
+17349,36825,26388
+17350,467
+17351,64733
+17352,78497,74172
+17353,23807,24337,44681
+17354,46832,33791,28305,64189
+17355,44714,70169,33707,78241,46625
+17356,72329,913
+17357,6590,75380,70341,72959,30213,37110
+17358,24881,25766,2620,31218,81862,3368,4392,27600
+17359,17477,43629,65536,72851
+17360,4880
+17361,63513,46164
+17362,73268
+17363,39762
+17364,20905,46809,58614,33609
+17365,39634,17612,27280,67414,65237,60330,59191,44224,12458
+17366,59259,31531,36092,41635,15446
+17367,74605,75764,16433,1060
+17368,73527,48279,22998,9424
+17369,47294,6023,39214,32337,22055,12564,46085,66561,71529,55959,48229,49247,40729
+17370,60910,32892,73971,23716,75166,76501,39760
+17371,69462,12996,31,59246,42337,23470
+17372,38720,34354,66643,59929,69443
+17373,59370,23959,43057,2319,52289,55501
+17374,76046,32011,49951
+17375,19824,21500,3427,48598,51418,38308,29433
+17376,64411,32493
+17377,46000,40759
+17378,20299,29310,8253
+17379,13504,28496,25511
+17380,50093,17578,77921,4197,36355,27757,61744,29692
+17381,56446,80298,15205,24689,73045
+17382,4621,14995,29950,63759
+17383,64066,63066
+17384,14393,25120,16001,64772,77823,49634
+17385,52555,67989,27898,21486,15497,10787,14822,72145,80938,39471
+17386,33436,39045,1245
+17387,22605,58362,45366,52364,80662,59592,43909,30318
+17388,24256,51720,32914,20501,18022
+17389,28537,22359,3585,50477
+17390,65454,47952,11441,21232,37331,38951,13879,6131
+17391,50296,24639,17825
+17392,6728
+17393,11528,44670,79698,11272,30126,63763
+17394,53934,30023
+17395,5769,16704,26509,63612,12793
+17396,57070,54573,77191,60014,55917
+17397,49404,40473,26287,48869,72616
+17398,5395,22737,28329,12410,50473,45113,16771,75528,2420
+17399,22930,59600,52546
+17400,44743,73843
+17401,29511
+17402,46009,60506,61269
+17403,77422
+17404,70120,22794,54100
+17405,18093,28894,44971,68585,80755,46667
+17406,70159,45528,75535,2889,46295
+17407,48789
+17408,73077,48520,17002,35881,35110
+17409,77241
+17410,64000,1794,47657
+17411,51321,3031,77610,70759
+17412,35759,19842,16461,63620,79684,21858
+17413,46456,26491,23000,79599
+17414,48934,66986,40500,16922,22303,35341
+17415,26149
+17416,3463,1700,45691,67811,46335,47914,61369
+17417,45940,70706
+17418,31252
+17419,43568,2986,2235,80520,1633,16536
+17420,78481,49996,47051,76844,4330,49875,74319
+17421,9348,44692,55170,22924
+17422,57706,3384
+17423,9782,5544,32372
+17424,53856,41998,38086,17414,54040,20226,32884,58060,58225,15404,73639
+17425,12006
+17426,37680,56006,44320,29697,17964,49587,39559
+17427,44539,36154
+17428,34086
+17429,43700,24220
+17430,55831,13188,26611
+17431,76389,20951
+17432,40402,25715,267,64996
+17433,26059,4976
+17434,54361,74167
+17435,21366,23967,15589
+17436,77999,62457,67672
+17437,22531,74141,58080,12922,66356
+17438,74514,17533,26705
+17439,66096,59874,11997
+17440,33959,77458,48029,48183,28151
+17441,57745,45264,46690
+17442,9778,26068,20945
+17443,10348
+17444,11223,66991,18829,80423,18241,43193,70175,81572,25495
+17445,62567,52832,45513,19091,68966,59582
+17446,73179,3000
+17447,70938
+17448,18637,10219
+17449,54877,18201,37526,37969,69105
+17450,37195,1288
+17451,37886
+17452,35667
+17453,51610,33373
+17454,4121,79164
+17455,68944,42466,79194,3042
+17456,45924,79661,32207
+17457,45080,1989,7964
+17458,19344,34322,27345,60655,59403,8961
+17459,42233
+17460,14086,35911,54919,44288
+17461,25125,13003,78990
+17462,18397,82056,51698,54543,4516,14856,43332,50386,58296
+17463,76887
+17464,80637,81692,80655,47214
+17465,43525
+17466,48247,75515
+17467,28850,58306,77895
+17468,62054,54945,65936,3750
+17469,37067,63000
+17470,55559,76216,72955
+17471,34172,62423,18448,14355,12992,63880,55454
+17472,67757,33901,9006,78764,13587,27606,59004,66573
+17473,7946,65256,38117,81535,18977,66383,32052,60684,59546
+17474,29406,14578,4980,21264,10851,43582,28329,28185,58443
+17475,49932,77445,28014,399
+17476,61659,55183
+17477,41935
+17478,15404,9888,69999
+17479,69743,11392
+17480,41469
+17481,67177,73693,1667,27854,66785
+17482,29981,50451,31791
+17483,3072,34175,80648
+17484,11107,2979,32195,77452,79525,46664
+17485,9156,68914,75403
+17486,39322
+17487,37062,50087,21649,28592
+17488,31001,42213,57588,3851,65790
+17489,61211,24947
+17490,48227,30236,40244,57760
+17491,9283,6238,74825
+17492,49661,44507,4533,1538
+17493,38121,10626,39535,3160
+17494,42355,15677,4267
+17495,67845
+17496,25843,32970,75051,63598,54285
+17497,58080
+17498,56337,28046,51589
+17499,24948,61402,54252
+17500,21117,24120,80481,41897,7628,81440,9568,70645,37848
+17501,76846,35272,35824
+17502,58634,71620
+17503,24069,75507
+17504,77055
+17505,27110,5692,36786,10332
+17506,20601
+17507,17331,61384,55516
+17508,31312,45199,53773,51846,18305,28734
+17509,61588
+17510,19093,42601,82130
+17511,4235,30530,34761,36449,43379
+17512,22600,37166
+17513,68249,10937,82078,19204,31490
+17514,54620,60505,79456,1885
+17515,72110,41666,34633
+17516,54709
+17517,35695,17708,34149
+17518,11054,15395,7838
+17519,28803
+17520,18483
+17521,9427,29913,81360,35271
+17522,81404,48819
+17523,56244
+17524,34086,41455
+17525,25829,27779
+17526,1348,52269,56882,54961,3905,73207,59115
+17527,35361,36829,43025,24629,52979,65648,73199
+17528,72311
+17529,31949,17179,20409
+17530,14552,42270,79281,78369
+17531,66264,17740,7078,70933,8747
+17532,37930,29835
+17533,68570,61378
+17534,66595,38254
+17535,15670
+17536,71387,30582,50049,33049,60413,16673,46309,23774
+17537,29695
+17538,30110,34045,42451,3729,64144
+17539,12435,14008,15630,58643
+17540,5880,40171,30233
+17541,52104,50894,23964,31900
+17542,80666,66281
+17543,38415,22384
+17544,12971,1299,8263,79568
+17545,66301
+17546,73381,18167,18830,36650,58813,51020
+17547,63459
+17548,71650,62469,10395,32773,4423,81745
+17549,57613,18653,28031,60292,18075,47760,49381
+17550,73854,67629,21162
+17551,18235,74235,24382,8345,28148
+17552,31671,81343,12665,58406,21935,33066
+17553,67436,11994,8877,30172
+17554,63651,28420,68220,63136,78712
+17555,77322,79062,39035,11092
+17556,26560,12276,37678,79732,22510
+17557,33040,22744,13541,12102,67328
+17558,29849,30461,64091
+17559,60970,19086
+17560,1698,58835,10449,32281,34597
+17561,68728,75564,68745,74035,64656
+17562,63157,81472
+17563,59453,38867,26037
+17564,72464,7041,11075,50734,49098,51157
+17565,3463,65823,15670
+17566,66888,28060,26759,64637,26754
+17567,34208,23048
+17568,52807,27914
+17569,21504,46831
+17570,17995,11102
+17571,973,39535,77413
+17572,75939,13231,65108,12088
+17573,30872,65295,66391,6392,58343
+17574,23602
+17575,24335,39847,50197,40926,44038
+17576,27928,39611,73971
+17577,4661,76019,8138,44173,58904
+17578,36556,31129,13955,40616,69726,57508,14912,65474
+17579,71021,81851,7657,63670
+17580,47536,13882,45912,38099,3847,35272,51507,64306
+17581,9424
+17582,50450,46140
+17583,80867,41423,45066,41403
+17584,26504,23459,68184,66021
+17585,9458,50418,5667,39092,64934,1668,27989
+17586,6679,69612,23488,50500,55659
+17587,24785,25708,60840
+17588,3341,78677,53786,11683,64020
+17589,50886
+17590,58984,78140,73300,3782,12288
+17591,76941,52594,653,53384,1449,49561,64183,70697,77578,49227,18104
+17592,25014,61202,63309,77843
+17593,39658,43535,42287,35590
+17594,43607
+17595,52911,23953,80901,37923,49570
+17596,68378,4302,26964,50503
+17597,68924,63529
+17598,71850,53404,8547,1969,379
+17599,78674,27157,55453,67335,33067
+17600,44562
+17601,46785,6452
+17602,1967,16107
+17603,80944,81376,55703,61155
+17604,64949
+17605,6088
+17606,58303
+17607,42564
+17608,25544
+17609,10658,7165,69138,16604
+17610,6269
+17611,51199,6131,71267,59755
+17612,3436,35888,61990,73872
+17613,69400,75408,40460
+17614,52144,81711,75940,66375,23758
+17615,8267,68871
+17616,69109,17372,2509,5005,5699,24296,40930,6246,4477
+17617,56537
+17618,49721
+17619,56930
+17620,49761,11548,79570,29564,42207
+17621,24268,48447,28599,59227,77181,48491,66344,37022
+17622,12582,39657,48275,13671,44541,50253
+17623,50688
+17624,9349,70189,43681
+17625,48994,737,39823,80736,41307,50207,57227
+17626,29336,62544,57993
+17627,80521,69201,33884
+17628,25311,16024,53987,13648,28594
+17629,78352,13454,37529,39235,27257,17954
+17630,54191,61120
+17631,4932,13268,77535
+17632,47792,13177,19846
+17633,20187,56963
+17634,20211,38104,3689,67218,79616
+17635,51574,80988,39693
+17636,77234,74576,15632
+17637,61495,79434,74541,53030
+17638,82023,37626,14377,12954,23155,22820
+17639,11000,35464,62127,57486,35355
+17640,5734,75786,21548,19863
+17641,77710,50479,68047
+17642,32546,44224,8079,46321
+17643,19681,10621
+17644,41804,26139,66912,78623
+17645,8355,75216,826,40612
+17646,56854,29570
+17647,71561,37783
+17648,5348,80431,19462,65012,27051
+17649,11588,19294,5982,65053,43610,62356,18174,4567
+17650,70221,33444,75851,39679
+17651,75925,59469,40738,47661,64741,49489,19196,47160
+17652,81597,76743,6371,72309
+17653,21636,16137,36629,59433,78975,66796,45869,68522,21194
+17654,81654,22525
+17655,77361,42361
+17656,65669,42222,13386,36026,16463,50704,3965,73319
+17657,9820,20163,77542,58756,5238,67159,74534,29528
+17658,4640,38623,72287
+17659,55467
+17660,80490,56196,71480,13636
+17661,53740
+17662,79770,72457,1899
+17663,27171,32979
+17664,29193,6560,29833,27931
+17665,26775,3126
+17666,63166,43934,29853,63275,6452
+17667,42568,25519,30491,45809,78320
+17668,10247
+17669,64400,99
+17670,64019,36026,60965,62714
+17671,60898,46535,68776,59988,37554,5547,31338
+17672,44349,53640,72774
+17673,59249,23817,27569,62225,8228,34315
+17674,5254,17174,10396,52135,75697,35966
+17675,81836,28218,65509,63127,80339,32024,29711
+17676,38809,42355,60314
+17677,33521,9329,18488,68058
+17678,10387,24668,16307
+17679,44015,29673,1624,28235,20551,81688,7169,12929,65054
+17680,80366,26089,66082
+17681,39282
+17682,28212
+17683,78030,13318,81131,51808,15520,26849
+17684,12047,50701
+17685,3340,18212,32504,34113,38374,12182,80363,79405
+17686,60533,61343,19180,66704,7707
+17687,40226,46201
+17688,76745,6665,17336,28296,69366,56792,57056,70249,63326,29184,13071
+17689,54844,18046,25144,1589,54111,56176
+17690,22635,1835,52008,29177,53996
+17691,19845,42898,72541
+17692,43716,69488,4226,59876,59988,29167,1717,36296
+17693,79432,54981
+17694,70629,77134,6235,23289
+17695,69837,1437,14597,71098
+17696,10689
+17697,59868,46805,19924,2184,36257,54556,51157
+17698,55263,19327,47561,6477,11745
+17699,58747
+17700,3802,17958,46798,46547
+17701,68631,32205,65946,13659,32184,61768,78319
+17702,72017
+17703,59725,77648,17520
+17704,45931,62419,16124,73928,49515,58769
+17705,6515,64908,14697
+17706,54075,63376,62330
+17707,55900,26687
+17708,9986
+17709,12761,50527
+17710,47913,26155
+17711,36705,19236,8826
+17712,66797,54355,73909
+17713,51390,27141,58924,76620,57864
+17714,16421
+17715,61202,79606
+17716,72558,13366,889,26791,2059,21197
+17717,33939,24094
+17718,69314,68779,20315,57269,53790,36918,24301
+17719,18315,37416,39699
+17720,33004,71119,22258,60710,62661
+17721,1002,7248,20945
+17722,1674
+17723,17880,66218,74908,71696,41760,80734,76995,68456,66210,47715
+17724,25015,55030,36451,20262,30857,81603,37762
+17725,70623,8581
+17726,38866,1599,64957,62269,64425
+17727,26460,18122,60475,49622
+17728,57957,9904,5267,3628
+17729,68217,41489,3571,1296
+17730,81653,42326,64875,61060,66158
+17731,14115,41680
+17732,25172
+17733,15297,33684
+17734,12661,78146
+17735,79657,49352,76457,4747,82020
+17736,21925,75498,62083,17434
+17737,66548,33385,44482,78586
+17738,48369
+17739,21054
+17740,55659
+17741,45519,66380
+17742,22175,65380,37670,65929,70139,53808,14149,40414,23234,32263
+17743,75984,51682,20005,71129
+17744,2027
+17745,39877,68272
+17746,78772,31574,17300
+17747,51179,27009,41811,33057,24379
+17748,29059,73225,13664,40072,75681,1,18813
+17749,19073,20564,53112,75377,12556,48690
+17750,79544,50084
+17751,16894
+17752,53498,50777,74110,49900,5386
+17753,70711,74405,54362
+17754,41302,69504,51222,26665,65870,69895
+17755,57361
+17756,50712,44834,29229,49697,8447,4891
+17757,31227
+17758,29915,41286,81314,76901,78760,36198,64008
+17759,5246,62850,68516,14478,7938
+17760,62540,41135,56220,13783,53026
+17761,13015,36476,36048,22663,44380,41645,3034
+17762,66593,82024
+17763,51799,59976
+17764,58232
+17765,76309,54233,38965,10236
+17766,51762,45784,79798,40400,36274,25762
+17767,77544,39561
+17768,70507,6891,17154,58072,57622,67361,56410
+17769,29870,60435,55937
+17770,62526,19618
+17771,49815,38584,3448,16769,54727,77516,2163
+17772,76371,73710,49532,28094
+17773,71023,31838
+17774,13636,71368,40899,45290,31026,43525,62681
+17775,11504,51746,57364
+17776,42652,24016,11050
+17777,76395,53452,73064,35206,79874,80344,28011,42050,16020
+17778,67593,45556,70726,43620,16607,74245
+17779,26201,12072
+17780,51316,26773,41243,36111
+17781,51832,80852,740,26581,20438,34485
+17782,25958,52135,58648,53707,62805,80902,72829,28846,10693
+17783,27018,6445,43818,59881,24473
+17784,66754,43670,22212
+17785,1116,76956,17294,41491,31322,59130
+17786,483,48908
+17787,9670,78606,41951,11311,13029,5790,5473
+17788,53886,45161,65478,41754,63265
+17789,19059,34624,27153,21367,45079,34960,62778,66349,46197,52518,25475
+17790,31654,68736,57443,63210
+17791,22576,3175,17465,40127,26298,23741,47618
+17792,77924,3832
+17793,36625,75349
+17794,26678,45513
+17795,22128
+17796,24027,11735
+17797,40979,69521,54750
+17798,75049,24339,72132,67400,30021,76563
+17799,21800,50416,1400,20681,58112,28313,67093,10206
+17800,70276,73673,18363
+17801,63325,8143,69459,62272
+17802,10128
+17803,26354,49437,3486,61187,33209,48677,29021
+17804,30749
+17805,81360,58909,59680,66443,10112
+17806,14558
+17807,63387,15164
+17808,34455
+17809,11615,5893
+17810,75966,57401
+17811,66672,16836,18666
+17812,61205,26149
+17813,39571,75300,37778,39221,36096
+17814,36266,26494,23457,76705,20703,62778
+17815,30857
+17816,5119,73061
+17817,48094,38016,27777
+17818,35310,32157,8742,26728,69629
+17819,64853,10066,70767,68853,24761,52031,43713,75909,79196
+17820,33739,50088,70845
+17821,45606,39918
+17822,61588,29341,30426
+17823,37619
+17824,11741,52878
+17825,62183,37067,67253,17596
+17826,80709,67970
+17827,34434
+17828,60694,44905,3003
+17829,2734,65504
+17830,21956,25981
+17831,15363,66437,9526,68348,3845,67112,9870,46218
+17832,21387,2251,6798,72660,59794,51497
+17833,2833
+17834,9058
+17835,74288,61701,60793,26235
+17836,48912,58094
+17837,48393,75863,15841,70650
+17838,21310
+17839,35416,75271,25266
+17840,30549,69444,46658,59355
+17841,31964,18334,68470,34729,74050
+17842,46677,36167,60447,11703
+17843,38149,68002,55384,68260,63986,73683,73919
+17844,79502,45155,5946,12241
+17845,548,26392
+17846,67237,30909,19057,56536
+17847,53473,72079,12298,9097,58362,79783,9298,80069,30376,79007
+17848,57000,12151,34474,18826
+17849,68534
+17850,71059,50860,30538,71647,80012,1233,75447,67964
+17851,53625,44907,36821,7646,50484
+17852,42590,80332,81905
+17853,3827
+17854,54693,18700,73103,42301,31792,70538
+17855,4048,60615,36914,10854,48459,19243
+17856,11043,56239,59215,49330,40933
+17857,61394,28262
+17858,51006,42269,56313,43123
+17859,8072,75363,16989,80247
+17860,40802,43270,80038,16624
+17861,64259,45772,48934
+17862,45050,16333,26343,34346,67502,48095,26862
+17863,69654,73666,39270,45713,39710,70487
+17864,36311,37874,5227,41063
+17865,45439,57045
+17866,36719
+17867,39253,39822
+17868,35763,63259,73304
+17869,50819,43343
+17870,41383,76437,4779
+17871,37809,15137,36350,3326,67697,12931,24405
+17872,3438,37470
+17873,51829
+17874,52160,38221,40798,81817,66115,68882,47454,43318
+17875,75072,65688
+17876,32589
+17877,35766,37886
+17878,30811,43711,28438,67202,6370
+17879,19981,473,32170,68760,29913,12861,69361,46608
+17880,26467,59194,55832,72994,54848,34641
+17881,62163,55707
+17882,59390,39164
+17883,8939,38973,45910,75235
+17884,21612
+17885,60890,72144
+17886,13664,61296,9583,21537,29287,50222,23132,25733,44313,6687
+17887,34645,17402,46412
+17888,9677,55625,78949,66916,69772,26292
+17889,51287
+17890,2408
+17891,38390,12994,42708,11494,3305
+17892,81095,27646,15756,33743
+17893,7435,76780,56110,64550,81475
+17894,12048
+17895,49195,15060,3251
+17896,80146
+17897,52357,18325
+17898,65197,79027,9478,69488,30311,12617,21041,69717
+17899,32678
+17900,1131,78907
+17901,47870
+17902,62170
+17903,50026,73001
+17904,48244,75710,11523
+17905,39289,36083,43223,4384,24522
+17906,26749,11704,14633
+17907,8158,61226,44343
+17908,565,44787,13731,22092,30199,65454
+17909,70565
+17910,78682,3416,69418,9174
+17911,56877,40751
+17912,29447,46472,36303
+17913,12754,19617
+17914,73349,33857,52294,52529,1813,7279,79712
+17915,73000,11912,55277
+17916,1439,5659,49559
+17917,3564
+17918,23036,51051,61617,42751,46499,41829,15036,43835
+17919,27100,71650,65727
+17920,23272
+17921,54007,11673,72953,32969
+17922,19484,63422,56664
+17923,78340,35483,44146,42477,46176,18846,72671,20743
+17924,46357,18396,46521,78716,40559
+17925,4001
+17926,71087,13405,60672,35860
+17927,10598,16926
+17928,7280,59142,63807,22555,54967,55648
+17929,65650,57667,62591
+17930,24780,11311,46753
+17931,60882,80541,53010,55074,70510
+17932,56829,74056,27837,55334,81499
+17933,537,53886,42394,16610,61530,299
+17934,22444,27813
+17935,57700,30722,31735,58099
+17936,50704,68099,76274
+17937,58786,35309,73175,910
+17938,28939,74260,314
+17939,47183,27596,6591,65985
+17940,74648,16594,47661
+17941,60001,32340
+17942,3401,50063,37551
+17943,31999,55346,48071,39108,9749
+17944,74920
+17945,73740,59909,29343,62003,59207,37323
+17946,36362
+17947,77559,65697
+17948,5242,48276,1584,33946,70055
+17949,64874,27990,60850,73307,70705
+17950,47179,60056,51803,13247
+17951,59662,64742,61061
+17952,64949,756,56449
+17953,20367,49390,50052,73207,7485
+17954,5126,44240,55803
+17955,43479,16026,79999,36786,35392
+17956,33362,24634
+17957,15180
+17958,66064
+17959,4676,10505,15218,20968,62661,12594
+17960,43653,71922,337,57880,57683,61379,68361,31992,30028
+17961,20866
+17962,5174
+17963,41551,63315
+17964,8821,15174
+17965,55070,15461,75555,43863,40390
+17966,38557,41004
+17967,27577
+17968,3021
+17969,71497,5432,27454,43605,23662,20598
+17970,64199,23468
+17971,13396
+17972,40822,61137,44148,50868,77290,64613
+17973,42240,39105,26381
+17974,45942,46940,34566
+17975,41898
+17976,53954,51059,19640,78860
+17977,18082
+17978,24003,14397,75600
+17979,47295,26497,70551
+17980,55272,50116,436,59809,37578,65157,7246,66227,59725,3798
+17981,47155,28605
+17982,21858,16341,16199,73974
+17983,76054,37409,66602,6948,50633
+17984,11631,73475,32335,79649,18079,49756,69322,42564,56078,15534
+17985,7263,58325,39380,73543,79053,63297
+17986,43153,40480,46619
+17987,76162,34766,7909,392,65621,80316,71599,41765,57049,39090
+17988,25782
+17989,7320,59415,74117,45073
+17990,78349,19043,38740
+17991,20357,28364,1098,39360,21263
+17992,64959
+17993,21914,1051,12923,76337
+17994,74975
+17995,41407
+17996,32589,80177
+17997,16890,69194,50403,46,34795
+17998,38921,53741,58627,44725
+17999,59128
+18000,46489,12512,13574
+18001,56951,43975,54686,1353
+18002,52488,38766
+18003,33238,52603,64699,82123
+18004,56703
+18005,73414
+18006,77235,57762,52345,31639,74299
+18007,79024
+18008,38492,27625,35506,34773,67922,39540
+18009,15850,64453,61311,23083,44083,34418
+18010,11287,37429
+18011,53711,31831,38863
+18012,34002,3036,61922,36464,45086,36969
+18013,331,7924,10941,30498
+18014,38474
+18015,36016,63545,77906,77963
+18016,68081
+18017,21548
+18018,42034,36279
+18019,50905,6755,1744,38409,18074,27649,74760
+18020,38332,63062
+18021,51288
+18022,20108,45411,42955,42379,46662,31974,46478,63190,9708
+18023,18469
+18024,48309,29620,27283,76060
+18025,40432,5844,75428,5532
+18026,28965
+18027,51603,54938,50667,61437
+18028,36939,20052
+18029,45388,26600,17663,39783,78017,13684
+18030,50316,58388,78206,80925,20336
+18031,69333,50622,55382
+18032,81975,77228,52783
+18033,2258,40984,78634,65007
+18034,12614
+18035,31955,70055
+18036,42204,51674,53934
+18037,61226,33541,53149,26043,13486
+18038,4515,77657,67940,74271,10210
+18039,74937,4654,64651,27572,25481,20184,53060,16837,67014,27492,48625
+18040,79828,8151,12028,65277,42413,44824
+18041,21022,27074,16502,66821
+18042,16792
+18043,81316,12882,79193,51052
+18044,1572,51662
+18045,8070,51048,74556,44070,12268,76669,47191
+18046,47336,37,44787,73755,33964
+18047,70055,74012
+18048,974
+18049,78115,17545,60049
+18050,13860,27454
+18051,19544
+18052,59656,21383,58044,65109,47430
+18053,3944
+18054,13664,13839,78401
+18055,78092,75820,22518
+18056,22408,36284,54484
+18057,12447,6978,48460,15215,59548,38198
+18058,20064,8819,71801
+18059,71271,5911,47252
+18060,51067,1252,36669,34061
+18061,61269,50930,70247,74233,68546
+18062,23293,48321,41097
+18063,68116,16310
+18064,73893
+18065,76732,81972,16443,71154,3114,58413
+18066,57582,46373,75051,75078
+18067,11007,62005
+18068,33275,31838,74334,69824,25022
+18069,49323,80282
+18070,25144,79094
+18071,46650,31454
+18072,2601,62225
+18073,59521,7624,4289,13501,58897,35859
+18074,64883,35824,50696
+18075,59693,22667,54680
+18076,67706,64938,70827,77923
+18077,55134,16031,46845,55912,45702
+18078,69795,48549,79350,15007
+18079,69509,1376,20547
+18080,68707,52512
+18081,44876,75559,31845,18378,26896,16905,80747
+18082,42638
+18083,8231,63675
+18084,12418,69037,19174,81690
+18085,21363,54076,39873
+18086,26279,18641,80223
+18087,74991,34093,75869
+18088,76992,34021,35858,3519
+18089,21479,50990,13035,15035,5238,52462
+18090,78514,48429
+18091,51043,56616
+18092,57082,23004,52264,37595,54860
+18093,14675
+18094,49329,77158,29150
+18095,76191,55113,45681,71799
+18096,73535
+18097,3208
+18098,38206,14315,29418,76343
+18099,47393,72354,65249,50892,19060,58001
+18100,73790,9516,6204,23428,25240,39008,81075
+18101,70837,25416,54853,16874,52621
+18102,71822,17489,40541,4752
+18103,75243
+18104,15410,44148,69611,64000,45526
+18105,39378
+18106,27180,45124,27508,39603,56483,54039,15905,46136,24347
+18107,13043,36549,13933,58783,2389,3135,14072
+18108,51591,76537,53903,80668,81941,77408
+18109,3003,56553
+18110,47143,78153,67813,28974,44745
+18111,32982,12885,57950
+18112,64008,78595,46807,78611,46993
+18113,35643,46894,43675,47966
+18114,70978,43671,33072,33319,68076,73108
+18115,71452,8854,42041,51586
+18116,37894,65356,61439,19098,74074
+18117,36479,59401,31834,14990
+18118,48806
+18119,41888,74852,1609
+18120,23987,40240,55470,37399,11784,2826
+18121,68126,42101,51956,38874,54480,27935,25128
+18122,35116,48286
+18123,79181,68811,36828,51768,69173,5974,55665,60449,203,43187,80820,25605
+18124,68827,62535,36485,12454,66753
+18125,1408,23783
+18126,58668,15072,30265
+18127,39283,54113,8151,3024,18709
+18128,17094,16370
+18129,25847,4719,33695,1668
+18130,73377
+18131,14091,32342,18075,75402,6126,9257
+18132,35630,51357,70208,73546
+18133,44033
+18134,36317,9891,61001,3125,47425
+18135,56090,58914
+18136,12111
+18137,40601,23356,75975,21816,34537
+18138,75786,36325,2158,13144
+18139,14941,27599
+18140,63702,59078,37850,49936,13087,30845,27528
+18141,61350,19986,7685,11562
+18142,74620,56406,30986
+18143,19361,15682,59756,30649
+18144,17873
+18145,25582,50171,73098,38965,17399,21091
+18146,35692,24517,35864,13958,54297,82159
+18147,70911
+18148,69857,26434
+18149,19043,60411,37919,81783,57652
+18150,37542
+18151,890,10010,30875,73790,77816
+18152,45684
+18153,387,10634,54921
+18154,70088,38238,60281,2832,61628
+18155,59738,47830,25207,75417
+18156,4923,68498,72373
+18157,48079,20667,62052,72025,56091,6704,72762
+18158,66846,6181,67951,36668,36994,34221,14778
+18159,348,33716
+18160,35409,81711,66802
+18161,24600,80522,66132,80021,15205,6021,8085,76718
+18162,71335,81939
+18163,2944
+18164,33130,64415,53390
+18165,42486,50746
+18166,40164,57745,10264,38958,18745
+18167,69075,1894,24910,37375,28025,13586,44039
+18168,65403,10130,30060,15634
+18169,36176,30897
+18170,36806,39769,23983,10247
+18171,74727,1791,79788,13077,42642,36819,18784,34508,16411,28051
+18172,69633,17092,61510,34944,63684
+18173,81508
+18174,12761,1612
+18175,8336,36392,30724
+18176,73790,78180,4443,45671,9067,38317
+18177,56482,27377,6291
+18178,21223,63367
+18179,82079,70710
+18180,25723
+18181,13305,24502,34334
+18182,66352,50026,75810,73115,54854,81816,72744,64611
+18183,42296,32629,2548,56651
+18184,17775,20358
+18185,14253
+18186,26844,14609,59923
+18187,75338,28748,74372,69363,17222,71757,62327
+18188,19664,34222,86,56759,44893,2128,26218,60176
+18189,44903,23115,58720
+18190,53103,37390
+18191,51997,75294
+18192,78343,63561,44598,23192
+18193,26112
+18194,37706,53530,23070,42190,72194
+18195,80959,37480,57975
+18196,800,57272,73918
+18197,10394,63270,39881,41635,38281
+18198,59994,13877,80938,42645,19950,25769,4111,51320
+18199,81111,54973,10003,39767,26431,2871,6960
+18200,8934,66109,16386
+18201,49498
+18202,74830,17403,38988
+18203,80268,66874,73139,47213
+18204,34304,71762,77533
+18205,64263,68638,44754,46909,78701
+18206,71436,53910,48784,62573,47239,5498,24258
+18207,4219,14523,56340,27149,67016,41751,20858,29245,81318,2611
+18208,24534
+18209,59725,71460,8311,442,38083
+18210,48468,19424,79851,19377
+18211,77495,77520,45728,13717,5238,3796,45936,56058,78120,1011,31248,77089
+18212,76922,24117,6486,77039,77850,69929,12963
+18213,33656,72442,22482
+18214,6283,28090,13633,76675,64328,49798,40793,55644,74589,1297,71210
+18215,53947,77064
+18216,66674
+18217,5058,22119,42969,30158
+18218,44260,21417,26077
+18219,2482,30158,24850,76626,23235
+18220,77774
+18221,22157,49812
+18222,30550,82131,65751,51351,64808,15518
+18223,57906,76972,41403,71904,54635
+18224,3158,7583,36337,58765,25508,76673,57817,75583
+18225,25039,49688,26400
+18226,69242,38010,35200,63763,1036,25837
+18227,19245,43562,16443,60700
+18228,74271
+18229,5093,75081,8734,36930
+18230,67443,37295,69595,74707,14857
+18231,47255,10840,80931,47918
+18232,48031,41745,65412
+18233,59643,2162,76793
+18234,6638,79621,31804,45998,29846,26941
+18235,54471,18481,52283,53578,36219,45846,8306
+18236,49863,17279
+18237,14747
+18238,61196,705,41064
+18239,76927,25,219,78986,49116,47133
+18240,7596,66736,25751
+18241,71503
+18242,31251
+18243,73616,12022,7777
+18244,23736,33075
+18245,66610,67809,10794
+18246,52529,31831
+18247,4273,9808,2710,57225
+18248,12187,64920,32189
+18249,13913,42275
+18250,53702
+18251,38846,12811,37699,2914
+18252,78973,12643,55746
+18253,50423,65452,35096,48001
+18254,14457,57557,50938,27010
+18255,41127,42132
+18256,4079,39379,70612
+18257,73450,61951
+18258,78394,43485,80330
+18259,65931,15050,24258,64724,52058,76925,65777,34802,56003,63371,793
+18260,22182,27915,58197
+18261,13585,49808,24497,24516,25587,8435,76921
+18262,38771
+18263,30712
+18264,42466,70556
+18265,41901,54947,65489,78235
+18266,22975,34105
+18267,40728
+18268,72239,29120,29044,73594
+18269,81410,41911,51634,49390,10062
+18270,25584,30027
+18271,62714,13169
+18272,72533,10161,35141
+18273,21484,20837,81450,42109,82186,49762
+18274,80144,35351,28594,30188
+18275,1699,67581,36396
+18276,11094,75487,32924
+18277,56808,66350
+18278,69038,35617
+18279,27033,28014
+18280,52067,53666
+18281,17294
+18282,28345
+18283,53092,61035
+18284,64231,72620,46708,41866,37122,15476,47744
+18285,15266
+18286,17522,26988,60992,33557,2621
+18287,29844,8453,22505,75931,66501,66947
+18288,56758,21987,50707
+18289,57497,61757,7647,55989,9945,19743
+18290,42993,45229
+18291,21126,10787,61594,53544
+18292,3748,48063,18742
+18293,59592,15850,15323,13544,33187
+18294,14066,47870,44653,37723,69999,63570,57449
+18295,18276,3615,78272,72395,70589
+18296,65019,32711,72660
+18297,4338
+18298,56492,54850,34200
+18299,28656,40646,17029,26988,27698
+18300,12261,55149,50713,7524,4549,20270
+18301,7025,16655,5863,57534,59757
+18302,50625
+18303,74610,79268
+18304,51580,45062,71832,51195,35182,55880
+18305,24870
+18306,53116,44838,10628,33578,59687,28951
+18307,63308,20061,71175,29539,67837,19587,51327,35199
+18308,33762,72225,23972
+18309,25516,56827,28637,44042,60788,46383
+18310,76543,44730,32633
+18311,11598,20900
+18312,43383,69247
+18313,57888,28975,55121,54934,17373,61923,49099,42238,14841
+18314,73819,38236,68076,55029,51745
+18315,47818
+18316,65712,68577,27568
+18317,1121,52784,18590,43752,59929,70003,62801,8382,28885,74355
+18318,36408,53355,18925,76246,13507
+18319,13129,31507,44779,72393,27765
+18320,72619,74207,66212,71737,71106,74755,55207,16388
+18321,42237,26846,14297
+18322,6426,76078
+18323,77164,22440,31999,82160
+18324,39914,74034,26319
+18325,41100,63103
+18326,54438,36913,74952,65317
+18327,41664,7303,55556
+18328,72727,18955,17226,39536
+18329,8445
+18330,32003,39179
+18331,32826,73717,8168,26571,46168,4441,66758,26195
+18332,68546,61334
+18333,52618,4369,17634,54422,39406,64097,33801
+18334,29270,17126
+18335,73143,6024,57721,16418,37583,15861,30776
+18336,66987
+18337,16286,23749,76877,33925
+18338,52683,25034
+18339,39302,65865,60721,10746
+18340,28623,78731,28714,67118,15157,35986
+18341,45010
+18342,44167,76570,13650,46122,65469,74441
+18343,44012,58343,18191,20825
+18344,39950,80971,24917
+18345,10000,40078,44931
+18346,1889,73020,67576,37657,20314
+18347,39750
+18348,80452,35627,78423,2124,64328
+18349,47365,24875
+18350,62694,46270
+18351,55128,65889,41285,67401,2968
+18352,7431,42751,11736
+18353,5119,57909,45468
+18354,39682,12848,63398,57508
+18355,2443,53198,58008
+18356,3350,71398,19583,18868,72092,35513,57203
+18357,20565
+18358,55405,76407,19498,27499,13267
+18359,73167,71655
+18360,61712
+18361,30419,70907,18952,47682
+18362,16264,70873,65398,14124,48533,15955,34431,29361,7493,12045
+18363,46719
+18364,61658,37886,65702
+18365,5331,36229,71277,61088,35199,80224,42629,15128,51078
+18366,22514
+18367,63157,12403
+18368,520,74741
+18369,34901
+18370,12455,37079,58594,79868,39396
+18371,67351,73773,3674
+18372,61408,24557,74619,31612
+18373,49369,14564,48284,2720,6884,54440
+18374,70638,25421,8525,15755
+18375,30944,38094,74758,5900,13622,60753,4101
+18376,12993
+18377,78913,19654,80240,35678
+18378,69481
+18379,43319,61311,55947
+18380,16833,40477
+18381,11514,65054
+18382,35857,72028,44541,21127
+18383,8188,45246,41050,52552,70918,5405,79496,24051
+18384,20599,27918,66983
+18385,49692,32570
+18386,81151,11623,66306,37076
+18387,52005,75002
+18388,26924,64975,49141,38295,5991
+18389,43852
+18390,66597
+18391,12805
+18392,62355
+18393,72361,3498,27217
+18394,16391,39181,35634,18803
+18395,56596,70184
+18396,7627
+18397,28713
+18398,28237,38147
+18399,53248,42413,71120,10125
+18400,17627,42045,35952,26770,76564,19224
+18401,54327,13629
+18402,60520,53789,69410
+18403,10892,40805
+18404,44058
+18405,24769,67717,10072,40468,64934
+18406,41776,9245,37943
+18407,49833,24562,10845,68225,67574,23559,25764
+18408,58197,67847,35216
+18409,21310,37045
+18410,23839,70268,12654
+18411,37908,61659,14842
+18412,74048,54426
+18413,18503,3451,11520
+18414,10202,18431,1106,58835,72469,16081,3246,15427,24595
+18415,18134,40553,23518,20082,31355,9215,56634,70150
+18416,75333,29649,63400,57263,18814
+18417,54561,37620,48382,76032,68230,60836,76001,7088,61311
+18418,64779,57699
+18419,14535,46499,55603,47672,71220,64017
+18420,497,66899,67169,73872
+18421,30540,49423
+18422,37575
+18423,27941,59531,21066,35330,14196
+18424,30993
+18425,65871,4246,24571,72721
+18426,21796,50039,64818
+18427,73388,67043,81280,14503,47732,58091
+18428,80552,56057,29896,10682,78049
+18429,21034,61128
+18430,76060,77452
+18431,71418
+18432,78739,55504
+18433,74406,13495,50965,4248,3210,27064,22723
+18434,53267,58782,35488,16696,8406
+18435,45576,65155,25692,64154,6837,29882,77771,3928
+18436,76616,73400,68266,27774,21295
+18437,77423,7651
+18438,58774,68475,72917,72959,12390,52267
+18439,49194,40749
+18440,54534,68815,37557,50423,74692,39388,47626
+18441,6681,61398,68642
+18442,63068,70392,26175,70988
+18443,66791,46813
+18444,2781,47303
+18445,32402
+18446,8103,7878,35467,39282
+18447,32103,5100
+18448,65004,38029,72075
+18449,71804,52645,17411
+18450,61907,69767,26560,49420
+18451,66781,27033,4716,49843,66419,4109
+18452,56076,4331,50527,81774,52289,69017
+18453,41433,28461,72076,55095
+18454,77185,10729,20357
+18455,11643
+18456,58059,50058,28539,59953,21344,31912
+18457,36041,3629,68856,44266,55540
+18458,1861
+18459,26487,55094
+18460,50570,20336,82118,74108
+18461,66198,2553
+18462,11541,41514,35691
+18463,5651,24852,43691,30257,445,40792,54707,25289
+18464,76320
+18465,45573
+18466,35584,42966,59536,28599
+18467,72104,18515,8248
+18468,21152
+18469,48396
+18470,68047,19540,980
+18471,14307,25591
+18472,69754
+18473,59741
+18474,11313,40771,13105,11595,45340
+18475,81910,16170,64695,41043
+18476,22834,11709,51559
+18477,64970
+18478,25637
+18479,10186,33245,54366
+18480,56262,52511,15397,41430
+18481,40950,61167
+18482,4464,62874,45822,66819
+18483,46235
+18484,4006,50821
+18485,15232,4162
+18486,62140,44971,4886,82109,20473
+18487,50460,21029,23987,80163,22010
+18488,9304,58542,66544
+18489,13460,47511,58928
+18490,72765
+18491,23124
+18492,46172,38583,43482,27376,16471
+18493,33743,21611
+18494,71774,28283
+18495,67164,80039,39133,37758
+18496,78048,71838
+18497,28764,38527,11984,44217,36426,28559
+18498,75893
+18499,73964,3184,51440,27411
+18500,81229,48574,21877,76332,64520,47098
+18501,69168,64238,74502,51333,42460
+18502,52562,61862,54398,38158,17909
+18503,7432
+18504,4497,5663
+18505,63410,64309,25759,24863,40328,80857,17432,76092
+18506,50914,16526,36222,38412
+18507,71476,30342,61790,43366,32440,55117
+18508,33653,17295,5428
+18509,66798,71905,55238,34609,31536,31898,63083,52797,5789
+18510,15319,66751,78305,48726
+18511,73624,74240,13042,44322,25483
+18512,35611,52668,71275
+18513,401,70357,71791,7930,7474,206,78619,27275,44701
+18514,62219,4779,58238,3770,79958
+18515,77331
+18516,50494,48459
+18517,80945,7137,80631,50920,80367,2019
+18518,23573,7893
+18519,32820,68761,31554,54847,877,6883,30748
+18520,25206,8784,73783,54131,39130,33420,78554
+18521,6140,55014
+18522,33937,52778
+18523,48665,41569,74841,40087,59874
+18524,4809,79137
+18525,9634,6151,48346
+18526,11239,66151,60603,30817,57953,73351,76446
+18527,26948,69272,13470,18058
+18528,75549
+18529,37613,23204,56724,25004,12672,31704,10272,47992,48559
+18530,57773,43627,22142,64635,9217,81943,60410
+18531,62831,56099,67801
+18532,32518,77354
+18533,80984,45680,71001
+18534,63564,30289,69920,45548
+18535,82170,72379,46017,1022
+18536,68752,77787,69888,40573,61552,49145,42065
+18537,45697,54773,56489
+18538,65558
+18539,28865,22438,29060
+18540,59216,18345
+18541,75157,30733,30896
+18542,15313,66466,30445
+18543,65826,28137,65534,59955,36983
+18544,78476,66709
+18545,23954,80541,52752,55005,66388
+18546,43680,40908,11576,55458,46989
+18547,52099,43504,65552,77895
+18548,72651,62888
+18549,51629,74167
+18550,9695,12465,44835
+18551,45236,58821,72156,72636,41449
+18552,21976,26466,47576
+18553,39177
+18554,12622,8676,36246,54511,24021
+18555,52344
+18556,65094,68848
+18557,52266,78148,69382,38450,21781,71226,37358
+18558,38284
+18559,10048,67691,63860,21859
+18560,57910,72837,81753,10570,62537,77037,28267,15046,36284,34823,4568
+18561,573
+18562,68264,25401,41046,23406,77988,27427
+18563,42767,77065,25351,4958,19243
+18564,33289,10498,48322,76481,43429,8928,74848
+18565,73037,58704,24413,61384,69299
+18566,68182,24484,74485
+18567,57500,74841
+18568,3712
+18569,25900,65681,32551,42154,22589
+18570,51062,5683
+18571,18219,18708,55283,35194
+18572,48044,41310,28690
+18573,59658
+18574,52013
+18575,3459,75887,27424,35264,27053,68349
+18576,42250
+18577,44252,7250
+18578,23124
+18579,79982,25403,44790,56146,3167,32198
+18580,15772,65019
+18581,72766,71857,555
+18582,44133,30685,17624,29636,44224,44445,40671
+18583,8315,5319
+18584,52766,37735,61481,70672,67173
+18585,25125
+18586,60205
+18587,8068,49692,27864,61658
+18588,50748,33777,6459,47665,64920,2142
+18589,20306
+18590,50631,19057,24170,7370,38276,32336
+18591,19445,46592,16568,11633,39059,44573
+18592,34816,76226,59034
+18593,19501,59510,31310,78020,58501,47881,33620
+18594,22154,6128,16068,80874,3271,22985,65085
+18595,49381,38056,26096,33791,16324
+18596,25923,29574,53421,30279,66658
+18597,11609,33690
+18598,34691,12829,49178,10701,66443,23713
+18599,34127,16313,41068,69658,33871
+18600,20104,58577,41248,16903
+18601,2967,76222,44945,22147
+18602,13753,25135,44303,79306
+18603,59126,19398
+18604,18129,76266,55666
+18605,30624,75308,80879,62190,31682,2733,74603
+18606,51603,54048,17461,52446,457,20607
+18607,12081,61929,17453,58391
+18608,70547,3410,24008,8815,68350
+18609,74870,38164,49141
+18610,44884,22763,36220,1436,50233
+18611,73797
+18612,30865,49017,28197
+18613,38077
+18614,2796,46071,65871
+18615,43259,35717,68677,50730,20326,1200
+18616,43926
+18617,37254,78440,17106,31712
+18618,48037,49645,76056,70639,16697
+18619,2929,57992,20275,25514
+18620,1014,26527,34856,36090
+18621,40023,81986,44376,52135
+18622,6339,64063,34263,8661
+18623,51634,25422
+18624,38473,40587,4764,953,78369
+18625,33587,8253,55979,13330,13141,6979
+18626,77550
+18627,44319,63744
+18628,20334,77616
+18629,59825,25198,30400,46189,73532
+18630,17001,62621,8911
+18631,50722,52278,33991
+18632,52621,79452
+18633,28153,41671,73225
+18634,43011,73948,24103,81287,6250,10105
+18635,7359,51829,8353,31412
+18636,54444,52004,2468
+18637,31786
+18638,28187,31505,15324
+18639,59011,56881
+18640,13200
+18641,65802,4982,875
+18642,79007,72232,42856,58000
+18643,15230,4416,13301,75729,438
+18644,73586,52092,7789,56863
+18645,18439,9508,23575,55868
+18646,69144,77782,43897
+18647,15446,77652,38509,27218,40657,72480
+18648,31227,55895
+18649,48251,16211,10123
+18650,31970,45548,36490,74574
+18651,81626,33129,40004,68721
+18652,28072,25981,6399,27479
+18653,27441,11363,10781,25398,39896,71078,75809,48183,25778
+18654,55468,61375
+18655,28257,75700,22277
+18656,18325,66469,79851,5867
+18657,33207,59477,46658,73006,26678,41833
+18658,46079
+18659,50711,37297,40378
+18660,76832,23957,67915,29557,21946,80285,8779,43967
+18661,58958,44433,28606
+18662,59541,32323,76680
+18663,10490,49062,16057,55914,78749
+18664,10821,65774,17582,7602,12781,46664,65043,69308
+18665,49101,22176
+18666,20603,38645,63602,13398,2350
+18667,57834,14891
+18668,37029,3656,17214,53569,33482,26295,76910,79261,72041
+18669,21635
+18670,81777,67301
+18671,51507,12548
+18672,25258,7208,62882,2967
+18673,25723,63378
+18674,7170,29239,67770,79411,36724
+18675,54696,42925,50366,68739,75410
+18676,58642,52783,53656,36933,22282
+18677,78568,19747,36470,25164,46676,6513,65557
+18678,73001
+18679,37156,68882,44189,8540,31867,671
+18680,5256,25893
+18681,49609
+18682,5509,36309,43905,25514,30561,57312,69043,12772
+18683,2198,11456
+18684,28441
+18685,2984,18576,64930,61842,58592
+18686,45851
+18687,76934,40906,65709,40942
+18688,42542
+18689,31289,37929,34833
+18690,2905,17885
+18691,8789,62571,54771,11515,81513,19229
+18692,8859,50555
+18693,19426,23194,42800,12714,39221,53434
+18694,77952
+18695,32952,51982,54821,46671,80919
+18696,27765,66402,9742,21145,8364
+18697,73410,67576,299,65550
+18698,40456,42857,10751,48707,173,25820
+18699,71120,78320
+18700,29339,618,6794,53336
+18701,38210,67654,64527
+18702,41062,79334,27131,58928,48227,36511
+18703,21167
+18704,17995,33542,21561,73266,62172,48005
+18705,39334,34598
+18706,24933,81089,30393,6446,57309,81165
+18707,73097,29981,37783,498,55244
+18708,8101,69105
+18709,29982
+18710,9376,27535
+18711,57515,40682,44725
+18712,21103,72220,21261
+18713,35337
+18714,8707,54338
+18715,59496,49439
+18716,57449
+18717,6798,16140
+18718,58840,45014,56317
+18719,61520,48576,1396,3791,66766,13343,75944,4942,79337
+18720,44436,57647,11439,16808,73955,57513,4575,48037
+18721,71654,54316,14121,63146,66060
+18722,56782,34929,67790,60343,19501,41991,41158,72292,55439
+18723,24711
+18724,66868
+18725,38781,42888,45437,81,78844,27571
+18726,33037
+18727,79804,64993
+18728,7437,80050,69498
+18729,58428,50767,64043,61848,19025,69804
+18730,38058,48864,78225
+18731,65979
+18732,23973,33568
+18733,24449,60449
+18734,82138,45085,18534,24725,70202
+18735,50790,72705,49711
+18736,28661,41609
+18737,64059,1789,74741
+18738,13640,25966,81799
+18739,22498,26388,66423,56671,33292,44316
+18740,24561,17074,43623
+18741,24905,58290,18603
+18742,37487,29910,39187
+18743,5150,53601,57528,42596
+18744,71058
+18745,30126,36497,2069,11830,39637
+18746,6090
+18747,39341,60792,31976,69450,11770
+18748,56892,77795,8649,21739
+18749,71759,25240,14341,15646
+18750,81996,61706
+18751,74394,80154,60170,60867,25518,17447,21968
+18752,44685,55476
+18753,23639,16446,32017,49064,63913
+18754,31072,19420,10508
+18755,17619,14842,3943,13200,68716
+18756,37057,2475,62838,9878,70029
+18757,54781,79209
+18758,40378,30712
+18759,75943,13091,34181,81674,6002,76088,64720,73558,4064
+18760,63923,74959,48213
+18761,44449,62730,39199
+18762,33991,28261,68065,14080,30328,23798,67654,29649
+18763,80805,42786,25842
+18764,11459,10882,56422
+18765,79652,61273
+18766,33743,28283
+18767,77275,49345
+18768,76159,11134,12083,20963
+18769,8152,75586,39322,38120
+18770,64110,16578
+18771,52014,8755,46414,45681
+18772,74457
+18773,43097
+18774,53685,32039,62587,17696,5143,20751,75387,19346
+18775,7169,6677,117,12487,65842,20207,11900,72429,42639
+18776,9506
+18777,41804,640,57078
+18778,28175,43325,23700,9599,41817,55346,72943,24294
+18779,44180,74559,49395,58423,65179,947
+18780,25661,39422,22847,33715,41549,78870,62715,26843,41495
+18781,80053,18607,33831,26772,461
+18782,25759,69344
+18783,29923,50603,43154,9423
+18784,79896,54684
+18785,52202,53472,11527,64575,76964
+18786,33102,81949
+18787,21844,31367,39135,14729,68765,15828,57128,15554,79949,31925
+18788,2079,79205,11285,33974,73839,42396,51775,56087
+18789,65929,27105,30093,19113,67277,43345
+18790,79350,81997,15016,42207,5525
+18791,46766,13553,8256
+18792,37889,33997,74336,50370,25130,34671,65468
+18793,78066,14603
+18794,43748,9082,75116,81226
+18795,14658,44264,34674,41440,32640
+18796,11161,8545,81883
+18797,70732
+18798,56998,82184,68195,71498,23410
+18799,17875,13053,56632,45443,75920,76632,45970,70686,17757
+18800,47289,36087,61738
+18801,3802,81121,46873,50944
+18802,59176,40486,8030
+18803,70176,49959,23402
+18804,78023,39539,65132,13755,32059,27648,74960
+18805,55154
+18806,23875,4499,22628
+18807,43970,2732
+18808,25568,60931,15521,69788,78249,45984
+18809,31252,22939
+18810,20870,22805,33568,17282
+18811,31028,47179,44971,33360
+18812,44195,49723
+18813,24995,74074
+18814,9809
+18815,72780,28717,68247,24807,40688,40900
+18816,25251
+18817,74756
+18818,80483
+18819,65469,79155,15521,62202,22154
+18820,18447,3323,11506,53786,72747
+18821,31725,9439
+18822,40774,51096
+18823,25916,23104,15918
+18824,70104,13589
+18825,45470,8989,20732
+18826,12532
+18827,67625
+18828,39515
+18829,78196
+18830,27085,49229,2718,65002,22344
+18831,38907,61715
+18832,70862,34132,76917,98,18687,13212,7317
+18833,10207,7045
+18834,12286,59423
+18835,76462,3009,42921,54410
+18836,380,54604,62036,52418
+18837,64530,13838,4134,48110,79900,26015,46541
+18838,38455,51777,53789
+18839,38724,4103,64174,29052
+18840,28891,75968,64185,34239,59182,81436,73751,39014
+18841,75471,74875
+18842,78956,69180
+18843,51880,24969,76025,33373
+18844,67552,81440,82071
+18845,63458,54266,8402,50229
+18846,25109,58515,6060,24637,62146,39478
+18847,21675,6682
+18848,18694
+18849,9866,12754,64231,54223,41441
+18850,27007
+18851,65979
+18852,46854
+18853,8339
+18854,2369,55868,35584
+18855,26541,37541,27990,51038,56918
+18856,22847,75399
+18857,4557,44773,71418,23035
+18858,52459,22091,39350
+18859,22726,77862,18455,37102,2901
+18860,81387
+18861,36985,10292,54147,19464
+18862,31188,29416,52311,77778,72926,47196
+18863,10115,79155,21261,36275,38644
+18864,42476,34216,80695,28302,43969
+18865,37610,20338,485
+18866,30018,77185
+18867,18752,48499,26844,55838
+18868,13888,59725
+18869,79628
+18870,15978
+18871,79398,47943,78938,26245,37418,53364
+18872,55371,32316,34107,40288
+18873,67183,53842,8765
+18874,41671,15845,31703,824,35399,2064
+18875,26764
+18876,36267,63806,7198,3065,25701
+18877,60703,1585,40023
+18878,17235,42542
+18879,18861,35286,49807,45671,80213
+18880,63937,63488
+18881,63903,8530,31801,63515
+18882,60725,2730,71251,80530
+18883,53880,62446,79372,45604,3840
+18884,13865,11598
+18885,52955
+18886,62754,65793,7627,9447
+18887,30903,866
+18888,68812,33508,74454,59824
+18889,29276,30755,24433,20528,33374,30362
+18890,61845,25805,52045
+18891,40392,38338,24080,46926
+18892,28498,48857
+18893,75676,23081,30677,54882,21203,81580
+18894,17497,70581
+18895,20265,79833,3289,73872,11456,18162
+18896,69099,18450,27274,1710,18518,80208
+18897,56759,9618,76331,39769,71136
+18898,18069,41122
+18899,7285,75578,64575,17194,70303
+18900,67666,49746,18021,72843,65624,61664,47477,41119
+18901,4948,77046,49518
+18902,73993,13191,59010
+18903,60396,79352,5113
+18904,35690
+18905,37908,297,42561
+18906,52432,57227,44443,6364,81106,16124,37266
+18907,25078,69687,8733
+18908,24391,67171,64910,78653,70450,64794,27813,62117
+18909,74975,3377,60374,62083,26689,80011,16447
+18910,67601,1975,56444,74208
+18911,64989,27733,35630,7740
+18912,61351,11413,44569,73691,46144,81102,29004
+18913,4456
+18914,65123
+18915,4748,54582,67098,39446,6106,67600,67024,28050,33307
+18916,42943,61616,37893,10446
+18917,71984,65257,18612
+18918,72012,41353,18977,17423,23965
+18919,64872,48450,7670
+18920,55401
+18921,80458
+18922,55284,81168,74765
+18923,36264,54627,49379,49218,70404,67256
+18924,61718,20453,80332
+18925,61142,43877,80741,13487,81473
+18926,48295,8339,81941,68143,15059
+18927,76658,45969,46122,74163,54899
+18928,51829,36336,60542
+18929,42990,26851
+18930,20312,49840,17220,54723,61943,22850
+18931,64630,73720,12730,81087,65012,26104,66171,38268,45942,66081
+18932,46017,55623
+18933,38439,34260
+18934,75619,12914,49256,28017,50771,3151
+18935,42304,58821,15163,37862,10177,12885,56747
+18936,79847
+18937,54259,34704,50818
+18938,20580,24541,27238,52719,36283,46465
+18939,19986,38542,5639,10786,61022
+18940,69446,21892,12378,29126
+18941,16351,51332,64497,57250,39818,55903,54350
+18942,52649,5103,51939
+18943,78946,51734,32086,50021
+18944,26839,66558
+18945,63144,57377
+18946,68166,28411,38819,58131,45424
+18947,55924,15124,17399,77147
+18948,15299,1375
+18949,71619,66587,73682
+18950,5094,23677,1341,8876,48964,40466,76106
+18951,25414,48688,31682,34067,77300,80747
+18952,43629,50961,55473
+18953,22789
+18954,22669,23438,38188,65079
+18955,65416
+18956,4349,58943
+18957,13946,63726
+18958,65298
+18959,35270
+18960,5152,11244
+18961,24169,37114,53720,30133
+18962,80586,70865,4622,22497,51671
+18963,38874,61061,11575,49906
+18964,41116,65885,49875,58992
+18965,64930
+18966,28574,57754,60232,58956,30810,2845
+18967,24395,11125,67466
+18968,78289,81277,38370,9941,36520,1792,25426,67118
+18969,44818,78055,30337,32017,16295,20406
+18970,59962,59850,74057,52080,52259
+18971,57346,29442
+18972,3943
+18973,57159
+18974,71298
+18975,79883,76855,82043,63486
+18976,71245,69484,55786
+18977,38411,12577
+18978,25557
+18979,13886
+18980,10067,59756,80164,38911,49096,20177,3387,65087
+18981,41702
+18982,34068,19347,78037,58512,72610
+18983,30598,76075,13172,74975,29778,36457,20158,5755,44310,82123
+18984,14336,11670,26989,82147,13477,31861
+18985,56541
+18986,61719,9194,31990,68773,64974,50956
+18987,59679,27403,29732,37092,32157
+18988,65742,55388,52697,45499,45679,53808,33440,8079,40520,62341,21145
+18989,58232,37931
+18990,14706,61491,44643
+18991,17195,25447
+18992,4818,13008,58277
+18993,55279
+18994,6325,25557,48086,45800
+18995,43754,69116,13970,11500,69762,25602,40375
+18996,34423,66551,77871,45405,74873,70350,2232,32408,911,22760,11231,59730
+18997,25447,33835,25382,67336
+18998,12191,29740
+18999,10206,57184,52610,79329,65856,69470
+19000,46658
+19001,13584,71043
+19002,61713
+19003,52962,31156,42511,77623
+19004,49284,20646,30732
+19005,18202,20665,77016,27702,58725,4616,37825
+19006,74920,68233,46974,72325,66760
+19007,81857,55726,46847
+19008,5386,45948
+19009,72379,52226,65282,45830,61507
+19010,34941,54667,69292
+19011,80736,12412
+19012,9946,81469,24329,31633,76544,27084,1987
+19013,58159,40112,72918
+19014,26844,77616,76713
+19015,52137
+19016,10093,46511,66633,58292,68142
+19017,77915,37838,76964
+19018,30092,28387,81232,41670,54686,61319,38474
+19019,68987
+19020,76553,4221,66752,39604,32888,55761
+19021,74820,21649,9691
+19022,30783,30426,6642,78250,6999,28874,20574,5249,78579,39754
+19023,60594,1115,81815,11851
+19024,75802
+19025,47870,57479,50134,14790,54495
+19026,47468
+19027,25218,8699,46802
+19028,34212,19479,45479
+19029,39773,7876,14154,61465,9636,50722,65800,33550
+19030,32446,49401,59718,41220,36311
+19031,1985,25432
+19032,32571,33558,1492,66771,74562
+19033,53688,15764,60290,10026
+19034,56170,2817,78064,29301,45843
+19035,9017,28243
+19036,27231,77655
+19037,20603
+19038,67486,9555,46035
+19039,54854,22478
+19040,46677,32390,48023
+19041,77059,58001,48917,58649,43430,63884,4511,56014
+19042,61591,40020,7615,47557,43082,53434,6664
+19043,75382
+19044,31087,31010
+19045,24919,75667,44954
+19046,80038,18903,51753
+19047,55879,52097,70875,53144,21529
+19048,21122,68141
+19049,56171,36836,14182,51828
+19050,18308,65187,36964,80799,71326,20501
+19051,24903,16741,464,66687,71629,65136,38037
+19052,1278
+19053,74417,81783,33603,52169,62959
+19054,64065,43904,54765,69791
+19055,2903
+19056,8862,26414,73543
+19057,13206
+19058,25914
+19059,1582
+19060,47769,57558,69816,37506
+19061,70441
+19062,61331,54387,61465,41557,50751
+19063,4816,6277,13239,11186,11826
+19064,30081,12766,15887,39302
+19065,75643,37169,67817,71473,31620
+19066,71779,31421,22928,82000,74961
+19067,59231,68012,4718,43388
+19068,30877
+19069,51728,16767,51551,64814,36944,63844,11304,58472
+19070,28787,30432,56888
+19071,63212,49822,10870,80784
+19072,55501,38627,43098
+19073,65410,20046,57557,11545
+19074,18066,68697,56715,8242,7284,54843,39469,23033,4679,41029
+19075,41055
+19076,13519,36264
+19077,17503,36673,10936
+19078,24298,53256,80451
+19079,47367,32492,38842
+19080,5466,32119,58167,5050,9860
+19081,56566
+19082,66883,74174,8983,3142
+19083,61512
+19084,65610,25734,22024,77285
+19085,35535,6834,44983
+19086,17174,54862,47727
+19087,48288,49812
+19088,8362
+19089,32081
+19090,33370,79268,31734,33843
+19091,55154,23263
+19092,66987
+19093,24782,25066,23802,1712,58651,76709
+19094,75558,48735,74407,53719,22316,75266
+19095,25786,12126,7664,64227
+19096,60749,42006
+19097,1143,65729,49558
+19098,73226,55166,46338,26550
+19099,37619
+19100,21601
+19101,73427,29648,68510
+19102,56854,76053,50174,81171,45108
+19103,3378,47536,37345
+19104,3134,81038,65339,50747,17077
+19105,9613,23116,1424
+19106,32229,39484,60537,77746
+19107,11770,45753,55626,48598
+19108,54178,38820,65035,68153,46182,55908,75834,37856
+19109,21338,2908
+19110,33274,9808
+19111,42224,2257,79680,76917
+19112,46047
+19113,46465,71024,4373,66603
+19114,36321,24996,2604,64916,73460
+19115,16727,53565
+19116,40432,47578,42800,46848
+19117,50587,3925,38746,68244,17765,43861
+19118,25885,48207,21662,49068,13932,78780,65332,28349
+19119,31994,20642,60998
+19120,11028,63936,51843
+19121,72451,37180
+19122,80620,1455,8098,8021,57463,16500,33871
+19123,2849,26176
+19124,19204,35141,23822
+19125,80101,48158
+19126,81244,14920
+19127,2613,12581,2241,60834,36376
+19128,39379,43068,9476
+19129,60848
+19130,61525
+19131,8317,7794
+19132,44124
+19133,63862,6648,73488,58791,80311
+19134,46165,40427,48857,43536,56357,66535,22879
+19135,21355,24423,66756
+19136,3523,25507
+19137,48529,7358,48308
+19138,78425,7984
+19139,59286
+19140,42445,30872,1932,681
+19141,32418,16606,54196,39597,71316
+19142,78744,34038,30933
+19143,36408
+19144,66042,35462,71607,43831
+19145,1679,60950,77290
+19146,72598,40284
+19147,14878,70263,59724
+19148,79291,5400,29162
+19149,64960,69562
+19150,22629,74614,48576,64919,33872
+19151,32312,18616,20955,13713,60709,76676,21170
+19152,32678
+19153,3667
+19154,34315,28116,51513,59658
+19155,18628,13156,9703,33776
+19156,60214,61890
+19157,41213,17172,34436,76424
+19158,64223,35681,39498,43785,44570,12236
+19159,37445,57597,1245
+19160,61155,23289,72903
+19161,45886,65420,36691,67216,80860,1482,75530,76206,36504
+19162,10279
+19163,6224
+19164,67125,76956,49558
+19165,59229
+19166,72134
+19167,76929,8842,51287
+19168,24673,14886,1263,57853,52086,57135
+19169,35338,34158
+19170,69042,4698
+19171,55946,81808,39802,71962
+19172,53413,1582,45123,45392,39208,36905
+19173,10729,32208
+19174,57226,4826
+19175,19462,15514,43650,6508,13345,50490,53612,17934,54314
+19176,18422
+19177,19627,31049,36948,5485,6312,18160,54011,56884
+19178,53545,69411,9130
+19179,42749,38982
+19180,10917,73450,16329,35793,81396,48188,28033,8147
+19181,11189
+19182,73750
+19183,48370,12122
+19184,81112,72973
+19185,1156,26107,25998,49749,55759,31099,80211,75223,34411
+19186,12172,68348,62272,38338,67149,3940,22501
+19187,56093
+19188,74690,48498,24533,28178
+19189,79792,46041,28963,67577,15954
+19190,46270,81622
+19191,68769,1899,58251,49118,65848
+19192,63561,78576,78492,46643
+19193,53788
+19194,3109
+19195,25240,7796
+19196,35466,76664
+19197,31418,35592,67718,64000,14712
+19198,60411,44479,61362,30325,46745
+19199,60159,1432,59736
+19200,10316,33912,63724,2276,6143
+19201,63215,79783,67639,3009,81652,830,19593
+19202,3139,80651,9445,24491,18075,27644,73488,66565,2595
+19203,40848,14119,51832
+19204,68617,50545,55192,70845,74209
+19205,41712,78607,79837,48513,25414
+19206,80437,22385,47190,19208,2014,31332,80819
+19207,72419,72376,27713,66207
+19208,8131,64387
+19209,1977,65620
+19210,20425,28480,23293
+19211,77269,59524,13890,2752,40548
+19212,27693
+19213,7004,901,17536
+19214,6835,28064,11928,81931,72757,44976
+19215,47847,4376
+19216,80120,39633,64204,7124
+19217,81737,45834,9609,19308
+19218,66790,19819,23413,47391
+19219,50960,62953
+19220,48394,35708,22596,46648,5660
+19221,68815,62782,52248,51497,60900,57645,17747,56962
+19222,11327,22401,66697,77881
+19223,21516,5275,30215,54528,78017,76736
+19224,52846
+19225,61884,72482,17969,29694,67862
+19226,12616,80782
+19227,71195,41673,35358,60264,4205,353
+19228,50872,31733,29075,32002,20498,71809,15805
+19229,66947,25508,69398
+19230,11323,56486,9357,68601,44562,81199,81098,73796
+19231,7779
+19232,10279
+19233,81837,11491,80862
+19234,22141,70412
+19235,76168,54911
+19236,27212
+19237,49051,32314,1101,66033,69965,56934,52496,26260
+19238,45388,14733,9836
+19239,23839,12495
+19240,11714
+19241,71330
+19242,18330,69456
+19243,53373,53143
+19244,9634,27104
+19245,20650
+19246,63630,2649,48356,27330
+19247,15472,19060,29401,3669,38601,74874
+19248,62009
+19249,14046
+19250,41690,47313,25619,46665,44552,10583,78973
+19251,67510,71234,75617,9020,60507,51878,56140
+19252,17240,6572,4336,78220,63
+19253,60899,10093,72853,38729,54511,35755,30683
+19254,24221,10702
+19255,34953,75598,5552,920,22523,80826,48185,41686
+19256,23400,25417
+19257,16168,60501,27491
+19258,58404,801
+19259,74234,8121,75209
+19260,61189,50607
+19261,40189,6519,25381,25821,56703,57205,31430,14467
+19262,64786,17277,72288,74176
+19263,62448,71664,21992,12215
+19264,70171,41645,61842
+19265,27439,74753,65515,34670,36014,40763,64415
+19266,58506,51121,41962,72944
+19267,3194,47430,30890
+19268,64266,1031,42263,69616,40351,69187
+19269,18585,33441,79954,30310,60424,26048
+19270,54179,590,40517,38484
+19271,48208,10245
+19272,9814
+19273,2723,78975,79780
+19274,3574,24536,254,28526
+19275,73959,13699,81286,27414
+19276,14871,52278
+19277,49401,54316
+19278,38680
+19279,48703
+19280,68763,19597,47994,73668,59542
+19281,71960,9967,69939,74656
+19282,43556
+19283,21166,72194,31637,48864
+19284,72737,76364,65225
+19285,77006,60600,24430
+19286,75979,11391,18298,66839,11424,69014,70876,34153
+19287,46309,70343,2166,6872,66755,62791,69535,10058
+19288,79452,48462,57056,31932
+19289,50287,8684,64493,25698
+19290,37239,1175,23385,55927,15286,29531,63806
+19291,39883,62872,70896,21210,29603,33097
+19292,71553,4376
+19293,27136,61894,36002,18118
+19294,40928,67504,9811
+19295,8862,40078
+19296,60273,75125,67670,28728
+19297,53019,48288,38018
+19298,19651,16272,74659,27756,41379
+19299,3072,2280,3099
+19300,10539,61685,33242,20867,50108,77269
+19301,5016,69145,66597
+19302,73408,1074,3459,30435,33209,7315,16512
+19303,76088,48770,78531
+19304,64724,18731,33208,42177,72665
+19305,8885,42272,14736,64663,29356
+19306,45821,22578,38714
+19307,71334,9734
+19308,59751,72092
+19309,46471,31235,68787,34132
+19310,70837
+19311,26502,78135,13144,22525,35198,768,61471,41680,31503,1883
+19312,50740,22665,55796
+19313,34827,8660,21247,81871,25648
+19314,35845,66939,73882,47431,67006,57459
+19315,77245,67057,34924,2074,50145,2618
+19316,20870,56759,376,24102,14224
+19317,49002,81228,79965
+19318,24652,17452,16587,47619,26008
+19319,65060,54431,23171,15016,43234
+19320,6599
+19321,51553,75247
+19322,58747,46164
+19323,74208
+19324,16010,27353,54865,10669
+19325,16858,18473,3071,45376,34822
+19326,54464,8190,67348
+19327,21310
+19328,21596,47950,51244,56843,79718
+19329,58270,20029,21308,76629,16940
+19330,38779,31786,55977,23087,28094,49197
+19331,31413,22715
+19332,63486,26350,76266
+19333,20956,72354
+19334,34231,49289,59771,66212
+19335,13491,22892,76163,56045
+19336,80,24395
+19337,7183,33373,76639,52072,17627,68426,41274
+19338,65068,25212,53581,34440
+19339,63704,48515,5187,57914,1432
+19340,60565,80829
+19341,23177
+19342,10934,37742,32359,4112,1899
+19343,50038
+19344,78368
+19345,42353,44340,22226,52022,19820,52432,44887
+19346,31064,56962
+19347,43542,64769,75613,47748
+19348,42401,22504
+19349,67138,66896,13392,52454,23402
+19350,62354,67407,2031
+19351,33489,67168,76751,23303,77635,16956,66470,7019
+19352,46784,800,12236,54564,20396,58492
+19353,48192,59080
+19354,69483,33661,19398
+19355,34803,49743,75719,225
+19356,77031,5428,58390,464
+19357,45964
+19358,2099,70788,75205
+19359,50373,33410
+19360,33424
+19361,35867,19715,49610
+19362,70443
+19363,81287,56794
+19364,76082
+19365,58612,7545,33144
+19366,60177,54174,21948
+19367,78228,39818,40378
+19368,55157,45603,71650,58518,70967,50025,51165
+19369,17896,34229,81523
+19370,72222,37257,20064,21881
+19371,79291,47016
+19372,52816,58056,13023,73336,17234,10180,79311,64671,80430,9640,74109,43853
+19373,62198,48109
+19374,39384
+19375,75521,55094,34170,71271
+19376,38164,41049,64336,72624,67872,70458
+19377,24501,75468
+19378,24806,45648,53127,56384,21895
+19379,42925,46360,35466,3145
+19380,78151
+19381,67280,34767,76610,6558
+19382,63765,6269,16015
+19383,20364,7666
+19384,63123,67647,41582
+19385,64398,46140
+19386,2842,18047
+19387,81741,17209,67439,29728
+19388,50046,36437,69751,77919,66970,80741,10758,61782
+19389,13043
+19390,79285,2993,8940,75170
+19391,57286,48635,4593,79033,21259,62067,31707
+19392,3125,80437
+19393,14565
+19394,40246,81738,30997,77743,52366,27061,31570,64508
+19395,73213,53364,33768,26240,4820,15476
+19396,54105,2468,47042
+19397,61202,23949,70863,16034,46,10958
+19398,2383
+19399,44109
+19400,24672,48347,24801,42964
+19401,44580
+19402,21190,10543,75775
+19403,64637,10339,12213,66990
+19404,65692,20691,52418
+19405,45660,18598,9723
+19406,37553
+19407,54013,48549
+19408,33057,74821,6419,16971,63099,7696,59267,55101
+19409,71118,44795
+19410,19846
+19411,57978,30333,36688,24221,71245,4597
+19412,79927,32958,49602,12365,66448
+19413,12039
+19414,24078,49901,47081,72247
+19415,53599
+19416,55096,13966,44090,34569,78258,1138,76566,55873
+19417,37085,25248,50335,66917,6459
+19418,11963,17412,59000,50589,5768,12233,12421,17935,4362,44769
+19419,17604,68477
+19420,51320
+19421,74216,22744,61479,71287,68343,38973,52007
+19422,46931
+19423,61383
+19424,27473,43772,66797
+19425,68474,13830,27051
+19426,73616,67003,45588
+19427,64266,67309,4071,69096,31001,30799,74038,81396
+19428,79489
+19429,65276,60868,70131,7945
+19430,52896,19455,4082,75205,37246
+19431,48835
+19432,21803,68685,38099,9384,22688,48470,76457,16769,41709
+19433,20000,14400,23836,58149
+19434,56903,41692,50679,7983,1540,27990
+19435,79083,33807,58488
+19436,34417,23295,12112
+19437,3194,16047,19499
+19438,46837,68926,67880,14135,5947,78146,25730
+19439,25287,81421,61737,63150,49975
+19440,47515
+19441,19530,18126,70041,34576
+19442,6550,46292,22373,22403,33188,69047,28771,8875
+19443,60696,30894,43221
+19444,73149
+19445,37678
+19446,53788,48568,68340
+19447,23974,61681,21045,38671,29600,61374,67287
+19448,80799
+19449,30419
+19450,34780,20018,5716
+19451,78018,33402,44827,25067,3067,55234
+19452,16711,39561
+19453,45713
+19454,28322,58236
+19455,31068,70486,81571,6554,23156,23395,79180,55247
+19456,24208,25209,32387,40788
+19457,57091,39362,74548
+19458,11992,27678
+19459,69322,65396,23470,58341
+19460,7907,16149,7763,3585
+19461,10472
+19462,72610,51958,30567,47348
+19463,61993,68250,16566,14198,70406,25043
+19464,29959
+19465,48755,45542
+19466,5799,71031
+19467,78012,47875,69410,21576
+19468,56632,25859
+19469,32938,60796,11436,44214
+19470,78044,64078,52068,19354,3071,54183,10133
+19471,15411,35884,31721,69645,62533,67350
+19472,35174,58243,59926,33018,22182
+19473,57765,63949,54454,50563,77468,42446,66634,53456
+19474,9896,481,50821,68284
+19475,46241,20194,26206,27809,13210
+19476,3516,61017,12954,74739
+19477,35909,72451,7112,6945,30365,34878,30358
+19478,78671,24300,27656,2588,70277
+19479,42953
+19480,24452,2387,1270,63101,52932,66183
+19481,57390,25982,44756,30500,29702,67267
+19482,80398
+19483,69636,51532,14671,42670,72009
+19484,37356,80378,2503,43046
+19485,8001
+19486,36517,2970,62932,19618,33772
+19487,41309,71447,13925,8580
+19488,10760,78880,12730,16668,78376,11104,32005,1478,42057,8795
+19489,29242,80306
+19490,29397,39807,18270,33025,67784
+19491,64960,60938,71730,45780,48979
+19492,43968
+19493,48606,2931,7957
+19494,80543,58506,79542,9063
+19495,42382
+19496,28636,33435,40310,69132,5274,19946,15431
+19497,14498,37313,36914,64913,70762,11963,5568,33152
+19498,30261,20547,59703,75881
+19499,57786
+19500,72520,1651,69853,30012,40192,6143
+19501,40033,81922,45573
+19502,7497,61548,13428,4303,41437
+19503,21043,40771
+19504,67490
+19505,58855,27925,57799,51707,69106
+19506,1028
+19507,44940,53209,19861,32011
+19508,1635,20940
+19509,81864,63401,45027
+19510,13487,33638,67115
+19511,43969,21605,55944,73649
+19512,55834,76672,10975,67045,81860,43746
+19513,30437,12013,18371,44756,35720,61762,70319,13091
+19514,9078
+19515,29449,20941,4422
+19516,34856,76051,59806,40090,78471,23511,43047
+19517,79456,35499
+19518,29464,12470,22036,22046
+19519,78208,61884
+19520,25335,29051,69862,12880,77607,47818
+19521,43007,31473,40478
+19522,51472,72808
+19523,72030,50213,71422
+19524,63705,6503
+19525,18943,26282,31691,70638
+19526,13711,53813
+19527,459,25099,54426
+19528,32667
+19529,3639,9388,6591
+19530,16122,39474
+19531,65787,57469,52243,25382
+19532,46870,16594,49943,1933
+19533,38625,64710,10860,9669,60834
+19534,65365,56769,64656,24991,3867,22446,73208,4090,3798
+19535,71749,19692,11712,22046
+19536,73576,54612
+19537,27237,64532
+19538,60139,62913,46748,46719,4426
+19539,47736,81457,73901,10473,3352
+19540,20500,78321
+19541,50834,58789,47479,3772,9028,42671,69554
+19542,58778,32581,1296
+19543,41626,18835
+19544,46140
+19545,35511,48552,72990,42222,52264
+19546,4186,34090,69951,6615,1624
+19547,47007
+19548,56745,54341
+19549,1093,10195,37430,32936,81420,9773
+19550,12072,71910
+19551,52265,73344,26053,78516,65884,3471,77078,27386
+19552,6765,10020,15358,12018,21623,47985,24505,9456,73324,81234
+19553,9202,30221,35620
+19554,13413,53320,21703,64908,75093,28577,37793,44806
+19555,6069,46630,67432
+19556,52190,13688,11209,24824
+19557,27051,54659,63640,35090
+19558,35098,81498,38400
+19559,73636
+19560,6491,46590,28168,42448,69871
+19561,76263,22395,62166,59754,76102,10686
+19562,36811,64945,28872,32461,77233,43317,9458
+19563,52753,39998,78222
+19564,62023,60670,39561,60048
+19565,67489,77920,13866,50174,33706
+19566,53804,42826,2526
+19567,80950,4780,41642,20945,43898,67515,60930,6760
+19568,45048,10236,79532,20775,12464,60915
+19569,10959
+19570,58080
+19571,11892,18744,31462
+19572,72681,64603
+19573,37929,27239
+19574,46879,73185,4442
+19575,39883,33048,11542,45022,65097
+19576,9451,61190,7622,14019
+19577,49959,5292
+19578,48675
+19579,4154
+19580,228,29769,22440,11131,660,77914,66189,52560
+19581,48953,31598,43796,22460,40218
+19582,18330
+19583,15786,33280,51188,55913
+19584,74833,31744,57059,25950
+19585,73871,39285,29099,51510
+19586,15630,75222,52288
+19587,24689,36915,59977
+19588,22425,16904,32580
+19589,754,71070
+19590,42928,31866,25106,53247,55493
+19591,40753,61114
+19592,48105,52648,47217,49140,71023
+19593,56485
+19594,19067,48858,47095,55981,27377,12742
+19595,42840,54259,39094,58452,14762
+19596,48313,39137,39872,27809,12058
+19597,32200,37229,20513
+19598,68216,76636,80395,13567,12920,74211,20397
+19599,53127,51907,28220
+19600,70754,29774
+19601,73006,81276,17940,5699,19201
+19602,62276,35017
+19603,81465,61821,44647
+19604,26902,58235,15094,73790,2500,78181
+19605,65673,43387
+19606,47458,69198,78034,45345,3472
+19607,78268
+19608,71500
+19609,14143,77903,31446,45743,58454
+19610,62551,64916
+19611,25806,27014,7299,59686,65688,20723,2931,39552,76629,30402,41740
+19612,38240,17089,68476,5248,66756,78723,13622
+19613,17760,27034,23114,32961,79115
+19614,75838,21876,35309
+19615,2035,66753,29306,64803,69957,48232
+19616,73917,46408,29202
+19617,54959,74180
+19618,8630,4674,16880
+19619,52164,57942,39657
+19620,36985,42502,44382,70172
+19621,28151,2944,81869,49421,17212,3752,40839
+19622,41174,16465,60575,65418,43,4463,14046,15173
+19623,19173,10096,30610,78749,35078,71343
+19624,2015,32333,4975,6664,12527,49155
+19625,79625
+19626,8129,24505,67103
+19627,75495,69674,7819
+19628,39804,53353
+19629,18614
+19630,8789,14718,47862,3523
+19631,46024
+19632,51998,24267,41081
+19633,79478,22589,14755,17119,48481,24422,11407
+19634,8462,42642
+19635,1003
+19636,47667,39539,1084,32098,66968,48787,1748
+19637,59177,72969,26180
+19638,69907,39711,119
+19639,76229,5855,46766,34043,42875,74660,8152,47480
+19640,18790
+19641,50499,31601,50373,77066
+19642,51082,77838
+19643,22296,51584,26776,13555,30838,23150
+19644,27184,23811,48360,39760
+19645,1630,52763,39178,58866,18129,79021
+19646,13822
+19647,77818,81026,76252
+19648,15003,58781,24890,73289,20711,21472
+19649,39728,26430,24826,31242,53313,5306,26677,23518
+19650,37635
+19651,9417
+19652,49799,71214,76271,55402,65824,1971,48739,8742
+19653,15321,41954
+19654,59672,37301,49165,63264,5285
+19655,53981,15557,6364,7253
+19656,5443,8924,19059
+19657,55507
+19658,52249,27443,75657
+19659,79127,16714,7172
+19660,2431
+19661,54349,26920,70877,17951,42461,14936
+19662,30395,51400,50899,21060,59550,33149
+19663,62841,46317,44797,22808,22609,48293,16010
+19664,30534,26167,31167,24974,14582
+19665,20607,62367,74659
+19666,6467,18950,58392,33389,75230
+19667,71359,14445
+19668,30911,82090,28222,17754
+19669,37879,5923,40717
+19670,34641,62658,82063
+19671,81717
+19672,8729
+19673,25104,1189
+19674,59094,67535,61959
+19675,68876,36651,4006,69232
+19676,45192,80022,52992,38015,6418,67477
+19677,12412
+19678,15865,31501
+19679,6602,41027,15457
+19680,66163,1244,19762
+19681,25240
+19682,54905,18048,32541,80187,81448
+19683,33556,50373,77627,33007
+19684,58065,50489,67446,20896
+19685,37112,59233,54156
+19686,51714,6345,41185,32149,29113,67145
+19687,6148,77119
+19688,34757,12248,47640,78526
+19689,76238,1403,20521
+19690,7089,19219,50848,22384
+19691,929,79998,27356,18669,48869,1497
+19692,57729,21161,16117
+19693,55059,24019
+19694,50444,49565,32340,47504
+19695,78611
+19696,58010,17846,4845,14950,64366
+19697,78704,13405,8137,58743,63453,23028
+19698,65517,75401,78692
+19699,41152,43304
+19700,15981,43898,49292
+19701,81789
+19702,39653,51851,64047,79483,52662,36984,24761,13027
+19703,41870,39242,14844,38022
+19704,36778,32465,51973,43934,6734,33492,57239,2492,74439
+19705,37632,33823,60653,114,69652,55502,43625,21852,18209
+19706,12455
+19707,22292
+19708,31329,4025,55090
+19709,30759,39880,5734,69500,8233,45313,38660
+19710,36915,41270,72675,59669,30734,26938,36616
+19711,21125,29176,43138,70021,9345,44623,51778
+19712,8576,59822,44855
+19713,76249,70377,36834,73145,27537,31733,32105
+19714,28485,47313,28223,37303,77570,26223,32996
+19715,41835,69333
+19716,60444,7241,2589,5706,1631
+19717,69537,76974,21069,65675,16267,37047,69129,67655,81993,63530
+19718,16772,26139,34818,11318,8338
+19719,34754,64998
+19720,39714,12621,29972,65538,32952,77304,24143
+19721,78051,75134,35437,65183,42094,76920,47897
+19722,68549,58536,14934
+19723,22980
+19724,37625,57073,20121,31218
+19725,27148,65930,38267,39023,8916
+19726,13940,55102
+19727,40838,30582,47717
+19728,40506,7828,43403,72518,45020,42435,5121
+19729,72110,48956,62197
+19730,54273,7328,56044,2033,31744,65405,15569
+19731,13282,72693,48672,21112
+19732,47640,29719,68585,46957,16272
+19733,67943,48392
+19734,55030,54416,23235,3667,19167,15103
+19735,1540,75487,53239,50919,28097,29778
+19736,62417,59530
+19737,70598,31075,73939,52517
+19738,41108,65802
+19739,32637,71821,61571,39275,73032,5190,61037
+19740,57979,56695
+19741,17287,3794,64099,37309
+19742,7890,76328
+19743,19547
+19744,45448,12854,1889
+19745,53293,39218,15050,69695
+19746,71336,81585,80647
+19747,61811,10928
+19748,54738,27105
+19749,31486,76263,65774,37861,72855
+19750,33930,29969,16168,65482,56117,10814
+19751,57780,53863,11551,22700,29137,45702
+19752,44333,69808,72960,4928
+19753,32654,42097,64276
+19754,35956
+19755,31342,74040
+19756,60128,69385,69790,16073
+19757,26491,25788,40036,74081,50687,43008,12914
+19758,59940
+19759,72235,32068,67885,46069
+19760,61571,7358,59324
+19761,892,13881,5100,40794,32324,4365,23117,60945,8246
+19762,34499,76393
+19763,12151,50031,10844
+19764,14274,45509,51187,9521,53793
+19765,4872,5220,81727,42831,28606,3960
+19766,31201
+19767,32618,59104,30798,15944
+19768,64095,68045,68068
+19769,61828
+19770,78962,79546,25441,67485,1923,35032,78542
+19771,24063,49869,12888,42151
+19772,13640,45513,20576
+19773,50999,45434,18522
+19774,11421,28413,9237,80375,75727
+19775,61285
+19776,39882
+19777,32209,13158,50217
+19778,55240,66870,81387
+19779,81577,47659
+19780,66141,22847
+19781,35231
+19782,56081,6926,15188,15898,8923,65757,74577,15819
+19783,15374,19863,65004
+19784,14149,48161
+19785,60989,13775
+19786,18898
+19787,73413
+19788,47459,56497,68913
+19789,1437,43822,57306,35786
+19790,29488,39479,6947,55417
+19791,17295,71209,62829,57066
+19792,9552,73493,57181,14939,78302,52258,80401,4644
+19793,61726
+19794,38215,69869,9233,12281,26856,43788,57216,38311
+19795,40045,60671,7035,17404
+19796,13623,57226
+19797,57758,10625,68180
+19798,72913,50321,20905,22398
+19799,35254,25354,38913
+19800,27576,55612,22995
+19801,28630,17903,12365,52696
+19802,21549,72829
+19803,17394,43894,27248,35947,40290
+19804,78241,62904,29441,34942
+19805,12581,10718,28272,9373,23261,73382,25208,5952
+19806,35346
+19807,55000,72222
+19808,15665,35593
+19809,7693,78615,67058
+19810,71703,49879,3671
+19811,23878
+19812,3182,12417,12566,68138,62138,31211,61100,24753,21459,57570
+19813,16911,54857
+19814,73946,1689,15449,40004,24122,80257,17522
+19815,65135,64819
+19816,50115,72452
+19817,51472,56243,27377,39302
+19818,53253,21194,14351,2374,15969,10299,60598
+19819,62669,42128,66485,12453,38085,80163
+19820,56200,16751,3938,24698
+19821,37725,48025,75847,23063,4531
+19822,79697,26234
+19823,56874,77480,19092
+19824,66968
+19825,2723,20992,57799,34511,66736,77192,69825
+19826,40823,50536
+19827,5588
+19828,35244,47030,34480
+19829,148,14058
+19830,67305
+19831,52076,81609,18498,35840
+19832,27364,28023,27661,51709,65059
+19833,49341,48557,6288,76660,19593
+19834,34889,71178
+19835,7507,9904,46174,36426
+19836,69358,35248,77463,66431,78942,69289
+19837,19561,54682,6404,52281,41136
+19838,59408
+19839,60039
+19840,16471,45578,47316,43865
+19841,44070,36398,54661,7372
+19842,25076,6432,71636,19616,7321,44017
+19843,57823,60584
+19844,41395,46489,13771,30597,29673,20497,64945
+19845,79664
+19846,71422,46719
+19847,55491,73793,57866,19307,49434,27220,9576,70374,12237,53143
+19848,58849,30433,28242,77952
+19849,5057,41394,49291
+19850,59460,74499
+19851,61754,12189,32219,33628,67241,67769
+19852,3345,37619,6900
+19853,39022
+19854,16817,49214,4779
+19855,34454,29254,36992,64085
+19856,61168
+19857,12701,80642
+19858,5925,58568,54609,61717,72334
+19859,73189,13864
+19860,28207,23810,24392
+19861,34100
+19862,3559
+19863,76292
+19864,50232,40612
+19865,73472,58704
+19866,62729,81227,74950,77864
+19867,18322,8756
+19868,27252,37039,81500,75831,63461,59415,66935
+19869,35640
+19870,69777,12143,73845
+19871,79720,15230,38021,77462
+19872,36280,78392,74326,50123
+19873,11684,18413,78800,9254
+19874,26748,64982,33332,921
+19875,37898,66297,46448,42290,9355
+19876,57226
+19877,25936,21036,1173,45085
+19878,15210,17939,25045,67486,47265,28528,4040
+19879,10642
+19880,6878,76309,23701
+19881,62446,62931,51977,57513
+19882,29344,17565
+19883,45117,36195,10994,6783,27474,59586,36897,38607,17092
+19884,62320,22755
+19885,26170,29526,71021,59208,4972,7063,25719,2128,75883,51944,59881,15393
+19886,29872,28111,2733,70826,55297,79184,45973
+19887,78053,9282,74379,17889
+19888,112,52210,71287,78589,37681,64426,1141,50093
+19889,61658,16878,50342,3699
+19890,58965,70315,58424
+19891,9551,17938,42709,64589
+19892,54454
+19893,18403,4620,44931,76685,13935
+19894,41032,69261,21644,61185,10434,20586
+19895,78648,48309,46421,42435
+19896,24174,50557,27940,79799,27907
+19897,27512,22664,76784,69520
+19898,78087,21386,73757,70492,3647,39216,70070,54436,41069,26826
+19899,22969
+19900,36610,22346,66140,54704
+19901,3720
+19902,32130,13600,53294,17115,79840,38054,48312
+19903,50088,26599,28120,22157,18487
+19904,47796
+19905,62973,33189,52795
+19906,33194,67364
+19907,43623,21671
+19908,11102,15732
+19909,21976,73897,17485
+19910,13573,44744,48541,27744,60536,11541,60877,30435,34759
+19911,47939,13203,62519,56389,70045,57420,58448,34384
+19912,30336,42075,39864,78357,77421,7227,72951
+19913,14559,17194
+19914,36975
+19915,38829,78906,24323,32356,17605,4373
+19916,47685,68926,50744,17622,7820,51686
+19917,6751
+19918,60652,76146,12776,73506
+19919,20500,35386,65807,63855,47331
+19920,49256,31471
+19921,27344,2950,25957,12615
+19922,6904,5467,374,55706,2426
+19923,1701,77989,12258,39245
+19924,59812,2195,58612,61070,18349
+19925,73529,12365,58471,13506
+19926,8973,62706,20758
+19927,43167,54370,26680
+19928,13690,72859,4238,78589,40429,9909,34976,39520
+19929,42498,26693,28956
+19930,66553,20617,19323,34863,14896
+19931,67963,52480
+19932,38274,79303
+19933,7328,69601
+19934,17425,54511
+19935,37493
+19936,16956
+19937,42308,68841,18985
+19938,42065,73385,65726,59851,13644,69281
+19939,60554,24864,18578,9417
+19940,68320,7040,75519
+19941,26111,40387,62989,49618
+19942,40802,8877,3869,29107
+19943,69577,15677,38725,23075,8318,3995,77367,29163
+19944,54453,39054,67156,14307,41005
+19945,23315,27163,68075,61528,42910
+19946,33486,50321
+19947,19444
+19948,45530,71254,37233
+19949,63750,35773,78807,62468,54328,42642
+19950,6780
+19951,63720,81706,1058,61893,80339,19515
+19952,38587,56988,71238,37124
+19953,76513,19070,54460,31612
+19954,33855,61655,37359
+19955,8770,58589,77062,76
+19956,56344,3557,18563,79667,42422
+19957,79775,51112,37437,78897,8646
+19958,7894,28176,7250
+19959,74985,59927,68507,10971
+19960,55305,4290,39051,49175,22173
+19961,64182,57717,2068,69270,22250,24442,7627
+19962,71663,49843,69020,49117
+19963,48202
+19964,11963,40259,20253
+19965,32730
+19966,55545
+19967,76278
+19968,52582,62665,40627
+19969,44781,30503
+19970,29504,36080,8401
+19971,80178,61328,3455,78747
+19972,57744,16458,40383,50837,2046,73827
+19973,18357,64998
+19974,13267,44921,22667,71910
+19975,17336,77284,19817,69519
+19976,30516,55278,53702,69219,30195
+19977,33390,43627,19994
+19978,3947,21811,55854
+19979,26462,69418
+19980,9608
+19981,54533,10092
+19982,12833,3261,31775
+19983,46347,57940,73577,13772
+19984,64786
+19985,57228,16597,78450,35773
+19986,3495,77222,45447,71854,72354
+19987,7854,19327,13841,76234,15732,20406
+19988,79576,32235,41381,4778,6938
+19989,54953,80703,59566,38408,34741,60072,5843,51476,31956,44293,70523,19686,22405
+19990,66229,23758,54361
+19991,35312,59442,19892
+19992,39653,72170,6941
+19993,1268,47102,7991,2069,75198
+19994,37510,50105
+19995,57159,52790,55813
+19996,27776,20221,16890,69189,17587,33091,136
+19997,39983
+19998,65098,4084,27908,21171,31831,81526,41658,30417,11306
+19999,68664,5119,46743,52139
+20000,78968,64610
+20001,39302,74951,56620
+20002,46313,23143,24395,62415,23161,68079,3773
+20003,67231,11755,4994
+20004,2481,28329
+20005,32504,76638,18178,3135,75413,75450
+20006,13365,42093,3440,44485,44697
+20007,53478,63485,49995
+20008,29684,52114,61050
+20009,65132,30807,19769
+20010,5227,23724
+20011,2004,20306,56961,51591,44776,22385
+20012,17056,4509,36963,55709,28342
+20013,56789,28442,14151,10881
+20014,25686,55401,46523,24509,45307,70476
+20015,36390,6336
+20016,43375,29171
+20017,61668,69343
+20018,5574,18985
+20019,23317
+20020,76315,38123,73717,40271,56698,62572,8450,48208
+20021,29438,63371,56878,17540
+20022,21520
+20023,36003,52435,32608,24968,12173,59850,77403,36661
+20024,51997,40560,39699
+20025,72118
+20026,62270,28621
+20027,56165,44320,7465,18881,47337,37604,22039,1943,31209
+20028,40106
+20029,12881,65136,28699
+20030,76964
+20031,62268,38405,481,38274,40776,16365
+20032,28760
+20033,65865,64180,46383,73045
+20034,79165,53666,26862
+20035,26665,57426
+20036,31034
+20037,78368,33327,12006
+20038,8740,46393,6363,24265
+20039,68121,40767,629,77198,71119
+20040,31363,52660,35690
+20041,53428
+20042,66786,33734,30406,41236,37380,28872,11578,17964,44780,77489
+20043,6739,28636,34273
+20044,42202,19464,14171,12348,29340,51818,15984
+20045,40899,52154,7878
+20046,21260,62231
+20047,64157,62528,14059,72729
+20048,47546,43376,28354,78110,66956,24786,63386
+20049,75907,62077,30102,7425,728
+20050,8200,72078,40396
+20051,6345,79391,49047
+20052,28059
+20053,18434,70659,4170,73647,65573,54436,73274,26868,17432
+20054,81049,34555,10066,2482
+20055,58232
+20056,25507
+20057,79068,43078,5380,12286
+20058,32453,31446,70527,58531,8152
+20059,75254,3888,55717,48067,38791,46984,52071,50816
+20060,76955,69374,64017,69187,81195
+20061,50668
+20062,19669,8422
+20063,65832,11456,39658,42709,24962,82049,27884
+20064,31775,67492,40413,43837
+20065,11398,76100
+20066,33178,63912,31943,70253,9245
+20067,81488,72181,28125,31624
+20068,51757,6503
+20069,22273,45203
+20070,11573
+20071,1767,64357,36603,21592,81227,66310
+20072,21424,31569,76406,56636
+20073,69816,36842,73046,1398,29450
+20074,64900,33619,69926
+20075,47042,17537,14489,909
+20076,77278,50246,5934
+20077,46112,21379,69908,17081,66799,76903,24602,23155
+20078,42088,29981
+20079,47700
+20080,10723,8378,72254,30273,21813,49995,1881,3486
+20081,24566,34636,80016,53404
+20082,41419,51454,2793
+20083,68451,57191,42775,30725,76985,5906,48115,53996,65021
+20084,42105,66248,15255,10711,62701,36997,66828,3230
+20085,36450,70998
+20086,3352,26519
+20087,33561,76978,60819,42388,41727
+20088,71732,77497
+20089,5226
+20090,58462,16132,37379,12755,9860
+20091,12711,38068,843,12696
+20092,39548,42012,30690,28952,81500,8806,74939
+20093,57495,8454,61160
+20094,24590,11536,15553,62526,22184,48448,13766
+20095,73527,53151,17090,24433,43795
+20096,11936
+20097,7416,26110,397
+20098,79102,25907,18397,74224,82118,45968,68447,9011
+20099,73467,16417,27361,73567,71337,77159,34870,68309,56776
+20100,23761,77822,67105,60680,15214,32330,62501,62745,38714
+20101,55011,61594,35668,31821,28859
+20102,2056,69650
+20103,65315
+20104,6515,12209
+20105,4446
+20106,25647,50583,3807,71391
+20107,52631,41018
+20108,9303,67432,29137,21020,44058
+20109,38332,50659,33917
+20110,71234,5977,44835
+20111,76711,49598,72432,8638,70413
+20112,81047,60208,40162,31896,18703,28842,1258
+20113,23365
+20114,15569,19803,46110,36447,31486,43786,42661,45147
+20115,44179
+20116,55895
+20117,39351,60098,61555
+20118,79243,41581
+20119,40468
+20120,65446,74856,75482,82150,59836,79093,22739
+20121,4420,6109
+20122,12512,70897,18416,62145,71657,30436
+20123,55422,46382,20953
+20124,44975,42450
+20125,27355
+20126,56874,37635
+20127,55291,82064,65317,36301
+20128,45390,50815,74460,67464
+20129,640,19635
+20130,14561,26955,61138,3362,64324,59697
+20131,27923,70403,61061,47797
+20132,78012,19236,41906,32575
+20133,28342,10973
+20134,67400,25069,9628,43522,23724,44094
+20135,48858
+20136,20732,36139,13312
+20137,16418,69478,59175,44642,2620
+20138,69879,34113,65918,33435
+20139,41004,67745,49961,74204
+20140,66405
+20141,7703,10644,79284,12379,71888,25864
+20142,67494,46951,63234,42581
+20143,14042,57706,54928
+20144,26744,43281,45364
+20145,64885,77655,12669,12995,58314
+20146,52752
+20147,64640,43922,3142,74912,2472
+20148,42404,81763,44483,59039
+20149,68729
+20150,80896,22268,31520,50432
+20151,35989,53013,44823
+20152,51497,59662,60412,13416
+20153,43968,70651,40909,65584,35616
+20154,55449,72128,39052
+20155,81246
+20156,38894,62959,76508,52793,49566,81623,11754,48527
+20157,5876,10473,71760,629,26016,76985
+20158,36192,52391
+20159,66405,78756,16629,76384,26184
+20160,13702,72580,78497
+20161,70540,73833,24787,42581
+20162,77486,9051,59491
+20163,8420
+20164,6807
+20165,53571,57196,71069
+20166,49939,16425
+20167,15681,44321,66141
+20168,56693,68650,38152,47104,26057,5033,55723,33356,806
+20169,45848,22990,80678,56837,77167
+20170,12656,22129
+20171,29623,25444,75382
+20172,67396,58208,32598
+20173,35076
+20174,17091
+20175,72869,51163,8910,44565,7938
+20176,65557,68545,42911
+20177,7323,80778
+20178,76046
+20179,14086,3307,49763,60699
+20180,4084,69412,7383,67238,19948,5578
+20181,21534
+20182,81751,43739,63972,11137
+20183,3700
+20184,25282,19787,53633
+20185,75242,53714,63094,36316,69857
+20186,39914
+20187,78287,42275,34954
+20188,67850,44220
+20189,71202
+20190,28404,15604
+20191,2511,79890
+20192,49967,66636
+20193,11618,21052,13036,40654,52235,38235
+20194,42683,21037,53842,48263,49529,80265
+20195,33769
+20196,21990,34144,63139
+20197,67067,63758,31566,46389,60955,13144,59824,57026,28274,12918
+20198,41104,82057,71650,54045,27653
+20199,78882
+20200,44655,17743,65232,10250,53461,15709,76621
+20201,41606,13982,72670
+20202,35276,40225
+20203,4674,22344
+20204,10957,73723,79867,29458,4333,60704
+20205,32534,23718,23455,23888,53913
+20206,2796
+20207,26186,75139,16079
+20208,51752,34446,71992,59520,76948,42157,50973
+20209,30786,10262,47756,51715,48338,77602,62063,289,18891
+20210,57198,68378
+20211,30186,16926,61456,78347,5150
+20212,30579,64445,21338,28724
+20213,30457,40248,77113,53857
+20214,43739,42014,49553,4935,51141
+20215,30365,68203,63186,53986,32249
+20216,54935,66657,8072,78114,13606,59318,10153,53831
+20217,11925,63382,49078,32368,56660,30383
+20218,22402,59526,77838
+20219,77395,336
+20220,72025,75772,74666,4534,16802
+20221,23168
+20222,15730,62745,62129,33874,41643
+20223,53560
+20224,78426,12389,28201,70306,42501,33331,59277
+20225,11844,42951,61139,44078
+20226,77795,55265,80465,49953,4389,69245,23846
+20227,61292
+20228,49764,62324,18619,8615,15963
+20229,72457,25728
+20230,18747,34973,5585
+20231,54460,73904,5079
+20232,29276,47886,52057,5974
+20233,35822,2487
+20234,9817,39717,27740,55430,47053,23000,32501,11994
+20235,16715
+20236,55578,57019,68833,3062,23412
+20237,60599,7600
+20238,21336,21418,56630,63395,21271
+20239,37135,1003,70422,60251,70203,61514,17612,44966
+20240,6026,68988,23625,63099,73399,58260,76260
+20241,36290,68042,71684,2813,22589
+20242,6449,18376,2673,39177
+20243,58568,662,65161,70170
+20244,69784,22920,53224,50864
+20245,35218,73308
+20246,34066
+20247,65924,71233,37242,49710
+20248,70467,55604,64929,44468,48801
+20249,78806,75637,77054,23192
+20250,60793,7271,22464,42888
+20251,51212
+20252,48693,67476,7916,60887,30686,72553,57342
+20253,76398,4243,62301
+20254,54533,384,35844
+20255,35197,31214,42434,73854
+20256,35124,67644,48052,28684,29855
+20257,66494,75302
+20258,75278
+20259,66311,25697,23530,18370,36773,32569,26857,10890
+20260,61946,24397,4298,40393,35462
+20261,42505,45407,41299,46897,70350,24804
+20262,69756,6411
+20263,7682,29242,21280,21224
+20264,75297,4093,81748,81634,21170
+20265,39804
+20266,31760,76234,60143
+20267,67353,24764,15657
+20268,53667,66333,20195
+20269,42508,50394,71205,4518,15036,63805,47156
+20270,16851,50056
+20271,50848,68648,37453,18172,45198
+20272,45843,57705,39282,48314
+20273,47050,47454,46979,47966,62377,526
+20274,33126,25092,63548,35233,1008,37191
+20275,66454
+20276,31380,66018,21717,1777
+20277,75356,40774,36521
+20278,36212,42970,6878,75031,42907,69423,12534,36570
+20279,39713,55775,33337,26101
+20280,66142,47290,53808,55435
+20281,13628,27865
+20282,21060
+20283,61640,3564,26962,42046,43927,70849,3258
+20284,25209
+20285,47748,8921,44388,49729
+20286,14042,2386,57553,42967,18010,34555,71467,72456,4197
+20287,17203,22667
+20288,61498,59842
+20289,76006
+20290,59728,56411,39471
+20291,622,14238,2141,43810
+20292,78261
+20293,10464,21160,58409,35089,30379
+20294,57447,78756,68768,78019,1491
+20295,54023
+20296,10309,68074,8939
+20297,1996,1410
+20298,27127,68041
+20299,33343,2564
+20300,39472,67296,12685
+20301,46330,27011
+20302,68794,48622,35289
+20303,52881,77467,70595,65484,5619,61176,34810,44989
+20304,47231,18237,47570
+20305,66471,40597,21514,26747,50221,35394,39687
+20306,72169
+20307,81626,28766,59582
+20308,73053,68093,47179,19583,1108,5720,2039,8750,81643,80850
+20309,1836,46882,14675
+20310,11328,42451
+20311,29650,12055
+20312,49386,23259,46470,15298
+20313,27914
+20314,8661,15856
+20315,38407
+20316,66873,3612,54742,79371
+20317,4011,72589,19401
+20318,51449,1601,32067
+20319,71368,59057,54437,74101,29857,51785
+20320,29437,9994,8439,31542,56883,35356
+20321,55630,66401
+20322,9195,77954,52557,69842,49483,77862
+20323,76394
+20324,16455
+20325,71437,42650,26742,22235,10796
+20326,72213,21299
+20327,77185,56583,23696
+20328,28345,78504,3509,75846
+20329,22596,12179,5462,31626,69743,678,61167
+20330,97,17647,74813,66604
+20331,77945,53165,72494,33160,15683,68339,7039,25469,57319
+20332,52511
+20333,36422,55374,43474,39071,814,66141
+20334,57063
+20335,70490,63241,51738,50514,41808
+20336,79652,40590,49167
+20337,14258,22632,4013,58665
+20338,3943
+20339,63461,40313
+20340,18199,70366,40236,77750,2507,48379,51706,39856,60170,5909,107,76117,23428,80465
+20341,62888
+20342,37250,31223
+20343,67469,46227,73294
+20344,36503,46164,7627,38849,5453,56402,47397,66717
+20345,40748
+20346,16548,77063
+20347,24335,15086,75229,16121,81132
+20348,24595,9931,14693,13158,11542,11346,42267
+20349,56200,10460,19058,43525
+20350,17827,15350,36322
+20351,61174,53688,65688,16743,56335
+20352,18626
+20353,36993,59957,35034,69104,28355,31965,5737
+20354,56815,47462,81021
+20355,79800,18277,55453,35276,80903
+20356,70599,25344,5688,79190,34008,37624
+20357,10435
+20358,37314
+20359,34132
+20360,45379,14371,38106,190,15108,47019
+20361,2198
+20362,79013,57648
+20363,69696,46731,4770
+20364,2635
+20365,66303,25547,81069,75848
+20366,3,11102,31976,65360,73528
+20367,65933,22075
+20368,71099,75751,68641,40560,52428
+20369,75133,67226
+20370,69727
+20371,62271,56876,42226
+20372,54329,17359
+20373,22482,73859,19824
+20374,30758,77211,43837,9466,23987,10086,76781
+20375,7772,56067,68103
+20376,8040
+20377,1715,56853,24973,15395
+20378,52341,1125,76347,20799
+20379,64338,17556,2992
+20380,29522,54738,18848
+20381,25240,38799,1387,9457,37819
+20382,34606,13684,24344,48201,64860,31700,3094
+20383,79650,54316
+20384,5510,17833
+20385,68252,70882,63102,69843,19227,23357,43334,41127
+20386,27311
+20387,33756,17294,65294,63108,25447,76824,8711
+20388,11189,65929
+20389,69613
+20390,6719,51103,10771,30855,8998,46854,51987
+20391,10178,64891,48228
+20392,17216,62715,15000,65618
+20393,55183,80562,79764,61965
+20394,55337,38055,16571,31208,14252,56878
+20395,44098
+20396,17719,73020,4704,56939
+20397,37356
+20398,41686,29634,16789,65858,24049,53191,34545
+20399,74012,63042
+20400,22573,41690,26243
+20401,2353,46352,19002,72204,71911
+20402,10174,56333,46590,79498
+20403,18330,33244,60898,6550
+20404,26922
+20405,13184,14322,79916,18868,58569,65129,56487,17420
+20406,60249,17407
+20407,30135,46924,79678,70336,10791,51955
+20408,80984,45837,70994,16207
+20409,55354
+20410,26795,65340
+20411,60157
+20412,78548,47041,32314,55559,64791
+20413,38390,12815,51451,47750,75518
+20414,56979
+20415,67273,74130
+20416,78279,9285
+20417,3540,35653
+20418,55977
+20419,72885,19553,16518,59711,64971
+20420,6913
+20421,73751,66805,80211,26942,23109,37060
+20422,485,51806,79679
+20423,37252,72018,16631,55272
+20424,39137,22405,50216
+20425,7033
+20426,80500,33307
+20427,26472,68810
+20428,1607,70890,7813,17661,32608,28149
+20429,40561,60257
+20430,22417
+20431,8700,67640,26879,45721,36387,2389
+20432,24986,56022,30989,77652,62411,77197,22392,44182,24344,19309
+20433,48767,30056
+20434,75392,39084,73059,40757,77568,34821,16278,53097,79599
+20435,53344,27301
+20436,36688,28536
+20437,15266,26689
+20438,74912
+20439,63326,44271,23451,58615
+20440,64459,53019,336
+20441,26026,50583,4991,64635,25262
+20442,9167,53845,4515
+20443,18784,13537
+20444,47393,25858,32900
+20445,13683,61683
+20446,11151,17977
+20447,62772,55151,43091,8206,36749,34205
+20448,27623,11231
+20449,63217,79345,35889,12333,21452,77683,63474
+20450,54611,4081
+20451,51676,28272,74589,1002,5901
+20452,11567,60710
+20453,7988,78061,31774,75966,9593
+20454,58232
+20455,81095
+20456,40286,79900,60646,14936
+20457,73987,10514
+20458,40298,51367,4699
+20459,34717,78284,63000,80895,42874,68480
+20460,11718,29394,49423
+20461,44656,55354
+20462,10836
+20463,56811,49205,22597
+20464,38888,51852,71566,36377,61857,52435
+20465,31918,690,54929
+20466,16055,27555,60755
+20467,33685,75401
+20468,49351,7150,15398
+20469,26240,12967,65529,48557
+20470,65924,46154,37182,26956,51781,31529,65278,53003
+20471,54591,51370,3330,38367,75262,26731,34754
+20472,20225,59516,6930
+20473,39085,2918,11806,67135,54903,73963,55712
+20474,79381
+20475,66227,52005,17249,4212,11575,35801,8563
+20476,65092,59451,65383,24819
+20477,38056,41975,22323,6615
+20478,34944,1747,76240,79618,78628,65915,60721,23782,46603,77592
+20479,39421,28801,26827
+20480,31870,45712,52672,69276
+20481,44288
+20482,1064,20734,6261,63597,24927
+20483,29099,27231,32391
+20484,78547,11757,24473,19692
+20485,31962,67509,31792
+20486,61623,50822,57874,25708,11618,48946,25888
+20487,44243,41318,29080,4389,12981,49913
+20488,68901,80636,76904
+20489,80824,45292,21201
+20490,39384,32580,179
+20491,32540,34167,80784
+20492,64905
+20493,636,72344,25371
+20494,1954,39769,59762,18736,14300,18061,62152,10480,81631,36673
+20495,52672,80200,43409,27349,5925
+20496,20597,64708,71416,12368,33079
+20497,15002,46186
+20498,54252,22759,43208,75382,18922,12032
+20499,66517
+20500,77722
+20501,63882,48251,11797
+20502,40935,63850,50022,7498,79955,33422,61277
+20503,70616
+20504,6566,75005,1241,66054,52787,73178
+20505,14869,17885,6099
+20506,14023,24461,75893
+20507,21890,21878,59695,40533,28852,58552,66651
+20508,56067
+20509,48655,49839,76945,70331,72355
+20510,69826,31042,15111
+20511,40577,41343,47148,11392,4761,14983
+20512,15584,4192,77048,31998,71095
+20513,8339,44884
+20514,23633,55838
+20515,44524,69853,44777
+20516,29280,62681
+20517,77148,71399,56276,36022
+20518,44617
+20519,67931,81149,22023,55708,14550,72090,65786
+20520,57160,54555,4546,71933,36475,60113,29864
+20521,66198,61375,64483
+20522,71877
+20523,66151,17408,38556,12460,52363
+20524,41217
+20525,36392,2645,57574
+20526,70660,74243,4652
+20527,71204,74871,34591
+20528,22686,7069,74784,43323,80916
+20529,65864,60997,8210,73653,11424,27916,71334,5318,77074
+20530,33034,37547
+20531,45009,81706
+20532,57780,6733,26395,74704,79913,48327
+20533,48436,11584
+20534,72026,66455,33786,48642,17342,66083
+20535,15833
+20536,53701,79207,43903,30296
+20537,78106,58795,42083,35998,52247
+20538,42924,62606,61005,51882,32117,33299
+20539,56531
+20540,62292,452,81551,70799
+20541,43634,73081,49336
+20542,69058,32084,70648
+20543,34827,50932,37264,9491,25896,48612,23145,39712,22072
+20544,44585,34857,52826,18059
+20545,41696
+20546,16365,21603
+20547,55334
+20548,72985
+20549,48617
+20550,77015,24396,13613,3182
+20551,69812,26975,45133
+20552,20517,6123,61940,7297,20677,74866,2345
+20553,27391
+20554,41558
+20555,45956,10034,33761,49192,6224
+20556,48214
+20557,18462,24230,69099,49806,1801,17490
+20558,47355,77782
+20559,28046
+20560,11623,8435,2355
+20561,49535,52433,2563
+20562,64653
+20563,78874,72884,41996,20361,32965,39417
+20564,24825,72979,44865,52502,66870,50930
+20565,4326
+20566,11959,61170,24312,54216
+20567,36435
+20568,60564,45007,1789,7760
+20569,30169,54764,67558
+20570,11226,5233,79877,4718,32812,61628,40844
+20571,13675,6368
+20572,7271,22029,59520
+20573,35756,8727,26773
+20574,76915,2379,8360,54712,22709
+20575,7724,69194,17798,61393,22710,51633,56127,68941,23303
+20576,63130,1686,10727,51783
+20577,31864,76731,34613,29754,15315,11243
+20578,21530,80448
+20579,9271,15547,24503,6547
+20580,74972,1273,12669,5150
+20581,43968
+20582,55962
+20583,180,38858
+20584,10782,36567,51560,26509,27708
+20585,42838,27116,46436
+20586,26214,58673,46652,19967
+20587,21750,51848
+20588,51130,3220,72663
+20589,63181,29891,16375,60674,25894,72083
+20590,31526,62351,59484,49374
+20591,26970,3409
+20592,44318,2583,66195,17323,10896,69766,16142
+20593,70823,24459,16647,67665,66867,56998,81264,47002,20421,62742,1987
+20594,74178
+20595,39780
+20596,4546,9738,49492,40397
+20597,72776,4940,80705
+20598,10770,81843,77656
+20599,19547
+20600,6275,15912,59002
+20601,52699
+20602,25605,12525,42599,27173
+20603,41452
+20604,69773,37194,76432
+20605,50145,1546,39388,25060
+20606,77309,20490
+20607,64868
+20608,79952
+20609,22319,37326,25041,63534,38882,21729
+20610,56293,68412,76865
+20611,78667,27223,37434,55443,45941,14727,15871,9917,11572
+20612,37168,5630,36050,43205,8016
+20613,45809,59542
+20614,33643,41049,32012,42272
+20615,63719,14334,14992,65954
+20616,9514,48288,59684
+20617,31083
+20618,9812,80223,48002,80692,46220
+20619,59805,14356,3142,68642
+20620,73856,41173,80248,9497,4706
+20621,13069,76368
+20622,20090,12011
+20623,7457,40203,30182,65846
+20624,3717,43430,55695,24333,17040
+20625,4947,61092,75677
+20626,10649,48424
+20627,7584,13194,4017,10748,67693,44555,2569
+20628,49000,65742,69099,22066,63563,37283,14833,10497,80248
+20629,77991
+20630,51045,18553,38044,23250,49256
+20631,11780
+20632,53359
+20633,20643,30614
+20634,47440,48459,40231
+20635,12681
+20636,20692
+20637,37207,19680
+20638,5494,26905,19175
+20639,19179,78419,77144,5071,81453,62125
+20640,39642,76006,5738
+20641,76873,8198,55213,34793,58801,28063,78146
+20642,19099
+20643,10884,81984,31044,67424
+20644,43,60323,5370,71066,5748
+20645,59214,42131,13461,24708,13888,42731
+20646,64926
+20647,65083,39018,35958,79133,40841,33749
+20648,14558
+20649,6878,61548,10914,79862,77113
+20650,49017
+20651,58270,40083,34512,50812
+20652,32636,24812
+20653,49404,77172,17597,38405
+20654,28832,26720
+20655,52181,22549,8254,40553,62533,60463,64675,57616,14881,20787
+20656,43285,14142
+20657,56089,68313,18341,648,72278
+20658,73751,18360,54960,70750,44620,10440
+20659,19597,41480,67194,3984
+20660,46281
+20661,24742,41014,18335,2230,45931
+20662,29803,31962
+20663,82021,22165
+20664,33528,29441
+20665,8008,50182
+20666,77352,76939,56694,25738,15164
+20667,57059,19804,19441,36208
+20668,24724,76945
+20669,82176,39999,62798
+20670,35285,45900,78404
+20671,58609,30433,51328,79438,79690
+20672,73751,14437,13449,41931,10264,34137,3660,63135,34084,24886
+20673,10750
+20674,13924,66620,6099,75823
+20675,38658,1142,3888,3069,28975
+20676,51443
+20677,55919,47983
+20678,634,50140,70835
+20679,47065,24379,13692
+20680,41762
+20681,67235,28087,62412,8175,13396,59315
+20682,50566
+20683,29246,34635
+20684,56309,33410,1779,29296
+20685,44507
+20686,72361,77944,35285,15368,35681,43654
+20687,26702,14857,46252,38550
+20688,67038,49450,74345,80685,20518,63672,77369,52668
+20689,63519,54788
+20690,37632,55294
+20691,27707,60243
+20692,45341,48962
+20693,56899,24770,73875,51458,35738
+20694,35622,12802,40116,73143
+20695,44983
+20696,14894,30884,75859
+20697,44133,19804,23068,14795
+20698,37275,38210,5207
+20699,2529
+20700,22415,16567,41764
+20701,81037,73300,13166
+20702,73268,80641,6967,54367,55829
+20703,40771,28120
+20704,29245,34416,70336,17951,61155
+20705,31355,74363,51970,27432
+20706,77204,14339,13067
+20707,29001,74563,79118
+20708,37856,54886,26282,66279,61234,5867
+20709,77140,33065,57999,10431,57118,78810,44583
+20710,28622,58337,5350,79174,23759
+20711,79117,51231
+20712,5144,50999,19389
+20713,11741,21873
+20714,18297,5071
+20715,43270,13693,71569,59534,42544
+20716,77578,48712
+20717,20679,23383,15915,28840,28729
+20718,38096,29597,58335,65076,80048,656,44808,7165,64502
+20719,64460,65610
+20720,70580,17922,18403,65813,5569,4300,42581,79058,4796,48437
+20721,32101,57141,8754,67140
+20722,16666,75945,10935
+20723,47378,69683,47692,67606,5908
+20724,39191,67795,10461,31161,73740
+20725,80807,15100,9295,51766,68132,4687,22208
+20726,36697
+20727,81801,5095
+20728,2495,65138,34263
+20729,79169,48576
+20730,82086,18341,64267
+20731,66066
+20732,18878
+20733,28390
+20734,18336
+20735,48568,22628
+20736,8867,81294,78216,28201
+20737,18528,58266
+20738,43229,38738,39520
+20739,12998,66800
+20740,72808,40878
+20741,51674
+20742,63109,13600,40541
+20743,16128,60991,64640,25889,1637
+20744,60407
+20745,37702
+20746,54472
+20747,34570,80910
+20748,11207,46084,39825,30202
+20749,26023
+20750,40933,65509,72074,41356,57762,34272,80493,19995
+20751,33925,45654,59117,12436
+20752,23757,47724
+20753,16151,5109,21534,70979
+20754,59256,31015
+20755,79354,50448,49829,67821
+20756,75990,5350
+20757,34078
+20758,57038
+20759,54632,77551
+20760,7702,41285,73510,47289,67918,24465,37190,4365
+20761,59468,2691,81710,27626,38357,46540,72031,11862,49817
+20762,8852
+20763,56766,18922,47700,49233,64687,32766
+20764,46066,81627,70024
+20765,76781,26210,10836
+20766,31582,43966,20258,7060,21440,36611,57498
+20767,65706,57226,60691,33278,61462,19088,59398
+20768,6011,35220,29925
+20769,15565,72289,75450,37194
+20770,72237,36830
+20771,4331,64741,6463,2383,32025
+20772,72466,46224
+20773,47625,29300,45376,18165,40066
+20774,58631
+20775,7400,6186
+20776,81545,71628,10332,12302
+20777,16079,34247,42238,61072,34152,75456,58628,71464,16382,7352,48839
+20778,28636,21956,40301,49360,16053,19553,16045
+20779,29027,53101
+20780,46430
+20781,59622,56194,42398,59147
+20782,31446
+20783,59407,56243,46571,71890,66480
+20784,70184,66224,20824,54704,149,57011,65144,225
+20785,71205
+20786,21253,81725,1087
+20787,39292,21081,26651,45708
+20788,27707,17313
+20789,41051,78666,23367,63738
+20790,356,20887,8438,54124,2921,5884,57535,22845
+20791,14520,15239,78411,27489
+20792,16898,23511,28440,3999
+20793,81562,55616
+20794,6577,27116,71206,78332,62941,669
+20795,45537
+20796,2861,21720,45849
+20797,53929,73675,38507,23881
+20798,42094,50517
+20799,16286,7577
+20800,42542,34204
+20801,4698
+20802,69722
+20803,62198
+20804,43682,58269
+20805,61138
+20806,21008,13941
+20807,13077,70565
+20808,13303,48468,62365
+20809,32064,6226
+20810,68387,26227
+20811,12167
+20812,43468,13660
+20813,19677
+20814,25237,67114,67834
+20815,48515,9113
+20816,65735,76906,47619,38451,76642
+20817,66826,16031
+20818,7814,34608,74373,58983,42856,75516
+20819,20931,63842,34278,11185
+20820,12055
+20821,31442,29931,38637
+20822,63724
+20823,48588,48719,61236,12267
+20824,46085,69100,48962
+20825,8005,22548,48317
+20826,63833,25494,50914,18370,13033,81265
+20827,56980,3557,27216,37667,13579,28548,49874,81799
+20828,5678,30068,30931,17309
+20829,75738,53458
+20830,62394,74706,430,55173,34521
+20831,53358,46349,45693,62379,780,36452,44875,28344
+20832,26507,27572,12076,10581
+20833,61028,37954,54007,21205
+20834,41456,69248,761,38527,51358,53357
+20835,2384,71836,7994,19426,32182,53520
+20836,1651,3305
+20837,22920,75806,9382,57763,74410,11738
+20838,34453,19733
+20839,59412,56849,52032,14397,34595
+20840,17259,65109,70759
+20841,72467
+20842,33880,34841,20118,53897,33772,65617,72814,35167
+20843,32591,67912
+20844,79603,41735,79921,34208,1034
+20845,16242,44754,8448,7434
+20846,50829,62734,23285,76685,56611,76431,59989
+20847,75242,56745
+20848,47578,1193,14327
+20849,81149,75851,397,45277
+20850,23320,72766,69713,72599,26077,72008
+20851,72196,34378
+20852,4728,68179,25148,49181,25081,20141
+20853,61956
+20854,23384,26847,4185
+20855,53207,27033
+20856,354,75373,52246
+20857,20553,53444,34679
+20858,75523
+20859,4177,78072,11040,81607,76475,13696,59207,31185
+20860,47484,3858,40928
+20861,16094,52139,19657
+20862,17573,20064,66105,37277,29352
+20863,58122,56515,79033,19236
+20864,73125,20057,50105,71521,59672,57744,57606
+20865,43943,55590,32352
+20866,57378,58511
+20867,43677,12491,66579
+20868,29458,41974,26478
+20869,43740,60246,49798,13660
+20870,41420
+20871,60275,75417,67331,61996,28199,10112
+20872,48240,36504,40327,51065,62220
+20873,36460,19701,67412
+20874,30907,18694,80934,77490
+20875,22271,39845,17979,13595,63864,15468
+20876,63157,72078
+20877,39102,22157,29112,37028,32130,55788,62263
+20878,55192,76684
+20879,12838,55602
+20880,45049,48433,26748
+20881,55485,71662,79908,2645
+20882,64110
+20883,33350,65915,29340,41356,3455,39865
+20884,54864
+20885,78940
+20886,30603,29287,60482,15576
+20887,40949,1524
+20888,58256,13900,29045
+20889,61116,45281,52135,72480,31916,40016,49120
+20890,54514,59094,78532,2725,13428,47484,74081
+20891,36739
+20892,81627,36790,21305
+20893,44175,33030,21658,71933,57403
+20894,73249,68361,17996,18355,11904,22100
+20895,35951,73444,37996,8407
+20896,40539,34263,28859,60669,28484,35764
+20897,63901
+20898,55511,39036,43348
+20899,48557,46281,80522,7349
+20900,39742,70012
+20901,71065,40433,69943,58922
+20902,38909,61217,52040
+20903,16949,77706,69644,14520,48717,57617
+20904,6401,20793
+20905,23509,6588,72491
+20906,80542,81857
+20907,36408,28562,34816,42893,46925
+20908,36119
+20909,14521
+20910,42697,68378,69192,36856,82064
+20911,68019,38887,62164
+20912,34990,42305,23070
+20913,73958,24826
+20914,13177,51238,18504,77012,56660,527
+20915,59470
+20916,40177,48101,64692
+20917,20691,63083
+20918,38220,61374,77322,48271,28760,7865,63083,65899,37992,14396,617
+20919,81998,12681,81229
+20920,46886,39833,33084,15008,71857
+20921,30797,5899,40538,218,36746,78420
+20922,77374,59959,7788,12688,4938,46933,76465,59511
+20923,29962,29165,80493,44598,50818,45735
+20924,1124,76584,36618,12277,70057
+20925,78408,24282,79426,7840,21894,68063,66822
+20926,55674,13927,32890,24553,57482
+20927,64814
+20928,1067,54259,13065
+20929,38250,7363,40652,23563
+20930,1041,23182,58688,30934
+20931,76428
+20932,30097,71598
+20933,19188,19285,59034,46039,81447
+20934,376
+20935,57552,15272,19636,8055,57228,32177
+20936,5845,53921,25942,57957,51798
+20937,69678,65559,53454,5649,48279
+20938,28018,3877,50991,33680,77581,14140,67817,46337
+20939,49598,43323
+20940,10931,38512
+20941,21148,6282,69105,6707,79445,61226
+20942,82048,13207,187,34744,32507
+20943,30718,65571
+20944,35123,47526,57266
+20945,43393,19781,66517
+20946,39507,6855,71455,60409,51824,62215,72988,70206,24416
+20947,8622,22314,73070,79102,43748,62120,60050,73895,62899
+20948,16445,68553,19947,41635
+20949,900,27438
+20950,14035
+20951,13206,30696,34126,71233,46571
+20952,68559,18703,61805,61512,44518
+20953,52033,15756,27008,25,59122
+20954,35414,77830,77164,3252
+20955,64765,23434,54779
+20956,38557,62908
+20957,58177,23150,26491
+20958,66584,55796,55061
+20959,25621,75957,2775
+20960,54230,72826,18339,7154
+20961,74548
+20962,76998,5639,69999,62555,60396,38803
+20963,65352,53933,77539
+20964,77961,79270,2158
+20965,47807,76109,18852,81591,80669
+20966,5144,61355,11307,20135,701,10592
+20967,7154,152,9941
+20968,10882
+20969,15669,28531
+20970,4141,24963,31635,52827,4105
+20971,18991,40495,75845,79825
+20972,37630,60738,74765,81228
+20973,36519,22616,21534
+20974,39849
+20975,44388
+20976,56109,20549,81813,78218,55186,14676,80305,10290,4469
+20977,27437,58875
+20978,67218,4603,23547
+20979,58080,63779,63866,63479,76321
+20980,58569,53519,20026,51630,67800,58549
+20981,20448,78010,78516,35128,12950,53815,22718
+20982,21870,12591,35069,54975,11615
+20983,32196,49762,75022,30973,67253
+20984,16347,59433
+20985,10314,71479
+20986,27790,36292,55976,62180,19968,10844,20078
+20987,42987,73106
+20988,8374
+20989,65289
+20990,427
+20991,59318,78185
+20992,72780
+20993,30896
+20994,31222,81745,51237,75185
+20995,65709
+20996,7723,44001,4265,81973,17579,24452
+20997,19192,26463,36216,75243,47153,58359
+20998,29716,67490,57201,4584
+20999,27894,3686,34503,13256,50214,48294,8533,74057,6513,78167,51404
+21000,73426,71495
+21001,60818,64183,59995
+21002,38122,48213,33415
+21003,14845,39315,66519,81070,57470
+21004,15676,20708,73501
+21005,71179,63884
+21006,77351,55770
+21007,7405,27544,71116,66185,25947,70070
+21008,23398,26685,10477
+21009,15392,27840,38926,61996,9653,23089
+21010,49870,2514,75127,41157
+21011,74048,38411,9087
+21012,39814,66071,50483,9293,22417,9079,47922,38612
+21013,27843,22175,74718,2753,58902
+21014,79209
+21015,974
+21016,70582,10969,25103,61441
+21017,73155,36191,54328
+21018,41274,22328
+21019,37104,54156,56533,5855,24431
+21020,70309
+21021,771,59131,80125,75218
+21022,54601,46443,20182
+21023,20135,13841
+21024,24032
+21025,57271,27750,53845,49785,25950,51763,41267,81216,70857,47404,51791
+21026,81043,47045,75604,19735,72765,36052,73755,42670
+21027,73837,20591,55853,35256,81058
+21028,77817,78843,39061,29415
+21029,72480,35127,59212
+21030,53997,73513
+21031,60646,71119
+21032,1100,76220,5824,50334,24311
+21033,63869,33059,22309,30218,67110
+21034,40721,66440
+21035,67234
+21036,63172,60320,36769
+21037,48587,78615,73122
+21038,41898
+21039,33569,359
+21040,70077,29026,65492
+21041,40700,58904,2027
+21042,38479,25130,78992,79916,18702,9548
+21043,30195,52790
+21044,62724,39177,15657,74446,67237,20783,73300
+21045,7083,51660,71660,14166,17080,60888
+21046,35837,52839,7989,13296,62229,46945
+21047,10557,8965,17043,29495,33871,53855,22984,10746
+21048,36205,3108,20381,54261,25008
+21049,3243
+21050,68961,59162,66398,59975
+21051,43920,76634,72336,64719,11500
+21052,61683,9833,8844,60747,54631,5532
+21053,19018,71430,25495,80303,74675,77978
+21054,81138
+21055,10035,4078,2495,75488,59270
+21056,72101
+21057,47299,5123,46361,25377,55774
+21058,25125,50221,58507
+21059,66198
+21060,47966
+21061,16830,33170,5011,12149,17938,59896
+21062,20359
+21063,45984
+21064,30482,27531,71992,11089,8566,22165,71310
+21065,66789,3585,42380,34648,57422
+21066,33960,69031,57994
+21067,34223,34453,17273,71939
+21068,54928,9831,74417
+21069,45820,53690,18185,2001,24282
+21070,32144,33806,58798
+21071,525,79308,40277,34422,7705,19691,49768
+21072,22084
+21073,35958,32668,51258,3617,79365,39337,81048,20793
+21074,1537,62223,55368,36302
+21075,32772,39649,24547
+21076,15835,71221,57659,48321,36009,1030,48112,10136
+21077,39239,79780
+21078,23310,72396,78165,28404,36213
+21079,20654,29336
+21080,27696,60874,68382,28701,11235
+21081,41626
+21082,72942
+21083,71466,858,1175,55742
+21084,40371
+21085,35479,72963,41971,13877
+21086,75977,20483,37757
+21087,11961,67739,42850,22443,54037,54764,19440,49135
+21088,71610,41746,24441,47314,10713,28277,60513,22790
+21089,13134,52869,61192,5779
+21090,40498,59874
+21091,66219,16304
+21092,56801,32423,60317,48261,27093,18733
+21093,48514,71785,33238,55298,26042,11422,31773
+21094,41455
+21095,2071,2914,62013,69200,73033,78204,38321
+21096,53812,57552,12653
+21097,10518,27577
+21098,17319
+21099,30622,7169,5505,41127,15162,29776,71651
+21100,69852,24135,37452,40993,23512,20354,10570,64907
+21101,75459,56820,26376,57674,68765,30948
+21102,45081,18758
+21103,48071
+21104,2470,51257,58427
+21105,2224,26277,68038,72753,74940,36460
+21106,21446,53468,57724
+21107,6188,68612,8339
+21108,66151,67908,39837
+21109,67127,76898,53863,29776,6130,76753,24583,41715
+21110,13086,32722,69574
+21111,8072,39498,11663,73862,12476,5593,59723
+21112,42377,5079,40435,75213,55277
+21113,54684
+21114,24623,65250,5268
+21115,35510,41217
+21116,51317,74415,67263,73413,37816,1992,29096
+21117,79194,8200
+21118,66965,37669,26782,73884
+21119,39737,79987,72586,60420
+21120,10643,7013,50153,47280,69829
+21121,81646,28705,24314,14672
+21122,36944,77616,53698,49209
+21123,70645,79066,71562,34242
+21124,80664,53306,21143,22021,38035,20643
+21125,33823,21386,51796,22538,27338
+21126,71797
+21127,74945,59621,7732
+21128,23749,7385
+21129,40613,34439,25623,50909,56880
+21130,74655,53451,61160,3648,47154,41295
+21131,55401,16823,79597,45773,6819
+21132,38631,40180,51441,9997,39066,34157
+21133,37626,57670,27435,45816,61810
+21134,48184
+21135,43351,16324,39381,64950
+21136,35640,38536,38543,41570,13391
+21137,49621,28569,40915,23594,62206,51496
+21138,75587,74416
+21139,20941,71234,75916
+21140,41398,27828,5535,68834,78788
+21141,29070,32868,41723
+21142,57181,43821,30131,57066
+21143,5115
+21144,61365,6618,15646,73830,9176
+21145,29554
+21146,37865,40133,55678,36533,47202
+21147,75027,1596,45520,82014,16855,67252,58815,9131,37100,37758,33424
+21148,58377,39681
+21149,77656,24013,24345,39101,32303,36196
+21150,59798,43378,13340,4732,21722,59601,19252
+21151,61758,78077,80867,2384
+21152,38205
+21153,11992,12577,30951,44530,79224,21706,27364,60534,16818
+21154,26208,74068,64886,28267
+21155,68439,47007
+21156,63044,4556,3325,46144
+21157,17613,53202,13768,27079
+21158,63492,13128,65604
+21159,15986,44455,12684
+21160,16638,64347,54843
+21161,59439
+21162,30323,45263,59675
+21163,51280,45648,82079
+21164,42052,43695,63578,27807,60043
+21165,44570,34043,8518,42898
+21166,37710,52086
+21167,56402
+21168,6107,62876,27790,70392,17205
+21169,23962,57458,17294
+21170,60076,1579,50335
+21171,15445
+21172,32072,33531,12706,69744,783
+21173,31735,32736
+21174,34008,61382,61828,17282
+21175,9960,70400,18922,63703,40838,27725
+21176,73016,12907,26087
+21177,42348,78028,48833,73892,24017
+21178,1712
+21179,18940,50997,61958,9458
+21180,28266,18578,22468
+21181,6560,23369
+21182,71234,74628,629,11379
+21183,33843,24285,61533,33404
+21184,21398,64144,28220,64259
+21185,8543,55014,69078,2098
+21186,5602,45155,73898,32125,43206,6347
+21187,61369,79562,5389
+21188,77061,12162,13235,7529,14633,18262
+21189,18956,62765
+21190,29924,79008,42011,78133
+21191,12057,14479,54469,12972,13661,38184
+21192,9122,37664,35091,43601
+21193,58498,23353,69498
+21194,1563
+21195,14153,53050
+21196,33544,34635,73974,60411,28672
+21197,38273,6042,71911
+21198,75445,79209,58548
+21199,20569,67167,72693,15333,46394
+21200,62627,48657,25636
+21201,9671,16232
+21202,79269,58553,63459,72472,10266,22834,57597,33840,63451
+21203,76992
+21204,68897,7925,61511,16382
+21205,53504,33412,20143
+21206,51864,40385,45528,18014,19561,22282,29886,11727,19490
+21207,49826,63029,9749,69878,71024,41268,49429
+21208,80418,45148,56402
+21209,29711,2929,64678,75985,24672
+21210,33140,54481
+21211,72701,70280,24555
+21212,48530,57309,20004,40225,20202,17600
+21213,82047,53069,61211,12602
+21214,30684,14811,1186,3374
+21215,6882,74212,2431,76574,77281
+21216,78723,58625,31020
+21217,23337,58462,53244,62261,55405,75525,37894,47005,39490
+21218,80316,31034
+21219,71976,46638,38507,13393,61687,37954
+21220,19727,30765,74238,7555,76944,8021,35497
+21221,40637,67205
+21222,48593
+21223,4415,17212
+21224,81749,80682
+21225,69258,43435,19693,63424
+21226,13519,7004,53536,26059,29637,13951,79085,75366
+21227,20821,23828,47572,75695,32804,24093,64458
+21228,20425,49618
+21229,14469,46377,22921,11843,14107
+21230,32312,36800
+21231,39820,5394,56019,31042
+21232,33769,16055
+21233,41346
+21234,51069,46710,21466,77817
+21235,78841,31607,46739
+21236,44033
+21237,44373,13052
+21238,46057,69050,24690
+21239,75100,45237
+21240,70098,12928,55375
+21241,16226,7297,73094
+21242,45411,21523,68832
+21243,39534,27756
+21244,74356,24738,40604,63484
+21245,11764,25704
+21246,56199,7422,17647,14490,2045,55738,55060,21298,60669
+21247,50288,63612,42226,19605
+21248,32262,58598,35115,49273,19899,80237,27794,19626,63729
+21249,8149,56596
+21250,45806,71641,57249,9551
+21251,52302,51789,12503
+21252,28787,48091,73729
+21253,27269,59959,12881
+21254,54150
+21255,67037,21338
+21256,48770
+21257,10554,59136,69574,49622,43093,81671
+21258,40146,11707,3523,73041
+21259,44729,35255,16340
+21260,65298
+21261,32925
+21262,36199,16710,67930,31521,56117
+21263,69836,66347,81924
+21264,48760,24580,34644,15282,26935
+21265,10596,30099,34721,22493,30759,23147,1304,56645
+21266,79349,70708,72535,47938,734,28086,15247
+21267,8092,28412,21063,10734,79266,3392
+21268,19929,6846,73375,1003
+21269,24124,53101,59844,62289,8841
+21270,26396,26852,8283,96
+21271,19129,59814,32430,54933,40842
+21272,54935,21758,72221,60507,80068,33247
+21273,41511,60547
+21274,80952,50037,76916,24213
+21275,20282,14846,20218
+21276,4133,73000,33524,75191,1766,61432
+21277,21575
+21278,15963,50172,8098,74213,70190,13401,44648,49164,72043,63469,13000,53962
+21279,42124,35642,20047,9976,50588
+21280,11776,44498,14077,43747,48917,67847
+21281,65682,39616,8398,47892,51319,80949,6894,74524,56442
+21282,70002,75266,9003,58280,3046
+21283,16544,57559,80568,9428,37432
+21284,4622,43652,41519,7169,45471,18708
+21285,905,60872,50981,1862,12347,78230,20337
+21286,43606
+21287,66912,81409,16132,35759,21614,3003,75736
+21288,46423,57923,78376,9734
+21289,55628,71891,70889,45800,48790,48699,22478,8983,35836
+21290,31652,36072,18669
+21291,49380,44551,15032
+21292,76273
+21293,69207,63352
+21294,44452,627,97,80280,8887
+21295,38010,34822,18173
+21296,16817,2492
+21297,19014,27633,78932,49210,80193
+21298,8844,29797,24700,43563
+21299,34132
+21300,45577
+21301,57892,31007,19353,44483,51628,34521
+21302,68994,59576,51489,68033
+21303,2247,38510,79117
+21304,69610,26328
+21305,45972,50087,10258
+21306,53897,7645,4931,33726,36876,24151,76316,40406,15608,23183
+21307,20096,39531,20469
+21308,80859,34646,38523,70992
+21309,65555,23623
+21310,35174
+21311,36775
+21312,72112,34234,58354,62696,27781
+21313,71862
+21314,36062,57167,27227
+21315,35525,51661,76822,18828,70710,71510
+21316,70164,15345,740,46198,61541
+21317,81297,69964,6854,34855,72021,42782,58907
+21318,65641,30748,15862,73642,76526,22163,592,52916
+21319,56491,37469,34830,42293
+21320,59272,82114
+21321,70291,8712
+21322,57092,49295,79111
+21323,75925,64847,64853
+21324,53268
+21325,45049,22789
+21326,78541,57282
+21327,15526,67407,20140,61458
+21328,70210,51333,35287,77735,10076,4205,10004
+21329,62468,61896,51406,62747,12384
+21330,78548,62584,4178,45228,71751
+21331,13966,25340,29467
+21332,55434,59669,3350,49547
+21333,11469,42139,36642,29929,67855,7561
+21334,18250,1828,23092,34754,37960
+21335,60903,30473,12171,17216,22625,70700
+21336,76646,20754,73954
+21337,37344,68514,2530,68594,21803
+21338,31414
+21339,72068,1015,52927,2198,3169,80313
+21340,1777
+21341,75214,9554,15357,26889,29623,53581
+21342,27273,69268,55278,40539
+21343,49890,414,5563,40477,37086,41941
+21344,13020
+21345,30838,38226
+21346,50772,82012,1495
+21347,61546,70174,19859,3113
+21348,4336,61791,50371,38981,74950
+21349,21194,73635,50342,62218
+21350,64188,66437,56363,5767,16754,20356
+21351,20858,51688,59977,37526,54292
+21352,80927,49707,11223
+21353,61558,67837
+21354,38609,27415,65751
+21355,12759
+21356,53931,12330
+21357,44341,74369,35056
+21358,60198
+21359,70178,56376,7622
+21360,15108,76415,61504,19338,23283,71840,41041,56051,74108,23431
+21361,72068,57689,81393,56285,11028,66564,37573,38867
+21362,7726,78157,76376,74473,24806
+21363,22251,43105,24497,21981,35320,71996
+21364,75578,63242,65595,25325,45444,21564,12286,8888,25589,24819,37648,66733
+21365,4100,42081,36949
+21366,44656,64793,3878
+21367,14129
+21368,14881,24327,28764,75836
+21369,63624,38250,60608,38871,29347,33384
+21370,41105,71086,16469
+21371,2120,15426
+21372,18330,29287,18708
+21373,10339,51762,51957,28163
+21374,15518
+21375,22272,16292,6552,32505,40699,32320,32407
+21376,39315,26490
+21377,60931,52446,3444,25366,1648,27637
+21378,27268,71663,186,43037,67513,49341
+21379,19939,49871
+21380,1843,37538,52526
+21381,60565,3208,69880
+21382,52815,9325,4048,11759,66305
+21383,12288
+21384,75837,68970,55006,11961
+21385,51038,31154
+21386,6708
+21387,45931,54171,55324,15514
+21388,41626,20715,55545,58345,40725
+21389,13629,50625
+21390,40089,57428,16589
+21391,65623,9300,63475,14304,77627
+21392,3674
+21393,47154,7764,63809
+21394,25441,64436
+21395,63644,65135
+21396,45174,24123,35272,41495,65353
+21397,38030,68763
+21398,28960
+21399,69790,52854,44569,56364,16633,6796
+21400,75086,24859,71035,79296,6464
+21401,42236
+21402,26296,37238,71946,27828,7427,26443
+21403,81378,69675,25147
+21404,7922,27744,80049,61774,6517,68420,48725
+21405,18967,62820
+21406,71078,47547,68600
+21407,51263,81242,71537,11224,74328
+21408,4976
+21409,39208,33327
+21410,7225,20908
+21411,23656,66268
+21412,60765,32091,2956
+21413,35631,17812,34073,19763,43834,29898
+21414,10187,8849,39870
+21415,884,66783,39218,16902
+21416,67829,33007,49402,70295
+21417,71204
+21418,57147,32389,28399
+21419,54915,50256,62276,80228,23234
+21420,4911,49328,41455
+21421,19462,32008,81736,22872,45270
+21422,12127,61441,12437,17726
+21423,50895
+21424,20313,15445
+21425,12405
+21426,21916,55900
+21427,13311,22622,61119,73938
+21428,27500,68059,11266
+21429,45842,21946,31170,2446,48219,41222
+21430,68045,27438,21319,2480
+21431,62779,7529,14211,52737,45648,15059,76120
+21432,66425,10166
+21433,56318
+21434,659,4441,46659,20569,56315,28991,28402,75654,11792
+21435,11830,75674,25914,58290
+21436,65135
+21437,18118,73736,7206
+21438,21252,51113,29536,69277
+21439,43776,82045,9390,75767
+21440,78351,55630,5256,50455,6828
+21441,55917,48094,7964,60642,8378,67974,72502
+21442,1511,20201
+21443,75424,18119,72115,25541
+21444,59610,61594
+21445,27403,48567,26374,50055,67250,35845
+21446,69274,50093,27622
+21447,32779,12444,56266
+21448,60341,63986
+21449,50528,28791,32980
+21450,79807,79808,11818,47736,58157
+21451,2798,68763
+21452,62832,34466,65106,62306,37155
+21453,2583,23063,19629,80163,29998,36108,53024,62087
+21454,26082,14104,60707
+21455,24776,25374,1944,44520,66584,20675,27936,27730,54903,74696
+21456,3342,81562
+21457,63675
+21458,14183,38878
+21459,38238,78810,44904,79892,56618
+21460,77991,36930,27052
+21461,35118
+21462,56310,51221,45849,24738,62453
+21463,63538,47793,16573,78604,26228,26571
+21464,39663,58275
+21465,9969
+21466,5790,13166
+21467,66359
+21468,2739,62764
+21469,34054,59029,35412
+21470,51739,23371,34735
+21471,45311,5734
+21472,81400,22425,22594,69163,10359,56980,74365,23869,28319
+21473,67294,74349,31026
+21474,23916,13476,25812,21993,81590
+21475,72133,40954,13949,23071
+21476,75553,21971,12843
+21477,44500,66628,52345,7894
+21478,32450,30197,32823
+21479,47688,12468
+21480,44553,43707,64365,65955,2682,40548,61762,74038
+21481,22412,69396,69785,7012,28211,59345,25567,16380,67555
+21482,24286,57032,39756,55379
+21483,60264
+21484,52171
+21485,44406
+21486,15985
+21487,36169,43313,78019
+21488,61885
+21489,41301,6144,32760
+21490,28020,9054,16638,28111
+21491,44711,66811,62821,24845,59632
+21492,27667,59155,48383,48547
+21493,46980,4653,43056,22711,47230
+21494,33308,74299,44382
+21495,11965,61443,24284,50475
+21496,33743,49978
+21497,28561,75890
+21498,62869
+21499,72361,61267,4499,76774
+21500,73835,61249
+21501,24845,45081,48105,62346,58211,36184,71063,21112,58085
+21502,26879,27262,8296,51583,80465
+21503,40006,62829,49163
+21504,42424
+21505,10690,20667
+21506,34115,33781,77413,65946
+21507,59838,70621,71929,9468,23926
+21508,6889,1362,28176,1783,57076,51066
+21509,82170,26830,9373,43593,11105
+21510,25405,36037,11667
+21511,48391,81035,29056,65298,49138,12008,38947
+21512,43479,79862,844,51272
+21513,54047,75845,12307
+21514,28953,3968,35351
+21515,23179,45422,11488,31620,74278,56221
+21516,80398,18063
+21517,71023,17347,11773,71298,52296
+21518,20762,16102,38308
+21519,4547,79175,11442,68544
+21520,17425
+21521,24460,48721,35373,73528,55551
+21522,33398,71220,32028,75369,52952
+21523,8499,62118,52092
+21524,73232,7548,8857,9745,35675,15882
+21525,69786
+21526,58008,76623
+21527,30756,69603,72393
+21528,45616,74064,32129,49507,25609
+21529,5271,36836,14028,39337,34208
+21530,34345
+21531,4493,16664,18658
+21532,11081,10453,28381,17760
+21533,16894,3852
+21534,63349,55288
+21535,38440,44390
+21536,40411,66618,17244,20810
+21537,56261,37026,29977,6151,42912,58418
+21538,22007,1349,57831,40503,55342
+21539,45329,64419,8903
+21540,26451
+21541,9284,7299,74049,53198
+21542,30649,48359,55324,18127,759,64748,61193,46464,4875,35630,2340,43190
+21543,22570
+21544,30716,31827,67574,56473
+21545,67387,65766,27001
+21546,76588,64469,36322,59162,43448
+21547,2464,38691,8708,10834
+21548,66266
+21549,66985,75736,57045,72058,72788
+21550,4497,44124
+21551,35163,52172,55485
+21552,66628
+21553,36942,48232,57659,22360,52670,15215
+21554,71298,24826
+21555,49315,16814,35207
+21556,30947,11876,3174,32459
+21557,6111,70652,23289,39074,36670,33932
+21558,78495,14723
+21559,13574,52556
+21560,81306,68911,53759,6309
+21561,12638,16635,74902
+21562,3890,66838,46774,18351
+21563,43353,705,52135
+21564,7728,46332,52369
+21565,32603,17221,19182
+21566,17362
+21567,30857,62794,41439
+21568,56314,15907,38368,54953
+21569,69858,48381,50878,36915,7970
+21570,40253,28605
+21571,20041
+21572,4862,18824,31870,73232
+21573,6982
+21574,67842,25176,65415,31055,79658,30517,50664,25434,8169
+21575,79903
+21576,19485
+21577,17198
+21578,7690,36302
+21579,47290,14699,25077,78611,43579,77697
+21580,26664,52653,78874,31543
+21581,81702,62301,68594,50407,5129
+21582,21420,27064,53251,80054
+21583,5902,69210,18219
+21584,65229,10825,29057,72321,17132,58499
+21585,26561,43259,54898
+21586,50615,17460,28975,54760,39645,17542,46160,53561
+21587,4368,33951,4528
+21588,46506
+21589,51020,58439,19046,53593
+21590,64930,68322,75603,26186,59772
+21591,35480,57786
+21592,38352
+21593,78325
+21594,14795,53414,44844
+21595,54690,28894,78770,10254,29657,17281,79384
+21596,67473,14077,9852,47928,20961
+21597,51800,37484,4487,1336,46302
+21598,10296,8224,49745,5968,32750,17346,44849
+21599,21254,51476,75200,38566,64177
+21600,58985,1065,79224,22115,5089,16657
+21601,33034
+21602,15068,68373,50123
+21603,29778,13302,36423
+21604,30973,30805
+21605,19367
+21606,11381,3319,79197
+21607,27512,57328,43221,35210,44538,78686
+21608,54668,40900,35768,51054,64000,77353,4743
+21609,47959
+21610,12169,47687,79131,60177,44363,37046
+21611,20599,52876,24826
+21612,52526
+21613,53428,57114,44498
+21614,23499,65092
+21615,25998
+21616,16726,10328,52476
+21617,62889,48922
+21618,12589
+21619,78268,75587
+21620,60200,75617,4300,10511,15811
+21621,35874,1308,49468,42503,6658
+21622,74644,32314,42640,37943,45738
+21623,12826
+21624,74277
+21625,2693,50225,73080
+21626,1781,80297,39845,24080
+21627,77022,769,62063,55129,36201
+21628,79903
+21629,749,57597,60147
+21630,46637,81627,54655
+21631,68631,21923
+21632,21832,19436,47465,4835,67309,3057,57720
+21633,1316,64086
+21634,26201,6493,42953
+21635,11238
+21636,62482
+21637,40124,27113,66868,55077,38927,2759,53830,41183
+21638,79167,52228,58489
+21639,60822,5798,27732,59600
+21640,47630,1216,51930,4326
+21641,27644
+21642,42953
+21643,48758,17231,69154,24968,33295
+21644,48537,44053
+21645,59893
+21646,29357,57265
+21647,77997
+21648,31015
+21649,66678
+21650,12710,20036,70978
+21651,50748,1602,56265,42920,58355
+21652,28512
+21653,65129,26854,44100,51657
+21654,66843,76184
+21655,8112,24408,81307,79231,24341
+21656,36009,76184,12917
+21657,25887,39047,31172,80040
+21658,5698,32992
+21659,46414,58882,63425
+21660,65159,55543,58680
+21661,71566,18051,13393
+21662,46774,53920,28343,66257,35548,66990,65938
+21663,70583,60272,24042,41705,79626,39757,45267
+21664,17810,47635,19296,80265,78848,8098
+21665,23928,70617,11326,79514,5676
+21666,28948,79314,20485,41748,1570,62535,21291,3611
+21667,62155,79850,32924
+21668,58560,37125,59819,12087,7192,16540,67773,17327,56752,76932
+21669,69555
+21670,1738,10439,18555,69481,25824,39133
+21671,46406
+21672,79215,58096,64107
+21673,29466
+21674,82178,79698
+21675,71833,9044,37803
+21676,18555,20426
+21677,20549,21996
+21678,72121,59605,65286,15772
+21679,16814,77518,37896,6606,4624,15143,53746,22120,41247
+21680,79906,72172,18216
+21681,15048,54361,76437,69999,80136,3572
+21682,60816,33020,37329,71953,54561
+21683,56795
+21684,61481,60601,41901,40637,61478,36450
+21685,40435,8056,42148,68772,81768,20089
+21686,8539,17428,69168,5225
+21687,24313
+21688,75134,68610,21310,53799,1559
+21689,68429,61549,62414,57251
+21690,45581,74902,4084,19349
+21691,79146,25924,65240,16099,71036,74669
+21692,16144,385,23229,30649,40849,2472
+21693,21,49027,18637,31744
+21694,15448,35620,43601,30523,19799
+21695,17732,28327,58618,2149
+21696,66447,59974,30944,65893,755,26908
+21697,11272,42725,17942,15865
+21698,53377,72911,80313,2713,22023,35470
+21699,61181,24148,2905,28232,70469
+21700,80146,28884,62683,25410
+21701,64086,71758,53346,855
+21702,73978,48925
+21703,43420,65781
+21704,29326,46218,67579,33726,79143,75185,25929,18880
+21705,6719,51059,54014,75580,70892
+21706,26651
+21707,80583,66259,69238
+21708,74209,25690
+21709,71016
+21710,56239,37713,39202
+21711,77906
+21712,62396,71852,20752,57056,28322,46721
+21713,80400,65992,14448,37181
+21714,53949,19704,74796,56478
+21715,14965,30530
+21716,71060,42207,79155,10344,62705
+21717,81428,22433
+21718,62265,49064,4927,32222
+21719,3114,4702
+21720,43718
+21721,10751,5106,70719,65222
+21722,15980,12708
+21723,68157,65711
+21724,75271,54597,79236,4800
+21725,46686,2828,22354
+21726,58286,24459,78733,50642,74304,47922
+21727,71689
+21728,38509
+21729,15163,53958,24637,30933,25550,54904,37413
+21730,56634,32967
+21731,14865,69226,36336,43264
+21732,40428
+21733,68617,61948,47169,49526,43217,50244,68012
+21734,71833
+21735,29353
+21736,11826,80548
+21737,58342,32060,48393
+21738,81957,77344,5062,76475,63815,28468
+21739,40432,70686,3020
+21740,52029
+21741,71280,17613,36678
+21742,43116,8990,2994
+21743,51394,66033
+21744,70333
+21745,33854
+21746,81687,61676
+21747,55410,22112,63765,69007
+21748,22828,7504
+21749,37803,23013,71116
+21750,1304,33991,81907
+21751,37720,35663,31585,55349,62848
+21752,71101
+21753,48695,74267,30919,25945
+21754,3858,8410,43934
+21755,61870,14633,80172,51163,41754,72688,50968
+21756,13572,14078,9079,44956
+21757,11699,9805
+21758,14934,1786,11280
+21759,68033,43811
+21760,39188,35503
+21761,45466,41265,14978,59468
+21762,49667,1120
+21763,27134,78259,31765,58614
+21764,2490
+21765,10894,7189
+21766,43313,20989,86
+21767,35264,55158,46336,3241,51868,28112
+21768,42341,2077,27013,81453
+21769,64930,35391,66199
+21770,40777,18890,41237,71462
+21771,33631,16274,73185,48196
+21772,61322,34952,48309,47510,62814
+21773,81083,61265
+21774,38218,25464,66785,16792,14487,33121,52444
+21775,37542
+21776,441,5663
+21777,27180,76854,78644,18338,7562,22319,35915
+21778,58452,59107,49843,62582,55701,30340
+21779,44403,45281,58388,31543
+21780,42121,74968,33586,65474,2769,61962,17793
+21781,77904,30175,6878,72661,78138
+21782,29637,33085,65389
+21783,58527,54905,28706,44455
+21784,37941,31985,42841,76457,57459
+21785,62932
+21786,22323,9200,47368,4086,40716,2476
+21787,63349
+21788,8382
+21789,2509,42470,3732,17769,9330
+21790,622
+21791,13966,78182
+21792,2213,45010,21167,77716,5261
+21793,67586,6929,33081,3500,79192
+21794,66665,17464,64879
+21795,12362,15129,29606,16889,33092,58755,70556,40170,42491,51953
+21796,70811,60397,37889
+21797,3369,3339,42590,79062
+21798,60797,68884
+21799,4016,64008,40967,52621
+21800,40591,38778,24363,81541,498
+21801,82016,17479,45259,4509,34170
+21802,35911
+21803,72918
+21804,6261,69091,11583
+21805,54804,38371,57981,2604,2770
+21806,58717,35635,52107,50948,67038,54244,48340,78066,52758,3387,25351
+21807,34990,50344,58116,20815,71562,69019,75950,82086,6847,76029
+21808,9464,24086,7072,20130,37747,74007,44971,80933,28416
+21809,39110,59035,47903,1189
+21810,60165,18060,20750,69233,44625
+21811,61002
+21812,71570,26095,71810
+21813,23803
+21814,36317
+21815,13637,37452,53763,59340
+21816,37136,42624
+21817,33367,27163,38035,53189
+21818,64706,27791,15549,33424,80912,45583
+21819,47913,69498,81649,45282,66082,74081
+21820,13731,22742
+21821,51322,31170,2467,43720,4299
+21822,80335,45994,59800,34160,21052,34220,42897
+21823,63639,45500
+21824,19719,33710,58937,52346
+21825,53979,58578,74681,24282,61352
+21826,44402
+21827,41919,75147,60735,58254
+21828,7450,62441,61715
+21829,9829,8899,65136,47046,22169
+21830,70905,53981,52186
+21831,71586,54774,23065,39444
+21832,32188,69598,64502,30018
+21833,827,72460,41627,13697
+21834,50709,798
+21835,19794,65372,10644,68603,20286
+21836,43562,19199,7856
+21837,6982,4205,67824
+21838,43897,12701,53358,78227,67089
+21839,20642,22135,4600,5818,3306,65981
+21840,50986,77550,64700,11103,62142,13706
+21841,57760
+21842,278,3446,22099,65707
+21843,79901,58206
+21844,41290,28128,29277
+21845,63727,6481,33916,42519
+21846,41888,29043,12176,19755
+21847,28908,81995,27858,46408
+21848,42223,15873
+21849,53946,35292,58405
+21850,30283,39426,11594,34036
+21851,18082,51587,41453,33897
+21852,19947
+21853,14072,69886,71378
+21854,48685,39049,36524,73774,24414,6345
+21855,76675
+21856,4316,4323,70953
+21857,73762
+21858,63071,133
+21859,75862,78063
+21860,13548,5496,11825,32020,71806,59991,1836
+21861,22548,29853,32062
+21862,47365,31546
+21863,73611,49455,15045,51180,80400,40480,454
+21864,66533,69003,2675,50475,20702
+21865,58973,63194
+21866,31278,72662,60255,12271,38901,1696
+21867,22447,75261,28956
+21868,32362,68668,18430,12664,72218
+21869,39582,7876,25476,73165,36882
+21870,1286,82020,1146,78560
+21871,78041,10826,74319,14958
+21872,52125,57807,4437
+21873,51411,59819
+21874,73406,59575,71446,47219,21759,49500
+21875,68059,19773,41811
+21876,58645,30214
+21877,2429,14508,13028
+21878,29521,71233,75803,48161,15567
+21879,65060,36539,45563
+21880,39818
+21881,54736,53999
+21882,62690,40275,892
+21883,31637,2198,52623,60328
+21884,74746,60339,33928,13493,22851,50941
+21885,41708,57680,81094,71656,31305
+21886,4605,17946,23716
+21887,1223,9526,25446,22834
+21888,71961,20082,31201,8270,3142
+21889,65625,28351,72272,80664,30759,10445,70628,69559,29097,65144
+21890,37874,35916,57993,68011,81919,33021
+21891,18002,33461,4935,25710,29925,9612
+21892,61984,73628,37167,71608,77771,28871
+21893,43349,36707,33033
+21894,7927,32097,29423
+21895,17593,70842,46337,19779,24982,39375
+21896,21882,57116
+21897,78842
+21898,46930,11676,33027,39444,54912
+21899,13699,73476,31911,76318
+21900,56966,2920,33335,72180,43271
+21901,70903,35128,19658
+21902,24643,23999
+21903,79903
+21904,16657,79897,39957,73455
+21905,27075,63843,52952
+21906,55468
+21907,6741,1074,60866,50711
+21908,397,59396,50597
+21909,27486,29542,38791,15068
+21910,37322,79754,45862,12656,34676,19859,46727,48019
+21911,10198,23908,8388
+21912,62295
+21913,42135,69238,81194,80472,18761
+21914,67775
+21915,47842,64434,41346,8431,52313,22367
+21916,4465,33528,66524
+21917,43044
+21918,19028
+21919,8132,3761,16573,68730,31315,43282,76287,7262,80377
+21920,59583,70290,80325,21629,31885,66793,63466
+21921,76944
+21922,46430
+21923,8041
+21924,68665,44161,58763,15295,46588,26939
+21925,75575,17571,62831
+21926,58295,73201
+21927,46715,56922,36458,52160,69756,75045
+21928,78973,19838,40718,59716,19743
+21929,18877,18497
+21930,20785,44104
+21931,51663,8576,28466,15031
+21932,54774,78392,40338,36770
+21933,11887,71248,34643,50927,31542,27876,23985,51570
+21934,33835,57369,17791
+21935,27371
+21936,6968,41122,48042,22447,3339,38024
+21937,81360,927,30968
+21938,67376,6133,40240
+21939,44011,78628,74470,53970,75007,48462
+21940,78205,56949,32243,39914
+21941,68095,36450
+21942,31547,79176
+21943,81709,4654
+21944,40893,56947
+21945,11421,24433,43373,44449,22237,26988,16560
+21946,80373,72459,71598
+21947,47672,76622,65422,33882
+21948,5781,32493
+21949,40120,61488,43009,4538,63479,71398
+21950,65595
+21951,56990,57350,27876,79629,34367,65679
+21952,67841,60295,70681,13987,33743,44960,25041,36327,13202,72117,2990,8190
+21953,25258,70706,50790,68906,49903
+21954,6233,35312
+21955,34776,12806,36775
+21956,63603
+21957,81058,14610,64671,76512,38557
+21958,62664,8796
+21959,70821,51560,55332,28859
+21960,35240,14447
+21961,38863
+21962,26628,63106
+21963,48019,76025,27636,34909,70782,73226,73255,42173,69063
+21964,39371,74739,80486,16584
+21965,45108,25862,52805,43353
+21966,10494,27480,31346,24571,52998,197,71079
+21967,41304,58493
+21968,68205,61002,20924,31092
+21969,12365,78462
+21970,34763,56335
+21971,75754,68084
+21972,34552,16045,59551,58333,24086,59510
+21973,78544,411,1903,31805
+21974,37970,29597,8949
+21975,8534,52339
+21976,47837
+21977,12502,18399,12566
+21978,79243
+21979,18071,67556,74932,32472,31988
+21980,15682,24392,19143,47926,57069,60034,47443,5753,69133,67228,20414
+21981,8008,59530,81414
+21982,60198,15306,23400,62143
+21983,62769
+21984,65250
+21985,70923,77548,34231,12987,61179
+21986,42152
+21987,59439,47940,27113,19245,883
+21988,41524,32002,35254,61309
+21989,16860,73400
+21990,21922,22161
+21991,75907
+21992,38553,19547,31494
+21993,1405,12512,25084,5079,49022
+21994,52391
+21995,24016,54463,56126,45086,14628,7225,78254,71270
+21996,58958,56350
+21997,50114,4918,60450
+21998,46213,69147,81756
+21999,74135,61557,4822,61031,6394
+22000,48599,48456,1217,52048,44457,50721
+22001,57222,55030
+22002,30211,47470,64682,81980
+22003,69174,42726,3771
+22004,9599,30928,3373,4761,79392,65409
+22005,77022,43671,24025
+22006,19687,74592,43615
+22007,59356,3969
+22008,8498,15531,63938,36285,56086,68744,35852
+22009,10409
+22010,59751
+22011,51704
+22012,44028,44816,53279
+22013,76110,15399,72714,5870,67264,63307,44310,23607
+22014,27092,62619,3243,39825,11279,62005
+22015,42526,37819,9136,28702,80889,65782
+22016,47630,10703,62280,53705,60671,19963
+22017,62555,43590,18584,63611
+22018,65196,60613,46481,30349
+22019,65282
+22020,25542,10605,15641,64876,52485,17115
+22021,35454
+22022,32432,75752,44542,5364,30821,15403,900
+22023,64110
+22024,42363,39460,75076,25847,9998,79581
+22025,48261,69629,70971,32204,38343,5878,6622
+22026,22931,42529
+22027,20799,34066,13764,20361
+22028,80572,2164,35739
+22029,51144,63230,56058
+22030,13069,76869,56084,81299,67537,15872,64550,18687,35710
+22031,11456,18723,42328,33869,77065
+22032,44702,67255,227,24875,55183,55980
+22033,57657,75600
+22034,32936,79269,43988,30786,80434,37238,66694
+22035,56426
+22036,30416,1281,77778,6035
+22037,27214,15402,12192,71855
+22038,33449,75251,68056,16670,10328
+22039,9791
+22040,17029,20984,79857,46694,80927
+22041,27046
+22042,69368
+22043,13312,16383,29735
+22044,28104,66540
+22045,6795,72641,29129,81675,29310
+22046,26527,8355,21395,18371,68698
+22047,54927
+22048,77217,54010,44708,35147,80270
+22049,3053
+22050,8839
+22051,14136,68997,49386,29741
+22052,69545,74718,28649,37457,10678,5341,51489
+22053,25334
+22054,45488,78333
+22055,22755,51298
+22056,26528,32873,29232,29484,57724,66147,64594
+22057,5571,82124,49776,64939,20567
+22058,16402,43620,26656
+22059,20795
+22060,63307,35096,44422
+22061,60874,48127,37898
+22062,68024,23338
+22063,11821,67859,15699,14564,76157,45535
+22064,28159,34718,80819
+22065,10854,45822,15790,58159,57887,43540
+22066,27309
+22067,42195,1923,32340
+22068,15278,50116,6469,5485
+22069,39140,43525,45095
+22070,39980,5153,61958
+22071,56100,22146
+22072,61463,8801,80201,42798,17282
+22073,13802,22732,61196
+22074,23367,41638,75905,51910,46985
+22075,7902
+22076,19965,70667,56193,35484,6341
+22077,36608,76049,3697
+22078,18439,32021,4343
+22079,27278,75473,6891,80568,31308,49621
+22080,60041,25032,39945,61155,41851
+22081,46213,51257,12132,45574,19723,35598,27511,5833,13542
+22082,12288,50229,39055,51290,62550,37968,18831,78326
+22083,65708
+22084,13081,81994
+22085,34756
+22086,27129,2841,25825,69998
+22087,42638,22634,72484,78496
+22088,73361,55325,37369
+22089,5232,28334,7808,76924
+22090,64959,27504,35380,44213
+22091,60696
+22092,69837,68978,64593
+22093,14775,76552,43681
+22094,13553
+22095,14004,68843,30998
+22096,81320,62627,9305,2449,46349,15686,18455,25683
+22097,11720,45801,66028,7319
+22098,27523,47607
+22099,28900
+22100,22849
+22101,25551,24213,77366,31687
+22102,80679
+22103,27563,42593,4845,37129,10318
+22104,56200,35760,57600,10866,22993,44259,13890
+22105,3187,63741,22693,1671,3917
+22106,56139,8913,54023,78236
+22107,67678
+22108,18069,61880
+22109,28463
+22110,41570,43750
+22111,41206,79826,51755,29928,51829
+22112,43193
+22113,73904,76039,74363,25018,4654,43924,29946
+22114,29778,62447,12022
+22115,9266,41118,60833,62254,79331
+22116,71062,30294,18007,65414,30493,32532
+22117,40774,8859,24604
+22118,31831,52832
+22119,26392,68206
+22120,35606,35220,72841,39719,56266
+22121,27019,25612,5254,24961
+22122,9267,9690,52493
+22123,47926,71627
+22124,64328,57043
+22125,24768,44982,52357,7234,30747,21325,66051,81801,49812,3963
+22126,64761,30402,63083,43718,51339
+22127,62714,42382,22994
+22128,76677,34416
+22129,60598,77578
+22130,34690,17211
+22131,54103,73688,9789,36690,19421,74530
+22132,71551,62122,15057,23128,37470,5230
+22133,28045,71944,50289
+22134,19459,65160,60134,7789,51080
+22135,65773,49909,20033,6412,34729
+22136,9924,73955,33304,16805,36394
+22137,75277
+22138,30712
+22139,4875,76974,50899,4142,28894,21181,14922,13726
+22140,8041,53023,43502,59580,50633,9452,49943,6057,15472
+22141,41702
+22142,31560,42003,8994,22068
+22143,5957,49271
+22144,42079,9451,66908,70650,30925,30268,59247
+22145,52359,82170,76483,67549
+22146,23301
+22147,70705,8041,69716,13398
+22148,36157
+22149,38387
+22150,71344,12885,56954,41766,53597
+22151,35029,79164,39173,38032,54230,72136
+22152,607
+22153,34777,27019,20362,79391
+22154,31980,22482,82048
+22155,15145,80401
+22156,43600,81571
+22157,47811,77712
+22158,37722,6642,45410,11338,20103,20711,30221
+22159,57861,36994,10574,61458,41395
+22160,48036,14078,43054,24723,44051
+22161,78357
+22162,38778,7346,9570,33503,21176
+22163,59068,70033,8133,57726
+22164,55139
+22165,13223
+22166,5132
+22167,51039,10309,18237,55077,72279,18353,65423
+22168,73734,45918,73284,79788,31498,18516,12006
+22169,56640,5602,75864,37470
+22170,42376
+22171,5104
+22172,64596,49546,56038,25918,78259,7879
+22173,58940
+22174,60342,17924,41739,48118,8932,4866
+22175,51318
+22176,78867
+22177,63339,50126,63211,56394
+22178,11273,60114,31664,46185,43337
+22179,23139,76639,32438,33556
+22180,66595,8283,41426
+22181,12934,39477
+22182,76636,506
+22183,57168
+22184,30924,22128,20995,21497
+22185,62087
+22186,2847,32849,22616,64250,55276,47356
+22187,56533,43968
+22188,34683,31840
+22189,65059,18712,50765,69966
+22190,49999,39040
+22191,13225,39611,24247,66741,311
+22192,73946,6866,33746
+22193,21922,78368,16422,43032
+22194,64868
+22195,67391,78117,76922,57702,38908,9855
+22196,48093,45994,79781,29635,9122
+22197,12516,14460,42153,1366,16742,25783
+22198,38341,27185,67301,13683,2353,79485
+22199,28735,69526,67506,2973,65589,568,49843,41853
+22200,77065,80642
+22201,29591,24826,41497,59464
+22202,51187,44762,15273
+22203,50274,50192,40700,26361
+22204,71849,46435
+22205,60653,81724,3082,81977,66680
+22206,11745,1022,52072,11201,70888,77456,5135,73936
+22207,18531,41046,62358,24024
+22208,61467,44438
+22209,80887,79148,61733
+22210,79628,31532,45223,54581,41217,14926,24327
+22211,8485,66275,46099,54877,76520,76640,57943
+22212,76273
+22213,11703,40266,9470
+22214,67664,44661,80457,15648
+22215,30983,15229,62395
+22216,1537,52385,14511
+22217,44260,77802
+22218,71422
+22219,18085,11400,24097,61244
+22220,47180,42837,79251,32905,74264,22274
+22221,41073
+22222,77998,5683,40748,45648,3356,62346
+22223,72776,64101,55834
+22224,36191,23184
+22225,54459,28626,34830,33954,6111,62856,53293
+22226,2518
+22227,15172,57650,32450,72139
+22228,48466,35575,36421,11620
+22229,27597,21432,39052,6148
+22230,28843,26464,44316,5151,28077,1699
+22231,47183,68037,16145
+22232,53964,19969,68069
+22233,31994,26731
+22234,24061,187,33437
+22235,73157,1558
+22236,72099,69725,58448,73391,80068,49476
+22237,43549,80677,3726,40700
+22238,37254,31926,56976,31937,51108
+22239,71958
+22240,8202,85,31770
+22241,10686,29699,17702,20930
+22242,9014,3725,75082,11286,70190,59117,32846
+22243,6930,52520
+22244,4710,43639
+22245,79372,25846,25708,29217,25390
+22246,3609,56929
+22247,44005,39883,40705,50178,50438,24693
+22248,6524,34052,4511
+22249,55189,12681
+22250,61894,56515,41846
+22251,8913
+22252,2002,71717
+22253,77228,52264,29123,81677,10242,15084,34463,79094
+22254,46227,63987
+22255,72403
+22256,29465
+22257,69933,34497,68413
+22258,16438,34137,2305,48080
+22259,57269,48814
+22260,3132
+22261,45041,36775,70463,25766
+22262,45468,52640,11020,40253
+22263,19966,76023,18353
+22264,26349,5799,27818,61946,15630,32636
+22265,49160,7256,51763,30537
+22266,51676,18434,27824,25805
+22267,64086,49196,52644,48997,40424,30489
+22268,38411
+22269,57212,616
+22270,58361,80741
+22271,57063
+22272,52648
+22273,42550
+22274,51887,26280,31968,13901,33676,13525,746,21449
+22275,783,15643,347,64978,26387,80352,56210,71910
+22276,54072,37624,142
+22277,46650,73762
+22278,59306
+22279,56561,44253
+22280,55299,32573,80925,81244
+22281,40493,15035,76431,61390,15701
+22282,78936,42782,31831
+22283,53404,25873
+22284,31698,62060,270,23151,17971,25582
+22285,40541,56498,49362,44930,44063,18825,53506
+22286,45886,13832,29431,70754
+22287,81400,5854
+22288,75602,82120,34059
+22289,45935
+22290,18439,68882,39722,21776,13822
+22291,35911,68042,57659
+22292,18047,40226,2369
+22293,66712
+22294,43302
+22295,53027,16673,18301,16269,31884,61438,16780,39311,61126,13862
+22296,29504,19257
+22297,35833,68656,29224
+22298,26221,66050,27003,22005,41952,7918,39297
+22299,67509
+22300,55834,23649,66042,25460
+22301,46350,13099,30168,78676,6320,55534,38862
+22302,73016,286,12255,52636,56464
+22303,1131,76156,61884,39740
+22304,5876
+22305,45892,72866,76131,56992,7225
+22306,55026,311,39742,13303,12661
+22307,48962
+22308,66115,75673,41648,69795,78867,38534,78669,63786
+22309,22477,40006
+22310,51096,46295,1807
+22311,17715,23014
+22312,49204
+22313,8910,74956,72336,16210,10242,78807
+22314,2828,12167,55867
+22315,71319,57125,511,21876
+22316,3420
+22317,42333,22083
+22318,24845,33835,6540
+22319,16202
+22320,38487,51961,67845,70980,60392
+22321,39378
+22322,36186,17234,41262,72827,58839,2059,48310
+22323,42157,52089,31149,73225
+22324,66041,38385,1622,18266,1092,20287,15467,22767,72543
+22325,3440,71932,66856
+22326,47642,27420,16673,28334
+22327,56037,65679,30158,58782,29394,20836,22149,14303,45138,22413
+22328,41636,44086,80125
+22329,40306,27039,7947,800,38111
+22330,51079,58936
+22331,42599,27888,6606,64023,2679,24277,51914
+22332,14748
+22333,82010,21385,40168,46305
+22334,28212,43734
+22335,64666,60974,15902,18506,68164,78602,55623,26697,81183
+22336,23826,53954,42818
+22337,39514,44953,76716,58558
+22338,76638,31447,25163,7054,16308,65370,5073
+22339,10290
+22340,63194
+22341,32640,60167,57515,45772,32614,18391
+22342,28322,65553,31255,51676,65194,82141
+22343,57258,22151,63415,28440,54697,620,70503,57414
+22344,60871
+22345,65119,35790,6256,29438,73250,12073
+22346,66064
+22347,49472,54987,55606,81232
+22348,49834,29398,15521
+22349,15406
+22350,48723,45463,27645,56152
+22351,11649,32128,77051,28867,26557
+22352,10162,42680
+22353,37849
+22354,36153,61571
+22355,58842,28826,54735
+22356,50971,78310,53124,62336,76401,47679,52930,36651
+22357,75688,48841,35068,25215
+22358,56444,18165,36618,37549
+22359,32848,1280
+22360,8819
+22361,21570,79461,80305
+22362,62435
+22363,24410,8539
+22364,15188,65913,407,68970
+22365,42103,27330,16586
+22366,75198,57444,47360,6481,63954
+22367,25460,13467,16999,49834,14857
+22368,27438,80011,80387
+22369,74438,31264,27378
+22370,12186,70247,13826,16651,45123,43742
+22371,68548,63898,20431,82187,39570,30579,20520,144
+22372,17058,67760,71765,42617
+22373,24484
+22374,75382,77319,504,43383
+22375,51278,68628
+22376,66641,44265,79573
+22377,67344
+22378,70964,41897,13184,38227,56478
+22379,49943,26976,42875,32568,19162
+22380,42145,16941,17230
+22381,49073,79015
+22382,53836,1168,20847,42259,27372,28239
+22383,62745,38803,31186,66930
+22384,17309,31223
+22385,81469,60811
+22386,47708,53366,20735,78748,73623
+22387,52952
+22388,54919,67377,57426,71175
+22389,61621,19051,2843
+22390,80902
+22391,2794,14669,25073,82077,64445,77196,171,3324,41557,29758
+22392,44140,2536
+22393,46301,44865,35613,30982,37887
+22394,20683,13384,26288
+22395,38109,46746,66510,57563,23854
+22396,19224,16958,58450,19091,51661,31928
+22397,3048,81556,14411
+22398,50860,73001
+22399,9918
+22400,57812,74117,82032
+22401,24021,10409
+22402,41690
+22403,50376,70997,20311,33754
+22404,72373
+22405,39260
+22406,43499,46351,37282,32504,61289,74349
+22407,5471,75222
+22408,14611
+22409,74425
+22410,28801
+22411,42695,57243,65274
+22412,37559,24135,56714,4835,44165,49143,54581,13539,77715
+22413,79258,15757,23579,31623
+22414,70149,79918,31024,68131,54157,68693
+22415,25637
+22416,45160
+22417,25895
+22418,57008,37880,172,79679,27369
+22419,43201
+22420,18556
+22421,15772,7107,66455,75409,63444,6955
+22422,79662,51757,35667
+22423,15448,77491,69422,26066,28610,65694
+22424,16379,57525
+22425,67983
+22426,36209,67034,22643,56184,17423,58577,64787,38572
+22427,72061,13596
+22428,80357,14224,27326
+22429,37301,57630
+22430,49973,62480,19321,69697,31416
+22431,71223
+22432,74414,46990,5843
+22433,56943
+22434,64955,59287,20824,78475,1392,79238
+22435,8281
+22436,53115,63726,60878,18552,14688,15284,29637
+22437,36081,21613
+22438,64738,42897,15826,28019
+22439,10868,7806
+22440,4423,6401
+22441,74286,24595
+22442,5095,80622,48678,37396
+22443,35788,51655,78981,34333,70449,76506
+22444,7797
+22445,12120,23298,80898,14638,56235,28763,49962,82018,62684
+22446,46270
+22447,10314,60685
+22448,11608
+22449,38253,30247,5654,71569
+22450,52469
+22451,10104
+22452,25531,65494,36343,46785,30422,30471,58115,31022
+22453,29279,60755
+22454,39007,25066,17392
+22455,75603,64939,53391,42982,46860,6938
+22456,52688,47349,37371,81981
+22457,34477
+22458,58665,79901,81269
+22459,36990,49345
+22460,72092
+22461,40151,15184,64267,78391,65985
+22462,32294,23102,68944,27267,17402,34264,70810,14898,43693,27394,50882
+22463,81924,78267,24183,33008
+22464,53910
+22465,52344,40284,15346
+22466,38868,4061,26386,45843
+22467,52362,37805,4958,13991
+22468,1903
+22469,70711,67138,64177,33491,33526,65760,20917,36857,7760
+22470,63197,24288,28404,53442,1503,8124,30067,15625
+22471,51684,53502
+22472,81901,1996
+22473,2709
+22474,31849,23918,7656,81826
+22475,14714,34111,62441,44420
+22476,27637,68630
+22477,35489
+22478,38077,19278,72852,55774
+22479,17194
+22480,68507,26446
+22481,71498,38411
+22482,47005,81678,24473
+22483,44950,71232
+22484,74575,28060,78204,13607
+22485,4318,500,16307,25346,73439,55806,23302,75826
+22486,58523,3174,53560,74629,30064
+22487,65068,58744,10848,62177,14051
+22488,4450,7373,48619
+22489,75728,64392
+22490,26979,51800,7081
+22491,23035,37270,59238
+22492,35524,35406,63069,46617
+22493,41617,16498,29154,81827,51176,21858,60447
+22494,298,65737
+22495,62685,78998,44657,61995,243,60210
+22496,68907
+22497,54035,69224,54666,31593,41765
+22498,54784,4789,67257,50757,51252
+22499,12151
+22500,16501,28419,20517,55422,10705,57771
+22501,19166,57627,20400,7702,22148,54037,31888,946,42455
+22502,45214,11412,17969,63330,47155,52576
+22503,79767,35459,11535,27023
+22504,33284,75595,74662,78044,81687
+22505,75138,80368,40522
+22506,29428,36127
+22507,4743
+22508,2328,47058,28583,364
+22509,22106,39230,34027,81968,18247,79194,7325
+22510,47608,70443,1847
+22511,5125,35393,8118,36188
+22512,5137,114,41283,4236,16975,34969,74178
+22513,62005,48605,49221,30312,18717,835,28344
+22514,40643
+22515,8035,26322,11477,66654,20576,53069
+22516,50683,23587
+22517,2355,57697,77657
+22518,73308
+22519,48565,64514,8580,57107,78985
+22520,28488,61738,25248,17438,29285
+22521,10419,81974,77155,66990,14255,67594
+22522,59893,9264,43778
+22523,42333
+22524,4600
+22525,41519,22507
+22526,22194,81834,38893,42529,47669
+22527,61917,45136,17287,23084,47075,16815
+22528,58517,10497,58875,49740,21141
+22529,74783,62514,78395,4136
+22530,19879,7285
+22531,24634,50621
+22532,62013
+22533,19813,76780,21460
+22534,81909,48292,3169,27000,63404,24047
+22535,65199,19599,77485,20258,49214,38402
+22536,17090,40837,38152,43899,38387,31146
+22537,15949,5852
+22538,65807
+22539,33983,38087,3730,74184
+22540,4111,149,27314
+22541,19679,42126,14038,11641,6720,48691,76345,32633,27522
+22542,32159,51690,16153,25987,71297,21425,69414
+22543,64185,79767,66449,14174,40921,72100
+22544,65692
+22545,12081,24827,48264,63914
+22546,13288,81374
+22547,33230,31110
+22548,21060,7395
+22549,13510,22920,19610,51638
+22550,61658,53915,50684
+22551,80409
+22552,13529,16652,22075,28175
+22553,20668,82137
+22554,42019,46290,62745,76028
+22555,3914,28216,22194,59738,27171
+22556,73306,14785,53070,44800,66576
+22557,78170
+22558,8471,57740,80218
+22559,45329,364,28941
+22560,57848,48894,80067,22309
+22561,56531,10078
+22562,39218,58453
+22563,31589
+22564,80606,37479,82160,78023
+22565,11504,81463,81070,1668,994
+22566,22183,10855,35395
+22567,15728,45447,59465,21425
+22568,14204,43751,31911
+22569,71928,71832,16106,26811,22579,9615,72348
+22570,2212
+22571,62580,72788,13519,53394,18561,44655
+22572,77053,57979,45733,23555,57990,14207
+22573,48904
+22574,34397,73151,25019,81316,72928,55946
+22575,2962,35380,62829,61068,66938,13346
+22576,66735,13843,35989,46852,54659
+22577,20404,14806,23687,80492,56224
+22578,6181
+22579,68336,50757,64047,71181
+22580,1328,76292,53448,32328,11991
+22581,51067,10734,4830,18773,52061,74376
+22582,75635,51727,4017,65691
+22583,37729,73251,72605,68679,72107
+22584,74171,75178,34662,29459,18953
+22585,62325,28611,32515,49174,60109,72215
+22586,61896,31876,17942
+22587,25019,47290,14258,17495,11270
+22588,29436,67716,22170,63596,64512,67820
+22589,41538,39782
+22590,60883,59267
+22591,81939,60768,81,24662
+22592,9173,26802,46059,20097,35349
+22593,46514
+22594,45959,2871
+22595,42413,54608
+22596,31460,30993,13938,37282
+22597,79489,27789,62148,64254,11159,55511,78818,73884,50205
+22598,75794,72540,62624,58740,68503,28270
+22599,51989,30739,18969,12068
+22600,45229
+22601,33479,9206,18348,46261,51465,21046
+22602,24117
+22603,73038,43601,43907,64414
+22604,1098
+22605,61588,7736,28122,18125,18944
+22606,75590,70188,12560,11420,22563,42176,69952,51766,18138
+22607,47724
+22608,68994,59735,38169
+22609,22830,14266
+22610,80310,29131,51024,2998,20627,14838,61288
+22611,29856,77801,63141,61191,4311,28292,70797
+22612,67969,15486,35527
+22613,16093,55090,27132
+22614,14668,7303,47653,81292,58134,14706,37732
+22615,9268,19823
+22616,1028,8524,73919,54425
+22617,76010,19637,35898,47064
+22618,61623,27218
+22619,19132
+22620,1369,79748,47727,21436
+22621,61513,77786
+22622,40207,7493,78848
+22623,12859,50088,68439
+22624,7124,27854
+22625,17433,27109,903,51581
+22626,8087
+22627,71183,13247,69274,54648,34009,19378,81364,6995,71854
+22628,33854
+22629,11608
+22630,72020,64094,75421,5691,23725,21590,30843,73282,81305,10721
+22631,5050,69213,37910,41350
+22632,65571,56128,38409
+22633,68007,15448,35570,39753
+22634,68063
+22635,58375,80993,23615,33969,79334,1291,50511,48605
+22636,5057
+22637,63590,14613,43074,59995,60268,68909,39128
+22638,1678,46845,67464,36287,21661,74684
+22639,55838,10459,26235
+22640,72457,71651,13785,67213,25368
+22641,33984,70553,34862,41683
+22642,18237,19357
+22643,16079,42759,60990
+22644,25643
+22645,80669,35551,6227
+22646,55509,79323,22154,61940,17537,35287
+22647,18090,47219
+22648,30244,2795,80899,78273,11476
+22649,67926,18105,24513
+22650,31368
+22651,35332,3438
+22652,368,63600,58670,76412,78032
+22653,15521,61363,58608,36274
+22654,55549,9028,77911,82126
+22655,48500,5643,49467
+22656,72830,20988
+22657,12772,59035,79577
+22658,55968
+22659,18273,18002,2115,14515,50155,59814,20993
+22660,54709,68525,79932
+22661,78808,73407,30259,8495,48917,14645
+22662,9628,28153,3947,45562,49467
+22663,63832,22806,64677
+22664,72174,62422
+22665,19723
+22666,59126,24818,21797,20383,28606,80094,2891,73126
+22667,81387
+22668,35640,32654,73394,35214,17942,39725
+22669,77563,57884,25983
+22670,78411,9963,59581,23117,76725
+22671,38949,22169,29201
+22672,30775
+22673,39600,46861,64679
+22674,76847,28044,53096,49070,77955,28270,53064
+22675,67740,511,52217
+22676,5891,42064,55551
+22677,67027,26667
+22678,60421
+22679,36120,22828,10318,32641,23866
+22680,23974,44995,73886,38388,68909,42906,2108,78284
+22681,40620,13129,6679,4778
+22682,4919,21504,65675
+22683,63139,41835
+22684,65821,31393
+22685,21367,62048,35989
+22686,16894,31824
+22687,13008,59381
+22688,51497,14381
+22689,8900,75503
+22690,59845,37891,72167
+22691,21857
+22692,63624,914,36520,45196,64983,38814
+22693,75911,74110,18658
+22694,29789,43895
+22695,7213,39488,68992,39130
+22696,46958,45100,59551,67784
+22697,27384
+22698,18918,5677,26689,32839,79513,8498
+22699,19210,16510
+22700,17679,11962,54515
+22701,64926,44129
+22702,76205,598,46160
+22703,45997,59483,78508,69305
+22704,77657,31648,5214,55315,4322,67884,7473
+22705,10445,74311,39196,46586,72299
+22706,36215,59712,14099,70558,40773,78884
+22707,72356,73765,66902,77755,69180
+22708,65545,27390,3902
+22709,40619,33698
+22710,44370,2199,75254
+22711,48360,50903,45397
+22712,16464,11002,72643,72675,72599
+22713,19572,53175
+22714,20438
+22715,77256
+22716,68191,44594,53430,38028
+22717,3914,37789,26242,1277,20212,78575
+22718,23626,35256
+22719,1876,61072,27732,31411
+22720,1028,197
+22721,66517
+22722,44556,36729,39434,75465,8594,72018,70122,65028
+22723,29583,15790,21636,54583
+22724,74337,11671,29527,34759,4855
+22725,62498,15275,44833,16407,76894,67016
+22726,33559
+22727,19278,54319,29094,15042
+22728,20732,38274
+22729,69387,36195,31167,44962,46120,7816,16632,77792
+22730,14277,63833,29394,54068
+22731,14449,18732,44206
+22732,76271,7292,21565
+22733,40604,64761
+22734,39649,27793,81559,54030,30507
+22735,7377,30471,25977,7335,19217
+22736,8887,23180,39429,13683,20452
+22737,36883,32841,62621,78256
+22738,24796,4668,66965
+22739,14671,48713
+22740,38116
+22741,27669
+22742,64964,6105,27566,72566,59439
+22743,18847,44563
+22744,46470,26268,72092,34824,10664,17982,58593,33855,60798,79659
+22745,20186
+22746,56343,40093,34765,5113,4158
+22747,6744,76622,30661,35924,43979,39129,46383
+22748,77822
+22749,28339,26257,22975,41678
+22750,71266,67064,77868,9476,13942,166,67844,58087,67540,80063
+22751,4497,51900
+22752,54179
+22753,36811,52514,16835,50914
+22754,68220
+22755,11627
+22756,51958,67800
+22757,33807,13683,49620
+22758,33019,19981,31507,2641,42186
+22759,13901,14847
+22760,79728,70805,30728,49650,72911,15672,33719
+22761,11826,53474,57358
+22762,75204,10701,52827,26635,1132
+22763,28899,73668
+22764,76097,55538,69006,63354,77669,434,32292
+22765,18878,15732
+22766,81702,28004
+22767,5588,29456,44169,13105,14218,55628
+22768,72483,38332
+22769,1624,39078,68208,34348,76541
+22770,60346,32236,29181
+22771,25305,18971,34500
+22772,46062,50716,34531,4974
+22773,24104,34110,77998,19070,63356
+22774,20607
+22775,731,68695,38240,44363
+22776,73114,43943,38539
+22777,61675,28704
+22778,58502,69681,10835,18376
+22779,16030,7388,55598,39142,24703,8160
+22780,16245,5050,676,1435,21245,39603,37874,23752,61478,47663
+22781,921,26804,28855,40561
+22782,35586,66999,7819,47814,27941,37658
+22783,80048
+22784,29699,11113,46114
+22785,77545
+22786,73398
+22787,79834,22859,61030,50154,6938,62371,9523,2703
+22788,71483,13317,7716
+22789,10518
+22790,57657
+22791,35749,26005,59464,1369,80178
+22792,23110,45775,28613
+22793,64218
+22794,27990,54975,37932
+22795,15803,36851
+22796,6143,24315,8748,37596,50303,35146,2903,27258,17222
+22797,69832,54572
+22798,7029
+22799,48392,56794,19359
+22800,34226,56564,55278
+22801,81819,18922,52502,16440,37207,43443,40248,9041
+22802,42693,13396
+22803,40468,23972,42750,52032,16748,2967,48676
+22804,52743,4273,22204
+22805,65709
+22806,28626
+22807,30737,26022,43363
+22808,56854
+22809,59634,34932,7291
+22810,16572,68285,40802,17629
+22811,24800,13724,50540
+22812,48780,21958,72056
+22813,76236,50861,55526
+22814,40029,7573,4064,17100,71474
+22815,19786,54580,39164,47440,77454,29931,46908
+22816,52095,81336,75846,57750,5852,51755
+22817,45388,38828
+22818,1278,50936,33360
+22819,63764,26674,22464,44537,33485,15123,4991,33310
+22820,62026
+22821,61017,59830,24045
+22822,41800
+22823,81608,73285,11995
+22824,65210,79800,17821
+22825,8306,81157,45486,4086,56548
+22826,80766,31428,63388,19356,54530,13026,386
+22827,25061,12444,60413,21753
+22828,21636
+22829,63844
+22830,73870
+22831,33072,59879,42578,46311,27568
+22832,65842,53621,51876
+22833,22282,63980,75332
+22834,51839,25099
+22835,28461,37355,59728,51132
+22836,6764,50920,77241,57162,18445
+22837,62487,17008
+22838,1527,28672,5393,32534,31709,51371,19587
+22839,42951,47502
+22840,9172
+22841,65273
+22842,28993,54087
+22843,29192,46866
+22844,9569,14910,22526,53599
+22845,26917,76864,41162,45192,76410,50615,65464,49325
+22846,47779,30457,67504,22551,40060,8521
+22847,25579
+22848,49270,2696,14343
+22849,25693
+22850,4612,15628,59816,33510,41964
+22851,23288
+22852,31139,79320,76183,41420,53267
+22853,73658
+22854,38484,20538,40776,67163
+22855,35454,12883,11875,70505,66737,41214,70747,46211
+22856,80422,39932,29482,14043
+22857,45998,40351,12910,50629,47129
+22858,18150,1188,81115
+22859,67656,75667,691
+22860,9377,24881,69854,52883,33850,76231,32302
+22861,72198,2351
+22862,52377
+22863,66180,59287
+22864,31616,26022,42450,11936,9996
+22865,30457
+22866,49092,70070,39560
+22867,11063
+22868,40760,55935,27568,12279
+22869,11095,56259,64233,72780,67245
+22870,70364,33503,22243,27391,28020
+22871,42665,28438,76933,49750
+22872,80293,74857,63122,77240,50749,6706,24176,42152,65329,33022,5663
+22873,55570,28746
+22874,20524,59403
+22875,14040
+22876,81877,45121,16912,67019,75925,53652,5231,56962
+22877,34256
+22878,14857,16739,40016
+22879,401,8949,20297
+22880,61509,27841,52919,5208,5545,57115,42889
+22881,29648,46900,72523,29669
+22882,33097,70180,19743,20310
+22883,46372,48816
+22884,35582,50667,11771,2081,34142
+22885,29235
+22886,15593
+22887,52587,12370,59088
+22888,33008,5284,57834
+22889,43086
+22890,34595,60401,49915,7508,52729,69839,28435
+22891,56237,81386,23463,59224,63314,26279
+22892,35270,55615,34249,72069
+22893,64182,40293,2085,11048
+22894,8225,3414,55668,64004
+22895,71275,25895,77987,37807
+22896,70010,36390
+22897,78349,70099,41818
+22898,66350,65834,27284
+22899,56872,66863,18481
+22900,40755
+22901,61996,48502
+22902,26593,39463,80478,54338,8516,41897,54071
+22903,4937
+22904,3172,24695
+22905,52748,77806,6065,46228,27209,70459,41556,77738,13683
+22906,40824,16602,24503,16439,66732
+22907,22647,15326,9651,27918
+22908,20652,30719
+22909,74815,73675,5468,8107,79325,57782
+22910,76424,32738
+22911,3194,20663
+22912,10174,6927,9538,78999
+22913,12663,60996
+22914,12251,67793,65650,25290,66250,61558,64994,41525
+22915,59081,6503,69207
+22916,25491,37128,24890,24026
+22917,27549,14886
+22918,65324,26235,12834
+22919,13634,80167,50745
+22920,52557
+22921,40304,25386,75221,61185
+22922,70176
+22923,65376
+22924,4991,71672,44879,55044,5911
+22925,26703,77191
+22926,42800,75186,77554,53144,72440,26176,15526,21098,69003
+22927,70534,50649,39794,54259
+22928,31201
+22929,74514,15587
+22930,39354,9143,19382,24804
+22931,46788
+22932,56384
+22933,6620,61212,77768,70553,62084,53915,8204
+22934,50552,14293,8918
+22935,20438
+22936,47662,16162,66968,72012,56561,33310,2043
+22937,8406
+22938,13043,18397,22137,68721
+22939,61383,15273
+22940,35002
+22941,48563
+22942,73784,9478,12913
+22943,56945,17645,132,50813,58768
+22944,36847,37502,23249
+22945,80238
+22946,13324,15010,37104,40006,34352,51502,73598
+22947,39578,3754
+22948,40024,16126,38512,42633,61758
+22949,53067,53370,12313,56194,20205
+22950,3641,68650,34759,79586,78088,30017,1986
+22951,40604,38042,12285,47254,45951,8858,39900,69131,32302
+22952,51443,39300
+22953,39554,15118,77444,33855,71275
+22954,65080,11459,32196,48441
+22955,22066,3175,1249,39971,19201,38788,53650
+22956,67745,31862,66076,69033,77917,11579,25011
+22957,37469,6819,64821
+22958,19593,44316
+22959,35642,71112,81345,81862,36848,44614,26858
+22960,80936,74035,16979,32709,35513,14679,81536,38732,50206,78293,22842
+22961,21428,43351,33606,70031
+22962,32736,10770
+22963,18726,53533,32413,9327
+22964,34493,3200,48314
+22965,78180,23229,44814,6012,55406,2180,78521,52348
+22966,78642,258
+22967,61040
+22968,17864,48234,30561,77825
+22969,43968
+22970,16677,72515,57281
+22971,34135,38740,50315,68478,28237
+22972,59858,6891,14392,51690,26155
+22973,4160,14608,10086,73670,66452,48103
+22974,58744,80481,77392,46341,81468,3259,16485
+22975,3749
+22976,69940,77661,7869,14935,14103,68174
+22977,12929,42019,54967,90,75517
+22978,75988,57916,43605,58151,39762
+22979,40266,27003,61489,55465,45830
+22980,14714
+22981,42055,22969,53977
+22982,42068,56310,16230,57231,31187,30444,16174
+22983,11591,52049,16912
+22984,382,81378
+22985,80587,7314,8008,60402,26084
+22986,40078,55129,75512
+22987,598,15189
+22988,2280,33556
+22989,20443,35820,7778,49277,55529,6212,16689,4075
+22990,42749,33286,76590,71943,1413
+22991,39528,7532
+22992,44307,19364,68413,60470
+22993,30281,64393,22181,81632
+22994,27865
+22995,8587,46206,9152,44570,35183,70782
+22996,74516,37484,33423,1076
+22997,42396,13516,11594,45206,24346,50340,49338,50610,12264,24227
+22998,46504,9126,2551,76153
+22999,17702
+23000,29735,39286,70091,18886,4474,72793,2921
+23001,81711,13798,7853,46222,81771,36020,69788,76988
+23002,33129,80623,14663
+23003,31125,15002,36531
+23004,32279,78658,59211
+23005,1664,2109
+23006,21624
+23007,27413,48924,11509,36760,48450
+23008,14048,17705,15926,57243
+23009,16233,40106
+23010,50664,69261,24557,62811,37763,57182
+23011,43129,68307,1941,35646,65376
+23012,39590,54083
+23013,79094,35601
+23014,44095,5497,65282
+23015,48463,14677,48976,6089,61320,56085
+23016,19112,7902,73774
+23017,38261
+23018,74826
+23019,76576
+23020,48981
+23021,22789,31584,61328
+23022,31753,74394,24236
+23023,59002,78802,46574,30109
+23024,16643,66763,7583
+23025,43398,29680,23391,51434,29617,80916,4889
+23026,56328,49025
+23027,69981,22714,79492
+23028,27139,58263,11420,63837,10210,28804
+23029,73167
+23030,38132,35807,31026
+23031,67963,55324,32180
+23032,56311,11234,59578,44880,32025,33854
+23033,47422
+23034,9761,2433,30291,11938,57114
+23035,35237
+23036,69998,70243
+23037,14735,77065,7688
+23038,37625,24606,49778,20853,28600,44804,10409
+23039,44567,50410,65921,10252
+23040,18244,81208,74212,53928,11154,48350
+23041,54002,22013
+23042,5060,64254,74531
+23043,18267,67122,68561,51060,59690
+23044,61461,14627,58652,27969,74416,26944
+23045,51315,4431
+23046,47376,78427,55454
+23047,39327,20437,30503
+23048,27501,56246
+23049,81053,15796,52407,69506,1357,19166
+23050,17063,2912,6094,20836,30318,79984
+23051,30875,20200,68180,58681,47190,51695,53272,40885
+23052,4047,25390,58876
+23053,25913,33449,73974,18583,3559
+23054,6062,14103,11614,62803,25961
+23055,32156,44095,29060,24123,57849
+23056,76124,62461,24184,24256,52246
+23057,50899,73336,16373,53600,28652,35575
+23058,6173,45986,64595,34555
+23059,2607,77105,1847,72945,38006,66116,58964,1935,37531,76402,24353
+23060,76901,61738,10275,66331
+23061,64920
+23062,55744,34627,40964
+23063,22351,40702,81451,31458
+23064,6522,27085,70095
+23065,60311
+23066,39994,46137,35730,35850,8751,19149,73031
+23067,18989,24214,28380,25223,54942
+23068,1701,31363,23659,8143
+23069,36110,78261,48020,76793,42405,8656,8591
+23070,41611,56924,9088
+23071,70118,50525,27101,23089,60470
+23072,80597,68679,36767,36674,16430,39728,31035,28199,53782,68666
+23073,44253,76242,65019,42741
+23074,751,72739,77634,44524,19891
+23075,40023,23037
+23076,55257,27424,76170,16124
+23077,40646
+23078,63100,50723,64983,24266
+23079,69737,42822,33054,25397,35623,11518,53626,20530,79203
+23080,64671,43754,16263
+23081,35103,37800,48788
+23082,46092
+23083,67553,23233
+23084,63961
+23085,57208,36496,72631,13257
+23086,6093,66141,8909,3464,49696,16278,2101,12687,18527
+23087,2908,73739,18559,64452,5400,73653
+23088,68103,18053
+23089,71693
+23090,70750,52492,65383
+23091,31047,21698,67146,23310,48426
+23092,59728
+23093,32078,62771,60639
+23094,77557,8887,40185
+23095,43277,60030
+23096,76921,2957,24210,73346
+23097,50909,7521
+23098,34595,33293
+23099,39243,7577,1983,73729,29150,69733,9199
+23100,55717,25718
+23101,29935,5614,2825
+23102,78923,7693
+23103,77911,71552,10860,25239,34871
+23104,33072,17453,4070,855
+23105,32501,80706,20620
+23106,23382,37873
+23107,73795
+23108,66645,65555,71481
+23109,71367,7373,71910
+23110,52164,31585,40717,62935,58033
+23111,66729,4292,33890,10633
+23112,43301,22783,80622,7085
+23113,13253
+23114,39994,67935,30630
+23115,46643,65862
+23116,44400
+23117,4102,82074,18059,8057,15522,43276
+23118,67757
+23119,18786,15036,53207
+23120,59703
+23121,20582
+23122,24865
+23123,11829,67621,18154,341
+23124,61828
+23125,47795,42989
+23126,52091,45622,59876
+23127,52072,37997,24897,56854
+23128,15066,80719,2874,37260,50368
+23129,8499
+23130,19343,1564,70632,26027,71312,68724,17304,19721
+23131,39459,78289,80452,81013
+23132,59782
+23133,29245,2288,64722,51565,23566
+23134,46643
+23135,16904,52643,32905,20000,25251,79414,30206,20957,72219,41720
+23136,3654,51752,52391
+23137,11252,8657,62592
+23138,77600,48946,14629,61703
+23139,79690,32449,47430,76318
+23140,71601,78634,24071,33766,76579,3255,8490,8102,62673
+23141,55458,78998,2645,518,10553
+23142,27976,24547,19787,16891,33339
+23143,24760,16210,6834
+23144,10257,47374,50691
+23145,61474,68509
+23146,70407,73001,32710
+23147,16308,76765,77423
+23148,194,59143,63407,52377,13078
+23149,24487,19591,65429,23346
+23150,5471,40552
+23151,34896,49437,59739,19219,31350
+23152,46840,22600,73128,73913
+23153,77721,9078,72490,71457,28806,50340
+23154,15853,31815,46932,15586,12954,58348
+23155,23089
+23156,9234
+23157,38733,30174
+23158,78802
+23159,43522,25460
+23160,18670,13066,76287,3802,4735,47483,58242,78667
+23161,60308,68747,60384,64179,5309,32825,52281,74158
+23162,48272,39639,11233
+23163,64926
+23164,15404,13277,29913,42830,71305
+23165,31445,76064
+23166,15238,39643,48736,17841,30441,41648
+23167,48563
+23168,69268
+23169,57228,50132
+23170,51551,58611,10119
+23171,77140
+23172,73748,34576,38893,37367,1555,71120,33912
+23173,65657,56502
+23174,57544,35397
+23175,51350,79987
+23176,74749,47530,63851,64243,37951,48183,44516
+23177,22802
+23178,53326,62794,41267,18773,28317,82040
+23179,11291,57065,80949,48297
+23180,10420,49300,74074,72480,81457,34411
+23181,35333,42134,72608,59804
+23182,53092
+23183,79585,43274,8887,33987,63663
+23184,26202
+23185,22624,76595,20386,64949,46123
+23186,72620,18130
+23187,48925
+23188,1596,67434,18159,73549,60725,20316,81186,39554,55042
+23189,37551,77354,6644
+23190,65059,77489,2833,14429,48277,973
+23191,53719,26964
+23192,11504,5164,1996
+23193,56300,3011,30279
+23194,30072,46842,32077
+23195,23547,47001,1079,34941,28209
+23196,59482,12019,73035,30603,30543,13315
+23197,14374,29093,26745,63584
+23198,40522,21799
+23199,5094,22311,75772,34978,62280
+23200,34045,6688,25837,73395,40902,54543,22697,6887
+23201,26651,66440,40447,59848
+23202,63754,38266,52850
+23203,25792,42134,32971,20594,75441,47381,40122,36178,77142
+23204,12603,66837,20749
+23205,2685,17392,30792,66311,10001
+23206,30926,54790,70624,62423,30687
+23207,17361,74760
+23208,55968,72491
+23209,64526
+23210,81463,17899
+23211,53963,24369,56525,31352
+23212,51362,9599
+23213,41110,11868,70813
+23214,59173,2606,72845,56297,22721,44217,47229
+23215,37152,6988,63191
+23216,347,66158,22482,49600,41277
+23217,44816,47280
+23218,61839,18525,23186,21070,65611,45041
+23219,75569,74852,54097
+23220,53788
+23221,52603,58450
+23222,5108,31989,9830,66494
+23223,75581,6115,30858,14169,46435
+23224,58523,5051
+23225,28494,71960,62872,54738
+23226,40985,10850,614,22931,4660
+23227,51920,7813,67968,22870,75751
+23228,4251,59942,25835,68756,20144,23541,35796,77301
+23229,54676,61447,6627,81442,36758
+23230,61740,58329,58740,6052,35348
+23231,69800
+23232,80223,81793,18627
+23233,80552,27273
+23234,64194,48570,63860
+23235,39292
+23236,30165,20325,15328
+23237,36271,15474,29684,78823,26541
+23238,5181,22888,79148,32360
+23239,1074,21201,47365,37933
+23240,19907
+23241,52832,51704
+23242,42517,18396,5099,77055,60879,80821,17722,49402,52214
+23243,25377,12739,3258,54744,80754
+23244,25316,28403,82063,78700,55916,61407,79466
+23245,38576
+23246,25638
+23247,24557,10765,44744,18162,22912,8315
+23248,52521,39464,73403,1974,43571,48684,52033
+23249,42413
+23250,23672
+23251,10705,7665,5050,76469
+23252,57451,54231,15410,66101,30751,20227,45011
+23253,26388,36113,69847,61070,74480,8242
+23254,44356
+23255,79444
+23256,16908,29830,32254,57942,34068,51631
+23257,56090,4154,37886
+23258,60928,72279
+23259,63916,41804,479,44156
+23260,79517,71713,19014,15475,1401
+23261,8231,8676,13625,34480
+23262,78895,21588,15684,6988,74798,26312,57392
+23263,19327,21457
+23264,31526,51824,27272,24447
+23265,64397,27648,34038,32747
+23266,24464,4331
+23267,58453
+23268,54600,14017,60056
+23269,42611,51519
+23270,2139,27451
+23271,30052,114,28856,41563,50503,19892,17002
+23272,54086,61113
+23273,43083,72277,26906
+23274,21563,48106,40751
+23275,61134,57775,40508,2131,76490,39064
+23276,2845,77753,79362,28315,60525,33020,58739,61257
+23277,5876,8357,76899,66254
+23278,66738,39286
+23279,75287,40357,78880,24801,58503
+23280,33278,56621,36531,6199,49155,2292,55780
+23281,12556,66063
+23282,45131
+23283,56509
+23284,18773,76475,58639
+23285,46938,52397,30776
+23286,56838,1681,3750,26080,75832
+23287,29829,2965,16303
+23288,44844,58912
+23289,5200,26280
+23290,2097,75672,63596,26576,15773
+23291,41693,76409,29683,32479
+23292,38765,53090,61072
+23293,19385
+23294,58505,69844,47112,72361
+23295,8630,69730,49562,62170
+23296,80862,30717
+23297,58733,27858,9922,17516
+23298,62830,71316,27566,32299,72377
+23299,58957,39372,80779,75828,5190,77784,36771,32289
+23300,29175,79624,54946,35171,71906
+23301,29675
+23302,50333,49214,69596,49641
+23303,57201,1532,42500
+23304,51800,25549,36746,66964,49948
+23305,7172,8113
+23306,75012,11111
+23307,14056,1654,78120,69643,75834
+23308,37650,11442,76583,61529
+23309,73613,35552,834,71140,39855,37358,18789
+23310,13142,18279
+23311,47172,13958
+23312,7539,21624,25872
+23313,76644,60524,26225,57602,38840,64671,54585
+23314,15266
+23315,54926,37848,54624,66490,33440,58171,25299,56236,21635
+23316,79833
+23317,10984,7984,51105,75320
+23318,65981,300,79502,14104,55073,46614,81372
+23319,47147,11704,23216,12195
+23320,36982
+23321,4796,7498,11072,52365,7665,45192
+23322,1636,4101,20874,31819,43550,19627
+23323,81450,47604,7759,79615
+23324,78320,54434,33928,27965,3446,70303
+23325,14374,58008,38010,27075
+23326,44489,61487,13055,50617,38650,39989
+23327,8522,6230,12657,28198
+23328,49007,9802,9851,48279
+23329,15230
+23330,74425,79679,78935
+23331,57130,37911,46847,16278,13302
+23332,47146
+23333,42226,15068,80574,75296,14638,8445,73197,60269
+23334,18553,59583,14771
+23335,61763,31626,63719,59517,37924,40522
+23336,21694,63641,49218,46297
+23337,63789,21788
+23338,40160,59216
+23339,73325,58481,27564,73234
+23340,73247,52097,2617,23089,36184,52876,47502
+23341,1571,23837,52191
+23342,65599,30310,14615,25846,80222
+23343,69196,6761,32520,23630,8333,51543,42096,22127
+23344,77462
+23345,40497,63666,14775,67320,18888,54263,68195
+23346,11673,28902
+23347,7860,4395,40655
+23348,78165,9473,31604,18162,74245,69158,79645
+23349,38221,146
+23350,72686,72525,35863,69519,36953,22034
+23351,60914,2431,58339,77097
+23352,34494,43538,21122,41225
+23353,60826
+23354,56907,25706
+23355,15625
+23356,57528,47880,45793,37515,77644
+23357,23300,71082,20692,15775,4236,19628
+23358,48904,53842
+23359,49601,16439,47731
+23360,25615,39865,23604
+23361,38783,65094,43660,77984,77389
+23362,36829,74236,59325,62244
+23363,71983,5156
+23364,46945,20245
+23365,78639
+23366,25212,60980,35317,64009
+23367,61120,4508,80401,21648
+23368,47604
+23369,47212
+23370,56405,76974
+23371,48112
+23372,569,48335,442,50394
+23373,44725,24382
+23374,2326,9999,46658,46461,2445,43816,80493,15862
+23375,71060,73310,14363,52613
+23376,44457,28471,15286,57909,36472
+23377,4093,10257,73440
+23378,75869
+23379,27361,46731,40611
+23380,81155,43270,41621,55010,45701,80150,5139,19062
+23381,20726,28203,14103,13741
+23382,79593,6780,51638
+23383,37631,44791,69410
+23384,67709,61899,49503,63235,35231
+23385,64450,80307,3935,61452,12812
+23386,27952,15029,22287,3851,20516,21111
+23387,11431,51439,16999
+23388,1612,63639,73021,72344,66970
+23389,12193,81155
+23390,41146
+23391,41161,859,58655,9472,70721,51225,15841,54048
+23392,67006,63146,32840
+23393,1967,50583
+23394,40897
+23395,42033,76121,28068,33472,41898
+23396,10683,21511,33791,36797,45706,78672
+23397,8743,61173,12848,42204
+23398,33781,62255
+23399,8454,7871
+23400,64852,52785
+23401,62794,68585,63503,14291,5303,48624,2718
+23402,33825
+23403,12389,23951,71510,2714,66163,11099,3399,80235
+23404,43959,18340,5071,38471,48341,48174,14776
+23405,54985
+23406,68140,18061,70515,77462,79500,54359
+23407,10263,41071,32298,55233,68659
+23408,18647,39579,5367,39799
+23409,24290,51316,27296,71336,1599
+23410,39578
+23411,80864,73400,8893,45563
+23412,77275,66053
+23413,69626,14183,9678,20905,68009,24874
+23414,46703,13055,12406
+23415,50975,50290,12859,21786,64160,42078,58928
+23416,12024,62387,68810,64374
+23417,23339,14726,79916,17325,21211
+23418,806,23337,39831,73438,50239,21768,14528
+23419,37018,20802,49573,30112,44084
+23420,73684,14819,59230,11304
+23421,7262
+23422,27321,39077,57066
+23423,31992,8983,56642,26077
+23424,11371
+23425,51919,45446,78287,23525,44150,60760
+23426,80085,35741,66314
+23427,80666
+23428,29717,81959,48684,64581
+23429,66497
+23430,77299,79951,68848,79004,63621,7666,2970
+23431,73269,65820,38311,8506,474
+23432,22444
+23433,49726,79024,3105,21019,5890
+23434,11489,38690
+23435,12382,79346,57339,31436,4919,12783
+23436,34896,23133,66786,799
+23437,56268,76622,69340,66680
+23438,60856,35783,35425,71482,48434,33109,56486,76717
+23439,34353,22092,78623
+23440,35648,78940,60271,60412,34989,26693,31724,51208,35654,2325,80672
+23441,62661
+23442,45072,1725,58148,80910
+23443,51067
+23444,56998,40070,44257,66862,48345
+23445,67794,44646
+23446,54205,18600,11825,27757,74416,65284
+23447,68312,63873,52828,7024,50058
+23448,81503,24228,59334,9673,25322,10112,81469,54782,65281,13056,57748
+23449,20345,54426,66659
+23450,44551
+23451,23162,7467,7207,63406,26170,19340
+23452,81789,66604,53547,5864,81095
+23453,4604
+23454,72042,71227
+23455,45706,12176,59573,75869
+23456,40548
+23457,26624,23496
+23458,75011,50868,62891,44405,55064,66735
+23459,76216,14081
+23460,1856,32792,65384,74581,75614,69629
+23461,22935
+23462,74346
+23463,79929,10662,55829
+23464,18065,45336,44068,3500,54998,60470,79906
+23465,10204,6304,41323,63629,19363
+23466,52762,60514,49077,1264
+23467,28808,15465,27501,21901
+23468,20343,77452
+23469,53928,4358,4738,57347
+23470,6722
+23471,44084,5902,26176
+23472,78649,60856,26094,49760,78526
+23473,82053,12922,21944,50432,64737,20595,20683
+23474,62544
+23475,56662,61964,66080,33353
+23476,24248,63118,27365,81815,17996
+23477,70620,388,76606,6947,26128,58503,77227,33177
+23478,41577,34683,24494,56358,3227,10770
+23479,55403,34974,38703
+23480,64000,9136,23962
+23481,13201,44511,10742,44496,39933,62015
+23482,64453,22978,28876,16579,71680,41006
+23483,81616,53768,78420,2915,79044
+23484,1690,61407,39693,10821
+23485,80133,63581,77732,15540,32320
+23486,5458,48821,66766,7223,79241,25614
+23487,43715,52418,31709
+23488,3342,24625,32547
+23489,73749,30948
+23490,58566,22475,25628,66440,9428
+23491,7679,63537,32757
+23492,74082,72520,59992,69044
+23493,45183,30549,56228,51630,55458
+23494,15840,81274,57131,39266,54981
+23495,24323,73146,20015
+23496,19628,11860
+23497,45681,57878
+23498,62649,43815,24155,74753,39713
+23499,63768
+23500,69092
+23501,57636,48979
+23502,3023,68223,21110,63020,11137,36773,13504
+23503,10236,36441,16921
+23504,25606
+23505,52846,18297
+23506,62764,16611,15319,45057,39394,51781,25819,44633,37548,49237
+23507,25267,21806,19990,30824,18780,56637,70735,62729
+23508,28661
+23509,80862
+23510,9122,18048,65389
+23511,45291,17682
+23512,31504
+23513,58087,62858,62007,9381
+23514,62769,62579
+23515,41049,52144,52072,71495,74054
+23516,3471,70464,55139,36909
+23517,81453,19931
+23518,81468,10252,3973
+23519,67223,75869,20185,12678,72732
+23520,40193,11843
+23521,49266
+23522,18392
+23523,45846,27085,8033,7702,81746
+23524,69767,56140,35437,25432,31486,1681,25812
+23525,12478,23943
+23526,58968,5984,43232,5612,69085,17714,11040
+23527,59484,1491,16189,18257,28685,60848
+23528,55043,65697,57104,14445,10524,65562,9058
+23529,79990,64155,70539,52552
+23530,68266
+23531,77788,29402,65251,41777
+23532,66588,48471,35699,73675
+23533,54630,69189,2870,30978,4343,61819,54094
+23534,699,12286,13675,60128
+23535,6887,51634
+23536,14856
+23537,64177
+23538,52136,75417,31077,35805,65677
+23539,6989,66714,72194,58534
+23540,47801,66255,4392,37311,52044
+23541,35229,61232,48889,71479,1575
+23542,24424,48278
+23543,36331,70088,13011,26023
+23544,69537,64410,56701,73964,22377,61957,8957,26681,23114,8646
+23545,3434,42906
+23546,81828,61179
+23547,48308,56190,13181,13336,23709
+23548,71377,1152,40486,35147,41481
+23549,3670,36260,18548,52921,3476,80898,44863
+23550,11975,22804,11898
+23551,29929
+23552,80645,81516,54830,3942,71092,77234,73359
+23553,52997,5998,46508,66823
+23554,60218
+23555,53256,28535,65039
+23556,70219,23706,32579,17206,81530,60142,48604
+23557,16850,47543,40063,31032
+23558,40616,28899
+23559,32701,79420
+23560,29607,27625
+23561,14836,1545
+23562,15032,79346,35430,57831,58570,80048,4111
+23563,62489
+23564,7915,61183,22451,70502,13630,11810
+23565,7496,5012,51482
+23566,67224,37631,42013,34761
+23567,14205,81530,45817,75782,77881,24578,7251
+23568,36939,4497,69610,43002,33388,13891,12448,10955,45480,26008
+23569,80266,80395,41505,40574
+23570,42250
+23571,52408,50066
+23572,62240,71071
+23573,40797
+23574,24461,5300,10659,66,18924,41562
+23575,4169
+23576,17681
+23577,26072,77200,73777,8148,16818,11574
+23578,67944,55000,3384
+23579,76371,24761,21549,54588,36070,30116
+23580,12543,2753
+23581,22709,19925,37311,48969,73906,16036
+23582,42575,80988,50646,48884,15885,1016,7271,3828,67018,7816
+23583,21115,42121,59624
+23584,68868,52174,11279,37689,76192,39369,54445
+23585,1983
+23586,12755
+23587,51449,32892,48098,5308,29031
+23588,32514,71416,43570,63186
+23589,52106,36568
+23590,14081,66595,4141,1922,43836,30174,58033
+23591,50163,41244
+23592,19101,37403,53216,67963,32941
+23593,71703,43172
+23594,81249,62609,69973,9875,58405
+23595,71760,42888,55643
+23596,5369,33629,543,9690,68288,14114
+23597,81058,60413
+23598,43474,13,40745,1353,78799,15157
+23599,5612,3307
+23600,10661,30192,5289,77351,15772
+23601,56915
+23602,62551,69347,51583
+23603,46427
+23604,27336,74880,68493,57132
+23605,24603,70880
+23606,19873,46500,12903,3790,10233
+23607,54741,36273,74619,13666,73669,25306,80987,11083
+23608,42354,44711,58747
+23609,68240
+23610,20648
+23611,10269,82106
+23612,42858,65699,63120,29701,69727,62192
+23613,22254,43130
+23614,5348,12505,24887
+23615,69964
+23616,7089,62967,3835,81898,15590,35070
+23617,61195,4003,53403,35115,2403,67593,24590,43515,25417,64108,20442,30233,37126
+23618,27486,74898,23129,4000,74050
+23619,44001,66123,43987,39789,47665
+23620,64719,11750,30986,57480,24694,43627
+23621,35706,30575
+23622,17463,4049,53383,47611,41605,10304,21747
+23623,20828,75930,40725,81158,39094,43893
+23624,26375,64733,41728
+23625,21358,26215,3339,61002,67584,39639,12081
+23626,71862
+23627,81819,74722,74354,25484,77814,81732,54758,69664,21645,57018
+23628,48020,29562,51256
+23629,70542,46553,37166,6527,11427
+23630,43013,55234
+23631,53662,39295,50171
+23632,24666,35832,74341,53685
+23633,7539
+23634,15587,28109,29059,64576
+23635,45564,36516,74935,45536,29317,56506
+23636,2309,65349,78408,34729,72834,69337,43324,65548,16116,7953,37384
+23637,82130,7936
+23638,69213,8421
+23639,43301,31918,75911
+23640,28325,68385,68360,70273,52879,23850,15172,64430,21311,82048,53681
+23641,46171,22691,45180,27930,51423
+23642,17465,25931,50596
+23643,69395,2679,54550,52187,73493,31437,76292,26575,79352,21736,73665
+23644,25096,34582,8134,41652,18669,46827
+23645,32847,17935,13964,21575,57214,4891
+23646,68676,33624
+23647,13701,62920,71497,28558,62154,53024,71377,79461
+23648,75479,13141,67569
+23649,40179,44878,74260,54963,13794
+23650,69718,76542,64786,62237
+23651,46085,68820,54954
+23652,69166,59263,27743,55699,36219
+23653,48436,42800
+23654,30586
+23655,19628,69506,69943
+23656,28020
+23657,29848,77138,37311,72188,36742
+23658,32986,63916,69483,61768
+23659,76396
+23660,9607,499,68118,54222,5517,78782
+23661,26812,6339,8227,77774
+23662,26610,62593
+23663,2400,12741,8660,152
+23664,4779,78723
+23665,61880
+23666,71120
+23667,50243
+23668,35676,37098,28291,1030,22806,483
+23669,67815,15838
+23670,57305,67160
+23671,36071
+23672,3831,51443,21843,22099,30138
+23673,63478,69641,77961,45469,5580,25096,10655
+23674,11545,32017
+23675,48789,3922,20058,67986,4666,34071,10925
+23676,56644,66983,71598,72404,42634,17399
+23677,39004,80747,53019,56747
+23678,71148
+23679,81174,26550,64366,14443,2649
+23680,4308,59866,36368,33941,32830,8315,38676,38214,66668
+23681,80019,60183,45756,65491
+23682,64632,23258,36363,55530,67028
+23683,35213,26770,17968,6071,67580,74305
+23684,74890,43599,25784,5063
+23685,81741,58650,9644
+23686,18571,77831,2887,25687,10081
+23687,8181,60126,59433,52254
+23688,25926,36552
+23689,29472,26537,18902,19257
+23690,45587,36942,38356,7990
+23691,8438,49321,46994,54311
+23692,16232,26022,51834,23065
+23693,14908,37857,51603,17650,73461,40366
+23694,15244,25409,80610,31535,7056,76212
+23695,66706
+23696,67981,69933,4674
+23697,69935,29233,79497,43681,42662,49446,46936
+23698,73268,45835,38149
+23699,75471,47240,51038
+23700,17692,60622,500
+23701,19577,22293
+23702,38567,49981,81463
+23703,4748,53323,70994,39523,25159,57615,4854,47726
+23704,32829,57700,26053
+23705,77448,65528,14561,30946
+23706,75809,49908,15654,67841,28308,3948,20791
+23707,57208,75905,28487
+23708,49270,4718,67582,38656,57945
+23709,40201,42006
+23710,80002,4707,33091,55868,19444
+23711,14889,21582
+23712,61882,72377,40058
+23713,53151,65664,71627
+23714,34127,72379,59269
+23715,33392,960,31308,45471,46065,47709
+23716,46168,55695,9890,75198,10139
+23717,22947,49949
+23718,38415,3356
+23719,24812,52459,78032,13435
+23720,31898,25514
+23721,41127,14594,50615,29506,65095,72671
+23722,37670,21859
+23723,21791,50517,58604,61775,2525,5285,18443,35995
+23724,36509,59997,49661
+23725,29165,38058
+23726,48696,31246,72955,70256
+23727,43670,35615,40459
+23728,24288,67708,68178,56248,2890,25729
+23729,43220,6119,46299,72072,79334,40815,53377
+23730,35972,21838,49444,55040,10141,55743,46088
+23731,67757,77313,79686
+23732,71205
+23733,28212,73839
+23734,82135,74061,7614,81082,15648,46092
+23735,71984,13775,68266,9470,24693,24119,26812
+23736,68745
+23737,51038,10608
+23738,28087,65738,81614,28888
+23739,75712,19817
+23740,7147,28620,10818,25241,31648,40448,67216
+23741,481
+23742,830,31583
+23743,11898,15648,42385
+23744,74438,54630,68686,20140,2138
+23745,16591,78889,76436,24890,778,5848
+23746,78063
+23747,39652,35896,27533
+23748,57083,11640,15874,81065
+23749,22339
+23750,18616,66943,3114,37029,59237
+23751,15715,76578
+23752,32340,66754,80152,54481,16927
+23753,14615
+23754,79023,78704,46490,7076,36955,54895
+23755,16903
+23756,59530,51486,81249,16869
+23757,42237
+23758,56498
+23759,2588,18472
+23760,24933,19501,43160
+23761,79418
+23762,60049,41570,59105,78157,81043
+23763,36317,33206,35141,14290,23881,80241,56509
+23764,68576,66040,9518,15096,40883,39181,40854,27667
+23765,81233,45917
+23766,2871,29103
+23767,2268,14842,68914,12866,18727,49066
+23768,8796,60967,28353,14235,15450
+23769,18776
+23770,71931,43870,21768
+23771,59998,67640,11351,66882,49263,31530
+23772,81345,978,63891,59952,48890
+23773,36160,75198,67226
+23774,8622,31416,43243,1469,75294
+23775,24698,40187,73155
+23776,29465
+23777,80460,38982,35891,17362,47388,31421,81157,37800
+23778,61535,9878,59963
+23779,27019,12128
+23780,60788,10928,3684,39684,54950,70738
+23781,49547,2450,34254
+23782,7221,32224,53102,69325,60181,17501,62374,30380
+23783,39248
+23784,75081,76622,71853,10974
+23785,53425,26560,4808,9538,57705
+23786,56637,77289
+23787,5918
+23788,76619,12235,46361,68780,56511
+23789,77633,58295,13633
+23790,49229,22109,45880,73691
+23791,44380,67155,37487,37164
+23792,10291,7010,54470,61234,34253
+23793,40036,58812,11713,12675,59703,35522
+23794,15331,72711,78202,27246,48607
+23795,79066,8350,78262,15312,68726,66631
+23796,20993,8085
+23797,58673,37372,13575,72216,59473,31043
+23798,23956,32490,40750
+23799,39229
+23800,74460,77491,29997,38450,46932
+23801,47176
+23802,25696
+23803,26731
+23804,7214,19171,30861,10770
+23805,48937,64091,61632,14524,70132,44053
+23806,24372
+23807,31411,55531,24183,45628
+23808,77474
+23809,33316
+23810,15660,55945,48431,44474
+23811,62146,22094,60598,6480
+23812,56764,51404,73907,13680,6060,55967
+23813,17179,4773,12806
+23814,78417,41436,20136,74041,16664,43086,65496,6601,36056,81511
+23815,1957,78223,57893,15486,73850,34755,27940
+23816,34662,62819,17876,21650
+23817,3251
+23818,3455,57902,605,30649
+23819,58305,30307,76124
+23820,78974,48085,20251,14357
+23821,35366,22448,6196,27195
+23822,7494
+23823,14735
+23824,2459,33139,48119
+23825,3697,15842,56502
+23826,28239,66020,28322,35694,61001
+23827,10193,55272
+23828,16554,8014
+23829,68315
+23830,8378,72222,44733,21342
+23831,81374,74145,25928
+23832,12390,73682
+23833,70212,64071,62441
+23834,18575,60024,6450
+23835,64647
+23836,77600,69042
+23837,73856,32335,45628,9316
+23838,13693,26522,53420
+23839,8730
+23840,7507,51319,32226,52826
+23841,7085,23156
+23842,49274
+23843,77665,46601,50306,62133,67571
+23844,82049,16886,1190,54684,38647,38333
+23845,4331,36870,6450
+23846,31483,49143,258,11955,18452
+23847,26796,38609,45975
+23848,8768,65168,32639,32019,82062,58563
+23849,29126,70845,639,13008
+23850,46830,78175,15648,25872
+23851,79883,38372,26893,5432
+23852,13642,78545
+23853,65302,71057,63459,861,62059
+23854,72030,16093,25327
+23855,73225,73766
+23856,36511,40388,29025,3630,9358,19754,11311,17721
+23857,6345
+23858,33235,56475,28833,23394
+23859,66112,55331,26481
+23860,15517,29999,68842,54818,30697,4651
+23861,6953,258,17384,41925,58236
+23862,15518,62591,49165
+23863,11594
+23864,80461
+23865,11293,65344,53473,73425
+23866,28816
+23867,58979,34304,74267
+23868,80548,43586,34972,45158,38070,58212
+23869,17556,73456,26444
+23870,65296,16721,12034,75528,2893
+23871,58052,65945,76677
+23872,76220,59842,31879,32418,70635,77638,28910
+23873,7754,73890,66359
+23874,76581
+23875,31361
+23876,41067
+23877,64615
+23878,12441
+23879,71424,70625,3455,65937,22218,37053
+23880,22612,64640,53580
+23881,29145,6088,50706,5103,23342,65190,4845,46496
+23882,16956,53472
+23883,12743,79067,17483,20194
+23884,20953,47539,71689,1919,33665,47303,42543
+23885,21324,80178
+23886,4885,27719,9123
+23887,76298,46462,16106,57515,48677
+23888,47785
+23889,64113,2412,25118
+23890,34607,66418
+23891,15244,6528,59430,4832,2243,16054,46548,10026
+23892,59360,31746,42096,46627
+23893,63064,73244,59554,71446
+23894,48726,32656,28910
+23895,24266,62877
+23896,32613,19888,61863,11043,36618,73069,31051,76981
+23897,54630,78668,57193,4485,74239
+23898,75493,78477,29858,47567,58012,69063,10492
+23899,13742,6064,76762,38539
+23900,42955,6514
+23901,58649,73094,41188,26594
+23902,27620,3429,32899,12935
+23903,55351,21684,25929,40238,33558,26847,52362
+23904,64071,43036
+23905,13514,35473,45702
+23906,16223,80238,29353,58053,4649,30374
+23907,2013,24067,13690
+23908,34941
+23909,44532,52901,36884
+23910,66921,17322,37212,40351,61285,21068,69202
+23911,78938,75948,19004,12939
+23912,1646
+23913,73018
+23914,3022,20317,38437,10813,6754,51930
+23915,9815,35673,77803,20184
+23916,10651,51599,34746,6782,17291,6241
+23917,63360,58789,31960,47493,4430,2870
+23918,26126,48664,41179,23777,54967,37988,6302
+23919,22895,73490,69031,8541
+23920,61937,21851,78553,11489,25892,47494,29132,10331,12688,6453
+23921,22597,36801,14596,70412,15134,6928,54886,13471
+23922,17963,74932
+23923,1281,52919,24366
+23924,76997,35483,61546,13799,41109,36682
+23925,77952,8994,63730,66199
+23926,79778
+23927,65354,10364,40558,52799
+23928,59012,37787,81993,31412,572
+23929,25074,23399,42913,64137,81922,26256,63191
+23930,33769,49034
+23931,22730,41320,21940,21466
+23932,10454,70791,7130,6883,75736
+23933,75007,42888
+23934,61727,68275,15801,27097,59116
+23935,49042,23668,11899,50471,51544,32814
+23936,41052,41235
+23937,42800,22141,70704,71088,8751
+23938,28234,27379,40198,7267,62153,70531,1282
+23939,67747
+23940,399,49908,48666,14493,61512,63375,43949,40887,15582,73429,31477
+23941,64852,56885,23798,41512,16142,28370
+23942,80222,2749,64717,15174
+23943,34227,17447,55301
+23944,77588
+23945,3824,49053,24742,38370,23169
+23946,34255,77628,19817,64765
+23947,8851,43094,35085,5208,16070
+23948,61114,34983,52964
+23949,73269,74502,64202
+23950,48504
+23951,63199,55615,42730
+23952,78906,67229,61265,73974
+23953,58221,58107,3091,23179,58769,33598,49724,38182,75671
+23954,2061,29310,48436
+23955,62948,79539
+23956,49522
+23957,7789,60257,64807,44300,55362,69528
+23958,50296,35112
+23959,40769,69368
+23960,7858,32524,7089,1617,50168,79675,62458
+23961,41903,15075,64962,42169
+23962,17130
+23963,74174,78516,12279
+23964,64650
+23965,42184,9590,54509,57537
+23966,7052,14735,51707,59491,6727
+23967,56750,35584,6642
+23968,35074
+23969,76428,54915,43397
+23970,72236,14849,48468,31405,68685,57631
+23971,50063,55403
+23972,77630,32589,11482,16458
+23973,63986
+23974,20950,61901,49661,55489
+23975,46983,36508,25847,17434,81265
+23976,10390,61577
+23977,6686
+23978,68388,29280,54683
+23979,68008,58255,78532,70305,6045
+23980,23882,39054,74932
+23981,25260,11603,7010,71297
+23982,27869,32688,70092
+23983,25241,53739,19845
+23984,27874,73570,12935,3930,33552,42309
+23985,13566,55376,16651,52309,9598,52211
+23986,8404,50036,46451,81313
+23987,46664
+23988,53939,3763,21397
+23989,6232,1175,77362
+23990,66262,53209,48781,16352,29650,66842
+23991,81380,28396,25055,52087,25557,5031,74087
+23992,23502,20506,68797,50922,44382,43927
+23993,59449,45624
+23994,69745,23678,48671,74719
+23995,53987,57205,20558,2061
+23996,74124,60992
+23997,10431,72688,66514,33877
+23998,71081,50174,5038,55680
+23999,15751,20604,70994
+24000,38571,71875,25107,49737
+24001,16673,67831
+24002,40915,4034
+24003,12614
+24004,41172,43601,36865
+24005,60100,16078,38313,31356,50289,41149,48865,35069,25648,67704
+24006,47066,80428
+24007,75056,269,37461,72928,6077,31955,75212,20506
+24008,35742,78661
+24009,37359,41676,25333
+24010,16378,3169,11002,63901
+24011,20265,39804,22439,44664,79710,71258
+24012,45993,44238,143,10413,37244,58719
+24013,75440,65970,69738,54700,64529,43964,26866
+24014,71353,4003,73617,64469,49969,20153,39125
+24015,57962,39879
+24016,17646
+24017,7994,29715,52000,22135,12057,71239,1250
+24018,65372
+24019,68518,54912,11273
+24020,6424,20679
+24021,81106
+24022,30084,75060,79202,15029,49267,46728,14916
+24023,20934
+24024,43307,70231,53709,8863,58228,47279,30908
+24025,36002,13692,62409
+24026,78639
+24027,67504
+24028,53078
+24029,40875,331,26518,44058
+24030,51248,42404,8983,38382
+24031,80625,29922,60066,40470,77919
+24032,2079,48292,79652
+24033,58736,49962,75471
+24034,31456,62161,48974
+24035,60167
+24036,59081,49558,29130
+24037,1750,77859,72087,38664,26817,53635,25075,11786,26141
+24038,14010,37104,25571
+24039,52610
+24040,20225,6763,13409
+24041,51349,51362
+24042,76172,22604,41185,63479,35079
+24043,21222,75892,55123
+24044,42865,37139,52158,25776
+24045,71353,11233
+24046,31891,7825,36885
+24047,11002,39192,81623
+24048,51431,342,8570,32928,24146,30340
+24049,57942,50002,49065,5453,56968
+24050,29776,67101,78273
+24051,70875,30233,73451
+24052,15123,63627,64956,81828,11713
+24053,75275,73675,42291,23846,25116,65002
+24054,78952,81591,6002
+24055,48103
+24056,30473,13047,54448,51999,24850,64296
+24057,51204,40792,50626,25840
+24058,75447,74686,34328,71711,31810,42125
+24059,67076
+24060,40471,61173
+24061,17322,30705
+24062,34802,67071
+24063,61602,79726,21386,79570,33781
+24064,21550,59835,66157,44199
+24065,23457,53842,32549,61548,72844,71812,25601,6284,42518
+24066,32506
+24067,37095,12982,81101,75724,10939
+24068,47323,7137,74171,57525
+24069,32091
+24070,44207,39410,35402,32090
+24071,10938,51050,78173
+24072,9740,53258,8049,52922
+24073,9824,23210,47545,69516,67134,43368,61512
+24074,64920
+24075,59616
+24076,49022,8420,45593
+24077,49817,34814,341
+24078,75598
+24079,11797,2802,27482,24725,48391,72054
+24080,27289,62001,48445
+24081,19131,43425
+24082,60896,27053,57700
+24083,29141,79210,12172,14237,30333
+24084,69005,75784,12097,58712,63727,44348,57159
+24085,73522,17267,52556,40459,3494
+24086,32492,10069
+24087,4018,45823,42970
+24088,826,29730,43031,70945,15436,71598
+24089,71007,33602
+24090,15849,7141
+24091,66167,23694,18100
+24092,36273,24792,45017,70091,35353
+24093,48564,6317,46893,15856,51002,76945,33635
+24094,21451,51178
+24095,22157,14625
+24096,1861,60554,39459,29864
+24097,7730,6721,3663
+24098,72147,64780,66115,81637,25983
+24099,16233,5755,20729
+24100,18850,61138
+24101,81109
+24102,2116
+24103,28562,29120,7478
+24104,53614
+24105,78915,35355
+24106,36235,21649,7535,13633,14712
+24107,60836,14229,20351,15231,73963
+24108,2446,62295,49469,22756,59182,46638
+24109,11285,13134
+24110,59380,50370,73577,11985,15518
+24111,56907,66333,37368
+24112,2396,8693,8576,16354,62277
+24113,49602,31141
+24114,31692,254,10649,22104,37912,16379
+24115,65372,13457,25472
+24116,57525
+24117,22499
+24118,22175
+24119,53891,32535
+24120,19671
+24121,58907,80378,17755
+24122,76179,68322,40754,74824,72217,14804,30289
+24123,73958
+24124,36759,21034
+24125,64978,53005,9409
+24126,62135,34983,3006,72290,15926
+24127,72079,10187,15913
+24128,79149
+24129,33672,80901,68730,20079,34171
+24130,77269,37547
+24131,10761,58802,32517,63724,75981,71086
+24132,76765,61342
+24133,24578,16902,2182,78807
+24134,15201,9738,70116,54184,47382,73966,4185,54177,28938,40824,76565
+24135,12972,917,67634
+24136,8895,3716,25442,1216,16651
+24137,2358,48265,972
+24138,40160
+24139,54431,54610,78983,16187
+24140,68553,61394
+24141,27973,19917,28556,58149,27743,47641
+24142,28435,35681,78351,8635
+24143,62420,44113,8208,72149,39496,47273
+24144,57945,76711
+24145,20185,49840,69437,21967
+24146,66527,15490,35835
+24147,39010,23712,41787,79192,73756,81056
+24148,36199,40333,24550,10576
+24149,63066,77657,80822
+24150,30388,2161,20799,31743,9787
+24151,47913,27975,73226
+24152,81243,68811
+24153,59058,37662,62832,76387,20263
+24154,60309,26365,7124
+24155,13989,65632,76306,29414,77786,72274
+24156,48327,13801
+24157,31485,54500,23126,69309
+24158,51263,15032,56662
+24159,42561
+24160,65011,37735,66649,77382
+24161,26360,82128,59755
+24162,41000,49927,12360,81116,70698,30514
+24163,60003,37591,45869,48030,43194,3406
+24164,49774,12696,66823
+24165,43789,60734,18046,13809,9113,49246,54686
+24166,62240,4011
+24167,31198,20513,68682,56453,2103,53515,18937,16583
+24168,36291,66891,63186,43140,16145,75569,23978,32749
+24169,30302,27510,14436,17098
+24170,77930,63763,61533
+24171,36860,29276,28090,40849,78659
+24172,3987,56322,5306
+24173,41530,63084
+24174,50959,64615,73720,26560
+24175,65781
+24176,69727,72944
+24177,48640,51155,11153,15744,13432,2234,8778,67704,57264,39921
+24178,33949,81604,35361,78226,65569
+24179,37377,13288,57715
+24180,50245,70966,76327,2776
+24181,12035,28254,62405,4432
+24182,65889,69139,33227
+24183,49154,3132,60218
+24184,26830,41715,37511
+24185,4435,51351,13749,37577
+24186,39793,55327,20144,12423,73895,38234,78752,44706,42725
+24187,23796,25016,59603,43417,58096,13935,24961,40960,40395
+24188,81046,5503,62026,47619,16333,19879
+24189,20116,5526
+24190,69396,19104,49571,30348,40039,30722,954
+24191,17170,64758,46638
+24192,68223,40428,15670,3740
+24193,60112
+24194,5617,1651,27958,9271,29931,67797
+24195,54037,29304,17155
+24196,36333,1233,71830,66917,11476,40576,41813,10241
+24197,76167,36337,63872,78845
+24198,29326,79760,12378,21068,27564,3583,77256,33759,79157
+24199,39696,39477,81733,28484
+24200,52147,8490
+24201,74816,75250,37070,14415,36985,66102,70798,23772
+24202,34262,62356,10765,10557,10432
+24203,22273,46830
+24204,58988,25573,13409,21659,16938
+24205,4926,8649,48779
+24206,35592,23554,61947,21212,18270,62249
+24207,11402
+24208,8781,24698,33049,49693,35214,64285,12069,77625
+24209,43412,66947
+24210,20629,11527,66983,9228
+24211,24305,17759,40491
+24212,66510,41631
+24213,15838,78052
+24214,39404,18251,29609,36468
+24215,76989,61629,69630
+24216,11663,22881,14154,2222,35193,74139,31594,26156
+24217,29201,4362,81679,26746
+24218,37082,10185,76563,72655,12589,16227
+24219,62800,25484,40483,20461
+24220,58670
+24221,11504,43600,40619,13020
+24222,62147,70242
+24223,49468,72584,43695,16891,36080,57175,69585,79969,80305,62203,64414
+24224,4386
+24225,33119,22929
+24226,28475,79982,52847,58192
+24227,60379
+24228,68141,77319,41862,33500,21500,12558,39322
+24229,39132,16979,34270,55338
+24230,61218,7879,11083,17492
+24231,15591,64070
+24232,25374,54959,80573
+24233,23068,62289,56298,15504
+24234,9124,19257
+24235,79907,58816,71597,51956,73274
+24236,10762,25993
+24237,34105,62490,24174
+24238,73064,37163,68321
+24239,7434,76765,7420
+24240,77182,17811,46003,29874
+24241,3013,73400,74668
+24242,59896,47590,33356,42789
+24243,54081,26786,20163,81069,69322,3212,1591
+24244,71071
+24245,32229,53828,24457,76278,44770,40580
+24246,62636
+24247,72983
+24248,61951,3146,1655,75122
+24249,22398,60250
+24250,1124,81909,49720,64317
+24251,7493,2806,16980,47785,64894
+24252,39818,10422,62243,65773,25261,52932
+24253,61309
+24254,36160,13176,29545,71101,54030
+24255,38615,12183,56484,47573,65530
+24256,46506,36264,48360
+24257,24188,78100,69791,62271
+24258,20017,3673
+24259,43458,21644,69787,12071
+24260,61774,77446,13724,16026,3724,64871,32030
+24261,66397
+24262,164
+24263,8975,46352,66080
+24264,19769,32967,42362
+24265,78622,42400,64689
+24266,13312,60554,80911,71905,22023
+24267,56874
+24268,46062,4531
+24269,9677,17397,51373,24737,42224
+24270,64559,79899,51048,48239,69192,38382
+24271,71456,10892,53965,49014
+24272,27825,42310
+24273,49876,1930,29558,11196
+24274,13362
+24275,69675
+24276,1562,72662,22361,69395,66839,79998,48971
+24277,76640
+24278,60155,14756,19363,11501,28430,50896,48026
+24279,44259,22847,9698,48189,44061,31212
+24280,40230,73246
+24281,2837,74031
+24282,38014,58904,80982
+24283,39587,59377,16379,5718,4295,70162,73243
+24284,13081,18819,79292,27444
+24285,33766,64501
+24286,78756,45095,27151,13484
+24287,76612,40509,2305,52211
+24288,72558
+24289,274,71593,64387,50062
+24290,57768,5505,48292,42826
+24291,44591,17563
+24292,15461,77022
+24293,8340
+24294,66334,70744,26235,45491,78968,46352
+24295,27682,10192,37772
+24296,30882,29645,19431,2107,43877,30597
+24297,71928,31186,40859,57841
+24298,18424,80557,33412
+24299,56899,12390,72944
+24300,27571
+24301,60488,53831,12656,45225,40666
+24302,24020,63056,68894,50833
+24303,16778,7259,35660,28
+24304,3026,2075,69410,19260,80593
+24305,28437,18193,78448
+24306,16198,1445,52161,18059,50100,42728
+24307,31092,73805,21391,31192,64546,80939,3601
+24308,74463,52422,26711
+24309,34144
+24310,6297
+24311,15351,58710,54683,30706
+24312,14032,39736
+24313,24425
+24314,56489,55021,67337,51197,57537
+24315,40419,31203,57506,28527
+24316,77863,10545
+24317,6922,31442,70479,72673
+24318,56835
+24319,43073,35267
+24320,10237
+24321,50688,7688
+24322,8088,34274,55568,64501
+24323,64121
+24324,62327,28815,36331,19843,21147,15636
+24325,72018,60541,22216,56867,57182
+24326,58272,8984,81328,15008,6883
+24327,28626,46951
+24328,3475
+24329,29464,22926,46392,39913
+24330,62165
+24331,62715,59855,75831,22576,56720,518,7303
+24332,54981,58903,17647
+24333,25848,11627
+24334,11008,45477,46998,68861,51085
+24335,19112,56936,24272
+24336,40471,43964,78215,5693
+24337,38971,41671,59583,57118,36806,32602
+24338,29636,26214
+24339,7626,64802
+24340,9266,65110,540,13650,27399,23874,79556
+24341,3876,12065,62905,11465,53948,72374,14321,75383
+24342,23400,27055
+24343,62694,47160
+24344,45923,72217,39354,80593
+24345,32090,75498
+24346,11980,6914
+24347,69145,62953
+24348,12530,43217,40193,12790,15587
+24349,58115,8550,34091,19754
+24350,64087
+24351,48934,31613
+24352,62541,27977,56917,67741,45708
+24353,47025,2330,6165,23870
+24354,14429,68382,56360,67388,19778,52900,50964,31866,39849
+24355,77340
+24356,30419,19862,75099
+24357,54391
+24358,54773,29338,72617
+24359,2610
+24360,52964,1975,73003,13571,41800,65329
+24361,79899,54634,78279,12286
+24362,18084,48198,68351,3816,65316,78924
+24363,7554,13790,70271
+24364,73718,14712,80829
+24365,43454,53152,57092,71293,70695,58929,16606,15232
+24366,7076
+24367,12054,3692,33124,11931,11846
+24368,75341,48711
+24369,70854
+24370,69597,19936,30998,19845
+24371,23463,11411,50082,71816
+24372,5367,63320,18359,58815
+24373,43105,6697
+24374,28101,73963,17719,38627
+24375,74448,60041,28779,2435,63491
+24376,20000,2458,15074,18948,30420
+24377,35577,61477
+24378,1091,39856
+24379,65090
+24380,59758,17934,3829,45855
+24381,19519
+24382,31493
+24383,25541,10028
+24384,76860,54867,75660,48915,67992,42912
+24385,23665,43702
+24386,62776,55619,55422
+24387,47302,18885
+24388,70398,45541,59586,64885,9199
+24389,75930,23997,8641,64249,25142,15249,10861,1481
+24390,24792,75084
+24391,66494,65937,39150,58849,11660,26350
+24392,56485
+24393,36760,51215,43940,65231,32651,20636
+24394,24196,66975,49272,15343,44301,72345
+24395,39957
+24396,59408
+24397,33034,57063
+24398,7599
+24399,78481,51200
+24400,67095,11602,615,71372,55455
+24401,81414
+24402,38132,35486
+24403,74053,10403,50882,23266,7208
+24404,49965,2240
+24405,9202,21110,34646,60214
+24406,803,44956,16935,54739
+24407,54633,66694
+24408,60609,61732,41970,14359,9338,77588,1974,57827,44227,24046
+24409,13783,77288,48847,66990
+24410,1674
+24411,64128,58528,38725,79245,71267,73316
+24412,66882,8572,28559,29758,42944,57661,11998,63533
+24413,52239,20956
+24414,10622,65064,6836,78354
+24415,27410
+24416,21552,1455,82054
+24417,60259,39821,32354,62861,45583,77290
+24418,70397,73063
+24419,30922,30613,4952,5004,34991,35232,16653
+24420,2277,8879,28010,61227
+24421,47285,24844
+24422,44156,12138,23813,14438,15903
+24423,2956,24282
+24424,57138
+24425,34416
+24426,28104,33457
+24427,15451,10931
+24428,5057,63480,36760,37371
+24429,459,62513,1907,24170
+24430,40646
+24431,9192,56962
+24432,65427,33080,45229,40797,54898,31633
+24433,79890,30503
+24434,20469,78672,37995,4657,26810,2562
+24435,45171,30733,3547,77246,30677,44505,64249
+24436,79831,56190,39396,63349,51150
+24437,76919
+24438,32356,44525,61804
+24439,37843,44829,15636,48233
+24440,14595,13517,40292,17853,45758,24640
+24441,36898,12563
+24442,62871,56929
+24443,63407
+24444,32627,72944
+24445,14630,35571,22980
+24446,69577,50226,25569,78905,16572
+24447,50408
+24448,37385,46863,25278,55600
+24449,2841
+24450,80144
+24451,65640,30498,66250
+24452,60167
+24453,39358,2669,41658,79206
+24454,32289,54625,63092
+24455,74163,79583,444,9161
+24456,21659,13011,48664,54492
+24457,73414
+24458,43050,33814,40924,23182,15941,74434,13503,2594
+24459,21551
+24460,23182,62126
+24461,59882,25882,13839,73870
+24462,49836,75566
+24463,57589,22367
+24464,6552
+24465,68880
+24466,38957,34540,60697,71500,47732,9756,72266
+24467,15339,10503,30437,59254
+24468,63672,67645
+24469,23148,64986,61047,34751
+24470,30845
+24471,72274,80491,79311,4417,50466,18856,25552
+24472,41019,19726,17160,79393,45511
+24473,66066,22998
+24474,26696,7372,15655,56369,26463,7491
+24475,33025,12449,76550
+24476,50753,73750
+24477,40460,60524,66016,9548,70225
+24478,13248,40491
+24479,1469
+24480,17447
+24481,67981,71842,76456,11458,22331
+24482,33719,81840,58364
+24483,69132,28186
+24484,17026
+24485,38439
+24486,47195,81218,20440,71967
+24487,25478,80909
+24488,41843,21386,64414,44691
+24489,54578,26257
+24490,53306,25133,23193,61124,11319,5855
+24491,13795,14408,81736,59300,81258,35212,14571
+24492,70755
+24493,8608,51120,14659,52464,39920
+24494,2127,22991,2617
+24495,70054,8560,68182,61843,59500
+24496,1987,60243,48364
+24497,14398,70907
+24498,53351,3879
+24499,66642,36608,25636,22547
+24500,34640,58395,2156,33428,79794,4284,45356
+24501,28020,81101
+24502,69660,43732,52298
+24503,66263
+24504,57762,13338,13454
+24505,12552,62218
+24506,42157,58619
+24507,27584,5781,80514,39434,41954
+24508,57755,25446
+24509,59288,62562,51473
+24510,4383,57858,72261
+24511,38204,43386,10418,61676
+24512,36494,31734
+24513,67556
+24514,39839,50088,13907,62847,65768,1619,19766,39667
+24515,40949,75888,20390,53110,60395,45223,22789
+24516,20801
+24517,4109,37141,55132
+24518,54377,33997
+24519,9147,73720,24119
+24520,53713,53550,9368
+24521,4307,59276,19019,37339,20366
+24522,23035,38214,3574
+24523,39307,48639,33384,29391,20115,51817,52218,15824,71360
+24524,47523
+24525,45695
+24526,48049,70295,30478,6919,1463
+24527,79037,35690,59930,59715
+24528,57435,78597,14947,33755,76829
+24529,20565
+24530,46047
+24531,16336,63716,80906,7751,48631
+24532,9608
+24533,2425
+24534,2473
+24535,43975,14137,8770,77680,80035,51912,22289
+24536,43086
+24537,35272,61152,22551
+24538,56996,79071,25640,29222,9813,24699,18891,34204
+24539,27159,66209,14587,2373,78010,53995
+24540,14370,626,12155,15831,33329,65210
+24541,78439,4240
+24542,18005,21143
+24543,8237,64501
+24544,10884,69222,74139,79500,32262
+24545,30467,18806,70145
+24546,15820
+24547,68439
+24548,19798,46412,52581,43001,26507,9363,81872,34807,72954,76157
+24549,19861,5293,6934,55045,55202,9669,76345
+24550,81846,73631
+24551,31737,36364
+24552,27189,66237,36784,12953,37699,72594
+24553,79289,61257,30086,10233
+24554,13320,52374,2491,17194,791
+24555,34597,29155
+24556,63132,65749,19273
+24557,18875
+24558,74347,27890
+24559,66671,40700,30324
+24560,76278,59417,46543,49260,75845,14552
+24561,45651
+24562,26477,61874,1349,45417
+24563,11171,30724,50704
+24564,9942,48564,60001,45973,80911,42669,25927
+24565,74524,51765,35918,70458,9315
+24566,17882,50730
+24567,34367,19423,40822,52616,57259
+24568,67716,16603,26387,64951,7502,67693
+24569,21971,73894,7690
+24570,36970,48383,57104,81407,9844,9527
+24571,67131,55925,8803
+24572,38948,36766,58329
+24573,14627,53656,33560
+24574,3741,63537,57742,82055,11713
+24575,50272,63508,23901
+24576,4232,11743,61094
+24577,6166,18595,15882
+24578,298,66491,68122,68878
+24579,31816,76334,54920,18881,14111,4508
+24580,75684
+24581,43734,7537,77232,52326,41,69837
+24582,33244
+24583,13265,41311
+24584,32023,35570
+24585,30027,49265,27313,25617,36212,17524,53109
+24586,81727
+24587,1612,74614,53401,52076
+24588,33820,21321,59146,26950
+24589,77934,18341,35478,5372,46461
+24590,54526,34465,14796,79665,67002,74932,47426
+24591,45131,41799
+24592,65445,29097,72161,27609,59725
+24593,55876,20986,63167,36725,49004,13083,67625,18283,3938,2438
+24594,78175
+24595,20345
+24596,56847,24695,60019,14106,81437,37894
+24597,58701,54226,68594,48453,55360
+24598,65871,81532,53711
+24599,28148,41703
+24600,12370,76870
+24601,1864,1783,16521,67634
+24602,5367,50047
+24603,7691
+24604,35053,75484,11288,68220
+24605,66949,37300,76355
+24606,33559,15332,73091,36108,6140
+24607,14944,9872,61662,16834
+24608,56899,11484,65328
+24609,58542
+24610,2213,20680
+24611,47593,71042,38947
+24612,22007,5663
+24613,35396,48381,79457,49037,66357,43547,69112,72596,71763
+24614,12877,50487,78462,31674,11113
+24615,42288
+24616,68910,76652,72888,48991
+24617,68505,3287,1686
+24618,22835
+24619,53086,79712,73265
+24620,43894,55688,35141,20551
+24621,50935,47219,78246,52526,74244,10029
+24622,77889,79982
+24623,32308
+24624,77469,39502
+24625,19610
+24626,78658,9247,16174,78764
+24627,49362,21389,19257
+24628,72866,44559,64807,54698,29125,1896
+24629,59583,71669
+24630,3067,23257,14891
+24631,15185,3925,36344
+24632,34107,44418
+24633,35195,23301,14969,19705,67133
+24634,13864
+24635,62618,2232,65452,26926,73532,22553,7191,27967,18070
+24636,54445,81200,54777,64802,41495,48672,43381,69327,7612
+24637,8262,13981
+24638,39322,35809,44147,30582,7712
+24639,65361,10362,16227
+24640,66330,71752,946,30330
+24641,974,13398,62639,55863,33661,230
+24642,42557
+24643,42733,80128
+24644,62580,8364
+24645,29872,66680,21019,27887
+24646,36631,16708,18449,48817,77306,58315
+24647,14996,49486,40495,43642,24068,57755,28741
+24648,38941,55076,30659
+24649,9630,43337
+24650,4141,73249,79360,25288,2896,71495
+24651,6930
+24652,71568
+24653,73193,65645,13843,2163,14207,36778
+24654,7267,55707
+24655,66707,45831
+24656,15063,37972,49400,4205,72887
+24657,28643,16953,12852,67574,54,65749
+24658,81049,26059,76246,74357
+24659,73384
+24660,26974,59356,39103,67117
+24661,22050,47088,18391,15163,22237
+24662,5494,59092,76515
+24663,50908,42011
+24664,65703
+24665,42595
+24666,41610,22697
+24667,80625,77638,52204,72577,11136,76583
+24668,73447,40814
+24669,56835
+24670,42452,42510,65181,57356
+24671,51944,26621,23357,16831,30027,16351,36905,12831
+24672,16344,40175
+24673,4608,18180,70055
+24674,53849,18616,14027,49213,64637,10287,34386
+24675,26438,16449,58381,56526,38792,60336,46844,47840
+24676,47797,35372,81271,26646,74079,58776,8252
+24677,13142,31618
+24678,58482,52587,33025,32573
+24679,9924,27643,44307
+24680,64647,53297
+24681,60273,57157,48806,37402
+24682,9611
+24683,6381,39904,17099,13128,46880,59154,37705
+24684,39418,6509,45291,37474
+24685,36971,38189,670,18040,17301,41841
+24686,28148,9245,51128,22912
+24687,76875,73385,37360
+24688,54768,12877,55067
+24689,15462,39282
+24690,29675
+24691,50909,28070
+24692,26844,57418,62504,55068,27231
+24693,57065,54911,14230,51360
+24694,32875,8253,7764,35495,74474,46038,59994
+24695,46948,74446,60694
+24696,69696,30858
+24697,53937,36437,51855,42070,78929,12636,76061,43989,48785
+24698,51519,36514,49069
+24699,31871,13270
+24700,15957,60792,42633,16603
+24701,3353
+24702,18960,29293
+24703,8376,7063,81523,47623,33531,16756
+24704,16438,24890,6465,7296
+24705,25983
+24706,31139,66942
+24707,13813,59411,50847,75572,63427
+24708,27819
+24709,48632,66433,40741
+24710,53110,43868,65215,69364,4246,46670,31725,49934
+24711,31226,29280
+24712,29088,10354,40939
+24713,27361,10821,28453,70954,61627,72903,64930,36293
+24714,9733,16685,78935,64896,12995,10323
+24715,74665
+24716,53396,13813,44260
+24717,14056
+24718,12467,41811,78935,62056,69959,58370,43170,5650
+24719,79585,73580,61471,47363,43349,35742,37555,82013
+24720,47404,73629,74353,51750,58895,19809,62118
+24721,58498,74096,18556,59686,12911,11000
+24722,61269
+24723,24009,27717
+24724,55325
+24725,2903,36305,65196,1783
+24726,32044,33690
+24727,10614,57922,30629,54749,46707,22974,51325,47827,41525,15267
+24728,9613
+24729,52290,34912,23685
+24730,10814,63923,198,20699,25088
+24731,22201,23346,30205,12907,66969,47766,37361
+24732,77830,55182,9453,16602
+24733,56869,20246
+24734,67932,71288,22345,81097,45892
+24735,45909
+24736,55553,73578,12893,12333,28399
+24737,54343,3229,80136,12422
+24738,36953,25573,30000
+24739,44122,51052,33455,78026
+24740,67832,52345
+24741,9052,33823,71266,30183,5274
+24742,68081
+24743,29093,47213,59907
+24744,66264,12170,15399
+24745,63600
+24746,5781,51497
+24747,17528,14844,69313
+24748,65928,9508
+24749,73179,75099,2113
+24750,839,2952
+24751,65638,4083,54179,69502,69381,47319
+24752,65254,59361,44538,7929,68953,79566
+24753,50469,55782,53065,37429,80278
+24754,79774
+24755,45105,49996,27732,51402,43074,13981,31844
+24756,12535,19181,31626,81815,69386
+24757,4240,75674,76674,43981,37441,54452
+24758,42176
+24759,75905,48568
+24760,45010,55104
+24761,21543
+24762,19383
+24763,80288,26843,70263,16461,1006,64981,56212,17981,71635,29379
+24764,14060,62171,77693
+24765,34822,25693
+24766,80378,49248,78934,28209
+24767,30673,79213,12350
+24768,35582,39474,7311,77145
+24769,59222,20950,59516,78863,60317
+24770,69427,39471,39425,35052
+24771,69769
+24772,51953,50728,77211,79876,19482
+24773,61700,13192,31955
+24774,19333,63750,81266
+24775,40175,69379
+24776,40381,34706,81934,71739,10512,6606
+24777,51367,69521,54957,62773,28073
+24778,3849
+24779,4617,11230,18646,63101,36417,33021
+24780,17106,57896,8763,31680
+24781,38722,10766
+24782,990,49974
+24783,79443,13619,79384,37817,76955
+24784,54847,55611,30070
+24785,13111
+24786,1238,26176,64604
+24787,22865,48609
+24788,28761,11254,42559,25251
+24789,19540,50848,80248,64957,37660
+24790,17173,15703,72765
+24791,66473,22935,38858,19128
+24792,31867,35355,19524,8593
+24793,25046,63943,8706,33096
+24794,35213,16563,62485,72469,23749,1891
+24795,67886
+24796,56170,75888
+24797,5199,66986,39868,63479,77610,14892
+24798,22913,79520,50387,11476,14729,28769,68753,16583
+24799,79920,70364,75475,47510,45192
+24800,42978,75391
+24801,64499,43734,66606,48369,78739
+24802,72887,63950,37855,77627,1664
+24803,10123
+24804,64802,69841
+24805,12182,79194,26702,45170,51748,69133,22371
+24806,38540,77637
+24807,42151,70200,24767,76964,39974
+24808,71623
+24809,80919,76175,43011,60319,30975,81092
+24810,18281,2783
+24811,11112,45843,28196,23695,53735,18524
+24812,3000
+24813,70288,74664
+24814,59977,27125,16846,11440,16739
+24815,59215,37517,43683
+24816,74048
+24817,29162,27451
+24818,73971
+24819,6464,38895,61113,49600,45141,19002,26375
+24820,53689,61706
+24821,61472,44422,40460,29118,77935
+24822,44266,40568,41688,76838,71771,72996,62951,48853,81789
+24823,44852,46136,75251,36710,22404,16207,62502
+24824,14933
+24825,59873,20904,33872,32081
+24826,50229
+24827,18686
+24828,35162,14719,54509,73947,50070
+24829,62023,54937,29874
+24830,49886
+24831,36067,76219
+24832,81310
+24833,24715
+24834,44193,63629,14148,30765,31759
+24835,63975,61442,73042,59371,47610,20369
+24836,71739
+24837,35365,10653,37421
+24838,46506,68528,14322,31984
+24839,49500,58904,53973,54882,16175,21510
+24840,70251,37304,20984,51552
+24841,68747,38585,24392,18488
+24842,76632,62139,72260,60670,47042,1954
+24843,80824,26330
+24844,19341,20187,35768
+24845,66510,16347
+24846,70361,36863,19249,29833,65279,74956,51573,64070,68206
+24847,22247,69365,25022,35094,69773
+24848,28631,17155,61861,36038,58873
+24849,21628,56970,44832
+24850,17800
+24851,58345,36934,52452,3199,29439,48073
+24852,20234,30657,35329,34580,48292,69590,16255,70586
+24853,52971,80725,77119,15263,38326,20435,71069,58706,51956
+24854,30718,18380,40083,51892
+24855,67424,49097,55494
+24856,58914,699,64906
+24857,55977,1571
+24858,29563,78862,72108,57795
+24859,45186,19119,6081
+24860,58453,74497,70868
+24861,3927
+24862,77681,23709,80161,76294
+24863,38138,48392,9758,45766,22800,37127
+24864,5115
+24865,8672
+24866,70744,18306,67003,16961,2969
+24867,80935,80721,26622,14408,61691,50911
+24868,22399,9263,69973
+24869,29064,80926,27441,35333,47910,43432
+24870,35610,35231
+24871,61456,15259,18998,26595,34333,15670
+24872,40375,14307,5068
+24873,46219,25448
+24874,80686,76718,56491
+24875,49113,3637,20882
+24876,51757
+24877,18026,67926
+24878,55138,10918,81047
+24879,34227
+24880,62265,21043,48633
+24881,77734,61205
+24882,7248,32847
+24883,4958,52147,73614,44445,9431,12569
+24884,32062
+24885,42364,80345,12268
+24886,3559,20343,36825
+24887,17163
+24888,61547
+24889,25459,11403,22808,29247,5835,75016
+24890,32924,60600
+24891,61570,23996,65977,61816,23377,39837,46394,69407,78953,23157
+24892,1404,8143,63871,43762,24944,6431
+24893,15550,9760,51202
+24894,31132,74309
+24895,32443,55504,14266
+24896,78278,48780,38250,40859
+24897,5532
+24898,29401,23344,24385,64305
+24899,27966,76632,27528,31928,21307,43522,41732
+24900,81192,43610
+24901,42401
+24902,78653,21749,4279
+24903,34254,33310
+24904,49662,34819,64425,19802
+24905,47393,80668
+24906,3535,46637,11209
+24907,19393
+24908,34160,21224,41067,40717,52133
+24909,21125,27862,38773,11414
+24910,59397,46520,61874,80679,34493,64590,4524
+24911,54391,50684,29484,30363,22841
+24912,61164
+24913,52624,43278,18274,8036,32169
+24914,26113,61491,69982,80569,2962
+24915,24481
+24916,77147,27605,70979,65758,9320,65681,60567,82100,17066
+24917,73677,41336,20813
+24918,32305,28287,28778,81571,44951,40813,30802
+24919,26113,16735,55657,61205,37739,77795,13275
+24920,65015,58632,48701,17248
+24921,70998
+24922,54057,75995
+24923,74691,42061,56604,7033
+24924,73679,31585
+24925,3851,8739
+24926,25678,46083,23222
+24927,73889,14762
+24928,8439,22289
+24929,39879,370,2677,2113,1099,45653
+24930,42212,64144,77314,34217
+24931,55082,33543
+24932,67431,61027,223,7273
+24933,74082
+24934,32468,70816
+24935,49692
+24936,40314
+24937,10927,18273,66727,34387,24041,7605,81453,63194,64345,34731,41441,26482,9368,35884
+24938,25825,52204
+24939,18924,77636,59214,63415,10848
+24940,32387,51433,39696,12715,46635,59191
+24941,40579,4610
+24942,33851,52613
+24943,10427,23355
+24944,25995,77929,37124
+24945,73003,69633,8218,40974,60227
+24946,61577,61518,33206,55289
+24947,52824,16072
+24948,38762,11930,9167,56066,209
+24949,8188,48835,34895
+24950,1232,15259,62183,50410,76687
+24951,34764,22278,73041,66268
+24952,72956,70675,78829,25727,20832,57570,46401
+24953,77734,60502,71178,5111
+24954,9179,9476,58987,54889,61549,45916
+24955,68424,19094,34088
+24956,39329
+24957,14396,49345,61287
+24958,6769,36378,53632
+24959,41568,53104,81950
+24960,1143,23250,59269
+24961,54086
+24962,3076,14160,73670,6127
+24963,21063,11197
+24964,9202
+24965,16438,15758,73474,42464
+24966,37811,26818,73169,523,44337,80463,30953,30745
+24967,41783,61100
+24968,54621,66042
+24969,74568,61323,17339
+24970,22053
+24971,8862,25124,7563,27120
+24972,62890,10442,40744
+24973,74460,45308,9673,24895
+24974,81927,32981,26865
+24975,20900,36794,29591,77322,66453,41880,61279
+24976,52831,71501,16225,42496,13014,27475
+24977,40412,33287,12263,6029,68494,24429,63783,32981,74579
+24978,26375,39013
+24979,30659
+24980,23510,1812,35595
+24981,41235,56944,20876
+24982,80074,43065,51521
+24983,75939,20416,74077,4904,14858
+24984,68461,78842,60189,18659,1783
+24985,46446,75484,34509,19572
+24986,38762,52384,33896,59400,53282,54939
+24987,25107,81476,61683
+24988,77918,62403,32620,59925,72913,57730
+24989,38455
+24990,11730,68250,34578,48336,15148,46750,54416,33530
+24991,52955
+24992,20307,29555,37708,75754,6498,28601
+24993,50992,13121,79467,72164,53822,13788,21315,71085
+24994,41365
+24995,78162,25102
+24996,19520,43680,3262,78649
+24997,26396,65907,53429
+24998,37397,49527,63778
+24999,10746
+25000,1777
+25001,47807,55376
+25002,395,64150
+25003,51962,78550,66939,37864,46412,54853,81562,61427
+25004,53486
+25005,79742,20078,72178,75553,33259
+25006,41589,52685,72443,36687,16627
+25007,3953,5238,60055
+25008,23665,62657
+25009,9667,35494,28655,26478,31104,55983,75052
+25010,58408,16131,26675,41700
+25011,76018,16518,1943,4938,21073
+25012,80815,6389,54272,41310
+25013,40890,51592
+25014,44084
+25015,21552
+25016,49518
+25017,79665,41495,51363,34662
+25018,25197,51236,41570
+25019,53882
+25020,27439
+25021,80915,27451,52107,74597,19136,44284
+25022,1674
+25023,73327,66349,39515,2261,74571
+25024,38386,59867,49743,72001
+25025,24844,26710,12584,29302,11943
+25026,76565,24346,63259,21280,26599,41405,49099,48117,40475
+25027,12371,46695,25142
+25028,29810,5704
+25029,74640,1918,63101,10550,35618,16851
+25030,65250
+25031,52457,21128,40233,10089,43764,30617,22817,33444
+25032,27266,53397
+25033,9635,28875,80046,26874,25962,34045
+25034,52330,2285
+25035,102,79189
+25036,9129,32551,46660,81962,8403
+25037,35732,80153,3184,59853
+25038,66870,75016,37220
+25039,74502
+25040,25702,22216,47135,55113,9419,19122
+25041,10501,35330,68070,7265
+25042,78106,8259,26179
+25043,416,6988,49900,78989
+25044,30521,25662,44895,63180,2817,40744,53135
+25045,62005,9181,78364,47784
+25046,56840
+25047,56992,11610,57449,67999,38193,53469,12064
+25048,63865,55353,8922,20369
+25049,36837
+25050,31626,72318,65040
+25051,69398,34819,78043,78544,5533,56988,40002,71249,4494
+25052,71810,37595,80567
+25053,7324,71751,3345,62389
+25054,667,69120,75660,45979,46960,73148,57201
+25055,24459,45521
+25056,52233,43658,59430,11401,2084,1415,35897
+25057,152
+25058,37988,67827,18305
+25059,49830,70618,11097,5631,48303
+25060,61104,74174
+25061,52459
+25062,31742,72404,27938,50777
+25063,71871,45371,32536,77302
+25064,47749,39571,41509
+25065,30895,9166,43986
+25066,74985
+25067,1725
+25068,71643,78066,7008,56163,30684,39509,68507,45164,14512,9580
+25069,37203,69037,3706
+25070,59108,7444,11122
+25071,67103
+25072,15737,51583,20115,75373
+25073,58489
+25074,15060,78893
+25075,56795,69129,77089,15228,4802,5301,66704,65397,43452,22784
+25076,73779
+25077,42547,9042
+25078,10332,44531,53082,6177,68753
+25079,66012,78681
+25080,2482,24768,33524,1535,74278
+25081,30195,53133,27535
+25082,44729,36417,16694,26427
+25083,80474,81053
+25084,11601,68511,80971
+25085,29780,46935,16897
+25086,74679,74372,59789,59851,40970,43005,54423,2516
+25087,43310,56581,41500,17478,46070,12755,73471
+25088,7614,68332,45437
+25089,12812,56401,1715,75684,53293,50490
+25090,79593,59127,35970,50711,54090
+25091,434,73669
+25092,21564,60015,73408
+25093,23978,55334,31376
+25094,23792,32619,29838,81394,26406,69345,11527
+25095,33761,20172,25736,68491,34427,30426,68076
+25096,20055,30470,54730,82178,25000,65068
+25097,26479,81441
+25098,21871,148,9606,3935,28134,60052,1020
+25099,4499,23554
+25100,49510,9165,33774,32462,75825,67123
+25101,78509,3587,35325,61587
+25102,75794,50532
+25103,64809,15257,70016,22932
+25104,77973
+25105,53894,26109,68734,80271,1645,57081,10633
+25106,45744,27341
+25107,8965
+25108,20721,42559,25383,52955,71694
+25109,42054
+25110,54124,13480,72239
+25111,18657,34951,49200,74015,27022,52266
+25112,54221,12209,6637,79355,38730,12283,77864,6941,38170
+25113,81866,22025,67419,43153,24611
+25114,7537
+25115,63013,81606,34158,77053
+25116,25287,21697
+25117,81215,44039,67908
+25118,16059,33650,46354,49950
+25119,32742,79676,49082,72524,80639,36820,65924,63061
+25120,48544
+25121,40956,65776,37747,35346,13634
+25122,61010,45961,12045,77723,11909
+25123,10274,58405,71389,32856
+25124,61727
+25125,51338
+25126,69422,4971,9412,78661,34602
+25127,76401,15093,47073,68034,14672,64418
+25128,62681,33437
+25129,4937
+25130,29344,14312,12162
+25131,70245,13283
+25132,33437,62087,34270
+25133,65564,74889,26339,1483,73399
+25134,55581,10383,17795,60193
+25135,31223
+25136,76680,23759,24944,39241,55619,46309
+25137,1332,18085,48564,62792,54336,16569,23565,17597
+25138,35489,732
+25139,75157,19153,17977,48643,65522,28296
+25140,8842,17704,75618,43399
+25141,79664
+25142,60598,77561
+25143,47107,60427,56581
+25144,78261
+25145,16371,73925,31775,45962,22615
+25146,13069,46729
+25147,76280,7449,37379
+25148,65647,2931,55768,70479,30391,74799
+25149,4231,30072,74850
+25150,76180,50738,75159,65507,40213,32781,76120
+25151,78909,58618
+25152,18403,33941,10633,71214
+25153,42666
+25154,75861,32142,40948,8001,20796,22865
+25155,63904,70337,55448,21302,45241,5943,59803,49178
+25156,27957
+25157,28137,28626
+25158,46342,9768
+25159,77848,18532,52714,18572
+25160,75273,74797,46292,58883,628,9575,41363,71009
+25161,33327
+25162,38557
+25163,22124,22771,13439
+25164,69216,79678,26209
+25165,51672,78948,41795,283,59195,81003,74798,62068,10013,76123,34117
+25166,35587
+25167,46092,6148
+25168,10348
+25169,6054,74975
+25170,10750,27946,6900
+25171,63157,32566
+25172,41407
+25173,40588,33508,39498,58545
+25174,27704,4940,42932,21770,34022
+25175,39347,6736,65116,46627,58829
+25176,67483,33840
+25177,45063,50147,54171,68925,43763,24061,72448
+25178,61453,69683,76917,11370,1294
+25179,65937,24964
+25180,66802,16293
+25181,11159,64155
+25182,73031
+25183,55890,20668,59034
+25184,57153,79544
+25185,54099,5383,74692
+25186,23412,11017,2366,57265,43228
+25187,31109,33328,504,35117,51670,4927,22346,17136,50869,64649
+25188,42003,68509,30392,67396,66132,16385,52807,8611
+25189,40646
+25190,7630,58873,44091
+25191,33693,66990
+25192,80498,76977,58992,47750,79136,78447
+25193,54438,64321,57968,54196,49144,80374,76209
+25194,46041,80118
+25195,11720,24305,78850,52135
+25196,27345,81589,5675,47446,45078
+25197,15920
+25198,32064
+25199,81303,74837
+25200,17179,45924,60871,12031
+25201,76158
+25202,23923,50468
+25203,45851,36278,9698,42115,48622,20055,19877,80959,45189,18015,16552
+25204,15920,38539
+25205,21349,71127,49077,63857
+25206,44329,19058,37586
+25207,6450,68729
+25208,78974,75775,34409
+25209,10503
+25210,37321
+25211,13073,4924,54005,13209,26593,56457,34928
+25212,60346,17740,2746
+25213,67318,45129
+25214,32974,77396,9638,22404
+25215,23610
+25216,55288,40816,9592
+25217,75060,2063,26110,60529
+25218,30046,60080,49974,13958,7872,7036,53327
+25219,52268,52209,45187,23085,20057,65806,76603,27850,33173
+25220,81423,16855,66383,35637,17600,56268,74394,5153,21189
+25221,76284,78774,42401,37821,26948
+25222,64521,1991,18077,18241,48609,5913,75047,78448,36926,9089
+25223,26718,12071,22262,17934,21355
+25224,68161
+25225,79721,18627
+25226,6314
+25227,20116,38809,29056
+25228,9884,76858,68933,73735,18237,75674,17191,15948,2427,4824
+25229,21569,33505,21790,9094,31307,49842
+25230,31568,22207,37224,16030
+25231,719,10901,57852,21203
+25232,20650
+25233,68686,29126
+25234,5065,73120,47503,16634,23424,10124
+25235,27501,13629,42466,15632,46355,68978,40262
+25236,39494,66070,4001,59211
+25237,50864
+25238,10383,44520,60002,26181
+25239,20111
+25240,20974
+25241,70111
+25242,6537,78534
+25243,59273,6030,715,37512,70989
+25244,68687
+25245,47137
+25246,71262,53548,9123,77480,1153,73222,39753
+25247,44547,53824
+25248,18347,79048,49610,48846,77692,10449,63477
+25249,17832,78907,34679,5103,43273
+25250,59700,6978,77425,66909,63409,92,28717
+25251,53789
+25252,66504,38438
+25253,28191,42585
+25254,52068,66503,17443,8559,18036,54215,24946,44333,44000
+25255,77050,73297,71503,36967
+25256,69332,183,20225
+25257,4677,29165
+25258,5958
+25259,28791,30683,13557,69247,77772
+25260,67859,17903,63139,41875
+25261,18597,80279
+25262,10497
+25263,22293,73308,73142
+25264,36201,61973,18260,60314
+25265,70824
+25266,24193
+25267,7977,49794
+25268,56669,2880,27427,61973,41818,79246
+25269,76791,34535,51625,21077
+25270,24576,61518,60771,30062,45750,50517,45235,60104,28409,23083,58298,22524
+25271,29181,44139,80559,71653
+25272,33414,22954,72390
+25273,23539,46708,57558
+25274,74140,58567
+25275,67241,29495,31618,45115,52029,59359,26296
+25276,1674,2968
+25277,68474,49883,16520,65432,27089,66674
+25278,9976
+25279,30122,1139,51961,15685,53814,50651,80523,6820
+25280,50904,19907
+25281,95,20532,69830,44540,72442,2298,1849,38314
+25282,65454,60213,43814,70950
+25283,57350,14055
+25284,15468,29642
+25285,28064,72598,48327,32713,62245
+25286,78973,81708,44603,21237,33602
+25287,42511,81717
+25288,3915,59360,56034
+25289,81198,58885,28785,41522,44358,42624
+25290,21997,4013,79391
+25291,8001,19668
+25292,24762,50370,15124,17065,15709
+25293,39322,70535,65998,3949,22773
+25294,3363,77530,6875,16902,66061,45165,42750
+25295,69325,23355,75458,20355
+25296,68932,45185,36668,77288,68960,42764,63597,52093
+25297,41970,9238,20789,45123,68258,32915,82014
+25298,28711,49990,70851
+25299,37800
+25300,29797,31968,50993
+25301,69982,74427
+25302,67035,79068,23645,28821,76092,13569
+25303,13966,77352,63997,46798
+25304,25079,37833,22448
+25305,70032
+25306,17660
+25307,52072,31155,75555,75673,62298
+25308,79757,70156
+25309,2970,30247,32509,76052,34726,3402,50310,71403
+25310,80179,70558
+25311,11351,44783,55045,79461,47176
+25312,28724,49806,19028,21939,42317,57093
+25313,46122,25562,47376,61639
+25314,14169,80789
+25315,63846,52665,41473
+25316,46027
+25317,51267,62629,66678
+25318,75603,14452,8226,33470,65943,57583
+25319,79243
+25320,10633
+25321,78346,38434
+25322,22145,48983,55678
+25323,11515,70304,75985,43796,21011
+25324,15264,15016,31218
+25325,18834,63167
+25326,37321,24383,27719,64713
+25327,15856,11864
+25328,80703,63994,13744,15297,25338,44660,81795
+25329,71361,71865
+25330,9822,36886,69614,3398,52710,15518,13940,62037
+25331,1135,52586,24739,22128,58781,69951,8356
+25332,79628,12258,46087
+25333,50155,43108,75275,44020
+25334,81834
+25335,42116,2481
+25336,32199,80670,80983,19399,15858,64250
+25337,64394,19114,62771
+25338,53873,65219,13492,62505
+25339,43682,71199,56200,35681,26343,26225
+25340,40034,62132,60919
+25341,37942,75980,52902,67928,80364,9107,38359,10127
+25342,51071,45277
+25343,13881,36229
+25344,57332,19501,32407,68672,65824,44726
+25345,23822,54886,55774,30414,12230,38364,40049
+25346,59591,25125,78147
+25347,14189,18147
+25348,46898,47495,68199,59069,72374
+25349,32278,43938,62532,37497,927
+25350,33714,48865,31059,58513,36872,5588
+25351,5571
+25352,43592,45629,25873,37954
+25353,21252,18063,4960,2767,18960
+25354,67115,50532
+25355,37445
+25356,25779,71541,43797,32637
+25357,12998,27092,14377,16824,27108,39393,54938
+25358,23638,32700,78351,51564,38218,66955
+25359,14341,24243,38700,81542,76493
+25360,32150,63640,54442,19243,8535
+25361,42670
+25362,31619,57819,66334,80694,19456
+25363,26315
+25364,39324,81498,76756,81338,857,31513,63000
+25365,23332,79964,20452
+25366,15366,77693,8340
+25367,50781,38542,77079
+25368,20339,36413,75485,25981
+25369,30687,33436
+25370,27875
+25371,79992,17281,57429,35646,68102,70639
+25372,33049,39682
+25373,12626,78707,3919,41808
+25374,24989,54007
+25375,64677,34354
+25376,42606,57176,59352,27774
+25377,60167
+25378,30837,70438,11042
+25379,57070
+25380,69203,20135,61965,74093,31445,13815,25840,12645
+25381,35970,25742
+25382,39363,32359
+25383,81153,73155,5350,12350,43765
+25384,33371,61237,71413,73060,4097,831,17787
+25385,16086,29583,8057,70253,19986
+25386,1455
+25387,24464,73317,73675,328,15763,16055
+25388,51326,25493,58612,29657,43006,6689
+25389,67002,30573
+25390,63596
+25391,55247,15043,81070,63629,45257
+25392,25717,24316,27018
+25393,34513,47659,9018,66350,37728,28339
+25394,28496,74084,17465,13056,12690,79234
+25395,10066,56631,3943,13585
+25396,11037,6780,66991
+25397,51809
+25398,81011,67473,4941,28535,8290,43635,25819,78937
+25399,40107,31292,22669
+25400,57496,36489,71024,10762,30415,23323,4873,13809,2104
+25401,79934,59010,50809
+25402,73458,52619,80913,78606,32045,16944,19202,63614,14452,38331
+25403,6452
+25404,3761,75492
+25405,38144
+25406,18936,2836,68368,10818,19016,7902,41274,28406
+25407,62115,18193,41465,54460
+25408,58899,75041,7050,13929,61873
+25409,56873,14606
+25410,12354,51046
+25411,24682
+25412,16593,38449
+25413,26522,37628,42416,81352,56465,33228
+25414,13946,8068,81069
+25415,44082,51793,55038,29084,33321,19462
+25416,78804,54300,77949
+25417,18708,2762
+25418,66997,15682,19444
+25419,22626,23137,45628,32927
+25420,78981,53109,928,53088,3867,1099
+25421,62978,13500,66478,71158
+25422,41117,56418,65147,68064,63461,1674,32906
+25423,31131,4061,17698,17863
+25424,49230,18347
+25425,13548
+25426,15757
+25427,48091
+25428,61588
+25429,26195,20804,39388
+25430,27197,47332,80661,17154
+25431,43343,61352
+25432,76495,29797,53537
+25433,17198
+25434,78021,75741
+25435,75551,9946,32339,37451,26895,29142
+25436,33210,17158,1723
+25437,28234,9010,17895,24337,38152,35974
+25438,29031,16580,52659,40167,27282,12950,1698
+25439,21605,32448,45843
+25440,27106,26491,11791,3744,40323,3682,46937,22818
+25441,35661,13065,58096,58970
+25442,53402,30238,80704,72608,22221
+25443,77817,7727,16803,43037,76072,17896,62135
+25444,66712
+25445,34819,56767,7746,8596,39911
+25446,65550,26221
+25447,18616,64815
+25448,25855
+25449,43487,36944
+25450,80561
+25451,20601,52110,44163
+25452,20440,40154
+25453,31141,63099,11302,42894,39862,77303,50544
+25454,5937,14730,41575,49903,29753,701
+25455,39509,78691,33217
+25456,8072
+25457,64121
+25458,3164,6382,52397,49042
+25459,35484,79950
+25460,31109
+25461,28322,57491,51066,81975
+25462,27116
+25463,44449,2845,34322
+25464,66022,7881
+25465,5294,7239,23135,82123,30799,74622,21834
+25466,76302,71114,72953,47939,71305,37105
+25467,52360,56943,19587,65727
+25468,46508,26976,32493,23031,30187,21437
+25469,24069,75181,55316,18190
+25470,31529,17531,10965,63658
+25471,39705,2295,2731,44620,61593
+25472,41996
+25473,9397,26107,56428
+25474,27682,67013,22837,49707
+25475,26786,38412,2760,53978,34535,47715
+25476,50615,32170,13532,6346,71185,5688,3665
+25477,20024,29967,53816,38013
+25478,14168,3379,18856,57063
+25479,34762,25617,77220,44539,26966
+25480,30113,15760,521,30838
+25481,76920,53945,41754,30470,49129,60835
+25482,63573,44169,66447,58546,73030,62214,5603,75691
+25483,29510,48797,46050
+25484,34196,64186,78084
+25485,9300,576
+25486,9831,32653,8859
+25487,2371,35971,23364
+25488,14737
+25489,18484
+25490,67647,21955,40272,6759,78600,57406,44307
+25491,41147,46055,7440,46564
+25492,15836,16079
+25493,11238
+25494,43192
+25495,75651
+25496,26131,60793,45192,26652,17784,69475
+25497,46329,53140,49755,39421,55869,40531,48461
+25498,48618,3320,6942,54130
+25499,67772,68671,23747
+25500,18040,43750,31441,8074
+25501,22930,21110,36136
+25502,51305,3777,33464,42589
+25503,57192,53175,6181,51773
+25504,35286,71525,59940,6683
+25505,56301,20029,9413,36630,727,56256
+25506,46871,5248,57069,1828,48185,71297
+25507,54023,27940
+25508,42101,511,70907,49320
+25509,44507,49874,74855
+25510,74063,46983,32751,65942,6116,15784,39759,55011
+25511,29554,74643,34138,55634
+25512,18253,48504,76363,60212,55169
+25513,46788,76664,25067,73746
+25514,32927
+25515,21471,68347,50138,48504,12570
+25516,64815,55043
+25517,44950,41538,41237,41447,22451
+25518,5327,605,7267
+25519,22612
+25520,64989,66735
+25521,45544,70507,8459,47129
+25522,9870,69213,5418,44279,49188,69195
+25523,20026,50871
+25524,24465,76299,71915,31376,64225,28545
+25525,59034,62600
+25526,39141,22694,67776,81985
+25527,36081,18363,69071
+25528,63891,21953,50200,16261
+25529,53598
+25530,43044
+25531,18014,18548,70993,2578,81384,42827,34604,31497
+25532,24268,73931,57115,10431,65574,64654,74054
+25533,2901
+25534,79755,18752,55029,16566,72320,31689,1151
+25535,30294,21112,77837
+25536,57101,54730,73865,69892,15916,58791,45235
+25537,73171,57673,66014,36591
+25538,36081,5369,45772
+25539,46719
+25540,15940,22639,16465,6026
+25541,81508
+25542,20306
+25543,75898,23782,29789
+25544,19776
+25545,75685,65955,13217,14459,70314,69298,5464
+25546,22193,51921
+25547,41430,25013,29856
+25548,60407,13626,46068
+25549,58859,50181,12436,29661,24461
+25550,79243
+25551,31192,78864
+25552,2991,35667
+25553,19459,72681,3329,56485,54850,74342,31832,66685,63370
+25554,57255,33011
+25555,4484,53916,54687,5154
+25556,53818,53756
+25557,62901,75730,31316,30616
+25558,25538
+25559,61637,52832,49422
+25560,5769,79374,80211
+25561,34681,33545,47478
+25562,24682
+25563,34779,60420,62066,6510
+25564,8139,23391
+25565,68961,67896,78675,65971,13239,26049
+25566,27895,55408
+25567,64179,15117,51728,10778,63769,13604
+25568,67144,4791,32890,68575
+25569,36075
+25570,30836,77519
+25571,51286,25190,450,41708
+25572,13052
+25573,1665,52350,21059
+25574,26698
+25575,54183,81959,58176,45362,61609
+25576,80322,47833,26659,40359
+25577,20762,13886
+25578,59668,49747,40263
+25579,80166
+25580,58478,10127,42522,72848,80933,64694,29156
+25581,16525,395
+25582,26383,25718,7138
+25583,29610
+25584,35755
+25585,46100,13805,24391,52676,18620
+25586,70235,47686,61274,79568,39151,63464,28795,26548,77957
+25587,30182
+25588,2168,30269,616,23975,7582,59549
+25589,22808,63257
+25590,16134,32300,59433
+25591,51840,40525
+25592,16486,32246,3265,72468,1279,74852
+25593,59794,8864,68145,44205,55038,43626,81274,66314
+25594,47541,49193,10572,59830,76011,59800,6325,64152
+25595,9360,31492,48125,49163,22066
+25596,48573,30294,35375,30271,3082,21287,16521
+25597,12700
+25598,64029,50725
+25599,25896,33676,59713,53267,65176,8557,78997
+25600,10056,47224,28643
+25601,61703,71989
+25602,57223,41978,24704,73592,36728,65502,60448,19727,35354,1984,14239
+25603,52090,58091
+25604,45684,72991,56886,41313,67962
+25605,64645
+25606,34802
+25607,72838,71132
+25608,1034,71450,9665
+25609,68180,5208,19617,5285,70546,33260
+25610,40043,80202
+25611,53558,10598,52083,42277,77845
+25612,19784
+25613,46087
+25614,685,75119,46160
+25615,23334,81091
+25616,46998,17776,26667,51053,60292,52581,1883
+25617,21049,15976
+25618,31949,47582,50824,30515,73091
+25619,76954,77166
+25620,52004,56184,73808,43472,36293,33007,76596,21972,1729
+25621,20265
+25622,81878,4284,1885
+25623,51829
+25624,64142,37687,64174
+25625,58279,45162,40479,75198,44474
+25626,47646,3572,12971,70225,77104,79577,35005,928,47840
+25627,73377
+25628,48720,29372,31501,45869,38722
+25629,17642,60845
+25630,52526
+25631,81785,7551,26624,1190
+25632,17246,36464,29840
+25633,41677,49274,76519,64144
+25634,44944,15313,39135,42791
+25635,81157,39042,24212
+25636,48506,66627
+25637,37734,36914
+25638,13823
+25639,40852,19862,22375,21953
+25640,7085,80109,32953,50789,53519,3723,63789
+25641,24513,50982,77240,10279,27446,38813
+25642,15981,76823,57034
+25643,46079
+25644,55262,77669,7198
+25645,40240
+25646,65552,30936,17838,77537
+25647,3666
+25648,31494,18368
+25649,32501,53468,78100
+25650,18762,7726,76710,7020
+25651,1813,22816,78371,15827,14508,65731,43759
+25652,72058,38919,2835
+25653,10469,48975,26989,48367,79369,50387
+25654,14369
+25655,64814
+25656,32266,56278,64096,57640
+25657,78046,9167,26595,33972,24937,79788,49135,35068,49279
+25658,21325,59315,47081
+25659,26901,68339,1065,14901,15827
+25660,6709,18387,32832,3111
+25661,63519,62767,30728,18430,65432
+25662,63610,36379,63675,75492,56748,41424,6330,47715
+25663,41586,37410,9424,22799,23621,73841
+25664,44830,81998,6023,34317,28702,53414,75481
+25665,15804
+25666,26689,33693,39847
+25667,69621,78883,25404,46534,69126
+25668,12535,36930,54709,40490
+25669,13280,46667,21490,7183,60337,69206,24225,61026
+25670,14738,4131,73267,69313,74434
+25671,72860,7030,45396,5775,26104,76823,15664
+25672,11676,63095,70253,19663,58771
+25673,42695
+25674,41430,6067
+25675,6954,45566
+25676,81379,47229,58249
+25677,51068,73091
+25678,58645,16348,58144,11211,53279
+25679,19524,35068,27129,62231,62838,81688,26796,47910,70333
+25680,59675
+25681,76623
+25682,19694,74674,45795,50934,32294,53414
+25683,14151,35480,21477,56307,52956
+25684,43407,26851,23474,27202
+25685,15189,22407
+25686,40010,35433,11938,68553,54052,7836,74659
+25687,42847,822
+25688,79206
+25689,31935,35300,59129,80924,53087,14874,28951
+25690,34535
+25691,60519,75462,15960,21340,1579
+25692,77637,66290
+25693,51456
+25694,82115,35547
+25695,4971,7092,81062,15531,8720,12909
+25696,58277
+25697,15264,6887,77282,77656
+25698,65265,37805,46286,30497
+25699,68209,40591
+25700,9356
+25701,50444,9260,17434,49175
+25702,63175,18561
+25703,69798,62862,27286
+25704,41391
+25705,46658,63321,58361
+25706,28000
+25707,42626,51445,57906,66057,16029,49640,31686
+25708,3067,45055
+25709,3630,57427,3153,49014,35538,33137,37141
+25710,1612,18189,2334,11538,5671,43670,2085
+25711,76145,54384,73632,12697
+25712,30323,48530,8014
+25713,26260,36464,22403,53511,13450,65666
+25714,16210,78352
+25715,42360,15470
+25716,52931,39731
+25717,15499,81487,30354
+25718,33825,60384,77968
+25719,21005,45689,12437,69331,58512
+25720,70280,25890,57659,1556,65013
+25721,52662,43606
+25722,6366,61369,20329,15114,47618,62480,27206
+25723,52206
+25724,49543,33538,71870,45418,42828,19382
+25725,14995,58943,45074,63459,835
+25726,18220,31380,6020,11028
+25727,66380,51020,69031,63936,38226
+25728,76460,28390,14791,29360
+25729,81054,72757
+25730,16064
+25731,45145,15185,30913,60585,65336,30678,6635
+25732,35092,2163
+25733,51166,77032,36322
+25734,60989
+25735,28962,3790,65417
+25736,76861,16544,8787,76085
+25737,15060,38424,49678,108
+25738,43695,3099,73024
+25739,44718,39436,44038,81653,45531,31011
+25740,48491
+25741,69138,49086,66163,67924,78818
+25742,43625
+25743,13858,21449,11649,9245,38704
+25744,30535,21827
+25745,57791
+25746,12875,14234,14802,20222
+25747,78688,8323,70706,67508,13100,55213
+25748,27469,8945,43709,6175,21681
+25749,28805,61902,2601,8691,36237
+25750,24213,29611,38935
+25751,26383,18031
+25752,38735,34025,63570,32960,12273,22439
+25753,2581,36697,3234
+25754,9870,55023,52460,36818,77693
+25755,73869,7091,68041,77584
+25756,12966,81999,55480,25382,14766,21462
+25757,45654,20809,34535,63114,50356,29312,64081,18887,4523,21556
+25758,63991,1991,31058,17404
+25759,52242
+25760,52511,74282,62847,31237,41796,61913,53173,4416
+25761,65037,29406,8202,70949
+25762,36477,77998
+25763,48025,14637,23633
+25764,73708,6832,19011
+25765,1464,76774,8291,36085,14602,80054,19132,15963,63023,51219
+25766,51810
+25767,50617,16890,4913,57085,54683,28925,70527,50780
+25768,15486,28394,37084,60087
+25769,78027,1944
+25770,19060,40085,51066,21811,63146
+25771,9720,47669,62870
+25772,75311,30543,75613
+25773,12535,70218,34263,26231,27946,5644,70015
+25774,73981,62170,8401
+25775,61838,67014,55242
+25776,81741,14635,71090,34910,25559,43465
+25777,4744,34880,2634,55136,27141,80124,21142,16948
+25778,19687,44028
+25779,43759,4806,56970,30267,31108,58006,10374,39218
+25780,36512,10405,23324,25244
+25781,77271,21198,55851,79082
+25782,27239,61287
+25783,43017,31773
+25784,55096,59626,64401,7038,75586,73790
+25785,68242,15008,28565
+25786,16140,52464,76131
+25787,11014,30014
+25788,24025
+25789,50549,65642,10747,39728,21688
+25790,33879,21935,24396,79127
+25791,3813,21926
+25792,38979
+25793,39178,36810,67960,53406,35171
+25794,55847,15586,25038,77202,57722
+25795,69238,11733,45966,17330,37530,57655,52787,64899
+25796,21090,32420,34441
+25797,2133,39078,74015,19298,16568,76526,29023
+25798,11516,28912
+25799,63959,53203,66547,45171,8823,69833,54972
+25800,46061,57666,46209,19794,48904,46971,39316
+25801,20287
+25802,51412,43353,31015,75472,61814,65811
+25803,3582,52770,60514,38969,80847
+25804,30310,47786,2359,9726
+25805,76040,24484,71825,22644,19519,78326
+25806,22806,21504
+25807,12066,66778,40327,54504,44406
+25808,16656,36332
+25809,1863,77352,24970,11143,76688,42316,14060,71908,78430,42621,26427
+25810,37514,56920,1861,7422
+25811,3969
+25812,21950
+25813,73925,57429,76454
+25814,41846,7745,50288,64279,10513,32675,10339
+25815,43784,10288,37556
+25816,36449,3038
+25817,26300
+25818,22063,55791
+25819,77362
+25820,27844,44347
+25821,3760
+25822,12507,66605,71755,46139
+25823,25612,16766,35355,43304,24210
+25824,23061
+25825,70395,29389,62354,80274
+25826,48689,77898,29594
+25827,2664,69883
+25828,74074
+25829,63259,22937,50349
+25830,27491
+25831,57654,65889
+25832,51787,29845,54338
+25833,27678
+25834,14630
+25835,52255
+25836,25843,13136,67076,38851,39258,51804,78213,9306
+25837,38068,69860,38192,26568,27152
+25838,36457,72008,69869,19798,60223,29388
+25839,6552
+25840,57156,49914,33403
+25841,55734,58849,12199,66765
+25842,34152,26303,13708,17494
+25843,75381,16017
+25844,40721,69649,61350,64095
+25845,77267,36993,77398,26706,35841,17812,20411
+25846,50163,40506,68009,35557,9250,8539,77782
+25847,60218,40359,5092,4626
+25848,34315
+25849,17336,25164,3164,16886,81016,38165
+25850,77228,2056,36508,50868
+25851,67253,33442,40729
+25852,22968,37722,67168,27313,33711,48692,50180
+25853,60140,22813
+25854,65762,40251,22922,71190,32210,893,25464
+25855,71166,11803,11211,53740
+25856,36546,45384,30857,62730,58576,66334
+25857,13142,4267
+25858,36988
+25859,1986,49937,2713
+25860,69494
+25861,54554,28926,15473,13895
+25862,16443,62908
+25863,53321,26497,52211,60703,24569,38015,13102
+25864,59257,22147,27130
+25865,63378,15971,51750,68873,67210
+25866,39677,30673,71442,69309
+25867,35173,52855,51032
+25868,29025,45486
+25869,16364,26860,63513
+25870,54399,39280,33470
+25871,24442,25273,31858,69037
+25872,44656,66510
+25873,12455,53380
+25874,12179,66901,58942,56207,61411
+25875,3113,19357
+25876,16212
+25877,16173,78019,58485,45064,64055,31694,56580,46281,43593,51309
+25878,9164,66949
+25879,53360,13739,65594,18070,37243
+25880,57542,26929,33309
+25881,57284,82050,52035,21754,14347,78146
+25882,6234,74346
+25883,21612,4276,40396
+25884,7533,77237,41397,31188,39020,2574,56177
+25885,53279
+25886,45384,7705,29021,11754,4889,75157
+25887,5416,62555
+25888,66497
+25889,680,55052,37678
+25890,11676,44294,73276,23802,25204
+25891,77231,26264,3723,23604,51448
+25892,72132,2618,20522,78060,30863,57448
+25893,67459,59629
+25894,53978,60181,11373,74923
+25895,22170
+25896,79139,61775,27908
+25897,81284,64705
+25898,14545,26532,42106,13636,48849
+25899,52562,2085,52732,27510,18105
+25900,18809,54607,42751
+25901,65706,32924,53588
+25902,12051,34484,21243,66738,78688,6487,79801
+25903,55487,32449,45447,34165
+25904,34487,8248,74956
+25905,63798,59141,11471,31837,24506,45511,45171
+25906,15071,33818,22319,67093
+25907,51233,38287,56230
+25908,54929,16228,80697,76283,51851,57597,27668,45594
+25909,78682,80689,23378
+25910,67015,30348
+25911,15757,69262
+25912,43001,41013
+25913,26089,7600,39905,22425
+25914,72452,78037
+25915,37218,49720,56037
+25916,31510,69031
+25917,22713,72074,23012,3679
+25918,76902,13413
+25919,81491
+25920,36425,22307,59229
+25921,78733
+25922,7361,75989,8378,29408
+25923,49693,73742
+25924,16907,18036
+25925,22057,14315,37614,28267
+25926,73450,12805
+25927,27182,58801,2930,23355,7361,45988,8900
+25928,19055,61060
+25929,80902
+25930,62915,52221,80419,60373,5384,38074,59916,45933,21179
+25931,43895
+25932,35576,21292
+25933,48186,74844,7696,61923
+25934,37061,27311,29051,1107,32250,20146
+25935,16235,40059,56310,23398
+25936,35362,69541,64436,17583,52578,74439,58485,4216,80310
+25937,45424,29831,73791,27181,50793
+25938,13574,70996,2590,33427,13149,17460,64259,39575
+25939,53711,59716
+25940,40147,71885,61182,70008,450
+25941,32493,49566,25267,2567
+25942,68059,64131,65640,31305
+25943,21787
+25944,60530,33597,40300,4889,59576,4789,10905
+25945,17802
+25946,56642,54410,43940,20436
+25947,44498
+25948,10342,74817,6657
+25949,15670,81057
+25950,32418
+25951,28547,41927,13901,81040
+25952,71227,12711,45456,66576
+25953,42547,14811
+25954,65706,75248,22713,63340,58073
+25955,62039,37079,73092,78340,50440,72955
+25956,1892,32074,80346
+25957,29228,16207,33020
+25958,51318
+25959,54661,33124,9273,75673,5493,63216,51169,44104,32024
+25960,39289,39515,79281,19367,51268
+25961,27296,7482,46216
+25962,54076,22319,42712,59691,80468,5485,76749,36445
+25963,10994,5853
+25964,69723,58729,12145,66131
+25965,48619,74732
+25966,66736
+25967,34649,77513,82023,33074,23590
+25968,59716,73021,38495,66578,7150
+25969,29099,75363,76774,10751
+25970,79106,74407,64719,31001,48392
+25971,77263,66359,68547,4379,64364,35004
+25972,53927,32034,63944,47932,26787,14288
+25973,23738,52747,79735,51913,15552
+25974,34157,28072,51424
+25975,78778
+25976,18597,996,4938,21159,48616
+25977,55124,40867,11269
+25978,31157,76067,37469
+25979,41446,50722,8935,54232,47016,40537
+25980,73735,2081
+25981,61614,69839
+25982,54417,80809
+25983,78261
+25984,78052,80315,17216,79252,67700,41971
+25985,80177,45264,52610,10368,13879
+25986,25680,25961,48735,13121
+25987,80619,40961,23353,3758,47480
+25988,80232
+25989,42012,71350
+25990,80256,46543
+25991,43102,54738,70084
+25992,77114,9082,5382
+25993,39763
+25994,31710,46704,66888,69515,37948,17314,41178,69259,56722,5292
+25995,68560,11972,5813,8237
+25996,2149,15456,48648,50386,34352,80163
+25997,22207,51710,76072,39152,3902,1845,53091,60901,49720
+25998,71480
+25999,14891,10690,40439,30617,23882
+26000,10137,8576,20136,42466
+26001,49412,68293,44372,55402,18920
+26002,68597,21816,15860
+26003,59168
+26004,69825,42641,80753,3945,19724,20451,37115,48898
+26005,49274
+26006,21433,3243,70480,263,74057
+26007,27410
+26008,71361,2861
+26009,6804
+26010,68546,77941,18960,14750
+26011,70295,78972
+26012,15531,71999,14198,52485,61722
+26013,21543
+26014,20454,10737
+26015,50669,13212
+26016,2629
+26017,58559,64668,47955,50615,50305
+26018,6084,4766,3836
+26019,56162,41481,7639
+26020,24537,13707,50119
+26021,46647,12771,38504,28804
+26022,39914
+26023,22271
+26024,77106
+26025,55221,17048,79032,44275,9364
+26026,63127,54454,8587
+26027,45168,70855,12498,72180
+26028,56936,6953,82,34174
+26029,5380
+26030,488,51189
+26031,70138,34399
+26032,45229,64328,46917,2742
+26033,27009,13764,18000
+26034,31505,22323,60039,42062
+26035,5115,38215,27263,48445,65557
+26036,31132,11536,73683,56315,10775,73317,26599
+26037,34837
+26038,38479,71150,14098,22049
+26039,56250,18919,39479,9001,81030,26517
+26040,3943
+26041,37346,74649,60811
+26042,60866,20807,68686,3605
+26043,42528
+26044,32605,21049,13392,30912,73097
+26045,63340,28850
+26046,41203,78499,38034,15949,76720,27637,2131
+26047,65604,45571,35979,39426,54330,33005
+26048,78185
+26049,44124
+26050,34989,37651,34132
+26051,25510,50622,47295,64082
+26052,27266,46168,18851,27974
+26053,55959,62166,28780,54938
+26054,60967,63958,1919,36398
+26055,39975,16469,71766,80836,58140,20637,14299,50627
+26056,16207,79919,35483,75283,58936,73182,23968,32026
+26057,21181,37067,31891,20624,62440,13858,13481,70382,45651,26303
+26058,68018,3135,50649
+26059,8880
+26060,63993,44156,70754,14186,4993,3031,46626,24803,48303
+26061,80313,20547,9506,11422
+26062,55826,61265,43310
+26063,67594,5937,75408,20880
+26064,16974,72794,78692,32292,69350,7987,59352,76330,18398,59415
+26065,6768,57380
+26066,76428,58548
+26067,67521,12054,38553,15026,71750,17654,41743
+26068,54601
+26069,45857,36635,61000
+26070,48031,5070,31862,79241
+26071,59540,35078,20692,51306,74146
+26072,35666,81049,51232
+26073,7422,35681,35116,20939,54019,66392,74532,32501
+26074,27114,69788
+26075,43172
+26076,8676,57353,4627,34404
+26077,27272,26526
+26078,67300,55957,62388,12843
+26079,40243
+26080,28032,69368,24277,23142,47804,40224
+26081,32053,74665
+26082,30064
+26083,29359,52876
+26084,37591,68570
+26085,30083
+26086,3266,18603
+26087,50209,78403,6831
+26088,65970,1708,18718
+26089,33424
+26090,60771,36896,3287,28684,62201,575
+26091,69784,51863
+26092,78894,850
+26093,76517,61438,7378,80446
+26094,37459,12242,72363,47081
+26095,11626,72634,21235
+26096,78505
+26097,51991,5271,64115,63600,63123,49200
+26098,71086,31442,3539,24359,6152
+26099,9026,12748
+26100,34204,47579
+26101,70852
+26102,70646,65090,77540,43486,13646,61647,56513
+26103,67882,78162
+26104,17486,52987,19299
+26105,54667,19119,3097
+26106,40410,6052,10289,66324,70992,3093,30112,68633
+26107,11683
+26108,40749
+26109,33043,70821
+26110,64224
+26111,39784,30387,10266
+26112,1437
+26113,42060,9978,68168,14578
+26114,34454,32245,74961,7867,18195
+26115,78336,61419
+26116,31707,57070,80819
+26117,77040,2128,59997
+26118,70350,50545,41754,49423,4798,22549
+26119,31687,5190,38399,58603,43162,61954
+26120,1318,75367,65442,15827,20364
+26121,33360,79832,43399,76006
+26122,57501,34562,63122,33940,56416,32013,56459,64178,9283
+26123,28626,13207,3142
+26124,40548,16553,25484,81386
+26125,16539,17275
+26126,15345
+26127,25406,33805,64344,25787,72194,10887,70254,74267
+26128,34135,16445,25901,69762,16944,51677
+26129,44507,65231,56070,59267,16188,68449,22317
+26130,63496
+26131,75491
+26132,50957,52989,10151
+26133,7666,67986
+26134,34223,80969,79189,60765,37482
+26135,41570,10855
+26136,70463,76639,53122,7116,62792,35905,49340,78347
+26137,47988,72838,32031,43987,73443,71870,12855
+26138,24444,75834,1585,21816
+26139,65703
+26140,34571,52262,48828,35556,51947,3952
+26141,13775,64921,29346
+26142,34066
+26143,21986,17737,45661,14115,16298
+26144,76327
+26145,25511,40005,55263,11861,41069,50916,39817
+26146,26434,75081
+26147,12967,28772,60753,64992,10045,19189,38909
+26148,53485,35676,41985,12071,75063,8899
+26149,61164,11504,77889
+26150,24681,18246,37573,74280,21976
+26151,64427,2371,5947,61174
+26152,7871,62291,2935,71651
+26153,5328,45308
+26154,60294,54616,17383,67949,66310,49255
+26155,49101
+26156,40775,23508
+26157,34552,38171,42403,53906,53553,54785,55929
+26158,72377,41652,13552,60291
+26159,57224
+26160,74580,28072,77633,81777,39541,40316
+26161,66161,73870,71061,17563,50221
+26162,16083,33643
+26163,18104,50380,52122
+26164,16439,21773
+26165,77537
+26166,56230,69718,31044
+26167,64527,43104
+26168,79347,44993,72218,8696
+26169,58495,57872,47129
+26170,3807,58538,42494,33116,25072,81490
+26171,18191,57704,24574,55066,25258,28773
+26172,2622,64428,39585,8398,40164
+26173,22403,19506,43397,33391
+26174,45830,20737,39421,49524,53476
+26175,49615,77010,15888,56948
+26176,39569
+26177,62859,21345,43512,59882,52414,67016,78524
+26178,42494
+26179,53459,23514,45594,2493
+26180,2734
+26181,70444,56334
+26182,17763,74111,24098,1207
+26183,35506,34053
+26184,1524
+26185,21881,49371,45677
+26186,33034,14042,23129
+26187,2286,32596,5092,29983,452,58917,73763,9264,22121,16877
+26188,10321,51360,33036,32785,23965
+26189,79963,44892
+26190,28841,38426,49371,63596,56061
+26191,45581,26135,9833,9831,63944,76702,22665,70825
+26192,27291,6147,42889,47768,717,77441,76532
+26193,38765,69092,54691
+26194,78769,61035,77233,19382,40381,53179,40787,3896
+26195,6580
+26196,20833,66913,22265
+26197,34711,80992,45970
+26198,61903,53655,63852,73800,35312,44838,26024,3673
+26199,6856,53732,18576,76355,81877
+26200,47676
+26201,81699
+26202,21917
+26203,81266,44432,27589,72848,66293,23292,72956,52185
+26204,34729,16372,71732
+26205,6945,58200
+26206,74185,65913,77604,66206,40787
+26207,25449,11180,50906,73054,67930
+26208,78968,46948,7198
+26209,12769
+26210,76791
+26211,7630,81708
+26212,18566,17238,73216
+26213,59794,7490,59186
+26214,76542,28742
+26215,71693,78723,29135
+26216,31257,661,3905,41698,24596,66344,35394,28237
+26217,279,58900
+26218,76743,44421,49135,27923,76508,67273,105
+26219,69018,28973,28744,27631
+26220,16107
+26221,14714
+26222,36888,3339
+26223,28861,9636,61843,70163,42289,1576,46714
+26224,34403,42830
+26225,38791,74801
+26226,61823,9208,935,28015,52929,5321
+26227,13690,66043,39798,51170,13309,57364,37220
+26228,17195,71773,36610
+26229,77118,16408,81010,38124,33055,46466,41335,28662
+26230,52933
+26231,69841,41744,53385,40005
+26232,37480,64044,41671
+26233,46422,21713,16910,11834,4756
+26234,64663,22786
+26235,66397,51538
+26236,79932
+26237,33816
+26238,60314,33061,16664
+26239,25381,75892,35810,44225
+26240,37821,81939,59616,37848,11212,653
+26241,71751,39516
+26242,48858,15114,30039,20692
+26243,37507
+26244,35960,39862
+26245,47452,15299
+26246,39149,67139,20547,14367
+26247,8492
+26248,46928,53434,49221
+26249,24541,40703,48742,27781,34565,76090
+26250,17306,62695,42614,34477,63993,3388,5702
+26251,1453
+26252,60528,79395,67132,28581
+26253,50916
+26254,47485,40264
+26255,64486
+26256,3225,27330,54455,15483,9615,55924,8703
+26257,21167,36562,286,33210
+26258,1674
+26259,55026,44669,58231,9684,45348,51967,79505
+26260,12830,14060
+26261,26731
+26262,43722,62687,46970
+26263,41282,32363
+26264,65529,51261,75237,52958
+26265,75450,376
+26266,52915,59773,21826,43220,18360
+26267,71005,66783,55169,57025,24702,17739
+26268,63393,47688,33728
+26269,32017,31380,27652,3045,74005
+26270,3005,79305,55432,2511,63652
+26271,53612,57780,52704,18641,8948
+26272,53611,65085,38448,59281
+26273,75566,65034,43776,51256
+26274,10032,40814,78382,18334
+26275,44844,80067,20801,55121
+26276,12914,9447
+26277,44276,34704,13701,12483,51833,74673,41331,31726
+26278,11029,36321,38637,60394,13605
+26279,68907,55845,10980,32091
+26280,49874,72661,14521,66033
+26281,49153,58931,81692,36309
+26282,34090,72072
+26283,49550,34646,41478
+26284,12106,41990,39564,69919,28006
+26285,22110,2518
+26286,36163,36501,3140,40078,71596,25267,73537,73980,36949,65908,25432
+26287,43671,43363,9560
+26288,79127,22044,35285,24399
+26289,23923,47131
+26290,51439,23110,32728,26914,81174,62839
+26291,49622,38011,63165
+26292,82146,61530,76634
+26293,2274,3956
+26294,68260,41669,12450,154,28000,58320,1907,37751,53440
+26295,64115,75795,44123
+26296,69577
+26297,33633,37188,24359,49241,17887
+26298,39785,16670,74795,49774,73016,60799,6003
+26299,33763,19617,65802
+26300,2069
+26301,70708,49868,18883,22106,9450,46272,76105,39009
+26302,78091,65709,60293,46782,11818
+26303,10445,2259
+26304,14211
+26305,76234,12350,20181,53042,60434,81547,9223
+26306,54633,76871,6166,67435
+26307,71946
+26308,60285,418,81887,58865,19250
+26309,48489,45844
+26310,68016,38766
+26311,71269,48687
+26312,41700,11409,45490,54595
+26313,8539,15188,65536,15143,63185,64033
+26314,25459,31103,59820,66512,13282,28297
+26315,39282
+26316,71483
+26317,46151,76591,40823,64428,20715,40159,50662
+26318,77550,25120
+26319,56727
+26320,73280,15997
+26321,65166,8609,24745,53248,32654,68924
+26322,39750
+26323,29150
+26324,35099,35154,35757,73020
+26325,12247,20059,26495,14257
+26326,19044,68558,50890,27989
+26327,26261,43750,57790,41422,35210,54400,38287,75357
+26328,2734
+26329,68614,11512,26039,44394,66030,16674,73438
+26330,68815
+26331,67637,40920,76183,65627,33972,69853,17095,77193,40065,65909,14901,39325
+26332,30167,50912,9703,21958,81640,22987,3157
+26333,55735,61525
+26334,51631,48522,24842,72492,38056,26110
+26335,47028,11647,3865,13967,25950,63099
+26336,23332,46780,71180
+26337,30495,31960,59374
+26338,31237,22468
+26339,26210
+26340,48569,67125,23082
+26341,2231,78189
+26342,39886,45005,946
+26343,27422,25958,769
+26344,9401,24054,35468,52044,8686,15919,18567,58684,23449,23056,80640,37012,8152,12716
+26345,67606,80591,16944,77895,8416,36953,17596,74801,68030
+26346,41090,15794,10582,64746,69515,64185
+26347,34125,423,53487,38270,48669,52605,29895
+26348,62712,37593,50044,36009,56769,1133
+26349,40702,3835
+26350,4267
+26351,30873,22183,1288,17644,12058,20007
+26352,48127,35181,78033,53633,68076
+26353,15819,58955,14336,6448
+26354,13553
+26355,70051,43031,26738
+26356,8186,45589,81016,17211,70750,15027,50891,77010
+26357,9885,44780,57132,35975
+26358,12603
+26359,6412,12619
+26360,65624
+26361,23818,75736,19605
+26362,45677,77006,35493,29804,49703
+26363,39447,42309,23734,54090,55368
+26364,2843,58389
+26365,73377
+26366,32645,81407,9792,54937
+26367,57540,77547,21252
+26368,12591,22273,39630
+26369,2961,5364,28751,18419,79882
+26370,67556
+26371,17996,60346,54766,46390,1819
+26372,24275,27444,57089,5053,27410,80911,77111,9833
+26373,6348,14169,78077,40222
+26374,60369,55893,55297,77417,3261,47130
+26375,78615
+26376,29436,42715
+26377,68825,48294,29875,80156
+26378,8764,53063,74591,49317,62098,39585,80373
+26379,6265,73797
+26380,25855,62071,74568,53369
+26381,7610,42721,22947
+26382,69112,78648,12113,42267,62233,75020,29455
+26383,77029
+26384,39889,43044,54608
+26385,3972,81287,52376
+26386,53049,80941
+26387,75063,30363,25061,18948
+26388,7984,52097
+26389,71169,15826,21626,57271
+26390,49402,57215,3364
+26391,5686,66790,74434,21192,39092
+26392,12603
+26393,1154,8046
+26394,12996,18182,42837,66390,44762,17945
+26395,43021,2629,44132
+26396,81654,39471
+26397,38450,10757,26311,55176,61138
+26398,73077,64177,45411
+26399,52297,64483,76451,8145,69322
+26400,75498
+26401,77482,51924,47771,10235,12139,40143,27327
+26402,55382
+26403,67622,64609,8109
+26404,27341,23014
+26405,24395,7601,70893,29535
+26406,62681,1903,13676,15361
+26407,67303
+26408,78428,64463,40071,74584,74242,81932,3249
+26409,52595,52920
+26410,31246,60402,31247
+26411,66869,21360,78625
+26412,75507,47592
+26413,60456,42627,68285
+26414,61447
+26415,2734
+26416,61411,26711,57692
+26417,51139
+26418,67580,12372,56448,31463,58873,19772,21000
+26419,16011,47620,48549,64087
+26420,53069,15297,42795,6996
+26421,8747,23462,33055,7250
+26422,58232
+26423,11264,74226,36572,43505,60210,61797,18767
+26424,73643,55028,79020
+26425,35763,56755,81406,18566,28020,7366
+26426,30924,79425,35007,44458,47465,7830,72669,24872,58128,65189
+26427,71568
+26428,25507,66303,75487,61668,79867
+26429,56532,154,72151,58052,42771,56554,31287
+26430,3420,21238,36769
+26431,23124
+26432,75046,76219,1874,8139
+26433,32915,79741,57620
+26434,29730
+26435,68432,41702
+26436,77191,39499,60965
+26437,72219,48568,42774,3856,13801,28787
+26438,65851,25728,21567,71667,60845,22342
+26439,56852,20566,12349,16907
+26440,68449
+26441,18088,72659,3994
+26442,42661,56921,21520,71327,21793,30755,30444
+26443,79650,23204
+26444,56694
+26445,81061,42113
+26446,19899
+26447,5751,22473,38880,76664,1491
+26448,55721,62061,39066,80384,50017,2604,80378
+26449,43923,1783,60422,7393
+26450,10138,72914,46459,64246,15107
+26451,77457
+26452,56315,43562,66977,12571
+26453,78090,51020,46123
+26454,39441,55181,11642,36746
+26455,45940,73739,10295,26575
+26456,26296,77063,74526,80460,13690
+26457,73865,41733
+26458,33400,33831,30770
+26459,39216,20596,14800,28934
+26460,65889,6012,80012,37377,60535,5051
+26461,17472,73146,14214,53280,68704
+26462,75399,45896
+26463,51321,1073,42532,6810,80259,72293
+26464,30901
+26465,36440,13141,55855
+26466,19769
+26467,43747
+26468,26190,78455,79998
+26469,72525,70791
+26470,27885,19385,40359
+26471,41127,66510,12734,72676,47756,20033,60975
+26472,37555,3251,62951
+26473,50532,75490
+26474,51206,3694,53030,33070,59678,78898
+26475,34313,47912,4557,37868
+26476,69750,44020,48058
+26477,80330,254,35047,19806
+26478,57050,61861
+26479,73762
+26480,79715,25742
+26481,22109
+26482,43530,23533,43086,47996
+26483,78191,45756,40095,1893,79053,54611
+26484,73377,35165,37879
+26485,12562,65604
+26486,30696,81996,3464,21115,58170,71762
+26487,66376
+26488,2340
+26489,11581,55166,58270,21730
+26490,66501
+26491,38508
+26492,66047,43101
+26493,27574,68352,16296,2100,7150,14964,40062
+26494,39234
+26495,4335
+26496,22176
+26497,14771,78691
+26498,62823,27463,44396
+26499,38291,78554,24649
+26500,35369,3838,73139,80403
+26501,10405
+26502,31091,38017,3107,80508,72026
+26503,74120
+26504,63033
+26505,14942,76252,26637,39138
+26506,64859,16731
+26507,33739,49609,70642
+26508,27645,77262,11604
+26509,58553,65279,13658
+26510,69541,26503,226,80115,16869
+26511,1251,19293,14431
+26512,45778,1230,40224,24654,16321,54793,60007
+26513,55333,1414
+26514,63493,70858,17290,58912,20070,40474,68720,8830,11506
+26515,5274,65660,2695,11407,69169,61099,11582,69366,23003
+26516,57083
+26517,70799,66993,44125,13
+26518,33895,58485,13898,25894
+26519,80503,52869,59352
+26520,66850,61425,58504,14744,10766
+26521,77158,9905,41319,55076
+26522,59586,70254,69961
+26523,22375
+26524,15134,36665
+26525,24963,68923,47199
+26526,75450,39889,31083,58308
+26527,15591,78275,730
+26528,79001,60611,8459
+26529,1274,27920,29315,40566,4125,34252,6813,49351
+26530,70708,43776,33075,52795,4387
+26531,67792,21056,9825,22947
+26532,26165,50384
+26533,33079,17350,69206,39815,52486
+26534,70680,48186
+26535,14538,75719
+26536,3097,12277,8339,61378
+26537,8628,5878
+26538,6018,28874,41762,30390
+26539,3394,55043,62951
+26540,51861,18189,38499,6546,6786,73067
+26541,55382
+26542,13694,41638,13230,74329,2234
+26543,60060,10890,42378,73894,40590,5109
+26544,62497,66195,67118,55014,80237,35094
+26545,3068,25642,70689,67947
+26546,18371,73990,65176,31898,79801
+26547,10766,15846,60038,33090,22686
+26548,54380,4019
+26549,56427,80014,55680,18537,54842,67998
+26550,76992
+26551,17497
+26552,42036,27231,36735,613
+26553,60453,64938,42215,48162,46328,31420,48617
+26554,37651,74890,52246
+26555,80235,5332,7373
+26556,30348,75617,29647,38004
+26557,11817,73240
+26558,30077,50494
+26559,41401,54140,35937,67143
+26560,71865,25162,31246
+26561,43734,29952,51046,43698
+26562,8355,19444
+26563,70114,18144,66633,72220,80507,9508,79908
+26564,11127,67105,11380,23517,9543,8015,25509
+26565,66733,62127,80007,35924
+26566,5904,7399,75423,41941,77963,105,46973
+26567,44924,65179,61124,56624
+26568,55499,38601
+26569,73460,45490,60519,18376,68431,75831
+26570,32254
+26571,28899,68831,58815
+26572,56393,56107,37758,59039
+26573,52068,44630,16856,57429,20842
+26574,77199,64936,74648,26831
+26575,9566,46893,12073
+26576,29942,35723,56701,6479
+26577,72362,77544,43588
+26578,62634,61653,47490,64357,17349
+26579,43666,54053,62604,2433
+26580,14686,55984,73143,23456,45359
+26581,59200
+26582,80573,68753,18371,31420
+26583,8934,39468,54455,66161,9628,58286
+26584,68491,53063,70263
+26585,6860,30719
+26586,79794
+26587,72357
+26588,65890,55044
+26589,63873,36267,69473,1614
+26590,41086,55625,28434
+26591,1127
+26592,52990,4052,70583,1892
+26593,44026,63850,16211,36943,63295
+26594,9632,12717,30391
+26595,36279
+26596,78967,67769
+26597,19420,80106
+26598,62959
+26599,80638,75314,70916,69900,77066
+26600,33612,15019,48432,14047
+26601,19113,3016,16630,59879
+26602,54564,30855,30843,63579
+26603,14376,71033,38832,31915,7089
+26604,624,41209,56540,60472,67382
+26605,35694
+26606,54326,23677,53517
+26607,49093,1759,77690,31013,57784,33318,62086,72343,24195
+26608,12256
+26609,47285,33132,42269
+26610,25489,76260,53916
+26611,64814
+26612,49749,25960
+26613,18305,41244,3210,81429,24150,32566,44651
+26614,16510,79757,79894,58385
+26615,58596,46072,29594
+26616,12311,50564,46138,13086,49258
+26617,39620,38867
+26618,59933
+26619,22161,29710,71028,13704
+26620,29078,70383,77851,76542
+26621,71755,31976
+26622,18665,39022,74671,45109,76751
+26623,48003,4344,67843,21614
+26624,73531
+26625,61193,63045,81808,55701
+26626,23922,29405,43058
+26627,80116,42949,66805,48379,79035,49900,34882
+26628,6510,29732,34502,79310
+26629,25616,56775,27273,32341,35380,68544,69717,47302
+26630,6508,22028,30357,11692,48232,22216,41285,29799
+26631,56636,66690,26467,19057,79978
+26632,38130,80307,81292,71664,49565
+26633,38160
+26634,38153,32127,67465,64100,81227,12947,73131,35814,63744
+26635,2120
+26636,40998,44787,16378,81414
+26637,70910,72167,27728
+26638,694,69617,28279
+26639,43444
+26640,3654,64000,55095,20691
+26641,3186,68722,78783,75099,15257,52255,82006,32673
+26642,74153,77934,28871,78670,6020,25815
+26643,34045,55263,17660,15622
+26644,71478,12710
+26645,5391,41353,16011,61412,52361
+26646,52815,55374,48522,80160
+26647,50086,14401
+26648,55659,10522,74319,40024
+26649,47646,54055,55457
+26650,12566,11968,72684,43783
+26651,824,62820
+26652,34238,50808
+26653,10331,22292,26218,64978,35235,22663
+26654,55937,12436,51302
+26655,82068,17508,73023
+26656,5057,26588
+26657,70422,72452
+26658,57744,27438,71829,3098,29808,52261,3830,13377,80284
+26659,66788,68595,56475,29183,67458,77511
+26660,29770,1254,67483,68558,58852
+26661,51472
+26662,56614,50518,68819,42336,45944
+26663,44520,13723,51439,76636
+26664,41216,68745,45428
+26665,36385,56874,35556,77545,65111
+26666,34576,64193,8416,57792,70554
+26667,40672,24806
+26668,2908
+26669,76789,81267,20901,52966,27585
+26670,27230,10993,13125,79303,17708,48101,69035,75316,38789
+26671,70281,64418,18790,101,63596
+26672,67286,3282,18491,3286
+26673,26958,47344,50569
+26674,73636,61219,47749,75349
+26675,54462
+26676,23107,3194,59095,16227
+26677,60200,8931,47274,76707,60377,26972,31372
+26678,37048,26410,24609,77838
+26679,47958,26069,22182,60965
+26680,21113,52313
+26681,65648,51623
+26682,30990
+26683,32583,76612,25317,7706,75013
+26684,44755
+26685,65692
+26686,37136,36440
+26687,17623,43280
+26688,46092,31352,17252,34021,46649,70897
+26689,34695
+26690,58142,40406,28053,75060,19707
+26691,32593,58193,22949
+26692,2184,55829,20965,73522,65555,79255,56401
+26693,46076,9888,69194
+26694,22374,59556,7489,78410,61363,79852
+26695,50108,79889,26200,46548,6142,51199,28622,48310,53648,27505
+26696,40187,58902,53245,23796
+26697,57670,75296,683
+26698,18072
+26699,57170,76025
+26700,51989,31135,51178,38306,58464,26324
+26701,19937,47700,42329,42444,76630,59875
+26702,16760,11381,16295,18133,22701
+26703,68874
+26704,70031,818,68781
+26705,77306
+26706,37507
+26707,19943,70215,36862,33445
+26708,29164,42288,1687
+26709,39234,7438,16448,42454,23826,61934,31790
+26710,78669,53935
+26711,36222,40078,2065,32676
+26712,54528
+26713,52691,40286,61000
+26714,6198,74941,25953,21799,30088,32715,67898,52062
+26715,69190,60952,51347,53090,549,73045,11439
+26716,6119,43663,6856,27674
+26717,65405,35475,12751,76708,15396
+26718,30402,1453,8398
+26719,75307,79610,42946,45722,63889
+26720,59504,66495
+26721,47136,6519,46139,12837
+26722,15163,34925,53031,17314,35711
+26723,39077,57437,75900
+26724,45803,69793,20477,40918,29568,39616,18096,7664,30944
+26725,52636,42332,16262,59738,36829
+26726,54448,7223,63562,21292
+26727,47218,5502,28344,74481,43172,16418
+26728,76612,27944,43192,51373,2135
+26729,14558
+26730,51539,14108,54243,21113
+26731,8362
+26732,19088,1359,70978,40835,76010,11763
+26733,75072,68272,24119
+26734,77019,53683,31780
+26735,57078,76944,7938,40118,32079,73777,45822
+26736,27394
+26737,77981,13161,37979
+26738,29959,10591,46360
+26739,5555,17920
+26740,46547,64624,59271,69129,71962
+26741,80300,20240,6034,9475,5150,3383,79176
+26742,62420
+26743,197,1562
+26744,43558,62985
+26745,59260,57553
+26746,18648,72214
+26747,83,25792,35380,5922,30390
+26748,42828,16362
+26749,37561
+26750,11653,12509,51909
+26751,26837,49569,33947
+26752,37238,62608,81866,70783,12713
+26753,42930,28581,18382,48007,23948,65537,48223
+26754,37838,24969,44201,71094,58563,15249
+26755,41430
+26756,3319,30940,65189,78173
+26757,15555,61263,27092,34916,23530
+26758,13896,8566,44231,71955,67095
+26759,81408,37597,57513,10270
+26760,48188,61034,47101,67987
+26761,25781,36320,24227,37940,63623,32264,64996,47712
+26762,7147,21931
+26763,16147,46871,8654,40036,79158
+26764,41285
+26765,23064,40171,74495,64753,62436
+26766,53444,22530,36907,29444,52439,71018,64207
+26767,18084,53535,36105,23833,65814,4043,67350
+26768,79611,81636
+26769,79370,21000
+26770,51245,43883,16216,13304
+26771,13443,53671,785,78763,30356,6412
+26772,34463,75399,46433,69813,42835,46980
+26773,26345,80890,48209,60306,46766
+26774,43716,14563,14144,13596,13743
+26775,78326,47446
+26776,24771,56705,19936,30376
+26777,16304,29418,81699
+26778,842,28791,74875,13055,41463
+26779,16418,18732,47686
+26780,77187,73008,76663,26087,44873,63106,11780,80955,9422,15110,26378
+26781,41549,48326,41817,20866,35703,11449,48115
+26782,37687
+26783,34226,48453,59633
+26784,4387,1949,65971,51124,16232
+26785,18084,25147,11724
+26786,47697,24827
+26787,42371,48952,78173,16074
+26788,13168,51206,72810,26340
+26789,51248
+26790,42256,51124,23082,15730,80335,49930
+26791,34580,7748
+26792,55408
+26793,80417,2419
+26794,28536,68269,28128,53987
+26795,27089,22007,28947,34134
+26796,47751
+26797,5593,38877,68721,39550
+26798,26422,72034,73582
+26799,43555,60657,8970,24804
+26800,70879,70006,52263,18409,74307,66369
+26801,55454,36760,65266
+26802,79868,69910
+26803,2156,12111,57630,73245,54509
+26804,47493,63598,75159,54526
+26805,42993,10280,48329,77219,53873,47988
+26806,6501,37102,65424,57770
+26807,38690,32570,14168
+26808,9352,38683,76412,25966,2681,27923,3274
+26809,18661,77858,46082
+26810,64529,77519
+26811,14986,64491,33075,30189,9006,80051
+26812,338
+26813,19000,441,10343,75114,49511,39512
+26814,67832,75613,54346,35840
+26815,16748,43871,81000,877,10887
+26816,45303,65484
+26817,8100,48500,3125,6725,8413,48785,25716,11802
+26818,22345,23541,58676,39361,70706
+26819,428,40977,30460,14257,15053,13637
+26820,66989,66739,42025,19154,18523,73371,21040,44755,30279
+26821,12358,77098,15319
+26822,47510,58296,225
+26823,35118,61712,67459
+26824,50903
+26825,75047,75083
+26826,73497,37932,12908
+26827,4926
+26828,57541,73883,78805
+26829,7793,36804,38566
+26830,28621
+26831,50708
+26832,34116
+26833,67250,38473,50398,22837
+26834,16256
+26835,78987
+26836,29141,27371,5336,34441,27597,47709,29543
+26837,55004,5654
+26838,74490,9865,73146
+26839,11543,5124,73319
+26840,16706,16572,43285,54929
+26841,21113,79306,10037,61913,73481,31973
+26842,14548,64899,23443,45139,68563,37085
+26843,9124,21575
+26844,31247,44026
+26845,48806,45291
+26846,51212
+26847,54434,48675
+26848,11935,22092,27519,19746,8746
+26849,55118,18699,49482,12987
+26850,18650,8362,79766,39210
+26851,9001,17425,15557,27682
+26852,68534
+26853,34234,14804,43227,70212
+26854,42176
+26855,73022,1417,44666,11596
+26856,74867,20601,19614
+26857,21461
+26858,35822,12235,53563,68315,80243
+26859,23504,65474
+26860,77257,6532
+26861,65946,15456,68739,2587
+26862,68103,60399
+26863,8011,49334,44984,68202,4329
+26864,54708,26161,16146
+26865,5441,34938
+26866,51757,81756
+26867,2835
+26868,296,71529,63596
+26869,47950,59281,16577
+26870,24204,40496,13196,25140,9826
+26871,17547
+26872,2337
+26873,19610,57558
+26874,50657,16761,70806,68198,77317,34869
+26875,37055,77245,44940
+26876,12830,63639
+26877,56531
+26878,51435,61153,64119,74098,68517,11344,9028,527,38965,39742
+26879,71528
+26880,56077,70205
+26881,10531,10217,70116
+26882,58565,37124,59880,20175,767
+26883,54909,2294,38534,46777,62555,8010,35462
+26884,57467,6333,76846,66055,33769,62024,34978
+26885,7966,63611,31526,6219,9345,18296,52556
+26886,46615,26580,81058
+26887,4335
+26888,75861,11672,70232,47441,49683,40159,12224
+26889,29474,15552,50806,30632,20095,37715,18574,73449
+26890,43607,49350
+26891,48055,17514,10728,47296,35285,68245
+26892,44199,79510,44169,181,15172,63763
+26893,58222,55093,10438,77442,6094
+26894,81822,6472,16083
+26895,32448,73717,33355,77865,33910
+26896,14035,46647,27139
+26897,68599,55722,73810,28207,66547
+26898,3924,7865
+26899,46362,31911,64160,50422,44807,58236,54204,75838,35872,42240,75631
+26900,75986,35807,45263,65410,12895,72159
+26901,25544
+26902,26422,27085
+26903,50847,53277
+26904,16668,557,50646
+26905,72251
+26906,33875,11230,23962,47728
+26907,51855,57871,73776,26197,15226
+26908,24220,22289
+26909,12491,30677,66480,30000
+26910,82016,48285,10150,19183,60463
+26911,38243,81793,44466,56180,1058,67466
+26912,44294,4549,48180,28429,28464,8255,13512,7738
+26913,11388,54190,55074,9054
+26914,37636,52400
+26915,50979,72172,57732,23238,51986,33865,65055,71181
+26916,81301,55408
+26917,76738,61928
+26918,54269,43516,31486,38893,1594
+26919,67218,47736,36696,66985,7716,48761
+26920,33517,53102
+26921,26689,16106
+26922,30077,81469
+26923,67091,46227,2104,31722,72317,21526
+26924,39397,29445,42462,41588,25701,56312
+26925,78007,68944,25350
+26926,1241
+26927,45998,76958,81472,75927,58329,38663,50309
+26928,13489,63718,1292,38170
+26929,54185,44042,39735,67027,75490,8085
+26930,49950
+26931,77167,66938,48703,38640
+26932,82114,10469
+26933,79457,75439,63628,34473,17287
+26934,36260,43793
+26935,39702
+26936,76136,43635,14287
+26937,25286,7253,79499,64973
+26938,31896,61772,52908,20604
+26939,76012,18639,22761,79036,54133,55803,14668,5585
+26940,62880,81148
+26941,72944,31531,71073
+26942,73763,35355,80747,4575,14999
+26943,66266,9211,11242,10156,17170,76318,53241,54948,15726,12238
+26944,19249,3860,69293,55332
+26945,70043
+26946,20048,13380,30147,53976,73729
+26947,80200,49577,34284
+26948,58249,63045,2156
+26949,53091,40788,67926,30619,6105,7754
+26950,65119
+26951,74268,66931,56215,77215,31547,61026
+26952,44150,63784,9901,80109
+26953,52444,54229,9307,77177
+26954,61264,10553,53404,65680,37274
+26955,68413
+26956,43376,77923,27685
+26957,35100,66107,4804,2259
+26958,3716
+26959,5197,2857,76124,53241
+26960,8948
+26961,30731,46229,63517
+26962,68260,4376
+26963,62794,55545,6670
+26964,33237,37954,32359
+26965,8658,44231,22194,2220,52931
+26966,63778,23665,55511,3072
+26967,9215,49866,13163,5219,50802
+26968,53853,14508
+26969,4648,61640
+26970,23191
+26971,21000
+26972,969,63812,38348,69017,61042,41302
+26973,31940,49230
+26974,78560,11770,1923,51473,32887
+26975,29730
+26976,16377,74178
+26977,53224,27355,65389
+26978,10512,10746,79423,14542,5555
+26979,20292,8530,64702
+26980,40045,26186,57760
+26981,29966,71885,46250,13545,71440,46937
+26982,29577,9321,24246,12993,58367,40266,37209,51965,49822
+26983,68670,73001,57676,22791,56131,55006,25873
+26984,67885,7631
+26985,3639,22659,36842,51257,53135
+26986,43531,12749,63403,39666,9564,26608
+26987,68408,82152,71947,70498,68161,40493,10930,31548
+26988,35728,64815,19357
+26989,63859,66096,39918,2723
+26990,22608,72144,56020
+26991,49888,12
+26992,68636,81719
+26993,48698,61217,31728
+26994,46566,39231,13934,40742
+26995,80342,50506,16711,30936
+26996,61793,41643
+26997,42595,19458
+26998,22904,19119,59850,66997,9904,41196,8840
+26999,61588,36216,74332,74943,4822,46495,18655
+27000,40928
+27001,51908,15889,35571
+27002,45766,64306,35797,17514
+27003,52679,55255
+27004,66588,4349,47293
+27005,2431,38830,72676
+27006,46480,75138,5639
+27007,30066
+27008,34110,8779,61621,20115
+27009,71480
+27010,66198,59128,23365
+27011,51335,38898,67770,45531
+27012,28956,59389
+27013,67563,20227,8839
+27014,36177,5819,22221,72626,10915
+27015,61988,56563,53633,19353,43040
+27016,51204,64677
+27017,20203
+27018,50016,62255
+27019,75856,5652,13362,5471
+27020,31705,5835,17128
+27021,52165,56699,31970,57184,57671,42830
+27022,81634,44456,39366,43556,44435,75734
+27023,64914
+27024,70516,42154,37199,6452
+27025,27360,98,24289
+27026,37670,5069,65706
+27027,63020,75252,30091,23099,50470,78796,38831
+27028,19787,46980,59927,38615,67601,78421
+27029,37283,59321
+27030,23653
+27031,76258,8044,56831
+27032,16445,16152
+27033,5115
+27034,81632,28537,63536,45220,32730,25538
+27035,49100,1823
+27036,16347
+27037,81457
+27038,6278,73470,36985
+27039,65283,33336,78875,13016,49066
+27040,7167,75718,3595,10909
+27041,30126
+27042,16121,38399,53023,41108,45186,38629
+27043,79937,54110,75446
+27044,16146,23930,62805
+27045,66193,51900
+27046,37332,4299
+27047,12512
+27048,63264,44653,1645,39795,61506
+27049,19399
+27050,80620,11217,49479
+27051,70538
+27052,52966,33854
+27053,21062,8730
+27054,28246,26771,72582,33210,63373,37094,39916,54122
+27055,18885
+27056,454,18665,58569,32077,14458,21314,81322,626,33471,70262
+27057,66012,74582
+27058,33774,5505,73611
+27059,13207,80408
+27060,47077,3152
+27061,80310,43703,35466,37274
+27062,40319
+27063,49845,57840,2099
+27064,37491
+27065,77219,17238,26303,33294,31940
+27066,35473
+27067,34393,13750,77722,19091,73586
+27068,28459,5386,34960,19570,13179
+27069,24464
+27070,24733,20533,17534
+27071,38771,51074,60785,2874,14680,51331,2207
+27072,78751,77009,69842,49790,5577
+27073,54803
+27074,2967,67490,79121,39222,36610,4592,70483
+27075,56007,69026,17008,63347,64071
+27076,44790
+27077,40471,55406,32511,9711
+27078,40124
+27079,79426,26253,72681,53103
+27080,15706,62365,80976,78133,64593
+27081,19817,25167
+27082,77773,74056,79481
+27083,25351,23167,62935,50808,23551
+27084,23410,71127,81210,1704
+27085,36774
+27086,46913,26236
+27087,59520,60135,68834,82136,20361
+27088,27929,54787,15155
+27089,59269
+27090,73225
+27091,47724,52429,81
+27092,31306,62245,42838
+27093,64802,12558,36223,13622
+27094,45281,47754,33345,64608
+27095,2582,59940,60592,2702
+27096,7129,25514,53649,66927,3407
+27097,63539,22251,66865
+27098,38390,76273,23268
+27099,63230,73422,60579,80167,19899,69139
+27100,8370,19939
+27101,31380,11388
+27102,67103
+27103,55831,64078,71154
+27104,48494
+27105,38397
+27106,8543,34183,29095,4885,8630
+27107,77968,59142,75209,37500,30103,76205
+27108,48598
+27109,72235
+27110,3335,45401,11043
+27111,56506,5293,37025,2332
+27112,33664,75320
+27113,14009,33825
+27114,43323,31156,15908
+27115,44134,73317,6225,25568,26616,48750,59466,17934,56633,60674
+27116,45257
+27117,63599,36355,14740,36102,66961
+27118,27088,20254,57475,48031,37820,36078,40771
+27119,68741,43875,19754
+27120,46397
+27121,72585,54583,79135
+27122,46746,73463,20216
+27123,27201,7599,9830,49899,64638,18987,61128,60888,18059
+27124,37207,29775,55041,60980
+27125,11883,55142,4928,63119,53847,22774,8671,28032
+27126,34034,50870,78938
+27127,70138,65484
+27128,37650,70013,56564,63677,5270
+27129,60944,73385
+27130,3922
+27131,64551,54426
+27132,78586,49101
+27133,61615
+27134,71059,62066,68558,5282,66870,35068
+27135,12416,67057
+27136,19458,55986,72095,70994
+27137,8188,22600
+27138,46948,20416,947,36975,11743
+27139,37298,27475,12022
+27140,52057,75596
+27141,80999,23973,38663,13690,77020,31812
+27142,50418,31735,65172
+27143,20864,32996
+27144,5863,66731,74697
+27145,30340,9833,30897,1895
+27146,70209,73457,40839,75609
+27147,56574,50631,4017,27662,75767,46004,80455
+27148,47030,23020,28055,56171
+27149,11002,39737,40107,3806,34307,49936,21347
+27150,81055,39882,50271,13660,38967,24612,81874,61904
+27151,60874,53367
+27152,26165,30838
+27153,42416,72421,55347,69654,65040
+27154,48748,77385,20600,49037,55190,19414
+27155,29469,26424
+27156,58255,22863,22350,43626,32618,46879
+27157,18878,10959,50870,27009
+27158,8765,69735
+27159,53788,52089,78789
+27160,21213,17022,8851,70540
+27161,25000,70273,80477
+27162,42070,78400,60983,40712,22448,67192,58334,23986
+27163,35240,61719
+27164,21426,55004,52428
+27165,64920,36552
+27166,63073,20110,58385,43526,39857,14201
+27167,15935,28902,26626
+27168,7728
+27169,26851,53320,732
+27170,76085
+27171,81499
+27172,17274,23986,70095,55235,67100,6771,79062
+27173,57457,51383,70704,12698,24603,69678,64
+27174,16040,12258,34977,14215
+27175,62435,4982,48221
+27176,7324,43919,36635
+27177,50460,19344,78189,47334,59710,22278
+27178,29657,28563,39066,74801,77256,43676
+27179,27196,30240,9819,33542
+27180,78302
+27181,53954,76085
+27182,47661,40341
+27183,41961,39738,65843,10130
+27184,9104,56037,45336
+27185,46882,30845
+27186,18413,20462
+27187,74451,793,59688,20952,978
+27188,747,53943,2022
+27189,16470,1411
+27190,21754,16456,13902
+27191,12151,40985
+27192,6298,67853,36577,27523
+27193,39910,40224
+27194,65090,51426,66965,76929,9092,72534,80303,41738
+27195,77396
+27196,66510,31867
+27197,76636
+27198,29147,29069,47666,24662
+27199,54144,71960,74932,22748
+27200,8344
+27201,75447,47034,68639
+27202,38552,30636,57471,55771,54649,11096
+27203,70879,36017,2470,67453
+27204,69688,74417,37753,917,9833
+27205,76004,27064,25479,57439
+27206,26694,60309,61964,1721
+27207,39247,18570,19833
+27208,44330,51800,48494,42495,62719,14609,33286
+27209,59154,24025,46076,34204,41410
+27210,34491,30524
+27211,47265,38941,738,62401,50641,34945
+27212,18626
+27213,574,19697,68779,43227,25236,31276
+27214,76513
+27215,64779,60112
+27216,25152,15335,66756,67913,15772,30120,70928
+27217,42809,50115,26281,39218
+27218,22300,34042,2255,59869
+27219,81797,30101,64971,9842,67152
+27220,10279
+27221,73887
+27222,19833,6197,10398
+27223,72719,70513,63457,57815,22548,42427,53443
+27224,51559,50821,14347,8649,21103
+27225,67979,73080,60245
+27226,36911,17002,32221
+27227,60890,13502
+27228,36993,77448,65060,50947,35888,50580,57933
+27229,31576,37663,51777,47132,22738,85
+27230,68604,34598,48875
+27231,38877,58448
+27232,69756,59682,64174,11108,59001,5066
+27233,34814,13618,1186,37953,58002,48485,25974
+27234,72796,20874,74525,43860
+27235,45424,32073,4528,26234,36357,73644
+27236,67250,50921,46337,54476,57568,62466
+27237,14169
+27238,70955
+27239,3813,48202
+27240,48106
+27241,12751,48055,20730
+27242,21241,57882,64503
+27243,75070,67556
+27244,81397
+27245,76636
+27246,8735,16074,9963,26143
+27247,5508,37104,77484,53987
+27248,57168,50511,25844,53367
+27249,70960,64781
+27250,19827,55960,27702,43009
+27251,756,60584
+27252,71684
+27253,46054,70879,30124
+27254,53390,71437,18857,16068
+27255,70057,2238,20728
+27256,68474
+27257,57109,11516,66070,75688,24654,25055
+27258,55390,15328,65155,66544,57232,6324
+27259,80721,17900,23310
+27260,17425,24580
+27261,21974,61662
+27262,75177,22691
+27263,45973,78462
+27264,49522,12947,62485,47551,80400
+27265,44165,40686,74033,70616,78946,70603,53892,27467
+27266,72309
+27267,35891,44960,10765
+27268,57887
+27269,3144
+27270,22549,6012
+27271,67832,12904,6119,69947,80301
+27272,16090
+27273,21060,69268,20166,80166,75523
+27274,78974,28826,50761,51648,7725,60763
+27275,59223,55927,5153,42762,42393,17695,2127
+27276,8490
+27277,60085,75709,54961,4474
+27278,2173,2492,77671
+27279,29618,58376,39591,12204,14935,65512,55362,28832
+27280,3815,40726,57424
+27281,34509,74323
+27282,59253,19123,75148,41658,17996,64530,49494
+27283,44420,78443,44781
+27284,40078
+27285,25167
+27286,21048,51590,47804,12041,8232,47365
+27287,23783,66135,43236,26365,10785,69558,49005
+27288,54077,81151,42346,50423
+27289,64663
+27290,18710,74308,53722,75966,55551,41487
+27291,6144
+27292,5905
+27293,10280
+27294,4442,80736,22334,8949,72063
+27295,25771,58444,49224,18172,32052,17425
+27296,56770
+27297,26696,76408
+27298,9615,20127
+27299,76356,73439,7404,11415,80284,33838
+27300,59823
+27301,61787,14768,11537
+27302,53712,79255,70717,45412
+27303,28592,44993,18510
+27304,572,65815,52808,44619
+27305,14998
+27306,31687,29573,13470,42061,9985,38351,46888
+27307,21222,39780,47905,19632,4593,20137,57040,12396
+27308,35597,18538
+27309,79428,20950,28212
+27310,24543,52922,14933
+27311,35240
+27312,3306,41460
+27313,15537,15107,44305,2776,1994
+27314,28583,30853
+27315,55244,22755
+27316,37251,24366
+27317,14439,28134,21985,37833,57136
+27318,73605
+27319,15445
+27320,27950,64139,28349,43673,63931,60168
+27321,28093,75082,8478,25825,28674
+27322,60535,30354
+27323,50899,19258
+27324,46047,44091,48831
+27325,7319
+27326,75418,21310,25958
+27327,1969
+27328,18786,35661,74496,5828,6175
+27329,5467,44975,71832,38312,43449
+27330,67228,62358
+27331,30467,18971,14229
+27332,66085,44711,29021,32161,54725,29108
+27333,10254,31303
+27334,72491
+27335,30749,8705,37325,46151,11556,40916
+27336,29103,41403,20462,32875
+27337,12773,73251,59864,62077
+27338,64613,73506,71024
+27339,78957
+27340,24308,15803,38278,7032
+27341,66620,63916
+27342,79191,43529,6526
+27343,12151,22212
+27344,29099,29957,72894,46735
+27345,21500,47289
+27346,12442,30925
+27347,70214,81267
+27348,18284,55494,74463
+27349,18977
+27350,60973,38512,45030
+27351,64896,75887,79337,43278
+27352,5263,72074,19453,31608,11076
+27353,55709,5247,28082
+27354,44339,40595,63023
+27355,26243,63307
+27356,31742,20779,9515
+27357,685,8814
+27358,64655,2800,57788,32237,8658,16120,61980,50464,46100
+27359,2123,28576
+27360,51106
+27361,70900
+27362,230,46983,6469,5822,17590,68175
+27363,41091
+27364,75566,7256,56171,5428
+27365,17866,19816,27383
+27366,54149,6049
+27367,14373,19423,68179
+27368,76163,54426,80934,12543,74015
+27369,69716,38015,53740
+27370,44708,79258
+27371,63349
+27372,12995,33065,41850,17512,39494,4481
+27373,40188,18919,69628,18806,4454
+27374,73193,73631
+27375,39822,8702
+27376,62398,7372,61138,67059,74932,14384
+27377,31096,21702,39254
+27378,11642,30741,28261,68232,14253,13802
+27379,18389,52247,24927,27676,59323,74480
+27380,48001,15638,30135,61504
+27381,6822,10826,31813,72861,2190,6768
+27382,65507,29222,18890
+27383,68367,38714,75507
+27384,13166
+27385,61708,30639,55284,5873,11819,73255
+27386,76132,38243
+27387,65502,53129,59755,7190
+27388,66517,75772,75945,1213,20075,25447
+27389,48299,23047,38955,80348,48018,66800
+27390,76675
+27391,46679
+27392,40432,7626
+27393,43713,21923,13573
+27394,78522
+27395,5550,68548,3136,77034,76406,593,51813,17776
+27396,80713,74211,14413,17296
+27397,17309,13638,16497,11150
+27398,54617
+27399,29131,11411,26340,3329,3744
+27400,74448,26133,75523,19844,44694,55445,4672
+27401,25125,61412,33227,17245,47309,72298,22453,20598
+27402,3802
+27403,32038,11874,30666
+27404,32807,70852
+27405,61107
+27406,1304,18854
+27407,54923,3296,10683,46239
+27408,68125,33952,64337,29812,10485,75560
+27409,55748,81797,40330,11134,70927,14100
+27410,60056,58118,80057
+27411,52357,32925,15557
+27412,25791,58148,61531,19110
+27413,26778,40113,24499,10100,71419
+27414,27227,32293,30211,61964,25002
+27415,7521,43800
+27416,12725,82070,64798,58378,52015,77581,22596,33250,64973,31879,34937,1154
+27417,16889,33500
+27418,5953,60755
+27419,71236,16163,74968,13087,46327
+27420,19461,17958
+27421,45754,32965,44176,8244,6590,42251
+27422,27411,37158,76623,45865
+27423,64166,17093,68696,8445,74923,73968
+27424,1143,35902,8592
+27425,37816,57809,48524
+27426,29126,44132
+27427,43444
+27428,8471,13783,51690,42192,66241,4396,81021,54097
+27429,53157,24339,54260,33773,3419,72900,26864,51278,30228
+27430,13228,64435,32888,17570,25618,6698
+27431,8994
+27432,13375,19715
+27433,47374,70807
+27434,25693,35007
+27435,25256,11201,36091,29141,63185
+27436,27698
+27437,41551
+27438,48415,667
+27439,56911,15230,67736,27946
+27440,78224,32261,38607
+27441,65534,61996,44920,13655,688
+27442,45706,11488,30954,79105
+27443,70567
+27444,14142,60604,67678
+27445,59174,25372,69764,51789,45035,77910,53294,60282
+27446,75210,23344
+27447,3146,74826
+27448,51274,27386,74577
+27449,58149,77211
+27450,8209
+27451,50093
+27452,41859
+27453,52441,43923,7755
+27454,57380,71755
+27455,79433,52603,81065
+27456,24425,26027,7828,72936,68781
+27457,78733,64959
+27458,30818,69958
+27459,37192,37867,15590,10412,16014,13778,66122
+27460,19779,42585,36663,5629,36409,2305,75643
+27461,19194,76779,24376,31223,8016
+27462,14520,3310,67515,50148
+27463,11250,67424
+27464,24665,23107
+27465,40553,49744,42561
+27466,46703,55847,17999,40576
+27467,58086,18085
+27468,61727,22192,70824
+27469,20673,8803,13642,10908
+27470,75352,49914
+27471,51068,75335
+27472,77250,66104,8642,38644,36871,55401,44186,48927
+27473,8339
+27474,41573,28967,82034,41294,73016,12403
+27475,80578,31363,2905,61397,35309
+27476,51964,982,35993
+27477,66501,4679,63764
+27478,23181,63407,59212
+27479,53210
+27480,26705,6181,35029
+27481,3106,19415,19748
+27482,55037,35734,17341,12582
+27483,82122,49860,60697,36151
+27484,73859
+27485,15638,77774
+27486,61292
+27487,28752,2678,40398,6164,53561
+27488,12190,60998
+27489,70510,31574,10877,61177
+27490,80063,48061,28287
+27491,73762
+27492,13303
+27493,67727,13941,76886,36334,4399,25680,44744,29706
+27494,42841,14247,30662,30931,2235
+27495,39380,71813
+27496,26224,63950,81887,3745
+27497,2887,82057,68450,10222,4554,11447,30953
+27498,56639,49542,73470,22711,16976,7333
+27499,82181,79582,31608,60120
+27500,3146
+27501,65068
+27502,61167,16226,73692,39985
+27503,19605,9316,6278,33782,57491,15963,18563
+27504,22849,11529
+27505,57063,81315,34249,26571
+27506,15416,28889,2782,31615
+27507,32839,56984,78012,70781,63444,25913
+27508,6186,69053,71205,80416,29534
+27509,70203,1577
+27510,78454,21487,28753
+27511,14397
+27512,79210,81539,69307,17027,44880,9729
+27513,60473,2420
+27514,7315,8754,37553,74039
+27515,39779,33381,43522,24754,75874,16337,50656,53986
+27516,35210,46740,53857,42047
+27517,21143
+27518,27601,76598
+27519,68520,55854,63548
+27520,8661,29781
+27521,51732,36996,30616,56911
+27522,77258,10551
+27523,24701,47523
+27524,46161,71962
+27525,10156,31576,52403,2769,60805
+27526,52958,28643
+27527,71305,41404,61547,48337
+27528,76674,9677,57229,12753
+27529,3091,76395,5887,55493,77829,34211,61960,12748
+27530,8490,17129,39320,76760,20783
+27531,14148,44408,24406
+27532,49892,39677,48858
+27533,64875,40504
+27534,2032,75577,30112,78509,33914,67390
+27535,67700,3633,76684
+27536,13250,78235,43012,5862,3159,44657,52080,37467
+27537,34214,25935
+27538,14771
+27539,35359
+27540,66853,44818,41052
+27541,24826,39596,59399,72336
+27542,44384,56220,76824
+27543,7288,54910
+27544,72803,24875
+27545,22201,7998,3712
+27546,27639,56976
+27547,33471,34499,42888,9580,75859,77895,44952
+27548,19579,46072
+27549,31726
+27550,81476
+27551,32622,23514,76846
+27552,48369,58652,31149
+27553,25824,17563,55401
+27554,17468,58842
+27555,58928
+27556,44624,58288,3284,51066,23802,73471
+27557,46692
+27558,2220,21474,2367,52586,63317
+27559,27879,53474,13260
+27560,26831,78935,70945
+27561,57476,16316,78011,19517,54901,11717
+27562,5104,31519,65633,56750,17611,19096
+27563,80129,70644,6982,30907
+27564,76158
+27565,50615,56944,67986
+27566,38205,868
+27567,15691,40390,64337,53815,76433,72298,14836,51736
+27568,69034
+27569,19033
+27570,41638,9148,31725,8437
+27571,21624
+27572,63852,71418,57908
+27573,625,46964,79720,33505,43783,73782,31413,43031
+27574,11454,49047,57467
+27575,18764,33457,5654,32340,64615
+27576,22354,39218,77706,1576
+27577,33343
+27578,73828,80549,2215,72510
+27579,52217
+27580,58435,65366,39032,21953
+27581,52217
+27582,5019,30593
+27583,35935,60565
+27584,45695
+27585,33597,54021,42003,26289,42086
+27586,65357,55880,33680
+27587,10868,7770,49129
+27588,40293
+27589,43430,66628
+27590,11155,59263,47972,40564,40313,68074
+27591,9176,19047,43585,23417,59109,24323,47313,977,79391
+27592,19771,74937,24252,45020,78226
+27593,42822,24542,9494,81469,5920,17636
+27594,66697,46977,39208,33682,49183,68235,46402
+27595,15839,79405,18454,62814,38357,63600
+27596,80884
+27597,75512,72354
+27598,15099,53380,595,19993,47209,53897,54856
+27599,81574
+27600,78987,64349,46171,75953
+27601,53577,72169,20837,14505
+27602,76557,56491,34668,42450,64341
+27603,22912
+27604,35711,6418,66131,75728
+27605,9476,73149
+27606,3434,31888,45062
+27607,16778,10269,72254,5335,22366,12447,74161,286,2116,45242
+27608,68152,67444,10448,14571
+27609,81516,66565,47403,69982
+27610,15326,33116
+27611,69498,53519,2817,76302,27552,9727,37410
+27612,22828,59546,64223,5496
+27613,4549,12072,21006,62519,26705,5540,8467
+27614,69206
+27615,34158
+27616,64173,62047,321,12560
+27617,25374,6727,44762,12072,50530
+27618,29070,66786
+27619,9677,10641
+27620,23224,27085,47538
+27621,62789,38284,33890
+27622,66797
+27623,32982,81334
+27624,42054,61685
+27625,16377,36494
+27626,4130,13914,22544
+27627,58830,72674,6179,1122
+27628,53542,29646,67612,42769
+27629,49527,40988,72336,57773,7881,50470
+27630,66868
+27631,37118,57192,37389
+27632,33272,47321,24991,57218,78125,8455,56869
+27633,61273,10497,79518
+27634,16409,80674,67981,3557,26967,59507
+27635,22176,66897,45961,66649,6900
+27636,12574,8458,6891,52622,53022,31854,5511
+27637,18241
+27638,8002
+27639,17739,34898,28877
+27640,56628,14758,17860
+27641,79918,9437,42388,11453,46573,3580,70994,390,58623
+27642,2255
+27643,60365
+27644,73736,59608
+27645,75188
+27646,43097,80073
+27647,31195,68145,57803,28829,43223,44491,50701,23442,31671,36088,42384
+27648,15307,64019
+27649,13896,39277,42019,60084
+27650,43911,19977,31001,58499,7438,5708,50900
+27651,41005,48588,47579,3792,39953,11856
+27652,8401,33060
+27653,43967,50070
+27654,49356,34088
+27655,53133,72707,81645
+27656,76205,49645
+27657,43814,5227,60895
+27658,12567,20804,1322,27146,6565,15188
+27659,47549,78465,14923
+27660,13020
+27661,78138,52069,77857,29634,5699
+27662,73308
+27663,22023,41722,40801,71494,41377
+27664,15638,54118,67504,46471
+27665,74221,77567,57773,19710
+27666,30352,7275
+27667,8283,67597,63432,26778,72112
+27668,75775
+27669,59124,35836,19359,40110,41232,42444
+27670,55805,79139,16551,74312,49566,46934,43601
+27671,64629,11929,109,41953,30506
+27672,34132
+27673,43795,2381,3539,20641,19265
+27674,10957,18914,52582,15008,587,74577
+27675,15775,3136,1179,46544,76646,75311,56435
+27676,30286
+27677,60801,81397,49210
+27678,60528
+27679,13998,77619,30807,60892,53971,65481
+27680,36279
+27681,57017
+27682,14042,24682
+27683,76809,6945
+27684,13711,11171
+27685,77340,36398
+27686,43061,69516,36874
+27687,31197,82171,40844
+27688,17747,44488,49633,28670
+27689,74081,44835
+27690,30499
+27691,5716,54586
+27692,68617,73138,63520
+27693,44078
+27694,36774,38601
+27695,21789,16800,16051,11002,16712,59549
+27696,7652,6341,58312,64706
+27697,43618
+27698,62095,27577,40721
+27699,80079,17147,9781,72218,64731
+27700,61891,68258,32533,59297
+27701,78153,70680,45922,72944
+27702,77605,67800,27685
+27703,39970,66446,51936,4317,19398,73298,67592
+27704,42397
+27705,18651,64419,50802
+27706,55549,13473,49841,65078,79780,79573
+27707,46865
+27708,38011,15591,77457,66444,33095,57771
+27709,28810,817
+27710,77461,18055,9723
+27711,6562,47783,28509
+27712,70176,80452
+27713,35199,3473,8378
+27714,46116,31085,8936,39146
+27715,64020,60394,59316,78153,69220
+27716,80479,78778,19912,33385,30437,6415,45530
+27717,57828,30556,23924,18238,51809
+27718,65937
+27719,25147,65054,30233,3516,80781,46406,46072,17703
+27720,21425,71466,78674,23156,27773
+27721,69478
+27722,74178,12373,41645
+27723,69711,62791,43695
+27724,60787,43216
+27725,79949,32540,54763,3152,7472
+27726,21541,71576,4631,36695,46463,6640
+27727,67829,27197,34921,30753,31757,48410,56757,15648,54695
+27728,76394
+27729,60815,43460,53296,12098,6622
+27730,26261,59557,40151
+27731,35467,45087,28261,56396,77915,81027,65115,19051,34376
+27732,25949,65252,22092,49256
+27733,40351,62139,79528
+27734,56225,44549,76512
+27735,71064,11230
+27736,48315,76328,79702,52058,4127,13681,55002,73600
+27737,46199,3903,31175,12406,18726,77664,65209,75930
+27738,35971,41779
+27739,12908,81157,81933,26337
+27740,58166,80846,19650,71321,40491
+27741,34160,41936
+27742,65170
+27743,42153,40233
+27744,38397
+27745,75063,22659,45482,8105
+27746,55391,2206,32400,57098,70203
+27747,37440,6435,68483
+27748,50560,16149
+27749,48865,20746
+27750,38968,1665,10438,60892,15530,681
+27751,55789,10446,43794,64802
+27752,3378,67625,21506
+27753,8508,42015,72701
+27754,51045,14652,5525
+27755,80647,8451,16145
+27756,60006,23803,40643
+27757,78349,65189,46610,71846,66023
+27758,10247
+27759,73748,66480,45467,25839
+27760,26342,23281,48206,10214,10389
+27761,80064,58741,9931,42165,26323,44471
+27762,36121,59035,46332,24702
+27763,69779,27907,18148,53898,64883,14343
+27764,13107,39692,23245,81679,1590,63017
+27765,21037,28565,78326
+27766,74968,35794
+27767,61202,38950
+27768,75061,55306,8575
+27769,15274,20487,68719,65006,69986,48047,30047,43784
+27770,73624,14932,2350
+27771,9817
+27772,6532,36532,2038,48517,72072,18190,9009
+27773,41164,30424,21008,66324,39431
+27774,66638,1865,59470,38134,10212,57685,42388
+27775,24417,48046,59322,20
+27776,5547,5408
+27777,38714,26501
+27778,40596,49342,81429,12938,68862,81827,34889
+27779,79621,27684,23749,64279,5799
+27780,14394,26056,10604,60718
+27781,71693
+27782,7011,56815,40392,12861
+27783,69381,34326,20853,39151,5882
+27784,13843,27489,21346,8843
+27785,7628,38067,44674,76926
+27786,71237,79339,38935,21060,20430
+27787,36930,23015,39545,26666,79874,10857
+27788,53799,72483,41469
+27789,48314,44233
+27790,50909
+27791,63245,21477
+27792,25896,36102,28075,36903,70252,46761,54749,72071
+27793,21833,51229,77999
+27794,18355,2068,14040
+27795,68896,57065,75786,24322,44891,5119,81197
+27796,68432,40006
+27797,6350,13172,72264,67610,46689,47772
+27798,7478,35312
+27799,81016,56233,58542,26210
+27800,8322,34215,68758,44820,56222,80779
+27801,39425
+27802,53706,63205,19747
+27803,46450,629,78390,79215,19206,6481,13468,13261,41239
+27804,3559
+27805,50645
+27806,55789,42523,59505
+27807,73366,52514,49860,3591,52247
+27808,66736,24745
+27809,31374,77217,30959
+27810,27184,52363
+27811,14051
+27812,20931,45964,60328,59008
+27813,29763,37435,69034
+27814,56972,38179,39864,9318
+27815,36046,7818,67222,68137,34679
+27816,3155,48105,75794,67161,52556,76965,64107,51038,73629
+27817,14799,266,2181
+27818,41628,7780
+27819,23107,61107,43818
+27820,53286,57134,39661,75854,22521
+27821,50666
+27822,79892,46627
+27823,41720,53960
+27824,41639,39622,40195,32278,74812,61541,38218
+27825,27090,20650
+27826,14038,71718,26236,13864
+27827,63496,18491,1610
+27828,57225,51203,71586,31190
+27829,47239,25447,56720
+27830,19996,33282,81789,42716,16038,75141,38774
+27831,53565,59852
+27832,7565,60112
+27833,55634,72009,55537,63876,81022
+27834,36034,39097,436
+27835,43712,75778,43620,34068
+27836,45296,62359,21256,78937,62689,57023,48420,66869
+27837,45113,11643,31778,35637,48677,34763,57282,11369,5616,18521
+27838,39931,47984,6945
+27839,55917,17463,8623,52013
+27840,66146,26341,74571,40831,3241
+27841,64004
+27842,14587,56412,7696,62866,79009,73209,46735,16289,64635,77883
+27843,6783,45470
+27844,7141
+27845,41779,9721,427,77552
+27846,28088,12984,69050,45749,65931,42355
+27847,50428,45341,705,35245,7894
+27848,9104,55218,67215,58821
+27849,2462
+27850,36794
+27851,60614,9467,81975,51799
+27852,67718,42486,12561,3824,73779,47770
+27853,17493,3105,51898,19751,68285,79868,45007
+27854,8804
+27855,5282,21311,3674
+27856,58881
+27857,70353,51085,8334,1940
+27858,63180,67718,1468,62838
+27859,4511,50377,80205,57780,74952,42945,61965,46260
+27860,19969,13842,73919
+27861,1304,7470
+27862,67600,10931,40863,35162
+27863,35162,75215,18238
+27864,46590
+27865,31252
+27866,68506,54241
+27867,24836,283,67485
+27868,25725,38379,36633,62718,79590,81795
+27869,16425,75490,22200,51258
+27870,28046,28130,14540
+27871,21372,28533,62871,58909,48745
+27872,41388,53866,80451,48377,64290,16605,59723,52615,21448
+27873,77236,28808,61231
+27874,62824,8677,79549,69057,68399,81286
+27875,80514
+27876,16739
+27877,18967,4261,80762,73494
+27878,39260
+27879,73917,64168,78999,49428,13043
+27880,67535
+27881,65980,65411,36609,72305,56269,33050,26274,20106,11802,19214,20914
+27882,35152,41069
+27883,6927,22538
+27884,23750,8998
+27885,79780
+27886,3547,7296,43627
+27887,19126,2418,35491
+27888,74850,49175
+27889,78867,45493
+27890,51106,80648
+27891,44666,31330,64671,38418
+27892,36801,24622,6720
+27893,40385
+27894,52219
+27895,35090,77331
+27896,77591,25147,4865,65376,42496,30596,9392,17112,75536
+27897,47481,23572,30081,42442
+27898,6305,79055,72630,23886,65954
+27899,785,47955,4630,41018,6729,23006
+27900,26820,52543,7215,32011,30800,69682
+27901,30065,25215,64927,62356,9287,7720
+27902,10435,25929
+27903,29987,75106,52756,17757,78080
+27904,56259,49677,60150,38195,15548
+27905,45533,27185,39989,60287,43371,11506,53788
+27906,65519,858,19117,43802,50724,1342
+27907,48921,32273,22665,10537
+27908,50084,53013
+27909,32528,53060,16810,59221,63947,36268,58270,5031
+27910,20855,79254
+27911,76546,55603,7305
+27912,40205,68367,41196,80422,14815,78262
+27913,46980,34453,70134
+27914,73930,65272,37397
+27915,21310
+27916,59885,46435,58322
+27917,35140,6203,32221,51796
+27918,49254
+27919,80965,33847,37285,60780
+27920,6267,71066,50919,12533
+27921,43594,47974,69694,7752,17751
+27922,32575,21166
+27923,31722
+27924,33130,67688,29302,19743,53345,41502
+27925,45819,51908,18385,7346,72729
+27926,51098
+27927,2512,81426,58448,40253,76465,67001,31214,53684
+27928,58973
+27929,14307,34252
+27930,59229,78666,81334
+27931,24061,41454
+27932,32505,45700,5202,31504
+27933,42480,64060,78482,24277
+27934,21647,47582,62705
+27935,1284,68819
+27936,52661,78922,34111,72797
+27937,76547,49371,29527,42266,23725,57633,43130
+27938,47591,16577,52169,49798,3588
+27939,6029,45101,6358,55468,61272,17185,47358,51440,5075
+27940,56835
+27941,54287,47698
+27942,63890,73292,31530,36494
+27943,49863,3333
+27944,42333,31532,79845
+27945,73880,14517,36515,3420
+27946,1596
+27947,80029,57619,58899,28908,4339
+27948,54024,47654,76432,12890,48731,56571,31759,27227
+27949,6574,61182
+27950,42228,19692
+27951,5391,55280
+27952,70123,18353,64430
+27953,60814
+27954,53292,4918
+27955,61307,39556
+27956,37911
+27957,10807,47040,18626
+27958,24717,8414,18396,65359
+27959,299,73016,19219,23930,1029,5843,24499
+27960,72734,80694,37571,69533
+27961,32264,64690
+27962,78052,48131,25668,60873,22727,78769,41339
+27963,51765,56595,44530,47996,59118,27077,65666
+27964,39790,40697,756,73653
+27965,9417,33136
+27966,13195,74260,54987
+27967,26453,31768,60361,13064
+27968,3590,6167,41365,48974,65261,65290,78754
+27969,48714
+27970,35723,44880
+27971,54415,26453,23841,41391
+27972,5304,50630,14046,66225,39339
+27973,79932,13699
+27974,39783,61081,38767,17623,66011
+27975,17311,7904,76407,52645
+27976,390,52623,63894,9996
+27977,52285,61407,70271
+27978,43512,9217,35032
+27979,29125,490,23311,43893
+27980,27874,79601,59213,52787,37318,57927,40705
+27981,24138,62316,66298
+27982,71754,23508,53598,77211
+27983,40171,46275,34704,39569,26949
+27984,70347,80357,20840,46146,31608,81225,29824,2698
+27985,45741,76082,9392,51302
+27986,60949,44365,60424
+27987,76104,16165,1975,69015,57573,57974,3742,44741,22075
+27988,49877,33342,55402
+27989,80428
+27990,25377
+27991,56317
+27992,63683,67718
+27993,10210,2158
+27994,61498,9427
+27995,81908,33399,24577,56298,5608,77819
+27996,34066
+27997,18746,79404
+27998,45694,50847,16508,11331,76872,2178
+27999,9072,34497,72363
+28000,66712,76082
+28001,74446,14000
+28002,80256,11645,69027
+28003,32587,63612,46606,17482,26314,74794,33761
+28004,10303,38867,22739
+28005,41447
+28006,77262,9180,81582
+28007,32062
+28008,70088,36986
+28009,1942,76363,26490,74000,6911
+28010,6256,3104,16377,25404,36876,331
+28011,78517,33695
+28012,63543,22146
+28013,41353,51937,51373
+28014,36990
+28015,45830,66586,8121,74061,41588
+28016,70475,37457,35820,50807,24016,76739,21769,27260,5722
+28017,5794,73012,73327,34509,15656,32350,26948
+28018,23145,16347,59270
+28019,11002,32212,47822,42942,64111
+28020,73359
+28021,53910
+28022,60351,33858,11980,51246
+28023,45394,63602,67061,1711,394,48472
+28024,32800,39228,69763,47537,13576
+28025,77968,36075
+28026,44507
+28027,77049,60119,19192,66649,13582
+28028,41799,36408,806,48010,42774,632
+28029,2206,7069
+28030,74909,58742,78897,28315,65350
+28031,30777,66515,33680
+28032,64891,32016,54078,76521,36317,948
+28033,15775,40129,16860
+28034,81049,72884,66479,50154,59073
+28035,20803,69838,37233,24920
+28036,4617,34924,21504,27487,80552,71147,28713,3585,66588
+28037,64156,62301,44525
+28038,66350
+28039,81239,68128,63541,62822,29389,19375
+28040,18237,54789,14351,12639,23894,62128
+28041,23182,57257,44828,40222,35543,57490
+28042,50428,65876
+28043,13674,45396,80780,47293,60863,10518,36294,7766,2498,56225,36818,9626,10918,24274
+28044,52049,6941
+28045,42196,37825,56948
+28046,10877,23365,47471
+28047,71859,50819,81366,51457,71558,51046,29855,73324
+28048,18837,59516,14426,49411,48214,11447,46070,53307,55934,19050
+28049,48113,12113,35547,78912,35480,71586,21764,5256
+28050,71278,30458,67593,81232,3942
+28051,42579,3360,9093,16614,75832
+28052,4620,22243,47543,55048,16254
+28053,68493,46236,45169,14204,21539,45780
+28054,50349,38880,72118
+28055,3135,28059,57937,66586,33435
+28056,28406,45018,18850,39095
+28057,43087,25066
+28058,14630,6486,71060
+28059,71023
+28060,764,80686
+28061,36287,29590,6791,8136
+28062,64130,62409
+28063,61861,77802,8352,43430
+28064,35116,10844,65142,67537,44995
+28065,47127,20855,26776
+28066,61295,12529
+28067,18154,37141,55053,10891,54725,46887
+28068,27564,19524
+28069,62510,61179,73832
+28070,73054,67504
+28071,8928,64220
+28072,35316,18612,18716,22898
+28073,15231,72785
+28074,66343,63961,76571,76840
+28075,11216,46794,43014,19565,71959,9061,38921,8651,37148
+28076,75445,36993,8343
+28077,5208
+28078,40390,9042,62270,71974,3198,25889,46206
+28079,25673
+28080,64104,13803,14334,812,50156
+28081,57615,22994
+28082,27447,6265,55813
+28083,52602,22165,44043,17996,32319,14434
+28084,66709,18667,24288,33313,66017
+28085,62324,67878,22303,80177,61434,74330
+28086,53424,79898,17062,23076,75243
+28087,73466,3186,61603,70534,34358
+28088,20037,12322,38621,70771,49435
+28089,60973,23246
+28090,79945,31201,1376
+28091,32574,56898,34897,51919,81685,12256,38978,59348,68232
+28092,33905,11879,52141,44681,36947
+28093,70050,35660,32423
+28094,18738,5173,80938,26364,49740
+28095,56026,49306
+28096,69752,2423,28818,9924,60053,13568,50281
+28097,10108,63183
+28098,76207,25327,54739,72827,21616
+28099,8134,45493,59829,39905
+28100,69337,43957
+28101,31856,46470,18559,68961,50141,20431
+28102,18953,29865,14059
+28103,54113,45772
+28104,20430
+28105,47930,3790
+28106,4539,66016,36598
+28107,37758,13191,16084,19548
+28108,8969,31283,28358,75132,76051,76082,65948
+28109,36347
+28110,59659,66725,72885,72833,82128,19747
+28111,55053,21484,19294,36029
+28112,22444
+28113,66515,8010,67144,57498
+28114,76985,26679,70977,10764,20000,57525,48971
+28115,59800,77104,22430,54936,4984,76873,5679,556
+28116,17257
+28117,30638,53020,25894,58882,16544
+28118,37541
+28119,59446,43348,14108
+28120,74168,65983
+28121,50418
+28122,59930,7416,9584,54014
+28123,39618
+28124,35025,51232
+28125,70309,5293
+28126,32122,73652,14836,8201,21291,56960,41268
+28127,79695,1676,33077,34392,27713,60181
+28128,76871
+28129,34158,50800,29849,12277
+28130,74185
+28131,52760,6498,56504,24186
+28132,35001,53079,72424,69698,18394,36320
+28133,31034,74270,74490,54106,24607,26900
+28134,68063,26833,68604
+28135,1679,44044
+28136,11563,16635,64646,22447,42993,21185
+28137,63071,30671,3481,13428,58495,19936
+28138,56401,56668,75057,44852
+28139,56816,1457,15670,27517,7146,50290,16831,47940
+28140,837,24665
+28141,4887,62930
+28142,77167,69368
+28143,69184,39470,50632,25224,74889,58548
+28144,56448
+28145,76682,45041,70422,56488
+28146,68299,22110,31500
+28147,12822,62700,55481
+28148,14984,59865
+28149,48740,4679,47840
+28150,60721,63384,7113,33755,38847,6181
+28151,52480,75717,74216,7925
+28152,2382
+28153,33329,50574,49371
+28154,71261,45735,14166
+28155,34802,70414,48348,24465,30468
+28156,61701,71046
+28157,48115,21879,24471,48967
+28158,69185,7179,51234,9724,16001
+28159,45225,31744,58291,39490,70184
+28160,63609,35097
+28161,10748
+28162,40582,19602,25675,9606,12861,13680,41644
+28163,58650,66440
+28164,27544,69769,1405,14712
+28165,57878
+28166,77293,31871,52607,11766,39097,49026,9385,42898
+28167,73098,80743,22143,41415,46236,27916,68148
+28168,80957,39273
+28169,31205,20657,25105,74119,13830,21346,3265,54509
+28170,40400,79857,78392,21070
+28171,54752,16475,46411,31668,65647
+28172,13944,59996,51553
+28173,31633,30289,47827,17850,12998,66273,81725
+28174,10609,57815,28345,27228,34052,76433
+28175,15709,57914
+28176,70842
+28177,1647
+28178,58362,12946,7606,68861
+28179,8902,35419,7324,80248
+28180,55020,60230,29051,13189,51695
+28181,79359,68486,27620,25929
+28182,56622,81854
+28183,9437,54981,80899,40824,37901,33404,21611
+28184,14762,70022,16456,31682,2604,27859
+28185,71535,8884
+28186,33380,57950,52230
+28187,7362
+28188,12681,66326
+28189,58215,31845,28641
+28190,49487,70432,77021,77387,42024,40826,72567,19139,78072,52612,7342
+28191,17739,74742,50822,57471,81028,2316
+28192,68141,1527,52170,32564,31046,49900
+28193,38761,45450,2373
+28194,78068,68398,24117,35091
+28195,48496,49339,53887,17500
+28196,46930
+28197,34356
+28198,37627
+28199,3943,16512
+28200,44009,67235
+28201,80146,42094,79652,5200,24154
+28202,48286,63645,18256,44293,71011,56335
+28203,8506,50489
+28204,66992,4416,39610
+28205,48469,80970
+28206,33615,59700,28952,61901
+28207,65557
+28208,67558,36197,66468,12779
+28209,53857,3927,60489,40069,41243,1571
+28210,75334,59827,78624,58709,38630,51335,42933,65692
+28211,47490,15284,56830,4671,31025
+28212,77413
+28213,43067,34523,6263,59955,69483,58219
+28214,51748,22368,11341,55299,48487,27144
+28215,45704,18857,22071,55178,62244,79537,79896
+28216,15558,57444,6752,17147,4116,18021
+28217,77876,29266,1533,43740
+28218,76047,18914,62847,1385
+28219,80543,47941,57582,8357,45474,78803,39326
+28220,82020
+28221,7661,20291,32647,24947,54243,71589
+28222,16239,16908
+28223,31486,78284,21334,45
+28224,9228,63639,81637,7757
+28225,974,28508,38513,12675
+28226,39196,66378
+28227,32370,17213
+28228,9760,71532,66769,61668
+28229,13560,31574,54197,44532,2020
+28230,76163,47949,56720
+28231,70639
+28232,25604,63434,26415,5629,63301,65989
+28233,2059,71245,18645
+28234,3440,66765,57364,49593
+28235,46281
+28236,34198,39945,4338,77237,27159,62988
+28237,55679,73692
+28238,11249,74806,61847,19322,33630,47257,21313,58904
+28239,36292,28336,43967,41174
+28240,26518,62350,32496,50887,28568
+28241,27127,3379,79255
+28242,38828,73490,74760
+28243,30973,67562
+28244,68301,55643,74041,32677,44278,60876,7527,55943,846
+28245,6909,21702,42587
+28246,63944,77165,66580,59110,77011,35016
+28247,62022,16355,65387,34710,27741,14513,55991,69482
+28248,41215,69928
+28249,1861,65853,34129,53536,21688,56224,74910
+28250,20848,48386,57263,42771,43868,23018,75834
+28251,23473,10228,48225,80277,54407,78088,39095,81473
+28252,9970,53035,28688,10644,43569,62249
+28253,67832,18190
+28254,47165,53518,56815,47201
+28255,65293,34880,15319,13400
+28256,57822,4739,41127,60725
+28257,23496
+28258,51926,8032
+28259,22262,71550
+28260,41866,17336,59246,28924,75177
+28261,31015
+28262,55150,40280,854,23190,9691
+28263,60168,53155,7761
+28264,49101,65342,34680,13303
+28265,78199
+28266,55061
+28267,72690
+28268,68652,73890
+28269,30121,6599
+28270,10090,59842,64396,29065
+28271,73375,22303,62026,55850
+28272,42938,45157,50087,6733,64556,9791
+28273,57196,9330
+28274,15642,41808,46621
+28275,12826,18024,18776
+28276,8830
+28277,12705,80855,37293,27398,22464,33318
+28278,64882,14277,31562,77039
+28279,5736,38947,39618,78751,26504
+28280,77279,52346,68948
+28281,31038,72841,45708,48794,74551
+28282,71230,53014,1996
+28283,81038,7578
+28284,57696,36886,64641,15200
+28285,49231,34997,36957,44757,70302
+28286,11846,7273
+28287,52951,77391
+28288,66674
+28289,39771,14507,11860,13515,49013,42403
+28290,7195,80238,32227,31794,43673,28814
+28291,40050,15558,6424
+28292,55786
+28293,31711,52546
+28294,58992,63697,48549,37484,53403,38509,8983
+28295,25766,54436,36438
+28296,67325
+28297,76109,13761
+28298,31409,6514,54027,20555,34785,14057,63013,74728
+28299,42536
+28300,42683,6353,77997
+28301,17070,52207,38992,51440,72452,296,73250
+28302,28626,56725
+28303,1067,59818,51639
+28304,26535,60272,73130
+28305,69689,54873,78602,81617,1469
+28306,60826
+28307,4270,53256,48794,50054,5418,62694,28629,23835
+28308,64377,50971,74886,63413,81998
+28309,10000,28102,29456
+28310,31927,72504,21559,1255,30238,2001,79142,1084
+28311,20218
+28312,56795,63410,80010,51727
+28313,11082
+28314,44701,54762,15757,603
+28315,65274,66047
+28316,80877,25983
+28317,63942,14453,42293
+28318,1934,36886,19906,73105
+28319,11070
+28320,47235,38709,44211,4837
+28321,77654,70131,50722
+28322,10141,49362
+28323,40306,35116
+28324,80049,35599,3719,39814,21576
+28325,1436,74673,65938,47214,28256
+28326,16631,74088
+28327,16611,67567,6707,39529
+28328,77646,36469,2072,78156,18814,46647,82077,2327,45908,20492
+28329,67509
+28330,61521,544,54972
+28331,12126
+28332,56975,55930
+28333,52613,73017,35454,58447,32185
+28334,60287
+28335,15670,56815,25946,48674,14917
+28336,9606,58417,40236,53880
+28337,9143,331,19746
+28338,34574
+28339,32554,64033,40449,30948
+28340,31053
+28341,52418,36775,43058,40365,10359,66881
+28342,55608,48424
+28343,80161,47067,36456
+28344,11601,36450
+28345,1922
+28346,21248,82026,19284
+28347,49491,23672
+28348,40237,46208
+28349,28237,18581,77040
+28350,37806,55324,74581,37182,2422,62319,33468,47884,7446,56075,28415
+28351,3084,47544
+28352,23749
+28353,22600,56052,13882,63848,40117,74072,15073,46370
+28354,67133,69603
+28355,61342,28833,53889,62961,67348,82047
+28356,18613
+28357,40291
+28358,4332,68007
+28359,6697,30650,19900,77920,77555
+28360,20083,63414,6309,11363,78156,82097,30233,49509,32023,55183
+28361,79771,65285,47274,76712,60150,78941
+28362,72140,18195,65227,75671,15345,10224,47970
+28363,61990,13787,80436,4507,66287,22551,1623,53342,73007
+28364,22488,39259,25936
+28365,5964,42923,53053,4798
+28366,57998,35263,16832,4313,60919,75465
+28367,74174,64271,58520,43633
+28368,52033,13992,32157,48522,60726,50173,24959
+28369,55374,64058,25360,42234,33265,40955,17623
+28370,69143,81013,58343
+28371,13578,10285,11203,3406,59838,66344
+28372,69296,30475,30199,19873,76900,66086,27187
+28373,14498,70704
+28374,28012,81337,74259,56979,66018
+28375,60755,78374,22472,16736,73000,41481,17808,10525,27034,6865
+28376,27212,23560
+28377,3387,25538,48457,29620
+28378,62413,23634,12866,61237,603,52610,16796
+28379,23937,2809,34399
+28380,20437,67071
+28381,32951,12199,48466,34524
+28382,32826,45586
+28383,51051,45552,32161,14760,75343,76308
+28384,25087,27790,33084,31918,50993,5765,44578,57398
+28385,65353,63888
+28386,24068,2509,54283,67772,72147,18577
+28387,63784
+28388,29278,8657,1909,81649
+28389,51664,66177,51104
+28390,33873
+28391,54985,19976,1321,75585,36133,43521
+28392,32474,48629,19493,62271,57673,28364,55696,38857
+28393,7545,50670,267,63010,58481,76106
+28394,31471
+28395,65139,69196,1738,50997,54086
+28396,21937,54477,33514,12532,37291,37028,33168,38187
+28397,45382,24688,67931,68705,74753,49719,10964
+28398,11509,35806,36128,29584,32863,49069,51607
+28399,57437,46329,43715
+28400,2004,18825
+28401,23375,23935,23168,81642,78224,78032
+28402,58531,25987,23170,44334,10000,62199,39852
+28403,72913,43154,13434,64259
+28404,35312,62201,39419
+28405,63647,33387
+28406,48297,13703,61448,46073,27944,78808,59475
+28407,46634,78236,9307
+28408,17248,10349,11657,60669
+28409,5618,6160,60126,5649
+28410,3630,18048,60246
+28411,58059,33166,10362,40029,42448
+28412,42275,40749
+28413,41752,20245
+28414,50078,17560
+28415,23011,74209,74712,70731,40375,72071,41425,57067,55221
+28416,33237
+28417,62985,75760,31165,66047,66674,32925
+28418,44530,22786,28622,22888,80703
+28419,75742,43718
+28420,4678
+28421,8176,31945,63083
+28422,44294,36489,24325,22160,74707,47119,80341,66831
+28423,13404,69796,78500,37730,57943,10264,35180,4271,81950
+28424,41650,39210,75148,67439,3935,61853,24202,4223,52218
+28425,20462,73485
+28426,27355
+28427,25070,226,7476,33209,62895,42485,10984
+28428,34287,74948,38372,41029
+28429,13882
+28430,81092,51118,64774
+28431,23790,32231,7372,70115,61027,61267
+28432,18465,29353,65349
+28433,73478,6616
+28434,63728,48143,29887,73561,70279,71923
+28435,48948,19465
+28436,15418,59531,63080,28955
+28437,24961,66323,55867
+28438,70782,303
+28439,60991,19145
+28440,8339,24222
+28441,43797
+28442,27251,2806
+28443,40034,8218
+28444,2738,55575,20901
+28445,45972
+28446,70254,54419,49278
+28447,52481,74890,16463
+28448,72043,80447,8016
+28449,9579,66559,38752,26862,29677,61310,13148,63373
+28450,77967,23269,60400
+28451,41401,75910
+28452,80857
+28453,47279,44744,26339
+28454,54914,71123,16631
+28455,43719,28457,76293,9105
+28456,53934,44085,72922,72704,73596,39781,76977
+28457,11604,30717,28212
+28458,38492,5053,39182,19975,5597
+28459,72139,49160,23809,57514,18144
+28460,66212,73306,40680
+28461,11459
+28462,21442,10757,22938,66992,78320,66709,28797,22424,36538
+28463,76183
+28464,40045,54663
+28465,69779,23026,77248,55461
+28466,39837
+28467,46923,11416,51174,24921,72285
+28468,41073
+28469,2423,5634,11957,72295
+28470,11150,16451,37849,69862,63361,13495,53946
+28471,20961
+28472,7545
+28473,66132,69590,42442
+28474,79726
+28475,22530,30070,30326,36778
+28476,28452,41565,58625
+28477,33807,74211,21915,36963
+28478,26638,19257,60202
+28479,19013,60127,15559,36528,24905
+28480,47374,72402
+28481,52242,76402
+28482,78940
+28483,18017,37848
+28484,44176,690
+28485,77974,11093,60257
+28486,26703,53932
+28487,65470,81374
+28488,22287,26375,81920,68465,10068,45390,65435
+28489,10126
+28490,40392,48276,66116
+28491,68510,58016,73516,55908,78337
+28492,6388,23003,24330,78236,32326,22193,77366
+28493,21381,70685,39835,24865,81051
+28494,23238,38170,72872,72451,46865,23659
+28495,47717,16541,80965
+28496,81671,9264
+28497,46318
+28498,27230
+28499,17890,17764
+28500,7480,43276,52617,41369,48048,13611,22663
+28501,45991,12649,7248,2734,38926,32021,10859
+28502,33731,23822,33043,15309
+28503,70852,39707,66131,35546
+28504,21626,34923,63740,73168,16235,81595,80116
+28505,30359,40844,17729
+28506,67970,5877,45562,38890,63393
+28507,10607,64190,80985,1326,65267
+28508,43240,19231,25074
+28509,10626,30232,76124
+28510,42351,14615
+28511,71690,48562,71977
+28512,25819
+28513,61601,64648
+28514,50610,76978,38681
+28515,56559,24859,52210,73538,4904,12081
+28516,59576,69089,81927
+28517,71722,50055,10862,50642
+28518,51128,43926,14891
+28519,28677,27856,34797,13935
+28520,70774
+28521,55509,26884
+28522,38662
+28523,48403,32490,50283,53463
+28524,13139,77448,45076,80335
+28525,19249,29824
+28526,27245,2088,27878
+28527,10242
+28528,44025,79408,8089,8421,61699
+28529,34997,80196,41929
+28530,23342,10542,40085,8155,43793
+28531,44319,10822
+28532,81646,29852,7094,4285,15172,7688,18420
+28533,42940,18672
+28534,49813,77034,4501,43587,45400,2711,25166,64665
+28535,41152,27289,41437,9136,80560,3394
+28536,35387
+28537,14238
+28538,57986,20277,70304,30109,35222,9240,10292,28212
+28539,18366,16338
+28540,21986,17464,24534,56618,39072
+28541,39982,28461,46577,10943,35295,77505,81649
+28542,81435,10996,70391,77323,55082,72041
+28543,3146
+28544,78357
+28545,70979,15611,4724,33763
+28546,56293,37484,48076,11813,4761,34249,8675,5409
+28547,64326
+28548,2588,66242,62681
+28549,43779,76997,12019,29134,4106
+28550,82027,28060,70706,63106,13993,9428,71885,78871
+28551,69963,58390,29753,9822,24826,2799,20474,76956,46004
+28552,52086
+28553,13251,63601,4737,76718
+28554,68509,4319,10734,4225,64384,48901,3490
+28555,61131,68139,12246,82160
+28556,32332
+28557,2039,59647,77389
+28558,16629
+28559,59108,65182,11409,53981
+28560,53354,32674,44819,866
+28561,29432,63729
+28562,47323
+28563,18465,31556
+28564,25280,55355,34737,78018,78307
+28565,60214,49533,37047,45821,65530,25179
+28566,47697,9477,70562,48637,22819,70407
+28567,39271,4230,72558,45281,78645
+28568,69791
+28569,75471,42293,16362,63699,68907
+28570,18723,23962,46235
+28571,56318,66210
+28572,1617,14928,60816,54996,49973,76541
+28573,76596,68767
+28574,44501,51502,49900,69763
+28575,69838,35634,6493
+28576,61279,5504,15023,32084,10918
+28577,64202,80911,66704,14174
+28578,10049,1861,5560,53387
+28579,35389,749,11246,73740
+28580,69168,15920,44278,5205
+28581,72082,2844
+28582,55298,65666,15257
+28583,56701
+28584,49867,56587,30596,81214
+28585,78204,24018
+28586,73963,69929,69674,66503,61614
+28587,36636,66227,49024,9640,75819
+28588,65899,81774,46487,60045,33949,6507,13043,23267,11309,19845
+28589,9655,7120,50747,7402,63759,40046,70256,67206
+28590,49567,48224,7564,17989
+28591,16714,6353
+28592,37356,34204,24253
+28593,26203,31111,46298,67376
+28594,1311,29184,30146
+28595,9404,62472,2227,47302
+28596,60755,34456
+28597,38840,294,70550,12087,11914
+28598,58754,34244,4340,81182
+28599,136,74894
+28600,32809,12102
+28601,35118
+28602,66164
+28603,81450,71904,3192
+28604,21787,37838
+28605,15591
+28606,5675
+28607,56947
+28608,43551,19593,52679,6810,52383,36562
+28609,27678
+28610,51664
+28611,39626
+28612,10405,66208,799,25316,81532,41067,71321,6531
+28613,468
+28614,51183,12857,72241,15982,9429,41780
+28615,70906,21203,31061,60057,21592
+28616,58545,5112,40643
+28617,66572,74889,71925,55906,51443,74346,57241,65390
+28618,9803,50295,58542
+28619,37975,64853
+28620,66578
+28621,39282,57706
+28622,45712
+28623,61244,75344,558,5337,38539,16355
+28624,8236,46890,67812
+28625,77237
+28626,34931
+28627,35635,37079,25305,56760
+28628,43776,69498
+28629,48582,67778,23099
+28630,41403,18430,61212,9961,52246
+28631,53382
+28632,49468,33286
+28633,42525,30214,37997
+28634,19383
+28635,9599
+28636,37518,62174
+28637,56571,17403,6928
+28638,3939,36018,70890,70245,62555
+28639,26210,63670
+28640,13377
+28641,74172
+28642,58731,59055,35044,5407
+28643,46649,22589,17809
+28644,53777,14727,67166,42545,23314,2096
+28645,31493,41138
+28646,64179,67024,61968,41553,77076,36137,2135,35483
+28647,20093,6919,35391,10663,27396,30124,13594,53627
+28648,38343,39392
+28649,46004,14529
+28650,58388,28080,47806,53382,27138,22954,15201
+28651,15970,75780,47405,5348
+28652,32160
+28653,54412,61603
+28654,15799,40006,40213
+28655,8431,40610,36774
+28656,10944
+28657,73351,81988,43746,18253,15390,52284,74517
+28658,63904,71205
+28659,30093,9584,2593,34317,82124
+28660,12355,33049,50476
+28661,76006,31016
+28662,24531,79583,67645,47112,64639
+28663,14653
+28664,16451,75570
+28665,7612
+28666,49799,43865
+28667,81067,32666,4785,14725
+28668,54123,71084,32444,4183
+28669,78226,67463,52013,25693,22659,74614
+28670,8174,76015,63631,45132,73781,33335
+28671,8488,37001,30353,41051
+28672,12843,29094,81582
+28673,32021,65155
+28674,52174,47157,53692,76911
+28675,12468,60936
+28676,63232,31523,65517
+28677,50083
+28678,51461,3037,54629,61343,40611,33189
+28679,12813,40591,60508,77641,76472,48568
+28680,55996,36191,66053
+28681,45923,70103,53370,22757,54892,61758,39918,1940,4873,79444,29138
+28682,27465,30128,24932,61334,55529,36325,74724,62958
+28683,62026,33464,69427,44150
+28684,59584,16131
+28685,36529,23512,57682
+28686,41152,65981,4792,62061,59615
+28687,61665,41578,16332,65449,73576,48777
+28688,25562,20700,17266,33983,45614
+28689,70843,43715,45972,77822,40309,45027
+28690,45166,27773,54179
+28691,8360
+28692,47397,30955,67037,24086,6478,50544
+28693,11028,64460,73034
+28694,78519,59370,62705,43133
+28695,20081,44538,7577,17981
+28696,27090,65929
+28697,31119,15946,31271
+28698,18026,23800,26640
+28699,52191,80053,45491,53199,71456,26113
+28700,63046,55416,60388,69631
+28701,34466,29356,18717,39685,43414
+28702,40970,38267,10228,66536,35915,42277
+28703,30057,35726
+28704,80280,75680
+28705,27835,1205,37203,54227,12396
+28706,78226,75813
+28707,74488,76714,65915
+28708,78974,78877,30065,10953,52464,55370
+28709,8370,25079,61545
+28710,73084,63955,51194
+28711,9509
+28712,61565,30550,17571,56901,4064
+28713,15856
+28714,31962,51843,59,16289
+28715,11955,39773,2019,49974,64996,40548
+28716,73878,24857,30003
+28717,53566,57478,15899,64196
+28718,12532,68794
+28719,26358,77756,62480
+28720,461,16717,21125,28863
+28721,44541,7025,49372
+28722,77271,33602,55612,53706,27664,40371
+28723,79837,80888
+28724,42361,57597,66610,47425
+28725,3288,3436,69885,28447
+28726,14407,5121,6530
+28727,7146,40311,10737,22147
+28728,29780
+28729,9018,34665,48064,71536,35971,55657,40949
+28730,46516
+28731,79640,77057,45146,23066,56860,71058,26509,63839
+28732,29542
+28733,34393,65344,51306,36329
+28734,44806,57069
+28735,24455,49058,36887,75854
+28736,12440,64166,37454,18247,52636,79203
+28737,12616,51395,13723,69633,43759,66347,67037,7389
+28738,78037,31682,9651,51292
+28739,27533,16743
+28740,47488,54071,6475,64973,37414,37294
+28741,71357,8212,40233
+28742,18093
+28743,60180,357,53887,79390
+28744,24457,76156
+28745,39265,37327,80710,38419
+28746,58686,62375,24997,55616,15736,57542,3072,46471,42945
+28747,23496,79284,60008,10741
+28748,26456,26926,4899,81601,79990
+28749,19513,15044
+28750,20200
+28751,16102
+28752,31039,53287,50716,57667,2305
+28753,18835,67367
+28754,41806,25441,80480,38816
+28755,69343,41011,40004
+28756,21034,71303,5754,68443,23397,23868
+28757,4976,31231,43473,59200,17472,63688
+28758,69034,22562,56471,1770,54796,80962
+28759,47252,44038
+28760,63511,38846
+28761,59191
+28762,3478,42305,75660
+28763,286,81753,57993
+28764,63881,37123,36298,37931
+28765,49630,69600,21580,41959,49511,59005,55737,12239,23089,26145
+28766,64653
+28767,55994,81403,22686,70982,35544,76973
+28768,63030,16592,34063,42511
+28769,49046,7146,9123,66324
+28770,70045,42981,73777,23520,2993
+28771,15828,33142,96,21671
+28772,75535,80395,76868
+28773,57394,54318
+28774,24542,8219
+28775,4117,9895,18982,47287
+28776,76632
+28777,35079,14671,73284,57084,81194
+28778,51267,61186,28948
+28779,2668,41244,27247,80401,34208
+28780,21161
+28781,44155,79873,67201
+28782,60735,1263
+28783,21286,18662,75738
+28784,49576,60280,81868,4574,72812,63925,8458,21303
+28785,77043,36391,66758,70791,39632
+28786,24318,75617,32528,57763
+28787,80521
+28788,42468,56018,39190
+28789,24898,51615,37337,14941,25469,54210
+28790,18416,25896,31678,47750,62964,1513,27157
+28791,40647
+28792,23358,56599,80959,60676,33221,2532,48430
+28793,23632,79192,1634,7708,27237,64734,13832
+28794,69598,40780
+28795,23936,69357,34129
+28796,16126,81945
+28797,6246,72710
+28798,23210,39247,57470,56494
+28799,74330,36075,27520,20437
+28800,46017,57265,35759
+28801,60779
+28802,61743,49609,38728,572
+28803,69408
+28804,39904,68834,80260
+28805,68528,63227
+28806,60213,81487,818
+28807,17350,55558,51465,57521
+28808,5813
+28809,23546,9018
+28810,13925,1230
+28811,20298,665,75858,39804,8177,54094,41727
+28812,70051,49599,14561
+28813,79867,75273
+28814,50930,28899
+28815,4483
+28816,52928
+28817,38559,356
+28818,58511
+28819,36503,29777,50339,47042,2880,80476,23070,19340,34215
+28820,23635,63564,25906,43698,37640
+28821,12586
+28822,59738,11524,4744,17682
+28823,17918,80292,75236
+28824,2560,13081,14914,63551,72429,36681
+28825,35166,68752,33258,79199,66033
+28826,39536,41281,954
+28827,20127,34556,61325,24875,10384,51566,36793
+28828,57345,36765
+28829,11043,19043,79153,30545,25486
+28830,41334,70063,9448
+28831,74846,73875,54829,19815,54987,59817
+28832,15480
+28833,71454,25697,72862,20024
+28834,23900,64081
+28835,65252,3192,24036
+28836,67691
+28837,55998,75194,69766,78302
+28838,4573
+28839,48234,32530,50093,65464
+28840,55961,27796,74801,62729,58706,37295
+28841,26581,5815,56411,23712,72008
+28842,46759,54928,49245
+28843,64270,35797,79043
+28844,4032,51196,7486
+28845,5896,25523
+28846,55240,74667,26680,30723
+28847,71271
+28848,50508,41235
+28849,4061,41021,30378,65007,9094
+28850,60021,69610,46144
+28851,19666,8684,23159,20444,60534
+28852,41437,69837,37583
+28853,11613,72331,30679,59382
+28854,51826,29799
+28855,16073,53149,10636,57706,1927,23422
+28856,75507,72348
+28857,14764,63145,78920,28572,56175,34425,42214
+28858,45719,27444,9611,77971,45284,66379,25062
+28859,72330,17817
+28860,66971,6464,41963,62990,73938,74176,30822,44017,45223
+28861,79573,77845
+28862,36929,37838,55197,76,3655
+28863,63181,49143,11765,34734
+28864,4791
+28865,58385,43310,6558,54078
+28866,64920
+28867,52047,33541
+28868,26192,48056
+28869,58757,39702
+28870,3104,56621
+28871,14366,34053
+28872,23736,75382
+28873,70064,532,77354,61397,53656
+28874,3562
+28875,21547,64224,13437
+28876,38644,62985
+28877,60890,44001,29379
+28878,23463
+28879,57209
+28880,25987,39831,50599,61488,25489,7915
+28881,44101,68882,41213
+28882,52336,11230,15788,4417,1604,63693
+28883,33389
+28884,61727,67821
+28885,39189,51988,64640
+28886,10614,1616,55243,16918
+28887,16798,38512,27978,40427
+28888,6042,67053,21717,74069
+28889,81354,44244,38623,45278,29241,17237,8352,17166,34642,66221
+28890,32867,32151
+28891,56770,27741,19143,6082,47166,12134,3668,70517
+28892,1718,6258,16344,68473,18805,9052
+28893,74176,76080,12562
+28894,45819
+28895,34383,47311,40025
+28896,22431,46826,41213,24383,567
+28897,59214,24140,72943,11070
+28898,38356
+28899,18021
+28900,34477
+28901,21836,42455,56657,67596,65222,48259,12246,76252,60694,44122
+28902,1311
+28903,76697,11306,8009
+28904,81593,16222,64026,5012,42022
+28905,32605,60594,28962,50833,56006
+28906,2586,44652,15223,776,78258,22873,39824,8849,955
+28907,80486,12101,34629,4610,35175,25523,21170,39770
+28908,49214,63622,52796
+28909,5571,46219,72987
+28910,34177,82176,19051
+28911,30099,71048,6254
+28912,26107,8175,68923,20332
+28913,50849
+28914,2610,66118,3840,42767,39017,27645,52283,26227
+28915,42747,21740,63612
+28916,13330,12953,47451,77628,55268
+28917,58111,66743,47667
+28918,42838
+28919,22774
+28920,66697,80600,77794,1904,25420
+28921,604,31918,60926,40776,65135,80690,41964,47877,69947,1361
+28922,37510,60428
+28923,53010,20833
+28924,66591
+28925,37356,28663,44906,81766,8398,57764
+28926,79562,7045
+28927,65126,52202,72363,58125,10618,58900,14306
+28928,35970,53483
+28929,56143,57401,27474,533
+28930,75412
+28931,52053,58360,7017,59504,67711,50442,13699
+28932,77164,72461,61911,80881
+28933,630,65204,1730,23285
+28934,47626,64956,75806
+28935,51268
+28936,44925,66012,49252
+28937,10604,77587,65864
+28938,21635,28480
+28939,44293,15770
+28940,40629,81802,61072,40332,30101,64553
+28941,18570,35209
+28942,5771,26712,57446,19769,87
+28943,24396
+28944,38574,71384,60671,39286,57128
+28945,36162,49350,54285,54771,79136,17565
+28946,46372,62049,21811
+28947,75102,35878
+28948,22479,4765,56063
+28949,54730,65357
+28950,48202
+28951,14998,16307
+28952,14645
+28953,39368,37511
+28954,39862,76376,51413,7331,45542
+28955,18023
+28956,67288
+28957,62871,15999,65097
+28958,57991
+28959,31653,21383,78336,47191,14952,80710,14749,42091
+28960,19058
+28961,24220,21787
+28962,10793,11772
+28963,33034,52062
+28964,45586,76867,39309,45364,25519,71437,63121
+28965,75120
+28966,11861,80020,35454,51781,17054
+28967,66219,33743,2691
+28968,76534,58916,64617,12401,7103,64796,27566,52374
+28969,15476,33559
+28970,56975,9264,72219,40311,18635
+28971,66362,71372
+28972,39564,1724
+28973,57156
+28974,79714,80178,56794
+28975,33465
+28976,4744,19212,7912
+28977,76814,28005,40971,61297,60542
+28978,33638
+28979,52284,65326,48450,28512
+28980,53866
+28981,51027,54422,40714,640
+28982,59133,65624,55948,49811,65354,69710,12431,45904
+28983,55098,57227,33152,56747
+28984,31494
+28985,34091,364,56769,75006,9021,52306
+28986,73930
+28987,321,60070,80076,36786,3910,18380,67663
+28988,37339,50370,73974
+28989,80203,45125
+28990,70851,13460,75856,65753,61697
+28991,15803,48632,60865,715
+28992,34034,81448,78216
+28993,31121,72774
+28994,59322,26323,10895,72852
+28995,33522,39455,38756,36650
+28996,48346,61547,297
+28997,35602,10872,53479
+28998,62560
+28999,44593,28345
+29000,66500,33424
+29001,10105,76525,36765,32969,54910,50155
+29002,1594,34730,55433,61333,73717,32165
+29003,24100,76308
+29004,49518,35209
+29005,55445,79084,18430,24318,26961,9662
+29006,50167,29353
+29007,31189,52397,63812,15144,38491,73427,76020
+29008,52865
+29009,37579,48875
+29010,59842,9419,62953,37559,31084,53592,11647
+29011,11685,5051,72478,70502,53198,71551,41510
+29012,8155,31542,3135
+29013,5818,63993
+29014,67005,21051,58087,23502
+29015,36925,24379,30472
+29016,29792,69019
+29017,15904,34038,24220
+29018,54819,8884,16664,26457
+29019,42446,33550,11547
+29020,63768
+29021,50150,74300,36108,8629
+29022,6458,5856,80369,65501,6259
+29023,58004,76224,3717
+29024,68084
+29025,63410,79148,74898,59147
+29026,8729
+29027,28704
+29028,63452,58767,81937,17738,29330,32668,53824
+29029,3153,23408,2819
+29030,39417,54793,7521
+29031,55601,12564,72467,20825,66020
+29032,54029
+29033,54195,69040,18053
+29034,4135,60001,65648,43364,5182,55214,77227,4375
+29035,67497,51200,25751,56076
+29036,28234,33297,71056
+29037,78365,43256
+29038,35841,30451,50496,79027
+29039,64802
+29040,62312,30901,39948,12001,4084
+29041,48728,27184,21635,39845,74701
+29042,22384,9901,72260,45692
+29043,76698,26371,65870,38906
+29044,59915,24623,32406,78032
+29045,50115,52377
+29046,12050,76753,46619,54302,536,64138,17592,68322
+29047,37421,81244,71181
+29048,80457,53362
+29049,35238,52657,66198,68465
+29050,59997,9473,70954
+29051,56962
+29052,74822,23803,68266,74842
+29053,14041,35001,45684,51096,67142
+29054,10773
+29055,6248,59515,14634,9706
+29056,79921,2850,44309
+29057,50899,43119,32362
+29058,41799,54309
+29059,44322,16621,70646,53900,12523
+29060,29378
+29061,4943,80565,43060,72230,54178,3585,37238
+29062,26488,61835,27017,60529,60752,66964
+29063,54044,70206,34763,63420,31254,75689,11208,19565
+29064,6237,59301,54259
+29065,62905,50997,62420
+29066,1816,56975,57902
+29067,62015,40693,67005
+29068,36765,81937
+29069,47729,46715,6297
+29070,2861
+29071,44924,23129
+29072,13897,55359,18367
+29073,56544,17065
+29074,42014,54706,22339
+29075,44210,51575,55177
+29076,64562,6056
+29077,22320,21449,75024,46264,44338,45616,71268
+29078,57470,51157,45652,69236,23633
+29079,9234,12967,13359,76105,41127,79563
+29080,49400,6365,81793,4383,21114
+29081,1903,63881,47852
+29082,21632,7779,43827,76905,74222,20059
+29083,26663,14142,40446,3946,13297,56275,56884,20967,11609
+29084,76113,42660,63505,50443,71848
+29085,70449,67118
+29086,12457,76799,7987,36733,63350,36910
+29087,78019,10442,3221,56289
+29088,34082
+29089,35555,75361,32826,36593,78354
+29090,77037,31831,75526
+29091,55003,26392,42245,75944,67462
+29092,41017,40662,79043,78001,62734,73572,7057,77221
+29093,7971
+29094,11280,76391
+29095,3481,64744,76598
+29096,7893
+29097,54360,40670,16269,39515,15468
+29098,30251,25456,72936
+29099,7124,44630
+29100,58502,52714,10452,79082,47322,27333
+29101,74249,53970,12288
+29102,3524,55617,20124
+29103,25320,6452,32085
+29104,66948,71896,78604
+29105,59679,32880,80281,30518,75570
+29106,28847,23626,58608,54622,78498,62269,25307,50382
+29107,9189,2723,5050,56963
+29108,68223
+29109,76993,47084,33635,78543,39967,59514,14331
+29110,51004,57224,38451
+29111,56251,36618,58360
+29112,75738
+29113,12712,71086,54963
+29114,1531,24087,81827,30893,3936,53289
+29115,14447,78683,34753
+29116,52712
+29117,3741,73002,11147
+29118,33548,49825,79932,57459
+29119,24674,67021,54908
+29120,4845
+29121,8431,19401,79991,77028,25872
+29122,9834,18636,70077,11117,60644,21032
+29123,67959,27550,38195,8805
+29124,58882
+29125,50129,20993,68374
+29126,62556,58816,81950,77012
+29127,77788,18597,63378,23048,27682,51955
+29128,5925,75191,21575
+29129,73143,35380,35150
+29130,66524
+29131,29978,39915,18305,31109
+29132,53316,68594,39294,25817,15770
+29133,73873,31008,51086,27477
+29134,13640,36538,62965,49798
+29135,15669,46658
+29136,35131,27935,55600,4949
+29137,43660,47420,14720
+29138,25999,64797,54263,35186,39197,15515,41617,80139,951
+29139,13051
+29140,3412,17035,81476
+29141,19681,4678,6675
+29142,51705,16809,26452,1628,51316
+29143,40400,20878,6768,78018
+29144,2470,14144,10635,38095,20317,62677,61588,70539,10587,44020
+29145,22255,9738,32602
+29146,64305
+29147,62953,33816,77457,63599,16376
+29148,32031,59757,19249,10960,36595,19658
+29149,22408,61861,36034
+29150,65929
+29151,62084
+29152,43632,60620,37434,29823,9063,73336,51876
+29153,68848,62304,48730,47968,44388,39556
+29154,77776,58448,4227,18790,26913,35018,79555
+29155,20079
+29156,76635,60894,57641,71817,10716,25893
+29157,2368,78681,38438,42728
+29158,31526,43600,17514,11272
+29159,43677
+29160,31462,22468,62947,5324,47409,41996,12911
+29161,15393,28559,47663,34974,65673,5308,46294,31518
+29162,58906,31994
+29163,49491
+29164,68545,64208
+29165,50764,27041
+29166,38169,42005,29984,43466
+29167,42329,81472,63704
+29168,9968,1370,36897
+29169,43097,75738,32544,30373
+29170,47469,62558,75566
+29171,46524
+29172,56411,4364
+29173,39054
+29174,63792,53435,30581
+29175,17200,3057
+29176,56091,61188,21636,53554,18687,6092
+29177,763,1134,43390,59236,66367,10640,72529,47765,37199
+29178,41872,50141,1622
+29179,57440
+29180,6538,62945,65757,74959,61913
+29181,28490,64136,27260,66564
+29182,76789,49260,66066,34895,65373,15813
+29183,58705
+29184,14120,34697,73894
+29185,31891,37429,80162
+29186,19519,22447
+29187,4180,51202,81638,12711,12332,56340
+29188,74881,56402,40434,72307,43354,81274,27401,50848
+29189,46912,26485,60087,36853,1966
+29190,46440,36186,46290,24372
+29191,63910,62672,67328,77318,49106,33148,52282,62542
+29192,3330,24382
+29193,14135,51424,33566,4867,28004,14564
+29194,28984,65820,20908,20749
+29195,81409,34222,60450,41563,46738,81366,49540
+29196,45896,1241,67634,41319
+29197,51012,46807,22108,2118,21022,1266
+29198,10855,35713,70247,20564
+29199,338,69245
+29200,66671,73528,45776,78503
+29201,18408
+29202,27055,37302
+29203,8704,52024,12906
+29204,59374,46989,36117,13936,31613,19213,10791,17074
+29205,43662,71073,522,3788
+29206,11193,22223,30799,55691,68425,16844,7105
+29207,7230,47666,6201,33810,26657,32767,48536,52019,36156,63577
+29208,49761,68924,79285,5581
+29209,58093,50456
+29210,60571,75805,78199
+29211,13728,80593,50085,22613,38567,61408
+29212,52482,7682,36738,21362
+29213,72107,13357,15350,26023,53802,19028
+29214,75670,2434,76944,64896
+29215,14038,48526,79015
+29216,79096,62605,49491,21539
+29217,67720,67199
+29218,33142,79171,18710,42879,4063
+29219,58318,13502,47793,60724,8390,30076,23225,35605,6773,47945,32183,72957,72136,76867,65927
+29220,34113,38121,1413,44457
+29221,54938
+29222,81339,13653,41811
+29223,69691
+29224,52309,30550,1792
+29225,11764,49495,16803
+29226,67959,64830,81666,38829,3142
+29227,58042,74818,21611,13121,5333
+29228,74027,75665
+29229,43630,46660,46698,33528,39844,19077,24984
+29230,7438,5301,20580,80302,8981,28035,79665
+29231,77262,65555,69163,41431,76925
+29232,71550,81852,12087,61050
+29233,13772,18027
+29234,44638,45898,63782,1759,45084
+29235,70176
+29236,63107,5238,50832,42969,27908,27186
+29237,78467,35509,30861,33500,8008,38183,75950,57830,24127
+29238,63075,18264,74795,71336,16958,63336
+29239,26045,79669
+29240,49098,19743
+29241,73694
+29242,76124,2753,50765
+29243,61981,53030
+29244,27544,4869
+29245,45738,10195
+29246,6641,47302
+29247,80606,13791,69088,72693,3931
+29248,13680,1895
+29249,41728,5764,21785,10830
+29250,66411
+29251,57827,14012,38196,40715,9896,46590,10604,11541,14178,72076
+29252,69721,46296,15261,23233,61028,70900,52128,80158,36628,77286
+29253,34369
+29254,56014,34512,66956,8042
+29255,27565,80875,31679,70554,13505,59671,58897,13331
+29256,11945,5862,12283,15030
+29257,70903,58370,57196,65749
+29258,29162,80632,49883,36084
+29259,70024
+29260,5015,76109,73217,22877,13489,8160,33262,41369
+29261,30091,61014
+29262,69537,40796,28421,22813,14159,56953
+29263,20685,72360,66557
+29264,79063,40209,23818,40233,76254
+29265,71973
+29266,5521
+29267,34084,75137,72651,7231
+29268,13362,25706,58038,36379,42351
+29269,11574,12206,36003
+29270,65701,71810,22001,1492,73069
+29271,10848,38921
+29272,82086
+29273,34282,57045,18124,41762,43710
+29274,4792,53473
+29275,32226,72209,18244,57298
+29276,53815,54099,35601
+29277,382
+29278,76567,40160
+29279,69754
+29280,30703
+29281,57859,68107
+29282,23296,26637,79570,34741
+29283,23590,3174,37500,53186
+29284,69398,40543,366,22243
+29285,80434,13823,81852
+29286,72259,5908,11940,11048,43203,76052,12376
+29287,58274,49154,47329
+29288,7841,80685,65813,74427,71178,40614,40816
+29289,10639,67391,3911,68315,76497,43895,57696
+29290,64216,27531,32839,176,51980,38016,51482,10988,399
+29291,5447,42484
+29292,13246,69532,53450,12760,10830,80016
+29293,75188
+29294,73158,77685,7258,75682
+29295,16156,380,37523,18315,51107
+29296,66065
+29297,10028,63698,64914,7851,79544,41743,72206
+29298,45254,13755,11079
+29299,41551,28672,44125,22447
+29300,7530,39478
+29301,34349,16810
+29302,14668,50982,71976
+29303,17230
+29304,6270,30909
+29305,45144,34076,9781,24835,81798,32493
+29306,14750,36275
+29307,34814,73810,34399,56622,1983,1110,33932
+29308,15609,3379,70883,63528,51481,51416
+29309,6644,31953,47117,13644,26507,17217,19434
+29310,47908,55234,81106
+29311,73740,78208,38013
+29312,20512,54767,24886,2890,13128,44365
+29313,81076,65729,28089,33589,27604
+29314,12326,58202,37466,40280,7182,8961,60476,66155,17550
+29315,32629
+29316,32619,26553,25412
+29317,42972
+29318,6312,26901
+29319,27090,78861
+29320,56221,23611,57205,19069,40646,28203,6214,66758,51989,16571,18084,63728,4619
+29321,48208,13089,59716,43055
+29322,71213
+29323,51128,54471,49967,26304,16585
+29324,6987,57625,18857,47031,15445,68318
+29325,6503,12481,32561,67597,7210
+29326,1153,42970,29556,53242,42094
+29327,16624,19677
+29328,82020,6814,45226,32220,28357,20010
+29329,47344,34974,32588
+29330,81011,50982,56424,48295,37114,7590
+29331,77889,27808
+29332,21543
+29333,22012
+29334,79588,56545,62125,14848
+29335,6910,51256,20007,69175,54884,28342,78530,44569
+29336,11812,77880
+29337,16792,3201,6031,20984,55030
+29338,79626,15980,26303
+29339,32887,62054
+29340,12205
+29341,9457,40380,32651
+29342,40750,66551,11732,39470,47840,32705,38991,80124,4944
+29343,14910,34404,61760
+29344,65709,32503
+29345,20551,79569,66251,38862,52476,43749,78099
+29346,51675
+29347,15090,4715,44329,19936,10581,42046,19864,29019
+29348,31097,32226,71140
+29349,57201
+29350,40919,17602
+29351,66748,77646,53247
+29352,20452
+29353,33533
+29354,61024,78869,8212
+29355,43570,49391,7643,44250,23199,50531
+29356,15456,40548
+29357,65557,72734
+29358,62604,26873,21770
+29359,54864
+29360,58906,50380
+29361,52229,66266,77830
+29362,58610,69070,37185,54128,19435,67454
+29363,68703,73327,21710,32645,12103,5974
+29364,15952,64347,22145,49466,47766,5400
+29365,69808,58878,20757,58811
+29366,2874,148,70182,69738,35838,69314,50048,72254,61297
+29367,31589,23470,46721,32130
+29368,4343,961,52097
+29369,17646,81109
+29370,76078,14615
+29371,29130,60613,75962,49266,29601
+29372,78468,13038,46887
+29373,66072,46310,76793,78546,14363
+29374,37308
+29375,25876,60687,76718,63846
+29376,81975
+29377,34124,71175,54685,8890,70813,25099,17919
+29378,4760,61971
+29379,44019
+29380,8718,36489
+29381,78324,28279,67851,16282,41279
+29382,12561,17712,7679,33314,32097,77942
+29383,46059,73585,24541,72239,4712,34928
+29384,37807,80703,35657,68279
+29385,43044
+29386,76332,57568,1661,49241,7408,30283,79357,25817
+29387,72714,24729,23971,46477,42826,15359,33186,50198,72944
+29388,22931
+29389,797
+29390,62556
+29391,3804
+29392,68649,80242,34570,79998
+29393,24673,40045,42789,82004,69378
+29394,68377,41215,31245
+29395,26668,64153,63458,67582
+29396,12282,47515,5581
+29397,7076
+29398,29333,40617,36618
+29399,45694,10850,65224,7220
+29400,28050,35452
+29401,4395
+29402,26333
+29403,8658,6136,58728,76461,25909,17541,54830,7327,54196
+29404,11390,66858,50929,60028
+29405,15145,61889
+29406,3399
+29407,69242,10215
+29408,43897,62084
+29409,53531,58535,896,31201
+29410,17971,59628,33485,73167,12024,70228,80095,72599,6380,48746
+29411,51000,34064,22828,34291,23102,29109
+29412,21922,7020,45195,44375,15410,7883
+29413,62731,36757,25284,8454,54092,77901,45301,24066,52197,16263
+29414,62612
+29415,56835,57081,24484
+29416,64630
+29417,77960,18822,41681,58624
+29418,21103
+29419,71934
+29420,60536,52627,46754,57645,52642,76389,24366
+29421,68366,32448
+29422,4139
+29423,284,73420,11663,37756
+29424,45669,16697,59998,80636,77014
+29425,77073,81720
+29426,77914,29944
+29427,36769,8138
+29428,12050,69939,59409
+29429,13794,62129,39494,10069,3888
+29430,48058,39973,14387,12130,47603
+29431,36870
+29432,12674
+29433,27239,37975,56705
+29434,17303,31420,14458,82110,78850,43613,80371
+29435,77354,49140,49066,23956
+29436,57291
+29437,39000,45835,12064
+29438,46945,56406,35017
+29439,36765,56414,21870,52517,67728
+29440,81193,27441,61608,77391,19310,7394,3258
+29441,64926
+29442,80902
+29443,8298,31131,10545,32038
+29444,70307,30119,65824,37129,65852,79438,33928,26120,60336,57586,22314
+29445,35386,54664
+29446,58005,56238,55322,39290
+29447,37702,66997,52631
+29448,23065,48711,9432
+29449,11972,68225,48321,62332
+29450,42084,3464,40672,21897,12227
+29451,44383,9533,6983,73702,56828,72794,45922
+29452,71932,65350,43521
+29453,39988,62704,39181,55204
+29454,43060,10114,56959,30675,16862,69099
+29455,40676,59849,56704,63384,51720,71400,13564,2077
+29456,6204,75367
+29457,86,77064,64608,459,29599
+29458,71525,18473
+29459,28163,44026,37556
+29460,9403,24537
+29461,75660,61359,73687,9880,11533
+29462,10862,63782,44418
+29463,18477,8994,34187,3632,56657
+29464,52374,53882
+29465,64107
+29466,25052,44740,73456,12068
+29467,17028,41894,77125
+29468,56628
+29469,31562,26453,54492
+29470,77577,59133,76547,22035,75119,74479
+29471,29952,50274,42916,15278
+29472,33165,37189,11354,20996
+29473,9597,77309
+29474,45284,77781,70531,41580
+29475,77354,15660
+29476,16067,38063,51608,28418,65603,20930,18744,63390,75172
+29477,21343,19537,5914,46331,7459
+29478,21377,23145,8280,48144,73107
+29479,57536,36186
+29480,67742,62124,14288,56491,41673,64984
+29481,21470,68161,32176,47822
+29482,17604,40588
+29483,41395,63410,20953,36196,47294,71431
+29484,41509,29748,44020,33345,68413,6719,47986
+29485,49839,25821,22043
+29486,37600,50366,21204,81722,53712,72885
+29487,22908,42949
+29488,58511,58632
+29489,71070
+29490,66142,848,66634,54850,12754,67887,63171,42879,15571,78560
+29491,32416,38889,81480,6880
+29492,22089,76587,74488,9815,13316,16411,62935,18948
+29493,8535,17178
+29494,63444,22701,11588,16432,58910
+29495,65239,5795,36875,18122
+29496,57511,47507,1843
+29497,3749
+29498,46948
+29499,66542,78649,17465,53768
+29500,20438
+29501,28776,57971,3301,2059,69727,61403
+29502,81473,73143,62457
+29503,1160,50715,38833,41426,52836
+29504,69741
+29505,47744,77929,66709,63114,21320
+29506,29421,36476,22925,28105,5527,55933,42547
+29507,69562,76171,6073,39847
+29508,33301,68491,61432,52980
+29509,25550
+29510,55170,79691,45686,74215,2991
+29511,2685
+29512,77570,73415
+29513,67176,72011,68209,66524
+29514,40934,57586,61289,32330,45597
+29515,9087,50810
+29516,79292,53240,36689,41154,70355,57504,64060,32672,4447
+29517,9202,27311
+29518,76800,12881,54488,20755,43451
+29519,64774,43594,62679
+29520,39756,54533,2835,15864,69848,39778,65678,54948
+29521,54426
+29522,48459,38911,29006
+29523,78591,29155,69774,22477,58976,67998
+29524,60383,32816,54474
+29525,60752,54601,74485,24545,26142,76705,67138
+29526,58399,30589,4650,3887,54689
+29527,26110,37356,47160
+29528,36211,57290,54839,41728
+29529,41972,22988
+29530,17738,45082,27980,82024,72335,17638
+29531,51858,22385,78284,67496,13103,68027
+29532,30873,81517,53260,77249
+29533,10832,40479,3591,53040,11248
+29534,27127
+29535,71334,78325,30237,46250,37875,11007,74182
+29536,76460,48112,80449,79496
+29537,186,69481,39071,52415,2854
+29538,61629
+29539,81407,81120
+29540,11874,35231,523
+29541,28805,39560,69920
+29542,38506
+29543,12365,60735
+29544,59921,81541,42252,7861,41138
+29545,34238
+29546,44307,55613,81408,78320
+29547,61397
+29548,36222,8839
+29549,2362,85,78716,59340
+29550,61631
+29551,27894
+29552,68066,63357
+29553,60008
+29554,24261,40371,43422,75125
+29555,51588,35793
+29556,70051
+29557,5933,17324,8658,26998,55057
+29558,26687,81642,20022,78302
+29559,22364,77450,33756
+29560,55919,44288
+29561,8206,39905,79656,79020,64368,10398
+29562,1611
+29563,49533,29930,45887,47876,55119,32041,69650,7295,30106,28843
+29564,13914,18458,75888,55374
+29565,41514,17705,48094
+29566,24222,66374,61552,60499,31176,74495,30292
+29567,12806,54748
+29568,12257,21764,56637,32667
+29569,76460,33194
+29570,23882
+29571,6204,37692,54617,35390,13667
+29572,30901,35248,52920
+29573,45252,27644
+29574,32677,73290
+29575,79721,55038,56881,19185,13616,49677
+29576,62579
+29577,59547,35357,74417,18379
+29578,58508
+29579,28104,24098
+29580,33038,828,78680,62455,69428
+29581,32738,911,76825,1183,41484
+29582,29845,32594
+29583,19138,54646,24631
+29584,13038,70796,27548,2063
+29585,31736,62059,25540,55135,58066,52775
+29586,17418
+29587,49510,12760
+29588,63134,8459,26957,68903,27569
+29589,19819,81803,20615,13777,60773,5926,49302
+29590,78162
+29591,9622,26243,10257,76986
+29592,62631,17963,69798
+29593,36459,69540,58739,64278,33904,22172,14656
+29594,52795,2374,14680
+29595,17647,49427,19415,16866
+29596,61533,50065,32979
+29597,10248
+29598,16516,35549
+29599,9417
+29600,10561,43553
+29601,62403,35883,10642
+29602,23065,67915,66198,29959,43907,20765,30732
+29603,2643,54583,20525,58049,14977
+29604,54253,8067,320,39881,29782
+29605,66588,6781,57129
+29606,10431
+29607,20361
+29608,17352,35750,25677,40730
+29609,20533
+29610,25299,31424
+29611,3700,72326,17374
+29612,15940,12209,41998,36692,54769,26441
+29613,32334,38587,21628,14313,4922,31267,44376,62200,80045,1371,40546
+29614,43067,24352,12080
+29615,46916,6026,30112
+29616,68430,36148,47146,17646,12971,68746,49612,62441
+29617,13034,9162,20481,7169,30560,46828
+29618,80863,69019,49527,20881
+29619,21286,49164,17351
+29620,32577,37658,14991
+29621,32981,41573,10898,47958
+29622,23008,15899,15531
+29623,31742
+29624,9344,79031,73735,37977
+29625,72343,1766
+29626,316,31979,10313,40967
+29627,29419,20671,50829,23891,50548,35128,207,34007,30508
+29628,39892,531,61900,41916
+29629,60002,8190,4406,39071
+29630,24741,13207,59529,66473,8199,34244,2162
+29631,47048,66696,28272,49036,49366
+29632,26295,1341,69281,4295,68936
+29633,30426,31770
+29634,35279
+29635,42338,36626,66292
+29636,43345,55581,50699,12564
+29637,8089
+29638,70091,57985
+29639,76252,20692
+29640,14485,43249,44867,2097,42604,61276
+29641,17524,22974,41165,58343,15328,35328,78945
+29642,2604,60556,56179
+29643,18786,55933
+29644,14258
+29645,16939,74674,32526,68073,32778
+29646,43670,46397,41652
+29647,62636
+29648,65862
+29649,32067,45031,70334
+29650,18469
+29651,64865,53674,23597,15615
+29652,25403
+29653,55895,73879
+29654,54738,7252,28879,74084
+29655,36120,67335,3037,59656,49371
+29656,12524,10334,46469,75675,2240,54767,17169,73211,63845,67376,25918,12984
+29657,29961
+29658,41613,17817,14324
+29659,40748,16038,21785,63702,21728
+29660,60932,81964,10782,46499
+29661,56748,37286
+29662,4937,51829
+29663,55529,78816,5302
+29664,26687,21635,19736,68570
+29665,80902,37630,7764
+29666,70124,10130,38548,46991
+29667,2400,41059,49468,62907
+29668,32867,58187,4805,39420,48884
+29669,34755,44768,23192,23995,77236,208,44285
+29670,76496,37817
+29671,62394,75307
+29672,15533,8437
+29673,32880,15638,74769
+29674,40732,31692,42265,14330,67499
+29675,16766
+29676,52942,61281,70103,47733,41481
+29677,55998,73849,46535,41189,24253,56397
+29678,66973,14129,68024
+29679,41531,58018
+29680,74531,14542,24754,2667
+29681,59099,69353,57858,2931
+29682,62989,66860,12126,18655,20613,3440
+29683,69769
+29684,60700
+29685,12815,55938,40909,27205,32712
+29686,33938,19550,6527
+29687,52969,25567,52279,14482,65333,37563,55843,24563
+29688,76481,39374
+29689,55301
+29690,33426,38480,61588,42136
+29691,23519,2838,62830,6578
+29692,39914
+29693,54105,10569,48019,162,39793
+29694,41027
+29695,60012,74225,40357,20140
+29696,57883,12138,23733,71957,43168
+29697,49950,66094
+29698,60402,16888
+29699,12672
+29700,35582,80637,55918,41235
+29701,196,64756
+29702,76623,5525,55465
+29703,32348,16647,67680,62757,26054
+29704,2056
+29705,23412,5571,32630,39329
+29706,41551,25842
+29707,48033
+29708,45125,8720,52950,34908,16568,42790,39503,24063
+29709,62034,23589
+29710,70013,15787
+29711,66955
+29712,47995,14913,79662,4018,33165,21,65842,52906,29854,24124
+29713,33574,81613,26927,81158,51545,49762,39031,27147
+29714,209,19308
+29715,78015,1208,39958,62175
+29716,55006,42103,54735,79337,4236
+29717,73225
+29718,39924,65928,53990,33301,44185
+29719,64624
+29720,28797,7562,60258,43954,12371,55190
+29721,76383
+29722,49286,73790,44719,59324,22939,81269
+29723,67005
+29724,64342,36740,19189,75772,28399,79393,79818
+29725,41738,80666,43199
+29726,72188,35237,5790,78509,23353,77446
+29727,79591,10449,33568,22940,14570
+29728,42635,64136,40002,49669,66771,78400,78294
+29729,9831,45428
+29730,74347
+29731,73978,31376,46637,52128
+29732,41996,58893
+29733,3005,70279,7703,51981,53889,76047,13488,45649,7359,67501
+29734,16998,70277,75805,76669,58053
+29735,1296
+29736,71405,39567,3251,18591,73440,48691
+29737,2987,69057,66094,10481,63840,12427,8900,36099
+29738,33013
+29739,35714,34216
+29740,48360,61476,20096
+29741,58131,51970,2606
+29742,9191,34413,79126,25421,41900
+29743,26108,65051,35234
+29744,78749,69999,61505
+29745,3031,69701,47125,77264,40790,4835,6485
+29746,24116,26769,50525,72658,43102,12512,38760,53995
+29747,82061
+29748,77191,63317,27524,75133,22041
+29749,69721,12187,33003,28724,32160,36905
+29750,51486,43740,28389,11120
+29751,71158,11807,27090
+29752,13358,3360,62725,42620,79461,13272
+29753,48789
+29754,79712,39474,35171,74692
+29755,71165,78983,69281
+29756,79990,74784
+29757,4425,69977,50750,15797,49561,25089,20295
+29758,50092,53882,15618,55056,19639
+29759,77889,81924
+29760,18004,45821,65863,16811,67929
+29761,2005,43377
+29762,24997,38721,46598,69368,70381,12259,55112
+29763,20607
+29764,10560,63181,21950
+29765,80374,14401,5325,48921
+29766,54541
+29767,46364,25163,47151,59861,52639,38714
+29768,63807,79752,39189,29348,18732
+29769,38721,452,48433
+29770,18376,52137
+29771,41355,56281,30046,20559,72348
+29772,57205,48091
+29773,54977,67485,60601
+29774,78957
+29775,10057,44276,77209
+29776,63378
+29777,8072
+29778,23926
+29779,36253,76915,51346,62544,38450,4262,19410,59195,4813,27631
+29780,19608
+29781,56449
+29782,40059
+29783,8844,58472,35006
+29784,71629
+29785,31292,46830,705
+29786,14273,4897,41716
+29787,41721,15211
+29788,44870
+29789,62009
+29790,60170,46281,41954,22339,40623
+29791,29332,32518
+29792,71554,39065
+29793,4868,81970,1462,3122
+29794,1546,57711,16464,42201
+29795,10145,5996,59885,68232,62851,28872,50650,60507,15868
+29796,39650
+29797,55914
+29798,28969,42596,22121,60449
+29799,74757
+29800,60705,33076,14364,37821,13471,61703,62525,33998
+29801,48080,36314,31862,49829,64924,28969,71997,80993
+29802,16455,50179,35604
+29803,32336
+29804,27549
+29805,81733,20263,45969,75344,24718,80615,65763,31109,6459,7861
+29806,24689
+29807,39650,75611,17350,55097,21672,49012,80683,2700,53637
+29808,23340,74070,66349,18882
+29809,43236,67524,4855,12788,80428,29364
+29810,60944,55234,3266
+29811,13546,981,73319,73235,77650
+29812,80341,66118,25766,17696
+29813,11102,49971,24961,11630,2498
+29814,35919
+29815,3934,76716
+29816,3507,37791,71312,3864,23121,67731
+29817,27689
+29818,51404,29455,45047,2133,32703
+29819,3859,57777
+29820,49278,57036,74084,69412
+29821,48529,66928,23390,25637,59891,9819,8121,60176,63780,36222
+29822,48692,44715,4835,143,14772,73228
+29823,6022,58560,77129,21108,29741
+29824,23887,21733,46398,57464,72931,67927
+29825,63349,55786,35727,17066,63013,7670,52525
+29826,9570,66943,67850,63538
+29827,20018,52047
+29828,27477,8631,45672
+29829,36208,52824,43952,14111,1871,77198
+29830,48535,32233,43790
+29831,1339,60641
+29832,15716,59190,24338,11908
+29833,195,44633,1531,14514,47415,45850
+29834,16724,60700,20822
+29835,40542,18453,55752,32922
+29836,65789,80093,6984,58632,44846,4820,862,22804,13562,37953,46203
+29837,69322,64343,2463
+29838,8421,8922,68349
+29839,13550,3585,5889
+29840,72380,46522,41950,70499,12254
+29841,5784,794,33142
+29842,2358,38892,59663,21057,51666,27982,76539
+29843,7069,56892,27771
+29844,65448,22296,42886
+29845,29511,5113
+29846,75761,36499,33089,71820
+29847,48023,64273
+29848,13368
+29849,32602,14395,71992
+29850,28181,79037,30871,12621,18141
+29851,59524
+29852,54738,12411
+29853,22715
+29854,50197,65846,14145,51908,67496,50229,53474,26638
+29855,6480,72898
+29856,5890,21260
+29857,60880,48800,45252,1921,22318,75836,17965
+29858,73857,58887,51085
+29859,45709
+29860,71924,32622,26029
+29861,58637,485,2837,39292,24580,35238
+29862,63754,48867,69045,78269,36113,9872
+29863,19226,13974,47900,6605
+29864,77303,62426,32117
+29865,77743
+29866,62457,64756,27931
+29867,65621,34212,23301
+29868,37164,73373,68704
+29869,64150,23913,7118,60722,73745
+29870,12880,33760,7728
+29871,6885,8484,37610
+29872,7385
+29873,1426,74823,75828,14622,60730,61230,24788,28405
+29874,71023,39789
+29875,36840,28031
+29876,13680,73405,62660,54520
+29877,27656,10720,71831,43019,75487,49978
+29878,73006,31547,23047
+29879,27981,27227,38480,55348
+29880,13848,8114,68642,54311
+29881,38969,42094,34386,18384,52854,12663,50171
+29882,71969,3353
+29883,64267,44233,67292
+29884,64871,57242,77435,66349,32643,6149
+29885,51497
+29886,56460,25015,26841,29715,65432
+29887,12167,80610
+29888,71042,46766
+29889,57273,11134,1717,79578,18341,58459,54661,38272
+29890,41680,7609,25837,29609
+29891,58573,63435
+29892,53934,24339
+29893,81243
+29894,52202,67298
+29895,15113,10471,40667,33275,56253,14629,34630
+29896,30478,26991,69396
+29897,9507,52964,61026,53942
+29898,19708,56362,72198,6905
+29899,40841,78862,50912,30656,33834,17966,7130,70919,15364
+29900,54054,57060,28284,75151,11541
+29901,67139,70971,52492,67940
+29902,70594,25139
+29903,69387,14002,16465,67821
+29904,56297,59830,27574,1371
+29905,44389,19167,69984,42324,31323
+29906,52866,27495,74713,69042
+29907,71039,25580,58287,63567,4509,33450,56464,557,78510
+29908,23109,66181,27959
+29909,22771,80054,67294,20682,50333
+29910,52147,9037,71927,15844
+29911,28664,63388,51118,52349,63555,69000,44884
+29912,37135,38521,10034,51011,67059
+29913,69216,55043,69268,39650
+29914,54960,14774,63848,34358,57014,75523
+29915,74923,63889,25167,33281,34582,16848,27856,64152,2045,26077
+29916,12022,35127
+29917,36320,9187,51850
+29918,12035,71928,62292,14016
+29919,30201,53644,12236
+29920,37586,48027,43363,7858,4883,14001,45594
+29921,77657
+29922,18358,80334,12859,79582,65243
+29923,46524,43606
+29924,18088
+29925,12910,18727,65022
+29926,23727,17044,74968,58515
+29927,38586
+29928,5864,15170,63571,27022,61374
+29929,9273,61770
+29930,41437,685,7953,22883,61877
+29931,60296,13081
+29932,34621,56273,32208,54078,6889
+29933,36592,42485,66012
+29934,12460
+29935,53337,19583,47918,23023
+29936,2890,2948
+29937,48433,57358,4376,56663,49064
+29938,14366,16739
+29939,77408,29070
+29940,75613,31838
+29941,61703,12351,24786,65491
+29942,32559,46951,71892,21649
+29943,76598
+29944,43373
+29945,20406,39856,59795,52493,9692,75907
+29946,30140,27261,77511,47838,46450,27215
+29947,74213,4330,61925,67849,1095,40537,38152,17969
+29948,68030
+29949,32184,57939,63394,61914
+29950,13156,27989,62959,66070
+29951,58883,9974,10174,65362,39312,80669
+29952,64060,75226,57587
+29953,52520,47364
+29954,11844,58295,34463,70705
+29955,73904,28512,44547
+29956,69694
+29957,67005
+29958,12716,54941,12107
+29959,9252,29931,61072
+29960,62620,11766
+29961,34409
+29962,76278
+29963,28842,75214,24352,28541,3021,38535
+29964,26402,25442,70528,78052
+29965,43227
+29966,57265
+29967,56601,80349,48541,27462
+29968,14129,76448,75864,688
+29969,38226
+29970,30014,63883,25968
+29971,40029,56972,32013,24580
+29972,44066,72814
+29973,28645,23802
+29974,37402,3754,27524,17179
+29975,47040,75210,56745,3091,54381
+29976,11146,59453
+29977,32738,79984
+29978,79710,39844,62248
+29979,77968,66118,53339
+29980,45734,40240,45520,46679
+29981,53033
+29982,44324
+29983,32793,26654,284,58331,33560
+29984,80301,81677,59140,41962,13213
+29985,10517,42122,80422,16268,5741
+29986,67740,80119,56357
+29987,48587
+29988,16820
+29989,18715,21449,56668,58588,78420
+29990,38195,57031,56020,19600,81783,54446
+29991,62376,20357,28171,66256
+29992,41299,65784,30001,64269,36189,13898,67341
+29993,6699,73576,5555,4120
+29994,81464,66627,32026
+29995,25917,34464,61086,21897,51406,8040,81449
+29996,74015,67905,47124,9412,32154,40162
+29997,69289
+29998,59035,4799,40655,11626
+29999,19572,59027
+30000,22373,63158
+30001,18401,65886,17537,78068,78579,43236
+30002,52420,29521,48177
+30003,73899,6686
+30004,31520,73406,56058
+30005,76081,37092,11808
+30006,61863
+30007,39052,43718
+30008,80896,7424,79221,43320,44797,72498,22862,18941,21004,28114
+30009,38480,35868
+30010,22437
+30011,53306
+30012,73682
+30013,37599,45193,27930
+30014,7466,38734,21903,47570,11014
+30015,20149,7252,56100,51733,60750,46763
+30016,62482,29732
+30017,56946
+30018,73021
+30019,9613,30947
+30020,24837,9951,8522,62532,42903,48044
+30021,22001,26316,77228
+30022,16377
+30023,72765,45935
+30024,1801,59271,76244
+30025,81642,54325,53495,5753
+30026,29221,62884,33104
+30027,28345
+30028,57212,39589,40935,77029,80038
+30029,30369,24126,27235
+30030,15846,39518,12835,54152,35429,49672,7520,47484
+30031,5543,67629,54313,8427
+30032,26599,38556,41679,52936,73745
+30033,70642,51682
+30034,51281,35267,31957
+30035,37747
+30036,62412,76164,76438,46690
+30037,25559,82092,33939,82178,48252,54001,10645
+30038,72544,29649
+30039,22085,14382,67256,33675
+30040,74385,42703,49825,19495,70296
+30041,15688,55960,64378,30222,20056,10506,13055,64789
+30042,71359,1178
+30043,77041,6670,57677,69691,49347,16831,18394
+30044,3289,55002,30083,46750,4721,67062,57677
+30045,22573
+30046,67577,6989,63227,54310
+30047,20942,32921,28291,19033
+30048,44376,81937,26587,52518,22361,17781,13099,19308
+30049,57966,48210,23743,78619,23545
+30050,53013,9294,67367,63003,41181,81065,46984
+30051,49947,7930,39178,11463,50410,64524
+30052,57910
+30053,67245,37221,43162,977,29509
+30054,61802,26094,16870,9335,36843,71004,55091,42508
+30055,73977,44748,38850,64331
+30056,30889,32868,41014
+30057,32334
+30058,52541,79024,76195,75029
+30059,1125,56209,27440,22798
+30060,81818,28535,4238
+30061,43909,26104,65467,39235,80824,33019
+30062,45747,52080,78451,10246,77049
+30063,15055,51296,34908,21702,67245,74661,33798,1026,76045,74521,26233,79126,72455
+30064,60034
+30065,21392
+30066,13927
+30067,77296,74871,63567,54406,60519
+30068,67205,65928
+30069,67222,27928,20430
+30070,70555,36595
+30071,7809,6667,24486,67108,56671,66387,64609,39562,4480,48606,82124
+30072,67870
+30073,31518,15423,53443,15709,24719,62378
+30074,71805,68358,59306,59709
+30075,49139,74285,40222,33695,31546,60612
+30076,50424,58053
+30077,36531
+30078,64885,48692,78251,74604
+30079,10397,30423,29606
+30080,28449,32402,32955,23557,4549,57997,75287,25196,60210,21645,16001
+30081,50001,33356,29517,79147,42577,56485,81387
+30082,54614,43556,80392
+30083,8622
+30084,58608,57619,79894,76837,33505,34572,7587,69162
+30085,18251,8559,2063,54460,74034,62660
+30086,35970,29578
+30087,55241,38773,12077,8928,73539,39652
+30088,36811,81257,32896,36442,41255,6003,14323
+30089,59155,31154,58792,12006,25016,74363,59128
+30090,39931,43527,3656,53587
+30091,47769
+30092,3778,19113,73526,29832,13263
+30093,12015,15648
+30094,21950
+30095,30497,36157,15307,61685,3412,50388
+30096,8190,62802,15846,50346,74280,64861,51305,18947
+30097,22473,22931
+30098,6097,32149,30691,15212,21116,407,72101
+30099,62292,50287
+30100,81735,68416,46328,27926,64131
+30101,24696,62923,78543,39347,64316,14653
+30102,18684
+30103,35890,9011
+30104,72393,39515,50753,67651
+30105,10741,68649,11181,39549
+30106,71983,73430,44630
+30107,59495
+30108,36605,57694,325
+30109,63058,34635
+30110,61369,17520
+30111,50683,18751,18300,53853,41389,62201,37072,39177
+30112,41496,7058,80561
+30113,22161
+30114,37936,45468,15480
+30115,73981
+30116,70330,37250
+30117,21409,14168,55384,36922,59903,29922
+30118,50919,67743,19377,53815
+30119,66768,28645,42446,236
+30120,54063,25261
+30121,21593,78026
+30122,77912,11909,46719,6283
+30123,13679,49984,3733,74799,22415,65087
+30124,42103,1218,8742,30617
+30125,58232,18822,73795,29853
+30126,48227,71521
+30127,62457,51069,815,20446
+30128,51936,56788,77087,16269,8821,17716
+30129,17564,4682,46053,20954
+30130,41813,11863,1604,65802,19223,74528
+30131,28974,27643
+30132,3901,39536,39477
+30133,41370,76081
+30134,26926
+30135,5293
+30136,63153,17106,6103,37219,1697
+30137,51171
+30138,25729
+30139,16962,26870,35214,8547
+30140,20115,70223
+30141,25859
+30142,42662,67577,74548
+30143,28090,67257,13568,8730,51075,27931,81928,3732
+30144,75028
+30145,49526
+30146,58757,52699
+30147,25544,11070
+30148,49750,61562,38622,24395,16606,78510,29447,58036,19340,45094
+30149,39571,17160,60438,74454
+30150,7442,8016,45747,6637,17257
+30151,27941,40775,42374,28618
+30152,28175,46484,40185
+30153,26125
+30154,45297,53720,63131,24760
+30155,64880,50283,22953,43353,54415,69045,11203
+30156,65209,17350,61957
+30157,65697,31845,54927,49836
+30158,77563,21504,56152,37660,6734
+30159,12907,27898,13866,1244
+30160,17754,31771,17939,53063
+30161,80708,65011,51548,20724
+30162,71285,65375
+30163,69626,14740,47951,22055
+30164,58,58763
+30165,10530,38399,57332,79188,16567
+30166,69017,34495
+30167,70958,81650,61323
+30168,27065,71150,79239,32695,3391,63537,64327,63554
+30169,10006,21180,76448,46466
+30170,7679,38617,18634
+30171,30378,14674,11334,20159,52585,42930
+30172,51546,15799,81011,68205,52267
+30173,27244,46058,54229,30775
+30174,14716,41027,53385
+30175,27289,52546
+30176,65019,61028,58368,31628,9368,43856,2800,79552
+30177,79616,71547
+30178,74123,29785,28044,16620,20255,58681
+30179,4186,51190
+30180,50340,31176,38491,36733
+30181,79709,65417
+30182,5154
+30183,17600,75368,51200,53463,38690
+30184,22319,37618,2514,22872,53871,26858,80344,65142,36137,72187
+30185,72900,488,38067,58222,36639
+30186,10096
+30187,60903
+30188,69517,39968,5994,1562,12535
+30189,61570,60595,32054,28038
+30190,19294,2396,62489,56468
+30191,34764
+30192,79916,5290,37220,16710
+30193,25197,45715,20257,32612,40591
+30194,24351
+30195,39471,9945,16823,16531
+30196,49337,21967,24904,19637,13575,59094,19450,57320
+30197,53000,69899,3427
+30198,30611,43837,27652,41651
+30199,38037,15346,43875
+30200,73933,15604,67889,7666
+30201,38969,54865,78534,32448
+30202,16546
+30203,49593,60950,20403,42953,54479,8937,9242,69266
+30204,29589,1261,26777,30566
+30205,47608,75518,63289
+30206,39849
+30207,55855,16895,24325,26613,42741
+30208,26694,79484,37887,26833,63352,61627,30604,55302
+30209,78492,13357
+30210,8901,45651,25455,26046,16203
+30211,7872,63852,76463,62177
+30212,54341,31916
+30213,70807
+30214,34116
+30215,9897,57847,16117,8743
+30216,10977,16107,25296,49258
+30217,70158,35338
+30218,2901
+30219,21326,26040,16421,41812
+30220,16106,61011,59320,48158
+30221,44685
+30222,6962,38778
+30223,65771,14489,53836,1405,56184,54786
+30224,60395
+30225,1933,67573,16354
+30226,72791,59328,32393,75341
+30227,49147,57561,72558,79084,57522
+30228,52194,32807,68277,8706,14347,56225,59320
+30229,26637,6065,1801,25169,23317
+30230,66151,57712,61026,61513
+30231,63044,22507,21467
+30232,44920,78863,31528,10622
+30233,61509,5454
+30234,50687
+30235,13296,47216,54143,37726,12992,62422,25285
+30236,79549,77196
+30237,32298,42088,61934,65517
+30238,65912,19119,18827,36508,42238
+30239,73592,50762,18432,52833,59573,25041
+30240,62482
+30241,57008,71821,40397,8758
+30242,80417
+30243,10087,56094
+30244,72906,46590
+30245,78090,35223
+30246,53614
+30247,50575,15518,3956
+30248,7934,11439,34582,50439
+30249,56712,11535
+30250,28900
+30251,16347,46236,49807
+30252,58087,69185,70443
+30253,8523,67462,73122
+30254,5674,71646,65115,66684
+30255,26139,45554
+30256,53422,44740,46846,13796
+30257,79220,70671,2527,81393,24946,31956
+30258,75727,9924,23817,64501
+30259,61370,56865,23542
+30260,37853,64333
+30261,338,63382
+30262,3382,80856,11997
+30263,54436
+30264,23586,66725,66309,4757,79152,66150
+30265,17043,52699,76024
+30266,48892,18700,18803,32598
+30267,2592,41626
+30268,12186,59217
+30269,46198,47254
+30270,29094,74912,69274
+30271,78404,54685
+30272,46979,66028,54392,46262,61484
+30273,56467,36673,28607,19493
+30274,53725,70735,10171,42862,29304,35152,19224
+30275,50586,57898,80445,74508
+30276,3459,2969,4032,6472,35316,22771
+30277,63619,11054
+30278,30427,77680,3093,58420,14111
+30279,12503,57396,8339
+30280,32112,66303,10098,35760,58105
+30281,46341,81942,64071
+30282,16186,11062,12805,25052,79015,29527
+30283,68803,44317,58251,79875,64793,51672,41477,38108,60447,68030,34783
+30284,50326,32490,65708,6717,69029
+30285,75826,11372,19035,39376
+30286,26832
+30287,65134,33081,19769,47269,18367,74426,32512,18386
+30288,45335,22727,48551,19200,20496,53507,16215,76020,41699,56742
+30289,21520,57511,48247,45935
+30290,63174,14650
+30291,54631,27447,29694
+30292,28577,6341,43034,48843
+30293,58829,4912,51424,58350
+30294,49618,15169,24222,46062
+30295,61348,41641,81828,43916,34011
+30296,4178,52344
+30297,3089,55654,54996,894,7633,55490,65888,17457,2306
+30298,70494,22600
+30299,52798,79173,74070
+30300,53305,72146,52220,78889,65372
+30301,52824,16636,22629,28865,20281,22157,70083
+30302,23964,10723,38293
+30303,22998,50620,15934,15706,14523,40808,62372,63040,59486
+30304,2333,63374,22523,27147
+30305,66956,67462
+30306,23499,4435,9951
+30307,8439,24607,66488,3391
+30308,81422,72661,62336,63438,42675
+30309,50462,74824,12711,60185,41001,35951
+30310,11354,31342,35330,64007,26989,8428
+30311,77650,29860
+30312,72231
+30313,3974,42022,36199,76925,7711
+30314,18374,44646,69152,60358,79845,13699
+30315,56663,7113,3439,42101,42519,75897,4645
+30316,18659,71898,10405,10814,32612,81921
+30317,18691,22648
+30318,14693,61956,16670,7005,16377,74610
+30319,2283,69482,70020,74439
+30320,21311
+30321,18920,5181,23942,63812,61738,50580,26291,60757,78388
+30322,73384,13949
+30323,12399,33301
+30324,60112
+30325,75012,17562
+30326,78525
+30327,24868,5517,17455
+30328,63120,11319
+30329,7290,37604
+30330,53790,66180,81783
+30331,8844,15319,60473,17001,73601,27075,65768
+30332,59195,8087
+30333,81901,63857,37875,47805,735
+30334,56206,79609
+30335,79046,10087,54299,59013,754,20386,14871,42413
+30336,24682,16661
+30337,46717,23048,22050,36669
+30338,76322,31560,42917,65869,46949,16106,69766,10394
+30339,33139
+30340,21497,10463,3687
+30341,62831,65268,11407,67508
+30342,27869,30215,45940
+30343,619,4755,44111,49127,15617,49176
+30344,51435,10165,63351,42800,55867,567
+30345,73427,12971,47880,64490,34446
+30346,36304,54974,53480,31560
+30347,53566,11724,41707,38143,72157,43819,49126,70141,75348
+30348,2102,40525
+30349,8267,65281,80393
+30350,36652,16370,74465,24449,44409
+30351,9252,10314,15201
+30352,29606,69957
+30353,2685
+30354,7651,77040
+30355,52387,65427
+30356,24205,59766,14119
+30357,7851,73642,15892,34054,38512,15401
+30358,41264,81475
+30359,43569,13265,29980
+30360,30289,5310,4302,8375,11975,20674,27597,78930,65749
+30361,6237,63670
+30362,62932,69037,43818
+30363,13411
+30364,41974,51694,7364,63554,51589,32585
+30365,12400
+30366,24792,26877,47372,57661,78818
+30367,14106,53674
+30368,41118,67178,8834,63481
+30369,51050,1985,24877,67513,68107,62436
+30370,76809,76072,56978,44976,4628,50262,78661
+30371,42324,16214
+30372,9446,2742,57208,46335,78189,36126
+30373,4932,50709,58053
+30374,64201,80721,3880
+30375,51495
+30376,38973,1140,81158,45937,78068
+30377,17902
+30378,45283,56707
+30379,15906,33970,2963,39727
+30380,8893,62358
+30381,33102,66033
+30382,42084,53898,81664
+30383,22255,68753
+30384,16949,29644,6566,8056,66730
+30385,45201
+30386,21795,74337,31926,550,59583,44033,41715,29749,60409
+30387,4060,70742,13768
+30388,50588,53991,75608
+30389,37602,61025
+30390,69232,79633
+30391,77847,81924,2088,42945
+30392,33521,79625
+30393,77241,77617,69771,3852
+30394,21607,67280,48219,45121,49537
+30395,50266
+30396,46897,61915,45153,58725,164
+30397,13511,15389,28121,17971,65723,38458
+30398,55242,63993
+30399,31733,15826,68131
+30400,11394,77809
+30401,39363,81598,14194
+30402,58719
+30403,72620,42226
+30404,79443,57675,3028,58627
+30405,52612,50040,40300,14236,57055
+30406,75523
+30407,73089,22016,16790,38292,58852
+30408,44306,45739,42171,30868,78463,19876,39553,9238,33574
+30409,44960,21391,20147,81568,5586,80525
+30410,667
+30411,54698,29175
+30412,55081,28191,21647,48221,78888,79240,55433,45907,12656
+30413,21056,76319,40336,4677,48729
+30414,80866,35362,65529,39692,26971
+30415,72757,19514
+30416,15460
+30417,74140,56917,57574,74456,42352,20244
+30418,44317,64930,9754,45506,32018,1701,69378,11383,26030
+30419,11102,42603
+30420,62904
+30421,63280,74117,61320
+30422,5725,15837
+30423,4976
+30424,76992,37491
+30425,33719,55306,1135,17945,4115,10266,71454,2990,8170,25585
+30426,61113
+30427,73579,62661
+30428,45624,21448,79592,23686
+30429,22783,67303,74632,60790,5861,54436,51926,32056,51612
+30430,63435
+30431,10248,26208,34094,57342,54744,14129,23772
+30432,51338,36509
+30433,65557,73309
+30434,79165,18750
+30435,57974
+30436,62161
+30437,62403,66420
+30438,27355,62715
+30439,30706,25899,36280,13094,42639,60710,21122,36723,25510,45935,70444,79880
+30440,62532,52150
+30441,43176,29155,79855,46590
+30442,63536
+30443,15614,18072
+30444,58453
+30445,69774
+30446,62797,66083,98,29009
+30447,12772,64834
+30448,6509,24380,76023,3376,44953
+30449,34606,485,23071,2379,73359
+30450,42226,65621,36837
+30451,17452
+30452,9677,49132,50525,11955
+30453,20140,65579,61205,43623
+30454,41092,27210,9900,47124,62504,30782,21587,55357,36497,64714
+30455,22845,55368,71033,11088,76290,72495
+30456,61726,23736,17714,43392
+30457,32067
+30458,7442
+30459,48522,60987,10024,34043,75764,58153,11604
+30460,29542
+30461,24055
+30462,65259,71094,75242
+30463,27848,42478,10291,52711,31478
+30464,3330,26103,53663,77368,51038
+30465,77323,80137,20598,43182,42409,51672
+30466,31705,38655,18022,1589,65277,47470,31672
+30467,46937
+30468,32503
+30469,26734,24581
+30470,10100,35094,29892,45017,17014
+30471,77940,54149,587,63186
+30472,71862
+30473,79909,58298,13600,57107,9303
+30474,70063,70589
+30475,60228,70433,5150,5691,16784,16852
+30476,75555,17865,44900
+30477,51790,47944,67889,52268,9059,4313,22944
+30478,8514
+30479,61342,50798,73426,16524
+30480,24775,61820
+30481,29778,39469,6758,47487
+30482,31763
+30483,74058,16684,8012,7845,25221,17476
+30484,22222,82010,12968,73185,8645,28683,11463,27748
+30485,43260,42586,69308,16590,67115,55425,31299
+30486,55474,81023
+30487,13267,18195,16890
+30488,14891,1410,53690
+30489,45359,78516,70366,19282
+30490,60331,34849,51268,30795
+30491,10303,81162,81538,7976,27979,80280,7240
+30492,4432,52207
+30493,13412,47095
+30494,31618,54296,62460,26994,12732
+30495,55947
+30496,81800,35629,9951
+30497,46129
+30498,75966
+30499,30363,70138,34833
+30500,31595,20719,55244,26560
+30501,30353
+30502,64748,47829,71209,5943
+30503,40794,24665,32127,21787,56225
+30504,48530,51305,63012,20508
+30505,42123
+30506,66993,81092,12230
+30507,63537,39260,14830,80881,24563
+30508,67922,12015,61521,11499
+30509,79209
+30510,44348,34333,79437
+30511,12944,11631,35926,52814,71398
+30512,51954,32847,62231,11860
+30513,72362,36197,4047
+30514,51638,49467,45441
+30515,66350,62265
+30516,77954,26550,67577
+30517,70064
+30518,49270,36739,31702,35653,17058,19426
+30519,29607,11267,64464
+30520,75161,58233
+30521,40563,71877
+30522,11845
+30523,37644,15865
+30524,15732,39559,41014
+30525,24253
+30526,56418,52130,49193
+30527,9498,81265,40406
+30528,67814
+30529,61168,1926
+30530,77784
+30531,36552
+30532,40058,57378
+30533,53198,20118
+30534,23817
+30535,77550,76990
+30536,53509,45704
+30537,71717
+30538,42448
+30539,61506,38547,30478,51110,6705
+30540,48149,36566
+30541,38660,17810,67908,69195,10006
+30542,22169,20388,60753,68882,2361
+30543,79603,35475
+30544,81676,56035
+30545,561,11558,62339,56201
+30546,48341,19822
+30547,31025,10986,38143,24816
+30548,45594,8502
+30549,7626
+30550,22665,67058,28761,64215
+30551,43220,570,8175,9439,52513,65950,6457
+30552,32005,28218,59004,5859
+30553,23235,51363,72640,34090
+30554,50810,37246,35394,53362,12574,48549
+30555,72467,58361,33643,39022,55882
+30556,81506,39924,61085,51245,16380
+30557,16823,14810
+30558,71835,81449,81656,41758,44349,57462
+30559,4162,39008,32306,52385,81010,44467
+30560,50098,49053,4918
+30561,12669,25156
+30562,50653,2669,56727
+30563,29692,53818,9532
+30564,42363,24145,25511,8867
+30565,16881,80781,81020,44098
+30566,30102,14979,31032,46432,26552,34894,24854,39216
+30567,32298,58928,4388
+30568,57188,50298,34697
+30569,46043,4110,29841,31176,42514
+30570,79383,51629,75279
+30571,56007,5510,15727,44893,59981,18566,66407,79317
+30572,31809,54797,50626,63675,43495,39101,82151,595
+30573,65623
+30574,76292
+30575,50938,64629,31746,54034
+30576,42055,24684,1847
+30577,80489,75365,58857,47146
+30578,12284,64001,7150
+30579,33183,56374,7659,76963
+30580,62458,77207,56234,16619,60230,81631,3824
+30581,41034,24154
+30582,13830,21238
+30583,8200,74376,48008,4411,54332,48578,18587,54237
+30584,5617,31720,30978,77210,79433
+30585,46803,60767,68163,78353,40129,7425,56755,66430
+30586,66315
+30587,11038,6664,55166,3475
+30588,24909,80384,53300,81671,32734,48967,62239,23028,45888,45022,40718
+30589,6310,31006
+30590,44909,39921
+30591,11885,4389,35863,9974,66114,61317,22918
+30592,72922,3232,69033,2220,2816,30985,13052,36707,54104
+30593,41487,51976
+30594,51672,40613,37278,15138,7927
+30595,52648,8533,76388
+30596,50254,9509,80067
+30597,5363
+30598,61525
+30599,47160,31442,15730
+30600,11732,71767,5246,41785,36547
+30601,3885,60306,71066
+30602,22487,17522,42986,45101
+30603,77517,73006,64449
+30604,23755,6938,56380,70287,63675
+30605,60306
+30606,24956,44857
+30607,78579,22912,14725,65930,69396,54472,64299,53389,79334,42159
+30608,32796,65254,20885
+30609,46249,15092,73540,55996,19192
+30610,65769,6419,16433,76709,14468,51021
+30611,81255,81576,20803
+30612,41843
+30613,24905,22636,59409,17563,81981
+30614,31460,40327,78357
+30615,49827,13041,53878
+30616,69837,33608,64139
+30617,2056
+30618,26516,26392
+30619,4919,25444
+30620,36256,82018,49318
+30621,80887,10290
+30622,35071
+30623,2734,44919,71183,19570,66984,11556
+30624,22408,56588,44357,65211,42009
+30625,37640,29394,63962,68758,63875
+30626,15913,47214
+30627,69423,22877,35917,4240,55695,51640,56727,7814
+30628,17183,52734,2355
+30629,61645,15439,42118,22553,67952
+30630,55768
+30631,36396,14140,61849,49326,52662
+30632,687,63982,81571,62985
+30633,40610
+30634,36982,236
+30635,30339,34253,12067,47804
+30636,27322,36520,5765
+30637,59852,6234
+30638,34960,10899,7921
+30639,43129,11272,79570,45193,10687
+30640,67720,13191,10731,42293,40272
+30641,57971,41180,6776,38522,28620,4683,55909
+30642,64459,12441
+30643,14991
+30644,36344,18503
+30645,14346,68486,23619,73598
+30646,79886,73662,21585,21383,35256,36186
+30647,18648,44984
+30648,1128,16261,63281,13072,58710
+30649,527
+30650,30027
+30651,35742,60297,45378,1852,11062,43329,1087,3514
+30652,33818,61696,46939,51185,31596,79265,14790,53766
+30653,50530,35627
+30654,41456
+30655,78266,64565
+30656,71804,80553
+30657,3557,1296,44630
+30658,4499,58454,77003,20282,78591
+30659,50114,1265,61407,61998,49018
+30660,40237,12410,11968,12916,6422
+30661,45313
+30662,75636,53373
+30663,9746,50714,15955,1301,59928,27489
+30664,47296,35516,4809
+30665,50033,72408,24220,23836
+30666,7871
+30667,4912,37678,4854,63058,4139,44906,22135
+30668,39278,1535,69443,1811,39949,49980,61586
+30669,73907,56041,28693,40377
+30670,61327,2486,25590,55230,11016,31786,30806
+30671,57167,65594
+30672,41808,71133,49156,69682,20743,75083,14233,63135
+30673,32448,76316
+30674,60684,59027,42135,33189
+30675,6002,62503,49590
+30676,65870,54,58559,67041,51177
+30677,58113,32651
+30678,22078,9338,48191
+30679,39378
+30680,50649,54094,21194,43845,39904
+30681,28641,15229,2199
+30682,67093,54885,72655,36550,24953,2664,6466,35965
+30683,38092,17404,35337,68049
+30684,52952
+30685,58317,46344,39712,73678,68416,78371,54260,30279
+30686,32226,36460,47269,60467,55998,50998,81304
+30687,70672,57261,50645
+30688,42237,69365,10473,16026
+30689,47582,34776
+30690,78221,54875,81285,14635
+30691,70805
+30692,32930,38069,18793,28621,6499
+30693,34536,12794,755,78181,71672,64927
+30694,39045,38297
+30695,53305
+30696,41456,39768,20341,63758,8707,24970,16467,80667,63118
+30697,29481,69151,76786,44005,55832,79772
+30698,35969
+30699,48330,77262,7969
+30700,39494,6547,33840,81777,18389
+30701,72218,74238,35331,78861
+30702,56281
+30703,37308
+30704,3848,37295,46417
+30705,55279,5394
+30706,74405,30858,3432,74884,55914,28164
+30707,7547,76381,28687
+30708,21227,66444,7490,21425,44730,59940,719
+30709,64559,61828
+30710,32227
+30711,8406,40872,5998,25261
+30712,32334
+30713,10421,70162
+30714,74255,6460,73688,56123,48525,22908,67656
+30715,27891,36915,61857,54100
+30716,25782,69886,36164
+30717,22128
+30718,31139,1511,19353,36369
+30719,2702
+30720,62185,30947,9079,40233
+30721,75408,22441,6817,34830,19323,72701,35824
+30722,40672,81975,18103
+30723,6932,37803,55409,32729,78950,78750,74267
+30724,67741,7971,16250
+30725,51910,15838
+30726,3526,31057,42055,50476
+30727,36996,64326
+30728,78867
+30729,78859
+30730,62216,42115,22268,60811,4998
+30731,70828,18528,25572
+30732,77313
+30733,1083,20732,62288,27294,35855
+30734,56697,33608
+30735,16406,58047,22214,63717,61755
+30736,20539,37136
+30737,42226,37265
+30738,79093,16438,7585,53098
+30739,31367,6328
+30740,41937,50613,11504
+30741,12342,35610,18673,39983
+30742,55207,60370,37284,43724,3396,58895,21208
+30743,191,31725,13114
+30744,16102
+30745,62331
+30746,40802,42881
+30747,71193,63323,20525,11607,57764,52627
+30748,60413
+30749,61437,50417,3749,8143,30674
+30750,53714,21487
+30751,36222
+30752,51772,49505
+30753,18868,60105,35430,53182,37,29719,16069
+30754,66366,17184,7447,45833,49245,77825,73192
+30755,42047,56491
+30756,38311,73734
+30757,51638
+30758,54802,15737,16008,73179
+30759,81671,45247,60875,44303,74329
+30760,79848,33102,10080,17518,59835
+30761,20680,70911,73866,33867,19726,35065
+30762,27326,79562
+30763,21107,51756,58062,43698,58159,61070
+30764,30872,67389,82039,57206
+30765,2515,58615,1197,58116
+30766,15927
+30767,21342
+30768,12943,31917,26372,72707,26479
+30769,5558,48735
+30770,78039,55172,27473
+30771,46478,81148,23488,33099
+30772,46715,36041,36060,46905,35864
+30773,1837,80651,76849,15791,30673,49784
+30774,14778,26081,53745,73486,18685,12394
+30775,53320
+30776,61300,44163,11929
+30777,3189,43625
+30778,3806,43085
+30779,61130,9751,67445,1004,17562
+30780,21417
+30781,80345,56237,24872,18345,74563,40233,31370,7726
+30782,2979
+30783,81380,61318,56398,65323,16586
+30784,81023,17139
+30785,29361,34116,4064,10736
+30786,14745,28123,13052
+30787,43383,29432
+30788,51226,71357
+30789,18824,4097
+30790,46192,60778,79772,20436,60943,71329,11948,19340
+30791,28074,50795,58171,73313,2971,33107
+30792,33465
+30793,42070,48080,60410,53302,17756,75081,25841
+30794,19651
+30795,32588
+30796,64750,81168
+30797,33010,63811,45237
+30798,75526,40242,32391,24625,44998,74589
+30799,36571,8201,49083,43575
+30800,35151,31314,65165,54543,68033,47131,51002,37996
+30801,16409,53690,43469,39196,4356
+30802,50545,40112
+30803,48919,70096
+30804,42326,26334,63675,46641
+30805,52042
+30806,18059
+30807,22256
+30808,68925,50207,51355,70486,51027
+30809,46559,79115,4502,58419
+30810,11964,56629,33225,62901,82142,34134,76475
+30811,27837,59516,67116,41995,64724,44009,2261,43350
+30812,3356,15522,36423
+30813,386,14717,63086,40281,58999
+30814,45654,63069,72116,43321,78082,17072,55296
+30815,18797,4661,56822,34613,5875,57790,48427
+30816,1904,41837
+30817,81245,51231,1975,3640
+30818,757,16791,30426,67428,62242,11133,8755
+30819,52793,46289,19252,10978,19712,45053,50308
+30820,33636,50066,46243
+30821,72158,74521,33965,39036,15591,79078,49982,9493
+30822,21225,18711,1142,62510
+30823,10782,12831,30496,5973,73660,988
+30824,77366,14056,34683
+30825,46145,71700
+30826,10405,47809
+30827,59977
+30828,56869,26434,47337
+30829,67884,54987,21990
+30830,3411,46337,56894,58933,22173,67812
+30831,43355,21814,61842,20287,65977
+30832,12138,61251,23385
+30833,42878,3068,39569,58478,11518,35381,77360,13372,39428,20594
+30834,78448,81419,33039,49662,48469
+30835,74495,33471,26323,38725
+30836,54829,31201
+30837,54877,57853,31066
+30838,36995,30246
+30839,56455,40085,50020,4656,14369,51765,63541,32614
+30840,76305,34218,39384
+30841,9095,38453,54540,27082,6097
+30842,9506
+30843,17901
+30844,57848,61617,17116,20778,48677,57631
+30845,67201
+30846,44130,68922,43997,64657,16398,36756,67490
+30847,72745,26040
+30848,9007,72425,25632,14993,51085,16516,7577,2034,76376,67546
+30849,15725,9273
+30850,49300,7520,8036,60731
+30851,73773,64948,36988,9004
+30852,76607,20806,69669,22525
+30853,44260,43967,11608,73134
+30854,51390,34260,43111
+30855,33230
+30856,69070
+30857,7792,16478
+30858,31368
+30859,69031,74446
+30860,48245,6782
+30861,30794,65640,2723,13155
+30862,43610,6164
+30863,81346
+30864,69858,73830,21886,14442,35398,69759,55369
+30865,28104
+30866,57933,79824,67795,3336,70273,54832,31672
+30867,67640,13517,44443,63746,64120
+30868,57884,55281
+30869,7163,33073,37543,43507,38237,55823
+30870,28762,30589,16018
+30871,32965,61601,52391
+30872,6432,56534
+30873,38806,9041,33564
+30874,19863,29992,20108,5781,47064,79721
+30875,64706,24632,60172,42652,4915,60791
+30876,69282,81433,18476,5654
+30877,15244
+30878,49254,28803,22761,54669,49886
+30879,15840,8087,44466,32136,24261,43954,78184,78989
+30880,78322,278,20440,26570,37886
+30881,40563,180,64614,57065,39341,1218
+30882,41951,21782,3038,25288,62126,17210
+30883,64925,23925,56930,48631
+30884,69493,23766,42026,29744,73019
+30885,81545,52541,79943,19285
+30886,79884,14416,10061,76139,70482,6412,81602,58447
+30887,22390,81085,79734,6853,41261,76344,69214
+30888,34377,65564
+30889,6333,80206,44620
+30890,40796,52646
+30891,57199,80213,76023,65814
+30892,18189,17293,33343,25810,63920
+30893,35313,7657,5748,24339
+30894,4718,30086,40153,68186,51753
+30895,41732,67625
+30896,12006
+30897,3410
+30898,8928
+30899,11280,41301,18246,81310
+30900,37735,33167,45328,53081,26514
+30901,31201
+30902,44552,33154,55260,60479,78240,59216,51826,8635,51053,35291
+30903,47913,47007
+30904,69229,80449,81302,29890
+30905,79964,59408,71447
+30906,22588,56921
+30907,82117,35824
+30908,63626,24970,54407,12698
+30909,71005,26706,55320,2381,58589
+30910,25544
+30911,78576,36372,55889
+30912,9684,21090,79586,33380
+30913,62973,4389
+30914,47062,2691,29838
+30915,4798,56709,27994,69703,33492
+30916,56663,7852,29391,29016
+30917,48276,54330,37673,22886,1955,18139
+30918,69092
+30919,39399,2831,35117
+30920,34776,29419,40851
+30921,41884,37409,66181,54729,50329,38665,6235,23011
+30922,62555,43056,76954,73617
+30923,62303,13158
+30924,18241
+30925,9213
+30926,69142,69143,13413,45536,68354
+30927,33868,3210,54045,81766,44240
+30928,61205,14458,74189
+30929,23365
+30930,32266,68426,25138,22843,23402
+30931,66216
+30932,25492,66990,16175,71005
+30933,65806,76314
+30934,3572,73116
+30935,77824,16564,40253,75470,57116,35606,43699
+30936,1288,16867,66411,30236
+30937,24742,72966,32900,7640,27373,77796,63830,22668,19553
+30938,67890,55986,27568,40292
+30939,6868,67081,15999,34519,30550,72429
+30940,70066
+30941,59300,38087,14627,50309,37197,63837,30978,34370
+30942,37446
+30943,77402,16627
+30944,35787,81963
+30945,73773,56979
+30946,43066,77003,13734
+30947,36256
+30948,39036,53382
+30949,18843,9711
+30950,79428
+30951,7168,183,35166,32081,48694
+30952,62016,18806,35719,68424,63533
+30953,28044,78541,23369
+30954,43444
+30955,52807
+30956,20189,36109
+30957,26384,5040
+30958,37329,46329,79064,6555,2493,80667,41808,37326
+30959,56869,23013
+30960,66841,31322
+30961,45822,36591,11997,30324,35382,35817
+30962,45914,21034,80248
+30963,34403,24258
+30964,24095,3552
+30965,31422,11945,13827,66804,38448,59655,35561,21431,43956,17425,62059
+30966,4748,56194,59128,63761,13201
+30967,18762,16335,16388,30991,74843,49238
+30968,44324
+30969,13828,52807,23900,34398
+30970,12860
+30971,64487,13119,79148,16643
+30972,10059,17940,79600,51379,30066,23944
+30973,58350
+30974,81143,68803,67843
+30975,36714,7200,25177,34570,74558,22726
+30976,10223,29498,9262,36398,72530,28838
+30977,75075,19070,21366
+30978,36120,80425,1374
+30979,59586
+30980,38628,79581
+30981,28756,20657,39442,5758,16756,42977,17651
+30982,29956,46317,50587,10786
+30983,20375,38086,58350
+30984,67874,71714,73276,77751,77622,52346,12997
+30985,20317,20886,73743,53354,18540
+30986,15384,16568
+30987,9640,34056,55166,12749,39366
+30988,17691,75458,12372,81528,23501,18652
+30989,46871,74233,66564,6669,28069,20263
+30990,61559,79312,16308
+30991,14184,973,51086,69502
+30992,61604,64299,64419,38757,66732,8513,17045,19757
+30993,59680
+30994,29797,41370,49520,58745
+30995,80701,1903
+30996,15365,11430
+30997,34774
+30998,27574
+30999,52917,59766
+31000,19547,69812,13217,23801
+31001,4531
+31002,16202,47940,62801,75051,79547,40900
+31003,10458,12614,68848
+31004,70890,56014,66415,39096,29001
+31005,68618,44895,38182,59334,24265,35631
+31006,34066
+31007,81360
+31008,35209,39736
+31009,17117,4891,81593,40961,12738,40872,26741
+31010,35971,64000,12926
+31011,25282,11081,15613,32457
+31012,4515,13051
+31013,75161,50320
+31014,75511,28970,6215,72165,38118
+31015,24864
+31016,63496
+31017,6487,12709
+31018,46989,78529,35486,66479
+31019,61601,37659,79303
+31020,53207,16361,76761,52235,35564,22517
+31021,17247,41053,60698,34112
+31022,15087,2100,55376,14650,7652,43434
+31023,74907,15997,53974,71394,48363
+31024,80877,35819,27902,36486
+31025,28291,12087,12191
+31026,11354,33272
+31027,364,16154
+31028,57631,72362,52564
+31029,78913,7105,47788,68789
+31030,63172
+31031,42064,37978,26406,21809,81544
+31032,69866,50278,49973
+31033,4922,14288,74043,72302,28373,17576
+31034,35231
+31035,66422,14748
+31036,79253,16569,22272,49041,1934
+31037,20780
+31038,19153,31441,79585,44698,15229,66163
+31039,41071,31339
+31040,28047,40558,8628,47693,34531,30060
+31041,5249,66771,18752,61558
+31042,23982,75498,77755,73588,79754
+31043,23824,42799,78451,8461
+31044,49304,38785
+31045,57779,50908,31876,23604
+31046,5410,9629,31433
+31047,59676,77911,57205,20960,23448
+31048,3573,49597,2280,5262,33938,16906,54666,49430
+31049,73531,81443
+31050,79474,64119
+31051,36972,25439,4699
+31052,32683,73279,79838,71353,7941,26009,45694,3621,67433
+31053,36974,6642
+31054,44637,57845,26481,71244
+31055,77804,40101,30913
+31056,20291,77275,37814
+31057,67005
+31058,19959,18777,2003,4213,7139,50299
+31059,4750,929
+31060,36581,16104,16497
+31061,17895
+31062,52919,78002,46938,5543
+31063,65447,17694,61453,647,49569,74480,76298,61314
+31064,38804,55428
+31065,41996,14103,8296
+31066,42272,16937,39404,54571
+31067,56147,72270,38584
+31068,77196,38574
+31069,77012,48127,62935,2891,34770,8558,42865
+31070,79787,626,36546,35268,30618
+31071,14735,29987
+31072,80428,30325
+31073,76108,82056,4324,16295,69790
+31074,26316
+31075,12425,66735,54274,4703,27748
+31076,47767,47279,75846
+31077,61950,53890,40409,39076,35743,40168
+31078,67563,26180
+31079,64259,12901,80499,56097
+31080,31577,45374
+31081,37876
+31082,81971,69649
+31083,69335,57040
+31084,51305,26812,8611,9680
+31085,50432,7240,81829,70191,57119,62635,66574,17827,60202,69391,14370
+31086,80968,40452,49514,12314
+31087,34669,6891,38626,39957,5462,31173
+31088,13612,5971,58937,74713,52159,55649
+31089,31134,44758,63868,74387,29736
+31090,19189,25838,55305,40129,61439
+31091,69494,15725,56237
+31092,8576,849,42826
+31093,61676,41042,20490,27017,78816,37939
+31094,19344,11565,12609,23071,69070,5035
+31095,39172,56907,49640,34974,46349,40727
+31096,72555
+31097,60208,54179,17497
+31098,9106,25993,4978
+31099,49652
+31100,69525,16508,25695,50492,5408,25231,46844,7649
+31101,49585,45892,48816,71467
+31102,31441,12199,36044,34651
+31103,6334,44661,24759,49877,44028
+31104,73007,26442,33559,12987,24759
+31105,17703,75216
+31106,19693,65320,33114,44961,42626,16068,81686,10945
+31107,60263,7504,5511,68019,80062,59863,5590
+31108,37379,41271,30194
+31109,81500
+31110,40561,62690
+31111,1569,23334,37990,4565,42214,81320,44495,54375,40058
+31112,80377
+31113,28654,30162,46316,57234,30173
+31114,38805,51985,21069,69289,72881
+31115,58567,11244
+31116,29122,42675,19913
+31117,67171,18480,62491,34891,77704
+31118,54231,25076,72830
+31119,18831
+31120,14559,2087,81789,10449,65817
+31121,69769
+31122,19941,35978,73326,64184,64362,32553,7280
+31123,70539,23457,24634
+31124,77275
+31125,24452,21865
+31126,17215,33356,60264,52879
+31127,1566,59824,14476
+31128,70005,54658
+31129,61438,9010,55999,6680
+31130,54075,65210,15965
+31131,1258,7834,23962
+31132,65048,23463
+31133,13071,61531,25901,20466,22010
+31134,29272,31201,78012,41626
+31135,3609,3207
+31136,37120,43376,46677,52842,77896,58801,18643
+31137,76616,73928
+31138,62343,47547,65982,5233,36860
+31139,72151,41045
+31140,47333,71546,76342,30724,14784,56059,52031,53712,51509,56446,71090
+31141,8225
+31142,36792
+31143,62776,79949,37368,66968,47786
+31144,2930,39675
+31145,67594,3989,23077,72437
+31146,26964
+31147,13306,3870,57261,35865,27424,42851,75248,54135,51961
+31148,81649,2627,69600,13731,12788,73928,20138
+31149,79559,4674
+31150,19968,64333,65205,8064,71749
+31151,76430,75465,668,22013,31467,7492
+31152,53551,76892,52429,23496
+31153,13379,49473,54073,74588
+31154,60504,52966
+31155,17439
+31156,20334
+31157,57224,47941,65006,23245,791
+31158,69631,508,74720
+31159,34751,13822,41185,68634,77139,24659
+31160,64879,28059
+31161,4679
+31162,71663,1253,9685,6796,16869,17454,33612
+31163,24721,45384,44647
+31164,77402,41657,2681,5185,64207,18232,66848,7095
+31165,64758,4268,12133,7996,61617,10092,2866,26724,46701
+31166,45766,41370,66392
+31167,3506,51212
+31168,20860,16272,8433
+31169,56549,59379,6468,72884,24546,66983,19093,4801
+31170,51466
+31171,62058,80066,28211,80462,56378,40510,60152,13861,12564
+31172,24627,80469,63770
+31173,59867
+31174,76105,68503,70256
+31175,68930,39637,31577
+31176,31439,15325,70947
+31177,48207,69182,64611,56340,38203,67095,28884
+31178,60556,35562,51894
+31179,18291,34377,620
+31180,60919,2400,75525
+31181,52814,39999,17286,81524,29306,50710
+31182,63479,38024,17586,15027
+31183,11678,710,14131,17008
+31184,31620,39827,35262
+31185,55298,47150,81737,47945
+31186,60880,63564,10777,43607,8101
+31187,72985,65890,77006,22431
+31188,52949,76482,30544,62465
+31189,71122
+31190,42847
+31191,54108,35940,9167,40486
+31192,40643
+31193,16814,21155,29168,80122,17165,15048
+31194,27186,65048
+31195,73331,62140
+31196,62973,34320,71604,77251,39123,64753,65580
+31197,31006,61642,50112,59542
+31198,58026,47457,60940
+31199,36002,63296,30529
+31200,16222,21987,64769,36668,41835,53948,33513
+31201,70826
+31202,33997
+31203,41954,59228
+31204,5593,1103
+31205,2654
+31206,22536,13120,23204,81175
+31207,21534,47619,11363
+31208,30827,77089,37553,1400,41766,72425,72232,37550
+31209,76991,6056,10836,8937
+31210,4656,28684
+31211,16125,18509,19024,47770,3346,3061
+31212,76209,9644
+31213,32345,76258,39693,56979
+31214,49381
+31215,73047,14160,6616,40822,64224
+31216,47920,13862,32530,47822,19966,47770
+31217,67534,31412,73396,77614
+31218,51745
+31219,62591,55013,5654
+31220,31519,57038
+31221,21548,55298,6006,14228
+31222,56255,15361
+31223,66397,35672
+31224,27464
+31225,19753,1498
+31226,12696
+31227,73232
+31228,51828,23365,5565,5399,70547
+31229,39590,16999,77579,52971,29957,5418
+31230,23327,46517,31279,72009,46698
+31231,33236,61738,54578,57640
+31232,58149,30525,58940
+31233,37575
+31234,38109,6815,66966,68714,68748,14929,36804,60679,12778,71296
+31235,22362,16430,49826,81901
+31236,28869,51588,47154,70445,58852,60438,47069
+31237,72140,16451,42749
+31238,75899
+31239,27597,44204,35473,44518
+31240,6380,24025,12773,9673
+31241,1007,48818,3550,49511,72182,21545,70331,56938
+31242,23089,26333,47752,60049,70030,21601
+31243,58001,7257,48400,76790,67912,40892
+31244,68429,28715,31970,41817,5717,4755,69889
+31245,11250
+31246,64991
+31247,66628
+31248,46845
+31249,4149
+31250,70556,46160
+31251,81699
+31252,61828
+31253,54005,36905,74481,76921,40340,48431
+31254,46347
+31255,39382
+31256,18483
+31257,59776
+31258,80335
+31259,40506
+31260,18526,39815,55885,8623,32506,52339,13547,27820,77993,73831
+31261,75845,68627,44807,59546,75606
+31262,18877,78365,21387
+31263,56511
+31264,19557,71943,74771,34398,66419
+31265,36013,68498
+31266,35137
+31267,70189,27275,632,6847,44112,1769,64303
+31268,20036,45080,29070,65979
+31269,27116,21915,865,9346,45596
+31270,79987,10959
+31271,69837,29999
+31272,33828,41836,35519,80145,37803,11782
+31273,44316,59380,16207
+31274,43927,60362,34094,35936,13681,7947,57497
+31275,60043,24369,61564,21326,2495,52048,30711,56222
+31276,18190,24200,21557,56321,26182,17082
+31277,42136,12028
+31278,59119,22646,76325,81927
+31279,1146
+31280,58158
+31281,39002,67177,62241,65080,67351,12501
+31282,14501,17111,45782,4079
+31283,25857
+31284,73631,42926,14300
+31285,47552,8203,70387
+31286,45388,76854,17179
+31287,69805,17774,1317,16416,34475,41097
+31288,157,12806,40856,48925
+31289,72733
+31290,3705
+31291,21071,47162,65354,14618,9074
+31292,16064
+31293,3033,81723
+31294,49505,60348,48836,43870
+31295,1281,73960
+31296,24618,10558,29271,17617
+31297,54118
+31298,28728,67814
+31299,18478,51085,76931,73823
+31300,56437,35317,17702,39498
+31301,20897
+31302,33641,47227,78611,39421
+31303,11496
+31304,46185
+31305,7549,31589
+31306,71620
+31307,14310,23956
+31308,1788,40599,51051,24102,40677,57437
+31309,66720,29293,74974,48526,43210,24412
+31310,57451,76064,24354
+31311,33316
+31312,73808,8246,50853,71827,39624
+31313,20152,53116,70201,1091,48138,15571,65275,81966
+31314,64060,28198,70038,37799,5508,61653
+31315,7946,45830,79855,39657,66165,81248,16932
+31316,32622,68395,53022
+31317,8359
+31318,65470,22399
+31319,51482,45124,3542,62169,37878,66394,5051,70997,62131,52683,66594,47347
+31320,19678,66712,80679
+31321,5038,30356,74501,59899,29194,13622,31353,79423
+31322,42328,81737
+31323,49649,68596,8890,410,63359,76948
+31324,19046,81336,3888
+31325,61602,20080,39744,33657,29474,47121,34526
+31326,27057,38941,7285,79907,24302
+31327,4338
+31328,32935,11717,81618,42521,65148,79296,14691
+31329,71978
+31330,61455,72289
+31331,38756,12658,57437
+31332,20713
+31333,69174,19190
+31334,49180,7260,62652
+31335,4052,55548,6669,68655,15556,20342,80184
+31336,72675,19543,48149
+31337,49965,14736,28843,32497,13697,41143,60812,45380,34335
+31338,65775,26228,80335,15452
+31339,66697
+31340,22323,74625,24604,6823
+31341,3984,68474,43573,50983,48925
+31342,15089,13677,74392,52400
+31343,72838,73890,20684,36932,49956,40359,26414
+31344,52913,30903,50413,68409
+31345,30348,3289,22063
+31346,73131,42157,60673,41472
+31347,6226,10034
+31348,74027,77408,68198,70012,68118,61496
+31349,76600,20116
+31350,11859,1079
+31351,57525,36632,20224,16442,81704,11423
+31352,41394
+31353,68599,11783,20173
+31354,14211
+31355,50740,69236
+31356,20740,44215,74852,7894
+31357,28474,47032,74649,60919,33729,14408,30379,51017
+31358,78737,81656,73213,15465
+31359,46480,64754
+31360,12582,54885,26832,59928,72673,75854
+31361,22847
+31362,40548
+31363,44623,1715
+31364,60749
+31365,19146,77905,57306,71372
+31366,49304
+31367,32627,68637
+31368,44706
+31369,80521,71533,4843,63945,5222
+31370,9590,29562,46355,44957,34268,15981
+31371,17948,73786,36071
+31372,30503,20937,57465,36973,65568,42879
+31373,11107,30300,48358,68542,44128
+31374,42382
+31375,60378,55456,34396,14442,19327,78962
+31376,60707,607,10838,2060
+31377,46639,4011,42184,47570
+31378,16794,42678
+31379,30290,58840
+31380,81040,57470,58973,32493
+31381,80319,51519,53160,19360,10381
+31382,70551,77944,50934
+31383,71421,43599,57997
+31384,35624,79903,56090,24026
+31385,53286,5360,13861,21247
+31386,69973,22990,59856,20450,73232,78663,37301,39691
+31387,58067
+31388,47698,14564
+31389,64228,2784,3860,65914,64452,70297,50807
+31390,16279,74330,39564,16966
+31391,60359,27386,74296,78225
+31392,18248,70494,48168,51398,41454
+31393,50350
+31394,56630
+31395,29024
+31396,74564,16689,59540
+31397,64653,29421
+31398,48133
+31399,51355,12708,46556,6388,77957,65256
+31400,1378,51956,81300,46976,57255
+31401,24428,36667,49930,35162
+31402,72580
+31403,79258,64145,76438,69725,59397,56425,9135
+31404,21299
+31405,52895
+31406,12455,61286
+31407,72052,15176,38993,37739
+31408,64511,65182,77893,60957
+31409,28924,65570
+31410,46639
+31411,35454,3097
+31412,9227
+31413,1712
+31414,40292
+31415,61297,7943,73839,65435
+31416,71346,22751
+31417,73715,32961,63434,45980
+31418,36321
+31419,32530,1297,10705,5296
+31420,5132
+31421,68131,71492,52202
+31422,46859
+31423,39120,50384,52602,57910,29549,8384
+31424,66411,10613
+31425,18285
+31426,35830,23120,28872,61062,6732,33089,15007,24516,2910
+31427,78284,56536,52642,60328
+31428,6643
+31429,64032,25571,4019,20812,21684,25670,22642,18466
+31430,10421,32350
+31431,36048,33835,73484,33896,70650
+31432,74240,67710,59469,7771
+31433,68219,78109,81541
+31434,77889
+31435,13132,64198,81010,39556,23786,80780
+31436,8514,74360,35224,30689,22624,30982,63496
+31437,58676,62694,64495
+31438,47337,37076,19660,52448
+31439,56877,18573
+31440,39186,3514,26554,8397,62549,66441
+31441,35787,36689,75578
+31442,75430,39872,17325
+31443,72315,74951,25915,5390,45783,34435
+31444,42053,35692,24581,45954,15498,14934,44878
+31445,36212,68193
+31446,14645
+31447,7806,10866,14374,64315,75238,60842,25584,8848,81212,12649
+31448,13640,56889,44742,69027
+31449,29442,67367
+31450,14832,8614,80427,50088
+31451,29849,78359,54768
+31452,33237,11663,53186,22710,60775
+31453,69386,60454,40198,14615,76397
+31454,43251,3678
+31455,39515,13043
+31456,45359,17729,26078,60314
+31457,22540,40571,78390,47089,43641,33736
+31458,59178,71714,30293,43880,65204
+31459,13034,19965
+31460,73551
+31461,81549,80446,81628,39926,63016,54652
+31462,47245,51215
+31463,18628
+31464,32902,78032,4000,30214,36965
+31465,81085,14735,49480,63913,79566
+31466,4825,39159,25289,81506,60522
+31467,9478,68126,13114
+31468,58563,37930
+31469,77774
+31470,42165,9621
+31471,11489,5292
+31472,41214,60052,75235,19728,44082,32688,42066
+31473,20203,4338,53695,67275,17549,39063,28070
+31474,56747,185,56854
+31475,16568,31099,38451
+31476,40946,72349,52450,11911,53337,69958,80717,6881
+31477,4576,42283,45944,17989,66255,30977,34261,54115,19462
+31478,47365,19708,65764
+31479,32555,18264,40864,36298
+31480,40062,60990,20333,74749,36381,21389,61967
+31481,36873,46004
+31482,56688,39372,31881,43029,69520
+31483,42168
+31484,72050,20581,77999,72223
+31485,71418
+31486,62593,72654,73180,59293
+31487,49550,58427,45136
+31488,62537,14457,22066,8656,62316,51152,58084
+31489,36793,22684,13097,9204,61962,48046
+31490,62690,37506,50530
+31491,61280,42645,21586
+31492,67913,64629,66173
+31493,62832
+31494,12717,7619
+31495,4789,61990,60530
+31496,65302,75953,41397,41962,20829,49522
+31497,43238,33920,9836,25494,73135
+31498,18431
+31499,75325,70589,28156
+31500,25723,45486,62046,39471
+31501,9470,59293
+31502,10555,23995
+31503,68592,34100,46129,27374
+31504,35844
+31505,16330,2355,23270
+31506,24666,62449
+31507,71262,54837
+31508,17789,53786,11925,53782,4618
+31509,36812,64737,60485,47173,32492,45741,70416
+31510,2283,44899,55207,21096,38685
+31511,65918,36787,80605
+31512,38249,47079,71971,63092
+31513,6203,9384
+31514,66880,20014,17183,9905,1715
+31515,56543,79472,54959,7766,54020
+31516,19117,8359,48780,7645,34933,13554,65013,79194
+31517,49683,49274,3867,52489,15453,65263,17540
+31518,18262
+31519,48229,32994,77119,65842
+31520,64690,63185
+31521,8244,3572
+31522,62595,15455,26041,40411
+31523,70890
+31524,49209,67155,61316
+31525,49123,34184,69973,81286
+31526,27684,29642,64071
+31527,6635,49306
+31528,2930,81243
+31529,76894,75143,52363,23312
+31530,35351,68656
+31531,24430,60707,36469
+31532,55739,41794,47102,68131
+31533,28637,37840,33902,74163,71732,21138
+31534,21723,35292
+31535,60472
+31536,34857,71718
+31537,51589,48761,892,35437,24715,71130
+31538,57474,65052,65134,2994,40794
+31539,12270
+31540,78401,25605,17800
+31541,75859,73626,60612,60447
+31542,49711,19736,23,21358
+31543,54680,80874,81090
+31544,39755,53331,72240,49943,30525,39569,69103
+31545,33395,16082,77140
+31546,40185,8431
+31547,34453,1738
+31548,30497,50328,41525,2188,27664,37599,16161,74484,70545
+31549,25547,46509,49396
+31550,10711
+31551,41759,79062,75341,60458
+31552,9273,44252,72745
+31553,39993,26561,56781,42174
+31554,14610,68552
+31555,28299,51514,35051,30581,48538,51832,22290,62893
+31556,13260
+31557,62072,25996,51898,74354,38319,76912,65899,44175
+31558,18784,69166,34526,76171
+31559,15685,11598,28193,26772
+31560,40292
+31561,23265,49764,64749,50611,13226,2209
+31562,11238,9852
+31563,18875
+31564,58450,3555,66710
+31565,2922,65149,3072,40610
+31566,50164,7934,59028,47464,16890,75222
+31567,7544,38012,73614,58559,71550,31462
+31568,6185
+31569,12469,10598,5784,27790
+31570,75010
+31571,44977,14356,36830,6319
+31572,56231,12930,22044,64096
+31573,47239,518,80570,71014,46200,47886
+31574,9382,18262,43339,59620
+31575,63961
+31576,28766
+31577,29374,71921,48353,50781
+31578,17558,75068,40311,57442
+31579,36005,63990,3851,79278,77065,72230
+31580,72851,31576
+31581,49688,60062,2860
+31582,61621,80409,24771,51783
+31583,41913,3494
+31584,71201,16373
+31585,15888
+31586,36847,65143,15941
+31587,78838,34598,19139
+31588,71627,22146,74321
+31589,21740
+31590,15962,61262,54769,14241,22724,49731
+31591,35755,4678,17647,24449
+31592,32195,49932
+31593,30182,52300,22742,35052
+31594,67619,67870
+31595,46621,70907
+31596,337,37410,69675,24111,43599,15699,77829,27113
+31597,67342,13585,14799,76100,30869,66054,54154,66922,75970,49427,51654,46058
+31598,58319,59352,60564,26464,39527,52490
+31599,21054,78838
+31600,49732,36326,58295,15730
+31601,79328,39618
+31602,52912,59403,23798,65571,80470
+31603,3628,57273,80260,39213,70614,44590
+31604,4629,5593
+31605,2261,62917,42847,45115,41548
+31606,81476,27712,57071,14694
+31607,59322
+31608,19243,81541
+31609,68638,60370,23454
+31610,6281,45444,6722,50942,26664,4333,63846,3381,65386
+31611,39285,67146,67524,55483,37018,37697,75461,17317
+31612,37659
+31613,33943
+31614,62877,29928,16182,34862,23431
+31615,3924,65943,2153,28918,25162
+31616,56313,74550,58869
+31617,24098,64137,24609,51449,75484,61419
+31618,32701,1987
+31619,56333,55013,16999,4514
+31620,46608,8835,70443
+31621,6702,60092,8057,41972,6107
+31622,51485,21051,16420
+31623,44838,73554,29431,27709,30973
+31624,43479,66623,57052
+31625,47590,894
+31626,58232,12872,1419,1067
+31627,76963,24529,76512,58042
+31628,38605,12661,10524,66736,9734,69492,65215,9665,27217
+31629,65494,76711,73713,49303
+31630,28809,32748
+31631,10414,37993,3937,52526,43580,35993,44553
+31632,37600,28094,77482,418,56115,54757,40325,33289
+31633,23115,51323,59707,76164,33153,4661
+31634,5679,38272,19969,23613,24850,61048,37334
+31635,66601,9526,44390,49856,4963
+31636,55374,51970,58675,74177
+31637,70589,45809
+31638,43797
+31639,26275,7576,35480,3509
+31640,49149,41822,21060
+31641,45441,81554,22416,33968,36777,4084,15214,23227,40623,39804
+31642,47516,80526,15681,35062,38964,75720,24799
+31643,81909,58539,19214,5146
+31644,53350,81083,30410
+31645,22031,81086
+31646,43041
+31647,79328,5200,475,21056
+31648,66349,55280
+31649,72149,49140,10733,55819,79776
+31650,15290,68980,57534,37245,22890,59738,21392,54809,30245
+31651,19544,43967
+31652,1193,32479,11673
+31653,38789,35264,62017
+31654,5663,38234,9663
+31655,9709,70341,71803
+31656,60970,54463,65872,46320,25676,2205
+31657,62408,22719,3649,11020,46413,8106,13069,13666,44571
+31658,12342,57347,77142,4555
+31659,4154,8983,24069
+31660,41011,19587,56076,72701,70422
+31661,41886,29338
+31662,47291,24872,50910,51427
+31663,60723,6703,74875,54422,26846
+31664,3034
+31665,79769,76620,4117,48619
+31666,24006,51597,2088,64187,34377,3527,4776,80200
+31667,21402,23750,82112,56225,7491
+31668,10285,68743,24536,13975
+31669,50218,9504,51855
+31670,76471
+31671,64653,49838
+31672,57411,50380,71005,13282,59197,74978
+31673,60216,2471
+31674,58508,49690,62122,28338,25147
+31675,35022,77142,19612,8941,51533,79307,33711
+31676,47233,9204,47625,72999,42772,81106,40163,60564,34063,7426
+31677,80303,12071,48102,71438,18567
+31678,55053,3000,13297,65228,31821,28390
+31679,46660,27728,61256,14378,4392
+31680,74895,7829,22084
+31681,38163,5597
+31682,4387,18283,76691
+31683,75037,911,56953
+31684,4055,27798,20438
+31685,82091,65724,45579,36538,58332
+31686,77422,39620,14355,14254
+31687,65181
+31688,45342,47977,15434
+31689,40717,42781,3700
+31690,56116,75019,60990,52516,70251,74412,48629,11927
+31691,16401,35794,4273,4918
+31692,27545,70866,72686,45500,74592,30665,78257
+31693,37299,54335,16027,36389,77182
+31694,1223,14362,70927,74929,49395,3632,33759,21081
+31695,70130,76318,69589,54174,20887
+31696,81303,73472
+31697,80834,76952
+31698,22212
+31699,39062,3697,30492,55933
+31700,6066,23184,76224,62836
+31701,52848,35693,63961,52931
+31702,28961
+31703,20068,14839,60298,27525,79052,27224
+31704,69455,75657,27918,53153
+31705,62314,57348,67129,36075
+31706,65530,41071
+31707,56279
+31708,39575,23775,56725,3030,26600
+31709,61676,23097,32333,81922,54313,41465
+31710,4307,66523,8111,65860,56486,9868,64594,25464,25889,79856
+31711,27266,46417,70954,64530
+31712,48186,80481,18186,11135,40593
+31713,74012,42060,32184,27089
+31714,19931,53292
+31715,47224,17795,30517
+31716,35547,67432,17263
+31717,45186
+31718,28578,72498,5078,64316,18361,7823,11365
+31719,11051,50596,28044,63461
+31720,59459,24595,46332,46103
+31721,4497,37350,36808
+31722,16909,79467
+31723,32406,14785,38967,47279,31329
+31724,2473,12130,6385
+31725,17108
+31726,9634
+31727,10243,60965,49755,72776
+31728,43702
+31729,69804,36720,67738,41796,4732
+31730,31222,36505,37880,17614,14125,25571,44983,38294
+31731,59038,33179,60906,6811,72252
+31732,41923
+31733,37136,68131,49825,41685
+31734,26404,15888,27635
+31735,63296
+31736,74088
+31737,46676,72403,63319,51914
+31738,49558,53495,81932,39988,63939,58491,61724
+31739,44280,624,1013
+31740,48309,32463
+31741,24555,72265,70150,32689,354,68422,5944
+31742,14369,78226
+31743,59584
+31744,38422
+31745,20660,78565,32562,25237
+31746,64850
+31747,12279
+31748,32350,64879,58688
+31749,53461,25552,76318,36251
+31750,29120,33221
+31751,30011,34239,7387
+31752,31090,6117,77317,8937,31936,38464,36700,48261
+31753,25240
+31754,57926,17719,74159,74810,64323,72146
+31755,67863,72132,24942
+31756,68802,79299,36101,62962
+31757,29961
+31758,58740,48807,24317,24558,69952,73088,27169,75488
+31759,62874,25619,41949,72897
+31760,1466
+31761,6023,1452,68721
+31762,39535,21034,70299
+31763,44730,11760,15748,22088,61368,81414
+31764,76085,67549,973,23575,74298
+31765,10425,62492,14167,31414
+31766,34481,54130,11566,8923,1110
+31767,2614,71264
+31768,38254,10750,25372
+31769,79097,32085,2733
+31770,26261
+31771,75449,73833,51514
+31772,64184,46523,8293,66366,18830,7055,27654,4599,49728,67722,28495,3333,55459,17990
+31773,26050
+31774,69862,36322
+31775,30903
+31776,45005,7190,52621
+31777,73167,76134,36092
+31778,6891,51497
+31779,70048,48346,79932
+31780,62268,79557
+31781,76280,20724,76928,75734,54229,15970
+31782,71014,66656,20201,40966
+31783,57623
+31784,6608,12259,77639,24297,49058,56753,60211,26436
+31785,49629,8536,77493,10441
+31786,14965
+31787,37028,74084,22898,42479,60416
+31788,45220,40645,14629,70444
+31789,51722,62160,49603,67209,74456,72116,11984
+31790,71688,47829,29944
+31791,15518
+31792,32721,77830,41860
+31793,26556,44409
+31794,35528
+31795,62725,23817,17669
+31796,29759,32541
+31797,4976,7543,56181,28129,39222,20507
+31798,19830,68650,66911
+31799,3550,17843,74852,17375
+31800,18669,32807,34587,23223,41015,65809
+31801,5538,22875
+31802,76934,7557,1926,11436,48930,21445,55847,11743,3966
+31803,46520,9045,45303,36307,45639,5713
+31804,82079,61061,80232,40124,33381
+31805,25584
+31806,21946,38377,59027
+31807,3827,47736
+31808,33721,56873,11451
+31809,3031,50792,9667,61958,72466,35860,49086,66472,65418
+31810,80847
+31811,81000,7449,8031
+31812,33545
+31813,33635,7860,15394
+31814,16264,26989,4809
+31815,71154,41091
+31816,20028,16168,20246,40006,69400
+31817,68509,52863,44671,36728,76424
+31818,18525,22634,3447
+31819,33660,31838,27155
+31820,37235,58966
+31821,21512,43106,31364
+31822,67263,26175,35588,73460
+31823,14142,4959,9603,61920,68335
+31824,30265,9263
+31825,3588,10870,4920,18563,30228,19472,61667,60727
+31826,69347,65783,38134,18811,73694,71493,53298
+31827,34151,23463
+31828,69600,21403,41424,20469
+31829,78418,77991,100,11931,52346,25588
+31830,4603
+31831,61439,22035,80721
+31832,61453
+31833,73255,21506,34343
+31834,49696,76011,43791,12567
+31835,76305,74445,46802,34090,54856,56900
+31836,14341,43867,60683,35952,37997,15174,40143,59875
+31837,14359,12823
+31838,75178,71071,37551
+31839,22100,22164,74330
+31840,79450
+31841,22595,47329,43968
+31842,8767,48397,69595,72400,76497
+31843,4792,1288,32532
+31844,43648,11652,74174
+31845,32875,48424
+31846,23997,55599
+31847,73678,30480
+31848,11017,19779,74419,1174,59402,33465,48957,7445,29276,47446,21332
+31849,49192,39432
+31850,35706,76956,52240,53115
+31851,16898,10648,77736,53111
+31852,55878,70706,68256,26666
+31853,4760,76343,31083,81955,76835,80231
+31854,29429,42613,7931,4913,4937,66696
+31855,72158,67091,384,12287,80871
+31856,11909,44400,12550
+31857,9814
+31858,67747,68046,65774,2279
+31859,28323,546,13008
+31860,59121,66208,24007
+31861,10343,7730
+31862,26816,6265
+31863,35459,16371,68478,77610,1942,17526,27842,15255,76641,7328
+31864,31317,27804,72056,73427
+31865,18910
+31866,78935
+31867,24118,12099
+31868,20355,7158,6950,56619,29147,2245,13850,29015
+31869,32282,51918,13924,47716
+31870,73622,49544,72743,36428,43964
+31871,55216,65870
+31872,54624
+31873,35874,29287,48948
+31874,22451,62725,80259,14794,23712,69900,69429
+31875,49886,12170
+31876,71927,66121,39366
+31877,55898,49351
+31878,58509,24434,67160,76279,47556,10599,3401,80334
+31879,61967,52646,23351,31916
+31880,57931,30467,65669,20664
+31881,69916,56838,50244,15720
+31882,75477,25860,79368
+31883,70370,2739,74012,48752,63789,29949
+31884,76396,51367
+31885,17038
+31886,43153,54362,79366,61860,77707,56672,57575
+31887,74434,39022,48038,76372,2912,6094,29280,13628,50223,34004
+31888,12436,37078,4822
+31889,6816,57313,3363
+31890,727,38940,47374,73002,30508,68712,31129,48017
+31891,60420,58964,56402
+31892,29915,73296,68380,75357,483,54089,80233
+31893,47809,23566,72272,27137
+31894,77417,29259
+31895,22133,1173,74068,79148,81742,8303,78705,68177
+31896,7285
+31897,5546,55247
+31898,1725,3991,48227,27957
+31899,58502,74489,27227,39005,51930,26089
+31900,75555,8188
+31901,61404,74723,65122
+31902,22555,34456
+31903,31575,35747,66769,32142
+31904,3587,64748,4548,9283,62194,62111,25405
+31905,59004,72656
+31906,39585
+31907,43552
+31908,79910
+31909,8852
+31910,31466,25834,13171,29494,45960,75997,72349
+31911,60734
+31912,74111,65294,19955,41056,36591,68012,1903
+31913,17139,37698,50181,12669,44841,59055,1835
+31914,62996,66875,31898
+31915,72757
+31916,55737,6089
+31917,7760,8344,57330
+31918,25723
+31919,12000,43462,53621,13544,59874
+31920,12902,25018,57621,14227
+31921,73201,16152
+31922,61598
+31923,16372,78563,57395,59024,3842,56726,60543
+31924,18758,6439
+31925,45327,43759,41390,50813,80074,76307,1772,9878
+31926,41764,76549,57529
+31927,40093,71439,6147,10617,67374,28062,39546
+31928,75578,38804,37905,44417
+31929,67245
+31930,8298,43519,44966,40465,80031,14814
+31931,18274,45310,25847
+31932,56639,55177,44427,28848,73704
+31933,8237,49114,35537,12648,72622,11059,20979
+31934,43967,16377,26896,37048,1610,1871
+31935,42740,34857,16596,14497,73202
+31936,6139,40815,3786,46998,75826,42700,34861
+31937,76179,42424
+31938,43869,34242,58491,71684
+31939,2763,6887,47765
+31940,31057
+31941,70826,56350
+31942,28987,16226,14608,7839,54891,29243
+31943,38077,38110,80755,7315
+31944,57989,30516,55074
+31945,53689,37751,65374,49483
+31946,14182,79024,50078,52091,59382
+31947,71248,43698,4985,48280,46861
+31948,18013,38653,8808,46907,42799,51444,48277,76117,36680
+31949,61525
+31950,50430,61701,19217,71292,70299,16293,80478
+31951,61629,27626
+31952,50082
+31953,67089,37783
+31954,35495,76625,50255,33597,22278
+31955,58906
+31956,4351,76138,72891,75723,77884
+31957,70612,64174
+31958,27055
+31959,3727,10306,19466,36558,5593
+31960,66096
+31961,38427,19352,75369,10644,44182,15683,31118,66710,36929,32377
+31962,62639,68745,35486
+31963,690,66948,43458,5855,32677,45538,23378,46348,67953
+31964,76482
+31965,56373,41976,41303,60465,63771
+31966,1472,46866,49619,3473
+31967,65153,76621
+31968,31259,71446
+31969,62799,67519,21915,9670
+31970,70680,15365
+31971,59157,38983,29893,55228,81701,31601
+31972,81768,69655,39203,20440
+31973,57422,10354,29505,40402
+31974,59331,33624,16911
+31975,52363,57254,68081,72003
+31976,70807,18034
+31977,80953,73076,70099,65897,10299,21855,33649,54476,18583
+31978,81783,53453
+31979,49210,8136
+31980,46514,60073,58450
+31981,48727,44630,66125,39072,79724,18274
+31982,11026,8126,4449,12706,23128
+31983,33871,32348,18358,20820,45800,66005
+31984,26253,28306
+31985,79941,15737,64094,852
+31986,20,33640,75477,71300,79174
+31987,58992,15143,64151,44813
+31988,1558,49840,15149,3153
+31989,27463,23173
+31990,33008,7250
+31991,43944,39793
+31992,69868,79845
+31993,43739,33937
+31994,57878
+31995,50719
+31996,3160,81979,26393,25583
+31997,75015,75532,59061,3703,14815
+31998,75849,70571,42263,15326,81769,58806,42706,32671,46284
+31999,17476
+32000,58867,60533,31753,25439,18989,16083,77597
+32001,12209,37861,36069,35608
+32002,13005,51063,20036,22888,49458,11497
+32003,57884
+32004,81374,42927,5123
+32005,26832,3687,43229,25712
+32006,18508,59081,36325,21090
+32007,42530,37264,64850,78406
+32008,36831,29835,13044,48178,79560,30473
+32009,61900,50183,7958,197,18459
+32010,19560,80044,46864,70293
+32011,34944,37207
+32012,6752
+32013,55131,41976,68674,45984,75984
+32014,2163,28924,65809
+32015,39594,37026,46650,33046
+32016,62767
+32017,2836
+32018,32367,12725,38596
+32019,20352,64415
+32020,2604,61757,60723
+32021,53626
+32022,1694
+32023,35666,28850,45543,75658,56100,20870,28622
+32024,47756
+32025,42424
+32026,46550,80666,19651
+32027,70877,38049
+32028,9428,78392
+32029,72248
+32030,59357,30675,9584,43556,43318
+32031,48372,66579
+32032,77965,41310,4808
+32033,39880,59756,60028,4391,67389,50727
+32034,53226,76969,65701,56312,46306,7626
+32035,76626,43918,69698,15453,29513,65646
+32036,651,38252,38094,1341,15000,48719,82099,48744,22336,81234,26796,55052,21587,36818
+32037,58987,22182,6966
+32038,43196,66229,49526,44074
+32039,17053,60899,45441,41491
+32040,61047,18503
+32041,18163
+32042,76461,81032
+32043,67901,50155,6600,26045,78912,27544,20053,1512
+32044,65090,73106
+32045,15652,54333
+32046,79305,65220,5910,52631
+32047,77137,43304,53368
+32048,29768,78511,30409,76993,68812,77884
+32049,39008,21047,14763,44245,28198,65494,5287
+32050,51287,70380,66573,68132
+32051,14208,2938,36375,5390,35520,56783,72392
+32052,60601,38817,74096
+32053,60014
+32054,5133,3708
+32055,16478
+32056,64227,59389
+32057,61639,63037,15173,76620,34007,36380,2282,61889
+32058,20734,8909,56952
+32059,61402,27294,60311
+32060,41931,78938
+32061,13768
+32062,79532,77814,21636
+32063,99,1711
+32064,53725
+32065,28053,59039,5635,36530,31083,62522
+32066,3887,1424
+32067,70029
+32068,4302,4005,42897,34394,39120,8129
+32069,9135
+32070,43004,41564,42458,60039
+32071,61760,38057,13926
+32072,2442,73750,17313
+32073,16366,68301,66958,52236,1468
+32074,57131,16636,28346,39743,58337,25077
+32075,1760
+32076,67326,20581,66537,26155,39560
+32077,27550,10986,46831
+32078,80080,36925,46921,71055,67486,32479,38492
+32079,36208
+32080,27808,9613
+32081,75806,54073,4025,13080,59450,48760
+32082,2382,54296,24906,11115,64678
+32083,43791,34605
+32084,12105,10895,42386
+32085,77998
+32086,36568,59668
+32087,66578,33675
+32088,65072,50555,82157,80676,77287,47955,66753,23670,62251,31341
+32089,63413,8737,80646
+32090,48544
+32091,73021
+32092,71727,40601,12742
+32093,26183,51137,12824,33234,8805,35799,66584,36334,40659,15492,18419
+32094,4450,28533
+32095,37136,60771,73394,36174,3999,50869,9058
+32096,66469,39474,59375
+32097,66946,4872,71027,18413
+32098,9852,50615,67945
+32099,37677,48446,80177,76258,55227,24963,42821,62297
+32100,24454,19690,18023,65816
+32101,60408,52283,36051,39686,58942
+32102,27129,39190,74627,497
+32103,39534,73324,53934
+32104,35643,57223,60592,57779,11876,76185
+32105,39460
+32106,2922,13835,45893,23055,61106
+32107,56180,71165
+32108,25232
+32109,27377,30065,8042,36529
+32110,40058,2147,4699
+32111,17302,68477,28786
+32112,67612,52567,75335,20885
+32113,11590,24614,24975,7083,49723,18868,17835
+32114,64709,14263,64961,14395
+32115,28586,50644,58085,51374,78648,30859,26267,75248
+32116,46161,33663,33735,35991,3615,45638,59359,51498,30439,80514
+32117,34560,5183,65623,4724,80090,22904
+32118,11922
+32119,33033,69314
+32120,24761,67430
+32121,14,77512,52566,8006,40832,61659,62577,69210,68461,2113
+32122,56076,75880,56898,64218
+32123,76064,13520,6566,16573,63485
+32124,62731,11152,11323,2176,24210,5250
+32125,50384,24121,20955,75278,80062,18630
+32126,37833,53440,24246,39973
+32127,5156,49295
+32128,81699
+32129,60309
+32130,62905,8041,22755
+32131,37084
+32132,77819,54875,51304,35888,69631,12773
+32133,52147,73235,23884,23633,63658,29623,14032
+32134,52751,22526,69572,74352,76390
+32135,41302,31915
+32136,18791,49616,18728,77610
+32137,7745,23591,55758,55142,57956
+32138,30351,76310,14458
+32139,53344,24580,1704,17524,61546
+32140,75523,75721
+32141,14926,33707,30057,76538,44948
+32142,63486
+32143,9630,63254,16735
+32144,47077
+32145,61972,37822,72235,6741,56543,22533,5370
+32146,65714,30700,53127
+32147,77256,3631,40797,26909,42682,10014,68678,26787,5677,3602,49576,53406
+32148,49178,45956,59766,12170,5209,76997
+32149,5092,12455,5306
+32150,64916,36157
+32151,46700
+32152,81581,38528,35408,80016,8023,63631
+32153,65993,45303,68098,35462,4400,79497
+32154,46226,15243,39917
+32155,9297,45362,24735
+32156,76364
+32157,46897,31753,5747,3815
+32158,63971,7381,7040,56091,13580
+32159,80283
+32160,14083
+32161,50181,10528
+32162,73689,38497,71328,5701
+32163,78425,5515,59496,32397,14383
+32164,80954,25419,14618,35661,6522,74997,28778
+32165,20352
+32166,32014,36331,66274,23471
+32167,36499,13103,74919,71654,27350,13410,63270
+32168,9976,24586,43889
+32169,23220,22688,45977,76628,53795,57822
+32170,71485,28004
+32171,61963,38385,676,62595,8449,74255
+32172,5968,71256,7240,13208,44923
+32173,30795,42771
+32174,13634,64144,76751,19658
+32175,20479,38885,29149,1238
+32176,61616
+32177,12833,72496,12227,56278,31721,32465,20309
+32178,32678,66310,5818,23454
+32179,76153,42974,14587,55492,12945,66182
+32180,80359
+32181,77249,9782,20284,43075,19742,9489,69374,6580
+32182,53942
+32183,56737,19373,56634,72861,54291
+32184,53181,51765,53320,8670
+32185,27652,31584,56311,81591
+32186,25445,70836
+32187,67884,22903,59172,12936
+32188,5784,28338,51264,56220
+32189,78615,47280
+32190,54661,52844,22583,14315,35038,79427
+32191,44989,47096,62514
+32192,7160
+32193,54018,49244,2274,18207,22445,878,9541,66098
+32194,37398,16264,55501,26830,98,50224,10772
+32195,42012
+32196,72112
+32197,70055,62310,4817,9752,64929,33618,49687
+32198,36915,74664,10290,31504
+32199,17876,13088
+32200,29027
+32201,80243,24603,58491,63691,50382
+32202,25305,35428,62522,53260,46961
+32203,34495
+32204,30395,52383,19338,61763
+32205,52581
+32206,47942,81070,17784,16831,10888,13239,16910
+32207,7781,82117
+32208,4773,48788
+32209,31252
+32210,61116,75809,45587,81903
+32211,20178,56609,12843
+32212,47065
+32213,44364,3856,63916
+32214,45329,26511,14097,12664,68697,60894
+32215,49014,76738,71896,73217
+32216,9263,35225
+32217,43579,13530,76827,18791,21687
+32218,27516,29952
+32219,45021
+32220,76244,52250,38419
+32221,2373,9312
+32222,42235,67470,28974,70330,4030
+32223,21759,42502,68509,76061,42092,80556,53089
+32224,55616,81119,12658,3519,71705
+32225,38846,2066,76443,51340,16395
+32226,25428
+32227,49740
+32228,32489
+32229,5655,43826,75143,51529,72880,42530
+32230,4049,43695,81645,36128
+32231,25636,66010,37940,1315,44403,57442
+32232,7470,13435,26587,27417,1304
+32233,54913
+32234,66977
+32235,66043
+32236,69385
+32237,70551,57032,76157
+32238,48173,36911
+32239,46761,25740,30119,11863
+32240,59346,79229,55518,48848
+32241,76410,7386,24949,69566,69275,71569,26467,8729,77135,57047
+32242,74401,19109,57700,64464,68207,27260
+32243,44867,79882,79408
+32244,1561,29770,69840,38704,7885,44858
+32245,36758,81119,43589
+32246,29771,73525
+32247,57921
+32248,36209,16086,60349,24714,58525
+32249,51887,25057
+32250,20381,35734
+32251,10189,58795,73889,71500,10972,42331,79914
+32252,39737,26393
+32253,61091,3198
+32254,1511
+32255,1396,54140
+32256,67635,60604,45590
+32257,68084,42177
+32258,51161,11371,43932,75545,3216,19072,38916
+32259,74344,42840,5075,48777,32947,60471
+32260,10205,71102
+32261,9252,39152
+32262,52045,61746
+32263,37975,6687,33999
+32264,79094,51319
+32265,69301,37778
+32266,61182,48047,45342,8112,77990
+32267,38830,64170,31955,30145,7571,55088
+32268,60033,22451,25676
+32269,53531,49424,45141,2828,4561
+32270,6958,51033,55648,69487,32480,44475,50991,21736
+32271,5481,49360,43927
+32272,70110,18604,12741,59634,37807,36154
+32273,23282
+32274,33281,50272,24954,51602,35765
+32275,9567
+32276,79448,45547,60751,34375,78937,5588,42106,4232
+32277,11605,6978,27505,47573,60184,24342
+32278,77959,69674
+32279,39578,8184
+32280,42253,58103,45281,31704
+32281,80131,81883,27676
+32282,81571,69338,42434
+32283,28720,37054,12089,13791,18381,21711
+32284,1633,57130,70042,71846,10850,26225,49222
+32285,52797
+32286,53899,8245,9148,24943
+32287,66401,48990
+32288,31201
+32289,51787,62380
+32290,15719,2131,38309,14830
+32291,46912,19292,71116,49467
+32292,75894,4603
+32293,13877,4647,79661,2088,19614,78204
+32294,22867
+32295,4756,32340,79621,43676,38713
+32296,20175,52851,67154,50559,77386,29933,49520,2547,81185,37982,13771
+32297,45649,49210,17257,79467,31578,20603
+32298,64957,19754
+32299,1052,74833,8001
+32300,12586
+32301,69829
+32302,16257,2210,50822,32622,18266,29175
+32303,69427,9758
+32304,38671,66162,73930,32722,63234,60741,21943
+32305,64422,77937,350,52799,53272,7524,57314,21668
+32306,1989,67870,61633,19608,7407,3421
+32307,8008,75239,80692,40881,33937
+32308,54150,39102,32061,65954,69000,20290
+32309,51998,52237,73481,27016,32139
+32310,50749,78226
+32311,55537,79386,57038
+32312,5294
+32313,48184,31364
+32314,31719,81346,9729
+32315,70162,78351,60826
+32316,22269,28376,34730,17498,60640,7614
+32317,61693,29760,43511,33876,12316,70205,3401,80063
+32318,79334,73290,54461,16115
+32319,56179
+32320,53815
+32321,60581,16367,6635
+32322,42948,30244,65683
+32323,39350,38118
+32324,54542,8290,65208
+32325,73596,7440,74297,55656,59634
+32326,40627
+32327,53185,61272,51178,40447,1813,31184,74159,41045
+32328,44907,4702,44026
+32329,17001,73631,64144,19504,50910,57228
+32330,9956,18236,51056
+32331,34738,48199,81809,57387,148
+32332,14957,66968
+32333,22619
+32334,21060
+32335,2645,77645,64551
+32336,65153
+32337,3903,41027,7235,22557
+32338,63859,12148,42793,36304,46633
+32339,10494,38919,48846,52889,12676,60914,14017
+32340,33400
+32341,31384,12440,14976,30546,29157
+32342,4848,58448,37869,40749
+32343,56273,70963,51882
+32344,61160,26832,14001
+32345,49945,79066,69654,21591,12563
+32346,26971,67475,6157,68,17161,47770
+32347,58849,78086,78370
+32348,27127,10518,40726,41567,55095
+32349,27524,49332,14078
+32350,59708
+32351,57603,12923,21178
+32352,55717
+32353,70277,73064,60367,46885,72039,2983
+32354,63158
+32355,19476,44083,44044,36860
+32356,35064
+32357,14846,74547,39817,31173,28993
+32358,50632,28803,59867
+32359,75099
+32360,62609,39970,20296
+32361,47752,48574,40332,49580,37053,10044
+32362,51581,24959,72656
+32363,32402
+32364,77024,57038,59530
+32365,43809,3106,78482,38607,57449
+32366,33908,59915,27143,26764,75955
+32367,8465,197,77234,23547,23539,11280,9881,27787
+32368,80437,1462,66418
+32369,35331,55021,5822,36417,258,63981,34128
+32370,49943,51063
+32371,70284,12064,39946
+32372,35090,67746
+32373,81476
+32374,43253
+32375,35973,39725,80753,5222
+32376,51865,29594,27399,50475
+32377,52876
+32378,63293,10831,51628
+32379,11536,59067
+32380,35220,65356
+32381,10910,8573,22454,3513,32279,57884,12331
+32382,59653,69691,24541,34504,45105,19826,64974
+32383,77704,73845,19862,68863,23873,11400
+32384,3925,6339,27793,58688,17102,44016,81233
+32385,59945,11023,31021,26477
+32386,20112,15747,53889
+32387,17947
+32388,22699,3680,65643
+32389,78425
+32390,1585,62512,76644
+32391,35457,22146,67337
+32392,58944,3785,66907,50341
+32393,29266
+32394,12786,80606,26227,23144,68911,79802,36298,34081
+32395,17594,2880,4848
+32396,73023,10392,42517,49077
+32397,64850,53008,31587,65691,42974
+32398,50115,1837,1302,932,81862
+32399,2593,44614,64321
+32400,34157,60520,79843,65495,59755,60216,28921,44156
+32401,20460,58539,75072,36877
+32402,40240
+32403,9921,42437,19829,79467,21143,51837
+32404,11210,22639
+32405,81194
+32406,74980
+32407,2677,2482,31034,64106
+32408,22523,70543
+32409,18804,32108,72757,62213,32550,17347,3060,30037
+32410,30517,4299,32165,21576
+32411,43663,39534,43924,46937,62177,19037
+32412,11308,78379,44448,18285
+32413,39210,27384,81523,67014,8473
+32414,3992,9823
+32415,41511,58
+32416,35824
+32417,27007,67909
+32418,47245,37939,10711,66697
+32419,52204,19414,28928,25697,48019,16466
+32420,51632,58645,61126,67565
+32421,66540
+32422,79395,62972,16617,36740,29700
+32423,29545
+32424,76419,47853,18018,4516,62874,8537
+32425,45042,55713,22668
+32426,25181,6068,57574,37619
+32427,8296,25508
+32428,75194,55399,80593,40942,6054,63277,37149
+32429,15445
+32430,47268,37337,22021
+32431,80160,34867,45860,25370,43759
+32432,26605,33243,17679,60704
+32433,41452,80707,71731,81871,42994
+32434,19658,66688,44897
+32435,67918,63753
+32436,44612,69588,13420,78042,40302
+32437,55263,98,33097
+32438,62506
+32439,76616,22043
+32440,17418,48200,20756,58829,47946,72870,15905,21477
+32441,53286,50793,20904,10685
+32442,26836
+32443,23220,81457
+32444,51063
+32445,47787,51933,4964,81307,64767,27763,66497
+32446,46875,42856,29831,59622,55442,70486,51599
+32447,76802,32367,3831,27185
+32448,34636,35671,8506
+32449,11076,37517,76372,23221
+32450,42681,31192
+32451,25806,49793,54614,64516,6901,14692,19806,11777,4396
+32452,60848,34262,13564
+32453,19769,75554
+32454,44199,5921
+32455,56007,81194,58774,21114,21586,19273
+32456,77129,44314,71355,56993,10713
+32457,74312,61179,81030,31456
+32458,23690,55453,70971,30991,465,22075,19088,46100,31550
+32459,13076,20136,35958,80940
+32460,41090,23377,47154,44346,35167
+32461,79841
+32462,34170
+32463,81869
+32464,77633,35087,46982,81238
+32465,71148
+32466,3997
+32467,16154,55906,5208,4246,34360,79064
+32468,81360,79968,32902,57810,39740,6561,42455,69666
+32469,28191,25931,41004
+32470,47147,51348,19776,28253,76376
+32471,72344
+32472,46338,37817,13565,37546,29698,62226
+32473,29337,41411,5124,62625,16380,6363,2536
+32474,67670
+32475,64750,49984,66742,72255
+32476,12701,17810,40928
+32477,46735
+32478,33835
+32479,4497
+32480,11000,5878,1112,53671
+32481,12241,51796,65435
+32482,39659,5903,55380
+32483,25177
+32484,10607,65161,59017,35129
+32485,36592,58084,27336,49785,18397,78411,25155
+32486,45074
+32487,3217,32018,70446,18763,8550,80010
+32488,27865
+32489,7554,73841,27244,5815
+32490,52752,64655
+32491,71696,49367,81763
+32492,39849
+32493,56411
+32494,17597,63893,43580,58715,77771,35315,76931,49372
+32495,45761,38779,71648,61217,54105
+32496,24120,22180,46314
+32497,6200,19479
+32498,53192,55537
+32499,38295,55240
+32500,53127,61443,19457,70454,10503,6682,34833,79112
+32501,57741,60685,24870
+32502,36713,63366,13278,79237,216
+32503,19522,44026,20780
+32504,190,8576,41086,38714
+32505,50624,1464,3774,31332,55745,71180
+32506,74844
+32507,7504,11245,70936,46592,48213
+32508,62679,56100,39155
+32509,28974,48020,14108
+32510,51882,73776,47546,43903,52052
+32511,44394,1411,7147
+32512,76610
+32513,21354,25688,54679,58737,79294,9176
+32514,29504,22416,19899,32879,40211,11597,40680
+32515,28552,14633
+32516,59004,32603,26581,35936,9479,26911
+32517,9094,71492,26078,60429
+32518,78280
+32519,22231,45010,25819,45740,890
+32520,2784,44800,22077,73698,44070,73104,80217,35725,80955
+32521,21121,14488,724,59387,41339
+32522,79434,16520,21781,74938,38796
+32523,12121,28406,22920
+32524,76348,45948,48383
+32525,10147,57323,28856,76301
+32526,43988,26358
+32527,2993,3465,25140,31881,58954,27804,63887,13769,53142,44523
+32528,56192
+32529,40292,47487,58888,53111
+32530,72480
+32531,2683,13319,20834,75602,64660,10247,65222
+32532,20089,49789,46116
+32533,25840,19130,61126,49634
+32534,75581,77552,72279,66743
+32535,58573
+32536,36445,28195,44539
+32537,75002,37680
+32538,40091,43873,10761,55423
+32539,9941
+32540,75737,67995
+32541,38178,73157,40175
+32542,57670,52476,53449,22243
+32543,20321,33686,43176,37409
+32544,5874,4079
+32545,334,65364,30553
+32546,52829,49790,67795,25630,5494,35952,78217
+32547,68812,2135
+32548,9424
+32549,50876,9309,64998,20401,26129,37014,81329,9003,32754
+32550,37380,66034
+32551,65155,31984,50257
+32552,35214,3832,43998,55461,76451
+32553,27566,78734
+32554,29332,4919
+32555,32227,60670,68009,78333
+32556,63724,77194
+32557,30261,7605,14018
+32558,54872,17796,59034,55798
+32559,42333
+32560,29271,68954,75643,78619,3985
+32561,77975,78187,13838,59399
+32562,57109,27511,46427
+32563,10470,18483,17413
+32564,17531,17646
+32565,78359
+32566,56220
+32567,73720,48734,11845
+32568,5408,1240
+32569,18154,7485,29643,32374
+32570,54204
+32571,19338,77981,55276,51472,20095
+32572,45921,2483,45772
+32573,20820
+32574,33994,2264,56357,31286,20057
+32575,56406,80782
+32576,9547,41100,37383,18036
+32577,9506
+32578,56164,30788,80992,71446,38454,40062
+32579,10809,53146,33337,6489,18523
+32580,34844,40391
+32581,28572,7337,71140
+32582,11859,20399,16019
+32583,6826,33288
+32584,40804,2373,10729,52901,66833,24872,10245,45110,25608,61480
+32585,36359
+32586,61223,73585,68142,24626
+32587,76247,56111,49699,21872
+32588,28482,19523
+32589,40179
+32590,53564,70062,8400,4672,21827,41075,37876
+32591,22994,80991
+32592,15744,10241,32214,79991,45989,3753
+32593,30689
+32594,14045,66386
+32595,65180,4657,2809,21925,19037,63822
+32596,1505,42401,62542,12140,31126,7877,10828,26119,42437
+32597,26890,66343,78281,66098
+32598,71973,37359
+32599,5781
+32600,8910,67958,52779,26285,62497
+32601,26269,58919,38931
+32602,65833
+32603,65703,27003,74096,59900
+32604,13658,53076,65151,38438,39328
+32605,46231,25010,61326,50748
+32606,59524,73974,8488,18347
+32607,72670,1960,33515,63195,47212,32388
+32608,26494,72913,2120,40764
+32609,62917,31114,15913,41318,45155,50442
+32610,62206
+32611,63114,18699
+32612,25980,67720
+32613,27555,16692,62155,20327,51813
+32614,61881,37511,79194
+32615,51273,71454,27851,43093,74730
+32616,12717,62769,43777,77718,47751
+32617,25185,47223,75112,81724,27594,44855,11355,61624,69849
+32618,40298,2027,11610
+32619,69236
+32620,10075
+32621,15319,30673,23029,81774
+32622,21520
+32623,70079,51966,20318,69194,43377
+32624,40850,35678
+32625,51103,46759
+32626,45756,65663,72774,30038,42092
+32627,41346
+32628,170,18973
+32629,73677
+32630,28012
+32631,63056,68376,30172,60806
+32632,77695,20178
+32633,38503,31033,59184,26149,62978,76502,24808,1946,72942,7096
+32634,7577
+32635,47119
+32636,40646
+32637,3443,12209,12684
+32638,26134,9364
+32639,21693,2283
+32640,75841,43567,15114,40498,2442,20341
+32641,3264,81622,72169,65094,3323,46428
+32642,17106,35153,38893,71559,69642,65459
+32643,65083,61101
+32644,64569,6493,37907,72563
+32645,79729,29088,74075
+32646,54460,6588,33943,63023
+32647,3024,35256,35676
+32648,59767,24212,32921,42727
+32649,47722,65119,40203
+32650,4641,4682
+32651,57527,62799
+32652,23734,38120,48536,69376,49631,35562,1655,45190
+32653,28482,45303,18236
+32654,6250
+32655,36944
+32656,34654,48606
+32657,4557,38674,39982,42624,69120
+32658,27805,14203,73240,13687,32721,15493,28386
+32659,43236,31433
+32660,16378,3028,78810
+32661,32879,55296,9129,20922,3081
+32662,64655,29040,25316,26886
+32663,47913,10068,22234,69620
+32664,6012,37561,62453,23993,43571,22293,58599
+32665,71152,60449,924,37881,65630,77772
+32666,5790,76280
+32667,70945
+32668,41184,15302,42547,20026
+32669,37653,41235,74592,1275
+32670,12460,26831,79899,80856
+32671,55329,54784,47121,66219
+32672,25855,8842,62363
+32673,76541,61496
+32674,9268,53088,79992
+32675,60694,79257,74995,24932,77240,8405,15040
+32676,57130,26443
+32677,60732,7612
+32678,43251
+32679,47133,14429,73527,4756,22168,7589
+32680,49516,2407
+32681,48032,18349,5279,40814
+32682,59000,56536,53685,50476
+32683,67176,21207,39973,20499,37105
+32684,20246,54180,70231,7897,15040,52982
+32685,63724,58813
+32686,23850,50283,33699,41797
+32687,1483,16909,40802,40984,15611
+32688,71330
+32689,54632
+32690,26853,8791,55064,64462,29389,33914,19011
+32691,65547,51868,67440,7356,37553,7582,81186
+32692,50229,56128,78026,20795
+32693,35659,78200,32536,24506,45094
+32694,50153,31702,17453,80193
+32695,69940,60130,71743,17555,61976
+32696,30548,17224,59366,78638,39215
+32697,74255,70816,41807,7526
+32698,16009,45638,26318
+32699,71755
+32700,26718,54659
+32701,19232
+32702,54599,12516,60215,27731,75483,101,28910
+32703,8165,74345,4528,9241,72976
+32704,16996,53069,28393,15872,26285,80455,12651,79259
+32705,21955,68672,63375,5373,18607
+32706,17377
+32707,18936
+32708,34857,56743,32970,33055
+32709,22935,4172,41149,3180,18800
+32710,7259,49619,51014
+32711,9002,78937,17455
+32712,59168,78622,45637
+32713,16671,21126,18714,15108,3591,34364
+32714,15244
+32715,20395,3814,69943,40450
+32716,59925
+32717,18532,8839,41190,71228,33686,48133
+32718,75786,61110,32056
+32719,24969,10944,43279
+32720,29707,26206,30675,56946,24464,13134,33851
+32721,70138
+32722,7549
+32723,23536,61301,45380,34844
+32724,3841,42165,77930,63020,50881,47903
+32725,36830,27931,22068,25899,57533
+32726,45915,36010,28637,64469
+32727,53768,77332,56005
+32728,15259,79122,65821
+32729,13756,65298,75712
+32730,42314
+32731,35917,5954,53623,5555,44106
+32732,39568,10159
+32733,67288,25012,26201,79659,59838
+32734,69702,35469,53822
+32735,66042,51930,26215,66606,65632,60402,20050,33787
+32736,18960,34695,69289
+32737,21984,15822,30091,7491,20213
+32738,47313,70444,56647,41302
+32739,35485,70932,26019,1826,27754
+32740,30628,49884,22451,79022
+32741,37710,10321,31001,32528
+32742,54598,928,48728
+32743,9778,34291,15634,37793,54005,22633,66685
+32744,67195,53950,12557,53636,33473
+32745,79313
+32746,32832,28829,43569,48781,60897,41264,60818
+32747,14149,34110
+32748,58752,17992
+32749,60622,15744,61681,62604
+32750,1417,71073
+32751,25459,72156,73790
+32752,2248,53129,64251,31854,47325,43223,20349,12766
+32753,49271,42853,28854
+32754,48974,70146
+32755,6446,64269,43772
+32756,1642,32310
+32757,29654,62317,12910,50958,81324,10252
+32758,58092,24691,67465,33014
+32759,41052,16072
+32760,68746,30657,74773,58118
+32761,62514,55277,15906
+32762,14692,24302,14487,58198,35622,16633,48587,28104,21195
+32763,51258,76087,2093,1297,53533,57833
+32764,12821,13212,36167,41712,67491,5002
+32765,2482,36447,59447,30226,38866,51527,34668
+32766,49438,19573,52936,45659,20315,57537,25278,519
+32767,7268,47897,19997,56705,25208,45244
+32768,51805,14639
+32769,29776,66731,75986,312,51604,43581
+32770,54000,2520,76472,79310,57,11703
+32771,59754,76223,23774,6238,74687,39965,76032,32324
+32772,16575,49266,57511
+32773,68131,2138
+32774,3777,59616,74344,81360
+32775,36396,183,74264,10060,31308
+32776,13101,20409,34000
+32777,60178,52652,10704,46143,20479,59235
+32778,56583,43172,48279
+32779,47883,78946
+32780,69285,77971,12561,36758
+32781,53317
+32782,63755,72749,63535,51861
+32783,63964,12709
+32784,34775,62771,69959,64023,2458
+32785,66498,18898
+32786,52782,81134,23429,12528,14108,53949,11939,65064,3419,555
+32787,39527,68417
+32788,15670,32965
+32789,52341,72494,29349,39084,9565,77162,58679,24359
+32790,51282,5804,80010,80255,58540,74185,41716,31572,10381,77101,55770,43580,73053
+32791,14381
+32792,51440,32498,65066,52154,5066,43291,43823,22283
+32793,67451,33316
+32794,60704,56266
+32795,37275,36363,32847,82099,16743,47545
+32796,44620,48186
+32797,30375,33111,35454,15318,31318,62313
+32798,77179,62729,30236,29912
+32799,71419,79789,65036
+32800,30762,81499
+32801,59412,2007,9487,76882,57448,1423,46203
+32802,52928,13258,21881,51575,66122
+32803,70445
+32804,27923,68517
+32805,51402,44486,28783,32394,64972,8742,43085,33047
+32806,7934,4032,24888
+32807,59849,32847
+32808,14409,76814,54658
+32809,37660,37747,15677
+32810,33211,7620,46223,8649
+32811,51170,15140
+32812,59478,18093
+32813,66822,10881
+32814,20021,73694,36263,68586,5550,32964
+32815,69534,49536,855,71415
+32816,17617,9028,1612,72021,26338,26400,27564,76745
+32817,50753,63255,24799,40806,36381,56975
+32818,50988,37548
+32819,22262,60836,46435,43040,963
+32820,42982,63020,18071,17411,27601,30415
+32821,18430,72729,6571,45092
+32822,4027,82003,14519,34734,19618
+32823,54927,59071,45255,79938,22761
+32824,53043,74665
+32825,31339
+32826,68081
+32827,70142,67546,4216,47750,56412,44482,56145
+32828,15030,28637,39642,81464
+32829,506,62197,66299,8027
+32830,52536,35722,52255
+32831,57606,73951,62284,64974
+32832,81241,3878,31746,14270
+32833,39947,79912,56484,60196,26223,5868,61390
+32834,44192
+32835,17166,53581,21043,45176
+32836,77105,55182,74387,19443
+32837,57565,60120,34767,13753,27863,54656
+32838,33137,67771,770,78664,67982
+32839,18936,50821
+32840,40464
+32841,70828
+32842,80245,8191,138
+32843,5753,31189,38774,65865
+32844,19357,9671
+32845,76294,58777,69760,75739,60780
+32846,79510
+32847,38722
+32848,23006,29597
+32849,59793,63649
+32850,74054,67990,14938,45404
+32851,65142,36530,67094,35935,72801
+32852,67448,45006,56162,45525,28256,154,72766
+32853,81835,44090,35634,76522,19564,4677
+32854,59828,73517,63693,13931
+32855,20063,22051,44227,15582
+32856,67245,73456,3977
+32857,24818
+32858,52398,29541,37477,67712,58385,13604,28863
+32859,28410,81517,47010,41562,42347,1453,64706
+32860,62726,72907,76723
+32861,69133,9336,22085,17190,9185,73516,29691,2225,28108
+32862,71352,36288,22812,28885,48237,41426,78839,5202
+32863,1102,4553
+32864,4991,5747
+32865,53382,52015,45910,80173
+32866,54828,2578,14761
+32867,79303,33934,28002
+32868,80909
+32869,16606,35048,10115,55473
+32870,44001,7478,55692,1093,27323,20768,35656
+32871,44516,37912,25172
+32872,20840,12732,26897,45080,20917,73077
+32873,31736,4539,17740
+32874,72999,34717,58806,55485
+32875,12393
+32876,17445,11280,32937,510,26456,29156,54808
+32877,7719
+32878,49036
+32879,66771,20221,61253,30132,30911,60635,14930
+32880,51267
+32881,25907,59529,52020,38351
+32882,21519,64419,52645,75931,80177,31344
+32883,44010,63524,43429,69974,42074
+32884,25931,50187,73389,72164,68333,21679,72688
+32885,56996,28
+32886,67900
+32887,49693,54204,66281
+32888,81476
+32889,12288,69093,62303,37931
+32890,47988,40614,79577,22941,54964
+32891,10477,49466
+32892,73872,14894,38770
+32893,22067,28345,68382
+32894,3708,64963,11874,9478,10548,61100
+32895,12789,57507,76925
+32896,80648
+32897,16864,4248,30424
+32898,10876,78569,48085,15637
+32899,36857
+32900,48593,50867
+32901,56178,35873,50989
+32902,77119,11238
+32903,20324,45485,75788
+32904,9716,72996,4958,49129
+32905,24193,31355,63543,6525,1878
+32906,75129,31584,51688
+32907,26786,65312,55630
+32908,41524,59967,25114,29665,18700
+32909,22522,51278,66694,14507
+32910,81799,45960
+32911,58914,70906,13592,73073,54346
+32912,42082,27002,20318,43593,58660,8825
+32913,10918,63263
+32914,66671,41137,33907,28074
+32915,30175,42416
+32916,54216,20103,21551,26866,40124
+32917,17606
+32918,2814,57801,52478,17865
+32919,34467,19163,72687
+32920,42191,66630,66547
+32921,52633,70705
+32922,77055,64259
+32923,76660,25333,74649
+32924,21103
+32925,67625
+32926,62293
+32927,74124
+32928,50016,17883,26703,46165,33373
+32929,488
+32930,36445,8362,45764,79043,14177,26538,51375,53898
+32931,4611,44972,62730,900,51862,18331
+32932,47150,71088
+32933,36974,29591
+32934,79303,70306,7998,40867
+32935,57244,19618,74220
+32936,10836
+32937,6066,54086
+32938,43086
+32939,38540,34234
+32940,43820,64886,4794,34831
+32941,74580
+32942,76384
+32943,30772,38971,26112,74409,7108,62652
+32944,11964,30929,29986,894
+32945,25828,71593,10569,35205,13141
+32946,15858,65782,19098,34034
+32947,51583
+32948,63272,43227,61645,75273,66474,25310
+32949,4401,6735,66748,29141
+32950,4637,33259,75322,11840,73572,47,39777
+32951,33589,2654
+32952,20909,36092
+32953,24059,52942,56764,2192,34633
+32954,13510,61815
+32955,26737,51886,25791,74041,47625,59524,43689,74499,13247,75825
+32956,67533
+32957,76992,81680
+32958,23496
+32959,8572,21864,50358
+32960,81763,56719,1080,12700,73985,35974,60753
+32961,20809,13816,39110,43647
+32962,77586
+32963,20254
+32964,37575,694,54223,50640
+32965,53167,27427
+32966,37963,51020,62154,14366,15946,27101,30481
+32967,43753,31498
+32968,30634,3925,4756
+32969,55863,81714
+32970,1352,7416,25949,28962,74082
+32971,77966,17550,45900,53025,21858,55424,3892
+32972,47769,63254,46770
+32973,36775
+32974,18286,67157,27885,69335,40154,64876
+32975,51205
+32976,47682,77345
+32977,12111,35062
+32978,58539,33702,27745
+32979,81993
+32980,54204,19966,77868,68417
+32981,10688,5187,63112,7583,57365,73143,46235
+32982,7871
+32983,42012,22672,76539,41243,1911,49494
+32984,56426,52714
+32985,58874,26997,73385,79748
+32986,70868,44763,71266
+32987,80315
+32988,21388,43557,41463,58870,79983
+32989,72176,58400,7939
+32990,4998,78640,53155,16536,3175,1617,65074,58263,48713
+32991,3110,45778,60594,17129
+32992,48875,53143
+32993,52829,16232,22087
+32994,70039,31066
+32995,32603,28561,62320,70960
+32996,55053
+32997,5327,71854,18016
+32998,50254,45834,81939
+32999,5270,1534,55861
+33000,74247,10439,226,21719,20287,76250,15775
+33001,67664,59994
+33002,72270,74836,6023,54612,3105,51957,12032
+33003,2721,3601,81286,35255
+33004,41403,24485
+33005,80588,2518
+33006,71285,10136,29225,8447,7424,34922
+33007,12126
+33008,34491
+33009,82040,27805,26580,41252,81053,59345
+33010,34291,39440,81827,9451,21582
+33011,53621,14151,8209,5521
+33012,13043,28527,3144,29360
+33013,12585,64121
+33014,6168,26283,13728
+33015,2325,54828,19437,48016,78985,72360,31564,53081
+33016,8237,69217,51010
+33017,1511
+33018,22271
+33019,82016
+33020,35429,60596
+33021,71071
+33022,59226,15856,2064,39742
+33023,23320,667,31201
+33024,77177
+33025,42376
+33026,55099,46707,7279,54111,19382
+33027,24016,49122,78010,28404
+33028,68135,17856,27392,17311,60213,8737,49195
+33029,54034,81918,1167,73045,33854,67725,11121,76639
+33030,21465,30777,31668
+33031,22635,14787,53554,50470
+33032,78808,27804,65838,4382
+33033,20036
+33034,51215
+33035,41902
+33036,37297,43312
+33037,32984,35223
+33038,22419,5275,79076,15510
+33039,21914,43123,31505,52829
+33040,35591,51480,40497,17188,25047,76756,52329
+33041,68207,27777,73690
+33042,5804,40220,62989,37833,49565,12948,8433,24370,24687,79681
+33043,63295
+33044,35557,56937
+33045,69109,74681,24262,34175,67110,14914
+33046,23809,36994,49516,47071
+33047,81453,11235,57843,70730,70331,46368
+33048,74167
+33049,11718
+33050,52443,38205,81148,68544,78522,59585
+33051,11802,72082,24234
+33052,18875
+33053,77049,75514,52272,45776,48068,67132,22699
+33054,53475,71393,47922,28011,29332,48313,20905
+33055,42847,58861,4364
+33056,54920,55111
+33057,38662,66683
+33058,6689,35978,45061,38839,5209,11843,56364
+33059,3379,73122
+33060,60052
+33061,38569,69030,77473,3024
+33062,51440,40048,69337,67804,42182,14664,69576,4425
+33063,60024,77422,10290
+33064,37719,69292,44978
+33065,7183,49311,26058
+33066,82110,17589,69467,65115,71720,49403
+33067,6345,76610,49939
+33068,25983,22012,23157
+33069,38770
+33070,35270
+33071,67337,10134,76103,59070,63504,64978,78421,53967,19597,74685
+33072,18681,61116
+33073,38990,4553,22947
+33074,41514,33274
+33075,43283
+33076,50247,43418,71989,25184
+33077,7301,11269
+33078,24457,41456,14759,70260,30354,16534
+33079,32195
+33080,42870,59593
+33081,71935,22477
+33082,78779
+33083,37131,58615,44210,38968,24830
+33084,20959,4067,50181,26877,18050
+33085,598
+33086,47230,20876,65675
+33087,29126,2099,14747
+33088,20077,51914,77222,43373
+33089,76747
+33090,57028,60775,57192,962
+33091,16250,32803
+33092,6328,2874,38316
+33093,37838,29997,52993,21311
+33094,71473,58987,60851
+33095,36303,72791
+33096,36506
+33097,19194,63916
+33098,51258
+33099,57780,11315,223,53090,62962
+33100,39677,33774,63150,39539
+33101,11076,79697,44083,5688
+33102,41452,61868
+33103,20174,13480,77425,6778
+33104,23301,51131,10561,60873,1840
+33105,77382,26913
+33106,26434,39197,65497,33410,42463,65317,76393
+33107,37017,61402,2208
+33108,33929
+33109,23006,44358
+33110,71958,36852,28292,36181,48866,37663
+33111,70827,57249,25831,27338
+33112,74161,51010,8863,13241
+33113,36746,74660,25339,30706,2020,66886
+33114,7518
+33115,64862,7585,38487,16387,6884
+33116,14615,18282
+33117,64390,68907,57583,10550,60625
+33118,23659,1715,45917,57348,45109
+33119,723
+33120,24799,31007,7899,25666,3049
+33121,80699,77211,50197,17234
+33122,62839,17617,3513,28938,9312,4417,33003,37634
+33123,65865
+33124,7562,63903,32947
+33125,54877,34249,49592
+33126,21514,42049
+33127,56126,23963,49290,60520
+33128,79845,33072
+33129,63990
+33130,12626
+33131,48512,49082,66348,7453,36526,53895,47346,35353
+33132,23517,61394,66189,46364,6492,10810
+33133,21837,54051,33773,24440
+33134,49483,47005
+33135,77462,2476,20009
+33136,75491,40728
+33137,25320,25424,16707
+33138,60184,4286,24449,53010,55429,79194,67852,69921
+33139,12665,41272
+33140,60379,41697,62182
+33141,7004,9210,62600
+33142,29576,67440,43264
+33143,11464,39751,57675,40003,67181,27038,42689,20909,49985
+33144,51648,48415
+33145,23661,36911,16833
+33146,8459,14518,18139,29469
+33147,31289,54938,1408
+33148,80721,24663,798
+33149,1800
+33150,9148,536,1128
+33151,9115,66356,51780,66149
+33152,13014,14574,3888,6901
+33153,26410,54501,72033
+33154,15997,77765,9882
+33155,20495,1794,556,26937,46659,44830,52956,64603
+33156,75109,42366
+33157,22192,65199,42148,51044,14960,2175,35297,16764,29069
+33158,60378,19029,37469
+33159,10206,30683,53408,70850,70614,70550
+33160,34267,33355,42064
+33161,20066,13895,29481,9602,78900,38768,47836
+33162,66645,3796
+33163,16373,39142,54001,44998,71793
+33164,60970,55986,51589
+33165,41635,7280
+33166,34499,26823,42994,16715
+33167,78346,52110,42387,36820,53911,50670,73212
+33168,37493,34014
+33169,48767,43550,39737,77749
+33170,25676
+33171,33999
+33172,53730,63371,72034
+33173,36993,46957,38232,31119,68288,63727
+33174,6916,29709,632,15800
+33175,5195,44017,79446,2934
+33176,30296,53605,21730,66495,80082
+33177,51957,48962,44777,23102,74369,2481
+33178,1082
+33179,54735,27038,23596,59523,18002
+33180,29950,63880,72531,70866,74385,75839
+33181,62580
+33182,56943
+33183,9734,30191,4652,9613
+33184,37459,20722,2209,59928,76034,43175,59030,16871
+33185,39876,21479,24580
+33186,25052,39423,65250,29978
+33187,72065,10124,45486,78578,61085
+33188,76805,39986,71500,4563,22920
+33189,9817
+33190,66641,70900,24610
+33191,74053,26465,20188,1955,13818
+33192,20813,49322,54951,75613,71534,36846
+33193,19234,38043,57559,36742
+33194,61398
+33195,73859
+33196,53281,10260,68803,14234
+33197,59724,50323,45864,13255
+33198,61618,36611,3888,50882,14115,13312
+33199,54389,36451,39863,65626,74547,52928
+33200,22109,69315,60036,67239,19703
+33201,28767,32450,8547,22098,75134,603,53455,70771,49388,33602,25929
+33202,33326,51294,44783,45724,39206,79529,16485
+33203,6914,25696,1953,16188
+33204,24879
+33205,35429,12198,49763,19839
+33206,22170
+33207,21590,61041
+33208,34442,15625
+33209,64859,76833,51193
+33210,16823
+33211,15406
+33212,34205,2420,31873,79268,79788
+33213,20280,7891,37816
+33214,79571,6607,2717,4391,68239,16376,3430
+33215,57746,43839,43869,61565
+33216,36677,1586
+33217,1206,22152
+33218,13101,38255,43653,76718,41164,60324,80869,63013,53745
+33219,52297,35078,76790,64797,68762,1677,54249,40372
+33220,9860,67935
+33221,57201
+33222,57121,66047,80203,51294,64015,6744
+33223,37517
+33224,13680,19769,13173,71733
+33225,20567,40579,74600,57145
+33226,61548,81168,27643
+33227,15908
+33228,19243,28770,81982,26291,58282
+33229,1230,16766,42797,5608,44119
+33230,705,51663,17764
+33231,50373
+33232,80090,15593,21471,27808,18771
+33233,20799
+33234,76356,81201
+33235,38015
+33236,25821,46139,78196
+33237,72685
+33238,41581,28390,30853,29408,59628
+33239,73139,71937,74285
+33240,22786
+33241,2464,80301
+33242,36915,32506,32463,15588,66256
+33243,556,38833
+33244,10986
+33245,6026,35291
+33246,36566
+33247,25718,54683
+33248,31071,32084,29799
+33249,75890
+33250,70826
+33251,54049,2978,57427,22071,15712,67091
+33252,51956,41856,30602,63802,56899,66185,64834
+33253,80351,53650,57003,65628,31733,25155
+33254,18424,77995
+33255,3170,14661,7407
+33256,78682,19690,81053
+33257,74735,64774,17822,67510,54374,9146,63660
+33258,50708,65970,30837,39935,70332,74446,7808,32992
+33259,19445,41424,29130,61417,14194
+33260,28951,31778,12739
+33261,46640,35947,73716,32331,17286,18613,25229
+33262,64009,44541,28972,24786
+33263,8181,3792,52993,20447,22151,520,55559
+33264,55322,26911
+33265,44580,17057,77561,31584
+33266,10295,60399,77106,45862,81925,22242,64518,74981,6028
+33267,50168,30531,79947,48781,61866,65343
+33268,60126,65102,76799
+33269,12530,43794,36639,3087
+33270,75728,50791,70199,30863,14574
+33271,75446,68264,69683,74459,19794
+33272,69293
+33273,45809,54655
+33274,4633
+33275,36060,4733,30955,45447,44658,10663
+33276,1794,68395,42151
+33277,7836,1000,27134
+33278,39168,49100,69177
+33279,49387,9789,67712
+33280,35671,44562,26966
+33281,40574,12753,59806
+33282,44641,10855
+33283,63421,40781,38221,40259
+33284,76704,3200,69236
+33285,70515,47485,58577,28517,42398
+33286,72318,2564,52003
+33287,53531,21575,29319
+33288,64177
+33289,6794,55016,24996,80543
+33290,52757,40693,43194,1268,81022,30683
+33291,44074,35691,3109,3145
+33292,24618,39460,3689,23637,65443,17459,6882,75891,19627
+33293,10539,65617,76015,80368
+33294,14299,7036,67264,53667,72530
+33295,10320,4509
+33296,80438,77541,39809,52543,72361,19002
+33297,61427,43440,2048
+33298,25063,21793,10006,8805,27713,52274,74167,11070
+33299,80335,49703
+33300,25424,74852
+33301,63716
+33302,10241,9236,70846,55855,6364,60119,50430,16444,31139,74039
+33303,46769,19415,41072,56426,33874,61794,14533
+33304,16299,52313,13195,28539,39298,18178,39155
+33305,16514,3216,46037,50189,3672,70366
+33306,6023,58568,5218,47313,21810,29417,81057
+33307,36311,26005,40104
+33308,48723,70466,44959,38317
+33309,20734,10248
+33310,44975,76948,61124
+33311,12408,31570,77634,63996,65477
+33312,62746,50802,32188
+33313,66653,57737,34916,10262
+33314,79069,70379,63328,6463
+33315,80119,43925,37057
+33316,32091
+33317,75844,42958
+33318,46659,77290,46573,37057
+33319,5525,47107,62166,19273,8581
+33320,20565,76006
+33321,61791,4186,32973
+33322,52587,19506
+33323,31871,18681,29150
+33324,39981,3271,37026,53770,70278,64921
+33325,25182,65205
+33326,51777,5294,54779,50632,17817
+33327,57291
+33328,57968,75159,1102,30023
+33329,50702,30064,58709,9821
+33330,29887,31626,22200
+33331,14240,71934
+33332,54959,77788,68395
+33333,80705,59028
+33334,31160,20653,41784,1690,6332,17621,22312,42394,63690
+33335,3399,17361
+33336,53217,24413,32416
+33337,64466
+33338,69310,31019,59197,45242
+33339,51430,68417,66678,7548,48436
+33340,10833,77844,32488
+33341,44436,65979,79831,67249
+33342,10863,42028
+33343,21038
+33344,78987
+33345,1926,43854
+33346,34895,76710,43583
+33347,4583,56473,9984,78632,19451,25290
+33348,73232
+33349,63079,29808,40063,73122,77023
+33350,40357,47688
+33351,50371,72942,16421
+33352,71931,11950,4465,69601
+33353,20015,54853
+33354,6696,40380,40263,80573
+33355,55759,31096
+33356,62237
+33357,61679,10506,584,69914,67096,9405,31836
+33358,18695,75360,13379,50066,68581,24220
+33359,27248,37717,22948,6461,81040,74438
+33360,37848
+33361,28947,74474
+33362,40243,59584,65520
+33363,20598,78408,28125,10
+33364,71020,40643,77091
+33365,9042,73019,32208,19153
+33366,57081
+33367,55857,12854,76020,26014
+33368,19077,31932,31601,65583,21214
+33369,65824,77231,81106,39195,42666
+33370,67976
+33371,26368,63884,18284
+33372,35902
+33373,26085
+33374,24933
+33375,57411,28503,14286,21679,56576,46560
+33376,67335,37494,75120
+33377,27725,62077,13201,26128,40048
+33378,73697,70596,7806,14509,31577,2946,36918
+33379,10751,11477,60639,42489,1442,57964,12235
+33380,13257,7288
+33381,63954,70445
+33382,8188,9955
+33383,59474,28278,314,36327
+33384,79270
+33385,22109,10369,20650,17040
+33386,46555,31446,77573,23133,23894,67386,18737,45127,18466,64749,49931
+33387,71760,76956,74371
+33388,70645,81006,904
+33389,818
+33390,10962,71586,14195
+33391,22409,55369
+33392,76587,57059,29130,35358,35240,6203
+33393,15845,22400,65738,20942,61001,78243,13744,41558
+33394,36300,44090,58593,40332,50770,39659
+33395,24989,47062,25865
+33396,30786,72231,39341,37997,4176,59707,45154,30548,63348
+33397,41380
+33398,44474,5693,15587
+33399,68571,23387,70873,71784,80312,54855
+33400,42547
+33401,48863,79148,55409
+33402,7665,21201,22027,48115,505,68014
+33403,34737
+33404,50746,78123,22078,52403
+33405,79005,11437,78227,20744,73371,78072,69465,4455,23786
+33406,61412,3459,41000,65389,15507,72302
+33407,67556
+33408,21796,242,20957,9814
+33409,31032,81675,39637,78125,5456,61422,5224,22413,26611,24631
+33410,70401
+33411,18495,4852,72212
+33412,22390,21380,4743
+33413,16815
+33414,65158,15101,78534
+33415,35611
+33416,30018
+33417,439,11641
+33418,46073,18765
+33419,72710,16256,19029,40974,50092,16609
+33420,25167
+33421,51533,4843,64115
+33422,30684,53026
+33423,69757,33841,76116,21758,14716
+33424,42376
+33425,39568,38110
+33426,31413,68374,69456
+33427,24355,17128,71212,1932,58343,4825,42982
+33428,3633,78915
+33429,65169,48321,73522,45713
+33430,3399,42572,51025,16873,41710,78539,61261
+33431,59256,65766,21031
+33432,55933,1976,53582
+33433,68636,62266,75124,56729,26949,49358,34773,41924,72563
+33434,1218,63726
+33435,57513
+33436,55952,17082
+33437,14211
+33438,33281,9695,18742,39457,73205,75113,53047,70227
+33439,637,56807,36755,8212,69654
+33440,18958
+33441,299,65648,9675,9297
+33442,3440,76085
+33443,30348,42926,10255
+33444,257,78993
+33445,6149,17024,14433,3959
+33446,14920,14238
+33447,29824,15094,78646,20395,54687,16102,31350,67443,51709
+33448,31856,18732,59484
+33449,28645,68994,77735,74065,55331
+33450,37088,59099,44820,26273
+33451,50608,54135,59178,5391,64904,65905
+33452,6824,19776,11247,16078
+33453,12902,36378
+33454,71767,42523,40894,13104,57226
+33455,52037,34943
+33456,3610,3534,16707,67639
+33457,18631,8002,60970,52182,357
+33458,60921,11345,13846,79312
+33459,17403,3572,32977,31107,66610,48732
+33460,40940,37065,46664,29507,9417,56893
+33461,49498,5527,29726
+33462,19014,8201,71227,37367,50633,30952,31017
+33463,72396,29358,22994,331,66519,67887
+33464,44433,36037
+33465,6330
+33466,16938,20548,29617,77749,28461,89,23774,67051
+33467,31205,76710,5779,29921,75917
+33468,46804
+33469,16882,37687,26028,45830,80012
+33470,69659,18311,25679,32370,33079,47859,70621
+33471,48369,31613,4813
+33472,67695,13133,43542
+33473,75137,35799
+33474,53866,50141
+33475,14865,63071,1758,26864,2763
+33476,45096,32515,71965,9043,51652,53588
+33477,65081,32136,48418,16066,9530,29035
+33478,19306,4125
+33479,18936,6651,8994,9515,6079,2633
+33480,49847,14475,69485,77141,56235,2266
+33481,21243,65278,54577,42807,29270,1308
+33482,58157,59028,25882,52086
+33483,9124,78261,16958
+33484,7207,15809,75668,68383,38116,56521
+33485,41732,79652,198,57960
+33486,12200,3018,79901,5025
+33487,42821,18779,32615,38762,5075,63286,46304
+33488,49904,46932,79193,26539,997,54140,28473,44810,62142
+33489,74395,36596,28305,32391,42015,37608,47819,4378,3588,28508,15359
+33490,71278,25130,65121
+33491,50109,24534
+33492,59956,50656,68018,64407,69038
+33493,32598,3177,16362
+33494,64738,1878,31198,31084
+33495,80291,16793,42544,10421,75088,47733
+33496,73710,30961,60511
+33497,40392,12219
+33498,4756,48163,6391,40894,3922
+33499,37678,73177
+33500,48033
+33501,10537,62251,42782,81942,16935,35656,9066
+33502,19851,67684,47099,681,20519,36614,75552
+33503,10917,45215
+33504,66327,51551,77817
+33505,27485,18558,10001
+33506,15709,1496,45648
+33507,44527,15897,26148,60504,20244,41213,71032
+33508,20595,1967
+33509,10762,14153,48370,53247
+33510,1812,61037,60916,10930
+33511,13981,30345,60835,23658,45891
+33512,15625,64459,69964,43677,5789
+33513,64998,24968
+33514,41202
+33515,14431,74619
+33516,20332,39629,9745,62702
+33517,68686,22548
+33518,21439,32223,5185,10558,3826,57841,72691,20814,251
+33519,4696,46947,2661,68458,79830,78899
+33520,66198,66082,20056,76811,45748,51612
+33521,23875,16531,49890,48504,69670
+33522,61295,36832,66498
+33523,77909,51648,18060,3197,21420
+33524,58959,23875,53733,3940
+33525,49059,18296,35312,38200,33988,70781,73527,45148,20075
+33526,59646,25370
+33527,29988,57907,7418,45483,53071,75982
+33528,58652
+33529,80335,13260,23808,80760
+33530,20166,15716
+33531,5340,92
+33532,63670
+33533,77194
+33534,5466,6558,29649,30451
+33535,1598,43105,20812,62441
+33536,16768,79672,24692,26839,26323,54815,67282
+33537,50355,17707,65994,54144,80634,2934,407,58329
+33538,6400
+33539,3755,79826
+33540,2721,39511,47134,32925,8730
+33541,82039,7246,9153
+33542,5205,50868,8044,21819,37078,41984,3764
+33543,33017,76384,598,54865,77055
+33544,23470
+33545,73735
+33546,55166,67323,50920,71934,70985
+33547,6317,68010,66993,51219,76243
+33548,79549,16960,67368
+33549,21265,56080,28314,56086
+33550,13514
+33551,28559,1709,23661,59861,76442
+33552,30589,58350
+33553,31432,527,59653,41000,47191,41909
+33554,18732,5678,81932,73901
+33555,46386,257,19750,43637,32339
+33556,1689,19846,2351
+33557,68394,80053,13191,20436
+33558,73225
+33559,12455
+33560,17465,12213
+33561,50978,10869,10962,30825
+33562,55606,11792,9306,57498,21552,31110,42290,55971,10447
+33563,58550,39492,75908,30140,65089,18574,68421,32289,29948,35967,11924
+33564,31091,37233,80759,33922,24343
+33565,23650,18566,55340,28218
+33566,5547
+33567,26553,817,78776,41373,73170,35543
+33568,40023
+33569,3030,19248,24062,30896,44623,19838
+33570,9417,7843
+33571,28634,76428,29925,49350,49120
+33572,79603,76217,41052,57718,48544,39743,484
+33573,69269,46522,22717,80440,56538,25360,16693,9533,15243
+33574,54881,79415,38093,27644
+33575,11928,20932,64231,12180,1912
+33576,19164,4237,37409,1724,36378,41894
+33577,47926,81642,30181
+33578,8628
+33579,62726
+33580,5371,55351,31753,35156,57069,52821
+33581,46752,76351,14080,3003,51161
+33582,71912,24880,46201,75819,7158,36674
+33583,5133,58001,73511
+33584,18537,52080,58833,53943
+33585,58271
+33586,41142,59541,3842,29421,8212,12737,45437,54226,19236,62047,62556
+33587,1082
+33588,60249,54363,3799,39766,1200,50196
+33589,67085,32547,24602,20052,46740
+33590,71740
+33591,58748
+33592,49459
+33593,2435,51107
+33594,34210
+33595,35840,18945,494,74246
+33596,15812,33034,5782
+33597,16192
+33598,77921,33231,28972,14604,80033,72966
+33599,22299,69143
+33600,59201,64334,11017,18690
+33601,66867,28221,10004,4734,72939
+33602,49379,49092,53360,57192
+33603,78993,67318
+33604,54742,47666,79742,26890,12983,20237,62278,17147,33129,78404
+33605,27938,31178,28429,74096,5830
+33606,11997
+33607,33056,28259,73620,38356,75579,20171
+33608,9202
+33609,11842,75172,30525,17126
+33610,26376,41219,64033,63408,826,70977,9216
+33611,52346,21313,56226
+33612,36487,32979
+33613,72558,37188
+33614,33497,71964,1509
+33615,58085,48393,62310
+33616,46902,21173,45021,56300,47702,26049,15743
+33617,75047,38418
+33618,48890,55108,26101
+33619,74103,5207,62147,8702
+33620,35514,17865
+33621,56617,34814,62127,44579,47247,14139,71077
+33622,70222,18286,53027
+33623,30376,64589,37543,25060,65702,36861,1138,43761
+33624,59446
+33625,41215
+33626,53936,42485,22932,37349,4436,32669,69548,76172,27717
+33627,18053
+33628,54325,15332,41421,37960,39278
+33629,79624
+33630,72819,63307,69371,37399,57662,67695
+33631,20927,51106,37495,1251,35437,24508
+33632,56818
+33633,28425,27696,27485,77832
+33634,25053,56487,53989
+33635,3146
+33636,1751,52599,60541,8611,44976
+33637,55445,12585,49951,11996,60594,13662,24569,19967
+33638,1098
+33639,13855,45919,71027,62904
+33640,40974,41073
+33641,35958,28953
+33642,8152,77966,3494,11416
+33643,53625
+33644,48978,7213,37576,70848,52015
+33645,14062,57412,81440,33833,79459
+33646,61022
+33647,34441
+33648,23002,79084,61492,68250,81858,40858,14100
+33649,15054,914,30409
+33650,62044
+33651,43130,17773,10836,52150,50654
+33652,61448,25289,29001,6099
+33653,77269
+33654,54232,73042,78873
+33655,481,66468,28035,51016,59369,38156
+33656,22644,60424
+33657,43447,32423,41497,33483,71723,1455
+33658,51216,35616,81249,44780,18798,48145,32440
+33659,38674
+33660,2259,81225,66956,76812
+33661,45913,75065,55752,56226
+33662,36071,17014,28164
+33663,37294,67126,80359,81898,69398,14894,47133
+33664,5854,43702,49195
+33665,50229,8040
+33666,36369,42331,16186,53457
+33667,71394,38743
+33668,39234,35857,45882,72897,78217
+33669,5455,60864,36655,36001
+33670,7140,17955,68531,37286
+33671,16486,4398
+33672,23170,24530
+33673,77887,17020,49589,9394,1325,47367,76659,31925
+33674,71649,62356,54014,54212,28519,53892,42158
+33675,7250,61368,6861,18162,75578,18242,66606
+33676,78800,74582,14355,5498,13275
+33677,15459,15093,52795,73849
+33678,76407,31329,24132
+33679,19420,68815
+33680,29521
+33681,32678
+33682,79218
+33683,52475,468,34216,80426
+33684,61484,22806
+33685,24220,25919
+33686,28453,31995
+33687,68978,9239,1463,50534,81314,25201
+33688,7781,37723
+33689,5967,50851,52004,36919,5194,79228,21546,76369
+33690,59179,18305
+33691,17502,45547,53745,27026,27924
+33692,53371,6586,77998,3200,33052,70747
+33693,12658
+33694,63713,50399,26464,38918,61604,13986,196
+33695,35238
+33696,58580
+33697,1949,60006
+33698,68121
+33699,81556,66329,53387
+33700,64493,950,46439,50610,78547,27566,55050,27694
+33701,31703,79209,3310,71813,21716,68561,19117
+33702,44541,45320,37825
+33703,67651
+33704,54380,944,3545,24958,59878,12661
+33705,69753,7574,22650,908
+33706,28539,67670
+33707,81822,69960,59494
+33708,72297,68927,10231,7425,27697
+33709,81370,15940,25429,1080,65770,34724
+33710,35248
+33711,65995,28394,4236,63650,73007
+33712,49391,72305,68138
+33713,40486,19422,14843,47367,43616,22752,53880
+33714,33790
+33715,11727,68260,8821,55481,1619,76776
+33716,64603,44661,75243
+33717,27353,3357,22927,25374,21443
+33718,61655
+33719,71604
+33720,73066,26129,73234,1003
+33721,78153
+33722,4141,17732,56845,40337
+33723,74054,33975,12393,65852
+33724,15139,41441,50408,63846,45236,3582
+33725,51538,49352,6334,21387,1482
+33726,61454,25241,63342
+33727,35553,9294,36160,31788,23965
+33728,26215
+33729,44626,78245,21539,35779
+33730,48922,70905,702,61554,1805,52287
+33731,20705,33851,58903,57934,47683,2746
+33732,48748,7419
+33733,45131,2212,61402,6778,45482
+33734,65491,70228,54511
+33735,27720,62143,48458,23867,9275,74210
+33736,11699,65436,69338,67180,61300
+33737,10940,51716,51452,30852,74875,40551,69454,15940
+33738,19672,57808,32077,7748,41481,76903
+33739,4376,76351,41710
+33740,32952,42363,66415
+33741,64336
+33742,42339,16073
+33743,64780,65320
+33744,38888,73545,74777
+33745,81764,25432,370,5939,15232,11231
+33746,33272
+33747,47133
+33748,62251,14857
+33749,23120,49387,12216,81162,42737
+33750,19927,29396,75823,23451,9421,81081,40903,63064
+33751,81092
+33752,56321,76322,49651
+33753,61230,76775,52255,9638,6099
+33754,7489,64654
+33755,10494,51298,45081
+33756,30901
+33757,8514,74697,40398
+33758,63790,78928,31765,26151
+33759,1433,4427
+33760,17901,12191,44078,13568
+33761,21758,77327,43178
+33762,65929,81444,52607
+33763,55500
+33764,46242,69509,25596,64458,30316,45984
+33765,41119,47742
+33766,32559,10926
+33767,52120,75078
+33768,338
+33769,80514
+33770,48115
+33771,58485,8709,20990,29585,41549,38941,2629
+33772,77145
+33773,24929,51062,78267,24573,75681,20761
+33774,3760
+33775,36686,25816,9644,45830,43083,15851,81560,72429,25461
+33776,6558,32772,68978
+33777,77351,35667,63975
+33778,67909,49806,57069,26135
+33779,67336,15628,1373,14310,39546,43050,66920,4770,78760
+33780,17399,58527,62041,62863,22063
+33781,53091,44427
+33782,71602,38058,61452,47053
+33783,70381,30861,62693,34303,74254,19192,18246,77269
+33784,5454,57298,9007
+33785,63134,74574,29704,57729
+33786,58036,75716,79009
+33787,13756,2435,4918
+33788,49567
+33789,49323,74831,47292
+33790,19046,39818,22460,60805
+33791,11225,70662,20667
+33792,81799,55763,19140,271,81836,7934
+33793,9149,10409,49592
+33794,9774,39860,75200,76810,11948,23182
+33795,66041,57273,61115
+33796,23624,78995,65924,6971,80521,34569,13244
+33797,36128,56012,7809,80425,72251
+33798,30135,81383,13574,9385
+33799,31725,37567,78092
+33800,28998,40788,14377
+33801,34767,55862
+33802,63300,50941,61107,9611
+33803,12346,25207,71539,17961,42272,51374
+33804,47236,10397
+33805,837,80400
+33806,7878,20103,80457,43457
+33807,47374
+33808,74102,18866
+33809,18974,72560,25742,23941,70646,51866
+33810,13049,29388,46465,54257,71013,8386,64931,80320,458
+33811,62882,64666,71035
+33812,32900,53131,52323,7448
+33813,69395,15997,3772,29911
+33814,27812,68403,66824,601,23874,18382
+33815,77912,14519
+33816,69172,18017,31974
+33817,77068,51128,53044,57535,22143,21386,3669
+33818,49892,46900,34129,48232,43252,22525
+33819,23696
+33820,44402,32644,19763
+33821,62241,67245
+33822,16446,18005,52904,70248,49951,52541,81530,49080
+33823,28062,81367,30530,57225
+33824,19354,80469,30634,62818
+33825,10123,79608
+33826,45087,81475,16151,80022
+33827,34895,31133,52028
+33828,5144,8935
+33829,16880,74734,36452,48858
+33830,20294,2859,69721,58243,24418,67400,78019,6562,54255
+33831,20166,74665
+33832,25210,28764,14736,51785,3640
+33833,47583,2905,68802,15630,52881
+33834,37137,76679,54426
+33835,8385
+33836,4872,46923
+33837,14992,9401,4420,54230,59843,81075
+33838,7777,35118,7719
+33839,2512,49283,29759,73076,31245,50168,3772
+33840,22362
+33841,722,62243,37428,63196
+33842,20356,16164,25004
+33843,58183,35905,46525
+33844,17119,5826,69308,71528,1457,21772,40780,15587
+33845,80089,48940,727
+33846,38444,70316,8711,47974,62419
+33847,9817
+33848,72054,81017
+33849,39585,41029,25368,80950
+33850,50460
+33851,11908,32209,2734
+33852,5222,73194,59365
+33853,60832,36189,1747,38626
+33854,21084
+33855,50871
+33856,16267
+33857,69942,26458,44169,79491,8595,73258
+33858,2431,25567,4011,34806,24979,25089,49186,61472
+33859,23576,22575,30842,54779,82020
+33860,45541,8982,29649,22624,39754,29470,76756
+33861,78340,77924,13257
+33862,71426,18363,47384,551,51503,47672
+33863,24715,11870,13312,23361,60111,78481,15873
+33864,68875,6752,10084,18256,8430,64929
+33865,53435,25949,71936,9726
+33866,621
+33867,63434,68507
+33868,61513,30353
+33869,15298,59128,66844
+33870,55060,21322,40671
+33871,6827,14396,2524,52986
+33872,36873,55283
+33873,57196
+33874,19140,74521,37310,64364,71071
+33875,19811,31249,27000
+33876,20637,36878
+33877,43016
+33878,32937,58003,6347,77374,22244,77869
+33879,53504
+33880,70369,70510,49680
+33881,11178,62495,79043,47077,42561
+33882,64882,1016
+33883,33250
+33884,41391
+33885,166,38112,43480,9165,68683
+33886,69271,73643,69933,78112,18504
+33887,55616,15486
+33888,52400
+33889,50387,50084,66835
+33890,60177
+33891,26101,764,10340,39512
+33892,45608,70255,79295,9284,19014,3511
+33893,47129,6588
+33894,7504,3883,30647
+33895,57762,62988,33690,71982
+33896,27940
+33897,46743,55376
+33898,17764,61576
+33899,37660,46537
+33900,17482,33515,30689
+33901,20218,32825,80214,77778
+33902,42199,35094
+33903,44106,29838,65405,77327
+33904,37725,11331
+33905,77154,3884,15114,16238,22204
+33906,44227,30162,66690,13987,40955,52998,41821
+33907,57535,73038,31393
+33908,59042,58737
+33909,69758,27064,28398,19132,6743,36494,38581,48100,28762
+33910,11655,16789
+33911,12161,62537,24698
+33912,37583,58061
+33913,81924
+33914,35589,6085,48638,52072
+33915,59848,7192,47552,64010,41483,27949
+33916,11584,1387,42612
+33917,51826,67625
+33918,67949,28580,36515,31137
+33919,19163,58727,47471,36819,80213,4539,44287
+33920,9282,3306,81465
+33921,1784,47825,44903,23003
+33922,50262
+33923,9394,57249,58149,48340,59950,77633,79647
+33924,74225,40754,69627,80862,47025
+33925,51863
+33926,65538,7021,69042
+33927,36586,80386,40069,39928,75774,9904
+33928,65289,75413
+33929,81000,49791
+33930,13104,40893
+33931,27485,15902
+33932,2285,2259,47429,5663,1240,18958
+33933,16452,42121
+33934,66369
+33935,50,48239,55840,31753
+33936,69487,29071,80377
+33937,60014
+33938,2213,6887,4524
+33939,33472,5319,78346,536
+33940,37025,23056,38820,37056
+33941,15434,50516,47931
+33942,57469
+33943,32091
+33944,33189,17277
+33945,47150,73283,31232,14310,77645
+33946,1895,54260,29332,29133,75160
+33947,15200,71904
+33948,80741,64584,8412,32895,47146,6235
+33949,42948,32245,2040,66946
+33950,38261,1735,62876,48878,70444,47831,19913
+33951,55176,47200,39815,8911
+33952,77845,51431
+33953,95,48580,52945,38848
+33954,79558,17528,42011
+33955,66229,3107,57515,54417,81357,6395
+33956,63438,23729,60583,79758,18845,59215
+33957,4694,39388
+33958,73698,61091,41956,81369,14237,75284,72865
+33959,15244
+33960,50163
+33961,54927,72950,55145,1820,34250,11669,16567,67720
+33962,44276,1404,50065
+33963,65282,56721,22875
+33964,56536
+33965,9616,68720,56126
+33966,28020
+33967,78091,62165,7925,6917,62598,225,60947,62017
+33968,22683,24607,76137
+33969,70038,44777
+33970,24018,76216
+33971,40500,28523,71404,76287,7871,33629
+33972,20804,46710,58813,7871
+33973,78440,27685,29123,14185,43095
+33974,7768,6866,7291
+33975,45991
+33976,39003,19255,42995,8042,15190,80831,29167,17821
+33977,25850,29125,68570
+33978,61957,1609,58672,48424,32112
+33979,1772
+33980,77284,40725,2702,63415
+33981,78346,71832,55493,1420,5774
+33982,22998,67287,22886
+33983,33706,75697,21069,35527
+33984,47748,32981
+33985,28116,27026,19382,17236
+33986,80838,1317
+33987,69201,78588
+33988,56349,80428,63251
+33989,28958
+33990,54463,25949,38295
+33991,67718
+33992,15935,23026,34482,16452
+33993,70492,76751,42669,30320
+33994,41743,7207
+33995,9011,32893,36975,52793,177,66515,8070,7333
+33996,29056,50421,61806,46353,41353,50,27181,42571
+33997,46281,52400
+33998,22129,14256
+33999,4603,5306
+34000,71205,76308
+34001,7679,34165,66109,63959,61784,37942,76078,52223
+34002,32429,22119,79301
+34003,46275,13604,77053
+34004,6392,38675,30310,37667,50021,69627
+34005,7856,51683,17695,53576,53649,58925
+34006,36685,75169,36050,43606,49761
+34007,18060,65914
+34008,68554,47007
+34009,14671,31721
+34010,4911,32841,77323
+34011,47302,75370
+34012,8000,28315,25242,19797,66379,53531,68668,28641
+34013,65539,63869,65977
+34014,65876
+34015,63257,4863,35541,5144
+34016,44058,81303
+34017,23597,82117,23053
+34018,3574,43499,38975
+34019,58101,60378,53604,14696,1447
+34020,49807,48543,2285
+34021,69031
+34022,54516,8753,65644
+34023,394,81543,69701,17171,32125,19884
+34024,46055,27168,53703
+34025,43810,3516,11526,73470,41100,54114,32736
+34026,34273,29927,56506,22288
+34027,1724
+34028,7606,11843,69675,20889,58881
+34029,2396,65122,72313
+34030,50902,53420,60182,78025,24586,49805,46012
+34031,71545,77234,79745,43477,69178,72099,24305
+34032,36677,53046,12999,45860
+34033,72594,44226,34679,26479,39061
+34034,41368
+34035,31744,71268
+34036,31454
+34037,2942,71999,11995,4892,14861,12205,54820,40995
+34038,9611,28639
+34039,73657,79586,75462,1873,387
+34040,1953,71881,37420
+34041,40108,57694,58807,17639
+34042,50528
+34043,51751
+34044,19076
+34045,13744,52945
+34046,23926,59082,76683,42265,70234
+34047,37645,45757
+34048,36335,73000,21467
+34049,52919
+34050,46439,20641,45888,7883,21160,50005,80268,49400,53995
+34051,77498,32601,18173,52696,58133,68052
+34052,67332,3984,20079,20597
+34053,29376
+34054,64991
+34055,39070
+34056,25377,18681,17731,12435,60581
+34057,81782,25410,3700,60193
+34058,71927,35548,78409,52520
+34059,5327,15299,78859
+34060,28951,66397
+34061,44477,34802,23500
+34062,73313,35906,73520,29913,8252,46019,63101
+34063,34633,58569,54635,16623
+34064,30913,59136,7315,63079
+34065,40593,3220,54620
+34066,12006
+34067,75977,55859,13848,23257,40297,6650,81971
+34068,5782,3666,46516
+34069,43350,81239,25076,23346,65780
+34070,39973,48265,20721
+34071,39351,47466,53726,46030,29344,64134,29765,67459,20228
+34072,58449,33462,43138,41627
+34073,75477,64719,55962
+34074,8642,53854
+34075,66888,36108,18555,27825,26812,49278
+34076,71977,59930,51973
+34077,2500,37204,48640,5020,56360
+34078,2121,35692,50532
+34079,55582,65965,39132,51191,44819,38859,37009,70209,77523
+34080,29175,317,72103,65108,78162,44083,75255,3907,35726,42574,34129,71942,50583,28114
+34081,74405,51379,18397,46970,19483,8957,42645
+34082,74172
+34083,2353,26493,78453,19599,70355,71630,74774
+34084,33603
+34085,72068,44270,72464,15402
+34086,61138
+34087,51581,29465,2206,47133
+34088,20762
+34089,35777,1843
+34090,48272,4338,76765
+34091,55284,2158,50377,66138,42207,36106
+34092,26306,71776,21521,54147,68765,58186
+34093,52390,14663,21802
+34094,10901,41408,21261
+34095,58073,12936,57542,59024,729,29711
+34096,29215,14545,2460
+34097,72335,31847,3120
+34098,55774,77431
+34099,64208,18608,28914,67852
+34100,80636,81500
+34101,20170,20803
+34102,70732
+34103,66163,39797,81783,78512
+34104,37872,50287
+34105,1585
+34106,48234,21893,58318,15611,32158,44727
+34107,70868
+34108,34441,71959,62447,43366,59352
+34109,48524,68705,29642,72483
+34110,77413
+34111,19999,77937,38644,60942,40637,28522
+34112,8928,12633,10250,60379
+34113,60670
+34114,20907,65524,555,39670,28342,75745
+34115,38637,69147,10948
+34116,26422
+34117,3000,60097
+34118,33405,80232,9229,12324,77564,33124,34500,66261
+34119,48618,78105,41390,58276,30221
+34120,3574,35705,13429,46269,48301,21334,29407,41296
+34121,76271,77596,73264,31018,73976,61825,30273
+34122,18851,47232,20780,14861
+34123,52348,38803,44129,80975,36298
+34124,73359,23102,44058,35510
+34125,78541,5678
+34126,76113,32962,69050,29997,35094
+34127,64740,6023
+34128,18684,67634,35722
+34129,8244
+34130,52633,22947
+34131,45008,21922,69037,72730
+34132,75188
+34133,28759,66707,10041
+34134,23003,74352,63764,64529
+34135,27950,15184
+34136,48981,11110,44697,75051,15381
+34137,4805,50269,17094,47265
+34138,39795
+34139,24912,79837
+34140,42118
+34141,67016,40017
+34142,44721,15844,35056,25677
+34143,22341
+34144,66198
+34145,30012
+34146,3674,36020,46223,72765
+34147,26309,54809,38763,44743,21959,50420,71421,30345
+34148,19586,34240,15850,37332,36803,56506,43277
+34149,22161,36508,49517
+34150,66085,80015,23808,20525,63137
+34151,47388,10001,26651,51046
+34152,45326,44037,30834
+34153,47717,44510,42043,43980,35180,15992,66312
+34154,70277,34139,72399,38506,56701,21162
+34155,77088,80445,62068,58669,75441
+34156,12169,12435
+34157,22935,13437
+34158,53472
+34159,75890
+34160,54454
+34161,41593
+34162,14227,33209,10400
+34163,16547,12748
+34164,15706,71831,77774
+34165,48058,32832
+34166,22438,74995,18967
+34167,960,48067,22900,50485,78012,36023
+34168,36045,51795
+34169,45512,74372,44303,61303,18023,16567,49193,44705
+34170,16944,82005
+34171,73359
+34172,46075,52890,73884,69979,73109,30387,62405,65955
+34173,22739,59741
+34174,21936,63761,17715
+34175,56840
+34176,29784,34448,54543,21304,45386,45369,26647,57031,77620
+34177,22075,61614,28893
+34178,26258,26368,79510
+34179,40633,40530,3239,4439,43621,73060
+34180,69860,74362
+34181,73831,3500
+34182,36883
+34183,18048,45788
+34184,37445,26789
+34185,28621,68494,3625,54622,54302,1367
+34186,38988,71224
+34187,32041,25945
+34188,3463,73331
+34189,74084,47993,267,14622,63838,36042,36539,52029
+34190,45439,51750,52479,7928,24554,67999,54917
+34191,29810,67613,42062
+34192,37298,62580
+34193,2482,71032
+34194,44108,53541,23807,41229
+34195,40506,79742,38241,42138,25560,71917
+34196,51881,11101
+34197,79450,6466,9662
+34198,68084
+34199,32245,14364,71994,81318,12350,79697,81091
+34200,76549,46583
+34201,71485,81939
+34202,22309
+34203,13265,57389,27494,23892,17448,5055
+34204,24055
+34205,19840,15289,5768,53713,32902,76714,59575,12893,69073,75869,6291,14102
+34206,69833,33892,7181,43741,44381,46755,36692
+34207,30457,56614,72558
+34208,78268
+34209,58172,6903,65803
+34210,49304
+34211,6220,11477,31246,1480
+34212,77236
+34213,73627,74308,64273,7023
+34214,10240,73795,38219
+34215,11714,5682
+34216,25981,75253,26635
+34217,20416,41682,72889,4657
+34218,2056,23667,21397,60707
+34219,59469,9109,12102
+34220,26611
+34221,79598,6540,37745,12685,10239,27664,33233,66856,72988,39344,34230
+34222,54976,43191
+34223,51441,64601
+34224,65445,30546,60091,10163,6554,47227
+34225,9461,53920,8359,75082
+34226,66268,28345,5781,72851,29184
+34227,6934
+34228,27533,43590,61997,9007
+34229,52163,57208,67401,3390,33761,22578
+34230,13743
+34231,61997
+34232,71227,76175
+34233,18508,34833,19262,77200
+34234,12533
+34235,76954,41979
+34236,5728,42178,47817,40273,67711,81471,9448,61277
+34237,18208,80773,64194
+34238,37771
+34239,25864,3091,71059
+34240,24425,18042
+34241,55506,63903,29648,11887
+34242,35822,50992,63846
+34243,39710,61757,43883,30637
+34244,43283,65802
+34245,45548,46828,68493,32642
+34246,57981,72441,64400,59239,50140,54352,14666,64809
+34247,25840,25019,35727,59463
+34248,53625,5914,50636,42980,21424,40494
+34249,53911,4271,22273
+34250,71367,33615,30371,6288,64918,55006
+34251,15261,36928,19925,25124,37174,7811
+34252,6012
+34253,39054,81934,12022,74880
+34254,20793
+34255,2473,58125
+34256,56096
+34257,1311,64529,31957,20482,74437
+34258,4792
+34259,6144,76324,62507,9666,66594,18260,24417,55224
+34260,56276,20436
+34261,1684
+34262,63860
+34263,45919,38332
+34264,32314,74541,58005,69258,50120,23496,79045,6701,60748
+34265,34563,9924,45830,26195,43187,4841
+34266,60993,61683
+34267,22311,9122,52348,25173,724,77211
+34268,76302,1823,34794,18266
+34269,31342,11795,17846,76625,46790,73006
+34270,37164,56035,27819
+34271,32110,66786
+34272,50943,42250
+34273,32478,36365
+34274,19238,7020,6554,54706,52258,23787,15406,1482,40655,55686,8406
+34275,36387,12115,37822
+34276,18514,71957,9614
+34277,9551,2861
+34278,75523,55076
+34279,6592,35732,64193
+34280,40594
+34281,17464,12403,71412
+34282,36208,52278,49536,12802,32418
+34283,22450
+34284,79328,28536
+34285,35666,53052,29095,22664,18278,9531,60424
+34286,16090
+34287,65035,45783
+34288,46353,73697,3673,79223,68611,2057,3446
+34289,3000,76040
+34290,42946,1028
+34291,35174
+34292,28188,22481,18249,43046,39655
+34293,48496,46630,17228
+34294,1789,71262,11943,63234,11063
+34295,18228,32583,67348,64408,52472,29735,50923
+34296,212,8880,39879
+34297,72688,2391,10101,70403,74944,19068,52770,75611,42952
+34298,77544,62793,6680
+34299,43773,16468
+34300,41857,53444
+34301,31221,26252,115,61051,51259,19364,22370,73051
+34302,25295,64403,9787
+34303,30416,39737
+34304,36800
+34305,36531
+34306,19625,17534,66257,40764,9453
+34307,68565,6508,16852,10473
+34308,54664,38493,67540
+34309,74886,81232,66107,45758,29779
+34310,28272,15880,31268,76254
+34311,54007
+34312,50653,20342,31050
+34313,73711
+34314,33211
+34315,60218
+34316,20022,59963,2192,52431,54852,78671
+34317,17325,70875,72559
+34318,79887,45104,39564,53835,6638,49967
+34319,74488,27581
+34320,57863,19277
+34321,61659,16005,26260,23517,36917,77233,53493
+34322,46079
+34323,24562,439,53868,12550,32821
+34324,16228,68261,9892,39410
+34325,8169,6098,57735,61009,16818
+34326,70237,33566,12281
+34327,23295,31004,70180,8955,54196
+34328,7858,51274
+34329,64873,8572,44400,20
+34330,34909,54372,72274,69553
+34331,17124,52513
+34332,21816,19404
+34333,31921,68863
+34334,59845,38298,28159,55774,69043,13504,7302,62460,69817
+34335,77133
+34336,44573,78051,51204
+34337,80789,49495,53537
+34338,46209,72498,60636
+34339,9710,67091,38949,17640,40543,75818
+34340,54736,67960,81958,38228
+34341,23868,23579,60181,56314,23125,43885
+34342,21952,81585,9362,72645,40496,51405
+34343,71555,74140
+34344,73668,75801,65099,64149,75334,52557,54462
+34345,69716
+34346,50848
+34347,41740,36078,81800,2281,63092,10408,13219,4938
+34348,48516,53104,32061,79816,12473,64773
+34349,12536
+34350,12311,36668,20741,56485
+34351,68158,80096,25180,74601,33067,10915
+34352,43066,59576
+34353,22583,56368,73917,38901,43741,23654
+34354,29385
+34355,15426,77103,56943,79616,81066,48068,36435
+34356,59658,78972,25460
+34357,41927,24449
+34358,15072,69135
+34359,7705,33130,23698
+34360,73319
+34361,9715,58342
+34362,51636,80423,80521,62414,11287
+34363,79591,78751,41541,10555,28441
+34364,41779,44435,81223,8404,79968
+34365,69165,57852,36631,64661,15134,24588,36897,60837
+34366,49663,51486,70091
+34367,7627,21000,78228
+34368,78168,62544,50872,38794,72972,25125,79252,75628
+34369,58531,44835
+34370,9173,17138,72947,76609,17821,49911,30808,81985
+34371,24397,66871,71478,80862
+34372,63157,65692,44854,45614,24770,10114,20101,69647
+34373,10909,78733
+34374,13671,53565,49580,38595
+34375,67647,14367,57637,29714,75173
+34376,33777,6386
+34377,54341,50687
+34378,11807,81255,73506
+34379,29560,49154,80283,37660,66110,60684,62341
+34380,76448,21964,2088
+34381,25417,61797,28889,42997,46453
+34382,16617,76118,15072,51980
+34383,71266
+34384,39052,39500,59287
+34385,63987
+34386,29576
+34387,2059,22671,41612,14886
+34388,56614,22201,67382
+34389,28900,42888,72091,9376,44777,78344
+34390,36792,19698,46768,79432
+34391,2369,33265,17533
+34392,48609
+34393,37065,61342
+34394,78575
+34395,54420,65516,69993,17861,42824
+34396,9061,54418,78185,3682
+34397,81777,7164,18641,39141,76212
+34398,47393
+34399,38766,20927,35429
+34400,46842,40203
+34401,60082,51789,24859,75839,75941
+34402,56614,75636,15474
+34403,65492,23609,39933
+34404,80570,31368
+34405,49097,2374,25080,11506,73912
+34406,14218,52879
+34407,77413,41916
+34408,54632,31875,43039,65429
+34409,63683,77340
+34410,66953,79194,7398,58919,53374
+34411,79310,66997
+34412,22676,60597,14759,52644,81642,4280
+34413,3717,72659
+34414,15113,3858,70827
+34415,52225
+34416,81378
+34417,63611,6527
+34418,49959,50519,79309,27788
+34419,74417,29190,45235,32448,42494,8072,63132
+34420,3875,49766,24596,17409,25909,9368
+34421,76364,54101,62700,66596,11414,32653
+34422,70754,53468
+34423,2529,42838
+34424,73748,12810,20659
+34425,53821,35710,42761
+34426,17173,62183,29471,50400,43614,77599,9141,32352,15623
+34427,18033,54408,78807,68533,57979,49790
+34428,9740,42955
+34429,70612,78983,37501
+34430,52973,77314,53922,14505,13590,53159,12260,66941
+34431,7108,50429,436
+34432,53458,11544,67061,17872,46781,16826,45207,44288,24845
+34433,53582,49403,80132,1943
+34434,42721,49075,78509
+34435,21107,3332,23576,19665,42543
+34436,8355
+34437,44496,53634
+34438,34931,12543
+34439,8466,37195,57138,70988,61367,41045,6132
+34440,39712
+34441,80648
+34442,67041,34404,35110
+34443,48035,42999
+34444,14061,80078,42487,2492,47090,17131,11692,61914,75761
+34445,6067,13467,28196,80372,71715
+34446,13368
+34447,15692,78668,75216
+34448,62195,386,75820,4721
+34449,58849,3093,61245,18371,43938
+34450,79039,49150,28434,43175,78030
+34451,74932,55832,77350,62166,36272
+34452,38979,22551
+34453,48896
+34454,71148
+34455,60151
+34456,47165,57083
+34457,29974,57350,5887
+34458,50516,1739,42528
+34459,3197,76514,7076,44620
+34460,72220,67353,32960
+34461,31815,58671
+34462,73978
+34463,40384,55061
+34464,54470,2389,25041,59620,40881
+34465,4118,64285,32408,15904,49829
+34466,37776
+34467,76809,70091
+34468,18950,47367,5355
+34469,39454,1502,43510,6594,37438
+34470,57136
+34471,59293,45454
+34472,58567,43560,49151,77147,45310
+34473,55616,38447,27862
+34474,16577,54915
+34475,68385,24985,7312
+34476,43652,72944
+34477,40083
+34478,21000,23648,31237,39428
+34479,60736,14458,21392,20204,53065
+34480,19845,35819
+34481,2492
+34482,54829,64343
+34483,53976,16126,9211,76813,15065,44715,19426,62087
+34484,41319,19498,30895,12999,60888,66173
+34485,27330
+34486,8159,30423,78938,49468
+34487,41395,12654
+34488,59072,77568,56334,27163
+34489,65591,64347,67258,13276
+34490,56951,64202,45157
+34491,26422,41538
+34492,81329,15695,6941
+34493,66677
+34494,20284
+34495,65652
+34496,54007
+34497,35017
+34498,33036,81842,50025,51331,60262,66471,20256,76167
+34499,82039,55325,80642
+34500,12149,71491
+34501,78358
+34502,19146,31563,54345
+34503,60294,80835,79868
+34504,69617,21628,41211
+34505,7537,18701,69531,70616,57639,8633,22389,23254
+34506,42417,66710,45736,48721
+34507,51394,78117,31913,26079
+34508,4039,43440,34479
+34509,31725
+34510,51464,103,11310,79442,12935,43255,368,72794
+34511,16593,65666,67461,48524,80150
+34512,974,41447
+34513,67017,36131,5409
+34514,61798,2538,68156,76417,74089,77012
+34515,52418
+34516,74268,69682,24870,56810
+34517,56489,60456,43417
+34518,75099,49326
+34519,63425,55,29770,74551
+34520,75059,64138,30524,59580
+34521,75023,48649,42906,51472,14188,54416,53163
+34522,59875,1223
+34523,78210,19987,29009,5722
+34524,348
+34525,35398
+34526,11949,28648,28605
+34527,55037,27425,31656,32146
+34528,61790,65949,51417,40006,29809,24687,67654,6021
+34529,29938,63535,34713,6133
+34530,59417,17425
+34531,64119
+34532,38432,27930,45989,33782,65789
+34533,40044,69355,13331,27828,54060
+34534,21081,20206
+34535,3591,42951
+34536,53678,12066,33711,40115,23731,55468,19610
+34537,80048,14359
+34538,64577,62384,34752,57651,48213
+34539,57045
+34540,19075,78376
+34541,36097,53681,1401,53056,28250
+34542,50009,79818,13433,38246,11380,76158,24170,68168,9186
+34543,2647,13652,14580,11038,52940,74089
+34544,33340,27819,71601,62605,48938
+34545,66990,32041,67645
+34546,55769,950,6022,52282,58250
+34547,35956,24119,65673,3895,10045,57519,42353
+34548,47247
+34549,78804,47657
+34550,39363,37553,61082,66454,27183
+34551,8392,28950,67393,52213,20706,1363
+34552,15856
+34553,52838,12658,50485,44563,37360
+34554,40575,72061,34174,34440
+34555,520,4508,62613
+34556,11779,72913,38354,25912,24461,2056,64214,41439,17368,30809
+34557,26567,20884,39324,69823
+34558,75871,59431,64562,31968
+34559,30371,35213,41666,49325
+34560,54072,47244,57729
+34561,77425,8042,2574
+34562,15722,2612,55919
+34563,64556,806,78447,33928,3901
+34564,12772,51197
+34565,17028,46306,72069,18454,23132,73978
+34566,38498,10771,1865,198
+34567,1372,17804,6137,61075,11013,33075,4660,66488,34602
+34568,55131,36071,37893,82109,77084,76278,6110,73171
+34569,43542,15410,27585,45997,17841,54462,13872,21011
+34570,9846
+34571,27739,24137,20036,10126,61021
+34572,3512,25368
+34573,62182,61895,28998,15642,7569,7451,51817,15171
+34574,7139
+34575,18493,12014,31473,58597,66355,27531
+34576,7295,66203
+34577,36837,20692,22214,133,10482,35657
+34578,52471,71195,13484,37353,13405,24625,41451,32466
+34579,14159
+34580,79845,63884
+34581,54736
+34582,16495,59347,34893
+34583,41795,173,5700,38353,60928
+34584,8591,53588,41463
+34585,37549,77306
+34586,74927,31289,29735,45098,24258,32549,28968,44862,53841
+34587,35207
+34588,64686,77764,72971,60996
+34589,61645,30712,78985,24905
+34590,12763,34660,57883,36533
+34591,22752
+34592,63022,71483,61912,54569,78852,67566,37126
+34593,50093,19796,32466,17573,65221,27036
+34594,50497,43562
+34595,64807,49790,39622
+34596,71705,12913
+34597,62551
+34598,69092
+34599,56428,14597
+34600,29417,15963,39722,2273,72218
+34601,69751,80526,23061,10576,70937,47658,75380,20501,62090
+34602,40670,37368
+34603,80895,50078,7628,43272
+34604,46202,56293,28201,23576
+34605,11618,15770,14615,79589
+34606,25182,6738
+34607,73993,48392,43221
+34608,56350,33662,57585,15372,56153
+34609,81055,449,10754,39473,40970,79919
+34610,77995,76896,52633,47192,27101,7399
+34611,5089,19368,58030,31214,13322,25190,16926
+34612,67746,13550,30501,55055,18868
+34613,47353,10510,56211
+34614,57692,56501,55626,70379,21877,41657,28465,69625,212,1578
+34615,9470,26617
+34616,76326,23479
+34617,5560,65862
+34618,77262,41760,55608,78070
+34619,80267,73891,46446,19510
+34620,61709,23092
+34621,26477,12888,77256,23003
+34622,6728
+34623,54217,31556,2893,80409
+34624,55283,22109,36109
+34625,58282,45599,6679,57470
+34626,55956,20172,68729,30296,77859,70532,17138,71175
+34627,47852,13037
+34628,14140,72760,46665
+34629,46430,16772,70030,59686,26764
+34630,72679,33529,58839
+34631,67885,46813,28578,62571,48329
+34632,74285,26022,60989,23020,25697,50789
+34633,55908
+34634,71062,34824,1813
+34635,8550
+34636,4302,75163,69198
+34637,54339,64172,8100,14560
+34638,11233,66741,65752,11745,9555,41043,47077
+34639,44086,64187,60603,21178,81375,68800,66359,61118,77632,80936,13787,68480,74036
+34640,37546,23510,54464
+34641,64659,49388,43799,53702
+34642,68802,3495,24688,46019,13774,16428
+34643,77187,32301,70426,65054,32130
+34644,54261,34827
+34645,54928,61911,59271,51300,20549,2858
+34646,44887
+34647,61903,41085,44228,57464
+34648,73340,74050,68834,51989,55739
+34649,15284,77405,48080,48567
+34650,13802,37820,663,73267,37947,29023,14759
+34651,28338,80845,5110
+34652,22307,146,47752,58557,11206,31433,68906,81880
+34653,79582,73351,80566,12973,55401,66210
+34654,46711,54232,18747,28435,41953
+34655,18478,52110
+34656,9363,80656,33659
+34657,60552,25700,33398,34633,76504,28436,25220,76574
+34658,60859,12054,77808,79764,61253,80745
+34659,7880,81137,72693,56563
+34660,60565
+34661,75876,57128
+34662,40464,66403
+34663,79277,43387
+34664,50956,287,57424
+34665,60818
+34666,17764,10955,43345,2641
+34667,62124,27371,42119
+34668,62731,7235,1179,68257,11124,8326,36436
+34669,50200
+34670,22882,28780,45882,53880,67759,40944
+34671,28919,3608,38002,29032,72617
+34672,53253,939,22649,2390
+34673,55648,51876,14645
+34674,17348,29458,78619
+34675,61058,73611,15497,58781,12968,73471
+34676,37399,37077,10700,29157,77470
+34677,43670,1152,6585,64415
+34678,26685,22127,24682
+34679,37931
+34680,76944,25637,69816
+34681,79098
+34682,73611,24733
+34683,37756,28000
+34684,44744,56288,40981
+34685,5292,39363,31064,179
+34686,42088
+34687,26140,81544,38555,27417,16828,55378
+34688,23424,72760
+34689,6350,49090,46499,77303
+34690,43259,20503
+34691,34581,27126,64074,51168
+34692,40480,75714
+34693,80252,12976,36669,42078
+34694,75579,33271,72923,4861
+34695,67586
+34696,62729,25738
+34697,64920
+34698,77010,23813,29607,79066
+34699,15854,62372,66478
+34700,76963,62473
+34701,63365,16218,51734,47511,9081,48025,57089
+34702,12534,13375,45273,47639,13208
+34703,30389,5198,21534,69764,51361,75335,73437
+34704,45443,16976,9993
+34705,70444,868
+34706,66892,31125,16624
+34707,64446,31854,15623,34020,45115,37065,39347
+34708,4496,8868,46185
+34709,14740,2501
+34710,52242
+34711,80752,8551,36571
+34712,53889,56076,1656,1841,16983,102
+34713,76616,80406,81419,9466,34730
+34714,13405
+34715,59680
+34716,79227,26427,67935
+34717,24726,71060,56822,49776
+34718,32947,50097,33754
+34719,37299,13560,73750
+34720,72909,81143,27482,70534
+34721,38814,21744,9959,27070,36104,4732,70013
+34722,59200,51174,41485,20759
+34723,35354,69744,5493,39248
+34724,33726,16903,7610,42193
+34725,29669,49670,26085
+34726,33604,7917,20161,79283
+34727,72347,4238,38872,24537,41403,60349
+34728,426,26922,49377,22385
+34729,24529,13508,76015
+34730,20762,5383,51165
+34731,54809,26991,60278,52653,74702
+34732,71055
+34733,25541,62403
+34734,22340,10914
+34735,8005,65929
+34736,40388,24450
+34737,27319
+34738,81659,19508,24779,10243,12283,28175
+34739,267,71706,56102
+34740,76149,70639,35068
+34741,2950,26311,26858
+34742,56840,79850,78558,45678,73221
+34743,33043,17351,66527
+34744,1674,28062,80724
+34745,51193,58419,11415,41829
+34746,48326,9141,35515,63993,19956,80704
+34747,14922,24837,38174,8429,53532,28870
+34748,52150,76103,65993
+34749,13276,48741,69961,425,81900,78639,59962
+34750,28299,34138,66550
+34751,66930,8814
+34752,75927,71275,29568,48030
+34753,44361,21613
+34754,73485
+34755,56426
+34756,6930
+34757,13650,32021,58268,41975,19174,49236
+34758,72877,63563,13504
+34759,5132
+34760,63493,18706,12405,3631,26740,57059,54756
+34761,29675
+34762,31097
+34763,15838
+34764,59031,76669
+34765,80828,38333,4762,29008
+34766,56398
+34767,73232,69238
+34768,59142,32506,23558,57,50645,62830
+34769,66345
+34770,10187,22822,30002
+34771,26445,178,2629,19057
+34772,42131,15595,81383,47669,25087,46197
+34773,14995,5782
+34774,75485
+34775,48504
+34776,1250,73236
+34777,66769,24622,59875
+34778,4305,31440,40947,55127,61593
+34779,50626,71783,25138,62888,79194
+34780,54518,20388,28900,5453,46217
+34781,14611,44551
+34782,7473,6990,23169
+34783,58542
+34784,62199,49330,17213
+34785,64653,23346
+34786,4445,51971,8268,30102,46144
+34787,2261,59952
+34788,12072,59010
+34789,6262,6807,63040,68180,73567
+34790,59916,634,23136,52204,72287
+34791,32192
+34792,34978,64926,46462,13842,66304,78035
+34793,50500,67513,62711,21670,26103,29489,28284
+34794,16425
+34795,45436
+34796,22286,67797,35595,71549,7172
+34797,32103,13823
+34798,46122,47011,9284,80127
+34799,37738,19376,55288,4170,72925
+34800,6423,2137,46369
+34801,48598
+34802,69718
+34803,37339,69687,1405,71314
+34804,80998,39053,80477,10825,65505,6292,59132
+34805,41740,60281,3315,13006
+34806,78027
+34807,31422,51924,27832,23171,53069
+34808,14144,20146,18440,27457,79442
+34809,34802
+34810,64091,11971,81827,56460
+34811,68938
+34812,48095,80291,31841,75538,44896,32627,44374,51530,8228
+34813,52688,30718
+34814,33089,57535
+34815,81376,42862,7404,27293,73108
+34816,45274,74749,18162,42571,21479,43778
+34817,61882,9117,62730
+34818,47484,23424,2944,31406
+34819,38455,56099,38968
+34820,11863,19188,54958,69840
+34821,78950,77185
+34822,5837,43191,32066
+34823,64883
+34824,43278
+34825,30657,71289,2274,13493,36249,44239
+34826,23878,15168,28250,16396,46081,25240,13106
+34827,26139
+34828,51042,51681,70336,67639
+34829,8816
+34830,15036
+34831,69737,16452,4922,79058,75208
+34832,12148,50116
+34833,18958,16661
+34834,53718,42625,28476,9165,33726
+34835,42165,24414,17195,21463,33614,23112,53992,60535,12742,69796
+34836,40559,41721
+34837,32636,9263
+34838,59586,10499,27471,46147,35745,36481
+34839,70547,37924,24733,69313,50952,16057
+34840,10773,2914,81922,37992,37996,71951
+34841,57585,75319,41381,49090,71047,58113
+34842,72688,74523,51316,76869,73671,74892
+34843,61511,17519,21790,49950
+34844,76246,81457
+34845,67071,17909,17907,45578,78352
+34846,34981,72670,38887,6063,66154,25460,11870,55710,455
+34847,3262,68301,49417,43895
+34848,55173,31324,50909,41818
+34849,6345
+34850,66444,2889,78448,58215,76148
+34851,81820,62255,81782
+34852,56076,75841,66873,60117,47583,3587,65792
+34853,50174,26611,38234,59693,51529
+34854,5669,38785,58627
+34855,50460
+34856,47232,33403,5968
+34857,13500,16894
+34858,11146,15458,34177,74112,33616
+34859,40975,53347,4600,76244
+34860,20919,36348,56625,69652,61591
+34861,16549,45236,20805,27859,70118,30704,74027
+34862,2172,9164
+34863,46690
+34864,6030,78724,54552,240,7300,18898
+34865,32321,26608,15811
+34866,33592,62718,80689
+34867,80441,48069,42382
+34868,41079,29715,57482,18587
+34869,42949,79650
+34870,24396,66987,12527
+34871,73527,66401
+34872,17777,68689,35355,28128,3993,51937,18627
+34873,27546,20732,17599,7384,4949,134,19751,64434,32602,61160,49911,50323
+34874,13091,21925,81629,35846,5863,56616
+34875,34901,35918,26942,14128,41410
+34876,59998,57431
+34877,69053,63103,8431,60976,79278,79391,3609
+34878,18985
+34879,16525,1983,25566,57355,39084,9943,47586,51304
+34880,49338
+34881,51854,70835,47302,66779,34828,66841,62092,70152,15164
+34882,51664,58538
+34883,62993,74918,25931,38056,55402,47422,55978
+34884,30886,11511,57896,16514,70708,13413,14271,69089
+34885,67986
+34886,63536,33718
+34887,52620,52646,17736,79026,7832
+34888,53064,69492
+34889,2394,13903,59411,43855,16161
+34890,3436,25820,63997
+34891,73928,25970
+34892,50837,12609,82039,31204,8950
+34893,30467,70938
+34894,57106,13743,7982,37130
+34895,5144,45986
+34896,28220,16371,59469
+34897,41004,69163
+34898,27269,58308
+34899,27484,34818,44252,74588,20817
+34900,63403,12284,34159
+34901,67302,452,77836,6855
+34902,76202,66446,65173,74011
+34903,30195,33693,16311,54770,5093
+34904,29341,9227,73015
+34905,64368,80236,81867
+34906,52393,48174,41094,78227
+34907,36970,49031,61350,15068,929
+34908,25308,68621,69492,66379,37815,43224,35010,34073
+34909,55122,38936,79328,72390,909,25010
+34910,24328
+34911,63967,23133,64321,156,74476,7145,16911
+34912,36739
+34913,5304,32210,73693
+34914,44033,640
+34915,78080,79127,30960
+34916,49721,21525,8236,75109
+34917,28951,52358,79270,32397,73447,3838,1092
+34918,80557,24706,50239
+34919,65473,17638,10271,63778,19063
+34920,81356,10149,22774,68012,44921
+34921,18862,19172,61821
+34922,56598,26901,51148,43788,26730,70197
+34923,47042,57861,31687,18263
+34924,75627,60565
+34925,1886,55066,79220
+34926,74772,35880,72192,41531,81151
+34927,40933,7690
+34928,56169,9087
+34929,54660,44369,5,62781,80367
+34930,8733,33999,71676,32348,48406
+34931,42375
+34932,78522
+34933,28072,31887,7384,24884,37310
+34934,50070,47802,77430,33434
+34935,78109,73485,61770,68460,70616
+34936,49688,56635,16596
+34937,76978,33603
+34938,71422,57838,30472
+34939,69761,15797,35630,12558,64361,27171,1022,34794,37415,72362
+34940,15054,17599,69411,64836,49037,36736,40501,34547,47481
+34941,25623
+34942,44012
+34943,40864,69283
+34944,32165,62769
+34945,45280,44895
+34946,77824,16928,46830,8455
+34947,59161,29192,75292
+34948,6580,72838,27085
+34949,14032,26788,27999,70781,5517,34994,47610,6641,34057,5184,52592
+34950,77665,45049,49113
+34951,25460,37633,51294,11626,38872
+34952,34287,5505,45008
+34953,32261,39061,55117,35493,60308,55170
+34954,25403
+34955,46991,4435,25644,45270,20277
+34956,21661,46138,61083,64709,13311
+34957,10673,68332,41271,44033,69045,35662,43446,21351,80705,25563
+34958,13487,11788,41937,10621
+34959,2446,11775,25826,39244,79808,43659
+34960,23150,26635,71973
+34961,39655,6033,9976
+34962,6226,75867,44493,41014,66150,62121,24926,47011,45975
+34963,24152,47764,35719,14638
+34964,42767
+34965,1561,30333,77228,13835,29678,24546,70521
+34966,34856,38424,53763,73403,5038,60694
+34967,27804,42388
+34968,47934,23557,14874,73236,48079,584,11144,42297,48948,24997
+34969,54900,12136,420,45441,63459
+34970,79618
+34971,79497,37422,18992,74895
+34972,11272,76630,6527
+34973,52508,80229,10224,12869,48586
+34974,58882,24234,39208,39593
+34975,59573
+34976,17862,21103
+34977,28760,70247,13458
+34978,11345
+34979,67934,79729,20424,12177,42240,41314,51577,64873,31401
+34980,71488,80519,62188,59915,80667,35396,65336,7927
+34981,26200,17509,3944
+34982,32946,41336,59686,44870,46752
+34983,41424
+34984,15481,2581
+34985,3674,52346,17540,15498
+34986,43753,38941,9593,57328
+34987,9535,27953,53261,63731,27305
+34988,63729,3427
+34989,53359
+34990,4003,59795,26625
+34991,21830,28619,16514
+34992,32014,17800,39374,68140
+34993,81678,14233,27226,37233,47206
+34994,25819
+34995,22997,78808,72157,43054,46412,60395,32079,9354,77949
+34996,8914,79632,42078,73623
+34997,33866,22983
+34998,82081,72812,77636,61293,62537,35543
+34999,76942,68509,17923,27134,68871,42609
+35000,22286,48314,28413
+35001,18887
+35002,74259,40375
+35003,55354
+35004,41383,11978,5894,69939,41989,49777
+35005,54031,5929,131,1674,45689,47181
+35006,70908
+35007,24740
+35008,32329,69090,62425,56517,80849
+35009,47722,41386
+35010,72362
+35011,57905,47642
+35012,441,60618,49426
+35013,36610,45220
+35014,31618,76168
+35015,37873,22574,21676,43497,68982,27722,61642
+35016,27754,57660,32682
+35017,34525
+35018,50318,58408
+35019,36330
+35020,56932,81740,26551,77021,8910,27052
+35021,65870,50315,2965,18156,11037,27081,6275,75677
+35022,12346,66579,60653,9984,13156,65783,8464,61703
+35023,18713,14814,63880,52022,21849
+35024,42198,53813,34983,7402
+35025,50460,14210
+35026,42013,40509,39045,38194
+35027,37870,26640,46652,37864
+35028,27052
+35029,68791
+35030,35783,55880,35079,19264
+35031,4201,43440,74170,60015
+35032,14611,68587,6215
+35033,73840,35784,47920,79300,78899,28609
+35034,1316,977,9309,50205,1104,19425,1918
+35035,73370,17726
+35036,35131,27648,62870
+35037,40782,7884,79433
+35038,42830,1397
+35039,2384,38099,20754,16137,2353
+35040,32279,50991,16394
+35041,46004,19461,34146,71408,47975
+35042,12914,56790,75765,76566,72302,32097,37004
+35043,11620,80347,57813,41919,15872,65913,7621,13647,8065,50392
+35044,39470,25504,30398,15264
+35045,6836,61881
+35046,62690,27291,62841,14119
+35047,2407
+35048,66334,32160
+35049,59043,21221
+35050,63096,45188,25750,74398
+35051,32826
+35052,48570
+35053,1250
+35054,1895,5893,27511
+35055,53639,20200,78232,32435
+35056,20110,52383,12947,80705,40541
+35057,3217,44112,667,35516,2110
+35058,24299,45492,13475
+35059,32791,28109,15738,21703,35822,59129,23388
+35060,69728,932,38966,27888,33356,70231,23202
+35061,23551,27151,59459,4100,44613
+35062,23424,20764,56648
+35063,40587,12833,73388,69696
+35064,19092
+35065,9847
+35066,81443,67829,37846,29348,110,21140
+35067,62180
+35068,38386,8454
+35069,64326,79518,45657,54463,26434
+35070,63249,66447,16790
+35071,23353
+35072,55523,60870,29978,48408,77756,79269
+35073,53207,41708,76590
+35074,68913
+35075,19824,65770
+35076,31577,18777
+35077,3703,57654,36062,68778,36154,70976,4698,74573
+35078,75538,77998,81169,27606
+35079,68664,53518,2760,58727,20150
+35080,37501,40435,81726,57368,60456,7055,35969
+35081,62320,21916
+35082,53367,52162,10443,16411,76927,53528
+35083,78081,16605,40748,65949,66362,48982,28162
+35084,69203,80523,9669,28836,13826,63852
+35085,79562,49623,65519,19313,22480
+35086,55768
+35087,46161
+35088,60006,62218,19239,9477,54706
+35089,82035,74491,31030
+35090,8359
+35091,47237,499,30563
+35092,17336,36955,26862
+35093,11950,41984
+35094,13927
+35095,37254,41902,73309,69210,81928
+35096,37014,32559
+35097,59305,27661,62824,42649,27157
+35098,3042
+35099,1489,6144,43278,1637,75571
+35100,65166
+35101,71114,41965,2916,74255,43987,7203,50180
+35102,81045,26048,59265
+35103,16141
+35104,25535,15666,77327,21628,24933,68013
+35105,39914,51924
+35106,14508,46369
+35107,12972,72362
+35108,54190,24099,4102,49133
+35109,43655,31000,35901
+35110,79850
+35111,30609,71514,58688,77615,44683,50894,41418,3283
+35112,15591
+35113,38758,3692,44795
+35114,52046,76497,52557,33970
+35115,4431,51451,36473,55435
+35116,2838
+35117,17155,56066
+35118,33424
+35119,8034,52342,73857,78039
+35120,18357,65298
+35121,5574,78927,57462,10946
+35122,55959,56231,43886
+35123,27384,25388,62857
+35124,61014,15246,46771,1962,68899
+35125,38328,33819,63284,8355,52065,23877,52457,79157,16941,33882
+35126,17724,26052,67726,64501,8416,47992,32086
+35127,29704,73720
+35128,1150,25370,36452,37886
+35129,28463
+35130,50936
+35131,67103,76585
+35132,64942,57565,9114,51959
+35133,43040,39351,58294
+35134,31513,56642,41897,47189,78686,20841
+35135,51341,70963,70159,49147,761
+35136,54127,26610,63661,43840,69790,13139
+35137,24690
+35138,53200,21409,58972,60621,71205,13145,78531
+35139,29852,76432,4846,36713
+35140,40710,66376
+35141,11252,42585
+35142,76515,36168,75647,44654
+35143,9646,78690
+35144,35601
+35145,71447,44593
+35146,5068,74523,51973
+35147,76056,52158,67675,69020,31317
+35148,77136,21958,45989
+35149,79823,57106,12835,49346
+35150,2212
+35151,28522,63670
+35152,21571
+35153,12434,82032
+35154,48494,61053,20414,10911,54191,22270
+35155,43984,53776,59972,23095,21377
+35156,43105,15098,79371,77204,46923
+35157,33431,64590,66954,14622,53201,46770,5265
+35158,24603,40250,38199,35584,26859,67332,38122,29987,56612
+35159,46677,75373,16782,50950
+35160,26957,2032,54492,18534,37491
+35161,74053,54213,11388,80703,37996,64678,42053
+35162,4743
+35163,26201,78789
+35164,2495,56010,35997,14148,50845,44577
+35165,18240,23337,81784
+35166,52581,22865,23666,11496
+35167,43739,64939,53473,18162
+35168,8950,21868
+35169,60754,55189
+35170,66174,41533,72321
+35171,56723
+35172,13302,79606,11451
+35173,4722,61483,79650
+35174,8200
+35175,28696,45809,36930
+35176,54023,61038,70221,33100
+35177,32660,73174,75525,57874,34362
+35178,75430,80981,48388,51316,66113,73968
+35179,47581,3950,4647,28705,29794,1996
+35180,31984,20046,3666,66268
+35181,4011,39560,4960,61655
+35182,34304,24865,27163,56713
+35183,59600,6954,8949
+35184,45657,41663,72687,49645
+35185,28816,7963,80890,34161,41553
+35186,64817,43966
+35187,11226,18352,17054,33358,3242,79846,80598
+35188,45775,10126,53414,35574,50261,22618,6233,59979,66115
+35189,51253,73903,65876,34400
+35190,723,40411,44150
+35191,10250,45620,10625,8950
+35192,18020,28409,26979
+35193,13315
+35194,78788,15684,56945
+35195,62024,17858,3469,60419
+35196,17010,15870,38965,74310,59483,53180
+35197,39528,17542,2871
+35198,64886,51852,9473
+35199,20934,66334,64530
+35200,11678,18202,38178,36995
+35201,10431,57700,59875,41548
+35202,42955
+35203,61914,57192,47984
+35204,121,54207,64026,51307,45537
+35205,74201,6891,44622,32200,71061,69955,25929
+35206,9959,57472,58951
+35207,78998
+35208,42040,4415
+35209,36778
+35210,59408,28675
+35211,77184,60651,6168,60653,17139,13638,58862
+35212,61712
+35213,18277,76990
+35214,39882,14120
+35215,80455,17371
+35216,57196
+35217,30395,72326,44811
+35218,55122,5333
+35219,59408,70973
+35220,10240
+35221,9741,46186,13857,63780,27823,25627,26527
+35222,1749,32969,58931
+35223,39282
+35224,64487,65630
+35225,5363
+35226,33461,38491,34879,7389
+35227,53748,5898,54355,19571,75586,6605
+35228,23828
+35229,25706,25404,69831
+35230,26826,58968,76256,38959,8338,55913,52503
+35231,230
+35232,75462,54075,10665
+35233,13874,30259
+35234,19796,16458,33807
+35235,32900,44171,35731,76072
+35236,69040,78324,80541
+35237,12614
+35238,67424
+35239,39260,53688,26671,59502
+35240,55369,23939
+35241,21331,54594,57610,4749
+35242,1976,27151
+35243,36529,74629,34296,8345,64024,3703,17545,72631,57188
+35244,66238
+35245,79618,6689,41715,6151
+35246,24395,44001,72630,79119
+35247,59893,27192,55250,50853,27435
+35248,34066
+35249,9087,48413,76337,3965,78506,15707
+35250,79308,51724,51881,56094,46255,30746
+35251,74285,65737,80645
+35252,28235,5125,77191,20848,55162,23136
+35253,4876,36400,50850,74561,58075
+35254,27444,26282,9690
+35255,51908,20015
+35256,37776
+35257,37492,65517,9502,15989,51413,13954,1971
+35258,20037,42550,53474
+35259,50133,56970,18563,9288,10825,48617,30703
+35260,36552
+35261,30000,60449,62996
+35262,26973,30346,12401,58944,73427
+35263,42193,36558
+35264,8898
+35265,9531,10770,29642,56738
+35266,22931
+35267,43085,1767,1098
+35268,47083,4855
+35269,70303,60741,79952,76684,78256,19052
+35270,65115
+35271,21788,62871,36232
+35272,42127
+35273,69220,8006,43571
+35274,74019,51855,80883,52828,28159
+35275,51138,77486
+35276,77627
+35277,47697,31514,175,20721,39039,29500,60491,56722
+35278,31451,48322
+35279,50269
+35280,43060,40432,43863,28432
+35281,64775,66078,46727,55752,68161,20648,79195,32840,64895,36142
+35282,3998,26909,59745,65787,26220,27955,4546,56531
+35283,8478,67355,30280,68260,63814,1091,69704
+35284,38935,18155,22016,16972,42193,31753,17584
+35285,74935,28899,73397,23665
+35286,32254,38709,75838
+35287,3306,19650
+35288,7241,9576,20602
+35289,75883,34655
+35290,62836,38141,7816
+35291,43112,29551
+35292,67801,6324,16306,71035
+35293,8880,59505,13772
+35294,15001,49496,3572
+35295,20291
+35296,50828,58243,20289,81018,41553
+35297,41143
+35298,54131,8344,1637
+35299,44192,47480,45950
+35300,6229,58040,15590,17695,46371
+35301,13023,15600,80810,38010,15524
+35302,23462,34010,33534,25778,69803
+35303,3563,25212,15636,46107,34254,40368,34904,45834,19660
+35304,28537,43734,29340,50482,3452,47151
+35305,57430,65918,24074,16331,80626,11034,8471
+35306,24729,49917,24521,33343,68780
+35307,43951,67565,2142,47765
+35308,23757,10501
+35309,26698
+35310,23490,20483,22978,22945,35586,273
+35311,21788
+35312,25706
+35313,13335,64361
+35314,51524,64994,39311
+35315,71207,68863,38520
+35316,74347
+35317,65021,43085,8620
+35318,36821,42503,10420,60003,63634,7050,45520
+35319,40379,40714
+35320,37760,35337,61323,5375
+35321,37902,31183,50968,57007,17963,23859,81772,18777
+35322,2440,35010,72402,39824,6910,69369,46047,57990,70223,15165
+35323,81875
+35324,10566,15250,24621,7796,26028,3916,28652,584,79797
+35325,30393,78740
+35326,17856,15527
+35327,81425,7753,13916,44405,34196
+35328,42034,13064
+35329,47482,34622,46914
+35330,46893
+35331,27132
+35332,51516,61806,47179,32109,72598
+35333,24964
+35334,34990,75529,63323,20685,47427
+35335,69249,5844,49196,39371,36108,80201,72190
+35336,38243,36832
+35337,62541,68812,10592
+35338,25579,26731
+35339,37745,66328,18273
+35340,20993,24803,21876
+35341,9149
+35342,48331,47738
+35343,21519
+35344,55946,48849,65359,53387,16449
+35345,29088,66323,45243,70077,18749
+35346,44856
+35347,24051,12251,41407,348,58727
+35348,40298,30253,53803,33855
+35349,59858,2605,59201,42265
+35350,12665
+35351,61850,33640
+35352,42082,70604,18571,78778
+35353,11037,80862,62892
+35354,22146
+35355,24410
+35356,57870,19687,62225
+35357,72072,38498,40780
+35358,14942
+35359,42114
+35360,81148,67056,2285,48767,33840,36041
+35361,9759,14865,11575,46328
+35362,31831,16603,64328
+35363,32379,44716,33273,62231,17820
+35364,8735,78642,57405,28541
+35365,60635,74143,47724,79428
+35366,6336,32526,19072
+35367,33698,80281,51184,14316,28934,31674,81338
+35368,38003,17761,75865,28472
+35369,34837,29441,75320,52383,55043
+35370,72443,12547,81389,51513,34890,67279,13074,35006,37680,69534,8981,64529
+35371,11589,72181,12372,42983,56470,68973
+35372,62244,61757,12807,9053,16921,55684
+35373,62997,33440
+35374,20350,45158,36212
+35375,30936,54872,66887,13207,56153,45153,50591
+35376,44420,31251
+35377,33247,80201,5609
+35378,12313,1990,18362,17418,13579
+35379,53748,22487
+35380,13790,77697,25168
+35381,22453,48826,19059
+35382,54902,32268,2673,2173
+35383,15036,78698
+35384,54122,74890,27202,58343,79292,55957
+35385,76574,65133,9637,6068,11728
+35386,13458,7860,30324
+35387,47153,17181
+35388,12250,54598,50563,18236,21813
+35389,3
+35390,44617,77681,63866,67795,8502
+35391,78498
+35392,19842,26716,47864,66651,2968,64741,76974
+35393,70791,19170
+35394,61186
+35395,75724,16336,43304
+35396,59217,9255,43739,2500
+35397,82016
+35398,36325
+35399,10884,6968,49309
+35400,27486,55498
+35401,66157,61459,7677,46945,21682
+35402,33424,33052
+35403,63806,52418,6266,8765
+35404,71885,42012,6566,76705,8875,79428
+35405,17172,51361,53635,30416,11604
+35406,67809,33746,76102,30385
+35407,6415,58803,17839,69470
+35408,47966
+35409,54243,81144,17351,75379
+35410,22090,40396,13837,71608,41338,77702
+35411,21162
+35412,43968
+35413,15559,49454,536
+35414,67983
+35415,59034,1551
+35416,52879,62606,30126
+35417,14444,34465
+35418,8805,37375,10319,38955,45557
+35419,43098
+35420,41413
+35421,48346,73917,58907
+35422,69797,53326,47048,35145
+35423,63538,3887,81269,27705,17663
+35424,22789,27175,43466,72624
+35425,79312,53101,61967
+35426,1812,74306,64159,3026,2019
+35427,47576,64185
+35428,79585
+35429,73116
+35430,15949,72198,53578
+35431,11575
+35432,76550,67382,68552
+35433,21723,78078,33759
+35434,77785,52585,1971,35454
+35435,75408
+35436,15529,13841,44556,24146,70300,9495
+35437,26126,3311,53725,12505
+35438,75041,59620,78766,18846,57396,80986,68356,58709,54398
+35439,55772,56825
+35440,45620,74706,26724
+35441,24204,56721,15939,52842,24336
+35442,25578,75951,81369,15970,49448,62300
+35443,41216,47601,78963,10598
+35444,51366,69498,71974
+35445,4169,78601,75307,5741,15100,55772
+35446,43460,62492,18469,8014
+35447,55902,13280,30433,7701
+35448,62076,58704,47040,6821
+35449,17791,18703,11112,15618,45065
+35450,66798,6931,48347
+35451,72747,59994,74627,46572
+35452,14183
+35453,76319,41975,50683
+35454,4154
+35455,50379,36876,51631,46007,67186,37918,43929,76177,12702,69849
+35456,1774,76497,10372,79093,78414,32196,34091,28222,36031,41331
+35457,56943
+35458,33964,79937,38211,10384
+35459,73638
+35460,14828,30861,69158,54693,29912,71774,4870,43363,12590,29554,52079,51484
+35461,1804,73228,43877,3726,9120,64658
+35462,78646,21212,26481,66870
+35463,71755,49324,38074,43911,44586
+35464,8881,9001,16934,15976
+35465,6074,66447,70253,30986,65405
+35466,78310,53764
+35467,78698,7449
+35468,26455,68340,25469,9030,58041
+35469,28347,63949,13771,80036,14627,34770,15600
+35470,53920,8352,59276,46217
+35471,57282,37670,68155
+35472,59413,32772,27109,75767,20847
+35473,56139,61154
+35474,61200,57450,19274,16167,2502,60878,63852
+35475,22339
+35476,73205,43665,43895,67935
+35477,45729,61636,4712
+35478,26955,43282,30926,59211,17106
+35479,7247
+35480,62612
+35481,80395,62144,53079,52012,82151
+35482,47168,15100,43077
+35483,80161,16198
+35484,6778,26419
+35485,17087,70590,56232,57657
+35486,5152,5503
+35487,17604,37302,35118
+35488,19015
+35489,74227
+35490,72254,44810,14693,4761
+35491,22325,39659,22216
+35492,78908,31486,51357,55365,63709,56963,3963
+35493,77135,1939,68469,41249
+35494,37430,17479,70081
+35495,31414
+35496,5196,22801,38350,35977
+35497,50161,26322,10080,76393,10472,25074
+35498,24765,6949,8237,30318,42168,75588,6598,78024
+35499,56861
+35500,62171,8366
+35501,17437,50601,7223,10591,68528,58791
+35502,53671,54135
+35503,73971
+35504,3560,39296
+35505,28565,16953
+35506,3715
+35507,64738,36999,25060,58983,50158,13971
+35508,40228,4061,68577,53807,38598,47206,76892,794
+35509,54366,41859
+35510,50
+35511,43346,6012
+35512,15672
+35513,7856,56226,12532,64524,47155
+35514,60099,5660
+35515,77408,46804,8654
+35516,2476
+35517,63843,16894,190,11943,37561,45596
+35518,39893,41318,55212,56029,46368,62414,2771
+35519,49163,81043,52357
+35520,81400,269
+35521,58623,32443,3891,5065,81355
+35522,47748
+35523,23803,32052,8727
+35524,30506,75269,16506,79691
+35525,65868,38367,36678,29183
+35526,5647,71673
+35527,72791,27375,48221,39329
+35528,52966,53382
+35529,26948,29690,34256,20351,28683,48889,28573
+35530,30862,54586,74932,13213
+35531,10167,2730,17325
+35532,40333,50713,55001,31381,29346
+35533,4130,46047
+35534,25792,52993,36303,24213,30141,7288,74410
+35535,32332
+35536,68063,59992,5110,27657,61316,80249,71205,80403
+35537,13749,16208,47149,47601,55858,50575,4421
+35538,69092
+35539,7466
+35540,51220,47955,78882,19190,68432
+35541,42247,60524,48938,74595,73309,68999,12971,69534
+35542,14418,64242,29221,78087,61749,57755,71729
+35543,79092,51790,53434,28913,20172,17239
+35544,55748,80976,9002,76519,38219
+35545,48440,74476,60063,27555,1357,61087
+35546,21706,50102,42038,18603,68760
+35547,15404,2536,77755
+35548,38418,35452,72541,44899,49948
+35549,55319,79282,62514,63921
+35550,27643,53501,9509
+35551,58268,3207
+35552,34119,30290,78296,55109,69585,65486,24812,44568,36457
+35553,20223
+35554,4770
+35555,26602,70722,31921,11468,43908,43736
+35556,32622,72840
+35557,30468,60218
+35558,53391,3804
+35559,7685,58505
+35560,29558,14866,26071,21454,71122,52706
+35561,63059,20546,15867,35965,78083,35366
+35562,40089,46368,16210
+35563,69038
+35564,52067,42571
+35565,7150,22024,50489,65010,54749
+35566,45673,44796,68697,10102,79615,55533
+35567,23164,65862,81,32839,61872
+35568,80579,67080,16707,63200,67244,6202
+35569,4249,78175
+35570,71296
+35571,19495,10613
+35572,35346,99
+35573,5343,55526,77394
+35574,74174,24695,8983,14000
+35575,361,30748,58362
+35576,4483,37771
+35577,47688,51308,18829
+35578,1250,11767,64645,12090,15055,81725,4989,73926,47570,57245
+35579,51785,8031,69278,80937,46639
+35580,70867,2922,25790,60831,56584,70081,62000,21694,74814,38836,76948,145,175
+35581,42645,32667
+35582,4039
+35583,3979,59097,59028,29119,10453
+35584,24748,9175,81720,15799
+35585,78950,72120,5890
+35586,54882,9790,25149,11719
+35587,36317,72461
+35588,80686,58082,38511,43115
+35589,43772,1023,18105
+35590,29265,74394
+35591,74757,72829
+35592,31268,64829,79909,5435
+35593,60814,63103,35171,56830,80599
+35594,59793
+35595,13733,65871
+35596,50999,67180,32198,74251,36324,13032,45421,45002,46512,37312,12784
+35597,61868
+35598,23731,58691,26380
+35599,49241,23473,27564
+35600,76224,35679,65768
+35601,64835,65981
+35602,43922,1308
+35603,12207,47568,42314,10647
+35604,24886,54732,31980
+35605,11487,66712,10438
+35606,68232,34890,73723
+35607,1079,61683
+35608,50065,67525
+35609,45372,35703,53401,72494,46864,33852
+35610,29441
+35611,11504
+35612,73219,75536,9339,18559,49661,6242,41506
+35613,78206,75971,67827
+35614,60060,32479,58450,38190
+35615,41319,33560,46529,75854
+35616,53324,62372,55371,11898,57375
+35617,57243,8428,34822
+35618,32423,26409,18503,26476
+35619,8628,50607,34775
+35620,49381
+35621,14434,6297,31743,16264
+35622,73021,8530,32142
+35623,14720
+35624,35653,12698,16256,53599,62019
+35625,65312,54920,78387,64046,20255,78124,44043
+35626,64724,38640,47806,50624
+35627,31574,11581,40739,15906
+35628,24684,55466,31750
+35629,77814,53803
+35630,50925,70680
+35631,43066,885,38152
+35632,77371,25275,28783,17852,24516,73045,19907,1803,59312
+35633,24261,56200
+35634,10057,22964,4739
+35635,74497,58709
+35636,36789,80401,37749,42652,29221,57661
+35637,64486,81458
+35638,12325,6790,13713
+35639,66099,71202,42677,23179,73593,68027
+35640,15845,7228,19360,81443
+35641,52949,80943
+35642,30005
+35643,61850
+35644,71123,58412,26412,74030,16843,25507
+35645,82072,33424,6192
+35646,1143
+35647,31556
+35648,41555
+35649,26299,6169,62604
+35650,59099,62584,39911
+35651,56460,29736,59821,9587,25744
+35652,16107,74491,68682,44859
+35653,12895,65383
+35654,14313,4596,43217,69980,2563,55734,48819
+35655,11838,7625,59204,77074,69448,62608,11468,37541,43104
+35656,48908,55768
+35657,52734,52005,40643,53725
+35658,41870,52581,59136,73217,21506,20679
+35659,73625,13003
+35660,68540
+35661,7970
+35662,51008,54990,35611
+35663,7112,9110,65593,33646,67943
+35664,49024,63883,41622
+35665,75684,14878,10445,28581,54072
+35666,46137,4584
+35667,51528
+35668,43187,72947
+35669,45468,11673
+35670,12356,75870,64225,35766
+35671,38740
+35672,44256,39056
+35673,52615,73290
+35674,55708,67800,40796
+35675,63645,13616,4886,19855,75961
+35676,62657,18477,15260
+35677,41010,80381,49587,11269,47051,43863,20034,67777
+35678,21605,29414
+35679,14331,37961
+35680,21437,77369,66804,73491,35789
+35681,80679,51958
+35682,2341,19342,32133,60193,75813,28814
+35683,19308,1692,59190,26676,37598,33836
+35684,39357,14990,40302,68009
+35685,49366,9610,55093,43504,73037
+35686,36117,55417,22837,12573,14183,66968,13463
+35687,75115
+35688,64779,24418,5678,71817
+35689,37348,15980
+35690,8499,56996
+35691,66754
+35692,47959,16192,49374
+35693,31025,33195,66040
+35694,53910
+35695,41913
+35696,24818,59835,57090,3450,25008
+35697,31339,40966,19514,35762,17509
+35698,61427,40147,79464,26073,36507
+35699,6821
+35700,45153
+35701,51798,29155,37777,72654,23441,8677,5538
+35702,11846,38035
+35703,33075,76606
+35704,46143,40325,61211,17111,12473
+35705,70356,43763,36274,59146,43648,45623
+35706,9087
+35707,73658
+35708,13960,9179,13346,3880,60597
+35709,20581,19081
+35710,17824,39545,49522,31384,72796
+35711,35732,1014,67135,40672,44917,57353,76171
+35712,80387,55736,16742,12176,30980,26406,60781
+35713,22407,80450,26971,31277,47456,28697
+35714,77236
+35715,58217,2434,55563,49228,54186
+35716,38547,57410,49886
+35717,32963
+35718,41977,54757,35472,17976,58618,68386
+35719,37111,26371
+35720,57558,3489
+35721,30415,944,67440,20500
+35722,22644,24366
+35723,46842,82170
+35724,69869,2860,28953
+35725,20465,3136,82136
+35726,79772,57081,81880
+35727,75905,28582
+35728,294
+35729,25900,14612,73273,31783,63556
+35730,78051,16842
+35731,54130,50109
+35732,33037
+35733,38583
+35734,10075
+35735,76966,70282,13682,74076
+35736,53090,60420
+35737,62278,55699,46789,68607,1551
+35738,157,30217
+35739,56333
+35740,70446,76677,58126,35515,55925
+35741,73959,5943,14369
+35742,69727,53316,6081
+35743,52360,5553,39405
+35744,31845,82031,6464,54160
+35745,10979,70823,45317,35995,60736,66927,40198,27352,453
+35746,61498,23881,18022,52066,50702
+35747,56639
+35748,23821,35719
+35749,24501,75148,68474
+35750,5493,69532,79345
+35751,32209,71644,77813,60883,12877,26088,7244,37525
+35752,63262,63424,4828,58439
+35753,45660,48866,58693,70854,27428,24347
+35754,28111
+35755,77452
+35756,47148,18694,40347
+35757,60147,65987,45448
+35758,9936,38196,35793,17447
+35759,33389,60008
+35760,53339,74566,19341
+35761,74158,49893,52496,34436,66355,46317
+35762,46917,47633,72322,9801,44168,3977,10483,68491,7757,53857,27993
+35763,34254,72808,2800,46745
+35764,18363,844
+35765,54636,26527,1562
+35766,76747
+35767,33317,14342,23810,35951,69053,45704
+35768,53563,27296
+35769,76877,19371,81892
+35770,27427,42175,26398,72424,73035,30018,34689,49260,35051
+35771,44514,42496,67890,30676
+35772,69948
+35773,46131,7624,44509
+35774,47082,20391
+35775,47992,25864,19852
+35776,10227
+35777,3186,70401
+35778,17252,23819,55326,15055,42242,24973,67375,303,15233,15861
+35779,15619,77106,4125
+35780,64162,39620,38194,69622,28705
+35781,29362,63300,40874,60929,73470,20967,66896
+35782,63077,9390,29019,36419,24176,32857,80164
+35783,69379,45392,21485,28498
+35784,78368
+35785,50290,43797,64246,33556
+35786,18637,22094,31420
+35787,6804
+35788,45080,34158
+35789,5104,19899,78071,24625,12035
+35790,51281,12508
+35791,2901,14995,39452,26807
+35792,77470,81472,79948,73545,17183,51707
+35793,39514,3571
+35794,31190,7728
+35795,75120,57637,48894
+35796,31963,14308,16330
+35797,16443,62161,38576
+35798,56337,50590
+35799,3146,81016,25885
+35800,3412,616
+35801,43563,11751,43620
+35802,53441,65145,43110,7476,42620,35903,76477
+35803,81944,37487,57228,9801,25988,20932,6422,44028
+35804,80421,3790,66088
+35805,82048,50759,45303
+35806,78560,50717,4618,9729,742
+35807,14255,41469
+35808,37084
+35809,71927,43607,72528,72074,39505
+35810,19323,35010,20668,78593,64503,55438,2914,67135
+35811,22639,24534,11094
+35812,69939,47452,12134
+35813,49214
+35814,63285,16073,53120,76829,30798
+35815,77900,38590
+35816,53818,37519,61117,16480,79207
+35817,55533,3409
+35818,68822,25262,20662,26307,63528,35564
+35819,71422
+35820,68534,76479,25546,3296,22970,40609,71558
+35821,79743,75472,59251,77302,30205,34983,58876
+35822,14675,30901
+35823,30422,21391,38612,19977,14571,12895,25230
+35824,74880
+35825,47959,55305,73113,75235
+35826,35549,24743,29045
+35827,50427,24235,38432,81731,68083,71351,12900,58992
+35828,19901,71298,28044,29023,429,57717,19141,38972,21476
+35829,42000,68109,20291,78153,43058,74,57194,51433,673
+35830,62491,33249,7843
+35831,61978,80119
+35832,22898,28235,80824,78698,7900
+35833,67884
+35834,45050,69176,19891,69795,42825,56614,15935,46164
+35835,78778,43457,61809
+35836,28390,14164
+35837,60841,45806,68674,38099
+35838,20890,1728
+35839,60868,16185
+35840,13052,61177
+35841,26935,16468
+35842,37447,26687,64220,54736,8691,10548,14494,66030,8859
+35843,28876,35757
+35844,74330
+35845,12426,36557,11102,41179,27245,11430
+35846,38663,68753,28539,21270
+35847,81451,62765,52670,38074
+35848,70793,42552,31383,26100,62346,7364,41198
+35849,30042,9636
+35850,53033,44598,60419,19608
+35851,42681,48601
+35852,8632,22045,32111,57324,56045,24562,65735,35558
+35853,36297,77522,31556
+35854,40154
+35855,45795,82135,14859
+35856,304,35106
+35857,18714
+35858,20022
+35859,49359,77774,3355,71791,43499,51431,54326
+35860,45594,5630,41446,7667,37867,54339,42844
+35861,28077,38927,61437
+35862,23077,65838
+35863,9132,25055
+35864,51067,3420
+35865,75218,27008,37698,46767,59369,56282
+35866,31604,11050,63992,72877,45141,45005,16289
+35867,49258
+35868,42890,32511
+35869,24345,43301,66564,48449,23055
+35870,25372,17880,38074,48501
+35871,33571,84,44143
+35872,30053,30838
+35873,14729,60077
+35874,63016,42065,49274,49527,47688
+35875,39030,46380,14646,59040,78430,61585,75491
+35876,45274,53130,20190
+35877,48766,24205,53031,19781,34941
+35878,52538,35495
+35879,66196,65046,11707,53843,81317
+35880,14040
+35881,12185
+35882,70893,26971,13860,55028
+35883,50904,49254
+35884,48982,11244,39063,37633,16593,12307
+35885,35207,63172
+35886,30206,9140,38734
+35887,38977,27801,32151,25705,34481
+35888,59224
+35889,17803,39578,58630,63017
+35890,18080,65497,23666,17602
+35891,5796,43057,6336,54381
+35892,11213,28224,13967,11910,48591,16826,6276,55760,7117,19336,62402
+35893,6675,37849,65881,23624,50538,56534,23812
+35894,29500,6447,29095
+35895,4865,20046
+35896,35242,57291,48377,24957,29054
+35897,50593,37495,58415,75966,1483
+35898,25067
+35899,78788,20375,37910,50422
+35900,33255,39465,6214,27103,4824,60545
+35901,10215
+35902,34198
+35903,50490,46968,55342
+35904,2973,48150,41404,24067
+35905,29982
+35906,46861,24570,76283,74451
+35907,12011,4172,57386,46235,44536,27917
+35908,23503
+35909,1872,31547,64305
+35910,20968
+35911,41391
+35912,76556,16674,79325,45041,45450,75708,71113,58964,71699,13450
+35913,64359,4465,72289
+35914,13724,27024,50673,33268,8858,12881,4218,64246,441
+35915,27165,28194,52236
+35916,5285,80498,35584,52377,23261,17646
+35917,45053,19381
+35918,28847,74544,16640,71976,68659
+35919,20891
+35920,77475,37402,13682,54977,19735,79637,35883,60552,26930
+35921,74830,50376,71273,25263,59874,35245
+35922,54571,62708
+35923,13595,49388,57407,78624,50399,56874,68854
+35924,52599,13576,40563,8258,7626,71266,80702,81455
+35925,52847,11608,3982,3512,11316
+35926,12258,73098,69975,2667,79890
+35927,69178,50418,73529
+35928,22740,55946,66350,54158,44288,30322
+35929,64511,81844
+35930,73236
+35931,54730,44095,72376
+35932,80938,1595,4700,23546
+35933,4880,70170
+35934,40107,60280,18103,15444,57976,21011,47046,3960,74166,265,55256,69650,40902
+35935,78287,49649,76861,7605,60049
+35936,25167
+35937,75148,30659
+35938,30940,22726,28888
+35939,19398
+35940,1524
+35941,35366,4315,46848,52775
+35942,33835
+35943,47106,62063,77030,36911
+35944,66490,79912,15473
+35945,27520,80864,65620,71757,43640
+35946,10729,49482,5786
+35947,2001
+35948,37549,76716,40335
+35949,9925,24137,58673,66988
+35950,45738,47374,20500,20649,66743,80377
+35951,65261,41652
+35952,29607,57218
+35953,57677,69895,311,78681,64096,31939,8689,24097
+35954,59133,24813
+35955,53459,58105
+35956,21791
+35957,45145,52013,15570,52347,38151,27274,7465,39669,45787
+35958,81243,51551,50941,55717
+35959,16540,54432,52508,12769
+35960,64107
+35961,61402,58200,15955,20796
+35962,64061,19153,1997,50011,2935,2190
+35963,20887,22140,24108,6008,76425,71068
+35964,38494,22866,75925,26182
+35965,32159
+35966,19748
+35967,11575,58849,70146
+35968,7139,44817
+35969,67382
+35970,7770
+35971,15452
+35972,71246,52254,5748,38216,33293,74801,1119
+35973,2001,60896
+35974,31201,39384
+35975,37945,44718,10046,40491,59790,20892
+35976,76587,51489
+35977,6490
+35978,61075,75341,75243
+35979,14168
+35980,9638,57456,6205,35266
+35981,6736,77022,78120,80250,64181,34866,14892
+35982,79874,38774,30555,73838,23288,34401
+35983,46407,64397,24464,11209,59434,76714,53132
+35984,19248,56498,58134,5861
+35985,54329,43773,73921,66190
+35986,15776,58680,50009,28526,36528,9771,38680,9073,29721,69726,35587,40531
+35987,81614,22689,80013,34878
+35988,12514,25374,69313,7934
+35989,65342,61002
+35990,53768,57913,18215,80781,68158,51968
+35991,29242,25251,80912,18097,51728,79301,21845,57145,57675
+35992,25403
+35993,17438,70516,46226
+35994,81907,69440,22530,78803
+35995,67930,7984,3771,73918,38765,71678,37628,24794
+35996,30351,77168,46281,48020,48296,60507
+35997,71055,45920,73683
+35998,63215,13902,71478
+35999,14944,12981,22173,40544,61283
+36000,23781,57906,2880,51735,68335,21355
+36001,29717,52790
+36002,45108,56835
+36003,49271
+36004,51870,44130,64545,79437,16525
+36005,37225,71910,3846,63515,19738,39142,62201
+36006,65261,69335,17966
+36007,20024,39248,64857,67080,37051
+36008,52363,39190,945,53935,60513,28217
+36009,44089,60440,33217,52865,35638
+36010,73576,66705,78666,3635,77805,30950
+36011,77126,77015,5156,66195,2458
+36012,79605,77427,23885
+36013,74330
+36014,21355,41165,77826
+36015,79370,30940,20870,20735,24372,11733,19105
+36016,69079,44801,70795,9492,22009,19174
+36017,40447
+36018,20759
+36019,73460,22790
+36020,47764,4171,16904,17342,38293,68408
+36021,74074,4284,47905
+36022,58827,80636
+36023,28691,63444,62206,53070,34093
+36024,29705,51686,25755
+36025,74029,48293,62597,19842,180,37175
+36026,62751
+36027,38205,40061,30365,23240,72728,26737,53441,47075
+36028,58075,29180,72092,60834,66117,24419
+36029,25334,13031
+36030,16198,4451
+36031,20015,26243,67477
+36032,69797,34258,50530
+36033,37,66715,36075,26443,41193,59264,57074
+36034,34685,47397
+36035,38251,25993,52074,17172,35439
+36036,13733,80886,47657,54622
+36037,55405
+36038,68956,22633,75658,63777,58449
+36039,57374,1520,54772
+36040,30245,27535,9211,76475,8840,57410
+36041,10561,5219
+36042,35214,81910,69310,26255,68822,72150,42062,72684,5555
+36043,43688,54854,24956,49762
+36044,18299,78370
+36045,19665,59103,55618,2688
+36046,57218,36808,66856,76592,23406
+36047,21970,76999,54379,10460,45770,26944
+36048,47648
+36049,48192,8905,51660
+36050,27891,45490,69245
+36051,32021,27648
+36052,41728,65504,19738
+36053,6496,56002,53475,30125,55606,31002,41434
+36054,76014,68470,18687,72393
+36055,39341,668,26368
+36056,60651,50673,77946,6943,57494,35541,41502
+36057,9481,60016,15780,36401,48643
+36058,165,60883,80691,64938
+36059,39923,15028,42027
+36060,47323
+36061,6479,30236,29044,20270,22929,62198,51565
+36062,76941,35220,73937
+36063,11085,25104,45470
+36064,44059,42953,70919,42442,40253,73175,15755
+36065,80494,16944,18119,27397,18112,21398,5445,18123,64119
+36066,11340,44619,45070,63166,4123,60118,35944,2026
+36067,19507,4155
+36068,67364,50602,49951,19600,64620,19373
+36069,45574
+36070,18084,68268
+36071,56350
+36072,17647,18822,77392,59027,27108,78507,77764
+36073,11729,56028,18709
+36074,39198,20174,21016
+36075,44086
+36076,73476,17873,60052,2344,19754
+36077,40196,47176,47084,65828,35209,66945,37662,16310
+36078,40754,23943,74967,13985
+36079,12161,43147,73658,57459
+36080,62024,10999,73108,8525,51314
+36081,62593
+36082,74412,57205,81504,39789
+36083,18136,77148,73668
+36084,9606,45577
+36085,30669,53373,64018,58973,2653,69642,61062
+36086,81894,78891,64371,71841,42660
+36087,771,26184,25185,71420
+36088,24615
+36089,7303,17503,53248,48060
+36090,13288,32072
+36091,49047
+36092,14611
+36093,1828,30451,2055,80491,73993,69272
+36094,7089,22760,68638,59370,2903
+36095,73720,37192,30374,56710,19632,49071,35403
+36096,75222,62351
+36097,43399,21768,41745
+36098,26925,9554
+36099,26962,58415,41492,47337,44759
+36100,42738,29644,1496,1176,23015
+36101,29050,38190,46622
+36102,78463,11401,26440,43321,54818,37223,39973,32837
+36103,59277,64809,33592,33137,11842,33243,62922
+36104,77452
+36105,61000,27157,76664,9096
+36106,10944
+36107,70428,11354,51584
+36108,2097
+36109,7626
+36110,80330,60167,53880,55581
+36111,54948,19593
+36112,51318
+36113,20864,49975,60790,66268,36389,9730
+36114,30983,60532,75481
+36115,60534
+36116,25020,53563,9819,51936,41296,39467
+36117,65452
+36118,77540,28975,38694,10539,70095
+36119,42061
+36120,38190
+36121,52486,58774,62953
+36122,14446,28309,49389,8627,75904,27768,24762,44580,30838,41421
+36123,24724,46380,79351,68444,71243
+36124,57765,50764,38457,5917,49260,10803
+36125,34442,6754,39703,48622,47183,48561
+36126,41205,66869,68155,54412
+36127,20040,25965,68932,45162,69067
+36128,42510,73797
+36129,1727,60522,11455,29171,46905,25955,14827,54955,22523
+36130,21925,23864,70856,31834,55503
+36131,62947,72361,1476,78348,21740
+36132,39958
+36133,74027,47647,47374
+36134,35387,21163,36610,654,67109
+36135,22642,35969,51317,31812,54101,66119
+36136,78256,55025,40834
+36137,13010,17740,22282,38471,28380,41875,18622
+36138,42466
+36139,1828
+36140,59011,56238,59890,21300
+36141,16062,62331,234,67872
+36142,43237,39238
+36143,68531,34358,45264
+36144,11595,52920,19673,17786
+36145,21357,66597,20430,9489,46384,78610,67252
+36146,18351,21013,37805,23236,14030,40234,65177,20505
+36147,65252,13047,73897,64550
+36148,5751,77622,49244,6586
+36149,22161
+36150,61520,33348,80453,34842,6493
+36151,25163,58790,80724
+36152,39733,71038,9892,21057,36820,40235
+36153,55962,27013
+36154,11825,51809,5296,58515,4446,7907
+36155,10231,60477,33806,39865,45024
+36156,65587
+36157,70003,26464
+36158,6844,15522,32556,65107
+36159,7761,5198,66855,13088,61264,47088,31801,60180
+36160,41336
+36161,54116,66833,36993,21062
+36162,73901,18709,28861
+36163,48502,62002,27854,44385,46767,54929
+36164,15351,23857,60488
+36165,3557,2554,37149
+36166,41550,36576
+36167,49514,11236,13498
+36168,70925,41293,32185
+36169,71648,22862
+36170,49621,5896
+36171,60836,68125,48001,49761
+36172,11077,4493,20971,25379,18706
+36173,52101,44151,21030,71539,24498
+36174,67945,63362
+36175,21514,11879,35130,65386,5508,62417
+36176,74718,29433,15873,37956,18684
+36177,59684,53865,25635,47443,40799
+36178,64425
+36179,74253,73337,46893,48150,13754
+36180,59557,1267,80093,2250
+36181,34333,57008,55748
+36182,75671,14358,45444
+36183,55320,15213,1346
+36184,43805
+36185,45602,20467,14430,73765,80230
+36186,15590,77777
+36187,5154,24501,64177
+36188,77340
+36189,45165,49926,61558
+36190,2482,70534,10836
+36191,22544
+36192,30423
+36193,36718,57696,81127
+36194,40872
+36195,51559
+36196,26739,36739,68164
+36197,48843
+36198,5627,23662,10339,4921,15444,78541
+36199,17568,15273,1002
+36200,67974,61656,71996
+36201,13260,23496,68190
+36202,54330,8202,67209,29024
+36203,57246,37820,80268,45776,12523,43941,19849,37515
+36204,15016,49734,15754,53661,62341,21992
+36205,71222,42145,54445,24761
+36206,68576,5801
+36207,1596,16344,76033,76825,46442,16474,73368,55176,77396
+36208,76183
+36209,51182,46281,53257
+36210,22226,51981,27148,67496,41345,58600
+36211,67884,77052,76465,62416
+36212,63693,30812,57073,21990,30946
+36213,49180,33917,59212,1034
+36214,7909,1301
+36215,1153
+36216,27630,1004,38832,75357,19046
+36217,37330,77498,37745,80525
+36218,58260,20744,45550,17319,79698
+36219,75738,59408,18800,26473
+36220,5663,65611
+36221,39908,45048,55912,40805,24695,34411,32881
+36222,58077
+36223,67005
+36224,17351
+36225,47324,12484,18240,37961,42445,73707
+36226,32640,34283,38092,39043,56878
+36227,62762,11826,57691
+36228,70257,36060,69092
+36229,62962,4141,35355
+36230,5727,13164,29415
+36231,39235,56424,14487,19006,488,15918,70219
+36232,7280,25374
+36233,11472,24489
+36234,75805,11028
+36235,46679
+36236,30993
+36237,31804,6200,6370
+36238,54335,47353,1699,70999
+36239,64677,9836
+36240,1546,66145,10452,708,63118,30435,33718,22300
+36241,36312,41561,51025,26696
+36242,26732,40039
+36243,21456
+36244,2421,29492,22673,43938,76021,55113,16205
+36245,42749,20887,45090,65997
+36246,18283
+36247,9340,49134,72835,47485,23346
+36248,32854,59078,74930,17784,60715,66032,4402
+36249,40732,48278
+36250,46615,71317,44350,65263,46352,63786
+36251,50688
+36252,44358,18236,58863,62700,34790,51194
+36253,65015,35479
+36254,14767,66099,47625,20030,74312,38113
+36255,12083,27680,32297,31409,37355,49955
+36256,58232
+36257,64433
+36258,32577,11972
+36259,34595,54938,8363,12666,68010,70973
+36260,72765,12803,15492,23663
+36261,73000,48047,29551,55999
+36262,66521,78848,61630,69581
+36263,45388,31949
+36264,27319
+36265,37739,2031
+36266,61322,71057,76103,80054,41117
+36267,57243,65697
+36268,77164,31719
+36269,39569,16527,12009,2838,44745,28935
+36270,41614,21475,21941
+36271,8489
+36272,13530,56583
+36273,63596,42309,29266,24262
+36274,26481,67257,2435
+36275,48796,17238
+36276,438,39587,3842,8937
+36277,12496,59439,42060
+36278,39703,74857,74961
+36279,3475
+36280,78467
+36281,39138,63519,69335,2578,27752
+36282,43804,81741
+36283,59286
+36284,11685,6463,6941,58774,29965
+36285,41356,32138,76810,46853,44084
+36286,62226,6373,9222,19383,52794,3376,48427,9970
+36287,14026,19327,8741,10048
+36288,19971,70821,35369,79946,64156,43686
+36289,31796,37006,45895,17831,43505,20297,38135
+36290,82130,13226
+36291,8256,27568,78268,71550,57544,68274,51861
+36292,44700,49369,65258,34038,36835
+36293,48330,60264
+36294,49661,31518,75296
+36295,35956,24026
+36296,961,56107,19954,71396,33902,70962
+36297,46679,5037
+36298,75278,11845
+36299,1618,59946,59215,22858,59629,44172,53758
+36300,37964,11240
+36301,37048,77994,20397,36714
+36302,22538
+36303,511
+36304,20376
+36305,5543,60084,27605
+36306,80925,1014,57540,54451,16536,22409,24157
+36307,9228,45867,521,65675
+36308,44420,44285,2460,2769
+36309,2658,27305,13260,44975
+36310,15260,75600,10926
+36311,61880
+36312,42519,48516
+36313,52284,21011,13479
+36314,66697
+36315,48900,75074,18453,44564,48468,38947,53727
+36316,18628,48499,22777
+36317,36587
+36318,80664,62635,69291,8682,16326,24959,60497
+36319,52497,72267,77681,39060
+36320,45824,35905,60377
+36321,60596,35051
+36322,68560
+36323,78475,44020,9124,16846,78842,47256,39689
+36324,59222,27692,64817,13377,19309,67455,68637
+36325,46788
+36326,21103,48522,7530
+36327,25792,6468,15207,62854
+36328,42050,30796,74099,57364
+36329,28224,35787,64440
+36330,22256,4249
+36331,81299
+36332,15638,15732
+36333,49473,60273
+36334,12224,28935,2323
+36335,79151,61145
+36336,50494
+36337,40169,46879,38921,57530,18295
+36338,51405,45066,6690,39019
+36339,15114,47840
+36340,67429,58152
+36341,77431,81945,20771
+36342,76670,62701,51185,10000,18344
+36343,81319,34579,25796,19600
+36344,75754
+36345,30538,25169,13058,30648,43404
+36346,81107,39546,64174
+36347,17082
+36348,72704,57161,51964
+36349,2099,7129
+36350,46792,23985,18972
+36351,62218
+36352,38364,78217,29070,37676,2839
+36353,68600,74144,71024
+36354,77113,20211,39650,5146,43872
+36355,29391,34491,32030,21014,4748,7176,58548,1995,53329
+36356,74670,79496,71576,43217,63844,79076,14209,3806
+36357,57237,77331,59705,77258
+36358,12533,74943,76982,79431,2499
+36359,4760
+36360,56698,1275,16067,23236,75610,30013,10862
+36361,81226,26958,58048
+36362,18827
+36363,3880,7105,80401,15695,4508
+36364,61655
+36365,1391,58126
+36366,36590,24484,56694,81772
+36367,70237,39953,37651,72063
+36368,45425,61382,79408
+36369,68378
+36370,30961,66038,23646,67864
+36371,1437
+36372,50759,76348,45055
+36373,9668,37743,7710,63289,7278,66850,8747
+36374,74071,45569,49968,68509,17199,15885,39468
+36375,76576,36817
+36376,48873,44825,35694,12011
+36377,17915,35047,77185
+36378,20409
+36379,42376,41249
+36380,53836,71944
+36381,25305,6045,28993,3251,35734,19303,43285
+36382,31905,75119,63624
+36383,48483,26066,8142,12987,16570,75919
+36384,47237,13664,3460
+36385,57979
+36386,39101,904,50706,76776,51879
+36387,73235,40637,4639
+36388,30254,21477,72942
+36389,4121,69245
+36390,35486
+36391,6679,78185,56492,28331
+36392,56712,6029,32157
+36393,58609,19523,36576,12814,16444
+36394,30404,69050,29448,13125,50384,33963,15489
+36395,44580,49118,11218,61568,55616
+36396,45327,21020
+36397,74875,38739
+36398,53563,51028,49795,38302,9619
+36399,63884
+36400,5183
+36401,35062,5386,72829,78970,25816,74901
+36402,43897,1925,70108,2455
+36403,69093
+36404,35838,31798,75618,61766
+36405,40239,75781,55124,45586,31393,53091
+36406,48817,39549
+36407,30286,27808
+36408,3813
+36409,31958,44865,40869
+36410,39302,28852,46988,30427,71437,37434
+36411,10245,13414,78347,35331,30206,14437
+36412,65971,34521,18285,11060,27336,58500,60058,50985,82059
+36413,70414,42078
+36414,63517,28559
+36415,29203,18986,26605,45271,4698
+36416,6956,10916,16463,33226,8882,9707,28066,38378
+36417,16080,49292,59028
+36418,78986,77112,74592,47639
+36419,51968,24612,59062,38027,41296,78221,32114,66161,13349,78786
+36420,24964
+36421,629,66584
+36422,38185,60794,77790
+36423,40614,41011,27171
+36424,35418,60194,75365
+36425,80281
+36426,50200
+36427,4947,30942,52185,27480,26205
+36428,30094,60147,55890
+36429,51323,45090,10896,6181
+36430,74571,44654,8409,28084
+36431,31381,79216,38282,65691,26888,32979,33628
+36432,13584,71076,42020,36532,52400,42899,55268,41999
+36433,8841,11964,54365,37356,48748,18225
+36434,30198,4133
+36435,46150
+36436,79609
+36437,60062,38010,58533
+36438,47064,76992,32559
+36439,36668,58529,43469,54561,65968
+36440,38194,59542
+36441,20244,62144
+36442,43965,58395
+36443,6112,35516,63492,63325
+36444,1576,55530
+36445,23633,21166,43142,7854,21519,73108
+36446,11345,51464,9741,32532,30907,13502
+36447,49575,53735,12132,14467,14861,10070
+36448,76786,26928
+36449,51050,55504,15803
+36450,51349
+36451,56872,79519,60936,71420
+36452,30901
+36453,27061,39502,57248
+36454,64581,30468,33629,40323,72165,10808
+36455,63665,44503,41669,32900,19620
+36456,11280
+36457,6446,11211,68306
+36458,18451,56371
+36459,3594,24415,5268,7685,55299,3935,19651
+36460,38911,24409
+36461,31911,38070
+36462,45348,10948
+36463,16247,52172,37507,64339,58030,81081,30660,5225
+36464,50115
+36465,56633,47908,71250
+36466,80332,50358,62584,11980,35182,32304,46601,78151,47536
+36467,12705,81996
+36468,10228,18349,16895,28390,81613
+36469,4639
+36470,75477,21233,28463
+36471,74610,79570,45161,54287,70391
+36472,25333,68260
+36473,24214,31609,40951,74893
+36474,34089,33882
+36475,51753,68669,31736
+36476,17408,70981,43762,54753,37651,64159
+36477,2734
+36478,35958,34477,41064,16904
+36479,43011,50989,17509,421,59274,7650,32371
+36480,31778,34888,48847,72689,62178,29817
+36481,54462,8747
+36482,80705,6548
+36483,73103,31345,28272,47625
+36484,70782,15980,61422,59594
+36485,12824,37120,81237,63110,54469
+36486,37546,853,37808,70190,52077
+36487,76576
+36488,36819,57913,28012,35794,33937,68772
+36489,58688
+36490,67832
+36491,22694,56707,49483,69577
+36492,51862,688
+36493,46394,15053,45262,10882,24452
+36494,70639
+36495,46721
+36496,35528,28563
+36497,23732,19784
+36498,12476,43713,824,76664,25484,77798,65010,37379
+36499,11392,77998,66157,43623,11504
+36500,31188,80514
+36501,8649,9018
+36502,44253,77656,5638,39275,3345
+36503,56979
+36504,12859,74605,5864,8560
+36505,56010,13719,53829,10205,52386
+36506,37296,8880
+36507,80207
+36508,59680
+36509,61045
+36510,56077,69804,38,38569,13245
+36511,33235,36234,38762,28924,25637
+36512,45431,37014,50474,38277
+36513,50279,47041,79116,10686,1955
+36514,61208,2861,81634,18851
+36515,61343,14977,10205,51234
+36516,63573
+36517,1463,14129
+36518,24583,43109,41368,78827,77882
+36519,66837,78325
+36520,27698
+36521,51063
+36522,38359,42445,39841
+36523,45993,32591,22872,52657
+36524,46941,24634,6262,69923,37167,75535
+36525,36879,52662,51504
+36526,47982,42060,25473,10160,29853,12128
+36527,475,21623,39878,12866,62225,44059
+36528,45479
+36529,47656
+36530,5864,54412,43391
+36531,32182,29689
+36532,51629,28821,28636,1622
+36533,74017,80941,62266,65377,16991,52010,51088,58003,54964,57047
+36534,61173,26744
+36535,61423
+36536,60028,33432,33339,22047,62558,57823
+36537,69162,45382,79257,56924
+36538,59668
+36539,34086,75658
+36540,31949,16051,62831,78140,14236
+36541,2476
+36542,64896,34465,37467
+36543,28992,15631,61434,76311,34374,49633,17862
+36544,68527,59260,74146,74122,13868,36994,62537,75834
+36545,56796,17757,26477,80147
+36546,72164,61383,1711
+36547,34504,76180,55461,24035
+36548,70656,69408,42237
+36549,45824,35551,11293,15060
+36550,72209
+36551,35470,8116,53950,46450,32285
+36552,45125
+36553,29509,40774,52643,68097
+36554,43480,32225,23136,78948,10082
+36555,52391,11136,49259,65055,25156,20762
+36556,71729,62510,59031,60231,48633,61846
+36557,60825,21465,68944,28531,41626
+36558,18597
+36559,6145,29019,42986,47163,23984
+36560,21942,11480,45511,42727
+36561,44725,12754
+36562,77313,45219
+36563,76412,36961,45361,66386,73553,79065
+36564,59080,81887,37905,58720
+36565,74247,33461,40411,74064,14482,44147
+36566,15445
+36567,69525,3777,13860
+36568,3944,34585
+36569,38055,4302,59756
+36570,51200,80482,2635,36881,4598,44553,2561,41349
+36571,39671,11547
+36572,17497,44276
+36573,20022,64174
+36574,36615,12615,44002,67461
+36575,37678,7432,82070,17396
+36576,2871,16731,1645,24787
+36577,35248,39311,38804,63251,20445
+36578,875,73575,47004
+36579,70893,38794,69211,80413,44933,19085,75644
+36580,3536,21128
+36581,1764,45341,3720
+36582,9647,80493,3405,30265,76577
+36583,36410
+36584,713,10357,12901,7676
+36585,61566,55782,47628,25831
+36586,59753
+36587,38765
+36588,17606,75570,18070,76364
+36589,61951,19204,51186,13749,21735,12190,61269,3535
+36590,45787,47274,56145,19987,59939,26430,21637
+36591,71977,29599,71128
+36592,19766,26184,80151
+36593,67479,2376
+36594,21435,42541,15604,69715,68134,41959,28264,67831,58315
+36595,9358,76023,28315,11844
+36596,11161,27920,43748,80899,42543,65868
+36597,10015,20138,48718,6608,46057
+36598,21389,56046,73895,36717,33168,49936,2573,66778,34445
+36599,74923,63336,31139
+36600,73617,38936
+36601,36545,16187,74986,57986,80600,21060,33069
+36602,23442,46666,45443,52025,40546,80822,59301,58462
+36603,80049,53976,4694,37778
+36604,45406
+36605,18483
+36606,79437,75662,59540,5854,21739,77788,21636,22647
+36607,76244,78337,6084,76299,80452,22588
+36608,32721
+36609,49326,28559,31809,75311
+36610,33743
+36611,15538,33389,81395,35872
+36612,3305,72911,32544,53897,31975
+36613,76919
+36614,45747,5293
+36615,37579,82053,5946,5591
+36616,62163,18155,30840,74985,58729,51783,21505
+36617,25668,77880,41014
+36618,14473,16766,67979
+36619,31506,51878,37237,69783,41854,50516,11744
+36620,28347,65021,34730
+36621,55806,61080,39431,68161,69275,31190,51447
+36622,15357,44555
+36623,64738,25406
+36624,81302,23182,60080,79227,69850
+36625,33274,56096
+36626,33249,13301,41708,27533,38243,53622,33590
+36627,39696,55384
+36628,68635,72432,16873,50968,19234
+36629,60002,69509
+36630,52908,11497,47483
+36631,15532,62392,42527
+36632,40687,54716,54023,14342,53537
+36633,14096,70857,30144
+36634,4023,30012,39150
+36635,12520
+36636,41401
+36637,32111,68894,2732,53777,937,53046,65363
+36638,40627,54256,15490,60292
+36639,18658,33189
+36640,47591,37960
+36641,40471,79741
+36642,26862,7772
+36643,29774,49539,65796
+36644,5854,65383
+36645,43130,43665
+36646,24023,63475,31500,49611,61645,60321
+36647,12598,69805,60301,65161,15962
+36648,31301
+36649,18837,10504,6880,61821,13565,22818
+36650,4664
+36651,67872,78030
+36652,4178,77220
+36653,71924,15863
+36654,53454
+36655,77549,28028,76767,67596,30731,31414,77493,28265
+36656,10234,25016,73330,52207,58306,9400,46171
+36657,45939,40237,81274,54278,33675,69124,81008,16139
+36658,31388,69217,59868,18084,55500
+36659,41682,41242,63861,70377
+36660,56508,54951,62336,2199,5674,35224,67243,81159,66650,81831
+36661,30075,12170,46855
+36662,48520,65256,12770,37675
+36663,68407,48137
+36664,57109
+36665,50568
+36666,22767,62067,34573
+36667,13674,59600,66468
+36668,47374,46097,43377,24827,14853
+36669,14983,44058
+36670,74463,66527
+36671,38057,42781,69532,55861
+36672,54123,17877,68142,46679
+36673,24244,16690,33312
+36674,12436,60734
+36675,71508,65335,4765,54820,29385
+36676,45908,57655,17248,17330,32221
+36677,78026,15367,31078
+36678,2530
+36679,54326,40679,25173,60736,6230,9823,37902
+36680,10857,69325,64884,7747
+36681,37862,80578
+36682,76895
+36683,19048,3092,24870,17146,16545,55668
+36684,27386,42062,24782
+36685,19189,54372,62414,3658,26254,31258
+36686,43098,28026
+36687,76310,81822,21386,25649
+36688,59036,51197
+36689,1357
+36690,24311,75454,60009,2489,40381,4417
+36691,55052,19028,59340
+36692,79892,41356,46553,54627
+36693,11120,22516,27141,17643,10209
+36694,21318,7052,4600,80005,420,66194,49974,82116,75956
+36695,11717
+36696,17856
+36697,26464
+36698,28514,56147,56430
+36699,9282,17949,12196,43424,64379,39835,871,7331,79273
+36700,74241,27204,40462
+36701,73748,68627,53,57196
+36702,54434,12845,65516
+36703,67470,8528,39799,31823,81191,43313
+36704,27211,21438,44935,54778,78768,36681,65697,40533,61452,24446
+36705,44082,64025
+36706,72873,15896,76639,56274
+36707,42890,25147,14456,43012,80388,20254
+36708,64486,3968
+36709,24925,17265,78198,64863,2157
+36710,5395,9614,32079,57270
+36711,35866,19561,20207
+36712,48717,49840,69161,44870,62722,3917
+36713,69680
+36714,52831,44053
+36715,16030,911,45896
+36716,70866,31944,77433,5198
+36717,52509,65995,56635
+36718,60008,14211
+36719,64869
+36720,42061,24817
+36721,35289,19636,72169,17665
+36722,26675,47212,59277,3996,81925,72346,45102
+36723,67515,29246
+36724,61447,12428,13411,78177,20079
+36725,7621,77540,24543
+36726,39965,75232,39742,80289
+36727,67336,761,16061,76625,55502,33140,47483,49378
+36728,40617
+36729,34402
+36730,67729,62100,12390,74334,59522,15824,35103,5672
+36731,76690,42978
+36732,63384,50160,66268,54839,58134,35978
+36733,44007,74012,81907,72820,34171
+36734,81430,3830,2409,41109,9875
+36735,70908
+36736,67834,34238,903,61026
+36737,30467,37872
+36738,60910,66580,6707,1937
+36739,74330
+36740,13800,6938,56361,47686,18165,79896,19999
+36741,39611,2451,78876,80432,2034,52789
+36742,44089,66850,29925,58485
+36743,30031,62714,33308,71745,12521,3081,69892,11051,54017
+36744,52319,79018,55823
+36745,71073
+36746,41489,67045,16376
+36747,73397,2068,10086,49013,20566,54710,79884,58649
+36748,38111,58089,34367
+36749,79117
+36750,40377,76503,70040,3631,9669
+36751,34931
+36752,51247,8868,55095,48112,59291
+36753,49180,66157
+36754,47483,18476,72664,59675
+36755,65408,76963
+36756,18035,54764,57846,33798
+36757,49343,78593,9399
+36758,45162
+36759,22688,66598
+36760,2806,66771,73774,11092
+36761,77537,36826,21928,69550,19682,76018
+36762,11694,5338,39893,72306
+36763,34916,70350,41061,27777,56099
+36764,75575
+36765,43916
+36766,79707,58959,67229,63781,59414
+36767,61081,59823,66771,61568,44801,41239
+36768,9453,72402,79151,24368
+36769,17708,63493,43147,54047,30718
+36770,41982,18686,57985,50190,62108
+36771,30816,78879,58237,2742,56484
+36772,24883,54574,29237,19612,74516
+36773,41379,40379,16129,441,22490,21517
+36774,2120,71662
+36775,61712
+36776,35404,77450,10850,12694,18829,5466,55465,17498,57999
+36777,28230
+36778,2685
+36779,77079,59770,53447,32796
+36780,23729,29927,73071,71974,61787,31999
+36781,11715,55231,18753,56995,3827
+36782,64050,63980,30069,71479,2606
+36783,42585,28317
+36784,22751,7296,52253
+36785,40976,3741,24717
+36786,24460,32524,20418
+36787,68753,40378
+36788,5023,15155,49495,36396
+36789,18243,47852,74566,49574
+36790,43660
+36791,18075,54497
+36792,52948,14748,81582
+36793,51189,70755,75708
+36794,11238
+36795,24827
+36796,75852
+36797,44941,31414,68923
+36798,9608,34421,66841,26128
+36799,11826,51977
+36800,69070,15770
+36801,19321,626,74456,36670
+36802,53435,10979,52582,56704
+36803,11713,32868,15887,64708,26703,58778
+36804,10589,66020,28633,15618
+36805,15129,61203,60130,42583,53157
+36806,11459
+36807,61456,12658,68620
+36808,50155,30290
+36809,81989,24717,65422,80246,66467
+36810,70099
+36811,65482,43256,70614,24664
+36812,13640
+36813,76015,9173,2056
+36814,65700,1121,72632
+36815,42466
+36816,61515,14707,9941,58757,32490,58215,64008
+36817,18772
+36818,60845,44019,19140,27258,81439
+36819,11151,18363
+36820,1240,38218
+36821,11817,32873,53190
+36822,62251,54757,31161,75379
+36823,10788,13037,40601,78337,55262
+36824,14229,39379
+36825,55659,77160
+36826,1218,22994,13658
+36827,14992,18558,60697
+36828,19139,69373,62297,35839,59176
+36829,74410,54599,15758,52607,7688,51331
+36830,4165,71292,21298,78086,45483,567,11149
+36831,6626
+36832,81993
+36833,32800,11876,51255,78997,4205
+36834,64883,55978,79610,71566,17269,24558
+36835,13722,37149
+36836,224,43412
+36837,19333,77856,58071,55376
+36838,78810,19665,60628,52465,41423,75553,75528,25806
+36839,69954,18869,33136,16672,75880
+36840,9458,48321
+36841,35602,12118,57269,4219,70033,30632,61492,18398,71213
+36842,27327,13690,12626,78859,78800
+36843,4909,61772,54860,76995,1014,35049,76303,73244
+36844,66806,10424,49345,49881,19934,48931,6017,51407,59393,4942,48617,52800,38529,72959
+36845,81379,885,29433,49242,70843
+36846,54334,25072,32575
+36847,8628,62535,72072
+36848,69791,49567
+36849,51315,53890,24804,31402,36240
+36850,27653,28519,65036,50641,6762,63761,22110,54103
+36851,55659
+36852,71581,35236,2340,34606
+36853,62427,35693,10248
+36854,10687,38106,77125,67943,24101
+36855,44832,33309
+36856,80489,53254,69175,66514
+36857,45342,32637
+36858,48036,3332
+36859,28865,21605,30691
+36860,11711,78468,7407,75714
+36861,60064,32257,49307
+36862,71015,69560,7154,57953,61652,1196,67649,46156
+36863,69920,20297,11274,19745,27093
+36864,56257,26225
+36865,37418,19338,54726,72447,3021
+36866,51797,75019
+36867,6290,75010,66802
+36868,30391,106,29054
+36869,72464,12436,78514,13144,77837
+36870,10032
+36871,69839
+36872,5401
+36873,66216
+36874,41472,68327
+36875,42135,54501
+36876,2173,74158,12910
+36877,15839,56939,14887
+36878,72029,24059,34885
+36879,32577
+36880,61108,68349,57942,20976,64419,3928,62925
+36881,36789,44210,78280,50131,35672,30514
+36882,62104,77599,11012,52920,11354,25572,34212,38558,1762,31672
+36883,34501,22875
+36884,22755,2929,81548,11844,62166
+36885,52412,19239,68309
+36886,35597
+36887,50812,10915,12701,34644,76041
+36888,22865,76683
+36889,6426,66689
+36890,71302,27907,15098,30166
+36891,17536,18637,75663,71774
+36892,64462,8673,59836,29985,81127,5252,77830,34863,35090,69711,48362
+36893,42587,77722
+36894,10793,45164,70332,80685,71300,65642,25766,71183,28984
+36895,80478,57703,15728,32510,40861,55174,56401,48031,72680,67729
+36896,51265,19087,2625,38907,51443,62956
+36897,17838,65050,143,43909
+36898,63988,72898
+36899,38014,64795,38367,21425
+36900,80080,39878,57700,80050
+36901,51456,80791,55355,6312,21877,79591
+36902,24941,51245,81927,47596,80910,49051
+36903,77861
+36904,7878
+36905,35844
+36906,44931,68565
+36907,1772,71942,63846
+36908,69636,30427,40309,14106,11726,66370,66871,67216,34568
+36909,621,12626
+36910,52670
+36911,69769
+36912,4419,62905,49527,9162,50632
+36913,35,29741,21228,14239,11925,48569,32160,21412,2930,15223
+36914,34198
+36915,64398
+36916,36539,38888,2258,52284,27349
+36917,70754
+36918,68493,68743,10649
+36919,55993,80319,13086
+36920,75260,51558,52942,39984,78188
+36921,339,23546,21040
+36922,61601,34385
+36923,12769,40824,9045,69135,15756,54838,9260,500,66620
+36924,35358,42114
+36925,51047,25952,44674,73311,24132,41304,61255,67992,3936
+36926,58333,16837,67575,54829,23885,16431
+36927,38309,36049,63066,40326
+36928,64741,7697,10592,22975,44569,29562
+36929,46897,27052,10960,41896
+36930,35495,8181
+36931,30487,16520
+36932,11516,21654,60508,28109
+36933,14738,12466,57026,12615,34673
+36934,78150,44566,80803,17604,25730,12192
+36935,44730,54326,6895,72761,71942,61399
+36936,56817,65546,5522
+36937,54709,71977,38979
+36938,48587
+36939,59605
+36940,3742,25180,23926
+36941,76896,57801,61702,33707,76779,29070
+36942,78681,15593,25447
+36943,3097,31958,61985
+36944,53033
+36945,29260,51253,41859,36558,40432,66018,27284,6960
+36946,29418,33768,402
+36947,20481,54224,1725,64398,47010
+36948,68477,72588,55622,50631,39142,6092
+36949,1598,28835,34466,4375,993
+36950,20799
+36951,79012,32548,29925
+36952,80105,79191
+36953,23585
+36954,67015,74876,42401
+36955,16333,21717
+36956,53623,49683,59851,51950,54448
+36957,74157,3674,56289
+36958,14387
+36959,42115,52218,78703,29026
+36960,65558
+36961,54373,49810,38628,73763,63565,60341
+36962,67815,50678,63796,27346
+36963,35535,74886
+36964,16338,77971,41888
+36965,21915,72754,9442,29937,35539,43670,1995,63637
+36966,9275,5818,66603,5345
+36967,37969,18254
+36968,80422,42673,49264
+36969,44631,21734
+36970,13861
+36971,31867
+36972,76483,52597,82074
+36973,2002,60721
+36974,47244
+36975,74931
+36976,54822,37,37169,9357
+36977,12061
+36978,9775,74045,64701,39993,12068
+36979,67212,40873,24900
+36980,74800,53711,28223,11571
+36981,49737,23099,4074,20414,13416,40045,68179,28313
+36982,19015
+36983,60052,60110
+36984,12342
+36985,30947,64087,16110,31441
+36986,48979,60521
+36987,54425,43415,72968,3381,39640,40244
+36988,14129,61637,66714,72675
+36989,27947,55633,81134,23869,65323,40198,8629
+36990,19845
+36991,45491,9677,40688,60144
+36992,64753,65720,49050,37869,20524,49132,15016
+36993,58527
+36994,65534,53714
+36995,82117,51319
+36996,4055
+36997,76164,73158,76278,24373
+36998,67706,6930
+36999,36817,34250,37594,63697,71453,41152
+37000,48330,336,62354,39492,4444,9466,75473,588,29986,77838
+37001,685,44743,79834,41920,72034
+37002,65706,62053,64895
+37003,68399,10086,69408
+37004,23585
+37005,10832,11704,23827,54360,69674
+37006,24985,59951,15256,37808
+37007,7765,51854,70424
+37008,54769,31794,32695,48020,19541,14210,40449
+37009,11058,31627,13016,9205,7627
+37010,67672,40802,8637
+37011,50370,19579
+37012,56600,35652,2601,15723,73699
+37013,5810,24292,38717,55617,10998,55667,22100,38304,46903
+37014,65155
+37015,65085,75551,68422,24627,74283,19354,29774,29956,1745,8654,13155
+37016,9998,61205
+37017,27052
+37018,28836,43477,1699
+37019,53748,19680,72222,41041,65642,26661
+37020,44715
+37021,39498,78739,5201
+37022,46087,6552,54470
+37023,9709,28290,5117,37558
+37024,31433,22706,2042,79884
+37025,4672,22109
+37026,64368,58362
+37027,20127,43001,50257,36051,80721
+37028,9582,64147
+37029,45397
+37030,4639,9154
+37031,34238,51926,71177,3747,64231
+37032,2551,30911
+37033,4165
+37034,22123,47474,37258,43196,29050,11683,40943
+37035,14183,9512,6617,63068,32700
+37036,64524,76318,12398,7400
+37037,12448,22300,4224,37798,64403,66129
+37038,17256,67494,14823
+37039,49304
+37040,42797,32614,80881,81711,27603,18933,54815
+37041,75416,71509,56271,52522,543,53006
+37042,14306,12248
+37043,70182,17810,53205,3648,61973,35949,54604
+37044,70212,46677,61121,416,76497
+37045,48339,45706
+37046,57070,55448,25432,27208,362,67563
+37047,1647,28606,69836
+37048,79726
+37049,51238,30704,60776
+37050,65820,26345,33201,67192,10266,44896
+37051,35486
+37052,72958,73714,52462,41005,65061,75143,47194
+37053,17838
+37054,72158,56232,25970,31223,10310
+37055,42448
+37056,8339
+37057,33708,62270,33221,35993,16281
+37058,62394,6244,14146,22049,6335,2258,8931
+37059,11551,75528,22548,65271,79421,76768,58190
+37060,1391,38614
+37061,26888,46201,71809
+37062,43746,49633,48310,14434,65641
+37063,12886,62814,61849,20182,8827,10555
+37064,30536
+37065,69247,74689,69596
+37066,81763,17242,19614,16287,269,59805
+37067,22683,34715,52800
+37068,25983,10123,80674,33371
+37069,54492,71329,28412,48941,31801
+37070,64957,36770,62528,16025,28070
+37071,13491,30395,72620,35844,45090
+37072,1511,101,57513
+37073,39474,12341,64630
+37074,46022,14795,49152,2157
+37075,37507,78454,27931,38486
+37076,4505,31025,15551
+37077,69290,11011,41346
+37078,62579
+37079,80950
+37080,20281,38821,25679,80975,61688,61286
+37081,69794,8665
+37082,17351,79092,49258,3144
+37083,72498
+37084,22464
+37085,33204,59582
+37086,59684,37067
+37087,27589
+37088,36487,35947,81245
+37089,39789,67678,28544
+37090,27859,8025,26146,1409,16485
+37091,17011,52176,21606,81202,68494
+37092,65479,71024
+37093,30367,39851,73542,69716,40534,51485,21573
+37094,59168,10333,64689,52115,24666
+37095,19130
+37096,2497,39475,79355,26820,61798
+37097,53719,37973,76266,2561,25844
+37098,44630
+37099,1260,41389,27412,18403
+37100,45733,60216,3634
+37101,13642,77275,28095,3370,63458,74135,69958,81334
+37102,36298,16352
+37103,12881
+37104,9453
+37105,7320,56553,53322
+37106,65559,17266,37494
+37107,55216
+37108,6515,5643,36107
+37109,26142
+37110,50865,11250,22365
+37111,28025,25533,27550,19681,18481
+37112,80959,54135,38866,8072,66523
+37113,40349,42862,41118,14420,45923
+37114,27159,57241,37978,39396
+37115,35087,72744
+37116,36817,20170,29421,59473
+37117,74074,68938,14998,19231,60252,3784
+37118,41059,74557
+37119,70594,71563,1173,81561
+37120,45629,31202
+37121,51776,70179,30451,32063,21911,42486
+37122,18797
+37123,11817,15826
+37124,53092
+37125,41177,65918,66292,71319
+37126,73155,76660,36002,23410
+37127,7772,34000,2926
+37128,22480,38125,30186,17607
+37129,81779,27568,24200
+37130,31626,12946,77940
+37131,77252,47420,71354,72549
+37132,65394,45474,36052,42637,81979,30329,36925
+37133,39798,53081,8252,38058
+37134,49323,29015,8461,80340,22964
+37135,12258,17976,77359,55900
+37136,68387,64124,51955
+37137,59654,9860
+37138,10149,3778,46789,47845,73514
+37139,70827,70523,10545,31135,40081
+37140,18948
+37141,61958
+37142,45996,26097,16442,58185,58156,29879,76256
+37143,60426,43521,58726,59814,62270
+37144,50108,45563,14587
+37145,40594,67706,59582
+37146,51020,60473,47029,77277,41353,56239,3733
+37147,14436,15106,40657
+37148,78795,70501,48172,29799,30504
+37149,1037,54928
+37150,73309,7667,3153,18489,11418,77427,46488
+37151,44906,54823,69047,53502,56181
+37152,52581
+37153,24375,68306,63674,37871
+37154,34816,47239
+37155,11538,28272,78996
+37156,63681,18834,21533,74697
+37157,71486,62187,3171
+37158,61621
+37159,52642,26558,56631,16896,60896,74463,44656
+37160,63990,77889
+37161,11507,30322
+37162,20654,59215,59071,28177
+37163,72791,71715,79618
+37164,45577,37235
+37165,59523,23956
+37166,39195,14172,61166
+37167,35673,35416
+37168,7726,48574,80040,12803
+37169,76220,20450
+37170,33448,63519,44936,13582,17310,78825,24431,11002
+37171,57744,74177,75052,49791,37085,46076,11842
+37172,55852,10853,2960,22277,62778,20075,18818
+37173,33816,825,37660,31258
+37174,48874,14486,34428,10985
+37175,49118,81783,73204
+37176,21613,75865
+37177,31947,57193,65316,80899,81369
+37178,80686,24072,77770,45883,56440
+37179,55133,27341,68227,24268,72072,81193,3057,51278,73947
+37180,25766,18397,39334
+37181,64497,68407
+37182,35295,64155,54302,58458
+37183,34843,59540,12629,11224,13128,74238,61314,57786
+37184,30011,71900,67057,53326,29332
+37185,29678,51025,43232,4373
+37186,30782,72997,4921,71974,51476,40590,30873,42245,15790
+37187,50625,66946
+37188,23769,42341
+37189,16747,10275,74074,18893,75214,616
+37190,69279,23245,73210,61779,57870
+37191,15436,81157,15936,55029,16519,28373
+37192,63061,5917
+37193,3383,35807,67099,76140
+37194,74459,19249,54587,62877
+37195,75474,35092,7466,16414,80077
+37196,24628,60916,57527,7817,2913,18296,80065,76537,64956,7953
+37197,62308,35535,62817,61884,48759,73384,73344
+37198,74389,71321,55760,13349,74759
+37199,70642,62293,57065,14505,50884
+37200,79492,19068,51236,69766,59387,941,62116
+37201,31254,2993,9527,4731,81384,45390,81009,9606
+37202,45970,49913,47078
+37203,74886,55602
+37204,14017,53472,9011
+37205,34474,24323,16008
+37206,18021,71925,69356,54684,32321
+37207,59977,24826,65321
+37208,18604,61738,67428,30573,39464
+37209,24182,66064,20721
+37210,63948,10235,8052,7386,28463
+37211,4865,7008
+37212,54315,39829,40187,50504,79153,77456
+37213,1959,6112,54856,10111,77135,28186,69142,71627
+37214,14842,35083,60722,59276,146,38341
+37215,50504,53783,76805,22092,21175
+37216,78972,20096
+37217,10713,78276,70157,39104,63697,37481,9788
+37218,65040,59031,29433,32444,55325,66693,18238,51947
+37219,47863,39516,16868
+37220,68720
+37221,34776
+37222,71759,39997,15495,55972,21048,72078,29174,52787,34556,39400
+37223,32967,20646,39587,79281,6799,71387
+37224,65003,25973,43550,9939,49276
+37225,53625
+37226,72643,19242,80854,69774
+37227,53984,21677,58018,28604,16717,21944,37870,9599,55279
+37228,12343,72634,45495,21843,49133,77660,52636,7524
+37229,12006
+37230,74988,17033,56826,50227,4360,53456,45211,62118
+37231,75683,32910,57592,27114,2477,45454,39616
+37232,35145,26040,65905,54855,18935,9963,69437,65227
+37233,57616,43250
+37234,45741,33833,75968,70270,191,49949
+37235,22544
+37236,49304,28663
+37237,13630,63022
+37238,82094,65278,35721,22514
+37239,59074
+37240,898,3346,19627,23580,74600,5185,38143
+37241,38097,47926
+37242,27532,27738
+37243,41350,20281,33022,14814,50320,43363
+37244,4072,76231,82070,70666,6099,79570,25272
+37245,6720,7086,51803,7733
+37246,36826,19550,17979,42620
+37247,30536,38454,40449,14987
+37248,38013
+37249,58859,46988,37152,16668
+37250,45712
+37251,68542,27758,62537
+37252,41996,59818
+37253,66198,26107,42006
+37254,17533,4728,39334,75738,55263
+37255,44844,73692,55596,64081,36465,51457
+37256,57286,79714,35242
+37257,8203,61793,6186
+37258,81574,71325,76673
+37259,8364,61559,26945,40157
+37260,54458,75880
+37261,405,59791,67797,24437
+37262,23282,42601,77519
+37263,69118,70996
+37264,63492,65310,47675,39508,65132
+37265,36371,12124
+37266,65239,78993,40460,12546
+37267,19242,34710,23137,54205
+37268,60065,25647,65524
+37269,63972,56571,52917
+37270,41043,55962,37696
+37271,41231,10193,15796
+37272,28492,21299,54326
+37273,55199,22823,82091,29484,23741,60426,75062,18627,4227
+37274,70070
+37275,35141
+37276,42517,2265,14801
+37277,16792,60105,2746,78148,65055,80306,48919,65189,59966
+37278,48816
+37279,28615,55091,26072,14693
+37280,28734,24686,27953
+37281,45416,64821,76121,32841,13328,19775,31968,48503
+37282,39235,42213,360
+37283,41346,19140,6180,8547,6185
+37284,33354,26553,43818
+37285,4249
+37286,60395
+37287,20055
+37288,58689,47146
+37289,30775,65251,37536,23332,34184,74509
+37290,2648,70159
+37291,59356
+37292,53306,53798,4840,56980,56590
+37293,81491,79659,52356
+37294,38162,64903,66042
+37295,1794,13514,11309,37175,13723,667
+37296,1269
+37297,9548
+37298,24603,15986
+37299,77424
+37300,81387
+37301,74693,20961,23364
+37302,3666
+37303,14688,15767,55394,22525,67109,26637
+37304,44391,62002,64001,76870,26963,41606,8165
+37305,76046,67241,12768,44077,24862,48742,12006,72104
+37306,527,8404,23039
+37307,43264,74072
+37308,52800
+37309,31201
+37310,39064,57642
+37311,67601,29935,33762,42319,73535,11234,6271
+37312,77236,61631,34262,54318,42650,9613
+37313,53317,44773
+37314,14558
+37315,2446
+37316,43810
+37317,78165,63947,71808,33097
+37318,1221,25057,56609
+37319,70031,61530,71071,51054,39489,59662
+37320,40739,79996,81974,45743
+37321,75657
+37322,31175,47811,2617,9640
+37323,1752,15162,11137,19758
+37324,74092,53063,27880
+37325,52403,63833,14150
+37326,22783,15776,52952,68301
+37327,80281,77425
+37328,21159,52341,23823,12746,64774,8052,13829
+37329,80173,18785,28197
+37330,26704,55868,72174,79666
+37331,15163
+37332,70257
+37333,68907,76450,41727,17784,70832,27537,7082
+37334,46057,47004,36759,67847,14661
+37335,78908,76064,32627,30076,853
+37336,34082,26647,40044,54644
+37337,22683
+37338,32268,67364,4260,27783,33221,56225
+37339,29418
+37340,47732,30004
+37341,4593,23468,77835,51692,70681,48943,73854
+37342,10831,29244,61479,51055
+37343,55065,64497
+37344,42473,29812,37669,9643,63753
+37345,31811,49539,50799,36235,37303,52578,30393,62172,45474
+37346,18681
+37347,30056,75558,25416,4570
+37348,59449,40548,64659
+37349,12438,27237,69576,71470
+37350,39302,929,58507,40837,16999
+37351,72326,35408,60867,60038
+37352,7258,42897,65389,14876,74625
+37353,16329,53338,49335,70180
+37354,71240,81081,9009,26860,42393,69183
+37355,15648
+37356,7224
+37357,13896,79968,31184,16209,31409,26985,860,47358
+37358,1083
+37359,26764
+37360,25792
+37361,5408,78529,54802
+37362,79296
+37363,13800,15922,41326,25645,51417,69900
+37364,22660,2417,63151,65211,48054,34336
+37365,73112,45664,3036
+37366,733,8591
+37367,8765
+37368,63993,9382
+37369,60970,77616,79312
+37370,143,49700,49269,40274
+37371,22110,25766
+37372,35290,18212,47611,10141,22023,21661
+37373,73917,41310
+37374,3667
+37375,72814,48478,24927
+37376,34742,26246,65338,32135
+37377,58511,50269
+37378,78275,45776,6325,52928
+37379,34941
+37380,21852,72947,14172
+37381,44300,20362,2330
+37382,21228,36996,54011,77454
+37383,16499,76338,3207,19431
+37384,39771,58133
+37385,1852,56693,30217,11303,39545
+37386,75759,57352,71208,56765,10859,34763,32939
+37387,77313,9757
+37388,34976,15235,74130,42133
+37389,7577,80207,13052,45500,47219,64584
+37390,33533
+37391,47810,34580
+37392,31339,41122,25906,55736,46611,75102,1677,71396,21950,6939
+37393,58232,42033,72643,80094
+37394,52156,76300,43970
+37395,58688,29228,4192,77388,50848
+37396,51840,36969,4756,8693,33755,26812,55545
+37397,32465
+37398,12276
+37399,52369,61367,66442,5644,27584
+37400,75195,3006,6335,22252,56402
+37401,29349
+37402,1178,28562
+37403,12468
+37404,602,21182,18764,68135,9698,51235,24006,40631
+37405,9130,60407,44025
+37406,20337,28273,40654,73427,41172,70532,10653,73980,2352
+37407,10751,49696,13699
+37408,47977,44742,62065,57007
+37409,29849,56703,33242
+37410,80890
+37411,141,13046,69788,25396
+37412,5391,80130,38714
+37413,25932,52613,70096
+37414,46499,2498,39947
+37415,37203
+37416,38628,78923
+37417,4369,60384,75721,76345
+37418,40490,44490
+37419,61634,27937,22357
+37420,63538,71319,75852
+37421,18368,28888,44659,69481
+37422,57339,3048
+37423,759,13647,45005,51350,48425,23845
+37424,42856,29008,42045,66657,59845,30438,41999,13477
+37425,72118,19267,29254,32231,9790,72469,22988,26544
+37426,77064,40063
+37427,58834,50172,73174,710,57627,54964
+37428,9673
+37429,51324
+37430,62690,69063
+37431,42027,56617,11730,47468
+37432,29925,26562
+37433,20270,77033,63020,47671,75377,73685,20676
+37434,65709
+37435,59549,33221
+37436,19226,67869,73525,11276,81985
+37437,35031,17229,8609,76929,10193,57891
+37438,14699,74425
+37439,39681,81372
+37440,73985,11129,79593,20170,34170
+37441,7033,65237
+37442,21010,36372,33348,30070,26844,69746,31383
+37443,29860,43304,15897,1398,19015,66326
+37444,38407,76338
+37445,2527
+37446,73763
+37447,43516,66790,18215,21060,9116
+37448,63859
+37449,4613,52139,1689,12426,311
+37450,64011,12952,68984,38572,12213,41293,44445
+37451,52865,74062,52267,59562
+37452,7551,57229,10243,284,56336,48977,22649
+37453,10899,49650
+37454,60004,32741,10258
+37455,49949,16012
+37456,37903,7057,21526,61894,31922,2374,52063,44622,31195
+37457,48948
+37458,34466
+37459,73226
+37460,2996,5301,35856,13743
+37461,47740,25573,35597,80226,46206
+37462,20925,20615,79034,32361,7846,39602
+37463,47281,69741,47004,72566
+37464,45027,62161
+37465,78568,77437,66719,181
+37466,3692,30199,58728,5494,79601,27190,41876,821,14324
+37467,16591
+37468,39315,80490,1943
+37469,45480,20553
+37470,3580
+37471,62767,50622,67101,4452,12199
+37472,66354,34360,1299,43665,39629,42609,64994,36865,52276,36037
+37473,49371,58964,17098,49101,79714,35567,72957
+37474,70003,7089
+37475,55981,33079
+37476,43285,14199,15695,17026,49454,35365,42031,886
+37477,18753,43441,80538,22877,19315,21534,44580
+37478,35393,20415,71645,79064
+37479,78842,24544,41288,15863,13671
+37480,1278,24430
+37481,76701,73761,41223,82134,45482,73446,39593,32952
+37482,4142
+37483,48045,1573
+37484,33397,37556
+37485,1209,8226
+37486,7690,49278,81768,49220
+37487,69608,25215
+37488,8898
+37489,38632,33908,29067,36858
+37490,1060,65703,20026,71676
+37491,31560
+37492,59760,25448,49467
+37493,36950,34042
+37494,64637,21550,46831,66266,53224,55019
+37495,69745,4603,68635,52962,31775,53070,53365
+37496,6326,28619,80724,34839,25041
+37497,20897,1651
+37498,17486,40257,21818,10542,64683
+37499,69584,19066,14561,25574
+37500,2858,45500,30348
+37501,57453
+37502,10539,54238
+37503,1817,20890,70469,33589,38850,29323,66268
+37504,1865,27064
+37505,24486,27799,50576,66079,71503,19994
+37506,80055,36359
+37507,4937
+37508,40844,30018
+37509,31299,66950,70416,40345,13354
+37510,34254,56495,1113
+37511,55708
+37512,12039
+37513,21832,48951,74463,33545,37425,18524
+37514,21263
+37515,55986,18914,65555,74341,21720,77739
+37516,71058,31380,30201,2249,63382
+37517,50082
+37518,57212,36795
+37519,45248,63000,18450,52385,29
+37520,52621,18749,75911,80856,53823
+37521,42897,54370,63532,54877
+37522,20838,52154,5493,32754,19406,62829,73446
+37523,80662,34319,30249,44123,34938,56720
+37524,68327,68450,82003,73685
+37525,39910,63751,24866,18824,42798,52154,8328
+37526,57234,618
+37527,72444,12910,61890,14793,19833,56587
+37528,21976,31501,58765
+37529,29500
+37530,41149,71202,62620,71730
+37531,13807,76859,44188,51582
+37532,45573,50846,64663,60246,19813,6426
+37533,8722,4576,69529,15900
+37534,66975,81322,24465,47249,10030,48911,31564
+37535,35800,78589,46023,43361
+37536,75722,46831,22800
+37537,47112,29019,899,35631
+37538,3726,43041
+37539,44804,2049,39019,62773,39737,70105,52254,16117
+37540,31222,54861,39331,37518,8531,50686
+37541,19845
+37542,59229
+37543,22183,26595,50492,24366
+37544,67596,25851,21385,35147,74451,62191,45131,569
+37545,42575,3024,45300,62253
+37546,35276
+37547,55708
+37548,78162,75005,12920
+37549,48537
+37550,24033,81454,13911,28988,15842
+37551,20836,51197
+37552,78218,63375,24540,3258
+37553,71418
+37554,29815,45900,42725,64597,54751,12483,20729,2743,24993
+37555,12564,24244
+37556,45628
+37557,31454
+37558,4026,38238,24563,56294,34125
+37559,38628,6346,48378
+37560,16861,60784,24042,34545,37802
+37561,51581
+37562,19671,14859
+37563,3845,67647,17367
+37564,77651
+37565,25377
+37566,34531,64906
+37567,77269
+37568,29854,27188,71666,9612,29394
+37569,38774,15666,29228,79390,21408,63542
+37570,17537,24227
+37571,73919,10042,63681,60182,30042,25169,12180
+37572,13656,23581,4892,47661,80739,50576,41779
+37573,10975
+37574,51702,12439,5314,74025
+37575,73605
+37576,46078,79167,8152,19017
+37577,63940,66094,41304
+37578,24817,32282
+37579,25514,70788,14158
+37580,41120,8398,45491,79504
+37581,80546,29980,54348,9797,6524,72513
+37582,9850,57476,52401,30758,73099
+37583,60243,20144
+37584,2206,36857,42152,8881
+37585,35954,61150,58488,41278,81870,57654,23052,30643
+37586,17571
+37587,56587,58698,78112,32778,10201
+37588,12877,20941,55345,37711,67833,43965,58388
+37589,58943,21286
+37590,19128,15813
+37591,61615
+37592,23296,53357,64177
+37593,48457,54967,40761,13214,53547,13970,77451,34225,15180,5240,74136,62469
+37594,19318,69845,19548
+37595,36236,19360
+37596,26037,56369,6770,60530,24787,20955,59325
+37597,49857
+37598,42795,35390,60113
+37599,32298,39128,29962,55008,8650,73268
+37600,27215,37371,34155,66714,59781,55269
+37601,64087,23168,60097,19787
+37602,57515,16006,53808
+37603,1099,38383,73189,22088,62186,64170,21775,34218,57611
+37604,60423,59300
+37605,27410
+37606,9394,75739,23454
+37607,46114
+37608,31940,58043,7801
+37609,43984
+37610,13487,17410
+37611,37551,26928,9259,24831,4339
+37612,64341,80075,64360,3271,66660,56348
+37613,56435,70135,17137,73776,37955
+37614,41696,14426,1572,40788,22537,49050
+37615,9570,38241,13199,67421,75966,61940,2671,22273,47633,62973,74955,82106
+37616,64147
+37617,56975,66383,45359,73344,52611
+37618,37133,20440,63413,58725,53950,41163,58039
+37619,41235
+37620,40310,37240,52827,62467,27308,70806
+37621,47810,16132,39610,58232,35947,13411
+37622,993,26786,20431,6317,22624,48059
+37623,74991,56385,76193,32698,20898
+37624,37516,21526,28706
+37625,27888,20082,45451,38070,78619,33369,73548
+37626,34774,82161,4937,42040
+37627,29845,66856,38979,77491
+37628,30539,77227,70742,3260,66811,19297,67002
+37629,61649,40760,45702,51590,18681
+37630,45234
+37631,73184,40563
+37632,3711,44646,61115
+37633,12565
+37634,49264,22023,71559,54867
+37635,24154
+37636,49116,63167
+37637,70409,40799,29039,18070
+37638,23346,65435,75838,57663,10799,64719,36097,47906
+37639,69302,50246,74860,2609,44972
+37640,57478,27928,11436,1777
+37641,35490,31918,30438,61674,55266,26995
+37642,8687,70316,42546,31454
+37643,66709,30548
+37644,49410,53947
+37645,74410,8355,47839,15484
+37646,77086,51132,3212,63457
+37647,26104,36153,66234
+37648,43929,74988
+37649,36152,10771,12634,29521,53946
+37650,18018,28677,44281
+37651,74517
+37652,43892,50793,54865
+37653,59254,72071,15169,70906,40007
+37654,33940,44777,38971,18044,38093,12833,48769
+37655,7620,38361,27110,39303,55074,77824,76099
+37656,12343,28709,78080,25170,1813
+37657,48488,67589,19244,43170,31330,56488
+37658,22
+37659,77168
+37660,29346,3000
+37661,48694,61280,53884,55504,39477,22200,69506
+37662,63927,42801
+37663,2111,6760,56407
+37664,14523,28610,41768,65454
+37665,67819,26652,1057,57662,27904,35680,7837,62966,12081,19476
+37666,60432,56386,70477,3017
+37667,28109
+37668,36909,61518,78080,6969,48675
+37669,57741,35722
+37670,20357,33033
+37671,47043,55416,46654,40646,55618,37662,35709,27693
+37672,64835,81537,75849
+37673,53035,77934,402,43684,53872
+37674,37308,4287,46059
+37675,19327,60413
+37676,25820,37435,18518,13869,3451,49501
+37677,66541,72216,80798,69135,30388
+37678,14211
+37679,71350,71912,55619,76302,24338,69655
+37680,41803
+37681,63746,22990,40118,79246,5537,53789,61696,9823,34978
+37682,57559,67655,64193
+37683,40568,49526,51868,76813
+37684,12403,25566,74147,52239,32625,31414
+37685,14357,61089,41067
+37686,33343
+37687,7288
+37688,78673
+37689,2234,16438,80985
+37690,15974,70136,46097,60494
+37691,41594,9655,30681
+37692,172,25883,3061,41245,26447,32759,81587,54622,71379,3588
+37693,75453,19936,31380,15840
+37694,58943,32939,11302,62446,50189,30721,9994
+37695,4067
+37696,6762,65697
+37697,44121,74180,35147,13178
+37698,44838
+37699,57522,32479,25730
+37700,54776,13032,81763,12026
+37701,40122,71291,53118,39519
+37702,49304
+37703,23207,58501,40984,12920,68575
+37704,69724,10161,67071,71789,66220,55533,37742,81085,29953
+37705,30650,57655
+37706,42981,50269,59780,8025,77595,63875,29265,21149,63405
+37707,41564,4809,6976,69306,29592,74495,65788,55831,58591,49494,77892
+37708,42027,19044,12741,73066
+37709,3892,81543,45168,65842,29269,7506
+37710,10032
+37711,59226,29319
+37712,80535,24812,69275,80380,15097
+37713,18877,9282
+37714,10543,65099,62998,78998,63221
+37715,60285,1881
+37716,27289,18570,70253,40682
+37717,72084,3801,39927,1355,3642
+37718,27163,61533
+37719,80532,30324,9002,52589,78267,42062
+37720,46665,72199,53412
+37721,45153,32020,809,4679,45989,37995,70665
+37722,14445,3750,55613
+37723,3192
+37724,1393,57807,38872,77047,37720,65522
+37725,80191,34733,35312,53092
+37726,46117,35308,3427,40355
+37727,32418,71480,74331,30635,62799
+37728,35732,10324,80136,44549,50143,82064
+37729,15049
+37730,30244,62823
+37731,43534,78042,4480,9644,72529,37342,74475
+37732,32559,21342,82122
+37733,29416,49350,26611,75888
+37734,17425
+37735,70050,61114,71282
+37736,11039,13958,76697,15836
+37737,48526,68900,20001,27108,18183
+37738,10414
+37739,73831,14134
+37740,25404,71684,17576
+37741,66569,81707,44469,35837,51700
+37742,18498,68654,12705
+37743,45256,3977,10369,39071,36477
+37744,52948,82065,62381,38080
+37745,64517,35166,8160
+37746,62913,10282,56696,75678,77556,17669,39701,10532
+37747,58232,32535
+37748,29924,3342,20169,43540,51773,22352,79087
+37749,80874,59228
+37750,63097,14923,61493,33632,29633,56343,15830,80328
+37751,21300,66710
+37752,24284,10892,26782,63106,12971,57718,55030,39594,69310
+37753,76113,45219
+37754,42922,76552,56689,77429,78241
+37755,53942,52816,74781,27827,35286
+37756,67580,2198,1922
+37757,44487,81230
+37758,2069,51464
+37759,35726,8453
+37760,53719
+37761,55140,50368,75208,59179,4315,6643,78133,13153,35721,78661
+37762,33640,45482,13152,32463
+37763,29126
+37764,60615,59323,50668,11000,69625,63872,3763,26777
+37765,25097,25504,61459,70409,38680,13020,55383
+37766,54010,5727,51431
+37767,4716,4773
+37768,41013,42402,58298,13725,17531
+37769,41217,78456,76617,36429,30378,37423
+37770,64225,4451
+37771,58232
+37772,48714
+37773,8508,70455,53294
+37774,78967,26476,21603,9941
+37775,38527,41400,47423
+37776,58675
+37777,67049
+37778,80192,741,44826
+37779,36768,32370,43800,74310,46482
+37780,17035,1250
+37781,16994,68503,25048,78065,49080,18413,8346,48523
+37782,73070,28960,7902,66165,628
+37783,37302
+37784,75308,6877,41851
+37785,59145,61510,44304,32314,65453,13582
+37786,10857,59879,59,75857,51827,20836
+37787,31958,52237,4919
+37788,63999,29854,34464,72957,1724
+37789,51787,10910
+37790,73660,55836,67795,60714,33884,42318
+37791,19498,29132,78977,48544,6733,25656
+37792,65714
+37793,64767
+37794,39382
+37795,53759,28812,77701,33938
+37796,13743,30938,15480,3158,69592,75349
+37797,35857,66333
+37798,26280,28329,78149,55754
+37799,36026,10782,25584
+37800,30598
+37801,65389
+37802,75764,54226,40278,51794
+37803,81061
+37804,14740,17294,7797
+37805,1596,66356
+37806,25868,74657,1769
+37807,7139,64773,17001,36982,73527
+37808,64352,40359
+37809,10560
+37810,64157,17563,46705,17995,48211,46121
+37811,42912,74240,29376
+37812,66735
+37813,81863,21040,74955,60880
+37814,46110
+37815,51307,31891,27854,74528,896
+37816,6071,50620,34473
+37817,28185,28960,22201,56892
+37818,47485,49180,74346
+37819,49740,56492
+37820,32956,7822,17740,7488
+37821,62639,5116
+37822,27273,25451
+37823,15838,47275,6635
+37824,3386,20147,38036,79870,12707
+37825,50102
+37826,35738
+37827,15614,25455,78439,22754
+37828,64791,4622,52457,10892,74739
+37829,20617,66623,10081,55737,72017,19162,7570,19610
+37830,18309,66172,230,50964,50413
+37831,47486,67129,46361,79069,71397,57168,6333
+37832,62593,27494,5079,24686
+37833,56100,16319
+37834,34747,81604,16654,56818,61641
+37835,50458,190,31762,9161,13752,34620,75483
+37836,23109,54831
+37837,17438,75200,21327,37464
+37838,74259
+37839,29206,19788,1525,41705,60635,32224,22429,28924
+37840,56384
+37841,46892,32715,49174,2834,12656,8917,6381
+37842,44747,4252,21192,5493,15374
+37843,82071,77041
+37844,21154,77768,62615,15963,45333
+37845,63681,1041,22665,24991
+37846,73555,36036
+37847,78828,4678,8586,50943
+37848,9303
+37849,34319,53667
+37850,26845,80406,700,35063,68581
+37851,18488,58030,60502
+37852,13612,22397,80903
+37853,25444
+37854,44500,6627
+37855,18973
+37856,61828,6124
+37857,57115,49369,4834,16989,32957
+37858,35527
+37859,25357,5955,69485,23383,79669
+37860,6623,78428,7543,15123,198,44007
+37861,2128
+37862,61309
+37863,70858,12019,62526
+37864,61880
+37865,75094,26091,3443,48827,80838,5427
+37866,45610,39430,44156,57606
+37867,77851,68063
+37868,65508,48565,63596
+37869,29599
+37870,64686
+37871,47674,68509,60730,46809,3560,45485
+37872,75401,49871,57380
+37873,5125
+37874,32140,32701
+37875,47719,54312,46168
+37876,50691
+37877,12073,22535,68542,29614,15927
+37878,29315,44415,8842
+37879,24658,1470,20429
+37880,8414,29196,64463,70594
+37881,32226,50494,81249,58389,26558
+37882,25762,25251
+37883,33017,29184,41704,12714
+37884,46079,43353
+37885,62765,80603
+37886,78522
+37887,46612,61074,68030,34339,3120,43832,4031,19267
+37888,21942,46781,60535,8168,44556
+37889,34587,77489,54315,70637
+37890,69201
+37891,64900,43285,17840,21390,17237
+37892,65221,37632,15697,76627,71542,76189,75265,63574,25217,81416,74960
+37893,37873,59707,64317
+37894,6042,57975,71324,31905
+37895,67970,17735,22987
+37896,5504
+37897,29069,32347
+37898,14517,79030
+37899,36257,27344
+37900,42413
+37901,34695,11392
+37902,25928,23879
+37903,30681,10734,27918
+37904,60861,48488
+37905,779,16106,38566,8942
+37906,24524,61662,70039
+37907,63987
+37908,34360
+37909,9284,24818,66550
+37910,44827,51200,24019,34443
+37911,61541,36745
+37912,74392,20324,62323,56706
+37913,32035,70333,57128,62887,76211,60915,35577
+37914,1102
+37915,5037,15575,33923,76090,13866
+37916,41964,44628,23976,51782,6702,51157,10388
+37917,6580,81652,6573,11766
+37918,10174,59269,31354,664
+37919,12355,10057
+37920,40896,20716,32157,40107,65333
+37921,26222,44681,31919,1057,69173,40565,22622,5320
+37922,12896,1402,66684
+37923,35248
+37924,42838,40535
+37925,5753,47058,73232
+37926,50825,45243
+37927,6088,54864,72909,13650
+37928,60371,7080,25370,40711
+37929,24425
+37930,61075
+37931,41182
+37932,73849
+37933,18760,45785
+37934,51294,22332,62074,57584,75867,20913,40070,63212,77094
+37935,33367,81303,29928,58541
+37936,37561,4949,13073,38844
+37937,40198,30396,12099,71876,29686,14409,51695,12920
+37938,26971,17977,73318
+37939,11527,71568
+37940,2247,38804,28621,27076
+37941,56374,38703,79739,13294
+37942,78028,66375,47977,75831,32039,1038
+37943,2120,41344,13177
+37944,29695,80015,12115
+37945,80941
+37946,20000,10669,49588,67446,45421
+37947,31766,45184,71995,9228
+37948,56648,50796,59588,35069,21287
+37949,72928,28344,10670,12184,8473,13324,10716,7786
+37950,35778,29363,11828,43983,33971,21505,46876,61314
+37951,43093,12279,50220
+37952,16438,21355,5372,33237,7353,49537
+37953,25354,48014,46118,20626,8693
+37954,24328
+37955,77818,34415,64031
+37956,32825,30046
+37957,21041
+37958,76573,74986,24877,4292,51540,58107,65577,60556
+37959,40506
+37960,36983
+37961,54581,8969
+37962,39226,22362,31296,42284,8852,36847,11250,8733,4217,45542
+37963,58688,39307,77838
+37964,58208,78183
+37965,13207,56494,48535
+37966,23791,78973,27309
+37967,28323,28548,54373
+37968,33316,57943,70777
+37969,44293,6927,39753
+37970,78027
+37971,14668,80828,25826,16040,69161
+37972,49541,69893,56340,79358,49854,64432,35695
+37973,56350,6148
+37974,36439,13075,68024,40830
+37975,680,80593,28656
+37976,74211,32142,10384
+37977,52115,531
+37978,79714
+37979,62161,28005
+37980,39128,10440,27132
+37981,78020,80434
+37982,19998
+37983,71854,44728
+37984,20403,38381,72995,67299
+37985,60476,75416,32295,60421
+37986,67496,57833,25388,61631
+37987,24476,54249,56837,2247,23100,6445
+37988,68758,57993,36321,15053
+37989,43193,37869
+37990,77828,44591,67609,27640,13992
+37991,34393,55799,81525,71646
+37992,3059
+37993,53979,55964,32375,28155,67541,11879,48225
+37994,18000,19395,60637
+37995,40956,33825,2163
+37996,30868,19015,44402
+37997,70626
+37998,79243,35613,25845,12800,60022,1568,43731,14360,21149,68476,72608
+37999,19019,30424
+38000,61289,34055,41241,65820,74799,59126
+38001,5291,57045,30218,62495
+38002,31743,23340,17755
+38003,48031,53824,30186
+38004,79518,40124,47751,71451
+38005,46894,56896,17343,48947,43333
+38006,46627,62689,43353
+38007,10782,69288,69062,53260,67412,69558
+38008,45374,1149,25666
+38009,195
+38010,4149
+38011,47191,26383,4553
+38012,44706,74348
+38013,78803,64583,2132,61216,50912,53160,36883,16284,65735,66438,20737
+38014,73137
+38015,37710
+38016,74757,33643,80624
+38017,71579,31511,70195,80395
+38018,73021
+38019,722
+38020,42427,66584,50112,22624,76722,41083,4004,31042
+38021,67861,46311
+38022,6364
+38023,23791,48951,28971
+38024,26639
+38025,69237,21965,40394,71158,62730
+38026,57905,26749
+38027,29467,18038,74166
+38028,6822,6291,23246,24299,37158,23238
+38029,24580,19138
+38030,37474,46987
+38031,9785,81516,10051,42214,19557,23054,54221
+38032,6300,66501,38067,45959
+38033,24203,68816
+38034,64212,32800,44253,20007,41628,12806
+38035,74613,5748,60642
+38036,19788,72400,55866,27023,46352,21936,1634,10831,52262
+38037,11456
+38038,57945,65414,32867,44630,17287,20733,6698,50223
+38039,45649,21550,42571,72982,13312
+38040,61424,78297,78890,42617,2879,74202,70831
+38041,31750,74299,17444
+38042,59719,24561,14091,13146,43647,72773
+38043,42072,52115,38109,28480,74647,39427,2729
+38044,52689,71773,23468,3200,22991
+38045,63389,78692,43750,72181
+38046,70865,74476,54179
+38047,77525,58531,26636,31900,36118
+38048,64163,44165,36375,6618,73060,68477,73285
+38049,19165
+38050,3021,18865,54031,50061,29240,60084,31097,60079,72279
+38051,10011,67348
+38052,59605
+38053,30724,77637,76930,23278
+38054,47457
+38055,25991,12529,5511
+38056,14633,12665,10469
+38057,2529
+38058,18573
+38059,66013,73856
+38060,7664,23559,30150,63684,13996
+38061,72218,27291,3018
+38062,62046,40539
+38063,56067,53361,41538,74845,8345
+38064,7573,156,81846,69561
+38065,39177,5538
+38066,75515,60012
+38067,27251,77749
+38068,5153,82072,70900,27000
+38069,12647,65826,23457
+38070,65692
+38071,73867,77988,42,72718,53300,57248,38868,40396,38688
+38072,2445,37810,4374,49515,45558
+38073,9340,28248,37997
+38074,10959
+38075,79912,42965,78395
+38076,43390,45074,5690
+38077,22935,56190,65087
+38078,36742,48263
+38079,38545,6697
+38080,68253,48271,55333,30816,75784,18769
+38081,71147,71071,13520,1697,56600,41002,78236
+38082,8628,62083,37604,43515,20900,10507
+38083,32352,74895,7407
+38084,30578,10486,41228,48858,54667,53210
+38085,72947
+38086,33831
+38087,29370,48714,12626
+38088,53019,17129,39570,78891,74576,53455,38941,55512,65662
+38089,1108,72069,30829,69266,80426
+38090,59399,54821,60448,35116,80135,53882,49506
+38091,73472,41400
+38092,53026
+38093,19224,57947,81226,25266,81796
+38094,63806,9352,60836
+38095,70973
+38096,2408,66660
+38097,43193,22898
+38098,50291,17346,20464
+38099,70948,21024,58604,13552,37821
+38100,20372,52646,26712,34814
+38101,21715,51632,29180,28578
+38102,66448,14461,47764,4328,48163,42180,60750
+38103,54052,81976,30808,58404,33310,14000,12144
+38104,37455,14444
+38105,19258,59916,8708,10577,52766,32175,43941
+38106,59716,42079,18960,64518,22025,30177
+38107,32457,19109,78135,11520
+38108,34138,70257,38062
+38109,15670
+38110,62704,48105
+38111,50787,55755
+38112,19608,8700,42449,7312,7548,58193,14692,70173
+38113,43372,62847,9047,5160,26306,24532,57700
+38114,56122,78811,53946,15741,70906,61655,53910,5815
+38115,14452,8660,31820,74195,19072,5870,24692,50093,77165
+38116,56907,61421,40749
+38117,52374,35213,57127,58649,29304,38162
+38118,64991,434
+38119,56081,6763,16478,82024,611,53207,63181,35854,46560,52626
+38120,76725,60752,58664,45080,43401,29497
+38121,41702,73427
+38122,38332
+38123,78783,22710,61057
+38124,59370,82130
+38125,33680,76929,77022,3899
+38126,13597,26908,28621,78681,58895
+38127,53591,17568,35078
+38128,26930,73034,49716,46860,37717,79033,45810,59223,14660,62195,41987
+38129,50821
+38130,15591,2442
+38131,4813,3997
+38132,80777
+38133,54859,1080,67209,26775,81664,77736
+38134,68386,69772,22447
+38135,13273,63883,67442,3901,73494
+38136,42097,7473,67403,10779
+38137,7726,19259,38253,81901,41589,41895
+38138,59634,68131,34525,71144
+38139,22078,65232,12505,42993,78484,8323
+38140,61732,53072,9087
+38141,14182,31175,63029
+38142,25389,54840,53057,34947
+38143,42152,51008
+38144,56455,54512
+38145,71114,13313,63619
+38146,59500,21939,8632
+38147,10290,62201
+38148,28186,76176,25900,55824
+38149,13589,70306
+38150,14595,78359,27625,78698
+38151,49853,25120,68657
+38152,78648
+38153,48054,41455,49861
+38154,58587,51318,30703,75297,72291
+38155,78130
+38156,56882,3848,32148
+38157,36932,25168,13655,67827,34087
+38158,5882,16911,59897
+38159,22007,58079,23056,61115
+38160,9132,29592,3804
+38161,34681
+38162,27318
+38163,80146,59381,17435,15558,37205,80274,10946,13564
+38164,62790,36971,846
+38165,51842,43333,77966
+38166,8737,80302,9203,65913
+38167,42884,46184,34734,27403,80871
+38168,10533
+38169,23125,53440,53763,52400
+38170,19495,72959,70033,4653,68833
+38171,28093,58383,36923,57467,53164,78237,5800,10687
+38172,61757,25888,29374
+38173,73991,5404,43646,10196,35845,60510,76538,63290,67932
+38174,75327,27454,81148
+38175,65557,6301,39722
+38176,78140,59296,10371,51046
+38177,17781,54898,71648,20982,73210,80422,36708
+38178,52509,54803
+38179,71451,32810,30824,17073,22476
+38180,61712,10727,77236,3247,47040,29200,42627,46870,56944
+38181,18119,19054,78322,65400
+38182,31462,44086,59693,30035
+38183,36347,21702,74150,80877
+38184,66562,43811,69294,30027
+38185,23656,72750
+38186,5650,77391,40222,66179,77557,33463,26810,77109,67146
+38187,48782,54885
+38188,52282,71066,60692
+38189,32053
+38190,68081
+38191,50796,19096,77629,42432,33699,69485
+38192,25124,28973,46417
+38193,52414
+38194,77196
+38195,62571,53864
+38196,54817,52287,44887,9080,9234,20702
+38197,44574,61589,73403,65812,53118
+38198,43200,44118,36207,72077,11537,32272,23942,81932
+38199,44049,179
+38200,48071,27359,8085,4666,67001,49010
+38201,15117,4867,35234,9885
+38202,2308,10483,2975,79426,59379,31104,24486,51283
+38203,5070,808,34930,24609,67684,26630,27800,18669
+38204,69251,73253
+38205,58706
+38206,69791,47980
+38207,3344,55321,12903
+38208,42838,26875,11545,34666,31996,2706
+38209,40728,18699
+38210,67645,16584
+38211,29704
+38212,65621,3626,77073
+38213,50667,21787,30013,25422
+38214,63823,59977
+38215,58827
+38216,40921,34730
+38217,67362,26147,59561,26628,69068,53646,30485
+38218,70355
+38219,11911
+38220,56091,29692,29927,1861,18568,50160,19240
+38221,13228,8861,31702,49691,11487,23895,45473,69299
+38222,65205,40866,23277,39748,36648
+38223,14903,73755,17443
+38224,12129,59897,61419
+38225,21544,7280,37086,11122,74797
+38226,35717,49194
+38227,73018
+38228,60955,37302,12111
+38229,54534,67513,868,77857,32583,57474
+38230,53268
+38231,18129,47839,13389,20820,68600,26837,82059,30834,71844
+38232,27981
+38233,60653,60790,267,48032,70799,41474
+38234,58355,45276
+38235,8898,35346,13254,15918
+38236,80954,15637
+38237,55076,65043
+38238,18412,36963
+38239,12619,68412,73004,47589
+38240,50852,32933,40463,35379,1147,78034,1838
+38241,27801
+38242,43642,49827
+38243,50750,55930
+38244,43317,51569,68220,64388,74374,45836
+38245,28371,76206,50478,33300,2867,27605
+38246,50848,23839,33142,15150,21510,54076
+38247,29052,12686,67378,46938
+38248,55474,40544,78257,17239,32234,69169,30072
+38249,15054,46277,52841,34134,16773
+38250,23899,58403
+38251,75012
+38252,8227,81785,79034,16781
+38253,31258,9731,29956
+38254,73021
+38255,49463,41688,77050
+38256,37561,62180,16115
+38257,51047,4598
+38258,79729,46712,24515
+38259,18483,36538,69769,49296,47641
+38260,7354,71664
+38261,35112,40617
+38262,39110
+38263,33130,55476
+38264,16227,28800,10102,79527,55964
+38265,21184,24437,53101,3011,53777
+38266,42990,43992,57437
+38267,78592,20467,70990
+38268,73631,19775,77382
+38269,63740,21469,71337,28526,79296,31112
+38270,47075
+38271,40794,68141,49439,34699,54226,41762,65238
+38272,80839,64599
+38273,11271,57896
+38274,7445
+38275,11447,57755,2634,50239,15761,70174
+38276,29976,38495,75782,16970,69356,48188
+38277,12717,58869
+38278,60565
+38279,35649,20019,51640,29878,15146
+38280,78302,43553
+38281,28533,23142,42923,74189,17867,49757
+38282,45823,69053,79602
+38283,13810,26251,11976
+38284,18017,59672
+38285,40720,53759,44172,32391,40105,64408,14184
+38286,16750,38509,15819,9099,989,75961,16018,4865
+38287,65357,68407
+38288,40155,50764,68145
+38289,48757,61121,23661,81449,33690,46160,55422
+38290,61209,46063,34623
+38291,39262,50748,66744
+38292,28257,80608,63611
+38293,13728
+38294,16425
+38295,66219,56169
+38296,18678,38989,14370,28993,52000,66480,16207
+38297,50774,66853
+38298,14934,49064,71571,67043,22286,37181,10159
+38299,26440,3816,47414
+38300,55926,43442,8165,73305,32509,39384
+38301,63738,34003,18009
+38302,79769,5571,34367,18243,21034,18904,9402,70842,63859
+38303,62746,41962,25397,61392,76015
+38304,12823,21207,16726,74980
+38305,49798,33230,45552,12657
+38306,27260,44759,59890,26641,23983,24957,16898
+38307,59975,23435,73999,71277,40577,24927,59150,9551
+38308,15805,38622,79726
+38309,68901,53019,32537,65930,69251
+38310,81783
+38311,17469,31288
+38312,19444,11758,50720
+38313,56718,59096
+38314,70805,46690,50881
+38315,28138,37951,53462,12135,60395,51123,3424,58161
+38316,44038
+38317,21424,28821
+38318,73628,31270,58743,279,73201
+38319,14451,2867,12308,22299,41206,46104,10173,62712
+38320,12908,66966,46675,68067,21602,56026
+38321,39393,40104
+38322,18439,41748,50174
+38323,77787,74071,19547,24612
+38324,39589
+38325,12658,6328,28578,34034
+38326,9753,18367,71109
+38327,37840,81005,72221,47380,20974,54393,28383,73645
+38328,33762,15131,63505,51431
+38329,55204,7165,57386,49180,10884,15332
+38330,13184,35673,29562
+38331,56155,4905,38584
+38332,81993
+38333,497,61943,40794
+38334,35900,76904,20887,60211,21500,8201,35650,2138
+38335,64736,71258
+38336,33976,60179,66594,38270,5149,45055
+38337,44163,10318,67802,43194,27457,37054
+38338,81040
+38339,64095
+38340,34238,16443
+38341,51321,24138
+38342,31589,40004,17920
+38343,70988,55382
+38344,58268,25400,10061,65353
+38345,61476,29214,52213,67157,51553,66835,44108,27361
+38346,21516,40966,11137
+38347,58549,797
+38348,16232,21549,11235,5304,38109
+38349,32292,37152
+38350,49835,25851,69286
+38351,6266
+38352,58618
+38353,50452,23302,39814,22431,67915,20811,61569,48950,57304,60623,46666
+38354,21014,28512,26392,19126
+38355,1742
+38356,22
+38357,67509,46985,44588
+38358,2101
+38359,40824,69033,39798
+38360,29261,41215,67428
+38361,67065,9823,28721,82180,32603,77723
+38362,68638,21059,60708
+38363,3561,35336,7628,27923,10439
+38364,4624
+38365,36860,77067,60775,69029,50148,65785,62608,26011
+38366,36423,5087,44757
+38367,20603
+38368,11396,73444,14478
+38369,41862,71957,20556
+38370,68730,19460,40694
+38371,7582,44838
+38372,47016,75788,73437
+38373,58495,49537,17716,71250,36916
+38374,16433,33556,30837,77256,13060
+38375,15545,75848,50919
+38376,12830,23909,17320,21255,42722
+38377,40371,17171
+38378,53713,8540,28738,19601
+38379,31918,785,27777,4405
+38380,71915,45697,23150,60721
+38381,53768
+38382,10062,48398
+38383,23056,62849,67368,71848,17319,49242
+38384,44059,13098,59520
+38385,17126,72862,37869
+38386,94,38037
+38387,71023
+38388,60006,77135,5522,1975,33622,69913,64537
+38389,25386
+38390,23698,29997
+38391,42175
+38392,37129,14070,78013,12196,44474,76452
+38393,71363,41224,31713,43194,23894
+38394,28601
+38395,67586,49244
+38396,67834,4997,37321
+38397,78261
+38398,65846,59754,84,13900,16986,17575,78813,37945,35149
+38399,39296,7620
+38400,73013,70248,15263,72717
+38401,17839,67420,52919
+38402,42033,39455,49676
+38403,35725,27864,79878,33142,76318,22875,80400,4734,75594,53418
+38404,8979,62340,71763,18399,35785
+38405,26202,54899
+38406,12070,8374,70446,439,30851,31941,4021,21739
+38407,77280,56759
+38408,46656,49362,21531
+38409,52057,2582
+38410,34620,11028,60114,13468
+38411,63961
+38412,81777,65231
+38413,11489,42970,62355,8551
+38414,4032,11412,62118
+38415,37553
+38416,59812,33528,41638,15827,13480,57377
+38417,55843,60094,67524,70242
+38418,58296
+38419,30391,67469,4337,43028,69583,19536,52345
+38420,36679,76322,8330,9479
+38421,79794
+38422,24818
+38423,5340,39202,5012,13761
+38424,20988
+38425,54492
+38426,49264,66248,8348
+38427,72838,32875,12071,10855,45007
+38428,65102,25492,62156,68762,33074
+38429,21810,11695,6471,53505,40007,50962,72923,3445,50052,29758,19352,35403
+38430,45880,67546,42926
+38431,67582,69545,33028,4231,46715,30384,57464,60167,76301
+38432,54533
+38433,2836,30957,13981,58888,37740,29241,13171,27172
+38434,63323,43507,54310,40187
+38435,8427,27862,66281,58098,43082,18939,14234
+38436,5332,59104
+38437,78517,77248
+38438,12751
+38439,33316
+38440,58493,6654,6262
+38441,6548,61343,38817,7436,15217
+38442,76955,67968,77979,26618,525,55850
+38443,55954,80320,10992,60286,8407
+38444,15132,36256,32342,79609,26872,51785
+38445,3160,23450
+38446,815,57466,31799,65551,46746
+38447,74259
+38448,43626,78080,45763,66586,1278
+38449,65502,72456,60747
+38450,62237,78509
+38451,71028
+38452,18542,43756,48507,78219
+38453,16814,18087,79880,34596,49559,10333,58495,18091
+38454,26617,61958
+38455,42987
+38456,37945,24246,918
+38457,6314,1813
+38458,5658
+38459,53247,36157,18273,37316
+38460,56592,52872
+38461,14254,34313,58375
+38462,53038,3552,18240,54909,29453,78018,49078,69163
+38463,2903
+38464,80172,41060,39914,52487
+38465,76963
+38466,33116
+38467,48093,19337,15507,44937,23182,62213,71923,35459
+38468,62266,59548,387,74978,65107
+38469,10975
+38470,49800,50671,21008,63251
+38471,63673,78593
+38472,28573,13384,20198,4121,57149,3540,2607,35634,12580,45923
+38473,75367,24117
+38474,41800
+38475,72249,30947
+38476,81514,76776,65858,76628,25695,38044,36392,72008,77570
+38477,81503,71011,9920,5923,19075,35525
+38478,19035,77490,67654
+38479,3922,46243,78818
+38480,80683,39639,51822
+38481,57153,13165,12253,73300,5252,53503,27922,70132
+38482,12199,17670,2946,81340,19532
+38483,77550
+38484,72502,38814,66865,21233,56758
+38485,59833,14051,80179,12796
+38486,20928,3171,6501,61903
+38487,47876,36055,56393,7496,89
+38488,61738,77009,13620
+38489,56310,65142
+38490,36022,14183,31988,44594,37054,243,22157,3053,49487
+38491,76442,61029,26473,2373
+38492,49981,30744,18025,2442
+38493,699,76960,76182
+38494,76351,76376,1487,5902
+38495,13000,31560,2809,76356
+38496,38243
+38497,79942,11882,10919,26441,43095,40264,26732,10911,47391,64220
+38498,13368
+38499,27925,76753,43194,44324
+38500,68508,28256,39499,45092,64334
+38501,54725,71458,44512,27538
+38502,22129
+38503,55434
+38504,34188,6148
+38505,60333,37270,19083,79979
+38506,81021
+38507,71095,25339,74403,55264,39190
+38508,79710
+38509,22526
+38510,45950,40821,37120,13940,25139,60296,25296
+38511,3305,69399,68439,71240
+38512,47172,70451,29418
+38513,80260,24503,8743,68586,40335,26181,40612
+38514,55739,31920,21978,47688
+38515,25447,70611,18129
+38516,73254,60052,16829,21590,38479,12355,51007
+38517,14716,21411,58111,55080,3104,61359
+38518,50493,80862,70527,80329
+38519,13491,15912,81267,31743,80398
+38520,66871,56455,20055
+38521,1083
+38522,70531,65998,73994,44240,2507
+38523,6642
+38524,71451,68108,33530,12794,50602,21593
+38525,43843,28573,25905,44076
+38526,57274,73605,62480,52864,75615,7809,1649,9458
+38527,41703,46160,26812
+38528,24090,2689,30609,54960
+38529,81647,19306,5800,48010,626,27864
+38530,70635,63878
+38531,53545,22280,18236
+38532,48334,3925,53100
+38533,15558,58478,33703
+38534,79910
+38535,52248
+38536,46233,20189,51848
+38537,28011,48370
+38538,82142,68604,78541,56763,41063,28570,34723,66783
+38539,4329
+38540,67115
+38541,66277,28806,9754,66068,58615
+38542,22609,55291
+38543,21056,69868,48618,65921,57606,42535,62802,2280
+38544,31440,56258,49145,28242,21491,5216,72955,26304,2860,27550
+38545,58026,926,27612,62023
+38546,55913,22945,43053
+38547,18745
+38548,77987,76310
+38549,67829,21825,34021,4252,18364
+38550,11321,5134,21171,61457,31214,31764
+38551,19018,52785,81498,52965,73126,31393,19409
+38552,47323
+38553,31775
+38554,42611,5911,60671,36302
+38555,12771,47958
+38556,77403,15976,67977
+38557,45380
+38558,14680,74485
+38559,35419,56067
+38560,69164,32097,58743,53692,43331,32657,33448,58759
+38561,51816,18095,61428,11080,43373,5305,77859
+38562,11912,18991,76802,21461
+38563,76043,80349,10285,15103,71932,42037,32117
+38564,73594,37205,4026,80404,67879,81591,447
+38565,57129
+38566,80281
+38567,68667,68054,26440,58377,26526
+38568,33559,69760,30052
+38569,14572,17124,57950,21058
+38570,71014
+38571,74724,5500,3988,69779
+38572,8282,8103,31119
+38573,41937,23942,11995,70756,39878
+38574,9042,38455
+38575,19353,16928,26026
+38576,26832
+38577,7698,23698
+38578,62351
+38579,52975,8136,16941
+38580,58439,8560,51611,32630,61902,43320,45972,22852,22687
+38581,30666,6299
+38582,71775,74612,24637,37824
+38583,57818
+38584,52135,37316,56824,56240
+38585,44879,36500,5715,25570,72308
+38586,53373,5485
+38587,34499,42875,75436,6437,42601
+38588,51047,72227,28287,75237,72533,60741,42120
+38589,24101,21577,45768,11964,45213
+38590,51011,73963,46416,66524
+38591,46509,26304,3801,81390
+38592,28000,32991,78644,18542,9440,18273
+38593,32189,37735,42894,28217
+38594,12187,15035,64569,25663,26400,52097,23164
+38595,24532,15904
+38596,43219,31205,28575,82050,53006,23337,78501,36547,77999
+38597,69937,61452,19295
+38598,70972,50930
+38599,65410
+38600,37048,65682,43040
+38601,48568,50417
+38602,23605,12354
+38603,51020,74294
+38604,5428,49460,61522,12954,48058,9193,65250,38771
+38605,23672,2163,33022,9493,64974,27410
+38606,45739,4794,76918,5093,41855
+38607,23637
+38608,40388,47810,31570,9998,16516
+38609,27133
+38610,3625,47704
+38611,12255,61267,60371,72654,2333
+38612,21066,32760,14835,8796,62019
+38613,55218,6696,68560,25212,11029
+38614,59031
+38615,1801
+38616,13077,55376
+38617,7553,72852,3139,16116,24654,26246,25300
+38618,57476,43929,65558
+38619,57007,55937,6610,21435,2127
+38620,955
+38621,27885,65652,2001
+38622,21466
+38623,39363,17558,27998,62377,15674,62060
+38624,18977,46832,5154
+38625,70077,65474
+38626,2500
+38627,7449,81777
+38628,65802,13767
+38629,69777
+38630,79438,75916,478,61435,80144
+38631,58663
+38632,13311,79953,59372,3878,68561,69425,68232,34927,81017,40361
+38633,2132,63852,62017,21060
+38634,46524,55602,77940,27576,33577
+38635,1355,20091,70271,9700
+38636,28101,3259,26354
+38637,7964,48272
+38638,78357,34213,69665,67282,62127,37302
+38639,36241,31599,59917,32345,40673,55821,41243,33321,11102
+38640,28801,56843,22049,6806,27929
+38641,61152,69785,17833,80150,63511,47651
+38642,48582,31962,39759,29965
+38643,61743,73697,59612,58449,35530,65574
+38644,26254,49170
+38645,21736,31406,6592,62694
+38646,1591,42011
+38647,75063,81468,71751
+38648,28935,56190,29802,38395
+38649,18665,41380
+38650,5781,78558,55162
+38651,10438,26034,41564,42989,1503,62521
+38652,3821,70719,65412
+38653,57498,38616
+38654,59852,7405
+38655,39630,22404,68442
+38656,36329,10882,62265
+38657,43536,64791
+38658,33664,71367,33531,44641,16912,76191
+38659,42550
+38660,79522,44925,78594,74311
+38661,64233
+38662,77578
+38663,67483
+38664,60099,46920
+38665,74997,996,78080,26856,60599,902,50808
+38666,71629,1738,32791
+38667,36839,71706,45326,22044
+38668,7932,71789,30653
+38669,18637,63713,22726
+38670,15214,68676,51545,29059
+38671,1713,66141,30956,80841,9755
+38672,42595
+38673,28956,80646,64565,8956
+38674,9611
+38675,16630,23175,28095,10761,5753,10210,59996
+38676,73177,60894,64504,81542,5169,65746
+38677,67364,53768
+38678,72170,13600,70142,54434,48921
+38679,53320,79882
+38680,41898
+38681,57945
+38682,58106,12274,28104,32408,19692
+38683,53695,53670,33584,7244,39272
+38684,72057,54599,60140,40063
+38685,57205,67845
+38686,44376
+38687,3171,17957
+38688,60077,29378,27090
+38689,26773,32573,2213,21505,14518,5744
+38690,25403
+38691,4155
+38692,59524
+38693,16418,57208,33627,37164,32252
+38694,66515
+38695,33399,32606,26084,18827,42801,66445,73475,4077
+38696,51810,47244,81768,26396,67980
+38697,54149,56069
+38698,16938,5144
+38699,40045,136,16589
+38700,8452,18035,33124,56363,67056,44920
+38701,24529,40013,15512,61661,58933,23612,26093,80507,54832
+38702,19088
+38703,38227
+38704,72989,52865,37762
+38705,3375,17956,22849,21291,81918
+38706,44679,75594,18856,58285,8144,81468
+38707,56581,63199,16495,55966,74550,52584,72598
+38708,62618,34263,36220
+38709,80471
+38710,74961,365,61964,29274,17582
+38711,77394,8192,69071,74487,30249
+38712,47064,38047,20208,43238,15587,54035,73413,39657,51871,20782
+38713,28116
+38714,4023,5500
+38715,37620,30872
+38716,60916,73575,54299,10082,15128,43926,35882,64557,38449
+38717,68084
+38718,28235,2702,27355,63275,5266
+38719,35793,8430,2500
+38720,22442,38973,11458,34367,71078,60053
+38721,52072,71420,69187
+38722,48962,20041,72996
+38723,29390,19753
+38724,42851,29485,52294,55320,82118
+38725,19165,53592,23512,18236,70158
+38726,32667
+38727,23800,64750,58370
+38728,62802,76240,30611
+38729,68509,80862
+38730,25791,26417,59991
+38731,7239,82084,73197,46472,19256
+38732,58902,40760,24850,41880,12654,57990
+38733,65815
+38734,735
+38735,19239
+38736,39271,26656,5081,14538,48194,55057,3348,75814
+38737,40786,10506,4406,65119
+38738,4240
+38739,20414
+38740,49017
+38741,22922,34054
+38742,25202,52965,20375,38347,4272
+38743,62908
+38744,30978,9094,17396
+38745,39896,39832,69952
+38746,82062,25411,46427,72572
+38747,38916,19918,80483,65909,8783,34131
+38748,74487,80274,38770
+38749,63871,58979,7194,38162,684
+38750,81851,14317,1865,1872,5646,14229,70573
+38751,43264,54706,77189,69718
+38752,6146,17411,80292,70526,20695
+38753,33424
+38754,22382,58873,63911,63123,77150,8296
+38755,51534,17169,43299
+38756,39015,3984,26618
+38757,56975,28680,52637,79190
+38758,79354
+38759,24979,35837,8568,34653
+38760,64028
+38761,48908,38709
+38762,5663,76776
+38763,67605,16415,53505
+38764,30402,74538,7617,74835,133,27729
+38765,44324
+38766,44806,23129
+38767,70451,68140,82167
+38768,34088,63406
+38769,16341,36237,51430,44427,60544
+38770,73166,73064
+38771,58066
+38772,59970,33389,28533,13376,40122,71643,65639,53179
+38773,28334
+38774,75613
+38775,73325,41231,38976,80714
+38776,20752,8313,17303,79768,66521,15716,1855
+38777,11536
+38778,59326,67231,52662,68449
+38779,63193
+38780,74063,554,61411,53910
+38781,72887,69965
+38782,6326
+38783,62625,60671,42494
+38784,28621,53483,28616,54230
+38785,63378,21103
+38786,13564,1674,69118
+38787,56944
+38788,28079,24498,34122,11924,40514,20634,62988,19844,37919,17734,28833
+38789,31556
+38790,2175,8551,25286,8241,27103,42348
+38791,10592,56533
+38792,61230,75057,20582,28995,51703
+38793,70468,54731,44456
+38794,26261
+38795,62814,9117,18744
+38796,25432,41815,18854,3696,20691,9969,75704,66841
+38797,8133,4298,44512,74038,59161,9182
+38798,6580,14452,1777
+38799,16970,53100,48526
+38800,70150,61389,22739,9702,12755,8449
+38801,56102,40109
+38802,75067,51063,20384,42386,21310,12473,46930,74347
+38803,16475,73566,36170,42460,65285,27633
+38804,71505
+38805,70748,75343
+38806,36639,55509
+38807,67060,46231,49478,25867,67783,4961,16185
+38808,67524,6687,6299,33739,5846,15630,69602
+38809,32696,15912,54073
+38810,18078,36041,31012,75364,23886,16186,80745
+38811,54840,59099,52282,37335,56590,39544,71646
+38812,11729,42385,9415,10844,10769
+38813,67768,5664,69216
+38814,51323,29397
+38815,57,16295,10403,17306,10549,23936
+38816,68539,46534,80242
+38817,63139,64893
+38818,62288,79575,72977,69689,51129,16019,74157,10383,65645
+38819,70020,25041,1273,61286,25817,72432
+38820,67135,5723,46242
+38821,15476,77121,66983
+38822,59484,22008,47604
+38823,69398,80594,36967,17640
+38824,81451
+38825,59377,57198
+38826,64553,16666,62147,57934
+38827,32883,53405,14582,42524,65983
+38828,48788,14611,57028
+38829,72262,25446
+38830,38162,65842,8708
+38831,67229,8428
+38832,81395
+38833,50321,25404
+38834,10490,37648,65652,27086,8280
+38835,13695,77735,21673,14521,27284
+38836,30546,50486,13708
+38837,8310,41211,4035,25320,42648,6396
+38838,45404,61940,36720,79898
+38839,38811,947,64707,24808
+38840,34180,34335,46796,38111,74321
+38841,28187,66748,63458,65935,11110,71285
+38842,47907
+38843,48748,37343,75129,76323
+38844,2830,58355,7931
+38845,31748,45300,2152
+38846,65122
+38847,30843,29202
+38848,35559,5734,14592
+38849,19159,30838
+38850,37302
+38851,38949,2108,12190
+38852,52800
+38853,50103,60825,51109,79561,33920,30695
+38854,9575,7635,15635,40929,16989
+38855,59525,11609,22289,51248,78042,73022,67860,3746
+38856,71062,1524,66895,72315,81727,36515,2770
+38857,35683,52519,6937,63822,80935,8246
+38858,11836
+38859,53543,852,69275,87
+38860,66861,58759,43095,74146,49623,15429
+38861,47682,44251,29031,64328
+38862,45531,36522,36692,60761,81184,18881
+38863,39807,35096,9731
+38864,71450,46187,48691,48243,41608
+38865,16853,42324,36170,66096,36651
+38866,15570,21077
+38867,55428,74153
+38868,69666,11614,36673,66215
+38869,42818,28468,12772
+38870,29887,79618,47048
+38871,68841,15706,67119
+38872,11646
+38873,12899,71286,23354,24819
+38874,32759,48391
+38875,4423,78282,5704
+38876,9935,9836
+38877,4744
+38878,55183
+38879,35017,60311,65766,18133,31765
+38880,39278
+38881,41282,16871,21204,25370,20521,31526,52726
+38882,71078,75476,5916,44892,60825
+38883,70103,37453
+38884,2711,10113,14878,73526,20296,59171,59230,59379,13895,52634,2191
+38885,25164,17182,80448,67298
+38886,27017,67634,62420,20508
+38887,52815,64613
+38888,44711
+38889,41690,24887
+38890,51085,18637,62139,68600
+38891,44133,10479,21503,10855,4111,56373,30385
+38892,81428,61681,40962,38121
+38893,55933
+38894,26142,7990
+38895,7257,11604
+38896,52785,74162,31300,25448,41836
+38897,30624,25223,76982,31284,26161,73704
+38898,3629,55325
+38899,38439
+38900,55681,47465,38057,46759,47480
+38901,51598,31979,16710,58198,21366
+38902,41241,26011,48142,48273
+38903,57139,2365,20364,57266,69611,29619
+38904,69070,75357
+38905,2056,77140,76525
+38906,49514,10770
+38907,53171,75738,63511
+38908,58743,31189,3866,4290,79050,23308
+38909,80705,31232,46783
+38910,42174,7326,32180,57241
+38911,7493,17026,75674,64294
+38912,20102,70397
+38913,16284,32649,60301,44828,55989,34844
+38914,27142,55874,67217,50456,11604,49250
+38915,28168
+38916,77538,57173,70637,44335,33152,58250
+38917,28177,42550,76854
+38918,58105,11589,29038,36174
+38919,23626
+38920,18350,39949,7917,75337,41914,36819
+38921,21344,10654
+38922,45819,10339,62909,29529,66501,45341,17737,33531,71966,7629
+38923,33236,889
+38924,72030,49566
+38925,69937,59409,4233,36000,24380,42766,53239
+38926,7690,31062,44138
+38927,43469,24282,38539,31361,58355
+38928,23443,50819
+38929,3759,30420,81569,1711,19273
+38930,74297,52534,71365,32080,37486,32852,57948
+38931,25609
+38932,29657,3254
+38933,58127,35997,18544,23212,65946
+38934,77706,4774,62062,19695,65043
+38935,40748,78505,46848
+38936,897,51603,70824,23944,41001,49165,57026,35659,14203
+38937,23876,1909,41455,10966,52047
+38938,48281,70948,9574,47883
+38939,56279,58740,49716,25645
+38940,51545,63624,61750,862,54261
+38941,21233
+38942,14157,60730,4672
+38943,51538,35631,78999
+38944,10340,45709,76987,5144,8447
+38945,66694,39682
+38946,39896,49663,478,47280
+38947,47229,28476,76506
+38948,66281,32539,37158,23845
+38949,22404,81491
+38950,14369,1922
+38951,70424,63771,22806
+38952,31031,77402,49914,43351,51520,58399
+38953,52508,53767,46373,54426,77654
+38954,32102,35493,29799,64945,40835,70475
+38955,69455,32807,50401,50791
+38956,18872,5176,76133,67234,61800,8100,33999
+38957,54732
+38958,45093,4832,48538,52228,35316,30476,48116
+38959,42006,22603
+38960,54948,26541,4791
+38961,22183,69421,10881,17964
+38962,14066
+38963,57737,18888,48833,58,27774,23270
+38964,72705,4798,74810,23566,60829
+38965,65158,58959
+38966,54996,24678,15553
+38967,43580,56485,74400
+38968,66054,6265
+38969,81994
+38970,2839,45286,16360,78988
+38971,80074,74760,39004,34501
+38972,73409,58875,26024,13618,39979
+38973,55919
+38974,25428,4684
+38975,35408
+38976,64106,14763,7492,23845
+38977,73064,11362
+38978,78842
+38979,1091
+38980,27772,22388,61805
+38981,5454,37454
+38982,63158,14000,7097,6842,32548
+38983,46792,15249,61537,79205,30199
+38984,1586
+38985,38972,33799,60283,27828
+38986,31842,2333,43636,7740,23867,63400,15023
+38987,45845,19152,4339,36167,51017
+38988,2678,36372
+38989,14454,5043,55630,37766,78039,23539
+38990,65480
+38991,77012,36659
+38992,44100,61957,76636,74018,63702,3736
+38993,47411,78716,20916,10003,33134,21784
+38994,26759,81271,30481,74952,61015
+38995,37487,1227,17534,78002,34208
+38996,14235,1466,70642,15072,76151,17880
+38997,27734,65624,34910,81145
+38998,73440,67177,27973,79864,75321
+38999,51261,24042,37861,42511,21826
+39000,18613,36577,68124,58016
+39001,38803,68177,1224
+39002,67397,44701,49157
+39003,42012
+39004,77256
+39005,45819,27926,5523,80335
+39006,34594,37218,32706,55347,67050,58845,52923,28653
+39007,64835
+39008,38126,79094,8841,72078,75498,7132,16987
+39009,78200,34633
+39010,49404,14430
+39011,12708,27643,48635,45902,7458
+39012,53452,21197,70520,6127
+39013,27865
+39014,79124,14210,27235,29179
+39015,49901
+39016,23431,65556,73022,43871
+39017,64883,39253,2106,64124,76252
+39018,15452,33653,18544
+39019,45598,65547,11394
+39020,71680,56501,3634,53698
+39021,48200,36392,741,39910
+39022,54147
+39023,19415
+39024,50495,41608,50480
+39025,11765,78708
+39026,25759,52536,55844,69753
+39027,15282,30966,66770,64525
+39028,82057,65647,42793,47829,10534,40158,30437,80630,54451
+39029,81843,3771,73406,58087
+39030,52972,78157,926
+39031,11575
+39032,60370,60337
+39033,62501,60748,18710,8132,65408
+39034,55116,18204,71620,28661,63259
+39035,40796,43038,45736,43953
+39036,1286
+39037,55518,2319,51067,80479
+39038,50626,48144,24142,18431,33833,49934
+39039,82188,44286,74630
+39040,40617,4539,38185
+39041,52225,49906
+39042,28176,27454,51754,47635,54361,58483
+39043,71772,20144,60565,70336,63244,51592
+39044,56668,4178,58667,52201
+39045,8670,65992,18960
+39046,61926,9166,21720
+39047,68644,72952,67234,81473,2664,14659,14741
+39048,72154,14960,45841
+39049,73632
+39050,80652,67167,25620,47679,19157,61320,29479,51067,22667
+39051,65302,13605,57913,12438,43968,73994
+39052,15445
+39053,31773,25489,31149,57632
+39054,46692
+39055,44387,6480,35817,41004,74454
+39056,395
+39057,28255,68209,55862
+39058,12805
+39059,77857,52948,34088,2029
+39060,81712,62167,32958,52839
+39061,10467,39564,65338,80274
+39062,49046,15849,48655,6099
+39063,66802
+39064,70681
+39065,51367
+39066,26096
+39067,32518,52997,14268,65914
+39068,38792,68489,80949,80777,5594,26559,52878,54332,74371
+39069,19159,76764,65748,75044,9192
+39070,51842,30509
+39071,61774,60957
+39072,60519,70691,10637
+39073,29438,54229,56642,16131,53460,58905,63461,61605,55874,22393
+39074,48773,8291,62681,40693,72235,13688
+39075,9676,31620,53824,59126
+39076,42948,27486
+39077,53581,75398
+39078,13655,75185,52425,79840
+39079,60402,10926,3883,33210,2788,71193
+39080,71337,32301,70854
+39081,71979,57849,14639,2426,2900
+39082,54879,1521,18877,28791,50353
+39083,72703,8949,37390
+39084,30277,76636
+39085,3915,1074,17928,7972,37439,62419
+39086,63600,58857,730,48568
+39087,43346,16529,6920,45685,314,9801
+39088,27890,30947,71154,54087
+39089,68212,73134,31864,5460,34259,48821,51912,54173
+39090,37610,7640,41436
+39091,11287,9101,8294,32512,18726,41870,63215,7275,10964,62024,65123,5208,28392
+39092,68729,64991,60816,12167
+39093,57882,77267,56533,58643,32553
+39094,27511,40395
+39095,74460,79311,11609
+39096,31450,68244,26599,26319,27662
+39097,1724,81766,27437
+39098,1376,44626,1599
+39099,54678,69282,10,9463,37422,56275,66337,16365,66775,2401,38664
+39100,11541,66065
+39101,57530,77577,2714,14032,16841,80048,37510
+39102,20306
+39103,76510,48598,16414,50318
+39104,32167,44229,2411,5187,13218,38539
+39105,14100,55180,8050,57142
+39106,49242,78310
+39107,71825,78703,23320,41018,40179,44140
+39108,2931,5118,29795
+39109,72565,45786,66839,71751,23755
+39110,9044
+39111,28781,24195
+39112,45215,69611,15204,36195,32061
+39113,72747,69883,46281,25097,69506,35194
+39114,20370,52595
+39115,6324,60282,77719,68729,52369,30450,65520,63792,68534,71630
+39116,16912,51752,58783
+39117,16638,2045,80933,41997,67811
+39118,40509,38874
+39119,75005,76319,56593
+39120,4088,3869
+39121,9996,38680,23121,17213,48923
+39122,54099,8658,82055,38626,51510,30205,78336,14553,34577,457,48567,10992
+39123,16012,20009,55217,29847,52168,29618,50436,45030
+39124,77680,78586,31053,9374
+39125,38342,30909,49014,37040,17725,81494,69076
+39126,6839,12853,68267,65338,11370
+39127,77228,2588,18739,30350,47726,19713,40884,63300,269,25808
+39128,42185,37876,42951,2582,72360
+39129,35002,22074,13966,30342,58641,28076
+39130,9044,33194,32701
+39131,31261,39052,63480,62791,66687,53729,558,64438
+39132,52646,48701,11961,3030,51213,17159
+39133,73683,6234
+39134,25975,36487
+39135,39722,65871,62261,27802,67622,8500
+39136,57003,66985,16341,29487
+39137,33418,46143,43101,57783
+39138,59724,7858
+39139,76977,6839,35497,64851,4340,33587,25319,73727,67246,21865,61422,39890
+39140,5525,12678,46325,17896
+39141,33096,33321,63770,68165
+39142,12681
+39143,33096,78004,41286,38399
+39144,59504,11126,5167,12795,21989,12000
+39145,51048,16134
+39146,9329,42265,9721,31552,28941,45696,23924,23610
+39147,9758,79291,71819
+39148,25300,66946,8177
+39149,8737,77491,21575,34008
+39150,73890
+39151,70597,6380,69383,6239
+39152,30231,16198
+39153,74120,22900,74967
+39154,16475,77689,73910
+39155,11096,6463,41728
+39156,60743,38291,36964,78389,51647
+39157,69975,67924,3231,72608
+39158,74831,55438,60416,7618
+39159,3134,13235,59974
+39160,21586,17482,80361,6415,43863,30233,13823
+39161,18236,23461,66168,29942,73404,52259,28307,28343,27043
+39162,71694,71301
+39163,19533,24810,31844,1976,80530
+39164,11109
+39165,62017
+39166,8641,47782,50791,65189,37880,44620
+39167,17894,37285,27719,66984,50832,25772
+39168,80159,37053
+39169,77522,12293,13278,59264,57080,30112
+39170,24119,46175,18761,23786
+39171,65703,10127,27249,59167,18251,41306,44932,42517
+39172,66263
+39173,69797,41865
+39174,13479
+39175,58420,50871,67975,25099,11440
+39176,76075,49649,27114
+39177,42881
+39178,35071,66850
+39179,73555
+39180,60431,34793,35792
+39181,26016
+39182,185,36022
+39183,31173,1080,1643,70555,26733,50083,71326,54408,73007
+39184,58192,59193,43630
+39185,36880,71195,33423
+39186,59396
+39187,24410,39832
+39188,38529,38942,43889,44231,52253,69642,27340
+39189,43374,64773,69645
+39190,35131,49728
+39191,47949,53315,28610,46735,53716,58611
+39192,11308,45584,40941,78249,22485,33798
+39193,58408
+39194,19754,58759,26316
+39195,22468
+39196,18412,68552,64978,67569
+39197,69645
+39198,8042,1105,72459
+39199,6373,59716,12753,78531,35267,76078
+39200,67002,7159,21811,52548
+39201,12412,31460
+39202,80910
+39203,58085,78838,15272,24305
+39204,6067,66653,7521
+39205,42162
+39206,34539,19822,12170
+39207,44244,24914,72985,30644
+39208,79659
+39209,12283,56281,66248
+39210,58066,36051
+39211,22049,22687,38576,73097,16348
+39212,2746
+39213,79948,68960,76680,45538,62456,55221,56756,9827,55728
+39214,5372,64023,44900
+39215,28634
+39216,42172,55214,61299,42701,39637,43454,63306,76714
+39217,71065,24055,26373
+39218,16587,58704
+39219,21845
+39220,70263,45707,32613,64985
+39221,66580,46140,20691
+39222,47289,8821,54917,968,44185,38363,68370,60093
+39223,68599,1286
+39224,47717,73466,19980
+39225,77041,27978,17046,39921,5263,16132,34168
+39226,25948,73705,23939,73226
+39227,32062,40666,39585
+39228,7494
+39229,81246,35549,64648,16266,69077
+39230,1923,78269,71830,65015,38193
+39231,7284,78968,11314,33696,35627,44190,1610,14945
+39232,3138,46482,71624,45820,69296,13338
+39233,24441,53604,77061,36808
+39234,66497
+39235,29291
+39236,35186,35469,24775,82116,50601
+39237,54419,3916,16666,24031,1163
+39238,29756,32203,23508,53143
+39239,11037
+39240,28606,24160,13786
+39241,77241,1551,23455
+39242,2905,62935,58255
+39243,30741,19793,34774,43134
+39244,13171,28969,17645,12290
+39245,46915,78778
+39246,73992,22914,33678
+39247,32547,80129,78586,53198,50082
+39248,78884,37053,37355
+39249,29676,28537
+39250,44944,14793,67015,44658,13347
+39251,66071,52734,25411,38352,46629,37070,39935
+39252,2420,6591
+39253,24484
+39254,31214
+39255,46058,47379,42522,36033
+39256,23654,68483,28847,2986,31431,39268
+39257,33774,77802,1449,46380,44775,1562
+39258,52161,77836,54723,53393,69033
+39259,34249,52656,49017,45219,4561
+39260,41762,3784,27996
+39261,61870,43401,19197
+39262,1816,65116,65386,49434
+39263,31645,79386,65909,30490,24357,19245
+39264,60505,80854,12099,27519
+39265,58959,52829,19336,24924,32125
+39266,46391,14422
+39267,1617,61568,81503,21331
+39268,43214,55778,50988,2038,17963
+39269,3460,37279,51078,16722,17854,68906,16915,28619
+39270,54495,17206,51973,54509,73247
+39271,78411,1246,4717,64227,8948
+39272,72072,36194,65351,39431,52688
+39273,35905,32200,69491,5690
+39274,30403,52259
+39275,49264,17795,51315
+39276,22904,35776,74972,69347,64846
+39277,60210,22289,62351
+39278,29441
+39279,75005,13672,52934,47268,21547,69455
+39280,56925
+39281,23830,53972,4928,57817,50078,38057,378,58563,29133
+39282,54426
+39283,14106,24980,39318
+39284,79656,78609,72357,11511,71626,34053,26376
+39285,51383,56343,26069,28899,75589
+39286,77142,61135,35092,63348,44931
+39287,36509,7169,39795,5169,71057
+39288,36531
+39289,16186
+39290,30691,66359,38078,32226
+39291,20939,53577,42371,77541,56686,20231
+39292,37931
+39293,11362,46041
+39294,32041,30910,6376
+39295,39986,5276
+39296,16338,46945
+39297,50083,68620
+39298,71228,16978,39505,63898
+39299,49975,44647,61168
+39300,11545,9951,29150
+39301,73683,24956,43097,16707,10838
+39302,11844,33746
+39303,32857,10490,19966,14794,34989,17199
+39304,64993
+39305,76231,49843,26251,44156
+39306,64142,20324,61365
+39307,80083
+39308,77495,4272
+39309,54101,41379,7988,69611,75719
+39310,35978,55325,26146,63089
+39311,43505,16475
+39312,44195,23382
+39313,23267,9872
+39314,16563,19616
+39315,42040
+39316,18185,57224
+39317,57968
+39318,58792,29792,12705,20282
+39319,48857,62547,27445,22567,29021,18196
+39320,59109,2991,46745,27238
+39321,9756,10438,36258
+39322,732
+39323,76024,24842,21599,61244
+39324,48276,25489,43709
+39325,69486,58752,10354,2835
+39326,39955,18396,39035,77966,75260
+39327,16080,19059,11354
+39328,1482,36591
+39329,24740
+39330,3069,31078
+39331,43805,19485,39036,3602,21319,80747,66141
+39332,54500,81697
+39333,52081,51124,78867,23788,70967,7699
+39334,34914
+39335,38615,2409,1047,49914,81428,38218,20017,39511
+39336,43666,79455,60822,71122,66082,27074
+39337,35494,76284,12069,39797
+39338,25224,43222,49424,35884
+39339,37092,52151,10227,43356
+39340,77112,55204,76557,25745,2087
+39341,7524,50021,68677
+39342,43633,45495,14452,5286
+39343,28074,9448,81248,71493,23668
+39344,21449,76713,71217,2467
+39345,34837
+39346,57701
+39347,16173,7806
+39348,6100,77606,74055,80538,18738,23807,15540
+39349,59899
+39350,56279
+39351,50489,44704,27844,46509
+39352,20861,8662,51497,21487,35449,41477,7883,24373
+39353,66371,27464,13472,33258,55399,39487,6651,36502,2646
+39354,68367
+39355,50864,25240,67348,62951
+39356,26255
+39357,72440,56293,37855,68433
+39358,15072,19468
+39359,31757,4652,77685,39986
+39360,34286,72765
+39361,30424,54974
+39362,43439,13641,44019
+39363,1286,81883,71418
+39364,35844
+39365,1293,61434,61996,67380,76853
+39366,29271,12007,60323
+39367,43399
+39368,25637
+39369,33534,29302,60982,62049,22388
+39370,42555,73520,79180
+39371,62409,14238
+39372,29583,56888,41532
+39373,34306,30831,64115
+39374,59953,61577
+39375,13051
+39376,70756,47991,48,59433,18275,18948
+39377,73579,18786
+39378,27885
+39379,37265
+39380,51926,54651
+39381,25681
+39382,59229,57090
+39383,50831,70391,75551,78027,6757,22129
+39384,25066
+39385,42333,69256
+39386,18081,53153,48244,49052,2416,34993
+39387,55483,46704,12811,46694,33529
+39388,34695
+39389,21502,11601,66238
+39390,33071,37459
+39391,72926,815,35704,39085,11240,34328
+39392,52822
+39393,64815
+39394,75125
+39395,10967,21249,9883,23923,45051,42430,29450,44969
+39396,55216
+39397,63167
+39398,49883,40669,30589,74487,24061
+39399,37107
+39400,58420,72452,54173
+39401,73930,44123,74280
+39402,65321,18573
+39403,42061,73178,31536,639
+39404,1983,57703,18870
+39405,355,10771
+39406,16207,12835,51519,10679
+39407,35741,74178,31413
+39408,4498,15173,36297,54213,50566
+39409,20572,33614,54554,57021,72624,61785,31453,56268
+39410,79319,58767,46842
+39411,74717,60253,55108,72755,77288,48117,63691,913,65197,41496,17907
+39412,74043,2146,7928,74389,75300
+39413,52867,28747,32249,62621
+39414,51660,56934,12470,67879,47738
+39415,73594,73278,39895,16319,7436
+39416,38108,59971,55277
+39417,36191
+39418,64381
+39419,36165,45586
+39420,22084,5779,27549,28045,80795
+39421,4346
+39422,14876,44224,12134,74594,71632,77795
+39423,26386,70843
+39424,17633,77824,38558,37969,8855,70483
+39425,3899,74844
+39426,17194,38609
+39427,21652,41179,70909
+39428,39893,22019,52258
+39429,53671,58249,7564,40672
+39430,8349,6788,738,21134,49566
+39431,38789,5682,65775
+39432,62034
+39433,53832
+39434,71263,46827,50818,72675
+39435,51768,76006,34143,16939,37898,29913
+39436,5038,58067
+39437,39076,54173,24288,18398
+39438,58782,72816,68122,69086,3510,28604,73119
+39439,32979
+39440,23012,55401,60787,13771,43440
+39441,76326,61826,22863,56189,72897,36228,54110
+39442,7627,10808
+39443,35591,75000,73197,4826,67956,31807,64060
+39444,42305,45797
+39445,65254,29172,37551
+39446,23445,61645,37867,56854,27848,6209,68628,16339,18446,31588
+39447,80110,28124,43966
+39448,71309
+39449,10158,20726,39801,41376,48030,21960,38867,28982
+39450,79485,21880,6092,19901,11252
+39451,66983
+39452,63844
+39453,35289,23270,10065,47185
+39454,40117,71562,5357,34160,78287
+39455,78505,25723
+39456,52184,26487,22590,4623
+39457,56484,4724
+39458,39393,19599,57945
+39459,63027,50027,38587
+39460,68807
+39461,72608,81545,27777,78922,7789,71962,34566
+39462,53625,34293,40964,81223,15066,16292
+39463,51959,44474,3301
+39464,56262
+39465,1227,78109,35098,2564,77818
+39466,65794,33130,11207,52248
+39467,50597,31588,27159,50520,18023
+39468,81443,26678
+39469,64850
+39470,42314,5847
+39471,2621
+39472,66275,64396,22495
+39473,23813,5745,2383
+39474,72747
+39475,2817,47570,70704
+39476,32607,41870,10718,10016,71400,6114
+39477,33937
+39478,78842,10543,61060
+39479,7750,23837,28156,26034
+39480,70494,79004,60306
+39481,58571,1081,34695,47722
+39482,49996,78213,72231,21823,27221,21829,78122
+39483,25503,34422,64117,686,4406,15097,28517
+39484,2494,63538,11214,44776,62177
+39485,71348,17224,7928
+39486,59541
+39487,41485,79855,59158,2054,35943,21819
+39488,81082,3637
+39489,31044,76868,27478,77973,51224,10631,71628,70980
+39490,6026,67397,39668
+39491,1983,56945
+39492,64179,11712,71880,68713,28441,57819,53045,71357,1519
+39493,6968,65563,18537
+39494,3969
+39495,18867,54360,40723,79848,47640,38033,56868
+39496,33959,37523,4676,25452
+39497,48884,44,43768,78144,56801
+39498,65610,26749,19947
+39499,80452,42529
+39500,79213,39499,81057,77403,25998
+39501,55158,28653,3955,12910,6733,48644
+39502,19966,64645
+39503,41690
+39504,6446
+39505,24104,22550,20202
+39506,37689,4184,81334,62115
+39507,70827,67570
+39508,19852,63860,68449,38947
+39509,74271,45821
+39510,46116,49656
+39511,14040
+39512,38852,31794,59070,52128,16468
+39513,45601,69191,28604,66781,961,1468,59995
+39514,75178
+39515,25128
+39516,46112,77806,57528,22170
+39517,67424,45758,28099,60182,35527,27136,54343,4628
+39518,56244,42241,75354,19678,62704,80322,5596
+39519,63536,71678,27013
+39520,80993,57081,54595
+39521,19279,78863,45638
+39522,6165,51871,14298,1677,64670,44904,32102
+39523,24160,41586,64770,42911,29129,54249
+39524,24740
+39525,7491,59435,66888
+39526,5763,12673,13839,64835,11536
+39527,58098,75495
+39528,6226
+39529,69904,9241,40799,78305,5891
+39530,80067,22977,45241,2416
+39531,9738,40590,7925
+39532,14394,9400,30612,70479,78981
+39533,68544,10032
+39534,66887
+39535,3814,1903
+39536,35112
+39537,36340,80819
+39538,35398
+39539,42361,30045
+39540,24345
+39541,783,18998,9321,67940
+39542,32802,8497,66706,66947,358
+39543,21104,16475,864,14768,68549,70833,13645,73786
+39544,37992,4335,15284,44565
+39545,19856,60931,23554
+39546,34617,63741,1969
+39547,70392,25360,66660,69019,22868
+39548,59932,36386,18480,18021,58528
+39549,68014,47355,78349
+39550,40870,50240
+39551,47112,48397,76429,48602,3068,62245
+39552,60538,35990,62861,73823
+39553,32185,71936,62893,39883,66077
+39554,24308,8755,55507,60251,9836
+39555,8890,1317,29819,30116,44109,178,73773,16352,28814
+39556,1082
+39557,60174,13598,34273,15124,8504
+39558,73762,70034,24097,8268,37772,35504,13099,42663
+39559,22019,70333
+39560,71749,77313
+39561,50642
+39562,13788,36036,67833,66690,27471
+39563,7971,23808,45593,53461
+39564,66536,71977
+39565,56091,79336,35213,44923
+39566,13794,59523,19146,65729,49721,58488
+39567,51217,49982,82040,9626
+39568,10435,28741
+39569,65697
+39570,27517,70941
+39571,37053
+39572,29405
+39573,17050,15497,46464,72151,15812,39905
+39574,61473,18392,29918,10223
+39575,43101
+39576,17495,47718
+39577,36205,14750,13642,38678,35676,78655
+39578,2835
+39579,31101,27451,61920
+39580,695,25043,43644,22685,5605,70304,2807,6767,38662,50087,74839
+39581,58397,75599,72082,19140,20901,71875
+39582,64722,48030,34576,65452,53814
+39583,3283,42177,33036,67501,65469,72177,67251
+39584,60581,66973,70521,42460,30273
+39585,70767
+39586,6967,37996,59060
+39587,60732
+39588,74073,41529,5119,16970,54706,65680,36340
+39589,73528,50802
+39590,75010
+39591,58948,16802,12671,27785,10126,59930,31109
+39592,51943,81714,479,77424,48097,40969,42529,26765,73661,63454,72784
+39593,55301
+39594,59030,81426,80811,10922,3152,49431,56407
+39595,45923,14671
+39596,60504,34898
+39597,69000,21865,44865
+39598,11595,61109,61818,46116,75354,36713,81985,65965
+39599,64250,54062,65357,34622,39177
+39600,50920,23367,39070
+39601,13384,65586,38436,56619
+39602,51805,46500,66634,24339,14065,42767
+39603,54346,14169,56491,48838,27010
+39604,33300,35723,43970,80843
+39605,40663,9057,34912,22710
+39606,81352,10952,80019,72966,11770
+39607,58832,47751,22051,51425
+39608,4953,24360,24480,4033,35784,1385,6628,12561,56388
+39609,51472,16383
+39610,63447,31708,29634,57853
+39611,64928,59385
+39612,26142,74062,61651,25128
+39613,24355,56059
+39614,27523
+39615,15176,78323,46046
+39616,42611
+39617,61286,71187,31575,68702,23776,23180,32399
+39618,18538
+39619,67822
+39620,30622,35007
+39621,25161,41332,23097,11750
+39622,39358,68283,23845
+39623,30251,38205,52155,69245,58943
+39624,11063,20701,81680,48570,49260,26407
+39625,62870,77219,81085,52252
+39626,63573,30695
+39627,37691,4611,11151,8712,37388,15485,34441,70326
+39628,81777,16210
+39629,32207,47331,40019,46720
+39630,46017
+39631,44194,79009,59568
+39632,23390,21820,558,59238,68196,9126
+39633,1617,28606
+39634,59230,22917,60852,67209,68536,77070,42759
+39635,66835,22900,72885,3619,66946,45900,61743
+39636,18651,41314,3003,27467,16706,40862
+39637,28854,48508
+39638,10589,80053,50993,2285
+39639,49064
+39640,27568
+39641,74517,44376
+39642,58495,80022
+39643,25738,8949
+39644,66330,71931,70767,38415,16999
+39645,18903,32142
+39646,71872,49852,64831,66382,28836,24168,73613,70168
+39647,30104,34112,51733,66880,8055,5854,74596
+39648,38888,80884,29794,45017,12572,61432,80018,75981
+39649,20037,55323
+39650,29378
+39651,13706,24471,7302,19385
+39652,1674,24726
+39653,35787,11135,21575
+39654,35408
+39655,46692,61179
+39656,78202
+39657,70547,64779
+39658,24252,75383,75676,73876
+39659,28104
+39660,64471
+39661,56303,8514
+39662,35506,22871,26163
+39663,71773,31592,34901
+39664,44164,67024,73992,38843,25349,41667,64589,56117,69044
+39665,47520,29333,61560,59687,11424
+39666,16495,53016,48275,41752
+39667,48954,35564,20183,52396,20814,62729
+39668,74576
+39669,72887,35755
+39670,80721
+39671,75862,8586
+39672,78398,60726,38554
+39673,53470,82151,50883
+39674,71957,67180
+39675,22958
+39676,14001,60066,2038,71860,74831,78482,58872,54528
+39677,60177,15844
+39678,70012,21996,59094
+39679,31734,25782,81545,69943
+39680,60924,73412,48563,43138,35624,67045,42001
+39681,38215
+39682,55501,65090,74665,65295
+39683,24942,43121,8192
+39684,25395,27869,31081,33756
+39685,80441,41011,37296,42964,36104
+39686,77121,756
+39687,60520
+39688,72894,31592,13184
+39689,62405,58229,15443,8370,75491,70793
+39690,80652,31556,853,25903,37940,80293
+39691,9025,43941,22614,52574,54904,65532,9827,47413
+39692,76363
+39693,21670,77990,29196
+39694,59818,53633,42789,19466,60091,60545
+39695,39555,38119,29954
+39696,34524,76273
+39697,21604,37200,78542,47372,26632,31962
+39698,30149,42431,25248,2329,17790,59181,6939,50286,12800,72707
+39699,49812
+39700,33320,69002
+39701,46503,28693,45454,68955,14759,33902,53069,78312
+39702,57921
+39703,34880,77073,61688
+39704,30713,24387
+39705,68610,46459,31200,18991
+39706,63318,33969,81422
+39707,1374,53621
+39708,61936,27695,51882,2522,77467,58246,57312,24830
+39709,71303,66089,34182,44446,52602,27031,29234,67783,71162
+39710,16563,41055
+39711,11285,60604,49593
+39712,44249,14870
+39713,36273,71572,16008,58166
+39714,50938,77113,74022,14608,38328,29241,14559
+39715,19291,9739,14326,32024,46550,73007,20843,7739
+39716,18782,79840,17157,30169,6804,61855,72597,33865,56046,48487,30027
+39717,38794,15059,68033,26941,67720
+39718,58017,72130,3619,66010
+39719,69421,1575
+39720,62108,9468,80999
+39721,46055,43356,23276,51565,60372,20587,7152,17758,82046,59305,79493
+39722,48609,28026,58979
+39723,12020,75879,50845,24311,76375,11906,24476,30499
+39724,15480,82027,42891,36782
+39725,58649,73594,26257,58651
+39726,78169,51601,60899,4291,20108,66678,714
+39727,9189
+39728,41573,38540
+39729,56776,73303,81822,57455,70905,51135,21287,12770,34553,74262,26418,21322,8055
+39730,32924,24506
+39731,1678
+39732,80807,72909,37805,13613
+39733,22629,18658
+39734,49335
+39735,79086
+39736,14372
+39737,43580,21667
+39738,73946,8091,66524,67492,59248,45912,14942,55359,240
+39739,64112,72714,42747,36331
+39740,56384,9634,14235
+39741,32333,8988
+39742,21903
+39743,78230,3856
+39744,31257,49703,4360,806
+39745,29774,46708,26859,30526,36859,37492,60436
+39746,65037,61582,15993
+39747,71199,57398,43900,36304
+39748,59491,19393
+39749,80866,7859
+39750,14401
+39751,59927,18557,4712,49329,30718,41360,14251
+39752,74447,70991,67085,9441
+39753,6085
+39754,75327,2716,75159,78643
+39755,20957,51180,3053,64963,24
+39756,66022
+39757,20508,81214
+39758,60962,35818,12924,30302,35207,29400
+39759,75440,50307,16020
+39760,57943,26283,9630
+39761,55993,38125,30787,74613,12080
+39762,44553,64791,1042,33734,30636
+39763,2113
+39764,34689,48150,50871,8787,23267
+39765,24927,54155,38292
+39766,7429,55001,24335,13003,11129
+39767,35432,28576,10209,69217,17901,14819
+39768,43388
+39769,61696,48685,24604,7690,35516
+39770,37120,31995,81168,11272,41790,39118,43493,9401,51892
+39771,61533,51892,35645,28552
+39772,1189,77708,70277,8237,73041,38778
+39773,16655,67882,67600,47309,7206
+39774,46369,4461,63709,38621
+39775,64951,23390,20546,58452,7790,62185,33579
+39776,81467,50106,4445,12929,62269,24749
+39777,15846,4782,67713,56189,53997,25280,10489
+39778,77512,73109,59449,76463,29283
+39779,19393,63259
+39780,71568,25623
+39781,66524
+39782,65015,48569,17224,81784
+39783,69885,50511,60138,55959
+39784,18398
+39785,62681,56960
+39786,44524,77778,55644
+39787,56900,71298,51410,28273
+39788,33581,62384,27957,12512
+39789,40384
+39790,69105,66993
+39791,45639,74393,61318,36465
+39792,18283,29214,10979,68517
+39793,23157,13553,41700,27654,71907
+39794,64302,78539,29636,39856
+39795,39031
+39796,44361,59654,20590,47740,19517,10765,23193,28248,78490,35075
+39797,78026,75204,23882
+39798,36253,77198,76093
+39799,11514
+39800,46433,22316
+39801,52952,45424,71558
+39802,46826,44446,76175,56448,57712,28997,61718
+39803,37031,31493,43465,13730
+39804,6552
+39805,39221,12185,31240,47780,20641
+39806,59138,27132
+39807,10043
+39808,50845,64304,14051
+39809,19573,81164,25180,55322,39550,13702
+39810,75521,50968
+39811,3098,17701,51638,26251
+39812,67665,29408
+39813,64645,37811
+39814,44242,15401,77691,28690,67506
+39815,13158,4066
+39816,53724,54389,52021,16429,81756,11225,62450
+39817,28207,73223,78385,37299
+39818,46427
+39819,18477,75100,24190,55886,81568,52050
+39820,47945
+39821,30618,62820
+39822,26422
+39823,22282,61913,51328
+39824,46078,38657,37396,27102,42212,75235
+39825,6827,17446,69791
+39826,11014,51612,4503,69832,38368
+39827,25304,21036,66369,63508,41587
+39828,81056,62127,76396,26417,81973,1115
+39829,1248,34983,54471,19019
+39830,65408,42538
+39831,29787,74062
+39832,54864
+39833,41073
+39834,16805,57723,57902,32916,14660
+39835,23757,76710
+39836,3697,66401
+39837,40748
+39838,30362,53155,53024,26350
+39839,8338,51869,64512
+39840,30713,27013,20250,14479
+39841,10773,32953,37220
+39842,45659,59819,14526,45774,20097,77666,43167
+39843,77001,4882,64251,57653,46052
+39844,39322
+39845,28960,68033
+39846,47619,81708
+39847,43041
+39848,33447,1696,31675,28183,23969,38802,62781
+39849,77550
+39850,24327,23998,51306,65250,41991
+39851,45543,22340,11032,37757,46395,23535
+39852,15916
+39853,53257,25142,63646,27102,39865
+39854,13391,16999,80659
+39855,78811,63822
+39856,54501
+39857,31696,15677
+39858,31714,64795,73789,10206,37226,7872,18897,38515,31893
+39859,64401,67720,71767,18451,62116,20880,38762,11875
+39860,37403,41024,62951
+39861,39247,21409,50536,31192,80336
+39862,34509,65115
+39863,50793,71481,15651
+39864,68216,28197,68243,81417,37252,64882,14351
+39865,70333
+39866,66109,33962,66997,31719,7593,67294
+39867,35209,69206
+39868,150,32289,59358
+39869,65417,10957,65002,56996,62821
+39870,73193,76989,74337
+39871,77522,62116,66133,42807,67436,17634,8714,60893,75262
+39872,73872,30219,18842
+39873,23854,12648,11676
+39874,45229,45307,33966,28437
+39875,73747,60191,53280
+39876,59307,4077
+39877,39164
+39878,55657,47996,13282,67430,38496
+39879,75587,48031,4364
+39880,7306,3438,35466
+39881,69410,323
+39882,74457
+39883,48298,37730,49514,24262
+39884,67335,77508,25730,26778,22600
+39885,12594,704
+39886,40548
+39887,7429
+39888,68997,5996,51418
+39889,51997
+39890,35714,31915,55868,28766,60073
+39891,37760,80310,6760
+39892,11643,59601
+39893,30787
+39894,18384,28995,36791,53758
+39895,51910
+39896,80965
+39897,25603,76549
+39898,17573,80811,34292,60097,51555
+39899,68819
+39900,48852,44825,24573,39380
+39901,28537,80051,17050
+39902,32644,25470,47484
+39903,54968,55849,65834,54708
+39904,61575,53320
+39905,69143
+39906,13133,76404,17917
+39907,74143,54053
+39908,79956
+39909,36270,42572,27283
+39910,7611,46514,7878,43129,52063,9041,74184
+39911,44091,54915,13823
+39912,67149,2240,60860,77689,16276,13786,21636,60293,62064
+39913,36677
+39914,40023
+39915,27252,75772
+39916,13158,36022
+39917,23288,73682
+39918,71118
+39919,39453,65761,45267,17912,56992,49791
+39920,42114
+39921,6928,61106,7947
+39922,36104
+39923,64096,76977,48234,62857,57226
+39924,78467,41569
+39925,31664,71808,10250,40216,70613,6152
+39926,24464,43981,43930,20253
+39927,20882,60281
+39928,21548,11325,18257
+39929,10687,79908,60153,29250
+39930,41607,21757
+39931,42472,59969
+39932,30910
+39933,78733
+39934,67275,59620,77154,55664,33993,62868,63151
+39935,47706,2277
+39936,7830,9756,45660,46885
+39937,65032,73633,6548,57204
+39938,15674,72440,18879,52593,35831,962,728
+39939,9476,53957,72376,67370
+39940,25647,7964,5792,58477,38607
+39941,71998,62778,25561,42759,11627,50949
+39942,79482,61870,73622,55944,455,72197
+39943,56423,27274,44070,71900,66951,18071,13722,11847
+39944,23184,55474,74770
+39945,68439,78235,58688,1003
+39946,41978,8426,22607
+39947,31595,39288,16373,54114,52120,54753
+39948,34074,44519,24042,35439
+39949,17375,73960,42669,58065
+39950,42386,19226,48393,81846
+39951,35173,67395,61022,18199,53644,6784,44278,17989
+39952,38947,65317
+39953,21386,1143,27683
+39954,13165
+39955,2541,31600,39968,30884
+39956,24328,59038,16384,73337,18653,47102,26398,40008
+39957,21060
+39958,81691,69794,34404,52706,66760,48499
+39959,7043,66701,9087,16018,56544
+39960,32965,6969,65456,48796,9335
+39961,18644,45335,15642,55029,42010
+39962,4600,33013,37207,37014
+39963,27410,38919,14933
+39964,76047,16042
+39965,78650,74347,49351
+39966,29780,49008,17460,45799,78448,57036,68760
+39967,79780,33018,81334
+39968,26698,76267
+39969,75370,60745,48084
+39970,64888,13244
+39971,10840,43045,64267,57781,10289,80526
+39972,68976,72319,10851,8655,22288,27350,7929,71405
+39973,13200
+39974,15518,82152,39654
+39975,52284,72697,51062
+39976,65532,59963,49339
+39977,20795,6364,63323
+39978,62832,59468,56023,57962,25788,56252,26666,73687
+39979,74932
+39980,25022,76195
+39981,17920,69423,51104
+39982,54460
+39983,31395
+39984,77579
+39985,16281,64786,72451,31393,47399,67787
+39986,67543,1116,77856
+39987,62742,12700,32722,5605,70874,76364
+39988,55442,1622,5521
+39989,72696,76157,25431
+39990,2215,58628,59265,40256,51040,31772,75204
+39991,53889,27021,35358,38004
+39992,79650,55256,76278
+39993,55947,42275
+39994,73115,8072,13437
+39995,36648,37597,57631,27643,65235,80015,26751,28405
+39996,30832,51945,58065,2438,76314,65668,46912,55032,317
+39997,51858,64985,31570
+39998,47940,13570,81083,56962,3463,79867
+39999,12242,45007,9551
+40000,54727,20188,43832
+40001,24431,25583,64165,28370
+40002,26647
+40003,50540,69085,13401,70241,81480
+40004,53078,68084
+40005,72734,63573
+40006,1903
+40007,660
+40008,10469,70584,4538,13265,35794,51519,60625,81675
+40009,69561,35556
+40010,8147,13864
+40011,14486,76981,1338,55788,3126
+40012,10001,49266
+40013,20895,18736,69999,28302
+40014,47021
+40015,41394,6328,32555
+40016,15657,17963,7635
+40017,3637,15951
+40018,67169,68358,73553,70945
+40019,53702,46131,43969,52382,70189
+40020,37659
+40021,26957,32128,81429
+40022,16042,12999,1274,38971
+40023,36191
+40024,1524,38152,22100,27266,47785
+40025,79982,56760,67298
+40026,79883,55096,45588,70744,33272,35413,39614,15595,64887
+40027,29634,45680,106
+40028,16197,30831,12843,32506
+40029,81392,24140
+40030,65087,69786,71550
+40031,54601,50343,6452,16338
+40032,81898,34909,54765,70477,77961
+40033,81687,74576,64463,66943,14168
+40034,66444
+40035,17891,36639
+40036,72827,61884
+40037,38354,47715,70348,8782,32872,6269,66158
+40038,55919,1027,36048,43979
+40039,74985
+40040,42435,8536
+40041,64847,40115,32783,49613,50931,23447,47752
+40042,28642,73165,62354,59884,39677,45909,72162
+40043,64869,28601,48213,21715,35430
+40044,41422,37104,37818,5227
+40045,60604,27626,54150
+40046,22714
+40047,54038,34042,13257,76520
+40048,78985,9175
+40049,43735,43061
+40050,1498
+40051,24437,25714,38913,25122,38408,48091,35402,47855,20239
+40052,69237,63307
+40053,52867,50266,64818
+40054,43782,72881
+40055,80424,78733
+40056,16019,84,73402
+40057,2018,64702
+40058,79632
+40059,81065,31316
+40060,5290,46154,917,21772,59451
+40061,29931,25131,18499,77804,57957
+40062,76830,13983,59663,81743,11880
+40063,39036
+40064,10925,78123,69850,47007,68889,23174
+40065,7800,34005,48301,36249,33678,59184
+40066,51221,38921
+40067,63832,45730,38183
+40068,6834,67344
+40069,31536,3758,5250,13156,34674
+40070,72354
+40071,60700,52160,67048,71844
+40072,68876,62124,6148,37695,35317,39970
+40073,12822,29357
+40074,12747,33629,49524,24859,48821
+40075,63144,28584,69954,2039,18490,63777,24124,4621,77585
+40076,29611,75764,35504,77164
+40077,54215,81598,41386,58077
+40078,72134
+40079,13683,36914
+40080,59326,70814,62551,41956,6021,74024
+40081,42725,50699,28128,47075
+40082,48835,57697,63710,81826,45162,13906,23925,8101,66374
+40083,31201
+40084,51970,29245,60306,53011,2640,31082
+40085,62616,75048,33389
+40086,61593,29559,31259,71652
+40087,46643
+40088,27678,5698,42801,1602,32501,63639,56118,65012
+40089,29137,71825
+40090,19806,44538,74473
+40091,76680,40978,81483,12653,25239,45874,45011,22962
+40092,3963,4508
+40093,32643,28934
+40094,46225,4289,72747,48510
+40095,75594,51537
+40096,53079,32556,61068,15765,14602
+40097,80121,61727,43626,77160
+40098,30757,44232,40776,38619,42220,51760
+40099,71835,48861,63718,37671,78241
+40100,55768,56434,4739,69398,50561
+40101,3185
+40102,79437,64802
+40103,55376
+40104,58875,73663,6310
+40105,40154
+40106,42847,58269
+40107,22035
+40108,39600,21286,54998,6924,13946,51055,65870,60316
+40109,45587,30213
+40110,39895
+40111,39970,2878,31278,10954
+40112,32936,79618,32539,6196
+40113,6644,30396,63071,23109,40717
+40114,24969
+40115,72765
+40116,7441,17480,16889,82089
+40117,30872,81478,64723,28929
+40118,33893,55763,11394
+40119,14538,44475,73026,14061,50036,50833,49656,51599,34467
+40120,72344,5943,75802
+40121,21294,15516,757,24949,1037,53627
+40122,14260,56284,40410
+40123,81699
+40124,10390,76684,65474
+40125,58237,77402,55796
+40126,71361
+40127,910,16617,74238,69597,54421,64762
+40128,68432,58301,32570,72953,30739,50405
+40129,36775
+40130,64658,49821,80621
+40131,29031,65124,14712,22845,4077,71073,20559,36670
+40132,50500,42848,46178,12316,74030
+40133,72416,6260,73025,19478,12702,46759
+40134,23124
+40135,446,72628
+40136,26318,6144
+40137,7367,80040,52445,18563,60595,18919,35435,40388
+40138,61414,28211,48624,4223,11410,82068
+40139,77978,56340,43250
+40140,81319,77674,48976,77103,77940,41860
+40141,2832,81952,49420,57509,51490,36691,79310
+40142,73663,13778,73987,55266,69413,44884,4649,42024,19249,48128,41190
+40143,48049,81979,42650,80668
+40144,39656,61202
+40145,40124,78821,71708,54388
+40146,1495,57579,73248,71147,78062,6952
+40147,57636,69327,54381,79887,40248
+40148,25833
+40149,77536,32604,78650,53117,41538,12056,47924
+40150,64166,47341,6480,44389
+40151,61411,254,38655,69735
+40152,72982,32128,3853,26575
+40153,12450,72239,45262,7619,63310
+40154,29093
+40155,75579
+40156,54191,26947,10958,2996,15165,11689,13511,5094,44273
+40157,73358,38721,3980,73038,24357
+40158,75989,13348,69148,16502
+40159,29078,68540,37800,10278,35562,52106,23009
+40160,53320
+40161,52502,7578
+40162,68807,5896
+40163,19126
+40164,49542,41065,19570,65921,10122
+40165,49242,17111
+40166,65195,76872,28994,72632,14733
+40167,29992,71442,60615,31822
+40168,14324,48508,52202,8576
+40169,56037,42789,82071
+40170,79577,46027,25410,2569
+40171,22119,27523
+40172,51524,12529,56979,38382
+40173,1433,65699,53705
+40174,8221,12644,14863,7419,3197
+40175,67535
+40176,77351,51147,53305
+40177,48877,14194,8102,50363
+40178,8651,20169,42819
+40179,74729
+40180,36408,67034,8933,21701
+40181,43607,41028,34668,38537
+40182,52461,77772,1796,52501,79053
+40183,35646,32011,42601,57449
+40184,29487,13879
+40185,72043,38097
+40186,44193,143,46290,18204,64611,41705,69396,23029
+40187,30762,1530
+40188,4605,61265,6401,40338,64398
+40189,2051,67494,77280,54336,62064,17677,15239,47423,74475
+40190,44973,59212,62687
+40191,52595,45055,11231
+40192,56435,376,68379,72087,81835,40460,40527
+40193,817,56340
+40194,71929,50791,9181,24089,63439
+40195,28230,43000,35818,49917,69323,30999
+40196,71223,63640,66042,62108,53434,35747,71011,38359
+40197,26009,39080,60773
+40198,33478,57741,34035
+40199,43852,31025,42974,50602,4062
+40200,17359,38047,48397,78859
+40201,32701
+40202,33449,80756,72395,5240,44951,2520,22255,16933
+40203,13714,65834
+40204,31828,1671,5964,43818,40365
+40205,12558
+40206,71721,80805,45674
+40207,51425,41950,818,50070,57870
+40208,8862,14183,44884
+40209,28185,70346,61042
+40210,81412,44823,2704,53669,275,13990
+40211,411,59646
+40212,61448,13184
+40213,58337,65727
+40214,10176,3169,877,67309,61560,18193,49242,49148,17814,24878
+40215,879,50891,60309,35995
+40216,62047,25591,48109,3199,47889,51154,81305,34609
+40217,39300,77998,38955,64916
+40218,69455,25399,45797,70554
+40219,43075,38710,73872,69982,6399,24708,10129,21211,69628
+40220,74708,16390,14610,42423,69583,14719,68992,69829,78568,80428
+40221,65060,27504,40384,73262
+40222,5659,72983,38261,52446
+40223,64933,71663,35629,66486,17408,73477
+40224,14749
+40225,38863
+40226,70565,58106,77537,40858,70242,74960,68893
+40227,14229,77760,46597,15089
+40228,22813,63309,55196,21288
+40229,68413,32182,55053,76836,9698,82133,76254
+40230,3071,33721
+40231,30996,43439
+40232,72054,65208
+40233,59326
+40234,57147,56075,12471
+40235,1786,40412,73762
+40236,671,27431,14991
+40237,49275,31199,73487,73962
+40238,64463,59849,76694,69411
+40239,81499,44011,77382,38973,18705,13149
+40240,46235
+40241,9021,80256,23049,58188
+40242,77518,26742
+40243,73018
+40244,35029,3312
+40245,1196,368,67244,62161,63440,58480
+40246,79352,44383,41609,71620,17299
+40247,51399,2929,56537
+40248,29116
+40249,17981,50432,81603,16381,59660
+40250,38729,53393,40969
+40251,26074,53692,68565,81451,55810,61913,55292,47819,34305
+40252,74980,27344,48495
+40253,58863
+40254,56693,24424
+40255,21248,41173,28411,47166,60850,13654
+40256,15645,4980,78015,18744
+40257,35393,10383,4963
+40258,8344,36364,25448,54484,47122
+40259,73959,4294,8654
+40260,68996,74564,39699,77501,35193,59247,60462,1953
+40261,11372,69383,50200
+40262,43028,44900,58139,42593,9611
+40263,48109
+40264,14720
+40265,1820,36661,63462,29250,38634,20063,46591,23058,79472,34339,985,21126
+40266,25467,27574,2056
+40267,57863,47330,63761,22678,29120,12941,20397
+40268,46510,38715,64584,4454,63242
+40269,49434,6588
+40270,12673
+40271,37759,4294,31633
+40272,3200,39215,46110
+40273,26041,70334,968,48279
+40274,52552,8877,70887,80855,45448
+40275,72492,45258
+40276,9392,50744,66811,32474,63724
+40277,41331,31941,19393,64357,11773
+40278,42953,17702,75319
+40279,11965,25264,81869,7284,15607,61414
+40280,20756,81101,56152,7575
+40281,13573,22255
+40282,43908,8113,60930,45682,30704,22551
+40283,54803,813,17795,42818,38959,44894
+40284,21903,53934,61438,47570
+40285,67770,69813,75655,34718,26079,25947
+40286,29024,33896
+40287,60767,70156,74933,29132,54787
+40288,37506,7853,6894,8236,37871,56818
+40289,62250,18589,81293,30719,18444
+40290,77687
+40291,8753,66216
+40292,65558
+40293,55917,48399
+40294,71302,32506,61457,69779,64364
+40295,27644,8169,10249,67016,65224,27623,27209,55398
+40296,47938,64949,9186,58999,81645,24682
+40297,10017,7273
+40298,12441
+40299,61470,42909,23722,71732
+40300,21308,64250,65630,43316
+40301,23671
+40302,35391
+40303,3802
+40304,64538,71079,17835,24497,36632,37072,46391,63425
+40305,42764,8064,16803,57958
+40306,38766,36917
+40307,22179,32175,16077,515
+40308,37444,21984,20440,5171,43488
+40309,81090,59943,35190,42784
+40310,61295
+40311,7130,67525
+40312,47837,62941,59730,37083,33747,25830
+40313,66556,68007,67742
+40314,78744,52174,37297
+40315,79388,3400,23685,4596
+40316,16793,15918,22336
+40317,14245,53799,46227,825
+40318,13938,69847,80387
+40319,40187,13014,24431,69785,68365
+40320,14436
+40321,20466,28447,27635
+40322,50129,77637
+40323,52600,31562,71236,55785
+40324,1055,43187,4791
+40325,72198
+40326,36403,37630,78963,72830,61169,48742
+40327,18827,8502
+40328,5436,45757,57453,61729,48806
+40329,54608,18384,24447,1096,43947,40687
+40330,52831,35716,6751
+40331,43403,62181,55943
+40332,67076,12901
+40333,50886
+40334,33632
+40335,77655,44671
+40336,6868,77811
+40337,74134,64225,48917
+40338,42866,76183
+40339,51067,3192,15176,70916
+40340,36264
+40341,26772,1805
+40342,73789,562,68121,54761,37278
+40343,46465,63111,77160,72455,70943,77706,37218
+40344,49561,61862,71586,61423
+40345,21525,60858,20716,25,50825,80202
+40346,74531,37173,78887,43572
+40347,3711,26024,11210
+40348,43655,44962,36821,36501
+40349,8634,76821,39753,19510
+40350,14277,67824
+40351,17602,49901
+40352,20728,7497,71713,31295,81377
+40353,39282,19032,12916,64753,49302,68824,2276
+40354,70458,22118
+40355,32270,25750,78961,58434
+40356,45055,39128,56424,76599,78517,57997,82059
+40357,23334
+40358,25904,43208,57222,70099
+40359,56150
+40360,77018,61094,71868,74221
+40361,26457,78505,59933,28057,33414,45336
+40362,55303,65514,41523,45741,34450,36087
+40363,79412,68310,35348,18269,35096
+40364,29732,21022,19592,68870
+40365,37274,43984
+40366,78454,68244,28020
+40367,73873,34180,9827,31884
+40368,69601,78705,34741,65047,24839
+40369,63385,73779,20298
+40370,66955,58277
+40371,74770
+40372,71258,50350,65761,20125,69440
+40373,22917,39668,58131
+40374,13601,62225,9215,69900,56409,19492
+40375,25529,81009,60754
+40376,459,41729,30242
+40377,37145,35359,54225
+40378,38626
+40379,63765,33354,64326
+40380,17425
+40381,72532,63357
+40382,10275
+40383,52551,60636
+40384,14714
+40385,55500
+40386,45632,66584,12031,46645
+40387,72528,61133
+40388,60450
+40389,23952,37107,39019,77048,4730,13227,28647
+40390,24956
+40391,52174
+40392,1218,22277
+40393,3342
+40394,31068,28452
+40395,60167
+40396,55384
+40397,5002,62881,19374,1150,48283,15988
+40398,67305,12006,56171,38714,40816
+40399,39459,25263
+40400,26445,15262
+40401,61250
+40402,78073,1472,29562,1091
+40403,33823,38447,40790,79579,34768,10344,26385,80135
+40404,66012,6228,37742,67099,48376
+40405,69919,906,20848,24808,61193
+40406,51159,61367,24550
+40407,57819,78071,24762,9232,78111
+40408,20866,47802,32347,30296,72087,18782,2491
+40409,58573,7877,11525,78187
+40410,23004,80608,40651,24872
+40411,52790
+40412,61895
+40413,25240
+40414,22663,2268,4561
+40415,23014,68919
+40416,22970,18500,37223,11430
+40417,70843,29004,62451,18345,62746,12992,61692
+40418,47646,53398
+40419,41285,76372,4331,58539,75851
+40420,19596,16361
+40421,55862
+40422,57380,43569,74653
+40423,31041,40373,8226,50371
+40424,12951
+40425,41894,44418
+40426,43950,57984,26821,51970,67168,56843,49117
+40427,66011,47596,4668,7913
+40428,54964,6011
+40429,19517,68788,34589
+40430,53792,52024
+40431,60252,30606,8300,52461
+40432,74668
+40433,1985,4134,3398,62233,44884,64063,22255
+40434,10683,59588,63183,43082
+40435,79209,60931,23667
+40436,68001,54282,20158,79876,32101,8328
+40437,81237,49573,58474,34813,70346,81806,65096,23442
+40438,57479,11375,16030,1436,55452,69695,30403
+40439,19473,69943,64724,34388,81935,57055,6626
+40440,47146,8468
+40441,35883,43440,67755,36028,24393,18686,41542,60675,45317,55460,77227,60486
+40442,55410,15381,66765,15837,42798,20022
+40443,65049,38435,47200,68944
+40444,48196,21367,55580,21989,29888,43638
+40445,72057,72231
+40446,39063,40700,35600,32105
+40447,28235,49950,78392
+40448,50098,57219,70601,49598,1146,4951,24298,8192,47686
+40449,16084,66658,36591,69787
+40450,17769,2040,74974,69324,54122,13235,4298
+40451,56235,68411,7128,66650,16924,44573
+40452,44138,69777,2723,27860,38548,7271
+40453,46673,10590,44220,64761,9888,62781,46643
+40454,76266,45893,78462
+40455,15562,4072
+40456,4672,73899,12622,78012
+40457,78101,36052,60062,46072
+40458,33578,25119,30507,39109,14819
+40459,1417
+40460,7240
+40461,81145,1725
+40462,50462
+40463,34697,32776,64001,62997,62354
+40464,64486
+40465,7650,58351
+40466,14310,38374,49093,46769
+40467,59733,53777
+40468,38878
+40469,40203,59552,33355
+40470,25431,46794,1940,49705,6000
+40471,4760
+40472,50092,31872,29711,29116
+40473,70912,31199,27112,16558,1903,79991
+40474,10613
+40475,26003,68673,32270,50920,29230,58147,3294,54933
+40476,50026,11784,15579,38774
+40477,59669,24039,28309
+40478,28753,29784,61103
+40479,42461,21525,27369
+40480,20397
+40481,2921
+40482,74081
+40483,34720,43759,684,61015
+40484,39193
+40485,49339,59271,65402
+40486,69563,75078
+40487,39792,28234
+40488,4963,4041,25429
+40489,42928,45519,6807,15086,45900,18915
+40490,57397,11604,66510
+40491,19360,78343
+40492,5704
+40493,68018,25712,694,9520,32796
+40494,15759
+40495,67945,54150
+40496,9570,61513,63827,33987,9304,11505,41687,32196
+40497,34356,61138,63152,68009,35237
+40498,2601,61113
+40499,12859,75541,6562,77844,37374,67567,9552
+40500,43874,23339,4735,63362
+40501,74248,45406,20627,80207,48768,19896
+40502,39232,50786,57539,4961,50495
+40503,8085,43477,50475
+40504,14120
+40505,19783,77461,56099,63593,69333,58712,7257,54855
+40506,39058,73318
+40507,16939,67137,53458
+40508,9173
+40509,29675,101
+40510,56344,4343,57342,23988,1524,64176
+40511,34017,61040,5002,65684,73217,54961,18631
+40512,5639,58350
+40513,14344,19692,29730
+40514,7124,4539,1315
+40515,77755,39668,20178,60684
+40516,56657,62926,33533,74385,2757,14071,24383,22680
+40517,64233,34240,2664,67924
+40518,40257,73059,22465,73784,60641,40193
+40519,36044,54561,422,74841,58615
+40520,51027,27623,39801,12430
+40521,60323,66664
+40522,2860,3069,48852
+40523,61149,49396,815,2977
+40524,78826,47750,66680,42977,47940,7968,11985,17869
+40525,45274
+40526,51120,52614,34435,34540
+40527,81520,33435
+40528,77283,51352,66577,76137,56539,45460
+40529,26916,52007
+40530,33424
+40531,43123,28915,19440
+40532,36139,13785,54819
+40533,62023,66417
+40534,51909,71494,50960,41290,31450,3658
+40535,47523
+40536,39072,22742,80839,60866,47949,29554
+40537,28165,44456,46227,21159
+40538,28264,61479,12213,58606,36797
+40539,61729
+40540,31975,54960,15345,35029
+40541,58680
+40542,57084
+40543,26610,61725,1349,62729,17805,29801
+40544,44502,80125
+40545,31240,72558,59233,25833,14588,77762
+40546,6607,13353,37216,61988
+40547,16132,41800,81152,16431
+40548,80471
+40549,10289,75381,63534,52365
+40550,15703,29787
+40551,22897,80488,33035,68312
+40552,25919
+40553,66118,3118,24342
+40554,490,79250,46744,58600,64754,21511,30619
+40555,17451
+40556,71310,14552,58062,27917,57254,29253,61735
+40557,58958,43401,21697,43034
+40558,58545,13435,51822,6376
+40559,29070,667
+40560,2111,61367
+40561,7936,7803
+40562,48430,20231,6352
+40563,10501,63157,57495,61868
+40564,59858,44592
+40565,7970,15372,53129,33428,81528
+40566,76195,43086
+40567,22408
+40568,62422,35150,24530,63008,18152
+40569,7132,56831
+40570,66009,12604,35011,8282,58776,62710,15207,21576,77504
+40571,3793,73463,31796,29241,3746,24733
+40572,37506,76440,27190,79767
+40573,52500,7911,4002,31366
+40574,16286,25179,23014
+40575,910,22124,21397
+40576,44004,75523,43261,41625,57991,3561,29973,19008,58710,40593
+40577,38253,32476,28852,40958
+40578,16673,23035,51631
+40579,69716,382,11250
+40580,52613,70300,2926,51524
+40581,61932,66813,76408,59216,15354,77688,29622,45309,43907,74109,50620,53882
+40582,8670,27239
+40583,41454,24050,28639,19828,76987,43903,1808
+40584,8769,16278,39417
+40585,4013,13850,19049,14813
+40586,5363,31007,1670,43635,46112,36571
+40587,60183,42564,50848,20978
+40588,60473
+40589,8867,11988,26815,58674
+40590,53489,23240,66135,36209
+40591,72112,5905,59728,71118
+40592,47901,18099,33878,31821,22269
+40593,75133
+40594,18
+40595,63260,33727,38166,29436,59914,42386
+40596,3102,4020,3602,35119,33682
+40597,43773,25484,33369
+40598,2060,23061,4172,57602,53954
+40599,30514,29845,13722,9153,35634,47657
+40600,67209,37587,40054,57409,57096,3935,8692
+40601,11471,24293,36799,77645,71545,24118,20367,2147
+40602,40571,61686,2833,77564,54972,68026
+40603,22524
+40604,66324,66990,33005
+40605,55511,57364,1233,66349
+40606,55277,38898,61608
+40607,57364,15274,29754
+40608,52126,57849,56666,18866,21277,54591
+40609,81924
+40610,79540
+40611,75503,79060,39856,14281
+40612,82064,24824
+40613,36758
+40614,75227
+40615,28634,70186
+40616,27438,9714,19901
+40617,67509
+40618,74565,30187,45343,76132,69622
+40619,80113,17867,37261,12975,44383
+40620,9714,39744
+40621,27629,41847
+40622,8969
+40623,4608,38579
+40624,48601,66841,73072,19485,2933,58931,27061
+40625,10032,48341,43337,45169,6525
+40626,55732,30051,56376,50263,74702
+40627,24244,66431,27010,950
+40628,51348,30399,38076,18750
+40629,75078,51320
+40630,67952,79020,81610,14486,9749,62087
+40631,39010,45525,38794,61760
+40632,62136,34721,761,19667,79579,42351
+40633,3346,14706,46117
+40634,81562
+40635,55686,31845,80433,21585,27383,30738,4268,63193,79195
+40636,40522,68545,76506,43130
+40637,50253,33189
+40638,13894,60181,67001
+40639,64296,21905,21755,16549
+40640,27768,24739,67635,15414,8290
+40641,3912,31162,4099,61660,41169,56173,52467,75669
+40642,23476,80179,68386,67477
+40643,79847
+40644,55333,9117,75946,48250
+40645,23749,3192
+40646,29730
+40647,78653
+40648,15619,33306,41450
+40649,9037
+40650,28121,45548
+40651,41144,26379,73905,10435
+40652,21221,32203,14284,4025,74693,1850
+40653,73225,70905,48358,63691
+40654,57798,20588,73289,32170,10982
+40655,1828,62690
+40656,49222,47350,68361,1050,40292,7256,37087,18651,47780,72361
+40657,61193,8506
+40658,31016,5844,9678
+40659,58979,26579,50878,77998
+40660,47900,60619,50225,32953,355,77557,67892,22012,62114,5495,11051
+40661,52037,28200,9798,41264
+40662,36846,41993,33135,28556,78030
+40663,40552
+40664,31992,49620,78028,48465,23817
+40665,79741,71575,74014,39937,30099,58436,7176
+40666,68745
+40667,7197,76494,24346,29225
+40668,31132,3470,18264,26719
+40669,10227,68617
+40670,12982,5471,51139
+40671,37123,74017,79628
+40672,2793
+40673,48717,79312,56711
+40674,7944,215,77040,48443,28708
+40675,46521,23126,79983,79358,63882
+40676,45795,64166
+40677,19884,51367,80172,20028,65491,20881
+40678,59448,71352
+40679,41870
+40680,40548
+40681,26926,41445,27772,54341,38058
+40682,79253
+40683,72688,65339,77632
+40684,62997,76304
+40685,50087,51126
+40686,47544,53920,30231,33284,11041,26109
+40687,24369,66664
+40688,11733,59541,9004,35242,304
+40689,43615,66993,56821,27237,59760
+40690,13462,55906,30940,33407,23092
+40691,22149,749,76607,44661
+40692,68951
+40693,11738,17868
+40694,29054,7186
+40695,38254,47510,40688
+40696,60056,34946,29612,20903,69067
+40697,55189,71372
+40698,28486,72034,37331,16554,72698,68211
+40699,42879,25882,24268
+40700,46270
+40701,78591,20948,71662,52911
+40702,75492
+40703,59773,40994,1843,2386,77493,2535,69133,66961
+40704,62251,27101,59999,62784,33,49045,23589
+40705,31652,37438
+40706,78572,25619,73114,72957,44391
+40707,22107,35129
+40708,42990,52839,15976,38235,63861,15740,17164,73235
+40709,67845,78507,60148,426
+40710,22410,50491,17884
+40711,41046
+40712,35863,30659,74583,34177,47886,37720,38802,66411,22114,53886
+40713,14983,55789,50727
+40714,17959,19169,4719,57405,50026
+40715,14840,68269,40757,42372,58889,52154,23060
+40716,76669,47312,31674,5286
+40717,81891,31486,80062,76675,31303
+40718,48678,47321,59653,10659,73681
+40719,29719,2851,23240,60442,56235,30264,71,68578,47910,76055,7100
+40720,42670,23741,67324
+40721,12362
+40722,64557,69063,66653,6728,4728,73627,72766,15732,35824
+40723,16575,51188,27157,32649
+40724,5274,73690,38427,19269,6514,23009,78192,40816
+40725,48846,50496,38407
+40726,19194
+40727,18723,43862,35397,61447,5922
+40728,22786,8398
+40729,17615,33766,45937,68875,54946,7207
+40730,51318,44745,58645,64769
+40731,13283,15197,46843
+40732,27566
+40733,4247,4852,59753,56688
+40734,23314,27486
+40735,60904,5343,60202,40366,66399,65143,56073,52124
+40736,39282
+40737,12711
+40738,50263,76932,38206,21758
+40739,35989
+40740,77215,5883,38381,50303,11297
+40741,14228,17175,53487,62962
+40742,81892,53007,778,2989,6614,53882,79947
+40743,14012,70129,76394,72260,9113,41916,55769
+40744,49381,3342,25700
+40745,30627,34131,5803,79262,41714
+40746,36000,46132,71028
+40747,45359,68131
+40748,3030,18936
+40749,31201
+40750,37959
+40751,37789
+40752,65709
+40753,44555
+40754,68987,35905
+40755,47323
+40756,8952,41914,66026,6586,18714,33856
+40757,64227,31406,63567,32389
+40758,46878,52562,17345,45867,77429,78588
+40759,66491
+40760,17996,73711
+40761,33789,515,39286,63573,63453,53320,45463,67909,49952
+40762,20758,6552
+40763,73446,5736,2025,77256
+40764,17194
+40765,81305,13455,81754,73391,3372
+40766,81654,81070,74233
+40767,34392,29943
+40768,21002,28044,42661
+40769,17901
+40770,52545,51726,57886,36370,23951,40817
+40771,53857
+40772,16718,40357,74592,34013,5535
+40773,6968,78806,7056,72595,29599
+40774,60473,25926,37825
+40775,3352,57328,72829
+40776,78357
+40777,13771
+40778,64455,72396,47842,64773
+40779,81483,30803,29304
+40780,32666,15097
+40781,42580,298,50047,64450,69299,62851
+40782,1124,62597,76669,35637,45131,38524
+40783,34743,42196,39013,32847
+40784,6952,3720,14636,55994,21768
+40785,77414,5727,14935,22459
+40786,49951,60652,74557
+40787,6886
+40788,65166,8620
+40789,21023,58740,3809,76808,65728,27685,60595,32822
+40790,38973,54617,22110,35344,37864,39186,1812
+40791,46736,70915,2887,21155,48072,64128,44242
+40792,59933
+40793,9412,62041
+40794,25812
+40795,21880,17680,42687,29015
+40796,57698
+40797,72791
+40798,59503,81596,24386,19154,43277
+40799,47930
+40800,32890,20603,18418
+40801,47538,46496
+40802,42645
+40803,79012
+40804,50061,29554,2035
+40805,53129
+40806,57700,66216
+40807,27819,61890,8257,69519,62888
+40808,67177
+40809,20668,77545
+40810,15545,5628,46382,5219
+40811,60079,62360,15485,42684,61572
+40812,50026,12054,1482
+40813,76337,42137
+40814,20530,79243,74660
+40815,62372,1860,18561
+40816,76917,43005,4178
+40817,9541,75601,47867
+40818,53667,78514,42336
+40819,3251,39879,39692,31743,81086
+40820,50366,10098,56663,70731,11495,49262,11240,62791,12808
+40821,6641,65565,61311
+40822,45251,73850,62198,16038
+40823,15715,26876,33606,9673
+40824,56226,19283,70039
+40825,58391,23487,19639,36228
+40826,64856,3777,38654
+40827,34902,78607,19804,54666
+40828,50272,58822,10438
+40829,50818,7136,68987,46213,54070,23724
+40830,71218,14366,48874,38918,81984
+40831,47388,48815
+40832,52723,878,81056,5968,55532,29177
+40833,71031,68121,79815,61041,3571,76538,23855
+40834,36644,24282,17809
+40835,25278
+40836,19640,8158,27709,53694
+40837,2734
+40838,51305,69256,40749,78421
+40839,13704,8258
+40840,62685,4417
+40841,4880,66891,72582,54098,35480,25975,60004,79004
+40842,39928,52962,24429
+40843,66006
+40844,63540
+40845,55289,29574
+40846,80272,29730
+40847,23687,47137,58810,64771,54189
+40848,10822
+40849,3124,6807,45590,63877
+40850,62247,43541,22658
+40851,63881,26023,36295,1470
+40852,4362,57429,2490,70703,48911
+40853,16443,12541
+40854,13278,29026,22503,3362,20383,69407,68549
+40855,9453,10621
+40856,46164,47591,19139
+40857,70925,735,11983,32119,35385,80602,56149,63422
+40858,2861,75399
+40859,55906,30998
+40860,18274,28632,38536,2313,19224
+40861,76233,21449,2142,59959,24521,66961,36109
+40862,80969,81367
+40863,61996,21802
+40864,67600
+40865,77165
+40866,3574,82009
+40867,31471,50622,12386,50708
+40868,72734,81676,21,12388,62618,52327,35680
+40869,48399,80541
+40870,7971,53725
+40871,43917,77926,51615
+40872,57153
+40873,21024,74643,37733,12887,58515,4026
+40874,57093,50291,7183,61104,20711,23005
+40875,67457,57413,67071,19199,79291
+40876,58200,18833,60066,54017,72528
+40877,75479,49811,72265,68180
+40878,27339
+40879,50418
+40880,30843,61419,78546,46773,75625,47802,70899
+40881,38801,30608
+40882,59307,62077,73002,35771,4149
+40883,39058,26922,7165
+40884,68999,4514,17358,21786,12408,50093,11886,4674,26238,63354
+40885,17853,80468,74537,17464,6224,44609
+40886,43778,41904,29932,6520,55707,68489,12177
+40887,21730,33299,15500,8494,44309
+40888,23564,15033,48425,25902
+40889,10233,9971,28081,64031,1637,65553,38898
+40890,66987
+40891,15521,65607,40917,29014,52441,29556,69022
+40892,58570,50821
+40893,12705,78496,29717
+40894,25718,75742,53832,61729,78756,57582
+40895,61628,61205,910,54990,31161,54765,22685,63189
+40896,6591,30676
+40897,81898
+40898,20297,34837
+40899,80570
+40900,8113,63754
+40901,4780,40050,9426,48115,62392,14828,10675,45027,30514,76195,22282
+40902,65826
+40903,5462,6479,25706,31992,76870,28998
+40904,67015,56633,67608,45594,58444,4364
+40905,35435,79887
+40906,7056,46826
+40907,68729,59188,24170,56190,20872
+40908,8069
+40909,80982,41938,73042,59105,45950,65930
+40910,14100,47892,68583,49214
+40911,81357,3662,20483
+40912,73946,27743,4969,31057,47204,14478
+40913,29222,30328,71389,35081,50316
+40914,64617,21765,68149,27294,20667,34942
+40915,62276,56704,66954
+40916,60405,4556,13635,12700,16961
+40917,79188,78831,34742,70538,39195,73586
+40918,34284,25705
+40919,48103
+40920,15339,42669,62229,25195,8721,67154,4027
+40921,15041,33081
+40922,69626,78957
+40923,56229,12019,21461,49992
+40924,39039,79906,73573,2481
+40925,61421,80220,36351,1500,45862,23275,3131,25716
+40926,11607,12727,62123,8036,28833
+40927,19113,8696
+40928,43525,80210
+40929,44071,66559,67057
+40930,41970,9053,20355
+40931,68094,15835
+40932,2299,32293,69580,57621
+40933,36689,72021
+40934,39618,52441,9943
+40935,50370,35757
+40936,19277,46675,67781,60427,19841,43663
+40937,76968,56124,12190
+40938,68282,31271,1124
+40939,80548
+40940,59178
+40941,11454,28596
+40942,49064,11844,57815,76822,62848
+40943,53786,49976,35069
+40944,56514,36710
+40945,41726,9567,11586
+40946,44607,43710,31627,64885
+40947,59569,6967,13060
+40948,35166
+40949,75433,51195,10833
+40950,60766
+40951,34090,44828,40555
+40952,73658,46937
+40953,73984,29281,11680,22467,25548,2553,77125,43957,2649,5514
+40954,287,29772,57616,21436
+40955,33719,55494,60065,42079,40187,45248
+40956,67533,27334,32547
+40957,21627,16878,60980,17448,67506,82135,26900,33878
+40958,3927,35351
+40959,75208,14589,11922
+40960,2817,58236
+40961,15589
+40962,75669,11504,9153,2582
+40963,27878,9476
+40964,23946
+40965,3806,39810
+40966,51193,34349,45732
+40967,59256,27682,25533
+40968,6116,73686,67513,41710,71258,59685,73006
+40969,17747,71828,28484,8660,18087,232
+40970,11146,5528,60542,62504
+40971,13450,79092
+40972,12120,78562,26961,8511
+40973,19347,22727,67057,25527,15299
+40974,32180
+40975,53394,68923,32370
+40976,11181
+40977,62962,76593,22401,82176,73681
+40978,22272,994,60144,9715,56820,47213
+40979,75852,37262
+40980,579,52482
+40981,42228,76117
+40982,996
+40983,73519,66706,47902
+40984,54864
+40985,31414,69718
+40986,62409,58970,22393,60559,52317,43144,59390,22419,68358
+40987,52311,61897,28596
+40988,72349,26824,6092,50982
+40989,80463,37570,28383,81249,3734
+40990,9273,14615
+40991,61510,80357,47169,55163,59036,6355,73790
+40992,63254,35691
+40993,7872,58429,60736,18144,79036,35330
+40994,52512,41762,78514
+40995,79835,19793,22256
+40996,58506
+40997,49541,55890,30381
+40998,17026,42638,50090,37302,13990,24938
+40999,56818,10834,71813,61291,14103
+41000,37358,11950,64938,71352,574
+41001,19196,67612,1317
+41002,11887,13734,24987
+41003,79903
+41004,46092
+41005,33558
+41006,15843,14413,46492
+41007,6011,25494,43444,56502,77354,31008
+41008,36088,48378,29819,660
+41009,19934,5137,19843,32963,18018
+41010,38227,73137,17522,29981
+41011,51732
+41012,38909,22043,24861,39382
+41013,26469,31105
+41014,21398
+41015,30022
+41016,5803,45428,77673,30980,26141,34692
+41017,47864,31866,43101,5377
+41018,48889,77294
+41019,67873,50841,53692,37487
+41020,76561,64663,75459,60243
+41021,57833,10313,64916,55771,73193,66367,10215
+41022,66869,37180,59303,42843,3041,6958
+41023,38969,74160,41006,31676,17835
+41024,9270,47546
+41025,12607,77643,19664,35770,36674,66861,30393,5369,30938,21629
+41026,4569,66343,10854,27550
+41027,21484
+41028,77004,58304,11536,190,59374,59184,60187,67709,53999
+41029,27083,27552,74672,15833,37453,44197
+41030,2970,54156,58802,29043
+41031,17349
+41032,11905,5876,31402,70348,68757,1675
+41033,41843,74790,48530
+41034,49230
+41035,43291,28559,59546,55618,54032,54559,40564
+41036,70463,43652,14115,72367,2911
+41037,82137
+41038,8520,29772,29494,22097,22043
+41039,14962,32559,18575
+41040,3807,72267,52713,27013,520,14118,52826,62620,11376
+41041,32180,25071
+41042,70455,39002,71585,49920,11061,75141,25704,19747
+41043,39363
+41044,1725,20129
+41045,5652,59728
+41046,77617
+41047,20582,56355,63729,46462,14856
+41048,20714,70506,46803,56588,35086,54579
+41049,76587
+41050,13014,80621,80636,35966,69265,39698
+41051,74277,46951
+41052,57565
+41053,454
+41054,11467,480,53881,45724
+41055,481
+41056,39448,13621,19974
+41057,45066
+41058,7414,26837,66636,38969
+41059,53719,62612
+41060,81182
+41061,80993
+41062,48280,19744,42352,61397
+41063,63683
+41064,43353
+41065,76299,44507,81240,66498
+41066,73971,2136,74646,50159,60872
+41067,28760
+41068,39832,3255,16655
+41069,42355,9482,42386
+41070,5878,31775,9630,78454,12748
+41071,21667,3689
+41072,12251,4746,40754,72377,6465
+41073,67625
+41074,53545,6382,52064,13483,20750,24321,14750,58698,15363
+41075,8968,24336
+41076,3891,32592,55769
+41077,21857,49691,17579,73973,11076,19224
+41078,13521,30802,9410
+41079,20223
+41080,42024,28764,47132
+41081,49072
+41082,36364,34467
+41083,70996,15389,39138
+41084,12458,79429,39024,18998,72570,75995,26731
+41085,15775,58673
+41086,9689,33230
+41087,2238,13969,51575,79467,25392,57167,39143,55371
+41088,47346,69760,59813,7298,77708,68789,20422
+41089,17581,58591,56268,54040
+41090,70112,58541,1682,28062,15835,5007,16691
+41091,29978
+41092,76356,6586,31188,38407,25511
+41093,17466,50438,29545,26932,74562,50140,78844,39838,48506,39378
+41094,13457,68627,80903,39692,81901
+41095,24267,16137,45486,44773
+41096,54533,20961,72718
+41097,35910,49838
+41098,12525,78744,74544
+41099,18602,69314,27909,56684
+41100,10033,55334,71749,72727,75669
+41101,11594,76612,30541,15602,72594,35537,33235,77158,67867
+41102,71824,10756,35453,68697,24641
+41103,69622,2409,54000,49678,9818,79433
+41104,60936
+41105,41369,30332,81964
+41106,7141,50866,76971,8542
+41107,59819,54567,53100,32150
+41108,61368,62850,58563
+41109,62689,13718
+41110,49265,78805
+41111,14647,75238,68951,30662,62793
+41112,9515,78860
+41113,68032
+41114,68047,54912,13714,20953,81225
+41115,13251,28235,74305,73300,14414,77719,9540
+41116,66514,14737
+41117,34100,8490,57332,55869,68130
+41118,29,63881,26835
+41119,62856,23900,76322
+41120,48469,38461,48268
+41121,49164,76864,22480,77529,81332,47186
+41122,180
+41123,18059,9473
+41124,22055,62689,49475,45619,1281,49938,34923
+41125,11212,26104
+41126,48392,60825
+41127,37722
+41128,63758,20730,62199,47,28823,5942,3433,54452,27085
+41129,47211,28895,53007,18034,44669,51891
+41130,76813,40312,21875,60204,73001,38021,14045,66450
+41131,73178,24434,12310
+41132,57292,9128,1590,52843,54217,75006
+41133,14719,44046,26255,20124,42391
+41134,7080,49868,55224,63366,33747,72215,22109,15176
+41135,70401,44193
+41136,20699,51944,16261
+41137,59698,22044,25882
+41138,51338
+41139,13312
+41140,23095,75060,57570,82033,21740,19639,74487,4015,75114
+41141,65242,43759,49114,32601,53729
+41142,46821,31773,26823
+41143,32195
+41144,47676,66234
+41145,46290,26666
+41146,32891,69887
+41147,70580,39356,44743
+41148,56697,54667,1003,6849,20202,38178,44605
+41149,65430
+41150,39964,81410,6537,4432
+41151,82086,39429
+41152,76756,44019,26852,20218
+41153,80076,49741,6945,62556,12333
+41154,57312,67212,62145,56020
+41155,57819,76740,39601,43689,66403
+41156,72056,19466,46649
+41157,51449,35977,16553,24709,40468
+41158,29725,13016,66040,43041
+41159,38663,16449,81699
+41160,45136,39548,33882,72531,7273,34921,54796
+41161,48569,22091,12206,52800,34171,13153,45826
+41162,73901,12299,60806,37352,55211
+41163,72278,26643,80506,16272,29042,37901,29057,71447
+41164,57594
+41165,80417
+41166,76427,8244,72031,30951,55918,33859
+41167,69206,68605,11571,59679,26526,66347
+41168,49423,61924,71830,64542,13265
+41169,11150,26312,54451,9996,63651,62375
+41170,59294,81010,66860,27926
+41171,9869,24496,28494,31154,71023
+41172,75757,9924,23573,63553,66028,21920
+41173,82150,32852
+41174,25848
+41175,31587,16269,37855,30500,813,33665
+41176,78712,835,53859,68896,17761,76868
+41177,61202,72523,65340,33328
+41178,17346,71368,32064,36354,77395
+41179,14675,19152
+41180,20140,80717,71153,29618
+41181,43260,46571,56199,8068
+41182,29293
+41183,42506,45392,51190
+41184,34088
+41185,52869,28070,79989
+41186,10872,27241,80293,20799,36836
+41187,49622,47355,3940,44286
+41188,49386,45634
+41189,72566,28893,18156,11959
+41190,73189,43466
+41191,15121,75106
+41192,73995
+41193,33124,1959
+41194,14947,44208,11400,36862
+41195,60089,20081,53285,8922
+41196,67007,17106,33801,51126
+41197,71623,54073
+41198,14903,81148,31103,75751,33257,34258
+41199,15625,66362
+41200,64745,26789,68771,5436
+41201,1978,35480,5057
+41202,67407,15315,78705,1265
+41203,36855,33807
+41204,18678,60899,11536,60042,28353,59242
+41205,16797,49231,60216
+41206,76553,76408
+41207,4139,56899,64680,6799,77033,80544,24662,14663
+41208,32838,33861,11152,80674
+41209,35595,57495,1819,35807
+41210,13230,26591,49428,79563,12168,4735,67710
+41211,43797
+41212,71936,18684,9970,2870,25904,39425,14420,56546,35334,30112
+41213,7332,13029,50901,59150,60809
+41214,68875,4548,27620
+41215,78539
+41216,23663
+41217,4937,26008,44005,36482
+41218,49650,58539,20362,48723
+41219,27718,13225,30925,75783,56425
+41220,12468
+41221,55937
+41222,21720,30472,11430
+41223,70580,8218,40700,30399
+41224,33195,7025
+41225,72363
+41226,81045,23109,12454,55390,82054
+41227,64926,60788,10167
+41228,2261,71480
+41229,77712,14935,50810
+41230,75311,47431,25896
+41231,42999,26857,72555
+41232,69147
+41233,65621,55037,4394,24313,18177,72737,26718
+41234,19231,654,38852,78138
+41235,77362
+41236,25453,15229,16330
+41237,32086,1715,29555
+41238,17083,80268,32049,25105,40238,39055,47087,2549
+41239,81883,30065
+41240,34117,20262,40462,13211,30525
+41241,71661,24253,1398,39760,54509,33114,761
+41242,58688
+41243,405,60840,56861,79613,57090
+41244,74341
+41245,26201,59423,45830,59094,4545,38362,57286
+41246,46622,13456,66911,72839,40226,9538
+41247,17529,69198,19523
+41248,79175,100
+41249,51318
+41250,80025,31011,6297,61414
+41251,12667,8323,47898,64115,41412,49142,41989,49790,45681,48081,67819
+41252,80888,47900,56178
+41253,51959,60053
+41254,20110,76449,28614,64295
+41255,71251,74588,4158,64989,46799
+41256,18463,25881,18006,27361,39935
+41257,69626,32366,7160,26135,73876,63635
+41258,32526,17516
+41259,5880,18791,1480,10724
+41260,18899,42877,54482,76648,890
+41261,30621,32624,25304,23171,48872,22687
+41262,8521,65793,33734,36278
+41263,24789,75054,57442
+41264,78756,56651,75082
+41265,39633,65508
+41266,2775,37190,80231,62571,44024
+41267,71071,6798
+41268,49763,1342
+41269,4825,73690,7560
+41270,56652,69681
+41271,35387,54959,50772
+41272,36442,11414
+41273,8601,68585
+41274,76835,22075
+41275,32336
+41276,61894,3535,77965,64166,81575,22476,24120
+41277,63663,35776,7227,29141
+41278,63174,6231,55840,17201
+41279,41543,28319
+41280,33418
+41281,44781,49722,60534
+41282,12681,7871,66180
+41283,57958,56047,22255
+41284,68187,9089,55585,10663
+41285,18772
+41286,3109,62155
+41287,57831,76103,71147,64783
+41288,43750
+41289,26739,51604
+41290,38576,48071
+41291,64930
+41292,20870,42855
+41293,40129,22740
+41294,31463,50335,8165,76510,23993,8593,41615
+41295,81647,42592,7629,14633
+41296,42920,60488
+41297,46293,13260,51781,60329
+41298,53974,61886,32656,59495,47668,51047,825,36875
+41299,17091
+41300,40461,9488,78895,13918,33630,62275,54622
+41301,6022
+41302,24396
+41303,22633,52488,64886,40246,47201,15839,7689
+41304,75007,60435,46542,65564
+41305,79989,5432,3097,38726
+41306,52620,61512,49111,39198,60956,28777
+41307,17466,2989
+41308,32973
+41309,61565,9087
+41310,31422
+41311,47195
+41312,39294,63121,17109
+41313,24346,55308
+41314,8100,24989
+41315,67465,11013,20724,63111
+41316,13894,72721,74688,22522,14924,74042,32020,80595
+41317,8091,56659,63302,35263
+41318,3106,63175,18583,19322
+41319,59295
+41320,28020,39629,63427,71762
+41321,40558,60578,2161,36396,20419
+41322,55728,54326,65321
+41323,57413,14270
+41324,9312,7173,63144,36119
+41325,70760,69986,17286,34878
+41326,37122,17695
+41327,49961,68868,70928,7426,27505,13970,22403
+41328,37995,45340
+41329,18757,11771,71683,1193,66800
+41330,28116,80917,58930,16611,22831
+41331,48496,21070
+41332,13469,46930,3859,81137
+41333,39867,17339,30802,53874,2234,59196,17193,66444
+41334,65724
+41335,23709,75432,59929
+41336,53143,54512
+41337,15736,77019,40056,33203,77739
+41338,53947,50423,34113
+41339,15890,75330,19354
+41340,13409,5521,9970
+41341,66548,76710,29331,31409,67853
+41342,6660,69549,14680,77586
+41343,31540,7798,8216,38463
+41344,59366,59832,27170,52254
+41345,25367,6075
+41346,77449
+41347,19611,65769,34456,74906,66834,21611,11558,23895,12950,8409
+41348,44636,72262,75615,8323,24457
+41349,30837,5658,15346,79672,23952,45007
+41350,37164
+41351,58370,79707,45194,8148
+41352,35195,72341,75297,55807,43958,44318,15899
+41353,10299
+41354,63936,62219,28069,71665,48278,24881,69540,46831
+41355,52202
+41356,14944,61620
+41357,75491,66503
+41358,18962,32347,78721,51045
+41359,47920,75222,8058,31644,641
+41360,72317,53666,3459
+41361,72226,76968,58829
+41362,12495,80573,57835,29469,47847,10043
+41363,48582,56729,29690,28282,62019,65595
+41364,36219,66724,68162,37839,80537,69277,29180
+41365,55240,30668,22059
+41366,48428,78633,64521
+41367,10445,45050
+41368,52172,6073
+41369,60916
+41370,13166,50597,68327
+41371,13274,81385,71678
+41372,27765,20055,33316,59697,80605
+41373,1789,3367,29738
+41374,30728,15003,41037,52169,40046,32103,48781,13713,28508
+41375,31757,74660,6399,19723,257
+41376,46928,70183,73663
+41377,78775
+41378,43050,67161,31518,43571,11072,17915,30116,52990,64196
+41379,55489,13457
+41380,60112
+41381,40919,45724,18867
+41382,71370,44725,79735,44943,50229,68794
+41383,8988
+41384,81519,69704,6557,74368,8001,42797,33259
+41385,76293,58840,50744,65259,32269
+41386,73403,63295,11163,70987
+41387,16246,77283,46783,60820
+41388,23989,74253
+41389,25605,27318
+41390,74124,19495,78874
+41391,41898
+41392,63085,56634,17668,14629,36507
+41393,68785,45258,27821,17246,81587,35565
+41394,78653
+41395,19058,47653
+41396,67739,55218,39367,6432,34112
+41397,56622,67694
+41398,37807,11491,67124
+41399,5788,31204,46039
+41400,81314
+41401,67509
+41402,59637
+41403,9109,28497
+41404,13697,59927,15771,16702,46766
+41405,68836,38284,75717,20313,42663,3655,22515
+41406,61401,56706,27706,65425,11068
+41407,36256
+41408,44091
+41409,69517,58937,72158,62371,38352
+41410,48725
+41411,47579,9363,68830
+41412,49838,46879,30644,61828,68414,18218
+41413,63901,61255
+41414,7170,44244,61044
+41415,48431,41144,18245,47240
+41416,15313,38380,15622,73528,51362,37838,20904
+41417,28620,22212,72845,54318,71459,21875,66344,53029
+41418,67650,77558,52958,59010,4802
+41419,27405,36586
+41420,29521,53036
+41421,41614
+41422,28661,63300
+41423,59684
+41424,34198
+41425,54104,48676,38574,42809,31757,71178,64806
+41426,33373
+41427,21841,40522
+41428,54751,22048,73668,21864,37076,16122
+41429,56774,6246,64853,70839,75783,68869,77042,58573,45894
+41430,57160,14120
+41431,38074
+41432,15389,1470,24082
+41433,71166
+41434,6247,32222,74951,16899,13152,17187
+41435,19276,46425,80073,8258
+41436,29277,16550,9011,62423,53878,47870,3564
+41437,29590
+41438,6528,36022,54188
+41439,76078,78196
+41440,37430
+41441,72321,56818
+41442,3931,78835,15364,62270,37238,81157,55990
+41443,45721
+41444,76179,42159,59321,22489,35054,10053,51809,29440
+41445,49974,11633,8152
+41446,57510
+41447,27009
+41448,31470,79454,80998,38924,28107,48444,28706,40864
+41449,52546
+41450,11034,1000,5862
+41451,50401,20064
+41452,54864
+41453,10414,2905,68559,50787
+41454,30336,58416,59286
+41455,5652
+41456,13062,60519,15951,23233
+41457,59940,77113
+41458,9567,43392,8740,59162
+41459,24492,52064,12265,24323
+41460,56878,35105,32776,79801
+41461,30116,71338,55266,74464,45904
+41462,12087,3772,39600
+41463,11643,34570,19068
+41464,67337,40070,12715,9464,52913
+41465,75218,64604,79709,21090
+41466,7732,21253,69891,4238,72848,16744
+41467,45482
+41468,47613,21389,39044,57194,14183,76355,38236,64872,35255
+41469,27928
+41470,3863,74382,25262,1176,65559,70786,14573
+41471,66868,17482,40147,12045,37546,53812,3329
+41472,76286,69868
+41473,33807,34204
+41474,14195,58427,62794,47935,71435,13636,71595,80352
+41475,12739,70801
+41476,68310,42671,56738,73531,30174
+41477,42873,63807,39191,770,44380,15763
+41478,53190
+41479,46430,44311,11573,75397,57151,26885,61687
+41480,81243
+41481,39325,14148,64546,80145,35952
+41482,1993,73100
+41483,2709
+41484,20097,42109,47764,53815,22304,14077
+41485,5171,730
+41486,15028,6895,46144,64097
+41487,18856,12435
+41488,66620,75744,23882,35931
+41489,80232,49254
+41490,48744,6871,11546,31696,79391,63760,40150
+41491,43870,60703
+41492,62832
+41493,23449
+41494,53598,75545,19685,74475
+41495,16199,74684
+41496,1240
+41497,74912
+41498,48647,64231,34086,5273,7325,48332
+41499,41485,69930,57241,52892,55345,37
+41500,11081,32084
+41501,21681,39216,51425,19662,38778,38070
+41502,23272,80987,27572,27644,17274
+41503,55465,22711
+41504,81379,49762,80937,9478
+41505,13768,45149,64713,62948
+41506,38205
+41507,18236,73332,24210,51439,24796
+41508,24156,80663,27689,50823,63961,64243
+41509,24368,57308,37129
+41510,63627,37221,45851
+41511,60704,5675,49886,25131
+41512,48459
+41513,21796,14127,15568,48068
+41514,57282
+41515,62988,43335,20701,2332,11481
+41516,18270,2247,43424
+41517,35174,54938
+41518,11128,23663,69621,4770
+41519,77185
+41520,31387,68010,20488,35209,52786,69263
+41521,13137,40778,51253,40752
+41522,78923,74893,81822,70501
+41523,4091,2757,1511,74774
+41524,35144
+41525,70639,78200,51043,58822
+41526,19004,16162,18531,73155,47215,44274,61075,73159
+41527,55805,19003,40449,14168
+41528,57691,1696,50809,19166,75536,20194
+41529,3825,31492,2825,72829
+41530,26562,43466
+41531,71204,9421,47663,34182,23908
+41532,20967
+41533,80876,68382,18597,56863,16180,37924,24321
+41534,63431,46694
+41535,43871,64527
+41536,63393,70338,20980
+41537,49635
+41538,74665
+41539,60904,68521,16079,73622,63083,8494,61771,66332
+41540,60598,58576,1751,78418,51563,135,56979,38122
+41541,5350,66983
+41542,70210,36293,58884,61358,22472,51057,13449,17694,35789,35777,28822
+41543,26434
+41544,10626,42028,65520
+41545,50494,19356,37657,41319,42394
+41546,76371,82086,73300,8535,58744,46226
+41547,24637,52752,911,61598,72415
+41548,59306,12508
+41549,34777,28974,55292
+41550,75251,77806
+41551,38455
+41552,67784,14874,81251
+41553,50886,27866
+41554,51260,15230,36755
+41555,18329
+41556,63139,41282,57861,48616,64626
+41557,75273
+41558,61525
+41559,40753,52832
+41560,46258,17695,58851,13598
+41561,13553
+41562,65329
+41563,41657,51598,46882,51277
+41564,51797,4826
+41565,65807
+41566,77624,23314,36065,5611,55963
+41567,74514,8756,21648
+41568,34132
+41569,31775
+41570,27940
+41571,46002
+41572,27742,60227,78751,53946
+41573,55485
+41574,67927,467
+41575,3662,29345,1848,20011,17160
+41576,80608,13500,18875,53709,32685,75649,29
+41577,1715,82039
+41578,68164,44017,37659
+41579,18504,69178,10610,16668,29401,30391,75565
+41580,69031,44026
+41581,51456
+41582,30256,80638,34589,53732,56621
+41583,72400,77966,60913,28186,19669,43876,25557,51957,78479
+41584,60290,37128,35052
+41585,14046,39362,11076,37567,10545,67222,20706
+41586,64559,58060,20953
+41587,33833,38589,30427
+41588,68483,28007,43046,58493
+41589,23850,16129
+41590,40395,66195,11620,39086,65771,31658,57301
+41591,61865,51182,39713,38236,23536,64959,15266
+41592,30110,10821
+41593,75278,25209
+41594,64978
+41595,24120,79517,69213,23882
+41596,63791,33486,25548
+41597,32467,72683,77558,59888,37938,28129,66546
+41598,30868,47353,45712
+41599,41710,3849,57380,73231,8639,6762
+41600,58168,27950,29088,76454
+41601,76049,25645
+41602,14950,15440,24587,59512
+41603,37572,2943,73543,9549,37970
+41604,42873,78349,79285,21034,70927
+41605,33363,54534,18858,17581
+41606,34762
+41607,16100
+41608,45984
+41609,52097,76020
+41610,2351,44617
+41611,25334
+41612,50963
+41613,25487,54664,43425
+41614,70706
+41615,81241,62708,29707
+41616,35456,61632,27021,14335
+41617,41564,76277
+41618,23711,43606,34888,33669,58272
+41619,76453,22112,32843,32925,42072,61901,71835,483
+41620,26261,66237,40889
+41621,19122,7822,25437,63340,18607,3212,46027
+41622,46334
+41623,69794,79653,28946
+41624,3984,57160,23163,70186
+41625,51510,29544,18868,19148,17064
+41626,70032
+41627,13062,51048,37039,45835,36688
+41628,40007,6026
+41629,28316,2141,24226
+41630,19522,17433,42148,19235,48858
+41631,52164,73397,32292
+41632,68785,40244,12480
+41633,55819,31893,48113,6487,22467
+41634,41568
+41635,52990
+41636,30845,77254
+41637,39715,43324,8873,54214,19936,12800,1743
+41638,15393,17719,42519,4647,9676
+41639,9264
+41640,16661,38280,51912
+41641,71335
+41642,49936,2384
+41643,41308
+41644,72268,81663
+41645,39134,45787,7377
+41646,4958,7330,58805,37455,30270,6550,77602,47013,62057
+41647,19419,36566,14477,25289
+41648,63631,61739,11927,40748,32692,47355,55948,28159
+41649,62099,26419,27786
+41650,28218,5628,66537,74306,50640,3498
+41651,37117
+41652,71211,81905,58899
+41653,79754,67678,44290
+41654,37250,51601
+41655,50408,41001,30897,51252,47799
+41656,13641,27225,10607,44515,7783
+41657,80679,47592
+41658,43274,72894
+41659,79683,80222,70878,80848,61401,59901,5911,45496,60755
+41660,35857,34255,76124,54393
+41661,60168,37543,36241,3674,17337
+41662,785,34187,22147
+41663,33434
+41664,44418,4091,61019
+41665,65083,81733,61901,26856,3729,73319,2148,80516
+41666,10161,47796,26718,56962
+41667,70921,58608,21014,33437,34711,77809
+41668,19274,5768,11567,53043,73905,56309
+41669,78829,71818,25421,53764,59368
+41670,73175,9066,3601,31741,58375
+41671,10807,11266,55077
+41672,47959,44329
+41673,45076,76164,79586,37667
+41674,44015,67265,4702
+41675,56319,5331,80392,43567
+41676,59988,6079,78370,78348,11105,66032,47935,2464
+41677,44903,68777,45802
+41678,3230,58238,15182,63802,30480,51304,38506,73999
+41679,40898,29017,10443
+41680,18540,7242,78844
+41681,70041,65565
+41682,42088,22835,37541
+41683,59059,4903
+41684,36044,41201,600,64326,52354,75940
+41685,73108,77145,4328
+41686,22480,21994,64655,59697,39296
+41687,28435
+41688,25169
+41689,76613,46351,60391,68334,53851,70096
+41690,27457,74247
+41691,60412
+41692,43852
+41693,57170
+41694,36931,73216
+41695,3170,49320,26082
+41696,70106,49943
+41697,55034,8385,81654,14832,6389,63315
+41698,52562,54676
+41699,767,30940,30358,16766,1175,2118
+41700,40286
+41701,46388,1138
+41702,8730
+41703,98,77754,81989
+41704,11683,39944,35057,70765,57174,15585,9421
+41705,75269,42054,52005
+41706,50882,68761,64904,43469,56164
+41707,50590,77184,80969,77557
+41708,44598
+41709,11397,70274,10310,16531,28222,75230
+41710,56952
+41711,81152
+41712,70845,40908,43104
+41713,72001,54763,38553
+41714,32086,54164,74718,23233
+41715,70900
+41716,67649,70611,13111,79383,63191
+41717,55757,79162,18289,32980
+41718,66190,44307,65010
+41719,27809
+41720,4176,14820,75022,40030,49583,77625
+41721,723
+41722,14894,20102,78357,57967
+41723,39384
+41724,81661,29944,34502,18403,45093,40717
+41725,38144,49645
+41726,43667,12982,51292
+41727,78403,77301,7639
+41728,61107
+41729,20891,44524,71165,49828
+41730,23266,8890,19296,27236
+41731,74976,33977,79766,41235
+41732,67521
+41733,667
+41734,15229,550,16762,18498
+41735,3726,28437,64663,53428
+41736,32269,78951
+41737,27680
+41738,5693,58324
+41739,61955,69355,52546,7242,80634
+41740,53599
+41741,24244
+41742,3369,68695,79145,76446,69409
+41743,12712
+41744,6084,21034
+41745,34735,71977
+41746,28928,17775,18203,5596,37700
+41747,66537,31379,50696,37634
+41748,81720,6388,20619
+41749,67758,34851,1606,59120,7092,64082
+41750,28291,76976,33320,73683,31680
+41751,60687,40446
+41752,79149
+41753,57048,8648,73335,14430,65489
+41754,67838
+41755,22832,23605,73068,80380,63693,17740,58111
+41756,57568,63234,62023,65365,229
+41757,16296,3718,66323,826
+41758,71241,23023,25172,72651,76170,35728
+41759,50917
+41760,42223
+41761,27016
+41762,18827
+41763,6083,8357,29942,37915,45997,37365
+41764,65928
+41765,63196,37825
+41766,12209,58785,27859,23247
+41767,8132,80306,64929,48229,17753,19114
+41768,77393,51910,21305
+41769,47666,74093,32526,24766,60614,31666,40927,22062,49850
+41770,1764,19007,20204
+41771,81858,44348,20920,4970,2345
+41772,60294,70904
+41773,27863,39432,35883,15009
+41774,53940,80679,71689,30724
+41775,75554,2285,68576,62415
+41776,21311,11844,53678
+41777,22697,25363,24313,54217
+41778,15032,82091,63099,80050,1369,20536
+41779,36364,28665,34695
+41780,15341,12503,24129,1446,68223,2551
+41781,73228,56348,5572,33874,31327,30177,53173,13144
+41782,54470,28680,34895,42924,67612
+41783,13700,17264,3716
+41784,33635,1981,63471,77333,42215,51132
+41785,67110,51,76616,24573,55804
+41786,78756
+41787,48527,42458,37380
+41788,32716,17663,5124
+41789,15096,69699,64532
+41790,49228,24457
+41791,61241,64303,68424,10029,51919,59684,36163,77548
+41792,2440,80099,62165,9039,34384
+41793,30528,7231
+41794,40498,9152
+41795,49649,44934,33325,26810
+41796,71568
+41797,28109,45443,2043,63012
+41798,72414,62905,10643,80777
+41799,53049
+41800,7635
+41801,14086,42737,70092,81826
+41802,1655,13607,74733,58759,4325,2704,68655,80355
+41803,51400,48587,70449
+41804,49368,79903
+41805,26651,61459,60504
+41806,21122,24687,10452,60063,37989,72923,67901,34231
+41807,81235,2715,29641,59514,54455,80755,27179,74485,28864
+41808,30457
+41809,22165,32646
+41810,72773
+41811,3705
+41812,72946,33680
+41813,30416
+41814,73094,50809
+41815,39820,82144,33917,63916,48483
+41816,74775,54478,62469,21340,50646,30989
+41817,34779,29273
+41818,64224
+41819,28807,28770,42577,53229
+41820,43286,14091,34044,37798,72700,29682
+41821,9198,68516,36457
+41822,70706
+41823,34679,70856,64309
+41824,29894,20527,50084,51271,63178,5441
+41825,53399,62866,16296,38849,69902,54093
+41826,11773,56632
+41827,62718,40287,61251
+41828,26797,81328,44760,80722,49500,21003
+41829,33194,41752,78919
+41830,109,55699,30309,25081,65258,51251
+41831,65365,71015,32012,56958,2336,67476,9835,70997
+41832,21178
+41833,6484,44128,78399,1596
+41834,61604,13666,22817,79432,27192,6478
+41835,47323,8990
+41836,9487,81102
+41837,6886
+41838,29962,55409,62586,12592,45189,19273
+41839,20370
+41840,47647,20112,51039
+41841,90
+41842,16231,23717,61113,48446,46681
+41843,32071,55434,40726,4915
+41844,22744,57085,53966,70239
+41845,55726,31298,81059,45161,19766
+41846,45917,474
+41847,40851,15730
+41848,37032,45100,41870,72932,46770,52250,24566,68773
+41849,52852,29881
+41850,60788,71809
+41851,12273,43257,64024,44775,69574,6886
+41852,15273,37561
+41853,39668,47429
+41854,61896,52815,29664,42213,134,19492
+41855,22562,6716
+41856,59075,19424,77264,21116,75929,58553
+41857,1140,78842,27482,59211
+41858,5413,58735,33121,12196,18606
+41859,8129
+41860,55247
+41861,40495,54348,75612,40462,24901
+41862,58873,44641,74081
+41863,12833,1586,63367
+41864,13716,11868,35699,46766,42370,67532
+41865,78636,46957
+41866,38880
+41867,57597,67957,58166,20206
+41868,7670,3047,18294,6200
+41869,26201
+41870,66043,6517,17623
+41871,64349,39110,31546,7574
+41872,80428,36996,48251,71850,10520
+41873,36888,72747,64145
+41874,75116,9348,17062,421,30114,31389
+41875,74601,77795,36121
+41876,7766,15044,44208
+41877,62275,55594,1617,533,68799
+41878,43455,56889,78844
+41879,48755,46941
+41880,3973,19383,17775
+41881,69715,68768,31330
+41882,48978,63780,67289,28028
+41883,19950,18254
+41884,3306
+41885,60038,48026
+41886,47616,56384,18
+41887,80090,64023,11379,39061,65210,77211,31757,13890
+41888,35003,42642
+41889,7048,22536,51030,20481,32178
+41890,25363,60892,26002,29561,2096,9271
+41891,29418,7506,82138
+41892,19736,57136,61584,79639,12035
+41893,11794,79395,53261,19042
+41894,54090
+41895,36022,30506
+41896,33037,63546,27850,69421
+41897,49687,33144
+41898,17418
+41899,76194,65677,2070,37404,8455,18439,3443,45405,41360
+41900,3161,75957,61309,51454
+41901,67672,46679,19917,74777
+41902,73024,68041,62745,11015
+41903,72862,43427
+41904,64200,27284,11515
+41905,74345,61177,50633,65282
+41906,49271,28924,78638
+41907,46126,51763,63539
+41908,6729,58668,715,49519,79363
+41909,68916,65503,75990
+41910,71921,49902
+41911,36644,64614
+41912,65055,51641,74625,62044,28995,52541
+41913,28165
+41914,1494,38723,65570
+41915,20294,42547
+41916,43747,72829,44984
+41917,14585,51286,55403,47356,52855
+41918,21171,33221,13622
+41919,41867,58618,14372
+41920,7207,59058
+41921,38828,79022,51852
+41922,489,27518,70441,3948,24840
+41923,64920
+41924,29684,44313,44188,25268,17589,49204
+41925,35716,4094,37343,72253
+41926,11051,17417,2719,58502,7891
+41927,70112,50499
+41928,51010,1234,14602
+41929,49641
+41930,66931,3805,81082,20799,19163
+41931,71672,10266,10855
+41932,46645,28442,69282
+41933,19304,10837,570,30067
+41934,81421,34415,47667,56097,32766,40806
+41935,35488,39534
+41936,14038
+41937,17257
+41938,45663,1979
+41939,24968,10952,66281,61586,61148,18201
+41940,22207,4010,53645,77694,29489,44326,1434
+41941,64433,81931
+41942,43765,50748,32690,17988,77272,46164,66447,81393
+41943,6013,79318,49595
+41944,39584,67862,602,8532,47155,52607
+41945,45363,68088,18515
+41946,49740,28884,58325,34211,31412,31937
+41947,40711,81131
+41948,61868,25077,13325,31485
+41949,23383,60608,78467,40637
+41950,52235,73847,24415
+41951,58106,62985,4332
+41952,48086,53245,2669
+41953,30724,31474
+41954,152,74409,46643
+41955,8718,3807,80336,40895
+41956,36903,40805,50554,19745
+41957,27215,39264,65982,41928,31420,47372,54217,49113,71388
+41958,30619,6360,58773,38660,42646
+41959,75465,11416,32211,41631,71985,77040,52165,26676,67208
+41960,75498,76309,45013,12177,53064,14735
+41961,65768,1258,72611,32281,41624
+41962,18339,79514,236,81096,49949,50919,26050
+41963,67592,69203,274
+41964,78998,56232,7114,610
+41965,55384,78961
+41966,41199,8557,10690,55284
+41967,78560,76195,2274
+41968,50925,49354,26166,7189,47537,18442,34883
+41969,35959,39768,4131,69158,80048
+41970,9680
+41971,35881,52967,473
+41972,46692,76578,74285
+41973,74296,40325
+41974,77929,48998,70732,5830
+41975,62095
+41976,58755
+41977,41152,36883,70906,9356
+41978,81164,48889,77467
+41979,2503,78596
+41980,1846,82144
+41981,63466,55920,699,7282
+41982,34204,32649
+41983,41496,79094,49938,5932,3918,78945
+41984,25729
+41985,11171,76142,72648,7904,15923
+41986,50389,79542,3249,27441,81756,45841
+41987,32797,44557,4233,23206,6606,45229,20410,81347
+41988,49807,80065,32694,2616,26402
+41989,18885
+41990,43301
+41991,68829,31015
+41992,77322,27220,55548
+41993,73697,56244
+41994,74666,42902,1095,29631,25867
+41995,77254,6544
+41996,73528
+41997,22847,77238,32151,14186,44341
+41998,20344,23837,41422,1830,33289,8661,16880,7836
+41999,58744,13744
+42000,51043,2960,26896,28064,60101,30145
+42001,26298,18133,16384,34319
+42002,21616,24663,68567,27599
+42003,14044,61500
+42004,11439
+42005,20296
+42006,79098,23107
+42007,69716,77632,41080,80053,43388,35614,52543
+42008,27131,16207,13053
+42009,37055,31563,50107
+42010,65168,42441,48189,49690
+42011,20206
+42012,4023,77722,36317
+42013,46788
+42014,38415
+42015,65890,74769
+42016,18177,43,44250,39888
+42017,62819,1517,48245,18937,28933,68947
+42018,34169,61194,80534,19393,27323
+42019,30674,12151
+42020,28975,73134
+42021,43192
+42022,14346,21770,71672
+42023,50471,17056,14423,10071,6590,13501,5526
+42024,1188
+42025,79149,32438,9613,43328
+42026,30294,55288,18481,73450
+42027,1801,18324,31576,62501,11388
+42028,8352,21706
+42029,28803,40571,29639,32682,48136
+42030,25457,9510
+42031,8290,38367,70051,31268,7963
+42032,55030
+42033,12751
+42034,66375
+42035,35669,60003
+42036,59889,30828,28156
+42037,52423,26116,53345,42527,78076
+42038,13966
+42039,13236,47059,34666,27745,55199,6725,4912,42910,50426,56134
+42040,67180
+42041,47928,76465,59068,9252
+42042,64230,26596,48675
+42043,58600,16126,1792,69081,33299,27491,62463
+42044,22435,24670,19357,34797,21099,10321,75368
+42045,8006,38977,12390
+42046,3795,29047,67588,55794,63571,69987,39125,34779,33669,37821,74327
+42047,56201,59352
+42048,55403,17054,16541
+42049,31850,56045,49666,47694,80689
+42050,48782
+42051,30910,8143,4787,17138,43063,15810
+42052,77368
+42053,59263,33545,77588
+42054,11504,54415
+42055,40984
+42056,8994,47825,6524
+42057,53453,75589,63493,28388,60989,67169,71837,52116
+42058,76125,37173,8898,978,75796,24030,21458,63941
+42059,31511,61927
+42060,64648,35692
+42061,21543,78080
+42062,20140
+42063,70232,33362,81788,25975,34582
+42064,64119,43222,2614
+42065,28952,21552
+42066,29126,72103,77496
+42067,69391,24696,49042
+42068,73217,41786
+42069,72848
+42070,6653,56972
+42071,81925,80006,2119
+42072,63320,62794
+42073,22157,42420,55865
+42074,26698,26165,69322,67710,60001,76555,57700
+42075,67506,23547,11355,82115,28380,42873
+42076,58757,56080,5199,77028,81694,19407,7148,4162,20310
+42077,76404,41318
+42078,79936,15664,2120,54633
+42079,69484,50329,74693,71169,1391
+42080,1944,26712,60880,34170,64177
+42081,64599,18230,12172,80428,34068,35486
+42082,38709,66116
+42083,17732,62729,25835
+42084,71212,26402,73358,58546,55665,51267,44943,22233,70225
+42085,6695,74295,51066,58098,55276,39641
+42086,59961,20762,14680
+42087,26313,43231,32161,21211,16030,10345,50331
+42088,30703
+42089,39278,5240,39090,53331,35148,52864
+42090,65340,79676,63145,35861,63586
+42091,76608,20836,15244
+42092,39779,511,27994,2838
+42093,31791,34471,23758,71003,69077,62336,68366
+42094,32667
+42095,16711,16197,15958,40548,8173,7967,32161
+42096,69732,24981,17740,1575,28852,76684
+42097,49335
+42098,56634,23632,9874,3196
+42099,16424,66021,63729,54702,76015
+42100,32925,34525,25200,23562,50962,2700,3474
+42101,43499,11665,40145
+42102,80526,10290,59383,72338,59473,12360
+42103,10409,50272
+42104,69201,75677,61997,17796
+42105,79929,57406,25061,79425
+42106,17119
+42107,43034,53181,44263,25259,79026,49813,81545,9235,11315
+42108,21342,77817,42338
+42109,61323,40160
+42110,34123,5960,4335,35620,30255
+42111,56625,33679
+42112,4338,28565,62491,78207
+42113,81491,12614
+42114,1647
+42115,18515,5156
+42116,24857
+42117,40697,19753,39699,54541,78099
+42118,81045,64256
+42119,71503
+42120,37696,17363,2806,57347,9509
+42121,39457,41469,62725,53986
+42122,72366,44016
+42123,1188,654,72376,12114,28561
+42124,25000,42326,80973,53125
+42125,79817,9941,14458,29498,31736,1645
+42126,6127,54554,76765,40512
+42127,29272,76635,28951
+42128,26973,55004
+42129,7948,24011,2707,5150
+42130,80888,5870,60529,1287,58478
+42131,12626,81861,13235
+42132,32479,48173,80372,29402,55239
+42133,26176,21263,82184,49556,21058,61615,11402
+42134,361,36477,1886,6683
+42135,61637,77851
+42136,80521,69274
+42137,78092,36691
+42138,72082,61160,70609,13246
+42139,77360,42334,20279,81028,7583
+42140,1877,43427,44675,33042,14008,28088,69931,4706,65277,12767,65536,78587
+42141,48508,20588,33067,63167
+42142,55968,49711,44554,77955
+42143,22127,51347,24745,41685,37189,82144
+42144,55676,30679,56017
+42145,22808,18757
+42146,21498,20537,56271,43649,62539
+42147,49052,77181
+42148,2658,5623
+42149,71296,45715,43395,604,3490,76602,12484,14986,71389
+42150,48773,75917,77836,4417,70619,17297,1977,22450
+42151,3807
+42152,18960
+42153,13968,23035,64795,29597
+42154,61533,42890
+42155,40711,4729,51626,77100,5098
+42156,73403,68746
+42157,7635,70347
+42158,66454,1083,24525,42484
+42159,8167,27489,76751
+42160,23855,78061,13411,10636,57640,56408,46301
+42161,588,28079,58575,79949,44557
+42162,37660
+42163,72764,59595,41333,38649,13526,28868,64056,67558
+42164,57494,2597,71271
+42165,50421,68734,23480
+42166,26205,48938,77754
+42167,23749
+42168,12872
+42169,38664,44641,37291
+42170,55908,30187,29285
+42171,17676,58443,41104,56408
+42172,6491,16792,55734
+42173,12189,60213,4600,51539
+42174,68819,74278
+42175,58291
+42176,43968
+42177,479
+42178,15589,1637
+42179,42708,59202,17539,62918
+42180,78367,80875,35645,36831
+42181,30375,5472,46053,26432,81456
+42182,38483,47084
+42183,58125,13838,42567,41741,71298
+42184,62523
+42185,22791,71473
+42186,61001,45937,47155,17318,32085
+42187,8729,36022,39736
+42188,56157
+42189,13967,13479,7599,72574,52716,76242,51033
+42190,58385,15652,42296,79434,54243
+42191,40298,27175
+42192,24708,10264,24692
+42193,65507,57887,58137,28610
+42194,48161,43639,3028
+42195,53975,37141
+42196,10642,73031,40310
+42197,67099,68668,4392,37007
+42198,42153,24706,28666,4682,42207,62294
+42199,72017
+42200,57635,66214,74475,58795,9070,34646,39149,51438
+42201,60940,44699
+42202,71304
+42203,17396
+42204,54928
+42205,65319,32208
+42206,79770,39335,22662,72494,81839,44783
+42207,18034
+42208,29814,37815,431,26648,78668,47579,1140
+42209,42869,45444,56405,1099,25661
+42210,40359
+42211,439,42336
+42212,30468,54183,72112,29920,15890,31493,77952,72855
+42213,78498,49963
+42214,56455,100
+42215,6341,25813,8762
+42216,78971
+42217,58125,76505,79169,22753,56009,77232,44228
+42218,10537,54910,19779,32214
+42219,60571,74209,74256,12638,24674,56508
+42220,66727,77386,16318
+42221,36048,42174
+42222,10885,41209,69575,25459
+42223,69797
+42224,46141,38759,48426,75844,7766,32771,32922
+42225,41272,65982,20906,64591,62564
+42226,81924
+42227,73708
+42228,45179
+42229,76744,68944,47179
+42230,67800,17714,29202
+42231,12685,27059,59256,6995,75691,7231
+42232,24724,81795,64297,53234,20382
+42233,15452,2063,23301,15732,22311
+42234,24735,42847
+42235,39914
+42236,10613,40083
+42237,47146,37149
+42238,73331
+42239,67316,1985,10258,44293,18000
+42240,39254,66033,80903,25855
+42241,43870,59560
+42242,75371,34084,36534
+42243,57310,24715,40976
+42244,9502,3573,77988,15380,30499,20659
+42245,17705,34736,20341,59216
+42246,54268,68043,961
+42247,9178,39205
+42248,44624,57542,26930,54073
+42249,68420,22711,10432,6282,80798,407
+42250,44287,56233
+42251,65949,18914,24522
+42252,33883,45226,64584
+42253,17709,7246,27399,73190,76000,57763
+42254,77697,23369,67101
+42255,36335
+42256,14235
+42257,79399,69694,5526,18808,71184,45086
+42258,23690,41262,76107
+42259,69886,78981,72125,42235,42199,42546,63823,72326
+42260,69977,33342
+42261,14686,14128,71138,71063,15146,25596,32288
+42262,14140,34526,64397,22158,75184,6555,30519,54054,14622
+42263,59387
+42264,17190,44706,70068,4854,21757,27316
+42265,31082,66579,10333,19211,55329
+42266,62218
+42267,14194
+42268,69347,76034,14716,52194,80717,75216
+42269,7183
+42270,3262
+42271,57841,58263
+42272,35784,50545,25210
+42273,53596,42310,18241
+42274,79006,44312
+42275,71418
+42276,46886,25374,47572
+42277,43430,1376,16278
+42278,23968,18964,11145,76133,17750,51485,5757,77384,793
+42279,23106,62580,80292
+42280,46384
+42281,10777,14429,2991,50623,15384
+42282,11189,49090
+42283,58853,32356,74258,77503,28819,68638
+42284,77359,35569,20009,60466,76936
+42285,25873,71911
+42286,14648,60542,73766,54140,35005,854,31957
+42287,41407,55600,65546,63903,17865
+42288,76542
+42289,58404,14896
+42290,3618,59880
+42291,69013,12149,68721
+42292,57762,73482,67589,68881,26985,78604
+42293,57565
+42294,8334,26507,11193,38235,37658
+42295,47982,48122,67253,31576
+42296,24343,76863,30480
+42297,11521,22138
+42298,63989,21415
+42299,9875,49,43698,65289,4813,50924,29026
+42300,24431,67349,81376,42455
+42301,15566
+42302,16912,15951
+42303,14525,3960,39293,78965,54351
+42304,35194,18430
+42305,1140
+42306,7276
+42307,25680
+42308,78321,40175
+42309,18686
+42310,19130
+42311,42442,176,652,10928
+42312,48811,14587,39346
+42313,61641,44161,77934,75807,60066,54379
+42314,20581,51028
+42315,64589,48900,50497,51755
+42316,38394,66968
+42317,51016,4159,25505,55255
+42318,65792,54041,32926,71175,22492,11476
+42319,77139,36347
+42320,47016,30788,71750,33884
+42321,38960,68182
+42322,35412
+42323,58372,72142,70667,18026,20489,63393
+42324,43870
+42325,51610,7702,4023,4050,19357,9568,22187
+42326,3711
+42327,33446
+42328,72304
+42329,69680
+42330,27596,20282,12557,35
+42331,73406
+42332,65121,59725,21027
+42333,75523
+42334,40976,18279
+42335,61591,78912,41393,28082,9318,12952,51733
+42336,3946
+42337,59035,33248,66560,15962
+42338,8915,36872,50913,44744,57464
+42339,45087,22604,26130,7585
+42340,66271,22889,6780,72434,23392,49784,19884
+42341,39882
+42342,27586,19639,78548,53252,59560,71348,21490
+42343,57104,35430,73596,14130,37131,31850
+42344,20024,16491,55357
+42345,46804
+42346,53713,78019
+42347,10791,59250
+42348,32541,33823,49076,47332,80304
+42349,32254,68800,81750,55047,55793,34312,17767,70731
+42350,64071,26195,72907,62836
+42351,34660
+42352,66359,42275,30924
+42353,53167
+42354,37875,56678,80674,74576,79067
+42355,40567
+42356,47732,70906,8934,20536,69919,23112,22885,75919,13069
+42357,34208,65611,57075
+42358,36951,2139
+42359,58619,45081,44630
+42360,73281,66794,29333,19846
+42361,73763,42624
+42362,62799
+42363,54029,36751
+42364,68601,416,57873,20369
+42365,78032,2875,28072,35074,34266
+42366,55999,62580,44141,8765,6762,1653,55810,63496
+42367,26246,67752,219,35468,54452,57756,78455,32707,31991
+42368,60183,46977,7972,350
+42369,79557,22752,66043
+42370,67925,58892,61128,66902,32622,63386
+42371,61584
+42372,52517,64059,4568,75373
+42373,37526,27597,13677,52076
+42374,8167,29104,56139,60571,38587,70238,27139
+42375,37109
+42376,68081
+42377,31775
+42378,63803,71437,4813,1204,43466
+42379,77202,3266,30547,77351
+42380,48601
+42381,8747,58053,17729,15490
+42382,27940
+42383,12,26113,10364,32308,4177,76956
+42384,26200,45812,56199
+42385,56451,49886,78376,60936
+42386,44089,66064
+42387,54964,60214,65545
+42388,67786,36645,616,22791,52506,81385
+42389,27559,6373
+42390,62292,31832,13393,50468,1551,80550,55246
+42391,1489
+42392,78789
+42393,12981
+42394,8911,54927,1807,80736,79312
+42395,52240,67071,32554,26045,59023,57992,76280,8002
+42396,55453,18432,51366,49256
+42397,67769,41901,71818
+42398,55684,3098,12956,57640,57123,43678
+42399,47831,26829,55133,63631,7284,72229
+42400,78422,5224,23696
+42401,5292
+42402,54586,60506,37296,72523,26014
+42403,59953
+42404,28140
+42405,53360
+42406,60501,20651,556
+42407,31765,16144,75144,36922,49706,27690,27433
+42408,40446,12520
+42409,29500,65995
+42410,46027,44147
+42411,46013,71985,80884,1677,17731,77255
+42412,31985,39582,25564,57944,72201,40733,42645,75138,28960,48327,35002
+42413,955
+42414,58726,41836,44026,56169,49984,26853,65582
+42415,65840,4326
+42416,31755,2081
+42417,50860,77166,72940
+42418,22935,68125,18619,5450
+42419,52410,75712,16241,76944,6640,4785
+42420,50833
+42421,69410,27626,77254
+42422,36697
+42423,8429,63539,71621,30269,78611
+42424,12987,8729,24069
+42425,2426,13966,11042
+42426,50503,48735
+42427,65298
+42428,39756,28691,32859,53880,62417,37384,71286,62843
+42429,384,16493,75914,14320,61628,51671,59460
+42430,35622,27403,75490,20629
+42431,40568,69519,55832,61491,56646,39357
+42432,35613,13735,68245,43243,21357
+42433,76539,54456,71063,39408,49769,73939
+42434,59751,24569,247
+42435,69607
+42436,71203,61436,26772,43659,19883,53887
+42437,22820,23461
+42438,31431,35029,64094,31605,50611,70955,79357
+42439,55155,11135,69394,74574,73223,51705
+42440,23212,46887,63766,16280
+42441,63831,74701,10895
+42442,44778,43797,54237,75659,50391
+42443,59611
+42444,63022,40663,69063
+42445,52154,10096
+42446,69410,38190,22538
+42447,61709,6062,37029,16580
+42448,15406
+42449,45634
+42450,76944
+42451,12064,35279
+42452,15873,45806,61249,77366,31884,66476
+42453,47380,61137,42011,6384
+42454,58430,34100,45277
+42455,68461,8884
+42456,64025,31350,32666,38853,56090,59660
+42457,77447,75012,5283,70342,40900
+42458,9143,46882,70654,19479,22589
+42459,45197,51766,53195,16209,56304
+42460,23137,64829
+42461,22446,50,49692,65064,32880
+42462,48821
+42463,43363,52929,10835,76768
+42464,49374
+42465,39149,64593,38933,39609,55358
+42466,22865,19043
+42467,76098,62231,28012,8688,76103
+42468,60470
+42469,34997,3184,36000,35454
+42470,1801
+42471,4907,2659,68254,59955,60043
+42472,26496
+42473,42994,8706,66591
+42474,6930
+42475,29501,41228
+42476,21811
+42477,31734,11426,50288
+42478,11152,43008,46440,60992
+42479,66442,47007,40324,20376,7365
+42480,2948,31574,54072,7423
+42481,13729,9054,36560
+42482,65094,12433,30519,19194
+42483,3615
+42484,23926
+42485,1146,20631,81328
+42486,22604
+42487,49140
+42488,61323,58033,22359,9006,81709
+42489,40890
+42490,1328
+42491,22515,77701,37546,75753
+42492,78721,79447,23291,28803
+42493,6359,6834,22841,11934,55812,34088,41213,40879,3867,50609,1297
+42494,70686,61368
+42495,34201,29497,19504
+42496,72351,71118
+42497,76430,29350,23157
+42498,49010
+42499,24798,5792,27682,58836,68491,53628
+42500,24929,55977,27622,23293,42510
+42501,51124,10503,74150,52984,28556,54359,55890
+42502,73971
+42503,18173,75445,72517,67820,72251,3410
+42504,36160,71241
+42505,1678,79070
+42506,54633,33769,2064
+42507,10484,33468,80559
+42508,69943,61633,65302,62127,14167
+42509,23755,70116,16908,75256,71035,36351
+42510,12190
+42511,20429,2379,81059
+42512,77261,58621,78423,12431,7965,25304
+42513,10272,29498,26617
+42514,15392,56637,12948,24529
+42515,60408,75558,60545,54071,21605,5942,49948,36589,27844,58731,4452
+42516,48530,2805,26969,27489,38593,40459,77623,29981,41034
+42517,21211,58993,6237
+42518,47871,36914,29202,24947,23222
+42519,4854
+42520,15595,54847
+42521,76292,27452,78940,11789,50063,33645
+42522,13560
+42523,25621,22176,62354,58869
+42524,56171,13828,35263,47318,28672,80032,3750,69812
+42525,40984
+42526,18724,18949,13659,30497,55212,45054,23450
+42527,35238
+42528,62985,53533
+42529,81070
+42530,43206,23648,66972
+42531,15154,6275,1727,1371,75658,2331,59995
+42532,5002,74185
+42533,44706
+42534,66593,35047,58094,46792,18829
+42535,32583
+42536,63962,64060
+42537,42167,30083,42585,37658
+42538,73893,78639
+42539,69791,18506,27738,43083
+42540,9765,28516,1143,4429,27849
+42541,61506,22931,2613,800
+42542,6927
+42543,63891
+42544,5282,3579,7838,77640,15986
+42545,32936,35,25520
+42546,20679,28026
+42547,12741
+42548,15587,2299,27263,20943,3226,8909,54769
+42549,21428
+42550,70900
+42551,65349,36263,6588,63621,38533,67869,20632,77301,7253,62372,77379,52463,6849
+42552,14391,5556,2383,1130
+42553,30426,29441
+42554,45552,52846
+42555,47867,9024,15862,6664,16332,71526
+42556,11691,68062,69115,51123,9640
+42557,74517
+42558,32741,43764,32363,11618,46267,72071,75549,19744,77884
+42559,16735,64372,59738
+42560,15809,23934,48182,56023
+42561,32062,17849,10250
+42562,30522,29237
+42563,35147,20141,79933,15188,57696,20572,78001
+42564,19862
+42565,10297,21727,57136
+42566,6619,65243,15752,17456,552,54513
+42567,8898
+42568,65426,23967,68520,51045,72906
+42569,64443,75608,78817,76689,5269
+42570,38508,53078,11437
+42571,52164,21103
+42572,45101,33823
+42573,62094,70544,57125,58694,26878,35399
+42574,8993,52394,53065,17293,24451,51845,42384,10960,21848,17687
+42575,29576,23808,17681
+42576,32714,35937,15801,25452,74369,62510,63990
+42577,22293
+42578,18336
+42579,27930,60257,54654
+42580,75428,44059,71572,17270
+42581,74499,25404,64529
+42582,37555,19760,37097,5970
+42583,57737
+42584,23621,36988,55977,13620
+42585,34737
+42586,41489,53772,51591,48189,42012
+42587,65610,13021,29855,53788
+42588,38645,27563
+42589,69422,73863
+42590,44807,73050,53339
+42591,37960,74777,9044,68873,46878,34427,40933
+42592,11936
+42593,16510
+42594,60668,18720,32243
+42595,64311
+42596,27142,67861
+42597,9138,46238,1244,58944,63449
+42598,67121,13984,15589,45090,16206
+42599,8993
+42600,37467,47362,19406,19691
+42601,24989
+42602,10368,18358,24454,62897,54179,63711
+42603,36091,26916
+42604,43802,42361,22086
+42605,17336,78156,47077,21342
+42606,24185,17267,36661,2470,11342
+42607,37329,56662,56401,33819
+42608,73731,31493,69082,28135,66564
+42609,11266,47616
+42610,80417,27212,52581,5861
+42611,27566,68070
+42612,46012
+42613,77579,10275,14846
+42614,37658
+42615,5244,79304
+42616,62988,9723,38924,18650,55609
+42617,57300,17596,15453
+42618,4105,54212,71726,38494,55365
+42619,45470,35412
+42620,34914,72309,61208,78744
+42621,19043
+42622,30448,69217,69344
+42623,14741,22237,38088,43142,66786,25676,4848
+42624,27626
+42625,19628,34165,67065
+42626,54316,15916
+42627,12998,73359
+42628,45573,78636,587,27584
+42629,67947,28711,45400
+42630,11868,42591
+42631,46692,72032,5671,9681
+42632,35637,24936,76805,81959,8855,60422
+42633,4779,12035,73139
+42634,80998,54735,44909,71976,23595,67287,22806
+42635,80598,80002
+42636,66330
+42637,15530,12090,14529,3772
+42638,47153
+42639,64700,50656
+42640,19524,79539,73044,30079
+42641,16569,66311,35354,1669,42097,75788,39027
+42642,75188,61737
+42643,53160,81472,36977,11405,15036,38220
+42644,37355,79715
+42645,28345
+42646,16939,3607,7223,13834
+42647,64736,33603,67214,596,47588,46665,57346
+42648,65478,37257,14759,30950,23002,17213,48348
+42649,38878,10574,36562,54097
+42650,30187,56328
+42651,15229,27091,9784
+42652,45095
+42653,51962,35993,13622,3953,18246,49339,32847,59099
+42654,11660,5770,4280,14562,38141
+42655,60360,4991,70589,36735,32845
+42656,1408,53312,1816,1741,45909,74264
+42657,1403,49069,77427,30274
+42658,57318,29620,35755
+42659,55324
+42660,22157,51433,74246
+42661,31671,77648
+42662,21296,10227,67556,73849
+42663,45959,64603,53316,67817,68833,3125,40792
+42664,82025,12762,76959,58315,13170,54159
+42665,65054,81221,29104,41240
+42666,41541,48342
+42667,53190,467,11037,15589
+42668,18700,70755,16780,11452
+42669,42805,58632,25008,36120
+42670,9969,17279,25587
+42671,48902,63875,42346,48793
+42672,35483,49728
+42673,40275,5821,76326,49989,51601
+42674,76530,40217,54789,19838,56460,18837
+42675,68575
+42676,45384
+42677,15658,62544,336
+42678,45096,23667,5262,18790,26967
+42679,15373,74626,44458,29461,55193,37659,42600,77484,31820,61572,58297
+42680,73410
+42681,24407,22964,62935
+42682,4106,121,47199,58266
+42683,74451,62902,56102
+42684,42168,30004,15974,66920,60936
+42685,43834,46588,46838
+42686,57093,71150
+42687,10582,60632,9166,2497
+42688,15480,4498,16880
+42689,14315
+42690,35657,19454,15497,58696
+42691,54923,41888
+42692,24465,29406
+42693,51179
+42694,2552,21942,66600,75832,76244,67958,43385,74938
+42695,44020,39524,12520,67053
+42696,40613,73064,63436,28634
+42697,39888
+42698,67597,5271,60828,52525
+42699,33023,11859,9255,69586,55284,50698,64259,69132
+42700,46013
+42701,38975,55734
+42702,4994,29296,44182,63063,54304
+42703,53321,58744
+42704,80916,32153,50329,73731,64811,28042,3209,67048
+42705,20190,21378,208,48494,25273
+42706,58087
+42707,6980,56458,78725
+42708,61995
+42709,76576,71298,13790,47066
+42710,69661,63251,23809
+42711,78937,73646,72732,57713
+42712,15036,77492,28411,68601
+42713,68550,34629,29254,28286,55200
+42714,62242,29726,18068,46456
+42715,5383
+42716,16516
+42717,17441,36886,42778,22302
+42718,23973,57317,67030,31315,75288
+42719,18647,65239,70498,76238,10083,81242
+42720,51540,42134
+42721,17646
+42722,58652
+42723,4383,47395,11369,59635,29274,76226
+42724,15320,21732,77872,2372,6501,74333,47967
+42725,18528,51310,25812
+42726,49473,14932,33493,54115
+42727,69376,5292
+42728,50973
+42729,78712,55001,54835
+42730,77578,80874
+42731,10056,6048
+42732,75143,51530,81560,25170,74870
+42733,46284,20112,79932,37408,67656,78935,59290,29279
+42734,31076,40093,72876,45601
+42735,55120,60801
+42736,10073,78780,11821,20423,49246
+42737,29307,48357,20490,19683,56041
+42738,81705,22229,81826
+42739,77471,18228
+42740,45810,58069,34796,4325,22149,37376
+42741,67249,53402,17245
+42742,1037,50303,2908,16044
+42743,76166,80231,33752,17693,77328,37771,12564,41618,37729
+42744,49498,1781,75707
+42745,46384,47229,43310,9683
+42746,37541
+42747,35112,56541
+42748,74872,76826,31821,70637,8809
+42749,25983
+42750,56534,22232,70076,11921,62463,59978,25082,6335,33057
+42751,28090,29020,28329,71165
+42752,26459,11319,28999,21144,28905
+42753,42138,30419,75626,21283,25793,41221
+42754,76683,38139,74134,42845,35726
+42755,6615,39096,5300,61031,31155
+42756,17155
+42757,25946,67450,26561,65279,48384,25981
+42758,11768,22001,525,48377
+42759,40201,72151,21484
+42760,15390,23129,78228
+42761,28976,81898,4461,776,3251
+42762,37302
+42763,44490,19390,42091,74013,73581,60151
+42764,50354,1945,79335
+42765,25519,70297,60329,65610,8898,61153,40987,47711,37266,36823,21279
+42766,40124,36634
+42767,20052
+42768,30246,48271,68497,38416,15120,59708,6694
+42769,1188
+42770,10550,13543,79778,11070,23547,27033,66614
+42771,81332
+42772,34988,785,58199
+42773,24097,6798,11413,65543,29422
+42774,51318
+42775,68321,70738,48153,54918,779,81774,55879,10033
+42776,61946,74741,59139
+42777,69725,9673,19377,15389,26201,40205,42916
+42778,69592,55984,63596,520
+42779,7382,81779
+42780,14342,70186,19985
+42781,22752,36735
+42782,58464,12826,1173,73726,46928,6530
+42783,1973,21619,51833,8184,56165
+42784,21944
+42785,10069,71813,66163
+42786,28207,77500,36389,33116,71141,75119,8165
+42787,52155,16311,55717,80862,12231,57731
+42788,34418,20135,50093,17824
+42789,15775,43904,42945,60058,62499
+42790,15397,9292,78855,70645
+42791,3509,81092,49266,22363,43897,3184
+42792,39619,7062,57819
+42793,38262,32373,44042,77849,26117,18371,4278
+42794,77390,33160
+42795,15105,32299,64561,81617
+42796,74706,68237,6241
+42797,70791,58080
+42798,73784,73990,64971,18904
+42799,46769,69953,51772
+42800,62543
+42801,52566,23371,29221
+42802,55483,40245,15588,58025,49575,42399
+42803,14348,46710,44997
+42804,11591
+42805,58875,8611
+42806,31086,29601,78357,67226,48818,29453
+42807,52110
+42808,12047,47375,61186,7525,2035,72655,69956
+42809,49281,38633,71442,74393,73925,9185
+42810,65879,17278,3814,67110,71103,72087
+42811,68889,74210,33301,15004,42354,52894,42003
+42812,64221,66470,17807,67098,49342
+42813,31641,69002,51053,17827
+42814,21819
+42815,331,55485,59866,32606,79730,9815
+42816,18718,39855,56159,20751,60980,506,1870
+42817,13273,3921,22392,38800,17819,21858,27614,9399
+42818,2502,53143
+42819,15889
+42820,43926,5066,31376,75124,6791
+42821,42822,72834,6421,80099
+42822,24542
+42823,17192,8917,22583,72175,406
+42824,76787,77785,46459,9628,53355,32450
+42825,57525,14487,50288
+42826,48956
+42827,19595,11677
+42828,21299
+42829,41183,6095,6758,42767,79592,60117
+42830,74459,59256
+42831,65840,20225,16293
+42832,80678,35970
+42833,5328,74495
+42834,69868,18918,47111,27245,49847,24934,1732,4626,12589,57322,73894,72340
+42835,28675
+42836,22459,32711,15556,3916
+42837,61597,29870
+42838,44124
+42839,31905,79844,4021,39196,73408,26297
+42840,180
+42841,45257
+42842,4591,29306,20066,49565,45802,69409
+42843,43278,50298,67074
+42844,16956
+42845,77316,71912,65796
+42846,77915,58694,69322,80242
+42847,66454,28472,80401
+42848,79908,1191,22559,80268
+42849,27815,51868,5164,47038,44242
+42850,58767,32370,60418,6721,21555
+42851,35643,82117
+42852,13229
+42853,49884
+42854,39854,50184,15425,828,46684
+42855,37660
+42856,75991,77222,64659,15639,34295,49838
+42857,66012,61958,79861,43333,40445,1864
+42858,57600,62056,48990,3841,43167
+42859,57183,917,30470,1402
+42860,76010,26095,42972
+42861,56152,15961
+42862,68749,78447
+42863,78661,17479,30104,74428,71946
+42864,18946,48153,67666,12815,79273,51178,76402,79787
+42865,59637,35971
+42866,81989
+42867,79594,19669,9709,25337,36191
+42868,81627,49133,55399,20401,80694,2665,59424,39342
+42869,43458,78936,5141,31018,80372
+42870,15460,45800
+42871,21786,48441,36680,68763,75777,79607
+42872,2462,50777,28552
+42873,2229,66182,74800
+42874,48057,25619,29200,46271,11850,7292
+42875,13043,18710,40468
+42876,13424,23745,30514,31246
+42877,69741,58933,14305
+42878,14359,7689,16927,26876,45419
+42879,63868,38465,10126,79522,27614
+42880,9620,1276,75185,41875,23146,49275
+42881,2473
+42882,42585
+42883,16676,61254,61914,71413,76849,43176,55792,15451
+42884,16105,13306,6930,6146,3116,11440
+42885,25502,62629,54769,72387,61535,78384
+42886,63317,66250
+42887,52077,80874,73193,48849,77393
+42888,48040,2247,1455
+42889,47536,15201,16343,242,32091,25537
+42890,22931
+42891,72164,32671,14667,45018,64063,43547
+42892,55729,20962,28867,63268
+42893,20711,34491,26049,12778
+42894,54149
+42895,13625,30654
+42896,12645,69646,56280,62078,65456,62799
+42897,26247
+42898,76114
+42899,77701,28683,36407,27672,79509,42274,6168
+42900,29774,24440,20723,51497
+42901,69176,24690,50538,27247,77722,44186
+42902,36462,48937,11020,40937,41560,56434
+42903,71969,34855,40988
+42904,10659,57306,44163
+42905,9349,35430,72322,23256,15025,60008,4256,61203,54500,13016
+42906,31267
+42907,18853,35600
+42908,48563,61378,33597,23497
+42909,7169,70590
+42910,71339,9111
+42911,59868,5345,36986,26945
+42912,34066,34898
+42913,74331,49008,47071,63709,67050
+42914,63769
+42915,28955,79899,19482,49576
+42916,74627,46985,287
+42917,75214,67085,30746,12527,46678,20878,73909,28064
+42918,62377,52619,66034,56906,4994,29631,14985
+42919,23829,59819,15806,35,34743,31755,47668
+42920,73797,5647
+42921,73024,18282,20357
+42922,65725,56206
+42923,57688,2229,50115
+42924,26464,54336
+42925,46771
+42926,6788,3976,11525
+42927,69791,44551,80073
+42928,11895,5504,3432,71537
+42929,31693,80936
+42930,49978,42484,60648,41224,38726
+42931,55078,21584,29968,39222,81442
+42932,58263
+42933,55442,33095,59496,12717
+42934,56616,41860
+42935,43941,36452,7101,62244,3171,70099,63306
+42936,7295,24747,69760,10287
+42937,51814,68578
+42938,5066,43754,50038,54435,6012
+42939,28064,76260,81536,22272,71257,17026,22016
+42940,48749,60001
+42941,65783,7220
+42942,35862,15511,14041,37401
+42943,15065,50104,78332,89,12053,55933
+42944,56225
+42945,28821,71437,72095
+42946,79350,19182
+42947,55829,27028,4938,71707,61434,22634,44704,59175
+42948,65617
+42949,71234,22149
+42950,23302,56795,68539,28439
+42951,19769,2617
+42952,66603,34115,74626,13297,50999
+42953,38506
+42954,59848,9353,36643,30689,36135
+42955,1511
+42956,80667,9784
+42957,61094,67800,70152,16961,59400,53611,59669,6851
+42958,47420
+42959,22573,16690,13347
+42960,48054,76481,51347,43519,29137,59295,10762
+42961,56787,13832
+42962,11798,74951,22675,35209,38083,71399
+42963,29957,14152,20479,23665,9655
+42964,64506
+42965,62551
+42966,18868,51165,11207
+42967,26498,68016,56671,39355
+42968,28652,51527,3011,50587,51501
+42969,64978
+42970,3968
+42971,29810,15799
+42972,38863,68155,52357
+42973,75941,79321,36423
+42974,22544
+42975,50397,74850,16475
+42976,27133,74935,51894,54919
+42977,69444,36851,11358,66038
+42978,77037
+42979,9099,38092
+42980,50823,51106,22991,73569
+42981,62953,22537
+42982,4791,62794
+42983,10895,72230,13303
+42984,21405,79878,67858,26285
+42985,109,30311,60003
+42986,34931,622,71688
+42987,4376
+42988,52437,57830,71636,30076,80064
+42989,20052
+42990,67670,18558,54698,56944
+42991,75296,40649,23901,68987
+42992,30758,78941,48580,2478,75980
+42993,60296
+42994,75275,59530,26254
+42995,21317,29200
+42996,66579
+42997,48653,28815,17335,39847
+42998,7609,38489,72367,80059,52937,80328
+42999,38332
+43000,44072,34660,43535
+43001,685,36509
+43002,57182,64511
+43003,18905,9871,35810,32463,36068,42943
+43004,71067,74936,73960
+43005,8129
+43006,33221,26466,7457
+43007,37497,54520,75688,55417,31075,3938
+43008,48396
+43009,14878,63578
+43010,72960,11708,61619,42742,4883,29370,57243
+43011,15684,50120,76578,71236,33041
+43012,57218,18384,60355,20673,13837
+43013,73137,69866
+43014,74240
+43015,55376
+43016,46092,79714
+43017,72012,76747
+43018,51768,45640,59559,79925,8337,81563
+43019,24735
+43020,44816,28696,3878
+43021,46941
+43022,59915,25430,10193,29978,6650
+43023,3294,81961,20899,56633,29266,36128,61126,60921
+43024,25198,50269,28412
+43025,72293,53087,18084,24018,17716,4255,11860
+43026,66114,13320,39613,52225,72663
+43027,897
+43028,56589
+43029,49651,46122
+43030,60101,72251,10006,73815,14419
+43031,33353,37207,3965,12257
+43032,75370
+43033,25109,52406,57669,56181,53883
+43034,42621,26400,77657
+43035,39404,61870,51471,21415,77536
+43036,59390,79467
+43037,50367,55814,33871
+43038,4117,49870,50812
+43039,32255,59586,3798,18597
+43040,81574,35373,61675
+43041,65298
+43042,35395,862,5103,53570,46319,11354
+43043,28388,11403,43005,35439,38734,43589,43226,79331,3502
+43044,13166
+43045,63269,13101
+43046,12503,45463,4085
+43047,17436,7422,59590
+43048,71234,8129,54548,35358
+43049,35202,66931,27794,20572,1335,73101
+43050,52520,67170,16313,51542
+43051,32889,142,68423
+43052,58041,64578,11675
+43053,68168
+43054,73225,57313,34299,53439
+43055,76093,47998,81642,42903,15375,52158
+43056,19647
+43057,3420
+43058,4644,24039,57664,80161
+43059,51367,46871,19969,29134
+43060,59179
+43061,1152,24484
+43062,33091,30909,32566,69883
+43063,46258,61484,66786
+43064,20279,25318,52600,67586,16211,16999,64555,31812,45744
+43065,63903,71444,15518
+43066,77369,33343,8670
+43067,13764,77916,34134,45626,58771
+43068,32651,21428,56495
+43069,9960,65106,58286
+43070,64150,37459
+43071,24456,24692,5376
+43072,72107,30385
+43073,22307,66461
+43074,27571,16169
+43075,474,20075
+43076,22861,44168,78844,13618,74787,2432,17474,60747,9803
+43077,10452,13480
+43078,49101,49834,27230
+43079,71573,15161,47830,16878,61465,78739,10611,81535
+43080,4625,50408,73305,20165,70985
+43081,37126,29732
+43082,73849,69038
+43083,61015,3578,21503
+43084,45797,29783,8238,25600,52060
+43085,60652,21094
+43086,61712
+43087,54961,595,5681
+43088,55612,6203,63808,29848,19845
+43089,4909
+43090,73150,16278,78153,28516,23127,67550
+43091,76428,55529,81861,58763
+43092,75383,38732
+43093,9538
+43094,3866,8064,9861,46337,58606,23190,34090
+43095,54625,27766,80373,21097,39173,7670,691,30881
+43096,73142,19000,1404
+43097,14164,24609
+43098,53033,51418
+43099,30932,7401,74096,73869
+43100,77824
+43101,77519,54458
+43102,55283
+43103,24657,33886,65519
+43104,61885
+43105,75081,13207
+43106,26954,81226,64212,41339
+43107,11940,73122,28850
+43108,34066
+43109,4515,78052
+43110,71956
+43111,54901,54130
+43112,42369,70650
+43113,58350,63347,55321,67984
+43114,8862,3977,23671,1247,34214,41286,56014
+43115,61040
+43116,45956,71127,78544
+43117,76483,14175,35903
+43118,7336,63659,7263,68753,75042,13219
+43119,68884,70828,7363,41427
+43120,3007,60540,19067,22282,29673
+43121,23353,60095,54205,78364,58816,4036
+43122,58501,8969,430,61715,4694
+43123,73907
+43124,39529,70961,57775,10059,42773
+43125,29711,5821,40941
+43126,47894,69732
+43127,49884,6814,46961
+43128,15404,46067,2990
+43129,12833,56058
+43130,57038
+43131,70712,80651,73274,71768,23187,60752,38715
+43132,18437,6561,74082,78241,51011,75082
+43133,27640,66629,1216,20535
+43134,24917,42421
+43135,77327,32321
+43136,79804,78280,15467,35361,18001,79398,53563,30692,18534
+43137,58563,68647,81614,77929,29054,22726,44367,61967
+43138,53703,81281
+43139,35690,52962,35749
+43140,6151,7670,48962,55900
+43141,32750
+43142,32526,61979,2635,51232,74571
+43143,12862,43938,43793,21490,57662,34000
+43144,964,36422,33475
+43145,2206,59621
+43146,67523,17995,81252,66224,48650,69465
+43147,61020,30072,75684
+43148,26843,48035
+43149,35759,78701,19176
+43150,31628,11758,72101,76991,53797,61273,17996
+43151,17736,54412,75160,32045,63228,35772,13223,6769
+43152,44882,56963,20135,23463,45689,76767
+43153,22830,50491
+43154,11714,57291
+43155,9162,12268,60200,64573,22249,48087,13363
+43156,40151,33931,64147,69650
+43157,42013,4079,27677,24532,23534,48789,6224
+43158,5050,32674,36378,31563,44546,1179,48340
+43159,46737,35387
+43160,40020,1218,68258
+43161,59725,48779,27565
+43162,4854,18651
+43163,6223,7343,51038,42770,35121,68760
+43164,10914,31698
+43165,8012,4573,80203
+43166,2234
+43167,12925,28144,44997
+43168,44402,46650,32236,74798,34477
+43169,74932,79254,60651,32817,10422,62882,45448
+43170,57091,13969,50163,34855,37698,15902,44592
+43171,25848,6534,42613
+43172,65492
+43173,25252,68279,47777,76207,41651
+43174,62797,10161,59998,4613
+43175,70293,52335,70437,23703,59817,28007
+43176,78824
+43177,48324,54319,18442,65341,46551,54644
+43178,49180,29497
+43179,5544,62829,41975
+43180,26922
+43181,3486,68777,57966,36208,49938,44069,56253
+43182,54191,19587,20369,63727,7057
+43183,59102,36670
+43184,60916
+43185,29607,75813
+43186,19573,32490,3604,69356
+43187,8990,71907,67490,63594,11808,78529
+43188,19794,56169,38157,10463,16580,8672,78773,43025,55308
+43189,14737,45263,81321,21514,66634,11446
+43190,31747,62544,8057,8576
+43191,81583
+43192,71906
+43193,55737
+43194,19772,10610,80633,12083,50282,48199,39818,48424,48480,31265,39357
+43195,7846,68026,65360,17223,77056
+43196,16071,71101,50490
+43197,64578,64464,42590,68791
+43198,18767,72685,1937,26535
+43199,27081,69859,24550,71964
+43200,18527,10123,79127,51295,35260,70933
+43201,67691,70796
+43202,50417,57988,11392
+43203,6443,27970,9962,16397,80911,47712,14789,67189
+43204,20939,75408,44920,5065,45268,60036,69920,15691,25507,34283,52972,31355
+43205,71693
+43206,12414,56485,56728,64456,57521
+43207,7385,49154,4397
+43208,80855,1883,66047,53726,8815,62661
+43209,65388,23667
+43210,31616,49641,52295,77863,74628,44690,6555,74533,74166,78157,36751
+43211,19609,18891,80566,52630
+43212,3689,71352,14154,32993,14203
+43213,81347,65697,62074,17272,21304,28498,50473
+43214,2206,78392,70276
+43215,77396,45214,40056,28406,53470,18656,23296
+43216,46270
+43217,20900,61562
+43218,44773,187,77911,18256,5907
+43219,71932,57699,71715,41567,50483,21563,4631
+43220,40643
+43221,20173,30650,34732,74017
+43222,10473,79621,29008,39138
+43223,15625,42855,73077
+43224,36119,46627,25166,45187,59345,75221,8910
+43225,15570,46548,53790,66324,20930,80154
+43226,65650,47931,36778,65200,56406,7045
+43227,80393
+43228,42952,72023,37777
+43229,81330
+43230,32937,64218,53425,4689,79849,61547
+43231,66418,7191,46482,72032,22194,80260
+43232,45478,41580,5391,6261,44793,81086,79173
+43233,77734,170,65439,47227
+43234,65876,44464,7304
+43235,19166
+43236,66910,21211,58225
+43237,53456,45950,24323,32644,65808
+43238,22688,50444,13177
+43239,21434,53429,54463,12233,32046,26286
+43240,4919,25329,72566
+43241,24594,60544,29229,67706,73167,25084,81258
+43242,17977,81680,36403,14982,52176,29826
+43243,61550,26731,764
+43244,80263,43630,35858,28117
+43245,6079,25839,81922
+43246,74245,1060,45666
+43247,55093,67908,10837,30157,46917,60653,24201,46436,14124
+43248,38116,29468,8891
+43249,44512,34204,53231
+43250,35611
+43251,4633
+43252,22853,57107
+43253,56316
+43254,59433,76723,3853,25374,13625,34901,23193
+43255,65982,77050,21390
+43256,35336
+43257,5394,20462
+43258,49015,61549,25027,20294
+43259,39618,62301,27262
+43260,42464,74876
+43261,41680,67263,39439
+43262,35317,57128,45840,34591,6392
+43263,31940,58001
+43264,31361
+43265,29085,63447,38387
+43266,34497,41506,27076
+43267,5124,12954,23307,59604,60646,66425,59133
+43268,13411,59166,70254,78545
+43269,40077,13166,6812,42668
+43270,71266
+43271,46057,76522,81815,32714
+43272,53153,51431,16364
+43273,53931,26181
+43274,66694
+43275,75215,57241,38741
+43276,51892
+43277,78032,66027,42326
+43278,38765
+43279,24715
+43280,24652
+43281,64653
+43282,77596
+43283,11627
+43284,25169,48645
+43285,67859
+43286,76286,57671,35808,1786,37510
+43287,65949,53315,47035,27640
+43288,54304,67594,27214,71549,63701,48233
+43289,16080,76869,38711,17784,61796,47314,6586,16131,56290
+43290,32767,35505,31394,29698,69840,4575,19193,45475
+43291,19900,73940
+43292,2848,27788,35991,81073,41813,11771,62847
+43293,25292
+43294,54743,34455,81156,48632,59719,22126
+43295,75512
+43296,31451,8608
+43297,7054,65003,8128,69662
+43298,11641,35063,23292,45593,28124
+43299,70571,56495,41282,36211,58085,28777,4445,59031
+43300,75798,47070,2332,64000
+43301,12389,66979
+43302,36605
+43303,22176,74668,21149,36274,19116
+43304,61642,48469,78968,1959,4623
+43305,9897,12923,54867,9996,15456
+43306,44971,31366,2991,25645,35184
+43307,16669,60225,61661,60653,50982
+43308,76952,66975,40859,56381
+43309,77131,73316,25172,75924,11767,50006
+43310,68685
+43311,6310,71732,52291
+43312,61985,66524
+43313,77995
+43314,70271,554,22828,38261,34129
+43315,54305,18853,24367,49790,7030,35801
+43316,36815,46069,75275,15681
+43317,54171,54471
+43318,8036,6807
+43319,22273,15140,59127
+43320,72910,18776
+43321,5352,69116
+43322,4181,66512,47471
+43323,75186
+43324,7373,28222,42215,29021,16149,14871
+43325,40350,13163,31989,73632
+43326,69196,49693,64311
+43327,31283,29384,10035,31526
+43328,35979,27104,57000,9666,74012
+43329,48827,25544,49212,64559
+43330,57790,79174,23232
+43331,67395
+43332,80208,18723,78975,31125,16462,77396
+43333,4728
+43334,71989,50465,75930,76672
+43335,78990,80608,36617,45699,71301
+43336,72766,75402,18432,20129
+43337,81491
+43338,18835,35051,13547,12803,31460,74445,11039,71468
+43339,28760
+43340,78183,30563,30794,6831
+43341,38979
+43342,29261,11511,63432,29560,24854,29864
+43343,64537
+43344,34629,62668,33928,2066
+43345,16938
+43346,81478,10405,26777,70183
+43347,27243,5326,66641,376,74544
+43348,25542,6708,45482,80971,73795
+43349,74451,24450
+43350,6038,31411,70625,69220,36328,48580
+43351,29112
+43352,12542,30591,63554,25702,35700,3700
+43353,59216
+43354,32323,11252
+43355,35844
+43356,34591
+43357,12251,10655,1747
+43358,15357,56067
+43359,19393,70311,49407,34320,24735
+43360,25623
+43361,76927,69338,21667,51837,78193,73255,76163,36196
+43362,27844,4309,39752,59483,26701,14953,4195,61028,26068,13932
+43363,75714,38703,61982,34805
+43364,59433,11151,5166,77188,18626,31028,17185,74268,42783
+43365,22473,77550,75253,19295,80236
+43366,55763,14188,64106,78779
+43367,3401,37870,13886,61075,80985
+43368,58247
+43369,14742,77513,26737,68863
+43370,51977,81992,16057,18921
+43371,42282,22715,22309,79990
+43372,6457
+43373,1865,37517
+43374,10122,22726,68892,43112
+43375,24508,60508,5995
+43376,45618,13345,46861
+43377,28609,3005
+43378,9264,45706,69156,39699
+43379,71974,13073
+43380,74689,6159,11611,14232,7048
+43381,19552,19845,12401,57400,4363,22868,81999,11468,66017,29061
+43382,26447,39242,45496,67870
+43383,17091
+43384,62065,23781,34887,67768,79268,40573
+43385,40549,35470,76165
+43386,52606,30221,25844
+43387,33943
+43388,64053,54154,43788
+43389,73863,65905,50841,8461,24351,37084,40031,40579,23583,19367
+43390,78828,39822
+43391,46103,7853
+43392,69327,43876,1865
+43393,43890,8136
+43394,8708,31958,21931,62742,17410
+43395,29667,68839,21576,55131
+43396,11331,28207,19591,17391
+43397,65688,24396,81814,9969
+43398,57814,51253,67888,58710,35486,51731,72346
+43399,18148
+43400,46294,64705,3158,64033,53081,30586,43134
+43401,17946
+43402,59408,70422,20503,54693,16341
+43403,23292,49072,8988
+43404,59124
+43405,59554,68184,69225,34374,35937
+43406,1244,21340,47784
+43407,66219,14041,29087,56628,55586
+43408,74085
+43409,25928,5574,66602,50418,25256
+43410,8444,3417,6147,56157,41853,51936
+43411,72354
+43412,36528,35503,62857
+43413,7327,50,65368,74505,16557
+43414,24262,70132
+43415,55906,66600,38863,77935
+43416,80080,34339,57410,12707,31071
+43417,1349
+43418,30623,6363,76936,537,81851,48552,12406,17832,26749
+43419,3997,35003
+43420,72101,40614
+43421,39898,41401,11897,35186,29718,27348,75395,49009,53500
+43422,6804
+43423,45078,29938,36588,64210,9955,12450,61683,74428
+43424,72526,14903,46789
+43425,36069,32004,33135
+43426,46926,31468
+43427,53060,72867,31861,65353,58909,1171
+43428,65238,42510
+43429,42987,70437,25742
+43430,74324,47657,68453,16953,81185
+43431,20722,50503,78821,7991,79253
+43432,44090,75545,13428,14743,13682,9477,14802
+43433,18597,78349,11146,67367
+43434,30946,20650,30598
+43435,40325
+43436,81784,10115,30120,24622,27869
+43437,60447,35376
+43438,77421,39805,81892,12331,40512,73926,72041,5205,64178,32869
+43439,39535
+43440,14038,45722,43984,25451,1838
+43441,73602,49350,25480,10859
+43442,47592,22148,54748
+43443,55320,74346
+43444,11032
+43445,52613,13519
+43446,45803,38314,21102,64917,64004,6582,15045,61966
+43447,53081,60871
+43448,74463,9684,11556,49881
+43449,53635,49213,929,27163
+43450,16498,14214,76823,80925,42319,25572
+43451,50881,28017,58697,22287,25172
+43452,65389
+43453,18626
+43454,13477
+43455,34936,49999,75699,26712
+43456,70760,37837,18354,25745,29017
+43457,34220
+43458,74318,31984,37885
+43459,31292,67725,68225,55931
+43460,457,64736,39853,74002,65296,52416
+43461,2952,24172,7221,68060,48582
+43462,39770,45443,79303,79866,57525,39187,65565
+43463,58208,20190,76495
+43464,13981,57388,16846,4641
+43465,52345
+43466,59927
+43467,59369,75137
+43468,10776,50747,14381,1291,52029,33901
+43469,44643
+43470,76072,28597
+43471,25134,62594,43476
+43472,159,81033,54828,76750,29749,69308,79119,43905,73247,34284
+43473,61515
+43474,36586
+43475,12106,6003,49838,80360,40502,68724,38117,20954
+43476,43149,61404,6983,69701,24982
+43477,2082,13325
+43478,64339,57618,38574,74833,38243,34665,55365,81336,62229,63412
+43479,60545,61661,33592,30929
+43480,80473,24725,45193,63570
+43481,63530,77517,39481,24444,78306,45456
+43482,4792,77234,63297,64085,61554
+43483,56318,53541,79073,5205,15838
+43484,80443,70458,70759,25706,14034
+43485,71960,2674,57469
+43486,62422,5038
+43487,63546,74041
+43488,40701,8700,33578,49861,63994
+43489,38238,54419,38463
+43490,3620,2565,50806,2484,78801,3538,81116,9470,58518,8412,15063
+43491,51085,80839,22517,49917,26761,53935,53632,62510
+43492,25518,47477,71688,45123
+43493,39032
+43494,28005,17054,4125,12403,7998
+43495,28512,3083,41067,509
+43496,45311
+43497,15728,79127,66642
+43498,3010,34673,2593
+43499,44015,81214
+43500,45524,74678,67494
+43501,69272,27427,78750,74947,20468,54213
+43502,1975,54153,17901,17255
+43503,52927,17444,49834,34316,40437,71550,69967
+43504,63314,3867
+43505,19360,7691,50624
+43506,60041,63849,32337,10167,22701,38399,70959,8754,15992,38451,48091
+43507,164,16632,49467
+43508,49164,61137,38237
+43509,69763,80290
+43510,14366,63727,49467,3580,27136,30642,2326,20
+43511,81717,16319,15546,63811,51150
+43512,48799,75325,77299,79396,31877
+43513,6085,19046,10917
+43514,52887
+43515,14903,78207,75440
+43516,6011,26831
+43517,70801,64271,54864,21865,4851,74103
+43518,77807,9059,51575,3487,14847
+43519,36322
+43520,17138,1077,59490,25774,60286,70173,28530
+43521,28898,6197,26235,11772
+43522,71560,39296,826
+43523,60165,40749,45669
+43524,63445,71615,19070,13725
+43525,33997,14939
+43526,42152
+43527,19142,6016,52035,70470,38412,40519
+43528,57019,26149,6708,52020,80157,81250
+43529,10037,36524,49086
+43530,34192,18448
+43531,43248,49365,44103,66935,5198,29723
+43532,21974,21936,3586,43238
+43533,37358
+43534,79518,26556,51193
+43535,58026,47030,67273
+43536,36794,3781
+43537,3000
+43538,59542,11881,35389,63543,8998,22207,44889
+43539,46902,32015,7010,80983,81445
+43540,67562,79404,79988,54370,15272
+43541,73276,20352
+43542,66207,66696
+43543,66165,51292,36910
+43544,16520,7701,14603,17954,8870,39556,70570,62548,25308
+43545,34378,73895,7116,6205,56100
+43546,26661,56566,66533
+43547,49069,12498
+43548,75519,76700,29182,54850
+43549,58862,37973,3368
+43550,36787,5649
+43551,70908,18662
+43552,76675
+43553,76941
+43554,65342,57467,33624,12055,79811,78519
+43555,41743,49073,81265
+43556,46650
+43557,1567,38311,80520,46293
+43558,21592
+43559,33627,18351
+43560,16023,53097,68011
+43561,7875,29352,23554,76385
+43562,76669,27036,29074,65371,43383
+43563,81300,65199,46411
+43564,63061,75671,74168,37066,30016,63982
+43565,35806,17342,22193,54251,6924,19432,67298,80057
+43566,19209,42813,746,69321,1526
+43567,65536,64565,57205
+43568,37803,11604,42693
+43569,28734,77998
+43570,53380,45651,7355
+43571,14490,13622
+43572,18419,27087,33344,26417,54573
+43573,44294,67236,12259,3887,45514,77625
+43574,60843,66698,8067,72330,55525
+43575,48031
+43576,67942,55670,57827,81976,24524
+43577,42282,26793,81614,20810,36662,32646,13099
+43578,74437,42681,3242
+43579,37085,74574,71348
+43580,12681
+43581,52323
+43582,6430,49852,19128
+43583,75084,21700
+43584,26095,796,45713,54611,53068,24948
+43585,7135,11422,444,13365,56320,20568,16310
+43586,13641,40454,40944,64311
+43587,23621,29391,75019,48763,50596,63577
+43588,72276,65627,49078,69965,63746,45144,12505,54624,80606
+43589,76082
+43590,72056,34042,5417
+43591,32402
+43592,49914
+43593,10952,38814,57420,28145
+43594,15518
+43595,5887,25062,14507,29833,20301,58144
+43596,69497,54448,11172,23933,78037,37056
+43597,57696,20580,77372,57265,54185,28884
+43598,60845,53185,76359,49269,34572,10357,29117,59397
+43599,39405,58453
+43600,14521,53591
+43601,59078,59893,38851
+43602,37675,74434,53032,76025,48896
+43603,6526,25225,2594,3720,26065,47947,63674
+43604,53417,6971,58477,18353,74775,42788,23498,45693,39657
+43605,48586
+43606,79686
+43607,62630
+43608,57493,47787,81822,69406,9463
+43609,51891,46601,8818
+43610,10705,56725
+43611,14662,21706,13819,47928,28403
+43612,23964
+43613,78720,38424,73172,70254
+43614,26465,50942,55052,68421
+43615,76109,30416
+43616,35890,28894,27330,70162,56021
+43617,7178,5232,75367,62543,54728,9630
+43618,76082
+43619,18643,71699,56639,52028,42746,13431,78554,63686,14137,16972,55294
+43620,76273,78732
+43621,65515,15652
+43622,15166,68656,30517
+43623,46647
+43624,16162,42267,28343,7408,58748
+43625,65265
+43626,61894
+43627,5400,37669,70797,38502,79450
+43628,53672,1131,62425,29810,75338
+43629,29634
+43630,62700,64115
+43631,31302,21613,72622,68198
+43632,21881,47682,30832,44305,70125
+43633,58489,65315
+43634,49948,40231,53900
+43635,41334,2381,61421,6670,57073
+43636,77839,58421
+43637,18268,63117
+43638,36873,23853,2784,36625,65055,63529
+43639,74224
+43640,61232,52144
+43641,4646,44259,40266,9063
+43642,45121,13775,76060,74723,6643
+43643,5133,40622,67637
+43644,54276,29048,70776,12500,53465
+43645,56415,60331,17748
+43646,28719,11350,5175,76874,43014,2292,80530,3741
+43647,46926,33557,40844,49354
+43648,79329,9402
+43649,35917,81633,24337,2480,29897,39084
+43650,11186,31167,13898,41367,65149
+43651,42587
+43652,40935,20989,29130
+43653,43185
+43654,65889,16193
+43655,70940,31553
+43656,74253,20743,774,57253
+43657,29430,63447,71481,26091
+43658,56920,31552,3514
+43659,36017,71335,79352,54444
+43660,70012
+43661,8311,51274,61148,21648,56122
+43662,50992,73958,68538,60208
+43663,45184
+43664,66082,25261
+43665,60596
+43666,75324,43337
+43667,55259,70356
+43668,37173,695,43705,25942,80116,47668,45947
+43669,36423,35641,57444,22744,47784
+43670,67351,46449,13006,68453,36490
+43671,47199,73559,2195,49141,79841
+43672,17875,76958
+43673,77967,31101
+43674,9061,65937,32783,12166,45827,64592,10722,31469
+43675,32493,43762
+43676,59021,25826
+43677,68829,72279
+43678,79608
+43679,1147,27489,39554,74467,16136
+43680,11527
+43681,34713,74632,36138
+43682,3146
+43683,80741,64503,27064
+43684,14899,56386
+43685,44546,39378,7761,75858,554,29184,56853
+43686,79548
+43687,69126,42767,72519,38545,60504
+43688,26792,6509,16404
+43689,64964,8146,78906,17203,44300
+43690,29921,76089,77226
+43691,46144
+43692,62136,9838,10158,7379,48887
+43693,11826,58291,46449
+43694,29952
+43695,13822,78331,41975
+43696,60170,68245,7283,14218,6102
+43697,47471,43291,25945
+43698,82112
+43699,1447,26804,5742,31460,63705,51265
+43700,82117,40897,5473
+43701,3071,33790,12645,18558
+43702,21543
+43703,35165,78152
+43704,52213,35807,46302,39475
+43705,43021,46179,42154,63643,12807
+43706,65412,5664,27844,29875,45375,28186
+43707,27657,1608,78941,20440,26570,72108,53514,69400
+43708,6011,65012
+43709,69105,8359
+43710,1918,28177,44041,15249
+43711,53884,58504,4011,63308,74606
+43712,46110
+43713,76384,10195
+43714,47237,56541
+43715,66087,56334,75283,21551,82142,17810,34817
+43716,69156,45577
+43717,27996,30948,38585,38576,25614,19211,5935
+43718,29542
+43719,42314,5902
+43720,10237,37610,12475,13660
+43721,68122,78882,2096,30445,54519,51530,52993
+43722,62676,45214,81356,42851,15819
+43723,68128
+43724,50901,16250,77322,2343,61100,53957,55417
+43725,64686,3564,52068,31540
+43726,71468,81089,80278
+43727,78082,67119,59843,46659,41050,69434
+43728,45429,72594
+43729,63131,62463,65563,32619,64418,35183,32944
+43730,9144,38628,63157,8594
+43731,49327,12075,17447
+43732,27292,66326,37122
+43733,28635,53132
+43734,2268
+43735,50575,990,53380
+43736,23818,4841,81145
+43737,18128,53283,44210,37509,72268,33157,80962,75438,52829,72846,16704,43942,49860
+43738,66347,38484,34075,62472,47849,54281,76707
+43739,64929,19357,42779,3289
+43740,9466,51543,80823,71682
+43741,6102,44770,44945
+43742,4017,16106
+43743,71957,11476
+43744,55726,40338,28645,10551
+43745,50800,5018,44925,31773
+43746,36922,78455
+43747,56511,5306,28818,32090
+43748,60290
+43749,26328,19637,26929
+43750,28292,29150
+43751,36499
+43752,64207,69439,75503,22287
+43753,14995,71456
+43754,58576,14630
+43755,74237,32206,20921,41885,45821
+43756,5171,71755,22667,77814
+43757,1647,27127
+43758,44171,81209,6902,42610,7216,9202,11623,22794
+43759,72947,66671,49229
+43760,8152,12987
+43761,77972,74670,24987,62916,54986
+43762,35905,29872,61506
+43763,18244
+43764,25066,40918
+43765,38674,23522
+43766,34354,9757,63937,25154,54907,81074
+43767,48353,23397,65754
+43768,78844,52885,68575
+43769,72341,77376,12843
+43770,60573,52582,74692,18887
+43771,1011,4637,57398,65274,22619
+43772,5401,79096,33640
+43773,40233
+43774,37859,71874,42445,55307,75221,43152
+43775,71740,49514
+43776,5282
+43777,5662,48214,4418,72907,53192,40863,42745
+43778,22107
+43779,60397,70853,16708,64819,53401
+43780,4185,7938,69096,76747
+43781,13740,13607,79816,67906,57691,76105
+43782,23685,74870,1864
+43783,10100,77901
+43784,44975
+43785,50920,81601
+43786,67134,70304
+43787,31783,13763,57971
+43788,22287,53845,81963
+43789,8226,49475,67694
+43790,67664,69977
+43791,45473
+43792,52442,22331,7039,57880,34272,1153,72900
+43793,26016
+43794,10831,77766,28104
+43795,71964,75790,55708
+43796,79954,17978,47947
+43797,43387
+43798,43304,56010,852,73420
+43799,36832
+43800,54204,32535
+43801,60441,12972,74599,36189,45918,61104,7602,81354,13158
+43802,29929,39815,62926
+43803,47024,54470,70870,16954,8066,4740,16885
+43804,48765,44884,34622,6946,36919,7666
+43805,50432
+43806,22573
+43807,43220,30922,70765,56787,42680,43938
+43808,18329,56952,35412,79175
+43809,4942,47294,68327,3253,46054
+43810,54864
+43811,10227
+43812,45291,4896,53308,46787,15944,30107,41608
+43813,39540,41113,72030
+43814,9192
+43815,18699,36521
+43816,35266,4319,24369
+43817,1873,28110,61809,1112,30034
+43818,61978
+43819,53605,71393,54652,22688
+43820,28058,39120,39801,36413,28878,74298
+43821,32127,47736,76727
+43822,20265,75754,49862,68474,34082,47063
+43823,78951,75195,36914
+43824,52735,61223,11737,61812,28697
+43825,80647,17781
+43826,17911,52949,56719
+43827,826,16043,40892,381,4578
+43828,7327,30958,65132
+43829,7618,63152,25739,14216
+43830,14404,59472,13743
+43831,57538
+43832,69139,1026
+43833,15271,42896,71003,81147,63275
+43834,81583
+43835,79742,70178,39297,27383
+43836,71974
+43837,73865,25172
+43838,56768,77531,30924,1196
+43839,20713,33851,53511
+43840,34222,60812,36707,60483,51435,52894,71835
+43841,60587,21671,38341,80096,22612
+43842,32512,13128,892,9200,37080,50576
+43843,38364,80159
+43844,72940,80146
+43845,5132
+43846,29707,48774,57086,10740,37476,30704,58288,49943
+43847,55031,79262,25167,79845
+43848,53635,137,31633,33184,77444,46181
+43849,1702,55085,64889,78625
+43850,72407,74037,28184,50931,78171
+43851,17929,20446,71826,26334,13813,7867,51951,77310
+43852,67382
+43853,66017,21566,74056,74724,46053,80372
+43854,63186
+43855,62976,78212,13656,12437,26953,69495
+43856,30574
+43857,68054,61885,12818
+43858,5328,39213,40646,36339,17899,39577,6518,72489
+43859,20765,57431,67050,14965,72668,2761,2955
+43860,67300,48143,74875
+43861,708,54394
+43862,835
+43863,24234,73059,47959
+43864,74446,65446,39141
+43865,32459,6411,36910
+43866,71943
+43867,15918,27732,6426,10166,76870
+43868,71768
+43869,60371,39656,79540,17899
+43870,73742
+43871,70556
+43872,48484,12741
+43873,11442,62869,79149
+43874,2319,9591,22439,78514
+43875,20357
+43876,6641
+43877,59953,78883,67824,7887
+43878,70877
+43879,26905,81011,46917,61886
+43880,17815,57940,49351,72054
+43881,5112,48726,78000,74786,30237
+43882,42843,25377,71334
+43883,55590
+43884,52496,50738,45824
+43885,34122,14966,29542,6290,26941
+43886,39965,42953,66350
+43887,49617,32491,14169,2205,73553,16560,43958,46357,40283
+43888,31572,73781,64756,49697
+43889,49229,40603,76735,71098
+43890,9634
+43891,37007,63043,40508,28823,25969
+43892,19608,48348
+43893,50615,26901,18322
+43894,41319,71165,9792,80938
+43895,79850
+43896,79884,35817,61053,37152,76450,78721
+43897,46643
+43898,71861,20920,50253
+43899,9808
+43900,72129,78692,1164
+43901,48059,46041,59705
+43902,31145,23758,9334,62806,59604,56009,18885,51807
+43903,55382
+43904,49037,15915
+43905,46270,41870,34901
+43906,50696,41097,3303,13255,14288,7790
+43907,62245,39307
+43908,75835,76868,41550
+43909,40982,56217,61627,4744,82
+43910,35911,24868,68753
+43911,55728,76384,70334
+43912,79772,49979,29085,82058,7223,7512
+43913,3116,50523,39285,14645
+43914,665,81329,41724,60730,41126,34092,63904
+43915,34537,28777,33713,13091,27918
+43916,55952
+43917,40341,75061,65474
+43918,61411,54251,19445,50699,52294,2331
+43919,37556,52170
+43920,37659,60408
+43921,64761,57429,72174,38876,81510
+43922,70391,48307
+43923,2107,5597,72572,72260
+43924,31306,3976,3342,68631,16547
+43925,20803,64856,35007
+43926,59124
+43927,56907,52414,47058
+43928,26739,69948,68969,29392,49012,34636,22817
+43929,10219,22149
+43930,40447
+43931,5995,25237,45006,11951,35037,69190
+43932,26600,5435,59659,27955,47615,40543,53718
+43933,47212,22469,7092,24727
+43934,56317
+43935,1370,32685
+43936,11040,48037,58059,58012,15850,75054,8671,48668,43806,38900,45415,58063
+43937,3727,3383,65305,2887,9400,15245,37583
+43938,30144,73054,41421,52785,30608
+43939,25379
+43940,35237,10087
+43941,14832,38711,40609,50759
+43942,51610,33065,78369,7000
+43943,14720
+43944,44899
+43945,51294,25838,57857,55853,13048,25976
+43946,27100,30297,12786,7218,11998,46503,62386
+43947,36873,38796,30403,61821,81770,19425,17106,36242
+43948,52889,19249,72415,28680
+43949,66574,62272
+43950,33534,10923,53922,66234
+43951,77651,22287
+43952,74152,49368,7885,55354,52119
+43953,20113,66326,32756,6229
+43954,82059,48975
+43955,31469,54505,76835
+43956,42021,46433,14585
+43957,61100
+43958,59019,46253,44647,77057,4754
+43959,76452,74247,32377,29305,73522,36320,74474
+43960,37261,73510,17607,67656,23382,1935
+43961,69112,72213,56900,55812,39563,31531
+43962,13326,77084,56120,55157,75555,48720,55312,25733,9613
+43963,8502,35752
+43964,39957,55121,71227
+43965,64645,55427
+43966,9751,31783
+43967,23755,55284
+43968,43041
+43969,38847,59331,61590,50623,18088
+43970,77286,31223,24066
+43971,51146,76322,14227
+43972,75678,27449,71992,34854,53268,43097,77830,10987
+43973,1464,47491,64551
+43974,37083,49838,26527,73152,13580
+43975,54207,61402,59656
+43976,64139,38019,33946,48560,41754
+43977,44745,26296,44900,57413
+43978,17888,18325,11100,65038,73125,44220,68281,58260,76690
+43979,78121,44688,18298,30969,71505,63801
+43980,74415
+43981,80338,81826,58790,75594,52879,77198,59621
+43982,26536,56887,22622,81339,78649
+43983,67016,15393,2870,59583
+43984,52313,75945,35220
+43985,2104,81227,17457
+43986,48656,37567,44804
+43987,49536,21062,69441,64613
+43988,20025,67800,7331
+43989,50483
+43990,20745,49058,48701,15189
+43991,15642,25866,38640,29777,70312
+43992,31374,61496,54259
+43993,22651,30004,42804,50767,43627,37504
+43994,36870
+43995,18238,58641
+43996,20299,36165,58692,9094
+43997,80736,59393
+43998,1034,27003,21612,37435
+43999,42702,11883,60657,58403,6043,70120,21526,44321
+44000,67407,77095,5785
+44001,12586
+44002,42838
+44003,18776,23808
+44004,66290,37936
+44005,3419,62832,5132,60406
+44006,24021,14622,36467
+44007,10590,52964,19110
+44008,1619,29628,75565,42580,20440
+44009,9234
+44010,41109,48321,69785,63854,52089
+44011,64287,977,78392,39935,17476
+44012,73149
+44013,6262,12970,35411,45970,59573
+44014,6854,5651
+44015,55234,20508,27486
+44016,57974,81244,34525
+44017,29738,39361
+44018,14750,8040,5784
+44019,31057,64960
+44020,25584,16211,35354
+44021,77237,49492,30186,72429
+44022,12275,3444,55742,36815,60412,47885,24548,54707,3206,64998
+44023,51217,80295,59741
+44024,58206,30901,50540
+44025,32699,33965,22410
+44026,76487
+44027,3146,13493,61213
+44028,61828
+44029,3667,33635,61393
+44030,43401,33278,23180,37013
+44031,23899,79833,19415,54606
+44032,44403,39094,52137,50633
+44033,20891
+44034,20338,81726,50933,81456,80457,39502
+44035,65412
+44036,59804,59245,46311,13675,9641,79161,48095
+44037,81184
+44038,23626
+44039,31607,54414,40325
+44040,32636,13345,54151,78318
+44041,36371
+44042,71864
+44043,10711,74393,18679,50509,56952
+44044,61632,44528,70133
+44045,65702,81735,53224,14168
+44046,27373,64555,55630,17155,63754
+44047,60151,21599,34576,7209,75475,61990,1517,8052
+44048,53956,65380,68884,11418,4330,32965
+44049,36870,62423,41027,61250
+44050,4330,36561,21436,24292,42442,45636,56325
+44051,38385,32215,26965,8762,74027,74153,81063,45926,49303
+44052,4619,31404,67670,21097,11267,1346,66967,14490,523
+44053,65703,51318
+44054,28226,48473,3997,59295,40594,49666
+44055,68365,45371,22634,26032,28437
+44056,42320,18157,27468,42733,65605,40659,20209,9908,2031
+44057,76790,61637,66849,35629,31515,55523,31068
+44058,72164
+44059,57159,71250,74680
+44060,41461,53046,25274,17721,61905,53148,60259,29770,34775
+44061,78708,55234,46217
+44062,57216,7328,46341,29979,26415,72654,31413
+44063,15586,17588,72354,75557
+44064,15638,30855,21040,32359
+44065,63538,53975,4832,70368
+44066,44163,70675,69920,21981,4701,55713
+44067,10631,32017,75312,78061,14528,9562,27573
+44068,60290,48227,43198,18075
+44069,24415,8360,2769,26733
+44070,48675,80685,14934,10429
+44071,74167
+44072,44555,8095
+44073,73403
+44074,81448,47822
+44075,64399,74798,41556,69282,2249
+44076,45131,66548
+44077,43600,29276,66231,49620
+44078,13728
+44079,60491,4776,60911
+44080,69443,67608,12737,14875,81441
+44081,38425,81169,59419,27016,11222,21998
+44082,34086,20788
+44083,20599,41353
+44084,25457
+44085,67139,49142,4619,26158,47540,24239,15961,44658
+44086,18103,30703
+44087,10533,52123,37919
+44088,72030
+44089,16894
+44090,33033
+44091,50559
+44092,53609,67491,45718,51788
+44093,67206,57528,65152,37290
+44094,19190,50380,30478
+44095,2734
+44096,54176,82031,55298,4292,51721,36401,48984,49728,6910,41043,54091,27570
+44097,72230,47234
+44098,78052,70534
+44099,15672,61475,5261
+44100,19243
+44101,31289,55320,8344
+44102,24089,62888,36617
+44103,34061,71141,54396
+44104,31551,8797,67303,80570,67344,9109
+44105,13351,4039,50882,31992
+44106,7320,54,74267,32040
+44107,43832,46190,80817,7930,71540,45561,5954
+44108,52432,34317,28910,77209
+44109,46384
+44110,52608,63049,21516,74039,60550,42420
+44111,57530,48123,71403,15849
+44112,26527
+44113,21847,77478,69275
+44114,50859,37107,61659,13248
+44115,29748,8806,13356,59652,37355,62161,9915
+44116,56757,34854,66209,29780,72263
+44117,67888,70767
+44118,40894,29116,43773,1864
+44119,32257,7208,29756,16065,70941,16445
+44120,68601,12050,44938
+44121,61040,82034,11732,15016,44015,178,25306,34034,32342
+44122,41081,20759,31812
+44123,51129,20479,32421
+44124,79847
+44125,36639,35207,22663,72722
+44126,50500,24612,71847
+44127,60489,54913,31890,30620,61749,65402
+44128,12585
+44129,50296
+44130,9475,32781,64044
+44131,46879,41455,10469,4516,34258
+44132,74685
+44133,75218
+44134,7899,12298,39457,863,5059
+44135,71083,56884,69498,24363,1344
+44136,8754,81288,16731,56483,16190,49390
+44137,80335,35702,7875,17438
+44138,40710,8174,68779
+44139,70038,10280,54850,34574
+44140,33301,41386,4307,38206,62625
+44141,51642
+44142,3690,29508,79998,56251
+44143,20749,25837
+44144,54571,34034,23231,36094,29474,60024
+44145,30456,19042,4640,19694,20250
+44146,16242,19505,46120,30756,76170
+44147,61255,10132
+44148,33997,75575
+44149,1581,2970,76051
+44150,26935,23125,68720,74647,35615
+44151,50256,23513,13555,69388,72308,55244,38062
+44152,22467,4338,28796
+44153,47274,29332,18156,44007,38022,24879,38742,74393
+44154,79028,23182,82094,11105,27756
+44155,79152,14045,5113
+44156,79742
+44157,67233,66709,18723,34669,36301,60639
+44158,37933,51258,27288,28501,10648,37718,57741,17773,7547
+44159,29744,16926
+44160,14871,12349,26568,49388,46601
+44161,73246,41383,21415,9427
+44162,51318,74225,80292,41305
+44163,19862
+44164,70215,1426,34566,69534,27127,23554,55739,31086
+44165,57076,78942,29126,45787,25788
+44166,67462,80306,34378
+44167,25132,69219
+44168,20057,35330
+44169,29246,12656
+44170,30045
+44171,62049,52952,75813
+44172,51773,72214,68220,18630
+44173,59070,9888,31717,37033,11104
+44174,15010,13084,28778
+44175,67337,27432,35128,77856
+44176,51076,22243
+44177,5977,65506
+44178,22889,71705
+44179,68812
+44180,47229,50102
+44181,36002,51576,39975,40246
+44182,32150,26580
+44183,33303,22009,18088
+44184,79427,3498,27450,58570
+44185,39095,54981
+44186,33944,30512,69072,59549,43797,71598,51800,35300
+44187,80346,21529,46222,60252
+44188,31831
+44189,36858,59724,2259,34009
+44190,11595
+44191,77938,42877,70991,77837,18981,719,35344,30318,42401
+44192,42202,70026,56777
+44193,15462,68070,81834
+44194,65959,69678,43000
+44195,48678,30348,65115,33944,17108
+44196,29909,56478
+44197,68394
+44198,14198,54951,79093,12868,18661,71762,78020,42507
+44199,71559,40552,28025
+44200,79103,46730,4478
+44201,58634,12115,43422,46500
+44202,12971,57192
+44203,58957,30998,28310,3612,37817,28714
+44204,46397,19503
+44205,55714,18890,28442,8143,13191
+44206,44835
+44207,17195,584,72599,70057,96
+44208,973,39590
+44209,20533,17821
+44210,51086,64143,50620,44475
+44211,46104,58153
+44212,70373,15569,7620,75320,36590
+44213,64028,49325
+44214,70441,42925,74344,63718,44061
+44215,74362,15725,77868
+44216,73634,75302,23416,79786,74379,68155
+44217,59793,29070
+44218,17770,21975
+44219,23732,29202
+44220,29397
+44221,27869,6727,3888,32012,51718,44148,49278,45588
+44222,46000,36494
+44223,68270,32958,77076,57691,12693,58437,26128
+44224,80539
+44225,50901,26091,72802,79004,50225
+44226,10307,1346,59575,5294
+44227,74523,20431,13579,81756,20233
+44228,68815,17977
+44229,5340,14094
+44230,67260,16468,16057,78975,66584,54730,78659,30256
+44231,16293,31498
+44232,9984,53504,18805
+44233,49877,44517
+44234,47387,78919,19295
+44235,629,76222,33929,31277,36,22517,69498,2456
+44236,37756,38842,66446,26293,48143
+44237,1263,5363,42256,26863,58892,36485,13139
+44238,78061,8069,62531,76834,74635,39911,75381
+44239,48246,29285,39392,68586
+44240,41565
+44241,19182,25783,22590,12807,31921,46677,41293,33540,28194
+44242,31947,1687,21702,13188,80576
+44243,73937,55634,78698,68373
+44244,11905
+44245,18119,23976,7414,12132,4345,80117,20534,10136,23924,71189
+44246,32878,21954,43279,30945,39285
+44247,9383,69262
+44248,16519,58089
+44249,78700,34238
+44250,4395,45774
+44251,9475,66497
+44252,60874
+44253,46647
+44254,53385,76603,2369,55913,47148,45340,78623
+44255,50883,78525,28619
+44256,34910
+44257,73797,18079,61513,19743
+44258,26330,30333,42120
+44259,14597,54721,17467
+44260,43044,20406,32701
+44261,2043,52039,31725,26094,56540,23241
+44262,48137,65930,44990
+44263,30428,61005,30726,43761,76212,58742
+44264,18086,401
+44265,4032
+44266,38218,18648
+44267,53456,58336,63340,64191
+44268,58841,58382
+44269,6175,28874,17570
+44270,38539,42865,70300
+44271,71171,654,80493
+44272,80201,77029,50587
+44273,6602,66298,71915,52631
+44274,27698,54167,6148
+44275,14661,53513,71148,61525,58826
+44276,58573
+44277,65305,10019,3631,55626,34575,18854
+44278,15322
+44279,28466,12658
+44280,72733,66411
+44281,81138,5618,39570
+44282,36446,12716,67903,14964,40619,76398
+44283,73550,43392,39887,33286,19486,80661,48416,21503
+44284,72484,48491,43433,13751,71010,614,77121
+44285,76019,11575,53003,60308
+44286,48788,62697
+44287,32142,8654
+44288,20594,33559
+44289,19577,68024,19252,60647,9655,60104,35640,13957,76929
+44290,16934,76640,3057,39983
+44291,23749
+44292,40040,50484,66082,45043,2843
+44293,42040
+44294,72198,36398,35415
+44295,51316,16122,68368,78092,12079
+44296,45910,63882,2370,19149,7387,48512,16839,81819
+44297,61223,75878,39575,3023,30389,31809,43129
+44298,80514,29891,46730,34075,35145,50026,843,12991
+44299,59538,46136,70575,18648,30449,56194,11540
+44300,62874
+44301,77354,27170,39732
+44302,76732,34416,81265
+44303,67473,74409,80004,68605,72152
+44304,66067,3424,33954,41395,57742,2235,80259,62469
+44305,72222,19249,67335
+44306,30163,556,37327
+44307,54680
+44308,3406,57418,78634,19068,68541
+44309,13112,67886
+44310,17417,3444
+44311,61128,68354,16941,18856,18387,54243,72747,56720
+44312,44725
+44313,17175,5050
+44314,165,18534,22944,29261
+44315,67601,42893,37332,48799,39052
+44316,71207
+44317,25370,61680
+44318,38504,78815,68635,57270
+44319,31428,65044
+44320,23566,81151,79566,37327
+44321,6637
+44322,74246,7386
+44323,19749,39508
+44324,49195
+44325,64409,67835,72109,32675,55595,28406,80502,44586,35978,75165
+44326,23202,58209,12525,51579,15728,51947,74704,68386,44456,51068
+44327,41786,42052,69194,2461,6181
+44328,7768,37262,649,81554,2168,36951
+44329,31952
+44330,20691
+44331,40314,32648,24423
+44332,56273,270,80799,78945,20086,50577
+44333,69221,54899
+44334,48752,13055,39575
+44335,45827,15902,72268,67461,47176
+44336,3009,52853,56085,74739,70521,30091
+44337,17190
+44338,62705,63683
+44339,58710,35320,9214,71626
+44340,49157,37658,23026,21017,52850
+44341,63761
+44342,65512,50439,60079,48562,28176,13303
+44343,34994,37838,77040,58385,29350
+44344,81452,66873,9477
+44345,76992,15684
+44346,32390,35819
+44347,51050,80545,30775
+44348,10119,55657,45649
+44349,47845,35973
+44350,43068,8068
+44351,25876,32479,77066,9767,82117
+44352,67729,17602,60423,55987,24279,11833,74261
+44353,44061
+44354,14936,51333,74224,52648,33415,71932
+44355,41880,16308,41741,57051
+44356,5946,67956,24376
+44357,31154,25654
+44358,37434
+44359,27005,3401,34665,40877,61562
+44360,20484,33080,51658,60459,62255,65838
+44361,33272
+44362,44555,46336
+44363,28292,44400
+44364,46406
+44365,68411,52374,36745
+44366,33628,51870,70537,29814,45875,73342,77530
+44367,68417,35960,77398,75611,71022,80679,26035,4968
+44368,69839,19278,15499
+44369,25213,77837
+44370,76450
+44371,57265,26687,71259,34762,4099
+44372,2900,62603,36485,71180,34646
+44373,73904
+44374,71467,753,55279,11207
+44375,35623
+44376,490
+44377,51898,68245
+44378,39999,65987,66705,80474,8389,24381
+44379,3293,10257,19279,42888,18680,65441,45900
+44380,80548,22260,78385,67402,34705,4886
+44381,50943,32832,27638,59511,71005
+44382,27383
+44383,69651,67382,21983,26200
+44384,66753,60481
+44385,47143,48059,75430,7400,42642,10508
+44386,24704,77235,26146,9753
+44387,73318
+44388,42747
+44389,63626,25770,4855
+44390,39733
+44391,33047,45401,2654,62384,7590,81069
+44392,843,56569,30543
+44393,53153,42738,34702,60718,12248
+44394,72347
+44395,54451,18215,44349,51552
+44396,14662,22688,35414
+44397,46820,54927,58215,28148,5916,37544,33701,58599
+44398,52214,68308,68883,3853,17640,19935,42888,49342
+44399,38955,27361
+44400,53598,63753,34315
+44401,28323,65458,28474
+44402,35103,32180
+44403,2564,34252,42330
+44404,19149,39397,977
+44405,22262,77190,36333
+44406,24989
+44407,67234,78551,64737,58764,78249
+44408,36985,10306,22165,60074,12649,79216,50990,52266,5319
+44409,78992
+44410,19783,6616
+44411,27087,16586,31199,80522,68125,78463,60202
+44412,57288,76799,4596
+44413,47246,70017,1412,38623,42384
+44414,866,2973
+44415,46107
+44416,20557,75877,79658,14029,22611
+44417,37547
+44418,28014
+44419,78056,67775,13783
+44420,26221
+44421,53887,77812,23334,61372
+44422,79594,49154,13605,82122,53692
+44423,58073,5634,36087
+44424,54185,23353,76046
+44425,81051,17520,34678,10919,38566,41686,64529
+44426,75291,62517,37432,4867,59120
+44427,81886,1098
+44428,29390,36029,536,67689,33021
+44429,67245,44549,12614,5473,59772,50808
+44430,17378,23427
+44431,17852,65657,60358,59714
+44432,71833,63360,30050,36924,676
+44433,51594,74310
+44434,37647,61791,54271,61729
+44435,42601,2635,16207,40629
+44436,5450,14351,46891,35714,59145,80340,46331
+44437,48336,785,71556,56692,2341,19208,7107,9288
+44438,38614,79383
+44439,40225,64424,67803,25536,57124,57495,21127
+44440,11567,49014,55723,27985,34734,50544,15926
+44441,29631,74521,4942,30339,42652,52751,78275,66711
+44442,60838,11843,11479,47557,28191,5942,49262,68603
+44443,78376,14434
+44444,62482
+44445,23714,55106,74610,67234
+44446,23610,61454
+44447,58473,80153,45234,76584,28261,29223,68966,23945
+44448,59168,34594,27131
+44449,76292,77310
+44450,26527,14317,8622
+44451,31850,6709,33743,42659
+44452,1995,12503,61115
+44453,12756,47726
+44454,3445,26505,71329
+44455,80280
+44456,63764
+44457,77256,6941,26089
+44458,75452,16085,74189,81779,24856
+44459,73290,23257
+44460,40495,53056,77411,48449,5863,10782,57363,35366
+44461,68493,45209,60957,558,68507,34867,75527,32984,41992,56405,26707
+44462,32269,24661,18904,52929,69442
+44463,65015,21304,52003
+44464,80175,49233,36069
+44465,67280,4303,31258
+44466,4702,39916
+44467,40864,55016
+44468,35084,2147,1546,13664,60031
+44469,38924,32629,8163,37467,11657,35606,43992,45730,17368,67389,38927,65912
+44470,9786,41079,13294,45283,3071,12460,6530,43054
+44471,49774,33975,45151
+44472,49210,81809,63362,58638,18336
+44473,62598
+44474,51248
+44475,57474,75655
+44476,13028,18504,1554,8284,48158
+44477,45566,19088
+44478,7939,2336,39786,75957,73286,35730
+44479,8064,61869,48526
+44480,12830,9999,23260,30966,16961,43462,40107,17077,53175,30444,6782,32405
+44481,20160,66184,67154,18620,61874,67419
+44482,19492
+44483,54980,39396,43869,19273,10092
+44484,56222,8802,26735,79608,59954,76053,69118
+44485,47160,81278,40461
+44486,19690,54965,54227,51716,14381,5764,54917,53913
+44487,32238,23874
+44488,73246,17533,19310,44170,1751,1253
+44489,61588,11442,19409,28406,18566
+44490,47028,722,16216,76442
+44491,59400,49428,45271
+44492,17744,21070,23566,37988,36368,3438
+44493,52207,72293,50189
+44494,10156,62280,56801
+44495,14970,9862,62161,15188,49318
+44496,24987,47303,11695
+44497,65729,15497,43625,66616,10730,43412
+44498,50115,14277,35094
+44499,29982
+44500,72942
+44501,72228
+44502,26200,4966,69689
+44503,11607,23662,15098,79810,1353
+44504,40859
+44505,66417,68670,8821
+44506,48495
+44507,36369,39681
+44508,897,47345,57640,30671,56612,37866
+44509,4885,7306
+44510,33922,51623,8862,521
+44511,29070,74098
+44512,73304,32463
+44513,27069
+44514,21367,43392
+44515,47828,70365,22499,78204,21273,37583
+44516,55504
+44517,42280,80884
+44518,32828
+44519,20588,31160,81631,28447,37517
+44520,51449,56340,54803,18322
+44521,38760,73472,44793,75478,11061,65429,64530
+44522,30904,8989,27372,72158,50140,27472,69200,60591
+44523,17569,25921,46690
+44524,14939
+44525,19614,61640
+44526,81497,59094
+44527,27855,21757
+44528,31753,58230,43927,1028,65192,16714
+44529,46891,14712,60049,79187,39984
+44530,41947
+44531,3118,21326,8108,36924
+44532,3222,72180
+44533,81763,34952,25357,41558,1209,21159,63387
+44534,78626,31780,150,76286
+44535,20963,50281,37053,27858
+44536,70070,79131
+44537,8378
+44538,41764
+44539,70459,62829,30659
+44540,73304
+44541,23168
+44542,64340,72945,52154
+44543,27422,52839,19932,81448
+44544,3120,47729,67092
+44545,37997,33367,67291,75109,3132,28214,33952,62875,21922
+44546,20546,55123,52797,70864,63096,67094,65432
+44547,61034
+44548,64455,33901,55304,44592,35377,17920
+44549,26380
+44550,45018,71963,77955,11112,37956,54431,32208,75471
+44551,47280,32627
+44552,8767,64603,64920
+44553,69906,81040,28125,18574
+44554,3565,81315,19386,53976
+44555,16587
+44556,38717,50500
+44557,21131,78661,50059,58893,77376
+44558,34097,69618,75925,33364,50319,81151,41931
+44559,13896
+44560,43396,57945,77248
+44561,30642
+44562,21636
+44563,61649,5953
+44564,46268,38,26256,79649
+44565,50823,74537,46017
+44566,42778,38367,31266,79012,39224,25455
+44567,48752
+44568,47536,28149,35238,47251
+44569,71403,64857,49269,36603
+44570,798,16062,35279
+44571,82152,17549,59449,1286,53917,59644,8179
+44572,19197,66848,56010,66988,45603,5963,41399,25360,57638,50907,68982
+44573,7588
+44574,41517,12917,24836,75745,3919,64355,61164
+44575,28319,13775,21108
+44576,35937,9857,56910,73457,74759,8630,28476,51760,29376,29614,79428
+44577,11318,59877,31359,20799
+44578,50192,55713,52172,58263
+44579,80488,67489,55798,30120,60675
+44580,31481,61037,68163,32503
+44581,64763,52242,64001,13683,6476,54279,51908
+44582,55679,13641,23701,7220,26084,7225
+44583,80079,51098,11803,30458,26537,15216,16762,28537,10272
+44584,51985,46658,62927,14290,55231,50003
+44585,39649,287,7134
+44586,64745,17719,58997,57976,64365,28690
+44587,1749,45914,77028
+44588,48562,18555
+44589,34988,74082,50092
+44590,36829,30420,41935,16006,76660,42576,81021
+44591,65769
+44592,48031
+44593,50724,33991,50032
+44594,76803,863,50525
+44595,68186,72039,30055,44775,64846,8637,48201,73992,48059
+44596,15354,10375,73573,4581
+44597,3654,7588,50090
+44598,54578,19715
+44599,13296,42583,21633,72622,49913,54724,78492
+44600,50059,8942,60246,29304,51205,10032,6435,21224
+44601,32756
+44602,29046,8645,21793,66802
+44603,35940,49798
+44604,24308,74414,64908
+44605,34552,41710
+44606,26131
+44607,71486,26138
+44608,28596,40477,30231,23958
+44609,6900,75417,22995,20650
+44610,34763,481,3035
+44611,69937,32904,49428
+44612,81473,77405,49278
+44613,79726,33925,44142
+44614,50213,46756
+44615,26686
+44616,29819,44786,72085,19925
+44617,73795,72403
+44618,60128,77866,76160,79880,5328,22066,2735,9255,57837
+44619,25709,25643,80497,64904
+44620,3927,51067
+44621,22156,23777,71656
+44622,5754,16438
+44623,27626,20203,58324
+44624,27197,75627,79766
+44625,19026,58091
+44626,79028,22895,46148,49473
+44627,19440
+44628,73451,43660
+44629,75271,50962,801,61325
+44630,47522
+44631,52613,15
+44632,48712
+44633,66841,3104,71408,36175,65109
+44634,70794,4216,27614,54202,32320,50069,40659,56160,10681,56019
+44635,52654,55717,45020,22151
+44636,53459,47969,14145,35373,23186,82144
+44637,28140
+44638,64756,33189,42052,76440,57620,50123
+44639,71755,21857,37256,80610,7664
+44640,6483,21602
+44641,38771
+44642,52095,72313
+44643,25824
+44644,25141,6558
+44645,34525,65524,19550
+44646,15263,72808,22071
+44647,11643
+44648,63809,60416
+44649,41963,29499,18807,71204,74298,50415,2440,36225
+44650,45017,6896,30990
+44651,77988,77199
+44652,13091,80899,36467
+44653,49075
+44654,73166,65092,59225
+44655,59940,16639
+44656,31201
+44657,40588,11757,2908
+44658,35312,41437,48819
+44659,79412,50496,49160,43027
+44660,75302,20172,19338
+44661,54533
+44662,20305,47189,39413,18499,9663,81547
+44663,38548,71087,48018,80105,44778,58334,13660,29413
+44664,37586,70257
+44665,27990,45264,39845
+44666,52850
+44667,53561,12102
+44668,67335,64260,9952,78033,81052,19848,53974,27299
+44669,80400,46852
+44670,56279,47882
+44671,28919,26300
+44672,25057,38175,14714,9743
+44673,99
+44674,6686,35576
+44675,60608,25375,76563,66689,72814,41718
+44676,56337,53498
+44677,3463,42506,11910,12453,50967,64273,54431
+44678,19937,34115,2763
+44679,81680,30617,1976,75862
+44680,18026,37092,46859,61886,39114
+44681,25210,77445
+44682,74655,71604,36130,72188,29449,18325
+44683,41377,43941,9360
+44684,54723,11002,79428,23417
+44685,80335
+44686,15384,21436,20855,26618
+44687,10139
+44688,24138,50798
+44689,54862,22724,75205,46390
+44690,78068,30367,30100
+44691,58197,41714,77066
+44692,67454,77581,34346,73839,78393
+44693,66811
+44694,38109,38738,47265,2908
+44695,56804,76679,59640,57714,52166,19473,51745,58013,18157,1760
+44696,72698,35840,72558,44852,54996
+44697,74853,624,11792,35628,47206,77403
+44698,63716
+44699,49143
+44700,33828,64562,36886
+44701,21324
+44702,48974,71156,73080
+44703,62771
+44704,849,70422,1673,10855
+44705,595,80699
+44706,42468
+44707,37787
+44708,63032,20722,51219,51304,20497,27291,26175,56020
+44709,1802,24873,56266,32326,77414,23928,1780
+44710,32101,6830,73710
+44711,79012,31255,1596
+44712,11086
+44713,26099,11703
+44714,80301
+44715,78183,31696,44016
+44716,37866,69454,11912
+44717,10474,45384,9650,19038,27394,76417
+44718,73904
+44719,36869,36550,3350,25366,24007,35390,1344,36822,67467
+44720,45599,10449,1488,70291,50747
+44721,60720,67701,3651
+44722,60069
+44723,75615,79598,21531,23897,76223,17448,23424,74248
+44724,11545,41353,5269
+44725,54514,76941
+44726,64653
+44727,25251,49128,76877,45932,15836,49028,10387
+44728,12441,33182,12124
+44729,78795,43834
+44730,60058,58912,15264,19363,62384
+44731,81380,53425,49797
+44732,1296,74357
+44733,32461,18279,43063,27890,65083,65697
+44734,46436,46206
+44735,6288,3434,74284,35214,785
+44736,30403,57157
+44737,68614,21874
+44738,66739,3866,80812,24767
+44739,12657,26030,7209,62258,71692,54734
+44740,64107
+44741,73805,80081,30274,77157
+44742,8262,30351,68474,550
+44743,6246
+44744,25448,28156
+44745,5896,23563,37374
+44746,76963,73269
+44747,41660,19873,31068,58097
+44748,52631,49692
+44749,51461,58747,18533,39463,4719
+44750,32488,58817,26013
+44751,60093,76296,57085,17611,6827,3912
+44752,41573,40965,50059,26980,60959
+44753,41642,20062,909
+44754,61334,65862
+44755,26966
+44756,35325
+44757,25630
+44758,73921,75491,49210,38847,7828
+44759,48625
+44760,36278,68008,49955,49153,56641,74092,24361
+44761,8175,50836,52922
+44762,77139,44343,33052,10434
+44763,48348,52357
+44764,19794,63061,40773,65621,38690,77535,1376
+44765,41613,80954,77224,65286,67648,46879
+44766,75383
+44767,50665,57537,44328,76632,29438,23351,44249
+44768,25612,64724,71211,26908
+44769,1694
+44770,35391,5880,42934,46496,27997
+44771,39666,73509,34093,52222,17571,17844,52643,61255,10306,70457
+44772,67787,65172,64101
+44773,14453
+44774,14856,46048,12084,48921,77229,12934
+44775,20650,33028,13654
+44776,25329
+44777,60801,61459
+44778,62328,6806,59352,6878
+44779,51197,75732,48044,5112
+44780,26210,77289,9724,40002
+44781,18538,5533,50155,34132,21563
+44782,25413,7234,40097,61159,57667,57595
+44783,50962,32636,75296,28265,53275,2936
+44784,17137,78862,44890,16737,69159,30646,56053
+44785,30416,67811,29384,43485
+44786,40498,50483,17163,38129
+44787,54802
+44788,49462,15379,59704
+44789,44403,49178,80243,80702,18503
+44790,12124
+44791,26720,76187
+44792,44673,53711
+44793,17503,51367,16724
+44794,79145,12998
+44795,35911
+44796,38974,39564,41426
+44797,22726,40240,43066
+44798,58801,74643,42330
+44799,59502,79588,12200,18256,61863,71201
+44800,5111,78652,60961
+44801,59632,56091,38457
+44802,12528,41550,75438,16819
+44803,66384,56508,16560
+44804,9424
+44805,73601,81040,45172,20200
+44806,69695
+44807,61068,21647
+44808,43938,43466,32385,77871
+44809,22847,60765
+44810,20474
+44811,2880,78577,1453,8598
+44812,59332,6417,50831,64164,68631
+44813,11327
+44814,66163,29266,75746,56391
+44815,68395,6651,65949
+44816,868
+44817,14202,38377,16364
+44818,80777
+44819,3914,18132,64655,47075,46753
+44820,72073,64276
+44821,56145,22777,27452,14907,12082,24531,68838
+44822,12939,1596,45964,1933
+44823,64207,79821,27230
+44824,41481,19176,22133
+44825,19691,54912,81154,3269
+44826,74538,48159
+44827,70509,69283,68659,62725,73894,28594
+44828,47813
+44829,74283,3132,55295,10139
+44830,40928,41839
+44831,27398,13915,55391,51894,80476,9704,54094,574,19854
+44832,70639,33327
+44833,11480
+44834,10311,22062,46114,75147,1180,44349
+44835,13142
+44836,8746,66330,41726,28838,3215,60306,26128,62948,26585,27311
+44837,1310
+44838,67403,65470
+44839,78815,38887,594
+44840,33040,27083,38281,26816,69428,38181,80756,33188
+44841,52836,81783,924,6193,72136
+44842,46768,30135,50224,63340
+44843,34895,57347,2670,42985,67438,81199
+44844,45380
+44845,13888,44786,66362
+44846,14219,68656,43671
+44847,25282,74773,28031
+44848,44076,6023
+44849,24326,40123,2381,1112,80370,21475
+44850,55688,20327,30565
+44851,60736,48027,17814,40481,8973
+44852,66718,55331
+44853,47342,69753,13317,2527,38215,44830,10999
+44854,59569,51354,3653,55978,37021
+44855,62869,27051
+44856,18396
+44857,10862,60579,45138
+44858,10655,32903
+44859,72823
+44860,25942,55324,67964,1732
+44861,74277,9811
+44862,62805,78497,63626,74663,13604
+44863,60500,31001
+44864,62153,42655,55654,17527,66364,33956
+44865,22316,59465
+44866,44884
+44867,30520,33230
+44868,37604
+44869,46168,21446,78247,8979,54087,10395
+44870,38817,77194,72991
+44871,70565,61363,18067,6342,62940
+44872,71521,24275
+44873,77982,11655,37083,21220,43929
+44874,64741,2818,42910,12590,52568,27952
+44875,29973,22665,15044
+44876,40428,55377,65716,12276,11595,3775,12111
+44877,12424,2336,16879,63832
+44878,16198
+44879,17623,25828
+44880,30644,51336
+44881,28952,66671,25264,17139,17278,45479,53428
+44882,53364,60788
+44883,54073,29280,32044,23382,13411,44073,68824
+44884,51215
+44885,72066,17130
+44886,81538,69738
+44887,60296,65962
+44888,28017,7668,24779,66657,23482,59125
+44889,53974,64129,74224,73470,16395,62618,61354,31847,30215,52522
+44890,30389,9634,44363
+44891,26830,8990,61873
+44892,53785,79119,56728
+44893,19640,81873,50798,71425,15183,6057
+44894,81768,78591,53260,5264,63593,30757
+44895,15619,68069,37811
+44896,13726,63921
+44897,6841,53171,13626,22548
+44898,72991,5370,43815,64410,43199,34593,50486,1150
+44899,17604,60491,45542
+44900,5878,41319,67015
+44901,35094,21148,22293
+44902,25055,51484,29054,17734
+44903,54086
+44904,14935,31329,4394
+44905,77616
+44906,28334,23665
+44907,79657,8594,10791,46321
+44908,45634,66419,5811
+44909,64868,4531,77806
+44910,38762,2462
+44911,4924,37112,59440,48344,66208,72821
+44912,24705,9421,12928,55608,44247,34252,73053
+44913,64646,47401,64842,16370,48433,7112
+44914,6772,44151,60139,31861
+44915,29664,36918,54230
+44916,32717,12083,29345,18688,34816,60621
+44917,61510,46718
+44918,7685,57992,34137,68654,42183
+44919,55722,28734,37864,53063,10152,2048
+44920,46004,35197,13671
+44921,17956
+44922,29247,15785,48253,15839,3960,80624
+44923,80137,5256,36307
+44924,22932,28163
+44925,21736,66343
+44926,74871,28675,46397
+44927,43234,68136,3276,68601,24372,67353,76924,46451,55786
+44928,48894,58336,35030
+44929,43551,46277
+44930,18378,13794,69517,65922
+44931,76809
+44932,79472,76593,43640,684,23518
+44933,78682,60504,3261,2719,33740,54888
+44934,69562,43477,65694
+44935,79404,13785,76017
+44936,28834,44783,21240,51681
+44937,57043,72960,82051,22897,71896
+44938,63326,1648,44190,37423,70770
+44939,57712,75780,68930
+44940,14145
+44941,57227
+44942,15164,64185,66910,80580,939,35074,29191,43466,65816
+44943,3488,67886,36017,46823,47749,52412,7295
+44944,43525,19285,22835,29799,74460
+44945,40338,51528,79840,66547,51418
+44946,26978,60862,53320,71809,43598,39942,42168
+44947,63075,78058,67705,46957
+44948,61930,58039,48561,48020,46458,16828,24201
+44949,63239,30147,58793,63729,74553,65032
+44950,9268,71740,4395,42291,29280,49533
+44951,74495,77066,13530,3094,46292
+44952,9173,57908
+44953,3059,65644,54193,52775
+44954,75063,26228
+44955,34501,81069,9371,47625
+44956,64132,11254,24724
+44957,23659,2444,67451,59849,65282
+44958,45035,6782,31612
+44959,10862,57125,49228,58729
+44960,42601
+44961,65003,53701
+44962,53937,2929,66524
+44963,65002,24629,4226,21801,6466,25056,58085,671
+44964,72613,38830,73387,10651,1999,37881
+44965,405,17772,60982,17401,30648,76633,80881,59527,10352,18168,41484,70920,61309,11529
+44966,54097,37805,80677
+44967,72829,77782,7844,9373,70819
+44968,55859,47293,27510
+44969,37602,23330
+44970,38728,62566,18195,47171,30722,15368,81989
+44971,66777,34964,70561
+44972,40948
+44973,52795
+44974,17056,7063,4921,77619,76828
+44975,49017
+44976,23501,79952,6592,17967
+44977,53755,32142,28289,60705,13758,65403,27565,74780,74331
+44978,80178,70402,15066,2669,36716,3151,45424,81030,62591
+44979,76343,49207,12030
+44980,48988,28893,20785,46174,53701,39993,63194,76654
+44981,26101,10416,50178
+44982,16998,52817,65771,3622,2539
+44983,1444
+44984,50919,3814
+44985,44552,33552,68575,50115,28068,26294
+44986,43073,37081,5097,35447,17745,44697
+44987,37131,68863,34404
+44988,25390,20811,68657,63062,59334,7710
+44989,61868,2704,19301,4678,67567,34848,43836
+44990,68628,38801
+44991,11582,50150,61136
+44992,33259,44639,76708,2564,53520
+44993,3651
+44994,24603,18060,46011
+44995,55380
+44996,5597,64319,67479,43832
+44997,47642
+44998,31653,18870,6979,15239,63982,22551,81390
+44999,17413,26941,61330
+45000,41248,33944,57422
+45001,32086,59701,44289,48461,30067,28937,37037
+45002,65158,20599
+45003,18914,4757,57742
+45004,6305,54866
+45005,67977
+45006,35432
+45007,37220
+45008,51098,74538,21342
+45009,79269,74304,67670
+45010,54316
+45011,22834,9803,43166,50277,9979
+45012,12556
+45013,19963,37318,60354,7165
+45014,9632,46038
+45015,69785,75448,27565,76476,59777,28530,62326,38904,46242
+45016,77657,21891,53655
+45017,67562,77919
+45018,50929,67451,20227
+45019,34001,65492,62336,25311,63216,61792
+45020,51253,28315
+45021,23724,38381
+45022,79659,61081
+45023,76827,23311,17425,30744
+45024,11670
+45025,59350,22851,56404,64106
+45026,3593,73612
+45027,67755,69070
+45028,49772,38508
+45029,24504,45307,44439
+45030,73210,43875,14430
+45031,35976
+45032,50884,35064,22049,47474
+45033,3718,72848,19423
+45034,61943
+45035,27130,77963,14897
+45036,25220,74663,67803,39382,25666,13596,24964,27085
+45037,6751
+45038,46744,60682,23180,48401,52466,11016
+45039,70081,59128,7925
+45040,77903,30965,39145,66958,44957,13968,22556
+45041,11486,26109,79842,71678,10881,29954
+45042,43504,44917,2162
+45043,14930,67921,6901,437,46564,43493
+45044,33696,7440,45196,14243,31504,12716,35202,56397
+45045,42536,76332,31595,23106,19809,75954,25589,51212
+45046,35495
+45047,72498,27040,52266
+45048,32097,39317,18733
+45049,78076,57636
+45050,34656,45500,74665
+45051,21633,21468,50893,42041,25396
+45052,29677,51791,44801
+45053,5681,34180,62239,43038,26643
+45054,78905,50355,14904,8344,60052,77475,18790,9153,67204
+45055,67586
+45056,53122,68566,79742,49774,52866
+45057,52422,17187,22548,19875,8742
+45058,59031
+45059,66480,70797,46690
+45060,64150,43075,56063,16550,29417,15306,10033
+45061,25449,46879,60295,58599
+45062,65793,45066,7478
+45063,74842,31824,77370,72691,31929
+45064,20752,66491,8404,56627
+45065,63415,23834,45855,11386,53974
+45066,32236,43341
+45067,9311,67317,27654,6666,68894,57874
+45068,39807
+45069,33638,68257
+45070,5987,13794
+45071,52209,41370,48991,31845,31339
+45072,34258
+45073,77814,6683,52013,75029,75536
+45074,73553
+45075,1412,704,47579,29151,4401,77845,48606
+45076,64884
+45077,70178,68596,28742,50151
+45078,8575,48530,9076,41663,4111,20530,52025
+45079,42004
+45080,29498,50916
+45081,20361
+45082,10314,76379,17101
+45083,54373
+45084,28313,75169,56755,36274,55419,68927
+45085,11772,24286,27587
+45086,10597
+45087,32599,73893,78294
+45088,18784,78013,73363,41157,72167,13032
+45089,33893
+45090,72559,2367
+45091,78908,8315,81268,71891,82016
+45092,60621,62351,47719
+45093,14313,61285,19415
+45094,75813,65182,7150
+45095,8488
+45096,47523
+45097,8086,48619,26794,61418
+45098,64719,79328
+45099,44713,56333,18556,45954,48363
+45100,18920
+45101,59985,70010
+45102,31941,80458,12778,75306
+45103,5425,29240,67499,59168
+45104,53117,9632,79504,46977
+45105,45634,30348
+45106,35749,47158,5354,59267,50363,62409,71936
+45107,42897,50908,37776,72722
+45108,27946
+45109,35312,63925,62463,40732,68815,29927
+45110,61813,64310,72794,36188,10955
+45111,56780,27504
+45112,14694,37987,25342,61951
+45113,58593,63037,38955
+45114,8281,71104
+45115,52662,55637,20041,36832,15225
+45116,21160,35069,63769,32044,9384,29220,14283,64111,27366,63295,46236,65052
+45117,58453,79632,23434
+45118,67277,13606,40711,14658
+45119,11839,10834,57631,18330
+45120,39530,67140,31943,39618,33803
+45121,20481,60285,56564,16278
+45122,46745,77290,48214
+45123,29781,60114
+45124,20339,46148,76248,59290
+45125,5781
+45126,73347,11230,46027,41046,75247,35059,25834
+45127,22458,30755
+45128,12365,33997,33022,36120
+45129,57202,35003,1921,17040,79766,28064,73895
+45130,34659,75551,22865,73631
+45131,21143
+45132,74998,17060,10173,22898
+45133,46480,31366,57243
+45134,37887,81080,4384,46465,59162,52181,61098,7453,14269,60333
+45135,49667,31160,64164,32730
+45136,12834,75016,49455,75674,55211,17241
+45137,42982,7081,25457,44078,7346,44865
+45138,26311,30895,49583,47951,4388
+45139,24662,15247,80970,29376,74176
+45140,22164,23741,66595,37989,59900
+45141,72082,59164
+45142,16351,23775,19296,40590
+45143,65939,53626,5638,49509,14958,52015
+45144,38771,54867,25846,25027,8420,55197
+45145,172,78442,41807
+45146,32449
+45147,33079,22573
+45148,33320,64455,79471,60481,72900
+45149,59370,63596,38661
+45150,9356,25276,64710
+45151,51394,61113,13675
+45152,47891,4746
+45153,67351
+45154,51165,24640,39283,10623,73503,22488,49398
+45155,79442,72159,44878
+45156,25352,521,53623,68760,44664
+45157,42300,40799,73539,19687,26444
+45158,41795,8544,9067,24549,71268
+45159,33939,66531,51467,12246,60604,14697,14355
+45160,40170,41438,78541
+45161,38509,68515,5496
+45162,18483,80777
+45163,2160,55648
+45164,53149,66077,23766,46727
+45165,1244,69730
+45166,34477,54500
+45167,40515,25292,9618
+45168,19504
+45169,32924
+45170,39238,53661,46345,29221,56396,68087,25588,29928,58617
+45171,29894,33893,50567
+45172,25664,17901,26661,65616,71723
+45173,30991,67336
+45174,46700,80943
+45175,26365,11165,16731,33153
+45176,45215,35222,64086
+45177,9607,65869,179,70156,14485,77791,16709
+45178,19491,14553,74923
+45179,43581
+45180,11369,42319,24097,28603
+45181,7905
+45182,45896,77039,41641,30027,16602,39480
+45183,73175,32359,44347,38579,12755
+45184,75598,52939,67632,21152
+45185,41681,23995
+45186,20897
+45187,74041,27263,56240,70295
+45188,63644,32778,42619,63515
+45189,47926,13062,35180,23390
+45190,64156,80763,53997,40212,17687
+45191,33903,37943,60597
+45192,43332
+45193,17181
+45194,33806,19190,69654,25980
+45195,4161,41495,40484,49585
+45196,57792,4180,15649
+45197,10559,27314
+45198,27593,47360,49609,40506,52211
+45199,38447,41762,22293,61712
+45200,63313,16389,7828,4782,66104,63240,16953,62212
+45201,4165,66244
+45202,69301,18332,31847,63896
+45203,79713,18018,49177
+45204,26256,64287,44567,61804
+45205,12251,38751,49763
+45206,73598,61607,52303,68592,18286,59256,63229,34052,30899,20330
+45207,47939,63941
+45208,13212,8407,81310
+45209,13029,29024
+45210,75577,43891,55234,25490,376
+45211,30310,34853,36965,431
+45212,29241,15561,34329,47788,11571,12967
+45213,62704,3225,61042
+45214,30901,9451
+45215,22595,49492,47626
+45216,78477,23605,33827,72349,2296,72097,32806
+45217,44757,42253,27767,10237,50737,60358
+45218,2261,80631,34656,27538,51245
+45219,72467,42413,78417
+45220,81168,38968
+45221,81376,67098,32021
+45222,15378,61427,68160,76653,25456
+45223,22083,49270,74653,50470,62095
+45224,79255,6149
+45225,59377
+45226,25678,22108
+45227,27308,27511,46995,28685
+45228,51139,15391,49785
+45229,73682
+45230,66564,46580,31315,28873,35009
+45231,44230,10962,55291,61965,1249,6360,48197
+45232,82180,34093,11991,6910,15394,30095,56316
+45233,47748,2001,23529,19133,50895,2533,61140,64669,54979
+45234,7623,23497
+45235,60205,41318,44418,60791
+45236,61928
+45237,61889,36938,63366,8560
+45238,20804
+45239,68767,41456,6500,17343,35790
+45240,31334,57761,34942,80805,28546,30467,72203
+45241,71630,1163
+45242,48112,76917,56979
+45243,59186,30224,79618
+45244,67799,15784,25736,50781,81184
+45245,3856,28527,67452,24135,29913
+45246,50637,70128,16078,26174,37330,22380,5611
+45247,39063,41475
+45248,32437,59434
+45249,50088,69367,51773
+45250,77792
+45251,24890,28390,55778
+45252,50264,7595,30496,65497,46421,73890
+45253,54405,6414,52847,61498,75940
+45254,23270,25439,73580
+45255,7871,54738,80277,41608
+45256,63191,46213,45616,59211
+45257,22035
+45258,48625,53205,38607,5788
+45259,56124,31612
+45260,38870,4454
+45261,8468,42442,27721
+45262,72875,38248,22862,14729
+45263,27664
+45264,8804,81229,49683,22763,31954,61765,41978
+45265,7913,22710,70098,52421,26041
+45266,51267,16102,19298
+45267,63789,55277,36591
+45268,20244,27501
+45269,23022,17291,55335,15762,40927,38268,35007
+45270,45768,66746,4902,79381,65084
+45271,51478
+45272,79965,40883,22703,25017,75235,12678,17297
+45273,49768
+45274,44026
+45275,27468,9712,12765,13879,66116,53354
+45276,21857,44307,52255,64070
+45277,6105,37789,40812
+45278,40464
+45279,42267,75852,11870,35462
+45280,51219,16564,57513,34398,16710
+45281,62922
+45282,40844,35516
+45283,30221,1596
+45284,69580,18280,430,57947
+45285,47388,31410,15170
+45286,42916,22049,7771,10860
+45287,4187,61529,70218,6587,17912,23711,76626
+45288,11029,59436,12765,22350
+45289,31274,49695,20008,38112,82030,77909
+45290,78912,74434,29776
+45291,26139,37350
+45292,52800,55390,68049,45618,18806
+45293,5636,48399
+45294,38386,52255,74717,80018
+45295,8573,43050,20219,78120,14292,12238,58744
+45296,63804,77708,66246
+45297,44095
+45298,78434,31828,60999,54544,40674,75538,77249
+45299,51089,60116,74932,10147,43197
+45300,72486,29620,65737,36497,2706
+45301,80178,49323
+45302,52877,29854,77586
+45303,7288
+45304,81054,23204,69491
+45305,77269,45897,16882,28522,47363,72138,24626,66251,75428,32603,58281,56650
+45306,18949,17876,30955,42272,1646
+45307,32968,48247,36444,65591
+45308,22629,10123
+45309,3715
+45310,63296
+45311,5124
+45312,13774,70242
+45313,24659,77065
+45314,59975,13701,80024
+45315,33362,31855,9862,61136,38248,58985,48787
+45316,29128,80203,24815,15075
+45317,81932
+45318,56313,65724,65064,8821
+45319,10673,2083,73716,80144,43859,10018,27644,5740
+45320,23122,39945,69391
+45321,5659,41452,59459,32097,25706,66991
+45322,61543,18020
+45323,74419,40831,54881,76097,32603
+45324,79314,73768,37579
+45325,48261,8238,80547,18349,22154,76316,13957,1139,39725
+45326,59560
+45327,61928,78451,6989,39282,45668
+45328,34783
+45329,19593,42830
+45330,44623,18248
+45331,4261,79126,23126,54187,70245,39356,60313
+45332,47304,78788,26822,15240,61248,13229,6570,48442
+45333,3844,24663,3894,65617,73773,41155
+45334,22128
+45335,50231,13862,67738,62049
+45336,43890,19441,37696,33838,30349,9154
+45337,77087,73720,15500,51060,15328,57515
+45338,47146,58186,19058
+45339,1657,80844,79877,61642
+45340,61128,55952,2128
+45341,40533
+45342,22935,61250,1000,32013,73044,36444
+45343,58264,12616
+45344,37893,72231,42431
+45345,54392,19444,78684,19257,49020,66266
+45346,48326,59583,52829
+45347,42465,32870,81037,7035,63717,13404
+45348,16586,27879
+45349,49519,80190,29149
+45350,26658,41298,50871,13290
+45351,26769
+45352,41788,43354,9738
+45353,23470,44672,51267,38671
+45354,73411
+45355,74353,43883,721
+45356,81736
+45357,75306,10284,15444,11530,8202,1373
+45358,54593,68623,54383,72043
+45359,70330
+45360,26789
+45361,17602,55283,15130
+45362,31306
+45363,71640,65639,54792,4000,52020,24742
+45364,69180
+45365,69745,75773,77478,57253,55768,8618
+45366,56187,21287,2499,35005,36292,68739
+45367,68947,77460,76570,64694,30796,48877
+45368,41729,51267,78544
+45369,77703
+45370,3608,25115,23139,45974,16513,10342
+45371,38867,31663,3961
+45372,38208,51833,66802,61716,54099
+45373,16590,39172,41150,76515,9366,43145,12070,80271
+45374,76298,51986,60836
+45375,6686,54763
+45376,54913,63962
+45377,67005,10718,64120,17494,67358,23304,21433
+45378,25242,25782,17460,70911
+45379,74357
+45380,53494,55878
+45381,38955,61518,40983,42454,46173,56845,72241
+45382,73531,35493,41573
+45383,79692,55865,73370,79517
+45384,61850
+45385,6487,14256,78602,53115
+45386,60561,70030
+45387,60682,80706,51687,71246,8611,67957
+45388,6990
+45389,80946,75001,44823,68070,76485
+45390,32416
+45391,47593,65364
+45392,41796,57640
+45393,77988,27743,12725,14383,62015,23036,56310,69133,67528,79995,10840
+45394,33055,63812
+45395,43299,4218,47166,7907
+45396,71864,6229,8506
+45397,26323
+45398,36330,75310,77424
+45399,23031,42032,81737
+45400,61308
+45401,34535,2908
+45402,6457,77142,30932
+45403,23863,14388,20765,34238,8267,59026
+45404,17800,12379,72212,63718,43899,52239,78517
+45405,3208
+45406,75655
+45407,70356,32149
+45408,45102,48770,30320,1852,62725,31253,33568,25619
+45409,14107,35017,54214,80627
+45410,53315,37282
+45411,10626,15200
+45412,1664,56238
+45413,38092,25197,53519
+45414,14482,49116,1182,21236
+45415,53503,21015,42584,31201,23515,14596,10550,44311,72037,38816,77705,71008,39482
+45416,27571,47149
+45417,64590,63340
+45418,64565,15776,65176
+45419,41046,25832,14876
+45420,25761,53010
+45421,32340,78661,69491
+45422,68433,43304,36083
+45423,60161,41676,52657,48746,52229,44491,63679
+45424,21675
+45425,48042
+45426,63927,50807,12577,24473
+45427,81504,14860,42052,32790,11406,12430,72723
+45428,50999,3109,77425,59633
+45429,3525,73396,33521,15652,66422,81094,57467,49762,76242,11032
+45430,52777,15363
+45431,77165
+45432,11127,2979,58993,77500,9444,47409
+45433,78156,2967
+45434,71451,23589,33384
+45435,42601,64892,19121,43677
+45436,6884
+45437,69441,74582
+45438,8699,45116,72088,20518
+45439,26731
+45440,67201,46516,24064,59697,10794,67332
+45441,77468,64693,76246
+45442,4765,13683,16280,74567,67626
+45443,12811,71086,33685
+45444,46150,75526,79657,43123,75841
+45445,22212,59526
+45446,30399,39219,16969
+45447,80685
+45448,45651
+45449,37423,49270,29738,22756,41193,68161,78937,45619,8211,54848
+45450,72403,75200
+45451,74985
+45452,64427
+45453,53698,62301,19588,62658,60596
+45454,51212
+45455,51217,9036,74410,39154,32463
+45456,63040,11592
+45457,15547,34511,80429,1067
+45458,14729,44078,9798
+45459,74652,46852,11500,54199,63187,49097,28235
+45460,47366,9373,13636,59648,2131,2546,143
+45461,3706,17759,43309,15636,11022,34426,79850,63821,8000
+45462,46931,20733
+45463,6291
+45464,40179,32206,9933,29370,55555,41118
+45465,42840,53279,1208
+45466,52878,39471,28336,13974,40534,40297,51939
+45467,40751,56289
+45468,50301
+45469,71227,69127,50492,75226
+45470,39569
+45471,38814,25696
+45472,16259,32617,75473,27183
+45473,9172,52211,49154,78691
+45474,5307
+45475,53429,13391,21486,5849,77579,59925,38844,80843,17097,64788
+45476,63219,55890,23957,50609,11971,64296,13120
+45477,51338
+45478,53445,47155
+45479,56426
+45480,39781,35475,58293,51748,9606,67177
+45481,1453,51763,41098,50043,1242,68533,55113
+45482,50167
+45483,8751
+45484,70706,39187,59505,70778,72323,30365,34923
+45485,18841,56747,42575
+45486,22243
+45487,54367,488,5314,75724,42536
+45488,25428
+45489,7478,55231,18235
+45490,72402,41581
+45491,68220
+45492,28178
+45493,49552,52110,46957
+45494,61115,28383,45712,40519
+45495,53702
+45496,40393
+45497,8488,69521,39446,42103,20019,49840
+45498,42725
+45499,31526,62,62369,25295,33678,52167,7679,70736
+45500,75178,54313,12381,25792
+45501,68537,65099,41018,25910,18264
+45502,9427,67833,62516,28093,18065,62787,71978
+45503,47583,65786
+45504,25452,22478
+45505,60694
+45506,22691,7147,28302,81858,15465
+45507,62975,36056,5111,13580,54740,72936,32785,28535,80599
+45508,20527,41243,36871,70146,60432,76816,39221,43263
+45509,45229,3106,36330,31064
+45510,16185,63631,67480,58054,25902,39462,2628
+45511,19572,33726,45447,7243,20079,68134
+45512,17466,13541,29872
+45513,45973,70974,76278
+45514,44456,30628
+45515,18667
+45516,62359,14565,53111,3936
+45517,17681,44824,70053
+45518,1041
+45519,72021,67256,65921,7088
+45520,42012
+45521,14367,23272
+45522,39058,59158,5343,73219,61288
+45523,77134,6561
+45524,19199,2735,44578,47788,41060,9554,56934
+45525,1317,58137,29978,18814
+45526,36665
+45527,53721,61402,42622,2819,59955
+45528,24397
+45529,44592
+45530,52250,15337,5623,53420
+45531,75991,28077,22612,11396,29419,17708
+45532,41229,2401,537,48106,33943
+45533,32709,75872,78276,11199
+45534,1963,3515,10038,15029,30638
+45535,13882,43105
+45536,30520
+45537,1114
+45538,26667,64397,43626,27139
+45539,25182
+45540,50916,21263,76539,49509
+45541,10545,51514
+45542,18483
+45543,378,71064
+45544,32200,52055,67886,2799
+45545,52990,17396,9238,22970
+45546,30306,77106,62583,50553,63884,47829,67784,46046,42625
+45547,74150,3120,49052
+45548,78923,73143,30377,13647
+45549,74968,9610,68538
+45550,35202,53906,36228
+45551,48499,59277,55061
+45552,25623
+45553,73602
+45554,35112,27273
+45555,36343,78493,30103,38771,9431,3041
+45556,29599,5036,25499
+45557,72893,16248
+45558,38733,42234,58837,10472,73666,67603,62055
+45559,34600,66865,59081,28828,3622
+45560,34976,14044,23489,74285,28852,18069,74070
+45561,53495,17853,56001,67773,33767,11022,41196
+45562,15644,37794
+45563,78509,10918,75165,81993,26585,25615,25666
+45564,16406,9819
+45565,6018,9885,58303,62880,7535,59415,6866,43648,57881
+45566,722
+45567,65408,11266,46780,43694,66315,34480
+45568,66533,56326,6747,56487
+45569,53601,9978,65258,8541,73296,66895
+45570,3481,8645
+45571,29777,81839,23018,56084,71953,60780,33428
+45572,66959,17905,8489
+45573,43435,60932
+45574,34636,35516
+45575,45178,52485,66149,17294,18461,9775
+45576,12456,13701,66776,1994,81352
+45577,61075
+45578,67625,55634
+45579,46126,32402,40506,45443,21218
+45580,42064,44910,33662,36769
+45581,59411
+45582,61052,56355,59513,34756,7551
+45583,11674,35885,14615,75786,35390
+45584,64881,6046,19987,48528,61015,39489,28555,41852
+45585,11024,71691,7158,38235,50918,48554
+45586,4066
+45587,42280,69498
+45588,41033,33336,65634
+45589,38882,61794,49483,71571
+45590,22752,26657
+45591,76680,54673,79025
+45592,41524,39404,5404,62941
+45593,20505
+45594,47657,1801
+45595,27014,64012,1657,72632
+45596,55458,33618,65933,32395,65723
+45597,26712,55878,10234,39261
+45598,9955,36765
+45599,42676,63533,39916,67581,60867,37118
+45600,63801,52792,6720,27280,11129
+45601,56321,1227,80214
+45602,18277,78547,17342,19871
+45603,11285,38769,18044,3389,15705,81637,1119
+45604,6931,19702,31530,30984,60476
+45605,68351,64410,57750,35143
+45606,70355,22339,19863,20409
+45607,58979,56888,9673,59331
+45608,11578,61098,45498,41120,65397
+45609,26130,57419
+45610,29931,73884,67448,31197,16760
+45611,19953,44983,51194,47566,57199,15820
+45612,3927,13357
+45613,60396,30672,2321,1880,42210,56807
+45614,21194,39818,64410,75854,53077
+45615,1188,3059,63781,14903,1673
+45616,31160,35163
+45617,53777
+45618,41923,14056
+45619,62709
+45620,10423,23951
+45621,70254
+45622,25182
+45623,3406,25091,17523,68560,37293
+45624,43193,66620
+45625,31202,53748,73517,50523,74098
+45626,2469,49359,72827
+45627,25071
+45628,20206
+45629,6882,19052
+45630,14095
+45631,11535,48781,3257,62879,1480,67033
+45632,3444
+45633,1003,68760,63193,4779,20124,39520,5101,22407,20848,32720,48234,69006,52514
+45634,38557
+45635,9312,21500,9478,42346,24872,6722
+45636,7402,13723,69441
+45637,46231,34400,5785,239
+45638,51944,45448
+45639,3760,52778,12405,62127,14027
+45640,554,13149,13920,63823,37299
+45641,17170,45850,80481,34057
+45642,70642,38641,57114
+45643,62341,71249,75561,80176,30514
+45644,46551,57962,23818,68272
+45645,62081,33402,61421,39851,54274,63210,15141,10205,7235
+45646,53915,72042,22315,50085,73329
+45647,769,77099,20116
+45648,20172,7966
+45649,52055,57896,14645
+45650,43930,75868,69408
+45651,20409
+45652,17957
+45653,31161,72528
+45654,75175,18737,36808,2249
+45655,9595,1459,33258,46496,73803,54193
+45656,71408,10060
+45657,76877,11541,46072,71579
+45658,24069
+45659,28267,51625
+45660,65261,39064,47811,45622
+45661,41546,76255
+45662,8939,13584,79234,7747,7944,2281
+45663,65099,70607,40103,66781,45058,3245
+45664,82000,76371
+45665,33952,34459,31268,28144,5810,18189
+45666,60378,22479
+45667,75230,60314,20983
+45668,14965
+45669,79205,40881
+45670,29938,41187
+45671,45651
+45672,28187,53931,1545
+45673,43073,67071,27073
+45674,49229
+45675,80364,75912,29605,55232
+45676,28257,70243,40409,28539,6774,29882
+45677,38718,69092,45482
+45678,47988,41888,58200
+45679,42853,20513,62909,68702,590,16237
+45680,47763,62009,23648
+45681,53719
+45682,29192
+45683,54311,47013,15757
+45684,58126
+45685,32156,48606,61174,61737
+45686,20547,60157,67151
+45687,81003,68695,30246,73330,77038,32335,34781
+45688,21349,14317,59755,68878
+45689,32192,30681,11216
+45690,31292,9141,9751
+45691,55435,45083,65116
+45692,65462,34127,40566
+45693,9379,5789,71708,4504,74844
+45694,81443,79223,71144,75570,46106
+45695,13966
+45696,32263,45607,48106,61147,22843,42437
+45697,65491,58614,39750
+45698,72493,62944,28062,38303,53960,32634
+45699,71872,29744,7646
+45700,21476,38728,42561,11244
+45701,57440,16654,49514
+45702,77129,10728,73217,29272,22731,63189,69914
+45703,67252,42377,6081,22109,48456,22596
+45704,56070,19282,7224
+45705,25334,20041,80925,70619,52363,73017
+45706,3116,49491
+45707,8143
+45708,53385,37129
+45709,1651
+45710,17643,61140,77879,46243,16713,61042,42772,80380
+45711,18273,6148,46516,52144
+45712,47229
+45713,63955,21543,58958,52977,81037
+45714,61098,44255,57845
+45715,77656,56618,59529,18669
+45716,65802,53730
+45717,23875,36164,36528,72544,76254,7944,8910,3340
+45718,29280,31940
+45719,27320,4891,20370,3330,55816
+45720,62941,58122,69961,74986,16922
+45721,38781
+45722,67832,24028
+45723,42926,54300,11520,54277,62129,23247,30500
+45724,15201,55448,49116
+45725,57121,3222,79345
+45726,64745,52877,71111,18496,79136,28684,79774
+45727,70423,39596,32754,25919
+45728,40266,60140,53252
+45729,29422,27906,50567,47614,58750,76305
+45730,34759
+45731,45672,15097,65928,50559,66424
+45732,9738,14153
+45733,62218,172
+45734,47903,29620
+45735,10793,67177
+45736,27427,11339,2929,39712,10490
+45737,46452,38766,34777,41677,67981,68563
+45738,33776,33718,42759
+45739,6780,63042,23000,61564,45820,56577
+45740,48161
+45741,47447,56984
+45742,77120,48576,28587,27735,2309
+45743,56956,35398,54514,44755
+45744,1647,46516
+45745,38031,33428,27401,39299,75786,2839,45241,60255,62917
+45746,14253,3554,35296
+45747,27724,1336,18877
+45748,18940,34299,33992,62838,46011,38206
+45749,38311,1175,41514,38
+45750,27411,54328,19994,33882
+45751,31592,16412,80262,31390,19236,59391,33731
+45752,39478,33569,24236,31943
+45753,66966,6696,78425,12934
+45754,10882,77282,54452
+45755,4283,43888,19380,54483
+45756,29164
+45757,25375,13171,81591,73925,47406
+45758,1124,77916,77716
+45759,18055,81131,60688,24260,38064
+45760,51903,52729,33372
+45761,68042
+45762,74488,6745,45173,49900,55117,42913
+45763,16226,7095
+45764,19196,64412,42026,77911
+45765,54868,62036,29416,20999
+45766,35356,18860,25541
+45767,16090,38289,12832,72132,79967
+45768,15812,51320,62336,31404,60481,51990
+45769,51009,8102,14290,301,47372,78740,9291,79414,8428
+45770,29149,299,148,5671,50576
+45771,51553,38278,52070,44089
+45772,44656
+45773,10049
+45774,55799,67656
+45775,61674,15760,29108,30500
+45776,28416
+45777,15921,20323,65810,66658
+45778,164,39401,59700,14077,15795,9096,2237
+45779,40814,29962
+45780,35620,11656,19242,53417
+45781,32262,44266,27448,3850,68195,22332,26854
+45782,61719,25305,31128,67691,51981,31293
+45783,18347,76280,36316,9152,27170,26831
+45784,3391,50607,81238
+45785,71104,20314
+45786,54003,3239
+45787,32622,74798
+45788,20183
+45789,51292,68978,36922,17680,879
+45790,19402,58581,12070
+45791,2750,8993,28337
+45792,75097,66576,66455,7635,21520
+45793,74321,48979,78778,72843
+45794,799,78107,64784,8509,53907
+45795,69577
+45796,62055,51548,34623,45246
+45797,41538
+45798,78602,63254,31581,66544
+45799,78169,27829,75476,45291
+45800,36604
+45801,75401
+45802,15632,56220,77689
+45803,36939,3382,55793,52756
+45804,12251,17518,24542,62060,3615,3721
+45805,54112,22753,56909,2548,42211
+45806,61138,23659,67253,23954,74225
+45807,21241,43414,20311,9104,45083,24709,28579,30244
+45808,26435,66893,46048,48783,38970,14415,43517
+45809,12431
+45810,32150,36824,1859
+45811,21608,35858,81320,68726,40119,11056,71549,51180,2796,28733,70343
+45812,21645,16118
+45813,69669,46360,17495
+45814,62380,26247
+45815,24373,32612,9493
+45816,22911,31999,21131,79950,31806,48415,22525,24131
+45817,29457,62558
+45818,63342,34410,56033,63367,53929,35592,60776,30899,33014
+45819,46937,43580
+45820,35029,51936
+45821,26595,75579
+45822,10679,9330,16540,4639,14482
+45823,76035,81545,39512,4515
+45824,44553,5417
+45825,70770,45076,49843
+45826,41532,31363
+45827,44701,76921,78130
+45828,59138,42404
+45829,21198,28332,66442
+45830,69754,60964
+45831,18538
+45832,72850,41929,9571,27431,21619
+45833,81081,76348,59172,80037,59600,23266
+45834,81690
+45835,61041,53472
+45836,48587,68179,53089,41199,51454,15136
+45837,8818,49841,31233,32583
+45838,38474,77953,58699
+45839,1206,56952
+45840,75650,37298,47118
+45841,49220,4148,39134,74286,9287
+45842,62856,29726,53519
+45843,27596
+45844,53836,74590,60187,78664,49429,81372
+45845,39135,50105,73794
+45846,15499,49974
+45847,46201,66698,25762,45707,62107,60317,50305
+45848,17386,73146
+45849,57574,76182
+45850,5682,36013,56610,22967,54147,79654
+45851,38483
+45852,80161
+45853,48343,32938,58747
+45854,2637,22399,80724
+45855,21436,43264
+45856,22685,47217,41041,9896,64415,67709
+45857,36316,13141,81231,16030
+45858,50477,20677,39476,80764,67725
+45859,73774,45076,78999,56880
+45860,24695,23510,4731,17511,22551,44975,39072,29080,61910
+45861,53957,28381,26693,59664
+45862,57247,3805,55990,12469,44228,46747
+45863,67586,23975,24267,34555
+45864,2093,16071,21386,65453,2244,9871
+45865,74994,17917
+45866,51574,15077,56070,69745,72590
+45867,29266,59582
+45868,20812,66840,19121,9408,53889
+45869,55498
+45870,76747,64379,48494,21913,54904,5090
+45871,67966,17968,53208,41433,54380,43713
+45872,54374,20022,40691,10293,66828,40195,45860,65350
+45873,43991,21359,19173,57134,66888,26102,29139,15087,9083,58599
+45874,66775,58255,54634,38162,10237
+45875,29564,45932,11873,64014
+45876,32091,60914,43181
+45877,106,49713,79199,51321,55670
+45878,81264,74150
+45879,31538,69795,16380,3396,11414,60925,62064,13178
+45880,5328,7442,43878
+45881,80553,31995,9278,12654,34394
+45882,23006,57892,38152
+45883,22148,16055,79427,1465,27523,16024
+45884,39876,66564
+45885,27170,40769
+45886,54843,9691,51921
+45887,75880,30312,9659,41190,79721,1904
+45888,52172,31945,34924
+45889,13684,57112,45981,48676,28054,17935,75253,67493
+45890,68293,18945,39926,74876,19844,30678
+45891,19244,697,80384,76025
+45892,59959
+45893,7449
+45894,71749,1976,76589
+45895,81925,75883,30470,36542,66011,64250,32245,47500
+45896,10821,52242,338
+45897,34595,64913,12904,59373,68685
+45898,38816,11199,25597,13020
+45899,80889,20052,37018
+45900,81714,68340,5896
+45901,33068,71497,58532,19243,5815,24761
+45902,74660,59600
+45903,81948,66671,62354,16168,4033,4624
+45904,28259,7266,8844,41973,25404
+45905,71114,19527,33831,56604,78215,75320,19539
+45906,68189,31659,3499,51473,44142,32161
+45907,61737
+45908,36688,71930
+45909,78496
+45910,51783,69617,21392
+45911,30997,80173,54528,41478,36467
+45912,29497,79291,28222,63715
+45913,22362
+45914,44387,2720,35584
+45915,71852,76433,77552,19043
+45916,2461,81271
+45917,15587
+45918,59372,57557,18969,2645
+45919,62077
+45920,46740,80950
+45921,27136,16571,63435,1432,38672
+45922,54684
+45923,37321,81362,10863,71927,65335
+45924,44025,75603
+45925,3505,7504,7485,44117,72017
+45926,47278,80923,8950,35358
+45927,37339,396,21725,39212
+45928,28610,20453,2077
+45929,50929,35742,76040
+45930,15917,4482,11484,37769,698,26396
+45931,51004,32701
+45932,52465,81875,2613,66510
+45933,29815,23947,28914,64232,20470
+45934,46475,78361,70315,77631,44097,37410,43368
+45935,73870
+45936,34333,69718
+45937,51584,37514,15041,82186
+45938,48513
+45939,10507,29987,40878,41021,59681,49471
+45940,41285
+45941,17317,82003,34133,58559,52784
+45942,26130
+45943,56964,3230,33002,7475,23344
+45944,58830,56553,72442,49396,64453,30290,27501
+45945,4356,2407,74339,80950,65889,40878,17547
+45946,17354,7073,1731,79998
+45947,52003,13781,20136,29448,14556
+45948,30430
+45949,24766,2876,52095,22311,24041,31320,39988
+45950,40014
+45951,32236,35863
+45952,64453,74027
+45953,19027,2541,47434,58217,7656,66522,65799,15115,8831
+45954,28148,41990,33090,21126
+45955,30170,8986,1251,81157
+45956,51497
+45957,66697
+45958,81955,63275
+45959,67832
+45960,39789,60234
+45961,30016,55281
+45962,26089,61495,71904
+45963,29544,68762,39509
+45964,71568,19899
+45965,4237,48840,35916
+45966,13196,48901,13005,47836,38887,31841,11644,58810,78973
+45967,13020,55504,75793
+45968,27523,11369
+45969,74702,52921,76927
+45970,55865,63574,8267,35733,50793,14228
+45971,27701,21794,51233,20902,58677,38162,45571,37350,50378
+45972,18034
+45973,64433
+45974,25718,78405,62103,46222
+45975,56952
+45976,74271,54154,46994
+45977,14042
+45978,67562,66735,28144,53984
+45979,6092,47971
+45980,32471,65474,66837
+45981,75441,68223,75856
+45982,12948
+45983,15618,31651,7183
+45984,79847
+45985,46393,52191,31015,27390,28886
+45986,70441,30872
+45987,51315,72898,77787,69202,19843,18043,45630,33479,67309,63492,9886
+45988,12273,80207,43377
+45989,11936,17531
+45990,77845
+45991,8445
+45992,66898,66443,44053
+45993,3394,57819,70306,23835,9694,50269
+45994,53733,67547,21244,17421,22151
+45995,35348,34832,75271,33335,69071,50373
+45996,13331,28724,18204,11497
+45997,75971,44420
+45998,23016,31322,15307,31362,45721,16584
+45999,23847,50043,42684
+46000,50924,42061,53801
+46001,5063,52502,5855,55043
+46002,36351
+46003,75543,81223,51152,18811
+46004,48370,23950,42951
+46005,19764,27844,60256
+46006,20782,59465,47775
+46007,78384,14517,38990
+46008,37142,36666,12261,4156,9922
+46009,62294
+46010,75148,508,24451,16470,71023,78455
+46011,68802,59433,3030
+46012,21178,40643
+46013,23964
+46014,49174,21796,77656,37845
+46015,77094,5784,49220,65536,24003
+46016,57601,26422,80319,23604
+46017,30728
+46018,15725
+46019,77770
+46020,7466,29405,33732,76397,12262,70727
+46021,74497,36842,56230
+46022,3141,71069
+46023,78275,36051,24615
+46024,77652
+46025,56492,21315,6754,48277,24086,29504,5183
+46026,78322,72009,49749,3439,80109,34068,46522
+46027,79664
+46028,32956,9202,69339,30884,11904,13681
+46029,830,38745,25363,41365
+46030,81714,12626
+46031,49926,75836,61021,69388
+46032,33492,55352,69537,63735,31738,29306,38802,15435,9939,55825
+46033,17755,38178,12397,40002,39047,73094,36563
+46034,37795,76794,18328,21886,76448,26271,32932,67669,75733
+46035,41835,57698,81793
+46036,66694
+46037,80258,4744,31978,71265,10171,51034
+46038,74706
+46039,62870
+46040,45943,15432,22204,28628,68439,9394,32462
+46041,70413,9186
+46042,81531,19016,70762,15831,79109,14211,49168
+46043,45980,16402,4841,41179
+46044,9309,11984,73713,54227,66493,30786
+46045,51522,24375,54805,2909,8397,38492
+46046,60360,4005,50595,15528,11831
+46047,17966
+46048,25652
+46049,4724,30403,58390,57808
+46050,55635,72274,62937,506,1866,40604
+46051,61204,3160,73307,39807,34385,27693,56514,44416,14443,67220
+46052,79548,68726,39590,51829,20557
+46053,57983,14590,19646,66372
+46054,13003,8002,46771,40078,26079,79906,67440
+46055,23613,13338,35533
+46056,17732,15965,53780,78821,31735
+46057,58424,77770,35808
+46058,73418,26846,41464
+46059,69849,26316
+46060,58979
+46061,10937,14814,77746,80685
+46062,34837,16416,13906
+46063,21731,56305,4908,21992,71932,34669
+46064,54170,76464,65753,71940,26496,20667,29426
+46065,18948
+46066,16547,70066
+46067,77175,9144
+46068,15799,12259
+46069,78310,55714,57910,42932
+46070,58675,39375
+46071,24762
+46072,16377
+46073,10032
+46074,81287,43224,21513,81960
+46075,28130,6415,52266,30938,12145,38384,37774
+46076,6401,39652,10090
+46077,80288,57703,40495,53668,60412
+46078,35880,29796,1945
+46079,63349
+46080,76129,7310,59403
+46081,34857,72164
+46082,71263
+46083,46467,35255,81490,11660
+46084,38263,6156,29448,73625
+46085,18662,22362,65121
+46086,73767,62658,39505,20497,71691,59311,55644
+46087,56584,11601
+46088,16157,67706,1650
+46089,8699,54377,50606,70617,7584,66604,12991,27192,54445
+46090,45741
+46091,63792,47633,54843
+46092,81491
+46093,1209,68186,47423,64771,57990
+46094,43011,7644
+46095,42584
+46096,19905,23371,80129,74632,81360
+46097,9374
+46098,44540,35620,29642
+46099,21374
+46100,68505,25427,43764
+46101,15498,43066,19588,81671,79193,7614,41580,6937
+46102,23215,23035
+46103,51390,80408,5843
+46104,23621,8102,63874
+46105,79207,44439,42302,23542,72371
+46106,12678,41164,53068
+46107,43017
+46108,40915,5837,11874
+46109,67439,79153,58897,61899,17913,324,49894,60820,12176
+46110,12751,72403
+46111,10452,18254
+46112,44148
+46113,68861,20817,24901,31211,64123,54306,59074,11961
+46114,5256
+46115,63242,9535,19458,46970,32255,24682,38351,70662,11582
+46116,30206
+46117,16731,64719,40213
+46118,24785,12073,56337
+46119,22367,23635,35184,10560,16051
+46120,57755
+46121,12649,17709,31801,66977,2866
+46122,32505,77713
+46123,81053,964,42638,12677
+46124,47144,67161
+46125,64776,32676,36745,42427,21104,40850
+46126,55919,77232
+46127,6375,79928,67176,67894,15765,40806,77276,48482
+46128,42420,46249,19282,80394,13412,46117
+46129,37566
+46130,9457,4889
+46131,79312,32127
+46132,7323
+46133,57458,64358,30308,22351,65115,16541,61861,13190,8081,52994
+46134,35421
+46135,39865
+46136,66359
+46137,50772
+46138,45404,54359,2572
+46139,64306,8108,81448,74316
+46140,31256
+46141,17695,44348,68570,38204
+46142,47688,22642
+46143,51319,62225
+46144,37379,67115
+46145,26932,26937,27977
+46146,43078,77317,75881,30896,42912,11577
+46147,5910,68848
+46148,57112,41110,55600,26743,78877,13555
+46149,54810,39440,49343,58204,48470,46096
+46150,76314,50621
+46151,6415,12222,15344,79503,29918
+46152,60852,47255,22621,57636,35772,66359,10175
+46153,51826,10736,77906,48332,42535,37055
+46154,10667,46731,10376,76087,66629,22223,54403
+46155,36872,63061,60337
+46156,16175,81609,32247,24104
+46157,10157,6924,43467,43105,39158,73911
+46158,21756,37227,3473,35617,72788,69530,81138
+46159,50121,73847,23661,56407,69499,51256
+46160,66469
+46161,47219,12603,4808
+46162,67200,19507,64219,21686
+46163,48943,76736,58899,38421,10139,18549
+46164,59969
+46165,64145,77987
+46166,12583,34732,60093
+46167,11487,26113,70566,53083
+46168,14544,9978,64613,63251
+46169,44418,15838,57495
+46170,70558,7442,22896,52150
+46171,82190
+46172,44797,76617,33962,64006,43567
+46173,81970,49863,29904,14129
+46174,55435,70077,78037
+46175,71209,12584
+46176,17773,55824,1741,11468
+46177,32773,41877,73358,17043,74697
+46178,52920,53903,75668,81968,8875
+46179,38941,39644,73069,56907,34373
+46180,18572,22212,45328
+46181,17893,75039,25464,35627,38407
+46182,81629,30849,68515,19021,15661,25662,28833,36372
+46183,10192,25590,58108
+46184,31547,59876
+46185,70962,21178,5916
+46186,3067,16563
+46187,5333,74571,59370,3977
+46188,70175,57608,56738,7703
+46189,62517,79499,8193,1665,36521
+46190,47071,81107,10358,74374,36026,65554
+46191,5858,61257,60427,15445,33623,39779,61756
+46192,191,66889,72907,51521,44251,77726
+46193,7626,17608,37284
+46194,35117,15376
+46195,70119,68009,70326,16477,29470,30382,35233,18009
+46196,53709,75536,78633,81916,12916,7619,61880
+46197,60566,75625
+46198,75836,57920,4717
+46199,20989,29815,6145,3767,15244,51987
+46200,78859,72344,65558
+46201,20244
+46202,12704,78789
+46203,57093,78059
+46204,51287,64085,61378
+46205,69516,67519,30449,57678,75776
+46206,16908,70032,67897
+46207,56644,70057,22444
+46208,80421,49515,18548,55708,37873,37458
+46209,74234,31607,13463
+46210,8206,8948,61779,62993
+46211,72740,12247,63813,43215,66656
+46212,18003,28084,16208,34448,73071,9450
+46213,10550,5600
+46214,78197,48004,8422,22622,78806
+46215,49013,23888
+46216,18376,41003,1629,40357
+46217,3410,49662,8181,9408
+46218,79138
+46219,61655
+46220,30792
+46221,10159,26246,80049,12778,17617,34944,63049,38287,45192
+46222,71027,11288,67042,31125,2328,52511
+46223,15404,10861,53352,18716
+46224,44903,7676
+46225,7089,60714,9291
+46226,3356
+46227,46430
+46228,78602,77095,16460,3209
+46229,57848
+46230,6594,68244,80513,64546,1154
+46231,72744,71568,37555,25882
+46232,65680,60922,15791,38009,52820,41105,36038,61459,12053
+46233,24900,32182,16710,31783
+46234,61514,54852,61965,76517
+46235,31725
+46236,14762
+46237,185,24895,9163,27826,78
+46238,8398,47751
+46239,46988
+46240,80387
+46241,3693,3284,37238,23346,12075
+46242,80773,2431,68605,7488
+46243,77838
+46244,66872,47925,66254,64543
+46245,47945,66333,20380,4325
+46246,28319,32068
+46247,37122,2208
+46248,51492,71435,22087,44818,78384,188,38869
+46249,34783,78019
+46250,12677,69033,1909
+46251,37480,54129,65335,19528,35968,61615,31327
+46252,6348,30202
+46253,74547,20729,32515,72750,49729,59184
+46254,33706,1254,36634,58320
+46255,43665,52804,80280
+46256,7652,37796,48095
+46257,44720,81958,42372,43710,63910,61172,1336,64690
+46258,1127,41231
+46259,28840,59577
+46260,24366
+46261,57653,5494,20135,19279,43845,68168
+46262,55053,48863
+46263,44873,9965,77922,12100,61436
+46264,39926,61188,2993,81548,68210,13751,53122
+46265,28643,81066,12661,41589,76042,64963,54217
+46266,55915,51689,58893,31380
+46267,77766,59326
+46268,29890,16018,54207,41892
+46269,58797,30140,6429,59225
+46270,55474
+46271,29731,52420,54794,29834,78600,21903
+46272,79419,42020,753,43440
+46273,77667,15299,23685,56596,629
+46274,79155
+46275,19297
+46276,14488,33280,54271,1450
+46277,19448,25718,53748,5268,78936,30834
+46278,69057,19642
+46279,25903,46002,79903,71537
+46280,54762,41866,14404,47267,70774,30648,22798,60442
+46281,53472
+46282,46227,79341,49793,19199,16871,50430
+46283,61001,79208,49205,10408,35904,22010,15813,78138,67664
+46284,22224
+46285,70703,23305,55923,12086,51587,69082,73045,67231,1172
+46286,7803,10264
+46287,39270,70197,77851,68311,75319
+46288,5403,39055,49034
+46289,48659,67572,61876,39382,73302,42763
+46290,66263
+46291,69510,56896,13630,49979,45285
+46292,57971,75022
+46293,80685,19406
+46294,7780,44780
+46295,36256,46679,40552
+46296,9723,57004,7767
+46297,67236,76
+46298,22345,11679,51805,6360,66543,368,7462,43174,66248
+46299,74907,39696,6341,15532,58065,73267
+46300,22402,51032
+46301,51472,53185,77868
+46302,70993,29112,60911,39153
+46303,59637,16815,62554,61519,38403
+46304,67842,34752,37955,2352,6949,69629,19341
+46305,3763,28243,8254,51592
+46306,1284,69829,77845,81400
+46307,8830
+46308,18376,306,70288,53690
+46309,26768,68674,8157,74043,62313
+46310,70163,58081,46547,30806
+46311,78894
+46312,33774,29133,14603,66875,30661
+46313,59069,71784,3299,68801
+46314,14453,71933
+46315,22685,34305,8754,12721,47489,27069,81475,11665
+46316,44192,29097,54685,10037,27227,2423,30642
+46317,20701,64419,62225,47396,66843
+46318,8977
+46319,82064,81473,9678
+46320,57656,66630,69701,3330,11083,72410,1949
+46321,81634,28761,4718
+46322,2706,55839,8758
+46323,70482,29224,55925,5797,26288,77022,54903,40748,72138
+46324,66171,61617,16254,6825
+46325,77863,16743
+46326,47770,23455,40372,66444,57479,76490,43172
+46327,14055,72216,58453
+46328,77143,1099
+46329,75941,57968
+46330,39846,50192,33651,71152,44903,18786,25201
+46331,81933
+46332,47736,15757,77200,3827,21344,70171
+46333,26069,20983,58339,57178,37067
+46334,11786,7797
+46335,34373
+46336,25605,24625
+46337,67391,74117,38761,4773
+46338,20762
+46339,82003,42083,64601,34685,11442,45855,53833,54414
+46340,71469,77691,25611,24843,24196,27482,56418,39991
+46341,804,43895,62776
+46342,73671,52300,73324
+46343,77352,46966,9507,14046,73628
+46344,50571,15474,57652,55504
+46345,53121,55764,30296,16606
+46346,18220,50772
+46347,8129
+46348,69684,36871
+46349,66116,73269,44176,56693,17443,55601
+46350,79654,25465
+46351,40816,79126,7539
+46352,72737,14066,7996
+46353,11640,50479,15681,38274,7587
+46354,38502,39815
+46355,31556,17928,40948,38495,18164
+46356,52632,65915,17726,29543,15928
+46357,56289,61448,19163,78230,24034
+46358,26591
+46359,23968,22709,42253,57905,22859
+46360,63546,1767
+46361,16699,14896,81753
+46362,50761,65767,37970
+46363,81808,57373,78447,46141
+46364,69144,48815,82150,65265,79987
+46365,79602,61733,51327,2618
+46366,73496,62363,19717,67945,43752,81023,27525,3804
+46367,64739,12591,33618,17726,58006,23986,2976
+46368,57731,16594,4674,48348,49367
+46369,21166,25382,6953
+46370,20124,40050
+46371,81826,71646,8830,57979
+46372,6088
+46373,3340,54401,1008,21245,49386
+46374,15328,59105,20149
+46375,40567,28299,14141,4785,30993
+46376,24728
+46377,66761,46895,60146,66544,5794,15944,52263,59426
+46378,24623,30037,15935,5945,6838
+46379,39486,51769,28626,48979,77037,38967,3165
+46380,22805,35883,8754,34644,25424,30103
+46381,46270,49428,2286,6396,80856
+46382,19514,35524,61473,35264,35412
+46383,13902,57806,62937
+46384,22256
+46385,37715,1041,67887,75276,26163,70883
+46386,31691,11405
+46387,79240,13349,19779,17196,73606,27818,78865
+46388,13826,52384
+46389,56391,60960
+46390,76442,37553,53485,23857
+46391,12975,33178,72266,46649,49495
+46392,11491,62804,30771
+46393,40961,70333
+46394,56279,60756,3706
+46395,33037,26024,37137,75690,38129
+46396,71553
+46397,5588,28561
+46398,62202,69311,3268,60967,41803,75580
+46399,2477,4729,45875,57423,34379,25387,34547,52480
+46400,39597,73030,27875,43553,22528,42281,9138,56255
+46401,34854,70283,7045,32383,33048,10395,16019,15482,59447
+46402,24815,66789
+46403,39503,56050,76547,3847,57268,25423,13638,1789
+46404,14227,54028,80780,4563,46588,14582,7392
+46405,76318,18857,51394,66292
+46406,48071
+46407,78164,38877,67543
+46408,77973,37216,38651,7286,40859
+46409,18748,7980,796,17386,5885
+46410,15556,36475,58362,17785,29465,38876,21567
+46411,26620
+46412,34068,13420
+46413,57228,15357,1102,71772
+46414,2261,52254
+46415,10813,55738,1034,73795,43504
+46416,76887,80021
+46417,54425,14000,62708,4953
+46418,44623,722
+46419,57219
+46420,956,41009,20703,61483,20105,58009,20207,38722,52800
+46421,21286
+46422,18220,53076,58113
+46423,5071
+46424,66440,39523,71697,10514,32496
+46425,18790,47686,31960
+46426,39215,33418,39136,17744,11199
+46427,348
+46428,15536,50523,1444,73035
+46429,6563,78996
+46430,32091,38483
+46431,51670,43758,14733,16575,19493,52932,42968,78801
+46432,76813,16200,20759,35914,19779,4190
+46433,35515,60273,48559
+46434,1408,16064,660,78990
+46435,1772,31845,21937,76428,12011,81704
+46436,67461
+46437,6072,19706,16278,42553,78619,37518,4240,14267
+46438,47748,63707,62566,33022,21127
+46439,11205
+46440,72129,11123
+46441,42363
+46442,9507
+46443,31978,22979,47428,38718
+46444,16522,43377,4997,36029,67770,74183
+46445,23687,20807,72803,15493,7547,4752
+46446,63181,54658,825,81654
+46447,81146,19655,81479,34197,46260,42656,15445,34117
+46448,52480,55334
+46449,61398,34525
+46450,43720,51191,73740,66798
+46451,39798
+46452,18461,40896,19145,35698,8661,29657,49269
+46453,43323,77696,4553,50452,61592
+46454,23182,16772,10762,60791,4989,13841
+46455,65845,40202,46965,17524,806
+46456,16568,53812,52831
+46457,11481,40272,7040,72523,8778,64735,4285
+46458,15895,766,3481,30401
+46459,57109,45913
+46460,40851,42388,51908,13018,910
+46461,16731,4719,72674,56342,70243,54790
+46462,64044,51703,49721,69732,5503,46116
+46463,17704,575
+46464,58107,20993,49120,2981
+46465,17606
+46466,80230,19390,29327,39822,31200
+46467,75897,57812
+46468,69670,17896
+46469,62442,16298,71804,70269,42472,61683,3853
+46470,15272,52801,794
+46471,13728
+46472,54398
+46473,43844,68034,9619,40679,2792,15386,45132
+46474,60671,4337,46469,50519,384
+46475,17106,38140,40410,47321,44552,13105
+46476,13103,69537,81183
+46477,61458
+46478,40558,27991,7870
+46479,33583,4742,49534,10776,11464,4090
+46480,31059,1098
+46481,4789,19257,64723
+46482,76578,78319,20306
+46483,18811,3078,40165,58419,67239,54098,30870
+46484,29955,60801
+46485,22921,46905,73610,28070,10984
+46486,66197,66764,948,7666
+46487,79790,58125,67489
+46488,16587,14498,30517
+46489,65405,72321,79285
+46490,19648,37176,56736,81228,19304,15318,51718,56445
+46491,81494,43742,3782,2158,77671,64923
+46492,25209
+46493,55479,43800,65008,29544,63322
+46494,22257,61523,62182
+46495,64724,50540,80292,34397,35813
+46496,81608,4070
+46497,59379,40922,21984,56857,46920,8977,51478
+46498,38738,49624,70041,50303
+46499,55937,17477
+46500,75371,63513,22243,46203,33276
+46501,3131,32348
+46502,10777,22537
+46503,14374
+46504,50417,40974
+46505,52528,68618,5007,51479,24912,58612
+46506,33944,25621
+46507,16625,27616,9592,68955,51088,15339
+46508,63511,77468
+46509,73905,36364
+46510,33896,35244
+46511,80414
+46512,57668,30696,25517
+46513,80971,2146,12848,12329,45451
+46514,71071
+46515,27805,6948,9397,16355
+46516,11070
+46517,39892,75955,47650,74975,62426
+46518,23311,81258,44973
+46519,62797,26522,52844,55416,19056
+46520,76895,40242
+46521,16487,41236,78678,6311,34685,36112
+46522,28178,52341
+46523,7521,12537,73470,39309,71957
+46524,48063,55914
+46525,29791
+46526,63779,19492,49410,10039,57984
+46527,57188,70621,35373,11733,55994
+46528,40855,8853,62100,691,8807,50141,81388
+46529,15570,43558,44865
+46530,79035,45847,41197,62155,71885,58349,19982,37506,11694
+46531,20060,80492,177,77640,31665,42104,36268,81465,69395,25603
+46532,71633,22664
+46533,64501,73649,79929,47434
+46534,38480,46165,2442
+46535,43251
+46536,72345,20977,61505,50245,53935,32171,53828
+46537,66562
+46538,47611,2132,72529,49698,45854,82018
+46539,58803,28373,40474,23413,16019,38303,61253,46964,61224,77152,38453
+46540,41295,73917,40016
+46541,14996,2831,32222,32802,14723
+46542,81626
+46543,31059,22595
+46544,25995,39913
+46545,24028,46126,25920
+46546,79950,74980,11637,48153
+46547,33532,32965
+46548,66020,37257
+46549,54594,67781,67422,80132,39451,52570
+46550,26832
+46551,12901
+46552,81442,50503,78005,37362
+46553,12325,46129
+46554,24205,69997
+46555,20721,39400,52758,44493,80943,69549,31741,42137,28487
+46556,60013,71882,18850,48840
+46557,16989,75773,17277,38138
+46558,20942,17272,25124,17756,19517,3147
+46559,16726,70331,43397,46817
+46560,11980,51738,56317
+46561,7152,28476,70691
+46562,7062,30116,32471
+46563,5669,17703,56187,48561,17897,81985,7241,16735
+46564,40680
+46565,51150,72426,2146
+46566,7619,41419,45262
+46567,9915,72763,36733,81623
+46568,3600,33354,28778,54346,8533
+46569,56279,81545,28235,73476,57270,3467,18870
+46570,76220,105,13375,77940,18079
+46571,1466,63112
+46572,69797
+46573,24220,44816
+46574,24452,28665
+46575,78035,55316,8884
+46576,33361,2471,44163,57208
+46577,52980,13307
+46578,55203,53440,41840,33956,38614,46306,68505,66042
+46579,43218,73025,54866,16212,64110
+46580,77266,44954,586,8249
+46581,42130,20786,73222,63295
+46582,62656,66441
+46583,33321
+46584,31365,76023,30792,75115,18432
+46585,19159,71095,33656,78926,2773,53192,7078,68586
+46586,26005,4222,56487
+46587,2283,31620,67889,5013,76140,54748,3136
+46588,17916,8270,71152,13295,8032,74565
+46589,49254
+46590,58177,12783
+46591,73072,44833,55023,78446
+46592,59907,885,52259,9564,71201
+46593,8273,6453,75198,71976
+46594,23993,62034,3564,1038,61615,17429
+46595,39657,14822,2448
+46596,65948,55670
+46597,74733,50371
+46598,65777
+46599,21729,60725,16578,51998,23818,3321,26966,78049,3211,35054
+46600,35001,46975,22636,39233
+46601,55108,68674,8637,61901
+46602,33145,55726,59590
+46603,9390,66992
+46604,65937,75553,77426,53393
+46605,4747,65117,27623,5081,73257
+46606,5782
+46607,12741,60066,44683,25049,77201,61808,70469
+46608,26736,70149,57271,32340
+46609,2814,34602,48998,21584
+46610,2915,10992
+46611,49598
+46612,72429,34089,30713,82061
+46613,38870,3997
+46614,5157,53256,62847,57552
+46615,73638
+46616,47995,21910,3650,38359,55412,55184,23756,57191,53902,39153,11677,65366
+46617,53373,58279
+46618,39145,13121,19543,61642,18842
+46619,21520,43553,8366,82115
+46620,9479,12788
+46621,28969,498,14056
+46622,72640
+46623,6276,11531
+46624,59272,26168,80684,50316,73370,21931,35628,62002,46437,77693,65018
+46625,73476,39446,36205
+46626,48136
+46627,42309,397
+46628,64991,80007
+46629,1682,48979,11545,56899
+46630,67639,62504
+46631,26602,63420,48297,78624,22442,81334,56987,14225
+46632,80559
+46633,17876
+46634,3260,11768
+46635,39358,33798,51785
+46636,5632,81636,56628,51814,71803,9962
+46637,78268
+46638,64007,2620,44692,54128
+46639,31115,28020
+46640,63432,70384,13845,42205,60595
+46641,62901,50748
+46642,7470
+46643,52846
+46644,8187,78804,5058,48020,68008,46127,21513,345,48138
+46645,43257
+46646,72470,6913,25855,10105,44252
+46647,32535
+46648,41062,76254
+46649,55416,39678
+46650,28345
+46651,37251,11565,37192
+46652,38548,22439,56498,81968,40023
+46653,40045,82153,11021,183,46928,36284,50455
+46654,63619,76937
+46655,77404,61726,18258,69563,25244,43876
+46656,30045,54048,27771
+46657,40127,15570,10279
+46658,66997
+46659,36795,17080
+46660,824
+46661,5410,54818,75006,28876,68336,21004,21084,34602
+46662,67249,60895,55466,81648,26485
+46663,5996,36549,39119,77100
+46664,3072
+46665,6769,38254,25287
+46666,48353,830,44685
+46667,54683,61267,79817,51329
+46668,53292,44270,48124
+46669,31142,35621,15689,7461
+46670,11878,45579,3819
+46671,51106
+46672,31233,34438,24
+46673,861,21925,5087,74453
+46674,42490,80589,18969,80275,5869,62960,80154
+46675,51912,35118,75124
+46676,13003,36187
+46677,6099
+46678,65012,51150
+46679,15591
+46680,7240,8654,27446,74932,27732
+46681,18150,64665,16361
+46682,40491,6460
+46683,16291,63393,43678,50363
+46684,19636,10750,44773,11712,38423,42710,80305,25437,41020,80258,76409,76784
+46685,13502,31097,16187
+46686,20948,61934,17971,28123,74665
+46687,65954,12592,80307,68629
+46688,64145,44363,4911,72033
+46689,81720,19932,13718
+46690,17554,22175,54062
+46691,3039,47755,52800,28450
+46692,80636
+46693,63824,76230,73580,8109,62152
+46694,4843,22107,76149,17744
+46695,12505,44971,22294,21698,68763,51827
+46696,20223,19485,79679,33504,27325,52867,60990,57906,34545,56695,14856
+46697,50785,2240,45777
+46698,73863,33500,14901,52422,81816,16242,10643
+46699,37256,77830,16772,39668,38631,2838
+46700,10836
+46701,41563,12808,35607
+46702,4828,44290,19520
+46703,32496,56419
+46704,63688,39470,48732
+46705,28109,63334,10508,17494,59358,30132,82051,2544,40833,49762
+46706,68264,36730,18262,21592,38552
+46707,29246,57118
+46708,18585
+46709,27619,66478,71315,73142,76302,59743
+46710,23329,63103
+46711,14511
+46712,26464
+46713,33651,47828,71661,31574
+46714,806
+46715,76040
+46716,47577,30792,25496,75000,76628
+46717,69456,33656,52366
+46718,72830,52876
+46719,9850
+46720,38059
+46721,27771
+46722,26203,21356,81750,34209,8708,54174
+46723,47128,59598,15344,36471
+46724,13112,57103
+46725,11469,46510,81678,6107,67752,60620,1094
+46726,76282,34705,34941,80726,46390,36556,8839,56896
+46727,10889
+46728,5800,2702,13674,72218,20368
+46729,52216,67164,40618,39427,42025,56250,60824
+46730,31979,26179,51783
+46731,27292,26595
+46732,53891,41982,22346,81891
+46733,42612,71675,78500,44488,63571,53995
+46734,43708,27255
+46735,55501
+46736,31201
+46737,62013
+46738,73826,54335,22937,71954
+46739,32091,62087
+46740,63556
+46741,43342,29502,46465,10904,66263,65284
+46742,21498,3718,11486,79883
+46743,58077,37575
+46744,43259,77486,65854
+46745,71862,79020
+46746,12362,50269
+46747,49272,44123,63315,61660
+46748,69842,15200,47527,39826,35721
+46749,62681,2331,72030,22735
+46750,2784,20423,68580,59418
+46751,64099,56799,63969,73094,43526,47140,37770,17621
+46752,54986,74362,6235,48227,80050
+46753,339,18378
+46754,34026,17214,75957,57854,75636
+46755,59662,11317,12358,20803
+46756,57513,48173
+46757,41086,60862,48979,57197,31956
+46758,77739
+46759,35808
+46760,60186,75379,9951,4787,81833
+46761,19048,36755,65348,72760,60533
+46762,25882
+46763,73318,68453,40647
+46764,44234,79872,42366,67721,39505
+46765,15300,31144,14351,2310,58143,71671,75436
+46766,10037,73605
+46767,75838,9896
+46768,1082
+46769,56644,11904,60826,24383,46583
+46770,48343,55338,61990
+46771,64677,74447
+46772,3342,2968,41537,59379
+46773,35441,57935,18472
+46774,29113,38209,80562,51152
+46775,81914,31512,52899,26734,30945,81609
+46776,23100
+46777,30131,61636,7295,42137,75378,41740,53005,19038,60170,3296
+46778,5938,30438,43693,76061,34178,27879
+46779,65575,43857,69296,42227,79372,74957,17836
+46780,40643
+46781,44049,70565,11608,33593,69697,46714
+46782,49395,80511,57467,45474,5333,56435,19258,59580
+46783,18069
+46784,5874,80469,54224,1053
+46785,80541,48490
+46786,3120,36643,81860
+46787,20391,3829,8254,18203
+46788,30598
+46789,60015
+46790,74826,42353,2190
+46791,53199,68340,57286,2586
+46792,17199,19980
+46793,32687,70978,67221
+46794,51287
+46795,3689
+46796,41391
+46797,26485,284,17835,17587,31079,66144
+46798,70029
+46799,20454
+46800,53651,34511,13567
+46801,35534,19335,76368,55813,8135,78649
+46802,7278,77898,30191,24382,13141,36026
+46803,6465
+46804,36222
+46805,3322,36586
+46806,67008,9539,11032,65667,71918,41182,25243
+46807,78867,468,33508,51545,61368,27255
+46808,68947,32371,33879,35560
+46809,43274
+46810,23888,6617,33352,453,74713,45712
+46811,2583,20742,61390,31195
+46812,60866,40175,21442
+46813,36117,35813,78467,48175
+46814,8405,70754,26620,56703,49266,74568,79260
+46815,71055,64754
+46816,26928,35805,2968,53262,23149,22399,6651
+46817,3010,24759,63802,15374,76800,47323
+46818,8275,60259,22535,6545
+46819,26022,18147,81754,63758,77849
+46820,53558,45187,5988,58476
+46821,30424
+46822,35456,78509,17543,65230,9142,35922
+46823,42826,77213,53706
+46824,43434,66561,5543,28652,50254,629,53412
+46825,61760,66501,22063,77804,17719,55628
+46826,80413,32060,63004
+46827,24033,69488
+46828,65289
+46829,27917,75070,20162,21542,51675
+46830,33033,7905
+46831,61621,68540,79997,63361
+46832,40749
+46833,485,56945,19217
+46834,12676,47862
+46835,63789,63683,9806
+46836,58856,78010,46681,20484
+46837,73236,8557,9982,40034,29526,50057,4775
+46838,60421
+46839,12633,66975,68704,57798,82110
+46840,31180,4754
+46841,65577,77475
+46842,35007,8756
+46843,66597,64000,78619,1047
+46844,45369,50072,78502,64024,22055
+46845,2458,66515
+46846,28257,11646,54426
+46847,54963
+46848,66198,452,81101,34416
+46849,67333
+46850,54619,45487,37773,42190
+46851,60538,78415,71937,60388
+46852,16214
+46853,39915,66869,17310,32925,1639,6334,81650
+46854,80335,69771,78216
+46855,36576
+46856,80057,68523,59392,26399,11185,79229,59590,52926,58928,76412,41779
+46857,15767,62503,56613,33592,49931,16482,66216,65354,27094
+46858,36073,49660,43385,41586,37649,56437
+46859,1206
+46860,9997,61249
+46861,29944,18905,35086
+46862,49639,29735,39893,57836,4219,574,27277,22573
+46863,42167
+46864,43818,3688
+46865,21978
+46866,1800,7069
+46867,68574,9564,72660,55073,47390,29541,61652
+46868,916,72789
+46869,11488,42127,5150,21935,2384,72389
+46870,35707,74603,71532,77811
+46871,14995,18528
+46872,74517,33788,70424,39489
+46873,38601,36569,33072,66867
+46874,74289,12418,3602,57216,23313,51237,2324,43067,18742
+46875,58065,3215,52239,33362
+46876,80608,53792,39199,66808,27552
+46877,76497,75773,36021,56173,68611
+46878,32613,54076,2350,3354,58339
+46879,40985,43264,59791
+46880,6607,26570,20148
+46881,42513
+46882,12176,16364,70567
+46883,74643,17571,11482,56634,64180
+46884,62281,7265,39984,73454,8356,76839,17975
+46885,64815
+46886,56350,76756
+46887,46665,40539
+46888,36031,46727,9912,52570,26591
+46889,15895,70485,16929,47495
+46890,56046,20429,6234,39321,2911
+46891,26233,17835,62657,67014,31252,24234,9390
+46892,61430,28234,76222,60736,62546
+46893,65703
+46894,47298,51249,42476
+46895,22453,70590,47814,36940,49038
+46896,430,71098,76163
+46897,35390,9978,68497
+46898,38274,12947,54017,38383,53993,66496
+46899,11551,79269,14007,65563
+46900,61040,56498,18063
+46901,1008,70319,36763,13628,7296,51255,17250,60032,79678
+46902,14168,53373
+46903,26396,66710
+46904,10447,82024,27471,45948,27158,47090,29263
+46905,99
+46906,20960,28413,37639,11756,38471
+46907,40157,67887,59651,39741
+46908,56818,2934,3241,69237,66602,20403,68516,34714,46859
+46909,34585,76472,12226
+46910,19045
+46911,33739,79254,43220,52966,13217,27374,48721
+46912,64448
+46913,13862,9341,11274
+46914,40459,20607,68420
+46915,13966
+46916,69092,74791,71946,81532,5446,18347
+46917,32029,6537,70686
+46918,67723,16898,8647,27587,66109,59448
+46919,26843,63921,34513,4889,46732,6833,37546,1271
+46920,21311,66559
+46921,44005,66684,30940
+46922,45634,22411,75655,56185,6125,43446,60256
+46923,31232,68076
+46924,75191,11507,25182
+46925,68559,20206,80242
+46926,77145
+46927,57963,12737,19715,34219,57938,72878,25107
+46928,36111,57789
+46929,80683,59311,55055,18334,74856
+46930,27869
+46931,39780
+46932,70706,68163,48277
+46933,30149,17203,2599,8150,15870,66299,3440,59858
+46934,41676,6012,15032,56041,57673,33579
+46935,73579
+46936,26568,37512,34532
+46937,3666
+46938,39639
+46939,29266,25831
+46940,9918,61232,20562
+46941,8814
+46942,13745,43207,2758,32213,61013,47348,9348
+46943,61548,43000,35495,8799,28848,41268,82068
+46944,80391,76886,7112
+46945,38680,45380
+46946,66856
+46947,17329,51805,64626
+46948,52800
+46949,29451,41051,7558,9442,69941,14979
+46950,6938,50654,77317,42905,14021,54711,41869,22290
+46951,58277
+46952,29636,40831,36760,26221,12026,75719,9659,17331,80004
+46953,8707,71015,40110,74420,16076
+46954,5843,50914,1468
+46955,66133,37308
+46956,57352,33571,78935
+46957,70974
+46958,62938,70471,54172
+46959,20453,33807,16181,725
+46960,51869,24146,76586,5510,61123,44775,23719,27359,44374
+46961,57453,46499
+46962,37561,59244,48152,55913,54064,28997,15120
+46963,79831,78928,35593,1135
+46964,46830,18,5856,70247,36680,22309,13753,51362
+46965,63579,7773
+46966,26208,69465,53229
+46967,68589,3287,55937,19736
+46968,60089,9252
+46969,62954,35786,25820,60611,30352,33967,56830
+46970,13548,29766,18563,48879,5612,44553
+46971,69443,38086,30334
+46972,53361,37450,73753
+46973,58277,56155,38152,12013,9001,67134,55006,78068
+46974,64653,20980,56896
+46975,18621,9264,53725,15005
+46976,67556,61787
+46977,38957,80779
+46978,42932
+46979,74922,45923,43255,69347,80206,59143
+46980,31459,18152,79944,68233
+46981,1683,15655,74022
+46982,67670,12167
+46983,17128,11162
+46984,29405,57910,26330,50026,41711
+46985,12633
+46986,78157,42812,70316,12126
+46987,27865
+46988,54913
+46989,22593,58377,30836
+46990,27798,9951,30871,70176,43818
+46991,52425,37605,63618,39327
+46992,70422,38997,28177,53043
+46993,57112,7652
+46994,79817
+46995,66381,29991,9117,26022,36697,58340,62248
+46996,42971,29485,36918,62855,8385
+46997,47729,1551
+46998,52491,33048,31882,18334
+46999,33605,29875,40443,48574,77393
+47000,26113,79491,19187,9521,65826,29183,58119
+47001,69962,32889,76334,10561
+47002,35967,72464,40376,6700,43418,68649
+47003,14131,55742,78173,16391
+47004,1649,29596
+47005,54659,34754,72063,71711,57459
+47006,74282,56102,18347
+47007,67586
+47008,69558,18172,62223,79132,14127
+47009,1904,63567,7600
+47010,15472
+47011,60018,13869
+47012,35776,71181,28677
+47013,54097,38073,61511,854,59464,55241
+47014,3384,2167,50845,29874,16627
+47015,82133,48688
+47016,33568,40984
+47017,57706,62979,57204,72415
+47018,51188,68218
+47019,61518,8760,48689
+47020,26669,52832,77481,52320
+47021,38672,56498,69580,72947
+47022,19381,35186,71469
+47023,26221
+47024,68335,20231,27891,66635
+47025,3924,60874,49784,3007,5484
+47026,57980
+47027,67706,33342,23496
+47028,64285
+47029,38455,78572,35859
+47030,74259,5843,5544,49164,59185
+47031,67722,20974
+47032,19544,80982,70092,70422,70928
+47033,69868,31746
+47034,3631,61949,38122,76877,28619,37256,78432
+47035,5547,40472,46727
+47036,27935,62408,17867,20864
+47037,9886,74260
+47038,25878,7325
+47039,11115,82063,33627,42506,55180,63123
+47040,16402,76576
+47041,39586,23911,39728
+47042,11085,42621,53790,47480,13967
+47043,52613
+47044,66887
+47045,48267,27671,4504
+47046,331
+47047,67494,66379,32002
+47048,44001,79800
+47049,16657,12112,28256,11489,13423,77506,30149,80382
+47050,77591,29853
+47051,10386,27040,32831,29870,42166,42310
+47052,81357,53126,63939,27003,22304,54309,65550,76149
+47053,31953
+47054,21921,42316
+47055,1197,39390,45722,28453,62616,14195
+47056,61042,71280,24009,59808,686,70532,29105
+47057,45932,77755,55168,38745,57287,78532,56451
+47058,68560
+47059,69655,16056,35731,36746,29554,18684,45552,9444
+47060,37263,80029,52388,27579
+47061,71805,17193
+47062,19374,34082,57583
+47063,73018
+47064,10830,39536
+47065,13731
+47066,3018
+47067,11468
+47068,76796,23630,26141,1370,25605,14026,64882
+47069,22828
+47070,38367,74255,10669,28457
+47071,36591,31682
+47072,19152,39363,22107,24933,28838
+47073,71061,20279,31388,10448,41357
+47074,74029,81049,81023,18075,15685,768,51496,72981
+47075,17542
+47076,50311,24127,67928,77956,71492
+47077,69833,54048,2711,61709
+47078,13383,12664,35385,50866,34922
+47079,2309,14762,6909,24002,48383,62858
+47080,66984,38997
+47081,57438,51797,52247,76114
+47082,20527,21345
+47083,26661
+47084,50213,78615,51503,5600
+47085,47818,64814
+47086,60685,14891,47393,24664,2442
+47087,73658
+47088,25857,10614,66301
+47089,66938,68919
+47090,10592,43805
+47091,49807,26112,32196
+47092,27032,68354,53910,18360
+47093,51025,17109,70698,13902
+47094,41279,44900,16370
+47095,67861
+47096,9320,60261,58768,76928,69366,18759,8067,2662,12464,32999
+47097,28269,38250,14529,27708,4721,57945,75481,39008,50647
+47098,72996,19845
+47099,53028,40136,39275
+47100,9363,69681,19826,31222,22900,1814
+47101,51024,6876,42198,80362
+47102,32826,32463,75566,29385,65816,49522
+47103,41348,10626
+47104,33540,58457,63848,14545
+47105,33328,17373,70973,35229,36869,25605
+47106,64604,32986,50462,21352,37736,35994
+47107,20189
+47108,23439,70207,35298,58136,41685,15692
+47109,55243,57982,20167,4478
+47110,56233,4702,23637,73897,67626,3323,44885,28530,42674
+47111,9384,16640,42567,41179,66975
+47112,3217,51930,40669
+47113,11113,54509
+47114,59512,65512,68565,2689,50968,30407
+47115,67888
+47116,54464,3847,25943,68628
+47117,12987,43444,78724
+47118,58549,45684,49422
+47119,29813,36831
+47120,51318,38474
+47121,73485
+47122,23956,25729,7923,14795,61530,31187,18603,19861,67584
+47123,8474,49743,68677,48720,67677
+47124,1969,7907,72363
+47125,23045,52302,12993
+47126,18648,9006,44566,41215
+47127,54338,11858,21117,28482
+47128,56021,64527,10848,34376
+47129,33943,63513,45919
+47130,58815,66775,3568
+47131,77559
+47132,44405,44112,77701
+47133,65806
+47134,64652,46896,87
+47135,20668
+47136,45255
+47137,56037
+47138,17029,33037
+47139,45744,3898
+47140,76006,23259,11214,14723
+47141,26183,60506
+47142,24821,14962,1712,31920,20393,4524
+47143,40734,2773
+47144,71706,41573,58625,45447,21916
+47145,79167
+47146,78712,20055
+47147,23857,2556,46334
+47148,19586,23488
+47149,17252
+47150,16546,53176
+47151,2616,73601,20132,73091,13131
+47152,54960,34175,2027,1497
+47153,36022
+47154,62907,25945,8414
+47155,76075,38381
+47156,55666,22503,61027,10272,66920
+47157,68780,81934
+47158,2120
+47159,81233,9606,27114
+47160,20650
+47161,41873,40974,43444,56035,4831,69696,60259
+47162,2429,35167,44405
+47163,41331,22517,62282
+47164,37133,35844,17738
+47165,7405
+47166,38814,75518,48666,7821
+47167,62448,50607,27208,35152,36400,12797
+47168,34750
+47169,557,46868,68102
+47170,8854,4195,49322,6540,63686,12233,39060
+47171,78157
+47172,14396
+47173,27331,55406,71394,43320,33850,8915,16192
+47174,47148,22669,19224,45506,79647
+47175,58401,26834,36504,16371,30548,62351,20775,42949,65498
+47176,51954,37335
+47177,9467,74362,32446,74090
+47178,26519,43680
+47179,35844,7402
+47180,73661,63325,7905,60245,23131
+47181,66635,68717,27861
+47182,73677,41147,56975,63526,81298,76936,12324,79884,3456,4899
+47183,15514
+47184,43559,75266,68842,54479,47729,9694
+47185,28658,45327
+47186,16842,63296
+47187,65454,68002,20820,33398,28082,25124,33325
+47188,68327,7557,28300,45
+47189,3301,35776,42840,46569
+47190,32624,25143,4737
+47191,53632,81026
+47192,35047,32972,30470,49004
+47193,76548,40166,15684
+47194,29590,68596,16372
+47195,3146
+47196,40988,29803,70710
+47197,33920,20366,54217,33074,60858
+47198,20988,4435,77393,20147,7084,44124
+47199,65788
+47200,11037
+47201,20841
+47202,8473,43441,42355,78405,72723
+47203,227,62144,6982,457,13515,480,68480
+47204,42732,57647,29323
+47205,27251,29538,21525
+47206,64991
+47207,77419,27612,74899,65946,19226
+47208,66092,7972,33362,49943
+47209,7922,79566
+47210,69185,65571,63049,49728,14028,6832,46978,25093
+47211,63923,75951,19422
+47212,73971
+47213,56835
+47214,5377,14815,78795,55657,72235,61590,75134,57830,7765
+47215,26279,80413,8639,65,67543
+47216,18282
+47217,50644
+47218,531,21195,45579
+47219,1409
+47220,11168,33847
+47221,5160,26682,37009
+47222,28647,47500,33690,43273,79727,37521
+47223,31944,50754,70149,19559
+47224,18412,67492
+47225,29976,70895
+47226,68277,41430,55534,62562,50443
+47227,42987
+47228,70735,4713,12996,40666,156
+47229,72788
+47230,1954,42448,21417
+47231,10649,25299
+47232,23656
+47233,24682
+47234,66943,1002,2014
+47235,33025
+47236,52822,65602
+47237,71983,18034,41845,5479,37855
+47238,40399,61088,62361,45808,54614,28682,43208
+47239,68206
+47240,53485
+47241,65396,5865,22050
+47242,68976,61861,46438,40159,5772
+47243,38626,82044,30029,48670,56087
+47244,12612,3591
+47245,52795,17334,28645
+47246,79300,41973,74963,7358
+47247,32352
+47248,52032,22030,70582
+47249,51082,48121,2477
+47250,18658,73735,64573,69320
+47251,65275,71269
+47252,40240
+47253,47643,68976,47694,17631,61534,22017,41220
+47254,8560,6591,20591
+47255,13172,25945,58205
+47256,82048,63151,28918,78700
+47257,55668,53808,31481,75944,8516
+47258,1816,4824,49693,41600,37722,2858,76304,17207,4819
+47259,68732,21930,7428,1291,32400,6209
+47260,40960,76305,46838,77480,14914
+47261,61503,53827
+47262,14750,29447,27036,134,9066,42267
+47263,23951,5670
+47264,34610,12276,28055,50018,3910
+47265,28302
+47266,34800,20876,10197,20677,79215,32621,47483
+47267,78332,48563,53975
+47268,27566,46550,48544,7545
+47269,58692,3205,66654,48247,23876
+47270,57040,13737,37954,16796,29112,73200,36210
+47271,18557,27959
+47272,34455,45780
+47273,64864,50434,5006,71789
+47274,81532,78148,79924,47971
+47275,71906,3649,59378,63563,81634
+47276,81056,66504
+47277,33624,65452
+47278,74157,65329,962,55025,50767
+47279,14384
+47280,82122
+47281,13774
+47282,55123,3009
+47283,76094,32491,22447,72176
+47284,73348,62926,77092,61285,65523
+47285,30015,59686,9767,7055,13996,78092
+47286,81346,67904,19861
+47287,66863
+47288,471,53024,72867,67969,64850
+47289,20115,74457,13296
+47290,57441,70428
+47291,40782,80925
+47292,40474,36372,33755,4522
+47293,76266,6140,78273,6707
+47294,72620,2979
+47295,80471,7629
+47296,13288
+47297,43852,74297,38208,32211,26875,62657,2772
+47298,11007,25182,16496,64961,44553,5286,54232
+47299,69916,44017,24587,65928,64063
+47300,55053,12716,29303,58314
+47301,5634,39759,48258,7830
+47302,30901
+47303,59237,47066
+47304,28728,35441,71074,66155
+47305,66433,28719,16519,40668,37407,54235,19438,45294,3760,47797
+47306,31467,24346
+47307,57107,52276,67838,72072,34570,25834,59386,4467
+47308,79363,56014
+47309,56511,17160,30456
+47310,79501,74578,7651,6595,49083
+47311,72705,80361,57884,4227
+47312,9026
+47313,30843,20733,27678,74972
+47314,75163,17101,32632,23747
+47315,73663,40934,10992,41239,81907,58188,47605
+47316,38644,49875
+47317,2574,11346,49652
+47318,60184,77840,70409,31955
+47319,50938,9088,9114,15565,17618,22774
+47320,66168,47611,39300,41638
+47321,29388,3134,37636,15443
+47322,53641,57896
+47323,57921
+47324,54156,9470
+47325,33384,37085
+47326,1028,22907
+47327,22880,18444,25639,45113,74101,51179,6048,35548,75657
+47328,7861,49516,18785,1106
+47329,30213
+47330,19365,36039,77771,66182,29965,58424
+47331,46016,49139,39373,79639,67257
+47332,71090,48815,73290,65323
+47333,75191,21611,57789
+47334,9376,18051,7853,50903
+47335,4779,78683,68987
+47336,26333,7467,14891,16698,16791
+47337,33680
+47338,70904,73179,43711,31377,52224,69807
+47339,26763,80976,62706
+47340,50585,29336,27979
+47341,43677,46546,26644,42088,55183
+47342,30221,4922,43377
+47343,58062,47119,1814,65406
+47344,60928,47530,73532,23514
+47345,9279,67894,5125,67489,30756,6530,66331
+47346,77736,39086,13541
+47347,38385,26522,34283,73993,40582,35379
+47348,14561,80208,69845,11115
+47349,77849,49947,18985,31105,24342,23080,21313,32721,14062,57008
+47350,39030,55040,41295
+47351,69397,74802,38001,43097,35804
+47352,27957,23575,53580
+47353,71850
+47354,78390,45175
+47355,58067,42309
+47356,3444
+47357,52211,35103,36465,78230,51400,35203,63264,11280,50800
+47358,41536,4502
+47359,68250,26370
+47360,4480,36817
+47361,53022,5615
+47362,68261,37076,27230,51787,79817,81067,7836
+47363,21739,38278,11673,1466
+47364,27300
+47365,19651
+47366,18283,18611,79783,36792,76969,52248
+47367,75251,9447,53547
+47368,76616,61911
+47369,16614,23463
+47370,72103,42285,6794
+47371,75347,50246,38801,56463,63213,57885
+47372,59128,54318,20036
+47373,3330
+47374,46430
+47375,26491,22559,7893,68676
+47376,60485,74818,75945,68692,54003
+47377,59876,32182
+47378,64930,15239,10359,62850,59849
+47379,53003,58172,5164,63916
+47380,35110,48725,6831,14719,41214,31949,7513
+47381,31274,57852,52258,54037,68209,9235,25142
+47382,23576,68686,65227,16832
+47383,46414,73918,78867,77729
+47384,69682,26144,8072,242
+47385,70892,5773,11111,36573
+47386,50137,72670,42090,31013,61566,46403,79658
+47387,81352,69838,51924
+47388,73143
+47389,28877,25209,45525
+47390,45147,19524,67364,51177
+47391,54518,28663,63728,35056,3104
+47392,20246,75477,46165,54793,59818
+47393,35341,36257
+47394,24982,46546,12574,60003,51429,80025,65060,31582
+47395,52160
+47396,42377,13000
+47397,59004
+47398,36252,59027,11527,26486,4323,3794,60953
+47399,3720
+47400,24845,12312,46184,73139
+47401,70158,42194,50632
+47402,43046,51255,30711,29995,3568
+47403,17784,6623
+47404,73889
+47405,17497,19799,47385,34899,12258,66745,9186,24586,27515
+47406,2817
+47407,65769,56709,68433
+47408,4679,81898,79310,65716,21463
+47409,11308,81223,10243,54929,47987,21235,54346
+47410,21367,62932,28312,13140,46416
+47411,11905,41652,785,22522,53814,76039
+47412,72822,34766,59968,157,63765,48798
+47413,68704,17451,6195,57103,38317,26384
+47414,25504,3784,3262
+47415,45171,80835,56146,75667,60803
+47416,41516,19250,34605,35839,76347,71312,69295,51184
+47417,59649,4261,80501
+47418,27290,9641
+47419,49757,78900,53070,77408,11413
+47420,78586
+47421,62880,69185,4000,7635,44304,56464
+47422,35976,38762,23412
+47423,37632,11265,77657,44526,63602
+47424,79393,26358,71933
+47425,13967
+47426,3885,57533,67809,62344
+47427,73917,53656,13295
+47428,80969,55250,30718,23085
+47429,79780
+47430,55533
+47431,26526,36698,66902
+47432,41910,65045,77874
+47433,43201,9455,7253,49448
+47434,53283,32257,56235
+47435,15497,9702,29456,6145,54673,13283,82114
+47436,7287,27571,14969,41653
+47437,19950,40414,20399,745,37751
+47438,15531,63066
+47439,11212,8258,3396,42366,78957
+47440,49597,68565,61987,8928,57601,71745
+47441,30069,7463,9717
+47442,50378,4054,64404,13477,75240,24829,68099,12655
+47443,14453,20136,72842,39735
+47444,57598,36270,61397
+47445,32653
+47446,75373,68534
+47447,47158,17562,51418
+47448,63728,26227,57331,61398
+47449,51624,78401,6630
+47450,71357,63339,68724,1333,58632,33651
+47451,56311,42923,71905,9475
+47452,8814,43016
+47453,58170,17934,53461,36820,5129
+47454,66301,39421,7395,62537
+47455,34177,81626,21734,48514,22299,3372
+47456,18021,33666,34964,1758,7370,41212,8520,65536
+47457,42628,94,31876,34570
+47458,13837,52387,66991
+47459,72520,46,49516,61057
+47460,25556,78042,16711
+47461,74780,37578,49082,19410,22006,4341
+47462,9307,53241,34357
+47463,30974,58122
+47464,52822,39852,24495,44193
+47465,35641,23837,48833,66516,73775,67375
+47466,8249
+47467,55280,69961,12269,354,16773
+47468,71240
+47469,14820,32090,16053,35376
+47470,94,70376
+47471,71123,52660
+47472,76482
+47473,64676,50612,10699
+47474,59848
+47475,1002,12818,29111,78650,24376,72035,73425
+47476,52309,47754,10885,35564,50360,2423
+47477,20897,47752,39475,2509
+47478,51413,24920
+47479,7506,25052,48416,49275,33753
+47480,48711,58026,21102,68409,78319
+47481,62897,48308,15383,22802,1206,16077
+47482,1173,35547,9845
+47483,51553,1432,24605
+47484,64408,65889,30534
+47485,60670
+47486,44487,60153,883,29456
+47487,44625,33220,36155,18965
+47488,59600,14331,26831,33855
+47489,75382,48190
+47490,51265,37918
+47491,29644,10161,50496,9786,81971,71000,26414,79413,72075,75883
+47492,68103,4235,1105,52852,9427
+47493,20244,73946
+47494,53052,66257,34451,25614,20740,15556,63296,65180,59601
+47495,7800,24327,10429,11608,13913
+47496,55998,2173,43222,59978,73735,26711,72972
+47497,4748
+47498,60378
+47499,67740,2580,49536,3675,40971,4909,2098,38659,48809,31901
+47500,31623,9021
+47501,11812,60025,4125,59753,37923
+47502,64926
+47503,3170,46589,50517
+47504,15725,29792
+47505,36408
+47506,61219,12347,7252,34437
+47507,77889,57975,12987,50847
+47508,42546,11309,67880,65027,4193
+47509,12431,37592,35298
+47510,73559,75892,57730,7894
+47511,1000
+47512,59907,57449
+47513,25397,27940,54769,81918,3303
+47514,26427,46166,36358,80952,1781,37092,43814,8782
+47515,9946,56449
+47516,18283,16011,442,31589,54105
+47517,13062,9083,4017,9099,68446
+47518,33001,52678,38118,29511,50308,72111,55315,40587
+47519,59896,48694,40336,40853
+47520,74594,4961,59806,8326,19195
+47521,12749,77003,11234,61661,5610
+47522,61850
+47523,68131
+47524,78817,3409,72743,31786,62122,77963,49473
+47525,26062,47582,52271,69876
+47526,78250,45087,9485
+47527,79201,43979,52931
+47528,240,79089
+47529,49518
+47530,81310,14760,24407,48569
+47531,14855,41303,43391
+47532,64760,74572,14392,27942
+47533,35864,62528,55438
+47534,7612,28323,26862,5493,11273
+47535,55293,7830,37396,60539
+47536,34100
+47537,33301
+47538,13006
+47539,15685,58367,75341
+47540,13848,72355,52775,25494,23913,49717,81532,50765,65158
+47541,81478,71921
+47542,32965,60071,75586,36247,42939,64811,67508,41190,14667,470,53801
+47543,34108,25465,71504,34166,6930,21142,13214
+47544,11752
+47545,50565,9172,7115,12311,38261,3686,13375
+47546,6481,29356
+47547,12536,29881,43105
+47548,76196,57014,50348,14644,60907,50411,31993,27689
+47549,14331,6522,18103
+47550,64730,76098,31341,26864,35149,44194,19559,60774
+47551,50031,54373
+47552,6031,57557,43358,49618
+47553,9930,72109,6892,48186,67175,38840,18088,36031,50468,36717
+47554,47108,2731,65245,59495,28766
+47555,12520
+47556,26447,29747,80365,21477,80086
+47557,61280,26844,8042
+47558,14235,62453,27221,48608,7758
+47559,31362,77755,77824,63348
+47560,62301,77417,63649,56117,13572
+47561,48673,27560
+47562,57849,38566,9402,7562,61316
+47563,69242,40017,19182,77198
+47564,9485,1532,26129,12198
+47565,79837,36695
+47566,42986,28072,53592,72909,57934,57465
+47567,41319,12933,18860,59829,311,2060,23798
+47568,2435,21102
+47569,69239,23818,81628,7688,21863,7588,32688,52032
+47570,47195
+47571,15849,4656,81397
+47572,22881,1280,74886,38188,39860,34545,11664
+47573,66766,40890
+47574,35316,9037,68413,12291
+47575,47626,53006,15716,79444
+47576,19579
+47577,57594,3354,21943
+47578,23369,45128,72297,27433
+47579,24100
+47580,66019,67359,53977,20784,9961,54785,77932
+47581,63077,36915,3756,23793,21167,50316,13853,53865
+47582,58232,67935
+47583,20968
+47584,19206,65971
+47585,2987,80213,29107
+47586,2302,3333
+47587,21558,14766,6939,50275,76247,58769,8898
+47588,55621,20492,16501,72508,5656,63713,21019,24265,42594
+47589,16336
+47590,6399,77066,51603
+47591,11504
+47592,40012
+47593,18477,12454,24832,26311
+47594,68630,24118,58198
+47595,75499,61881
+47596,80293,72656,53970
+47597,19446
+47598,37339,6760
+47599,35073,45065,16408,52810,61317,70321,68204,35053
+47600,8648,20392,21666,72677,59324,81310,41895,76649
+47601,38377,43695,72664,78266,35795,15873
+47602,8266,12032,38676,63725,55627,50127,27811
+47603,72789,25245
+47604,75138
+47605,69562,72254,6780,54803,23422,9684,50183
+47606,61040,15059
+47607,36500,40636
+47608,35707,61269
+47609,23183,22210,12583,57412,63349,45524,56364
+47610,64335,47538
+47611,67476,65338,17279,14521,21545,42890,6252
+47612,18540,48382,38809,75498,68345,51221
+47613,38044,80380,30226,61001,41152,55988,49869,52683
+47614,49645,14580,39766,41247,57881
+47615,13105
+47616,1153
+47617,64260,59098,63658,10418,776,9569,9872,73410,68445
+47618,28753,5182,51429
+47619,65697
+47620,19360,57639
+47621,77092,6418,71936
+47622,81891,35515,56181
+47623,52177,70015,28026,6315,78188,27451,37989
+47624,53085,16844,32628,23637,16513
+47625,44252
+47626,23311,76396,44450
+47627,78688,64920
+47628,69993,59874
+47629,50642,40257,3551,38759,59977,42891
+47630,53657,24382,34290
+47631,45744,30701,27469,80997,62067,66887,73479,66441
+47632,45162
+47633,9786,7045,58219
+47634,77191,31092,25129,56705
+47635,75223,78316,67229,38422,17331
+47636,51599,24344,72268,77708
+47637,1889,21098,74473,17568,46581
+47638,20701,62551,67210
+47639,6012,79718,20461
+47640,49622,68892,56808
+47641,58978,35163,74363,75751
+47642,58742
+47643,76394,54479,74299
+47644,70914,14542,49249
+47645,6022,73394
+47646,64398,8550
+47647,20713
+47648,22875,32589,26183
+47649,8909,65571
+47650,64763,56274
+47651,62793,24368,74082,4335,75986
+47652,43522,28030,1353,51103,13557,62085,44709,33308,12764,45773
+47653,58509,80129
+47654,18144,55737,13676,40657
+47655,71515,39175,52166,48134,741,38300,78020,17536,21887,78861,29692
+47656,34212
+47657,78653,42749
+47658,58303,42173,52509,54464,57834,26125
+47659,74375,71994
+47660,4433,9943
+47661,20166,9986
+47662,3137,6643,28112
+47663,17238
+47664,81075,32311,80161,41866
+47665,41564
+47666,17359,65446,63245,37815
+47667,44109
+47668,24449
+47669,57159,58016
+47670,51403,36004,38051,13877,62026,9490,58955,58710
+47671,40981,66733,68791
+47672,51634,22417,22988,3634,61384,33144,27457,69611
+47673,63910,1130,57114
+47674,77366,77923
+47675,22363,53294,89,49893
+47676,4066,4826
+47677,55378,74883,33730,58044,31547,37742,77148,35763
+47678,26727,78960,27966,80939,18081
+47679,40073,24057,7934,60045,76397
+47680,50669,32266,50428,35272,18483,59411
+47681,55526,80264,42352,76711,41982,58225,12679
+47682,1772,8767
+47683,6722,21787,14444,57138
+47684,77558,79918,32614
+47685,33540
+47686,41743,73226
+47687,68528
+47688,42314,45520,11014
+47689,37236
+47690,8235,3638,2975
+47691,38645,55911,40997,5851,53266,41858,78247,37768
+47692,26410
+47693,44770,60463,15328,80637
+47694,66832,22768,44083,65168,79875
+47695,49703,29932,20457,21879
+47696,81431,48,61337,78709,41248
+47697,81149,48806
+47698,72776,15106
+47699,35484,49946,57292,40912,3080,34773
+47700,48981
+47701,75522
+47702,9543,54694,58806,27308
+47703,55562,65360,25795,51537
+47704,79762,3355,9707,1954,36608,37271
+47705,24328,39528
+47706,1712,32847
+47707,72408,44772,21558,31970,19350,76880,67153
+47708,7588
+47709,34210,54927,45734,41340
+47710,6610,2888,33831,60883,19390,50433
+47711,73158
+47712,31078,17267,65723
+47713,4915,78558
+47714,64655,63466,48863,61657
+47715,78816,65345,23320,58166,33632,26488
+47716,4261,26840,81618
+47717,5517,28742
+47718,19636,20532,66370,57782
+47719,3023,70904,79729
+47720,53317,5053
+47721,21021,20465,13323,72146,15784,57633
+47722,23943,81241,12419
+47723,65122,31792,38465
+47724,37287
+47725,7442,43534,2794,39814,16424,3977,21533
+47726,73854,79077
+47727,82054
+47728,50253,47004,64769
+47729,57474,78972
+47730,68982,34787,75304,43825,8328
+47731,61287,41410
+47732,53450,73042,30862,30926,1781
+47733,78985,11950,42932,69413
+47734,70468,71146,67019,29033,33030,43752,43466
+47735,5768,29389,228,49803,57510,16855,3031,70060,72101,13725
+47736,1987,62489,75794
+47737,66943,25125,9487
+47738,80717,50894,73138,44798,27735
+47739,64651,68969,50418,56406,4830
+47740,6330
+47741,28177,79309
+47742,40518,8426,14778,79491
+47743,28751,52699,20461,25873
+47744,27007,55374
+47745,43962,43986,6220
+47746,45709,51789,58708,12843,68335,57577
+47747,36504,3944,81650,12486,18853,63348,41350
+47748,69999,71892,47146
+47749,50491,16699,11714
+47750,25499,70561,11997,45428,8193
+47751,49366
+47752,43005
+47753,64313,10055,78095,7012
+47754,15557,46931,28652
+47755,14532,128,64694,81572,10288,58704,52732,42308
+47756,16961,30410,34423,2968
+47757,29714,74521
+47758,4459,76948,54903,16208,39406
+47759,70416,16069,63854
+47760,56345,53040,63311,33894,39979
+47761,1127,49069,68187,74942,12407
+47762,16596,47471,4625,75521,78820
+47763,81168,46057,4169,82173,72001
+47764,43802,71106
+47765,70509,63378,43341
+47766,68024
+47767,70318,66540,41286
+47768,52052,63151,68650,69934,60169,26932
+47769,11528
+47770,69718,34777
+47771,58448,45950,6030
+47772,1891,57621,47373,81706,28338
+47773,31026,59561,8063,35597
+47774,53355,80993
+47775,27276
+47776,31757,62414,22684
+47777,48408,10913,21342,52447,49919
+47778,38917,42103,33570,45399,16735,23957,59535
+47779,22647,33998,21807,73455,61633,82052
+47780,62987,21768
+47781,2721,29847,39143,7322,2535,54298,26266,55031
+47782,70437,38037,55319,24200,35432,54230,38973,12681
+47783,23570,52572,9831
+47784,37021
+47785,2545,51777
+47786,8790,28941,15940
+47787,75102,7591,59911,19931,27741
+47788,51920,60608,48669,31661,52489,37867
+47789,61590
+47790,57168,77184,3804
+47791,39011,63236,53838,36862
+47792,9826,46275
+47793,4307,49537,53207
+47794,1770,63809,47462,73425,2162,43677,10196,12356,39254,2035
+47795,8448
+47796,39536,26832
+47797,61576,19098
+47798,59021,67815,17426
+47799,75158,72087,10621,70498
+47800,9499,31896,30589
+47801,73172,67787
+47802,68262,27180,4724,15008,11437,45562,18025
+47803,63172
+47804,49410,1083,19272,67518,51433,55686
+47805,9651,10801
+47806,14080,13701,69357,5822
+47807,18062,17299
+47808,33233,76544,78441
+47809,43008,40378
+47810,37651,33838,74065,53120
+47811,37434
+47812,58877,25679
+47813,67103
+47814,70510,60690
+47815,4072,40097,65517,29434,25674,55871
+47816,14899,71258,6821,18162,12648,34438
+47817,4937
+47818,77065
+47819,78587,56749,34581,57068,5308
+47820,32021,33587,81243,81548,81580,60630,69517
+47821,2601,16053,18491,39562,72931
+47822,622,28561
+47823,13514
+47824,45369,62722,40926,57971,77833,29110,57986
+47825,68780,66210
+47826,78510,27149,5239,43445,46810,3631,15746
+47827,25090,2316,42061
+47828,76316,40559,51668
+47829,77006,45089,7964,22303
+47830,72533,24547,74267,52106
+47831,18399,67917,26179
+47832,76256,26531,65686,50312,54388,45521,13064,37581,38386
+47833,32157,7808
+47834,78600,69234,47053,5012
+47835,43371,50867
+47836,466,33434
+47837,68206
+47838,33483,77655,74531,76871,16012
+47839,65338
+47840,33819,25287,48796,78047
+47841,25392,71239,28433,74126,61113,38331
+47842,30857,31066,58649,35286,20115,57066
+47843,27275,34817,37506,77630,13578,33208,35557
+47844,74210,23654,51053,46480,52784,48787,3899
+47845,14633,52832,19973,13985,21838
+47846,81880
+47847,26422,19383
+47848,57271,43313,27262
+47849,24659,23508,11048,13519,67026,44093,10372
+47850,62402,37434,24738,26285,43889,65809,35099,60669
+47851,29989,29759,7215,27028,42860
+47852,65405,75086
+47853,71503,69757,22794,75476
+47854,27135,60708,64789,56710
+47855,73729
+47856,71800,70912,76067,55164,15876,10404
+47857,54735,60205
+47858,1099,55547,43899,35273,74210
+47859,55832,6415,72366
+47860,3880
+47861,7217,14210,47646,60053,28510,5382
+47862,80400
+47863,33183,80934,19771,47648,19520,45014,23215
+47864,62310,54600,62214
+47865,51519,22754,7169,65415,65699,63528,34788
+47866,54343,75630,70320
+47867,60825,26966,37358,21698,39372,13153,67187,61719,81636
+47868,12524,23282
+47869,75888,12172,22691,68673
+47870,23537
+47871,72374,21863,49558,64399,31882,35332
+47872,52506,81457,9636,8063
+47873,5360,52643
+47874,34715,57158
+47875,37128,70029,43713,11398
+47876,23976,27944,42417
+47877,51338,12533
+47878,50382,40897,12854,74962
+47879,14158,65153,4920,56342,1103
+47880,39328,33182
+47881,19124,2142,62802,77734,47484,56294,57857
+47882,53382
+47883,19181
+47884,30703
+47885,12055,19687,42894,81063,52883,34256,67726,2558,62661
+47886,55793,65617,44791
+47887,67755,46265,81246
+47888,13069,70976,51274,15989,51948
+47889,39740,39619,4344
+47890,56880,31872,63329
+47891,48488,58091
+47892,62780,3885,76440,72112,76563
+47893,73209,46952,39847
+47894,39234,11302
+47895,9822,28118
+47896,422,11483,61998,56890,20010
+47897,56544,17808,66685
+47898,25168,7050,49096,18481
+47899,56109,12831,6370
+47900,7198,26742
+47901,7636,38311,53836,66489,14853,75396,50316,14366,798
+47902,52541,21535
+47903,66674,39063
+47904,11195,55532,61086,29999,57798,67485,23854,5017
+47905,5496,22590,47632,56869,24497,65014
+47906,32474,50843,24882,66769
+47907,27865
+47908,21813,46442
+47909,26611,65524,1521,14373
+47910,58405,32496,11459,40414
+47911,57387,6093,14393,44748,10475
+47912,76762,36516,51704,74224,12520,37430,35107
+47913,31560
+47914,38878,71193,76326,43092,40503
+47915,81520,28545,21651,73693,30663,11743
+47916,68570,35486
+47917,2578,12312,41478
+47918,14336,4864
+47919,28420,32636,10766,46471,45392,8370
+47920,26840,45809,75399,5970
+47921,62705,2003,46915,22326,72518,50632
+47922,27051
+47923,49275,59114,81543,20729
+47924,33643,1566,50400,28222,28347
+47925,45374,14464,73151
+47926,38690,33412
+47927,20847,51009,61878,32084
+47928,55992
+47929,55132,64422,40044,6757,76964,23166
+47930,23732,32488
+47931,64835,57865,10590,3467,72222,56812,11015
+47932,74717,56088,49083,59427
+47933,44108,42486,45788,20367
+47934,3253,52206,7223,62292,75638
+47935,72838,10473,59882,4522,9297
+47936,26109,24211,73438,63819,62745,33735,24069,69205,43251,50391,79603
+47937,37773,59482,32347,81132,79093
+47938,17108,39311,79212,62015
+47939,75208,69137
+47940,527
+47941,73617,23954,43620,6649,61093,48948
+47942,76042,73255,50219,72372,47881
+47943,73728,38313,20374,81640,37698,62701,21305,19523,350
+47944,31311,25041,61173,42878,50416
+47945,29045,77552,24580,12022,66584
+47946,40406,8530,64975,51974
+47947,37445
+47948,78232,52258,68101,62728,71646
+47949,9564
+47950,44673,48431,14469,56376
+47951,32963
+47952,77129,81400,23739,33422,35135
+47953,610,67184,68809,66758,75994
+47954,5380,60620,44644
+47955,45632,55986
+47956,312,14831,24491,5370,43764,62366,15174
+47957,66959,8708,22642,9225,24463,52531,50585
+47958,4552,53551
+47959,14040
+47960,54116,12617,9143
+47961,44589,45064,17989,18642,72103
+47962,72620,44537
+47963,68809,66065,6730,77695,69205
+47964,15880,37064,1769,33653
+47965,76761,71081,57498
+47966,21787
+47967,2129,11967,72573,30743,69353,50341
+47968,59956,39147,80015,26086,48631
+47969,12162
+47970,34440
+47971,20468,59571
+47972,58548,73334
+47973,45493,37332
+47974,31527,81789
+47975,41751,55442,56721
+47976,51258,64914,41220
+47977,5738,21558
+47978,52401,78945,34523,26533
+47979,40242,24346,74523
+47980,49621
+47981,77222,51232,19508,64958
+47982,45490
+47983,18825,65313,27391
+47984,47484,6697
+47985,79869,65317,55938,23169
+47986,71892
+47987,12686,38451,46203,33005,22054
+47988,50941,52137,64993,34509
+47989,71965
+47990,35580,12253,23690,58327,23250,69170,57036
+47991,55295,60797
+47992,3984,22364,44636,24285,63640,57737
+47993,1988
+47994,66683
+47995,4445,40373,10067,40775,18244,59935,72330
+47996,355,2259,22431,80940,70613,44941
+47997,9609,23731,46055,51008,7419
+47998,81385,53830,70990,67729,74309,2290,64230,5750,8989
+47999,76824,29026,64447,13315,23766,48405
+48000,37275,79339,59006,67525,35684
+48001,33925,12466
+48002,65035,65677
+48003,3455
+48004,80393,52812,78733,53753,81660,27047
+48005,62531,40969,62016,6383,70293,56753,3247,51398
+48006,6705,25963,23634,40923,46816
+48007,43626,65871,25403,8523
+48008,14737,79372,27294,19918
+48009,52735,21973,8052,58164
+48010,14040,26698
+48011,81286,76941
+48012,15348,16396,78576,31289
+48013,48384,10,41374,74771,36670,65316,44159,34740,33480
+48014,17277,42826,72192
+48015,32849,68730,76726,53627
+48016,61261
+48017,70729,81217,59231
+48018,56215,9282,76902,6119
+48019,23687
+48020,78850,13708
+48021,72152,34049,25735,63745,20412,49890
+48022,21443,73231,56728,70958,77584,76388,61565
+48023,66047,35279
+48024,7719,27294,70710
+48025,56794,31595,60045,31483,5516,33125,24679
+48026,65200,24176,73884
+48027,44647,27451,81735,52067
+48028,69803,77333,81526,28113
+48029,53627,2103,30267,11231,8161,53277,62916
+48030,59678,26932,4719
+48031,32826,70807
+48032,67581,69435,29591,22299
+48033,4307
+48034,28845,75840,50601,65152,45014,73184,19034
+48035,60052
+48036,42932,11163
+48037,47090,66163,35630,40225,24569
+48038,68022,59995
+48039,58763,20032
+48040,15630,17996
+48041,35505,55637,80875,30142,74209,58581
+48042,5133
+48043,60692,6609,62765,60422,10896
+48044,63073,29266
+48045,50021,2407,65871,54448,44233,45421
+48046,23378
+48047,76590,64001,34960,58223
+48048,51378,58323
+48049,8206,66542,6822,39536
+48050,1759,41118,3473,45172,29849
+48051,71038,16885,16915,72813,40752
+48052,37595,15468
+48053,51241,69060,26920,26964
+48054,23873,53518,56206
+48055,25240,49258
+48056,11825,1476,14794,24489,20024,51298,36495,38043
+48057,64215,44388
+48058,66116,18130
+48059,36276,52913
+48060,57835,16193,43337,34218,8012,1124
+48061,10005,66399,27885,22179,56577
+48062,70534,5226,33993,32361,60703,52846,65569
+48063,2545
+48064,52850,51583,43015,24302,7304,27107,18112
+48065,54021,68135,48563,37072,58567
+48066,34260,60450,49893,59685,79511,65699
+48067,74538
+48068,68552
+48069,72402,11908,11489
+48070,53813,4955,49737,58660,43672,75692,29591,76698,74124,44875,10053
+48071,11442
+48072,70276,70262,47672
+48073,65168,56688,43631,19514,73664,15648,35590,79170,2923,5892,18136
+48074,65718,79224,21302
+48075,55598,69133,45809,27758,53442,16338,58002,30576
+48076,76369,58744,11215,12734
+48077,16908,75109,51866
+48078,66479,18895,70141,75361,1730,25991,76116,74006
+48079,4440,44674,28000
+48080,6537,19440
+48081,77048,31990,63211,70582,25351,79474
+48082,9457,25457,74272,41621,1560,7108,46525
+48083,42942,28842,5669,65459,77480
+48084,61726,67321,77921,81091,17008,45711,20716,53252
+48085,54417,79932
+48086,8012,48057,39702,42830
+48087,53712,8042,54748
+48088,26104,12034,29886
+48089,44215,69961,1265,4562
+48090,62524,62962,67651,5548
+48091,39578
+48092,19595,35979,7515,34428,14697,36083
+48093,74432,24782,10492,18236,70271
+48094,68528,45257
+48095,29544,82162
+48096,42504,41807,44343,15010
+48097,60014,79452,23353
+48098,40328,41509,50236,25225
+48099,34761,22885
+48100,32535,66583,9658,56277,28311
+48101,36112,77617,14729
+48102,66260,58693,3531,63701,13697,74148
+48103,25623
+48104,22059,25316
+48105,58017,29792,78050,6439
+48106,72786
+48107,50132,25314,16511,68069,65080
+48108,63289,5435,26711,18953,37448,53830,6756,33464
+48109,61724,54760
+48110,63548,77715
+48111,80128
+48112,22448,65158,16894
+48113,3015
+48114,75036,18189,63524,15732
+48115,10915,2796,14108
+48116,37669,56289,16134,53210,29864
+48117,66741,62453,77996,1741,23631,64914,30721,73139
+48118,70099,66055,79618,33938
+48119,21552,69738
+48120,7969,34113,70975,39065,52249
+48121,25718,3506,50517
+48122,59191,52394
+48123,49916,16031
+48124,77749,42835
+48125,45336,41561,62858,50058,40851,7942
+48126,72063,76903,65271
+48127,71309,38778,15913,43141,79504
+48128,45535,47530,59306,5206
+48129,23854,21865,46994,57254,23698
+48130,13814,65950,6810,62348
+48131,17696,44353,24082,80974
+48132,71721,25890,37116,66785
+48133,36745
+48134,79997,25143,31876,35351,23580
+48135,34972,71082,5063,58939,11433,57501,41224
+48136,49867,50910,77655,79695
+48137,25830,51358
+48138,70414,80316,63719
+48139,50154,34489,71691,7822,58552,71188
+48140,61840,65937,52586,67608,79659,81449
+48141,81814
+48142,81085,19359,3624,74062,45199
+48143,23311,64047
+48144,43105,65677,16395,22626
+48145,53917,36267
+48146,29690,4502,37592,72598
+48147,20129,25718,49270,45931
+48148,50328,32571,42618,47553,12551,40697,37204
+48149,71749,58783
+48150,11527
+48151,37058
+48152,46329,11559,39113,44451,11596,9527
+48153,79715,38029
+48154,34337,62470,29339,45431,8965
+48155,5026,31492,6447,74894,12982,81844
+48156,50465,23778,49345,29101,48721
+48157,72897,67382,69399,48522
+48158,60456
+48159,18048,44832,28883
+48160,36963,40274,8235,18885,51124,80054,6655
+48161,62155
+48162,22686,67728,46846
+48163,55325,33075,21550
+48164,76106,52835,40249,10916
+48165,71187,54101,35462,55246
+48166,61912,15431
+48167,13945,49893,82104
+48168,8545,55289,59948,74580,2361
+48169,81753,31934,62822,42011,30808,34134,58598
+48170,16442,33581,32255,2324,27849,18588
+48171,59439,53380,74509
+48172,11034,56812
+48173,15315
+48174,46471,59295,2355
+48175,57083
+48176,34223,35470,72758,397,14741,39887,69178,23969,4452,24499,61298
+48177,51623,49898
+48178,35457,32444,59970
+48179,39081,55040,44577,10505,67299,79362,66378
+48180,8155,62822,35227,66542,8843
+48181,5051,49516,70805,57559,34009,69933,25328,58487
+48182,37975,50941,54010,14541,75476,17001
+48183,75554
+48184,9606,74852
+48185,67795,7971
+48186,76480
+48187,67831,25209,1292,67742,46226
+48188,50306,73930
+48189,61110
+48190,24450,66063
+48191,2833
+48192,54910,21060
+48193,63064,28955,23821,65984
+48194,68548,779,38503,4943,36258,16892
+48195,74347,21096,76023,54815,4434
+48196,17643,66057
+48197,19870,11743
+48198,14917,32820,10395,56732
+48199,76640
+48200,46317,7382,71799
+48201,28296,4105,72379,14447,26581
+48202,55382
+48203,39674,76582,80876,31450,42674,49620,66726,5187,22964
+48204,39639,25832,19257,16921,19043
+48205,24747,73841,77823,16715
+48206,2461,31394,41695
+48207,63055
+48208,64490,70509,518,38170
+48209,34989
+48210,22289,39311
+48211,32681,21125,34263,33715,16364,49259,18571,64361
+48212,42194,20013,11181,15658,55375
+48213,32160,52110
+48214,39378
+48215,72510,15367,74087,24610,39814,15178,81903
+48216,48587,7620,34592,11163,26822
+48217,58710,20988,23449,12884,12760,36473,11645
+48218,14564
+48219,56532,21967,27984,22824,57563,31,7257
+48220,63144
+48221,16591
+48222,78467,29870
+48223,43027,67906
+48224,72076,73319
+48225,22351,68153,29090,43185,21813
+48226,81240,110,81366,78146,77546,63622
+48227,75163
+48228,26398
+48229,14027,73414,4600
+48230,83,675,9252
+48231,56526,2277
+48232,38943,8465
+48233,78162,64539,29465,32184,28153
+48234,20189
+48235,9010,59325,26864
+48236,12571,55775,80249,24046,26021,7314,4331,22145,68885,47520,6402
+48237,24258,78210,57436,1067,46150
+48238,29194,56892,20096,59940,81212,17125,34552
+48239,80819,74541,2866,27931,69594
+48240,44896,81704,43890
+48241,434,61185
+48242,16439,52972,45208,40958,47955
+48243,7505,35703,3326,1215,32538,24741
+48244,6886,68743,52254,18758,67675
+48245,60850
+48246,68373,18473,21228
+48247,5925
+48248,37782,6241,13203,64910,12142
+48249,53851
+48250,22639,39641,77866,9882,66793,18087,21267,6226
+48251,9363,42564
+48252,75603,64256
+48253,24075,26220,66659
+48254,48614,77786,75682,61541,80217
+48255,36107,79661,61874
+48256,32434,51878,6309,65274
+48257,540,4515,59286,32936,15061,4902
+48258,54503,11291,36344,23124,33420
+48259,73410,61116,5393,61959,71242
+48260,13260,81308,14484
+48261,40866,25678
+48262,79282
+48263,67775,42422,29020
+48264,9424,33432,36996,72003
+48265,23156,54059,24912
+48266,50463,24898,24122
+48267,71595
+48268,76472,64053
+48269,28594,2123,79089,56585,23887,81189,77912
+48270,17494,13035,57654,67476,63699,9818
+48271,3443,17183,33345,29568,52349
+48272,29293
+48273,42535,32523,1597,74001,76508,7673,42387
+48274,29042,27620,8857,78073
+48275,72174,12664
+48276,54415
+48277,40240,29542
+48278,6722,30712
+48279,28605,6537
+48280,18366,13841,65237
+48281,20103,39289,72707,51182
+48282,74247,64896,20017,30698,4991
+48283,73077,69167,40006
+48284,76406,28969,13742,23630
+48285,51552,60499,48429,5034,16645,47693
+48286,67201,23257,73742,12325
+48287,50249,68348,54422,22473,50489,57280
+48288,13112,35940
+48289,30743,23018,74274,59181,48346,44053,34823
+48290,77915,7302,78461,58309,67405,27185,9524,74373
+48291,38014,48341,39413
+48292,58542,15644
+48293,18208,50363,78269,14799,12280
+48294,8548,32754,75623,16972
+48295,30379,54341
+48296,36201,64844
+48297,69180
+48298,38295
+48299,19112,52160
+48300,34453,73042,30144,77203,80904
+48301,62985,49359,77543
+48302,45010,39265,52611,24523,50861,71132,81138,61899
+48303,65109,53264,56335,32670
+48304,68482,54929
+48305,40716,22164,50369,75119,79750
+48306,30656,38246,47719,71767,14150,4762
+48307,36372,49537
+48308,73204,6941,22756,49271
+48309,78393
+48310,9847,32801,74778,80138
+48311,78364,13278
+48312,21646,31007,60218,59874
+48313,20327,67101,78447,71862,15613,60692,30934
+48314,6265
+48315,42536,22185,60324,77935,56248
+48316,47977,59818,46202,73622,41447
+48317,29956,49101
+48318,15365,73461
+48319,28089,6345,51920
+48320,63385,64906,40278,78056,57420
+48321,16416
+48322,5844,45915,10753
+48323,24081,11919,31164,5029,5332,74782
+48324,64001,74348,38222,59681,33564
+48325,15563,6794,80754,65092,56061,74339,61627,67841,14770
+48326,57722,59789,4631,68313
+48327,45552,64095
+48328,51534,23968,50692,81790,39302,70756,77190,46090,40103,68414,6436
+48329,20388,20836
+48330,29397,71266,59876
+48331,6356,64001,45117,81993,31333
+48332,43453,77164,80903,19183,36253,7024
+48333,3248,66250,18174,20861
+48334,76229,48153,40012
+48335,66082,59177,68453,25166
+48336,43556,11838,76826
+48337,80867,1962,25853,17139,70974,18095
+48338,41837,23113,73149,36294
+48339,99,50354
+48340,28656
+48341,56915,35376,70367
+48342,19043,56888
+48343,47512,74576,13968
+48344,58183
+48345,60107,42443,39260,77537,72645,69525,62089,46336
+48346,44759,12946
+48347,53620,50321
+48348,63670
+48349,13837,36277,39426
+48350,45229,49984,57196,14052,79348,31316
+48351,50098,28315,19718,64037
+48352,25030
+48353,60547
+48354,19814,80073,2686,73658
+48355,59466,27570,69740,70935,73901,697
+48356,55793,35268,77834,44276,11068
+48357,68091,47891,23097,34836,12208,18958
+48358,69430,72735,56361,46201,27141,57901,47687
+48359,34484,53611,76877,21000,69803
+48360,53373
+48361,56153,54545,23989,53465,14283,76736,51467
+48362,31830
+48363,2482,3387,30103,75306
+48364,44818,57914
+48365,72796,77147
+48366,65412,57601,29747,77286
+48367,25696,66107,26674,39176,1937,24933,55832
+48368,10749,14434
+48369,62054,60556
+48370,60099
+48371,69682
+48372,49516
+48373,60274,41117
+48374,65524
+48375,62617,50927,10178,39063,29803,46834
+48376,14834,79173
+48377,36375
+48378,58863,13609,60073
+48379,3705,49195,81810,53008
+48380,43801,29005,24366,28958,3423,38867,81359
+48381,66844,58861
+48382,45915,29796,12982,59146,27343,67341,71278
+48383,76846,17207
+48384,44151,41695,72156,33999,46066
+48385,12187,6586,62294,64400
+48386,64597,66310,80062
+48387,64485,4048,72162
+48388,40267,76691,18002,70582,51888,7848
+48389,24099,4757,76436,40806,66017
+48390,25072,60760,31007,27996
+48391,3637,24978
+48392,64926,14998
+48393,18528,18097
+48394,5360,40145,81655,39791,3748,65684
+48395,25298,40150,68084,33356
+48396,58232
+48397,42767,70091
+48398,16614,11123
+48399,43264
+48400,816,80368
+48401,63889,7922,6392
+48402,70642,80322,32532,5984,7121
+48403,39316,38979,9215
+48404,18119,54179,22715
+48405,14086,56328,73396,69696,82014
+48406,69343,35938,14386,27678,53604
+48407,62310,77556
+48408,34305
+48409,7530,2001
+48410,54339,1278,79763
+48411,3251
+48412,64229,3845,64023
+48413,50536,40325
+48414,47620,32839
+48415,70099,42464,2838
+48416,37546,71357,44310
+48417,24400,12358,40791,20424,80873,76567,80821
+48418,1160,26083,12312,71927,11422,69661,51898,1381
+48419,22404,73540
+48420,57806,44133,25615
+48421,24340,36572,32778,79201
+48422,66312,14220
+48423,60451,69534,43606,75239,23412,39813
+48424,62155,76664,41308,64637
+48425,58747,40359,67963
+48426,38295,65709,5035,53593,24674,11171
+48427,52838,40335,75210,61575,41011
+48428,75880,31421
+48429,27861
+48430,44428,15566,11738,47171
+48431,68698,81654
+48432,34144
+48433,42866,77671,6237,35029,26445
+48434,50196,69840
+48435,24164,77089,5970,1770,38125,22257
+48436,46017
+48437,72317,18654,25207
+48438,35996,22381,25710,29156,72926,38606
+48439,60995,6356,48799,20860
+48440,16456,23805,26627,24562,57997,10979
+48441,46681,20636
+48442,4303
+48443,78100,58452,68209
+48444,11830,55129,4030
+48445,26640,36382
+48446,46941,63475,56963,74201
+48447,53064,47765,36444,55603
+48448,52800
+48449,59684,77876,49667
+48450,51887
+48451,30711,44021,73369,25106,20943,10141,30169,16498,47555
+48452,62059,50339,22090,43404,59496
+48453,33301
+48454,54677,47690,62905,72948,61721
+48455,32722,19035,11477,28815,17229,60514,74692
+48456,20565,37145
+48457,17129,73017,764,10655,75882,50059
+48458,35106,79469,76000,53111,40741,48383
+48459,56979
+48460,26134,53856
+48461,53449,35245,68410,48284,19312,7331
+48462,40394
+48463,36188,35832
+48464,79232,28880,72323,68768,75473,35456
+48465,75676,40750
+48466,57991,67177
+48467,16836,25993,32891,32903,40023,42621,32840
+48468,36220,37438,1816
+48469,81562,35610
+48470,71165,40763,35251,29987,76555
+48471,48603,68910,77043
+48472,48143,5643
+48473,20380,40045,66789
+48474,43822,27274,12124,78399,40493
+48475,12261,62055,61208
+48476,20897,60029,68045,65273
+48477,55898,61959,76134,47138,63746
+48478,67502
+48479,21423,28585,16448,43895
+48480,56257,42989
+48481,17394
+48482,32479,66465,24274,23572,24441
+48483,29891
+48484,32429,65494
+48485,15976,6616,20968,43429,19026,52980,45553
+48486,54134,56145,68781,80641
+48487,48206,31274,8378,55350
+48488,27517,26744
+48489,3292,3614,10288
+48490,14552,54919
+48491,10182,66447
+48492,78662,12394,66236,75608
+48493,24717
+48494,37302,3629
+48495,38124
+48496,51796,11037
+48497,16415,34635,7791,8988,63704
+48498,45235,74620
+48499,28742
+48500,39429,16550
+48501,53606,51543,68168,8074,47229
+48502,76809,9202,52403
+48503,32466,81601,26215,51719,32561
+48504,78733
+48505,36181,45262,64692,47648
+48506,24333,41835
+48507,49923,22362,7641,37437,45724,71033,26184,53476
+48508,72124
+48509,40014,33128,69444,16527,55766
+48510,71287,12716,20557,34186,59534,27324,32392,76835
+48511,68395,40663
+48512,24550,8212,74649
+48513,8174,39054,48413
+48514,31740,5029,17896,54753
+48515,4415
+48516,66693,7372
+48517,7273,73925,30461,45085
+48518,39044,45335,37346,53459
+48519,42177,6901,34036,65838,62858
+48520,24503,63763,26913
+48521,1954,22271,41127,21649
+48522,35199
+48523,44336,34903,41222,44094,55843,3296,69018,81170,65792,12408,57345,5352
+48524,61421
+48525,28656,19482,30512,71514,16788,47152,59686,46472
+48526,14060,38508
+48527,34201,15317
+48528,15618,51262,12721
+48529,44631,17319,9678,77164
+48530,15163
+48531,61729,27033
+48532,25542,9654,19309,64025,15587
+48533,53872,13405,13761,71718
+48534,66572,29468,20334
+48535,72042,60056
+48536,64740,48340,57785
+48537,37747
+48538,61815,74863
+48539,45649,44641
+48540,65601,56927,44565,50643,78208,32220,34034
+48541,63012
+48542,53677,74071,52418,69791,60884
+48543,42536,77699,49213,46707,64729
+48544,35419
+48545,17876
+48546,46583,22590,77755,18190
+48547,24799,34591,3875,1660
+48548,72826
+48549,16458
+48550,30922,79987,68795,15997,50423
+48551,24308,61958,38591,36764,3659,37083,38352,28400
+48552,53486,37446,59483
+48553,14240,420,29625,25499
+48554,13296,64806,61397,51561
+48555,55342,24051,81823,2366,51249,4821,24064,80977
+48556,51876,36639,59048,58669,61211
+48557,59043,66548
+48558,34220,23576
+48559,28847,23962,34319
+48560,38760,48330,45638
+48561,18639,63471,59438,3918,57024,13785,47639
+48562,56728
+48563,62454
+48564,81077,1969,13467,2027,13816,47709
+48565,1112,3806,78886,68807,37397,10518
+48566,29393,53629,50178,74090,35095,13095,66583
+48567,21002,28568,13940
+48568,69340
+48569,49598
+48570,19845
+48571,78883,237,27599,29336,40400,57837
+48572,1593,22512,4066,56261,49397,54156
+48573,40700,25678
+48574,60528
+48575,72989,40831,17750,66946,34526,52375,60522,29633,46650,20569,74768,6862
+48576,12677,7860
+48577,24701,8012,3905,75334
+48578,39668
+48579,58702,50114,18152,70875,55132,46260
+48580,59992,77050,66172,62267,74564,60153
+48581,20792,70401,57973,27770,65031
+48582,79697,29764
+48583,8928,77803,4936,4803,20584,81037
+48584,26510,41111
+48585,34665,37693,76636
+48586,51128,4354,65773
+48587,41859
+48588,47348,6152,22332
+48589,4994,50810,76015,52952
+48590,44868,43201,59959,47979,36378
+48591,48331,78942,75840,42490
+48592,14007,23476,25755,45103
+48593,54101,9984,45843
+48594,38377,32252,9683,8256
+48595,56091,13696,79510,5110,53777,54526
+48596,37004,45672,60216,54654
+48597,45884,17322,17737,54969,24854,73461,22868
+48598,72461
+48599,81100,9165
+48600,14049,61698,57332,72712
+48601,34535
+48602,56226,72110,81134,64463,37267
+48603,23937,35766,6320,17964,31303
+48604,79266,35519,75503,78463
+48605,43791,50213,71227,37992,64319
+48606,41272,76486
+48607,28031,8040
+48608,80976,80842,46568,35678,3069
+48609,8490
+48610,47793,27758
+48611,26733,79737,74050,71377
+48612,62517,1681,1847,56202,38262
+48613,20631,75147,2429,34748,38737,16370,33415,6982
+48614,48471,53120,36817,72304
+48615,9824,23624,67151,79855
+48616,16064
+48617,4032
+48618,40401
+48619,4728
+48620,42019,11786
+48621,39892,40999,2641,42613,13801
+48622,37659,37853
+48623,80075,27430,35551,45359
+48624,52284,70111
+48625,78867
+48626,65898,19390,17447
+48627,46485,54293,71506,38020,9384,29206,52496,32411
+48628,4460,82034,79262,80906
+48629,21648,22805,13631,56328,13323
+48630,64888,66968
+48631,46615,78610,12658,75441
+48632,80959,77275
+48633,45311,50217
+48634,71619,58912,36403,81374,20184,76253,53425,11464
+48635,24494,39832
+48636,77984,81397,32156,9043,81898,75741
+48637,71997,46131,31755,19856
+48638,16126
+48639,40860,11765,6935,23354,15406,38965,47715,21386
+48640,2851,18241,81101,12463,9507,9743,14357,74445,52587,48262,61042
+48641,17334,54036,31387,29970,47846,37658,23805
+48642,58815,79423,73242
+48643,15613,5847,3640,24057,5284,62697
+48644,71882,31179,13413,3446
+48645,72971,76158,61081
+48646,70905,59147,42779,77845
+48647,34615,72572,10637,61796,69231
+48648,73661,4708
+48649,34198
+48650,66040,59312,37578,78639,44789,45915
+48651,55061,7229,15939
+48652,62320,30188,41360,81275,35791,71575,12248,24739,54071
+48653,34350,14650,42510,27752,39109,681,46157,13412
+48654,38049,54128,14960,48847,41725,54146,24050,55107
+48655,79296
+48656,73528
+48657,12986,70648,50365,20106,37809
+48658,48272,15260,63139
+48659,22252,42247
+48660,64052,12242,72877,76356,61603
+48661,38120,1536,12154
+48662,63206,76476,17046,2752,64819,62996,22683,80038
+48663,62427,36737,8702,1155,70558,81298
+48664,79345
+48665,76800,47062,6811
+48666,72784
+48667,58957,63387,59380,55752
+48668,49076,13169
+48669,4925,75160
+48670,26072,72103,60157,6891,65543,16521
+48671,14892,49609,81545,74197,22424,54968,26759
+48672,69325,12654
+48673,41117,79635
+48674,58814,41434,52075,63366,9628,37881,4172,44385,67581
+48675,41884,45716,1846,5658
+48676,24959,41880
+48677,33879,47066,70858
+48678,8654,70973
+48679,61740,52359,34548
+48680,41187,58553,48613,26740,43108,47380
+48681,46364,80275,67695,36364,53557
+48682,9526,23857,80829,57406
+48683,53746,17138,51012,19863,24964,31528,67741,35132,28270
+48684,42771,26258,42557
+48685,82167
+48686,20762,66718,41546,33925,4457,67041
+48687,29162,61884
+48688,6548,23624,22636,74352,39516
+48689,31867
+48690,81151,18528,60893,58851
+48691,12649,17808,4075,40380,79698,70171,22531
+48692,79621,78832
+48693,63902,24973,32537,70119,70883
+48694,73739,58016,42309,9252
+48695,58296,16603
+48696,75459,77026,45005,32302,23529,49655,21099,67095,62403,21545,76878,54270
+48697,70436,3018,15169,7155,36060,34644
+48698,73772
+48699,19360,35592,28621,78665,69148
+48700,41983,58916,12846,13343
+48701,1886,72674
+48702,25947
+48703,519,66844
+48704,12967,57582,79763,1105
+48705,9211,54511,34021,10952,36916,20427
+48706,9731,75134
+48707,47365,15262,78663,14442,74843
+48708,3513,17422,75838,78661
+48709,37101,12153,5574,39528,61532,971,47964
+48710,41732,78451,64169
+48711,58277
+48712,23857
+48713,5115
+48714,51754,7382,31421
+48715,16772,59542,9321
+48716,12688,20975,46224,47571
+48717,60306,70790
+48718,14511,25897,59567,72129,73310,24794
+48719,26628,23118,64202
+48720,5245,76925
+48721,72344,66564,25666,70998
+48722,3230,73510
+48723,69224,44501,21667,31188,10285
+48724,71555,66169
+48725,39742
+48726,8322,63127,27523,18372,7688
+48727,17571,20836,10017
+48728,20306
+48729,64952,44868,26838,62734,44518,8080
+48730,57823
+48731,50494
+48732,63939,25069,80777,77631,26169,5313
+48733,60069,23470,25426
+48734,52336
+48735,37204,61660,9321
+48736,53301,77937,35414,33186
+48737,51684,32306,47154,76172
+48738,24487,73785,62441,80841,72315,80012
+48739,55874,13768,28600
+48740,8644
+48741,72707,4805,59927,54426,67615,8942
+48742,13979,51489,11494
+48743,18164,70931
+48744,8385,62495,52350,29408
+48745,77625,6018,29747
+48746,70395,41443,33366,14552,42223
+48747,66564
+48748,49621,58291
+48749,52217
+48750,16870,71362,31719,80642
+48751,47353,70245,27730,20782,57802,4061
+48752,38243
+48753,31228,52461
+48754,77385,8236,31937,13405,25299,73531,22036
+48755,62095
+48756,25333,33569,28502,34871,18602
+48757,11123,2442,43836,46013,4307
+48758,79901
+48759,24997,25217,9303,69202
+48760,56743,35719,3990,185,38273
+48761,43973,2843,45766
+48762,402,76463,7100,71460,65269
+48763,66555,22808,28155
+48764,16718,9241,74017,64604,44847,20513,27289
+48765,55507,45437,31297
+48766,1003,20637,51597
+48767,30145,61383,63367,37309
+48768,21201,69168,20078,25845,72543,3675,29540,4454,59772
+48769,24928,25337,4480,40798,68452,76629
+48770,40193,54041,75883,43966,65889,36081
+48771,81661,47390,33755,46426,20780,46052,959,78625,3492
+48772,51148,49789
+48773,3691,48286,18216,58483,13166
+48774,13495,77011,51849,986,41186,25779,8299,63959,61771
+48775,23609,76517
+48776,37487,54021,16401,28526
+48777,31192,69017,69381
+48778,51905
+48779,28468
+48780,44410,21577,24463,57730,4672,73017
+48781,30699,15337,17574
+48782,55600
+48783,59878,69439,20646
+48784,55722,24631,17206,29244,60713,71984
+48785,5268
+48786,55394,2050
+48787,11186
+48788,42601
+48789,22035
+48790,22843,50218,1986,50119,25613,36570,5844,81340,5642
+48791,24989,47454,37983
+48792,34441,18064,37258,55707
+48793,71624,22621,10936,76878
+48794,73276,11672,48727
+48795,68377,80607
+48796,64551
+48797,12360,70032,74157,60930,5406,71479,71824
+48798,53321,81352,18482,54187,75367,4601
+48799,30807,8036
+48800,5523,51256,14200
+48801,42251,28288,62116,8741,28270
+48802,41978,25213,59315,30725
+48803,14468,17245,66336,15027,77027,1401
+48804,59945,47907,2388,21471,54238
+48805,19910,37546
+48806,59028
+48807,198,76929,63670
+48808,75401,11859,35373
+48809,23937,4265,41309,8781,45495,4290,2523
+48810,71931,26434,19529,8949,48691,10738,47998,29169,64753,67818,51678
+48811,30233,16237,59581,35007
+48812,22809,17415,50372,41927
+48813,44367,71798,61305,66699,45628,25656,76480,45140
+48814,13938,58861,35467
+48815,23877,10223
+48816,12167
+48817,66182,27693,32963,20034,28038,4868
+48818,42062,50943
+48819,7627
+48820,47523,69993,53447,56338
+48821,6342,8074
+48822,62800
+48823,10000,32846,40509
+48824,46546,71505,36250,35464
+48825,19593
+48826,11415,75341,60904,20744,69418
+48827,67909
+48828,73222,22097,7028,65365,47103,47876,52192
+48829,73539,15260,21677,62301
+48830,54688,62447,39445,45848
+48831,69769,79370
+48832,74876,82099,24681
+48833,67110,2850,78581,45543,64804
+48834,17636,26316,79964,68203
+48835,44924,24413
+48836,31589,75133
+48837,28094,70960,26510,29909
+48838,70396,3138,21162
+48839,35412,58957,79936,69406
+48840,65502,44026
+48841,75688,66895,70629
+48842,47505,64110
+48843,56334,11772,56593,73451
+48844,8995,28559,61555,546,45912
+48845,16536,41993,16122,5221
+48846,50849
+48847,41108,9851,40954,9510
+48848,46391,36729,19820,44369
+48849,72887,23107
+48850,65864,38782,19248,40952,33928
+48851,1349,19409,23500
+48852,60604,43623
+48853,58614
+48854,14936,47611,67884,59861
+48855,18670,40593,31623,69098
+48856,44250,29099,54545,30064,3927,18716
+48857,36509
+48858,65323,57209
+48859,14419,46151,944,64165,19341,868,46685
+48860,1793,23522,14182,50032
+48861,44689
+48862,18885,14287
+48863,21677,81336
+48864,67884,33647
+48865,71098,45630
+48866,34200,80887
+48867,20714,3802
+48868,30528,9141
+48869,79618,64573
+48870,9890,3733,28844,64208,49008,7306,54260,27387
+48871,12643,81439,55638,6823
+48872,66242,58403
+48873,29370,25857
+48874,7925,12726,68347,18850,13479
+48875,11780
+48876,5555,36075,52489,1831,52281,22549,37647,78842
+48877,58978,40460,71335
+48878,7772,40005,42580
+48879,61269,61271,22086
+48880,78044,19636,14646,24060,72019,76176,63982,54633,21170,79482,60419
+48881,16062,22625,12342,61808,81873,75416
+48882,44764,74095,42301,81681,42148,72033
+48883,52137,26664,65404,1008
+48884,37524,70280,48695,16280,56357,62365
+48885,60867
+48886,45254,7299,51451,36018
+48887,18067,42822,25061,1424
+48888,42383,75251,2553,57401,2981
+48889,59907,77550
+48890,75966,66683
+48891,13622,41502,46654,71348,9905
+48892,38586,40162,35864
+48893,5597,14779,857,7522,10271,79558,61639
+48894,40687,77238,19152,43607
+48895,67640,73713,29742,26662,42530,10927,61615
+48896,46217
+48897,25486,25202,62056,13987,19104
+48898,52589,43112,58371,58343,55594,80057,53958,1404
+48899,34531,14144,74565,77179
+48900,47780,48745
+48901,7963,11681,72416
+48902,57760
+48903,5853,64001,8010
+48904,4032
+48905,46731,8287,39749,58894,62465,5422,12973,64011,57698
+48906,28592,22887,22212,20235,32139
+48907,55915,61022,3454,5555,32571
+48908,22524
+48909,49117,38672,2319,286
+48910,50552,40525
+48911,67411,5005,27683
+48912,64106,29944,2554
+48913,33001,67213,42884
+48914,36990
+48915,56356,23432,19670,28925,25704
+48916,60402,26917,62628,8725,81673
+48917,20591,37457
+48918,28029,39950,76219
+48919,29847
+48920,48830,63678,64600,38718,77854
+48921,5984
+48922,62870
+48923,57094,72714,3942,20032,4116,18485
+48924,12421,7231,50612,36799,67706
+48925,36739,11203
+48926,81933,13045
+48927,60637,63050,74874
+48928,41199,2914
+48929,63860,65802,73912,49426,54725
+48930,35383,70356
+48931,60311,10497,25066
+48932,22453,47926,13751,45954,12378,19163,71371
+48933,22370,47958,49386,2266,26328,56473
+48934,48133,67859,37141
+48935,2769,30374,39018,71616,62897,62432,17833
+48936,55188,52519,65174,7487,45163,67602,48406
+48937,38789
+48938,17763,29006
+48939,61192,29690,14047,6011,20808
+48940,24981,33739,65240,61859,26866
+48941,35618,56721,41489,16596,14615,35891,59470
+48942,74116,10368,20759
+48943,12325,68685
+48944,76207,2390,9303,39507
+48945,18075,75445,79385,5245
+48946,62750
+48947,30313,27958
+48948,50786
+48949,72821,9569,19896,57933,42112,14439,80666
+48950,3573,12527,55684,69027
+48951,34198,67720,66911
+48952,30361,3620,80437,20544,3822
+48953,24451,56278,63801,39471
+48954,27914
+48955,31726
+48956,55768,23019,64130
+48957,69722,30889,17875
+48958,27581,3255
+48959,44501,1861,77422
+48960,37073,60684,78232
+48961,60709,24817,80879,50587,1814
+48962,31732
+48963,1274,74033,43805,75049,5278,65543,71214,26824,8331,42831,66324,40275
+48964,36635,73393,54191,37453
+48965,60035,37830,47100
+48966,75834,41478,54491
+48967,50382,29218,41354,36288,24394
+48968,23875,79176,76711
+48969,10195,7971,60992
+48970,64336,63805,42241
+48971,59554,47445,42259,56397,25645
+48972,69800,35742,29967,42185,15093,72904,74022,37681,51381,18363,81232
+48973,13031
+48974,76639,64462,76925,2149
+48975,22602
+48976,9209,23558,16573,77934,19466
+48977,70518,40700,72710
+48978,13087,59229,37151,30230,4246
+48979,38439,43339
+48980,62116,4769,41027,46551,73696,57010
+48981,18626
+48982,76625
+48983,68358,14284,81240,54950,56665,26464
+48984,27345,15239,49391,23116,71535
+48985,78526,61509
+48986,24844,76124,16933,48638
+48987,68480,51221,50619
+48988,3641,76984,61978,40920,31296,77210,49790,9994,48945,80883,36496
+48989,30550,67569,23113
+48990,33538,11796
+48991,7405,81463
+48992,79085,3525,57761,45494,4974,9115,39459
+48993,11768,9527
+48994,63573,50757,16880,32465,56397,64509,18411
+48995,43225,7496,9511,47342,16906,25958,25386,7750
+48996,49807,59035,74989,20754,627,13944
+48997,59011,32895,55808,32495,70620,59790
+48998,16639
+48999,78923,82079,67305,79810
+49000,16898,47699,37369,38568,71722,59264,4114,50566,32205
+49001,46844,13671,71180,29289
+49002,36960,75498,68161
+49003,70875,9051,66330
+49004,2808,36270
+49005,49197,25522,67705,73827,26868,17000,3137
+49006,36464,57974,76592,46937
+49007,59191,16516,60504,20406
+49008,66786,16140
+49009,24517,18880,9296,69642,24212,47583
+49010,12888
+49011,20015,16129,63806,52752
+49012,11743,16808,80323,72766,44537
+49013,56821
+49014,35947
+49015,30424,63135
+49016,60014,14280,68498,49174
+49017,49914
+49018,12901,22523
+49019,37964
+49020,35057,2802,66920,79539
+49021,30646,73305,54279,17663,57967,17909,6264,27585,22983
+49022,18589,76408,27891
+49023,44490,67651,35854,32308,9859,47208,70092
+49024,5333
+49025,35457
+49026,50363,34570,23671,72313,63883,50153
+49027,7435,38999,47825
+49028,68343,9095,25824
+49029,1992,33370
+49030,79987,45990,47291,15865
+49031,82084,40335,23936
+49032,64864,56939,50705
+49033,20738
+49034,65816,639,360
+49035,80160,58215,12615,16524,56007,24128
+49036,73472,63536
+49037,22373,44321,15976
+49038,54159,55234,11836
+49039,62936,11390,11427,3778,13001,16524,38247,82188
+49040,44106,74607,61250,70379,21423,44478
+49041,73692,30698,68772,39045
+49042,21567,32480,3369
+49043,15281,54590,20469,73761,58764
+49044,65320
+49045,28975,22352,38858
+49046,38095,65558
+49047,730
+49048,19923,64354,16012,14872,79813,47316,24258,25771
+49049,56719,59315,31485
+49050,5350,42683,17141
+49051,76745,4061
+49052,14369
+49053,43546
+49054,12047,66472,63393,43763
+49055,56021,14235,26007,49142
+49056,26511,81432,35689,60668
+49057,55401,69484,71034
+49058,67445,76032,31441,68627,38782,40981,59950,80037,33272,31732
+49059,23365
+49060,2004,23088,54429,40325
+49061,21766
+49062,76626,24698,16166,66541,61590
+49063,65520,51850,54874
+49064,28382
+49065,15154,57719,72910
+49066,77457,46768
+49067,18054,24038,22575,22221,44770
+49068,77310,50418,15492
+49069,29732
+49070,46762,72362,75579
+49071,55489,11367,58042,38397,28847
+49072,34763,26013
+49073,2561
+49074,23824,21237,1509
+49075,56943
+49076,68753
+49077,1278
+49078,40361,13159,1769
+49079,20064,3922,69340
+49080,33875,69646,8206,60621,77413,45648
+49081,18553,14250,80272,28120,8454
+49082,554,31563,31493,52714
+49083,70268,14589,37205,36253,38627
+49084,8967,16773,3848,59415,19827,44810
+49085,51703,71524,79667,28400,5898,81040,58096
+49086,8431,38411
+49087,26210,70055
+49088,15892,54683,66614,53562,18477,15284
+49089,26413,19042
+49090,37260
+49091,80466,60989,18918,34901
+49092,44256,48035
+49093,80400,24534
+49094,12543,30548,16993,31566,15538
+49095,5543,54620,74706,62262,40803
+49096,18256,28918,21991,74932
+49097,32359
+49098,22257,26027,28620
+49099,57931,37956,79516,29926,75121
+49100,12705,20458,73331,19599,4060,10308
+49101,3666
+49102,11067,77793,15325,14212
+49103,3106,28965,49693,15189
+49104,22785,56591,44310
+49105,32586,75807,56718,50442,75698,17889,44388
+49106,17029,36696,9655,26778,3310,1363,11381,58865
+49107,46626,32155
+49108,2590,12287,61815,41438
+49109,25292,77856,67364
+49110,57998,77612,58967,23770,29915,77617,11270,1967,32979,21309,24994,36803,54111
+49111,43056,74649,52699,78476,19124,46320,31449
+49112,15406
+49113,52590
+49114,57250,8854,62910,14973,3485,22236
+49115,79314,32495,33703,41020,55795,25135,15210
+49116,23554
+49117,47674,22773,26696,38723,18506,27114
+49118,35679,65749,50719,60091,4744
+49119,49994,18939,19065,26553,22989,22651,18685,59746,54646
+49120,46161
+49121,79055,3847,49807,36976,65252,54927
+49122,81054
+49123,3439,14874
+49124,27982,40658,68895,8473,26803,12206
+49125,21799,14023,41692,55405,80138
+49126,37336,62114,69775,53743,78673
+49127,4473,80492,55813
+49128,57225
+49129,55501,77294
+49130,29354,18365,73291,21965,59267,31905,50507
+49131,46717,63376,39541,42826
+49132,1847,61491
+49133,39418,61384
+49134,17248
+49135,53584,22958,11695,33139,71730
+49136,62535,79258,3911,28621
+49137,6821,79397
+49138,46240,50777,30234,69610,47251
+49139,33242,58077
+49140,46110
+49141,39924,72288,3135,34436,77600
+49142,12603
+49143,22967,79945,28878,80392
+49144,2709,72911,66260,80996
+49145,15862,1542,68219,28468,29325,11704,78996,25821,19542,78301,76815,79808
+49146,66867,5638,50905
+49147,69630
+49148,60813,44746
+49149,61287,22049,45525,53975
+49150,50500,35633,39671,40574,25557
+49151,19987,42366
+49152,43622,24379,75132,59012,71915,27569,71321,30106,63921,74532
+49153,53215,1995
+49154,20414
+49155,67670,10613
+49156,23713,35648
+49157,75805,18391,43747
+49158,27754,56808,17432,51309
+49159,62048,46937
+49160,25895,64802
+49161,27535,14448,57947,74439
+49162,18046,69827,10988,52779,81224,23521,38678
+49163,33060,15361,48175
+49164,71483
+49165,2635,65809
+49166,44724,78739,42528,53999
+49167,36938
+49168,33001
+49169,54327,67885
+49170,81998
+49171,66661,24892,72775,15937,43067,8336
+49172,31398,37874,77254
+49173,472,52726,34824,1664
+49174,45924,39220,78808,45123,58374,51862,52860
+49175,70770,69797,80707,45961
+49176,76965
+49177,18585,64809,79739,67779
+49178,57542,8348,70883
+49179,47657,69287,49333,20005,77323,22931
+49180,53081,81011
+49181,59099,28466,46397
+49182,46572,34261,72209
+49183,34333,61187,46440
+49184,11048,70564,8883,25043
+49185,3520,79543,4733,47704,5282,79367,39667
+49186,57245,74403,14714
+49187,43670,80179,48019,22910
+49188,28512,9998,69674,72234
+49189,37822,59869,49704,23361,72749,30715,69142,32939
+49190,78717,18182,31613,19799,1198,1348,20148
+49191,39374,53120,26452,47073
+49192,40452
+49193,2431
+49194,52254
+49195,54676
+49196,46073,57711,23109,5678,12396
+49197,52919
+49198,38356,54973,4519,39335,33152,58228
+49199,49020,77868,48058
+49200,29586,55181,33063,73571,54633
+49201,56979,77630,71662,50333,73221,1517
+49202,10882,6911,46272,41555,5330,26711,56169,23336
+49203,5896,68747
+49204,58162,47082,5523,1083,50545
+49205,25704,51009,33608,17216,36635,23303
+49206,10259,64439,23733,858
+49207,58249
+49208,44949,26053,80977,1943
+49209,66024
+49210,70945,79370
+49211,32803,23802,6860,35666,30066,18185
+49212,13349
+49213,55216,50722
+49214,31428
+49215,8908,63894,50977,76659,14711,42053,74118,76198
+49216,27509,35924,59015,68008,77030,27782,60463,39074
+49217,70870,48481,77868,68021
+49218,8350,38694
+49219,45518,31505
+49220,44500,32209,64223
+49221,63293,39849,82111
+49222,52239,53599
+49223,13101,13668,64696,56364,72167
+49224,52062,11482,73968,54962,81221,13819,15615
+49225,52824,55044
+49226,76379,16711,35154
+49227,19441,12141,62054,18661,71404
+49228,71833,60365,55947,61070
+49229,69423
+49230,4066
+49231,54962,47093,14129,81264,50187,6250
+49232,64142,66995,74329,72170,30231,28516,80978,63300
+49233,15036
+49234,81318,15679,73710
+49235,27103,80406
+49236,24488,66684,38267,55737
+49237,37872,11908,73231,17207,68354,36086,68476,53571,37459
+49238,67387,6863,38284,27996,47914
+49239,35672,7513
+49240,51000,41083,53902,26591,47440,12301,39051,7758,29224,54868
+49241,40264,66379,81477,13894
+49242,69616,37870
+49243,6869,45624,10440,23709,71939
+49244,22176,22984,15262
+49245,23129,40643,30302
+49246,30818,20118,41694,28069
+49247,2482,25156
+49248,47171,44810,69730
+49249,21789,5848
+49250,77166,68721,110,78527
+49251,10463,50400,30626,26698,51408
+49252,56709,52903
+49253,42375
+49254,76542
+49255,45896
+49256,36494,52850,27076
+49257,15468,45013,38305,57527,60915,57517,39440
+49258,78343,14611
+49259,33119,48403,37103
+49260,78357
+49261,18867,79218
+49262,17570,21006
+49263,54101,46186,31261,2762,31831,18533
+49264,19373
+49265,66509,38684,31074,77717
+49266,30703
+49267,30057,18471,23747,75292,20400,61973
+49268,3212,63988,47371,75641,37869
+49269,30381,9668
+49270,39296,30549
+49271,1976
+49272,67231,43930
+49273,66486
+49274,4066
+49275,38714,12,17884,32629
+49276,47959,36049,75608,81578,43363,65448,76904
+49277,45956
+49278,5905,14505,15247,43594,15169
+49279,60769,74744,20107
+49280,59727,5202,3116,53029,62008,82154,69819,32839,68703,69237,53515
+49281,41641,32721,66264
+49282,42695,33544,73746,46262,59606,6478,20428,50418,10198,40220,11075
+49283,13409,43805,59798,56220,12806,44385,54976
+49284,4331
+49285,11417,40462,38932,35693
+49286,61014,54564,70187,12388,47704,66291
+49287,12743,21547,59693
+49288,52633,25092,68186,41598,12508,6475,25760,23685,3492,79527,25202
+49289,77681,26997,1296
+49290,46327,75517,52915,30438,2343,63869,31866
+49291,68565
+49292,78700
+49293,50756,14556,35504,41313,44797
+49294,24937,30865,60614,50614,11400,26769,30954
+49295,72773,12805
+49296,10061,64630,12243
+49297,77440,30654,64702,31902,49365
+49298,23922,40878,29601,51092
+49299,37380,64829,44702,48115
+49300,59832,26131,12393,55435,944
+49301,60007,48874,34021,62296,47758,79513,11371,14337,9905
+49302,52699
+49303,55908,59676
+49304,22293
+49305,8129,65702,6523
+49306,77000,29349,54620
+49307,53171,13906,63254,10850
+49308,71865,30950
+49309,28461,74544,27159,26422
+49310,22829,47672,78761,52798,46071,34197,53273,80039
+49311,39434,40629,52951,46783
+49312,45915,61656,7992,2287,51575,51455,9313
+49313,51105,12223,58744,48370,35717,56796
+49314,24193,80238,21917,14381,52648,54612
+49315,62709
+49316,72243,25417,7779,39116,65236,9281,34928,49549,25600
+49317,73302,34636,17682,7932
+49318,27371,42866,47668,55644,75468
+49319,74761,42151,23222,11218,16768,72900,41615,13499
+49320,26457,77310
+49321,79598,41202,19167,33090,72026,62564,41326
+49322,75060,59352,2645
+49323,16510
+49324,3999,58584,51383
+49325,20430
+49326,35569
+49327,8754,11707,64251,55392,71839,28029
+49328,35373,65862
+49329,10248,31953
+49330,81834
+49331,68002,58277
+49332,46140,197,70031,48849
+49333,62892,52729,25379
+49334,6041,31960,66278,76278,10566,34522
+49335,17091
+49336,15446,36951
+49337,820,31553,30575,18715,79077,52592,76111,72502,38447
+49338,12122
+49339,68763
+49340,39033,72982,73594,13413,59249
+49341,43457,16344
+49342,28070,72443,59008,43754,75757
+49343,57990,12664,65922,81513
+49344,66369
+49345,9883
+49346,46372,65497,10484
+49347,54374,48082,13537,67171,76345
+49348,1365,46168,37848,44346
+49349,25808,23302,58198,55483,23124
+49350,68528,63881,50370
+49351,10986,78076
+49352,70254,76833,73971,67154,70225,42978
+49353,73743,70498,21253,39138,61998,52758
+49354,78993
+49355,75893,51247,51672
+49356,61828
+49357,25081,39321,15487
+49358,28610,28971
+49359,31290,14202,42807,37265
+49360,50299,23181
+49361,21727,80339
+49362,24078
+49363,55912,28050
+49364,76428,29112,59224,46931
+49365,41995
+49366,65372
+49367,3992
+49368,70755,24397
+49369,66714,19413
+49370,58579,32123,1513,7102,77993,30022,1334,65476
+49371,72174,80079,78027,64185,47075,57228,7402
+49372,13079,32958,66591,38717
+49373,5159,42452,77301,7958,34738
+49374,28452
+49375,62776,15145,8806,5747,3748
+49376,37562,70923,64648
+49377,8449,69733,9740
+49378,3718,68272,61513,77135
+49379,33398
+49380,37497
+49381,11704
+49382,63069,33253,57522,12341
+49383,4423,16849,52345,29787,52942
+49384,28149,473,22462,4088,3475,37988,30825,70895,20101,74476
+49385,73116,24664,64914
+49386,69385
+49387,4842,814,66057,64471,75186
+49388,80736
+49389,21923,28850,61062,23829
+49390,10297,6456
+49391,71258
+49392,3301,62006,50544,34708,78364,36894
+49393,24988,47187,40322,52629
+49394,73016,50087
+49395,81719
+49396,34622,17820,80156,27102
+49397,27216,80513
+49398,69741,60323
+49399,57688
+49400,41658,51811,33643,10653,68220,59077
+49401,7466
+49402,49228,29155,11274
+49403,52466,46293,16512,25560,26682,10408
+49404,39904,62526,78509,48341
+49405,37817,32079,78766
+49406,30898,71305,82110,77033
+49407,78462,2975,44457,65210,29276
+49408,64469
+49409,20030
+49410,10257,51362,15230
+49411,20289,78993,47817,4393,5452,68410,80599
+49412,13628,69033,32497,40246
+49413,53560,41081,12336,28025
+49414,46529,57892,37331,34227,9904,51605,81880,76549
+49415,76250,62228,19786,45086,74910,29243
+49416,24086,58614
+49417,32180
+49418,34626,69163,7524,39163,51059
+49419,10899,62410,13038,36742
+49420,40985,11489
+49421,54377,11962,9898,26490
+49422,71296
+49423,24886,5328,64573
+49424,39086,8629,5185,81974,42535
+49425,57228,28762,48765
+49426,51043,48511,32707,32245
+49427,17047,32535,46251,37336,50144,78216,37840,28766,4794,45322
+49428,23755
+49429,43555,3026,24682
+49430,41492
+49431,74158
+49432,10019,2264,79031
+49433,21331,20113,14218,44959,48160,47834,23645,39567
+49434,33515,78505
+49435,76247,1814,13702,65603,63119,65523,42115,49954
+49436,60264,19169,42445,28331
+49437,38295,21675
+49438,68009
+49439,35539,21359,29855,46946,16362
+49440,24416,40656,77767,13563,4619,55223,40623
+49441,40002,45017,31470,6339,38755,77790,68631
+49442,48241,12566,13584,51803
+49443,3115,9952,24362,28944,4219
+49444,9264,70829,77963
+49445,46103,42191,6885,44357,81420,54978,67371,4048,41736
+49446,53621,49109,64694,30948,59911,35193
+49447,8462,42760,69069,659,38317
+49448,28,732,17266
+49449,71683,14050,62260
+49450,708,65323,51012,36845
+49451,29281,68250,57550,51849
+49452,77287,33642,61418
+49453,8956,34535,23937,25696,21439,49646
+49454,73948,9392,845,50888,3696
+49455,9417,49159
+49456,50308,36803,80350,30237,52278,8267
+49457,47754,72305,63915
+49458,52526,34750
+49459,64168,31434
+49460,52911,17259,36940
+49461,61553,30640,75163,50715,29537
+49462,40900,56068,49241
+49463,76227,9144,47464
+49464,63910,21352,59427,65156,43732,13818,3809,50532
+49465,26023,7932
+49466,33360,20031
+49467,52956,51773,43442
+49468,6841,26675,64917
+49469,56529,10443,81329
+49470,76609,31993,42176,59138,72281,26120
+49471,8428,74400,63466
+49472,61319,2444,78594,10659
+49473,23656,9541
+49474,74815,50411,22649,12581
+49475,13277,47171,74341
+49476,15341,29505,67250
+49477,28619,52211,36903
+49478,60872,20721,53688,47881,19081,3271,2274
+49479,60834,74410,31996
+49480,31609,52849,64436,51367
+49481,1216,48956,80838,49387
+49482,62697,81390,62465
+49483,36500,52688
+49484,50971,14675,59582,27502,64098
+49485,73479,42715,20455,27916,63012
+49486,15242,81194,19882,35036
+49487,72760,6686,64477,8229,80945,33986,22663,26457
+49488,52424,21357,72014,82172,60520,72514
+49489,40264,50855
+49490,31906,43861,9618,27255,69488
+49491,1596
+49492,40736,72374,4137
+49493,22399,43073,19777,2001
+49494,74719,39473,56189,68269,31384,12571
+49495,39471,22523,65611
+49496,75782,82039
+49497,10741,37064,3557
+49498,13043
+49499,25718,58508,72416
+49500,59861,62593
+49501,1007,51344,25676
+49502,53465,1024,74859,60365
+49503,75367,49398,59356,74129
+49504,43276,69437,79368
+49505,48806,37229
+49506,77119,41502,26901,37704,66645
+49507,5692
+49508,61906,35379,5399,37145
+49509,57254,68787,39405
+49510,60470,30650,15200,64150
+49511,5369,9234,47352,36531
+49512,586,63412,60765,56258,18898,4130,14443,10165,56408,65323
+49513,47174,22125,65645,71205,54140,26369,6901,19253,58600,13078
+49514,61454
+49515,53916
+49516,24392,18396
+49517,6509,35726,10944,60502
+49518,14041
+49519,37595,25627,98,7488,49739,82121,55898
+49520,6255,135,45035,58340
+49521,24649
+49522,27557
+49523,73461,67710,16345,19395,46323,45344,11672,58195
+49524,81033,65389,57760,73774,64374,40739
+49525,13275,47229,75138,7828,7460
+49526,10910,10633
+49527,29125,10599
+49528,20351,59,55392,8043,26234,11213,59573,35956
+49529,48010,39650,62183,32358,43811
+49530,51844,21799,32330,79450,1623,49879,62155,12605
+49531,76514,28253,40783
+49532,53298,67378,2706,75512,13685,51772,36931
+49533,82053,60107,55197
+49534,81365,66925,31934,45249,44854,63138,72494,52827,24382,48593,2763,2245,26757
+49535,14459,20338,37370,14171,59040,45407,19059
+49536,76085,19398
+49537,40103
+49538,16722,70203,39266,64518
+49539,1651,67643,58899
+49540,70057,54679,41793
+49541,640,12610,31494,81779,62067,42853,2612
+49542,60879,54913
+49543,68597,27832,55756
+49544,78756
+49545,25039,7212,67909,3725,60246
+49546,45445,53986
+49547,56992
+49548,41747,36237,53981
+49549,12368,11703,18686,40579
+49550,44124
+49551,18331,36052,82148,18550,80305,27244,20234,18042,5214
+49552,77352,56844,51497
+49553,25038,9402,14188
+49554,50471,66578,52072
+49555,3023,37873,77332,31791,19138,492
+49556,12905,9507,60478
+49557,62036,23325,18963,64385,69101,39305
+49558,75966,13758
+49559,67589,28432,8644
+49560,14928,22754,64220,43685,66126,46971
+49561,28038,75488,32150
+49562,63043,80549,72797,34060,10776,39590,37434,68665,7064,27890
+49563,71506,52183,64344
+49564,41281,628,36478,61904,56339
+49565,35989
+49566,69189,57909
+49567,39815,40525
+49568,63675,68900,21447,31274,51462,11524,1061
+49569,13487,34732
+49570,6303,4360,17709,42394,27475
+49571,70076
+49572,47568,12809,22910,32416
+49573,77953,75277,12498
+49574,48360
+49575,3222,24227
+49576,64159,42599
+49577,64150,51734,51586,37809,66015,50772,72438
+49578,59783,54339,80257
+49579,42897,28320,64586,34276,73152,64529,14709
+49580,48441,66210,41043
+49581,81303,42054,7691,49584,39015,4587,1184
+49582,60293,75670,52513,25326,60153
+49583,39569
+49584,23749,54128,68403
+49585,34806,47217,11544,41692
+49586,805,13264,72055,58733,80899,33528
+49587,21193,70011,9674
+49588,3664,75268,58050,43453,74414
+49589,75506,6618,32444,30834,79155,57418
+49590,61035
+49591,46073
+49592,14060,64929,65924
+49593,62751
+49594,71418,20375,61312,47881,35094,7842
+49595,73521,55755,68376,61481,58019,31934
+49596,28325,69920,16174,57601,77373,62645,52438
+49597,50286,62048
+49598,22629,33612,25544
+49599,75738
+49600,64034,27610,50943
+49601,50189,48360,7291,9860,3777
+49602,28253
+49603,11780,63794,81727,28096
+49604,18042,70890
+49605,59353,6228,45017,70367,71588,58156,70564,41645,14163,76047
+49606,30857,10428,31844,30862,15939,10464,34619,8904,21773
+49607,25449,12272
+49608,63473,68203
+49609,1003
+49610,11858,17363,41328,34793,35909
+49611,27902,11936,38354,44109,40298,17187
+49612,21076,55602,75396,58151,61492,19583,77063
+49613,79947,5600,66627,14398
+49614,31556,22849,35541,80266,58999,72544,43374
+49615,55269,49746
+49616,26392
+49617,73169,8399,4331,27829,5082,37201
+49618,34462,28468
+49619,64653
+49620,30780,26759,50725
+49621,76472
+49622,12411,79148
+49623,16518,3258,60989,55034,44174,67420,71109,54156
+49624,7959,4030
+49625,17417,71191,9836,1687,1609,75643
+49626,33412,30330,13608,44552,49660,35528
+49627,80781,79862
+49628,45487,27880,81886
+49629,71255,5962,2164,62749,43046,40099,70977,53541
+49630,40395,48755
+49631,33309
+49632,68455,60479,62802,30048,21834
+49633,21803,16762,22884,26009
+49634,32257,14527,11626,28097
+49635,75450,76453,6160,17089,6298
+49636,48900,8835,35606,37672,50511
+49637,75955,7645,33402
+49638,73704,18772,81822,7600,1325
+49639,37410,51292,59381,49396
+49640,34848,12932,64772,54749,23987,66966
+49641,34463,67768,77550
+49642,74706,4229,52235,57408,22632
+49643,51807,71531,82115,33418,12547
+49644,60324,8745,34578,63374
+49645,71684,20397,53759,20807,50373
+49646,80664,10235,79733,27733
+49647,41679,69203,69730,10139,17363,78622
+49648,17541,28627,12468
+49649,74457,8502
+49650,50167
+49651,40883,77801
+49652,41541,64741
+49653,41082,75040,2144
+49654,2489,76275,81905,26061,28858,63996,47606,66160
+49655,45485,61291,53407,12391
+49656,34679,71559,14431
+49657,37100
+49658,19296,56943,69674,62078,10240,64064,6088,16817
+49659,498,32378
+49660,53722,54309
+49661,15445
+49662,21311
+49663,195,14396
+49664,78257,28727,43762,51060,72294,64017,69667
+49665,71550,21078,65003,15824
+49666,47387,73152,17010,21358,81970,63013,4761
+49667,45141
+49668,49724,60754,48942,19763,27859,70465,58126
+49669,59030,4016
+49670,38062,49920,29311
+49671,71565,49053
+49672,26121,14010,63631,13637,42501
+49673,5781,41859
+49674,34842,24063,33162,59791
+49675,76090,41886
+49676,49963
+49677,70801,10228,58639,36090,18357,24092
+49678,47356,18245,23554,69120
+49679,23808,72940
+49680,62767
+49681,34322,61311,27821,25284
+49682,24500
+49683,74155,27735
+49684,45376,20679,53434,3647,51324
+49685,64926,56752,75860,16399,43953,32111,34484
+49686,42222,27336,67535
+49687,74856,79840
+49688,48862,81191
+49689,67354,47600,69129,46148,11510
+49690,52092,32892
+49691,64474,43868,32306
+49692,62482
+49693,10597
+49694,10130,12928,19090,15149
+49695,69367
+49696,23560,6884,75716
+49697,66447,73253,36516
+49698,11360,62683,58603,70106,69669
+49699,46108,32001,70907,44570,44904
+49700,72046,6275,43028,27294,74032
+49701,41297,4543,69356,55243,69737
+49702,1780,75397,60822,21685
+49703,51288
+49704,31810,30292,77990,72169,71966
+49705,30762,20939
+49706,24733,19327,37396,32022,68425,80283
+49707,72610,55033
+49708,13763,32919,59741,35204,35208,53905
+49709,9161,52708,77736,28332,50100,61750,79115
+49710,31814,12671
+49711,70253,58134
+49712,43610,55409,45395,71241,71232
+49713,39809,56203,3368,39494,27741,27720,81822
+49714,56279,75674,40952,358,18504,73675,16333,75841,66491
+49715,47178,13429,80662,61333
+49716,15547,24333,20805,18146,9341,12407
+49717,1847,81998,35308
+49718,72596,70170
+49719,77103,23601,76267,12664,18382,69779,29416,64684
+49720,31072,80214
+49721,44884,62814,13676
+49722,50084
+49723,57557
+49724,4633
+49725,28952,40941,61835,59146,22031
+49726,19360,54725
+49727,35311,56374,71963,26419
+49728,62174
+49729,81097,41558,11581,39575,37287
+49730,12298,20258
+49731,75139,53293,26919,57916,36488,29505,32019,79193,19238,62603,50961
+49732,60801,12823,80736
+49733,44242,16425,63761,42172
+49734,52446,31156,23900,7342
+49735,28726,71821
+49736,19531,26676,27819
+49737,39538,44763
+49738,43519,11622,41304,21852
+49739,50653,2697,78277,28547,10263,34307
+49740,78746
+49741,36349,44304,14103,7348,11095,80915
+49742,38472,20984,22919,2755,73373,70773
+49743,48225
+49744,29179
+49745,56822,14983
+49746,18,75684
+49747,40952
+49748,26244,61658
+49749,56201,35510,60631,46204,46059
+49750,42897,26005,46952,43005
+49751,9797,64554,28983,42553,60068,11730
+49752,5614,68261,51887,4848,36593,63439
+49753,79911,46921,18810,56569,11971
+49754,49195,72165,36118
+49755,78302,63513,30918
+49756,53974,5187
+49757,51326,68710,14106
+49758,45311,4102
+49759,65625,60763,34702,30516
+49760,19590,59252,37414,46529,80490,44251
+49761,2323,43425,62166,15483
+49762,55283
+49763,64653,76520
+49764,65805,52800,54180,79464
+49765,8923,64073,75304,18272,32267,32008,11263
+49766,22323,73268,49379,78602,73159,47486
+49767,23515,22607
+49768,24887
+49769,8568,55124,71351,5202,33653,75946
+49770,48464,4270,18320,9292,31575,39228
+49771,54736,43901,14678,80162,47080,15548,71163,66942
+49772,4250,54534
+49773,14521,69955,56126,25123
+49774,54348,73529
+49775,64715,57735,64835,43386
+49776,17108
+49777,31696,15607,34997
+49778,32812,75478,43502,69090,17622,31644,41972
+49779,65706,37732
+49780,55607,54728
+49781,66988,17364,49016
+49782,38650,27622
+49783,72528,63596,37040
+49784,32224,62069,44312
+49785,24069,70650
+49786,45960,64787
+49787,52849,78310,15551,485,50566,35922,59078
+49788,39789,9755,53425,33264,49011,42460,34231,24423,3622,42195,35076
+49789,34935
+49790,22309,33769,74220
+49791,40879,5583,72344
+49792,34762,4476,49650,34211,27781,32788,79367,69998,18006
+49793,36045,16903,46783
+49794,55031,50475,35557,25262
+49795,41336,51537
+49796,61142,27706,59226,27560,5884
+49797,59254,26362,31514
+49798,52986
+49799,3217,63515,42528
+49800,48026,56152,58308
+49801,54328
+49802,19194,22665
+49803,36871,27227,81314,62165
+49804,27066,78120,66659,73362,11023,62178,71240,41318
+49805,42273
+49806,78867,2775,17907,77971,71494
+49807,43086
+49808,31121,66438
+49809,62245,14387,6558,17175,21776
+49810,46859
+49811,61810,7159,57464,19422
+49812,38438
+49813,26985,54170,76591,46150,5454,52229,59468
+49814,2761,28013,62258,38294,29189,22849,25280,7126
+49815,39474,19593
+49816,71486,14558,55338,33105,3046
+49817,17821,22538,52519,65315
+49818,59883,6075,20805,56427,43687,25104,22932,47137
+49819,33599,53519,33090
+49820,50712,12156,20149,27159,47651,36950,40050
+49821,3699,42445
+49822,24228,33463,103,81045,996
+49823,41912,77601,11388,73604
+49824,34087,19570,47828,14190,3071,58711,26518
+49825,76172,50277,36572,66125
+49826,45594,6887,46771,34774
+49827,60692,18544,67706,79291
+49828,36017
+49829,15134,48159
+49830,13479,3654,14449,41832
+49831,46569,7114,59099,41230,52202,17362,64904,76319,581,74268,81266
+49832,57709,47845,35798
+49833,286,15138,56651,82120
+49834,732
+49835,26445,45359,71708,11096
+49836,56143,68873,55907,28508
+49837,9343,53113,28712,13940,64812
+49838,26139,73064
+49839,18267,15384,31361
+49840,41543,61372,7425
+49841,72192,49472,72877
+49842,12880,33945,69681,4381,1744,68577
+49843,67096,40462
+49844,47385,48982,53701,62411,29246,56228,77247
+49845,25627
+49846,71389,54803,26646
+49847,36959
+49848,15571,42397,65168
+49849,56873,50089,79901,43301,14801
+49850,27006,22867,36112,8256,76443
+49851,34329,38157,40335,45923
+49852,51663,78164
+49853,39212
+49854,62695,64167,58553,55679
+49855,62454
+49856,19310,13536,31646,73042,16748,66779,45045
+49857,35784
+49858,33145,80549,46082
+49859,70622,22088
+49860,31414,16694,30659
+49861,27431,4679
+49862,53931
+49863,7221
+49864,50181,15352,15026
+49865,37678,6021,65187,37970,51166,47988
+49866,52154
+49867,61045
+49868,34238
+49869,47665,13927
+49870,5789,48003
+49871,73673
+49872,10405,73836,53893,68764
+49873,71066,3679,74937
+49874,51318
+49875,31012,81127
+49876,40780,80265,34697,1971,12148
+49877,24424,60734
+49878,62238,71552,2805,62692,36096,17903
+49879,34201,47023
+49880,51427,55288,73656
+49881,39931,56451,25182,29958
+49882,31409,58573,55401,15173,26050
+49883,31958,52736,18408,31915
+49884,33951,47555
+49885,13390,63659,19918
+49886,62600,22853
+49887,43230,16349,56019,3047,24433,20726,29405
+49888,77836,24524
+49889,78575,71154,64819,7953,79119
+49890,1404,36531,39973,10239,51756,73319
+49891,39500,37236,10727
+49892,17248,225,78454
+49893,54415,7806
+49894,12609,73806,21082,53186,59541
+49895,57896,66898,13341,66204,22937
+49896,67005,80800,71675,60793,6286,78995,19386,4375
+49897,16623,42252,55370,62802,37607,12011
+49898,57281,16122
+49899,38206,59455,78080,30279,44638
+49900,10139
+49901,58801,47244
+49902,71230
+49903,13544,52285,70911,65873,25518
+49904,65326,75013,20632,20151,75530,38014,59259,61333
+49905,49739,11613,9853,36540,55456,80695,37919,56132,68159
+49906,3660,33526,43516,78521
+49907,43658,11,1467,17341,28098,10554,48721,37676,73234,46422
+49908,17747,35112,52895,47903
+49909,21485,21636,754,70515,80465,62742,12397,29408
+49910,29020,36437
+49911,56411
+49912,7155,31908,6220
+49913,79801,20057,52142,16669,78284,73919,77534,30068
+49914,66712
+49915,7845,33001,65559
+49916,13210,31585,54147
+49917,22059,19183,24827
+49918,48614,76510,79101,28231,49975
+49919,47287,81779,67242,44168,10386
+49920,49558,61999,18332,73019,41478,9225,44373,65701
+49921,27475,81810,6102
+49922,314,25027,5726,560,21945,1294
+49923,75831,50714,51913,40477,22579,1121,28200
+49924,54939,17480,54545
+49925,75614,61388
+49926,53795,8837,56644
+49927,27296,12663,57437,556,37266
+49928,26403,14412,47429,10277,57996,34876,19431,31999,41490
+49929,39882,57833,65301,42432,63670,9391,77963
+49930,1812,33319
+49931,36449,80306,77247
+49932,40755
+49933,34173,35023
+49934,54495,60095,40087
+49935,45785,62726,59732,19137,25524,26378,68005,37848,29254,41592,21627
+49936,36955
+49937,25493,42955
+49938,43526,16864
+49939,62174
+49940,27105,14066,47420,54140,58070
+49941,12458,71681,46768,39546
+49942,78641,36745,38509,78600,77580
+49943,22644
+49944,71211,51098,45981
+49945,53472,1281
+49946,53653,71364,19942,15487,58503,32714
+49947,56273
+49948,23443
+49949,56100,72309
+49950,79934
+49951,3526,61655
+49952,37920,61279,20085
+49953,75848,69378
+49954,26228,39221,68974,72160,10450,8701
+49955,79752
+49956,33330,18933,19324,80275
+49957,19379,73327,26182,51334,55671,71871,67579
+49958,69868,81283,72273
+49959,37314
+49960,39177,22714,71047
+49961,26050,76424,78811,69107
+49962,31078
+49963,28416
+49964,66479,42123,59716,7814,72392,56591,36301
+49965,33321
+49966,51086,9969,21243,42013
+49967,66709,50821
+49968,80891,15741,15676,29551,26167
+49969,40370,52977,59856,34008,9145,1852
+49970,69643,80082,51598,76002
+49971,1439
+49972,59177,8164,46247,39965
+49973,56316,63811,48042,53827,10380
+49974,4919,12149
+49975,44445,50291,23339
+49976,41805,55802,56498
+49977,64029,60033,25979,47411
+49978,70509,5647
+49979,65688,63939,12789,52538,22908
+49980,34584,44622,28465,46390
+49981,62742,34377
+49982,12279,8730
+49983,25678,75819
+49984,76462,31607
+49985,54684,2302,67957,46242
+49986,5376,53982,48956,49696,41434,13862
+49987,15485,60478,4296,60619,81483,37453
+49988,6841,37658,13393,35922
+49989,59994,17668,2835,16068,42405
+49990,77778,72033
+49991,81616,63260,55197,67194,67237
+49992,14416,14750,40109,22159,63189
+49993,74640,16152,36066
+49994,37501,12396,49912,46317,71604
+49995,73066
+49996,26315,49943
+49997,79138,67024,69428,4450,15780,76871,62902
+49998,13045,79024
+49999,28997,7171,25109,58005,38688,55494
+50000,10116,76356
+50001,70191,32429
+50002,26810,25052,50405,56720
+50003,63430,11717,65664,46681,49937
+50004,46616,70854,73101,2350,63601
+50005,52097,42986
+50006,47907,59214,28056,37508,25147,60970
+50007,55933,7437
+50008,16497,10087,34680,15249,65070,52208
+50009,22525,78611,75552
+50010,44612,47106,63832,81664,59870,49439,46233
+50011,12375,55549,54939,45451,37789,21721,44670
+50012,23309,56903,22529,23457,69479,4505,43016,63541,75815
+50013,29360
+50014,43816,36284
+50015,70790,30183,68476,28123
+50016,19057,24740
+50017,38898,12999
+50018,40584,27900,20879
+50019,63405,16412,74967,19913
+50020,30500,14174,3135,59470,33036
+50021,25397,19743,55473
+50022,73616,28210,48434,18203,48557,74597
+50023,79236,3626,53207,17091,43704,78028,64010
+50024,52543,78312,24724,74574,78206,16904
+50025,38758,71425,40764,67732
+50026,18772
+50027,15736
+50028,74157,55033,33017,11207,78250
+50029,64182,57973,49893,20411,29870,5364,1181,32211,51038,69951
+50030,53460,70147,17129,48494,37079
+50031,44706
+50032,30805
+50033,57130
+50034,25355,55285,35009,34984,69749,24393,30838
+50035,74130,61881,8702,50999
+50036,57114,53090,54203,40079,36922
+50037,58867,4654
+50038,27264,51076,35825,60126
+50039,13086,35420
+50040,77556,79557,38151
+50041,13174,30888,27785,80708
+50042,35354,33483,32549,20138,58992,61536,60953,13008
+50043,67332,44957,50621
+50044,27230,65794,49367,21970,73180,42651
+50045,55814,9534,81169
+50046,71270,78388,62299,37232,76298,59461,30674,44173,6460,68884
+50047,58153,2500,64259
+50048,9715,29564
+50049,1205,43431,67858
+50050,8860,80204,22307,5364
+50051,52850
+50052,40894,25800,27095,45686,13446,72236,6735
+50053,67387,19861
+50054,53033
+50055,74661,60422,62019
+50056,3885,66709,30091,67073,1256
+50057,10833,75819,36307,61712
+50058,56671,61603
+50059,17709
+50060,12971,56332,950,46540
+50061,29272,36161,78207
+50062,81332,3222
+50063,37086,33339
+50064,16856,18880,71196,45929,18058,48253,37240
+50065,77652,54426
+50066,78950,56769,46934,33289,42593,57382,18956,73792,1014
+50067,35076,14658,50162,51493,66159
+50068,23455,69711,64898,34686,73641
+50069,74781,49065,57004,17522,39262,77301
+50070,70539
+50071,40750,62364,6234
+50072,35669,77029
+50073,55489,17966,56647,47441
+50074,54426,6018
+50075,20079,5367
+50076,33978,71730,6235,621,60766
+50077,59956,12070,64224,42887,9266,19162,76288
+50078,73053,40744,24644,13275
+50079,28080,38026,66173,30113,26771,76132,67368
+50080,22663,63407,11637,31724,74900,18629,61998,45757
+50081,37848,30749,9727,55465
+50082,73428
+50083,52154
+50084,2685,8751
+50085,27264
+50086,65692
+50087,55138,15299,1034,71607
+50088,735
+50089,17309,58959
+50090,67462,61602,1408,79428,22090
+50091,7821,8326,5525
+50092,31792
+50093,3667
+50094,35566,49696,61219
+50095,43093,7796,65536
+50096,3310,41558,28956,10614,11814,61407
+50097,42969,21552,5301,73919,29027,38316,53301,3898
+50098,74211
+50099,65419,51881,55877
+50100,58533,53405,3093,62765,78932,25594,57742,45451,49195
+50101,24563,29470,52334,738,39273,36435
+50102,65122,5154
+50103,27411,14001,2407
+50104,4552,46101,17283,71870,54025,13257
+50105,3514,29115
+50106,54897,4846,20185,65966,12575,15115
+50107,19736,31545,19298,69230
+50108,54118,33343,79773,23822,57639,63603
+50109,32195,5110,7524,68374,69787,58881,18133
+50110,12785,72543,10430,18567,29360,48487
+50111,25326,69735,48608,35092
+50112,43005,16904
+50113,81057,71375,3406,8086,2669,23762
+50114,78522,77616
+50115,56316
+50116,25637,32606
+50117,11595,62866,47667,10866
+50118,53166,65250,32078,64418,71655,11885,37193
+50119,42489,52347
+50120,64474,44483,52045,50264,65164
+50121,66443,65520,225,4706,9203
+50122,3082,1191,68053,3486
+50123,7582,77238
+50124,25642,17265,51168,79199,47109,2527,13349
+50125,57264,21672,50492,25648
+50126,21933,70580,22226,67234
+50127,20569,28791,62724,41732
+50128,78175,50595,22832,67096
+50129,72033
+50130,2349,25111,15662,26443
+50131,8629,33342,25316,55507,7296
+50132,2056,60565
+50133,12308,9790,42721,34196,2493,58928,42406,45376
+50134,36645,2693,24479
+50135,10822,32992
+50136,33134,13177,43348,30042,33249,63242,39924,2199
+50137,1550
+50138,53651
+50139,33911,9905,31109,1493,65019,77171,71057
+50140,69379,17604,13896,16264,2362
+50141,40365,75957,3944
+50142,23644,61844,48094
+50143,11574,54031
+50144,57100,29887,54023,76882,57566
+50145,11582,74920,56451,42152,33716
+50146,46262,68524,72303,80237
+50147,50209,64357,27879,36423,17180
+50148,67827,22328,11247
+50149,79069,6587,34827,29806,43605,48930,46838,59393,35056,45574
+50150,57043,17600
+50151,8138,39470,81736,80077
+50152,17131,76916,5304,32149,60947
+50153,12626,24437,9307
+50154,65668
+50155,17172
+50156,78779,55945,36504
+50157,36977,69922,15244,68318,47504,15450,69270,48483
+50158,33109,76762,20632
+50159,51969,69889,77208,33220,13499,11287,34936
+50160,19153
+50161,18357,10227
+50162,24539,53939,46627
+50163,32209
+50164,21873
+50165,36526,4318,73985,17273,67684,26526,25459,27865
+50166,1884,79304,44881
+50167,12505,14401
+50168,15397,77031,58539,65181,81973
+50169,27611,2082,16876,63594,35642,12139,28257,80427,45582
+50170,50637,37820,57758,141,6478,46533
+50171,66297,41631,46935,63889,22147
+50172,43775,81314,41405
+50173,56600,22724,14514,80250
+50174,79639
+50175,7821,900,18216,61005,27078
+50176,35566,23091,45561,15572,19297,7380,72897
+50177,53533,13080,18281,79995,67705,73189
+50178,963,62243
+50179,64829,42228
+50180,10169,25383
+50181,4845
+50182,31459,54291,48003,37542,60504
+50183,17697,31427,18910,80687,11864,28268
+50184,46732,43044,40038,50378,36187,39568,53061
+50185,21875,57331,10173,44773,70262,21822,40743,37694
+50186,1355,25499,19037,71057,12136
+50187,8547,57507
+50188,3392,29527,77170
+50189,56566,44138
+50190,54857,57157
+50191,66818,40622,59130,56049,77560,25918
+50192,37604
+50193,70938
+50194,40529,6030,19928,71850,2415
+50195,38367,21110,8004,29467,1658,24177
+50196,49052,15737,35876,65927,17506,26167
+50197,58992,45022,19245,77231
+50198,70675,49539
+50199,25567,40761,71446,22771,53892,46280,26899
+50200,47007
+50201,58331,12593,20751,6626,40873
+50202,61493,18641,40718,2022
+50203,19129
+50204,29710,26427,38527,19016,74970,9893,77211
+50205,15200
+50206,52793
+50207,31574,74870
+50208,59471,71046,79949,73892,24986,76069
+50209,53494,28480,78050,46314
+50210,70223,16314,56570
+50211,68586,31348,41314,2105,27089,75205,81453,21363,22296
+50212,79500
+50213,15163,50909
+50214,71204,52174,18349,10397,21428
+50215,429,69446,36549,77152,45285,57259
+50216,81435,60427,7203
+50217,52313
+50218,8647,54114,18556,73408
+50219,74377,51400,8826
+50220,42496,3852
+50221,26354
+50222,42866,33265,23766,4111
+50223,66250,43708,53796
+50224,5196,60682,64357,46175,66417,24897,65783
+50225,51539
+50226,24726,79997,44418,66185
+50227,39065,57482,76833,66047
+50228,16351,71266,54334,58420,78780,63862
+50229,26261
+50230,41483,1724
+50231,24694,49886,66717
+50232,37402,55123,48752,22059
+50233,43172,23331,22612
+50234,26661,19110
+50235,51736,69708,40945,48142,12164,7911
+50236,14871,60840,11193,37293
+50237,59127,16563,7621,56862
+50238,62161,60932
+50239,48142,53846,21084,33317
+50240,75813,30094,78498,67650,37945
+50241,24262,38293,3498
+50242,48885,55467,41781,71027,29933,1199
+50243,81131
+50244,19703,43002,8401,40679,41841
+50245,54666,5616,54732,34470,38761
+50246,46820,70148,73742
+50247,43988,12250,25721
+50248,38606,39578,48791,12710,48506,39881,20826,47024
+50249,80938,74218,38979,1862,74374
+50250,6204,68984,20404,31588,68030,65656
+50251,65509,16000,81783,31198,34723
+50252,25842,73800,54179,49076,40834
+50253,10348
+50254,58766
+50255,50741
+50256,76141,1923,39467
+50257,12725,36573,57380
+50258,36848
+50259,38137,68365,29362,37602,63806
+50260,50033,33730
+50261,57106,62882,27771
+50262,34402,17757
+50263,45553,26133
+50264,66173,43916,5146,37564
+50265,26367,18445,12221,32461,79532
+50266,31907
+50267,30234,56725,59581,11539,16337,2083,77374,18747
+50268,66217
+50269,62355
+50270,23408,44665,49479,52735,29791,30114
+50271,34143,79675,53548,39317,7609
+50272,62498,12226
+50273,22683,27944,26231,30457
+50274,9756,80561,19975
+50275,81766,63451,61030,27019,76105,75510,2623
+50276,49018,51546,45506,25218
+50277,10303,15071
+50278,80845,46509
+50279,74339,28928,75183
+50280,53985,40937,7355
+50281,26159,51130,64067,59978
+50282,62289,37979,6231
+50283,41837,43747,79404,64315,60552,81581
+50284,11797,3561,36636,15003,62731
+50285,13011,72890,14785,48574
+50286,44957
+50287,72952,12074,18472
+50288,59183
+50289,77319
+50290,55470
+50291,41965,63626
+50292,26737,3527,61899,10557,25270,8087,39684,42012
+50293,37245,21142,61652
+50294,42782,41844,52970,34660,50955
+50295,41413
+50296,8006
+50297,55909,40492,26856,25088,51027
+50298,60651
+50299,27427,53051
+50300,78153,1014,63860
+50301,8362
+50302,4854,35714,38057,70612,33902
+50303,40030,51842,22663,58430
+50304,69463,2898,77634,30831,3050,2796
+50305,63382,63275
+50306,1143
+50307,72146,40460,70828,10984
+50308,18997,34813,28332
+50309,60825,3512,55615,15148,75049
+50310,62221,75188,77269,894,60993,15846
+50311,2905,3444,14677,34132
+50312,18772,16966
+50313,13891,55878,32854,52268,28034
+50314,53108,39639,13302,20745,2391,27397,47321,12973
+50315,61430,23269,59875,12770,77376,17275
+50316,56007,106,64706
+50317,75586,23330,31912,11186,20621,66244,37782,51394,15872,30351,74124,69271
+50318,15685,1453
+50319,73974
+50320,38065,33515
+50321,14387,43056
+50322,29947,74615,41964,15649,430,31176,15055
+50323,66297,73305,33424,9538,30296
+50324,6798
+50325,62981,39794,18509,4613,74720,23586,45271,60605
+50326,18528,45786,44921,32788
+50327,28251,11363,49732,68779,40731,79268,51294
+50328,14341,73837
+50329,548,68223,41936
+50330,40609,43940,79458,54104,42625,37672
+50331,9458,48749,66094
+50332,39282,29953,63880,72345,76713
+50333,74081,1092
+50334,16933,61688,80145,63808
+50335,6544
+50336,11398,67926
+50337,1902,2639,71514,80940,45063,7618,49600,66603,73890
+50338,31288,66140,78205,42101,53089
+50339,76887,75352,5282
+50340,49207
+50341,20802,57847,24281,67677,19479,66873
+50342,53092
+50343,32539
+50344,25141,50098
+50345,80466,15579,6720,56802
+50346,18672,54611
+50347,40267,19001,75039,12121,20007,38116,63695,28259,20295,28834,13269
+50348,71591,687,28061,59265,25277,58152
+50349,75742,42288
+50350,24935
+50351,78805,48520,6889
+50352,39836,19232,74952,22601,8682,38070,68347,21131
+50353,77290,22584,4799
+50354,69238
+50355,52246,29432,48143,11020,2831
+50356,52049,69379,29456,28344
+50357,12632,22974,10797,13668,15408
+50358,8158,517
+50359,15593,68784,32453
+50360,81053,49069,68413,1996
+50361,1995,3814,81843
+50362,67632,75194,20820
+50363,69580,2173
+50364,17670,32849,50371,30826
+50365,60949,77686,38738,72963
+50366,20782,41353,10863,53872,79729
+50367,42055,47247
+50368,36878,13540,24418,61763,56315
+50369,51510
+50370,9126,65274
+50371,6348
+50372,52646,52209,62099,23445
+50373,15266
+50374,39012,34070,69187,3189,1246
+50375,77433,36487,18501
+50376,20125,71500,54213
+50377,44313,79291,16656,12558,60936,65648
+50378,71622,36549,19159,16653,38661,52052,62056,34394,2312
+50379,44101,68627
+50380,338,15072,29389
+50381,28815,73506
+50382,33125,67071,48625
+50383,2043,13849,49285,28865,2919,77656
+50384,60911
+50385,17714,8415,64381,81929,78773,11615
+50386,80648,13579
+50387,74567,19674,23106
+50388,20102,51010,37254
+50389,12777,50643,78806,45474,69030,13813
+50390,66427,60148,44577,862,46048
+50391,9477,58577
+50392,45046,33948,61293,44555
+50393,10443,63469,72804,32683,19956,35647,53002
+50394,8101
+50395,45114,73294,40734,17084,59533,49884,80118
+50396,30920,78941,80630,39498,49057
+50397,30509,47445
+50398,28776,23467,40799,63323,62427,66534,1978,77808
+50399,16394,55503
+50400,12741,57438,53198,43474
+50401,70064,34258,56422,79043
+50402,64311
+50403,59977,19617
+50404,47120
+50405,22488,37664,36390,14868,74246
+50406,71212
+50407,4502,25090,3831
+50408,13112
+50409,25282,59069
+50410,49417,71961,80919,8447
+50411,78571,40828,13392,51803,19116
+50412,61217,37472,37550
+50413,51289,81054,63740,48712
+50414,57854
+50415,49700,47460,40852,43622,25050
+50416,45817,7696,42169,27240,33343,9547,48692
+50417,33710
+50418,76134,8374
+50419,10569,45055,38819
+50420,27741,31625,17607
+50421,26365
+50422,28755,55748
+50423,80707,13600
+50424,12243,41859,76393
+50425,80975,12948,25351,64583,49142,62704,50706,73525
+50426,57870,18272,20037,34477
+50427,34370,9470,10287,336
+50428,44728
+50429,1743,36566,57710,48576
+50430,2286,17003,36953,67255,71327
+50431,25288,62155,2679,22500,574,77039
+50432,78522,3749
+50433,37722,33034,59656,50740
+50434,36528,7610,65840,22173
+50435,61125,10986,47011,41213,55448
+50436,48018,26145,9963,23725,36852,17990
+50437,67537,33319,17693,29088,8796
+50438,45005,64648
+50439,16084,60724,29611,41225
+50440,20424,32503,67665,54282
+50441,44209,33688,16881,5781
+50442,70941,35046,30765,45226,54371
+50443,43419,8114
+50444,33825
+50445,75104,59889,12545,26168
+50446,60890,21323,63960,26747,24980,4380
+50447,72416,54856,29206,64018
+50448,17970,44098
+50449,9406,45047,66977,2912,79359
+50450,52236,36294,27327
+50451,2836,9044
+50452,54509,49018
+50453,10855,29980
+50454,12373,25914,57396,30135
+50455,16175,39275
+50456,45684,64779,32227,40992,2178
+50457,1719,50290,51200,976,5463
+50458,47092,52965,74894,18447,74456
+50459,39159,38819,78407,37470,4985
+50460,2901
+50461,21054,21000,10550,69382,48381,73522,58518
+50462,43580,37164
+50463,34214,22023,64850,7959
+50464,57722,33949,38872,40102
+50465,57864,42005,77382,52008
+50466,39315,72336,50114,28545,7971,21647,7816,53702
+50467,17047,73500,14586,58743,46091,309,33160,1721,73073,81942
+50468,53814,12430,10387,50925,58851
+50469,65780,71233,19115,13423,57045
+50470,39382
+50471,63449,67672,22900
+50472,62665,27772,46625,47610,61173,38238,359,23479
+50473,59629,61427,18732,19891
+50474,80835,3700,68190,46446
+50475,69393
+50476,38228,5432
+50477,2621
+50478,42052
+50479,66043
+50480,79618,40837
+50481,53117,22795
+50482,68619,39914
+50483,57440,54624
+50484,39892,69822
+50485,18920,11050,61045
+50486,17070,80927,56678
+50487,8815,78136
+50488,68951
+50489,13380,80016
+50490,73978
+50491,14896
+50492,10126
+50493,46136,23116,17746,10598
+50494,19393
+50495,74116,56688,37145
+50496,50959,24989,26139,39896
+50497,2490,59294
+50498,62937,37288
+50499,64503
+50500,12277,31601
+50501,77497,25067,9862
+50502,6492,43989,53079
+50503,38739
+50504,23831,15760,79632
+50505,7207,7970,69979,40609
+50506,41329,73604,68807,40291,28971
+50507,53301,28345,39879,73427,25428
+50508,71227
+50509,26605,48267
+50510,78077,78215,29695,62703,30482,19159,46896
+50511,14315,16842,7266
+50512,78691,12165,56368,56833,66055,7014,39590,38446
+50513,6487,47213,68367,75526,53865,80238
+50514,1024,25542,77033
+50515,26949,53214,61000,53822,17044
+50516,56443
+50517,22194
+50518,7429,67353,21383
+50519,12250,51757
+50520,27492,63709,61172
+50521,35137,22852,57237,20210,62389,53917
+50522,46647
+50523,33137,67395
+50524,41329
+50525,55755,64486
+50526,50,40869,32908,60099,3332
+50527,19130
+50528,52092,47837
+50529,8776,23488,39755
+50530,75325,69610,43253
+50531,56062,22669
+50532,13731,24669
+50533,2769
+50534,26977,12729
+50535,41125,8893,55247,23837,22428,56105
+50536,19162,8385
+50537,9864,51858,35948,46112,64919
+50538,36688,10400,4799,68816,17179,22941
+50539,78333,68676,66659,50787,80630,64938,2605
+50540,4826,46987
+50541,17724,6917,2965,50155,80641
+50542,60944,11837,27756,64042
+50543,38425
+50544,27437,49036,9192
+50545,22176
+50546,48055,64732,66315,60796,7218,46842,59729,20678,23466
+50547,66391,51553,4038,74178,69636
+50548,29819,2990,59147,34409,39025,1619
+50549,73692,9327,65370
+50550,70315,33843,20712
+50551,46204,1148
+50552,21037,1772,69172,20467,48872
+50553,62864,33676,56748,59684,72622,67859,52266
+50554,45892,23946,29735
+50555,23857
+50556,26812,30677,49661
+50557,77915,32185
+50558,65254,24580,22406,55052,59481,26633
+50559,47813
+50560,68704,71559
+50561,2967,79890,418,36324,30250
+50562,11640,63327,8185,40631,42672,41512
+50563,38626
+50564,60736,39640,67558,14535
+50565,3595,56179,38899,12910,21473
+50566,43702,77003
+50567,73869,26635,4427
+50568,53494,50929
+50569,47705
+50570,14722,54410,42722,55879,9248,31108
+50571,62579,10139,43281
+50572,22642,49218,50954,19271,63295,33420,66543
+50573,58156,54164,16863,66085,45577
+50574,61598
+50575,25472,51221
+50576,63282
+50577,3667,4336
+50578,65829,65404,17632,61414,15492,31253
+50579,55759,84,52928,78594,57149
+50580,48425
+50581,70899,79732,56548
+50582,39666,78365,12464,67512,61626
+50583,72598,20785,23624,55865,62309,62182
+50584,24100,23326,72851,40941
+50585,40314,27186,28215
+50586,48343,62336,55297,27120
+50587,67201,16568
+50588,9018,16585,59766,20807
+50589,37417,16536,45556
+50590,72517,10247
+50591,72745,51367,59977
+50592,81016,34301,62523,26057
+50593,69773,71178,2255
+50594,3600,21734,3382,1426,26790,45724,10154
+50595,44494,29740,54381,74968,81968,41584,63593,46184
+50596,63543,60800
+50597,30187
+50598,46267,30389,73787,18773,61153
+50599,38412,66206,16071
+50600,46848,36586,74717,45971,36892,71962
+50601,51612,49815,40334,41242,40486
+50602,59439
+50603,32279,52357,38893,2106,22353,72648,53345,41931
+50604,8385,68896,27293
+50605,75596,16435,37947,8507,78123,46673
+50606,50342,46798,43666,62550,1883,58560,38377
+50607,53841,59484
+50608,64650,45573,76973,54595
+50609,33493,58849,23888,287,81094,69033,28665,68209,77457,78100
+50610,80570
+50611,19497,39083,74975,6855,20144
+50612,30785,6411,8086
+50613,26358,8702
+50614,61186,76929,30654,57042,7714,17053,32390
+50615,70858,37158
+50616,78589,30076,39540,16222,51950,75470,60727
+50617,17680,32957
+50618,14079,13787,1821
+50619,32526,66334
+50620,76660,23266
+50621,53942
+50622,63186,80022
+50623,59823
+50624,76471,73774
+50625,50559,24912
+50626,27707
+50627,5509,35254,73913,2274
+50628,48126,26494,59393,49059,27341,76453
+50629,13487
+50630,38599,1913,68848,75242
+50631,28261,64427
+50632,72835,81649,46542,40650,73729
+50633,3332
+50634,10583,31082,17216,43468,78923
+50635,8382,32608,45348,57326,9275,77573,36822
+50636,27990,25943,74158
+50637,38881,6510,40040,75383
+50638,10222,31770,27268,52081,72718,52679
+50639,31619,42525,18004,26066,1926,22508,26661,22573
+50640,15393,73658,3748
+50641,37459,77986,69515,50151
+50642,38310,28005,24677,63322
+50643,56180,7548,18110,96
+50644,10482,46804
+50645,16910
+50646,11463,59560,21652
+50647,15474,63761,47968,31799
+50648,26689,54215
+50649,1208
+50650,63139,74844
+50651,37195,44494,50952
+50652,61157,6904,16583,5227,29881,26518
+50653,4958,8714,13232
+50654,14258
+50655,19258,2460,50909
+50656,50886,20673,11205,40105
+50657,36301,16293,59952
+50658,6822,58247,49388,50567,14996,28781
+50659,71139,53069,38201,22546
+50660,54762,35267,51165,32611,38099,855,35236
+50661,54893,33304,60976,21015,61288,48413,18522
+50662,55802,81018,63288,56722
+50663,59652,79946,31966
+50664,20581
+50665,44427
+50666,3976,77294
+50667,76142,30531,79240
+50668,40950
+50669,6449
+50670,73018
+50671,66882,60176,4758,35998,76928,34110,14447,46666,81608,6132
+50672,9896,70311,57763,39727,59931,54763,51921
+50673,32643,20587,32706
+50674,22415
+50675,31953,12073
+50676,36600,21671,73331,15621,39994,43782
+50677,80083,78668,55768,45183
+50678,37670,43810,56406,19579
+50679,75991,58029,48806,18269
+50680,33157,35560,38778,81377,26653
+50681,67712,16130,20169,12232,45683,5613,6832,48836
+50682,80772,15849
+50683,70098,62809,24921
+50684,59516,21417,21867,9041
+50685,338,67114
+50686,27208,2455,64989,42870,71593,63623,22537
+50687,61369
+50688,21571
+50689,41304,19882,10685
+50690,53668,12598,78802,18493
+50691,39375,18093
+50692,30363,63254
+50693,16647,69087,34263,76567,6273,36816
+50694,38546,40169,72090
+50695,50448,5067,71641,66913,71535
+50696,2702,28609
+50697,78375,39136,78684,68817,76065,55300,67285
+50698,56526,61190,73959,35688,53641
+50699,43193
+50700,27551,22998,18004,62771
+50701,61706
+50702,35094
+50703,62465,5274
+50704,7887
+50705,63389,29044
+50706,21310,4484,21814
+50707,80683,18835,58639,59224,11068
+50708,9413
+50709,64786
+50710,37014,68168,56898,5826
+50711,41626,16487
+50712,8763,3457,79498
+50713,36153,5164,66510,75893,31175,63196,11012,38990,35487
+50714,68368,37595,31205,7737
+50715,8596,41299,48711,72281,71536,73608,38698,9890
+50716,71361
+50717,77687,59585,73310,56843
+50718,58722,19708,20957,54794,48109
+50719,76023
+50720,70191,81065,34477,55518
+50721,46262,4612
+50722,2841
+50723,16367,40500,69083,51690,60411,47684,8287,60884,2671,2216
+50724,16011,51632
+50725,38887,26016,11950
+50726,71210,42874,22200,59698,71062,6719
+50727,73762,47793,35166,70516
+50728,19433,81616,81851
+50729,56769,6228,58727,253,39445,69660,60836,29648,63093,297
+50730,16860,72112
+50731,78523,66581,44757,67030
+50732,49829,26868,47208,51553,50908,1180,28857
+50733,61132,28832,32226,38440,31071,3649,52861,4329
+50734,50993,23923
+50735,57937,30385,48115,42118,13181
+50736,2859,66206,54922,50290,71290,69324
+50737,71017,18568,9515
+50738,15675,54037,29982,15205,14702
+50739,32388,59236,78129,44275
+50740,33855,43797
+50741,79845,10986
+50742,26041,80074,26252,63482,72099,53836
+50743,79184,68378,23775,30099,76482,21413
+50744,58525,52543
+50745,18898,3394
+50746,73399,61287
+50747,23338,20468
+50748,52344,49591,62263,50543,80971,50089
+50749,31494,42187,3146
+50750,65135
+50751,53315,70879,26703,42882,33039
+50752,29460
+50753,25232
+50754,28647,50260,37803,51127,51634,18566,23067,43143
+50755,80946,46869,18830,61392,42959,68101
+50756,41677,12908,67967,19410
+50757,43967,32198,61417
+50758,61718,40127,43485,27052,43037
+50759,10497
+50760,15312,81108,75684
+50761,50911,69849,67176
+50762,40440,40091,28076,62213,46054,21098
+50763,51474,60637,69997
+50764,9611
+50765,69650,13437,17971
+50766,39002,43015,36414,5382
+50767,9668,3562,74294,68540,40637
+50768,42511,68363,67979,15239,66893,38522,40026,4094,10464,16264,79514
+50769,55849,54655,36264
+50770,67944,67506,80203
+50771,81587,24187
+50772,6514
+50773,8066,53828,37482,74228,34031
+50774,69769
+50775,2764,19795,81738,65211,4875
+50776,71075,47593,53719,41701
+50777,20118
+50778,81683,68710,21282,78280,25426,34805,70743,17233
+50779,26175,34367,57231,32432
+50780,38277,32108,16451
+50781,51362
+50782,8477,53754,72882,53933,78641,81054,36326
+50783,51459,50465,51790,25740,71809,47448,72947
+50784,32007,45481,67028,23978,49725,13408
+50785,67794,65871,49702,67905,50013
+50786,37911
+50787,64708
+50788,9753,34180,43374,69314,20122,58096
+50789,64359,55234
+50790,46987
+50791,2329,2721,69643,20357
+50792,57449,70306
+50793,8791,68959
+50794,26250,56242,17905,33969,51502
+50795,15614,48173,56837
+50796,79082,56343
+50797,40919,8588,31239,60799,22879,54243,9074,28814
+50798,9575,26180
+50799,2963,1478,39380,67995
+50800,7206,73921
+50801,49297,32205,18274,46685
+50802,34254
+50803,17623,60869,56068,34060,2741,74578,38979
+50804,41175,71173,8341,55229,68504,73673,65110
+50805,50522,36639,64874,66511,18076,5862
+50806,72887
+50807,51610,50719,43134,64257,78841
+50808,20358
+50809,16470
+50810,36996
+50811,13155,45526,49994,10680
+50812,36449
+50813,24328,81705,73635
+50814,73949,44419,14420,70279,45222,50995,24454,33719,67034
+50815,3710
+50816,54355,48163,39378,43444
+50817,1873,31233,64108
+50818,42766,62144
+50819,54533,26228,69921,11250,79710,14514
+50820,22523,47711,77736,78428,11412,13495
+50821,39471
+50822,26744,5887
+50823,28898
+50824,78235,63470,35462
+50825,511,66627
+50826,43098,16981,54409,1742,39878,59694
+50827,19016,59886,64488,21471
+50828,49467,67373,68961,53518,24726,50749,35885
+50829,1725,76209,15350,52347,33797
+50830,24978,34763,8635,32612,33578
+50831,58073,14331,34464,42274,78974,76917,39334,66274,75862
+50832,17622,80427,49732,67236
+50833,76082
+50834,28342
+50835,64408,29241,16573,61139,41680,9774,19766
+50836,46363,41259,34681,43832,19143,55597
+50837,44058,42895,76660
+50838,32363,80857,24109
+50839,74287,46886,50909,62418,62758,58993,8630,57849,24523,22588
+50840,55483,49466
+50841,20361,9093,69383,79068
+50842,47374,37007,20779
+50843,9850
+50844,26807
+50845,73601,45334,75015,145
+50846,11705,10263,73555,63353,42079
+50847,6185,70081
+50848,66350,31257,6544
+50849,47087,11670
+50850,30550,3005
+50851,30984,34698,17702,49360
+50852,27267,52923,10813,75173
+50853,29770,72545,66870,81095
+50854,12468,39019,18789,60406,13095,15050,70705,34346,62703
+50855,26810,13654,37678,28439,48304,38806,68551,48292
+50856,38573,48208
+50857,34785,46319
+50858,41862,18482,35702,78700,71691,5319
+50859,55909,12213,34871
+50860,42557
+50861,4757
+50862,41077,45093,34948,73343,31253,19670,69275
+50863,53833,72407,33558,998
+50864,6326,39918,56300
+50865,30246
+50866,80869,71384
+50867,10655,21717,46766,64241
+50868,22477
+50869,36266,12994,20972,33011,43664,21476
+50870,16743
+50871,49939
+50872,15030,24959,61475,57616,66522
+50873,54738,48532,33182
+50874,11469,39372,70953,8054,21876,77351
+50875,39030,58415,69952,40010,70612
+50876,8114,23263,79036,48921,7563
+50877,38574,70055
+50878,61261,50408
+50879,54366,52993,81975,56992
+50880,31575,44006,7380,67572
+50881,41004
+50882,81649
+50883,1654,16587
+50884,53916,87,57380,79944
+50885,26838,56948,81564,38214,23549,44598,50385,77215
+50886,77306
+50887,56374,70205,69958,9139,38536
+50888,42302,28544,47295,72208
+50889,71216,56879,15700,19703,13391,59616
+50890,27794
+50891,52345
+50892,44768,17917,54023,1397,6241
+50893,55863,6079,39468,47502,30362,26862,64222
+50894,5462
+50895,73077
+50896,48649,61815,39837,78200
+50897,36181,52372,56958,55934,47134,79065,72773
+50898,62164,26674,67118,10282,78930
+50899,80242,59380
+50900,61668,37795
+50901,28759,41900
+50902,44676,44494,75707,48930,24813,72311,54352
+50903,81699,71684
+50904,57227,12520
+50905,4966,76626,72808,39057,38364
+50906,65080,6050,58992,62677,23692,16187,11278,58312
+50907,2572,39641,69119,28875
+50908,10486,19965,81138,8614
+50909,48321
+50910,1269,58280
+50911,19967
+50912,32200,64172,57587,45080,56544
+50913,20327
+50914,19359,21604
+50915,42177,71718,60534,39769
+50916,6357
+50917,40787
+50918,3877
+50919,41799
+50920,20855,64957,38997,60850,71684
+50921,57398,39970,40697,23293
+50922,34165,55945,21487,68914,34487,25123
+50923,80022
+50924,59212
+50925,3200,2135,46430,42405
+50926,6464,17806,11670,68874
+50927,14310,54696,2635,44537
+50928,22201,35265,11504,67081,26534,30646
+50929,18396
+50930,44866
+50931,19004
+50932,36938,74447
+50933,29920,665
+50934,62017,41884,54260,74619,56787,40125,73937
+50935,33352,71141,44156
+50936,35590
+50937,40201,45594,19839
+50938,51489,73736,51190,5683
+50939,44272,52162,80189,32246,4080,15138,64200
+50940,63342,29921,80229,56313,77366,60225
+50941,25172
+50942,61498,4094,64193,13622
+50943,14322
+50944,1411,9570,71354,46846,35673
+50945,72721,57079,28219,25016,4331,44108,79249,76290,30255
+50946,79661,77448,41299,80361,1563,34571,66380
+50947,34263,37131,25374
+50948,58285,35993,22998
+50949,28805,58778,75979
+50950,65794
+50951,1495,41249,6228,2784,27536,51756,42101,8174,75204
+50952,22667,69156,51063
+50953,55755,39633,27158,56693,14199
+50954,69540,48956,20388,52127,46087,60832,14724,69267,48632
+50955,2590,30898,35607,17240
+50956,33465,48499
+50957,5187,41604,12570,30,80902,36051,42300
+50958,20660
+50959,13886
+50960,31857
+50961,45153,22665
+50962,18498,22721
+50963,70962
+50964,69857,78637
+50965,29508,70505,73683,71788,1393,40275,8488
+50966,53155,60732,17183,44895,19749,17512,36848
+50967,5653,26287,49305,60495,38731
+50968,50624,38880,62434
+50969,71885,69145,77170,59300,71957,11753
+50970,9955,64914,19123,28371,55162,40119,9446,66406,4333,11308,42546
+50971,35571,53504
+50972,75517,80004,10973,443
+50973,81387,38584,45922
+50974,19295,71081,13279,47262,6887,25523,39496,33391,33203,55186
+50975,74994,45012,68105,20865,38086,65642
+50976,55327,12924,6406,43847,50688,19099,48949
+50977,65604,11124,61106,32387,36627,47962,66637
+50978,69263
+50979,42145
+50980,61903,45108,13158
+50981,49973,20265
+50982,43444,52640
+50983,50821
+50984,63539,57966,14791,39869,18844,16862,80683
+50985,55129,73347,76142,78545,60528,61483,28730,54616
+50986,41235,36985,56311,42455,15850,66856,26343
+50987,77133,57063
+50988,79370
+50989,15828,74990,36247,33913,48157,56495,48515
+50990,28104,52120
+50991,66970,2350,675
+50992,39989,82115,26579
+50993,67089,79015,8839
+50994,8462,81994,61520,70830,71572,63205
+50995,2679,150,24753
+50996,12728,63661,54166,37108
+50997,24396,21286
+50998,34966,49626,19523,12261,45430
+50999,70099
+51000,8284,43952,10855,50103
+51001,71501,29181,33391,48439,12232,60549,76874,43592
+51002,42288
+51003,65638,76647,37687,4323,23958,26009,20674,66645
+51004,42800,3649
+51005,44326
+51006,48779,46332
+51007,54857,29394,66277
+51008,21880,3899
+51009,76064,59403,5418,12406
+51010,59178
+51011,58229,58324,40333
+51012,22670,6899,2390,8926,59741
+51013,79664,235,20378,70681,80098,33789,42775,12544,17725
+51014,40395
+51015,32452,31304,55615,17369,48211,70702,11432,62899,29464,63690
+51016,79249,3733,69435,30955,54410
+51017,6835,9592,14956,9071
+51018,19248,68768,18174,73049
+51019,34465,13609,63748
+51020,51117,30018
+51021,10482,70903,36332
+51022,29831,11940,75805,59193,62809,17131,27380,40885,45441
+51023,13035,53189,53142
+51024,15799,35026,55248,47346,71653
+51025,62056,48552,58070,60923,24928,72474
+51026,8752,3363,2544,56833
+51027,16823,14310,79027,18026,33412
+51028,64959
+51029,16876,52986,65621
+51030,58722,39196,63914
+51031,23518,59478
+51032,21264,34718,21848,75294,29190,72303
+51033,65258,60653
+51034,81184,14869
+51035,48353,37124
+51036,25536,20024
+51037,40399,61903,23119,79012,50568,6714,61075
+51038,77254
+51039,71943,20414,6429,36719
+51040,62194,53328,2913,4017,42260,31553
+51041,81216,72025,13600,70242,9815,39572,24846,26974
+51042,53457,11742,25408,12815,28418,8606
+51043,11399,9408,60504,29517,73736
+51044,7599,73540,52783,10296
+51045,53548,74300,66442,58449,29090,19779
+51046,56616
+51047,57109,12355,54929,9307
+51048,36208,73021
+51049,24629,26358,23737,73291
+51050,78525
+51051,27444
+51052,58504,64029,30634
+51053,56289,79991,43172,11428,6801,78026
+51054,71703,77065
+51055,65483,61770
+51056,35194
+51057,76462,44278
+51058,34552,15848,60603,74069
+51059,22612,58374,57791
+51060,55613
+51061,70381,63173,53826,44597,51183,7757,58727
+51062,8751
+51063,28900
+51064,1052,29731,78794,25350,33533,38136,31073,63761,77270,76861
+51065,31940
+51066,57226,57935,18021
+51067,28345
+51068,81763,8734,34177,52580
+51069,67625,16586,6310
+51070,23595,28356,71648,30023,12180
+51071,55398,57522,30377
+51072,37879,34340,76726,12854,30695
+51073,36283,50370
+51074,46131,36092,42118,28888,27325,38574
+51075,4748,29422
+51076,4125,81783
+51077,27601,9387
+51078,73166,50744
+51079,69435
+51080,45825,30673,27339,71214,21732
+51081,6181,77895,45098
+51082,75138
+51083,47324,16012,67223,43030,56546,55139
+51084,7853,65005,47391,43680
+51085,67205,37029
+51086,37149,5887,40803
+51087,12143,52951,51769,38942,27983
+51088,5905
+51089,47190,38849,76263,59675
+51090,29486,5154,9383,80637,53605,19950
+51091,37029,3674,48699
+51092,26175,65241,20807
+51093,56630
+51094,29652,13356,12598
+51095,58326,6890,80247,60349,30907,35074,68851
+51096,70954,25258
+51097,69194,75406
+51098,76153
+51099,76120,1361,61746,4639,15888,17697
+51100,60392,72115,21556,21652,39155,9692,49762,77423,11692
+51101,72226,31575
+51102,28329,48419,63260,71574,27180,5853
+51103,3591
+51104,49812,29607,75411
+51105,38858,6934
+51106,73592
+51107,59288,82018,23522,72225,66486,21642
+51108,44591,66942,39742
+51109,52284,24771,68332
+51110,75650,20983,62366,14902,52943
+51111,51519,30074
+51112,51193,37286,54111,79456,25475,36837,63112,31485
+51113,41752,5765,23451,3555
+51114,47576,68311,5152,32926,34158,68784,80401,36528,61249,51273,74689
+51115,44603,52921,11829,44705,73880,34741,70856
+51116,52954,2038,14253,49652
+51117,66151,79296,35116
+51118,71447,1098,49212,845
+51119,27878,81384,32457,71766,5179,13876,19970
+51120,77843,77957,69356,65427
+51121,75971,70992,3718,14580,75443,12192,848,24377
+51122,51084,1459,80085,32169,60475
+51123,69369,31518,67344
+51124,21570,80057,6332,71912,77990,74363,21791
+51125,51728,67582,56699
+51126,75125,38979,19070
+51127,53063,5034,56102,35822
+51128,79850,16546
+51129,43086
+51130,72926,20287,22776
+51131,5851,3992
+51132,34038
+51133,18278,77097,930,60288,43154
+51134,54224,37007,30765
+51135,49815,2838,3441,65376,80171,55262,39065
+51136,65231,49093
+51137,330,42632,13036,58611,49480,33061,47414
+51138,49256,31891,16473
+51139,2654
+51140,48546,42153,65257
+51141,19502,73354,53122,66263
+51142,48609,81149,60415
+51143,70535,31900,24313,55045,49168,32992
+51144,21520
+51145,37800,64913,56729,4575,12226,26617
+51146,40738,48677,47350
+51147,11999,39619
+51148,62077,7954,18933,52965
+51149,71364,1102,21560,66050,49091,12464,66277,33681
+51150,66454,64869
+51151,24879,64729,12114,12031,53571,6197,39295
+51152,5727,48655,48706,52783
+51153,46114,68786,24606,643,35311,49925
+51154,81627,65735,11011
+51155,6598,16502,33613,19958,28581,10311
+51156,68619,3547,63995,67963,72692,39639,75510
+51157,3686,6204
+51158,9078,827,49008,46742
+51159,9424
+51160,29209,8940,1655,75591,43121
+51161,34052,12584,28230,37156
+51162,54853,67375,70376,25988,39908,68977
+51163,7404,49437
+51164,19446,28684,54470
+51165,27485
+51166,33084,13435,77374,18337,15266,22628,55527,30057
+51167,78978,44848,65695,81020
+51168,79318,70527
+51169,27078,28364,76579,27387,81013,30996
+51170,12162
+51171,51955
+51172,13223,37849,13620,52215
+51173,28265,14790,23637,65392
+51174,58419,26844,13303,41822,7331
+51175,18576,20010,21642,9477,14758,59181,45028,73004
+51176,2889,65380,58093,70204
+51177,30325,24605,57184,16912,38615
+51178,77457,53127
+51179,77973
+51180,30662,75122,77072,66664
+51181,38248,77433,58384,61655,70938,15440
+51182,58813,63076,49914
+51183,68807
+51184,58333,37510,77570,1564,359,22124
+51185,22918,77564,73497,15107
+51186,30316,19605,21672,53269,67706,40152,12620
+51187,36494,59601
+51188,73077
+51189,43280,45554,37562
+51190,28732
+51191,35854,5771,67321,10340,29723,9083,79393
+51192,24356,67091,32721,62701,30150
+51193,33954
+51194,46589,27640,55495
+51195,64311,25390,65396
+51196,10141,39539
+51197,2473
+51198,42705,43888,78453,38993,28692,40975
+51199,24740,33182,16015,16828
+51200,22012
+51201,40146,66042,61686,5230,44055
+51202,53305,30740,40668,21695,5643,74205,4796,51489,64256
+51203,3899
+51204,80490
+51205,15625,30506
+51206,75577,57636
+51207,7268,6255,81105,13524,17822
+51208,25958
+51209,19713
+51210,42607,44573,62060,21697,51845,17902,48357
+51211,18927,52139,51742,76391
+51212,59930
+51213,33838,3513,21615,68454,56246
+51214,79121,10663
+51215,4154
+51216,42803,62380
+51217,56359,63578
+51218,14863,63913,10690
+51219,62434
+51220,50925,60470,10270
+51221,72134
+51222,50533
+51223,36967,17293,3025,47665
+51224,58,26948,6460,13480
+51225,148,32810,3779,45045,72005
+51226,73893,5022
+51227,791,78908,58107,76769,51162,34422
+51228,47576,71070,37756
+51229,73638,18637
+51230,1598,73710,69911,36131,60665,599
+51231,36917,2328
+51232,59703,55986,54048
+51233,54703,45562
+51234,41159,49829
+51235,31990,27908,38729,77695,69805,12689,6584
+51236,77563,9928,38949,34232
+51237,71760,21698,4542
+51238,58342,45626,3432,51255,76271,21637,33129,41104,69790
+51239,33760,42529,50277
+51240,53087,51068
+51241,48046,16869,80867,9574
+51242,8386,12793,44703
+51243,54542,10773,50081,50155,32888
+51244,60624
+51245,29770,45730
+51246,76114,24212,15341,71017,49250,73515
+51247,39371,67800
+51248,71480
+51249,36316,36531,74902,34117
+51250,53268,3648,80263
+51251,41313,3228,47350,75259,41502
+51252,82079,12465,55470
+51253,44406
+51254,8143,7647,29492,2710,17115,27086
+51255,3796,54195,18024,40768
+51256,19802,19181,64948,1313
+51257,71696,64287,81779
+51258,39488
+51259,75792,51806,26303,53447,11633,58122,31951
+51260,81127
+51261,82124
+51262,66671,21261,21811
+51263,56340
+51264,64861,64408,79310
+51265,55898,58928
+51266,25278,23790,13520,42981,38385,57810
+51267,45695
+51268,71204
+51269,51445,69230,21935
+51270,46992,39390,45186,56237,15064
+51271,8343,8922,65129,49071,6859
+51272,35503,53977,35432
+51273,54864
+51274,20811,47247,75899,73116
+51275,40166,17297
+51276,55349,59016,4210,75598,77607,5925,47137
+51277,57364,56254,44868,27989
+51278,67963,488,49401,65617
+51279,6290,39802,7763,53557
+51280,8378
+51281,20805,63473,62499
+51282,37497,19194,26553,65445,81974,50477,48734
+51283,5829,756,46526,9877,78565,25677,6483
+51284,24149,49523,19516,43178,38295
+51285,59650,73552,53315,4155,81116,42533
+51286,46209,45277,58106
+51287,62514
+51288,29130
+51289,25655
+51290,31459,62375,39285,21514
+51291,53078
+51292,18297,78187,52055
+51293,5219,13224,53842,16754,1686
+51294,72766,49434,7860,5703,52390,45122
+51295,25090,32173,74857,36677
+51296,42193,12717,46066,39053,35353
+51297,9630
+51298,28059
+51299,37967,76661,79429,4872,28229
+51300,13487,30513,66424
+51301,35724,5960,16370,17236,81891,72114
+51302,29763
+51303,25570,22361,72443,16499,6826
+51304,411,69391
+51305,76990
+51306,32038,47828,37772,14195,76302,24690,47752,9510
+51307,64654
+51308,31109,71505,21543,7971
+51309,41760,27537
+51310,37104,54622,32653
+51311,76298,15341,81843,66257
+51312,36626,32452,77392,34120
+51313,6498,77211
+51314,58159,69249
+51315,36669
+51316,3018,30488,18254,79901,15715
+51317,11414
+51318,3667
+51319,64959
+51320,25579
+51321,64530
+51322,8818,22467,39415
+51323,28582,25379
+51324,76075
+51325,54878,5611,65449,9234,37703,30616
+51326,38702,41346
+51327,70805,72911
+51328,18367,38381,30172
+51329,3748
+51330,31035,26522,26380
+51331,70900
+51332,2379,66564
+51333,65289,40006
+51334,55927,64904,36419,50149,3015,70569
+51335,57953,47861,55292,67608,67105,5403,77217
+51336,80282,7890,28079
+51337,54803,80904,70407
+51338,65929
+51339,28203,70400,65175,33454,55851
+51340,17418,12039
+51341,61160,16973,54359,34745,74239,47817,2473,26712
+51342,64372,4481,50324,82155,27030,14556,3178,56735,21037
+51343,62192,36718,25926,35911
+51344,78216,75697
+51345,39833,55033,22657,42346,58631
+51346,49253,28014
+51347,23876,1888,13257,35415
+51348,56337,33790,71824
+51349,66064,56854
+51350,17806
+51351,10833,69275,34173,26813
+51352,55190,18868,22400,41764
+51353,13290,41884,82027,78926
+51354,44015,55618,47939
+51355,77792,45226,45937,80697
+51356,21338,40775,40327,68780
+51357,65060,7878
+51358,44373,52323
+51359,66250,33926,22272,51967,27363,41907,80123,75047,40748
+51360,73300,36689,73545,28499,39015,64047
+51361,38667,75979,39031
+51362,47066
+51363,69596
+51364,82028,52246,20430,25810,56213,12832,1536,8908
+51365,30050,68186,13575,2871
+51366,54373
+51367,21983
+51368,14671
+51369,15518,47148,76533
+51370,50201,387,67084,15218
+51371,37836,46910,64659,68249,73302
+51372,42843,14367
+51373,61126
+51374,56057,76871
+51375,28543,16430,64485,55251,40275
+51376,6537,884,65908,80850
+51377,68906,19574,38606,68093,30490,69429
+51378,554,4001,40509
+51379,47375
+51380,54388,66442
+51381,57712,80077,17924,62394,56430
+51382,46463,78221,38152,62742,76870,11904
+51383,16425,55008,31663,72071
+51384,72068,6158,13288,7105,57508,44368
+51385,52895,9293,72410,78861,35075
+51386,76800,45546,78126,6015,48205
+51387,9020,80583,26045,27417,17460,63524,18452
+51388,9603,36118,69290,72403
+51389,31944
+51390,48283,61375
+51391,16593
+51392,22086,35167,16037,15224,51117
+51393,26261,73060
+51394,485,13526,58567
+51395,38933,62444,36752,66688,526,59213
+51396,72027,74328,32443,19243
+51397,4770,50704,38898,17197,12350,74488
+51398,20492,38978,27154,29429,51987,61456
+51399,18409,25621,23639,34973
+51400,39452,28547,26503
+51401,8475,14951
+51402,15200,79034,26015
+51403,41901,60102,52104,65680,43057,26787
+51404,3487,38813,17178,26560,8566,14426
+51405,53626,13066,18896
+51406,35088,30253,45439,32869,3000,64094
+51407,1022,29966
+51408,74762,34377,74124
+51409,76944
+51410,62832,25623
+51411,53292
+51412,47044,71804,51190
+51413,58498
+51414,39191,19390,15828,54038,56311,7647,35141,61814
+51415,14004,38187,62836,60211,23619,69172,58508,71591
+51416,6737,63622,34679
+51417,1172,17675,44795,35538,40511
+51418,62551,36739
+51419,45093,28640
+51420,34372,29929,33328
+51421,46511,63158
+51422,31921,3129,43200,79446
+51423,59139,40203,6096
+51424,9153,43589,58249,20756,9376
+51425,8148,19830,20148,64414
+51426,21942,23605
+51427,60779,79246,34454
+51428,10006,48956,75453,50329,3554,49166
+51429,43326,119,70667,45831,46125,32006
+51430,26901
+51431,13142
+51432,47958,69628
+51433,60073,62636
+51434,54520,14964,38473,546,1600
+51435,45743,7297,22897,46168,50916,60703,57771
+51436,80325,42496,15480
+51437,53069,40659,76271,59328,79108,53904,50850,39022
+51438,33275,78972
+51439,41765,6140
+51440,13767,48040
+51441,24327,38553,1097,45797,18563
+51442,11076,77749,6084
+51443,23666
+51444,48051,69521,34242,1078,50055
+51445,7792
+51446,73204,15250,70475,17073,48371,20124
+51447,7285,66024,29296,53512,36678,32195,42479
+51448,44966,78963,12985,58271,1695
+51449,16015,8849,65234
+51450,80680,46835,57271
+51451,13059,15565,5269
+51452,43343,65193,61144,54556
+51453,12677,16656,9373,3441,22999
+51454,28832,65310
+51455,63625,2485,24609,76053,47286,56971,25679,27856,3120
+51456,36745
+51457,37879,14176
+51458,5132,35533,27728
+51459,35494,61002,77504
+51460,45521,22461,4354
+51461,22805
+51462,17895,52748,41919,72728,67367
+51463,49380,21973,39526,275,15182,4999,14689
+51464,19190,42510
+51465,48802,51791,69691
+51466,61815,10644,53103
+51467,43081,28159,73839
+51468,67252,78099,34523,79724,73639,58108,66482,47233
+51469,907,36732,70025,18479
+51470,55652,51555,81480
+51471,24832,7629,37361,23016,65846,48173
+51472,75243
+51473,62676,46678,26444,40792,2297
+51474,59046,42914,37218,23824
+51475,4290,75185,39328,57716
+51476,72376,4388,46643,15297
+51477,45873,45703,36290,60898
+51478,69238,53301
+51479,76749,76739,66763,40386
+51480,31601,5499
+51481,14894,53127,15721,57100,34034,17574,40576
+51482,43109,74158
+51483,56713
+51484,73133,12122,27827,29716,58581,71877,77424,68595
+51485,28809,32689
+51486,68749
+51487,81142,63013,43699,19108,4769
+51488,41532,32826,63244,16975,12291
+51489,15361
+51490,45169,33130,51338
+51491,39396,64602,33738,73915,54140,20185,11765
+51492,15359,20211,15366,23029,64294
+51493,53856,58156,26448,59497,28308,72251
+51494,76822
+51495,17876,68350,77697
+51496,5628,39202,12382
+51497,2529
+51498,58518,73166
+51499,23707,40695
+51500,28243,22839,21702,7210,58125,11862
+51501,19786,47796
+51502,2124,51068,13728,6368,47040,15732
+51503,10984,72622,38840
+51504,57168,42706
+51505,40205,81169,11004,61441,78311
+51506,44140,78301,52946
+51507,43964
+51508,40462,45619,5851
+51509,14076,14469,22294,11016,194
+51510,41814,67912,55530
+51511,9734,14616
+51512,11129,4557,61418
+51513,81305,37633
+51514,25882
+51515,67441,25015,72545,29414,39870,50730,71376,66799,27424,48684,21352,16662,20405,56952
+51516,18472
+51517,46137,67834,79912,43593,21343
+51518,58865,10286,19810,77997
+51519,41839
+51520,32766,28251,42590
+51521,8981,7207
+51522,54977,27825,39152,36861,59533,6131
+51523,27623,58994,61707,44770,35533,46286,60469
+51524,4807,6415,9996,74511,110
+51525,75005,68288,9759,62691,57631
+51526,80478,55047,53447,42039,47552
+51527,76351
+51528,27865
+51529,32238
+51530,54680
+51531,31543,59912,7444,22422
+51532,56183,55912,77187,70797,17767
+51533,44983,4792
+51534,60520,34289,15833,32847,50753
+51535,17433,39802,4921
+51536,25449,39035,27129,72523,25840,20599
+51537,22935
+51538,33500
+51539,31361
+51540,75027
+51541,19424
+51542,70889,43109
+51543,56225,42326
+51544,81061,4936,11145,75116
+51545,3221,49010
+51546,75133,58783
+51547,10251,16047,8296,66530,34613,79078,69967,38039,27452,2091
+51548,297,59542,26733,45683,73008,55638,31793
+51549,21954,58062,18029,78155,78183,34248,11471
+51550,78173,22099,66584
+51551,52346
+51552,49047,10636,41544
+51553,6762
+51554,25192,75736,42831,59594,75227
+51555,70063,12281,51380,35937
+51556,52326,79458,25818,16383,11371,25062,55349
+51557,64837,69854,46692,66465,41390,42016,62965,42039,38190,6720
+51558,75666,69977,49129
+51559,78961
+51560,12926,50500,63447,77061,33014,42894
+51561,16932,59601
+51562,19715,64133,35017,43233
+51563,50097,283,53006,14826
+51564,17950,45099,37772
+51565,72220
+51566,15558,44538
+51567,3797,55166,77650,19161,65547,39689,681
+51568,72459,59925,11203,41034
+51569,3836,36691
+51570,32084
+51571,64766,78093,18180
+51572,53657,10432,73863,8332,55866,50002,40922
+51573,19414,76051,16863,23833,70318,79266,30277
+51574,81981,73784,81102,12582
+51575,35744,67396,52077
+51576,5368,43686,75137,6934,31251,30324
+51577,24705,38610,48816,17433,2026,10925
+51578,45869,9404,9138,1053,59628
+51579,52821
+51580,8204,80779,65240
+51581,61675,43810
+51582,37152,48286,38579,69232,78499,66642
+51583,42645
+51584,37869
+51585,35714,79064,3651,31722,40203,81389,69134,23758,25488,14384
+51586,47608,69753,29232,10403,41593
+51587,21237,58200,42844,36092
+51588,44363,66687,3754
+51589,58965,27270,13238
+51590,11730,37520,70179
+51591,16834,72110,52062,19273,19119,44628
+51592,23314,52400
+51593,72618,54075,54514,71588,45009,30452
+51594,59646,39712,9822,61588,66911
+51595,2315,13628,35242,58401,49988
+51596,20324,66373,21862,11373,14475
+51597,20500,18678
+51598,61615,77447
+51599,19793,74850
+51600,32788
+51601,31978,11506,25768,42446
+51602,56998,33497,31970,36305
+51603,5156
+51604,5914,15623,55489,81903
+51605,66033,61002,69244,14360,62897,56504
+51606,47786,37079,48058
+51607,15393,25742,32979
+51608,63040,36475,40971
+51609,73742,69610,63648,57746,58747,12394
+51610,42062,57710
+51611,70816,8002,1743
+51612,22409,34781
+51613,50576,36193,75737
+51614,56979
+51615,28223,42115
+51616,76153,74427,72856
+51617,22244,8410,20408,50880,43970,48036,62839,73430,77332
+51618,4318,38936,3770,61431,9896,45449,111
+51619,73060,34460,5255,21590,58792,26880
+51620,12225,6220,22785,20904,32537,48674
+51621,24477,36300,23413,56124,67076,58794,12383,47659
+51622,79729,18350,59377,68124,48264,72545
+51623,1150,14723
+51624,28163,53947
+51625,44516,18387,55096
+51626,37501,61023,63554
+51627,59601
+51628,1828
+51629,6357
+51630,12122,34660
+51631,40560,51373,82117
+51632,51098
+51633,51588,24554,50801
+51634,68739,70974
+51635,29039,57824,46318,63033,23103,35733
+51636,14990,14585,12276,15624,34284,5679
+51637,22874,21948,25856
+51638,56543,2351
+51639,46615,14086
+51640,44445,11298,73097
+51641,64929,63055,9146,70178
+51642,60646,50664,73795
+51643,47632,46579,511
+51644,57421,33583,36181,835
+51645,57882,67343,72347,74240,71645,72605
+51646,61805,81684,34613,4325,49405,52999,49129
+51647,69327
+51648,20187
+51649,61269,631
+51650,57970,38547,44948,67738,52610,15034
+51651,29128
+51652,36107,50305,55409,54601,73779,6081
+51653,11949,12362,33471,67722,81271,32583,43201,61855
+51654,48372,53712,20186,32443
+51655,42083,34090
+51656,67567,51316,65316,49578,20584,19867
+51657,11298,13295,9245
+51658,69106,48249,8848,23630,67358,10801,48987
+51659,7723,46258,73880,45758
+51660,37497,52876,36029
+51661,54655,38015
+51662,72354,32120,56743
+51663,57160
+51664,65298
+51665,69876,70876,37300,81924,19212
+51666,77887,39378,39861,7689
+51667,65571,63782,60245,243
+51668,63236,66446
+51669,74196,15497,36809,28782,57316,71102,37057,69418,78976
+51670,33299,40322,17681,68503,66988,11239,38261,78109,69019
+51671,2860,7289,72700,59832,72152
+51672,29225,29791,35833,75262
+51673,61518,70304,20539,30064,27240
+51674,14942
+51675,38740
+51676,14902,24295,71840,14482,15730
+51677,59402,64857,50410,55996
+51678,53737,38227,70132,50973,25553,72325,23316
+51679,68830,35885,2621,60294
+51680,47166,42338,73292,44721,9148,32178
+51681,37286
+51682,20102,56122
+51683,72942,13940
+51684,25888,36488,52278,49423,12711
+51685,38025,38157,11160,78258,3307,33091
+51686,4639
+51687,19123,58746
+51688,60869,7290,457,35098
+51689,58463,43390,80610,77139
+51690,66564,5207,10207
+51691,60159,77089,77942,3166,3065
+51692,41
+51693,2161,6070,7901,19399,36179,47898,62145
+51694,74833
+51695,37026,52218,77735,19219,41578,38169
+51696,19620,48327,58649,70519,58704,22309,72687
+51697,81056,82068,5018
+51698,10139,10750
+51699,61965,4533,38145,77392,39283
+51700,76830,79318,5394,40185,621
+51701,24175,4668,46680,73398,79438,14141,43783,75275
+51702,74265,19691,59099,43801,50619,77382
+51703,28759,36586
+51704,69440
+51705,75778,72329,3754
+51706,14092,39732,62281,36194,61263
+51707,74460,47150,33770
+51708,23344,68413,11511,6602,75867
+51709,60285,66914,41326,45273,81328,58118,3919
+51710,25115,63846,41481,860,3142
+51711,43843,78501,27310
+51712,62128,20932
+51713,15622,4697,77050,34495,79539,38354
+51714,49437,70741,7112,63232,74055,16351,5704
+51715,56330,62053,51366,50550,38766
+51716,81679,12751,56093
+51717,58040,1215,62661,68857
+51718,55640,60217,18220,5574
+51719,27248,78425,76309
+51720,35029
+51721,58115,3714,66362,26347,78837,31180,54373,16729,40281
+51722,73298,71707,23204
+51723,35086,74815,67431,13320,58036
+51724,23873,2670,78728,68802,2893
+51725,16660,46563
+51726,48119,22262,79536,55545,52341,28475
+51727,48711
+51728,46946,24813
+51729,46511,77948,44463,22849,45127
+51730,51612,21640
+51731,40495,81491
+51732,16587
+51733,61269,56333,37377
+51734,55923
+51735,4130,20635,25858,74252,16149
+51736,47178
+51737,42106,35722
+51738,78592,4252,34124
+51739,1647
+51740,35033,45535,2404,79695,11393,59469
+51741,76261,11519
+51742,67769,70739,73503
+51743,67147,65799,45434,58465,13304,59809,13373
+51744,74434,18944,60232
+51745,2134
+51746,18553,51248
+51747,13979
+51748,72877,2234,77716,66330,44033,5393,73402,77963
+51749,56359,49245
+51750,68669
+51751,60848
+51752,51067,44219
+51753,7651
+51754,63596
+51755,60254,40023,20548,72498,52144
+51756,14369
+51757,71205,18262
+51758,75272,52433,32830,57563,77638,7645
+51759,32911,27009,59317,3026,77305
+51760,31592,34853,1754,77657,11996,25182,75075,42511,35187,7477,78736,51270
+51761,51484,16639,46547,1408,16526,4440,27457
+51762,69528,7386,51136,69333
+51763,67118
+51764,53599,41416,14626,46707,67925,1423
+51765,24062,73677
+51766,56036,14720,42693,2299,36731,9138
+51767,1214,12502
+51768,25705,77997,71028
+51769,74213,38527
+51770,40418,18412,77094,28497,51597,72530
+51771,12209,386,55177,69759,1754
+51772,27926
+51773,15254,10486,48788
+51774,72089,55333,54601
+51775,79048,19135,50371,47251
+51776,26402,71352,73375,21974
+51777,5652
+51778,34499,59882,69048,43746
+51779,20703,27919,33052,3825,17572,26854
+51780,70304,52490
+51781,67455,12785,80450,80318,64416
+51782,51144,9421,32288
+51783,37869
+51784,65013,54976,67238
+51785,42351,9233,20985,79472,43393,51958,31225
+51786,68578,773,59752,50655
+51787,74668
+51788,2870,53443,80745,73907
+51789,49740
+51790,258,55830,50657
+51791,50720,31706,3330
+51792,70407,57222,19946,5118,4739
+51793,25167,2472,5346,23006
+51794,73960,11043
+51795,35547
+51796,74817,71703,63916
+51797,6544
+51798,74410,13744,28839
+51799,82060,72441,78804
+51800,14772
+51801,19142,22570,19069,71216,32738
+51802,62270,34531,33240,11134,2040,21097,75655
+51803,37322,16531
+51804,73940,69444,40947,8334,9695,59655
+51805,47959,53768
+51806,79127,45721
+51807,27266,7408
+51808,67509
+51809,9941
+51810,25587
+51811,72847
+51812,37017,23565,77026,76297,47411
+51813,80332,38206,11355
+51814,41800,4796,57081
+51815,68722,15252,77989,53160,68206,22090
+51816,77034,17451,51236,49436,4743
+51817,29672,62429,31368,19570,4912
+51818,3517,58958,11538
+51819,27862,36681,62463
+51820,71223,1645
+51821,74834,37260,59099
+51822,55768
+51823,8058,36592,60186,61587,63996,63710,4800,75144
+51824,63098,18745,69290,26481,69980
+51825,2307,37485,32017,5870,20687,70757
+51826,70543
+51827,43747,37390,51338
+51828,80191,35678,16904
+51829,18772
+51830,16334,53424,24067,1187,15796,41707,53944,62359,72048,18485,38495,78635
+51831,45429,74786,36973,2448
+51832,46946,66438,17147
+51833,20454
+51834,28468,64312,73276,49828,7557,15839,31353
+51835,74873,69674,4079,55097,55542,28371,58491
+51836,56289,75222,39949,36642,35575,11460,54327,51807,14647,64120
+51837,5870,59234,33102,4738,47544,15655
+51838,62688,36136,63273,25757,61656
+51839,34440,42840
+51840,43764,14595,33629
+51841,76412,61672,53928,13390,50798,75572,14808,41949
+51842,39535,44718
+51843,1325
+51844,71928,48637,59026,78169
+51845,51464,1560,8005,34466,10122
+51846,70799,64423,45314,67743,11979,48185,71450
+51847,57691,43151,55815,50904,53079,54122
+51848,3969,42542
+51849,65701,43453,42361,22510,36808,32098,56289
+51850,5100,9761,18556,16366
+51851,57469,82094,57780,18867,39400,2930,72656
+51852,12435
+51853,81776,32059,66283,42457,30977
+51854,61997,19845,23499
+51855,69379,72549,68009
+51856,15299,74564,29071,19332,81366,10331,63074
+51857,67349,20186
+51858,15189,70231,74311,722
+51859,74082,33679,5374
+51860,40609,12963,31832,42254
+51861,27119,3409,7948
+51862,13718
+51863,53051,66362
+51864,58579,52208,55548
+51865,50691,56759
+51866,43425,9668,77790,58076
+51867,50053,22957,14934,23017
+51868,28656,62996,43348,41606,80238
+51869,67050
+51870,76025,80135,15978,954
+51871,2346,54632,31253
+51872,24150,13417,36290,74959,81277,2677,39302,24498
+51873,80444,33955,6049,43563,80258,30070
+51874,68425,62369,41674,75599
+51875,24342,126
+51876,11302
+51877,81690,20291,70639
+51878,28544,66558,80122,37591,10948
+51879,32205
+51880,66433,66503
+51881,39899,59893
+51882,49163,76517,63623,35997,53801
+51883,21696,19550,67378,38353,64028,48974,10063
+51884,18776,11670,55941,67201,58237
+51885,51101,33051,55738,69920
+51886,44280,80423,48731
+51887,26315
+51888,58730,32877
+51889,2546,65277,29291,51352,69231,5276,33638
+51890,63351,31394,77064
+51891,30410,1647
+51892,4431,50924
+51893,48648,28213,25817,6394,76543
+51894,9057,17465,12571,69651,30684,59680
+51895,20106,7442,68670
+51896,8157,39454,41847,29386,5128,46795
+51897,74549,14656,7876,7578,13957,42911,64769,81764
+51898,71714
+51899,43643,14312,55686,10049,26525,64754
+51900,58361,62556,18727
+51901,55283,81879
+51902,78539
+51903,55162,34424,1708,2401,61438,25694,33
+51904,9389,17623,27850,9022,12277
+51905,69695,18270,16911
+51906,29509,46827,10726,37017,30055,32884,34372,41772
+51907,15908,68830,56968,31994
+51908,11836,27625
+51909,59833
+51910,22019
+51911,26755,21109
+51912,50132
+51913,48954,1221
+51914,42969,77388
+51915,32573,6886
+51916,56749,65501
+51917,9979,53306,75507
+51918,79312,11671,42583,9123,74912,31252,53780
+51919,58431,56622
+51920,27186,33571,42546,23842,34393
+51921,7246
+51922,48116,75868,51105
+51923,21181,65857,76055,74697,80996,45680,66350,28962,74319,66257,17262,42099
+51924,30218,43373,74766
+51925,80709,7356,12525,54144,12636,39452
+51926,14059,19322,52223
+51927,5611,64699,68447
+51928,28253,3445,48595,29655,21648,45674,16072
+51929,17253,10319,16148,42802,6475,53475,60634,62528
+51930,71304,30901,71607
+51931,14242,46136,11677,29522,26747,507
+51932,77023,56620,37340,24680,63205,74355,58581
+51933,5110,10504,30414,66232,30963,44632
+51934,38742,44779,30853,59842,48900
+51935,42805,42211,62192,76853,35097,69356
+51936,76919,10258
+51937,80923,51675,19014,42490
+51938,63626,36403,52631
+51939,7736
+51940,74377,79425,42609,29638,26894,28924,76124
+51941,64456,75112,76204,24174
+51942,54661,11381
+51943,4929,22500,59324,55798,55710
+51944,53316
+51945,18590,36567,41041,1639,28199
+51946,52491,3109,73897,62836,39727
+51947,67801
+51948,22062,22148,44574
+51949,43315,51496,23533,71809,65348,33667,34308,56577,76744,19248
+51950,2230,11950,66527,40128,6679,42474
+51951,67171,55053
+51952,58755,8961,47685,7577
+51953,64861,18769,22012,56907,76252
+51954,11489,70960,7191,38681,51456
+51955,22299,55914
+51956,9138,58940,44310,21739,72660
+51957,63961
+51958,23249,60952,73861,18681
+51959,44324,73682,71485
+51960,32011,11961,42275
+51961,45260,73955,26322,1370,63241,8246,58016
+51962,71297,81562,14053
+51963,52132,80946,71393
+51964,37221,43321
+51965,57122,55204,73971,62426,4836,59218,72605
+51966,18302,5543,56374
+51967,68704,62223,13881,43167
+51968,73306,30910,17334
+51969,71988,25420,29970,45896,57691
+51970,27140,78877,81664
+51971,13468
+51972,43386,55138,31332,53853
+51973,33356
+51974,19745,51085,36714,364,3392
+51975,61232,16882
+51976,42033
+51977,40558,5183,80969,50806
+51978,37730,20456,57437
+51979,56777,11759,15790,15337,90,49721
+51980,18697,51742
+51981,38077,70848,20362,51545
+51982,47505
+51983,28943,48276,30316,54850
+51984,66758,72693,60440,77106
+51985,39404,58652
+51986,22033,44193,33568,12603
+51987,61956
+51988,25511,25683
+51989,58806
+51990,81011,50923,13778,30066,25486
+51991,10918,81516,43816,3467,53572
+51992,40302,25371,15962,27749,7284,11767,79170,50389
+51993,73850,79785,26491,3992
+51994,36354,141,23212,62499,41481
+51995,67743,76648,36587,11436
+51996,63513
+51997,56192
+51998,77551
+51999,52848,20492,22887,3785,57962
+52000,71996,9259,76409
+52001,69771,76299,7368,25173,21571,54457,3334
+52002,45156,64711,43420,14735,35997,48698
+52003,38122,35052,20934
+52004,67192,7771,16975
+52005,65962,14855
+52006,79586,29881,7099,62056,52441
+52007,17266
+52008,21506,28787,60754,21446
+52009,26209,35295,3712
+52010,55351,41615,60749,56929,72690,69683
+52011,78095,5674,47424,30877,75121,6920,47339,20907
+52012,9804,28609,16334,12854,20684,45271,7496
+52013,80279
+52014,5119,36092,73210
+52015,40311,32192
+52016,73116,67309,67732,42277,28511,29578
+52017,27639,45440,6644,57217,19574
+52018,62863,19707,30938,57473,60519,67713
+52019,12023,63982,9569
+52020,39539,52853,28984
+52021,72091,30777
+52022,26245,2383,29609,62207
+52023,28025,16758,21001
+52024,59294,6689
+52025,32449,2113
+52026,56284,43731,73647,22431,64962,41637,19504,70698
+52027,10874,35976,39803,36059,1934
+52028,2749,62492,134,20479,80178
+52029,17425
+52030,67393,55718,75573,56407,2404,4274,11177
+52031,65144,23944,66811,76436,13413,33482,12625
+52032,47511,12500,31266
+52033,10777,66510
+52034,35328,12382,63256
+52035,54604,7372,17466,2234,28002
+52036,6180,73690
+52037,3806
+52038,8008,47134,26913,46525
+52039,74656,2833,24123
+52040,56590,80153,68060,70895
+52041,75518,53904,47882,31987,62864,64540,39391
+52042,24355
+52043,67794
+52044,20203,178,61423
+52045,76844,36494,3578,43626
+52046,35798,75750,37866,26646,45066
+52047,59882
+52048,43581,53710,61483,78577,33916
+52049,64459,23184,9918
+52050,35057,77990,23073,58598,16391,62989,11203
+52051,57914,62696,48536
+52052,62694
+52053,23798,52975,53090,81051,29496
+52054,18167,69594,76712,33793,18733
+52055,32535
+52056,66521,50309,14391,38872,60561,6172,38550,57882,21697,32366
+52057,70346
+52058,43095,39404,64719,52357,11753
+52059,47606,67564,8460,53632,667,80701,35037,4063,21324
+52060,30342,6465,63574,48341,59094,30990,55764,41519,39505
+52061,51729,60957,1750,41412,46316
+52062,48450,63336,73925,51516
+52063,3440,52631
+52064,26680,78146,80690
+52065,13579,3172,27774,15207,49243,52529
+52066,81319,68367,39056,73836
+52067,67504
+52068,60993,55588,46310
+52069,1151
+52070,20414,77637,20364
+52071,49722,51344,63576
+52072,1976
+52073,6494,56899,21623,12971,6429
+52074,79772,1317,46081,27035,41886,60649,65336,12293
+52075,36765,57241,28899,69107,50828,74216
+52076,73679,75428
+52077,7664
+52078,40277,44311,40488,59538,78489,26443
+52079,54925,8569,4731
+52080,81852,36840,33579,26303,8670
+52081,7442,60939,7867,22710
+52082,7065,59618,44087,65397,47275,25396,30736
+52083,48392,57076,41569
+52084,77277,31453,54048,8324,51251
+52085,58976,43424,28800,62881,24503,48353,7628,42308
+52086,3899
+52087,6165,53053,50182,69435
+52088,36265,18015,45900,17069,1314
+52089,40004
+52090,74672
+52091,60396,80903
+52092,59295,81720
+52093,46319,32281,75125
+52094,54959,2063
+52095,37351,66415,25939,39670,17806,75729
+52096,50587,54238,72560
+52097,68014
+52098,18252,37915,58033,113
+52099,49565,76846,66418,56147,59736,75100
+52100,14694
+52101,81021
+52102,58957,60216,7448
+52103,51358,61343,58963,34700
+52104,69167,26534
+52105,80460,23536
+52106,64916,64177
+52107,52164,35403,41708,24363,33011,32013,29021
+52108,66534,60286,384,27792,19071,14892,38729,9812,63322
+52109,4292,45498,34436,58752,36578
+52110,24387
+52111,68433,81341,15801,69499,28107,54278,19680,41890,77908
+52112,33118,61832,60596,28289,13110,37185
+52113,30457,36640,79610,31536
+52114,50295,39669,45756,7490
+52115,54238,909,20251
+52116,35989,28764,35183,3429,14081,14819,12122,79220,72745
+52117,28932,77645,1089,13674,27535,39993,33731
+52118,3226,19001,78508,60151,34930
+52119,54981,51958
+52120,39417
+52121,44528,41948,51512,24988,71322,59605
+52122,72376,61901
+52123,63801,76675
+52124,47480,9860,26769,74369
+52125,59995,4865,51043
+52126,53710,4716
+52127,82027
+52128,17341,42333
+52129,66527,65420,6192,63435,79723
+52130,11414,39478,2515
+52131,589,71971,1099
+52132,10881
+52133,2931,45616,21555,32917
+52134,64113,69678,34832,43725,75673,47135,70245,68141,39066
+52135,59615,11711
+52136,44957,12919,79012,57373
+52137,22035
+52138,5671,44877,41037,1563
+52139,46551,71079,41267
+52140,80747,73496,65345,20910
+52141,1792,43675,57934,57533,55772
+52142,75845,16306,49134,1176
+52143,76990,2217,75023,36083,45442
+52144,25919,81973,8131
+52145,62453,12405,77204,51062,72149
+52146,71232,21062,22871
+52147,26180
+52148,40567,36986,593
+52149,44798,57801,15865,19476
+52150,37884
+52151,48904,70208
+52152,61953,16700,29730,28592,3977,77010,62556,51314
+52153,52120,30488,60682,16299,6990,34005,38965
+52154,65022
+52155,8095
+52156,35289
+52157,18165,49140,3617,16744
+52158,81580,6089,20612,11859,33328
+52159,11115,21446,62116
+52160,36344,24624,23317,38254
+52161,50860,54980,73428
+52162,45512,14077,41037,10497
+52163,3120,58269,38749
+52164,7664,31420
+52165,31857
+52166,81982,41841,38663,34532
+52167,28464,41531
+52168,76038,38678,19431,43093,4562,29854
+52169,17318
+52170,63361,7493
+52171,56943
+52172,79126
+52173,26112,22858,47529,12826
+52174,73870
+52175,23257
+52176,28747,11244,42807,71591,20244
+52177,64648,34764,6460
+52178,16553,65149,23305
+52179,35152,30940,72740
+52180,31814,49738,26220,59911
+52181,24897
+52182,10225,41900,16246,64654
+52183,17678,12422,1562
+52184,18746,29385,43556
+52185,41183,62718,27261,6990
+52186,54901,47737,63342,69178,46439,40482
+52187,41296,7838,70111,26434
+52188,21116,79708,23251,8973,39801
+52189,71102,24728,35868,48284,62870,38766,27357,73714,13889,29025
+52190,52536,6682,12700
+52191,22110,50926
+52192,73362,23542,51129,2648
+52193,59518,40894,75365
+52194,7069
+52195,49583,16699,23710,47885,37164,79212,70354
+52196,19173,25278,45068
+52197,42237
+52198,29460,47571,17157,62063,23048,22146
+52199,25015,49104,17058
+52200,26565,26018,45836,45750
+52201,36753,77114,61114
+52202,77403
+52203,7814,60642,66506,3282,36124
+52204,20855
+52205,80948,70641,38957,72800,34453
+52206,69145,69999
+52207,2732,72681
+52208,72866,3036,65425
+52209,33638,10123,6670
+52210,41832,34112,57040
+52211,40787,36765
+52212,4707,56264,71276,3177,20005,63171
+52213,42345,31139,13685
+52214,32800,23603,8081,42529
+52215,77575,48631,39624,64462
+52216,17978,25079,9976,60598,44400,8267,50483
+52217,60396
+52218,26184
+52219,41424
+52220,42269,819
+52221,75159,43164,80229,37657
+52222,63670,69977,13619,40504
+52223,77311,51540
+52224,64107,16661,53098,34594,19039,80526
+52225,19059,48397
+52226,71155,37122,80863,10926,25531,51818,36478
+52227,73537,20156,62751,17826,2275,29889,17881,60035,28589,2220,36571
+52228,80842,43483
+52229,9576,71063,80539,10899,20055,74259
+52230,46671,65181,29333
+52231,44554,39425,41312
+52232,29599
+52233,1052,41705,42333
+52234,70933,8522,6421
+52235,25030
+52236,76310,75798,38304
+52237,68746,48829
+52238,11610
+52239,26220,80959
+52240,20822,1079
+52241,22139,20993,31007,21143,62003,54144,50917
+52242,36013
+52243,50460,17681,46043,4660,60899
+52244,24135,20056,8445
+52245,43483,64110,30589
+52246,70485,32430,4843,49431
+52247,759,19786,46762,59611,78092
+52248,65833
+52249,722
+52250,44732,66154,44066,47532
+52251,65095,26945,36855,1147
+52252,35931,370
+52253,37164,23029,46002
+52254,78940
+52255,16953
+52256,23570,8805,57929,60530,38757,41964
+52257,62859,43964,46275,55053
+52258,41733,75134,76747
+52259,18347
+52260,78401,14627,57600,38390
+52261,57112,77838
+52262,18678,33620,44402,19743,55405,66242,61724
+52263,3241,46885,70050,36191,78067,54730,78326
+52264,57922,70081,67351
+52265,37112,64605,26338,13545,55707,67741
+52266,80434,36223
+52267,14083
+52268,34532,62309,78017,52747,63995,60581,77226,5986,62263
+52269,29184,51537,2555,2822,60459,5678
+52270,14364,35554,33903,70219
+52271,24808,61497,60224,23128,28502
+52272,56191,50698,15816,20536,48338,48959,81321,73908
+52273,77278,25577,54329,12421,5622
+52274,63410,66486
+52275,68777,46160,57120,2115,51499,17879,4907,55991
+52276,41700,58808,15120,3968,861
+52277,44555,78571,33867
+52278,28628,75076,57507,32221
+52279,18671,78352,17818,77536,17175,6978,78786
+52280,58543,32391,58792,62346,5880,34487
+52281,610,62509
+52282,36369
+52283,81793,401
+52284,71877
+52285,74150,25696,35223,46955
+52286,20790,23361,42108,75846,59237
+52287,64748,23546
+52288,78900,18376,65664
+52289,70670
+52290,77089,51307
+52291,79303,15954,29332
+52292,16694
+52293,38556,41493,21184,56431,29688
+52294,79198,40276,28272
+52295,37996,63430,14707,29583,81514
+52296,9673,74096,62526
+52297,39252,53709,26973,3656,2882,74457
+52298,18603
+52299,74777,56533,29220,67469,18609,51169
+52300,64615,45797,28742,57616
+52301,51195,66319
+52302,82136
+52303,75320,64960
+52304,13650,48188,80448,26558,19140
+52305,73271,29406,76927,59811,44052,25071,57608,79999
+52306,73799,60456,54860,40838
+52307,43548,25102,56165,10195,59661,1617,4066
+52308,51358,9334
+52309,75536,2931
+52310,32651,35949
+52311,21424
+52312,10565,54465,75398,70904,78908,48608,18546,31001,65529
+52313,35910
+52314,29346,11767,37540,54814,13295,57125
+52315,74564,36562,8871,26475,20803,29650
+52316,28582
+52317,56057
+52318,16974,44975,44508,33965,24830,55713
+52319,59396,27390
+52320,49332,69802
+52321,7385,52240,78344,74729
+52322,16194,61593,81646,13740
+52323,2621
+52324,46462,11515,77282,52978,64004,46358
+52325,33810,53929,73644,2362,7498,63520
+52326,42693,62263,35183,45803
+52327,63276,52642,10062,35462,24795,47196,22376
+52328,2710,58785,72834,68955,20305
+52329,59966,81687,54776
+52330,44995,79269
+52331,78952,64694,44943,63920,69822,42994,23270,43753,48699
+52332,48127,80461,14313,1722,15250,33763,41274,77678
+52333,58968,53884,5935,16000
+52334,55390,70770,38680,14650
+52335,24069,18656,77612,53229,29797,7769,35453,39327
+52336,36528,34585,15676
+52337,17888,63598,16793,46835,6151,42893
+52338,8006,18958,73082,73823
+52339,70681,30528,33589,41336,32054
+52340,19982,49181
+52341,22609
+52342,68086,74990
+52343,77926,2757,69852,15470
+52344,794
+52345,12149
+52346,47989
+52347,65793,50536
+52348,11025,51478,33416,58230,12538,15096
+52349,35489
+52350,15326,4169
+52351,80832,20437
+52352,52644,51199
+52353,46360,50659,73728,33032,39582,13114
+52354,36408,72608,47517,70293,26182,14086,53205
+52355,61809,13284,19159,61776,47257,62731,3353,26898,12971
+52356,40464,77668
+52357,735,40509
+52358,41116,26560,72078,47688
+52359,47240,26258
+52360,51649,49998
+52361,3376,13913,12326,51879,15480,49798,208
+52362,71877,38015,68460,26964
+52363,81997,9458,34036
+52364,35720,11393,74475,26095,3630,11623,76510,44918
+52365,31615,42006,20890,9043,32142,14804,39094,41164
+52366,69784,12810,366
+52367,34273,21858
+52368,12806,7180,72727,82069
+52369,36688
+52370,77076,69318,100,52589,37898,63029,45789,59675,7219,64533
+52371,26623,646,15296,38342,77860,42104,45644,19008,60795,60528
+52372,51171,3305,56092,44667
+52373,1673,37156,66779,25456,59128,27353,52407,34001
+52374,56808,71620
+52375,40023
+52376,10522,20369,18607,41362,52595,47265
+52377,49101
+52378,50406,60970,63623,61940
+52379,40136,73293,32734,66118,8241,62722,42538,27763
+52380,11696,21960,12058,36997,19104,60218
+52381,25493,29026,7076
+52382,61918,5788,71241
+52383,47131,79043
+52384,54827,3161,15380
+52385,80144,31560,13598
+52386,26289,20956
+52387,25539,43046,13981,55592
+52388,79273,65801,2355,63229,76433,9663,31485,70648,8822
+52389,32347,40201,35339,26046,41103,14828,10826
+52390,3207,71250,16568
+52391,69999
+52392,68891,28521,10104,59439,1004,34202,58730,53016
+52393,26871,54977,11247
+52394,44673
+52395,27076,61176,34140,65277,77446,47206,41086
+52396,70089,42334
+52397,39296,79209,76332,3207
+52398,77735,66132
+52399,36752,7943,33878
+52400,57636
+52401,36578,75302,61541,81305,15140
+52402,70041
+52403,286,75222
+52404,72690,75980,80172,51806,60058,33910
+52405,3637,10863,38118
+52406,62126,52244,61128,37576,18785,2156,17219,45989,69048
+52407,18350,49339,57218
+52408,73850,35662,53979,44875
+52409,23725,8354,50114,23220
+52410,26762,35867,2880,41239,14837,68166,29546
+52411,39258,719,42593,8230,62376,35087,57107,61388,16980,53699
+52412,34584,41277
+52413,76713,43865
+52414,74511
+52415,34912,28468
+52416,5615,35047
+52417,44886,29553,4064
+52418,31725
+52419,38391,30181,16908,17536,18659,68064,35528,4271,556
+52420,44524
+52421,18302,36109
+52422,72910,74447,38014
+52423,64220,76471
+52424,20824,34878,24849,21308
+52425,62034,64220,17946
+52426,71646,62090,73925,7269,35372,39205
+52427,49703,13111,12923,58569,77889,68315
+52428,10139,23500,69387
+52429,34775
+52430,2307,81519,44637,5601,20320,80443,58502
+52431,26797,63140,39756,63970,50108,76136
+52432,70271,7227,37488,59551
+52433,66448,50908,24406,21993,62210
+52434,53563,60431,77558,74502
+52435,32867,19152,55370,7545,5022
+52436,21745,68881,34042,38732,5955,2747,52131,67364
+52437,67565,30957,2451
+52438,32924,25529,78721,39474,29060,66350,79562
+52439,49289,4951,21143,61248
+52440,6745,79048,15976,50654
+52441,71132,54824
+52442,55933,42683
+52443,35218
+52444,76799,20866,73099
+52445,68880,63871
+52446,47425
+52447,34750,23277,1718,66455,12526
+52448,39202,52603,6801,58545
+52449,56930,51067,11711,2984
+52450,42711,70025,69559,41112,28952,68907
+52451,48747,4969,24001
+52452,23376,48347,41929,9675,8468
+52453,49391,81278,47541,28863,47852,24997,80549,67558,40117
+52454,52812,22547,1847,52933
+52455,58170,75499
+52456,57155,73498,8050,64008,24528,7196
+52457,5120,58023,40185,9669
+52458,60063,28502,1266,22693,34028,7179,70418,22948
+52459,10911,48493
+52460,9976,43185,28058
+52461,51098,56816,50587
+52462,31570,42667
+52463,57363,81696
+52464,64028,11082
+52465,62985
+52466,11104,64794,48031,47989
+52467,43201,41856,37036,10306,19972,30176,46083,24536,28971
+52468,57147,2386,4661,8133,26430,33231,31100
+52469,35937,25316
+52470,52302,19391,2526,3837,49198,28739
+52471,43351,65002,21635
+52472,71174,72397,71571,20722
+52473,33888,60946,41165
+52474,75049,16458,40700,8399,69616
+52475,71962,38209,81556
+52476,28711
+52477,44796,71472,60841,68535,13397,35220
+52478,51459,29211,42328,11428,22936,16432
+52479,8973,61133,5871
+52480,34100
+52481,66510,44449,9683,27101,81006
+52482,26319,42377
+52483,26239,10881,67171,70031,38342,68823,22514
+52484,78539,9896,61256,68,68177,31750
+52485,19595,23121
+52486,64597,45086,69486
+52487,26997
+52488,16586,24561,49971,31175
+52489,63230,14394,43439,81255,43479,14449,22667
+52490,52217,38681,67943,66684
+52491,53844,61882
+52492,44444
+52493,51654,20932
+52494,79978,211,60208
+52495,78230,19413,54790,66534,44866,48981
+52496,13021,47160,54440,80013
+52497,53297,51764,286,59798
+52498,81166,58716,60961,78340,76743,32996,11127
+52499,1419,71198,64515,75251,52263,18643
+52500,77294,34470,20646,58624,46442
+52501,76227,79067,73048,18767,14341
+52502,22437
+52503,57920,14622,57660
+52504,41589,39815,19771,52232
+52505,78453,6866,47971
+52506,10821,77194
+52507,82187,30230,36511,20754,37072
+52508,61934,11630,19309
+52509,22865
+52510,77736,34423,70112,38163,53536,1596,19646,29740
+52511,45131
+52512,41064
+52513,78322,62549,6288
+52514,65492,41995
+52515,24715,61592,15157,71390,78446
+52516,76363,19284,31720,36737,4723
+52517,61693,17695,44474
+52518,58688,19211,39512,4553
+52519,70331,36504,72216,8401,41309
+52520,3559
+52521,50701,48275,58808,64134,47407
+52522,17541,78161,78423,16252,28400,72959
+52523,14802,38600,38849,56213,64576
+52524,62161,67789,79658,59321,66395,35794
+52525,18262,16190
+52526,4066
+52527,62627,50260,30734,40437,43063,38343,42773,16275
+52528,8536,35901,66135,68841,3362
+52529,25305,75399
+52530,80743,8764,17991,73600
+52531,59966
+52532,39346,80980,30146,76867,73656,1493,69779
+52533,76951,6315,45775,9517,38700
+52534,13923,7788,44501
+52535,43333,29416,23081,43248
+52536,16895,52790
+52537,7456,72142,18854,14337,23520,31365,57823
+52538,32402
+52539,6437,12261,57919,71305
+52540,27989,58730,31783,42068,17145
+52541,9447
+52542,9858,23686,27135,44085,46077,72641,24590
+52543,15939,27464
+52544,69037
+52545,54728,12899,28323,9675,25,20805,10907
+52546,32003,50741
+52547,46928,81418,7754
+52548,23443,79783,18504,64502
+52549,2844,39572,48241
+52550,17604,39633,53450,19360,30536,37882,63857
+52551,80083,35475,25079,36911,42266
+52552,66966,37078
+52553,43161,24652,45593,66407,14576
+52554,29429,45562
+52555,67924,33134,72452,59290,57535,1403
+52556,35646,9451
+52557,71974,14056
+52558,4897,34069,66802,65849
+52559,69813,32603,46126,28062,74459,66131
+52560,7732,69857,17613
+52561,9279,4727,17383,30435,17070
+52562,22751
+52563,70770,51778,11083,6592
+52564,4937
+52565,1262,21436,41139,25340,14579,60862
+52566,59541,65768
+52567,64795,13775,66233,64783
+52568,12881,63436,49010,2367,38397,12205,29678,40025
+52569,75719,2261
+52570,55030,76,15940,28794,64708
+52571,23856,76173,5109,43354,40171
+52572,46671
+52573,78956,40618,46442,25521,19187,50107,63577
+52574,339,16912,52895
+52575,56890,54796,43415,32297,45663,11398,18451,48702
+52576,437,6611
+52577,52349
+52578,7069,39570
+52579,40006,48927,9176,7623,20813
+52580,10274,28641
+52581,36149,71204
+52582,74233,65630
+52583,73931,59529,37699,76528
+52584,7165
+52585,73309,6383
+52586,35248,68258,30897
+52587,64285,59893
+52588,70161,54850,27719,51264,12237,25868,60284,46788
+52589,63610,53407,68906,70760,1449,44037,30616,64053,47775
+52590,7285
+52591,38904,31782,18933,33951
+52592,48974,76463,61075,48601
+52593,42767,21978
+52594,73972,16684,14169,76041,17501,16209
+52595,71325
+52596,35449,24780,6192
+52597,44406
+52598,9534,11084,21141,38794,59500,78073
+52599,14633,66651,20956,51642,7328,68420,47842,49498,6476,19192
+52600,55370,80474,957,25173,27661
+52601,33122,48643,31987,71476
+52602,70822,47641,66715,13723,13984,35343
+52603,60700,27929,18957,26257,74783
+52604,68249,34904,59774,37534,31379
+52605,18897,25139,2979
+52606,1954,4299
+52607,17348
+52608,25182,73234,9149
+52609,39254,65501,64998
+52610,76894,51958
+52611,10182,11709,18400,59515,71640
+52612,58356,43145,49498,52939
+52613,50809
+52614,30964,65971,79274,31980
+52615,47337,20189
+52616,63685,14199,2850,38234
+52617,53247,44320,59050,65621,33807,31318
+52618,51910,74833,42645,49271,53789
+52619,378,78960
+52620,407,12783,13264,66301
+52621,2838,14431
+52622,79514,3673,11932,57250,33068,61820,61588
+52623,58074
+52624,34539
+52625,18797
+52626,68041,75507,4073
+52627,40074,80822,51811,65205,60109,81961,67314
+52628,21278,34792
+52629,80573,64555,8407
+52630,25570,35356,66445
+52631,35784
+52632,30903,74012
+52633,67304
+52634,69973
+52635,73356,77114,47363,46642,8156,33617,50069,22113
+52636,74679,44647,12230,43761
+52637,70553,22532,34455,37633,35238,5535,78171
+52638,16229,1383,46255,28899,11440,76238,38467,32311,17356
+52639,79542,78293,13841
+52640,61820,14965,82181
+52641,66588,53396,68268,45471
+52642,4271,18249
+52643,73080,60189,61816,64139,49963
+52644,34574,46611,61958,52660
+52645,50112,12381
+52646,12664,23878
+52647,70189,70343,51607
+52648,19692,27334
+52649,61458,61963,8580
+52650,15284,37138,81965,16350
+52651,44660,65854
+52652,18454,19142,40939
+52653,36765
+52654,67742,34264,30233,58487,53707
+52655,67434,44636
+52656,45470,61113
+52657,19660,23346
+52658,35560,38799
+52659,35419,76376,30255
+52660,20581
+52661,63307,1997
+52662,13728,9073
+52663,65376,51745,68976,27703,66142,72095
+52664,23952,60074,1969,37963
+52665,67221,72661,32622
+52666,80955,75002,27050,751
+52667,76305,28598,20568
+52668,22612,6391,53336
+52669,78675,40997,66606,20401,70999,55740,8841,47044,2991
+52670,6345,31156
+52671,72039,74056,33850,9334,1144,32412
+52672,55216,43763,27007,51773
+52673,53299,67821,31558,32150,63771,27019,46467,58131
+52674,6319,81934,69951,12438,52987
+52675,18202,14207,55401,4566,26182,34665,55122
+52676,13214,16654
+52677,44757,31394
+52678,55847,79364,47870
+52679,54115,67349,46406,32180
+52680,64889,17753,61480
+52681,49292,62548
+52682,8859,42083,68528,38394
+52683,51187,49761,50644,10860,61061,24690
+52684,71176,52193,20664,1026
+52685,44800,26948,31361,55782,22844,79908,79810
+52686,11551,36682,50855,22285,15845,68058
+52687,65509,36372,16034,16864,17269,64791,13688
+52688,72599
+52689,6540,8569
+52690,64259,76478,36500,27369,37923
+52691,69413,19303,17076,6214,55239,70132,22664
+52692,7752,10030,65491
+52693,62656,69093,64174,80654,70608,59102,54157
+52694,21974,69455,67597,78883,38890,13771,59503,23407,39868,80531
+52695,25842,69958,66886,1020,47403
+52696,63429,58588,3961,71017,30474,32896
+52697,26220,414,30706,4084,28599
+52698,53355,62001,37511,70869,2586
+52699,39882
+52700,65534,77777,32480,38958,4932
+52701,2481,61546,2769,61019
+52702,77666,75094,40647,37279,81120
+52703,51348,23563,69446,73355,10296,74190,3284
+52704,32923,219,8961,19780,77658,51451,49349
+52705,1859,64562
+52706,69066,49902,15728,20762
+52707,25448
+52708,32892,12913,62999,23895,17384
+52709,25378
+52710,32667,9827
+52711,24425,18880,39561,79485
+52712,38523
+52713,22557,60477
+52714,71073
+52715,32214,29965,54882
+52716,67177,56842
+52717,66954,53085,78836,11555,45893
+52718,1686,69202,77053,32868,64978,74620,17860,67935,61124
+52719,64499,45708,74673,70629
+52720,63336,64276,34454,56888,33432,4376,53404
+52721,15302,64860,13758,73133
+52722,1469,15738,8366,42289,56291
+52723,50684,23470,81822,62460,57858,42484,26865,62527
+52724,37894,29845,49524
+52725,37491,49544
+52726,36915,27568,40962,39451
+52727,64761,68255,57893
+52728,73566,77581,76054
+52729,70855,1558
+52730,54188,35747
+52731,8126,9360,65939,57658,17994,63109
+52732,42970,3655,10886,17119,80448,60672
+52733,22998,35016
+52734,868
+52735,29033,64715,25410
+52736,3634,70807,47522,74574
+52737,75185,60198,55847,72884
+52738,43355
+52739,50380,54783,41920,14003,70251,63517
+52740,43552,26919,5274,17035
+52741,60781,4557,79364,51810
+52742,56257,1847,20362,54407
+52743,49687,59836,26517,23084,9364,33496
+52744,33839
+52745,57134,30867,5481,4937,42494,77024
+52746,12727,31827,23701,34947,17815,48357,17627,16029,44342
+52747,79270,80482
+52748,5454,19374,54339,71437,10539
+52749,3135,28130,54837,69196
+52750,13091,50893,12316,39872,7337,71031
+52751,81808
+52752,44686,81463
+52753,80624,38260,60067,15273,28063,71315
+52754,6698,17125
+52755,27399,57156,38708,54420,39078,1988,15935,69598,50536,47439
+52756,43627,521,13312
+52757,45982,6026,18,63634,73820
+52758,59075,31712,4813,62355,53153
+52759,37631,55882,2469,82019,36361
+52760,27528,35791,29879,75882,32185
+52761,57998,7299,11472,65317
+52762,1469,18696,40255,57063,65948,47916,48998,34351,40518
+52763,10207,32963
+52764,51830,30676,71826,16737,53118,42679,68315,22741
+52765,50003,25421,74655,13493,74285,70993,11729
+52766,26165
+52767,20607,7950,47877,43449,8522,5011
+52768,27788,36651,20104
+52769,36504,75583,28044,78878,32111,31698,30753
+52770,30366,72333
+52771,66034,55529,8766
+52772,12898,13979
+52773,18914,80053,41984,47594
+52774,58827
+52775,62288
+52776,75994,41039,44322,23699,50010
+52777,39415,51320,22898,2733,65713,53013
+52778,45709
+52779,6527,67256
+52780,58066,43435,14096,35231,53493,55218,75126,317
+52781,81895,25185,8846,50321,35405,7550,53043,9090
+52782,64535,78105,68109,14694
+52783,81526,36613
+52784,30796,35570
+52785,11936,36490,779
+52786,40044,72492,969,74054,8150,77717,15266
+52787,4172,33390
+52788,54769,22771,74085,73891
+52789,28843,5191,76162,71105,8213
+52790,67382
+52791,58805,12887,7848,81575,5239
+52792,28537,73636,63549,65890
+52793,57719,1690,61232
+52794,12484,55902,4010,77297,50708,12581
+52795,19781
+52796,4791,53788,27524
+52797,62542,68124,69926,69177,55192
+52798,52225,32038,794,78230,13756
+52799,13396,50404,51046,30251,23017
+52800,14965
+52801,283
+52802,32344,62066,39388,42341
+52803,80071,55324,61515,34054
+52804,81321,51677,65946
+52805,73288,46695,3757,58538
+52806,43057,49188,80036,33682,68507
+52807,79847
+52808,80567
+52809,73305,75190,57699,20909,29417,26221,75934,47835,82050
+52810,2735,27678,16272,60421
+52811,35302,19985,22928
+52812,54311
+52813,63142,40372,69974,29768,68070
+52814,59019,57221,68652,57958
+52815,19672
+52816,14024,47332,27272,13508,69476
+52817,13508,10186,9268,62746,64512
+52818,13000,34783,73247,46155
+52819,72546,30995,44510,10896
+52820,67131,8588
+52821,6552
+52822,64393
+52823,3829,23648,49571,16462,19068,992
+52824,70689,35727,59267,2984,338
+52825,60054,18155,66923,24540,5356,29406
+52826,14718,42981,28747,27375
+52827,11287
+52828,45539,30498
+52829,4386,11091,27587,55927
+52830,70159,45457,2835,9575,3204,51768,39922
+52831,65697,32493
+52832,44078
+52833,70964,39396,19672
+52834,68157,32706
+52835,26326,40920,60478,45492,62529,57947
+52836,54709
+52837,12934,2814,8790,73936
+52838,57962,47213,1258,80674
+52839,12642,79766
+52840,71650,76255,20317,33410
+52841,25403,39914,19176,58757
+52842,23158,41674,57583,6887
+52843,43535,9248,71720,63030,39445,73704,63093,57255
+52844,44086,64215,80664,75670,4534
+52845,47022,11612,30336,25940
+52846,73021
+52847,26786,8283,40787,66301,59460
+52848,30650,81215,31008,80179
+52849,39329,26466
+52850,77340
+52851,2318,53453,39363
+52852,57990,45909,27631,59520
+52853,40412
+52854,75007,46938
+52855,36758,44655,55139
+52856,63378,59006,17453,37455
+52857,21261,51339,44651,1242,43250,61653,23958
+52858,2323,39546,71629
+52859,36917,29957,78804
+52860,29508,9831,64257,46630,80460,77857,46888,43310
+52861,22294,16083
+52862,27486,26899,19572
+52863,10340,25811,25251
+52864,33979
+52865,16731
+52866,11171,33373
+52867,64883
+52868,50615,80700,45468
+52869,49381
+52870,8087,75830,33685,40562,54090,8880
+52871,65650,66949
+52872,48113
+52873,39263,70219,56152
+52874,77025,15730,22360,74000,12689,72385,68326,9115
+52875,64729,1893,7907,65050,21503,23417
+52876,67521
+52877,3081,77560,56821,36774,31998,35130
+52878,25862,44220,4869
+52879,16587,55460
+52880,47597,49505,12569
+52881,59223
+52882,41818,56078,68901,80126,18503
+52883,28902,82042,54601,64362,42766
+52884,48405,61662,49664,54483,24380,41688
+52885,21125,16469,81217
+52886,49690,26816,57648,3910,16580,78221,69267
+52887,4336,27979,75512,46946,18498
+52888,62809,57655,30460,30242,23808
+52889,69688,30255,59875
+52890,62902,42238,70365
+52891,40491,18185,17569
+52892,73306,405,16444,73008,11247,44005
+52893,75447,66930,56223,9693,59484,74299,81556,69060
+52894,72344,57603,59130,45970
+52895,47118
+52896,14056
+52897,24985,33634,45187,74304,8665,25354
+52898,81858,63488,13168
+52899,44417,3445
+52900,72983
+52901,54178,58575,44688
+52902,32039,14831,46178,13810,6211
+52903,70927,53887,1352
+52904,22574,17374,5937,27419,18861
+52905,79855,68671,7122,45992,16605,78420
+52906,17491,20977,71585,29182
+52907,20227,73670,59644,67388,51986,20491,43639,6682
+52908,1725
+52909,53205,57278,70654
+52910,58699,31109
+52911,11630,9668,48710,36303
+52912,66401,10065,38605
+52913,18683
+52914,24711,16755,67933,64399,57084
+52915,81230,67502,44358
+52916,17855,63770,38252,35196
+52917,59370,6102,35131
+52918,29463,49800,15094,17824,78223
+52919,1684
+52920,29250
+52921,53945
+52922,8085
+52923,76863,51258
+52924,28861,32463,42014,25144
+52925,67256,1929,72718,63129,60018,16565
+52926,24277,54824,37429,10214,57304
+52927,29617,26048
+52928,47591,77849
+52929,34238
+52930,38602,36336,77523
+52931,4539
+52932,72101,30749,17313,8110
+52933,54612,6089
+52934,80559,81814
+52935,64208,40014,56368,36499,19965,22481
+52936,19570,40102,4317,13235,58798,64074,19390
+52937,57149,13051,23551
+52938,29913,26467,60820
+52939,48183,54339
+52940,37860,50409,20968,1745,8713,60835,33328
+52941,50303,47491,45637,20744,49923,44170,65151,11782
+52942,13722,75546,55008
+52943,49703,80603
+52944,18368,3654,54564,82112
+52945,39245,3420
+52946,23736,69910,30227,22962
+52947,25577,54493,18387,58928,78773
+52948,257,40736
+52949,63860,3651,10836
+52950,58070,9230,59051,30450,39743,6428,52208
+52951,75379,32257,40474,58166,21514
+52952,51063
+52953,18579,4834,63352,74751,79730,21664,32448,45508,52131,2646,46487,18746
+52954,76877,51350
+52955,70826
+52956,29770,55281,18603
+52957,23851,56641,54750,1699,44128,20454
+52958,43240
+52959,4465,46615
+52960,12144,41996,55878,80675,77339,21928,24424,31257,13054
+52961,14297,10842,14223,20242,56968,78838,5606
+52962,20870,34254,35018
+52963,52183,79317,51800,48735,27640
+52964,54794,24152,43185
+52965,37084
+52966,9883,14397
+52967,5333
+52968,59180,7005
+52969,5925,64921,69180
+52970,80912,45267
+52971,81873,23018,36572
+52972,62096,66822,1748
+52973,11131,37163,57375
+52974,27151,60228
+52975,72656
+52976,37869,67943,42620,4011,5135,33192,27469,57881,1087,65588
+52977,55682
+52978,52064,33546,74120
+52979,15661,26115,24776,50656,46975,3094,21812
+52980,1922,35056,21102
+52981,42781,45341,27748,70862
+52982,51098,31542
+52983,29228,77022,55637,40774,12408,32740
+52984,79544,9358,55006,5352,59794
+52985,26621,75278,5725,72580
+52986,622
+52987,35601,58783
+52988,12585,57775,33014,74807,51821,1912,17977
+52989,59446,37083
+52990,43452,40284,20386
+52991,7837,80867,77026,27546,75627,165,76837
+52992,20923,57902,6806,6630,10718
+52993,27707,63325
+52994,60978,69709,51875
+52995,47502,24253
+52996,26181,10107,79594,22817,55684,34897,18538,57597,52827,81153
+52997,55052
+52998,11892,73675,9740,4624
+52999,25864,40679,1648,71831,49003,23888,60214,46236
+53000,41095,26444,71015,80724,25293,41274
+53001,24203,78020,51954,67822
+53002,8290,36090,79832,3305,27740
+53003,10959
+53004,41715
+53005,74481,4774,2060
+53006,65263,71026,46010
+53007,73558,26464,46514,63965
+53008,15264,31289,58197,26112
+53009,23257,37229,48777,9773,1924
+53010,9847,74668,46242,27473,73426,78030
+53011,12653,68708
+53012,2420
+53013,29186,67670,47651
+53014,57497,48410,34744
+53015,2001,66577,26836,74208,9054,5309,77645,11176
+53016,21652,21861,50559,47708
+53017,77670,77359,65248,25601
+53018,18244,64187
+53019,837
+53020,38066,34328
+53021,40872,16717
+53022,64868,67975,76622
+53023,74135,30116,21616
+53024,49087,28960,81981
+53025,55262,5489,20141,34581,55337,659,60880,37929
+53026,26049,17410,76332,41826,5209,75864,51987
+53027,37089,66177,71031
+53028,9152
+53029,49273,23919,37569,46650
+53030,70680,46492,38243,31307
+53031,30868,59385
+53032,72533,28713,27249,47178,27974,15971
+53033,19132
+53034,43673,18093,13259,40145,9548,24722,76926
+53035,25277,31064
+53036,68084
+53037,45274,56683,27883,54407
+53038,78190
+53039,18675,10633,30277,8248,57028,59867,17406
+53040,39173,30645,61367,36101
+53041,58435,55238,31538,4362,61609,44012,13027
+53042,47352,30468,56647
+53043,2539,22090,64257
+53044,13676,6604,10539,39363,46590,18061,68026
+53045,29204,56018,3365,72580,73616,21014
+53046,13101,3410
+53047,49178,3936,81245,19540
+53048,27626,25424
+53049,46079
+53050,18827,41139
+53051,5333
+53052,23092,24170,26965
+53053,5306
+53054,39945,5380,26574,53245,60629,44561
+53055,10159,28400
+53056,51712,42613,14342,41814
+53057,74286,45234,53563
+53058,17322,2147,19371,1234,9579,37353
+53059,8275,74026,69452,44791,30736,61005,6387,53769
+53060,60040
+53061,47093,8322,58156
+53062,37940,38014
+53063,73889,20740,78865
+53064,38512,42709,71061
+53065,59616
+53066,64528,43174,48746,7975
+53067,50944,71209,45855,24508,78971
+53068,12761,49650,9998,77394
+53069,62214,3266
+53070,80849,66893,19872,12429
+53071,64246,68470,49687,32577,40213,80378,44502
+53072,27273
+53073,7575,55326,5896,32112,56463,57391
+53074,24356,43559,68958
+53075,7579,71015,61924,25383
+53076,32131,15260,79603
+53077,46932,4845,67298,64186
+53078,51318
+53079,18360,3383,28498
+53080,21237,51683,16586
+53081,81448,22776
+53082,74669,5360
+53083,48229,40334,71503
+53084,24436,7897,5688,11683,78891,13877,76299,52165
+53085,61259,54990,62639,56193,69283
+53086,77424,52174
+53087,43397,75012,41295
+53088,10013,74174
+53089,29275,38697,15726,32885,51783,18025,80557
+53090,63769
+53091,63871,32747
+53092,23839,55679
+53093,34288,35394,58487
+53094,31645,59588,41535,5779,9284,42909
+53095,76996,78514,76132
+53096,5350,9257,5300,1566
+53097,34320,22720,10376
+53098,71650,23642,61738
+53099,81058,63157
+53100,26597,81070,71028
+53101,42890
+53102,79562,82170
+53103,42377,75775,72737
+53104,12441,66315
+53105,65033,69693,72207,33920
+53106,64506,51734,16066,65581
+53107,30945,25516,26129,67071,49886,59400,58570,1896,10911,72303,54972,49383,30808
+53108,17416,23712,54140,74679,79651,7996,9655,76103
+53109,22752
+53110,58958,48782,50668,63716,19149
+53111,63259,69232
+53112,40468,35112,57633,69069,5618,39361,75202,38077,47838,31733
+53113,64138,62482,81332,21038,72644,19797
+53114,5282,22649,78403
+53115,52296
+53116,8100,80909,33097
+53117,62543,58652,69953
+53118,34620,26323
+53119,17064,77160,16190,53480
+53120,40958
+53121,13384,62206,25106,4377,57942
+53122,44215,7504,14894,61946,36581
+53123,62156,67423,57846,27061,20735
+53124,78427,6420
+53125,45268,40646
+53126,41246,59328,31616,28291
+53127,27447,53947
+53128,58663,42375,20989,9150
+53129,8622
+53130,60151
+53131,74371,40634,54663,51205
+53132,18325,2651,19701,16724
+53133,53167,50545,32359
+53134,41916,39137,27434,67337
+53135,32218,51550,66932,35572,832
+53136,20150,28624,28960,5649
+53137,81500,81786,73275,2586,63363,53448,13788
+53138,57418,12805,25090,1942,28208
+53139,40636,79478,36108,26130,33647
+53140,56122
+53141,6057
+53142,35824,2435,47959
+53143,62551
+53144,70165,57512,2725,31020
+53145,68598,41898,16062,24119
+53146,54127,4539,224,3802,41440,31859
+53147,10705,39358,65454
+53148,59930,7497,12771,55044,77059,38664,77393
+53149,209,30042
+53150,24957,48662,40239,14389,19298
+53151,23875
+53152,33287,38024,69598,57118,70311
+53153,5141,5660,47959,50394
+53154,81632,20917,67360
+53155,71522
+53156,37326,50304,8444,32348,81408
+53157,16208,30058
+53158,48214,82087,80106,28010,20746,76398,70544,53990
+53159,38540,5534,37632,55519,28472,71902,40515,33531,25676,30919
+53160,24724,20057,20950
+53161,43515,77811,29847
+53162,56172,12125,16869
+53163,41310,34060,76646,72015,80050,9825,27189,14639
+53164,60985,69913,5649,44601,46763
+53165,1792,59838,68784,66735,11020,23222,31854,76428
+53166,31804,73510,80266,35054,60617,60432
+53167,71066,66173
+53168,58495,5206,34436
+53169,11833,50105,58443,50378
+53170,62374,1804
+53171,66697
+53172,21112,18023,68676,6579,35432,1644,66126
+53173,2230,39300
+53174,26469,7254,30027,70029,67710
+53175,33624
+53176,60826
+53177,44768,69761,245,27279,42550
+53178,76997,5693,41257,44425,50589,16975
+53179,25155,79970,56611,47888,9209
+53180,77617,38253,37669,12473
+53181,42965
+53182,21996,71932,6498
+53183,75994,11374,38819,81415,15754,53584
+53184,35515,55576,13423,78821,40548,66028,52574,12393,70759
+53185,61200,39895,71700,80145,30504,37423,8148,73671
+53186,40636,6484,37562,81046,830
+53187,74146,6111,5149,60709,19973,76860
+53188,29069,36943,43552,54978,30046,64890,20354
+53189,82181
+53190,39742,56350,45448
+53191,63942,60030,66,23599,22785,23134
+53192,67651,35223,57425
+53193,73442,75867,56962,11850,4080,7133,23195,4085,58659,69587
+53194,12950,79202,39242,30634,12134
+53195,68168,26698,19276,60506
+53196,50740,64875,30951,29920
+53197,54853,49968,70315,78315,32591,48351
+53198,77836
+53199,38919,27743,80137,23201
+53200,3796,30665,30622,47296,2527,54217
+53201,66953,70555
+53202,21501,30939,75065
+53203,42109
+53204,44997,48521,51694
+53205,23573,49266
+53206,46024,35833,880
+53207,17764
+53208,18965,39860
+53209,6927,68474,54173
+53210,15298,11584
+53211,37624,46169,28802,81376
+53212,74120,72200,21667,69391,28512
+53213,34700,28805,64227,22373,68817,28512,66189,1573
+53214,43879,78694,17176
+53215,53916,24395
+53216,17050,62380
+53217,25079,5946
+53218,17544,31600,66519
+53219,1458,55672,36430,54244,17562,12675,29016
+53220,48313,38401,67455,3859
+53221,29028,75066,18481
+53222,74488,79429
+53223,32973,32677,47639,64123,43229,53643
+53224,801,63675
+53225,71087,5425,41378,36026,27223,47662,63444
+53226,69590,15391
+53227,29303
+53228,15988,25681,22230,31418
+53229,26330,70248
+53230,49984,34785,20793,29878
+53231,48616,39916,61840,41934,19280,76514,35028,3396
+53232,35503,27494,14430,52372,42226
+53233,8145,60649,38673,45571,70742
+53234,30376,31352,18148,1728
+53235,51592,49380
+53236,672,75296,68975,50656
+53237,49023
+53238,8686,2672,3539,56638,23430
+53239,24069,34399,47443
+53240,3691,63070,60317,49380
+53241,66514
+53242,37405,48807,79948,36825,58944,53810
+53243,42414,35001,6500,50506,37968,30377,54714,67345,15760,74747,79470
+53244,67086,73587,63894,52362,38188
+53245,5765
+53246,73071
+53247,38143
+53248,77310,61809,14335,38095
+53249,80311,23758,61384,49932,69127,58814,10458,41880
+53250,7523,68323,52890,4264,22517,52103
+53251,3287,52057,13304
+53252,62985,35276
+53253,21471,73180,28640
+53254,45162
+53255,51145,1687,44149,58489,22436,15138,74823
+53256,10358,5274,18361
+53257,14064,2206,18053
+53258,35348,74720,49829,70371
+53259,41811,40341,75332,18911,13405,26354
+53260,59959,55957,4225,52974,65800,21395,25648,29626,41535
+53261,41594,19555,40982,44192,81308,67934,71223,14788,35013,53536
+53262,81371,10834,13607,45789
+53263,39857,17900,58086,20000,37980,57717,14232,22379
+53264,24256,66871,65673
+53265,34360,2007,37901,47,71450,45186,54945,55443
+53266,5164,40163,12395
+53267,75195,68544,49544
+53268,60440,33465
+53269,61565,64645,4271,43709,50305
+53270,32140,76319
+53271,44128
+53272,4500,28949,69693,16044,4344,3021,45446,32775,18334,58407
+53273,2459,34985,61511,17115,65386
+53274,76363,50643,5336
+53275,63859,63961,10736
+53276,17722
+53277,20680
+53278,34793,77194,80828,56581
+53279,56531
+53280,80483,45716
+53281,44686,73048,56610,18027,71300,45995
+53282,37309
+53283,59707,79613,61379
+53284,1292,68185
+53285,3523,10775,47694,33582,79863,35863,42777,70885,69735
+53286,62024
+53287,464,36317,65135
+53288,21228,37221
+53289,49723,63008,3152,55132,35112,54097
+53290,44256,30532,10609,17940
+53291,56835
+53292,25209
+53293,43134,50791,14059
+53294,43581,74728,49853
+53295,38125,43894,50182,57111,54313
+53296,53022,20596,67205,7150,23671,68644,20393
+53297,20711
+53298,16577,41772,15951
+53299,15637,41850,18709
+53300,23501,75836,62848,5650,12406
+53301,71688,23450
+53302,35459,64319,54752
+53303,81796,60636,48969,15413,36070
+53304,37499,29553,59804
+53305,43016
+53306,450,24241
+53307,40433,59614,47688,5375,41888,10148,47212,26191,41098
+53308,7996,42381,34238,64460,34631
+53309,75587,27437
+53310,18418,60671,68664,69565
+53311,38136,39210,76865,57828,18186,36364,40171,8339,18148
+53312,48649,65630
+53313,27089,44887,79799,34617,11883,8866
+53314,32332,49857,55363,53916
+53315,35128,26696
+53316,7141,4598
+53317,70311
+53318,54103,12035,16304,28657,33853
+53319,66502,21645
+53320,74014
+53321,63425,47859
+53322,73024,73133,45788
+53323,26846,43397,57352,30103,41075,75266
+53324,33861,30933,26772,56229
+53325,33977,60845,82150
+53326,66846,13065,66712,51516
+53327,49214,66688,25690
+53328,81999,42064,43791,33148,35005
+53329,2434,52488,35899,24127,64202,34702
+53330,38049,73652
+53331,58992,33847,81766,12114
+53332,79408
+53333,76717,13239
+53334,44825,17914,24388,38612
+53335,69890,76940,15715,68248,76711,56560
+53336,48496,30622,37698,33901,30729
+53337,56647,11363,75010,80867,66515,79152
+53338,9173,54458
+53339,1865
+53340,81556,73142,62473,48190
+53341,58342,34865,1989,55324,81544,63464,20843
+53342,21134,73928,40391
+53343,14770,4984,50298,65383
+53344,22402
+53345,80779,30182,62997
+53346,80307,24529,74941
+53347,32577
+53348,41537,13800,68091,56555,30118,61469
+53349,17928,8359,67571,71933,27571,44893
+53350,3000
+53351,42803,10965,43590,34349,33039,59126
+53352,42934,43920,72136
+53353,10836
+53354,78843,10084,52584,73309
+53355,21214,17099
+53356,20577,60524,37128,76665,71066
+53357,7905,74562
+53358,54003,52042
+53359,51067
+53360,62046
+53361,20418,38740
+53362,51944
+53363,16470,49595,21729
+53364,34441,55428
+53365,99
+53366,75740,47235,57731,61816,35777
+53367,44806
+53368,75131,8092,78849,25615
+53369,31361,13008,77133
+53370,16445,5921,60952,58696,32127
+53371,14317,66251
+53372,30191,7932,69934,38803
+53373,14369
+53374,1969,51004,54974
+53375,29538
+53376,63220,74220,42993,24067,68213
+53377,67009,77217,70534
+53378,45312,35964,24899,77693,21670,73065
+53379,80619,31566
+53380,11308,32839,55427
+53381,9607,12767,55992,36264,21822
+53382,13598,3475
+53383,22033,72910,80384
+53384,9831,55881,1827,30961,21550,22238,55709
+53385,18445
+53386,979,1388,50849,15044,62769,457,17979
+53387,1269
+53388,5902,46702,39862,64616,55471,12226,69727
+53389,56364,69054,70103,2374
+53390,25857,8152
+53391,68121
+53392,17730,23835,35765
+53393,10915,11456,33544
+53394,4250
+53395,4565,21291,72893,58023,61661
+53396,70131,13229,35673
+53397,70369,19183,15376,33366,14984
+53398,80205,12664
+53399,64107,18070
+53400,11279,38699,11042,44330
+53401,68549,62612,80283
+53402,10227,14182
+53403,25014,31332,39040,12006,35344
+53404,2725
+53405,69659,1366,45252,41680,63181,24942,24445,64845
+53406,10043,49911
+53407,77831,4333,39696
+53408,20400
+53409,36926,68851,1392,22151,67347,46328
+53410,53598,35553,15659,43980,29142,54250,19076,17224,40870
+53411,81348,60507,59773,39970
+53412,20795
+53413,70614,66326,62265,36032,4816
+53414,66786
+53415,31528,497,49504,79510,19685
+53416,14032,74168,21128
+53417,9671,22932,1694
+53418,75122,73836,28523
+53419,56165,66041,12307
+53420,27102,76085
+53421,45360,72055,15150,51294
+53422,23593,19482,45220,12561,9715,43453,15837,42670,16319
+53423,29715,70355,80380,57353,73109,76676,70905
+53424,9382
+53425,19176
+53426,33250,78508,65687,28028,80987
+53427,73794,29894,46597,59708,63231,30529,17277
+53428,14056
+53429,4240,48865,58509,54913
+53430,10994,705,44591,40464
+53431,10382,39235,76526
+53432,67047,1997,44791,71567,79176
+53433,58718,41202,22902,57577
+53434,6798,46009
+53435,68361
+53436,8445,39923
+53437,54054,38408,17702,67488,45607,78371
+53438,47204,1970,62457,38687,72160
+53439,37321,52725
+53440,38339,61305,31238
+53441,46221,68231,2384,58197,37506
+53442,46861,67155,22419,30549
+53443,75379
+53444,59483,27289,9202
+53445,34779,59716,73146
+53446,71773,69563,50818,35206,9600
+53447,24569,28580,46139,27885
+53448,69655,19579,11803,16400,35522
+53449,79613
+53450,76989,34333
+53451,62530,12136,75600,27586
+53452,28704,79987,55200
+53453,80458,36787
+53454,75650,29130,58471,69567
+53455,42676,71870,35629,52513
+53456,44806,8930
+53457,51667,22148,5855
+53458,39736
+53459,11162,24416,73592
+53460,1791,15545,71971,64207,14064,44412
+53461,29223,37085
+53462,66598,62237,9748
+53463,22050,46219,78226,56843
+53464,41376,66334,49729,73119,37267
+53465,76240,59899
+53466,5604,11843,50336,28462
+53467,56400,1468,28753
+53468,27003,69120,70407
+53469,75666,5725
+53470,7754,20118
+53471,37956,46547,25019
+53472,3251
+53473,47515,81738
+53474,38132,8439
+53475,52341,11280,27991,24431,62996,36375
+53476,75945
+53477,37141,75439,31359
+53478,35844,65192
+53479,41761,11575,41446,22526
+53480,82157,57631
+53481,31355,10289,1585,52552,2114,61554,15047,35089
+53482,17708,76513
+53483,68635,54960,19635,57286
+53484,13313,6272
+53485,50621
+53486,39064,9109
+53487,65503,22405
+53488,77491,81455,78504
+53489,38761,77543
+53490,40391,7306,68731,74370
+53491,26447,33260,39141
+53492,78349,19587
+53493,60126,7331,21612
+53494,29586
+53495,60406
+53496,78380,19598,11250,69281,6926,76956
+53497,29326,10791,42588,37421,45666,9989,1369,81604
+53498,69942,27433
+53499,68290,35139,5683,14043,11555,39589,939,53995
+53500,81864,21360,17433,65740,49944
+53501,81437,9836,64542,49317
+53502,56854,70945
+53503,17767,60138,20255,52086,25619,18611,17784,15677,17590
+53504,46708
+53505,2715,7283,60227,24747,54038,47361,55739,29239
+53506,39100,79429,19457
+53507,55468,73297
+53508,43176,29855
+53509,20103
+53510,70635,34526,71507,50387
+53511,76871
+53512,51197
+53513,16715,26919,26235,25019,9242,62769,51508,70222,45880,6476,66637,28093,57438
+53514,6371,38928
+53515,9836,13112,46372,67197
+53516,12894,51093,41362
+53517,11135,299,72056
+53518,76413,68121
+53519,81006
+53520,12508,69226,41311,57615
+53521,56332,53175,26141,75806
+53522,79758,51445
+53523,13027,12785,71848,33888
+53524,19817,1315,31156,54691
+53525,46069,74648,54090
+53526,80334,11402,61991,48694
+53527,14969,16863,60227,9144,71635
+53528,22657,82014,47595
+53529,48437,21003,22118,36662,21524,36433,39552
+53530,4581,79510,33437,16214,12660,32371,46992
+53531,28953
+53532,25696,63420,26663,81821,25289,31283
+53533,71158
+53534,43008,65624,47615,12435
+53535,18578,69612,78030,13477
+53536,26322,26337,27734,68631
+53537,25557,43473,23943,14778,49565,15483
+53538,45834,37517
+53539,29108,47261,8324,59197,79329,68199
+53540,28442,47086,16079,22235
+53541,28531
+53542,34754,29929
+53543,10459
+53544,15211,30509,65497
+53545,61125
+53546,62346,63504,38176,8389
+53547,26228,80752,57960
+53548,57453
+53549,3844,71422
+53550,69051,34985,14464,41290,68878
+53551,46980,43734
+53552,34715,916,57943,66118,73723
+53553,37629,47631,74413,54975,30023,63537,33856
+53554,20648,66324
+53555,63230,41656,57073,66969,81559,25466,59963,44482,23875,68427
+53556,9673,41049,16084,25124,24068
+53557,26854,30836,34256
+53558,79483,2752,15860,40292,27643,55640
+53559,31707,56794
+53560,55376
+53561,67882
+53562,32748,33881,20390,40232,64256
+53563,55476
+53564,51991,18764,23423,31711,63722,44124
+53565,20289
+53566,30296,18895,7548
+53567,5499,41404,77501
+53568,32660,4127,62843,49103,7575,9269,18397,67556,23461
+53569,28335,57507
+53570,31266,30330
+53571,64107
+53572,43411,11562
+53573,52721,57216,45537,48123,56321,14768,77868
+53574,48535,3494,60451,17964
+53575,43037,64873,31900,40876
+53576,47302,78691
+53577,72451
+53578,24333,72474
+53579,28869,14610,45909,76927,24988,9403
+53580,48003
+53581,58790,35355
+53582,71165,54709
+53583,14597,46859
+53584,2641,78974
+53585,52114,5394,53339,40201,68525
+53586,20594,20125,31955
+53587,41420
+53588,16391
+53589,41905,33580,39117
+53590,71640,50456,24659,12931
+53591,35336,53207
+53592,58471,63061,70868
+53593,60519,62147,75191
+53594,80256,45123,16321,17321,78235
+53595,35238,73450,61267,78010,7764,73167,16710,76628,44827
+53596,68409,18431,78623,5436,3
+53597,16792,47296
+53598,43360
+53599,68081
+53600,39835,36831,64774
+53601,81395
+53602,23467,64655,80231,71021,72894
+53603,33951
+53604,12719,35344,53264,34369,70309,42427,48530
+53605,81862,36379,19360,28656,43678
+53606,58959,79586,61506,4332,25894,60734
+53607,24018,17024,9924
+53608,44474,27895
+53609,48445,7379,45295,78076,7345,69952,13440
+53610,237,1486,34654,11258
+53611,24074,48955
+53612,21217,53167,32053,60851,50074,30740,73212
+53613,2139,33316,26376,565
+53614,45851,21143
+53615,6068,56400,909,305
+53616,52110,22685,10775
+53617,31265,69576
+53618,73490,16862,28119,50431,52163,15640,78371,35491
+53619,19757,80720,70799
+53620,69650,18684
+53621,74985
+53622,41064
+53623,53614
+53624,54493,71746,16645,21061,77917,66993,4376
+53625,50065,32566
+53626,3749
+53627,19248,75807,77223,24442
+53628,65594
+53629,68439,66311,7878
+53630,32761,53763,32159,28930,30644,66742,33969
+53631,20012,52000
+53632,34494,41764
+53633,81719,1498,71857
+53634,71499
+53635,74574,11865
+53636,67776,76939,67457
+53637,77175,82091,25680
+53638,75518,16906
+53639,30757,10178,74697
+53640,74209,70561
+53641,76113,8658,71496,41485,78227
+53642,9417,15278,71569,26396
+53643,14167,80308,67373,50172,64769,6654,26322,71017
+53644,46714,48673,36197,21019
+53645,70051,42089,9978,68108,60713,59265
+53646,80122
+53647,48463,277,1252
+53648,54094,41220,11648,33183,56845
+53649,23663,32992
+53650,1647,77988,1674
+53651,16401
+53652,71393,47709,59147,59956,12855
+53653,45863,16900,16500,79537,27504,49079,176
+53654,39734,38599
+53655,56495,47883,52007
+53656,69859,3315
+53657,58953,35001
+53658,4700,44524,63545,11270,44631
+53659,4944,6515,20292
+53660,21890,30405,71382,40478,62294,29087,53297
+53661,51132,34076,77924,5571
+53662,5038,1599,40394,19954,75254,39830
+53663,15644
+53664,27217,74338,69067,42061
+53665,57112,64771,32748,9874,28622
+53666,79608,3666
+53667,40106,40669
+53668,46068,20307
+53669,36210,12551,38168
+53670,20210,18109,5466,30323,18479,76284,24445
+53671,41423,31786
+53672,65164,71024
+53673,24041,14419,73638,3207,55429,19363
+53674,61745,54973
+53675,27100,16892,40032,17083,54767,63147,4208
+53676,51617,73021,13398,4081,72106,3634,10364
+53677,25194,61135
+53678,66133,36950
+53679,3883,12552,17386
+53680,74262,81367,39825,14935,47812,38378
+53681,56250,73635,65145
+53682,28723,33256,35959
+53683,46411,79624,10908,5394,81374
+53684,77818,48378
+53685,42480,63147,3282,1213,19991
+53686,68593,19101,28923,65726,77266,11000,37016,76225
+53687,55778,5670,16682,74588,61280,68090
+53688,80862
+53689,72255,82116,77066,74209,52394
+53690,39862
+53691,7988,44935,65942,4851
+53692,55169,14851,6815,56281
+53693,50682,78927,21823,78414
+53694,41996
+53695,26174,31212,69953,53206,80734
+53696,44848,26565,71196,32652,28121,22841,22523
+53697,65372,72432,46220,41293,35804,70476,18253
+53698,33612,36091
+53699,24799,30995,43708,78748,46242
+53700,61217,22296
+53701,21234
+53702,39058
+53703,12616,43060,40002,71819
+53704,4547,45031,2057
+53705,368,69741,23178
+53706,60871
+53707,542,46421,73534,20290,4942,56812
+53708,15706,71663,25431,77606
+53709,49459,79643,81083
+53710,57135,71105
+53711,12658,67280,15169
+53712,29692,2905
+53713,63869,15716
+53714,61378
+53715,25156,60601
+53716,2277,15391,73984
+53717,73500,67284,68960,71961,32743,31031,57435
+53718,23288,7231,22287
+53719,22293
+53720,82161,64769,45380,55834,21436
+53721,59935,29638,60995,28204
+53722,39361,27790,56034,71166
+53723,63363,5495,23891,25623,46825,66934,10596,37235,34715,38901,69316,41700
+53724,1963,51588,15319
+53725,30993
+53726,56344,15357
+53727,30416,31344
+53728,55538,53657
+53729,798,63099,53975,65979,60946
+53730,27662,24003,58542
+53731,15422,70980,75231,61999,55026,51023
+53732,11658,1942,14903,16343
+53733,21056,17461,27394
+53734,13450,45166,50826,18666,39567
+53735,66955,27100,55951,49332
+53736,34930,4489,37465,50498,76386,28527,49127,30755,18671,67740,47454,81271
+53737,27893,77167,8241,50893,71890,16830,76300
+53738,80384
+53739,25738,7991
+53740,65087
+53741,44433,26992
+53742,65685,78766,82046,46169,3265,24238,22907,27119,19000
+53743,10257,52807
+53744,72316,72872
+53745,36197,48894,20306
+53746,34115,2581,6874,63213
+53747,9036
+53748,57654,38870,57755
+53749,11923,53325,40321,44314,77745,63652
+53750,66704,56854
+53751,38400,15318,342
+53752,21543,63874,49621,13175,8216,49166
+53753,49480,50454,44467,21236,8684
+53754,22714,58873,625,42094
+53755,33625,20093,73524,26640,25256
+53756,48253,70138
+53757,68746,12565,74310,34841,80224,16250,24778,58643
+53758,62310,34679,62251
+53759,5268
+53760,4303,72891
+53761,12950,40803,78357,24711,70033,2369
+53762,79482,6196,28528,63970
+53763,61368,18396
+53764,56960,7224,42341
+53765,5176,59470,46288,73987,37118,4022
+53766,38872,49991,57789,21804,18423,15115,51753,29578,59547,32767
+53767,4277,65844,49241
+53768,21917
+53769,81223,22889,5745,1704,81082
+53770,65815
+53771,79814,74619,77703,16435,49409,71379
+53772,21571,73168,56150,34620,24035,1655,17682
+53773,65149,35254,21590,43895
+53774,37089,51750,27339,35694,34240
+53775,55448,35510,59785,74278,25489,80526,9824
+53776,65648,10899,80688,23546,69744
+53777,19165,7437,77832,66242
+53778,50504,20415,65695,59367,6330,27486
+53779,22283,38697,72019,44146
+53780,81569,16019
+53781,72599,79371,77119,2280,27583,34061,19794,63726,1586,65282
+53782,8739,46813
+53783,80236,54516,67142
+53784,32490,27638,72486,20474,53129,72820
+53785,22309,49510,44329
+53786,6737,31103,13352
+53787,49166,48637,52402,14381,73089,45378
+53788,2529,42547
+53789,67005
+53790,76308
+53791,13466,13393,25259,70652,7977,30645,36575,76179,26386,61930,33793
+53792,42319,7231,45828,71326,71282,44954
+53793,30420,1252,27055,30166
+53794,48818,47128
+53795,44725,78052
+53796,39418
+53797,42932,74167,26620,42307
+53798,60816,6570,36922
+53799,28953
+53800,38949,60078,53860,16106,26330,25709,1412,78487,12768,34040
+53801,31459,46859,66966
+53802,24152
+53803,25612,52734
+53804,70670,42676,56297,28317,32650,2590,47083
+53805,57314,63581,59793,29588
+53806,38214,19055,56893
+53807,6303,46200,47024,65205,2563,61949
+53808,9979,35421,43008
+53809,17702,71771,55121,22494,18483
+53810,77550,41190,79055
+53811,13797,74360,62280,61578,12214
+53812,5600
+53813,1052
+53814,5367,67697
+53815,36909,54454,25550,6919,73031,4647
+53816,22492,67748,29539
+53817,4578,52303,26182,25622,9407,41861,41722,80202,24837,44917
+53818,12577,72289,36029,80210
+53819,17333,71609,7703,24524,42602,40294,33186,28719
+53820,37914,77973,43349,1281
+53821,12129,77177,56326,50324
+53822,43943,12368
+53823,33721
+53824,7570,62422
+53825,25459,16224,79126,9853,55276,11209,36594,45524,943
+53826,20681,58059,79137,11429,58058
+53827,40533,75697
+53828,80233,40323,15538,36063,30507,36257
+53829,15647,6587,30647
+53830,25988,66012,10368,21764
+53831,27633,32478,78638
+53832,18958,28531
+53833,3184,63394
+53834,77050,51323,53896,37723,40779,24835,14166,81431,67621,35318,31794
+53835,19689,57648,56273,72180,25201,33424
+53836,29558,13189,57040,64435,46928
+53837,64805,49821,73137
+53838,8716,85,182,56460,2503,67760,13583,55575
+53839,69779,47819,38984,3775,1830
+53840,4442,73814,72535,59363
+53841,43465,44319,50527
+53842,8042,75333
+53843,15169,4271,11309,78037,81694,20620,15379
+53844,26926,49207
+53845,43005
+53846,41377,17281,2247
+53847,55633
+53848,23193,48488,11150
+53849,37734
+53850,35040,246,38899,56314,15391,45158,70950
+53851,8225
+53852,18585,2020
+53853,51318,13890
+53854,74218,35094,38418
+53855,56371,3555,19700,36622,5534,30700
+53856,49500,10135,11565
+53857,74211
+53858,59927,28283,9220,28641,76865
+53859,37659,70015,37187,9570,82103,70911,70546
+53860,7001,70083,25057,74554,31794,67637
+53861,21137,53824,689,1929,66747,2254
+53862,70611,24928,43659
+53863,67049,49357,17027,53127
+53864,24875,32332,80172
+53865,20093,7351,28106,52178
+53866,16291,68612
+53867,43325,56006,11256,31799,69716,60594,29302,35045
+53868,27461,32216,34252,27886
+53869,78374,71794,58743,78976
+53870,1460,35248,28891
+53871,22937,64991
+53872,79748,22402
+53873,19383,16671,9234
+53874,10813,29817,46949,38367,38769
+53875,76658,1435,29232,2354
+53876,13068,64679
+53877,27140,12603,70625,49826
+53878,6934
+53879,73555,1473,53987
+53880,76567
+53881,16329,10400,5956
+53882,45318,43822,7583,71073
+53883,38049,19159
+53884,18018,56363
+53885,48055,36190,4400,24339,60395,41562,49468
+53886,78106,30934,24313
+53887,51150,37299,68481,63540
+53888,2078,25674,32920,49979,41509,39324,65341,36190
+53889,45500,37864,53592,76698,60421
+53890,10914,5764
+53891,50475
+53892,73281,61935,48938,52123,11901,49174,30539
+53893,28379,68653,42683,59705,10101
+53894,21446,63965,64145
+53895,12902,27215,62013,79504,27442,41076,33617
+53896,4768,57436,79877,26972,43541,75742,54275
+53897,53719,61305,66379
+53898,55862,1307,51623,21879
+53899,73064,34891,44827,32847,40574,17196,8472,64776
+53900,63538
+53901,32456,2364,31880
+53902,55094,65024,81473,56633,67114
+53903,68271
+53904,69072,52476,9900,73319,52660,38284,2228,75230,75124
+53905,56566
+53906,28913
+53907,39853,54353
+53908,38672,40863,16912
+53909,40239,52751,28951,42845,45578
+53910,77550
+53911,59004
+53912,61958
+53913,76428,62520
+53914,10958,72245,15704,4715,66625,45055,77211,45735,52297,65432,19258
+53915,13380,59675,56237
+53916,41225
+53917,21745,34518,65252
+53918,47514,19962,1105,73350
+53919,6548,55538,58161,12467,64379
+53920,25706
+53921,78715
+53922,15451,49180,2126,16784
+53923,27251,66389,70076,52712,55320,447,3433
+53924,27756,15257,79100,21497,49078,72136
+53925,33613,18827,33282,26595,52521,74989,80916
+53926,70481,50988,35582
+53927,76070,46071,13221,55432,65318
+53928,24621,54612,76318,27448
+53929,47648,75878,1516
+53930,64839,12560,1584,73331,44242,17614
+53931,13366,43185,54130
+53932,12899,45937,70842,72866,66119,5581
+53933,13923,53079,77664,51863
+53934,12111,62034,29332
+53935,24704,57515,68964
+53936,50480,69003
+53937,14040,59039
+53938,16200,67200,17129,56962,57177
+53939,22050,41641,20468
+53940,7078,6827,66584,78909,26846
+53941,2369,5883,62470,1967,74093,57003
+53942,65558
+53943,77670,18708
+53944,8752,80256,43502,41211
+53945,14381,59039
+53946,23045,48607,44435,71428,38426,81602,27341
+53947,13514,50086,74457
+53948,30311,7876,13842,28499
+53949,42627,36273
+53950,6363,16398,77110,34775,76783,74548
+53951,51886,20972
+53952,43534,53458,6319,46103,14507
+53953,27055,61978,4718,48951,7486
+53954,51354,69142,19618,52653
+53955,52393,43317,68617
+53956,29701
+53957,26319,39379,20253,49996,30703
+53958,22154,14606
+53959,43330,46991,4763
+53960,60882,19423,76914,62769
+53961,50024,63836,3113
+53962,3530
+53963,27855
+53964,59216,17245
+53965,70239,54503,16593,8069,26605,80583
+53966,5995,39042,42458,55564
+53967,20172,74865,28487
+53968,34220
+53969,17717,61389,76497,81676,12368,10135,45439,5194
+53970,43558
+53971,35994
+53972,22689,56348
+53973,75102
+53974,4497
+53975,64121
+53976,4326
+53977,12435,8398,64408
+53978,49631
+53979,42944
+53980,36323,38805,32495,59164,66867,18975
+53981,31909
+53982,8884,76866,55358,36186,56947
+53983,64385,35181,75585,42452,75016
+53984,4872,16138,27660,31209,69162,50943,2123
+53985,72209,48369,12701
+53986,6616,78510,57934,77991
+53987,61965
+53988,81149,81502
+53989,53176,36022,47437,68797,42999,59374,60890
+53990,25190,51241
+53991,41555,70251,10579
+53992,78441,25351,58499,41733
+53993,61513,16151,57449,20029
+53994,53979,28437,13927
+53995,58937,52734
+53996,32806,67205,54695
+53997,19441,3024,75883,121,36176,29711
+53998,62548,68417,60259,45795
+53999,71559,74454,32589,35768,36977
+54000,38941,10748,65059
+54001,26254
+54002,55466,1304,66323
+54003,66548,37122
+54004,73825,25434,36474,58093
+54005,61307,43869,3622
+54006,82063,43144
+54007,27865
+54008,21214,23986,66079,73092
+54009,78795,56294
+54010,16586,6891
+54011,61183,28978,7612,59524
+54012,72441,72791,17916
+54013,27875,77950
+54014,8115,9888,76443,6849,61137,35336,46630,65822
+54015,70314,48082,35554,75755,14306,74588,79750
+54016,28702,4309,3398,75609,32962,2061,22244
+54017,33468
+54018,75415,19368,81326,1663,58937,74961,26680,43635
+54019,1841,80868
+54020,76780,15397,42404,74211,44976
+54021,30147
+54022,51036,22193,52432,18400,31985,36443,22295,1448,22240
+54023,39471
+54024,76791
+54025,63543,67237,4303,866,20513,31154,53511,4422,18777,4139
+54026,36144,78535,31568
+54027,74570,42538,26653
+54028,67058,47630,53739,56532,53301
+54029,1715
+54030,63076,17224,40007
+54031,74324,65208,67897
+54032,78003,35144,72454,78575,75082,79167
+54033,69313,20651,22010
+54034,78779
+54035,1140,56152,50772,1482
+54036,35084,22106,68411,68580
+54037,26849
+54038,35674,2227
+54039,42458,61972,50477,21539,64932,70778,72247
+54040,76610
+54041,51521,18465,15589
+54042,52927,78396,40531,40431,39312,38132,58734,8518
+54043,52575,27796,67245,57075,12522,51481,56531
+54044,65094,72632,12375,63605,10336,65671,9708,33501
+54045,59122,14739,60407,31839
+54046,60796,38278,80672,34903,33526,1488,11988
+54047,28445
+54048,40083
+54049,4813,36957
+54050,61172,61015,76056,58434,58005
+54051,13227,51798,17648
+54052,35267,38363,15474,629,47712
+54053,5810,9327,52725
+54054,55200,49192,7229
+54055,18779,42603,32185
+54056,53456,39022
+54057,70781,13652,67220,1053,39817,17447,40519,35811
+54058,25104,45505,35787
+54059,75935
+54060,152,76742,78509,69483,11783,19322
+54061,77376,27721,58837,28194,17298,16071
+54062,36963
+54063,38447,71927
+54064,36215,54551,16209,22699
+54065,20980,58861,64967
+54066,26954,3738,326,34722,7931
+54067,11608,32548
+54068,44185
+54069,11203
+54070,46079,21904,81823,35398
+54071,43966,53883,25207,25915,74713,42343
+54072,77319
+54073,41846,77564,23499,69701
+54074,46931,59436,46732
+54075,36760,19802,42501,35512,42938,68695
+54076,65929,66522,46506,78183
+54077,46537,35970,6804,43776
+54078,6697,22049
+54079,18369,37961,18337,80863
+54080,39703,62220,10636,47184
+54081,49809,44433,624,9321
+54082,55369,14741
+54083,20758,69145
+54084,58728,41097,56102,69880,80395
+54085,14445,38457,55738,48404,20536
+54086,41608
+54087,78263,73305
+54088,32528,62919,36206,22838,75422
+54089,44404,75784,68686,47454,52660
+54090,58665
+54091,2734,32925
+54092,41463,7797,33327,28012
+54093,55111,12342
+54094,66695,31884
+54095,33515,45087,11689,82156,52661,67886
+54096,73779,3132,71282
+54097,58573,37541
+54098,55656,39539,66711,47190,55529
+54099,10838,14395
+54100,22917
+54101,55495,26830
+54102,40221,24830,70796,56494,42915
+54103,13823,22270
+54104,28513,5040,62281,23605,1814
+54105,71005,79951
+54106,19739,3042,30647,18623,4510,74656,63140,12657
+54107,77360,77882,62074,47311,50266,24434,50720,21964,37575,59029
+54108,32301,19092,62706,50358
+54109,40754,44962,36602
+54110,34090
+54111,81061,78674,41594
+54112,56502,40104,66503,32796,58543,28090
+54113,73887,23943,25522,28129
+54114,65713,32359,48873
+54115,14939,22271
+54116,48863
+54117,75397,62544,61809,17705
+54118,4364
+54119,24526,78954,62044,26063
+54120,62970,4115,45111,58959,75454,49816,72058,36415,77138,34073,65540,26237,73307,4413
+54121,4650
+54122,40643
+54123,2961,72052,43425,26827
+54124,23150,73329,49059,32897,25092,5332,80076,69525,24211
+54125,45926,13907,72445,75258,38792,32066,75006,74623,63866,29557
+54126,71820,17084,4784,78700,80144,43442,20782,29016,40602,80388,44302
+54127,65212,4291,43452,44450
+54128,18581,54573,21506
+54129,57283,39408,52940,21569,66558
+54130,28696,21996
+54131,1986,303,13491
+54132,76620,32091,25747,69659,37492,16812
+54133,46038,44614,57934,64016
+54134,30816,37118
+54135,20440,42638
+54136,34836,18818,17428
+54137,20521,68534,49648,55208,61505,62161,56400,70860
+54138,25919,23342,9806,64064
+54139,33183,28025,76834
+54140,29740,1410,6358,68068
+54141,3548,28956,81692,24546
+54142,19988,68283,29976,21878,32849,19592,30991,62126
+54143,37783,45318
+54144,15220,71857,59715,77343,667
+54145,57171,63576,22488,34145,60232,14836
+54146,64066,24956,44762,49376,41147,47403,43022,23533
+54147,22935
+54148,50826,14427,31901,55760,46164,47067
+54149,33424,74660
+54150,64805,71568
+54151,28653,78139,51164,32221,80471,30293,49029,19347
+54152,81251,7704,15325,39617
+54153,51317,40336,25125,55919
+54154,25457,80082
+54155,62101,46853,73065
+54156,32479,69649,34867
+54157,8961,77263,69232
+54158,52661,28493,20728,56553,19845,67403
+54159,32189,16422
+54160,34254
+54161,8313,34775,63109,39160,34641,4284
+54162,54956,71606,34272,68175,16052,84,78181
+54163,57639,51748
+54164,59010,16350,230,7489,32750
+54165,10830,2227,61550,22681
+54166,65168,29448,14258,17343,78394,52465,56853,64611
+54167,59250,52383,46327
+54168,32672,51564,68876,57316,9657,19939,67686,80044,78244
+54169,66067,28783,32601,56363,51373,79305
+54170,80338,26849,35316
+54171,70689
+54172,56665,75399
+54173,1495,75669,37203
+54174,35734,33698,68824,3648
+54175,20101,59851,79064,80553,30107
+54176,28596,10805,705,32356,26944,66250,41185,53803,77689,9863,43524
+54177,20361
+54178,30835,3339,63435
+54179,56150
+54180,14060,8661,21218,70888
+54181,38267,5503,48059,55628,16905
+54182,81057,52434,11732,62213
+54183,62888,65526,76314,13354,2653,19936,52626,81635
+54184,11354,58598,76041,78884
+54185,3332
+54186,5115,1581,37597
+54187,20418
+54188,5890,59539
+54189,8143,36602,50737,65189
+54190,15124,44026,2031
+54191,29642,24333,71773
+54192,17751,72855,16365,53602,62558
+54193,31735,25812,25439
+54194,28928,53629,29730,61587,42993,14950,60255,12734,81389
+54195,45981,58933,885,35854
+54196,55895,27718
+54197,41064
+54198,41180,79311,16395,7713,12353
+54199,22644
+54200,42887,5058,40863,76438,26593,48799,7044,77354
+54201,46639,44047,12271,61895,34751,34312,45784,15594
+54202,38640,41145
+54203,12431,37053
+54204,41796,48262
+54205,43115,13364
+54206,55229,78675,61555
+54207,36910,47195,21576,81215,66327,45983
+54208,5257,26373,76483
+54209,46823,58189,203
+54210,13609,52836,2048
+54211,18497,28352,7766,62830,11001,14403,26817,64020
+54212,19582,16153
+54213,58408
+54214,52340,71089
+54215,16226,14836
+54216,70210,17216,73748
+54217,10139
+54218,56736,3446,49516,33337,13125
+54219,56565,54691,58037,61489,48455
+54220,7163,58711,11415,74540,52809,50663
+54221,32843,80953,64144,56703
+54222,48382,79532,65502,47956,13171,71785,75823,23347,7185,46023
+54223,29449,18648,50623
+54224,38758,35146,40950,28403,81761,23793,4400
+54225,28730,76246,47044
+54226,28585,71825
+54227,28097,66063,42454
+54228,14085,12590,35925,27955,9997
+54229,429,22100,62301,75982
+54230,58408
+54231,64107
+54232,69325,80089
+54233,70877,51808
+54234,53490
+54235,12693,45616,25371,64276,28875,35340
+54236,62988,15185
+54237,14095,80588
+54238,47969,36472
+54239,37681,47862,32184,48163
+54240,53455,63830,39927
+54241,68367
+54242,60836,59599,54766,31501,69684,5291
+54243,68605,18603,78999
+54244,38999,41041
+54245,49034,4173,56321,60354,884,51763,19493
+54246,5751,7404,16333
+54247,58958,17582,22568,38170,1275
+54248,37789,25529,42819
+54249,72429
+54250,67481,17,38617,48358,19402,32465,51988,56838
+54251,81814,4245,68161,60048,43953,28431
+54252,63630,6333,11711,11684,61687,81921,60419,53937
+54253,74587
+54254,28242,18369,12372,18777,54732,45283,35695,32540,57616,42184,60017,41465
+54255,73923,70029,78105,37543,24796,48472
+54256,43202,45544
+54257,72726,14885,46096,68924,81356
+54258,15446,75754,38760
+54259,58269
+54260,44002,14218,22998,37446,61548
+54261,25857,72268
+54262,66898,54704,8262,44813,29993,67574,26541,72006
+54263,77610,80153,68326,35776,24886
+54264,61625,39168,8522
+54265,58104,60184,1069,72962
+54266,33902,20705,75877,60590
+54267,80458,36026
+54268,40717,70295,74410,50936
+54269,72443,16742,24377
+54270,30724,60571,46868,59693,55736
+54271,40370
+54272,40054,21223,42612,38293
+54273,66583,50825
+54274,24104,5771,67081,74577,54291
+54275,34496
+54276,49529,24594,16917,32387
+54277,36831,52899,28713,77167,44815
+54278,26162,3814,39984,2797
+54279,51147,13742,54805,34066,30537
+54280,64639,2495,45515,41498,24094,61006,22769,76429,10148
+54281,3996,66996,10605,77278
+54282,40471,56930,26261,39780
+54283,40275,10731
+54284,25292,64656,61534,37632,55235,69576,35069
+54285,8385,34689,52783,28503
+54286,76461,71413,36423,75348,43237,69115,22235,8720,68401,40728
+54287,57478
+54288,67248,60252,6205,36436,27840,20518
+54289,12805,13441,18851
+54290,9906,39013,15097,14255,56035
+54291,69647,67986
+54292,6272,50494
+54293,30506,64294,11201
+54294,76074,19166,51503
+54295,25217,80704,27355,4803,26582,36449
+54296,60504,68853,65847
+54297,59820,63282,58743
+54298,41687,21613,30437
+54299,20043,67649,78232,3013,81528
+54300,28813,77999,29781
+54301,65276,28139,5269,8086,81318,47293,20214,67651
+54302,30286,62143,39926
+54303,42228,76784,59213,74156,38626
+54304,80570,31535,54520,53293,8939
+54305,17495,30214,46249
+54306,30472,49078,75878,32015
+54307,33715,33371,67187,30175,28494
+54308,73097,46030,69370,39135,44355,47774,39095,17229,691
+54309,32750
+54310,73673,53801
+54311,57209,25266
+54312,58303,57243,81083,61255,7114
+54313,8046,78529,3726
+54314,43019,10115,53798,59682,49749,53459
+54315,37562,25142
+54316,22570
+54317,69808,65888,81696,54752,71136
+54318,15644
+54319,35242
+54320,73663,10951,37819,4331,69502,56046
+54321,68227,46482,54221,8755,2388,42633,46708,66664,82068
+54322,72237,61131,58401,52405
+54323,73908
+54324,79664,27319
+54325,26593,66060,21519,18058,80440
+54326,45902,34898
+54327,37083
+54328,40509
+54329,77641,57861,32497,40231,42496
+54330,38627,79932,76043,21236,22170,7228,30504
+54331,3310,65160,10300
+54332,61615,3539,20870,8650
+54333,18689
+54334,26244,19360
+54335,49412,6081,42128,17252,19626,41985,16372
+54336,28656,30689,46472,7797,35922
+54337,75986,60512,55657,18540,28907,67278
+54338,32721
+54339,68442,51497
+54340,24580,66956,80594,57364,76104,61000,77482,46580,15887,44095,52153
+54341,46637
+54342,26445,58727,68746,2297
+54343,1973,73359,42738
+54344,54629,56639,9191,43498,77415,48372,7461,23464
+54345,45573,3141,28177
+54346,80040,31015,32503
+54347,27049,59224,77130,28841
+54348,46788
+54349,74454,64626,52235
+54350,49983,56448,65927
+54351,38270,23811
+54352,73212,19019,66018,22793
+54353,67142,81439,19712
+54354,79628,70395,15720,58704
+54355,35163
+54356,45421,42875,49852,1365,7031,62537,4654
+54357,80389,48601,13765,80895,19622,42450,25501
+54358,67410,7504,61137,69837,38553
+54359,40063,64706,50305
+54360,70351,7139,30380,17410,33240
+54361,4918,41568,47795,72440
+54362,2561,51642
+54363,72085
+54364,53705,30995
+54365,4709,64044,50326,6675,68918,31460
+54366,31238,54149,50926,46465
+54367,52089,71061
+54368,38502,61484,30014,68559
+54369,63257,23246,74829,2134,32627
+54370,75151,81426,74618,26037
+54371,61726
+54372,4565,36044,42334
+54373,51318
+54374,70215,18170,61403,61325,81931,30436
+54375,38852
+54376,61646,17062,39609,8058,19680
+54377,4799,69935
+54378,30432,42079,32027,68467,81655
+54379,18203,6988,17480
+54380,47213
+54381,34212
+54382,60965,51063,75988
+54383,60231,36209,1877,56907,74012
+54384,54962,65329,22067,70203,46537
+54385,18666,38916,80080,6188,65179
+54386,12880,61147,1629,17758,11267,7085,69884,28484,4973,39882
+54387,48371,70877,30395,37854,28126,2137
+54388,46235
+54389,57688,16043,22638,32957
+54390,60528,11681,16802,39266
+54391,10850,9051
+54392,65889
+54393,43238
+54394,76093,6686
+54395,10655
+54396,17001
+54397,22626,1352
+54398,44474,58062
+54399,41439,76911,70681
+54400,55587,32287,39600,70907,2674,46951
+54401,71492,13173,31915,58465,61017,76496
+54402,18758,14452,50800,49408
+54403,31534,23666
+54404,56539,54312
+54405,54394,66070,21932,9915,8656
+54406,58853,12908,5182,73458,78002,67621,35263,67049
+54407,2163,38399,79003,2424
+54408,42371,79070,29502,78619
+54409,64719
+54410,11037
+54411,68936,4230,1422,17331,29811
+54412,38340,67351,27424,44759
+54413,46739,69345
+54414,19037
+54415,15445,29397
+54416,81414,63969
+54417,10028,71268,77403,33896
+54418,34250,7796,44702,8192,12125
+54419,20245,44886,78950,8753,34377,37884
+54420,54339,4019,1517,40070,56437
+54421,51881,52730,12088,68802,42866,79963
+54422,43227,12325,79352
+54423,59303,59160
+54424,28390,76471,41282,77463
+54425,8006
+54426,26422
+54427,30552
+54428,50961,80523,71855,42541,58258,74938,24980
+54429,29938,12790
+54430,77570,32711,16045,73579,75971
+54431,12288,34480
+54432,49401,17911,18776
+54433,64477,29796,81217,56521,33293,7927
+54434,13609,40384
+54435,15346,4079,64294
+54436,54977,60635,43403,19687,31549,16438,51367,43407,17366,14804
+54437,32109,32847,32025,68863,54193,75330
+54438,29277,65497,24258
+54439,64991,45942,62416,23317
+54440,24665,17619,33139
+54441,38058
+54442,81924,76731,57380
+54443,31121,49483,28338,57067,33096,66389
+54444,35784
+54445,73209,28592,73415
+54446,63043,75689,40734,42115,5200,35553
+54447,66613,9276,73206,37665
+54448,25920,72435,25828,76948,70852,29104,21319
+54449,48413,40183,69747
+54450,72720,61590,22250,78331
+54451,20000,56723,51588
+54452,19753,60015
+54453,43788,41262,32151,7358
+54454,7626
+54455,14891,73474
+54456,15809,75658,32061
+54457,37267,1302
+54458,49616
+54459,29126,32677,25882,37371,42709,11439
+54460,101,68520
+54461,41307,37334,16281,11929,76084,78957
+54462,34322
+54463,28946,61709,50370
+54464,44373
+54465,31905,46137,69889,4332,80609,23587,10639,78
+54466,17193,75875,16442,62632,37759,30132
+54467,35653,78846,25427,31750,65695
+54468,66384,11339,26260
+54469,49695,18597,39568,66680,34336,35973
+54470,47651,25762
+54471,52841,72689
+54472,9071,73193,5961
+54473,6007,30649,56530,75333,27503,51987,41205
+54474,68903,10082,57722,68469,72117,60440,26487
+54475,41067,72934
+54476,22353,11494
+54477,57792,12538,108,20204,9152
+54478,19715,43895,20921,20142
+54479,21749,65001,73296
+54480,26854,62324,21615,73038,78642,47134
+54481,36138,60157
+54482,11699,17517,73331,36017,52812
+54483,17331,52035,59576
+54484,18949,78832,43424,56232,31253,34729
+54485,53822,27854,47384,53108
+54486,38883,21273,55294,28026,47028,55351
+54487,4848,3521,35730
+54488,38623,21975,80978,45101,57440
+54489,15658,20037
+54490,73188,43570,31332,61326
+54491,59460,76664,45043,41252,9667,39289
+54492,64708,32902
+54493,53790,3341,53925
+54494,59801,4047,75935,8443,45337,21038,45785,18110,15127,72539,24268,17074
+54495,70357,67960
+54496,73005,54862
+54497,81763
+54498,524,11591,65164
+54499,25292,303,48313
+54500,30727,33075
+54501,65565
+54502,74905,71120,27781,75480,33392,27440,55617
+54503,65793,70550
+54504,75879,73097,21861
+54505,81478,27170,64130
+54506,39347,70933,34306,3252
+54507,31902,60656,59470,17679,17167,25182,42059,29112,69255,7872,48720,77665
+54508,35709,25980,48911,27689
+54509,80166
+54510,49281,33811,52706
+54511,56722,60177
+54512,62922
+54513,71665,47953,70628,2679,72274
+54514,2601,62533,61255
+54515,80229,70172,26200,28988,20028
+54516,20714,64653,29944
+54517,58391,21340,70842,66724,16155,42693,5324
+54518,13896,29112
+54519,66474,30953
+54520,8803,27577
+54521,32689
+54522,24476,42815,47468,33902,38672,11961,38878
+54523,22404,41947
+54524,14365,24214,24017,47539,76804,19452
+54525,37040,54392,16482,46532,59714
+54526,56317
+54527,4211,2124,43382
+54528,61070
+54529,49720,62076,82052,47977,10879,26081
+54530,15997,47769,19775,29542
+54531,34313,72943,38758,78309,38767,54815
+54532,41237,61960,67654,10479
+54533,45537
+54534,18422
+54535,78871,54964,62792,294,47019
+54536,44845,61675,21975,54980,45687
+54537,76916,43496,8753,25367,78664,26839
+54538,31163,60592,51859,53016
+54539,2746,16458
+54540,2100,15763,75612,24587,74247,48678
+54541,27000,35592,51632,80862
+54542,19148,20292,18372,79205
+54543,59939,25128
+54544,51528,53720,39655,21391,17898
+54545,59034,78450,77790
+54546,42657,11106,2498,51658
+54547,13935
+54548,34816
+54549,17391,4809
+54550,13195,69321,52244,47292,81090,58748
+54551,66690,6599,8911,72803
+54552,7632,16077,26685
+54553,33415,70041
+54554,5911,31857,45447
+54555,79522,36790,24622,44316,76838
+54556,34113,33806,1462
+54557,68960,46769,25251,75490,624,71578,81766,27222,58561,31154,55862,34117
+54558,44900,76048,57313,4738,42608,44594,4591
+54559,38570
+54560,21707,23775,28145
+54561,40855,12885,4356
+54562,42091,16157,18372
+54563,490,39702
+54564,57270,34059,59267
+54565,69793
+54566,55384,65524,64658,77414,7592,19882
+54567,5141,74643
+54568,12903,69268,52199,78332,53904
+54569,45869,3674,45111,59271,55501,81100
+54570,51392,58031,48204,33898,58983
+54571,32479
+54572,3562,1849,9507,33688,81293,1316,75248,15642,17002
+54573,9828
+54574,13707
+54575,37796,71191,19708,18257,53611
+54576,7926,35497,24036,17934,74686,4604
+54577,58080,69252,3000,46632
+54578,15476,32479
+54579,53519,75078
+54580,23301,22477
+54581,53614
+54582,56430,126,56731,4935,17714
+54583,29714
+54584,33012
+54585,55898,51236,36112,35640
+54586,71693,22687
+54587,46945,70650,56152,48733
+54588,22169,69283
+54589,8259,15625,14403,50659,53489
+54590,75166,67583,25723,25401,61877,34803,73451,75977,8672
+54591,42590,17300,27532,26078,68322,46543
+54592,35316,33672,70295,69585,23017,66972,31908,16949
+54593,13038,27847,7842,72317
+54594,78055,67010,39727,34866,29681,47605
+54595,67110
+54596,6903,66941,79649,45229
+54597,31753,49266,25559,41395
+54598,22119,21448
+54599,42841,49974,60652
+54600,26685
+54601,13768,11547,65492,81738
+54602,60966,69493,36258,49001,16065
+54603,44375,36529,44732,2785
+54604,46852,60440,6498
+54605,81852,33879,30086,76544
+54606,45942
+54607,42236
+54608,49013
+54609,61401,27921,13852
+54610,66327,69368
+54611,40104,63326,23993
+54612,29293,46573
+54613,22519,74288,22272
+54614,29845
+54615,30362,18678,2551
+54616,58223,12064,4389,59105,54937,16100
+54617,47115
+54618,52974,74294,80247,55030,12404,28946
+54619,16976,19843,22377
+54620,14027,72057
+54621,27284
+54622,44828
+54623,79811,35562,25776,81686,15339,77161
+54624,36157
+54625,62255,14653
+54626,27011,64504,61163,76247,55158,26605,33715
+54627,11145,78280,81491,47607,77689
+54628,38337
+54629,49527,25681,65027,8448,8399,75418
+54630,27953,13283,49339
+54631,60596
+54632,40240
+54633,23107
+54634,5306,61719,67897,52425
+54635,13530,22107,21624
+54636,37060,11527,62528
+54637,44748,57360
+54638,74057,58776,18372,68817,21511
+54639,71539,36929
+54640,32889,4744,34200,3990,21694,80645,34242,81417
+54641,81224,51540,35844,51193,6529,17863,17139
+54642,21954,16018,48146,42585
+54643,25894,62406,59480
+54644,67151,39750,17295,53849
+54645,27949
+54646,41548,16295,26186,13437
+54647,29927,14239,46241,53143
+54648,4358,26660,65829,78435,63948
+54649,25305,46240,9186,25251,64034,70385,11675
+54650,38507,18860,42871
+54651,26184,60290
+54652,56425,45334,75019,40483,58131
+54653,1559,19787,62125
+54654,32188,12140,67597
+54655,44540,65692
+54656,34441,12664
+54657,78842,27492,32530,16710
+54658,72747
+54659,18058
+54660,62629,44810,59779,65175,43045,29158,10480,38581
+54661,40700
+54662,25557,30709,18477,36275
+54663,82190
+54664,23182,26041,34683
+54665,587,37377,5036
+54666,13930,74743,47149
+54667,1647
+54668,23948,13034
+54669,79848,10599,51178,21962,6597,38197,2281
+54670,74072,11326,70490
+54671,2735,27769,6279,38161
+54672,81154,10028,55299,63827
+54673,74790,20119,74777
+54674,26538,53474,61136,26627,62250
+54675,51430,52139,25299,66149,60709,64725
+54676,31252
+54677,25395,20747,19306,33211,46481
+54678,34161,19966,64765
+54679,74669,49593
+54680,6457,17348
+54681,9388,60333,33640
+54682,68720,27434
+54683,44865,23542,60882
+54684,1375
+54685,21612
+54686,4171,62784,77012,53272,15470,48970
+54687,61884,30179,38694,71739
+54688,55947
+54689,59150
+54690,74116,45105,10775
+54691,25550,46759
+54692,24051,68771,8967,21800,70,62048
+54693,5171,60290
+54694,38294,17661
+54695,16364
+54696,81591
+54697,25485,4978,52913,1708,32346,21983
+54698,3982
+54699,56529,54217,62543
+54700,47138,25077
+54701,29910,7189,67149,12720
+54702,33123,37518,77513
+54703,1488
+54704,3460,68283,15775
+54705,76601,8634,6138,51236,32367,21637,37285,78252
+54706,25266
+54707,77,51902,23156,4192,7529
+54708,15626,40803
+54709,338
+54710,24715,37614,50491,49667,66086,46784
+54711,64066,29173,4545,41207
+54712,31010,59812,43373,40749,48695
+54713,28973,21709,29502
+54714,51047,18366,4138
+54715,33964,4987,55499,57380,29977,29589
+54716,17537,44551,4462,29591,22365
+54717,40204,71889,49658,72472,443,61832,25479
+54718,13076,72939,32709
+54719,38661,4115,41982,8711,11627
+54720,38553,17293,47733,25125,15490,229
+54721,78039,3943,67049,56604,29186
+54722,38793,57983,13709,77227,30364
+54723,63883,60864,60416,46983,10846,17065
+54724,37517
+54725,54048
+54726,69938,71726,68649,31921
+54727,66116,77294
+54728,50408
+54729,74289,44563,33439
+54730,53509,8006
+54731,68266,35898
+54732,31485
+54733,46179,55215,67047,6233,80114,34500,35473,68346
+54734,79686
+54735,15257,80797,27245
+54736,21748,64107,55375
+54737,51383,56956,33667,78616,50871,34769,81150
+54738,59907
+54739,16379,78832,51144
+54740,61051,32687,81881,657,51854
+54741,72776,70639
+54742,7966,63139
+54743,78222,66691,7287,60815,5967,56143
+54744,9707,81571,39187,57991,70559
+54745,37306,71393,12151,5681,35311,75432,62490,25977,13418
+54746,61278,34971,57596,60262,79933,57964
+54747,51366,69322,35768,40655
+54748,81101
+54749,76002,40838
+54750,78200,36244,8638,51171,61510,55504,63206,22935
+54751,25525,1571,72580
+54752,21486,29265,22596,69686
+54753,427,59340,52752,30705,57522
+54754,15246,34073,38142,51081,63276,4003
+54755,18003,56917,17921,17070,4033
+54756,80869,49416,66684,7357,47970
+54757,58247
+54758,44238,62855,59181,20497,56412,11247
+54759,80377,79812,26364,19223,10761,61237,49554
+54760,9852
+54761,45823,73824,37392,26106,7228,44740,37881
+54762,62188
+54763,9078,34669
+54764,3880,30743,59226
+54765,69772,34863
+54766,2135,15328
+54767,16526,58634,37494,34789,26816
+54768,42109,7595,14299,6635,64464
+54769,69836,40298
+54770,20245,75449,12591
+54771,76809,10821,54793,1208,34827
+54772,38771
+54773,33424
+54774,34277,75135,58125,59261
+54775,50275,59577,11872,4433,2977,68246,73652,53600
+54776,37267,47795,62303,32071
+54777,51260,47647,4065,41991,29590,43109,15557
+54778,444,67323,46305,33597,14669
+54779,26409,10108
+54780,26364,9203,18195,28618,33300
+54781,43691,32264
+54782,2737,76598,6927
+54783,80999,46721,3438,72520,548,206,81878,77148
+54784,52876
+54785,20173,26023,68673
+54786,42799,79015,36369,40430,59208
+54787,21749,60218,69066,16440,78822,44732
+54788,57063,33559
+54789,20778,62010
+54790,54847,81858,75184
+54791,74152
+54792,79281,50581,37540
+54793,76833,70397,26315
+54794,24912
+54795,18248,57626,22117
+54796,41052,49345,35808,24249
+54797,5951,31235,39568,79510
+54798,75481,21102,22688,47292,56745,40701
+54799,49109,63831
+54800,42385,70975,37220
+54801,3042,41139,82132,63538
+54802,19884
+54803,29586,55460
+54804,5479,58075,11213
+54805,73836,31402
+54806,74535,45215,200
+54807,30709,46678,73956
+54808,65047,1837,37592,11505,7170,40313,71220,67223,77611
+54809,80184,71851,62725,74666,9847
+54810,52368
+54811,38872,53085,37649,8566,889,70509,19124
+54812,38887,19490,1922,19059
+54813,68779,72942,5268
+54814,24529,45184
+54815,79901
+54816,37455,54964,23962,8502
+54817,57597,34900,46890,46812,58099
+54818,58280,76739,14202,73123,55993
+54819,44559,66292
+54820,5124,67962,11565
+54821,41041,27664
+54822,32461,82159,30265,67139,2386,57044
+54823,51430,29929
+54824,69450,1130,72377
+54825,48911,23358,52990
+54826,45793
+54827,56547,75523
+54828,45706,17490,30855,65494
+54829,65581
+54830,78287,5363,81985
+54831,4381,36645,72363,24138
+54832,57491
+54833,46136,3814,75015,16715,11383,55659,68157
+54834,76157,74931,22839,9501,49560,40425
+54835,76040,64143,5367,24138,43165
+54836,63118,36124,65889,39128,20338,63412,66729,50807
+54837,37992,3189,60666,66425,50964,66935
+54838,54185
+54839,41043,80623
+54840,80985,5331,23913,69686,65035
+54841,10799,2147,60021,36127
+54842,9352,43437,20015,70967,47094,49859,14444
+54843,24833
+54844,7253,57877,1265,40263
+54845,29829,7661,26914,75499,23234
+54846,20140,55829,22878,54969,57306,10249,53103
+54847,24019,65484
+54848,55772,32108,5877,36793
+54849,44051,11084,53974,20324,73046
+54850,17279
+54851,74912,17662,11777,65969,41501
+54852,19811,8085,1022
+54853,37780,26560,65172,35218
+54854,12283,43626,58049
+54855,63317,20659,29562,64485,49038
+54856,64767,14487,78915,52438,57092
+54857,31613
+54858,58517,63792
+54859,25142,23388
+54860,77198,25895
+54861,44798,40819,58883,9996,12499,64957
+54862,28014,40858
+54863,16361,42695,48284,24932,60766,73718,59262,76514,53611,3134,59932
+54864,56426
+54865,76799,46311
+54866,64155,47668,31500,61868
+54867,19360
+54868,34105,75977,4694,70072
+54869,31917,63758,18235,29414
+54870,45252,30233,30016,268
+54871,46028,70014,76118,50361,68698,27204
+54872,34964,24695,66935
+54873,50119,15176,26916
+54874,12449,30679,37864
+54875,62074,73492,49782
+54876,69724,36821,76547,59999,3250,33948
+54877,59758,77806,61107
+54878,68021,13268,23515
+54879,36366,44493,64830,6420
+54880,45120,71152,2477,10383,47378,1971,75888,16048
+54881,62171,26587,20870
+54882,8834
+54883,61068,33403,57595,65229,50164
+54884,67551,69953,71656,38219,9654,76436,76740
+54885,4557,65834,29726
+54886,43452
+54887,24781,36029,38698,59029,20056,65582,27085,49892
+54888,20681
+54889,18372,17294
+54890,50055,49169,6706,19981,49318,34353
+54891,17415,58104,21339,58031
+54892,64,39452,33682,18528
+54893,73901,47213
+54894,59769,812,80527,60711,36397
+54895,3252,79754,78509,23593
+54896,73803,28818,79611
+54897,19344,32404,66753,81532,39731,65241,26792
+54898,25942,12688,7000,2273,35414
+54899,3352,40672,63683
+54900,71688,45810,74324,36514
+54901,61045
+54902,37256
+54903,25764,9741,50559,61889,17691,59791,3284,6107
+54904,45258,19794
+54905,28794,35397,5704
+54906,6461,30472,32218,73612,42531,20998,54927,1608
+54907,45651,71139,46223,67474
+54908,37325,62882,17092,74843,77184,59516,51409
+54909,81070,80707
+54910,36950
+54911,64671,56628
+54912,1921,8614
+54913,13051
+54914,3674,41164,72432,65552,73435,42434,30792,74485
+54915,39379,53622
+54916,68598,22628,56839,10665,65272
+54917,11318,8406,55099,49075,31329
+54918,43601,33107,4343,30242
+54919,13235,27664
+54920,82098,42832,1132,7206
+54921,35525,78068,796,13477,23197,49244,10781,8996
+54922,12973,10371,20795,51973,48559
+54923,10517,32216,14274,7420,52309,11826,67444,57479,9222,45440
+54924,4555,69767,28066,19938
+54925,52135
+54926,3559
+54927,15322,20836,14027
+54928,47213
+54929,46311,1487,64551,9158
+54930,19098,72159,56245
+54931,48379,18042,45942,17950,75908
+54932,49501,47235,35308,66874
+54933,6115
+54934,37323,34320,44121,14423,72313
+54935,3094,9668,63338,80011
+54936,35198,24629,70186,79985,74852
+54937,57232
+54938,24659,39639,54273
+54939,35217,359,58965,65483
+54940,37097,4248,42840,53797,33806
+54941,61295
+54942,37294,15699,67017
+54943,22097,47658,26396,21804,31779,30793,10582,261,3960,54974
+54944,56031,38906,67517,79424,76535,27552,2120,31517
+54945,61472,68570,44903,41492
+54946,47120,36695,74344,69998
+54947,38680,25608
+54948,34496,67221,9282
+54949,33356,53626
+54950,2001,55049
+54951,10472,62908,9470
+54952,2079,757,80641,32999,49656,76728,25023
+54953,74015,41080,22505,12553,69236,28512
+54954,8914,29782,4755,46838,8206
+54955,56167,14508
+54956,3956,16012,52531,16810,52613,69293,27777
+54957,8032,4563,18091
+54958,13907,13558,60412,40264
+54959,27276
+54960,77551,22480,69177,27200,8225,65436,82181
+54961,68746,77686
+54962,15996,41642,15819
+54963,28163,9809
+54964,34531
+54965,22310,77423,76986,14836
+54966,26453,13783,25556,10167,68829,34578,43583,5016,34409
+54967,52966,22945
+54968,4735,53627,43479,59029
+54969,17817,60377
+54970,81575,60499,40460,65634,31145,39623
+54971,57721,9852,4112,66319
+54972,27646,28581,55068,42439,22991,429,9016
+54973,18615,61139,24425,28077
+54974,40240,53629
+54975,12283,70550
+54976,53209,65768,20010
+54977,7964,11634,10403
+54978,7224,29246,22047
+54979,39088,63726,898,37906,63985
+54980,11451,35911,46915
+54981,18136,29962,44509,20841
+54982,72793,20825,23353
+54983,41152,64086,34863,32701
+54984,1427,75916,12089
+54985,15799,70938,46832
+54986,4493
+54987,25125
+54988,889,17428,14192,27002,30624,46524
+54989,74669,26841,42284,64086,9366
+54990,46107,50687,78156
+54991,19197,68132,30528,75382
+54992,67610,59930,76247,18999,42211,61854,27285,73181,61350,32730
+54993,4013,72461,51255,19954
+54994,54394,76278,9738,11964,59177
+54995,33576,33094,14988,31647,36400,29971
+54996,62706,34403,78850,39559
+54997,6215,74591,31734,52170,8810,62402
+54998,27305,47759,25759,24188
+54999,77064,6645,43525,23479,64581
+55000,40541
+55001,7545,60535,62265,81122
+55002,3333,18400,11195
+55003,63638,25197,20559,30617
+55004,52232
+55005,43105,66425,41467,6552
+55006,72057,46832,50370,16080,21897
+55007,59848,28799,65651
+55008,42898,24413,42882,72737
+55009,28522,67600,52093,59687,25128,67303
+55010,30780,67096,57050,60751,68192,57226,28605
+55011,66486,17816,54807
+55012,29923
+55013,76413,51887
+55014,40162,81,15286,79296,19635
+55015,69821,39124,15919,9360
+55016,44132,19846,53911
+55017,76146,59237,55747,68225,1933,76063,47019
+55018,59504,27343,11298
+55019,36990
+55020,10405,34021
+55021,54520,76933
+55022,45867,29887,7894,12811
+55023,81578,2775
+55024,77627,55113,57714,45550,77992,82089,52466,19231
+55025,67076
+55026,24794,74158
+55027,5651,70938,11229,24705,32538,66463
+55028,48159,66498,67896
+55029,30659,25018
+55030,39502
+55031,81484,25965
+55032,22365,14075,25750,14566,53134,67576,31242,32778,46027,76406,6034,78028
+55033,51409,39221
+55034,27102
+55035,41207,60628,34809,46800,63610
+55036,29783,22870,59891,44112,36612,12245,51993
+55037,5475,61998
+55038,52495,20755,32644,57435,41836,54070,51589
+55039,39779,27355,31743,4301
+55040,52595,26611,37285
+55041,71565,4102,29277,33983,40007
+55042,54968,47225,2188,7606,46317,28388,73666
+55043,26130,28068
+55044,33558,45096
+55045,21084,3289,34636,65095
+55046,80232,70598,79971,30549
+55047,6954,14498,75381,49166
+55048,43251,32430,47880
+55049,32131
+55050,81493,42393,70193,53319
+55051,46948
+55052,38702
+55053,12435
+55054,41288,52535,63532,22425,60413
+55055,44169,80535,81402,10821
+55056,77809,22751,41355
+55057,8008,72538,69180,13819
+55058,28261
+55059,15480,71214,60765
+55060,32198,17341
+55061,50026
+55062,45035,76104
+55063,14388,78821,74380,22597
+55064,40643,77325,10868,67722
+55065,37039
+55066,35354
+55067,8834
+55068,1890,40702
+55069,53827,5765
+55070,25369,76310,46120,51891,32391,75106
+55071,33037,71997,27741,74411,19669
+55072,56882,58036,58930,81743,29631,30697
+55073,25117,9856,6291
+55074,5319
+55075,4091,46866,15961,76729,30538,15332,56184
+55076,11134,37390,48105
+55077,68749
+55078,32911,74741
+55079,13775,30057,49795,72361,43821
+55080,67024
+55081,56830,51336,76440,71689,42675,6729
+55082,49794,81120,19052
+55083,75102,4809,76874,13580,33545,33882
+55084,16084
+55085,64532,41519,25457,7467,20619
+55086,18017,50642
+55087,40763,36274,62891,78835
+55088,2839,31609
+55089,12616,36958,54033,41361
+55090,50269,18118
+55091,61137,50841,79804
+55092,32543,67183
+55093,30756,54131
+55094,44363,69167
+55095,62422
+55096,6886
+55097,32687,16231,81638
+55098,36223,77630
+55099,18578
+55100,6465,39921,44260,31549
+55101,24949,41439
+55102,24244,30910
+55103,58945,12148,36975,335,8380,34711,8161,59210
+55104,58890,27093
+55105,63683,22744,22255,15873,9726,40035,61482
+55106,1932,44817
+55107,7405,81248,14287,47353
+55108,75041,24832,27341
+55109,58861,60358,13799
+55110,29639,57355,4384,7023,55608,19669,10142
+55111,13413,65851,71962,49794,37408
+55112,4271,52578,10252,55061,64287,6574,72157
+55113,5105,41544,63742,21189
+55114,39923,56803,66291,64687,55149,27521,5307
+55115,60448,59014,9154,7609,78079
+55116,26556,53435,55601,40440
+55117,4706,55937,50746
+55118,49365,9175
+55119,10838
+55120,23215,74061,59307
+55121,58367,14565
+55122,33888,73773
+55123,4117,21859,70954
+55124,81973,17786,46573
+55125,58408,25374,4049,26835,66018,27620
+55126,57591,14517,51780,82114,81675,60970,6777,45705,36126,70444,75148
+55127,48563
+55128,77486
+55129,68266,10528,41796,17640
+55130,70543,25239,48116,10649,42103
+55131,22800
+55132,38858,38263
+55133,28960,77302,23306,62700,45730
+55134,23129,198,54375,25451
+55135,27697,38906,32389
+55136,43126,10097,67585,9327,42602,47893,75061
+55137,69345,42879,13869,80353,70074,33737,72173,44627,69077
+55138,9018,12257
+55139,4828,24802,25676
+55140,40312,67011,9463,31654
+55141,42236,27549
+55142,44347,24288,79848,41974
+55143,28165,59297,35222
+55144,64949,81025,46740,49796
+55145,77855,32210,9374,33965,33060,75232
+55146,39988,14451,80490,28780,61307,80481,15867,13543
+55147,39275,44095
+55148,1093,5802,12906,44875,7523,62096,69687
+55149,15032,75040,35538,27719
+55150,4075,22403
+55151,29639,28828,49891,17196,13938
+55152,7975,73911,62603,34324,38627,42574,17214
+55153,17389,14287,80780,62107,28283,28115,47816
+55154,30213
+55155,29903,21218,74762
+55156,23505,31348,25241,14635,14353
+55157,26075,64516,8151
+55158,66028,61459,63003,24762,51755,47134
+55159,61826,13423,17633,57243,59670,44193,79514
+55160,81638,28502,19281,5300,57718,76922
+55161,40652,43231,19715,44689,2420,72225,80976
+55162,75352,14341,22287,46792
+55163,63925
+55164,43497,20743,49934,26719,34681,82012
+55165,19133,36062,49,48466,29700,35147,5357
+55166,59326,49127
+55167,58600,72916,62420,37441,22299
+55168,50083,19856,74875
+55169,59331,36036,81548
+55170,57698,64872
+55171,16984,51623,8919
+55172,78894,80384
+55173,60100,2142,78665,200,15402,30009,47705,36283
+55174,12369,60557,33300,22286
+55175,44796,6086,11350,41204,7990,68340,35196,72812,57603,38312
+55176,57642,35557,67397
+55177,65767
+55178,4162
+55179,62426,23241,78669,4272,27116
+55180,32165,72833,10731
+55181,75737,22287,5057,70024
+55182,410,54077
+55183,23107,36071,52377,63651
+55184,28207,28130,68713
+55185,52540,20783,24407,1125
+55186,9650,75343
+55187,40468,51080,74922,26708,64923,75863,26232,42031
+55188,69822,15714,13126,75406,59723
+55189,4331
+55190,68507,74551
+55191,70353,12975,10201,33954
+55192,39699,58548
+55193,78730,76070,18780,46799
+55194,41569,51894,27168,8996
+55195,77285,28180,76248
+55196,47457,46448,74600,24378,41857
+55197,64095
+55198,25516,30143,43402,15164,79256,16580,33500
+55199,14689,52546,42468,69910,67817
+55200,67241,28527,40254,22524
+55201,62112,68491
+55202,66920,40720
+55203,5700,41325,4461,53486,71619,32059,14749,61719,34555
+55204,31160,80569,42067,27345,48057,64064,20010
+55205,44324,32252,19694,20250
+55206,49507,42745,66586,24205,18034,67567,80016
+55207,6097,66398,16520,454
+55208,65917,64114,37909,77323,28808,16047
+55209,44569,27650,79968,45730,62486,75937,75802
+55210,4213,18260,11927,2883,41263,21533,17964,60127
+55211,70195
+55212,3548,1520,80910
+55213,29030,32139,74855,13794,18892
+55214,52079,301,65405,66176,25998
+55215,51555,80054,37938,65710,60360
+55216,65692
+55217,1509,1163,18493,68752
+55218,79715
+55219,32793,13927
+55220,10662,19572,58027
+55221,19763
+55222,9294,40448,2675,8383
+55223,2148,16392,12794,45705,15630,13477
+55224,42176,7702
+55225,27425,72120,44381,22560,67802
+55226,55950,66173,2005,57939,22297
+55227,28212,71937,47150,23543,67732,4471,26917,60755,77732,32277,27904,41931
+55228,78998,22940,79164
+55229,81057,21899
+55230,44463,56627,18387,62517
+55231,23939,26635,72169
+55232,16902,23135,80249,48411,12710,79050,46742,56841
+55233,78593,58842,66790,59464,59223
+55234,41380
+55235,44700
+55236,10362,23121,58906
+55237,8225,14929,43871,68165,52281,19694,54905,60230
+55238,49059,78356,61995,29006,34549
+55239,26393,57909
+55240,65929,71862
+55241,39569,62765,16084,42851
+55242,71399
+55243,62185,57002,6148,63718
+55244,75738,24530,28474
+55245,73951,644,58134
+55246,80571,66785,15315,53910
+55247,76278
+55248,81305
+55249,38119,70771,24984,79376,14344,45524,45593,53660
+55250,6111,14172,13647,60894
+55251,18686,32454,73115
+55252,22543,51582,45470
+55253,38858,77716,10834,49708,61036,3591,39631
+55254,46152,53577
+55255,41796,69143
+55256,9619,15601
+55257,58734,10240
+55258,73749,9263,41266
+55259,25457
+55260,73153,80049
+55261,57788,69343,1449,81015
+55262,19014,27996
+55263,66595
+55264,65166,44593,33397,13454,29221
+55265,35502,74741,75151,15630,46238
+55266,4796,15380,58645,46011,25730
+55267,45511,32184
+55268,46781,67938,62571,3839,65769,62545,42518,69701
+55269,17080,42650
+55270,69745,20961,35608,67362,18649,38145,50087
+55271,53881,53712,79573,22367,68745,16422
+55272,59583,64394,17600
+55273,19491,71817,40083,48910
+55274,35036,32654,56116,13121
+55275,20927,78183,66845,14008,2992,35075
+55276,77580,73971,7860
+55277,63158,46915
+55278,23875
+55279,72249
+55280,35898,1881,60311
+55281,73031
+55282,27403,32505
+55283,20245
+55284,73592
+55285,13210,47497,26214,68347
+55286,70660,60050,45940,24413,37907,46729
+55287,6275,67777,28873,28390,10299
+55288,19514,51854,75453
+55289,69833,69995
+55290,49410,56328
+55291,75819,59698
+55292,72985,8407,74406
+55293,49092
+55294,13912
+55295,54824
+55296,17461,11272
+55297,69774,48664,15396
+55298,25329
+55299,45718,35947,8235
+55300,78603,64165,55047,16817,40106,68435,3865
+55301,27371
+55302,42872,75721,70011
+55303,35051,31082,42600,35453,13290,79175,78908,16677
+55304,18139,63849,61476
+55305,4377
+55306,47780,40263,71694,10386,67145
+55307,15471
+55308,39182,37635
+55309,71058,13718
+55310,25619,41953,68822,39587,54758,61242,6035,37563
+55311,12520,5571,68418,27311,12242,31265,29446
+55312,5625,6365,34885,7305,68520
+55313,17722
+55314,61684,6153,15380,82008,67370
+55315,39455,6900
+55316,81315
+55317,11201,12672
+55318,65387,4719,69758,47336,63704
+55319,52714
+55320,4066
+55321,12982,56348,20436,27009,32344
+55322,7777
+55323,59070
+55324,1370,13758,40939
+55325,41380
+55326,4656,16088
+55327,65918,38251
+55328,11844,40692,6423,65272,50819
+55329,47811,32066,30457
+55330,48696,13826,76559,28539,75232
+55331,69369,3241,28861,29027
+55332,25367,58495,59227
+55333,38359,56707,47596
+55334,11796,9867
+55335,5137,65019,69138
+55336,12341,41091
+55337,12007,68878,52679
+55338,9072
+55339,53432,76880,21975,5461,49730,51361,22308
+55340,7883,32440,57778,39049,38209
+55341,28429,65480,39983,6623,55430,69768,30119,31414
+55342,27276,1269,29497
+55343,11237,12434,71929,68449
+55344,51883,3476,57015,25378,34091,47482
+55345,32568,8145,21732,71332,9778,29244,79505
+55346,11438,40012,81827,13206,68842
+55347,52292,28801,53542,2367,21378
+55348,61558,75627,27545
+55349,35355,31161
+55350,43452,44293
+55351,45682,77986,55521
+55352,34453
+55353,54204,78751,69841,61192
+55354,58232
+55355,48981,16561,46381,11007,25179
+55356,41394,54532
+55357,68205,53801,31630,25832,66766,70790,81414
+55358,74905,67382
+55359,36332
+55360,10769,27402,8816
+55361,31295,4727,46675
+55362,76914,58953,31342,51085,71026,42062,36082
+55363,24078,39455,55908
+55364,68024,41905,65829
+55365,40532,9180,51490,81043
+55366,73981,36251,53326,18957
+55367,36719,51637,47113,55935,12954,74267
+55368,40277,64214,72879,16203,39618,49638
+55369,27009,31909
+55370,63281
+55371,36423,4066
+55372,49881,31446,21578,62136,2026
+55373,2400,38880,29491
+55374,72208
+55375,37855,46017,62697
+55376,57877
+55377,30732,39031,31720
+55378,13273,30716
+55379,65321,49763
+55380,27926
+55381,81339,73872,63573
+55382,47989
+55383,56315,19297
+55384,1668
+55385,57413
+55386,33854,41596,67807,25738,57241
+55387,82088,13308,54771,63183
+55388,80098,70882,69261
+55389,72513
+55390,66693,25539
+55391,15085,29874,2870
+55392,2004,2028,530,57777,71190
+55393,37517,13913,11118,11654
+55394,39141,58887
+55395,47053,78587
+55396,27212,29376,53621,16594
+55397,53705,44178,26061,53135,80073
+55398,48218,46142
+55399,17449,31255,55129,28799,51967,53044
+55400,878,32155,60354,23334,23433,78995,35169,14856,26922
+55401,6151
+55402,13515,69090
+55403,4508,19586,21383,18368
+55404,72344,47539,40301,3767,79238
+55405,25493,78027,66193,3506
+55406,74457
+55407,47610,11642,15204
+55408,32924
+55409,13020
+55410,35472,31736,41182,59529,22089
+55411,53133,74669,10055,73694
+55412,62636,75484,27880,74245,34284,38766,11845
+55413,59272,31469,76074,50164,18549
+55414,8075,25414,9443,56838,35446
+55415,27862,75560,80572,48655,39678,60409
+55416,57977,81998
+55417,3760,30744
+55418,35394,75162
+55419,9945
+55420,19454,52232,61367,61699
+55421,6592,82067,74236,78681
+55422,8009,25176
+55423,73797,23064,58720,25844,11804,66282
+55424,5587,62643,11719,50049
+55425,61905,74664,58036,72654
+55426,14959,29791,44790,13937,74751,51027
+55427,19015,4250
+55428,49724,36477
+55429,71554,42362,75754
+55430,67695
+55431,25902,6350,79715,56285,7468,15200,57986,77467,50801
+55432,21555,10994,60056,48757
+55433,6326,70009,1055,28486,58744,20,36038
+55434,8490
+55435,35276,30245,74576
+55436,31317
+55437,43044,47249,15027
+55438,15194,34833,54394
+55439,68014,10631,61740
+55440,76058,10475,55617,3902,48329
+55441,25536,19203,36143,40143,61656
+55442,21342,11905,12013
+55443,68009
+55444,63513,55044,36645
+55445,43060,70428,5064,77327
+55446,25162,71020,77277
+55447,45273,81803,34702,41193,44537,26646,13101
+55448,65003,72208
+55449,50667,33444,17940,11692
+55450,2410,10947,18482,68070
+55451,14376,78087,8448,29409
+55452,50656,27204,17339,54078,33444,4629,81790
+55453,50871
+55454,15446
+55455,24714,28829,51144,12771,30645,46940,41557,52189,64572
+55456,23128,27516,33732,20760
+55457,34822,10987,47166,27732
+55458,3536,48253,34487,8426
+55459,80767,44865,33850,66348,17647
+55460,71202
+55461,39620
+55462,1126,81028,64839,55244,46689
+55463,70176,61199,42352,60826,37987,79609,46871,22637,9974,58935
+55464,43208,51589,58486,196,65185,62070,37520
+55465,13914,37800,21292,58570
+55466,10248,35620,53382
+55467,56873,38798,65787,18865
+55468,74798
+55469,17868,42528,28086,59377,54182
+55470,43618
+55471,3208,13540,77522,74986,59178,35309
+55472,14754,76170,44733,18725,67451,27884
+55473,10033,17663
+55474,18483
+55475,69732,71363,75780
+55476,52029
+55477,76029,65360,8576,53094
+55478,37960,22594,9128,71895,13184
+55479,48141,33730,65019,3084
+55480,34212,23983,78014,3752
+55481,3116,72466,78692
+55482,32874,24563,63300,20022,24222,51683,10099
+55483,31361
+55484,19636,56995,58307
+55485,51842
+55486,19636,5802,45225,41453,60852
+55487,36627,31550,46414,75214,39173
+55488,3842,40242,55996,21338
+55489,55234
+55490,8331,81372,12384,33769,34043,81369
+55491,22235,21435,26952
+55492,80207
+55493,59434,26179
+55494,81090,73318
+55495,51826,47669,71088
+55496,14564,35384,46319,37104
+55497,51185,14231,20840,11027,61650,6700,68172,32619,20855
+55498,23521
+55499,42965
+55500,69289
+55501,17607,6399
+55502,80099,14579
+55503,72248,30947
+55504,17562
+55505,54976,65685,79067,77498
+55506,3334,67308,21243,5477
+55507,64224,13731,16470
+55508,62755,64533,13215,20656,48811,71145,16232,50902
+55509,2944,26527
+55510,7670,8241
+55511,19243
+55512,72718,30731,50406,72954,52381,73424,12586,75247,18382
+55513,737,75290,28327,10609,62180
+55514,53747,35550,3557,29543,5142
+55515,28003,81748,1774,2994,70711,75689,66952,33254,38964
+55516,81011,78339,16967,48676,36386,67868,37681
+55517,46712,10484,14327,2115
+55518,8244,40340,41569,37048
+55519,20810,58992
+55520,61833,26243,6495,76480,18617,58465
+55521,30538,74656
+55522,44007,59174,14054,19331,50293,35851,57565,50688
+55523,52219,1981
+55524,64812,52132,62423
+55525,47125
+55526,39965,67289,17999,20758,34856,32345,51224,41473
+55527,24425
+55528,50931,20953,7404,73664
+55529,46871,81973
+55530,33412,36870,72850
+55531,18936,21488,56215,26958
+55532,40619,34516,14787,23509,69379
+55533,4130,66242,17608
+55534,54334,43202,61716,25875,3619,73385,48123,47483,57995
+55535,81902,33415,66691,4086,76173
+55536,30367,39397,58561,52398
+55537,59380,44064
+55538,64593,22817,29145
+55539,40488,55126,28506,26491,79845,57201,80870
+55540,30689,26215,32183,34903,21600,41055
+55541,17740,54633,60138,26106,21567,46342,63380
+55542,14650,45548,16721,69798,15443
+55543,22124,20079,75181,47469
+55544,36727,49579,12063,33935,38623,44523,6862,71733
+55545,20650
+55546,5466,55216,79181,47459
+55547,65918
+55548,34580,18942,61581
+55549,78909,8064,74824,35970
+55550,31249,3570,14934
+55551,49090,73031
+55552,80770,49083,30141,14336,56910
+55553,54875,69902,67802,23967,77935
+55554,81751,33667,36773,32289,21236,80493
+55555,48078
+55556,61496,19586,59605
+55557,25507,25858
+55558,8871,78368,5923,47027
+55559,62355,10122
+55560,64345
+55561,75026,79691,34839
+55562,62331,20825,59408
+55563,64420,247,35925,21801,41837,10541
+55564,54319,79243
+55565,5847,71817,55127,38937,22148
+55566,57640
+55567,21605,53407,53508,70025,8046,62142,77597,59020,32961
+55568,190,20110,71957,36003
+55569,22624,1265,37311,73692,73999
+55570,65037,16006,66371
+55571,9681,25227,72194
+55572,3901,27852,51545,73643,22384,27435
+55573,37869,40209,56292,56620,25873,40473
+55574,76702,25447,31870,10590
+55575,40359,58126
+55576,81679,35799,39618,9658,31149,78803,59853
+55577,23678,31717,51746,22181
+55578,6500,23602,5110
+55579,64119,20324,24816,61662,20173
+55580,29360,54117,24273,46039,12373,60931,39945
+55581,6241
+55582,35451,63658,50660
+55583,24464,30092,73385,73714
+55584,25062,12056,44607,10613,9420,194,58794,31969,64710,71891,28491
+55585,43736,9893,71763,72063
+55586,26516,969,59915
+55587,7467,25273
+55588,19627,50403,1533,47234
+55589,1237,80320,48546,61960,75040,34180,20425
+55590,45622,57203,64393
+55591,80035,23668,11686
+55592,29872,61822,5557
+55593,44444,54867,66672
+55594,56443,56485,10422,19719,27926,58544,27640
+55595,50192,49891,63210,59934,79291
+55596,70055,16064,11310,78306,78260
+55597,25533,75159,79281,81968,59293
+55598,28881,73162,80467,12551,52417,8093,40659
+55599,34767,67546,38155,77805
+55600,39460,13457,40464
+55601,3831,74749,35487,9999
+55602,49939,78076
+55603,42841
+55604,18363,75255,13037,78681,32604
+55605,25108,80055
+55606,81414,10607
+55607,16761
+55608,9634,30544,76639
+55609,44887,39782
+55610,46251,63290,36240,11760,32001,49478,37988,456
+55611,33310,16203,64165,10971,24652,32763,75911,66716,27083
+55612,7214,31068
+55613,66256
+55614,29946,33274,39505,75668,78498,59949,11990
+55615,54029,14869,76407,11207,79498,31680,31953,11928
+55616,73528
+55617,48010,9291
+55618,41916,73978,3114
+55619,68507
+55620,65461,18440,64971,8126,30860,47749,68940
+55621,16664,9819,63728,61729
+55622,59223,24690,20995
+55623,33530
+55624,5857,76781,60875,37554,32674,75312,16304
+55625,63184
+55626,59945,42003,55778
+55627,28315,27585,5441
+55628,1581,34061,78316,10181
+55629,41538,31774,79440,16957,45963
+55630,48649,79092
+55631,79976,73722,25262,69948,10280,62139
+55632,35205,14720,75839,38978,73794
+55633,47084,26825,61068,80292,68781
+55634,53458,7183
+55635,6423,80608,14983,25823
+55636,41516,44851,40837,45277,72969
+55637,16772,50255
+55638,22969,42470
+55639,75764,30522,79101,55379,17569
+55640,16526
+55641,9116,52044
+55642,16239,53563,1639,77689
+55643,53897,60802,43040,33047,59507
+55644,13869,53458
+55645,9576,62621,39250
+55646,33538,49112,80063,53164
+55647,44139,74961,35266,7662,35495,74648
+55648,76613
+55649,65933,57346,8385
+55650,9795,21110,72426,31648,58273,8382,50365,75443
+55651,32634,49233
+55652,28483,57529,12807,21679,34553,30024,44372,65443,42804
+55653,43811,52162,41224
+55654,13435,52975,55865,27410
+55655,81845,73653,38368
+55656,17537,52209,78818,50307
+55657,5394,41043
+55658,56030,75332,10854
+55659,73137
+55660,21372,19309,20870,20930
+55661,59718,5732,39641,57982
+55662,39422,34452,56461,36107,54874
+55663,44317
+55664,6894,55565,25284,73895,64897,14592,24747
+55665,56998,16676,29971,78930,38394,66978,72066,178
+55666,17493,62973
+55667,6627,3568,34348
+55668,64518,28956
+55669,62129,60591,35614,3896
+55670,59018,48253,39278,48945,46615
+55671,28257
+55672,30198,59823,62566,27676,40059,2021,66959,59479,52342,25588,72166
+55673,27196,21252,48214,16945,77394,55510
+55674,57857,20401,65055
+55675,21633,34187
+55676,9198,76538,43851,80467
+55677,29741,67054,34582,50823,76857,62436,26455,6004,37501,75020
+55678,41135,73168,62155
+55679,81472,47229
+55680,2442,81040,42186,56088,38513,69453,74033,40922,61742
+55681,19,29295,11117,62073,72014,50385,81990,57745,79598
+55682,78004
+55683,63405,29397,24856
+55684,35394,70546,8068
+55685,22087,31119
+55686,38024,34054
+55687,59202,28531,50993,51405
+55688,17112,75471
+55689,80394,67976,47660,30756,30202,68743,74532,20231,57509,18208,56808
+55690,15901,16889,5788,17740,5663,36928,79654,58056
+55691,71447,72313,52822,74182
+55692,43695,40292
+55693,10868,51708,39061
+55694,81343,52930,71179,77781
+55695,35499,22300
+55696,67215,11931,71285,71626,55608,4759
+55697,60370,60001,76205,72145
+55698,56139,75848,27632,66901,57507,34612,5782
+55699,43053,24742
+55700,62741,23366,54331,3188,76434,44569
+55701,16587
+55702,9864,314,1413,63489,54076,58221
+55703,50287,76797,58993,51390
+55704,7765,68161,76712,26233,18068,40224,31035
+55705,4283,51530,13706,6372
+55706,46346,208,23539,63891,13879,68002
+55707,30415
+55708,69607
+55709,13043,12365,22518
+55710,77070,39557,50669,11263
+55711,15045
+55712,18311,105,18730,12372,48133,68366,34308,74278
+55713,50993,65017,9294,73875
+55714,47230,58266,20820
+55715,30925,80471
+55716,66530,73839,20227,29067,71847,33867
+55717,24761,1404
+55718,56567,5570,72011,48640,67801,58242,61920
+55719,63459,42012,29035,41742
+55720,57519,31691,47016,52750,21311
+55721,13336,63180,9247
+55722,80578,22339
+55723,39825,74329,50534,2698,46325,73271,28635,23546,29210
+55724,40844,52982,59818,39247
+55725,37335,34705,14297,47983,42982
+55726,11843
+55727,65709,72227,77825,2617,10968,54085,2103,62985
+55728,53975,17130,15826
+55729,57011,3234,80479
+55730,63170,81723,4376,38849,67220,70762,5568
+55731,34165
+55732,52278,2679,15647,47523,81055
+55733,6317,72653,7747,44955
+55734,10741,52581,8834,9673,13864,27637
+55735,48981,78063
+55736,32903,33145,77739
+55737,64814,59408
+55738,56618,41693,50422
+55739,51150,14498,11930,56853
+55740,58965,3965,1131,22127
+55741,41703,34337,39400,42139,18712,12504
+55742,70257,72251,13099
+55743,30196,8216,55737,39705
+55744,22379,12277,42339
+55745,49354
+55746,37814,38780,67069,32806
+55747,59188,28077
+55748,52812,72258,31485
+55749,64841,80099,8394,38284,58729,24354,25143,24786,62032,18782
+55750,34093,7523,45196,11286,70364,33107,81265,16902,59139
+55751,58242,43251,78439,15229,36854
+55752,78723,19692
+55753,45920,49170,53140,2119
+55754,58861,3037,16333,15998,77193,31413,34944
+55755,60174,15462,24392
+55756,62247,6558
+55757,29579,81694
+55758,32707,69698,3728,1268,20750,59023,26368,73847,5388
+55759,37256
+55760,39317,58597,46500
+55761,52677,66987,56089
+55762,45256,41048
+55763,56277
+55764,69282,15719,22036,57758,4235,38687,3850
+55765,14525,33772,46126,65712
+55766,30246
+55767,63333,6101,63523
+55768,45851
+55769,6523,27163,4546,9651,29137
+55770,31911,73836
+55771,52465,22035
+55772,4750
+55773,50319
+55774,19671
+55775,34117,43818
+55776,60857,24697,67526,57719,18930,33391
+55777,19806,51584,17715,35843,37963
+55778,74692,57007,8016
+55779,1722,14207,68833
+55780,56638,5878,709,69967,32362,13278,12921
+55781,51544,31704,13761,37708
+55782,33327,46886,70051,885
+55783,69461,59546,26228,29239,73407,49666,34786
+55784,82009,33829,25076,32850,79953,53419
+55785,61279,28526,69786
+55786,71684
+55787,18623,18984,72350,25434
+55788,13848,81037,79960,52872,70515
+55789,65263
+55790,82191,76189,75450,21163,14652,73476
+55791,524,8366
+55792,77578
+55793,71485
+55794,79570,38674,18678,38824
+55795,53521,36296,5257,53772,53855,31362,41304,56300
+55796,12972
+55797,43095,16104,27894,49132,69910,45320,37174
+55798,35336,69268
+55799,10264,22713,61131
+55800,35705,16535,50308
+55801,23802,49543,26773
+55802,6751,14313,45490
+55803,41346
+55804,78908,15111,36698,14110,17072
+55805,68189,21000,27931,80272,10826
+55806,62669,5998,29660,38973,20701
+55807,73994,36524,63762
+55808,6031,16256,57300
+55809,69886,1459,61996
+55810,35741,30918
+55811,15652,68775,51808,73493,81395,50265
+55812,28012,32831,33695,72852,25958
+55813,17476,56293
+55814,34783
+55815,67654,35334,12995
+55816,53264,11687,69595,78046,24486
+55817,74292,54792,79003,22655,52789,54759
+55818,67069,50849,31559,26978,57963,29213,72151,44600,79016
+55819,75627,64561,29909,18216,24997,37804
+55820,66114,44445,46807,19816,38190
+55821,71006,11951,66967,60336,62046,78202,64177,72610,60815,23495
+55822,11269,19278,59122,47526
+55823,46993,53768,76738
+55824,10251,3141
+55825,66517,70553,65905,23136
+55826,75068,49245
+55827,44607,32393,12424,59114,44188,50540
+55828,30359,77284
+55829,50988,68014
+55830,65711,64578,44566,60489
+55831,78063
+55832,35264,59605,49692,9998
+55833,16118,75361,6185,26130
+55834,56701
+55835,11432,76680,53933,72353,17159,30637,19582
+55836,65692
+55837,19646,27140,45573,11456,19522,1419
+55838,13737,23410,22311
+55839,6626
+55840,41697,12520,18450
+55841,47955,7909,46999,26463,2759,28259
+55842,7303,67298,77630,71574
+55843,14950,56695,33613,47807,2898,11663
+55844,76747,29390
+55845,64899,3274,4743
+55846,70811,59032,1630
+55847,21221,57429
+55848,60099
+55849,8036,20155,75246,56002
+55850,20751,66290,10340,4116,80683
+55851,22774,29192,44990,63789,1049
+55852,63276,45375,26108,29178,35970
+55853,38243,37890,26013,60021
+55854,72108,53587
+55855,2551,43417,5946,59654
+55856,28062,13146,79337,65595,17498,68060,9045
+55857,47653,25815,74278
+55858,78447
+55859,39292,74088,56145
+55860,10944,65974,18687,67288,63658,14855,75211
+55861,10266
+55862,81054,52029
+55863,77735,1987,6446,32548
+55864,71928,58,53602
+55865,33034,24323
+55866,78612,20693,75078
+55867,8072,2835
+55868,36815
+55869,46542
+55870,8098,56921,13253
+55871,31888,23566
+55872,75651,61254,57691,29617,52412,76819,38539
+55873,44018,47700,10427,14572,11605,71876
+55874,77809,19365
+55875,858,62361,30025,2004,29310
+55876,14376,26400,9727,70528,31028
+55877,6327,56488,62350,43709
+55878,11649
+55879,8393,22806
+55880,13695
+55881,52865
+55882,12929,81180
+55883,59972,57254,68818
+55884,28704,20436
+55885,80226,21529,47596,51559
+55886,60186,14795,8846
+55887,76644,5055
+55888,66174,49878,31125,8271,55611,13981
+55889,36566
+55890,14367
+55891,77187,51059,19121,55678,62853,47080,59833
+55892,50741,56491
+55893,71268,31648,37457
+55894,15908,55519,69283,4223,56401
+55895,30703
+55896,67086,32448,29318,42324,4305,3908,26254
+55897,39940,12911,13673,30346,64525,20395,14916,73539,32813,65968
+55898,3252,42377
+55899,53391,3954,21173,32721
+55900,34128
+55901,66094,53387,39495,27451,64262,9439,23766,38774
+55902,27589,16419
+55903,15465,45492,73573,32115,56899,14487,4265,76672
+55904,16391,2026,74100,17346
+55905,44091,77192,37298,31765,7685,20815,988,59922
+55906,34462,14277
+55907,4442,38458,78951,53668,62560
+55908,14396
+55909,5263,35216,43270
+55910,69267,74459,72390,20726
+55911,41329,49168,47593,26012
+55912,38774,71123,26050,41532
+55913,23116,45274,42835,28787
+55914,64503
+55915,2266
+55916,76039,11360,75847
+55917,15230,30423,79269
+55918,36332,10330,43147
+55919,14720
+55920,67435,38390,43549,21304,66251
+55921,3789,61069,28860,11113,79680
+55922,13548,17164
+55923,14538
+55924,33337,21877,56314,2555,76620
+55925,54122,25605,59270
+55926,20147,42548,79469
+55927,18422
+55928,81584,62255,4845,76899
+55929,21300,78957
+55930,41004
+55931,42650,37225
+55932,24484,14524,32033,70814,6415,72831,11452,81976
+55933,48272
+55934,64483,66810,42458
+55935,63194,73678,26228
+55936,24906,48576
+55937,62197
+55938,76610,19371,42080
+55939,71660,73007,48175,33829,30030,5030,37909,9120
+55940,26952,6785,14403
+55941,47102,27808,77591
+55942,61534,48103,29399,36030,58712,18853,45749,81208
+55943,29346,78451,39209,64219,40056,38992
+55944,12342,59035
+55945,30863,39538
+55946,62084,3440
+55947,38356
+55948,478,16591
+55949,35454
+55950,33682,65074,22440,53030,66918,70510
+55951,55944,52147,60372,41322,57822
+55952,68812
+55953,39397,47311,4237,65134
+55954,38607
+55955,47504,60274,53216,58455
+55956,50716,20046
+55957,55881,76332
+55958,6801
+55959,16941,55224,36718,16348,67581
+55960,70899,17770,10461,45568
+55961,16957,28582
+55962,57968
+55963,45654,31297,49335,41611,53019
+55964,69570,68525,46905,37658
+55965,15811,32410,82027,58268,49205
+55966,2388,8269,20226,51944
+55967,40384,26212,38912,21520,48147
+55968,13184,60087
+55969,77471,19597,46794,46404,78111,53791,80820
+55970,57066,78312,43200
+55971,65915,62614,67155,4531,54489
+55972,53614,47955,76424,24515,69612
+55973,79489,70489,67383,7743,54102
+55974,74482,59358,47370,49343,55977,24326,28406,40428,75244,41158
+55975,15577,38768
+55976,70883,38160,57902,11665
+55977,53915
+55978,63832,36494,46675,71326
+55979,11234,76575,64665,64873,31594
+55980,1704,70998,46305,10859,61158
+55981,7773,76691,77643,11145,78613
+55982,73750,42941,40408,18830,64152,65022,11080,12519,37466
+55983,37953,21024,76950,4656
+55984,30213,2212
+55985,54685,65062,47749,55612,43682,64907
+55986,725
+55987,17154
+55988,68409,24938,33891,75676,21334
+55989,20941,82056,31633,8056
+55990,53339,53763
+55991,3014,1150
+55992,61113,63317
+55993,52502
+55994,78109,20304
+55995,9627,68205,2254
+55996,58665,71942
+55997,72182,30254
+55998,28370,62910,74579,60916
+55999,31949
+56000,9482,45330,56145,47633,9428
+56001,53795,26135
+56002,77716,21408,60732
+56003,71820,78033,5762,48118,620,33996
+56004,70104,38609,79955,40204,77284
+56005,7537,65651,4081
+56006,7394,68721,48689,11095,32054,7103
+56007,69884,2502
+56008,69362,20246,29315,23079,2813
+56009,8181,4796,13896,13000,13392
+56010,25404,72469,80934,24658
+56011,53700,20733,55789,66688,73770,150,37420,24432
+56012,39003,72164,25061,70141,30905,29635,19564,36736
+56013,11887,55731,72209
+56014,26075
+56015,70978,38216,53946,72624,34811
+56016,29474,66338,48974,78250,77054,63004,43718
+56017,42259,50087,18636
+56018,77445,75721,69735,70856
+56019,13529,78995,38380
+56020,75209
+56021,50704,66510,58219
+56022,33989,30950,55618,47855,80448
+56023,48123,20527,53260,9491
+56024,15403,18514,53837,63495,14035,7405,70686,51955,69906,15810
+56025,6773,69294,3452,21863,42068,60856
+56026,55530,8322
+56027,23858,32901,29342
+56028,25486,47126
+56029,46752,55721,37739,63912,48956
+56030,71292,33633,49862,62621,28237
+56031,74155,47218,25811
+56032,60195,6928
+56033,37283,67336,62373
+56034,57731,44209
+56035,51808,70784
+56036,69933,23919,37311
+56037,59953,27454
+56038,45368,28781,19783
+56039,59740,49285,69759,26337,76877
+56040,47494,51470,27006,24179,9761,9096,12482,28150,78565,66286
+56041,9564,40933,40230,15201
+56042,13825,25424,46641,19610
+56043,68549,69772,3589,12258,33017
+56044,78434,61628,75259,1359
+56045,57430,79152,35850,13176
+56046,38466,35029,55342
+56047,30750,78686,6908,18124
+56048,62201,35895,67860,64052,54752,22786,72911
+56049,16045,68697
+56050,81822,72359,34299,44010,35478
+56051,61527,31467,77103
+56052,74272,82056,78060,14209
+56053,76941,64924,18469,7932,12035,56312
+56054,56794,44165,59351
+56055,54,64326
+56056,54134,27979,60505,17925,22881,80110,39226,29186,69482,4776
+56057,22464
+56058,78427,56322,68841
+56059,10075,32359,32060,76747
+56060,42847
+56061,11618,3752,29488,47196,82042,70027
+56062,55281
+56063,41288,17820,79841
+56064,58227,8682,14119,82064,64634,11693,18745,69935
+56065,34731,33407,27763,81800,73980,19733,52221
+56066,29789
+56067,79664
+56068,66334,78368,42993,3307
+56069,10895
+56070,55380
+56071,6585,61026,56854,34116,63286
+56072,70176,20905,33328,28217
+56073,72340,21634,5496,14599
+56074,20602,20057
+56075,39979,80489,43665,53688,60175,28159
+56076,46140,46573
+56077,38681,3221
+56078,31503,76234,27926,14169,70826
+56079,63537,9241,51712,662,76480
+56080,1494,58983,3918
+56081,58427,66850,67670,11111,7052
+56082,40325
+56083,59169,46710,8249
+56084,59095,30726,59463
+56085,39296,21250,34322,50734
+56086,64542,79567,19304,49231,74697
+56087,48238,49037,62068,69763
+56088,47355,64817
+56089,15838,52110
+56090,73406
+56091,25226,48459,21531
+56092,78332
+56093,51060,62962
+56094,80393,10173,21591
+56095,69267,79268
+56096,3750
+56097,15317
+56098,59757,79589,49218
+56099,65223
+56100,23736
+56101,58830,38546,77733
+56102,64034
+56103,38948,66731,63288
+56104,4276,64157,73063,39636,25894
+56105,74635,34139,8046
+56106,40017
+56107,63748,73486,20388
+56108,71638,35565,48512,47065,8859,73614
+56109,22613,49945,72686,44518,11058
+56110,64215,72029,45821
+56111,10850,45802,21937,21571,75273,47141
+56112,22138,79027,41039,40976
+56113,19181,25792,67187
+56114,324,62395,17417,28701,2223,29244,74722,44703,13191,56632,14457
+56115,76346,11531,51085,78133,71695,4010,16985
+56116,24722,65915,38422,79419,57887
+56117,15173
+56118,61956,7092,59958,67578,35449,31630,5350,7970,48245,22212,53642
+56119,66465,70015,39980,18280,16713
+56120,31900,38846,26200
+56121,1993,66805,41767,70055,57332,33327,31880,32443
+56122,74961,37914,80368,8290
+56123,39237
+56124,41711
+56125,70015,10401
+56126,42676
+56127,15676,44553,35408
+56128,797
+56129,14147,16173,25712,56700,22551,6250,49591,31334,61147
+56130,6791,12862,21937,80783,43678
+56131,37624,45629,56662
+56132,13982,65735,10262,7311,66746,66424
+56133,28988,65737,44735,61154,29958
+56134,42645,74524,73298,81749
+56135,81873
+56136,54071
+56137,36851,6628
+56138,22823,56057,7022,56450
+56139,17802,7779,63231
+56140,58752
+56141,36391,24314,19252,22964,73080
+56142,6196,63371,81301,12821
+56143,78950
+56144,64316,32681,21721,20026,70730,49028,80105
+56145,36222,39179
+56146,2760,41822,2158,57719,38155,17785
+56147,61738
+56148,40049,67076,26253,59915,42826
+56149,52403,52840,74505,25111,62168,46902
+56150,13166
+56151,77709,24083,19199,44674,43675
+56152,11758,54348,11123
+56153,26370,53445,5285,36580,22559
+56154,32245,1515,20419,69966,7714,7371,25771,67751,73659,24801
+56155,72354,81092,771
+56156,75047,80221,63307,2344,14441,9392,79517
+56157,34759
+56158,3671,34992,59087,17402,25506
+56159,30103,45229,13,25038,53932
+56160,17050,67697,4383,77119
+56161,74225,20095,6968,65168,57515,39638
+56162,2443,16671,29215,725
+56163,75813
+56164,42494,34875,62612,45883,40717,63064,22430,44820
+56165,12368,66087,17829,18868
+56166,63083,44421,29276,38448,24731,28269,40425
+56167,9946
+56168,33998,18829,60788
+56169,49266
+56170,66002,43206,29405
+56171,78957,5497
+56172,52889,34134
+56173,54541,50714,74920,28193,62314
+56174,39968,53052,68004,66872,59852,9075
+56175,3919
+56176,11757,16575
+56177,26647,22927,4127
+56178,76140
+56179,13265
+56180,77403,73466
+56181,72566,71181,73742
+56182,61368,46155,66599,78684,61076,13972,51392,48469,51756
+56183,25240
+56184,36994,45848,28664
+56185,14377,24787,41680,35813
+56186,4821,72035,67855,77653,26557,54427,100
+56187,48185,29895,21248,978,81097
+56188,44118,50386,70782,53023,17835
+56189,61779,50519,41075
+56190,52785
+56191,12054,61792,51473,66899,20033,76591,72188,12243,71332
+56192,65504
+56193,56929,25375,52738
+56194,26856,80214,18782,75281,69385,42530
+56195,35503,22175,72791,74491
+56196,10561
+56197,76986,25492,26773,71236,25467
+56198,4068,24261,46745,8749,41314
+56199,1997
+56200,18203,31792,9467,62316
+56201,65323,11636
+56202,6325
+56203,41695,81493,81544,51507,24872
+56204,16377
+56205,45539
+56206,19272
+56207,51317,10030
+56208,60793,14599,60777,72128,81049,14590,3345
+56209,14087,18267,4516,24183
+56210,74618,35640,35794,50880
+56211,4301,60752,37889
+56212,40645,31585,34879,17979,74473
+56213,27811,31511,42972,53226,31983,78196
+56214,78681,62221,1559,47376,9592,67457
+56215,42410,50914
+56216,68053,79956,11321,45044,39542,47559,26748
+56217,7970,81231
+56218,23143,13883,56791,20210,48362
+56219,14278,70006,34317,29730,69459,33697,12732
+56220,26854
+56221,11911,6903,30254,57203,79303
+56222,18250,5930
+56223,1222,27676,55628,34094
+56224,78027,60205,38692,33615,29408,7197,14749,61609
+56225,80782,11803
+56226,59867,8956,74233
+56227,26612,3223
+56228,45190,74306,48626
+56229,38789,27788,51584
+56230,30586,29145,45005,35098
+56231,32505
+56232,5058,3220,81037,17643,5638
+56233,19806,79618,19099,80862,69411
+56234,34257,26390,20362,67939,16728
+56235,24623,31288,39979
+56236,64641,23163,81043
+56237,44740,66533,36119
+56238,37956,51082,13396,7418,42165
+56239,48343,68758,31329
+56240,10186
+56241,19727,18059,8029
+56242,79074,52580,75628,62756,10115,6383,37313
+56243,53548,26624,1374
+56244,45479,51253
+56245,36081,72216
+56246,7357
+56247,34280,10513,10238,10748,23258,58786
+56248,15939,64613
+56249,50058,24349,1023,78619
+56250,56173,47895
+56251,1417,76846,35505,53489,54083
+56252,68030,78577,55031
+56253,58767
+56254,37293,14903
+56255,81903,51891
+56256,33081,79096
+56257,39520
+56258,31071,45168
+56259,40887,2281,53051,52165,24232,22918
+56260,42034,77063,74993,46443,50473,12728,80028
+56261,14565,77830,63449,58744
+56262,64150,76765
+56263,29083,79517,26818,14537
+56264,3011
+56265,30195,44109
+56266,74971,14737
+56267,57469,31774,23259,28972,20377,33642,77076
+56268,34375
+56269,26962,22137,56788,73862,32879
+56270,1317,53974,5017,63021,40171,61764,47647,31159
+56271,56867,65046,55638,54637,33583,57563,29056
+56272,2297,48109
+56273,77782
+56274,7666
+56275,41702,66635,36919,76883,55838,6735
+56276,29797,28582
+56277,40175
+56278,33733,23977,32091
+56279,46471,60556
+56280,72761,35193,1779
+56281,58815,14671
+56282,34903,66902,62052,34549,41673,23173,56678,66697,77445
+56283,54323,80571,17126,34698
+56284,39554,74439
+56285,63479,31702
+56286,53507,4349,1649
+56287,60254,82051,7239,34875,80121
+56288,29151
+56289,19776,50295
+56290,43187,30573
+56291,47099,23267
+56292,28691,67109,38852,18731,54213,27245,46369
+56293,59178,10662
+56294,65617
+56295,46162,68829,71496,1997,37661,17898
+56296,27195,1092,15167,32732,61080
+56297,38654
+56298,57986,78732,44867,62293
+56299,56793,33837,4128
+56300,51746,64868
+56301,50597
+56302,20486,29303,69741
+56303,48865
+56304,32926,31582,13192,29040,50161
+56305,75525,77095,51490,60173
+56306,71002,67697
+56307,15632,849,5115,27486
+56308,15776,70970,36946,79682,619,25149
+56309,80280
+56310,18959,7045,61307,51686
+56311,44444
+56312,7789,32029,10598,27051,39949
+56313,20801,3208
+56314,66366,44362
+56315,49974,57225,28894
+56316,3379
+56317,24717,27885
+56318,38215
+56319,51086,17571
+56320,57100
+56321,71148,19828,76316,56146,6507,69381
+56322,39520,21014
+56323,44251,24743,71236,52471,10335,14754,3565
+56324,30327,22760,21772,18178
+56325,9640
+56326,24351,65594,61093
+56327,40723,31513,31593,26101
+56328,62155
+56329,13721,30916,67535
+56330,21302,24428,52472,16869
+56331,16350,57945
+56332,61288,30531
+56333,57090,68367
+56334,19360,46116
+56335,51419,80279
+56336,16655,52572,57114,75953
+56337,28713
+56338,74852,75399,70096
+56339,59581,42803,30385,34626,4192,72152,54673
+56340,20036,51756
+56341,49817,49815,9386,22760,34349,53675,56908
+56342,45893
+56343,56650,35391
+56344,28000
+56345,50930,4216,35257
+56346,20341,13723,38913,78082,45468
+56347,19760,2837,14294,1918,40315,73884,41795,41145,34477
+56348,47227
+56349,81950,45704
+56350,64530
+56351,73555,42060,65168
+56352,35635,75204,23175,60803,8744,15322,22683
+56353,13056,25828,22097,76487
+56354,8783,55182,69684,17081
+56355,72872
+56356,13620,14755
+56357,44249,2077
+56358,79771,37816
+56359,73833
+56360,28430,19707
+56361,58044,63186,10649
+56362,64620,30152,15648,19570
+56363,44083,11759,61383,17600,20136
+56364,38662
+56365,39222,11226,59182,58739,58797,73501
+56366,5530,19415,73158,63675,12649
+56367,52967,15096,7777,58722,1687
+56368,54438,35110,71327,13925,67490
+56369,34932,39243,32173,48941,21342
+56370,25983,37076,45072,55272,54528,33800,70422,76001
+56371,36425,35629
+56372,19222,29993,29287,27723,5838,78529
+56373,78949,72052,57044
+56374,17913,27953,37397
+56375,70099,57747,7003,8409,25224
+56376,76157,36677,9234
+56377,41756,73824,75622,31688,18379,33408,10087
+56378,37133,50271,9478,79571,79432,32421,59781,40618,40825,67260,52283
+56379,13775,77919
+56380,15040,50075,66596,69169,20670
+56381,2691,1586,64485,8576
+56382,550,39295,29635
+56383,67934,78326,31663,17154,11965,49079,31321
+56384,79847
+56385,17541,55343,26682,65760,62110
+56386,725,47659,17020
+56387,53821,24589,16413,45856,41830
+56388,25721,49147
+56389,32813,59630,18849,71732,46167
+56390,57095,56904,16005,2220,20375
+56391,29407,25864,61447,73907,60961,69195,10589
+56392,26142,78602,13754,18101,74791
+56393,454,27073
+56394,63734,2334,71803,25813
+56395,70868,59634,53880,66231,66250,33391,26340
+56396,8265,52453,18254,4916,51178,46206,65736,18129,12185,80543,50019,71262,57985
+56397,34175,28791
+56398,35427,48221,13510,51217,58362,42040,3265
+56399,26661,43589,52968,27677
+56400,44009
+56401,31994
+56402,9509,76945,78357
+56403,43382,45612,66777,21235,69211
+56404,8804,9277,3743,40044,23662,66707
+56405,26398,45318,40205,75727,7217
+56406,34761
+56407,4346,49422,39703
+56408,80801,33483,20882
+56409,7539
+56410,46700,40752,60602,71692,67051,28467,3532,8223,4427
+56411,5902
+56412,30270,8616,29801,80832,48826,6643,50443,8917
+56413,69020,69502,22639
+56414,211,35184,56427
+56415,111,29103
+56416,60387,39010,37631,58945,47743,59921,15382
+56417,68002,36206,44011,10278,16673
+56418,71836,74014
+56419,30903,64462
+56420,54196,30706,68288,42052
+56421,15604,49920,55395,13015,45471,1935
+56422,39282
+56423,59795,28254,10293,43067,58982,77950
+56424,57637,9215,5016
+56425,27809,45590,39227,32142
+56426,17418
+56427,12785,67571,21913,41676
+56428,11831
+56429,23770,73291,73131,44688,26703
+56430,53359,2781
+56431,40921,54195
+56432,23330,20112,22650,58724,26049,76147,50146,68273
+56433,65003,29130,18093,9354,55642,24682,824,60323
+56434,1725
+56435,698,30951
+56436,20068,66987,7790,50699,40229,16286,41123
+56437,19995,59716,30719
+56438,30881,81982,44049,66674,3267,14404,55050,50255,43756,39429
+56439,14013,50288,66144,10576,55877,36373,16102,3703,43720
+56440,50655,60290,9582,14401
+56441,81079,7069,894,36583,13826,9482,80475
+56442,41589,29276,3293,48870,56677
+56443,52790,18878
+56444,52512
+56445,66551,26003,28695
+56446,19537
+56447,58356,55843,43744,61834,27683,72378,18300,22561,58132
+56448,21611,21990
+56449,12603
+56450,8272,33337,11712,52059
+56451,50753,45976
+56452,60232,31141,55571,14683,45768
+56453,81880
+56454,9623,26961,21049,27949
+56455,9018,75485
+56456,47042,75386,36044,65257
+56457,20860,40759
+56458,4325,53435
+56459,76486,55714
+56460,32929,55961,62233,61398,8995
+56461,2870,49688,1887
+56462,7690,58852
+56463,19908,76564,77992,4828
+56464,40046,61270,7458
+56465,14630,27805,33077,28444,65358,45701
+56466,55865,19350,56676,47893
+56467,53133,40481,55645,77828
+56468,19861,27330,79481,22011
+56469,5462,8354
+56470,72063,50975,17764,73362
+56471,17299,58800,40657,21588,81436,33658
+56472,48076,13258,57964
+56473,62870,16214,45528,23885
+56474,67006,41148,47129,60109,79523,24348,36234
+56475,40582,18170
+56476,74029,35861,31711,10694
+56477,37218,38147
+56478,50604,59214,49077,32215,52657,19543
+56479,31881,11402,42019,73150,56281,23650,223
+56480,59330,3969,73166,62923,56703,689
+56481,5916,17687,28884,64352
+56482,7008
+56483,18284,62250,11605,64292
+56484,45795,44757
+56485,75188
+56486,11189,5840,76874,7365
+56487,44499
+56488,76512,15384,61510
+56489,26830,23755
+56490,70270,56407
+56491,7069
+56492,2373,23522
+56493,6763,47083,16613,40897,47560,53840,4123,69879,58434,62828
+56494,49723,26220,12922
+56495,62902
+56496,75375,46396,65621,12241
+56497,41570,67201,31134
+56498,23129,1082,74447
+56499,3970,50401,18991,73424,64546,9718
+56500,23543,53379,76773,41393,23892,25875,2929,38609,64819,21295,68012
+56501,1745,20205,53999,11420,15454
+56502,67285,26336,72549,12411
+56503,23453,19319,51757,50302
+56504,43818,11722,62348,63645,44549,45825,29887
+56505,53361,48321,20424,75088,42185,16613,41934,9735,34788
+56506,26505,36777
+56507,66564,49233,62326,18975,26193,49981,68077,2771,12720,28158,75767
+56508,63174,60878
+56509,8292,50904,70692,18785,56462
+56510,68640,64220,75188,24253,18791,51958
+56511,50668
+56512,77399,24570,15963,38540,60096,46337,13260
+56513,4094,57203,54830,66146
+56514,8352,2930,58993,36950
+56515,35202
+56516,73045,16491,25696
+56517,2721
+56518,11676,45801,43784,38163,15311,50725,46164,40390
+56519,78206,50462
+56520,5400,79377,43587,70383,23087
+56521,65004,66263
+56522,20854,17935,70881,29241,34628
+56523,17745,47133,53726,57873,69754,62931,39820,72662,38782,13858
+56524,7524,78974,28826,8102
+56525,26180,21950
+56526,31246,11203,25843,41642
+56527,9333,49307,57215,13080,62282,54882
+56528,28499,67065
+56529,72661
+56530,12143,43109,20171,80656,66163
+56531,65697
+56532,1316,18885
+56533,45651
+56534,3662
+56535,63355,35898,72711,76160,11478
+56536,18236,77792,41950
+56537,49911,65377,40193
+56538,63069,1074,422
+56539,63348,73366
+56540,16391,74991
+56541,16141
+56542,72656,57971,4672
+56543,34132
+56544,36256,23603,49022,55466
+56545,51006
+56546,53053,41693,70799,59103
+56547,9417,69267
+56548,58907,508,55613,33321,31589,21531
+56549,44586,20682,74441,32651,47466,67645
+56550,33281,58693,12235,18314,36477,60738,25332,49867
+56551,35492,39283
+56552,35711,53356,64574
+56553,62339,44614,6751,71276,73470,6205,4699,68209
+56554,18084,48144,78285,66646
+56555,24868,78141,30442,77757,80026,79396
+56556,58959,67324,48213,35341,20782,15850,9173,15813
+56557,62436,53401,23974
+56558,21927,5122,5779,42757,74400,31905,20484,43935
+56559,68793,31725,34170,63432,61707
+56560,64806,9506,60938
+56561,29069,55946,69066,48974,54001,60797,31576
+56562,61086,36267,72544,14742,58526
+56563,33343,18578
+56564,21601,35029
+56565,13698,79633
+56566,9374
+56567,72343,32932
+56568,71372,4234,29941,59828,5485,40574,46613
+56569,9820
+56570,6715
+56571,36944,72545
+56572,50379,66589,29172,31388,45084
+56573,74337
+56574,45787,6654,70598
+56575,33067,49558,4803,54394,79833
+56576,53492
+56577,72031,38465,64950
+56578,11489,30199,7703,5086,18136,49610
+56579,23003
+56580,40940,41432,28829,28108,72667
+56581,27452
+56582,3790,11233,2534,78583,33476,44871
+56583,28960
+56584,47321,33217,35387,51612,50877
+56585,12802,12011,48067,45954
+56586,75319,76080,50413
+56587,55004,82173,23847,43682,80759
+56588,68370,16603,78649
+56589,68599
+56590,48047,68536,17171,65792
+56591,32109,40244,78194,57832,5125
+56592,34775
+56593,5466,13737,69607,51258
+56594,70988,58362,73904,63181,32535
+56595,32063,20190,61407
+56596,79669,28265,39514,77973,60471
+56597,69826,49641,37628,40446
+56598,9383,23769,15214,79833,51959,35009,7868
+56599,59301,7481,4997,18203
+56600,14064,37570,43494,5019,35736,54518
+56601,69086,78591,62997,11927
+56602,42451,32332
+56603,79871,24484,38338,16267,36418,42020,8950
+56604,56801
+56605,73903,54458
+56606,13142,28207,76128,16671,17607,69144,77338,54928
+56607,81346,26341,72882,20420
+56608,73537,476,30415,21523,26019,41922,52012,53196
+56609,32701
+56610,22316,76248,39119
+56611,81852,51679,11222,77425
+56612,53275,22128
+56613,81608,22768,62813,17963,6597
+56614,53599
+56615,81693,46845,45920,18507,74606,2064,19191
+56616,16585
+56617,30172,76569,17916,8967,61570
+56618,72632
+56619,15138,65027,73034,70316,5644,50919,68697,29246
+56620,12686,19327,42377
+56621,11652,46838,80409
+56622,441,71201
+56623,20383,79321,34268
+56624,62492,15946,17812,32736,65617,50305
+56625,5494,13816,5435,4131,328
+56626,71118,81857
+56627,51675,61106
+56628,44324
+56629,49599,3482
+56630,8445,32963
+56631,16903,61621,23017
+56632,49662,27680,45539
+56633,5394,75578
+56634,48632,79018
+56635,38975
+56636,56592,30410,77749,74277
+56637,12785,34423
+56638,75148,38151
+56639,72681,76926,40803
+56640,25386,50921
+56641,41403,35470,24912
+56642,52052,60287,22776,39007
+56643,65599,15432,1043,47205
+56644,10309
+56645,27587,34367
+56646,44666,57373,66472,50497,63264
+56647,32478,49807,1976
+56648,56581,76868,59601,10080,35638
+56649,53910
+56650,1647
+56651,78427
+56652,71965
+56653,7947,48431,62973,60247,52295,71295,73100
+56654,15722,67224,20517
+56655,24610,22044,27322,33166,55966,79426,44307,71932
+56656,57506,74273,27804,6717,34629
+56657,28854,72744,49618,1828
+56658,38243,56600,29078
+56659,6640,35549,70547,12075,68679
+56660,10416,14232,13924
+56661,65853,31778,2113,4398,72580,58304,66341,653,35167,66502
+56662,21575
+56663,60440,50517,5782,66782
+56664,75451,27377,7779,59257
+56665,43216,67776
+56666,22047,23129,20881,26427
+56667,36186,1453,40328
+56668,81371
+56669,7871,41570,65840
+56670,22903,80007,15413,13758,22431,49467,66008,63415,13261,36215,81200
+56671,20265
+56672,21897,51002,11617
+56673,67099,37903,65715,70884,26903,25636
+56674,15385,652,36647,37238,39291,12871
+56675,48213,69444,7588,52263
+56676,30555,67738,61025,26856,6891,13585,81106
+56677,52868,56246,23983,26319,3690,61200,70195
+56678,36508,54326,31951
+56679,27940,35086,70630,14155
+56680,79738,4190,12986
+56681,47172,29418,53981,75919
+56682,9446,70103,55009,68417,12698,18976,1305,33032
+56683,43015,65319,30147,19816
+56684,4666,43276,72850,26452,58066,70680
+56685,16779
+56686,5914,56891,23670,8225,48311,69747
+56687,2857,47545,274,41455,65356
+56688,79710,52783,16319,21392,25390
+56689,38597,28595,28266,11202
+56690,39761,30699
+56691,35310,21282,51784,74789,78364,75983,39059,29832,4626,68499,45152,33896
+56692,16572,13074,3586,64775,59680,60530,79787,38368,1293
+56693,49093,54807,52210,43160
+56694,71271
+56695,33183,12029,71264,51827
+56696,53405,21348,57089,31296
+56697,36325
+56698,54338,25546,4563
+56699,57958,3174
+56700,19622,649,61524,33918,48230,81959,78568
+56701,50871
+56702,29849,743,2487
+56703,50181,28288,26792
+56704,14871,53008,60754,9390
+56705,62354,79092,66329
+56706,30943,81678,67645
+56707,71607,28112,66480,53629
+56708,58431,75869,18567
+56709,8762,5317
+56710,12573,60273,78490,18024,76668,2419,34534,76521
+56711,54578,9829,44813
+56712,47131
+56713,72435,59179,10659,65870
+56714,26338,54391,48001,15888
+56715,23831,30365,63551,81519,64781
+56716,47328,7135,37702,4376,62164,11968
+56717,66041,76945,76646,60119
+56718,76224,55371,10782,74161,8399,81574
+56719,6887,15677
+56720,65349,50999,50823,65624
+56721,33684,32967,6380
+56722,52967
+56723,10836,33695,22161,17002
+56724,73063,20081,76206,46491,11684
+56725,71714
+56726,68637,12716,50433,40599
+56727,55933,81491,51280
+56728,19105
+56729,42983,55000
+56730,44349,80871,53557
+56731,80048
+56732,16286,42172,39908
+56733,66215,20965,31852
+56734,42313,35695,16397,33225,26749,64847,60251
+56735,50307,60440,18939,32891,58462,37098
+56736,43001,69268,80214
+56737,74432,37945,31418,33638,27471
+56738,53777,77143
+56739,48121,1216,33983,76380,45031,59717,67984,57019,61885,14108
+56740,50402,16560,24419,59678,67396,77723
+56741,56281,9824
+56742,24513,76037
+56743,28226,65296
+56744,13683,48116,69807,52246,38599
+56745,43417,23412
+56746,51127,9798,8790,81162,58181
+56747,80214
+56748,77774
+56749,62454,52955,42860,79308,76134,17147
+56750,26220
+56751,61236,18427,46500,6473,79467,60956
+56752,29379,35495,39921,48557
+56753,32165,5704
+56754,24832
+56755,29126,37901
+56756,27259,44674,62697,37930
+56757,26163,67201,64025,70547
+56758,18745,3339,23926,23128,81430
+56759,15380
+56760,65338,52660
+56761,79941,4513,49020
+56762,62301
+56763,59143,8986,1840,40018,35167
+56764,50670,74670,15669,30691
+56765,59763,19963,37988
+56766,49376,73391
+56767,14099,22410,20458
+56768,48245,75684,4504,48524,35090,49035
+56769,17267,39335,76521,41265,4641,68879,7095
+56770,76894
+56771,78090,6913,4185,49034
+56772,71271
+56773,27493,1068,47320,70145,67157,1987,30308,54328
+56774,20711,22054,37377
+56775,71698,36008,38711,77892,73320,74100
+56776,72712,76964
+56777,2227,33436
+56778,78335,52435,70350,55200
+56779,19683,81085
+56780,51393,81583,41472
+56781,49799
+56782,66472,64694,80313
+56783,45334,9329,18210,34785,1637,42631,32519,23474
+56784,62541,5004
+56785,14247,59966,24301,41694,77082,2739,57166,41496,10025,18519,70555,1480
+56786,64794,3933,56033,80833,31256
+56787,22060,56563,43424,43197,36911
+56788,81149,56542,55993
+56789,66707,9390,36796,17075
+56790,72101,18758,63275
+56791,22293,56460,14529,60198
+56792,10321,18130,35819,61779,9083
+56793,8463,25717,32802,82091
+56794,19522
+56795,40068,24366,51473
+56796,3322,46885
+56797,74000,37771,17759,41339,65102,16422,59337,15764
+56798,10961,46494,39897,28480
+56799,43804,46356,20783,47275,12270,28050
+56800,25647,60604,33677,7305,71165,5011,76089
+56801,25128,79149,17295
+56802,9970,65436,36929,27090
+56803,323,68956,21467
+56804,40618,23353,59010,14652
+56805,69454,21472,300,19637
+56806,3708,1126,60781,11556,36403
+56807,14557,17027
+56808,42838,39179
+56809,56265,13989,6030,79941,70465,65480,54063,71831
+56810,56644,14720,80144
+56811,40145,19257
+56812,71933
+56813,50486,6998
+56814,1116,80700,63711
+56815,63584,69486,6919,2123
+56816,21628,41108
+56817,65353
+56818,63844
+56819,68584,49036,24486,16839,25766
+56820,8044,31202,13889,20868,48280,68842,49344,9306
+56821,71655,64486
+56822,14933
+56823,52040,39780,211,39728,16116,821,81300,43057,4905,41353
+56824,56037,76632
+56825,41970,20648,39221
+56826,21298,29527,31344,32105
+56827,5144,21417,58535
+56828,72705,17468
+56829,46678,24583,55950,58873,62526,41274,27222,54404
+56830,39587,35029
+56831,28071,80552,12902,8900
+56832,52350,20485,43951,16991,70303,64016,17534,55526
+56833,19176,38187,75404
+56834,6781
+56835,55301
+56836,47403,28364,67942,13511,12585
+56837,13141,31034,45896
+56838,49772,11354,73384,79310
+56839,52633
+56840,79714
+56841,61012,21340,59277,61631,47608,43809
+56842,14255
+56843,22562,13007,2633,22538,16891
+56844,74394,2490,22551,1967
+56845,31424,32680,81779
+56846,58501,29935
+56847,40567,36777,65937,40663
+56848,20324,66979,70620,57668,69794,11642
+56849,69013,48370
+56850,35917,34119,26411,57625,18702,45741,63038
+56851,72304
+56852,34212,12191,16810,26413,2111,80257
+56853,42088
+56854,26812
+56855,46579,26673,19389,6204
+56856,81091,13347,31585
+56857,32512,11655,51796,44269,42261
+56858,67089,60051,69709,56090,63646,34005,55956,62174,49394
+56859,74921,70041,48201
+56860,72338,29210
+56861,13526
+56862,14625,38761,74419
+56863,14933,23656,13898
+56864,31521,31743
+56865,75941,47023,61811,49093
+56866,1080,26948
+56867,41970,44505
+56868,38909,57826,11499,71297,38924
+56869,67670
+56870,76292,58105,58795,79350,61425,24485
+56871,69202,17436,52531,73427,50001,44450
+56872,42982,6777,20559,50340,71932
+56873,67977,10776
+56874,65298
+56875,74477,60936,78507,60873,54001
+56876,6169,30303,24064,77982,5328,24677,55789,49092
+56877,2753
+56878,1030,74457
+56879,44450,69115,10484,25693
+56880,19914,72306,41952
+56881,64074,11860,77916,42157,42328
+56882,15566,9761,80153,39953
+56883,61694,20896,72079,13454,64861,48708
+56884,7615,50484
+56885,25129,72458,75104,17206,58503,78806
+56886,47797,51565
+56887,57105,69370,10332,80876
+56888,62251
+56889,1862,71905,19396,57472,3381,26113
+56890,4677,16811,71675
+56891,34720,60826,45473,66277,30251
+56892,79763,76000,67299
+56893,10384,61433,52944,2991
+56894,11362,11472,19973,18708,46022,26587,51249
+56895,11931,70293,28432,14250,38192,69070,6116,6369,47950,68481
+56896,78821,15049,29425,12527,2711
+56897,51598,61052,82055,49891,61871
+56898,33855,17091,62293,67706
+56899,28628
+56900,73332,70355,10297,18035
+56901,55026,19701,37360
+56902,78668,22084,43053,52491,256
+56903,11212,42706,27908,76813,67614
+56904,24272,79395,1453,26618,43920
+56905,22818,23978,56459,63076,5666,52280
+56906,63302,13012,30960,50899,58929
+56907,4633,40243
+56908,9295,73634,39193,61587,77856,68587
+56909,43742,46166,43341
+56910,58094,48023,28680,13073
+56911,52255,18826,598
+56912,36118,21502,16906,56796,1485,46095,71643,5925
+56913,40222,47870,43714,67577,29915,31984
+56914,11317,20464,47219,43629,1131,4339,2096
+56915,68032
+56916,9741,81777
+56917,69626,8734
+56918,75587,53019,37636,63883
+56919,69748,66594,37179,67405,43387,57434,15413,58600
+56920,5340,16250,41894,5074,12811
+56921,37104,401
+56922,21936,79238,64786,68669
+56923,27094,51071,18389,472,66102,24373,76310,13151
+56924,35669,50084
+56925,47722,16792
+56926,15209,24740,8952,23370
+56927,31197,38591
+56928,35623,22300,9051,43852
+56929,57300
+56930,52699
+56931,50505,79334,8735,14547,10933,37584,57803,75229,59735,61695,33431,54320
+56932,28597,70057,29810,72056,72848
+56933,1490,53904,51450,18223,29890
+56934,29675,73904
+56935,68811,58611,72026,25308,23521
+56936,20311
+56937,23402,28514
+56938,16122,79560,8769,80940,73274,73165
+56939,22708,76563,9413,60413
+56940,70686,2464,62679
+56941,54730,78516
+56942,37822,80637,66765,24745,3554
+56943,57636
+56944,56276,38832,28634
+56945,51675,16123
+56946,81360,36718,63347
+56947,53504
+56948,53485,46931,56255,69486
+56949,13998
+56950,50965,80524,27059,79873,63973,34917,31651,15496
+56951,68575,36669,76015
+56952,52919
+56953,10821,9511
+56954,64527,53457,40594,69553,50714
+56955,75759,499,44171,49757,16331,59515,28441,73283
+56956,55001,23187,79492,79941,66510,9594
+56957,73455,2296
+56958,36213,67480,43000,35863
+56959,7357,66228,23646
+56960,19248
+56961,67784,19830,40083
+56962,12435
+56963,75578,57224
+56964,1584,78786,58996
+56965,37144,52883,51460,18933,13244,30762,36006,43038,48280
+56966,61726,34698,35931,7996,32317,14419,5699,79481,30618
+56967,10386,45762,50630,61620
+56968,52267
+56969,22678,81920,48973,75628,49245,47448,79006
+56970,68272,13587
+56971,16518,15913,65164,23129
+56972,5340,35071
+56973,29131,34853,5267,37766
+56974,44551,68797,55183,44428,76446,66909,28693,31410
+56975,14453,7385
+56976,1939,71751,13566,74050,43431
+56977,12330,13278,9196
+56978,5578,18149,65195,73193,16673,25175,20732
+56979,21038
+56980,72942,35653,22562,61884
+56981,78494,29041,47637,11709,65846,51689
+56982,20386,24289,46114,54471,65319
+56983,19584,17834,68173,68065
+56984,3356
+56985,61444,11826,37175,63238,51887,70827,52158,52093
+56986,47255,2796,68478,4071,57689
+56987,4522,14167,60747
+56988,206,74043,77935,14844
+56989,13529,43072
+56990,8269,34922,59182,57208
+56991,51645,62306,45822,16215,26436
+56992,50408
+56993,14008,41211,38991,23195
+56994,65664,1836,71770,59436,29483,54683
+56995,37294,78578,72145,48890,71141,25262,56226
+56996,10243
+56997,1325,35279,18767,80583,75971,43747,7697
+56998,48559,8388,19781,18069
+56999,79996,59978,15098,75695,68594,47908,48080
+57000,8562,60869
+57001,23646,35526
+57002,81049,4923
+57003,40391,79899
+57004,66713,36931,22632,76727,27411,28786
+57005,41692,18068,19665,34197,31840,79602,873
+57006,12430,46000,20922,34704,7470,17095,79553
+57007,59516
+57008,41741
+57009,11390,20099,71294,75503,47132
+57010,60656,8464
+57011,14066,80594
+57012,45620,60070,17803,31665,23923
+57013,81156,4450,10965
+57014,29143,61662,30106,5104,15814,30919,4443,1877
+57015,70288,23,56259,82113,58666,21973,35026,41543,832,3876
+57016,51451,6592,27505,13692,8333,24827,50476
+57017,65265,56896,73731
+57018,48462,37383,38977
+57019,37960,51598
+57020,52861,60413,12278,13593,35804
+57021,34117,48227,81861
+57022,3031,59803
+57023,24495,8717
+57024,35096,63572,80274
+57025,70739
+57026,5058,54521
+57027,25518,14165,41898,74961
+57028,11712,57286
+57029,38523,20245,11514
+57030,1352
+57031,20255,4746,50822,36061
+57032,44559,50959,67127,35166
+57033,53561,18561,81054,20133,62730,46503
+57034,21264,14168
+57035,26622,67166,79630,46650,64820
+57036,3579,42047
+57037,66215,21179,23763,22013,44580
+57038,13043
+57039,26464,28309,13966,44673
+57040,19327,42116
+57041,50519
+57042,71929,25151,29596,5331
+57043,41608
+57044,64791,3125,60052,9476
+57045,29781
+57046,24789,12925,75398
+57047,56822,70985,7879,7819,14958,31617,71452
+57048,41883,51306,53690,73088,10565,16480
+57049,63961,53009,6915,62425,33512,28403
+57050,5123,65205
+57051,21169,40780,46743,8834
+57052,40384,61900
+57053,80101,58459,15693,6448
+57054,56762,69920
+57055,56204,37165,78146
+57056,54534,48527,53716,32026
+57057,54542,12594,79254,72484,75798
+57058,51208,81220,67097
+57059,62177,16860,12785,3106
+57060,57136,304,27721,12661
+57061,16983,81520,61168
+57062,38753,78495
+57063,62551
+57064,19913,21576,71277,46308,14983,30260,3637
+57065,47121,1935
+57066,29500
+57067,46341,12954,21398,38607,46702,47388
+57068,13725,26740,73402
+57069,74912,28711,26843,17060
+57070,12603
+57071,16668
+57072,51454,71890,9487,44353,7441
+57073,65044,73736,18376,75269
+57074,60957,65775,11112,36706
+57075,79164,10279,57594,974
+57076,67382
+57077,66907,30296,64439,19566,40397
+57078,59445
+57079,52520
+57080,72379,1618,21798,23850,53712,28357
+57081,33888
+57082,61687
+57083,32444
+57084,41497
+57085,21398,4776,2209,2495,38,14343,76408
+57086,77299,7590,50192
+57087,71946,3296
+57088,54825,31311,20155,70441,29361,39872,16263
+57089,77950,8132,61332
+57090,53036
+57091,51894,62621,30598
+57092,22499,60296
+57093,31409,48123,33194,19827
+57094,66743,21169,40952,57963,74310,70355,38004
+57095,3717,52418,60871,3848,32210,54981,73569
+57096,80415,12085
+57097,61273,34983,57069
+57098,16292,33766
+57099,5344,21011,13671,3313
+57100,59179
+57101,27955,78330,65815,4509,53111
+57102,15759,22146,47860,79766,58223
+57103,53700,45338,65321,39528
+57104,22447,5168,23956
+57105,79961
+57106,50610,67694
+57107,48278,79928
+57108,1203,4364,14497,42926,35801,38779,38752,36016
+57109,49044,58567
+57110,40213,25693,24272
+57111,56744,79325,47272,9733,23288
+57112,36351
+57113,74479,3671
+57114,36915
+57115,855,41290
+57116,13380,69439,22739,40341,5497,33288
+57117,35164,37933,44513,837,8944,61785,8560
+57118,1894
+57119,64663,69815,17460,66424
+57120,25368,26276,9553,74906
+57121,28149,24591
+57122,77989
+57123,7856,7611,59763,13217
+57124,43996,59368,53932,33023,66943
+57125,11280
+57126,31925,59322,13076,1907,61949,40732,40786
+57127,48292,35163
+57128,19360
+57129,21675,15860,82122
+57130,55878
+57131,24622,52485,30430,61020
+57132,25860
+57133,48771,81742,4764,38364,31900,2906,23536,70535
+57134,68190,61124,51900
+57135,49746,57821,22639,65844
+57136,39278,13587
+57137,50685,78504,66604,24441,39407
+57138,2629
+57139,43374,31831,6538
+57140,53755,67325,41862,27565,56687,75778
+57141,15247,13089,73772
+57142,16564,73482,6500,34737,72821
+57143,9397,21189,634
+57144,22967
+57145,185,59806
+57146,11541
+57147,17060
+57148,22751,54692,705,15801,17124
+57149,22828,22243,24957,22629
+57150,32349,41380,28207,16027
+57151,78050,79155,31123,44108,63000,4835,46422,32058,82119
+57152,44250,11509,62498,24039,45454
+57153,4165,12149
+57154,24144,78154,12861,59133,20392
+57155,77410,58929
+57156,32492
+57157,36509,28850
+57158,50244,3239,48386,39273
+57159,1712
+57160,31252
+57161,35685,30601,76877,55059
+57162,59741,63000,34656,16951,42476,80447
+57163,65153,30146,5910,15443,53209,43111,13781,79381,13631,6407
+57164,14404
+57165,81576,43592,23206,2843
+57166,75797,58372,35705,27910,43358,28561,81001
+57167,53945,47656
+57168,44474
+57169,58254,37918,8252,36389,31594,14293
+57170,81562,52217
+57171,74715,52233,21236,28591,64956,39593
+57172,78302,54619,64478,72169,30994,79135
+57173,80318,23314,20967
+57174,73674,10427,47053,29969,11677
+57175,62597
+57176,80864,23104,23081
+57177,62274,48821,613,48582
+57178,59530,63982,34158,75396
+57179,72005,59272,10215,55348
+57180,45716,37258,27646,40509,3245,27584,41181,30685,79659,41608
+57181,5916,8353,66935,19547,51607
+57182,58918,62029,70092
+57183,70681,3040,8769
+57184,7231
+57185,11514,49532,50687,29652,31591
+57186,73965,29448,6607,68190,71446
+57187,75979,5905,25613,53387,68504,9366,77052,23190,69266,28844
+57188,77500,51603,78262
+57189,52091,25708,69446,674,13735,1608,39761,40619
+57190,75480,7707,38522,338,54090
+57191,23036,47019,80671,27241,67621,7441,19803
+57192,62629,1424,73223
+57193,25399,61203,32402,326
+57194,82112,74019,74640
+57195,58887,74082,63823,73166
+57196,69251
+57197,7367,27447,81379,24640
+57198,76506,62831
+57199,2093
+57200,13579,29880,17738,25914,47352,61209,60366
+57201,77988
+57202,27973,8085,58295,35009
+57203,66027
+57204,65110,39699
+57205,13601
+57206,40340,49069
+57207,39254,18014,7626,55150,77323,71722,5792
+57208,59446,53878,20290
+57209,35338,78392
+57210,3990,17322,81235
+57211,18640,22361,52834,58672,6534,76042
+57212,18150,18465,43453
+57213,76189,45359
+57214,36848,60779,13866,19733,81435
+57215,27697,44644,4954
+57216,52092
+57217,70247
+57218,55500,73225,77596,40853
+57219,14738
+57220,5352,63554
+57221,38855,15754,33491,76311
+57222,61053
+57223,39154,38842,51228,26307
+57224,32053
+57225,61041,11442
+57226,49943,16961
+57227,60413
+57228,52414
+57229,19072
+57230,4834
+57231,71615,53432,45437,47931,65914,65000
+57232,29163,77973,45975
+57233,58822,14607
+57234,48914,65987,7691
+57235,71593,25549,24909,49784,48142
+57236,28527,42888
+57237,40242,60890,55329
+57238,77038,43718,33099,38353,29337,15048
+57239,9202,65504,39110
+57240,32260,45520,14354,77991,79640,31823,62168,55708
+57241,56348,70443,29045
+57242,1079,77665,38304,8254,30367
+57243,21113,26587
+57244,74867,64387
+57245,14585
+57246,29938,11850,76704,76508,46011
+57247,8841,47231,4555,26621,25694,57130
+57248,10236
+57249,56639,67041,18850
+57250,66558,49167
+57251,70508,22360,40647,11681,53399,51692,32484,77148,68713,27571,26239
+57252,58798,74103,61650,23734,44693,3374,20388,16866
+57253,33665,74321,74833
+57254,59997,77954,74706,52197
+57255,72993,58645,70854
+57256,51476
+57257,14381,60189,20255
+57258,78508,48364,34720
+57259,41722,60910,80267,43898
+57260,13458,80961,76727,19406,555
+57261,76918,34049
+57262,68212,16592,10225
+57263,15756,80677,28960,15182,25278
+57264,67829,75222,67986,26921
+57265,2492
+57266,499,8401,30796,56229,29642,15854,14206
+57267,51527,72414,80037,22806,50043,74002,12212,70631
+57268,75792,12793,32933,11964,64956,24479
+57269,43964,27516
+57270,8249
+57271,23863
+57272,80109
+57273,66766,14195
+57274,11731,82077,81883,70138
+57275,31290,28381,652
+57276,68361,13906,9792,78497,7660,4491,7992
+57277,26941,3420,80984,2232,28852
+57278,57361,75279,50806
+57279,69263,28200,76647
+57280,43567
+57281,68121
+57282,57703,33013
+57283,65802,11373
+57284,80940,36532,21259
+57285,48825,49396,42379,17223,33998
+57286,66397
+57287,41748,40771,64070,71123
+57288,46352,47058,12073,68882,29598
+57289,50254,77971,17890,32945,9226
+57290,24495,54773,45209,74227,6358,72519
+57291,16478
+57292,25979,40198,52928,63936,34151,44190
+57293,21171,38085,78512
+57294,27226
+57295,13380,28106,6105,31698
+57296,27450,10908,23036,68629,76229,9043,13716,60916,37942
+57297,55620,56924,59065,5044,14918,45294,6977,17583,50297,22679,61847
+57298,37299,29648,10024,9147,34815
+57299,2786,22163,66033,66962,14714,35537
+57300,50860,19231
+57301,19006,58424,54760,47454,21682,48740,8714
+57302,51264
+57303,24677
+57304,30872,52469,28562
+57305,18974
+57306,65914,8428,28691,33723
+57307,4550,9317,3692,65147,31189,59628,65253,21932
+57308,68856,32602,44003
+57309,12747
+57310,24379,3420
+57311,71755,52253,79947,68340,19818,74251,53215,29107,1511,60843,57640
+57312,9194,12176
+57313,31612,57574,14935,26365,56807
+57314,13672,22621,9772,24456
+57315,50935,72039,70737,25812
+57316,1770,14592
+57317,55978,27539,70710,44749,32986,62681,71196
+57318,78596,80101,37732,59850,61417
+57319,15289,17406,58843,26978
+57320,29692,33731,38182,5470
+57321,71161,26020,46219
+57322,25206,69772
+57323,11418,29642,17802,6894
+57324,76834,3548,30133
+57325,22945,54763,74661,49460,16145
+57326,62964,1486,56259,37186,19934,80412
+57327,46134,30253,27142,22812,49323,63227
+57328,34635
+57329,30555,44162,49707,59193,33588,38159,25865
+57330,34000,54763,70911
+57331,3399,46277,19349
+57332,62850,13771,65090
+57333,49002,36355,19740,4557,25950,8841,62767,80561,34761
+57334,15185,56635,64215,33468,77998,56627,49007
+57335,6966,20742,15925,41290,42836,32139,54865
+57336,44939,7974,8677,6950
+57337,52382,24246,64833,73671,3535
+57338,23004,2352,51942,15681,14667
+57339,10598,61113,49292
+57340,5429,15609,58924,72229,81211,23093,10100
+57341,31614,48652,70150,21353,39750,7653
+57342,14942,46821,13819,50484
+57343,35380,58349,57328,29638
+57344,27124,18,18801,22656,40529,16035,42820
+57345,41853
+57346,46637
+57347,76543,53593,68216,57152,70888
+57348,67153,59340,74956,71139,6078
+57349,77361,52942,40311,69216,66668,66795
+57350,72435,14409,7437,46334,72429
+57351,44724,68994,51846,66225,33038
+57352,889
+57353,77581,31873,34073
+57354,27718,56317,20250,37239,33572
+57355,47171,69964,74749,50624,53622
+57356,27896,68032,9166
+57357,8510,45779,17893,46440,50748,15429
+57358,30206
+57359,20490,65504,28200,60348
+57360,25666,4699,51085,82063
+57361,77995
+57362,29881,36826,22314,32285
+57363,5533,27676,62916,27245,38863,19637
+57364,81834,74012
+57365,6930
+57366,73291,72996
+57367,27452,11468,81164
+57368,20007,42272,69220,64419
+57369,49797,67832,10503,76432,72970,17187
+57370,53559,79576,9854,16231,13649,48256
+57371,41002,75383,76009,27695,13672,16740,34263,7173,34483
+57372,72704,49964,43622,50690
+57373,8152
+57374,45318,29980,69238
+57375,71001,42380,48789,22991
+57376,29118,50234,29957,68024
+57377,5171
+57378,51456
+57379,69251,33167,65813,13411,49423,13896
+57380,49345
+57381,10041,8671,76569,54381,10251,11414,18371,53149
+57382,43536,25723,17765,39544,72133,6891,23303
+57383,68051,21441,49622,22274,63647,53283,24718,70211,19482
+57384,39479,66257,16165,16987,28670,70909
+57385,59197,38182,51363,46785,620,70315
+57386,67720,59418,19981
+57387,15888,24875,26598
+57388,7217,23646
+57389,65293,51357,80732,24045,18712
+57390,26443,50747,42537,67484,75104,28645
+57391,45959,20588
+57392,60714,14791,76959
+57393,37695,63416,15332,45939,18232,65455,53404,30191
+57394,52800,75294,73031
+57395,20516,12577,3048,48730,73671
+57396,54803,3445,37630,28894
+57397,79559,21978
+57398,70306,11860
+57399,74412,50579,51205,53780,54956,37849
+57400,20921,40822,70992
+57401,5521
+57402,64645,51326
+57403,10909,20258,4399,79068,9815
+57404,66020,21253,31514,28097,26572
+57405,62704,8859
+57406,28284,68074,17229,19656,34170
+57407,55170,12051,41504,21066,45430
+57408,41859
+57409,59626,62539,80860
+57410,34212
+57411,26557,50764,19242,61223
+57412,63317,23847,72209
+57413,53511
+57414,22494,12803,60873,51486
+57415,79732,22531,40590,6115,56391,60513,37082,60420,44882,30444
+57416,23082,8661,66616,51633
+57417,13546,12016,50642,26811,39920,2849
+57418,7551,65480
+57419,11454,30907,6514
+57420,24176,61960,31527
+57421,54503,6151,5380
+57422,57050,59755
+57423,64601,50290,3943,46239,68938,17998
+57424,17319,23344
+57425,15894
+57426,16810,21573,29357
+57427,756,30306
+57428,58217,12561
+57429,51215
+57430,44012,53629,29776,6550,52052,69179,44499
+57431,26024
+57432,41891,4443,37408,6255
+57433,68856,77316
+57434,60532,31671
+57435,28872,24981,10788,45696
+57436,2548,9247,25215,80293,71811,30493,73092,24137
+57437,78021
+57438,11057
+57439,28549,80317,75735,16609,15695
+57440,4376
+57441,24075
+57442,66195,31801
+57443,1622,7600,68340,11486,50354,30678,23083
+57444,21167
+57445,11547,28325,61451,39394,56843,8411,6332
+57446,53294,14534
+57447,64862
+57448,9670,43748
+57449,9941
+57450,4625,21903,57309,7266
+57451,74937,21876,35382,40180,26694,31734,45690,20579
+57452,58780,33925,70304,34832,30356,27545,22786,40946,44238,2813
+57453,2841
+57454,37066,67803,25064,36457
+57455,71332,76526,49951,31344,31564
+57456,65596,9543
+57457,51344,59254,54850,12934
+57458,45252,38065,42804
+57459,56705,19243
+57460,71136,35390,57970,23420,22062,31122,62809,4754,43083,42760,69052
+57461,32058,10250,14650,71608,41515,34622,40994,52727
+57462,57717,37763,48558,26395,57726
+57463,63171,47195,70459
+57464,40759,53841,31471,44382,55501,36768
+57465,25975,26050
+57466,61471,41761
+57467,72766,61724,8192
+57468,4767,18583,1746
+57469,13112
+57470,43776,3813
+57471,24583
+57472,14935,36974
+57473,34438,41186,77150
+57474,48515
+57475,70964,27363,69042
+57476,6333
+57477,75482,69707,7565,69801,21500,827,44845
+57478,18279,743
+57479,42522,66020,18721,43659,18818,61419,80235,4963
+57480,74783,75801,75261,61029
+57481,45101,26993,14983,2268
+57482,43880,52449
+57483,81558,20469,28349,49543
+57484,3021,19616,55520
+57485,37067,77792,33682
+57486,11214,49526
+57487,59036,3814,15621,40340,12643
+57488,19763
+57489,67750,57798,70454,20200,57554
+57490,55234,53815,74712,6999,8220,20430
+57491,20440,24120
+57492,57478,69680,71639,20689
+57493,38077,24252,38595,12431,8637,61962,48221,51570,35491,45624
+57494,59646,20302,23773
+57495,22828
+57496,25163,53056,48020,51848,53455,80964
+57497,37369
+57498,72942,7619,12342,53915
+57499,10776,26404,59629,41240,48044,30951,50473
+57500,45573
+57501,57043,32140
+57502,65565,57544,49773,2728,8104,78330,24799
+57503,46896,27571,9785
+57504,15163,62721,32712,77861,4109,36879
+57505,68841,4389,1041,56515,39692,34973,29224,26704,11579,78143
+57506,12674,9745,44154,58916,19833,16376,13872
+57507,43323
+57508,15064,51878,49711,63523,68264,62038,81860
+57509,49264,66360,22374,62438,47590
+57510,36091,75204,25542,27269
+57511,24392
+57512,38740
+57513,32288
+57514,12105
+57515,49366
+57516,2021,13548,76260,51126
+57517,36164,58528,54517
+57518,30956,39919,63896,38557,30725,12470
+57519,23511,43510
+57520,5886,234,13288,75015,43215,34297,74410
+57521,49118
+57522,35231
+57523,23702,3470,67961,13486,52966,47545,17238,671,50444,65834
+57524,43900
+57525,30857,26130
+57526,78938,36787,14005
+57527,47653,11609,24550
+57528,27296
+57529,67318,725
+57530,45311
+57531,14,71254,61352,10107,56945
+57532,13781,18993,18012,54695,4091,36531,79577,78628,40195,21272
+57533,45311,67521,17524
+57534,328,79420
+57535,37095
+57536,34462,78084,69681,11162,30295
+57537,68037,28429
+57538,24430
+57539,70016,42495,72525,60991
+57540,30739,71073,11094,28433
+57541,39307,67834
+57542,632,60741,42061
+57543,68802
+57544,60331,15374,43013
+57545,31242,45005,62869
+57546,77390,122,45362,69657,41071,18310,74879,15944
+57547,9234,41057,55741,46132,29275,58635
+57548,40764,45337,19272,41055,34865
+57549,11816,41885,3460,69201,80031,29828
+57550,9959,39358,13529,57312,59869,69490
+57551,66483,43350,42667,69138,56566,43808
+57552,54452,25680,16375
+57553,58743
+57554,73859,63493,45313
+57555,56925,62260,16176,75716,30005,8663,73587
+57556,4412,3915,72509
+57557,32463
+57558,57090
+57559,31141,67678
+57560,6056,16018,45250,46821
+57561,62730,36971
+57562,55852,74772,79884,55112,29484,9122
+57563,29982
+57564,75314,25623,15630,76870,9376,64394
+57565,36365,51614
+57566,24785,43365
+57567,5367,47171,63685,61792,48836,69502,33655,31453,45132
+57568,18626,48003,33515
+57569,52993,17752,63907,73485,49791,19505
+57570,25022,48990,38451,10769,59295,65017
+57571,11283,77084,47181,34428,72199,32144
+57572,61124,60829,69090,4998,619,40511,81194
+57573,18648
+57574,64613,27104,14743,37959
+57575,71413,68035,15618,61866,56572,36061,38865,24514,22637,42816,39771
+57576,18481,37982,62011,49112,43801,55814
+57577,72926,50588
+57578,25598,31270,1725
+57579,31762,4715,20699,21809
+57580,51769,69510,48131,30515,27708,56325,50931
+57581,2462,56676,62468,70921
+57582,49002,59408
+57583,56255
+57584,21964,52218,80368,36576,54030,71864,26079
+57585,47922,41512,69325,75165
+57586,22309,35601,70104,64535,64651
+57587,63139
+57588,24083,37389,13613,5120,981,31725,21486
+57589,19984,30224
+57590,76220,11915,23432,621,15031
+57591,77771,34978,53536
+57592,73278
+57593,80231,68535,58491,1292,8915,73835
+57594,48327,29810
+57595,11916,54541
+57596,59628,45396,1958,72668
+57597,36013,24480
+57598,11574
+57599,72850,55408,78326,21768
+57600,81282,67896,73180
+57601,61903
+57602,11757,1024,15114,9948
+57603,34695
+57604,49254
+57605,3466,76541,2498,17524,66723,36933,37984
+57606,78998,64512
+57607,21828,69992,58454,21516,41947,34616
+57608,59305,73289
+57609,61743,79582,68269,60430,52420,51249
+57610,18050,7159,31549,70701
+57611,76371,72337,43198,39855,54664,23563
+57612,940,46334,54528,43511
+57613,17796,65414
+57614,7504,22676,64731,76767,81779,31770
+57615,55737
+57616,2836,34467
+57617,21913,6874
+57618,29064,45685,15705,66299,49842
+57619,51880,62297,24738
+57620,29372,47150,21428,38085,49867,12735
+57621,26640,24281
+57622,37033,49193,79032
+57623,59804
+57624,67728,43799,35070
+57625,78391
+57626,31749,57771
+57627,38979,61884,35071
+57628,73268,46752,66752,79309,73325,68181,48890
+57629,69588,61285,15744,10979,45789,74995,49680,81001
+57630,47107,1596
+57631,72942,46200
+57632,11037,19226,49761,44993,19346,24095
+57633,58618,54426
+57634,64132,32081,77921,2807,55367,68076,57881
+57635,43667,20088,53161,50848,1563
+57636,79847
+57637,3185,41184,17361
+57638,3782,31245,68962,48853
+57639,65630,9991
+57640,57100
+57641,7146,68627,65788
+57642,52660
+57643,13029,56618,46534
+57644,16201,64323,79946,56910,52872,28591
+57645,43232,6215,74810,7825,34130
+57646,42644,54146,26545,10133,48241
+57647,79903,22287
+57648,26422
+57649,56528,31708,12906,80105,3463
+57650,8802,57223,15077,2446
+57651,55320,38065,2817,8017,67332,33665,14851,34560
+57652,70565,6863
+57653,61186,40809,77462
+57654,73692
+57655,81040,65310
+57656,69860,1619,73428,25848
+57657,29707
+57658,36396,26556
+57659,13553,23462,39794,39393,22774
+57660,74528,54246,53175,52434
+57661,8499
+57662,74474,22001,5496,19414,14393
+57663,5688,55992,5486,56743
+57664,8530,10080,5883,40205,8357,43174,24826
+57665,72217,33336,53569,42555,206
+57666,25329
+57667,45942
+57668,60775
+57669,48279,47090
+57670,61392,18518
+57671,49839,71759
+57672,23407,67482,25133,34147,34050,1297,66672,36437
+57673,13692,77319
+57674,72434
+57675,13598
+57676,76727,77396,71087,29201
+57677,46885
+57678,70619,40519,34094,36687,54690,24424,2241,26281
+57679,58943,51379,78517,41022,52604,5285,48385,8787,40336
+57680,80401
+57681,1722,11978,4355,26865,81394,45529
+57682,51427,57791,28848,51880,40319,51363,72276
+57683,79039,15522
+57684,70976,26039,47624,48003
+57685,14887,61861,1351,54627,69827,64630
+57686,1819,34356,19390,39836,37684,47506
+57687,76375,26393,10502,74001,43444
+57688,45477,53485
+57689,45834,59842,68094,73028
+57690,1250,15103,26843,19407,7599,31353
+57691,44514,72177,13775,21626
+57692,5394,9854,57086
+57693,52020,2238,28448,27222
+57694,23742,13879,71065
+57695,11795,62437,18731,8876,10745
+57696,72727,80282,36915
+57697,76517
+57698,45964,54275
+57699,56697
+57700,54441
+57701,46759
+57702,27583,6733,962,30986,17128
+57703,4573
+57704,58421,73226
+57705,45215,48516,8012,68349,32829,33639,48202,76834
+57706,17108
+57707,49884,51882,79428,19152,10532
+57708,25202,41990,23102
+57709,17627
+57710,58303
+57711,68768,81780
+57712,65484
+57713,78141,42397,72063,64046,13848,80557
+57714,37675,9350,13280,70361
+57715,76897,66820,45065,50129,29287
+57716,56921,50225,72349
+57717,8755,25191,77710,79296,74210
+57718,73594,74976
+57719,51016,78189,38553,61867
+57720,73204,29801,35279,24101,58042
+57721,65617,55096,73930
+57722,33867,72820
+57723,58402,78943,54045
+57724,34729,79946,80179,47795
+57725,2934,52807,70598,36595,58939,69923,56304
+57726,6456,20691,72545,30567,23649,46974
+57727,23646,71268
+57728,63426,40285,56361
+57729,62231,11414
+57730,79149,81737,12987,34107
+57731,2443,60519
+57732,65352,31132,7574,29002,25442,11619,7228
+57733,65920,73689,46600,40900,50087,35278
+57734,15240,38599,66614
+57735,31805,9883
+57736,450,72380,66966
+57737,77551
+57738,53422,36029,63109,42274,14979,11548,17443
+57739,70279,69331,46004,34800,53187,22977
+57740,29878,42825,73530,80829
+57741,47302,29374
+57742,15392,30654,22123
+57743,77959,28620,74887,4502
+57744,554,33353,35880,53690,11684,67462
+57745,80048
+57746,2472,34781,52349
+57747,14481,55057,76149,56325
+57748,18391,42789
+57749,49880,25670,68903,73200
+57750,51765
+57751,4032,49013,51326
+57752,38092,17125,40704,31294,607,46704,64477
+57753,23956,32098,69915,35564,10392,54563,908
+57754,44238,76788,22031,18390
+57755,11584
+57756,51204,55281
+57757,40951,27862,79841,60281,56063
+57758,39385,27294
+57759,68840,71262
+57760,14369,38765
+57761,3673,761,23247,4908
+57762,76506,52003
+57763,62593
+57764,24672,67215,55141,60543,6023
+57765,11670,73901,28952
+57766,80889,75933,74835,56700,50410,12692,60366
+57767,71761,5921,53063
+57768,62320,82063,1284
+57769,39155,41829,39043,36139,20097
+57770,41068,40837,54368,45195
+57771,7871
+57772,58038,77975,43822,70805
+57773,30853
+57774,54864,17147,36708,24170,72331,54822,16570,48660
+57775,26762,27956,71521,2678
+57776,2466,5882,69751,70135,48229,9067,29425,33215
+57777,4075
+57778,25819,12269,39466,25688
+57779,76036,62190,75413,65138
+57780,52356
+57781,27678,58958,54426
+57782,51391,41512,47378,25630,80388
+57783,1919,69860
+57784,15055,79024,49559,18747,12458
+57785,21173,15462,54900,71190
+57786,30286,36739
+57787,46120,33991,57553,24029,80463,33533,69910
+57788,31404
+57789,76483,57818,9582,23597,12577,33651
+57790,68995,47795,22102,35800
+57791,69418,70446,49593,67336
+57792,48589,16468,58048
+57793,28222,67526,44667,42287,27940,44483
+57794,70877,60655,42710,62728,69253
+57795,1906,58566,50109,60688
+57796,73471,50229,39033,76897,7653
+57797,72630,71232,31420
+57798,33089,68542
+57799,17533,66330,69994,33805
+57800,81002,44495,31591
+57801,23859,34256,17793,19068
+57802,74140,75935,14917,67321
+57803,34689,20984,78357,15668,78080
+57804,82076,25770,65185,78665,81308,65367,6856
+57805,17215,63784,30227,4625
+57806,38814,13783,3578,43811
+57807,5543,5771,1820,23144
+57808,74316,41733,52348
+57809,63975,20440
+57810,66266,13514
+57811,29806,48678,6216,40898
+57812,24879,8108,71298,5660,18431
+57813,22635,69812,71412,59260
+57814,48598,14476,2889
+57815,31540
+57816,76788,71363,2068,70491,47001,68952
+57817,225,33739,66540,9001,46735
+57818,80210
+57819,42167,72374,31064,41970
+57820,75511,50668,5796,13786
+57821,59399,48381
+57822,4698,50272
+57823,53072,24026,30126
+57824,35144,31411,69007,23495,54622
+57825,48712,2844,31106,33338,29757,38875,54760,63406,67552
+57826,26159,49730,12468,43016
+57827,33361,40666,74152,19794,62956
+57828,8042,9986,41310,78832,58229
+57829,72591,33215,59968,46915,52145,72818,31254,57498
+57830,68520,65840
+57831,32495,55908
+57832,77269
+57833,22390,35797
+57834,82117,2443,66042
+57835,35220,78802,4493,23497,32628
+57836,49892,30213,26916
+57837,34577,880,41693
+57838,35601,16198
+57839,1535,58550,993
+57840,29721,22107,9509,27988,59081,37964,14540,68738
+57841,18673,73790
+57842,68882,29293
+57843,42176,10362
+57844,50476,25522,25943,76154,23547,4852,63207
+57845,23731,38448,9476,78056,77190
+57846,12741,47583,55933
+57847,2355,3827,19096
+57848,59446
+57849,16402,72733,80511,50054
+57850,13890,43876,25578,76365,4498,49154,62231
+57851,27300,17281
+57852,47988,21066,68412,38717,63085,67838
+57853,55957,62268,30684
+57854,44499,6804,1496
+57855,11889,21484,19994,40941,22066,3369,67221
+57856,15426,51613,59860,32879,4076,35232,45062
+57857,12124,65004,54217
+57858,79319,5225,33642
+57859,31356,69404,46679
+57860,24581,73485
+57861,59043
+57862,60010,21247,56762,17536,12589,62670,33388
+57863,58734,44112,26830
+57864,54829,80668
+57865,76406,60386,27979
+57866,39366,66207,68155,75598
+57867,32676,7994,13553,3259,70089,46898,37779
+57868,16637,74759,51683,81681,800,10704,76219
+57869,65131,50925,56319,37393,49358
+57870,76351
+57871,72078,6182,27133,71153,79223,39295
+57872,78266,73444,69743
+57873,39734
+57874,71620,26496,70355
+57875,23106
+57876,37807,12425,7266,7988
+57877,54676
+57878,4376
+57879,28117,8464,37469,4121,61704
+57880,17216,5466,61075
+57881,65102,76968,26685,65494,57083,24760
+57882,60225,37559,70499,74971
+57883,74661,7802,7450,8399
+57884,79071
+57885,45510,71292,47578
+57886,14210,54197,6965,13329
+57887,3398,41948,49974,72073
+57888,65792,37874,66912,29119,74582
+57889,32577,24095
+57890,36
+57891,17571,8797,18409,21799,37968,1974,21335
+57892,60987,62295,24743,34089
+57893,24086,26682,56026,45089,58917
+57894,36440,49296,12880,23102,9113,8485,51615,37395,46842,10071
+57895,15243,62280,49033,60879,55039,63257
+57896,225,1967,51746
+57897,78382,13090,6967,45729,26192
+57898,16975,26727
+57899,39804,54444,690
+57900,8957,122,16195,55701,42826,59550
+57901,26133,38204,68083
+57902,56840
+57903,52862,58563,65684,26579,21762,35519
+57904,21862,44857,51855
+57905,54313,21020
+57906,76630,76297,26161,57355,36435,61750
+57907,67045,32829,31152
+57908,42989,68848
+57909,37362
+57910,9883,8614
+57911,13977,3759,33278,48375,72361,6581,77209
+57912,56157,55651,81756,58256
+57913,54087,43250,21058,2600
+57914,1124,70555,43709
+57915,51541,73092,45258,77962
+57916,725,39921
+57917,39263,71358,34931,35425,43391,24920,67074
+57918,50380,58651,35314,12993
+57919,40610
+57920,43805,17341,26661
+57921,74457
+57922,31607,52267
+57923,29774,80083,64948
+57924,56126,1515,7925,56117,12704,1278,70149,28497
+57925,64896,28535,20537,32736,81727
+57926,68988,62899
+57927,56231,63122,12865
+57928,18501,8473,33558,66508,64048,80332,62214,49090,67466
+57929,10945,19805,77890,17775
+57930,66322,26057,54987
+57931,79710
+57932,63473,34404,704,58510,19596,62752,30491,75767,55581
+57933,71538,81372,11502,30713
+57934,81311,49949
+57935,76183,32064
+57936,25297,10483,82053,68025,24326,32044,47882,57802
+57937,80036
+57938,3369,55862,6023,29488
+57939,56735,37673,44598
+57940,11392,79100
+57941,52780,80774,41181,78742,69144,8289,51560
+57942,33123,24666,17159,47538,15105,41760
+57943,81499,74573,27581
+57944,43903,63997,41202,81
+57945,30654,34270
+57946,39735,14363,69172,20549
+57947,21961,52104,2323
+57948,5157,65062
+57949,56747,45020,54056,26542
+57950,46766,67253
+57951,46902,17207,35873,11677,74660,26604
+57952,488,21908,26805,806,61988
+57953,46788
+57954,11225,54684,52466,44286
+57955,59488,54656,61135,47616,59507,7288,50422
+57956,42228,14255,56879,76718,51221
+57957,13731,2545,79469,36488,50920,65043
+57958,65402
+57959,22839,8649,1596
+57960,16958,45055
+57961,81649,48677
+57962,56534,22170,32973
+57963,49376,8244,58176,41998,41424,16565
+57964,72813,35285,62822,3372,7911,32927,60275,47187,20616
+57965,41989,68756
+57966,22720,30163,26945,61822
+57967,5154,71127
+57968,20660
+57969,75454,16626,36201,36051,32195,41159,14348
+57970,68701,49172,62956,58637,20663
+57971,42934
+57972,1732,57480,24076,47846,56045
+57973,19337,56071,73700
+57974,14896
+57975,35202
+57976,79450,26686,5658,77473,46258
+57977,64989,57760
+57978,41752,34771,23665
+57979,56725
+57980,61900,19753,16409,31540,58270,1206
+57981,79989,23548,59862,29042,34565
+57982,30934,41562,48660,76651,40402,61702,24127
+57983,19861,36808,12616,32503,15550,51742,3243,72510,49730
+57984,81508,21736
+57985,25162,1265
+57986,8112,40395,49069,21024,13455
+57987,44460,9843,25217
+57988,51588,80205,58816,78938
+57989,30605,68438,60824
+57990,1299,59583,47833
+57991,68829
+57992,41082,31081,48369,5002
+57993,36026,52607,54118
+57994,34354,42520
+57995,51490,58979,60174
+57996,56511,41639
+57997,79212,70643,1207,67155,68938
+57998,64731,63730,6758,68373,10658
+57999,11205,15345,51307
+58000,27825,55301
+58001,11876,44960,60964
+58002,74671,32108,69494,20989,467,68442,6561,3651
+58003,62430,32310,20562,13585,43145,15745
+58004,41833,16526
+58005,72012,56907
+58006,42818,23566,53467
+58007,15269,50540,11821
+58008,66674,42187,30498
+58009,40422,73148,51025,21213,72799,42661,48601,78340,10101,52243,62692
+58010,30675,26843,29343
+58011,39357,59237,51270,3137,63965
+58012,76956,3037,61913
+58013,53625,40613,29175,55269,49251,20287
+58014,57068,51101,13061,66557,60386,40697,45284
+58015,54231,10628,77909,225,18497
+58016,22339
+58017,56307
+58018,15211,79656,61142
+58019,46651,53535
+58020,34398,26294,68230,38210,21258,54163
+58021,38262,30152,71290,67323
+58022,50722
+58023,55131,40378
+58024,26241,70056,8019,49627,64845
+58025,54695,68784
+58026,77739
+58027,8935,78273,15587,24782
+58028,737,34272,17032,9408,45473,20691,76713
+58029,71876,225,6076,20143,78709,25692
+58030,7159,76494,19240
+58031,26485,57711,75125,21605,34719,33322
+58032,29944,63330,59050
+58033,24104
+58034,79094,50354
+58035,8714,40130,38609
+58036,36718,6721,31115,24600
+58037,56604,52529,53047,3586,30009,63964
+58038,16291
+58039,17393,59889,52036,45637,6989,35707,72373
+58040,73413
+58041,38690,21482,6491,4883,50071
+58042,56644,70089
+58043,49346,45649,1498
+58044,41413
+58045,51293,53769,33619,53962,46124,23249,67517,29775,57642,20015
+58046,49495,1253
+58047,17891,27308
+58048,19285,24450
+58049,14754,73577,7838
+58050,17981,36044,54237,41221,57597,7084,42024,35779
+58051,4723,81908,60128
+58052,20807,24395,76543,51251,30780
+58053,8708,68871
+58054,41622,31566,38703,72043
+58055,42093,69013,52058,68368,8433,35454
+58056,5966,2094,24201,81171,46659
+58057,41538,56011,17869,27053
+58058,80055,73684,15929,25268,65483,27691,1907
+58059,66642,57582,64085,1971
+58060,13328,69398,42441
+58061,62241,20317,30919,3920,79583,29131
+58062,2463
+58063,70769,18757,67105,81568,15200,50899
+58064,81858,15463,70469,79714,61029,57388,37858
+58065,66849,5319
+58066,73904
+58067,32984
+58068,79450
+58069,40717,32570,27293,33021,58256
+58070,49193
+58071,48937
+58072,61745,20873,81333,24138,44699
+58073,44904,67142,22108
+58074,44086
+58075,77868,59057,66664,14419
+58076,24272,66449,32535,2389
+58077,48998
+58078,60531,64163,12723,49658,45197,38603,47523,31854,44598,13023
+58079,37218
+58080,67076
+58081,63953,31388,800,76854,58464
+58082,67127,73361,15795
+58083,2423,23618,7880,16449
+58084,38273,78543,26812
+58085,42946
+58086,53340,66190,23047,36509,5664,71526
+58087,12558
+58088,75973
+58089,20223,81320,42925,79671,18798,39931,66129,63576,71545,33693,75954
+58090,20129,19779,72218,33428
+58091,70534,27718
+58092,19864,70104
+58093,69027,24501
+58094,35420,64658
+58095,23725,30475,52064,33154,19502,1349,1429,40208,66578
+58096,18329,53275,44028,60707,22009
+58097,65866,14209,50367,73061,14853,79067
+58098,31532,8974
+58099,16001,64921,16853,50384,36883,33559
+58100,12833,28387,80845,40816
+58101,41009,13068,7952,1440,78152,22537
+58102,47138
+58103,79998,15184,17295,47028
+58104,78973,24622,41894,45074,42889
+58105,81374,68018
+58106,35569,41041,75049,55847,4432
+58107,42392
+58108,15770,78615
+58109,66840,51012,67237,2101,16371,6114,49266
+58110,43652,18159,47956,13061,80294,34642,26036,73676
+58111,79357,6026
+58112,61098,56444,25366,18591,79848
+58113,8752,75206
+58114,68382,46204,51522,53844,9066,3335,19063,66367,79585,58780
+58115,67477,2230,75491,53770,7968,61990
+58116,55403,26621,15345,73451,43568,35604
+58117,540,15955,37807
+58118,47700
+58119,62923,21580,54542
+58120,56423,47103,50289,44079
+58121,61817,24299,70404,7975,80889
+58122,81020,51286,11569,40629,32437,37295,10055,39223
+58123,59147,20426,45303,71565
+58124,34223,26955,12967,19898,33695,42414
+58125,77029
+58126,71965
+58127,73528,17618,3573
+58128,14856,76581,24789
+58129,37327,71585,47132,13194,62135,35503
+58130,17563,22553,12822,43613
+58131,16168
+58132,66972,76869,16164,5677,49841,29485,4553
+58133,50059,14785,18540,27155,51107
+58134,80545
+58135,47603,65716
+58136,40059,17972,2969,41837,81024
+58137,6616,10348
+58138,60973,73012
+58139,66968,29802,48334
+58140,25363,15285,18278,3768,12356,75738,63445,1174
+58141,32273,62865,71169,10275,70418,49300
+58142,43054,51981,12376,36611,64413
+58143,31424,44231,75077,7385,27301,68775,60898,2828
+58144,28087,77806
+58145,30404,21429,3475,38389,44556
+58146,63838,48799,73705,41163,48412,18286,43789
+58147,32779,47988
+58148,21917
+58149,47420,57781
+58150,19963,51914,42602
+58151,58107,45256,44380,7798
+58152,57993
+58153,81699
+58154,13496,72246,50108,72714,2540,35700,29148
+58155,30940,6203,47091,46907,22064,31664
+58156,47994,53571,37514,1150,26125
+58157,59035,29644,36886,76655
+58158,65617,10482
+58159,40814,3557
+58160,38690
+58161,60478,76303,54118
+58162,45744,64193
+58163,46788,60218,10878,23521,3469,81260
+58164,20927,54853,43134
+58165,42158,65054,39232,33837,59870,19439
+58166,76791,2492
+58167,28780
+58168,11780,50475,39795,35137,66628
+58169,60718,56448,21187,55166,40255,22207
+58170,82117,53459,69786
+58171,73168
+58172,45683,26595,31798,67829
+58173,52093,43784
+58174,69060,61107,77020,41288
+58175,19292,73067,11549,65959,45096,31884
+58176,3352,15465,66274
+58177,36605
+58178,25811,14889,41423,20699
+58179,46703,78065,19767,25460,61918,72181,30729,46517
+58180,47302,36226,25180,4958,21076,42968,42716,4558,12785,67545
+58181,40411,70099,39017,81001,16940
+58182,63693,6293,66468,48493,7678,29153,11224
+58183,75958
+58184,30082,3405,401,9644,69585
+58185,28181,77695,19017,3271,77385,13380
+58186,57557
+58187,58432,5043,77934,62129
+58188,33677,34733
+58189,58420,81087,7582,23539
+58190,50239,2837,59101,75481,26956,80886,42879
+58191,76889,34636,6031,52929
+58192,73593,25655,79687
+58193,65065,28038,60056,49377
+58194,33207,39899,45079
+58195,51471,12612,80654,53659,15354,8288,69063,77733,24292
+58196,36764,41426
+58197,80359,42176
+58198,35690,7760,49937,80599,3654
+58199,31300,30889,75379,25804,51112
+58200,63596,71142
+58201,8439,68393,40385,59049,32377,15736
+58202,27140,60225,16110,2459,33077,25369,74770,70980
+58203,52035,40609,38463
+58204,54495,71715,56513,39731
+58205,68920
+58206,40264
+58207,17204,3018,81789,5382
+58208,71783,18048
+58209,45514,71954,7497
+58210,71178,59111,74222,13962
+58211,42527
+58212,7816,33635
+58213,58977,10886,6506
+58214,72224,60761,74475,12321
+58215,34780,64939
+58216,70836,53469,15054,5557,45924,36085
+58217,61681,25507
+58218,63648,70985,36259,75840,29605,58847,4947,39288,20261
+58219,41800
+58220,6241,43307,7534
+58221,50590,66658
+58222,15850,3311,80552,72685
+58223,22415,39302,59178
+58224,37814,53332,37441,58114,76368
+58225,16501
+58226,33854,42369,50987,10321,61474
+58227,82116,20279,46991,55374
+58228,50428,67896
+58229,7466
+58230,69769
+58231,53917,75566,5593,69920,37856,79059
+58232,73018
+58233,7537
+58234,29586,54114
+58235,56230,10056,5615
+58236,60424,6224,11135,36124,22683
+58237,3409,5540
+58238,2992
+58239,39596,68853,28407,23231
+58240,21703,61602,57779,75894,25928,67314,54177
+58241,63128,3894,26561,75049,30987,64590,22664,8554,61896
+58242,2234
+58243,80819,51144,19738,20174
+58244,16156,53564,53623,59154,10322,33889,81816,68713
+58245,17517,5763,9627
+58246,60249,27835,43355
+58247,81818
+58248,21837,72301,75865
+58249,40736
+58250,31233,11250
+58251,44631
+58252,33135,49477,69686,66483
+58253,26762,305,76977,63486,52288,7685
+58254,70559,58827,24499,10637,36853
+58255,54503,68528
+58256,25427,51391,21918
+58257,67244,37555,42807,25120
+58258,71860,46302
+58259,34773,59697,59276
+58260,52206,68861
+58261,82076,22162,12503,51794,26570,58691,31393,59062,20667
+58262,46711,78857,34191,16619
+58263,39837,46768
+58264,43164,14826,35388
+58265,55164,48237,28075,33063,77834,9939,66327,55304,59437,28082,25378
+58266,25379,60621,71708,23121
+58267,41381,58831
+58268,53494
+58269,32402
+58270,13819
+58271,28019,41509
+58272,45155,71067,38057,3320,29897,5558,81681,12490
+58273,32040,65871,23431,58570
+58274,64302,126,35890,50903,3708,31612,54601
+58275,64107
+58276,54203,38308,10825
+58277,58973
+58278,10889,48433,39399,1313
+58279,4796,3241
+58280,46397,31361,76486
+58281,2187,54511,60835,7771
+58282,65263,14270
+58283,2844,57242,39889,8675,18260,6671,74001
+58284,49224
+58285,11562,20744,36471,3666
+58286,30776,11781,28878
+58287,56411,15838,38405
+58288,25625,73162
+58289,18479,43257,76926,2886,36341,80916,65448
+58290,24437,40123
+58291,14369
+58292,79420,46354,80062,37092,18286
+58293,60600
+58294,36799,33095
+58295,5977
+58296,37565
+58297,61040,498,6012
+58298,81374,40004
+58299,55915,80313,33225
+58300,54615,21901,72055,45828,62227,76290,53294,6542
+58301,24244,40123
+58302,10458,29597,56015,40865,22805,30794,7325
+58303,1983
+58304,9057,6999,36719,25189,27938,26962
+58305,5998,14826,7486
+58306,66431,7851,75790,54766
+58307,51751,31252,12895,3105,31049,41559
+58308,33855
+58309,80013,8786,41371
+58310,19021,26088,55663,8850,53238,1670,2387
+58311,57772,33874,78193,62794,5992,32223,74503,42611,67146,63483
+58312,46503,50192,54205
+58313,557
+58314,51686,12860
+58315,58084,13753,30598,48278,59184
+58316,19277,41473,54230,45222
+58317,20734,40751,11489,3287,10794
+58318,57219,2070,2895,20430,32532,68541
+58319,19398,59812,2625,46932,31330,41532
+58320,34985,52057,50793
+58321,69690,14422,17757,59662,45695,77691
+58322,80336,81605,15647,63338,76029
+58323,39427,62838,10598,12126,55601,45638
+58324,81736,79291
+58325,49252
+58326,22472,47236,70448,32220,10048,80772,60295
+58327,11905,59273,6419,81805,38151,31511,14046
+58328,17144,30336,79748,72740,23127,67691,77251,56570,19493
+58329,75125
+58330,37167,10336,55691,76891,70212,21305,64812,75645,15757
+58331,44129,1769
+58332,3776,18643,60323,8336,13213
+58333,17820,44568,80852,62711
+58334,16907,2977,4938,50019
+58335,17770,51427,63473
+58336,3475,65462,30487
+58337,8131
+58338,31388,54420,19237,1209,81591,74422,48856,55422,45919,20072
+58339,18576,63627,76487
+58340,69174
+58341,73437,63768
+58342,72263,32666,2172
+58343,39054
+58344,40495,57584,34116,67001,76683,7088,54652
+58345,39004
+58346,69829,46629
+58347,55572,15926,42309
+58348,5436,22791,74275
+58349,9627,1929
+58350,70012,8200,36109
+58351,66328,63561
+58352,12935,14702,44378
+58353,29412,7738,52667,42265,74489,75017
+58354,41086
+58355,41447,63986
+58356,28972,12475,7579,47046,60579,76114,18705,51157
+58357,81741,12234
+58358,44748,81017,15107,19402,10769,54401
+58359,53625,33831,58067,34802
+58360,11057,40869,41607
+58361,53373
+58362,63211
+58363,70694,52965,6258,37942,40133,35433,18613
+58364,49362,74074,57950,77991
+58365,23126,39779,64787,51333,13080,58113
+58366,81741,72747,11463
+58367,3674
+58368,15105,63704,64705,72703,34263
+58369,13422,10845,42645,75630,27345,25541,9768
+58370,22840,29806,55717
+58371,38558,35502,55877,81115,41483,78774
+58372,42770,65723,31951,65111,27599,40693
+58373,79337,9895,3080,34942,36983,25015,57304
+58374,8630
+58375,22403,74398,23432,18905
+58376,72997,41919
+58377,71204
+58378,13758,79562,73866,40838,38803,1229,74632,36824
+58379,72354,8275,55421
+58380,3807,39069,67042,60482,67449,32558,28700,2218,30477,65769,17187
+58381,9155,76423,82076,23223,342,52756
+58382,76029,63759,41545,71016,34895,18743
+58383,79305,18890,73250,70607
+58384,38469,25636
+58385,75227
+58386,58490,61555,79666,29986
+58387,12557,65948,16520,11526
+58388,47889,68062,34467,44844,4100,32992
+58389,53030,25124,1619,41334,70354,68595
+58390,15577,33805,66256,65108,22373
+58391,64415,11889,47752
+58392,4193,62072,25412,30107,23988,52736,66664
+58393,69097,68570,23923,7645
+58394,2421,12987,72772,35519,48200
+58395,24652,21880
+58396,48100,44154,2158,65375
+58397,64929
+58398,18409,26237,37158,3550
+58399,62881,59853,5857
+58400,67428,5175
+58401,42762
+58402,2379,73116
+58403,37923
+58404,66238
+58405,32547,21630,7791,29257
+58406,14384,20194,53463,68261
+58407,41317,8202,77991,38172,29964,16059
+58408,76396
+58409,42860,56899,78972,39926,6026
+58410,8085
+58411,3326,20665,39127,58426,30959,30564
+58412,9010,56533,68922,36471,26585
+58413,39688,63185,16381,67784,40743,51433,46220,747,26093
+58414,65664,59832
+58415,81278,14274,61188,35513,43320,78677,12356,59077
+58416,13510,50213,72572
+58417,73767,62084
+58418,47705,55678,54196,79126,72688
+58419,15591
+58420,66032,9690,21456
+58421,5825,41305,71653,28781,37448,24107,28493,9417,79699
+58422,59732,27174,24403,8201
+58423,37678,53145,19365,58940
+58424,37783
+58425,63932,38849,62859,43567,52570,67826
+58426,21865
+58427,57470
+58428,72826,38267,22516,47709,22290,22827
+58429,57513,81365
+58430,63577,32363,18850,32689,40106,27549
+58431,60965,51014,71271,25278,62830
+58432,43555,45553,20974
+58433,77097,40708,75386,76457,25927
+58434,76974,77831,79739,8672,65992
+58435,51319,15189,2518,65119
+58436,13240,7270,32372,12986,76898,3545,63461,49829,73901
+58437,80483,19454,5874,26003,80238,42670
+58438,28779,53357
+58439,41244,25177,76515,14394
+58440,38368,38627,25273,81108,76323,24338,43387,70356,51884,15641
+58441,12383,65375,41947,78642,30777,81679,5862
+58442,20253,15007,22733,62556,41360,20290,42856,58114
+58443,39682,59450,12940,51096
+58444,43970,14820,45186
+58445,72885,22795,24468,79238,38036,68079,77819,26008,80846
+58446,70837
+58447,30406,24629,78148,55181,190,31973
+58448,39404,50205
+58449,78990
+58450,65416
+58451,51200,8139,49469,17171,72472,25989,65953
+58452,40671,32066,67963
+58453,61292
+58454,42797,21056,78381,50725,25624
+58455,49618
+58456,44779,4323,62644,76201,74265,50658,74103,66871,16350,13969,71878,38842,51714
+58457,885,48245,53116,18104
+58458,72415,4623,41840,554
+58459,695,31824,12557,1150
+58460,55333,1847
+58461,43904,24467,14214,4770,19983,47432
+58462,54933
+58463,5401
+58464,27965
+58465,42226
+58466,49465,25442,34375,45581,42005
+58467,45862,26815,62,44546,8869
+58468,21494,72344,39597
+58469,764,15313,58989,396
+58470,8017,16051,39823,65469,53175
+58471,28207,65109,12577
+58472,64418,49948,59035,49916
+58473,61000,36986,61025,32497,41041,54207
+58474,25683,37472,39544
+58475,39895,69393,22015,19441
+58476,50708,21702
+58477,50492,58916,62100,6958
+58478,35887
+58479,57510,62371,66739,13391
+58480,52177,16593,32536,4178,24801,30415,25468
+58481,42675
+58482,54902,35390,5104
+58483,77734,5407
+58484,50708
+58485,50704
+58486,45496,26014,479,8198,8806,16136
+58487,66218,14173,51576,42530,30046
+58488,56609,70900,35069
+58489,9993
+58490,45209,32747
+58491,74400,44061
+58492,11988,79806,27412,46846
+58493,23839
+58494,57511,17867,55478,38776,31064
+58495,46243,33130
+58496,1798,17
+58497,33930,22754
+58498,37136,35264
+58499,74524,81433,48321
+58500,64399,22447,27366,60254,57401,50911
+58501,65002
+58502,65959,71754,28288,37432
+58503,40802
+58504,53953,75277,9846,9850
+58505,18162,71319,37307,5051,25627
+58506,14163,23511,71063,49159,60540
+58507,26251,41011
+58508,54706
+58509,8702,69163
+58510,75503,32029,22573,40058,63288
+58511,25377
+58512,44038,65993
+58513,45291,44374,8558,48878,27134
+58514,44523,61276,37566,17804,29764,80039
+58515,75627,18651,38408,54258
+58516,72480,24178,47234,64961
+58517,78576
+58518,75578,58350,51814
+58519,20945,73208,19520,59719,30549
+58520,56258,37301
+58521,66674,66327,25167
+58522,61755,62872,71139,37482,28574,50657
+58523,37302,2123
+58524,12618,38789,62128,18337,35994,69654,50980
+58525,70195
+58526,21652,71224,63916,18029,80479,56125,351
+58527,12248
+58528,62899
+58529,76716,28436,55336,22439
+58530,37624,48867,52643,65362,31588,40487,24970,27950,34018,54200
+58531,50919,76273
+58532,1480,47144,29564,55369
+58533,62281,76512
+58534,8842
+58535,42989,41723
+58536,3591
+58537,41863,78593,10937
+58538,15059,53373
+58539,51808,5810,72797
+58540,60555,10560,22633,67880
+58541,69195,25334,7958,17543
+58542,64311
+58543,12561,4384,46982,65282,55854
+58544,3557,60898
+58545,20438
+58546,51600,59358,73251,55771,24444,34844,10416,69926
+58547,61497,74877,30071,32513,55497,50756
+58548,67957,43343
+58549,78586
+58550,78867,81834,11536,63254
+58551,65816,64132,43695,76124,57614,1271,20787
+58552,48959,27492,71428
+58553,7635
+58554,52902,5344,34743
+58555,73162,37203,63326,22426
+58556,74497,4378,77385,15350,36446,21971
+58557,74733,55627,12828
+58558,40591,78907,24803,54082
+58559,41941,81994,29332,63393
+58560,23005,19257,44076
+58561,27340,33264,62226,10535,36015,76510,35002,21374
+58562,53760,58785,6255
+58563,46227
+58564,39312,12005
+58565,73503,11318,72169,48382
+58566,15502,52472
+58567,60450
+58568,9363,15088,75222
+58569,66023,75488
+58570,4603
+58571,27120,55244,28778,77433
+58572,72065,33448,46275,82093
+58573,16639
+58574,49940,24767,24582,45857,5872,32834
+58575,19087,24864,23637,19440
+58576,9893
+58577,11090,54928,10469
+58578,71601,42983,74679
+58579,69646,540,33342,60052,32736,59571
+58580,70754,40107
+58581,29648,58126,54922
+58582,72520,42709,67022,34859,10594
+58583,71201,9333,64633,52372,47522,3221,8359,31592
+58584,55468,63924,57976,9382,71684,60514
+58585,66305,77189,58844,43882,23224,20242
+58586,28924,52020
+58587,71032,27068,1507
+58588,9756,7622
+58589,50914
+58590,37903,45986,61948,46370,73226,74664
+58591,37368,64629,15459
+58592,74923,44563,30249,73711
+58593,2796,24964
+58594,9668,25245,16401,14397,68528
+58595,17363,4762,12626,23289,27702
+58596,4538,39761,56946,20057,22360
+58597,17562,9603,73937
+58598,77486,17322,40908
+58599,10741,31434
+58600,49517,66534,33436,67736,37361,77113
+58601,10120,33145,14632,19977,40250,27099,8885,16775
+58602,23442,21809,57008,17129
+58603,16244,769,26016,24043
+58604,35738
+58605,21370,26058,42561,13774,66991
+58606,38984,23441,61269,15299
+58607,51073,31646,13718,37100,67713,22179
+58608,16298,13498
+58609,65828,23299,37370,72741
+58610,11738,25824,53950,4368,38204
+58611,14142,62276
+58612,7221
+58613,62859,30729,24522
+58614,50527,73579,59516
+58615,78151,10196,75327,68680
+58616,4231,4864,70893,53518,30710,44377,16824,1867
+58617,47195
+58618,68237
+58619,37586
+58620,15831,81815,12661,69572,44899,2207
+58621,48462,31356,44268
+58622,61460,18170,24536,8814,35510,45762
+58623,37152,22222,49207,71568,64974,15041
+58624,2216,42333,61760
+58625,77830,41543,14396
+58626,41346,62006,45474,50409,52822,43556,10665,44839
+58627,59680
+58628,24536,81018,27113,16902,17767,5544,55443,25403,58453,45490
+58629,61001,37225,1802,68977
+58630,67360,67431,4118,29702
+58631,10807,78052,75080
+58632,25030
+58633,64993
+58634,21636
+58635,71352,41297,11821,65327,9861,79171
+58636,17087,75529,62237,10935
+58637,77141,62442,19318,32852,9964,77902,41089,71489
+58638,44511,69493,44848,45228,43367,9676,43299,19354,76888
+58639,61185,72195
+58640,54434,60786,54991,28165
+58641,28872
+58642,76212,15514
+58643,60946,6358,17542,46137,67239
+58644,8988,25521,67572,60584,36786
+58645,20974
+58646,65570,73652,66498
+58647,76102,2658,68340,50239,122
+58648,34382,34209,16366,47275,8905,45448,8086
+58649,40950
+58650,58080
+58651,12811,12,12830
+58652,73359
+58653,33057,68259,25808,36015,45683,16299
+58654,47422,20591,12989,29698
+58655,15860,64119,47763,15946,43752
+58656,36553,29841,23060,73769
+58657,68782
+58658,77467,70147
+58659,7471,54502,53748,75243,37676,26042,18680
+58660,47287,74371,64015,69793,52368
+58661,46477,37306,52816,20047
+58662,30195,32566,11039,39297,50751
+58663,8344
+58664,42709,72297,77190,54381,51555
+58665,36745
+58666,78876,63744,18024,80016
+58667,25921,13369
+58668,29730
+58669,4522,32071,62029
+58670,14965
+58671,80024
+58672,71661
+58673,23944,65483
+58674,42700,10215
+58675,52967
+58676,26975,47483,17269
+58677,4398,51914,70793,37881
+58678,75577,72157,35051,53681,17543,20692
+58679,10715,36396,51748,66440,20185,11236,154,32393
+58680,37235,2382
+58681,24234,71960,19830,70852
+58682,2645,47210,60060
+58683,18186,21815,16068,78546,31818
+58684,2735,42662,6302,76097
+58685,58215,8512,12999,41343,51947,27672,17590
+58686,44001,59403,9806
+58687,65581,21592
+58688,76351
+58689,80266,41923,18685,31266,2014
+58690,50247
+58691,42784
+58692,64969,65436
+58693,48783,10922,51832,59789,75724,5893,34253
+58694,79903,56089
+58695,23652,69856,3550,28306
+58696,32826,61750
+58697,78592,36905,49098,34211
+58698,19354,35208,50305
+58699,18238,59389,75159,62339,16212
+58700,4097,25212,78408
+58701,13657,27276,79987,17825,22231,74428
+58702,54244,77872,40717,1616
+58703,12783,48644,33760,16513,21633
+58704,8069
+58705,50086
+58706,74517
+58707,40103,59581,31859,59381,29438,8194,37936,19093,37774,48045,43180
+58708,64466,70546,69803
+58709,65320,14371,61045,75072
+58710,49258
+58711,12765,50477,27479,14228,60651
+58712,48441,44156,64517,4928,50468,26253
+58713,79645,78813,39659,62613,52710,18562
+58714,57276,29842,49187
+58715,69771,3732,10687
+58716,53574,18580,3969,29888,25154
+58717,65617,72467
+58718,20265,3409,22461
+58719,46643
+58720,15593
+58721,45110,23142,61847,63659,57109
+58722,63594
+58723,45851,10182,62273,49911,17911,33628
+58724,29570,68995,24819,56171,28212,70781,709,48796,58226
+58725,24170,68475
+58726,24413
+58727,59766,67009,690,49886
+58728,50929,1722
+58729,520,39707
+58730,72955,76033,42154,13067,26660
+58731,54290,28689,9344,53802
+58732,74911,337,74271,18331,19147,6274,81791,26599
+58733,36917,79253,21056
+58734,31560
+58735,37358,80957,55108,21084,74847,82117
+58736,55334,1095
+58737,64884
+58738,46462
+58739,16844,22128
+58740,12751,27357
+58741,32826,49386,37294,42196
+58742,56338,35597,60097
+58743,55630,74220,47118,38949
+58744,33807,46140
+58745,76207,62892,62346
+58746,61766,72559,6302,21063,19629
+58747,64650,75010
+58748,44863,40958,51615,80862
+58749,11075,49697,60596
+58750,61620
+58751,46630,73716,48915,33277,40298,41692,61319,68887
+58752,23839
+58753,50477,2698,62260,45604
+58754,13282,5224,6628,66005,64017
+58755,48436,54794,12435
+58756,71741,4767,14229,30446
+58757,37794
+58758,37346,31405,68970,14054
+58759,47181,63456
+58760,17522,47252,59009,46441,22652,36979
+58761,34290,30621,1193,1571,75324,29794,12297,43727
+58762,65361,45401,35526,69297
+58763,45919
+58764,24975,12320,69167
+58765,44357,32209,20250,12695,10382
+58766,24717
+58767,68240,41225,22694,38677
+58768,70348,47216,13835,22325
+58769,65282,26370,40025
+58770,45030,60424,9754
+58771,48669,64994,71961,58634
+58772,28513,71043,37753,51824,54450,12632,22914,71488
+58773,20699,3193,43834,56685,74503,74425,21837,22444
+58774,6544,69145
+58775,35864,58776,61654,38198,28652,70517,28060,32312,22931
+58776,29139
+58777,21899,57755,57699,57309
+58778,9619,22118,38851
+58779,50339,62606,14674,72448
+58780,39986,71947,56657
+58781,54458,40124,57092
+58782,80829,20066
+58783,52317
+58784,19292,9569,78260,51646,16316
+58785,77034,27491,2981
+58786,81556
+58787,77808,26349,13607,16475,57731,12960,54617
+58788,74320,37,56936
+58789,10729,19320,31180,11586
+58790,2149
+58791,65862,12571,72190,40759,30650,29744
+58792,20829,9970,49763
+58793,58780,54460,75591
+58794,65634,32045,39367,55632
+58795,17008,12881
+58796,29605,31608,56248,55843,74876
+58797,60753,32533,40619
+58798,19374,24246,6707,12442
+58799,62469,71835,78461,15443,67137,8751
+58800,26166,1351,17464,40326,18780,74405,43767,7384,43180
+58801,12149,9138
+58802,75736,16088
+58803,60936,15752,76854,28005
+58804,78947,1788,78171,62174,19527,71937,38555,58575,17581
+58805,77316,67977,18959,30938,71359,75281,26957
+58806,53537,49352,51367,39905,29697
+58807,60734,27848,5643,33798,66389
+58808,39889,50494,21976,69816,27300
+58809,70361,17394,10105,10982
+58810,75430,47555,1201,40109
+58811,35488,10265,6693,24785,68513,34494
+58812,46297,10713
+58813,22507
+58814,23036,57418,77269
+58815,60431
+58816,67795
+58817,25206,72373,64616
+58818,26035,74291,64500,52914,11292,12383
+58819,58416,30489,15693,19738,33252,70514,79349,57090,31118,55085
+58820,39830,35615,19145,26199,53550,22124,50775,1332,53427,29239,40147
+58821,76567,28547
+58822,25792,23088,67525
+58823,72686,8566,7865,22798,12587,32911,26452,75071
+58824,6688,49822,14847,32175,30134,54206,36909
+58825,54419,40076,71730,61064
+58826,7301,65134,23518
+58827,80993
+58828,50926,26822,51843,48260,19296,355
+58829,4391
+58830,51063
+58831,46838,73666
+58832,5243,65097,70670,50812,49261,26058,37361
+58833,18689
+58834,65799,20683,6187,55728
+58835,4085,16371,67614,24634
+58836,36104,63062,37225,21620,20299
+58837,29200,46262,72046
+58838,58509,37686,6164,5458,78751
+58839,27336,26556
+58840,63869
+58841,7146,79288,52128,80383,71165
+58842,78136,9466,57512
+58843,20816,61287,76365,72527,12474,43821
+58844,6905,3849,75441
+58845,11904
+58846,66013,77802,33387,63483,45429
+58847,7573,67879,18537
+58848,81627,14213,30340,49708,11323
+58849,36718,8592
+58850,61293,41173,77218,1316,55575,48517,70947,62758
+58851,40393,24118,37939
+58852,76146,33975
+58853,23813,58520,62864,33372,82098,13793,31283,30357,39096,4001
+58854,34127,45557,11131,26236,55242,10289,16513
+58855,70175
+58856,56448,47872,42308,46107,63456,37552,55346
+58857,34941
+58858,75651,73989
+58859,81858,31937,11037
+58860,47392,58430,23356,77170,19374,49175,1536
+58861,39471,39315,5395
+58862,35419,3440
+58863,328,10000
+58864,70488,20283,9701,7067,50172,62709,60180
+58865,8925,1042,40400,45901,59286,16551,46568,27744,55844
+58866,44657,3271,6597
+58867,23249
+58868,39191,17207,41097,56268
+58869,60624
+58870,51317,55678,33540,5208,64836
+58871,14559,42575,34110,43337,33984,47485
+58872,78553,36096,51277
+58873,74648
+58874,11979,12996,16102,21319
+58875,56100
+58876,4505,9057,78007,71213
+58877,49902
+58878,44291,1732
+58879,36897,54839,53602,7834,72564
+58880,70162,46082,51727,24788,75938,6908,47054
+58881,69532,12535
+58882,22256
+58883,35784,67335
+58884,24709,40809,29076,64045
+58885,2084,51958,17613,42767,15449,29329
+58886,78889,1700,51657,46023
+58887,64650,12325,9980,6090,67009
+58888,3791
+58889,73248,21669,48812,47325,30983,63592
+58890,15544,17709,77791
+58891,57158,19846,55428,27743,53835,45314,77824
+58892,55074,35087,9803,27274
+58893,51418
+58894,17368,64944,21488,11976,14523,63742
+58895,55734,56762
+58896,67305,18119,41461
+58897,4424,62580,9798,35593
+58898,28556,73843,65332,29368,1876
+58899,37048
+58900,69486,36937
+58901,66853,76107,50807,61451,42694,63896
+58902,28938,50132,33898,32651
+58903,48541,69754
+58904,7227,33231
+58905,11757,22763,43870,68793
+58906,36990
+58907,27457
+58908,47005,52173,7465
+58909,54318
+58910,28476,10061
+58911,5316,74831,58695,31493,47962
+58912,3494,17050
+58913,67100,5530
+58914,254
+58915,57347,27448,41607,30286,19781,7800,57232,38495
+58916,12718,43747,31224,59530,79845,76953
+58917,58931,17547,52541
+58918,76756,66145,30195
+58919,80608
+58920,45213,81134,24390,16669
+58921,22675,78935,77644
+58922,24530,53563
+58923,36944
+58924,45661,79313,64693,80082
+58925,61796,17434,22954,13585,77806
+58926,79953,80642,66231,12904
+58927,81606
+58928,34113
+58929,18390
+58930,74763,7747,62386,36526,14737,29320,26527
+58931,40527,21703
+58932,43305,65112,821,61171
+58933,4862,7725,2721,53292,80828
+58934,81945
+58935,13312,44099,27291,33990,26085
+58936,75651,48411,67960,47935
+58937,2168,17618,2001
+58938,27848,2079,32383,13714
+58939,27023,64400,35551
+58940,40107,13312
+58941,58200,58742,29534
+58942,32198,49809
+58943,26689
+58944,43452,64883,3687,53916
+58945,76684,22710,61547
+58946,64222,75080,46996,13824,48014
+58947,31172,27674,77013,78381,19870,56978
+58948,50095,71250,15032,11341
+58949,50968,36775,14384,1534
+58950,6761,35116
+58951,76011,7024,72289
+58952,10928,41125,58011,21769,80856,35021,43798,24463,37873,61952,17695,31006,64044,62912,23235
+58953,24401,58170,8213
+58954,72757,15403,56113,35218,2119
+58955,42364,72306,31160,46606,14530,5824
+58956,21971,71627,64440
+58957,12007,9464,24383,28311,68081
+58958,65298,32973
+58959,31034
+58960,9583,62559,1781,9754,74254,69631
+58961,72152,19164,23048
+58962,24182,47708,6648,23561
+58963,27365,48660,42214
+58964,59146,11137
+58965,58742
+58966,8490
+58967,50792,73919,81151
+58968,58686,59413
+58969,50096,65136,42062,46939,66057,531
+58970,81677,67981,17319,42188,51317
+58971,15622,3550,9068
+58972,34627,12264,60766,57388,15275
+58973,30598
+58974,28193,25938,70139,63857
+58975,67570,44848,30035,39759,81299,50727,69534,80128
+58976,50864,39210
+58977,26144,39575,542,45579,11704
+58978,40303,78734,49396
+58979,28090,50422
+58980,8228,74061,38616,39057,22944
+58981,13827,7465,57527,27041
+58982,24733,68002
+58983,48873
+58984,39670
+58985,42859,24748,59987,12998,34609,13443
+58986,11350,40077,42874,62791,16935
+58987,29462,34751,19553
+58988,48035,58148,66315
+58989,35857,68622
+58990,9054,52446,12722,33466,2792,57314,5125
+58991,4912,14394,6661,52124,44628,3311
+58992,55717,54945
+58993,27946,57203
+58994,20712,64773,72737,74660
+58995,40164,76760,4825,2594,1659,23388
+58996,47245
+58997,50843,51380,2404,74993,49204
+58998,4251,20747,25550,28503,34356,52568,53922
+58999,58710,29779,47265,9658,37556,79510,24620,51719,47535,35893,80692
+59000,60860,24006,17090
+59001,73224,49553
+59002,31687
+59003,44204,2666,22375,8170,25970,56134,59143
+59004,29465
+59005,31356,81732,49419
+59006,3447
+59007,24647,42296,24155,59296,66635,24687
+59008,72555,56220
+59009,50244,50957,2339,38883,81881,6146,13302,3745,6986,57526
+59010,28474
+59011,15915,26706,62197
+59012,47895,38851
+59013,19191,25332,52805,22237,23895
+59014,10953,71110,10778
+59015,70046,17924,52345,47881
+59016,11676,18088,80862,17182
+59017,100,556
+59018,74505,65195,43747,54326
+59019,70434,34788,20370
+59020,57953,66731,56015,37941
+59021,15775,629,69772,6447,74697,66653
+59022,49032,16047,80511,27993,67593,23244
+59023,17130
+59024,54723,38928,35731,29447,44444,2388
+59025,22299,18581,47067,32448
+59026,62580,59449,8611,50180
+59027,18144
+59028,35611
+59029,39488,1699
+59030,909
+59031,5781
+59032,23755
+59033,65517,6701,17904,6139,79738,58995,49642,73602
+59034,62533
+59035,32421,9506,70807
+59036,6272
+59037,73679,21799,8080,15786
+59038,7212,48251,76634,57568,79997
+59039,37109
+59040,51282,38782,20240,71854,51479,22478
+59041,73478,38411,43058,9928,70652,72679,68031,52067,66805,38959
+59042,58080
+59043,18875,33424
+59044,58771,21433,16785,54791,72064,17983,26334
+59045,37302,5792
+59046,72894,76682,69194
+59047,37952,9097,11551,51167,44673
+59048,48143,54993,37493,23198,70154,54487,11804
+59049,52840,71282,8355,75792
+59050,32331,49195,53580
+59051,65489,57169,14894,31369,18165,18232,12024,8105
+59052,17076,21788,69251,8747
+59053,27919,21091,57494,2918,21586,39542,55491,62436,80173,44232
+59054,71739,40392
+59055,23614,49565,79131
+59056,17752,65539,6199,48829,70300
+59057,71655
+59058,18977
+59059,16558,79582,39356,20769,57201
+59060,80167
+59061,15509,1019,56473,78243,70730
+59062,24506,60167
+59063,43172,16791,27016
+59064,73286,42534,49684,58734,11494,23035
+59065,74409,26734,40114,1123,15514,23500
+59066,57816,48508,53004,55650,46695,67191
+59067,1392,48399,34238,37772
+59068,26107,71102
+59069,653,36075
+59070,36794,55489
+59071,64893,64085,27875
+59072,63987
+59073,41109
+59074,81168,24906,77388,33428,47353,76612
+59075,8063,5784,28861,10846
+59076,65986,47364,33049,21467,53512,35599
+59077,16231,9626,4724
+59078,75888
+59079,12491,51808,43238,6586,76595,67567,45529
+59080,23943
+59081,53960,39528
+59082,50264,3812
+59083,53897
+59084,77962,25170
+59085,21887,42316,17711,27992
+59086,40666,56343,58711,45812,40217
+59087,50741,79517,2514
+59088,1411,56642,28020
+59089,38622,22668,62604,31873,79383
+59090,24246,42291,9740,20892,13772
+59091,21250,25787,37221,75354,2389,78025,28929
+59092,5902
+59093,75629,8851,38433,8165,49830,73880
+59094,50623,39417
+59095,10791
+59096,80843,24882,81737,27479,53640,1681,67956,13161
+59097,75462,12576,81920
+59098,59789,6855
+59099,75326,65491,27452
+59100,20090,41687,2689,61223,70215,74473,36394,54410
+59101,76396,67546,4882,37738,31017,38018
+59102,68771,19730
+59103,33710,31306
+59104,37794
+59105,36490
+59106,4105,57338,55699,25702,52458
+59107,56175,19615,60779,3523,12340,34616,55850
+59108,74732
+59109,38409,51288,2498,30174,32026
+59110,66870,78828,32377,67970
+59111,44745,42106,12265
+59112,1316,81602
+59113,43870,26228
+59114,28816,73671,17022,14253
+59115,6833,62634,50536,9178
+59116,47232,11205
+59117,33081,54604
+59118,73351,59559,35676,29760
+59119,3388,29337,3850,12429,45762
+59120,70741,76452,61414,79058,64464,43922
+59121,23615,36808,54688,57396
+59122,53732,17981,43746,36918,4625,17996,17820,42693
+59123,54090,24503,74999,15087,11499,67560,40970,28557
+59124,46384
+59125,16762,48288,60441,81795,40406,44059
+59126,37771,53614
+59127,60034,53801
+59128,28014
+59129,19046,48713,27992
+59130,79772
+59131,77062
+59132,11460,46891,46466,25806,13572,79741,45279,3387
+59133,23274,8355,67439,39801,17896
+59134,64925,63282
+59135,82136
+59136,35817,63556,40792
+59137,36372,46917,79398,23284,33774
+59138,41859
+59139,21113,18484,16525
+59140,71562,22694,38633,52162,27763,55138
+59141,72572
+59142,37849,75729,43716,57996,11676
+59143,50688,52127,48946,50847
+59144,44155,30161,79741,21039
+59145,70182,71067,77484
+59146,75443,29509,18555
+59147,25377
+59148,37,75737,14971,18167
+59149,43718,13444
+59150,65417,18336,673,29379
+59151,15459,39138,5430,43345,24620,56868
+59152,12214,41721,47555,48674,3301,31552
+59153,30637,1845,26117,76996
+59154,51265,58532,8445
+59155,41811,59062,35088
+59156,73883,20015,10148
+59157,51692,58412
+59158,80998,52397,40115,27920,59149,77022
+59159,60091
+59160,81083,66244,50968
+59161,74208
+59162,9143,20446,60210,23525,27293
+59163,64701
+59164,71139
+59165,68138,9163,43958,67463,23655,73071,60825,44652
+59166,28319,16709,2348,62145,72319,65151,7769
+59167,43816,5783,70688
+59168,11203,37445,65353
+59169,5791,18659
+59170,25058,5684,69025,68780,35110,63258
+59171,29472
+59172,39071,76006,1558,42386
+59173,16372,21128,8924,26404,23662,22640,59563,69380
+59174,56968,47860,11643
+59175,6498
+59176,26178,45471,11195,14322,30002,12726,30130,74204
+59177,54542,28677,51624,35694,33732,23158
+59178,5880
+59179,27009
+59180,46574,56960
+59181,35600
+59182,16937,51368,8644
+59183,60766,50408
+59184,52277,1227
+59185,21813,53224
+59186,68378
+59187,48900,22376,68214,65187,74602,56511
+59188,11909,10026,45718,15054
+59189,40692,48244,62453,77044,5529
+59190,9820
+59191,81777,33237,72347,81736
+59192,75292
+59193,67157,2309,72703,18661,62367,67456,3526,54652
+59194,29924,49843,15115
+59195,16956
+59196,31110,42271,10242,46327,44787,70034
+59197,70268,35020,75753,24875,12147,67832,2730,12379
+59198,38854,9510,70212,4183
+59199,11789
+59200,29848
+59201,46571,65121,76718
+59202,58594,34804,79436
+59203,52080,60766,36488,37087,53837
+59204,55128,52952
+59205,38107,64005,44658,77120
+59206,66627,67602,78269,11204,68868,27145
+59207,13753,47324,25213
+59208,44567,45229,22957,64086,47160,8317,72239
+59209,16373,56406,53755,55775,79798,23575,17163
+59210,20711,71633,10116
+59211,58217,44197,27734,24663,76316
+59212,72249,34090,58126
+59213,63289,42663,57104
+59214,29285
+59215,44826,55460
+59216,65298
+59217,11526
+59218,81883
+59219,37122,43830,15967,57502,31747,53771
+59220,42136,13731,65860,47025,80183
+59221,17635,66603,14831,25763,39815,22705,1592
+59222,66417,17281,67679,4710,59559,78492
+59223,67432
+59224,31173
+59225,56843,54305,79299,4644,62306
+59226,55634,33746,27825,39865
+59227,32478,66533,52546,81194,62369
+59228,12200,38241,63251,51373
+59229,10613
+59230,72560,13213,79927,10539,25012
+59231,58506,23208,7332,41221,27090
+59232,25295,64722,74846,60629,69049
+59233,14830,105,80990,33472,70853,5801
+59234,37229,81428,75903,1862,43162
+59235,67556,6722
+59236,53245,7331,55801
+59237,76708
+59238,15557
+59239,71214,40960,58108
+59240,79781,38749,23483,54111,41428,40662
+59241,34378,16741,36561,73947
+59242,68386,74570,25955,34733,15761,47598,42559,27525,20520,48610
+59243,25850,64760,16850
+59244,45268,18011
+59245,65243,60168,73611,40377,20606,9104
+59246,80985,81065,69306,53738,52869,62491
+59247,32322,28497,10702,74304,62606
+59248,14331,52648,43470
+59249,12922,2408,21717,44490,60883,64859,19099
+59250,33866,15546,31888
+59251,42837,33678
+59252,22617,17047,47172,48914,49790
+59253,19977,68757,19703,55304,22120,67197
+59254,53360,1037
+59255,54271,65233,40379,56349,76978,18096,42681
+59256,62514
+59257,21063,67886,71906,15536
+59258,24151,32593,37262
+59259,51612,19793
+59260,70343,62139
+59261,66671
+59262,35071,59615
+59263,58219
+59264,72989,27430,62700,76624
+59265,38950,78691,73836,80415
+59266,46017,10786,17808
+59267,60528,63746,72376
+59268,58100,27266,78474,65665,71515,25797,16764
+59269,60052,27875
+59270,44038
+59271,81,6738
+59272,58403
+59273,53949,25574,44856,59797,40988,12511
+59274,7797
+59275,23597,82136,58374,49122
+59276,42601,64227
+59277,15462,6195,71132,24876,65050,39962
+59278,17776,25269,41814,63493
+59279,72395,49729,78089
+59280,44018,77452,16223,51105,2040,62245
+59281,8558,31794,79482,55161
+59282,65037,53120,81011,22343,8230,33820,75557,14208,35688,72703,43973
+59283,22405,54489,33231,60974,19721,69191
+59284,56250,21263,21882,22086,47592,36276,14912,28393,77855,56619,52208
+59285,70838,68386,73536,55580,69533,45272,48466
+59286,77814
+59287,10615,32221,78067
+59288,30677,15904
+59289,9009,15207,18054,12795,6166,40945
+59290,2752,62838,33774,100
+59291,64929,42238,18221,7463,39572
+59292,17236,57188,31300,38780,70149,36017
+59293,42404,57636,51229
+59294,65372,5977
+59295,20189
+59296,37542,35738
+59297,12329,58900,14669
+59298,80218,66575,7613,2391,25427
+59299,49747,24828,73971,81157,30648,66185,42417
+59300,74630,73736
+59301,27623
+59302,19103,54284,39236,81078,15505,36441,4065
+59303,21611,30202
+59304,45992,15219,3038,69059,18489,30969
+59305,56455,35788,58149,47984,43310,7114,32233
+59306,38674,81243
+59307,2635,56167,50255
+59308,70011,4708,71717,19571,60274,57551
+59309,79135,47594,27208
+59310,8541,17343,47360,39780
+59311,74242,26116
+59312,41810,28806,25708,16796,81393,32180
+59313,29273,20822
+59314,22097,30592,65490,66216,44206,77146,43015,35178,52629
+59315,78215,37565,61791,9718,41095
+59316,40610,19192
+59317,81390,81994,64740,55286,25408,72940,81650,18808
+59318,39528,50241,45851
+59319,76662
+59320,68063,54451,13733,58675,60276,54243,75041
+59321,21412,38974,2365
+59322,33934
+59323,27548,49172
+59324,52046,13052,74662,1403,69395,76675,66603,60723,9086
+59325,69688,55559,80307,42466
+59326,48161
+59327,79843,6654,12445,42730,15280
+59328,42920,63348,78522
+59329,422,38515,29132,16216,71915
+59330,64053
+59331,67140,40559
+59332,63630,44019,12698,71346
+59333,36390,1939,8149,1222,68270,74637
+59334,81886,11673,32247,24935
+59335,57733,64518
+59336,4624,22793,80999,40232,4934,34516
+59337,60939,36429,18892,56437,16588,11293,35743,4048,44651
+59338,75575,29228,78200,62077
+59339,75194,42345
+59340,74278
+59341,11786,71865,13458,17035
+59342,39640,10304,34717,27260,19298,54683,47229
+59343,66535,33761,64270,79449,81742,56754,49436,62854,23915,69229,3922,30378,17229
+59344,449,8555,78376
+59345,76567
+59346,72969,13544,42596,56980,22487
+59347,23662,12400
+59348,79188,70114,37967,42009,76392,38479,6050,29558,80007,9801
+59349,6432,66119,28820,70825,39517,15807,48064,27936,57700
+59350,42237,53200,37625,70826,11767,38141,8642,64862,82024,39130,73756
+59351,24558,1296,74158,68568,51298
+59352,66671,3711,24346
+59353,56767,45487,65215,19757
+59354,15623,17188
+59355,20882,52738
+59356,37658,80777
+59357,63709,30361
+59358,25862,11598
+59359,25128,15732,32598
+59360,43353,44482
+59361,47683,32211,36792,3450
+59362,75587,11591,74031
+59363,68758,78417,34510,73903,9445
+59364,61911,75862,81705,37367,30635
+59365,28582,26148,72160,14171,5432
+59366,34524,62767
+59367,79419,80899,47804,11676
+59368,35272
+59369,17402,43666
+59370,3992
+59371,69117,61438,54898,16198
+59372,1635,35863
+59373,43194,42131,51483,9699,56975
+59374,19572,35470
+59375,14616,40107
+59376,50119,61060
+59377,70041,3629,64394
+59378,76282,41951,28900,21629,39469,67694
+59379,78893,19772,70993,2524,26993,80135,14787,14375,32028,33804,34110
+59380,65123,13161
+59381,59804
+59382,72997,68361,17429,54962,30777
+59383,12107,19238,14024,60677,3287,53886,75553
+59384,6697,43098,50701,55108
+59385,67224,26591
+59386,45080,5270,75954,26897,17817
+59387,6708,49622
+59388,42626,69788,3049,37575,46217
+59389,54462
+59390,72309
+59391,19868,31345,43073,49200
+59392,60612,30243,983,72631,39305
+59393,53046,26283,78019
+59394,21676,21467,33769,5907
+59395,49327,1004,15981
+59396,13244,2494
+59397,40933,8466,37301,48636,2239,807,21445
+59398,32745,50793,42424,47948,46898,32894,1061,28410
+59399,80349,37729
+59400,69693,61706,16217,19774,54866
+59401,18828,46478
+59402,579,52383
+59403,38026,76397
+59404,24965,58048,37894,19331,40201
+59405,33465,55914,73947
+59406,29961,5517,66977
+59407,25107,208
+59408,28900
+59409,80183,76428,46456,32482,42906,62663
+59410,55289,625,54687,60161
+59411,27047,34870
+59412,24265,4102,80290,12859,46991
+59413,10001,5562,2234
+59414,46171
+59415,17083,56338,46759
+59416,22583,80262,21967
+59417,77275,78421,39656,69601,23129
+59418,40984,5484
+59419,21496,12687,43810,27603
+59420,67384,4462,27511,21076,12707,41312,70799,27270,79030,22738,35771
+59421,7704,67885,62359,56067
+59422,17259,23050,11207,40829
+59423,7860
+59424,53999,1463,62046,25455,35846
+59425,64054,60934,33188,28930,47690,57004,66112
+59426,60779,38111,76960,18455
+59427,16632,30427
+59428,5627
+59429,19413,6846,3102,48410,74757
+59430,70022,74780,37430,65876
+59431,8343,62932,63338,54181
+59432,2086,77417,12924,26063,46106,49469,28815,51063,57383,62942,43484
+59433,67253
+59434,43764,42683,16100,60342,22570
+59435,3949,30103,10910,18397
+59436,47244,53003,19070
+59437,25010,41411,20622,34043,16851,65289,28124,59162
+59438,68140,19420,78704,35584,61545
+59439,65806
+59440,63519,73094,66485,21054,32185,5062,56756,76930
+59441,16006,59693,49250,50429,21779,55627
+59442,76755,31577,78332
+59443,52536,46896,4744
+59444,67815,43884,9417,78544
+59445,490
+59446,29374,20345
+59447,52365,7666,49116,59703
+59448,24120,63821,75065,30445,14114
+59449,78368
+59450,60992
+59451,70901,70531,1864,69472,67741,26979
+59452,74422,76074,17190,51840,80544,68382
+59453,64814
+59454,41515,70630,3250,25093,15486,66029,40527,22501
+59455,49536,64445,46930,61559
+59456,968,33464,38858,58234
+59457,72865,31422,59274,32775
+59458,28575,60101,56719,12137,43055,18046,76080
+59459,14396,13674,9769
+59460,51065,77857,68591,18240
+59461,11472,35695,42009,29329,45479,66819,82142
+59462,21756,38969,55562,769,39851,79012,41822
+59463,3438,55374,22243,34356
+59464,30065,29791,10303
+59465,22969
+59466,44279,62188,59853,68956
+59467,74693,48054,54511,76554,3856,19502,1960,44557,41337,12958
+59468,58249,14939,6884,26628,77716
+59469,15949
+59470,55526,58454,77462,1645
+59471,2260,53269,52285,28730
+59472,28373
+59473,35379,55277,37614
+59474,82053,78067,54431
+59475,15361,32530,33210
+59476,49315,51863,45024,13971
+59477,49728
+59478,56759,73960,66575,81891
+59479,49087,64186,37920,45421,72877
+59480,54177,51632,70910
+59481,50881,79810,13112,71327
+59482,69621,27799,21569,63784,35332
+59483,3498
+59484,60311
+59485,60340,69861,46831
+59486,71591,11899,42866,20461
+59487,62169,29720,33833
+59488,21122,58906,58890,25076,24695
+59489,62923,24500,56156,58528,12373
+59490,55375,66917
+59491,39070,81634
+59492,44562,24859,39190,74614
+59493,13061,44435,73504,9769,41588,15770
+59494,31394,19019,21623
+59495,52317,39559
+59496,50833,46938
+59497,62053,71593,56004,57586,33056,40384,17476,47334
+59498,68402,9166,23927,60963,41888,12183,20615
+59499,53454,49339,2900,29369
+59500,67424
+59501,6771,3048,47099,42874,80295
+59502,47794,15455,19886,24923,29253,3639,20811
+59503,70566,10263,22021,80829,15529,66958
+59504,58611
+59505,58319,56363
+59506,41796,52972,58551,33923
+59507,34669,26431
+59508,70106,48999,64019,50887,52111,16692,69210
+59509,67337,38743,53429,69609,712,5910,58983
+59510,60466,82021,1411,1681,16140,12658,71462,29332,37126
+59511,18563,62009,54181,15846
+59512,43278,20022
+59513,16571,20145,34340,2546
+59514,57205
+59515,25961
+59516,1455,73077
+59517,24436,5347,10779,34333,12272
+59518,50240,50937,47495,25037
+59519,82005,77485,27314,69335,13007
+59520,53702
+59521,24850,28224,73332
+59522,52872
+59523,69836,35776,39896
+59524,78733
+59525,12476,13446
+59526,37783,9247
+59527,3024,64689,28516,47671,12471,70616
+59528,11180,20788,65340,11509
+59529,48191,1864
+59530,25262,72331,54339,76483
+59531,41046
+59532,36055,47552,34813,77784,16231,7034,57154,41777
+59533,46414,57065,49355
+59534,56211,58750,69191,40685,59925
+59535,74344,67125
+59536,42153,8832,78084,47156
+59537,59401,32719,10504,70330,41173
+59538,20345,37758
+59539,76309
+59540,4094,47483,17512,21685
+59541,38190
+59542,42955
+59543,20747,30534,53517,73362,66327
+59544,24219,19913,26217,49008,4690,31822
+59545,67379,62424,8100,50350
+59546,18503,36697
+59547,4864,57438
+59548,46278,47807,26524,6700,37070,53884,29948
+59549,3571
+59550,9255,29055,75601,6980
+59551,18184,59522,13290,57967,79419,45364
+59552,2677
+59553,43773,22925,5527,76627
+59554,21159,39065
+59555,27484,20516
+59556,47968,79251
+59557,63366,78800,67937
+59558,2670,37473,54945,69162,69871,40933,50936,6102,7816
+59559,52267
+59560,13598
+59561,59269
+59562,74603
+59563,81541,46057,14766
+59564,18503,37232,53267
+59565,63695,28804,25969,18862,37299,73343,6891,36684
+59566,21967,3516,22385
+59567,19780,39821,58801,48955,38828
+59568,5064,6052,24342,79921,18812,59616
+59569,50786,19793,25766
+59570,65823,38320,65914,64471,75024,67778
+59571,5902,39388
+59572,34721,682,47312,2486,67520,49231,62985,15877,9749,78848,35947
+59573,43974
+59574,20937,62485,55168,61871,53895
+59575,40782,80823,3033,2837,11781,8645,12973
+59576,79726
+59577,80302,57175,65192,53948,16347,19276,10326,2926,39451,578,43552
+59578,29845,32740,43348,18297
+59579,75041,22624,17029,65701
+59580,79799,68173,18184,31725
+59581,13126,38523,45303
+59582,62303,21727
+59583,58308
+59584,68122
+59585,54696,28543
+59586,79715
+59587,31922,76413,38352
+59588,57374,60018,47945,75732
+59589,67759,54850,11829,47189,21567,42011
+59590,2063,54171,9874
+59591,74601,34679,37087
+59592,24732,40038,30401,18776,15084
+59593,50864,60260,61191,66244
+59594,60721,191
+59595,31427,42331,5104,28403,45995,79328,52069,40846,12079
+59596,8714,17410,37929,61880
+59597,27396,66916,58118,62884,69550
+59598,70785,49527,1359
+59599,32276,17180,68566,56571,58749,6694
+59600,152
+59601,22256
+59602,61396,42895,19127,58580,74458
+59603,77572,35393
+59604,25587,42319,69849,2720,1704
+59605,76273
+59606,52514
+59607,79718,10860,70428,53309,40340
+59608,42527,3651
+59609,2192,36719
+59610,42257,60361,22888,58533,32222
+59611,40982,7297
+59612,41615,42025,19669,2915,42086
+59613,78946,77322,66687,19699,60732
+59614,69650,42270,6195,78883,67927
+59615,35672
+59616,43008
+59617,1230,338,81013
+59618,940
+59619,52606,61126,48550,31041,66898,38168,60138
+59620,24561,15716,58627
+59621,9312
+59622,74153,8209
+59623,81751,35577,8025,45562,78325
+59624,1772,22941
+59625,64386,65399,27550,58532,31678,13517,71199
+59626,35956,51262,10910
+59627,66488,75028,34371
+59628,56273
+59629,33680
+59630,32053,77831,32925,27007,37885,61535,863,59417
+59631,72317,60706,20251,19832,73006,37695
+59632,9126,18144
+59633,37678
+59634,44387
+59635,64273,6002,56183,47799,78837,13110
+59636,69189
+59637,52714
+59638,25872,50262,23004,1005
+59639,57051,56900
+59640,16036,47586,77361,9890
+59641,11288,44467,38033,52913,25138
+59642,26985,47719,38524,30915,34018
+59643,10472
+59644,10240
+59645,65789,53387,77503
+59646,7630,39862,6680
+59647,34305,70900
+59648,74707,22623
+59649,7777,79817,81656
+59650,74260,42187
+59651,40391,4016,68510,12533
+59652,12430,60916,5876
+59653,69478,20500
+59654,19132,28302
+59655,30009,2984
+59656,48286,13733,53339
+59657,33538,69774,69090,30729,34574,53360
+59658,5115
+59659,15556,61993,56874,63016
+59660,55466,23904
+59661,948,57150,62890,18507,58966,37862,74715,20930,17777
+59662,28947,81058,15599,16983,28701,80448
+59663,71046,43795,64227,12589,15919
+59664,15115,76100,271,57611,61666,76137,22164,10788
+59665,75681,72567,13191,66331,57638,47249
+59666,23277,16696
+59667,74834,66603,16649
+59668,7757
+59669,59679,44313,29416,54857
+59670,1681,44650,64504
+59671,17428,73566,14227,41395,37498
+59672,62049,64690
+59673,40671,54723,41509,49153
+59674,36490,3225,6641,82040,56176,45079
+59675,39368
+59676,24591,20125,39211,77189,43240,45998
+59677,68810,51346
+59678,7838
+59679,10919,75398
+59680,13731
+59681,44020,49330
+59682,71535,16073,35137,11760
+59683,26759,61752,36197,45058
+59684,58361
+59685,30521,80661,49143
+59686,70546
+59687,70973,71854,69696,40504
+59688,38277,58172,13200,63359,66349
+59689,9082,50002,14833
+59690,11507,18831,19381,21709,3478,47094,73088
+59691,30247,44580,50174,42809
+59692,66007,16371,29127
+59693,59616,20052
+59694,75093,16339,33938,77822,31398
+59695,17154
+59696,45297,57537,22699,10845
+59697,32236,41235
+59698,44718,22019
+59699,3040,48721,17961,3120,6552,80255
+59700,7228,51023,59766,70621,59307,14302
+59701,43280,72404,4369,66262
+59702,60639,79780,53281,28475,69864,54853,81260,44312,12647,2302
+59703,32628,10662,59445
+59704,4706,65427,6729,41118,16646,73253,58792,74405
+59705,24529,58118,57848
+59706,15015,12548,40526,42073,75714,5714,79456,9428,69125,80990,26992
+59707,31329,41929,59129
+59708,6532,16152
+59709,34735,79395,22805,31626,44322,7575,22828,53640
+59710,22325,80101
+59711,55706,66743,13237
+59712,27597
+59713,4911,24919,5612,30741
+59714,49176
+59715,71761,66449,2125,10716,78821,61194,68022,76849,21152,44969
+59716,488
+59717,49304,45033,78062,39795,9364,38563,49870
+59718,78071,53554,79107,17623
+59719,44787
+59720,15003,65998,31189
+59721,46450,7380,21404,47512
+59722,36297,3673,42937,63645,16521
+59723,5416,79447,42915,3017,25517,71363
+59724,14939,29235
+59725,74538
+59726,76574,6288,6821
+59727,6722,49663,36104
+59728,14372
+59729,54492,56787,11936,26451,12434,47933
+59730,68424,48472,37469,50470,11038,67504,80884
+59731,5857,44424,70787
+59732,53841,41983,60882
+59733,49616,12789,6810,12035,66659,64550,2773
+59734,39983,55603,59571,5922,41247
+59735,12083,64518
+59736,18118,40594
+59737,76780,68717,9111
+59738,23158,39515,29529,61503
+59739,70615,17422,42819,36050,71645
+59740,30525,53385,53048,57368
+59741,35788,6768,8019
+59742,54783,2856,52772
+59743,30149,51233,25041,39957,80943
+59744,17339,32606,24246,25,81075
+59745,41469,41401,72394
+59746,27010,5499
+59747,34043,42801,21985,18064
+59748,79173,339,77703,56148,80469,49791,33094,37439
+59749,18349,60121,31048,41311
+59750,74743,72122,9357,37858,68562
+59751,19236,9567
+59752,81581,69647,26672
+59753,38574,35331
+59754,76369,72400,77908
+59755,60095,19026
+59756,21563
+59757,14537,79253,7651,34116,80797,3375,15176,65342
+59758,22054
+59759,25365,42693,71939,39388,38353,67280
+59760,20508
+59761,20879,39656,32537,81168,49438
+59762,80346,49532,816,20165,45750
+59763,20093,8547,67477,65786,55915,20150
+59764,39782,52100
+59765,5668,2714,3876,62129
+59766,55483
+59767,6064,76510,31532,12450
+59768,50074,64932,53457,37356,24441,5049
+59769,25829,2345,81338,24835,23606
+59770,17265,40797,11744,28590,65681
+59771,54621,1738
+59772,18744,57495,48344
+59773,81345,76098,12213,40179,51924
+59774,37805,80959,68856,48957,30544,53282
+59775,48462,74204,43854
+59776,14714
+59777,38037,20352
+59778,3636,56555,20898,36491,34683,7441,41361,35000,36807
+59779,56298,22805,65729,49642
+59780,61438,67144,64271,76140
+59781,9946,41122
+59782,52763,47607
+59783,63726,51822,20691
+59784,4538,42264,13677,51967,79447,49291,23186,5921,40212,21401
+59785,35264
+59786,29054,57453,26300,47,38904,40397
+59787,63631,74048,11685,46086,6465
+59788,71995,31587
+59789,49195,55040,79732
+59790,43997,20857,14328
+59791,53019
+59792,67057,12083,77360,23697,19772,24989
+59793,25507
+59794,40384,61138
+59795,15461,47158
+59796,54917,41615,66257,11328,15511
+59797,10275,37879,35589,64812,35597,18813
+59798,5143,78393,47179,37362
+59799,13609,53190
+59800,28578,60069,68689
+59801,57872,51231,80156
+59802,28338,21532,69775,49214
+59803,1585
+59804,10122
+59805,66242,40006
+59806,47855,70054,15339
+59807,45450,7378,72169,70300
+59808,38116,11412,472
+59809,41453,110,37323,23978,27844,71503,60181
+59810,68627,80021,6302,638,47857,20556,37438,55236,79187,26730,49536
+59811,58239,79027,25484,68074
+59812,66837,81058,72541
+59813,67721,77220,1562,14800,73422,43295
+59814,27454,10041,68781,5785,6426,17214
+59815,15906,14315,44265,6654
+59816,32768,44140,53625,74508,589
+59817,16062,42443,35084,79292,9417
+59818,81909
+59819,15163
+59820,7377,61820
+59821,20733,37446,40377
+59822,51292,11373,64550,74723,46160,56513
+59823,72017
+59824,79901,14745,19704,13966
+59825,53451,60440,33342
+59826,22800,76600,27603,22738,1244,78752
+59827,77990,7103,1411,3059,18316,12423
+59828,23182,6018,64303
+59829,43926,46613,65179,74715,81053,75311,35353,15403
+59830,31759,74551,7797,68687
+59831,82128,52824,52022,82120,15903,48109,51877,43377
+59832,39953,54315
+59833,4149,26839,76892,6282
+59834,34632,82176,6489,735,20406,28004,73902
+59835,54273,22964,10159
+59836,75956,28405,42376,22118,46240,19013,11539,31651,49064
+59837,31688,78051,39179,66150
+59838,19980,51739,48835,47102
+59839,71368,47382,2334,19192,62671,60089,4423,42895,14730
+59840,33092,73081,80144,45587,62750,63247,77324,76308
+59841,14440,29074,41189
+59842,72675
+59843,49518,50623
+59844,14910,30806,47750,52991,12905
+59845,11401,20391,4115
+59846,34009,59693
+59847,24561,5067,49304,55902,48448
+59848,15324,7400
+59849,73946
+59850,69347
+59851,44904,52336,14475,66242,80945
+59852,65376
+59853,14720
+59854,38927,55345,75344,9732,75992
+59855,39817,2753,81164,26843
+59856,47250,45345,63765,27331,10225,38409
+59857,49547,10683,1484,5096,59733,30190,80288,51010,43777,5712
+59858,25544,33204,73697
+59859,27179,66899,60491,79124,14620
+59860,6327,42326,38220,26604,35120,45553
+59861,80368,70561,818
+59862,11760,43425,33806,72955,44792
+59863,41726,77116,4351
+59864,48969,5157,14315
+59865,9111
+59866,37140,33003,30359,75881,9962,21133,72577,8936
+59867,51808
+59868,51067,47529
+59869,32444,81046,56515,63311
+59870,71495,72125,49843,6716,42893
+59871,22024,45847
+59872,74475,21286,58802,21649,7250,9960
+59873,8734,3499
+59874,63684
+59875,58665
+59876,36109
+59877,36470,50324,56225
+59878,71755,35219
+59879,56947
+59880,3628,27656,25404,44818
+59881,64534,42211,32582,64141,10803
+59882,12805,22457,63496
+59883,40006,56393,56563,47947,15756,43063,9543,27606,64028
+59884,74582,36412,536,57182
+59885,45701,18506,25061,46666,6847
+59886,22554,5623,46207,21970,18956,24387,50689
+59887,57177,53644
+59888,4188,36178,45173,25673
+59889,518
+59890,5152,24032,16042
+59891,54764,34328,19212,8115
+59892,6477,65710,81473,8909
+59893,71801,16031
+59894,31774,49022,47470,76385,78971,4081
+59895,76680,29289,28893
+59896,66805,78578,52597,39294,34397
+59897,9352,25983,57625,19802
+59898,19969
+59899,31958
+59900,25232
+59901,53090,46265,29415,54359,2792,75404,33179,50015
+59902,75201,70675,30286,34152,48230
+59903,42933,40856,1722,45055
+59904,17596,3754,13737,35209
+59905,43918,13005,742,3071
+59906,62942,66550,1688,70372,73728,44603,66562
+59907,34597
+59908,75266,37733,537,39624,6280,45147,77611,2465,33360
+59909,3968,27550,55881,14508,60470
+59910,7765,37294,26738,6832,40259,61035
+59911,13051,13883
+59912,80414
+59913,11809,14341,9763,21370,38163,55759,39834,60108,52981,36865,14796,17091
+59914,33665,35351
+59915,66572
+59916,58829
+59917,52990,75443,76626,35289
+59918,77267,81304,23304,63990,64505,6451,8965
+59919,50290,26928,50209
+59920,76310,74739,56484
+59921,14527,57498,16402,25404
+59922,23454,31520,31866
+59923,43854
+59924,21446,69278,78644,31867,11622
+59925,45660,7089
+59926,26310,2512,68067
+59927,27452
+59928,76615,48574
+59929,65852,1369,69315
+59930,58219,56294
+59931,53465,56235,32708,36021
+59932,76332,60542,61218,27946,58851
+59933,68874,38057
+59934,16912,58589,7524,59940,68763
+59935,31897,80595,78091
+59936,19485,75276,791,21358,74737,47867,49241,77989
+59937,73716,27465,44435,74389,13983,33091,23141
+59938,49773,793,7773
+59939,11796,53394
+59940,14077,38454
+59941,74918,23359,37548,41958,61117,77850,56065,68781,42417,40761
+59942,29026,63615,44792,80212,76784
+59943,44129
+59944,33257,19810,34574,803,36216,23216,34932,21331
+59945,62,9880,42376,39718
+59946,22589,4474,66415,49624,50956
+59947,37265,27876,60026,14978,55424,27297
+59948,70412,10159,75666,23412,59034,59293
+59949,17209,6992,71269,1199,6796,37691,38152
+59950,7573,6686
+59951,58430,46855,18238
+59952,29341,47511,5563
+59953,10791
+59954,50633,42947,64333
+59955,2333,41,78123,72337,69385,53432
+59956,67982,22185,11765,43970
+59957,15599,24398,21814,68102,14233,26539,1509
+59958,16420,78517,69096,64694,41643
+59959,22299
+59960,35101,38631,3728,57346,24910
+59961,6810,71906
+59962,6188,54612
+59963,46524,74454,42114,44053,51814
+59964,21023,63125,43556,15099,58207,81318
+59965,54215
+59966,34198
+59967,60371,57129,65942
+59968,68181,81486,59061,44487,37636,78969
+59969,38674
+59970,29958,29810,19422,48786,14394
+59971,58219,41109,64443,19605,40340,58362,73344
+59972,81699,59898,75765
+59973,7302,20055,18710,47828,21792,2377,66544,12438
+59974,19381
+59975,38140
+59976,35528
+59977,77331
+59978,28543
+59979,81571,53842,80532,26749,38132,80874,66597,32293,78952
+59980,71890,78632,1020,44880,75778,6010,76955,33102
+59981,2076,1297,9834,32418,15137,39933
+59982,37511
+59983,3277,25745,62066,58654
+59984,544,77018
+59985,17596
+59986,10984,39637,76511
+59987,42907,70613,57283,60440
+59988,33068,40985,61261
+59989,10645,70561,3025,74013,57179,75313
+59990,58810,30388,69016,23197,78989
+59991,4200,69022
+59992,26975,26824,44001,70437,80683
+59993,56526,53936
+59994,40454,4982,9329
+59995,26141
+59996,9918
+59997,61531,73406
+59998,12658,42308
+59999,42651,65416
+60000,19480,75615,32811,11160,11568,32272,75183
+60001,37464,24154,5330
+60002,46796,33353
+60003,65718,60730,2240,1095
+60004,77585,27796,16443,81705
+60005,50,81272,47138,56882,40814,45179
+60006,13896
+60007,15200,31307,25351,26276,50478
+60008,15257
+60009,50257,48538,19448,72821
+60010,61372,19465,31092,74986,35087
+60011,49939
+60012,30052,59933
+60013,10560
+60014,59216
+60015,18827
+60016,24973,19713,25012,14790,79094,53931,37882,34346,72269
+60017,51971,68001,29578,63975,27170,23895,33033,5736,48617
+60018,67943
+60019,41617,25179
+60020,36945,75458,75459,74813,78823,78680,53452
+60021,25071
+60022,37298,53148,48741,67327,29947,38091
+60023,49973,34834,17751
+60024,31205,50673
+60025,54735,14167,39124,45007,68103,24433
+60026,43614,2281,28828,29484
+60027,49531,81698,10476,55040,80482,16989,1634
+60028,53289,10636,78588,43345
+60029,51910
+60030,14827,16244,34844,25888
+60031,1689
+60032,60010,70589,57790,50894
+60033,24003,41764
+60034,26464
+60035,10275,8203,44943,21879,51158,32735
+60036,1437,59384,1123,56688,76987
+60037,15870,51033
+60038,73437,38412
+60039,60936
+60040,17596,52815,52729
+60041,46875,55360,65648
+60042,2319
+60043,19906,35617,69393,64095
+60044,50109,73041,20632,9622,41653,67637,444,56022,79311
+60045,63768,69293,10001
+60046,63289,7419
+60047,18335,10454,10015,77484
+60048,27281,76506,17407,17408
+60049,52869,80400,18063
+60050,28053,848,11256,6716
+60051,69716,20089,14355,33807
+60052,36191
+60053,2654,22786
+60054,35592
+60055,27479,17619,55014,35217
+60056,14401
+60057,33129,17992,43670,43051
+60058,12759
+60059,1923,27419,72169,75369,8298,22146
+60060,56297
+60061,13396,25855,47970
+60062,45771,11529
+60063,1865,43386,62734
+60064,39499,31576,6591,10591
+60065,56307,64424
+60066,80375,53010,27155,63136
+60067,9316,8327,6387,9929,67479,18744,17994,64398
+60068,56345,4112,12382,56956,13829
+60069,81040,23755
+60070,20641,51842,1352,65837
+60071,33067,50779,61639,8882,40739
+60072,31307,16125,41991,54918,39413
+60073,31570,11109
+60074,22054
+60075,44454,76225,26437,3468,18032
+60076,62004
+60077,11562,44357,41832,75367
+60078,63050,51895,79355
+60079,64584,81910,57112
+60080,52257,42088
+60081,46442,15121,11664,65684,11456
+60082,30777,52302
+60083,33483,30602,3729,3410,5966,12490,26027,47143,80705,4283
+60084,27539,59912,74941,2306
+60085,28399,42944,56972
+60086,79052,15062,36680,33425,37194
+60087,43903
+60088,49855,19833,65852
+60089,51350
+60090,72667,42005
+60091,35554
+60092,51565,76146,63185,23392,65193,13195,45208
+60093,7160,49965,79560
+60094,19506,76442,30842,78508,53683,11989,71012,61383,35985
+60095,7231
+60096,62674,59567,15224,477
+60097,21081
+60098,10032,2490,36256,53671
+60099,78942
+60100,32467,26967,32696,75864
+60101,31849,14166,19665
+60102,14726,18665,18814,10651,41517,59154
+60103,56136,33380,78220,57029,72718,31903
+60104,38975,22057,75625,51793,47009,68997,60159,13902
+60105,9457
+60106,76607,7463,26303,8437,35153
+60107,4760
+60108,5025,53358,43720
+60109,67742,61460,48449,40683
+60110,24513
+60111,64357,40281,29973
+60112,32182
+60113,57763
+60114,74180
+60115,16551,55847,74255,20860,5206
+60116,70532,57920
+60117,28562,13502,58933,3875
+60118,36951,47359
+60119,41024,42993
+60120,78250,11218,7599
+60121,69766,25256,38465,17917,46931,50896,63695,65855
+60122,11994,68951,25094,69251,72264,4434,20224,81409
+60123,9219,47998,45941,38524,67074,15383,14358
+60124,72269,12796,60222,76846
+60125,1717,32539,21136,36270,58425
+60126,51756
+60127,46745,35029
+60128,47775
+60129,30782,31654,78719,69070,26304,52743
+60130,14420,620,45843,27384
+60131,62551,67781,72917,53013,6639
+60132,12914,73252,70729,26852,24550,57869,3138,34710,81455
+60133,79013,80677
+60134,41299,24770,71771
+60135,36399,29348,26675
+60136,22776,59422,73416,81692,354,13578
+60137,79708,15347,7248,79644,27076,74513,23063
+60138,2710
+60139,55194,14580,39022,58152
+60140,79328
+60141,67210,71996
+60142,60326,82110,38936
+60143,13676,43747
+60144,47750,7646,25725
+60145,35334,52042,32982
+60146,59841,37693,24259,36943
+60147,12124
+60148,56781,20075
+60149,44779,59150,45181,58834,23165,43249,77745,74847
+60150,52849,42994,75778,66931,61845,25457
+60151,19495
+60152,37387,5307
+60153,52931,26844,31584,43108,37511,31757
+60154,20042,67562,57467,59524
+60155,21043,39661,8143,51974,616
+60156,11838,36761,54323,50381,49017
+60157,73488,31831
+60158,36843,37226,41169,80063,10119,48514,32082,65642,36860
+60159,58833,2389,53565,44855
+60160,39924,30279,20371,42592
+60161,1337,56468
+60162,20504,60186,81585,76522,72399,28164,60199
+60163,43392,57623,77778,76680
+60164,36766,71714,17924,63136,16519,7725,11180,70803
+60165,69035,33611,13698,67560
+60166,50631,51719,33469
+60167,39471
+60168,60877,59390,64781
+60169,21710,12778,2406,62519,37239,42987,55840,74953,37894,22171,6357
+60170,40073,40286,20663
+60171,81995,76863,16586,28361,24828,81006,12294,29417
+60172,77966,61613,79928
+60173,35286,59362,36436
+60174,25584,51098,21543
+60175,35300,70171,68935,21487,76406
+60176,30875,50323,35361,42938
+60177,12215,50772,16487
+60178,20965,10177,39967,50752,42853
+60179,16714,44566,22033,27193,59145,28016
+60180,32949,51707
+60181,69672,12086,54511,51139,27615
+60182,29726,27136
+60183,6999,77129
+60184,49598,1082,10727,66324
+60185,58113,55699,43987,81390
+60186,11892,46966,72681,67287,34280
+60187,25696,71705,49821,39102,61963,34177,33276,18122
+60188,38482,76957,33248,38701,15706,1550,11622,24903
+60189,11211,42207
+60190,11263,19553,16826,49514,15154
+60191,19614
+60192,10739,7204,31327,43489,21751,4900,2385,46882
+60193,49325
+60194,14121,59972,41796
+60195,72012,69369
+60196,80022,11476,58365,17738,52346
+60197,27327,109,20146
+60198,58790,17029
+60199,47737,58694,46354,41628,44422,30346,47383,18912
+60200,77388,51807,49123,49953
+60201,61176,41949,21078,48027
+60202,53973,63718
+60203,43198,20227,24178,51711,63409,47190,13391
+60204,23672,22600,3672,59381
+60205,71433,12115
+60206,66636,38399,59156,45587,13035,37997,5348
+60207,59109,67233,23720,60506
+60208,41346
+60209,80423,13463,41674,6728
+60210,60931
+60211,82083,48616
+60212,31494
+60213,26832,59725
+60214,18360,41935,80471
+60215,45728,34335,64856
+60216,58471,3651,48954,33310
+60217,59996,70800
+60218,81021
+60219,81974,39500,80775,578,49693,10451,7970
+60220,57248
+60221,7135,25080,46246,9403,37373,60010,2537,38634
+60222,44482,36957
+60223,2152,1082,42006
+60224,31311,72585,72942
+60225,8707
+60226,66032,10693,69669,75208,49718,43362,54417,13331,27214,37995
+60227,75794,11334,16791,75830,17266,21624,47661
+60228,56888,78370
+60229,68976,28440,29108,66555
+60230,9270,19153,18541,79444,9978,50578
+60231,45820,70735
+60232,4328,56822
+60233,22866,74153,44108,12287,23003,19813
+60234,31015
+60235,6573,78267,18349,24393,74321,28345
+60236,66359,53952,46695
+60237,31606,78445,81477,18506,54574,56466,66306
+60238,34249,80002,14018
+60239,29893,22346
+60240,56285,33313,70989,50060,61943,53943,21110
+60241,35056
+60242,48731,17333,9680,39699,46019
+60243,46650
+60244,55233,35793,62669
+60245,9729,64730
+60246,23656,68731
+60247,17299,27862,24832,70446,23429
+60248,50848,6591,76205
+60249,59126,60754
+60250,42038
+60251,32548
+60252,28128,61998
+60253,74043,64514,9677,40998,7818
+60254,9851
+60255,5571,59190,36889
+60256,69278,1449,59145,73774
+60257,11037
+60258,76340,66110,10469,17860,33316,33517,81047,46804
+60259,36268,49261,41907,47900
+60260,36774,54315,34220,22325,57642,25355,55280,34635,66790,76623,48593
+60261,3107,63459,48750,18175
+60262,28130,24782,35819,19647
+60263,40618,27719
+60264,74246
+60265,60260,35619,4162,78255,76034,74347
+60266,38967,31832
+60267,64142,29035,8670,17882,23982,37451
+60268,61874,36367,37931
+60269,27639,33390,33739,56193
+60270,70839,35809,35933,31900
+60271,54425,78507,57247
+60272,11798,52665,56761,40709,77923,51047,41290,18079
+60273,77369,80144
+60274,25983,43666
+60275,61886,61219,32714,68722
+60276,74728,67305
+60277,47617,61203,26287,37807,77715,16668
+60278,66250
+60279,60538,12272
+60280,76993
+60281,38218
+60282,71042,80724,52812,69226,26000,21750,24036,53006
+60283,80603,2914,60692,8990
+60284,11483,25947,16944
+60285,72483
+60286,1471,54821,41677,29787,17626
+60287,73225
+60288,81852,79656,4563,13191,69213,16983,59207
+60289,67888,4940,82020,42461,49657,73112,36997,10576
+60290,55428
+60291,52165,75326,27226
+60292,72058,6649,78341
+60293,71233,74749,77398,14467,73643
+60294,50691,29759
+60295,37837,74103
+60296,19166
+60297,47040,60840,77827,38653,70581,60996,18492,5108
+60298,49954,35057,4250,9322
+60299,14199,81476
+60300,68951,24696,45702
+60301,3678,65158,71232,48847
+60302,23517,5267,50674,67922,57467
+60303,25131,23522
+60304,75833,23231
+60305,54231,41514
+60306,20533
+60307,34683,20499,69844,66537
+60308,68520,11504,7605,43718,22398
+60309,12550
+60310,56188,57360,37106,21827,77695
+60311,78586
+60312,66461,55176,35741,54938
+60313,36532,34589,30465
+60314,43895,33715,63310
+60315,63622,61295,78352,51060,66902
+60316,44033,15131,60802,46846,23901,14330,15913,77890
+60317,73553,58705
+60318,1527,27444,27765,16420,70888,30625,64674,78714,22005
+60319,49826,68008,23388
+60320,27564,18827,12565,76990,60749
+60321,58343,56102
+60322,55244,26586,30083,35321,26004,12852
+60323,46068,34710
+60324,12683,29702,61785,44651,47969
+60325,68730,22588,49401,55987
+60326,32996,58133,20383
+60327,38075,26425,2929,78166
+60328,32448,58719,43810
+60329,77712
+60330,76396,10477,11528,81737
+60331,62514,81931
+60332,24799,66769,64991,1573,51288,19997,51015
+60333,19253,14385,41522,50808
+60334,49224,41537,50405,2718,23966,28634
+60335,7292,73320
+60336,69356,65208,27928
+60337,63029,67747,14120
+60338,13097
+60339,5863,22263,70245,81370,47992,80206,30589
+60340,34660,57880
+60341,17495,22381
+60342,25559,31574
+60343,22429,71085,40367,45485,75707,53768,72336,20187
+60344,45077,52239,67102
+60345,29128
+60346,64537,2732
+60347,65770,45891,64309,5866,53535,78738
+60348,31812,19075,76517
+60349,58039,71475,79108
+60350,37915,62233,570,69934,22230,1121,19802
+60351,53133,14678,61331
+60352,23544,25282,11686,35163,81340,33838,7697
+60353,36982,64680,39519,52096
+60354,798,20813
+60355,12394,39529,18678
+60356,59503,22292,18903,45506,37579
+60357,71532
+60358,71070,49284,18812,57388
+60359,7893,52069,5444,47751
+60360,75830,13223,56126,71894,47359,59241
+60361,49821,73704,76756,16668,4935
+60362,14059,65387
+60363,3956,36235,55383,30624,12307,82069,33974
+60364,57639,4602,76419,11605,60482,52080,79284,64425,42729,68057,71697
+60365,77065
+60366,7288
+60367,57312,50023,32546,19696
+60368,81401,44128,11846,22544,12832
+60369,63916,11601,41185
+60370,47667
+60371,44627
+60372,37686,18359
+60373,27517,30052,43956,75819,49587
+60374,37433,1815,32751,9740
+60375,56489,23585
+60376,62494,2475,26031,22924,67392,57011,8784
+60377,50463
+60378,64220,31218
+60379,35960
+60380,13446,14430
+60381,46557,42376,81694,69704
+60382,39838,26820,73576,50588,62108,38955,27750
+60383,78669,2238,2418
+60384,79710
+60385,28908,7665,50713,28798,14864,78889,49714,19186
+60386,26101,14650,3374
+60387,43550,59204,47454,38936,36440,79945
+60388,78015,30729
+60389,6430,13799,15502,75555,43753,27268,49850
+60390,73611,73455,30160,80358,59900,20928,2595
+60391,28604,46198,60570,11604,21310,3638
+60392,28692,50870,41016,46917,74679
+60393,59749,26474,36470,55976,54193
+60394,77697,9421,44755,68306
+60395,14939
+60396,30286
+60397,49656
+60398,8435,11015,63393
+60399,48948,48711
+60400,49422,75491,8820
+60401,78021,5345,28955
+60402,37575
+60403,60881,37987,82038,57046,38920,5128,54688
+60404,36562,58090,8819,178,45989,24599,72678
+60405,7846,58744,62530
+60406,79043,22889
+60407,2060
+60408,19634,61571
+60409,18026
+60410,36884,18136,3299,48689
+60411,71268,72417
+60412,69180,20646,68340
+60413,21983
+60414,50878,19457,66025,42056,82156,79212,64233,65295,68536
+60415,36096,65697,65141,52037
+60416,44362,63617,55908
+60417,49435,73952,67782,31261,69608,35849,79447,28908,69494,31606,9177,73157,72071
+60418,36970,21880
+60419,21034
+60420,67638,11011,537,40506,81047
+60421,68103,3651
+60422,22720,35248
+60423,34495,4739
+60424,79024,27855
+60425,6627,75546
+60426,1786,58221,60095,19635,1997
+60427,31361,4732,7139
+60428,56547,43748,72533,49049
+60429,7332,51625,16821,68689
+60430,64957
+60431,66997
+60432,49379,39659,70264,668
+60433,43683,1651,69669,50363,65059,39511
+60434,18780,51497
+60435,37004,13318,3761
+60436,60429,56252
+60437,73959,77968,587,41472,26980
+60438,43837,13830,21645
+60439,3355,77713,39736,73577,26583,57682,30919
+60440,19243
+60441,37454,61104,77776,77482
+60442,64809
+60443,59238,23161,66353,62555,22746,80556,30835,80085
+60444,77522,30004,67224,8611
+60445,8940,43932,13031
+60446,37335,17599,72423,6369,71724,47827
+60447,23659
+60448,53740,28334,81286
+60449,4961
+60450,74664,43793
+60451,27055,30424,75120
+60452,72734,32388,65914,39295
+60453,17407
+60454,15004,59463,40893,77012,11887
+60455,4824,19619
+60456,68739,6503
+60457,71348,68707,20764
+60458,78100,33381,54017,3366,46394,54836
+60459,57073,72838,43760,65616,844,9476
+60460,76616,48279
+60461,15271,49237,37036,34191,15327
+60462,45932,1052,61225,20280
+60463,46265,72108,33236
+60464,12201,66826,46027,31149
+60465,339,15881,782,70120,29833
+60466,20603,73418,48140,63670,51602,32411
+60467,4533,43479,70300,60029,79328,8544
+60468,3790,10879,55545,28491,7959
+60469,72856,34111,37951,6209,769
+60470,18538
+60471,20795,42014,24313
+60472,37619,37402
+60473,65709
+60474,12572,68038,65814,51341
+60475,40685,45162,63163,20107,80064,6
+60476,32963,45397,81659,61873
+60477,28836,57991
+60478,47620,71179
+60479,75022,50781
+60480,18229,39735,57710,22099,7186,47278,61684
+60481,32196,23354,9167,32748
+60482,72651,59995,64701,15086,68076,77031
+60483,42145,53
+60484,564,29111,80706
+60485,40553,51305,66488
+60486,57047,81668,39639,30243,61792,66636
+60487,8915,29858,42145,61295,63387,24961,73642,72529
+60488,11545,28522
+60489,69999,46987,59850
+60490,22254,76955,9619,45854
+60491,35223,24074,61498
+60492,70278,45834
+60493,53385,37756,82165,65046,72188
+60494,50800,18394,10395,67050
+60495,2742
+60496,49335,30237,39575,35186
+60497,9639
+60498,43313,54049,39572,67980
+60499,17311,52319,21308,10643,42809
+60500,74762,7153,60704,44474
+60501,4377,38576,55408
+60502,20102
+60503,55737,81094,15040,67924,77263,72838
+60504,9846
+60505,32119,27777,24545,24137
+60506,17899,65122
+60507,49834,55706
+60508,58493,21658,87,63239
+60509,20336,59955,68976,68137,16536,8513
+60510,37575,82121,66574,61077,20977,23364,20147,43806,78483,69686,15192,33743,14183
+60511,26201,9955
+60512,2124,2737,65954,2006,57492,58449,48275
+60513,64337
+60514,41458,422,69473,76323,38268
+60515,56565,26792,16018,9402,5326,72072,56811,13081
+60516,49465,47415,73299
+60517,69942,26196
+60518,4851,3870,52350,41419,52492,66770,2086
+60519,40292
+60520,4391
+60521,35992,26496
+60522,63878,1193,43519,7640,32405,48610
+60523,33003,31074
+60524,39432,71661
+60525,42373,77706,4254,62265,69093,58270,18601
+60526,24854,77250,16639,13195,53584
+60527,73061,58377,19797,50722
+60528,76015
+60529,54910,17435
+60530,35486,45483
+60531,78125,67477,75558
+60532,22339
+60533,12449,11565,46137,27808,52425,10303,8036
+60534,42953,42557,5293
+60535,43900,42341
+60536,15072,3330
+60537,57283,60247,27691,81789,73240,61900,59648,12574
+60538,64157,47935,14540
+60539,13441,57305
+60540,65898,24355
+60541,28413
+60542,55278
+60543,38540,42841,79808
+60544,44345,71542,36283
+60545,30895,47212
+60546,17779,60467,68482,17185
+60547,4493
+60548,2690,52938,47053,47454,14634,5997
+60549,58798
+60550,79108,43236,58118,73814,56437,34352,25046,70845
+60551,79070,3627,27600,70398,37673,3881,31382,65998
+60552,48982,68350,29982,6896
+60553,69686,66165,21513,6342
+60554,18135,56630
+60555,37702
+60556,22035
+60557,30699,6566,65379,56045,4025,23667
+60558,11111
+60559,65383,60851,40645,73929,74561
+60560,35409,69568,38881,68265,76484,58993
+60561,35454,48885,42722,64010,37512
+60562,30782,80873
+60563,37725,39561,70415,40813,54118
+60564,66752,51150
+60565,51028
+60566,52574,66541,3552,72690,38182,51050,56639
+60567,63418,31585,17697,75099
+60568,3046,59548,58064,76408,52777,26719
+60569,33957,53577,77470
+60570,23009,2504,73839,40110,12057,43458,54452,47478,33239
+60571,70444,44624,50749
+60572,66672,65672,62278,31164
+60573,19222,67955,45284,73340,49994,23397,11696,66488
+60574,20443,5395
+60575,24339,57428,21883,13869,78259,44001
+60576,21743,56532,81633
+60577,50484,81197,69956,10272,25227,80797,36636,63029
+60578,50630,4708,43997,77871,6704
+60579,40359
+60580,24599,60861,11712,46002,13059
+60581,81400,80707,64302,74976,26409
+60582,71945,74497,10135,69740,17092
+60583,32011,66322,48515,64976,12463
+60584,28943,31574,66987,45081,25166
+60585,64809
+60586,35572,59703,68830,45606,82024
+60587,735,4303,29704
+60588,40466,34891,1503,43070
+60589,29137,70654
+60590,64485,10369,44361,60448,28980
+60591,849,73466,57192
+60592,44016,76231,75917,52506,75475
+60593,9634,17612,11870,70165,68455,38635,32943,33571
+60594,46759,73262,46758,5629,44823
+60595,34149,51398,6168
+60596,72394,25374
+60597,24119,23863,55755
+60598,50559
+60599,76945
+60600,32535
+60601,10274
+60602,41225,3671,47964,6297,17318
+60603,49132,50688
+60604,29265
+60605,4744,51550,43230
+60606,81251,55712,16246,44668
+60607,12398,45634
+60608,31735,81763
+60609,54434,45421,72630,5306,81058,22468,32200,43504
+60610,59565,50275,72583,122,5838,64346,31581
+60611,65139,3924,69408
+60612,24503,72073,77130
+60613,79693,418,59465,10567,59186
+60614,12567,6094
+60615,79111
+60616,23778,38749,36573,45573,81836,9073,81294,74259
+60617,14956,29661,72732,10408
+60618,33970,28677,81217,68935,35397
+60619,684,17968,22316
+60620,73391,63746,70385
+60621,1288,5485,77919
+60622,34356,49996,32960
+60623,43753,60725
+60624,43897
+60625,79804,62045,10112,62714,81479
+60626,52262,11614,75689,31219
+60627,1278,64708
+60628,20474,19870,27831
+60629,57705,10392
+60630,72147,58516,17806,65784
+60631,26082
+60632,61433,11765,15969,54727,59697,66680,2302
+60633,27622,157,19298,72632,78226
+60634,12474,68530,6302,11835,33259,78255,56191
+60635,64641,12431
+60636,19671,68045,66798,57453,59789,62420
+60637,66248,35635,25493,29318
+60638,53459,41149
+60639,49010,56293,12498
+60640,73156,2494,77548,70050,75214,34585,13423
+60641,6336,47930,56760
+60642,34495
+60643,28798,5546,61625,76724,14504
+60644,82117,16248,33081,68339
+60645,22479,66367,43924,69945
+60646,17279
+60647,64973
+60648,52699,81057,72452
+60649,2290,18709
+60650,72330,65586,3830
+60651,21624
+60652,11405
+60653,41469
+60654,70890,45624,12267,79603,50370,33566,47997
+60655,65285,9879,22756,27408,78731
+60656,73240
+60657,6864,80253,29266,52080,67956
+60658,43323
+60659,61758,33019,40803,76502,8058,68148,31583,53102,59822,22935,28936
+60660,56000,16960
+60661,35653,23589,39549,10017,19523,38317
+60662,26563,2684,47934,49586
+60663,13612,36525,16867,16116,4360,65790
+60664,25406,70214,22117,23758,48462
+60665,10180,56857,16709,61410,75585,79423
+60666,75491,22920,30805,35528,70247
+60667,14222,8778,15410,14794,13827,24850
+60668,7395,40859,8762
+60669,19692,59698,33869,24473,16287,22274
+60670,30863
+60671,47229
+60672,56962
+60673,55590
+60674,78661,37626,51267,21397,22791
+60675,72438,28580,78701,63430,23008
+60676,13326,70816,59764,17863,7069
+60677,598,58308,70476,17934
+60678,7892,5160,59826,31599,69410,34313,52235
+60679,24614,75402,46857,24151
+60680,68193,19933,53936,52644
+60681,74812,61585,47947,61785
+60682,14044
+60683,16589,47771,68059,47568
+60684,81932,21081
+60685,40006
+60686,46361,81378,8257
+60687,68059
+60688,70445,3015
+60689,12546,81246,59955,25647,9613,35793
+60690,51736,13638,71937
+60691,10473,28093,2401,40551,46141
+60692,13081,30294,53350
+60693,38443,9456,62581,17864,10297
+60694,36605,17126
+60695,27992,19211,67501,46384,55572,32437,58918,44733,69253,45243,64398
+60696,50687
+60697,46347,200,22995,43916,67241
+60698,20762
+60699,33037,2389
+60700,56093,26792
+60701,11371,19002,82152,20648,21845,63152,18159
+60702,23281,15668,21410,52872,35070,12602,55778,71669,45291
+60703,27319
+60704,62197,51260
+60705,22404,46658,27248,34442
+60706,45923,21038,2792,81842,54267,6716,62834
+60707,69590
+60708,4966,15254
+60709,76293,39282,71828
+60710,73165,31916,3030
+60711,35976,70526,1386,32119
+60712,8598,72840,64539,74412,67065,47576,5764,76393,38054
+60713,29344,11189,7150,42401,25088
+60714,47640,44288,24887
+60715,50714
+60716,28391,48665,22205,21476
+60717,25861,73578,79737
+60718,74479,20245
+60719,43508,81906,7443,60433,82020,65422
+60720,9271,5275,63302,17296
+60721,22023
+60722,28382,45090
+60723,73066
+60724,35707,30836,21667
+60725,21731
+60726,23900,34366,14897,41361
+60727,15105,32523,36214,31502
+60728,13826,1077,19801,2319
+60729,65359,59654,4698,5957
+60730,2721
+60731,14709,27260,30959,44857
+60732,37434
+60733,73300,25893,46454,47194
+60734,51750
+60735,59356
+60736,80857,41053
+60737,62975,50335,77043,29611,37467,4874
+60738,19917
+60739,3943,28025,26887
+60740,80164,36079,66472,24396,33680,66216,9358
+60741,34870,17795,66634,35667,27296
+60742,4855,70845,54044,60760
+60743,45526,43066,64857,27195,33840
+60744,27129,2118,11028,46658,78645,18289
+60745,37314
+60746,20586,35334,450,35681,38469
+60747,19440,33124
+60748,5503,21498,70306,64750
+60749,40567
+60750,70777,71930,22450
+60751,42875,27136,54946
+60752,21379,57226,13958
+60753,6119,72194,46107,37812
+60754,11786
+60755,67746,75512,27454
+60756,16525,23559,33526
+60757,28079,66956,43096,32699,76873
+60758,18002,54034,38044,52269
+60759,17677,1562,62927,68528
+60760,40324,5623
+60761,22031,56495
+60762,72829,53049
+60763,49229,38540,15722,6675
+60764,72808
+60765,27662,70064,8702
+60766,61138
+60767,38118,45259
+60768,36297,47749,33376,39654,54730,64955,11248,80862,68091,26430,62546
+60769,2337,19703
+60770,2502,51331,17554,14202
+60771,80147,41284,17339,66958,61484
+60772,60086,64345,7073,67801
+60773,70706,38179,13899,76106
+60774,71838,9300,19959,18985,74600,50051,73074
+60775,45940
+60776,11941,27009,37480,25788,57947
+60777,66578,80067,15113
+60778,78865,34232,11214,30741
+60779,10771
+60780,76292
+60781,22711,5427,28850,17663,74702
+60782,52699,18466,15706,16728,74715,41169,41079,37128,53168,10571,4325
+60783,11445,44902,14343,45450,58866,45188,64182,8917
+60784,7906,19044,33985
+60785,80838,42617,39193,32021,67760
+60786,44717,75343,68302,77198,13822
+60787,46471
+60788,52817
+60789,57511,25561,822,70491,686,12607,35891
+60790,35408,5681,77305,58549
+60791,32288
+60792,72180,11203
+60793,80050
+60794,39734
+60795,55070,48282,32143,25019,37490,74535,42537
+60796,80079,28302,5588,57647,64894
+60797,77703,80099
+60798,26844,5272
+60799,16933,74720
+60800,53599,8819
+60801,78275
+60802,81476,37238,71324
+60803,55058,50333,21992,70742
+60804,72775,21102,35424,81907,41174,65949,79092
+60805,8880
+60806,11218
+60807,11751,47697,54502,16042,10155,64752,29340
+60808,37914,16554
+60809,72459,65767
+60810,66641,30611,23747
+60811,54233
+60812,75741,41586,43154,45611,64759,50503,9191,20825,41703
+60813,15322,26526,12478,40643,77037,57130
+60814,71140,60703
+60815,9918,78891,22263,46038
+60816,66190,69760,28081,4137,9300,74082
+60817,42392,22352,29177,33427,43663
+60818,11451,55640
+60819,19283,48606,27300,57680,2835,50026
+60820,46384,17417,68059,64466
+60821,77904,63524
+60822,62280,35470,44279,75700
+60823,64059,30907
+60824,49526
+60825,45341,27405
+60826,32992
+60827,61379,11733,27516
+60828,42249,52985,42680
+60829,60989,26769,16891
+60830,26833,3468,80477
+60831,80077,20884
+60832,65147
+60833,48904,48149,34770
+60834,46079
+60835,74605,18985,35057
+60836,3364,31810
+60837,52502,47859,68060,45196,5347,67021
+60838,34415,4459,3800,78415,61442,18082,60298
+60839,14920,20395,1126
+60840,77548
+60841,24465
+60842,16516,12810,39741,8756
+60843,64780,365,72722,28512
+60844,62669,20230,19718
+60845,5293,37145,11821,36249
+60846,66213,17287,57213
+60847,60457,14828,55668,78254,482,57630,15341
+60848,16338,66510
+60849,40597,57538,64829,51528
+60850,6686
+60851,41913,42578,76114
+60852,41135,13491,59236
+60853,42392
+60854,14658,6841
+60855,10165,49556,34722,23632,21561,18246,13076,48854
+60856,1597,17189,9307
+60857,72208,75491,45583,42147
+60858,58356,35640
+60859,48071,52466,49763,72082,34689,45734,66883
+60860,69580
+60861,44556,15764,46235
+60862,36303,26170,3994,64676,70754,44278
+60863,23415,61883,45139
+60864,13032,2664,64884,17241
+60865,82108,26370
+60866,73180,12383
+60867,63540
+60868,34407,9492
+60869,58912,10295
+60870,15832
+60871,41285
+60872,66063,5234,22374,8453,72112,41478
+60873,63382,31329,57525
+60874,71073
+60875,17910,33373,72732,22644,31474
+60876,60482,81834,20750
+60877,6886
+60878,41071
+60879,23272,70041
+60880,19969
+60881,18264,43418,82072,13622,44151,69887,8702
+60882,71495,10882
+60883,20974,39432,18016
+60884,16746
+60885,68601,23322,52621,60383,30390,35944,51064,67768,22778,76853,9996
+60886,31975,49399,28544
+60887,51129,67593
+60888,35858,40023,50036,54918,49726,65360,27473,30311
+60889,35361,38366,33719,45226,72124,47019,38858
+60890,32554
+60891,36569,75494,59366,11680,54919,16422,72717,59305
+60892,25067,64537,80792
+60893,68913
+60894,44313,26200,42529,3109,47165,42384,46641,74729
+60895,62435,73116,63174,48493
+60896,51317,9847
+60897,72104
+60898,62375
+60899,69847,1596
+60900,65396,34776
+60901,41214,80799,76271
+60902,31013,75455,67935,70778,31725,65320
+60903,12441
+60904,71335,57136,34574
+60905,25504,76660,23709,39596,37315,15672,45764,73156,51188
+60906,1709,51551,38354
+60907,81559,24802,30346,76175
+60908,54345,11981,30972,68045,76082,61691
+60909,6455,4528,22882
+60910,50542,37693,15645,45680,59191
+60911,9847,25895
+60912,38397,41894
+60913,20846,19637,20623,57313,64063
+60914,20699,51638
+60915,38411,59855,50490,78764,38547
+60916,25570,17183
+60917,42826,6707,13064
+60918,52091,65509,44052,24121,23028,41301
+60919,30004,51023,27973,4391
+60920,73894,16951,74912,23687
+60921,78925,42949,72242,4178,31778,58003
+60922,1738,13442,53335,18881,26167,74449,22513,13676,14129,35989
+60923,37914
+60924,61850
+60925,80416
+60926,63508,36263,34679,27690,36087,65257
+60927,60715,59943,20264,48153,8112,16177,79655
+60928,8248,49552
+60929,64617,9870,44341,6891,22807,4621,31523
+60930,41051,5119,76274,2259,47445,55889,74017,72452
+60931,33343,47657
+60932,44252
+60933,40177,46418,56511,81530
+60934,57603,65939,19229,71754,26845
+60935,35970,70336,79653,68491,60991,247
+60936,54048
+60937,6639,78672,49952
+60938,80460,12503,42392
+60939,11235,38169,55667
+60940,15484,78226,46941,42152
+60941,16333,8181,43467
+60942,15607,32298
+60943,64137,76625
+60944,47616
+60945,77709,64998,10371,64427,47968,9020,69578,47727,66182,41313
+60946,22840,42908
+60947,77859,13344,15431,71714
+60948,28738,29819,6791,45437,18098,14148,32467,32183,48218
+60949,50650,39102,14104,57322
+60950,42361,41703,64537,42427
+60951,21805,13351,68629
+60952,72118,37914,39382,58228
+60953,29529,60287,60521,64106,29103,20891,25857
+60954,3900,34256,36471,8359,65348
+60955,11151
+60956,59185,12737,47698
+60957,48694,20265
+60958,57047,41656
+60959,78972
+60960,19194,26008
+60961,12902
+60962,39793,9815,66019,59828,44809,32539
+60963,12149,33653,11169,51683,18113,7692,46294,22102,71624
+60964,25104,79337
+60965,32678,38095
+60966,28259,56536,48383,71772,28951,30110,54564,70449
+60967,21273,76316,22667,50724,33204
+60968,852,21764
+60969,2516,65460
+60970,49170,69590,12249
+60971,67533,39971,33546,56315,71962,26409
+60972,27865
+60973,23845,11714
+60974,70328,29081,64826,49528,79295,75464
+60975,75847,55519,1398,57921
+60976,69450,29391,56205
+60977,21566,12538
+60978,32562,25561,81964,80425,38160
+60979,1682,66845,66220,58740,12508,68898
+60980,43404,28143,29279,49763,45478,12349,37282,57729
+60981,30327,9890,14801,48088,66707,48849
+60982,12830,50178,46544,50941,60370
+60983,42292,48999,16530
+60984,59581,31649,51130,77338
+60985,34893,24740,63032
+60986,66834,68059,65664,27001
+60987,29344
+60988,65196,20813,3936,52615
+60989,4493,80819,57121
+60990,65445,48042,71740,29223,39855,60006
+60991,13030,43900
+60992,43870
+60993,12370
+60994,26544,76881,34861,47855,63393,48316,45922
+60995,15800,27355
+60996,5473
+60997,7315,77461,73989,72417
+60998,70111
+60999,78160,20374,18169,46840,15550,65557,79576,13638
+61000,33693
+61001,14127,47072,33282
+61002,65274
+61003,80375,963,32649,79908,20054,40264
+61004,5420,59362,61732,66541,10340
+61005,9473,30538
+61006,27672,80026,73436,76299,49147
+61007,73345,74817,23169,20136
+61008,79381,2434
+61009,81772,37757,63716,4932
+61010,37549,46081
+61011,77831,78992,82190,23838,2041,13357,20079,20343
+61012,75910,68411,39317,2651
+61013,22777,10929
+61014,61675,27292
+61015,57530,77000,13453,52420,14205,39145
+61016,40502,71882,6252,10447
+61017,29998
+61018,5526,55190
+61019,19373
+61020,67861
+61021,31303,3494,46957
+61022,50343
+61023,38977,67619,33890
+61024,71079,56162,15549
+61025,61900,33951
+61026,9740,8660,27091
+61027,75047,15059,63062
+61028,76598,47231
+61029,31885,65007,71754,22939
+61030,16407,37567,73382,45443,81681,37221,37843
+61031,72797,10603,80475,81184
+61032,42666,32052,43952,53882,44798
+61033,40483,20108,19472,71442
+61034,53671
+61035,5503
+61036,11992,11039,68326
+61037,25390
+61038,79202,80362,77703,9405
+61039,24228,45788,48008,50062,68490,11086,31659
+61040,24917
+61041,705
+61042,1807,527
+61043,19366,16956,25894
+61044,15858,3007,49358,76503
+61045,2685
+61046,10597,39562,21914,60430,48268
+61047,63670,58087,58290,28471,20785,47466,28975
+61048,81148,23364,59141,47112,14041
+61049,71337,67099,38435,68466,9726,899
+61050,21090,54784
+61051,48598,51999,16275,45632
+61052,37868,20503
+61053,3667,8216
+61054,18203,31210,62405,77021,35650,59091,68626,49238,73391,73687
+61055,36661,44891,58158,70629,28569,19731,51572,52183,53789
+61056,31755,49287,80822,9778,68644,46040,47645,78497
+61057,7851,12403,23585
+61058,19234,60871
+61059,57234,58048
+61060,51082
+61061,12739,64217,31556
+61062,12347,64860,1483,11733
+61063,14387,81082,24657,18708,64809
+61064,16711,78347,34943
+61065,66405,24895,58367,33903,46061
+61066,62771,13708
+61067,62566,66173,44627,14496,42656,10959
+61068,13239
+61069,76521,60972,37025,2853
+61070,11442,64393
+61071,37814,71555,30253
+61072,20135
+61073,75230,39703,78998,46940,15392
+61074,21020,29657,16132,52008
+61075,18958
+61076,15906,67024
+61077,54573,14722,34093
+61078,5994,27819,29388,10862,36143,25191
+61079,19509,43892,55537,71647,5815
+61080,38968,18146,67098,32653
+61081,8706
+61082,22765,38947,27003,80940,7306
+61083,38667,61426,80229,75635,29769,67080,55848,11131,44182,75184,19279,70031,57108
+61084,63593,62056
+61085,30889
+61086,17614,68422,15587,19264,49325,57338
+61087,24653,79073,8014,52707,63854
+61088,2551,1748
+61089,13944,39130,63508,52306,45910,45017,59309
+61090,37428
+61091,56748,10395,80193,12171,77187,51805
+61092,29555,48411,39084,30300,7197,46664,31190,46427,69138
+61093,70061,72560,42844,17946
+61094,3830,74032,72572,71642,42441
+61095,80760,57226,48007
+61096,14733,41740,77952
+61097,2540,25864,79274
+61098,32982,39095,47566,11210,41883
+61099,52971,73661
+61100,30996,11594,40175
+61101,80282
+61102,15309,47551,48953
+61103,2051,25637
+61104,21601
+61105,14541,78828,32168,10329,56843,58466,54781,7069,53760,72827
+61106,11346
+61107,39471
+61108,23374,14811,5225,72431,67872,71214
+61109,59417,39818
+61110,20479
+61111,52167,3262,32948,10701,19869,20428,68017,39837
+61112,48436,52886,21463,23720
+61113,18686
+61114,52239,47805,58134
+61115,25983,14558
+61116,77754
+61117,65536,60696,48143,35669,30490
+61118,788,73683,4920,4255,34169,37012,73446,47007,9852,77906
+61119,64194,5271,62957,59470
+61120,52879,13676
+61121,10720,40290,7115,59062,56364
+61122,28400,38332,81540,27105,6677,79886
+61123,76494,62871
+61124,72198
+61125,60791,48852
+61126,61375
+61127,45081,19482,17385,63869
+61128,3878,24665
+61129,4405,1809,59387,61783,58041,76092
+61130,31451,20850,31572,51797,30186,56371,42408,6389
+61131,65398,60642,35576
+61132,13872,66891,17829
+61133,53912,75135,31872
+61134,55284
+61135,17602,13325
+61136,68075
+61137,32254
+61138,55613
+61139,24663
+61140,66695,9386,45678,65355
+61141,41852,66602,32624,36982,11381,8058,12196
+61142,54578
+61143,24230,59680,8078,41768,6253,67891
+61144,73668,65017,74167
+61145,65687,55954
+61146,72020,34952
+61147,57396,14709,60107,71174,48376
+61148,8240,7084
+61149,15085,11837,63321,41628
+61150,71031,22384,70963,50522,64749,71249
+61151,25055,61398,771,4959,81372,39057,41196
+61152,47583,32958
+61153,39375,64613,47449,74084,62757,41292,72440,43761,68631
+61154,61738,55793,5632
+61155,73331
+61156,35355,71327,69773,65133,24208
+61157,889
+61158,7714,13945
+61159,27331,9275,59074,79284,43360
+61160,6192,50786
+61161,68412,53516,81645,28234,58336
+61162,21852,70554,71479,8664,38578,37153
+61163,58404,36334,43646,29860,15225,81258
+61164,20454
+61165,9821,44347,76128,34685
+61166,79934,24887,13073
+61167,29694,50298
+61168,71965
+61169,71495,2766
+61170,17131,12107,27361
+61171,661,3607
+61172,77836,40732,1304,60556
+61173,38155
+61174,49332,47183
+61175,1483
+61176,33635,29432,22999,53056,30349
+61177,3274
+61178,5106,36838,53768,15748,81378,74753
+61179,10396,236
+61180,45334,78981,21914,78665,28564
+61181,73070,49401,2773,45709
+61182,12741,60874
+61183,67001,23340,79699
+61184,64387,37453,218,74732,22304,2510
+61185,16199,62556
+61186,76332
+61187,45651,81714
+61188,31125,46137
+61189,1986,42109,40375,14135
+61190,53160,48280,26706
+61191,43664
+61192,49087,22595
+61193,59823
+61194,3258,57362,52818,38831
+61195,81740,26103
+61196,9161,26501
+61197,75057,25656,30131,21474,9911,67989
+61198,9071,19075
+61199,12333,48370,38913,62297,25091,68269
+61200,13152,48185,324
+61201,64651,10700,35400,42124,76621,45619
+61202,65913
+61203,14098,1645,79532
+61204,55593,42621,72513
+61205,24118,71486
+61206,34548,39715,41348,62778,79466
+61207,32626,13062,48630,18487,44590,38036,67315,64310,44881
+61208,66238,18392,25189,21417
+61209,47010,66474,8208,8649
+61210,35169,46610,38415,10032,35338
+61211,70858,28512
+61212,41954,51248,17849
+61213,42270,2591,20461,27147,34716,427,66344
+61214,38068,31983,76002,27212,55407,44450,59620,63607,2170
+61215,65886,57148,8876,64951,67077
+61216,26404,32528,65064,40213,37658,31252
+61217,12910,49886,1286
+61218,65602
+61219,18690,27935
+61220,23945,46286,67244,8766,43882,21284
+61221,5045,27552,29008,79632,12590,26233
+61222,77066,77050,80471,59801,42158,10910,36446
+61223,17992
+61224,75721,7179,12561,71375,4620
+61225,14120,80166,36501
+61226,71064,58627
+61227,30590,31180,55374,47176
+61228,40045,54336,60057,31180,23186
+61229,69362,45033,58759,20399,62293
+61230,13548,21631,71821,36839,15154
+61231,61758,63284,20594,37200,15
+61232,61417
+61233,17875,5308,24621,3952,65209,13692
+61234,57988,80224
+61235,39759,20148,81044,43967,33146,20903,6792,49772
+61236,80813
+61237,80567,44791,19736,8029,11535
+61238,66827,69217,77059,70711,12918
+61239,77145,7182,16410,20031,80327
+61240,43202,10235,6530,1098,66580
+61241,73880,16289,4889,23021
+61242,61531,44787,15811,62139
+61243,16737,23923,71811,12047
+61244,71262
+61245,79184,53919,50278
+61246,62830,36514,70854,10075,40119,19855,66193
+61247,80646,73008,9849
+61248,60793,60723,7934
+61249,48459,64215
+61250,36344,51987
+61251,21981,8248,28838,37393
+61252,45622
+61253,72851,49825,62249,79432
+61254,41235,44562,4410,33715,1934
+61255,13966
+61256,71718,75862,26299,63598,27473
+61257,65979,27225,15201
+61258,22507,30807,59067,47656,44344,44898,28876,12092,11497
+61259,59224,44673,67103
+61260,73682,28730,79225,8665,49712,20745,20599,74293,22006,58874,7622
+61261,68460,39421
+61262,62833,21001,26202,63693,44881
+61263,33444,21424
+61264,78942,24224,55701,78510
+61265,44661
+61266,36201,60135,69241,38887,14144,38340,61455,37428,39473
+61267,4601,62618,700,43844
+61268,47403,37699,40733,16371,0,13817,67281
+61269,7921,79024
+61270,46859,76870,76799,80721,81016,22701
+61271,76610,25386
+61272,16889,16606,38493,69716,56619,41638,35197
+61273,55370,22607
+61274,54338,37044,21447,25420,60489,34736,32602
+61275,26211,27661,15576,57707,17609,54477
+61276,48943,21288,27786,80700,58552
+61277,76238,77903,3379,36652,37486,66454,72237,59976,19214
+61278,19199,32774,980,53778,54905,78236,42004,64515
+61279,38615,37884
+61280,2149,40541,4935
+61281,58575,72132
+61282,4243,33979,37233,22616,19934,27590,78848,46946,62829
+61283,80450,64502,51159,37553,26966,30638
+61284,54216,28653,47005,6831
+61285,22537,78648
+61286,54458
+61287,76576
+61288,27212,80205
+61289,34983,49723,29024,41368,71071
+61290,40676,68573,73643,1404,74589,78529,1044,47302,81067,41833,24747,3767
+61291,49984,1483
+61292,34477
+61293,38508,63295
+61294,33326,57584,23545,28976,67062,23875,61339
+61295,39569
+61296,76223,75232,43878,82112,78648
+61297,54735,73577,40697,13133,21787
+61298,77869,37191,12181,60313,33507,19116,33717,76002,56957,54571,47204,18230
+61299,49326,20749,80768,44520
+61300,65155
+61301,45526,10810,9291,65885,52772,77569
+61302,10765,39009,12544,56379,59634,36104
+61303,12753,70532
+61304,16793,17787
+61305,68910,31812,60473
+61306,69308,13693,48817,80841,68265,2478
+61307,13861
+61308,17014,52448,15502,8142
+61309,73428
+61310,46991,40619,68662,25540,56448
+61311,33250
+61312,52158,51663,82004,82122
+61313,15783,65311,2844,56385,39488,78328
+61314,54986,47988,8805,37557,71462,58645,67355,828
+61315,39165,77643,18459,49098,40321,31027,14586
+61316,43301,76417
+61317,24833,21735,24701,17529,45390
+61318,44648,19164,72092
+61319,25266
+61320,50363,32979
+61321,7054,19317,30354,4217,13115,74857,16507
+61322,26253,31474,76606
+61323,31725,57974
+61324,5146,80978,55859
+61325,60741
+61326,54794
+61327,30013,1171,68649,40460,78937,75027,17454,52620
+61328,38174,46951,63403,25681
+61329,55157,79834,50108,38894,57862,74461,68286
+61330,14507,57261,60513,29196
+61331,3141,81508,76911,35724
+61332,1408,52564,6733
+61333,11207,44427,64374,33047,60778,51054
+61334,49662,56616
+61335,58560,57229,30704,568,75408,71559,13736,71514,75427,20112
+61336,75136
+61337,41524,60612,2134,29357,45539,69274
+61338,28023,67764,60588,52123,62790,4947,63138,64708
+61339,5628,37681,46812,50929
+61340,27556,47977,73145,27756,63603,47688,1498
+61341,23342,8387,63591,20130,37090,45944,68005
+61342,24436,81783,12546,50899
+61343,73735,41299,34380
+61344,46915,7353,51226
+61345,25370,17429,45923,40019,47876,17722,48431,76645
+61346,16174,2669,53115,19872,7869,29673
+61347,17373,70061
+61348,81367,16592,78639
+61349,41569,54231,40990,16548
+61350,26705
+61351,25038,39779
+61352,61075
+61353,43409,38170,42795,51686
+61354,56827,54407,32131
+61355,28705,9846,53713,51611,32942,5315
+61356,36967,36500,17071
+61357,25305,33964,60776,33342,72264,61704,16855,59195,25593
+61358,76198,64005,66182,43852,18960
+61359,1629,38280,36344
+61360,35346,71893,59530,64641
+61361,5630,38700,15772,18809,12242
+61362,75203,75845
+61363,33355,65374,79990,54666
+61364,20231
+61365,15122,78856,13226,40015,31662,19238
+61366,29534,12582
+61367,16585
+61368,14512
+61369,69694
+61370,25334,2823,24625
+61371,80977,53997,17485,11219,33881,38482
+61372,36149
+61373,6948,2088,29691,42257
+61374,62071,73012,48763,10713,12081
+61375,60331
+61376,43366,25031,26099,66151,14400,49212
+61377,46607,26129,69197,30624,31757,31081,81619,28486
+61378,30863
+61379,73414
+61380,24203,60542,23839,35675,20857,58861
+61381,15561,65289,62327
+61382,34361,56719,37275,11007,47752
+61383,46951
+61384,52383,35672,3554,70996,57582,51753
+61385,31353,23114
+61386,23681,40274,60244,58711
+61387,66927,13665,31706,47749,10431,39340,32544
+61388,17485,17581,29854
+61389,12790,51663,68465,41803
+61390,78399,60135,21577,70848,3850,52219,14473,26101,8540,20343
+61391,73684,33916,61285
+61392,14856,47115,69866
+61393,40017,50534,69948
+61394,468,23959
+61395,28189,66253,56119,66328,62164,36981,68703,59057
+61396,16032,65479,1624,70222,40826
+61397,24075
+61398,45795
+61399,36371,42070,41492,62696,73542,78498
+61400,1386,24590,13660,70756,36932,8628
+61401,34358,69085
+61402,3651,77065
+61403,75120,62491,32651,59653
+61404,42282
+61405,10265,8828,46459,603,79278,75226,71289,20318
+61406,53370,77921,9287,79386
+61407,29202,55434
+61408,52869,58573,39397
+61409,82130,62690,39833,24914,17885
+61410,52459,24507,65702,51488,47380,71033,37867
+61411,56245
+61412,27392,35556,44499,27294
+61413,20988,1017,50002,4050,2261,19508
+61414,51409,7939,59932,59833
+61415,15395,55434,43433,76906,1530,33225,58961,25980
+61416,55993,52106,38558,62489
+61417,37109
+61418,63181,22011
+61419,5699,78497
+61420,75708,65438,26273
+61421,20352
+61422,67981,68777,353
+61423,58973
+61424,53182,42103,48326
+61425,33696,81952,81597,41949,65039,45183,58769
+61426,16163,46713,77165,29611,80078,65588,81449
+61427,57440,40831,25444,2362
+61428,50370,48703,13114,22765
+61429,62508,20407,33427,31199,73686,78162,17076,80428,11576
+61430,15339,80799,81327
+61431,78591,45005,56043
+61432,39963,70710
+61433,3243
+61434,10501,60151,4854
+61435,53824,74912,64407,39154,47337,60003,38352
+61436,75592
+61437,74375
+61438,79632
+61439,36605
+61440,28993,43358,4151,29306
+61441,42554,68407,18867
+61442,46639,66920,31449,46617,38129
+61443,42474,78211,17411,27375
+61444,61410,5085,43214,22440
+61445,19738,578,79823,46107,52452,10917
+61446,35702,31129,60048,63452,80708
+61447,51663,71071
+61448,71070
+61449,57396,62375,35602,71478,39433,61854
+61450,36782,81165,36498,27018,5603
+61451,38403,48276
+61452,23732,38703,60266,81002,74967
+61453,63112,27127
+61454,9567,42152
+61455,43897
+61456,3419
+61457,35049,67647
+61458,81811
+61459,20414
+61460,69281,5345,41265
+61461,33204,72253,6664,61657,39130
+61462,54365,79066,79006,16260
+61463,30475,66434,23452,71676
+61464,34682,12479,3492,81324,65976
+61465,13536,56391
+61466,3550,62880,71898,70910,40028,39112
+61467,3591,65595,1814,12087
+61468,24868,3144,44260,27422,13688,70399,72830
+61469,39722,73397,35822
+61470,52015,44016,12340,36445,46912
+61471,6810,81484,31563,69082,6342,74564
+61472,50318
+61473,62541,64708,60792,28636,20375
+61474,22316
+61475,6815,13296,38227,20096
+61476,78915,64345
+61477,45401,40535,75674,30328,23070,23376,42511,76120,46000
+61478,65799,78674,53225,67787,74641,69415,3810,33056,46192,47996,43312
+61479,37849,33085,57210
+61480,12568,19695,66721,32376
+61481,29643,60621,7984,2270
+61482,29672,51795,26276,47825
+61483,35768,74880
+61484,79258,12362,79016
+61485,52711,59469,28971,65149,50745
+61486,14972,59114,75293,3369,46419,81041,34602,4732
+61487,34974,67999,43664
+61488,70559,59892,42810
+61489,39661,46923,55999
+61490,72990,9058,68575,38938,16478,31259,70318,79388
+61491,77185
+61492,54842,69514,11767,71147,567
+61493,61307,79633,61193,15632,66362,22634
+61494,49381,30677,30931
+61495,63413
+61496,68698,55259,56642
+61497,24381,31805,853
+61498,43044,76936
+61499,21410,40129,47179
+61500,25550
+61501,32461,38032,27586
+61502,35134,49864,73382
+61503,24705,78957,62214
+61504,64896,19189,54431
+61505,13450
+61506,49884,59783
+61507,48496,63952,28724,4569,22445
+61508,80289
+61509,5049,23116
+61510,20183,17581,37029
+61511,77170,66584
+61512,12076,13882,7043,8629,4237
+61513,73555
+61514,12441,15380,15630
+61515,59772,34697,20889
+61516,21195
+61517,26107,15571,45834
+61518,43784
+61519,13799,48818,63839,49154,76172,19344,52124,35690
+61520,60232
+61521,76704
+61522,64512,10887,67001,74863,29725,41664,69407
+61523,11131,4483,20406,52347,28007
+61524,80760,54664,30612,39444,1554,71166
+61525,14305
+61526,68366,30788,22454,63955,30434,16127,39138
+61527,36578,69974
+61528,37919,7045,22562,473
+61529,4706,43467,53588
+61530,62191,71337
+61531,41822,67888,10119
+61532,80883,37369
+61533,40752,57038
+61534,24948,41645,13659,38589
+61535,55545
+61536,48035
+61537,40961
+61538,4575,76761,30470
+61539,43976,81549,3990,22441,9694
+61540,45213,41829,62048,68695,71803
+61541,44806
+61542,9024,5857,8692,61845,34124,70149
+61543,29339,56170,1691
+61544,15795,65115,36486,4802,71560
+61545,29587,79106,54204,121,78056,39927
+61546,16005,28476,17722
+61547,58219,70396
+61548,17992
+61549,13441,73954,76683,74134
+61550,45469,43086,53210
+61551,67061,1543,5714,10358
+61552,55132,61926,57990,48011,74565
+61553,59682,39381,61755,61028
+61554,56206
+61555,67103,68763
+61556,24390,77350
+61557,63771,24184,13059,21670
+61558,40023
+61559,26023
+61560,48752
+61561,11375,31606,34493,12920
+61562,29997,24095,66961,15831,61421
+61563,14076,26365,15691,73413
+61564,51391
+61565,67367,22866,57630,48262,180,66536
+61566,52797,16186,52044,46964,67224,27002,17089,72270
+61567,12303,283,74180,69517,80243,81236,74573
+61568,37396,54388,81579
+61569,24117,63481,18228
+61570,22664,46627
+61571,28302,28044,39889,70180
+61572,54477,61870,53796,17103,78852,75690
+61573,73761,48692,64967,74729,10525
+61574,69611,54657,65943,23004
+61575,55682
+61576,37548,80370
+61577,5652
+61578,53220,8431,2743,68640,78816,27189,9401,65165,80209
+61579,53194,76042,64174
+61580,8984,44626,61584,80536
+61581,33436,1932
+61582,51895,17967,1505,17356,31090
+61583,5285,20887,77890,81391,29642
+61584,32969,54431,37507
+61585,70076,7078,8022,40238,35969,36566,6070
+61586,70098,47918,50813
+61587,47657,76345,29717,19769,29402,18302,33274
+61588,37308
+61589,42638,27220,76958,59995,82181
+61590,8445
+61591,48459,29141,58160
+61592,72167,69974,50656
+61593,17125,81942
+61594,49669,76224
+61595,10971,36540,13511
+61596,4365,17685,2437,77964,53990,15126,7565,2741
+61597,54685,31518,35499,41931
+61598,51179
+61599,19855,53121,14222,74496,45748
+61600,496,19762,44887,17235,28521,7668
+61601,56835,68669,73427
+61602,30354,41288
+61603,51797
+61604,61861,63627,66234,37535,50401
+61605,55327,19332,1147,37927
+61606,76369
+61607,67477,4947,49777,78409
+61608,74057,27614,78052,5819
+61609,61667,23354,42347
+61610,80688,42385,78430,60603,32732
+61611,70170,52525,30953,20981,1884,15534,77899,51699
+61612,14677,15904,48273,25109,39882
+61613,50503
+61614,58377
+61615,13731
+61616,18790,7963,35528,39186
+61617,63536,39594,78843,5216
+61618,37169,2962,39045,38495,78842
+61619,53158,12360,24787
+61620,53538,50335
+61621,30703,51338
+61622,21813,4176,19466,30124,52070,42028,58108,44044
+61623,5219,43207
+61624,837,54431
+61625,79841,54791,81740
+61626,25627,45166,14790,9931,55959,73912,48314,42606,58002
+61627,25648,38877,23331
+61628,73772,20793,8514
+61629,27371
+61630,27762,694
+61631,8993,18581
+61632,1119,36719,16372
+61633,54275,73077
+61634,22129
+61635,78628,36611,9639,9576
+61636,31404,23278,35069,57898,66845,67182
+61637,41492
+61638,41249,20772,16050,45253,15509
+61639,42916,54812
+61640,44639,53425,19485
+61641,1779,25075,18425
+61642,29714,26516,7737
+61643,65486,39919,68540,19070,37659,53921
+61644,41549,24148,34994,76118,31025
+61645,69779,44795
+61646,53690,71268,1436,41485,63466,30509
+61647,38252,6960,33633,481
+61648,47744,53865,49571,49707,63111,2257,42159,20
+61649,14663,22457
+61650,19735,15936,11898
+61651,65869,2720,18849,27523,24658
+61652,81164,19335,23604,56251,16274,80685
+61653,75973,76745,36002,2159,20462
+61654,53518,10359,69423,3548
+61655,6798
+61656,49990
+61657,27465,61962,20614,12176
+61658,57786,71014
+61659,41064
+61660,14270,79771,26059,21171
+61661,45341,58233,76327,60420,74360
+61662,56948,73825,35312,74155
+61663,41277,60549,69277,21368
+61664,74781,43951,24748,47137
+61665,74341,57469,43719,42458,68274
+61666,33429,48821,80447,11412,52193
+61667,54338,19936,38253,1164
+61668,57921,36325,5227
+61669,64756,66731,57256,30403
+61670,21935,78034,33907,38044,15728,64626,55828,17446,76027,6018,61438,32749,76450
+61671,75841,9967,29521,12013,37457
+61672,27455,81042,21891,46091,65377,67769,59344,23118,44935
+61673,64559,46256,21593,55964,24043,23391
+61674,63080,69483,66596
+61675,52807,31786
+61676,19322,16773,34646
+61677,36661,74108,68692,55918,56046,65286,64752,15959
+61678,66464,66258,38235,78233,37221,1483,14002,75334,54327
+61679,12330,53584,12609,58341,71490,40520
+61680,54179,9893
+61681,73031
+61682,34366,15734,26,19600,45908,12542,58689,65967
+61683,3591,21667
+61684,41159,26323,54969
+61685,29497,376
+61686,55986,79249,77301
+61687,1281
+61688,73406
+61689,9172,17598,24424,41600
+61690,66449
+61691,47302,24690,61259,17805
+61692,78839,7178,48948,38733
+61693,34059,9822,66688,45948
+61694,79659,5828,67336,65586
+61695,65321,29012,12013
+61696,50306
+61697,52055
+61698,14655,14722,72249,70692,37067,5811,42587
+61699,30083
+61700,39466,76786,68299,53773,57019,24295,65289,15865
+61701,25681,81443
+61702,72111,62096,77484
+61703,54471,69718
+61704,59130,63762,22927,33063,58003
+61705,70439,8026,67369
+61706,54959,24681
+61707,21344,12917,36848,69516,46459,80896,80077
+61708,45774,60153
+61709,56320
+61710,67309,66684,50878,31619
+61711,66195,51675
+61712,8362
+61713,75477,68469
+61714,73510,71499,48541
+61715,61104,77657
+61716,13307,4331
+61717,55065,19614
+61718,62066,13152
+61719,47752
+61720,76985,62613
+61721,61499,16194,20592,50266,24171,42471,6882,43839
+61722,63564,15699,22720,27879,55717
+61723,42249,49094,9600
+61724,61548,23626
+61725,42890,45277,32599,29126,16862
+61726,41492
+61727,66510,2617,66263
+61728,11149,50097,20754,40984,62719,40228
+61729,47374
+61730,34923,18244,12822,66325,51402,18014,57975
+61731,25615,23689,26392,28943,67291,29457,19930,18958,33461,49433,76972,9801
+61732,3351,70171,30729
+61733,22428,54059,69049,46332,3680,81426,65445
+61734,44125,31388,31490,12941
+61735,6518,79184,68624,35406,73116,67192,42277
+61736,8419,26289,37451
+61737,18974
+61738,40680,65526
+61739,35193,31780,74941
+61740,63801,18228,20870
+61741,62613,56946,9616,33130,2197,5261,73466
+61742,81604,3099,44422,68220
+61743,2955,26220
+61744,56196,48491,45593,64779,18923
+61745,77766,67238,38160
+61746,22932,56566
+61747,40833,35864,13221,15112,47646,71945,39107
+61748,77515,13136
+61749,40286,15624,79901
+61750,21193,21253
+61751,42611,42715,57256,6305,45327,10329,73743,19307,71827,80963,16440
+61752,71554,9921,29018
+61753,11575
+61754,48596,38599,32573,7918
+61755,14718,37459,25169,9144
+61756,61435,64065,47469,77030,32,78492,7803
+61757,48925
+61758,58965,30792
+61759,25628,36391,39520,52520,48948,14583,23641
+61760,61454,2511,11580,80335,38709
+61761,4262,72662,79933
+61762,23668,24116
+61763,70172,31471,50919,64038
+61764,2404,867
+61765,39145,36534,81973
+61766,60970
+61767,60369,15921,36459,46741,18797,21163,40136,10069,4183
+61768,44844,13021,30689
+61769,62234,59324,24740,36113,70563,49581
+61770,37855,41391
+61771,21962,52778,18773,55273
+61772,17266,62254,36158,72104,402,11215,74488
+61773,3378,39892
+61774,62183,33951
+61775,52783,68347,73178,9823,22994
+61776,81740,21299
+61777,81994,675,17581,36825
+61778,62197,66485,80084,32623,2400,49601
+61779,59785,22663
+61780,14333,38151,53389,30004,35937
+61781,54727,27178,73261,38096,12971,60081,3106,45666
+61782,9861,68034,80542,26892,28297,62406,50879
+61783,15959,40743,41610,30520,35432
+61784,13635,80425,52502,25147
+61785,14923,37165,78349
+61786,21952,58070,14467,64304,24618,81838,26046,18361
+61787,56722
+61788,8269,60285
+61789,2513,1704
+61790,33100,61369,54135
+61791,12594,3591,16088
+61792,46516,71649,20745
+61793,47245,64917,19479,30014
+61794,7792,66651,78319,34375,70890
+61795,14322,4293,47808,37855
+61796,5647,28609,72114
+61797,60940,12523,46439
+61798,74223,23842,20626
+61799,22118,55937,28571
+61800,348,42278,11662,20244
+61801,561,41100,79103,63075,43773,16957,7298
+61802,36540,33008,79666,75549,9591,26507,33714,73073,49711,41165
+61803,67668,19904,50700,79591,56863
+61804,12861,9408
+61805,45834,67090,43093,15201
+61806,6637
+61807,42361,42863,80768,18361,23263,54210,56863
+61808,49052,60281,40950
+61809,67504,53382
+61810,27645,53511,39154,23573
+61811,81237
+61812,49045,29447,7432
+61813,21439,26024
+61814,51174,71385,18315
+61815,76584
+61816,4170,32184,7357,75026,33965,79082
+61817,55889,29994,11012,57468
+61818,77288,38941,9677,31818,81167,38303,27844,11593,41997
+61819,20833,54838
+61820,42468,34830
+61821,28548
+61822,62750,46897
+61823,7651,31082,8193,59307,73112,44691,80488
+61824,48598,75191,39503,8312,15767,68812,18515,23838
+61825,81428,67153,10215,24705
+61826,56363,13607,21826,14686,17752,8382,37695
+61827,15545,40393,61342,6869
+61828,19153
+61829,40397,14741,41379,64817,26042,57663
+61830,62084
+61831,57689,49211,39099,5489,57600,46352,49206,41850,38885,16893
+61832,29578,40510,7983,66820,62372,80113,22089
+61833,56930,64658,6267
+61834,22480,10614,64984,17835,75642
+61835,31475,6999
+61836,42716,22312,47434,27499,8158,35203,68251
+61837,29584,44220,28938,30213,67246,6441,53253
+61838,37301
+61839,38396,60396,40114,15426
+61840,10108,10608,5734,27855,4091
+61841,21300,49350,8317
+61842,75227
+61843,12087,58822,56147
+61844,28155,40448,75332,53305
+61845,54599,21043,60878,41543,7549
+61846,42049,59530,8928,79735,9213,34326
+61847,32626,43951,13571,32505,1988,60571
+61848,71271,39525,20692,75975,35553
+61849,3857,75923,42375
+61850,37308
+61851,32585,81243,80984,78023,15607
+61852,21882
+61853,30045,23863,5907,5889,77021
+61854,66771,31600,25466,1505,72399,43989,47195,38768
+61855,57735,82120,29353,6204,19124,50192,35466
+61856,58001,65914,41117,42330,79415,60066,46346,43559,9514,73148,43876
+61857,8101,18195,47625
+61858,75115,33272
+61859,9601,44285
+61860,21886,38323,42467,33585
+61861,75083,72194,20404
+61862,24277,74375,6540,26383,18408,44787,43424,36201
+61863,81626,41810,5930
+61864,34202,15693,38549
+61865,37141,1301,21592,65329,82020
+61866,41906,56583,75222,34836,31018
+61867,2108,22806
+61868,14645
+61869,45788
+61870,26992,28961,63997,9327,71330
+61871,63330,23320,54516,23770,48308
+61872,19043,10737,74805
+61873,58343,70077
+61874,73742,33529
+61875,42933,44230,34744,4270,10168,26880,25067,60785
+61876,60096,29254,57751,20636,5921,27606,35565
+61877,35837,32598,73156,53480,10978,18299
+61878,71415,61147,47324
+61879,27923,12103
+61880,21813
+61881,18805,42422,52520,64269
+61882,56992,34377,53312,29497
+61883,55238,47657,45257,68993
+61884,54725,18220
+61885,19360
+61886,42470
+61887,39179
+61888,6526,34487,14139
+61889,11070
+61890,31460
+61891,51921,41402,52513,51752,47839,76010
+61892,62020,65178,41370,28071,60036,15608,34681
+61893,26890,77317,65586,10727
+61894,69650
+61895,48998
+61896,21409
+61897,43473,1850,43439,22403,81264,1191,12047
+61898,51495,11239,64674,76990,78669
+61899,69309,40751,68775
+61900,66997,53789,30993
+61901,16168,4923
+61902,57017,57762,29306,40474
+61903,14040
+61904,54436,39857,32788
+61905,56168,3872,941
+61906,15453,15240
+61907,39983,75708
+61908,59428,73099,36526,64016,53871
+61909,80015,69137,69085,52920,16727,10170
+61910,56728,55946,45917,77267
+61911,53976,63626,9510
+61912,55428,26744
+61913,61058,58980,49745
+61914,22312,1554,55898,31250,20751,36192
+61915,76097,74538,70256
+61916,19544
+61917,3258,80372
+61918,52965
+61919,37705,10846,63800,11681,70392,49983,59928
+61920,76292,80458
+61921,45453,23742,57767,14366,59297
+61922,11980,34464,20664,26992
+61923,63889
+61924,30573,3234,49861
+61925,16469,73561,11056,23501,11133,5974
+61926,33898,80619,63782
+61927,80210
+61928,59601,52345
+61929,37075,4425,77234
+61930,20034,66394
+61931,74256,46467,35621,2990
+61932,31227,80366
+61933,46710,34059,6878,11298
+61934,73872,7890
+61935,63904,79514,20112,46309,33442
+61936,22613
+61937,9663,3245,18796,26916,51849,64759,32359
+61938,52124,50534,57436,36586,12127,76040,8647
+61939,18395,7615,38758,55875,79613
+61940,31921,17975
+61941,15739,2823,45242,40346,62153,80607
+61942,64877,59891,42367,72818,5062,30085,55741,27458
+61943,10314
+61944,32575,12246,69964
+61945,30611,4080,49104,45821,61552,13694,39622,38775
+61946,4728,51362,68478
+61947,41453,37966,13932,38574,11093
+61948,78936,75277
+61949,61714,5066,23171
+61950,46914,42735,75201,50870
+61951,5418,32554
+61952,41370,61910,41046,61237
+61953,65448,32172,3847,72630,29633,1080
+61954,71794,32360,27850,58391,34608
+61955,13548,48840,62174,5462
+61956,73466
+61957,42564,80421,24494,29115,15235
+61958,4302
+61959,17035
+61960,40378,56220,8702
+61961,39446,41561,53832,18546
+61962,73115,14615,68537,79517
+61963,47769,37658
+61964,21601,22425,38297
+61965,9567,66649
+61966,10051,25508
+61967,59820,62007
+61968,47606,1311,66589,28070
+61969,18060,13115,18681
+61970,62698,52065
+61971,12007
+61972,34413,47489,73903,34736
+61973,34587,61226
+61974,35081,45937,10561
+61975,48879,42421
+61976,1773,62433,35724,57018,46099,44247
+61977,72319,66066,28231,5005,18349
+61978,50167
+61979,79514
+61980,51112,33577,77543,49297
+61981,10838
+61982,54121,76058,44041
+61983,40287,74869,7839,57867,56069,19405,74528,2854
+61984,34981,58298
+61985,58840
+61986,68629,48706,15880
+61987,65285
+61988,42617,8893,64960
+61989,64597,3560,12577
+61990,14453,20420,37078
+61991,64928,12009,68413,74669,50602
+61992,1616,5725,47214,22043,7786,39316,48763,58153
+61993,36639,55262,44309
+61994,35112,979,63744
+61995,7909,30983,82112
+61996,44773,27799
+61997,66203
+61998,49142,20361,76132
+61999,29859,37446,71994,76799
+62000,7029,78448,69398
+62001,21981,57437
+62002,79471,47896
+62003,28809,29360,43683
+62004,61842,36325
+62005,79624,6188
+62006,10846,54470,53361,37435,40063
+62007,40844
+62008,45500,79433,24423,51570
+62009,73762
+62010,3961,23774,12920,28123,26525,80223,69504
+62011,49600,10885,54862,44763
+62012,65704,4052,7191
+62013,23077,58337
+62014,9522,23256,40818,21672,21259,37438,71574
+62015,61053,24806
+62016,1079
+62017,25041,67485,80588
+62018,34464,77638,65994,49308,70281
+62019,77201,17194,53484
+62020,3451,5114,8140,36542,58853,31842,77778,45670
+62021,17999,2149
+62022,73372,24104,41725,43906,71680
+62023,3526
+62024,2065,62171,9215,5627,53081
+62025,74301,37322,17518,56097,59632
+62026,40893
+62027,68819,81930,40899
+62028,15244,70703,64377,35112
+62029,77294,16550
+62030,12134,59053
+62031,57978,16298,40614,8701
+62032,67781,25855,32390,74194,6547,41964,42005,15008
+62033,14771
+62034,73551
+62035,15315,36313,41764
+62036,39547,54364,10708,63554,41712,56556
+62037,73157,51910
+62038,23020,43712,10683
+62039,41248,79052,52726,69951
+62040,7286,30701
+62041,3125,12753
+62042,72418,36390,52865,18170,13827,36567,58787
+62043,2898,61671,47818,48725
+62044,14819
+62045,18556,72078,45455,17613,26075
+62046,66748
+62047,75261,47224,60396,47245,10957
+62048,10944
+62049,62681
+62050,31013,5615,28843,34711
+62051,14335,59276,45,12053,75797
+62052,44630
+62053,57245,50388
+62054,29511
+62055,3023,68360,24995,10223
+62056,17947,17183,50407,55782
+62057,81980,55560,37223,1381
+62058,64904,3783,32799,33073
+62059,79308,25587,59269,47715,25630
+62060,63786,38408
+62061,61715,69995
+62062,30851,1095,9338,80123,5481,72588,31183,16553
+62063,7610,22175
+62064,43905,19219,14645
+62065,29935,1218,36379
+62066,5400,20692
+62067,67194,78027
+62068,39436,25552,20450,28081
+62069,56374
+62070,60012,80624,72713,64333,23930,21477
+62071,9731
+62072,34408,55526,16351,81602,27275,18301
+62073,78912,1269
+62074,65727,27309,33850
+62075,76180,7325,41552,40349,16918,1459,7441
+62076,21190,64717,53053
+62077,45384
+62078,5983,45863,51267,81003
+62079,29913,26439,51113,13832,46954
+62080,3319,52436,58779
+62081,57521,68449
+62082,10718,20276,4227,43533
+62083,40462,59164,68271,6990
+62084,53891
+62085,20981,8902,43671,50283,50924
+62086,4875,72555,23904,73870,51387,65565,58106
+62087,65371
+62088,59690,7445,57878,33755
+62089,55174,12811,49448,55648,17658
+62090,62273,58617,51419,77223
+62091,6590,60304,32830,38323,33776,26652,71528
+62092,60488,59758,67817,41659,29521,31003,9004,73958,56516
+62093,28388,58795,36819,13473
+62094,50556,3920,61943,38729,3269,661
+62095,18034
+62096,64648,75072,28531
+62097,4300,38694,54346
+62098,11617,7551
+62099,68943,34916,47590
+62100,71962,66997,7295,56502,32650,33893,2400
+62101,67127,33235,17131,70271
+62102,41674,30053,62360,33638,29169,72532,79339,51901,18550
+62103,45856,21562,33963
+62104,46216,18295,34855,61532,21472,4830
+62105,37250,52685,20133,40517
+62106,1873,58875,78543,34018,53484
+62107,13006,12320,55824,3067,18193
+62108,39421
+62109,74783,78319,81926,66642,69237,59994,21424,81397,38825,47560,55212,49355,20791,38162
+62110,16651,42830
+62111,32,18785,39141,21094,59878,25652,56925
+62112,16137,11414,29162
+62113,8644,39315,48048
+62114,2776,18250,19994
+62115,2192,35131,37220
+62116,9152,21068,52396
+62117,28264,17209,52092,20458,20729
+62118,38422,67332
+62119,56254,34345,65559,58294,14127,36696,15272
+62120,40112,1245,28845,72424
+62121,15481,695,41202
+62122,58297,14484
+62123,73602,47030,26495
+62124,48852
+62125,81020
+62126,40382
+62127,41810,7472,74043,52867,13724,31026,61093,76028,44509,48245
+62128,73414
+62129,62558
+62130,60195,57196,59481
+62131,38804,71535,73936
+62132,32942
+62133,36138,25215,80178
+62134,37918,26532,76669
+62135,9247
+62136,300,78257,80526,73545
+62137,30974,73474,18828,13080
+62138,31743,69809,9789,73452,64744,54722,33521,35289,56028
+62139,51253,34234
+62140,9234,44148,30534,38858,17779,65144
+62141,65939,47181,7690
+62142,50329,71928,6426
+62143,50678,76,45849,35558
+62144,40560,81318,2561
+62145,71662,80578,16880,58560,64349,36164,28420,74201
+62146,22146,54608
+62147,40552,76963,34441
+62148,50810,66598,21759,35582
+62149,24393,22101,7644
+62150,72572,13696,46134,55511
+62151,81330,23204
+62152,25573,853,61675,46561,53981
+62153,28778,51170,60646
+62154,27511,68698,6353,4723,7771,18215
+62155,26832
+62156,62009,25788
+62157,727,63312,10616,33505,23063,57448
+62158,46516,78325,28923,78343
+62159,80479,47763,74999,56282,18195,45297
+62160,65539,21054,31828,11642
+62161,72877
+62162,72363
+62163,49663
+62164,55774,39452,17075,16469,42053
+62165,76046,51067,65360
+62166,43734,53092
+62167,6026,29716,71555,45514
+62168,28634,63452
+62169,14376,16921,12754,775,66473,70776,1487,36438
+62170,34238,48998
+62171,37747,58840
+62172,10266,35225,14856
+62173,80557,60100,30785,7781
+62174,33888
+62175,54797,33039,1459,31856,82113
+62176,23830,44835,68781,80303,45335
+62177,38552,2400,55257,43805
+62178,4617,63150
+62179,23497,8637,35934,10634,69615,31330,33233,26144,76534,63122
+62180,47970,57059,69044,11280,28369,48327
+62181,56126,75919,36575,67556,31330,41493,49537
+62182,41144
+62183,2234,22035
+62184,4466,19780,7516,3639,65823,34832,73488,66853
+62185,4358,77512,51272
+62186,64559,75492,20145,59673,17303,33832
+62187,79639,65824,24559,77610,41617
+62188,26404
+62189,59892,11812
+62190,28809,26431,39732,1103,18643
+62191,27394,35166
+62192,51912
+62193,2614
+62194,894,54860,56529,80311,30605,3614,14877,76170
+62195,57437,49014,77995,59131,13218,64279,24331
+62196,61137,44081,48384,69703,3824,63613
+62197,3802,31646,52492,13020
+62198,46235
+62199,32856,56026,37549,60647
+62200,20662,26200,22998,42684,18858,20332
+62201,65004,11936,5143
+62202,72374,44806,48166
+62203,56091,61024,54459,64807,50450
+62204,58512,31971,55986,78733,26075,38908
+62205,29794,6649,1015,24527,61265,47431
+62206,81397,43415,38386,13006,74843,5843,26257
+62207,17525,19217,12788,46167,30489
+62208,76951,14393,62443,29679,58566,16340
+62209,79056,15722,16451
+62210,32946,79721
+62211,30003,8627,55449,8366,38445
+62212,35742,49356
+62213,59039,40504,22173
+62214,62270,14041
+62215,60821,49054,3132,53977
+62216,12158,31704,21445,40172,6347,46935,77701,19073
+62217,53202,53607,75820
+62218,71066
+62219,73638,40755
+62220,27009,25708,6914,26706
+62221,26852,17476,39086
+62222,80398,40298,37291,21752
+62223,7429,34592,17786,57121,32606,27461,68037
+62224,45936,38294,16365,75872,61062,19117,14900,9319,43735
+62225,3712
+62226,79153,43056
+62227,74916,26340,49457,62221,44139,11781
+62228,42168,65873,338
+62229,48609,14183
+62230,10770,5139,16606,62483,16520,69115,24213
+62231,25998
+62232,47091,73577,3222,23707,45128
+62233,7548,67344,16154
+62234,17119,70055,46980
+62235,38028,67259
+62236,72936,14176,40521,38791,59637,66210,4805,8519,70660
+62237,71480
+62238,28082,24880,11843,78988,3022,38377
+62239,73923,5543,37863
+62240,62820,30792,41631
+62241,25817,5510,12476
+62242,60765,57225,26139,30213
+62243,7772
+62244,76093,66401,14671
+62245,69267,13560,5784
+62246,38264,53354,2554,80239,17563,26389
+62247,18689,28512
+62248,81563
+62249,41319,16531,29885
+62250,80139,66523,44732,46220
+62251,13882,55034
+62252,49360,57107,38859,54723,32072,65537,23708,50471,60481
+62253,81750,73426,34602,45661,49616,4344
+62254,50306,70680,65691,32003,67724
+62255,80101,16421
+62256,25049,65243
+62257,44487,73517,39872,65804,17176
+62258,33226,30718,36826,8221,8701
+62259,11018,5194,42652,46649
+62260,15180,40394,56873
+62261,81228,58619,29636
+62262,74602,17737,53616,66041,14387,19738
+62263,64629,9054,37358,18034
+62264,23789,7794,32168,50886
+62265,34756
+62266,22756
+62267,929,63973
+62268,33718,82062,54781
+62269,3571,23412
+62270,78343,30083
+62271,4457,1886,71181,71567
+62272,16319,50527,45909,11733,39757
+62273,80869,67851,18174,62693,19691
+62274,7379,61923,58706
+62275,24383,13006,43474,61880
+62276,47966
+62277,36326,58401,20485,26957
+62278,70960,33436,34485
+62279,4996,42642,53940,7972
+62280,37542
+62281,20430,76078
+62282,77345,44512,56189,56083,36237
+62283,14970,35999,80068,2142,4566,63234
+62284,44900,2582
+62285,17890,30562,28814,54125,36876,20479
+62286,45139,7913,490,54365,50876,33280,12496
+62287,28885
+62288,43702
+62289,50129,55616,996
+62290,54255,17830,10549,66425,8121
+62291,54628,38453,12635,80154,2014
+62292,77588
+62293,10236
+62294,15200,46143
+62295,28619,68063,61454,55096,25141
+62296,58095,69240,12796,61119
+62297,7881,27245,38756,36087
+62298,16215,56903,53916
+62299,9555
+62300,74263,33021
+62301,77657,7579,80514
+62302,61084,70571,24312,39503,29429
+62303,7039
+62304,52536,18824,20884,41614
+62305,77413,46762
+62306,35409,3192,10166
+62307,47638,66509,62802
+62308,67415,50908,7198,28860,37970,77541,30053
+62309,52800,6487,14120
+62310,75227,49170
+62311,53090,29472,43226,206,6324,18689,80289
+62312,47511,61223
+62313,70774,51343
+62314,57136,41852,78957,44688,30359
+62315,77431,34138,42642,4461,10603,63496
+62316,14254,511,48314,67740,73834
+62317,36502,50418,30961,73792,22770,76711,76590,1743,78379,52290,28944,68984
+62318,64184,48320,35676,72774
+62319,57525,51142
+62320,15307,25574
+62321,26345
+62322,28601,81138
+62323,12161,39613,10503,25816,34729,57660,59858
+62324,28070,30943
+62325,8533,23719,29485,31348,74547,52560
+62326,53756,17238,265
+62327,5150,24624
+62328,1344,63492,54514,62438
+62329,50428,80919,38569,61848,59415,81722
+62330,75926,53646,10048,11606
+62331,46011,74079,57764
+62332,73001
+62333,12035,19279
+62334,70222,49140,13589
+62335,27954,3806,6851,53742,27351,17777
+62336,8649,54915,11487
+62337,22023,69679,63578,27478,23185
+62338,27112,73221,36500,10954
+62339,69859
+62340,12385,16384,27704,21799,19980
+62341,45684
+62342,18745,37720,66491,53518,33648,20605,62495,52952
+62343,31156,53181
+62344,28675
+62345,71919,13898,4192,63167,13645
+62346,43134,56171
+62347,71059,11450,78236,23415,60557,55764,64453
+62348,15502,9551,50765
+62349,73999,68764,43111,43481,27260,21861
+62350,31056,62260,64086,14586
+62351,53702,71978
+62352,34761,73002,40215,73421,69042,51509,30151,35470
+62353,9056,46575,48046,80061,48990,46838,66239,20705
+62354,58277,81708,36084,64059
+62355,69396
+62356,54857,32449
+62357,48843,23467,46739,16557,77023,791
+62358,27895,20897,34827
+62359,51456,54691
+62360,52834
+62361,53995,3415,80975
+62362,39671,44451,78818,70787,56136
+62363,70077
+62364,51055,22777
+62365,837
+62366,57671
+62367,17520,5120,79258,9954
+62368,75477,3220,31078,71268
+62369,47706,39138
+62370,25569,26407,73354
+62371,10582,80720,78975,60749,68794,76484
+62372,40454,25134,4953,63994,43341,81747
+62373,35028,39053,60142,61873,27921,46023,3594
+62374,49172,34270
+62375,54191,78859
+62376,75479,42134,28571,1374
+62377,40835,35896,13929,20608,30699,42168,11111,79848,62550
+62378,26388,23566,26717,69991,64121
+62379,51850,23521,73103,54818,27489,73907
+62380,39065,51050
+62381,38661,25489,40564,23509
+62382,60639,47796,55778
+62383,76172,10957,24944,44681,32229
+62384,35940
+62385,58152,1576,45843,12526,14277
+62386,3755,81456,8842,6356,48038
+62387,35531,74661,32634
+62388,76382
+62389,37556,58315,22943
+62390,67335,45895
+62391,46704,81789,54914,19357,44823
+62392,54196,12394
+62393,5073,37258,38499,52569,25906
+62394,51785,20171
+62395,7192,21798,45263
+62396,47143,13771,33774,22665,58570
+62397,78220,67372,35222,57620,25194,62231
+62398,5331,1894
+62399,68266,14742,51633,57492
+62400,47610,9865,9146,62260,30662
+62401,26560,78048
+62402,6366,71935,30293,31364,63697
+62403,48504
+62404,74862,52736
+62405,47808,19196
+62406,49852,13600,64866
+62407,34054,34593,73080,31998,21811,70883,58435,73511
+62408,30957,79720
+62409,11803
+62410,67284,29051,60386,21575,18736,63986
+62411,7702,53580
+62412,2328
+62413,5395,9790,33975
+62414,64949,34034,56217
+62415,51335,69807,81186
+62416,328,12143,62501
+62417,69880,11354,32055,60899
+62418,40697,20891,26805,12527,68372
+62419,64121
+62420,24933,28292
+62421,32965,28296,66822
+62422,11608
+62423,73470,58419,73856
+62424,13646,45090,61991,16365
+62425,15759,61661
+62426,8550,54375
+62427,48516
+62428,59386,26009,13897,73558,73523,10520,29469
+62429,11973,49183,66868,49284
+62430,76610,28522
+62431,57717,28849,70882,56403,75737
+62432,3086,8396,26693
+62433,78177,25293,19647,66756,67260,2855
+62434,31698
+62435,68378
+62436,2408
+62437,47495,48821,42759,38215,44470,8854
+62438,50377,45793,61515,12149,58068,82021
+62439,21618,9080,63136,7733,3910,23057,61395,33993
+62440,14396,57586,56793,27928
+62441,70138
+62442,44090,56651,47754
+62443,35008,14188,62239
+62444,17159,3695,1299,46710
+62445,68235,30995,51490,12326
+62446,17361,62719,9338,74333,38014
+62447,36467,79562
+62448,16824
+62449,72912,25162
+62450,13481,56973,55260,28523,54717
+62451,55649,54653,8407,41976,42841,32370
+62452,7168,39481,23537,51467,26492,40390,44925
+62453,7375,37727,66057,65078
+62454,76487
+62455,77300,65989,11879,27807,71036,48863,61687
+62456,74976,59175
+62457,34767
+62458,12456,77218,20438,24013,30233,64004,12275,80445,22487,76328
+62459,12685,31756,42030,19056,22155,79299
+62460,13280,67810
+62461,21060
+62462,1040,12911,5145,17672,3910,77410,62783
+62463,1891
+62464,46637,22742,8014,39750
+62465,6330
+62466,58293,14198,895,65838
+62467,53946,8649,10054,54938,53674
+62468,30390,68689,33192,22203,73251
+62469,46621,36855,54678,16485,3588,26130
+62470,40159,65661,5496,75205,15337
+62471,48188,55014,43639,42652,71064,7221
+62472,20788,70774,18964,33348
+62473,51527
+62474,48294,45780,7504
+62475,49313,32952,60939,64968,55388,45992,12001
+62476,4077,1685,81150,32576
+62477,11978,4603,59644,66594,56209,19753,11806,16609,16989
+62478,34486,21258,1870,24525,7576,69320
+62479,37668,31708,22448
+62480,71424
+62481,51689,2503
+62482,1891
+62483,69595,41787,47225,1558
+62484,46615,8462,18483,5337,54462,2163,79652,64851,20582,72437,53368
+62485,7697,50764
+62486,23924,58027,9297
+62487,5051,46200
+62488,54159,5800,34384,57965
+62489,48448,70077,24742,7402
+62490,8374
+62491,30212
+62492,12541
+62493,77349,69908,81963,57971,28405,38380,37421
+62494,48944,81422,71150,43060,41335,64030
+62495,54521,17294
+62496,44941,64387,8768
+62497,63683,74665,40380
+62498,34695,37803
+62499,8036,29885
+62500,18236,80379
+62501,35631,23454
+62502,22828,52096,2316
+62503,3205,26337,36751
+62504,30732
+62505,48529,28212,58755,50362
+62506,5943,43677,60721,26876,60903
+62507,58472,30677,82147,61808
+62508,62527,33671,7574,39145,690,56229,15427,3605
+62509,14993,36456,16974
+62510,80636
+62511,66562,62136,70660,50929,49834,66744
+62512,44501
+62513,31659,58815
+62514,348
+62515,49539,40856,50859,43913,51203,2448,36127,50272,53618
+62516,53854,70265,79539,7248
+62517,18144,67012,29981,72686,61179,55466
+62518,24081,2701,67813
+62519,4994,51639,26860,55278,45819
+62520,61873,73872,41104
+62521,69701,71708,1154,13626
+62522,46886,76716,36322
+62523,3629,32165
+62524,40732,70132,33966,44921
+62525,47124,8318,9310,2975,19968,17438
+62526,8502,73694
+62527,19473,26730
+62528,79370,17594
+62529,7525,62939,34094,2118,3142
+62530,39315,5283,61910
+62531,64690,73974,80517
+62532,78393
+62533,57440
+62534,11477,65832,62334,75919,42205,41445
+62535,39253,10662
+62536,22365,27469
+62537,10123,1307
+62538,76103,70402,48017,76252,40125,40233
+62539,10258,41980,30249,32785
+62540,28102,36645
+62541,69555
+62542,61510,10141,56279
+62543,52872
+62544,2459,7858
+62545,2045,49782,37109,43342
+62546,26598,56671,42527
+62547,74920,57863,25900,53864,25489,19183,46529
+62548,69633,54688,14456,311,70791
+62549,67201,4626,70711,38132,23288
+62550,849
+62551,33888
+62552,55358,17714,51785,21917
+62553,72573,64477,69589,17245,11328,40050
+62554,39007,25932,8355,64856,45699
+62555,43278
+62556,452
+62557,21503,81441,43041
+62558,57160
+62559,35474,19861,64781,77175
+62560,58295
+62561,1527,48782,29659,6221,18068,55050,2953,42728
+62562,35887,50987,56825
+62563,41995,24060,80833,5187,61032,39770,68505
+62564,22835,72438,25561,68433,26964,73415,67824,23407,6239
+62565,54950,35385,54677,49467,54580,24519,20050,1768
+62566,22935,53613
+62567,46081,36107,13226
+62568,65669,1551,51392
+62569,50817,13558,65488
+62570,28631,13256,3628,16100,47825,75613
+62571,75858
+62572,18063,13636
+62573,70191,11083,71048,66572,46868,23135,33468,6837
+62574,24062,34048,51307,33763,65207,7097
+62575,7349,52675,65634,22658,39173,3736,71326
+62576,78379,66483,32598,4005,40839
+62577,80855,42833,51244,54577
+62578,73807,70878,14394,79412,57140,4093,52028,60516,726,46093
+62579,30993
+62580,26639,70280
+62581,19303,25876,71058
+62582,59055,58285,37267,8199,40326
+62583,67466,48086,44569,79177
+62584,11032,25181,60372,6113,13927,38486,27284,8935,38506
+62585,59868,4025,926,48059,4880
+62586,46213,51197,42702,2986,61719
+62587,17314,70377,19568,81316,42774
+62588,74980,6025,50358
+62589,56039,73641,13774,82028,42915
+62590,19776,40568,66543,54547,20205,69179,63742
+62591,56719
+62592,12250
+62593,12751
+62594,18203,21828,80188,23395,67260
+62595,405,48052,10737
+62596,56846,67859,44886,27226
+62597,75852
+62598,10141
+62599,40397,28582,69755,47510,17181,30313
+62600,42376
+62601,63192,41200,34154,50391,32150,26315,4083,63768,32949
+62602,16612,47104,50756,54848,69759
+62603,22042,50696
+62604,14960,28821
+62605,24452,72688
+62606,5363
+62607,17419,59789,67653,7601
+62608,16737,42492,40179,49631,31322
+62609,40205,5018
+62610,21654,37804,66109,19719,82160,79465,36729
+62611,26235,68966,9073,34759
+62612,32108,1983
+62613,68155
+62614,47511
+62615,50532,3414,63444,77138,14720
+62616,17602
+62617,4503,48818
+62618,63393,35452,3605
+62619,9126,22458,74245
+62620,45825,15902
+62621,73510
+62622,36117,33928
+62623,654,36617,31071
+62624,31988,42976,15987,664,70508,32175,62152,54420
+62625,61906,65722
+62626,5250,22295,50488,28148,32178
+62627,80601,23879,76823,15790,72923,49843,55799,14009,74308,68992,51793,40505,59803
+62628,44455,18540,48119
+62629,303,43085,65862,66116
+62630,46281
+62631,40325
+62632,40750,21253,632,55617,51809,53620
+62633,16006,12674,75899,49366,60583,78175,9151,20614
+62634,7278,72824,76343,13906,24740
+62635,59132,41809,57492,63528,60409,77016,26600
+62636,17392,62726
+62637,19868,33352,17531,61450
+62638,82068,75805,33374,28029,9451,34751
+62639,23888
+62640,39160,48589,71648,24519
+62641,16761,64897,74785,11988,36679
+62642,74921,50852,70816,63072
+62643,64427
+62644,47233,29108,46617
+62645,32096,50607,70094
+62646,52970,62138,15940,58970,45736,57537
+62647,49004,38205,54324,13567
+62648,11803
+62649,27684,3345,77716
+62650,19946,42464,35219,29059
+62651,43012,14482,55725,9699
+62652,55013,9600,60491
+62653,82063,44443,60727,81387,4241,50360,72954,3463,5288,9362,54912,74812
+62654,76507
+62655,9822,3489,4701
+62656,76443,73033,33152,58571
+62657,72765,14077,65648
+62658,48630,76644,26011,23662,3963,31434
+62659,19365,49318,45308,50435,77742,4206,79331,4172,15007
+62660,42974,80824,65881
+62661,81857,76542,52100
+62662,62793
+62663,16354
+62664,3591,16961,63348
+62665,9715,15140,29054,13364,74172
+62666,41831,60070,26136
+62667,78946,3997,48694,49963,20254,46945
+62668,25932,22494,7540,65504,20415
+62669,15318,71730,1635
+62670,6905,41201,34201,22372,36867
+62671,57482,26310,37048,13165
+62672,57783,59766
+62673,49951,48778,13254,21710
+62674,41348,68223,18324,25284,20186
+62675,26605,34882,54696,60225
+62676,58958
+62677,9241,31021,32834,15709,24102
+62678,68856,58149,12926
+62679,74605,22828
+62680,78951,53293
+62681,25584,75166
+62682,34942,35691,77960,59178
+62683,33672,38412,7328
+62684,44957,79570,50821,48440,19170
+62685,47154,6810,46930,46521,77535
+62686,72411,49015,45810,56417,73383,6853
+62687,11459,5048,29004,53144
+62688,72714,10426,59654,52648,14283
+62689,62188,74311
+62690,5057
+62691,14802
+62692,69596,42835,29192,30705,15218
+62693,76635,70826,17940,5625
+62694,32334
+62695,58997,12525,23809,61531,60048
+62696,22344,35453,30734,33022,53043,28452
+62697,39315
+62698,63922,58505,32329,31247,8537,37985
+62699,74428,3332
+62700,28759,44984
+62701,20503,54682,28675,45263,65864,74068
+62702,80903,77828,6607
+62703,8257,49599,14239,38243,79004,66583,48589,10207
+62704,79577,80670
+62705,31911,81782,56220,66121,67030
+62706,50621,11108,1197,49628,27638,79721,17996,47681
+62707,41999,27330,20237,18611
+62708,824
+62709,34440
+62710,178,65888,64038,40905
+62711,70401,35256
+62712,30895,2986,5453,68423
+62713,63070,45186,16696,11324,65331,31119
+62714,49330
+62715,72432,39444
+62716,66742,5429,70853
+62717,8635,73709,72614,79033,33521
+62718,73529
+62719,72438,25463,50750,22765
+62720,58158,15532
+62721,23115,57602,50769,41456,16948,31083,69608,52700,17873
+62722,63718,50859,42582,19162,29898,45740,3388,43445,44883,80571,67900
+62723,62734,37089,23114,33855,74927
+62724,50492,65939,23139,38778
+62725,81392,55927
+62726,55095
+62727,75242,33172
+62728,80886,1333,31331,29689,33696,39301
+62729,7570,63349,39703,41455
+62730,5475
+62731,24659,16185,78882,50001
+62732,34741,16264,58672,21291,27827,49409
+62733,19848,19119,30767,7458,67202
+62734,60987,3804,12732,34549,17035
+62735,46135,59900,49121,30133,32735
+62736,73031
+62737,11752,12588,40224,51698
+62738,78577,66985,9844,79856,48259,7257,8612,31931,64553
+62739,39836,53038,6457,9650,47805,42113
+62740,14028,18662,766,47800,72372
+62741,11571,50296
+62742,52977,82136
+62743,75600,65976,5360,28155,41189
+62744,3671
+62745,70091,8783
+62746,58501
+62747,54497,9421,10238,5722
+62748,60778,61105,53265,43796,3045,31073
+62749,19003,61134,24301,21811,19422,54285
+62750,59306
+62751,31613,15274
+62752,73218,19651
+62753,13841,28038,13444,26230
+62754,11057
+62755,31235,60895,26109,56961,73085,40371,59567
+62756,31468,39666,36667,25425,81806,23377
+62757,22761,63646
+62758,67173,76620,65055,29538,73719,55709,34112
+62759,73437,72245,43466,8851,17316,81843,74377,51043
+62760,32064,56504,20800
+62761,31877,72207,54809,44536,19864,37831,52073
+62762,46137
+62763,5513,72760,55120
+62764,57444,56992,54973,43086,3744
+62765,11524
+62766,77676,21685,14765,75598,26044
+62767,13142
+62768,68027,21723,5567,72906
+62769,72134
+62770,78925,74967,41205,78987,63744,18206,22681,44193,23468,42768,19010
+62771,55169,11667,73396,49172
+62772,16912,68271,75230,43399,12556
+62773,48322,10703,31267
+62774,80086,12866
+62775,4770,13785,19371
+62776,33643,31409,817,62482,35264
+62777,81866,80213,30196,18387,33066,438,20198,456
+62778,35165,2208
+62779,19249,42236,50986,59280,39323
+62780,3523,40068
+62781,63801,818,52223,25834,51612
+62782,19650,79531,21433,53020
+62783,45654,49250,23281,11335,73392
+62784,18387,40115
+62785,54954,78265,12763,35032,50649,45669,69356
+62786,11017,25788,75047,62276,19970,43478,10647
+62787,51844,60441,37208,10440,33963,23420,44797,5171,42382
+62788,44890,2354,81721,73007,26789,57392,62262
+62789,65405,76454,2158
+62790,59900
+62791,39559,727,36208,43176
+62792,59131,5586,77976,2007,46376,15707,17543
+62793,73555
+62794,69293
+62795,27478,12204,33629,9311,81745
+62796,34011,36445,25107
+62797,8756,50620
+62798,27519,31498,78743,37971,64923,18235
+62799,25266
+62800,33478,22888,50388,44112
+62801,74277,22944
+62802,52394,81574,45622
+62803,3018,43145,50938,60900,61910
+62804,35081,47265
+62805,40752,17065,33867,19159
+62806,7825,79886,68461
+62807,74613,47023
+62808,6765,10358
+62809,30978,31068
+62810,48185,7780,54790,41331,1285
+62811,70412,16102,47646,49777
+62812,67467,71486,75678,76327
+62813,65987,33129,78715
+62814,40432
+62815,48776,21272,23993,50534
+62816,56980,11202,13984,6869,81108,23022,3643,14748
+62817,4199,37805,78822,5700,164,78456,78052
+62818,26963,41964,61512,46890,17883
+62819,32216,81278
+62820,60670
+62821,13506,15706,4791,42529
+62822,7817,29261
+62823,22387
+62824,3748,68670
+62825,51769,58793,76518,61676,79278,68533
+62826,16765
+62827,8851,41331,79510,2662,41313,63515,40982,73794,70141,34656,71408
+62828,20380,35223
+62829,80188,56563
+62830,50919,32055
+62831,17682,11125
+62832,35214
+62833,9408,1535,7754,53199,43093,51750
+62834,20064,22928,61226
+62835,13365,70810
+62836,20364,29449
+62837,58571,8143,15498,78028,22721,67215
+62838,66942
+62839,33397,58570
+62840,39626,27141,26527,34344,47890,22439
+62841,50477,3446
+62842,40889,36225,48083,22094,21104,7952
+62843,51445
+62844,36369,51494,13349,64419,58066,733
+62845,49459,65364,66641,26431,23778,44714
+62846,1722,47666,4088,27083,42388,33318,56457,5912
+62847,58087,43383,54282,45111,76744
+62848,20762,62926,66595,43719
+62849,4184,51215,37316
+62850,79951,77670
+62851,20146,78423,7773
+62852,60698,28186,39400,21807,1149
+62853,68131,62367
+62854,47053,71288,8779
+62855,5835,5494,4290
+62856,24726,70175
+62857,13886,20993,69611
+62858,59852
+62859,5503,3775,13500
+62860,71957,66548,13728,12079,50255,3342
+62861,55695
+62862,47540,44383,22987,45700,8714,35209,22824,56258
+62863,61188,22686
+62864,50366,49736,50257,55107
+62865,61070,21803
+62866,8369,77199,25943,4405,17436,21483
+62867,66047,70732,47191,55498
+62868,14890,24452,61017,15416,25523,51698,15277,14488,20100
+62869,44373
+62870,19827,7702,67797
+62871,32688
+62872,81816,33531,73586,31086
+62873,17847,14926,70994,31179,36213,67059,53272,52493
+62874,82030,15240,31595,15019
+62875,35216,5511,46859,26368,79713
+62876,21905,81656,13237,38369
+62877,21437,47626,58067,17154
+62878,46461,58692,48027,41810,40232,75024
+62879,58897,24121,70416,32052,30363,40591,2113,50823,62170
+62880,20481,69210
+62881,5333,28656,74603
+62882,27724,33067
+62883,77370
+62884,75232,79313
+62885,74110,25584,62108,68095,17512
+62886,56171,33752,57089,13237,53309,9712,36091
+62887,34155,28812,8032,68944,20754,70780,14749
+62888,53207,40567
+62889,32706,34066,20912,69356,17454,36169,67538,27922
+62890,18409,33432,40776,81360
+62891,34683,37553,6707
+62892,6105
+62893,23092,7740,9042
+62894,75629,43447,17067,56332,7705,13751,71866
+62895,22402,48346,30894,24569,46734,233,65310
+62896,37732,21111,18799,55169,23840,28330,72326,18426
+62897,38026,52302
+62898,23914,45441,74576,54863,54580
+62899,37825
+62900,14121,70282,41001,52348,79558,16333,9663
+62901,41064
+62902,66350
+62903,25162,59179
+62904,21344
+62905,11527,58361,17026
+62906,5299,34054,74541,49069
+62907,17596
+62908,72656
+62909,15087,61994,5232,72130,34366,37804
+62910,43313,2085
+62911,11108,66425,64147,48710,50599,78107,58297
+62912,7803,47626
+62913,68537,2462,1688,16645,9603
+62914,31633,17617,35359,48233,66867,27655,31714
+62915,60743,13921,50272
+62916,21028,48892,9211
+62917,7115,4575,40406
+62918,81713,38575,23540,12726,66830,76531,24005
+62919,7857
+62920,9560,57761,78983
+62921,12769
+62922,4130
+62923,12508,65272
+62924,30263,47399,66357
+62925,73244,55967
+62926,75274,56581
+62927,24724,47042,66514
+62928,21141,58059,70172
+62929,58205,50744,37267,8058,35843,9852,36713
+62930,37802,59930,23262,46341,75345,57277
+62931,39252,64015,29081,36571,10418
+62932,75575,21921
+62933,21362,71837,75256,61884,12976
+62934,10092,23978,58415,37514
+62935,32227,7770
+62936,69636,12355
+62937,5079,40154
+62938,76861,53306,81379
+62939,61081,77333,55215,70848,36970,39196
+62940,53799,14342,62772,7872,13077,82122,16778,76512,52876
+62941,42689,7537
+62942,28666,32105,71973,8804,56822
+62943,12698,70694,64408,34125,55879
+62944,6272,22602,4551,61261,51060,67653
+62945,10889,51372,60012,10234
+62946,79840,40378,37981,20258,43895,69934
+62947,46314,6119
+62948,14960,43716,42455
+62949,72680,13232,16398
+62950,5241,60415,20004,2391,68982,43401,71483
+62951,33902,48396
+62952,16347,32714,64919,32818,65167,68542,10610
+62953,30728
+62954,30300,6388,15818
+62955,59162,1067,9269,80169
+62956,58734,53404,30070
+62957,81477,69251,16568,7205
+62958,75560,42807,55357,74246
+62959,56307
+62960,25235,72123,16532
+62961,7359,78712,68366
+62962,22688,17091
+62963,67205,29441,22808,76173,37141,48460,12245,67530,64832,31137,37280
+62964,7440,28898,35336,37619,1244
+62965,43660,47027
+62966,80895,16343,58839,32960,81743,28404
+62967,29754,71001,9724,21313,40631,73367,66089,23842,28493
+62968,52177,54227,12343,41235,24409,75235,65697,79922,33328,3485,73892,77525
+62969,11172,39267,25344,62680
+62970,26966
+62971,75781,36277,53181,16621,42570,32468,16278,53707,46905,52732
+62972,28704,56566,7164,62562
+62973,49963
+62974,1130,30278
+62975,62464,32980,1311,41288,3125
+62976,43219,71454,32602,41577,70653,37514,16815
+62977,62779,15532,41580,43156,36375,12424,11396
+62978,33473,20395,40379
+62979,77624,22035
+62980,79962,13265
+62981,81886
+62982,62947,31838,78992,44348
+62983,54117,44268,19636,30378,59713
+62984,40982,26743,68914,2444,16051,57849,78427,65274
+62985,73763
+62986,45346,21003,38901,37259,81310,43262,65619
+62987,5669,48516,37512
+62988,81131
+62989,2894
+62990,12751,71577,18889
+62991,19216,9477,63321
+62992,7026,42644,30787,48147,34061,34824
+62993,63674,12149,30383,60195,69253
+62994,59934,32778,12527
+62995,71730
+62996,37434,47632
+62997,31109
+62998,21,43606,62606,26509,21437
+62999,6304,66115,21819,54032,81873,51719,19425
+63000,22157,74088,56279
+63001,23392,36758,9915,79867,71188,35409,48506,71931
+63002,24511,63754,59339,67224,57586
+63003,44647,64875,26245
+63004,43660,5528,20768
+63005,68709,25880,72962,44654,34564,59822,31708
+63006,48635,21442
+63007,41247,49931,74463,54209,33535,64099
+63008,24961
+63009,36186,60619,53109,73965,9928,20598,55259,81659
+63010,79594,29248
+63011,61352,70550,82101,67869
+63012,19360
+63013,10307,32444
+63014,51785,79328,60191,51246,1975,56043,44983
+63015,3601,44950,33249,57496,81154,58911,880,55491,55587
+63016,79652,35776,7794
+63017,16789,39707
+63018,62828,15836,81949,79015,74558,7418
+63019,56423,6758,1432,66347,19747,18020
+63020,56844,6234
+63021,45048,71966,40521
+63022,33748
+63023,43477
+63024,71768,68347,54154
+63025,21730,43301,25283
+63026,6858
+63027,39182,48186,30827
+63028,8840,61517
+63029,37047
+63030,39994
+63031,14302,61799
+63032,64400,50844
+63033,61541
+63034,76996,36107,25361
+63035,48470,3618
+63036,74663,48285,233,77898,19638
+63037,41794,47183,7646,76679,17112,17994,19423,61201
+63038,27900,50331,23590,29147,1196,55106,51519,17873,50894
+63039,58115,39507,26599,7853,219
+63040,11592
+63041,21642,36599,76675,78768,50386,66892,60992
+63042,52714,77901
+63043,14310,21387,56126
+63044,70118
+63045,77005,42012,51632
+63046,8233,69357,77746,35858,27517,33823
+63047,45999,73122,79581,41220,36280,34333,12030,61175
+63048,73054,22128,24378
+63049,78756,30932,80855,30342
+63050,21987,76054,19605,43967
+63051,8345,51260,29605,36500,20052,72854,30909,80401
+63052,2761,4439,63093,65664,62365,35937,37190
+63053,32710,81928,68988,28412,71585,11836
+63054,56314
+63055,72955
+63056,25819,20793
+63057,18307,25167,70369,29564,25544,21296,67738
+63058,37152,28547,15715
+63059,18162,53650,64008,1058
+63060,71765,77266,55912,30968,75010
+63061,7716,56563
+63062,36728
+63063,36914
+63064,80759,48875,28002,13801,13660
+63065,31670,66017,53744,26078,39931
+63066,49678,16677,50708,63008
+63067,6291,12186,39298,13167
+63068,78737,28306,66336,24214
+63069,55858,57608,75935,61286
+63070,7358,30376,11909
+63071,79523
+63072,46577,78162,13692,68302,27208
+63073,30618,64071
+63074,67962,37278,26501,17203
+63075,30895,13365
+63076,36279
+63077,18418,25692,75823
+63078,75804,56092,35807,23719
+63079,51852,18812,81740
+63080,2493,4802,55183
+63081,36124,74845
+63082,44675,13971,878,17772,40769
+63083,26667,50266
+63084,5245,3286,37605,76711,28423,9133,8479
+63085,56630,10242,27110,13138,72511,37369,66509
+63086,5308,79135,65010,13938,56665,43507
+63087,55040,79528
+63088,38810,30576,64404,45723,50118,39541,12559
+63089,56794,3748,39208,46882,74182,34076
+63090,41192
+63091,27465,61538,19193,80907
+63092,63802,47804,30858,40333
+63093,14447,3170,67535,65858,42650
+63094,70689
+63095,23303,65003,66654,8086,46085,19573,75695,49176,77504,45939
+63096,53224,28299,29633,33280,15115
+63097,67722,31546,13881,47855,68332,61027,42415,43433,33486
+63098,25654,6376
+63099,65269,77388,44409
+63100,5272,10596,7957,13616,74842,29725
+63101,71907
+63102,18169,10831
+63103,59576
+63104,7605,2264,11336,24846
+63105,36147,148,27714,24398,3357,4765,46487,27386
+63106,43162,53300
+63107,70849
+63108,6250,62907
+63109,74041,17504,11171,13435,23821,15747,49362,55189,30066
+63110,11971,69120
+63111,70042,41383,45551,80646
+63112,2635,72996,42280
+63113,59464,46993
+63114,67045
+63115,68715,40360,41947,66676
+63116,65087,53008,45209,43957
+63117,60912,30122
+63118,41127,21070,61034
+63119,31900,42377,80885,81020
+63120,57661
+63121,32098,79223,24189,77764
+63122,16348,32103
+63123,35106,21517
+63124,42576,76537,35868,8343,93
+63125,13808,14865,23977,19917
+63126,30070,43140,22948,69391,6432
+63127,31527,68927,44776,53582
+63128,66071,61692,46941,60632,4951
+63129,73585,63386,57947
+63130,28544,16088,22858,13443,57039
+63131,54463,14009,39480,22794,70703
+63132,31404,35351,76024
+63133,66196,71826,7482,26111,10307,6295
+63134,9532,24459,18341,8889
+63135,883,74247
+63136,29032,75133
+63137,54489,32729,28955,7213
+63138,40146,70790,63875,32041,29631,36979
+63139,3420
+63140,35149
+63141,23968
+63142,63291,26338,39785,9404,11984,13353
+63143,20307,10579,68343
+63144,33325,69400
+63145,16614,72534,36924
+63146,2481,26618
+63147,56762,14716,54398,78784
+63148,43793,64412,38672
+63149,51791
+63150,29436
+63151,50914,46852
+63152,31322,21325,14739,51954
+63153,54704,50886
+63154,20565,48140,34877,11326
+63155,61988,68794,38258
+63156,21570,54293,81659,9278
+63157,56854,76567
+63158,12946
+63159,16714,12991
+63160,36478,55055,51249,54059,9894,12403
+63161,66122,49838,55448,63570,80151
+63162,24830
+63163,71946,42407,61072,45962,29561,57196,75178
+63164,35590,21748,20624
+63165,16630,73731,3241,54282,30164,11715
+63166,23424,9194,74630,52965,73399
+63167,70459
+63168,40243
+63169,56558,48267,51052,27622
+63170,36700,64177
+63171,79429,1581,29315,33049
+63172,77424
+63173,39949,72001,11486,5370,71931
+63174,25623
+63175,80542,59407
+63176,68856,8870,67131,29017,35252,54454,46905,15363
+63177,8210,20658,54445,12241,23226,5946,56189
+63178,80736,9917
+63179,5018,7280,64334
+63180,50479,77988
+63181,12006
+63182,56066
+63183,35506,71661
+63184,78838
+63185,29389
+63186,42176
+63187,6860,1457,69645,76389,61552,60379
+63188,40856,70290,55409,18252,36785,56675,12072,75554
+63189,40435,18841,61993,28112
+63190,14377,70597
+63191,18246,27180,366
+63192,3591,28323,81348,43918
+63193,11892
+63194,77340
+63195,47143,40333,78037,41593
+63196,38284,79678
+63197,58611,37803
+63198,5268
+63199,46011,29148,15426
+63200,15297,48816,79997
+63201,53666,11630,34287,27588
+63202,67733,44130,18957,74708
+63203,65722,27031,31570,5119
+63204,58906,35659
+63205,498
+63206,62315,69920,56620,76606,9933,22568,50343
+63207,67491,16535,73289,555,6248
+63208,70010,70483,66802,40010
+63209,15757,30557,15231,19325,27649,6298,15846,52621,35294
+63210,16743,40048,4767,29375
+63211,11285
+63212,59414,70213,28536
+63213,33566,71101,76547,60058,69735
+63214,1482,48698
+63215,34112
+63216,40982,62997,43659,7057,4616,49829,59641
+63217,70732
+63218,74243,5629,69628
+63219,5409,2281,39210,19706,71333
+63220,5455,23884,69349,81319,72570,7506
+63221,63673,34925,22031,6572,4989,33934,27848,54667,56019,14511
+63222,31071,5710,11101
+63223,20413,53167,3667,26887,57858
+63224,6566,71379
+63225,76934,31295,1812,2362
+63226,29663,40085,48691,45054,68815,24221,52452,75116
+63227,19241
+63228,54927,11992
+63229,56357,70162,28116,14458,3965
+63230,34138,35194
+63231,50340,16777,37331
+63232,7646,40025,31746,37302
+63233,43479,57374,6092,38153
+63234,51936,60761,30363
+63235,41463,23610,75352,20549,15871
+63236,77113,19830,15669,8803
+63237,34750,35286,65970,40394
+63238,7929,13626,4336,7886,54748
+63239,53851
+63240,17374,23627,58831,70328,37130,26243,49525,3204,70347
+63241,40512,62019
+63242,11025
+63243,63384,53453,75844,8762,64761,80114,16943,50562
+63244,38254,58737
+63245,29551,6297,30348
+63246,56989,29014,31270,72622,47086
+63247,44555,73414,7026,69529,46079,50378
+63248,34724,79530,63073,59644
+63249,16551,25518,27935
+63250,46900,44755,40278,67324,28804,48993,59869
+63251,37511,78842
+63252,43569,24602,16862,35666,49518
+63253,19116,71621,71263
+63254,10472,42226,72279
+63255,56386,74907
+63256,42766,28613,21938,7161
+63257,6472,34819,60833,19346
+63258,52939,36060,42613
+63259,22362
+63260,22990,65992,15483,29952,74623,70191
+63261,69887,18637,80804,22468
+63262,8523,72881,36720,46477,81568,35094,34175
+63263,49980,20324,26497,9968,81987
+63264,14680,13411,2274
+63265,74873,49931,13711,46660
+63266,11884,78169,26108,19601
+63267,63720,13552,64317
+63268,42675,14777,8103,77257
+63269,75228,56279,24923,8270,59351
+63270,48708,5757,24618,57084,55279,57007
+63271,63368,74584,51084,78323,2264,28242,18922,41984
+63272,21931,66142,28020
+63273,31257,14002,12182
+63274,16941,53957,69499,77893,2009,47650
+63275,57070,16894
+63276,48314
+63277,6798,71069
+63278,18973,53006,62055,63915,22978
+63279,6304
+63280,63903,70777,53671
+63281,75047,27850,65929
+63282,36060
+63283,79094,57435,66932
+63284,32370,22697,6088
+63285,26180,68203,25449,10336,66025,63254
+63286,36001,79191,53379
+63287,55440,63832,59178,41101,74140
+63288,48714,17275
+63289,59893,54348,55729,47669,76463
+63290,62429,9571,79485,6630
+63291,60668,36320,49423,75417,14018
+63292,78779,69526
+63293,33951,69644,8762
+63294,6891,25819,52562,61722,54001
+63295,50200
+63296,16470,18105,30460
+63297,16510
+63298,37925,24473,8251,6983,30205,63258,35851
+63299,74972,35128
+63300,58563,33018,43172
+63301,18519,45642,79900,64904,39771,36796
+63302,9419
+63303,42542,68991,5970,76427,5957,1647,54664,40085,71221,52729,25663
+63304,25544,8115,2820,20535
+63305,32802,44832,67115,14958,21583,29892,36939,56415
+63306,43388
+63307,44078,52144
+63308,81443,26516
+63309,9140,48112,50507,47555
+63310,57408
+63311,76756
+63312,81781,64494,75862,54961,72559,78217,64811,77601
+63313,16706,74371,24748,76606,44313
+63314,61889,50812,61547,3682
+63315,79282
+63316,17510,35828,6135,39072,55617,20073
+63317,50919
+63318,31953,29647,53981,66163,78498,80313
+63319,33043,21063
+63320,7606
+63321,50298,48687
+63322,41608
+63323,44406,77021,11786
+63324,49098,11633,61690,70849,18005
+63325,41743,14743
+63326,22697
+63327,7149,37032,19073,36437,64011,40119
+63328,80076,25611,57498,4067
+63329,26036,64733,34596,61843,42746,72110
+63330,15352,14714,59529,50376,26352
+63331,30271,46821,16291,58108
+63332,73469,11712,75418
+63333,18960
+63334,80011,4133,80301
+63335,16946,63093,26366,17915,67754,31779,8553
+63336,46643
+63337,21744,60813,33252,18750
+63338,63868,47905,64205
+63339,54839,28674
+63340,2582
+63341,5561,57051,37870,33195
+63342,34360
+63343,52448,15263,77911,76118,69401
+63344,5022,73006,14289,48639,69494,35295,82152
+63345,55967,78552,4170,57628,18979,10756,21812,6697,44402
+63346,75383,60375,8820
+63347,35398
+63348,78063,54122
+63349,26422
+63350,11096,63132,75511,55824,52562,46388,59909
+63351,66053
+63352,6480
+63353,75836,4504,36568
+63354,17109,73624,41261
+63355,44549,43986,14790,28577,9576
+63356,56843
+63357,29942,42529
+63358,13121,56496,42102,80575,19353,75087,7095,38573,19210
+63359,66756,38506
+63360,11644,42210,382,29562,9897,45105,62359
+63361,29376
+63362,14758,4996,51248,48408
+63363,72560,81303,38227
+63364,34414,31042,27697,2369,76209,57568
+63365,55618,36038,10532,55108,37918
+63366,59785,1317,48609
+63367,12115,27584
+63368,8688,55501
+63369,30498
+63370,50569
+63371,13860,12419,70422
+63372,17493,59886,45682,25003
+63373,78636,7659,46436
+63374,11526,76655,51313
+63375,52127,74692
+63376,32448,5271,10743
+63377,51475,58367,80892,59382,67854,57134
+63378,40749
+63379,54917,7578,61627
+63380,51780,74811
+63381,50361,7819,26922
+63382,69590,3015
+63383,9442,24158,25256
+63384,32761,21261,74347
+63385,47682,3937,2297,17008
+63386,79510,3791,29090
+63387,11684,54865,39378,35674,57872
+63388,22913,66801,27006,75721,42958
+63389,64364
+63390,45702,41465,7713
+63391,37547,10390,73263,4652
+63392,29054,11426,55536
+63393,64530,81736
+63394,13489,9757,21520,24430
+63395,15606,81644,52506,18737,76710,60288,36077
+63396,15351,38261
+63397,37106,415,81347,81585,31656
+63398,6121,66805,61120,63884,8245,25848
+63399,27074,63139,27975,46713,34834,57041,66040
+63400,66944,60097,42369,45282,79384
+63401,54136,561,60848,31854
+63402,9697,11759,6412,52603,32681,49139,18949,28442
+63403,70068,32923,32237
+63404,37798,38448,25403,53450
+63405,64398,5038
+63406,71348,18082,63359,45291,53711,26444
+63407,27701,71957,31521
+63408,36362,9859,51226,30302
+63409,72354,30853,71688,22794,28952
+63410,14017
+63411,64756,42390,28131,65943,38354
+63412,73309
+63413,8385
+63414,42363,64335,6632,51393,56705,26457
+63415,80925,74652,14173
+63416,442,24
+63417,42505,74923,65083
+63418,28390,63802,62708,7838
+63419,68923,22065,22345,12940,49054,68903,4246,18333
+63420,27759,4172,32929,4238
+63421,40304,27667,20665,76109,14229
+63422,26581,76698,80392,57458,66490,53483
+63423,77027,52955,7486,9961,26586,54885
+63424,1237,19109,69757
+63425,56759,63459
+63426,23427,16563
+63427,8362,50273,58060,29830
+63428,18388,11838,29238,4732
+63429,5267,14552
+63430,198,52232,50269
+63431,23816,15183,81212,78784,25282,26829
+63432,297,73905,49052,38172,7224
+63433,71827,52805
+63434,20680,8751
+63435,13112
+63436,53320
+63437,57983,74129,1788,6529,81689,69615,44978,8163,34499
+63438,67222
+63439,8849
+63440,67469,24890,420,55837
+63441,74587,40298
+63442,42858,19850,28371,52504,56206,56848
+63443,43114,54296,55575,54850,13036
+63444,18658
+63445,18212,6348
+63446,33489,8938,28638,32907
+63447,14650,12026,38941,32196
+63448,44661,70328,27663,70602,47912
+63449,71930
+63450,28882,29949,64555
+63451,24912,42592,12739
+63452,18049,77294,20132,58342
+63453,38692,44957
+63454,59976,45989,39547,58259,27381,33134
+63455,30827,63361
+63456,80423,37098,68734,26225,47148
+63457,76991,81083,77652
+63458,13862,42392,55856,23371,47987,46209,4238
+63459,68367
+63460,6899,56488,31637,36791
+63461,49164,69884
+63462,16779,64355,49537,17802,67535
+63463,28698,48872,62605,759,43601,29570,39239,5247
+63464,13994,23779,65868,18588,44918,52735,48142
+63465,66063,7790,57659,7212,3455
+63466,16903
+63467,68567,72023,36605,48723,21744,15532
+63468,47365,58746,34556
+63469,71571,54897
+63470,57308,75935,7146,6415
+63471,81994,25064,27263,7042,67759
+63472,14343,41934,17929
+63473,54738,26117,75674
+63474,43336,14211,24187,30474,28461,30663,6326,70941
+63475,55657,61884
+63476,61917,26275,21932,55593
+63477,44383,22417,31042
+63478,22058,20018,23178,5433
+63479,39193,55952
+63480,41122,26980,1517,31112,53671
+63481,52900,45652
+63482,18707,24674,10485,39984,28711,50859
+63483,31211,52157,19756,54914
+63484,28409,76189,34140,57967
+63485,22243,28941,39853,30698
+63486,32548
+63487,11247,60043,32925
+63488,7647,36733
+63489,56750,25128
+63490,28879,67727,4542,20994,37638,59535
+63491,71733,21634,29012,8158
+63492,76184,81109,78652
+63493,43353
+63494,30470,66337,41845,67137
+63495,34871,47303,50066
+63496,76487
+63497,18782,28011,53136,80595,25093,32666,51822
+63498,73436,69127,15504
+63499,66861,34501,66596,25421
+63500,45449,6250,9971,50216
+63501,70764,80329,41419,63938,17379,14549
+63502,12871,60278,24833,75120,30643,81925,80061,33919
+63503,76196,64395,58274,61784
+63504,18262,10623
+63505,58811,4389
+63506,12503,2836,73008,60440
+63507,24842,35224,40796,76940,45201,36293
+63508,51716,17265,71821,54637,27885,54904,69914
+63509,36276,32459,60845,15090,40514,47184,39292
+63510,24249
+63511,76964
+63512,4874,64598,59677,38852
+63513,13008
+63514,39565,2486,61436,75699,71263,3193,20434,74912
+63515,28468,26550,33672,51910
+63516,36105,26165,74729
+63517,50102,45312,11263,329
+63518,43377,39485,9920,46397,58858
+63519,4109
+63520,36990,58902
+63521,1533,36974,53707,24422,6347,47783,35024,67570
+63522,20040,66202,26226,52245,61610,17263,9812
+63523,67817
+63524,31720,62982
+63525,45357,25307,17320,51118,27721,43330,71694,37469,22620,53249,78704
+63526,12503,55623,6708,51800,50129,14876
+63527,46566,9194,45371,78255
+63528,13256
+63529,35785,31671,1213,68852
+63530,717,71604,17691,4681
+63531,36917,70349,16661,77998
+63532,9492,25704,26495
+63533,71314
+63534,10662,8611
+63535,1147
+63536,52821
+63537,17832,34577,49075,49274,64689
+63538,17277,4864,16031
+63539,7639,1419
+63540,51248
+63541,61614,8571
+63542,47852,54294,64538,9692,65977,71102
+63543,28742,27457
+63544,51346,73904,72668,78103,73551,80384
+63545,6314,814,76042
+63546,30548,49345,73667
+63547,51240,30626,36986,64620,61080,17485,918
+63548,53979,60225,38074,76747
+63549,27805,70923,49245
+63550,50864,76931,55434
+63551,75554,33908,45835
+63552,25815,22738,77121,43050,14816
+63553,27944
+63554,30107,6982,45628,45072
+63555,17684,48035,10409
+63556,39031,34756
+63557,5705,66005
+63558,8696,40494,28813
+63559,75288,60689,16986,58375
+63560,1205,31061,429,28404,46573
+63561,77543,39699
+63562,72432,6421
+63563,71814
+63564,26698,66987
+63565,75114,22579,857,35292,74589,22927,2118,6116
+63566,59110,6240,64249,63516
+63567,68159,68524
+63568,76236,78401,5131,30464,9759,34404,9996,47754,24449,67800
+63569,12479,5299,33375,34432,33180,68232,36421,22870,14817
+63570,38609,7739
+63571,78517,56537
+63572,68053,44465,26059,77717,20310
+63573,24484,34806
+63574,35489,13860,76512,1645
+63575,24632,76829,61228,26068,1963,21308
+63576,15638,13475,49800,21709,64453
+63577,48346
+63578,54349,9890
+63579,33246,5208,14300
+63580,73500,56206,29660
+63581,8100,72588,34277,53785,69681,56136,57153,42207
+63582,44615,46513,7194,24055,79149,78843,24773,16690
+63583,81963,46202,46680,73351,71615
+63584,25819,66844
+63585,22271,11396,70086,14307,5800
+63586,52701
+63587,13672,62044,19948,14222,70202,57924
+63588,32182,60345,3648
+63589,1398,52089,10748,2392,66241,76369,37027
+63590,54275,77629,77868,6479,44920,38449
+63591,38108,65760,17655,8474
+63592,38677,67448,68378
+63593,68266,12698,79699,735
+63594,76164,28640,5066,54381,73833
+63595,55066,50624,11614,39763,69049,2358
+63596,80490
+63597,81869,35741,74932
+63598,81934
+63599,62244,16071,5716
+63600,12711,74341
+63601,3634,53563,23340,71636
+63602,15958,1391,37149,38850,12525
+63603,10910
+63604,78114,2162,68712,62430,31888
+63605,51452,55287,80439,68145,37644
+63606,56903,41397,79105,38400
+63607,80448,54885,50947
+63608,36219,2252,53806,36893,23593
+63609,82045,5389,75475
+63610,70311,5175,66627,25958
+63611,6798
+63612,40555,78451,22255,48954
+63613,60664,25027,23903,15358,29297,38402,53841
+63614,21715,13478
+63615,52266,35266,23093,71648
+63616,72263,67191,76195
+63617,74323,39366,65289
+63618,31414,7257
+63619,76187,2762,22031,60073,73414
+63620,62260,77579,4024,65820,38742
+63621,2880,24193,46643
+63622,59028,15257
+63623,57696,40751,8913,13623
+63624,22316,3851,69435,16850,47583,63869
+63625,60314,56917,61813
+63626,28791
+63627,42199
+63628,66994,75078,52062
+63629,25404,49374
+63630,3847,4292,81055,76191,37964
+63631,69754,38029,35472,16902,29173
+63632,70012,73292,77170,43918,29707,5160,48387,41319,42930,18257,2384,48041,64932
+63633,49983,69900,69849,25182
+63634,19099,69921,66490,63865
+63635,16036,39490,79679,39666,35591
+63636,45259,32973,55768
+63637,75845,4242,66678,63790,75209,43236
+63638,32501,35800,40625,65365,61022,45311
+63639,63844
+63640,67834,69498
+63641,61104,60247,69743,16712,55987,20420
+63642,7084,38523
+63643,71526,61352
+63644,19572
+63645,54010,16878,65176,80070,9568
+63646,6866
+63647,47138,14857,9817
+63648,52645,73092,42807,62242,77713
+63649,36449,11808,58463
+63650,69325,46087
+63651,31521
+63652,67261,16744,53540,28835
+63653,13037,62702,1413,47802,21988,56577
+63654,33956,68426,9911,59324,46857,53097
+63655,19417,38078,5956,43118,17680,23204,6926
+63656,20829,68656,3962,57007,1744,73831
+63657,19736,46019,58159,35851
+63658,15389,38849,30496
+63659,56881,21875,45228,32540
+63660,36826,78371,51966,70248,1595,36030
+63661,4465,59786,2114,9948,81663
+63662,13771,2111,59484
+63663,14372
+63664,60595,21354,3854,11601
+63665,22094,68002,53373,70675
+63666,23520,254,23068,19002,5154
+63667,28614,37696,47499,32890,77280,33550,33462
+63668,19207,50422,27890,52613,70031,12989,30993,48735,6351,53149
+63669,48413,80556,20190,19433,12988,32904
+63670,81152
+63671,14189,54622,39873,76682,59039
+63672,66479,18135,20397,33329
+63673,40627,50477,81250,21038
+63674,19947,52104,69998,42578
+63675,36719
+63676,49679,52624,52187,7154
+63677,35846,72110,27487,78414
+63678,67840,65817,36577,59155
+63679,30233,39694,8677,76355
+63680,57473,35592,61681,64460,12713,70061
+63681,20397,16141,18236,797
+63682,30907,10252,78752,65943
+63683,37800
+63684,5902,18936
+63685,6882,20768,38502,69727,40921
+63686,65470
+63687,48329,48433,52624,33040,1005,71751,45564,9145
+63688,70566,62521
+63689,75081
+63690,15975,12615,19794,23505
+63691,35736,34128
+63692,10045,35416,17299
+63693,64139
+63694,80051,11414,6272,49389,74285
+63695,28306,28105,9822,5226
+63696,37538,79368,48901,54719
+63697,28429
+63698,10292,50761,979
+63699,818
+63700,25416,10289,53020,62609,61331,69317,23968,63183,76140
+63701,52292,63319,53844
+63702,45931
+63703,31112,2726,19895,70008,3726,66050,79199,12383
+63704,73596
+63705,27660,17339
+63706,5328,17312,56072,81746,49635,34247,63072,72416,69464,23520,57656,65995
+63707,39610,3814,75777,57919,1846,24244,41522
+63708,55992,36280,75468
+63709,13778,24830
+63710,15193,15832,49104,29279,30218,13042
+63711,5118,39879,18920,48340,69817,22214
+63712,26893,22592,59467,44825
+63713,51288,11137,68179
+63714,58151,13110,64365,11166
+63715,52193,27094,17696,71177,66841,67639
+63716,38263
+63717,28004,45570,6060,28837
+63718,59469,41265,13631,38407,61514
+63719,23753
+63720,35591,61202
+63721,5371,43648,11453,58457,5463,23266,33450,3149,29419,6359,49047
+63722,25897,20878,68249
+63723,29868,38535,61402,8253,51068,76963
+63724,29738
+63725,42535,22389,56342,12222,19650,9922,81085,7705,56395
+63726,75198
+63727,23504,22543,51910,50343,68622,40614
+63728,2268,2064,40870,32689
+63729,70032
+63730,14335,45651
+63731,46795,72744,80410,21970,43408
+63732,10331,57937,52901,39260,54324
+63733,40166,24467,44887,15405,76398,63742
+63734,17224,4499,47352
+63735,71798,4881,38535,40613,46475,2006
+63736,60924,44049,10079,31862,62690,66722,11237
+63737,34436
+63738,31225,45785,33983
+63739,40584,45089,6742,25562,78943,53256
+63740,30650,47247
+63741,47511,10980
+63742,65621,62750,2604,26469,72147
+63743,5496,65060,40834
+63744,24484
+63745,22318,15217,32824,45486,19963,4183
+63746,51754,66712
+63747,32820,21813,27542
+63748,15660,32022
+63749,32389,31109,35064
+63750,26026,32624,44307,33077,37289,45717
+63751,53501,24477,43607,66592,18581,42384,34970
+63752,73473,29558
+63753,43926
+63754,2929,31775,79301,63647
+63755,31418,66164,36403,23825
+63756,74013,51607,78037,13756,15501,39414
+63757,7459,18928,10596,79171,80585,53543
+63758,61037,55930,6552
+63759,20113,3071,33790,6534,81285,1331,60730,77191
+63760,25656,55054,70137,23307,45060
+63761,43822,12647,43647
+63762,746,71300,26493,49147,4627,47976
+63763,56364,51777
+63764,11831,76450
+63765,7803,44256
+63766,35231
+63767,69133,24098,43409,6275
+63768,57558
+63769,56426
+63770,7719
+63771,80940,47399,15374,21745
+63772,57241,41668,80030,36552,22047,11900
+63773,24001,71532,13308,34810
+63774,53794,71324,73320,64190,69015,33101,50863,54077
+63775,73575
+63776,20618,6821,64354,53558,28691,68275,46435
+63777,62893,36960,17241
+63778,7887
+63779,79882,6097,80607,18164
+63780,81845,9996,31770,36957
+63781,43250,35516,53813,5187
+63782,32730,2753
+63783,12813
+63784,12241
+63785,32858,4547
+63786,2721,1678,405,78273,13133
+63787,80036,7545
+63788,59091,77750,80964,43550
+63789,58665,8041,38254,23510
+63790,41657,67953,23171,15351,79667
+63791,45863,67231,15058,32829
+63792,56703,14433,4976
+63793,22049,59288,22125,42005,36867
+63794,23545,10066,36425,78315
+63795,58410,19520,18517,46540,65131,6453,2757,71053,41916
+63796,50131,49326,48392
+63797,18694
+63798,49096,71597,33452,51451
+63799,12510,20619,21022,30236,78816,38885,64469,49176
+63800,57986,21960,66244,55997
+63801,55930
+63802,13141
+63803,55242,5672
+63804,74879,38460,14151,52735,24184
+63805,55941,49386,39713
+63806,53217,44363,31404,39559
+63807,36191,26296
+63808,46247,32856,72435,314,22817
+63809,24183,4997
+63810,55353,5684,67490
+63811,22774,43620,30710
+63812,2371,38681,3718,60082
+63813,8727,26680,5786,10748
+63814,68450,16520,48230,42088,23799,103
+63815,22573
+63816,73526,51688,62053,5472,58795,37064,70963
+63817,53153,53714,10808,71762,5131,44531,24303,80567
+63818,55094,10881,7897,13233,39878
+63819,69258,67506,10500,28871,38771,46542,16471
+63820,10391,49070,21214,26963,76247,58747
+63821,53565,29610,28715,33248,60180,53685
+63822,38019,72403,14315,57703
+63823,11162
+63824,2734,6749,961,33966
+63825,6518,69025,22978,27626,14034
+63826,2347,33769,66741,11415,41180
+63827,57000,66583,61259
+63828,21570,80646,34407,5358,54074,40624,55895
+63829,75695,49172
+63830,51170,27552,21098
+63831,21782,45463,42547
+63832,50296,77413,72231
+63833,49510,6905,14565
+63834,3126,70927,16918,41560,48275
+63835,57284,79509,67191
+63836,37644
+63837,75279,57940,48010
+63838,7278,44193
+63839,24193,1512,75235,51322,67525,45657,32718
+63840,33564,15491,55688,72867,19658,42991,20397,74865,52364,13970,35588,79156
+63841,9369,26384,11943,5238,14598,51928,42610,53278,28033,23182
+63842,55915,79585,33414
+63843,13418,81040,42947,64641
+63844,51461
+63845,45483,69554,53738,7927
+63846,57078
+63847,36495,16478,65893,23243,39533
+63848,55141,37973,53396,66177,16783
+63849,64145,24387
+63850,39165,17237
+63851,80683,37770,36951
+63852,4326
+63853,77246,37213,80164,17770,50087
+63854,49242,72793
+63855,80318,51580,33586,42331,77715,61390
+63856,32877,8368
+63857,7595,57977
+63858,3143,63505,35979,14181
+63859,67706
+63860,66583
+63861,38965,37084
+63862,43412,45828
+63863,37251,48241,63226,20307,29232,7135
+63864,67699,81430,20583
+63865,65652,58861,1789,727
+63866,79328
+63867,82108,30120,51892,24021
+63868,79991,45757
+63869,16286
+63870,75001,12625,60571,49249
+63871,66620,26112,60249
+63872,56194,14272
+63873,29843,31778,57373
+63874,42909,16671,20370,53127,66231
+63875,56835,4864,18376
+63876,68570,17948,10055,75320
+63877,25039,18887,38347,10080,27136
+63878,16367,9945
+63879,69900,24865
+63880,394,56042
+63881,31469,18105
+63882,9643,55228,79293
+63883,62009,47659
+63884,8355,39645,33656,427
+63885,27077,44106,68447,41089,1012,30163
+63886,71711,70567,11597,7564
+63887,12922,11609,3717
+63888,60944,17089,59316,38725,64884
+63889,81086,66324,73575,51720
+63890,67740
+63891,1596,80813,81168
+63892,18699,27992,8922,29453
+63893,77423,36011,39460,54797,26323,54072,44559,70493
+63894,69680,39998
+63895,35056,24481,33242
+63896,34689,49943,22085
+63897,51306,10659,79377,58384
+63898,53559,45486,68674,42233,31531
+63899,6075,79936,6822,8449,59550
+63900,66718,37079,42584,37768
+63901,36914
+63902,78309,24015,56980,37929
+63903,69195
+63904,61311
+63905,10425,57557,16497,32637,830,64412,69691,66465
+63906,69810,4033,82183,58747
+63907,36886,79817,71586,6424,23656,28209,28785,81544
+63908,70243,40538,6597,850,70400
+63909,51314,45277,24200
+63910,41635,76197,46081,71108
+63911,68499,60162,70013,24523,20136,60193
+63912,68897,72325,44940,73472,29717,60928
+63913,66300,34700
+63914,69575,27451,47757,6745,37042,57256,80895,62901
+63915,5299
+63916,73800,44252
+63917,73400,47817,49902,81412
+63918,1084,74143,55095,60672,10992
+63919,64122,33603,40417,68692,67859,66738
+63920,11070,67720,32130,1317
+63921,22774
+63922,5588,7159,24522,48224
+63923,45606,68657,68373
+63924,57281,23190,32759,23314
+63925,76292
+63926,29381,14383,77910,40487,23974,29067,60098,65166
+63927,24845,67007,6023
+63928,80829,26857,35317,59184,22233,29782
+63929,3025,31780,77194,44330
+63930,9489,4884,6972,26731,64826
+63931,25842,2799,30509,19163,26614
+63932,22589,13968,43057,26900
+63933,63194,48847
+63934,46116,8906,53609,19576,7685,44845,11105,68594,26526
+63935,53387,80901,78051
+63936,10872,55409,81054
+63937,75667,2470,36428,46240,64518
+63938,20494,8642,37200,3858,41047
+63939,44329
+63940,21210,57594,22713
+63941,42250,12476,51307,33513
+63942,8283
+63943,69658,73156,35316
+63944,28118,20305,71670,38607,15850,80627,34352
+63945,24679,44152,45883,59626,51159,56951
+63946,31672,62775,59082,12019,19870
+63947,19308,69747,27082,76375,64002,69724,57170,70263
+63948,6819,66234,51125
+63949,72459,48153,43623,21148,64176
+63950,16640,26350
+63951,42656,31842,40020,69200,55738
+63952,20296,44049,26113,60152
+63953,3849,11830,79716
+63954,6138
+63955,26862
+63956,45856,16598,53052,18800,29547
+63957,39900,73892,68869,65918
+63958,4375,74348,28838
+63959,20174
+63960,52282,39882,32268,9051
+63961,74770
+63962,51391,28537,61985
+63963,1661,13934,32111,7551,14465
+63964,47053,4435,57637
+63965,7062,17098
+63966,37627,77114,44957,74016,49483
+63967,3903,53760,61565,33806,27464,46532,18008
+63968,76943,52399,72794,6382,16071,76462,36542,10822
+63969,18111,81508,23626
+63970,16712,4287,71970,12115
+63971,14467,32775,41549,53827,17831
+63972,35147,43082,57426,21618,63898,61533
+63973,40603
+63974,13905,68034,56574,74097
+63975,7537
+63976,45935,33348,479,62882,32140
+63977,45835,67012,23830,77464,18814,1963,6312
+63978,42526,82001,2393,19987,79018
+63979,49632,44746,24117,48985
+63980,44565,62295,26496
+63981,54969,77695,26086,21954
+63982,39149,77030,32591
+63983,10872,36810,31639,9685,35994,76429,4629
+63984,36296,22824,479
+63985,9158,353,49537
+63986,40755
+63987,10000
+63988,32062,1464,54072
+63989,76385,37938,37981
+63990,61417
+63991,37960,81563,23662
+63992,14574,1935,1114,109,50470,60554
+63993,74227
+63994,76442,60249
+63995,52100,3699,80700
+63996,72547,58348,64138,13618,71361,56169,80359
+63997,7878,37907
+63998,1633,14868,80871,44180
+63999,56701
+64000,27486
+64001,28128,51248,68697
+64002,45443,9493
+64003,32250,76527,71954,8903,71412,8728
+64004,9122,65840,24119,11205
+64005,395,31898,12007,19231
+64006,10838,34961,59855
+64007,24415,51550,29673
+64008,21190
+64009,42401,44278,67896,27894,41598
+64010,36664,21848,31252
+64011,50421,27770,38584,54291,21809,81754,10206,48742,41377
+64012,28503,56858,48962,61493,38366,72737,28783
+64013,54941,26159,70824,75071,49274,17197
+64014,20134,72125,80909,75910
+64015,61746,46945,69112
+64016,60294,55518,80803
+64017,56921,10038,8203,41710,48616
+64018,80514,81109,59326
+64019,29545
+64020,43610,81736,58706
+64021,52429,69590,78121
+64022,77529,17190,73914,48066,274,5525,9371
+64023,13007
+64024,60372,77760
+64025,20130,17130
+64026,51485
+64027,22553,32343,73464,77537
+64028,28760,22839,34038
+64029,70008,47290
+64030,53098,13081,23163
+64031,30681,39015,46009,29272,75109,43036
+64032,71995,116,56211,8284,2594,15485,585,50224
+64033,23397,79961,72156,40185,71469,60077
+64034,22175
+64035,4637,28790,65098,28309
+64036,30689,45649,59078,72707,43605
+64037,21469,8240,59601,33023,14979,24828
+64038,51997
+64039,39061,33348,17957,63277,57642,41531
+64040,29244,65397,60402
+64041,31004,56448,25320
+64042,24253,21749,67612,33328,39032
+64043,32185,80021,12559
+64044,8378
+64045,28601,40960,20452,31499,53582,62658,50205,80919
+64046,38515,56350,29168,40555,62297,32973
+64047,35454,1645
+64048,70957,12207,38568,78396,14925,17632,78533,2138,67787
+64049,11648,15962,78291,69235,15846,54227
+64050,45262,17205,3025,67775
+64051,27878,7050
+64052,36794,76576
+64053,54864
+64054,21571,29852,56117
+64055,59615,9878,33518,64428,9718
+64056,5092,20958,51163,47108
+64057,27568,31131
+64058,68142,81777,18361
+64059,8622
+64060,54231,26431
+64061,10888,46566,27762,20280,19379,30246,8099,55118,53333
+64062,7355,44183
+64063,39844,1121,17178,52397
+64064,32689,10259,47279,54721
+64065,28129,50992,14359
+64066,16192,15272,2564,3494
+64067,32210,20296
+64068,25521,7054,4892,68286,17708,36923
+64069,26022,62256,67443,32340,72910
+64070,35911
+64071,51663
+64072,76769,42156,43998,73254,65850
+64073,74053,67099,38697
+64074,376,31112,81581,23496
+64075,452,78349,26926,81891
+64076,69240,75049,23907,37461,67482,26142
+64077,81115,10969
+64078,66449,37491,43867,59127,3087,37956
+64079,35026,19385,20102,62781,45353,41885
+64080,37265,12940,76513,69251
+64081,32288,73437
+64082,46968,24069,45112,20913,43995
+64083,13468,9295
+64084,37366,844,62603,68235,12633
+64085,34756
+64086,24416,54371,43278
+64087,5389,72033,824,59541
+64088,8762,67630,13461,3969,77234,9859,81224,42539
+64089,34627,39519,47449
+64090,29654,77548,78578,37418
+64091,7267
+64092,33855,10444,47495,46240,18762,55978
+64093,76674,31591,35973,22817,6000
+64094,72164,37884
+64095,56943
+64096,44679,54342,22192,76191,51854,25605
+64097,38703
+64098,52613,63405,60521,73837
+64099,67984,32754,47517
+64100,64430,32730
+64101,3305
+64102,61813,50499,75990,3492,30104
+64103,21017,44856
+64104,54704,22915,51266
+64105,8699,46088,33149,63736,30393,6106,5676,11429,7830,53587
+64106,69647
+64107,71480
+64108,81627,43446,57282,65959,25398
+64109,29278,5703
+64110,22752,54676
+64111,63492,19968,26810,5844,43753
+64112,39023,58167
+64113,70027,32170,70852,20934,42870,21564
+64114,4867,45096,3402,35672,42781,74061,34499
+64115,80289,12455
+64116,22840,65049,75606,9845
+64117,73682,74285
+64118,10514,36604,73288,32181,9663,74963,16690,25963
+64119,43968
+64120,55708,30489
+64121,1375
+64122,72114,62341,27383,31135,12532,57300,51615
+64123,19453,45833,27316,55765,40045,12798
+64124,61075
+64125,70135,57843,54926,56092
+64126,25556,46126,55680
+64127,80559,76617,43046
+64128,6642,43682,74863,22975
+64129,13676,55802,14363,36016
+64130,59179,20813
+64131,47141
+64132,38387
+64133,13434,25071
+64134,19091,26830,41108,42132,11674,81997
+64135,8179,74871
+64136,170,40188,5968,57046,27252,76310
+64137,58589,80535,64611,12727
+64138,57159,56289,57449,26873,33768,49828
+64139,24605,21906,15169
+64140,37586,71141,66764
+64141,8887,29057,22216,62612,66520
+64142,65310,76584,33005,37605
+64143,18347
+64144,35071,47406
+64145,80959,62580
+64146,75224,58238,19619,43463,39264,78940,66398
+64147,46164
+64148,8023,55862,81623,61713,63617,77856,31185,21706
+64149,11591,26930,8081,15149,75353,72116,28002
+64150,40614
+64151,64176,34491
+64152,14307,57603,49354
+64153,10869,7106,26828,37422,55436,61006,13157
+64154,48922,63853,55180
+64155,607,61603
+64156,69701,6515
+64157,80792
+64158,28809,58136,53007
+64159,1801,82186
+64160,25918,10115,47272,37280,29721
+64161,12254,30365
+64162,23428,15271,44099,14922,57396
+64163,14208,46579,9417,76124,22188,50335,79424
+64164,12456,76833,12270,36347
+64165,77612,51224,51190,58883
+64166,74259
+64167,74100,4358,77537
+64168,32029,19822
+64169,59516,21466
+64170,69612,50886,13206,43606,74895,54933
+64171,48721,10522,63113,5406,48853
+64172,56924,33528
+64173,52632,67482,60925,63315
+64174,13707,26935
+64175,63606,51545,24633,65701,22439,70271
+64176,9458,7627,22033
+64177,36870
+64178,78068,70049,45193
+64179,66256,32926
+64180,16168,28713
+64181,8909,44693,56244,16247
+64182,81033
+64183,81994,25828,58157,25484
+64184,5486,63619,28552,75414,50413
+64185,42715
+64186,22287,11979
+64187,76103,47290
+64188,5692,35007
+64189,80422,48411,40694
+64190,13655,71754
+64191,50999
+64192,52990,15883,66695,41323,73924,59367,74335
+64193,68130,71437
+64194,81210,24506,12372,27914
+64195,11022,74422,61380,5713
+64196,59227
+64197,77264,12087,34170,71902,60491
+64198,71647,15819,34480,8439,48814,65669
+64199,73304,5970,40788
+64200,23605
+64201,23497,68116,48298,51862,71451
+64202,48698,26501
+64203,37910,77649,49687,77513
+64204,23120,31398
+64205,41159,79659,43522
+64206,77229,60472,76363
+64207,10946,64267,68507,15645,30795
+64208,27849,61706,61621,9509,77306
+64209,60995,77398,47467,65232,52806
+64210,60326,17378,8544
+64211,78537,19671
+64212,73289,58830
+64213,68420,51798,72545
+64214,43113,70348,19769,59068
+64215,40460
+64216,81063,7486,12466,12972
+64217,57352,59615
+64218,31317,69376
+64219,67208,62882,48702
+64220,45257
+64221,15907,20393,72917,74601,6392,17212
+64222,59088,8629
+64223,69486
+64224,80573
+64225,80877
+64226,13412,38660,20943,14491,58983
+64227,38293
+64228,47446,37960,33597,6507,36468,41446
+64229,41680,81171
+64230,3378,17594,71623,16802
+64231,12954,37801
+64232,53432,67953,66704,62239
+64233,49356
+64234,19809,19543,36620,45316,78257,19279,43361
+64235,3325,80904,8528,70923,42380,18584
+64236,51954,77547
+64237,81441,20184,15873,26345
+64238,31055,41786,12032,70284
+64239,70744,17905,62791,48816,42892
+64240,54543,71391,39118,18245,47674
+64241,25729,27007
+64242,58641,69460,51960,8592
+64243,78325,78196
+64244,11285
+64245,29893,23412,22058,18124,80667
+64246,49036,32301
+64247,36672,47692,32956,8870,19266
+64248,40102,7930,4112,4556,18911,36656,76783,60450
+64249,28657,46035,27239,53027
+64250,31810,16123
+64251,40647,17091,39368
+64252,73717,73946,64917,32399
+64253,82118,16620,37764,13580,30001,2537
+64254,880,49900
+64255,69935,43440,60517,9647,75166,56474
+64256,47227,59023
+64257,62339,56633
+64258,10107,61897,38214,56525,23602,28285
+64259,20650
+64260,27796,2440,15890
+64261,20004,11475,5447,48280,77155
+64262,60091,67006,73937,19169
+64263,69980,17814,76949,54678
+64264,36065,38591,4080,34697,29997,37929
+64265,72851,20094,8510,12968,20604,40870
+64266,31192,24803,4302
+64267,46550,54419,64795,65834
+64268,78639,53576,68125,34737,63064,22427
+64269,15357,70012
+64270,56309,56204,63451,70047
+64271,4238,74481,16015,56622,58212
+64272,74848,29919,29570,45607
+64273,5878,29136
+64274,77775
+64275,25359,54280,25749,66286
+64276,60528
+64277,44563,65029,11851,183,29435,29898,32628
+64278,58448,9063,42809,16907,301,10375,64973
+64279,6465
+64280,32229,53715,74099,8992,14229,65455
+64281,49351,43935,72469,81767,2064,54749
+64282,43671,42543,34237,72443
+64283,66480,80347,54512,38622,38445,19658,19903,5715
+64284,26507,3355,2789,74351,9759
+64285,21624,54632,60787
+64286,73559,58635,54388,633,45833,80879
+64287,11135,60278,71620
+64288,43454,40237,50136,8408,7859
+64289,77497,13517,63562
+64290,43823,82038,24828,72885
+64291,44546,77182,73481
+64292,70788,32904,12393,35353,60482
+64293,54388,66378,7256,76034,7991
+64294,16212,56307
+64295,13042,81542,39329,3311,50654,54482,77495,51160,37689,25219,11822,17002,15384
+64296,54905,38160,58890,52514,64526,55996,41159
+64297,19366,21590,79789,36774,22912,72652,74433
+64298,70907,9667,75450
+64299,2753,52589,21741
+64300,19275,14873,53176,1888,21734,26620,38298,11856
+64301,18972,76081,74570,20445,8534
+64302,66985,49948
+64303,64038
+64304,45960,28917,5682,7164
+64305,78090,56340
+64306,51253,8830
+64307,756,58680,32992,2781,74658
+64308,62595,34476,56431,14142,33505,51081
+64309,68306,25207,66553
+64310,51594,35487
+64311,8852,36013
+64312,48091,19224,40155
+64313,34131,22373,75272,72955,60493
+64314,56654,23579,21588
+64315,28308,68258
+64316,267,14129,55127,45092,35332,67614,65193,50549,55199
+64317,76963,16455
+64318,480,48921,81027,43896,38751,77484,79736
+64319,31506,21520,31978
+64320,519,548,34261,25322,11641,42228,23422,55645
+64321,68528,53210
+64322,45095,14083,13662,72092,76979,10672,75928,33195
+64323,29694,1419,20745,13616,35744,42393
+64324,44424
+64325,66153,4406,41126
+64326,47818
+64327,73464,74540,56253,15634,76810,57368,73065,34826,8620
+64328,38132
+64329,30905,13478,16337,55838
+64330,60932
+64331,6831,14,7843,53380,6702,677,54886,74740,10284,47857,1935,53554
+64332,4137
+64333,39499,16888,77743
+64334,42938,29075,15776,33272,30986
+64335,72371,63852
+64336,77266,35974,72775
+64337,4991,81233
+64338,75986
+64339,55131,59019,4231,47045,32930
+64340,63729,43515
+64341,43953,45107,1284,51381,21956,42328
+64342,72251,74980
+64343,33130
+64344,15244,57441,71571,61541,72156,42855
+64345,32688,36464
+64346,18350,30622,32423
+64347,45098,64074,79771
+64348,5584,68600,60035
+64349,72734,10043
+64350,80137,52237,20580
+64351,1993,13340,3877,74016,51943,15894,61029
+64352,67271,58705,62729
+64353,73481,18575
+64354,68803,46715,50536,9691
+64355,548
+64356,62126,26889,51981,51143,28734,35534,15797,35132,12416
+64357,14592,59057,7890
+64358,7129,81705,18380,82104,9685,26275
+64359,31175,23316,34204
+64360,35419,23923,55236,65432
+64361,64781
+64362,6747,21031,64059,16905,35054
+64363,35094,50927
+64364,47206,21134
+64365,62665,71863,64958,63382
+64366,39722,53086
+64367,46307,57211,33938,55051,32931
+64368,79291
+64369,36872,63837
+64370,25865,30893,16666,6505,65798,2674,40266,67559,19405,19546
+64371,18136,49176,25317,34321,51366,49336
+64372,12215,11803
+64373,80790,25164,47664,13622,80671,5278,71640
+64374,41561,26276
+64375,65920,46151,57356,56880,30247
+64376,35549
+64377,47200,52738
+64378,34249,67723,10288,13876,61311,37307,27813,36082,21819
+64379,29684
+64380,25247
+64381,68506
+64382,14970,76677,68462,24118,66438
+64383,62779,68207,50120,7797,64630,80664,67869
+64384,59703,42223
+64385,51035,32778
+64386,43716,35271,34477,68736,58400,3559
+64387,51663,29723
+64388,28345
+64389,44076,62899,33410,39223,44551,72111
+64390,44992,63960,74330
+64391,18228,21744,70639,79084,77939,48637
+64392,23092,30586
+64393,16880
+64394,19257
+64395,37332,74669,80868,45908
+64396,75313,64527
+64397,76578,14855
+64398,52202,74347
+64399,44053,10613,44095
+64400,71934
+64401,39307,80032,50523,34912,39268
+64402,2838
+64403,48469,47979,13362
+64404,19823,55086,43082,42609
+64405,12717,43519,33659
+64406,17461,39844,62921,34451
+64407,39407,54565,53975,80902,75830
+64408,51098
+64409,37285,24715,39795,30909,48355,2162,76212,42353,77343,24861,79625,45280,33367
+64410,78981
+64411,75242
+64412,68165,53210,78164,81932
+64413,324,674,25133
+64414,12039,16614,12732,81330,8969
+64415,17091,55927
+64416,33449,10794,38241,31434
+64417,17170,61232,29357,14517,34457,32468,51981,46965,28502,79487,17688
+64418,4682
+64419,75065,3420
+64420,7950,29023,31949,72852,78938,22687
+64421,45730,53319,56921
+64422,32606,53454,31945,138,39520,12779,12256,54127
+64423,14579,55657,1981,26205
+64424,12790,12556
+64425,67586
+64426,53538,13152,14140,32218,47811,74415,78
+64427,868
+64428,60832,51534,76774,21205,32323,32278,81490
+64429,49475,62469,48413,67431,6966,10324,36887
+64430,55570
+64431,6939,36299,81688,12691,8389,60804,61688
+64432,61813,8046
+64433,44026
+64434,77043
+64435,56581,21641,4717,28441,66747
+64436,69180,60354,35444,20820,41483
+64437,6449,66121,56683
+64438,48698
+64439,42535
+64440,28248,12503,37092
+64441,2513,46066,66247,14949
+64442,64869,21022,50714,50930
+64443,46243,59643,9821
+64444,71220,77793,43683,67436
+64445,77505,76978,68722,21334
+64446,26139,47120,57431
+64447,32538,63354,8443,47653,49297,63378,21916
+64448,12283
+64449,12298,37686,50800,72067,955,19473
+64450,30980,35884,45327
+64451,40483,70367,81387,30005
+64452,74548,4565,20089
+64453,70842,6071,7507,4070,80707,28165
+64454,50931,25596,64377,48603,51450
+64455,3181,41279
+64456,6762,77751
+64457,79322,75681,7595,73103,55930,44482,74481,79031
+64458,21059,38895,70692,2093
+64459,54533
+64460,30460
+64461,16609,57510,38739,45642
+64462,6499
+64463,7620,29130
+64464,67678,19240
+64465,6077,12755,37934,40660,56241,80329
+64466,14331
+64467,61361,6473,6312,75200,34280,26341,6598,54809,57021
+64468,766,16045,27132,80112
+64469,40422,58686,7861,21211
+64470,24745,61908,79658,56338,49174,126,34237
+64471,32839,5998
+64472,17884,52389,28397,10093,2737
+64473,66902,21612,40480,15998,6374
+64474,749
+64475,58306,46903,25623,45342
+64476,22839,5049
+64477,58106,25851,57892,31305,48805,34487,54977
+64478,11831,60581,22371
+64479,47054,71593,5824,77645,45351,43314
+64480,49598,24706,46129,62912,60604
+64481,36078,20406,5980,80704,14264,42421
+64482,13234,69044,41858,76354,10115,64769,5846
+64483,70626,69555
+64484,35796,67501
+64485,69481,15600
+64486,2473
+64487,60899,34021
+64488,48260,43875,3664
+64489,69664,72842,42628,5673,4396,76493
+64490,18023
+64491,55824,16279,44895,33382
+64492,46198,62659,20567,27936
+64493,45780,1314,51485
+64494,20778,37626,31684,18263,26168,27712,28129,37365
+64495,23236,74517,16661
+64496,74382,13268,68579,30680,25417,81100
+64497,23488,30348,46236
+64498,34938,7239,46215,5164,60561
+64499,71825,3741,56222
+64500,70573,11170,32488,9640,12881,52401
+64501,4728
+64502,34116,21735
+64503,81994
+64504,57471,42168,43302,15098
+64505,52616,41313,30069
+64506,68619,37390,1772
+64507,28068,51383,21993,70381,3663
+64508,11527
+64509,68350,63108,11753
+64510,67485,78321,37840,47037,22454
+64511,56139,2702,75650,35483
+64512,35610
+64513,35786,7812,46180,34068,30378,44077,20454,41639,24815,15280
+64514,18790,67787,26805,69368
+64515,23486,19774,66599,79261,663,23456,70325,35089
+64516,37118
+64517,41304,49983
+64518,13529,16957,72651,58539
+64519,47550,48554,4355,48449,60364,67753,20933,29732
+64520,69062,45809,33059,9822,64818,48104
+64521,25587,77735,10300
+64522,58270,58448
+64523,58286,56640,57493,38680
+64524,17739
+64525,69026,28148
+64526,42310
+64527,16953,71119,12441,4872
+64528,12638,25615,13422,69143,40258,2205,65975
+64529,45219
+64530,29545
+64531,35588,51753
+64532,38766,43775
+64533,76073,42754,34903,76956,21743
+64534,37511
+64535,32927,16957
+64536,18973,52641,15313,28273,41998,47006,9564,13519,39122
+64537,70422
+64538,34198
+64539,7246,13530
+64540,55994,79249
+64541,70189,76408
+64542,58769
+64543,56561
+64544,34285,55521,68387,6615,52409,13778,42279,12759
+64545,3942,52932,78193,21811,11870,19199,78576,26445,12935
+64546,81684,67810
+64547,66984,75842,41519
+64548,54978,33925,68372,32930,77569,54986
+64549,77202,2676,42002,43693
+64550,50295,10107,18070,6982
+64551,47813
+64552,67272,49647,9704,2056,1671
+64553,41165
+64554,18979,79852,23625,14487,5352
+64555,49075,17861,44773
+64556,42464
+64557,13862,28863,65789,51848
+64558,25487,43318,69745,66881,48410
+64559,4307,44406
+64560,55461,79662,35901,27343,37910
+64561,67396,75722,45931
+64562,9886,11037
+64563,20618,67291,44156,51715,29819
+64564,267,41427,1040,58890
+64565,36775
+64566,27772,36172,30991,5111,81590,53828,78070,31010,78309,63761,81019,51899
+64567,1126,6948,47683,32066,714,50105
+64568,3152,46952,59276
+64569,13443,27819
+64570,53689,66156,3840,45258,25732
+64571,54392,52678,62536,27424,19738,12296
+64572,61080,8374,14851,63298
+64573,73474,21487,42490
+64574,4564
+64575,73149
+64576,42585,67115,41380
+64577,11383,30345
+64578,63792,50777,52969
+64579,46956,54836,39261,4034,74210,77285,69063
+64580,45149,48867,44210,67870,23082
+64581,58303
+64582,27091,56418,48789,25805,12246
+64583,76047,77299,6326,81781,40063
+64584,9817,48728,13720
+64585,57606,47720,71654
+64586,31578,58418
+64587,78046,42273,76106,6498,23406
+64588,33364,21619,16776,37577,26639
+64589,64164,39514,48105
+64590,24318,15980
+64591,58781
+64592,45571,22097,4266,81740,44338
+64593,55331,46004
+64594,45831,20708,5857
+64595,3618,41236,63210,7182
+64596,31152,59734,42191,23067,47224,49315,14254
+64597,66653,72877
+64598,63623,28864,7256,9442,80525
+64599,52258,51456
+64600,26355,4905,39759,32332,25208
+64601,28410,52911,11715,35333
+64602,9123,73466,21086,68310,75016,26362,12556
+64603,14933
+64604,59776,36487,49959,66930
+64605,68822,70351,31744,69907,63820,15453,70735,70146
+64606,51828,48182,14655,5245,60134
+64607,5168,58156,1668,22818,32935
+64608,5122
+64609,75582,66197,9116,25947,33631
+64610,53353
+64611,5983,26469,40233,75287
+64612,56168,55640,20837,48435,47433
+64613,52795
+64614,53229,7969,12075,26854,76600
+64615,7165
+64616,47754,57018,19816,74495
+64617,51546,49517,12116,33606,71676
+64618,45736,68756,46556,8745,62590,29977,4303
+64619,73461,443,67953,58206,36290,30109
+64620,6011
+64621,25574,4635,81366,48830,23241,20775
+64622,26802,75588,395
+64623,72843,54873,40854
+64624,12648,64080,42449,5066,74220
+64625,32773,5678,57144,26360
+64626,1218
+64627,40362,70413,49328,26154,52154
+64628,43088,75666,37879,72391,69367
+64629,70826
+64630,37702
+64631,44028,42743,23117,34163,69558,42792,56820
+64632,133,46692
+64633,35500,40539
+64634,50932,77198,4402,79456,59694,66267
+64635,60917,75883,54425
+64636,11865,57810,42424,30751
+64637,5110
+64638,38595,46145,44838
+64639,54698,54864,3682,39397
+64640,72467
+64641,19967,40567
+64642,24560,43710,5936,18824
+64643,51193,43078,54463,58228
+64644,37614,50548,18999,62007,7011,76327,46706
+64645,67747
+64646,44271,35911,18369
+64647,67814
+64648,45695
+64649,1238,4035,63171,69494,64814,22807,31899,77157,69132
+64650,4364
+64651,24128,41839,37435,22538,37053,27752
+64652,75349,7494,63227
+64653,55919
+64654,71227
+64655,1248
+64656,24965,50710,19890,57491,54959
+64657,50490,35600
+64658,37833,44256
+64659,24501
+64660,69422,82162,68053
+64661,82074,27543,47400
+64662,20650,55362,27567,803,65352,40520,55364
+64663,9611
+64664,15550,21306,162,14587,30590,36724,29590
+64665,66115,21159
+64666,71800,7280,9996,8466,33836
+64667,16577,70076
+64668,37520,20401,68964,81007,79676,5584,47457
+64669,78010,35300,80720,68454
+64670,34944,22551,22415
+64671,67852
+64672,11494,34297,27948,58527,36505
+64673,72591,70022,81898,16668,25640,37330,19179,16771,5497,66714
+64674,37609,7822,58763,8385,54595,33049
+64675,55416,64036,68996,593,31529,21212
+64676,71579,23495,34473
+64677,5152
+64678,76002
+64679,75460,63896,35001,1252
+64680,1245,323,53637,7641,23209,27811,52116
+64681,31552,211
+64682,76495,45653,9104,20879
+64683,71521
+64684,14228,57835,43863,5278,58094
+64685,42206,8130,78873,17389,75870
+64686,79806,33768,24224,82086
+64687,3369,12329
+64688,49097,45424,2595,15913,81583,41729,24086
+64689,49044
+64690,15201,54231
+64691,25686,65318,73076,20369,10431,39676,69202,74493,773,71521,3722
+64692,34655,78326,80022,52150
+64693,33781
+64694,76616,52509,34303
+64695,44091,61990,41434,62206,36422,38118,41733
+64696,51393,10105,44087,46639,17297
+64697,15601,24991,49483,66704
+64698,67655,69784,48582,21023
+64699,36421,54285,60184,56477
+64700,75863,73024,63768,7771,48638
+64701,66562,19165
+64702,63535,74943
+64703,7627,66488,36153,3419
+64704,61126,71127,30141,79298,25733
+64705,14906,33471,2814
+64706,59270,36364
+64707,56917,66164,54099
+64708,62985
+64709,13938,33557,44302,39619
+64710,45505
+64711,61661,29886,79933,3620,62784
+64712,37640,47639,53031,39882,56900,65035,16209
+64713,43639
+64714,42693
+64715,36450,57440
+64716,28727,52504,20806,17918,14064
+64717,9227
+64718,71211
+64719,55717
+64720,37665,35102,54442,37636,46639,56825
+64721,77422,61045
+64722,59629,10300,81365
+64723,54471,32063,18750,31197
+64724,68819
+64725,55503,42467,33667,39199
+64726,60099,40745,75372,58956,3093,23670,29100,5784,57770,56256,9642
+64727,18352,20157,2432,77900,78055,9366,65602,69153,3458,52297
+64728,45671,26101,35502,54990,47077,61311,62800,46310
+64729,64109,48689,6068
+64730,47648,50295,27384
+64731,21543
+64732,20108,16796,44632,58746
+64733,14129
+64734,5446,61408,138,57919,73328,9859
+64735,24494,39877,26959,51748,45627
+64736,11968,23518,23503,31110,25562,59788
+64737,49371,4315,73344
+64738,63864,25288,12295,16970,27409,13588
+64739,15154,34124,15098
+64740,44899,75170
+64741,1002
+64742,35276,13283,59821,72441,78325,38411
+64743,63843,44444,62418,66668,69735
+64744,76570,7357,4498
+64745,72392,23005
+64746,66573,75805,56561,5605,57210,62853
+64747,49526,13448,66689,24898,13008,81772,62046,45419
+64748,16362,32478
+64749,54112,4262,9838,29127,73449
+64750,58650
+64751,1353,82016
+64752,47365,14509,44344,81345
+64753,29747,25333,82147,57429
+64754,18069
+64755,41978,67759,57865,57446,16634,22053,65002
+64756,41045
+64757,17441,62316,17916,76271,17222
+64758,46039,25016,59577,53060,41521,38259
+64759,17438,29623,66814,15071,62026
+64760,20744,18518,45660
+64761,81023,31456,63362,81727,77474
+64762,25579
+64763,33424
+64764,19992,66827
+64765,49304
+64766,9264,53727,10285,56901
+64767,20231,81964,22235
+64768,45304,30955,53027,41735,34999,31668,30562,44230
+64769,21305
+64770,6320,35231
+64771,9575,9564
+64772,53857,8181,28724,66558
+64773,5692
+64774,29751,49260,72523
+64775,44257,11780,29224,21449,1530
+64776,5226,45364,3630
+64777,61219,39010
+64778,30459,35539,9085,29776,78345
+64779,44816
+64780,66782
+64781,65296
+64782,35069,11653,74364,43001,25791,66358
+64783,63378,20135,49459,59812
+64784,46671,78090,23887,7192,71178
+64785,57438
+64786,20565
+64787,27511
+64788,28176,60924,41421,76085,45896
+64789,58192,37182,72738,77142,23723,44131
+64790,15413,9829,8482,61181,52097,43346,46788,81484,49618
+64791,55183
+64792,75571,54197,73251
+64793,16661
+64794,18665,64066,31753
+64795,80232
+64796,60450,50619,47632,62863
+64797,46543,24185,71659,28019,70897
+64798,79916,71450,70876,28826,70026,59803,51822,8882
+64799,34735,17563,9334,4512
+64800,72140,73451
+64801,13169,38658,37777,16893
+64802,37109
+64803,70767,77995
+64804,14592,56240,15916,26658,46766
+64805,47989
+64806,54595,38739
+64807,51797,81080,24034,62891,74068,16188
+64808,57861,48483,63406,49917,2013,52391
+64809,16347,48396
+64810,63673,71446
+64811,5286,77953,19544,6501
+64812,46236,53428,76408
+64813,76710,72272,77404,12399,65995
+64814,16903
+64815,53587,1273
+64816,46689,17665,29060,52167,38644,30398,49075
+64817,16129
+64818,62247,25788,11272,4595,77644,48105
+64819,12751,21868,39916
+64820,56951,55025,68565,73766
+64821,69283,75636
+64822,65442,9904,57378,26537,64326
+64823,18060,74260,60563,79355,19577,51328
+64824,75592,10848,30789,19913,32084,61548,56731,42081
+64825,46676,62648,16790,10859,60925,19439,29904,49248,19899
+64826,21213,8899,22805,45827,19045
+64827,58867,27230,5744,69355
+64828,64697,41714,63391,71487,17335,1531,48114
+64829,40548
+64830,65109,74100,43037,69832
+64831,80452,60112
+64832,35242,1883,60093,52618,77941,55794,78393
+64833,15074,15570,37047,7836,6795,17435,39536,9563
+64834,73546,26660,53216
+64835,57449
+64836,15230,42643,121
+64837,44409,5922
+64838,22589,66278,38680
+64839,8100,39220,33210,58127,23796,30114
+64840,27684,9946,35526
+64841,58792,79284,53194
+64842,48244,60257,40112
+64843,43363,24970,42839,73301,11232,10849
+64844,75061,69290
+64845,52831
+64846,32446,22163,55168,20955,31498
+64847,63778,27956
+64848,78547,14781,48265,23942,60815,64143,67207,70375,49332
+64849,22385,48272,51128,25336,62391,35404,76660
+64850,25579
+64851,17985,65897,38848,9352,45273
+64852,42525
+64853,26464
+64854,41422,78153,63566,63900,24126,16506,65679,51065
+64855,66949,10073,40383
+64856,42256,75843,29522,22957,25251,26661,556
+64857,15274,54204
+64858,2444,13814,21270
+64859,73455
+64860,57115,63571,44794
+64861,22975,55999
+64862,65342
+64863,19656
+64864,46382,27225,34356,81768,71604,57691
+64865,42468
+64866,23973,5364,9328
+64867,77114,53913,66433,1940
+64868,45193
+64869,59256
+64870,42558,32811,10543,63635,19090
+64871,77929,61810,71862
+64872,31941,31962
+64873,36276,50151,38627
+64874,27581,1286,49974
+64875,37716,50904
+64876,17279,45631,1846,43975,2675,6754,20675,21639,71026,31520,43322,23662
+64877,78740,1595,52940,6796,18112
+64878,35244,35716,44163,9511,74557,33059
+64879,64701,63663
+64880,19492,37522,63244,26208
+64881,40655,65486,72491,80941,32196,10067
+64882,61575,61850,24480
+64883,81720,25693
+64884,4066,10881
+64885,34180,6729,77123,49064,2970
+64886,45904,26059,54946,43810
+64887,22029,18955,53524,23397,1841,68573
+64888,17396,37067,57712
+64889,59136,1861,28140
+64890,28576,24557,26652,56915
+64891,73131
+64892,59461,65349,57978
+64893,80648
+64894,46442
+64895,50451,67304
+64896,56318,26235,40151
+64897,18090,68541,50379
+64898,57622,36238,57066,70231,27492,46955,24311
+64899,53713,45586
+64900,13411,79445
+64901,7843,48815,49214,68166,3661,27403
+64902,57828,62907,18314,59389,80190,37986,62549
+64903,19806,70950
+64904,48545,77995
+64905,58149,68244
+64906,56943,68063
+64907,67525,34788,53403,25436
+64908,56835
+64909,26929,42577,57975,42023,58033,44156,64865
+64910,29508,61169,60296
+64911,39022,73208,63789,65680,57159,66127
+64912,71134,76185,12794
+64913,67027,5116,39733,80793,69412
+64914,42715
+64915,29519,11447,82046,61997,46275
+64916,51957
+64917,38243,61895,56426
+64918,5886,32956,14387,26091,11796
+64919,74826
+64920,9506
+64921,48214
+64922,68899,22026,77608
+64923,13492,51256,67256,51224,25492,11392,57334,20667,27543,52093,38664
+64924,74991
+64925,27444,78417,53494,62643
+64926,75485
+64927,25882,68206,55679,61861
+64928,25212,37028,59116,75451
+64929,5104,26431
+64930,21974
+64931,52848
+64932,18859,5276,9182,54076,1887,19597
+64933,1352,53361,63214,14333,11858
+64934,55369,75714
+64935,53124,50755,40357,27596,33068,36747
+64936,70457,2943,73522,64835,47190
+64937,44769,11047,57766,43039,16753,51492,60298,21754,5278,3270
+64938,37327,60554,15844
+64939,72608,31585,46002
+64940,31466,4509,67457
+64941,15662,30509,71646,59238,35004
+64942,40421,38168,1237
+64943,24026,51892
+64944,12291,25518
+64945,35414,65166,1247
+64946,20304,70977,3860,4137
+64947,19209,50699,11003
+64948,77030
+64949,56237
+64950,46795,34289,22903
+64951,5101,54171,17356,15843
+64952,65977,7824,67509,54530,54117
+64953,38566,15413,31665
+64954,17160,36998,69865
+64955,45780,33566
+64956,36464,29981
+64957,49167,27016
+64958,76015,33288
+64959,20055
+64960,16958
+64961,33473,72851,55289,8426,62123
+64962,896
+64963,65727
+64964,61912
+64965,31791,43746,43750,39983,53927
+64966,34996,41667,59249,56814,14896
+64967,80458,61614,80792,32377
+64968,77021,30770,24057,28878
+64969,11145
+64970,41690,21461
+64971,3015
+64972,43214,3012,42825,57148,43957,49177
+64973,71819,72151,69185,35049
+64974,22237,35503,75445
+64975,26958,29302
+64976,6097,5247,29054,79769
+64977,50853,27587,30024,14298
+64978,25507
+64979,15370,52858,51888,67137,79985,19032
+64980,34197,32361,9463,39833,48144,23973
+64981,50781,79284,58104,48819,15886,14453,27763
+64982,20474,26167,32004,21784,22687,62730,27865,52866
+64983,67501,66359,44083,45735,78648,73218
+64984,70210,5334
+64985,69926,81009
+64986,50679,4995,34569,32372,74451,29320,37201
+64987,52862,52536,14024,77354,15139
+64988,18228,78503,39361,58158,42103,66470,68339,3488,53513
+64989,58232
+64990,78220,45283,19236,24183
+64991,45851
+64992,81582,18097,40106,80023
+64993,12256,37314
+64994,75836,44627,54159
+64995,75424,19113,1178,69978
+64996,45326,11144,52603,14134
+64997,68074,35784,68115,62502,50744,38899
+64998,29150
+64999,54217,37377,77987,61403,82054,12588,31741,47231
+65000,70415,28696,68523
+65001,6216,61972,70415,2337
+65002,3251
+65003,22477,68772
+65004,70852,27485
+65005,4855,56649,54850,68570
+65006,48904,48788,69404,58329,50597,71141
+65007,28728,7209,34710
+65008,12880,73528,20757,49292
+65009,65555,44589,77982,67001,1319,70398,16579,50226
+65010,10105,26178
+65011,48391,47372,11898,74757
+65012,50772
+65013,54396
+65014,29137
+65015,41898
+65016,49666,34585
+65017,7984,24119
+65018,34373,70041,43702,71462
+65019,71204,57960
+65020,8518,11449,51084,38927
+65021,46516
+65022,67451,32984
+65023,3714,38295,48331,64425,30181
+65024,29740,26740,43822,64759,16214,5679
+65025,65147,26645,8378,4424,62847,68175,43722,54019
+65026,51360,52449,20666,74862,8380,43660,41151
+65027,74318
+65028,72788,46951
+65029,52180,63103,47963,9900,66632,66863
+65030,28861
+65031,6346,72773
+65032,31928,13490,4973,40564,18247
+65033,3626,23012,23766,82004,4254,16444,39149
+65034,79603,43259
+65035,17043,16860
+65036,20400,64659,69247,76041,7836,70904
+65037,47522
+65038,54394,51338,26926,31917,66094,41131,22290,66946,6983
+65039,81998,39023,32363
+65040,31311,81818,39364
+65041,33571,64620,17951,64610,7566
+65042,34110,4552
+65043,4432,59684
+65044,25125
+65045,26698
+65046,55952,82086,39889,67504,53613,16485,2665
+65047,59203,48317,42653,19371,79502
+65048,79027,72136,72249
+65049,62121,10061,77236
+65050,1110,80570,58501
+65051,11997,35551
+65052,30446,5742,74687
+65053,43133,28442,8178,18338,76624,63577,57109,5121
+65054,61683,44498,19240
+65055,1083,43994
+65056,48677,40622,53273,30195,25162,57568,36009,6260
+65057,55919,78770,63536
+65058,35719,59501,7232,64658,5511
+65059,12167,47195,9363
+65060,69797,14235
+65061,66149,76444
+65062,49951,56337,20429
+65063,47923,70228,26511,24486,20822
+65064,30712
+65065,69591,8340,11638
+65066,27685,75916,6791,64477,45639,57328,5296
+65067,6237,44654,66599,5207,23586
+65068,27131
+65069,65759,13030
+65070,14929,48036,27822,4932,10848
+65071,20559,61154,49264,28929,344,24912
+65072,80866,24095,21614,60921,807
+65073,33378,13672,30500,33925,26858,34713,42099,6176,73650
+65074,55240,4300,41531,61370,10515,6587
+65075,46238,35495,10061,8012
+65076,72080,44903,61236,21520
+65077,6434,63579,62680,54525,26128,79560
+65078,7260,60472,11108
+65079,77494
+65080,54415,79012,68220
+65081,73224,67923,60287,70150
+65082,42495,45614,74720,300,26875
+65083,54492,64958,34755
+65084,59724,39393,27341
+65085,45075,67429,60003,62274
+65086,26951,5534,39111,56853
+65087,17425
+65088,8312,11056,9392
+65089,47763,51021,72486,50193,64916,26851
+65090,824,6728
+65091,36826,32373,67300,40361,57130,26115,70003,66730
+65092,52232
+65093,40243,62244,6835,14950,72243
+65094,22035,68506,33587
+65095,44124,70354,33896
+65096,11978,72422,81020,61348
+65097,3094,44910,41920,14670,43287
+65098,66279,38542,67504,14062,22312,35659,68600
+65099,4524,79695,53547,63362,2228
+65100,52585,45607,64190,70212,865,68571,80885
+65101,54035,10417,22447,7086,44516,79640,81349
+65102,38149,36538
+65103,42,73382,59397,28938,2634,5200
+65104,6550,19985,62250,74838,43999
+65105,64172,62962,26763,49418,18297,65284
+65106,18204,33033,78966
+65107,6376,247,76301
+65108,37124,13418,59043
+65109,60287
+65110,6310
+65111,28498
+65112,1240,75827,36187,77488,33399
+65113,66868,28950
+65114,64739,71654,33684
+65115,80648
+65116,7577,65806,71973,6547
+65117,57946,20733,8596,34678,69705,56418
+65118,45541,12058,68299,69715,71186,60305
+65119,69878
+65120,37469,57652,54819
+65121,28404
+65122,11109
+65123,1391
+65124,27039,35207,39993,45477
+65125,34794,73905,8943,52831
+65126,54495,79635
+65127,30226,31504
+65128,5153,5172,31044
+65129,26133,33710,51627
+65130,10616,23274,4567,39984
+65131,52962,11670,62853
+65132,16278
+65133,10075,2621,67755
+65134,17003
+65135,62034
+65136,69031
+65137,8598,18812,32226,22727,54449,61660
+65138,7442,78262,28000,58801,59098
+65139,43951,70555
+65140,58543,6158,61786,6164,33498,77676
+65141,47201,28313
+65142,70055,58591
+65143,78821
+65144,35776,51010
+65145,66347,49122,19750,54323,19188,955,35594
+65146,40988,36224,34830
+65147,74172
+65148,13032
+65149,53338,5704
+65150,31205,60002,32020,23806,62728,67340
+65151,50499,2344
+65152,80125,52806
+65153,14511
+65154,36905,24042,65866,74625
+65155,79243
+65156,48702,3590,50971,64411
+65157,32919,18563
+65158,42333,57979
+65159,47391,17454,24984,44591,64942,80029,79203
+65160,74640,1786,68743
+65161,60864,70162,27410,59650,24557
+65162,81319,34740,25103,70855,78309,68299,69314,28231,66202,7631
+65163,39361,3990,65060,27782,41061,67891,77841,26831
+65164,45606,21612
+65165,49721,13048,44083,56842
+65166,46573,73063,21311
+65167,31662,46141,68037
+65168,21295,49390
+65169,23107,29732
+65170,64698,66082,48933
+65171,33998,50172,47312,74018
+65172,23626
+65173,25299,33754
+65174,74547,35211,36756,35147,28641
+65175,32655,55848,29740
+65176,47594,68881
+65177,15289,63553,9435,70184,28279,27025,14123
+65178,57869,50520,22608,56239,49101
+65179,73474,26282,29747
+65180,33584,48821,31413,44204,52378,63884,43767,27145
+65181,28946
+65182,49374,25424,65788
+65183,35736,70431,9874,55752
+65184,14544,65718,2263,9290,16833
+65185,62436,32440,15619,55947,21245
+65186,61514,13625,28889,64800,2266
+65187,12671,49913
+65188,18643,59176,55959,16273,16345
+65189,52434,81628,1642
+65190,42986,132,11163,67777,80184,39168
+65191,26896,34715,50960,57236,40737,9451,23117,80819
+65192,57205,384
+65193,63425,15709,39097,78216
+65194,29208,5338,45972,61286
+65195,40454,13,3409
+65196,16188,80004,5916,23184
+65197,73252,70823
+65198,45381,37182,40339,68019
+65199,17191
+65200,14561
+65201,37960,56059,13330,9046
+65202,70150,22839,69408
+65203,25045,37232,59146,33634,32312,61021
+65204,1944,53739
+65205,58080
+65206,39879,43748,79625,42490
+65207,74230,51127,32900,10321,14881
+65208,59982,15529
+65209,10743,45954,61695,63356,47154,24536,18396
+65210,50296
+65211,36488,20041,72843,25866,6079,80624
+65212,8976
+65213,31356,26966,58515,58099
+65214,39144,81119,22493,7205,75922,22962,31134
+65215,77257,61325,12412
+65216,54957,38651,65393,30481
+65217,73318,37679,69174,53135,42799,19932,41997
+65218,35554,35272,71479
+65219,4599,53053
+65220,6461,7058
+65221,59092,70837,58048
+65222,30780,71302,59604,74960,47979
+65223,55533
+65224,23382,50848,20998
+65225,35859,30023,35613,76854,22939,56249
+65226,38645,47730,52353
+65227,54086
+65228,1244,28276,16350,72357
+65229,52888,38977,54364
+65230,62115,45479,49351
+65231,63311,35667
+65232,7792
+65233,8915,2492,26913,27630
+65234,45450,58790
+65235,18315,11623,49309
+65236,73573,33327,60521,4459,12271,75172,10400,67173
+65237,75742
+65238,44651,31467,29379,223,74014,66664,17523,64230
+65239,69686,1110,60893,29459
+65240,14466
+65241,57225,62248,11145,76109
+65242,24075,22351
+65243,62167,38698,6328
+65244,13938,27396,54859,18962,80632
+65245,71223,27005,71222
+65246,51328,3582,12818,75016,27907,37628
+65247,19639,23621,42392,1514
+65248,30680,9084,82142,8861,32800,31244
+65249,73061,4326,48292,60056,66053
+65250,735
+65251,60555,45482,24332
+65252,68717
+65253,37322,37609,46511,72559
+65254,31493
+65255,8519,41408,9729
+65256,50059,224,64412,57272,66519
+65257,82021,60591,64897,79191,64786,37863
+65258,81315,1238,38070
+65259,21286
+65260,46079
+65261,2582,42289
+65262,40434,31870,50434,26340,27571,3125,23270
+65263,69145
+65264,43429,31324,34123,3692
+65265,39471
+65266,13695,19909,22375,33300,61306,72177,71453
+65267,13112,40508,3998,1014,79099
+65268,47618,47013,9066
+65269,10708,76984
+65270,71605,14390,69908,25878,49644,45424,34602
+65271,4918,74567,77701,23520,58053,58649
+65272,61513
+65273,57661,62146
+65274,46092
+65275,78859,9967,13368
+65276,6799,9042,42572,17739,72145,74545
+65277,77057,42807
+65278,61985
+65279,18744,14017,69650,56750
+65280,50911,66195,287,21850,9646,55454,23473,36755,35084
+65281,57205,18412
+65282,44524
+65283,20490,3969,53207,52559,48835,78944
+65284,42238,64619,2426
+65285,30751
+65286,2446
+65287,45027,49996,40621,24391,37973
+65288,36964,25172,57674,68275,52127,29739,7765,60036,76014,29236
+65289,43253
+65290,60421,22977,45274,68306,81732
+65291,2933,81384
+65292,64539,38405,9300,14985
+65293,74362,43589,67729
+65294,55884,78691
+65295,19610,7629
+65296,69611,30734
+65297,18925,13861
+65298,81346
+65299,21234,7876,14805,60491,67737,38534,12477,26991,55248
+65300,12478,54762,29392
+65301,20072,51626
+65302,32841,75911,43302
+65303,4766,54333,27256,21310,8884,21648
+65304,78164,12307,29561,57353,30895,5730
+65305,65612,47870,43736,9235,61353,51337,24531,31403,77734,39724
+65306,48411,48472,5110,26840,78568,44988
+65307,71180,12877
+65308,11660,50172,43564
+65309,41253,69484,74116,24759,73845,7437
+65310,12288,6493
+65311,58018,4947,43236,70799,37165
+65312,67586
+65313,37274,18272,23241,75990,39092
+65314,36931,50685,51249,49314,1743,2730
+65315,9619
+65316,13979,27919
+65317,50978,12508,9116,37507
+65318,60832,45268,13579,48367
+65319,68880
+65320,76635
+65321,38339
+65322,51520,28017,78836,64345
+65323,34210
+65324,53268,26516
+65325,39965,47993,79050,432,42392,29494,29125,8540
+65326,59098,60099
+65327,52876,79054,27032,72662,63753,46798
+65328,41645,6187,59779
+65329,60685,71357
+65330,75085,38204,43771
+65331,37367,42087,22761,69478,54985,7954
+65332,73324,20333
+65333,58008,41081
+65334,75608,73790,12588,81605,36820,17957,74488,37174
+65335,70997
+65336,35881,56777,38412
+65337,27533,18084,22180,67886,61998,50406
+65338,81360,80083
+65339,65530,77600
+65340,28412,16953,81499,53051
+65341,22536,73081,15658,62267
+65342,61124
+65343,55708,72972
+65344,29375,41911
+65345,7792,2212,9823
+65346,71942,39120,67067,14944
+65347,36460,58633,79675,59943
+65348,18749,40764,22110
+65349,37014,40976
+65350,30993
+65351,26661,20036,77099,25850,76106
+65352,63083
+65353,64659,41837,47583,76710
+65354,50150,28445,29003,3403
+65355,61809,11673
+65356,10979,19879
+65357,81045,11339
+65358,38765,28795,37350,22777,75391,50452,78934
+65359,7208,58531
+65360,6863
+65361,14774,52055,18244
+65362,65579,17800
+65363,68975,80112,71974,57253,74593,70464
+65364,16047,74596,41996,73861,2898,69755,66893
+65365,3579,67615,19327,66314
+65366,40322,30068,66629,63875
+65367,21269,20732,9358,30215
+65368,71338,26764,45529,9219,19163
+65369,27267,32568,40854,52043
+65370,9718,55992,10396
+65371,11704
+65372,46948
+65373,70330
+65374,4184,32925,24501
+65375,8520
+65376,36192,77196
+65377,13708
+65378,46698,51758,36674,13150,3531
+65379,36973,20808,45867,76078,44068
+65380,961,75580
+65381,79461,33939,56126,35620
+65382,15233,20673,9700,29003
+65383,9338
+65384,46003,69205,23860,6720,2052,77909,1037,28698,56051,16068
+65385,81500,9723,20206,77933,73124,75778,6688
+65386,46027
+65387,37800,68041,37321
+65388,74834,1673,18185,27835,19147,27457
+65389,65558
+65390,24078,69203,38308,46012,17835,67504,4925
+65391,57347,75580,80179,3956
+65392,31034,67112,48979
+65393,24087,65383,48851,70739,15137
+65394,22171,45060,21513,57437,3851
+65395,57274,21130,29990,70047
+65396,56060,42334
+65397,23230,36069,36890,39688,80625,10507
+65398,72855,79098
+65399,80955,46581,73513
+65400,79955,38817
+65401,4916,72835,16498,28152
+65402,51664
+65403,11302,63413
+65404,6637,49385
+65405,28639,46798,30725
+65406,59260,67253
+65407,1782,15376,41052,62324,58268
+65408,46803
+65409,19400,31569,21796,20548
+65410,10421
+65411,16496,37747,64963,40031
+65412,72855,12908
+65413,20581,4375,21280,80237,76362
+65414,41976,47982,43839
+65415,30401,41164,56136,50623,10783,7492,5664,30819,45082,73795,32492
+65416,9998,65282
+65417,76428,42504,61045
+65418,59318,46499,71420
+65419,54607,34358
+65420,61712,62482,43983,32480,57084,61169,65680
+65421,80575,72066,12465,29957,2353
+65422,26976,69189,3312,69736
+65423,59823,64615,300,65543
+65424,31687,17795,17066
+65425,41593,59879
+65426,4346,9918
+65427,46700,53120,35637,82051,25442
+65428,35657,73312,77818,25037,34797,45514,27999
+65429,76065,75546,32038,42544,4091,66536,77681
+65430,73859,81390
+65431,55257,34549,78586,20981,26605
+65432,72829,1854
+65433,26992,61115
+65434,43064,59136,39557,24635,33575,70316,32011,81882,20147
+65435,44868,72178,59211,15113
+65436,38254
+65437,80093,49468,60966,33497,36304
+65438,68970,75686,9007,9851,19062,32212,22985,48574
+65439,39254,74425
+65440,42476,34487
+65441,74803,70295,20765,32070,28160,62114,77439
+65442,33599,33763,66292
+65443,37736,12312,16062,146,77812,218,47234,50720
+65444,76568,16881,13860,77181,67258,47225,20789,60419,20750
+65445,45529,43377,52800,48419,20096
+65446,73899,60202,48646,38451,38527,75982,68188,50944
+65447,28333,60812,56265,10247,17083
+65448,72491,22448
+65449,26316,42681
+65450,50306,37180,31414
+65451,30519,62599,66517,1531,56114,66271
+65452,79964
+65453,65031
+65454,47302,61828
+65455,18838,42082,18515,50749,14486
+65456,42417
+65457,52701,43940,70383
+65458,71145,11180,22407,73800,79494,43862,47162,78505,80907
+65459,68702,48278,79928,46430,18430
+65460,13982,78207,25778,40921,16012
+65461,68710,4942,51988
+65462,41438,35627
+65463,57246,37597,8340,5265,35234
+65464,68439,35601,11146,20836
+65465,5718,52242,80507,34152,34392
+65466,81872,17687,30135,1060,14606,24030
+65467,47769,41952,52469,36804,52042
+65468,43584,7312,13734,49100,13438,5766,60492
+65469,43516,13506,58931,8781,21554
+65470,2198
+65471,33012,64676,36304,63705
+65472,73691,37402
+65473,35008,38880,31932,56282
+65474,17849
+65475,73225,8200,49877,65202,36595,62039,25866
+65476,18572
+65477,40965,81782,34816,58993,25014,61465
+65478,61323,69804,19362,25360
+65479,16210
+65480,31149,48582,50243
+65481,76462,64868,18889,9238
+65482,66630,1140,1904
+65483,49892,5479,69042,62932
+65484,8834
+65485,63749,50770,22472,62161,10040,47315
+65486,43790,66116,11146,77664,40157,53847,37103
+65487,35805,68863,38837,54961
+65488,44126,8896,4271,75003,65016,69518
+65489,41679,60471,20843
+65490,54621,36909,21486
+65491,51349
+65492,13020
+65493,15590,22437,11102,15759
+65494,40303
+65495,3146,42605,64739,6004
+65496,11334,27044,18853,20812,78843,66397,1315,79170,7453,37437
+65497,7377,56485
+65498,24715,21383,44692,43895,57366,15329
+65499,11644,63635,17369
+65500,29640,72463,40953,3313,3542,60704,57621,19658
+65501,31288,57507,19141,33087,23969,67134
+65502,9109,49448,79282,38677,34446,27560
+65503,10248,34238
+65504,50093
+65505,7347,57604
+65506,67396,3028,47539,72001
+65507,14142,14182
+65508,13388
+65509,38457,28621,6675
+65510,32942,42118,32187
+65511,44805,56277,17369,43401,3839
+65512,20734,78514
+65513,63442,58599,2156,27264
+65514,4391,43058
+65515,68680,10515
+65516,62982,15181,27692,30923,28351,43437
+65517,20599,22289,28021
+65518,41705,73313,348,81591,17194
+65519,59843,24842,12276,22137,43903,33401,1686
+65520,6487
+65521,60324,59027,51942,31725,17915,61823
+65522,11655,22053
+65523,15322,66266,56671,27992
+65524,2621,49536
+65525,72034,76878
+65526,31671,26862
+65527,63617,23288,48308
+65528,60013,66332,78453,15366
+65529,68024,36153
+65530,76564,30684
+65531,45179,72974,56207,68777,45394,11996,47960
+65532,76494,31152,56148,61296,45794
+65533,36111,33037,49669,9285
+65534,43734
+65535,71640,13114,2227
+65536,57709,23750
+65537,51579,36191,67021,56951
+65538,73978
+65539,1609,23083,55006
+65540,49516,77306,66847,51450
+65541,77034,42304,66787,28136,7311,69556,4963
+65542,81015,33201
+65543,63965,67999
+65544,63295,49100,9568
+65545,73296,22794
+65546,24484,56455,37192
+65547,46087,14680,12176,73524
+65548,1305,58906,29394,6683,26832,25239,46695
+65549,25071,48816,9175
+65550,50333,43442,49127,59399,78802
+65551,41324,72169
+65552,20533,56046,41071,51060,13945,69999,71653,59322
+65553,26210,51280,54526,78419,41003
+65554,14467,2366,3990,47994,6500,56650,627
+65555,27914,66985
+65556,28965,73825
+65557,65870
+65558,17425
+65559,16627,67382
+65560,38640,26332,9701,16128,50015,5402,27776,68879
+65561,61979,72943,61520,4739,19187
+65562,60479,12802
+65563,35046,9206,66610,28094,17466,29189,58570,8647,33825,52348
+65564,66911,61701,55962,36335
+65565,67205,72877
+65566,16212,60392,46826,76242,75050,42866,7550,58929
+65567,5747,33016,77723,2295,70028,33003
+65568,67258,10157,48689,11753,69327,78875
+65569,41109,45329,51419
+65570,76471
+65571,7539,20595,11489
+65572,55380,15429,54414,71742,22277
+65573,43865,57589
+65574,34415,35209,22851,64939,16084,4379
+65575,27148,75025,31053,62791,13074
+65576,28601,36784,23032,63322
+65577,55898,29920,72423
+65578,20344,28152,41011,71188,30560,42010
+65579,60507
+65580,42403
+65581,13886
+65582,60021,75530,19975,52021,65330
+65583,8670,41152,42309,79169,66453,73463
+65584,46155,18129,21898,65478
+65585,42309,8586,49080,25097,61411,76667,4592,16424
+65586,69816,72315,60388
+65587,33873,41014
+65588,59925,26066,64168,55021
+65589,40997,9636,5325,57630,65810,38194,39586,45072,82006
+65590,52068,15753,49642,68264,6311,5690
+65591,65512,34034,65483
+65592,34918,66134,6774,54397,67898,21422,60557,61005,950
+65593,74517,80282
+65594,23586
+65595,23626,79664
+65596,41525,23783,39356
+65597,76902,68450,61687,56169
+65598,14565,51675,39730,21249,7494,39701,21536,53475,81216,57639,53746,18570,32482
+65599,73834,77277,63195,6051
+65600,22413,68996,25441,16048
+65601,14396,36963,52881,53314,3068
+65602,23077
+65603,27156,844,17256,67103,71384,41457
+65604,9202,34776
+65605,76697,23269,41531,70671,66424,20663,6459
+65606,2150,55215,35700,56176
+65607,19643,1261,57105,25153,33695
+65608,72551,61001,816,20689,60471,22437,58048,76897
+65609,51539,45867,44651,23156,53678,35258,2296,22761,14059
+65610,17764
+65611,40398,39535
+65612,67353,76705,26734,76595
+65613,30293,39228,61322,55192,30627,53033,17449,8135,3044
+65614,38964,73339,58041,76864,72553
+65615,48458,43638,37457,17133,63158,66949
+65616,62087
+65617,15445
+65618,68528
+65619,56617,69386,25830,3664,52080
+65620,45630,31838,10380
+65621,45411,50993
+65622,71269,34519,56613,73710,18846,38124
+65623,29070,78357,24152,9701
+65624,20581
+65625,55792,33594,6939,8143
+65626,67086,39523,77287
+65627,78409,30191
+65628,2018,13638
+65629,58892,20501,65769,71084
+65630,705
+65631,64100,32172,76344,3643,57865,17680,54707
+65632,15010,65373,11319,6745,52834,81826,31917
+65633,62400,48703
+65634,76926,23885
+65635,40465,77785,78088,57592
+65636,55717,50413,34623,24123,66113,74846,72977
+65637,80632,37290,61586,64139,64010
+65638,6914,66458,12050,42075,10859,5830
+65639,23913,13435,6856,41935,69476,44983
+65640,78906
+65641,71359,76655
+65642,52144,54581
+65643,41543,1715,65703
+65644,37928,53711,67829
+65645,47481,45077,41580
+65646,27936,29858,28386,30449,50948,49532,49121
+65647,76512,24069
+65648,27484
+65649,28464,31107,15307,13230
+65650,11091,25623,700
+65651,34196
+65652,48499,78756
+65653,57470,15217,36783,6468,34307,38033,57495
+65654,45808,10590,44879,11717
+65655,45239,22420,72480,15010,50310,36307
+65656,80409,27574,1939,47133
+65657,5068,60472,58042,67245
+65658,594,56827
+65659,40882,69571,43816,37929,65086
+65660,8232,21809,79896,48675,34650
+65661,10223
+65662,31049
+65663,78900,56835,63471,33376,28894,25609,10156
+65664,73446
+65665,58171,76231,71579,64343,37799
+65666,42965
+65667,56136,67395,62891,1675,52471,57298,13277
+65668,77319
+65669,80446,2838
+65670,79647,18383,22985,38203
+65671,40721,36531,78547,63649,56206,15568,22245,9482
+65672,31324,8204,73377,20064
+65673,9991
+65674,25652,27299,11743,62061,27802
+65675,48951
+65676,932,72452,60387,19466,39296,7952
+65677,47044,13778,15059,37597
+65678,71030,54573,73148
+65679,19660,65569,60140,72195
+65680,56236
+65681,54045,60112
+65682,38680,14333,48343,79773
+65683,61570,914,63571,55853,52795
+65684,78250,42676,48799,55043
+65685,30069,49550,42013
+65686,61934,22409,79887,21007,39822,13191
+65687,70401
+65688,60218,29414
+65689,50082
+65690,47784,19075,9842,21865,13492,9917
+65691,40359,8095,35935
+65692,34116
+65693,76453,28778,40702,24898,12317,25963,4127
+65694,69262
+65695,62418
+65696,28295,54652,1567,78868,29959,30744,69864
+65697,14397
+65698,11125,26339,48952,45926,79527,13948,9387,68367,76879
+65699,3174,38440,60292,81223
+65700,56743,63451
+65701,32736,28054,46804,4880
+65702,48113
+65703,26832
+65704,6448,13704,19507,53826
+65705,36336,47142,72389,25656
+65706,14115,21475,55814
+65707,43680,12833
+65708,73300,22224
+65709,65087
+65710,43017,57129
+65711,4802,20822,73267,57070
+65712,51208,1581,29596
+65713,23474,23002
+65714,10314
+65715,25053,26341,4639,34441,35738
+65716,4738,2838,17124,76306,16502
+65717,35604,3381,29175,70755
+65718,81985,37678,65652,37669
+65719,42891,47529,32567,76708
+65720,28259,59307,35525,68109,8535,18814,31753,62544
+65721,39015,68077
+65722,30674,42375,27291
+65723,64850
+65724,68670,66990
+65725,20882,24268,5350,63306,81608
+65726,17968,49503,34148,35343
+65727,18483
+65728,29436,23369
+65729,60126,59504,29542,40892
+65730,64771,60045,74024,73704,57623,71931
+65731,61389,37552,23240,43109
+65732,75022,26780,43757,77075,62787,10768,37595,29652,36347,74564,59235,834
+65733,46914,41038,81528,19125,58789,54945,16105,45626
+65734,14381,70993,68210
+65735,5725,24318
+65736,8641,57129,58639
+65737,79243
+65738,59257,62687,75988,60787,57378
+65739,79384,58288
+65740,56276,37390,51958,16724,23905,42385,65949,24107
+65741,62691
+65742,55342,1098
+65743,73127,6980,72850,42138,24061,29231
+65744,38219,4276
+65745,74778,61088,26393,72083
+65746,4605,68095,37779,70327,93,45274
+65747,56399,9984,26827,31193,16419,60892
+65748,25710,45356
+65749,57921,68409
+65750,36270,41975,16864,30581,43439,57640,7980,76266,24786
+65751,56865
+65752,7989,53406,58479,17624,43123
+65753,45205,21449,15814,8108,24369,33908,5970
+65754,74538,10207,57527
+65755,12596,67867,26871
+65756,40303,7851,71589,52224,42033,74659,37675,60109
+65757,50083,66973
+65758,46312,68573,59581,21254,20983,75016,19656
+65759,80131,34904,47660,61727
+65760,60402
+65761,10504,37592,43547,29304,7262,79127,31468
+65762,77194,64664,56452,10775,18010
+65763,31900,77555,61015,29050
+65764,70927,13982
+65765,8385,28680,5150,76487
+65766,43313,63921,27777
+65767,39822
+65768,75109,39668,59716,26081
+65769,62639
+65770,25574,22100
+65771,56877,57114
+65772,4792,45181,77464,33694,59934,19380
+65773,72848,20388
+65774,54282,20266
+65775,50734,49044,17176,52171
+65776,3561,29372,35931
+65777,60370,17287
+65778,57708,11932,49256,15214,79224
+65779,62729,16107
+65780,4178,41786,28652,70654,13922,80166,4533
+65781,67098,3109,68223,57979
+65782,78323,68207
+65783,48187,4121,5947,32847,54586,59621,68521,65855
+65784,48247
+65785,75385,69860,32626,22182,14476,53182,77935
+65786,3419
+65787,13073,62489,24497,65694,64744,34878,44373
+65788,64884
+65789,8002,14001,80256,39277,16502,25166
+65790,15071,30203,49543
+65791,74777,2277,68556,66118,74913
+65792,14507
+65793,50033,23962
+65794,54807
+65795,75911,85,17904,40124
+65796,10098,74582
+65797,66968,18555,51976,81060,19318
+65798,12716,5,36124,81082
+65799,57449,59604,45105,55495,74509,1841,57729,17850
+65800,58449
+65801,62549,30,78133,5407,43895,14236,77293
+65802,41581,10862
+65803,81096
+65804,23958,63435,48849,5755
+65805,78262,60745,30079
+65806,22644,65558
+65807,5115
+65808,39394,50703,73217,11821
+65809,51366,72780
+65810,42236,33646,62369,46515,49092
+65811,48067,34464
+65812,5946,6640
+65813,35966,7845,56502
+65814,66025
+65815,41715,68378
+65816,81
+65817,15322,32227,48423,1359,31011
+65818,31053,73395,76647,38679,21541
+65819,43767,52264,50053,56386
+65820,46427
+65821,81046,12128,26491
+65822,36840,75523
+65823,78321,81562
+65824,29931
+65825,53632,53920
+65826,57134,29542
+65827,24543,58466,44029,6262,1353,17946
+65828,31356,53494,73475,79432
+65829,80503,47980,78641
+65830,23208,41870,69721
+65831,4282,28618,65980,23239
+65832,49860,66547
+65833,11844
+65834,58118
+65835,79464,71380,61063,27624,56879,45968
+65836,31317,11660,5443
+65837,51430,32654,40657
+65838,41336,9867
+65839,31105,37643
+65840,9390
+65841,35839,29457,42731,59921
+65842,21024,12654
+65843,52297,7554,67026,68848,67685
+65844,58680,6342,42450
+65845,68417,8770
+65846,18958,48706,18090
+65847,30336,10093
+65848,24060,34196,12821,72688
+65849,54503,66717,20722,56381
+65850,1318,6540,36256,60557,31502,70383
+65851,28418,6615,5221,74541
+65852,16006,16427,72855
+65853,10639,11979,33333,66694,23174
+65854,69884,56664,62981
+65855,16107,33632
+65856,56886,21802,66685,63734,54092,75335
+65857,24600,46916,50884,70430,6749,6578
+65858,25966,33046,55914,55085
+65859,2877,16566
+65860,38353,48669,24936
+65861,47706,15562
+65862,22339
+65863,66678
+65864,18064
+65865,17963,61186
+65866,44734,80748,42938,70892,37070,59385
+65867,25134,46376,31966,5831,47234
+65868,3445,26965,52920,32923,19159
+65869,3700,14235,40762,500,80281,60839,43430
+65870,46915
+65871,35611
+65872,43750,18626,12224,15623,75813
+65873,45128,29141
+65874,69247,5519,31143,58186
+65875,1538,77411,26083,48887,13849,62859,76710,6787
+65876,27090
+65877,44719,63539,11291,14691,60744,28519
+65878,82153,68477,45469,12625
+65879,59955,73165,81065,66587
+65880,14403,22555,38156,824,28046
+65881,25561,71556
+65882,75042,41629,10971,54460,75764
+65883,62785,72719,27719,53088
+65884,29456,75936,70823,30029,80277
+65885,16199,50417,67909,21650
+65886,64503,9632,3673,41918,27848
+65887,24978
+65888,30743,60040,60254,42108
+65889,19495
+65890,26139,50711
+65891,23431,47252,21253,39641,47560
+65892,48077,6512,47146,5151,34452
+65893,78642,13697,67139,51086,76871,78683
+65894,67056,44025,42882,65583
+65895,26620,80165,25337
+65896,64300,44192,1627,42689
+65897,70848,65158,25587,80252,25296
+65898,59180,81815,23432
+65899,81690,27964,53394,19672
+65900,76655
+65901,77547,50179,51719,1673
+65902,42056,5317,55177
+65903,6177,43168,43104,50470,38615,52207,76923,2290,71671
+65904,22826,25480,8846,20619
+65905,43263,5829,17252
+65906,80096,69691,1570,17677,69459
+65907,64765,16246
+65908,72848,33726,48280
+65909,41046,79713,32326
+65910,45665,73339,70075,6020,48558,40421,79084,73954,35910,22908
+65911,78400,55458,9811,5185,32483
+65912,11594,38412
+65913,29774
+65914,14939,54843,20093
+65915,23163
+65916,71707,62326,2657,42872,76416,36771
+65917,37065,9083
+65918,51623,58973,81002,38674,71098
+65919,70264,56532,15649,18769
+65920,2674
+65921,16347
+65922,57228
+65923,8779,4954,55785,7328,70455,77484,28325,32353
+65924,23678,2458,50591
+65925,11516,66585,75084,55236
+65926,31743,60505,5942,33875,74069,6909
+65927,24035,58989,53241,74666
+65928,48499
+65929,2734
+65930,68161,61188,73899,38292,73592,27343
+65931,50286,19950,79310,10701,27444
+65932,52247
+65933,27548,14228
+65934,33638,69575,38320,73786,57112
+65935,28349,1766,18225,17328
+65936,13377
+65937,81985
+65938,76914,68210,56622,43515,2854
+65939,9547,63941,31460
+65940,4730,46931,24215,76423,34398,7859,32343,4011
+65941,35056,43605,49142,31787,6314
+65942,64311
+65943,21628,67222
+65944,77138,57334,76902,9101
+65945,74125,30509,33070,11710,80175
+65946,61632,77306,3375
+65947,43688,8952,28844
+65948,41506,16911,57561,58040,11892
+65949,78497,31483,78992,78280,68340,59360
+65950,40827,54550,2821,8902,66818
+65951,7153,55096,25351,44358,67302,16846
+65952,53692,66519,36655,78627
+65953,32389,58431
+65954,62490,56167,80678,22339,51561
+65955,32001,42601,21802,70106,67632
+65956,22153,67230,73419
+65957,11942,21550,28006,19142,36473,58754,60185,77241
+65958,50103,28739,74579,52032
+65959,50277
+65960,18159,36719,2412,7752,31724
+65961,24654
+65962,6320
+65963,20847,79536,840,53964,69800,48208,41093,11006,20198,1991
+65964,67065,69362,12648
+65965,47389,80739,47332,24486,24244,25544
+65966,51751,14563,70565
+65967,58426,2984,71958,71691
+65968,62996
+65969,15653,42860,1353,54407,69493
+65970,170,12419
+65971,40411,33922,60811
+65972,42486,18206,28288,769,42336
+65973,78790,16339,45611,33802,72719,67007,78338,34823,37941,2063,55585,28234
+65974,35216,59832,4315
+65975,1230,13266,44271,534,30767
+65976,12993,19706,54608
+65977,18350
+65978,52202,47769,32342
+65979,31909
+65980,55084,75132,54913
+65981,80573
+65982,20673,79164,26856,10182,77361
+65983,62019,38566,4964
+65984,20275,80241,722,13165,52334,65402
+65985,75077,39967
+65986,9865,32566,54341,42468
+65987,70130
+65988,36719
+65989,61531,31402
+65990,71574,38262,62129
+65991,42009,15335,55263
+65992,4391
+65993,80975,57398,17287,68974,397,71875
+65994,73108,24669,36223
+65995,33043
+65996,11025,37313,27818,80560,33208
+65997,35565,8102,56403,64765
+65998,27703,4162,50813
+65999,31989,28606,62055
+66000,44241,64286,39130,73835
+66001,8315,14312,19349,33017,4813
+66002,39374,62850
+66003,78290,19621,17199,12994,49889
+66004,45704,51163,44902,62266
+66005,5736,69017,36087
+66006,70367,37163,60492,18243
+66007,17713,63851,63770,78072,68817,72682,57992
+66008,75172,25426,19835,45972,71219
+66009,13307,34962,62031,13616,8504
+66010,56628,73444,55759
+66011,64227,18080,34833,78716
+66012,55832
+66013,1492,64460,11421,68513
+66014,69787,76391
+66015,54368,35320,10028,5285,40175,45224
+66016,39985,10766,41964,475,70351
+66017,72279
+66018,73466,70330,79566
+66019,9463,20016,77606
+66020,42069,37670,19776,1537
+66021,31450,37078,13302
+66022,5844
+66023,73853,73149,77413,59900
+66024,58737,43465,22839,15756
+66025,22398,80777,76776
+66026,11675,33680
+66027,31909
+66028,44141,32071,50959
+66029,13072,22233,31368,84,4010
+66030,79415,21001,71983,20479,10686
+66031,35858,43535,33528,53179,70975
+66032,34112
+66033,61293
+66034,20386,26503,59138,81284
+66035,64343,30158,39426,57040,39780,60623
+66036,78833,72538,54641,24031,64985
+66037,44272,26749,2776,74857,52383
+66038,50589,67731,44052,23477,49738,76534,30774
+66039,6978,60416,10736,6485,31511,40767,23479,19233,61962
+66040,43134
+66041,9356,60092,28587
+66042,14060
+66043,55613
+66044,45932,18732,77535,46252,27431,1907
+66045,44567,59164,46583,28778
+66046,27588,76020,47329,15658,34184,14189,42498,25439
+66047,20036
+66048,60452,53181,31893,26319,68516
+66049,21819,75819,34275,48468
+66050,72882,2424,22694
+66051,49886,7890,29067,38270,37642
+66052,7266,40281,54938
+66053,24396
+66054,71669,5509,25678
+66055,74810
+66056,51489,20372,3697,60065,29305,16744,66845
+66057,45024,49855,49547
+66058,10762,63685,67950,19833,43334,57210,18416,78065,59784
+66059,23213,3131,66045,55638
+66060,25166,53597
+66061,48453,51248,51123,48057,963
+66062,30505,7768,23356,11807,11202
+66063,71202,53622
+66064,76576
+66065,18690,38407
+66066,77222,55382,56150,37403
+66067,76589,56090,72325,54003,29145
+66068,45068
+66069,3496,46237,51978,22735,79624,17743,42941
+66070,33997
+66071,5238,26440,29672,66837,80619
+66072,2850,21142,71652,13917
+66073,72959,53195,79088,34032,48093,1986
+66074,41541,8941,48350,19096
+66075,22938,64233,33707,21960,6717,40345
+66076,50761,26242,63705,36096,59599
+66077,64897,17465,4497,81310
+66078,44818,4772,26816,38063,23727,68221
+66079,37214,14992,10518,16471,7436
+66080,65342
+66081,53651,13161
+66082,11171
+66083,49807,4154,59374,44141,43713
+66084,27351,70777,56112,20039,62427
+66085,55220,37169,22001
+66086,11130
+66087,58755,16560
+66088,55138,17341
+66089,78648,64174,59700,15600
+66090,76774,63470
+66091,73464,32387,49620,55590,26305,48243,65479
+66092,45800,61685,64352,27549
+66093,1185,28484,43849
+66094,81473
+66095,73083,11041
+66096,54130
+66097,76948,36201,16584
+66098,2399,61914,59294
+66099,55044,80799,81060
+66100,41490,8072,81267,37771,72293,61064,24130,35143
+66101,36297,51464,55181
+66102,4518,49376,50049,50333,11285
+66103,16890
+66104,46169,21525
+66105,45417,59243
+66106,8529,68780,1677,70889,61378
+66107,51456
+66108,22924,75049,13607,62231,51721
+66109,20597,16863,19332
+66110,53790,63644,16772
+66111,50197,25993
+66112,81451,61029
+66113,10553,68606,53862,30629
+66114,65727,45616,45998,57937,8596,41549,11832,73689,29808
+66115,2473
+66116,10877
+66117,46056,71532,68489,18885,75956
+66118,19524,26234
+66119,37511,10314
+66120,14902,31735,15069,80791,9274,73505,68333,47575,30486
+66121,40647,7005
+66122,62025,242,39550
+66123,48901,70046,33474
+66124,15071,2241,12934,24738,69309
+66125,54096,46945,18648
+66126,13920,16518
+66127,54521,5558,58842,37799
+66128,13224,1273,6278
+66129,82,59925,405,25696,24621,64760,48448,21414
+66130,31540,68065,71617
+66131,75060
+66132,72215
+66133,43345,64459
+66134,25143,68333,22568,53744,24314
+66135,31258
+66136,58414,58351,34615,40827,9876,23880,42530
+66137,29018,63523
+66138,76088,26497
+66139,22518,37089,54793,68849,21187,4628
+66140,31142,27291,58255
+66141,50800,40627
+66142,3506,41043
+66143,9940,38888,41664,24973,19605
+66144,15247,62639,749,77114
+66145,8762
+66146,66510
+66147,18928,7773,77670,75673,23288,31290,74993,55684
+66148,32678,79808
+66149,78975
+66150,6477,42650,58778,31467
+66151,23266
+66152,44664,12244,41127,44507,41553,3831
+66153,52246,24338,3222,34261,18628
+66154,31019,38410,19587,21595,40737
+66155,48827,59484,32308,73727,14046
+66156,63172,33136
+66157,50093
+66158,80398,44001
+66159,6043,46416,2625,6942
+66160,71080,13938,43317,39917,30977
+66161,80465
+66162,14235,70906,18454,62857,16984
+66163,75990
+66164,7838
+66165,17740,20481,50326,56779
+66166,13517,21693,47491
+66167,13929,81062,56059,65220,8211,58202,38184
+66168,9330,41380
+66169,56727,3141,7771,76936
+66170,49728,11562
+66171,28381,3903,19746,29522,71101,32208,21339
+66172,2629,49690
+66173,5401
+66174,10501,32102,33875,61615
+66175,215,24447
+66176,27642,30057,1412
+66177,66997
+66178,26230,33495,42413,72434,80163,8640
+66179,21819,74095,3170
+66180,66756
+66181,25840,71175,5064,20682
+66182,80608,48494
+66183,16329,56000,41973,61685,76459
+66184,33297,13791,13823,75555,64111,43191
+66185,12470
+66186,32568
+66187,23594,36535,14389
+66188,14270,206,28787
+66189,81591,55301,68097,28815
+66190,81818,77784,78577,31316
+66191,64233,81115,30097,80367,79869
+66192,63361,65374
+66193,67177,24016
+66194,20055
+66195,14585
+66196,49207,52356,24300,6708,62034
+66197,73831,76506,5196,19201,18813,63033,67021
+66198,53143
+66199,74150,14044
+66200,3351,70122,50486,22689,68310,62974,51761,18552,2493,50810,24202
+66201,27665,69558,1721,18033,19936,81424,65576
+66202,64434,31525,37822,33825,62883
+66203,1678
+66204,50369,47286,14179,4868,2996,19089
+66205,26873,59569,43533
+66206,20562,49593
+66207,62355
+66208,43170,20651,31059,43941,7289,32885
+66209,58878,4699,16844
+66210,29692
+66211,18637,27757,9780,32273
+66212,49180,33381,75177
+66213,61405,28634,69137,63516,17608,36331,80968,47975,32185,75086,76070,15657
+66214,77640,61886,35667,36208
+66215,65524,76669,60798
+66216,51472
+66217,11865
+66218,25680,49524,3181
+66219,38973
+66220,49883,68028,44768
+66221,732,70191
+66222,18981,61772
+66223,74033,13926,8331,26915,5461,20008,23073,70491
+66224,323,30552,61038,13686
+66225,46518,42865,45109
+66226,12034,50660,14319,5292,3318
+66227,16026,9940,49524,65312
+66228,56259,14066,16824,37148
+66229,78095,80545
+66230,32226,39558,14995,68042,6799
+66231,14645,52913,18549
+66232,62270,67333,13262,23969,63042,1885
+66233,39415,55331
+66234,33327,25067
+66235,58798,71367
+66236,72871,26037,34565,71095,39421
+66237,47062,51056,78235,68001
+66238,44124
+66239,18257,19149,9703,50088,75507,44070,56336,27028
+66240,45598,47429,45133,24922
+66241,39062,64008,66580,28985
+66242,20581
+66243,16712,50807,33804,12232,15672,46114
+66244,4137
+66245,54827
+66246,42009,13640
+66247,44748
+66248,64817,51746,76992
+66249,6102,64815,76037,81017
+66250,22200
+66251,15888,32374
+66252,57502,80375,33925,65580,68045,16163,7565,54470
+66253,44153,45801,11409,37281,40967
+66254,74120,16106,17266
+66255,40964,21286,45691,19393,73907,12933,27478,20553,523,76591
+66256,75188
+66257,3186,42309,35714,40865
+66258,26562,920,62043,7550,10755,29629,12798
+66259,3042,4843
+66260,56180,36442,11932,43142,27596
+66261,55216,42086
+66262,12403,5117,5233
+66263,37838
+66264,38988,73656
+66265,23508,66642
+66266,9801
+66267,64445,12426,4620,42289,23623,30436,30986,13025
+66268,68220
+66269,73662,22655,68835,37365,67695
+66270,76195,74833,43728,38154,67206,44905,78652,68512
+66271,8433,49616,13720,14433,22798
+66272,9466,76897,26914,40353,1624
+66273,4391,72647,69032
+66274,6456,38782
+66275,70445,9963,39668,22686,53626
+66276,61110,70039,32512
+66277,47391,3143,69296
+66278,59301
+66279,15019,20357,41976,33246,43453
+66280,22527,59346,40251,79491,42461,72085
+66281,56350
+66282,59971,27066,66868,72260,30012,57082
+66283,9445,42292
+66284,7936,43066,20445,46863,37
+66285,66647,60470,35717,37925,4265
+66286,18760,72180,45859,10528,74731,46413,30018
+66287,75083,73116,21169,13934,64341,22361
+66288,55325,43109,59290,18415,13633
+66289,20869,71322,24872
+66290,25013,14145
+66291,40921,33254,74932,45434
+66292,40637,70565
+66293,44373,15581,79941,79698,46513,69408
+66294,15315,14854,65014,39392
+66295,58275
+66296,58766,66310,15240,76042
+66297,21601,57557
+66298,66533,20908
+66299,71109,6067,9619
+66300,33404,63684,26633
+66301,14083
+66302,70162,6142,81788
+66303,20206,34960,697
+66304,38174,35668,39267,63103,58312
+66305,67260,42451,34218,20263,64945,78209
+66306,7038,2406,36060
+66307,315,54574,10382,18342,6031,30182,33493,23712,53859
+66308,19533,80802,57408
+66309,2809,77139,60723,53797,77343,24566,36986,61348,9413
+66310,47213
+66311,65630,27276
+66312,81799,70598,62656,16091
+66313,75382,73188,27937,38483,25208,56841,61896
+66314,51839,18103,41982,39896,14737
+66315,22518,51320
+66316,77018,54796,24310,24624,59463,24796,53906,76683,6675
+66317,6494,19430,63547,22507,80318,52865,53443
+66318,31736,28533,22595,64492
+66319,65971,8129,32942
+66320,41248,70125,37527,12500
+66321,73454,70883,69799,10167,37227,39022
+66322,38995,67093,30729
+66323,6566,36531
+66324,30728,13823
+66325,48789,3082,75426,15423,57623
+66326,225,25354,5319
+66327,70555,50277
+66328,53345,44112
+66329,78514,59043
+66330,80670
+66331,47668,11909
+66332,73041,36708,6801,63584
+66333,60793,68260
+66334,12585
+66335,50905
+66336,863,56181,25770,7332,63663
+66337,81869,60960,67643
+66338,74988,50591,62714
+66339,13254,25486,14226,23802,34674,56627,74365,46219,2912
+66340,24607,32897,38964,23138,23570,36049
+66341,63639,68354,45131,79282,81063,34620
+66342,61328,71371,50427,14083
+66343,26180
+66344,14749,57287,6537,31560
+66345,51648,54523,8326,55691,59028,80895,26218
+66346,20998,63391,20780,29618
+66347,18262
+66348,46062
+66349,8856,40881,39094
+66350,17520
+66351,6120,60324,47389,35490,7802,11328,35028
+66352,17868,70451
+66353,28239,22099,25765,26917
+66354,41221,25161,78874,30471,8828,76869,33531,7270
+66355,17939,47401,13868,37705
+66356,3030
+66357,7912,1340,8856,62134
+66358,29327,45821,32104,16783,66735
+66359,59216
+66360,78501,74360,54598,19365,16226
+66361,18278,3143,8898
+66362,35231
+66363,68132,45466,29487,61909,35587,31141,52519,29415
+66364,38166,64095,17674,35500,9194,6759
+66365,59209,53421,57576,53026,45064
+66366,75198,7203
+66367,58232
+66368,40445,33818,78022,6682,79064
+66369,51777
+66370,9473,20223
+66371,61820,27151,40107
+66372,3438,17179
+66373,31462,77248
+66374,7320,40794,61407,5043
+66375,33249
+66376,3572,69494
+66377,79165,33404,74550,49307
+66378,35248,53078
+66379,45835,78059,36758,33635
+66380,9444,18614,11245
+66381,53706,56200,4105
+66382,6475,7338,77661,64739,5314
+66383,397,11575
+66384,34218,60898,43281
+66385,5044,14281,2641,37917,65638,52557
+66386,51627,75497
+66387,82160,49862,46875,62705,312,18981,17158,46185
+66388,47565,80139,5117,70911,73202,78458
+66389,49558,72444,31161,18851
+66390,25083,66704
+66391,37502,45196,23293,43
+66392,52662,44402,34737
+66393,56740,28474,15833,2262,62157
+66394,41456,81452,13767,38663,18767,72910,24813
+66395,49504,32171
+66396,44118,80231,76789,18670,14364,65111,71762
+66397,44656
+66398,14167,64267,14218,33380
+66399,68753,50262,54159,23278,33713,53917,4653
+66400,70747,55523,56094,42887,59028,41645,34680
+66401,76469
+66402,12486,56434,43332,26706,53344
+66403,65015,24888
+66404,3977,63677,81026,54711
+66405,16956
+66406,75397,6552,74042,31681,69101,39309,68551,45352,59116
+66407,61179,71216,284,16225,56874
+66408,62630,77729,80387,68861,69808,31062,54850,80754
+66409,73299,3137,60538,27019
+66410,75922,24268,52738,65759
+66411,2588,57159
+66412,23693,7711,74256,34700,59821,33726,45378,49759,32222,17183
+66413,32681,35443,21086,70174
+66414,9284,55688
+66415,37118,2613,28097,76011
+66416,19604,32884,59277,68552,35286,54588,12866
+66417,25579
+66418,24668,53559,48091
+66419,35918,3644,12309
+66420,43499,62417
+66421,58408,14471,6636
+66422,22415
+66423,2635,63451,28621,75539,21364
+66424,8767,24672
+66425,53671,25377,77425
+66426,61457,29639
+66427,6646,40580,66482,11447,78753
+66428,10780,37289,52870,68829,71301,67007,69546
+66429,37675,26283,60116,26473
+66430,52892,36236,68426,44769,25046
+66431,73179
+66432,67537,32965,37169,54683,37870
+66433,57515,6806
+66434,78315,18667,38761,3858
+66435,77907,53554,42670,50423,51626,46574,63276,74019
+66436,76477,12893,36458,33595,46527,28115
+66437,12772,37847
+66438,9173
+66439,907,5146,74475,18649
+66440,36735,14939
+66441,79258,51293,68654,1429,24746,39315
+66442,71066
+66443,25700,70855,23410
+66444,40359
+66445,7726,63117,49615,28121,50551
+66446,67201
+66447,12881,61334
+66448,72492,44606
+66449,4427,49277
+66450,41049,33746,79548,75570,6394,2582,53298,22693
+66451,79370,7943,66714,19669,39235,21008,5561
+66452,21612,52833,28645,24101,24525,20090,18012
+66453,38846,71070
+66454,20055
+66455,65648,74216,71211
+66456,20487,70691,8867,27438,40964,10262
+66457,81703,21092,66864,29276,25841
+66458,30955,51739,53408
+66459,73225,21217,51378,74175,79783,63956,35256,63337,47827
+66460,20417,71820,22923,66105,51660,34490,4675,59773,46515
+66461,30110,27033
+66462,73348,64236,35677,17570
+66463,13922,12731,78394,24919,51973
+66464,39609,43927,14757,67571,18841
+66465,51657,18481,34266
+66466,16106,24127,68030
+66467,13921,49952,38809
+66468,52751,48956,68841,44839,25147,12761,22252,50003,39429
+66469,67775,19965,49093
+66470,74508,39957,23781
+66471,78421,16947,2730,17016,53473
+66472,29607,55575
+66473,24975,26733,24494,45742
+66474,1099,58567
+66475,67114,21408,44324,13406,70890,15957
+66476,67227
+66477,70282,16963,34559,6477,5086
+66478,27450
+66479,16396,31792,43360,64565
+66480,12717,77316
+66481,11673,26675,30254
+66482,23863,78698,79126
+66483,20445,54196,78332,11471
+66484,78517,8246,44364,40106,72469
+66485,43191
+66486,7585,31922
+66487,36705,42913,40175,71270,42413,24653
+66488,15743,10174,17504,48318
+66489,73995,45024,436,73077,55665
+66490,13529,7640,51753,25518
+66491,73905
+66492,10915,53644,752,13766,37636
+66493,19484,34096,45102
+66494,41735,35171
+66495,77413,49338,19364
+66496,32644,24150,78884,73044
+66497,22099
+66498,68720
+66499,65163,10896,1969,11397,68369,62883,6392,48160,23581
+66500,40411,24733,54361
+66501,31460
+66502,64085
+66503,18330,11085
+66504,42948,75941
+66505,4030,52629,40000,74742
+66506,35197,28683,7733,50213
+66507,61734,36207,28201,7787,20040,15843,16097,64891
+66508,61250,35721,55353,6565,18925,71394
+66509,81901
+66510,35694
+66511,61965,48212,17440,81392
+66512,28119,50691,36365
+66513,70385,31445,45148,25570
+66514,61326,22161
+66515,32323
+66516,32957,69916
+66517,54709
+66518,45734,77580,9946,39790
+66519,1850,27516,67474,47229
+66520,53473,531,77398
+66521,7146,34953,25549,45843
+66522,77424,81328
+66523,54685
+66524,54426
+66525,36412,60263,9015,81316,11553,47708
+66526,49028,24159,78012
+66527,15830,30543,14842,31202
+66528,43216,9742,27237,27537
+66529,60236,77724,71462,1093,2094,51001
+66530,44249,3704,40012,54056
+66531,60507,5951,9951,146,28943,3278
+66532,48820,74939,27603,41987,18661,79453,19537,32995
+66533,37771
+66534,18483,38294,36930
+66535,75067,57597,40677,59291,28445,69196,40134
+66536,8188,62639
+66537,50499,22615
+66538,32573,60157,7763
+66539,11261,53531,79171,26262,74875,43674,40315
+66540,1079,32067
+66541,81356,20908
+66542,78832
+66543,39790,42196,67323,59494
+66544,21056,53053
+66545,6446,49542,67647,29840
+66546,3850,20078,52648,48688,77657,7315
+66547,51454,24410,79824
+66548,38702
+66549,4519,11955,2296
+66550,27101,7285,77998,14195
+66551,57654,58053
+66552,25857,39793,35840
+66553,45281,57263,40371,46217,29611
+66554,10178,71154
+66555,57920,76028
+66556,19635
+66557,40617,10727,68240,37884,54830
+66558,2944,58882
+66559,64393
+66560,31506,77736,13696
+66561,9202
+66562,29172
+66563,52594,44702,39558,71853
+66564,69574,80747
+66565,49213,51279
+66566,4651,82057,71152,17389,78699,64569
+66567,22257,79191,6967,40815,79449,25262
+66568,74350,21996,1042
+66569,21109,46577,41686
+66570,39248,3112,49066,37898,80576
+66571,74874,39396,38470,16254,66922,34844,58640,55113,63744,48313,54551,29056,43178
+66572,16455
+66573,32806,9560
+66574,76039,55297,4748
+66575,24803
+66576,49932,80310,49358,79053
+66577,47994,42990
+66578,4364
+66579,34960,7297,837,48054,41091,2206,20297
+66580,74178
+66581,10242,40222,5835,50410
+66582,73860,26254,51295,15225
+66583,22035
+66584,28140
+66585,50622,51640,23102,34269
+66586,55996,15757
+66587,29319,20189,4731,48782,64086
+66588,67926
+66589,63961
+66590,76254,75665,13208
+66591,51098
+66592,53004,28776,64794,5893
+66593,36944,16548
+66594,28794,18863,42122,48171,14188
+66595,26608,56566
+66596,11941
+66597,30896
+66598,59405
+66599,72325,14466
+66600,40755,8235
+66601,35991,13077,47158,32537,19991,38261
+66602,4629,37734
+66603,11070,35103,42196,45668,4307
+66604,39366,15357,49365,7494
+66605,18801,44465,50766,34666,62314,9956,43807,64415,73508
+66606,63932,58729,28523
+66607,78973,78045,53086,41677
+66608,77644,35666,9466,57134
+66609,32165,56503,37674,28629
+66610,76310,2261
+66611,39508,57346,18183
+66612,18711,12116,70938,30931
+66613,28152,67540
+66614,54338,57442,19190
+66615,69215,58020,63965,63608,55537
+66616,79868,78523,39335
+66617,57553,5735,31295,59092
+66618,17275,71848
+66619,73315,79673,43059,68800,50086,3588,16044
+66620,78942
+66621,33643,35330,11233
+66622,35316,4425,1037,28899,49434,77030,67572
+66623,76441
+66624,66082,46377,37484,37291,34210,8250,3302,75082,1042,12305
+66625,26205,57491,45281,78850
+66626,26596,30964,49002,29947,51717,76166,23263
+66627,32791,4503
+66628,51756
+66629,40412,61987
+66630,56671,17739
+66631,47744,81057,42474,13562,54591,8249,65119,10161,56259,63313
+66632,7271,60966,69878,71249,61723,44163
+66633,74942
+66634,33300
+66635,60177,68628
+66636,44327,53611,54089,67210,3216
+66637,12148,16226
+66638,47013,17145,80662,62897
+66639,64343,31766,58491,44344,59557,50536,11761,21302
+66640,19374,36364,72408
+66641,42807,33321,75445
+66642,3754
+66643,19169,75477,38523
+66644,27389,52341,65294,75884
+66645,4617,25355
+66646,82152,8397,45562,15695
+66647,70782,53297,41271
+66648,29236,77490,42913,37667,29093,22803,2565,7000,34467,9118
+66649,5400
+66650,9472,12218,10408,41570,46043,46750,19982,79964
+66651,43162,81851,51675,75228,51607
+66652,5102,68511,30680,66542,60440,23403
+66653,44718
+66654,29215,41159,4401,44956,6804
+66655,76393,44727,14433,7278,24784
+66656,22518
+66657,72438,8464,56869,28938
+66658,55545,20934
+66659,17957
+66660,66198,65807
+66661,76680,67201,72544,78691,32288
+66662,47272,53254,55180,17117
+66663,79766
+66664,17063
+66665,41797,5528,22152,68665
+66666,39355,41224,19573
+66667,70056,76318,42778,57425
+66668,56279,29965
+66669,7142,76437,58878
+66670,55603,42270,42294,13591,53701,25854
+66671,22644
+66672,75399,74050,56638
+66673,74061,65747,26949,46983,19407,40377,18148,32645,4115,78701,976,73911,37973
+66674,47752
+66675,28476,72425
+66676,63103,68463,65241,81011
+66677,59616
+66678,65862
+66679,66401,1614,19419,46698
+66680,57501,75813,6552,78893
+66681,49307,6406,53692,69720,52722
+66682,658,72987,45090,39298
+66683,72685,26400
+66684,38189,21550
+66685,48883,14853,27338,4613,75066,64641,21277
+66686,20465,39398,2318,50181
+66687,8913
+66688,42199
+66689,62543,34494,32165
+66690,60834,15821,43862
+66691,26742,7905,70936,52197,48228,69868,32573,9388
+66692,68101,79441,81593,73620,25338,79575
+66693,57597,12503
+66694,52052
+66695,33679
+66696,44402,21976,12128,37900,45990,62714,33896,47862
+66697,55401
+66698,61025,23857,45411
+66699,71150,40924,14952,40703,69031,42845
+66700,55947,71290,35643,52158,19641,66207,21772
+66701,6493
+66702,23774,77539,4831,20715
+66703,60557,26909,69340,26345
+66704,24604,66362,54556
+66705,66112,16094,71937,52917,26862,37939
+66706,67302
+66707,5319,75603
+66708,47150,24653,5533,8262
+66709,22417,64850
+66710,1767
+66711,77796,25449,54616,76327
+66712,58232
+66713,76298
+66714,39847
+66715,12589,44664
+66716,81404,33726,73735
+66717,56688,29998,22644,48109,56386
+66718,51629,29497,44061
+66719,29837,24363,81689,16029,59857,12198
+66720,53272,49399,14966,58618,20934,49159,71817,60938,7971
+66721,24478
+66722,28755,31449,74790,62253,62680,54498
+66723,39670,53414,9485,47201,79769
+66724,28128,34679,64487,33756,55056
+66725,55037,1408,55590,70732,12143
+66726,35604,56095,17090,70519,48273
+66727,55990,74907,46334,44192
+66728,20616,38140,50191
+66729,67610,28879,26796
+66730,22757,41879
+66731,37026,76610,13794
+66732,41010,38905,71672,50086
+66733,77079,2500,41544,38389
+66734,22881,43642,32640,50796,68124
+66735,9233
+66736,79833
+66737,63132,32218,33894,77050,79139,37906
+66738,62016,4384,7797,40574,22088,18163,48313,28482
+66739,12423,732,180,47474
+66740,69966,67237,57724,76839,78461,71438,65974
+66741,62739,46206,10840
+66742,64227
+66743,76677,9651
+66744,81541,31746,26533,7355,77004,41063
+66745,79806
+66746,74722,39596,22879
+66747,36790,78414,57374
+66748,5152
+66749,9167,39268,9833,79562,75064,38519,41354,44939,33632
+66750,65949,40400,53581,43399,67288,20982,67723,52061,24069,25957
+66751,16743,79962,61447,56036,57578,41502
+66752,49122,54762,26380,12077,78357,17331
+66753,41570,62267,77544
+66754,52101,69779
+66755,73471,44319
+66756,64388
+66757,71741,44280,25603,66119
+66758,59082,38147
+66759,79838,75378,67569,61898,19850
+66760,81473
+66761,4802,39445,43983
+66762,12935,56087,45707,3961,67414
+66763,19244,9285,31952
+66764,71027,31888,46318
+66765,72970,50740,78021,29221
+66766,54147,72492,65979
+66767,71165,59160,7781,49242,22249,28920,36095,54973
+66768,81756,28235,38061
+66769,25998
+66770,43022
+66771,34416,32526
+66772,16793
+66773,63123,1996,20693
+66774,63275,36224,27311,22612
+66775,19176,80274,13460,52317
+66776,12122,47604
+66777,57141,48033,28302,33220
+66778,81581,10081
+66779,147,5901,68116,37302,40162
+66780,66181,48016,71575,62419
+66781,47884,23116,59028,19827
+66782,81828
+66783,1334,8998,26608,18758,31777
+66784,7446,54375,56326,46261
+66785,16188
+66786,67768
+66787,65314,44533,17760,6065,4334,61917,58530
+66788,70483,2955,48603,49020,1086,46003
+66789,9507,52678,54545,33703
+66790,8893
+66791,6616,72881,68513
+66792,17658,31827,18060,17581
+66793,14407,56917,16042
+66794,46079,28296
+66795,44406,3848,52922
+66796,68868,29391,27576,17940,45658
+66797,21504
+66798,66332,66401,78059
+66799,6105,28836,69114
+66800,24328,59027
+66801,9479
+66802,63012
+66803,38427,15991,70853,5978,65877,75334,80755,5421
+66804,16506,61320,23976
+66805,25518,7355,20855,33260
+66806,41241,80968,20923,15707,51663,61726
+66807,8999,16824,76383,15522,64108,13289
+66808,22332,37903,7624,12753,5182,45168
+66809,7566,48570,41073,40942,12199
+66810,2979,18878,45809
+66811,77742,9417,28859,44672,64551
+66812,54718,26672,41191,75646,26255
+66813,11509,52987,28951
+66814,66933
+66815,79136,21137,74226,23873
+66816,32372,32917,36345,41262,33307
+66817,76628,23332
+66818,53563,41728,14356,2160
+66819,19276,55438,13642
+66820,45096,928,14801,74517,30597,39785
+66821,11057,8837,8210
+66822,51418
+66823,6073,25147,54349,25577
+66824,75175,21549,20956,39095
+66825,25793,61955,32393,62525,3887,37451,63247,70454,18046
+66826,43623
+66827,3860,35130,49768,60581,69717,52208,5883
+66828,42583,43784
+66829,18682,52240
+66830,48256,69169,11702,21173,8740,67375,62991,78171,6108,38641
+66831,35947,71577,1725,13427,61775,79415
+66832,23453,23822,42054
+66833,28732,46809
+66834,25643,31091,6432
+66835,40093,32591,33819,74294
+66836,41283,25002,20744,31831,31610,32399,11560
+66837,71296,58219
+66838,77851,34596,15337,44266,67073,17460
+66839,16654,79861,53003
+66840,27396,4834
+66841,19152,69369
+66842,12213,43549
+66843,60400,72330,9898
+66844,41391
+66845,38491,59956,24984,2476,42054
+66846,18396
+66847,3010,42533,57847,80231,18308,2096,64317,51173,39524
+66848,64267,57700,27227,14004,13922
+66849,75471
+66850,13412,36769,23371,1095
+66851,59109,21955,74389,11510
+66852,6033,23187,73235,36587
+66853,64415,9051
+66854,78940,67850,66016,27060,49350
+66855,4065,72709,74481,49988,44450
+66856,78343
+66857,70293,38554,16399,68288,659,74791
+66858,58313,70925,15697,76984
+66859,35495,31909,69450,61517,56722,34374
+66860,61787,22451,17340,135,50141,80532
+66861,47483,17294,15759
+66862,50541,8866,40978,54131,75222
+66863,2481
+66864,43415,36602,29868,43663,78956,69252,36241
+66865,51170,45627,28373
+66866,77641,61503,23376,25960,24604,43991
+66867,36944
+66868,43776
+66869,54586,1346,9147,38033,62229,79763
+66870,53591,5528,80144,25637
+66871,60848
+66872,19746,60553,77534,55129,58498,11197,13683,30662
+66873,37981,7296,20977,56395,76103,68982
+66874,20660,19423
+66875,4660,49354,71006
+66876,81708,44810,1105
+66877,75664,51581,53528,52841,10458,15854
+66878,5075,7424,45500,21754,39345,5182,5159,53310
+66879,68592,61843,57557,34092,6266,73270,36129,45297,38390,67044,8359
+66880,35512,4463,1524
+66881,2548,22713,31706
+66882,43041,78190,27326,58890,77209
+66883,56590,52677
+66884,54090,72331,72322,78600,2691,49965
+66885,17760,69250,68913,32251,78507,19796,13720,3219,40049
+66886,61896,19357
+66887,40006,61655
+66888,42797,71852
+66889,4567,25928,6500,4937,79966
+66890,61458,41814,9636,19882
+66891,63671,53934,60100,71165
+66892,45686,12043
+66893,64713
+66894,5471,37787,2533
+66895,71721,297,72064
+66896,63741,66123,74820,53931,70759
+66897,59852,78861,34764
+66898,82114,79483,59789,66080
+66899,19935,73054,62074,15351,11181
+66900,60415,69284,78157,12170,27806,43992
+66901,5791,34495,14689,25194,47813,29802,34238,11367
+66902,48999,25885
+66903,17983,4431,77707,71893,69533,35432,58834,25016,50027,2468,58432,8219
+66904,44943,34837,72203
+66905,58741,50860
+66906,8760
+66907,53103,37072,63579,77247,74932
+66908,44803,50973,40469,51742
+66909,62267,65285
+66910,41519,62166
+66911,9619
+66912,69390,41860,53625,63349,61393
+66913,43943,54365
+66914,78264,47129,18360,21148
+66915,14608,44149,29449,38882,14183
+66916,53728,65937,15320,48322,68489
+66917,54770,1037,50566,43783
+66918,31057,7566
+66919,70784,40956,65008,22312
+66920,61106
+66921,32931,80513,22405
+66922,74201,14530,78974,54221,78269,81047,36869
+66923,9417,11438,64035,33658,50232,61221,28436,45435
+66924,16382,44494,19517,25355,75086,28306,49332
+66925,22162,70156,28379,63805,61226,20000,81815
+66926,35115,30464,36464,29553,79097,80511,46507,7408
+66927,31211,18521,70120,24725,12420,74722
+66928,72033,40326
+66929,60936
+66930,31121
+66931,27524,45037,60653
+66932,378
+66933,12732,65890,68367
+66934,5618,20840,27917,78524,10553,49475,1732
+66935,10928,8645
+66936,71388,73793,28054,17469,76425
+66937,30909,47153
+66938,17763,42032,22114
+66939,5327
+66940,59328,7256,21862,72527
+66941,57441,48000,74953
+66942,36494
+66943,56525
+66944,14887,36824,74267,75660,81828
+66945,19578,10343,43780
+66946,31329
+66947,38867,49998
+66948,79715,81504
+66949,43929,25299
+66950,25131,2473,3982,72415,53273
+66951,73487,34380,25329,29555,22532,31220,23094,23334
+66952,53691,36571,2771
+66953,30094,81789
+66954,39587,63916,54706
+66955,9619
+66956,70547,55803,38310
+66957,3539,72158,37288
+66958,815
+66959,67407,14098,37836,22623,81835,37953
+66960,72880,11291
+66961,51106
+66962,21046,16072,77599,34470,63416
+66963,7513,13346,54561,38874,74216
+66964,57313,72997,27190
+66965,59136
+66966,82136
+66967,54501
+66968,5052,28468
+66969,29107,48374,74252,32632,36476
+66970,42800,72680
+66971,19762,80137,20400,71262,31964,80943,69492,27081
+66972,19845,33805
+66973,76271,82138
+66974,17938,51098,58198,17471,51077
+66975,54878,62855,76526,42993,67630
+66976,72268,52590
+66977,29388
+66978,19195
+66979,18058,26243,51805
+66980,64883,706,49937,15332,18853,54282,31316
+66981,10274,43904,52491,19426,32297,2956,38024,17839
+66982,12677,58563,52860,44836,65432,37736,81383,3182,71420,53144
+66983,58670
+66984,73993
+66985,3420,77795
+66986,67140
+66987,77652
+66988,46647,76593,14886,58859,40881
+66989,14901,41847,1682,47896,51970,57664
+66990,6708
+66991,77586,1350
+66992,77757,51150
+66993,38381,60519
+66994,29348,6891,13758,2077,57160
+66995,69619,10877,14331,36519
+66996,38765,3540
+66997,73018
+66998,3227,71325
+66999,23339,55949,80886,77651,62718
+67000,22116,20285,81032,46712,28168,54392,3875,58748
+67001,58781,67253,59267,39998
+67002,6514,50247,3143,54048
+67003,60273,46928,25374,25370
+67004,20661,2782,57057,62078,26675,20753
+67005,19132
+67006,36474,64724
+67007,34204
+67008,57962,24632,32130
+67009,20528,3808,46220
+67010,39820,42844,60268
+67011,74535,53976,3221,21059,5080
+67012,15115,67908,60723,4937
+67013,13835,18657,64553,4335,42510,7031,65110
+67014,42886,74619,17089,38586
+67015,66826,29797
+67016,77065,10081,60656,48459
+67017,24875,36257
+67018,49797,9264,66576,76017,52625,81095
+67019,10808,77567
+67020,49239,67425,70333,42150,24680,40561,69155,2314
+67021,28178
+67022,16267,50231,63576,50327,30316
+67023,10499,34161,13088,79443,76863
+67024,73835,53975,31339,5049,65809
+67025,69469,80301,41711,60412,37847
+67026,2817,81455,14134,60646
+67027,51728,36234,71399,67873
+67028,77290,10532,76285,52204,68943,72963
+67029,22984,82092,71873,13935,3888
+67030,29346
+67031,71704,30140,53608,24111,62403,79424,28349,55258,20649,69175,47332
+67032,18165,40272,46823,62071
+67033,37373,9163,23471,946
+67034,41636,9668
+67035,59791,67817,36439,68561,36272,73770,43140,12961,46935
+67036,72009,80774,34935,73060
+67037,25529
+67038,32307,81632,5038,15271,60182,16830
+67039,47858,67441,57783,29506,72279,76715,61566,50560
+67040,17828,40241,5169,66618,48119,52365,62249,18551,66336
+67041,11529,9506
+67042,29460,62046,68279,35086,55323
+67043,24570,27643,70343,4016,18380
+67044,65821,929
+67045,62155
+67046,67834,20425
+67047,40897
+67048,24761,5854
+67049,37803
+67050,43537,36256,35103,52089,72829
+67051,22697
+67052,25408,20998,67986,78700,28475,18663
+67053,807
+67054,79341,73775,21965,70861,10967,12444
+67055,41070,4484,23281,75538,51546
+67056,3808,16396,53620
+67057,38163,50406
+67058,22464
+67059,45439,52678,46832,3942
+67060,38473,12972,13165,18552,19810,9653,56926,45179,48988,51543,19455
+67061,4694,60989
+67062,67638,74969,20716
+67063,29368,9910,46492,46242,77888,33090
+67064,13108,15897,25402,33835,18838
+67065,53373
+67066,45088,67344,34285,78906,68034,43452,632,27327
+67067,37973,40322,24220,23450
+67068,36298,66713
+67069,40435,64132,8411,7858,61455
+67070,47786,64268,20560,20577
+67071,31256,18936
+67072,68044,4893,65864,57349
+67073,24154,8040
+67074,50340
+67075,15518
+67076,58232
+67077,55076,41551,18228,53847
+67078,1903,24711,36770,60824,73507,42338
+67079,22214,42025,55287,13869,41270,13603,31050,64357,34631,44449
+67080,41123,19249,18681,53537
+67081,18242
+67082,23712,29115,20982,3015,56017
+67083,3020,15319,22011,44493,35257,52197,18859
+67084,76936,80713
+67085,54781,14714
+67086,65274,9263,63444
+67087,67928,8345,72548,29756,60397,39153,67937,15088
+67088,77933,20204,72654,3590
+67089,47884
+67090,60249,80965
+67091,31540
+67092,28308
+67093,22755,8316
+67094,12677,29128
+67095,29280,18109,49155
+67096,27557,81583
+67097,10451,82187,27095,29077
+67098,27171,22100
+67099,64659,13135
+67100,2898,75655
+67101,35394,53968,49524,36625,71976,29359,27394
+67102,78877,48908,35124,57770
+67103,59179
+67104,54388,80451,39772,26225,24941,67484,55205,39632,9403
+67105,75851,24418,80607,46242,23950,60449
+67106,21322,47800,54606,38835
+67107,5967,35175,9711
+67108,60018,20046,74211,72453,52954
+67109,35260,2261
+67110,42965
+67111,33011,47433,63468
+67112,34238,18959
+67113,11097,71699,69942,3047,27308,80091
+67114,45086,53391
+67115,61164
+67116,7153,46311,23522,38607,30960,34679
+67117,46939,15306,63830,72408,69411,28947,43378,13713
+67118,17520
+67119,25258,54700,12711,62621,75732,36271
+67120,65396,16325,50677,8081,25851
+67121,1984,28296,57132,10228,42631,34761,15234,74399,28872
+67122,51135,67482,80233,62520,26845
+67123,24876,35824,16358
+67124,44028,41232
+67125,69092,55986
+67126,65871,45846,80574
+67127,55381,60177
+67128,8430,36490,21946,23319,26115,13861,30950
+67129,63147,29997,10654
+67130,77919,40102,62197,69627,52021
+67131,13636,74844
+67132,37237,5887,16264
+67133,56066
+67134,26365
+67135,77140,40107
+67136,9039,49715,39392,45733,5211,33403,45986,45422,33339,52829
+67137,27638,56096,56068,36271,7714,24705
+67138,4302,39862,80441
+67139,35994,13200,49323
+67140,76809
+67141,36038,8707,36297,35977,32017,2685
+67142,9820,52278,4919,4243,12609
+67143,80228
+67144,44559
+67145,54704,38686,61418,5755,75432,8039,29493
+67146,24322,26544,18632,35489,68256,42237,24687,8592
+67147,80229,54372,7352,30808,24856
+67148,5704,26158,38473,30180,6392
+67149,50031,81692,79020,43594
+67150,28373,53471,46979,16645,47144,35793,65885
+67151,9227
+67152,68012,1017,65898,50334,1830,72165,39313,12744,15569
+67153,7718
+67154,40588,62074
+67155,52259,23039
+67156,1678,59734,9466,27717,63936,69092,46168,37987,30693
+67157,62616
+67158,54695,15008,79704,26178,65403,75364
+67159,36171,61810,46494,76456,55930,29012
+67160,45958,54156,69879,10306,304
+67161,3673
+67162,33798,47674,54345
+67163,11566,72709,67053,49657,3251,31262
+67164,9569,34112,38014,31030
+67165,33483,73471,50129,3034,24404,80974
+67166,6643,4925
+67167,10579,4567,46615,68086
+67168,11280,4565,53844,51910
+67169,67205,43606
+67170,79408,24328,60637
+67171,38447
+67172,39663,32130,42309,68060,12788,62824,43331,69434
+67173,50708
+67174,57386,15265,40533
+67175,17176,78505,9797
+67176,68237,32377
+67177,4375,54688,60323
+67178,32692,27478,1802,28207,65777,32060,76244
+67179,1464,53999
+67180,705
+67181,55768,63846,60456,35255,74537
+67182,61791,75280,75492
+67183,27831,59049,45801
+67184,39186,27309,35854,930
+67185,80426,41207,68628,67353,55384,56963,61193
+67186,57574,15185,25010,5657
+67187,75366,23344,42384
+67188,63572,17599,48528,49172,22078,74170
+67189,43253,57842,28898
+67190,32589,52817,59366,5796,72945
+67191,51795,60937,66389
+67192,4097,21646,20985
+67193,27252,79958,65211,9298,69218,12287
+67194,7224,45379,4109
+67195,32892,70679
+67196,31606,4594,54903,40777,68043,44128,71081
+67197,35788,3161,66486,9946,8928
+67198,76944,39707,15254,34252,8468
+67199,64071,36362
+67200,34047,14870,26572,7292,70282,17273
+67201,19495
+67202,76675,21814,30816,69817
+67203,71636,31268,53619
+67204,42011,30302
+67205,68131,10836
+67206,5887,6106
+67207,30320,22842,5873,67054,72873
+67208,53518,62751,7579,3234,26651,35107
+67209,62132
+67210,7489,14398,69251,54287,72605
+67211,50473,23810,131,3821
+67212,62814,48442,13375,60543
+67213,71688,79963,50508,24612
+67214,30340,78062,58274,9019,72541,41855,51077
+67215,11538,36735,41931,62794,77310,77275,64956
+67216,30197,36790,57447,22299,54237,74662,16464,34924
+67217,10194,46424,9230,61512,40154,24266,42455,65501
+67218,51418,10075
+67219,30145,59715,78715,5486,61225,19729
+67220,64920,77360,75178,67747,14284
+67221,68802
+67222,74551,79106,14857
+67223,11002,47667,6503
+67224,33682,78716
+67225,21503,35743
+67226,17212,18277
+67227,18444
+67228,70459
+67229,1876
+67230,10539,30162,27442
+67231,43355
+67232,38343,40513,46445
+67233,9180,31446,31914,16556,78080
+67234,10574,69163,44551
+67235,71061,22726
+67236,36876,51234,20931,73428,23741
+67237,51808
+67238,37651,8203,39983
+67239,47731
+67240,71695,73611,9833,13806,60660
+67241,54773,33033
+67242,66687,47803,75697
+67243,36577,19374,36371,56543
+67244,23888,21148
+67245,19884,65962,62910,80845
+67246,49875
+67247,33586,46832,48541,22075,62500
+67248,10892,877,52679,22523
+67249,6085
+67250,33690,23257
+67251,20140,16207,18714
+67252,25965,41626,37339
+67253,71269
+67254,14358,81939,48105
+67255,55334,29136,65035
+67256,37901
+67257,55408,30325,63062
+67258,26843,70868,60051
+67259,38718,31664,81265,57632
+67260,81017,57995,31777
+67261,49413,61838,42374,37981
+67262,7594,38779,10616,78484,20909
+67263,4522,684,20676
+67264,77238,41977,80537
+67265,40797,47763,28998,7280,67556
+67266,80822,19359,71321,67951,40031,13066,12985,47319
+67267,34913,60139,78492,6138
+67268,58233,51418
+67269,7760,42175,10807,51291
+67270,1951,50158,50679,2340,30463,33226,54317,54309,68093,29222,54652
+67271,54501,69483,49090
+67272,44703,50038,66388,8712,42051,11124
+67273,40384,46666
+67274,9141,23421
+67275,4577,62355,71302,48186,30238
+67276,80871,43429,26846,66157,45114
+67277,30205,53390,49028,2875,8511
+67278,59906,53099,58254,9214,5557,47510
+67279,60183,74672,34358,41845,78944
+67280,60850,46227,78162
+67281,77961,38554,57706,28
+67282,67834,10040,13369,73382,9716,62099,59174
+67283,63008,39013,6948,70398,19090,18345
+67284,49536,16820,37801,56942,52866
+67285,49945
+67286,9777,81216,18661,48402
+67287,77763,40838,77987
+67288,32064,9896
+67289,37702,3378,26746,26624,24782
+67290,36379,52529,12705,9044,65386
+67291,39945,3166,75325
+67292,77620,26810
+67293,67683,43599
+67294,52313,27375
+67295,50859,55745,24826,56814,15200,42694,54326
+67296,15903,66445,1052,40520,664,31178,70463,40644,43502
+67297,14186,22041,46204,34381,72785,43128,7629,32299
+67298,70029,50102
+67299,39750,57587
+67300,735
+67301,47811
+67302,30993,17026
+67303,25451
+67304,65285
+67305,76542
+67306,15139,32189,5125
+67307,15783,68303,8554,60035,70057,28073,67782,17737,20688
+67308,66775,35709
+67309,47541,43618
+67310,17545,6775,35587
+67311,30426,51703,15031,17293,9850,59526,12069,4108,21700
+67312,59023,23926
+67313,4774,68185,14524,67339,23592
+67314,1153,11409,3186,44997
+67315,79450,29731,23665,52854,49995
+67316,45441,50069,23759
+67317,37441,21240,78237,48922,33937
+67318,21084
+67319,80650,42773,32348,69653
+67320,72760,37018,25377,22166,48185
+67321,490,80368
+67322,38647
+67323,29609,62923
+67324,50903,70237
+67325,69887
+67326,36017,68467,5625,41829,50570,76816
+67327,30492,4356,59328,62736
+67328,13041,58362,55903,2426,7273
+67329,26423,48147,42500,33540,77159
+67330,5357,81837,4615,71708,39333
+67331,38016,33109,28778
+67332,12585
+67333,17126,64398
+67334,53429,68568,3251,39916,27732,48842
+67335,22790,1140
+67336,19297,1861,80377
+67337,16141
+67338,65502,28656,3355,51442,28691,14450
+67339,52929,45055,33085
+67340,7215,36560,78591,34793
+67341,25460,44744,57330
+67342,36654,64710,27270,2749,56083,59174
+67343,8201,57828,52496,15398,38666,2468
+67344,68373,31071
+67345,40984,77125
+67346,53688,48348,2102,81635,41249
+67347,2676,44402,24974,69107,46294,35809
+67348,29343,45138,64831
+67349,7871,45628,79608
+67350,13612,56321,22560,52729,59724,65143,62706,9143
+67351,52147
+67352,63361,4368,2126,64984
+67353,12810,35026,56255
+67354,69323,72118,41708,58229,71745
+67355,37094,2767,49960,74217,18006,34202,57192
+67356,19159,5935,75436
+67357,53714,49133,44112
+67358,78204,63320,72700,48240,80571
+67359,35430,54182
+67360,35475,42494,18135,18803
+67361,15429,13792,63672,21322
+67362,43392,65666,57525,55859,60925,81106,77914
+67363,72843,22524
+67364,37084
+67365,72528,20683
+67366,58860,57327,2141,64343
+67367,36519
+67368,64418
+67369,31875,11984,81688,30134,78638,68132,36508,71935,12251,62483
+67370,34283,73202,18309
+67371,9782,11931,45017
+67372,66188,36923,6479
+67373,64665,17942
+67374,73834,63759,81212,68139
+67375,6960,31808,73925,23387,15537,64938
+67376,12255,12536,53006,23163,598,12473,11914
+67377,44532
+67378,39710,10257,61058,18854,17999
+67379,36957,62592,64294,4183
+67380,35339,2552,1174,3044,7312,41280
+67381,22273,80356,3360,65259
+67382,2633
+67383,78566,30055,43883,61811,72908
+67384,49117,26841,79511,80286,29018,78795,5443,66126,35724,6835
+67385,67231,60552,6752
+67386,55147,26135,73720
+67387,53449,71672,1629,5725
+67388,11992,10474,56714
+67389,47578,29682,49587,15759
+67390,48673,76929,77144,48296,25261
+67391,18745,21677,24144
+67392,3655,44625,43263,42266,1002
+67393,78915,54504,47926,3841,4139
+67394,80071,16640,7952
+67395,27646,67634,28606
+67396,49167
+67397,31329
+67398,56208,76780,6078,7741,72358
+67399,22060,58094,22587
+67400,13456,3761
+67401,41441,74931,69234,4319,51958
+67402,18279
+67403,75934,42435
+67404,72869,29272,43672,50297,17424,8592,80009,66892
+67405,69628,53398,33060,72848
+67406,11640,67877,13140,15407,73952,43190
+67407,48864
+67408,2931,66476
+67409,66015,80238,37979,58113
+67410,31318,37125,48367,4855,40014
+67411,1488,41555
+67412,1743,1664,14175,13816,58951
+67413,17536,10680,64345,30996,28082,43666,3667,51194
+67414,63480,70799,63579,59624,25174
+67415,66562,18670,65182,81989
+67416,69920,22156,61854,10831,43104
+67417,46912,40738,75710,32948,67725,25840,59084,48939
+67418,25166,70180,80099
+67419,50344,64279,16976
+67420,61417
+67421,63556,23554
+67422,41667,24598,28015,63087,70953,54394
+67423,29112,7668,81793
+67424,37734
+67425,58548,36329,27268,31747,72247
+67426,52382,35288
+67427,62171,63593,9420,38651,82114,42800,64376,46298,59381,70197
+67428,8374,34497,3330
+67429,81873,20548,71048
+67430,32180,36256
+67431,15745,41081
+67432,60708,2746
+67433,34793,71667,5825
+67434,68421
+67435,27920,36576
+67436,20436,34705,37380,17377
+67437,52975,37007
+67438,60232,65454,67741,36426
+67439,57007
+67440,20988,61713,38095,9037
+67441,22629,39138,37030
+67442,78533,20696,69420,46337
+67443,36476,9543,29081
+67444,71827,6607,77764
+67445,52939,26621,24496,28148
+67446,37087,2564,61114,62836,61327
+67447,57425,81395,63086,16988,46071,68834
+67448,13235,30709
+67449,27206,53421,75988,77114,42544,65447,42534
+67450,56459,27127
+67451,67884
+67452,56167,65712,45629,414,63953,12258
+67453,41310,36060,78942,43907,22217,49678,65524
+67454,29569,41723,62398,35731
+67455,2220,29456
+67456,47579,21527,70251
+67457,44294
+67458,46615,55322,6558,44370
+67459,21601
+67460,13549,15887,41782,49436,37116,38422,54477,15776,76960,39791,33727
+67461,5146,23900
+67462,76623,49616
+67463,78995,63658,80010,23732
+67464,4243,45622,47066
+67465,19729,38801,40867
+67466,64501,6886,63254
+67467,44199,29279,78971,50456,17985
+67468,8905,17406,22774
+67469,36106
+67470,36367,23707,52919
+67471,80206,11826,80050
+67472,33699,78492,30027,57337,18029
+67473,13896,36765,41225
+67474,51329
+67475,22902,19344,51190,15918,81717,68861
+67476,22402,62155
+67477,10299
+67478,81404,31532,72124,48816,46482
+67479,21861,34129,77236
+67480,82021,7486,44559,37770
+67481,52584,76533,9737,73331,76918,62200
+67482,32793,23943,38316,57471
+67483,68749
+67484,44957,6012,26195
+67485,78492
+67486,29982
+67487,60329,49888
+67488,40833,7682,4968,5103,78293
+67489,13420,75115,53354
+67490,37337
+67491,39251,43837,1665,26871,56544,63920
+67492,63961
+67493,63422
+67494,38295
+67495,35979,26828,19241,7440,76088,1689
+67496,54960,62824,1890,9161,19574,57565
+67497,80645,39388
+67498,39981,75084,76404,6859
+67499,79400,34936,66853,50941,24790
+67500,24735,32256,67308,35877
+67501,14942,67615,19004,65539
+67502,44147,70156
+67503,10773,51630
+67504,58737
+67505,48648,21699,17925,24916,31072
+67506,56697,21424
+67507,27137,57365,45122,24154,38779,22192,44417
+67508,26749,3017,79368
+67509,41608
+67510,4273,9198,54860,55616,36377,69440,25782
+67511,23743,21654,11791,37073,32719,10707,4981
+67512,74804,27883,27043,23962,2319,30741,1977
+67513,52360,55917
+67514,889
+67515,79335,19784,40350
+67516,53176,65784,12421
+67517,68281
+67518,17159,77351
+67519,5394,6034
+67520,74012,53212,14253
+67521,74932
+67522,64488,15897,21198
+67523,38908,65957,74074,5034,30979,236
+67524,46449,57458
+67525,42184,756,70183
+67526,33060,6644,59480,59140,26580
+67527,37929,48827,40683,1367,75116,69947,12209,16935
+67528,44468,74587,42154,45570,60046,64374,67700
+67529,80344,36789,73277,10453,40094
+67530,48536,48033,44319,37026,3812
+67531,67863,13106,25177,12016,35793,63209
+67532,46710,78967,45326
+67533,71046
+67534,18315,67249
+67535,8730,12435
+67536,56070,14596,2719,14548,58646,53458,34149,6039,13791
+67537,30022,9721,51495,42250,11562,30451
+67538,29617,75844,57078,78250
+67539,21584,32249,60031,40953,22369,31915,55320
+67540,35787,43274
+67541,2159,67043,49695,79296
+67542,22933,80726
+67543,19523,6278,76956,75382
+67544,27437,41199,68445,2388,60703
+67545,794,31189,46727,69707,27021,39265,76448
+67546,36639,27501
+67547,37493,71473
+67548,45869,29714
+67549,2564,54407
+67550,40627,39065,11767
+67551,49722,69277,26367,12603,74043
+67552,47403,27822,15522
+67553,30654,8762,18903,81793
+67554,21198,15858,39962,17715
+67555,24833,25570,2593,54464,11598,55366,65406
+67556,73600
+67557,24169,36806,5239
+67558,25288,51772,78390,76527
+67559,55874,15675,63802,11538,79136
+67560,65556,18244,57330,25750,43412
+67561,54351,43225,30868,55102,50199,13999
+67562,54311
+67563,10313,39736
+67564,64537,70938,25071
+67565,38451
+67566,19322,76298
+67567,36124,58917
+67568,55484,34452,30186,39083,77867,43542,40134,26413,627
+67569,54725
+67570,45856
+67571,5380,75819
+67572,43351,61988,23750,71060,45931
+67573,61366,15716,30918,70864,43510,67858,49283
+67574,33276,52460
+67575,2103,56701,68332
+67576,15529,22794,50040,75163,75600
+67577,73486,20022,73678,56540,17682
+67578,44680,17309,32071
+67579,67956,71985,49798
+67580,2212
+67581,55500
+67582,4966
+67583,42250,73964,18154,78543
+67584,20858,56517,13039
+67585,60698
+67586,54388
+67587,44661,10960,68571,28821,31110,41268,75978
+67588,5958
+67589,4250,49886
+67590,76478,70958,4635
+67591,7439,34014,51660,2384
+67592,53738
+67593,7257,59359
+67594,34326,47027,50377,41829
+67595,27794,19294,19533,35246,8588,72438,11525
+67596,76731,58157,35600,25171
+67597,57763,20950,80282,55734
+67598,22054,13583,40263,79404,11454,3982
+67599,65546,16123,78256
+67600,9473
+67601,31498,59996
+67602,70250,68451,78224,1410,47099,6625
+67603,46650
+67604,62435,15682,77248,81071
+67605,60701,33847
+67606,70003,49981,27605
+67607,33550,31329,78823,8944,55878,40047
+67608,12602,43660
+67609,79764,18723,38292,67483
+67610,2425,24402
+67611,19460,55486,43432
+67612,49155
+67613,61511,81248,78638,79374,71525,19937,5504
+67614,267,29259
+67615,79874,42415,57421,17190,81143,74526
+67616,34294,72423,29266,57172,74749,6581
+67617,77464,62194,79830,2127,77335,23454
+67618,7004,17816,63050,24652,54781
+67619,36778,59526
+67620,9984,33185,59017,49206
+67621,62332,8218,17270,7481,67407
+67622,22847,80656,36851,51183
+67623,52728,9143,68889,9366,8561,59499,20279
+67624,79336
+67625,56485
+67626,32548,24870
+67627,75629
+67628,52191,7211,65633,9048,65310,37729,556,964,8324
+67629,24253,45068
+67630,22903
+67631,23378,53678
+67632,40603
+67633,62024,65002,56516
+67634,3261
+67635,9781,6059,7969,33412
+67636,17733,69855,16666,81038,21805,2726,51226
+67637,3552,12739
+67638,41737
+67639,60105,69735,29265
+67640,62019,36316
+67641,48188,33027,46,42025
+67642,6135,13284
+67643,81336,40292
+67644,47491,72214,30612
+67645,71118
+67646,5874,17211,13034
+67647,27278,40897,74566,68598
+67648,26200
+67649,76401,14028,50181,40809,18790,42277
+67650,68283,29848
+67651,38877,57768,40530
+67652,6409,54308,6871,41085,31147
+67653,7652,10029,66471,72043
+67654,22898,29556,30194
+67655,32813,20811,64155
+67656,34635
+67657,63280,201,2280,62722,48457
+67658,7327,4212,33273,66133
+67659,68218,58320,763,23534,21344,63622,69430
+67660,31654,42126
+67661,28637,65982,45630,36,59407,50307,8796,61815,4298,50047,52938
+67662,4830,37502,39174,27935,13499,8173
+67663,7634,6289,41457,49866,225,57659,40261
+67664,39780
+67665,65538,58917,64034
+67666,24718
+67667,32822,77957,9411
+67668,40193,64368,78427,22138,45947,31110,67056
+67669,75674,43401,16775,20651
+67670,38950
+67671,69871,64956,44620,54805,37346
+67672,24525,33403
+67673,5352
+67674,36239,12394,60228,20276,61288,52183,29227
+67675,7385,68637
+67676,81786,5469,64213,25362,4523,62091
+67677,22254,53110
+67678,65504
+67679,13253
+67680,80547,62978,35972,12705
+67681,23787,12488,13627,78123,75948,21827,65321,27078,73863
+67682,2891,77379,44854,35018,73695
+67683,55707,46897,6270
+67684,12354,58567
+67685,62389,14941,23656,21698
+67686,66276,56014,71640,12525,18352,65845,6264,77940
+67687,48321,81342
+67688,15795,33844,34589
+67689,62077
+67690,50599,49374,29831,5012,3541,51538,64673,74846
+67691,62533
+67692,71497,35718,33812,56211
+67693,40904,45892,69132,64863,4550,78823
+67694,2930
+67695,6738,21706,50583,14431,300
+67696,41329,16029,81671,60024,8022
+67697,74283
+67698,54256,70999,55600,822,69932,53338,12883,46880,21874
+67699,22573,45896,49013
+67700,23378
+67701,68062,74092,72825,22944,74568,31518
+67702,15460,47934,12732,7923
+67703,26440,52509,41322
+67704,48112,18049,34439,50920,8415,61131,56600,3579
+67705,18656,27733,45072,28533
+67706,35112
+67707,67331,67838,75332
+67708,80572,22977,51476,47018
+67709,55408
+67710,6855,58200
+67711,32091,73786,65209
+67712,12403,79704,51314
+67713,24343,61791,69044,77280,55566,33569
+67714,60093,80982,30307
+67715,6474,55938
+67716,3814,48689
+67717,34224,21938,35638
+67718,39681,72780
+67719,41093,49431,53003,65790,71353,9869
+67720,20968
+67721,66485,13173,2307
+67722,76113,22774
+67723,63637,74626,69178
+67724,63939,32237,33210
+67725,6647,29178,49777,16669,56683,67173,34434
+67726,77254,33331,28958,31984,75927,28362,26759
+67727,41061,68452,62888,59559,19032,71022
+67728,74783,1248,80490
+67729,81047,33223,22254
+67730,15886,76327,76939,55616,34268,75292
+67731,60996
+67732,7725,54388
+67733,2569,26174,56569,39420,76688,34186
+67734,56917,39092,23480,22203,27923,17128
+67735,49219,27088,48268,41983,5190
+67736,336,3076
+67737,68079,30082,33114,28886
+67738,16348,47407
+67739,35662,8733,14297,27223,75697,72610,50438
+67740,8983
+67741,34158
+67742,70685,46164
+67743,73806,60600,54661,29385,12859
+67744,28928,52391,58627,56703,4880,18863
+67745,78707,24973,6080,28485,21645,18446,49740
+67746,57159
+67747,6310,71296
+67748,37507,81737,16152,44593,36735
+67749,40666,24664,66747,47928,46336
+67750,32854,50359,69807,51001,25493,81395,26717,10579,30424,7989
+67751,23985,37272,37966,66216,65710,37723,1836
+67752,81097,79526,53424,80089
+67753,65838,70271,17946,43670,9586,45936,37892,75252
+67754,56426,71511,57301,56358,24189,15301,25314,20560,225
+67755,54864,31556
+67756,5837,69124
+67757,38140,47940,41841,17351
+67758,75594,54243
+67759,2241,33259,12664
+67760,58230,36924,67562,42843
+67761,7588,48522
+67762,60306,54143,5574,70111,75518,36333,56854,69901,3629,10530
+67763,11396,24258,58828,55208,23982,61524
+67764,40617,32499,4031,6196,1610,17601,52165,6869
+67765,6622
+67766,50837,3767,503
+67767,45864,39727,62859,38521,48703
+67768,65274
+67769,10592
+67770,26922
+67771,38466
+67772,40650
+67773,55365,12504,44501,59368,10135,14348,60113,6666
+67774,11788,51119,71982,3537,61760,70503
+67775,47813,16865,6270,79778
+67776,48504
+67777,14032,24722,31918,52345
+67778,18616,79311,42362,36280
+67779,56869,12162
+67780,33556,50369,51303,43346,20289,64446,25616,36408
+67781,23904,18337,9551,40232
+67782,35954,55134,51118
+67783,48329
+67784,45869,11608
+67785,75083,41050
+67786,63436
+67787,78756
+67788,9390,12934,33957,20889,18578,20301
+67789,37339,53359
+67790,6272,72440,39927,36945,75220
+67791,57313,17178,69203,13860
+67792,17154,46344,50485,42985,81737
+67793,43234,4338,33823
+67794,56362,59214,48214
+67795,74729
+67796,72945,49844,15791,14632,59961,19617,1516,5149,45437,68616,71499
+67797,29675
+67798,47942,39843,12620,79266,46925,16734
+67799,15826,46376,5092,38016,80191,62572,76870,3589
+67800,14498
+67801,47466,57410
+67802,22074,58991,25692,16162,80090,5882,30144
+67803,10962,43328,43358,4967,78638,79292
+67804,30412
+67805,25855,80766,54202,6614,64907,66618,80268,35189,8463
+67806,72656,819,14932,52846
+67807,56975,72253,42103,51591,74088,74477
+67808,38945,82051,20711,39412,80940,47748,58482
+67809,39515
+67810,54130,36519,18581
+67811,61543,41455,56007,49533,51970,78087,40559,66516
+67812,60337,79045,22896,3686
+67813,12910,12609,51189
+67814,29774,17119
+67815,20956,68707
+67816,1212,56210,54741,26977,10734,15681,28488
+67817,50485,14459,13514,7194,49526,27047
+67818,15622,3368,50363,47955,54287,64956
+67819,24369,9829,11578,46842
+67820,67076,66119
+67821,43811,63461
+67822,4639
+67823,19282,23390,29432,26489,22473,36294,77145,33019,53984
+67824,12226,2031
+67825,35497,20351,53483,56916,5801,61545,35105
+67826,52725,4364,81924,36852,37698
+67827,23649,72151
+67828,38696,50047,76613,75081,66636
+67829,10881,80503
+67830,2536,15490,75778,30590
+67831,19129,12898,77414,19840
+67832,19132
+67833,9861,58341,20737,1110
+67834,19322
+67835,22812,22,67964
+67836,59356,17893,48106,77284
+67837,54805,27016,77040,58391
+67838,20601
+67839,11325,68606
+67840,26393,48836,55990,31176
+67841,10138,73265,6215,43791
+67842,45422,21473,15743,20021
+67843,3726,9921
+67844,59507,27338,69585,68653,4798,61951
+67845,8110
+67846,52967,80705,31135
+67847,70911
+67848,42601,9427,31333,67622
+67849,63375,31988,29669,74679,37987,81111,22367
+67850,16814,78522,63241
+67851,72470,452
+67852,39559
+67853,63174,45081,65569,76711,9659
+67854,26782,29579,49803,75603,57221,70416,27896
+67855,78467,4873,24557,19829,43811,36532
+67856,43494,13078,81852
+67857,36577,15501,73382,80821,32368,1672,52104
+67858,44193,19501,271
+67859,81301
+67860,45492,46041
+67861,31424
+67862,34594,57639,21991,34192
+67863,7685,10625
+67864,39626,813,18399
+67865,10401,56221,72366,68200,5158,21753
+67866,70218,67140,72864,75666
+67867,39524,20206,73907
+67868,44280,13802
+67869,66677,71400,71828,26810
+67870,37783
+67871,16391,81581,24452,40095,2361,73090
+67872,50379,42386,58023
+67873,50160,50993
+67874,28647,43240,75392
+67875,40759,7450,6626,75388,19520,2494,80256
+67876,44105,35315,79500,56286,54627,29402,5674,56075,44463
+67877,69019,11568,58945,30206,51492,20143,52302,60644
+67878,65591
+67879,45964,23787,42613,49272,64174
+67880,20989,61560
+67881,7025,30120,79336,21063,28603
+67882,37678,46516
+67883,45064,69188,77251,19199,63376
+67884,45851
+67885,41424,77968,78882
+67886,77550
+67887,43096,69369
+67888,61535,56808
+67889,70031,30402
+67890,78092,20860,75242,60532
+67891,35652,19262,13654,73272,70561,8904,73033
+67892,55611,34151,71644,72033,22060
+67893,45648,81684,49205,67938,45282,8119
+67894,43822,19306
+67895,13393,39177,56402,42725,15850,73235,34819
+67896,49661
+67897,8046
+67898,70889,14571,63435,34262,24030,47406
+67899,10976,52492
+67900,43670,61589,12465
+67901,9487,24701
+67902,36770,16800,82178,62958
+67903,6627,43536,24063,27417,2776,16021
+67904,44264,30205,44863,45133,16440,6971
+67905,26142,15145,3828,68158,37287
+67906,54514,21769,22883,70133,76475
+67907,24508,513,53309,56314,76109,41619,21051,3678,60080
+67908,28924,7256
+67909,39587
+67910,66839,41631,19878
+67911,33217,32812,27196,57003,63309
+67912,7165,49491,17663
+67913,76465,10944,25754,70907,77140,76019,2947
+67914,77975,80780,32687,16100
+67915,24205
+67916,33475,16614,66789,56843
+67917,37879,55434,27973
+67918,41265,30390
+67919,59490
+67920,27852,3679,5160,55234,76864,6138,55,47098,54778,15423
+67921,67363,69439
+67922,30836,33841,81332
+67923,25735,16554,15258,2459,41841
+67924,47736,56694,34615,13396
+67925,3844,79857,31463,6344,20930
+67926,46740,1563,80166
+67927,62497,24027,17235,47356,10689
+67928,5249,12751,46758
+67929,58645
+67930,64767,63684,6297,79273,78501
+67931,59401,82023,12881
+67932,33049,68269,3699
+67933,78259,60489
+67934,66454,61095
+67935,25833,59605
+67936,3173,68467,39939,64562,12213,47878
+67937,53655,17485,29323
+67938,58186,31447,66475,3412
+67939,59473,27635,43991,43883
+67940,15180
+67941,50911,18614,24898
+67942,6460,10700
+67943,62709,46803,67448,53621,35454
+67944,78268,68076,67615
+67945,40004,26005,14984,3858,69201,66804
+67946,47402,53928,5175
+67947,77954,66595
+67948,80809,34187,45888,78934,20899,49989,46774,6098
+67949,20390,48598,35843
+67950,51683,51057,26772,28093,4498,79655,55493
+67951,76537,7165,41835,25892,98,39304
+67952,43678
+67953,33647,48865,37056
+67954,31573,21395,45153,5785
+67955,81782,18129,59113
+67956,3398,25706
+67957,79043
+67958,10387,74729,5327
+67959,67258,58728,28601
+67960,50298,54765,50958
+67961,72090,39316,66210,32928,19816,28243
+67962,66010,3574,73592,26971
+67963,63540,14066
+67964,29810,56695
+67965,19402,16765,33633
+67966,76535,51145,12150,60341,57888,26598,48220
+67967,40534,48670,50422,41735,38342
+67968,38595,56932,5230,8046
+67969,62419
+67970,22233,64626,20988
+67971,71896,8055,29701,63581,27199
+67972,58066,40682,32391,14087,20106
+67973,71079,21008,53861
+67974,34751,58301,74673,25638
+67975,34066,40548
+67976,28276,23922,26875,50333
+67977,33033,41239,81058
+67978,52638,5619,22450,42384,41791,42745,10934,73603
+67979,78508,27799,56960
+67980,18174,21697,48016
+67981,50941,41923,23184
+67982,42065,41884
+67983,44856
+67984,36492,7095
+67985,7489,35022,57814,31897,69727,63889
+67986,44498
+67987,66501,51054,6571,2111,47092
+67988,30622,1122,37502,24261,71376,66620
+67989,30828,25661,18415
+67990,29442,78323,5028,22686,6454,58667
+67991,19997,15004,66333,61861,37894,53474,58192
+67992,43494,1573,25690
+67993,65251,40283,72953
+67994,72686,60087,46794,4435
+67995,727
+67996,35124,65348,56810,6479,23535
+67997,10861,68649,10927,67593,10463,71764,67823,29186,57031,7177
+67998,53974,64474,50659,5886
+67999,3726,40848
+68000,20072,20427,10498,74147,3392,10036,21851,71667,46571,24817,29985
+68001,48480,81668,23332
+68002,5854
+68003,21019,55209,2579,55031,26550
+68004,41701,28553,22555,61456,21941,27915,67910,33719,75148,28746,65320
+68005,10373,6911,68069,64324,7783,34289,65657,52482,62663,44383,63290,55068
+68006,38842,68746,50417
+68007,71088,11028
+68008,13739
+68009,16310
+68010,11015,80242,31110,49266,19517
+68011,1317,70797,81231,27638
+68012,2158,17806
+68013,72497,8211,33599,36489
+68014,61895
+68015,55720,68774,52289
+68016,52896,35515,10555
+68017,40927,9883,209
+68018,20594
+68019,32217,49236,47311
+68020,35639,27939,51452,34413
+68021,51426,6391,35081,75251
+68022,45583,80375,7372,53065
+68023,9122,6913
+68024,3192,33250
+68025,72808,12567,29992,20708
+68026,9619,30676,60900
+68027,68943,60554,60193,16126,33808,43075
+68028,4710,3399,59933,21487,78453,80207
+68029,41519,79348,62756,57302,52215
+68030,38832,67335,20765,57535,48889,1617
+68031,6770,18190,19249
+68032,32880
+68033,1686,41138
+68034,63556,18726
+68035,27013,55272,67117,62044,37047,40464,21335
+68036,61885,72378,26604,57906
+68037,1694
+68038,76743,8767,62829,49903,5847
+68039,59531,20804,74770,65855
+68040,28495,26848,79706,26838
+68041,13659,48934,42996,68896,16453,22724,45819,9680
+68042,68009
+68043,64074,27449
+68044,65316,33867,81291,75595,22183
+68045,35457,28604
+68046,35238
+68047,74116,7885,71955,8779
+68048,76993,54045,28938,20996
+68049,13006,78422
+68050,77350,24081,66887,56324,26384,18990,26559,33609
+68051,41400,4804,29221,48872,1998
+68052,44580,34268,75930,70729,56714,64610
+68053,14044,52590,66329,76401
+68054,59408,71139,30896,34660,66536
+68055,12637,5112,68359,34233,15235,44556,63356,15003,32418
+68056,23349,19015,9944,75869,78639,56722,33089
+68057,7375,7912,48103,20889,75544,23500
+68058,47488,65350,38363
+68059,52896
+68060,12810,35867,61447
+68061,71005,19831,40251,66902
+68062,6727
+68063,29293
+68064,68585,34476,31962
+68065,22830,33216,71232,3455,10696
+68066,16372,8100,32800,44019,30
+68067,70911,15707
+68068,54454,67556,42807
+68069,35977,13210
+68070,26832
+68071,76893,5250,54974,36120,80059,47365
+68072,68016,62263,67820
+68073,78022,48458,11717,61408
+68074,60384
+68075,27311,35549
+68076,32254,32689,71865
+68077,13141,51211,11838,52809,63506,28805,9288
+68078,54518,16511,78107,59372,79324,23646
+68079,29956
+68080,13780,19409,65255,34353
+68081,15194
+68082,39454,29250,36512,56275,42163,9034,80969
+68083,46335,20108,2054
+68084,79664
+68085,29360,56122
+68086,39633
+68087,35851,67258,32554,56798,33121
+68088,18032,70243,17812,20861,54505,53126,12367,48210,52327,31050,28718
+68089,9819,74906,60957,73716,81095
+68090,57749,24280,41592,11247,74229,40123,12989
+68091,9390,76238
+68092,4700,16894,67728,21446
+68093,49156,23847,6297,74356,71918,62355,31030,72648
+68094,47594,30788,77953,26551,72458,72995,15929,33997,56817,38243,24104,77791
+68095,15201,39645
+68096,54873,48375,39076,3515
+68097,43606,7564
+68098,1646,29607,70211
+68099,9934,17504,13025,71055,77246,6466,34695,18673
+68100,16010,30407,25711
+68101,41913,5231,43683
+68102,47632,51187,42103,37131,56258,31532
+68103,26605
+68104,63833,19986,47346
+68105,78444,64658
+68106,14559,10098,12424,17583
+68107,71048,42978,48619
+68108,80082,14347,51829
+68109,68070,10649,46804,36362,12371,46613
+68110,75075,50953,43045,95
+68111,14964,49968
+68112,46108,34427,19307,9273,6204,56709,72519,1342
+68113,68676,50274,1131,74082
+68114,61856,47288,16264
+68115,30925
+68116,19170,64038
+68117,63200,28943,46535,31002,4254
+68118,76512,52015,37912
+68119,29981,1076,46916,15804,30713,41167
+68120,46444,7723,78407,61476,65984,21136,57487,51583
+68121,16639
+68122,63413
+68123,35115,39927,13069,31756
+68124,8032,37369
+68125,53934,50961,47653,39798
+68126,67006,31304,41485
+68127,74875,5840,70445
+68128,35373,18135
+68129,13552,3144,6654
+68130,73066
+68131,1724
+68132,1470,27105,41403,4268,13848
+68133,19889,22463
+68134,4624
+68135,74544,14633
+68136,54110,3705,14426
+68137,43983,7339,29897,53367,46023,37282
+68138,33714,31136,52150,7355,35433,45257,37014
+68139,69935,21243,26656
+68140,14369
+68141,20251,54231,13596
+68142,38241
+68143,40212,50019,49006,33169,72541,76978
+68144,59311,63563,12250,70811,14881
+68145,37984
+68146,13553,42844,27944
+68147,1939,51538,74117,35098,3424,53276
+68148,50557,19492
+68149,50516,68594,16911,430,30330
+68150,30770,6503,52485,10854
+68151,17992,38094,60550,66390
+68152,81339,23514,35453,1114,43495,62966
+68153,47485,12209,23292,64678,66572
+68154,67022,22119,36615,48360,6026
+68155,18267,60972
+68156,46840,24481,21067,24248,30348,55039,18950
+68157,4964,40079
+68158,33136,35394
+68159,71230,71835,65558
+68160,47657,15071
+68161,65153,29085
+68162,59637,37265,64101,74361,35439,4399
+68163,39475,74074
+68164,76919,55895,28543
+68165,6927,28724
+68166,72489,26364,2580,61684,43427,45915,61481,43382
+68167,39100,25813
+68168,73146,5925
+68169,26214,65401,37634
+68170,1243,22705,39851,31139,60208,27714,30096,44920
+68171,58617,8703,34418,6929,51256,54360
+68172,69603,65005,2369,38503,70659
+68173,20802,11507
+68174,34362,29513,9864,64150
+68175,9881,43901
+68176,52997,45989,52173
+68177,55014,65817,59620,35582,71290
+68178,10336,75066,41010,32995,22202,30312
+68179,72589
+68180,77798,18711
+68181,7275,8523,6943,8777
+68182,3708,2212,68422,77544,67395
+68183,44323,14319,68433,20028,49467
+68184,27384
+68185,32954
+68186,44322,65133,79732,39801
+68187,4974,34328,40359,11895,68497
+68188,34125,35384,24903,37856
+68189,21962,7445,15813,55321
+68190,30728
+68191,68803,24318,10108,65944
+68192,30365,18892,64070
+68193,29973,32368,35694,16110,26032,43577,42293,59988,68286
+68194,29173,23919,82049,57981,65008,80939
+68195,14846,22828
+68196,6026,53182,36888,29647,58517,44847,16188,16717
+68197,56869,48716,71693,8475
+68198,22683,11652,37235,22550,894
+68199,39873,33177
+68200,12057,17290,53210,78560,24405,34959
+68201,65765,27107,42828,52465,47665,61954
+68202,47490,66382,67728
+68203,82072,46994,46580
+68204,60317,22332,48487,78341,57298,23816,46654,30391,46988
+68205,2079
+68206,22604
+68207,26824,77756,15927
+68208,78967,12583,70691
+68209,3944
+68210,50288,55933
+68211,1807,75029,63849,19172
+68212,41430,44832,75401,67597,64199
+68213,46233,13408,23645,28276,59001,26206,24673,23769,38517,57802,43925,20058
+68214,7205,21408,39521,78207,73466
+68215,36009,71191,22184,75993,65703
+68216,71773,50084,36228,64578
+68217,66868,31007
+68218,24764,40851,77029
+68219,33028,55070,66552,51098,67926,29398
+68220,57070
+68221,71401,19113,7412,7314,32693,44927
+68222,81125,67558,17062,38813,57946
+68223,60435,27266,14747,28704
+68224,76778,1113,77083,51248,61089,8163,52518
+68225,2435
+68226,26448,35231,21125
+68227,6239,16818,18553,57107
+68228,18856,22068,44070
+68229,30959,9638,32797,65558,20994,24252,27064
+68230,63485,59438,16383
+68231,50587,9054,36290
+68232,17434,11556,64961,16281
+68233,13020
+68234,20912,62190
+68235,40577,40796,42837
+68236,47767,16932,42111,4057,71773,74193,55778,9522,39762,45202,55568
+68237,3827
+68238,54769,58337,57582
+68239,35742,47250,37240,57345
+68240,12455
+68241,52184,37888,80727,589
+68242,30538,80161,52238,38504,53509,82189,11399,24464,21459
+68243,44632,75473,38990,18732
+68244,1571,72757
+68245,2732,78063
+68246,73008
+68247,14979,77847,37979,51311,37053
+68248,46237,60500,32130,4059
+68249,23,29959,29088,63403,17386,24968,59442
+68250,1465
+68251,47316,6462,8221
+68252,16423,27733,53467,36288,64001,1851
+68253,4457,58633,54375,34863,11620,67622
+68254,42307,29964,30324,6759,80584
+68255,73050,46180,68370,66253,25423,46963
+68256,26844,77706
+68257,3106,67144,56915,32421,77551,32718
+68258,41215,79023
+68259,13664,42975,10464
+68260,29414
+68261,23427
+68262,16307,74813
+68263,12588,15045,28488,60926,39880
+68264,29407,42870,2470,33903,49483,1091
+68265,75412,68633,51307,79053,9767,1866,79769,67377,56509,2730
+68266,14367,71205
+68267,69548,26570,78407,72442,78494,38574,43758,46078,2546,63614,55373,10703
+68268,7240,294,16496
+68269,17740,64010,30247,67249
+68270,65840,8376,6658,74605,36080,48209
+68271,7689
+68272,53210
+68273,74798,39887,45616
+68274,55770,24262,12583,10539
+68275,20513
+68276,51595,64961,39566,38589,72466,29519
+68277,43032,40492,81583,50525,74349
+68278,17731,20520,71725,61184,32693,23860,15571
+68279,77569,36568,62600
+68280,10433,49869,18418,75876,16049
+68281,74178
+68282,39431,29279,64635
+68283,62454
+68284,13919,45281,17306,47775,1643
+68285,73605,69092,41005,53391,7190
+68286,36938,74430
+68287,5841,57270,6367,67672,59523,28723
+68288,17220,43473,73116,46442
+68289,15318,56764,63570,43748
+68290,41161,48314,25518,62574,14760,81624
+68291,11860,10928,39649,38003,36086
+68292,33434,80787,49135,63500,32000,18240,23605,73491
+68293,40066
+68294,32289,55292,18142
+68295,54062,23996,9194,35328,77513
+68296,46423,28573,14933,79582,53534
+68297,10798,70589,10966,19764,32235
+68298,69376,22223
+68299,26465,42565,59679,16938
+68300,35561,23656,71241,29812,29897,58627
+68301,25674,70327
+68302,40792,73653,76432,25837
+68303,63937,15276,74287,55825,65716,80792,2511
+68304,37095,81288,46349,25455,75319,65586
+68305,50098,70652,72259,60147,65708,57216,39191
+68306,44420,33415
+68307,32707
+68308,9754,12023
+68309,24981,54179,48569,58164,44175,36106,15238,54612
+68310,55737,32066,3014,55051,18662
+68311,17668,50188,80763,23329
+68312,52505,13428,35685,40017,18382,31225,70998,28938
+68313,39626,3831,18589
+68314,33679,79260,33569,14610,22975
+68315,10868,75408
+68316,60011,33722,11578,8485,39429
+68317,49208,56301,6472,81318,33302
+68318,9234
+68319,21072,2228,40115,80687,62541,71008,78304,29723
+68320,68749,41911,69650,50815
+68321,80162,34491,71819
+68322,46573,47231,52836,43031
+68323,64160,46229,10890,17489
+68324,76284
+68325,60520,1981,21210,9711
+68326,38295
+68327,1664
+68328,74580,28778,46231,56799,45657,43889,30515,76574
+68329,9122,48901,37557,48687,62378,59862
+68330,21228,35953,50920,37336,19412,6921
+68331,62823,20244,37417,71451,32612,46677,49355,14372
+68332,20366,4358,39944
+68333,24835,20474,5151
+68334,17666,80138
+68335,56968,29441,76727
+68336,73427,62799
+68337,16455,63168,61045,27563,66588
+68338,54031,40105,15506,67814,33925,70468
+68339,30901,40637
+68340,58766,33756
+68341,67633,36873,72170,68320,60998,58719
+68342,18380,56801,37821
+68343,16633,33422
+68344,37511,5752,27991,8273,47813,10170,49953,33886
+68345,18516,1113,50370,54704
+68346,37916,80440,71970,34964,32996,53628,49277
+68347,926,11845,62514
+68348,59160,19803,48766
+68349,47748
+68350,6503,76747
+68351,50125,56339,34920,41335,69285
+68352,68233,53548,39922,6791,6635,22480,36713
+68353,79783,78304,75262,38879,35207
+68354,33043,80588,44173
+68355,74148,1126,2359,24016
+68356,8722,48030,62015,49747
+68357,26993,47487,19677,21954,62503,16107,54856
+68358,16145,65090,68781,17495
+68359,46780,67071
+68360,8810,19569
+68361,27517
+68362,27260,34876,81397,73420,42080,30407
+68363,76925,58860,72716,62306,64096,45720,62539,7555,65673,16966
+68364,75856,7690,41144,52839,47475,68247,40461,78992
+68365,81992,9970,23177
+68366,62482
+68367,72134
+68368,6527
+68369,21739
+68370,54346
+68371,23568,24458,17634,12913
+68372,21060,5660
+68373,37459
+68374,36817,70550
+68375,61757,75954,43719,33963,19090,68696,29739
+68376,17069,7306,51565,38768,35394
+68377,45892
+68378,27371
+68379,53548,59036
+68380,7377
+68381,53065,19538,50837,21955,79794,55740,36327,63793
+68382,24328
+68383,25144,43894,45070,22948,24135,64568,75913
+68384,31104,16771,7147,60515,62272
+68385,73305,16031
+68386,14693,65135
+68387,33854
+68388,55616,16421,20749,44228
+68389,4230,10571,77396,79368
+68390,70515,30826,10189,30677
+68391,46325,50327,36434,21256,9155,16029
+68392,1641,40150,75159,81235,20011,22837
+68393,81168,37800,16880,42466
+68394,35728
+68395,32374
+68396,51627,13860,70060
+68397,59233,48095,59401,7703,52436
+68398,49826,53911
+68399,45479,18949,30590,51421
+68400,1673,3138,72376,57697,12982,16938,55622
+68401,9833,20414,41355,36971
+68402,48930,60584,592,64117,20304
+68403,80125,77572,81754,61902,79408,52785
+68404,5504,65125,73974,53413,73045,76542
+68405,62041,2658,80943,30778,73633,16058,47516
+68406,48419,5293,29096,76461,71722,69044,22663,3150,68898,63319
+68407,52123,60585
+68408,25738,23601,6525,74136,31039,5346
+68409,17901
+68410,37526,51716
+68411,35514
+68412,68069,56406
+68413,63536
+68414,70710,38723,63113
+68415,34281,14553,66256,33782
+68416,11458
+68417,63168,74875
+68418,46109,14874,48783,36201,73945,23433,60797,23580
+68419,74732,65781
+68420,13265,9822,33440
+68421,45740
+68422,14610,63094
+68423,22499,1019,27343
+68424,69096
+68425,80071,77185,81717,77065,23207
+68426,60845
+68427,1838,40048,28269,9769,40143,7603,55625,19756
+68428,19746,42236,45797
+68429,80335,75503,1410
+68430,66852,11322,49291,24272,68756,45748
+68431,10150,32214,36557
+68432,41559,62751,54913
+68433,7688,49014
+68434,46129,3472,60815,58453,28690,57948,77639,62516,65776
+68435,12393,20383,5988,54905
+68436,71994,73820,67048,35247
+68437,81226,17320,66955
+68438,20650,49409,52345,45277
+68439,6290
+68440,23530,66401,63624,11426
+68441,12292,64981,12053,27548
+68442,56854
+68443,39768,79321,51338,21965,62533
+68444,7881,8068,74858,56686
+68445,50798
+68446,36228
+68447,67248,50866,58161
+68448,12129,74833,30105,74696,35348,35007
+68449,73166
+68450,22419,63236
+68451,30221,45337
+68452,79907,57092
+68453,64381,57830,30729
+68454,3345,31439,33473,2292
+68455,41713,37109,63280,28370
+68456,56592,79124,34036,10497,75535,33486
+68457,21738,21220,45932,64584,3905,39983,18271
+68458,16007,55924,45229,63651,80369,21537
+68459,55748,24901,75589,35768
+68460,7626
+68461,8852
+68462,69082,63012,76779
+68463,61889
+68464,69553,59845,79022,19517,35847,15017,65951
+68465,58188,74201,20920
+68466,45129,58976
+68467,29780,50404
+68468,51991,68388,77624,58358,14280,80541,56657
+68469,54985,29096,34462
+68470,65898,21154,39451,81225,57412,75598
+68471,60250,22190
+68472,14597,80668,65021,31352,33603
+68473,43301,53923,65811,44969
+68474,9681,2120
+68475,6105,10108
+68476,53043,74247,6618,46176,19510
+68477,10654
+68478,46161,1464
+68479,16065,56170,68054
+68480,36298
+68481,52965
+68482,30354,24836,61168,16082
+68483,34664
+68484,79750,71435,42287,76483
+68485,49050,6711,31277,38905,46812,31263
+68486,80895,902,46348,62312
+68487,36090,79234,32839,20533,65813,20160
+68488,80203,26434,12400,69779
+68489,29194,51369,16677,74760
+68490,1648,25828,50941,27920,6979,57858
+68491,2355,68610
+68492,20969,68104,43630,72263,12074
+68493,67935
+68494,30522,24187,16646,61580,7653,42688,27015
+68495,24373,11382,46402,34736,67118,57286,70112,70289
+68496,51260,32352,70566,23428,13081,76219,55479,25083
+68497,42626,66379,55890
+68498,41991,33710,79966,60826
+68499,69163
+68500,14682,63956,877,25547,9946
+68501,14517,40512,39040,1865,19169,54628
+68502,67812,60177,77262,61608,25167
+68503,60153,1402,50087,65901,25403,42953,46156,30996
+68504,49542,3198,50595,73066,37356,56460,77585,23042
+68505,1453,54431,78164,40954
+68506,52846
+68507,42747
+68508,44220,28042
+68509,52738,40303
+68510,26635
+68511,20749
+68512,58389,49199,45979,47482,32656,62813,40468,4121
+68513,45855,63737
+68514,12261,46720,3833
+68515,80492,53167
+68516,46847,49802
+68517,27053,63311,680
+68518,17606
+68519,17373,51785,30758,56335,35627
+68520,64835
+68521,26350,21954
+68522,11595,49446,4671,968,26636,12773
+68523,8248,33013,58115
+68524,54243,21326,50179,25363
+68525,26113
+68526,25896,40093,22711,42161,53981,28009
+68527,76558,75498,36288,71271,31050
+68528,61525
+68529,12073,18627,66151,27214
+68530,69439,41086,54548,11208,53527
+68531,43722,12465
+68532,66479,6602,51539,53212
+68533,78226
+68534,61978,50668
+68535,47928,45775,58307,34263
+68536,20361
+68537,60684,20974,11050
+68538,10219
+68539,16902,7858,43104,58048,55832,61907
+68540,14017,14158,15328
+68541,81478,22633,54703,2268,37605
+68542,42028,47239,9408
+68543,51941,45862
+68544,74582
+68545,25104
+68546,38935,75468
+68547,41296,43162,2212
+68548,3099,30540
+68549,22175
+68550,76827,66741,75213,17287
+68551,48515,48982,17533,15776
+68552,10248
+68553,48904,70973
+68554,2734,10836
+68555,68892,4869,47869,75032,72086,66927,62019,66461
+68556,14164,27192,44862,54234,70547,24035,9831
+68557,59204,47823,69485,1933,58454,73225
+68558,38899
+68559,72321,35225,64119
+68560,2527
+68561,48381,76100,7370,61695,68032,64650,66813
+68562,19955,61411,74849
+68563,5605,44873,59849,22007,64312,45097,65228
+68564,73930,64219,33654,32295,79024
+68565,17775,33680
+68566,76047,67982,74857,17524
+68567,61601,81862,69893
+68568,55428,43465
+68569,237,35565,46745,62902,63964
+68570,27009
+68571,26236,59963
+68572,24706,41046,62249,61286,60555
+68573,59684,21973,73571,62266,33206,59356
+68574,69483,27997
+68575,62533,41711
+68576,46794
+68577,59882,18465
+68578,23863,23955,25844,34207,54047
+68579,22399,75941,4184,77100
+68580,27855,12246
+68581,53293,37331,23964,74580
+68582,18216,66650,42387
+68583,75473,14979,66132,38184,23269,7647,2950,29757,54954,73601,7923,72581
+68584,43176,33272,75396,2581
+68585,52987,13434
+68586,77133,30737
+68587,60836,58255
+68588,13180,79380,10906,47494,24991,21397,65935
+68589,15213,68975,39740,50298
+68590,18093,79408,13331,26452,33522,71818,72551
+68591,22435
+68592,32344,31173,42290,30798
+68593,39588,58525,64668
+68594,27841,19745,4672
+68595,3266,12307,48003,79483
+68596,82103,35070,81743,12805,59433
+68597,32688
+68598,35822,56540
+68599,70681,73064
+68600,61179,27697,24591
+68601,64004,68970
+68602,40385,23077,6049
+68603,8998,15436,1894,42377,62680
+68604,73600
+68605,57561,42177
+68606,80991,29468,28474,59254
+68607,61344,7609,65912,52718,61417,6426
+68608,24060,2931
+68609,74773,72431,48080,37055,50477,4454
+68610,31698,45108,62009
+68611,80280,32335
+68612,39460
+68613,48309,8415
+68614,30625,44626
+68615,25611,9435,58410,78702
+68616,57490,29974,784,71180,74336,21823,64243
+68617,39292
+68618,20266,38381
+68619,7539
+68620,4249,33556,27865
+68621,75412,60050,48619,20150,19234,45088
+68622,25812,16510
+68623,53331,44588,27470,53092,80732,23376
+68624,56676,54728,20017,10065
+68625,14914,51615,75621,57869,62042
+68626,37435
+68627,75650,54305
+68628,56444,11120,32363,53425
+68629,56896
+68630,64388,34102,67253
+68631,20461,31223,62267,8448
+68632,56818,46926,28347,61722,54492,65059
+68633,33656
+68634,55154,18784,53823,26930
+68635,17542
+68636,29607
+68637,72082
+68638,66591,63315,33884
+68639,22977,22642,64818,33401,61649,58511
+68640,20619,72947,76673,3538
+68641,51848
+68642,68084,28741,24415,61293
+68643,52244,27599,23609,25759,10298,59632
+68644,55710,62598,25287,53611,19650
+68645,73531,23264,74617,43176,24014,78703,37546,7162,48220,68414
+68646,52758,63830,35393,5222,13006,32292,63642,48581
+68647,51584,75739,69478
+68648,18903,2544,37085,76050,22694
+68649,78691,46897,32825,67986,64394,9090,31984,23750
+68650,65855,48330
+68651,63063,35819,46585,67167
+68652,72190,28984,29544
+68653,64438,2486,61311,58589
+68654,69033,79393,4213
+68655,15682,30681,43837,73686,41975,21454
+68656,59396,30077
+68657,14859,45695
+68658,34555,15562,27011
+68659,80089,4630,70268,38941
+68660,35516,36998,19060
+68661,41114,69249,79446,12231,31158,5203,37063
+68662,1353,61299,25490,16037
+68663,62951,4605,68184
+68664,24407,67439,75007
+68665,51033,37266,48625
+68666,317,66017,55411,34678,11282,8096,68167
+68667,60797,75283,79593,20282,521,48353
+68668,40371
+68669,29465
+68670,59601
+68671,47232
+68672,47592,25062
+68673,60450,10607,37772
+68674,16145
+68675,12934,52279,21112,7836,80206,53439,64490,23161,44095,68709
+68676,45521
+68677,35366,71848,48106
+68678,4102,50987,22182
+68679,13537,74153,82063
+68680,27550,3911
+68681,9042,15453,10473,2297
+68682,66992
+68683,25777,35065,9807,37800
+68684,45373,3758,8017,81493,17190,12593,65908
+68685,18180
+68686,10409,76078,41044,32589,46281,9498
+68687,8165,918
+68688,32741,79724,33635,39147
+68689,66817,13428,23982
+68690,31261,17421,61052,36602,58403,74946,58632,78316
+68691,18353,17884,73958,38652,30817
+68692,29024,71418,10850,47502
+68693,64817,58783,53302
+68694,69356,65006,13035,13987,64583,43526
+68695,12866,54359,26153,38901,6082,48146,12430
+68696,48133,20909,64630,32946
+68697,55236,77991
+68698,34539
+68699,3345,78817,32387,18450,4901,35316,23156,46932,40776,41995
+68700,76571,11525,75792,81057,70641,42795,44408,16661
+68701,4793,53240,20442,67915,42147,16973
+68702,21511,66206,66055
+68703,60924,21169,79005,536,54514
+68704,42951,61515
+68705,57248
+68706,71082,61020,23073,71079,32705,67325,44832,34796,8033,38723
+68707,67625
+68708,10741,6566,56511,60251,33086
+68709,17569,3990,1412,38859
+68710,69396,78217
+68711,47545,15905,74916,1576,55570
+68712,19772,31613,26849,34353,44273,46753
+68713,2035,13555,28548,67571,23210,39527
+68714,16507,56818,30144,11791,47317,5051,23391,29294
+68715,37515,64106,38409,34862,72401,75751
+68716,16860,59203,68056,35779
+68717,54426
+68718,27572,12104,61407
+68719,65119,42486,64319,64938,5844
+68720,66887,70550
+68721,55434,76871
+68722,51400,14210,52403,48541,81030,4032
+68723,32660,70155,42760
+68724,52850,28336,35409
+68725,61018,68793,54673,19307
+68726,57673,15174,29655
+68727,49321,30861,73763,14558,69773,58704,23496,23145,10382
+68728,53350,29647,8089,11331,11280
+68729,69590
+68730,32232,7266,53722,17252,3261,68910
+68731,7198
+68732,10494,47162,9201,47212,79656,23471
+68733,66689,7707,64281,40078,44795,8965,80904
+68734,9126,28128
+68735,81489,33757,55159,2462,40612
+68736,77188,51546
+68737,74157,50422,79906
+68738,25729,52469
+68739,27102,62054
+68740,39396,12695,55813,43108,60182,5108,42293,32634
+68741,53028,4023,8355,56494
+68742,2286,81734,20413
+68743,815,18240
+68744,70364,17817,7993,58020,17149,80259,45765
+68745,21520
+68746,66689
+68747,17870,35457,18752
+68748,75561,15639,57841
+68749,69440
+68750,24074,60785
+68751,18825,24402,18842,52334
+68752,12790,78837,36044,38887,59651,18628
+68753,11908,1986,1278
+68754,16681,10261,60321,10647,33873,57075,37561
+68755,75516,27419,54512
+68756,48816,9756,23443,56657,41916,50302
+68757,52966,59216,66040
+68758,34110
+68759,15109,1770,60016,20070
+68760,48477,66748
+68761,5454,41674,73950,21176,42241,73873,19026,35492
+68762,61621,17817
+68763,27660,18960
+68764,68980,79845,61878,34680,39560,21822
+68765,58279,28057,43117,42162
+68766,81510,29285
+68767,33806,79169,6891
+68768,38782,26005
+68769,81288,61160,48157,21836,66938,81619
+68770,51110,21875,16062,22355,11807,13338
+68771,16491
+68772,32965,13914
+68773,69262,54877,27612,76644
+68774,37334,5182,66375,8967,79306,78050,62823
+68775,52063,20654,55695,13924,11125
+68776,67493,70039,14433
+68777,28311,33770
+68778,23145,2524,45185
+68779,75186,22415,32238
+68780,46679,69393
+68781,72251,74661
+68782,76739,66198,56475,75049,13517,77138,49068
+68783,57282,23596,50920,10391,18263,8776,24208
+68784,32062,1684,15120
+68785,27274,68095,80714,5300,23049,67315
+68786,69211,55859,17852,78312,72204,79894,12931
+68787,20648,52987,50494
+68788,50921,61408,6366,66938,64436,50115,39699,46976
+68789,62206,81444,186,45340
+68790,81151,63247,14350,73965,13447,23376,75170,22464,40727,31873,44510
+68791,19383
+68792,2636,4773,39278,81779,48498,61151,27762
+68793,13288,36228
+68794,52135
+68795,38820,449,50036
+68796,47058,63619,40996,80127,37702
+68797,48376,41488,72491,19660,64783,81047,31368
+68798,52481,42381,23045,24501,64368,60592,22932
+68799,36216,44538
+68800,65765,23837,67364,22044,8216,3016
+68801,8504,21616,69406
+68802,30079
+68803,42351,53849,58065
+68804,3624,23186,52577,40010,64030
+68805,1464,37889,60622,75536,46488,44286
+68806,74380,36548,15170,76224,35772,30872
+68807,48396
+68808,43192,76914,35193,35847,69985,6651,66559,60301
+68809,21446
+68810,77919,30480
+68811,73890,61045
+68812,6234
+68813,81262,81417,40998,49966,42489
+68814,23120,74386,50611,64717,43933
+68815,3067,40023
+68816,61208,45463,4300,53053
+68817,66633,31488,15772,64080
+68818,59208,32730,40446
+68819,62533
+68820,50182,14965
+68821,68326,48005,43834,43056,66330,73221
+68822,55058
+68823,7772,7988,69026,44650,31463
+68824,74172,18208
+68825,37973
+68826,53307,5017,12676,77993,33772,27471,43903
+68827,61900
+68828,947,25332,32272,57794,52308
+68829,76153
+68830,77670,56443
+68831,19070,68841
+68832,35391
+68833,65068,35224,17155
+68834,68016,25084,18709
+68835,38919,40227,29089,20795
+68836,38785,49314,28602,15563,69590
+68837,66418,5423,2799
+68838,10900,38411,1473,70469,22331,75393,19209
+68839,25181,61639,50303,54482,59293
+68840,22647,71236,76238
+68841,50983,72544
+68842,24907,57854,71211,53511,9969,36250,34413
+68843,4338
+68844,35396,80230,69106,60249,28187,45715,4668
+68845,71329,64268,48670,69618,42936,48576,62016,45650,72212
+68846,47703,9534,26421,69531
+68847,80831,39025,79651,10044,14217,1310
+68848,26464
+68849,81138,23162,10682,63823,13842
+68850,81828,36356,49787,4616,31300
+68851,20062,18114,66621,66918,10777
+68852,76437
+68853,19593,25325,18612,22128
+68854,41068,38470,64422,43935
+68855,43854,57935,5489,42426
+68856,81315
+68857,81145,7950
+68858,12789,23364
+68859,55988,3668,40918
+68860,69073,29181,26796,45933,38615,62048,24098,45156,19486,60278,71931,50919,49662,28910,31219
+68861,28582,77919,19522
+68862,2413,10351,20526
+68863,40858,69077
+68864,32253,5096,56823,48956,32899,52993
+68865,21327,65281,47300,27191
+68866,13237,79451,34842,6982,60067
+68867,36092,28428,76415,22220
+68868,51031,72786,59711,4539
+68869,77690,10459,62559,9036,35465,77422,23145,15707
+68870,11254,72477,73451,29163
+68871,44406,25198,28046,21636
+68872,27093,56199,74697,15589,3160,60415
+68873,28899,71123
+68874,70271
+68875,43310,39596,46632,3699
+68876,51742,50366
+68877,54824,71440
+68878,54913
+68879,59223,62904,45174
+68880,14998,9883,17596,67630
+68881,54727,38870
+68882,11032,63746
+68883,32216,56105,64225,23831
+68884,11528,54426
+68885,16746,17592,23179,55777,72633
+68886,66996,64870,2948,14179,65558
+68887,13502,64231,15206,61700,41675
+68888,39657,70200,24849,40599,76421,20051,44281,55865,22134
+68889,21744,68442
+68890,52780,59330,59635,14299,15018,13962,55278,31900,50380,17895,22794,5592,67964
+68891,60287,18091,79852,67622,49726,54595
+68892,61182,34823
+68893,38717
+68894,38537,57524,74014,10753,5274
+68895,36960,7180,34078
+68896,22791,37911,27151
+68897,67777,66933
+68898,19109,79503
+68899,3373,55427
+68900,70770,81315,76527,21476,49882,15813,17303,41268
+68901,22720,52191,2418
+68902,58902,65628,36743,1730,79231
+68903,69370,64812,7996
+68904,7679,39343,70428
+68905,77234,21383,81827,71176,27543,14256
+68906,44169,60521,6016
+68907,65274,21397,69390,11440
+68908,46681,75063,9673,8107,52971,42830
+68909,69665,45892
+68910,9011
+68911,39128,66930,51746,73827,44070,58719,24246
+68912,32457,41546,37522,65402,4992,16427,11341
+68913,79582,74316,56303
+68914,16019,50451,58343
+68915,15207,68426,3446,75849,53915
+68916,27878,14802,58005,66383
+68917,77979,5917,38037,65216,49434
+68918,31520,57515,41144
+68919,16541,27919,21494,20081,67619,21986
+68920,58531,49448
+68921,77986,7096,47278
+68922,31651
+68923,52699,77340
+68924,40950,60273,26101
+68925,20333,7650,28747,67318,9094,26149
+68926,52428,46741,3005,24826,27366
+68927,31398
+68928,70457,33960,39906
+68929,50420,63643,7032,30003,28146
+68930,67222
+68931,66875,8450,30445,45492
+68932,8983,16524,39478,43323,43333
+68933,45947,23258,9158
+68934,10279,6591
+68935,32651,76314,39374
+68936,13261,57100,79050
+68937,20206,53428,23004,79886,48738,12000,42502
+68938,65820
+68939,50684,43256,77338,58811,44274,3329
+68940,4875,80010,74221,34094,26542,24928
+68941,77237,49030,3442,67099,17321,59615,10048,75371
+68942,27140,1664,70695,1425,46637,8693,65332,72470
+68943,81845,221
+68944,40752,78698,5168
+68945,2669,12089,66598,54656,57919,55462,33221,8367,8537
+68946,57956,22931,68916,2080,57693,11216
+68947,30930,21827,81338
+68948,8725,72323,44625,25370
+68949,31773,7773,69426,14834,38222,41263,69954
+68950,40105,25162,51265,29642,55437,78862,6677
+68951,16760,18761,63789,56644,34805
+68952,52741,8960,59071,75853,21984
+68953,56253,64869
+68954,284,61750,69978
+68955,5444,20582
+68956,67534,46656,59934
+68957,8467,20244,43447,14754,62774
+68958,39766
+68959,41267
+68960,78576,67045,62694
+68961,18655,22,74294
+68962,13983,46079
+68963,28104,55599,73592,52239
+68964,31202
+68965,63851,80108
+68966,60387,60851,53546,22990,64659,14714,13382,18718,76958
+68967,34293,64673,10581,51429,32704,67868
+68968,64377,76821,71361
+68969,66131,19670,72486,78942,29730,29709
+68970,39524,33807
+68971,20090,5223
+68972,54171,19640,23300,40201,8804,26079,25920,77572,20026,57807
+68973,13103,39109,68697,29798,38508
+68974,42157,61706,68637
+68975,72877,40069,15902,9094,11225
+68976,76000,65090,76164,63181
+68977,40506,76465,19910,12748,52915,27551
+68978,57543,1152,66164,3624,68637,23933
+68979,79906,79835,58782,69116,38276,74123,6258,33495,64697,5210
+68980,39092,16954
+68981,80740,10571,34668
+68982,67096,47582,76316,4515
+68983,82173,60702,44929
+68984,21031,40637,36001,50952,65339
+68985,32128,1581,44995,20327,10917
+68986,6213,62520,2743,42976,36837,3532,73295
+68987,17417
+68988,77588,36697
+68989,45199,44982,5376
+68990,28971,31135,76025,24856
+68991,47692,27435
+68992,47173,6415
+68993,6071,34452,66455
+68994,60671,27296,12012
+68995,68772,68558,38199,13929,41044
+68996,70190,25563,6756,26204,1838
+68997,12571,48099
+68998,32706,37064,46871,17661,6930,42446
+68999,28459,53716
+69000,71620,722,31941
+69001,71394,15259,52149,38330,2981,10319,57062
+69002,70395,38711,43879
+69003,51559
+69004,73125,16416,45045,36117,66322,33240
+69005,62358,44836,10621
+69006,12251
+69007,61264,15309,70517,47804
+69008,78425,40975,34115,72666,77611
+69009,58878,81743,21746,13739
+69010,25503,11588,67153
+69011,71522,18163,32174,51168,55648
+69012,6946,32736,63482,9163,27125,71013,18805,23713,40652
+69013,78810
+69014,44780,16107,74256,78160,41710
+69015,23510,8099,10255,31336,15459,25159,46165
+69016,8923,53572,18581
+69017,47583
+69018,13418,9547,25762
+69019,1886,80179,32729
+69020,65332,32953
+69021,41185,35670,45016,53738,13453,29307,39152
+69022,36276,30931,54577,10511
+69023,29623,69656,36038,54440,65985,5016,2729,64964
+69024,21566
+69025,48706,58483,34232,53954,2823,38794
+69026,14466,45520
+69027,76564,9506
+69028,14639,45076,69991
+69029,54896,71123,60627,40921,30456,41973,77048,36719,55094
+69030,76902,8439,23954,54528,64610
+69031,19672,12270
+69032,50278,36071,6469
+69033,64956,18070,61606,52752,33491
+69034,46529,50978,31460
+69035,33559,55006,79652,53832
+69036,37291,7174,25983,57922,41268
+69037,28482,27646
+69038,57529,35047
+69039,16699,37189,19127,73207,24123,2880,21717,63577,27726
+69040,49356
+69041,9895,76525,14606,1110
+69042,44163
+69043,20400,6769
+69044,65855,53008,59223
+69045,41232,72753,79670,14754,56067,9524
+69046,29902,9387,37188,7902,14992,8561
+69047,30855
+69048,1349,77165,51703,13708,65192
+69049,57637,19537,13585
+69050,68679,30423,78517
+69051,35960
+69052,77458,58166,24328,29876,30197,69128,7367,66777
+69053,14405,2743,76036,31907,37416
+69054,47007,24220
+69055,67671,13082,40633
+69056,7279,36030
+69057,77413,63438,667,49335,71503
+69058,20381,981,66267,15243,341,69094,71675
+69059,73806
+69060,51236,77610
+69061,21054,79294
+69062,51017,66850,7347,41581,5100,5735,55138
+69063,48904,44661
+69064,43164,78002,20241,53702
+69065,2623,58069,62574,24161,26537,43311,78224,14163,39864
+69066,33934,56669
+69067,34530,43875,42194,41070
+69068,12210,3424,52564,7271,32199
+69069,10292,65122,54814,37187,9305,34263,22075,5119
+69070,2134
+69071,11836,56491,33603,9338
+69072,5382,7697
+69073,67337,71655,55476
+69074,72103,62241,36515,75220
+69075,36197,77845,44320,71579,26185,63357,58202,61681
+69076,41948,27491
+69077,45086
+69078,57147,9699,42011
+69079,8008,10960
+69080,13348,53474
+69081,39979,76846,13238,5511,60528
+69082,78615,9738,50189
+69083,19269,65051,60449,37918,59112,55786,59381,44000,70237,9830,74771
+69084,56036,65086
+69085,19367,71483
+69086,52944,64328,21389,18185,21325,33937
+69087,47439,73898,26316
+69088,7650,10119,61237,50310
+69089,22457,79850
+69090,31376
+69091,47179,9148
+69092,37541,13794
+69093,74172,73904
+69094,28766
+69095,14182
+69096,20549
+69097,11808,950,61687
+69098,81235,71905,76238,79467,459
+69099,49853,73398
+69100,42537
+69101,70392,72688,55149,10613
+69102,39641,13702,31742,7875,34732
+69103,30450,36119,24942,33678
+69104,57663,11274,23736,45655
+69105,52492
+69106,25666,69251,20992,26635
+69107,56294,63296
+69108,9,76906,51052,26246
+69109,64692,7285,55831
+69110,69069,71595,78010,74474
+69111,58487,56309,71457,52775,54704,15278,74712,81328
+69112,6105
+69113,48293,6593
+69114,75569
+69115,50083,13822
+69116,27486,68084,72780
+69117,62579,30079
+69118,35479
+69119,47229,50725,18286,3593,28718,32189
+69120,65087,26315
+69121,50589,26584,29843,74870,48809
+69122,62746,55511
+69123,19778,72827,28729,43041
+69124,1897,48735,46783
+69125,49616,73417,44787
+69126,38458
+69127,41935
+69128,55168,35600
+69129,25493,19631,10210
+69130,1890,76470,15054,51707
+69131,33628,33962
+69132,36369,10882,56303
+69133,23450,22688,13517,15140
+69134,76744,41530,80011,72802
+69135,72347,81975
+69136,30892,47477,70111,22799
+69137,5200
+69138,66595,20437
+69139,65122,13537
+69140,13676,18508,76989,57212,37627,33129
+69141,30145,45031,55764,70732,21055,57114
+69142,78124
+69143,7612
+69144,73910,19635,22740,32938
+69145,13570,69953
+69146,25135,6792,29098,73444,6709
+69147,48221
+69148,30843,31974,32964,42626
+69149,56668,40700,18973,68134
+69150,42055,68606,60507,575,62590
+69151,46854,61753
+69152,43377,63742,43332,26556,26355
+69153,27981,61932,77315,18058,32119
+69154,51488,10182,71451
+69155,20764,54473,45578,53000
+69156,59867
+69157,18554
+69158,78715,61646
+69159,56579,50301
+69160,76369,78332,34416,65183
+69161,34377,15550,28398,3177,75367
+69162,62512,64559,35977,8080
+69163,79562
+69164,11003,80943,36297,61528
+69165,15778,54035,75385,34175,20433,80238,31303
+69166,2381
+69167,51957
+69168,47160,77294
+69169,55037,80971,75106
+69170,15661,80544,60905,28771
+69171,70334,21554,51166,21791
+69172,41592,73677,3153,61806
+69173,78739,81269
+69174,48796,29497
+69175,62784,24792,45074,28446,5855
+69176,38204,1092,41947,5109,80956
+69177,11779,18236
+69178,55043,24534
+69179,56727,25428,33699
+69180,64993,17131
+69181,5369,29534
+69182,11233,80858,75116,23910,70160,18334,9746
+69183,19871,22875,37867
+69184,11480,48199,30238,43408
+69185,62962,348
+69186,76049,42656,76700
+69187,78745,21233,41615,42920
+69188,25139,25185,4293,27171
+69189,15557
+69190,550,45495,2400,28977,66185,12532,64018
+69191,80910,49561
+69192,17866,23354,31380
+69193,27525,11471,56127,40292
+69194,73731,25404,71268,69785
+69195,36688
+69196,45477,45788
+69197,6035,70910,14735,60433,59270,22875,16319
+69198,32402,44028
+69199,56595,8147,58883,64520,61251,34385
+69200,33736,27954,33345,8998,38627,64516,3698
+69201,12151
+69202,15180
+69203,36157,24289
+69204,68811,15366,66391,58879,25148,72768,27204
+69205,38407
+69206,71620,7996,10252
+69207,59530
+69208,36170,23367,13566
+69209,70311,72757,16694,51614
+69210,63600
+69211,61271,64463,59696,42285
+69212,26840,7991,46424,75900,44549,73980,75218,4521,700
+69213,63621,5293,14610
+69214,35873,73712,8127,30325,60955,49201,13364,71258,35194
+69215,12561,80458,67487
+69216,17483,46503,37686
+69217,13946,13428
+69218,52514,81226
+69219,14040
+69220,25796,10433,3804
+69221,50508,47265,45788,44807,19593
+69222,19572,27612,51433,75732,58329
+69223,11165,54589,9045,55332,17767,61819,42904,57468,21018
+69224,44400,52801
+69225,76476,5012,53161
+69226,13145,4346
+69227,74294,73375,50536,78995,25517
+69228,80978,20469,16132,50358,30506
+69229,22937,33380,64697,53092
+69230,22920,43238,70280
+69231,69500,9717,61082,2522
+69232,67180
+69233,30389
+69234,53104
+69235,8369,34862,25581,47517,39197
+69236,29093,74330
+69237,2113,8591
+69238,5115
+69239,58630,46256,42409,59140,22278,77856,13810
+69240,59586
+69241,50746,69344,1667,27522,21797,79554
+69242,80545
+69243,55176,71076,2375,27919,19073,23945,19470,60444
+69244,429,52589,74485,80160,52271
+69245,57410,13368,59637
+69246,69004,40668,24363,29158,26851
+69247,59164,71505
+69248,55369
+69249,22346,8008,34315,60477
+69250,49055,19389,17,31712,25168,9991
+69251,14120
+69252,9897
+69253,182,4606,45843,50528
+69254,23364
+69255,13983,79291,7175,25723,34855
+69256,69379,5245
+69257,46890,27310,36845,59003
+69258,20554,62558,25261,11152
+69259,18000,34453,62712,26692,39327
+69260,27690,31647
+69261,42228,41600,10459
+69262,8821
+69263,57630
+69264,66603
+69265,23937,42676
+69266,26430,14730,23774,73555,10594
+69267,2121,60848
+69268,51318,15445
+69269,38979,46070,4023
+69270,36540,43564
+69271,29189,52661,24316,43439
+69272,47042,78124,81692
+69273,78636,71611,67373,8977,39896
+69274,6272
+69275,15911,2292,74756,58904,9202,24855,10057,6090
+69276,58922,11574,60754,23259
+69277,19190
+69278,80943,61288,79715,35366,44838,5219
+69279,4805
+69280,77309,69256,779,5449,16216,23161
+69281,705,10343,39154,41423,17647
+69282,73262
+69283,34315
+69284,39302,63320,44118
+69285,18542,23987,1089
+69286,39075,45699,8861,44990,21148,15413
+69287,16325,45499,9895,33232
+69288,17730,49919,79322,38984,39031
+69289,65321
+69290,50821,35755
+69291,7296,18651,45515,8562
+69292,51253,67984,15284
+69293,46079
+69294,639
+69295,858,61367,62037,4425,64945
+69296,77452,4391,31303
+69297,23978,7778,70059
+69298,45950,55204,76322
+69299,21194,5486,24398
+69300,32779,30798
+69301,1713,27231,64107,69216
+69302,36802,41975,36387,49135,74967,23030,68793
+69303,69564,18537,42474,9161,68135
+69304,17392,69730,30829,44606
+69305,36423,21082,43895
+69306,4843,60973,5187,11050,38622
+69307,66433,71309,9621
+69308,80618,33335,1686,69035
+69309,78080,56265
+69310,79050,65898,71282,73478,52036
+69311,14413
+69312,4515,9021,16639,19849
+69313,74234,21380,30947
+69314,63594
+69315,62434,60409,82176
+69316,34076,24045
+69317,48538,30991
+69318,3804,34909,25140
+69319,42519,67878,12269
+69320,1937,6486,79754,38968,40672
+69321,69966,20660,67945,32059,54838,52308
+69322,44551,54097
+69323,36784,3355,69933,7259
+69324,11109,15457,15929,73474,43750,57086,78673
+69325,68698
+69326,16137,13434,12695
+69327,29845,7619
+69328,80153,17134,78246,6240,5528,9552,47775,76496,46989
+69329,58500,20479,53996
+69330,40813,57962,30726,39567,132
+69331,19964,9535,7817
+69332,61407,66203
+69333,14064
+69334,60375,29058,28589,4547,51028,54706,1369
+69335,12441,23857
+69336,8700,2549,12222,9531
+69337,31387,73318,46097,8789,73158,54011
+69338,31434
+69339,4025,78206,45230,45075,81603
+69340,34238
+69341,62581,25670,78632,37123
+69342,77851,21451
+69343,45972
+69344,11218,60729
+69345,18828,45186,12614,74582,74833
+69346,26354,40520,32365,23778,70990
+69347,51289
+69348,32192,71758,26603,2742,71275
+69349,59128
+69350,2820,43012,31332,48348
+69351,5210,73879,43445,66221,29196,15833,1039
+69352,78095,64777
+69353,28331,65986,35592
+69354,7342,29826,5349,80237
+69355,49996,41703,49270,57768
+69356,52377,67847,57905,10504,14668,41700
+69357,70981,7770,64315,2031,75311,45369
+69358,66242,38158,80485,41329,12546
+69359,8038,24026,162,45944
+69360,70716,47584,77539,45528,28296,74475,59363,71483
+69361,29832,47120,27463,52000,16870
+69362,33776,34633
+69363,21599,31298,26097,79136
+69364,41970,4151,26793,34648,3170,53167
+69365,35349,49717,42359,78878,15566,40753,60152,61651
+69366,51566,81574,15211,3061
+69367,71934,9954
+69368,45917,70696
+69369,38781,71566
+69370,3690,54170
+69371,46606,44556,2611,54327
+69372,28568,68534,58205,24460,33236,527,5764
+69373,81644,16407,24273,39679,21086,79161,24088
+69374,41481,63598,34942,50456,16472
+69375,60446,61686,8629
+69376,75277,46915
+69377,44937
+69378,61323,68182,14122
+69379,44643
+69380,66183,68776,61048,35409,53485,10385,22673
+69381,44249,30755,36840
+69382,7858,22755,47250,78992
+69383,17094,67074,58362
+69384,32841,63259,59478
+69385,36714
+69386,23173,65893
+69387,28276,42125
+69388,78346,61430,2406
+69389,4954,18977,60483,33979,57574
+69390,25693
+69391,79548
+69392,15607,78916,65658,20167
+69393,6310
+69394,76331,103,46509,24366
+69395,49242,70796,5137,57746
+69396,8385
+69397,34253,74448,44769,6648
+69398,42330,23977,41179
+69399,34924,64157,35734
+69400,15625,60053,71420
+69401,6282,81743,58389,6623
+69402,78806,39406,52106,48988,51201,43993,59951,46621
+69403,11509,1860,50225,64093,59544,72200
+69404,31613
+69405,56766,5522
+69406,18613,10202,49476
+69407,5929,26255,80640,64713
+69408,40525,80666
+69409,64629,79951,73309
+69410,66559,27819
+69411,58680
+69412,36420,20086,8064,31071,33382
+69413,42592,18243
+69414,74357,78369,80836
+69415,37619,26813
+69416,21954,46853,33496,6169,69103,51004,54035
+69417,45871,26263,11233,790,35093,27058,134,3004,16202
+69418,5790
+69419,28419,15072,42106,17896
+69420,44742,41202
+69421,31915,59105
+69422,37633,28457,12170,17111,50937
+69423,18870
+69424,50807,3817,11875,3366,18287,58950,77264
+69425,15216,25858
+69426,30326,18993,32891
+69427,32374
+69428,40760,22155,61525,3659,79003
+69429,57979
+69430,30903,16392,35328,79728,41843
+69431,7939,16492,55424,15859,60702
+69432,49745,22618,33187
+69433,3905,9407,20136,74183,42633,82047
+69434,70336,32106,57862
+69435,10123,68442
+69436,64559,32478,39699,56531,29357
+69437,17492
+69438,43136,51824,77767
+69439,75122,3827
+69440,2473
+69441,56812,63172
+69442,7946,77537,61295,67526,66890
+69443,76781,22843
+69444,42424,9073
+69445,75579,25873,28985,18848,32981,44364,34364,17554
+69446,14140,50388,19553
+69447,63494,59547,22256
+69448,57801,78926,7615,81,3705,47344,60005
+69449,37919,24416,46355,36387,18296,68603
+69450,39439,82147
+69451,30918,15460,60400
+69452,12102,11347,28487,9567
+69453,75251,45219,56288,64427
+69454,55895,52800,12893,55882,60592,19135
+69455,25198,34491,53053,25183,17361,52955
+69456,64034
+69457,51955,50056,909,71027,77392,34052
+69458,76676,64796,18050,38160,16956,67074,3772
+69459,60396,10263
+69460,12362,64393,32968
+69461,60559,17306,77055
+69462,17562,30683
+69463,14661,11037,33711,53365,4301,35403
+69464,11287,38270,22421,15215,57908
+69465,56411,80899,33890,26469
+69466,76765,52631,2901,72152
+69467,32551,18339,36298,64224
+69468,34766,14388,72714,23518,76522
+69469,1213,14017,28090
+69470,11778,15870,81937,31504
+69471,32290,22491,29649,59995,25943,56697
+69472,25619,72156,24816,3511,58296,59145,702
+69473,81971,60869,21446,1918
+69474,80146,41395,64809,42236,17174,52127
+69475,9757,3306,50540,36280,27091,14653,35840
+69476,75277
+69477,3282,62193,59535,45939,71164,9644,14007,11436,40552,38113
+69478,2734
+69479,41688,59703,23832,52013,71839,78579
+69480,79966,24534,6574,32967,35321
+69481,25390
+69482,1881,57128
+69483,48799,50497
+69484,25766,79173
+69485,63705,24355,27560,72887
+69486,61577,59229
+69487,17341
+69488,32926
+69489,28838,24242,38230,4680
+69490,11720,78910,6302,71102
+69491,39445
+69492,73218,70501,39781,44672,2730,71103,12250,47651
+69493,64460
+69494,77319
+69495,32225,21616
+69496,27259,12143,12536
+69497,55739
+69498,60309
+69499,59126
+69500,76279,19224,21926,61311,11363
+69501,30712,40240
+69502,26296,70379,52505,18322,13523
+69503,54561,9308,2293,27298,8575,78737
+69504,3909,36390,19332
+69505,65973,67784,54847,78932,9579,46743,4133
+69506,18705,64916,66688,50479,39750
+69507,478,425,6081
+69508,63520,48699,26105
+69509,21451
+69510,30550
+69511,56646,42444
+69512,1763,7648,11777
+69513,4686,68207,68567,26774,22058
+69514,32406,79876
+69515,27469,44263,35929,80094
+69516,52687,1134,71205,18369,77284
+69517,14035,79686
+69518,35991,45846,4737,28013,13328
+69519,21677,22754,31083,79523
+69520,27713,50531,64654,43857
+69521,19679,58495,65869,23634,3356,20357,45164
+69522,25423,41678,48088,58007,34697
+69523,6645,59242,38890,40221,34978
+69524,23754,2314,15454,54875,53316,37869,72691
+69525,45851,81993
+69526,17806
+69527,64191,72446,21765,29683,53256
+69528,57647
+69529,16152,55785,10300,68246
+69530,73763
+69531,53149,82031,38251,75204,47597,17571,40275
+69532,19409
+69533,15232,67670,74567
+69534,71207,50266,55498
+69535,31583,49475,55192,20624,79315
+69536,22817,82184,72296,67190,19687
+69537,26183,52966
+69538,1176,61027,13618,61427,63674
+69539,66689,2523,22123,50425,5078,39376,62785
+69540,70960,50097
+69541,27690,1442,70145
+69542,49574,18737,6124
+69543,73356,30333,81467,29729,1197,76405,31918,6754
+69544,52319,76797,40870,67353,77370,28821
+69545,38634,53941,102,13237
+69546,20739,35913,74362,65545,29782,3033,53115,43147,60285,31020,42883,19661
+69547,65700,42324,65054,55076,3171
+69548,44669,39201,21287
+69549,66801,4360,60456,29017,74344,76025
+69550,54370,75061
+69551,81834,80819
+69552,81928,5125,46176,40183,56049,48147,61977
+69553,40333,55857,54600,16670
+69554,56126,26571,43903
+69555,40310,57991
+69556,2915,20183,12859,8257,75765,27944,2426,58813
+69557,27250,41750
+69558,64198,12989,69310,2725,62129
+69559,17963,11085,37628,44129,65039,41030
+69560,73163
+69561,13500,24331,64561,3112
+69562,53069
+69563,36674,72021,65261,53217
+69564,63528,72953
+69565,10931,24878
+69566,5714,20964,27454,1722,69553,23215,50201,74958
+69567,32875
+69568,7359,16951,77383,60140
+69569,37190
+69570,50363,54753,63410,1919
+69571,41082,56318,26068,79792,42590,79687
+69572,68767,78816
+69573,667,17780,18731,60038
+69574,48954
+69575,29442
+69576,34193,58280,64555,58919,43620,65135
+69577,18772
+69578,68619,46508,19374,55012
+69579,66116,44199
+69580,75852,62276
+69581,19091,78112,5372,59428,77106
+69582,77463,33910,53682,42992,73991
+69583,12162,36497
+69584,40699,57714,1450
+69585,32589
+69586,13009,53665,10440,50175,62881,5556
+69587,22188
+69588,69862,73921
+69589,725,75949
+69590,48071
+69591,64279,6196,80449,51096,3801,74503,19249
+69592,44364,40394,30643,59874
+69593,51216,61959,27316,76700,60777,28165
+69594,196
+69595,22813,78052,13156,55499,80123,62892,18976,28730,40367
+69596,70111
+69597,23084,27654
+69598,38074
+69599,48926,61600,21857,43256
+69600,44064,61525,67596,71418
+69601,76480,12441
+69602,43324,40886,23735,51675
+69603,54698,3662,48689,48852
+69604,4643,24391,75246
+69605,8494,59448,30289,28561,31421,32061,65018,35314,28992
+69606,39019,48840,45145,69538,70095,70163,78688
+69607,6241
+69608,50272,61558,60249
+69609,59046,36219,29307,41875,46012
+69610,65263,53207
+69611,44540
+69612,46397,75120,51910
+69613,41092,67260,66634,67534
+69614,19295,19019
+69615,4776,14053,8309,3468,9271,28053,38169
+69616,50580
+69617,11451
+69618,42881
+69619,29792,65964
+69620,55092,22028,53434,1531,18795,5380,6364
+69621,40280,68631
+69622,26720,45628
+69623,58400,7741,8024,43191,72866,43422,51385,18026,66804
+69624,10374,23904,24204,55264,71732
+69625,64503,33025,35723
+69626,19231
+69627,16228,11042
+69628,81021,71718,53517,39847,36169,63359
+69629,52285,14367,66860,53729,23775,30430
+69630,48133
+69631,14255,74234,35519,70304,61348,73331
+69632,7582,16310
+69633,54313,7564,50141
+69634,65602
+69635,3536,39211,2835,24563,39456
+69636,78209,4564,35466
+69637,3311,71721,2798
+69638,34252,24755,37406,72421,34394,27048
+69639,24815,57971,46013,2538
+69640,12385,72423,12007
+69641,42339,44921,75039
+69642,25674,43562,21858
+69643,20632
+69644,40672,43341,58308
+69645,56422
+69646,7640,12729,49877
+69647,56294
+69648,79388,60228,3369,24813
+69649,44804,17451
+69650,63496
+69651,80902,53698
+69652,64607,81086,77249,54092
+69653,5190,71418,63844,30865
+69654,38899,69498,30251
+69655,15764,25241
+69656,65657,46433,62061,7791,43929
+69657,33491,76191,16331
+69658,42797,62267,1083
+69659,64135,35500
+69660,34011
+69661,24905
+69662,54553,36719
+69663,4523,8672,19972,22701
+69664,44724,3822,60448,6358,57441
+69665,15395
+69666,69784,50462
+69667,56727,54013,18872,33658
+69668,9452,20614,32821,39141,16083,49712
+69669,13657,24019,27057,47767
+69670,61990,2529,5299
+69671,17193,53703,61904
+69672,6623
+69673,16778,8420,27781,20754
+69674,35355
+69675,73461
+69676,62729,47085,4084,23659
+69677,64212,22389,25265
+69678,67896
+69679,20205,33631,6837,62418,64687
+69680,66256,43041,53282,39669
+69681,65230,43662,33873,26686
+69682,38161,6266,10984
+69683,68927,64686
+69684,5844,8996
+69685,36731,56364,25700,28663
+69686,2766,14372,7585
+69687,13354,3766,61287,15229
+69688,40728,35197
+69689,36208
+69690,17057,62170,20954,22988,70711
+69691,72451,41319,43399
+69692,47947,13167,32906,78852,38255
+69693,40980,79842,39531,61217,70290,71777,7493
+69694,67884
+69695,46788
+69696,25980,31994,46868,76273
+69697,73731,33474,53434,40881
+69698,60481,46316,5262,8356,12388,42198,9882
+69699,41623,38467,57880
+69700,61905,62390,27067,6550,2765,9832,36584
+69701,44041,25605
+69702,77034,50212,74233,8126
+69703,19498,53591,81192
+69704,76369,52067
+69705,2369,26024
+69706,20333,13105,29435,12019,24981
+69707,70895,10863,2173,26777,30201
+69708,10913,31700,73917,56258,20984
+69709,16416,20287,14842,61963
+69710,40727,76140,507
+69711,67440,80754,81911,29003,36068
+69712,1121,28438,13798,10603,47033
+69713,40755
+69714,37803,53962,50665,69367
+69715,15759,43773
+69716,56344,17394,69797
+69717,75757,75630,62945,6979,23943,14815
+69718,38771
+69719,16939,60876,18272,18375,56262,44802,41197
+69720,47224
+69721,14748,76718,39431,51800,71773,18993
+69722,80398,9087,29542
+69723,19249,53799,73307,32449
+69724,49732,33466,17541
+69725,47244,50410,5201,37402,55039
+69726,10653,26121
+69727,58219
+69728,63719,29456
+69729,42891,68159
+69730,50123,59976
+69731,80892,50711,62311,18547
+69732,69750,65417,56947,73165
+69733,27540,17154,23504
+69734,14622,73974,47430
+69735,66660
+69736,16673,55234,20673,45309,27914
+69737,46659,28879,10558
+69738,79282
+69739,10054,26916,26508,2271
+69740,9396,56546,73357,16859,67493,10105,16050
+69741,18064,53824
+69742,31204,38221,6310,57160
+69743,58867,31061,19389
+69744,52959,61874,60346,50070,82165,14647
+69745,23560,29009,48246,39614
+69746,50576,51737,52245,17600
+69747,31498,59853,7984,66946
+69748,60107,19403,52410,2063,4900,35837,77709
+69749,31647,21980,80228
+69750,29777,59128
+69751,62403,3278,20028,51721,78714
+69752,53346,8839
+69753,57229,64131,14559
+69754,57364
+69755,23463,69829,31805
+69756,50610,62892
+69757,11703,6654,4329,61985
+69758,2711,78957,75535,31790,24195
+69759,24985,3269,42387,5617,3311,70739
+69760,50295,75186
+69761,67015,74715,43782
+69762,4349,28808,23876,28453
+69763,61264,67724,64243,18694
+69764,15211,71407,57362,79593
+69765,36090,16832,58513,24927,39052,17842
+69766,43852,45512,15373,71813,34305,60867
+69767,66874,75609,30865,78021
+69768,64658,58875,45102,71127,79065,43962
+69769,32288
+69770,57424,69379,21139,14928,68493,13339
+69771,74311
+69772,78788,34524
+69773,62422
+69774,34373
+69775,10919,40165,57513,37526
+69776,47432,67051,30467,26901,74780,20202,5397,60571,1172
+69777,60451,25643,9363
+69778,15364,63536,47958,36709,80711,57640
+69779,35118
+69780,40149,33729,58778,80531,74836,23737,76322
+69781,67982,71245,43060,77307,17302,62104,11646,76227,27646
+69782,26752,48697,69102,77384
+69783,4088,45454,53887,37155
+69784,54512
+69785,64733,21456,18869,12785,77540
+69786,36302,1724
+69787,21649,40017,13568
+69788,20692
+69789,32762,48694,17709,52069
+69790,25678,61841,68605,58293,7191
+69791,44038
+69792,65289,66115,57881,30677,64635,67341,59829
+69793,38284,7083,27533
+69794,14737
+69795,42333,30857,12967
+69796,3990
+69797,51664
+69798,68030
+69799,32179,45338,62892,81892
+69800,72021,6037,51241,8540
+69801,80649,11233,2786,6059,29784,14854,34257
+69802,26624,80726,45699,41100
+69803,72214,28,23659,22922
+69804,23614,17203,27505,10653,259
+69805,6049,70077
+69806,55945,52315,13320,17812,14205,44184
+69807,3243
+69808,66060,30956,77050,50367
+69809,62996,36832,48587
+69810,51998,37923,43333,46500,23288
+69811,60764,36204,42958,5050
+69812,37163,35452,49066,51912,38672
+69813,28230,17438,73210,46482
+69814,74134,4087,77280,52524,20480
+69815,77538,12226,69112,25774,13894
+69816,10397,81909
+69817,5484,47502
+69818,48275,50359,1467,14300,55793
+69819,78800,60225,75436,23750,5331
+69820,22043,3673,33659,63114,17339,65871
+69821,57089,6196,45419,27511
+69822,1820,18093,80392
+69823,39796,50554,54660,81392,39219
+69824,20026,31420
+69825,44072,66518,65204,25687,1833
+69826,48141,33635,74152,66833
+69827,75581
+69828,10272
+69829,54415
+69830,8839,18109,58862,16382,66992
+69831,12198,64706,60412
+69832,31271,14266,62344,81690
+69833,58408
+69834,13766,40796,33523,8296
+69835,63368,70705,64414,58803
+69836,66047
+69837,18070,61326
+69838,12831
+69839,16865
+69840,8360,70012
+69841,14730
+69842,18096,5662,54278,34182,79167,63274
+69843,22594,73571,10797
+69844,72661,46534,22478,51806,59643
+69845,7405,60704
+69846,34608,61718,71555,70041,20718
+69847,68791
+69848,42845,45693,53053,62477
+69849,82016,7165
+69850,58379,75029,1509,3381,76999
+69851,29456,77884,29280,16145,32651
+69852,48506,73189,1983,70558,23289
+69853,29097,71875,1791
+69854,1867,38866,75096,57700,1192,72390
+69855,67182,76106,21730,70792,13014,80120,27208,63300
+69856,45225,77036,70016,37282,7779,25553
+69857,13570
+69858,13966,39847,11673
+69859,2473,68130
+69860,72289
+69861,179,54838,30202,26786,54662,45402,11767
+69862,52282,30016
+69863,77680,29929,70127
+69864,77330,71003,4508
+69865,39558
+69866,36191
+69867,67236,40179,29032
+69868,58627
+69869,1807,6989,76384
+69870,68763,45060,67238,44363,22547
+69871,59953,2813,46175,46831
+69872,70750,59096,42275,44210,28406,46811,18392,64610,65517
+69873,77450,24045,9327,61136,6490,7747
+69874,64340,28063,11583,60234,62616,19425
+69875,28044,73269,76194,48362,10901,71006,45039,4883
+69876,45738,76989
+69877,9471,31324,1370,49181
+69878,53857
+69879,6528,81171
+69880,42955,64653,73331
+69881,49670,75912,46052,80721,80995,64130,41919,40348,16816,58312,12050,5571
+69882,56283,35443,81300
+69883,69145,73149
+69884,26139,44129
+69885,68549,18136,59028
+69886,31224,24397,73082,49157
+69887,19593
+69888,7993,932,43785,81216,55949
+69889,43187,69238,67592,8656
+69890,33749,5345,78578,36206
+69891,55689,80332,57294,37557
+69892,10621,25674,46129,10908,12438
+69893,36983,52730,49097,22830,15096
+69894,10010,39539,11865,15631,66488,64900,67501
+69895,1649,61366,69649
+69896,55214,20093
+69897,29102,10557,80644,40903
+69898,18323,24806,78402,80993,35177,62233,16599
+69899,41691,56707
+69900,65125,16518,17294,2276
+69901,34320,78184,45228,42145
+69902,81067,77686
+69903,18893,72042,18806,20987,18061,59610
+69904,51510,50156,31715,38524
+69905,13687,10795,17930,74907,70873,62233,6418
+69906,225
+69907,20948,4081,67247,47507,18069,3867,54939
+69908,24818,50081,75674
+69909,53586,54599,33288,17808
+69910,17494
+69911,48147,33469,70873,77256,29560,4977,61839,52124
+69912,32304,61674,66330,43495
+69913,40974,15233,33119
+69914,44192,69755
+69915,17920,57040,77544,22287
+69916,41355,4000,37356
+69917,30898,31244,47140,35095,13026,22884,44545,25921,53980
+69918,9350,13297,62265,34882,18128,42290,59884,44847,55421
+69919,5050
+69920,46117,37390,68749
+69921,38310,28416,30070
+69922,70724,41522,35076,47872,67067,16056,1412
+69923,6751,44637
+69924,3781
+69925,81779,35922,73182
+69926,54315
+69927,56783,43252,41863,60912
+69928,17547,59031
+69929,62593
+69930,72704,62379,61643,16549
+69931,71978,68227,37608,9186,77042,71300,29485,6708
+69932,5647,74774,20006,75032,58823,50381,32326,61348,6116
+69933,46780,47466
+69934,54964,15611,72363,53581,80128,25375,47099,74022
+69935,35053,57606
+69936,10657,74577,68670,81438,72208,58632,8684,1843
+69937,63734,18904,42361,36153
+69938,706,14034,61820,46736
+69939,54910,5444
+69940,37017,23014,80213,65099,50174,82092
+69941,53663,39981,66485
+69942,50871,15946
+69943,41117,28063
+69944,16355,78850,79697,34950
+69945,14184,54657,35175,38971
+69946,56755,82131,40384,4049
+69947,45243,16077,51504,3355
+69948,44193
+69949,7494,66717,25820,45173,23725
+69950,59616,18272
+69951,5352
+69952,64780
+69953,5683
+69954,19715,22419
+69955,11909
+69956,67091,4612,2271,75017
+69957,27464
+69958,19249,71142,41796,32091
+69959,72073,82027
+69960,26706
+69961,62077,32363,18130
+69962,12441,28203,54725,75484,58074
+69963,55718,70076,37845,50307,20439
+69964,62959
+69965,5057,17091
+69966,31064,46021,1452,51798,64717
+69967,73426,10763,14843
+69968,57089,53636
+69969,71147,68214,76479,13618,72988,8896
+69970,52417,16579
+69971,32711,42090
+69972,20797,79182,66075,28695,49413,79821
+69973,68794
+69974,13966,25107
+69975,32490,79215,22194
+69976,11564,58953,67193,35514,23371,15812,41602,19452
+69977,178,60834,33690
+69978,42288
+69979,20203
+69980,62533,43756
+69981,54020,33472,65995,14468,43366,60785
+69982,76628,63296
+69983,27278,38316,39682,67407
+69984,18017,11481,78065,62417,53009,57358,63703
+69985,48919,63459,8767,26296,24039
+69986,28208,78642,55323,13032,27087,6036,49377
+69987,28577,45094,35357,36049,437,25628,40200,82059,18764
+69988,26092,28928,18647,27858
+69989,3525,45078,44158,45870,66717,13817
+69990,81,30926,662,40187,3875
+69991,4141,18689,52309,67367,52368,62562
+69992,82180,67211,9859,24870,70348,68147
+69993,1645
+69994,72480,1859
+69995,6491
+69996,59344,12185,13008,68757
+69997,23364,51668,34954,4247
+69998,6026,54927,31202
+69999,74330
+70000,43814,48490,79085,41426,35389,1212,80704,35802
+70001,19852,52343,26048,57254,21171,37478,29465,29684
+70002,62776,74033,29652,64421,20722,56338
+70003,3379
+70004,4811,54704,43332,63778,16852
+70005,63418,46169
+70006,22556,58881,53921
+70007,58062,12608,42561,47694,1674,33962
+70008,61352,24339
+70009,46335,80492,1629
+70010,71607,58632,34443
+70011,46092,35137
+70012,53789
+70013,51204
+70014,15370,79441,44678
+70015,68324,54674
+70016,12615,76248
+70017,74478,43301,25381,2107,40430,40187,76826
+70018,12935,34635,42252,29409,63513
+70019,28264,51694,28693,25986,27708,19674,71720,48261
+70020,37538,24103,2809
+70021,3793,62143,69688,74480,27931
+70022,36571,25128,8262,22930
+70023,10640,12169,43012
+70024,70077,54963,65281
+70025,49929,75159,3120,38913
+70026,55682,73143
+70027,70823,3383,39757,43694
+70028,24875,59356,5628
+70029,20454
+70030,12550,66042,65110,2394
+70031,12431
+70032,21344
+70033,30497,57529
+70034,21637,77046,58308,1833
+70035,25894,72624,48770
+70036,49386,74756,44706
+70037,38376,68268,80250,1636,14325,75297
+70038,20764,26980,9698
+70039,59912,25287,16596
+70040,67634,14903,76859,4396,79050,33359,31432
+70041,33013
+70042,18064,18626,48817,32003,53845
+70043,40919,13967
+70044,60934,36500,7247,74116,64806,18935,10429
+70045,36591,3112,61676,14430,54037,46727,50429,65634
+70046,63320,28684,35260
+70047,955,80083
+70048,17864,22625,63698
+70049,37678,35857,5458,50750
+70050,76355,37149
+70051,44804,10486
+70052,67381,24009,73897,13679,61266,4093,18186,66016,74873,8536
+70053,57394,15902,40468
+70054,35212,18150
+70055,10123,29981
+70056,12403,26059,78428,35528,63114,25300,33381,43516,31190
+70057,76140,13086
+70058,27948,4407,64183,40636,68871
+70059,45690,24508,50911,51437,64680,29688,52122
+70060,32430,15493,78362,66088
+70061,9671
+70062,43595,38908,75010,28039,67313,29641,39642
+70063,61857
+70064,60698
+70065,13800,33118,69959,55850,65274,960
+70066,78027,32963
+70067,34374,56475,78037
+70068,24452,66837,74894
+70069,7168,72374,29199,18925,81771,6683,60563,75048
+70070,21408,6424
+70071,80536,63434,13684,75723,13100,4850,2097,43769,54101,52442
+70072,26181,44130,81344,41491,62616
+70073,60140,12505,48301,30741
+70074,67796,55167,56930,446,45512,72730,63161,70547
+70075,23798,2283,52222,25424
+70076,67614,1894,35908,70398
+70077,9506
+70078,22961,56760,79088
+70079,71442,64559
+70080,62926,53268
+70081,5266
+70082,8463,59714,11979,59654,16694
+70083,43281,60182,20082,53402,48562
+70084,20178,76140
+70085,39947,15454,71593
+70086,18200,2876,14048,40188,24246,3055,68391
+70087,77252,21424,49368,15941,16877,32432
+70088,41723,40393
+70089,10186
+70090,31179,36059,25830,3200,33436,52914,64868
+70091,2979
+70092,51208
+70093,21514,6028,224,44518,80883
+70094,61868,80305,4947,41179
+70095,40670,32014,46217
+70096,19176
+70097,44863,16613,38664,44161
+70098,26958,48262,22268
+70099,51063
+70100,24021,68147,25154,32346,32325,65510,69280
+70101,27635,20693,53790
+70102,12363,52782,35099,36310,17099
+70103,15395,2463,25273,41916
+70104,77799,54691
+70105,18786,32031,4642,59358,4836,44527,72813,2468,69866,74921,29783,79013
+70106,68974
+70107,32015,408,61739,74811,75208
+70108,68279,34322,18305
+70109,1663,2477,26385,26875,65241
+70110,9419,73743,80864,52794
+70111,21624
+70112,34440,48429
+70113,26917,43995,13088,33773,31018,43999
+70114,23515,72692
+70115,1628,56484,3174,77770,37048,50711
+70116,66332
+70117,17763,26081,10986
+70118,67975,63042,7629,28608,7996
+70119,39792,66568,54415,51648,19249,41733,65594,44476
+70120,79886,29667,35211,37879,26261,42389,74756
+70121,24762,9369,39865,79252,64152
+70122,33225,50855,77784
+70123,80999,46721,31398
+70124,60682,71329,67533,72260,45281,50288
+70125,48268,79539,64473,31955,5127,46131
+70126,1751,5731,38517,19244
+70127,31852,74183
+70128,71774,28208,27253,54821,52004,359,53934,54942,54078
+70129,30214,28077,61402,34133,30638,69929,54783
+70130,74991
+70131,6801,1385,67691
+70132,5663
+70133,63378,59377,5016,29307
+70134,71444,11817,44188
+70135,22352,61422,29318,53428,34871
+70136,54078,34360,37348,37504,24195
+70137,54829,11714
+70138,24355
+70139,42032,73792,11437,57849,40456
+70140,47721,19717,7802,25637,22532,4143,35384,19056
+70141,80167,61788,62156,41133,26682
+70142,36622,28257,29064,64131,14175,1831,18851,60140,21706,64650,38908
+70143,53957,78197,55222,36749
+70144,73124,25268,81609,22837,8838
+70145,5855,20731
+70146,43115
+70147,50709,11709,52756
+70148,76895,47485,37307,17044,47727
+70149,39379,20656
+70150,48563
+70151,9321,38144
+70152,2294,80647,50487,47511,28344,49515
+70153,23328,62683,45631,41495,9742,1797,42532
+70154,48593,57700,54898,852,29238,57583,61664
+70155,10719,42675,37107,6680,80144
+70156,46848,50909
+70157,23075,44486,20085,60181
+70158,46079
+70159,46603,13605
+70160,24652,78882,31717,9898
+70161,1820,40985,57463,7900
+70162,81687,16088
+70163,69456
+70164,68874,54631,56824,76697,47466
+70165,20941,44288
+70166,38258,31747,45681,49576,32916,80256
+70167,50318,7257,52357,28108,51226,423,41724
+70168,60113,68506,38083,67907,19222,2185,72885
+70169,44226,48137,33923,1112,1804,30352,44859,72309,22128
+70170,32559
+70171,3222,59668,479,54116,53474,62523
+70172,30986,26926,12523
+70173,16074,51406,75199,51426,10454,79423
+70174,66517
+70175,67518,66822
+70176,31732
+70177,60965,18397,60677,78336,14759,52387
+70178,56279,27215
+70179,34082,64702,5443,66264,39610,11858,7190,34219
+70180,74991
+70181,78452,33690,54817,80338,27915
+70182,63770,20388
+70183,3626
+70184,28711,12050
+70185,2679,53837,65272,71720,16818
+70186,23980
+70187,68776,17698,79951,32585,46119
+70188,19696,31953,43093,78596,63288,1081,53493
+70189,38190,36735,26016
+70190,37238,76592
+70191,72996
+70192,6062,53019,49307,48537,57761,10682
+70193,10922
+70194,44082,17458,68653,29053
+70195,49877,52202,56693
+70196,43117,48764,13801,55523
+70197,73142,34356,70707,31463,46118,19799
+70198,25732,36768,71902,52289
+70199,25385,76708,779,42659
+70200,39862,37975
+70201,48161,40914,64314,41233,46182,6234,39689,37455
+70202,55837,33597,32883,75879,38723
+70203,61912
+70204,5057,65021,58157,40788,64402
+70205,7338,68261,3512,68320,43870
+70206,18773,41976,71977
+70207,46275,60290,57522
+70208,62630,867
+70209,56524,65934,51888,39295
+70210,1986
+70211,7575,41080,70065,44630,31521,33719,61589,56367,1365
+70212,11354
+70213,46813,32118,69199
+70214,10447,35269,31226
+70215,72429,60860
+70216,1995,55675,54503,73319
+70217,3178,70767,62745,33086
+70218,28217,36751
+70219,4178,78900
+70220,21090,4005,35637,8408,5633,52185
+70221,27450,38450,57544,67046
+70222,45125,1385,77106
+70223,55786,77548,23877,47882
+70224,7231,68692
+70225,70944,65040
+70226,34060,81862,34482,17316,38108,55875
+70227,75274,57413,17361
+70228,621
+70229,30122,68460,18360
+70230,28480,2229,62517,5691,42078,19079,23925
+70231,55630,82186
+70232,33947,76926
+70233,57224,37043,75169,71898,47882
+70234,37047,31793,49024,6928
+70235,67610,12408,37086,73892,79339,47399
+70236,70903,51290,62406,46353,51882,81637,12741,21149
+70237,14511,57408
+70238,20364
+70239,69249,81516,72622
+70240,58901,78969,40650,18387,45
+70241,66951,26140,48567,10776
+70242,21417
+70243,50844,1164
+70244,3192,70885,77138,40364
+70245,28696
+70246,75159,28150,19700,25296,44890,35130
+70247,14485
+70248,27662,16451
+70249,32344,6337,12847,2524
+70250,39619,77015,34168,73906
+70251,48513,15351,15844,41247
+70252,67242,24610,37458,17929,17644,66260,25056
+70253,1206
+70254,16550,81583,65675,75477
+70255,81272,74666,2738,75778,64856
+70256,3137,7725,45
+70257,71921,32730,24220
+70258,73678,74625,62275,29540,45616
+70259,71781,75465,61093,71181,56463
+70260,21569,13618,15438,74413,25306,72145,50910,21925
+70261,39920,28456,64952,31545
+70262,59681,30780
+70263,37825,3622,38957
+70264,35533,4573,76600,3954
+70265,37605
+70266,48741,47132,51223,49659,8599
+70267,4936,48252
+70268,68920,1684,61560
+70269,26647,26049,8268,69306,2076
+70270,72347,77307,20144,12776,41496,39771,30968
+70271,64071,37702
+70272,48878,7075,46566,81800,79857
+70273,11328,75104,42182,19519
+70274,21588
+70275,49238,20697,3137,32250,30057,82177,69378,63799,44219
+70276,348,52929
+70277,32788,6524
+70278,74689,17916,14946,72843
+70279,54323,59113,75528,29012,15533,43407,17257
+70280,55581
+70281,42926,19959,73125,68538,79767,29202,65514
+70282,16394,49808,24677,31059,30574
+70283,10060
+70284,36851,66265,17467
+70285,44007,81060
+70286,48223,57905,70423,75712,17714,21931
+70287,31202,68968,79499,70864,62964
+70288,1317
+70289,45202,56093,45035,24640,15544
+70290,74369,16452,6224,2168
+70291,5794,80833,64198,30932
+70292,2979,60017,21743,6408,70214,21213
+70293,41322,60361,60703,78417,31902
+70294,39797,3398,23536,49526
+70295,79593,24128
+70296,15410,283,9593,41910,48934,22693,73131,59615
+70297,26532,39800,51848
+70298,56952,49738,32516,7922,40814
+70299,79966,16527,30775,43355
+70300,40395,8940,34501,80011,61518
+70301,35581,55570,36813,28711,48119,32657,26402
+70302,64590,60423,47066
+70303,15468,2134,196
+70304,77430,30837
+70305,60862,9689,80543,520,59414
+70306,50959
+70307,75300,81560,895,43046
+70308,50102,49921,28521,65588,79122,81606,6103
+70309,65298
+70310,1612,69857
+70311,9640
+70312,18990,3726,21383
+70313,18688,28766
+70314,71111,58166,894,66085,8043
+70315,67092,41634,38386
+70316,64817,30792
+70317,72729,15397,16733,20773,71992,6869
+70318,63561,71930,51182
+70319,43551,36529,47767,57783
+70320,22114,9778,41098,8934
+70321,64138,81232,7258,17,24285,57980,74969
+70322,48452,20911,13291,43934,1374
+70323,29506,21011,76960,20321,24472,57204,30189,15453,70526,49550,20423
+70324,13802,57855,23182,57087,65539,1520
+70325,18688,54739,77585,26652
+70326,50187,74262,20735,55056,16228
+70327,13530
+70328,34807,56807,16032,3410,44403,28419
+70329,39828,33478,15557,81572,81671,54604
+70330,1684
+70331,940,22102,77504
+70332,33059,23846,72861
+70333,41570
+70334,12055,13514
+70335,20803,2593,39569,26278,8752,101
+70336,11773,67589
+70337,19946,5256,41779,47466
+70338,2527
+70339,14603,69490,5497,52657,30648,6381
+70340,24542,10689,6642,64474,47046,79586,81814
+70341,23873,20799,61113,77024
+70342,77729,22123,36998
+70343,37961
+70344,64059,27737,59620,43372,14560,21026,58811,39824,25712,32730
+70345,50578,11410,41475,73884,65752,39971,78311
+70346,71005
+70347,60402
+70348,13523
+70349,73826,80456,139,25239,76348,58073,71071
+70350,3733
+70351,45486
+70352,7540,15660,3073,16396
+70353,80851,20857,25772,72614
+70354,44725,43444,58802,27645
+70355,29293
+70356,19398,39417
+70357,42229,65921,30353
+70358,35750,68659,4140,71411,50225,57756,81433,61593,72690
+70359,44281,7543,422,59615,31394
+70360,65675,1687,34732,24996,29449,70784
+70361,61577,71848,17094
+70362,34749,33129,82049,70861,25892,61608,16653,45312
+70363,7658,79599,44620,65465,11979,8692
+70364,69345,5363,7959
+70365,63916,72820,77952
+70366,21194,63229,68413
+70367,41947,55408,68745
+70368,37307,9699,67392,806
+70369,77600,48500
+70370,39374,70027
+70371,62029,18262,40908
+70372,28303,50798,43686,7496,22958,29265,30116,65208
+70373,42619,34007,49100,48865
+70374,68027,78234,78250,1892,55047
+70375,25762,71871,33412,25008,61579,44972
+70376,7894,36477
+70377,81070
+70378,48652,43030,46986,70591,71661
+70379,81473
+70380,185,40058,14104,4110,65033,2288,18857
+70381,11210,26916,77379
+70382,8165,4756,4547,20488,40900,8264
+70383,43044
+70384,67969,28152,53561,44330,61884,6910,40987,54683,48343
+70385,38311,69274
+70386,27227,54937,50045,8135,43424
+70387,36642,40313,61768,63323
+70388,53812,51664,67255,64763,50376
+70389,22572,2683,57238,16914,18713
+70390,47952,73319,63125
+70391,46397,70990
+70392,32635,24337,55944,19232
+70393,62300,80379
+70394,54482,19004,8167,39516,4616
+70395,57910,19346,75159
+70396,75471
+70397,2134
+70398,25104,52729
+70399,39363,41553,604
+70400,9669,21670,39879,69682
+70401,35316
+70402,48954,12930
+70403,69071,29562,11722,71675,65826,57923,40695,4919,40478,50664
+70404,27392,45579,3132
+70405,55837,24117,43387,68021
+70406,69398,15050,2376,22465,36204,57123,20749,20923,11150
+70407,57777,57616,17164
+70408,14230,40952,15848
+70409,62805,48863,27956
+70410,48569,52128,66250
+70411,5087,31652,50642
+70412,18772,41762
+70413,6728
+70414,28316,28610,70945
+70415,3936,27520,8002
+70416,29610,15758,56266
+70417,49140,30313,42382
+70418,75836
+70419,15122,69956,14327
+70420,6342,34339,37483
+70421,65286,40879,61484
+70422,76542
+70423,29987,73240,245
+70424,18119,45779,17669
+70425,45952,34735,77414,43956
+70426,29797,4072
+70427,80458,43335,15734,52831,34329,783
+70428,27698
+70429,14584,69755,59281,16093,20286,23874,2916
+70430,72651,32938,63064,82,45346,14571
+70431,75984,21545
+70432,263,36696,58093,71353,6716,67571,23167,36832
+70433,21624,12580,67824,55166
+70434,1688,53362,24818,73302,73740,53338,75169
+70435,19169,13504,31008
+70436,8343
+70437,78509
+70438,27802,14565,76765,39499,59393
+70439,66016,9293,57076,51146,46012
+70440,40769,3611,39420,79331,58791,55756,25681,24421
+70441,77190,31432
+70442,5377,25499
+70443,27090
+70444,35554,55701
+70445,42435
+70446,16546,38450,18148
+70447,18235,1814,35944,5493,57429
+70448,81629,19555,53877,24383,38863,20059
+70449,56566
+70450,51233,11178,41642,55417
+70451,72830,39329
+70452,11775,41997,70533,77917,1754
+70453,49244,15641,48514
+70454,41552,57116,23048,24137,5415,73073,60269,75421
+70455,36519,54351,75869,48182
+70456,20885,54518,70272,47987,24822,41889,38712
+70457,36847,41813
+70458,59235
+70459,6234
+70460,75899,54236,1488,45407,17249
+70461,11534,49206,32427,68734
+70462,62932,29239,28877,79632,35860,54898
+70463,7064,23170,45073
+70464,36731,30291
+70465,79152,58827,68938,52438,41039
+70466,27339,80123,30828,82069
+70467,63086,39327,11577,81282,59178,18277,56140
+70468,20734,46139,13931,78183,20429,62166
+70469,40881,2383,6709,71511
+70470,47987,56880,65569
+70471,45695,81617,25888
+70472,48357,46372
+70473,92,52740,19759,63748,14003
+70474,76129,29775,44567,8997,20705,1137,11979,52422
+70475,40646,9642
+70476,44086,47375
+70477,4975,33749,68978
+70478,72829,61592,54236,65907,5526,39564,58542
+70479,61170,17468,31926,46009,19414,61633,78109,55691
+70480,78156
+70481,81410,3478,53545,3813,40217
+70482,19523,40952,10859,59881,28512,8458
+70483,22773,12169
+70484,37827,31601,75689,13590,58121,60349,50048,6722
+70485,14686,65470,10872
+70486,31545,17975,72897,31203,74756,36069,12085,22927
+70487,47186,16856,48564
+70488,72667,31288,60241,51588,27637
+70489,49409,23634,75332,5357,52613,65692,47051,9277
+70490,37729,42089,27234,18384,3227,46615,10922
+70491,75759,74339,73135,74505,80349,46958,72580
+70492,2323,71217
+70493,25143,42914,78257
+70494,33747
+70495,58460,49383,23360
+70496,77167,72448,3919,60491,76247,2684,58223,61317,11779,61045,81170,66794
+70497,49651,22994,39578,5352,30465,58625
+70498,67027,75019,57202,69807,52072,46293
+70499,40225,18857,28641
+70500,62745,30279,78197,73140,12436
+70501,28395,22410,74762
+70502,31475,74419,57181
+70503,15176,74446,32343,59543
+70504,59843,37538,54394
+70505,16439
+70506,28265,62514,53663
+70507,80541,34644
+70508,43664,45739,43448,76006,45991,60214
+70509,71271
+70510,15032
+70511,370,29017,20553,30741
+70512,78763,20125,11275,55003,66804,31540
+70513,66824,82136,10373
+70514,37065,39913,37303
+70515,13697,80971
+70516,73638
+70517,48730,26485,13341,78701,29587,68206,61505,42729
+70518,49660,63894,46434,51675,8707,52662,44807
+70519,23179,2022,74852,10028
+70520,19954,74355,39458,78806,5642
+70521,78619,17346,64094,16163
+70522,72738,49137,68902,39803,71498,56050,65489,3466,15736,23922,31889,48721,39449
+70523,12209,30907,31854,71703,12107
+70524,70555,56015,64781,18350,63069,42394,57978,20700
+70525,19365,9808,51264,23285,728,40637,26803
+70526,20404,42870,6449,68697
+70527,26236,45291,40243
+70528,58650
+70529,8873,34139,17676
+70530,75661,24223,61367
+70531,24101,47875,71179
+70532,81909
+70533,40165,31518,69353,46229,39106,60418
+70534,19139
+70535,24214,41978,38909,43592,20755
+70536,53480,47349,65687,10714
+70537,28985,38129,66704
+70538,69562,10390
+70539,68074
+70540,45518,63326
+70541,13016,13910
+70542,25308,33365,5996,23197,37731,37634
+70543,67580
+70544,32182
+70545,58686,80145,47938,12911,56722
+70546,74022,80172
+70547,44906
+70548,41594,7155,39160,28370,35162,29959
+70549,33255,7388,20972,36894,70104,48601
+70550,68378
+70551,14836,80471,69042
+70552,73529,4184,14873,79552
+70553,73611,67655,75209,80623,36685
+70554,81733,60402
+70555,38411,45797,42280
+70556,70032
+70557,72239,44539,23566
+70558,13664,60721,12678,15653
+70559,34438,80440,33381
+70560,4067,65775,73624,46843
+70561,26926,46946
+70562,47281,16747,90,18218,5963,21550
+70563,23504,48713,72018,34584,31711
+70564,78615,3917
+70565,33288
+70566,1686,28948,40163,64637
+70567,24740
+70568,41909,35237,22077,15454,56584,25726,76385,61770
+70569,51821,30469,52466,14772,31654,57989,13285,75721,53229
+70570,14490,72727,4513,64211
+70571,76559,44076,3383
+70572,44274,13284,44408,23141,44617
+70573,58153,63103,76869,81820,39366,35483,41215
+70574,47280,15626,24556,19997
+70575,1596,6062,24509,41440,19149
+70576,62214,47620,5226,67824,43811,63461
+70577,65979,11276,23519,42041,37302,49955,82045
+70578,32081,32671,16733,52065,67967,4407,62005,81567
+70579,22482,76047,36937
+70580,32314,51800
+70581,77814,9755,53382,33369,43977
+70582,41432,45185,68482,81459,330
+70583,37377,78027
+70584,7183,34413
+70585,34952,30523
+70586,68585,20810,24051,15196,49870,19346
+70587,15949,66839,70411,77139,41651,12406
+70588,45192,11681,7273,5031,70756,3946,36071
+70589,48622,55061
+70590,73269,21263,25120
+70591,21130,24354,755,34868,15870,28195,32594,80924,34894,74382,13539
+70592,18080,11060,68218,54620,36334,21450,27958
+70593,59208,69621,66237,18179,23686
+70594,45839
+70595,11002,15562,69478,69886,31665,68568,24137
+70596,46649,53151,64708
+70597,26375,3374,26257,7851
+70598,70519,20344,31483,13544,78023,42692,37028
+70599,46030,55699
+70600,10226,56174,11572
+70601,78933,2367,39077
+70602,47429,73694
+70603,32589,20496,50781,36464,74282
+70604,47083,16999,30619,77689,37434
+70605,8296,4015
+70606,22519,41282,25472,14136,53781,23298
+70607,36439,31418
+70608,45142,57899
+70609,64659,8036,30596,29349,55592,23169
+70610,69267,59124
+70611,35053
+70612,18163,16132,21636,69608
+70613,9738,52795
+70614,49284
+70615,41886,72527
+70616,67814,5176,74330
+70617,59700,3840,81329,79635,25825,5452,33741
+70618,31970,72850
+70619,54226,48587,66958,38984,71223,29781
+70620,69185,58116,41729,33937,10313,49133
+70621,5754,53541,59147,3262,69583,7139
+70622,5407,38995,33468,9507
+70623,78942
+70624,67563,25966,80984,82069
+70625,23399
+70626,68669
+70627,7130,47179
+70628,54732,79002,44346,2611,22688
+70629,74255,18892
+70630,32122,22390
+70631,52866,40291,54542,2473,22656,21921
+70632,12435,32221
+70633,14444,23716,65173,44895,28155,16646,57406
+70634,13822,60015,33583,79963,11764
+70635,13091,53077,5742,66621
+70636,50256,32216,66629,77770,3383
+70637,80330,77445
+70638,18208,66480,9782,35703
+70639,55281
+70640,35978,61798,37373
+70641,26487,21843
+70642,76168
+70643,7425,54118
+70644,65319,48526,5957,76809,70700
+70645,80598,81229,64460,79138
+70646,68463,58501,7209
+70647,80353,50954,10522,26610,61413,41441,48160
+70648,920,29716
+70649,46139,21816,76319,56307,52945
+70650,35475
+70651,35819,33434,54048
+70652,32962,45487
+70653,39742,4252,54909
+70654,60932
+70655,41530,76393,11422,1337,32061,38335
+70656,24399,41727,45812,48498,47935,78399
+70657,27315,9593,66155,18279,68310,31399
+70658,73047,25762,36988,80732,9739,78691
+70659,44257,52535,79494,74056,23480
+70660,57083,18528,39829,66775,14760
+70661,54890,70086,48973,62403,57115
+70662,33079,43734,78236
+70663,70940,31157,68824,57724,80627,9724,37287,54032,16721
+70664,45970,6719
+70665,39128,14965,66817,2683
+70666,7737,67878
+70667,25319
+70668,7657,66420,43268,42903
+70669,55016,4218,27324,53896,75930,48255,37077,4392,56099
+70670,62214,73742,50626
+70671,55083,66008,27295,79780
+70672,21525,8072,43763,28379,52309
+70673,47960,14287,23046,33649,60883,55265,3629
+70674,76319,50108,35687,22807,12429,16008,23743
+70675,20227,68310,62648,46449,28547,23749,58102
+70676,65604,58928,34269,41243,20527,55332
+70677,20889
+70678,39133,18914
+70679,17234,42523,4377,31636
+70680,70245,33743
+70681,45131
+70682,60532,10475,57383,76487,62663,80618
+70683,8246,9210,35256,48224,61422,64722
+70684,66217,48490,36365
+70685,10723,64433,64957
+70686,51614,2061
+70687,19622,58704,54130,68124,8136
+70688,20113,10334,58465,43259,57408,60349
+70689,30777,44319
+70690,66045,5416,73421
+70691,65754,1483,36084,29810,42403
+70692,66032,35416,42260
+70693,1884,43260,9907,45846,51890
+70694,4773,77935,16735,31504
+70695,33301,15639,50913
+70696,10299
+70697,38994,80381,4360,58446,39640,62800
+70698,52955
+70699,60674,56847,16419,70777,22086,81663,7883,70940
+70700,4567,14044
+70701,31534,24011,76384,70571,39247,19246,43061,58434,59582
+70702,1427,75562,65497
+70703,23077
+70704,63684
+70705,56701,20036
+70706,28059
+70707,65003,73092,66536,71933
+70708,56340,75259,30549,38022,10469,40936,39187,73252,20984
+70709,59126,54184,24718,1277
+70710,61577,52714,47365,34036
+70711,39013,44433,1178
+70712,18413,11866
+70713,8451,1307,53019,16088,80538,22728,73495,38050
+70714,45005,36812,31604
+70715,52180,62762,27785,74102,56808,13612,6243,81844
+70716,46500,33712,53600,24655,31024,31016,47682
+70717,13539,8864,7034,14916,33452,661,41657
+70718,2164,41480,26955
+70719,60536,2164,12877,79916,15890,18398
+70720,68964,77196,36347
+70721,810,56338,33926,65966,53976,15580,68788
+70722,23126,39235,57872
+70723,61755,65582,23243,66551,60599,35534,81296
+70724,40128,46368,22297,79799
+70725,396,61272,19017,77593,24217,67345
+70726,21194,73691,42638,72248
+70727,23702,16699,16173,72584
+70728,33140,38840,33278,26026,47770,18075
+70729,58719
+70730,37045
+70731,12616,72003,24166,48851,60528
+70732,52511
+70733,51063,28231,36461,61458,81551,48036,68974
+70734,66295,72133,80852,55467
+70735,43702,6090,59295
+70736,26644,454,14851,12859
+70737,81596,12072,43444,70806
+70738,33470,81024,68264,39519,61332,54366,44124,65272,64778,75937,44088,16623
+70739,52714
+70740,20404,21463,2973,51960,29168
+70741,9659,29444,1925,30038
+70742,17188
+70743,43934,54352,47535
+70744,4678,24100
+70745,24959,36128,67847,10049
+70746,71826,69398,27179,12137,2473,56248
+70747,5781,23340,36733,62181
+70748,76827,54631,65794,40530
+70749,10282,63984,49515,34463,26618
+70750,71714,21906,51440
+70751,61701,42128,53220,27217,25526,46370,80736,62428,75755
+70752,66635,37199,44653,44259
+70753,20265,51336,6658,49253,70879
+70754,32622
+70755,60167
+70756,22998,77469,17967
+70757,76211,9754,2169,54359,11303,6846,15831,23823
+70758,46218,25662,23234,78986
+70759,40375,11477,62775
+70760,10000,70156,49747
+70761,81395,41303,1676,21551,51003,18344
+70762,44195,55802,65680,67622,13312
+70763,55076,62316,36498
+70764,52223,30255,56806,41257,21914,37617,36067,68273
+70765,41556,37154,65554
+70766,29075,23662,52113,77687,74667
+70767,17172,43719,24569
+70768,23219,54613,7494,53536,55410,14986
+70769,18535,9201,35263
+70770,11032,26081
+70771,69456,11145,77050,77785
+70772,71357,80945,47084
+70773,49400,76028,2955
+70774,49561,49857,50536
+70775,55220,76323,66240,12046,28548,56045
+70776,69240,12546,33278,66217
+70777,14694,32120
+70778,65153,42538,3530
+70779,9215,20170,64443,26868
+70780,66350,71256,68697
+70781,52004,7760,53098,57908,30731,59364,67897
+70782,4094,18827,27517
+70783,51861
+70784,5562
+70785,53455,50432,67989,74497,26538,57272,39355,56446
+70786,62277,47064,22071,35431,2296,4900,25982
+70787,68820,16587,78305,72332,30424
+70788,50956,70458,1599
+70789,51133,28409,56146,52629
+70790,81346
+70791,74259
+70792,25838,78233,62935
+70793,1496,3200,70115
+70794,3551,81299,18842,59263,33137,69338
+70795,34110,38789,1459
+70796,12712
+70797,64850
+70798,43250,9511,61448
+70799,71234
+70800,48369,12393,3217,58298,48448,37207,5266,287
+70801,60703,45018,45209,16478
+70802,6268,28318,47693,37969,79293,13652,26424,78121,65134
+70803,79478,53442,50746
+70804,46246,25913,69504
+70805,65274
+70806,17569,41174,80923,46344
+70807,7871
+70808,37475,16134,57606,45589,10295,17613,25832
+70809,81772,9358,32472,20758,29738,56044,70101,66768,1957,30143
+70810,20931,47895
+70811,33134,76131
+70812,44919,42195,66861,29679,44755,56952,78833,29739,2474,5798,53805
+70813,24094,76175,74072,10557,16974
+70814,22110,35651,64665,20861
+70815,5373,81978,38846,80463,19146,80277,43912,50883
+70816,43044,3200,3316
+70817,10579
+70818,63897,71243,63133,52260
+70819,39147,22613,48347,43581,31468
+70820,47065,78987,66970
+70821,17410,19492
+70822,5429,52126
+70823,76708,40303
+70824,9761,27509,65634,67304,9951
+70825,73806,47024,25845,29208,16862,27012,24756,64312,38863
+70826,81346
+70827,56337,56865,31594
+70828,23943,60239,15462,79678
+70829,17411,61907,58881,56963,63486
+70830,58619,10623,25386,73342
+70831,44124,38347,49737,42205
+70832,1738,67986,22888
+70833,45802
+70834,20734,39927,75000,11751,11790,51208,40005,14210
+70835,3330,73358
+70836,46207,47592,61093,47179,1401,63441,43558
+70837,6460,1119
+70838,20941,1797,75191,73167,24107
+70839,72104,2482,67217,77280
+70840,26089,57791,9341,63487
+70841,60368,4205,8504,74797
+70842,3813,7836
+70843,2948,79311,57086,25486,36439,4055
+70844,80670,78658,50459,20126,60899
+70845,9872
+70846,46983,76909,19629,68922
+70847,27440,79388,67262,2914,67710,2043,39919,78611,59852
+70848,25791,10889,64604
+70849,78401,71024
+70850,61628,21865,12226,42106,19167,79539
+70851,30934
+70852,36552
+70853,37970
+70854,30423
+70855,43108,9991,1524
+70856,61576,28605
+70857,63508,9558,46489,15599
+70858,12069,17013
+70859,43061,79306,63206,41664
+70860,44680
+70861,8253,24630,35747,64338,27570,29976
+70862,3805,44144,9982,82130
+70863,67860,61398,65724,11092,6197,32958
+70864,31532,11834,51568,21446
+70865,65151,4710,50451,46992
+70866,29660,55976,75302,57798
+70867,58281
+70868,74330
+70869,52849,24215,38734,27480
+70870,15237,42769,77628,51035
+70871,8284,25306,6485,54204,46795
+70872,81479,23026,61575
+70873,60920,3369,81684,46848,48943,49798,41610,50181,37339
+70874,55832,2319,45437,73204,71552,30213
+70875,35502,28609,19479
+70876,25428,13169,30719,74778,24856,53332
+70877,8398
+70878,41046,33123
+70879,24071,36967,13924,23842,49757,18329
+70880,19245,25191
+70881,78484,56297,26247,64831
+70882,2493,62034,21292,52987
+70883,32208,62495
+70884,31481
+70885,69677,58842,61787,58385,8729,47069
+70886,35704,58014,21400,53908,23454,62195,54328
+70887,23974,49693,36263,13229
+70888,8661
+70889,3141
+70890,37800,52401,21113
+70891,6330,42637,26978,76891,30237
+70892,33220,8378
+70893,35857,25109
+70894,9309,82072,74642,55499,47582,72728,46761,3576,31469
+70895,73682
+70896,51579
+70897,72681,47064,64882
+70898,34515,57617,38964,14768,62289,33274
+70899,3023
+70900,31775
+70901,76869,36210,25993
+70902,41696,21099,69018,2582,24043,36018,49627,75474,11217
+70903,10274,44100,6999,44835
+70904,17239,57777
+70905,14315,65181,56824
+70906,69999,78498
+70907,63651
+70908,70077
+70909,42247,31539
+70910,25066,78998
+70911,67822,76450,72830
+70912,40976,27610
+70913,12139,5199,36359,17600
+70914,75838,11177
+70915,61745,76973,13139,77300
+70916,67504
+70917,77511,28690,40890,28326,62455,45618,35492
+70918,17244,20407,61688,10480,40005,1558
+70919,23542,53332,60614,1184
+70920,31,17756,52940
+70921,15615,9352,35741,74640
+70922,31636,75465,21502
+70923,49332,77369,59875,28814,22912
+70924,16709,63913,53800,65679
+70925,65983,21976
+70926,23790,397,7189,70072,50428,68620
+70927,13676
+70928,35110,61392,41340,65591
+70929,41104,16741,3053,42486,38686
+70930,28038,36925,17642,77146,34414,50380,24454,34038
+70931,78230,31007
+70932,51579,6863,70909,72164,54990
+70933,65833,55359,49388,39914
+70934,15605,70619
+70935,3371,29100,12802,26440,62571,63135
+70936,34604,46809,67076,20474,82142
+70937,63334,9376,29714,52076
+70938,62034
+70939,48104,16185,57159,67140,54381
+70940,5317,1657
+70941,32699
+70942,33180,11562,64622,34891
+70943,70951,46371,41416,7545,12893,66245
+70944,34910,14258,20747,2389
+70945,74158
+70946,71219,61750
+70947,41902,31035,60793
+70948,26731,33206,75157
+70949,27325,48490
+70950,59961
+70951,11831
+70952,29310,39191
+70953,76209,30732
+70954,34715
+70955,17446,6841,63184
+70956,50844,69961,44224,5535,56261
+70957,6947,16176,59765,58307,40788,27344
+70958,52289,27002,31911,6055
+70959,5822,72365,46314,28284,76436,22633,71857,72198
+70960,64779,70706
+70961,54664,20661,75130,12437,81088,79726,54513,7328
+70962,33440
+70963,24513
+70964,5588,43939
+70965,30261,65428,20700
+70966,5002,20022,43745,30565,53309,5832,19704
+70967,40059,30174,2671
+70968,67832,64702,51997,9535,21575,51533,1542,19426
+70969,51045
+70970,38669,74026,11246,59129,47331
+70971,17517,17224,64448,68870
+70972,59497,72116,81801,65361,30153,56967
+70973,65703,32730
+70974,79697
+70975,11584
+70976,58238,21162,26085,4633
+70977,43844,13128,94
+70978,25637
+70979,3261,52209,33497
+70980,6733,44972,39872,9237,35629
+70981,54688
+70982,2806,51602,28309,73716
+70983,36171,23304,14127,38503,16273,72109
+70984,28632,66892,17944,42888,58705
+70985,25988,10882,70123,28535,73420
+70986,71571,77525,73979,21567,18577,35105,41061,63737
+70987,338,59982,1179
+70988,9986,79704
+70989,224,39722,31126,76738,53443,52394
+70990,31015
+70991,79554,73845,40186,13726
+70992,47135,57889,39181,53790
+70993,20967,66266,25655
+70994,10770,19600
+70995,11818,58707,37787,48539,30028,2963,6281
+70996,31374
+70997,4728,55077,13302
+70998,68874,39780,10472
+70999,46796,11667,37312,6627
+71000,31414,5855,10396
+71001,16947,22091,63168,77550
+71002,50523,3653,33838,48855
+71003,22107,60308,51050,50331,72174
+71004,22824,52362,68702
+71005,8001
+71006,64483,42843,2564,27701
+71007,30212
+71008,80692,11983,45963,28717,7140
+71009,51719,41772,61830,41110,7132,9829
+71010,22215,38280,11311,74433,51842
+71011,57768,19197,37029,27563,46677,77024
+71012,39562,57377,34622,39877
+71013,56964,37491,77031,15952,27032
+71014,17038
+71015,53167,1449,25401,28975,72800
+71016,26744
+71017,64599,41563
+71018,14430,69051,72885,45991
+71019,70648,58358,13653,7496,4349,71682
+71020,26744,56663,59804,74786
+71021,59978,27424,78448,38553,69096
+71022,14671,24503,69314
+71023,5152
+71024,44637,378,65773
+71025,55739,5833,60178
+71026,41301,74321,35832
+71027,58017,50860
+71028,56244
+71029,18016,14706,11829,62524
+71030,69954
+71031,13708
+71032,33960
+71033,20275,39452,69625
+71034,61562,74272,8508,19321,50810,13032,77193
+71035,68413
+71036,66242,62466,72121,52071
+71037,26321,37073,60228,78683,16257,5153,10958,14470
+71038,73712,51662
+71039,31206,32595,17796,13223,33315,7273,25983
+71040,13570,22671,10152,81215,74387
+71041,33714,62367,73248,28850
+71042,36165
+71043,1147,53254,77802
+71044,63475,41530
+71045,13206,41498,1261,12229,72234,44074,35516,53822,28093,33584
+71046,36256
+71047,31801,15799
+71048,69738,28609,42595,28311
+71049,45255,25548,15493,40527,51155,27990
+71050,1794,48415,12821,58434,46968,76507
+71051,15951,22204,33730
+71052,74947,19760,17
+71053,18576,1277,10834,66777,75744,11398,72775,12293
+71054,39117,73635,21937,72409,43116
+71055,41570
+71056,37296,23597,29333,9158
+71057,65087,8810,2734
+71058,71568,46281
+71059,71678,2915,21340
+71060,43086,13411
+71061,14896
+71062,31838,27912,65212
+71063,81002,62839
+71064,73984,8586,1689,68076
+71065,63280,59675,74267,55791
+71066,73559
+71067,26260
+71068,34191,54059,57589,12607,49100
+71069,18903,45411,58044,65723,30351
+71070,81979,10161
+71071,5781
+71072,42450,58748,32984,47625,9432,33206,29711
+71073,20454
+71074,35151
+71075,58087,52896
+71076,49520,34464,20138,17374,21221
+71077,77809
+71078,41642,21498,68745
+71079,65040,5790
+71080,43967,5946,40525,19975,44513,1507
+71081,22636,75589,60696,17490,73774,71132
+71082,22525,4607,74152,47842,8339,31743
+71083,34006,15786,74359,49200,34073
+71084,4905
+71085,56770,72787,55401
+71086,46804
+71087,57261,30068,1699,73267,37237,16012
+71088,2139
+71089,63724,52384,45747,50392
+71090,45109,63584
+71091,3633,10530,3762
+71092,50891
+71093,25907,7048,59231,44851,33114,18942
+71094,67845,25480,10976,22786,19467,9968
+71095,10929,39700
+71096,50762,23368,54528,64246,65386,43122,73516,30743
+71097,1992,75064,62124,9928,38069
+71098,3410
+71099,30741
+71100,44459,57043,5527,9405,38536,46328,34693,63495
+71101,81989,20306,51826
+71102,77167,51663
+71103,37793,29134,80497,7507
+71104,19399,80721
+71105,31791
+71106,68572,6464,50508
+71107,71773,77105,29502,42022,12181,59243
+71108,62546,1921,35732,79461,15451
+71109,71227
+71110,77319,32372
+71111,59657,59046,15274
+71112,73006,58802,69444,70510
+71113,25684,30524,21224,7623,9805
+71114,76623
+71115,8322,20314,30076,61013
+71116,64215,81397
+71117,74605,9105,30254,56210
+71118,14258
+71119,61927
+71120,52420,73225
+71121,74421,62009,20622,82112
+71122,24745,4029,178,80532
+71123,1334
+71124,55215,60766,62906,58367
+71125,52982,42491,39024,64051
+71126,22184,6475,16391,10128,78135,61865
+71127,79848,53599
+71128,79517
+71129,15971,21391,46384,35091
+71130,599,33250,58005,5264,79281,33573,31625,57800,34893,19301
+71131,64994,6063,71239,16290,41061
+71132,61367,67305
+71133,38230,81834,28592,56660,9109,32868
+71134,17504,21081,8036,39515
+71135,14261,12476,81748
+71136,31857,81410,15707
+71137,7271,41901,59346,74574,22614,78635
+71138,74975,26524,72344
+71139,35755
+71140,1238
+71141,54763,67969,69953
+71142,68424
+71143,4302,66337,44767,5592,49025,46860,2748
+71144,32465,67795
+71145,68948,36708,10468,14009
+71146,79745,3968,59904,3655
+71147,63577,53890,54431
+71148,74259
+71149,61251,2819,48659,49951
+71150,49346,78497
+71151,2308,6020,21440,35151
+71152,11617,48982
+71153,77916,44210,50361
+71154,61900
+71155,4563,56557,75211,56150,55714
+71156,39007
+71157,21811,12962,60560,50437,6779
+71158,35103
+71159,21207,9959,7535,72739,15516
+71160,11580,60153,78381,37092,898
+71161,10231,32149,44507
+71162,32318,66331,33074,53725
+71163,25105,48356,62990,11921,5447,32564
+71164,37467,64411,20597,1966
+71165,55051,62174
+71166,45909
+71167,47372,16264
+71168,4604,61897,50721,34338,73223,25332,18048,75663
+71169,53472,56584,34700,27139
+71170,44402,77480
+71171,26789
+71172,38321,80086,26230,64793,69839,50667
+71173,40147,57695,10695,20949,30144,22958,14512,31359,76994,80961,8364
+71174,60944,56225,69147
+71175,68631,29887
+71176,28654,81985,71680,31494
+71177,6330,73779
+71178,68932
+71179,20930,8725
+71180,51955
+71181,50545
+71182,21367,50293,68947,80838,7947,53133,74100,80006,74927,53750
+71183,68218,13135,28702,65057,67129
+71184,51689,34402,70414,23873
+71185,2365,73840,73511,13036,37026,78966
+71186,70810,75544,11261,24508,70616
+71187,39199,1563,65757,51302,7954,4908
+71188,13990,62148,81777
+71189,74697,39689,3159,13887
+71190,46,3047,34524,19689,32573,8767,51086,14046
+71191,43875,56851,7968,81809
+71192,63251,72163,34375,14141,60739
+71193,54009,30895
+71194,339,17636,50802
+71195,22057,43844
+71196,8035,2362,48263
+71197,11244,26316,17274,10857,16430,7555
+71198,5081,80671,20406,50908,8007,59713
+71199,49064,46945,55265
+71200,20204,53060,56627,31726
+71201,38418
+71202,69999
+71203,14186
+71204,81346
+71205,51663
+71206,49825,24556,18172,66919,48808
+71207,33440
+71208,47778,54765,17392,50916,61578,73002,44119
+71209,49857,14129
+71210,56335,56992,27701,28969,8814
+71211,58107
+71212,66151,44249,50936,33350,40495
+71213,41059,31539
+71214,19793
+71215,11911,78493,23335,10150,70565,17440
+71216,27996,24605,2860
+71217,43555,25771,79064,39845
+71218,56171,58343,42601,14233,47388,60026
+71219,25251,39873,39114,39189,79927,65313
+71220,72001
+71221,65178,46184,22055,46815,26481,62678,28159,11872,79487,21633
+71222,5847,78175,62170,59305,26005,66693
+71223,7247,23512
+71224,32044,72776,23758
+71225,34944,55433,53154,49979,12397,23327,44573
+71226,44702,69236,82014
+71227,42484
+71228,61458,40468,2769,4743
+71229,66610,27773,21070,25603,19197,35222
+71230,56869,48851
+71231,73110,78142,58474,26639,58640,81070
+71232,53827,81907,18662,78084
+71233,3000,79669,11972,8893
+71234,70174,60395,52572
+71235,76775,245
+71236,66333,53472,6226
+71237,17293,63469,3052
+71238,9811,39347,27771,46561,2383,19902,58298
+71239,43335,25414
+71240,60406
+71241,19052
+71242,54680,19482,80588
+71243,70990,27875,42253,16153,79183,12473,31051,62091,76218
+71244,9175,18048,72680,31908,36580,18622,46085,43592
+71245,72167,72228
+71246,39874,17969,73668
+71247,13423,15203,73302,14873,15506,63478,31969,75822,24675,11773,38280
+71248,2870,7797,50749,72297
+71249,71977,6120
+71250,80479,65479
+71251,2462
+71252,15806,43099,80545,59514
+71253,18851,80918,51465,5025,23911,29269,71633,21090
+71254,63648,72560,43260
+71255,58529,71073,33643,58552,44759,51350
+71256,33851,65989,61851,5819,1654
+71257,35256,38895,19759,48484,54523
+71258,58912,1041
+71259,67863,73113,46203,25648,17504,16017,8690
+71260,74694,78032,2871,34130,27450
+71261,76811,38640,37861,15801,80569,80469,65697
+71262,53565
+71263,22446,19879
+71264,61861,52004,20682
+71265,14478,26675,35006,50109,54282,40002,20631
+71266,37619,40535
+71267,80539
+71268,41898
+71269,74383,78357,23368,2156
+71270,42479,61877,75564,2025,27246,31344,56694,47604
+71271,4032,14675
+71272,23299,69843,29440,45558,23610,46860
+71273,81052,4542,35201,24825,9860
+71274,60004,51926,39922,33554,45336,80847,72584,7968,39185,21925
+71275,76100
+71276,9312,4792,11565,71814,33424
+71277,42987,31687,1696,56175,17066
+71278,71762,28883,72354
+71279,75305,3749,20925
+71280,67810,19199,34775
+71281,37482,27944,30732,64313
+71282,56614,41564
+71283,29460,66196,61622,58931,60669,2095
+71284,74371,68477,54908,43003,39970,20184,44889,63017,77181,62882,62982
+71285,71325,60991
+71286,29202,20941,14863,12989,79381,45856
+71287,58247,81373,33614,19210
+71288,75810,72431,5187,77481
+71289,18575,41756,61887
+71290,75479,47523,40753
+71291,13505,34733,60762,26527,24290
+71292,28805,65845
+71293,34935,23635,73528
+71294,64883,2359,54160
+71295,43703,56957,31778,35969
+71296,53036
+71297,22149,45338
+71298,64398
+71299,28060,12914,61430
+71300,39832
+71301,65136,65456,8166,35515
+71302,32540,37756
+71303,19963,62183,69743
+71304,45652
+71305,43301,70499,16482
+71306,61444,5437,6059,48861,48094,60283
+71307,53259,77087,48745,24612
+71308,75862,22086,39322,9340,52237
+71309,27284
+71310,20173,38557
+71311,43412,63626,18725,16210
+71312,19249,40422,57115,22289
+71313,18564,2154,75683
+71314,13982
+71315,45193,27756,67716,30926
+71316,3391
+71317,2051
+71318,27701,58167,41866,15493,1637
+71319,6291,37416
+71320,50205,64096,18014,70456,32742,14644
+71321,17849,10569
+71322,55113,12997,21110,19322,79788,48888
+71323,23591,38688,55519,8753,32030,50487
+71324,3827
+71325,73772,53663
+71326,31993,56294,8900,10732
+71327,38215
+71328,53841,41479,79967,10719
+71329,23511,74985,35817,27338,64381,9951
+71330,66533
+71331,36304,5553,76647,62164,38408,59880
+71332,51139
+71333,45463,50687,65078
+71334,59849
+71335,60850,12431,21113
+71336,26358
+71337,74986,45518,31702
+71338,42532,25859,41138,41623
+71339,9777,17504,23631,80535,55908,55710,42590,67513,68505,73458,2819
+71340,27296,52741,5305,49315,63288,8236,18130
+71341,79096,19163,31613
+71342,72622,74339,52668,70720
+71343,59755,42376,57639
+71344,25459,39204,18689,67547
+71345,37960,1712,3267,802,77327
+71346,67476,58855,53538
+71347,65433,80667,48684,70640,43095,70423
+71348,23973,36817
+71349,33621,33550,47634,28046,58578,6986
+71350,5370,81880,11826,47054
+71351,43073,73437,50926
+71352,12743,33726
+71353,57478,32056,79328,35620,72192,46695,58663
+71354,16501
+71355,62409,75887,63425,78388,74025,65807,39445,40926
+71356,9441,10470,38767
+71357,14933
+71358,1816,56225,20032,20448,64388,71226,2772,26227
+71359,36371
+71360,29341,6388,70623
+71361,2841
+71362,34272,43796
+71363,18144,6866,3624,17891,65792
+71364,73837,22737,48463,28680
+71365,19254,75333,24264,36301,47765
+71366,76138,80316,25920
+71367,67747,4329
+71368,50881,6012,18703,16395
+71369,65099,61569,56851,24455,40097,64042
+71370,47087,65147,36287,62824
+71371,25581,45364
+71372,57810
+71373,27907,24025,32151,23875
+71374,33870,5017,7812,24071
+71375,52258
+71376,72803,58681,15096,45466,75751,27064,31944
+71377,80051,25404
+71378,42949,39575,80541,13739,47360,18134
+71379,74558,70115,79532,47882,58447
+71380,3894,77088,75259,52218,60755
+71381,72446,38935,59439,54823,69143,15356
+71382,28440,13134,2808,70376
+71383,36943,56946,39003,850,47984
+71384,1291,22249,55959,488,9009
+71385,59724
+71386,3703,57286,59805,6528,43005,65218,75846
+71387,60227,64463,626,71314
+71388,24789,70222,19743
+71389,38621,70784
+71390,18070,8359,29136,4003,13097,54659,45604,74162
+71391,53857,71866,24175,33736
+71392,66412,63819,42444,60427,35896,5270,71895
+71393,46522,10039,13321
+71394,30643,34139,71171,80280
+71395,16730,35997,45598,30565,76885,29828,72174,27308,34688
+71396,68558
+71397,81823,6887,41812,26030,30716
+71398,64443,74945,45375,76,51165
+71399,18220
+71400,42987,58801
+71401,65416,27568
+71402,33575,34437,19174,62882,53675,191,58823,77791,1251
+71403,10108,18903,20590
+71404,7253,23269,73754,25788
+71405,2515,61131
+71406,78638,69622,66751
+71407,4684,50468,32062,49206,17926,49996
+71408,10846,12538,5068
+71409,56171
+71410,27910,76475,41901,55716,74570,27701,65195,52580,56363
+71411,75380,48726,31336,44496,6303,14926
+71412,65192,49180,5315,35376,60810,49306,34811,53026
+71413,77313,8990,15756
+71414,25685,32192,17788,41912
+71415,14680,6017,69026,49991,56051,58979
+71416,35506,11012,29016,28170
+71417,22828,54760
+71418,21978
+71419,41362,28584,32554
+71420,80857,57968,20782
+71421,41982,56719,58166
+71422,24609
+71423,29574,25174,11122,72228,29132,44421,39197,58303,24994,73624,76842
+71424,28953,35118,59330
+71425,56557,17900,21891,57971,39150,28953
+71426,1727,54278,28055
+71427,75907,16026,28894
+71428,28794,24501,61061,11070,44392
+71429,61249
+71430,22235
+71431,20124
+71432,79070,80700,50563,59218,3673,1244,30801,39532
+71433,57159
+71434,77005,18245,50451,20106,72648,24944,17636,12354,23853
+71435,31970,12908
+71436,24907,38189,41918,78399,36194,10199
+71437,78957,37855
+71438,39399,69457,47819
+71439,26227,54108,48648
+71440,54003,73276,36190,34117
+71441,48548,42348,21090
+71442,32478
+71443,44525,30082,41626,63865,81575,23810
+71444,41215,13157
+71445,43644,76862,74160,3947,4282,57257
+71446,452,50764
+71447,50925,79258
+71448,81014,46478,53996,8119,15636
+71449,20421,58676,16395
+71450,68062,48040,23655,8510,18150
+71451,33997
+71452,12773,65946,70242,48174
+71453,66516,68307,64803,8268,74796
+71454,58710,37109,68753,65416
+71455,58873,27488,49264,9831,11863
+71456,39064
+71457,72159,5679,19925,37954,62965
+71458,34491,79840,45718
+71459,21498,74895,18122,31953
+71460,29888
+71461,53787,28794,71575,58387,59065,20938,8135,32413,2297
+71462,76894
+71463,54773,34406,26261,15532,19396
+71464,55509,15357,9210,68743,30165
+71465,56927,6334,53897,12651,12926,24823,72565,45273
+71466,49359,35225,31317
+71467,79879,67154,53099,30198,42229,27918
+71468,25542
+71469,57848,67775
+71470,33769,64497,21603,44532,40865
+71471,46451,62623,53501,64524,32818,82103,6849
+71472,10498,75059,7024,81851,44607,24917,12248,80353
+71473,35671
+71474,71043,81491,41323,76809,66082
+71475,80640,60746,50925,69725,78819,15429
+71476,72366
+71477,31494,27332,25609,44399,44911,51609,77587
+71478,41888,29735,62485
+71479,12325,76332
+71480,30863
+71481,71418,49855,17119
+71482,6607,45936,6899,30732,63174
+71483,10397,80159
+71484,11318,79618,3230,65407,6032,23515
+71485,30380,5374
+71486,57877
+71487,13942,39572,31788,62249,48819
+71488,76162,49845,39518,9475,55328,23615
+71489,3526,32562,41437,14833,27859,46165,6628,71953,6426,16818
+71490,76793,41064,43769
+71491,65602
+71492,69167,43355,61334
+71493,13966,57528,67630,18684,3396,27564,27974,16932
+71494,77712
+71495,38422,66376
+71496,64388,34480
+71497,28561,45681,53626
+71498,24886,41862,36409,57751,3459
+71499,53104
+71500,74665
+71501,35645,18277,54541,50405,79319
+71502,59823,72741,6523,22463,55506
+71503,101,58350
+71504,74320,71628,76108,41991
+71505,63349
+71506,62510,48765,75536,8142
+71507,47677,54095,60071,70077,52818
+71508,62695,6192,1387,76945,20019,45236
+71509,56345,29821,44232,27854,12084
+71510,22604,67127,47704,27993
+71511,44002,68830,33914,19277
+71512,89
+71513,13994,79906,75921,28665,75344
+71514,8998
+71515,22430,65111,39309,14131,60682,59295,24973,81630,11967,69511
+71516,33625,43734,38872,59858,20112,53141,69893
+71517,41624,4435,78805
+71518,76868,6904,81299,55081
+71519,46746,58170,58395,49248,17394
+71520,5756,75275,10335,56388,69173,45253
+71521,80238,34220
+71522,68275
+71523,33722,80548,61286
+71524,3671,72032,61889,79783,67299
+71525,1694,74139,42689
+71526,33400
+71527,42420,55873
+71528,9852
+71529,67462
+71530,66613,55662,9571,29558,78521,37548
+71531,78200,78527
+71532,20803
+71533,17547,52615,37828,9231
+71534,13585,43201,16382,66856,13923
+71535,794
+71536,61753,26759,4369,6369
+71537,68076,64655
+71538,56953
+71539,73992,7570,12551,28517
+71540,44536,63618,26430,63708
+71541,55599,48430,79837
+71542,43365,63493,60177,42987,479
+71543,69889,1687,44729,59626
+71544,33250,15017,12477,71236
+71545,52520,57470,54236
+71546,69531,44795,30470,36236,60677
+71547,63003,67349,312,50990,72416,81844,53399
+71548,26911,13623,65092,28155,22346
+71549,66498
+71550,1116,24806
+71551,55757,79308,41669
+71552,38814
+71553,17934,61633
+71554,79942
+71555,52172,30245
+71556,26065,46239
+71557,42958,66234,27869,33483,8998,70029,464
+71558,48609,20995
+71559,60052,37996
+71560,9250
+71561,25706,59034,66987
+71562,1391,3513,6350
+71563,8078,62265,78613
+71564,1681,63791,58676,62581,29641
+71565,67986
+71566,34802
+71567,78692
+71568,46788
+71569,40456,17985,4441,41700,41695,17747,35793,14358,8354
+71570,41744,27597
+71571,39417,38889,36300,30186
+71572,17802
+71573,66883,24665,63479,16806
+71574,64655,52824,12008
+71575,58687,35979
+71576,63387,43890,64924,7861
+71577,44706,30219
+71578,78476,72584,26126,52736,35214,60369,15715
+71579,19099,75375
+71580,66956,9965,43897,18062,65116,75436
+71581,33372,76023,42128,6552
+71582,12725,39806,80818,25800,22047
+71583,5251,7975,14547,4699,50659
+71584,33428,37096,17692,50483,34024,49857,41051,56065,43713,35959
+71585,30068,65400,11398
+71586,27049
+71587,1406,59508,10219,5854,15043,44585,11108,61056
+71588,72890,60791,66065,77625
+71589,13709,44546,78,78635,69319,16841
+71590,29844,68190,15611,11677,35767,4723,16676,9107
+71591,64080,44075,23570,64719
+71592,25108,2020,11520,52930,33188,66142,31045
+71593,68507
+71594,56747,15154,51257,10506,70604,49477
+71595,18315,66660
+71596,28730,10060,22990,7263,78055,57792,77634,137,35397,67365,65720
+71597,10081,8478,17112
+71598,37960
+71599,62074,6866,5285,54835,8693,58021,3187,54884,1616
+71600,67346,39951,74224,73809,44016,56859
+71601,3911,78594,33843,10150,44790
+71602,25782
+71603,38426,18563,18232
+71604,71424,50971,52807,40902
+71605,6743,60217,35777,3863,53882,3398
+71606,6105,10217,80021,69500,2625,53347,54862
+71607,62034,59605
+71608,75367
+71609,33657,27676,53030
+71610,15410,25611,58727,72070,34814,34950,15138,34862,38010,1513,859,30281
+71611,66242,34383,18981
+71612,78302,27200,56062
+71613,49454,16843,46648,78729,72502,7615
+71614,71879,63440,58423,2162,64670
+71615,23399,11124,43684,43627
+71616,2051,60589,35036,37225,34982,55635,60370,10314,46886
+71617,52833,33769,58943
+71618,58926,57575,50151,14381,15133,11983,59535,74156,54695,75863,41272,70323,45158
+71619,2699,61271,40175,55128
+71620,39417
+71621,75919,46796,72021,81346
+71622,54249,15899,74034,7702,53046,46374,68558
+71623,72297,13981,65323
+71624,64191,80759,16010
+71625,51644,35922,16795,42036,44382
+71626,41223,57543,39063,3410
+71627,23282,51318
+71628,1569,62005
+71629,82069,9161
+71630,30432
+71631,56170,29333,54439,43295,27027,65641
+71632,46311
+71633,43837,71818,43447,59330
+71634,2119,10984,44861,76941,67437,30427,59530,81375,3217
+71635,52479,77031,2794,379,9608,58776
+71636,41538,52127
+71637,37369,19538,7159,24142,30545,49242,3867,64142
+71638,82059,56830,24322
+71639,20735,37492
+71640,62400,46329,20095
+71641,21911
+71642,6298,67130,36974
+71643,30305,36340,37524,68485,22808,12443
+71644,82059,35764,48868
+71645,37861,69831,42870
+71646,27007,71042,40384,16318,8988
+71647,69995,76781,66687
+71648,33807
+71649,81303,39730,44828
+71650,7382,59805,62830
+71651,8514,80051
+71652,43710,44754,9963,26871
+71653,79306,15874,65961
+71654,31757,34560,42611,68299
+71655,25240
+71656,59261,4026,50868
+71657,33440,66905,49439,74136
+71658,30597,58201,18333,14864,69183
+71659,261,73413,66596,27535,38521,11068
+71660,25372,19404,68753,3403,69542,77247,44377
+71661,63296
+71662,32979
+71663,57312,79016
+71664,4163,40508,29924,25492,8395
+71665,3057,22271,79835,73942
+71666,33435
+71667,11708,42210,18750,57612,54421,24151
+71668,79608,70903,31308,58589,60966
+71669,34599,47551,69478
+71670,37948
+71671,32952,64392,35876,7664
+71672,60801,36369
+71673,51898,12170,56449
+71674,23701,71164,7333
+71675,37803
+71676,22362,31498
+71677,69537,40824,56124,22441,64835,58457,29266,73367
+71678,27990
+71679,40030,10873,73796,6552
+71680,45577,29675
+71681,7870,11794,82,57963,49054,47718,60260
+71682,14985,39722,3360,76670,81364
+71683,58558,22478,17626,7192
+71684,20359
+71685,75983,75165,5573,73523,16217
+71686,35255,14653,67740,69467
+71687,33336
+71688,59943
+71689,45606,58719
+71690,706,81541
+71691,71521,12365
+71692,23936,25928,1216
+71693,73077,17722
+71694,26457,12769,31513
+71695,62799
+71696,80450,63597,44220
+71697,77739,70941,36578,40990,2956,43454
+71698,35328,1211,49113,3387,56464
+71699,80532,16589,43956,14062,45695,53750
+71700,53958,28237,78220,22419,64769
+71701,71262,26824
+71702,39564,9368,39789,67422
+71703,34354
+71704,9584,842,34276,72459,70283,35292
+71705,56631,36157
+71706,55937,39432,56076,25069,28345
+71707,63459,71240
+71708,4165
+71709,3807,61447,69601,5659
+71710,59511,20884,82159,16122
+71711,66649,18023,28583,54115
+71712,15578,22618,36369,75955,15482,23598,25157,46768,74576
+71713,18439,16416,47872,4156,19882,10203
+71714,1983
+71715,75717,22075
+71716,14723,13580
+71717,15985
+71718,19672,11489,39569
+71719,42280,46669,20320,41330,74753
+71720,55068,60372,15770,19406
+71721,61454,19243,18345
+71722,81223,32232,40954,70341
+71723,46209,33787,75023
+71724,79837,65899,6610,12616
+71725,75531,34152,12573,59836
+71726,56873,18345,19072,63539
+71727,38958,50844,59953,75041
+71728,35856,71149,209,19847,67331,79705
+71729,14313
+71730,18936,71749
+71731,7996,15404,10644
+71732,77664,59996,5741,61334,3446,36580
+71733,1154,21286
+71734,29072,73430
+71735,70381,41892,2673,3040,44239
+71736,40806,60372,30670,55788
+71737,62255,64241,55048,69309
+71738,42886,30082,23601,43282
+71739,77313
+71740,18958
+71741,40393,65108,77717
+71742,74329,12191,42725,58357,12393,57434
+71743,81473,81207,61713
+71744,20651,18217,10979
+71745,55651,76723,26875
+71746,44140,71386,19074
+71747,23327,59018,12200,22236,44847,69273,29849,11711
+71748,39436,5558,49637,49884,25491,7610,32780,23593
+71749,79209
+71750,13747,51473,51712
+71751,26519,82122,74264
+71752,53598
+71753,27158,73551,79678,82025,26676,64191
+71754,45586
+71755,11704
+71756,75985,2125,73150,62532,67777,70835
+71757,27570
+71758,51247,78277,81378,33681
+71759,52849,50213
+71760,66548,3057,69441,61217,65321
+71761,43193
+71762,46129
+71763,56244,26424
+71764,45480,41592,44078
+71765,73539,41159,25855
+71766,18639,52386,28406,9024,75876
+71767,73579
+71768,81278
+71769,27319,50428
+71770,20528,60808,70928,41882,80222
+71771,45690,6060,30442,5864
+71772,20629,26323,51394,76581
+71773,8040,6088
+71774,52216,56325,28019,81725,69242
+71775,42511,2136,34463,13069,47150,62504
+71776,72640,39244,50714,81661,3703,79898
+71777,61760,46758
+71778,53407,59126,57543
+71779,23268,21237,71400,21915,72776,41651
+71780,40823,3141,22981,34548,66510
+71781,2100,54865,40939,6833
+71782,62879,30050,16722,72558,25445,55490,48644,15369
+71783,69051
+71784,77450,50594,64201,19544,9175
+71785,10849,65374,31797,4074
+71786,35082,56585,1263
+71787,3888,11123,48142,27516
+71788,32654,77544,14312,28332,23552
+71789,28042
+71790,77492,42828,30005,19831
+71791,56720,17091,21041,78830,60294,30133
+71792,60015
+71793,54753
+71794,72461
+71795,49914,19811,15048,20961,74997,2961
+71796,12754
+71797,38284,22728,28539
+71798,81272,57493
+71799,79083,38601,47063,81328,20112
+71800,27090
+71801,42645
+71802,14678,79799,64869,67789,16727,2605,40383,68995
+71803,46946,47302,44686,30527
+71804,47173
+71805,74231,55353,22642,33397,11245,14186
+71806,14984,10338,13043,25786,32321,80823,80216
+71807,18024,80309,73544,22133,1433,3394,54543
+71808,14466,56020
+71809,51674,38570,7925
+71810,47277,78975
+71811,49888,57513,35480,27999,50354
+71812,2515,37451,50879,37454
+71813,16811
+71814,42538,8113,21921
+71815,25391,78092,28554,81525,106
+71816,24815,818,54375
+71817,34144,71204,11238,37497
+71818,17287,67824,7851
+71819,76606,51936
+71820,15653,857
+71821,81407,9560
+71822,79647,50304,72240,6635
+71823,42303,47729,16076,59075,4329
+71824,38729,13501,12201
+71825,28939,24836,79335,69716,44009,71492,626,67822
+71826,10723,50767,39865
+71827,8911
+71828,48522
+71829,37330,33381,42590
+71830,885,7789,59520
+71831,65812
+71832,53880,22054,62681,42305,39534
+71833,55476
+71834,10257,77845
+71835,25201,50494
+71836,54910,66250,78993
+71837,31250,1180,54873,13658
+71838,48959
+71839,69687,17864,77637
+71840,7716,13674,32922
+71841,12765
+71842,13677,49376,33414
+71843,50418,72303,56755,59958
+71844,66212,76922,52142,56316,54748,63311,57509
+71845,52491,28177,78523,72361
+71846,57345,76710,22903
+71847,22924,73139,57579,15716,18550
+71848,81720
+71849,36155,52161,76240
+71850,54007
+71851,36081,4760
+71852,33410
+71853,62793,9668,43508,72747
+71854,59615
+71855,40045,40782
+71856,39915,34233,78150,68566,71988
+71857,3
+71858,19210,45063,5528,58812,70057,6730,1027,75476
+71859,61059,70638,19529,25655,70224
+71860,30861,3238,22683
+71861,70437
+71862,74259
+71863,22448,53970
+71864,40539
+71865,32539
+71866,49295
+71867,65817,23230,54121,16203,29772,67208
+71868,62958,79369,61509,35411,21083,78174
+71869,12956,7645,48459,15412,40619,69792,32008
+71870,15019,49621,39302
+71871,4595,35533,46702
+71872,22053
+71873,5794,54700,1854
+71874,46219,63300,34633
+71875,32692,39165
+71876,17494
+71877,41570,68074
+71878,17455,25769,15223,44539,8102,23481
+71879,2129,35880,47845,40201
+71880,14235,5747,26675,72469,23137,12077,51321,8108
+71881,54139,33964,58989,79735
+71882,51805,11222,9091
+71883,5747,75893,2130,46852,15042
+71884,30855,42575,5431,75585
+71885,7936,16945
+71886,65634,64081,79710
+71887,28429,32073,16570,24011,78424,14321,33930
+71888,34855,65703,78901
+71889,57535,47373,70903
+71890,67353,73776
+71891,22053,67485,28379
+71892,30910,38338
+71893,11780
+71894,60029,30942,66701,16810
+71895,57940
+71896,6480,26792,45681
+71897,46824,4983,51658
+71898,81934,74463
+71899,7746,19569,47838,7042,26113
+71900,80679,30929,71478,42860,45809,3554,46686
+71901,73959,56575,17216,26223,49761,75695
+71902,78601,15907,65714
+71903,33058,26938,19112
+71904,61311
+71905,43739,51193,28299
+71906,17108
+71907,51165,58066,74357
+71908,24868,27411,33250,61179,53030
+71909,46781,27773,17907,26411,24877,62396,8634,79317,32788
+71910,7231,50421
+71911,67237
+71912,52209,51839
+71913,49800,48498,56312,71148,34727,25017
+71914,66530,24581,42489
+71915,52033,42847,26519
+71916,74666,72722,33278
+71917,9057,71499,36561
+71918,15728,4001,422,23306
+71919,12751,56892,41606,9700,4442,9681,37362,14327
+71920,25731,23397,24447,47766,2749,36382,15222
+71921,44373
+71922,4766,40212,53872,32715,25981
+71923,60787,78022,28836,17868,60251
+71924,40893,36817
+71925,2558,65005,17839
+71926,61103,35096,60987,62130,70211
+71927,3146,81472
+71928,79067,4131,79876,15207,48695
+71929,4743,51047,63275,20858
+71930,15929,12055,23656,54912
+71931,82012,3750,29017,12626,3887
+71932,8362,2524
+71933,24740
+71934,61633
+71935,60331,80777
+71936,46573
+71937,9880
+71938,47965,1478,51163,75077,75973,11673
+71939,8352,39018,79348,38219,43056,2697,46634
+71940,69043,15822,8928,8202,27926,38390
+71941,28801,66682,11504,47867,34273,49124
+71942,54460
+71943,27855
+71944,43193,18773,7635
+71945,13564,15132,27883,9165,69860,50421,34290,11444
+71946,19019,63936
+71947,51754
+71948,4810,70117,40637,47867,51654,67266,21587,76584
+71949,9051,62255,42321
+71950,65823,1613,57524
+71951,25989,58084,28571,30212,77535,75982,34399
+71952,62942,29046,21952,41733,1475,71572
+71953,63255,24999,8707,73714,23360,33493
+71954,39809,1496,9997,72393,23297
+71955,44124,81009,30955
+71956,61001,79728
+71957,12956
+71958,42333,63647,47121,79609
+71959,47154
+71960,60276,59953,2720,47011
+71961,62355
+71962,42450,22157
+71963,55706,16858,34224,70952,32986,23724,3617
+71964,44449
+71965,78333
+71966,70799,46550
+71967,6515,9729
+71968,11851,36512,82043
+71969,20853,35175,31532,2192
+71970,41690,31659
+71971,17054
+71972,20119,26677,47226,81743,33421,34759,73164
+71973,16425
+71974,30377
+71975,4155,47970,5638,70182,22643,22830,57363,37989,13292
+71976,20813
+71977,55498
+71978,72808
+71979,1153,75278,22444
+71980,24921,3026,11648
+71981,70429,76814,20206,5365,50392,20537
+71982,68062
+71983,13598,58652,26720
+71984,37793,19375,78784
+71985,69715,43420
+71986,50465,42532,24651,70361
+71987,1539,27806,58794,21726,52225,38766,60370
+71988,30116,56845
+71989,33366,15271,42389
+71990,6075,43034,18496,33696,13169,40932
+71991,71840,41537,56419
+71992,51280
+71993,16059,32859,12555,29303,2117,10384,66533,42420,76547
+71994,73116
+71995,41437,7480
+71996,68033,39569,21986
+71997,54048,66053,49517
+71998,41314,483,15689,2223,36301,1268,48101,62454
+71999,19307
+72000,11512,23639,28300,40308,22623,2580,77141,7898,28147
+72001,33235,64853,67114
+72002,38266,2754,28750,36272,43544,46946,31238,31536,74470,23417,53891,50866
+72003,23575,34361,39010,11638,40812,5141
+72004,39271,18811,57881,32301,34304
+72005,7168,69115,71203
+72006,10463,49147,56839,12931,75190,22321
+72007,78202
+72008,31838,58570
+72009,28741,24062,78681
+72010,25968,19307,50811,53057
+72011,14490,82054,10295,63198
+72012,21020,65602
+72013,76423,74479,71016,60910
+72014,42450,75401,59004
+72015,67710
+72016,41403,57055,27101,12330
+72017,19162
+72018,8756,78788
+72019,4317,78789,81094,60397,69994
+72020,11645,58801,54459
+72021,30586,78415
+72022,26525,80834,15749,19021,77992,73994,73767,12735,43171
+72023,4694,49901,38654,27738
+72024,12372,1814,27501,45008,23751,72812
+72025,27134,54735
+72026,46941,38899,4133,32281
+72027,53513
+72028,21603,7486,66391,54115
+72029,65602,76670
+72030,8008,58747
+72031,80473,16211,8407,28935
+72032,63536,31921,63670,57019
+72033,22755,11285
+72034,56318,42280
+72035,81979,54742,72104,33638,7029,38937,23668,3509
+72036,23615,59644
+72037,6468,50140,30537,5957,59032,14166
+72038,57388,67370,69516,19809
+72039,62941,5825,54078,50753,47282,70684
+72040,58359,20677,47187,7694,69947,41119,47764,62015,1662
+72041,67710,54371
+72042,19130
+72043,62434
+72044,7309,7577,65615
+72045,21523,64476
+72046,15502
+72047,30094,65195,64218,36587,80731,21858,40697
+72048,15264,51242,60640,36942
+72049,60716,64289,49930,1690,9302,27980,16158
+72050,47306,33188,62175,13540,71789
+72051,4380,58018,39339,61847,46286
+72052,17851,11829,2408,28899
+72053,35610,12794,3739,60492
+72054,50956
+72055,79852,30532
+72056,78368
+72057,46516
+72058,52967,19899
+72059,56641,54736
+72060,15682,270,43261,19873,11773
+72061,16011,794
+72062,71994
+72063,11162,76644
+72064,28691,25503,79720,48827
+72065,30665,41693,22067,60798,35755
+72066,51891,9883,54867,62696,29999
+72067,74488,20765,48262,58171
+72068,55518,1873,47112,13081
+72069,38576,69263,8614
+72070,25878,37314,74701,69779
+72071,71064,28435
+72072,52872
+72073,63393,24379
+72074,27331,18684,39045,63766
+72075,60993,52007,59381,35571
+72076,59668,36336
+72077,41936,53538,55978,38138,4100
+72078,35052
+72079,19409,82074,60631,47705,50522,68246
+72080,65183,15008,60972,19658,64859,53960
+72081,8074,36984,36092,64395,56620,35065,81284
+72082,56943
+72083,73210,23760,40063,62926,79175,2498
+72084,78975,71783,75772
+72085,74457
+72086,31301,20433
+72087,73444,50810
+72088,8572,22181,79932,28179,2754,70777,2648,64872,33266,21114,23167
+72089,38680,77729,50258,21109
+72090,2981,68105,62482,42064,75081,4617
+72091,66281,23018
+72092,57636
+72093,71426,67236,49374
+72094,15252,51121,78613,77754,11505
+72095,81768,62174,28952
+72096,42820,61412,28029,24877,20891
+72097,17454,48538,4103,24072,57919,12409
+72098,79714,68613,20641,18443
+72099,20102,24398,81706,24560,63617
+72100,72393,17992
+72101,7124,8843,21813
+72102,81610,17466
+72103,58692,56289,27452
+72104,41420
+72105,2996,68307,4021,43334,53912,79152,53694,39217,3995
+72106,15987,61236,9866,57615,26239,40716
+72107,14142,29235,73856
+72108,64551,46632
+72109,17959,28867,64610,54864
+72110,59060,33608,33465,3144,22866
+72111,12956,54114,49059,79697
+72112,81047
+72113,11014,28802,78523,76043
+72114,56877
+72115,14772,42496,3617,61505
+72116,48229,49272
+72117,998,70989
+72118,73658
+72119,41168,82145,34871,52924
+72120,69774,74848,26887,60738,16739
+72121,35885,79313,9696,22129,31707,17287
+72122,65687,62696,49387,60894,52647,64978,36877
+72123,6101,65765,7743,58196,28002,22732
+72124,8249,5124,37067
+72125,23503,62221,36144
+72126,74824,16102,58469
+72127,20081,37435,49375,18059,8250,70061,8968,24559,30845
+72128,23944,67336,24449,70732,2249
+72129,59969,53382
+72130,67535,24473,75492
+72131,15120,18895,78552
+72132,15445,61350
+72133,26668,7102,30000,60853,63407,51756
+72134,45984
+72135,58460,77080,29940,33840,35351,32691,48900,16562
+72136,39963
+72137,74439,52304,26693,74293
+72138,35454,64888,64756,24078,17739,67619
+72139,15685,73890,24369
+72140,9941
+72141,23864,30932,15532,35972,60414,3852
+72142,48091,10215,45606,40224,7120,26875
+72143,20094,3734,69273,63350,21465,39286,60986,35128
+72144,20352
+72145,804
+72146,52581
+72147,23018,41835
+72148,67252,71422,52428,4384,57455,8969,48696,70853
+72149,41409,39531,19312,73929,45998
+72150,19547,6248,32001,36980,16497,61565,6304
+72151,27875,33991,70732,14891
+72152,25182,2806
+72153,48508,43321,48201,29265
+72154,65621,70950,1023,17790,28753,11863,69514,19766
+72155,44816,64845,75125,74375,76343,43185,13836,33933
+72156,39998,46310
+72157,48741,80145
+72158,50341,43167,23857,22644
+72159,12230,78280
+72160,45648,30711,42213
+72161,53538,42728,4316
+72162,18784,4150,484,68642,27752,61911,699
+72163,47570,10679,1690,67868
+72164,43355
+72165,736,11413,7726
+72166,28955,39904
+72167,12987,79548
+72168,33744,62885,44836,47586,77226,47302,59178,21410,47369
+72169,3251
+72170,81671,6359,6101,43000
+72171,45014,1536,59547
+72172,44357,80422,49180,42530
+72173,1768,13269,18810,33205,52732,43824,38970,28769,74394
+72174,16560
+72175,25368,25681,48101,42704,75813,596,51372,72639,25798,69295
+72176,57921,2677,71898,16653
+72177,71016,27132,9144,26657
+72178,23006,72757,20562
+72179,68189,3200
+72180,37123,24778
+72181,28466,64924
+72182,19775,4454,75178
+72183,48615,48230,38975
+72184,62001
+72185,75776,2653,55163,17385,16331
+72186,32787,70111,63181,11594,66440
+72187,17935,3633,33183,15771,24313
+72188,81454,12279,54573
+72189,27279,77742,47084,45031,64783
+72190,59877,69654
+72191,23766,22123,50884,71187,7048
+72192,36982,72681,61491
+72193,7617,66601,27728,39358,3269,66143
+72194,31560
+72195,48052,40479,21838,62597,24105
+72196,46260,38193,24898,74998,44894,1766
+72197,38973,22350,4947,52047
+72198,48537
+72199,22832,48082,71186,15001,747
+72200,31949,18070,4564
+72201,16181,11148,63131,7668,45773,51324
+72202,20037,3046,73830,61688
+72203,37410,14529,80414
+72204,61226,49482,46227,59098,11677
+72205,64165,8550,64837,81916,24558,2591
+72206,43013,6078,57093,81788
+72207,66770,38157,77441,45611,9162,25692,40251
+72208,36636
+72209,25066,18345,80832
+72210,49145,81501
+72211,77451,64153,43224,42853,8011
+72212,5319,43109,22146,16886,76279,18138,824
+72213,55259
+72214,8352,68097,53730
+72215,78934,5104,67758,57719,71930
+72216,52206,46796,51664,54595
+72217,25064,54873,37760,77087
+72218,57710
+72219,74017,28661
+72220,37567,39702
+72221,23622,62481,61655,50790,14201,41743
+72222,25494,45081,26955,17556
+72223,25263,59117,20183,37145,35190
+72224,25912,62047,63982
+72225,2477,37925,903,43442
+72226,64633,7718
+72227,35494,54199
+72228,43968
+72229,20606,50601,18499,13347,61499,2728,49651,13700,62648,12678
+72230,41456
+72231,32085,81248
+72232,43379,77790,59241,22550
+72233,10340,11548,65547
+72234,35722,58249
+72235,3023,20446,64561
+72236,51651,51313,5318
+72237,13274,64919
+72238,56204,35190,57653
+72239,55408
+72240,59370,54396,65405,11759,17860,46863
+72241,64687,63586,2927,10548,68858
+72242,50105,74723,69192,68791,42047,20548
+72243,76348,26406,69817,60900,78404,48724,80807,79491,25212
+72244,78739,64090,57173,54534,37513,71193,73623
+72245,63094,38771,81143,58016
+72246,55846,39378,65537
+72247,48865
+72248,36222,9476
+72249,55065
+72250,45400,63866,22652,28951,34591,66158
+72251,38919,6780
+72252,69494,63074,74103,44489,33879,45942,18380
+72253,50619,54534,44293
+72254,18267,18490
+72255,27451,47625
+72256,23338,73066,17943,37778
+72257,73392,48368,44947
+72258,7921,16961
+72259,18866,81692,41993,61598
+72260,36267,79071
+72261,18062,29360,18858,79840,12480,36697,13757,48412,70490
+72262,61495
+72263,57224,66047
+72264,59559,33124,3258,36071,71378,73488,76963
+72265,40401,54150
+72266,72680
+72267,39399,61506,3829,15053
+72268,61334,49661
+72269,23591,81690,32885,38806,13400
+72270,27964,80606
+72271,355,42364
+72272,62874,21987,43871,31799,46896,3760
+72273,19733,47955,34345
+72274,13601,19658,9579
+72275,45793,48450,31379,63186
+72276,39212,64471
+72277,62769,76574,14242,81468,81036,35564,78951
+72278,66330
+72279,55061
+72280,67364,22795,53129,29068,34885
+72281,13940,75727,43116,62348,69091,26186,38863
+72282,6087,11675,4172,80485,19666,5545,63211,41360,43942,42696
+72283,17096,71826,2088,14628,40623,21806,73118
+72284,80694,30096,5833,42053,45935,35132
+72285,20250,4802,39560,43031,13760,57663,33223,18270
+72286,38713,60287
+72287,34467,3690,47939
+72288,61189
+72289,25144
+72290,21914,59379,66450,45492,43013,72305,63703
+72291,44714,1292,47529,31962,44311
+72292,66443,79323
+72293,19075
+72294,19165,69390,42575,32255,7892
+72295,48183,74653
+72296,51852,69958,35694
+72297,79942
+72298,75794,43411,77750,57309
+72299,56465,68834,20856,21037,36409,58239,33172
+72300,18280,41901,81003,79469,18740,53027
+72301,65349,70705,74344,76632,22387,24813,31346,40928,43507
+72302,64551,50321,67957,37133
+72303,56529
+72304,743,59776
+72305,49260,42970,71490,51887
+72306,62600,39173
+72307,29791,48797,59914,24023,59463,73850,71622,14914
+72308,10654,51236,32287
+72309,74082
+72310,13443,81158
+72311,53891
+72312,51239,33890,27537,71193
+72313,76292,14694
+72314,20431,76999
+72315,40230,13806
+72316,11944,33422
+72317,1303,1276,37312,8364
+72318,10227
+72319,7444,49705
+72320,68952,67931,38722,78844,75683,60411
+72321,81443,64044,45451,26586
+72322,71864,50086
+72323,63985,43845
+72324,69601
+72325,20426,69277,78504
+72326,62532,59224
+72327,45325,21795,6191,3793,73269,45150,14746,59244
+72328,18650,51307,58250,52720
+72329,33226,53943,25907,70050,21049,33071
+72330,58062,14120
+72331,39445,44547,60107
+72332,4386,29848,20334,76919
+72333,58288,47466,24779
+72334,34833,16618,63819
+72335,57847,13510,67853,24836
+72336,10497,63618,3749
+72337,79442,48227,73684,37561,31584
+72338,71620,3369,1455,42449,61453
+72339,22620,31846,28216,1669,75201,28033,10014,4061,64919
+72340,3833,29056
+72341,32373,32657,7320,66002,77912
+72342,39703,45803,31764
+72343,44418,640
+72344,31249,38057
+72345,24782,24506,41743,47441
+72346,64142,81779
+72347,14040
+72348,74833,9698
+72349,20103
+72350,13290,48283
+72351,75170,64250
+72352,74598,50696,66155
+72353,40940,23633,68746,35229,12282
+72354,16587,63496,58869
+72355,5372,72881
+72356,41037,2341,29306,24790
+72357,47323
+72358,58251,22387,75486,3747
+72359,50530,53447
+72360,54237,41813
+72361,37287,13946,29414
+72362,53671,17957,73116
+72363,63513
+72364,4514,54673,1232,20808,65719,9458,77713
+72365,3311,55984,53024,39300,11288,41700,70944,35757
+72366,50296
+72367,31419,1642,8055
+72368,34006,42286,68636,73049,29968,20593,46898,29724
+72369,45437,61284,2193,69815,3422,36004,3120
+72370,1311,21717,37385,69529,74267
+72371,6627
+72372,4547,55163
+72373,44816
+72374,1724
+72375,1129,19294,3210,71332
+72376,52464,76472,61423
+72377,56748
+72378,61894,55107,27273,4652
+72379,37833,77648,21635
+72380,51789,54319,29606,24026,2481
+72381,55172,53835,20050,35205
+72382,66101,34068,50453,57041,30295,49506,61427
+72383,24562,65332,32075,38458
+72384,23234,10833,48125
+72385,7549,1492,38555,35027,36861,47093
+72386,78170,25687,16202,22050
+72387,53967,55959,66516,4943,28659,5811,29951
+72388,37375,44794,71273,46872,23624,49686,27438,46416
+72389,36239,16640
+72390,21764,48974,48603,76224,77838
+72391,46576,24879,79687,28780,2207
+72392,29717
+72393,54691,57533,77245
+72394,81243
+72395,59932,33235,43082,57182
+72396,70711,41116,71650
+72397,13067,58177
+72398,43621,72968,49272,30093,57219,65448,79121,52187
+72399,79618,40428,70041
+72400,22198,20517,69845
+72401,19967,35051,56220,46390
+72402,37390
+72403,81378
+72404,40700,9043
+72405,48925,18611,39877,31297
+72406,71350,66344,78
+72407,1,70350,47914,5871,39360,16205,73359,11142,56729,51111,34325
+72408,11104,42169,62592
+72409,78292,2874,24494,51565,59460,38925
+72410,30538,32200
+72411,71998,71602,2100
+72412,76048,34422,61539,81835,68293,35724,51083
+72413,49196,39624,11550,1209,81165,68141
+72414,52622,43607,76519,64060
+72415,5462,17279,60604,11454,25236
+72416,43399,46503,46957
+72417,7457
+72418,1651,36905,78779,18776
+72419,61722,18128,54817,22349,56956
+72420,72432,16575,39152,15187,64050,78701,79900
+72421,17213,7885
+72422,498,68198,33895,57933,39042
+72423,19678
+72424,73166
+72425,25562,61242,14998,58040,80857,37056
+72426,41111,76530,40577,33935,74511
+72427,57688,73551
+72428,11428
+72429,11402,17663,78056
+72430,10235
+72431,55737
+72432,17318
+72433,23648,32189,1244
+72434,55406
+72435,23626
+72436,65963,45192,23006,26605
+72437,79704,8903,24792
+72438,64052,755,9568,61403
+72439,56920,38535,58874,79576,49077,13395
+72440,4169,14933
+72441,48063,65640
+72442,31585,39244,18959,67817,17669
+72443,65555,56448,29648,22579,64421
+72444,42592,68674
+72445,25171,20500,19173,28877
+72446,70438,30475,46938
+72447,44507,17899
+72448,20762,3194,68697,73510
+72449,39698,77685,16383,3825,41902
+72450,35125,81195,54751,18953,29816
+72451,62332
+72452,80541,25141
+72453,15843,16952,37664
+72454,79018,56406
+72455,6908,52544,74081,34779
+72456,42326,63076,16594
+72457,28125,47144,11860
+72458,53130,32390,43040
+72459,72248,65289,21802
+72460,9252,54328,68233,32580
+72461,58744,39234
+72462,66381,14217,41349,72033,2637,28729,46129,15860
+72463,9368,34979,23944,79822,30435,27500,44532
+72464,18767,14957,8200
+72465,23725,30956,33568,4847,74221,46836,46022,11094,75903,5973,43845,69635
+72466,28924
+72467,28059
+72468,7250,8344,45356
+72469,26155,22212
+72470,49802,42069
+72471,57171,38221,17998,50494,41502,38149,68483
+72472,24100,45786,21010,47118,47794,60739,23664,7670
+72473,14938,38882,8523,57870,17091
+72474,667,50903
+72475,22481,18848,63336
+72476,73910,516,18873,44185
+72477,37589
+72478,78476,46920
+72479,425,12825,71730,62535,63138,74562,39414,16480
+72480,2495,44195
+72481,55022,26465,43769
+72482,3307,17334,42662,58355
+72483,65002
+72484,46796
+72485,66754,55880,26339,39130
+72486,59878,59407
+72487,30537
+72488,81767,45509,74581,19597,74949,32978
+72489,11750
+72490,24698,68617
+72491,71227,54204,8428
+72492,40243
+72493,26427,63310,46647,67179,80596
+72494,4940
+72495,62248,62043,3631,40308,34299,27259,78988
+72496,72683
+72497,67091,25821,72128,4375,1619
+72498,48214
+72499,34182,56342,67615,44316,43014
+72500,38751,78509,7253,12886,24608,75362
+72501,14548,80300,35871,53267,77848
+72502,79842,2737
+72503,2992,19196,81396
+72504,61991,45665,79727,19951,34117,65958,42229,64124
+72505,17311,44160,29099,3354
+72506,49096,17171
+72507,22900,70855,33482,8037,33617,16428,66343,8199
+72508,19159,9638,2484,6204,1960,18805,50063,64856,67549
+72509,26255,59161,72881,63998,10374
+72510,26737,72480,28938,17757
+72511,75876,72923,69082,32385
+72512,79279,45667,51614,12826,60472
+72513,59099,22544,52326,63807,59858
+72514,80179,63271,36532,32709,41014,62801
+72515,14288,27294,5886,31363,27165,56634,25590
+72516,4536,54313,11973
+72517,23749,42511
+72518,38456,49258,51231,22309
+72519,76480,26591
+72520,45297
+72521,56904,64628,22958,46975
+72522,7422
+72523,10986
+72524,70325,1660,43811
+72525,12215,2617,73398
+72526,60598,40567
+72527,7405,80377
+72528,70012,63340
+72529,19079,73808,17236,1903,58518
+72530,65930,67344
+72531,48831,33940,64270,62188
+72532,19468,56665,15474
+72533,4625,63436,55074
+72534,54886,6226
+72535,4459,68406,49624,65968
+72536,61988,25080,71541,48692
+72537,9844,63976,70591,35930,67164
+72538,32233,24991
+72539,49236,49544,7327,8056
+72540,13921,27584,26861,26040
+72541,35488,12167
+72542,23006,10591,9489,16651,39864
+72543,70307,70312,44597,6864
+72544,58277
+72545,22768
+72546,31236,9241,2401,61903,38645,45160
+72547,49621,9898,81069
+72548,72194,23455,40504,62521
+72549,24154,38912,16117
+72550,34640,60234,19756,68214,80248,75985,47025,58430
+72551,35186,76717,33074
+72552,80568,3920,3652,48263,30541,79947,129
+72553,63962,72729,27022
+72554,25417,33636,7070,44122
+72555,2051
+72556,45257,57028,52661,15457
+72557,74774,35705,54572
+72558,32091
+72559,16031,8996
+72560,62838,31059
+72561,22853
+72562,73936,14196,20249,41294,32890,72216,2403,37494,53916,70641
+72563,9666,21868,12468
+72564,73837,13331,35951
+72565,74268,16587
+72566,46421
+72567,29939,30103,9136,79662,51106,50911
+72568,8311,72260,29135
+72569,9844,3121,17155,64135,75333,67856,56250
+72570,77668,30361,78973,37671,47538,36030,28943
+72571,54612,35826,39770,28722,68939,65219,2960,78123
+72572,41055,74660,8462
+72573,3754,41334,21007
+72574,29156,57078,77851,48674,40310,76424
+72575,14009,66764,22542,38420,63020,52945
+72576,37028,23148,57801,16036
+72577,8267,45747,66765,27055,637,66899
+72578,49624,58784,77703,21551
+72579,1543,69613,32416,70720,69045,58243
+72580,59023,66369
+72581,2146,68152,36418
+72582,48822,61140,32973
+72583,54724,18721,60336,15067,23867,59601,19862
+72584,6999
+72585,52391,15986,17522
+72586,1974,49817,19846,58570,2116,57476,81397
+72587,50013,3010,21476,8229
+72588,65312
+72589,69163
+72590,53891,82186,49834,14324
+72591,81340,8891,13353,58114,11968,62247,40622,51821,80131,51686
+72592,75986,41651,56194
+72593,23610,46989,53302,42923,54437
+72594,64333,22595
+72595,76704,61791,78832
+72596,45401,78940
+72597,71774,41551,38341,52003,11944,5703,53135,57859
+72598,626
+72599,50722
+72600,8990,33922,16518,8103,16976,9663
+72601,32439,71826,40246,2060,72743,30636
+72602,46785,80525,4959
+72603,43601,63453,64500,76669,74156,78673,77874,56671,25770
+72604,54766,36425,77033,31139,30420,4820
+72605,30533,76669,48057
+72606,23488,13004,2518,52248,62306,34184,42104,74000,17736
+72607,56949,42047,78458,28998
+72608,57874,73755
+72609,43776,62010,64641,70441,24481,61653,39097
+72610,71480
+72611,67234,64812,59632,60097
+72612,69057,20043,7
+72613,72671,62392,24620
+72614,33592,60739,36482,77788
+72615,55264,76800,74803
+72616,14030,44725,60342,73138,77648,80873
+72617,152,10569,3013,66444,18921,30659,56943
+72618,44622,57479,31018,20985,54721
+72619,61758,71645,58237,55869,9746,60508,30146,5728
+72620,57636
+72621,15016,27059,44810,53985,15889,22477
+72622,69347,58498,17681,8155,43130
+72623,71527,72670,28498,68589,38360,39457,75984
+72624,7210,22193
+72625,7300,25643,10153,47939,40022,78381,51870
+72626,20051,68995,8296
+72627,60110,68707,11225,9254,5894,41615
+72628,54195,12031,11427,74892,39563,61504
+72629,6398,1164,14299,46576,32715,20729,79416
+72630,80971
+72631,35667,15299,48619
+72632,13573,64805
+72633,9230,48838
+72634,32788,44118,10290,34735
+72635,54073,72464,60097,38803,71852,26114,48237
+72636,73398,77429,25153,81607,46912,1073,37621
+72637,19127,62074,42026,7153,14796,15915,12759,3960,52879,433
+72638,35235,71543,48799,60608,68758,66654,70095
+72639,1117,46451,72605
+72640,44664,24119,40869
+72641,55810
+72642,7439
+72643,51810,76113,22507
+72644,69200,54321
+72645,80281,11741,39293,7533,40668
+72646,40221,64099,23046,44264,53873,12672
+72647,80403,75163,45008
+72648,31827,38574
+72649,63807,13654,27622
+72650,10043,65148,43425
+72651,64989
+72652,39725,49853,38589,51516,51313
+72653,50197,72319,63576,77656,31223
+72654,24524
+72655,6477,50420,62823,54904,54143,70634,34589
+72656,31725,37302
+72657,33979,47607,48121
+72658,51733,2605,50872
+72659,76765
+72660,26487,1843
+72661,53086
+72662,10984,48481,19744,45136
+72663,6747,23863,81814,50971,17111,40948,79573,42489
+72664,79824,81385
+72665,53387,28018
+72666,28713,40185,59494,32389
+72667,18628,60412,35703,66621
+72668,66440,38663,44322
+72669,73124,56874,58680
+72670,10821,35600,21845
+72671,50987
+72672,63578,67916,62683
+72673,45913,9569,33564,73115,13455
+72674,66748,58067,56150,25452,42946
+72675,24381,40418
+72676,23496,54514,26958,54171
+72677,27642,45297,32788,29297,61685,32925,58611,15801,40052
+72678,55478,5131,50511,74157,22936,29162,78444
+72679,21556,17497,68403,52150
+72680,49409
+72681,30956,24557,27405
+72682,82073,67758,10658,25077,506,27485,52665,3794
+72683,76868,65035,28721,7091
+72684,41046,14715,2291,70090
+72685,62832
+72686,49129,66910,79483,64905,49140
+72687,64958,7242
+72688,30206
+72689,11830,42946
+72690,38844,33825,63089,65122
+72691,1794
+72692,51630,4237
+72693,29594,51318
+72694,65099,25704,29340
+72695,73671,17732,82136,24003,21351,81706
+72696,41796,59481
+72697,16709,358,64574,55405,19128
+72698,38418,56640,74349
+72699,44768,22495,37942,8603,81884,73826,55429,22834
+72700,79502,64018,18628,22742
+72701,30091,57378,16451
+72702,34582,36100,56480,56215,31964
+72703,56152
+72704,68853,62297,29096,61166,23456,35749,55774
+72705,68373,81450
+72706,19668,60881,76918,47112,63102,69219,26793,21666
+72707,73635
+72708,67765,51089,1295,50227,72219,26948,76017,75653
+72709,16484
+72710,18586,45772,57243
+72711,28606,24499,51055,68542,37995,54451,73450
+72712,70997,24175,45208
+72713,50087,53049
+72714,58730,54927,9607,52063,38107,5923
+72715,53106,9425,18863,68377,56,904
+72716,37671,72643,72262,31166,10115,79318
+72717,40808,54188,21031
+72718,19194
+72719,20700
+72720,49386,12971,35220
+72721,24632,79284,6478
+72722,57470
+72723,26694,79147,22549,15299,67999,51394,51714,72344,65792
+72724,51561,14040,78152,13311,59736,34570
+72725,22019,37067
+72726,78324,37652,63452,29173,41847
+72727,45706,54684,11908
+72728,32986,58296,30560,56196,2025,36970,12914
+72729,54412,51050,81909,36541
+72730,20488,22137,44198
+72731,57974,39114,56090
+72732,57884,39036
+72733,12993
+72734,46647
+72735,69580
+72736,37128
+72737,14150,6342
+72738,71813,62460,36443,31747,51512
+72739,36615,55791,1189,7209,23690,50819
+72740,16055,53456
+72741,17184,34692,23887,17809,6809,76491,22287
+72742,62648,73191,78247
+72743,75135,77926,59272
+72744,38311,68819,56333,77729
+72745,10354
+72746,23542,29385,8010,48167,42729
+72747,36013
+72748,31999,688,7792,30614,22655,61340
+72749,35385,41839,81112,75995,78049,36444,7773,36172,57433
+72750,82136
+72751,9213,69501,68791
+72752,22975,18240,67043,29177,6066
+72753,76581,36494,78496,30300,80051,34809
+72754,51982,9803,14431,60248
+72755,64991
+72756,64448,39034,16760,22731,73659,19373,35531,63519,58834,15341
+72757,14939
+72758,61509,16604
+72759,10975,183,5607,80498,69590,32598,79225
+72760,64677,76248
+72761,33649,61317,58222,53566,14987,70946,64430
+72762,18748,47817
+72763,64131,25472,36603,49002
+72764,49565,50451,10264,36955,67466
+72765,26221
+72766,23061
+72767,70029,66871,42269,25929,78994,13319
+72768,20376,61095,16373,71683
+72769,31599,55174,69998,32466,55516
+72770,62913,4489,34587,77067,60130,79289,47099,56787
+72771,36595,19349,68467,3192,62556
+72772,52678,54373,78480
+72773,6927
+72774,54007,40838,53369,889
+72775,13835
+72776,57413,22573
+72777,41190,14051,18404,12129,53801,34296
+72778,25340,37053,73681,39325
+72779,5951,142,53036,7094,2026
+72780,72791
+72781,18773,62888,51253
+72782,48889,76728,21379,72354,79817
+72783,67683,44835,52272,45744,55573
+72784,77713,43068
+72785,58548,38143,68104,36954,65010
+72786,1114,31775
+72787,6157,13422
+72788,16880
+72789,20967,13842
+72790,17868,11374,67372,34834,27497,16484
+72791,57703,32129
+72792,46809,6842,26041
+72793,64071
+72794,35687,7923,20566,73891,2582,71110,77911,60308
+72795,70965,82142,23968,74893
+72796,51288,16031
+72797,30777,47847,77369
+72798,11413,55734,43801,40326
+72799,33602
+72800,13238,22929,62041,68577,52349,1668,22316
+72801,29367,53633,67022,13832
+72802,27697
+72803,23186,35576,73384,24872
+72804,11779,34035,13372
+72805,22850,81843,25539,69440
+72806,12794,75987
+72807,43725,63699,81001,10071,53039
+72808,40617
+72809,76868,25241
+72810,79148,9821,63729
+72811,13788,63956,9291,13568,9196
+72812,70300,53480,18413,69977,70626,47668
+72813,57940,46826
+72814,71042,45855,50036,32714,73243
+72815,42322,43088,35594,37884,5861
+72816,1227,10365,26417,31264,44124
+72817,80098,62443,71396,63594
+72818,66453,77931,42268,70232
+72819,49836,65333,3638
+72820,72147,64793
+72821,52567,48618
+72822,78569,32671,1744
+72823,58268,37331
+72824,26651
+72825,31361,77596,46692
+72826,16670,64250,72231,42709
+72827,65807
+72828,17810
+72829,78325,71480
+72830,80541
+72831,43730,41606,12505,1689
+72832,56301,70912
+72833,26796,10177,81795,52142,41821
+72834,63925,67656,54503,16897
+72835,36508,6463
+72836,2798,18079,62449
+72837,37822,23364,63827,24202,58812,849,7725
+72838,56057
+72839,69498,50350
+72840,56276,71833
+72841,1604,6670,41369,54020,38664
+72842,66440,45834,1376,3726
+72843,56996,68552,20788
+72844,48199,43941,55867,32373
+72845,9723,35482,13995,16706,30036,13375
+72846,33369,15901,57000,7610
+72847,2234,54110,2766,66458
+72848,11504
+72849,46737,78305,71024,52688
+72850,40726
+72851,61621,72793
+72852,57365,21615,47191,764
+72853,20046,78686,70295
+72854,77408,64866,46558,66362
+72855,28345
+72856,67473,78770
+72857,77838,28357,3944
+72858,29238,79626,67607,49799,11693,39272,52069,29366,57949,13388
+72859,77911,39611,16746,61134
+72860,70827,10660,77462
+72861,28814,8317,47407
+72862,32216,59583,61882
+72863,70106,31156
+72864,68279,2131,72360
+72865,59287,62068
+72866,79337,10028,72403,72734
+72867,42636,66706,81850,19381
+72868,52640,51539
+72869,48849,51582
+72870,21460,3952,3401,6636,81962,70063,74561
+72871,34006,25289,52817,82003,46652,77130
+72872,37819,9161,68927
+72873,40484,38332,40244,40079,54160,27776,71444
+72874,81009,43260,72243,23503,71001,63071
+72875,73268
+72876,22410,15
+72877,9689
+72878,56790
+72879,73491,81224,49463,38509
+72880,2799,53772,56418
+72881,59930,81754,81086
+72882,8353,51881,51581,34878,42612,7076
+72883,21990,41546,55761,30169,23174,62903
+72884,18250,29179
+72885,31810,61359
+72886,10202,14649,9479,15084,59864,81302,80553
+72887,27276
+72888,59541,54230,18270
+72889,80978,77899,13466,61407,58424,40004,81210,60358,34750
+72890,72390,11107,54053,27405
+72891,65817,28416,40854,26015,30683
+72892,48410,48005,6260,15812,39884,58104,43819
+72893,34829,63130
+72894,2621,64106
+72895,36166,12125,51210
+72896,67211,57021,55196,17823,33467,5347,73999,44486
+72897,67535,76584,70689,55701
+72898,7191,67049
+72899,79360,63106,23037
+72900,55812,39324,69158,69631
+72901,57000,74062,39734,29277,5605,34745,58722,72675
+72902,28974,81089,49950,28555,61178,1329,75150
+72903,53346,80349
+72904,69857,60879,16751,65371,63908,53241,34120,11005,11034
+72905,51995,33439,22269,2464,19959
+72906,48001
+72907,4852,9846,15962
+72908,33111,10689,65928
+72909,28476
+72910,44973,32492
+72911,30424
+72912,81777
+72913,52383,41995
+72914,78884,955,2286,28773,18069
+72915,42028,10049
+72916,3360,51332,29261,64386,80412,48621,63316
+72917,16152,36678,14505
+72918,58567,16772,705
+72919,66550,41059,48527
+72920,3692,8934,38018,25161
+72921,15708,5017,37818,74580
+72922,47324,13313,75099,60931,34750
+72923,17691,64085,26375,34932,62897,73890
+72924,20169,11634,76940,28823
+72925,62161,28111,66247,75004,10962,53809,28762,74369,34721,9057,73401
+72926,12128,75275
+72927,40817,62614,69676,37545,1060,26348,6781
+72928,34504,56244,30937,58477,61453
+72929,40486,66826,46518,11383,58668
+72930,13622,52606,53235,2825,11262,9399,1669,44572,59711,64967
+72931,17594,36317
+72932,32358,49175,35070,20731,42173
+72933,79935,115,10420,9405
+72934,44427
+72935,28253,60323,5377,73611
+72936,55895,80380,5250,8487
+72937,18212,54895
+72938,33089,27364,68734,16378,18424,48086,25954,49588
+72939,62595,68451,40672,17453,74559,10291
+72940,78508,45396
+72941,30860,35063,74048,65194,69883,50002,16003,81826,3804,9224
+72942,2654
+72943,16685,65729,37021
+72944,64765
+72945,77278,10100,66474,41463
+72946,18773,25788
+72947,67768,42746
+72948,42900,3703,36038
+72949,76515,22837,2440,73373,14036,22231,33337
+72950,48044,27186,74605,76926,39058,79787
+72951,79218
+72952,30525,21466
+72953,28077,66715,69497,80594
+72954,46506,44686,28038,65242
+72955,72145
+72956,28108,5867,78091
+72957,77790,16989,69738,77984
+72958,72245,30731,71343,40148,60567
+72959,27431,25444,9560,25730,1175
+72960,1535,15359
+72961,10763
+72962,78346,39571
+72963,39921,55766,74081,76621
+72964,35003
+72965,43112,71607,57041,3254,45314
+72966,13767,74619,19692
+72967,67010,5828,16186,40773,72859,67186,14333,4994,81758,34973
+72968,14650,44016,75186,16741
+72969,7641,37778
+72970,13940,10633
+72971,31872,49468,34434,15074,69565
+72972,9487
+72973,64532,32014,38817,52580
+72974,49729,2720,76122
+72975,13925,56531
+72976,37242,42330,81303,73931
+72977,27793,27306,55723
+72978,56418,36784,34783,66885,32247,42904,67102,78630,7871
+72979,81871,15329,68840
+72980,9775,62298,66475,53699,15603,52303,7178,37713
+72981,81482,68764,20425,12818,9654,49768,45839,74002
+72982,19327,79659
+72983,1674,3591
+72984,19465,58122,60453,66089
+72985,64107
+72986,57594,66902,55517,66211,8776
+72987,13302,17065,20757,24397,54068
+72988,26244,5884,43373,26067
+72989,77963,48267,58113,60330
+72990,57876,74543,51852,68599,35018
+72991,23266
+72992,53628,18697
+72993,56460,64671
+72994,20780
+72995,30213,28261,36487
+72996,52850
+72997,58827,44878
+72998,52929,77926,44143
+72999,79117,65915,72128
+73000,34291
+73001,56384
+73002,28917,18958,20913,36410,22621,10945,55358,32013
+73003,42157,28941,9904,54582
+73004,54860,14292
+73005,76682,27417
+73006,25666,31393,71348
+73007,4331,27148
+73008,47364,48031
+73009,21583,35158,69149,39675,4918,47374,20219,67574,30911
+73010,54253,33665,69948,8058,17599,4712
+73011,1115,28398,8887,31377,8568,55501,32268,44356
+73012,71956,30525,81352,16432,55971,78421,40977,44260
+73013,21732,21636,61674
+73014,55224,13570,4309,25656,70216,73645,71797
+73015,16375,37225,75379
+73016,64303,27245,63249
+73017,61155,70555,64960
+73018,79664
+73019,44763,6181,77504,79117
+73020,52174,12476,43401,22480
+73021,40083
+73022,79301,4047,49037,29162,27629
+73023,50745,18104,76876,12480,74702,55617
+73024,29797
+73025,5857,81569,46866
+73026,56626,75185,40095,74150
+73027,55057,59824,24330,7382,46515,51606,62696
+73028,77760,32303,68743
+73029,72985,17318,56661,22264,49124,17759,11122
+73030,43261,37445,55613
+73031,11442
+73032,28480,50812,32056
+73033,51805,47403
+73034,75012,65115
+73035,77235,70931,69878,41506
+73036,23925,61323,47433
+73037,5350,73947,34060
+73038,2160,69594
+73039,27040,23804,29267
+73040,70209,7725,49259
+73041,60794,33769
+73042,62831,16585
+73043,4683,40194,46294,72459,26148,10350
+73044,12810,61383
+73045,78261,77340
+73046,46275,73450,66261,40752
+73047,23205,2921,18945
+73048,60371,28769,41536,31911,21717,7650
+73049,57001,70888,39779,26287
+73050,80570,29753
+73051,10343,49357
+73052,37161,6570,17999,51112,19803,27553,70194,15051
+73053,75206,48024,37327
+73054,27402,9173,8131,78196,49207
+73055,21403,70628,73621,35706
+73056,72849,14475,49529,64381,35967,70480,20159,74285,30748,54013
+73057,6758,21992,63348,34302,75435
+73058,60931,30970,34351,80957,6534,45970
+73059,27454,55122
+73060,78779,32917,26245
+73061,11070
+73062,61973,63661,25126,39751,1340
+73063,65153
+73064,14615
+73065,20240,13726,48161,60932
+73066,53428,58118
+73067,67341,534,22116,69210
+73068,38058,37124,35672,81910
+73069,63251,17815,67494,65371,59073,54076,616
+73070,29982
+73071,9026,58916
+73072,70064,67396,1269,17131,4522
+73073,589,39186,81488
+73074,23869,23067,63887,21380,27695
+73075,76810,48145,67951,54876,31060,37404,77996,5049,81534,71817
+73076,16772,39394,30871,37374,56928
+73077,43044
+73078,42272,1722,11099,65950,73857,30845,66165,49776,17247,61146
+73079,47878,55285,13840,14840,81385,57901,50112,14490,62377
+73080,39439,5330
+73081,45486,18549,6878,77651,76469,60621
+73082,65136,80560,69654
+73083,49599
+73084,28070,1994,54312,63763,10460
+73085,28237,32405,58576,16445,42991
+73086,26539,15327,68098
+73087,53935,16602,15811,7187,59620,21788
+73088,65007,39164
+73089,70445,286,48153,54381
+73090,43068,73989,44337
+73091,3673,61167,73008
+73092,56811,982
+73093,54760
+73094,35197
+73095,30858,58821,8095
+73096,25273,376,26289
+73097,30027,35214,9978
+73098,68213,55428,42614,50795,53031
+73099,7605
+73100,51157,2066,4514,66449,38030,19423,44479,34003,68720
+73101,73116,15848,44650,46521,11928,32711
+73102,33283,47435,28587,23698
+73103,42126,44966,81386,35432,59188,51918,50669
+73104,10778,14258,10536,62054
+73105,43665,27032,79215,57565,68610
+73106,17299
+73107,68518,35930,35391
+73108,78503,41765
+73109,74178,306,75775,26214,44991
+73110,14346,31610,60400,26797,21250,64855
+73111,52345,40582,6794,29431,52255,9962
+73112,7276,48529,80919,2334,2654
+73113,68184,19783,39656
+73114,14671
+73115,7579,11889
+73116,60936
+73117,78320,24637,62935,43957
+73118,26719,21040
+73119,79464,76416,52917,12030,66916,51940
+73120,17045,15097,75717,32874,25915,52391,16668,72816,52992
+73121,22671,17042,69654,10852
+73122,78990,62953
+73123,51529,57851,31909,39957,8016
+73124,28847,57152,81680,48295,66225
+73125,66443,45291,10374,16453,33248,69634
+73126,11864,9640,16921,71383,32127,26230,32160,37718,33814
+73127,74413,81721,45105,33837,10543
+73128,79016,48587,59635,4272,52511,61006,34857,45887,66849
+73129,31399,28607,56565
+73130,60975,39259,8261
+73131,4947,46683
+73132,1163,27637,19087,67612
+73133,29150
+73134,78615,53268
+73135,38893,52356
+73136,53828,50231,31496
+73137,32488,11780
+73138,43617,66173
+73139,47583
+73140,22889,74231,80082
+73141,75059,7018,28381
+73142,18870,20334,53857
+73143,77578
+73144,8867,58294,61028,56386,79303,40863
+73145,41609,46681,53306,61154
+73146,34494,63322
+73147,63880,29287,54793,29030,80934
+73148,16449,24582,21079
+73149,63348
+73150,14087,32588,66104,69634
+73151,51664,72729,64145
+73152,25914
+73153,45594,48971,34503,29997,28753
+73154,28068,42377,33392,71240,59388
+73155,28582,52029
+73156,80931,55435
+73157,71046
+73158,1650
+73159,53251,64500,74410,37675,13434
+73160,6609,81998
+73161,63909,67895,50213,40253
+73162,20448,80936
+73163,28576,35602
+73164,59480,38667,31805
+73165,48934,42662
+73166,59601,67483
+73167,9374,78121
+73168,42953,52232
+73169,69177,71456,12137,21395,58942
+73170,67576,17066,10342
+73171,2351,27000,61189,69610
+73172,9665,56066,69248,80874
+73173,12469,27324,23652,20066
+73174,79124,73133,41772
+73175,16068,36223
+73176,58151,37581,80660,55197,67234,14927,25923
+73177,17188
+73178,34481,41548
+73179,26149
+73180,78403
+73181,63325,35652,904,18303,17016,67017,4337
+73182,67861,17792,55868
+73183,65200,34337,44045,44693,36196,38360,50205,76015
+73184,21477,37776,43773
+73185,43021,15671,74548,6794
+73186,15741,26511,14186,40688
+73187,81101,37515,10190
+73188,66208,27844,33063,59877,36620
+73189,56491
+73190,36562
+73191,23332,26509,39813,69099,64611,64157
+73192,34006,25882,6980,2070,75880,14280,13683,79981,76041,37422
+73193,34491
+73194,76895,42986,78319,49057
+73195,81453,64585,53681,11427,42659,38626,34282,52422,474
+73196,73064,80137,28678,23103
+73197,56640,877,20342,54578
+73198,36499,51150,27904,1200,21533
+73199,11063,75172,53753
+73200,51569,71035,5899
+73201,34941,45893
+73202,45618,70795,69713,76102
+73203,61572,65932,20921,62704,13899,19143,7155
+73204,15557,25645
+73205,79946,79290,48019,4369
+73206,78365,10038
+73207,75158,57121,324,13743,34399
+73208,6215,14796,50888,12954
+73209,64862,10840
+73210,53730
+73211,11236,73506,52068,11274,31488,40748
+73212,73660,48873,72620
+73213,64959,48950,29124,17850,1287,77623,6054,67962
+73214,2159,56563,73034,17451,70887,70051
+73215,64665,30529,62173
+73216,48785,27133
+73217,43702
+73218,79504,44702,41509
+73219,49300,35667,58885,26477,78373
+73220,27601,8234,6067,32101,60408
+73221,68631,25335,48481,30163
+73222,62663,18631,32811,23707
+73223,37734
+73224,59733,15533
+73225,52955
+73226,4633
+73227,40733,440,40931,38236,28124,39221,74739
+73228,50925,30947,36595,60591,67135,38958
+73229,46337,61849,7471
+73230,58505,77961,78946,18833
+73231,48174,60664,67797,59101
+73232,1091,51461
+73233,52246,34716
+73234,58177
+73235,31775
+73236,20680,53866
+73237,8889,41447,72969,71562,39366
+73238,40452,77356
+73239,38737,15893,68432,45225,38446,48748
+73240,81318
+73241,26782,47058,80997,42202,9997,32737
+73242,9279,73631
+73243,80120,33471
+73244,60633,57455,34597,36668,53518
+73245,25351,50774
+73246,1985,41177,16633
+73247,76520
+73248,2110,64038,55141,58940,31469
+73249,54439,12813,41688,34346
+73250,52849,78279,41974
+73251,59650,12505,65250,3480
+73252,40669,48946,30164,52385
+73253,27577
+73254,58293,47647
+73255,35577,37735,52290,50626,26091
+73256,16612,11276,56441,65455,21280
+73257,36689,32803,66554
+73258,62730,60936,35116,63193,39260,17710
+73259,27101,69743,65744
+73260,16179,18538,24873,24030,42561,57237
+73261,70415,52697,5891,48348
+73262,13929
+73263,35054,12577,34199
+73264,23542,11328,51321
+73265,6348,51908
+73266,455,45893,26444,4951,51410
+73267,45869,1274,65108,35110,33597
+73268,25124
+73269,43904
+73270,15593,67982,27185,33101
+73271,7649,40652,57449,40961
+73272,43027,4905,21436
+73273,59072,29094
+73274,18105,62995,40498
+73275,36127,26350
+73276,69953
+73277,48063
+73278,49101,16560
+73279,57459,75966,1296,42826,71092,50434
+73280,26537,61602,8101,18201,18552,53866,37248,55444
+73281,32979,14865,71801,22510,12947,74573
+73282,71960,42853,24662,64045,53100
+73283,49315
+73284,37175,66337,50580,72934,55533,15770
+73285,13466,42853,50982,76409
+73286,49483,22828,18282
+73287,29447,66518,11967
+73288,26997,70681,30424,38351
+73289,17702
+73290,38155
+73291,26731
+73292,79514,9674,54232,81942
+73293,38491,53282,4421,55782,53324,48850
+73294,81654,36157
+73295,69797,49199,19975
+73296,3662,57636
+73297,37787,45456,72101,12111
+73298,6487
+73299,52439,57673,71891,47091
+73300,18989
+73301,82079,76584
+73302,53878
+73303,13847,66601,27701,27274,68903,69258,22682,37855,40280,15561
+73304,12681
+73305,8670,77191,21397
+73306,35793,27405,30202
+73307,46569,14128
+73308,69393
+73309,71865
+73310,19011,60456,26440
+73311,855
+73312,40902,54243,53251
+73313,8005,19258,13982,31617,48078,4116,43618,38439,30493,20833
+73314,59062,40520,12802
+73315,24220,26989,44658,80101,27434
+73316,33924,5096,72336,68180,43512
+73317,68115
+73318,36362
+73319,65800
+73320,49838
+73321,21051,29190,22631,50606,42620,12189,37747
+73322,52714,17976,71003
+73323,57198,546,72595
+73324,45477
+73325,48133,23850,53103,30289
+73326,65342,74377,25938,40477,9225
+73327,60767,32172,18399,37676
+73328,62180
+73329,32667,43920
+73330,7449,76620,72502,71056
+73331,18262
+73332,25114
+73333,11003,40811,14228,64384,8644,53507
+73334,56726,13008,74501,70231,21770,61500,77795
+73335,45489,40605,80241,29723,4825,34978
+73336,79082,51955
+73337,67300,70403,32849,75539,28620,66374
+73338,57910,75642,28970,43428,71441,11792,58255
+73339,60290,71498
+73340,36482,61896,43193
+73341,64710,37438,5471,63215,72484,32114,5854,10123,50567,51583
+73342,41456,41558
+73343,35628,65562,64831,81062,16960
+73344,7355,60972
+73345,21838,62902,79837
+73346,54556,25643,24844,21078,24761,68369,61452,33306,21383,78324,61927
+73347,69252,13385,34424,75691,61487,64750,18497,71896
+73348,64396,52567
+73349,69722,64332
+73350,44425,63901,70158,17306,13892,66415
+73351,54225,44495,4610,49874
+73352,40224,54434,13741,57662,34169,16298,57586
+73353,17393,40325,63065
+73354,36192,61601,66116
+73355,34446,36494,41205,61368,37064
+73356,23
+73357,17408,24880,62067,69043
+73358,62639,65840
+73359,58077
+73360,31067,20641,53897
+73361,27564,52514
+73362,58531
+73363,62415,15547,17468,23760,9187,23053,50411,80392
+73364,52100,1296,21566
+73365,1831,30042,7170,33152
+73366,38241,41803,16194,79934
+73367,7652,12217,75881
+73368,35890,3034,33861,61142,60892,4605,78035,48527,56936,55439
+73369,16118,12881,7243,60074,50054,69727,81702,30575,428
+73370,683,598,66584,31944,40755
+73371,28461,62171,35465,40535,7780,66051
+73372,76351,64332,17915,63053,3134,65728,49510,54917,21036
+73373,4150
+73374,69272,64817,40931,67541,27092,58916
+73375,17194,63434,36330,17199,27454,70754
+73376,41921,62620,74278,4081,1525,74999,35584,71005,41548
+73377,9828
+73378,20755,28034,5132,63357,40974,81070,34082
+73379,52614,21320,9967,27068,13444,39876
+73380,5537,17412,14838,15781,68247,33269
+73381,59624,74625,72528,48498
+73382,39844,38097,19918,25310,17942
+73383,5140,55030,42440,4961
+73384,7883
+73385,15,32182
+73386,10423,52329,10991,67820,23740,54726,78809,40915,50445
+73387,11937,20585,19236,58729
+73388,51449,24844,42661,10250,75617
+73389,56444,65704,50507,71167,76278
+73390,25609,12258,28429
+73391,77313
+73392,42009,38988,28711,10820,2604,79697,45847,66840,72794
+73393,21880,29940,11936,68140,46759
+73394,24437,52618,10649,640,51048,75348
+73395,56238
+73396,82069,80807
+73397,25859,80741,7620
+73398,5113
+73399,3266
+73400,49937
+73401,70929,2641
+73402,42575,58295
+73403,65492
+73404,59291,52183,58033,58862,55201,70898,69723
+73405,73048,65845,9284
+73406,73226
+73407,11287,64426,61709,13471,80942
+73408,27404,36768,78774,26934,4388,72857
+73409,59445,33220,41511
+73410,11120,6826,58576
+73411,15801,71044,73897,19024,7180,1212
+73412,50655,32967,24630,8316,36717
+73413,70910,34509
+73414,38455,50753
+73415,25983,26680
+73416,66195,32883,21877,38423,61787
+73417,36745,64805,6509,27470
+73418,26361,71282
+73419,74743,16218,32056,47546
+73420,48847,34216
+73421,69018,41019,80108,15201
+73422,17876,67896,7247
+73423,61494,48089,42710,66158,9616
+73424,14400,9551,71382
+73425,76273,52350,79903,49863
+73426,69393
+73427,9417
+73428,80214
+73429,43550
+73430,74992,813,52892
+73431,67850
+73432,13498,42616,32081,76302,58771
+73433,48991,58237,61226
+73434,17007,28619,48060,909,35927,72404,71604
+73435,64257,64080,73070,79173
+73436,9613,16463,52486,37452,66349
+73437,24534
+73438,14832,42119
+73439,44263,25503,41509,29124,8746,80688,29429
+73440,20730
+73441,53376,68288
+73442,63033,80693,32871,49819,76055
+73443,45758,59629,32056
+73444,11373,43355
+73445,81981,62909,48344,17926,37274
+73446,58295
+73447,78225
+73448,65433,45735,40752,1901,6797,26112,18100,75737,38012
+73449,78997,29817,14793,34579,79815,55512
+73450,81634,40412
+73451,43044,13906,30141
+73452,48351,45924,15412,52336,62734
+73453,68451,27447,5334
+73454,81458,37343,5286
+73455,20624,32107,57256,67157,28255,67076,45411,24605
+73456,18842,7445,63646
+73457,30399,57915,75000,63574,21792,57106
+73458,22607,47926,8168,12911,23132
+73459,47488,56668,66323,58367,10045,5961,30214
+73460,51047,64630,3346
+73461,19776
+73462,33881,21234,49467
+73463,41982,8204
+73464,33930,47838,20095,35005
+73465,16415,62264,7001,68922
+73466,12283,55065
+73467,47186,26750,43941,70295,79261,72565
+73468,19203,32830,44500,365
+73469,32822,26151
+73470,37309
+73471,61454,18885,59977,46281
+73472,81186
+73473,7440,13201,17724,15626,22931,30113,1498
+73474,33566,61421,16396,18138
+73475,3719,26139,1334
+73476,6930,58680,28900,19294
+73477,15767,3296,7760,76515,78875
+73478,80483
+73479,6465,22299
+73480,21726,16630,72198
+73481,59554,75980,35333
+73482,4832
+73483,49375,14279,71064,41754,49826,37536,68550
+73484,4036,68910
+73485,21857,10075
+73486,61655
+73487,72152,59927,69389,680,32493,72001
+73488,9874,26407,27007
+73489,62906,69887,45241,39136,39106
+73490,38584,67787,6085
+73491,15681,64705,23573,1658,42870,2463,30256
+73492,76677
+73493,14488,22877,72648,20203
+73494,13413,77916,74264,25390
+73495,60696,77474,5520,63995,35258
+73496,29244
+73497,26831,62321,43836,69070,22556,32478,45348,9955
+73498,3539,29053,32105,11468,62838
+73499,41389,19784,58076,56126
+73500,75326,4108,47557
+73501,44589,56613,70253
+73502,56204,10276,29500,45828,30822
+73503,53968,42282,36435,31949,56924,75823
+73504,58798,24379
+73505,26424,65706,1120,10640,65113,34394
+73506,9665,19587
+73507,65901,30534
+73508,62083,28728,49892
+73509,18378,12189,26751,56147,54366,17111,849,78909,25168
+73510,8382
+73511,21903,8468
+73512,73586,36921,81147,15245,73387,64902,71426,7953,65944
+73513,21015
+73514,3034,2983
+73515,2148,8358,80336,26600,58919,30572
+73516,34111,8082,71976,76775,24490,15118,50791
+73517,73190,68626,32887,50549
+73518,34997,7257,15032,2148,22567
+73519,22145,46476,27255
+73520,15781,9951,66300,34757,30871,39908,78067,62355
+73521,9941,32257,79789
+73522,30548,60585,59172,42363
+73523,63064,3262,39908,38997,9730
+73524,75944,76609,42767,68160
+73525,64805,29389,56300
+73526,65988,11362
+73527,27053,57781,11111
+73528,56057
+73529,28641,34938,43926,68063
+73530,32224,72630,13609,18390
+73531,32140
+73532,37914,78115,48796,14191
+73533,33709,46912,333,3126,8988,71033,43963,10400,15408
+73534,18532,8161,70791
+73535,72357,81687
+73536,46342,27471
+73537,59893,5369,15981,59573
+73538,41497,13650,22141,30048,37770
+73539,17334
+73540,74310,21311
+73541,17391
+73542,56591,14440,69478,72551,80109,15773,75172,69702
+73543,60565,20649
+73544,78964,11360,45119,7187
+73545,17119,26479
+73546,49703
+73547,29522,49013,59215,34160,41596,51410,57750,57212,6869
+73548,48468
+73549,72951,73660,31854,66431,2545
+73550,47907,37350
+73551,30863
+73552,37799,43810,27101,1700
+73553,64330
+73554,74497,24542
+73555,46406
+73556,73399,62237,22351,58604
+73557,70949,31150,60697,15464,75314,50569,11899,51749,39722
+73558,3837,47062,79424
+73559,47966
+73560,50359,54857,5417,16402,19212,46017
+73561,41592,1284,29775
+73562,59042,21780,77473,43159,37032,52112,29665
+73563,52782,57729,56085,34288,42208
+73564,2029,74415,30859,74033
+73565,3015,32195,11803
+73566,17678,21932,78529,59794
+73567,75786,35369
+73568,76010,71570,76140,9985
+73569,62049
+73570,33782,5413,72673,4882,16997,3799
+73571,23332,67672,59554,39619,60917,76927,23955
+73572,28743,21469,62280,37458,80720
+73573,21634
+73574,21037,48180,21336,12693,40663,19036,1737,81008
+73575,60011
+73576,42523,40264,52242
+73577,30805
+73578,33833,52057,26458,42041,76672
+73579,28020
+73580,16592,395
+73581,35971,55871
+73582,45362,22311,71332,69446,57159
+73583,37285
+73584,763,14718,697,71092
+73585,81537,3549,25508
+73586,20425,45657
+73587,62074,37086,15254
+73588,58790,9809
+73589,37647,25324,54146,16741,10366
+73590,39122,74647,41215,28113,50562,61662
+73591,26796,80207,70720,62312
+73592,29982
+73593,21398,55771,75526,55752
+73594,31256
+73595,57697,38394,45590,54773
+73596,16068
+73597,30289,52319,63281,50604,3171
+73598,78236,49561,72313,47195,36499
+73599,80648,2975,52719,65430,49922,47605,25039,56888,74310,55485,49868
+73600,57063
+73601,20855,38901
+73602,62174
+73603,7379,48918
+73604,17255,59262,33188,58591,76957,29864
+73605,65807
+73606,4034,79407,74740,57248,51046
+73607,79895,52789,9711,12066,15081,12785,50121,1199,47031
+73608,51332,47159,76246,69713
+73609,48374,54422,1421,64748
+73610,56426,64438,46767,58673,77315,12111
+73611,65687
+73612,30907,2433,16006,36496,41862,70366,32848,76505,6687
+73613,32007,11945
+73614,58617,7803
+73615,22571,12187,3768,48433
+73616,50422,65729
+73617,13948,73928,48498
+73618,26463,29576
+73619,42774,74933,75177,50196,600
+73620,26277,29043,7725,28267,25170,36176,10517,68423
+73621,77908,26917,45277
+73622,39849
+73623,34589,36846,53089
+73624,2833
+73625,21612
+73626,54121,34564,41907,49213,16290,26465
+73627,46137,9263
+73628,11152,76571,19794,43349
+73629,6514,68283
+73630,16541,57474
+73631,50026
+73632,34223,79912,36110
+73633,69446,63882
+73634,54030,65365,81527,47719,47249
+73635,79908
+73636,22029,7041,67889,37619
+73637,55703,40589,61096,15274,42882,15122,31929
+73638,1374,28766
+73639,28806,39700,40908
+73640,51690,50999,70989,53587
+73641,59658,4972,16017,20188,29098
+73642,30012,74158,7001,76874
+73643,68271,722,61660,7213
+73644,43238,4918,60877,34132
+73645,75238,36924,50193,64018
+73646,43900,76084,18662,56880,12899,14702
+73647,43001,52188,48758,14075,13142,41340
+73648,20540,64177,34588,12009,66912,48643,64433,47350,13591
+73649,32812,23604
+73650,70556,44813,72766,15089
+73651,956,74449,51532,68191,10325,74691,12843,20786,3846,47545
+73652,48018,64067,19654,63123,33446,5560,6412
+73653,6601,69114,25805
+73654,55994,9868,36401,69266,38756,28545,73403,39787,14593
+73655,18849,15500,10319,50618,18707,21102,80275,28677
+73656,39904,31439
+73657,14521,41222,4225,4061,39728
+73658,19162
+73659,36149,9259
+73660,11741,32064
+73661,51277,31691,49507,74447,22431
+73662,63194,44655,56469
+73663,55381,16487
+73664,61949,32001,73429,26339
+73665,29185,6255,75271,32495,80855,34775
+73666,29183,56723,6832
+73667,51559,75719,56411
+73668,51106
+73669,71529
+73670,56035,74932,65524,66390
+73671,6241,58706,45586,23121
+73672,16461,69069,60076
+73673,15315
+73674,53897,82176,40736,10935,23835,31176,82110,10491,71871,36119
+73675,6545
+73676,76391,1646,71189,9519,51002,49755
+73677,28900
+73678,40981
+73679,21727
+73680,45662,44614,32009,66647,26327,31625,62417
+73681,21054,35112,41705
+73682,50903,8629
+73683,44498,18746,67058
+73684,67645,39304
+73685,4273,79178,73485,21103,19537,9010
+73686,41617,37777,77657
+73687,20757,26220,31210
+73688,57158,67513,20798,61072
+73689,6856,32335,11781,65406,76284,33987,10358
+73690,57525,42669,12830
+73691,27224,22109,68046
+73692,14120
+73693,6131,46430,71697,68115
+73694,10279
+73695,24694,9934,56845,48606,3402
+73696,78092,49266,37448
+73697,63511,48369
+73698,69086,66461,13442,29896
+73699,22425,70854
+73700,45581,66840,29831,36235
+73701,29251,12448,8471,17574,36233,55989,3876,50637,52778,231
+73702,9039,61748,45549,53815,13560,48309,60191
+73703,41236,17324,67413,9352
+73704,39252,51315,38867
+73705,9004,78885,45945
+73706,57506,77774,13756,54734
+73707,27852,3141
+73708,19299,30993,39670,29998,30302
+73709,69418,45991
+73710,40087,31409
+73711,743
+73712,22299,62936,39354,12373
+73713,65685,13686
+73714,30529,78844,37250,13487,9522
+73715,25232,3402,50825
+73716,1562,54073
+73717,82060,57159,31539
+73718,38411,32546,75589,51194,72622,46427
+73719,7702,25212,14307
+73720,32478
+73721,10386,51128,42263
+73722,26307,45655,19450,42220,80714,36836,44072,79712,7138
+73723,45909,61128,74801
+73724,16602,7445,46388,19654,4509
+73725,33537,34001,7358,2729,59199,3651,79811
+73726,18297
+73727,56944
+73728,45362,18694,37165
+73729,32707
+73730,53352,53252,51796,23919
+73731,53622,13570
+73732,63300,77286,9276,52922,21404,17115
+73733,46508,66800,67015
+73734,29694,11223
+73735,80053,32352
+73736,20594,57130
+73737,63065,30242,19927
+73738,30877,75545,18907,44777,7137
+73739,36316,52092,36351
+73740,49134
+73741,19505,4992
+73742,71158
+73743,55172,12588,21023,8201,73115,60992
+73744,52849,50225,51019,71166,35180,74398
+73745,2842,63323,42168
+73746,62965,4702
+73747,57626,60191,20422,59008,9627,4232,2679
+73748,31456,44152,22486,43736
+73749,2382,7259
+73750,63254,33060
+73751,65122,30528,31888
+73752,78230,39636,59595,60697
+73753,19478,39450,61436,3872
+73754,51472,14972,33642,24932,51688,55321,14896,17558
+73755,26392
+73756,4337,23755,8839,9044
+73757,44353,63092,36864,64897,45694
+73758,38372,42614,54729,70366,48214
+73759,33299,74679,22488,6832
+73760,59369,24150,50588,47989
+73761,47154,76803,55194,72453,81060,6135
+73762,29465
+73763,59408
+73764,24402,41461,29309,28801,28996,61081,45646
+73765,6801
+73766,73007,46672,39463,46830,28292
+73767,61398,33888,44179
+73768,8248,43426,37346,6628,58945
+73769,1068,14935,39788,48533,39468
+73770,29456,4074,10032,54113,45135,16003
+73771,19781,9342,30611,68046,76433,24508
+73772,4624
+73773,44444
+73774,81083
+73775,63758,34646,81851,30238
+73776,22549,63175
+73777,60234,40240,43279
+73778,75063,32120,39682
+73779,44209,41693,45528,62905
+73780,71994
+73781,41653,64223,36349,38249,46456
+73782,55475,60191,19026,7761
+73783,38270,65339
+73784,2192,55566
+73785,79254,66797,10649,35992
+73786,64101,33710
+73787,67494,62621
+73788,48161,28453,62859
+73789,33407,5521
+73790,57943,6863,68084
+73791,2234,37287
+73792,40870,11165,41642,19769
+73793,9599,6984,16957,28986,40603,57491,66374,78607
+73794,27623,75490,28730,10548
+73795,77617
+73796,858,68726,21011,12302
+73797,39993,8248
+73798,70531,26214,69645,35124,10189,16483
+73799,2931,80950
+73800,77915
+73801,51940,39125,71905,6236,22457
+73802,5333,25005,27551,3138,21708,23900,45509,56430,52124
+73803,70823
+73804,37979,46603,51606,58719,45129,60554,37111
+73805,3375,37869
+73806,3341,71128,50867,25361
+73807,4544
+73808,25374,67589
+73809,75050,12400,12734,756
+73810,65703
+73811,6090,31212,74277,3493,72313,36301
+73812,42346,39063,43796,81212
+73813,58152,27308,58371,79238
+73814,19914,42255,40775,2670
+73815,3561,69670,60033,47732,66378,67879,688
+73816,14801,33920,31,42062,59674,78463,1301
+73817,36207,34783,81112,34844,40594,6331
+73818,21358,68475,44146,43801,55876
+73819,50717,75369,68584,30926,37880,66820,50473
+73820,74012,80952,44612,23712
+73821,65700,6204,14662,7548
+73822,75316,81796,43040
+73823,11415,39392
+73824,68037,18050,59490,49503,44539
+73825,67483
+73826,46968,44910,26059,26669,28661,71911,64957
+73827,77307,74514,25342,38097,25073,32599,14539
+73828,14387,52399,67682,80355
+73829,54892,65362
+73830,54910,34494
+73831,44806
+73832,72110,25668,31192,15546
+73833,69797,49097
+73834,46311,79018
+73835,33033
+73836,15826,80392
+73837,40643,40702
+73838,20450,36265,13951
+73839,74334,72799,52278,73561,62718,4236
+73840,2915,49350
+73841,9792,20940,48610
+73842,5370,60899,40015
+73843,6192,20017,16911,3821
+73844,48832,66244,23362,57819
+73845,5693
+73846,34595,25371,72618,13326,81647,50035,59648,80868
+73847,74923,20245
+73848,49497,77118,68399,3580,16934,36104
+73849,71850
+73850,32710,4612,47316,76332
+73851,49302,81955,33725,68773,23500
+73852,53408,9876,53941,14347
+73853,61588,77922,45169,17833
+73854,9295,36618
+73855,77092,31072,30975,18743,57762,35948,68074,38226
+73856,53511,56515
+73857,43750,76610,53977,33471
+73858,76293,37137,23776,50408,59736
+73859,51062,13914
+73860,36357,24570,72204,19024,10989,15865
+73861,36851,45697
+73862,57413,50097,21823,1877,61973,40428,61805
+73863,61453,42795,30231,44383
+73864,49938,36379,73726,47148,3943
+73865,47195
+73866,53495,78592,43145,51034,9147
+73867,42920,49504,2573,13574,55293,15018,28760,3654,41993,17356,23219,28382
+73868,81699,27501,49806
+73869,2524
+73870,54197
+73871,68812,50809,63534
+73872,60732
+73873,1052
+73874,11752,37188,54293,31013,43744,40764,49015,50048
+73875,22684,2984
+73876,72247,29257,57623,79843
+73877,68023,10508,9045,39022,48076,58581
+73878,48573,22526,56324,32688,59530,40166,53247,42483,65502
+73879,75294,63626,59921
+73880,75138,27644
+73881,58924,12384,27637,69529,26754,60820,44171,35516
+73882,41201,80846,38297,18021,25872,61895
+73883,11758,66498,65838,1859
+73884,7089,35231,78492
+73885,72630,63651,50679,33641,21292,311,7173,10731,61372
+73886,1154,29370,55722
+73887,33407
+73888,66656,63995,67905
+73889,37970
+73890,46307
+73891,30018,26744
+73892,40702,20895
+73893,23107
+73894,42890,78080
+73895,79494,9369,40786
+73896,59009,62540,53798,56260
+73897,1049,61545,26674
+73898,19884,75813,30549,38679
+73899,46079,27819
+73900,597,81738,38290,47146
+73901,27215
+73902,12527,56920,80423
+73903,79055,24086,48956,33333
+73904,50026
+73905,28163
+73906,71705,40395,16168,67157
+73907,26639,2545
+73908,49726,80760
+73909,56135,44444
+73910,17409,3554
+73911,76887,81090
+73912,46800,56759,14582,64177,31768,58917
+73913,59755,28269,24838
+73914,19401,51521,6754,10202,78832
+73915,56255,20944,10871,61725,50179,50902,63570
+73916,62700,36609,16510,49547,44174
+73917,21484,26976
+73918,54901,7478,18861
+73919,58783,48864
+73920,76714,54635
+73921,1455,41721
+73922,74006,38456,14222,17200,52648,1039,10889
+73923,52454,49517
+73924,38633,43555,58511,56821
+73925,7221
+73926,33818,61427,33911,56326,10869
+73927,46314,18139,11810,49696,52441
+73928,66323,59725,2085
+73929,36184
+73930,12006,6310
+73931,72681,38214,24104
+73932,32933,29421,8573,23600,888,67017
+73933,12665,11063,56095,41832
+73934,19623,7373,57224,73918,34248,19121
+73935,15143,74636,49277,54935,25425,71253,77810
+73936,17124,73463,45972,49072,64029
+73937,70583,56932,51180,77751,71210
+73938,62483,30387,50116,32058,47592
+73939,73382,18822,76834,9106,45638
+73940,26419,72642,47495,10597,16886
+73941,1828,45712,65869,2420,81664
+73942,54076,44704,43356,15856,70927
+73943,9817,68160,44041,39958,18625
+73944,16490,71016,42410,6616,6185,14512,68523,25686
+73945,76868,72101,66785,36082,50725
+73946,19360
+73947,395
+73948,45401,68763,59735
+73949,29261
+73950,14181,7336
+73951,76708,58249,46171
+73952,54657,27171,36256
+73953,19883,54294
+73954,24877,57268,34319
+73955,32868
+73956,64756,60177
+73957,71221,19859,65728,17833,15586
+73958,24016
+73959,66712
+73960,4055,49537
+73961,47356,75737,60401,1734,60098,75859
+73962,16823,34783,48851,21899
+73963,17060,14511
+73964,55410,18990,77480,12684
+73965,20298
+73966,59214,2040,68442
+73967,31120,26930,16122
+73968,37045,18516
+73969,36478,22786,60152
+73970,8045,78142,75708,80854,76899
+73971,24396
+73972,50002,56769,25225,11102
+73973,16473,39718,22805
+73974,68758
+73975,11768,80811,27523,32599,26937
+73976,20624,58971,68031,34070,15558,65122
+73977,26404,79642,81727,70428,66203,78810
+73978,42176
+73979,55039,79720,40939
+73980,26873,26737,66889
+73981,1278,9611
+73982,38811
+73983,67894,28153,26474,30498
+73984,36714
+73985,40078,61940
+73986,16151,77422,67805,37401,62618,40676
+73987,76274,39946,9901,17211,26738,38883,25539,8944,2627
+73988,77012,77559,19997,31929,35386,79939,1189,15655
+73989,41898,67606,5039
+73990,41122
+73991,43557,82127,21349,8258,61713,70678,27715,51145,56917,42530,57598
+73992,64683,36751
+73993,41046,41710,25453
+73994,17002,39485,38448
+73995,13,1023,76222
+73996,24589,20175,79255,78975
+73997,3299,81508
+73998,22798,47250
+73999,10987,804,8514,75246
+74000,9961,59812,16882,21416,39468,78728
+74001,21744,8338,46834,70334
+74002,10333,19658,37124,10196,42908,14704,39625
+74003,74583,60011,16657,5528,75210,11135
+74004,32546,65156,21787,5667
+74005,63792,79083,57031,7868
+74006,72103,20263
+74007,70509
+74008,7458,29447,38068,46090,4249,36099,73597
+74009,22592,79007,78212,5724,66955,60345,17237
+74010,30913,38065
+74011,26049,77722
+74012,32535
+74013,11162,20799,4317
+74014,31909
+74015,44993,12183,21773,54812,49667,20001,11817,3440,437
+74016,8392,50728,44369
+74017,51411,16430
+74018,40963,3571,39700,40738,27677
+74019,21396,26905,49339,19937
+74020,9860,41090,6476,34746,44172,13840
+74021,26467,4630,69832,33044,46770,57279,6117
+74022,67037
+74023,65534,40028,53632,11839
+74024,39933,37084,78003
+74025,45073,22271,37575
+74026,45762,15824,71384,42788
+74027,65400,72718,65768,59316
+74028,22981,72532,56592
+74029,70829,47595,21672,67958
+74030,44101,52381,56581
+74031,4744
+74032,18384,45536,53915
+74033,18764,11486
+74034,62606,55483
+74035,2541,52282,72849,6798,22607,13061,34201
+74036,3439,79431,75235
+74037,38359,61021,21759,18628,27045,16155,33333,9661,34841
+74038,20719,53823,59530,12931
+74039,80319,57780,58033
+74040,28429
+74041,55889,18315,76421
+74042,4236,45154,14288,10915,706
+74043,60038
+74044,728,41299,7857,77952,54850
+74045,9636,27639,63647,17985
+74046,77856,29992,25613,78365
+74047,37827,62769,351,64459,18637
+74048,70698,52512,41733
+74049,5528,69201
+74050,49886,72911,18297
+74051,10362,71071,53759,11853
+74052,77790,47249
+74053,6149
+74054,66151
+74055,80400,72605,30182,28036,11904,81302,36983
+74056,2936,64550,55619,37410,12936,46980,2950,81346
+74057,13930,23701,36472,68516,48272
+74058,28914,2043,40325
+74059,46879,80707,48852,26841,78200,73675,81706,9882,33003
+74060,60039,47331,2272
+74061,23136,64516
+74062,13767,1342,23301,10501,69953,5882
+74063,23878
+74064,22431,51892
+74065,39742
+74066,3467,76637,35707,70738,7243,74765
+74067,63034,51440,10113,69277,69429
+74068,15657,51014,75327,11079,72110
+74069,79510,81561,75730,38614
+74070,50956,57070
+74071,77543,9492
+74072,74880,14859
+74073,60017,50263,73222,69546,74808,17911,56143
+74074,39916,37332
+74075,76718,61738,15455,10048
+74076,75500,1396,64089,7486,66208
+74077,56910,53127,76550
+74078,49966,77303
+74079,34809,7966
+74080,43740,67825,32538,19786
+74081,33440
+74082,30863
+74083,77351,79522,8903,20044
+74084,39364
+74085,39804,23888
+74086,31060,24830,56832,45103,31613,24690,71192
+74087,13083,66176,8822,65014,14188,43960,1288,7703
+74088,47087,36490
+74089,35435,3201,28869,57790
+74090,66656,67118,14719
+74091,27427,15850,11269
+74092,15736,30444,49017
+74093,41978,65640,43376,50844
+74094,27272,10039,39279
+74095,9043,13536,15459,27433,50724,74632,61615,46648,56163,51096
+74096,22307
+74097,75323,8980,24201,57314,51757,69175,32860
+74098,78642
+74099,64853,68669,21346
+74100,21646
+74101,37383,25750,9576,43015,22930,52479,1513
+74102,18011,14802,58252,79474
+74103,60011,14740
+74104,59997,72723,6035,22124,3157,72928,9354,61785
+74105,41091,39083,66702,58893,63601,28809,69849,78851
+74106,67258
+74107,28728,30746,39252,22879,46859
+74108,80064,7656,22039,7370
+74109,77613
+74110,8592
+74111,53478,4770,22154,72198,2476,37241
+74112,48405,25412,35114,64639,10739,6255
+74113,16397,67535,69809,36230,54676,26720
+74114,38549,55329,47673,67091,28554,35333,65843
+74115,81474,44007,38825,79818,66822,42032,55480
+74116,54600
+74117,30858,35956
+74118,73369,76365,55870,53907,20191,76327,27723,30844
+74119,15003,70153,7997,60920,2351,80608,80656,23010,51995
+74120,33497,51998
+74121,2508,76578,51852,72721,59445,62383,78967,13921,20570
+74122,69283,53215,64645,10186,17800
+74123,26539,46021,61532,42545,5340,64676,58266
+74124,16214
+74125,33665,37725
+74126,38968,25873,38630,49495,56484
+74127,61427,49145,45675,64591,51395
+74128,64394,37468,9364,389
+74129,62023
+74130,65339,68467,47910,21633,26296
+74131,17376,75505,36253,70126,51185,18368,49747,1934,17310
+74132,77692,15646,53288,41279
+74133,54520,34477
+74134,61322,69585
+74135,43916,76676,18467
+74136,74841,32772
+74137,38587,8411,30535,56390,14305,22188,32997,70061
+74138,79088,54177,57810
+74139,12495,46643
+74140,15591
+74141,8157,49381,78852,32085,33617,50841
+74142,4182,3770,19034,12585,33113,71690,11054,67405
+74143,37072,73600,69920,39275
+74144,39505,45479
+74145,804,51756
+74146,49723,75477
+74147,52808,61504,53448,18204,13847
+74148,30385,81191,28861
+74149,75438,32748,20931,20221,75923
+74150,68350,35311,53601
+74151,12911,80849
+74152,30083
+74153,39780,56244
+74154,51439,62316,51040,58983
+74155,35218,6011
+74156,1619,59127,24124
+74157,12114,27454,33246
+74158,4739
+74159,54776,52193,48023,35704,18216,67081
+74160,19236,47236,61152,47642,18914,71026
+74161,60890,35575,44249,8136,58881,29045,20699
+74162,27294,52900,26227,42730,6846
+74163,55798
+74164,47212,8374,23749,23517,22094,68533,61082,26085
+74165,30649,32819,10015,60521,49843
+74166,78346,52756,30907
+74167,17313,79012
+74168,29360,11908
+74169,32032,13768,7997,34379,47813,30935,49335,15462,37456
+74170,60848
+74171,70331,27864
+74172,75737,11123
+74173,60549,48927,14490,20846
+74174,68125,17920,33747,18228
+74175,32004,33571,73444,57559,20194,25522,71249
+74176,71092,17336
+74177,19671,6233,78938
+74178,18856
+74179,7044
+74180,384,77399
+74181,57000,16766,1228,30142
+74182,17757,46859
+74183,13720,78510,9330
+74184,79216,60079,1571,80322,48677
+74185,22019,15652,9758
+74186,12665,80956,34878
+74187,62602,29381,53579,63671,47642,68287,65693,25081
+74188,22882,22023,30503,36724,65748,61570
+74189,41777,75813,12170
+74190,40445,73287,4003,79284
+74191,49939,68083,28487,67325,72394,38648,81659
+74192,16631,43835,52144,43889
+74193,5897,70044,76290,31110,66901,22730,55122,34960,61651,27001
+74194,23816,65912
+74195,13462,40644,64867,46280,31258,68550
+74196,19753,54534,76033,22604,28179,52516,45274,77282,5327
+74197,46495,52178,3207,53053,30809,4639,75518
+74198,76928,22762,41793,56541,74395,63542,72249,59670,65133
+74199,18813,6424,66990,43515,9223,55136,35574,64162,71352
+74200,53219,28374,67139,58967,28250
+74201,12669,77362
+74202,68650,38155,39486,26516
+74203,5657,34692,60827,31520
+74204,61117,40069,2001,7089
+74205,47027,3403,38437,25613
+74206,16994,80707,50219,50204
+74207,44881,43900,78554,80438,29330
+74208,57485,47847
+74209,64626,30419
+74210,10270,27393,25885
+74211,74247
+74212,71937,36504,4875,50013
+74213,57435,17518,31082,58170
+74214,80972,81030,14190,23417
+74215,21590,75934,6119
+74216,10626
+74217,13411,5593,46037
+74218,72178
+74219,42847,26849,36796
+74220,72469
+74221,59785,861,12200,62260
+74222,9427,6089,12168,48204,60939
+74223,9457,24591
+74224,36469
+74225,37507,6235,30499
+74226,67672,7305
+74227,5268
+74228,14339,3883,18927
+74229,7821,56761,11780,4514,75648,12508
+74230,12074,46770,67779,46376
+74231,77136,60396,17663
+74232,1895,34104,65677,66242
+74233,25630
+74234,35728,28943,24227,71330
+74235,50613,77673
+74236,14733,61217,70903,31976
+74237,11486,46221,49352,39917,24023,42275,56811,1224
+74238,19458
+74239,67089,61095,12664,64321
+74240,702
+74241,35153
+74242,48962,14611,4498,32551
+74243,21107,40788,35947,60972
+74244,18936,45809
+74245,75990,61185
+74246,56350,672,13601
+74247,27940
+74248,61364,31367,64853
+74249,7404,58329,3425,33612,62547
+74250,71339,62029,14014,46443,13505,28715
+74251,60210,42157,28834,72955
+74252,47042,34183,65846
+74253,44350,42352,57837
+74254,17902,23335,660,3793,19713,18381,7846,9256,10638,75866
+74255,59890,4953,21063,28308
+74256,26516,3265,63813,52171
+74257,71278,12466,36280,65401
+74258,18858,33887,22124,33464,54975
+74259,54676
+74260,4373
+74261,59070,28406,66598
+74262,53635,47551,32728,31471,52751,61959
+74263,7667,28872,15962,58709,60961
+74264,42327,77717,27852,56698
+74265,29694,63946,59095,55529
+74266,73153,48983,77531,76302,23542,44443,27198,24668
+74267,35911
+74268,12486,31488,29296,55100,44797,9578
+74269,56635,39836
+74270,78410,79154,64863,21415
+74271,59216
+74272,17125,38145,4427,80871
+74273,46112,56201,44993,55556
+74274,3973,3612,48468,10254,36557,41807
+74275,53960,58673,48014
+74276,6726,80776,45977,55184,60156,3892,67731,81816,1858,15850
+74277,26812
+74278,53117,17410,49052
+74279,10820,52795,63623,61203,35797,74375
+74280,2351,53702
+74281,50061,40823,78320,32800
+74282,51537,72278
+74283,2123,48106,42749
+74284,50090,68728,8256,77121,21713
+74285,33597
+74286,47661
+74287,28175,39212,38735,64023,8668,51233,24634
+74288,27577,29385
+74289,30234,2860,55796
+74290,35343,64614,34683
+74291,23191,65341,49632,60925,9210,63052,71315
+74292,36834,9017,64868,76356,68322,34738
+74293,72227,22922,67550,65261,3512
+74294,18376,38978,21986,51754,40462,76156
+74295,20884,46209
+74296,21624
+74297,20381,20149,24274,38369
+74298,60290,37626,9413,79243
+74299,37097,52150,14119
+74300,37833
+74301,6205,75958,65816
+74302,10421,58181,61541
+74303,32323,68192,59978,25713,77052,52659
+74304,46380,59435,41096,20010,30978,26201,53374
+74305,51145,3517,18810,52287,24210,27715
+74306,77467,26467,54114
+74307,78766,27487,68386
+74308,43147,49055,75340,32788
+74309,60622,18667
+74310,44324
+74311,55831
+74312,32629
+74313,8113,71250,29896,80989,50571,12632
+74314,40155
+74315,21592,22277,32654,78207,64949,41233,11272
+74316,35878,20779
+74317,13250,73380,41590,57972,1630
+74318,25782,55832
+74319,5436,24775,45900
+74320,69705,61614,4743,39810,61521
+74321,52827,35601,11345,42511
+74322,65426,32947,49645,21368,30158
+74323,46803,39626
+74324,36153,36870
+74325,50333,14595,47383,45683,7850,37162,32771,59135
+74326,69247
+74327,67242,69396,66863
+74328,62934,6745,22688,60842,7813,37557,21376,42247,16527
+74329,4828
+74330,31252
+74331,2845,36051,46081
+74332,1807,2059,44470,26600
+74333,28207
+74334,52206
+74335,80123,55625
+74336,14396,6013
+74337,6930,35970,37605
+74338,72824,27176,42458,81570,49315
+74339,852,6244,21996,9140,1248
+74340,8990,12903,37620,61265,7870,59862,57158,49004,41661
+74341,54316,58906,66256
+74342,6075,34367
+74343,5004,80135,50101,36976,54813,37129,10508,54331,56755,56610
+74344,594
+74345,43511,80578
+74346,62016
+74347,64989
+74348,48192,53801
+74349,8637,70057,48815
+74350,52254,27203,65352,43515
+74351,45410,258,29510
+74352,26243,68032
+74353,31380,12735
+74354,5902,31283
+74355,73945,25374,17540
+74356,35373,60002,20952,69399,51815,19840,28018
+74357,31460,36191
+74358,81802,59191,4948,14786,32326,79484,68203
+74359,51060
+74360,36497,74669
+74361,930,31311,40745,53377,2415
+74362,45712
+74363,20448
+74364,69895,14906,2207,65349,15724,81964
+74365,21420,64819,19180,47094
+74366,74571,6435,49812,64219,4063,28578,26247,17601
+74367,22646,11879,52113,48502
+74368,70849,31531,2709,25865
+74369,68960
+74370,65320,6728
+74371,20782,53968
+74372,42749,41299,24480,67553
+74373,37551,4677,45889,74054,3357,32571
+74374,4301,19060
+74375,81962
+74376,61525,55485
+74377,45165,15830,49140,70254,80864
+74378,23854,60359,58487
+74379,81211,13959,75880,5459,34212,7900
+74380,364,54190,30275,26427,76419,30522
+74381,50262,23496,66675
+74382,43987,274
+74383,17425,31247,30903
+74384,50897,20129,81152,56822,41341,17197
+74385,66185,8421,58668,224,75704
+74386,25072,18848,6528,33075,15804,26712
+74387,16746,71061,24357,6383
+74388,20921,9401,53451,21774,76358,15960
+74389,22507,66150,56817
+74390,26280
+74391,64229,55873
+74392,36871
+74393,69385,75790
+74394,66064,21484,25370
+74395,7398,65002,2883
+74396,48796,21107
+74397,8340,69313,48176,59317
+74398,55772,82074
+74399,37028,77995,15772
+74400,51809
+74401,66283,51076,72067,71665,50438,10687,64127,50471
+74402,43073,18394,14842,39419,41273,60152,34924,74871
+74403,22510,76634,73984
+74404,61050,18890,77275,55342
+74405,28787,80760
+74406,31387,22518
+74407,66986
+74408,16811,63999
+74409,49271,22344
+74410,47452
+74411,72755,7060
+74412,52615,65985,8019
+74413,19069,14356,29005
+74414,62499,56844,21081
+74415,82012,59939
+74416,15514
+74417,79810,31483,57582
+74418,19884,11152,62908,25897,19202,28085,43040,31107
+74419,53181,60967,68231,29973,14561,72090
+74420,62067,57070,42985,71931
+74421,12678,23432,5520
+74422,7910,77966,44597
+74423,42870,19243,63337,34795,53222,57884,43368,21997
+74424,32944,33016,60658,40000,44902,67004,58651,4839,19093
+74425,9811
+74426,73309,1726,23859,80448,32473,28341
+74427,59408,74017,37229,72458,33844
+74428,49010,36794
+74429,27653,76075
+74430,77739,56878,68626,34242
+74431,49495,49082,46656,76684,3578
+74432,34088
+74433,13860,65924,32954,54195
+74434,22100
+74435,62156,51034,13354,69446,73338,31267,74927,14897
+74436,26664,38805,9254,13899
+74437,7647,3505,77551,77543
+74438,45255,32535,54401,37014
+74439,3649
+74440,74681,27218
+74441,81026,47966,26210
+74442,27089,19901,58640
+74443,74369,17811,72742,48603,23527,46836
+74444,53319,62273,30400,29236,46948,52808
+74445,69205,80098,23451,1526
+74446,20041
+74447,79086
+74448,5185,15593,39234,19390
+74449,22576,21380,3624,13456,59136,41449
+74450,35599,46577,46482,72911,80184,23592,25000,43140,43304,69362
+74451,43625,18152
+74452,58861,57562,37992,72137,58856,32253,61988,49468
+74453,49022,58260,17074,54806,16991
+74454,71271,8129
+74455,20734,57870,708
+74456,66965,63912,4125,5060
+74457,58232
+74458,78240,74515,41540,26662,32852,24512
+74459,48568
+74460,77236,46708,4003
+74461,66161,69785,46489,4469
+74462,11909,30419,78857,23988
+74463,75449,37514
+74464,4290,35640
+74465,79927,61972
+74466,35156,68834,26673,23368
+74467,79376,9138,16970,33677,21270
+74468,32914,23449,42295,14144,38796
+74469,54349,69709,71895,56427,4674,9129,72050,53127
+74470,8461,3307
+74471,24666,33098,13282,63829,70441
+74472,75617,59659,12148,34366,8748,42516
+74473,42527,71581
+74474,22129,48951
+74475,66919,3402
+74476,59237,78815,13218
+74477,45139,19491,63351,67795,32,35534,50312,8120,47026
+74478,58116,81576,14597,16228
+74479,9117
+74480,8454,48570,10492
+74481,57902,8913,31306,16367
+74482,23827,80032,14514,74935
+74483,77277,5263
+74484,63205,40900,67470,28698,77569,45825
+74485,77469,67249
+74486,39043,12560,55653
+74487,23480,72012,59904
+74488,64731
+74489,49471,81013,32360,17963
+74490,11929,37838,66584
+74491,9045,53494
+74492,63671,62011,13341,17124,67229,182,42973,68179,80637,58786
+74493,42162,36290
+74494,76465,6717,57637,37979,61185,41554,41449,49800
+74495,61068,67689,65688
+74496,22272,76436,39828,40948,25680,4646,76187,64418,59275
+74497,72343,25162,16999
+74498,62608,7902,16817,24186
+74499,19754,50478
+74500,73322,55710,7867,34313,79868,16558
+74501,43016
+74502,29099
+74503,13295,29465,24258,67430,40603
+74504,42658,16896,42377,22277,18478,34694
+74505,71481,9403,52336
+74506,9067,16913,42923,31348,33751
+74507,27475,34689,69832,23453
+74508,37321,56281,60596,81691
+74509,26419,16886
+74510,63975,5499,18929,37413
+74511,30065
+74512,20189,33404,24606,5581,30993,46349,43277
+74513,53830,43469,47730,62104
+74514,5113,62237
+74515,73977,79425,66631,40239,31384,54092
+74516,14716
+74517,59216
+74518,63309,26888,72381,49593
+74519,24394,58710,61029,53339,28199,42063
+74520,30488,11304,67727,1345,54206,57945
+74521,80082
+74522,26116,26054,72489,8901,54271,55130
+74523,24762
+74524,73435,13628,14327,67502
+74525,10537,34401,31740
+74526,36193,30858,37518,48499,43890
+74527,22121,67930,73191,77150,47467
+74528,76041,74935
+74529,36674,1642,67092
+74530,13382,32188,43046,10978,42030,58854,61469,33638
+74531,38654,11865,38342,41570
+74532,12320,35522,53654,52670
+74533,51247,26872,70089,62088,42562,15658
+74534,255,72510,72493
+74535,21060,48299,82176
+74536,10828,12834,7647
+74537,34755
+74538,868
+74539,9294,49979,54597,54712
+74540,21400,60556,34924,18534
+74541,62339,58722,63211
+74542,36739,10330,58320,49296,80307,28844,2099
+74543,17126,20530
+74544,29360
+74545,2168,46821
+74546,67381,20119,41541,23020,28489,3755,38637
+74547,47447,24506
+74548,24717
+74549,34137,22225,8016,71984,2653,62225,13232,33647
+74550,44900,31638,37732
+74551,72228,51418
+74552,1829,26209,25355,5436,2608,25043,31071
+74553,48578,23458,70405
+74554,74478,81385
+74555,27386,44072,67752,16848,63087
+74556,6111
+74557,55034
+74558,45169,59411,75065,14689,66367
+74559,26415,672,7279
+74560,70606,21058,36516,52376,43452,17719,63468,69806,38412
+74561,43252,39957,6231,37079
+74562,49893,16438
+74563,69112,531
+74564,37426,62420
+74565,51400,67477,51010
+74566,37647,4349
+74567,13572,54661,16124,28703
+74568,69738
+74569,8575,17566,7017,75759,40365,3046,52066,19705,10424,11641
+74570,31199
+74571,74635
+74572,2495,17126
+74573,28742
+74574,36071,41455
+74575,77572,15071,27058
+74576,78333,24193
+74577,65767,75571,45539,35454
+74578,37156,19490
+74579,45114,61978,28416,28850,9057
+74580,73551
+74581,51734,31242,79730,35472,70228
+74582,16587,35208
+74583,29529,759
+74584,50550,37828,34059,31612,11943,68637
+74585,22501,66516,12868,82018,79451
+74586,72275
+74587,26823
+74588,12796,80277,39981
+74589,6547,47908,27565,40155,69499
+74590,53889,10305,63704,13128
+74591,6901,103,52210
+74592,22165,60911,1083,43037
+74593,2198,78578,33279,59525,39381,1073
+74594,16012
+74595,49134,7754,50234,7612
+74596,26409,21238,78516
+74597,13450,58164,5734,68930,26522,38735
+74598,28601,17472,25931
+74599,52005,53358,3934,65504
+74600,64399
+74601,35457,80223
+74602,78615
+74603,29172,54676
+74604,16525,8157
+74605,9898
+74606,37760,58435,19498,64506
+74607,23880,39203,181
+74608,27282,5977,76898,10418,72857,23901,3250
+74609,66714,35434,8069,35003
+74610,74672,12189,72082
+74611,16157,32227
+74612,73422
+74613,61978,3626
+74614,29374,46499
+74615,57521,16203,29754,45651,12749,67403
+74616,65198,51816
+74617,60325,61568,8403,31153,20614,25958,46648
+74618,36820,5168,56276,16470
+74619,40393,54621
+74620,43591,15951
+74621,66144,50047,48066,11754,55682,70540
+74622,8661,7069
+74623,1684,34326,65816,49540,62934,60753
+74624,39537,20276,25732,32025,47731,6628
+74625,32892,36873,45563,57495,5863,10833
+74626,36940,51445,76459,76616
+74627,23900
+74628,33640,5332,18248
+74629,14871,31536
+74630,61588,9111,48192
+74631,24932,63494,16818,44906,37578,19239
+74632,69580,81622,25182,33052,60973,68930
+74633,81008,23564,33361,41010
+74634,1941,42936,8102
+74635,47247,14896
+74636,60495,5174,39561,39097,60489,32453
+74637,49815,79035,73799,59367
+74638,15060,44643,43683,50308,39292
+74639,77382,49108,19735,65680,8885,17823
+74640,5369
+74641,2127
+74642,7439,35159,79024,1019,12753,13444
+74643,19522,72558,10139
+74644,70441,24639,1834,12714,46384,1773
+74645,12238,72480,18036,46188,66805,13533
+74646,42927,18007,29540,50748,16406,71608,66124
+74647,74923,73692
+74648,4319
+74649,9715
+74650,60596,52029
+74651,42526,19657,47406,71969,80642
+74652,80950,78987,40298
+74653,39633
+74654,13133,44996,60402,68452,32440,15512
+74655,65796,6896,72466
+74656,6523,52502,51985,25305
+74657,6538,42672
+74658,816,72019,2109,32003,23959
+74659,39832,54097
+74660,46079,58232
+74661,25451,31601
+74662,39471,29008
+74663,4273,80486,1944,34855
+74664,16510
+74665,33943
+74666,16760
+74667,22719,76840,49900,82122
+74668,794
+74669,71223
+74670,44324
+74671,70539,35948,10045,42143
+74672,14747,70231
+74673,62165,1732,5315,73638
+74674,18641,75367,47268,19215,19486
+74675,47561,40251,63424,29068
+74676,5458,39636,51226,68217
+74677,43907,75558,14229,5470,2305,69584,6704,36608
+74678,14798,1262,17781,76897
+74679,31,11135,16853,35598,14775,26588
+74680,5916
+74681,36068,53428,10945
+74682,21536,649
+74683,74090,12365,28209
+74684,43630,63242,56021,24775,10248,77500,68497
+74685,45236
+74686,16398,64671,70866,7652,54770,23658,2060
+74687,69849,77739
+74688,72878,26085,18105,44507,41077,40028
+74689,11796,74867,10791
+74690,34876,59885,2633
+74691,11839,13455
+74692,1304
+74693,64376,10935
+74694,65157,75984,72028,81134,41634
+74695,24157,41463,16350,44810,71669
+74696,12834,55176,41989,4951,77449,60341
+74697,5401
+74698,38637,17751,74958,39628,54256
+74699,16869,23850,10570,9373,55847
+74700,57732,32705,56622,6343,47081,81870
+74701,20082,21611,41970
+74702,48926,80139,24237,58217,38004
+74703,12935,9209,48404,4610,54663,70843
+74704,55697,36516,28018,61857,12681
+74705,16186,61535,45568
+74706,27884,17224,79073,81561,71579,67157
+74707,27784,1842,78208,28268
+74708,55855,13459,75402,6929,20406,40052
+74709,37174,27283,14560,52659
+74710,46786,14814,54314,30924,13556
+74711,575,29210,4534,2229
+74712,32068,60924,48982,3103
+74713,59928,1466,41423,22609,49902,57604
+74714,14550,56856,4401,18649,74715,10264
+74715,32227,31301,26963
+74716,77473,80355,25102,80383,57666,76103,78310
+74717,6420,1375,47288,35152
+74718,18784,60684
+74719,25901,22620,77630,1974,39685,46540
+74720,68097,61858,6144,27461,12383
+74721,41914,1598
+74722,62049,69788,81973,29538
+74723,40109,25242,58149,76170,24262
+74724,6485,76179,66587,43836
+74725,31529,9940,56667,9842,53976,10077,12611,51594
+74726,7998,69427
+74727,81230,44147,45201
+74728,80752,51594
+74729,41859
+74730,59205,19390,12291
+74731,52653,45258,18065,62546,46667
+74732,75790,45194
+74733,37299,9173
+74734,81303,6707,19192
+74735,32209,66516,42187,61664
+74736,79703,12648,35835,53300,9956,14317
+74737,28763,40521,15281,18207,57724
+74738,20295,73412,82186,65078,81826,54253,24324,23023,80098,6602
+74739,15588
+74740,72727
+74741,47907,47233
+74742,32938,35885,48346,28742
+74743,79766,1278,14035
+74744,44257,50111,48033,26662
+74745,46682,25866,75160
+74746,2770,47083,25676,6354,9685,77485,52895,42638,580,55947,20078
+74747,46331,19529,3216
+74748,24244,52170,22600,4798,57613,31998
+74749,50559,67741,65602
+74750,65447,70270,33642
+74751,58053,70509,67059,58533,4061
+74752,197,50738,43984,69785
+74753,41065,12810,46054,2103
+74754,51859,46870
+74755,75864,25577,50701,47504
+74756,28599,61114,9017,34545,39292
+74757,67845
+74758,64052,48439,55255,75675,19764,77517
+74759,69289,19692,66797,41011,62664,71804,20942
+74760,72696,24778
+74761,30990,31518,11582,77468
+74762,11050,23666
+74763,80916,39508,15295,60096,57278,71761
+74764,27763,42622,39823,34159
+74765,53560
+74766,33233
+74767,20492,47812,81703,52663,4843,54748
+74768,36443,38770,70014,54190,48140
+74769,64754,62870,60174,41061
+74770,63349
+74771,80884
+74772,42567,4661,6491
+74773,71872
+74774,16526,761,78073,15081,29279,42596,32869,63580,23767
+74775,69525,63973,814,42381,81627
+74776,25811,69535,1729,45666,24920,79992
+74777,81789
+74778,70342,20483,45005,28061,39718,65151
+74779,70288,69879
+74780,51686,6452
+74781,79013,39670,32813,64576
+74782,65689,41294,4509,11413,72132,49743
+74783,80048,16280
+74784,16956,57205
+74785,1199,30353,81578,42470,68235
+74786,65183,7772
+74787,32598,24518,55816
+74788,3491,34369,14420,24542,66128,11538,4565,56212
+74789,59095,24180,10539
+74790,62725
+74791,65193,28011,62580,67592,13890,24232
+74792,36855,76413,75531,69529,70919,69452
+74793,52721,12808,40352,12628,3916,24024,45668,19424,4832,12718
+74794,75693,50065,47689,32821,28940
+74795,66629,45768,29285,39261
+74796,48500,66710,47965,67643
+74797,15131,45785,55181
+74798,80177
+74799,63171,54957,72727
+74800,42170,56303,51178,48922
+74801,34036,41228,19833,10850
+74802,26495,24308,40
+74803,33437,61226,3172,37445,47464
+74804,38174,52147,7382
+74805,63781,25885
+74806,47971,45151,11658,29626,53866,39918,78407
+74807,33342,33102
+74808,28466,73644,38520,64488,80766
+74809,19280,36726,40858,1262,12417,79751
+74810,76471
+74811,3094,616,41027
+74812,57801,12995,67312,69224,73631,61622
+74813,59179,28836,11660,22437,14998
+74814,25514,60248
+74815,11644
+74816,72150,17493,42270,78658
+74817,54929,47969,44547
+74818,20527,3883
+74819,29261,23925,211,26692,81009,59893
+74820,79721,41714,12431
+74821,20448
+74822,74620,46643,57755
+74823,7179,56344,81694,56373,49576,7809
+74824,77630,845,10240,2131
+74825,72989,9039,12719,38258
+74826,24609
+74827,44209,38054,22496,37429,28165,60128
+74828,42052,63660,21379,55359,16761
+74829,26258,50334,9976,50868
+74830,62344,33781,72402,69408,14001
+74831,5066
+74832,66601,48519
+74833,44728,3312
+74834,57953,47654,36043,39059,35509,2996
+74835,12222,41892,52340,3480,44128,64934,55886
+74836,54193,30831,32774,11740
+74837,67346,68265,13847,11421
+74838,8132,62634,79572,9725,20288,55198
+74839,69589,41034
+74840,13529,10243,54007
+74841,78012
+74842,14478
+74843,67581
+74844,56835,69293
+74845,44513,32453
+74846,39567,44421,29594,25429,15245,38215,67447,46023
+74847,34814,19901,5018,46988
+74848,76310,3036
+74849,75341,9287,54173,26821,24185
+74850,33638,21236,6226,7164,44944
+74851,55656,20095,61968
+74852,57557
+74853,26519,77854,71851,13153,61912
+74854,52262,33340,24215,57652
+74855,7480,53217,42391,70567,1598
+74856,3134
+74857,18279,180
+74858,46126,66053,3220,65183,70011
+74859,76254,70569
+74860,78494,7620,27544,28961
+74861,54153,44255,18818,23626,61417
+74862,37469,60818,56094
+74863,4401
+74864,24997,63890,4880
+74865,19523,48666,33755
+74866,12281,30256,52904
+74867,60787,41568
+74868,42700,19007,67958
+74869,2428,47185,1902,45265,40848,31316,74481
+74870,39177
+74871,66583
+74872,32177,47210
+74873,32342,28319,26103,67201,81272,35558,7875,79793
+74874,81310
+74875,6886,78173
+74876,76183,45055
+74877,37138,55291,36885,63400,44100,76078
+74878,44416,75868,37986,17898
+74879,64115,29759,8100,14521
+74880,27457
+74881,68825,13325,38871,15223,6138,37330,57632
+74882,10661,31853,35648,32306,3673
+74883,53470,63807,11211,78129
+74884,47138,15124,58993
+74885,43627,2344,68248
+74886,21063
+74887,26487,19153,57510,3332,80674
+74888,11316,78399,82124,59536
+74889,20565
+74890,17981,35499,54583,76454
+74891,33498,817
+74892,64145,57535
+74893,4679,38457,60766
+74894,46516,22672
+74895,50615,80057,44598
+74896,6947,7647,19792,6177,42762,78367
+74897,48299,82124,19338,36095,49330,44212,37251
+74898,79945,44406
+74899,61067,44972,23528,47294,37876,7768,79475
+74900,36682,65375
+74901,47130,75147,11751
+74902,11203
+74903,12102,74233,57199,37808
+74904,73842,42975,65157,67177
+74905,24409,45736
+74906,17946,79901,35564
+74907,35709,76482
+74908,80656,12788,70424,52000,70157
+74909,64684,35177,59081,21432,46093,30253,8850
+74910,77982,58879,43752,42816,38924,14497,23799,7942
+74911,64149,11843
+74912,24742
+74913,50659,54463,46690,7401
+74914,1495,76475,70858,5051,7075
+74915,50290,53512,26651,24817,55293,63596
+74916,1801,77697
+74917,23879,47659,52796,3701,46961,45947
+74918,41875,80368,69177
+74919,23586,19019,44759
+74920,18683,35346,6288,72145,60924
+74921,43924,5141,20747
+74922,78638,27308,61165,27474,30872
+74923,40393
+74924,67117,31478,68457,76472,62324
+74925,20811,7327
+74926,16038,17731,53640,81704
+74927,31214,3116,36208,67346,52928,58483
+74928,46329,3142
+74929,53967,10166,13321
+74930,48702,41324,67118,56246,61753,61099,41261
+74931,24222,5039,81630
+74932,12441
+74933,36942,6599,13671,66366,21693,55771,69050,59878,34943,53801,56172
+74934,29672,35571,27372,8251,37759,2968
+74935,749,78514,47406,26639
+74936,60635,15239,28276
+74937,68604,26696,59992
+74938,59783,40146,51899,63765,24781,22658,7855
+74939,76222,54319
+74940,23586,80516,42487,79552,52859,10979,22538,77150
+74941,11037,4698,14663,20993,63174
+74942,9156,74511,56728,53459
+74943,56402,81852
+74944,66025,57786,56099,18964,74044
+74945,27684,5293
+74946,63496,39182,76132,54735
+74947,49044,60033,32066,3956,76651,70318,27276
+74948,21615,51609,64762,61858
+74949,35163,80184,53296,19425
+74950,50591,53382,7509,71761,20685,8656,16185
+74951,13714
+74952,23048,19058,68378,63306
+74953,28416,5937,18573,68030,77850,13202,38883
+74954,23306,11922,21238,27264
+74955,30536,598,13306,70304
+74956,13062,22715
+74957,5168,6399,60753,21864
+74958,72276,27496,52736,81279
+74959,65494
+74960,24188,59464
+74961,78368,6626
+74962,1847
+74963,19215,62530,75255,56659,28924,67153
+74964,71490,62454,68470,19862,44656,11134
+74965,80099,80057,23908,5368,36810,67093,28251,9540,46985
+74966,70020,991,34774,55286,6826
+74967,42351,58545,25533,3678
+74968,13184,20227,72918,43354
+74969,41640,1599
+74970,36293,36060,58342,27538,79383
+74971,80541,13074
+74972,76958,1890,57756
+74973,35822,52002
+74974,66169
+74975,38284,20183,56669
+74976,55197,72559
+74977,54400,11753,13264,61536,29356,52255
+74978,21615,22023
+74979,28011,69920,49120
+74980,3009,62174
+74981,31762,47800,57308,35441,77188,60306,51360
+74982,77413
+74983,21720,71480,14611
+74984,3325,17360,72864,22719,71971,45090
+74985,74259
+74986,26749
+74987,69333,65525,35728,17948,59094
+74988,4502,58958,79255,78261,25557,40855
+74989,69411,14238
+74990,38151,50684
+74991,33884
+74992,394
+74993,41635
+74994,72491,16342,60208,44976
+74995,31523,69841,11487,59028,14210,24492,155
+74996,41888,63925,14957,81124,81783,45701,60279
+74997,9564,3991,70412,74277
+74998,69920,4809
+74999,74952,64883
+75000,49042,43659,53833,80890
+75001,64176,25374,16626,19589,56300,59385
+75002,79532
+75003,12406,6282
+75004,6212,68124,69710,9999
+75005,2212
+75006,64439,38235
+75007,71491,79004
+75008,12518,37140,74134,53935
+75009,15676,42925,71389,4108,15010
+75010,64835
+75011,31810,39007,32891,26068
+75012,81392
+75013,15772,56020,65523
+75014,54372,43094,60691,34907,70855
+75015,52716,35898,18029,51746,44559
+75016,1611,24881
+75017,35144,79646
+75018,25520,9021,7805,60994,33504,54012,20602,53822
+75019,18118,2640,18051,65129
+75020,45318,28255,26281
+75021,15586,49250,45551,33589,14867,72669,10337
+75022,33943
+75023,25627,35086,26333
+75024,73406,49518,21922,25306
+75025,76669,22243
+75026,11024,12512,63849
+75027,72830
+75028,39378
+75029,5958,12191
+75030,33343,62195,77862,53442,41719,74506
+75031,23924,46546,2313,51046,1241,1153
+75032,27832,30444,35427,67438,66290
+75033,13743,38057,33350
+75034,3284,77369,36636,61044,48087,66472,33116,35922
+75035,39256,51890,67512,74818,56886,3278
+75036,70797
+75037,24517,34818,6507,68426,14407,54190
+75038,57144,73095,28354,62183,12041
+75039,47016
+75040,4624,32053
+75041,61287
+75042,31633,13164,72821,14861,58533
+75043,46129,15585,55529,68740,57315,15092,4726,12989,13673,22321
+75044,21091,48839,50669,19689,48784
+75045,80427,65611,21658,4625,2685
+75046,36166,60408,1743,7258
+75047,52476
+75048,44387,60311
+75049,71921,42506
+75050,3018,45893
+75051,68453,63693,71164,27928,44672,73890
+75052,79912,57278,11983,66115
+75053,23974,78274,17125,77766,47473,49546,29433,58109
+75054,1145,44072,64651,4882,81609,52248,46518,79611,55608
+75055,26633,28352,39618
+75056,26993,49022,54310,8810
+75057,22628,67670,39325,42494,34159,47955
+75058,62616,30703,15049,65479
+75059,42401,26551,42417
+75060,75674,71447,25872,81727
+75061,63916
+75062,1014,36015,80359,7363,14429,10720
+75063,46220,67632,18892
+75064,46284,1158,77028,73117,76304,22872,55460
+75065,19360
+75066,60648,81561,80916,7563,41108
+75067,14185
+75068,76714,70755
+75069,65736,37120,14900,31686
+75070,68987,20110
+75071,26400,6345,51277,7041,2587,54111
+75072,2734
+75073,73598,75049,20564,231,73731
+75074,78250,3605
+75075,10885,62500,41395,20889
+75076,70623,36236
+75077,53614,71354,45627,79548
+75078,60264,9808
+75079,56455,80584,21917
+75080,40480,36970,20713
+75081,70704,22457
+75082,45961,23736,60589
+75083,30022,77256,49645,58614
+75084,37152,3315
+75085,50231,81788,20548
+75086,11489,77424
+75087,43304,51027,32339,9217
+75088,80860,39678,75036,81381
+75089,2532,1006,57692,73299,41942,72757
+75090,15842,1701,61617,28760,42332,42774,10514,46604
+75091,11997,13328,131,81288,39116,81961,11748,1746
+75092,25128,41952,77016,56262,1961,68030
+75093,44457,16421,74129,5278,4081,32997,1191
+75094,66362,53082,44601,59777,2556,8017,48398,15228
+75095,69522,8144
+75096,44838,41047,7801
+75097,18504,29584,16215,77722
+75098,7701,76692,49399,59149,17730
+75099,36106
+75100,43691
+75101,77950,40196,50233,7201,54798,70338
+75102,10683
+75103,47385
+75104,13400,35787,11081
+75105,49127,8113,25334
+75106,11068,39296
+75107,75446,2847,45374,54693,51939,55818,62561,80935,58706
+75108,48055,19575,55849,37139,27609,66956,40555
+75109,5562,6073,45529,67882
+75110,47724,58766,28877
+75111,66088,7530,27535,81777,80901,57018
+75112,26078,60281,42706
+75113,33486,55640,78523,16175,9515
+75114,19671,69073,7871
+75115,5863,81637,76277,21015
+75116,5283
+75117,18616,66004,8734,75660,20202,50991,4024
+75118,69167,30165,48079
+75119,59615,61658
+75120,66712,67556
+75121,54103,81367,8151,6516,61333,3903
+75122,61070
+75123,80345,19769
+75124,73292,22538,19055
+75125,12341,54564,37803,24450
+75126,19238,59704,17568,55435,27864,28836
+75127,57962,53399,61243,10122
+75128,59755,74640,9043
+75129,67562,27612
+75130,41159,65161,13036
+75131,33052,7591
+75132,22106,68401,18279,69267
+75133,42199
+75134,50491
+75135,10092
+75136,26406,38766,69486,81182
+75137,25079,30973
+75138,21038
+75139,38143,17245,48283
+75140,65977,65823,61649,49390,23244
+75141,70597,43810,34252
+75142,7267,20752
+75143,61911,63987,43229
+75144,1491,69423,30671
+75145,72166,3323,65019,40012,24741
+75146,57285,36225,29849,53285,11315,16854,59902,63848
+75147,2121,37869,8227,16401,24566,700
+75148,26253,19793
+75149,51804,1649,78163,70031,77235,27125
+75150,55122,76565,66464,66413,21,8389,24454
+75151,54512,473
+75152,47994,62853,74068,76472,34479,2007,67558,8186
+75153,53603,70126,25566
+75154,21057,52864,70404,4205,75848,43327
+75155,65502,75753
+75156,36565,37126,2421,27529,42655,17859,66752,10847,41581,58268,37075,33960,28283,77457
+75157,7715,73175,42700
+75158,53663,74602,55325,45542
+75159,14374,81690
+75160,39070,33240
+75161,31992
+75162,55325,3579,32863,72775,39059,75779
+75163,3712
+75164,31746,14434,21396,4529,81005,40609,60945
+75165,14748,25681,61286
+75166,37800
+75167,40923,49011,37968,33362,69594
+75168,46702,37356,30596
+75169,17172
+75170,25859
+75171,32480,46065,62806,19830,72891,65435
+75172,20757,59978,30022,68081
+75173,75449,75865,32391,8862,77504,33954
+75174,9614
+75175,74844
+75176,20522,57055,21578,32236,2847,24271,44952
+75177,40672
+75178,5902
+75179,80242,44490,63538,69652,26827,55611,60459,35681
+75180,66603
+75181,74722,38253,66414
+75182,56176,39667,79479,9860,7906,14042,66900,43221,75128,25837,39851
+75183,40193,80306,47886,53536,80231,45445,46272
+75184,55231,35878,18628,32071
+75185,18249,1664,67709,56344,75468
+75186,40004
+75187,29113,54401,16216,19139
+75188,68084
+75189,34093,8458,12785
+75190,10300,76046,63119,37826
+75191,25046
+75192,72215
+75193,2393,59782,54153
+75194,26992,53725
+75195,40622,7224,24832
+75196,68173,20587,32097,53316,46649
+75197,32815,61408,7136,59071,63217
+75198,63114,39590
+75199,872,51576,25687
+75200,74081
+75201,13104,9279,70182,74956,10992,31539,29986
+75202,77896,23201,61113,32189
+75203,75027,56411
+75204,45919
+75205,66736,45006
+75206,78509
+75207,21642,52688
+75208,25774
+75209,67670,25377,13864
+75210,62838
+75211,63520,25732,36444,27324,16527
+75212,23085,71424,57712,73532
+75213,47267,48500,11165
+75214,2102,14083
+75215,60651,41743
+75216,79024
+75217,24293,46421,50806,32937,9602
+75218,66942,67838
+75219,60914,60926,47567,58186
+75220,82141,33256,62700,18776,39663,63496,58518
+75221,77046,47813,4250,16961,25387
+75222,4364
+75223,64085
+75224,16137,35199,511
+75225,70115,36784
+75226,63435,2793
+75227,67509
+75228,43854,16909,71593
+75229,28381,54296,74416,18620
+75230,4934,66635
+75231,24327,78291,48431,79841,80099,15934,61533,15676,4117,65218
+75232,26586,8821,27276,39350
+75233,74246,50381,76160,43116,14910,18399,80245,32352,15950,78144
+75234,14953,67622,53821,11767,24847,34569,25031
+75235,32902,3134
+75236,73438,15182
+75237,18119,55990
+75238,49424,63435,3094,51982,39288
+75239,50119,59634,62044
+75240,50301
+75241,31573,12187,45046,24346,19563,8990
+75242,11908,36917
+75243,67569
+75244,10372,25952,77101,71476
+75245,68830,51849,37783,78414,25163
+75246,28635,75594,60818,80815
+75247,4872,69791,56067
+75248,35872,65536,78015,66052
+75249,13949,25263
+75250,55199,28850,41305
+75251,66991,53502,61261
+75252,34742,44418,16982,69463,73310
+75253,28883,77657
+75254,11120,69887,35493,25191
+75255,20291
+75256,39245,50816,67242
+75257,6984,46969,2556,57628,69816,62668
+75258,55468,71403,21733,64139,61719
+75259,57059,19105
+75260,65007,72640,17565,18631
+75261,30910,9136
+75262,75287,1838
+75263,72780,37353,13883,67057,60375,58795
+75264,46707,76037,72196,18867
+75265,3414,35938,31344,62288,78232
+75266,667,81278,64433
+75267,28555,17456,17636,20646
+75268,3842,1987,5284,40460
+75269,59270,76369,78525
+75270,459,79481,33223,29817,57158
+75271,16137,58131,12128,32655
+75272,23511,61181,51728,61688,70027,71263,73369,36868,6817,48140
+75273,48275,61126
+75274,81109
+75275,20699
+75276,8988,51624,42970,75161,33801,36532
+75277,57083
+75278,77438,56628
+75279,59628,2309,63429,28403
+75280,186,25325,27516
+75281,57639,56274,73918,71447
+75282,61394,31034,13707,51722,63867,31691,62863,72379
+75283,23014,1154
+75284,33152,49630,35999
+75285,18683,79089,10198,35147
+75286,59231,16205,76057,22352,79052,67244,37417,49466
+75287,64425,38941,22554,51159,13176,78225
+75288,55123,44436,50727,11584,36392
+75289,28343,35109,5504,78802,67056,51769,65291
+75290,78392,81963,3017,54069,71419
+75291,39285,6331,59858,36955,18534,10919,35115,56019,18491,49956
+75292,32131,60033,3880
+75293,55402,22711
+75294,40856
+75295,78171,24205,5329,45487,69379,23471,55829,67630
+75296,45281,21383
+75297,54259,44382,34944,8202
+75298,49780,30846,12496,32958,44032,27763,25605,61869,31308,51291,27013,58294
+75299,49438,56411,21525,55710,15410,28014,36530
+75300,71852
+75301,66128,57496,79613,68928,78493,66220,54725
+75302,47213,12998
+75303,74576,8899,66381,81787,76368,43788,62375
+75304,70237,54731,2227,11764
+75305,68558,44515
+75306,67244,7861,55370,22
+75307,76612,1328
+75308,40751,6068,26023
+75309,64925,72348,62056
+75310,45034
+75311,63846,57633,21110
+75312,26862,63834,76255,64428,1710,40010
+75313,58144
+75314,37356,65136
+75315,59999,55934,58498,13966,17824
+75316,19028
+75317,21611,28756,37570,65930,69712,31172,48763
+75318,17297,54973,3210
+75319,69772
+75320,60604,19544
+75321,4773,13703,67968,53022
+75322,28082,248
+75323,16531
+75324,53587,37803
+75325,33928,31016
+75326,49077,7076
+75327,76002,74830
+75328,21556,42543,25848,17349,75954
+75329,66585,8100,40806
+75330,23796,20399,77773
+75331,27048,31200,20169,6778,49774
+75332,29867,41866,42093,60812,65584,47978
+75333,78788,55398,3047
+75334,19163,22092,18827,41574
+75335,64010,56506,40359
+75336,1117,3842
+75337,30908,45077,20666,57655
+75338,74476,19743
+75339,63003,42109,76713,47281
+75340,73240
+75341,30195
+75342,70036,45756,32478,17376,54872,31099,37285,75684,11472
+75343,1802,28523,5146
+75344,58091,58727,77949
+75345,52749,75812,27700,23486,64705,6285
+75346,66917,73816,77762
+75347,53494,8114,69509,78509,14791,48855,60936,26039
+75348,18284,51215,78923,62046,5250
+75349,43320,44517,33579,10228
+75350,42421,26234,54725,65611,37435,3419
+75351,60429,59622,44323,27448
+75352,45940
+75353,57243,11822,17063,1405,27159
+75354,42507,35919,51084,61061,39918,70835
+75355,33208,2592,2373,53849,47019,70604
+75356,4355,16348,36848,31798,45329
+75357,82063,4624
+75358,58225,33321
+75359,79879,23534,16743,31379
+75360,72371,34263,22354,20958
+75361,7551,59092,51857,45093
+75362,29036,34870,21942,34110,28217,75991,16078
+75363,73133,33997
+75364,13790,81422,33221,70316
+75365,66466,63079,4268,36514,70357
+75366,17999
+75367,76158
+75368,30265,38496,58747,72313
+75369,49455,15607,60528
+75370,42204
+75371,41100,30944,61680,58070
+75372,33401,9584,47065,49386
+75373,81687,34456,56297
+75374,80800,79347,80191,12710,59801,61336,11796
+75375,64629,16958,9606
+75376,2753,17439,23524,10194,50396
+75377,41700,12546,3765,72033,69439,69553
+75378,57979,35465,19496,43746,52424,37981,44463,10494
+75379,53033,10689,51898,38751
+75380,32765,66799
+75381,66863,71830
+75382,348
+75383,10614,71181,47245
+75384,18184,11594,26409,37734,34865,34972,68104,6225,34668,76338,38830,81475
+75385,55786,66786,29469,20739
+75386,74976,31653,34752,51751,4403,35590
+75387,48549,26675,64875,4186
+75388,76673,76198,45525
+75389,17328,36525,16022,75136
+75390,79321,77049,13088,33665,60953,6634
+75391,8184
+75392,28794
+75393,20834,30134
+75394,18286,80944,78664,58669,42975
+75395,47289
+75396,51411,1601
+75397,69213,62621,73679
+75398,40552
+75399,37109
+75400,64353,2679,17568,46834,73429
+75401,38095
+75402,54621,65917,13795
+75403,45066,2344
+75404,48091,44445
+75405,60621,19776
+75406,12213,70696
+75407,18659,35883,26279,28620,49786
+75408,38263
+75409,77954
+75410,9293,62965,67448,24377,60234,22430
+75411,79094,38097,7134
+75412,75418,69139
+75413,28836
+75414,80129,58973,62231,39986,65787,6266,6999
+75415,63942,10549,77100,66594,25630,37335
+75416,24345,57069
+75417,51609,56290,53102,65658
+75418,29293,30712
+75419,64857,72721,49385,8592
+75420,50517,1784,33533
+75421,36193,27398,1245,52900
+75422,157,33025,80025,16055,56647,57144
+75423,70619,51512,27781,52217
+75424,36464,14932,1413,49937,71595,4373
+75425,66584,6149,8437,23946
+75426,76018,11737,30308,47284,1409,28351,72737,13099,40239,23108
+75427,14887,44165
+75428,22604
+75429,35644,80099,50391,73357
+75430,63393,79966,10555,17643,68575,66756,4262
+75431,78647,41963,78806,3266,64388,48431,1112,47737
+75432,5483
+75433,20993
+75434,64297,50925
+75435,56830,77707,36669,16313,7845,18865,76515
+75436,50531,63593,34844
+75437,14661,16487,60384,73061,63443,43998,63173
+75438,37410,78731,63506,79218
+75439,6617,14819
+75440,17967
+75441,43238,79835,57212,30445,47523
+75442,56,79543,15957,53856,51561,17617
+75443,618,65055
+75444,74795,37590,4734
+75445,76963,30348,35757
+75446,32149,7897,6185,79808,76694
+75447,46514,10122,49501,16823,60866,9809
+75448,31645,9082
+75449,26142
+75450,65426,31459,11643
+75451,378
+75452,50229,55697,20732
+75453,61726,57838,55831
+75454,32843,44790,4473,75129
+75455,42138,63736,8544,80482,71446,58251
+75456,79502
+75457,40923,36234,13607
+75458,13693,64750,80066,38839,41786,30829,59386,68545,22403,43217
+75459,16506,60278,45379
+75460,81127,51652,62853
+75461,66382,22027,64007,64962,13898
+75462,38645,71894,43013,33679,65160,70191
+75463,16643,27165,10054
+75464,38473,3634,43054,78412
+75465,23885,64529,35260,21504
+75466,19660,20301,74901
+75467,28869,14393,24929
+75468,50708
+75469,13256,32256,11241,48529,60897
+75470,69283,56333,81059,73305,31360
+75471,22544
+75472,33354,58062,18461,29067
+75473,79115,56760,15397
+75474,39307,33730,27225,24495,4089
+75475,33328,79194,35057,1004
+75476,70248,47891,36081
+75477,58149,64815
+75478,38246,49244,32840
+75479,57090
+75480,50534,46161,51128,56140
+75481,19321,38261
+75482,5058,3485,43038,8571,23277,25947,38821,31187
+75483,43256,32627,58039,9694,10975,53487
+75484,49036
+75485,348
+75486,54506,28883,45824,19335,62201,41189,35075,30082
+75487,23364
+75488,68134,26365
+75489,58859,59307,35572,57486,77628,30682
+75490,10696,81737,26029
+75491,17339
+75492,67845
+75493,68142,9606,60890,8852,61963
+75494,28300,57440,23267
+75495,7400
+75496,21467,81116,65318
+75497,6607,25921
+75498,58404,14277
+75499,64603,66257,60555
+75500,79652,66544,56328,81019,78884,42557,70701,80646,6250
+75501,45657,70005,10042
+75502,80877,52066,46384,23219,71879
+75503,16102,27855,1604
+75504,51048,3384,3364
+75505,37776,2981,22783,29594,20518
+75506,47786,4423,40875,59648,19859
+75507,66961
+75508,56725,60904,7259
+75509,45388,45524,63527,60712,57238,29495,76108
+75510,32854,75979,25081,6901,82000,41314
+75511,26742,3114
+75512,29982
+75513,14750,37944,14077,41611
+75514,5952,22673,66065,16587
+75515,55095
+75516,49059,10344,36635,68350,67869
+75517,71480
+75518,33474,20824
+75519,54037,21448,47026,45979,55425,34902,54886
+75520,30206
+75521,65595
+75522,575,61259,12395,68286,16487
+75523,41455
+75524,285,35273,41669,16175,23317,42648
+75525,77055,6672,3519,48755
+75526,43422,28461
+75527,81008,16912,49245,77729
+75528,59186,14176,52414,23875
+75529,24333,49806,37428,22097
+75530,10139,26296,27375
+75531,49224,58501,35640,48143,839,78909,80137,7610,41778
+75532,33947,39865,18949,20138,71111
+75533,49373,45998,65853,70055,71480,76274,54466
+75534,33641,57842,8911
+75535,771
+75536,868,56128
+75537,79589,68313,7787
+75538,74810,76212
+75539,63936,67244
+75540,67571,24663,53031,2032,25188
+75541,29070,4201,43191,22816,44867,14927,80647,78177,14084,26458,78066
+75542,14484,18255,62186,4128,30883,54812,77720,49450
+75543,32478,78541,21578
+75544,45948,78576,5153
+75545,80379,69281,31247,60840,74044,32747
+75546,23878,76550,11949
+75547,62813,80915,81344,60940,46651,5795,80702
+75548,56410,23070,19786,57345
+75549,8859,38227
+75550,5655,7650,14119,40430,50817,12334,40613
+75551,43685,46132,4290,29436,6276
+75552,37992,70445,16018,11745,66491,66798
+75553,56915,57959,57282
+75554,30703
+75555,13912,66911,76462
+75556,54983,14422,47489,14558,77781,41205,2630
+75557,23014,65042,76471,75866,57248
+75558,81071,29277
+75559,55309,74473,69845,5652
+75560,19995,17721,35180,74363
+75561,74599,16128,54011,17205,73839
+75562,29860,57617,63438,42955,20378,52181,55051,28512
+75563,65245,59490,31043,51557,80912,63491,68410,80114,53575
+75564,79174,57889,70265,66288,28684,31864
+75565,19180
+75566,25812,35757
+75567,53786,19433,60091,57515,29677,51878
+75568,8489,52909
+75569,61724,59295
+75570,80674,67547
+75571,17663
+75572,65595,42955,24323
+75573,74142,74555,79371,47784,79519,76519,22655,45844
+75574,73298,45801,71979
+75575,76140
+75576,60167,16729,48207,59679,41568,68233,34288
+75577,25618,68442,56943,72144,55163
+75578,8843,37051
+75579,17407
+75580,27007
+75581,48163,70263
+75582,18454,32609,81955,35092,65384,85,55285
+75583,30728,70450,27788,76911,76495,22059
+75584,29136,36855,76197,9808,25192
+75585,14615,11582
+75586,5293
+75587,3144
+75588,35504,35435,30775,7735,54334,72146,55241
+75589,66786,63079
+75590,66350
+75591,65724,13690,34305,31937,4726,1266,63932
+75592,49182,76100,52107,64771
+75593,70236,25269,41463,45828
+75594,8742
+75595,30528,64018,60386,34937
+75596,28898
+75597,11992,43141,66834
+75598,65044
+75599,64227,51640,19419,65980
+75600,54928
+75601,71720
+75602,23654,77029,59029,60181,4828,77545,62689
+75603,46336,50988
+75604,3146,13108,51733,65129,79999,29344,62280
+75605,48541,68002,33640
+75606,75072,3114
+75607,71761,34423
+75608,9856
+75609,69183,71783,7024,3187,10548,49368
+75610,1817,14046,80449,24093,78579
+75611,27339,66606
+75612,63297,19822
+75613,672,54425
+75614,26913,14749,41564,3872
+75615,28472,37095
+75616,43949,19595,53476
+75617,3969
+75618,55504
+75619,42673,47869,73811,40890,74658
+75620,50581,57889,72082,21213,75016,57068,73361,43368,39072,59616
+75621,23212,15309,8172,59954,60053,54464,43212
+75622,39558,18484,23219,22343,59098,36697
+75623,82097,69964,14727,73174
+75624,1439,48724,77847,61063,70532,3737,72609,54103
+75625,9123,11646
+75626,80070,5570,30261,73149
+75627,41710,43718
+75628,35276,22332,57597,58299,77275
+75629,77580,66794,68159,79845
+75630,72867,18357,73169,47064,61437
+75631,45848,72132,54962,44408
+75632,59123,26471,10446,52094,24903,68014,6077,791
+75633,50775,9687,45288,62734,32277,39953,73101
+75634,24674,10732,19537
+75635,27469,67125,54081,34126
+75636,49047,71066
+75637,53104,68968,4935,5201,37876
+75638,1886,69787,19088
+75639,56474,21334
+75640,34164,68977,16951,27161,18758,23397
+75641,63351,18097,3112,61120
+75642,71707,81708,43339
+75643,73135,4913,74448
+75644,26288,53663,43639,77334,32480
+75645,80884,64293,39393,14911
+75646,60098,51462,40736,22632,5469,40097,65579,40158,48384
+75647,24601,17593,31401,72965,6887,14097,12188
+75648,44031,2029,35825,65315
+75649,67381,11845,19007,16102,20525,65134,41699
+75650,24845,11288,50886
+75651,45959,38907
+75652,41220,10574,18841,18971,81371
+75653,44288,53968,28130
+75654,34497
+75655,27643
+75656,9421,68033,58295,24093,38556,18429,35581,22593
+75657,72114
+75658,69722,64721,38097,69978,58269,52232,35881
+75659,17106,42571,48741,41326
+75660,78577,5540,64044
+75661,69791,62580,12831,68499,54225
+75662,81216,9285,27285,37648,25084,22237
+75663,2737,64367,40040
+75664,59605
+75665,29456
+75666,21194,31015
+75667,71598,31192,4555,17107
+75668,36107,40384,38348,64686
+75669,50750,71205
+75670,68511
+75671,79151
+75672,61205,13300,18806,70999,63646
+75673,26805,26040,13570,60779
+75674,18359,22578,40171,1342
+75675,79831,76185,34409,12886,3799,63424,28878,29805
+75676,60932,13658
+75677,80077,47093
+75678,63854,65040,15534,35297,4103,81585
+75679,11562,45813,52256
+75680,33879,54034
+75681,11911
+75682,19588,79485,34066,68992,54497
+75683,3420,60779,59725
+75684,38254
+75685,76506,72559,44188,72547,13647,71498,38947,66627,18565,37108,48178
+75686,43247,37191,30554,33888,53099,75127,79640,50678
+75687,58739,73487,32332,24815,3684,63277,20055
+75688,63184
+75689,44293
+75690,12205,35408,26749,32688,2212
+75691,32490,32040,71047,68136,77555,61173,11538
+75692,52409,62215,73644,4634,36192,33101
+75693,7280,47205,76453,25833
+75694,2761,11286,3800
+75695,62555,45521,11562,32869
+75696,32302,27241,45911,20354
+75697,44082
+75698,27772,71762,5511,62485,68824,31510
+75699,61994,47269,63438,70611,10573,27451,29845,4630,25074,25000
+75700,27550,13659
+75701,27802,24673,34481,78607,47074,41653,65555
+75702,31456,17248,29130
+75703,49841,29981,37776
+75704,54495
+75705,41377,80826,4706,39124,81196,36535
+75706,51304,6708,1728,33178,67509,32840
+75707,4039,64194
+75708,36344,29976,72595
+75709,13472,49291,24025,20479,32122
+75710,26756,22363,33887,3384,73788,68365
+75711,66956,6606,5101,63318
+75712,78789,43775
+75713,3784,69484,15692,28666,66338,60630
+75714,55728
+75715,59853,10254,55918,17952,21130,7121,25622,43513,18889
+75716,75428,60547,75794
+75717,30903,37734
+75718,38374,62839,44088,38696
+75719,15509
+75720,29695,14264,53822,19503,26838
+75721,65492,36697
+75722,81392,29418
+75723,54089,71139
+75724,50536,40107
+75725,51881,80817,6263,23825,75044,52844,70979
+75726,62580,38631,34478,29448,3468,64821,71744,62455,2101
+75727,52092
+75728,39304
+75729,52538,62829
+75730,80857
+75731,13166
+75732,34785
+75733,64994,34042
+75734,9925,42847
+75735,3593,51112,44737,38674
+75736,77551
+75737,26130
+75738,10696
+75739,47474
+75740,27977,81448,75511,69203
+75741,31532,3378
+75742,19635,8819
+75743,23411,20141,43948,14371,41971
+75744,64857
+75745,63993,23508,12147,68580
+75746,37680,38068,76683
+75747,68333,71808,3946,55245
+75748,43926,71800,40196,9561,38078
+75749,47212,40869,32149,6230,26951,31956,16088
+75750,42510,37449,33928,43708,33437,61603
+75751,6341
+75752,68894,10726,67740,14567,56020,7724,54007,63164,24804
+75753,59082,75373,70130,29770,40093
+75754,36870
+75755,75616,37384,13369,72180
+75756,82189,75486,13153,80806,55033,76122,76672
+75757,42533,37729,78125,63074,42256,5917,49260
+75758,48023,23876,74492,67485
+75759,25552,22350,21305,9292,41728,47637
+75760,41635,31109,9691,38628,15658,24314
+75761,62351,67180,51329
+75762,38675,17323,72030,40102,9762,78204,38614
+75763,8056,69853,27330
+75764,38014,50925,66425,41875,7521
+75765,22165,41224,25515,27692
+75766,69879,23774,47645,58060
+75767,16042
+75768,8329,26028,6154,35169,43444
+75769,42275,18347,17785
+75770,28661,81251,15762,40366,34276,63280,15548,43390
+75771,20917,69725,71114,6841,38117,47359
+75772,54579,44551,33181
+75773,65703,50930,4684,66668,67055,46119,19193,62902
+75774,6398,17455,53799,43791,54549
+75775,9072,61603,75283
+75776,19410,10413,73307
+75777,30537,71458,11054,12259,37885,4382
+75778,42310,1022
+75779,52935,21932,62182,61011,7275,2947
+75780,70826,57063,59852
+75781,9959,24871,68505,35882,33791,50189
+75782,38178,57364,41935,53706,15088
+75783,29867,57070,32042
+75784,80666,70228,35356,50026,40017,60895,31746
+75785,2018,15702,18262,25774
+75786,14597,268
+75787,54604,30455
+75788,16568
+75789,896,39902,51345
+75790,12838,43439
+75791,33879,39328,18959,40236,58633,21728,4860,46710
+75792,38874,81318
+75793,5317
+75794,54179,35709
+75795,57661,9356
+75796,9240
+75797,15275,38335,9557,52471
+75798,25993,63342,29962,1372
+75799,75836,28598,48282,28950
+75800,24782,12320,52147,53482,7446,20752
+75801,13080,74185,42741,64716,54498
+75802,65823
+75803,26582,39410,20612,63697
+75804,23205,10859,24216,54695,77784,66760,46026,50187,68223,74237
+75805,43589,24328,77586
+75806,31012
+75807,74383
+75808,75806,59429,74265,51769,56229
+75809,38762,44109,13922
+75810,80238,32629
+75811,39740,35477,63909,60819
+75812,13793,30004,66984,12511
+75813,72144
+75814,20115,30958,9803,72479,13037,24760,38842,225
+75815,6162,36958,27457,28210,73373
+75816,82068,41691,12886,34754,24317,31960,81767
+75817,44973,4240,11364
+75818,30385,32395,25166,62341
+75819,15976,26731,16416
+75820,16342,37085
+75821,9676,78937,19207,22510,61980,52754,37144,47716,80361
+75822,20056,40432,51694,7450,18042,52273,3,65610,22137
+75823,7537
+75824,45039,20920,19544
+75825,23207,14847,33218,27470,2606,55989,71317,12674,10016
+75826,67222,33816,58131,21672,69265
+75827,13292,52802,40543,732,34233,53146
+75828,16026,60147
+75829,24026,57377,8730,76878
+75830,36264,19587,17002,15477,66486
+75831,56873,22983
+75832,63043,65075,62880,6056
+75833,73901
+75834,71874,2806
+75835,50148,56995,63060,67847,1648,35046,76365,36588,15123
+75836,40879,38057,4672,33805,10976
+75837,26258,80267,12638,499,49939,24202,48308,28148
+75838,24864
+75839,21984
+75840,46768,7214,50361
+75841,69172,76628,32203,80037
+75842,72506,18307,72829,16001,37749,47219,81645
+75843,11850
+75844,52464,78425,41067
+75845,26824,46360,21389,57447,54217
+75846,7021,31210,77489,24447
+75847,62829
+75848,17402,77234
+75849,18208
+75850,33669,28311,66856,68262,59083
+75851,4728,50772
+75852,11032,80950
+75853,56139,1388,78869,34913,63258
+75854,32090
+75855,24100,74840,1108,4236,56837,65143,3060
+75856,11109,35408
+75857,47129
+75858,20218,33237
+75859,66595,43205
+75860,57270,66425,52965,50789
+75861,81602,21861
+75862,67678
+75863,42908,25361,25712,74968,47974
+75864,40115,22885
+75865,63724
+75866,4029,39415,19156,62679
+75867,71707,21506,72842,26195,62297,41703,33244
+75868,37168,75484,47409,67142
+75869,11162
+75870,73859,8098,14674,77960,81535,49806
+75871,79720,51340,50277
+75872,71305,78333
+75873,27552,77995,47941,14080,24511,81329
+75874,32843,1987,8166
+75875,26468,38574,36045
+75876,7969,2844,13913,68205
+75877,63118,13785,62402,18964
+75878,10844
+75879,79656,52369
+75880,28345
+75881,50823,64303
+75882,44878,70759,70237,59271
+75883,33877
+75884,76508,38128,73320,48416,59520,46934,24902
+75885,41975,69440,39215,57324,49649,17654
+75886,65298,64551,49687
+75887,11287
+75888,60871,17740
+75889,62295,38846,67282,1075,31189,28552,71797
+75890,19579,62197
+75891,53978
+75892,61602,66689
+75893,73668,8677,55831
+75894,55651,4564
+75895,35323,48174,76241,27910,72987
+75896,55403,73275,9036,39002
+75897,61509,52633
+75898,62676,82046,20577,68200,29434
+75899,78037,49618
+75900,79862,63637,63479,65108,35245,26465
+75901,60674,5221,31189,58208,15920,53780
+75902,10720,55830,74157,15810,47337,81135
+75903,35499,18240,4623,16633
+75904,59573,857,43283
+75905,55342,72431,64879
+75906,55113,34441,68407,866,32743,71483,12465
+75907,64597,38352
+75908,67747
+75909,62065,62441
+75910,39688,67859,26825,71115
+75911,28900,23388
+75912,46648,19386,6247,13613,43424
+75913,24603,75485
+75914,42056,56282,9413,34367,34351,20546
+75915,27155,59679
+75916,62301,19242,73660,47647
+75917,17403
+75918,79165,24514,30055,25730,15218,34659,53347,80669
+75919,61421,5039,33932,31985,74098
+75920,54683,5871,25647,59850,1164,4709
+75921,32499,22813,42127,29739,65822,9524,30433
+75922,74685,20231,70354,11281,69488,77052,39699
+75923,24476,54885,34539,2152,41519,76844
+75924,46065,29167,40870,24026,32986
+75925,54078,74093,35229,64126
+75926,45640,42074,4000,43408
+75927,64464,9701
+75928,9609,35864,46700,52601,48688,16432,24142,55767
+75929,5349,17607,56371,77091,75174
+75930,69410,66972
+75931,32465,61138,20479
+75932,56610,22748,76974,49699,39565,57052,797,10471
+75933,44844,48468,48675,19778,81241,34720,8525,62586,55301,33597
+75934,72134
+75935,76664,16344,34960,46771
+75936,28270,80532,48173,45369,49635
+75937,48381,19907,3226,7395
+75938,44406,16119,74629,69400,48122,49231,18067
+75939,81634,10170
+75940,33475,40531,30932
+75941,66157
+75942,60767,31448,31154,56805,37943
+75943,10852,70306,3647
+75944,34462,22180
+75945,39292
+75946,67118,44745
+75947,48070,64332,55491,20255
+75948,17747
+75949,17455
+75950,47966
+75951,28168,14676,60805,5650,32096,68829
+75952,79903,36125,54764,51982,51110
+75953,43272,52069,61383
+75954,81766,63823,7108
+75955,78050,21813
+75956,27275,8896,3241
+75957,67249
+75958,64233,44627
+75959,48694,8437,18895,51482,12182,65770
+75960,24828,8819,12143,25591
+75961,48367
+75962,26886,75166,24111
+75963,34826,72112,13145,18761,35510
+75964,5841,66478,69471,62474
+75965,68169,45402,7155,69580,72481,58851,2078,18038
+75966,43691,18686
+75967,36992,80538,14845,56257,70102,70035
+75968,45779,60380,79111,29517
+75969,65275,42390,40591,50516
+75970,39031,38263,48948
+75971,38338
+75972,27862,42150,65753,70760,6690,1493,34371
+75973,38553,62910
+75974,13855,64750,80440,38811,40243
+75975,51800,34127,58362
+75976,22427,12248,35624,20442,14429
+75977,74733,28234
+75978,12286,16937,1748,14986,23514,18411
+75979,27034
+75980,3568
+75981,9511,13037
+75982,35630,74247,42330
+75983,55501,31995,22636
+75984,35627,14437,41622,42822,38316
+75985,55682
+75986,29333,19519,12696
+75987,48552,16659,52059,4617,62662,8962,65744,11786,1369,40853
+75988,79068,44754,24651
+75989,45716,2281,80399
+75990,71693,69487,6772,18371,28984
+75991,23952,54196
+75992,5128,79197,1746,52842,9743,68745,53649,60168,13045,61622,13477
+75993,5305,28591,56359,1011
+75994,63472,16223,48839,54933,9903,52933
+75995,58594,66618,10791
+75996,43959,57827,48789,65574
+75997,19822,69636,28822,77990
+75998,57518,19945,31496,41460,30217,38351,10906
+75999,3088,59923,80357,40654
+76000,6188
+76001,29229,36478
+76002,23603,18122
+76003,80141,32114,9603,8610,27805,55490,34118,11543,44914,70859
+76004,73975,4921
+76005,29361,18315,70667,52213,29265,21525
+76006,19088
+76007,49219,72866,33723,18637
+76008,66337,56884,27597,77055
+76009,39625,42710,70738,58855
+76010,63030,31646
+76011,39515,34806,34897
+76012,56988,1211,3662
+76013,56911,68617,72144
+76014,74649,66627,72231
+76015,77452
+76016,11112,81539
+76017,42235
+76018,732
+76019,44291,54215,32598
+76020,29008,56150,57565
+76021,20231,15697,8622,48530,32731,63103
+76022,48981,80777,45173,30915,25759
+76023,71139,27371
+76024,72248
+76025,35969,33884,48317,11104
+76026,78670,61681,22597,62872,27967,14029,50069,38578,7291
+76027,66729,39318,16405,39887,29271
+76028,49260,36467
+76029,71204,56637
+76030,60698,33177,25189,25983
+76031,74744,17368,28596,78035
+76032,27551,52359
+76033,598,74185,1769,71063
+76034,70666,28177,19425,71959
+76035,65400,60357,20352,27996
+76036,68528
+76037,6953,8454,60424
+76038,30528,51174,30472,2350,31746
+76039,14083,47165,76015
+76040,81575
+76041,31575
+76042,65396,80845,9628,72075
+76043,27623
+76044,53949,76519,24543,11613,32740,39360
+76045,13914,78613
+76046,2206,32575
+76047,48459,9852,52055,56637
+76048,30076,80436,75186,46371
+76049,46715
+76050,57280,13498,20619,63940,10349,32980,31815
+76051,57192,41452,71122,61590
+76052,24880,2270,2938,23070,74803,1175,32157,187
+76053,44559,4441,34898,10360
+76054,60497
+76055,60157,78971,46792,11054,53934,7191
+76056,29293
+76057,17895,77953,46189,3644
+76058,53975
+76059,15164,78363,75459,79148,47387
+76060,29633,10976,23013,66431
+76061,79718,2030
+76062,29601,77079,18367
+76063,69367,79066
+76064,37109,76625
+76065,11609,66712
+76066,81372,67608,30582,76764
+76067,47668,4329,6363,35571,1865
+76068,46095,41252,63085,76281,44166,33601,7806
+76069,1466,11168,13507,19628
+76070,43732,2220,57146,29062
+76071,67646,26255,12246,65030
+76072,80919,17824,17867
+76073,21410,69650,41764,58858,73933,2407
+76074,78615,58907
+76075,41615,22390,30213
+76076,37538
+76077,42607,81809,13915,40385,6487,66004,40430,4428
+76078,64719
+76079,57621,41618,47549,18471,34633
+76080,38104,73959,56639
+76081,58815
+76082,42838
+76083,14579,9723,16232,66470
+76084,17529
+76085,19845,8852
+76086,66919,51756
+76087,47212
+76088,5401,7626
+76089,56230,76353,69791,62178
+76090,28693,12527,35559,20787,79237
+76091,14864,59900,71088,44000,79108,40530
+76092,3188,5833,19654,42975,75965,49723,75175
+76093,56150
+76094,39084,78894,61735,56350,49256,49397,41509,44869
+76095,63284,58160,78143,28148,77905,25803,74476,37038
+76096,51755,18142,47102,52508,61738,76689,22442,15659
+76097,59584,19138,26687,52531
+76098,46504,27200,42683
+76099,75316,80431,44177,45795,11648,68451,79047,825,67372,77283
+76100,67341,71494,42324,21609
+76101,58453,79630,66175,31345,66569,31306,74005,73931
+76102,54154,12718,47813
+76103,66678,21958,73359
+76104,37316,44692,28108,72166,61826,51610
+76105,39908,71027,69252,66367
+76106,11839,41044,72940
+76107,42498,43141,12429,19026,17477
+76108,40078,8133,53738
+76109,61295
+76110,65509,65556,52021
+76111,41483,44148,70063
+76112,44958,31909,62382,51613,25647,22032
+76113,33069,65320,42450
+76114,10771
+76115,18723,61928,22101
+76116,5406,30480,52621
+76117,41059
+76118,79724,14359,46466,63042,11973,33682,6021
+76119,36991,65617,35315,61866,837
+76120,66968
+76121,63441,5064,11383
+76122,31422,13656,16116
+76123,65470,14466,30064,61153,55476,10608,79778
+76124,77968,23029
+76125,10539,22570,74744,6477,58362,57392
+76126,21872,54777,66497,32071,29083,63927
+76127,73663,48453,57772,459,34781,52413
+76128,7172,65602,72894
+76129,41274,11837,62869,31498
+76130,67569,42949,37496,41648,5541,20059,59499,58831
+76131,81244,75786
+76132,69274
+76133,25614,54961
+76134,44498
+76135,55109,4134,60290
+76136,21498,11415
+76137,26571,77393,15043,13256
+76138,76397,76132,51256
+76139,60185,61842,47102,16257,17516,26832
+76140,64853
+76141,73399,70061,34560
+76142,81089,38787,58625,65083,66366,7673,10166
+76143,26794,74884,56403
+76144,25067,66042,2141
+76145,73942,11678
+76146,77652
+76147,23823,10844,53295,18781
+76148,25472,76141
+76149,29617,46072,76472
+76150,34537,73169,6844,1648,4341
+76151,53047,63794,6769,43017,63579,25623,56418,5064
+76152,12593,35847,5312,27493,47995
+76153,70826
+76154,11861,20477,6814
+76155,60661,640,51750,15788,25951,20262,79362
+76156,38121,39371,66760
+76157,59043
+76158,11898
+76159,64637,11900,34529,44920,80497,31598
+76160,38011,7728,43763,60791,65650
+76161,33730,56287,10302,26185
+76162,80213,34262,81601
+76163,81738
+76164,28452
+76165,53641
+76166,34234,77289
+76167,29522,28442,47388,65559,72531,24244
+76168,1498
+76169,28087,54436,58039,28616,26671,60178
+76170,39218
+76171,68758
+76172,54732,11741,1883,63832
+76173,702,14863,51753,868,67760,8333,18690
+76174,21820,42924,73191,13384
+76175,51985,66447
+76176,59946,69215,33929,507
+76177,77272,21857,48735,46710,76487,53929
+76178,72864,13655,280
+76179,65807,72167,65155
+76180,1134,3732,34952,55638,24033
+76181,10109,33762,11008,21364
+76182,8641
+76183,52526
+76184,955,59622
+76185,53543
+76186,24435,38718,80726,42389,30237
+76187,59235
+76188,22493,62344,75656,7542,52264
+76189,37168,28836
+76190,81699,23258,61166
+76191,12143,39653,74610,7576
+76192,21744,58571,76209
+76193,77456,26850,80361,29098,915,6380,60874,28750
+76194,40150,2491,77592,58971,13619,27709
+76195,18586,40107,77142
+76196,14904,45495,53424,67391,286,72424,17104,61165,71267
+76197,1697,2423,76365
+76198,40821,53668,78261
+76199,33631,51142
+76200,38667,29868,7599,41866
+76201,75979,38632,32250,80038,52353,42410,39579,4951
+76202,79050,57512,63887
+76203,53863,8919,8550,59319,36716
+76204,60147,13698,26233,71385,71805,56305,46218
+76205,37252,61484
+76206,9718,71642,48516,32016,60098,56243
+76207,57474,69444,28742
+76208,80152,55188,39929,60886,56050
+76209,27622,70064,50496,14537
+76210,39432,22939,81009
+76211,23631,30497,10066
+76212,6226,51550,27132,44132
+76213,40911,4965,54680,19798,22501
+76214,51348,29069,25263
+76215,15026,29904,23699,20959,70885
+76216,75813
+76217,79652,7970
+76218,59347,52133,66015,32619,41357,29545,11233
+76219,82093,78363,70203,32829,69205,68834
+76220,73017,74961,48951
+76221,51727,18253,45574,78258,36790
+76222,8702
+76223,8630
+76224,72056,72931,24262
+76225,72112,70550,33531,81630
+76226,65671,59090,73981,53330,66786,44082,33941,20884,4657
+76227,43831,47004
+76228,48260,4070,35839,8841,13391
+76229,12754
+76230,18276,4264,57195,33262,22067,62103
+76231,66326,52062,37136,44744
+76232,20465,69270,61857
+76233,79263,1919
+76234,41996,3880
+76235,39727,68312,4399,17074
+76236,52076
+76237,23936,56934
+76238,58367
+76239,32840,11911
+76240,77755,76919
+76241,44329,78319
+76242,60447,48370,14135
+76243,39247,60314,62198,80438,72262
+76244,3760,63375,20031,46909,77806
+76245,70171,47966,25499,21232,23004,42416,854,39192,33858
+76246,19579
+76247,5363,48115,54742,19192
+76248,41211,55503,36280
+76249,45520,67533,21222
+76250,40313,54233,46004
+76251,43874,45842
+76252,22170
+76253,35795,15742,50588,39659,51397
+76254,51132,1624
+76255,1253,27170,57026
+76256,45924,80,22938,21920,63713,69694,42801,44386,11571
+76257,72476,49071,4033,59593
+76258,7253,17415,16502,47886,49220
+76259,61963,20054
+76260,62409
+76261,26903,74762,23908,14336
+76262,39508,33114,8599,74183,30023,43454
+76263,68861,70910
+76264,43196,19257,45964,75708
+76265,779,78627
+76266,15322,21593
+76267,54691,75277
+76268,24943,78300,79646
+76269,76598,18182,8999
+76270,26143,46945,10732,64721,20231,72846,81145,52287,69234
+76271,60488
+76272,25473,60721,4544,21036,14945,58273
+76273,73692
+76274,19508,73942
+76275,54056,10272
+76276,57914,32630,9756,10569,49289
+76277,38474
+76278,71480
+76279,32091,41433
+76280,31949
+76281,15868,5847,8193
+76282,78973,45221,55016
+76283,12023,64722,48426,9708,36530,34632,49222
+76284,607
+76285,76707,4061,40800,69537,74974
+76286,39515,77256,13112,60826,46804
+76287,45136,35832,73952
+76288,14183,9657,47996
+76289,18982,21500,30892,33465,22227,15784
+76290,29027,35098,66760,34154,16166,55980,55777
+76291,80483,19059
+76292,60871
+76293,57073,67999
+76294,78351,19353,38614,41743
+76295,38640,6396,27973,36049
+76296,17593,45482,66786,4683,18944
+76297,35570,52502,6919
+76298,30618,16125
+76299,43360,68670
+76300,40264,736,17662,34546,38654
+76301,63042,34227,2901,22555
+76302,74012
+76303,20934,54624,52729
+76304,25427,46139,80969
+76305,61873
+76306,62294,69718
+76307,65639,82051,53030,28050,73521
+76308,27410
+76309,48297,56265,38512
+76310,80398
+76311,30426,10215,46018,65651
+76312,68883,1538,17172,16372
+76313,29181,59799,57114
+76314,45131,47429,28547
+76315,74495,38566
+76316,13418,65520,75852
+76317,65036,37439,19373
+76318,10642,33873
+76319,67224,14478
+76320,1192,48055
+76321,436,59828
+76322,73267,1140,19354
+76323,36201,60099
+76324,30457,3289,76640
+76325,31648,41322
+76326,1325,60278,52296,26608
+76327,14059
+76328,25292,12198,73106
+76329,53251,20544,782,75058,44589
+76330,26993,78184,88,4390,13478
+76331,11273,13843
+76332,80839
+76333,4752,28798,47497,13771
+76334,39133,67171,10432,30863
+76335,2493,34506,8371,29223,15389,34549,14638,12294,77057
+76336,47526,73204,32604,18912,51065,51990,18096,18422,5249
+76337,81328,80409,33100,4338
+76338,65087,11645,75511
+76339,10492,7674,69858,80457,47855,64005,9009,17652
+76340,53985,14984,16468
+76341,21528,16445,55962,11475,47663
+76342,27894,70414,55393,65166
+76343,27231,36444,81747,3448
+76344,11217,76616,27559,9102,53684,65684,12845,14969
+76345,61880,27581,31367,48829
+76346,59342,14714,58018,24309,13981,30350,46466,49362,9114
+76347,17035,6742
+76348,29265,6552
+76349,6388,69608,19340,31554,67180,81442
+76350,20623,49975,70382,20372,70568,80368,32220,11521
+76351,26706
+76352,59590,13529,78077,68187
+76353,46574,36990,76731,15040,68326
+76354,60260,64151
+76355,48962,29004,81626
+76356,78027,28850
+76357,13513,28581,49219,21997,40954
+76358,56531,56563
+76359,32535,19046,41847,3775,60684,17359
+76360,53692,1509,81313,62260,37100,41311
+76361,24219,55419,29607,37006,34975
+76362,38651,40188,54316,47361,71209
+76363,65135,30083,14869,15115,38814,9173
+76364,40462,29385
+76365,68797,6352
+76366,30551,20389,82146,56430,72639
+76367,27239,7629,4436,67631,67050,1280,58081
+76368,81448
+76369,56770
+76370,75151,6566,32208
+76371,56482,17516
+76372,55181
+76373,55199,19935,30643,64573
+76374,14719,35846,64394,54555
+76375,67161,50468,47199
+76376,13886,24717,73061
+76377,30195,24703,79151,30775,46037,40175
+76378,76042,11342,79737,32014
+76379,12092,6815
+76380,61498,31609,47642
+76381,62978,65370,67925,29804,71599
+76382,72972,59693,58591
+76383,53844,5873,46828
+76384,55483,35090
+76385,49211,75913
+76386,30500,42568,25389,16764,69775,77247
+76387,61881,31107,11070,75515,80501,61700
+76388,26941,25231,2163,4698,71814,56385,58936
+76389,49052,52936,75323,39086,47028
+76390,53842,12577,48199,42478
+76391,66683,60692,20479
+76392,47329,29356,46118
+76393,42177,52853
+76394,77245
+76395,21395,12994,26493,46550,49637,37660,69300,44828
+76396,58066
+76397,31872,40340,11151
+76398,74267,33416
+76399,53090,77380,15781,38175,37825,33913,4421
+76400,42053,23635,57854,37360
+76401,59062,75366
+76402,71485,45313
+76403,67191,80588,1142,6960,15950,6939
+76404,71090,32904,64402,10689,76767
+76405,30597,29650,69230
+76406,26245,63196,82137
+76407,32497,95
+76408,72735,47179
+76409,46866,71258,39478
+76410,56626,38780,71593,73450
+76411,7549,42305,9850
+76412,76157,55865
+76413,75352,64486,76941,49253
+76414,26392,13177,81971,52487
+76415,73644,23937,11472,15030,2490,45469,14233,71555
+76416,79474,61023,8080
+76417,52714,30064,26843
+76418,30759,74211,26841,36826,71008,31129
+76419,69630
+76420,8152,14998
+76421,32750
+76422,81395,76820,28204
+76423,38496,79558,82141,62880
+76424,8188,63621
+76425,46553,53785,7730,69628,39817,19494,25542,49217
+76426,64788,48166,47215
+76427,77838,2102
+76428,7395
+76429,56719,81879,1559
+76430,78867,30233,11051
+76431,80031,74153,33339
+76432,71499
+76433,53049
+76434,19848,80002,65665,45480,8008
+76435,26815,16992,63899,21722
+76436,40530,9126
+76437,65282,48552
+76438,11745,11003
+76439,59103,24016,61614
+76440,61996
+76441,70555,46649
+76442,64767
+76443,53566
+76444,18754,34183,76,80473
+76445,37166,51603,48788
+76446,67709,6463,77143
+76447,47315,65400,67311,19140,81691,56330,20955,28835,56874,40525
+76448,30110,17558,24418,20213,9969
+76449,14903,10057,206
+76450,78653,66997
+76451,51347,78017,38111,2329,27251,23904
+76452,51692,66569
+76453,65329
+76454,7045
+76455,43610,8538,55775,65745
+76456,64597,61309,26633
+76457,39669,17016
+76458,60305,82029,38213,71394,48646,11148,55047,81697,49153,29424
+76459,59229,44794,62019,37792,30320,49938,14443
+76460,31777,53582,69322
+76461,3887,74902,56376,35175,13368,59307
+76462,65800
+76463,50178
+76464,23497,50391
+76465,79624,65285,25813,29456
+76466,70565,14290,46333,81022,29566,18003
+76467,25891,49540,31181,8251,7487,71869,21024
+76468,22484,15462,6262,70434,18028,28823,76162
+76469,57291,22299,23808
+76470,8453,29259,62275,64511
+76471,13601
+76472,37542
+76473,68766,11876,25403,6848,10134
+76474,60247,65205,48742,11276,18988,1604,49207,39142,47957
+76475,44009,45139
+76476,71120,77288,54159
+76477,13043,32762,69594,44794,33907,21131,32859,16867,46847
+76478,56729,17925
+76479,51799,33091
+76480,40752,78575
+76481,57513,80283,29772,13501
+76482,79024,18626,62988
+76483,35787
+76484,30637,70089,29958
+76485,54962,74690,34643,38317,45857,57706
+76486,53367
+76487,14120
+76488,75971,29066,27980,57707,65472,35590,14730,74383
+76489,73525,57090,63233,35913,25036,74647
+76490,78828,19845,76113
+76491,62819,1372,37130,7081,30619
+76492,70935,29216,33058,32101
+76493,20768,48554,7481,4779
+76494,7134
+76495,66088
+76496,19465,40984
+76497,54082,3071,65933,71233
+76498,28625,33592,61370,51789,77033,43336,65714,50911
+76499,10748,8431,28635
+76500,5956,51854,24779,52038,74628,48138,43765
+76501,73626,22109,53425,10491
+76502,52242,73532,18248,38038,40446
+76503,50688,49678,35825
+76504,31119,71867,22311,17054,44175
+76505,26138,64424,47741,76278
+76506,11529,67305
+76507,23019,20584
+76508,37445,71003
+76509,42920,70035,79799,48516,34155
+76510,30440,53960,48527
+76511,39838,34910,58719,44636,16844,49964
+76512,61709
+76513,25457,34754
+76514,25661,78516,32420,26858
+76515,20782
+76516,47316,31267,45129,13504
+76517,61820,65182
+76518,71799,77567,28227,39692,57839,44876,71311
+76519,69440,40498,81768
+76520,30598
+76521,17342,53947,34249,77802
+76522,55278,26180
+76523,1789,81182,46205,4492,68505,18264,40473,22701
+76524,38876,74570,10750,27437,47551,71056,41795
+76525,36344,46767
+76526,54187,64232
+76527,64689,36886,49651,73308
+76528,51459
+76529,70551,56217
+76530,26903,53534
+76531,73433,36975,35763,65871,71132
+76532,43746,78446,39080,6407
+76533,36295,72063,3562,50576,42709
+76534,37715,25840,57420,7566,31776
+76535,10441,65703,74024,6021,40269,4635,46156
+76536,480,59169,40487,66471
+76537,37275,69311,6361,77616
+76538,22841,12371,64044
+76539,8856,34408,10234
+76540,2296,57676,61886
+76541,76315,8952,64565
+76542,51248
+76543,34227,29265
+76544,41764,58255,48655,76917
+76545,22067
+76546,67314,5671,52291,36034
+76547,29940,10442,2629,19607,68068
+76548,5870,28379,8362,70044,17910,18040
+76549,22099
+76550,60440,29374
+76551,16911,6948,18933,587
+76552,25826,41244,13021
+76553,42673,29145,48625,73677
+76554,62997,17979
+76555,61918,73472,54213,13733
+76556,58729,8617,35296,9208,63740,80775
+76557,31141,68580
+76558,64436,13014,30940,11722
+76559,61649
+76560,26586,4022,14212
+76561,17282,316
+76562,7420,42604,19915,37715,18899,80213,27443,52529,60246
+76563,16777,58279
+76564,6073
+76565,52706,9532,17770,67903,30187,48420,63031,50463,70866,30740,3414,30513
+76566,19146,37698,17618,66743,5038,2187
+76567,38950
+76568,4637,29576,42636,5385,51357,18971,73528
+76569,51552,58736
+76570,10621,56984
+76571,43008
+76572,48850,21479,46502,27635,20624,63214,68218,61961,49657,60414
+76573,77986,24750,8586,38531,74642,9477,73197,11129
+76574,63158,40473,279,60185
+76575,77445,67814,13501,77849
+76576,52846,26706
+76577,36037,51719
+76578,63349
+76579,23226,2103,72180,35286,11511,25010,23392,27524
+76580,74547,56566,23523,44492,42981
+76581,1651
+76582,56105,43324,2059,65057,6412,999
+76583,29887,25403,78138
+76584,51063
+76585,47988,80670
+76586,51501,33272,70288,9996
+76587,72374
+76588,31255,71759,63639,38770
+76589,33400,15630
+76590,60995,46258,4522,47817
+76591,17956
+76592,30943,45283
+76593,57198,27721
+76594,55472,50650,49595,31417,65598,20901,74927,8200,64279
+76595,49533,3669,20485,47083
+76596,9054,50494,7208
+76597,9730,34462,31438,56986,63250,33455,15295,2788,13778
+76598,411,3591
+76599,66102,75151
+76600,64809,52258,51902
+76601,14393,30444,68432,17343
+76602,19510,52694,46160
+76603,33787,53701,45329,56150,12589,2213,69009
+76604,19873,51956,26489,75435,8296
+76605,19845,6373,60021,80517
+76606,41184
+76607,6309,51178,41799,68560
+76608,42047,35426,51947,19210,13168
+76609,76781,26704
+76610,47195
+76611,50093,20615,42619
+76612,23912
+76613,15461,16310,51129,34107
+76614,40347,61174,32229
+76615,1298,44095
+76616,53404
+76617,68283
+76618,44870
+76619,44562,77505,30291
+76620,45787,65265,37488
+76621,51867,20676,54774
+76622,1604,60556,76205
+76623,71066
+76624,36247,40280,14099,80640,5547,7628,81504,57007,81090,6557
+76625,7242
+76626,18392
+76627,35358,70256,23367,76307
+76628,13882,42351,36970
+76629,7076,13459,29565,17200
+76630,28711,59191
+76631,20428,81488,78371,46449,79525,67335,21133
+76632,8630
+76633,10096,81797,35095,7333,65005,34530
+76634,30440,33888,73268,17755
+76635,30286,50764
+76636,46957
+76637,29124,48563,13852,72905,8410
+76638,68995,59952,20985,70950,50247,61456,66742
+76639,17392
+76640,63045
+76641,71172,18826,57942,29920,16100,36667,9971
+76642,20445,6597,18298,45913
+76643,8052,32344,6063,25733,53255,71126
+76644,16584
+76645,22459,4764,41070,18099,35897,43123,71251,48456
+76646,80842,30258,74409,79833,6277,50877
+76647,55241,23311,24222,51221,62316,3307
+76648,34633,14038,17176
+76649,54774,40050,33897,16951,62579,65829,22983
+76650,32515,69066,76985,21347,33080
+76651,25911,28915
+76652,10090,21888,40819
+76653,35207,78490,47617,56718,15896
+76654,14228,754,46909,61059
+76655,67569,49386
+76656,33524,52272,12080,48602,44686,58258
+76657,3264,2688,45663,52672
+76658,67480,930,80666
+76659,36478,17898,22006,78358
+76660,76310
+76661,24873
+76662,56842,43046,22808
+76663,31462,44403,42165
+76664,5333,41046,27276
+76665,54233,63962
+76666,39639,24938
+76667,40858,31365,21476
+76668,30354,42955,13052,55064,15431
+76669,12124,75580
+76670,59023
+76671,4118,51340,32690,28182,69297
+76672,56874,74259
+76673,62454,30856,24813
+76674,58958,1702
+76675,13922
+76676,31413,46815,47194,17523,17775
+76677,65044
+76678,51490,64462,33172,31041,54181,80876,13895,43638
+76679,34042
+76680,50213
+76681,57201,6186,74941
+76682,63403
+76683,37777,66263
+76684,31560
+76685,58972,63891,64608,75389,67484,656
+76686,50226,36133
+76687,62544,21605,78152,74574
+76688,69217,24445,9644,41353,49711,12238
+76689,35286,50870
+76690,64303,49703
+76691,71205
+76692,78349,26639,49274,9263,77180
+76693,28052,28672,13851,76041,13705,10377,18890,9606,41511
+76694,376,74820,27739
+76695,77545,46024,21558,46480,28231
+76696,64561,11516,63879,15545,68048
+76697,58269,42661,55061
+76698,16806
+76699,19211,49776,65759,22087,68448,2533,5702,22625,69693,79527,38351
+76700,71317,24497
+76701,29701,6406,11527,50404,6435,28435,42483,54695
+76702,22756
+76703,42510
+76704,37549
+76705,62964,17661,66450,53597,27964,65379
+76706,62657,31408,22269,17814
+76707,23665,61427,6804,32198
+76708,1651
+76709,74146,62824
+76710,21488
+76711,14453
+76712,69655,13761,22523,78034,34888,57355,64074
+76713,81021
+76714,32559
+76715,38781,57083,9475
+76716,60814,21040,48852,37207,18350,56760
+76717,67393,25292,73851
+76718,66337,33672,49518,27798,18079,41437
+76719,40723,80314,1285,40625,58342,3450
+76720,33635,62899,60955
+76721,64460,22109,764,72631
+76722,18964,57139,63473,58878
+76723,40310,25692,78279,27224
+76724,14939,81642,53404,10001
+76725,28948,28812
+76726,6832,62328
+76727,70941
+76728,80401,77557,54951,70554,56257,25192
+76729,1591,51529
+76730,29427,48511,39524,61488,23695
+76731,43623
+76732,54753,66292,28172
+76733,36090,77399,8810,60674,58232,56277,57343,51439
+76734,11302,43580,42383,56120,63074
+76735,63058,1582,38399
+76736,41734,54506
+76737,56685,6412,17968
+76738,81021
+76739,56236,71299
+76740,54915,58030,25714,54533,14689
+76741,53810,58791,66227,13220
+76742,426,24025,80125
+76743,77232,71904,56853,62322,72679,78467
+76744,69180
+76745,21593,66775,61174,17082,47970,75047
+76746,11711,20775,77353,31914,74871,60677,11085,77492,36577
+76747,78182
+76748,67879,70364,12170,76965,57153,67179,54174,30965,9487
+76749,31105,30619
+76750,35389
+76751,22271,36300,34481
+76752,33424,47895
+76753,54287
+76754,30871,12129,47016,27789,26432
+76755,40379,10753
+76756,1317,78357
+76757,14002,12553,50809,30158,79123,77181
+76758,40076,34025,4761,19831
+76759,81706,75672,71139,38061,64960
+76760,41179,60566,12558
+76761,8977,55257
+76762,3666,36963
+76763,76432,76457,77503,52113
+76764,256,27690,80401,39485,6745,16670
+76765,14347
+76766,49228,79299,30548,59120,77201,77635,18765
+76767,25120,40406,70318
+76768,12755,48191
+76769,60042,37205,15282,81443,50931,50654
+76770,77888,36283,18325,37450
+76771,2882,48531,8335,16707
+76772,73015,33120,54233
+76773,51749,9039,55360,40813,38815
+76774,63396
+76775,35935,31750,5681
+76776,81182,34494,7209
+76777,76785,57512,65728,75753,33693
+76778,76625,29551,4758,77157,30700
+76779,5873,54533,4937
+76780,19173,32606,9130
+76781,63639
+76782,23658,40059
+76783,55632,31996,51337,51594,73751,9840,30940,31798,71229
+76784,71688,34359,31619,14843,68094,9666,37801,57808,14887
+76785,37480,4700,58797,44620,47930
+76786,58792,33980
+76787,30807,73509,79443,75570
+76788,43694,28601,75581
+76789,28809
+76790,34441
+76791,82130
+76792,10405,21143,65760
+76793,42193,11054,50475
+76794,40330,36207,45850,7546
+76795,27361,58515,18609,65361
+76796,68043,38534,65320,43814,76110,55409,76040,43073
+76797,38973,13158,22548,64924,20267
+76798,79851,80365,59900,43563
+76799,46240
+76800,77294,20110
+76801,53398,31003,15955,15587,53281,51960
+76802,9448,10033,27028,9321
+76803,13155,38483,65166,65887,18384
+76804,45482,30353
+76805,6258,13144,61571,59359,53962
+76806,47786,13277
+76807,52594,45670,29378
+76808,52044,73917,14135,2729,80511,61506
+76809,10290
+76810,39217,4480,75596,10270,31951,4256,45480,6331,18103,63459
+76811,55805,3354,65922,23608,43499,12694,35514,838
+76812,44076
+76813,49344,67249,33381,28787,64795,75481,39644
+76814,69185,24637,64064,1218
+76815,75396,35720,59385
+76816,59781,67999,14186,80678,66578,7817
+76817,69232,81771,22640,78963
+76818,7555,5301,53739,5923,41854,23840
+76819,57239,45528,30803
+76820,80570,77235,55844,78343,1535
+76821,47267,77485,35264
+76822,37294,33736
+76823,54907,55862,60496,43973,72634,38844,35570,13362
+76824,2973
+76825,68600,2353,39835,11429,5723,23387
+76826,44899,6042,62725,79013,78884
+76827,6250,77241
+76828,46561,24529,43750,68781
+76829,42404,20701,13460
+76830,51907,32170,81608,43740
+76831,58535,40041,71784,10704,80274,42799,81649,47552,44920
+76832,49641,43145,71830,76420
+76833,20885
+76834,2127
+76835,49434,33868
+76836,73707,57999,25600
+76837,42434,63805,44896,10852
+76838,54481,3414,41356,19156,30290,13728,30318
+76839,41272,30261
+76840,30550,79068
+76841,42773,7452,67433,10605
+76842,44485,7797,26594,12697,44729
+76843,11233,3658,46543,21803,33223
+76844,54355
+76845,37315,10704,33979,59277,73495
+76846,75728,15184
+76847,79138,38363,81846,14002,9305,44110,46180,55923,61415
+76848,71344,12029,7108
+76849,54336,20635
+76850,36065,16689,29255,46451,57597,5716,38726,78837
+76851,60671,12454,79006,40239,48185
+76852,8240,63016,47329
+76853,19574,68925,42847,6986
+76854,37203,35590
+76855,68059,63578,73663,69603,16446
+76856,25614,38485,4329,12436,39860
+76857,64315,46144,69735,52209,35247
+76858,36312,8116,50746,36572,31906
+76859,18887,27610
+76860,44396,66656,27895,10180,7859,23198
+76861,50234,61397,26749
+76862,30763,69708,35287
+76863,7231,6246,6391
+76864,14625,36848,10310,44739,73115
+76865,59946,30620,36292
+76866,23320,52840,46416,12435,35046,20051,24827,59738
+76867,1882,42055,42236,69124,31673,37057,5755
+76868,23609,80707,26497,16102,62237
+76869,59161,55602,76505
+76870,35341,2511
+76871,62551
+76872,66518,14667,62127,51278,42277,41332,36933
+76873,32429,11130,38369,11843
+76874,9348,46933,55095,66440
+76875,27296,65147
+76876,35640,34002,9227,32408
+76877,44400
+76878,22012
+76879,38310,60029,57755,56422
+76880,30254,68692,15550
+76881,36037,45823,53422,5206,13039,22287,42903
+76882,25172
+76883,55527,8988,55471,17368,77202,46537
+76884,13557,80136,17570,12370,11834
+76885,32738,37390,20623,11327
+76886,15684,9694,52365,31412,58317,2015
+76887,47555
+76888,75216,53511,38149,54604
+76889,63532,62523,47662,42404
+76890,57618,51469,3465,17049,54257,81499,64607,5109
+76891,36714,53660,59513,62661,57410,24303
+76892,67581,36562,66501
+76893,14329,31101,78101
+76894,23061
+76895,58126
+76896,66799,60264,9787,75307,25599
+76897,81425,66465,78003,14759,25002,27790
+76898,24709,26221,45744,11779,36532
+76899,18026,19838,81217,41920,54982
+76900,67606,17998,25537,7176
+76901,40757,19055,48582,66909,68831,69476,29047
+76902,40881,9591,13145
+76903,45342,34134
+76904,55908,27049,26422
+76905,67376,53853,42026,75006,30421,50006,77018,9317,139
+76906,81784,21456,75566,13514
+76907,31778,36686,50489
+76908,81990,7298,49552,15657,10904,29353,1341
+76909,41754,57022,62612
+76910,70854
+76911,17446,66846,45638
+76912,9883,3378,1115,2844,26195,30988
+76913,35553,71715,8615,25874,34238,43682,31999,62382,17433,74558
+76914,45809
+76915,17408
+76916,71241,57046,30127,65979,64692,7560
+76917,9408
+76918,14238,1336
+76919,73304,21921
+76920,4652,48283,81265,21302
+76921,13155,34272,804
+76922,50072,33139,25446,34816,59853
+76923,40517,82156,30312,23328,13481,44121,52720
+76924,37399,65
+76925,21143
+76926,65044
+76927,27010,54160,47769
+76928,13386,60751,81267,40530,33992,42776
+76929,62512,26414
+76930,25339,31515,65376,484
+76931,59004,49554,21916,155
+76932,74951,81119
+76933,80053
+76934,57134
+76935,68483,66343,7371,30458,56844,49748,73095
+76936,48789
+76937,24154
+76938,37169,12249
+76939,8225,68669,52812,63904
+76940,72228,69659
+76941,79912
+76942,59772,34717,43694
+76943,20287,45273,77425,21241
+76944,69577
+76945,21143
+76946,70999,18689,74600
+76947,48687,44971,67689
+76948,15707,20582
+76949,41327,47628,2100
+76950,14238,70104,23720,18308,81306
+76951,9601,148,11683
+76952,25998
+76953,22277,12754,44524,50802,29847
+76954,69322
+76955,75100
+76956,38118,34500
+76957,22805,73588
+76958,25334,71930,40240,67769
+76959,21381,52119,9702,58867
+76960,41423
+76961,35624,25025,57807
+76962,40303,16792,2934,43185,66775,42027,26860
+76963,60110,29956
+76964,81346
+76965,13920,11556,9689
+76966,31112,49341,50032
+76967,68443,73388,25121,22183,30466,27190,9196
+76968,57630,51551
+76969,55638,8018,16192,3228,29511,12928
+76970,17482,24962,22236,81784,56844
+76971,33751,28951,56649,24491
+76972,37373,33422,5878,71888,53873,22437,74753,9442
+76973,63724,74031,18453,29066,59256,41098
+76974,11728,64333
+76975,68352,66913,30755
+76976,70544,59031,56660,44552
+76977,74079,78394,44210
+76978,10132,15509,1509
+76979,14315,12127,61131,40853,47851
+76980,1031,44693,13434,78857,15323,33055
+76981,7531,51496,29631,46787,79998
+76982,47654,637,20119,2173,35757,14942
+76983,45336,47443,16261,26687
+76984,66564,28801,40411,54121
+76985,6949
+76986,73726
+76987,37809
+76988,76409,6636,15262,11551,15652,27015,5782,27230,36263
+76989,17606
+76990,46859
+76991,59526
+76992,76964
+76993,9555,30323,73045,63479
+76994,77560,7167,11328,2994,52911,9823,19030
+76995,36680,9824,52972,14010,62044,66965,55129,50764,29017,37265,16376,81023,51023
+76996,243
+76997,13609,18014,7794,42464
+76998,24668,58592,46946
+76999,13920,37515,53125,74567
+77000,20245,18236
+77001,25015,5469,22437,62422,62780
+77002,1044,7668,47072
+77003,35533
+77004,68424,24887,3021,12114
+77005,54985,17978
+77006,81800
+77007,66704,23339,76773,6704,39147,34090
+77008,45827,11362,57975,31370,21022,23624,44053,52943
+77009,25085,4169,17660,6963,71146,45259,67610
+77010,58830,25584,8001
+77011,32130,59741
+77012,74085,56854
+77013,11598,71551,17330,18172,54235,63792
+77014,57318,54382,32614
+77015,4953,41913,57223,33216,76002,1015
+77016,61186,57481,40676,35076,22073,34681
+77017,26528,14383,12027,53333,41723,16499,2738,37898,11043
+77018,25666,65912,71073
+77019,38049,46514
+77020,72519,30548,76020,2835
+77021,19673,71996,2383,78691,60138
+77022,23006
+77023,42835,21098,55316
+77024,34034,57003,66586
+77025,75485,28704,56342,61001,60920
+77026,19654,39905
+77027,17681,7373,58081,48544
+77028,33310,7173,49537,80307
+77029,64071,14001
+77030,30538
+77031,70145,69410,8312,10033
+77032,77481,70024,39159,29806,8091,33003,30798,45480
+77033,56854,26311,26444,22820
+77034,22480,38817
+77035,67090,79576,67592,48851,72038,73106
+77036,2346,36265,29825,73307
+77037,38615
+77038,31028
+77039,22499
+77040,35911
+77041,72643,5790,44956,55436
+77042,37318,49412,26204,28204
+77043,51976,38941,63594,66984
+77044,15165,12028,33650,26219
+77045,69439
+77046,56750,79348,76985,46572,1193,26605,56232,47388
+77047,69982,33222,30940,9379,78390
+77048,4547,63982
+77049,50216,79883,60451,69093,57386,80957,32566
+77050,66458,22691,15613
+77051,38576
+77052,63986,77437
+77053,71469,72786
+77054,11718,58917,4395,55566,27600,27165
+77055,78832,44260
+77056,44503,17568,41649,14396,71839,29414
+77057,59390
+77058,60669,78772,11230
+77059,67282,60767,71752,80128
+77060,30530,3104,65716,43272,47030,28976,37350,59821,4765
+77061,75600
+77062,67824
+77063,40974
+77064,33465
+77065,81699
+77066,24864
+77067,22588,12547,80394,5436,9021,75495,43484
+77068,51787,51170,56431
+77069,29933,29295,77866,5704
+77070,50867,64791
+77071,58418,58670,31846,48651
+77072,4701,9526,22547,35720,59868
+77073,46832,71739
+77074,47897,50239,34548,66323,54375
+77075,12254,68707,69969,75342,8377,17153,52007,55306,31379,39710,43956,46260
+77076,35336,49829
+77077,5397,66987,18490
+77078,46316,54702,58692,48379,9886,45510,73067,2950,29326,81781,49045
+77079,76486,35391,20780,69179,15229
+77080,59655,71868,72549,47151
+77081,24104,74330
+77082,57539,56510
+77083,61073,56471,12952,32281,26820,79955,78219,5957
+77084,505,57716,28257,22619,19798,29374
+77085,868,29048,71043,31860,31159,9184,43304
+77086,28471,20692,4120
+77087,68635,16319
+77088,8405,81934
+77089,44630,18302,7803
+77090,41431,41517,34498,59635,14848,53512,17128,36465,243,42635
+77091,58148,19667
+77092,48436,61208,42549,26640,34733
+77093,35240,1752,38016,14810,10270
+77094,8614,9738
+77095,67777,29027,14904,64047
+77096,11883,8611,39786,17687,17293,4882
+77097,18647,5389
+77098,43563,4134,32256
+77099,32729,34910
+77100,59622,56824
+77101,77857,10417,61303,37337,68831,38380,63503,37348
+77102,30422,54950,8224,24087,49335,66455,6725,80159,59127
+77103,38223
+77104,34038,71433
+77105,21614
+77106,73611
+77107,30236,50668
+77108,27268,45382,67719,78582
+77109,80278,54702,61389,36466,79698
+77110,34102,68572,34774,50,12855,5727
+77111,35700,48983,61428
+77112,57324,81023,39159,23388,63471
+77113,46854,76486
+77114,60105,5784
+77115,64285,24139,46462,38278
+77116,26151,236,21901
+77117,51197,9106,56255,11707,44692
+77118,57788,66524,61284,78139,24651,54393
+77119,4431,42040,3827
+77120,40949,68667,24039,75040
+77121,3719
+77122,42643,33462,8971
+77123,29135
+77124,21972,42401,60464,73460
+77125,9278
+77126,74143,19140,34750
+77127,36252,49616,14843,73365,78229
+77128,3604,63367,26156,54429
+77129,58424,14163
+77130,63183
+77131,60139,58623,10198,80265,5328
+77132,74731,14592,31770,11311,6750
+77133,80082
+77134,61459,45456,17873
+77135,44477
+77136,22121,65151,34109,21576,60449,55579
+77137,29424,19188,16075,1503,35709,32169,79845,26685
+77138,58022,80969,33424,35432
+77139,72734,36858,73799,20968
+77140,33966,15951
+77141,63815,27492,36577
+77142,16975
+77143,74649,76267
+77144,5859,7971
+77145,72169,50881
+77146,39471,60269,674,3899
+77147,34008
+77148,20082,41431
+77149,74176,75695
+77150,63311,45831,46302,77087
+77151,2069,1644,55600,53396,43562
+77152,11367,30755
+77153,30165,3297,74020,16553,41280,11830,73550,54691
+77154,26667,78126,76512,82142,17528,63770,44899,38660,67178
+77155,13549,7346,47974,18368,24536,53705
+77156,58730,7131
+77157,14922,26902,9534
+77158,80526,46308,25134
+77159,32204,2921,11768,72437,19785,48106,23412
+77160,66911,9564,35444
+77161,72696,42621,54651,44483
+77162,39774,76168,25781,76231,49786,65356
+77163,50511,21904,56440,43817,70586,77756
+77164,78807,1041
+77165,5596,56930,81156,42204
+77166,13112
+77167,15394,20287,24706
+77168,45257
+77169,14716,18551,55079,27034
+77170,34403
+77171,38268,76621,36874,29771,19629,12395,60554,14323,25521,65667
+77172,26477,52481,59806
+77173,80704,14149,5987,63625,78860
+77174,65382,45526,52228,20172,61090,18692
+77175,55895,46503,78681
+77176,42578,27921,34537,55211,1473,49182,38532
+77177,21545,3333,75485
+77178,35793,54644
+77179,75335,15630,53210,74526,29955,6581,54627,33310
+77180,52934,48368,8601,43126
+77181,3392,29497,12793
+77182,12543,6945,34785
+77183,19569,20019,51330,79251,62393,71486
+77184,54388
+77185,25895
+77186,34042,68818,73457
+77187,56444,43218
+77188,60944,36149,25647,65587,44317
+77189,28468
+77190,78380
+77191,81886,15134
+77192,23102,36124,19778,35731
+77193,54101,43101
+77194,73904
+77195,76422,62324,50503,20390
+77196,14714
+77197,37054,41627,29619,2172,11676
+77198,9105,34082,49323
+77199,16853,11472,4029
+77200,1582,13785,61145,30845,72251
+77201,52278,65158
+77202,65144,70054
+77203,28446,72151,27023,42075,54009,67387,59846
+77204,46826,22910,64485
+77205,43164,769,38837,75127,56872
+77206,18501,46864,3073,27807,42520,28648,67342
+77207,73556,53057,32801,61955,13765
+77208,19781,48353
+77209,77563,71446,26049
+77210,76803,80344,14429,14407
+77211,47555,27678,61518,55616
+77212,17348,19211,2096,22947,75365,8843,24857
+77213,20607,9126
+77214,61805,677,45246,62110,22303,26402,48244
+77215,57410
+77216,32362,38795,58579,33453,3922,5334,81400,74465,6027,10963
+77217,32377
+77218,19325,8765,39828,31248,72563,338,68563
+77219,80408,70852,18305
+77220,65111,31475
+77221,42176,51512
+77222,50919
+77223,27550,39685,3688,60792
+77224,9870,75143,13454,52306,78358,36978,62339
+77225,57919,59136,45292
+77226,58074,64066,31534,9434,24139,42769,33085
+77227,20619,4565,9390,1325
+77228,59546
+77229,9701
+77230,38259,17716,3686,24625,28661,76218,63876,82012
+77231,50043,42114,34669,49762
+77232,36625,70130
+77233,60895,484,63939,17971
+77234,63181,21143
+77235,45566
+77236,71480
+77237,60822,47027,78230
+77238,36378
+77239,7125,23972,47871,60827,3559,59633,17444,16411,5632,59194,26854,53814
+77240,11034
+77241,8622
+77242,24801,56439,79782,33398,39337,64717
+77243,64700,21964,50667,80131,44619,5123,69209
+77244,46847,35379,41380,56391,46911,26645
+77245,14397
+77246,66212,11610,29023,68600,43736
+77247,66278,54651,6149
+77248,77550,70998
+77249,43620
+77250,75451,45786,37644
+77251,6115,10781,78592,50761
+77252,48656,9804,27114
+77253,33169,2415,39464,68482,82076,21918,54193,66061,67989
+77254,10608
+77255,76136,32671
+77256,24410
+77257,45327
+77258,18833,53022,1311,37940,11751
+77259,64546,34713,76761,7346
+77260,53764,54253,55622,3485,8228
+77261,78513
+77262,62832
+77263,20680,20093
+77264,3807,58717
+77265,29822,27542,61303
+77266,22053,81233
+77267,13839,55510,71715
+77268,73403,76606,4504,64177,57654
+77269,50475
+77270,7578,75636,42577
+77271,13555
+77272,63318,15304,17789,37318,48580
+77273,48539,47552,1874,28936,70442,61195
+77274,32042,50129,32729,25037,3810,73267
+77275,48537
+77276,75905,50253
+77277,38780,35727,2773
+77278,30009
+77279,77671,70123,38512,13802,52363
+77280,75575
+77281,75443,26942,52579,71462,74713,81108
+77282,10518,38356
+77283,66503,73377
+77284,7770,47240
+77285,12819
+77286,33533,42921
+77287,5697,44561,73134,14554,63831,81573,261,72324
+77288,64185,76895,36587,68327
+77289,54553
+77290,18005,11163
+77291,7892,1676,68668,22188,10821
+77292,34491,45219,37446
+77293,45005,77247,42543
+77294,51298
+77295,73783,2664,70841,61554,54351,40486
+77296,7490,75856,52999
+77297,81634,21454,75697,1749
+77298,12518,50318,27631,62586
+77299,8009,61798,5370
+77300,31353,168,1687,52179,10929,52404,26476
+77301,18919
+77302,2429,22084
+77303,43537
+77304,67944,24388,73450,46656,80322,65217,11634
+77305,32161,52928,14256
+77306,58737
+77307,10001,43878,75119,51971
+77308,52956,13351,76861,274,12456,57713
+77309,19340,39556,46472
+77310,80392,38397
+77311,19629,64615,77998
+77312,23737,44918,30077,37039
+77313,11354
+77314,70268,20590,8346,53563,66805
+77315,18890,34580,44420,19092
+77316,70941
+77317,29265,11865,1577,72424,36507
+77318,57410,11669,57036,79085
+77319,18658
+77320,25427,33192,60305,41554,73174,4004,41211
+77321,23295,31909,14887,35490,67254,71720,81785
+77322,37733,41772,34440
+77323,24547,42021,69293
+77324,44839,48448,34553
+77325,30182
+77326,26767,20755,20532,56164,63659
+77327,1179,24249
+77328,63275,24857
+77329,79947,26748
+77330,9769,33234,25952
+77331,6237
+77332,30095
+77333,12574,81026,77858
+77334,60264,27104
+77335,38820,12571,15919,11318
+77336,59150,475,48934,17181,62180,52245
+77337,49460,7609,62606,43748,24555
+77338,62309,18603,32618,52945
+77339,76753,1311,17173,9109,10891,45474
+77340,39417
+77341,78766,14021,15886,58085,15000,60253,38019,28745,46676
+77342,8071,1096,74320,8467,30785
+77343,9978,26138,59288
+77344,8032
+77345,23749,17237
+77346,79290,30141,39150,9549,1046,32583,24672,33116
+77347,15339,58275,60370
+77348,48475,704,38495,11278,30102,9119,28399,37859
+77349,3601,14989,17584,48360,56211,9195,40222,49108
+77350,3554,11967,3215,75407
+77351,27319
+77352,152
+77353,29886,71337,61094,3660
+77354,69440
+77355,80496,34094,8373,24679
+77356,50699,40897
+77357,57630
+77358,73831,60356,21208
+77359,25047,13886
+77360,8581,40899
+77361,79021
+77362,60365
+77363,12009,16553,80549,47390
+77364,78105
+77365,22450,81990,49572
+77366,45441,70227,34988,62026
+77367,10555,6841,79004,36096,42402,10017,14675,54612,12170,18714
+77368,53588,4754
+77369,20855
+77370,12371,27883,46114
+77371,4683,20673,81732
+77372,80003,16817,44367,32322
+77373,24759,9681,64179,12898,62531,31002
+77374,81231,2213,26516
+77375,17679,8362,41556,392,74165,74091,50306
+77376,31066,74146,55590,65713,9978,54514
+77377,19587,50340,1313
+77378,7913,64381,8296,9081,26307,63418,65624,46694
+77379,64000,46510
+77380,56170,48734,64366,14807
+77381,25406,54855,75792,54271
+77382,13711,18568,80090,37048,45194
+77383,20254
+77384,22193,62617,19794
+77385,15919,32946,38967,40541,53357
+77386,1854,43302,1119,71563,2212,70835,60392,14069,21697,42968,22427,82131
+77387,41984,33053,13755,70593,78693,66336,60752
+77388,62417,76000,58298
+77389,8933
+77390,75227,79149,65786,59562
+77391,44025,30047
+77392,196,21094
+77393,12325,69163,57849
+77394,46868,34260,47908
+77395,71969
+77396,29319,49386
+77397,11365,3036,76672,46373
+77398,16908,72911,46798
+77399,14211
+77400,79401,62150,27909,41668,59971,45972,31859
+77401,21761,74453,29624,8473,41030,49259,77619,25869,33514,50439
+77402,71023
+77403,73592
+77404,30861,12081,54492
+77405,79874,49533,19800
+77406,3761,34258,2000,32352,36874,23529,20266,36898,34832
+77407,50018,39965,19977,78900,21773,22065,76096
+77408,52137
+77409,55955,29670,63699,78366,32753
+77410,65976,41073,66589
+77411,68069,63746,38162,35752,53088,63878
+77412,70864,67752,3152,36733,72220,16217
+77413,35844
+77414,73087,61790,45708,79882
+77415,58858,29598,56356,2283,39849
+77416,2505,64562,55031,1797,68592,69465,22063
+77417,66491,26550
+77418,10343,42369,43667,22593
+77419,80849,4499
+77420,49506,41639,64427,60083,75892,59413,27198
+77421,57078,10703,7543,4811,72492
+77422,73008
+77423,6144,45398,19530
+77424,33997
+77425,45186,78273
+77426,60399
+77427,60755,32263,34367,29186
+77428,62550,5668,81030,4096
+77429,60928,8248
+77430,64744
+77431,69618,27937,22551,6989,9042,57721
+77432,61807,39777,76317,19635,11665,58387,10677,15280
+77433,48624,69233,56662
+77434,9997,3356,61967,27010,4356
+77435,43465
+77436,76909,62464,68665,30618
+77437,16132,26685
+77438,81699
+77439,51290,44287,80588,26935,60941
+77440,73910
+77441,32356,47790,24775,13941,15859,46844
+77442,77841,49813,56669,44580,35798,25285,68613,67460,64790,2184,76021
+77443,32539,45294,63967,1936,36308,30435,27076
+77444,13805,51154,67769,43263
+77445,42633,16443,53300
+77446,65479,13609
+77447,29981,25232
+77448,16500,47737,58483,11467,38726,29701
+77449,50623
+77450,52661
+77451,62249,11331,53987,32017
+77452,26184
+77453,36848,58921
+77454,7190,12626,65374
+77455,73462,25909,70041
+77456,48348,8344,52075
+77457,17606
+77458,69441,43555,42339,57288,42859,53813,38562,31998
+77459,81827,38077,61181
+77460,44652,60894
+77461,61144,1986,61642,47981,57463
+77462,57760
+77463,72295,42720,18603,52529,54346,4075
+77464,25466,60185,54730,57719,54275,42891,45616
+77465,46046,48714,49698,25711,32967,18568
+77466,11855,21557,16842,12793,37492,50837,15772,77405
+77467,25975
+77468,53207,51912
+77469,21612,25859
+77470,60126,64771,11102,44147
+77471,10441,52076,30358,24395,37565
+77472,81934,23534
+77473,29113,20998
+77474,12993
+77475,76061,18535,53603,56662,25598,16513
+77476,34348,26753,73171,36075,73711,9004
+77477,20553,45027,68165
+77478,39138,19528
+77479,39865,56571,24984
+77480,74817,77292,44744,76271,39927
+77481,30187,15121,53738,67397
+77482,70090,45266,67142,38882,48618,43371
+77483,50559,20892,55913,16793
+77484,29650,30598
+77485,68432,53115
+77486,73797
+77487,68158,7069,65116,65492
+77488,37310,72057,77062
+77489,57810,66591
+77490,64098,41095,58323,71169
+77491,22745,40533
+77492,53216,68626,26414,36677
+77493,15566,72786
+77494,36174,8193,5902,19861,62600
+77495,24520,82030,1914,19191,68046,49056
+77496,80062,1774,18156,40923,65218
+77497,55408,78642,72823,45744,40697
+77498,36669,44087
+77499,72947,2858,78312,28777,1609,24629
+77500,76480
+77501,64602,10119,59460,41948,42168,18458,77753,2794,8909
+77502,58503,57736,34273,66450
+77503,27701,73645,7907,5937
+77504,76738
+77505,81532,49116,76542
+77506,38978,45824,33418,42168
+77507,37696,10609
+77508,43552,56459,49076
+77509,42013,28747,9566
+77510,43320,66574,6475,3763,72684
+77511,68283,41391,36860,67224,79952,37299
+77512,20992,56076,53189
+77513,55376,24917,62697
+77514,13253,63118,565,52773
+77515,5895,20150,16449
+77516,78066,12268,74508
+77517,9663,26505,15460,40964,53623,31719
+77518,99
+77519,71073
+77520,7101,3910,68401,75709,63309
+77521,16726,45421,66701
+77522,20388,159
+77523,49228,62835,43630,58134,80959,14416,1047,40853
+77524,47783,39549,29199,23943,13265,58266
+77525,33893,4499
+77526,61359,63230,28163
+77527,10667,35515,68335,16176,45072,34787
+77528,71397,19579,31883,19163,35405
+77529,63159,54929
+77530,30766,40467,179,25772
+77531,78746,78712
+77532,53096,20904,70076,7407,65059,43480,57414
+77533,39451,3446,72417
+77534,52302,866
+77535,79804,44112
+77536,20753,29587,8388
+77537,59465,45513
+77538,16512,23520
+77539,15192,32411,8525,7103
+77540,16055,33081
+77541,16324,5493,8785,73513,19145,66387
+77542,62932,55997,77591,72781,80088,36635,49661,74912,35719,1933
+77543,33362,51629
+77544,42587,9457,48317,57657,68076
+77545,44444
+77546,81986,68097,28936,55410,3788,58314,77696
+77547,14256,60099
+77548,78455,43926
+77549,23005,31294,20292,5040,10306
+77550,5115
+77551,59004
+77552,23950
+77553,49908,62463,26083,3328,61307
+77554,51375,76779,59024,11442,24849,36458,1387,34549,63998
+77555,37809,49159,53212
+77556,27394,22381
+77557,12681,63766,56620
+77558,40384,63236,28818,488
+77559,53207
+77560,73004,68771,7953,24859,42500
+77561,20762
+77562,67210,60749,40079,40635,27401,13656,16081
+77563,3944,72827
+77564,55775,53601
+77565,56059,61325,3215
+77566,23303,3,54871,59811,60965,17108
+77567,24816,71715
+77568,46713,26965,77307,5468,67187,54067,4793
+77569,67368,38898,33766,60787
+77570,44736,52881,16233,27600,59875,74880
+77571,31668,18690,22920,55713,77688,54742
+77572,20900,26395
+77573,6733,16394,65855,76162,60301,61225,19535
+77574,12350,20064
+77575,22600,9181,41639,12084
+77576,9300,17070,64903,44220,28592,22282
+77577,33774,18972,67632
+77578,7492
+77579,49295,64850
+77580,47625
+77581,32497,52486,21228
+77582,60050,57983,49141,61290,45141,57125,53365
+77583,19243,24878,10165,35794,44565
+77584,6330,66935,76924
+77585,24978,12355,66822
+77586,43274,52512
+77587,64767,47590
+77588,35714,38850,66955
+77589,55538,47748,77021,71093,72012,23776,39643
+77590,59411,13751,26774,69827,597,22927,27848
+77591,50642,30522,68032
+77592,29447,2732,74783
+77593,68379,16649
+77594,12749,34809,58806,41126,14385,27634
+77595,47297,18687,26850,21526
+77596,76471
+77597,38803,64851,22656,30638,66002,61948
+77598,43250,40328,1981,65386
+77599,48068,18279,24342
+77600,36944,41617,2492
+77601,55746,62248,49517,23441,12654,57710,25840
+77602,33989,56142,62982,45194
+77603,63167,22554
+77604,13029,57141
+77605,8936,36977,17757
+77606,50810
+77607,18686
+77608,73270,19119,29465,42577,73776,68751,39918,24573
+77609,55879,45787,48528,19786,67049,6391,66683
+77610,79573,9273
+77611,21196,23618
+77612,27461,49281,5022
+77613,55736,59250,35619,11418
+77614,53003,74403
+77615,78307,56707,64955
+77616,6945
+77617,21299
+77618,29162,59951,4682,35120,80482
+77619,6489,236,15767,3184,6804
+77620,7595,46718
+77621,24728
+77622,39337,21448,4130,59126,54020
+77623,19627,30842,55869
+77624,57229
+77625,14027,12213,53557
+77626,9388,12688
+77627,55786
+77628,32238,3580
+77629,55489,66881,4716
+77630,12478,82062,46985,3667
+77631,63849,72953,26180
+77632,53207,41610,75849
+77633,45348,16211
+77634,4364,53844,62265,1686
+77635,984,40300,69791,8466,23149,63162,31658
+77636,52982,10032,14534,26035,24321,25678,59514,56867
+77637,42645,38919
+77638,42777,81442,43106,19747,71680
+77639,13652,81701,16836
+77640,78525,58022
+77641,38002,30741
+77642,35038,71069,73243,19826,20377
+77643,34783,74613
+77644,15919,58361,2752,33116,65340
+77645,45123,69647,55986,34358,23637
+77646,45398,39874,16893
+77647,36258,79809,64512,65526,18349,26176
+77648,73114,80760
+77649,10778,56107,29717,50704,92
+77650,29753,33374
+77651,53312
+77652,63540
+77653,40597,36272,63370,26182,982,43455,57854,53735,2720
+77654,64060
+77655,34509,27464,15380
+77656,58873
+77657,80877
+77658,56745,3254,60314,39993
+77659,49010,62580,1762,55201,71063
+77660,65796,35516
+77661,64974,290,8382
+77662,49876,37314
+77663,23205,62030,15986,53385,48189,62009,9573,32913,51389
+77664,63042,69450
+77665,61841,8012
+77666,57258,80953,26522,57996
+77667,80138,79983,5334,69644,11604,63674
+77668,74330,18297
+77669,2759,56386,17228
+77670,41135,36810,9122
+77671,73152
+77672,52537,27598,27856,27369,60402,70295,62754
+77673,55501,1466,80572,9501
+77674,78175,42487,38632
+77675,33763,67011,44073,8288,60434
+77676,384,65834,27073,24476
+77677,66141,12214,42820,23481,32952
+77678,11580,28803,10773,36473,56239
+77679,50174,62550,29418,70588,70947,10281
+77680,78824,23922,35175
+77681,70544,66524,37760
+77682,65775,52895,34813,46154,52189,37940,21524,50418
+77683,9228,16462,10048,79423,29587,6045,51964
+77684,48898,26905,8520
+77685,30252,52224,74929,72934,19977,65483,62857
+77686,56712,81
+77687,6324
+77688,54996,72167,75626
+77689,35714,24485
+77690,67096,52296,65579,54831
+77691,38556,22790,2158
+77692,64340,78543,64907
+77693,22849,58766
+77694,53882,7623,4744,65720,48147,67675
+77695,65166
+77696,62605,95,43368
+77697,76708
+77698,53545,70884,68880,28152
+77699,69791,16941,1903,73470,74975
+77700,56593,29762,10975,9832
+77701,23823,20548,63325,8660
+77702,3356,12561,81671,36753,47174,53024,28680
+77703,14558
+77704,64530,79009,41608
+77705,3950,3911,56544,18767,4678
+77706,72983,1047
+77707,66760,23083,74571,47252,46185,69829,19238
+77708,21236,62702,69264
+77709,74719,78443,23241,66872,19437,72259,56121
+77710,15443,71424,12074
+77711,24635,58791,77271,5861,34753,71248,68956,10120,11191
+77712,68669,37078
+77713,15140,29962,68873
+77714,50861,26649
+77715,19856,33605,76877,36821,26599,78268,77394
+77716,70130
+77717,15760
+77718,40034,81826,51622
+77719,46804,34530,75777,26074,43022
+77720,73053,9026,48835
+77721,42066,65587,65216,10594,62202,17912
+77722,23282
+77723,76294
+77724,55685,73830,12777,70643,72745,54235,41758,62440
+77725,23820,20578,13787,48041,61484
+77726,63676,43775
+77727,23445,30411,37836,10265,17657,28842,37956
+77728,4596,61021,53315,660
+77729,50229,44100
+77730,29278,75338,22187,18762
+77731,27589,59570,15230
+77732,92,16304,12831,37265,63962
+77733,26581,10580,66709,18022,23437
+77734,49292,48755
+77735,71433
+77736,23839,70964,4617
+77737,13443,26802,25494,75259
+77738,62071,37760
+77739,50528
+77740,81228,18633,26280,72909,8725
+77741,26490,66515,33067,2960,69342,75638,10239
+77742,40532,24987
+77743,64070
+77744,8869,49284,6060,77010,65522,41461
+77745,78391,19738,22410,73288,32151
+77746,55287,10639,24370,39763,47650
+77747,4277,58651,15488,21745,28616
+77748,70656,34005,17520,15028,21311
+77749,40023
+77750,53369,11864,38261,40244
+77751,49101
+77752,16412,23093,70439,43024
+77753,68628,48917,41053,12534,50603,48472,67747
+77754,31015
+77755,40700
+77756,27581,37310
+77757,42987,50759
+77758,49756,76713,31318,74643,68332
+77759,56186,53991,54264,19595,71651
+77760,56970,33500
+77761,1722
+77762,48832,38655
+77763,51187,4317,29348
+77764,55570,34270,18350
+77765,46155,59728,47016
+77766,57777,69665,27214,5833
+77767,38074,36015,3241,4746,16419
+77768,58680
+77769,80483,33016,13099,21142
+77770,69577
+77771,81063,76236,55919,4524,27925
+77772,78169,5378,48818,46076,77656
+77773,63697,77123,14287
+77774,20359
+77775,10797
+77776,861,1847,25417,41353,49509,33388,69625,79296,63619
+77777,49170
+77778,4302
+77779,15097,43015,73684,48919
+77780,60791,4121,74829,37494
+77781,69910,62835,77751,33659
+77782,67110,55401,41796
+77783,75307,76318,81605
+77784,35937,29896,57224
+77785,47134
+77786,30064,9874
+77787,39590,40975,4889,55259,57324
+77788,57282,58958
+77789,42340,63805,59907,41248,15240,65199
+77790,38662,51076,56236
+77791,24100,61760
+77792,34423,54901
+77793,31315,81629,24374,25266
+77794,25191,58509,14957,70130,61496
+77795,4976
+77796,30700,4564,59867
+77797,74294,27516,51950,18257
+77798,77556
+77799,667
+77800,16439,22478,73592,43066,77599
+77801,16084,33206,61325,79454
+77802,7492
+77803,71568,15638,13985,61568,67509
+77804,45020,48557,38457
+77805,29542,62593
+77806,9428,45772,75507,57574
+77807,45488,68157
+77808,22532
+77809,72169,77658,77313,12186,6836
+77810,9928,68107
+77811,57511,69607,75569
+77812,52356,56947,58126,56569,60087
+77813,72165,13592,51751,49212,76542,63539,57181,13354
+77814,14498
+77815,8458
+77816,57497,66730,18146,70527,43785
+77817,8248,727,74985
+77818,71109,64483,22044
+77819,53028,25642,33561,79220,53006
+77820,60727,62898,60254,79563,56826,19322,49972
+77821,19064,26778,73696,11972,26872,26116
+77822,31380,18518,5196,78805,29787
+77823,426,70589,32760,52381,31520,38729,54012
+77824,28125,16379
+77825,58490,73459,44659,5407
+77826,70945,2808
+77827,47905,42360,6516,51007
+77828,1715,4130,24651
+77829,37778,41271
+77830,70908
+77831,34591,20448,43746
+77832,54964
+77833,18758,75967,72114,2582,49444,15147
+77834,60138,53912,4133
+77835,801,62282,31006,80028,17578,22172,67854,30698,62787
+77836,3591
+77837,18149,8098,52096
+77838,61637
+77839,55078,32169,60183,19668,23792,193
+77840,52234,79371,21866,42796,16953,10908,15032
+77841,60419,52435,32406,25224,69071
+77842,13346,72737
+77843,68794
+77844,12422,41133,73566,47665,20015
+77845,41052
+77846,67592,1433,15985,54616
+77847,56573,40568,74928,56254,38182
+77848,75521,9250,53671,62805,46344
+77849,6151
+77850,4603
+77851,40393,54122
+77852,79533,9111,32834
+77853,54510,26654,41766,78575,80449,449,9638
+77854,44676,73588,31838,53401,48213,60324
+77855,66329,53206,76828,77360
+77856,52049,62532
+77857,42207,5789,37118,24368,77802,27589
+77858,54963,34570
+77859,8520,64034,4735,13136
+77860,18292,34552,43280,41397,20090,16917,76271,76976,38496
+77861,41886,13068,40401
+77862,11415,80159,15381,51105,60761,72394,81979
+77863,11711,48545,45638
+77864,49244,36369,76448,34232
+77865,42172,59128
+77866,22097,10649,13525,33057,43454,22277
+77867,25712,45014,47885,45852,80158
+77868,27457,70550,72435
+77869,47288,20067,68565,79424
+77870,41409,5560,27051,60714,19970,25738,7079
+77871,70333,34897,63704
+77872,24415,39761
+77873,3607,22896,40224,63729
+77874,15493,21811,59584
+77875,40412,54043,4384,81511,3257
+77876,60931,39753,13074,9851
+77877,17616,40502,44667,59429,41244,80657,64218,18627
+77878,22447,26131,32448
+77879,12043,71658,29065,25551,70582,23729,3937,1038,9506
+77880,57647,75160,78484,3398
+77881,34375,26988,68900,44493,4601,13636,76596
+77882,60685,41641,30038,82045
+77883,29697,5483,21861,77474,13842,25444,54237
+77884,59507,16244
+77885,21427,26228,47361,65744,51994,30978,20524
+77886,11768,55662,28487,48622,35890,28561
+77887,68249,64432
+77888,32854,60064,80517,54150,47810
+77889,9506
+77890,58069,43179,49200
+77891,72374,34548,50158,40864,9493,69278,24924,23590
+77892,77333,12170,19772
+77893,49163,19138
+77894,81882,4257,52834,31166
+77895,6288,71372,23353
+77896,6532,60718,53247,73008
+77897,19113,15892,58410,30286
+77898,18465
+77899,66491,74211
+77900,35515,27858,21471,33224,36203,32817,54432,54735
+77901,24715
+77902,56907,43547,58875
+77903,10459,24347,61565,78411,66107
+77904,45066,63063,72058,65275
+77905,20977,79806,40492,27291,30812
+77906,6090
+77907,19981,21355,26000,72260,23503,45159,96
+77908,47155
+77909,79998,66483,2531
+77910,27876,33371,21054,75428,40546,75834,53482
+77911,60370
+77912,59263,26255,53545,46347,41803,25539
+77913,54799,64930,34961,80021,51072
+77914,50559
+77915,27007
+77916,58914,11547
+77917,4970,37399,653,30642,69895,74034
+77918,41927,20246,26977
+77919,56821
+77920,41754,58137,8737,68070,16860
+77921,25981,22720,46984,3580
+77922,71800,39392
+77923,11667
+77924,48864
+77925,31114,39870,7090,61891,18189
+77926,30107,40114
+77927,31721,74150,8248,31713
+77928,9908,2087
+77929,3842
+77930,80598
+77931,63980,323,23705,47428,9752,33859,82122
+77932,21960,12107,25306,32437,79534,4577,33335,45886,38631
+77933,33748,24804,54657,40250
+77934,63131,77768
+77935,62997
+77936,22320,43008,17534,32779,40456
+77937,11899,17792,31232,40858,41279,29957
+77938,18908,51047,23911,13446
+77939,24440
+77940,71156,32927,81664
+77941,52235,70276
+77942,54937,20105,2535
+77943,70096,57081,73342
+77944,36870,51866,25981,32246,59142
+77945,1471,50180,75611,16836,50636,19886,31471
+77946,80306,20715,33023
+77947,41142,10880,4101,32060,48477,50424,21903,28511
+77948,78312,5870,22570,51625,55250,31768,35218
+77949,8306,40382
+77950,48068,44279,61271
+77951,40063,43939,29854,74231,27668,20467
+77952,56169,8862
+77953,18524,14663
+77954,67177,17043
+77955,72373,65274,79825,54241,55181,70318
+77956,34616,77833,1833,45237,4523,4599,44699,28722
+77957,38201,31513,60052
+77958,4551,59538,33147
+77959,2725,2111
+77960,8983,7280,31402,58074,58400,639
+77961,75492,39895,57709
+77962,81708,82021,22256,17737
+77963,12914
+77964,19342,13449,1564,22838,71731,13441,13393
+77965,57081
+77966,21935
+77967,47046,6547,14957,11738,596,33840,20549,22146
+77968,80057
+77969,80995,51343,43911,37231,8487,54480,25120,81929
+77970,60819,23577
+77971,3379,18989
+77972,22644
+77973,55914
+77974,28101,59222,49972,72444,12534
+77975,5441
+77976,41116,22381,36187
+77977,29740,24312,2121,45153,81642,79033
+77978,70465,72820,59765,65273,78849,215
+77979,16469,38626,8611
+77980,76721,46347,45585,17751
+77981,60234,77229
+77982,10503
+77983,74066,68158,66397
+77984,23817
+77985,36459,61089,74559,51720
+77986,33875,3750
+77987,49950,52975
+77988,23314
+77989,21613,79714
+77990,27646,35266
+77991,31735,12431
+77992,60405,26681,40326,33851,66965,31123,57855
+77993,76677,15464
+77994,41403,49492
+77995,24345
+77996,21717,46251,60373,24055,47027,9760,79970
+77997,17119
+77998,62174
+77999,51651
+78000,57613,32417,68584
+78001,34162,63955,73667
+78002,52476
+78003,80428,39460,31994
+78004,37507
+78005,48495,17408,40927,24963,55618,53989,25015,32223,6904
+78006,82004,26522,57650,23698,79944
+78007,47021,64250,11207,31083
+78008,60900,35901,40767,60540,61011,64110,10046,63034,58034,16170
+78009,166,24867,298,29897,27051,21278
+78010,5394,12975
+78011,4834,26594,17675,4528,37044,6135
+78012,63925,81414,14347
+78013,48204,58672,81932,51019,75048
+78014,20218,62865,12855,71833,66508,55638
+78015,58017
+78016,57772,947,36487,32438
+78017,38502,14100,38814
+78018,79678,43892,42240,15837,44601,14535
+78019,5704
+78020,36636
+78021,36119
+78022,35702,53089,19749,39817
+78023,58268,46849
+78024,75717,63008
+78025,36819,71447,26096
+78026,55434
+78027,32979
+78028,77914,70444
+78029,60545,37632,71854
+78030,66163,49306,22487
+78031,59825,43681,15067,41267,20451
+78032,56632,13629,45984
+78033,76469
+78034,56622,77940,52804,69652
+78035,80677
+78036,69686,81663,39798,49181,67446,51461
+78037,45712
+78038,4228,42538,45847
+78039,7984,29004,35244
+78040,27045,69910,35648
+78041,61324,12438,50789,72260,23882
+78042,19735,47682,76411,60882,22159
+78043,68131,62410,21097,6027,69455,37717
+78044,46700
+78045,35830,77508,19588,4724,55135,65700,49381,39190,5671
+78046,31721,74760,24473
+78047,20352,26608,23204
+78048,57239,58511,11102
+78049,67378,77572,14419
+78050,28582,36317,55485,58197
+78051,8244
+78052,62482
+78053,48818,45257,32809,40893
+78054,41377,35300,7301,35416
+78055,48106,55659,70203
+78056,54781
+78057,44819,47836,20200,5363,45984,74669
+78058,10418,67303,49439,22250,71811
+78059,57156,50363
+78060,11752,64702,41174,60897,55635
+78061,71336
+78062,40155,17843,14346
+78063,25544,23755
+78064,64042,46200,50702,11906
+78065,76321,48279,43814,9528,7771,78484,24607,74549
+78066,50727,55371,20752
+78067,21624,73359,22967,73278
+78068,34292,16026,65135
+78069,78712,41961,51780,57858,81346,26785,51555,52519,55748
+78070,5878,27668,43166
+78071,11895,18396
+78072,1766,44302,3591,40068
+78073,55879,21897,4498
+78074,46004,68446,14730
+78075,57667,8233
+78076,81793
+78077,31409
+78078,52154,63685,50990
+78079,73532,27101,23016,46319,23949,44349,35261,69603,57008,13886,78804,79874,33780
+78080,4066
+78081,65440,68315,21057,65344,27322,67376,57715
+78082,33559,12179,7276,58298
+78083,2109,65633,39905,51380
+78084,60290,25570
+78085,74158,12715,27208
+78086,10557,20788,62167,81151
+78087,68878,16308
+78088,22518
+78089,73745,62002,64443,69491
+78090,6722
+78091,27058,67487,14556,28311
+78092,40154
+78093,62005,17825,79875,715,37759,40495
+78094,56963,33568,13159,50424,66234,11394
+78095,64368
+78096,36944,23248,80209,70581,55906
+78097,79747,73554,72292,67946
+78098,56521,31087,79950,44756
+78099,69450,44365,5829
+78100,39590,37549,60708
+78101,4681,8820
+78102,81644
+78103,15380,69357,197,39297
+78104,22120,17275
+78105,1800,5129,29569,50490,76460
+78106,77161,64025,79207
+78107,45421,8160,62581,74675,43930,3386,81283,15512
+78108,69051,268
+78109,12717
+78110,40718,2578,21631,26989,53106,24508
+78111,7607,11684,68632
+78112,65237,54048
+78113,10567,46318,2454,74420
+78114,28316
+78115,11020
+78116,2043,11335,13801,48630,23430,3692
+78117,3112,81722,32937,32962
+78118,65556,11594,34851,22683
+78119,28810,59296,28359,29022,59741,17462
+78120,43558,47926,21295
+78121,66495,46503,23329,15299
+78122,63027,52574,27660,6239,80150
+78123,1404,33412,360
+78124,6989
+78125,1235,44088
+78126,15833
+78127,80821,73397,5153,9252,34641
+78128,52606,74182,5164,69262
+78129,62800,51053,49143,23342,76258
+78130,67896
+78131,60217,69145,27724,65362,42597,26349,67639,58157,69329,46879,45291
+78132,81690,11256,51086,43189
+78133,55952
+78134,75890,59065,51300,23749,52569,21427,12292,26827,40949,45822,33954
+78135,50,616
+78136,53563,51338,69965,32577
+78137,60901,18878,17927,44887,63943
+78138,25790,8339,73422,57745
+78139,29855,41237,60798,51598,47352,44700
+78140,36790,13593,37030,17643,801
+78141,5227,62572,14127
+78142,65764,23547,4169
+78143,45417,2710,44289
+78144,53820,66378,2223
+78145,40633,20863,66068
+78146,69643
+78147,60697
+78148,24416,58419,30079,46524
+78149,76118,17989,62175,26362,54431
+78150,27620,58464,16228,30097,59500
+78151,8280
+78152,44132,67995,70369,18611
+78153,58907
+78154,16516,78588,35741
+78155,81046,27629,64018,44153,1174,18135,22214,56369,45441,54620
+78156,71209,61126
+78157,30072,75934
+78158,81072,37349,18433,76699,63363,15854,2210,41900,51330
+78159,36732,53539,22109,13297,67728,27525,28739,5707,3261
+78160,12200,78120,554,12779
+78161,33095,9311,68892,29070,45736,52272
+78162,21063
+78163,13247,68963,22813
+78164,26103,81963,80011,53772
+78165,10788,47642,21732,70960,32816
+78166,8127,15085,14676
+78167,78209,28072,42387,47592,38932,56060
+78168,36998,74816,1784,22668,49528,258,76561,72787
+78169,67873,55701,18662,10254,47092,60105,69745,14384,41109
+78170,56706,71078,2588
+78171,11914,40647,54985,54738
+78172,35262,42749,21153,27570,46983,1537,66400,33785,80176,54751,82056,46870,73935
+78173,33424
+78174,72125,51267,5644,63357,70792,31954
+78175,30461,62871
+78176,71805,68813,69832,17812,46598
+78177,38809,38627,35856,46792
+78178,28155,40179,49516,55986,15434
+78179,55675,81450,30285,63786,42619,36648,42924
+78180,62486,59262,58053,19907
+78181,8201,53245,5988,48780
+78182,35248
+78183,80599,1792
+78184,23885,50331,58927
+78185,607,39712,17247
+78186,10160,46606,72427,43031,31176,41323,61455,49322,36229,49892,7734
+78187,65044
+78188,34112,79748,26744,47903
+78189,47406,26473,51048
+78190,36774,35648,73461
+78191,57649,21321,26442,3901,65433,18655
+78192,54475,38570,8019
+78193,34806,21843,11649
+78194,67231
+78195,69919,73556,43295,25554,60182,62920
+78196,22544
+78197,32803,6846,12583,21548
+78198,10179,47155,38825,20551,80145
+78199,66578
+78200,42169,7331,73226
+78201,69099,25544,8236,10259,46489,67419
+78202,62789,30918
+78203,78003,67506,40823,75119
+78204,4489,7777,473,64394
+78205,4416,56817
+78206,26945,4155,45869,30654
+78207,15888,16338
+78208,362,65470
+78209,52323,6860
+78210,44865,79646,9881,2830,56279,22457
+78211,81237,8270
+78212,6705,51094,15928,36529,37172,78280,15730,9509
+78213,59515
+78214,45161,79206,12080,12136,64651,15511,27244,22897,15152
+78215,22439,78957,77751,40814
+78216,37141,56821
+78217,38919
+78218,6031,40707,28308,14944
+78219,63577,60862,73143,65121,71978
+78220,72875
+78221,2911,33370,10542,68266,71615,5617,11016,7658
+78222,4148,60905,1042,5012,62111,81957,80743
+78223,38709
+78224,18195,19963,74743,24378,41408,47697
+78225,76109
+78226,69999
+78227,19232
+78228,29774
+78229,39970,16281,81528
+78230,39102
+78231,30744,41585,64119,22317
+78232,7183,36910,22939,73482
+78233,21273,75406,22647,32602
+78234,51182,29369,5144,75367
+78235,824
+78236,11203,40398,45734
+78237,77167
+78238,51627,17236,3662
+78239,56573,62510,53873,44424,2527,46439,21738
+78240,71190,7794
+78241,24450,16198
+78242,25496,43672,81416,77785,58647
+78243,38552,68910,24787
+78244,36170,28293,6181,75836,58706,42276,31714,23887,2775
+78245,5024,72539,30877,12794,65993,17429
+78246,56856,67127,30517,5873
+78247,74946,49230,39034,23747,53964,32299,56721,12424
+78248,9191,80961,14934,22647,80188
+78249,63663,54625
+78250,1751,18031
+78251,18585,77749,57783
+78252,74928,71423,27183
+78253,54297,6665,65155,5992,22759,28008
+78254,49805,38460,14148,5916,51722,21989
+78255,52850,13684
+78256,2606,72278
+78257,9951
+78258,10935,8879,41601,73546,47403
+78259,17476,35174,25530,7449,68568
+78260,5181,11773
+78261,15194
+78262,71268,32374
+78263,3034
+78264,22398,34303
+78265,13744,75492,58815,54769
+78266,75151,74989,11767
+78267,10152,49438,59777,69106,41588,8841,54041
+78268,4354
+78269,26193,29093
+78270,1207,16420,8998,40329
+78271,31584,11418,2065
+78272,22711,10514
+78273,47120
+78274,22205,64761,78084,29999
+78275,13051
+78276,2713
+78277,22256,4791,24968
+78278,41267,49631
+78279,65205,3712
+78280,23077
+78281,62904,39384,55956,46058,45907,14502,1385,34333,51249,38506,51764,9973
+78282,27604,58994,9284,78723
+78283,59959,44029,72286,21593,74499
+78284,46442,51930,56418
+78285,71996,30589,71248,64059,80987
+78286,47437,32719
+78287,11120,57512,41043
+78288,18182,70285,34932,59949,79349,48178
+78289,73223,2697,4451
+78290,12686,68021,75369
+78291,56147,41125,60961,74769,81053
+78292,33072,59930,29436,28466
+78293,63805,78596,46783
+78294,32555,60542
+78295,71585,7835,46778,72827,43066,80422,61442
+78296,18413,31587,62697,27111,61699,75659,5715
+78297,13566,4703,31646,51987,67454,33560,48602
+78298,61476,9693,185,55067,76696
+78299,51214,6606,18998,40956,41221
+78300,71966,23100,18368,50656
+78301,77058,33571,11181,49757
+78302,40107,55121
+78303,61464,10744,77105
+78304,26114,15393,40995,74547,24331,37799,42519
+78305,30923,14622
+78306,22145,181,22659,36613,62214
+78307,49344,50666
+78308,10748,35450,30878,2530,4584,10429
+78309,5429,68746
+78310,70257,9428
+78311,58252,39265,11109,65946
+78312,56398
+78313,20173,30371,62916,2628,3725,41677,7754
+78314,26949,63285
+78315,48011,74571
+78316,12732
+78317,41303,20745,14396,18666,41781,76132
+78318,12200,42535,46473,56072,24534
+78319,51879,62294,77425
+78320,22683,12162
+78321,70550
+78322,2051,63249
+78323,51318
+78324,41535,50822,45964
+78325,60402
+78326,49516,40647,45684
+78327,72133,34844,58866,41841,16971,60738
+78328,18552,23734,49395,62616,11699
+78329,78333,74120,3997
+78330,3572,66068,71241
+78331,24258,26639,82130
+78332,27470
+78333,37734
+78334,61467,39450,27962,2711,43231
+78335,81622,64506,59127,22203,25555,7344
+78336,13990,71607,245
+78337,81450,4608,467,71965,9123,12227
+78338,27644,79051,40231,6773,53440,21552
+78339,1643,20107
+78340,2113,35819,14047
+78341,17339
+78342,57667,57308,29388,35832
+78343,58296
+78344,50711,72337,10339,77113,78921,51772
+78345,66478,73422,20007
+78346,32714,76015
+78347,59982,75798,20437
+78348,78942,78844,79126,34914
+78349,18250
+78350,7763,32022,30397,59107,18142,12560,1375,70559,15870
+78351,8378
+78352,79001,64653
+78353,59020,30955,44780,17080,74532
+78354,77646,1532,63470,53375,18071
+78355,68365,3025,68789,52627,81152,52965
+78356,14763,6119,6463,9634
+78357,21038
+78358,78261,73166
+78359,77354,56899
+78360,4657,13688,35400,60418,10008,77398,50384,31021,19077,36842
+78361,4262,35385,65687,7440,41663
+78362,59679,68762
+78363,80332,7614,8592,79778,50822,41456,42195,44168
+78364,25427,20601
+78365,4369,30968
+78366,57812,6452,76113,35087,65044
+78367,58694,50742,69019,1858,48704,19187
+78368,452,62422
+78369,49610,66580,25443
+78370,46465
+78371,55157,20820,52375
+78372,20052,54196,22607,62643,23291,47408,26472,60765,65915
+78373,63349,9607,78425
+78374,41236,67180,21002,67012
+78375,22338,9366,55073,1365,36562,48545
+78376,75618,31618
+78377,74578,60399,69110,25085,70792,6737,5568,76303,65639
+78378,57547,20487,42476,57327,53412,19517,17853,17612
+78379,65804,75352,41999,2708
+78380,43355,44427
+78381,11486,18555,66990,45651
+78382,19608,9871,29134,3721
+78383,56199,70580,19914,54647,17937,17087
+78384,3028,20885,42553,61959
+78385,81985,47373
+78386,67963,11346
+78387,42223,3332,29922,2737,6022
+78388,48229,31342
+78389,20800,17287,20591,13910,46006
+78390,59549,41310,81992,19323
+78391,64529
+78392,21615
+78393,43620
+78394,39460
+78395,34306,57032,63768,57455,71180,22405,49481,55081
+78396,63838,47553,49024,58295,71184
+78397,63666,21633,44733,7591,42936,28495
+78398,47128,46865,70673,17517,8226,39772,37128,15187
+78399,9334,55748,76036
+78400,52279,77914,64502,16152,70639,50419,55677,39035,41098
+78401,61571
+78402,22907,76587,41360,62056
+78403,79086
+78404,54091
+78405,45426,12918,17351,40709,10938
+78406,30582,80782,54498,32281,53469,67305,7262
+78407,30581,30166,53597,40894,929
+78408,32084,12747,33353,16592,58725,77950,34289,49809,74901
+78409,17340,38387
+78410,26955,57222,61115,12039,77433
+78411,23554,48548,20995
+78412,76027,52354,22437,43232
+78413,54439,17758,70944,27365
+78414,49252,59184
+78415,38151,8005
+78416,64485,54202,3412
+78417,24758
+78418,28974,47907,56705
+78419,54563,57535
+78420,47445,47012,55947
+78421,52347,37636,78162
+78422,69791,42275,6751
+78423,62546
+78424,48656,21773,63023,64172,2238
+78425,24689
+78426,10785,54190,48506,50935,75074
+78427,39882,81243,22644,49459,23177
+78428,62067,42329
+78429,40067,35734,59265,8517,71930
+78430,33732,20895,72234,31689
+78431,82057,24685,48926,66551,35606,17954
+78432,16649,55561,581,55277,50341
+78433,70558,38450,77717
+78434,51128,20567
+78435,64535,2467,58697
+78436,4427,30811,33359,45111,80661
+78437,37377,72743,70907,66889,12567
+78438,32620,67410,62739,24160,60709,64254,43706,52580,45049
+78439,28656
+78440,38160,7338,17605,1041,33791
+78441,34090,59445
+78442,45049,10209,60212,63444
+78443,6501,46000
+78444,68024,52581,71607,76182
+78445,41135,29389
+78446,24902
+78447,36939
+78448,9141
+78449,709,57711,39364,51197,68104,65237,42417,80520,38208
+78450,13146,74220,15589,40087,11272
+78451,21950
+78452,57469,68833,25743,135,10274,48472,3909,47352
+78453,68802,70788,8236
+78454,51553,53359
+78455,7008
+78456,21361,21947
+78457,64037,76032,8035,63866
+78458,35605,26316,42544,71527,65239,52330,3717,28877,60153
+78459,1843,22268,80820,78572,62086,56128
+78460,60222,48116,61806,6130,69953,71972,47409,40821,68303,66403
+78461,54009,51404,57287
+78462,16487,39292
+78463,8465,32315,34627,48383
+78464,11745,48721,5754
+78465,75039,32885,17163,46561,55938,65550,50585
+78466,34022,27231,35265,10614,55420,45030,76849
+78467,41492
+78468,75913,17197
+78469,10239,81850,4011
+78470,71707,14680,73913,75824,35379,80487,76001,30837
+78471,60938,50219,66356,17697
+78472,67190,8842,17167,42653,29969,77572,12478,9251
+78473,11006,32364,13032
+78474,32956,40136,9789,52642
+78475,66147,62174,30202,2393
+78476,39804,36112
+78477,61858,73780,30505
+78478,19467,28640,75444
+78479,63949,42612,65055
+78480,17146,58040
+78481,76075,58360,27263,23554
+78482,58431,30944,50793,21198,39186
+78483,72737
+78484,77037
+78485,2931,61412,29789,61155
+78486,78857
+78487,38839,72594,53553,10991,42820,12147,65571
+78488,8645,10442,16937,62604
+78489,8727,45839,14234,22659,58840
+78490,511,21883
+78491,66349,59530,69393,37747
+78492,33855
+78493,81617,25764,48647,76376
+78494,48099,33274
+78495,3312
+78496,12520
+78497,14515
+78498,22176
+78499,77234,62745,30144
+78500,69183,30666,9569
+78501,21917,36051,9659
+78502,7480,61615,7652,55946
+78503,31110,26997,18842
+78504,72595,3142,30069,51985,39982,49947
+78505,64926
+78506,76015,69676,41740,16553,32224,65691,3802
+78507,41146,50033,5910
+78508,80902,14483
+78509,38439,46951
+78510,75433,5917,51629,62280,74551
+78511,27350,39958,57441,48522
+78512,9475,37547
+78513,43214,36158,65977,3475,64424,7507
+78514,8101,11109
+78515,8867,41475,42421,8131
+78516,58062,44312,7285
+78517,2149
+78518,81934
+78519,29657,40984
+78520,28718,7145,40120,1802,81282
+78521,49483,34049,25581
+78522,27007
+78523,59058,36489,69670,14173,73471,59514
+78524,26153,9298,53501,45341,44588
+78525,39278
+78526,826
+78527,63673,71479,55656
+78528,20406,35771,2266,58298,63688
+78529,7029
+78530,19869,48271,10838,5270,68978
+78531,59105
+78532,16772,78820
+78533,3686,61913,66448,53346,38740,41606,65002,43473
+78534,44090,10431
+78535,19399,70237
+78536,39285,2830,36202,75063,59208,28469,52210,63595
+78537,17131
+78538,28474,44936
+78539,24055,15298
+78540,57691,79014,16764,39502,27376,54809
+78541,80884
+78542,9384,48897,14692,13825
+78543,43968
+78544,53317,9659
+78545,79108,9974,33746,73308
+78546,16771,37928,19571,41135
+78547,6736,5153,58983,73630
+78548,14350,50423,74765,52810,2478,42827,73095,28663
+78549,8973,17618,73679,63111
+78550,60589,74185
+78551,70850,69675,64523,57072,67498,34233,43579,31681,78628
+78552,52086,52171
+78553,40391,56878,21046,21937,43202
+78554,10335,30731,884
+78555,15670,18267,13032,51184,55623
+78556,76122,76529,35824,61808
+78557,24496,16615,39235,48192,56232,11460,2340
+78558,3943,14969
+78559,63762,20154,70913
+78560,65709,19088
+78561,32217,58308,11492,31418
+78562,21416,49517,5747,71766,56295,34933,54606,62632,53498,47880
+78563,28761,13802,4379,79927
+78564,679,62794,72280,82162,80053,58205,77045
+78565,21956,7867,52316,20885
+78566,12242,78188,79544,78998,33081
+78567,43718,74330,37498,25821,18837,28803,54720
+78568,72585,71576,62028,71285,73524
+78569,25397,49362,81883
+78570,27436,48817
+78571,75721,34524
+78572,51719,46740,49807,21614,40831
+78573,9718,80521,32747,45728
+78574,2883,71852,71703,41991,9593,10178
+78575,35671
+78576,12206,11911
+78577,15071,3851
+78578,63479,64905,22805
+78579,8152,70941,23770,56699
+78580,29245,34229,12566,61036,74290
+78581,81455,10984,50374,8844,18232,73117
+78582,68498,26960,51965,74716
+78583,41063,67243,45618,72533,17069
+78584,22028,24546,56241,66447,58527,75527,47721,44608,9354,6753
+78585,13903,48760,65082,49299,10294,38122
+78586,77998
+78587,39278
+78588,12390
+78589,59435,30523,54702,75081,38321,65683,37543
+78590,73583,17060,31437,69502,72263
+78591,38616,45697,34974,14629
+78592,37876,78936,77354,22387
+78593,79215,19320,66297
+78594,47219,49970,3023,28177
+78595,41571,59560,14712,51054,21451,65618
+78596,30509,79503,26202,29958
+78597,67246,42595
+78598,81639,60184
+78599,35233,71144,52516,20133
+78600,11979
+78601,33089,42766,56545,60292
+78602,51644,36397,18527,23470,15172,70962
+78603,73522,50809,28117,67183,47600,72717,39836
+78604,10884,46126,24770,53065
+78605,48914,78850,76373,70191,53257,68883,31462,25120
+78606,47231
+78607,53979,27567,21107,72630,13650
+78608,70073,34165,52536,13104
+78609,68272,60544,3574
+78610,25335,22447
+78611,31266,43680,36618
+78612,23809,54187,71224,624
+78613,13446,18244
+78614,58650,858,21712,12524,17181,20525,36486,78080,9811,69665,75706
+78615,1082
+78616,12581,75358
+78617,31073,24687,5865,57813,30017,76123,65879
+78618,14757,24577,44563
+78619,79489,22607
+78620,55352,40272
+78621,54768,80156,52653,23718,56311,5511
+78622,71911,27432
+78623,44673,22889
+78624,42444
+78625,20199
+78626,73006,14881,6942
+78627,7972,78498,40854
+78628,66591,27314
+78629,28484,22392,64586,55756,54243,11525,7576
+78630,42351,75905,21263,34442,34499
+78631,53674,27020,79194,70365,32887
+78632,27275,52142,10109,77829,45219
+78633,31706,45
+78634,58895,60991,54117,58665
+78635,37131,46639,18570,64908,47395
+78636,8040,46480
+78637,12114
+78638,31192,24425
+78639,1954
+78640,5001,41100,56932,30541,19588,56566,42782
+78641,48278,64279,54600,70200
+78642,17199,30679,7492,71921
+78643,43461,10984,42934,72226,38512,18020
+78644,10555,58139,69736
+78645,17483,69742,73648,19508,44234,33057
+78646,16470
+78647,57447,65166,30663,59274
+78648,68819,71070
+78649,23626,64095,56359
+78650,66522,31575,52438,48568
+78651,53420,42645,1585,29906,16557,56353,13127,28343,74242
+78652,60396
+78653,71684,12612
+78654,3247,32503
+78655,69580,27672,34446,4973,68081,10884,43872,29872
+78656,79691,55435
+78657,5651,65144,59963
+78658,61248
+78659,58668,16510
+78660,72030,72734,70038,12436
+78661,12,55242,19618,58324
+78662,43810,51631
+78663,45661,75887,45281
+78664,1031,67563,22424,74641
+78665,4640,6867
+78666,74557
+78667,39465,67821,75104,62859,10416,31664,35197
+78668,43653,54948,54816,81954
+78669,30705,69675,75016
+78670,38829,28087,68425
+78671,33260,17633
+78672,67047,51533,7789,70208
+78673,78698,40233
+78674,53049,52679
+78675,11683,81463
+78676,36351,81833,45209,17852,24542,6005,57668
+78677,39660
+78678,25427,16021,72590,80747
+78679,29681,9650,7711,57620,21156,20960,79916,68396
+78680,34454,17467,75505,29810,66683,2121
+78681,57931
+78682,41407,4869,20019,25857,18286
+78683,1244,47016,13731
+78684,63961
+78685,55224,55289,47798,64736
+78686,26201,31884,45483
+78687,67299,81906,76918,25799,26018,29851,4917,22046
+78688,61732,76590
+78689,24071,70476,35813,58256,24157
+78690,20439,23566,71827,76190,2767,38227
+78691,2163
+78692,70091,24787,16438
+78693,2547,5274,62992,37072,15223,75255
+78694,76138,69043,6331,33328
+78695,16062,17725,54480,533
+78696,36265,1896,57043,79866,70242,57382,55861,68507,80304
+78697,50979,51675,26379,56724,49258,33348,32794,28210
+78698,47227
+78699,20730,40931,9350,20521
+78700,1801
+78701,79847,3711
+78702,37544,71598
+78703,56822,19381,32184,30561
+78704,54873,56374
+78705,68160
+78706,16437,81327,81432,79386,50864,46203,51
+78707,56694,9213,45686,5252
+78708,72492
+78709,67577,58734,28432,27920
+78710,69282,64005,43783,7796,78356,58670
+78711,776,60198
+78712,37710
+78713,81148,36970,27113
+78714,75238,23089,6359,65502,76108
+78715,1967
+78716,67110
+78717,77292,44225
+78718,15115,47293,70879,25869
+78719,20061,29120
+78720,18136,59603,43445,68906,20310
+78721,18585,73061
+78722,40915,5562,12603,43491
+78723,42114,5087
+78724,69367,34082
+78725,28661,37203,5572,34014,40960,78770,81191
+78726,54295,36785
+78727,10683,34289
+78728,28021,9375,19577,35346,27294,72250,61425,32430
+78729,43150,40693,48253
+78730,68719,15669
+78731,39728,77893
+78732,72169
+78733,66712
+78734,3114,9724,75503,32198
+78735,49950,73336,41911,49750,61418
+78736,29045,40975,77192,5472,17719,69496
+78737,37251,14230
+78738,72499,79058,30209
+78739,58268,3804
+78740,47141,4949,79577
+78741,40771,39682,42601,76591,39970,38049
+78742,58974,76596,65387,62024,57379,53925
+78743,23982,6952,20141
+78744,32566
+78745,13927,14771
+78746,4739
+78747,36403,17757,29672,13104,3815
+78748,79366,81930,26619,13489,34501
+78749,19415,58106
+78750,80445,12710,21899
+78751,12206
+78752,17970,53783,37030,60340,63508
+78753,19868
+78754,61016,51042,81028
+78755,81808,80545,52771,4344,23664,27339
+78756,42113
+78757,6856,44516,26010,32423,40651
+78758,32401,12920,79582,47977
+78759,76578,18172,59325,69730,79763,52799
+78760,27907,21593,43899
+78761,15195,44562,11153,31037,15735,42893
+78762,17624,14858,48648,37534,35464,46812,52629
+78763,904,34553,16802,31578
+78764,3919,3509,43639
+78765,42602,70596,71399,73004
+78766,4552,75535
+78767,67144,62500,36549,3761,51563
+78768,54154,50580,72259
+78769,4774,5007
+78770,54867
+78771,38690,10687,77661
+78772,15776,3540,40232,32533
+78773,47847,42502,56770,42837
+78774,46795,18058,70642,21143
+78775,32606,12470,41189,59436
+78776,14729,75044,25536,71716,42729,61473,24461
+78777,45821,48746,69441,65125
+78778,74660
+78779,31560
+78780,34500,38568,56297,15455,17769,33718
+78781,63410,31086,62183,37021,59070,26337,24857,57331
+78782,29893,12210,28074,78775,10730,58517,51486
+78783,42269
+78784,47895,48286,70906,20136
+78785,39154,81819,53748,41274,10886,31976,55861,80695,46225,66157
+78786,68433,15260
+78787,28998,191,43310
+78788,11992
+78789,80721
+78790,3621,53008
+78791,57006,76397,65284,6609,61135,36476
+78792,12526,65581
+78793,29569,8917
+78794,47513,13980,60275
+78795,51221,4791
+78796,15526,35486,43583,26648,67042
+78797,12237,7493,7529,7744,54907,27263,4431,32738
+78798,17666,10000,64285,44746,5061,15088,39614,41181,67734,13596,61265,4348
+78799,59846,67049,74527,42527
+78800,47608
+78801,12575,61106,45999,26745,56613
+78802,21571
+78803,61279,37457,77914
+78804,58134
+78805,42157
+78806,19204,9432,42804,70770
+78807,20662,27954,62464,72803,69219
+78808,7918,35254,64894
+78809,33944,58774,80779,64904,76045,76824
+78810,71324
+78811,46068,21961,35600
+78812,16025,31064,42894,50031,57392
+78813,5367
+78814,16921,63010,61055,21477,57488,32712,29274,46988
+78815,1694
+78816,468,74061
+78817,70854,49006,31363,44162,64974,33183
+78818,20817
+78819,37876,12265,77669,48446,28949
+78820,32334
+78821,31601
+78822,79079,73097,74969,36308,74595,72724
+78823,35019,77570
+78824,37619
+78825,38276,74160,45009,24649,24678
+78826,42770,76393,40010,42635,35883
+78827,75173,30187
+78828,77551
+78829,7770,42621
+78830,35103,8355,2198,76302
+78831,18957,284,56846,62502
+78832,34495
+78833,44913,31316,35291,46286,68473,74421
+78834,75837,26833,29526,60608
+78835,36630,44984,61917,618,5639
+78836,771,4701,68552,26495,77257,38839
+78837,364,69760,1620,23739,47191
+78838,67556
+78839,18670,39302,18540
+78840,20810,63619,79450
+78841,6688
+78842,3851,68237
+78843,81422,16569,69063,7078
+78844,13598
+78845,49686,10756,37392,68001,65015,60589,15448
+78846,1264,72788,45893,59934,33273,7186,82095
+78847,77181,32813,78273,42430,4045,74258,3348,2050,53862
+78848,23122
+78849,58928,11807
+78850,31929
+78851,68831,77313,3910,33566
+78852,81537,81931,58604,5508
+78853,65033,18274,9765,1704,39317,51105
+78854,62036,67791
+78855,22623,41209,16803,12215,34360,40927,49233,34869,11548
+78856,42622,35916,10654,31108,62312,68350
+78857,51272,69574,8204,24933
+78858,34644,37355,72147
+78859,28675,59178
+78860,66343,24452,61075
+78861,56384
+78862,40232,39862,36183,5382,60418,59296
+78863,50032,47877
+78864,62662,41218,67154
+78865,4625,73225
+78866,20860,59154,74965,56539,2567,27605,80270
+78867,60871
+78868,66154,28145,58052
+78869,70975,49984
+78870,72073,42595,53432,3526
+78871,3640,17929,4993,962
+78872,72459,16907,71962,72964,40859,49253,54480,50047
+78873,74603,49108,30500,3705,57618,61148,38147
+78874,81627
+78875,72429
+78876,12968,53502,23353
+78877,14155,55037
+78878,45041,78905,55881,18811,52896,42940,51310
+78879,52438,27051
+78880,25048,73508
+78881,66524,8198,80403,25143,73031,65024,76950
+78882,35219,44171,6089
+78883,81158
+78884,64924
+78885,10653,6031,20146,8010,45697
+78886,51826,67738
+78887,65987,48052,77656
+78888,61796,2842,9285,35402,81233,44540,73553
+78889,9374
+78890,43233,69697,79399,65210,62985
+78891,57328,24244,3199,737,27296,52818
+78892,46610,29830,46571,54619,58368,60139,27052
+78893,27957
+78894,384
+78895,21839,29607,50307,54013,33663,63133
+78896,70414,81839,25139,40753
+78897,46299,58469,43684,50688
+78898,79820,42692,1969,245,24785
+78899,28144,39190,48529,18555,62527,47399
+78900,72461
+78901,78865,28004,22839,40109
+78902,16210,19350,1341,67260
+78903,10477,31529,46890,36900
+78904,67392,6753
+78905,58237,9718,41901,20204
+78906,4023
+78907,67430,49518
+78908,57558,82114
+78909,23470,34291
+78910,20030,1629
+78911,63619,30841,9882,73339,65138,66449
+78912,23171,10482,51814
+78913,24271,29376,73559,46935
+78914,553,55395,51635
+78915,75341,1777
+78916,41866,70379,41259,63888,39546,55384,59695
+78917,4358,9245,55025
+78918,72872,2605,73773
+78919,45961
+78920,70415,16890,7142,5572,67565,59670
+78921,15121,64368
+78922,64051,78130,78004
+78923,32402,69567,40145
+78924,24282
+78925,6876,25565
+78926,38709,14473,42987,33730
+78927,61248,67144,17627,47566
+78928,9979
+78929,12656,40171,52111,47101,65012
+78930,9140,38418
+78931,33116,22883,43715
+78932,50800,47615
+78933,71630,76745,16624,77384,68511,15745
+78934,30217,34485
+78935,13265
+78936,26901
+78937,62398,74043,35383
+78938,20582
+78939,45667,31944,47336
+78940,10450
+78941,18612,49619,75858
+78942,9506
+78943,49949,38486
+78944,43157,81902,30857,43235,70704
+78945,47232
+78946,36963,9057,13088
+78947,81380,52696,63475
+78948,44180,76124,79616,81578
+78949,9787,72648,36436,52748
+78950,8209,68480
+78951,57377,60965,79082
+78952,50812,11159,32722
+78953,59686,67344,64745
+78954,77815,18321,6585,47012,74490,64656,37531,73094,63625
+78955,35582,36389,44101,45267,46384,13706,22769,13745,272,69081
+78956,31121
+78957,8490
+78958,40968,39862,26874,33978
+78959,10083,26722,50544
+78960,30250
+78961,78867
+78962,33520,79279
+78963,14095,63617,38070,14718
+78964,28412,59318,71179
+78965,78981,39693,56366,4990,24537,74256
+78966,51239,47429
+78967,62657,63311
+78968,53509,71705,53282
+78969,6885,34591,37522,44057
+78970,28730,11093,80530,982,40232,30277,6856
+78971,15912,7857,50748,45109,5690
+78972,46948
+78973,76292
+78974,24536,6697,25329
+78975,60021
+78976,23975,54095,51784,36714,52543
+78977,52903,1404,53333,18301,53075,10994
+78978,1245,69450
+78979,22486,37699,10475
+78980,7007,26953,24842,18742,66691
+78981,80662,51310,63101,42153
+78982,11446,61740,53898,73754
+78983,8862,70602
+78984,2187,58746,27420,10251,60743,70542,55369,19269
+78985,4317,49510,35722
+78986,12985,20025,31776,70804,74790,72487,79311,60256
+78987,45709
+78988,77196
+78989,29044
+78990,33033
+78991,46876,60026,15010,19662,8762,43925
+78992,43360,69122,43205
+78993,71505
+78994,74544,57908,5681,4077
+78995,72764
+78996,77480,80704,2759,2738
+78997,785,56007,79408,33172,738,40235
+78998,14615
+78999,50462
+79000,21911,22756,58580,37033,80349
+79001,10579
+79002,47069,19692,39439,76025,51105
+79003,5920,73527,37716,17545,21816
+79004,45984
+79005,427,43482
+79006,70056,74148,17938,12386
+79007,5157,47026,46642,63238
+79008,24827,48981
+79009,7372
+79010,32414,25014,55856,557,29733,1962
+79011,27665,72387,41522,59000,79504,75757,53614
+79012,67625
+79013,35755
+79014,71842,26952,42715,76209,7497,77241,1370
+79015,38753
+79016,74648,5246
+79017,19987,66387,69202
+79018,51008
+79019,32032,14653,68791,31421,27928,34493
+79020,77754
+79021,63162
+79022,50813,78047
+79023,37803
+79024,48348
+79025,69838
+79026,63982,64900,9466,11879
+79027,50123,49861,15577,65723
+79028,70383,38347,44984
+79029,68799,43374,71336,12744,78848
+79030,35331,70243,50460,70227
+79031,79318,29093
+79032,66509,48229
+79033,65233,26342,73598
+79034,10128,11817
+79035,47615,30563,7765,18376,63833,47183,7909,49662
+79036,44670,60423,43629,73721
+79037,11449
+79038,33395,7938,21612
+79039,30776,49618,65289,50576,3265
+79040,58133,52912,4748,45969,67999,18212,31399,20657
+79041,13840,70108,6332,128,4213,3508
+79042,22730,68708,58488,21873,50847,47233,8650
+79043,55096,41302,43810
+79044,5032,37280,57808
+79045,71499,53521,13315,22834,65673,30684
+79046,56272,42443,60941,68968,76767
+79047,57583,61732
+79048,13614,78613,51212
+79049,60172,40058,25296,60144
+79050,72659,46110,77402,82181
+79051,34480,54002,36410,57093,41338,60525,2850
+79052,15273,10574,57352,14520
+79053,21389,76171
+79054,9055
+79055,78637,6801
+79056,28804,77994
+79057,53060,17393,59739,21055,37148,64372
+79058,24082,49064
+79059,13785,25099,18948,44065,50216,20664,75958,80911,68410,4513
+79060,31192
+79061,11110,16252,26615
+79062,3560,46311,63923
+79063,2522,48879,29388
+79064,57091,22216,4041,68493,13303
+79065,9968,16003,38384,79441,30505
+79066,16814,11741,756,19762
+79067,71678,59819,44376
+79068,40751,39534
+79069,27470,53143,36256
+79070,54950,33130,80144,34440,55350,72366
+79071,12585
+79072,29332,47070,34282,80322,14048
+79073,64215
+79074,62016,46871,23317,6861,62107,12145
+79075,46278,28561,5823,54138,49194
+79076,50685
+79077,45977,35732,18518,39153
+79078,24819,31034,74906,60497,4079,22447,47592
+79079,63811,49867,62771,16372,74476
+79080,10905,71390,73018,47757,73035,13140,2868
+79081,43397,21334,71833,20808,70355
+79082,42213,2040,2473,74259,11665
+79083,23950,81539,32110,58652,67333,40248
+79084,33568
+79085,16087,44544,69538,42821,81506,71399,14521
+79086,12612
+79087,15874,15665,59794,22407
+79088,52615,46314,41051,68991
+79089,78109,8177,45899,61927,37840
+79090,60820,14010,40571,39502,37911,40404,34019
+79091,19998,19523,15996,38157,71603
+79092,4130
+79093,21550,74941,55284
+79094,77915
+79095,23596,62835,11834,14976,5570,2208
+79096,42448,68134,4616
+79097,70206,44502,82069,76529,62584,54766
+79098,39234
+79099,48712,75544
+79100,48779
+79101,23736,58737,29006
+79102,10922,9853,26282,26769,34851
+79103,26954,56973,26857
+79104,63229,20448,15169,66806,67997
+79105,77868,56853,49982
+79106,24104
+79107,21379,63062,30260,12785,62689,8594,10421
+79108,26887,77754,72848,72136,76046,26254
+79109,16475,40720,56907,25751
+79110,50521,48339,43317,24899,35488,60159
+79111,35591,77703
+79112,43695,59930,940,28552,48423
+79113,81925,6969,9322,55032,48020
+79114,71184,33576,35863,26934,59655
+79115,42642,31612,80460,5565
+79116,67896,40824,64945,55735,66180
+79117,44033,7623
+79118,6533,57564,44474,48977
+79119,20400,41146,18026,4985
+79120,2459,50100,14712
+79121,26406,12505,47635,62066
+79122,1983,50790,74277
+79123,52069,25391,65709,80274
+79124,4492,73624,26078,65233,64635,17147
+79125,5672,12277,73531,28539
+79126,65155
+79127,3072,34598
+79128,25987,67849,73090,24908,46969,62585
+79129,55665,35617,47606,35060,11034
+79130,9933,68570,10467,39459
+79131,18431,9475,30175,34128,34936
+79132,13517,34047,62619,55233,32863
+79133,69493,51164
+79134,71267,82181
+79135,38325
+79136,72773
+79137,39056,30933,48446
+79138,60688,76082,9413,75744,79767
+79139,66448,75403,20880,52213
+79140,23855,67702,9089,921,54555,8060,39336,8253,51074,45667,42728,24444,51945
+79141,60735,22834,32344,40028,25683
+79142,36499,34577,14292,71689,34765,7582
+79143,4962,70095,1261,11588,45787
+79144,7581,26381
+79145,49983
+79146,9560,9209,5454,4787
+79147,21310,70927
+79148,12455,40134
+79149,71528
+79150,28323,49235,46472,56899,4937
+79151,35338
+79152,22839
+79153,23952,13141
+79154,42138,81383,77924
+79155,22099,67983,7883
+79156,61910,9610,74502,3594,39899
+79157,54941,20462,20622
+79158,25486,5207,7792,56397,18516,76302
+79159,79829,45584,38064,53184,3408,82174,63331,48302,55193,1394,60555,57956,47118,63417
+79160,74647,48251,68463
+79161,19857,25007,2006,2386
+79162,70112,64945,32890
+79163,68493,60920,23127,11010,61858,20049,17207
+79164,68753
+79165,72376,20116
+79166,34143,14430,15653,18284
+79167,12550,78942
+79168,39181,8689,16553,59046
+79169,66797,48531
+79170,47403,58242,65913
+79171,16685,37069,77025,27617
+79172,2936,21048,69961,66931,56946,67309,34114,12185
+79173,52529,18159,38162
+79174,5565,694,17417
+79175,34759
+79176,52967,55025
+79177,65656,76058,21264,57622
+79178,22214,14370
+79179,4056,2667,78818,30528,77313,23036
+79180,36681,35864,32838,78574,78064
+79181,22354,69869,29481,19318,59036
+79182,5906,38628,40107,37174,46935
+79183,58543,45122,29254,39725,78218,69871,72313
+79184,44338,34256,77742,34218,45359,32344,40169
+79185,23472,30781,47445,2718,20711,77230,31621,16926
+79186,18409,57746
+79187,70553,21316,69447,42222,58617
+79188,80366,909,5123
+79189,34798,55519,10479,45910,34974
+79190,32753,6552,22392,23535,70778,27944,61224
+79191,37314,33746
+79192,23259,29482
+79193,33479,78938,72510,5382,61120
+79194,28112,722
+79195,9237,40057,27417
+79196,23856,40607,79556,34751
+79197,80120,30816,53714,47643
+79198,61632,64399,43715
+79199,59478,59464,82084
+79200,14610,54077,16132,36143,9178,78933,61159
+79201,42455,40811,21749
+79202,15351
+79203,29095,76799
+79204,34977,43331,15820,57440,2572
+79205,35162,69347,55962
+79206,70975
+79207,10043,47770,37486,73354,62881
+79208,62938,20362,62303,8896,27779,24140
+79209,71500,51320
+79210,74400,51538,60879,72136
+79211,51848,38508,6772,57660
+79212,33624,22728,64399,24817,69100
+79213,26887
+79214,5392,76633,77545,73915,12024,14961
+79215,19968,54604,73905,34009
+79216,66303,34548,23233,38399
+79217,81909,15986,42505,58806,77557,14788,46165
+79218,72620,9087
+79219,62100,75405
+79220,19087,48816,6258
+79221,29554,17090,71295
+79222,27861,53305,42092,53205,11160
+79223,71419,23542,66892,42660
+79224,44051,81204
+79225,17434,11903,32439,13518,74813
+79226,23018,47750,15566,50097
+79227,24696,43753,23967,26434
+79228,80533,6215,75319
+79229,60733,62757,67214,81409,50017,43771
+79230,63775,2794,638,3419,37090,31253,12364
+79231,19241,31996,53859,2530,80547,37961,40544,67300,32620
+79232,14819,67374,62544,62667,32332,81123
+79233,813,39795
+79234,1850,74777,66949,16470
+79235,29452,46317,31794,41517,36407,61381,39213,74324
+79236,61484,20384,57786,71186,80714
+79237,22849
+79238,78279,26068,48612
+79239,49951,61325,4450,56069,4029,66873
+79240,215,2889,64745,49330
+79241,56096,13217,7942,4944,71119
+79242,24861,10483,12736,9414,62167,63035
+79243,81021
+79244,76110,60486,74584,1083
+79245,69479,72611,51097,6350,7804
+79246,40490,29441,30086
+79247,11269,66716,4768,39474
+79248,80638,73357,17864
+79249,63769
+79250,58228,63032
+79251,45913,15278,79748,4461
+79252,35721,19283
+79253,26350
+79254,36605,81287
+79255,70945,42797,5249
+79256,65045,57300
+79257,4624
+79258,28,77168,59223
+79259,39373,47329
+79260,68403,14789,51754,23982,51784,74370,14903,13004
+79261,40073,32226
+79262,9356,11355,56022
+79263,66042,50959,18903
+79264,61132,20040,869,12532,2663,14384,25175
+79265,67222,69389,4490,12966,249
+79266,33726,16257,3145,61532
+79267,12539,7941,34048,28912,40322,79664
+79268,29959,41046,66674
+79269,77424
+79270,31368
+79271,35500,63732,42002,68878,19964,19554,28650,791,39467
+79272,67949,32345
+79273,66775,10080
+79274,8163,68762,72160,22092,6803
+79275,55678,12423,56129,34030
+79276,2720,2887,10964,49571,140
+79277,40455,12753
+79278,76271,16521,33938,54915,5498
+79279,63503
+79280,44539,44358,16082,60199,37124,5650,45085
+79281,66586,67332
+79282,14714,7635
+79283,71752,49178,75028,73540,44330,28269,64834,13784
+79284,35960
+79285,8129
+79286,80941,62972,81819,27739,33178
+79287,26177,80558,47471,63334
+79288,61085,73636
+79289,65050,36421,40480,68011,33254
+79290,82042,52438,11020,49345
+79291,8990
+79292,60056
+79293,8108,40012,33320,16073
+79294,42193,47662,40687,5137
+79295,60623,49559,29774,71962,1179
+79296,36222
+79297,70213,38326,22587,27971,80714
+79298,58632,31452,13152
+79299,57870
+79300,71647,44206,14692,37122,47239
+79301,51340,63511,33592
+79302,58671,18369,34681,42567
+79303,43078
+79304,74433,54926,61243
+79305,66596,63436,4805,44960,39382
+79306,51937,23293,58973,79504
+79307,22214,56562,8630,62575,66608,8683,58803
+79308,77040
+79309,51752,1921,21728,40244
+79310,49963
+79311,67231,67321,20481
+79312,15324
+79313,67581,20362,4515
+79314,68536,27463,3258
+79315,30758,45526,32919,42322
+79316,72850,78579,11966,67486,57271
+79317,30241,785,13226,2669,51895
+79318,9609,6601,1369,37379,74501
+79319,8280,63883
+79320,42128,18522
+79321,224,55343,64438
+79322,74539
+79323,53125,27028
+79324,54959,10937,81198,12643,48496,8454,40526
+79325,67130,52135,34282
+79326,44688,62294
+79327,12065,37705,63916,77048,37940,10980,34234,38722,42319
+79328,41558
+79329,67896,13003,28329
+79330,78872,69087,38246,79478,56518,74807,64378,40904
+79331,23603,13983,4561,44773,57535,16291,82165
+79332,73650,9808,4625,36545
+79333,57046,49212,64859,77706,6715
+79334,22794,7080
+79335,26254,52734,13692,13443
+79336,10242
+79337,15589,29553
+79338,76074,9251,76745
+79339,79423,42539,8006,47872
+79340,34759,29796,35634,34665,8356
+79341,60955,49322,24080
+79342,14913,44177,60321,27324,63667,46853
+79343,54326,41585,61844,80952,70395,16068
+79344,62155,5197
+79345,5747
+79346,71663,16717,60755
+79347,11803,73697
+79348,54497,65497,29591,17666,23637,78739
+79349,59539,33317,42287,10716,44493
+79350,64466
+79351,73068,58919
+79352,52662,35591,81499
+79353,5389,54912,76775,22991,79016,49521
+79354,10274
+79355,19087,10748,20246,12114
+79356,61884,61603,1146
+79357,46057,18661
+79358,34053
+79359,57707,51905,13676,26338
+79360,6144
+79361,63209,45080,76106,42209,25154
+79362,18728,18378,55369,49673
+79363,3835,3955,46520,14211,62948
+79364,56620,35667
+79365,18673,79840,31831,56648,2786
+79366,76165,2552,56294,3617,39159,45683,52452
+79367,17460,37257,79048,81717,56052
+79368,77325,33592
+79369,17093,7928,61775,41308
+79370,46235
+79371,34993,78517,57001,16549
+79372,44791,49055,31556,12243
+79373,44639,71650,11741,62944,63576,10250
+79374,74432,15219,51062,37403,50836
+79375,42139,65681,20129
+79376,79290,75067,28545,69786,66061,31864
+79377,31125,23179,62265,1526,6530,37848,25914,24522
+79378,37470,236
+79379,18333,75350,6942,37529
+79380,20251,36357,68030,48532
+79381,19407,62098,56998,52543,60328
+79382,63523,25795,47331,1196,38485,67998,72500,51629,39000
+79383,18369
+79384,40872,19467
+79385,31329,10838,50587
+79386,44349,80971
+79387,44723,37905,41422,13614
+79388,20082,8936,53720,26313,69137,3939,31804,2111
+79389,80640,60259,38316
+79390,55391,8204,57067,48950,45954,29946
+79391,51038,45411,34127,19163,12866,53008
+79392,70646,81137,81606,35418
+79393,39404,12602
+79394,41083,40336,61637,75668,77072,63089
+79395,27799
+79396,56818,47882,79499,15570,58298
+79397,74363,17963,1095,33102
+79398,80053,45483,21591
+79399,41408,1748,3781
+79400,63367,49306,76564
+79401,8292,41024,9898,26032,40228,6290,44399,12329,8264,58430
+79402,53707,63325,38260,13706,37111
+79403,9951,72335,61662
+79404,52714
+79405,32511,12729,61615,68491
+79406,15127,69665,11644,37275
+79407,1885,67958,44847,55487,70206,71783,43295
+79408,65383,50240,29425,47966
+79409,11884,90,12425,36971,28914,75142
+79410,32439,1187,4161,15182,54934,59396
+79411,69394,64460,76685,41296,46888,47877,56610,54349
+79412,52414
+79413,77211,47823,71451,67569,759,44199
+79414,52718,51277,27611
+79415,37368,23115,54086,37976,51622
+79416,53090,48459,59267,76634,50220,79982
+79417,41284,43263
+79418,60818,16391,28610,78678
+79419,55863,23658
+79420,21649
+79421,79582,52912,77629,64568,9506,58285
+79422,51857,39729,7846,18629,71132
+79423,51136,13472,8622,56041
+79424,57557
+79425,49806,70589,53917,46456,25614,74363,1004
+79426,22786,46494,2866,7043
+79427,8762,17181
+79428,10128
+79429,70854,75809,62430,46209
+79430,4916,12217,34836,64224,70741,35667,60011
+79431,62129,17730,53936
+79432,9921,34042,79254
+79433,44830,4376,82079
+79434,16635,5383,45063,67242,23250,15350,51208,2072
+79435,10406,25425,4800,11178,15143,13901,35511,71381
+79436,12789,64676,65764
+79437,16211
+79438,79368,81397
+79439,1675,67790,63013,39133,18743
+79440,62762,24836,80561,48146
+79441,27657,59008,15716,61772,22156
+79442,32813,25319
+79443,78664,61788,40597
+79444,17497,76520
+79445,2880,74223,410
+79446,55281,62046,77000,41870
+79447,65021
+79448,38175,59231
+79449,12904,2620,8693
+79450,7871,53420
+79451,60970,29257,26024,43062
+79452,27293,1618
+79453,22571,25734,50944,54635,12548,60067
+79454,59907
+79455,2523,24992,61232
+79456,46235,60600,69497,4175,45922
+79457,43732,13047,28235,70576,6562,35261,54548
+79458,49050,57471
+79459,74786
+79460,30133,47544,41746
+79461,71505
+79462,44204
+79463,44588,64097,65210
+79464,51287,51497,53593
+79465,46143,44467
+79466,26612,69333,6244,5701
+79467,50255
+79468,62151,2620,41602
+79469,15053,7253
+79470,72147,41975,44431
+79471,72731,44172,74456
+79472,65169
+79473,80870,1402,55499,28468,54620,55982,69302,42968,54810,36302
+79474,62537,30468
+79475,10539,54216,22791,24491,31726,15254,52568
+79476,20231,32982
+79477,68953,18173,24129,50625,4873,19522,17185,5795,69266
+79478,60882,37415,29031
+79479,22626,21920
+79480,23565,69553,60501,604,44215,34590,62348,14815
+79481,17109,30339,3551
+79482,29650,60942,12710
+79483,15521,17504,18848,66850
+79484,52694,61360,79778,1610,28010,65193,34926,36759,80600
+79485,60247,74871,10405,78100,44428,54858
+79486,41988,26846,7307,9544,28302,30295,13731
+79487,53878,51298
+79488,16945,74174,42205,40391
+79489,974,81070
+79490,46117,33421,75424,30473,51305,76694,27373
+79491,22321,12535,49862
+79492,35704,70443,43804,13229,52887,66649
+79493,42328,62139,34890
+79494,30324,15641,34502,2079
+79495,31951,32238,19053
+79496,54081,52785
+79497,66534,59401
+79498,36487,185,39498,5156
+79499,3382
+79500,14737,29054
+79501,27365,48867,50200,4518,62214,78579
+79502,58431,21233,72405,52038,1397,16321
+79503,62166
+79504,64853,51260,68395
+79505,54870,26462
+79506,19284,78169,31953,61556,72208,60604
+79507,2562,58978,53279,42761,30255,39779
+79508,647,29270
+79509,48945,60070,19588,64994,78403,81034
+79510,20785,29385
+79511,53487
+79512,46236,1647,62162,67891,69774,4941,25565,5405,48223
+79513,21988,75075,72825,75077,6485
+79514,31190,77012,7931
+79515,63867,58573,21849,69241
+79516,54694,59923
+79517,32699
+79518,72017,77982,78492,44179
+79519,15482,71729,12019
+79520,63013,14801,70993
+79521,5620,922,43891,48016,75448,79048,16787,2646
+79522,27524,1127,74979
+79523,37109
+79524,9547,65320,63406,52840,14314,34901
+79525,25494,1677
+79526,10237,32067,13171
+79527,68335,3392,70629,51071,20467,6686
+79528,35554,67625
+79529,70604,36985,51361,32635
+79530,79270,27434,8155,25015,6943
+79531,70845,49256,18347,71673,17913
+79532,69866,8974
+79533,15823,2507,76610,27989
+79534,13001,27304,27785,6768,44012,54185,13393,19100,29702
+79535,6481,39067,71857,55882,4262
+79536,65928,48840,77729
+79537,64053
+79538,73421,19365,42896,75287,69120,71621,58587,67859,23342,42316
+79539,25071
+79540,51139
+79541,13641,74664,74599,31699,47912,40336,77029,20332,4842,67827,4590,41028
+79542,43836,58252,45006
+79543,2348,5137,54517,7061,67388,78750,72759,28053,14526,11417,38221
+79544,36091,4415,36534
+79545,59204,6016,7851,55622,46592,2332
+79546,63418,57751
+79547,2161,25242,27806,64297
+79548,14163
+79549,68474,6016,80055,63618
+79550,25233,10404,20265,77140,78113,32276,68603,54041,75606,54422
+79551,51751,259,4287,81514,73576,23117,383,38906
+79552,47219,26234
+79553,47213,5612,3480,28779,73279,20876,68595
+79554,81484,77814,80379,42320,14794
+79555,61481,49663,49718
+79556,54612,28704
+79557,7939
+79558,55319
+79559,34710
+79560,9681,25061
+79561,23525,66920,75080,12725
+79562,66454
+79563,11171,42781
+79564,43567,22307,28711
+79565,63704,46952
+79566,50750,68518,79850
+79567,67922,61283,58862
+79568,80854,52092,9164
+79569,70752,17199,22875,36794,74754,49394
+79570,8089,24244,22404,23575
+79571,9305,22184,5151,55073,70819
+79572,43012,63388,32883,72969
+79573,67133
+79574,41404,5554,44046,35896,4010
+79575,33301,14111,44503,79656,8057
+79576,51894,80253,4360,64626,39761,37065,60965
+79577,2435
+79578,70145
+79579,1370,27221
+79580,32071,25514,33249,1489
+79581,18678,48925
+79582,61525,55019
+79583,69192
+79584,16130,54339
+79585,38189,81747
+79586,51806,67228,6537,80040
+79587,46360,43613,33808
+79588,16360,61202,26114
+79589,18699
+79590,37630,45679,1821
+79591,47158,9088,38849,70013
+79592,11798,32927,53908
+79593,22023
+79594,33395,71910,65064
+79595,81095,68713,6369
+79596,67187,13287,33346,7117,11492,13420,57883,21813
+79597,39798,78138,44340,12534
+79598,35222,20927,8080
+79599,26731,55764,81504,66661,19937
+79600,20866,52070,17593,46530,49649,23918,40775,3270
+79601,37221,32575,29715,22455,47806,71929
+79602,37809,31702,39748
+79603,44256
+79604,30353,5695,59344,23560,54391,39861
+79605,50262,6954
+79606,2836,54784
+79607,43000,14215,71256
+79608,38508
+79609,13622
+79610,33123,37799,18424
+79611,73780,34392,81692
+79612,24214,56358,25267,35836,41500,45262,32844,30604,20251
+79613,9690
+79614,47395,16214,71816,58471,59239,57393
+79615,61470,76056,47250,52700,19692,32965,2663
+79616,51521,23946,54372
+79617,80068,15322,15479,63634,15465,43555,71088,81631
+79618,37507
+79619,59143,72007,59964,45287,17289,23112,4461,34898,19697,73576
+79620,27190,23085,65108,40548,48836
+79621,26844
+79622,44962,29683,58105,30311,52349,28751,65889
+79623,46608,49670,28761,63158,53997,47849,14002
+79624,64733,6884,8628
+79625,51663,27914
+79626,65349
+79627,45090,1168,11641,74391
+79628,72985
+79629,80265,26310,54114
+79630,442,20856,61529,79351,28258,37060
+79631,60473,22390,20981,61364,73870,73635
+79632,41413
+79633,25464,62144,27322
+79634,66910,54899,78623,1424
+79635,17885,17340,7867,80129,3841,14032,59586
+79636,63879,33163,34588,48578,56877,10633
+79637,35313,17301,4866,33809,58007
+79638,74774,40316,70884
+79639,44347
+79640,26441,55773,24287,67710,55538
+79641,62240,2027,26703,20634,6852,4230,81674
+79642,13210,10047,48598,51290
+79643,62295,12855,20811
+79644,80150,7173,80686
+79645,42212,47960,80575,23340,40821,60031,47272
+79646,5226
+79647,68991,4000
+79648,63462,15488,45241
+79649,60253,17861,7487
+79650,34597,19784
+79651,8898,16715,52401,11223,61920,39655,23585,35165
+79652,57710,65630,23266
+79653,20699,44090
+79654,51164,12866,79192
+79655,68993,47810,67084
+79656,42072
+79657,29851,72491,64174
+79658,9025
+79659,49945,76713
+79660,4520,12707,18301,11596,25024,50336,34004
+79661,3526,32465,71739,50462
+79662,37065,30152
+79663,2659,55376,52405,23840,55002,62590,81180,7963
+79664
+79665,19599
+79666,76895,2651
+79667,9822,67030
+79668,62262,51597,22299,8592,31733,68228
+79669,41309,79024
+79670,78534,75396,10551,43278,63716
+79671,4455,30249,14781,13799
+79672,33592
+79673,6696,47081,30401
+79674,44168,40285,23216,65242,53169,14339,40702,22871
+79675,60357,58737
+79676,41380,12393,64781
+79677,38893,21616,16934,15549,35994
+79678,30426,65648
+79679,38785,3968
+79680,19631,66813,33910,65568,11306,27345,65064
+79681,56076,4886,81313,30618
+79682,31199,34394,67167,28400
+79683,14944,31225,74330,53374
+79684,25227,28673,72174,43889,41133,42366
+79685,49010,4023,63856
+79686,78653
+79687,14458,51020,65492
+79688,23859,32472,65916,46867,48432,41168,55952,34319
+79689,64562
+79690,80483,40837,14802
+79691,20889,17802
+79692,81487,6835,7837,14247,1323,65828,32645,68958,54289,9786
+79693,15540,15949,22763,63193
+79694,49724,69501,23974,53719,1038,47189,15665,78686
+79695,46712
+79696,1414,39618,47732,56092,13016,62061,19967,54518,70070
+79697,65834
+79698,37929,67367,6752
+79699,72057,73692
+79700,49881,60766,49401,10528
+79701,7425,67648,52489,52109,63342
+79702,68045,16234,61996,37250,268,14129
+79703,43252,81021,34789,10485
+79704,61041,43240
+79705,81973,20149,68358,13476,39331,50486,76844,27970,79853,21388
+79706,23330,32209
+79707,50135,43354,72139
+79708,4125,46066,39670,78658,30618,2168
+79709,63901
+79710,6886
+79711,70203,1995,58493,28223,43663,7041,68213
+79712,4382,49222,51959
+79713,70158
+79714,50093
+79715,65784,33608
+79716,29163
+79717,14760,39888,14632
+79718,73694,67110
+79719,80145,67780,14663,64491,40043,40895
+79720,3557,58625
+79721,57159,33966
+79722,6713,42941,43905,14056,48638,73374,23367,53445
+79723,9363,26867,35645,75407
+79724,48805,34938,5563,62240,45488
+79725,81931,55461,70176
+79726,44100
+79727,28812,31320,48071
+79728,34710,73947,69070
+79729,51082,5226
+79730,78867
+79731,19739,45887,67441,6863,45892,59800,25873,18836
+79732,72151
+79733,36792
+79734,19187,57708,78974
+79735,49038,35947,8058
+79736,82109,75218,13899,18014
+79737,25648,7886
+79738,36049,502,11741,71329
+79739,6794,35819
+79740,32539,35866,44428,28233,14380,75975,17841
+79741,74596,65165
+79742,60955
+79743,42833,74921,52560,36001,59835,18855,42339,2533
+79744,67156,7481,22891,51233
+79745,64169,78615
+79746,68541,52412,74422,22253
+79747,19964,60998,23443,19396
+79748,47590,81000,16864,34683
+79749,51967,25858,48435,75684,30874
+79750,54040,78467,25066
+79751,53814,43323,64574,17062,59256
+79752,24003,41249,68134
+79753,40990,76610,37989,71035,43588,78796,44830,32717
+79754,27292,35554,24138,18589
+79755,21323,889
+79756,30413,46192,45913,16362,80591,43658,36461
+79757,78257,5765,75847,23454
+79758,71566,50333
+79759,38729,75728,77383,76185
+79760,47129,79129,36313,11159,39556,44289
+79761,13752,30665,68714,73145,15103,78827,54199
+79762,11273,66712,64096
+79763,21990,72820
+79764,3775
+79765,54816,72562,48518,27790,61416,62025,29240,66160,515
+79766,65015,55284
+79767,20518
+79768,986,10975,14310,64074,34452
+79769,30286,60495,46718
+79770,48649,78912,39172,73034,48309,75549,55473,78527,1182
+79771,19176,36106,20607
+79772,19166
+79773,27557,44019
+79774,10766,7673,37594
+79775,80035,14130,44268,2441,43969
+79776,5698,49855,69361,421
+79777,63543,2273,22006,71193,62101,19902
+79778,22889
+79779,44012,75025,29731,34932,50346
+79780,48396
+79781,70043,1455,22175
+79782,3280,75356,72869,20759,80753,39574
+79783,60896,10992,15514
+79784,56172,46139,10941,33359,35995,21755,13671
+79785,28533,48228,53970
+79786,61614,76673,5307,35557
+79787,41726,54838,28786,71828,51592,76491,38170,11989
+79788,12881,36096,14458
+79789,29847,78185,18814,23270
+79790,3987,15937,64803,40466,2312,36989,31413,40335,44160,69634,28911
+79791,67909,33427,11909
+79792,366
+79793,33774,76736,40243
+79794,24812
+79795,157,3508,15735,46698,33595,36171,61284,73357,18152
+79796,45634,73305
+79797,58374,24137
+79798,52042,791,36911
+79799,61253,70330
+79800,40327,9167
+79801,73583,19380
+79802,31648,70183,60897,71020,49242
+79803,63925,5158
+79804,49939
+79805,52298,58955,48098,73907,66717,78106
+79806,52832,48003
+79807,68432,42152
+79808,39645
+79809,11673,26075,47562,28302,11275,18737,14972
+79810,76471,20567,58501
+79811,10737,79800,67957
+79812,15229,79313,28037,77488
+79813,27623,65643,53632,27341,33798,28272
+79814,27653,73152,69413,36538,46368,72144
+79815,9610,15306,79616
+79816,53365,22161
+79817,19492,34467
+79818,53504,48806,69939
+79819,56771,76735,50669,45379
+79820,3143,29333
+79821,68541
+79822,41379,56137,24336,51292,9042,71085,78421
+79823,8843
+79824,51757
+79825,36362,81828
+79826,58887,53832,28519,28231,78275
+79827,76814,22812,21526,62447,4894,77497,21738
+79828,34924,11297,80763,12134,51251
+79829,51323,33661,77939,12609,66961
+79830,41964,33662,62394,80649,5333,59256
+79831,77424
+79832,16707,15558,25022
+79833,22339
+79834,23121
+79835,11614,45313
+79836,10722,51850,23410,27544,44436,24106,45585,5834,23099
+79837,48483,3692
+79838,40685,59129,53684
+79839,5602,55313,73300,70225,53202
+79840,42715,16210,70055,53832
+79841,57100
+79842,78275,16146,12718
+79843,4608,76441,80458
+79844,7147,73825
+79845,7635
+79846,81244,30629,11012,82120
+79847,79664
+79848,37964,2809,65995
+79849,30221,40974
+79850,73762
+79851,54803
+79852,68335,10850,75581
+79853,68157,50947,75831,77991
+79854,79131,46740,8699,23591,79939,73023
+79855,8029,15216
+79856,9479,56467,79809,37832,78826,62018
+79857,2230,17558,41920
+79858,34626,34397,7179,35195
+79859,26170,56788,43482,65271,35487,40710,81214,60079,33472,78824
+79860,33079,71059,1591,10705
+79861,45541,28438
+79862,17545,80247,64177
+79863,73283,79797,76220,50988,56949
+79864,10453,70403,79898,70887
+79865,79474,51431,55242,33427,68336,7316,59140
+79866,3150,29744,19976,62858,51443,7169,72863
+79867,71092,58840
+79868,17378,77223,33183
+79869,8634,10765
+79870,66496,54864,8560,68180
+79871,19448,71488,24104,69142,67697,78513,3050,66316
+79872,79689,35534,4422,60460,30237,51785
+79873,11750,34684
+79874,35320,2108
+79875,57514,1241,40695,54090,8765
+79876,62858,56678,31750,23037,53469,31481
+79877,15996,63954,50583,53440,64437,31528
+79878,73824,50746,11003,39642,54809,44748,8130
+79879,42106,75294,21987,30948,42789,52783
+79880,52487,37238
+79881,67864,36590,71855,11614,16976,23335,1883
+79882,66234,7173
+79883,56316,62166
+79884,54551,60002,57121
+79885,73797,72219,68937,3787
+79886,28112
+79887,3697,19072
+79888,33901,51354,58033,51338
+79889,60718,78509,18903
+79890,75227,21380,27501
+79891,27583,70672,17242,68472,53599
+79892,69817,13331
+79893,37358,41443,28223,9636,46227,74906,30377,55962,67177
+79894,17334,45896,21631,21903,27509,41937
+79895,16439,51808,1718,63267
+79896,14611,43060
+79897,23266,68975,71752,52350,36617
+79898,7730,32374,10343
+79899,13731,39740
+79900,76298
+79901,81627,66347,11238,69120
+79902,33848,5414,71280,32369,19631,71850,69751,8573,23211
+79903,2621
+79904,47016,41453,23943
+79905,76024,59585,28140,51182,45219,18083
+79906,11637,39799
+79907,11760,7221,80450
+79908,27885
+79909,68605,60770
+79910,58737,20118
+79911,6777,56212,56910,17640,81465,72674
+79912,80542,38552
+79913,67724,15395,30430,12920
+79914,29598,38656,2553,68612
+79915,47157,53468,30812,1872
+79916,25983,1033,56863,60220,43541
+79917,17326,68878,1803,62844
+79918,27154,65861,9619,43951
+79919,5075,8508
+79920,51629
+79921,7080,68205,68074
+79922,27182,64784,40021,54298,81871
+79923,4597,5642,72270,74111,80731,2711,1455,67448
+79924,62910,50685,61982
+79925,23559,71730,57519
+79926,22492,6345,78107,64079,20765
+79927,28816,62883,4997,77229,31570,48327,53666
+79928,8439,78510,48153,52076
+79929,54414,33227
+79930,23760,2005,1213,66758,62282
+79931,30728,1002,70085
+79932,11844
+79933,48526,81245,59628,11704,27263,65632
+79934,25544
+79935,11431,43469,81617,56821,63259,1972
+79936,38801
+79937,40711,68540,56633,23017
+79938,65794,4616,48326,77836,44445,53183,74665
+79939,45923,78240,48694,39419,30838,70996,9946
+79940,46692,32796,51264,29797
+79941,57224
+79942,79726
+79943,81599,61992,8523,51570
+79944,35400,13152,81698,73673
+79945,3784
+79946,11740,51033
+79947,74277,69476
+79948,74604,27739
+79949,9579,63326,81365,41565,74163
+79950,31361,61041,74801
+79951,24120,6452
+79952,70654
+79953,46039,9138,6876,45313,16890,20759
+79954,4676,63597,30956
+79955,71309,21340
+79956,56485,11709
+79957,30158,57406,28139,9181,41287,17089
+79958,77006,8448,77699,76870,29493,36239,78073
+79959,45977,25147,68669,14679,17299,45634,76926,22049,12669
+79960,4301,22165,1812,4150
+79961,74697,3658
+79962,46968,33922,43066,39024
+79963,46480,36697,80895,3791
+79964,41304,16015,42767
+79965,35052,45606
+79966,47143
+79967,63833,7461,30630,3139,41792
+79968,33205,43967,30857,62155,10848
+79969,43549,66028,63462
+79970,834,26379,46086,9887,72380,37780
+79971,56584,66966
+79972,77300,28066,53070,20415
+79973,73211,62358,4286
+79974,42543,23496,52369,58569
+79975,24665,40171,75325,75836,64939
+79976,54983,41692,65425,69525
+79977,76097,28606,589,77716
+79978,49069,42372,23558,10528,62406,9819,31252
+79979,52047,37240,22800,18727,77615
+79980,7134,73041,50490,27984,289,875
+79981,49271,74687,23758
+79982,41581,32465
+79983,14466,69612,72180,45087
+79984,18616,78428
+79985,38089,8841,34540,14411,41291,14320
+79986,29603,14758,43547
+79987,67407,25919,42103,14120
+79988,28713
+79989,37348,19364
+79990,16107,26527
+79991,60062
+79992,68594,73872
+79993,58868,10807,1480,5453
+79994,75695,19487,8166,16612,51351,69723,2674
+79995,51720,35444,39741,5805,51043,70628,44532,2751,62500
+79996,72297,31361,35564,23585
+79997,6637,64487
+79998,50787,36708
+79999,26038,3631,1317,51314
+80000,47720,6111,76174,64740,61064
+80001,43082,19806,42012,77848,24348
+80002,26042
+80003,25616,23067,64734,26124,34378,20965,7330
+80004,54305,4249,64326,9850,32319
+80005,26840
+80006,77959,57919,68462
+80007,7601,57368,58225,82046,60287
+80008,27245,35970
+80009,56810,43140,60683,19612,75404,52398,38042,27169,49648
+80010,57287,76212,15628,76019
+80011,47583,19243
+80012,62997,62142
+80013,33558,15357,14565,26361
+80014,22398,65665,68339
+80015,66281,1284
+80016,23573
+80017,20980,24212
+80018,13238,50528,13226,18576,72182,33635
+80019,3398,17115
+80020,67076,32935,42862,18249
+80021,50574,45624
+80022,36317,26075
+80023,7169,41226
+80024,8641
+80025,46406
+80026,27139,51367,36257
+80027,4763,39422,7057,28947,43815
+80028,73524,48495,28004,64929
+80029,4125,32301,77307
+80030,19931,45386,79979,2817,38437,77403
+80031,12372,61989,37280,48031,45684,79650,63540
+80032,34576,9717,10555,2424,31580
+80033,52631,15716,34089,45505,60264,26456,968,58694,68366,77563
+80034,37591,45622,78972
+80035,15865
+80036,63536,3463,52258,75261
+80037,60384,3794,29456,7257
+80038,26706,65697,82136,71974
+80039,43626,14811,53214
+80040,78076
+80041,9152,69492,39964,43396,54574
+80042,76529,51448,17693,12370,7578
+80043,44307,72020,40324,31049,69684,59026,80977,54121
+80044,65777,28334
+80045,68301
+80046,43320,78226,72589
+80047,50566,48007
+80048,38557
+80049,40617,76280,60384
+80050,10662,8622,44129
+80051,73635,6234,49366
+80052,67049,60835,59244,25714,43237,15373
+80053,29024
+80054,29416
+80055,51638,61727,11780
+80056,14124,45581,4344,70292,46100,52541,76600,11430,66355
+80057,57153
+80058,64404,3404,31993,72947,54849
+80059,49786,19994,46215,21355,74510,36270,12424
+80060,40321,81003,61214,1732,20349,37238,5559,12722,50117,9126
+80061,61523,1252,42705,44169,10232
+80062,81903
+80063,64637,59032
+80064,62801,3883,50424,81768,22108,40125
+80065,28833,3822,17821,61191,56881
+80066,25472,34665,47870,6238,64907
+80067,45369,81754,68657,28197
+80068,29065,57458,69483,8545
+80069,12981,53715,52921,79817,30526
+80070,53916
+80071,73726,79310,54029
+80072,62849,75158,10758,6996
+80073,37356
+80074,54048
+80075,81998,29810,59584
+80076,62261,53443,47489
+80077,55533
+80078,14429,16957,7770
+80079,65800,9167,5837
+80080,39358,8803
+80081,33232,39727,56762,61713,60628
+80082,37459
+80083,26392,51320,61045,20782
+80084,28658,22667,24228,77773,8593,17408
+80085,157,63040,442,51744,1253
+80086,57719,68132,1188,81149,52462,78664
+80087,25613,21197,14696,29327,7463,74612,8733,51901,5371
+80088,79004,17022,39556,43504
+80089,44321,12185,13253
+80090,4650,29730,80393
+80091,49211,60370,28969,273
+80092,12991,64958,50267,15731,50162,75046
+80093,44606,61656,21084,21276,29729,27883,81763,9576
+80094,5475,1297,59686,33766
+80095,67763,37298,79027
+80096,40981,20433
+80097,49639,9393,16073,35854,55062,9066
+80098,16256,20513
+80099,50477,64000
+80100,29538,6084
+80101,78225
+80102,52547,54292
+80103,79733,57915,46453,82060,50751,2962
+80104,17959,34764,2937,76576
+80105,5081,39500,56240
+80106,44806
+80107,64555,72165,73423,41197,1987
+80108,72631,77316
+80109,4184,66541,22988
+80110,58275
+80111,41783,63473,18652,68182
+80112,48773,39502,10599
+80113,30792,40676,56515,67171
+80114,72031,33181,62539,55395,79184,82033
+80115,47988,11135
+80116,1123,8316,35657,30630,50090,76323
+80117,5072,46821
+80118,53934,77851
+80119,41937,22888,60541
+80120,15874,55834
+80121,43126,17376
+80122,26792
+80123,52502
+80124,79296,52898,2179,18248
+80125,36930,36075,38801
+80126,48822,77253,4843,67402,39174,19306
+80127,71705,51826,3915,44003
+80128,71042
+80129,77362
+80130,19167,56911
+80131,73588,62251
+80132,25614,8247,35997,49945
+80133,11351,65697,52360
+80134,18806,66149,41627,25968,11595,81119
+80135,25673,27411,5433,67859,63546
+80136,10844,62163,16117
+80137,18518,46649,28759
+80138,54503,37658,7924,55526,21829,77848
+80139,80349,21411
+80140,34289,2491,40038,45928,4390
+80141,35678,52069,82041,72821,5503,65841,9111,60942,2213,3135,18444
+80142,72519,4302,7933,53931,49506,36638,16243,53641,29010
+80143,12417,10288
+80144,1847
+80145,77847,49214,38466,40728
+80146,56630,28780,77189
+80147,75271,62775,29199,35356
+80148,65445,40086
+80149,16106,64568,39569,32945
+80150,11105,17627
+80151,72441,52261
+80152,65717,42249
+80153,54963,60126,4919
+80154,73638,66584,20295
+80155,27031,67176,59756
+80156,32209
+80157,38760,80213,36397,9186,65090
+80158,80890,40200,36000,23042,31945,46079
+80159,80670
+80160,58249
+80161,64924,20765,76871
+80162,15638
+80163,15397,65937
+80164,72379
+80165,69868,60865,29008
+80166,27371
+80167,10881
+80168,69284,78936,37100,2640,31658
+80169,67431,3626,72136,69115
+80170,57405,27492,6144,31898,75942,67138,80548,31924
+80171,11839,36911
+80172,53571,22050
+80173,71932,31995,47302,21340,39296
+80174,19188,52404,68127,3694,73455,33784,23463,68764,37485,447,62293,16934,36664
+80175,13629,54698,31311,47541
+80176,25907,81869,1912,24387,80461
+80177,24652
+80178,41423
+80179,57988,23003,82167
+80180,72589,48840,67249,75966,28251,52891,73054
+80181,58108,77506,6269
+80182,36138,12810,26009,26450,13004,40955
+80183,2648,22549,78111,19187,1151,77437,67290
+80184,29369,33344,75730,13336,71375
+80185,7392,58876,24974,33555,79721,42045,58440
+80186,48565,5905,22048,10467,76655,54021
+80187,12375,39396,49199
+80188,76576,13008
+80189,40961,41585,66642,43775,38931
+80190,41031,6682,27120
+80191,1995,41713
+80192,78998,15462
+80193,66608,67789,60471,75607,39355,30375
+80194,58324,62360,48502,47626,14090,53520
+80195,34494,79178,45175,8479,18091
+80196,4533,41467,37308,74132
+80197,81587,13253,29383,5418,50642
+80198,49114,75034,64309
+80199,74303,73674,12115,41525,15044,33363,27033,16984,51499
+80200,77066,34857,72665,55538,81,68581,81237,45271
+80201,53444,64361,36517
+80202,24323,78529,45619
+80203,56014,3530,62661,2149,37420
+80204,47311,8263,75253,59146,44414,71458,69276
+80205,36636,69678,32554
+80206,36344,66735
+80207,64993,48788
+80208,33249,23061
+80209,72381,70630
+80210,70032,29689
+80211,49653,76702,35602,69906,64033
+80212,76989,33128,9963,60824
+80213,74810,10895
+80214,41073,65862
+80215,50587,56874,46339,63034,16708,27528,20298
+80216,11416,35829
+80217,45761,20366,27705,34484,77658,79816
+80218,54311,46676,59883,1840
+80219,28674,29111,19243,30066,20284
+80220,14588,33943,38074,72897,63866,61176,51602,79555
+80221,66760,5157,32535,5970,47055
+80222,69263,68737,67778,17925
+80223,26635,30423
+80224,33092
+80225,3637,5008,81287,8585,55420,36527,47094
+80226,29435,46515,63541,80122,59529,60625
+80227,5246,46968,32853,34472,11492,37239,60947,71627,2364
+80228,22085,61226,3194
+80229,4343,26652,49717,14433
+80230,31471,45512
+80231,53189,71184,10851,75451,18733
+80232,56835
+80233,21613,24555,45033,68868
+80234,19866,66536,66938,38710
+80235,38480,68209,36280
+80236,16817
+80237,6650,46630,43031
+80238,300,2793
+80239,12441,78550,63898,16944,31708
+80240,25690,11063,80578,13210,63673
+80241,13347,8112,47845,81583
+80242,35224,29710,31064,30330
+80243,12086,33835
+80244,66610,22592,45929,75259,2008,33373,63117,13956,50513
+80245,23457,56749,55326,12318,11707,7028,44466
+80246,54335,45297,66684,3740,39855,1337
+80247,30724,38172
+80248,64273,54948
+80249,72793,71724,7765,81063,37082,69997,66861,70148,79799,44213
+80250,12789,50358
+80251,78628,2688,64184,76099
+80252,46514,45648,56419,22019,51256
+80253,20436,15987,64573
+80254,16452,75452,53705,72662,45115
+80255,62890,28773
+80256,22170
+80257,18478,50272,13726,53149,21194
+80258,45959
+80259,1732,51954,45958
+80260,3711,8281,56759
+80261,17407
+80262,37268
+80263,78673,77275,52047,56647,47795,21261,10542,77906
+80264,37016,7278,24654
+80265,22427,5862,53049,47604,61166
+80266,1954,42034,59109,70642,68480
+80267,34974,67655,38079,67085,41624,57243,43319,71882
+80268,71268,23125,10782
+80269,16137,42125,31218
+80270,61078,73356,55948,24621,48773,40952
+80271,47165,75129,44763
+80272,69247,41982,71119
+80273,32222,7378,72255,36806,62442
+80274,81591,64433,61498,17203
+80275,28311,61766,80822
+80276,34495,80037,76790,8434
+80277,29172,25451,63737
+80278,26807,39604,18230,68697,28196,69544,48655
+80279,66219
+80280,72808
+80281,46866
+80282,25623,8913
+80283,23817
+80284,80038,66002,76615
+80285,52140,10483,76367,64470,5849,55244,50501
+80286,2420
+80287,62510,26877,70441
+80288,56951,55947,68107
+80289,60371,50757
+80290,53639,23943
+80291,7169,4025,68105
+80292,39750,76727
+80293,63789,69268
+80294,2485,43131,62616,29834,79232,32262,56988
+80295,18929,73975,19330
+80296,41653,9103,78993,26572,78218,1291,8355
+80297,70331,31156,20881
+80298,42666,13605
+80299,7446,20785,55485,53627,64677,20228
+80300,6957,61034,14481,39480,51180,16580
+80301,62497,65265,65464
+80302,27366,6651,12574,27576,58987
+80303,30201,44900
+80304,39763
+80305,10195,29789
+80306,56703,69695
+80307,22786
+80308,76600
+80309,73083,65749,38391,31334
+80310,73414,62214
+80311,8032,50942,44517
+80312,36249,66458,72727
+80313,34027,41728,22742,31012
+80314,8180,62712,33643,56602
+80315,7794,55959,66164,26560
+80316,50891,71359,9874,42162
+80317,41707,4947,68151,18773,15955
+80318,1891,52029
+80319,38016,69143,31218
+80320,22353,43165
+80321,9999,42660
+80322,6721,53490
+80323,44051,76158,40021,32546,44880,78268
+80324,50627,45219,33130,65491
+80325,21033,5500,46788
+80326,61982,5472,66449,14579
+80327,23198,34005,33835
+80328,5718,11562,13977,67349,42292,32938
+80329,82109,70084,59575,20233,31239,64229
+80330,11580
+80331,34501,77211,43341
+80332,64381
+80333,73768,5725,428,65667,37067
+80334,79295,12324
+80335,62514
+80336,13674
+80337,76146
+80338,75688
+80339,32889,20958
+80340,46422,40054,9628
+80341,78261,41714,54673,45959
+80342,74167,55527,40365
+80343,2468,42491,25593
+80344,80842,27625,51796
+80345,45566,890,10087
+80346,66956,10397,73296
+80347,56473,82076,38444,36275,44598
+80348,67094,79835,61779,76832,31500,78921
+80349,20352
+80350,77094,24445,15152,26750
+80351,34285,48182,68539,76481,40057
+80352,69275,69868,7419,71136
+80353,33722
+80354,43397,79831
+80355,63281,6644,33485,33774
+80356,31566,24035,82079,40592,13532,69232,57217
+80357,26479,10390
+80358,1039,78540,42008,15490,8119,25626
+80359,18827
+80360,31015,34686
+80361,22711,12170,81836
+80362,46550,18746,31613,19976
+80363,21342,79651
+80364,25212,55347,64629,37634
+80365,19367,8702,46328,80608,18163,58641
+80366,21601,78681,49622
+80367,70133,6648,31056,72868
+80368,66173
+80369,4686,44573,7494,62358
+80370,26108
+80371,63244,51221,450,46277
+80372,23371
+80373,48937,27648,5854
+80374,23827,5465,51306,70127,27613,21236,8231
+80375,64921
+80376,45681,36682,47220,2365,49593,38632
+80377,72972,51887
+80378,51020,50269,78498
+80379,11703,39911,37504
+80380,18710
+80381,15235,58383,31623,45976
+80382,22256,42604,62277,24425,6559,81747,59322
+80383,65519,45030,77196
+80384,38293
+80385,59687,53758,76936,69319,76446
+80386,55738,44302,36127,65168,20406,81458,59435,16897,76651,77674
+80387,47988
+80388,28317
+80389,71315,28946,61554
+80390,55908,19132,38921
+80391,19123,49298,15872
+80392,29774
+80393,4553,21575
+80394,49489,47053,16713,13730
+80395,4869
+80396,10119,77185,78256,19073
+80397,239,24477,44183,60293,58263
+80398,16198
+80399,75668,58205,79982,51630,27058
+80400,58840
+80401,16430
+80402,26597,21970,3185,35937,76906,55088,70619
+80403,47971,17255,45228,40212,7773
+80404,77585,21639,78716,35220,988,59491
+80405,22685,49647,18895,769,36222
+80406,11948,74326,68220,8752,65470,11747
+80407,5470,16186,13931,38245,23224,74950,27931,24123
+80408,80679,44163
+80409,22256
+80410,12895,28836
+80411,51306,66485,9344,11511,68264
+80412,57542,48569,6989,68173,21676
+80413,56727,49982
+80414,7883,57201,55952
+80415,14029,41870
+80416,24625,30643,71035
+80417,74916
+80418,64551,30214
+80419,77138,39575,13443,75115,74952,4481,5259
+80420,12426,76172,56425,27895
+80421,3840
+80422,34770,19900,80080
+80423,67638,30836,32892
+80424,45917,78391,72410
+80425,21310
+80426,38348,63994,47651,28847,16773
+80427,53774,65125,37332
+80428,60521,74225
+80429,76986,5123,16957,63915,71604
+80430,72791,36365,16761
+80431,35222,13254,66990,36938
+80432,30760,20675,27700
+80433,41729,44195
+80434,45006
+80435,21504
+80436,65436,74652,5731
+80437,14231,37321,110,81944,32946,6093,23566
+80438,68682,27294,61757,54768,16886,14457
+80439,43129,22917
+80440,8645,16292,13303
+80441,55483
+80442,26221,19181,28512,77217,14083,33564
+80443,67168,22127,63697,50217,77284
+80444,80960,31981,16116,39466,61729,26950,15208,62670,61791
+80445,53279,48977,35598,55861,12700,80666
+80446,60777,47144,69682,24376,48173,60202
+80447,3383,32053,40966,57228,24702,55998,24536
+80448,53702,48655,103,17725
+80449,62694
+80450,59584,24715
+80451,46913,64045,26470,16748,52560
+80452,76809,15888
+80453,8235
+80454,31217,45329,22852,1271,39622,6634
+80455,52254,74991
+80456,22453,16032,13822,49197,78703
+80457,12115
+80458,64793
+80459,35238,8924,18749,16538,42793,12744
+80460,14650
+80461,81820,23296,16771,16707,75100
+80462,73243,2090,76597,21126,21747,3884
+80463,15235,57648,48119,26852,51080,29103,44174
+80464,69832,57930
+80465,78273
+80466,37609,71073,17402
+80467,68400,10708
+80468,10899,40083,5116,52362,53999
+80469,74535,11028,5429,38305,60195
+80470,11804,23139,58127
+80471,67670
+80472,37751,28836,30919,37250,41509,36201
+80473,51630,66371,47429,33436,71296,59256
+80474,24267,45552
+80475,52944,29353
+80476,79589,18516,57106,35785,2613,49266,38992
+80477,40714,47050
+80478,6035,43420
+80479,73773,26926,66504
+80480,54927,33759
+80481,53084,49103,38527,51755
+80482,72034,2404
+80483,15395,15833
+80484,11453,19119,45187,27936,16907,64832,27951,57822
+80485,46732,44393
+80486,15182,41846
+80487,81777,6686,80301,72499,49123,32425
+80488,58449,56633,26225,2651,79351
+80489,60738,1674,21702,28777,78943
+80490,66712
+80491,73224,34005,21264,78838,52466
+80492,58966,5880
+80493,1820,60955,73210,61041
+80494,45436,26964,67373,71222,6188,12259,74299,60098,19279
+80495,51381,58193,74647,66077
+80496,61081,8611,52931,66088
+80497,7922,47313,21634,34260,36970
+80498,20995
+80499,66229,17301,53644,20283,50472,6821,14460
+80500,5863
+80501,61044,67626,57211
+80502,45531,13052,11430,32046,9477
+80503,21571,74514,69722
+80504,54319,60629,40117,57748,73339,33087,47181
+80505,44746
+80506,66696,79281,34959,7959,12675
+80507,18777
+80508,5591,27104,17187
+80509,36200,70061,79268,45591
+80510,4920,52057,45545
+80511,39957
+80512,43769,41775,40211,74302,81454,68066
+80513,38579,40809,47567,24478
+80514,23018
+80515,81389,31166,40090,42949,12330
+80516,40057,58148,29792,62143
+80517,25574,18898,62384
+80518,16586,33653,66450
+80519,74275,43753,23872
+80520,77061,29104,26150,69953,8649
+80521,49914
+80522,59848
+80523,47199,23217
+80524,20039,1741,36835,23512
+80525,51877
+80526,55460,52285,77794
+80527,32481,12159,81803,38165,75740
+80528,60397,19079,72100,31283,26997
+80529,57828,59427,53932,6777,40016
+80530,45492,72029,42914,44960
+80531,76453,63092,43119,68210,24244,34223
+80532,18250,42585
+80533,73447,14878
+80534,7664,40100,80346
+80535,59286
+80536,47051,79982,70932,81957,67351,72455,76363
+80537,61019,11922
+80538,42967,7132,70866,69318,46551
+80539,17596,25730
+80540,28163,14100,71982
+80541,77915
+80542,71689
+80543,70438,32696,36745,71578,12737,77545,56279
+80544,41457,66153,55080,71038,20691
+80545,1079,48221,77697
+80546,56037,77923,43065,33698
+80547,17739,53456,61999,30262,49136,10723
+80548,52077,7779
+80549,12085
+80550,16645,22975,24079,59370,39967,17240
+80551,2505,59232,4333,69282,78076,61000,59754
+80552,20203
+80553,22684,57430,56851,68789
+80554,46470
+80555,36587,24969,60831
+80556,41061
+80557,66997,55468,58148,12099
+80558,49431,19669,10852,22663,41449
+80559,36971,55216,31562,7039
+80560,41391,36775,32444
+80561,15591,38129
+80562,21060
+80563,19296,75040,65658,106
+80564,52991,18831,78339,39020,1844,11320,35559,28911,59657,7000,29948
+80565,3990,5246,35110,48723,9130
+80566,42538,34107,42379
+80567,76397,9408
+80568,9842,10422,32457,8693
+80569,79209,17482,8002,3134
+80570,55259
+80571,59112,434,3845,54583,50136,69335,34539
+80572,56376,50522
+80573,73018
+80574,32722,12698,47232,44138,8226,30260,58098
+80575,35808,74884
+80576,69315,14076,47522,25755
+80577,5964,13294,12539,43359,52148
+80578,34827
+80579,67309,38266,6242,38899,72647,49042,16187
+80580,32175,24398,26675,36948,10581,69199,13144,66274
+80581,22269,72595,44935,7784,62332
+80582,2729,40875,60374,68478,41182
+80583,80074
+80584,18535,34481,40382,54003,59208
+80585,44866,45976,3249,72598,13872
+80586,490,18631,60254,7557,78197,38261,49354
+80587,70506,13540,23344,40929,48257,71805
+80588,41064,33025,71906
+80589,37211,65582,64388,56552,72532,26973
+80590,50306,76396,22427
+80591,28938
+80592,67668,55231,64344,76225,5820,24856
+80593,77814
+80594,61633
+80595,75786,40398,212,23820
+80596,2604
+80597,66,81228,3104,39874
+80598,65228,28276
+80599,8447,38019
+80600,597,56179,8637,67476,12534
+80601,70042,78279,69450,81647,36320
+80602,9847,32189,28544
+80603,59031
+80604,59431,13613,25768,64404
+80605,9273,30144,73887,64381
+80606,80845,63955,37869,77529,67238
+80607,61001,38162,76238,55379
+80608,65624
+80609,56900,79535,2710
+80610,8388,29803
+80611,48347,52751,51256,76183,46704,42677
+80612,31689,75658,65935,77817,77148,36008
+80613,44995,24771,3790,78198,81840,40439,12849,16688,61403
+80614,15111,63328,12645
+80615,58591,74508,55336
+80616,10410,56875,14099,29358,16397
+80617,37481,77259,45187
+80618,52924,58446,7833,40045,30877
+80619,50039,15117,37082,2781
+80620,36576,9448,8852,55738,28050
+80621,80449,37361,40188
+80622,81632,6373,16280,64094,42747,24336,14585,79886
+80623,2064,50978,7363
+80624,79517
+80625,74102,38806,3020,81271,957
+80626,76301,26530,53184,53605,1772,37563,37405,77457,60869,54369,15270
+80627,50528,4758,35716,58974,17274,32368
+80628,11972,61445,53236,78965,9656
+80629,69757,54927,221
+80630,78598,79540,32612
+80631,16131,6699,60431,3700,54990
+80632,8903,46202,69777,66446
+80633,33944,4564
+80634,44406,76273
+80635,59104,11506,51011,79706,29349
+80636,51098
+80637,79237,5502,69085
+80638,67226,34985
+80639,58973,17010,65094
+80640,26852,13145,16272,77095,51848,76889,45063
+80641,2027,75820,53256,9895,49843,7887,1567
+80642,79071
+80643,2534,50013,52908,38761,6643,30630
+80644,66050,57992,40396
+80645,21485
+80646,50397,30146
+80647,42005
+80648,44109
+80649,58127,54136,81231,10960
+80650,58401,48520,36251
+80651,49510,55343,52147
+80652,58007,33605,60581,58701
+80653,35131,46453,3691,4750
+80654,22336,78691,45899,24202,26325
+80655,79983,82173,46783,68545
+80656,51553
+80657,65190,8461,71299,30648,40207,61441
+80658,48014,40187,47484
+80659,29374,8212,57160
+80660,50522,72467
+80661,36765
+80662,81577,78842,24424,59326
+80663,36824,30901,40477,77222,69428
+80664,18506,82170,50792,25844
+80665,51454,21682,51584
+80666,21520
+80667,15530,77362,58768,56179,52805,17988
+80668,59164,34832
+80669,15976,80847
+80670,69694
+80671,68971,49602
+80672,57485
+80673,46919,23162,60013,16853,82083,77280
+80674,60953,75235,27053,18005,23811,16140
+80675,58073,51728,74233,75871,33260
+80676,44725,14190,39524,77749,81048
+80677,18611,66042,521
+80678,28269,68262,36449
+80679,1609,25057
+80680,34063,67803,38912,62720,51344,7714,72560,5404
+80681,50889,46094,32046,2761
+80682,40777
+80683,46492,62533
+80684,39515,45513
+80685,38662,11504
+80686,28673
+80687,5766,26539,73588,79593,17523
+80688,3312,54311
+80689,67709,13731
+80690,4338,37045,52100,1664,46144
+80691,58048,70430,24573,55728,50115
+80692,2444,75406,51603
+80693,48222,52404,27097,17184,76338,6080,12337
+80694,47348,27825
+80695,73089,5037,48689
+80696,30470,6087,55224,989,6281
+80697,51108,6876,39741,47205,45397
+80698,11400,60633,52204,18311
+80699,70948,21798
+80700,46905
+80701,81186
+80702,30535,24890,67187,35690,43343
+80703,74705,53976,30166,9924
+80704,38014,78522
+80705,98
+80706,71759,16267,17941,48129,80703,33097
+80707,42489,66628
+80708,70020,29673
+80709,80038,78002,29088,50747
+80710,20041,24433,56346,58878,60838
+80711,7075,26929,38372,39365,410,34829,48889,65507
+80712,10284,76236,48727,75389,9265,20261,19517
+80713,49853,54586,58360
+80714,43174,50714,35473,51035,36825,23073
+80715,66446,6986,57073,68062
+80716,65389,78963,36084,65915
+80717,76598,35970,52895
+80718,21110,38624,63652,674,6169,79492
+80719,4240,19445,43610,45292,11040
+80720,51085
+80721,79714
+80722,70609,80559,69950
+80723,21320,40058,81494,16168,65253,64185,21804,40761
+80724,49622
+80725,79649,81094,58230,48480,13722,25272,44138
+80726,10654,40905
+80727,41293
+80728,80871,72058,64863
+80729,1504,43088,29802,81749,31321
+80730,41156,60829,30523,9498,73243,63856,45250,56780
+80731,78728,32232,57447,46890,471,9506
+80732,5444,77196,62132,75988
+80733,36779,61845,76768,56333,70761,40012
+80734,45763,57422,67249,65315,42870,31398
+80735,50424,22739,22423,67550,34722
+80736,45651,46514,58395
+80737,51898,70769,46154
+80738,5553,13061,11266,57528,28756
+80739,15898,6821,50968,46374
+80740,57184,32699,43892,31497,4857,26812
+80741,99
+80742,70003,54450,23939
+80743,22344,48282,8887,39950,30023
+80744,26694,40621,64537,36926,62891,59373,68502,76008
+80745,47966
+80746,75980,65328,59424,74296
+80747,74514
+80748,40655,71811,9501,41598
+80749,1655,18059,16010
+80750,49828,21646,55157,69159,70903,32872
+80751,54643,8339,59959,15118,36457,26554,73125
+80752,13537
+80753,17538,24366,73832,25821
+80754,72851,38387,42502,10647,76920
+80755,8741,55363
+80756,37200,67333,17272
+80757,44870,55166
+80758,71717,33128,65773
+80759,9516,73180,6640,21996,43111,684,59259
+80760,7150
+80761,37731,65288,2634
+80762,63783,48222,10629,40125,56190
+80763,66911
+80764,28186,44506,75956,62579,5425
+80765,71550,8203,60235,4492,38342,61057,36138,73968
+80766,22117,57386,56638
+80767,51330,72272,27639,22792,33951,59989,67201,29597,58472
+80768,77572,61653,56371
+80769,69815,32541,73081,70577,40314,15618,39787,5143
+80770,74825,9039,66518,67847,72836,66173,44560,28557
+80771,64692,21553,77434,52713,3653,73326
+80772,60818,74398,47945
+80773,68260,4603,17755
+80774,62,60952,3133,26243
+80775,32688,47810,5907
+80776,24563,3993,58478,49394,64248,27588,62390
+80777,10105
+80778,46618,64589,20102
+80779,36351
+80780,36932,23158,54930,73106,4061
+80781,7931,44940,16792
+80782,20284
+80783,71783,22292,37201
+80784,42814,4268,41094,22238,1542
+80785,19512,32374,40253
+80786,76954,43018,17000,24899
+80787,49950,2809,31995
+80788,56966,26223
+80789,46019,49660
+80790,2261,21448,12887,80228
+80791,71292,21284,69933,9238,22628,35624,5527
+80792,38356
+80793,21252,36836,45157,39789,14790,52883,17942
+80794,8588,5202,60770,29901,10941,43304,65096,55085,52550
+80795,39429,36372,19154,53173,81970
+80796,42078,281,26272,77598,27908,14981,50648
+80797,19132
+80798,64641
+80799,76926,2529
+80800,67005,20800,39317,197
+80801,14445,17428,55052,17062,78294
+80802,52479,31179
+80803,40767,43434,76043
+80804,3239,70463,56872
+80805,10186,34924
+80806,8449,51260,16947,54237,32150
+80807,54122,60598
+80808,49579,12943,1205,62276,53110,71063,75000,79562
+80809,50261,2599,14633,4783
+80810,4331,48296
+80811,32216
+80812,68184,72869,18616,48664,32279,75253,55197
+80813,76292,54607
+80814,69057,35263
+80815,72399,77548,2351,10834
+80816,12898,59616,15160,63881,50240,26187
+80817,22370,20313
+80818,24333,69937,77631
+80819,49943,65376,3076
+80820,75126,13567,22537,42949,64044,636
+80821,10706,80440,1388,41536
+80822,58131,4003,929
+80823,20779,70962,5439,18451,72848,53115
+80824,46503,13020
+80825,66122,9951,71386,15177,30449,40505
+80826,33047,72773
+80827,79412,75637,54574,15484
+80828,76510,23618,71944,7259,8158
+80829,49025,55019,34882
+80830,69913,8939
+80831,61280,76550,69018
+80832,80175,7732,24610,39932,69343
+80833,17295
+80834,46417,64157,61615,6161
+80835,61208,80797,16212,30065,13212,43196,8406
+80836,65699,24594,42451
+80837,27717,68250,77916,9951,47939,4469,16677,60867
+80838,11859,79850,41293,17143,14920
+80839,7627
+80840,1433,23266,58615,30719,69807,52372,65372,30353
+80841,3781,10107,59110,52033,6509
+80842,10515,21011
+80843,78370,46318,52403
+80844,7141,63031,17563,58446,6223,57812,80818,56480
+80845,26812
+80846,36611,67071
+80847,35152
+80848,80918,64669,50900,66315,69269,32058,9955,48234
+80849,53450,78026,20870,59571
+80850,49544
+80851,32935,1944,64279,65035,69938,59814,21732
+80852,76529,58266,54316
+80853,59655,29541,61515
+80854,48885,32097,12350,11941,12088,16377,78727
+80855,33925,66517
+80856,40104,5647
+80857,20780
+80858,56982,81402,72327,12774,13016
+80859,22983,27022
+80860,80567,1653,72523,7509,26555
+80861,52586,70311,25924,79560,63306
+80862,18553
+80863,14444,24632,41346,13260,14680,68043,19860,28129
+80864,62370
+80865,20356,36039,50209,41085
+80866,63481,72249,60912,69067,6899
+80867,53458,23014,27383,11000,31329
+80868,50940,69713,65793,51123,4336
+80869,29546,54635,68453
+80870,73661,69187,41959
+80871,80164,36576,1205,76316
+80872,8746,58984,40044,16766
+80873,6945,73324,78990,19579,19232
+80874,68074
+80875,69033,3052,63103,579,5542,56576
+80876,15635,29453,38291,1349,10655,47620
+80877,64991
+80878,37396,48465,2712
+80879,17876,37730,35775,505,74588,65652
+80880,61404,47099,274,71954,32302,58106,78303
+80881,64868
+80882,67177,41380,3837,55970,32061,28188,48421,52563,73287
+80883,67235
+80884,67797
+80885,5238,7746,65
+80886,283,66628
+80887,73492,53796
+80888,58801,41497
+80889,8236,66580,24582
+80890,49260,46886
+80891,74845,23573
+80892,49188,69753,72322,66444
+80893,26809,11799,42544,12648,19364,72956
+80894,738,74492,41600,60341,8647,12651,56529,37574,21382
+80895,59909,65108
+80896,30224,58863,31056,71354
+80897,74921,44783,62400,58711
+80898,21228,63004,53072
+80899,56422
+80900,68129,31042,21435,15113
+80901,68636,9492,64211
+80902,1524
+80903,14445,77889
+80904,37053,45406
+80905,56482,59523,50421,61994,79642
+80906,15174,34101,2337
+80907,50626,28843
+80908,7882,48616,20999,81863
+80909,294
+80910,31646,68670,1375,28677
+80911,81468,77580,52482
+80912,48276,34504,26860
+80913,24793,35099,73017
+80914,17809,46690,11638
+80915,57601,12408,61447,3637,9122,47509
+80916,46140
+80917,54791,26794,11244,8582,63728,75627
+80918,66468,54618,25010,61246,46707
+80919,3440,17319,60045
+80920,33331,27949,67534,73571,68807,20591
+80921,73398,78043,15643,80770,1723
+80922,77061,57192,34678,7406,68112
+80923,11712,41302
+80924,21840,78800,35596,69595
+80925,79352
+80926,20314,24109,37894
+80927,16860
+80928,11861,7880,24274,53406
+80929,46238,44238,37144,28659,64014
+80930,7063,31755,55125,56092,80000
+80931,50093
+80932,53098,78126,76423,57530,17556
+80933,32423,23597,27338
+80934,56755,18493,67395,80949
+80935,15221,11661,34902,47052,15401,30665
+80936,5896
+80937,35727,74622,81096
+80938,26731
+80939,13243,24052,44088,57586
+80940,11905,25183
+80941,46643
+80942,76958,46941,76171,38204,73756
+80943,39388
+80944,18479,46994,9276,12092,53977
+80945,63639,7942
+80946,73748,27000,57210,59122,49853
+80947,3007,71762
+80948,80720,41367,20226,28989,76476,59030,13576,5301,50566,10030,71098
+80949,7537
+80950,34931
+80951,59885,29764,42970
+80952,45593,23207,61163,53521,44923
+80953,70890,28639,68472,64019,66169,51957
+80954,81310,39444,9238
+80955,56531,8147,17109
+80956,7577,76314,55416
+80957,62197,37635
+80958,10671,68091,18098,32471,43845,50293
+80959,27855,73143
+80960,74901,52203,27225,79310,64561,58222
+80961,19724,72249,69230,49893,60437,48401
+80962,7065,776,2302,29787
+80963,39358,41995,23908,38,72513
+80964,53970,51085,73106,29690
+80965,49650
+80966,9851,43563,54062,42677
+80967,33944,31485,49829
+80968,66843,77310
+80969,77062
+80970,50289,52070,20829,56915,7482
+80971,11146,14565
+80972,24561,40224,28506,61815
+80973,30070,9303,72124
+80974,59818,35631,11342,44887
+80975,81186,54912,40048,59820,49368,55428
+80976,63975,32488
+80977,36749,897,36249,45364,3335
+80978,17501,13525,35673,77472
+80979,13089,49127,67200,53089,39418,41186
+80980,60512,9152,3898,77468,57253,77613
+80981,54471,49645
+80982,52800
+80983,36087,51418,28068,18943,31612
+80984,44997,60944
+80985,42529,10539
+80986,51989,45010,23173,56617,69492,31682,29832,36091
+80987,63453,13031,65800,81403
+80988,30710,78810,21976,77338
+80989,9466,14724,70732,32354,15814,76902,39323,52387
+80990,41804,2561,64335,11545,49480,37889
+80991,78351
+80992,10484,72220,17975
+80993,21978
+80994,15436
+80995,41937,45552,3439,56364,50623
+80996,56692,52458,52994
+80997,8632,26460,35402,48091,33884,42652,72059,81354,7464
+80998,45583,36153,6045,29346,26029
+80999,23765,64875,37549,60642
+81000,72545,667
+81001,47040,35112
+81002,30403
+81003,63831,29435,60612,27464
+81004,75021,32406,1320,2801,69953,75733,18849,48369,15522
+81005,28357,55089,55430
+81006,57130
+81007,30076,44907,51282,37658,49408,73369,31963,4635,25,72280,60715
+81008,45399,25262,46422,66689
+81009,56543,61655
+81010,14059,63742,69142,34161,32571,51337
+81011,20733,41159,73166
+81012,57985,38499,41951,38378,38301
+81013,73579,38218,30589
+81014,24964,46812,49678,60729,76471,58168
+81015,51488,38641,47965,14257,51798,27771
+81016,22861
+81017,38413,20018,51504
+81018,36639,55353,21954
+81019,39797,42270,29975,71044,60259,64556,61661,20159,59453,64497
+81020,79282,78037
+81021,19153
+81022,29275,48858,75475,38810,1764
+81023,30440,79218,30796,71195,56665
+81024,65829,32623,4607
+81025,47490,17393,58481,6840,9404,70534,2997,71263,5223
+81026,74852,47289,72118
+81027,79703,69766,68517,54638,58477
+81028,55058
+81029,14996,37857,67230,38646,15203,18121
+81030,66023,9689,42369
+81031,37872,26766,75654,75472
+81032,19458,31317,29418
+81033,18048,28946
+81034,11413,8914,19849,59291
+81035,28680,76141,65987,12656
+81036,12533
+81037,74050
+81038,70441,31026
+81039,57499,62870,61699,55627,80304,72468,51910
+81040,75138
+81041,80583,38840,43924,78638,34950
+81042,80032,19594,41378,28099,23512
+81043,29781
+81044,59356,41370,53934,38157,4111
+81045,77313,12468
+81046,64503
+81047,50860
+81048,31364,78498,15125,80320,61923
+81049,70565,48158
+81050,28171,61455,56936,18744
+81051,58523,64652,28527,43944
+81052,62551,55587,74288
+81053,845
+81054,81591,31958
+81055,44406,24682
+81056,9955,15873,80493
+81057,5181,2963,71032,22745
+81058,62198
+81059,28165
+81060,9611,11684
+81061,78004
+81062,52220,41149,54139,35812,59229,77319
+81063,63326
+81064,6574,66359,1637,37034,69991
+81065,1937
+81066,65258
+81067,75571,53979
+81068,38457,81771,75036,17094,10846
+81069,59103,38539,13208
+81070,76278
+81071,64180,48535,31015
+81072,50938,50484,19088,63499,78849
+81073,41969,56200,12619
+81074,10315,6926,71222
+81075,51375,48299,16295,50709
+81076,74021
+81077,35118,81891,50027,63356,12729,75676,7972
+81078,59784,46279,59098,24863,78727,38615,37682,50222,14907
+81079,39206,73693,79416,8797
+81080,63603
+81081,31615,17158,76976,40112
+81082,157,79073,10472
+81083,3305,34695,52219,6782
+81084,2758,81491,12120
+81085,31583,10518
+81086,77743,55848,47160
+81087,60481
+81088,63171,15758,20164,8340,58659
+81089,44664,54460,10119,74684,26942
+81090,34480,13446,60337,26807
+81091,57788
+81092,23462
+81093,12914,39889,62533,11169
+81094,79263,8730,70556
+81095,67476,45828
+81096,5547
+81097,18744,51584
+81098,23794,11241,41151,49972,8194,60077,16592,71961
+81099,50514,36421,43640,80800,10648,59975,1896,20545,40128,6830
+81100,5616
+81101,19232
+81102,28816,56663,79709,66515
+81103,11667,44703,41596,57662,20397,56440
+81104,8529,14117,56356,53429
+81105,53714,24732,12371
+81106,14313
+81107,16639,37094,46997,42097,21700,79249
+81108,44098,72440
+81109,16031
+81110,57550,53670,65031,68419
+81111,33825,48251
+81112,75561,49892,7825,19599,73509,47237,38798,36478
+81113,75493,29274,44484,78455,37620,33188
+81114,33191,8789,43565,36200,63909,22993,15658
+81115,10518
+81116,66930
+81117,50876,31133,56216,79530,11210
+81118,77446,44146,21348,79336,69226
+81119,19610
+81120,5238,63357
+81121,78552,14376,18401,65042
+81122,49007,35332,32573
+81123,55154,68559
+81124,1328
+81125,3712,71268,71175,51032,53876,72829,66701,23965
+81126,65634,79594,70179
+81127,2841
+81128,34094,20806,62843,41433
+81129,69853,39578,18702,76533,33687
+81130,66477,18961,46756,7291,67680,21875
+81131,69340
+81132,6200,32997,29620,20513,44312,33382
+81133,45667
+81134,40734,70991,44724
+81135,61075,39031,19852
+81136,66283,18339
+81137,35036,17108
+81138,31962
+81139,81305,79489,50811,45804,18578
+81140,18821,24301,53340,79072,7199,56259,50288,22343,14122,79674
+81141,6137,60520,8587,55780,75299,5312,5541,62232,79936,11355,19699
+81142,76519,19846,23797,57379,15837,65040,62724
+81143,77241,77394,42700
+81144,72634,497,35094,40059
+81145,66990,79847,51998
+81146,50212,27488,28060,57199
+81147,68747,44492,48331,80269
+81148,40971,61965,28510
+81149,28665
+81150,15675,8667,51511,37060,70123,48840,4523,14467
+81151,50881,15725
+81152,11285
+81153,29051,51603,64702
+81154,26852,56272,53663,68985,16198,80164
+81155,68072,8226,48812
+81156,10777
+81157,75135,11765,58062
+81158,80950
+81159,18809,63723,58111,52921,25680,14438,43511
+81160,14874,69252,23611,36465,81694
+81161,59366,39209,12226,64089
+81162,61577
+81163,51902,78629,21808
+81164,49622
+81165,9666,79237
+81166,65669,71833,12072,15823,13697
+81167,76033,66756,60705,70346,55244
+81168,58296
+81169,64357,37107,20050,57134
+81170,79520,4628,48385,13084
+81171,50093,33149,27454,28474,592
+81172,28974,71946,4436,56129,78208,80975,80454,34502
+81173,51772,10090,48055,26407,73790
+81174,19206,8631,35298,63784,25774,52787,46728,28109,24456
+81175,66006,78476,73021,19130,34959
+81176,46529,11870,54135
+81177,65166,11236,35415
+81178,73073,50614,58451,81749
+81179,41654,36436
+81180,22381,27543,39735
+81181,5876,21233,40010,13463,31311,73151,7364,57067,79385
+81182,48448,63764,3097,11584
+81183,56630,35709,30012
+81184,36092,8454,74053
+81185,8235
+81186,14680,26832
+81187,9400,39511,49166,37145,43130
+81188,38562,21648,1551
+81189,42828,36577,22089,75981,19044
+81190,77202,2412,2010,30977,25431,36980,62596,21053,41918,46482,53171
+81191,13500
+81192,43591
+81193,73653,76561,38039,52622,47529,25088,82184
+81194,51308
+81195,31753,41220,14459,50855,72484,52028
+81196,47845,10726,67859
+81197,52701,59515,50910
+81198,21536,17989,71092
+81199,29128,43938,47648,8343,73586
+81200,60972,47322,50439,67009,65774
+81201,48436
+81202,15028,65604,4093,11934,55391,47085
+81203,39401,21687,34265,51238,51586,71372
+81204,43950,79689,64109
+81205,12644,29918,67482,67867,74424,53831,31347,70164
+81206,71203,72940,52986,65402
+81207,35398,78271,57775
+81208,52567,52944
+81209,37516,27950,30933,69275,1075,36466,24302
+81210,4104,81106
+81211,39051,59988,77167,13264
+81212,76002,24690,72165,49155,65132
+81213,19833,42007,27642,62495,16338,79726,11460,18492
+81214,27464,69202
+81215,34539,72021
+81216,28340,70245,5152
+81217,41803,14164,70499,53175,10659
+81218,2369,19126,26463
+81219,57005,37484,30243,39657,18740,54217,50258
+81220,6774,51540,78209,41283,56281
+81221,43960,25614
+81222,76079,55204,48088,73504,13817
+81223,66502,63249,50821,13801,42567
+81224,7947,35717,50566,43470,9227,81226
+81225,15307,33710,43465
+81226,80525,15072
+81227,5630,46993,43415
+81228,49388,21649
+81229,73472,72448
+81230,76632,65169,42986
+81231,68518
+81232,71971,33833
+81233,60354,60917,49331,46930,1297,7817,26835
+81234,52840,28067,74487,52945,29779,1737
+81235,15557
+81236,8814,77209,71572,16511
+81237,49140
+81238,17666,769
+81239,75056
+81240,42529
+81241,45788,39832
+81242,58588,12697,15143,34159,46436
+81243,63596
+81244,55946,54963
+81245,57270,46694,3500,32252,69860
+81246,11905,64814
+81247,61405,59885,15671,43795,11502,2934,22250,9777,3583
+81248,48656
+81249,20729,35359,52710
+81250,56311
+81251,36133,22194,74649,79816
+81252,4398,1386,58564,61338,78715,52711,7233,69184,41924,16261,18562,77232
+81253,21706,5951,12021,73971,19849,61271
+81254,39882,58828,26735
+81255,77656
+81256,30332
+81257,29087,49749,20678,64120,41553,54968,67992
+81258,57671,77628,18810
+81259,33052,74390,69384,40026
+81260,62167,29171,38803,26954
+81261,55001,51734,23633,34429,78905,47001
+81262,30701,38510,77025,5590,33243
+81263,23354,52060,7535,54060,23585,53101,42926,36500,38804
+81264,43702,45174,60755
+81265,19544
+81266,81838,30859,8126,66174,18579,1994
+81267,3135,52126,5868,31943
+81268,29709,36789,29619,23302,23247
+81269,38929,27979,34017,63393,9806
+81270,5554,2637,25119,78640,39537,18380
+81271,14674,29710,42178,71150
+81272,77808,62052,35800,73660,75859
+81273,44493,39595,57529,29323,19255,17701
+81274,63288,61867,8362,7323,24578,25831
+81275,39856,22776,59923,46120,42793
+81276,3306,4369
+81277,73716,63157,63610,63462
+81278,3968,51048
+81279,80130,67581,17239
+81280,74663,68220,23969,82167,3618,33924,3143
+81281,19132
+81282,40495,74625,49248,48481,71966,78541
+81283,65529
+81284,29543,33638
+81285,22731,30378,48666,79899
+81286,59848
+81287,42830,53666
+81288,16071,11034,35938
+81289,37963,23168,46700
+81290,43821,5334,31602,4385,62206
+81291,59643,69325,24547,27886,44852,37440,22074,23065,40232
+81292,27451,75525,71957,16232,65503,43988,71910
+81293,75296,8939,60729,66343
+81294,14648,2887,64904,9138,72528,50239
+81295,14169,55585,45355,30529,62264,44236,27539,37180
+81296,38140,71892
+81297,13365,50135,23575,49738
+81298,43216,43015,71877,21986
+81299,61845,57332,13067,64208,42369
+81300,28002,2930,51208
+81301,62225
+81302,52491,27614,60965
+81303,64459
+81304,79117,64390,37642,50470,46956
+81305,19966,76371
+81306,26935,57755
+81307,47268,48930,53149,67142
+81308,54003,36223,23263,34436,54497
+81309,27390,32830,59988,44313
+81310,17619
+81311,31498,33362
+81312,61701,40864,24433,62678,11365,60056,62947
+81313,67908,13105,45028,51704
+81314,28349,52459,77006
+81315,34477
+81316,72188,19454
+81317,22686,70103,42547
+81318,16377
+81319,11575,6270
+81320,38396,5914,18977
+81321,9611,66723,70010
+81322,25653,17525,25343,63435,68026,81702,22363,77755
+81323,42176,42498,36739,24951
+81324,32488,805,3416
+81325,64858,22443,57870,18506,22143,20551,77206
+81326,3633,16708,5247,45977,19891,36707
+81327,13409,1489
+81328,26089,22075,74630
+81329,15428
+81330,73232
+81331,72491,8206,7168,30932,14445,45183,55333
+81332,20870,55708
+81333,35453,35610,43922
+81334,48752
+81335,38238,2490,80719,67402,50182,19748,8324,11002
+81336,22417
+81337,23806,76060,75798,27181,24742,31132
+81338,41811,64741,10908,55390
+81339,53916
+81340,3322,58008
+81341,49133,35843,59270,27565
+81342,59738,46872,61164,40753,34082,65580
+81343,80387,44434,27131,42403,25663,20412,18244,15053
+81344,11199,14944,53305,1864
+81345,10708
+81346,3667
+81347,58375,45444,63219,68589,24530,3801
+81348,79903
+81349,17247,66094
+81350,73490,56124,5890,50477,77023,42411
+81351,55398,32949,33991,42111,2351,15108,22426
+81352,73925,16470
+81353,40393,54983
+81354,34063,68125
+81355,81428,47615,36530,14429,38397
+81356,60998,23368,54041,18972
+81357,72808
+81358,81806,30702,66835,26138,14294
+81359,76674,77631,54807,15370,71023
+81360,34238
+81361,50108,67112,36439
+81362,15642,11076,42513,45586,59287,34386
+81363,29647,50563,7204,28800,2070,27258,40904,60378,64066,7860
+81364,45328
+81365,51050,61075
+81366,14629,15373,69460
+81367,31976,73385
+81368,79007,63510,64865,11448,61852,39915,17983
+81369,61269,53725,75880,62694
+81370,58403,74669,56217
+81371,61681,81002
+81372,10275
+81373,54071,65169,17592,56747,7872,61359
+81374,22256,20440
+81375,65094,19235,35978,64460
+81376,74650,62988,67755,45913
+81377,1237,19879,7086,1404,76028,33013,44266,7223
+81378,81500
+81379,77712,80648
+81380,39431,78352,722
+81381,20652,78907,11487
+81382,60715,449,53552,10299,49059
+81383,1607,1004
+81384,20386,27203,57680,20118,32329,49031,20730
+81385,54520,17235
+81386,52420,48570,46388,32165
+81387,22805
+81388,79120,48838,69902,71317,50653,25666,1094,74672,2910,6322
+81389,56245,76308,51674
+81390,42308,73974
+81391,70906,17718,17281,62425
+81392,21038
+81393,18743,13435,9485,39062
+81394,13038,36165
+81395,31173
+81396,57271,19152,48819
+81397,35911
+81398,35789,7388,55534,56675,3924,81248,10452
+81399,81089,33309,61327,23123,12242,79783
+81400,40432
+81401,29748,48431
+81402,5916,54975
+81403,42853,52151,40480
+81404,68084
+81405,19172,20892,55853
+81406,21389,65494,34598,14438,9873,42193,73806
+81407,697,75174,18185
+81408,41786,80991
+81409,25512,77280,18071
+81410,72589,18641,60273,65523
+81411,16012,17816,48508,27095
+81412,60669,24117,40838,16939
+81413,24327,70620,44156
+81414,30018
+81415,47132,16250,24849
+81416,77328,15949,5315
+81417,24695,71493,72707,4919
+81418,8133,71071
+81419,81049,6333
+81420,58709,10472,9867,61223,13901
+81421,28004,62542
+81422,67800
+81423,65993,74148,41422,4237,38451
+81424,60174,3023,41332,10133,61863
+81425,48115,2050
+81426,55040,11238
+81427,47028,2383,3409,17272,57760,20468
+81428,10119
+81429,6170,78632,21784,37500,50752,14726,12575,19978
+81430,54199
+81431,42855,46097,79535,8199,58193
+81432,78306,48732,80630,41585,29245,59266
+81433,30296,30174,28261,45235,48890
+81434,28795,78521,79849,61547,15222,48562,19267,8288
+81435,13045,44773
+81436,69390,32875,77091,63196,15622,35105
+81437,67396,15189,14164,12224,43878
+81438,47716,60891,7020,28869,31441,58229
+81439,33432
+81440,24758,19043
+81441,36731,59149,12442,2383
+81442,16206,1897,31980,33420,23755,20448
+81443,78333
+81444,28652,64771
+81445,73125,34494,52202
+81446,13032,50171,26689
+81447,12509,80701
+81448,39378
+81449,30045,42185,70855,55329
+81450,73427,72248
+81451,48515,5209,47021
+81452,45704
+81453,14762
+81454,19295
+81455,23637
+81456,4149,5903,57127,36192
+81457,40107
+81458,74288,64985
+81459,45697,42642,42996,17352,17849,64138
+81460,64782,20657,10961,6142,55063
+81461,23808,68749,51355,35588,26980,61614,29978
+81462,70049,49502,80031,1476,30528
+81463,40816,37678
+81464,74986,30363,14625,44661,3350,56100
+81465,22701,30426
+81466,60389,12239,41148,15681,35430,430,31149
+81467,69230,34976,7011,6747,26032,61842
+81468,33075
+81469,72017
+81470,26143,17780,39208
+81471,26859,46842,66810,59439,64063
+81472,39177,59823
+81473,78268
+81474,36733,27694,67547,54224,6959,49061
+81475,46678
+81476,50093
+81477,22553,14958,30959
+81478,15307
+81479,23181,26914
+81480,46114,80443,81444
+81481,56569,236
+81482,46284,11903,2027,3375
+81483,7451,42024,75711,48849,24205
+81484,12711,73800
+81485,47166,14212,49934,67152,51468,7981
+81486,18389
+81487,58688
+81488,22798,47883,37605
+81489,20685,27136,58324
+81490,70626
+81491,81346
+81492,23112,81238,24556,2577,18188,33466,59943
+81493,63308,38978,67691
+81494,71864
+81495,12020,40547,24688
+81496,4178,77915,19489,19113,5,60186,62223,9081,9486,37519,47292
+81497,79695
+81498,12476,39202
+81499,46027
+81500,79780
+81501,6646,66673,22514
+81502,56779,25906,17900,62965,64898,12314
+81503,81939,52791,43158,79564,67007,8518
+81504,66990,67224,69866
+81505,36764,3425,43922,50676,48339,31285
+81506,33706,54928,51248,69284,61441,64529,26043,6953
+81507,45624,24728,27263,37996,26035,46643,13305,16986
+81508,55325,49230
+81509,77579,34387,39072,8026,39110,27695
+81510,37854,29542,11528
+81511,29080,27610,39510
+81512,66857,15829,71675,40572,32963
+81513,58308,7902,394,64956
+81514,11032,61034,6682
+81515,47155,52400,2128,29779,49865,2725,35743,31862,65461
+81516,15040,43087,60944,64521,48350
+81517,13949,73044,41407,39619,51164,23933,45741
+81518,38392,8981,11366,42642,80543,52953,29714,43168
+81519,40324,22557,34771,42567,32425
+81520,29017,31258,33407
+81521,47205,77146,15395,25976,75885,19337,71550
+81522,49882,60656,143
+81523,34391,81083,82091,30057,42809,55438,30807,13052
+81524,22446,4131,40494
+81525,78032,26958,75228,3851,12382,23833
+81526,70377
+81527,80811,66145,62520
+81528,64839,45487,7923,66392,60599,13923
+81529,70721,18714,44789,71087,43357,34287
+81530,42427,29910,55999,4161,36307
+81531,53703,59870,48560,12180,60026,47646
+81532,78019
+81533,65782,41424,7617
+81534,37914
+81535,10195,2961,19557
+81536,12920,66509,9458,33940,10043,41511
+81537,48987
+81538,38770
+81539,34697
+81540,13357
+81541,44058
+81542,49561,82162,39963,42245,24302,32022
+81543,46780
+81544,20112,48656
+81545,23232,23115
+81546,15775,4483,36014,28177,10889,39998,10316
+81547,28198,44281
+81548,44444,8385
+81549,15804,57428,72410,68641,53779
+81550,29976,69278,7451,37778,53556
+81551,50278,43756,57043,13826
+81552,262,65888,39312
+81553,66376,24021,20190
+81554,34740,77666,10158,7379,1310,33503
+81555,41228
+81556,35094,59191
+81557,46513,70966,76115,60184,39081
+81558,38512,36303,12495,59893,64744
+81559,42009,12179,13064,73696,19629
+81560,76799,38717,11644
+81561,78321,41822
+81562,35911
+81563,61525
+81564,4542,38540,36442,70436,33772
+81565,57790,33936,25163,30638,76669,950
+81566,23662,56698,15166,16350
+81567,65884,67450,42106,49599,64038,46875
+81568,35065,57565
+81569,41413,12475,72144,16891
+81570,10279,26467
+81571,79246,26049,64081
+81572,12206,68717,21194,43348,69196,3806
+81573,55483,42770,63985,49458,37482,59461,32083
+81574,49374,58005,28474
+81575,39064,50475,44316
+81576,32889
+81577,44573,76925
+81578,48698
+81579,18810,27318,46955
+81580,9945,79573,8862,19935,65517,56821
+81581,11860,14307
+81582,71769,47727,30673,63535
+81583,53942
+81584,47048,76327,44826,71645,16831,75161
+81585,5657,7651
+81586,7291,33758
+81587,13189,74273,25839,44300,59826
+81588,19296,23182,7423,13219,17810,53349
+81589,6747,16815,67963
+81590,28744,38116,21757,8712
+81591,75523
+81592,71538,14405,69355,26218,9342,32973
+81593,38833,23332,59265,68294,24956,10254
+81594,78341,58001,58418,49076,72822
+81595,73843,54454,11218,35447,45744,33284,11974,52119,1577
+81596,41043,33342,17963
+81597,12022,69356,51516
+81598,39425
+81599,2751,37207,79531,2351,69655,30582
+81600,64188,62694,55241,20152,67594
+81601,11772,41530,58861
+81602,44501,33917
+81603,46430,13146
+81604,70974,41221,81488
+81605,34655,22557,4362,66853
+81606,67348,12099,70118
+81607,33921,56526,72630,26081,75468
+81608,73592,25730,63022,35270
+81609,69786
+81610,11911
+81611,25342,61553,46778,75681,75917,78103
+81612,81537,72142,80760,44286
+81613,48346
+81614,16662,41246,30308,42590,52223
+81615,26769,17463,39118,66172,47537
+81616,26703,60556,67071,13005
+81617,72519
+81618,12154,16708,6560,49994,36746,21062
+81619,6729,8550
+81620,58106,5080,13631,14971,71514,78862,7447,53942,80188,40122,40859,16361
+81621,6914,17409,3269,58271
+81622,44370
+81623,32360,72524
+81624,48884
+81625,10468,20931,16427,50621,38733,48459,68442
+81626,14041
+81627,81591
+81628,56759,43053
+81629,79954,36742,35734,67337,19908
+81630,328
+81631,45007,43193,33934,1551,8539
+81632,13500,9724,7489,44795
+81633,69304
+81634,69585
+81635,70623,72780,78698,34755
+81636,8005,68637,71585,52191
+81637,11105,56220
+81638,39095,31210
+81639,61172,6373
+81640,62072,21816,17320,4234,5143
+81641,73334,66491,2856
+81642,80322,72911,64007
+81643,22828,28251,20572,26361,14545
+81644,43458,7163,15819
+81645,77798,48192
+81646,57729,39480
+81647,69396,28552
+81648,12994,7039,31410,19383,5141
+81649,17824
+81650,76622
+81651,70165,33140
+81652,39432
+81653,41681,69695
+81654,44828
+81655,11223,17759
+81656,48377,32170
+81657,55640,9984
+81658,75304,48631,1140,53465,76870,8927,23354,28742,76527
+81659,68913,23503,57449,59450,7585
+81660,75247,17718,74874
+81661,8399,72786,12735
+81662,32131,38646,1453,61433,27671,48210,60031,34554
+81663,7630,58619,33917,64857,11992
+81664,29610,64168,56127
+81665,77012,20625,40089
+81666,31893,68021,39248,38141
+81667,72807,77015,63133,49761,65713,71223,49151,2870
+81668,55338,32591
+81669,58517,67963,79510,74772,23731
+81670,2420,2830,80888
+81671,1642,10910
+81672,52086,19006
+81673,56167
+81674,79284,78503,34443,61393,16629,76314
+81675,16851,38223,78739
+81676,39916
+81677,20930,70158,11209
+81678,2473,14819
+81679,36858,70516,79249
+81680,55898,76800,36003
+81681,32425,69441,18732,7057
+81682,71938,9997,39247,81917
+81683,2477,28537,35589,849
+81684,17005,17808,20905,69935
+81685,29775,45760,3576,13076,29185,37434,69445
+81686,78262,50687,612,39504
+81687,64459
+81688,76280,37493
+81689,56300
+81690,16661
+81691,41829,77269
+81692,35976,6737,63297
+81693,3792,19543,7590,48866,16493
+81694,65344,10376,20094,781,56885
+81695,68150,2443,11121
+81696,45740,29396,61952,30482,321,71282,52612,5540
+81697,26846,71640,60580
+81698,73294,74875,38539
+81699,52400
+81700,53229,13098,30688,78267
+81701,58719
+81702,29981
+81703,26255,48253,26227
+81704,53663,31225
+81705,49932,15060,41413
+81706,43302,50058
+81707,328,16830,14574,70282,31274,3901
+81708,10450,34358
+81709,31719,11426,10349
+81710,22067,77534,25845,44573
+81711,29280,81026,14012
+81712,60998,24492,45586
+81713,65539,57363,18430,28324,48390,29843,24264,55684
+81714,47619,75575
+81715,72691,4860,49236,80621,43505,22236,61312
+81716,19282,47504
+81717,67076
+81718,77644,60359,27695,78685
+81719,15865
+81720,72311
+81721,80305,34135,6275,47444,74605,32062
+81722,81975,80235,28370,36535,45993,30499,55952
+81723,3169,20988
+81724,26450,78156,51461,33631
+81725,22187,10279
+81726,41308,23182,7942
+81727,13146
+81728,14585,29269,76628
+81729,78838,4726,8441,62674,27081,73818
+81730,53413,4029,43700,35175,80732,57056,57837,10689
+81731,59307
+81732,61981,58814,69158
+81733,44482,56853,19651
+81734,35406,376,3998,8176
+81735,24503,6999
+81736,32539
+81737,474
+81738,30121,5503
+81739,10609,56067,16896,40259,38947,3570
+81740,33943
+81741,43623
+81742,77359,57078,33919,59823,48521
+81743,20685,13922
+81744,54020,72036,4992,78277,329,34193,6600
+81745,6372,77201
+81746,77146,68151,62685,10730,12765,19043
+81747,43373,71495
+81748,40982,54311,13748,78356,55917,76461,51014
+81749,72689
+81750,3595,54021
+81751,55671,73139,30907,49195
+81752,67567,76121,20388,22895,7735,2842,32450,40620,6320,80434,64232
+81753,54901,824
+81754,8990,63281
+81755,5507,18518,77303,80507,26341
+81756,26253
+81757,26075,23976,38334,64905,9686,62605,57830
+81758,23828,30502,16264,41565,62093
+81759,22034,45896,32339,82159,1391,52340,29084,10123
+81760,40752,20849,77086
+81761,39657,66658,44171
+81762,64142,62363,56759,32307
+81763,13260,52866,77140
+81764,2465,13717,46621,50280
+81765,14526
+81766,18925,40145,13444
+81767,19176,61978,20528
+81768,48568
+81769,44543,61332,75029,59662
+81770,63763,13514,39957,459
+81771,12391,55708,36263
+81772,40802,81487
+81773,58453,9637,57905,52105,57979
+81774,56276,24816
+81775,42727,66634,59839,6636
+81776,39628,22621,38782,75910,22904
+81777,32129
+81778,52435,78567,26024,60132,5635,43447,28569,11654
+81779,37874,3827
+81780,62008,35358
+81781,2232,34880
+81782,37861,66199,3747,4704
+81783,1286,43965
+81784,47668,60723,60396
+81785,57441,23014,15114
+81786,75325,1021,55005,21931,60938,63513,23784,45060,17516,36857,56069
+81787,49180,10890,71003,31767
+81788,42912,65684
+81789,3208,55096
+81790,53091,24985,29350,52267,38622
+81791,73506,80270,56105,8464,61364,29746
+81792,28778,33750
+81793,7803
+81794,68737,46991,73206,22319,78767,59945
+81795,77489,49117,10766,22886
+81796,55917,34441,24555,59634,9677,3137,18974
+81797,47907,79350
+81798,36492,25995
+81799,24625
+81800,71271
+81801,43457,28382,10472,80223
+81802,59665,25315,68868
+81803,5131,6285,64433,40492,53401
+81804,15115,14350,72466,64502,37594,23923,8360
+81805,6759,81779,18866,76753
+81806,5314,45640,46201,52590,78649,11069,10623
+81807,48954,37903,70191,4395,80908
+81808,76990
+81809,37579,36091,25099
+81810,52841,69423,16306
+81811,25172
+81812,59714,64561,56986,36258,16455,9373,12642,11717
+81813,38050,65763,31673,14319
+81814,76672
+81815,54949,21077
+81816,50047,19550,56199,76989,13726
+81817,79734,41477,40219,3517,78476,45254,10806
+81818,70422
+81819,4083,46665
+81820,28742
+81821,11588,4216,61421,73278,4097,56059
+81822,16026,64302,35898
+81823,36271,14098,74456,15587,81471
+81824,10187,61323,64963,5049,47353,57203
+81825,58452,51888,31684
+81826,24907,65553
+81827,41812,74612,889,20127,4066,62696,45062
+81828,22161
+81829,68484,212,18087,70512,47664
+81830,72286
+81831,69934,21359,10667,46122,39613,5942,77727,18762
+81832,26879,41550,16425
+81833,65136,56898,49386,34435,22621
+81834,50205
+81835,59934,31870,75603
+81836,26992
+81837,74985
+81838,9284,20031
+81839,23987,79812,75627,39870,15065
+81840,6486,44434,24733,27076
+81841,14709,25724,81974,16285,77798,5627,35637,75968
+81842,15163
+81843,67619
+81844,29959,66997,26406
+81845,56701,73774
+81846,70973
+81847,37959,4748,81535,10453
+81848,3055,16239,51910,72646,41381,42159,23332,78758,23912
+81849,49405,26613
+81850,66880,23908,67125
+81851,56869,68160,39056,82138,481
+81852,23776
+81853,37340,64317,31422,14224
+81854,56376,21484,43261,22861
+81855,78265,66416,63921,47664,33971,62261,12006
+81856,15758,15498,33800,26455,44086
+81857,10561,81708
+81858,22271,14483,80636
+81859,60736,22523,25371,31424
+81860,13916,4726,62951,13442,39396,23016
+81861,47620,12683,26281,50717
+81862,77088,65694,25280
+81863,20873,60715,45891,51002,63937
+81864,1033,68254,61785,43956,68595,50973
+81865,69741
+81866,81508,35824,70801,58824,62843,27116
+81867,13947,52812,81860,30471,64819,79678,12884
+81868,33882,44163,74268
+81869,25998
+81870,24901,81637,51802,23458,27935,20125
+81871,21707,53584
+81872,10629,21722,43713,12885
+81873,51129
+81874,64817,68282
+81875,42148,1491,12696,19833
+81876,5024,5530,57790,16693,52251,49256
+81877,42461,20365,3381,33989,17804
+81878,11808,57943
+81879,29735,1471,56350,37735,58691
+81880,14521
+81881,70306,59326,29781,35641,32179,12271,52207
+81882,14558,53167,79903
+81883,21417
+81884,79427,14977,63101,5623
+81885,33099,28113,45016,63124,46895
+81886,3749
+81887,50557,65491
+81888,76610,66514,8265,35503,33884,27241,60232,17346,74830
+81889,27787,57046,47859,28742,73741,78177
+81890,31077,58235,10369,77397,13310
+81891,6707,47576
+81892,77322,51196,71836,22127
+81893,47810,5597,23129,16611
+81894,32275
+81895,61424
+81896,75078,63804,45973,57172,24260,48340
+81897,67209,78690,44807,34595,24887,50813,66573
+81898,19528
+81899,47144,11977,75866,36068,6615,40843
+81900,34352,35354,31483,28315,73649
+81901,75433
+81902,20355,46446
+81903,75122
+81904,69150,26895,20538,79351,41422
+81905,9673,13929
+81906,40422,20800,25022,3605
+81907,79603
+81908,51303,63794,12956,48549
+81909,47007
+81910,17901,67005,42866,45776,41702
+81911,11427,3899,22962,21128
+81912,37286,63264
+81913,4394,4376,32262,74309
+81914,20656,52873,44991,46897,14180,81792,50668
+81915,26974,3108,61397,78733
+81916,20246
+81917,64226,21200,80506,66805,8148,61683,35980,53766,9223
+81918,35408,22212
+81919,63499,23585,11223,41199,56921
+81920,10919,26738,4678,68281,40393,48793,17647
+81921,49736,19167
+81922,41829,27622
+81923,72882,23809,65935,26398,30445,41439,30784,44490,74686,17572
+81924,79004
+81925,62046
+81926,20975,60043,8981,22480,29000
+81927,69166,18576,46573
+81928,13630,51632
+81929,47160
+81930,45984,11463,23463
+81931,77424
+81932,70509,26705
+81933,65912
+81934,17627,55013
+81935,59755,15507,59261
+81936,20488,14060,79890,7072,32507,37307,18939
+81937,11889,39324,45709
+81938,5750,44261,36305,51808,81088,50216
+81939,3143,47989
+81940,10054,14555,49083,40454,13931
+81941,7999,61423,53468,78961,46317,23475
+81942,67718,11738,29517,46957
+81943,72164,66041,20984,195,71535
+81944,7370,25860
+81945,603
+81946,29331,32052,46249
+81947,34809,25108,7064,70655,44936
+81948,71061
+81949,67030
+81950,81993
+81951,58421,19485,36629,11784,5931,81750,49015
+81952,47974,40707,49882,68014,42435,25801,68829
+81953,71870,35583,46005,27984,58549
+81954,81996
+81955,33424
+81956,28137,46199,21685,44936,67473,73773,27870,60679,1311,42796
+81957,30231,37500,2800,27696,21019
+81958,41982,54429,6697,49547,28578,57696
+81959,35600,21645
+81960,70517,542,49444,2503
+81961,50790,2735
+81962,81690
+81963,41923
+81964,17902,69163
+81965,45236,21497,11660
+81966,79630,61766,14859,13852,59027
+81967,70214,62294,42369
+81968,21876,18974,74783
+81969,55774,9629
+81970,25463,16952,73328,76985
+81971,40413,63561
+81972,16584,51661,30461,2664,51881
+81973,50408
+81974,15163
+81975,64166,56979
+81976,57818,12612,47122,59825,2788,37390,34066,74319,24814
+81977,9714,39351,26951
+81978,35096,62758,51075,26077,33190,68091,75449,60104,4081,42689,67468
+81979,75515
+81980,10383,82142,72530,54885
+81981,70805,45465,40959,40449,80578
+81982,52503,33238,77269
+81983,63609,17875,65501
+81984,48493,41184,24705
+81985,72912
+81986,74976,50624,44653
+81987,6432
+81988,58570
+81989,72838
+81990,32759,49292,48255,61714
+81991,18882,79608,12761,77971
+81992,51200,32064,1524,63321
+81993,34477
+81994,52955
+81995,16699,67341
+81996,58813,38607
+81997,73763,60800
+81998,34102
+81999,57629,28270,78052,21827,64919,8550
+82000,10649
+82001,62838,25976,82131,28271,30060,9365,27950
+82002,16329,76839,41061,71882,41446,60422,50702,81740,46997
+82003,47240,75578,74092,80129
+82004,30467,978,38553
+82005,65492,57777,70003
+82006,4238,64326,38218
+82007,63516,18897
+82008,13039
+82009,1986,12859,13144,50296
+82010,45512,47316,51960,45863
+82011,61291,80063,15979,52894,66793
+82012,7050,69880
+82013,36465
+82014,10877,4644,26467
+82015,25564,56484,57246,32185
+82016,38921
+82017,13040,38578,80106,70630,4380,63113
+82018,2213
+82019,56673,2646,42525,45012,41737,50609,13813
+82020,59541
+82021,27292,20345
+82022,11123,67613
+82023,479,19965,79697,27540,50597
+82024,58250,43254,79254,2296
+82025,61798,75728,33690
+82026,59351,5663,68581,49047,3734,35613,42982,64352
+82027,43751,25046,55679
+82028,81376,27750,22697,75707,32688
+82029,43301,75360,63628,59743,41929
+82030,19409,29074,40935
+82031,54573,5390,18597,11798
+82032,73041,64166,24366
+82033,77223,31398,63645,72454,50899,3658,69681,51460,51167
+82034,13191,58268,74587,67131
+82035,17957,23510,23518
+82036,8140,28435,36486,80884,44710,78414
+82037,47766,33612,27809,61751,9908,36197,44914
+82038,48364,46863,60748
+82039,511
+82040,58042,72985,75986
+82041,23258,38410,66061
+82042,5115,21800
+82043,35489,67098,21479
+82044,33526,73980,66414,48131,79044,31288,32438,24477
+82045,37346,3249,81992
+82046,45135,50306,72954,47992,74327
+82047,62937,44098,31329,53215,21436
+82048,68062,78208,17081,75172
+82049,39152,63624,189,2634,68811,17705,37092,55759,24917
+82050,31306,59971
+82051,71773,8967,13927,34101
+82052,1108,44858,22036,61702
+82053,27819,20438
+82054,19399
+82055,67831,63042,20535
+82056,80098
+82057,25131,44496
+82058,41921,19160,46734,29013,55131,51221,54233,31235
+82059,65630,8231,47668,63334
+82060,26462
+82061,2903
+82062,72773
+82063,22299
+82064,39404,47969
+82065,6533,33081,39013,64803,72305,81084
+82066,379,39569,34249,51769,7789,17906
+82067,76046,69217
+82068,47727,30910,79009
+82069,60903,1684
+82070,37299
+82071,36984,11351
+82072,38664,69833
+82073,62422,4201,78862,29421
+82074,37702
+82075,42518,35819,3076,65015
+82076,39913,64206,49507
+82077,16391,59445,36211,26404,73427,16621
+82078,72551,37,66675,14520,6255
+82079,39933
+82080,46597,36837,59804,19132,32569
+82081,74338,20326,24724,41216,28575,52171
+82082,31301,23210,69227,56665,29815,44151,36477
+82083,81781,427
+82084,5958
+82085,3017,6945,42454,29584,31693
+82086,50821
+82087,47093,12659,33189,70954,52110,78393,20840
+82088,26086
+82089,23021,10855,2118,452,42544
+82090,15331,14168,29272
+82091,60112,74099
+82092,44265,31542,71476,32973
+82093,72085
+82094,47245
+82095,72775,35236,43201,48779,23849
+82096,6815,51291
+82097,21392,81198,47601,55625
+82098,22552,80461,60100,77484,60751,74799
+82099,5764,61505,38451
+82100,9311,11252,19863,25578
+82101,2119
+82102,63527,74161,12974,64657
+82103,35336,38713
+82104,41909,10868,46161,3624
+82105,73826,60145,35786,19639,87,26580
+82106,66945,2590,54518,27397,13284,10621,70922
+82107,23530,53136,51875,44145,20104,33074,75782
+82108,12213
+82109,13882,10636,51842,25730,35897
+82110,45131,60950,33888,8185,46964,49172,7560,39475
+82111,58815,11392,7972,60413
+82112,59495
+82113,76520,57762
+82114,9969
+82115,64868
+82116,42557
+82117,32627
+82118,29810,66718,3832,43793
+82119,63177,19476,19968,31874
+82120,63561,16137,26640
+82121,29427,21768,42796,69162
+82122,79004
+82123,59204,62537
+82124,1577,57877
+82125,60056,45058,36204,28704
+82126,40454,15066,28139,4787,35488,63174,72799
+82127,20890,69304
+82128,5615,48698,8100,53362
+82129,6855,56665,48190,24967,7578,10382,14923
+82130,38717
+82131,6532,23701,7112,34559,46155,24475
+82132,64015,77271,30246
+82133,65383,8283,48329,4461,2699
+82134,39561,57367,31986,71485,39058
+82135,22289,42114,77627
+82136,51664
+82137,71947,36867
+82138,78276
+82139,65479,6055,8430,48027,27938
+82140,81647,41536,54989,45141,35410,17839,10010
+82141,25617,47459,1098,5104,29698
+82142,12235,53319
+82143,11775,13294,3014,31254,54550,58941
+82144,35144
+82145,42042,34720,19776,20512,13742
+82146,56635,14772
+82147,42415
+82148,23377,19629,58229,50649,66018,25786
+82149,5664,48031,24378,12563,72835,64167
+82150,24227,46547,5698,11569,80465,77930,43844
+82151,65018,56316,40032
+82152,57589,23388,53069
+82153,59523,42491,74092,18327
+82154,26048,39365,49572,69050,77307,60437,59674,38176,62632,25243,4920
+82155,21028,60670,56957,4344
+82156,48996,73984,4154,75474
+82157,27549,77545
+82158,38397,10928,46017,70470,16455,57332,77701,3650
+82159,31307
+82160,65298,56005,72085,82186
+82161,62294,52577
+82162,65788
+82163,39827,44609,65061,14339,34925,21764,8773,8246,58970
+82164,64578,30183,32669,79560
+82165,48099,18600,56827,53451,71944
+82166,75443,30795,40493,8935,28299,38962,20229
+82167,34076
+82168,75825,77720
+82169,51077,44871,15542,46781,22104
+82170,4354
+82171,32788,54002,81774,73080
+82172,40945,41708,4929,60722,51465
+82173,50032,36311,42213
+82174,45632,47135,5932
+82175,63449
+82176,50741,14811
+82177,16084,39042,34685,20646,73659,39397
+82178,15395,42086
+82179,80937,43148,10195
+82180,54586,63765,9792,74715
+82181,4773,58966
+82182,44426,18737,57463,30311,45721
+82183,49661,59724,1674
+82184,29163,58465,71865,41279
+82185,64181,16486,8668,4746,46834,26641,11273
+82186,18105
+82187,16023,60600,64345,20477,58705
+82188,61575,33035
+82189,57245,72597,20961,39772,30131
+82190,19398,59238
+82191,61253,68285,62780,76634
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms6TwoAncestors.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms6TwoAncestors.txt
new file mode 100644
index 0000000..81e75b7
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms6TwoAncestors.txt
@@ -0,0 +1,5 @@
+1,0,2
+2,3
+3,4
+4,5
+5,0
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms8ManyAncestors.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms8ManyAncestors.txt
new file mode 100644
index 0000000..4cd0f4a
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms8ManyAncestors.txt
@@ -0,0 +1,7 @@
+0,1,3,4,5,6,7
+2,1,3,4,5,6,7
+1,7
+3,7
+4,7
+5,7
+6,7
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernyms8WrongBFS.txt b/Algorithms/Part-II/1-WordNet/data/hypernyms8WrongBFS.txt
new file mode 100644
index 0000000..3814b2a
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernyms8WrongBFS.txt
@@ -0,0 +1,7 @@
+0,1,7
+1,2
+2,3
+3,7
+4,5
+5,6
+6,3
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernymsInvalidCycle.txt b/Algorithms/Part-II/1-WordNet/data/hypernymsInvalidCycle.txt
new file mode 100644
index 0000000..6dccc1e
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernymsInvalidCycle.txt
@@ -0,0 +1,2 @@
+0,1
+1,0
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernymsInvalidTwoRoots.txt b/Algorithms/Part-II/1-WordNet/data/hypernymsInvalidTwoRoots.txt
new file mode 100644
index 0000000..bd4af2d
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernymsInvalidTwoRoots.txt
@@ -0,0 +1 @@
+2,0,1
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernymsManyPathsOneAncestor.txt b/Algorithms/Part-II/1-WordNet/data/hypernymsManyPathsOneAncestor.txt
new file mode 100644
index 0000000..12e50e6
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernymsManyPathsOneAncestor.txt
@@ -0,0 +1,10 @@
+0,1,2,3,4
+1,5
+2,5
+3,5
+4,5
+10,6,7,8,9
+6,5
+7,5
+8,5
+9,5
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernymsPath15.txt b/Algorithms/Part-II/1-WordNet/data/hypernymsPath15.txt
new file mode 100644
index 0000000..9c99983
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernymsPath15.txt
@@ -0,0 +1,14 @@
+0,1
+1,2
+2,3
+3,4
+4,5
+5,6
+6,7
+7,8
+8,9
+9,10
+10,11
+11,12
+12,13
+13,14
diff --git a/Algorithms/Part-II/1-WordNet/data/hypernymsTree15.txt b/Algorithms/Part-II/1-WordNet/data/hypernymsTree15.txt
new file mode 100644
index 0000000..9b7ad30
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/hypernymsTree15.txt
@@ -0,0 +1,14 @@
+1,0
+2,0
+3,1
+4,1
+5,1
+7,3
+8,3
+9,5
+10,5
+11,10
+12,10
+6,10
+13,6
+14,13
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast10.txt b/Algorithms/Part-II/1-WordNet/data/outcast10.txt
new file mode 100644
index 0000000..0ca8eaa
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast10.txt
@@ -0,0 +1,11 @@
+cat
+cheetah
+dog
+wolf
+albatross
+horse
+zebra
+lemur
+orangutan
+chimpanzee
+
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast10a.txt b/Algorithms/Part-II/1-WordNet/data/outcast10a.txt
new file mode 100644
index 0000000..c4b98b4
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast10a.txt
@@ -0,0 +1,10 @@
+blue
+green
+yellow
+brown
+black
+white
+orange
+violet
+red
+serendipity
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast11.txt b/Algorithms/Part-II/1-WordNet/data/outcast11.txt
new file mode 100644
index 0000000..e25cb31
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast11.txt
@@ -0,0 +1,11 @@
+apple
+pear
+peach
+banana
+lime
+lemon
+blueberry
+strawberry
+mango
+watermelon
+potato
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast12.txt b/Algorithms/Part-II/1-WordNet/data/outcast12.txt
new file mode 100644
index 0000000..2249de0
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast12.txt
@@ -0,0 +1,12 @@
+Dylan
+folk
+Guthrie
+idol
+Minneapolis
+music
+musical
+playing
+public
+recognition
+review
+thunderbird
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast12a.txt b/Algorithms/Part-II/1-WordNet/data/outcast12a.txt
new file mode 100644
index 0000000..0e3e680
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast12a.txt
@@ -0,0 +1,12 @@
+competition
+cup
+event
+fielding
+football
+level
+practice
+prestige
+team
+tournament
+world
+mongoose
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast17.txt b/Algorithms/Part-II/1-WordNet/data/outcast17.txt
new file mode 100644
index 0000000..4d338ab
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast17.txt
@@ -0,0 +1,17 @@
+art
+canvas
+china
+culture
+kingdom
+particularism
+point
+portable
+ritual
+road
+script
+sculpture
+silk
+style
+transmission
+wall
+toluene
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast2.txt b/Algorithms/Part-II/1-WordNet/data/outcast2.txt
new file mode 100644
index 0000000..10d8bac
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast2.txt
@@ -0,0 +1,2 @@
+Turing
+von_Neumann
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast20.txt b/Algorithms/Part-II/1-WordNet/data/outcast20.txt
new file mode 100644
index 0000000..d389963
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast20.txt
@@ -0,0 +1,20 @@
+art
+Buddha
+Buddhism
+canvas
+china
+culture
+India
+kingdom
+particularism
+point
+portable
+ritual
+road
+script
+sculpture
+silk
+style
+transmission
+wall
+toluene
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast29.txt b/Algorithms/Part-II/1-WordNet/data/outcast29.txt
new file mode 100644
index 0000000..6cfce03
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast29.txt
@@ -0,0 +1,29 @@
+acorn
+application
+assembly
+award
+basic
+cad
+code
+computer
+custom
+depth
+development
+finish
+hardware
+instruction
+language
+machine
+model
+operation
+processor
+project
+silicon
+simulation
+software
+speed
+support
+team
+technology
+test
+mosque
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast3.txt b/Algorithms/Part-II/1-WordNet/data/outcast3.txt
new file mode 100644
index 0000000..97631db
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast3.txt
@@ -0,0 +1,3 @@
+Turing
+von_Neumann
+Mickey_Mouse
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast4.txt b/Algorithms/Part-II/1-WordNet/data/outcast4.txt
new file mode 100644
index 0000000..9d14e43
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast4.txt
@@ -0,0 +1,4 @@
+probability
+statistics
+mathematics
+physics
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast5.txt b/Algorithms/Part-II/1-WordNet/data/outcast5.txt
new file mode 100644
index 0000000..7da709a
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast5.txt
@@ -0,0 +1,5 @@
+horse
+zebra
+cat
+bear
+table
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast5a.txt b/Algorithms/Part-II/1-WordNet/data/outcast5a.txt
new file mode 100644
index 0000000..797d9ae
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast5a.txt
@@ -0,0 +1,5 @@
+earth
+fire
+air
+water
+heart
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast7.txt b/Algorithms/Part-II/1-WordNet/data/outcast7.txt
new file mode 100644
index 0000000..46c5d4b
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast7.txt
@@ -0,0 +1,7 @@
+Asia
+Australia
+North_America
+India
+Europe
+Antarctica
+South_America
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast8.txt b/Algorithms/Part-II/1-WordNet/data/outcast8.txt
new file mode 100644
index 0000000..92455b1
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast8.txt
@@ -0,0 +1,8 @@
+water
+soda
+bed
+orange_juice
+milk
+apple_juice
+tea
+coffee
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast8a.txt b/Algorithms/Part-II/1-WordNet/data/outcast8a.txt
new file mode 100644
index 0000000..ad50bcb
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast8a.txt
@@ -0,0 +1,8 @@
+Banti's_disease
+hyperadrenalism
+German_measles
+gargoylism
+Q_fever
+amebiosis
+anthrax
+playboy
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast8b.txt b/Algorithms/Part-II/1-WordNet/data/outcast8b.txt
new file mode 100644
index 0000000..45d609e
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast8b.txt
@@ -0,0 +1,8 @@
+apple
+orange
+banana
+grape
+strawberry
+cabbage
+mango
+watermelon
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast8c.txt b/Algorithms/Part-II/1-WordNet/data/outcast8c.txt
new file mode 100644
index 0000000..338a74f
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast8c.txt
@@ -0,0 +1,8 @@
+car
+auto
+truck
+plane
+tree
+train
+vehicle
+van
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast9.txt b/Algorithms/Part-II/1-WordNet/data/outcast9.txt
new file mode 100644
index 0000000..a3daac3
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast9.txt
@@ -0,0 +1,9 @@
+lumber
+wood
+tree
+leaf
+nail
+house
+building
+edifice
+structure
diff --git a/Algorithms/Part-II/1-WordNet/data/outcast9a.txt b/Algorithms/Part-II/1-WordNet/data/outcast9a.txt
new file mode 100644
index 0000000..86b2426
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/outcast9a.txt
@@ -0,0 +1,9 @@
+hair
+eyes
+arm
+mouth
+nose
+ear
+cheek
+brow
+chin
diff --git a/Algorithms/Part-II/1-WordNet/data/synsets.txt b/Algorithms/Part-II/1-WordNet/data/synsets.txt
new file mode 100644
index 0000000..8684058
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsets.txt
@@ -0,0 +1,82192 @@
+0,'hood,(slang) a neighborhood
+1,1530s,the decade from 1530 to 1539
+2,15_May_Organization,a terrorist organization formed in 1979 by a faction of the Popular Front for the Liberation of Palestine but disbanded in the 1980s when key members left to join a faction of al-Fatah
+3,1750s,the decade from 1750 to 1759
+4,1760s,the decade from 1760 to 1769
+5,1770s,the decade from 1770 to 1779
+6,1780s,the decade from 1780 to 1789
+7,1790s,the decade from 1790 to 1799
+8,18-karat_gold,an alloy that contains 75 per cent gold
+9,1820s,the decade from 1820 to 1829
+10,1830s,the decade from 1830 to 1839
+11,1840s,the decade from 1840 to 1849
+12,1850s,the decade from 1850 to 1859
+13,1860s,the decade from 1860 to 1869
+14,1870s,the decade from 1870 to 1879
+15,1900s,the decade from 1900 to 1909
+16,22-karat_gold,an alloy that contains 87 per cent gold
+17,24-karat_gold pure_gold,100 per cent gold
+18,24/7,uptime is 24 hours a day 7 days a week
+19,401-k_plan 401-k,a retirement savings plan that is funded by employee contributions and (often) matching contributions from the employer; contributions are made from your salary before taxes and the funds grow tax-free until they are withdrawn, at which point they can be converted into an IRA; funds can be transferred if you change employers and you can (to some extent) manage the investments yourself
+20,9/11 9-11 September_11 Sept._11 Sep_11,the day in 2001 when Arab suicide bombers hijacked United States airliners and used them as bombs
+21,A a,the 1st letter of the Roman alphabet
+22,A type_A group_A,the blood group whose red cells carry the A antigen
+23,A'man,the Israeli military intelligence which produces comprehensive national intelligence briefings for the prime minister and the cabinet
+24,A-horizon A_horizon,the top layer of a soil profile; usually contains humus
+25,A-line,women's clothing that has a fitted top and a flared skirt that is widest at the hemline; "it is called the A-line because the effect resembles the capital letter A"
+26,A-list,a list of names of specially favored people; "the boss gave me his A-list of people we should try to recruit"
+27,A-scan_ultrasonography,the use of ultrasonography to measure the length of the eyeball
+28,A-team,a group of elite soldiers or a leadership group of advisors or workers in an organization
+29,AB type_AB group_AB,the blood group whose red cells carry both the A and B antigens
+30,ABO_antibodies,blood type antibodies
+31,ABO_blood_group_system ABO_system ABO_group,a classification system for the antigens of human blood; used in blood transfusion therapy; four groups are A and B and AB and O
+32,ACE_inhibitor angiotensin-converting_enzyme_inhibitor,an antihypertensive drug that blocks the formation of angiotensin II in the kidney, leading to relaxation of the arteries; promotes the excretion of salt and water by inhibiting the activity of the angiotensin converting enzyme; also used to treat congestive heart failure
+33,ADA-SCID,SCID resulting from mutation of a gene that codes for adenosine deaminase
+34,AIDS acquired_immune_deficiency_syndrome,a serious (often fatal) disease of the immune system transmitted through blood products especially by sexual contact or contaminated needles
+35,ALGOL,(from a combination of ALGOrithmic and Language); a programming language used to express computer programs as algorithms
+36,AND_circuit AND_gate,a circuit in a computer that fires only when all of its inputs fire
+37,APC,a drug combination found in some over-the-counter headache remedies (aspirin and phenacetin and caffeine)
+38,ASCII_character,any member of the standard code for representing characters by binary numbers
+39,ASCII_character_set,(computer science) 128 characters that make up the ASCII coding scheme; "the ASCII character set is the most universal character coding set"
+40,ASCII_text_file,a text file that contains only ASCII characters without special formatting
+41,ASL American_sign_language,the sign language used in the United States
+42,AWOL,one who is away or absent without leave
+43,A_battery,the battery used to heat the filaments of a vacuum tube
+44,A_level,the advanced level of a subject taken in school (usually two years after O level)
+45,Aachen Aken Aix-la-Chapelle,a city in western Germany near the Dutch and Belgian borders; formerly it was Charlemagne's northern capital
+46,Aalborg Alborg,a city and port in northern Jutland
+47,Aalst,a town in central Belgium
+48,Aalto Alvar_Aalto Hugo_Alvar_Henrik_Aalto,Finnish architect and designer of furniture (1898-1976)
+49,Aare Aar Aare_River,a river in north central Switzerland that runs northeast into the Rhine
+50,Aaron,(Old Testament) elder brother of Moses and first high priest of the Israelites; created the golden calf
+51,Aaron Henry_Louis_Aaron Hank_Aaron,United States professional baseball player who hit more home runs than Babe Ruth (born in 1934)
+52,Ab Av,the eleventh month of the civil year; the fifth month of the ecclesiastical year in the Jewish calendar (in July and August)
+53,Abadan,a port city in southwestern Iran
+54,Abbe_condenser,a condenser having 2 or 3 lenses with wide aperture for use in microscopes
+55,Abecedarian,a 16th century sect of Anabaptists centered in Germany who had an absolute disdain for human knowledge
+56,Abel,(Old Testament) Cain and Abel were the first children of Adam and Eve born after the Fall of Man; Abel was killed by Cain
+57,Abel Niels_Abel Niels_Henrik_Abel,Norwegian mathematician (1802-1829)
+58,Abelard Peter_Abelard Pierre_Abelard,French philosopher and theologian; lover of Heloise (1079-1142)
+59,Abelian_group commutative_group,a group that satisfies the commutative law
+60,Abelmoschus genus_Abelmoschus,genus of tropical coarse herbs having large lobed leaves and often yellow flowers
+61,Aberdare,a mining town in southern Wales
+62,Aberdeen,a town in western Washington
+63,Aberdeen,a town in northeastern South Dakota
+64,Aberdeen,a town in northeastern Maryland
+65,Aberdeen,a city in northeastern Scotland on the North Sea
+66,Aberdeen_Angus Angus black_Angus,black hornless breed from Scotland
+67,Abidjan,city recognized by the United States as the capital of the Ivory Coast; largest city of the Ivory Coast
+68,Abies genus_Abies,true firs
+69,Abilene,a city in central Texas
+70,Abilene,a town in central Kansas to the west of Topeka; home of Dwight D. Eisenhower
+71,Abkhaz Abkhas,Circassian people living east of the Black Sea
+72,Abkhaz Abkhazia,an autonomous province of Georgia on the Black Sea; a strong independence movement has resulted in much instability
+73,Abkhaz Abkhazian Abkhas Abkhasian,a member of the Circassian people who live to the east of the Black Sea
+74,Abkhazian Abkhasian,a Circassian language spoken by the Abkhaz
+75,Abnaki,the Algonquian language spoken by the Abnaki and Penobscot
+76,Abnaki Abenaki,a member of the Algonquian people of Maine and southern Quebec
+77,Abney_level,a surveying instrument consisting of a spirit level and a sighting tube; used to measure the angle of inclination of a line from the observer to the target
+78,Aborigine native_Australian Australian_Aborigine,a member of the people living in Australia when Europeans arrived
+79,Abraham Ibrahim,the first of the Old Testament patriarchs and the father of Isaac; according to Genesis, God promised to give Abraham's family (the Hebrews) the land of Canaan (the Promised Land); God tested Abraham by asking him to sacrifice his son; "Judaism, Christianity, and Islam each has a special claim on Abraham"
+80,Abraham's_bosom bosom_of_Abraham,the place where the just enjoy the peace of heaven after death
+81,Abramis genus_Abramis,European fishes
+82,Abrocoma genus_Abrocoma,abrocomes
+83,Abronia genus_Abronia,genus of western North American herbs having showy flowers
+84,Abruzzi Abruzzi_e_Molise,a mountainous region of central Italy on the Adriatic
+85,Abstract_Expressionism action_painting,a New York school of painting characterized by freely created abstractions; the first important school of American painting to develop independently of European styles
+86,Abu_Dhabi United_Arab_Emirates's_capital,a sheikhdom of eastern Arabia and capital of the United Arab Emirates
+87,Abu_Hafs_al-Masri_Brigades,a terrorist group that has worked with Al Qaeda; claimed responsibility for attacks in Iraq and Turkey
+88,Abu_Sayyaf Bearer_of_the_Sword,a small gang of terrorist thugs claiming to seek a separate Islamic state for the Muslim minority in the Philippines; uses bombing and assassination and extortion and kidnapping; "In 2001 Abu Sayyaf kidnapped twenty people and beheaded one of the American captives"
+89,Abudefduf genus_Abudefduf,damsel fishes
+90,Abuja capital_of_Nigeria Nigerian_capital,capital of Nigeria in the center of the country
+91,Abukir Abukir_Bay,a bay on the Mediterranean Sea in northern Egypt
+92,Abutilon genus_Abutilon,herbs or shrubs or small trees: flowering maple; Indian mallow
+93,Abydos,an ancient Greek colony on the Asiatic side of the Dardanelles; scene of the legend of Hero and Leander
+94,Abyssinian Abyssinian_cat,a small slender short-haired breed of African origin having brownish fur with a reddish undercoat
+95,Abyssinian_banana Ethiopian_banana Ensete_ventricosum Musa_ensete,large evergreen arborescent herb having huge paddle-shaped leaves and bearing inedible fruit that resemble bananas but edible young flower shoots; sometimes placed in genus Musa
+96,Academy_Award Oscar,an annual award by the Academy of Motion Picture Arts and Sciences for achievements in motion picture production and performance
+97,Academy_of_Motion_Picture_Arts_and_Sciences,an academy that gives annual awards for achievements in motion picture production and performance
+98,Academy_of_Television_Arts_and_Sciences,an academy that gives annual awards for outstanding achievements in television
+99,Acadia,the French-speaking part of the Canadian Maritime Provinces
+100,Acadia_National_Park,a national park in Maine showing marine erosion and glaciation; includes seashore and also the highest point on the Atlantic coast
+101,Acadian,an early French settler in the Maritimes
+102,Acalypha genus_Acalypha,a genus of herbs and shrubs belonging to the family Euphorbiaceae
+103,Acanthaceae family_Acanthaceae acanthus_family,widely distributed herbs and shrubs and trees; sometimes placed in the order Scrophulariales
+104,Acanthisitta genus_Acanthisitta,a genus of Xenicidae
+105,Acanthocephala phylum_Acanthocephala,phylum or class of elongated wormlike parasites that live in the intestines of vertebrates: spiny-headed worms
+106,Acanthocereus genus_Acanthocereus,mostly trailing cacti having nocturnal white flowers; tropical America and Caribbean region
+107,Acanthocybium genus_Acanthocybium,wahoos
+108,Acanthophis genus_Acanthophis,Australian elapid snakes
+109,Acanthopterygii superorder_Acanthopterygii,teleost fishes having fins with sharp bony rays
+110,Acanthoscelides genus_Acanthoscelides,a genus of Bruchidae
+111,Acanthuridae family_Acanthuridae,surgeonfishes
+112,Acanthurus genus_Acanthurus,type genus of the Acanthuridae: doctorfishes
+113,Acapulco Acapulco_de_Juarez,a port and fashionable resort city on the Pacific coast of southern Mexico; known for beaches and water sports (including cliff diving)
+114,Acapulco_gold Mexican_green,a particularly potent variety of marijuana
+115,Acaridae family_Acaridae,mites
+116,Acarina order_Acarina,mites and ticks
+117,Accipiter genus_Accipiter,type genus of the family Accipitridae
+118,Accipitridae family_Accipitridae,hawks; Old World vultures; kites; harriers; eagles
+119,Accipitriformes order_Accipitriformes,in some classifications an alternative name for the Falconiformes
+120,Accra capital_of_Ghana,the capital and largest city of Ghana with a deep-water port
+121,Acer genus_Acer,type genus of the Aceraceae; trees or shrubs having winged fruit
+122,Aceraceae family_Aceraceae maple_family,a family of trees and shrubs of order Sapindales including the maples
+123,Achaea,a region of ancient Greece on the north coast of the Peloponnese
+124,Achaean Achaian,a member of one of four linguistic divisions of the prehistoric Greeks
+125,Achaean Arcado-Cyprians,the ancient Greek inhabitants of Achaea
+126,Acheron River_Acheron,(Greek mythology) a river in Hades across which the souls of the dead were carried by Charon
+127,Acherontia genus_Acherontia,death's-head moth
+128,Acheson Dean_Acheson Dean_Gooderham_Acheson,United States statesman who promoted the Marshall Plan and helped establish NATO (1893-1971)
+129,Acheson_process,an industrial process for making graphite by heating a mixture of coke and clay
+130,Acheta genus_Acheta,common house and field crickets
+131,Achilles,a mythical Greek hero of the Iliad; a foremost Greek warrior at the siege of Troy; when he was a baby his mother tried to make him immortal by bathing him in a magical river but the heel by which she held him remained vulnerable--his `Achilles' heel'
+132,Achilles'_heel,a seemingly small but actual mortal weakness
+133,Achilles_tendon tendon_of_Achilles,a large tendon that runs from the heel to the calf
+134,Achoerodus genus_Achoerodus,a genus of Labridae
+135,Achomawi,a member of the Achomawi community of northeastern California
+136,Achomawi,a community of Native Americans who speak a Hokan language and live in northeastern California
+137,Achomawi,the Shastan language spoken by the Achomawi
+138,Achras genus_Achras,tropical trees having papery leaves and large fruit
+139,Acinonyx genus_Acinonyx,cheetahs
+140,Acinos genus_Acinos,plants closely allied to the genera Satureja and Calamintha
+141,Acipenser genus_Acipenser,type genus of the Acipenseridae: sturgeons
+142,Acipenseridae family_Acipenseridae,sturgeons
+143,Acnidosporidia subclass_Acnidosporidia,a subclass of Sporozoa
+144,Acocanthera genus_Acocanthera Acokanthera genus_Acokanthera,small genus of trees and shrubs containing strongly toxic cardiac glycosides; Arabia to Africa
+145,Aconcagua,the highest mountain in the western hemisphere; located in the Andes in western Argentina (22,834 feet high)
+146,Aconitum genus_Aconitum,genus of poisonous plants of temperate regions of northern hemisphere with a vaulted and enlarged petal
+147,Acoraceae subfamily_Acoraceae,used in some classifications for the genus Acorus which is usually assigned to Araceae
+148,Acorus genus_Acorus,sweet flags; sometimes placed in subfamily Acoraceae
+149,Acrasiomycetes class_Acrasiomycetes,cellular slime molds; in some classifications placed in kingdom Protoctista
+150,Acre,a territory of western Brazil bordering on Bolivia and Peru
+151,Acre Akko Akka Accho,a town and port in northwestern Israel in the eastern Mediterranean
+152,Acrididae family_Acrididae Locustidae family_Locustidae,short-horned grasshoppers; true locusts
+153,Acridotheres genus_Acridotheres,mynas
+154,Acris genus_Acris,cricket frogs
+155,Acrobates genus_Acrobates,a genus of Phalangeridae
+156,Acrocarpus genus_Acrocarpus,small genus of trees of Indonesia and Malaysia
+157,Acrocephalus genus_Acrocephalus,a genus of Sylviidae
+158,Acroclinium genus_Acroclinium,genus of herbs and shrubs of Australia and South Africa: everlasting flower; most species usually placed in genus Helipterum
+159,Acrocomia genus_Acrocomia,Central and South American feather palms
+160,Acropora genus_Acropora,coelenterate genus of order Madreporaria, including staghorn corals
+161,Acrostichum genus_Acrostichum,in some classification systems placed in family Polypodiaceae
+162,Actaea genus_Actaea,baneberry
+163,Actias genus_Actias,luna moths
+164,Actifed,trade name for a drug containing an antihistamine and a decongestant; used to treat upper respiratory conditions and minor allergies
+165,Actinia genus_Actinia,a genus of sea anemone common in rock pools
+166,Actiniaria order_Actiniaria Actinaria order_Actinaria,sea anemones
+167,Actinidia genus_Actinidia,small Asiatic woody vine bearing many-seeded fruit
+168,Actinidiaceae family_Actinidiaceae,tropical trees or shrubs or woody vines
+169,Actiniopteris genus_Actiniopteris,terrestrial ferns of tropical Asia and Africa
+170,Actinomeris genus_Actinomeris,used in some classification systems for plants now included in genus Verbesina
+171,Actinomycetaceae family_Actinomycetaceae,filamentous anaerobic bacteria
+172,Actinomycetales order_Actinomycetales,filamentous or rod-shaped bacteria
+173,Actinomyxidia order_Actinomyxidia,parasites of worms
+174,Actinopoda subclass_Actinopoda,heliozoans; radiolarians
+175,Actitis genus_Actitis,a genus of Scolopacidae
+176,Actium,an ancient town on a promontory in western Greece
+177,Actium,the naval battle in which Antony and Cleopatra were defeated by Octavian's fleet under Agrippa in 31 BC
+178,Acts_of_the_Apostles Acts,a New Testament book describing the development of the early church from Christ's Ascension to Paul's sojourn at Rome
+179,Adad,Babylonian god of storms and wind
+180,Adalia genus_Adalia,genus of ladybugs
+181,Adam,(Old Testament) in Judeo-Christian mythology; the first man and the husband of Eve and the progenitor of the human race
+182,Adam Robert_Adam,Scottish architect who designed many public buildings in England and Scotland (1728-1792)
+183,Adam ecstasy XTC go disco_biscuit cristal X hug_drug,street names for methylenedioxymethamphetamine
+184,Adam's_Peak Samanala,a mountain peak in south central Sri Lanka (7,360 feet high)
+185,Adam's_needle Adam's_needle-and-thread spoonleaf_yucca needle_palm Yucca_filamentosa,yucca with long stiff leaves having filamentlike appendages
+186,Adams John_Adams President_Adams President_John_Adams,2nd President of the United States (1735-1826)
+187,Adams John_Quincy_Adams President_Adams President_John_Quincy_Adams,6th President of the United States; son of John Adams (1767-1848)
+188,Adams Mount_Adams,a mountain peak in southwestern Washington in the Cascade Range (12,307 feet high)
+189,Adams Sam_Adams Samuel_Adams,American Revolutionary leader and patriot; an organizer of the Boston Tea Party and signer of the Declaration of Independence (1722-1803)
+190,Adana Seyhan,a city in southern Turkey on the Seyhan River
+191,Adansonia genus_Adansonia,baobab; cream-of-tartar tree
+192,Adapa,a Babylonian demigod or first man (sometimes identified with Adam)
+193,Adapid Adapid_group,extinct small mostly diurnal lower primates that fed on leaves and fruit; abundant in North America and Europe 30 to 50 million years ago; their descendents probably include the lemurs; some authorities consider them ancestral to anthropoids but others consider them only cousins
+194,Adar,the sixth month of the civil year; the twelfth month of the ecclesiastic year in the Jewish calendar (in February and March)
+195,Addis_Ababa New_Flower capital_of_Ethiopia,the capital of Ethiopia and the country's largest city; located in central Ethiopia
+196,Addison's_disease Addison's_syndrome hypoadrenalism hypoadrenocorticism,a glandular disorder caused by failure of function of the cortex of the adrenal gland and marked by anemia and prostration with brownish skin
+197,Additions_to_Esther,an Apocryphal book consisting of text added to the Book of Esther
+198,Adelaide,the state capital of South Australia
+199,Adelges genus_Adelges,type genus of the Adelgidae: plant lice
+200,Adelgidae family_Adelgidae,plant lice
+201,Adelie Adelie_penguin Pygoscelis_adeliae,medium-sized penguins occurring in large colonies on the Adelie Coast of Antarctica
+202,Adelie_Land Terre_Adelie Adelie_Coast,a costal region of Antarctica to the south of Australia; noted for its large colonies of penguins
+203,Aden,an important port of Yemen; located on the Gulf of Aden; its strategic location has made it a major trading center of southern Arabia since ancient times
+204,Adenanthera genus_Adenanthera,small genus of trees of tropical Asia and Pacific areas
+205,Adenauer Konrad_Adenauer,German statesman; chancellor of West Germany (1876-1967)
+206,Adenium genus_Adenium,one species: succulent shrub or tree of tropical Africa and Arabia
+207,Adenota genus_Adenota,African antelopes: puku
+208,Adi_Granth Granth Granth_Sahib,the principal sacred text of Sikhism contains hymns and poetry as well as the teachings of the first five gurus
+209,Adiantaceae family_Adiantaceae,used in some classification systems for some genera of the family Polypodiaceae (or Pteridaceae)
+210,Adiantum genus_Adiantum,cosmopolitan genus of ferns: maidenhair ferns; in some classification systems placed in family Polypodiaceae or Adiantaceae
+211,Adige River_Adige,a river in northern Italy that flows southeast into the Adriatic Sea; "Verona is on the Adige"
+212,Adirondacks Adirondack_Mountains,a mountain range in northeastern New York State; a popular resort area
+213,Aditi,a Hindu goddess who releases from sin or disease; mother of the Adityas
+214,Aditya,one of 7 to 12 sons of Aditi; Hindu gods of celestial light
+215,Adlumia genus_Adlumia,one species: climbing fumitory
+216,Admiralty_Island,an Alaskan island in the Alexander Archipelago near Juneau
+217,Admiralty_Islands,a group of islands in the Bismarck Archipelago
+218,Admiralty_Range,mountains in Antarctica to the north of Victoria Land
+219,Admission_Day,in some states of the United States: a legal holiday commemorating the day the state was admitted to the Union
+220,Adonic Adonic_line,a verse line with a dactyl followed by a spondee or trochee; supposedly used in laments by Adonis
+221,Adonis,(Greek mythology) a handsome youth loved by both Aphrodite and Persephone; "when Adonis died Zeus decreed that he should spend winters in the underworld with Persephone and spend summers with Aphrodite"
+222,Adonis genus_Adonis,annual or perennial herbs
+223,Adrian Edgar_Douglas_Adrian Baron_Adrian,English physiologist who conducted research into the function of neurons; 1st baron of Cambridge (1889-1997)
+224,Adriatic Adriatic_Sea,an arm of the Mediterranean between Slovenia and Croatia and Montenegro and Albania on the east and Italy on the west
+225,Advanced_Research_and_Development_Activity ARDA,an agency of the Intelligence Community that conducts advanced research and development related to information technology
+226,Advent,the season including the four Sundays preceding Christmas
+227,Advent_Sunday,the first of the four Sundays during Advent
+228,Adventism Second_Adventism,any Christian religion that believes the second coming of Christ is imminent
+229,Adventist Second_Adventist,a member of Christian denomination that expects the imminent advent of Christ
+230,Adzhar Adzharia,an autonomous province of Georgia on the Black Sea
+231,Aedes genus_Aedes,yellow-fever mosquitos
+232,Aegates_Isles Aegadean_Isles,islands west of Sicily (now known as the Egadi Islands) where the Romans won a naval victory over the Carthaginians that ended the first Punic War in 241 BC
+233,Aegean Aegean_Sea,an arm of the Mediterranean between Greece and Turkey; a main trade route for the ancient civilizations of Crete and Greece and Rome and Persia
+234,Aegean_civilization Aegean_civilisation Aegean_culture,the prehistoric civilization on the islands in the Aegean sea and the surrounding countries; "by 800 BC the entire Aegean had adopted this style of pottery"
+235,Aegean_island,an island in the Aegean Sea
+236,Aegiceras genus_Aegiceras,a genus of herbs of the family Verbenaceae
+237,Aegilops genus_Aegilops,goat grass
+238,Aegina,small medusa
+239,Aegina Aigina,an island in the Aegean Sea in the Saronic Gulf
+240,Aegisthus,(Greek mythology) the seducer of Clytemnestra and murderer of Agamemnon who usurped the throne of Mycenae until Agamemnon's son Orestes returned home and killed him
+241,Aegospotami Aegospotamos,a creek emptying into the Hellespont in present-day Turkey; at its mouth in 405 BC the Spartan fleet under Lysander defeated the Athenians and ended the Peloponnesian War
+242,Aegospotami Aegospotamos,a river in ancient Thrace (now Turkey); in the mouth of this river the Spartan fleet under Lysander destroyed the Athenian fleet in the final battle of the Peloponnesian War (404 BC)
+243,Aegypiidae family_Aegypiidae,in some classifications considered the family comprising the Old World vultures which are more often included in the family Accipitridae
+244,Aegypius genus_Aegypius,a genus of Accipitridae
+245,Aegyptopithecus,extinct primate of about 38 million years ago; fossils found in Egypt
+246,Aeneas,a mythical Greek warrior who was a leader on the Trojan side of the Trojan War; hero of the Aeneid
+247,Aeneid,an epic in Latin by Virgil; tells the adventures of Aeneas after the Trojan War; provides an illustrious historical background for the Roman Empire
+248,Aeolian,the ancient Greek inhabitants of Aeolia
+249,Aeolian Eolian,a member of one of four linguistic divisions of the prehistoric Greeks
+250,Aeolic Aeolic_dialect Eolic,the dialect of Ancient Greek spoken in Thessaly and Boeotia and Aeolis
+251,Aeolis Aeolia,an ancient coastal region of northwestern Asia Minor (including Lesbos) where the Aeolians founded several cities around 1100 BC
+252,Aeolus,god of the winds in ancient mythology
+253,Aeonium genus_Aeonium,a genus of plants of the family Crassulaceae
+254,Aepyceros genus_Aepyceros,African antelopes: impalas
+255,Aepyornidae family_Aepyornidae,coextensive with the order Aepyorniformes
+256,Aepyorniformes order_Aepyorniformes,huge extinct flightless birds: elephant birds
+257,Aerobacter genus_Aerobacter,aerobic bacteria widely distributed in nature
+258,Aerobacter_aerogenes,a species of Gram-negative aerobic bacteria that produce gas and acid from sugars and are sometimes involved in the souring of milk
+259,Aertex,a trademark for a loosely woven cotton fabric that is used to make shirts and underwear
+260,Aeschylus,Greek tragedian; the father of Greek tragic drama (525-456 BC)
+261,Aesculapius Asclepius Asklepios,son of Apollo; a hero and the Roman god of medicine and healing; his daughters were Hygeia and Panacea
+262,Aesculus genus_Aesculus,deciduous trees or some shrubs of North America; southeastern Europe; eastern Asia
+263,Aesir,(Norse mythology) the chief of gods living at Asgard
+264,Aesop,Greek author of fables (circa 620-560 BC)
+265,Aesop's_fables,a collection of fables believed to have been written by the Greek storyteller Aesop
+266,Aether,personification of the sky or upper air breathed by the Olympians; son of Erebus and night or of Chaos and darkness
+267,Aethionema genus_Aethionema,Old World genus of the family Cruciferae
+268,Aethusa genus_Aethusa,fool's parsley
+269,Aetobatus genus_Aetobatus,a genus of Myliobatidae
+270,Affirmed,thoroughbred that won the triple crown in 1978
+271,Afghan Afghanistani,a native or inhabitant of Afghanistan
+272,Afghan_hound Afghan,tall graceful breed of hound with a long silky coat; native to the Near East
+273,Afghan_monetary_unit,monetary unit in the Islamic State of Afghanistan
+274,Afghanistan Islamic_State_of_Afghanistan,a mountainous landlocked country in central Asia; bordered by Iran to the west and Russia to the north and Pakistan to the east and south; "Soviet troops invaded Afghanistan in 1979"
+275,Aframomum genus_Aframomum,an African genus of plants of the family Zingiberaceae
+276,Africa,the second largest continent; located to the south of Europe and bordered to the west by the South Atlantic and to the east by the Indian Ocean
+277,African,a native or inhabitant of Africa
+278,African_American_Vernacular_English AAVE African_American_English Black_English Black_English_Vernacular Black_Vernacular Black_Vernacular_English Ebonics,a nonstandard form of American English characteristically spoken by African Americans in the United States
+279,African_bowstring_hemp African_hemp Sansevieria_guineensis,bowstring hemp of South Africa
+280,African_chameleon Chamaeleo_chamaeleon,a chameleon found in Africa
+281,African_clawed_frog Xenopus_laevis,a tongueless frog native to Africa; established in the United States as result of release of laboratory and aquarium animals
+282,African_coral_snake Aspidelaps_lubricus,small widely distributed arboreal snake of southern Africa banded in black and orange
+283,African_country African_nation,any one of the countries occupying the African continent
+284,African_crocodile Nile_crocodile Crocodylus_niloticus,a dangerous crocodile widely distributed in Africa
+285,African_daisy,African or Asiatic herbs with daisylike flowers
+286,African_daisy,any of several plants of the genus Arctotis having daisylike flowers
+287,African_daisy yellow_ageratum Lonas_inodora Lonas_annua,shrub of southwestern Mediterranean region having yellow daisylike flowers
+288,African_elephant Loxodonta_africana,an elephant native to Africa having enormous flapping ears and ivory tusks
+289,African_grey African_gray Psittacus_erithacus,commonly domesticated grey parrot with red-and-black tail and white face; native to equatorial Africa
+290,African_hemp Sparmannia_africana,large shrub of South Africa having many conspicuously hairy branches with large hairy leaves and clusters of conspicuous white flowers
+291,African_holly Solanum_giganteum,woolly-stemmed biennial arborescent shrub of tropical Africa and southern Asia having silvery-white prickly branches, clusters of blue or white flowers, and bright red berries resembling holly berries
+292,African_hunting_dog hyena_dog Cape_hunting_dog Lycaon_pictus,a powerful doglike mammal of southern and eastern Africa that hunts in large packs; now rare in settled area
+293,African_lily African_tulip blue_African_lily Agapanthus_africanus,African plant with bright green evergreen leaves and umbels of many usually deep violet-blue flowers
+294,African_mahogany,African tree having hard heavy odorless wood
+295,African_marigold big_marigold Aztec_marigold Tagetes_erecta,a stout branching annual with large yellow to orange flower heads; Mexico and Central America
+296,African_monitor Varanus_niloticus,destroys crocodile eggs
+297,African_oil_palm Elaeis_guineensis,oil palm of Africa
+298,African_scented_mahogany cedar_mahogany sapele_mahogany Entandrophragma_cylindricum,African tree having rather lightweight cedar-scented wood varying in color from pink to reddish brown
+299,African_violet Saintpaulia_ionantha,tropical African plant cultivated as a houseplant for its violet or white or pink flowers
+300,African_walnut Lovoa_klaineana,tropical African timber tree with wood that resembles mahogany
+301,African_wild_ass Equus_asinus,a wild ass of Africa
+302,Africander,tall large-horned humped cattle of South Africa; used for meat or draft
+303,Africanized_bee Africanized_honey_bee killer_bee Apis_mellifera_scutellata Apis_mellifera_adansonii,a strain of bees that originated in Brazil in the 1950s as a cross between an aggressive African bee and a honeybee; retains most of the traits of the African bee; now spread as far north as Texas
+304,Afrikaans Taal,an official language of the Republic of South Africa; closely related to Dutch and Flemish
+305,Afrikaner Afrikander Boer,a white native of Cape Province who is a descendant of Dutch settlers and who speaks Afrikaans
+306,Afro Afro_hairdo,a rounded thickly curled hairdo
+307,Afro-wig,a wig that gives the appearance of an Afro hairdo
+308,Afroasiatic Afro-Asiatic Afroasiatic_language Afrasian Afrasian_language Hamito-Semitic,a large family of related languages spoken both in Asia and Africa
+309,Afrocarpus genus_Afrocarpus,dioecious evergreen trees or shrubs; equatorial to southern and southeastern Africa: yellowwood; similar to trees or genus Podocarpus
+310,Aga Agha,title for a civil or military leader (especially in Turkey)
+311,Agalinis genus_Agalinis,semiparasitic herb with purple or white or pink flowers; grows in the United States and West Indies
+312,Agamemnon,(Greek mythology) the king who lead the Greeks against Troy in the Trojan War
+313,Agamidae family_Agamidae,an Old World reptile family of Sauria
+314,Agapornis genus_Agapornis,a genus of Psittacidae
+315,Agaricaceae family_Agaricaceae,large family including many familiar mushrooms
+316,Agaricales order_Agaricales,typical gilled mushrooms belonging to the subdivision Basidiomycota
+317,Agaricus genus_Agaricus,type genus of Agaricaceae; gill fungi having brown spores and including several edible species
+318,Agassiz Louis_Agassiz Jean_Louis_Rodolphe_Agassiz,United States naturalist (born in Switzerland) who studied fossil fish; recognized geological evidence that ice ages had occurred in North America (1807-1873)
+319,Agastache genus_Agastache,giant hyssop; Mexican hyssop
+320,Agathis genus_Agathis,kauri pine
+321,Agavaceae family_Agavaceae agave_family sisal_family,chiefly tropical and xerophytic plants: includes Dracenaceae (Dracaenaceae); comprises plants that in some classifications are divided between the Amaryllidaceae and the Liliaceae
+322,Agave_tequilana,Mexican plant used especially for making tequila
+323,Agdestis genus_Agdestis,a genus with one species that is a rapidly growing climbing vine with tuberous roots; grown in hot climates
+324,Agdistis,Asiatic epithet for Rhea or Cybele
+325,Agee James_Agee,United States novelist (1909-1955)
+326,Agelaius genus_Agelaius,red-winged blackbirds
+327,Agent_Orange,a herbicide used in the Vietnam War to defoliate forest areas
+328,Ageratina genus_Ageratina,annual to perennial herbs or shrubs of eastern United States and Central and South America
+329,Aghan Margasivsa,the ninth month of the Hindu calendar
+330,Agincourt,a battle in northern France in which English longbowmen under Henry V decisively defeated a much larger French army in 1415
+331,Agkistrodon genus_Agkistrodon Ancistrodon genus_Ancistrodon,copperheads
+332,Aglaia,(Greek mythology) one of the three Graces
+333,Aglaomorpha genus_Aglaomorpha,epiphytic ferns of tropical Asia
+334,Aglaonema genus_Aglaonema,climbing herbs of southeastern Asia having thick fleshy oblong leaves and naked unisexual flowers: Chinese evergreen
+335,Agnatha superclass_Agnatha,superclass of eel-shaped chordates lacking jaws and pelvic fins: lampreys; hagfishes; some extinct forms
+336,Agni,(Sanskrit) Hindu god of fire in ancient and traditional India; one of the three chief deities of the Vedas
+337,Agnus_Dei,a liturgical prayer beginning with these Latin words
+338,Agnus_Dei Paschal_Lamb,figure of a lamb; emblematic of Christ
+339,Agonidae family_Agonidae,poachers
+340,Agonus genus_Agonus,type genus of the Agonidae
+341,Agra,a city in northern India; former capital of the Mogul empire; site of the Taj Mahal
+342,Agricola Gnaeus_Julius_Agricola,Roman general who was governor of Britain and extended Roman rule north to the Firth of Forth (37-93)
+343,Agrigento Acragas,a town in Italy in southwestern Sicily near the coast; the site of six Greek temples
+344,Agriocharis genus_Agriocharis,a genus of birds of the family Meleagrididae including the ocellated turkey
+345,Agrippa Marcus_Vipsanius_Agrippa,Roman general who commanded the fleet that defeated the forces of Antony and Cleopatra at Actium (63-12 BC)
+346,Agrippina Agrippina_the_Elder,granddaughter of Augustus and mother of Caligula and Agrippina the Younger (14 BC - AD 33)
+347,Agrippina Agrippina_the_Younger,wife who poisoned Claudius after her son Nero was declared heir and who was then put to death by Nero
+348,Agrobacterium genus_Agrobacterium,small motile bacterial rods that can reduce nitrates and cause galls on plant stems
+349,Agrobacterium_tumefaciens,the bacteria that produce crown gall disease in plants
+350,Agropyron genus_Agropyron,perennial grasses of temperate and cool regions: wheatgrass; dog grass
+351,Agrostemma genus_Agrostemma,a caryophylloid dicot genus including corn cockles
+352,Agrostis genus_Agrostis,annual or perennial grasses cosmopolitan in northern hemisphere: bent grass (so named from `bent' meaning an area of unfenced grassland)
+353,Ahab,according to the Old Testament he was a pagan king of Israel and husband of Jezebel (9th century BC)
+354,Ahriman,the spirit of evil in Zoroastrianism; arch rival of Ormazd
+355,Ahuehuete Tule_tree,Mexico's most famous tree; a giant specimen of Montezuma cypress more than 2,000 years old with a girth of 165 feet at Santa Maria del Tule; "some say the Tule tree is the world's largest single biomass"
+356,Ahura,(Zoroastrianism) title for benevolent deities
+357,Aiken Conrad_Aiken Conrad_Potter_Aiken,United States writer (1889-1973)
+358,Ailey Alvin_Ailey,United States choreographer noted for his use of African elements (born in 1931)
+359,Ailuropoda genus_Ailuropoda,only the giant panda: in some classifications considered a genus of the separate family Ailuropodidae
+360,Ailuropodidae family_Ailuropodidae,in some classifications considered the family comprising the giant pandas
+361,Ailurus genus_Ailurus,lesser pandas
+362,Air_Combat_Command ACC,a command that is the primary provider of air combat weapon systems to the United States Air Force; operates fighter, bomber, reconnaissance, battle-management, and rescue aircraft
+363,Air_Corps,formerly the airborne division of the United States Army
+364,Air_Force_Intelligence_Surveillance_and_Reconnaissance Air_Force_ISR AFISR,an agency focused on ensuring that the United States military attains information superiority; operates worldwide ground sites and an array of airborne reconnaissance and surveillance platforms
+365,Air_Force_Research_Laboratory AFRL,a United States Air Force defense laboratory responsible for discovering and developing and integrating fighting technologies for aerospace forces
+366,Air_Force_Space_Command AFSPC,a command of the United States Air Force that is responsible for defending the United States through its space and intercontinental ballistic missile operations
+367,Air_Medal,a United States Air Force decoration for meritorious achievement while participating in an aerial flight
+368,Air_National_Guard ANG,a civilian reserve component of the United States Air Force that provides prompt mobilization during war and assistance during national emergencies
+369,Aire River_Aire Aire_River,a river in northern England that flows southeast through West Yorkshire
+370,Airedale Airedale_terrier,breed of large wiry-coated terrier bred in Yorkshire
+371,Aix genus_Aix,wood duck and mandarin duck
+372,Aizoaceae family_Aizoaceae Tetragoniaceae family_Tetragoniaceae carpetweed_family,succulent herbs or small shrubs mostly of South Africa but also New Zealand and North America: carpetweeds; fig marigolds
+373,Ajaia genus_Ajaia,a genus of Platalea
+374,Ajax,a mythical Greek hero; a warrior who fought against Troy in the Iliad
+375,Ajuga genus_Ajuga,bugle
+376,Akan,a Kwa language spoken in Ghana and the Ivory Coast
+377,Akeridae family_Akeridae,bubble shells
+378,Akhbari,a religious movement by Arab Shiite Muslims in 17th century Iraq that is opposed to the Usuli; "Akhbari Shiism has never promoted political control"
+379,Akhenaton Akhenaten Ikhanaton Amenhotep_IV,early ruler of Egypt who rejected the old gods and replaced them with sun worship (died in 1358 BC)
+380,Akkadian,an ancient branch of the Semitic languages
+381,Akron,a city in northeastern Ohio; the heart of the United States rubber industry
+382,Aksa_Martyrs_Brigades al-Aksa_Martyrs_Brigades Martyrs_of_al-Aqsa,a militant offshoot of al-Fatah that is the newest and strongest and best equipped faction active in the West Bank; responsible for many deadly attacks in Israel in 2002
+383,Akwa'ala,a member of the Akwa'ala community in Baja California
+384,Akwa'ala,a community of Native Americans who speak a Hokan language and live in Baja California
+385,Akwa'ala,the Yuman language spoken by the Akwa'ala
+386,Al-hakim,an Ismaili caliph of Egypt who declared himself an incarnation of God and founded the Druze religious sect (985-1021)
+387,Al_Aqabah Aqaba Akaba,Jordan's port; located in southwestern Jordan on the Gulf of Aqaba
+388,Al_Ladhiqiyah Latakia,a seaport on the western coast of Syria
+389,Al_Nathir,a Palestinian terrorist organization formed in 2002 and linked to Fatah movement of Yasser Arafat
+390,Alabama,a member of the Muskhogean people formerly living in what is now the state of Alabama; "the Alabamas were members of the Creek Confederacy"
+391,Alabama,the Muskhogean language of the Alabama
+392,Alabama Alabama_River,a river in Alabama formed by the confluence of the Coosa and Tallapoosa Rivers near Montgomery; flows southwestward to become a tributary of the Mobile River
+393,Alabama Heart_of_Dixie Camellia_State AL Ala.,a state in the southeastern United States on the Gulf of Mexico; one of the Confederate states during the American Civil War
+394,Alabaman Alabamian,a native or resident of Alabama
+395,Aladdin,in the Arabian Nights a boy who acquires a magic lamp from which he can summon a genie
+396,Aladdin's_lamp,(Arabian Nights) a magical lamp from which Aladdin summoned a genie
+397,Alamo,a siege and massacre at a mission in San Antonio in 1836; Mexican forces under Santa Anna besieged and massacred American rebels who were fighting to make Texas independent of Mexico
+398,Aland_islands Aaland_islands Ahvenanmaa,an archipelago of some 6,000 islands in the Gulf of Bothnia under Finnish control
+399,Alar daminozide,a chemical sprayed on fruit trees to regulate their growth so the entire crop can be harvested at one time
+400,Alaric,king of the Visigoths who captured Rome in 410 (370-410)
+401,Alaska Last_Frontier AK,a state in northwestern North America; the 49th state admitted to the union; "Alaska is the largest state in the United States"
+402,Alaska_Native Alaskan_Native Native_Alaskan,a member or descendant of any of the aboriginal peoples of Alaska
+403,Alaska_Peninsula,a peninsula of southwestern Alaska (a continuation of the Aleutian Islands)
+404,Alaska_Range,a mountain range in south central Alaska; contains Mount McKinley
+405,Alaska_Standard_Time Yukon_Time,standard time in the 9th time zone west of Greenwich, reckoned at the 135th meridian west; used in Hawaii and most of Alaska
+406,Alaska_fur_seal Callorhinus_ursinus,of Pacific coast from Alaska southward to California
+407,Alaska_king_crab Alaskan_king_crab king_crab Alaska_crab,meat of large cold-water crab; mainly leg meat
+408,Alaska_rein_orchid Habenaria_unalascensis,similar to coastal rein orchid but with smaller flowers; Alaska to Baja California and east to the Dakotas and Colorado
+409,Alaskan,a native or resident of Alaska
+410,Alaskan_brown_bear Kodiak_bear Kodiak Ursus_middendorffi Ursus_arctos_middendorffi,brown bear of coastal Alaska and British Columbia
+411,Alaskan_pipeline trans-Alaska_pipeline,an oil pipeline that runs 800 miles from wells at Prudhoe Bay to the port of Valdez
+412,Alauda genus_Alauda,type genus of the Alaudidae: skylarks
+413,Alaudidae family_Alaudidae,larks
+414,Albania Republic_of_Albania,a republic in southeastern Europe on the Adriatic coast of the Balkan Peninsula
+415,Albanian,a native or inhabitant of Albania
+416,Albanian,the Indo-European language spoken by the people of Albania
+417,Albanian_monetary_unit,monetary unit in Albania
+418,Albany,a town in southwest Georgia; processing center for peanuts and pecans
+419,Albany capital_of_New_York,state capital of New York; located in eastern New York State on the west bank of the Hudson river
+420,Albatrellus genus_Albatrellus,a genus of fungi belonging to the family Polyporaceae
+421,Albatrellus_dispansus,a rare fungus having a large (up to 14 inches wide) yellow fruiting body with multiple individual caps and a broad central stalk and a fragrant odor
+422,Albatrellus_ovinus sheep_polypore,a fungus with a whitish often circular cap and a white pore surface and small pores and a white central stalk; found under conifers; edible but not popular
+423,Albee Edward_Albee Edward_Franklin_Albeen,United States dramatist (1928-)
+424,Albers Josef_Albers,United States painter born in Germany; works characterized by simple geometrical patterns in various colors (1888-1976)
+425,Albert Prince_Albert Albert_Francis_Charles_Augustus_Emmanuel,prince consort of Queen Victoria of England (1819-1861)
+426,Alberta,one of the three prairie provinces in western Canada; rich in oil and natural gas and minerals
+427,Alberti Leon_Battista_Alberti,Italian architect and painter; pioneering theoretician of Renaissance architecture (1404-1472)
+428,Albigenses Cathars Cathari,a Christian religious sect in southern France in the 12th and 13th centuries; believers in Albigensianism
+429,Albigensianism Catharism,a Christian movement considered to be a medieval descendant of Manichaeism in southern France in the 12th and 13th centuries; characterized by dualism (asserted the coexistence of two mutually opposed principles, one good and one evil); was exterminated for heresy during the Inquisition
+430,Albion,archaic name for England or Great Britain; used poetically
+431,Albright's_disease polyostotic_fibrous_dysplasia,fibrous dysplasia of bone affecting multiple bones
+432,Albuginaceae family_Albuginaceae,fungi that produce white sori resembling blisters on certain flowering plants
+433,Albugo genus_Albugo,type genus of the Albuginaceae; fungi causing white rusts
+434,Albula genus_Albula,type and sole genus of the family Albulidae
+435,Albulidae family_Albulidae,bonefish
+436,Albuquerque,the largest city in New Mexico; located in central New Mexico on the Rio Grande river
+437,Alca genus_Alca,type genus of the Alcidae comprising solely the razorbill
+438,Alcaeus,Greek lyric poet of Lesbos; reputed inventor of Alcaic verse (611-580 BC)
+439,Alcaic Alcaic_verse,verse in the meter used in Greek and Latin poetry consisting of strophes of 4 tetrametric lines; reputedly invented by Alcaeus
+440,Alcea genus_Alcea,genus of erect herbs of the Middle East having showy flowers: hollyhocks; in some classification systems synonymous with genus Althaea
+441,Alcedinidae family_Alcedinidae,kingfishers
+442,Alcedo genus_Alcedo,type genus of the Alcedinidae
+443,Alcelaphus genus_Alcelaphus,African antelopes: hartebeests
+444,Alces genus_Alces,elk or moose
+445,Alcibiades,ancient Athenian statesman and general in the Peloponnesian War (circa 450-404 BC)
+446,Alcidae family_Alcidae,web-footed diving seabirds of northern seas: auks; puffins; guillemots; murres; etc.
+447,Alcoholics_Anonymous AA,an international organization that provides a support group for persons trying to overcome alcoholism
+448,Alcott Louisa_May_Alcott,United States novelist noted for children's books (1832-1888)
+449,Alcyonacea suborder_Alcyonacea,comprising the soft corals
+450,Alcyonaria order_Alcyonaria,corals and sea anemones having eight branches
+451,Alcyone Halcyon,(Greek mythology) a woman who was turned into a kingfisher
+452,Aldebaran,the brightest star in Taurus
+453,Aldrovanda genus_Aldrovanda,one species: waterwheel plant
+454,Alectis genus_Alectis,a genus of Carangidae
+455,Alecto,one of the three Furies
+456,Alectoria genus_Alectoria,lichens having dark brown erect or pendulous much-branched cylindrical thallus
+457,Alectoris genus_Alectoris,a genus of Perdicidae
+458,Alectura genus_Alectura,brush turkeys
+459,Alepisaurus genus_Alepisaurus,slender scaleless predaceous tropical deep-sea fishes
+460,Aletris genus_Aletris,small genus of bitter-rooted herbs of eastern North America and Asia; sometimes placed in family Melanthiaceae
+461,Aleuria_aurantia orange_peel_fungus,a discomycete with bright orange cup-shaped or saucer-shaped fruiting bodies and pale orange exteriors
+462,Aleurites genus_Aleurites,candlenut
+463,Aleut,a community of Native Americans who speak an Eskimo-Aleut language and inhabit the Aleutian Islands and southwestern Alaska; "the Aleut and the Eskimo are related culturally and linguistically"
+464,Aleut,the language spoken by the Aleut
+465,Aleut Aleutian,a member of the people inhabiting the Aleutian Islands and southwestern Alaska
+466,Aleutian_Islands Aleutians,an archipelago in the North Pacific extending southwest from Alaska
+467,Alex_Boncayao_Brigade ABB Revolutionary_Proletarian_Army RPA-ABB,an urban hit squad and guerrilla group of the Communist Party in the Philippines; formed in the 1980s
+468,Alexander Alexander_the_Great,king of Macedon; conqueror of Greece and Egypt and Persia; founder of Alexandria (356-323 BC)
+469,Alexander Alexanders black_lovage horse_parsley Smyrnium_olusatrum,European herb somewhat resembling celery widely naturalized in Britain coastal regions and often cultivated as a potherb
+470,Alexander_Archipelago,a group of islands off southeastern Alaska
+471,Alexander_I Czar_Alexander_I Aleksandr_Pavlovich,the czar of Russia whose plans to liberalize the government of Russia were unrealized because of the wars with Napoleon (1777-1825)
+472,Alexander_II Czar_Alexander_II Alexander_the_Liberator,the son of Nicholas I who, as czar of Russia, introduced reforms that included limited emancipation of the serfs (1818-1881)
+473,Alexander_III Czar_Alexander_III,son of Alexander II who was czar of Russia (1845-1894)
+474,Alexander_VI Pope_Alexander_VI Borgia Rodrigo_Borgia,Pope and father of Cesare Borgia and Lucrezia Borgia (1431-1503)
+475,Alexandria,a town in Louisiana on the Red River
+476,Alexandria El_Iskandriyah,the chief port of Egypt; located on the western edge of the Nile delta on the Mediterranean Sea; founded by Alexander the Great; the capital of ancient Egypt
+477,Alexandria_senna Alexandrian_senna true_senna tinnevelly_senna Indian_senna Senna_alexandrina Cassia_acutifolia Cassia_augustifolia,erect shrub having racemes of tawny yellow flowers; the dried leaves are used medicinally as a cathartic; sometimes placed in genus Cassia
+478,Alexandrian,a resident or native of Alexandria (especially Alexandria in Egypt)
+479,Alexandrian_laurel Calophyllum_inophyllum,East Indian tree having racemes of fragrant white flowers; coastal areas southern India to Malaysia
+480,Alexandrine,(prosody) a line of verse that has six iambic feet
+481,Aleyrodes genus_Aleyrodes,type genus of the Aleyrodidae
+482,Aleyrodidae family_Aleyrodidae,whiteflies
+483,Alfred Alfred_the_Great,king of Wessex; defeated the Vikings and encouraged writing in English (849-899)
+484,Alger Horatio_Alger,United States author of inspirational adventure stories for boys; virtue and hard work overcome poverty (1832-1899)
+485,Algeria Algerie Democratic_and_Popular_Republic_of_Algeria,a republic in northwestern Africa on the Mediterranean Sea with a population that is predominantly Sunni Muslim; colonized by France in the 19th century but gained autonomy in the early 1960s
+486,Algerian,a native or inhabitant of Algeria
+487,Algerian_centime,100 centimes equal 1 dinar in Algeria
+488,Algerian_dinar dinar,the basic unit of money in Algeria
+489,Algerian_monetary_unit,monetary unit in Algeria
+490,Algeripithecus genus_Algeripithecus,an extinct genus of Hominoidea
+491,Algeripithecus_minutus,tiny (150 to 300 grams) extinct primate of 46 to 50 million years ago; fossils found in Algeria; considered by some authorities the leading candidate for the first anthropoid
+492,Algiers Algerian_capital,an ancient port on the Mediterranean; the capital and largest city of Algeria
+493,Algol,the second brightest star in Perseus; the first known eclipsing binary
+494,Algonkian Algonkin,a member of a North American Indian people in the Ottawa river valley of Ontario and Quebec
+495,Algonkian Algonkin,the Algonquian language spoken by the Algonkian
+496,Algonquian Algonquin,a member of any of the North American Indian groups speaking an Algonquian language and originally living in the subarctic regions of eastern Canada; many Algonquian tribes migrated south into the woodlands from the Mississippi River to the Atlantic coast
+497,Algonquian Algonquin Algonquian_language,family of North American Indian languages spoken from Labrador to South Carolina and west to the Great Plains
+498,Algren Nelson_Algren,United States writer (1909-1981)
+499,Alhambra,a fortified Moorish palace built near Granada by Muslim kings in the Middle Ages
+500,Alhazen Alhacen al-Haytham Ibn_al-Haytham Al-Hasan_ibn_al-Haytham,an Egyptian polymath (born in Iraq) whose research in geometry and optics was influential into the 17th century; established experiments as the norm of proof in physics (died in 1040)
+501,Ali,the fourth caliph of Islam who is considered to be the first caliph by Shiites; he was a cousin and son-in-law of Muhammad; after his assassination Islam was divided into Shiite and Sunnite sects
+502,Ali Muhammad_Ali Cassius_Clay Cassius_Marcellus_Clay,United States prizefighter who won the world heavyweight championship three times (born in 1942)
+503,Ali_Baba,the fictional woodcutter who discovered that `open sesame' opened a cave in the Arabian Nights' Entertainment
+504,Alisma genus_Alisma,small genus of aquatic or semiaquatic plants
+505,Alismataceae family_Alismataceae water-plantain_family,perennial or annual aquatic or marsh plants
+506,Alismatidae subclass_Alismatidae,one of four subclasses or superorders of Monocotyledones; comprises about 500 species in 14 families of aquatic and semiaquatic herbs
+507,Alka-seltzer,a commercial antacid that contains aspirin; tablets dissolve in water to give an effervescent solution
+508,All_Saints'_Day Allhallows November_1 Hallowmas Hallowmass,a Christian feast day honoring all the saints; first observed in 835
+509,All_Souls'_Day November_2,a day of supplication for all the souls in purgatory
+510,Allah,Muslim name for the one and only God
+511,Alleghenies Allegheny_Mountains,the western part of the Appalachian Mountains; extending from northern Pennsylvania to southwestern Virginia
+512,Allegheny Allegheny_River,a river that rises in Pennsylvania and flows north into New York and then back south through Pennsylvania again to join the Monongahela River at Pittsburgh which is the beginning of the Ohio River
+513,Allegheny_chinkapin eastern_chinquapin chinquapin dwarf_chestnut Castanea_pumila,shrubby chestnut tree of southeastern United States having small edible nuts
+514,Allegheny_plum Alleghany_plum sloe Prunus_alleghaniensis,wild plum of northeastern United States having dark purple fruits with yellow flesh
+515,Allegheny_spurge Allegheny_mountain_spurge Pachysandra_procumbens,low semi-evergreen perennial herb having small spikes of white or pinkish flowers; native to southern United States but grown elsewhere
+516,Allen Ethan_Allen,a soldier of the American Revolution whose troops helped capture Fort Ticonderoga from the British (1738-1789)
+517,Allen Gracie_Allen Grace_Ethel_Cecile_Rosalie_Allen Gracie,United States comedienne remembered as the confused but imperturbable partner of her husband, George Burns (1906-1964)
+518,Allen Woody_Allen Allen_Stewart_Konigsberg,United States filmmaker and comic actor (1935-)
+519,Allen_screw,a screw with a hexagonal hole in the head
+520,Allen_wrench,a wrench for Allen screws
+521,Allentown,a city in eastern Pennsylvania; an industrial and commercial center
+522,Allhallowtide,the season of All Saints' Day
+523,Alliaceae family_Alliaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes especially genus Allium
+524,Alliaria genus_Alliaria,a genus of herbs of the family Cruciferae; have broad leaves and white flowers and long siliques
+525,Allied_Command_Atlantic ACLANT,a major strategic headquarters of NATO located in the United States; is under the authority of the North Atlantic Council
+526,Allied_Command_Europe ACE,a major strategic headquarters of NATO; safeguards an area extending from Norway to Turkey
+527,Allies,the alliance of nations that fought the Axis in World War II and which (with subsequent additions) signed the charter of the United Nations in 1945
+528,Allies,in World War I the alliance of Great Britain and France and Russia and all the other nations that became allied with them in opposing the Central Powers
+529,Alligatoridae family_Alligatoridae,alligators; caimans
+530,Allionia genus_Allionia,small genus of chiefly American herbs
+531,Allium genus_Allium,large genus of perennial and biennial pungent bulbous plants: garlic; leek; onion; chive; sometimes placed in family Alliaceae as the type genus
+532,Almaty Alma-Ata,the largest city in Kazakhstan and the capital until 1998
+533,Almoravid,a member of a Muslim dynasty of Berber warriors that flourished from 1049 to 1145 and that established political dominance over northwestern Africa and Spain
+534,Alnico,trade name for an alloy used to make high-energy permanent magnets; contains aluminum and iron and nickel plus cobalt or copper or titanium
+535,Alnus genus_Alnus,alders
+536,Aloeaceae family_Aloeaceae aloe_family,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+537,Alonso Alicia_Alonso,Cuban dancer and choreographer (born in 1921)
+538,Alopecurus genus_Alopecurus,annual or perennial grasses including decorative and meadow species as well as notorious agricultural weeds
+539,Alopex genus_Alopex,arctic foxes
+540,Alopiidae family_Alopiidae,thresher sharks
+541,Alopius genus_Alopius,type genus of the family Alopiidae; in some classifications considered a genus of the family Lamnidae
+542,Alosa genus_Alosa,shad
+543,Alouatta genus_Alouatta,howler monkeys
+544,Alpena,a town in northern Michigan on an arm of Lake Huron
+545,Alpha_Centauri Rigil_Kent Rigil,brightest star in Centaurus; second nearest star to the sun
+546,Alpha_Crucis,the brightest star in the Southern Cross
+547,Alpine_anemone mountain_anemone Anemone_tetonensis,silky-foliaged herb of the Rocky Mountains with bluish-white flowers
+548,Alpine_besseya Besseya_alpina,small pale plant with dense spikes of pale bluish-violet flowers; of high cold meadows from Wyoming and Utah to New Mexico
+549,Alpine_celery_pine Phyllocladus_alpinus,small shrubby celery pine of New Zealand
+550,Alpine_enchanter's_nightshade Circaea_alpina,an Alpine variety of enchanter's nightshade
+551,Alpine_fir subalpine_fir Abies_lasiocarpa,medium-tall timber tree of the Rocky Mountains having a narrowly conic to columnar crown
+552,Alpine_glacier Alpine_type_of_glacier,a glacier that moves down from a high valley
+553,Alpine_lady_fern Athyrium_distentifolium,a lady fern with deeply cut leaf segments; found in the Rocky Mountains
+554,Alpine_mouse-ear Arctic_mouse-ear Cerastium_alpinum,widespread in the Arctic and on mountains in Europe
+555,Alpine_woodsia northern_woodsia flower-cup_fern Woodsia_alpina,slender fern of northern North America with shining chestnut-colored stipes and bipinnate fronds with usually distinct marginal sori
+556,Alpinia genus_Alpinia genus_Zerumbet genus_Languas,perennial rhizomatous herbs of Asia and Australia and Polynesia having ginger-scented rhizomes
+557,Alpinism,mountain climbing (not restricted to the Alps)
+558,Alps the_Alps,a large mountain system in south-central Europe; scenic beauty and winter sports make them a popular tourist attraction
+559,Alsace Alsatia Elsass,a region of northeastern France famous for its wines
+560,Alsatian,a native or inhabitant of Alsace
+561,Alsobia genus_Alsobia,tropical American herbs sometimes included in genus Episcia
+562,Alsophila genus_Alsophila,geometrid moths
+563,Alsophila_pometaria,North American moth with grey-winged males and wingless females; larvae are fall cankerworms
+564,Alstonia genus_Alstonia,genus of evergreen trees or shrubs with white funnel-shaped flowers and milky sap; tropical Africa to southeastern Asia and Polynesia
+565,Alstroemeriaceae family_Alstroemeriaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; sometimes included in subfamily Amaryllidaceae
+566,Altai_Mountains Altay_Mountains,a mountain range in central Asia that extends a thousand miles from Kazakhstan eastward into western Mongolia and northern China
+567,Altaic,any member of the peoples speaking a language in the Altaic language group
+568,Altaic Altaic_language,a group of related languages spoken in Asia and southeastern Europe
+569,Altair,double star 15.7 light years from Earth; the brightest star in the Aquila constellation
+570,Alternanthera genus_Alternanthera,genus of low herbs of tropical America and Australia; includes genus Telanthera
+571,Altoona,a town in central Pennsylvania
+572,Alyssum genus_Alyssum,a genus of the family Cruciferae
+573,Alytes genus_Alytes,midwife toads
+574,Alzheimer's_disease Alzheimer's Alzheimers,a progressive form of presenile dementia that is similar to senile dementia except that it usually starts in the 40s or 50s; first symptoms are impaired memory which is followed by impaired thought and speech and finally complete helplessness
+575,Amaethon,the farmer god; ancient god of agriculture
+576,Amanita genus_Amanita,genus of widely distributed agarics that have white spores and are poisonous with few exceptions
+577,Amaranthaceae family_Amaranthaceae amaranth_family,cosmopolitan family of herbs and shrubs
+578,Amaranthus genus_Amaranthus,large widely distributed genus of chiefly coarse annual herbs
+579,Amarillo,a city in the northern panhandle of Texas
+580,Amaryllidaceae family_Amaryllidaceae amaryllis_family,snowdrop; narcissus; daffodil; in some classification systems considered a subfamily of the Liliaceae
+581,Amaterasu Amaterasu_Omikami,central deity of Shinto; goddess personifying the sun and ancestress of the rulers of Japan
+582,Amati,a violin made by Nicolo Amati or a member of his family
+583,Amati Nicolo_Amati Nicola_Amati,Italian violin maker in Cremona; taught the craft to Guarneri and Stradivari (1596-1684)
+584,Amauropelta genus_Amauropelta,epiphytic or terrestrial ferns of America and Africa and Polynesia
+585,Amazon,(Greek mythology) one of a nation of women warriors of Scythia (who burned off the right breast in order to use a bow and arrow more effectively)
+586,Amazon Amazon_River,a major South American river; arises in the Andes and flows eastward into the South Atlantic; the world's 2nd longest river (4000 miles)
+587,Amazon_ant Polyergus_rufescens,small reddish slave-making ant species
+588,Amazona genus_Amazona,a genus of Psittacidae
+589,Amberboa genus_Amberboa,herbs of Mediterranean to central Asia cultivated for their flowers
+590,Ambloplites genus_Ambloplites,a genus of Centrarchidae
+591,Amblyrhynchus genus_Amblyrhynchus,marine iguanas
+592,Ambrose Saint_Ambrose St._Ambrose,(Roman Catholic Church) Roman priest who became bishop of Milan; the first Church Father born and raised in the Christian faith; composer of hymns; imposed orthodoxy on the early Christian church and built up its secular power; a saint and Doctor of the Church (340?-397)
+593,Ambrosiaceae family_Ambrosiaceae,in some classifications considered a separate family comprising a subgroup of the Compositae including the ragweeds
+594,Ambystoma genus_Ambystoma,type genus of the Ambystomatidae
+595,Ambystomatidae family_Ambystomatidae,New World salamanders
+596,Ameiuridae family_Ameiuridae,North American catfishes
+597,Ameiurus genus_Ameiurus,type genus of the Ameiuridae: bullhead catfishes
+598,Amelanchier genus_Amelanchier,North American deciduous trees or shrubs
+599,Amen Amon Amun,a primeval Egyptian personification of air and breath; worshipped especially at Thebes
+600,Amen-Ra Amon-Ra Amun_Ra,Egyptian sun god; supreme god of the universe in whom Amen and Ra were merged; principal deity during Theban supremacy
+601,Amentiferae group_Amentiferae,used in some classification systems for plants that bear catkins
+602,America,North America and South America and Central America
+603,American,a native or inhabitant of the United States
+604,American,a native or inhabitant of a North American or Central American or South American country
+605,American_Baptist_Convention Northern_Baptist_Convention,an association of Northern Baptists
+606,American_Civil_War United_States_Civil_War War_between_the_States,civil war in the United States between the North and the South; 1861-1865
+607,American_Dream,the widespread aspiration of Americans to live better than their parents did
+608,American_English American_language American,the English language as used in the United States
+609,American_Falls,a part of Niagara Falls in western New York (north of Buffalo)
+610,American_Federation_of_Labor AFL,a federation of North American labor unions that merged with the Congress of Industrial Organizations in 1955
+611,American_Federation_of_Labor_and_Congress_of_Industrial_Organizations AFL-CIO,the largest federation of North American labor unions; formed in 1955
+612,American_Indian_Day,US: the 4th Friday in September
+613,American_Labor_Party,a former political party in the United States; formed in 1936 in New York when labor and liberals bolted the Democratic Party
+614,American_Legion,the largest organization of United States war veterans
+615,American_Party Know-Nothing_Party,a former political party in the United States; active in the 1850s to keep power out of the hands of immigrants and Roman Catholics
+616,American_Revolution American_Revolutionary_War War_of_American_Independence American_War_of_Independence,the revolution of the American Colonies against Great Britain; 1775-1783
+617,American_Revolutionary_leader,a nationalist leader in the American Revolution and in the creation of the United States
+618,American_Samoa Eastern_Samoa AS,a United States territory on the eastern part of the island of Samoa
+619,American_Staffordshire_terrier Staffordshire_terrier American_pit_bull_terrier pit_bull_terrier,American breed of muscular terriers with a short close-lying stiff coat
+620,American_Standard_Code_for_Information_Interchange ASCII,(computer science) a code for information exchange between computers made by different companies; a string of 7 binary digits represents each character; used in most microcomputers
+621,American_Standard_Version American_Revised_Version,a revised version of the King James Version
+622,American_Stock_Exchange AMEX Curb,a stock exchange in New York
+623,American_agave Agave_americana,widely cultivated American monocarpic plant with greenish-white flowers on a tall stalk; blooms only after ten to twenty years and then dies
+624,American_alligator Alligator_mississipiensis,large alligator of the southeastern United States
+625,American_angelica_tree devil's_walking_stick Hercules'-club Aralia_spinosa,small deciduous clump-forming tree or shrub of eastern United States
+626,American_arborvitae northern_white_cedar white_cedar Thuja_occidentalis,small evergreen of eastern North America having tiny scalelike leaves on flattened branchlets
+627,American_badger Taxidea_taxus,a variety of badger native to America
+628,American_barberry Berberis_canadensis,deciduous shrub of eastern North America whose leaves turn scarlet in autumn and having racemes of yellow flowers followed by ellipsoid glossy red berries
+629,American_basswood American_lime Tilia_americana,large American shade tree with large dark green leaves and rounded crown
+630,American_beech white_beech red_beech Fagus_grandifolia Fagus_americana,North American forest tree with light green leaves and edible nuts
+631,American_bison American_buffalo buffalo Bison_bison,large shaggy-haired brown bison of North American plains
+632,American_bittern stake_driver Botaurus_lentiginosus,a kind of bittern
+633,American_black_bear black_bear Ursus_americanus Euarctos_americanus,brown to black North American bear; smaller and less ferocious than the brown bear
+634,American_bog_asphodel Narthecium_americanum,of the eastern United States: New Jersey to South Carolina
+635,American_bugbane summer_cohosh Cimicifuga_americana,bugbane of the eastern United States having erect racemes of white flowers
+636,American_chameleon anole Anolis_carolinensis,small arboreal tropical American insectivorous lizards with the ability to change skin color
+637,American_chestnut American_sweet_chestnut Castanea_dentata,large tree found from Maine to Alabama
+638,American_cockroach Periplaneta_americana,large reddish brown free-flying cockroach originally from southern United States but now widely distributed
+639,American_coot marsh_hen mud_hen water_hen Fulica_americana,a coot found in North America
+640,American_copper Lycaena_hypophlaeas,common copper butterfly of central and eastern North America
+641,American_crab_apple garland_crab Malus_coronaria,medium-sized tree of the eastern United States having pink blossoms and small yellow fruit
+642,American_cranberry large_cranberry Vaccinium_macrocarpon,trailing red-fruited plant
+643,American_crayfish,common large crayfishes of eastern North America
+644,American_crow Corvus_brachyrhyncos,common crow of North America
+645,American_dewberry Rubus_canadensis,North American dewberry
+646,American_dog_violet Viola_conspersa,violet of eastern North America having pale violet to white flowers
+647,American_egret great_white_heron Egretta_albus,a common egret of the genus Egretta found in America; it is a variety of the Old World white egret Casmerodius albus
+648,American_elder black_elderberry sweet_elder Sambucus_canadensis,common elder of central and eastern North America bearing purple-black berries; fruit used in wines and jellies
+649,American_elm white_elm water_elm rock_elm Ulmus_americana,large ornamental tree with graceful gradually spreading branches common in eastern North America
+650,American_feverfew wild_quinine prairie_dock Parthenium_integrifolium,stout perennial herb of the eastern United States with whitish flowers; leaves traditionally used by Catawba Indians to treat burns
+651,American_flag Stars_and_Stripes Star-Spangled_Banner Old_Glory,the national flag of the United States of America
+652,American_fly_honeysuckle fly_honeysuckle Lonicera_canadensis,erect deciduous North American shrub with yellow-white flowers
+653,American_flying_squirrel,New World flying squirrels
+654,American_football American_football_game,a game played by two teams of 11 players on a rectangular field 100 yards long; teams try to get possession of the ball and advance it across the opponents goal line in a series of (running or passing) plays
+655,American_foxhound,an American breed of foxhounds used for hunting both in packs and individually
+656,American_frogbit Limnodium_spongia,American plant with roundish heart-shaped or kidney-shaped leaves; usually rooted in muddy bottoms of ponds and ditches
+657,American_gallinule Porphyrula_martinica,American purple gallinule
+658,American_germander wood_sage Teucrium_canadense,subshrub with serrate leaves and cream-colored to pink or purple flowers in spikelike racemes; North America
+659,American_ginseng sang Panax_quinquefolius,North American woodland herb similar to and used as substitute for the Chinese ginseng
+660,American_green_toad Bufo_debilis,small green or yellow-green toad with small black bars and stripes
+661,American_hackberry Celtis_occidentalis,large deciduous shade tree of southern United States with small deep purple berries
+662,American_harvest_mouse harvest_mouse,any of several small greyish New World mice inhabiting e.g. grain fields
+663,American_hazel Corylus_americana,nut-bearing shrub of eastern North America
+664,American_holly Christmas_holly,an evergreen tree
+665,American_hop Humulus_americanus,native American plant sometimes confused with the European hop
+666,American_hornbeam Carpinus_caroliniana,tree or large shrub with grey bark and blue-green leaves that turn red-orange in autumn
+667,American_lady_crab lady_crab calico_crab Ovalipes_ocellatus,brightly spotted crab of sandy beaches of the Atlantic coast of the United States
+668,American_larch tamarack black_larch Larix_laricina,medium-sized larch of Canada and northern United States including Alaska having a broad conic crown and rust-brown scaly bark
+669,American_lobster Northern_lobster Maine_lobster,flesh of cold-water lobsters having large tender claws; caught from Maine to the Carolinas
+670,American_lobster Northern_lobster Maine_lobster Homarus_americanus,lobster of Atlantic coast of America
+671,American_magpie Pica_pica_hudsonia,a magpie of Rocky Mountains in North America
+672,American_maidenhair_fern five-fingered_maidenhair_fern Adiantum_pedatum,hardy palmately branched North American fern with divergent recurved branches borne on lustrous dark reddish stipes
+673,American_marten American_sable Martes_americana,valued for its fur
+674,American_mastodon American_mastodont Mammut_americanum,mastodon of North America; in some classifications considered a mammoth rather than a mastodon
+675,American_merganser Mergus_merganser_americanus,common North American diving duck considered a variety of the European goosander
+676,American_mink Mustela_vison,usually rich dark brown
+677,American_mistletoe Arceuthobium_pusillum,small herb with scalelike leaves on reddish-brown stems and berrylike fruits; parasitic on spruce and larch trees
+678,American_mistletoe Phoradendron_serotinum Phoradendron_flavescens,the traditional mistletoe of Christmas in America: grows on deciduous trees and can severely weaken the host plant
+679,American_mountain_ash Sorbus_americana,a variety of mountain ash
+680,American_oil_palm Elaeis_oleifera,palm of Central and South America
+681,American_organ,a free-reed instrument in which air is drawn in through reeds by suction bellows
+682,American_parasol Lepiota_americana,an agaric with a pallid cap and a stalk that is enlarged near the base
+683,American_pasqueflower Eastern_pasque_flower wild_crocus lion's_beard prairie_anemone blue_tulip American_pulsatilla Pulsatilla_patens Anemone_ludoviciana,short hairy perennial with early spring blue-violet or lilac flowers; North America and Siberia
+684,American_persimmon possumwood Diospyros_virginiana,medium-sized tree of dry woodlands in the southern and eastern United States bearing yellow or orange very astringent fruit that is edible when fully ripe
+685,American_plaice Hippoglossoides_platessoides,large American food fish
+686,American_plan,a hotel plan that includes three meals daily
+687,American_quaking_aspen American_aspen Populus_tremuloides,slender aspen native to North America
+688,American_raspberry Rubus_strigosus Rubus_idaeus_strigosus,red raspberry of North America
+689,American_rattlebox Crotalaria_sagitallis,tropical American annual herb having an inflated pod in which the ripe seeds rattle
+690,American_red_elder red-berried_elder stinking_elder Sambucus_pubens,common North American shrub or small tree
+691,American_red_plum August_plum goose_plum Prunus_americana,wild plum trees of eastern and central North America having red-orange fruit with yellow flesh
+692,American_red_squirrel spruce_squirrel red_squirrel Sciurus_hudsonicus Tamiasciurus_hudsonicus,of northern United States and Canada
+693,American_redstart redstart Setophaga_ruticilla,flycatching warbler of eastern North America the male having bright orange on sides and wings and tail
+694,American_rock_brake American_parsley_fern Cryptogramma_acrostichoides,rock-inhabiting fern of northern North America growing in massive tufts and having fronds resembling parsley
+695,American_saddle_horse,a high-stepping horse originating in Kentucky
+696,American_shrew_mole Neurotrichus_gibbsii,greyish-black shrew mole of the United States and Canada
+697,American_smelt rainbow_smelt,common smelt of eastern North America and Alaska
+698,American_smokewood chittamwood Cotinus_americanus Cotinus_obovatus,shrubby tree of southern United States having large plumes of feathery flowers resembling puffs of smoke
+699,American_smooth_dogfish Mustelus_canis,found along the Atlantic coast of the Americas
+700,American_spikenard petty_morel life-of-man Aralia_racemosa,unarmed woody rhizomatous perennial plant distinguished from wild sarsaparilla by more aromatic roots and panicled umbels; southeastern North America to Mexico
+701,American_star_grass Hypoxis_hirsuta,perennial star grass of North America
+702,American_state,one of the 50 states of the United States
+703,American_sycamore American_plane buttonwood Platanus_occidentalis,very large spreading plane tree of eastern and central North America to Mexico
+704,American_toad Bufo_americanus,common toad of America
+705,American_turkey_oak turkey_oak Quercus_laevis,small slow-growing deciduous shrubby tree of dry sandy barrens of southeastern United States having leaves with bristle-tipped lobes resembling turkey's toes
+706,American_twinflower Linnaea_borealis_americana,similar to the twinflower of northern Europe and Asia
+707,American_water_ouzel Cinclus_mexicanus,a water ouzel of western North America
+708,American_water_shrew Sorex_palustris,water shrew of North America
+709,American_water_spaniel,breed of medium-sized spaniels originating in America having chocolate or liver-colored curly coat
+710,American_watercress mountain_watercress Cardamine_rotundifolia,mat-forming perennial found in cold springs of the eastern United States
+711,American_white_birch paper_birch paperbark_birch canoe_birch Betula_cordifolia Betula_papyrifera,small American birch with peeling white bark often worked into e.g. baskets or toy canoes
+712,American_white_oak Quercus_alba,large slow-growing deciduous tree of the eastern United States having stout spreading branches and leaves with usually 7 rounded lobes; yields strong and durable hard wood
+713,American_white_pine eastern_white_pine weymouth_pine Pinus_strobus,tall-growing pine of eastern North America; bark is brown with longitudinal fissures when mature; valued as a timber tree
+714,American_widgeon baldpate Anas_americana,a widgeon the male of which has a white crown
+715,American_wistaria American_wisteria Wisteria_frutescens,an eastern United States native resembling the cultivated Japanese wisteria having pale purple-lilac flowers
+716,American_woodcock woodcock_snipe Philohela_minor,small long-billed woodcock; prized as a game bird
+717,American_wormseed Mexican_tea Spanish_tea wormseed Chenopodium_ambrosioides,rank-smelling tropical American pigweed
+718,Americana,any artifact (such as books or furniture or art) that is distinctive of America
+719,Americanism,an expression that is characteristic of English as spoken by Americans
+720,Americanism,loyalty to the United States and its institutions
+721,Americanism,a custom that is peculiar to the United States or its citizens
+722,Americanization Americanisation,assimilation into American culture
+723,Amerind Amerindian_language American-Indian_language American_Indian Indian,any of the languages spoken by Amerindians
+724,Amerindian Native_American,any member of the peoples living in North or South America before the Europeans arrived
+725,Amhara,a member of the Semitic speaking people of northern Ethiopia
+726,Amharic Ethiopian_language,the dominant and official language of Ethiopia; a Semitic language much influenced by the Cushitic language with which Amhara have been in close contact
+727,Amia genus_Amia,type genus of the Amiidae
+728,Amianthum genus_Amianthum,one species: fly poison; sometimes placed in family Melanthiaceae
+729,Amiidae family_Amiidae,only the bowfins
+730,Amish,an American follower of the Mennonite religion
+731,Amish_sect,an orthodox Anabaptist sect separated from the Mennonites in late 17th century; settled chiefly in southeastern Pennsylvania
+732,Amman capital_of_Jordan,the capital and largest city of Jordan
+733,Ammodytes genus_Ammodytes,type genus of the Ammodytidae
+734,Ammodytidae family_Ammodytidae,sand lances
+735,Ammotragus genus_Ammotragus,genus of wild sheep
+736,Amniota,higher vertebrates (reptiles, birds and mammals) possessing an amnion during development
+737,Amoebida order_Amoebida Amoebina order_Amoebina,the animal order including amoebas
+738,Amontillado,pale medium-dry sherry from Spain
+739,Amos,a Hebrew shepherd and minor prophet
+740,Amos Book_of_Amos,an Old Testament book telling Amos's prophecies
+741,Amphibolips genus_Amphibolips,cynipid gall wasps, especially causing oak-apple galls
+742,Amphicarpaea genus_Amphicarpaea Amphicarpa genus_Amphicarpa,very small genus of twining vines of North America and Asia: hog peanut
+743,Amphineura subclass_Amphineura,a class of Gastropoda
+744,Amphioxidae family_Amphioxidae Branchiostomidae family_Branchiostomidae,lancelets
+745,Amphipoda order_Amphipoda,small flat-bodied semiterrestrial crustaceans: whale lice; sand-hoppers; skeleton shrimp
+746,Amphiprion genus_Amphiprion,damsel fishes
+747,Amphisbaena genus_Amphisbaena Amphisbaenia genus_Amphisbaenia,type genus of the Amphisbaenidae
+748,Amphisbaenidae family_Amphisbaenidae,worm lizards
+749,Amphiumidae family_Amphiumidae,congo snakes
+750,Amsinckia genus_Amsinckia,rough annual herbs of Europe and the Americas: fiddlenecks
+751,Amsler_grid,a pattern of small boxes that is used for self-monitoring by patients who have age-related macular degeneration
+752,Amsonia genus_Amsonia,genus of herbs and subshrubs with milky juice and showy bluish flowers; Europe to Asia Minor to Japan and North America
+753,Amsterdam Dutch_capital capital_of_The_Netherlands,an industrial center and the nominal capital of the Netherlands; center of the diamond-cutting industry; seat of an important stock exchange; known for its canals and art museum
+754,Amundsen Roald_Amundsen,Norwegian explorer who was the first to traverse the Northwest Passage and in 1911 the first to reach the South Pole (1872-1928)
+755,Amur Amur_River Heilong_Jiang Heilong,an Asian river between China and Russia; flows into the Sea of Okhotsk
+756,Amur_privet Ligustrum_amurense,eastern Asian shrub cultivated especially for its persistent foliage
+757,Amygdalaceae family_Amygdalaceae,used in former classifications for plum and peach and almond trees which are now usually classified as members of the genus Prunus
+758,Amygdalus genus_Amygdalus,used in former classifications for peach and almond trees which are now included in genus Prunus
+759,Ana,mother of the ancient Irish gods; sometimes identified with Danu
+760,Anabantidae family_Anabantidae,small freshwater spiny-finned fishes of Africa and southern Asia
+761,Anabaptism,a Protestant movement in the 16th century that believed in the primacy of the Bible, baptised only believers, not infants, and believed in complete separation of church and state
+762,Anabaptist,adherent of Anabaptism
+763,Anabaptist_denomination,a Protestant sect denying infant baptism and baptising only believers
+764,Anabas genus_Anabas,the type genus of the family Anabantidae; small fish that resemble perch
+765,Anabrus genus_Anabrus,a genus of Tettigoniidae
+766,Anacanthini order_Anacanthini,at least partially equivalent to the order Gadiformes in some classifications
+767,Anacardiaceae family_Anacardiaceae sumac_family,the cashew family; trees and shrubs and vines having resinous (sometimes poisonous) juice; includes cashew and mango and pistachio and poison ivy and sumac
+768,Anacardium genus_Anacardium,type genus of the Anacardiaceae: cashew
+769,Anacyclus genus_Anacyclus,a Spanish pellitory
+770,Anadenanthera genus_Anadenanthera,2 species of tropical American shrubs or trees
+771,Anadenanthera_colubrina Piptadenia_macrocarpa,Brazilian shrub having twice-pinnate leaves and small spicate flowers followed by flat or irregularly torulose pods; sometimes placed in genus Piptadenia
+772,Anagallis genus_Anagallis,chiefly Old World herbs
+773,Anagasta genus_Anagasta,moth whose larvae are flour moths
+774,Anagyris genus_Anagyris,very small genus of shrubs of southern Europe having backward curving seed pods
+775,Anaheim,a city in southern California (southeast of Los Angeles); site of Disneyland
+776,Ananas genus_Ananas,a genus of tropical American plants have sword-shaped leaves and a fleshy compound fruits composed of the fruits of several flowers (such as pineapples)
+777,Ananias,a habitual liar (after a New Testament character who was struck dead for lying)
+778,Anaphalis genus_Anaphalis,a genus of herbs of north temperate regions having hoary leaves: pearly everlasting
+779,Anapsida subclass_Anapsida,oldest known reptiles; turtles and extinct Permian forms
+780,Anarhichadidae family_Anarhichadidae,wolffishes
+781,Anarhichas genus_Anarhichas,type genus of the Anarhichadidae
+782,Anas genus_Anas,type genus of the Anatidae: freshwater ducks
+783,Anasa genus_Anasa,squash bugs
+784,Anasazi,a Native American who lived in what is now southern Colorado and Utah and northern Arizona and New Mexico and who built cliff dwellings
+785,Anaspida order_Anaspida,extinct order of jawless vertebrates
+786,Anastatica genus_Anastatica,one species: rose of Jericho; resurrection plant
+787,Anastomus genus_Anastomus,openbills
+788,Anatidae family_Anatidae,swimming birds having heavy short-legged bodies and bills with a horny tip: swans; geese; ducks
+789,Anatolian Anatolian_language,an extinct branch of the Indo-European family of languages known from inscriptions and important in the reconstruction of Proto-Indo European
+790,Anaxagoras,a presocratic Athenian philosopher who maintained that everything is composed of very small particles that were arranged by some eternal intelligence (500-428 BC)
+791,Anaximander,a presocratic Greek philosopher and student of Thales who believed the universal substance to be infinity rather than something resembling ordinary objects (611-547 BC)
+792,Anaximenes,a presocratic Greek philosopher and associate of Anaximander who believed that all things are made of air in different degrees of density (6th century BC)
+793,Anchorage,a city in south central Alaska; "Anchorage is the largest city in Alaska"
+794,Ancient_Greek,the Greek language prior to the Roman Empire
+795,Ancohuma,a mountain peak in the Andes in Bolivia (20,960 feet high)
+796,Ancylidae family_Ancylidae,freshwater gastropod
+797,Ancylostomatidae family_Ancylostomatidae,hookworms
+798,Ancylus genus_Ancylus,type genus of the family Ancylidae: river limpet
+799,Andalusia Andalucia,a region in southern Spain on the Atlantic and the Mediterranean; formerly a center of Moorish civilization
+800,Andaman_Sea,part of the Bay of Bengal to the west of the Malay Peninsula
+801,Andean_condor Vultur_gryphus,large vulture of the high Andes having black plumage and white neck ruff
+802,Andersen Hans_Christian_Andersen,a Danish author remembered for his fairy stories (1805-1875)
+803,Anderson Carl_Anderson Carl_David_Anderson,United States physicist who discovered antimatter in the form of an antielectron that is called the positron (1905-1991)
+804,Anderson Marian_Anderson,United States contralto noted for her performance of spirituals (1902-1993)
+805,Anderson Maxwell_Anderson,United States dramatist (1888-1959)
+806,Anderson Philip_Anderson Philip_Warren_Anderson Phil_Anderson,United States physicist who studied the electronic structure of magnetic and disordered systems (1923-)
+807,Anderson Sherwood_Anderson,United States author whose works were frequently autobiographical (1876-1941)
+808,Andes,a mountain range in South America running 5000 miles along the Pacific coast
+809,Andhra_Pradesh,a state of southeastern India on the Bay of Bengal
+810,Andira genus_Andira,small genus of evergreen trees of tropical America and western Africa
+811,Andorra Principality_of_Andorra,a small republic in the eastern Pyrenees between Spain and France
+812,Andorran,a native or inhabitant of Andorra
+813,Andreaea genus_Andreaea,brown or blackish Alpine mosses having a dehiscent capsule with 4 longitudinal slits
+814,Andreaeales order_Andreaeales,comprises a single genus: Andreaea
+815,Andrenidae family_Andrenidae,a large family of solitary short-tongued bees most of which burrow in the ground
+816,Andrew Saint_Andrew St._Andrew Saint_Andrew_the_Apostle,(New Testament) disciple of Jesus; brother of Peter; patron saint of Scotland
+817,Andrews Roy_Chapman_Andrews,United States naturalist who contributed to paleontology and geology (1884-1960)
+818,Andricus genus_Andricus,cynipid gall wasps, chiefly affecting oaks
+819,Andromeda,(Greek mythology) an Ethiopian princess and daughter of Cassiopeia; she was fastened to a rock and exposed to a sea monster that was sent by Poseidon, but she was rescued by Perseus and became his wife
+820,Andromeda,a constellation in the northern hemisphere between Cassiopeia and Pegasus; contains the Andromeda galaxy
+821,Andromeda_galaxy,a spiral galaxy in the constellation of Andromeda that is visible to the naked eye
+822,Andropogon genus_Andropogon,tall annual or perennial grasses with spikelike racemes; warm regions
+823,Andvari,(Norse mythology) a dwarf who possessed a treasure that was stolen by Loki
+824,Aneides genus_Aneides,climbing salamanders
+825,Anemia genus_Anemia,genus of terrestrial or lithophytic ferns having pinnatifid fronds; chiefly of tropical America
+826,Anemonella genus_Anemonella,one species: rue anemone
+827,Anemopsis genus_Anemopsis,one species: yerba mansa
+828,Anethum genus_Anethum,dill
+829,Angara Angara_River Tunguska Upper_Tunguska,a river in southeastern Siberia that flows northwest from Lake Baikal to become a tributary of the Yenisei River
+830,Angas,a Chadic language spoken in northern Nigeria and closely related to Hausa
+831,Angel Angel_Falls,the highest waterfall; has more than one leap; flow varies seasonally
+832,Angelus,a prayer said 3 times a day by Roman Catholics in memory of the Annunciation
+833,Angevin Angevine,a resident of Anjou
+834,Angiospermae class_Angiospermae Magnoliophyta division_Magnoliophyta Anthophyta division_Anthophyta,comprising flowering plants that produce seeds enclosed in an ovary; in some systems considered a class (Angiospermae) and in others a division (Magnoliophyta or Anthophyta)
+835,Angle,a member of a Germanic people who conquered England and merged with the Saxons and Jutes to become Anglo-Saxons
+836,Anglesey Anglesey_Island Anglesea Anglesea_Island Mona,an island to the northwest of Wales
+837,Anglia,the Latin name for England
+838,Anglian,one of the major dialects of Old English
+839,Anglican,a Protestant who is a follower of Anglicanism
+840,Anglican_Catholic,a member of the Anglican Church who emphasizes its Catholic character
+841,Anglican_Church Anglican_Communion Church_of_England,the national church of England (and all other churches in other countries that share its beliefs); has its see in Canterbury and the sovereign as its temporal head
+842,Anglicanism,the faith and doctrine and practice of the Anglican Church
+843,Anglicism Briticism Britishism,an expression that is used in Great Britain (especially as contrasted with American English)
+844,Anglicism Britishism,a custom that is peculiar to England or its citizens
+845,Anglicization Anglicisation,the act of anglicizing; making English in appearance
+846,Anglo-American,an American who was born in Britain or one whose ancestors were British
+847,Anglo-Catholicism High_Anglicanism,a doctrine and practice within the Church of England emphasizing the Catholic tradition
+848,Anglo-French Anglo-Norman,the French (Norman) language used in medieval England
+849,Anglo-German_concertina,a concertina with bellows and buttons on both ends
+850,Anglo-Indian,a person of English citizenship born or living in India
+851,Anglo-Saxon,a person of Anglo-Saxon (especially British) descent whose native tongue is English and whose culture is strongly influenced by English culture as in WASP for `White Anglo-Saxon Protestant'; "in the ninth century the Vikings began raiding the Anglo-Saxons in Britain"; "his ancestors were not just British, they were Anglo-Saxons"
+852,Anglo-Saxon,a native or inhabitant of England prior to the Norman Conquest
+853,Anglo-Saxon_deity,(Anglo-Saxon mythology) a deity worshipped by the Anglo-Saxons
+854,Anglomania,an excessive enthusiasm for all things English
+855,Anglophilia,admiration for Britain and British customs
+856,Anglophobia,dislike (or fear) of Britain and British customs
+857,Angola Republic_of_Angola,a republic in southwestern Africa on the Atlantic Ocean; achieved independence from Portugal in 1975 and was the scene of civil war until 1990
+858,Angolan,a native or inhabitant of Angola
+859,Angolan_monetary_unit,monetary unit in Angola
+860,Angolese,a member of the Bantu tribes resident in Angola
+861,Angora Angora_cat,a long-haired breed of cat similar to the Persian cat
+862,Angora Angora_goat,a domestic breed of goat raised for its long silky hair which is the true mohair
+863,Angora Angora_rabbit,domestic breed of rabbit with long white silky hair
+864,Angostura_Bridge,a suspension bridge across the Orinoco River at Ciudad Bolivar
+865,Anguidae family_Anguidae,alligator lizards
+866,Anguilla,a British colony in the West Indies
+867,Anguilla genus_Anguilla,type genus of the Anguillidae: eels
+868,Anguillan,a native or inhabitant of the island of Anguilla in the West Indies
+869,Anguillidae family_Anguillidae,eels that live in fresh water as adults but return to the sea to spawn
+870,Anguilliformes order_Anguilliformes order_Apodes,elongate fishes with pelvic fins and girdle absent or reduced
+871,Anguillula genus_Anguillula Turbatrix genus_Turbatrix,a genus of Cephalobidae
+872,Anguis genus_Anguis,type genus of the Anguidae: blindworms
+873,Angus_Og Aengus Oengus Angus,Celtic god of love and beauty; patron deity of young men and women
+874,Anhima genus_Anhima,type genus of the Anhimidae; horned screamers
+875,Anhimidae family_Anhimidae,screamers
+876,Anhingidae family_Anhingidae,snakebirds
+877,Anigozanthus genus_Anigozanthus,genus of monocotyledonous plants with curious woolly flowers on sturdy stems above a fan of sword-shaped leaves; includes kangaroo's paw and Australian sword lily; sometimes placed in family Amaryllidaceae
+878,Animalia kingdom_Animalia animal_kingdom,taxonomic kingdom comprising all living or extinct animals
+879,Anisoptera suborder_Anisoptera,dragonflies
+880,Anisotremus genus_Anisotremus,a genus of Haemulidae
+881,Anjou,a former province of western France in the Loire valley
+882,Ankara Turkish_capital capital_of_Turkey Angora,the capital of Turkey; located in west-central Turkey; it was formerly known as Angora and is the home of Angora goats
+883,Ann_Arbor,a city in southern Michigan near Detroit; site of the University of Michigan
+884,Annaba,a port city of northeastern Algeria near the Tunisian border
+885,Annapolis capital_of_Maryland,state capital of Maryland; site of the United States Naval Academy
+886,Annapurna Anapurna,a mountain in the Himalayas in Nepal (26,500 feet high)
+887,Anne,Queen of England and Scotland and Ireland; daughter if James II and the last of the Stuart monarchs; in 1707 she was the last English ruler to exercise the royal veto over parliament (1665-1714)
+888,Annelida phylum_Annelida,segmented worms: earthworms; lugworms; leeches
+889,Anniellidae family_Anniellidae,legless lizards
+890,Annona genus_Annona,type genus of the Annonaceae; tropical American trees or shrubs
+891,Annonaceae family_Annonaceae custard-apple_family,chiefly tropical trees or shrubs
+892,Annunciation,(Christianity) the announcement to the Virgin Mary by the angel Gabriel of the incarnation of Christ
+893,Annunciation Lady_Day Annunciation_Day March_25,a festival commemorating the announcement of the Incarnation by the angel Gabriel to the Virgin Mary; a quarter day in England, Wales, and Ireland
+894,Annwfn Annwn,(Welsh mythology) the other world; land of fairies
+895,Anobiidae family_Anobiidae,deathwatch beetles
+896,Anodonta genus_Anodonta,thin-shelled freshwater mussels
+897,Anoectochilus genus_Anoectochilus,genus of delicate Asiatic orchids
+898,Anogramma genus_Anogramma,a genus of ferns belonging to the family Pteridaceae
+899,Anolis genus_Anolis,New World chameleons
+900,Anomala genus_Anomala,genus of beetles whose grubs feed mainly on roots of plants; includes several pests of cultivated grasses
+901,Anomalopidae family_Anomalopidae,a family of fish including: flashlight fishes
+902,Anomia genus_Anomia,type genus of the family Anomiidae: saddle oysters
+903,Anomiidae family_Anomiidae,saddle oysters
+904,Anopheles genus_Anopheles,malaria mosquitoes; distinguished by the adult's head-downward stance and absence of breathing tubes in the larvae
+905,Anoplura order_Anoplura,sucking lice
+906,Anostraca order_Anostraca,small aquatic crustaceans lacking a carapace: fairy shrimps; brine shrimps
+907,Anouilh Jean_Anouilh,French dramatist noted for his reinterpretations of Greek myths (1910-1987)
+908,Ansar_al_Islam Ansar_al-Islam Supporters_of_Islam,a radical Islamic group of terrorists in the Iraqi part of Kurdistan who oppose an independent secular nation as advocated by the United States; some members fought with the Taliban and al-Qaeda forces in Afghanistan; said to receive financial support from Saddam Hussein
+909,Anselm Saint_Anselm St._Anselm,an Italian who was a Benedictine monk; was archbishop of Canterbury from 1093 to 1109; one of the founders of scholasticism; best known for his proof of the existence of God
+910,Anser genus_Anser,typical geese
+911,Anseres suborder_Anseres,used in some especially older classifications; coextensive with the family Anatidae
+912,Anseriformes order_Anseriformes,ducks; geese; swans; screamers
+913,Anserinae subfamily_Anserinae,used in some classifications for the swans
+914,Anshar,the Babylonian father of the gods; identified with Assyrian Ashur; in Sumerian the name signifies `the totality of the upper world'
+915,Antalya Adalia,a port city in southwestern Turkey on the Gulf of Antalya
+916,Antananarivo capital_of_Madagascar,the capital and largest city of Madagascar
+917,Antarctic Antarctic_Zone South_Frigid_Zone,the region around the south pole: Antarctica and surrounding waters
+918,Antarctic_Circle,a line of latitude north of the south pole
+919,Antarctic_Ocean,the southern waters surrounding Antarctica
+920,Antarctic_Peninsula Palmer_Peninsula,a large peninsula of Antarctica that extends some 1200 miles north toward South America; separates the Weddell Sea from the South Pacific
+921,Antarctica Antarctic_continent,an extremely cold continent at the south pole almost entirely below the Antarctic Circle; covered by an ice cap up to 13,000 feet deep; "Antarctica is twice the size of Australia"
+922,Antares,the brightest star in Scorpius
+923,Antedon genus_Antedon,a genus of echinoderms of the family Antedonidae
+924,Antedonidae family_Antedonidae,feather stars
+925,Antennaria genus_Antennaria,small woolly perennial herbs having small whitish discoid flowers surrounded by a ring of club-shaped bristles
+926,Antennariidae family_Antennariidae,frogfishes; tropical spiny-finned marine fishes having large nearly vertical mouths; related to toadfishes and anglers
+927,Anthemis genus_Anthemis,dog fennel
+928,Antheraea genus_Antheraea,large moths whose larvae produce silk of high quality
+929,Anthericum genus_Anthericum,genus of Old World (mainly African) perennial herbs; sometimes placed in family Asphodelaceae
+930,Antheropeas genus_Antheropeas,small genus of North American herbs often included in genus Eriophyllum
+931,Anthidium genus_Anthidium,potter bees
+932,Anthoceropsida class_Anthoceropsida,hornworts: in some classification systems included in the class Hepaticopsida
+933,Anthoceros genus_Anthoceros,hornworts
+934,Anthocerotaceae family_Anthocerotaceae,hornworts
+935,Anthocerotales order_Anthocerotales,hornworts; liverworts having a thalloid gametophyte; in some classification systems included in the class Hepaticopsida
+936,Anthonomus genus_Anthonomus,weevils destructive of cultivated plants
+937,Anthony Susan_Anthony Susan_B._Anthony Susan_Brownell_Anthony,United States suffragist (1820-1906)
+938,Anthozoa class_Anthozoa Actinozoa class_Actinozoa,a large class of sedentary marine coelenterates that includes sea anemones and corals; the medusoid phase is entirely suppressed
+939,Anthriscus genus_Anthriscus,chervil: of Europe, North Africa and Asia
+940,Anthropoidea suborder_Anthropoidea,monkeys; apes; hominids
+941,Anthus genus_Anthus,pipits
+942,Anthyllis genus_Anthyllis,genus of Mediterranean herbs and shrubs
+943,Anti-Masonic_Party,a former political party in the United States; founded in 1825 in opposition to Freemasonry in public affairs
+944,Antichrist,(Christianity) the adversary of Christ (or Christianity) mentioned in the New Testament; the Antichrist will rule the world until overthrown by the Second Coming of Christ
+945,Antido,an artificial language related to Ido
+946,Antidorcas genus_Antidorcas,springboks
+947,Antigone,(Greek mythology) the daughter of King Oedipus who disobeyed her father and was condemned to death
+948,Antigonia genus_Antigonia,a genus of fish in the family Caproidae
+949,Antigonus Antigonus_Cyclops Monophthalmos,a general of Alexander the Great and king of Macedonia; lost one eye; killed in a battle at Ipsus (382-301 BC)
+950,Antigua,the largest of the islands comprising Antigua and Barbuda
+951,Antigua_and_Barbuda,a country in the northern Leeward Islands
+952,Antiguan,a native or inhabitant of Antigua
+953,Antilles,a group of islands in the West Indies
+954,Antilocapra genus_Antilocapra,type and sole genus of the Antilocapridae comprising one species
+955,Antilocapridae family_Antilocapridae,comprising only the pronghorns
+956,Antilope genus_Antilope,blackbucks
+957,Antioch Antakya Antakiya,a town in southern Turkey; ancient commercial center and capital of Syria; an early center of Christianity
+958,Antirrhinum genus_Antirrhinum,a genus of herbs of the family Scrophulariaceae with brightly colored irregular flowers
+959,Antlia,a faint constellation in the southern hemisphere near Hydra and Vela
+960,Antofagasta,a port city on the Pacific in northern Chile
+961,Antonine_Wall,a fortification 37 miles long across the narrowest part of southern Scotland (between the Firth of Forth and the Firth of Clyde); built in 140 to mark the frontier of the Roman province of Britain
+962,Antoninus Aurelius Marcus_Aurelius Marcus_Aurelius_Antoninus Marcus_Annius_Verus,Emperor of Rome; nephew and son-in-law and adoptive son of Antonius Pius; Stoic philosopher; the decline of the Roman Empire began under Marcus Aurelius (121-180)
+963,Antonius_Pius,Emperor of Rome; adoptive son of Hadrian (86-161)
+964,Antony Anthony Mark_Antony Mark_Anthony Antonius Marcus_Antonius,Roman general under Julius Caesar in the Gallic wars; repudiated his wife for the Egyptian queen Cleopatra; they were defeated by Octavian at Actium (83-30 BC)
+965,Antrozous genus_Antrozous,a genus of Vespertilionidae
+966,Antum,Babylonian consort of Anu
+967,Antwerpen Antwerp Anvers,a busy port and financial center in northern Belgium on the Scheldt river; it has long been a center for the diamond industry and the first stock exchange was opened there in 1460
+968,Anu,Babylonian god of the sky; one of the supreme triad including Bel and Ea
+969,Anubis Anpu,Egyptian god of tombs and ruler of the underworld; usually depicted as a man with the head of a jackal
+970,Anunnaki Enuki,any of a group of powerful Babylonian earth spirits or genii; servitors of the gods
+971,Anzac,a soldier in the Australian and New Zealand army corps during World War I
+972,Anzio,a town of central Italy on the Tyrrhenian Sea; the Allies established a beachhead at Anzio in World War II
+973,Aotus genus_Aotus,douroucoulis
+974,Apache,any member of Athapaskan tribes that migrated to the southwestern desert (from Arizona to Texas and south into Mexico); fought a losing battle from 1861 to 1886 with the United States and were resettled in Oklahoma
+975,Apache,the language of the Apache
+976,Apalachicola Apalachicola_River,a river in northwestern Florida formed by the confluence of the Chattahoochee River and the Flint River at the Florida border
+977,Apalachicola_rosemary Conradina_glabra,small shrub of Apalachicola River area in southeastern United States having highly aromatic pinkish flowers; a threatened species
+978,Apatura genus_Apatura,large Old World butterflies
+979,Apeldoorn,a city of east central Netherlands; a popular tourist center and site of the summer residence of the Dutch royal family
+980,Apennines,a mountain range extending the length of the Italian peninsula
+981,Apgar_score,an assessment of the physical condition of a newborn infant; involves heart rate and muscle tone and respiratory effort and color and reflex responsiveness
+982,Aphasmidia class_Aphasmidia,one of two subgroups of Nematoda used in some classification systems
+983,Aphididae family_Aphididae,small soft-bodied plant lice
+984,Aphidoidea superfamily_Aphidoidea,plant lice
+985,Aphis genus_Aphis,type genus of the Aphididae: injurious to fruit trees and vegetables
+986,Aphriza genus_Aphriza,a genus of Scolopacidae
+987,Aphrodite Cytherea,goddess of love and beauty and daughter of Zeus in ancient mythology; identified with Roman Venus
+988,Aphrophora genus_Aphrophora,a genus of Cercopidae
+989,Aphyllanthaceae family_Aphyllanthaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Aphyllanthes
+990,Aphyllanthes genus_Aphyllanthes,one species; small fibrous-rooted perennial with rushlike foliage and deep blue flowers; sometimes placed in its own family Aphyllanthaceae
+991,Aphyllophorales order_Aphyllophorales,includes chiefly saprophytic fungi typically with shelflike bodies; sometimes placed in class Hymenomycetes or included in Agaricales
+992,Apia capital_of_Western_Samoa,the capital of Western Samoa
+993,Apidae family_Apidae,honeybees; carpenter bees; bumblebees
+994,Apios genus_Apios,twining perennial North American plants
+995,Apis genus_Apis,type genus of the Apidae: honeybees
+996,Apium genus_Apium,celery
+997,Aplectrum genus_Aplectrum,a monocotyledonous genus of the family Orchidaceae
+998,Aplodontia genus_Aplodontia,type genus of the Aplodontiidae: comprising the mountain beavers
+999,Aplodontiidae family_Aplodontiidae,mountain beavers
+1000,Aplysia genus_Aplysia Tethys genus_Tethus,type genus of the family Aplysiidae
+1001,Aplysiidae family_Aplysiidae Tethyidae family_Tethyidae,sea hares
+1002,Apocrypha,14 books of the Old Testament included in the Vulgate (except for II Esdras) but omitted in Jewish and Protestant versions of the Bible; eastern Christian churches (except the Coptic Church) accept all these books as canonical; the Russian Orthodox Church accepts these texts as divinely inspired but does not grant them the same status
+1003,Apocynaceae family_Apocynaceae dogbane_family,chiefly tropical trees or shrubs or herbs having milky juice and often showy flowers; many are sources of drugs
+1004,Apocynum genus_Apocynum,perennial herbs with small pink or white flowers
+1005,Apodemus genus_Apodemus,Old World field mice
+1006,Apodidae family_Apodidae,swifts; in former classifications included in the order Coraciiformes
+1007,Apodiformes order_Apodiformes,swifts; hummingbirds
+1008,Apogon genus_Apogon,type genus of the Apogonidae
+1009,Apogonidae family_Apogonidae,bright-colored marine fishes that incubate eggs in the mouth
+1010,Apoidea superfamily_Apoidea,bees
+1011,Apollinaire Guillaume_Apollinaire Wilhelm_Apollinaris_de_Kostrowitzki,French poet; precursor of surrealism (1880-1918)
+1012,Apollo Phoebus Phoebus_Apollo,(Greek mythology) Greek god of light; god of prophecy and poetry and music and healing; son of Zeus and Leto; twin brother of Artemis
+1013,Apollo_asteroid,an asteroid whose orbit crosses the Earth's orbit
+1014,Apollo_program,a program of space flights undertaken by US to land a man on the Moon; "the first lunar landing was achieved by the Apollo program on July 20, 1969"
+1015,Aporocactus genus_Aporocactus,small genus of epiphytic cacti of Mexico
+1016,Apostle,(New Testament) one of the original 12 disciples chosen by Christ to preach his gospel
+1017,Apostle Apostelic_Father,any important early teacher of Christianity or a Christian missionary to a people
+1018,Appalachia,an impoverished coal mining area in the Appalachian Mountains (from Pennsylvania to North Carolina)
+1019,Appalachian,a native or inhabitant of Appalachia
+1020,Appalachians Appalachian_Mountains,a mountain range in the eastern United States extending from Quebec to the Gulf of Mexico; a historic barrier to early westward expansion of the United States
+1021,Appaloosa,a hardy breed of saddle horse developed in western North America and characteristically having a spotted rump
+1022,Appenzeller,a smaller of the four Swiss breeds
+1023,Appian_Way,an ancient Roman road in Italy extending south from Rome to Brindisi; begun in 312 BC
+1024,Appleton,a town in eastern Wisconsin
+1025,Appleton Edward_Appleton Sir_Edward_Victor_Appleton,English physicist remembered for his studies of the ionosphere (1892-1966)
+1026,Appleton_layer F_layer F_region,the highest region of the ionosphere (from 90 to 600 miles up) which contains the highest concentration of free electrons and is most useful for long-range radio transmission
+1027,April Apr,the month following March and preceding May
+1028,April_Fools' April_Fools'_day All_Fools'_day,the first day of April which is celebrated by playing practical jokes
+1029,April_fool,the butt of a prank played on April 1st
+1030,April_fool,a practical joke or trick played on the first day of April
+1031,Apsu,father of the gods and consort of Tiamat
+1032,Aptenodytes genus_Aptenodytes,large penguins
+1033,Apterygidae family_Apterygidae,coextensive with the order Apterygiformes
+1034,Apterygiformes order_Apterygiformes,a ratite bird order: flightless ground birds having vestigial wings and long bills and small eyes: kiwis
+1035,Apus,a constellation in the polar region of the southern hemisphere near Octans
+1036,Apus genus_Apus,type genus
+1037,Aquarius,a zodiacal constellation in the southern hemisphere; between Capricornus and Pisces
+1038,Aquarius Aquarius_the_Water_Bearer Water_Bearer,the eleventh sign of the zodiac; the sun is in this sign from about January 20 to February 18
+1039,Aquarius Water_Bearer,(astrology) a person who is born while the sun is in Aquarius
+1040,Aquifoliaceae family_Aquifoliaceae holly_family,widely distributed shrubs and trees
+1041,Aquila,a constellation in the Milky Way near Cygnus; contains the star Altair
+1042,Aquila L'Aquila Aquila_degli_Abruzzi,the provincial capital of the Abruzzi region in central Italy
+1043,Aquila genus_Aquila,a genus of Accipitridae
+1044,Aquinas Thomas_Aquinas Saint_Thomas St._Thomas Saint_Thomas_Aquinas St._Thomas_Aquinas,(Roman Catholic Church) Italian theologian and Doctor of the Church who is remembered for his attempt to reconcile faith and reason in a comprehensive theology; presented philosophical proofs of the existence of God (1225-1274)
+1045,Aquitaine Aquitania,a region of southwestern France between Bordeaux and the Pyrenees
+1046,Ara,a constellation in the southern hemisphere near Telescopium and Norma
+1047,Ara genus_Ara,macaws
+1048,Arab Arabian,a member of a Semitic people originally from the Arabian peninsula and surrounding territories who speaks Arabic and who inhabits much of the Middle East and northern Africa
+1049,Arab-Israeli_War Six-Day_War Six_Day_War,tension between Arabs and Israeli erupted into a brief war in June 1967; Israel emerged as a major power in the Middle East
+1050,Arab-Israeli_War Yom_Kippur_War,Egypt and Syria attacked Israel in October 1973 (on Yom Kippur); Israel counterattacked and drove the Syrians back and crossed the Suez Canal into Egypt
+1051,Arab_League,an international organization of independent Arab states formed in 1945 to promote cultural and economic and military and political and social cooperation
+1052,Arabian Arab,a spirited graceful and intelligent riding horse native to Arabia
+1053,Arabian_Desert Eastern_Desert,a desert in Egypt between the Nile River and the Red Sea
+1054,Arabian_Desert Great_Arabian_Desert,a desert on the Arabian Peninsula in southwestern Asia
+1055,Arabian_Nights'_Entertainment Arabian_Nights Thousand_and_One_Nights,a collection of folktales in Arabic dating from the 10th century
+1056,Arabian_Peninsula Arabia,a peninsula between the Red Sea and the Persian Gulf; strategically important for its oil resources
+1057,Arabian_Sea,a northwestern arm of the Indian Ocean between India and Arabia
+1058,Arabian_camel dromedary Camelus_dromedarius,one-humped camel of the hot deserts of northern Africa and southwestern Asia
+1059,Arabian_coffee Coffea_arabica,shrubby tree of northeastern tropical Africa widely cultivated in tropical or near tropical regions for its seed which form most of the commercial coffee
+1060,Arabian_jasmine Jasminum_sambac,East Indian evergreen vine cultivated for its profuse fragrant white flowers
+1061,Arabic Arabic_language,the Semitic language of the Arabs; spoken in a variety of dialects
+1062,Arabic_alphabet,the alphabet of 28 characters derived from Aramaic and used for writing Arabic languages (and borrowed for writing Urdu)
+1063,Arabic_numeral Hindu_numeral Hindu-Arabic_numeral,one of the symbols 1,2,3,4,5,6,7,8,9,0
+1064,Arabidopsis genus_Arabidopsis,a genus of the mustard family having white or yellow or purplish flowers; closely related to genus Arabis
+1065,Arabidopsis_lyrata,a small noninvasive cross-pollinating plant with white flowers; closely related to Arabidopsis thaliana
+1066,Arabidopsis_thaliana mouse-ear_cress,a small invasive self-pollinating weed with small white flowers; much studied by plant geneticists; the first higher plant whose complete genome sequence was described
+1067,Arabis genus_Arabis,annual to perennial woody herbs of temperate North America, Europe and Asia: rockcress
+1068,Arabist,a scholar who specializes in Arab languages and culture
+1069,Araceae family_Araceae arum_family,anthurium; calla lily; jack-in-the-pulpit; philodendron
+1070,Arachis genus_Arachis,a genus of plants with pods that ripen underground (see peanut)
+1071,Arachnida class_Arachnida,a large class of arthropods including spiders and ticks and scorpions and daddy longlegs; have four pairs of walking legs and no wings
+1072,Arafat Yasser_Arafat,Palestinian statesman who was chairman of the Palestine Liberation Organization (1929-2004)
+1073,Arafura_Sea,a part of the western Pacific Ocean to the north of Australia and to the south of New Guinea and the eastern islands of Indonesia
+1074,Aragon,a region of northeastern Spain; a former kingdom that united with Castile in 1479 to form Spain (after the marriage of Ferdinand V and Isabella I)
+1075,Aragon Louis_Aragon,French writer who generalized surrealism to literature (1897-1982)
+1076,Araguaia Araguaia_River Araguaya Araguaya_River,a river in central Brazil that flows generally northward (with many falls) to join the Tocantins River
+1077,Arales order_Arales,Araceae; Lemnaceae
+1078,Araliaceae family_Araliaceae ivy_family,mostly tropical trees and shrubs and lianas: genera Panax and Hedera
+1079,Aram,the biblical name for ancient Syria
+1080,Aramaic,a Semitic language originally of the ancient Arameans but still spoken by other people in southwestern Asia
+1081,Aramaic Aramaic_script,an alphabetical (or perhaps syllabic) script used since the 9th century BC to write the Aramaic language; many other scripts were subsequently derived from it
+1082,Aramean Aramaean,a member of one of a group of Semitic peoples inhabiting Aram and parts of Mesopotamia from the 11th to the 8th century BC
+1083,Aramus genus_Aramus,genus of large brown long-billed wading birds found in warm swampy regions of the western hemisphere: courlan; limpkin
+1084,Aran_Islands,three small islands belonging to Ireland at the entrance to Galway Bay
+1085,Aranea genus_Aranea Araneus genus_Araneus,a genus of orb-weaving spiders including common garden spiders and barn spiders
+1086,Araneae order_Araneae Araneida order_Araneida,spiders
+1087,Aranyaka,a treatise resembling a Brahmana but to be read or expounded by anchorites in the quiet of the forest
+1088,Arapaho Arapahoe,a member of a tribe of Plains Indians formerly inhabiting eastern Colorado and Wyoming (now living in Oklahoma and Wyoming)
+1089,Arapaho Arapahoe,the Algonquian language spoken by the Arapaho
+1090,Ararat Mount_Ararat Mt._Ararat,the mountain peak that Noah's ark landed on as the waters of the great flood receded
+1091,Aras Araxes,a river that rises in northeastern Turkey (near the source of the Euphrates) and flows generally eastward through Armenia to the Caspian Sea; ancient name was Araxes
+1092,Arauca,a river that rises in northern Colombia and flows generally eastward to the Orinoco in central Venezuela
+1093,Araucariaceae family_Araucariaceae araucaria_family,tall evergreen cone-bearing trees of South America and Australia with broad leathery leaves; in some classifications included in the Pinaceae
+1094,Araujia genus_Araujia,small genus of South American evergreen vines
+1095,Arawak Arawakan,a member of a widespread group of Amerindians living in northeastern South America
+1096,Arawak Arawakan,a family of South American Indian languages spoken in northeastern South America
+1097,Arawn,Celtic deity who was the lord of Annwfn (the other world or the land of fairies)
+1098,Arbor_Day,a day designated for planting trees
+1099,Arca genus_Arca,type genus of the family Arcidae: ark shells and blood clams
+1100,Arcadia,a department of Greece in the central Peloponnese
+1101,Arcadian,an inhabitant of Arcadia
+1102,Arcadic Arcadic_dialect,the dialect of Ancient Greek spoken by Arcadians
+1103,Arcellidae family_Arcellidae,soil and freshwater protozoa; cosmopolitan in distribution
+1104,Arceuthobium genus_Arceuthobium,genus of chiefly American plants parasitic on conifers
+1105,Archaeornithes subclass_Archaeornithes,primitive reptile-like fossil birds of the Jurassic or early Cretaceous
+1106,Archean Archean_eon Archean_aeon Archeozoic Archaeozoic Archeozoic_eon Archaeozoic_aeon,the time from 3,800 million years to 2,500 million years ago; earth's crust formed; unicellular organisms are earliest forms of life
+1107,Arches_National_Park,a national park in Utah including mountains and the Colorado River gorge and huge rock formations caused by erosion
+1108,Archiannelida class_Archiannelida,a class of Annelida
+1109,Archidiskidon genus_Archidiskidon,a genus of Elephantidae
+1110,Archilochus genus_Archilochus,a genus of Trochilidae
+1111,Archilochus_colubris,a kind of hummingbird
+1112,Archimedes,Greek mathematician and physicist noted for his work in hydrostatics and mechanics and geometry (287-212 BC)
+1113,Archimedes'_principle law_of_Archimedes,(hydrostatics) the apparent loss in weight of a body immersed in a fluid is equal to the weight of the displaced fluid
+1114,Archosargus genus_Archosargus,a genus of Sparidae
+1115,Archosauria subclass_Archosauria,a large subclass of diapsid reptiles including: crocodiles; alligators; dinosaurs; pterosaurs; plesiosaurs; ichthyosaurs; thecodonts
+1116,Arcidae family_Arcidae,ark shells
+1117,Arctic Arctic_Zone North_Frigid_Zone,the regions to the north of the Arctic Circle centered on the North Pole
+1118,Arctic_Archipelago,all the islands that lie to the north of mainland Canada and the Arctic Circle
+1119,Arctic_Circle,a line of latitude near but to the south of the north pole; it marks the northernmost point at which the sun is visible on the northern winter solstice and the southernmost point at which the midnight sun can be seen on the northern summer solstice
+1120,Arctic_Ocean,ice covered waters surrounding the North Pole; mostly covered with solid ice or with ice floes and icebergs
+1121,Arctic_char Salvelinus_alpinus,small trout of northern waters; landlocked populations in Quebec and northern New England
+1122,Arctic_fox white_fox Alopex_lagopus,thickly-furred fox of Arctic regions; brownish in summer and white in winter
+1123,Arctic_ground_squirrel parka_squirrel Citellus_parryi,large ground squirrel of the North American far north
+1124,Arctictis genus_Arctictis,binturongs
+1125,Arctiidae family_Arctiidae,tiger moths
+1126,Arctium genus_Arctium,burdock
+1127,Arctocebus genus_Arctocebus,a genus of Lorisidae
+1128,Arctocephalus genus_Arctocephalus,fur seals
+1129,Arctonyx genus_Arctonyx,a genus of Mustelidae
+1130,Arctostaphylos genus_Arctostaphylos,bearberry; manzanita
+1131,Arctotis genus_Arctotis,herbs and subshrubs: African daisy
+1132,Arcturus,the 4th brightest star and the brightest star in the constellation Bootes; 36 light-years from Earth
+1133,Ardea genus_Ardea,type genus of the Ardeidae: large New and Old World herons
+1134,Ardeidae family_Ardeidae,herons; egrets; night herons; bitterns
+1135,Ardennes,a wooded plateau in the Champagne-Ardenne region of France; the site of intense fighting in World War I and World War II
+1136,Ardisia genus_Ardisia,tropical evergreen subshrubs (some climbers) to trees of Asia and Australasia to Americas
+1137,Arecidae subclass_Arecidae,one of four subclasses or superorder of Monocotyledones; comprises about 6400 species in 5 families of trees and shrubs and terrestrial herbs and a few free-floating aquatics including: Palmae; Araceae; Pandanaceae and Lemnaceae
+1138,Arenaria genus_Arenaria,sandworts
+1139,Arenaria genus_Arenaria,turnstones
+1140,Arenaviridae,a family of arborviruses carried by arthropods
+1141,Arendt Hannah_Arendt,United States historian and political philosopher (born in Germany) (1906-1975)
+1142,Arenga genus_Arenga,a genus of tropical Asian and Malaysian palm trees
+1143,Areopagite,a member of the council of the Areopagus
+1144,Areopagus,a hill to the to the west of the Athenian acropolis where met the highest governmental council of ancient Athens and later a judicial court
+1145,Areopagus,the highest governmental assembly in ancient Athens (later a judicial court)
+1146,Arequipa,a city in southern Peru founded in 1540 on the site of an ancient Inca city
+1147,Ares,(Greek mythology) Greek god of war; son of Zeus and Hera; identified with Roman Mars
+1148,Argasidae family_Argasidae,soft ticks
+1149,Argentina Argentine_Republic,a republic in southern South America; second largest country in South America
+1150,Argentina genus_Argentina,type genus of the Argentinidae: argentines
+1151,Argentine_hemorrhagic_fever,hemorrhagic fever with neurological signs; caused by the Junin virus
+1152,Argentine_monetary_unit,monetary unit in Argentina
+1153,Argentinian,a native or inhabitant of Argentina
+1154,Argentinidae family_Argentinidae,small marine soft-finned fishes with long silvery bodies; related to salmons and trouts
+1155,Argiope genus_Argiope,the type genus of Argiopidae; small genus of orb-weaving spiders
+1156,Argiopidae family_Argiopidae orb-weaver,spiders that spin orb webs; cosmopolitan in distribution
+1157,Argive,a native or inhabitant of the city of Argos
+1158,Argo,formerly a large constellation in the southern hemisphere between Canis Major and the Southern Cross; now divided into Carina and Pyxis and Puppis and Vela
+1159,Argonaut,(Greek mythology) one of the heroes who sailed with Jason in search of the Golden Fleece
+1160,Argonauta genus_Argonauta,type genus of the family Argonautidae: paper nautilus
+1161,Argonautidae family_Argonautidae,represented solely by the genus Argonauta
+1162,Argos,an ancient city in southeastern Greece; dominated the Peloponnese in the 7th century BC
+1163,Argun Argun_River Ergun_He,a river in eastern Asia that arises in China and flows northeast along the border between China and Russia to become a tributary of the Amur River
+1164,Argus,(Greek mythology) a giant with 100 eyes; was guardian of the heifer Io and was slain by Hermes
+1165,Argusianus genus_Argusianus,argus pheasants
+1166,Argynnis genus_Argynnis,fritillaries
+1167,Argyranthemum genus_Argyranthemum,comprises plants often included in the genus Chrysanthemum
+1168,Argyreia genus_Argyreia,woody climbers of tropical Asia to Australia
+1169,Argyrotaenia genus_Argyrotaenia,orange tortrix
+1170,Argyroxiphium genus_Argyroxiphium,small genus of Hawaiian spreading and rosette-forming shrubs
+1171,Arhat Arhant lohan,a Buddhist who has attained nirvana
+1172,Arhus Aarhus,port city of Denmark in eastern Jutland
+1173,Ariadne,beautiful daughter of Minos and Pasiphae; she fell in love with Theseus and gave him the thread with which he found his way out of the Minotaur's labyrinth
+1174,Ariana,city in Tunisia
+1175,Arianism,heretical doctrine taught by Arius that asserted the radical primacy of the Father over the Son
+1176,Arianrhod Arianrod,Celtic goddess famous for her beauty; mother of Dylan
+1177,Aries,a small zodiacal constellation in the northern hemisphere; between Pisces and Taurus
+1178,Aries Aries_the_Ram Ram,the first sign of the zodiac which the sun enters at the vernal equinox; the sun is in this sign from about March 21 to April 19
+1179,Aries Ram,(astrology) a person who is born while the sun is in Aries
+1180,Ariidae family_Ariidae,sea catfishes
+1181,Arikara Aricara,a member of the Caddo people who formerly lived in the Dakotas west of the Missouri river
+1182,Arikara Aricara,the Caddoan language spoken by the Arikara
+1183,Arilus genus_Arilus,a genus of Reduviidae
+1184,Ariocarpus genus_Ariocarpus,slow-growing geophytic cacti; northern and eastern Mexico; southern Texas
+1185,Ariomma genus_Ariomma,a genus of Stromateidae
+1186,Arisaema genus_Arisaema,tuberous or rhizomatous herbaceous perennials
+1187,Arisarum genus_Arisarum,tuberous or rhizomatous perennial herbs; mainly Mediterranean area
+1188,Aristarchus,an ancient Greek grammarian remembered for his commentary on the Iliad and Odyssey (circa 217-145 BC)
+1189,Aristarchus,a bright crater on the Moon
+1190,Aristarchus_of_Samos,an ancient Greek astronomer who was one of the first to propose a heliocentric theory of the universe (circa 270 BC)
+1191,Aristolochia genus_Aristolochia,birthworts; Dutchman's-pipe
+1192,Aristolochiaceae family_Aristolochiaceae birthwort_family,family of birthworts (including wild ginger)
+1193,Aristolochiales order_Aristolochiales,order of plants distinguished by tubular petaloid perianth and inferior ovary
+1194,Aristophanes,an ancient Greek dramatist remembered for his comedies (448-380 BC)
+1195,Aristotelia genus_Aristotelia,small genus of shrubs or small trees of Australia and New Zealand and western South America
+1196,Aristotelian Aristotelean Peripatetic,a follower of Aristotle or an adherent of Aristotelianism
+1197,Aristotelian_logic,the syllogistic logic of Aristotle as developed by Boethius in the Middle Ages
+1198,Aristotelianism peripateticism,(philosophy) the philosophy of Aristotle that deals with logic and metaphysics and ethics and poetics and politics and natural science; "Aristotelianism profoundly influenced Western thought"
+1199,Aristotle,one of the greatest of the ancient Athenian philosophers; pupil of Plato; teacher of Alexander the Great (384-322 BC)
+1200,Arius,a Greek who was a Christian theologian active in Alexandria and who was declared a heretic for his doctrines about God (which came to be known as Arianism) (256?-336)
+1201,Arius genus_Arius,type genus of the Ariidae: sea catfishes
+1202,Arizona Grand_Canyon_State AZ,a state in southwestern United States; site of the Grand Canyon
+1203,Arizona genus_Arizona,glossy snake
+1204,Arizona_ash Fraxinus_velutina,small shrubby ash of southwestern United States and northwestern Mexico
+1205,Arizona_cypress Cupressus_arizonica,Arizona timber tree with bluish silvery foliage
+1206,Arizona_sycamore Platanus_wrightii,medium-sized tree of Arizona and adjacent regions having deeply lobed leaves and collective fruits in groups of 3 to 5
+1207,Arizona_white_oak Quercus_arizonica,semi-evergreen shrub or small tree of Arizona and New Mexico having acorns with hemispherical cups
+1208,Arizonan Arizonian,a native or resident of Arizona
+1209,Arjuna,(Hindu mythology) the warrior prince in the Bhagavad-Gita to whom Krishna explains the nature of being and of God and how humans can come to know God
+1210,Ark Ark_of_the_Covenant,(Judaism) sacred chest where the ancient Hebrews kept the two tablets containing the Ten Commandments
+1211,Arkansan Arkansawyer,a native or resident of Arkansas
+1212,Arkansas Arkansas_River,a river that rises in the Rocky Mountains in Colorado and flows southeast through Kansas and Oklahoma and through Arkansas to become a tributary of the Mississippi River
+1213,Arkansas Land_of_Opportunity AR Ark.,a state in south central United States; one of the Confederate states during the American Civil War
+1214,Arkansas_kingbird western_kingbird,a kingbird seen in western United States; head and back are pale grey and the breast is yellowish and the tail is black
+1215,Arlington,a city in northern Texas between Dallas and Fort Worth
+1216,Armadillidiidae family_Armadillidiidae,pill bugs
+1217,Armadillidium genus_Armadillidium,type genus of the Armadillidiidae
+1218,Armageddon,(New Testament) the scene of the final battle between the kings of the Earth at the end of the world
+1219,Armageddon,any catastrophically destructive battle; "they called the first World War an Armageddon"
+1220,Armagnac,dry brandy distilled in the Armagnac district of France
+1221,Armata_Corsa Corsican_Army,a terrorist organization founded in 1999 to oppose the link between nationalists and the Corsican mafia; "the attacks of Armata Corsa are aimed at symbolic targets of colonialism in Corsica"
+1222,Armed_Forces_Day,the 3rd Saturday in May
+1223,Armed_Islamic_Group GIA,a terrorist organization of Islamic extremists whose violent activities began in 1992; aims to overthrow the secular Algerian regime and replace it with an Islamic state; "the GIA has embarked on a terrorist campaign of civilian massacres"
+1224,Armenia Republic_of_Armenia Hayastan,a landlocked republic in southwestern Asia; formerly an Asian soviet; modern Armenia is but a fragment of ancient Armenia which was one of the world's oldest civilizations; throughout 2500 years the Armenian people have been invaded and oppressed by their neighbors
+1225,Armenian,a native or inhabitant of Armenia
+1226,Armenian Armenian_alphabet,a writing system having an alphabet of 38 letters in which the Armenian language is written
+1227,Armenian Armenian_language,the Indo-European language spoken predominantly in Armenia, but also in Azerbaijan
+1228,Armenian_Church Armenian_Apostolic_Orthodox_Church,an independent Christian church established in Armenia since 300; was influenced by both Roman and Byzantine traditions
+1229,Armenian_Secret_Army_for_the_Liberation_of_Armenia ASALA Orly_Group 3rd_October_Organization,a militant Marxist-Leninist terrorist organization formed in 1975 to force Turkey to acknowledge killing more than a million Armenians and forcibly removing them from border areas in 1915; wants Turkey to pay reparations and cede territory to Armenia; "ASALA bombing at Orly Airport in Paris in 1983 killed 8 and wounded 55 people"
+1230,Armenian_monetary_unit,monetary unit in Armenia
+1231,Armeria genus_Armeria,shrubby or herbaceous low-growing evergreen perennials
+1232,Armillaria genus_Armillaria,genus of edible mushrooms having white spores an annulus and blue juice; some are edible; some cause root rot
+1233,Armillaria_caligata booted_armillaria,fungus with a brown cap and white gills and a membranous ring halfway up the stalk
+1234,Armillaria_ponderosa white_matsutake,a large white mushroom that develops brown stains as it ages; gills are white; odor is spicy and aromatic; collected commercially for oriental cooking the Pacific Northwest
+1235,Armillaria_zelleri,a large fungus with viscid cap that dries and turns brown with age; gills are off-white
+1236,Armillariella genus_Armillariella,a honey-colored diminutive form of genus Armillaria; grows in clusters; edible (when cooked) but most attention has been on how to get rid of it
+1237,Arminian,adherent of Arminianism
+1238,Arminian_Baptist General_Baptist,group of Baptist congregations believing the teachings of the Dutch theologian Jacobus Arminius (who opposed the doctrine of strict predestination of the Calvinists)
+1239,Arminian_Church,the Protestant denomination adhering to the views of Jacobus Arminius
+1240,Arminianism,17th century theology (named after its founder Jacobus Arminius) that opposes the absolute predestinarianism of John Calvin and holds that human free will is compatible with God's sovereignty
+1241,Arminius Armin Hermann,German hero; leader at the battle of Teutoburger Wald in AD 9 (circa 18 BC - AD 19)
+1242,Arminius Jacobus_Arminius Jacob_Harmensen Jakob_Hermandszoon,Dutch Protestant theologian who founded Arminianism which opposed the absolute predestinarianism of John Calvin (1559-1609)
+1243,Armoracia genus_Armoracia,horseradish
+1244,Armstrong Louis_Armstrong Satchmo,United States pioneering jazz trumpeter and bandleader (1900-1971)
+1245,Armstrong Neil_Armstrong,United States astronaut; the first man to set foot on the Moon (July 20, 1969) (1930-)
+1246,Army_High_Performance_Computing_Research_Center AHPCRC,a United States defense laboratory to conduct research in high-performance computing for defense technology applications; a partnership of government and university and industry
+1247,Army_Intelligence AI,an agency of the United States Army responsible for providing timely and relevant and accurate and synchronized intelligence to tactical and operational and strategic level commanders
+1248,Army_National_Guard ARNG,a civilian reserve component of the United States Army comprised of guardsmen who serve during overseas peacekeeping missions and during local emergencies
+1249,Army_for_the_Liberation_of_Rwanda ALIR Former_Armed_Forces FAR Interahamwe,a terrorist organization that seeks to overthrow the government dominated by Tutsi and to institute Hutu control again; "in 1999 ALIR guerrillas kidnapped and killed eight foreign tourists"
+1250,Arnhem,a city in the central Netherlands on the lower Rhine River; site of a battle in 1944 during World War II
+1251,Arnica_montana,herb of pasture and open woodland throughout most of Europe and western Asia having orange-yellow daisylike flower heads that when dried are used as a stimulant and to treat bruises and swellings
+1252,Arno Arno_River River_Arno,a river in central Italy rising in the Apennines and flowing through Florence and Pisa to the Ligurian Sea
+1253,Arnold Benedict_Arnold,United States general and traitor in the American Revolution; in 1780 his plan to surrender West Point to the British was foiled (1741-1801)
+1254,Arnold Matthew_Arnold,English poet and literary critic (1822-1888)
+1255,Arnold-Chiari_deformity,deformity in which part of the brain protrudes through the skull
+1256,Arnold_of_Brescia,Italian theologian who censured the worldly possessions of monks and the temporal power of bishops and was condemned for dogmatic errors by the Second Lateran Council (early 12th century)
+1257,Arnoseris genus_Arnoseris,lamb succory
+1258,Arp Jean_Arp Hans_Arp,Alsatian artist and poet who was cofounder of dadaism in Zurich; noted for abstract organic sculptures (1887-1966)
+1259,Arrhenatherum genus_Arrhenatherum,oat grass
+1260,Arrhenius Svante_August_Arrhenius,Swedish chemist and physicist noted for his theory of chemical dissociation (1859-1927)
+1261,Artamidae family_Artamidae,wood swallows
+1262,Artamus genus_Artamus,type genus of the Artamidae
+1263,Artaxerxes_I Artaxerxes,king of Persia who sanctioned the practice of Judaism in Jerusalem (?-424 BC)
+1264,Artaxerxes_II Artaxerxes,king of Persia who subdued numerous revolutions and made peace with Sparta (?-359 BC)
+1265,Artemia genus_Artemia Chirocephalus genus_Chirocephalus,fairy shrimp; brine shrimp
+1266,Artemis Cynthia,(Greek mythology) the virgin goddess of the hunt and the Moon; daughter of Leto and twin sister of Apollo; identified with Roman Diana
+1267,Artemision_at_Ephesus,the large temple of the Greek goddess Artemis which was begun at Ephesus in 541 BC and completed 220 years later; the temple was destroyed by the Goths in 262
+1268,Arthropoda phylum_Arthropoda,jointed-foot invertebrates: arachnids; crustaceans; insects; millipedes; centipedes
+1269,Arthropteris genus_Arthropteris,tropical and subtropical Old World epiphytic or lithophytic ferns
+1270,Arthur Chester_A._Arthur Chester_Alan_Arthur President_Arthur,elected vice president and became 21st President of the United States when Garfield was assassinated (1830-1886)
+1271,Arthur King_Arthur,a legendary king of the Britons (possibly based on a historical figure in the 6th century but the story has been retold too many times to be sure); said to have led the Knights of the Round Table at Camelot
+1272,Arthurian_legend,the legend of King Arthur and his court at Camelot
+1273,Articles_of_Confederation,a written agreement ratified in 1781 by the thirteen original states; it provided a legal symbol of their union by giving the central government no coercive power over the states or their citizens
+1274,Artiodactyla order_Artiodactyla,an order of hooved mammals of the subclass Eutheria (including pigs and peccaries and hippopotami and members of the suborder Ruminantia) having an even number of functional toes
+1275,Artocarpus genus_Artocarpus,evergreen Asiatic trees now grown through the tropics: breadfruit; jackfruit
+1276,Artois,a former province of northern France near the English Channel (between Picardy and Flanders)
+1277,Aruba,a popular island resort in the Netherlands Antilles
+1278,Arulo,an artificial language intended for international use as an auxiliary language
+1279,Arundinaria genus_Arundinaria,North American bamboo
+1280,Arundo genus_Arundo,any of several coarse tall perennial grasses of most warm areas: reeds
+1281,Aruru,mother and earth goddess in Gilgamish epic; identified with Sumerian Ki and Ninkhursag
+1282,Arvicola genus_Arvicola,in some classifications considered synonymous with Microtus
+1283,Aryan,(according to Nazi doctrine) a Caucasian person of Nordic descent (and not a Jew)
+1284,Aryan Indo-European,a member of the prehistoric people who spoke Proto-Indo European
+1285,Asahikawa,a city on western Hokkaido that is the center of a fertile agricultural area
+1286,Asama Mount_Asama,a volcano in central Honshu near Nagano; one of the largest volcanoes in Japan (8,340 feet)
+1287,Asanga,Indian religious leader and founder of the Yogacara school of Buddhism in India (4th century)
+1288,Asarh Asadha,the fourth month of the Hindu calendar
+1289,Asarum genus_Asarum,wild ginger
+1290,Asbat_al-Ansar Band_of_Partisans,an extremist Palestinian Sunni group active in Lebanon in the early 1990s that advocates Salafism; responsible for murders and bombings; seeks to overthrow the Lebanese government and control Palestinian refugee camps; funded by al-Qaeda
+1291,Ascaphidae family_Ascaphidae,family of one species of frog: tailed frog
+1292,Ascaphus genus_Ascaphus,type genus of the Ascaphidae; in some classifications included in the family Leiopelmatidae
+1293,Ascaridae family_Ascaridae,large roundworms parasitic in intestines of vertebrates
+1294,Ascaridia genus_Ascaridia,roundworm having a preanal sucker
+1295,Ascaris genus_Ascaris,type genus of the family Ascaridae: roundworms with a three-lipped mouth
+1296,Ascension Ascension_Day Ascension_of_the_Lord,(Christianity) celebration of the Ascension of Christ into heaven; observed on the 40th day after Easter
+1297,Ascension Ascension_of_Christ,(New Testament) the rising of the body of Jesus into heaven on the 40th day after his Resurrection
+1298,Asch Sholem_Asch Shalom_Asch Sholom_Asch,United States writer (born in Poland) who wrote in Yiddish (1880-1957)
+1299,Ascidiaceae class_Ascidiaceae,sometimes classified as an order: sea squirts
+1300,Asclepiadaceae family_Asclepiadaceae milkweed_family,widely distributed family of herbs and shrubs of the order Gentianales; most with milky juice
+1301,Asclepias genus_Asclepias,genus of chiefly North American perennial herbs: silkweed; milkweed
+1302,Ascomycetes class_Ascomycetes,large class of higher fungi coextensive with division Ascomycota: sac fungi
+1303,Ascomycota subdivision_Ascomycota Ascomycotina subdivision_Ascomycotina,a large subdivision of Eumycota including Hemiascomycetes and Plectomycetes and Pyrenomycetes and Discomycetes; sac fungi; in some classification systems considered a division of the kingdom Fungi
+1304,Ascophyllum genus_Ascophyllum,brown algae distinguished by compressed or inflated branchlets along the axis
+1305,Asgard,(Norse mythology) the heavenly dwelling of the Norse gods (the Aesir) and slain war heroes
+1306,Ash_Can Ashcan_school,early 20th-century United States painting; portrays realistic and sordid scenes of city life
+1307,Ash_Wednesday,the 7th Wednesday before Easter; the first day of Lent; the day following Mardi Gras (`Fat Tuesday'); a day of fasting and repentance
+1308,Ashcan_School Eight,a group of United States painters founded in 1907 and noted for their realistic depictions of sordid aspects of city life
+1309,Ashe Arthur_Ashe Arthur_Robert_Ashe,United States tennis player who was the first Black to win United States and English singles championships (1943-1993)
+1310,Asheville,a town in western North Carolina in the Blue Ridge Mountains to the west of Charlotte
+1311,Ashkenazi,a Jew of eastern European or German descent
+1312,Ashkhabad capital_of_Turkmenistan,the capital and largest city of Turkmenistan
+1313,Ashton Sir_Frederick_Ashton,British choreographer (1906-1988)
+1314,Ashur Ashir,chief god of the Assyrians; god of military prowess and empire; identified with Babylonian Anshar
+1315,Ashurbanipal Assurbanipal Asurbanipal,king of Assyria who built a magnificent palace and library at Nineveh (668-627 BC)
+1316,Asia,the largest continent with 60% of the earth's population; it is joined to Europe on the west to form Eurasia; it is the site of some of the world's earliest civilizations
+1317,Asia,the nations of the Asian continent collectively
+1318,Asia_Minor Anatolia,a peninsula in southwestern Asia that forms the Asian part of Turkey
+1319,Asian Asiatic,a native or inhabitant of Asia
+1320,Asian_American,an American who is of Asian descent
+1321,Asian_Russia,the Russia that is part of Asia
+1322,Asian_black_grouse Lyrurus_mlokosiewiczi,a black grouse of western Asia
+1323,Asian_coral_snake,of India
+1324,Asian_country Asian_nation,any one of the nations occupying the Asian continent
+1325,Asian_crocodile Crocodylus_porosus,estuarine crocodile of eastern Asia and Pacific islands
+1326,Asian_horseshoe_crab,horseshoe crab of the coast of eastern Asia
+1327,Asian_influenza Asiatic_flu,influenza caused by the Asian virus that was first isolated in 1957
+1328,Asian_longhorned_beetle Anoplophora_glabripennis,a beetle from China that has been found in the United States and is a threat to hardwood trees; lives inside the tree; no natural predators in the United States
+1329,Asian_tiger_mosquito Aedes_albopictus,striped native of Japan thriving in southwestern and midwestern United States and spreading to the Caribbean; potential carrier of serious diseases
+1330,Asian_wild_ox,genus of Asiatic wild oxen
+1331,Asiatic_black_bear black_bear Ursus_thibetanus Selenarctos_thibetanus,bear with a black coat living in central and eastern Asia
+1332,Asiatic_flying_squirrel,nocturnal rodent of Asia having furry folds of skin between forelegs and hind legs enabling it to move by gliding leaps
+1333,Asiatic_shrew_mole Uropsilus_soricipes,shrew mole of eastern Asia
+1334,Asiatic_sweetleaf sapphire_berry Symplocus_paniculata,deciduous shrub of eastern Asia bearing decorative bright blue fruit
+1335,Asilidae family_Asilidae,robber flies
+1336,Asimina genus_Asimina,pawpaw
+1337,Asimov Isaac_Asimov,United States writer (born in Russia) noted for his science fiction (1920-1992)
+1338,Asin Asvina,the seventh month of the Hindu calendar
+1339,Asio genus_Asio,a genus of European owls
+1340,Ask_Jeeves,a widely used search engine accepting plain English questions or phrases or terms
+1341,Asmara Asmera,the capital of Eritrea
+1342,Aspalathus genus_Aspalathus,genus of South African heathlike shrubs
+1343,Asparagaceae family_Asparagaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae: includes genera Asparagus and sometimes Ruscus
+1344,Asperger's_syndrome,a psychiatric disorder usually noted during early school years; characterized by impaired social relations and by repetitive patterns of behavior
+1345,Aspergillaceae family_Aspergillaceae,family of fungi including some common molds
+1346,Aspergillus genus_Aspergillus,genus of common molds causing food spoilage and some pathogenic to plants and animals
+1347,Aspergillus_fumigatus,a mold causing aspergillosis in birds and man
+1348,Asperula genus_Asperula,woodruff
+1349,Asphodelaceae family_Asphodelaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae
+1350,Asphodeline genus_Asphodeline,genus of rhizomatous perennial or biennial herbs with numerous sometimes fragrant flowers in long cylindrical racemes; Mediterranean region to Caucasus; sometimes placed in family Asphodelaceae
+1351,Asphodelus genus_Asphodelus,small genus of tall striking annuals or perennials with grasslike foliage and flowers in dense racemes or panicles; Mediterranean to Himalayas; sometimes placed in family Asphodelaceae
+1352,Aspidelaps genus_Aspidelaps,African coral snakes
+1353,Aspidiotus genus_Aspidiotus,a genus of Diaspididae
+1354,Aspidophoroides genus_Aspidophoroides,alligatorfishes
+1355,Aspleniaceae family_Aspleniaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems; includes genera Asplenium, Pleurosorus, Schaffneria
+1356,Asplenium genus_Asplenium,in some classification systems placed in family Polypodiaceae
+1357,Assam,state in northeastern India
+1358,Assamese,native or inhabitant of the state of Assam in northeastern India
+1359,Assamese Asamiya,the Magadhan language spoken by the Assamese people; closely related to Bengali
+1360,Assault,thoroughbred that won the triple crown in 1946
+1361,Assemblies_of_God,a charismatic Protestant denomination in the United States
+1362,Associate_in_Applied_Science AAS,an associate degree in applied science
+1363,Associate_in_Arts AA,an associate degree in arts
+1364,Associate_in_Nursing AN,an associate degree in nursing
+1365,Association_for_the_Advancement_of_Retired_Persons AARP,an association of people to promote the welfare of senior citizens
+1366,Association_of_Southeast_Asian_Nations ASEAN,an association of nations dedicated to economic and political cooperation in southeastern Asia and who joined with the United States to fight against global terrorism
+1367,Assumption,(Christianity) the taking up of the body and soul of the Virgin Mary when her earthly life had ended
+1368,Assumption Assumption_of_Mary August_15,celebration in the Roman Catholic Church of the Virgin Mary's being taken up into heaven when her earthly life ended; corresponds to the Dormition in the Eastern Orthodox Church
+1369,Assur Asur Ashur,an ancient Assyrian city on the Tigris and traditional capital of Assyria; just to the south of the modern city of Mosul in Iraq
+1370,Assyria,an ancient kingdom in northern Mesopotamia which is in present-day Iraq
+1371,Assyrian,an inhabitant of ancient Assyria
+1372,Assyrian_Akkadian Assyrian,an extinct language of the Assyrians in ancient Mesopotamia
+1373,Assyrian_Neo-Aramaic Assyrian,the language of modern Iraq
+1374,Assyriology,archeology of the ancient Assyrians
+1375,Astacidae family_Astacidae Astacura,crayfish
+1376,Astacus genus_Astacus,type genus of the family Astacidae; Old World crayfish
+1377,Astaire Fred_Astaire,United States dancer and cinema actor noted for his original and graceful tap dancing (1899-1987)
+1378,Astana Akmola capital_of_Kazakhstan,remote city of Kazakhstan that (ostensibly for security reasons) was made the capital in 1998
+1379,Astarte Ashtoreth,an ancient Phoenician goddess of love and fertility; the Phoenician counterpart to Ishtar
+1380,Asteridae subclass_Asteridae,a group of mostly sympetalous herbs and some trees and shrubs mostly with 2 fused carpels; contains 43 families including Campanulales; Solanaceae; Scrophulariaceae; Labiatae; Verbenaceae; Rubiaceae; Compositae; sometimes classified as a superorder
+1381,Asteroidea class_Asteroidea,sea stars
+1382,Astor John_Jacob_Astor,United States capitalist (born in Germany) who made a fortune in fur trading (1763-1848)
+1383,Astor Nancy_Witcher_Astor Viscountess_Astor,British politician (born in the United States) who was the first woman to sit in the British House of Commons (1879-1964)
+1384,Astragalus genus_Astragalus,large genus of annual or perennial herbs or shrubs of north temperate regions; largest genus in the family Leguminosae
+1385,Astrakhan,a city in southwestern Russia on the delta of the Volga River
+1386,Astreus genus_Astreus,a genus of fungi belonging to the family Geastraceae
+1387,Astreus_hygrometricus,a common species of earthstar widely distributed in sandy soil; the gleba is a pale tan
+1388,Astreus_pteridis,the largest earthstar; the fruiting body can measure 15 cm across when the rays are expanded
+1389,Astroloma genus_Astroloma,evergreen shrubs of Australia and Tasmania
+1390,Astronium genus_Astronium,a genus of dicotyledonous plants of the family Anacardiaceae
+1391,Astronomical_Unit AU,a unit of length used for distances within the solar system; equal to the mean distance between the Earth and the Sun (approximately 93 million miles or 150 million kilometers)
+1392,Astrophyton genus_Astrophyton,includes many of the basket stars
+1393,Astrophyton_muricatum,a variety of basket star
+1394,Astropogon genus_Astropogon,a genus of fish of the family Apogonidae
+1395,Asuncion capital_of_Paraguay,the capital and chief port of Paraguay
+1396,Asura,earlier a god; later a demon; counterpart of Zoroastrian Ahura
+1397,Asvins,(literally `possessing horses' in Sanskrit) in Hinduism the twin chariot warriors conveying Surya
+1398,Aswan Assuan Assouan,an ancient city on the Nile in Egypt; two dams across the Nile have been built nearby
+1399,Aswan_High_Dam High_Dam,one of the world's largest dams on the Nile River in southern Egypt
+1400,Atacama_Desert,a desert in western Chile that extends roughly 600 miles south from the Peruvian border; one of the driest areas in the world, but rich in nitrate and copper deposits
+1401,Atacama_Trench,a depression in the floor of the Pacific Ocean off the coast of Chile
+1402,Atakapa Atakapan Attacapa Attacapan,a language spoken by the Atakapa of the Gulf Coast of Louisiana and Texas
+1403,Atakapa Attacapan,a member of an Indian people formerly living along the Gulf Coast of Louisiana and Texas
+1404,Ataturk Kemal_Ataturk Kemal_Pasha Mustafa_Kemal,Turkish statesman who abolished the caliphate and founded Turkey as a modern secular state (1881-1938)
+1405,Ate,goddess of criminal rashness and its punishment
+1406,Ateles genus_Ateles,spider monkeys
+1407,Aten Aton,the sun (or solar disc) which was the deity of a monotheistic cult under the Pharaoh Akhenaten
+1408,Athanasian_Creed,a Christian profession of faith
+1409,Athanasianism,the theological doctrine taught by Athanasius that Christ the Son is of the same substance as God the Father
+1410,Athanasius Saint_Athanasius St._Athanasius Athanasius_the_Great,(Roman Catholic Church) Greek patriarch of Alexandria who championed Christian orthodoxy against Arianism; a church father, saint, and Doctor of the Church (293-373)
+1411,Athapaskan Athapascan Athabaskan Athabascan,a member of any of the North American Indian groups speaking an Athapaskan language and living in the subarctic regions of western Canada and central Alaska
+1412,Athapaskan Athapascan Athabaskan Athabascan Athapaskan_language,a group of Amerindian languages (the name coined by an American anthropologist, Edward Sapir)
+1413,Atharva-Veda,a collection of mantras and formulas
+1414,Athelstan,the first Saxon ruler who extended his kingdom to include nearly all of England (895-939)
+1415,Athena Athene Pallas Pallas_Athena Pallas_Athene,(Greek mythology) goddess of wisdom and useful arts and prudent warfare; guardian of Athens; identified with Roman Minerva
+1416,Athene genus_Athene,a genus of Strigidae
+1417,Athenian,a resident of Athens
+1418,Athens,a town in southeast Ohio
+1419,Athens,a university town in northeast Georgia
+1420,Athens Athinai capital_of_Greece Greek_capital,the capital and largest city of Greece; named after Athena (its patron goddess); "in the 5th century BC ancient Athens was the world's most powerful and civilized city"
+1421,Atherinidae family_Atherinidae,small spiny-finned fishes of both salt and fresh water
+1422,Atherinopsis genus_Atherinopsis,a genus of Atherinidae
+1423,Atherurus genus_Atherurus,a genus of Hystricidae
+1424,Athiorhodaceae family_Athiorhodaceae,small motile sulphur bacteria
+1425,Athos Mount_Athos,an autonomous area in northeastern Greece that is the site of several Greek Orthodox monasteries founded in the tenth century
+1426,Athrotaxis genus_Athrotaxis,a genus of gymnosperm
+1427,Athyrium genus_Athyrium,temperate and tropical lady ferns; in some classifications placed in family Polypodiaceae or in the genus Asplenium
+1428,Atlanta battle_of_Atlanta,a siege in which Federal troops under Sherman cut off the railroads supplying the city and then burned it; 1864
+1429,Atlanta capital_of_Georgia,state capital and largest city of Georgia; chief commercial center of the southeastern United States; was plundered and burned by Sherman's army during the American Civil War
+1430,Atlantic Atlantic_Ocean,the 2nd largest ocean; separates North and South America on the west from Europe and Africa on the east
+1431,Atlantic_City,a city on the Atlantic shore in southeastern New Jersey; a resort and gambling center
+1432,Atlantic_Coast,a coast of the Atlantic Ocean
+1433,Atlantic_Time Atlantic_Standard_Time,standard time in the 4th time zone west of Greenwich, reckoned at the 60th meridian; used in Puerto Rico and the Virgin Islands and Bermuda and the Canadian Maritime Provinces
+1434,Atlantic_bottlenose_dolphin Tursiops_truncatus,the most common dolphin of northern Atlantic and Mediterranean; often kept captive and trained to perform
+1435,Atlantic_cod Gadus_morhua,one of the world's most important commercial fishes
+1436,Atlantic_croaker Micropogonias_undulatus,a silvery-bodied croaker with dark markings and tiny barbels
+1437,Atlantic_halibut Hippoglossus_hippoglossus,largest United States flatfish
+1438,Atlantic_herring Clupea_harengus_harengus,important food fish; found in enormous shoals in the northern Atlantic
+1439,Atlantic_manta Manta_birostris,largest manta (to 22 feet across wings); found worldwide but common in Gulf of Mexico and along southern coasts of United States; primarily oceanic
+1440,Atlantic_puffin Fratercula_arctica,common puffin of the northern Atlantic
+1441,Atlantic_ridley bastard_ridley bastard_turtle Lepidochelys_kempii,grey sea turtle of the Atlantic and Gulf Coasts of North America
+1442,Atlantic_sailfish Istiophorus_albicans,a kind of sailfish
+1443,Atlantic_salmon,fatty pink flesh of fish from northern coastal Atlantic; usually marketed fresh
+1444,Atlantic_salmon Salmo_salar,found in northern coastal Atlantic waters or tributaries; adults do not die after spawning
+1445,Atlantic_sea_bream Archosargus_rhomboidalis,sea bream of warm Atlantic waters
+1446,Atlantic_spiny_dogfish Squalus_acanthias,destructive dogfish of the Atlantic coastal waters of America and Europe; widely used in anatomy classes
+1447,Atlantic_tripletail Lobotes_surinamensis,tripletail found from Cape Cod to northern South America
+1448,Atlantic_walrus Odobenus_rosmarus,a walrus of northern Atlantic and Arctic waters
+1449,Atlantis,according to legend, an island in the Atlantic Ocean that Plato said was swallowed by an earthquake
+1450,Atlas,(Greek mythology) a Titan who was forced by Zeus to bear the sky on his shoulders
+1451,Atlas_Mountains,a mountain range in northern Africa between the Mediterranean and the Sahara Desert; extends from southwestern Morocco to northern Tunisia
+1452,Atlas_cedar Cedrus_atlantica,tall Algerian evergreen of Atlas mountains with blue-green leaves; widely planted as an ornamental
+1453,Atomic_Energy_Commission AEC,a former executive agency (from 1946 to 1974) that was responsible for research into atomic energy and its peacetime uses in the United States
+1454,Atreus,(Greek mythology) the king of Mycenae and father of Agamemnon and of Menelaus
+1455,Atrichornis genus_Atrichornis,type genus of the Atrichornithidae
+1456,Atrichornithidae family_Atrichornithidae,scrubbirds
+1457,Atriplex genus_Atriplex,orach; saltbush
+1458,Atropa genus_Atropa,belladonna
+1459,Atropidae family_Atropidae,booklice
+1460,Atropos,the Greek goddess of fate who cuts the thread of life
+1461,Atsugewi,a member of a North American Indian people of northern California
+1462,Atsugewi,the Shastan language spoken by the Atsugewi
+1463,Attalea genus_Attalea,unarmed feather palms of central and northern South America
+1464,Attic Ionic Ionic_dialect Classical_Greek,the dialect of Ancient Greek spoken and written in Attica and Athens and Ionia
+1465,Attica,the territory of Athens in ancient Greece where the Ionic dialect was spoken
+1466,Atticus genus_Atticus,atlas moth
+1467,Attila Attila_the_Hun Scourge_of_God Scourge_of_the_Gods,king of the Huns; the most successful barbarian invader of the Roman Empire (406-453)
+1468,Attlee Clement_Attlee Clement_Richard_Attlee 1st_Earl_Attlee,British statesman and leader of the Labour Party who instituted the welfare state in Britain (1883-1967)
+1469,Attorney_General Attorney_General_of_the_United_States,the position of the head of the Justice Department and the chief law enforcement officer of the United States; "the post of Attorney General was created in 1789"
+1470,Attorney_General United_States_Attorney_General US_Attorney_General,the person who holds the position of secretary of the Justice Department; "Edmund Randolph was the first Attorney General, appointed by President Washington"
+1471,Auchincloss Louis_Auchincloss Louis_Stanton_Auchincloss,United States writer (born in 1917)
+1472,Auckland,the largest city and principal port of New Zealand
+1473,Aucuba genus_Aucuba,hardy evergreen dioecious shrubs and small trees from Japan
+1474,Auden W._H._Auden Wystan_Hugh_Auden,United States poet (born in England) (1907-1973)
+1475,Audubon John_James_Audubon,United States ornithologist and artist (born in Haiti) noted for his paintings of birds of America (1785-1851)
+1476,Audubon's_caracara Polyborus_cheriway_audubonii,widespread from southern United States to Central America; rusty black with black-and-white breast and tail
+1477,Audubon's_warbler Audubon_warbler Dendroica_auduboni,common warbler of western North America
+1478,Augean_stables,(Greek mythology) the extremely dirty stables that were finally cleaned by Hercules who diverted two rivers through them
+1479,Augeas,(Greek mythology) the mythical Greek king who for 30 years did not clean his stables which contained his vast herd of cattle
+1480,Augsburg_Confession,the document drawn up in 1555 to defend the catholicity of Lutheran doctrine and to justify innovations in Lutheran practice; is still in effect today
+1481,August Aug,the month following July and preceding September
+1482,Augusta,a city in eastern Georgia north-northwest of Savannah; noted for golf tournaments
+1483,Augusta capital_of_Maine,the capital of the state of Maine
+1484,Augustine Saint_Augustine St._Augustine Augustine_of_Hippo,(Roman Catholic Church) one of the great Fathers of the early Christian church; after a dramatic conversion to Christianity he became bishop of Hippo Regius in North Africa; St. Augustine emphasized man's need for grace (354-430)
+1485,Augustinian,a Roman Catholic friar or monk belonging to one of the Augustinian monastic orders
+1486,Augustinian_Canons,an Augustinian monastic order
+1487,Augustinian_Hermits,a monastic order of friars established in 1256 by the Pope
+1488,Augustinian_order,any of several monastic orders observing a rule derived from the writings of St. Augustine
+1489,Augustus Gaius_Octavianus Gaius_Julius_Caesar_Octavianus Octavian,Roman statesman who established the Roman Empire and became emperor in 27 BC; defeated Mark Antony and Cleopatra in 31 BC at Actium (63 BC - AD 14)
+1490,Aulacorhyncus genus_Aulacorhyncus,a genus of Ramphastidae
+1491,Aulostomidae family_Aulostomidae,trumpetfishes
+1492,Aulostomus genus_Aulostomus,type genus of the Aulostomidae
+1493,Aum_Shinrikyo Aum Supreme_Truth,a terrorist organization whose goal is to take over Japan and then the world; based on a religion founded in 1987 that combines elements of Buddhism with Christianity; "in 1995 Aum members released deadly sarin gas on a Tokyo subway train"
+1494,Aureolaria genus_Aureolaria,small genus of North American herbs often root-parasitic and bearing golden-yellow flowers; sometimes placed in genus Gerardia
+1495,Auricularia genus_Auricularia,type genus of the Auriculariaceae
+1496,Auriculariaceae family_Auriculariaceae,fungi having gelatinous sporophores
+1497,Auriculariales order_Auriculariales,coextensive with the family Auriculariaceae; sometimes included in the order Tremellales
+1498,Auriga Charioteer,a conspicuous constellation in the northern hemisphere; between Great Bear and Orion at edge of Milky Way
+1499,Auriparus genus_Auriparus,a genus of Paridae
+1500,Aurora,(Roman mythology) goddess of the dawn; counterpart of Greek Eos
+1501,Auschwitz,a Nazi concentration camp for Jews in southwestern Poland during World War II
+1502,Austen Jane_Austen,English novelist noted for her insightful portrayals of middle-class families (1775-1817)
+1503,Austerlitz,a town in Czech Republic; site of the battle of Austerlitz in 1805
+1504,Austerlitz battle_of_Austerlitz,a decisive battle during the Napoleonic campaigns (1805); the French under Napoleon defeated the Russian armies of Czar Alexander I and the Austrian armies of Emperor Francis II
+1505,Austin capital_of_Texas,state capital of Texas on the Colorado River; site of the University of Texas
+1506,Austin_Friar,one of the Roman Catholic hermits of Saint Augustine
+1507,Austin_Friars,an Augustinian monastic order
+1508,Australasia,Australia, New Zealand, and neighboring islands in the South Pacific
+1509,Australia,the smallest continent; between the South Pacific and the Indian Ocean
+1510,Australia Commonwealth_of_Australia,a nation occupying the whole of the Australian continent; Aboriginal tribes are thought to have migrated from southeastern Asia 20,000 years ago; first Europeans were British convicts sent there as a penal colony
+1511,Australian Aboriginal_Australian,the Austronesian languages spoken by Australian aborigines
+1512,Australian Aussie,a native or inhabitant of Australia
+1513,Australian_Alps,a range of mountains in Australia that forms the southern end of the Great Dividing Range
+1514,Australian_Desert Great_Australian_Desert,general name given to all desert areas in Australia
+1515,Australian_Labor_Party,the oldest political party in Australia, founded in 1891; the party is moderately liberal
+1516,Australian_arowana Dawson_River_salmon saratoga spotted_barramundi spotted_bonytongue Scleropages_leichardti,a species of large fish found in Australian rivers
+1517,Australian_blacksnake Pseudechis_porphyriacus,large semiaquatic snake of Australia; black above with red belly
+1518,Australian_bonytongue northern_barramundi Scleropages_jardinii,a species of large fish found in Australian rivers
+1519,Australian_cockroach Periplaneta_australasiae,widely distributed in warm countries
+1520,Australian_coral_snake Rhynchoelaps_australis,small venomous but harmless snake marked with black-and-white on red
+1521,Australian_dollar,the basic unit of money in Australia and Nauru
+1522,Australian_grass_tree Richea_dracophylla,stout Australian shrub with narrow leaves crowded at ends of branches and terminal clusters of white or pink flowers
+1523,Australian_hare's_foot Davallia_pyxidata,a hare's-foot fern of the genus Davallia
+1524,Australian_heath,any heathlike plant of the family Epacridaceae; most are of the Australian region
+1525,Australian_lungfish Queensland_lungfish Neoceratodus_forsteri,an endangered species of lungfish found in rivers in Queensland
+1526,Australian_magpie,black-and-white oscine birds that resemble magpies
+1527,Australian_nettle Australian_nettle_tree,any of several tall Australian trees of the genus Laportea
+1528,Australian_pea Dipogon_lignosus Dolichos_lignosus,South African evergreen partly woody vine grown for its clusters of rosy purple flowers followed by edible pods like snap beans; also grown as green manure; sometimes placed in genus Dolichos
+1529,Australian_pine Casuarina_equisetfolia,common Australian tree widely grown as an ornamental in tropical regions; yields heavy hard red wood
+1530,Australian_pitcher_plant Cephalotus_follicularis,a carnivorous perennial herb having a green pitcher and hinged lid both with red edges; western Australia
+1531,Australian_reed_grass Calamagrostic_quadriseta,tall Australian reedlike grass sometimes used for hay
+1532,Australian_sea_lion Zalophus_lobatus,a variety of sea lion found in Australia
+1533,Australian_state,one of the several states constituting Australia
+1534,Australian_sumac Rhodosphaera_rhodanthema Rhus_rhodanthema,evergreen of Australia yielding a dark yellow wood
+1535,Australian_terrier,small greyish wire-haired breed of terrier from Australia similar to the cairn
+1536,Australian_turtledove turtledove Stictopelia_cuneata,small Australian dove
+1537,Australopithecus_afarensis,fossils found in Ethiopia; from 3.5 to 4 million years ago
+1538,Australopithecus_africanus,gracile hominid of southern Africa; from about 3 million years ago
+1539,Australopithecus_boisei,large-toothed hominid of eastern Africa; from 1 to 2 million years ago
+1540,Australopithecus_robustus,large-toothed hominid of southern Africa; from 1.5 to 2 million years ago; formerly Paranthropus
+1541,Austria Republic_of_Austria Oesterreich,a mountainous republic in central Europe; under the Habsburgs (1278-1918) Austria maintained control of the Holy Roman Empire and was a leader in European politics until the 19th century
+1542,Austria-Hungary,a geographical area in central and eastern Europe; broken into separate countries at the end of World War I
+1543,Austrian,a native or inhabitant of Austria
+1544,Austrian_monetary_unit,monetary unit in Austria
+1545,Austro-Asiatic Austro-Asiatic_language Munda-Mon-Khmer,a family of languages spoken in southern and southeastern Asia
+1546,Austrocedrus genus_Austrocedrus,one species; formerly included in genus Libocedrus
+1547,Austronesia,islands of central and South Pacific (Indonesia and Melanesia and Micronesia and Polynesia)
+1548,Austronesian,a native or inhabitant of Austronesia
+1549,Austronesian Austronesian_language,the family of languages spoken in Australia and Formosa and Malaysia and Polynesia
+1550,Austrotaxus genus_Austrotaxus,a gymnosperm genus having one species: New Caledonian yew
+1551,Authorized_Version King_James_Version King_James_Bible,an English translation of the Bible published in 1611
+1552,Automeris genus_Automeris,io moth
+1553,Auvergne,a region in central France
+1554,Avahi genus_Avahi,a genus of Indriidae
+1555,Avalokitesvara Avalokiteshvara,a male Bodhisattva; widely associated with various gods and people
+1556,Ave_Maria Hail_Mary,a salutation to the Virgin Mary now used in prayers to her
+1557,Avena genus_Avena,oats
+1558,Averrhoa genus_Averrhoa,trees native to East Indies having pinnate leaves: carambolas
+1559,Averroes ibn-Roshd Abul-Walid_Mohammed_ibn-Ahmad_Ibn-Mohammed_ibn-Roshd,Arabian philosopher born in Spain; wrote detailed commentaries on Aristotle that were admired by the Schoolmen (1126-1198)
+1560,Aves class_Aves,(ornithology) the class of birds
+1561,Avesta Zend-Avesta,a collection of Zoroastrian texts gathered during the 4th or 6th centuries
+1562,Avestan,the script in which the ancient Persian language of the Avesta is written
+1563,Avestan Zend,an ancient Iranian language
+1564,Avicenna ibn-Sina Abu_Ali_al-Husain_ibn_Abdallah_ibn_Sina,Persian physician and influential philosopher; his interpretation of Aristotle influenced St. Thomas Aquinas; writings on medicine were important for almost 500 years (980-1037)
+1565,Avicennia genus_Avicennia,small genus of tropical shrubs or trees
+1566,Avicenniaceae family_Avicenniaceae,used in some classifications: coextensive with the genus Avicennia
+1567,Avignon,a town in southeastern France on the Rhone River; the seat of the papacy from 1309 to 1378 and the residence of antipopes during the Great Schism
+1568,Avogadro Amedeo_Avogadro,Italian physicist noted for his work on gases; proposed what has come to be called Avogadro's law (1776-1856)
+1569,Avogadro's_law Avogadro's_hypothesis,the principle that equal volumes of all gases (given the same temperature and pressure) contain equal numbers of molecules
+1570,Avogadro's_number Avogadro_number,the number of molecules in a mole of a substance (approximately 602,250,000,000,000,000,000,000)
+1571,Avon,a county in southwestern England
+1572,Avon River_Avon,a river in southwestern England rising in Gloucestershire and flowing through Bristol to empty into the estuary of the Severn
+1573,Avon River_Avon Upper_Avon Upper_Avon_River,a river in central England that flows through Stratford-on-Avon and empties into the Severn
+1574,Axis,in World War II the alliance of Germany and Italy in 1936 which later included Japan and other nations; "the Axis opposed the Allies in World War II"
+1575,Ayr,a port in southwestern Scotland
+1576,Ayrshire,hardy breed of dairy cattle from Ayr, Scotland
+1577,Aythya genus_Aythya,canvasback; redhead; pochard; etc.
+1578,Ayurveda,(Sanskrit) an ancient medical treatise summarizing the Hindu art of healing and prolonging life; sometimes regarded as a 5th Veda
+1579,Az_Zarqa Zarqa,city in northwestern Jordan
+1580,Azadirachta genus_Azadirachta,genus of large important East Indian trees: neem trees
+1581,Azerbaijan Azerbaijani_Republic Azerbajdzhan Azerbajdzhan_Republic,a landlocked republic in southwestern Asia; formerly an Asian soviet
+1582,Azerbaijani,a native or inhabitant of Azerbaijan
+1583,Azerbaijani,the Turkic language spoken by the Azerbaijani
+1584,Azerbaijani_monetary_unit,monetary unit in Azerbaijan
+1585,Azeri,an ethnic group living in Azerbaijan
+1586,Azolla genus_Azolla,a genus of fern sometimes placed in its own family Azollaceae
+1587,Azollaceae family_Azollaceae,used in some classifications for the genus Azolla
+1588,Azores Acores,islands in the Atlantic Ocean belonging to Portugal; "the Azores are strategically located on transatlantic air and shipping routes"
+1589,Aztec,a member of the Nahuatl people who established an empire in Mexico that was overthrown by Cortes in 1519
+1590,Aztecan,the Uto-Aztecan language spoken by the Aztec
+1591,B b,the 2nd letter of the Roman alphabet
+1592,B type_B group_B,the blood group whose red cells carry the B antigen
+1593,B-52,United States military aircraft; B- stands for bomber
+1594,B-complex_vitamin B_complex vitamin_B_complex vitamin_B B_vitamin B,originally thought to be a single vitamin but now separated into several B vitamins
+1595,B-flat_clarinet licorice_stick,the ordinary clarinet with a middle range
+1596,B-girl bar_girl,a woman employed by a bar to act as a companion to men customers
+1597,B-horizon B_horizon,immediately below the A-horizon; contains deposits of organic matter leached from surface soils
+1598,B-scan_ultrasonography,the use of ultrasonography to view structure in the back of the eye
+1599,BASIC,a popular programming language that is relatively easy to learn; an acronym for beginner's all-purpose symbolic instruction code; no longer in general use
+1600,BB BB_shot,a small pellet fired from an air rifle or BB gun
+1601,BB_gun,an air gun in which BBs are propelled by compressed air
+1602,BVD BVD's,trademark for men's underwear
+1603,B_battery,battery for supplying a constant positive voltage to the plate of a vacuum tube
+1604,B_cell B_lymphocyte,a lymphocyte derived from bone marrow that provides humoral immunity; it recognizes free antigen molecules in solution and matures into plasma cells that secrete immunoglobulin (antibodies) that inactivate the antigens
+1605,Baader_Meinhof_Gang Baader-Meinhof_Gang,a radical left-wing revolutionary terrorist group active in Germany from 1968 until 1977
+1606,Baal,any of numerous local fertility and nature deities worshipped by ancient Semitic peoples; the Hebrews considered Baal a false god
+1607,Babar,an imaginary elephant that appears in a series of French books for children
+1608,Babbitt_metal babbitt,an alloy of tin with some copper and antimony; a lining for bearings that reduces friction
+1609,Babesiidae family_Babesiidae,piroplasms and cattle pathogens
+1610,Babinski Babinski_reflex Babinski_sign,extension upward of the toes when the sole of the foot is stroked firmly on the outer side from the heel to the front; normal in infants under the age of two years but a sign of brain or spinal cord injury in older persons
+1611,Babylon,the chief city of ancient Mesopotamia and capital of the ancient kingdom of Babylonia
+1612,Babylonia Chaldaea Chaldea,an ancient kingdom in southern Mesopotamia; Babylonia conquered Israel in the 6th century BC and exiled the Jews to Babylon (where Daniel became a counselor to the king)
+1613,Babylonian,an inhabitant of ancient Babylon
+1614,Babylonian,the ideographic and syllabic writing system in which the ancient Babylonian language was written
+1615,Babylonian_Captivity,the deportation of the Jews to Babylonia by Nebuchadnezzar in 586 BC
+1616,Babyrousa genus_Babyrousa,a genus of Suidae
+1617,Baccharis genus_Baccharis,shrubs of western hemisphere often having honey-scented flowers followed by silky thistlelike heads of tiny fruits; often used for erosion control
+1618,Bacchus,(classical mythology) god of wine; equivalent of Dionysus
+1619,Bach,the music of Bach; "he played Bach on the organ"
+1620,Bach Johann_Sebastian_Bach,German baroque organist and contrapuntist; composed mostly keyboard music; one of the greatest creators of western music (1685-1750)
+1621,Bachelor_of_Arts BA Artium_Baccalaurens AB,a bachelor's degree in arts and sciences
+1622,Bachelor_of_Arts_in_Library_Science ABLS,a bachelor's degree in library science
+1623,Bachelor_of_Arts_in_Nursing BAN,a bachelor's degree in nursing
+1624,Bachelor_of_Divinity BD,a bachelor's degree in religion
+1625,Bachelor_of_Laws LLB,a three-year law degree
+1626,Bachelor_of_Literature BLitt,a bachelor's degree in literature
+1627,Bachelor_of_Medicine MB,(a British degree) a bachelor's degree in medicine
+1628,Bachelor_of_Music BMus,a bachelor's degree in music
+1629,Bachelor_of_Naval_Science BNS,a bachelor's degree in naval science
+1630,Bachelor_of_Science BS SB,a bachelor's degree in science
+1631,Bachelor_of_Science_in_Architecture BSArch,a bachelor's degree in architecture
+1632,Bachelor_of_Science_in_Engineering,a bachelor's degree in engineering
+1633,Bachelor_of_Theology ThB,a bachelor's degree in theology
+1634,Bacillaceae family_Bacillaceae,typically rod-shaped usually Gram-positive bacteria that produce endospores
+1635,Bacillariophyceae class_Bacillariophyceae Diatomophyceae class_Diatomophyceae,marine and freshwater eukaryotic algae: diatoms
+1636,Bacillus_anthracis anthrax_bacillus,a species of bacillus that causes anthrax in humans and in animals (cattle and swine and sheep and rabbits and mice and guinea pigs); can be used a bioweapon
+1637,Bacillus_subtilis Bacillus_globigii grass_bacillus hay_bacillus,a species of bacillus found in soil and decomposing organic matter; some strains produce antibiotics
+1638,Bacon Francis_Bacon Sir_Francis_Bacon Baron_Verulam 1st_Baron_Verulam Viscount_St._Albans,English statesman and philosopher; precursor of British empiricism; advocated inductive reasoning (1561-1626)
+1639,Bacon Roger_Bacon,English scientist and Franciscan monk who stressed the importance of experimentation; first showed that air is required for combustion and first used lenses to correct vision (1220-1292)
+1640,Bacteroidaceae family_Bacteroidaceae,family of bacteria living usually in the alimentary canal or on mucous surfaces of warm-blooded animals; sometimes associated with acute infective processes
+1641,Bacteroides genus_Bacteroides,type genus of Bacteroidaceae; genus of Gram-negative rodlike anaerobic bacteria producing no endospores and no pigment and living in the gut of man and animals
+1642,Bactrian_camel Camelus_bactrianus,two-humped camel of the cold deserts of central Asia
+1643,Bad_Lands Badlands,an eroded and barren region in southwestern South Dakota and northwestern Nebraska
+1644,Badaga,a member of an agricultural people of southern India
+1645,Badaga,the dialect of Kannada that is spoken by the Badaga
+1646,Bade,a Chadic language spoken in northern Nigeria
+1647,Badlands_National_Park,a national park in South Dakota having multicolored peaks and spires resulting from erosion; fossil sites
+1648,Baedeker Karl_Baedeker,German publisher of a series of travel guidebooks (1801-1859)
+1649,Baffin_Bay,a body of water between Greenland and northeastern Canada; connected with the Arctic Ocean to the north and with the Atlantic Ocean (via the Labrador Sea) to the south; icebound in winter
+1650,Baffin_Island,the 5th largest island and the largest island of Arctic Canada; lies between Greenland and Hudson Bay
+1651,Baghdad Bagdad capital_of_Iraq,capital and largest city of Iraq; located on the Tigris River; "Baghdad is one of the great cities of the Muslim world"
+1652,Bahai,a teacher of or believer in Bahaism
+1653,Bahaism,a religion founded in Iran in 1863; emphasizes the spiritual unity of all humankind; incorporates Christian and Islamic tenets; many adherents live in the United States; "Bahaism has no public rituals or sacraments and praying is done in private"
+1654,Bahamas Commonwealth_of_the_Bahamas Bahama_Islands,island country in the Atlantic to the east of Florida and Cuba; a popular winter resort
+1655,Bahamian,a native or inhabitant of the Bahamas
+1656,Bahamian_dollar,the basic unit of money in the Bahamas
+1657,Bahia_Blanca,a port city in eastern Argentina to the southwest of Buenos Aires on an inlet of the Atlantic Ocean
+1658,Bahia_grass Paspalum_notatum,perennial tropical American grass used as pasture grass in arid areas of the Gulf States
+1659,Bahrain Bahrain_Island Bahrein Bahrein_Island,an island in the Persian Gulf
+1660,Bahrain State_of_Bahrain Bahrein,an island country in the Persian Gulf off the coast of Saudi Arabia; oil revenues funded progressive programs until reserves were exhausted in 1970s
+1661,Bahrain_dinar dinar,the basic unit of money in Bahrain; equal to 1,000 fils
+1662,Bahraini Bahreini,a native or inhabitant of Bahrain
+1663,Bahrainian_monetary_unit,monetary unit in Bahrain
+1664,Bai Baic,the Tibeto-Burman language spoken in the Dali region of Yunnan
+1665,Baikal Lake_Baikal Baykal Lake_Baykal,the largest freshwater lake in Asia or Europe and the deepest lake in the world
+1666,Bailey Nathan_Bailey Nathaniel_Bailey,English lexicographer who was the first to treat etymology consistently; his work was used as a reference by Samuel Johnson (died in 1742)
+1667,Bailey Pearl_Bailey Pearl_Mae_Bailey,United States singer (1918-1990)
+1668,Bailey_bridge,a temporary bridge designed for rapid construction
+1669,Baiomys genus_Baiomys,pygmy mice
+1670,Bairava,epithet of Siva; "the terrible Bairava"
+1671,Bairdiella genus_Bairdiella,drumfish
+1672,Baisakh Vaisakha,the second month of the Hindu calendar
+1673,Bakelite,a thermosetting plastic used as electric insulators and for making plastic ware and telephone receivers etc.
+1674,Bakersfield,a city in south central California at the southern end of the San Joaquin Valley
+1675,Bakke_decision,a ruling by the Supreme Court on affirmative action; the Court ruled in 1978 that medical schools are entitled to consider race as a factor in their admission policy
+1676,Baku capital_of_Azerbaijan,a port city on the Caspian Sea that is the capital of Azerbaijan and an important center for oil production
+1677,Bakunin Mikhail_Bakunin Mikhail_Aleksandrovich_Bakunin,Russian anarchist; ally and later opponent of Karl Marx (1814-1876)
+1678,Balaena genus_Balaena,type genus of the Balaenidae: Greenland whales
+1679,Balaeniceps genus_Balaeniceps,type genus of the Balaenicipitidae: shoebills
+1680,Balaenicipitidae family_Balaenicipitidae,shoebills
+1681,Balaenidae family_Balaenidae,right whales
+1682,Balaenoptera genus_Balaenoptera,type genus of the Balaenopteridae
+1683,Balaenopteridae family_Balaenopteridae,rorquals; blue whales
+1684,Balanchine George_Balanchine,United States dancer and choreographer (born in Russia) noted for his abstract and formal works (1904-1983)
+1685,Balanidae family_Balanidae,stalkless barnacles
+1686,Balanus genus_Balanus,type genus of the family Balanidae
+1687,Balarama,elder brother of Krishna; an incarnation of Vishnu
+1688,Balaton Lake_Balaton Plattensee,a large shallow lake in western Hungary
+1689,Balboa Vasco_Nunez_de_Balboa,Spanish explorer who in 1513 crossed the Isthmus of Darien and became the first European to see the eastern shores of the Pacific Ocean (1475-1519)
+1690,Balder Baldr,(Norse mythology) god of light and peace and noted for his beauty and sweet nature; son of Odin and Frigg and husband of Nanna; killed by Hoth
+1691,Baldwin,an American eating apple with red or yellow and red skin
+1692,Baldwin James_Baldwin James_Arthur_Baldwin,United States author who was an outspoken critic of racism (1924-1987)
+1693,Baldwin Stanley_Baldwin 1st_Earl_Baldwin_of_Bewdley,English statesman; member of the Conservative Party (1867-1947)
+1694,Balearic_Islands,an archipelago in the western Mediterranean off the eastern coast of Spain
+1695,Balenciaga Cristobal_Balenciaga,Spanish fashion designer known for his stark elegant designs (1895-1972)
+1696,Balfour Arthur_James_Balfour 1st_Earl_of_Balfour,English statesman; member of the Conservative Party (1848-1930)
+1697,Bali,an island in Indonesia to the east of Java; striking volcanic scenery; culture is known for elaborate dances and rituals and for handicrafts
+1698,Balinese,the Indonesian language of the people of Bali
+1699,Balistes genus_Balistes,type genus of the Balistidae
+1700,Balistidae family_Balistidae,triggerfishes
+1701,Balkan,an inhabitant of the Balkan Peninsula
+1702,Balkan_Peninsula Balkans,a large peninsula in southeastern Europe containing the Balkan Mountain Range
+1703,Balkan_Wars,two wars (1912-1913) that were fought over the last of the European territories of the Ottoman Empire and that left the area around Constantinople (now Istanbul) as the only Ottoman territory in Europe
+1704,Balkan_country Balkan_nation Balkan_state,any one of the countries on the Balkan Peninsula
+1705,Balkans,the Balkan countries collectively
+1706,Balkans Balkan_Mountains Balkan_Mountain_Range,the major mountain range of Bulgaria and the Balkan Peninsula
+1707,Ball Lucille_Ball,United States comedienne best known as the star of a popular television program (1911-1989)
+1708,Ballistic_Missile_Defense_Organization BMDO,an agency in the Department of Defense that is responsible for making ballistic missile defense a reality
+1709,Ballota genus_Ballota,perennial herbs or subshrubs of especially Mediterranean area: black horehound
+1710,Balmoral bluebonnet,a brimless dark blue Scottish cap with a flat top and a plume on one side
+1711,Balmoral_Castle,a castle in northeastern Scotland that is a private residence of the British sovereign
+1712,Balochi Baluchi,an Iranian language spoken in Pakistan and Iran and Afghanistan and Russia and the Persian gulf
+1713,Balsaminaceae family_Balsaminaceae balsam_family,distinguished from the family Geraniaceae by the irregular flowers
+1714,Balsamorhiza genus_Balsamorhiza,genus of coarse western American herbs with large roots containing an aromatic balsam
+1715,Balthazar Balthasar,(New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus
+1716,Baltic Baltic_Sea,a sea in northern Europe; stronghold of the Russian navy
+1717,Baltic Baltic_language,a branch of the Indo-European family of languages related to the Slavonic languages; Baltic languages have preserved many archaic features that are believed to have existed in Proto-Indo European
+1718,Baltic-Finnic,a group of Finnic languages including Finnish and Estonian
+1719,Baltic_State Baltic_Republic,European countries bordering the Baltic Sea
+1720,Baltimore,the largest city in Maryland; a major seaport and industrial center
+1721,Baltimore_oriole Baltimore_bird hangbird firebird Icterus_galbula_galbula,eastern subspecies of northern oriole
+1722,Balto-Slavic Balto-Slavic_language Balto-Slavonic,a family of Indo-European languages including the Slavic and Baltic languages
+1723,Balzac Honore_Balzac Honore_de_Balzac,French novelist; he portrays the complexity of 19th century French society (1799-1850)
+1724,Bam,an ancient city in southeastern Iran; destroyed by an earthquake in 2003
+1725,Bamako,the capital of Mali; located in the south on the Niger
+1726,Bambusa genus_Bambusa,tall tender clumping bamboos
+1727,Bambuseae tribe_Bambuseae,bamboos
+1728,Band_Aid,trade name for an adhesive bandage to cover small cuts or blisters
+1729,Bandung,a city in Indonesia; located on western Java (southeast of Jakarta); a resort known for its climate
+1730,Banff,a popular vacation spot in the Canadian Rockies
+1731,Bangalore,an industrial city in south central India (west of Chennai)
+1732,Bangiaceae family_Bangiaceae,a family of protoctist
+1733,Bangkok capital_of_Thailand Krung_Thep,the capital and largest city and chief port of Thailand; a leading city in southeastern Asia; noted for Buddhist architecture
+1734,Bangladesh People's_Republic_of_Bangladesh Bangla_Desh East_Pakistan,a Muslim republic in southern Asia bordered by India to the north and west and east and the Bay of Bengal to the south; formerly part of India and then part of Pakistan; it achieved independence in 1971
+1735,Bangladeshi,a native or inhabitant of Bangladesh
+1736,Bangladeshi_monetary_unit,monetary unit in Bangladesh
+1737,Bangor,a town in east central Maine on the Penobscot River
+1738,Bangor,a university town in northwestern Wales on the Menai Strait
+1739,Bangor,a town in southeastern Northern Ireland
+1740,Bangui capital_of_Central_Africa,the capital and largest city of the Central African Republic
+1741,Banjul capital_of_Gambia,a port city and capital of Gambia
+1742,Bank_of_England,the central bank of England and Wales
+1743,Bank_of_Japan,the central bank of Japan
+1744,Bankhead Tallulah_Bankhead,uninhibited United States actress (1903-1968)
+1745,Bankia genus_Bankia,giant shipworms
+1746,Banks Sir_Joseph_Banks,English botanist who accompanied Captain Cook on his first voyage to the Pacific Ocean (1743-1820)
+1747,Bannister Roger_Bannister Sir_Roger_Gilbert_Bannister,English runner who in 1954 became the first person to run a mile in less than four minutes (born in 1929)
+1748,Bannockburn,a battle in which the Scots under Robert the Bruce defeated the English and assured the independence of Scotland
+1749,Banti's_disease Banti's_syndrome,a disease characterized by congestion and enlargement of the spleen; accompanied by anemia or cirrhosis
+1750,Banting F._G._Banting Sir_Frederick_Grant_Banting,Canadian physiologist who discovered insulin with C. H. Best and who used it to treat diabetes(1891-1941)
+1751,Bantu,a member of any of a large number of linguistically related peoples of Central and South Africa
+1752,Bantu Bantoid_language,a family of languages widely spoken in the southern half of the African continent
+1753,Baphia genus_Baphia,small genus of shrubs and lianas and trees of Africa and Madagascar
+1754,Baptisia genus_Baptisia,genus of North American plants with showy flowers and an inflated pod
+1755,Baptist,follower of Baptistic doctrines
+1756,Baptist_Church Baptists,any of various evangelical Protestant churches that believe in the baptism of voluntary believers
+1757,Baptist_denomination,group of Baptist congregations
+1758,Baptistic_doctrine,any of various doctrines closely related to Anabaptism
+1759,Baraka Imamu_Amiri_Baraka LeRoi_Jones,United States writer of poems and plays about racial conflict (born in 1934)
+1760,Barany Robert_Barany,Austrian physician who developed a rotational method for testing the middle ear (1876-1936)
+1761,Barbadian,a native or inhabitant of Barbados
+1762,Barbados,a parliamentary democracy on the island of Barbados; former British colony; a popular resort area
+1763,Barbados,easternmost of the West Indies about 300 miles to the north of Venezuela
+1764,Barbados_dollar,the basic unit of money in Barbados
+1765,Barbados_gooseberry Barbados-gooseberry_vine Pereskia_aculeata,West Indian woody climber with spiny stems and numerous fragrant white flowers in panicles followed by small yellow to orange fruits
+1766,Barbados_gooseberry blade_apple,small yellow to orange fruit of the Barbados gooseberry cactus used in desserts and preserves and jellies
+1767,Barbarea genus_Barbarea,biennial or perennial herbs of north temperate regions: winter cress
+1768,Barbarossa Khayr_ad-Din,Barbary pirate (died in 1546)
+1769,Barbary,a region of northern Africa on the Mediterranean coast between Egypt and Gibraltar; was used as a base for pirates from the 16th to 19th centuries
+1770,Barbary_Coast,a part of a city that is notorious for gambling dens and brothels and saloons and riotous night life (especially the waterfront of San Francisco after the gold rush of 1849); "we'll tolerate no Barbary Coast in this city!"
+1771,Barbary_Coast,the Mediterranean coast of northern Africa that was famous for its Moorish pirates
+1772,Barbary_ape Macaca_sylvana,tailless macaque of rocky cliffs and forests of northwestern Africa and Gibraltar
+1773,Barber Samuel_Barber,United States composer (1910-1981)
+1774,Barberton_daisy Transvaal_daisy Gerbera_jamesonii,widely cultivated South African perennial having flower heads with orange to flame-colored rays
+1775,Barbuda,an island in Antigua and Barbuda
+1776,Barcelona,a city in northeastern Spain on the Mediterranean; 2nd largest Spanish city and the largest port and commercial center; has been a center for radical political beliefs
+1777,Bardeen John_Bardeen,United States physicist who won the Nobel prize for physics twice (1908-1991)
+1778,Barents_Sea,the part of the Arctic Ocean to the north of Norway and Russia
+1779,Bari,capital city of the Apulia region on the Adriatic coast
+1780,Barkley Alben_Barkley Alben_William_Barkley,United States politician and lawyer; vice president of the United States (1877-1956)
+1781,Barnaby's_thistle yellow_star-thistle Centaurea_solstitialis,European weed having a winged stem and hairy leaves; adventive in the eastern United States
+1782,Barnum P._T._Barnum Phineas_Taylor_Barnum,United States showman who popularized the circus (1810-1891)
+1783,Baroque Baroque_era Baroque_period,the historic period from about 1600 until 1750 when the baroque style of art, architecture, and music flourished in Europe
+1784,Barranquilla,a port city of northern Colombia near the Caribbean on the Magdalena River
+1785,Barrie James_Barrie J._M._Barrie James_Matthew_Barrie Sir_James_Matthew_Barrie,Scottish dramatist and novelist; created Peter Pan (1860-1937)
+1786,Barrow's_goldeneye Bucephala_islandica,North American goldeneye diving duck
+1787,Barrymore Ethel_Barrymore,United States actress; daughter of Maurice Barrymore and Georgiana Barrymore (1879-1959)
+1788,Barrymore Georgiana_Barrymore Georgiana_Emma_Barrymore,United States actress; daughter of John Drew and wife of Maurice Barrymore; mother of Ethel Barrymore and John Barrymore and Lionel Barrymore (1854-1893)
+1789,Barrymore John_Barrymore,United States actor; son of Maurice Barrymore and Georgiana Barrymore (1882-1942)
+1790,Barrymore Lionel_Barrymore,United States actor; son of Maurice Barrymore and Georgiana Barrymore (1878-1954)
+1791,Barrymore Maurice_Barrymore Herbert_Blythe,United States actor; husband of Georgiana Emma Barrymore and father of Ethel Barrymore and John Barrymore and Lionel Barrymore (1847-1905)
+1792,Barstow,a town in southeastern California
+1793,Barth John_Barth John_Simmons_Barth,United States novelist (born in 1930)
+1794,Barth Karl_Barth,Swiss Protestant theologian (1886-1968)
+1795,Barthelme Donald_Barthelme,United States author of sometimes surrealistic stories (1931-1989)
+1796,Bartholdi Frederic_Auguste_Bartholdi,French sculptor best known for creating the Statue of Liberty now in New York harbor
+1797,Bartholin Caspar_Bartholin,Danish physician who discovered Bartholin's gland (1585-1629)
+1798,Bartholin's_gland,either of the two posterior vestibular glands that secrete a lubricating mucus; homologous to Cowper's gland in the male
+1799,Bartle_Frere genus_Bartle-Frere green_dinosaur,a living fossil or so-called `green dinosaur'; genus or subfamily of primitive nut-bearing trees thought to have died out 50 million years ago; a single specimen found in 1994 on Mount Bartle Frere in eastern Australia; not yet officially named
+1800,Bartlesville,a town in northeastern Oklahoma
+1801,Bartlett John_Bartlett,United States publisher and editor who compiled a book of familiar quotations (1820-1905)
+1802,Bartlett Robert_Bartlett Robert_Abram_Bartlett Captain_Bob,United States explorer who accompanied Peary's expedition to the North Pole and who led many other Arctic trips (1875-1946)
+1803,Bartok Bela_Bartok,Hungarian composer and pianist who collected Hungarian folk music; in 1940 he moved to the United States (1881-1945)
+1804,Bartram_Juneberry Amelanchier_bartramiana,open-growing shrub of eastern North America having pure white flowers and small waxy almost black fruits
+1805,Bartramia genus_Bartramia,a genus of Scolopacidae
+1806,Baruch,a disciple of and secretary for the prophet Jeremiah
+1807,Baruch Bernard_Baruch Bernard_Mannes_Baruch,economic advisor to United States Presidents (1870-1965)
+1808,Baruch Book_of_Baruch,an Apocryphal book ascribed to Baruch
+1809,Baryshnikov Mikhail_Baryshnikov,Russian dancer and choreographer who migrated to the United States (born in 1948)
+1810,Basel Basle Bale,a city in northwestern Switzerland
+1811,Basic_English,a simplified form of English proposed for use as an auxiliary language for international communication; devised by C. K. Ogden and I. A. Richards
+1812,Basidiomycetes class_Basidiomycetes,large class of higher fungi coextensive with subdivision Basidiomycota
+1813,Basidiomycota subdivision_Basidiomycota Basidiomycotina subdivision_Basidiomycotina,comprises fungi bearing the spores on a basidium; includes Gasteromycetes (puffballs) and Tiliomycetes comprising the orders Ustilaginales (smuts) and Uredinales (rusts) and Hymenomycetes (mushrooms, toadstools, agarics and bracket fungi); in some classification systems considered a division of kingdom Fungi
+1814,Basil St._Basil Basil_of_Caesarea Basil_the_Great St._Basil_the_Great,(Roman Catholic Church) the bishop of Caesarea who defended the Roman Catholic Church against the heresies of the 4th century; a saint and Doctor of the Church (329-379)
+1815,Basilicata Lucania,a region of southern Italy (forming the instep of the Italian `boot')
+1816,Basiliscus genus_Basiliscus,a reptile genus of Iguanidae
+1817,Basket_Maker,early Amerindians related to the Pueblo; known for skill in making baskets
+1818,Basotho,a member of a subgroup of people who inhabit Lesotho
+1819,Basque,a member of a people of unknown origin living in the western Pyrenees in France and Spain
+1820,Basque,the language of the Basque people; of no known relation to any other language
+1821,Basque_Homeland_and_Freedom Basque_Fatherland_and_Liberty Euskadi_ta_Askatasuna ETA,a terrorist organization organized in 1959 by student activists who were dissatisfied with the moderate nationalism of the traditional Basque party; want to create an independent homeland in Spain's western Pyrenees; "in 1968 ETA launched a campaign of political assassinations of government officials"
+1822,Basra Basia,the second largest city in Iraq; an oil port in southern Iraq
+1823,Bassariscidae subfamily_Bassariscidae,in some classifications considered a separate family
+1824,Bassariscus genus_Bassariscus,cacomistles
+1825,Basse-Normandie Lower-Normandy,a division of Normandy
+1826,Basseterre,the capital of Saint Kitts and Nevis on the island of Saint Christopher
+1827,Bassia genus_Bassia Kochia genus_Kochia,summer cypress
+1828,Bast,cat- or lion-headed Egyptian goddess; represents life-giving power of the sun
+1829,Bastille,a fortress built in Paris in the 14th century and used as a prison in the 17th and 18th centuries; it was destroyed July 14, 1789 at the start of the French Revolution
+1830,Bastille_Day 14_July,a legal holiday in France celebrating the storming of the Paris bastille in 1789
+1831,Bata,a Chadic language spoken south of Lake Chad
+1832,Bataan Corregidor,the peninsula and island in the Philippines where Japanese forces besieged American forces in World War II; United States forces surrendered in 1942 and recaptured the area in 1945
+1833,Bath,a town in southwestern England on the River Avon; famous for its hot springs and Roman remains
+1834,Bathsheba,(Old Testament) the wife of Uriah and later the wife of king David; Solomon was her son by David (circa 10th century BC)
+1835,Bathyergidae family_Bathyergidae,mole rats; sand rats
+1836,Bathyergus genus_Bathyergus,mole rats
+1837,Batidaceae family_Batidaceae saltwort_family,family coextensive with genus Batis: saltworts
+1838,Batis genus_Batis,small genus of plants constituting the family Batidaceae: low straggling dioecious shrubs
+1839,Batna,a town in north central Algeria
+1840,Baton_Rouge capital_of_Louisiana,capital of Louisiana
+1841,Baton_Rouge_Bridge,a cantilever bridge across the Mississippi at Baton Rouge
+1842,Batrachoididae family_Batrachoididae,toadfishes; related to anglers and batfishes
+1843,Batrachoseps genus_Batrachoseps,slender salamanders
+1844,Battle_of_Britain,the prolonged bombardment of British cities by the German Luftwaffe during World War II and the aerial combat that accompanied it
+1845,Battle_of_Kerbala,a battle in 680 in which the grandson of Mohammed and his followers were killed; "the Battle of Kerbala is the basis for the Ta'ziyehs that are performed annually"
+1846,Battle_of_Puebla,a battle in which Mexican forces defeated the French in 1862
+1847,Battle_of_Wake Battle_of_Wake_Island,in December 1941 the island was captured by the Japanese after a gallant last-ditch stand by a few hundred United States marines
+1848,Battle_of_the_Ardennes_Bulge Battle_of_the_Bulge Ardennes_counteroffensive,a battle during World War II; in December 1944 von Rundstedt launched a powerful counteroffensive in the forest at Ardennes and caught the Allies by surprise
+1849,Battle_of_the_Marne Belleau_Wood Chateau-Thierry Marne_River,a World War I battle in northwestern France where the Allies defeated the Germans in 1918
+1850,Battle_of_the_Spanish_Armada,in the English Channel a small fleet of British ships successfully defeated the large armada sent from Spain by Philip II to invade England
+1851,Baudelaire Charles_Baudelaire Charles_Pierre_Baudelaire,a French poet noted for macabre imagery and evocative language (1821-1867)
+1852,Bauhaus,a German style of architecture begun by Walter Gropius in 1918
+1853,Bauhinia genus_Bauhinia,mountain ebony, orchid tree
+1854,Baum Frank_Baum Lyman_Frank_Brown,United States writer of children's books (1856-1919)
+1855,Bavaria,a state in southern Germany famous for its beer; site of an automobile factory
+1856,Bavarian,a native or an inhabitant of Bavaria
+1857,Bavarian_blue,blue cheese of Bavaria
+1858,Bavarian_cream,a rich custard set with gelatin
+1859,Bay_Stater,a native or resident of Massachusetts
+1860,Bay_of_Bengal,an arm of the Indian Ocean to the east of India
+1861,Bay_of_Biscay,an arm of the Atlantic Ocean in western Europe; bordered by the west coast of France and the north coast of Spain
+1862,Bay_of_Fundy,a bay of the North Atlantic between New Brunswick and Nova Scotia; noted for rapid tides as great as 70 feet
+1863,Bay_of_Naples,an arm of the Tyrrhenian Sea at Naples
+1864,Bayard Seigneur_de_Bayard Chevalier_de_Bayard Pierre_Terrail Pierre_de_Terrail,French soldier said to be fearless and chivalrous (1473-1524)
+1865,Bayes Thomas_Bayes,English mathematician for whom Bayes' theorem is named (1702-1761)
+1866,Bayes'_postulate,(statistics) the difficulty of applying Bayes' theorem is that the probabilities of the different causes are seldom known, in which case it may be postulated that they are all equal (sometimes known as postulating the equidistribution of ignorance)
+1867,Bayes'_theorem,(statistics) a theorem describing how the conditional probability of a set of possible causes for a given observed event can be computed from knowledge of the probability of each cause and the conditional probability of the outcome of each cause
+1868,Bayonne,a city in northeastern New Jersey
+1869,Bayonne_Bridge,a steel arch bridge connecting New Jersey and Staten Island at Bayonne, New Jersey
+1870,Bayrut Beirut capital_of_Lebanon,capital and largest city of Lebanon; located in western Lebanon on the Mediterranean
+1871,Beacon_Hill,a fashionable section of Boston; site of the Massachusetts capital building
+1872,Beadle George_Beadle George_Wells_Beadle,United States biologist who discovered how hereditary characteristics are transmitted by genes (1903-1989)
+1873,Beatitude,one of the eight sayings of Jesus at the beginning of the Sermon on the Mount; in Latin each saying begins with `beatus' (blessed); "her favorite Beatitude is `Blessed are the meek for they shall inherit the earth'"
+1874,Beatles,a rock group from Liverpool who between 1962 and 1970 produced a variety of hit songs and albums (most of them written by Paul McCartney and John Lennon)
+1875,Beatrice,the woman who guided Dante through Paradise in the Divine Comedy
+1876,Beaufort_Sea,part of the Arctic Ocean to the northeast of Alaska
+1877,Beaufort_scale,a scale from 0 to 12 for the force of the wind
+1878,Beaufort_scale wind_scale,an international scale of wind force from 0 (calm air) to 12 (hurricane)
+1879,Beaujolais,dry fruity light red wine drunk within a few months after it is made; from the Beaujolais district in southeastern France
+1880,Beaumont,a city of southeastern Texas near Houston
+1881,Beaumont Francis_Beaumont,English dramatist who collaborated with John Fletcher (1584-1616)
+1882,Beaumont William_Beaumont,United States surgeon remembered for his studies of digestion (1785-1853)
+1883,Beaumontia genus_Beaumontia,small genus of evergreen woody vines in the East Indies and Asia
+1884,Beauvoir Simone_de_Beauvoir,French feminist and existentialist and novelist (1908-1986)
+1885,Beaverbrook 1st_Baron_Beaverbrook William_Maxwell_Aitken,British newspaper publisher and politician (born in Canada); confidant of Winston Churchill (1879-1964)
+1886,Bechtel_crab flowering_crab,derived from the Iowa crab and cultivated for its large double pink blossoms
+1887,Becker_muscular_dystrophy,a form of muscular dystrophy that sets in in adolescence or adulthood and progresses slowly but will affect all voluntary muscles; characterized by generalized weakness and muscle wasting that affects limb and trunk muscles first; similar to Duchenne's muscular dystrophy but less severe; inheritance is X-linked recessive (carried by females but affecting only males)
+1888,Becket Thomas_a_Becket Saint_Thomas_a_Becket St._Thomas_a_Becket,(Roman Catholic Church) archbishop of Canterbury from 1162 to 1170; murdered following his opposition to Henry II's attempts to control the clergy (1118-1170)
+1889,Beckett Samuel_Beckett,a playwright and novelist (born in Ireland) who lived in France; wrote plays for the theater of the absurd (1906-1989)
+1890,Beckley,a city in southern West Virginia
+1891,Beckman_thermometer,a mercury thermometer that measures small differences or changes in temperature
+1892,Becquerel Henri_Becquerel Antoine_Henri_Becquerel,French physicist who discovered that rays emitted by uranium salts affect photographic plates (1852-1908)
+1893,Bede Saint_Bede St._Bede Baeda Saint_Baeda St._Baeda Beda Saint_Beda St._Beda the_Venerable_Bede,(Roman Catholic Church) English monk and scholar (672-735)
+1894,Bedford_cord,a heavy corded fabric similar to corduroy; used for clothing
+1895,Bedlam booby_hatch crazy_house cuckoo's_nest funny_farm funny_house loony_bin madhouse nut_house nuthouse sanatorium snake_pit,pejorative terms for an insane asylum
+1896,Bedlington_terrier,a light terrier groomed to resemble a lamb
+1897,Bedouin Beduin,a member of a nomadic tribe of Arabs
+1898,Beecher Henry_Ward_Beecher,United States clergyman who was a leader for the abolition of slavery (1813-1887)
+1899,Beerbohm Max_Beerbohm Sir_Henry_Maxmilian_Beerbohm,English writer and caricaturist (1872-1956)
+1900,Beethoven,the music of Beethoven; "he enjoyed Beethoven most of all"
+1901,Beethoven van_Beethoven Ludwig_van_Beethoven,German composer of instrumental music (especially symphonic and chamber music); continued to compose after he lost his hearing (1770-1827)
+1902,Begin Menachem_Begin,Israeli statesman (born in Russia) who (as prime minister of Israel) negotiated a peace treaty with Anwar Sadat (then the president of Egypt) (1913-1992)
+1903,Begoniaceae family_Begoniaceae begonia_family,monoecious succulent herbs or shrubs of tropical and warm regions especially America
+1904,Beguine,(Roman Catholic Church) a member of a lay sisterhood (one of several founded in the Netherlands in the 12th and 13th centuries); though not taking religious vows the sisters followed an austere life
+1905,Behrens Peter_Behrens,German architect known for his simple utilitarian factory buildings (1868-1940)
+1906,Beijing Peking Peiping capital_of_Red_China,capital of the People's Republic of China in the Hebei province in northeastern China; 2nd largest Chinese city
+1907,Beira,a port city in eastern Mozambique on the Mozambique Channel
+1908,Bel,Babylonian god of the earth; one of the supreme triad including Anu and Ea; earlier identified with En-lil
+1909,Bel B,a logarithmic unit of sound intensity equal to 10 decibels
+1910,Bel_and_the_Dragon,an Apocryphal book consisting of text added to the Book of Daniel
+1911,Belamcanda genus_Belamcanda,a monocotyledonous genus of the family Iridaceae
+1912,Belarus Republic_of_Belarus Byelarus Byelorussia Belorussia White_Russia,a landlocked republic in eastern Europe; formerly a European soviet
+1913,Belarusian Byelorussian White_Russian,the Slavic language spoken in Belarus
+1914,Belarusian_monetary_unit,monetary unit in Belarus
+1915,Belem Para Feliz_Lusitania Santa_Maria_de_Belem St._Mary_of_Bethlehem,port city in northern Brazil in the Amazon delta; main port and commercial center for the Amazon River basin
+1916,Belemnitidae family_Belemnitidae,family of extinct Mesozoic cephalopods
+1917,Belemnoidea order_Belemnoidea,order of extinct dibranchiate cephalopods related to the surviving spirulas
+1918,Belfast capital_of_Northern_Ireland,capital and largest city of Northern Ireland; the center of Protestantism in Northern Ireland
+1919,Belgian,a native or inhabitant of Belgium
+1920,Belgian_endive French_endive witloof,young broad-leaved endive plant deprived of light to form a narrow whitish head
+1921,Belgian_franc,formerly the basic unit of money in Belgium
+1922,Belgian_hare leporide,red breed of domestic rabbits; hybrid between Old World rabbit and hare
+1923,Belgian_sheepdog Belgian_shepherd,hardy working dog developed in Belgium for herding sheep
+1924,Belgian_waffle,thick sweet waffle often eaten with ice cream or fruit sauce
+1925,Belgium Kingdom_of_Belgium Belgique,a monarchy in northwestern Europe; headquarters for the European Union and for the North Atlantic Treaty Organization
+1926,Belgrade Beograd capital_of_Serbia_and_Montenegro,capital and largest city of Serbia and Montenegro; situated on the Danube
+1927,Belisarius,Byzantine general under Justinian I; he recovered former Roman territories in northern Africa and fought against the Persians
+1928,Belize British_Honduras,a country on the northeastern coast of Central America on the Caribbean; formerly under British control
+1929,Belize_dollar,the basic unit of money in Belize
+1930,Bell Alexander_Bell Alexander_Graham_Bell,United States inventor (born in Scotland) of the telephone (1847-1922)
+1931,Bell Melville_Bell Alexander_Melville_Bell,a phonetician and father of Alexander Graham Bell (1819-1905)
+1932,Bell Vanessa_Bell Vanessa_Stephen,English painter; sister of Virginia Woolf; prominent member of the Bloomsbury Group (1879-1961)
+1933,Bellarmine Bellarmino Cardinal_Bellarmine Roberto_Francesco_Romolo_Bellarmine,Italian cardinal and theologian (1542-1621)
+1934,Belle_Isle_cress early_winter_cress land_cress American_cress American_watercress Barbarea_verna Barbarea_praecox,of southwestern Europe; cultivated in Florida
+1935,Bellerophon,(Greek mythology) a mythical hero of Corinth who performed miracles on the winged horse Pegasus (especially killing the monster Chimera)
+1936,Bellingham,a town in northwestern Washington on a bay near the Canadian border
+1937,Bellini Vincenzo_Bellini,Italian composer of operas (1801-1835)
+1938,Bellis genus_Bellis,daisy
+1939,Belloc Hilaire_Belloc Joseph_Hilaire_Peter_Belloc,English author (born in France) remembered especially for his verse for children (1870-1953)
+1940,Bellow Saul_Bellow Solomon_Bellow,United States author (born in Canada) whose novels influenced American literature after World War II (1915-2005)
+1941,Belmont_Park Belmont,a racetrack for thoroughbred racing in Elmont on Long Island; site of the Belmont Stakes
+1942,Belmont_Stakes,an annual race for three-year-old horses; held on Long Island at Elmont, New York
+1943,Belo_Horizonte,city in southeastern Brazil to the north of Rio de Janeiro; the first of Brazil's planned communities
+1944,Belonidae family_Belonidae,ferocious fishes of warm regions resembling but unrelated to the freshwater gars
+1945,Belostomatidae family_Belostomatidae,water bugs
+1946,Belsen,a Nazi concentration camp for Jews created in northwestern Germany during World War II
+1947,Belshazzar,(Old Testament) Babylonian general and son of Nebuchadnezzar II; according to the Old Testament he was warned of his doom by divine handwriting on the wall that was interpreted by Daniel (6th century BC)
+1948,Bemidji,a town in northern Minnesota
+1949,Bemisia genus_Bemisia,sweet-potato whitefly
+1950,Ben_Gurion David_Ben_Gurion David_Grun,Israeli statesman (born in Poland) and active Zionist who organized resistance against the British after World War II; prime minister of Israel (1886-1973)
+1951,Ben_Sira Sirach Ecclesiasticus Wisdom_of_Jesus_the_Son_of_Sirach,an Apocryphal book mainly of maxims (resembling Proverbs in that respect)
+1952,Bench,the magistrate or judge or judges sitting in court in judicial capacity to compose the court collectively
+1953,Benchley Robert_Benchley Robert_Charles_Benchley,United States humorist (1889-1945)
+1954,Bend,a town in central Oregon at the eastern foot of the Cascade Range
+1955,Benday_process,a photoengraving technique for adding shading or texture or tone to a printed image
+1956,Benedict Ruth_Benedict Ruth_Fulton,United States anthropologist (1887-1948)
+1957,Benedict Saint_Benedict St._Benedict,Italian monk who founded the Benedictine order about 540 (480-547)
+1958,Benedict_XIV Prospero_Lambertini,pope who was a patron of the arts and who denounced the cruelty to the indigenous peoples of South America (1675-1758)
+1959,Benedict_XV Giacomo_della_Chiesa,pope who founded the Vatican service for prisoners of war during World War I (1854-1922)
+1960,Benedictine,a monk or nun belonging to the order founded by Saint Benedict
+1961,Benedictine_order order_of_Saint_Benedict,a Roman Catholic monastic order founded in the 6th century; noted for liturgical worship and for scholarly activities
+1962,Benelux,a customs union comprising Belgium and Netherlands and Luxembourg
+1963,Benet Stephen_Vincent_Benet,United States poet; brother of William Rose Benet (1898-1943)
+1964,Benet William_Rose_Benet,United States writer; brother of Stephen Vincent Benet (1886-1950)
+1965,Benford's_law,a law used by auditors to identify fictitious populations of numbers; applies to any population of numbers derived from other numbers; "Benford's law holds that 30% of the time the first non-zero digit of a derived number will be 1 and it will be 9 only 4.6% of the time"
+1966,Bengal,a region whose eastern part is now Bangladesh and whose western part is included in India
+1967,Bengal_light,a steady bright blue light; formerly used as a signal but now a firework
+1968,Bengal_tiger,southern short-haired tiger
+1969,Bengali,(Hinduism) a member of a people living in Bangladesh and West Bengal (mainly Hindus)
+1970,Bengali,an ethnic group speaking Bengali and living in Bangladesh and eastern India
+1971,Bengali Bangla,a Magadhan language spoken by the Bengali people; the official language of Bangladesh and Bengal
+1972,Benghazi,port in northern Libya on the Gulf of Sidra; formerly a joint capital of Libya with Tripoli
+1973,Benin Republic_of_Benin Dahomey,a country on western coast of Africa; formerly under French control
+1974,Benin_franc,the basic unit of money in Benin
+1975,Beninese,a native or inhabitant of Benin
+1976,Benjamin,(Old Testament) the youngest and best-loved son of Jacob and Rachel and one of the twelve forebears of the tribes of Israel
+1977,Benjamin_Franklin_Bridge,a suspension bridge across the Delaware River
+1978,Bennett Floyd_Bennett,United States aviator who (with Richard E. Byrd) piloted the first flight over the North Pole (1890-1928)
+1979,Bennettitaceae family_Bennettitaceae,a family of fossil gymnospermous plants of the Carboniferous
+1980,Bennettitales order_Bennettitales,fossil gymnospermous plants of the Carboniferous
+1981,Bennettitis genus_Bennettitis,type of the Bennettitales
+1982,Bennington,a town in southwestern Vermont
+1983,Benny Jack_Benny Benjamin_Kubelsky,United States comedian known for his timeing and delivery and self-effacing humor (1894-1974)
+1984,Bentham Jeremy_Bentham,English philosopher and jurist; founder of utilitarianism (1748-1831)
+1985,Benton Thomas_Hart_Benton,United States artist whose paintings portrayed life in the Midwest and South (1889-1975)
+1986,Benton Thomas_Hart_Benton Old_Bullion,United States legislator who opposed the use of paper currency (1782-1858)
+1987,Benzedrine bennie,a form of amphetamine
+1988,Benzoin genus_Benzoin,used in some classifications for the American spicebush and certain other plants often included in the genus Lindera
+1989,Beowulf,the legendary hero of an anonymous Old English epic poem composed in the early 8th century; he slays a monster and becomes king but dies fighting a dragon
+1990,Berber,a member of an indigenous people of northern Africa
+1991,Berber,a cluster of related dialects that were once the major language of northern Africa west of Egypt; now spoken mostly in Morocco
+1992,Berberidaceae family_Berberidaceae barberry_family,shrubs or herbs
+1993,Berberis genus_Berberis,large genus of shrubs of temperate zones of New and Old Worlds
+1994,Berbers Arab-Berbers,an ethnic minority descended from Berbers and Arabs and living in northern Africa
+1995,Bercy Bercy_butter,butter creamed with white wine and shallots and parsley
+1996,Berg Alban_Berg,Austrian composer in Schoenberg's twelve-tone music system (1885-1935)
+1997,Bergen,a port city in southwestern Norway
+1998,Bergman Ingmar_Bergman,Swedish film director who used heavy symbolism and explored the psychology of the characters (born 1918)
+1999,Bergman Ingrid_Bergman,Swedish film actress (1915-1982)
+2000,Bergson Henri_Bergson Henri_Louis_Bergson,French philosopher who proposed elan vital as the cause of evolution and development (1859-1941)
+2001,Beria Lavrenti_Pavlovich_Beria,Soviet chief of secret police under Joseph Stalin; was executed by his associates in the power struggle following Stalin's death (1899-1953)
+2002,Bering Vitus_Bering Behring Vitus_Behring,Danish explorer who explored the northern Pacific Ocean for the Russians and discovered the Bering Strait (1681-1741)
+2003,Bering_Sea,part of the North Pacific between Alaska and Siberia; connected to the Arctic Ocean by the Bering Strait
+2004,Bering_Strait,a strait connecting the Bering Sea to the Arctic Ocean
+2005,Bering_Time Bering_Standard_Time,standard time in the 11th time zone west of Greenwich, reckoned at the 165th meridian west; used in the Midway Islands
+2006,Berith Berit Brith Bris Briss,the Jewish rite of circumcision performed on a male child on the eighth day of his life
+2007,Berkeley,a city in California on the eastern shore of San Francisco Bay; site of the University of California at Berkeley
+2008,Berkeley Bishop_Berkeley George_Berkeley,Irish philosopher and Anglican bishop who opposed the materialism of Thomas Hobbes (1685-1753)
+2009,Berkshire,a county in southern England
+2010,Berkshires Berkshire_Hills,a low mountain range in western Massachusetts; a resort area
+2011,Berlage Hendrik_Petrus_Berlage,Dutch architect and town planner (1856-1934)
+2012,Berlin German_capital,capital of Germany located in eastern Germany
+2013,Berlin Irving_Berlin Israel_Baline,United States songwriter (born in Russia) who wrote more than 1500 songs and several musical comedies (1888-1989)
+2014,Berlin_airlift,airlift in 1948 that supplied food and fuel to citizens of west Berlin when the Russians closed off land access to Berlin
+2015,Berlin_doughnut bismark jelly_doughnut,a raised doughnut filled with jelly or jam
+2016,Berliner,an inhabitant of Berlin
+2017,Berlioz Hector_Berlioz Louis-Hector_Berlioz,French composer of romantic works (1803-1869)
+2018,Bermuda Bermudas,a group of islands in the Atlantic off the Carolina coast; British colony; a popular resort
+2019,Bermuda_Triangle,an area in the western Atlantic Ocean where many ships and planes are supposed to have been mysteriously lost
+2020,Bermuda_buttercup English-weed Oxalis_pes-caprae Oxalis_cernua,South African bulbous wood sorrel with showy yellow flowers
+2021,Bermuda_cedar Juniperus_bermudiana,ornamental densely pyramidal juniper of Bermuda; fairly large for a juniper
+2022,Bermuda_chub rudderfish Kyphosus_sectatrix,food and game fish around Bermuda and Florida; often follow ships
+2023,Bermuda_dollar,the basic unit of money in Bermuda
+2024,Bermuda_grass devil_grass Bahama_grass kweek doob scutch_grass star_grass Cynodon_dactylon,trailing grass native to Europe now cosmopolitan in warm regions; used for lawns and pastures especially in southern United States and India
+2025,Bermuda_maidenhair Bermuda_maidenhair_fern Adiantum_bellum,delicate endemic Bermudian fern with creeping rootstock
+2026,Bermuda_onion,mild flat onion grown in warm areas
+2027,Bermuda_plan,a hotel plan that provides a full breakfast daily
+2028,Bermuda_rig Bermudan_rig Bermudian_rig Marconi_rig,a rig of triangular sails for a yacht
+2029,Bermuda_shorts Jamaica_shorts,(used in the plural) short pants that end at the knee
+2030,Bermudan Bermudian,a native or inhabitant of Bermuda
+2031,Bern Berne capital_of_Switzerland,the capital of Switzerland; located in western Switzerland
+2032,Bernard Claude_Bernard,French physiologist noted for research on secretions of the alimentary canal and the glycogenic function of the liver (1813-1878)
+2033,Bernese_mountain_dog,large powerful long-haired black-coated Swiss dog with deep tan or russet markings on legs and white blaze and feet and chest marking; formerly used for draft
+2034,Bernhardt Sarah_Bernhardt Henriette_Rosine_Bernard,French actress (1844-1923)
+2035,Bernini Giovanni_Lorenzo_Bernini,Italian sculptor and architect of the baroque period in Italy; designed many churches and chapels and tombs and fountains (1598-1680)
+2036,Bernoulli Daniel_Bernoulli,Swiss physicist who contributed to hydrodynamics and mathematical physics (1700-1782)
+2037,Bernoulli Jakob_Bernoulli Jacques_Bernoulli James_Bernoulli,Swiss mathematician (1654-1705)
+2038,Bernoulli Johann_Bernoulli Jean_Bernoulli John_Bernoulli,Swiss mathematician (1667-1748)
+2039,Bernoulli's_law law_of_large_numbers,(statistics) law stating that a large number of items taken at random from a population will (on the average) have the population statistics
+2040,Bernstein Leonard_Bernstein,United States conductor and composer (1918-1990)
+2041,Berra Lawrence_Peter_Berra Yogi Yogi_Berra,United States baseball player (born 1925)
+2042,Berry Chuck_Berry Charles_Edward_Berry,United States rock singer (born in 1931)
+2043,Berteroa genus_Berteroa,hoary alyssum
+2044,Bertholletia genus_Bertholletia,brazil nut
+2045,Bertillon Alphonse_Bertillon,French criminologist (1853-1914)
+2046,Bertillon_system,a system or procedure for identifying persons
+2047,Bertolucci Bernardo_Bertolucci,Italian filmmaker (born in 1940)
+2048,Berycomorphi order_Berycomorphi,an order of spiny-finned fish in the superorder Acanthopterygii
+2049,Berzelius Jons_Jakob_Berzelius,Swedish chemist who discovered three new elements and determined the atomic weights of many others (1779-1848)
+2050,Bessel Friedrich_Wilhelm_Bessel,German mathematician and astronomer who made accurate measurements of stellar distances and who predicted the existence on an 8th planet (1784-1846)
+2051,Bessemer Sir_Henry_Bessemer,British inventor and metallurgist who developed the Bessemer process (1813-1898)
+2052,Bessemer_converter,a refractory-lined furnace used to convert pig iron into steel by the Bessemer process
+2053,Bessemer_process,an industrial process for making steel using a Bessemer converter to blast air through molten iron and thus burning the excess carbon and impurities; the first successful method of making steel in quantity at low cost
+2054,Bessera genus_Bessera,small genus of cormous perennials of Mexico; sometimes placed in family Alliaceae
+2055,Besseya genus_Besseya,genus of North American spring wildflowers
+2056,Best C._H._Best Charles_Herbert_Best,Canadian physiologist (born in the United States) who assisted F. G. Banting in research leading to the discovery of insulin (1899-1978)
+2057,Beta genus_Beta,beets
+2058,Beta_Centauri,the second brightest star in Centaurus
+2059,Beta_Crucis,the second brightest star in the Southern Cross
+2060,Betelgeuse Alpha_Orionis,the second brightest star in Orion
+2061,Bethe Hans_Bethe Hans_Albrecht_Bethe,United States physicist (born in Germany) noted for research in astrophysics and nuclear physics (1906-2005)
+2062,Bethlehem,a town in eastern Pennsylvania on the Lehigh River to the northwest of Philadelphia; an important center for steel production
+2063,Bethlehem Bayt_Lahm Bethlehem_Ephrathah Bethlehem-Judah,a small town near Jerusalem on the West Bank of the Jordan River; early home of David and regarded as the place where Jesus was born
+2064,Bethune Mary_McLeod_Bethune,United States educator who worked to improve race relations and educational opportunities for Black Americans (1875-1955)
+2065,Bettongia genus_Bettongia,jerboa kangaroo
+2066,Betula genus_Betula,a genus of trees of the family Betulaceae (such as birches)
+2067,Betulaceae family_Betulaceae birch_family,monoecious trees and shrubs (including the genera Betula and Alnus and Carpinus and Corylus and Ostrya and Ostryopsis)
+2068,Beveridge William_Henry_Beveridge First_Baron_Beveridge,British economist (born in India) whose report on social insurance provided the basis for most of the social legislation on which the welfare state in the United Kingdom is based (1879-1963)
+2069,Beverly_Hills,a city in southwestern California surrounded by Los Angeles; home of many Hollywood actors
+2070,Bevin Ernest_Bevin,British labor leader and statesman who played an important role in diplomacy after World War II (1884-1951)
+2071,Bewick's_swan Cygnus_columbianus_bewickii,Eurasian subspecies of tundra swan; smaller than the whooper
+2072,Bhadon Bhadrapada,the sixth month of the Hindu calendar
+2073,Bhaga,Hindu god of wealth and love
+2074,Bhagavad-Gita Bhagavadgita Gita,(Hinduism) the sacred `song of God' composed about 200 BC and incorporated into the Mahabharata (a Sanskrit epic); contains a discussion between Krishna and the Indian hero Arjuna on human nature and the purpose of life
+2075,Bhumi_Devi,Hindu earth goddess; one of the two wives of Vishnu
+2076,Bhutan Kingdom_of_Bhutan,a landlocked principality in the Himalayas to the northeast of India
+2077,Bhutanese Bhutani,a native or inhabitant of Bhutan
+2078,Bhutanese_monetary_unit,monetary unit in Bhutan
+2079,Bibb_lettuce,lettuce with relatively crisp leaves
+2080,Bible Christian_Bible Book Good_Book Holy_Scripture Holy_Writ Scripture Word_of_God Word,the sacred writings of the Christian religions; "he went to carry the Word to the heathen"
+2081,Bible_Belt,southern and midwestern United States where Protestant fundamentalism is dominant
+2082,Biblical_Aramaic,the form of Aramaic that was spoken in Palestine in the time of the New Testament
+2083,Bibos genus_Bibos,wild ox
+2084,Bidens genus_Bidens,bur marigolds
+2085,Bierce Ambrose_Bierce Ambrose_Gwinett_Bierce,United States writer of caustic wit (1842-1914)
+2086,Big_Ben,clock in the clock tower of the Houses of Parliament, London
+2087,Big_Bend,a triangular area in southwestern Texas on the Mexican border; formed by a bend in the Rio Grande
+2088,Big_Bend_National_Park,a large national park in Texas featuring mountains and desert and canyons and wildlife
+2089,Big_Blue BLU-82,a reliable and deadly 15,000-pound fragmentation bomb that explodes just above ground with a large radius; the largest conventional bomb in existence; used in Afghanistan
+2090,Big_Brother,a totalitarian leader and invader of privacy
+2091,Big_Dipper Dipper Plough Charles's_Wain Wain Wagon,a group of seven bright stars in the constellation Ursa Major
+2092,Big_Sioux_River,a river that rises in northeastern South Dakota and flows southward to join the Missouri River at Sioux City, Iowa
+2093,Big_Sur,a picturesque coastal region of California to the south of San Francisco
+2094,Bigfoot Sasquatch,large hairy humanoid creature said to live in wilderness areas of the United States and Canada
+2095,Bighorn Bighorn_River,a river that flows from central Wyoming to the Yellowstone River in southern Montana
+2096,Bight_of_Benin,a broad indentation of the Gulf of Guinea in western Africa
+2097,Bignonia genus_Bignonia,one species: cross vine
+2098,Bignoniaceae family_Bignoniaceae,trees or shrubs or woody vines or herbs having fruit resembling gourds or capsules; sometimes placed in the order Scrophulariales
+2099,Bihar,a state of northeastern India
+2100,Bihari,the Indic language spoken in Bihar (and by some people in Pakistan and Bangladesh)
+2101,Bikini,an atoll in the Marshall Islands; formerly used by the United States as a site for testing nuclear weapons
+2102,Bill_of_Rights,a statement of fundamental rights and privileges (especially the first ten amendments to the United States Constitution)
+2103,Billings,the largest city in Montana; located in southern Montana on the Yellowstone river
+2104,Biloxi,a member of the Siouan people of southeastern Mississippi
+2105,Biloxi,an old town in southern Mississippi on the Gulf of Mexico
+2106,Biloxi,the Siouan language spoken by the Biloxi
+2107,Binet Alfred_Binet,French psychologist remembered for his studies of the intellectual development of children (1857-1911)
+2108,Binet-Simon_Scale,the first intelligence test
+2109,Binghamton,a city in south central New York near the border with Pennsylvania
+2110,Bioko,an island in the Gulf of Guinea that is part of Equatorial Guinea
+2111,Birmingham Brummagem,a city in central England; 2nd largest English city and an important industrial and transportation center
+2112,Birmingham Pittsburgh_of_the_South,the largest city in Alabama; located in northeastern Alabama
+2113,Biscayne_Bay,a narrow bay formed by an inlet from the Atlantic Ocean in southeastern Florida
+2114,Biscayne_National_Park,a national park in Florida having underwater coral reefs and marine life
+2115,Biscutella genus_Biscutella,genus of Eurasian herbs and small shrubs: buckler mustard
+2116,Bishkek Biskek Frunze capital_of_Kyrgyzstan,the capital of Kyrgyzstan (known as Frunze 1926-1991)
+2117,Bismarck capital_of_North_Dakota,capital of the state of North Dakota; located in south central North Dakota overlooking the Missouri river
+2118,Bismarck von_Bismarck Otto_von_Bismarck Prince_Otto_von_Bismarck Prince_Otto_Eduard_Leopold_von_Bismarck Iron_Chancellor,German statesman under whose leadership Germany was united (1815-1898)
+2119,Bismarck_Archipelago,a group of islands in the southwestern Pacific to the northeast of New Guinea; part of Papua New Guinea
+2120,Bismarck_Sea,an arm of the South Pacific to the southwest of the Bismarck Archipelago
+2121,Bismarck_Sea battle_of_the_Bismarck_Sea,a naval battle in World War II; Allied land-based bombers destroyed a Japanese convoy in the Bismarck Sea in March 1943
+2122,Bissau capital_of_Guinea-Bissau,the capital of Guinea-Bissau
+2123,Bithynia,an ancient country in northwestern Asia Minor in what is now Turkey; was absorbed into the Roman Empire by the end of the 1st century BC
+2124,Bitis genus_Bitis,a genus of Viperidae
+2125,Bittacidae family_Bittacidae,a family of predacious tropical insects of the order Mecoptera
+2126,Biu-Mandara,a group of Chadic languages spoken in the border area between Cameroon and Nigeria south of Lake Chad
+2127,Bivalvia class_Bivalvia Lamellibranchia class_Lamellibranchia class_Pelecypoda,oysters; clams; scallops; mussels
+2128,Bizet Georges_Bizet,French composer best known for his operas (1838-1875)
+2129,Blaberus genus_Blaberus,giant cockroaches
+2130,Black African-American Negro Negroid,a person with African ancestry, "Negro" and "Negroid" are archaic and pejorative today
+2131,Black Joseph_Black,British chemist who identified carbon dioxide and who formulated the concepts of specific heat and latent heat (1728-1799)
+2132,Black Shirley_Temple_Black Shirley_Temple,popular child actress of the 1930's (born in 1928)
+2133,Black_African,an African who is Black
+2134,Black_Death Black_Plague,the epidemic form of bubonic plague experienced during the Middle Ages when it killed nearly half the people of western Europe
+2135,Black_Forest Schwarzwald,a hilly forest region in southwestern Germany
+2136,Black_Hand,a secret terrorist society in the United States early in the 20th century
+2137,Black_Hawk Makataimeshekiakiak,Sauk leader who in 1832 led Fox and Sauk warriors against the United States (1767-1838)
+2138,Black_Hills,mountains in southwestern South Dakota and northeastern Wyoming; sacred to the Sioux (whites settling in the Black Hills led to the Battle of Little Bighorn); site of Mount Rushmore
+2139,Black_Hills,mountains in western South Dakota and northeastern Wyoming
+2140,Black_Hole_of_Calcutta,a dungeon (20 feet square) in a fort in Calcutta where as many as 146 English prisoners were held overnight by Siraj-ud-daula; the next morning only 23 were still alive
+2141,Black_Muslim,an activist member of a largely American group of Blacks called the Nation of Islam
+2142,Black_Panther,a member of the Black Panthers political party
+2143,Black_Panthers,a militant Black political party founded in 1965 to end political dominance by Whites
+2144,Black_Rock_Desert,a desert in northwestern Nevada
+2145,Black_Sea Euxine_Sea,a sea between Europe and Asia; a popular resort area of eastern Europeans
+2146,Black_September_Movement,a former Palestinian terrorist organization (now merged with Fatah Revolutionary Council) that assassinated the Prime Minister of Jordan and during the 1972 Olympic Games in Munich killed 11 Israeli athletes
+2147,Black_and_Tan,an English recruit (who wore a uniform that was black and tan) serving in the Irish constabulary to suppress the Sinn Fein rebellion of 1919 to 1921
+2148,Blackburn Blackburnian_warbler Dendroica_fusca,black-and-white North American wood warbler having an orange-and-black head and throat
+2149,Blackfoot,a member of a warlike group of Algonquians living in the northwestern plains
+2150,Blackfoot,any of the Algonquian languages spoken by the Blackfoot
+2151,Blackpool,a resort town in Lancashire in northwestern England on the Irish Sea; famous for its tower
+2152,Blacksburg,a university town in southwestern Virginia (west of Roanoke) in the Allegheny Mountains
+2153,Blackshirt,a member of the Italian fascist party before World War II
+2154,Blackwall_hitch,a simple hitch used for temporarily attaching a line to a hook
+2155,Blaia_Zimondal,an artificial language
+2156,Blair Tony_Blair Anthony_Charles_Lynton_Blair,British statesman who became prime minister in 1997 (born in 1953)
+2157,Blake William_Blake,visionary British poet and painter (1757-1827)
+2158,Blandfordia genus_Blandfordia,small genus of tuberous Australian perennial herbs
+2159,Blantyre,city in southern Malawi; largest city and commercial center of Malawi
+2160,Blarina genus_Blarina,shrews
+2161,Blarney_Stone,a stone in a castle in Ireland that is said to impart skill in flattery to anyone who kisses it
+2162,Blastocladia genus_Blastocladia,a genus of fungi of the family Blastodiaceae
+2163,Blastocladiales order_Blastocladiales,fungi that carry out asexual reproduction by thick-walled resting spores that produce zoospores upon germination; sometimes placed in class Oomycetes
+2164,Blastodiaceae family_Blastodiaceae,a family of saprobic fungi of order Blastocladiales
+2165,Blastomyces genus_Blastomyces,genus of pathogenic yeastlike fungi
+2166,Blatta genus_Blatta,type genus of the Blattidae: cockroaches infesting buildings worldwide
+2167,Blattella genus_Blattella,small cockroaches
+2168,Blattidae family_Blattidae,domestic cockroaches
+2169,Blattodea suborder_Blattodea Blattaria suborder_Blattaria,cockroaches; in some classifications considered an order
+2170,Blechnaceae family_Blechnaceae,one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems; includes genera Blechnum, Doodia, Sadleria, Stenochlaena, and Woodwardia
+2171,Blechnum genus_Blechnum,in some classification systems placed in family Polypodiaceae; terrestrial ferns of cosmopolitan distribution mainly in southern hemisphere: hard ferns
+2172,Blenheim,the First Duke of Marlborough and Prince Eugene of Savoy defeated the French in 1704 during the War of the Spanish Succession
+2173,Blenheim_spaniel,red-and-white variety of English toy spaniel
+2174,Blenniidae family_Blenniidae,a family of fish including: combtooth blennies
+2175,Blennioidea suborder_Blennioidea,blennies; butterfishes; gunnels
+2176,Blennius genus_Blennius,type genus of the Blenniidae
+2177,Blephilia genus_Blephilia,small genus of North American herbs: wood mints
+2178,Bleriot Louis_Bleriot,French aviator who in 1909 made the first flight across the English Channel (1872-1936)
+2179,Bletilla genus_Bletilla,small genus of chiefly east Asiatic hardy terrestrial orchids similar to genus Bletia
+2180,Bletilla_striata Bletia_striata,Japanese orchid with white-striped leaves and slender erect racemes of rose to magenta flowers; often cultivated; sometimes placed in genus Bletia
+2181,Blida,a city in northern Algeria at the foot of the Atlas Mountains to the southwest of Algiers
+2182,Bligh William_Bligh Captain_Bligh,British admiral; was captain of the H.M.S. Bounty in 1789 when part of the crew mutinied and set him afloat in an open boat; a few weeks later he arrived safely in Timor 4,000 miles away (1754-1817)
+2183,Blighia genus_Blighia,small genus of western African evergreen trees and shrubs bearing fleshy capsular three-seeded fruits edible when neither unripe nor overripe
+2184,Blighty,a slang term for Great Britain used by British troops serving abroad
+2185,Blissus genus_Blissus,chinch bugs
+2186,Blitzstein Marc_Blitzstein,United States pianist and composer of operas and musical plays (1905-1964)
+2187,Bloch Ernest_Bloch,United States composer (born in Switzerland) who composed symphonies and chamber music and choral music and a piano sonata and an opera (1880-1959)
+2188,Bloemfontein,the seat of the supreme court
+2189,Blok Alexander_Alexandrovich_Blok Aleksandr_Aleksandrovich_Blok,Russian poet (1880-1921)
+2190,Bloody_Mary,a cocktail made with vodka and spicy tomato juice
+2191,Bloomeria genus_Bloomeria,small genus of bulbous perennial herbs of southwestern United States and Mexico; sometimes placed in family Alliaceae
+2192,Bloomfield Leonard_Bloomfield,United States linguist who adopted a behavioristic approach to linguistics (1887-1949)
+2193,Bloomington,a university town in south central Indiana
+2194,Bloomsbury,a city district of central London laid out in garden squares
+2195,Bloomsbury_Group,an inner circle of writers and artists and philosophers who lived in or around Bloomsbury early in the 20th century and were noted for their unconventional lifestyles
+2196,Blucher von_Blucher G._L._von_Blucher Gebhard_Leberecht_von_Blucher,Prussian general who is remembered for his leadership in the wars against Napoleon (1742-1819)
+2197,Blue_Mountain_tea sweet_goldenrod Solidago_odora,goldenrod of eastern America having aromatic leaves from which a medicinal tea is made
+2198,Blue_Nile,a headstream of the Nile; joins the White Nile at Khartoum to form the Nile
+2199,Blue_Ridge_Mountains Blue_Ridge,a range of the Appalachians extending from southern Pennsylvania to northern Georgia
+2200,Bluebeard,(fairytale) a monstrous villain who marries seven women; he kills the first six for disobedience
+2201,Bluegrass Bluegrass_Country Bluegrass_Region,an area in central Kentucky noted for its bluegrass and thoroughbred horses
+2202,Bo_Hai Po_Hai,an inlet of the Yellow Sea, on the coast of Eastern China
+2203,Boann,Celtic goddess; mother of Angus Og
+2204,Boccaccio Giovanni_Boccaccio,Italian poet (born in France) (1313-1375)
+2205,Bodhisattva Boddhisatva,Buddhist worthy of nirvana who postpones it to help others
+2206,Bodo-Garo Barish,Kamarupan languages spoken in the state of Assam in northeastern India
+2207,Bodoni Gianbattista_Bodoni,Italian printer who designed the Bodoni font (1740-1813)
+2208,Boehme Jakob_Boehme Bohme Jakob_Bohme Boehm Jakob_Boehm Behmen Jakob_Behmen,German mystic and theosophist who founded modern theosophy; influenced George Fox (1575-1624)
+2209,Boehmenism Behmenism,the mystical theological doctrine of Jakob Boehme that influenced the Quakers
+2210,Boehmeria genus_Boehmeria,false nettle
+2211,Boell Heinrich_Boell Heinrich_Theodor_Boell,German novelist and writer of short stories (1917-1985)
+2212,Boeotia,a district of ancient Greece to the northwest of Athens
+2213,Boer_War,either of two wars: the first when the Boers fought England in order to regain the independence they had given up to obtain British help against the Zulus (1880-1881); the second when the Orange Free State and Transvaal declared war on Britain (1899-1902)
+2214,Boethius Anicius_Manlius_Severinus_Boethius,a Roman who was an early Christian philosopher and statesman who was executed for treason; Boethius had a decisive influence on medieval logic (circa 480-524)
+2215,Bofors_gun,an automatic double-barreled antiaircraft gun
+2216,Bogart Humphrey_Bogart Humphrey_DeForest_Bogart,United States film actor (1899-1957)
+2217,Bogota capital_of_Colombia,capital and largest city of Colombia; located in central Colombia on a high fertile plain
+2218,Bohemia,a historical area and former kingdom in the Czech Republic
+2219,Bohemian,a native or inhabitant of Bohemia in the Czech Republic
+2220,Bohemian_waxwing Bombycilla_garrulus,large waxwing of northern North America; similar to but larger than the cedar waxwing
+2221,Bohr Niels_Bohr Niels_Henrik_David_Bohr,Danish physicist who studied atomic structure and radiations; the Bohr theory of the atom accounted for the spectrum of hydrogen (1885-1962)
+2222,Bohr_theory,(physics) a theory of atomic structure that combined Rutherford's model with the quantum theory; electrons orbiting a nucleus can only be in certain stationary energy states and light is emitted when electrons jump from one energy state to another
+2223,Boidae family_Boidae,boas and pythons
+2224,Boise capital_of_Idaho,the capital and largest city of Idaho
+2225,Bokmal Bokmaal Dano-Norwegian,book language; one of two official languages of Norway; closely related to Danish
+2226,Bolbitis genus_Bolbitis,terrestrial or less than normally scandent ferns of tropical regions of northern hemisphere
+2227,Bole Bolanci,a Chadic language spoken in northern Nigeria and closely related to Hausa
+2228,Boletaceae family_Boletaceae,family of fleshy fungi having the germ pores easily separating from the cup and often from each other
+2229,Boletellus genus_Boletellus,a genus of fungi belonging to the family Boletaceae
+2230,Boletellus_russellii,a fungus with a long coarsely shaggy reticulate stalk and a rimose areolate cap surface
+2231,Boletus genus_Boletus,type genus of Boletaceae; genus of soft early-decaying pore fungi; some poisonous and some edible
+2232,Boletus_chrysenteron,a fungus convex cap and a dingy yellow under surface and a dry stalk
+2233,Boletus_edulis,an edible and choice fungus; has a convex cap that is slightly viscid when fresh and moist but soon dries and a thick bulbous tan stalk
+2234,Boletus_luridus,a poisonous fungus with a dingy yellow cap and orange red undersurface and a cylindrical reticulate stalk
+2235,Boletus_mirabilis,a fungus that is edible when young and fresh; has a dark brown convex cap with a yellow to greenish under surface and reddish stalk
+2236,Boletus_pallidus,a fungus that has an off-white cap when it is young but later becomes dingy brown and a stalk of the same color; the under surface of the cap (the tubes) a pale greenish yellow
+2237,Boletus_pulcherrimus,a beautiful but poisonous bolete; has a brown cap with a scarlet pore surface and a thick reticulate stalk
+2238,Boletus_pulverulentus,an edible fungus with a broadly convex blackish brown cap and a pore surface that is yellow when young and darkens with age; stalk is thick and enlarges toward the base
+2239,Boletus_roxanae,a fungus with a rusty red cap and a white pore surface that becomes yellow with age and a pale yellow stalk
+2240,Boletus_subvelutipes,a fungus with a velvety stalk and usually a dingy brown cap; injured areas turn blue instantly
+2241,Boletus_variipes,an edible (but not choice) fungus found on soil under hardwoods; has a dry convex cap with whitish under surface and a reticulate stalk
+2242,Boletus_zelleri,an edible and choice fungus that has a brown cap with greenish yellow under surface and a stalk that become dull red with age
+2243,Boleyn Anne_Boleyn,the second wife of Henry VIII and mother of Elizabeth I; was executed on a charge of adultery (1507-1536)
+2244,Bolivar Simon_Bolivar El_Libertador,Venezuelan statesman who led the revolt of South American colonies against Spanish rule; founded Bolivia in 1825 (1783-1830)
+2245,Bolivia Republic_of_Bolivia,a landlocked republic in central South America; Simon Bolivar founded Bolivia in 1825 after winning independence from Spain
+2246,Bolivian,a native or inhabitant of Bolivia
+2247,Bolivian_monetary_unit,monetary unit in Bolivia
+2248,Bollywood,the film industry of India
+2249,Bologna,the capital of Emilia-Romagna; located in northern Italy to the east of the Apennines
+2250,Bolshevik Bolshevist,a Russian member of the left-wing majority group that followed Lenin and eventually became the Russian communist party
+2251,Bolshevik Marxist red bolshie bolshy,emotionally charged terms used to refer to extreme radicals or revolutionaries
+2252,Bolshevism collectivism sovietism,Soviet communism
+2253,Boltonia genus_Boltonia,genus of tall leafy perennial herbs of eastern America and eastern Asia having flowers that resemble asters
+2254,Boltzmann Ludwig_Boltzmann,Austrian physicist who contributed to the kinetic theory of gases (1844-1906)
+2255,Boltzmann's_constant,constant used in the calculation of the ideal gas constant
+2256,Bolzano,an Italian city in Trentino-Alto Adige near the Austrian border; noted as a resort and for its Alpine scenery
+2257,Bomarea genus_Bomarea,large genus of tropical American vines having showy often spotted umbellate flowers; sometimes placed in family Liliaceae especially subfamily Alstroemeriaceae
+2258,Bombacaceae family_Bombacaceae,tropical trees with large dry or fleshy fruit containing usually woolly seeds
+2259,Bombax genus_Bombax,trees of chiefly South America
+2260,Bombina genus_Bombina,fire-bellied toads
+2261,Bombus genus_Bombus,bumblebees
+2262,Bombycidae family_Bombycidae,Chinese silkworm moth
+2263,Bombycilla genus_bombycilla,waxwings
+2264,Bombycillidae family_Bombycillidae,a family of birds of the suborder Oscines
+2265,Bombyliidae family_Bombyliidae,bee flies
+2266,Bombyx genus_Bombyx,type genus of the Bombycidae: Chinese silkworm moth
+2267,Bonaire,a popular island resort in the Netherlands Antilles
+2268,Bonasa genus_Bonasa,ruffed grouse
+2269,Bond James_Bond,British secret operative 007 in novels by Ian Fleming
+2270,Bond Julian_Bond,United States civil rights leader who was elected to the legislature in Georgia but was barred from taking his seat because he opposed the Vietnam War (born 1940)
+2271,Bonete,a mountain in the Andes in Argentina (22,546 feet high)
+2272,Bonfire_Night Guy_Fawkes_Night,effigies of Guy Fawkes are burned on this night
+2273,Bonhoeffer Dietrich_Bonhoeffer,German Lutheran theologian and pastor whose works concern Christianity in the modern world; an active opponent of Nazism, he was arrested and sent to Buchenwald and later executed (1906-1945)
+2274,Boniface Saint_Boniface St._Boniface Winfred Wynfrith Apostle_of_Germany,(Roman Catholic Church) Anglo-Saxon missionary who was sent to Frisia and Germany to spread the Christian faith; was martyred in Frisia (680-754)
+2275,Boniface_VIII Benedetto_Caetani,pope who declared that Catholic princes are subject to the pope in temporal as well as in theological matters (1235-1303)
+2276,Bonn,a city in western Germany on the Rhine River; was the capital of West Germany between 1949 and 1989
+2277,Bonney William_H._Bonney Billie_the_Kid,United States outlaw who was said to have killed 21 men (1859-1881)
+2278,Bontemps Arna_Wendell_Bontemps,United States writer (1902-1973)
+2279,Book_of_Common_Prayer,the Anglican service book of the Church of England; has had several revisions since the Reformation and is widely admired for the dignity and beauty of its language
+2280,Book_of_Mormon,a sacred text revealed to Joseph Smith in 1830 by an ancient prophet Mormon; supposedly a record of ancient peoples of America translated by Joseph Smith
+2281,Boole George_Boole,English mathematician; creator of Boolean algebra (1815-1864)
+2282,Boolean_logic Boolean_algebra,a system of symbolic logic devised by George Boole; used in computers
+2283,Boone Daniel_Boone,an American pioneer and guide and explorer (1734-1820)
+2284,Bootes,a constellation in the northern hemisphere near Ursa Major
+2285,Booth John_Wilkes_Booth,United States actor and assassin of President Lincoln (1838-1865)
+2286,Boott's_goldenrod,a variety of goldenrod
+2287,Boraginaceae family_Boraginaceae borage_family,a widely distributed family of plants distinguished by circinate flowers and nutlike fruit
+2288,Borago genus_Borago,perennial herbs of the Mediterranean region
+2289,Borassus genus_Borassus,palmyra
+2290,Bordeaux,a port city in southwestern France; a major center of the wine trade
+2291,Bordeaux Bordeaux_wine,any of several red or white wines produced around Bordeaux, France or wines resembling them
+2292,Bordeaux_mixture,antifungal agent consisting of a solution of copper sulphate and quicklime
+2293,Border_collie,developed in the area between Scotland and England usually having a black coat with white on the head and tip of tail used for herding both sheep and cattle
+2294,Border_terrier,small rough-coated terrier of British origin
+2295,Boreas,(Greek mythology) the god who personified the north wind; "Boreas was pictured as bearded and powerful and winged and draped against the cold"
+2296,Borges Jorge_Borges Jorge_Luis_Borges,Argentinian writer remembered for his short stories (1899-1986)
+2297,Borgia Cesare_Borgia,Italian cardinal and military leader; model for Machiavelli's prince (1475-1507)
+2298,Borgia Lucrezia_Borgia Duchess_of_Ferrara,Italian noblewoman and patron of the arts (1480-1519)
+2299,Born Max_Born,British nuclear physicist (born in Germany) honored for his contributions to quantum mechanics (1882-1970)
+2300,Bornean,a native or inhabitant of Borneo
+2301,Borneo Kalimantan,3rd largest island in the world; in the western Pacific to the north of Java; largely covered by dense jungle and rain forest; part of the Malay Archipelago
+2302,Borodin Aleksandr_Borodin Aleksandr_Porfirevich_Borodin,Russian composer (1833-1887)
+2303,Borodino,Napoleon defeated the Russians in 1812 in a pitched battle at a village in western Russia west of Moscow, but irreparably weakened his army
+2304,Borrelia_burgdorferi Lime_disease_spirochete,cause of Lyme disease; transmitted primarily by ticks of genus Ixodes
+2305,Bos genus_Bos,wild and domestic cattle; in some classifications placed in the subfamily Bovinae or tribe Bovini
+2306,Bosch Hieronymus_Bosch Jerom_Bos,Dutch painter (1450-1516)
+2307,Bose Satyendra_N._Bose Satyendra_Nath_Bose,Indian physicist who with Albert Einstein proposed statistical laws based on the indistinguishability of particles; led to the description of fundamental particles that later came to be known as bosons
+2308,Bose-Einstein_statistics,(physics) statistical law obeyed by a system of particles whose wave function is not changed when two particles are interchanged (the Pauli exclusion principle does not apply)
+2309,Boselaphus genus_Boselaphus,Indian antelopes: nilgais
+2310,Boskop_man,possible early Homo sapiens represented by a cranium found in the Transvaal; formerly considered a separate species
+2311,Bosnia,the northern part of Bosnia-Herzegovina
+2312,Bosnia_and_Herzegovina Republic_of_Bosnia_and_Herzegovina Bosna_i_Hercegovina Bosnia-Herzegovina Bosnia,a mountainous republic of south-central Europe; formerly part of the Ottoman Empire and then a part of Yugoslavia; voted for independence in 1992 but the mostly Serbian army of Yugoslavia refused to accept the vote and began ethnic cleansing in order to rid Bosnia of its Croats and Muslims
+2313,Bosporus,a strait connecting the Mediterranean and the Black Sea; separates the European and Asian parts of Turkey; an important shipping route
+2314,Bosporus_Bridge,a suspension bridge across the Bosporus at Istanbul
+2315,Boston Hub_of_the_Universe Bean_Town Beantown capital_of_Massachusetts,state capital and largest city of Massachusetts; a major center for banking and financial services
+2316,Boston_Harbor,the seaport at Boston
+2317,Boston_Tea_Party,demonstration (1773) by citizens of Boston who (disguised as Indians) raided three British ships in Boston harbor and dumped hundreds of chests of tea into the harbor; organized as a protest against taxes on tea
+2318,Boston_baked_beans,dried navy beans baked slowly with molasses and salt pork
+2319,Boston_bull Boston_terrier,small pug-faced American terrier breed having a smooth brindle or black coat with white markings
+2320,Boston_cream_pie,layer cake filled with custard
+2321,Boston_fern Nephrolepis_exaltata Nephrolepis_exaltata_bostoniensis,a sword fern with arching or drooping pinnate fronds; a popular houseplant
+2322,Boston_ivy Japanese_ivy Parthenocissus_tricuspidata,Asiatic vine with three-lobed leaves and purple berries
+2323,Boston_lettuce,lettuce with relatively soft leaves
+2324,Boston_rocker,a rocking chair that has a high spindle back and a decorative top panel
+2325,Bostonian,a native or resident of Boston
+2326,Boswell,a devoted admirer and recorder of another's words and deeds
+2327,Boswell James_Boswell,Scottish author noted for his biography of Samuel Johnson (1740-1795)
+2328,Boswellia genus_Boswellia,genus of trees of North Africa and India that yield incense
+2329,Boswellia_carteri,tree yielding an aromatic gum resin burned as incense
+2330,Bosworth_Field,the battle that ended the Wars of the Roses (1485); Richard III was killed and Henry Tudor was crowned as Henry VII
+2331,Botaurus genus_Botaurus,bitterns
+2332,Bothidae family_Bothidae,a family of fish of the order Heterosomata
+2333,Bothrops genus_Bothrops,fer-de-lance
+2334,Botrychium genus_Botrychium,grape fern; moonwort
+2335,Botswana Republic_of_Botswana,a landlocked republic in south-central Africa that became independent from British control in the 1960s
+2336,Botswana_monetary_unit,monetary unit in Botswana
+2337,Botticelli Sandro_Botticelli Alessandro_di_Mariano_dei_Filipepi,Italian painter of mythological and religious paintings (1444-1510)
+2338,Bougainville,the largest of the Solomon Islands; a province of Papua New Guinea
+2339,Bougainville Louis_Antoine_de_Bougainville,French explorer who circumnavigated the globe accompanied by scientists (1729-1811)
+2340,Bougainville_Trench,a depression in the floor of the Pacific Ocean between New Guinea and the Solomon Islands
+2341,Boulder,a town in north central Colorado; Rocky Mountains resort center and university town
+2342,Boulez Pierre_Boulez,French composer of serial music (born in 1925)
+2343,Bounty H.M.S._Bounty,a ship of the British navy; in 1789 part of the crew mutinied against their commander William Bligh and set him afloat in an open boat
+2344,Bourbon,a reactionary politician in the United States (usually from the South)
+2345,Bourbon,a member of the European royal family that ruled France
+2346,Bourbon Bourbon_dynasty,a European royal line that ruled in France (from 1589-1793) and Spain and Naples and Sicily
+2347,Bourgogne Burgundy,a former province of eastern France that is famous for its wines
+2348,Bourse,the stock exchange in Paris
+2349,Bouteloua genus_Bouteloua,forage grasses
+2350,Bouvet_Island,an island belonging to Norway in the South Atlantic near the Antarctic Circle
+2351,Bouvier_des_Flandres Bouviers_des_Flandres,rough-coated breed used originally in Belgium for herding and guarding cattle
+2352,Bouvines,in 1214 the French under Philip Augustus defeated a coalition formed against him in one of the greatest battles of the middle ages
+2353,Bouyei Buyi,a branch of the Tai languages
+2354,Bovidae family_Bovidae,true antelopes; cattle; oxen; sheep; goats
+2355,Bovinae subfamily_Bovinae,term not used technically; essentially coextensive with genus Bos: cattle; buffalo; and sometimes includes kudu
+2356,Bovini tribe_Bovini,term not used technically; essentially coextensive with genus Bos
+2357,Bowditch Nathaniel_Bowditch,United States mathematician and astronomer noted for his works on navigation (1773-1838)
+2358,Bowdler Thomas_Bowdler,English editor who in 1818 published an expurgated edition of the works of Shakespeare (1754-1825)
+2359,Bowdlerism,censorship in the form of prudish expurgation
+2360,Bowery,a street in Manhattan noted for cheap hotels frequented by homeless derelicts
+2361,Bowie Jim_Bowie James_Bowie,United States pioneer and hero of the Texas revolt against Mexico; he shared command of the garrison that resisted the Mexican attack on the Alamo where he died (1796-1836)
+2362,Bowie_knife,a stout hunting knife with a single edge
+2363,Bowiea genus_Bowiea,small genus of tropical African perennial bulbous herbs with deciduous twining stems; sometimes placed in family Hyacinthaceae
+2364,Bowling_Green,a town in southern Kentucky
+2365,Bowman's_capsule glomerular_capsule capsula_glomeruli,thin double membrane surrounding the glomerulus of a nephron
+2366,Boxer,a member of a nationalistic Chinese secret society that led an unsuccessful rebellion in 1900 against foreign interests in China
+2367,Boxing_Day,first weekday after Christmas
+2368,Boy_Scout,a boy who is a member of the Boy Scouts
+2369,Boy_Scouts,an international (but decentralized) movement started in 1908 in England with the goal of teaching good citizenship to boys
+2370,Boy_Scouts_of_America,a corporation that operates through a national council that charters local councils all over the United States; the purpose is character building and citizenship training
+2371,Boykinia genus_Boykinia,genus of perennial rhizomatous herbs with flowers in panicles; North America; Japan
+2372,Boyle Kay_Boyle,United States writer (1902-1992)
+2373,Boyle Robert_Boyle,Irish chemist who established that air has weight and whose definitions of chemical elements and chemical reactions helped to dissociate chemistry from alchemy (1627-1691)
+2374,Boyle's_law Mariotte's_law,the pressure of an ideal gas at constant temperature varies inversely with the volume
+2375,Boyne battle_of_Boyne,a battle in the War of the Grand Alliance in Ireland in 1690; William III defeated the deposed James II and so ended the Catholicism that had been reintroduced in England by the Stuarts
+2376,Bozeman,a town in southwestern Montana; gateway to Yellowstone National Park
+2377,Brabancon_griffon,a variety of Brussels griffon having a short smooth coat
+2378,Brachinus genus_Brachinus,bombardier beetles
+2379,Brachiopoda phylum_Brachiopoda,marine invertebrates that resemble mollusks
+2380,Brachychiton genus_Brachychiton,Australian trees (usually with swollen trunks)
+2381,Brachycome genus_Brachycome,mostly Australian herbs having basal or alternate leaves and loosely corymbose flower heads
+2382,Brachystegia genus_Brachystegia,small genus of tropical African timber trees having pale golden heartwood uniformly striped with dark brown or black:
+2383,Brachyura suborder_Brachyura,an order of crustaceans (including true crabs) having a reduced abdomen folded against the ventral surface
+2384,Bradbury Ray_Bradbury Ray_Douglas_Bradbury,United States writer of science fiction (born 1920)
+2385,Bradford William_Bradford,United States printer (born in England) whose press produced the first American prayer book and the New York City's first newspaper (1663-1752)
+2386,Bradley Omar_Bradley Omar_Nelson_Bradley,United States general who played an important role in the Allied victory in World War II (1893-1981)
+2387,Bradley Thomas_Bradley Tom_Bradley,United States politician who was elected the first black mayor of Los Angeles (1917-1998)
+2388,Bradley's_spleenwort Asplenium_bradleyi,a spleenwort of eastern to southern United States
+2389,Bradley_method_of_childbirth Bradley_method,a method that prepares a mother for natural childbirth by providing education and exercises and nutrition and techniques of breathing and relaxation (with the assistance of the father)
+2390,Bradstreet Anne_Bradstreet Anne_Dudley_Bradstreet,poet in colonial America (born in England) (1612-1672)
+2391,Brady James_Buchanan_Brady Diamond_Jim_Brady Diamond_Jim,United States financier noted for his love of diamonds and his extravagant lifestyle (1856-1917)
+2392,Brady Mathew_B._Brady,United States pioneer photographer famous for his portraits; was the official Union photographer for the American Civil War (1823-1896)
+2393,Bradypodidae family_Bradypodidae,a family of edentates comprising the true sloths
+2394,Bradypus genus_Bradypus,type genus of the Bradypodidae: three-toed sloths
+2395,Braga,an ancient city in northern Portugal
+2396,Bragg Braxton_Bragg,Confederate general during the American Civil War who was defeated by Grant in the battle of Chattanooga (1817-1876)
+2397,Bragi Brage,(Norse mythology) god of poetry and music; son of Odin
+2398,Brahe Tycho_Brahe,Danish astronomer whose observations of the planets provided the basis for Kepler's laws of planetary motion (1546-1601)
+2399,Brahma,the Creator; one of the three major deities in the later Hindu pantheon
+2400,Brahman Brahma Brahmin Bos_indicus,any of several breeds of Indian cattle; especially a large American heat and tick resistant greyish humped breed evolved in the Gulf States by interbreeding Indian cattle and now used chiefly for crossbreeding
+2401,Brahmana,prose works attached to the Samhitas instructing the brahmins to perform the very elaborate sacrificial rituals
+2402,Brahmanism Brahminism,the religious and social system of orthodox Hinduism
+2403,Brahmanism Brahminism,the religious beliefs of ancient India as prescribed in the sacred Vedas and Brahmanas and Upanishads
+2404,Brahmaputra Brahmaputra_River,an Asian river; flows into the Bay of Bengal
+2405,Brahmi,a script (probably adapted from the Aramaic about the 7th century BC) from which later Indian scripts developed
+2406,Brahms,the music of Brahms; "Brahms was included in the program"
+2407,Brahms Johannes_Brahms,German composer who developed the romantic style of both lyrical and classical music (1833-1897)
+2408,Brahui,a member of a Dravidian people living in Pakistan
+2409,Brahui,an isolated Dravidian language spoken by the Brahui in Pakistan
+2410,Braille Louis_Braille,French educator who lost his sight at the age of three and who invented a system of writing and printing for sightless people (1809-1852)
+2411,Brama genus_Brama,type genus of the Bramidae
+2412,Bramante Donato_Bramante Donato_d'Agnolo_Bramante,great Italian architect of the High Renaissance in Italy (1444-1514)
+2413,Bramidae family_Bramidae,deep-bodied percoid fishes of the open seas
+2414,Bramley's_Seedling,very large cooking apple
+2415,Branchiobdella genus_Branchiobdella,type genus of the Branchiobdellidae: a small worm that lives on the gills or surface of a crayfish attached by a sucker
+2416,Branchiobdellidae family_Branchiobdellidae,small annelid worms with the posterior end modified into an adhesive sucker; especially formerly regarded as modified leeches
+2417,Branchiopoda subclass_Branchiopoda,primitive aquatic mainly freshwater crustaceans: fairy shrimps; brine shrimps; tadpole shrimps; can shrimps; water fleas
+2418,Branchiostegidae family_Branchiostegidae,small family of marine fishes having covered gills
+2419,Branchiura order_Branchiura,copepods with suctorial mouthparts; parasitic on fishes
+2420,Brancusi Constantin_Brancusi,Romanian sculptor noted for abstractions of animal forms (1876-1957)
+2421,Brandenburg,the territory of an Elector (of the Holy Roman Empire) that expanded to become the kingdom of Prussia in 1701
+2422,Brandt Willy_Brandt,German statesman who as chancellor of West Germany worked to reduce tensions with eastern Europe (1913-1992)
+2423,Branta genus_Branta,wild geese
+2424,Braque Georges_Braque,French painter who led the cubist movement (1882-1963)
+2425,Brasenia genus_Brasenia,alternatively, a member of the family Nymphaeaceae
+2426,Brasilia Brazilian_capital capital_of_Brazil,the capital of Brazil; a city built on the central plateau and inaugurated in 1960
+2427,Brasov,a city in central Romania in the foothills of the Transylvanian Alps
+2428,Brassia genus_Brassia,genus of tropical American epiphytic orchids having striking axillary racemes of yellow to green spiderlike flowers with long slender sepals and warty lips: spider orchids
+2429,Brassica genus_Brassica,mustards: cabbages; cauliflowers; turnips; etc.
+2430,Bratislava capital_of_Slovakia Pressburg Pozsony,capital and largest city of Slovakia
+2431,Brattleboro,a town in southeastern Vermont on the Connecticut River
+2432,Braun Eva_Braun,the German mistress of Adolf Hitler (1910-1945)
+2433,Braun von_Braun Wernher_von_Braun Wernher_Magnus_Maximilian_von_Braun,United States rocket engineer (born in Germany where he designed a missile used against England); he led the United States Army team that put the first American satellite into space (1912-1977)
+2434,Braun's_holly_fern prickly_shield_fern Polystichum_braunii,North American fern whose more or less evergreen leathery fronds are covered with pale brown chafflike scales
+2435,Braunschweig Brunswick,a city in central Germany
+2436,Braxton-Hicks_contraction false_labor,painless contractions of the muscles of the uterus that continue throughout pregnancy with increasing frequency
+2437,Brazil Federative_Republic_of_Brazil Brasil,the largest Latin American country and the largest Portuguese speaking country in the world; located in the central and northeastern part of South America; world's leading coffee exporter
+2438,Brazilian,a native or inhabitant of Brazil
+2439,Brazilian_guava Psidium_guineense,South American tree having fruit similar to the true guava
+2440,Brazilian_monetary_unit,monetary unit in Brazil
+2441,Brazilian_pepper_tree Schinus_terebinthifolius,small Brazilian evergreen resinous tree or shrub having dark green leaflets and white flowers followed by bright red fruit; used as a street tree and lawn specimen
+2442,Brazilian_rosewood caviuna_wood jacaranda Dalbergia_nigra,an important Brazilian timber tree yielding a heavy hard dark-colored wood streaked with black
+2443,Brazilian_trumpeter Psophia_crepitans,trumpeter of Brazil and Guiana; often kept to protect poultry in Brazil
+2444,Brazos Brazos_River,a river that rises in Mexico and flows across Texas into the Gulf of Mexico
+2445,Brazzaville,the capital and largest city of the Republic of the Congo
+2446,Brecht Bertolt_Brecht,German dramatist and poet who developed a style of epic theater (1898-1956)
+2447,Breed's_Hill,a hill in Charlestown that was the site of the battle of Bunker Hill in 1775
+2448,Bremen,a city of northwestern Germany linked by the Weser River to the port of Bremerhaven and the North Sea; in the Middle Ages it was a leading member of the Hanseatic League
+2449,Bremerhaven,a port city in northwestern Germany at the mouth of the Weser River on the North Sea; has a deep natural harbor and is an important shipping center
+2450,Bren Bren_gun,a submachine gun operated by gas pressure; used by the British in World War II
+2451,Brenner_Pass,an Alpine mountain pass connecting Innsbruck in Austria with Bolzano in Italy that has long been a route for trade and for invasions
+2452,Brer_Rabbit,the fictional character of a rabbit who appeared in tales supposedly told by Uncle Remus and first published in 1880
+2453,Brescia,an ancient Italian city in central Lombardy
+2454,Brest,a port city in northwestern France (in Brittany); the chief naval station of France
+2455,Bretagne Brittany Breiz,a former province of northwestern France on a peninsula between the English Channel and the Bay of Biscay
+2456,Breton,a native or inhabitant of Brittany (especially one who speaks the Breton language)
+2457,Breton,a Celtic language of Brittany
+2458,Breuer Marcel_Lajos_Breuer,United States architect (born in Hungary) who was associated with the Bauhaus in the 1920's (1902-1981)
+2459,Brevoortia genus_Brevoortia,menhaden
+2460,Brezhnev Leonid_Brezhnev Leonid_Ilyich_Brezhnev,Soviet statesman who became president of the Soviet Union (1906-1982)
+2461,Brickellia genus_Brickelia,genus of herbs of southwestern America having usually creamy florets followed by one-seeded fruits in a prominent bristly sheath
+2462,Bridgeport,a port in southwestern Connecticut on Long Island Sound
+2463,Bridges Harry_Bridges,United States labor leader who organized the longshoremen (1901-1990)
+2464,Bridget Saint_Bridget St._Bridget Brigid Saint_Brigid St._Brigid Bride Saint_Bride St._Bride,Irish abbess; a patron saint of Ireland (453-523)
+2465,Bridgetown capital_of_Barbados,capital of Barbados; a port city on the southwestern coast of Barbados
+2466,Brie,soft creamy white cheese; milder than Camembert
+2467,Brighton,a city in East Sussex in southern England that is a popular resort; site of the University of Sussex
+2468,Brigit,Celtic goddess of fire and fertility and agriculture and household arts and wisdom; later associated with Saint Bridget
+2469,Brihaspati,personification of the power of ritual devotion
+2470,Brindisi,a port city in southeastern Apulia in Italy; a center for the Crusades in the Middle Ages
+2471,Brinell_number,measure of the hardness of a material
+2472,Brinton Daniel_Garrison_Brinton,United States anthropologist who was the first to attempt a systematic classification of Native American languages (1837-1899)
+2473,Brioschi,an antacid
+2474,Brisbane,capital and largest city of Queensland state; located in the southeastern corner of Queensland on the Pacific; settled by British as a penal colony; 3rd largest city in Australia
+2475,Bristol,an industrial city and port in southwestern England near the mouth of the River Avon
+2476,Bristol_Channel,an inlet of the Atlantic Ocean between southern Wales and southwestern England
+2477,Britannia_metal,an alloy similar to pewter
+2478,British British_people Brits,the people of Great Britain
+2479,British_Cabinet,the senior ministers of the British government
+2480,British_Columbia,a province in western Canada
+2481,British_Commonwealth Commonwealth_of_Nations,an association of nations consisting of the United Kingdom and several former British colonies that are now sovereign states but still pay allegiance to the British Crown
+2482,British_Crown,the symbol of the power of the British monarchy; "members of the British Commonwealth owe allegiance to the British Crown"
+2483,British_East_Africa,the former British territories of eastern Africa, including Kenya, Tanganyika, Uganda, and Zanzibar
+2484,British_Empire,a former empire consisting of Great Britain and all the territories under its control; reached its greatest extent at the end of World War I; it included the British Isles, British West Indies, Canada, British Guiana; British West Africa, British East Africa, India, Australia, New Zealand; "the sun never sets on the British Empire"
+2485,British_Imperial_System English_system British_system,a system of weights and measures based on the foot and pound and second and pint
+2486,British_Isles,Great Britain and Ireland and adjacent islands in the north Atlantic
+2487,British_Labour_Party Labour_Party Labour Labor,a political party formed in Great Britain in 1900; characterized by the promotion of labor's interests and formerly the socialization of key industries
+2488,British_Parliament,the British legislative body
+2489,British_Virgin_Islands,more than 40 northeastern Virgin Islands (15 inhabited); a dependent territory of the United Kingdom
+2490,British_West_Africa,the former British territories of western Africa, including Nigeria, Cameroon, Gambia, Togo, Sierra Leone, and the Gold Coast
+2491,British_West_Indies,the islands in the West Indies that were formerly under British control, including the Bahamas, Saint Lucia, Antigua, Grenada, Jamaica, Barbados, and Trinidad
+2492,British_capacity_unit Imperial_capacity_unit,a unit of measure for capacity officially adopted in the British Imperial System; British units are both dry and wet
+2493,British_empiricism,the predominant philosophical tradition in Great Britain since the 17th century
+2494,British_monetary_unit,monetary unit in Great Britain
+2495,British_pound pound British_pound_sterling pound_sterling quid,the basic unit of money in Great Britain and Northern Ireland; equal to 100 pence
+2496,British_shilling shilling bob,a former monetary unit in Great Britain
+2497,British_thermal_unit BTU B.Th.U.,a unit of heat equal to the amount of heat required to raise one pound of water one degree Fahrenheit at one atmosphere pressure; equivalent to 251.997 calories
+2498,Britisher Briton Brit,a native or inhabitant of Great Britain
+2499,Briton,an inhabitant of southern Britain prior to the Anglo-Saxon invasions
+2500,Brittany_spaniel,tall active short-tailed French breed of bird dog having a usually smooth orange- or liver-and-white coat
+2501,Britten Benjamin_Britten Edward_Benjamin_Britten Lord_Britten_of_Aldeburgh,major English composer of the 20th century; noted for his operas (1913-1976)
+2502,Brix_scale,a system for measuring the concentration of sugar solutions
+2503,Brno Brunn,an industrial city in Moravia in Czech Republic to the southeast of Prague
+2504,Broadway Great_White_Way,a street in Manhattan that passes through Times Square; famous for its theaters
+2505,Brobdingnag,a land imagined by Jonathan Swift where everything was enormous
+2506,Broca Pierre-Paul_Broca,French anthropologist who studied the craniums and brains of different people; remembered for his discovery that articulate speech depends on an area of the brain now known as Broca's area (1824-1880)
+2507,Broca's_area Broca's_center Broca's_gyrus Broca's_convolution convolution_of_Broca,the motor speech center in the left hemisphere of the brain in most people
+2508,Brockhouse Bertram_Brockhouse,Canadian physicist who bounced neutron beams off of atomic nuclei to study the structure of matter (1918-2003)
+2509,Brodmann's_area,one of the cortical areas mapped out on the basis of its cytoarchitecture
+2510,Broglie de_Broglie Louis_Victor_de_Broglie,French nuclear physicist who generalized the wave-particle duality by proposing that particles of matter exhibit wavelike properties (1892-1987)
+2511,Bromelia,the type genus of the family Bromeliaceae which includes tropical American plants with deeply cleft calyx
+2512,Bromeliaceae family_Bromeliaceae pineapple_family,a family of tropical American plants of order Xyridales including several (as the pineapple) of economic importance
+2513,Bromo-seltzer,an antacid
+2514,Bromus genus_Bromus,a genus of grasses of the family Gramineae
+2515,Bronte Anne_Bronte,English novelist; youngest of three Bronte sisters (1820-1849)
+2516,Bronte Charlotte_Bronte,English novelist; oldest of three Bronte sisters (1816-1855)
+2517,Bronte Emily_Bronte Emily_Jane_Bronte Currer_Bell,English novelist; one of three Bronte sisters (1818-1848)
+2518,Bronte_sisters,a 19th century family of three sisters who all wrote novels
+2519,Bronx,a borough of New York City
+2520,Bronx-Whitestone_Bridge,a suspension bridge across the East River in New York City
+2521,Bronze_Age,(archeology) a period between the Stone and Iron Ages, characterized by the manufacture and use of bronze tools and weapons
+2522,Bronze_Star_Medal Bronze_Star,a United States military decoration awarded for meritorious service (except in aerial flight)
+2523,Brooke Rupert_Brooke,English lyric poet (1887-1915)
+2524,Brooklyn,a borough of New York City
+2525,Brooklyn_Bridge,a suspension bridge across the East River in New York City; opened in 1883
+2526,Brooks Van_Wyck_Brooks,United States literary critic and historian (1886-1963)
+2527,Brosmius genus_Browmius,cusk
+2528,Brother,(Roman Catholic Church) a title given to a monk and used as form of address; "a Benedictine Brother"
+2529,Brotulidae family_Brotulidae,chiefly deep-sea fishes related to the Ophidiidae
+2530,Broussonetia genus_Broussonetia,paper mulberry
+2531,Brown John_Brown,abolitionist who was hanged after leading an unsuccessful raid at Harper's Ferry, Virginia (1800-1859)
+2532,Brown Robert_Brown,Scottish botanist who first observed the movement of small particles in fluids now known a Brownian motion (1773-1858)
+2533,Brown_Swiss,large hardy brown breed of dairy cattle from Switzerland
+2534,Brown_University Brown,a university in Rhode Island
+2535,Browne Charles_Farrar_Browne Artemus_Ward,United States writer of humorous tales of an itinerant showman (1834-1867)
+2536,Browne Hablot_Knight_Browne Phiz,English illustrator of several of Dickens' novels (1815-1882)
+2537,Brownian_movement Brownian_motion pedesis,the random motion of small particles suspended in a gas or liquid
+2538,Brownie,a junior Girl Scout
+2539,Browning Elizabeth_Barrett_Browning,English poet best remembered for love sonnets written to her husband Robert Browning (1806-1861)
+2540,Browning John_M._Browning John_Moses_Browning,United States inventor of firearms (especially automatic pistols and repeating rifles and a machine gun called the Peacemaker) (1855-1926)
+2541,Browning Robert_Browning,English poet and husband of Elizabeth Barrett Browning noted for his dramatic monologues (1812-1889)
+2542,Browning_automatic_rifle BAR,a portable .30 caliber automatic rifle operated by gas pressure and fed by cartridges from a magazine; used by United States troops in World War I and in World War II and in the Korean War
+2543,Browning_machine_gun Peacemaker,a belt-fed machine gun capable of firing more than 500 rounds per minute; used by United States troops in World War II and the Korean War
+2544,Brownshirt,a member of the Nazi SA which wore brown uniforms
+2545,Brownsville,a city in southern Texas on the Rio Grande near its mouth into the Gulf of Mexico; has a channel that accommodates oceangoing ships
+2546,Bruce David_Bruce Sir_David_Bruce,Australian physician and bacteriologist who described the bacterium that causes undulant fever or brucellosis (1855-1931)
+2547,Bruce Robert_the_Bruce Robert_I,king of Scotland from 1306 to 1329; defeated the English army under Edward II at Bannockburn and gained recognition of Scottish independence (1274-1329)
+2548,Brucella,an aerobic Gram-negative coccobacillus that causes brucellosis; can be used as a bioweapon
+2549,Bruch Max_Bruch,German composer (1838-1920)
+2550,Bruchidae family_Bruchidae,seed beetles
+2551,Bruchus genus_Bruchus,type genus of the Bruchidae
+2552,Bruckenthalia genus_Bruckenthalia,a genus containing only one species: spike heath
+2553,Bruckner Anton_Bruckner,Austrian organist and composer of romantic music (1824-1896)
+2554,Brueghel Breughel Bruegel Pieter_Brueghel Pieter_Breughel Pieter_Bruegel Breughel_the_Elder Pieter_Brueghel_the_Elder,Flemish painter of landscapes (1525-1569)
+2555,Bruges City_of_Bridges,a city in northwestern Belgium that is connected by canal to the North Sea; in the 13th century it was a leading member of the Hanseatic League; the old city (known as the City of Bridges) is a popular tourist attraction
+2556,Brugmansia genus_Brugmansia,includes some plants often placed in the genus Datura: angel's trumpets
+2557,Brule,a member of a group of Siouan people who constituted a division of the Teton Sioux
+2558,Brumaire,second month of the Revolutionary calendar (October and November); the month of mist
+2559,Brummell George_Bryan_Brummell Beau_Brummell,English dandy who was a fashion leader during the Regency (1778-1840)
+2560,Brummie Brummy,a native or resident of Birmingham, England
+2561,Brunanburh battle_of_Brunanburh,a battle in 937 when Athelstan defeated the Scots
+2562,Brunei Negara_Brunei_Darussalam,a sultanate in northwestern Borneo; became independent of Great Britain in 1984
+2563,Brunei_dollar,the basic unit of money in Brunei
+2564,Bruneian,a native or inhabitant of Brunei
+2565,Brunelleschi Filippo_Brunelleschi,Florentine architect who was the first great architect of the Italian Renaissance (1377-1446)
+2566,Brunfelsia genus_Brunfelsia,genus of tropical American shrubs grown for their flowers followed by fleshy berrylike fruits
+2567,Brunhild Brunnhilde Brynhild,a Valkyrie or a queen in the Nibelungenlied who loved the hero Siegfried; when he deceived her she had him killed and then committed suicide
+2568,Bruno Giordano_Bruno,Italian philosopher who used Copernican principles to develop a pantheistic monistic philosophy; condemned for heresy by the Inquisition and burned at the stake (1548-1600)
+2569,Bruno Saint_Bruno St._Bruno,(Roman Catholic Church) a French cleric (born in Germany) who founded the Carthusian order in 1084 (1032-1101)
+2570,Brunswick,a university town in southwestern Maine
+2571,Brunswick,a town in southeast Georgia near the Atlantic coast; a port of entry
+2572,Brunswick_stew,spicy southern specialty: chicken (or small game) with corn and tomatoes and lima beans and okra and onions and potatoes
+2573,Brussels_carpet,a carpet with a strong linen warp and a heavy pile of colored woolen yarns drawn up in uncut loops to form a pattern
+2574,Brussels_lace,fine lace with a raised or applique design
+2575,Brutus Marcus_Junius_Brutus,statesman of ancient Rome who (with Cassius) led a conspiracy to assassinate Julius Caesar (85-42 BC)
+2576,Bruxelles Brussels Belgian_capital capital_of_Belgium,the capital and largest city of Belgium; seat of the North Atlantic Treaty Organization
+2577,Brya genus_Brya,genus of prickly shrubs and small trees of the Caribbean region; source of a durable hardwood
+2578,Bryaceae family_Bryaceae,a family of acrocarpous mosses
+2579,Bryales order_Bryales,category used in some classification systems for mosses having the spore case separated from the capsule wall by a hollow intercellular space
+2580,Bryan,a town of east central Texas
+2581,Bryan William_Jennings_Bryan Great_Commoner Boy_Orator_of_the_Platte,United States lawyer and politician who advocated free silver and prosecuted John Scopes (1925) for teaching evolution in a Tennessee high school (1860-1925)
+2582,Bryce_Canyon_National_Park,a national park in Utah having multicolored rock erosions
+2583,Bryophyta division_Bryophyta,a division of nonflowering plants characterized by rhizoids rather than true roots and having little or no organized vascular tissue and showing alternation of generations between gamete-bearing forms and spore-bearing forms; comprises true mosses (Bryopsida) and liverworts (Hepaticopsida) and hornworts (Anthoceropsida)
+2584,Bryopsida class_Bryopsida Musci class_Musci,true mosses: bryophytes having leafy rather than thalloid gametophytes: comprises orders Andreaeales; Bryales; Dicranales; Eubryales; Sphagnales
+2585,Bryozoa phylum_Bryozoa polyzoa,marine or freshwater animals that form colonies of zooids
+2586,Brythonic Brittanic,a southern group of Celtic languages
+2587,Bryum genus_Bryum,type genus of the Bryaceae: mosses distinguished by mostly erect and tufted gametophytes and symmetrical short-necked capsules
+2588,Bubalus genus_Bubalus tribe_Bubalus,in some classification systems included in genus Bos; water buffaloes
+2589,Buber Martin_Buber,Israeli religious philosopher (born in Austria); as a Zionist he promoted understanding between Jews and Arabs; his writings affected Christian thinkers as well as Jews (1878-1965)
+2590,Bubo genus_Bubo,a genus of Strigidae
+2591,Bubulcus genus_Bubulcus,small white egrets
+2592,Buccinidae family_Buccinidae,whelks
+2593,Bucconidae family_Bucconidae,puffbirds
+2594,Bucephala genus_Bucephala,buffleheads and goldeneyes
+2595,Buceros genus_Buceros,type genus of the family Bucerotidae
+2596,Bucerotidae family_Bucerotidae,hornbills
+2597,Buchanan James_Buchanan President_Buchanan,15th President of the United States (1791-1868)
+2598,Bucharest Bucharesti Bucuresti capital_of_Romania,national capital and largest city of Romania in southeastern Romania
+2599,Buchenwald,a Nazi concentration camp for Jews in World War II that was located in central Germany
+2600,Buchloe genus_Buchloe,buffalo grass
+2601,Buchner Eduard_Buchner,German organic chemist who studied alcoholic fermentation and discovered zymase (1860-1917)
+2602,Buck Pearl_Buck Pearl_Sydenstricker_Buck,United States author whose novels drew on her experiences as a missionary in China (1892-1973)
+2603,Buckingham_Palace,the London residence of the British sovereign
+2604,Budapest Hungarian_capital capital_of_Hungary,capital and largest city of Hungary; located on the Danube River in north-central Hungary
+2605,Buddha,one who has achieved a state of perfect enlightenment
+2606,Buddha Siddhartha Gautama Gautama_Siddhartha Gautama_Buddha,founder of Buddhism (c 563-483 BC)
+2607,Buddhism,a religion represented by the many groups (especially in Asia) that profess various forms of the Buddhist doctrine and that venerate Buddha
+2608,Buddhism,the teaching of Buddha that life is permeated with suffering caused by desire, that suffering ceases when desire ceases, and that enlightenment obtained through right conduct and wisdom and meditation releases one from desire and suffering and rebirth
+2609,Buddhist,one who follows the teachings of Buddha
+2610,Budge Don_Budge John_Donald_Budge,United States tennis player who in 1938 was the first to win the Australian and French and English and United States singles championship in the same year (1915-2000)
+2611,Budorcas genus_Budorcas,gnu goats
+2612,Buena_Vista,a pitched battle in the Mexican War in 1847; United States forces under Zachary Taylor defeated the Mexican forces under Santa Anna at a locality in northern Mexico
+2613,Buenos_Aires capital_of_Argentina,capital and largest city of Argentina; located in eastern Argentina near Uruguay; Argentina's chief port and industrial and cultural center
+2614,Buffalo,a city on Lake Erie in western New York (near Niagara Falls)
+2615,Bufonidae family_Bufonidae,true toads
+2616,Buganda,a state of Uganda and site of a former Bantu kingdom
+2617,Bujumbura Usumbura capital_of_Burundi,the capital and largest city of Burundi; "Usumbura was renamed Bujumbura when Burundi became independent in 1962"
+2618,Bukharin Nikolai_Ivanovich_Bukharin,Bolshevik leader in Russia who advocated gradual collectivism of the farms; was executed in a purge by Stalin (1888-1938)
+2619,Bulawayo,industrial city in southwestern Zimbabwe
+2620,Bulgaria Republic_of_Bulgaria,a republic in the eastern part of the Balkan Peninsula in southeastern Europe
+2621,Bulgarian,a native or inhabitant of Bulgaria
+2622,Bulgarian,a Slavic language spoken in Bulgaria
+2623,Bulgarian_monetary_unit,monetary unit in Bulgaria
+2624,Bull_Run,a creek in northeastern Virginia where two battles were fought in the American Civil War
+2625,Bull_Run Battle_of_Bull_Run,either of two battles during the American Civil War (1861 and 1862); Confederate forces defeated the Federal army in both battles
+2626,Bullfinch Charles_Bullfinch,United States architect who designed the Capitol Building in Washington which served as a model for state capitols throughout the United States (1763-1844)
+2627,Bullock's_oriole Icterus_galbula_bullockii,western subspecies of northern oriole
+2628,Bulnesia genus_Bulnesia,palo santo
+2629,Bultmann Rudolf_Bultmann Rudolf_Karl_Bultmann,a Lutheran theologian in Germany (1884-1976)
+2630,Bumelia genus_Bumelia,deciduous or evergreen American shrubs small trees having very hard wood and milky latex
+2631,Bunche Ralph_Bunche Ralph_Johnson_Bunche,United States diplomat and United Nations official (1904-1971)
+2632,Bundesbank,the central bank of Germany
+2633,Bungarus genus_Bungarus,kraits
+2634,Bunker_Buster Guided_Bomb_Unit-28 GBU-28,a 5,000 pound laser-guided bomb that can be programmed to penetrate to a given depth before exploding; used to penetrate hardened underground facilities
+2635,Bunker_Hill battle_of_Bunker_Hill,the first important battle of the American War of Independence (1775) which was fought at Breed's Hill; the British defeated the colonial forces
+2636,Bunsen Robert_Bunsen Robert_Wilhelm_Bunsen,German chemist who with Kirchhoff pioneered spectrum analysis but is remembered mainly for his invention of the Bunsen burner (1811-1899)
+2637,Bunuel Luis_Bunuel,Spanish film director (1900-1983)
+2638,Bunyan John_Bunyan,English preacher and author of an allegorical novel, Pilgrim's Progress (1628-1688)
+2639,Bunyan Paul_Bunyan,a legendary giant lumberjack of the north woods of the United States and Canada; "Paul Bunyan had a blue ox named Babe"; "the lakes of Minnesota began when Paul Bunyan and Babe's footprints filled with water"
+2640,Bunyaviridae,a large family of arboviruses that affect a wide range of hosts (mainly vertebrates and arthropods)
+2641,Buphthalmum genus_Buphthalmum,oxeye
+2642,Bura Pabir,a Chadic language spoken south of Lake Chad
+2643,Burbage Richard_Burbage,English actor who was the first to play the leading role in several of Shakespeare's tragedies (1567-1619)
+2644,Burbank Luther_Burbank,United States horticulturist who developed many new varieties of fruits and vegetables and flowers (1849-1926)
+2645,Burberry,a lightweight belted raincoat typically made of tan gabardine with a distinctive tartan lining; named for the original manufacturer
+2646,Bureau_of_Alcohol_Tobacco_and_Firearms ATF,the law enforcement and tax collection agency of the Treasury Department that enforces federal laws concerning alcohol and tobacco products and firearms and explosives and arson
+2647,Bureau_of_Customs Customs_Bureau Customs_Service USCB,the agency of the Treasury Department that enforces import tariffs
+2648,Bureau_of_Diplomatic_Security DS,the bureau in the State Department that is responsible for the security of diplomats and embassies overseas
+2649,Bureau_of_Engraving_and_Printing,the agency of the Treasury Department that produces currency
+2650,Bureau_of_Intelligence_and_Research INR,an agency that is the primary source in the State Department for interpretive analyses of global developments and focal point for policy issues and activities of the Intelligence Community
+2651,Bureau_of_Justice_Assistance BJA,the bureau in the Department of Justice that assists local criminal justice systems to reduce or prevent crime and violence and drug abuse
+2652,Bureau_of_Justice_Statistics BJS,the agency in the Department of Justice that is the primary source of criminal justice statistics for federal and local policy makers
+2653,Bureau_of_the_Census Census_Bureau,the bureau of the Commerce Department responsible for taking the census; provides demographic information and analyses about the population of the United States
+2654,Burger Warren_Burger Warren_E._Burger Warren_Earl_Burger,United States jurist appointed chief justice of the United States Supreme Court by Richard Nixon (1907-1995)
+2655,Burgess Anthony_Burgess,English writer of satirical novels (1917-1993)
+2656,Burgoyne John_Burgoyne Gentleman_Johnny,British general in the American Revolution who captured Fort Ticonderoga but lost the battle of Saratoga in 1777 (1722-1792)
+2657,Burgundy Burgundy_wine,red table wine from the Burgundy region of France (or any similar wine made elsewhere)
+2658,Burhinidae family_Burhinidae,large wading birds resembling the plovers: stone curlews
+2659,Burhinus genus_Burhinus,type genus of the Burhinidae: stone curlews
+2660,Burk Martha_Jane_Burk Burke Martha_Jane_Burke Calamity_Jane,United States frontierswoman and legendary figure of the Wild West noted for her marksmanship (1852-1903)
+2661,Burke Edmund_Burke,British statesman famous for his oratory; pleaded the cause of the American colonists in British Parliament and defended the parliamentary system (1729-1797)
+2662,Burkina_Faso Upper_Volta,a desperately poor landlocked country in western Africa; was formerly Upper Volta under French rule but gained independence in 1960
+2663,Burkina_Faso_franc,the basic unit of money in Burkina Faso
+2664,Burlington,the largest city in Vermont; located in northwestern Vermont on Lake Champlain; site of the University of Vermont
+2665,Burma_padauk Burmese_rosewood Pterocarpus_macrocarpus,tree of India and Burma yielding a wood resembling mahogany
+2666,Burmannia genus_Burmannia,type genus of the Burmanniaceae; slender herbs of warm regions with leaves resembling scales and flowers with a three-angled or three-winged perianth
+2667,Burmanniaceae family_Burmanniaceae,family of chiefly tropical herbs with basal leaves like bracts and small flowers
+2668,Burmeisteria genus_Burmeisteria,a genus of Dasypodidae
+2669,Burmese,a native or inhabitant of Myanmar
+2670,Burmese,the official language of Burma
+2671,Burmese_cat,a short-haired breed with body similar to the Siamese cat but having a solid dark brown or grey coat
+2672,Burnett Frances_Hodgson_Burnett Frances_Eliza_Hodgson_Burnett,United States writer (born in England) remembered for her novels for children (1849-1924)
+2673,Burnham Daniel_Hudson_Burnham,United States architect who designed the first important skyscraper with a skeleton (1846-1912)
+2674,Burns George_Burns Nathan_Birnbaum,United States comedian and film actor (1896-1996)
+2675,Burns Robert_Burns,celebrated Scottish poet (1759-1796)
+2676,Burnside A._E._Burnside Ambrose_Everett_Burnside,United States general in the American Civil War who was defeated by Robert E. Lee at the Battle of Fredericksburg (1824-1881)
+2677,Burr Aaron_Burr,United States politician who served as vice president under Jefferson; he mortally wounded his political rival Alexander Hamilton in a duel and fled south (1756-1836)
+2678,Burroughs Edgar_Rice_Burroughs,United States novelist and author of the Tarzan stories (1875-1950)
+2679,Burroughs William_Burroughs William_S._Burroughs William_Seward_Burroughs,United States writer noted for his works portraying the life of drug addicts (1914-1997)
+2680,Burroughs William_Seward_Burroughs,United States inventor who patented the first practical adding machine (1855-1898)
+2681,Bursa Brusa,a city in northwestern Turkey
+2682,Bursera genus_Bursera,type genus of Burseraceae; tropical and subtropical American shrubs and trees some yielding timber and gum elemi
+2683,Burseraceae family_Burseraceae torchwood_family,resinous or aromatic chiefly tropical shrubs or trees
+2684,Burt Cyril_Burt Cyril_Lodowic_Burt,English psychologist whose studies of twins were later said to have used fabricated data (1883-1971)
+2685,Burton,a strong dark English ale
+2686,Burton Richard_Burton,Welsh film actor who often co-starred with Elizabeth Taylor (1925-1984)
+2687,Burton Richard_Burton Sir_Richard_Burton Sir_Richard_Francis_Burton,English explorer who with John Speke was the first European to explore Lake Tanganyika (1821-1890)
+2688,Burundi Republic_of_Burundi,a landlocked republic in east central Africa on the northeastern shore of Lake Tanganyika
+2689,Burundi_franc,the basic unit of money in Burundi
+2690,Burundian,a native or inhabitant of Burundi
+2691,Bush George_Bush George_H.W._Bush George_H._W._Bush George_Herbert_Walker_Bush President_Bush,vice president under Reagan and 41st President of the United States (born in 1924)
+2692,Bush George_Bush George_W._Bush George_Walker_Bush President_Bush President_George_W._Bush Dubyuh Dubya,43rd President of the United States; son of George Herbert Walker Bush (born in 1946)
+2693,Bush Vannevar_Bush,United States electrical engineer who designed an early analogue computer and who led the scientific program of the United States during World War II (1890-1974)
+2694,Bush_administration,the executive under President George H. W. Bush
+2695,Bush_administration,the executive under President George W. Bush
+2696,Bushido,traditional code of the Japanese samurai which stressed courage and loyalty and self-discipline and simple living
+2697,Bushman Khoisan,nomadic hunters and gatherers who live in southern Africa
+2698,Bushnell David_Bushnell Father_of_the_Submarine,American inventor who in 1775 designed a man-propelled submarine that was ineffectual but subsequently earned him recognition as a submarine pioneer (1742-1824)
+2699,Butea genus_Butea,genus of East Indian trees or shrubs: dhak
+2700,Buteo genus_Buteo,broad-winged soaring hawks
+2701,Butler Samuel_Butler,English novelist who described a fictitious land he called Erewhon (1835-1902)
+2702,Butler Samuel_Butler,English poet (1612-1680)
+2703,Butte,a town in southwestern Montana; center for mining copper
+2704,Butterfield William_Butterfield,English architect who designed many churches (1814-1900)
+2705,Buxaceae family_Buxaceae box_family,widely distributed evergreen shrubs and trees
+2706,Buxus genus_Buxus,type genus of the Buxaceae
+2707,Buzzards_Bay,an inlet of the Atlantic Ocean in southeastern Massachusetts
+2708,Byblos,an ancient Mediterranean seaport that was a thriving city state in Phoenicia during the second millennium BC; was the chief port for the export of papyrus; located in Lebanon to the north of Beirut; now partially excavated
+2709,Bydgoszcz Bromberg,an industrial city and river port in northern Poland
+2710,Byelorussian Belorussian White_Russian,a native or inhabitant of Byelorussia
+2711,Byrd Richard_E._Byrd Richard_Evelyn_Byrd Admiral_Byrd,explorer and United States naval officer; led expeditions to explore Antarctica (1888-1957)
+2712,Byrd William_Byrd,English organist and composer of church music; master of 16th century polyphony; was granted a monopoly in music printing with Thomas Tallis (1543-1623)
+2713,Byron Lord_George_Gordon_Byron Sixth_Baron_Byron_of_Rochdale,English romantic poet notorious for his rebellious and unconventional lifestyle (1788-1824)
+2714,Byzantine,a native or inhabitant of Byzantium or of the Byzantine Empire
+2715,Byzantine_Empire Byzantium Eastern_Roman_Empire,a continuation of the Roman Empire in the Middle East after its division in 395
+2716,Byzantine_architecture,the style of architecture developed in the Byzantine Empire developed after the 5th century; massive domes with square bases and round arches and spires and much use of mosaics
+2717,Byzantium,an ancient city on the Bosporus founded by the Greeks; site of modern Istanbul; in 330 Constantine I rebuilt the city and called it Constantinople and made it his capital
+2718,C,a general-purpose programing language closely associated with the UNIX operating system
+2719,C,(music) the keynote of the scale of C major
+2720,C c,the 3rd letter of the Roman alphabet
+2721,C-clamp,a clamp in the shape of the letter C
+2722,C-horizon C_horizon,beneath the B-horizon and above the bedrock; consisting of weathered rock
+2723,C-ration,a canned field ration issued by the United States Army
+2724,C-reactive_protein CRP,a byproduct of inflammation; a globulin that is found in the blood in some cases of acute inflammation
+2725,CD-R compact_disc_recordable CD-WO compact_disc_write-once,a compact disc on which you can write only once and thereafter is read-only memory
+2726,CD-ROM compact_disc_read-only_memory,a compact disk that is used with a computer (rather than with an audio system); a large amount of digital information can be stored and accessed but it cannot be altered by the user
+2727,CD-ROM_drive,a drive that is connected to a computer and on which a CD-ROM can be `played'
+2728,CD_drive,a drive that reads a compact disc and that is connected to an audio system
+2729,CD_player,a stand-alone piece of electronic equipment that either has its own display or attaches to a television set
+2730,CN_Tower,a tower in Toronto; 1815 feet tall for broadcasting widely
+2731,COBOL,common business-oriented language
+2732,CPU_board mother_board,the main circuit board for a computer
+2733,C_battery,battery used to maintain the grid potential in a vacuum tube
+2734,C_clef,a movable clef that puts middle C on one of the lines of a staff
+2735,C_compiler,a compiler for programs written in C
+2736,C_major C_major_scale scale_of_C_major,(music) the major scale having no sharps or flats
+2737,C_program,a program written in C
+2738,Cabalist Kabbalist,a student of the Jewish Kabbalah
+2739,Cabell James_Branch_Cabell,United States writer of satirical novels (1879-1958)
+2740,Cabernet Cabernet_Sauvignon,superior Bordeaux type of red wine
+2741,Cabernet_Sauvignon_grape,superior red wine grapes grown especially in the Bordeaux region of France and northern California
+2742,Cabomba genus_Cabomba,alternatively, a member of the family Nymphaeaceae; a small genus of American aquatic plants
+2743,Cabombaceae subfamily_Cabombaceae water-shield_family,in some classifications considered an independent family of water lilies; comprises the genera Cabomba and Brasenia
+2744,Cabot John_Cabot Giovanni_Cabato,Italian explorer who led the English expedition in 1497 that discovered the mainland of North America and explored the coast from Nova Scotia to Newfoundland (ca. 1450-1498)
+2745,Cabot Sebastian_Cabot,son of John Cabot who was born in Italy and who led an English expedition in search of the Northwest Passage and a Spanish expedition that explored the La Plata region of Brazil; in 1544 he published a map of the world (1476-1557)
+2746,Cacajao genus_Cacajao,uakaris
+2747,Cacalia genus_Cacalia,genus of tall smooth herbs of forested mountains of Europe and Asia minor; in some classifications includes many plants usually placed in genus Emilia
+2748,Cachi,a mountain in the Andes in Argentina (22,047 feet high)
+2749,Cacicus genus_Cacicus,a genus of tropical American orioles
+2750,Cactaceae family_Cactaceae cactus_family,constituting the order Opuntiales
+2751,Caddo,a group of Plains Indians formerly living in what is now North and South Dakota and Nebraska and Kansas and Arkansas and Louisiana and Oklahoma and Texas
+2752,Caddo Caddoan Caddoan_language,a family of North American Indian languages spoken widely in the Midwest by the Caddo
+2753,Cadiz,an ancient port city in southwestern Spain
+2754,Cadmus,(Greek mythology) the brother of Europa and traditional founder of Thebes in Boeotia
+2755,Cadra genus_Cadra,a genus of Pyralidae
+2756,Caeciliidae family_Caeciliidae Caeciliadae family_Caeciliadae,coextensive with the order Gymnophiona: legless amphibians
+2757,Caelum,a constellation in the southern hemisphere near Columba and Eridanus
+2758,Caenolestes genus_Caenolestes,type genus of the family Caenolestidae
+2759,Caenolestidae family_Caenolestidae,small marsupials of southern South America
+2760,Caesalpinia genus_Caesalpinia,small spiny tropical trees or shrubs; includes the small genus or subgenus Poinciana
+2761,Caesalpiniaceae family_Caesalpiniaceae,spiny trees, shrubs, or perennial herbs, including the genera Caesalpinia, Cassia, Ceratonia, Bauhinia; commonly included in the family Leguminosae
+2762,Caesalpinioideae subfamily_Caesalpinioideae,alternative name in some classification systems for the family Caesalpiniaceae
+2763,Caesar Julius_Caesar Gaius_Julius_Caesar,conqueror of Gaul and master of Italy (100-44 BC)
+2764,Caesar Sid_Caesar Sidney_Caesar,United States comedian who pioneered comedy television shows (born 1922)
+2765,Caesar_salad,typically having fried croutons and dressing made with a raw egg
+2766,Caesarea,an ancient seaport in northwestern Israel; an important Roman city in ancient Palestine
+2767,Cage John_Cage John_Milton_Cage_Jr.,United States composer of avant-garde music (1912-1992)
+2768,Cagliostro Count_Alessandro_di_Cagliostro Giuseppe_Balsamo,Italian who was famous as a magician and alchemist (1743-1795)
+2769,Cagney Jimmy_Cagney James_Cagney,United States film actor known for his portrayals of tough characters (1899-1986)
+2770,Cahita,a member of the Taracahitian people of central Mexico
+2771,Cahita,the Uto-Aztecan language of the Cahita
+2772,Cain,(Old Testament) Cain and Abel were the first children of Adam and Eve born after the Fall of Man; Cain killed Abel out of jealousy and was exiled by God
+2773,Cairene,a native or inhabitant of Cairo
+2774,Cairina genus_Cairina,a genus of Anatidae
+2775,Cairo,a town at the southern tip of Illinois at the confluence of the Ohio and Mississippi Rivers
+2776,Cairo Al_Qahira El_Qahira Egyptian_capital capital_of_Egypt,the capital of Egypt and the largest city in Africa; a major port just to the south of the Nile delta; formerly the home of the Pharaohs
+2777,Cajanus genus_Cajanus,erect densely branched shrubby perennials of Old World tropics; naturalized in other warm regions
+2778,Cajun,a Louisianian descended from Acadian immigrants from Nova Scotia (`Cajun' comes from `Acadian')
+2779,Cakchiquel,a member of the Mayan people living in south central Guatemala
+2780,Cakchiquel,the Mayan language spoken by the Cakchiquel
+2781,Cakile genus_Cakile,small genus of succulent annual herbs found on sandy shores of North America and Europe
+2782,Calabria,a region of southern Italy (forming the toe of the Italian `boot')
+2783,Caladium_bicolor,most popular caladium; cultivated in many varieties since the late 19th century
+2784,Calais,a town in northern France on the Strait of Dover that serves as a ferry port to England; in 1347 it was captured by the English king Edward III after a long siege and remained in English hands until it was recaptured by the French king Henry II in 1558
+2785,Calamagrostis genus_Calamagrostis,reed grass
+2786,Calamintha genus_Calamintha,calamint
+2787,Calamus genus_Calamus,a genus of Sparidae
+2788,Calandrinia genus_Calandrinia,large genus of low-growing herbs; widespread throughout tropical and warm temperate regions having usually basal leaves and panicles of purplish ephemeral flowers
+2789,Calder Alexander_Calder,United States sculptor who first created mobiles and stabiles (1898-1976)
+2790,Calderon Calderon_de_la_Barca Pedro_Calderon_de_la_Barca,Spanish poet and dramatist considered one of the great Spanish writers (1600-1681)
+2791,Caldwell Erskine_Caldwell Erskine_Preston_Caldwell,United States author remembered for novels about poverty and degeneration (1903-1987)
+2792,Caledonia,the geographical area (in Roman times) to the north of the Antonine Wall; now a poetic name for Scotland
+2793,Caledonian_Canal,a canal in northern Scotland that links North Sea with the Atlantic Ocean; runs diagonally between Moray Firth at the northeastern end and Loch Linnhe at the southwestern end; now little used
+2794,Calgary,the largest city in southern Alberta; an oil and gas center and a technology center for Alberta and most of western Canada
+2795,Cali,city in southwestern Colombia in a rich agricultural area
+2796,Cali_cartel,a drug cartel that seized control of cocaine production in Colombia in 1993; adopted techniques used by terrorist organizations (small cells and sophisticated communications equipment and close ties with politicians etc.)
+2797,Calidris genus_Calidris,a genus of Scolopacidae
+2798,California Golden_State CA Calif.,a state in the western United States on the Pacific; the 3rd largest state; known for earthquakes
+2799,California_Personality_Inventory CPI,a self-report personality inventory originally derived from the MMPI; consists of several hundred yes-no questions and yields scores on a number of scales including dominance and self acceptance and self control and socialization and achievement etc.
+2800,California_black_oak Quercus_kelloggii,large deciduous tree of the Pacific coast having deeply parted bristle-tipped leaves
+2801,California_black_walnut Juglans_californica,medium-sized tree with somewhat aromatic compound leaves and edible nuts
+2802,California_bluebell Phacelia_campanularia,annual of southern California with intricately branched stems and lax cymes of aromatic deep blue bell-shaped flowers
+2803,California_bluebell whitlavia Phacelia_minor Phacelia_whitlavia,desert plant of southern California with blue or violet tubular flowers in terminal racemes
+2804,California_box_elder Acer_negundo_Californicum,maple of the Pacific coast of the United States; fruits are white when mature
+2805,California_condor Gymnogyps_californianus,North American condor; chiefly dull black; almost extinct
+2806,California_four_o'clock Mirabilis_laevis Mirabilis_californica,California four o'clock with purple-red flowers
+2807,California_fuchsia humming_bird's_trumpet Epilobium_canum_canum Zauschneria_californica,shrublet of southwestern United States to Mexico having brilliant scarlet flowers
+2808,California_lady's_slipper Cypripedium_californicum,often having many yellow-green orchids with white pouches growing along streams and seeps of southwestern Oregon and northern California
+2809,California_laurel California_bay_tree Oregon_myrtle pepperwood spice_tree sassafras_laurel California_olive mountain_laurel Umbellularia_californica,Pacific coast tree having aromatic foliage and small umbellate flowers followed by olivelike fruit; yields a hard tough wood
+2810,California_newt Taricha_torosa,newt that is similar to Taricha granulosa in characteristics and habitat
+2811,California_nutmeg nutmeg-yew Torreya_californica,California evergreen having a fruit resembling a nutmeg but with a strong turpentine flavor
+2812,California_pitcher_plant Darlingtonia_californica,marsh or bog herb having solitary pendulous yellow-green flowers and somewhat twisted pitchers with broad wings below
+2813,California_poppy Eschscholtzia_californica,of Pacific coast of North America; widely cultivated for its yellow to red flowers
+2814,California_privet Ligustrum_ovalifolium,semi-evergreen Japanese shrub having malodorous flowers; used extensively for hedges because more likely to stay green that common privet
+2815,California_quail Lofortyx_californicus,plump chunky bird of coastal California and Oregon
+2816,California_redwood coast_redwood Sequoia_sempervirens,lofty evergreen of United States coastal foothills from Oregon to Big Sur; it flourishes in wet, rainy, foggy habitats
+2817,California_sagebrush California_sage Artemisia_californica,low ashy-grey California shrub
+2818,California_sea_lion Zalophus_californianus Zalophus_californicus,often trained as a show animal
+2819,California_single-leaf_pinyon Pinus_californiarum,very small tree similar to Rocky mountain pinon but having a single needle per fascicle; similar to Parry's pinyon in range
+2820,California_sycamore Platanus_racemosa,tall tree of Baja California having deciduous bark and large alternate palmately lobed leaves and ball-shaped clusters of flowers
+2821,California_whipsnake striped_racer Masticophis_lateralis,a whipsnake of scrublands and rocky hillsides
+2822,California_white_oak valley_oak valley_white_oak roble Quercus_lobata,tall graceful deciduous California oak having leathery leaves and slender pointed acorns
+2823,California_wine,any of various wines produced in California
+2824,Californian,a native or resident of California
+2825,Caligula Gaius Gaius_Caesar,Roman Emperor who succeeded Tiberius and whose uncontrolled passions resulted in manifest insanity; noted for his cruelty and tyranny; was assassinated (12-41)
+2826,Caliphate,the era of Islam's ascendancy from the death of Mohammed until the 13th century; some Moslems still maintain that the Moslem world must always have a calif as head of the community; "their goal was to reestablish the Caliphate"
+2827,Calixtus_II Guy_of_Burgundy,pope who in 1122 forced the Holy Roman Emperor Henry V to sign a concordat that recognized the right of the church to choose its own leadership (died in 1124)
+2828,Calixtus_III Borgia Alfonso_Borgia,Italian pope whose nepotism put the Borgia family in power in Italy (1378-1458)
+2829,Call,a special disposition (as if from a divine source) to pursue a particular course; "he was disappointed that he had not heard the Call"
+2830,Calla genus_Calla,water arum
+2831,Callas Maria_Callas Maria_Meneghini_Callas,Greek coloratura soprano (born in the United States) known for her dramatic intensity in operatic roles (1923-1977)
+2832,Callicebus genus_Callicebus,titis
+2833,Callimorpha genus_Callimorpha,cinnabar moths
+2834,Callinectes genus_Callinectes,New World blue crabs
+2835,Callionymidae family_Callionymidae,dragonets
+2836,Calliope,(Greek mythology) the Muse of epic poetry
+2837,Calliophis genus_Calliophis Callophis genus_Callophis,Asian coral snakes
+2838,Calliphora genus_Calliphora,type genus of the Calliphoridae: blowflies
+2839,Calliphoridae family_Calliphoridae,blowflies
+2840,Callirhoe genus_Callirhoe,small genus of North American herbs having usually red or purple flowers
+2841,Callisaurus genus_Callisaurus,zebra-tailed lizard
+2842,Callistephus genus_Callistephus,one species: erect Asiatic herb with large flowers
+2843,Callisto,the second largest of Jupiter's satellites
+2844,Callithricidae family_Callithricidae,marmosets
+2845,Callithrix genus_Callithrix,type genus of the Callithricidae: true marmosets
+2846,Callitrichaceae family_Callitrichaceae,dicot aquatic herbs
+2847,Callitriche genus_Callitriche,water starworts
+2848,Callitris genus_Callitris,evergreen monoecious coniferous trees or shrubs: cypress pines
+2849,Callorhinus genus_Callorhinus,fur seals
+2850,Calluna genus_Calluna,one species
+2851,Calocarpum genus_Calocarpum,a genus of tropical American trees of the family Sapotaceae
+2852,Calocedrus genus_Calocedrus,tall evergreens of western North America and eastern Asia; formerly included in genus Libocedrus
+2853,Calochortus genus_Calochortus,large genus of western North American leafy-stemmed bulbous herbs
+2854,Caloocan,a suburb of Manila in southwestern Luzon
+2855,Caloosahatchee Caloosahatchee_River,a river in southern Florida that flows westerly to the Gulf of Mexico; forms the western end of the Cross-Florida Waterway
+2856,Caloosahatchee_Canal,a canal that connects Lake Okeechobee with the Caloosahatchee River in southern Florida to form part of the Cross-Florida Waterway
+2857,Calophyllum genus_Calophyllum,genus of tropical evergreen trees
+2858,Calopogon genus_Calopogon,terrestrial orchids of North America
+2859,Calorie kilogram_calorie kilocalorie large_calorie nutritionist's_calorie,a unit of heat equal to the amount of heat required to raise the temperature of one kilogram of water by one degree at one atmosphere pressure; used by nutritionists to characterize the energy-producing potential in food
+2860,Caloscypha_fulgens,an early spring variety of discomycete with yellow to orange yellow lining of the cup
+2861,Calostoma_cinnabarina,a gasteromycete with a leathery stalk and a fruiting body this globose and has a red spore case
+2862,Calostoma_lutescens,a gasteromycete with a leathery stalk and a fruiting body that is globose and has a pale yellow spore case
+2863,Calostoma_ravenelii,a gasteromycete with a leathery stalk and a fruiting body with a thin gelatinous spore case and elliptical spores
+2864,Calostomataceae family_Calostomataceae,a family of fungi belonging to the order Tulostomatales
+2865,Caltha genus_Caltha,a genus of Caltha
+2866,Calvados,dry apple brandy made in Normandy
+2867,Calvary Golgotha,a hill near Jerusalem where Jesus was crucified
+2868,Calvary_clover Medicago_intertexta Medicago_echinus,an annual of the Mediterranean area having spiny seed pods and leaves with dark spots
+2869,Calvary_cross cross_of_Calvary,a Latin cross set on three steps
+2870,Calvatia genus_Calvatia,genus of puffballs having outer casings whose upper parts break at maturity into angular pieces to expose the spores
+2871,Calvin John_Calvin Jean_Cauvin Jean_Caulvin Jean_Chauvin,Swiss theologian (born in France) whose tenets (predestination and the irresistibility of grace and justification by faith) defined Presbyterianism (1509-1564)
+2872,Calvin Melvin_Calvin,United States chemist noted for discovering the series of chemical reactions in photosynthesis (1911-)
+2873,Calvinism,the theological system of John Calvin and his followers emphasizing omnipotence of God and salvation by grace alone
+2874,Calvinist Genevan,an adherent of the theological doctrines of John Calvin
+2875,Calvinistic_Baptist Particular_Baptist,group of Baptist congregations believing the teachings of the French theologian John Calvin who believed in strict predetermination
+2876,Calvino Italo_Calvino,Italian writer of novels and short stories (born in Cuba) (1923-1987)
+2877,Calycanthaceae family_Calycanthaceae calycanthus_family strawberry-shrub_family,shrubs or small trees having aromatic bark; the eastern United States and eastern Asia
+2878,Calycanthus genus_Calycanthus,a magnoliid dicot genus of the family Calycanthaceae including: allspice
+2879,Calycophyllum genus_Calycophyllum,medium to large tropical American trees having shiny reddish-brown shredding bark
+2880,Calymmatobacterium genus_Calymmatobacterium,a genus of bacterial rods containing only the one species that causes granuloma inguinale
+2881,Calymmatobacterium_granulomatis,the species of bacteria that causes granuloma inguinale
+2882,Calypso,(Greek mythology) the sea nymph who detained Odysseus for seven years
+2883,Calystegia genus_Calystegia,climbing or scrambling herbs: bindweed
+2884,Cam River_Cam Cam_River,a river in east central England that flows past Cambridge to join the Ouse River
+2885,Camassia genus_Camassia Quamassia genus_Quamassia,genus of scapose herbs of North and South America having large edible bulbs
+2886,Cambarus genus_Cambarus,a genus of Astacidae
+2887,Cambodia Kingdom_of_Cambodia Kampuchea,a nation in southeastern Asia; was part of Indochina under French rule until 1946
+2888,Cambodian Kampuchean,a native or inhabitant of Cambodia
+2889,Cambodian_monetary_unit,monetary unit in Cambodia
+2890,Cambrian Cambrian_period,from 544 million to about 500 million years ago; marine invertebrates
+2891,Cambrian_Mountains,a rugged plateau that runs north to south through central Wales
+2892,Cambridge,a city in Massachusetts just to the north of Boston; site of Harvard University and the Massachusetts Institute of Technology
+2893,Cambridge,a city in eastern England on the River Cam; site of Cambridge University
+2894,Cambridge_University Cambridge,a university in England
+2895,Camden,a city in southwestern New Jersey on the Delaware River near Philadelphia
+2896,Camelidae family_Camelidae,camels and llamas and vicunas
+2897,Camelina genus_Camelina false_flax,annual and biennial herbs of Mediterranean to central Asia
+2898,Camelot,(Arthurian legend) the capital of King Arthur's kingdom; according to the legend, truth and goodness and beauty reigned there
+2899,Camelus genus_Camelus,type genus of the Camelidae: camels
+2900,Camembert,rich soft creamy French cheese
+2901,Cameroon,an inactive volcano in western Cameroon; highest peak on the West African coast
+2902,Cameroon Republic_of_Cameroon Cameroun,a republic on the western coast of central Africa; was under French and British control until 1960
+2903,Cameroon_franc,the basic unit of money in Cameroon
+2904,Cameroonian,a native or inhabitant of Cameroon
+2905,Camlan,(Arthurian legend) the battlefield where King Arthur was mortally wounded
+2906,Camorra,a secret society in Naples notorious for violence and blackmail
+2907,Camp_David,a retreat to the northwest of Washington that is used by the president of the United States
+2908,Campania,a region of southwestern Italy on the Tyrrhenian Sea including the islands of Capri and Ischia
+2909,Campanulaceae family_Campanulaceae bellflower_family,family of plants of the order Campanulales; in some classifications includes Lobeliaceae
+2910,Campanulales order_Campanulales,an order of plants of the subclass Asteridae including: Campanulaceae; Lobeliaceae; Cucurbitaceae; Goodeniaceae; Compositae
+2911,Campbell Joseph_Campbell,United States mythologist (1904-1987)
+2912,Campeche,a Mexican city on the Bay of Campeche
+2913,Campeche,a Mexican state on the eastern part of the Gulf of Campeche
+2914,Campephilus genus_Campephilus,a genus of Picidae
+2915,Campfire_Girl,a girl who is a member of Campfire Girls; for girls age 7-18
+2916,Camponotus genus_Camponotus,carpenter ants
+2917,Camptosorus genus_Camptosorus,classification used in some especially former systems for plants usually placed in genus Asplenium
+2918,Campyloneurum genus_Campyloneurum,epiphytic ferns of tropical America
+2919,Campylorhynchus genus_Campylorhynchus Heleodytes genus_Heleodytes,alternative classifications for the cactus wrens
+2920,Camus Albert_Camus,French writer who portrayed the human condition as isolated in an absurd world (1913-1960)
+2921,Canaanite,a member of an ancient Semitic people who occupied Canaan before it was conquered by the Israelites
+2922,Canaanite,the extinct language of the Semitic people who occupied Canaan before the Israelite conquest
+2923,Canaanitic Canaanitic_language,a group of Semitic languages
+2924,Canachites genus_Canachites,spruce grouse
+2925,Canada,a nation in northern North America; the French were the first Europeans to settle in mainland Canada; "the border between the United States and Canada is the longest unguarded border in the world"
+2926,Canada_anemone Anemone_Canadensis,common summer-flowering woodland herb of Labrador to Colorado
+2927,Canada_balsam,yellow transparent exudate of the balsam fir; used as a transparent cement in optical devices (especially in microscopy) and as a mounting medium
+2928,Canada_garlic meadow_leek rose_leek Allium_canadense,North American bulbous plant
+2929,Canada_ginger black_snakeroot Asarum_canadense,deciduous low-growing perennial of Canada and eastern and central United States
+2930,Canada_jay grey_jay gray_jay camp_robber whisker_jack Perisoreus_canadensis,a jay of northern North America with black-capped head and no crest; noted for boldness in thievery
+2931,Canada_lily wild_yellow_lily meadow_lily wild_meadow_lily Lilium_canadense,common lily of the eastern United States having nodding yellow or reddish flowers spotted with brown
+2932,Canada_lynx Lynx_canadensis,of northern North America
+2933,Canada_plum Prunus_nigra,small tree native to northeastern North America having oblong orange-red fruit
+2934,Canada_porcupine Erethizon_dorsatum,porcupine of northeastern North America with barbed spines concealed in the coarse fur; often gnaws buildings for salt and grease
+2935,Canada_thistle creeping_thistle Cirsium_arvense,European thistle naturalized in United States and Canada where it is a pernicious weed
+2936,Canada_violet tall_white_violet white_violet Viola_canadensis,tall North American perennial with heart-shaped leaves and white flowers with purple streaks
+2937,Canada_wild_rye Elymus_canadensis,North American wild rye
+2938,Canadian,a native or inhabitant of Canada
+2939,Canadian Canadian_River,a river rising in northeastern New Mexico and flowing eastward across the Texas panhandle to become a tributary of the Arkansas River in Oklahoma
+2940,Canadian_Falls Horseshoe_Falls,a part of Niagara Falls in Ontario
+2941,Canadian_French,the French language as spoken in Quebec, Canada
+2942,Canadian_Security_Intelligence_Service CSIS,Canada's main foreign intelligence agency that gathers and analyzes information to provide security intelligence for the Canadian government
+2943,Canadian_aspen bigtooth_aspen bigtoothed_aspen big-toothed_aspen large-toothed_aspen large_tooth_aspen Populus_grandidentata,aspen with a narrow crown; eastern North America
+2944,Canadian_bacon,from a boned strip of cured loin
+2945,Canadian_dollar loonie,the basic unit of money in Canada; "the Canadian dollar has the image of loon on one side of the coin"
+2946,Canadian_pondweed Elodea_canadensis,North American waterweed; widely naturalized in Europe
+2947,Canadian_province,Canada is divided into 12 provinces for administrative purposes
+2948,Canandaigua_Lake Lake_Canandaigua,a glacial lake in central New York; one of the Finger Lakes
+2949,Cananga genus_Cananga Canangium genus_Canangium,a genus of Malayan tree
+2950,Canary_Island_hare's_foot_fern Davallia_canariensis,fern of the Canary Islands and Madeira
+2951,Canary_Islands Canaries,a group of mountainous islands in the Atlantic off the northwest coast of Africa forming Spanish provinces
+2952,Canary_wine,a sweet white wine from the Canary Islands
+2953,Canavalia genus_Canavalia,herbs or woody vines of mainly American tropics and subtropics
+2954,Canberra Australian_capital capital_of_Australia,the capital of Australia; located in southeastern Australia
+2955,Cancer,a small zodiacal constellation in the northern hemisphere; between Leo and Gemini
+2956,Cancer Cancer_the_Crab Crab,the fourth sign of the zodiac; the sun is in this sign from about June 21 to July 22
+2957,Cancer Crab,(astrology) a person who is born while the sun is in Cancer
+2958,Cancer genus_Cancer,type genus of the family Cancridae
+2959,Cancridae family_Cancridae,many of the best known edible crabs
+2960,Cancun,a popular island resort off the northeastern tip of the Yucatan peninsula
+2961,Candida_albicans Monilia_albicans,a parasitic fungus that can infect the mouth or the skin or the intestines or the vagina
+2962,Candlemas Candlemas_Day Feb_2,feast day commemorating the presentation of Christ in the temple; a quarter day in Scotland
+2963,Canellaceae family_Canellaceae canella_family,one genus: aromatic tropical trees of eastern Africa and Florida to West Indies
+2964,Canetti Elias_Canetti,English writer born in Germany (1905-1994)
+2965,Canidae family_Canidae,dogs; wolves; jackals; foxes
+2966,Canis genus_Canis,type genus of the Canidae: domestic and wild dogs; wolves; jackals
+2967,Canis_Major Great_Dog,a constellation to the southeast of Orion; contains Sirius
+2968,Canis_Minor Little_Dog,a constellation to the east of Orion; contains Procyon
+2969,Cannabidaceae family_Cannabidaceae hemp_family,two genera of erect or twining herbs that are pollinated by the wind, including the genera Cannabis and Humulus; term not used in all classifications; in some the genus Cannabis is placed in the family Moraceae and the genus Humulus in the family Urticaceae
+2970,Cannaceae family_Cannaceae,coextensive with the genus Canna
+2971,Cannae,ancient city is southeastern Italy where Hannibal defeated the Romans in 216 BC
+2972,Cannes,a port and resort city on the French Riviera; site of an annual film festival
+2973,Canopus,supergiant star 650 light years from Earth; second brightest star in the sky
+2974,Cantabrian_Mountains,a range of mountains in northern Spain along the coast of the Bay of Biscay
+2975,Cantabrigian,a resident of Cambridge
+2976,Canterbury,a town in Kent in southeastern England; site of the cathedral where Thomas a Becket was martyred in 1170; seat of the archbishop and primate of the Anglican Church
+2977,Canterbury_Tales,an uncompleted series of tales written after 1387 by Geoffrey Chaucer
+2978,Canterbury_bell Gloxinia_perennis,herb of Colombia to Peru having pale purple flowers
+2979,Canterbury_bell cup_and_saucer Campanula_medium,European biennial widely cultivated for its blue or violet or white flowers
+2980,Cantharellus genus_Cantharellus,a well-known genus of fungus; has funnel-shaped fruiting body; includes the chanterelles
+2981,Canticle_of_Simeon Nunc_dimittis,the prayer of Simeon (Luke 2:29-32)
+2982,Canton_crepe,a soft thick crinkled dress crepe; heavier than crepe de Chine
+2983,Canuck,informal term for Canadians in general and French Canadians in particular
+2984,Canute Cnut Knut Canute_the_Great,king of Denmark and Norway who forced Edmund II to divide England with him; on the death of Edmund II, Canute became king of all England (994-1035)
+2985,Canyonlands_National_Park,a national park in Utah having rock formations and ancient cliff dwellings; canyons of the Green River and the Colorado River
+2986,Cape_Ann,a Massachusetts peninsula to the north of Boston extending into the Atlantic Ocean
+2987,Cape_Breton_Island,an island that forms the northeastern part of Nova Scotia
+2988,Cape_Canaveral Cape_Kennedy,a sandy promontory (formerly Cape Kennedy) extending into the Atlantic Ocean from a barrier island off the eastern coast of Florida; the site of a NASA center for spaceflight
+2989,Cape_Cod,a Massachusetts peninsula to the south of Boston extending into the Atlantic; a popular resort area
+2990,Cape_Cod_Bay,the southern part of Massachusetts Bay
+2991,Cape_Cod_Canal,a canal connecting Cape Cod Bay with Buzzards Bay
+2992,Cape_Fear,a cape in southeastern North Carolina extending into the Atlantic Ocean
+2993,Cape_Fear_River,a river in North Carolina that flows southeast to the Atlantic Ocean at Cape Fear
+2994,Cape_Flattery,a cape of northwestern Washington
+2995,Cape_Froward,a cape on the Strait of Magellan in southern Chile; the most southern point on the mainland of South America
+2996,Cape_Girardeau,a town in southeast Missouri
+2997,Cape_Hatteras,a promontory on Hatteras Island off the Atlantic coast of North Carolina; "frequent storms drive ships to their destruction on Cape Hatteras"
+2998,Cape_Horn,a rocky headland belonging to Chile at the southernmost tip of South America (south of Tierra del Fuego)
+2999,Cape_May,a cape of southeast New Jersey extending into the Atlantic Ocean
+3000,Cape_May_warbler Dendroica_tigrina,North American wood warbler; olive green and yellow striped with black
+3001,Cape_Passero Passero_Cape,a cape that forms the southeastern corner of the island of Sicily
+3002,Cape_Province Cape_of_Good_Hope_Province Cape_Colony,a former province of southern South Africa that was settled by the Dutch in 1652 and ceded to Great Britain in 1814; in 1994 it was split into three new provinces of South Africa
+3003,Cape_Sable,a cape at the southwest tip of Florida; the southernmost part of the United States mainland
+3004,Cape_Sable,a promontory on the far southern part of Nova Scotia
+3005,Cape_Town,port city in southwestern South Africa; the seat of the legislative branch of the government of South Africa
+3006,Cape_Trafalgar,a small cape in southwestern Spain; "Nelson defeated the French and Spanish fleets off Cape Trafalgar in 1805"
+3007,Cape_Verde Republic_of_Cape_Verde,an island country in the Atlantic off the coast of Senegal
+3008,Cape_Verde_Islands,a group of islands in the Atlantic off of the coast of Senegal
+3009,Cape_Verde_escudo escudo,the basic unit of money on Cape Verde; equal to 100 centavos
+3010,Cape_Verde_monetary_unit,monetary unit on Cape Verde
+3011,Cape_York,the northern tip of Cape York Peninsula at the Torres Strait; the northernmost point of the Australian mainland
+3012,Cape_York_Peninsula,a peninsula in Queensland in northeastern Australia between the Gulf of Carpentaria and the Coral Sea
+3013,Cape_buffalo Synercus_caffer,large often savage buffalo of southern Africa having upward-curving horns; mostly in game reserves
+3014,Cape_lobster Homarus_capensis,small lobster of southern Africa
+3015,Cape_of_Good_Hope,a point of land in southwestern South Africa (south of Cape Town)
+3016,Cape_of_Good_Hope,a province of western South Africa
+3017,Cape_primrose,any of various African plants of the genus Streptocarpus widely cultivated especially as houseplants for their showy blue or purple flowers
+3018,Cape_tulip Haemanthus_coccineus,spectacular plant having large prostrate leaves barred in reddish-purple and flowers with a clump of long yellow stamens in a coral-red cup of fleshy bracts; South Africa
+3019,Capek Karel_Capek,Czech writer who introduced the word `robot' into the English language (1890-1938)
+3020,Capella,the brightest star in Auriga
+3021,Capet Hugh_Capet,King of France elected in 987 and founding the Capetian dynasty (940-996)
+3022,Capetian,a member of the Capetian dynasty
+3023,Capetian_dynasty,a Frankish dynasty founded by Hugh Capet that ruled from 987 to 1328
+3024,Capital Washington,the federal government of the United States
+3025,Capitol Capitol_Building,the government building in Washington where the United States Senate and the House of Representatives meet
+3026,Capitol_Hill the_Hill,a hill in Washington, D.C., where the Capitol Building sits and Congress meets; "they are debating the budget today on Capitol Hill"
+3027,Capitol_Reef_National_Park,a national park in Utah having colorful rock formations and desert plants and wildlife
+3028,Capitonidae family_Capitonidae,barbets
+3029,Capone Al_Capone Alphonse_Capone Scarface,United States gangster who terrorized Chicago during prohibition until arrested for tax evasion (1899-1947)
+3030,Caporetto battle_of_Caporetto,battle of World War I (1917); Italians were defeated by the Austrian and German forces
+3031,Cappadocia,an ancient country is eastern Asia Minor
+3032,Capparidaceae family_Capparidaceae caper_family,a dilleniid dicot family of the order Rhoeadales that includes: genera Capparis, Cleome, Crateva, and Polanisia
+3033,Capparis genus_Capparis,tropical or subtropical evergreen shrubs or small trees
+3034,Capra Frank_Capra,United States film maker (1897-1991)
+3035,Capra genus_Capra,goats
+3036,Caprella genus_Caprella,skeleton shrimp
+3037,Capreolus genus_Capreolus,roe deer
+3038,Capri,an island (part of Campania) in the Bay of Naples in southern Italy; a tourist attraction noted for beautiful scenery
+3039,Capricorn Capricorn_the_Goat Goat,the tenth sign of the zodiac; the sun is in this sign from about December 22 to January 19
+3040,Capricorn Goat,(astrology) a person who is born while the sun is in Capricorn
+3041,Capricornis genus_Capricornis,serows
+3042,Capricornus Capricorn,a faint zodiacal constellation in the southern hemisphere; between Sagittarius and Aquarius
+3043,Caprifoliaceae family_Caprifoliaceae honeysuckle_family,shrubs and small trees and woody vines
+3044,Caprimulgidae family_Caprimulgidae,goatsuckers
+3045,Caprimulgiformes order_Caprimulgiformes,goatsuckers; frogmouths; oilbirds
+3046,Caprimulgus genus_Caprimulgus,type genus of the Caprimulgidae
+3047,Caproidae family_Caproidae,boarfishes
+3048,Capromyidae family_Capromyidae,coypus
+3049,Capros genus_Capros,a genus of fish in the family Caproidae
+3050,Capsella genus_Capsella,shepherd's purse
+3051,Carabidae family_Carabidae,ground beetles
+3052,Caracas capital_of_Venezuela,the capital and largest city of Venezuela
+3053,Carangidae family_Carangidae,large family of narrow-bodied marine food fishes with widely forked tails; chiefly of warm seas
+3054,Caranx genus_Caranx,type genus of the Carangidae
+3055,Carapidae family_Carapidae,pearlfishes: related to the Brotulidae
+3056,Carassius genus_Carassius,goldfish
+3057,Caravaggio Michelangelo_Merisi_da_Caravaggio,Italian painter noted for his realistic depiction of religious subjects and his novel use of light (1573-1610)
+3058,Carboloy,an alloy based on tungsten with cobalt or nickel as a binder; used in making metal-cutting tools
+3059,Carbondale,a town in southern Illinois
+3060,Carboniferous Carboniferous_period,from 345 million to 280 million years ago
+3061,Carcharhinidae family_Carcharhinidae,largest family of living sharks; found worldwide especially in tropical waters; dorsal fin lacks spines: requiem sharks including tiger sharks and soupfin sharks
+3062,Carcharhinus genus_Carcharhinus,type genus of the Carcharhinidae
+3063,Carcharias genus_Carcharias Odontaspis genus_Odontaspis,type and sole genus of Carchariidae: sand sharks
+3064,Carchariidae family_Carchariidae Odontaspididae family_Odontaspididae,sand sharks; in some classifications coextensive with family Carcharhinidae
+3065,Carcharodon genus_Carcharodon,man-eating sharks
+3066,Cardamine genus_Cardamine,bittercress, bitter cress
+3067,Cardiff,the capital and largest city of Wales
+3068,Cardigan Cardigan_Welsh_corgi,slightly bowlegged variety of corgi having rounded ears and a long tail
+3069,Cardiidae family_Cardiidae,somewhat heart-shaped sand-burrowing bivalve mollusks
+3070,Cardiospermum genus_Cardiospermum,tendril-climbing herbs or shrubs whose seeds have a white heart-shaped spot
+3071,Cardium genus_Cardium,type genus of the family Cardiidae: cockles
+3072,Carducci Giosue_Carducci,Italian poet considered the national poet of modern Italy (1835-1907)
+3073,Carduelinae subfamily_Carduelinae,used in some classifications for a subgroup of finches
+3074,Carduelis genus_Carduelis,in some classifications considered the type genus of a subfamily Carduelinae of the family Fringillidae: goldfinches; siskins; redpolls; linnets
+3075,Carduus genus_Carduus,genus of annual or perennial Old World prickly thistles
+3076,Caretta genus_Caretta,loggerhead turtles
+3077,Carew Thomas_Carew,Englishman and Cavalier poet whose lyric poetry was favored by Charles I (1595-1639)
+3078,Carex genus_Carex,large genus of plants found in damp woodlands and bogs and ditches or at water margins: sedges
+3079,Cariama genus_Cariama,the type genus of the Cariamidae comprising only the crested cariama
+3080,Cariamidae family_Cariamidae,crane-like South American wading birds
+3081,Carib Carib_Indian,a member of an American Indian peoples of northeastern South America and the Lesser Antilles
+3082,Carib Caribbean_language,the family of languages spoken by the Carib
+3083,Caribbean,region including the Caribbean Islands
+3084,Caribbean Caribbean_Sea,an arm of the Atlantic Ocean between North and South America; the origin of the Gulf stream
+3085,Caribbean_Island,an island in the Caribbean Sea
+3086,Carica genus_Carica,type genus of the Caricaceae; tropical American trees: papayas
+3087,Caricaceae family_Caricaceae papaya_family,trees native to tropical America and Africa with milky juice and large palmately lobed leaves
+3088,Carina,a keel-shaped constellation in the southern hemisphere; contains the star Canopus
+3089,Carioca,a native or inhabitant of Rio de Janeiro
+3090,Carl_XVI_Gustav Carl_XVI_Gustaf,king of Sweden since 1973 (born 1946)
+3091,Carlina genus_Carlina,genus of Mediterranean thistles
+3092,Carlsbad,a town in southeastern New Mexico on the Pecos River near the Mexican border; potash deposits
+3093,Carlsbad_Caverns,a group of caverns in southeastern New Mexico noted for their stalactites and stalagmites
+3094,Carlsbad_Caverns_National_Park,a national park in New Mexico featuring what is probably the world's largest cavern with spectacular underground formations
+3095,Carlyle Thomas_Carlyle,Scottish historian who wrote about the French Revolution (1795-1881)
+3096,Carmelite White_Friar,a Roman Catholic friar wearing the white cloak of the Carmelite order; mendicant preachers
+3097,Carmelite_order Order_of_Our_Lady_of_Mount_Carmel,a Roman Catholic mendicant order founded in the 12th century
+3098,Carmichael Hoagy_Carmichael Hoagland_Howard_Carmichael,United States songwriter (1899-1981)
+3099,Carnegie Andrew_Carnegie,United States industrialist and philanthropist who endowed education and public libraries and research trusts (1835-1919)
+3100,Carnegie Dale_Carnegie,United States educator famous for writing a book about how to win friends and influence people (1888-1955)
+3101,Carnegie_Mellon_University,an engineering university in Pittsburgh
+3102,Carnegiea genus_Carnegiea,caryophylloid dicot genus with only one species: saguaro
+3103,Carniolan_bee,greyish highly productive European honeybee that has a quiet disposition
+3104,Carnivora order_Carnivora,cats; lions; tigers; panthers; dogs; wolves; jackals; bears; raccoons; skunks; and members of the suborder Pinnipedia
+3105,Carnosaura suborder_Carnosaura,largest carnivorous land animals ever known
+3106,Carnot Sadi_Carnot Nicolas_Leonard_Sadi_Carnot,French physicist who founded thermodynamics (1796-1832)
+3107,Carnot_cycle Carnot's_ideal_cycle,a cycle (of expansion and compression) of an idealized reversible heat engine that does work without loss of heat
+3108,Carolina Carolinas,the area of the states of North Carolina and South Carolina
+3109,Carolina_allspice strawberry_shrub strawberry_bush sweet_shrub Calycanthus_floridus,hardy shrub of southeastern United States having clove-scented wood and fragrant red-brown flowers
+3110,Carolina_buckthorn indian_cherry Rhamnus_carolinianus,deciduous shrub of eastern and central United States having black berrylike fruit; golden-yellow in autumn
+3111,Carolina_chickadee Parus_carolinensis,southern United States chickadee similar to the blackcap but smaller
+3112,Carolina_hemlock Tsuga_caroliniana,medium-sized evergreen of southeastern United States having spreading branches and widely diverging cone scales
+3113,Carolina_lupine Thermopsis_villosa,eastern United States bush pea
+3114,Carolina_moonseed Cocculus_carolinus,woody vine of southeastern United States resembling the common moonseed but having red fruits
+3115,Carolina_parakeet Conuropsis_carolinensis,extinct parakeet whose range extended far into the United States
+3116,Carolina_spring_beauty Claytonia_caroliniana,similar to Claytonia virginica but having usually pink flowers; eastern North America
+3117,Carolina_wren Thryothorus_ludovicianus,large United States wren with a musical call
+3118,Caroline_Islands,a long archipelago of more than 500 islands in Micronesia to the east of the Philippines
+3119,Carolingian Carlovingian,a member of the Carolingian dynasty
+3120,Carolingian_dynasty Carlovingian_dynasty,a Frankish dynasty founded by Charlemagne's father that ruled from 751 to 987
+3121,Carolinian,a native or resident of the Carolinas
+3122,Carothers Wallace_Carothers Wallace_Hume_Carothers,United States chemist who developed nylon (1896-1937)
+3123,Carpathians Carpathian_Mountains,a mountain range in central Europe that extends from Slovakia and southern Poland southeastward through western Ukraine to northeastern Romania; a popular resort area
+3124,Carphophis genus_Carphophis,thunder snake
+3125,Carpinaceae subfamily_Carpinaceae family_Carpinaceae,used in some classification systems for the genera Carpinus, Ostryopsis, and Ostryopsis
+3126,Carpinus genus_Carpinus,mostly deciduous monoecious trees or shrubs: hornbeams; sometimes placed in subfamily Carpinaceae
+3127,Carpobrotus genus_Carpobrotus,a caryophyllaceous genus of Carpobrotus
+3128,Carpocapsa genus_Carpocapsa,codling moths
+3129,Carpodacus genus_Carpodacus,house finches and purple finches
+3130,Carrel Alexis_Carrel,French surgeon and biologist who developed a way to suture and graft blood vessels (1873-1944)
+3131,Carrere John_Merven_Carrere,United States architect who with his partner Thomas Hastings designed many important public buildings (1858-1911)
+3132,Carroll Lewis_Carroll Dodgson Reverend_Dodgson Charles_Dodgson Charles_Lutwidge_Dodgson,English author; Charles Dodgson was an Oxford don of mathematics who is remembered for the children's stories he wrote under the pen name Lewis Carroll (1832-1898)
+3133,Carson Kit_Carson Christopher_Carson,United States frontiersman who guided Fremont's expeditions in the 1840s and served as a Union general in the American Civil War (1809-1868)
+3134,Carson Rachel_Carson Rachel_Louise_Carson,United States biologist remembered for her opposition to the use of pesticides that were hazardous to wildlife (1907-1964)
+3135,Carson_City capital_of_Nevada,capital of the state of Nevada; located in western Nevada
+3136,Cartagena,a port in southeastern Spain on the Mediterranean
+3137,Cartagena,a port city in northwestern Colombia on the Caribbean
+3138,Cartagena_bark Cinchona_cordifolia Cinchona_lancifolia,Colombian tree; source of Cartagena bark (a cinchona bark)
+3139,Carter Howard_Carter,Englishman and Egyptologist who in 1922 discovered and excavated the tomb of Tutankhamen (1873-1939)
+3140,Carter Jimmy_Carter James_Earl_Carter James_Earl_Carter_Jr. President_Carter,39th President of the United States (1924-)
+3141,Carter_administration,the executive under President Carter
+3142,Cartesian,a follower of Cartesian thought
+3143,Cartesian_coordinate,one of the coordinates in a system of coordinates that locates a point on a plane or in space by its distance from two lines or three planes respectively; the two lines or the intersections of the three planes are the coordinate axes
+3144,Cartesian_coordinate_system,a coordinate system for which the coordinates of a point are its distances from a set perpendicular lines that intersect at the origin of the system
+3145,Cartesian_plane,a plane in which all points can be described in Cartesian coordinates
+3146,Carthage,an ancient city state on the north African coast near modern Tunis; founded by Phoenicians; destroyed and rebuilt by Romans; razed by Arabs in 697
+3147,Carthaginian,a native or inhabitant of ancient Carthage
+3148,Carthamus genus_Carthamus,safflower
+3149,Carthusian,a member of the Carthusian order
+3150,Carthusian_order,an austere contemplative Roman Catholic order founded by St. Bruno in 1084
+3151,Cartier Jacques_Cartier,French explorer who explored the St. Lawrence river and laid claim to the region for France (1491-1557)
+3152,Cartwright Edmund_Cartwright,English clergyman who invented the power loom (1743-1823)
+3153,Carum genus_Carum,caraway
+3154,Caruso Enrico_Caruso,outstanding Italian operatic tenor (1873-1921)
+3155,Carver George_Washington_Carver,United States botanist and agricultural chemist who developed many uses for peanuts and soy beans and sweet potatoes (1864-1943)
+3156,Carya genus_Carya,genus of large deciduous nut-bearing trees; United States and China
+3157,Caryocar genus_Caryocar,type genus of the Caryocaraceae; South American trees yielding strong fine-grained wood and edible nuts
+3158,Caryocaraceae family_Caryocaraceae,small genus of tropical South American trees
+3159,Caryophyllaceae family_Caryophyllaceae carnation_family pink_family,large family of herbs or subshrubs (usually with stems swollen at the nodes)
+3160,Caryophyllales order_Caryophyllales Chenopodiales order-Chenopodiales,corresponds approximately to the older group Centrospermae
+3161,Caryophyllidae subclass_Caryophyllidae,a group of families of mostly flowers having basal or central placentation and trinucleate pollen (binucleate pollen is commoner in flowering plants); contains 14 families including: Caryophyllaceae (carnations and pinks); Aizoaceae; Amaranthaceae; Batidaceae; Chenopodiaceae; Cactaceae (order Opuntiales); Nyctaginaceae; Phytolaccaceae; corresponds approximately to order Caryophyllales; sometimes classified as a superorder
+3162,Caryota genus_Caryota,fishtail palms
+3163,Casablanca,a port on the Atlantic and the largest city of Morocco
+3164,Casals Pablo_Casals,an outstanding Spanish cellist noted for his interpretation of Bach's cello suites (1876-1973)
+3165,Casanova,any man noted for his amorous adventures
+3166,Casanova Giovanni_Jacopo_Casanova Casanova_de_Seingalt Giovanni_Jacopo_Casanova_de_Seingalt,an Italian adventurer who wrote vivid accounts of his sexual encounters (1725-1798)
+3167,Cascades Cascade_Range Cascade_Mountains,a mountain range in the northwestern United States extending through Washington and Oregon and northern California; a part of the Coast Range
+3168,Cash Johnny_Cash John_Cash,United States country music singer and songwriter (1932-2003)
+3169,Cashmere_goat Kashmir_goat,Himalayan goat having a silky undercoat highly prized as cashmere wool
+3170,Casmerodius genus_Casmerodius,a white egrets
+3171,Caspar Gaspar,(New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus
+3172,Casper,a city of east central Wyoming on the North Platte river
+3173,Caspian Caspian_Sea,a large saltwater lake between Iran and Russia fed by the Volga River; the largest inland body of water in the world
+3174,Cassandra,(Greek mythology) a prophetess in Troy during the Trojan War whose predictions were true but were never believed
+3175,Cassegrainian_telescope Gregorian_telescope,a reflecting telescope that has a paraboloidal primary mirror and a hyperboloidal secondary mirror; light is brought to a focus through an aperture in the center of the primary mirror
+3176,Cassin's_kingbird Tyrannus_vociferans,a kingbird seen in the southwestern United States; largely grey with a yellow abdomen
+3177,Cassiope genus_Cassiope,low tufted evergreen shrubs of colder parts of north temperate regions having moss-like foliage and nodding white or pink flowers
+3178,Cassiopeia,(Greek mythology) the wife of Cepheus and mother of Andromeda
+3179,Cassiopeia,a W-shaped constellation in the northern hemisphere near Polaris
+3180,Cassirer Ernst_Cassirer,German philosopher concerned with concept formation in the human mind and with symbolic forms in human culture generally (1874-1945)
+3181,Cassius Cassius_Longinus Gaius_Cassius_Longinus,prime mover in the conspiracy against Julius Caesar (died in 42 BC)
+3182,Castanea genus_Castanea,chestnuts; chinkapins
+3183,Castanopsis genus_Castanopsis,evergreen trees and shrubs of warm regions valued for their foliage; southeastern United States and eastern Australia and northern New Zealand
+3184,Castanospermum genus_Castanospermum,a rosid dicot genus of the subfamily Papilionoideae having one species: Moreton Bay chestnut
+3185,Castile Castilla,a region of central Spain; a former kingdom that comprised most of modern Spain and united with Aragon to form Spain in 1479
+3186,Castilian,the Spanish language as spoken in Castile
+3187,Castilleja genus_Castilleja Castilleia genus_Castilleia,genus of western North and South American perennials often partially parasitic on roots of grasses
+3188,Castillian,a native or inhabitant of Castile
+3189,Castor Alpha_Geminorum,a multiple star with 6 components; second brightest in Gemini; close to Pollux
+3190,Castor genus_Castor,type genus of the Castoridae: beavers
+3191,Castoridae family_Castoridae,beavers
+3192,Castoroides genus_Castoroides,extinct beavers of the Pleistocene; of eastern and southern United States
+3193,Castries,a port on the island of Saint Lucia; capital and largest city of Saint Lucia
+3194,Castro Fidel_Castro Fidel_Castro_Ruz,Cuban socialist leader who overthrew a dictator in 1959 and established a Marxist socialist state in Cuba (born in 1927)
+3195,Castroism,a form of communism developed in Cuba by Fidel Castro
+3196,Casualty_Care_Research_Center CCRC,an agency in the Department of Defense that is a national center for research on all aspects of injury control and casualty care
+3197,Casuaridae family_Casuaridae,a family of large ostrich-like birds including cassowaries
+3198,Casuariiformes order_Casuariiformes,a ratite bird order: cassowaries and emus
+3199,Casuarinaceae family_Casuarinaceae,one genus: genus Casuarina
+3200,Casuarinales order_Casuarinales,order of chiefly Australian trees and shrubs comprising the casuarinas; 1 family: Casuarinaceae
+3201,Casuarius genus_Casuarius,type and sole genus of the Casuaridae: cassowaries
+3202,Catacala genus_Catacala,moths whose larvae are cutworms: underwings
+3203,Catalan,a native or inhabitant of Catalonia
+3204,Catalan,the Romance language spoken in Catalonia in eastern Spain (related to Spanish and Occitan)
+3205,Catalina_cherry Prunus_lyonii,evergreen shrub or small tree found on Catalina Island (California)
+3206,Catalonia,a region of northeastern Spain
+3207,Catalpa_bignioides,catalpa tree of southern United States
+3208,Catalpa_speciosa,catalpa tree of central United States
+3209,Cataract_Canyon,a tributary of the Grand Canyon
+3210,Catasetum genus_Catasetum,genus of tropical American orchids having showy male and female flowers usually on separate inflorescences
+3211,Catawba,a member of the Siouan people formerly living in the Carolinas
+3212,Catawba,slipskin grape; a reddish American table grape
+3213,Catawba,the Siouan language spoken by the Catawba
+3214,Caterpillar cat,a large tracked vehicle that is propelled by two endless metal belts; frequently used for moving earth in construction and farm work
+3215,Catha genus_Catha,a genus of African evergreen shrubs characterized by thick leaves and white flowers
+3216,Catha_edulis,a shrub that is cultivated by Arabs for its leaves which are chewed or used to make tea
+3217,Catharacta genus_Catharacta,skuas
+3218,Catharanthus genus_Catharanthus,small genus of erect annual or perennial herbs native to Madagascar; widely naturalized in the tropics; formerly included in genus Vinca
+3219,Cathartes genus_Cathartes,type genus of the Cathartidae: turkey vultures
+3220,Cathartidae family_Cathartidae,condors; turkey buzzards; king vultures
+3221,Cathaya,Chinese evergreen conifer discovered in 1955; not yet cultivated elsewhere
+3222,Cather Willa_Cather Willa_Sibert_Cather,United States writer who wrote about frontier life (1873-1947)
+3223,Catherine_I,empress of Russia who succeeded her husband Peter the Great (1684-1727)
+3224,Catherine_II Catherine Catherine_the_Great,empress of Russia who greatly increased the territory of the empire (1729-1796)
+3225,Catherine_de_Medicis,queen of France as the wife of Henry II and regent during the minority of her son Charles IX (1519-1589)
+3226,Catherine_of_Aragon Catherine,first wife of Henry VIII; Henry VIII's divorce from her was the initial step of the Reformation in England (1485-1536)
+3227,Catholic,a member of a Catholic church
+3228,Catholic_Church,any of several churches claiming to have maintained historical continuity with the original Christian Church
+3229,Catholic_school,a parochial school maintained by the Catholic Church
+3230,Catholicism Catholicity,the beliefs and practices of a Catholic Church
+3231,Catholicos,the ecclesiastical title of the leaders of the Nestorian and Armenian churches
+3232,Catoptrophorus genus_Catoptrophorus,willet
+3233,Catostomidae family_Catostomidae,suckers; closely related to the family Cyprinidae
+3234,Catostomus genus_Catostomus,type genus of the family Catostomidae
+3235,Catskills Catskill_Mountains,a range of the Appalachians to the west of the Hudson in southeastern New York; includes many popular resort areas
+3236,Cattell James_McKeen_Cattell,American psychologist and editor (1860-1944)
+3237,Cattell Ray_Cattell R._B._Cattell Raymond_B._Cattell Raymond_Bernard_Cattell,American psychologist (born in England) who developed a broad theory of human behavior based on multivariate research (1905-1998)
+3238,Catullus Gaius_Valerius_Catullus,Roman lyric poet remembered for his love poems to an aristocratic Roman woman (84-54 BC)
+3239,Caucasia Caucasus,a large region between the Black and Caspian seas that contains the Caucasus Mountains; oil is its major resource
+3240,Caucasian Caucasian_language,a number of languages spoken in the Caucasus that are unrelated to languages spoken elsewhere
+3241,Caucasian_walnut Pterocarya_fraxinifolia,medium-sized Caucasian much-branched tree distinguished from other walnut trees by its winged fruit
+3242,Caucasus Caucasus_Mountains,the mountain range in Caucasia between the Black Sea and the Caspian Sea that forms part of the traditional border between Europe and Asia
+3243,Caudine_Forks,a battle in the Apennines in 321 BC in which the Samnites defeated the Romans
+3244,Caulophyllum genus_Caulophyllum,blue cohosh
+3245,Cavalier Royalist,a royalist supporter of Charles I during the English Civil War
+3246,Cavell Edith_Cavell Edith_Louisa_Cavell,English nurse who remained in Brussels after the German occupation in order to help Allied prisoners escape; was caught and executed by the Germans (1865-1915)
+3247,Cavendish Henry_Cavendish,British chemist and physicist who established that water is a compound of hydrogen and oxygen and who calculated the density of the earth (1731-1810)
+3248,Cavia genus_Cavia,type genus of the Caviidae: guinea pigs
+3249,Caviidae family_Caviidae,a family of Hystricomorpha
+3250,Caxton William_Caxton,English printer who in 1474 printed the first book in English (1422-1491)
+3251,Cayman_Islands,a British colony in the Caribbean to the northwest of Jamaica; an international banking center
+3252,Cayman_Islands_dollar,the basic unit of money in the Cayman Islands
+3253,Cayuga,a member of an Iroquoian people formerly living around Cayuga Lake in New York State
+3254,Cayuga,the Iroquoian language spoken by the Cayuga
+3255,Cayuga_Lake Lake_Cayuga,a glacial lake in central New York; the longest of the Finger Lakes
+3256,Cebidae family_Cebidae,all the New World monkeys except marmosets and tamarins
+3257,Cebu,one of the Visayan islands of the central Philippines; important for its fine harbor
+3258,Cebu Cebu_City,an important seaport on the island of Cebu in the Philippines
+3259,Cebuan,inhabitant of the island of Cebu; a member of the Visayan people of the Philippines
+3260,Cebuan Cebuano,language of the people of Cebu in the Philippines; its lexicon contributes to the official language of the Philippines
+3261,Cebuella genus_Cebuella,pygmy marmosets
+3262,Cebus genus_Cebus,type genus of the Cebidae
+3263,Cecidomyidae family_Cecidomyidae,gall midges
+3264,Cecropia genus_Cecropia,large genus of tropical American trees that yield a bast fiber used for cordage and bark used in tanning; milky juice yields caoutchouc
+3265,Cecropiaceae family_Cecropiaceae,in some classifications included in family Moraceae
+3266,Cedar_Rapids,a city in eastern Iowa
+3267,Cedrela genus_Cedrela,tropical American trees
+3268,Cedrus genus_Cedrus,true cedars
+3269,Ceiba genus_Ceiba,tropical American trees with palmately compound leaves and showy bell-shaped flowers
+3270,Celastraceae family_Celastraceae spindle-tree_family staff-tree_family,trees and shrubs and woody vines usually having bright-colored fruits
+3271,Celastrus genus_Celastrus,genus of woody vines and erect shrubs (type genus of the Celastraceae) that is native chiefly to Asia and Australia: includes bittersweet
+3272,Celebes Sulawesi,a mountainous island in eastern Indonesia
+3273,Celestial_City City_of_God Heavenly_City Holy_City,phrases used to refer to Heaven; "the Celestial City was Christian's goal in Bunyan's `Pilgrim's Progress'"
+3274,Cellini Benvenuto_Cellini,Italian sculptor (1500-1571)
+3275,Celosia genus_Celosia,annual or perennial herbs or vines of tropical and subtropical America and Asia and Africa
+3276,Celsius Anders_Celsius,Swedish astronomer who devised the centigrade thermometer (1701-1744)
+3277,Celsius_scale international_scale centigrade_scale,a temperature scale that defines the freezing point of water as 0 degrees and the boiling point of water as 100 degrees
+3278,Celt Kelt,a member of a European people who once occupied Britain and Spain and Gaul prior to Roman times
+3279,Celtic Celtic_language,a branch of the Indo-European languages that (judging from inscriptions and place names) was spread widely over Europe in the pre-Christian era
+3280,Celtic_cross,a Latin cross with a ring surrounding the intersection
+3281,Celtic_deity,a deity worshipped by the Celts
+3282,Celtis genus_Celtis,large genus of trees and shrubs with berrylike fruit
+3283,Cenchrus genus_Cenchrus,a genus of grasses of the family Gramineae that have burs
+3284,Cenozoic Cenozoic_era Age_of_Mammals,approximately the last 63 million years
+3285,Centaurea genus_Centaurea,knapweed; star thistle
+3286,Centaurium genus_Centaurium,genus of low-growing herbs mostly of northern hemisphere having flowers with protruding spirally twisted anthers
+3287,Centaurus Centaur,a conspicuous constellation in the southern hemisphere near the Southern Cross
+3288,Center_for_Disease_Control_and_Prevention CDC,a federal agency in the Department of Health and Human Services; located in Atlanta; investigates and diagnoses and tries to control or prevent diseases (especially new and unusual diseases)
+3289,Centigrade_thermometer,a thermometer calibrated in degrees centigrade
+3290,Central_African_Republic Central_Africa,a landlocked country in central Africa; formerly under French control; became independent in 1960
+3291,Central_African_Republic_franc,the basic unit of money in the Central African Republic
+3292,Central_America,the isthmus joining North America and South America; extends from the southern border of Mexico to the northern border of Colombia
+3293,Central_America,the nations of Central America collectively
+3294,Central_American,a native or inhabitant of Central America
+3295,Central_American_country Central_American_nation,any one of the countries occupying Central America; these countries (except for Belize and Costa Rica) are characterized by low per capita income and unstable governments
+3296,Central_American_strap_fern narrow-leaved_strap_fern Campyloneurum_augustifolium,fern with shorter and narrower leaves than Florida strap fern; Florida to West Indies and Mexico and south to Argentina
+3297,Central_Dravidian,a Dravidian language spoken primarily in central India
+3298,Central_Intelligence_Agency CIA,an independent agency of the United States government responsible for collecting and coordinating intelligence and counterintelligence activities abroad in the national interest; headed by the Director of Central Intelligence under the supervision of the President and National Security Council
+3299,Central_Intelligence_Machinery CIM,the United Kingdom's central unit for the tasking and coordination and funding of intelligence and security agencies
+3300,Central_Park,a large park in Manhattan
+3301,Central_Powers,in World War I the alliance of Germany and Austria-Hungary and other nations allied with them in opposing the Allies
+3302,Central_Time Central_Standard_Time CST,standard time in the 6th time zone west of Greenwich, reckoned at the 90th meridian; used in the central United States
+3303,Centranthus genus_Centranthus,genus of southern European herbs and subshrubs
+3304,Centrarchidae family_Centrarchidae,sunfish family
+3305,Centre,a low-lying region in central France
+3306,Centriscidae family_Centriscidae,shrimpfishes
+3307,Centrocercus genus_Centrocercus,sage grouse
+3308,Centrolobium genus_Centrolobium,a genus of Centrolobium
+3309,Centropomidae family_Centropomidae,a family of fish or the order Perciformes including robalos
+3310,Centropomus genus_Centropomus,type genus of the Centropomidae: snooks
+3311,Centropristis genus_Centropristis,sea basses
+3312,Centropus genus_Centropus,a genus of Cuculidae
+3313,Centrosema genus_Centrosema,a genus of chiefly tropical American vines of the family Leguminosae having trifoliate leaves and large flowers
+3314,Centrospermae group_Centrospermae,used in former classification systems; approximately synonymous with order Caryophyllales
+3315,Centunculus genus_Centunculus,a dicotyledonous genus of the family Primulaceae
+3316,Cephalanthera genus_Cephalanthera,small genus of temperate Old World terrestrial orchids
+3317,Cephalobidae family_Cephalobidae,a family of Nematoda
+3318,Cephalochordata subphylum_Cephalochordata,lancelets
+3319,Cephalopoda class_Cephalopoda,octopuses; squids; cuttlefish; pearly nautilus
+3320,Cephalopterus genus_Cephalopterus,a genus of Cotingidae
+3321,Cephalotaceae family_Cephalotaceae,a family of plants of order Rosales; coextensive with the genus Cephalotus
+3322,Cephalotaxaceae family_Cephalotaxaceae plum-yew_family,a family of Cephalotaxaceae
+3323,Cephalotaxus genus_Cephalotaxus,the genus of Cephalotaxus (see plum-yews)
+3324,Cephalotus genus_Cephalotus,one species: Australian pitcher plant
+3325,Cepheus,(Greek mythology) king of Ethiopia and husband of Cassiopeia
+3326,Cepheus,a faint constellation in the northern hemisphere near Cassiopeia and the pole star
+3327,Cepphus genus_Cepphus,a genus of birds including: guillemots
+3328,Cerambycidae family_Cerambycidae,long-horned beetles
+3329,Cerapteryx genus_Cerapteryx,antler moths
+3330,Cerastium genus_Cerastium,mouse-eared chickweed
+3331,Ceratitis genus_Ceratitis,Mediterranean fruit flies
+3332,Ceratodontidae family_Ceratodontidae,lungfishes having hornlike ridges on the teeth
+3333,Ceratonia genus_Ceratonia,carobs
+3334,Ceratopetalum genus_Ceratopetalum,a dicotyledonous genus of the family Cunoniaceae
+3335,Ceratophyllaceae family_Ceratophyllaceae,coextensive with the genus Ceratophyllum: hornworts
+3336,Ceratophyllum genus_Ceratophyllum,constituting the family Ceratophyllaceae: hornworts
+3337,Ceratopogon genus_Ceratopogon,type genus of the Ceratopogonidae
+3338,Ceratopogonidae family_Ceratopogonidae,biting midges; sand flies
+3339,Ceratopsia suborder_Ceratopsia,horned dinosaurs
+3340,Ceratopsidae family_Ceratopsidae,American ceratopsian dinosaurs
+3341,Ceratopteris genus_Ceratopteris,water ferns
+3342,Ceratostomataceae family_Ceratostomataceae,fungi having carbonous perithecia with long necks
+3343,Ceratostomella genus_Ceratostomella,genus of fungi forming continuous hyaline spores
+3344,Ceratotherium genus_Ceratotherium,African genus
+3345,Cerberus hellhound,(Greek mythology) the three-headed dog guarding the entrance to Hades; son of Typhon
+3346,Cercidiphyllaceae family_Cercidiphyllaceae,one genus
+3347,Cercidiphyllum genus_Cercidiphyllum,one species: katsura tree
+3348,Cercidium genus_Cercidium,spiny shrubs or small trees sometimes placed in genus Parkinsonia: paloverde
+3349,Cercis genus_Cercis,deciduous shrubs and trees of eastern Asia, southern Europe and the United States
+3350,Cercocebus genus_Cercocebus,mangabeys
+3351,Cercopidae family_Cercopidae,froghoppers or spittlebugs
+3352,Cercopithecidae family_Cercopithecidae,Old World monkeys: guenon; baboon; colobus monkey; langur; macaque; mandrill; mangabey; patas; proboscis monkey
+3353,Cercopithecus genus_Cercopithecus,type genus of the Cercopithecidae: guenons
+3354,Cercospora genus_Cercospora,form genus of imperfect fungi that are leaf parasites with long slender spores
+3355,Cercosporella genus_Cercosporella,form genus of imperfect fungi lacking pigment in the spores and conidiophores
+3356,Ceres,(Roman mythology) goddess of agriculture; counterpart of Greek Demeter
+3357,Ceres,the largest asteroid and the first discovered
+3358,Cereus genus_Cereus,genus of much-branched treelike or shrubby cacti with pronounced ribs and rounded needlelike spines and nocturnal flowers usually white
+3359,Ceroxylon genus_Ceroxylon,wax palms
+3360,Certhia genus_Certhia,type genus of the Certhiidae
+3361,Certhiidae family_Certhiidae,creepers
+3362,Cervantes Miguel_de_Cervantes Cervantes_Saavedra Miguel_de_Cervantes_Saavedra,Spanish writer best remembered for `Don Quixote' which satirizes chivalry and influenced the development of the novel form (1547-1616)
+3363,Cervidae family_Cervidae,deer: reindeer; moose or elks; muntjacs; roe deer
+3364,Cervus genus_Cervus,the type genus of the Cervidae
+3365,Ceryle genus_Ceryle,a genus of birds of the family Alcedinidae
+3366,Cestida order_Cestida,ctenophore having short tentacles; one family
+3367,Cestidae family_Cestidae,coextensive with the order Cestida; ctenophores having a greatly flattened and elongated body
+3368,Cestoda class_Cestoda,tapeworms
+3369,Cestrum genus_Cestrum,genus of fragrant tropical American shrubs
+3370,Cestum genus_Cestum,Venus's girdle
+3371,Cetacea order_Cetacea,an order of Eutheria
+3372,Ceterach genus_Ceterach,small genus of Old World ferns; superseded in some classification systems which place plants of this genus in e.g. genera Asplenium and Pleurosorus
+3373,Cetonia genus_Cetonia,a genus of Cetoniidae
+3374,Cetoniidae subfamily_Cetoniidae,considered a separate family in some classification systems
+3375,Cetorhinidae family_Cetorhinidae,in some older classifications considered the family of the basking sharks
+3376,Cetorhinus genus_Cetorhinus,comprising only the basking sharks; in some classifications considered the type genus of a separate family Cetorhinidae
+3377,Cetraria genus_Cetraria,foliose lichens chiefly of northern latitudes
+3378,Cetus,a large constellation on the equator near Pisces and Aquarius
+3379,Ceylon,an island in the Indian Ocean off the southeastern coast of India
+3380,Ceylon_bowstring_hemp Sansevieria_zeylanica,plant having thick fibrous leaves transversely banded in light and dark green
+3381,Ceylonite pleonaste,a dark-colored spinel containing iron
+3382,Cezanne Paul_Cezanne,French Post-impressionist painter who influenced modern art (especially cubism) by stressing the structural components latent in nature (1839-1906)
+3383,Chabad Chabad_Hasidism,a form of Hasidism practiced by Lithuanian and Russian Jews under communist rule; the beliefs and practices of the Lubavitch movement
+3384,Chablis,a town in north central France noted for white Burgundy wines
+3385,Chablis white_Burgundy,dry white table wine of Chablis, France or a wine resembling it
+3386,Chad Chadic Chadic_language,a family of Afroasiatic tonal languages (mostly two tones) spoken in the regions west and south of Lake Chad in north central Africa
+3387,Chad Republic_of_Chad Tchad,a landlocked desert republic in north-central Africa; was under French control until 1960
+3388,Chadian,a native or inhabitant of Chad
+3389,Chadian_franc,the basic unit of money in Chad
+3390,Chaenomeles genus_Chaenomeles,flowering quince
+3391,Chaenopsis genus_Chaenopsis,a genus of fish of the family Clinidae including pikeblennies
+3392,Chaeronea,a battle in which Philip II of Macedon defeated the Athenians and Thebans (338 BC) and also Sulla defeated Mithridates (86 BC)
+3393,Chaetodipterus genus_Chaetodipterus,a genus of Ephippidae
+3394,Chaetodontidae family_Chaetodontidae,butterfly fishes
+3395,Chaetognatha phylum_Chaetognatha,arrowworms: a group of small active transparent marine worms
+3396,Chagall Marc_Chagall,French painter (born in Russia) noted for his imagery and brilliant colors (1887-1985)
+3397,Chagatai Jagatai Jaghatai Eastern_Turki,a Turkic literary language of medieval central Asia (named for one of the sons of Genghis Khan)
+3398,Chain Ernst_Boris_Chain Sir_Ernst_Boris_Chain,British biochemist (born in Germany) who isolated and purified penicillin, which had been discovered in 1928 by Sir Alexander Fleming (1906-1979)
+3399,Chait Caitra,the first Hindu calendar month (corresponding to March in the Gregorian calendar)
+3400,Chalcedon Council_of_Chalcedon,the fourth ecumenical council in 451 which defined the two natures (human and divine) of Christ
+3401,Chalcedon Kadikoy,a former town on the Bosporus (now part of Istanbul); site of the Council of Chalcedon
+3402,Chalcididae family_Chalcididae Chalcidae family_Chalcidae,an arthropod family including: chalcidflies
+3403,Chalcis genus_Chalcis,type genus of the Chalcididae
+3404,Chalcostigma genus_Chalcostigma,thornbills
+3405,Chaldea Chaldaea,an ancient region of Mesopotamia lying between the Euphrates delta and the Persian Gulf and the Arabian Desert; settled in 1000 BC and destroyed by the Persians in 539 BC; reached the height of its power under Nebuchadnezzar II
+3406,Chaldean Chaldaean Chaldee,a wise man skilled in occult learning
+3407,Chaldean Chaldaean Chaldee,an inhabitant of ancient Chaldea
+3408,Chalons Chalons-sur-Marne,the battle in which Attila the Hun was defeated by the Romans and Visigoths in 451
+3409,Chamaea genus_Chamaea,a genus of Paridae
+3410,Chamaecrista genus_Chamaecrista,genus of tropical herbs or subshrubs having sensitive leaves and suddenly dehiscing pods; some species placed in genus Cassia
+3411,Chamaecyparis genus_Chamaecyparis,a genus of Chamaecyparis
+3412,Chamaecytisus genus_Chamaecytisus,small late-flowering trees or subshrubs having yellow to red flowers and leathery or woody pods; often especially formerly included in genus Cytisus
+3413,Chamaedaphne genus_Chamaedaphne,one species: leatherleaf
+3414,Chamaeleo genus_Chamaeleo genus_Chamaeleon,type genus of the Chamaeleontidae
+3415,Chamaeleon Chameleon,a faint constellation in the polar region of the southern hemisphere near Apus and Mensa
+3416,Chamaeleontidae family_Chamaeleontidae Chamaeleonidae family_Chamaeleonidae Rhiptoglossa family_Rhiptoglossa,Old World chameleons; in some classifications they are considered a superfamily of Sauria
+3417,Chamaemelum genus_Chamaemelum,small genus of plants sometimes included in genus Anthemis: chamomile
+3418,Chamberlain Neville_Chamberlain Arthur_Neville_Chamberlain,British statesman who as Prime Minister pursued a policy of appeasement toward fascist Germany (1869-1940)
+3419,Chambers William_Chambers Sir_William_Chambers,English architect (1723-1796)
+3420,Champagne Champagne-Ardenne,a region of northeastern France
+3421,Champaign,a university town in east central Illinois adjoining Urbana
+3422,Champlain Samuel_de_Champlain,French explorer in Nova Scotia who established a settlement on the site of modern Quebec (1567-1635)
+3423,Champollion Jean_Francois_Champollion,Frenchman and Egyptologist who studied the Rosetta Stone and in 1821 became the first person to decipher Egyptian hieroglyphics (1790-1832)
+3424,Champs_Elysees,a major avenue in Paris famous for elegant shops and cafes
+3425,Chancellor_of_the_Exchequer Chancellor,the British cabinet minister responsible for finance
+3426,Chancellorsville,a village in northeastern Virginia
+3427,Chancellorsville,a major battle in the American Civil War (1863); the Confederates under Robert E. Lee defeated the Union forces under Joseph Hooker
+3428,Chandi,malevolent aspect of Devi; "the fierce"
+3429,Chandler Raymond_Chandler Raymond_Thornton_Chandler,United States writer of detective thrillers featuring the character of Philip Marlowe (1888-1959)
+3430,Chang_Jiang Changjiang Chang Yangtze Yangtze_River Yangtze_Kiang,the longest river of Asia; flows eastward from Tibet into the East China Sea near Shanghai
+3431,Chang_Kuo Chang_Kuo-lao,one of the 8 immortals of Taoism
+3432,Changtzu,a mountain in the central Himalayas on the border of Tibet and Nepal (24,780 feet high)
+3433,Channel_Island,any of a group of British islands in the English Channel off the northern coast of France
+3434,Channel_Islands_National_Park,a national park in California featuring sea birds and marine life
+3435,Channidae class_Channidae,snakeheads
+3436,Chao_Phraya,a river in Thailand formed by the confluence of the Nan and Ping Rivers; flows southward past Bangkok and empties into the Gulf of Thailand
+3437,Chaos,(Greek mythology) the most ancient of gods; the personification of the infinity of space preceding creation of the universe
+3438,Chapel_Hill,a town in central North Carolina; site of the University of North Carolina
+3439,Chaplin Charlie_Chaplin Sir_Charles_Spencer_Chaplin,English comedian and film maker; portrayed a downtrodden little man in baggy pants and bowler hat (1889-1977)
+3440,Chapman John_Chapman Johnny_Appleseed,United States pioneer who planted apple trees as he traveled (1774-1845)
+3441,Chapultepec,a pitched battle in the Mexican War that resulted in a major victory for American forces over Mexican forces at a locality south of Mexico City (1847)
+3442,Chara genus_Chara,green algae common in freshwater lakes of limestone districts
+3443,Characeae family_Characeae,green algae superficially resembling horsetail ferns: stoneworts
+3444,Characidae family_Characidae,tropical freshwater fishes of Africa and South America and Central America
+3445,Characinidae family_Characinidae,former name of the Characidae
+3446,Charadrii suborder_Charadrii,shorebirds: plovers; sandpipers; avocets; phalaropes; coursers; stone curlews
+3447,Charadriidae family_Charadriidae,plover family
+3448,Charadriiformes order_Charadriiformes,large diverse order of aquatic birds found along seacoasts and inland waters: shorebirds and coastal diving birds; most feed on anima life
+3449,Charadrius genus_Charadrius,type genus of the Charadriidae: plovers
+3450,Charales order_Charales,small order of macroscopic fresh and brackish water algae with a distinct axis: stoneworts
+3451,Charcot Jean_Martin_Charcot,French neurologist who tried to use hypnotism to cure hysteria (1825-1893)
+3452,Charcot-Marie-Tooth_disease hereditary_motor_and_sensory_neuropathy,a form of neuropathy that can begin between childhood and young adulthood; characterized by weakness and atrophy of the muscles of the hands and lower legs; progression is slow and individuals affected can have a normal life span; inheritance is X-linked recessive or X-linked dominant
+3453,Chardonnay Pinot_Chardonnay,dry white table wine resembling Chablis but made from Chardonnay grapes
+3454,Chardonnay chardonnay_grape,white wine grape
+3455,Chari-Nile,a group of Nilo-Saharan language spoken in parts of the Sudan and Zaire and Uganda and Tanzania
+3456,Charina genus_Charina,boas of western North America
+3457,Charlemagne Carolus Charles Charles_I Charles_the_Great,king of the Franks and Holy Roman Emperor; conqueror of the Lombards and Saxons (742-814)
+3458,Charleroi,city in southwestern Belgium; center of an industrial region
+3459,Charles Charles_I Charles_Stuart,son of James I who was King of England and Scotland and Ireland; was deposed and executed by Oliver Cromwell (1600-1649)
+3460,Charles Charles_II,King of England and Scotland and Ireland during the Restoration (1630-1685)
+3461,Charles Charles_II Charles_I Charles_the_Bald,as Charles II he was Holy Roman Emperor and as Charles I he was king of France (823-877)
+3462,Charles Charles_IX,King of France from 1560 to 1574 whose reign was dominated by his mother Catherine de Medicis (1550-1574)
+3463,Charles Charles_River,a river in eastern Massachusetts that empties into Boston Harbor and that separates Cambridge from Boston
+3464,Charles Charles_VII,King of France who began his reign with most of northern France under English control; after the intervention of Jeanne d'Arc the French were able to defeat the English and end the Hundred Years' War (1403-1461)
+3465,Charles Jacques_Charles Jacques_Alexandre_Cesar_Charles,French physicist and author of Charles's law which anticipated Gay-Lussac's law (1746-1823)
+3466,Charles Prince_Charles,the eldest son of Elizabeth II and heir to the English throne (born in 1948)
+3467,Charleston,a port city in southeastern South Carolina
+3468,Charleston,an American ballroom dance in syncopated rhythm; popular early in the 20th century
+3469,Charleston capital_of_West_Virginia,state capital of West Virginia in the central part of the state on the Kanawha river
+3470,Charlestown,a former town and present-day neighborhood of Boston; settled in 1629
+3471,Charlestown_Navy_Yard,the navy yard in Boston where the frigate `Constitution' is anchored
+3472,Charlotte Queen_City,the largest city in North Carolina; located in south central North Carolina
+3473,Charlottetown,the provincial capital and largest city of Prince Edward Island
+3474,Charolais,large white or cream-colored breed from France
+3475,Charon,(Greek mythology) the ferryman who brought the souls of the dead across the river Styx or the river Acheron to Hades
+3476,Charophyceae class_Charophyceae,in some classifications: contains only the order Charales
+3477,Charronia genus_Charronia,a genus of Mustelidae
+3478,Chartism,the principles of a body of 19th century English reformers who advocated better social and economic conditions for working people
+3479,Chartist,a 19th century English reformer who advocated better social and economic conditions for working people
+3480,Chartres,a town in northern France that is noted for its Gothic Cathedral
+3481,Chartres_Cathedral,a Gothic cathedral in northern France; built in 13th century
+3482,Chartreuse,aromatic green or yellow liqueur flavored with orange peel and hyssop and peppermint oils; made at monastery near Grenoble, France
+3483,Charybdis,(Greek mythology) a ship-devouring whirlpool lying on the other side of a narrow strait from Scylla
+3484,Chase Salmon_P._Chase Salmon_Portland_Chase,United States politician and jurist who served as chief justice of the United States Supreme Court (1808-1873)
+3485,Chateaubriand,a very thick center cut of beef tenderloin
+3486,Chateaubriand Francois_Rene_Chateaubriand Vicomte_de_Chateaubriand,French statesman and writer; considered a precursor of the romantic movement in France (1768-1848)
+3487,Chateura genus_Chateura,a genus of Apodidae
+3488,Chattahoochee Chattahoochee_River,a river rising in northern Georgia and flowing southwest and south to join the Flint River at the Florida border where they form the Apalachicola River
+3489,Chattanooga,a city in eastern Tennessee
+3490,Chattanooga battle_of_Chattanooga,in the American Civil War (1863) the Union armies of Hooker, Thomas, and Sherman under the command of Ulysses S. Grant won a decisive victory over the Confederate Army under Braxton Bragg
+3491,Chaucer Geoffrey_Chaucer,English poet remembered as author of the Canterbury Tales (1340-1400)
+3492,Chauna genus_Chauna,crested screamers
+3493,Chavez Carlos_Chavez,Mexican composer of nationalistic works using themes from Indian folk music (1899-1978)
+3494,Chavez Cesar_Chavez Cesar_Estrada_Chavez,United States labor leader who organized farm workers (born 1927)
+3495,Chechen,a native or inhabitant of Chechnya
+3496,Chechen,a northern Caucasian language spoken by the Chechen
+3497,Chechnya Chechenia Chechen_Republic,an autonomous republic in southwestern Russia in the northern Caucasus Mountains bordering on Georgia; declared independence from the USSR in 1991 but Russian troops invaded and continue to prosecute a relentless military campaign in the largely Muslim republic
+3498,Cheddar,a village in southwestern England where cheddar cheese was first made
+3499,Cheever John_Cheever,United States writer of novels and short stories (1912-1982)
+3500,Cheilanthes genus_Cheilanthes,small evergreen ferns: lipferns; in some classifications placed in family Polypodiaceae or Adiantaceae
+3501,Cheiranthus genus_Cheiranthus,Old World perennial plants grown for their showy flowers
+3502,Chekhov Chekov Anton_Chekhov Anton_Chekov Anton_Pavlovich_Chekhov Anton_Pavlovich_Chekov,Russian dramatist whose plays are concerned with the difficulty of communication between people (1860-1904)
+3503,Chelicerata superclass_Chelicerata,spiders; scorpions; horseshoe crabs
+3504,Chelidonium genus_Chelidonium,one species: greater celandine
+3505,Chelifer genus_Chelifer,a genus of Chelonethida
+3506,Chelone genus_Chelone,herbaceous perennials: shellflower
+3507,Chelonethida order_Chelonethida Pseudoscorpionida order_Pseudoscorpionida Pseudoscorpiones order_Pseudoscorpiones,false scorpions
+3508,Chelonia genus_Chelonia,green turtles
+3509,Chelonia order_Chelonia Testudinata order_Testudinata Testudines order_Testudines,tortoises and turtles
+3510,Cheloniidae family_Cheloniidae Chelonidae family_Chelonidae,green turtles; hawksbills
+3511,Chelyabinsk,a city in the Asian part of Russia
+3512,Chelydra genus_Chelydra,snapping turtles
+3513,Chelydridae family_Chelydridae,snapping turtles
+3514,Chemakuan,a group of Mosan languages spoken in Washington
+3515,Chemakum,a Chemakuan language spoken by the Chemakum
+3516,Chemical_Weapons_Convention,a global treaty banning the production or acquisition or stockpiling or transfer or use of chemical weapons
+3517,Chemnitz Karl-Marx-Stadt,a city in east central Germany; formerly called Karl-Marx-Stadt until 1990; noted for textile manufacturing
+3518,Chemnitzer_concertina,a hand-held and bellows-driven accordion
+3519,Chen subgenus_Chen,wild goose having white adult plumage
+3520,Chenin_blanc,white grape grown especially in California and the lower Loire valley of France
+3521,Chenin_blanc,made in California and the Loire valley in France
+3522,Chennai Madras,a city in Tamil Nadu on the Bay of Bengal; formerly Madras
+3523,Chenopodiaceae family_Chenopodiaceae goosefoot_family,includes spinach and beets
+3524,Chenopodium genus_Chenopodium,goosefoot; pigweed
+3525,Cheops Khufu,Egyptian Pharaoh of the 27th century BC who commissioned the Great Pyramid at Giza
+3526,Cherbourg,a port town in northwestern France on the English Channel; site of a naval base
+3527,Cheremis Cheremiss Mari,a member of a rural Finnish people living in eastern Russia
+3528,Cheremis Cheremiss Mari,the Finnic language spoken by the Cheremis
+3529,Cherepovets,a city of east central Russia to the north of Moscow
+3530,Chernobyl,a city in north central Ukraine; site of a major disaster at a nuclear power plant (26 April 1986)
+3531,Cherokee,a member of an Iroquoian people formerly living in the Appalachian Mountains but now chiefly in Oklahoma
+3532,Cherokee,the Iroquoian language spoken by the Cherokee
+3533,Cherokee_rose Rosa_laevigata,Chinese climbing rose with fragrant white blossoms
+3534,Cherubini Luigi_Cherubini Maria_Luigi_Carlo_Zenobio_Cherubini,Italian composer of church music and operas (1760-1842)
+3535,Chesapeake_Bay,a large inlet of the North Atlantic between Virginia and Maryland; fed by Susquehanna River
+3536,Chesapeake_Bay_retriever,American breed having a short thick oily coat ranging from brown to light tan
+3537,Cheshire_cat,a fictional cat with a broad fixed smile on its face; created by Lewis Carroll
+3538,Cheshire_cheese,a mild yellow English cheese with a crumbly texture
+3539,Chester,a city of southeastern Pennsylvania on the Delaware river (an industrial suburb of Philadelphia)
+3540,Chesterfield Fourth_Earl_of_Chesterfield Philip_Dormer_Stanhope,suave and witty English statesman remembered mostly for letters to his son (1694-1773)
+3541,Chesterton G._K._Chesterton Gilbert_Keith_Chesterton,conservative English writer of the Roman Catholic persuasion; in addition to volumes of criticism and polemics he wrote detective novels featuring Father Brown (1874-1936)
+3542,Chevalier Maurice_Chevalier,French actor and cabaret singer (1888-1972)
+3543,Cheviot,hardy hornless sheep of the Cheviot Hills noted for its short thick wool
+3544,Cheviots Cheviot_Hills,a range of hills on the border between England and Scotland
+3545,Chewa Cewa Chichewa,a member of the Bantu-speaking people of Malawi and eastern Zambia and northern Zimbabwe
+3546,Cheyenne,a member of a North American Indian people living on the western plains (now living in Oklahoma and Montana)
+3547,Cheyenne,the Algonquian language spoken by the Cheyenne
+3548,Cheyenne capital_of_Wyoming,the capital and largest city of Wyoming; located in the southeastern corner of the state
+3549,ChiMwini,a Bantu language spoken in southern Somalia
+3550,Chiacoan_peccary,a recently discovered large wild pig of Paraguay
+3551,Chian_turpentine,a turpentine exuded by the terebinth
+3552,Chiang_Kai-shek Chiang_Chung-cheng,Chinese military and political figure; in the Chinese civil war that followed World War II he was defeated by the Chinese communists and in 1949 was forced to withdraw to Taiwan where he served as president of Nationalist China until his death (1897-1975)
+3553,Chianti,dry red Italian table wine from the Chianti region of Tuscany
+3554,Chicago Windy_City,largest city in Illinois; a bustling Great Lakes port that extends 26 miles along the southwestern shoreline of Lake Michigan
+3555,Chicano,a person of Mexican descent
+3556,Chichewa,the Bantu language of the Chewa of east central Africa
+3557,Chickamauga battle_of_Chickamauga,a Confederate victory in the American Civil War (1863); Confederate forces under Braxton Bragg defeated Union forces
+3558,Chickasaw,a member of the Muskhogean people formerly living in northern Mississippi
+3559,Chickasaw,the Muskhogean language of the Chickasaw
+3560,Chicken_Little,a fictional character who was hit on the head with an acorn and believed that the sky was falling
+3561,Chief_Constable,the head of the police force in a county (or similar area)
+3562,Chief_Secretary,a member of the British Cabinet
+3563,Chihuahua,a city in northern Mexico in the state of Chihuahua; commercial center of northern Mexico
+3564,Chihuahua,a state in northern Mexico; mostly high plateau
+3565,Chihuahua,an old breed of tiny short-haired dog with protruding eyes from Mexico held to antedate Aztec civilization
+3566,Chihuahuan_Desert,a desert in western Texas, New Mexico, Arizona, and northern Mexico
+3567,Chihuahuan_spotted_whiptail Cnemidophorus_exsanguis,having longitudinal stripes overlaid with light spots; upland lizard of United States southwest and Mexico
+3568,Chile Republic_of_Chile,a republic in southern South America on the western slopes of the Andes on the south Pacific coast
+3569,Chile_bonito Chilean_bonito Pacific_bonito Sarda_chiliensis,common bonito of Pacific coast of the Americas; its dark oily flesh cans well
+3570,Chilean,a native or inhabitant of Chile
+3571,Chilean_cedar Austrocedrus_chilensis,a small South American evergreen having coppery bark and pretty foliage
+3572,Chilean_firebush Chilean_flameflower Embothrium_coccineum,grown for outstanding display of brilliant usually scarlet-crimson flowers; Andes
+3573,Chilean_jasmine Mandevilla_laxa,woody vine of Argentina grown as an ornamental for its glossy leaves and racemes of large fragrant funnel-shaped creamy-white flowers
+3574,Chilean_monetary_unit,monetary unit in Chile
+3575,Chilean_nut Chile_nut Chile_hazel Chilean_hazelnut Guevina_heterophylla Guevina_avellana,Chilean shrub bearing coral-red fruit with an edible seed resembling a hazelnut
+3576,Chilean_peso peso,the basic unit of money in Chile; equal to 100 centesimos
+3577,Chilean_rimu Lepidothamnus_fonkii,about the hardiest Podocarpaceae species; prostrate spreading shrub similar to mountain rimu; mountains of southern Chile
+3578,Chiloe,the largest Chilean island and the only one to be settled; located off south-central Chile
+3579,Chilomastix genus_Chilomastix,flagellates parasitic in intestines of vertebrates including humans
+3580,Chilomeniscus genus_Chilomeniscus,sand snakes
+3581,Chilomycterus genus_Chilomycterus,burrfishes
+3582,Chilopoda class_Chilopoda,arthropods having the trunk composed of numerous somites each bearing one pair of legs: centipedes
+3583,Chilopsis genus_Chilopsis,one species: desert willow
+3584,Chimaeridae family_Chimaeridae,a family of Holocephali
+3585,Chimakum,a member of the Salishan people living in northwestern Washington
+3586,Chimaphila genus_Chimaphila,small genus of evergreen herbs with long creeping rootstocks and shining leaves; North America; Europe; east Asia
+3587,Chimariko,a member of an extinct North American Indian people formerly living in California
+3588,Chimariko,the Hokan language spoken by the Chimariko
+3589,Chimborazo,a mountain peak in the Andes in Ecuador (20,560 feet high)
+3590,Chimera Chimaera,(Greek mythology) fire-breathing female monster with a lion's head and a goat's body and a serpent's tail; daughter of Typhon
+3591,Chimonanthus genus_Chimonanthus,small genus of Asian deciduous or evergreen shrubs having fragrant flowers: winter sweet
+3592,China People's_Republic_of_China mainland_China Communist_China Red_China PRC Cathay,a communist nation that covers a vast territory in eastern Asia; the most populous country in the world
+3593,China_aster Callistephus_chinensis,valued for their beautiful flowers in a wide range of clear bright colors; grown primarily for cutting
+3594,China_rose Bengal_rose Rosa_chinensis,shrubby Chinese rose; ancestor of many cultivated garden roses
+3595,China_rose Chinese_hibiscus Rose_of_China shoeblack_plant shoe_black Hibiscus_rosa-sinensis,large showy Asiatic shrub or small tree having large single or double red to deep-red flowers
+3596,China_tree false_dogwood jaboncillo chinaberry Sapindus_saponaria,evergreen of tropical America having pulpy fruit containing saponin which was used as soap by Native Americans
+3597,Chinaman,a ball bowled by a left-handed bowler to a right-handed batsman that spins from off to leg
+3598,Chinchillidae family_Chinchillidae,small bushy-tailed South American burrowing rodents
+3599,Chinese,a native or inhabitant of Communist China or of Nationalist China
+3600,Chinese,any of the Sino-Tibetan languages spoken in China; regarded as dialects of a single language (even though they are mutually unintelligible) because they share an ideographic writing system
+3601,Chinese_Revolution,the republican revolution against the Manchu dynasty in China; 1911-1912
+3602,Chinese_Wall Great_Wall Great_Wall_of_China,a fortification 1,500 miles long built across northern China in the 3rd century BC; it averages 6 meters in width
+3603,Chinese_alligator Alligator_sinensis,small alligator of the Yangtze valley of China having unwebbed digits
+3604,Chinese_angelica Chinese_angelica_tree Aralia_stipulata,similar to American angelica tree but less prickly; China
+3605,Chinese_anise star_anise star_aniseed,anise-scented star-shaped fruit or seed used in Asian cooking and medicine
+3606,Chinese_brown_sauce brown_sauce,a sauce based on soy sauce
+3607,Chinese_cabbage celery_cabbage Chinese_celery,elongated head of crisp celery-like stalks and light green leaves
+3608,Chinese_cabbage celery_cabbage napa pe-tsai Brassica_rapa_pekinensis,plant with an elongated head of broad stalked leaves resembling celery; used as a vegetable in east Asia
+3609,Chinese_checkers Chinese_chequers,a board game in which each player tries to move a set of marbles through a set of holes from one point of a six-pointed star to the opposite point
+3610,Chinese_chestnut Castanea_mollissima,a small tree with small sweet nuts; wild or naturalized in Korea and China
+3611,Chinese_cork_oak Quercus_variabilis,medium to large deciduous tree of China, Japan, and Korea having thick corky bark
+3612,Chinese_deity,a deity worshipped by the ancient Chinese
+3613,Chinese_elm Ulmus_parvifolia,small fast-growing tree native to Asia; widely grown as shelterbelts and hedges
+3614,Chinese_evergreen Japanese_leaf Aglaonema_modestum,erect or partially climbing herb having large green or variegated leaves
+3615,Chinese_forget-me-not Cynoglossum_amabile,biennial east Asian herb grown for its usually bright blue flowers
+3616,Chinese_goose Anser_cygnoides,very large wild goose of northeast Asia; interbreeds freely with the greylag
+3617,Chinese_gooseberry kiwi kiwi_vine Actinidia_chinensis Actinidia_deliciosa,climbing vine native to China; cultivated in New Zealand for its fuzzy edible fruit with green meat
+3618,Chinese_holly Ilex_cornuta,dense rounded evergreen shrub of China having spiny leaves; widely cultivated as an ornamental
+3619,Chinese_lantern,a collapsible paper lantern in bright colors; used for decorative purposes
+3620,Chinese_lantern_plant winter_cherry bladder_cherry Physalis_alkekengi,Old World perennial cultivated for its ornamental inflated papery orange-red calyx
+3621,Chinese_monetary_unit,the monetary unit in the People's Republic of China
+3622,Chinese_mustard,very hot prepared mustard
+3623,Chinese_paddlefish Psephurus_gladis,fish of larger rivers of China similar to the Mississippi paddlefish
+3624,Chinese_parasol_tree Chinese_parasol Japanese_varnish_tree phoenix_tree Firmiana_simplex,deciduous tree widely grown in southern United States as an ornamental for its handsome maplelike foliage and long racemes of yellow-green flowers followed by curious leaflike pods
+3625,Chinese_pea_tree Caragana_sinica,shrub with dark-green glossy foliage and solitary pale yellow flowers; northern China
+3626,Chinese_primrose Primula_sinensis,cultivated Asiatic primrose
+3627,Chinese_privet white_wax_tree Ligustrum_lucidum,erect evergreen treelike shrub of China and Korea and Japan having acuminate leaves and flowers in long erect panicles; resembles Japanese privet
+3628,Chinese_puzzle,intricate or ingenious puzzle consisting of boxes within boxes
+3629,Chinese_restaurant_syndrome,headache and tingling or burning feelings and sweating caused by eating food that contains monosodium glutamate
+3630,Chinese_rhubarb Rheum_palmatum,long used for laxative properties
+3631,Chinese_wistaria Wisteria_chinensis,having deep purple flowers
+3632,Chino-Japanese_War Sino-Japanese_War,a war between China and Japan (1894 and 1895) over the control of the Korean Peninsula; China was overwhelmingly defeated at Port Arthur
+3633,Chinook,a member of an important North American Indian people who controlled the mouth of the Columbia river; they were organized into settlements rather than tribes
+3634,Chinook_Jargon Oregon_Jargon,a pidgin incorporating Chinook and French and English words; formerly used as a lingua franca in northwestern North America
+3635,Chinookan Chinook,a Penutian language spoken by the Chinook
+3636,Chiococca genus_Chiococca,shrubs of tropical and subtropical New World
+3637,Chionanthus genus_Chionanthus,deciduous trees or shrubs: fringe tree
+3638,Chios Khios,an island in the Aegean Sea off the west coast of Turkey; belongs to Greece
+3639,Chipewyan,a member of the Athapaskan people living in western Canada between Great Slave Lake and Hudson Bay
+3640,Chipewyan Chippewyan Chippewaian,the language spoken by the Chipewyan
+3641,Chippendale Thomas_Chippendale,a British cabinetmaker remembered for his graceful designs (especially of chairs) which influenced his contemporaries (1718-1779)
+3642,Chiricahua_Apache,an Apache language
+3643,Chirico Giorgio_de_Chirico,Italian painter (born in Greece) whose deep shadows and barren landscapes strongly influenced the surrealists (1888-1978)
+3644,Chiron,(Greek mythology) the learned centaur who tutored Achilles, Asclepius, Hercules, Jason, and other heroes
+3645,Chiron,an asteroid discovered in 1977; it is unique in having an orbit lying mainly between the orbits of Saturn and Uranus
+3646,Chironomidae family_Chironomidae,midges
+3647,Chironomus genus_Chironomus,type genus of the Chironomidae
+3648,Chiroptera order_Chiroptera,an old order dating to early Eocene: bats: suborder Megachiroptera (fruit bats); suborder Microchiroptera (insectivorous bats)
+3649,Chisholm_Trail,a former cattle trail from San Antonio in Texas to Abilene in Kansas; not used after the 1880s
+3650,Chishona,a Bantu language that is one of the two major languages of Zimbabwe
+3651,Chittagong,a port city and industrial center in southeastern Bangladesh on the Bay of Bengal
+3652,Chiwere,the Siouan language spoken by the Iowa and Oto and Missouri
+3653,Chlamydera genus_Chlamydera,a genus of Ptilonorhynchidae
+3654,Chlamydia_psittaci C._psittaci,bacteria responsible for the sexually transmitted disease chlamydia
+3655,Chlamydia_trachomatis C._trachomatis,bacteria responsible for the sexually transmitted diseases chlamydia and lymphogranuloma venereum
+3656,Chlamydiaceae family_Chlamydiaceae,Gram-negative parasites in warm-blooded vertebrates
+3657,Chlamydomonadaceae family_Chlamydomonadaceae,green algae some of which are colored red by hematochrome
+3658,Chlamydomonas genus_Chlamydomonas,type genus of the Chlamydomonadaceae; solitary doubly-flagellated plant-like algae common in fresh water and damp soil; multiply freely; often a pest around filtration plants
+3659,Chlamydosaurus genus_Chlamydosaurus,frilled lizards
+3660,Chlamyphorus genus_Chlamyphorus,pichiciago
+3661,Chloranthaceae family_Chloranthaceae,small family of tropical herbs and shrubs and trees
+3662,Chloranthus genus_Chloranthus,type genus of the Chloranthaceae
+3663,Chloris genus_Chloris,tufted or perennial or annual grasses having runners: finger grass; windmill grass
+3664,Chlorococcales order_Chlorococcales,unicellular green algae that reproduce by spores
+3665,Chlorococcum genus_Chlorococcum,type genus of Chlorococcales; unicellular green algae occurring singly or in a layer on soil or damp rock
+3666,Chlorophis genus_Chlorophis,African green snakes
+3667,Chlorophoneus genus_Chlorophoneus,a genus of Malaconotinae
+3668,Chlorophthalmidae family_Chlorophthalmidae,small family of soft-finned bottom-dwellers with large eyes; relatives of lizardfishes
+3669,Chlorophyceae class_Chlorophyceae,algae distinguished chiefly by having flagella and a clear green color, their chlorophyll being masked little if at all by other pigments
+3670,Chlorophyllum_molybdites,a poisonous agaric with a fibrillose cap and brown scales on a white ground color; cap can reach a diameter of 30 cm; often forms `fairy rings'
+3671,Chlorophyta division_Chlorophyta,large division of chiefly freshwater eukaryotic algae that possess chlorophyll a and b, store food as starch, and cellulose cell walls; classes Chlorophyceae, Ulvophyceae, and Charophyceae; obviously ancestral to land plants
+3672,Chloroxylon genus_Chloroxylon,deciduous trees of India and Sri Lanka
+3673,Chlorura genus_Chlorura,towhees
+3674,Choctaw,a member of the Muskhogean people formerly living in Alabama
+3675,Choctaw Chahta,the Muskhogean language of the Choctaw
+3676,Choeronycteris genus_Choeronycteris,a genus of Phyllostomatidae
+3677,Choloepus genus_Choloepus,a genus of Megalonychidae consisting of the two-toed sloth
+3678,Chomsky Noam_Chomsky A._Noam_Chomsky,United States linguist whose theory of generative grammar redefined the field of linguistics (born 1928)
+3679,Chondrichthyes class_Chondrichthyes,cartilaginous fishes
+3680,Chondrus genus_Chondrus,a genus of protoctist
+3681,Chongqing Chungking,a city in south-central China on the Chang Jiang; a commercial center for western China
+3682,Chopin,the music of Chopin; "he practiced Chopin day and night"
+3683,Chopin Frederic_Francois_Chopin,French composer (born in Poland) and pianist of the romantic school (1810-1849)
+3684,Chopin Kate_Chopin Kate_O'Flaherty_Chopin,United States writer who described Creole life in Louisiana (1851-1904)
+3685,Chordata phylum_Chordata,comprises true vertebrates and animals having a notochord
+3686,Chordeiles genus_Chordeiles,a genus of Caprimulgidae
+3687,Chordospartium genus_Chordospartium,2 species of small New Zealand trees: weeping tree broom; endangered
+3688,Choriotis genus_Choriotis,Australian bustard
+3689,Chorizagrotis genus_Chorizagrotis,moths whose larvae are army cutworms
+3690,Chorizema genus_Chorizema,genus of Australian twining vines and small shrubs: flame peas
+3691,Chosen,the name for Korea as a Japanese province (1910-1945)
+3692,Christ's-thorn Jerusalem_thorn Paliurus_spina-christi,thorny Eurasian shrub with dry woody winged fruit
+3693,Christchurch,industrial city at the center of a rich agricultural region
+3694,Christendom Christianity,the collective body of Christians throughout the world and history (found predominantly in Europe and the Americas and Australia); "for a thousand years the Roman Catholic Church was the principal church of Christendom"
+3695,Christian,a religious person who believes Jesus is the Christ and who is a member of a Christian denomination
+3696,Christian_Church Disciples_of_Christ,a Protestant church that accepts the Bible as the only source of true Christian faith and practices baptism by immersion
+3697,Christian_Science,religious system based on teachings of Mary Baker Eddy emphasizing spiritual healing
+3698,Christian_Science Church_of_Christ_Scientist,Protestant denomination founded by Mary Baker Eddy in 1866
+3699,Christian_Scientist,a member of the Protestant church founded in the United States by Mary Baker Eddy
+3700,Christian_era Common_era,the time period beginning with the supposed year of Christ's birth
+3701,Christian_holy_day,a religious holiday for Christians
+3702,Christian_liturgy,the Christian worship services
+3703,Christian_name baptismal_name,the first name given to Christians at birth or christening
+3704,Christian_theology,the teachings of Christian churches
+3705,Christianity Christian_religion,a monotheistic system of beliefs and practices based on the Old Testament and the teachings of Jesus as embodied in the New Testament and emphasizing the role of Jesus as savior
+3706,Christianization Christianisation,conversion to Christianity
+3707,Christie Agatha_Christie Dame_Agatha_Mary_Clarissa_Christie,prolific English writer of detective stories (1890-1976)
+3708,Christmas Christmas_Day Xmas Dec_25,a Christian holiday celebrating the birth of Christ; a quarter day in England, Wales, and Ireland
+3709,Christmas Christmastide Christmastime Yule Yuletide Noel,period extending from Dec. 24 to Jan. 6
+3710,Christmas_Eve Dec_24,the day before Christmas
+3711,Christmas_begonia blooming-fool_begonia Begonia_cheimantha,hybrid winter-blooming begonia grown for its many large pink flowers
+3712,Christmas_bells,any of several plants of the genus Blandfordia having large orange or crimson flowers
+3713,Christmas_box,a present given at Christmas for services during the year
+3714,Christmas_bush Christmas_tree Ceratopetalum_gummiferum,Australian tree or shrub with red flowers; often used in Christmas decoration
+3715,Christmas_cactus Schlumbergera_buckleyi Schlumbergera_baridgesii,epiphytic cactus of Brazilian ancestry widely cultivated as a houseplant having jointed flat segments and usually rose-purple flowers that bloom in winter
+3716,Christmas_cake,a rich fruitcake (usually covered with icing and marzipan) and eaten at Christmas
+3717,Christmas_card,a card expressing a Christmas greeting
+3718,Christmas_factor factor_IX,coagulation factor whose absence is associated with hemophilia B
+3719,Christmas_fern canker_brake dagger_fern evergreen_wood_fern Polystichum_acrostichoides,North American evergreen fern having pinnate leaves and dense clusters of lance-shaped fronds
+3720,Christmas_present Christmas_gift,a present given at Christmas time
+3721,Christmas_rose winter_rose black_hellebore Helleborus_niger,European evergreen plant with white or purplish rose-like winter-blooming flowers
+3722,Christmas_stocking,a stocking that is filled with small Christmas presents
+3723,Christmas_tree,an ornamented evergreen used as a Christmas decoration
+3724,Christmasberry Christmas_berry Lycium_carolinianum,spiny evergreen shrub of southeastern United States having spreading branches usually blue or mauve flowers and red berries
+3725,Christology,a religious doctrine or theory based on Jesus or Jesus' teachings
+3726,Christology,the branch of theology concerned with the person and attributes and deeds of Christ
+3727,Christopher Saint_Christopher St._Christopher,Christian martyr and patron saint of travellers (3rd century)
+3728,Chronoperates genus_Chronoperates,a reptile genus of Therapsida
+3729,Chronoperates_paradoxus,shrew-sized protomammal from the Alberta region of Canada; from about 55 million years ago (much more recent than other mammal-like reptiles)
+3730,Chrysaora genus_Chrysaora,a genus of Scyphozoa
+3731,Chrysaora_quinquecirrha,a type of jellyfish
+3732,Chrysemys genus_Chrysemys,painted turtles
+3733,Chrysobalanus genus_Chrysobalanus,coco plums
+3734,Chrysochloridae family_Chrysochloridae,golden moles
+3735,Chrysochloris genus_Chrysochloris,type genus of the Chrysochloridae
+3736,Chrysolepis genus_Chrysolepis,two species: golden chinkapins
+3737,Chrysolophus genus_Chrysolophus,golden pheasants
+3738,Chrysomelidae family_Chrysomelidae,leaf beetles
+3739,Chrysophrys genus_Chrysophrys,Australian snapper
+3740,Chrysophyceae class_Chrysophyceae Heterokontae class_Heterokontae,all the yellow-green algae having flagella of unequal length
+3741,Chrysophyllum genus_Chrysophyllum,tropical American evergreen trees or shrubs
+3742,Chrysophyta division_Chrysophyta,mostly freshwater eukaryotic algae having the chlorophyll masked by brown or yellow pigment; yellow-green and golden-brown algae and diatoms: Xanthophyceae, Chrysophyceae, Bacillariophyceae; some classification systems superseded or subsumed by Heterokontophyta
+3743,Chrysopidae family_Chrysopidae,green lacewings
+3744,Chrysopsis genus_Chrysopsis,golden aster
+3745,Chrysosplenium genus_Chrysosplenium,genus of widely distributed semiaquatic herbs with minute greenish-yellow apetalous flowers
+3746,Chrysothamnus genus_Chrysothamnus,genus of low branching shrubs of western North America
+3747,Chuang-tzu,4th-century Chinese philosopher on whose teachings Lao-tse based Taoism
+3748,Chukaku-Ha,an ultra-leftist militant group founded in 1957 from the breakup of the Japanese Communist Party; includes a covert action wing; "Chukaku-Ha attacks tend to cause property damage rather than casualties"
+3749,Chukchi,a member of an indigenous people living on the Chukchi Peninsula
+3750,Chukchi Chukchi_language,an indigenous and isolated language of unknown origin spoken by the Chukchi that is pronounced differently by men and women
+3751,Chukchi_Peninsula,peninsula of northeastern Siberia across the Bering Strait from northwestern Alaska
+3752,Chukchi_Sea,part of the Arctic Ocean just to the north of the Bering Strait
+3753,Chula_Vista,an industrial city in southern California (south of San Diego) near the Mexican border
+3754,Church_Father Father_of_the_Church Father,(Christianity) any of about 70 theologians in the period from the 2nd to the 7th century whose writing established and confirmed official church doctrine; in the Roman Catholic Church some were later declared saints and became Doctor of the Church; the best known Latin Church Fathers are Ambrose, Augustine, Gregory the Great, and Jerome; those who wrote in Greek include Athanasius, Basil, Gregory Nazianzen, and John Chrysostom
+3755,Church_of_Ireland,autonomous branch of the Church of England in Ireland
+3756,Church_of_Jesus_Christ_of_Latter-Day_Saints Mormon_Church Mormons,church founded by Joseph Smith in 1830 with headquarters in Salt Lake City, Utah
+3757,Church_of_the_Brethren Dunkers Dippers,a Baptist denomination founded in 1708 by Americans of German descent; opposed to military service and taking legal oaths; practiced trine immersion
+3758,Churchill,a Canadian town in northern Manitoba on Hudson Bay; important port for shipping grain
+3759,Churchill John_Churchill Duke_of_Marlborough First_Duke_of_Marlborough,English general considered one of the greatest generals in history (1650-1722)
+3760,Churchill Winston_Churchill Winston_S._Churchill Sir_Winston_Leonard_Spenser_Churchill,British statesman and leader during World War II; received Nobel prize for literature in 1953 (1874-1965)
+3761,Churchill_Downs,a racetrack for thoroughbred racing in Louisville; site of the Kentucky Derby
+3762,Chuvash,a member of a people of Turkic speech living in the Volga region in eastern Russia
+3763,Chuvash,the Turkic language spoken by the Chuvash
+3764,Chytridiaceae family_Chytridiaceae,a family of aquatic fungi of order Chytridiales
+3765,Chytridiales order_Chytridiales,simple aquatic fungi mostly saprophytic but some parasitic on higher plants or animals or fresh water fungi; sometimes placed in class Oomycetes
+3766,Chytridiomycetes class_Chytridiomycetes,a class of mostly aquatic fungi; saprophytic or parasitic on algae or fungi or plants
+3767,Ciardi John_Ciardi John_Anthony_Ciardi,United States poet and critic (1916-1986)
+3768,Cibotium genus_Cibotium,in some classification systems placed in family Cyatheaceae: ornamental tree ferns with coarse gracefully drooping fronds
+3769,Cicadellidae family_Cicadellidae,leafhoppers
+3770,Cicadidae family_Cicadidae,cicadas
+3771,Cicer genus_Cicer,chickpea plant; Asiatic herbs
+3772,Cicero Marcus_Tullius_Cicero Tully,a Roman statesman and orator remembered for his mastery of Latin prose (106-43 BC)
+3773,Cichlidae family_Cichlidae,cichlids
+3774,Cichorium genus_Cichorium,chicory
+3775,Cicindelidae family_Cicindelidae,tiger beetles
+3776,Ciconia genus_Ciconia,type genus of the Ciconiidae: European storks
+3777,Ciconiidae family_Ciconiidae,storks
+3778,Ciconiiformes order_Ciconiiformes,order of chiefly tropical marsh-dwelling fish-eating wading birds with long legs and bills and (except for flamingos) unwebbed feet: herons; storks; spoonbills; flamingos; ibises
+3779,Cicuta genus_Cicuta,small genus of perennial herbs having deadly poisonous tuberous roots: water hemlock
+3780,Ciliata class_Ciliata Ciliophora class_Ciliophora,class of protozoa having cilia or hairlike appendages on part or all of the surface during some part of the life cycle
+3781,Cimabue Giovanni_Cimabue,painter of the Florentine school; anticipated the move from Byzantine to naturalistic art (1240-1302)
+3782,Cimarron Cimarron_River,a river that rises in northeastern New Mexico and flows eastward into Oklahoma where it becomes a tributary of the Arkansas River
+3783,Cimex genus_Cimex,type genus of the Cimicidae: bedbugs
+3784,Cimicidae family_Cimicidae,wingless flat-bodied bloodsucking insects
+3785,Cimicifuga genus_Cimicifuga,small genus of perennial herbs of north temperate regions: bugbane
+3786,Cincinnati,a city in southern Ohio on the Ohio river
+3787,Cincinnatus Lucius_Quinctius_Cincinnatus,Roman statesman regarded as a model of simple virtue; he twice was called to assume dictatorship of Rome and each time retired to his farm (519-438 BC)
+3788,Cinclidae family_Cinclidae,water ouzels
+3789,Cinclus genus_Cinclus,type genus of the family Cinclidae
+3790,Cinco_de_Mayo,the fifth of May which is observed in Mexico and Mexican-American communities in the United States to commemorate the Mexican victory over the French in the Battle of Puebla in 1862
+3791,Cinderella,a woman whose merits were not been recognized but who then achieves sudden success and recognition
+3792,Cinderella,a fictional young girl who is saved from her stepmother and stepsisters by her fairy godmother and a handsome prince
+3793,Cinnamomum genus_Cinnamomum,Asiatic and Australian aromatic trees and shrubs
+3794,Circaea genus_Circaea,enchanter's nightshade
+3795,Circaea_lutetiana,tall evening primrose with inconspicuous flowers
+3796,Circaetus genus_Circaetus,harrier eagles
+3797,Circassian,a member of the Sunni Muslim people living in northwestern Caucasia
+3798,Circassian,a mostly Sunni Muslim community living in northwestern Caucasia
+3799,Circassian,a northern Caucasian language spoken by the Circassian
+3800,Circe,(Greek mythology) a sorceress who detained Odysseus on her island and turned his men into swine
+3801,Circinus,a small faint constellation in the southern hemisphere near Musca and Triangulum Australe
+3802,Circumcision Feast_of_the_Circumcision January_1,(Roman Catholic Church and Anglican Church) feast day celebrating the circumcision of Jesus; celebrated on January 1st
+3803,Circus genus_Circus,a genus of haws comprising the harriers
+3804,Cirripedia subclass_Cirripedia,barnacles
+3805,Cirsium genus_Cirsium,plume thistles
+3806,Cistaceae family_Cistaceae rockrose_family,shrubs or woody herbs of temperate regions especially Mediterranean
+3807,Cistothorus genus_Cistothorus,marsh wrens
+3808,Cistus genus_Cistus,small to medium-sized evergreen shrubs of southern Europe and North Africa
+3809,Citation,thoroughbred that won the triple crown in 1948
+3810,Citellus genus_Citellus Spermophilus genus_Spermophilus,typical ground squirrels
+3811,Citharichthys genus_Citharichthys,a genus of Bothidae
+3812,Citizenship_Day September_17,celebrated in the United States
+3813,Citlaltepetl Mount_Orizaba Mt_Orizaba Pico_de_Orizaba,an extinct volcano in southern Mexico between Mexico City and Veracruz; the highest peak in Mexico (18,695 feet)
+3814,Citroncirus genus_Citroncirus,a cross between Citrus sinensis and Poncirus trifoliata
+3815,Citrullus genus_Citrullus,a dicot genus of the family Cucurbitaceae including watermelons
+3816,City_of_London the_City,the part of London situated within the ancient boundaries; the commercial and financial center of London
+3817,Ciudad_Bolivar,a port in eastern Venezuela on the Orinoco river
+3818,Ciudad_Juarez Juarez,a city in northern Mexico on the Rio Grande opposite El Paso
+3819,Ciudad_Victoria,a city in east central Mexico
+3820,Civil_List,a sum of money voted by British Parliament each year for the expenses of the British royal family
+3821,Civil_Rights_movement,movement in the United States beginning in the 1960s and led primarily by Blacks in an effort to establish the civil rights of individual Black citizens
+3822,Cladonia genus_Cladonia,type genus of Cladoniaceae; lichens characterized by a crustose thallus and capitate fruiting bodies borne on simple or branched podetia
+3823,Cladoniaceae family_Cladoniaceae,a family of lichens
+3824,Cladorhyncus genus_Cladorhyncus,one of two genera of stilts; similar to avocets but with straight bills
+3825,Cladrastis genus_Cladrastis,yellowwoods
+3826,Clamatores suborder_Clamatores,used in some classification systems; a suborder or superfamily nearly coextensive with suborder Tyranni; Passeriformes having relatively simple vocal organs and little power of song; clamatorial birds
+3827,Clangula genus_Clangula,a genus of ducks
+3828,Clark Joe_Clark Charles_Joseph_Clark,Canadian politician who served as prime minister (1939-)
+3829,Clark Kenneth_Clark Kenneth_Bancroft_Clark,United States psychologist (born in Panama) whose research persuaded the Supreme Court that segregated schools were discriminatory (1914-2005)
+3830,Clark Mark_Clark Mark_Wayne_Clark,United States general who was Allied commander in Africa and Italy in World War II and was commander of the United Nations forces in Korea (1896-1984)
+3831,Clark William_Clark,United States explorer who (with Meriwether Lewis) led an expedition from St. Louis to the mouth of the Columbia River; Clark was responsible for making maps of the area (1770-1838)
+3832,Clark's_nutcracker Nucifraga_columbiana,nutcracker of the western United States
+3833,Clark_cell Clark_standard_cell,a form of voltaic cell once used as a standard for electromotive force
+3834,Clarksburg,a city in northern West Virginia
+3835,Clathraceae family_Clathraceae,family of fleshy fungi resembling stinkhorns
+3836,Clathrus genus_Clathrus,type genus of the Clathraceae
+3837,Claudius Claudius_I Tiberius_Claudius_Drusus_Nero_Germanicus,Roman Emperor after his nephew Caligula was murdered; consolidated the Roman Empire and conquered southern Britain; was poisoned by his fourth wife Agrippina after her son Nero was named as Claudius' heir (10 BC to AD 54)
+3838,Clausewitz Karl_von_Clausewitz,Prussian general and military theorist who proposed a doctrine of total war and war as an extension of diplomacy (1780-1831)
+3839,Clavariaceae family_Clavariaceae,fleshy fungi: coral fungi
+3840,Claviceps genus_Claviceps,fungi parasitic upon the ovaries of various grasses
+3841,Clavicipitaceae grainy_club_mushrooms,any of various mushrooms of the class Ascomycetes
+3842,Clay Henry_Clay the_Great_Compromiser,United States politician responsible for the Missouri Compromise between free and slave states (1777-1852)
+3843,Clay Lucius_Clay Lucius_DuBignon_Clay,United States general who commanded United States forces in Europe from 1945 to 1949 and who oversaw the Berlin airlift (1897-1978)
+3844,Claytonia genus_Claytonia,genus of mainly North American succulent herbs with white or pink flowers usually in terminal racemes
+3845,Cleanthes,ancient Greek philosopher who succeeded Zeno of Citium as the leader of the Stoic school (300-232 BC)
+3846,Cleistes genus_Cleistes,terrestrial orchids of North and South America having slender fibrous roots; allied to genus Pogonia
+3847,Clemenceau Georges_Clemenceau Georges_Eugene_Benjamin_Clemenceau,French statesman who played a key role in negotiating the Treaty of Versailles (1841-1929)
+3848,Clemens Samuel_Langhorne_Clemens Mark_Twain,United States writer and humorist best known for his novels about Tom Sawyer and Huckleberry Finn (1835-1910)
+3849,Clement_III Guibert_of_Ravenna,Italian antipope from 1080 to 1100 who was installed as pope by the Holy Roman Emperor Henry IV who consistently opposed efforts at papal reform (died in 1100)
+3850,Clement_VII Giulio_de'_Medici,Italian pope from 1523 to 1534 who broke with Henry VIII of England after Henry VIII divorced Catherine of Aragon and married Anne Boleyn (1478-1534)
+3851,Clement_XI Giovanni_Francesco_Albani,Italian pope from 1700 to 1721 who condemned Jansenist ideas on papal infallibility
+3852,Clement_XIV Lorenzo_Ganganelli,Italian pope from 1769 to 1774 who lost whatever support remained of Catholic Europe, causing the church to fall into the hands of secular princes (1705-1774)
+3853,Cleopatra,beautiful and charismatic queen of Egypt; mistress of Julius Caesar and later of Mark Antony; killed herself to avoid capture by Octavian (69-30 BC)
+3854,Cleridae family_Cleridae,beetles that prey on other insects
+3855,Clethra genus_Clethra,type and sole genus of the Clethraceae; deciduous shrubs or small trees: white alder, summer-sweet
+3856,Clethraceae family_Clethraceae white-alder_family,coextensive with the genus Clethra
+3857,Clethrionomys genus_Clethrionomys,a genus of Cricetidae
+3858,Cleveland,the largest city in Ohio; located in northeastern Ohio on Lake Erie; a major Great Lakes port
+3859,Cleveland Grover_Cleveland Stephen_Grover_Cleveland President_Cleveland,22nd and 24th President of the United States (1837-1908)
+3860,Clichy Clichy-la-Garenne,a northwestern suburb of Paris; the residence of the Merovingian royalty in the 7th century
+3861,Clifford_trust grantor_trust,a trust established to shift the income to someone who is taxed at a lower rate than the grantor for a period of 10 years or more
+3862,Cliftonia genus_Cliftonia,one species: titi
+3863,Clinch_River,a river that rises in southwestern Virginia and flows generally southwestward across eastern Tennessee to the Tennessee River
+3864,Cline Martin_Cline,American geneticist who succeeded in transferring a functioning gene from one mouse to another (born in 1934)
+3865,Clinidae family_Clinidae,viviparous blennies of temperate and tropical seas
+3866,Clinopodium genus_Clinopodium,wild basil
+3867,Clinton,a town in east central Iowa
+3868,Clinton Bill_Clinton William_Jefferson_Clinton President_Clinton,42nd President of the United States (1946-)
+3869,Clinton DeWitt_Clinton,United States politician who as governor of New York supported the project to build the Erie Canal (1769-1828)
+3870,Clinton Hilary_Clinton Hilary_Rodham_Clinton,wife of President Clinton and later a woman member of the United States Senate (1947-)
+3871,Clinton_administration,the executive under President Clinton
+3872,Clio,(Greek mythology) the Muse of history
+3873,Clitocybe genus_Clitocybe,a genus of agarics with white to pale yellow spore deposits and fleshy stalks centrally attached to the cap and closely attached gills
+3874,Clitocybe_clavipes,an agaric with a flat cap that is greyish or yellowish brown with pallid gills and a stalk that bulges toward the base
+3875,Clitocybe_dealbata,a small poisonous agaric; has a dry white cap with crowded gills and a short stalk
+3876,Clitocybe_inornata,a fungus with a cap that is creamy grey when young and turns brown with age and a whitish stalk that stains yellow when handled
+3877,Clitocybe_irina Tricholoma_irinum Lepista_irina,an edible agaric with large silky white caps and thick stalks
+3878,Clitocybe_robusta Clytocybe_alba,a large white agaric; edible but not palatable
+3879,Clitocybe_subconnexa,an edible white agaric that fruits in dense clusters; the gills are narrow and crowded and the stalk is fleshy and unpolished
+3880,Clitoria genus_Clitoria,genus of tropical shrubs or vines having pinnate leaves and large axillary flowers
+3881,Clive Robert_Clive Baron_Clive Baron_Clive_of_Plassey,British general and statesman whose victory at Plassey in 1757 strengthened British control of India (1725-1774)
+3882,Clorox,a commercial bleaching agent
+3883,Clotho Klotho,the Greek goddess of fate who spins the thread of life
+3884,Clovis Clovis_I,king of the Franks who unified Gaul and established his capital at Paris and founded the Frankish monarchy; his name was rendered as Gallic `Louis' (466-511)
+3885,Clovis_culture,the Paleo-American culture of Central America and North America; distinguished chiefly by sharp fluted projectile points made of obsidian or chalcedony
+3886,Clupea genus_Clupea,type genus of the Clupeidae: typical herrings
+3887,Clupeidae family_Clupeidae,herrings; shad; sardines; etc.
+3888,Clyde,a river in western Scotland that flows from the southern uplands into the Firth of Clyde; navigable by oceangoing vessels as far as Glasgow
+3889,Clydesdale,heavy feathered-legged breed of draft horse originally from Scotland
+3890,Clydesdale_terrier,selectively bred small Skye terrier with erect ears and a long silky coat
+3891,Clytemnestra,(Greek mythology) wife of Agamemnon who had him murdered when he returned from the Trojan War
+3892,Cnemidophorus genus_Cnemidophorus,whiptails
+3893,Cnicus genus_Cnicus,one species: blessed thistle
+3894,Cnidaria phylum_Cnidaria Coelenterata phylum_Coelenterata,hydras; polyps; jellyfishes; sea anemones; corals
+3895,Cnidoscolus genus_Cnidoscolus,a genus of perennial plant with bristles; belonging to the family Euphorbiaceae
+3896,Cnidosporidia subclass_Cnidosporidia,single-host parasites of lower vertebrates and invertebrates
+3897,Coahuila,a state in northern Mexico; mostly high plateau
+3898,Coast_Range Coast_Mountains,a string of mountain ranges along the Pacific coast of North America from southeastern Alaska to Lower California
+3899,Coats_Land,a region of western Antarctica along the southeastern shore of the Weddell Sea
+3900,Cobitidae family_Cobitidae,loaches
+3901,Coca Imogene_Coca,United States comedienne who starred in early television shows with Sid Caesar (1908-2001)
+3902,Coca_Cola Coke,Coca Cola is a trademarked cola
+3903,Coccidae family_Coccidae,scale insects
+3904,Coccidia order_Coccidia,an order in the subclass Telosporidia
+3905,Coccinellidae family_Coccinellidae,the ladybugs
+3906,Coccoidea superfamily_Coccoidea,scale insects and mealybugs
+3907,Coccothraustes genus_Coccothraustes,large finches
+3908,Cocculus genus_Cocculus,climbing plants or shrubs
+3909,Coccyzus genus_Coccyzus,a genus of Cuculidae
+3910,Cochimi,a member of a North American Indian people living in central Baja California
+3911,Cochimi,the Yuman language spoken by the Cochimi
+3912,Cochise,Apache leader of the resistance to United States troops in Arizona (1812-1874)
+3913,Cochlearia genus_Cochlearia,a genus of the family Cruciferae
+3914,Cochlearius genus_Cochlearius,boatbills
+3915,Cochran Jacqueline_Cochran,United States aviator who held several speed records and headed the women's Air Force pilots in World War II (1910-1980)
+3916,Cockaigne,(Middle Ages) an imaginary land of luxury and idleness
+3917,Cockcroft Sir_John_Cockcroft Sir_John_Douglas_Cockcroft,British physicist who (with Ernest Walton in 1931) first split an atom (1897-1967)
+3918,Cockcroft_and_Walton_accelerator Cockcroft-Walton_accelerator Cockcroft_and_Walton_voltage_multiplier Cockcroft-Walton_voltage_multiplier,a high-voltage machine in which rectifiers charge capacitors that discharge and drive charged particles through an accelerating tube
+3919,Cockney,a native of the east end of London
+3920,Cocopa Cocopah,a member of a North American Indian people living around the mouth of the Colorado River
+3921,Cocopa Cocopah,the Yuman language spoken by the Cocopa
+3922,Cocos genus_Cocos,coconut palms
+3923,Cocteau Jean_Cocteau,French writer and film maker who worked in many artistic media (1889-1963)
+3924,Cocus,(Greek mythology) one of the Titans
+3925,Cocytus River_Cocytus,(Greek mythology) a river in Hades that was said to be a tributary of the Acheron
+3926,Codariocalyx genus_Codariocalyx,used in some classifications for plants usually included in genus Desmodium
+3927,Codiaeum genus_Codiaeum,evergreen tropical trees and shrubs with thick and colorful leathery leaves; Malaya and Pacific islands
+3928,Cody William_F._Cody William_Frederick_Cody Buffalo_Bill Buffalo_Bill_Cody,United States showman famous for his Wild West Show (1846-1917)
+3929,Coeloglossum genus_Coeloglossum,terrestrial orchids of cooler parts of North America and Europe: satyr orchid
+3930,Coereba genus_Coereba,type genus of the Coerebidae
+3931,Coerebidae family_Coerebidae Dacninae family_Dacninae,the honeycreepers
+3932,Coeur_d'Alene,a member of an Amerindian people living in northern Idaho around Coeur d'Alene Lake
+3933,Coeur_d'Alene,a town in the northern panhandle of Idaho; popular resort area
+3934,Coeur_d'Alene_Lake,a lake in northern Idaho
+3935,Coffea genus_Coffea,coffee trees
+3936,Coffey_still,a still consisting of an apparatus for the fractional distillation of ethanol from fermentation on an industrial scale
+3937,Cognac,high quality grape brandy distilled in the Cognac district of France
+3938,Cohan George_M._Cohan George_Michael_Cohan,United States songwriter and playwright famous for his patriotic songs (1878-1942)
+3939,Cohn Ferdinand_Julius_Cohn,German botanist who is generally recognized as founding bacteriology when he recognized bacteria as plants
+3940,Coigue Nothofagus_dombeyi,Chilean evergreen whose leafy boughs are used for thatching
+3941,Cola genus_Cola,large genus of African trees bearing kola nuts
+3942,Colaptes genus_Colaptes,a genus of Picidae
+3943,Colbert Colbert_butter,butter creamed with parsley and tarragon and beef extract
+3944,Colchicaceae family_Colchicaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted: genera Colchicum and Gloriosa
+3945,Colchicum genus_Colchicum,chiefly fall-blooming perennial cormous herbs; sometimes placed in family Colchicaceae
+3946,Colchis,(Greek mythology) a region on the Black Sea to the south of the Caucasus that was the site of an ancient country where (according to Greek mythology) Jason sought the Golden Fleece
+3947,Cold_War,a state of political hostility that existed from 1945 until 1990 between countries led by the Soviet Union and countries led by the United States
+3948,Coleonyx genus_Coleonyx,banded geckos
+3949,Coleoptera order_Coleoptera,beetles
+3950,Coleridge Samuel_Taylor_Coleridge,English romantic poet (1772-1834)
+3951,Colette Sidonie-Gabrielle_Colette Sidonie-Gabrielle_Claudine_Colette,French writer of novels about women (1873-1954)
+3952,Colima Nevado_de_Colima Volcan_de_Colima,an active volcano in southwestern Mexico
+3953,Colinus genus_Colinus,New World quail: the bobwhites
+3954,Collembola order_Collembola,minute wingless arthropods: springtails
+3955,Collins Wilkie_Collins William_Wilkie_Collins,English writer noted for early detective novels (1824-1889)
+3956,Collinsia genus_Collinsia,genus of hardy annual herbs of western United States
+3957,Collinsonia genus_Collinsonia,small genus of perennial erect or spreading aromatic herbs; United States
+3958,Collocalia genus_Collocalia,a genus of Apodidae
+3959,Colocasia genus_Colocasia,small genus of perennial tuberous herbs of tropical Asia: taro
+3960,Cologne Koln,a commercial center and river port in western Germany on the Rhine River; flourished during the 15th century as a member of the Hanseatic League
+3961,Colombia Republic_of_Colombia,a republic in northwestern South America with a coastline on the Pacific Ocean and the Caribbean Sea; achieved independence from Spain in 1821 under the leadership of Simon Bolivar; Spanish is the official language
+3962,Colombian,a native or inhabitant of Colombia
+3963,Colombian_monetary_unit,monetary unit in Colombia
+3964,Colombian_peso peso,the basic unit of money in Colombia; equal to 100 centavos
+3965,Colombo capital_of_Sri_Lanka,the capital and largest city of Sri Lanka; has one of the largest harbors in the world; is located on the western coast of the island of Ceylon
+3966,Colon Aspinwall,a port city at the Caribbean entrance to the Panama Canal
+3967,Colonel_Blimp,a pompous reactionary cartoon character created by Sir David Low
+3968,Colonel_Blimp Blimp,any elderly pompous reactionary ultranationalistic person (after the cartoon character created by Sir David Low)
+3969,Colony,one of the 13 British colonies that formed the original states of the United States
+3970,Coloradan,a native or resident of Colorado
+3971,Colorado Centennial_State CO Colo.,a state in west central United States in the Rocky Mountains
+3972,Colorado Colorado_River,a river in Texas; flows southeast into the Gulf of Mexico
+3973,Colorado Colorado_River,an important river in the southwestern United States; rises in the Rocky Mountains of northern Colorado and flows southwest through Utah into Arizona (where it flows through the Grand Canyon) and then southward through the southern tip of Nevada, then forming the border between California and Arizona and finally into Mexico where it empties into the Gulf of California; the main source of water in the southwestern United States
+3974,Colorado_Desert,an arid region of southeastern California
+3975,Colorado_Plateau,a large plateau to the south and west of the Rocky Mountains; abuts mountains on the north and east and ends in an escarpment overlooking lowlands to the south and west; the Grand Canyon is carved out of the southwestern corner
+3976,Colorado_River_hemp Sesbania_exaltata,tall-growing annual of southwestern United States widely grown as green manure; yields a strong tough bast fiber formerly used by Indians for cordage
+3977,Colorado_Springs,a city in east central Colorado on the eastern edge of the Rocky Mountains; popular tourist center and site of the United States Air Force Academy
+3978,Colorado_potato_beetle Colorado_beetle potato_bug potato_beetle Leptinotarsa_decemlineata,black-and-yellow beetle that feeds in adult and larval stages on potato leaves; originally of eastern Rocky Mountains; now worldwide
+3979,Colorado_spruce Colorado_blue_spruce silver_spruce Picea_pungens,tall spruce with blue-green needles and dense conic crown; older trees become columnar with lower branches sweeping downward
+3980,Colossae,an ancient city in south western Phrygia in Asia Minor; site of an early Christian Church
+3981,Colosseum Amphitheatrum_Flavium,a large amphitheater in Rome whose construction was begun by Vespasian about AD 75 or 80
+3982,Colossian,a native or inhabitant of the city of Colossae in ancient Phrygia
+3983,Colossus_of_Rhodes,a huge bronze statue of the sun god Helios that was built around 285 BC and that stood beside the harbor entrance on the island of Rhodes for about 50 years before it was toppled by an earthquake
+3984,Colt,a kind of revolver
+3985,Coluber genus_Coluber,racers
+3986,Colubridae family_Colubridae,nonvenomous snakes; about two-thirds of all living species
+3987,Colubrina genus_Colubrina,mostly tropical American shrubs or small trees with small yellowish flowers and yellow or red fruits
+3988,Columba Dove,a constellation in the southern hemisphere near Puppis and Caelum
+3989,Columba genus_Columba,type genus of the Columbidae: typical pigeons
+3990,Columbia,a town in west central Tennessee
+3991,Columbia,a university town in central Missouri
+3992,Columbia Columbia_River,a North American river; rises in southwestern Canada and flows southward across Washington to form the border between Washington and Oregon before emptying into the Pacific; known for its salmon runs in the spring
+3993,Columbia capital_of_South_Carolina,capital and largest city in South Carolina; located in central South Carolina
+3994,Columbia_University Columbia,a university in New York City
+3995,Columbia_tiger_lily Oregon_lily Lilium_columbianum,lily of western North America with showy orange-red purple-spotted flowers
+3996,Columbidae family_Columbidae,doves and pigeons
+3997,Columbiformes order_Columbiformes,sand grouse; pigeons; doves; extinct dodos and solitaires
+3998,Columbus,a town in eastern Mississippi near the border with Alabama
+3999,Columbus,a city in western Georgia on the Chattahoochee River; industrial center
+4000,Columbus Christopher_Columbus Cristoforo_Colombo Cristobal_Colon,Italian navigator who discovered the New World in the service of Spain while looking for a route to China (1451-1506)
+4001,Columbus capital_of_Ohio,the state capital of Ohio; located in the center of the state; site of Ohio State University
+4002,Columbus_Day Discovery_Day October_12,a legal holiday commemorating the discovery of America by Christopher Columbus
+4003,Colutea genus_Colutea,small genus of Eurasian shrubs with yellow flowers and bladdery pods
+4004,Coma_Berenices,a constellation in the northern hemisphere between Ursa Major and Bootes; contains a cluster of some 10,000 galaxies
+4005,Comanche,a member of the Shoshonean people who formerly lived between Wyoming and the Mexican border but are now chiefly in Oklahoma
+4006,Comanche,the Shoshonean language spoken by the Comanche
+4007,Comandra genus_Comandra,small genus of chiefly North American parasitic plants
+4008,Comatula genus_Comatula,former usage synonymous with Antedon
+4009,Comatulidae family_Comatulidae,former usage synonymous with Antedonidae
+4010,Combined_DNA_Index_System,the DNA file maintained by the Federal Bureau of Investigation
+4011,Combretaceae family_Combretaceae combretum_family,a family of tropical trees and shrubs of the order Myrtales
+4012,Comenius John_Amos_Comenius Jan_Amos_Komensky,Czech educational reformer (1592-1670)
+4013,Commelinaceae family_Commelinaceae spiderwort_family,large widely distributed family of chiefly perennial herbs or climbers: spiderworts
+4014,Commelinidae subclass_Commelinidae,one of four subclasses or superorders of Monocotyledones; comprises about 19,000 species in 25 families of mostly terrestrial herbs especially of moist places including: Cyperaceae; Gramineae; Bromeliaceae; and Zingiberaceae
+4015,Commiphora genus_Commiphora,genus of East Indian and African trees yielding balsamic products
+4016,Commission_on_Human_Rights,the commission of the Economic and Social Council of the United Nations that is concerned with human rights
+4017,Commission_on_Narcotic_Drugs,the commission of the Economic and Social Council of the United Nations that is concerned with drug traffic
+4018,Commission_on_the_Status_of_Women,the commission of the Economic and Social Council of the United Nations that is concerned with the status of women in different societies
+4019,Committee_for_State_Security KGB Soviet_KGB,formerly the predominant security police organization of Soviet Russia
+4020,Commodore_John_Barry_Bridge,a cantilever bridge in Chester, Pennsylvania
+4021,Commonwealth_Day Empire_day May_24,British, anniversary of Queen Victoria's birth
+4022,Commonwealth_of_Independent_States CIS,an alliance made up of states that had been Soviet Socialist Republics in the Soviet Union prior to its dissolution in Dec 1991
+4023,Communications_Security_Establishment CSE,Canadian agency that gathers communications intelligence and assist law enforcement and security agencies
+4024,Communion Holy_Communion sacramental_manduction manduction,the act of participating in the celebration of the Eucharist; "the governor took Communion with the rest of the congregation"
+4025,Communism_Peak Mount_Communism Stalin_Peak Mount_Garmo,the highest mountain peak in the Pamir Mountains; near the Chinese border in northeastern Tajikistan (24,590 feet high)
+4026,Communist,a member of the communist party
+4027,Communist_Manifesto,a socialist manifesto written by Marx and Engels (1842) describing the history of the working-class movement according to their views
+4028,Communist_Party,a political party that actively advocates a communist form of government; in Communist countries it is the sole political party of the state
+4029,Comoro_Islands Iles_Comores,three main islands and numerous islets in the Indian Ocean between Mozambique and Madagascar
+4030,Comoros Federal_Islamic_Republic_of_the_Comoros,a country on the Comoro Islands
+4031,Compositae family_Compositae Asteraceae family_Asteraceae aster_family,plants with heads composed of many florets: aster; daisy; dandelion; goldenrod; marigold; lettuces; ragweed; sunflower; thistle; zinnia
+4032,Composite_order,a Roman order that combines the Corinthian acanthus leaves with the spiral scrolls of the Ionic order
+4033,Compton Arthur_Compton Arthur_Holly_Compton,United States physicist noted for research on x-rays and gamma rays and nuclear energy; his observation that X-rays behave like miniature bowling balls in their interactions with electrons provided evidence for the quantal nature of light (1892-1962)
+4034,Comptonia genus_Comptonia,one species: sweet fern
+4035,Comptroller_General,a United States federal official who supervises expenditures and settles claims against the government
+4036,Comptroller_of_the_Currency,a United States federal official who regulates the national banks
+4037,Comptroller_of_the_Currency,the agency of the Treasury Department responsible for controlling the currency
+4038,Comrade,a fellow member of the Communist Party
+4039,Comstock Anthony_Comstock,United States reformer who led moral crusades against art and literature that he considered obscene (1844-1915)
+4040,Comstock_mealybug Comstock's_mealybug Pseudococcus_comstocki,Asiatic insect introduced accidentally into United States; pest on citrus and apple trees
+4041,Comstockery,censorship because of perceived obscenity or immorality
+4042,Comte Auguste_Comte Isidore_Auguste_Marie_Francois_Comte,French philosopher remembered as the founder of positivism; he also established sociology as a systematic field of study
+4043,Comtism,Auguste Comte's positivistic philosophy that metaphysics and theology should be replaced by a hierarchy of sciences from mathematics at the base to sociology at the top
+4044,Conakry Konakri capital_of_Guinea,a port and the capital of Guinea
+4045,Conan_Doyle A._Conan_Doyle Arthur_Conan_Doyle Sir_Arthur_Conan_Doyle,British author who created Sherlock Holmes (1859-1930)
+4046,Concepcion,an industrial city in Chile to the south of Santiago
+4047,Concord,town in eastern Massachusetts near Boston where the first battle of the American Revolution was fought
+4048,Concord capital_of_New_Hampshire,capital of the state of New Hampshire; located in south central New Hampshire on the Merrimack river
+4049,Concord_grape,slipskin grape; a purple table grape of the northeastern United States
+4050,Condorcet Marquis_de_Condorcet Marie_Jean_Antoine_Nicolas_Caritat,French mathematician and philosopher (1743-1794)
+4051,Condylura genus_Condylura,star-nosed moles
+4052,Conepatus genus_Conepatus,a genus of Mustelidae
+4053,Coney_Island,a section of Brooklyn on the Atlantic; known as an amusement center
+4054,Confederacy Confederate_States Confederate_States_of_America South Dixie Dixieland,the southern states that seceded from the United States in 1861
+4055,Confederate,a supporter of the Confederate States of America
+4056,Confederate_Army Army_of_the_Confederacy,the southern army during the American Civil War
+4057,Confederate_soldier,a soldier in the Army of the Confederacy during the American Civil War
+4058,Confucian Confucianist,a believer in the teachings of Confucius
+4059,Confucianism,the teachings of Confucius emphasizing love for humanity; high value given to learning and to devotion to family (including ancestors); peace; justice; influenced the traditional culture of China
+4060,Confucius Kongfuze K'ung_Futzu Kong_the_Master,Chinese philosopher whose ideas and sayings were collected after his death and became the basis of a philosophical doctrine known a Confucianism (circa 551-478 BC)
+4061,Congo Congo_River Zaire_River,a major African river (one of the world's longest); flows through Congo into the South Atlantic
+4062,Congo Democratic_Republic_of_the_Congo Zaire Belgian_Congo,a republic in central Africa; achieved independence from Belgium in 1960
+4063,Congo Republic_of_the_Congo French_Congo,a republic in west-central Africa; achieved independence from France in 1960
+4064,Congo_franc,the basic unit of money in the Congo
+4065,Congolese,a native or inhabitant of the Republic of the Congo
+4066,Congregational_Christian_Church,merger of the Congregational Church and the Christian Church
+4067,Congregational_Church,a Protestant denomination holding that each individual congregation should be self-governing
+4068,Congregationalism,system of beliefs and church government of a Protestant denomination in which each member church is self-governing
+4069,Congregationalist,a member of the Congregational Church
+4070,Congress United_States_Congress U.S._Congress US_Congress,the legislature of the United States government
+4071,Congress_of_Industrial_Organizations CIO,a federation of North American industrial unions that merged with the American Federation of Labor in 1955
+4072,Congress_of_Racial_Equality CORE,an organization founded by James Leonard Farmer in 1942 to work for racial equality
+4073,Congressional_Record,a published written account of the speeches and debates and votes of the United States Congress
+4074,Congreve William_Congreve,English playwright remembered for his comedies (1670-1729)
+4075,Congridae family_Congridae,marine eels
+4076,Coniferales order_Coniferales,profusely branching and chiefly evergreen trees and some shrubs having narrow or needlelike leaves
+4077,Coniferopsida class_Coniferopsida Coniferophytina subdivision_Coniferophytina Coniferophyta,cone-bearing gymnosperms dating from the Carboniferous period; most are substantial trees; includes the classes Pinopsida (subdivision Pinophytina) and Ginkgopsida (subdivision Ginkgophytina) and Taxopsida (subdivision Taxophytina) which in turn include the surviving orders Coniferales and Taxales (yews) and sometimes Ginkgoales as well as extinct orders such as Cordaitales (of the Carboniferous and Permian)
+4078,Conilurus genus_Conilurus,jerboa rats
+4079,Coniogramme genus_Coniogramme,terrestrial ferns of Pacific islands and Asia
+4080,Conium genus_Conium,small genus of highly toxic biennials: hemlock
+4081,Conn's_syndrome,disturbances in saltwater balance and symptoms of weakness and muscular cramps and twitching and convulsions and sometimes paralysis; usually caused by a benign tumor of the cortex of the adrenal gland that leads to excess secretion of aldosterone
+4082,Connaraceae family_Connaraceae zebrawood_family,mostly tropical climbing shrubs or small trees; closely related to Leguminosae
+4083,Connarus genus_Connarus,large genus of tropical trees and shrubs; type genus of the Connaraceae
+4084,Connarus_guianensis,tropical American and east African tree with strikingly marked hardwood used in cabinetwork
+4085,Connecticut,one of the British colonies that formed the United States
+4086,Connecticut Connecticut_River,a river in the northeastern United States; flows south from northern New Hampshire along the border between New Hampshire and Vermont and through Massachusetts and Connecticut where it empties into Long Island Sound
+4087,Connecticut Nutmeg_State Constitution_State CT Ct.,a New England state; one of the original 13 colonies
+4088,Connecticuter,a native or resident of Connecticut
+4089,Connemara_heath St._Dabeoc's_heath Daboecia_cantabrica,low straggling evergreen shrub of western Europe represented by several varieties with flowers from white to rose-purple
+4090,Connochaetes genus_Connochaetes,African antelopes: gnus
+4091,Connolly Maureen_Catherine_Connolly Little_Mo_Connolly,United States tennis player who was the first woman to win the United States, British, French, and Australian championships in the same year (1953) (1934-1969)
+4092,Connors Jimmy_Conors James_Scott_Connors,outstanding United States tennis player (born in 1952)
+4093,Conocarpus genus_Conocarpus,monotypic genus of tropical American trees: button tree
+4094,Conoclinium genus_Conoclinium,mistflower
+4095,Conodonta order_Conodonta Conodontophorida order_Conodontophorida,extinct order of primitive vertebrates; the precise taxonomy is not clear; in some classifications considered a separate phylum
+4096,Conopodium genus_Conopodium,a genus of dicotyledonous plants of the family Umbelliferae
+4097,Conospermum genus_Conospermum,Australian shrubs (some trees) with flowers in dense spikes: smoke bush
+4098,Conoy,a member of an Algonquian people formerly living in Maryland between Chesapeake Bay and the Potomac river; allies of the Nanticoke people
+4099,Conrad Joseph_Conrad Teodor_Josef_Konrad_Korzeniowski,English novelist (born in Poland) noted for sea stories and for his narrative technique (1857-1924)
+4100,Conradina genus_Conradina,small genus of low aromatic shrubs of southeastern United States
+4101,Conservative,a member of a Conservative Party
+4102,Conservative_Jew,Jew who keeps some requirements of Mosaic law but adapts others to suit modern circumstances
+4103,Conservative_Judaism,Jews who keep some of the requirements of the Mosaic law but allow for adaptation of other requirements (as some of the dietary laws) to fit modern circumstances
+4104,Conservative_Judaism,beliefs and practices of Conservative Jews
+4105,Conservative_Party,a political party (especially in Great Britain or Australia) that believes in the importance of a capitalist economy with private ownership rather than state control
+4106,Consolida genus_Consolida,plants having flowers resembling the larkspur's but differing from larkspur's in the arrangement of petals; sometimes included in genus Delphinium
+4107,Constable John_Constable,English landscape painter (1776-1837)
+4108,Constance Council_of_Constance,the council in 1414-1418 that succeeded in ending the Great Schism in the Roman Catholic Church
+4109,Constance Lake_Constance Bodensee,a lake in southeastern Germany on the northern side of the Swiss Alps; forms part of the Rhine River
+4110,Constantina,a Romanian resort city on the Black Sea
+4111,Constantine,a walled city in northeastern Algeria to the east of Algiers; was destroyed in warfare in the 4th century and rebuilt by Constantine I
+4112,Constantine Constantine_I Constantine_the_Great Flavius_Valerius_Constantinus,Emperor of Rome who stopped the persecution of Christians and in 324 made Christianity the official religion of the Roman Empire; in 330 he moved his capital from Rome to Byzantium and renamed it Constantinople (280-337)
+4113,Constantinople First_Council_of_Constantinople,the second ecumenical council in 381 which added wording about the Holy Spirit to the Nicene Creed
+4114,Constantinople Fourth_Council_of_Constantinople,the council in 869 that condemned Photius who had become the patriarch of Constantinople without approval from the Vatican, thereby precipitating the schism between the eastern and western churches
+4115,Constantinople Second_Council_of_Constantinople,the fifth ecumenical council in 553 which held Origen's writings to be heretic
+4116,Constantinople Third_Council_of_Constantinople,the sixth ecumenical council in 680-681 which condemned Monothelitism by defining two wills in Christ, divine and human
+4117,Constitution Old_Ironsides,a United States 44-gun frigate that was one of the first three naval ships built by the United States; it won brilliant victories over British frigates during the War of 1812 and is without doubt the most famous ship in the history of the United States Navy; it has been rebuilt and is anchored in the Charlestown Navy Yard in Boston
+4118,Constitutional_Convention,the convention of United States statesmen who drafted the United States Constitution in 1787
+4119,Constitutional_Union_Party,a former political party in the United States; formed in 1859 by former Whigs who hoped to preserve the Union
+4120,Continent,the European mainland; "Englishmen like to visit the Continent but they wouldn't like to live there"
+4121,Continental_Army,the American army during the American Revolution
+4122,Continental_Congress,the legislative assembly composed of delegates from the rebel colonies who met during and after the American Revolution; they issued the Declaration of Independence and framed Articles of Confederation
+4123,Continuity_Irish_Republican_Army CIRA Continuity_Army_Council,a terrorist organization formed in Ireland in 1994 as a clandestine armed wing of Sinn Fein
+4124,Contopus genus_Contopus,pewees
+4125,Contra,a member of the guerrilla force that opposed a left-wing government in Nicaragua
+4126,Contras,a Nicaraguan counterrevolutionary guerrilla force from 1979 to 1990; it opposed a left-wing government, with support from the United States
+4127,Conuropsis genus_Conuropsis,a genus of Psittacidae
+4128,Convallaria genus_Convallaria,sometimes placed in family Convallariaceae: lily of the valley
+4129,Convallariaceae family_Convallariaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+4130,Converso,(medieval Spain and Portugal) a Jew or Moor who professed to convert to Christianity in order to avoid persecution or expulsion
+4131,Convolvulaceae family_Convolvulaceae morning-glory_family,morning glory; bindweed; sweet potato; plants having trumpet-shaped flowers and a climbing or twining habit
+4132,Conyza genus_Conyza,common American weed or wildflower
+4133,Cook James_Cook Captain_Cook Captain_James_Cook,English navigator who claimed the east coast of Australia for Britain and discovered several Pacific islands (1728-1779)
+4134,Cook_Strait,a narrow strait separating the North Island and South Island in New Zealand
+4135,Cooke Alistair_Cooke Alfred_Alistair_Cooke,United States journalist (born in England in 1908)
+4136,Cooke Jay_Cooke,United States financier who marketed Union bonds to finance the American Civil War; the failure of his bank resulted in a financial panic in 1873 (1821-1905)
+4137,Cooley's_anemia Cooley's_anaemia thalassemia_major thalassaemia_major,a fatal form of homozygous thalassemia (inherited from both parents) in which there is no hemoglobin; skeletal deformations; heart and spleen and liver enlarged
+4138,Coolidge Calvin_Coolidge President_Coolidge,elected vice president and succeeded as 30th President of the United States when Harding died in 1923 (1872-1933)
+4139,Cooper Gary_Cooper Frank_Cooper,United States film actor noted for his portrayals of strong silent heroes (1901-1961)
+4140,Cooper James_Fenimore_Cooper,United States novelist noted for his stories of American Indians and the frontier life (1789-1851)
+4141,Cooper Peter_Cooper,United States industrialist who built the first American locomotive; founded Cooper Union in New York City to offer free courses in the arts and sciences (1791-1883)
+4142,Cooper's_hawk blue_darter Accipiter_cooperii,bluish-grey North American hawk having a darting flight
+4143,Cooper_Union Cooper_Union_for_the_Advancement_of_Science_and_Art,university founded in 1859 by Peter Cooper to offer free courses in the arts and sciences
+4144,Cooperstown,a small town in east central New York; site of the National Baseball Hall of Fame
+4145,Coosa Coosa_River,river that rises in northwestern Georgia and flows southwest through eastern Alabama to join the Tallapoosa River near Montgomery and form the Alabama River
+4146,Copehan,a group of Penutian languages spoken to the west of the Sacramento river
+4147,Copenhagen Kobenhavn Danish_capital,the capital and largest city of Denmark; located on the island of Zealand; "Copenhagen is sometimes called the Paris of the North"
+4148,Copepoda subclass_Copepoda,minute planktonic or parasitic crustaceans
+4149,Copernican_system,(astronomy) Copernicus' astronomical model in which the Earth rotates around the sun
+4150,Copernicia genus_Copernicia,slow-growing tropical fan palms
+4151,Copernicus,a conspicuous crater on the Moon
+4152,Copernicus Nicolaus_Copernicus Mikolaj_Kopernik,Polish astronomer who produced a workable model of the solar system with the sun in the center (1473-1543)
+4153,Copland Aaron_Copland,United States composer who developed a distinctly American music (1900-1990)
+4154,Copley John_Copley John_Singleton_Copley,American painter who did portraits of Paul Revere and John Hancock before fleeing to England to avoid the American Revolution (1738-1815)
+4155,Coppola Francis_Ford_Coppola,United States filmmaker (born in 1939)
+4156,Coprinaceae family_Coprinaceae,used in some classifications for the genus Coprinus
+4157,Coprinus genus_Coprinus,genus of black-spotted agarics in which the cap breaks down at maturity into an inky fluid; sometimes placed in its own family Coprinaceae
+4158,Copt,an Egyptian descended from the ancient Egyptians
+4159,Copt,a member of the Coptic Church
+4160,Coptic,the liturgical language of the Coptic Church used in Egypt and Ethiopia; written in the Greek alphabet
+4161,Coptic_Church,the ancient Christian church of Egypt
+4162,Coptis genus_Coptis,small genus of low perennial herbs having yellow rhizomes and white or yellow flowers
+4163,Coracias genus_Coracias,type genus of the Coraciidae
+4164,Coraciidae family_Coraciidae,rollers
+4165,Coraciiformes order_Coraciiformes,rollers; kingfishers; hornbills; hoopoes; motmots; bee eaters; todies
+4166,Coragyps genus_Coragyps,a genus of Cathartidae
+4167,Coral_Sea,an arm of the South Pacific to the northeast of Australia
+4168,Coral_Sea battle_of_the_Coral_Sea,a Japanese defeat in World War II (May 1942); the first naval battle fought entirely by planes based on aircraft carriers
+4169,Corallorhiza genus_Corallorhiza,genus of leafless root-parasitic orchids having small purplish or yellowish racemose flowers with lobed lips; widely distributed in temperate regions
+4170,Corbett Jim_Corbett James_John_Corbett Gentleman_Jim,United States heavyweight boxing champion (1866-1933)
+4171,Corchorus genus_Corchorus,widely distributed genus of tropical herbs or subshrubs; especially Asia
+4172,Cordaitaceae family_Cordaitaceae,chiefly Paleozoic plants; Cordaites is the chief and typical genus
+4173,Cordaitales order_Cordaitales,extinct plants having tall arborescent trunks comparable to or more advanced than cycads; known from the Pennsylvanian period; probably extinct since the Mesozoic era
+4174,Cordaites genus_Cordaites,tall Paleozoic trees superficially resembling modern screw pines; structurally intermediate in some ways between cycads and conifers
+4175,Corday Charlotte_Corday Marie_Anne_Charlotte_Corday_d'Armont,French revolutionary heroine (a Girondist) who assassinated Marat (1768-1793)
+4176,Cordia genus_Cordia,tropical deciduous or evergreen trees or shrubs of the family Boraginaceae
+4177,Cordoba Cordova,a city in southern Spain; center of Moorish culture
+4178,Cordoba Cordova,a city in central Argentina; site of a university founded in 1613
+4179,Cordoba Francisco_Fernandez_Cordoba Cordova Francisco_Fernandez_de_Cordova,Spanish explorer who discovered Yucatan (1475-1526)
+4180,Cordylidae family_Cordylidae,small family of spiny ovoviviparous African lizards
+4181,Cordyline genus_Cordyline,Asiatic and Pacific trees or shrubs; fragments of the trunk will regrow to form whole plants
+4182,Cordylus genus_Cordylus,type genus of the Cordylidae; spiny lizards somewhat resembling tiny crocodiles
+4183,Coregonidae family_Coregonidae,soft-finned fishes comprising the freshwater whitefishes; formerly included in the family Salmonidae
+4184,Coregonus genus_Coregonus,type genus of the Coregonidae: whitefishes
+4185,Coreidae family_Coreidae,squash bugs and leaf-footed bugs
+4186,Corelli Arcangelo_Corelli,Italian violinist and composer of violin concertos (1653-1713)
+4187,Coriandrum genus_Coriandrum,small genus of annual Mediterranean herbs
+4188,Corinth Korinthos,the modern Greek port near the site of the ancient city that was second only to Athens
+4189,Corinthian,a resident of Corinth
+4190,Corinthian_order,the last Greek order; similar to the Ionic order except the capital is decorated with carvings of acanthus leaves
+4191,Coriolis_effect,(physics) an effect whereby a body moving in a rotating frame of reference experiences the Coriolis force acting perpendicular to the direction of motion and to the axis of rotation; on Earth the Coriolis effect deflects moving bodies to the right in the northern hemisphere and to the left in the southern hemisphere
+4192,Coriolis_force,(physics) a force due to the earth's rotation; acts on a body in motion (airplane or projectile) in a rotating reference frame; in a rotating frame of reference Newton's second law of motion can be made to apply if in addition to the real forces acting on a body a Coriolis force and a centrifugal force are introduced
+4193,Corixa genus_Corixa,type genus of the Corixidae: boat bugs
+4194,Corixidae family_Corixidae,water bugs
+4195,Cork,a port city in southern Ireland
+4196,Corn_Belt,the midwestern states in the U.S. where corn is grown; Iowa and Illinois are excellent for raising corn and corn-fed livestock
+4197,Cornaceae family_Cornaceae dogwood_family,a rosid dicot family of the order Umbellales including: genera Aucuba, Cornus, Corokia, Curtisia, Griselinia, Helwingia
+4198,Corneille Pierre_Corneille,French tragic dramatist whose plays treat grand moral themes in elegant verse (1606-1684)
+4199,Cornell Ezra_Cornell,United States businessman who unified the telegraph system in the United States and who in 1865 (with Andrew D. White) founded Cornell University (1807-1874)
+4200,Cornell Katherine_Cornell,United States actress noted for her performances in Broadway plays (1893-1974)
+4201,Cornell_University,a university in Ithaca, New York
+4202,Cornish,a Celtic language spoken in Cornwall
+4203,Cornish Cornish_fowl,English breed of compact domestic fowl; raised primarily to crossbreed to produce roasters
+4204,Cornish_heath Erica_vagans,bushy shrub having pink to white flowers; common on the moors of Cornwall and in southwestern Europe; cultivated elsewhere
+4205,Cornish_pasty,meat pie with filling of meat and vegetables
+4206,Cornishman,a man who is a native or inhabitant of Cornwall
+4207,Cornishwoman,a woman who is a native or resident of Cornwall
+4208,Cornus genus_Cornus,a rosid dicot genus of the family Cornaceae including: dogwood; cornel: perennial chiefly deciduous shrubs or small trees of temperate regions of northern hemisphere
+4209,Cornwall,a hilly county in southwestern England
+4210,Cornwallis Charles_Cornwallis First_Marquess_Cornwallis,commander of the British forces in the American War of Independence; was defeated by American and French troops at Yorktown (1738-1805)
+4211,Corokia genus_Corokia,evergreen shrubs with intricately twisted wiry stems that in summer are smothered in small yellow flowers; grows in New Zealand
+4212,Corona_Borealis,a small constellation in the northern hemisphere between Bootes and Hercules
+4213,Coropuna,a mountain peak in the Andes in Peru (21,083 feet high)
+4214,Corot Jean_Baptiste_Camille_Corot,French painter of Italian landscapes (1796-1875)
+4215,Corpus_Christi,Thursday after Trinity Sunday; first celebrated in 1246
+4216,Corpus_Christi,a city in southern Texas on an arm of the Gulf of Mexico
+4217,Correggio Antonio_Allegri_da_Correggio,Italian painter noted for his use of chiaroscuro and perspective (1494-1534)
+4218,Corse Corsica,an island in the Mediterranean; with adjacent islets it constitutes a region of France
+4219,Corse Corsica,a region of France on the island of Corsica; birthplace of Napoleon Bonaparte
+4220,Cortaderia genus_Cortaderia,tall ornamental grasses of South America and New Zealand and New Guinea: pampas grass
+4221,Cortes Cortez Hernando_Cortes Hernando_Cortez Hernan_Cortes Hernan_Cortez,Spanish conquistador who defeated the Aztecs and conquered Mexico (1485-1547)
+4222,Corticium genus_Corticium,genus of fungi having simple smooth sporophores; some are parasitic on wood or economic crops; some species formerly placed in form genus Rhizoctinia
+4223,Cortinariaceae family_Cortinariaceae,a family of fungi belonging to the order Agaricales
+4224,Cortinarius genus_Cortinarius,the largest genus in the Agaricales; agarics having rusty spores and prominent cortinae (cobwebby partial veils)
+4225,Cortinarius_armillatus,a fungus with large tawny caps and pale cinnamon gills and a red band of veil around the stalk; usually found near birch trees
+4226,Cortinarius_atkinsonianus,an edible fungus with a slimy viscid cap that is initially yellow but turns olive and then tawny; flesh is lavender
+4227,Cortinarius_corrugatus,a fungus with a viscid wrinkled tawny cap; the stalk has a basal bulb that diminishes as the stalk elongates; the gills are dark violet at first but soon turn brown
+4228,Cortinarius_gentilis,a poisonous fungus with a bright yellow brown cap and a long cinnamon colored stalk
+4229,Cortinarius_mutabilis purple-staining_Cortinarius,a fungus with a reddish purple cap having a smooth slimy surface; close violet gills; all parts stain dark purple when bruised
+4230,Cortinarius_semisanguineus,a fungus with a dry brown cap and rusty red gills and a yellowish stalk
+4231,Cortinarius_subfoetidus,a fungus with a sticky lavender cap and stalk that whitish above and covered with a silky lavender sheath
+4232,Cortinarius_violaceus,a fungus that is violet overall with a squamulose cap
+4233,Cortland,large apple with a red skin
+4234,Corvidae family_Corvidae,crow; raven; rook; jackdaw; chough; magpie; jay
+4235,Corvus Crow,a small quadrilateral constellation in the southern hemisphere near Virgo
+4236,Corvus genus_Corvus,type genus of the Corvidae: crows and ravens
+4237,Coryanthes genus_Coryanthes,small genus of tropical American epiphytic or lithophytic orchids
+4238,Corydalidae family_Corydalidae,dobsons
+4239,Corydalis genus_Corydalis,annual or perennial herbs of Himalayan China and South Africa
+4240,Corydalus genus_Corydalus Corydalis genus_Corydalis,type genus of the Corydalidae
+4241,Corylaceae subfamily_Corylaceae family_Corylaceae,used in some classification systems for the genus Corylus
+4242,Corylopsis genus_Corylopsis,small genus of deciduous shrubs of temperate regions of Asia
+4243,Corylus genus_Corylus,deciduous monoecious nut-bearing shrubs of small trees: hazel; sometimes placed in the subfamily or family Corylaceae
+4244,Corynebacteriaceae family_Corynebacteriaceae,a large family of mostly Gram-positive and aerobic and nonmotile rod-shaped bacteria of the order Eubacteriales
+4245,Corynebacterium_diphtheriae C._diphtheriae Klebs-Loeffler_bacillus,a species of bacterium that causes diphtheria
+4246,Corypha genus_Corypha,large fan palms of tropical Asia to Australia
+4247,Coryphaena_equisetis,a kind of dolphinfish
+4248,Coryphaena_hippurus,the more common dolphinfish valued as food; about six feet long
+4249,Coryphaenidae family_Coryphaenidae,large active pelagic percoid fish
+4250,Cosimo_de_Medici Cosimo_the_Elder,Italian financier and statesman and friend of the papal court (1389-1464)
+4251,Cosmocampus genus_Cosmocampus,a genus of fish in the family Syngnathidae
+4252,Cossack,a member of a Slavic people living in southern European Russia and Ukraine and adjacent parts of Asia and noted for their horsemanship and military skill; they formed an elite cavalry corps in czarist Russia
+4253,Costa_Rica Republic_of_Costa_Rica,a republic in Central America; one of the most politically stable countries in Latin America
+4254,Costa_Rican,a native or inhabitant of Costa Rica
+4255,Costa_Rican_monetary_unit,monetary unit in Costa Rica
+4256,Costanoan,a member of a North American Indian people living in coastal California between Monterey and San Francisco Bay
+4257,Costanoan,a Penutian language spoken by the Costanoan
+4258,Cotacachi,an Andean volcano in northern Ecuador; last erupted in 1955
+4259,Cotes_de_Provence,a wine from southeastern France on the Mediterranean coast
+4260,Cotingidae family_Cotingidae,cotingas; umbrella birds
+4261,Cotinus genus_Cotinus,smoke trees
+4262,Cotoneaster_dammeri,climbing evergreen shrub with white flowers and red berries; often used as ground cover
+4263,Cotoneaster_horizontalis,deciduous flat-growing shrub with a fanned herringbone pattern and having reddish flowers and orange-red berries; used as a ground cover
+4264,Cotonou,chief port of Benin on the Bight of Benin
+4265,Cotopaxi,the world's largest active volcano; located in the Andes in north central Ecuador
+4266,Cotswold,sheep with long wool originating in the Cotswold Hills
+4267,Cotswolds Cotswold_Hills,a range of low hills in southwestern England
+4268,Cottidae family_Cottidae,sculpins
+4269,Cottus genus_Cottus,type genus of the Cottidae: sculpins
+4270,Cotula genus_Cotula,cosmopolitan herbs especially southern hemisphere; many used as ground covers
+4271,Coturnix genus_Coturnix,Old World quail
+4272,Coue Emile_Coue,French psychotherapist who claimed that if one imagined one was getting better, one would get better (1857-1926)
+4273,Coulomb Charles_Augustin_de_Coulomb,French physicist famous for his discoveries in the field of electricity and magnetism; formulated Coulomb's Law (1736-1806)
+4274,Coulomb's_Law,a fundamental principle of electrostatics; the force of attraction or repulsion between two charged particles is directly proportional to the product of the charges and inversely proportional to the distance between them; principle also holds for magnetic poles
+4275,Coumarouna genus_Coumarouna Dipteryx genus_Dipteryx,tropical American trees: tonka beans
+4276,Council_Bluffs,a town in southwest Iowa on the Missouri River across from Omaha
+4277,Council_of_Basel-Ferrara-Florence,the council in 1431-1439 that concentrated on the elimination of heresies and on reforms within the Roman Catholic Church
+4278,Council_of_Economic_Advisors,an executive agency responsible for providing economic advice to the President
+4279,Council_of_Trent,a council of the Roman Catholic Church convened in Trento in three sessions between 1545 and 1563 to examine and condemn the teachings of Martin Luther and other Protestant reformers; redefined the Roman Catholic doctrine and abolished various ecclesiastical abuses and strengthened the papacy
+4280,Council_on_Environmental_Policy,the executive agency that advises the President on protecting the environment
+4281,Counsel_to_the_Crown,a barrister selected to serve as counsel to the British ruler
+4282,Count_Fleet,thoroughbred that won the triple crown in 1943
+4283,Counter_Reformation,the reaction of the Roman Catholic Church to the Reformation reaffirming the veneration of saints and the authority of the Pope (to which Protestants objected); many leaders were Jesuits
+4284,Counterterrorist_Center CTC,an agency that helps the Director of Central Intelligence coordinate counterterrorist efforts in order to preempt and disrupt and defeat terrorist activities at the earliest possible stage
+4285,Couperin Francois_Couperin,French composer of music for organ and a member of a family of distinguished organists (1668-1733)
+4286,Courbet Gustave_Courbet,French painter noted for his realistic depiction of everyday scenes (1819-1877)
+4287,Court Margaret_Court,Australian woman tennis player who won many major championships (born in 1947)
+4288,Court_of_Saint_James's,the British royal court
+4289,Courtelle,an acrylic fabric resembling wool
+4290,Cousteau Jacques_Costeau Jacques_Yves_Costeau,French underwater explorer (born in 1910)
+4291,Coventry,an industrial city in central England; devastated by air raids during World War II; remembered as the home of Lady Godiva in the 11th century
+4292,Coward Noel_Coward Sir_Noel_Pierce_Coward,English dramatist and actor and composer noted for his witty and sophisticated comedies (1899-1973)
+4293,Cowpens battle_of_Cowpens,battle in the American Revolution; Americans under Daniel Morgan defeated the British
+4294,Cowper William_Cowper,English surgeon who discovered Cowper's gland (1666-1709)
+4295,Cowper William_Cowper,English poet who wrote hymns and poetry about nature (1731-1800)
+4296,Cowper's_gland bulbourethral_gland,either of two glands that discharge a component of seminal fluid into the urethra; homologous to Bartholin's gland in the female
+4297,Cox's_Orange_Pippin,a yellow Pippin with distinctive flavor
+4298,Cox-2_inhibitor,an anti-inflammatory drug that fights pain and blocks Cox-2 activity without impeding the activity of Cox-1; increases the risk of heart attacks; "Cox-2 inhibitors reduce the symptoms of arthritis without endangering the stomach and kidneys"
+4299,Crab_Nebula,a remnant of a supernova detected first in 1054 AD
+4300,Cracidae family_Cracidae,curassows; guans; chachalacas
+4301,Cracow Krakow Krakau,an industrial city in southern Poland on the Vistula
+4302,Cracticidae family_Cracticidae,Australian birds formerly included in the family Laniidae
+4303,Cracticus genus_Cracticus,type genus of the Cracticidae: Australian butcherbirds
+4304,Craigie William_A._Craigie Sir_William_Alexander_Craigie,English lexicographer who was a joint editor of the Oxford English Dictionary (1872-1966)
+4305,Crambe genus_Crambe,annual or perennial herbs with large leaves that resemble the leaves of cabbages
+4306,Crane Hart_Crane Harold_Hart_Crane,United States poet (1899-1932)
+4307,Crane Stephen_Crane,United States writer (1871-1900)
+4308,Crangon genus_Crangon,type genus of the family Crangonidae
+4309,Crangonidae family_Crangonidae,shrimps
+4310,Craspedia genus_Craspedia,herbs of Australia and New Zealand
+4311,Crassostrea genus_Crassostrea,Virginia oysters
+4312,Crassula genus_Crassula,type genus of Crassulaceae; herbs and small shrubs having woody stems and succulent aerial parts
+4313,Crassulaceae family_Crassulaceae stonecrop_family,succulent shrubs and herbs
+4314,Crataegus genus_Crataegus,thorny shrubs and small trees: hawthorn; thorn; thorn apple
+4315,Crater,a faint constellation in the southern hemisphere near Hydra and Corvus
+4316,Crater_Lake_National_Park,a national park in Oregon having the deepest lake in the United States in the crater of an extinct volcano
+4317,Crateva genus_Crateva,tropical genus of small trees or shrubs
+4318,Crawford Joan_Crawford,United States film actress (1908-1977)
+4319,Crawford Thomas_Crawford,United States neoclassical sculptor (1814-1857)
+4320,Crax genus_Crax,type genus of the Cracidae: curassows
+4321,Crazy_Glue,a commercial brand of epoxy glue
+4322,Crazy_Horse Tashunca-Uitco,a chief of the Sioux who resisted the invasion of the Black Hills and joined Sitting Bull in the defeat of General Custer at Little Bighorn (1849-1877)
+4323,Creation,(theology) God's act of bringing the universe into existence
+4324,Crecy battle_of_Crecy,the first decisive battle of the Hundred Years' War; in 1346 the English under Edward III defeated the French under Philip of Valois
+4325,Cree,a member of an Algonquian people living in central Canada
+4326,Cree,the Algonquian language spoken by the Cree
+4327,Creek,any member of the Creek Confederacy (especially the Muskogee) formerly living in Georgia and Alabama but now chiefly in Oklahoma
+4328,Creek_Confederacy,a North American Indian confederacy organized by the Muskogee that dominated the southeastern part of the United States before being removed to Oklahoma
+4329,Cremona,a city in Lombardy on the Po River; noted for the manufacture of fine violins from the 16th to the 18th centuries
+4330,Creole,a person of European descent born in the West Indies or Latin America
+4331,Creole,a person descended from French ancestors in southern United States (especially Louisiana)
+4332,Creon,(Greek mythology) the brother of Jocasta and uncle of Antigone who became king of Thebes after the fall of Oedipus
+4333,Crepis genus_Crepis,hawk's-beard; cosmopolitan in northern hemisphere
+4334,Crescentia genus_Crescentia,a genus of tropical American trees of the family Bignoniaceae; has a short trunk and crooked limbs and drooping branches
+4335,Cretaceous Cretaceous_period,from 135 million to 63 million years ago; end of the age of reptiles; appearance of modern insects and flowering plants
+4336,Cretan,a native or inhabitant of Crete
+4337,Crete Kriti,the largest Greek island in the Mediterranean; site of the Minoan civilization that reached its peak in 1600 BC
+4338,Creutzfeldt-Jakob_disease CJD Jakob-Creutzfeldt_disease,rare (usually fatal) brain disease (usually in middle age) caused by an unidentified slow virus; characterized by progressive dementia and gradual loss of muscle control
+4339,Crex genus_Crex,corncrakes
+4340,Cricetidae family_Cricetidae,mostly small New World rodents including New World mice and lemmings and voles and hamsters
+4341,Cricetus genus_Cricetus,type genus of the Cricetidae: Old World hamsters
+4342,Crichton James_Crichton The_Admirable_Crichton,Scottish man of letters and adventurer (1560-1582)
+4343,Crick Francis_Crick Francis_Henry_Compton_Crick,English biochemist who (with Watson in 1953) helped discover the helical structure of DNA (1916-2004)
+4344,Crimea,a Ukrainian peninsula between the Black Sea and the Sea of Azov
+4345,Crimea-Congo_hemorrhagic_fever,an infection common in Arab states caused by a bunyavirus; transmitted by a tick that thrives on sheep
+4346,Crimean_War,a war in Crimea between Russia and a group of nations including England and France and Turkey and Sardinia; 1853-1856
+4347,Criminal_Intelligence_Services_of_Canada CISC,an agency of the Canadian government that unifies the intelligence units of Canadian law enforcement agencies
+4348,Criminal_Investigation_Command CID,the United States Army's principal law enforcement agency responsible for the conduct of criminal investigations for all levels of the Army anywhere in the world
+4349,Crinoidea class_Crinoidea,sea lilies
+4350,Crispin Saint_Crispin St._Crispin,patron saint of shoemakers; he and his brother were martyred for trying to spread Christianity (3rd century)
+4351,Crius,(Greek mythology) one of the Titans
+4352,Cro-magnon,extinct human of Upper Paleolithic in Europe
+4353,Croatia Republic_of_Croatia Hrvatska,a republic in the western Balkans in south-central Europe in the eastern Adriatic coastal area; formerly part of the Habsburg monarchy and Yugoslavia; became independent in 1991
+4354,Croatian Croat,a member of the Slavic people living in Croatia
+4355,Crocethia genus_Crocethia,a genus of Scolopacidae
+4356,Crock_Pot,an electric cooker that maintains a relatively low temperature
+4357,Crockett Davy_Crockett David_Crockett,United States frontiersman and Tennessee politician who died at the siege of the Alamo (1786-1836)
+4358,Crocodylia order_Crocodylia Crocodilia order_Crocodilia,crocodiles; alligators; caimans; gavials
+4359,Crocodylidae family_Crocodylidae,true crocodiles
+4360,Crocodylus genus_Crocodylus Crocodilus genus_Crocodilus,type genus of the Crocodylidae
+4361,Crocuta genus_Crocuta,a genus of Hyaenidae
+4362,Croesus,last king of Lydia (died in 546 BC)
+4363,Croesus,a very wealthy man
+4364,Crohn Burrill_Bernard_Crohn,United States physician who specialized in diseases of the intestines; he was the first to describe regional ileitis which is now known as Crohn's disease (1884-1983)
+4365,Croix_de_Guerre,a French military decoration for gallantry
+4366,Cromwell Oliver_Cromwell Ironsides,English general and statesman who led the parliamentary army in the English Civil War (1599-1658)
+4367,Cronartium genus_Cronartium,rust fungi having aecia produced in raised or swollen sori and teliospores borne in waxy columns
+4368,Cronus,(Greek mythology) the supreme god until Zeus dethroned him; son of Uranus and Gaea in ancient Greek mythology; identified with Roman Saturn
+4369,Cronyn Hume_Cronyn Hume_Blake_Cronyn,Canadian actor who frequently played character parts with his wife Jessica Tandy (1911-2003)
+4370,Crookes William_Crookes Sir_William_Crookes,English chemist and physicist; discovered thallium; invented the radiometer and studied cathode rays (1832-1919)
+4371,Crookes_radiometer,electromagnetic radiometer consisting of a small paddlewheel that rotates when placed in daylight
+4372,Crookes_tube,the original gas-discharge cathode-ray tube
+4373,Crosby Bing_Crosby Harry_Lillis_Crosby,United States singer and film actor (1903-1977)
+4374,Cross,a representation of the structure on which Jesus was crucified; used as an emblem of Christianity or in heraldry
+4375,Cross-Florida_Waterway Okeechobee_Waterway,a waterway used by small boats to travel between the Atlantic Ocean and the Gulf of Mexico through Lake Okeechobee and the Caloosahatchee Canal and the Caloosahatchee River
+4376,Crossopterygii subclass_Crossopterygii,fishes having paired fins resembling limbs and regarded as ancestral to amphibians
+4377,Crotalidae family_Crotalidae,New World vipers: pit vipers
+4378,Crotalus genus_Crotalus,large rattlesnakes; seldom bite unless startled or pursuing prey
+4379,Crotaphytus genus_Crotaphytus,collared lizards
+4380,Crotophaga genus_Crotophaga,ani
+4381,Crouse Russel_Crouse,United States playwright (1893-1966)
+4382,Crow,a member of the Siouan people formerly living in eastern Montana
+4383,Crow,a Siouan language spoken by the Crow
+4384,Crown,the Crown (or the reigning monarch) as the symbol of the power and authority of a monarchy; "the colonies revolted against the Crown"
+4385,Crown_Colony,a British colony controlled by the British Crown, represented by a governor
+4386,Crown_land,land that belongs to the Crown
+4387,Cruciferae family_Cruciferae Brassicaceae family_Brassicaceae mustard_family,a large family of plants with four-petaled flowers; includes mustards, cabbages, broccoli, turnips, cresses, and their many relatives
+4388,Crucifixion,the death of Jesus by crucifixion
+4389,Crusade,any of the more or less continuous military expeditions in the 11th to 13th centuries when Christian powers of Europe tried to recapture the Holy Land from the Muslims
+4390,Crusader,a warrior who engages in a holy war; "the Crusaders tried to recapture the Holy Land from the Muslims"
+4391,Crustacea class_Crustacea,class of mandibulate arthropods including: lobsters; crabs; shrimps; woodlice; barnacles; decapods; water fleas
+4392,Cryptacanthodes genus_Cryptacanthodes,a genus of Stichaeidae
+4393,Cryptobranchidae family_Cryptobranchidae,large aquatic salamanders: hellbenders; giant salamanders
+4394,Cryptobranchus genus_Cryptobranchus,type genus of the Cryptobranchidae
+4395,Cryptocercidae family_Cryptocercidae,a family of Blattodea
+4396,Cryptocercus genus_Cryptocercus,cockroaches
+4397,Cryptogamia,in former classification systems: one of two major plant divisions, including all plants that do not bear seeds: ferns, mosses, algae, fungi
+4398,Cryptogramma genus_Cryptogramma,sometimes placed in family Polypodiaceae or Cryptogrammataceae
+4399,Cryptogrammataceae family_Cryptogrammataceae,one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems
+4400,Cryptomeria genus_Cryptomeria,Japanese cedar; sugi
+4401,Cryptophyceae class_Cryptophyceae,motile usually brownish-green protozoa-like algae
+4402,Cryptophyta phylum_Cryptophyta,a phylum in the kingdom Protoctista
+4403,Cryptoprocta genus_Cryptoprocta,large primitive cat-like carnivores inhabiting forests of Madagascar
+4404,Cryptotermes genus_Cryptotermes,genus of dry wood termites; cosmopolitan in distribution; sometimes considered a subgenus of Kalotermes
+4405,Cryptotis genus_Cryptotis,least shrews
+4406,Ctenizidae family_Ctenizidae,large burrowing spiders
+4407,Ctenocephalides genus_Ctenocephalides,an arthropod genus of fleas
+4408,Ctenocephalus genus_Ctenocephalus,a former usage synonymous with Ctenocephalides
+4409,Ctenophora phylum_Ctenophora,comb jellies; sea acorns; a small phylum formerly considered a class of Coelenterata
+4410,Cub_Scout,a junior Boy Scout
+4411,Cuba,the largest island in the West Indies
+4412,Cuba Republic_of_Cuba,a communist state in the Caribbean on the island of Cuba
+4413,Cuban,a native or inhabitant of Cuba
+4414,Cuban_Revolution,the revolution led by Fidel Castro and a small band of guerrilla fighters against a corrupt dictatorship in Cuba; 1956-1959
+4415,Cuban_bast blue_mahoe mahoe majagua mahagua Hibiscus_elatus,erect forest tree of Cuba and Jamaica having variably hairy leaves and orange-yellow or orange-red flowers; yields a moderately dense timber for cabinetwork and gunstocks
+4416,Cuban_heel,a broad heel of medium height on women's shoes
+4417,Cuban_monetary_unit,monetary unit in Cuba
+4418,Cuban_peso peso,the basic unit of money in Cuba; equal to 100 centavos
+4419,Cuculidae family_Cuculidae,includes cuckoo; ani; roadrunner
+4420,Cuculiformes order_Cuculiformes,cuckoos; touracos; etc.
+4421,Cuculus genus_Cuculus,type genus of the Cuculidae
+4422,Cucumis genus_Cucumis,cucumbers; muskmelons
+4423,Cucurbita genus_Cucurbita,type genus of the Cucurbitaceae
+4424,Cucurbitaceae family_Cucurbitaceae gourd_family,a family of herbaceous vines (such as cucumber or melon or squash or pumpkin)
+4425,Culbertson Ely_Culbertson,United States authority on contract bridge whose books helped to popularize the game (1891-1955)
+4426,Culcita genus_Culcita,includes some plants usually placed in e.g. genus Dicksonia: terrestrial ferns resembling bracken; tropical America; Malaysia to Australia and Polynesia; southwestern Europe and Atlantic islands
+4427,Culebra,a small island off the coast of Puerto Rico with miles of beautiful beaches
+4428,Culex genus_Culex,type genus of the Culicidae: widespread genus of mosquitoes distinguished by holding the body parallel to the resting surface
+4429,Culex_quinquefasciatus Culex_fatigans,widespread tropical mosquito that transmits filarial worms
+4430,Culiacan,a city in northwestern Mexico
+4431,Culicidae family_Culicidae,mosquitoes
+4432,Cultural_Revolution Great_Proletarian_Cultural_Revolution,a radical reform in China initiated by Mao Zedong in 1965 and carried out largely by the Red Guard; intended to eliminate counterrevolutionary elements in the government it resulted in purges of the intellectuals and socioeconomic chaos
+4433,Culver's_root Culvers_root Culver's_physic Culvers_physic whorlywort Veronicastrum_virginicum,a tall perennial herb having spikes of small white or purple flowers; common in eastern North America
+4434,Cumana,a port city in northeastern Venezuela on the Caribbean Sea; founded in 1523, it is the oldest European settlement in South America
+4435,Cumberland Cumberland_River,a river that rises in southeastern Kentucky and flows westward through northern Tennessee to become a tributary of the Ohio River in southwestern Kentucky
+4436,Cumberland William_Augustus Duke_of_Cumberland Butcher_Cumberland,English general; son of George II; fought unsuccessfully in the battle of Fontenoy (1721-1765)
+4437,Cumberland_Gap,a pass through the Cumberland Mountains between Virginia and Kentucky that early settlers used in order to move west
+4438,Cumberland_Mountains Cumberland_Plateau,the southwestern part of the Appalachians
+4439,Cumbria,a former Celtic kingdom in northwestern England; the name continued to be used for the hilly northwestern region of England including the Lake District and the northern Pennines
+4440,Cumbria,a county of northwestern England
+4441,Cuminum genus_Cuminum,cumin
+4442,Cunaxa battle_of_Cunaxa,battle in 401 BC when the Artaxerxes II defeated his younger brother who tried to usurp the throne
+4443,Cuniculus genus_Cuniculus,pacas
+4444,Cunningham Merce_Cunningham,United States dancer and choreographer (born in 1922)
+4445,Cunoniaceae family_Cunoniaceae cunonia_family,trees or shrubs or climbers; mostly southern hemisphere
+4446,Cuon Cyon genus_Cuon genus_Cyon,Asiatic wild dog
+4447,Cupid Amor,(Roman mythology) god of love; counterpart of Greek Eros
+4448,Cupid's_bow,the double curve of the upper lip when considered to resemble Cupid's bow
+4449,Cupid's_bow,a curved bow with reversed curve ends
+4450,Cupressaceae family_Cupressaceae cypress_family,cypresses and junipers and many cedars
+4451,Cupressus genus_Cupressus,type genus of Cupressaceae
+4452,Cuquenan Cuquenan_Falls Kukenaam Kukenaam_Falls,a famous waterfall in Venezuela
+4453,Curacao,a popular island resort in the Netherlands Antilles
+4454,Curculionidae family_Curculionidae,true weevils: snout beetles
+4455,Curcuma genus_Curcuma,tropical Asiatic perennial herbs
+4456,Curia,(Roman Catholic Church) the central administration governing the Roman Catholic Church
+4457,Curie Marie_Curie Madame_Curie Marya_Sklodowska,French chemist (born in Poland) who won two Nobel prizes; one (with her husband and Henri Becquerel) for research on radioactivity and another for her discovery of radium and polonium (1867-1934)
+4458,Curie Pierre_Curie,French physicist; husband of Marie Curie (1859-1906)
+4459,Curie_temperature Curie_point,the temperature above which a ferromagnetic substance loses its ferromagnetism and becomes paramagnetic
+4460,Curitiba,a city in southeastern Brazil
+4461,Curl Robert_Curl Robert_F._Curl Robert_Floyd_Curl_Jr.,American chemist who with Richard Smalley and Harold Kroto discovered fullerenes and opened a new branch of chemistry (born in 1933)
+4462,Currier Nathaniel_Currier,United States lithographer who (with his partner James Ives) produced thousands of prints signed `Currier & Ives' (1813-1888)
+4463,Cursorius genus_Cursorius,coursers
+4464,Curtis William_Curtis,English botanical writer and publisher (1746-1799)
+4465,Curtisia genus_Curtisia,a large evergreen tree of South Africa
+4466,Curtiss Glenn_Curtiss Glenn_Hammond_Curtiss,United States industrialist and aviation pioneer (1878-1930)
+4467,Cuscuta genus_Cuscuta,genus of twining leafless parasitic herbs lacking chlorophyll: dodder
+4468,Cushing Harvey_Cushing Harvery_Williams_Cushing,United States neurologist noted for his study of the brain and pituitary gland and who identified Cushing's syndrome (1869-1939)
+4469,Cushing's_disease hyperadrenalism,a glandular disorder caused by excessive ACTH resulting in greater than normal functioning of the adrenal gland; characterized by obesity
+4470,Cushing's_syndrome hyperadrenocorticism,a glandular disorder caused by excessive cortisol
+4471,Cushitic,a group of languages spoken in Ethiopia and Somalia and northwestern Kenya and adjacent regions
+4472,Custer George_Armstrong_Custer General_Custer,United States general who was killed along with all his command by the Sioux at the Battle of Little Bighorn (1839-1876)
+4473,Cuterebra genus_Cuterebra,type genus of the Cuterebridae
+4474,Cuterebridae family_Cuterebridae,New World botflies
+4475,Cuvier Georges_Cuvier Baron_Georges_Cuvier Georges_Leopold_Chretien_Frederic_Dagobert_Cuvier,French naturalist known as the father of comparative anatomy (1769-1832)
+4476,Cuzco Cusco,a town in the Andes in southern Peru; formerly the capital of the Inca empire
+4477,Cyamopsis genus_Cyamopsis,small genus of annual usually hairy herbs of tropical Africa and Arabia
+4478,Cyamus genus_Cyamus,whale lice
+4479,Cyanocitta genus_Cyanocitta,New World jays
+4480,Cyanophyta division_Cyanophyta,prokaryotic organisms sometimes considered a class or phylum or subkingdom; coextensive with the Cyanophyceae: cyanobacteria (blue-green algae)
+4481,Cyathea genus_Cyathea,type genus of the Cyatheaceae: tree ferns of the tropical rain forest to temperate woodlands
+4482,Cyatheaceae family_Cyatheaceae,tropical tree ferns
+4483,Cybele Dindymene Great_Mother Magna_Mater Mater_Turrita,great nature goddess of ancient Phrygia in Asia Minor; counterpart of Greek Rhea and Roman Ops
+4484,Cycadaceae family_Cycadaceae cycad_family,ancient palmlike plants closely related to ferns in that fertilization is by means of spermatozoids
+4485,Cycadales order_Cycadales,primitive tropical gymnosperms abundant in the Mesozoic, now reduced to a few scattered tropical forms
+4486,Cycadofilicales order_Cycadofilicales Lyginopteridales order_Lyginopteridales,fossil gymnospermous trees or climbing plants from the Devonian: seed ferns
+4487,Cycadopsida class_Cycadopsida Cycadophytina subdivision_Cycadophytina Cycadophyta subdivision_Cycadophyta,palmlike gymnosperms: includes the surviving order Cycadales and several extinct orders; possibly not a natural group; in some systems considered a class (Cycadopsida) and in others a subdivision (Cycadophytina or Cycadophyta)
+4488,Cycas genus_Cycas,type genus of Cycadaceae: genus of widely distributed Old World evergreen tropical trees having pinnate leaves and columnar stems covered with persistent bases of old leaves
+4489,Cyclades Kikladhes,a group of over 200 islands in the southern Aegean
+4490,Cycladic_civilization Cycladic_civilisation Cycladic_culture Cyclades,the Bronze Age civilization on the Cyclades islands in the southern Aegean Sea that flourished 3000-1100 BC
+4491,Cycliophora phylum_Cycliophora,tiny marine organisms each the size of a period found in great numbers on lobsters' lips; identified tentatively in 1995 as a new phylum or as possible link between Entoprocta and Ectoprocta
+4492,Cycloloma genus_Cycloloma,a caryophyllaceous genus of the family Chenopodiaceae
+4493,Cyclopes genus_Cyclopes,only the silky anteater
+4494,Cyclophorus genus_Cyclophorus,tropical Old World ferns having closely crowded circular sori and no indusia
+4495,Cyclops,(Greek mythology) one of a group of giants having a single eye in the middle of their forehead
+4496,Cyclopteridae family_Cyclopteridae,lumpfishes
+4497,Cyclopterus genus_Cyclopterus,type genus of the Cyclopteridae: lumpfishes
+4498,Cyclosorus genus_Cyclosorus,small genus of terrestrial ferns of tropical and subtropical southern hemisphere
+4499,Cyclosporeae class_Cyclosporeae,in more recent classifications superseded by the order Fucales
+4500,Cyclostomata order_Cyclostomata,primitive jawless aquatic vertebrate: lampreys; hagfishes
+4501,Cycnoches genus_Cycnoches,genus of epiphytic or terrestrial tropical American orchids
+4502,Cydippida order_Cydippida Cydippidea order_Cydippidea Cydippea order_Cydippea,ctenophores having two long pinnate tentacles
+4503,Cydonia genus_Cydonia,quince
+4504,Cygnus,a constellation in the northern hemisphere between Pegasus and Draco in the Milky Way; contains a black hole
+4505,Cygnus genus_Cygnus,a genus of Anatidae
+4506,Cymatiidae family_Cymatiidae,tritons
+4507,Cynara genus_Cynara,artichoke; cardoon
+4508,Cynewulf Cynwulf,Anglo-Saxon poet (circa 9th century)
+4509,Cynic,a member of a group of ancient Greek philosophers who advocated the doctrine that virtue is the only good and that the essence of virtue is self-control
+4510,Cynipidae family_Cynipidae,a family of Hymenoptera
+4511,Cynips genus_Cynips,type genus of the Cynipidae: gall wasps
+4512,Cynocephalidae family_Cynocephalidae,a family of Dermoptera
+4513,Cynocephalus genus_Cynocephalus,type genus of the family Cynocephalidae
+4514,Cynocephalus_variegatus,a variety of flying lemur
+4515,Cynodon genus_Cynodon,creeping perennial grasses of tropical and southern Africa
+4516,Cynodontia division_Cynodontia,a division of the order Therapsida from the Triassic period comprising small carnivorous tetrapod reptiles often with mammal-like teeth
+4517,Cynoglossidae family_Cynoglossidae,tonguefishes
+4518,Cynoglossum genus_Cynoglossum,a large genus of tall rough herbs belonging to the family Boraginaceae
+4519,Cynomys genus_Cynomys,prairie dogs
+4520,Cynopterus genus_Cynopterus,a genus of Megachiroptera
+4521,Cynopterus_sphinx,a variety of fruit eating bat
+4522,Cynoscephalae,the fields in Thessaly where in 197 BC the Romans defeated the Macedonians
+4523,Cynoscephalae battle_of_Cynoscephalae,the battle that ended the second Macedonian War (197 BC); the Romans defeated Philip V who lost his control of Greece
+4524,Cynoscion genus_Cynoscion,sea trout
+4525,Cyperaceae family_Cyperaceae sedge_family,bulrush; chufa; cotton grass; papyrus; umbrella plant
+4526,Cyperus genus_Cyperus,type genus of Cyperaceae; grasslike rhizomatous herbs; cosmopolitan except very cold regions
+4527,Cyphomandra genus_Cyphomandra,tree tomato
+4528,Cypraea genus_Cypraea,type genus of the family Cypraeidae: the typical cowries
+4529,Cypraeidae family_Cypraeidae,family of marine gastropods comprising the cowries
+4530,Cyprinidae family_Cyprinidae,a family of fish including: carp; tench; roach; rudd; dace
+4531,Cypriniformes order_Cypriniformes,an order of animals including almost entirely freshwater fishes: characins; loaches; carp; suckers; sometimes classified as a suborder of Ostariophysi
+4532,Cyprinodontidae family_Cyprinodontidae,large family of small soft-finned fishes; killifishes; flagfishes; swordtails; guppies
+4533,Cyprinus genus_Cyprinus,type genus of the family Cyprinidae: carp
+4534,Cypriot Cypriote Cyprian,a native or inhabitant of Cyprus
+4535,Cypriot_monetary_unit,monetary unit in Cyprus
+4536,Cypriot_pound pound,the basic unit of money in Cyprus; equal to 100 cents
+4537,Cypripedium genus_Cypripedium,genus of chiefly American perennial leafy-stemmed orchids: lady's slippers; sometimes includes species of genus Paphiopedilum
+4538,Cyprus,an island in the eastern Mediterranean
+4539,Cyprus Republic_of_Cyprus,a country on the island of Cyprus; 80% of the people are of Greek origin and 20% or Turkish origin
+4540,Cyrano_de_Bergerac Savinien_Cyrano_de_Bergerac,a French soldier and dramatist remembered chiefly for fighting many duels (often over the size of his nose); was immortalized in 1897 in a play by Edmond Rostand (1619-1655)
+4541,Cyril Saint_Cyril St._Cyril,Greek missionary; the invention of the Cyrillic alphabet is attributed to him (826-869)
+4542,Cyrilliaceae family_Cyrilliaceae cyrilla_family titi_family,shrubs and trees with leathery leaves and small white flowers in racemes: genera Cyrilla and Cliftonia
+4543,Cyrillic_alphabet Cyrillic,an alphabet derived from the Greek alphabet and used for writing Slavic languages (Russian, Bulgarian, Serbian, Ukrainian, and some other Slavic languages)
+4544,Cyrtomium genus_Cyrtomium,small genus of tropical Asiatic greenhouse ferns; in some classifications placed in Polypodiaceae
+4545,Cyrus Cyrus_the_Younger,Persian prince who was defeated in battle by his brother Artaxerxes II (424-401 BC)
+4546,Cyrus_II Cyrus_the_Elder Cyrus_the_Great,king of Persia and founder of the Persian Empire (circa 600-529 BC)
+4547,Cystophora genus_Cystophora,hooded seals
+4548,Cystopteris genus_Cystopteris,chiefly small perennial rock ferns: bladder ferns; in some classifications placed in Polypodiaceae
+4549,Cytisus genus_Cytisus,large genus of stiff or spiny evergreen or deciduous Old World shrubs: broom
+4550,Czech,a native of inhabitant of the Czech Republic
+4551,Czech,the Slavic language of Czechs
+4552,Czech_Republic,a landlocked republic in central Europe; separated from Slovakia in 1993
+4553,Czech_monetary_unit,monetary unit in Czech Republic
+4554,Czechoslovakia,a former republic in central Europe; divided into Czech Republic and Slovakia in 1993
+4555,Czechoslovakian Czechoslovak Czech,a native or inhabitant of the former republic of Czechoslovakia
+4556,Czerny Karl_Czerny,Austrian virtuoso pianist and composer of many works for the piano; studied with Beethoven and was a teacher of Liszt (1791-1857)
+4557,Czestochowa,a city of southern Poland whose church contains the statue of the black Madonna which attracts many pilgrims
+4558,D d,the 4th letter of the Roman alphabet
+4559,D'Oyly_Carte Richard_D'Oyly_Carte,English impresario who brought Gilbert and Sullivan together and produced many of their operettas in London (1844-1901)
+4560,D-day 6_June_1944,date of the Allied landing in France, World War II
+4561,D-layer D_region,the lowest region of the ionosphere (35 to 50 miles up) that reflects low-frequency radio waves
+4562,DINK,a couple who both have careers and no children (an acronym for dual income no kids)
+4563,DIP_switch dual_inline_package_switch,(computer science) one of a set of small on-off switches mounted in computer hardware; used in place of jumpers to configure the machine for a user
+4564,DNA_fingerprint genetic_fingerprint,biometric identification obtained by examining a person's unique sequence of DNA base pairs; often used for evidence in criminal law cases
+4565,DNA_polymerase,the enzyme responsible for DNA replication
+4566,DOS disk_operating_system,an operating system that is on a disk
+4567,DPT_vaccine,abbreviation for combination vaccine against diphtheria and pertussis (whooping cough) and tetanus toxoids; usually given in a series of injections in early childhood
+4568,DPhil,a British doctorate
+4569,Daba Kola Musgoi,a Chadic language spoken south of Lake Chad
+4570,Daboecia genus_Daboecia,a dicotyledonous genus of the family Ericaceae
+4571,Dacelo genus_Dacelo,Australasian kingfishers
+4572,Dachau,a concentration camp for Jews created by the Nazis near Munich in southern Germany
+4573,Dacron Terylene,a kind of polyester fabric
+4574,Dacrycarpus genus_Dacrycarpus,evergreen coniferous shrubs or trees of New Zealand to Malaysia and Philippines
+4575,Dacrydium genus_Dacrydium,Australasian evergreen trees or shrubs
+4576,Dacrymyces genus_Dacrymyces,type genus of the Dacrymycetaceae: fungi with a bifurcate basidium that lacks septa
+4577,Dacrymycetaceae family_Dacrymycetaceae,a family of basidiomycetous fungi belonging to the order Tremellales having a bifurcate basidium that lacks septa
+4578,Dactylis genus_Dactylis,a monocotyledonous grass of the family Gramineae (has only one species)
+4579,Dactyloctenium genus_Dactyloctenium,a monocotyledonous genus of the family Gramineae
+4580,Dactylopiidae family_Dactylopiidae,cochineal insects
+4581,Dactylopius genus_Dactylopius,type genus of the Dactylopiidae
+4582,Dactylopteridae family_Dactylopteridae,flying gurnards
+4583,Dactylopterus genus_Dactylopterus,a genus of Dactylopteridae
+4584,Dactylorhiza genus_Dactylorhiza,genus of terrestrial orchids of Europe and Asia and North Africa
+4585,Dactyloscopidae family_Dactyloscopidae,sand stargazers
+4586,Daedalus Daedal,(Greek mythology) an Athenian inventor who built the labyrinth of Minos; to escape the labyrinth he fashioned wings for himself and his son Icarus
+4587,Dagan,god of agriculture and earth; counterpart of Phoenician Dagon
+4588,Dagda,chief Celtic god of the Tuatha De Danann; father of Angus Og and Brigit
+4589,Dagestani,an ethnic minority living on the Caspian Sea in southwestern Russia and Azerbaijan
+4590,Dagon,god of agriculture and the earth; national god of Philistines
+4591,Daguerre Louis_Jacques_Mande_Daguerre,French inventor of the first practical photographic process, the daguerreotype (1789-1851)
+4592,Dail_Eireann Dail,the lower house of the parliament of the Irish Republic
+4593,Daimler Gottlieb_Daimler,German engineer and automobile manufacturer who produced the first high-speed internal combustion engine (1834-1900)
+4594,Dakar capital_of_Senegal,the capital and chief port and largest city of Senegal
+4595,Dakota,a member of the Siouan people of the northern Mississippi valley; commonly called the Sioux
+4596,Dakota,the area of the states of North Dakota and South Dakota
+4597,Dakota,the Siouan language spoken by the Dakota
+4598,Dalai_Lama Grand_Lama,chief lama and once ruler of Tibet
+4599,Dalbergia genus_Dalbergia,large genus of tropical trees having pinnate leaves and paniculate flowers and cultivated commercially for their dramatically grained and colored timbers
+4600,Dalea genus_Dalea,indigo bush
+4601,Dali Salvador_Dali,surrealist Spanish painter (1904-1989)
+4602,Dalian Talien Dairen,a port and shipbuilding center in northeastern China on the Liaodong Peninsula; now a part of Luda
+4603,Dall_sheep Dall's_sheep white_sheep Ovis_montana_dalli,large white wild sheep of northwestern Canada and Alaska
+4604,Dallas,a large commercial and industrial city in northeastern Texas located in the heart of the northern Texas oil fields
+4605,Dalmatia,a historical region of Croatia on the Adriatic Sea; mountainous with many islands
+4606,Dalmatian,a native or inhabitant of Dalmatia
+4607,Dalmatian_iris Iris_pallida,European iris having soft lilac-blue flowers
+4608,Dalmatian_laburnum Petteria_ramentacea Cytisus_ramentaceus,erect shrub having large trifoliate leaves and dense clusters of yellow flowers followed by poisonous seeds; Yugoslavia; sometimes placed in genus Cytisus
+4609,Dalton John_Dalton,English chemist and physicist who formulated atomic theory and the law of partial pressures; gave the first description of red-green color blindness (1766-1844)
+4610,Dalton's_law Dalton's_law_of_partial_pressures law_of_partial_pressures,(chemistry and physics) law stating that the pressure exerted by a mixture of gases equals the sum of the partial pressures of the gases in the mixture; the pressure of a gas in a mixture equals the pressure it would exert if it occupied the same volume alone at the same temperature
+4611,Dama genus_Dama,fallow deer
+4612,Damaliscus genus_Damaliscus,African antelopes: sassabies
+4613,Damaraland_mole_rat,colonial mole rat of western Africa; similar to naked mole rat
+4614,Damascene,a native or inhabitant of Damascus
+4615,Damascus_steel Damask_steel,a hard resilient steel often decorated and used for sword blades
+4616,Damkina Damgalnunna,(Babylonian) earth goddess; consort of Ea and mother of Marduk
+4617,Damocles,the Greek courtier to Dionysius the Elder who (according to legend) was condemned to sit under a naked sword that was suspended by a hair in order to demonstrate to him that being a king was not the happy state Damocles had said it was (4th century BC)
+4618,Damon,the friend of Phintias who pledged his life that Phintias would return (4th century BC)
+4619,Damon_and_Pythias,(Greek mythology) according to a Greek legend: when Pythias was sentenced to be executed Damon took his place to allow Pythias to get his affairs in order; when Pythias returned in time to save Damon the king was so impressed that he let them both live
+4620,Danaea genus_Danaea,fairly small terrestrial ferns of tropical America
+4621,Danaidae family_Danaidae,small family of usually tropical butterflies: monarch butterflies
+4622,Danaus genus_Danaus,type genus of the Danaidae: monarch butterflies
+4623,Dandie_Dinmont Dandie_Dinmont_terrier,a breed of small terrier with long wiry coat and drooping ears
+4624,Dane,a native or inhabitant of Denmark
+4625,Dangla Dangaleat,a Chadic language spoken in Chad; uses seven vowels plus differences in vowel length
+4626,Daniel,(Old Testament) a youth who was taken into the court of Nebuchadnezzar and given divine protection when thrown into a den of lions (6th century BC)
+4627,Daniel,a wise and upright judge; "a Daniel come to judgment" -- Shakespeare
+4628,Daniel Book_of_Daniel Book_of_the_Prophet_Daniel,an Old Testament book that tells of the apocalyptic visions and the experiences of Daniel in the court of Nebuchadnezzar
+4629,Danish,a Scandinavian language that is the official language of Denmark
+4630,Danish_blue,blue cheese of Denmark
+4631,Danish_krone krone,the basic unit of money in Denmark
+4632,Danish_monetary_unit,monetary unit in Denmark
+4633,Dante Dante_Alighieri,an Italian poet famous for writing the Divine Comedy that describes a journey through Hell and purgatory and paradise guided by Virgil and his idealized Beatrice (1265-1321)
+4634,Danton Georges_Jacques_Danton,French revolutionary leader who stormed the Paris bastille and who supported the execution of Louis XVI but was guillotined by Robespierre for his opposition to the Reign of Terror (1759-1794)
+4635,Danu Dana,Celtic goddess who was the mother of the Tuatha De Danann; identified with the Welsh Don
+4636,Danube Danube_River Danau,the 2nd longest European river (after the Volga); flows from southwestern Germany to the Black Sea; "Vienna, Budapest, and Belgrade are on the banks of the Danube"
+4637,Daphne,(Greek mythology) a nymph who was transformed into a laurel tree to escape the amorous Apollo
+4638,Dar_al-Islam House_of_Islam,areas where Muslims are in the majority
+4639,Dar_al-harb House_of_War,areas where Muslims are in the minority and are persecuted
+4640,Dar_es_Salaam capital_of_Tanzania,the capital and largest port city of Tanzania on the Indian Ocean
+4641,Dard Dardic Dardic_language,any of a group of Indic languages spoken in Kashmir and eastern Afghanistan and northern Pakistan
+4642,Dardanelles Canakkale_Bogazi Hellespont,the strait between the Aegean and the Sea of Marmara that separates European Turkey from Asian Turkey
+4643,Dardanelles Dardanelles_campaign,the unsuccessful campaign in World War I (1915) by the English and French to open a passage for aid to Russia; defeated by the Turks
+4644,Dardanus,(Greek mythology) founder of Troy
+4645,Darfur,an impoverished region of western Sudan; "Darfur was a semi-independent sultanate until 1917 and is ethnically distinct from central Sudan"
+4646,Dari Dari_Persian,an Iranian language spoken in Afghanistan
+4647,Darius_I Darius_the_Great,king of Persia who expanded the Persian Empire and invaded Greece but was defeated at the battle of Marathon (550-486 BC)
+4648,Darius_III,king of Persia who was defeated by Alexander the Great; his murder effectively ended the Persian Empire (died in 330 BC)
+4649,Darjeeling,a fine variety of black tea grown in northern India
+4650,Darling Darling_River,an Australian river; tributary of the Murray River
+4651,Darlingtonia genus_Darlingtonia,one species: California pitcher plant
+4652,Darmera genus_Darmera Peltiphyllum genus_Peltiphyllum,one species
+4653,Darrow Clarence_Darrow Clarence_Seward_Darrow,United States lawyer famous for his defense of lost causes (1857-1938)
+4654,Darsana,(from the Sanskrit word for `to see') one of six orthodox philosophical systems or viewpoints on the nature of reality and the release from bondage to karma
+4655,Dartmouth_College Dartmouth,a college in New Hampshire
+4656,Darwin,provincial capital of the Northern Territory of Australia
+4657,Darwin Charles_Darwin Charles_Robert_Darwin,English natural scientist who formulated a theory of evolution by natural selection (1809-1882)
+4658,Darwin_tulip,any of several very tall, late blooming tulips bearing large squarish flowers on sturdy stems
+4659,Darwinian,an advocate of Darwinism
+4660,Darwinism,a theory of organic evolution claiming that new species arise and are perpetuated by natural selection
+4661,Das_Kapital Capital,a book written by Karl Marx (1867) describing his economic theories
+4662,Dasht-e-Kavir Kavir_Desert Great_Salt_Desert,a salt desert in north central Iran
+4663,Dasht-e-Lut Lut_Desert,a desert in eastern Iran
+4664,Dasyatidae family_Dasyatidae,sting rays
+4665,Dasyatis genus_Dasyatis,type genus of the Dasyatidae
+4666,Dasypodidae family_Dasypodidae,armadillos
+4667,Dasyprocta genus_Dasyprocta,type genus of the Dasyproctidae: agoutis
+4668,Dasyproctidae family_Dasyproctidae,agoutis and pacas
+4669,Dasypus genus_Dasypus,type genus of the Dasypodidae
+4670,Dasyuridae family_Dasyuridae family_Dasyurinae,dasyures; native cats; pouched mice; banded anteaters; Tasmanian devils
+4671,Dasyurus genus_Dasyurus,type genus of the family Dasyuridae: native cats
+4672,Datura genus_Datura,thorn apple
+4673,Daubentonia genus_Daubentonia,type genus; coextensive with the family Daubentoniidae
+4674,Daubentoniidae family_Daubentoniidae,comprising solely the aye-aye
+4675,Daucus genus_Daucus,carrot
+4676,Daugavpils,a city of southeastern Latvia
+4677,Daumier Honore_Daumier,French painter best known for his satirical lithographs of bourgeois society (1808-1879)
+4678,Davalliaceae family_Davalliaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems
+4679,Davenport,a city in eastern Iowa on the Mississippi River across from Moline and Rock Island
+4680,David,(Old Testament) the 2nd king of the Israelites; as a young shepherd he fought Goliath (a giant Philistine warrior) and killed him by hitting him in the head with a stone flung from a sling; he united Israel with Jerusalem as its capital; many of the Psalms are attributed to David (circa 1000-962 BC)
+4681,David Jacques_Louis_David,French neoclassical painter who actively supported the French Revolution (1748-1825)
+4682,David Saint_David St._David,patron saint of Wales (circa 520-600)
+4683,Davidson's_penstemon Penstemon_davidsonii,mat-forming plant with blue and lavender flowers clustered on short erect stems; British Columbia to northern California
+4684,Daviesia genus_Daviesia,genus of Australasian shrubs and subshrubs having small yellow or purple flowers followed by short triangular pods
+4685,Davis Bette_Davis,United States film actress (1908-1989)
+4686,Davis Dwight_Davis Dwight_Filley_Davis,United States tennis player who donated the Davis Cup for international team tennis competition (1879-1945)
+4687,Davis Jefferson_Davis,American statesman; president of the Confederate States of America during the American Civil War (1808-1889)
+4688,Davis Miles_Davis Miles_Dewey_Davis_Jr.,United States jazz musician; noted for his trumpet style (1926-1991)
+4689,Davis Stuart_Davis,United States painter who developed an American version of cubism (1894-1964)
+4690,Davis_Cup,cup awarded for the annual international team tennis competition
+4691,Davy Humphrey_Davy Sir_Humphrey_Davy,English chemist who was a pioneer in electrochemistry and who used it to isolate elements sodium and potassium and barium and boron and calcium and magnesium and chlorine (1778-1829)
+4692,Davys John_Davys Davis John_Davis,English navigator who explored the Arctic while searching for the Northwest Passage (1550-1605)
+4693,Dawes William_Dawes,American patriot who rode with Paul Revere to warn that the British were advancing on Lexington and Concord (1745-1799)
+4694,Dawson,a town in northwestern Canada in the Yukon on the Yukon River; a boom town around 1900 when gold was discovered in the Klondike
+4695,Day Clarence_Day Clarence_Shepard_Day_Jr.,United States writer best known for his autobiographical works (1874-1935)
+4696,Dayan Moshe_Dayan,Israeli general and statesman (1915-1981)
+4697,Dayton,a city in southwest Ohio; manufacturing center
+4698,Daytona_Beach,a resort town in northeast Florida on the Atlantic coast; hard white beaches have been used for automobile speed trials
+4699,DeMille Cecil_B._DeMille Cecil_Blount_DeMille,United States film maker remembered for his extravagant and spectacular epic productions (1881-1959)
+4700,De_Bakey Michael_Ellis_De_Bakey,United States heart surgeon who in 1966 implanted the first artificial heart in a human patient (born in 1908)
+4701,De_Forest Lee_De_Forest Father_of_Radio,United States electrical engineer who in 1907 patented the first triode vacuum tube, which made it possible to detect and amplify radio waves (1873-1961)
+4702,De_Niro Robert_De_Niro,United States film actor who frequently plays tough characters (born 1943)
+4703,De_Quincey Thomas_De_Quincey,English writer who described the psychological effects of addiction to opium (1785-1859)
+4704,De_Sica Vittorio_De_Sica,Italian film maker (1901-1974)
+4705,Dead_Sea,a saltwater lake on the border between Israel and Jordan; its surface in 1292 feet below sea level
+4706,Dead_Sea_scrolls,(Old Testament) a collection of written scrolls (containing nearly all of the Old Testament) found in a cave near the Dead Sea in the late 1940s; "the Dead Sea Scrolls provide information about Judaism and the Bible around the time of Jesus"
+4707,Dean James_Dean James_Byron_Dean,United States film actor whose moody rebellious roles made him a cult figure (1931-1955)
+4708,Death,the personification of death; "Death walked the streets of the plague-bound city"
+4709,Death_Valley,a desert area that is part of the Mojave Desert in eastern California and southwestern Nevada; contains the lowest point in North America
+4710,Debs Eugene_V._Debs Eugene_Victor_Debs,United States labor organizer who ran for President as a socialist (1855-1926)
+4711,Debussy Claude_Debussy Claude_Achille_Debussy,French composer who is said to have created Impressionism in music (1862-1918)
+4712,Decalogue Ten_Commandments,the biblical commandments of Moses
+4713,Decapoda order_Decapoda,lobsters; crayfish; crabs; shrimps; prawns
+4714,Decapoda order_Decapoda,squids and cuttlefishes
+4715,Decapterus genus_Decapterus,scads especially mackerel scad; cosmopolitan in distribution
+4716,Decatur,a city in central Illinois; Abraham Lincoln practiced law here
+4717,Decatur,a town in northern Alabama on the Tennessee River
+4718,Decatur Stephen_Decatur,United States naval officer remembered for his heroic deeds (1779-1820)
+4719,December Dec,the last (12th) month of the year
+4720,Decius,Emperor of Rome who was proclaimed emperor against his will; his reign was notable for his severe persecution of Christians (201-251)
+4721,Declaration_of_Independence,the document recording the proclamation of the second Continental Congress (4 July 1776) asserting the independence of the Colonies from Great Britain
+4722,Decumaria genus_Decumaria,small genus of woody climbers with adhesive aerial roots; sometimes placed in family Saxifragaceae
+4723,Deep_South,the southeastern region of the United States: South Carolina and Georgia and Alabama and Mississippi and Louisiana; prior to the American Civil War all these states produced cotton and permitted slavery
+4724,Deere John_Deere,United States industrialist who manufactured plows suitable for working the prairie soil (1804-1886)
+4725,Defender_of_the_Faith,a title that Leo X bestowed on Henry VIII and later withdrew; parliament restored the title and it has been used by English sovereigns ever since
+4726,Defense_Advanced_Research_Projects_Agency DARPA,the central research and development organization for the United States Department of Defense; responsible for developing new surveillance technologies since 9/11
+4727,Defense_Information_Systems_Agency DISA,a combat support agency in the Department of Defense responsible for developing and operating and supporting information systems to serve the needs of the President and the Secretary of Defense and the Joint Chiefs of Staff
+4728,Defense_Intelligence_Agency DIA,an intelligence agency of the United States in the Department of Defense; is responsible for providing intelligence in support of military planning and operations and weapons acquisition
+4729,Defense_Logistics_Agency,a logistics combat support agency in the Department of Defense; provides worldwide support for military missions
+4730,Defense_Reutilization_and_Marketing_Service DRMS,the organization in the Defense Logistics Agency that inventories and evaluates and sells reusable United States government surplus
+4731,Defense_Technical_Information_Center DTIC,the agency in the Department of Defense that provides scientific and technical information to federal agencies and their contractors
+4732,Defoe Daniel_Defoe,English writer remembered particularly for his novel about Robinson Crusoe (1660-1731)
+4733,Degas Edgar_Degas Hilaire_Germain_Edgar_Degas,French impressionist painter (1834-1917)
+4734,Deimos,the outer of two small satellites of Mars
+4735,Dekker Decker Thomas_Dekker Thomas_Decker,English dramatist and pamphleteer (1572-1632)
+4736,Del_Rio,a town in southwest Texas on the Rio Grande to the west of San Antonio
+4737,Delacroix Eugene_Delacroix Ferdinand_Victor_Eugene_Delacroix,French romantic painter (1798-1863)
+4738,Delairea genus_Delairea,one species: German ivy
+4739,Delaware,a member of an Algonquian people formerly living in New Jersey and New York and parts of Delaware and Pennsylvania
+4740,Delaware,one of the British colonies that formed the United States
+4741,Delaware,the Algonquian language spoken by the Delaware
+4742,Delaware Delaware_River,a river that rises in the Catskills in southeastern New York and flows southward along the border of Pennsylvania with New York and New Jersey to northern Delaware where it empties into Delaware Bay
+4743,Delaware Diamond_State First_State DE Del.,a Mid-Atlantic state; one of the original 13 colonies
+4744,Delaware_Bay,an inlet of the North Atlantic; fed by the Delaware River
+4745,Delaware_Memorial_Bridge,a suspension bridge across the Delaware River
+4746,Delawarean Delawarian,a native or resident of Delaware
+4747,Delbruck Max_Delbruck,United States biologist (born in Germany) who studied how viruses infect living cells (1906-1981)
+4748,Delhi New_Delhi,a city in north central India
+4749,Delibes Leo_Delibes Clement_Philibert_Leo_Delibes,French composer of operas (1836-1891)
+4750,Delichon genus_Delichon,a genus of Hirundinidae
+4751,Delicious,variety of sweet eating apples
+4752,Delilah,(Old Testament) the Philistine mistress of Samson who betrayed him by cutting off his hair and so deprived him of his strength
+4753,Delius Frederick_Delius,English composer of orchestral works (1862-1934)
+4754,Delmonico_steak club_steak,small steak from the front of the short loin of beef
+4755,Delonix genus_Delonix,evergreen or deciduous trees of tropical Africa and India
+4756,Delorme Philibert_Delorme de_l'Orme Philibert_de_l'Orme,French royal architect who built the Tuileries Palace and Gardens in Paris for Catherine de Medicis (1515-1570)
+4757,Delphi,an ancient Greek city on the slopes of Mount Parnassus; site of the oracle of Delphi
+4758,Delphinapterus genus_Delphinapterus,white whale
+4759,Delphinidae family_Delphinidae,dolphins
+4760,Delphinus,a constellation in the northern hemisphere near Pegasus and Aquila
+4761,Delphinus genus_Delphinus,type genus of the Delphinidae
+4762,Dematiaceae family_Dematiaceae,family of imperfect mushrooms having dark-colored hyphae or conidia
+4763,Demavend,an active volcano in northern Iran
+4764,Demerara,a river in northern Guyana that flows northward into the Atlantic
+4765,Demerara,a former Dutch colony in South America; now a part of Guyana
+4766,Demeter,(Greek mythology) goddess of fertility and protector of marriage in ancient mythology; counterpart of Roman Ceres
+4767,Demetrius Demetrius_I Demetrius_Poliorcetes,son of Antigonus Cyclops and king of Macedonia; he and his father were defeated at the battle of Ipsus (337-283 BC)
+4768,Democrat,a member of the Democratic Party
+4769,Democratic-Republican_Party,a former major political party in the United States in the early 19th century; opposed the old Federalist party; favored a strict interpretation of the constitution in order to limit the powers of the federal government
+4770,Democratic_Front_for_the_Liberation_of_Palestine DFLP Popular_Democratic_Front_for_the_Liberation_of_Palestine PDFLP,a Marxist-Leninist group that believes Palestinian goals can only be achieved by revolutionary change; "in 1974 the DFLP took over a schoolhouse and massacred Israeli schoolchildren"
+4771,Democratic_Party,the older of two major political parties in the United States
+4772,Democritus,Greek philosopher who developed an atomistic theory of matter (460-370 BC)
+4773,Demogorgon,(Greek mythology) a mysterious and terrifying deity of the underworld
+4774,Demosthenes,Athenian statesman and orator (circa 385-322 BC)
+4775,Demotic Demotic_script,a simplified cursive form of the ancient hieratic script; "Demotic script was eventually replaced by Greek"
+4776,Dempsey Jack_Dempsey William_Harrison_Dempsey Manassa_Mauler,United States prizefighter who was world heavyweight champion (1895-1983)
+4777,Demulen,trade name for an oral contraceptive
+4778,Denali_Fault,a major open geological fault in Alaska
+4779,Denali_National_Park,a large national park in Alaska having peaks of the Alaska Range (including Mount McKinley) and the huge Denali fault
+4780,Dendranthema genus_Dendranthema,comprises plants often included in the genus Chrysanthemum
+4781,Dendroaspis genus_Dendroaspis Dendraspis genus_Dendraspis,mambas
+4782,Dendrocalamus genus_Dendrocalamus,giant clump-forming bamboos
+4783,Dendrocolaptes genus_Dendrocolaptes,type genus of the Dendrocolaptidae
+4784,Dendrocolaptidae family_Dendrocolaptidae,woodhewers or woodcreepers
+4785,Dendroctonus genus_Dendroctonus,genus of small bark beetles destructive especially to mature conifers
+4786,Dendroica genus_Dendroica,a genus of Parulidae
+4787,Dendrolagus genus_Dendrolagus,tree wallabies
+4788,Dendromecon genus_Dendromecon,one species: bush poppy
+4789,Deneb,the brightest star in Cygnus
+4790,Denebola,a star in Leo approximately 43 light years from Earth
+4791,Deng_Xiaoping Teng_Hsiao-ping Teng_Hsiaoping,Chinese communist statesman (1904-1997)
+4792,Denisonia genus_Denisonia,copperheads
+4793,Denmark Kingdom_of_Denmark Danmark,a constitutional monarchy in northern Europe; consists of the mainland of Jutland and many islands between the North Sea and the Baltic Sea
+4794,Dennstaedtia genus_Dennstaedtia,chiefly terrestrial ferns; in some classification systems placed in family Polypodiaceae
+4795,Dennstaedtiaceae family_Dennstaedtiaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems
+4796,Dentaria genus_Dentaria,usually included in genus Cardamine; in some classifications considered a separate genus
+4797,Denver Mile-High_City capital_of_Colorado,the state capital and largest city of Colorado; located in central Colorado on the South Platte river
+4798,Depardieu Gerard_Depardieu,French film actor (born in 1948)
+4799,Deparia genus_Deparia,classification used for 5 species of terrestrial ferns usually placed in other genera
+4800,Department_of_Agriculture Agriculture_Department Agriculture USDA,the federal department that administers programs that provide services to farmers (including research and soil conservation and efforts to stabilize the farming economy); created in 1862
+4801,Department_of_Commerce Commerce_Department Commerce DoC,the United States federal department that promotes and administers domestic and foreign trade (including management of the census and the patent office); created in 1913
+4802,Department_of_Commerce_and_Labor,a former executive department of the United States government; created in 1903 and split into two departments in 1913
+4803,Department_of_Defense Defense_Department United_States_Department_of_Defense Defense DoD,the federal department responsible for safeguarding national security of the United States; created in 1947
+4804,Department_of_Defense_Laboratory_System LABLINK,a defense laboratory that provides essential services in fundamental science for national security and environmental protection and provides technologies that contribute to industrial competitiveness
+4805,Department_of_Education Education_Department Education,the United States federal department that administers all federal programs dealing with education (including federal aid to educational institutions and students); created 1979
+4806,Department_of_Energy Energy_Department Energy DOE,the federal department responsible for maintaining a national energy policy of the United States; created in 1977
+4807,Department_of_Energy_Intelligence DOEI,an agency that collects political and economic and technical information about energy matters and makes the Department of Energy's technical and analytical expertise available to other members of the Intelligence Community
+4808,Department_of_Health_Education_and_Welfare,a former executive department of the United States government; created in 1953 and divided in 1979
+4809,Department_of_Health_and_Human_Services Health_and_Human_Services HHS,the United States federal department that administers all federal programs dealing with health and welfare; created in 1979
+4810,Department_of_Homeland_Security Homeland_Security,the federal department that administers all matters relating to homeland security
+4811,Department_of_Housing_and_Urban_Development Housing_and_Urban_Development HUD,the United States federal department that administers federal programs dealing with better housing and urban renewal; created in 1965
+4812,Department_of_Justice Justice_Department Justice DoJ,the United States federal department responsible for enforcing federal laws (including the enforcement of all civil rights legislation); created in 1870
+4813,Department_of_Justice_Canada DoJC,an agency of the Canadian government that provides litigation and legal advice and opinions to the government
+4814,Department_of_Labor Labor_Department Labor DoL,the federal department responsible for promoting the working conditions of wage earners in the United States; created in 1913
+4815,Department_of_State United_States_Department_of_State State_Department State DoS,the federal department in the United States that sets and maintains foreign policies; "the Department of State was created in 1789"
+4816,Department_of_Transportation Transportation DoT,the United States federal department that institutes and coordinates national transportation programs; created in 1966
+4817,Department_of_Veterans_Affairs VA,the United States federal department responsible for the interests of military veterans; created in 1989
+4818,Department_of_the_Interior Interior_Department Interior DoI,the United States federal department charged with conservation and the development of natural resources; created in 1849
+4819,Department_of_the_Treasury Treasury_Department Treasury United_States_Treasury,the federal department that collects revenue and administers federal finances; the Treasury Department was created in 1789
+4820,Depression Great_Depression,a period during the 1930s when there was a worldwide economic depression and mass unemployment
+4821,Derain Andre_Derain,French painter and exponent of fauvism (1880-1954)
+4822,Dermacentor genus_Dermacentor,vectors of important diseases of man and animals
+4823,Dermaptera order_Dermaptera,earwigs and a few related forms
+4824,Dermatobia genus_Dermatobia,larvae live under the skin of domestic mammals and humans
+4825,Dermestidae family_Dermestidae,carpet beetles
+4826,Dermochelyidae family_Dermochelyidae,sea turtles
+4827,Dermochelys genus_Dermochelys,type genus of the Dermochelyidae: leatherback turtles
+4828,Dermoptera order_Dermoptera,flying lemurs
+4829,Derrida Jacques_Derrida,French philosopher and critic (born in Algeria); exponent of deconstructionism (1930-2004)
+4830,Des_Moines capital_of_Iowa,the capital and largest city in Iowa
+4831,Descartes Rene_Descartes,French philosopher and mathematician; developed dualistic theory of mind and matter; introduced the use of coordinates to locate a point in two or three dimensions (1596-1650)
+4832,Descurainia genus_Descurainia,includes annual or biennial herbs of America and Europe very similar to and often included among those of genera Sisymbrium or Hugueninia; not recognized in some classification systems
+4833,Desmanthus genus_Desmanthus,genus of American herbs or shrubs with sensitive pinnate leaves and small whitish flowers
+4834,Desmidiaceae family_Desmidiaceae,unicellular algae
+4835,Desmidium genus_Desmidium,a genus of protoctist
+4836,Desmodium genus_Desmodium,beggarweed; tick trefoil
+4837,Desmodontidae family_Desmodontidae,true vampire bats
+4838,Desmodus genus_Desmodus,type genus of the Desmodontidae: vampire bats
+4839,Desmodus_rotundus,mouse-sized bat of tropical Central America and South America having sharp incisor and canine teeth; feeds on the blood of birds and mammals
+4840,Desmograthus genus_Desmograthus,an amphibian genus of Plethodontidae
+4841,Detroit Motor_City Motown,the largest city in Michigan and a major Great Lakes port; center of the United States automobile industry; located in southeastern Michigan on the Detroit river across from Windsor
+4842,Detroit_River,a short river flowing from Lake St. Clair to Lake Erie along the border between the United States and Canada; one the busiest inland waterways in the world
+4843,Deuteromycetes class_Deuteromycetes,form class; coextensive with subdivision Deuteromycota
+4844,Deuteromycota subdivision_Deuteromycota Deuteromycotina Fungi_imperfecti subdivision_Deuteromycotina,large and heterogeneous form division of fungi comprising forms for which no sexually reproductive stage is known
+4845,Deuteronomy Book_of_Deuteronomy,the fifth book of the Old Testament; contains a second statement of Mosaic law
+4846,Devanagari Devanagari_script Nagari Nagari_script,a syllabic script used in writing Sanskrit and Hindi
+4847,Devi,Hindu mother goddess; supreme power in the universe; wife or embodiment of the female energy of Siva having both beneficent and malevolent forms or aspects
+4848,Devon,red dual-purpose cattle of English origin
+4849,Devon Devonshire,a county in southwestern England
+4850,Devonian Devonian_period Age_of_Fishes,from 405 million to 345 million years ago; preponderance of fishes and appearance of amphibians and ammonites
+4851,Dewar Sir_James_Dewar,Scottish chemist and physicist noted for his work in cryogenics and his invention of the Dewar flask (1842-1923)
+4852,Dewar_flask Dewar,vacuum flask that holds liquid air or helium for scientific experiments
+4853,Dewey George_Dewey Admiral_Dewey,a United States naval officer remembered for his victory at Manila Bay in the Spanish-American War
+4854,Dewey John_Dewey,United States pragmatic philosopher who advocated progressive education (1859-1952)
+4855,Dewey Melvil_Dewey Melville_Louis_Kossuth_Dewey,United States librarian who founded the decimal system of classification (1851-1931)
+4856,Dewey_decimal_classification Dewey_decimal_system decimal_system_of_classification,a system used by libraries to classify nonfictional publications into subject categories; the subject is indicated by a three-digit numeral and further specification is given by numerals following a decimal point; publications are shelved by number
+4857,Dhahran,an oil town in eastern Saudi Arabia on an inlet from the Persian Gulf; in June 1996 terrorists bombed an apartment complex in Dhahran killing 19 United States soldiers and wounding more than 300 people
+4858,Dhaka Dacca capital_of_Bangladesh,the capital and largest city of Bangladesh
+4859,Dharma,basic principles of the cosmos; also: an ancient sage in Hindu mythology worshipped as a god by some lower castes
+4860,Dhaulagiri,a mountain in the Himalayas in Nepal (26,820 feet high)
+4861,Dhegiha,any member of a Siouan people speaking one of the Dhegiha languages
+4862,Dhegiha,a branch of the Siouan languages
+4863,Dhu'l-Hijja Dhu'l-Hijjah Dhu_al-Hijja Dhu_al-Hijjah,the twelfth month of the Islamic calendar and the season of the hajj; has one extra day in leap years
+4864,Dhu'l-Qa'dah Dhu_al-Qadah,the eleventh month of the Islamic calendar
+4865,DiMaggio Joe_DiMaggio Joseph_Paul_DiMaggio,United States professional baseball player noted for his batting ability (1914-1999)
+4866,Diacalpa genus_Diacalpa,one species: delicate fern of foothills of Himalayas
+4867,Diadophis genus_Diadophis,a genus of reptiles of the family Colubridae including ringneck snakes
+4868,Diaghilev Sergei_Diaghilev Sergei_Pavlovich_Diaghilev,Russian ballet impresario who founded the Russian ballet and later introduced it to the West (1872-1929)
+4869,Dialeurodes genus_Dialeurodes,a genus of Aleyrodidae
+4870,Diana,(Roman mythology) virgin goddess of the hunt and the Moon; counterpart of Greek Artemis
+4871,Diana Princess_Diana Princess_of_Wales Lady_Diana_Frances_Spencer,English aristocrat who was the first wife of Prince Charles; her death in an automobile accident in Paris produced intense national mourning (1961-1997)
+4872,Diane_de_Poitiers Duchesse_de_Valentinois,French noblewoman who was the mistress of Henry II; she had more influence over him than did his wife Catherine de Medicis (1499-1566)
+4873,Dianthus genus_Dianthus,carnations and pinks
+4874,Diapensiaceae family_Diapensiaceae diapensia_family,north temperate low evergreen plants; in some classifications placed in its own order Diapensiales
+4875,Diapensiales order_Diapensiales,used in some classifications: coextensive with family Diapensiaceae
+4876,Diapsida subclass_Diapsida,used in former classifications to include all living reptiles except turtles; superseded by the two subclasses Lepidosauria and Archosauria
+4877,Dias Diaz Bartholomeu_Dias Bartholomeu_Diaz,Portuguese explorer who in 1488 was the first European to get round the Cape of Good Hope (thus establishing a sea route from the Atlantic to Asia) (1450-1500)
+4878,Diaspididae family_Diaspididae,armored scales
+4879,Diaspora,the dispersion of the Jews outside Israel; from the destruction of the temple in Jerusalem in 587-86 BC when they were exiled to Babylonia up to the present time
+4880,Dibranchiata subclass_Dibranchiata Dibranchia subclass_Dibranchia,comprising all living cephalopods except the family Nautilidae: the orders Octopoda (octopuses) and Decapoda (squids and cuttlefish)
+4881,Dicamptodontidae family_Dicamptodontidae,large and small highly aquatic salamanders
+4882,Dicentra genus_Dicentra,North American and Asian herbs with divided leaves and irregular flowers
+4883,Diceros genus_Diceros,most common species in Africa
+4884,Dick_test,a skin test to determine your susceptibility to scarlet fever
+4885,Dickens Charles_Dickens Charles_John_Huffam_Dickens,English writer whose novels depicted and criticized social injustice (1812-1870)
+4886,Dickinson Emily_Dickinson,United States poet noted for her mystical and unrhymed poems (1830-1886)
+4887,Dicksonia genus_Dicksonia,tree ferns of temperate Australasia having bipinnatifid or tripinnatifid fronds and usually marginal sori; in some classification systems placed in family Cyatheaceae
+4888,Dicksoniaceae family_Dicksoniaceae,tree ferns: genera Dicksonia, Cibotium, Culcita, and Thyrsopteris elegans
+4889,Dicotyledones class_Dicotyledones Dicotyledonae class_Dicotyledonae Magnoliopsida class_Magnoliopsida,comprising seed plants that produce an embryo with paired cotyledons and net-veined leaves; divided into six (not always well distinguished) subclasses (or superorders): Magnoliidae and Hamamelidae (considered primitive); Caryophyllidae (an early and distinctive offshoot); and three more or less advanced groups: Dilleniidae; Rosidae; Asteridae
+4890,Dicranaceae family_Dicranaceae,mosses having costate leaves and long-stalked capsules with cleft peristome
+4891,Dicranales order_Dicranales,widely distributed order of mosses with erect gametophores and sporophytes at the tips of stems
+4892,Dicranopteris genus_Dicranopteris,terrestrial ferns of forest margin or open ground; pantropical
+4893,Dicranum genus_Dicranum,type genus of Dicranaceae
+4894,Dicrostonyx genus_Dicrostonyx,pied lemmings
+4895,Dictamnus genus_Dictamnus,a dicotyledonous genus of the family Rutaceae
+4896,Dictaphone,a tape recorder that records and reproduces dictation
+4897,Dictyophera genus_Dictyophera,closely related to genus Phallus distinguished by an indusium hanging like a skirt from below the pileus
+4898,Dictyoptera order_Dictyoptera,in some classifications replaced by the orders (here suborders) Blattodea (cockroaches) and Manteodea (mantids); in former classifications often subsumed under a much broader order Orthoptera
+4899,Dicynodontia division_Dicynodontia,a division of Therapsida
+4900,Didelphidae family_Didelphidae,opossums
+4901,Didelphis genus_Didelphis,type genus of the family Didelphidae
+4902,Diderot Denis_Diderot,French philosopher who was a leading figure of the Enlightenment in France; principal editor of an encyclopedia that disseminated the scientific and philosophical knowledge of the time (1713-1784)
+4903,Didion Joan_Didion,United States writer (born in 1934)
+4904,Dido,(Roman mythology) a princess of Tyre who was the founder and queen of Carthage; Virgil tells of her suicide when she was abandoned by Aeneas
+4905,Dieffenbachia genus_Dieffenbachia,evergreen perennial herbs of tropical America with lush foliage and poisonous sap; often cultivated as houseplants
+4906,Diegueno,a member of a North American Indian people of southern California
+4907,Diegueno,the Yuman language spoken by the Diegueno
+4908,Dien_Bien_Phu,the French military base fell after a siege by Vietnam troops that lasted 56 days; ended the involvement of France in Indochina in 1954
+4909,Diervilla genus_Diervilla,small genus of low deciduous shrubs: bush honeysuckles
+4910,Dies_Irae,the first words of a medieval Latin hymn describing the Last Judgment (literally `day of wrath')
+4911,Diesel Rudolf_Diesel Rudolf_Christian_Karl_Diesel,German engineer (born in France) who invented the diesel engine (1858-1913)
+4912,Dietrich Marlene_Dietrich Maria_Magdalene_von_Losch,United States film actress (born in Germany) who made many films with Josef von Sternberg and later was a successful cabaret star (1901-1992)
+4913,Dietrich Paul_Heinrich_Dietrich Thiry Paul-Henri_Thiry d'Holbach baron_d'Holbach,French philosopher (born in Germany) famous as being one of the first self-described atheists in Europe
+4914,Digitaria genus_Digitaria,crab grass; finger grass
+4915,Dijon,an industrial city in eastern France to the north of Lyons
+4916,Dilleniaceae family_Dilleniaceae,chiefly tropical shrubs and trees and climbers having leathery leaves or flattened leaflike stems: genera Dillenia and Hibbertia
+4917,Dilleniidae subclass_Dilleniidae,a group of families of more or less advanced trees and shrubs and herbs having either polypetalous or gamopetalous corollas and often with ovules attached to the walls of the ovary; contains 69 families including Ericaceae and Cruciferae and Malvaceae; sometimes classified as a superorder
+4918,Dimash Damascus capital_of_Syria,an ancient city (widely regarded as the world's oldest) and present capital and largest city of Syria; according to the New Testament, the Apostle Paul (then known as Saul) underwent a dramatic conversion on the road to Damascus
+4919,Dimetapp,trade name for a drug containing an antihistamine and a decongestant; used to relieve nasal congestion and to treat rhinitis
+4920,Dimocarpus genus_Dimocarpus,longan
+4921,Dimorphotheca genus_Dimorphotheca,South African herbs or subshrubs with usually yellow flowers
+4922,Dinesen Isak_Dinesen Blixen Karen_Blixen Baroness_Karen_Blixen,Danish writer who lived in Kenya for 19 years and is remembered for her writings about Africa (1885-1962)
+4923,Dinka,a Nilotic language
+4924,Dinocerata order_Dinocerata,small order of primitive ungulates of the Paleocene and Eocene
+4925,Dinoflagellata order_Dinoflagellata Cilioflagellata order_Cilioflagellata,in some classifications considered a phylum of the kingdom Protista; in others included in the plant phylum Pyrrophyta
+4926,Dinornis genus_Dinornis,type genus of the Dinornithidae: large moas
+4927,Dinornithidae family_Dinornithidae,moas
+4928,Dinornithiformes order_Dinornithiformes,a ratite bird order: recently extinct flightless birds of New Zealand
+4929,Diocletian Gaius_Aurelius_Valerius_Diocletian,Roman Emperor who when faced with military problems decided in 286 to divide the Roman Empire between himself in the east and Maximian in the west; he initiated the last persecution of the Christians in 303 (245-313)
+4930,Diodon genus_Diodon,type genus of the Diodontidae
+4931,Diodontidae family_Diodontidae,spiny puffers
+4932,Diogenes,an ancient Greek philosopher and Cynic who rejected social conventions (circa 400-325 BC)
+4933,Diomedeidae family_Diomedeidae,albatrosses
+4934,Dionaea genus_Dionaea,a genus of the family Droseraceae
+4935,Dionysia Bacchanalia,an orgiastic festival in ancient Greece in honor of Dionysus (= Bacchus)
+4936,Dionysius Dionysius_the_Elder,the tyrant of Syracuse who fought the Carthaginians (430-367 BC)
+4937,Dionysus,(Greek mythology) god of wine and fertility and drama; the Greek name of Bacchus
+4938,Diophantus,Greek mathematician who was the first to try to develop an algebraic notation (3rd century)
+4939,Dior Christian_Dior,French couturier whose first collection in 1947 created a style that became known as the New Look (1905-1957)
+4940,Dioscorea genus_Dioscorea,yams
+4941,Dioscoreaceae family_Dioscoreaceae yam_family,yams
+4942,Diospyros genus_Diospyros,a genus of trees or shrubs that have beautiful and valuable wood
+4943,Diphylla genus_Diphylla,vampire bats
+4944,Diplopoda class_Diplopoda Myriapoda class_Myriapoda,arthropods having the body composed of numerous double somites each with two pairs of legs: millipedes
+4945,Diplopterygium genus_Diplopterygium,scandent thicket-forming ferns of Asia to western Pacific
+4946,Diplotaxis genus_Diplotaxis,wall rocket
+4947,Dipnoi subclass_Dipnoi,bony fishes of the southern hemisphere that breathe by a modified air bladder as well as gills; sometimes classified as an order of Crossopterygii
+4948,Dipodidae family_Dipodidae,Old World jerboas
+4949,Dipodomys genus_Dipodomys,kangaroo rats
+4950,Dipogon genus_Dipogon,one species: Australian pea
+4951,Dipsacaceae family_Dipsacaceae,chiefly southern European herbs with flowers usually in dense cymose heads
+4952,Dipsacus genus_Dipsacus,type genus of the Dipsacaceae: teasel
+4953,Dipsosaurus genus_Dipsosaurus,desert iguanas
+4954,Diptera order_Diptera,a large order of insects having a single pair of wings and sucking or piercing mouths; includes true flies and mosquitoes and gnats and crane flies
+4955,Dipterocarpaceae family_Dipterocarpaceae,chiefly tropical Asian trees with two-winged fruits; yield valuable woods and aromatic oils and resins
+4956,Dipteronia genus_Dipteronia,small genus of large deciduous shrubs having large clusters of winged seeds that turn red as they mature; central and southern China
+4957,Dipus genus_Dipus,type genus of the Dipodidae; typical jerboas having three toes on each hind foot
+4958,Dipylon_gate Dipylon,a gateway to the west of ancient Athens near which a distinctive style of pottery has been found
+4959,Dirac Paul_Adrien_Maurice_Dirac,English theoretical physicist who applied relativity theory to quantum mechanics and predicted the existence of antimatter and the positron (1902-1984)
+4960,Dirca genus_Dirca,deciduous shrub of North America: leatherwood
+4961,Director_of_Central_Intelligence DCI,the head of the United States Intelligence Community and director of the Central Intelligence Agency
+4962,Directorate_for_Inter-Services_Intelligence Inter-Services_Intelligence ISI,the Pakistan intelligence agency; a powerful and almost autonomous political and military force; has procured nuclear technology and delivery capabilities; has had strong ties with the Taliban and other militant Islamic groups
+4963,Discina_macrospora,a discina with a flat or saucer-shaped fertile body that is brown on the upper surface; has a short stalk; not recommended for eating
+4964,Disciotis_venosa cup_morel,an edible morel with a cup-shaped or saucer-shaped fruiting body can be up to 20 cm wide; the fertile surface inside the cup has wrinkles radiating from the center; can be easily confused with inedible mushrooms
+4965,Discocephali order_Discocephali,small order of fishes comprising the remoras
+4966,Discoglossidae family_Discoglossidae,family of Old World toads having a fixed disklike tongue
+4967,Discomycetes subclass_Discomycetes,a large and taxonomically difficult group of Ascomycetes in which the fleshy fruiting body is disklike or cup-shaped
+4968,Disney Walt_Disney Walter_Elias_Disney,United States film maker who pioneered animated cartoons and created such characters as Mickey Mouse and Donald Duck; founded Disneyland (1901-1966)
+4969,Disneyland,an amusement park in Anaheim created in 1955 by Walt Disney
+4970,Disraeli Benjamin_Disraeli First_Earl_of_Beaconsfield,British statesman who as Prime Minister bought controlling interest in the Suez Canal and made Queen Victoria the empress of India (1804-1881)
+4971,Distinguished_Conduct_Medal,a British military decoration for distinguished conduct in the field
+4972,Distinguished_Flying_Cross,a United States Air Force decoration for heroism while participating in an aerial flight
+4973,Distinguished_Service_Cross,a United States Army decoration for extraordinary heroism against an armed enemy
+4974,Distinguished_Service_Medal,a United States military decoration for meritorious service in wartime duty of great responsibility
+4975,Distinguished_Service_Order,a British military decoration for special service in action
+4976,District_of_Columbia D.C. DC,the district occupied entirely by the city of Washington; chosen by George Washington as the site of the capital of the United States and created out of land ceded by Maryland and Virginia
+4977,Divine_Comedy Divina_Commedia,a narrative epic poem written by Dante
+4978,Divine_Office,canonical prayers recited daily by priests (e.g. the breviary of the Roman Catholic Church)
+4979,Dix Dorothea_Dix Dorothea_Lynde_Dix,United States social reformer who pioneered in the reform of prisons and in the treatment of the mentally ill; superintended women army nurses during the American Civil War (1802-1887)
+4980,Dixie_cup paper_cup,a disposable cup made of paper; for holding drinks
+4981,Djanet,a desert town in southeastern Algeria
+4982,Djibouti Republic_of_Djibouti Afars_and_Issas,a country in northeastern Africa on the Somali peninsula; formerly under French control but became independent in 1997
+4983,Djibouti capital_of_Djibouti,port city on the Gulf of Aden; the capital and largest city of Djibouti
+4984,Djibouti_franc,the basic unit of money in Djibouti
+4985,Djiboutian,a native or inhabitant of Djibouti
+4986,Dneprodzerzhinsk,port city and industrial center in east central Ukraine on the Dnieper River
+4987,Dnieper Dnieper_River,a river that rises in Russia near Smolensk and flowing south through Belarus and Ukraine to empty into the Black Sea
+4988,Dnipropetrovsk Yekaterinoslav,city in east central Ukraine on the Dnieper River; center of metallurgical industry
+4989,Doberman Doberman_pinscher,medium large breed of dog of German origin with a glossy black and tan coat; used as a watchdog
+4990,Dobrich Tolbukhin,a city in northeastern Bulgaria (north of Varna) that is the commercial center of an agricultural region
+4991,Docetism,the heretical doctrine (associated with the Gnostics) that Jesus had no human body and his sufferings and death on the cross were apparent rather than real
+4992,Doctor_of_Arts ArtsD,an honorary arts degree
+4993,Doctor_of_Arts D.A.,a doctor's degree with a special disciplinary focus
+4994,Doctor_of_Dental_Medicine DMD,a doctor's degree in dental medicine
+4995,Doctor_of_Dental_Surgery DDS,a doctor's degree in dental surgery
+4996,Doctor_of_Divinity DD,a doctor's degree in religion
+4997,Doctor_of_Education EdD DEd,a doctor's degree in education
+4998,Doctor_of_Fine_Arts,an honorary degree in fine arts
+4999,Doctor_of_Humane_Letters,an honorary degree in letters
+5000,Doctor_of_Humanities,an honorary degree in the humanities
+5001,Doctor_of_Laws LLD,an honorary law degree
+5002,Doctor_of_Medicine MD,a doctor's degree in medicine
+5003,Doctor_of_Music DMus MusD,a doctor's degree in music
+5004,Doctor_of_Musical_Arts AMusD,a doctor's degree in musical arts
+5005,Doctor_of_Optometry OD,a doctor's degree in optometry
+5006,Doctor_of_Osteopathy DO,doctor's degree in osteopathy
+5007,Doctor_of_Philosophy,a doctorate awarded for original contributions to knowledge
+5008,Doctor_of_Public_Health DPH,a doctor's degree in preventive medicine
+5009,Doctor_of_Sacred_Theology STD,a doctor's degree in theology; "STD is from the Latin Sanctae Theologiae Doctor"
+5010,Doctor_of_Science DS ScD,an honorary degree in science
+5011,Doctor_of_Theology ThD,a doctor's degree in theology
+5012,Doctor_of_the_Church Doctor,(Roman Catholic Church) a title conferred on 33 saints who distinguished themselves through the orthodoxy of their theological teaching; "the Doctors of the Church greatly influenced Christian thought down to the late Middle Ages"
+5013,Doctorow E._L._Doctorow Edgard_Lawrence_Doctorow,United States novelist (born in 1931)
+5014,Dodecanese Dhodhekanisos,a group of islands in the southeast Aegean Sea
+5015,Dodge_City,a town of southwestern Kansas on the Arkansas River; formerly a rowdy cow town
+5016,Dodoma,a city in the center of Tanzania that has been designated as the future capital
+5017,Dodonaea genus_Dodonaea,a genus of tropical shrub or tree
+5018,Doha Bida El_Beda capital_of_Qatar,the capital and chief port of Qatar
+5019,Dolby Ray_M._Dolby,United States electrical engineer who devised the Dolby system used to reduce background noise in tape recording
+5020,Dolichonyx genus_Dolichonyx,bobolinks
+5021,Dolichos genus_Dolichos,genus of chiefly tropical vines often placed in genera Dipogon or Lablab or Macrotyloma
+5022,Dolichotis genus_Dolichotis,maras
+5023,Doliolidae family_Doliolidae,oceanic tunicates
+5024,Dolomite_Alps,an eastern range of the Alps in northeastern Italy famous for their dolomitic limestone
+5025,Dom_Pedro,South African mixed drink made by mixing ice cream with whisky
+5026,Domesday_Book Doomsday_Book,record of a British census and land survey in 1085-1086 ordered by William the Conqueror
+5027,Domingo Placido_Domingo,Spanish operatic tenor noted for performances in operas by Verdi and Puccini (born in 1941)
+5028,Dominic Saint_Dominic St._Dominic Domingo_de_Guzman,(Roman Catholic Church) Spanish priest who founded an order whose members became known as Dominicans or Black Friars (circa 1170-1221)
+5029,Dominica,a volcanic island in the Windward Islands that was once a stronghold of the Carib Indians
+5030,Dominica Commonwealth_of_Dominica,a country on the island of Dominica
+5031,Dominican,a native or inhabitant of the Dominican Republic
+5032,Dominican Black_Friar Blackfriar friar_preacher,a Roman Catholic friar wearing the black mantle of the Dominican order
+5033,Dominican_Republic,a republic in the West Indies; located on the eastern two-thirds of the island of Hispaniola
+5034,Dominican_dollar,the basic unit of money in Dominica
+5035,Dominican_monetary_unit,monetary unit in the Dominican Republic
+5036,Dominican_order,a Roman Catholic order of mendicant preachers founded in the 13th century
+5037,Dominican_peso peso,the basic unit of money in the Dominican Republic; equal to 100 centavos
+5038,Dominion,one of the self-governing nations in the British Commonwealth
+5039,Dominion_Day July_1,a legal holiday in Canada commemorating receiving Dominion status in 1867
+5040,Dominique Dominick,American breed of chicken having barred grey plumage raised for meat and brown eggs
+5041,Domino Fats_Domino Antoine_Domino,United States rhythm and blues pianist and singer and composer (born in 1928)
+5042,Domitian Titus_Flavius_Domitianus,Emperor of Rome; son of Vespasian who succeeded his brother Titus; instigated a reign of terror and was assassinated as a tyrant (51-96)
+5043,Don,a Spanish gentleman or nobleman
+5044,Don,Celtic goddess; mother of Gwydion and Arianrhod; corresponds to Irish Danu
+5045,Don,a Spanish courtesy title or form of address for men that is prefixed to the forename; "Don Roberto"
+5046,Don Don_River,a European river in southwestern Russia; flows into the Sea of Azov
+5047,Don_Juan,a legendary Spanish nobleman and philanderer who became the hero of many poems and plays and operas
+5048,Don_Juan,any successful womanizer (after the legendary profligate Spanish nobleman)
+5049,Don_Quixote,any impractical idealist (after Cervantes' hero)
+5050,Don_Quixote,the hero of a romance by Cervantes; chivalrous but impractical
+5051,Dona,a Spanish courtesy title or form of address for a woman; "Dona Marguerita"
+5052,Donald_Duck,a fictional duck created in animated film strips by Walt Disney
+5053,Donar,the Teutonic god of thunder; counterpart of Norse Thor
+5054,Donatello Donato_di_Betto_Bardi,Florentine sculptor famous for his lifelike sculptures (1386-1466)
+5055,Donatism,a schismatic Christian religion in northern Africa from the 4th to the 7th century; held that only those who led a blameless life belonged in the church or could administer the sacraments
+5056,Donatist,an adherent of Donatism
+5057,Donatus Aelius_Donatus,Roman grammarian whose textbook on Latin grammar was used throughout the Middle Ages (fourth century)
+5058,Donets_Basin Donbass Donbas,an industrial region in the Ukraine
+5059,Donetsk Donetske Stalino,an industrial city in the Donets Basin
+5060,Donizetti Gaetano_Donizetti,Italian composer of operas (1797-1848)
+5061,Donkin Bryan_Donkin,English engineer who developed a method of preserving food by sterilizing it with heat and sealing it inside a steel container--the first tin can (1768-1855)
+5062,Donne John_Donne,English clergyman and metaphysical poet celebrated as a preacher (1572-1631)
+5063,Donner_Pass,a mountain pass in northeastern California near Lake Tahoe; site where in 1844 some members of an emigrant party survived by eating those who had died
+5064,Doolittle Jimmy_Doolittle James_Harold_Doolittle,United States Air Force officer who electrified the world in 1942 by leading a squadron of 16 bombers on a daylight raid over Tokyo (1896-1993)
+5065,Doppler Christian_Johann_Doppler,Austrian physicist famous for his discovery of the Doppler effect (1803-1853)
+5066,Doppler_effect Doppler_shift,change in the apparent frequency of a wave as observer and source move toward or away from each other
+5067,Doppler_radar,radar that uses the Doppler shift to measure velocity
+5068,Dorado,a constellation in the southern hemisphere near Reticulum and Pictor; contains most of the Large Magellanic Cloud
+5069,Dorian,a member of one of four linguistic divisions of the prehistoric Greeks
+5070,Dorian,the ancient Greek inhabitants of Doris who entered Greece from the north about 1100 BC
+5071,Doric Doric_dialect,the dialect of Ancient Greek spoken in Doris
+5072,Doric_order Dorian_order,the oldest and simplest of the Greek orders and the only one that normally has no base
+5073,Doris,(Greek mythology) wife of Nereus and mother of the Nereids
+5074,Doris,a small region of ancient Greece where the Doric dialect was spoken
+5075,Dorking,an English breed of large domestic fowl having five toes (the hind toe doubled)
+5076,Dormition Feast_of_Dormition,celebration in the Eastern Orthodox Church of the Virgin Mary's being taken up into heaven when her earthly life ended; corresponds to the Assumption in the Roman Catholic Church and is also celebrated on August 15th
+5077,Doronicum genus_Doronicum,genus of Eurasian perennial tuberous or rhizomatous herbs: leopard's bane
+5078,Dorotheanthus genus_Dorotheanthus,a caryophyllaceous genus of Dorotheanthus
+5079,Dortmund,an industrial city in northwestern Germany; flourished from the 13th to 17th century as a member of the Hanseatic League
+5080,Dorylinae subfamily_Dorylinae,army ants
+5081,Doryopteris genus_Doryopteris,small to medium tropical tufted ferns; sometimes placed in family Adiantaceae
+5082,Dos_Passos John_Dos_Passos John_Roderigo_Dos_Passos,United States novelist remembered for his portrayal of life in the United States (1896-1970)
+5083,Dostoyevsky Dostoevski Dostoevsky Feodor_Dostoyevsky Fyodor_Dostoyevsky Feodor_Dostoevski Fyodor_Dostoevski Feodor_Dostoevsky Fyodor_Dostoevsky Feodor_Mikhailovich_Dostoyevsky Fyodor_Mikhailovich_Dostoyevsky Feodor_Mikhailovich_Dostoevski Fyodor_Mikhailovich_Dostoevski Feodor_Mikhailovich_Dostoevsky Fyodor_Mikhailovich_Dostoevsky,Russian novelist who wrote of human suffering with humor and psychological insight (1821-1881)
+5084,Douala,the largest city of Cameroon
+5085,Douay_Bible Douay_Version Douay-Rheims_Bible Douay-Rheims_Version Rheims-Douay_Bible Rheims-Douay_Version,an English translation of the Vulgate by Roman Catholic scholars
+5086,Douglas Stephen_A._Douglas Stephen_Arnold_Douglas Little_Giant,United States politician who proposed that individual territories be allowed to decide whether they would have slavery; he engaged in a famous series of debates with Abraham Lincoln (1813-1861)
+5087,Douglass Frederick_Douglass,United States abolitionist who escaped from slavery and became an influential writer and lecturer in the North (1817-1895)
+5088,Dover capital_of_Delaware,the capital of the state of Delaware
+5089,Dover's_powder,a medicinal powder made essentially of ipecac and opium; formerly used to relieve pain and induce perspiration
+5090,Dovyalis genus_Dovyalis,small genus of sometimes spiny shrubs or small trees; Africa; India; Sri Lanka
+5091,Dow_Jones Dow-Jones_Industrial_Average,an indicator of stock market prices; based on the share values of 30 blue-chip stocks listed on the New York Stock Exchange; "the Dow Jones Industrial Average is the most widely cited indicator of how the stock market is doing"
+5092,Dowding Hugh_Dowding Baron_Hugh_Caswall_Tremenheere_Dowding Dowdy,British marshal of the RAF who commanded the British air defense forces that defeated the Luftwaffe during the Battle of Britain (1882-1970)
+5093,Dowland John_Dowland,English lutenist and composer of songs for the lute (1563-1626)
+5094,Down John_L._H._Down,English physician who first described Down's syndrome (1828-1896)
+5095,Downing Andrew_Jackson_Downing,United States landscape architect who designed the grounds of the White House and the Capitol Building (1815-1852)
+5096,Downing_Street,a street of Westminster in London; "the Prime Minister lives at No. 10 Downing Street"
+5097,Downing_Street,the British government
+5098,Dracenaceae subfamily_Dracenaceae Dracaenaceae subfamily_Dracaenaceae,one of two subfamilies to which some classification systems assign some members of the Agavaceae
+5099,Draco,Athenian lawmaker whose code of laws prescribed death for almost every offense (circa 7th century BC)
+5100,Draco Dragon,a faint constellation twisting around the north celestial pole and lying between Ursa Major and Cepheus
+5101,Draco genus_Draco,a reptile genus known as flying dragons or flying lizards
+5102,Dracocephalum genus_Dracocephalum,genus of American herbs and dwarf shrubs of the mint family: dragonheads
+5103,Dracula,fictional vampire in a gothic horror novel by Bram Stoker
+5104,Dracula genus_Dracula,comprises tropical American species usually placed in genus Masdevallia: diminutive plants having bizarre and often sinister-looking flowers with pendulous scapes and motile lips
+5105,Dracunculidae family_Dracunculidae,greatly elongated roundworm
+5106,Dracunculus genus_Dracunculus,tuberous herbaceous perennials: dragon arum
+5107,Dracunculus genus_Dracunculus,type genus of the family Dracunculidae
+5108,Dragunov,a sniper rifle with a telescopic sight
+5109,Drake Francis_Drake Sir_Francis_Drake,English explorer and admiral who was the first Englishman to circumnavigate the globe and who helped to defeat the Spanish Armada (1540-1596)
+5110,Drambuie,a sweet Scotch whisky liqueur
+5111,Dravidian,a member of one of the aboriginal inhabitants of India
+5112,Dravidian Dravidic Dravidian_language,a large family of languages spoken in south and central India and Sri Lanka
+5113,Dreiser Theodore_Dreiser Theodore_Herman_Albert_Dreiser,United States novelist (1871-1945)
+5114,Dreissena genus_Dreissena,zebra mussels
+5115,Drepanididae family_Drepanididae,Hawaiian honeycreepers
+5116,Drepanis genus_Drepanis,a genus of Drepanididae
+5117,Dresden,a city in southeastern Germany on the Elbe River; it was almost totally destroyed by British air raids in 1945
+5118,Drew John_Drew,United States actor (born in Ireland); father of Georgiana Emma Barrymore (1827-1862)
+5119,Dreyfus Alfred_Dreyfus,French army officer of Jewish descent whose false imprisonment for treason in 1894 raised issues of anti-Semitism that dominated French politics until his release in 1906 (1859-1935)
+5120,Drimys genus_Drimys,shrubs and trees of southern hemisphere having aromatic foliage
+5121,Drixoral,the trade name for a drug used to treat upper respiratory congestion; it contains an antihistamine and a bronchodilator and a vasoconstrictor
+5122,Drogheda,in 1649 the place was captured by Oliver Cromwell, who massacred the Catholic inhabitants
+5123,Dromaeosauridae family_Dromaeosauridae,swift-running bipedal dinosaurs
+5124,Dromaius genus_Dromaius,a genus of birds in the order Casuariiformes
+5125,Drosera genus_Drosera,the type genus of Droseraceae including many low bog-inhabiting insectivorous plants
+5126,Droseraceae family_Droseraceae sundew_family,a family of carnivorous herbs and shrubs
+5127,Drosophilidae family_Drosophilidae,fruit flies
+5128,Drosophyllum genus_Drosophyllum,one species
+5129,Drosophyllum_lusitanicum,perennial of dry habitats whose leaves have glandular hairs that secrete adhesive and digestive fluid for capture and digestion of insects; Portugal, southern Spain and Morocco
+5130,Drug_Enforcement_Administration Drug_Enforcement_Agency DEA,federal agency responsible for enforcing laws and regulations governing narcotics and controlled substances; goal is to immobilize drug trafficking organizations
+5131,Druid,a pre-Christian priest among the Celts of ancient Gaul and Britain and Ireland
+5132,Druze Druse,an adherent of an esoteric monotheistic religious sect living in the relative security of the mountains of Syria and Lebanon who believes that Al-hakim was an incarnation of God; "a Druze is permitted to conform outwardly to the faith of the unbelievers among whom he lives"
+5133,Dryadella genus_Dryadella,comprises tropical American species usually placed in genus Masdevallia: very dwarf plants having short tufted and usually unifoliate stems with usually solitary flowers
+5134,Dryas genus_Dryas,mountain avens
+5135,Dryden John_Dryden,the outstanding poet and dramatist of the Restoration (1631-1700)
+5136,Drymarchon genus_Drymarchon,a genus of Colubridae
+5137,Drymoglossum genus_Drymoglossum,epiphytic ferns of Madagascar to tropical Asia and New Guinea
+5138,Drynaria genus_Drynaria,large robust epiphytic ferns of tropical forest and scrub; Africa and Asia and Australia
+5139,Dryopithecus genus_Dryopithecus,genus of Old World hominoids; Miocene and Pliocene
+5140,Dryopteridaceae family_Dryopteridaceae Athyriaceae family_Athyriaceae,alternative names for one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems
+5141,Dryopteris genus_Dryopteris,large widespread genus of medium-sized terrestrial ferns; in some classification systems placed in Polypodiaceae
+5142,Du_Barry Comtesse_Du_Barry Marie_Jeanne_Becu,courtier and influential mistress of Louis XV who was guillotined during the French Revolution (1743-1793)
+5143,Du_Bois W._E._B._Du_Bois William_Edward_Burghardt_Du_Bois,United States civil rights leader and political activist who campaigned for equality for Black Americans (1868-1963)
+5144,Dubai,port city in the United Arab Emirates on the Persian Gulf
+5145,Dublin Irish_capital capital_of_Ireland,capital and largest city and major port of the Irish Republic
+5146,Dubliner,a resident of Dublin
+5147,Dubonnet,(trademark) a sweet aromatic French wine (red or white) used chiefly as an aperitif
+5148,Dubrovnik Ragusa,a port city in southwestern Croatia on the Adriatic; a popular tourist center
+5149,Dubuque,a town in eastern Iowa on the Mississippi River
+5150,Duchamp Marcel_Duchamp,French artist who immigrated to the United States; a leader in the dada movement in New York City; was first to exhibit commonplace objects as art (1887-1968)
+5151,Duchenne's_muscular_dystrophy pseudohypertrophic_dystrophy,the most common form of muscular dystrophy; inheritance is X-linked recessive (carried by females but affecting only males)
+5152,Dufy Raoul_Dufy,French painter noted for brightly colored scenes (1877-1953)
+5153,Dugongidae family_Dugongidae,a family of mammals of order Sirenia including dugongs and Steller's sea cow
+5154,Dukas Paul_Dukas,French composer (1865-1935)
+5155,Duke_University,a university in Durham, North Carolina
+5156,Dulles John_Foster_Dulles,United States diplomat who (as Secretary of State) pursued a policy of opposition to the USSR by providing aid to American allies (1888-1959)
+5157,Duluth,a city in northeast Minnesota on Lake Superior
+5158,Duma,a legislative body in the ruling assembly of Russia and of some other republics in the former USSR
+5159,Dumas Alexandre_Dumas,French writer remembered for his swashbuckling historical tales (1802-1870)
+5160,Dumetella genus_Dumetella,catbirds
+5161,Dumpster,a container designed to receive and transport and dump waste
+5162,Dumpy_level,a surveyor's level having a short telescope fixed to a horizontally rotating table and a spirit level
+5163,Dumuzi Tammuz,Sumerian and Babylonian god of pastures and vegetation; consort of Inanna
+5164,Duncan Isadora_Duncan,United States dancer and pioneer of modern dance (1878-1927)
+5165,Dungeness_crab,flesh of Cancer magister (Dungeness crab)
+5166,Dungeness_crab Cancer_magister,small edible crab of Pacific coast of North America
+5167,Dunker Dunkard Tunker,an adherent of Baptistic doctrines (who practice baptism by immersion)
+5168,Dunkirk,a crisis in which a desperate effort is the only alternative to defeat; "the Russians had to pull off a Dunkirk to get out of there"
+5169,Dunkirk Dunkerque,a seaport in northern France on the North Sea; scene of the evacuation of British forces in 1940 during World War II
+5170,Dunkirk Dunkerque,an amphibious evacuation in World War II (1940) when 330,000 Allied troops had to be evacuated from the beaches in northern France in a desperate retreat under enemy fire
+5171,Duns_Scotus John_Duns_Scotus,Scottish theologian who was very influential in the Middle Ages (1265-1308)
+5172,Duplicidentata,in former classifications considered a suborder of Rodentia coextensive with the order Lagomorpha: gnawing animals
+5173,Duralumin,an aluminum-based alloy
+5174,Durango Victoria_de_Durango,a city in north central Mexico; mining center
+5175,Durant Will_Durant William_James_Durant,United States historian (1885-1981)
+5176,Durante Jimmy_Durante,United States comedian remembered for his large nose and hoarse voice (1893-1980)
+5177,Durban,a port city in eastern South Africa on the Indian Ocean; resort and industrial center
+5178,Durer Albrecht_Durer,a leading German painter and engraver of the Renaissance (1471-1528)
+5179,Durga,Hindu goddess of war; a malevolent aspect of Devi; "the inaccessible Durga"
+5180,Durham,a city of north central North Carolina; site of Duke University
+5181,Durham shorthorn,English breed of short-horned cattle
+5182,Durio genus_Durio,a genus of tall Asian trees of the family Bombacaceae
+5183,Durkheim Emile_Durkheim,French sociologist and first professor of sociology at the Sorbonne (1858-1917)
+5184,Durrell Lawrence_Durrell Lawrence_George_Durrell,English writer of Irish descent who spent much of his life in Mediterranean regions (1912-1990)
+5185,Durres Durazzo,port city in western Albania on the Adriatic
+5186,Duse Eleonora_Duse,Italian actress best known for her performances in tragic roles (1858-1924)
+5187,Dushanbe Dusanbe Dyushambe Stalinabad capital_of_Tajikistan,the capital of Tajikistan; formerly Stalinabad 1926-1991
+5188,Dusicyon genus_Dusicyon,crab-eating dog
+5189,Dusseldorf,an industrial city in western Germany on the Rhine
+5190,Dutch,the West Germanic language of the Netherlands
+5191,Dutch Dutch_people,the people of the Netherlands; "the Dutch are famous for their tulips"
+5192,Dutch-elm_beetle Scolytus_multistriatus,a vector of the fungus causing Dutch elm disease
+5193,Dutch-processed_cocoa,cocoa powder treated with a mild alkalizing agent (such as baking soda)
+5194,Dutch_courage,courage resulting from intoxication
+5195,Dutch_door half_door,an exterior door divided in two horizontally; either half can be closed or open independently
+5196,Dutch_elm Ulmus_hollandica,any of various hybrid ornamental European shade trees ranging from dwarf to tall
+5197,Dutch_elm_disease,disease of elms caused by a fungus
+5198,Dutch_elm_fungus Ceratostomella_ulmi,fungus causing Dutch elm disease
+5199,Dutch_iris Iris_filifolia,bulbous Spanish iris with red-violet flowers
+5200,Dutch_iris Iris_tingitana,bulbous Spanish iris having blue flowers
+5201,Dutch_monetary_unit,monetary unit in the Netherlands
+5202,Dutch_oven,iron or earthenware cooking pot; used for stews
+5203,Dutch_oven,an oven consisting of a metal box for cooking in front of a fire
+5204,Dutch_treat,a dinner where each person pays for his own
+5205,Dutch_uncle,a counselor who admonishes frankly and sternly
+5206,Dutchman's-pipe pipe_vine Aristolochia_macrophylla Aristolochia_durior,hardy deciduous vine having large leaves and flowers with the calyx tube curved like the bowl of a pipe
+5207,Dutchman's_breeches Dicentra_cucullaria,delicate spring-flowering plant of the eastern United States having white flowers with double spurs
+5208,Duvalier Francois_Duvalier Papa_Doc,oppressive Haitian dictator (1907-1971)
+5209,Duvalier Jean-Claude_Duvalier Baby_Doc,son and successor of Francois Duvalier as president of Haiti; he was overthrown by a mass uprising in 1986 (born in 1951)
+5210,Dvorak Antonin_Dvorak,Czech composer who combined folk elements with traditional forms (1841-1904)
+5211,Dyaus Dyaus-pitar,Hindu god of the sky
+5212,Dyirbal Jirrbal,a language of Australian aborigines
+5213,Dylan,Celtic god of the waves; son of Arianrhod
+5214,Dylan Bob_Dylan,United States songwriter noted for his protest songs (born in 1941)
+5215,Dysdercus genus_Dysdercus,a genus of slender long-legged bugs that feed on the developing seeds of cotton and stain it
+5216,Dytiscidae family_Dytiscidae,water beetles
+5217,E e,the 5th letter of the Roman alphabet
+5218,EBITDA Earnings_Before_Interest_Taxes_Depreciation_and_Amortization,income before interest and taxes and depreciation and amortization have been subtracted; an indicator of a company's profitability that is watched by investors (especially in leveraged buyouts)
+5219,ENT_man ear-nose-and-throat_doctor otolaryngologist otorhinolaryngologist rhinolaryngologist,a specialist in the disorders of the ear or nose or throat
+5220,Ea,the Babylonian god of wisdom; son of Apsu and father of Marduk; counterpart of the Sumerian Enki; as one of the supreme triad including Anu and Bel he was assigned control of the watery element
+5221,Eacles genus_Eacles,imperial moths
+5222,Eagle_Scout,a Boy Scout who has earned many merit badges
+5223,Eames Charles_Eames,United States designer noted for an innovative series of chairs (1907-1978)
+5224,Eames_chair,a chair designed by Charles Eames; originally made of molded plywood; seat and back shaped to fit the human body
+5225,Earhart Amelia_Earhart,first woman aviator to fly solo nonstop across the Atlantic (1928); while attempting to fly around the world she disappeared over the Pacific (1898-1937)
+5226,Earl_Marshal,an officer of the English peerage who organizes royal processions and other ceremonies
+5227,Earth earth,the abode of mortals (as contrasted with Heaven or Hell); "it was hell on earth"
+5228,Earth earth world globe,the 3rd planet from the sun; the planet we live on; "the Earth moves around the sun"; "he sailed around the world"
+5229,Earth-received_time ERT,the coordinated universal time when an event is received on Earth
+5230,East Orient,the countries of Asia
+5231,East eastern_United_States,the region of the United States lying to the north of the Ohio River and to the east of the Mississippi River
+5232,East-sider,a resident of the east side of Manhattan in New York City
+5233,East_Africa,a geographical area in eastern Africa
+5234,East_Anglia,a region of eastern England that was formerly a kingdom
+5235,East_Chadic,a group of Chadic languages spoken in Chad
+5236,East_China_Sea,part of the Pacific Ocean near eastern Asia
+5237,East_Coast,the eastern seaboard of the United States (especially the strip between Boston and Washington D.C.)
+5238,East_German,a native or inhabitant of the former republic of East Germany
+5239,East_Germanic East_Germanic_language,an extinct branch of the Germanic languages
+5240,East_Germany German_Democratic_Republic,a republic in north central Europe on the Baltic; established by the Soviet Union in 1954; reunified with West Germany in 1990
+5241,East_India_Company,an English company formed in 1600 to develop trade with the new British colonies in India and southeastern Asia; in the 18th century it assumed administrative control of Bengal and held it until the British army took over in 1858 after the Indian Mutiny
+5242,East_India_kino Malabar_kino kino_gum,reddish or black juice or resin from certain trees of the genus Pterocarpus and used in medicine and tanning etc
+5243,East_Indian,a native or inhabitant of the East Indies
+5244,East_Malaysia,the part of Malaysia that is on the island of Borneo
+5245,East_Midland,the dialect of Middle English that replaced West Saxon as the literary language and which developed into Modern English
+5246,East_River,a tidal strait separating Manhattan and the Bronx from Queens and Brooklyn
+5247,East_Saint_Louis,a town in southwest Illinois on the Mississippi across from Saint Louis
+5248,East_Sussex,a county in southern England on the English Channel
+5249,East_Timor,a former Portuguese colony that was annexed by Indonesia in 1976; voted for independence from Indonesia in 1999 and in May 2002 became an independent nation
+5250,East_Turkistan_Islamic_Movement East_Turkestan_Islamic_Movement,a group of Uighur Muslims fighting Chinese control of Xinjiang; declared by China in 2001 to be terrorists although there is a long history of cycles of insurgency and repression
+5251,Easter,a Christian celebration of the Resurrection of Christ; celebrated on the Sunday following the first full moon after the vernal equinox
+5252,Easter_Sunday Easter_Day,the day (in March or April) on which the festival of Easter is celebrated
+5253,Easter_bunny,a rabbit that delivers Easter eggs
+5254,Easter_cactus Hatiora_gaertneri Schlumbergera_gaertneri,spring-blooming South American cactus with oblong joints and coral-red flowers; sometimes placed in genus Schlumbergera
+5255,Easter_card,a card expressing an Easter greeting
+5256,Easter_daisy stemless_daisy Townsendia_Exscapa,dwarf tufted nearly stemless herb having a rosette of woolly leaves and large white-rayed flower heads and bristly achenes; central Canada and United States west to Arizona
+5257,Easter_egg,an egg-shaped candy used to celebrate Easter
+5258,Easter_egg,a colored hard-boiled egg used to celebrate Easter
+5259,Easter_lily Bermuda_lily white_trumpet_lily Lilium_longiflorum,tall lily have large white trumpet-shaped flowers that bloom in the spring
+5260,Eastern_Catholicism,the beliefs and practices of any of the eastern Catholic Churches based in Constantinople or Antioch or Alexandria or Moscow or Jerusalem
+5261,Eastern_Church Byzantine_Church,the Catholic Church as it existed in the Byzantine Empire
+5262,Eastern_Time Eastern_Standard_Time EST,standard time in the 5th time zone west of Greenwich, reckoned at the 75th meridian; used in the eastern United States
+5263,Eastern_cottonwood necklace_poplar Populus_deltoides,a common poplar of eastern and central United States; cultivated in United States for its rapid growth and luxuriant foliage and in Europe for timber
+5264,Eastern_hop_hornbeam ironwood ironwood_tree Ostrya_virginiana,medium-sized hop hornbeam of eastern North America
+5265,Eastern_silvery_aster,a variety of aster
+5266,Eastertide,the Easter season
+5267,Eastman George_Eastman,United States inventor of a dry-plate process of developing photographic film and of flexible film (his firm introduced roll film) and of the box camera and of a process for color photography (1854-1932)
+5268,Eau_Claire,a town in west central Wisconsin
+5269,Ebenaceae family_Ebenaceae ebony_family,fruit and timber trees of tropical and warm regions including ebony and persimmon
+5270,Ebenales order_Ebenales,trees or shrubs of the families Ebenaceae or Sapotaceae or Styracaceae or Symplocaceae
+5271,Ebola_hemorrhagic_fever Ebola_fever Ebola,a severe and often fatal disease in humans and nonhuman primates (monkeys and chimpanzees) caused by the Ebola virus; characterized by high fever and severe internal bleeding; can be spread from person to person; is largely limited to Africa
+5272,Ebola_virus,a filovirus that causes Ebola hemorrhagic fever; carried by animals; can be used as a bioweapon
+5273,Ebro Ebro_River,a river in northeastern Spain; flows into the Mediterranean
+5274,Eburophyton genus_Eburophyton,a monocotyledonous genus of the family Orchidaceae
+5275,Ecballium genus_Ecballium,exploding cucumber; squirting cucumber
+5276,Eccles John_Eccles Sir_John_Carew_Eccles,Australian physiologist noted for his research on the conduction of impulses by nerve cells (1903-1997)
+5277,Eccles_cake,a flat round cake of sweetened pastry filled with dried fruit
+5278,Ecclesiastes Book_of_Ecclesiastes,an Old Testament book consisting of reflections on the vanity of human life; is traditionally attributed to Solomon but probably was written about 250 BC
+5279,Echeneididae family_Echeneididae family_Echeneidae,fishes having a sucking disk on the head for clinging to other fishes and to ships
+5280,Echeneis genus_Echeneis,type genus of the Echeneididae: typical remoras
+5281,Echidnophaga genus_Echidnophaga,a genus of Siphonaptera
+5282,Echinacea genus_Echinacea,small genus of North American coarse perennial herbs
+5283,Echinocereus genus_Echinocereus,large genus of low-growing shrubby ribbed cacti of Mexico and southwestern United States
+5284,Echinochloa genus_Echinochloa,annual or perennial succulent grasses of warm regions
+5285,Echinodermata phylum_Echinodermata,radially symmetrical marine invertebrates including e.g. starfish and sea urchins and sea cucumbers
+5286,Echinoidea class_Echinoidea,sea urchins and sand dollars
+5287,Echinops genus_Echinops,genus of Mediterranean and Eurasian herbs: globe thistles
+5288,Echium genus_Echium,a genus of bristly herbs and shrubs of the family Boraginaceae
+5289,Echo,(Greek mythology) a nymph who was spurned by Narcissus and pined away until only her voice remained
+5290,Eck Johann_Eck Johann_Maier_Eck Johann_Maier,a German Roman Catholic theologian who was an indefatigable opponent of Martin Luther (1486-1543)
+5291,Eckhart Johannes_Eckhart Meister_Eckhart,German Roman Catholic theologian and mystic (1260-1327)
+5292,Economic_Commission_for_Africa,the commission of the Economic and Social Council of the United Nations that is concerned with economic development of African nations
+5293,Economic_Commission_for_Asia_and_the_Far_East,the commission of the Economic and Social Council of the United Nations that is concerned with economic development of countries in Asia and the Far East
+5294,Economic_Commission_for_Europe,the commission of the Economic and Social Council of the United Nations that is concerned with economic development in Europe
+5295,Economic_Commission_for_Latin_America,the commission of the Economic and Social Council of the United Nations that is concerned with economic development in Latin America
+5296,Economic_and_Social_Council ECOSOC,a permanent council of the United Nations; responsible for economic and social conditions
+5297,Economic_and_Social_Council_commission ECOSOC_commission,a commission of the Economic and Social Council of the United Nations
+5298,Ectopistes genus_Ectopistes,a genus of Columbidae
+5299,Ectoprocta phylum_Ectoprocta,coextensive with or a subphylum of Bryozoa
+5300,Ecuador Republic_of_Ecuador,a republic in northwestern South America; became independent from Spain in 1822; the landscape is dominated by the Andes
+5301,Ecuadoran_monetary_unit,monetary unit in Ecuador
+5302,Ecuadorian Ecuadoran,a native or inhabitant of Ecuador
+5303,Edam,mild yellow Dutch cheese made in balls encased in a red covering
+5304,Edaphosauridae family_Edaphosauridae,a family of reptiles of the order Pelycosauria
+5305,Edda,either of two distinct works in Old Icelandic dating from the late 13th century and consisting of 34 mythological and heroic ballads composed between 800 and 1200; the primary source for Scandinavian mythology
+5306,Eddington Sir_Arthur_Stanley_Eddington,English astronomer remembered for his popular elucidation of relativity theory (1882-1944)
+5307,Eddy Mary_Baker_Eddy Mary_Morse_Baker_Eddy,founder of Christian Science in 1866 (1821-1910)
+5308,Eden Garden_of_Eden,a beautiful garden where Adam and Eve were placed at the Creation; when they disobeyed and ate the forbidden fruit from the tree of knowledge of good and evil they were driven from their paradise (the fall of man)
+5309,Eden paradise nirvana heaven promised_land Shangri-la,any place of complete bliss and delight and peace
+5310,Edentata order_Edentata,order of mammals having few or no teeth including: New World anteaters; sloths; armadillos
+5311,Ederle Gertrude_Ederle Gertrude_Caroline_Ederle,United States swimmer who in 1926 became the first woman to swim the English Channel (1906-2003)
+5312,Edgar,the younger brother of Edwy who became king of Northumbria when it renounced Edwy; on Edwy's death he succeeded to the throne of England (944-975)
+5313,Edinburgh,the capital of Scotland; located in the Lothian Region on the south side of the Firth of Forth
+5314,Edirne Adrianople Adrianopolis,a city in northwestern Turkey; a Thracian town that was rebuilt and renamed by the Roman Emperor Hadrian
+5315,Edison Thomas_Edison Thomas_Alva_Edison,United States inventor; inventions included the phonograph and incandescent electric light and the microphone and the Kinetoscope (1847-1931)
+5316,Edmonton,the capital of the province of Alberta
+5317,Edmontonia,heavily armored and highly spiked dinosaur with semi-upright posture
+5318,Edmund_I,king of the English who succeeded Athelstan; he drove out the Danes and made peace with Scotland (921-946)
+5319,Edmund_II Edmund_Ironside,king of the English who led resistance to Canute but was defeated and forced to divide the kingdom with Canute (980-1016)
+5320,Edo,a member of a west African people living in the tropical forest region of southern Nigeria
+5321,Edward Black_Prince,son of Edward III who defeated the French at Crecy and Poitiers in the Hundred Years' War (1330-1376)
+5322,Edward Edward_I,King of England from 1272 to 1307; conquered Wales (1239-1307)
+5323,Edward Edward_II,King of England from 1307 to 1327 and son of Edward I; was defeated at Bannockburn by the Scots led by Robert the Bruce; was deposed and died in prison (1284-1327)
+5324,Edward Edward_III,son of Edward II and King of England from 1327-1377; his claim to the French throne provoked the Hundred Years' War; his reign was marked by an epidemic of the Black Plague and by the emergence of the House of Commons as the powerful arm of British Parliament (1312-1377)
+5325,Edward Edward_IV,King of England from 1461 to 1470 and from 1471 to 1483; was dethroned in 1470 but regained the throne in 1471 by his victory at the battle of Tewkesbury (1442-1483)
+5326,Edward Edward_V,King of England who was crowned at the age of 13 on the death of his father Edward IV but was immediately confined to the Tower of London where he and his younger brother were murdered (1470-1483)
+5327,Edward Edward_VI,King of England and Ireland from 1547 to 1553; son of Henry VIII and Jane Seymour; died of tuberculosis (1537-1553)
+5328,Edward Edward_VII Albert_Edward,King of England from 1901 to 1910; son of Victoria and Prince Albert; famous for his elegant sporting ways (1841-1910)
+5329,Edward Edward_VIII Duke_of_Windsor,King of England and Ireland in 1936; his marriage to Wallis Warfield Simpson created a constitutional crisis leading to his abdication (1894-1972)
+5330,Edward Prince_Edward Edward_Antony_Richard_Louis,third son of Elizabeth II (born in 1964)
+5331,Edward_the_Confessor Saint_Edward_the_Confessor St._Edward_the_Confessor,son of Ethelred the Unready; King of England from 1042 to 1066; he founded Westminster Abbey where he was eventually buried (1003-1066)
+5332,Edward_the_Elder,king of Wessex whose military success against the Danes made it possible for his son Athelstan to become the first king of all England (870-924)
+5333,Edward_the_Martyr Saint_Edward_the_Martyr St._Edward_the_Martyr,King of England who was a son of Edgar; he was challenged for the throne by supporters of his half-brother Ethelred II who eventually murdered him (963-978)
+5334,Edwardian,someone belonging to (or as if belonging to) the era of Edward VII
+5335,Edwards Jonathan_Edwards,American theologian whose sermons and writings stimulated a period of renewed interest in religion in America (1703-1758)
+5336,Edwin,king of Northumbria who was converted to Christianity (585-633)
+5337,Edwy Eadwig,King of England who was renounced by Northumbria in favor of his brother Edgar (died in 959)
+5338,Eelam Tamil_Eelam,the independent state that the Tamil Tigers have fought for
+5339,Egadi_Islands Aegadean_Isles Aegadean_Islands Isole_Egadi Aegates,a group of islands off the west coast of Sicily in the Mediterranean
+5340,Egbert,king of Wessex whose military victories made Wessex the most powerful kingdom in England (died in 839)
+5341,Egeria genus_Egeria,small genus of dioecious tropical aquatic plants
+5342,Eglevsky Andre_Eglevsky,United States ballet dancer (born in Russia) (1917-1977)
+5343,Egretta genus_Egretta,small Old and New World herons
+5344,Egypt Arab_Republic_of_Egypt United_Arab_Republic,a republic in northeastern Africa known as the United Arab Republic until 1971; site of an ancient civilization that flourished from 2600 to 30 BC
+5345,Egyptian,a native or inhabitant of Egypt
+5346,Egyptian,the ancient and now extinct language of Egypt under the Pharaohs; written records date back to 3000 BC
+5347,Egyptian_Empire Egypt,an ancient empire to the west of Israel; centered on the Nile River and ruled by a Pharaoh; figured in many events described in the Old Testament
+5348,Egyptian_cat,a domestic cat of Egypt
+5349,Egyptian_cotton,fine somewhat brownish long-staple cotton grown in Egypt; believed to be derived from sea island cotton or by hybridization with Peruvian cotton
+5350,Egyptian_deity,a deity worshipped by the ancient Egyptians
+5351,Egyptian_grass crowfoot_grass Dactyloctenium_aegypticum,a creeping grass with spikes like fingers
+5352,Egyptian_henbane Hyoscyamus_muticus,poisonous herb whose leaves are a source of hyoscyamine
+5353,Egyptian_monetary_unit,monetary unit in Egypt
+5354,Egyptian_pound pound,the basic unit of money in Egypt; equal to 100 piasters
+5355,Egyptian_vulture Pharaoh's_chicken Neophron_percnopterus,small mostly white vulture of Africa and southern Eurasia
+5356,Egyptologist,an archeologist who specializes in Egyptology
+5357,Egyptology,archeology of ancient Egyptian artifacts
+5358,Ehadhamen,city in Tunisia
+5359,Ehrenberg Ilya_Ehrenberg Ilya_Grigorievich_Ehrenberg,Russian novelist (1891-1967)
+5360,Ehrlich Paul_Ehrlich,German bacteriologist who found a `magic bullet' to cure syphilis and was a pioneer in the study of immunology (1854-1915)
+5361,Eichhornia genus_Eichhornia,water hyacinth; water orchid
+5362,Eichmann Adolf_Eichmann Karl_Adolf_Eichmann,Austrian who became the Nazi official who administered the concentration camps where millions of Jews were murdered during World War II (1906-1962)
+5363,Eiffel Alexandre_Gustave_Eiffel,French engineer who constructed the Eiffel Tower (1832-1923)
+5364,Eiffel_Tower,a wrought iron tower 300 meters high that was constructed in Paris in 1889; for many years it was the tallest man-made structure
+5365,Eigen Manfred_Eigen,German chemist who did research on high-speed chemical reactions (born in 1927)
+5366,Eighteenth_Amendment,an amendment to the Constitution of the United States adopted in 1920; prohibited the manufacture and sale of alcoholic beverages; repealed in 1932
+5367,Eijkman Christiaan_Eijkman,Dutch physician who discovered that beriberi is caused by a nutritional deficiency (1858-1930)
+5368,Eimeriidae family_Eimeriidae,a family of protoctist in the order Coccidia
+5369,Eindhoven,city in southeastern Netherlands noted for electrical industry
+5370,Einstein Albert_Einstein,physicist born in Germany who formulated the special theory of relativity and the general theory of relativity; Einstein also proposed that light consists of discrete quantized bundles of energy (later called photons) (1879-1955)
+5371,Einthoven Willem_Einthoven,Dutch physiologist who devised the first electrocardiograph (1860-1927)
+5372,Eira genus_Eira,a genus of Mustelidae
+5373,Eisenhower Dwight_Eisenhower Dwight_D._Eisenhower Dwight_David_Eisenhower Ike President_Eisenhower,United States general who supervised the invasion of Normandy and the defeat of Nazi Germany; 34th President of the United States (1890-1961)
+5374,Eisenstaedt Alfred_Eisenstaedt,United States photographer (born in Germany) whose unposed documentary photographs created photojournalism (born in 1898)
+5375,Eisenstein Sergei_Eisenstein Sergei_Mikhailovich_Eisenstein,Russian film maker who pioneered the use of montage and is considered among the most influential film makers in the history of motion pictures (1898-1948)
+5376,Ekman Vagn_Walfrid_Ekman,Swedish oceanographer who recognized the role of the Coriolis effect on ocean currents (1874-1954)
+5377,El_Aaium,a town in Morocco near the Atlantic coast
+5378,El_Alamein,a village to the west of Alexandria on the northern coast of Egypt; the scene of a decisive Allied victory over the Germans in 1942
+5379,El_Alamein Al_Alamayn Battle_of_El_Alamein,a pitched battle in World War II (1942) resulting in a decisive Allied victory by British troops under Montgomery over German troops under Rommel
+5380,El_Cid,the hero of a Spanish epic poem from the 12th century
+5381,El_Dorado eldorado,an imaginary place of great wealth and opportunity; sought in South America by 16th-century explorers
+5382,El_Greco Greco Domenikos_Theotocopoulos,Spanish painter (born in Greece) remembered for his religious works characterized by elongated human forms and dramatic use of color (1541-1614)
+5383,El_Libertador,a mountain in the Andes in Argentina (22,047 feet high)
+5384,El_Misti,the world's 2nd largest active volcano; located in the Andes in southern Peru
+5385,El_Muerto,a mountain peak in the Andes on the border between Argentina and Chile (21,457 feet high)
+5386,El_Nino,(oceanography) a warm ocean current that flows along the equator from the date line and south off the coast of Ecuador at Christmas time
+5387,El_Nino,the Christ child
+5388,El_Nino_southern_oscillation,a more intense El Nino that occurs every few years when the welling up of cold nutrient-rich water does not occur; kills plankton and fish and affects weather patterns
+5389,El_Paso,a city in western Texas on the Mexican border; located on the northern bank of the Rio Grande across from the Mexican city of Juarez
+5390,El_Salvador Republic_of_El_Salvador Salvador,a republic on the Pacific coast of Central America
+5391,El_Salvadoran_monetary_unit,monetary unit in El Salvador
+5392,Elaeagnaceae family_Elaeagnaceae oleaster_family,shrubs or small trees often armed
+5393,Elaeagnus genus_Elaeagnus,oleaster
+5394,Elaeis genus_Elaeis,oil palms
+5395,Elaeocarpaceae family_Elaeocarpaceae elaeocarpus_family,genus of trees and shrubs widely distributed in warm regions some yielding useful timber; in some classifications included in the family Santalaceae
+5396,Elaeocarpus genus_Elaeocarpus,type genus of the family Elaeocarpaceae
+5397,Elagatis genus_Elagatis,a genus of Carangidae
+5398,Elam Susiana,an ancient country in southwestern Asia to the east of the Tigris River (in what is modern Iran); was known for its warlike people
+5399,Elamite,a member of an ancient warlike people living in Elam east of Babylonia as early as 3000 BC
+5400,Elamitic Elamite Susian,an extinct ancient language of unknown affinities; spoken by the Elamites
+5401,Elanoides genus_Elanoides,a genus of kites
+5402,Elanus genus_Elanus,a genus of small kites of both Old and New Worlds
+5403,Elaphe genus_Elaphe,North American rat snakes
+5404,Elaphurus genus_Elaphurus,a genus of Cervidae
+5405,Elapidae family_Elapidae,cobras; kraits; mambas; coral snakes; Australian taipan and tiger snakes
+5406,Elasmobranchii subclass_Elasmobranchii Selachii subclass_Selachii,sharks; rays; dogfishes; skates
+5407,Elastoplast,an elastic adhesive bandage for covering cuts or wounds
+5408,Elateridae family_Elateridae,click beetles and certain fireflies
+5409,Elbe Elbe_River,a river in central Europe that arises in northwestern Czechoslovakia and flows northward through Germany to empty into the North Sea
+5410,Eleanor_of_Aquitaine,queen of France as the wife of Louis VII; that marriage was annulled in 1152 and she then married Henry II and became Queen of England (1122-1204)
+5411,Elector,any of the German princes who were entitled to vote in the election of new emperor of the Holy Roman Empire
+5412,Electra,(Greek mythology) the daughter of Agamemnon and Clytemnestra; persuaded her brother (Orestes) to avenge Agamemnon's death by helping her to kill Clytemnestra and her lover (Aegisthus)
+5413,Electra_complex,a complex of females; sexual attraction to the father
+5414,Electrophoridae family_Electrophoridae,small family comprising the electric eels
+5415,Electrophorus genus_Electrophorus,type genus of the family Electrophoridae; electric eels
+5416,Eleocharis genus_Eleocharis,sedges having dense spikes of flowers and leaves reduced to basal sheaths
+5417,Eleotridae family_Eleotridae,sleepers
+5418,Elephantidae family_Elephantidae,elephants
+5419,Elephantopus genus_Elephantopus,perennial American herb
+5420,Elephas genus_Elephas,type genus of the family Elephantidae
+5421,Elettaria genus_Elettaria,cardamom
+5422,Eleusine genus_Eleusine,annual and perennial grasses of savannas and upland grasslands
+5423,Eleutherodactylus genus_Eleutherodactylus,completely terrestrial robber frogs
+5424,Elgar Sir_Edward_Elgar Sir_Edward_William_Elgar,British composer of choral and orchestral works including two symphonies as well as songs and chamber music and music for brass band (1857-1934)
+5425,Elgin_Marbles,a collection of classical Greek marble sculptures and fragments of architecture created by Phidias; chiefly from the Parthenon in Athens
+5426,Elijah,a Hebrew prophet in the Old Testament who opposed the worship of idols; he was persecuted for rebuking Ahab and Jezebel (king and queen of Israel); he was taken up to heaven in a chariot of fire (circa 9th century BC)
+5427,Eliomys genus_Eliomys,lerots
+5428,Eliot George_Eliot Mary_Ann_Evans,British writer of novels characterized by realistic analysis of provincial Victorian society (1819-1880)
+5429,Eliot T._S._Eliot Thomas_Stearns_Eliot,British poet (born in the United States) who won the Nobel prize for literature; his plays are outstanding examples of modern verse drama (1888-1965)
+5430,Elizabeth Elizabeth_I,Queen of England from 1558 to 1603; daughter of Henry VIII and Anne Boleyn; she succeeded Mary I (who was a Catholic) and restored Protestantism to England; during her reign Mary Queen of Scots was executed and the Spanish Armada was defeated; her reign was marked by prosperity and literary genius (1533-1603)
+5431,Elizabeth Elizabeth_II,daughter of George VI who became the Queen of England and Northern Ireland in 1952 on the death of her father (1926-); "Elizabeth II is the head of state in Great Britain"
+5432,Elizabeth_River,a short river in southeastern Virginia flowing between Norfolk and Portsmouth into Hampton Roads
+5433,Elizabethan,a person who lived during the reign of Elizabeth I; "William Shakespeare was an Elizabethan"
+5434,Elizabethan_age,a period in British history during the reign of Elizabeth I in the 16th century; an age marked by literary achievement and domestic prosperity
+5435,Elli,(Norse mythology) goddess of old age who defeated Thor in a wrestling match
+5436,Ellington Duke_Ellington Edward_Kennedy_Ellington,United States jazz composer and piano player and bandleader (1899-1974)
+5437,Elliott's_goldenrod,a variety of goldenrod
+5438,Ellis_Island,an island in New York Bay that was formerly the principal immigration station for the United States; "some twelve millions immigrants passed through Ellis Island"
+5439,Ellison Ralph_Ellison Ralph_Waldo_Ellison,United States novelist who wrote about a young Black man and his struggles in American society (1914-1994)
+5440,Ellsworth Oliver_Ellsworth,United States jurist and the third chief justice of the United States Supreme Court (1745-1807)
+5441,Elmont,a town on Long Island in New York; site of Belmont Park
+5442,Elodea genus_Elodea pondweed ditchmoss,submerged freshwater perennials
+5443,Elopidae family_Elopidae,tarpons and ladyfishes
+5444,Elops genus_Elops,type genus of the Elopidae: tenpounder
+5445,Elul Ellul,the twelfth month of the civil year; the sixth month of the ecclesiastical year in the Jewish calendar (in August and September)
+5446,Elymus genus_Elymus,tall tufted perennial grasses (such as lyme grass or wild rye)
+5447,Elysium,a place or condition of ideal happiness
+5448,Elysium Elysian_Fields,(Greek mythology) the abode of the blessed after death
+5449,Ember_Day,a day set aside for fasting and prayer
+5450,Emberiza genus_Emberiza,Old World buntings
+5451,Emberizidae subfamily_Emberizidae subfamily_Emberizinae,buntings and some New World sparrows
+5452,Embioptera order_Embioptera Embiodea order_Embiodea,web spinners
+5453,Embiotocidae family_Embiotocidae,viviparous percoid fishes comprising the surf fishes
+5454,Embothrium genus_Embothrium,small genus of South American evergreen shrubs or small trees with long willowy branches and flowers in flamboyant terminal clusters
+5455,Emergency_Alert_System EAS,a federal warning system that is activated by FEMA; enables the President to take over the United States airwaves to warn the whole country of major catastrophic events
+5456,Emerson Ralph_Waldo_Emerson,United States writer and leading exponent of transcendentalism (1803-1882)
+5457,Emetrol,trade name for an antiemetic drug that has a mint flavor
+5458,Emile,the boy whose upbringing was described by Jean-Jacques Rousseau
+5459,Emilia genus_Emilia,tropical African herbs
+5460,Emilia-Romagna,a region of north central Italy on the Adriatic
+5461,Emmanthe genus_Emmanthe,one species: yellow bells
+5462,Emmenthal Emmental Emmenthaler Emmentaler,Swiss cheese with large holes
+5463,Emmy,an annual award by the Academy of Television Arts and Sciences for outstanding achievements in television
+5464,Empedocles,Greek philosopher who taught that all matter is composed of particles of fire and water and air and earth (fifth century BC)
+5465,Empetraceae family_Empetraceae crowberry_family,heathlike shrubs
+5466,Empetrum genus_Empetrum,crowberries
+5467,Empire,an eating apple that somewhat resembles a McIntosh; used as both an eating and a cooking apple
+5468,Empire_State_Building,a skyscraper built in New York City in 1931; 1250 feet tall
+5469,Emydidae family_Emydidae,box and water turtles
+5470,Encelia genus_Encelia,genus of shrubs of southwestern United States and Mexico: brittlebush
+5471,Enceliopsis genus_Enceliopsis,small genus of xerophytic herbs of southwestern United States
+5472,Encyclia genus_Encyclia,large genus of epiphytic and lithophytic orchids of tropical and subtropical Americas and West Indies; formerly included in genus Epidendrum
+5473,Endamoeba genus_Endamoeba,the type genus of the family Endamoebidae
+5474,Endamoeba_histolytica,the parasitic ameba that causes amebic dysentery in human beings
+5475,Endamoebidae family_Endamoebidae,a large family of endoparasitic amebas that invade the digestive tract
+5476,Endecott Endicott John_Endecott John_Endicott,born in England; in 1629 he became the founder of the Massachusetts Bay Colony (1588-1665)
+5477,Enderby_Land,a region of Antarctica between Queen Maud Land and Wilkes Land; claimed by Australia
+5478,Endomycetales order_Endomycetales,fungi having a zygote or a single cell developing directly into an ascus
+5479,Enesco Georges_Enesco George_Enescu,Romanian violinist and composer (1881-1955)
+5480,Enets Entsi Entsy Yenisei Yenisei-Samoyed Yeniseian,the Uralic language spoken by the Yeniseian
+5481,Engelmann_spruce Engelmann's_spruce Picea_engelmannii,tall spruce of Rocky Mountains and British Columbia with blue-green needles and acutely conic crown; wood used for rough lumber and boxes
+5482,Engels Friedrich_Engels,socialist who wrote the Communist Manifesto with Karl Marx in 1848 (1820-1895)
+5483,England,a division of the United Kingdom
+5484,English,the discipline that studies the English language and literature
+5485,English English_language,an Indo-European language belonging to the West Germanic branch; the official language of Britain and the United States and most of the commonwealth countries
+5486,English English_people,the people of England
+5487,English side,(sports) the spin given to a ball by striking it on one side or releasing it with a sharp twist
+5488,English_Channel,an arm of the Atlantic Ocean that forms a channel between France and Britain
+5489,English_Civil_War,civil war in England between the Parliamentarians and the Royalists under Charles I; 1644-1648
+5490,English_Revolution Glorious_Revolution Bloodless_Revolution,the revolution against James II; there was little armed resistance to William and Mary in England although battles were fought in Scotland and Ireland (1688-1689)
+5491,English_concertina,a concertina developed in England
+5492,English_department department_of_English,the academic department responsible for teaching English and American literature
+5493,English_elm European_elm Ulmus_procera,broad spreading rough-leaved elm common throughout Europe and planted elsewhere
+5494,English_foxhound,an English breed slightly larger than the American foxhounds originally used to hunt in packs
+5495,English_hawthorn Crataegus_monogyna,European hawthorn having deeply cleft leaves and bright red fruits; widely cultivated in many varieties and often grown as impenetrable hedges; established as an escape in eastern North America
+5496,English_horn cor_anglais,a double-reed woodwind instrument similar to an oboe but lower in pitch
+5497,English_iris Iris_xiphioides,bulbous iris native to the Pyrenees; widely cultivated for its large delicate flowers in various colors except yellow
+5498,English_lady_crab Portunus_puber,crab of the English coasts
+5499,English_lavender Lavandula_angustifolia Lavandula_officinalis,aromatic Mediterranean shrub widely cultivated for its lilac flowers which are dried and used in sachets
+5500,English_muffin,round, raised muffin cooked on a griddle; usually split and toasted before being eaten
+5501,English_person,a native or inhabitant of England
+5502,English_plantain narrow-leaved_plantain ribgrass ribwort ripple-grass buckthorn Plantago_lanceolata,an Old World plantain with long narrow ribbed leaves widely established in temperate regions
+5503,English_primrose Primula_vulgaris,plant of western and southern Europe widely cultivated for its pale yellow flowers
+5504,English_saddle English_cavalry_saddle,a saddle having a steel cantle and pommel and no horn
+5505,English_setter,an English breed having a plumed tail and a soft silky coat that is chiefly white
+5506,English_sole lemon_sole Parophrys_vitulus,popular pale brown food flatfish of the Pacific coast of North America
+5507,English_sparrow house_sparrow Passer_domesticus,small hardy brown-and-grey bird native to Europe
+5508,English_springer English_springer_spaniel,a breed having typically a black-and-white coat
+5509,English_teacher English_professor,someone who teaches English
+5510,English_toy_spaniel,British breed having a long silky coat and rounded head with a short upturned muzzle
+5511,English_walnut,nut with a wrinkled two-lobed seed and hard but relatively thin shell; widely used in cooking
+5512,English_walnut English_walnut_tree Circassian_walnut Persian_walnut Juglans_regia,Eurasian walnut valued for its large edible nut and its hard richly figured wood; widely cultivated
+5513,Englishman,a man who is a native or inhabitant of England
+5514,Englishwoman,a woman who is a native or inhabitant of England
+5515,Engraulidae family_Engraulidae,anchovies
+5516,Engraulis genus_Engraulis,type genus of the family Engraulidae
+5517,Enhydra genus_Enhydra,sea otters
+5518,Enid,a town in north central Oklahoma
+5519,Eniwetok,an atoll in the Marshall Islands; site of an amphibious assault in World War II; later used temporarily by the United States to test atomic bombs
+5520,Eniwetok,World War II (February 1944); American infantry landed and captured a Japanese stronghold
+5521,Enki,water god and god of wisdom; counterpart of the Akkadian Ea
+5522,Enkidu,legendary friend of Gilgamish
+5523,Enlightenment Age_of_Reason,a movement in Europe from about 1650 until 1800 that advocated the use of reason and individualism instead of tradition and established doctrine; "the Enlightenment brought about many humanitarian reforms"
+5524,Enlil En-lil,god of the air and king of the Sumerian gods
+5525,Enovid,trade name for an oral contraceptive containing mestranol and norethynodrel
+5526,Ensete genus_Ensete,Old World tropical herbs: Abyssinian bananas
+5527,Ensis genus_Ensis,razor clams
+5528,Entandrophragma genus_Entandrophragma,cedar mahogany trees
+5529,Entebbe,a town in southern Uganda on Lake Victoria; site of an international airport (where in 1976 Israeli commandos rescued hostages held aboard a plane by Palestinian hijackers)
+5530,Entelea genus_Entelea,a genus of evergreen shrub that grows in New Zealand
+5531,Enterobacteriaceae family_Enterobacteriaceae,a large family of Gram-negative rod-shaped bacteria of the order Eubacteriales
+5532,Enterobius genus_Enterobius,pinworms
+5533,Enterolobium genus_Enterolobium,small genus of tropical American timber trees closely allied to genus Albizia
+5534,EntleBucher,the smallest of the Sennenhunde
+5535,Entoloma genus_Entoloma,agarics with pink spores but lacking both volva and annulus (includes some that are poisonous)
+5536,Entoloma_aprile,an agaric with a dark brown conical cap; fruits in early spring
+5537,Entoloma_lividum Entoloma_sinuatum,a deadly poisonous agaric; a large cap that is first white (livid or lead-colored) and then turns yellowish or tan
+5538,Entolomataceae family_Entolomataceae,a family of fungi belonging to the order Agaricales
+5539,Entomophthora genus_Entomophthora,type genus of the Entomophthoraceae; fungi parasitic on insects
+5540,Entomophthoraceae family_Entomophthoraceae,mostly parasitic lower fungi that typically develop in the bodies of insects
+5541,Entomophthorales order_Entomophthorales,coextensive with the family Entomophthoraceae
+5542,Entomostraca subclass_Entomostraca,in some older classifications includes the Branchiopoda and Copepoda and Ostracoda and Cirripedia; no longer in technical use
+5543,Entoprocta phylum_Entoprocta Endoprocta,sometimes considered a subphylum of Bryozoa
+5544,Environmental_Protection_Agency EPA E.P.A.,an independent federal agency established to coordinate programs aimed at reducing pollution and protecting the environment
+5545,Eocene Eocene_epoch,from 58 million to 40 million years ago; presence of modern mammals
+5546,Eolithic_Age Eolithic,the earliest part of the Stone Age marked by the earliest signs of human culture
+5547,Eos,(Greek mythology) the winged goddess of the dawn in ancient mythology; daughter of Hyperion; identified with Roman Aurora
+5548,Epacridaceae family_Epacridaceae epacris_family,Australasian shrubs or small trees
+5549,Ephedraceae family_Ephedraceae,ephedras: in some classifications included in the Gnetaceae
+5550,Ephemeridae family_Ephemeridae,mayflies
+5551,Ephemeroptera order_Ephemeroptera Ephemerida order_Ephemerida,mayflies
+5552,Ephesian,a resident of the ancient Greek city of Ephesus
+5553,Ephestia genus_Ephestia,small moths whose larvae spin silken tunnels and feed on stored food products
+5554,Ephesus,an ancient Greek city on the western shore of Asia Minor in what is now Turkey; site of the Temple of Artemis; was a major trading center and played an important role in early Christianity
+5555,Ephesus Council_of_Ephesus,the third ecumenical council in 431 which declared Mary as mother of God and condemned Pelagius
+5556,Ephippidae family_Ephippidae,small family comprising the spadefishes
+5557,Ephippiorhynchus genus_Ephippiorhynchus,saddlebills
+5558,Epictetus,Greek philosopher who was a Stoic (circa 50-130)
+5559,Epicurus,Greek philosopher who believed that the world is a random combination of atoms and that pleasure is the highest good (341-270 BC)
+5560,Epidendrum genus_Epidendrum,large and variable genus of terrestrial or epiphytic or lithophytic orchids of tropical and subtropical Americas; some native to United States
+5561,Epigaea genus_Epigaea,small creeping evergreen shrubs: trailing arbutus
+5562,Epilachna genus_Epilachna,genus of ladybugs native to Mexico and Central America; both larvae and adults feed on plants
+5563,Epilobium genus_Epilobium,large widely distributed genus of herbs and subshrubs of especially western North America and Arctic areas
+5564,Epimedium genus_Epimedium,herbaceous perennials of Mediterranean to India and eastern Asia
+5565,Epimetheus,(Greek mythology) brother of Prometheus; despite Prometheus's warning against gifts from Zeus he accepted Pandora as his wife
+5566,Epinephelus genus_Epinephelus,genus of groupers or sea bass
+5567,Epipactis genus_Epipactis,genus of hardy orchids with leafy-bracted racemes of greenish or purplish irregular flowers
+5568,Epipactis_helleborine,European orchid with spikes of green and pinkish or purplish flowers
+5569,Epiphany Epiphany_of_Our_Lord Twelfth_day Three_Kings'_Day January_6,twelve days after Christmas; celebrates the visit of the three wise men to the infant Jesus
+5570,Epipremnum genus_Epipremnum,small genus of evergreen lianas of southeastern Asia to western Pacific areas
+5571,Epirus,an ancient area on the Ionian Sea that flourished as a kingdom in the 3rd century BC; located in northwestern Greece and southern Albania
+5572,Episcopal_Church Episcopal_Church_of_Scotland,an autonomous branch of the Anglican Communion in Scotland
+5573,Episcopal_Church Protestant_Episcopal_Church,United States church that is in communication with the see of Canterbury
+5574,Episcopalian,a member of the Episcopal church
+5575,Episcopalianism,the theological doctrine of church government by bishops
+5576,Epistle,a book of the New Testament written in the form of a letter from an Apostle
+5577,Epistle_of_James James,a New Testament book attributed to Saint James the Apostle
+5578,Epistle_of_Jude Jude,a New Testament book attributed to Saint Jude
+5579,Epistle_of_Paul_the_Apostle_to_Philemon Epistle_to_Philemon Philemon,a New Testament book containing an epistle from Saint Paul to Philemon asking Philemon to forgive the slave for escaping
+5580,Epistle_of_Paul_the_Apostle_to_Titus Epistle_to_Titus Titus,a New Testament book containing Saint Paul's epistle to Titus; contains advice on pastoral matters
+5581,Epistle_of_Paul_the_Apostle_to_the_Colossians Epistle_to_the_Colossians Colossians,a New Testament book containing an epistle from Saint Paul to the Colossians in ancient Phrygia
+5582,Epistle_of_Paul_the_Apostle_to_the_Ephesians Epistle_to_the_Ephesians Ephesians,a New Testament book containing the epistle from Saint Paul to the Ephesians which explains the divine plan for the world and the consummation of this in Christ
+5583,Epistle_of_Paul_the_Apostle_to_the_Galatians Epistle_to_the_Galatians Galatians,a New Testament book containing the epistle from Saint Paul to the Galatians
+5584,Epistle_of_Paul_the_Apostle_to_the_Philippians Epistle_to_the_Philippians Philippians,a New Testament book containing an epistle from Saint Paul to the church at Philippi in Macedonia
+5585,Epistle_of_Paul_the_Apostle_to_the_Romans Epistle_to_the_Romans Romans,a New Testament book containing an exposition of the doctrines of Saint Paul; written in AD 58
+5586,Epistle_to_the_Hebrews Hebrews,a New Testament book traditionally included among the epistle of Saint Paul but now generally considered not to have been written by him
+5587,Epona,(possibly Roman mythology) Celtic goddess of horses and mules and asses
+5588,Epsilon_Aurigae,the largest known star
+5589,Epsom_salts,(used with a singular noun) hydrated magnesium sulfate used as a laxative
+5590,Epsom_salts bitter_salts,hydrated magnesium sulfate that is taken orally to treat heartburn and constipation and injected to prevent seizures
+5591,Epstein Jacob_Epstein Sir_Jacob_Epstein,British sculptor (born in the United States) noted for busts and large controversial works (1880-1959)
+5592,Epstein-Barr_virus EBV,the herpes virus that causes infectious mononucleosis; associated with specific cancers in Africa and China
+5593,Eptesicus genus_Eptesicus,a genus of Vespertilionidae
+5594,Equatorial_Guinea Republic_of_Equatorial_Guinea Spanish_Guinea,a country of west central Africa (including islands in the Gulf of Guinea); became independent from Spain in 1968
+5595,Equetus genus_Equetus,drumfish
+5596,Equidae family_Equidae,horses; asses; zebras; extinct animals
+5597,Equisetaceae family_Equisetaceae horsetail_family,sole surviving family of the Equisetales: fern allies
+5598,Equisetales order_Equisetales,lower tracheophytes in existence since the Devonian
+5599,Equisetum genus_Equisetum,horsetails; coextensive with the family Equisetaceae
+5600,Equus genus_Equus,type genus of the Equidae: only surviving genus of the family Equidae
+5601,Eragrostis genus_Eragrostis,annual or perennial grasses of tropics and subtropics
+5602,Eranthis genus_Eranthis,winter aconite
+5603,Erasmus Desiderius_Erasmus Gerhard_Gerhards Geert_Geerts,Dutch humanist and theologian who was the leading Renaissance scholar of northern Europe; although his criticisms of the Roman Catholic Church led to the Reformation, he opposed violence and condemned Martin Luther (1466-1536)
+5604,Erastianism Byzantinism Caesaropapism,the doctrine that the state is supreme over the church in ecclesiastical matters
+5605,Erato,(Greek mythology) the Muse of lyric and love poetry
+5606,Eratosthenes,Greek mathematician and astronomer who estimated the circumference of the earth and the distances to the Moon and sun (276-194 BC)
+5607,Erb's_palsy Erb-Duchenne_paralysis,paralysis of the arm resulting from injury to the brachial plexus (usually during childbirth)
+5608,Ercilla genus_Ercilla,a genus of evergreen climbers
+5609,Erebus,(Greek mythology) Greek god of darkness who dwelt in the underworld; son of Chaos; brother of Nox; father of Aether and Day
+5610,Ereshkigal Eresh-kigal Ereshkigel,goddess of death and consort of Nergal
+5611,Erethizon genus_Erethizon,a genus of Erethizontidae
+5612,Erethizontidae family_Erethizontidae,New World arboreal porcupines
+5613,Eretmochelys genus_Eretmochelys,hawksbills
+5614,Erewhon,a satirical novel written by Samuel Butler (1872) describing a fictitious land
+5615,Erianthus genus_Erianthus,genus of reedlike grasses having spikes crowded in a panicle covered with long silky hairs
+5616,Ericaceae family_Ericaceae heath_family,heathers
+5617,Ericales order_Ericales,Ericaceae; Clethraceae; Diapensiaceae; Epacridaceae; Lennoaceae; Pyrolaceae; Monotropaceae
+5618,Eridanus,a constellation in the southern hemisphere near Fornax and Cetus
+5619,Erie,a member of an Iroquoian people formerly living on the south shore of Lake Erie in northern Ohio and northwest Pennsylvania and western New York
+5620,Erie,a port city on Lake Erie in northwestern Pennsylvania
+5621,Erie_Canal,an artificial waterway connecting the Hudson river at Albany with Lake Erie at Buffalo; built in the 19th century; now part of the New York State Barge Canal
+5622,Erigeron genus_Erigeron,cosmopolitan genus of usually perennial herbs with flowers that resemble asters; leaves occasionally (especially formerly) used medicinally
+5623,Erignathus genus_Erignathus,bearded seals
+5624,Erin,an early name of Ireland that is now used in poetry
+5625,Erinaceidae family_Erinaceidae,true hedgehogs
+5626,Erinaceus genus_Erinaceus,type genus of the family Erinaceidae: hedgehogs
+5627,Eriobotrya genus_Eriobotrya,Asiatic evergreen fruit trees
+5628,Eriocaulaceae family_Eriocaulaceae pipewort_family,chiefly tropical aquatic or bog herbs: pipeworts
+5629,Eriocaulon genus_Eriocaulon,type genus of the Eriocaulaceae: rushlike aquatic or marginal perennials usually found in shallow waters of acid lakes and pools and bogs
+5630,Eriodictyon genus_Eriodictyon,small genus of evergreen shrubs of southwestern United States and Mexico
+5631,Eriophorum genus_Eriophorum,cotton grass
+5632,Eriophyllum genus_Eriophyllum,genus of hairy herbs and shrubs of western North America
+5633,Eriosoma genus_Eriosoma,woolly aphids
+5634,Eris,(Greek mythology) goddess of discord; sister of Ares
+5635,Erithacus genus_Erithacus,Old World thrushes
+5636,Eritrea State_of_Eritrea,an African country to the north of Ethiopia on the Red Sea; achieved independence from Ethiopia in 1993
+5637,Eritrean,a native or inhabitant of Eritrea
+5638,Erlang,a unit of traffic intensity in a telephone system
+5639,Erlenmeyer Richard_August_Carl_Emil_Erlenmeyer,German chemist (1825-1909)
+5640,Erlenmeyer_flask,a conical flask with a wide base and narrow neck
+5641,Ernst Max_Ernst,painter (born in Germany, resident of France and the United States) who was a cofounder of dadaism; developed the technique of collage (1891-1976)
+5642,Erodium genus_Erodium,geraniums of Europe and South America and Australia especially mountainous regions
+5643,Erolia genus_Erolia,a genus of Scolopacidae
+5644,Eros,(Greek mythology) god of love; son of Aphrodite; identified with Roman Cupid
+5645,Eruca genus_Eruca,annual to perennial herbs of the Mediterranean region
+5646,Erving Julius_Erving Julius_Winfield_Erving Dr._J,United States basketball forward (born in 1950)
+5647,Eryngium genus_Eryngium,large genus of decorative plants with thistlelike flower heads; cosmopolitan in distribution
+5648,Erysimum genus_Erysimum,large genus of annual or perennial herbs some grown for their flowers and some for their attractive evergreen leaves; Old World and North America
+5649,Erysiphaceae family_Erysiphaceae,family of fungi parasitic mostly on leaves; includes powdery mildews
+5650,Erysiphales order_Erysiphales,saprophytic and parasitic fungi that live on plants
+5651,Erysiphe genus_Erysiphe,genus of powdery mildews
+5652,Erythrocebus genus_Erythrocebus,patas
+5653,Erythronium genus_Erythronium,perennial bulbous herbs most of northern United States: dogtooth violet; adder's tongue; trout lily; fawn lily
+5654,Erythroxylaceae family_Erythroxylaceae,a family of plants of order Geraniales; have drupaceous fruit
+5655,Erythroxylon genus_Erythroxylon Erythroxylum genus_Erythroxylum,a large genus of South American shrubs and small trees of the family Erythroxylaceae
+5656,Erythroxylon_coca coca coca_plant,a South American shrub whose leaves are chewed by natives of the Andes; a source of cocaine
+5657,Erythroxylon_truxiuense,a South American shrub whose leaves are a source of cocaine
+5658,Esaki Leo_Esaki,physicist honored for advances in solid state electronics (born in Japan in 1925)
+5659,Esau,(Old Testament) the eldest son of Isaac who would have inherited the covenant that God made with Abraham and that Abraham passed on to Isaac; he traded his birthright to his twin brother Jacob for a mess of pottage
+5660,Escherichia_coli E._coli,a species of bacterium normally present in intestinal tract of humans and other animals; sometimes pathogenic; can be a threat to food safety
+5661,Eschrichtiidae family_Eschrichtiidae,comprising only the grey whales
+5662,Eschrichtius genus_Eschrichtius,type and sole genus of the Eschrichtiidae
+5663,Eschscholtzia genus_Eschscholtzia,showy herbs of western North America
+5664,Eskimo Esquimau,the language spoken by the Eskimo
+5665,Eskimo Esquimau Inuit,a member of a people inhabiting the Arctic (northern Canada or Greenland or Alaska or eastern Siberia); the Algonquians called them Eskimo (`eaters of raw flesh') but they call themselves the Inuit (`the people')
+5666,Eskimo-Aleut Eskimo-Aleut_language,the family of languages that includes Eskimo and Aleut
+5667,Eskimo_curlew Numenius_borealis,New World curlew that breeds in northern North America
+5668,Eskimo_dog husky,breed of heavy-coated Arctic sled dog
+5669,Esocidae family_Esocidae,pikes; pickerels; muskellunges
+5670,Esox genus_Esox,type and only genus of the family Esocidae
+5671,Espagnole sauce_Espagnole,brown sauce with tomatoes and a caramelized mixture of minced carrots and onions and celery seasoned with Madeira
+5672,Esperantido,an artificial language based on Esperanto and Ido
+5673,Esperanto,an artificial language based as far as possible on words common to all the European languages
+5674,Espoo,a city in southern Finland
+5675,Esquire Esq,a title of respect for a member of the English gentry ranking just below a knight; placed after the name
+5676,Esselen,a member of a North American Indian people living on the California coast near Monterey
+5677,Esselen,the Hokan language spoken by the Esselen
+5678,Essen,a city in western Germany; industrial center of the Ruhr
+5679,Essene,a member of an ascetic Jewish sect around the time of Jesus
+5680,Essex,a county in southeastern England on the North Sea and the Thames estuary
+5681,Estates_General,assembly of the estates of all France; last meeting in 1789
+5682,Esther,(Old Testament) a beautiful Jewess chosen by the king of Persia to be his queen; she stopped a plot to massacre all the Jews in Persia (an event celebrated by Jews as the feast of Purim)
+5683,Esther Book_of_Esther,an Old Testament book telling of a beautiful Jewess who became queen of Persia and saved her people from massacre
+5684,Estonia Esthonia Republic_of_Estonia,a republic in northeastern Europe on the Baltic Sea
+5685,Estonian Esthonian,the official language of Estonia; belongs to the Baltic-Finnic family of languages
+5686,Estonian_monetary_unit,monetary unit in Estonia
+5687,Estrilda genus_Estrilda,avadavats
+5688,Ethelbert,Anglo-Saxon king of Kent who was converted to Christianity by Saint Augustine; codified English law (552-616)
+5689,Ethelred Ethelred_I,king of Wessex and Kent and elder brother of Alfred; Alfred joined Ethelred's battle against the invading Danes and succeeded him on his death (died in 871)
+5690,Ethelred Ethelred_II Ethelred_the_Unready,king of the English who succeeded to the throne after his half-brother Edward the Martyr was murdered; he struggled unsuccessfully against the invading Danes (969-1016)
+5691,Ethiopia Federal_Democratic_Republic_of_Ethiopia Yaltopya Abyssinia,Ethiopia is a republic in northeastern Africa on the Red Sea; formerly called Abyssinia
+5692,Ethiopian,a native or inhabitant of Ethiopia
+5693,Ethiopian_monetary_unit,monetary unit in Ethiopia
+5694,Etna Mount_Etna Mt_Etna,an inactive volcano in Sicily; last erupted in 1961; the highest volcano in Europe (10,500 feet)
+5695,Eton_College,a public school for boys founded in 1440; located in Berkshire
+5696,Eton_collar,broad white collar worn over the lapels of a jacket
+5697,Eton_jacket,a jacket hanging to the waist and cut square at the bottom
+5698,Etonian,a student enrolled in (or graduated from) Eton College
+5699,Etropus genus_Etropus,a genus of Bothidae
+5700,Etruria,an ancient country in central Italy; assimilated by the Romans by about 200 BC
+5701,Etruscan,a native or inhabitant of ancient Etruria; the Etruscans influenced the Romans (who had suppressed them by about 200 BC)
+5702,Euarctos genus_Euarctos,American black bears; in some classifications not a separate genus from Ursus
+5703,Euascomycetes subclass_Euascomycetes,category not used in many classification systems
+5704,Eubacteriales order_Eubacteriales,one of two usually recognized orders of true bacteria; Gram-positive spherical or rod-shaped forms; some are motile; in some classifications considered an order of Schizomycetes
+5705,Eubryales order_Eubryales,mosses with perennial erect gametophores and stems with rows of leaves and drooping capsules
+5706,Eucarya genus_Eucarya Fusanus genus_Fusanus,quandong trees
+5707,Eucinostomus genus_Eucinostomus,a genus of Gerreidae
+5708,Euclid,Greek geometer (3rd century BC)
+5709,Euclid's_axiom Euclid's_postulate Euclidean_axiom,(mathematics) any of five axioms that are generally recognized as the basis for Euclidean geometry
+5710,Euclid's_fifth_axiom parallel_axiom,only one line can be drawn through a point parallel to another line
+5711,Euclid's_first_axiom,a straight line can be drawn between any two points
+5712,Euclid's_fourth_axiom,all right angles are equal
+5713,Euclid's_second_axiom,any terminated straight line can be projected indefinitely
+5714,Euclid's_third_axiom,a circle with any radius can be drawn around any point
+5715,Euclidean_space,a space in which Euclid's axioms and definitions apply; a metric space that is linear and finite-dimensional
+5716,Euderma genus_Euderma,a genus of Vespertilionidae
+5717,Eudyptes genus_Eudyptes,rock hoppers
+5718,Eugene,a city in western Oregon on the Willamette River; site of a university
+5719,Eugene Prince_Eugene_of_Savoy,Austrian general in the service of the Holy Roman Empire during the War of the Spanish Succession (1663-1736)
+5720,Eugenia genus_Eugenia,tropical trees and shrubs with aromatic leaves and often valuable hard wood
+5721,Euglenaceae family_Euglenaceae,considered green algae
+5722,Euglenophyceae class_Euglenophyceae,coextensive with the division Euglenophyta
+5723,Euglenophyta division_Euglenophyta,free-swimming flagellate algae
+5724,Euler Leonhard_Euler,Swiss mathematician (1707-1783)
+5725,Eumeces genus_Eumeces,New World skinks
+5726,Eumenes genus_Eumenes,mason wasps
+5727,Eumetopias genus_Eumetopias,sea lions
+5728,Eumops genus_Eumops,mastiff bats
+5729,Eumycetes class_Eumycetes,category used in some classifications: coextensive with division Eumycota
+5730,Eumycota division_Eumycota,true fungi; eukaryotic heterotrophic walled organisms; distinguished from Myxomycota (funguslike slime molds): comprises subdivisions Mastigomycotina; Zygomycotina; Ascomycotina; Basidiomycotina; Deuteromycotina (imperfect fungi)
+5731,Eunectes genus_Eunectes,anacondas
+5732,Euonymus genus_Euonymus,widely distributed chiefly evergreen shrubs or small trees or vines
+5733,Euopean_hoopoe Upupa_epops,pinkish-brown hoopoe with black-and-white wings
+5734,Eupatorium genus_Eupatorium,large genus of chiefly tropical herbs having heads of white or purplish flowers
+5735,Euphagus genus_Euphagus,a genus of Icteridae
+5736,Euphausia_pacifica,food for jellyfish
+5737,Euphausiacea order_Euphausiacea,small commonly luminescent crustaceans; important element of marine plankton: krill
+5738,Euphorbia genus_Euphorbia,type genus of the Euphorbiaceae: very large genus of diverse plants all having milky juice
+5739,Euphorbiaceae family_Euphorbiaceae spurge_family,a family of plants of order Geraniales
+5740,Euphractus genus_Euphractus,a genus of Dasypodidae
+5741,Euphrates Euphrates_River,a river in southwestern Asia; flows into the Persian Gulf; was important in the development of several great civilizations in ancient Mesopotamia
+5742,Euphrosyne,(Greek mythology) one of the three Graces
+5743,Euplectella genus_Euplectella,a genus of Hyalospongiae
+5744,Euproctis genus_Euproctis,a genus of Lymantriidae
+5745,Eurafrican,a person of mixed European and African descent
+5746,Eurasia,the land mass formed by the continents of Europe and Asia
+5747,Eurasian,a person of mixed European and Asian descent
+5748,Eurasian_badger Meles_meles,a variety of badger native to Europe and Asia
+5749,Eurasian_green_toad Bufo_viridis,Eurasian toad with variable chiefly green coloring
+5750,Eurasian_hamster Cricetus_cricetus,a variety of hamster common to Europe and Asia
+5751,Eurasian_kingfisher Alcedo_atthis,small kingfisher with greenish-blue and orange plumage
+5752,Eurasian_otter Lutra_lutra,otter found in Europe and Asia
+5753,Eurasian_woodcock Scolopax_rusticola,short-legged long-billed migratory Old World woodcock
+5754,Eureka,a town in northwest California on an arm of the Pacific Ocean
+5755,Euripides,one of the greatest tragic dramatists of ancient Greece (480-406 BC)
+5756,Eurobabble,the jargon of European community documents and regulations
+5757,Eurocentrism,belief in the preeminence of Europe and the Europeans
+5758,Eurocurrency,currency of the major financial and industrial countries held in those countries for the purpose of lending and borrowing
+5759,Eurodollar,a United States dollar deposited in a European bank and used as an international currency to finance trade
+5760,Euronithopoda suborder_Euronithopoda euronithopod Ornithopoda suborder_Ornithopoda,widespread group including duck-billed dinosaurs and their early relatives (hadrosaurs, trachodon and iguanodon)
+5761,Europa,the 4th largest of Jupiter's satellites; covered with a smooth shell of frozen water
+5762,Europan,an artificial language proposed as an auxiliary European language
+5763,Europe,the 2nd smallest continent (actually a vast peninsula of Eurasia); the British use `Europe' to refer to all of the continent except the British Isles
+5764,Europe,the nations of the European continent collectively; "the Marshall Plan helped Europe recover from World War II"
+5765,European,a native or inhabitant of Europe
+5766,European_Central_Bank,the central bank of those members of the European Union who share a common currency; "The European Central Bank is Europe's equivalent of the Federal Reserve"
+5767,European_Russia,the part of Russia that is part of Europe
+5768,European_Union EU European_Community EC European_Economic_Community EEC Common_Market Europe,an international organization of European countries formed after World War II to reduce trade barriers and increase cooperation among its members; "he tried to take Britain into the Europen Union"
+5769,European_ash common_European_ash Fraxinus_excelsior,tall ash of Europe to the Caucasus having leaves shiny dark-green above and pale downy beneath
+5770,European_beggar-ticks trifid_beggar-ticks trifid_bur_marigold Bidens_tripartita,bur marigold of temperate Eurasia
+5771,European_bittern Botaurus_stellaris,a kind of bittern
+5772,European_black_grouse heathfowl Lyrurus_tetrix,large northern European grouse that is black with a lyre-shaped tail
+5773,European_bog_asphodel Narthecium_ossifragum,of western Europe: Scandinavia to northern Spain and Portugal
+5774,European_bream Abramis_brama,European freshwater fish having a flattened body and silvery scales; of little value as food
+5775,European_catfish sheatfish Silurus_glanis,large elongated catfish of central and eastern Europe
+5776,European_chestnut sweet_chestnut Spanish_chestnut Castanea_sativa,wild or cultivated throughout southern Europe, northwestern Africa and southwestern Asia
+5777,European_country European_nation,any one of the countries occupying the European continent
+5778,European_cranberry small_cranberry Vaccinium_oxycoccus,small red-fruited trailing cranberry of Arctic and cool regions of the northern hemisphere
+5779,European_creeper Certhia_familiaris,common European brown-and-buff tree creeper with down-curved bill
+5780,European_cuckoo Cuculus_canorus,common cuckoo of Europe having a distinctive two-note call; lays eggs in the nests of other birds
+5781,European_curlew Numenius_arquata,common Eurasian curlew
+5782,European_dewberry Rubus_caesius,creeping European bramble bearing dewberries
+5783,European_dogtooth Erythronium_dens-canis,sturdy European dogtooth with rose to mauve flowers; cultivated in many varieties
+5784,European_fire_salamander Salamandra_salamandra,a kind of European salamander
+5785,European_flatfish Platichthys_flesus,important food fish of Europe
+5786,European_fly_honeysuckle European_honeysuckle Lonicera_xylosteum,cultivated Eurasian shrub with twin yellowish-white flowers and scarlet fruit
+5787,European_gallinule Porphyrio_porphyrio,purple gallinule of southern Europe
+5788,European_goatsucker European_nightjar Caprimulgus_europaeus,Old World goatsucker
+5789,European_hackberry Mediterranean_hackberry Celtis_australis,bright green deciduous shade tree of southern Europe
+5790,European_hare Lepus_europaeus,large hare introduced in North America; does not turn white in winter
+5791,European_hornbeam Carpinus_betulus,medium-sized Old World tree with smooth grey bark and leaves like beech that turn yellow-orange in autumn
+5792,European_house_cricket Acheta_domestica,lives in human dwellings; naturalized in parts of America
+5793,European_ladies'_tresses Spiranthes_spiralis,European orchid having shorter racemes of strongly spiraling snow-white flowers
+5794,European_larch Larix_decidua,tall European tree having a slender conic crown, flat needlelike leaves, and hairy cone scales
+5795,European_lemming Lemmus_lemmus,notable for mass migrations even into the sea where many drown
+5796,European_lobster,similar to but smaller than American lobsters
+5797,European_lobster Homarus_vulgaris,lobster of Atlantic coast of Europe
+5798,European_magpie Pica_pica,a common magpie of Eurasia
+5799,European_nuthatch Sitta_europaea,a kind of nuthatch
+5800,European_parsley_fern mountain_parsley_fern Cryptogramma_crispa,fern of Europe and Asia Minor having short slender rhizome and densely tufted bright green fronds resembling parsley
+5801,European_pasqueflower Pulsatilla_vulgaris Anemone_pulsatilla,European perennial having usually violet or white spring flowers
+5802,European_perch Perca_fluviatilis,a perch native to Europe
+5803,European_plan continental_plan,a hotel plan that provides a continental breakfast daily
+5804,European_rabbit Old_World_rabbit Oryctolagus_cuniculus,common greyish-brown burrowing animal native to southern Europe and northern Africa but introduced elsewhere; widely domesticated and developed in various colors and for various needs; young are born naked and helpless
+5805,European_red_elder red-berried_elder Sambucus_racemosa,Eurasian shrub
+5806,European_roller Coracias_garrulus,common European blue-and-green roller with a reddish-brown back
+5807,European_sandpiper Actitis_hypoleucos,a variety of sandpiper
+5808,European_sanicle Sanicula_Europaea,sanicle of Europe and Asia having white to pale pink flowers
+5809,European_sea_bream Pagellus_centrodontus,food fish of European coastal waters
+5810,European_shrike Lanius_excubitor,a common European butcherbird
+5811,European_silver_fir Christmas_tree Abies_alba,tall timber tree of central and southern Europe having a regular crown and grey bark
+5812,European_smelt sparling,common smelt of Europe
+5813,European_sole Solea_solea,highly valued as food
+5814,European_spider_crab king_crab Maja_squinado,a large spider crab of Europe
+5815,European_swift Apus_apus,common European bird with a shrieking call that nests chiefly about eaves of buildings or on cliffs
+5816,European_toad Bufo_bufo,common toad of Europe
+5817,European_tortoise Testudo_graeca,small land tortoise of southern Europe
+5818,European_turkey_oak turkey_oak Quercus_cerris,large deciduous tree of central and southern Europe and Asia Minor having lanceolate leaves with spiked lobes
+5819,European_water_ouzel Cinclus_aquaticus,a water ouzel of Europe
+5820,European_water_shrew Neomys_fodiens,widely distributed Old World water shrew
+5821,European_white_lily Nymphaea_alba,a water lily with white flowers
+5822,European_wildcat catamountain Felis_silvestris,bushy-tailed wildcat of Europe that resembles the domestic cat and is regarded as the ancestor of the domestic cat
+5823,European_wolf_spider tarantula Lycosa_tarentula,large southern European spider once thought to be the cause of tarantism (uncontrollable bodily movement)
+5824,European_wood_mouse Apodemus_sylvaticus,nocturnal yellowish-brown mouse inhabiting woods and fields and gardens
+5825,European_woolly_thistle Cirsium_eriophorum,woolly thistle of western and central Europe and Balkan Peninsula
+5826,Europeanization Europeanisation,assimilation into European culture
+5827,Europol European_Law_Enforcement_Organisation,police organization for the European Union; aims to improve effectiveness and cooperation among European police forces
+5828,Eurotiales order_Eurotiales Aspergillales order_Aspergillales,order of fungi having a closed ascocarp (cleistothecium) with the asci scattered rather than gathered in a hymenium
+5829,Eurotium genus_Eurotium,a genus of fungi belonging to the order Eurotiales
+5830,Euryale,(Greek mythology) one of the three Gorgons
+5831,Euryale genus_Euryale,basket stars
+5832,Euryalida subclass_Euryalida,basket stars
+5833,Eurydice,(Greek mythology) the wife of Orpheus
+5834,Eurylaimi suborder_Eurylaimi,broadbills
+5835,Eurylaimidae family_Eurylaimidae,coextensive with the suborder Eurylaimi
+5836,Eurypterida order_Eurypterida,extinct aquatic arthropods of the Paleozoic
+5837,Eusebius Eusebius_of_Caesarea,Christian bishop of Caesarea in Palestine; a church historian and a leading early Christian exegete (circa 270-340)
+5838,Eustachian_tube auditory_tube,either of the paired tubes connecting the middle ears to the nasopharynx; equalizes air pressure on the two sides of the eardrum
+5839,Eustachio Bartolommeo_Eustachio,Italian anatomist who was one of the fathers of modern anatomy; noted for descriptions of the ear and the heart (1520-1574)
+5840,Eustoma genus_Eustoma,small genus of herbs of warm regions of southern North America to northern South America
+5841,Eutamias genus_Eutamias,chipmunks of western America and Asia
+5842,Euterpe,(Greek mythology) the Muse of music (or the flute)
+5843,Euterpe genus_Euterpe,a monocotyledonous genus of graceful palm trees in tropical America
+5844,Eutheria subclass_Eutheria,all mammals except monotremes and marsupials
+5845,Euthynnus genus_Euthynnus,a genus of Scombridae
+5846,Evangelical_United_Brethren_Church,a Methodist denomination
+5847,Evangelical_and_Reformed_Church,a Protestant denomination of Calvinist faith
+5848,Evangelist,(when capitalized) any of the spiritual leaders who are assumed to be authors of the Gospels in the New Testament: Matthew, Mark, Luke, and John
+5849,Evans Arthur_Evans Sir_Arthur_John_Evans,British archaeologist who excavated the palace of Knossos in Crete to find what he called Minoan civilization (1851-1941)
+5850,Evans Herbert_McLean_Evans,United States anatomist who identified four pituitary hormones and discovered vitamin E (1882-1971)
+5851,Evansville,a city in southwestern Indiana on the Ohio River
+5852,Eve,(Old Testament) Adam's wife in Judeo-Christian mythology: the first woman and mother of the human race; God created Eve from Adam's rib and placed Adam and Eve in the Garden of Eden
+5853,Evening_Prayer evensong,(Anglican Church) a daily evening service with prayers prescribed in the Book of Common Prayer
+5854,Evenki Ewenki,a member of the people inhabiting an area of northern Mongolia and eastern Siberia
+5855,Everest Mount_Everest Mt._Everest,a mountain in the central Himalayas on the border of Tibet and Nepal; the highest mountain peak in the world (29,028 feet high)
+5856,Everglades,a large subtropical swamp in southern Florida that is noted for its wildlife
+5857,Everglades_National_Park,a national park in Florida containing an immense subtropical wilderness with mangrove swamps and rare birds and wild animals
+5858,Evernia genus_Evernia,lichens of the family Usneaceae having a pendulous or shrubby thallus
+5859,Evers Medgar_Evers Medgar_Wiley_Evers,United States civil rights worker in Mississippi; was killed by a sniper (1925-1963)
+5860,Evert Chris_Evert Chrissie_Evert Christine_Marie_Evert,United States tennis player who won women's singles titles in the United States and at Wimbledon (born in 1954)
+5861,Ewe,a member of a people living in southern Benin and Togo and southeastern Ghana
+5862,Ewe,a Kwa language spoken by the Ewe in Ghana and Togo and Benin
+5863,Ewing's_sarcoma Ewing's_tumor Ewing's_tumour endothelial_myeloma,malignant tumor in bone marrow (usually in the pelvis or in long bones)
+5864,Exacum genus_Exacum,genus of tropical Asiatic and African plants: especially Persian violets
+5865,Exaeretodon genus_Exaeretodon,a genus of reptiles of the division Cynodontia
+5866,Excalibur,the legendary sword of King Arthur
+5867,Excellency,a title used to address dignitaries (such as ambassadors or governors); usually preceded by `Your' or `His' or `Her'; "Your Excellency"
+5868,Exmoor,horned sheep of Devon; valued for mutton
+5869,Exmoor,stocky breed of pony with a fawn-colored nose
+5870,Exocet,a guided missile developed by the French government for use against ships
+5871,Exocoetidae family_Exocoetidae,flying fishes; closely related to the halfbeaks
+5872,Exocycloida order_Exocycloida,flat sea urchins
+5873,Exodus Book_of_Exodus,the second book of the Old Testament: tells of the departure of the Israelites out of slavery in Egypt led by Moses; God gave them the Ten Commandments and the rest of Mosaic law on Mount Sinai during the Exodus
+5874,Exopterygota subclass_Exopterygota Hemimetabola,subclass of insects characterized by gradual and usually incomplete metamorphosis
+5875,Eyck van_Eyck Jan_van_Eyck,Flemish painter who was a founder of the Flemish school of painting and who pioneered modern techniques of oil painting (1390-1441)
+5876,Eyeish,a member of the Caddo people of northeastern Texas
+5877,Eyre Lake_Eyre,a shallow salt lake in south central Australia about 35 feet below sea level; the largest lake in the country and the lowest point on the continent
+5878,Eyre_Peninsula,a peninsula of southern Australia
+5879,Eysenck Hans_Eysenck H._J._Eysenck Hans_Jurgen_Eysenck,a British psychologist (born in Germany) noted for his theories of intelligence and personality and for his strong criticism of Freudian psychoanalysis
+5880,Eysenck_Personality_Inventory EPI,a self-report personality inventory based on Hans Eysenck's factor analysis of personality which assumes three basic factors (the two most important being extraversion to introversion and neuroticism)
+5881,Ezekiel Ezechiel,a Hebrew prophet of the 6th century BC who was exiled to Babylon in 587 BC
+5882,Ezekiel Ezechiel Book_of_Ezekiel,an Old Testament book containing Ezekiel's prophecies of the downfall of Jerusalem and Judah and their subsequent restoration
+5883,Ezra,a Jewish priest and scribe sent by the Persian king to restore Jewish law and worship in Jerusalem
+5884,Ezra Book_of_Ezra,an Old Testament book telling of a rabbi's efforts in the 5th century BC to reconstitute Jewish law and worship in Jerusalem after the Babylonian Captivity
+5885,F f,the 6th letter of the Roman alphabet
+5886,FAQ,a list of questions that are frequently asked (about a given topic) along with their answers
+5887,FICA,a tax on employees and employers that is used to fund the Social Security system
+5888,FORTRAN,a high-level programing language for mathematical and scientific purposes; stands for formula translation
+5889,FORTRAN_program,a program written in FORTRAN
+5890,Faberge Peter_Carl_Faberge,Russian goldsmith noted for creating a series of jeweled and enameled Easter eggs for European royalty (1846-1920)
+5891,Fabian,a member of the Fabian Society in Britain
+5892,Fabian_Society,an association of British socialists who advocate gradual reforms within the law leading to democratic socialism
+5893,Fabiana genus_Fabiana,genus of South and Central American heathlike evergreen shrubs
+5894,Fabianism,socialism to be established by gradual reforms within the law
+5895,Fafnir,(Norse mythology) the Norse dragon that guarded a treasure and was slain by Sigurd
+5896,Fagaceae family_Fagaceae beech_family,chiefly monoecious trees and shrubs: beeches; chestnuts; oaks; genera Castanea, Castanopsis, Chrysolepis, Fagus, Lithocarpus, Nothofagus, Quercus
+5897,Fagales order_Fagales,an order of dicotyledonous trees of the subclass Hamamelidae
+5898,Fagin,a villainous Jew in a novel by Charles Dickens; "Fagin was a fence who trained boys as pickpockets"
+5899,Fagopyrum genus_Fagopyrum,buckwheat; in some classifications included in the genus Polygonum
+5900,Fagus genus_Fagus,beeches
+5901,Fahd Fahd_ibn_Abdel_Aziz_al-Saud,king of Saudi Arabia from 1982 to 2005 (1923-2005)
+5902,Fahrenheit Gabriel_Daniel_Fahrenheit,German physicist who invented the mercury thermometer and developed the scale of temperature that bears his name (1686-1736)
+5903,Fahrenheit_scale,a temperature scale that defines the freezing point of water as 32 degrees and the boiling point of water a 212 degrees
+5904,Fahrenheit_thermometer,a thermometer calibrated in degrees Fahrenheit
+5905,Fairbanks Douglas_Fairbanks Douglas_Elton_Fairbanks Julius_Ullman,United States film actor noted for his swashbuckling roles (1883-1939)
+5906,Fairbanks Douglas_Fairbanks_Jr.,United States film actor; son of Douglas Elton Fairbanks, (1909-2000)
+5907,Faisal Faisal_ibn_Abdel_Aziz_al-Saud,king of Saudi Arabia from 1964 to 1975 (1906-1975)
+5908,Faisalabad Lyallpur,city in northeast Pakistan
+5909,Falange,the Spanish Nazi party under Franco
+5910,Falcatifolium genus_Falcatifolium,sickle pines: dioecious evergreen tropical trees and shrubs having sickle-shaped leaves; similar to Dacrycarpus in habit; Malaysia and Philippines to New Guinea and New Caledonia
+5911,Falco genus_Falco,a genus of Falconidae
+5912,Falconidae family_Falconidae,a family of birds of the order Falconiformes
+5913,Falconiformes order_Falconiformes,chiefly diurnal carnivorous birds having hooked beaks and long talons with opposable hind toe: falcons; hawks; eagles; ospreys; caracaras; vultures
+5914,Falkland_Islands,a group of over 100 islands in the southern Atlantic off the coast of Argentina; a British Crown Colony
+5915,Fall,the lapse of mankind into sinfulness because of the sin of Adam and Eve; "women have been blamed ever since the Fall"
+5916,Fall_of_Man,(Judeo-Christian mythology) when Adam and Eve ate of the fruit of the tree of knowledge of good and evil in the Garden of Eden, God punished them by driving them out of the Garden of Eden and into the world where they would be subject to sickness and pain and eventual death
+5917,Falla Manuel_de_Falla,Spanish composer and pianist (1876-1946)
+5918,Fallopian_tube uterine_tube oviduct,either of a pair of tubes conducting the egg from the ovary to the uterus
+5919,Fallopius Gabriele_Fallopius Fallopio Gabriello_Fallopio,Italian anatomist who first described the Fallopian tubes (1523-1562)
+5920,Fallot Etienne-Louis_Arthur_Fallot,French physician who described cardiac anomalies including Fallot's tetralogy (1850-1911)
+5921,Falstaff Sir_John_Falstaff,a dissolute character in Shakespeare's plays
+5922,Fanconi's_anemia Fanconi's_anaemia congenital_pancytopenia,a rare congenital anemia characterized by pancytopenia and hypoplasia of the bone marrow
+5923,Fang,a Bantu language spoken in Cameroon
+5924,Fanny_Adams,nautical term for tinned meat
+5925,Far_East,a popular expression for the countries of eastern Asia (usually including China and Mongolia and Taiwan and Japan and Korea and Indochina and eastern Siberia)
+5926,Faraday Michael_Faraday,the English physicist and chemist who discovered electromagnetic induction (1791-1867)
+5927,Fargo,largest city in North Dakota; located in eastern North Dakota on the Red river
+5928,Farley_maidenhair Farley_maidenhair_fern Barbados_maidenhair glory_fern Adiantum_tenerum_farleyense,named for a country house in Barbados where it was discovered
+5929,Farm_Credit_System FCS,a cooperative nationwide system of banks and associations providing credit to farmers and related businesses; originally capitalized by the federal government but now owned by its members and borrowers
+5930,Farmer Fannie_Farmer Fannie_Merritt_Farmer,an expert on cooking whose cookbook has undergone many editions (1857-1915)
+5931,Farmer James_Leonard_Farmer,United States civil rights leader who in 1942 founded the Congress of Racial Equality (born in 1920)
+5932,Farmer-Labor_Party,a former minor political party in the United States in the early 20th century
+5933,Farmington,a town in northwestern New Mexico
+5934,Farmington,a residential town in central Connecticut
+5935,Faroe_Islands Faeroe_Islands Faroes Faeroes,a self-governing colony that is a possession of Denmark in the Faroe Islands
+5936,Faroe_Islands Faeroe_Islands Faroes Faeroes,a group of 21 volcanic islands in the North Atlantic between Iceland and the Shetland Islands
+5937,Faroese Faeroese,a Scandinavian language (closely related to Icelandic) that is spoken on the Faroe Islands
+5938,Farouk_I Faruk_I,king of Egypt who in 1952 was ousted by a military coup d'etat (1920-1965)
+5939,Farragut David_Glasgow_Farragut,United States admiral who commanded Union ships during the American Civil War (1801-1870)
+5940,Farrell Eileen_Farrell,United States operatic soprano noted for the clarity and power of her voice (1920-2002)
+5941,Farrell James_Thomas_Farrell,United States writer remembered for his novels (1904-1979)
+5942,Farsi,a person of Iranian descent; "many Farsi emigrated to India near Bombay"
+5943,Fasciola genus_Fasciola,a genus of Fasciolidae
+5944,Fasciolidae family_Fasciolidae,a family of Trematoda
+5945,Fasciolopsis genus_Fasciolopsis,a genus of Fasciolidae
+5946,Fasciolopsis_buski,fluke that is parasitic on humans and swine; common in eastern Asia
+5947,Fast_of_Esther,(Judaism) a minor fast day on Adar 13 commemorates three days that Esther fasted before approaching the Persian king on behalf of the Jewish people; the fast is connected with Purim
+5948,Fast_of_Gedaliah,(Judaism) a minor fast day on Tishri 3 that commemorates the killing of the Jewish governor of Judah
+5949,Fast_of_Tammuz,(Judaism) a minor fast day on Tammuz 17 when the walls of Jerusalem were breached
+5950,Fast_of_Tevet,(Judaism) a minor fast day on Tevet 10 commemorates the beginning of the siege of Jerusalem and has also been proclaimed a memorial day for the six million Jews who died in the Holocaust
+5951,Fast_of_the_Firstborn,(Judaism) a minor fast day on Nissan 14 that is observed only by firstborn males; it is observed on the day before Passover
+5952,Fatah_Revolutionary_Council Fatah-RC Abu_Nidal_Organization ANO Arab_Revolutionary_Brigades Black_September Revolutionary_Organization_of_Socialist_Muslims,a Palestinian international terrorist organization that split from the PLO in 1974; has conducted terrorist attacks in 20 countries; "in the 1980s the Fatah-RC was considered the most dangerous and murderous Palestinian terror group"
+5953,Fatah_Tanzim Tanzim,a terrorist group organized by Yasser Arafat in 1995 as the armed wing of al-Fatah; serves a dual function of violent confrontation with Israel and serves as Arafat's unofficial militia to prevent rival Islamists from usurping leadership
+5954,Father Father-God Fatherhood,God when considered as the first person in the Trinity; "hear our prayers, Heavenly Father"
+5955,Father Padre,`Father' is a term of address for priests in some churches (especially the Roman Catholic Church or the Orthodox Catholic Church); `Padre' is frequently used in the military
+5956,Father's_Day,US: third Sunday in June
+5957,Father_Brown,a Catholic priest who was the hero of detective stories by G. K. Chesterton
+5958,Fatiha Fatihah,the first or opening sura of the Quran which is the central prayer of Islam and is used on all special occasions as well as during the five daily prayers
+5959,Fatima Fatimah,youngest daughter of the prophet Mohammed and wife of the fourth calif Ali; revered especially by Shiite Muslims (606-632)
+5960,Faulkner William_Faulkner William_Cuthbert_Faulkner Falkner William_Falkner,United States novelist (originally Falkner) who wrote about people in the southern United States (1897-1962)
+5961,Fauntleroy Little_Lord_Fauntleroy,an excessively polite and well-dressed boy
+5962,Faunus,(Roman mythology) ancient rural deity; later considered a counterpart of Greek Pan
+5963,Faust Faustus,an alchemist of German legend who sold his soul to Mephistopheles in exchange for knowledge
+5964,Fauve fauvist,a member of a group of French painters who followed fauvism
+5965,Fawkes Guy_Fawkes,English conspirator who was executed for his role in a plot to blow up James I and the Houses of Parliament (1570-1606)
+5966,Fayetteville,a town in central West Virginia on the New River
+5967,Fayetteville,a town in south central North Carolina
+5968,Fayetteville,a university town in northwestern Arkansas in the Ozarks
+5969,February Feb,the month following January and preceding March
+5970,Fechner Gustav_Theodor_Fechner,German physicist who founded psychophysics; derived Fechner's law on the basis of early work by E. H. Weber (1801-1887)
+5971,Fechner's_law Weber-Fechner_law,(psychophysics) the concept that the magnitude of a subjective sensation increases proportional to the logarithm of the stimulus intensity; based on early work by E. H. Weber
+5972,Fedayeen_Saddam Saddam's_Martyrs,a feared paramilitary unit formed in 1995 by young soldiers to serve Saddam Hussein against domestic opponents
+5973,Federal Fed federal_official,any federal law-enforcement officer
+5974,Federal Federal_soldier Union_soldier,a member of the Union Army during the American Civil War
+5975,Federal_Aviation_Administration FAA,an agency in the Department of Transportation that is responsible for the safety of civilian aviation
+5976,Federal_Bureau_of_Investigation FBI,a federal law enforcement agency that is the principal investigative arm of the Department of Justice
+5977,Federal_Bureau_of_Prisons BoP,the law enforcement agency of the Justice Department that operates a nationwide system of prisons and detention facilities to incarcerate inmates sentenced to imprisonment for federal crimes
+5978,Federal_Communications_Commission FCC,an independent government agency that regulates interstate and international communications by radio and television and wire and cable and satellite
+5979,Federal_Deposit_Insurance_Corporation FDIC,a federally sponsored corporation that insures accounts in national banks and other qualified institutions
+5980,Federal_Emergency_Management_Agency FEMA,an independent agency of the United States government that provides a single point of accountability for all federal emergency preparedness and mitigation and response activities
+5981,Federal_Home_Loan_Bank_System,the central credit system for thrift institutions
+5982,Federal_Home_Loan_Mortgage_Corporation Freddie_Mac FHLMC,a corporation authorized by Congress to provide a secondary market for residential mortgages
+5983,Federal_Housing_Administration FHA,the federal agency in the Department of Housing and Urban Development that insures residential mortgages
+5984,Federal_Judiciary,the judiciary of the United States which is responsible for interpreting and enforcing federal laws
+5985,Federal_Law_Enforcement_Training_Center FLETC,a center in the Department of Homeland Security that trains law enforcement professionals for more than seventy federal agencies
+5986,Federal_National_Mortgage_Association Fannie_Mae FNMA,a federally chartered corporation that purchases mortgages
+5987,Federal_Protective_Service FPS,an agency in the General Services Administration that is a security organization to provide a safe environment where Federal agencies can conduct their business
+5988,Federal_Reserve_Bank reserve_bank,one of 12 regional banks that monitor and act as depositories for banks in their region
+5989,Federal_Reserve_Board,the seven-member board governing the Federal Reserve System
+5990,Federal_Reserve_System Federal_Reserve Fed FRS,the central bank of the United States; incorporates 12 Federal Reserve branch banks and all national banks and state-chartered commercial banks and some trust companies; "the Fed seeks to control the United States economy by raising and lowering short-term interest rates and the money supply"
+5991,Federal_Security_Bureau FSB Federal_Security_Service,the internal counterintelligence agency of the Russian Federation and successor to the Soviet KGB; formerly led by Vladimir Putin
+5992,Federal_Trade_Commission FTC,an independent agency of the United States federal government that maintains fair and free competition; enforces federal antitrust laws; educates the public about identity theft
+5993,Federalist,a member of a former political party in the United States that favored a strong centralized federal government
+5994,Federalist_Party American_Federalist_Party Federal_Party,a major political party in the United States in the early 19th century; founded by Alexander Hamilton; favored a strong centralized government
+5995,Fehling's_solution,a liquid solution of copper sulfate and potassium tartrate and sodium hydroxide that is used to test for sugar in the urine; solution turns reddish when sugar is present
+5996,Feifer Jules_Feifer,United States cartoonist who created a sarcastic comic strip (born in 1929)
+5997,Felicia genus_Felicia,genus of tropical African herbs or subshrubs with usually blue flowers
+5998,Felidae family_Felidae,cats; wildcats; lions; leopards; cheetahs; saber-toothed tigers
+5999,Felis genus_Felis,type genus of the Felidae: true cats and most wildcats
+6000,Fellini Federico_Fellini,Italian filmmaker (1920-1993)
+6001,Fennic Finnic Non-Ugric,one of two branches of the Finno-Ugric languages; a family of languages including Finnish and Estonian (but not Hungarian)
+6002,Fenrir,(Norse mythology) an enormous wolf that was fathered by Loki and that killed Odin
+6003,Fentanyl Sublimaze,trade names of a narcotic analgesic that can be inhaled and that acts on the central nervous system and may become addictive; used as a veterinary anesthetic and with other drugs before, during, and after surgery; also used as a nonlethal gas to incapacitate people in hostage situations; also abused as a recreational drug
+6004,Fenusa genus-Fenusa,birch leaf miner
+6005,Feosol,trade name of a drug rich in iron; used to treat some kinds of anemia
+6006,Ferber Edna_Ferber,United States novelist; author of several popular novels (1887-1968)
+6007,Ferdinand King_Ferdinand Ferdinand_of_Aragon Ferdinand_V Ferdinand_the_Catholic,the king of Castile and Aragon who ruled jointly with his wife Isabella; his marriage to Isabella I in 1469 marked the beginning of the modern state of Spain and their capture of Granada from the Moors in 1492 united Spain as one country; they instituted the Spanish Inquisition in 1478 and supported the expedition of Christopher Columbus in 1492 (1452-1516)
+6008,Ferdinand_I,Holy Roman Emperor and king of Hungary and Bohemia (1503-1564)
+6009,Ferdinand_I Ferdinand_the_Great,king of Castile and Leon who achieved control of the Moorish kings of Saragossa and Seville and Toledo (1016-1065)
+6010,Ferdinand_II,Holy Roman Emperor and king of Bohemia and Hungary who waged war against Protestant forces (1578-1637)
+6011,Ferdinand_III,Holy Roman Emperor and king of Hungary and Bohemia who signed the Peace of Westphalia ending the Thirty Years' War (1608-1657)
+6012,Ferdinand_and_Isabella,joint monarchs of Spain; Ferdinand V and Isabella I
+6013,Fergon,trade name of a drug rich in iron; used to treat some types of anemia
+6014,Fermat Pierre_de_Fermat,French mathematician who founded number theory; contributed (with Pascal) to the theory of probability (1601-1665)
+6015,Fermi Enrico_Fermi,Italian nuclear physicist (in the United States after 1939) who worked on artificial radioactivity caused by neutron bombardment and who headed the group that in 1942 produced the first controlled nuclear reaction (1901-1954)
+6016,Fermi-Dirac_statistics,(physics) law obeyed by a systems of particles whose wave function changes when two particles are interchanged (the Pauli exclusion principle applies)
+6017,Ferocactus genus_Ferocactus,genus of nearly globular cacti of Mexico and southwestern United States: barrel cacti
+6018,Ferrara,a city in northern Italy; "in the 13th century Ferrara was a center of Renaissance learning and the arts"
+6019,Ferris_wheel,a vertical rotating mechanism consisting of a large wheel with suspended seats that remain upright as the wheel rotates; provides a ride at an amusement park
+6020,Fertile_Crescent,a geographical area of fertile land in the Middle East stretching in a broad semicircle from the Nile to the Tigris and Euphrates
+6021,Festuca genus_Festuca,a genus of tufted perennial grasses of the family Gramineae
+6022,Feynman Richard_Feynman Richard_Phillips_Feynman,United States physicist who contributed to the theory of the interaction of photons and electrons (1918-1988)
+6023,Fez Fes,a city in north central Morocco; religious center
+6024,Fibonacci_number,a number in the Fibonacci sequence
+6025,Fibonacci_sequence,a sequence of numbers in which each number equals the sum of the two preceding numbers
+6026,Ficus genus_Ficus,large genus of tropical trees or shrubs or climbers including fig trees
+6027,Fiedler Arthur_Fiedler,popular United States conductor (1894-1979)
+6028,Fielding Henry_Fielding,English novelist and dramatist (1707-1754)
+6029,Fields W._C._Fields William_Claude_Dukenfield,United States comedian and film actor (1880-1946)
+6030,Fifth_Amendment,an amendment to the Constitution of the United States that imposes restrictions on the government's prosecution of persons accused of crimes; mandates due process of law and prohibits self-incrimination and double jeopardy; requires just compensation if private property is taken for public use
+6031,Fifth_Avenue,an avenue in Manhattan that separates the east side of Manhattan from the west side
+6032,Fifth_Crusade,a Crusade under papal control from 1218 to 1221 that achieved military victories but failed when dissension arose over accepting the terms they had been offered
+6033,Fifth_Lateran_Council,the council in 1512-1517 that published disciplinary decrees and planned (but did not carry out) a crusade against Turkey
+6034,Fiji Republic_of_Fiji,an independent state within the British Commonwealth located on the Fiji Islands
+6035,Fiji_Islands Fijis,a group of more than 800 islands (100 inhabited) in the southwestern Pacific; larger islands (Viti Levu and Vanua Levu) are of volcanic origin surrounded by coral reefs; smaller islands are coral
+6036,Fiji_dollar,the basic unit of money in Fiji
+6037,Fijian,a native or inhabitant of Fiji
+6038,Fijian,the Oceanic language spoken on Fiji
+6039,Filariidae family_Filariidae,threadlike roundworms
+6040,Filicales order_Filicales Polypodiales order_Polypodiales,true (leptosporangiate) ferns
+6041,Filicopsida class_Filicopsida Filicinae class_Filicinae,ferns
+6042,Filipino,a native or inhabitant of the Philippines
+6043,Fillmore Millard_Fillmore President_Fillmore,elected vice president and became the 13th President of the United States when Zachary Taylor died in office (1800-1874)
+6044,Filoviridae,a family of threadlike RNA viruses that cause diseases in humans and nonhuman primates (monkeys and chimpanzees)
+6045,Financial_Crimes_Enforcement_Network FinCEN,a law enforcement agency of the Treasury Department responsible for establishing and implementing policies to detect money laundering
+6046,Financial_Management_Service,the federal agency in the Treasury Department that manages the government's disbursement and collection systems and provides central accounting and financial reporting
+6047,Fingal's_Cave,a large cave with basaltic pillars on Staffa island in Scotland
+6048,Finger_Lakes,a geographical area in central New York State that is named for a series of narrow glacial lakes that lie parallel in a north-south direction
+6049,Finland Republic_of_Finland Suomi,republic in northern Europe; achieved independence from Russia in 1917
+6050,Finn,a native or inhabitant of Finland
+6051,Finnbogadottir Vigdis_Finnbogadottir,former president of Iceland; first woman to be democratically elected head of state (born in 1930)
+6052,Finnish Suomi,the official language of Finland; belongs to the Baltic Finnic family of languages
+6053,Finnish_monetary_unit,monetary unit in Finland
+6054,Finno-Ugric Finno-Ugrian,a family of Uralic languages indigenous to Scandinavia and Hungary and Russia and western Siberia (prior to the Slavic expansion into those regions)
+6055,Firenze Florence,a city in central Italy on the Arno; provincial capital of Tuscany; center of the Italian Renaissance from 14th to 16th centuries
+6056,Firmiana genus_Firmiana,small genus of Asian trees or shrubs
+6057,First_Amendment,an amendment to the Constitution of the United States guaranteeing the right of free expression; includes freedom of assembly and freedom of the press and freedom of religion and freedom of speech
+6058,First_Crusade,a Crusade from 1096 to 1099; captured Jerusalem and created a theocracy there
+6059,First_Epistle_of_John I_John,the first New Testament epistle traditionally attributed to Saint John the Apostle
+6060,First_Epistle_of_Paul_the_Apostle_to_Timothy First_Epistle_to_Timothy I_Timothy,a New Testament book containing Saint Paul's first epistle to Timothy; contains advice on pastoral matters
+6061,First_Epistle_of_Paul_the_Apostle_to_the_Corinthians First_Epistle_to_the_Corinthians I_Corinthians,a New Testament book containing the first epistle from Saint Paul to the church at Corinth
+6062,First_Epistle_of_Paul_the_Apostle_to_the_Thessalonians First_Epistle_to_the_Thessalonians I_Thessalonians,a New Testament book containing Saint Paul's first epistle to the Thessalonians
+6063,First_Epistle_of_Peter I_Peter,the first New Testament book traditionally attributed to Saint Peter the Apostle
+6064,First_Lateran_Council,the first council of the Western Church held in the Lateran Palace in 1123; focused on church discipline and made plans to recover the Holy Lands from the Muslim `infidels'
+6065,First_Vatican_Council Vatican_I,the Vatican Council in 1869-1870 that proclaimed the infallibility of the pope when speaking ex cathedra
+6066,First_of_October_Antifascist_Resistance_Group GRAPO,an armed wing of the (illegal) Communist Party of Spain; seeks to overthrow the Spanish government and replace it with a Marxist-Leninist regime; "GRAPO is vehemently opposed to the United States"
+6067,Firth J._R._Firth John_Rupert_Firth,English linguist who contributed to linguistic semantics and to prosodic phonology and who was noted for his insistence on studying both sound and meaning in context (1890-1960)
+6068,Firth_of_Clyde,a firth on the southwestern coast of Scotland emptying into the North Channel
+6069,Firth_of_Forth,a large firth on the east coast of Scotland and the estuary of the Forth River; location of Edinburgh
+6070,Fischer Bobby_Fischer Robert_James_Fischer,United States chess master; world champion from 1972 to 1975 (born in 1943)
+6071,Fischer Emil_Hermann_Fischer,German chemist noted for work on synthetic sugars and the purines (1852-1919)
+6072,Fischer Hans_Fischer,German chemist noted for his synthesis of hemin (1881-1945)
+6073,Fischer's_slime_mushroom,a type of slime mushroom
+6074,Fissipedia,in some classifications considered a suborder of Carnivora
+6075,Fissurella genus_Fissurella,type genus of the family Fissurellidae: keyhole limpets
+6076,Fissurellidae family_Fissurellidae,marine limpets
+6077,Fistularia genus_Fistularia,type genus of the family Fistulariidae
+6078,Fistulariidae family_Fistulariidae,cornetfishes
+6079,Fistulina genus_Fistulina,fungi having each pore separate though crowded
+6080,Fistulinaceae family_Fistulinaceae,a family of fungi closely related to the family Polyporaceae except that the tubes on the undersurface of the cap are separate from each other
+6081,Fitzgerald Edward_Fitzgerald,English poet remembered primarily for his free translation of the poetry of Omar Khayyam (1809-1883)
+6082,Fitzgerald Ella_Fitzgerald,United States scat singer (1917-1996)
+6083,Fitzgerald F._Scott_Fitzgerald Francis_Scott_Key_Fitzgerald,United States author whose novels characterized the Jazz Age in the United States (1896-1940)
+6084,Flacourtia genus_Flacourtia,often spiny trees or shrubs of tropical Asia and Africa
+6085,Flacourtiaceae family_Flacourtiaceae flacourtia_family,chiefly tropical trees and shrubs
+6086,Flag_Day June_14,commemorating the adoption of the United States flag in 1777
+6087,Flagstaff,a town in north central Arizona; site of an important observatory
+6088,Flaminian_Way,an ancient Roman road in Italy built by Gaius Flaminius in 220 BC; extends north from Rome to cisalpine Gaul
+6089,Flaminius Gaius_Flaminius,Roman statesman and general who built the Flaminian Way; died when he was defeated by Hannibal (died 217 BC)
+6090,Flammulina genus_Flammulina,a genus of agarics
+6091,Flanders,a medieval country in northern Europe that included regions now parts of northern France and Belgium and southwestern Netherlands
+6092,Flaubert Gustave_Flaubert,French writer of novels and short stories (1821-1880)
+6093,Flavian_dynasty,a dynasty of Roman Emperors from 69 to 96 including Vespasian and his sons Titus and Domitian
+6094,Flaviviridae,a family of arboviruses carried by arthropods
+6095,Fleet_Street,a street in central London where newspaper offices are situated
+6096,Fleet_Street,British journalism
+6097,Fleming,a native of Flanders or a Flemish-speaking Belgian
+6098,Fleming Alexander_Fleming Sir_Alexander_Fleming,Scottish bacteriologist who discovered penicillin (1881-1955)
+6099,Fleming Ian_Fleming Ian_Lancaster_Fleming,British writer famous for writing spy novels about secret agent James Bond (1908-1964)
+6100,Flemish,an ethnic group speaking Flemish and living in northern and western Belgium
+6101,Flemish Flemish_dialect,one of two official languages of Belgium; closely related to Dutch
+6102,Fletcher John_Fletcher,prolific English dramatist who collaborated with Francis Beaumont and many other dramatists (1579-1625)
+6103,Flinders Matthew_Flinders Sir_Matthew_Flinders,British explorer who mapped the Australian coast (1774-1814)
+6104,Flindersia genus_Flindersia,small genus of Australian timber trees
+6105,Flint,a city in southeast central Michigan near Detroit; automobile manufacturing
+6106,Flint Flint_River,a river in western Georgia that flows generally south to join the Chattahoochee River at the Florida border where they form the Apalachicola River
+6107,Flodden,a hill in Northumberland where the invading Scots were defeated by the English in 1513
+6108,Flodden Battle_of_Flodden_Field,a battle in 1513; the English defeated the invading Scots and James IV was killed
+6109,Floreal,eighth month of the Revolutionary calendar (April and May); the month of flowers
+6110,Florence,a town in northeast South Carolina; transportation center
+6111,Florence_fennel Foeniculum_dulce Foeniculum_vulgare_dulce,grown especially for its edible aromatic bulbous stem base
+6112,Florentine,a native or resident of Florence, Italy
+6113,Florentine_iris orris Iris_germanica_florentina Iris_florentina,German iris having large white flowers with lavender-tinged falls and a fragrant rhizome
+6114,Florey Howard_Florey Sir_Howard_Walter_Florey,British pathologist who isolated and purified penicillin, which had been discovered in 1928 by Sir Alexander Fleming (1898-1968)
+6115,Florida Sunshine_State Everglade_State FL Fla.,a state in southeastern United States between the Atlantic and the Gulf of Mexico; one of the Confederate states during the American Civil War
+6116,Florida_gallinule Gallinula_chloropus_cachinnans,North American dark bluish-grey gallinule
+6117,Florida_pompano Trachinotus_carolinus,found in coastal waters New England to Brazil except clear waters of West Indies
+6118,Florida_smoothhound Mustelus_norrisi,found from the northern Gulf of Mexico to Brazil
+6119,Florida_strap_fern cow-tongue_fern hart's-tongue_fern,common epiphytic or sometimes terrestrial fern having pale yellow-green strap-shaped leaves; Florida to West Indies and Mexico and south to Uruguay
+6120,Florida_yew Taxus_floridana,small bushy yew of northern Florida having spreading branches and very narrow leaves
+6121,Floridian,a native or resident of Florida
+6122,Florio John_Florio,English lexicographer remembered for his Italian and English dictionary (1553-1625)
+6123,Flory Paul_John_Flory,United States chemist who developed methods for studying long-chain molecules (1910-1985)
+6124,Flying_Dutchman,the captain of a phantom ship (the Flying Dutchman) who was condemned to sail against the wind until Judgment Day
+6125,Flying_Dutchman,a phantom ship that is said to appear in storms near the Cape of Good Hope
+6126,Foeniculum genus_Foeniculum,very small genus of aromatic European herbs with pinnately compound leaves and yellow flowers
+6127,Foggy_Bottom,United States Department of State, which is housed in a building in a low-lying area of Washington near the Potomac River
+6128,Folsom_culture,the Paleo-American culture of Central America and North America; distinguished chiefly by a thin finely made flint projectile point having the shape of a leaf
+6129,Fomes genus_Fomes,genus of bracket fungi forming corky or woody perennial shelflike sporophores often of large size; includes some that cause destructive heartrot in trees
+6130,Fomor Fomorian,one of a group of Celtic sea demons sometimes associated with the hostile power of nature
+6131,Fonda Henry_Fonda,United States film actor (1905-1982)
+6132,Fonda Jane_Fonda,United States film actress and daughter of Henry Fonda (born in 1937)
+6133,Fontanne Lynn_Fontanne,United States actress (born in England) who married Alfred Lunt and performed with him in many plays (1887-1983)
+6134,Fontenoy Battle_of_Fontenoy,a battle in 1745 in which the French army under Marshal Saxe defeated the English army and their allies under the duke of Cumberland
+6135,Fonteyn Dame_Margot_Fonteyn,English dancer who danced with Rudolf Nureyev (born in 1919)
+6136,Food_and_Agriculture_Organization Food_and_Agriculture_Organization_of_the_United_Nations FAO,the United Nations agency concerned with the international organization of food and agriculture
+6137,Food_and_Drug_Administration FDA,a federal agency in the Department of Health and Human Services established to regulate the release of new foods and health-related products
+6138,Foraminifera order_Foraminifera,foraminifers
+6139,Forbidden_City,a walled section of Beijing that encloses the palace that was formerly the residence of the emperor of China
+6140,Force_17,formed in 1972 as a personal security force for Arafat and other PLO leaders; became one of PLO's elite units; has built an extensive infrastructure of terrorist cells and weapon depots in Europe while attacking Israeli targets
+6141,Forces_of_Umar_Al-Mukhtar Umar_al-Mukhtar_Forces,a little known Palestinian group responsible for bombings and for killing Israelis; seeks to defeat Israel and liberate southern Lebanon, Palestine, and Golan Heights
+6142,Ford Edsel_Bryant_Ford,son of Henry Ford (1893-1943)
+6143,Ford Ford_Madox_Ford Ford_Hermann_Hueffer,English writer and editor (1873-1939)
+6144,Ford Gerald_Ford Gerald_R._Ford Gerald_Rudolph_Ford President_Ford,38th President of the United States; appointed vice president and succeeded Nixon when Nixon resigned (1913-2006)
+6145,Ford Henry_Ford,United States manufacturer of automobiles who pioneered mass production (1863-1947)
+6146,Ford Henry_Ford_II,grandson of Henry Ford (1917-1987)
+6147,Ford John_Ford,United States film maker (1896-1973)
+6148,Fordhooks,relatively large lima beans
+6149,Foreign_Intelligence_Service Sluzhba_Vneshney_Razvedki SVR,Russia's intelligence service responsible for foreign operations, intelligence-gathering and analysis, and the exchange of intelligence information; collaborates with other countries to oppose proliferation of weapons of mass destruction, terrorism and organized crime
+6150,Foreign_Intelligence_Surveillance_Act FISA,an act passed by Congress in 1978 to establish procedures for requesting judicial authorization for foreign intelligence surveillance and to create the Foreign Intelligence Surveillance Court; intended to increase United States counterintelligence; separate from ordinary law enforcement surveillance
+6151,Foreign_Intelligence_Surveillance_Court F.I.S.C.,a secret federal court created in 1978 by the Foreign Intelligence Surveillance Act; responsible for authorizing wiretaps and other forms of electronic surveillance and for authorizing searches of suspected spies and terrorists by the Department of Justice or United States intelligence agencies
+6152,Foreign_Office,the government department in charge of foreign relations
+6153,Foreign_Service,the part of the State Department that supplies diplomats for the United States embassies and consulates around the world
+6154,Forester C._S._Forester Cecil_Scott_Forester,English writer of adventure novels featuring Captain Horatio Hornblower (1899-1966)
+6155,Forficula genus_Forficula,type genus of Forficulidae
+6156,Forficulidae family_Forficulidae,typical earwigs
+6157,Formica,any of various plastic laminates containing melamine
+6158,Formica genus_Formica,type genus of the Formicidae
+6159,Formica_fusca,an ant frequently enslaved
+6160,Formicariidae family_Formicariidae,antbirds
+6161,Formicarius genus_Formicarius,type genus of the Formicariidae
+6162,Formicidae family_Formicidae,ants
+6163,Formosan,the Austronesian languages spoken on Formosa
+6164,Fornax,a faint constellation in the southern hemisphere near Cetus and Phoenix
+6165,Forseti,(Norse mythology) god of justice; son of Balder and Nanna
+6166,Fort_Lauderdale,a city in southeast Florida on the Atlantic coast to the north of Miami; a favorite place for college students to go on their spring vacations
+6167,Fort_Meade Fort_George_Gordon_Meade Fort_George_G._Meade,a United States Army base in Maryland; headquarters of the National Security Agency
+6168,Fort_Myers,a town in southwest Florida
+6169,Fort_Smith,a town in western Arkansas on the Arkansas River at the Oklahoma border
+6170,Fort_Ticonderoga Ticonderoga,a pitched battle in which American revolutionary troops captured Fort Ticonderoga from the British in 1775
+6171,Fort_Wayne,a city in northeastern Indiana
+6172,Fort_Worth,a city in northeastern Texas (just to the west of Dallas); a major industrial center
+6173,Forth Forth_River,a river in southern Scotland that flows eastward to the Firth of Forth
+6174,Fortran_compiler,a compiler for programs written in FORTRAN
+6175,Fortuna,(Roman mythology) the goddess of fortune and good luck; counterpart of Greek Tyche
+6176,Fortunella genus_Fortunella,small genus of shrubs native to south China producing small ovoid fruits resembling oranges: includes kumquats
+6177,Fosbury Dick_Fosbury Richard_D._Fosbury,United States athlete who revolutionized the high jump by introducing the Fosbury flop in the 1968 Olympics (born in 1947)
+6178,Fosbury_flop,jumping over the bar backwards and head first
+6179,Fossa genus_Fossa,monotypic genus of Madagascar civets closely related to palm civets
+6180,Foster Stephen_Foster Stephen_Collins_Foster,United States songwriter whose songs embody the sentiment of the South before the American Civil War (1826-1864)
+6181,Foucault Jean_Bernard_Leon_Foucault,French physicist who determined the speed of light and showed that it travels slower in water than in air; invented the Foucault pendulum and the gyroscope (1819-1868)
+6182,Foucault_pendulum,pendulum with a long wire; can swing in any direction; the change in the swing plane demonstrates the earth's rotation
+6183,Founding_Father,a member of the Constitutional Convention that drafted the United States Constitution in 1787
+6184,Fountain_of_Youth,a fountain described in folk tales as able to make people young again; "Ponce de Leon discovered Florida while searching for the Fountain of Youth"
+6185,Fouquieria genus_Fouquieria,resinous succulent trees or shrubs of desert and semidesert regions of southwestern United States that are leafless most of the year
+6186,Fouquieriaceae family_Fouquieriaceae,small family of spiny shrubs or trees of southwestern United States
+6187,Four_Horsemen,(New Testament) the four evils that will come at the end of the world: conquest rides a white horse; war a red horse; famine a black horse; plague a pale horse
+6188,Four_Hundred,the exclusive social set of a city
+6189,Fourier Charles_Fourier Francois_Marie_Charles_Fourier,French sociologist and reformer who hoped to achieve universal harmony by reorganizing society (1772-1837)
+6190,Fourier Jean_Baptiste_Joseph_Fourier Baron_Jean_Baptiste_Joseph_Fourier,French mathematician who developed Fourier analysis and studied the conduction of heat (1768-1830)
+6191,Fourier_analysis harmonic_analysis,analysis of a periodic function into a sum of simple sinusoidal components
+6192,Fourier_series,the sum of a series of trigonometric expressions; used in the analysis of periodic functions
+6193,Fourteenth_Amendment,an amendment to the Constitution of the United States adopted in 1868; extends the guarantees of the Bill of Rights to the states as well as to the federal government
+6194,Fourth_Crusade,a Crusade from 1202 to 1204 that was diverted into a battle for Constantinople and failed to recapture Jerusalem
+6195,Fourth_Lateran_Council,the Lateran Council in 1215 was the most important council of the Middle Ages; issued a creed against Albigensianism, published reformatory decrees, promulgated the doctrine of transubstantiation, and clarified church doctrine on the Trinity and Incarnation
+6196,Fowler Henry_Watson_Fowler,English lexicographer who wrote a well-known book on English usage (1858-1933)
+6197,Fox,a member of an Algonquian people formerly living west of Lake Michigan along the Fox River
+6198,Fox,the Algonquian language of the Fox
+6199,Fox Charles_James_Fox,English statesman who supported American independence and the French Revolution (1749-1806)
+6200,Fox George_Fox,English religious leader who founded the Society of Friends (1624-1691)
+6201,Fox_River,a river in Wisconsin that flows into Lake Michigan
+6202,Fragaria genus_Fragaria,strawberries
+6203,Fragonard Jean_Honore_Fragonard,French artist whose rococo paintings typified the frivolity of life in the royal court of France in the 18th century (1732-1806)
+6204,France Anatole_France Jacques_Anatole_Francois_Thibault,French writer of sophisticated novels and short stories (1844-1924)
+6205,France French_Republic,a republic in western Europe; the largest country wholly in Europe
+6206,Franche-Comte,a former province of eastern France
+6207,Francis_Ferdinand Franz_Ferdinand,archduke of Austria and heir apparent to Francis Joseph I; his assassination at Sarajevo triggered the outbreak of World War I (1863-1914)
+6208,Francis_II Emperor_Francis_II,the last Holy Roman Emperor (1768-1835)
+6209,Francis_Joseph Franz_Joseph Francis_Joseph_I Franz_Josef_I,emperor of Austria and king of Hungary; was defeated by Napoleon III at the battle of Magenta (1830-1916)
+6210,Francis_of_Assisi Saint_Francis_of_Assisi St._Francis_of_Assisi Saint_Francis St._Francis Giovanni_di_Bernardone,(Roman Catholic Church) an Italian and the Roman Catholic monk who founded the Franciscan order of friars (1181-1226)
+6211,Francis_turbine,a type of hydroelectric turbine
+6212,Franciscan Grey_Friar,a Roman Catholic friar wearing the grey habit of the Franciscan order
+6213,Franciscan_order,a Roman Catholic order founded by Saint Francis of Assisi in the 13th century
+6214,Francisella genus_Francisella,a genus of Gram-negative aerobic bacteria that occur as pathogens and parasite in many animals (including humans)
+6215,Francisella_tularensis,the type species of the genus Francisella and the causal agent of tularemia in humans; can be used as a bioweapon
+6216,Franck Cesar_Franck,French composer and teacher who influenced a generation of composers (1822-1890)
+6217,Franck James_Franck,United States physicist (born in Germany) who with Gustav Hertz performed an electron scattering experiment that proved the existence of the stationary energy states postulated by Niels Bohr (1882-1964)
+6218,Franco Francisco_Franco El_Caudillo General_Franco,Spanish general whose armies took control of Spain in 1939 and who ruled as a dictator until his death (1892-1975)
+6219,Franco-American,an American who was born in France or whose ancestors were French
+6220,Franco-Prussian_War,a war between France and Prussia that ended the Second Empire in France and led to the founding of modern Germany; 1870-1871
+6221,Francoa genus_Francoa,perennial evergreen herbs with white or pink flowers; Chile
+6222,Francophile Francophil,an admirer of France and everything French
+6223,Francophobe,a person who hates France and everything French
+6224,Frank,a member of the ancient Germanic peoples who spread from the Rhine into the Roman Empire in the 4th century
+6225,Frankenstein,an agency that escapes control and destroys its creator
+6226,Frankenstein,the fictional Swiss scientist who was the protagonist in a gothic novel by Mary Wollstonecraft Shelley; he created a monster from parts of corpses
+6227,Frankenstein Frankenstein's_monster,the monster created by Frankenstein in a gothic novel by Mary Wollstonecraft Shelley (the creator's name is commonly used to refer to his creation)
+6228,Frankfort capital_of_Kentucky,the capital of Kentucky; located in northern Kentucky
+6229,Frankfurt_on_the_Main Frankfurt Frankfort,a German city; an industrial and commercial and financial center
+6230,Franklin Benjamin_Franklin,printer whose success as an author led him to take up politics; he helped draw up the Declaration of Independence and the Constitution; he played a major role in the American Revolution and negotiated French support for the colonists; as a scientist he is remembered particularly for his research in electricity (1706-1790)
+6231,Franklin John_Hope_Franklin,United States historian noted for studies of Black American history (born in 1915)
+6232,Frankliniella genus_Frankliniella,tobacco thrips
+6233,Fraser_fir Abies_fraseri,small fast-growing but short-lived fir of southern Alleghenies similar to balsam fir but with very short leaves
+6234,Frasera genus_Frasera,genus of North American herbs: columbo; includes some species sometimes placed in genus Swertia
+6235,Fratercula genus_Fratercula,puffins
+6236,Frau,a German courtesy title or form of address for an adult woman
+6237,Fraulein,a German courtesy title or form of address for an unmarried woman
+6238,Fraxinus genus_Fraxinus,ash
+6239,Frazer James_George_Frazer Sir_James_George_Frazer,English social anthropologist noted for studies of primitive religion and magic (1854-1941)
+6240,Frederick,a town in northern Maryland to the west of Baltimore
+6241,Frederick_I,son of Frederick William who in 1701 became the first king of Prussia (1657-1713)
+6242,Frederick_I Frederick_Barbarossa Barbarossa,Holy Roman Emperor from 1152 to 1190; conceded supremacy to the pope; drowned leading the Third Crusade (1123-1190)
+6243,Frederick_II Frederick_the_Great,king of Prussia from 1740 to 1786; brought Prussia military prestige by winning the War of the Austrian Succession and the Seven Years' War (1712-1786)
+6244,Frederick_II Holy_Roman_Emperor_Frederick_II,the Holy Roman Emperor who led the Sixth Crusade and crowned himself king of Jerusalem (1194-1250)
+6245,Frederick_William Great_Elector,the Elector of Brandenburg who rebuilt his domain after its destruction during the Thirty Years' War (1620-1688)
+6246,Frederick_William_I,son of Frederick I who became king of Prussia in 1713; reformed and strengthened the Prussian army (1688-1740)
+6247,Frederick_William_II,king of Prussia who became involved in a costly war with France (1744-1797)
+6248,Frederick_William_III,king of Prussia who became involved in the Napoleonic Wars (1770-1840)
+6249,Frederick_William_IV,king of Prussia who violently suppressed democratic movements (1795-1865)
+6250,Fredericksburg,a town in northeastern Virginia on the Rappahannock River
+6251,Fredericksburg Battle_of_Fredericksburg,an important battle in the American Civil War (1862); the Union Army under A. E. Burnside was defeated by the Confederate Army under Robert E. Lee
+6252,Fredericton,the provincial capital of New Brunswick
+6253,Free_French Fighting_French,a French movement during World War II that was organized in London by Charles de Gaulle to fight for the liberation of France from German control and for the restoration of the republic
+6254,Free_Soil_Party,a former political party in the United States; formed in 1848 to oppose the extension of slavery into the territories; merged with the Liberty Party in 1848
+6255,Free_State Orange_Free_State,a province in central South Africa that was colonized by the Boers; named Free State in 1997
+6256,Free_World,anti-communist countries collectively
+6257,Freemason Mason,a member of a widespread secret fraternal order pledged to mutual assistance and brotherly love
+6258,Freemasonry Masonry,Freemasons collectively
+6259,Freetown capital_of_Sierra_Leone,port city and the capital and largest city of Sierra Leone
+6260,Fregata genus_Fregata,type genus of the Fregatidae
+6261,Fregatidae family_Fregatidae,frigate birds
+6262,Fremont John_C._Fremont John_Charles_Fremont,United States explorer who mapped much of the American west and Northwest (1813-1890)
+6263,Fremontodendron genus_Fremontodendron Fremontia genus_Fremontia,flannelbush
+6264,French,the Romance language spoken in France and in countries colonized by France
+6265,French Daniel_Chester_French,United States sculptor who created the seated marble figure of Abraham Lincoln in the Lincoln Memorial in Washington D.C. (1850-1931)
+6266,French French_people,the people of France
+6267,French_Academy,an honorary group of French writers and thinkers supported by the French government; "the French Academy sets standards for the use of the French language"
+6268,French_Canadian,a Canadian descended from early French settlers and whose native language is French
+6269,French_Foreign_Legion,a former foreign legion in the French army that was used for military duties outside of France
+6270,French_Foreign_Office Quai_d'Orsay,the French department in charge of foreign affairs; referred to familiarly by its address in Paris
+6271,French_Indochina,the French colonies of the territory now occupied by Cambodia, Laos, and Vietnam
+6272,French_Polynesia French_Oceania,a French overseas possession in the South Pacific
+6273,French_Revolution,the revolution in France against the Bourbons; 1789-1799
+6274,French_Riviera Cote_d'Azur,the French part of the Riviera
+6275,French_West_Indies,the islands in the Lesser Antilles that are administered by France
+6276,French_and_Indian_War,a war in North America between France and Britain (both aided by American Indian tribes); 1755-1760
+6277,French_blue French_ultramarine French_ultramarine_blue,ultramarine pigment prepared artificially
+6278,French_bread,a crusty sourdough bread often baked in long slender tapered loaves or baguettes
+6279,French_bulldog,small stocky version of the bulldog having a sleek coat and square head
+6280,French_chalk,a soft white compact talc used to mark cloth or to remove grease stains
+6281,French_door,a light door with transparent or glazed panels extending the full length
+6282,French_dressing vinaigrette sauce_vinaigrette,oil and vinegar with mustard and garlic
+6283,French_franc,formerly the basic unit of money in France
+6284,French_fritter beignet,a deep-fried, yeast-raised doughnut dusted with confectioners' sugar
+6285,French_heel,a fairly high narrow heel on women's shoes
+6286,French_honeysuckle sulla Hedysarum_coronarium,perennial of southern Europe cultivated for forage and for its nectar-rich pink flowers that make it an important honey crop
+6287,French_horn horn,a brass musical instrument consisting of a conical tube that is coiled into a spiral and played by means of valves
+6288,French_knot,a stitch made by looping the thread several times around the needle before inserting it into the fabric
+6289,French_lavender Lavandula_stoechas,shrubby greyish lavender of southwestern Europe having usually reddish-purple flowers
+6290,French_leave,an abrupt and unannounced departure (without saying farewell)
+6291,French_lesson,instruction in the French language
+6292,French_loaf,a loaf of French bread
+6293,French_marigold Tagetes_patula,strong-scented bushy annual with orange or yellow flower heads marked with red; Mexico and Guatemala
+6294,French_omelet,omelet cooked quickly and slid onto a plate
+6295,French_pastry,sweet filled pastry made of especially puff paste
+6296,French_polish,the glaze produced by repeated applications of French polish shellac
+6297,French_polish French_polish_shellac,a varnish for wood consisting of shellac dissolved in alcohol
+6298,French_region,a geographical subdivision of France
+6299,French_roof,a mansard roof with sides that are nearly perpendicular
+6300,French_sorrel,greens having small tart oval to pointed leaves; preferred to common sorrel for salads
+6301,French_sorrel garden_sorrel Rumex_scutatus,low perennial with small silvery-green ovate to hastate leaves
+6302,French_teacher,someone who teaches French
+6303,French_toast,bread slice dipped in egg and milk and fried; topped with sugar or fruit or syrup
+6304,French_window,a French door situated in an exterior wall of a building
+6305,Frenchman Frenchwoman French_person,a person of French nationality
+6306,Freon,any one or more chlorofluorocarbons (or related compounds) that are used as an aerosol propellant, organic solvent, or refrigerant
+6307,Fresnel Augustin_Jean_Fresnel,French physicist who invented polarized light and invented the Fresnel lens (1788-1827)
+6308,Fresnel_lens,lens composed of a number of small lenses arranged to make a lightweight lens of large diameter and short focal length
+6309,Fresno,a city in south central California in the San Joaquin Valley; center of an important agricultural area and gateway to the Sierra Nevada Mountains
+6310,Freud Sigmund_Freud,Austrian neurologist who originated psychoanalysis (1856-1939)
+6311,Freudian,a person who follows the basic theories or practices of Sigmund Freud
+6312,Freudian_psychology,the psychological theories of Sigmund Freud
+6313,Freudian_slip,a slip-up that (according to Sigmund Freud) results from the operation of unconscious wishes or conflicts and can reveal unconscious processes in normal healthy individuals
+6314,Frey Freyr,(Norse mythology) god of earth's fertility and peace and prosperity; son of Njorth and brother of Freya; originally of the Vanir; later with the Aesir
+6315,Freya Freyja,(Norse mythology) goddess of love and fecundity; daughter of Njorth and sister of Frey
+6316,Frick Henry_Clay_Frick,United States industrialist who amassed a fortune in the steel industry (1849-1919)
+6317,Friday Fri,the sixth day of the week; the fifth working day
+6318,Friedan Betty_Friedan Betty_Naomi_Friedan Betty_Naomi_Goldstein_Friedan,United States feminist who founded a national organization for women (born in 1921)
+6319,Friedman Milton_Friedman,United States economist noted as a proponent of monetarism and for his opposition to government intervention in the economy (born in 1912)
+6320,Friedman_test rabbit_test,pregnancy test that involves injecting some of the woman's urine into an unmated female rabbit and later examining the ovaries of the rabbit; presence of corpora lutea indicates that the woman is pregnant
+6321,Friedreich's_ataxia herediatry_spinal_ataxia,sclerosis of the posterior and lateral columns of the spinal cord; characterized by muscular weakness and abnormal gait; occurs in children
+6322,Friend Quaker,a member of the Religious Society of Friends founded by George Fox (the Friends have never called themselves Quakers)
+6323,Friesian Holstein Holstein-Friesian,a breed of dairy cattle from northern Holland
+6324,Friesland,the western part of the ancient region of Frisia in northern Europe on the North Sea between the Scheldt river and the Weser river; part of this region is now a province in the Netherlands
+6325,Friesland,one of the northernmost provinces of the Netherlands
+6326,Frigg Frigga,(Norse mythology) goddess of the heavens and married love; wife of Odin
+6327,Frigid_Zone polar_zone polar_region,the part of the Earth's surface forming a cap over a pole; characterized by frigid climate
+6328,Frimaire,third month of the Revolutionary calendar (November and December); the frosty month
+6329,Fringilla genus_Fringilla,type genus of the Fringillidae: chaffinch, brambling
+6330,Fringillidae family_Fringillidae,finches: goldfinches; bullfinches; chaffinches; siskins; canaries; cardinals; grosbeaks; crossbills; linnets; buntings
+6331,Frisbee,a light, plastic disk about 10 inches in diameter; propelled with a flip of the wrist for recreation or competition
+6332,Frisch Karl_von_Frisch,Austrian zoologist noted for his studies of honeybees (1886-1982)
+6333,Frisch Otto_Frisch Otto_Robert_Frisch,British physicist (born in Austria) who with Lise Meitner recognized that Otto Hahn had produced a new kind of nuclear reaction which they named nuclear fission; Frisch described the explosive potential of a chain nuclear reaction (1904-1979)
+6334,Frisch Ragnar_Frisch Ragnar_Anton_Kittil_Frisch,Norwegian economist noted for his work in econometrics (1895-1973)
+6335,Frisia,an ancient region of northwestern Europe including the Frisian Islands
+6336,Frisian,a native or inhabitant of Friesland or Frisia
+6337,Frisian,a West Germanic language spoken in Friesland in the northwestern Netherlands; a near relative of English
+6338,Frisian_Islands,a chain of islands in the North Sea off the coast of northwestern Europe extending from the IJsselmeer to Jutland
+6339,Fritillaria genus_Fritillaria,fritillary
+6340,Friuli-Venezia_Giulia,a region in northeastern Italy
+6341,Friulian Friuli,a Rhaeto-Romance dialect spoken in northeastern Italy
+6342,Frobisher Sir_Martin_Frobisher,English explorer who led an expedition in search of the Northwest Passage to the orient; served under Drake and helped defeat the Spanish Armada (1535-1594)
+6343,Froebel Friedrich_Froebel Friedrich_Wilhelm_August_Froebel,German educator who founded the kindergarten system (1782-1852)
+6344,Froelichia genus_Froelichia,genus of erect or procumbent herbs of the Americas having spikes of woolly white flowers: cottonweed
+6345,Frost Robert_Frost Robert_Lee_Frost,United States poet famous for his lyrical poems on country life in New England (1874-1963)
+6346,Frost's_bolete Boletus_frostii,a fungus with a red cap and a red coarsely reticulate stalk
+6347,Fructidor,twelfth month of the Revolutionary calendar (August and September); the month of fruit
+6348,Fry Christopher_Fry,English dramatist noted for his comic verse dramas (born 1907)
+6349,Fry Roger_Fry Roger_Eliot_Fry,English painter and art critic (1866-1934)
+6350,Frye Northrop_Frye Herman_Northrop_Frye,Canadian literary critic interested in the use of myth and symbolism (1912-1991)
+6351,Fucaceae family_Fucaceae,small family of brown algae: gulfweeds; rockweeds
+6352,Fucales order_Fucales,coextensive with the family Fucaceae
+6353,Fuchs Klaus_Fuchs Emil_Klaus_Julius_Fuchs,British physicist who was born in Germany and fled Nazi persecution; in the 1940s he passed secret information to the USSR about the development of the atom bomb in the United States (1911-1988)
+6354,Fuego,a volcano in south central Guatemala
+6355,Fuentes Carlos_Fuentes,Mexican novelist (born in 1928)
+6356,Fugard Athol_Fugard,South African playwright whose plays feature the racial tensions in South Africa during apartheid (born in 1932)
+6357,Fuji Mount_Fuji Fujiyama Fujinoyama Fuji-san,an extinct volcano in south central Honshu that is the highest peak in Japan; last erupted in 1707; famous for its symmetrical snow-capped peak; a sacred mountain and site for pilgrimages
+6358,Fukuoka,a city in southern Japan on Kyushu
+6359,Fula Ful Fulani Peul,a family of languages of the Fulani of West Africa and used as a lingua franca in the sub-Saharan regions from Senegal to Chad; the best known of the West African languages
+6360,Fulani Fula Fulah Fellata Fulbe,a member of a pastoral and nomadic people of western Africa; they are traditionally cattle herders of Muslim faith
+6361,Fulbright William_Fulbright James_William_Fulbright,United States senator who is remembered for his creation of grants that fund exchange programs of teachers and students between the United States and other countries (1905-1995)
+6362,Fulgoridae family_Fulgoridae,plant hoppers: lantern flies
+6363,Fulica genus_Fulica,coots
+6364,Fuller Buckminster_Fuller R._Buckminster_Fuller Richard_Buckminster_Fuller,United States architect who invented the geodesic dome (1895-1983)
+6365,Fuller Melville_W._Fuller Melville_Weston_Fuller,United States jurist and chief justice of the United States Supreme Court (1833-1910)
+6366,Fulmarus genus_Fulmarus,fulmars
+6367,Fulton Robert_Fulton,American inventor who designed the first commercially successful steamboat and the first steam warship (1765-1815)
+6368,Fumaria genus_Fumaria,annual herbs whose flowers have only one petal spurred at the base
+6369,Fumariaceae family_Fumariaceae fumitory_family,erect or climbing herbs of the northern hemisphere and southern Africa: bleeding heart; Dutchman's breeches; fumitory; squirrel corn
+6370,Funafuti,capital of Tuvalu
+6371,Fundulus genus_Fundulus,killifish
+6372,Fungi kingdom_Fungi fungus_kingdom,the taxonomic kingdom including yeast, molds, smuts, mushrooms, and toadstools; distinct from the green plants
+6373,Fungia genus_Fungia,a genus comprising the usual mushroom corals
+6374,Funk Casimir_Funk,United States biochemist (born in Poland) who showed that several diseases were caused by dietary deficiencies and who coined the term `vitamin' for the chemicals involved (1884-1967)
+6375,Furnariidae family_Furnariidae,e.g. ovenbirds
+6376,Furnarius genus_Furnarius,type genus of the family Furnariidae: ovenbirds
+6377,Furnivall Frederick_James_Furnivall,English philologist who first proposed the Oxford English Dictionary (1825-1910)
+6378,Fury Eumenides Erinyes,(classical mythology) the hideous snake-haired monsters (usually three in number) who pursued unpunished criminals
+6379,Fuscoboletinus genus_Fuscoboletinus,a genus of fungi belonging to the family Boletaceae
+6380,Fuscoboletinus_paluster,an edible fungus with a pinkish purple cap and stalk and a pore surface that is yellow with large angular pores that become like gills in maturity
+6381,Fuscoboletinus_serotinus,an edible fungus with a broadly convex brown cap and a whitish pore surface and stalk
+6382,G g,the 7th letter of the Roman alphabet
+6383,G-man FBI_agent government_man,a special law-enforcement agent of the Federal Bureau of Investigation
+6384,G-string thong,minimal clothing worn by stripteasers; a narrow strip of fabric that covers the pubic area, passes between the thighs, and is supported by a waistband
+6385,GIGO,(computer science) a rule stating that the quality of the output is a function of the quality of the input; put garbage in and you get garbage out
+6386,GI_series,diagnostic tests of the alimentary canal; usually involves inserting a contrast medium (such as barium sulfate) and taking an X-ray
+6387,Gable Clark_Gable William_Clark_Gable,United States film actor (1901-1960)
+6388,Gabon Gabonese_Republic Gabun,a republic on the west coast of Africa
+6389,Gabon_franc,the basic unit of money in Gabon
+6390,Gabonese,a native or inhabitant of Gabon
+6391,Gabor Dennis_Gabor,British physicist (born in Hungary) noted for his work on holography (1900-1979)
+6392,Gaboriau Emile_Gaboriau,French writer considered by some to be a founder of the detective novel (1832-1873)
+6393,Gaborone capital_of_Botswana,capital and largest city of Botswana in the extreme southeast
+6394,Gabriel,(Bible) the archangel who was the messenger of God
+6395,Gadaba,a member of an agricultural people in southeastern India
+6396,Gadaba,the Dravidian language spoken by the Gadaba
+6397,Gadidae family_Gadidae,large family of important mostly marine food fishes
+6398,Gadiformes order_Gadiformes,cods, haddocks, grenadiers; in some classifications considered equivalent to the order Anacanthini
+6399,Gadsden,an industrial town in north central Alabama
+6400,Gadus genus_Gadus,type genus of the Gadidae: the typical codfishes
+6401,Gaea Gaia Ge,(Greek mythology) goddess of the earth and mother of Cronus and the Titans in ancient mythology
+6402,Gael,a Gaelic-speaking Celt in Ireland or Scotland or the Isle of Man
+6403,Gaelic Goidelic Erse,any of several related languages of the Celts in Ireland and Scotland
+6404,Gafsa,a city in west central Tunisia
+6405,Gagarin Yuri_Gagarin Yuri_Alekseyevich_Gagarin,Soviet cosmonaut who in 1961 was the first person to travel in space (1934-1968)
+6406,Gainesville,a university town in north central Florida
+6407,Gainsborough Thomas_Gainsborough,English portrait and landscape painter (1727-1788)
+6408,Galahad Sir_Galahad,(Arthurian legend) the most virtuous knight of the Round Table; was able to see the Holy Grail
+6409,Galan,a mountain peak in the Andes in Argentina (21,654 feet high)
+6410,Galapagos_Islands Galapagos,a group of islands in the Pacific off South America; owned by Ecuador; known for unusual animal life
+6411,Galatea,(Greek mythology) a maiden who was first a sculpture created by Pygmalion and was brought to life by Aphrodite in answer to Pygmalion's prayers
+6412,Galatia,an ancient country in central Asia Minor
+6413,Galatian,a native or inhabitant of Galatia in Asia Minor (especially a member of a people believed to have been Gauls who conquered Galatia in the 3rd century BC)
+6414,Galbraith John_Galbraith John_Kenneth_Galbraith,United States economist (born in Canada) who served as ambassador to India (born in 1908)
+6415,Galbulidae family_Galbulidae,jacamars
+6416,Galega genus_Galega,small genus of Eurasian herbs: goat's rue
+6417,Galen,Greek anatomist whose theories formed the basis of European medicine until the Renaissance (circa 130-200)
+6418,Galeocerdo genus_Galeocerdo,tiger sharks
+6419,Galeopsis genus_Galeopsis,erect annual European herbs
+6420,Galeorhinus genus_Galeorhinus,a genus of Carcharhinidae
+6421,Galeras Pasto,an active volcano in southeastern Colombia in the Andes
+6422,Galicia,a region (and former kingdom) in northwestern Spain on the Atlantic and the Bay of Biscay
+6423,Galician,a language spoken in Galicia, an Autonomus Community of Spain
+6424,Galiella_rufa,the cup-shaped fruiting body of this discomycete has a jellylike interior and a short stalk
+6425,Galilean Galilaean,an inhabitant of Galilee (an epithet of Jesus Christ)
+6426,Galilean_satellite Galilean,one of the four satellites of Jupiter that were discovered by Galileo
+6427,Galilean_telescope,a type of refracting telescope that is no longer used in astronomy
+6428,Galilee,an area of northern Israel; formerly the northern part of Palestine and the ancient kingdom of Israel; the scene of Jesus's ministry
+6429,Galileo Galileo_Galilei,Italian astronomer and mathematician who was the first to use a telescope to study the stars; demonstrated that different weights descend at the same rate; perfected the refracting telescope that enabled him to make many discoveries (1564-1642)
+6430,Galium genus_Galium,annual or perennial herbs: bedstraw; cleavers
+6431,Gallant_Fox,thoroughbred that won the triple crown in 1930
+6432,Gallaudet Thomas_Hopkins_Gallaudet,United States educator who established the first free school in the United States for the hearing impaired (1787-1851)
+6433,Galleria genus_Galleria,a genus of Pyralidae
+6434,Galliano,golden Italian liqueur flavored with herbs
+6435,Gallicanism,a religious movement originating among the French Roman Catholic clergy that favored the restriction of papal control and the achievement by each nation of individual administrative autonomy of the church
+6436,Gallicism,a word or phrase borrowed from French
+6437,Galliformes order_Galliformes,pheasants; turkeys; grouse; partridges; quails; chickens; brush turkeys; curassows; hoatzins
+6438,Gallinago genus_Gallinago Capella genus_Capella,snipes
+6439,Gallinula genus_Gallinula,gallinules
+6440,Gallirallus genus_Gallirallus,rails of New Zealand
+6441,Galloway,a district in southwestern Scotland
+6442,Galloway,breed of hardy black chiefly beef cattle native to Scotland
+6443,Gallup,a town in northwestern New Mexico near the Arizona border
+6444,Gallus genus_Gallus,common domestic birds and related forms
+6445,Galois Evariste_Galois,French mathematician who described the conditions for solving polynomial equations; was killed in a duel at the age of 21 (1811-1832)
+6446,Galois_theory,group theory applied to the solution of algebraic equations
+6447,Galsworthy John_Galsworthy,English novelist (1867-1933)
+6448,Galton Francis_Galton Sir_Francis_Galton,English scientist (cousin of Charles Darwin) who explored many fields including heredity, meteorology, statistics, psychology, and anthropology; founder of eugenics and first to use fingerprints for identification (1822-1911)
+6449,Galvani Luigi_Galvani,Italian physiologist noted for his discovery that frogs' muscles contracted in an electric field (which led to the galvanic cell) (1737-1798)
+6450,Galveston,a town in southeast Texas on Galveston Island
+6451,Galveston_Bay,an arm of the Gulf of Mexico in Texas to the south of Houston
+6452,Galveston_Island,an island at the entrance of Galveston Bay
+6453,Galway,a port city in western Ireland on Galway Bay
+6454,Galway_Bay,a bay of the North Atlantic on the west coast of Ireland
+6455,Gambelia genus_Gambelia,leopard lizards
+6456,Gambia The_Gambia Republic_of_The_Gambia,a narrow republic surrounded by Senegal in West Africa
+6457,Gambian,a native or inhabitant of Gambia
+6458,Gambian_monetary_unit,monetary unit in Gambia
+6459,Gambier_Islands,a group of islands in the south central Pacific; part of French Polynesia
+6460,Gambusia genus_Gambusia,mosquitofish
+6461,Gamow George_Gamow,United States physicist (born in Russia) who was a proponent of the big-bang theory and who did research in radioactivity and suggested the triplet code for DNA (1904-1968)
+6462,Gan_Jiang Kan_River,a river in southeastern China that flows generally north into the Chang Jiang to the north of Nanchang
+6463,Gandhi Indira_Gandhi Indira_Nehru_Gandhi Mrs._Gandhi,daughter of Nehru who served as prime minister of India from 1966 to 1977 (1917-1984)
+6464,Gandhi Mahatma_Gandhi Mohandas_Karamchand_Gandhi,political and spiritual leader during India's struggle with Great Britain for home rule; an advocate of passive resistance (1869-1948)
+6465,Ganesh Ganesa Ganesha Ganapati,Hindu god of wisdom or prophecy; the god who removes obstacles
+6466,Ganges Ganges_River,an Asian river; rises in the Himalayas and flows east into the Bay of Bengal; a sacred river of the Hindus
+6467,Ganoidei order_Ganoidei,a group of mostly extinct primitive bony fishes characterized by armor-like bony scales
+6468,Gansu Kansu Gansu_province,a province in north-central China; formerly part of the Silk Road to Turkistan and India and Persia
+6469,Ganymede,(Greek mythology) a Trojan boy who was so beautiful that Zeus carried him away to serve as cupbearer to the gods
+6470,Ganymede,the largest of Jupiter's satellites
+6471,Garand_rifle Garand M-1 M-1_rifle,a semiautomatic rifle
+6472,Garbo Greta_Garbo Greta_Louisa_Gustafsson,United States film actress (born in Sweden) known for her reclusiveness (1905-1990)
+6473,Garcia_Lorca Frederico_Garcia_Lorca Lorca,Spanish poet and dramatist who was shot dead by Franco's soldiers soon after the start of the Spanish Civil War (1898-1936)
+6474,Garcinia genus_Garcinia,evergreen trees and shrubs: mangosteens
+6475,Gardiner Samuel_Rawson_Gardiner,British historian remembered for his ten-volume history of England (1829-1902)
+6476,Gardner Erle_Stanley_Gardner,writer of detective novels featuring Perry Mason (1889-1970)
+6477,Gardner Isabella_Stewart_Gardner,United States collector and patron of art who built a museum in Boston to house her collection and opened it to the public in 1903 (1840-1924)
+6478,Garfield James_Garfield James_A._Garfield James_Abraham_Garfield President_Garfield,20th President of the United States; assassinated by a frustrated office-seeker (1831-1881)
+6479,Gargantua,a voracious giant in Francois Rabelais' book of the same name
+6480,Garibaldi Giuseppe_Garibaldi,Italian patriot whose conquest of Sicily and Naples led to the formation of the Italian state (1807-1882)
+6481,Garland,a city in northeastern Texas (suburb of Dallas)
+6482,Garland Judy_Garland,United States singer and film actress (1922-1969)
+6483,Garnier Jean_Louis_Charles_Garnier,French architect (1825-1898)
+6484,Garonne Garonne_River,a river that rises in the Pyrenees and flows northwest to the Bay of Biscay
+6485,Garrick David_Garrick,English actor and theater manager who was the foremost Shakespearean actor of his day (1717-1779)
+6486,Garrison William_Lloyd_Garrison,United States abolitionist who published an anti-slavery journal (1805-1879)
+6487,Garrulinae subfamily_Garrulinae,subfamily of the crow family: jays
+6488,Garrulus genus_Garrulus,type genus of the Garrulinae: Old World jays
+6489,Garuda,a supernatural eagle-like being that serves as Vishnu's mount
+6490,Gary,a city in northwest Indiana on Lake Michigan; steel production
+6491,Gascogne Gascony,a region of southwestern France
+6492,Gasherbrum,a mountain in northern Kashmir (26,470 feet high)
+6493,Gaskell Elizabeth_Gaskell Elizabeth_Cleghorn_Stevenson_Gaskell,English writer who is remembered for her biography of Charlotte Bronte (1810-1865)
+6494,Gasteromycetes class_Gasteromycetes Gastromycetes class_Gastromycetes,fungi in which the hymenium is enclosed until after spores have matured: puffballs; earth stars; stinkhorn fungi
+6495,Gasterophilidae family_Gasterophilidae,horse botflies
+6496,Gasterophilus genus_Gasterophilus,type genus of the Gasterophilidae: horse botflies
+6497,Gasterosteidae family_Gasterosteidae,sticklebacks
+6498,Gasterosteus genus_gasterosteus,type genus of the family Gasterosteidae
+6499,Gastroboletus genus_Gastroboletus,a genus of fungi belonging to the family Secotiaceae; they resemble boletes but the spores are not discharged from the basidium
+6500,Gastroboletus_scabrosus,a dingy yellow brown fungus with a rough stalk that superficially resembles a bolete
+6501,Gastroboletus_turbinatus,a fungus with a cap that can vary from red to dark brown; superficially resembles a bolete
+6502,Gastrocybe genus_Gastrocybe,a genus of fungi of the family Secotiaceae
+6503,Gastrocybe_lateritia,a species of Gastrocybe fungus that has a conic cap and a thin stalk; at first the stalk is upright but as it matures the stalk bends over and then downward; the cap then gelatinizes and a slimy mass containing the spores falls to the ground as the stalk collapses
+6504,Gastrophryne genus_Gastrophryne,primarily tropical narrow-mouthed toads
+6505,Gastropoda class_Gastropoda Gasteropoda class_Gasteropoda,snails and slugs and their relatives
+6506,Gates Bill_Gates William_Henry_Gates,United States computer entrepreneur whose software company made him the youngest multi-billionaire in the history of the United States (born in 1955)
+6507,Gates_of_the_Arctic_National_Park,a large national park in Alaska featuring the Great Mendenhall Glacier
+6508,Gathic,an ancient Iranian language
+6509,Gatling Richard_Jordan_Gatling,United States inventor of the first rapid firing gun (1818-1903)
+6510,Gatling_gun,an early form of machine gun having several barrels that fire in sequence as they are rotated
+6511,Gaucher's_disease,a rare chronic disorder of lipid metabolism of genetic origin
+6512,Gaudi Antonio_Gaudi Gaudi_i_Cornet Antonio_Gaudi_i_Cornet,Spanish architect who was a leading exponent of art nouveau in Europe (1852-1926)
+6513,Gauguin Paul_Gauguin,French Post-impressionist painter who worked in the South Pacific (1848-1903)
+6514,Gaul,a Celt of ancient Gaul
+6515,Gaul Gallia,an ancient region of western Europe that included what is now northern Italy and France and Belgium and part of Germany and the Netherlands
+6516,Gaultheria genus_Gaultheria,widely distributed genus of creeping or upright evergreen shrubs
+6517,Gauri,in Hinduism, goddess of purity and posterity and a benevolent aspect of Devi; the `brilliant'
+6518,Gauss Karl_Gauss Karl_Friedrich_Gauss,German mathematician who developed the theory of numbers and who applied mathematics to electricity and magnetism and astronomy and geodesy (1777-1855)
+6519,Gavia genus_Gavia,type genus of the Gavidae: loons
+6520,Gavialidae family_Gavialidae,gavials
+6521,Gavialis genus_Gavialis,type genus of the Gavialidae
+6522,Gavidae family_Gavidae,loon family
+6523,Gaviiformes order_Gaviiformes,large aquatic birds: loons and some extinct forms
+6524,Gawain Sir_Gawain,(Arthurian legend) a nephew of Arthur and one of the knights of the Round Table
+6525,Gay-Lussac Joseph_Louis_Gay-Lussac,French chemist and physicist who first isolated boron and who formulated the law describing the behavior of gases under constant pressure (1778-1850)
+6526,Gay-Lussac's_law Charles's_law law_of_volumes,(physics) the density of an ideal gas at constant pressure varies inversely with the temperature
+6527,Gaylussacia genus_Gaylussacia,deciduous or evergreen shrubs of North America: black huckleberries
+6528,Gaza_Strip Gaza,a coastal region at the southeastern corner of the Mediterranean bordering Israel and Egypt; "he is a Palestinian from Gaza"
+6529,Gazella genus_Gazella,typical gazelles
+6530,Gazella_subgutturosa,a kind of gazelle
+6531,Gdansk Danzig,a port city of northern Poland near the mouth of the Vistula River on a gulf of the Baltic Sea; a member of the Hanseatic League in the 14th century
+6532,Geastraceae family_Geastraceae,a family of earthstar fungi belonging to the order Lycoperdales
+6533,Geastrum genus_Geastrum,type genus of Geastraceae; fungi whose outer peridium when dry splits into starlike segments
+6534,Geastrum_coronatum,an earthstar with a bluish spore sac and a purplish brown gleba; at maturity the outer layer splits into rays that bend backward and elevate the spore sac
+6535,Geb Keb,Egyptian god of the earth; father of Osiris and Isis
+6536,Geglossaceae,a type of ascomycetous fungus
+6537,Gehenna Tartarus,a place where the wicked are punished after death
+6538,Gehrig Lou_Gehrig Henry_Louis_Gehrig,baseball player who died of amyotrophic lateral sclerosis (1903-1941)
+6539,Geiger Hans_Geiger,German physicist who developed the Geiger counter (1882-1945)
+6540,Geiger_counter Geiger-Muller_counter,counter tube that detects ionizing radiations
+6541,Geiger_tube Geiger-Muller_tube,an ionization chamber contained in a tube in a Geiger counter
+6542,Geisel Theodor_Seuss_Geisel Dr._Seuss,United States writer of children's books (1904-1991)
+6543,Gekkonidae family_Gekkonidae,geckos
+6544,Gelechia genus_Gelechia,type genus of the Gelechiidae: pink bollworms
+6545,Gelechia_gossypiella,small brown moth whose larvae bore into flowers and bolls of cotton
+6546,Gelechiidae family_Gelechiidae,important economic pests
+6547,Gell-Mann Murray_Gell-Mann,United States physicist noted for his studies of subatomic particles (born in 1929)
+6548,Gelsemium genus_Gelsemium,evergreen twining shrubs of Americas and southeastern Asia
+6549,Gemara,the second part of the Talmud consisting primarily of commentary on the Mishna
+6550,Gemini,a zodiacal constellation in the northern hemisphere between Taurus and Cancer on the ecliptic
+6551,Gemini Gemini_the_Twins Twins,the third sign of the zodiac; the sun is in this sign from about May 21 to June 20
+6552,Gemini Twin,(astrology) a person who is born while the sun is in Gemini
+6553,Gemini_program,a program of space flights undertaken by US in 1965 and 1966; "under the Gemini program each crew had two astronauts"
+6554,Gempylidae family_Gempylidae,snake mackerels
+6555,Gempylus genus_Gempylus,type genus of the Gempylidae
+6556,General_Agreement_on_Tariffs_and_Trade GATT,a United Nations agency created by a multinational treaty to promote trade by the reduction of tariffs and import quotas
+6557,General_Assembly,the supreme deliberative assembly of the United Nations
+6558,General_Certificate_of_Secondary_Education GCSE O_level,the basic level of a subject taken in school
+6559,General_Services_Administration GSA,a central management agency that sets Federal policy for Federal procurement and real property management and information resources management
+6560,Genesis Book_of_Genesis,the first book of the Old Testament: tells of Creation; Adam and Eve; the Fall of Man; Cain and Abel; Noah and the flood; God's covenant with Abraham; Abraham and Isaac; Jacob and Esau; Joseph and his brothers
+6561,Genet Edmund_Charles_Edouard_Genet Citizen_Genet,French diplomat who in 1793 tried to draw the United States into the war between France and England (1763-1834)
+6562,Genet Jean_Genet,French writer of novels and dramas for the theater of the absurd (1910-1986)
+6563,Genetta genus_Genetta,genets
+6564,Geneva Geneve Genf,a city in southwestern Switzerland at the western end of Lake Geneva; it is the headquarters of various international organizations
+6565,Geneva_Convention,an agreement first drawn up in Geneva in 1864 and later revised concerning the treatment of captured and wounded military personnel and civilians in wartime
+6566,Geneva_gown,black academic gown widely used by Protestant clergymen
+6567,Genevan,a native or resident of Geneva
+6568,Genghis_Khan Jinghis_Khan Jenghiz_Khan Temujin,Mongolian emperor whose empire stretched from the Black Sea to the Pacific Ocean (1162-1227)
+6569,Genista genus_Genista,chiefly deciduous shrubs or small trees of Mediterranean area and western Asia: broom
+6570,Genoa Genova,a seaport in northwestern Italy; provincial capital of Liguria
+6571,Genoese,a native or resident of Genoa
+6572,Genseric Gaiseric,king of the Vandals who seized Roman lands and invaded North Africa and sacked Rome (428-477)
+6573,Gent Gand Ghent,port city in northwestern Belgium and industrial center; famous for cloth industry
+6574,Gentiana genus_Gentiana,type genus of the Gentianaceae; cosmopolitan genus of herbs nearly cosmopolitan in cool temperate regions; in some classifications includes genera Gentianopsis and Gentianella
+6575,Gentianaceae family_Gentianaceae gentian_family,chiefly herbaceous plants with showy flowers; some are cultivated as ornamentals
+6576,Gentianales order_Gentianales,an order of dicotyledonous plants having gamopetalous flowers; Gentianaceae; Apocynaceae; Asclepiadaceae; Loganiaceae; Oleaceae; Salvadoraceae
+6577,Gentianella genus_Gentianella,genus of herbs with flowers that resemble gentian; in some classifications included in genus Gentiana
+6578,Gentianopsid_procera Gentiana_procera,small blue-flowered fringed gentian of east central North America
+6579,Gentianopsis genus_Gentianopsis,genus of fringed gentians; in some classifications included in genus Gentiana
+6580,Gentianopsis_crinita Gentiana_crinita,tall widely distributed fringed gentian of eastern North America having violet-blue or white fringed flowers
+6581,Gentianopsis_detonsa Gentiana_detonsa,medium-tall fringed gentian with pale-blue to blue-purple flowers; circumboreal in distribution
+6582,Gentianopsis_thermalis Gentiana_thermalis,small blue-flowered fringed gentian of western United States (Rocky Mountains) especially around hot springs in Yellowstone National Park
+6583,Genyonemus genus_Genyonemus,a genus of Sciaenidae
+6584,Geochelone genus_Geochelone,giant tortoises
+6585,Geococcyx genus_Geococcyx,roadrunners
+6586,Geoffrey_of_Monmouth,Welsh chronicler who wrote an account of the kings of Britain which is now believed to contain little historical fact but it is a source of the Arthurian legend (circa 1100-1154)
+6587,Geoffroea genus_Geoffroea,small genus of shrubs or small trees of tropical and subtropical America
+6588,Geogia_holly,a holly shrub
+6589,Geoglossaceae family_Geoglossaceae,a family of fungi belonging to the order Helotiales
+6590,Geoglossum genus_Geoglossum,type genus of the Geoglossaceae comprising the earthtongues
+6591,Geometridae family_Geometridae,measuring worms
+6592,Geomyidae family_Geomyidae,North American pocket gophers
+6593,Geomys genus_Geomys,type genus of the Geomyidae
+6594,Geophilidae family_Geophilidae,small extremely elongate centipedes that live in earth
+6595,Geophilomorpha order_Geophilomorpha,small elongate centipedes living in soil and under stones and having more than 30 pairs of legs
+6596,Geophilus genus_Geophilus,type genus of the Geophilidae: a cosmopolitan genus of centipedes sometimes called earwigs
+6597,Geordie,a native of Newcastle-upon-Tyne
+6598,George George_I,Elector of Hanover and the first Hanoverian King of Great Britain and Ireland from 1714 to 1727 (1660-1727)
+6599,George George_II,King of Great Britain and Elector of Hanover from 1727 to 1760 (1683-1760)
+6600,George George_III,King of Great Britain and Ireland from 1760 to 1820; the American colonies were lost during his reign; he became insane in 1811 and his son (later George IV) acted as regent until 1820 (1738-1820)
+6601,George George_IV,King of Great Britain and Ireland and Hanover from 1820 to 1830; his attempt to divorce his estranged wife undermined the prestige of the Crown (1762-1830)
+6602,George George_V,King of Great Britain and Ireland and emperor of India from 1910 to 1936; gave up his German title in 1917 during World War I (1865-1936)
+6603,George George_VI,King of Great Britain and Ireland and emperor of India from 1936 to 1947; he succeeded Edward VIII (1895-1952)
+6604,George Saint_George St._George,Christian martyr; patron saint of England; hero of the legend of Saint George and the Dragon in which he slew a dragon and saved a princess (?-303)
+6605,George_Town,the capital of the Cayman Islands
+6606,George_Washington_Bridge,a suspension bridge across the Hudson River between New York and New Jersey
+6607,Georgetown,a section of northwestern Washington, D.C.
+6608,Georgetown Stabroek,port city and the capital and largest city of Guyana; "the city was called Stabroek by the Dutch but was renamed Georgetown by the British in 1812"
+6609,Georgia,one of the British colonies that formed the United States
+6610,Georgia Empire_State_of_the_South Peach_State GA Ga.,a state in southeastern United States; one of the Confederate states during the American Civil War
+6611,Georgia Sakartvelo,a republic in Asia Minor on the Black Sea separated from Russia by the Caucasus mountains; formerly an Asian soviet but became independent in 1991
+6612,Georgian,a native or resident of the American state of Georgia
+6613,Georgian,a native or inhabitant of Georgia in Asia
+6614,Georgian,a southern Caucasian language with 3 million speakers and a long literary tradition
+6615,Georgian_monetary_unit,monetary unit in Georgia
+6616,Geothlypis genus_Geothlypis,yellowthroats
+6617,Geraint Sir_Geraint,(Arthurian legend) one of the knights of the Round Table
+6618,Geraniaceae family_Geraniaceae geranium_family,chiefly herbaceous plants
+6619,Geraniales order_Geraniales,an order of plants of subclass Rosidae including geraniums and many other plants; see Euphorbiaceae; Geraniaceae; Rutaceae; Malpighiaceae; Simaroubaceae; Meliaceae; Zygophyllaceae; Tropaeolaceae
+6620,Gerbera genus_Gerbera,genus of South African or Asiatic herbs: African daisies
+6621,Gerbillinae subfamily_Gerbillinae,gerbils
+6622,Gerbillus genus_Gerbillus,type genus of the Gerbillinae: typical gerbils
+6623,Gerea genus_Gerea,small genus of hairy herbs with yellow flowers
+6624,German,a person of German nationality
+6625,German High_German German_language,the standard German language; developed historically from West Germanic
+6626,German_American,an American who was born in Germany or whose ancestors were German
+6627,German_cockroach Croton_bug crotonbug water_bug Blattella_germanica,small light-brown cockroach brought to United States from Europe; a common household pest
+6628,German_iris Iris_germanica,a large iris with purple or white flowers, native to central and southern Europe
+6629,German_iris Iris_kochii,iris of northern Italy having deep blue-purple flowers; similar to but smaller than Iris germanica
+6630,German_ivy Delairea_odorata Senecio_milkanioides,South African succulent evergreen twining climber with yellow flowers grown primarily as a houseplant for its foliage; sometimes placed in genus Senecio
+6631,German_lesson,instruction in the German language
+6632,German_measles rubella three-day_measles epidemic_roseola,a contagious viral disease that is a milder form of measles lasting three or four days; can be damaging to a fetus during the first trimester
+6633,German_millet golden_wonder_millet Setaria_italica_stramineofructa,millet having yellow grains in large drooping spikes
+6634,German_monetary_unit,monetary unit in Germany
+6635,German_shepherd German_shepherd_dog German_police_dog alsatian,breed of large shepherd dogs used in police work and as a guide for the blind
+6636,German_short-haired_pointer,liver or liver-and-white hunting dog developed in Germany; 3/4 pointer and 1/4 bloodhound
+6637,Germanic Germanic_language,a branch of the Indo-European family of languages; members that are spoken currently fall into two major groups: Scandinavian and West Germanic
+6638,Germanism,a custom that is peculiar to Germany or its citizens
+6639,Germanist,a specialist in the study of Germanic language or culture or literature
+6640,Germany Federal_Republic_of_Germany Deutschland FRG,a republic in central Europe; split into East Germany and West Germany after World War II and reunited in 1990
+6641,Germinal,seventh month of the Revolutionary calendar (March and April); the month of buds
+6642,Geronimo,Apache chieftain who raided the white settlers in the Southwest as resistance to being confined to a reservation (1829-1909)
+6643,Gerreidae family_Gerreidae Gerridae family_Gerridae,mojarras
+6644,Gerres genus_Gerres,type genus of the Gerreidae
+6645,Gerrhonotus genus_Gerrhonotus,alligator lizards
+6646,Gerrididae family_Gerrididae Gerridae family_Gerridae,an arthropod family that includes water striders
+6647,Gerris genus_Gerris,type genus of the Gerrididae
+6648,Gershwin George_Gershwin,United States composer who incorporated jazz into classical forms and composed scores for musical comedies (1898-1937)
+6649,Gershwin Ira_Gershwin,United States lyricist who frequently collaborated with his brother George Gershwin (1896-1983)
+6650,Geryon,(Greek mythology) a mythical monster with three heads that was slain by Hercules
+6651,Gesell Arnold_Gesell Arnold_Lucius_Gesell,United States psychologist noted for his work in child development (1880-1961)
+6652,Gesner Konrad_von_Gesner,Swiss naturalist who was one of the founders of modern zoology (1516-1565)
+6653,Gesneriaceae family_Gesneriaceae gesneria_family,large family of tropical herbs or shrubs or lianas; in some classification systems placed in the order Scrophulariales
+6654,Gestalt_law_of_organization Gestalt_principle_of_organization,a principle of Gestalt psychology that identifies factors leading to particular forms of perceptual organization
+6655,Gestalt_psychology configurationism,(psychology) a theory of psychology that emphasizes the importance of configurational properties
+6656,Gestapo,the secret state police in Nazi Germany; known for its terrorist methods
+6657,Gettysburg,a small town in southern Pennsylvania; site of a national cemetery
+6658,Gettysburg Battle_of_Gettysburg,a battle of the American Civil War (1863); the defeat of Robert E. Lee's invading Confederate Army was a major victory for the Union
+6659,Gettysburg_Address,a three-minute address by Abraham Lincoln during the American Civil War at the dedication of a national cemetery on the site of the Battle of Gettysburg (November 19, 1863)
+6660,Geum genus_Geum,avens
+6661,Ghana Republic_of_Ghana Gold_Coast,a republic in West Africa on the Gulf of Guinea; "Ghana was colonized as the Gold Coast by the British"
+6662,Ghanian,a native or inhabitant of Ghana
+6663,Ghanian_monetary_unit,monetary unit of Ghana
+6664,Ghedda_wax,wax from Indian and African bees
+6665,Gheg Gheg_dialect,the dialect of Albanian spoken in northern Albania and Yugoslavia
+6666,Giacometti Alberto_Giacometti,Swiss sculptor and painter known for his bronze sculptures of elongated figures (1901-1966)
+6667,Gibbon Edward_Gibbon,English historian best known for his history of the Roman Empire (1737-1794)
+6668,Gibbs Josiah_Willard_Gibbs,United States chemist (1839-1903)
+6669,Gibraltar Rock_of_Gibraltar Calpe,location of a colony of the United Kingdom on a limestone promontory at the southern tip of Spain; strategically important because it can control the entrance of ships into the Mediterranean; one of the Pillars of Hercules
+6670,Gibraltarian,a native or inhabitant of Gibraltar
+6671,Gibran Kahlil_Gibran,United States writer (born in Lebanon) (1883-1931)
+6672,Gibson Althea_Gibson,United States tennis player who was the first Black woman player to win all the major world singles titles (1927-2003)
+6673,Gibson C._D._Gibson Charles_Dana_Gibson,United States illustrator remembered for his creation of the `Gibson girl' (1867-1944)
+6674,Gibson Mel_Gibson Mel_Columcille_Gerard_Gibson,Australian actor (born in the United States in 1956)
+6675,Gibson_Desert,a desert area in western Australia
+6676,Gibson_girl,the idealized American girl of the 1890s as pictured by C. D. Gibson
+6677,Gidar,a Chadic language spoken south of Lake Chad
+6678,Gide Andre_Gide Andre_Paul_Guillaume_Gide,French author and dramatist who is regarded as the father of modern French literature (1869-1951)
+6679,Gielgud Sir_John_Gielgud Arthur_John_Gielgud,English actor of Shakespearean roles who was also noted for appearances in films (1904-2000)
+6680,Gigartinaceae family_Gigartinaceae,a family of protoctist
+6681,Gikuyu,a Bantu language spoken in western Kenya
+6682,Gila Gila_River,a river that rises in western New Mexico and flows westward through southern Arizona to become a tributary of the Colorado River
+6683,Gila_Desert,a desert area in southern Arizona
+6684,Gila_monster Heloderma_suspectum,large orange and black lizard of southwestern United States; not dangerous unless molested
+6685,Gilbert Cass_Gilbert,United States architect who influenced the development of the skyscraper (1859-1934)
+6686,Gilbert Humphrey_Gilbert Sir_Humphrey_Gilbert,English navigator who in 1583 established in Newfoundland the first English colony in North America (1539-1583)
+6687,Gilbert William_Gilbert,English court physician noted for his studies of terrestrial magnetism (1540-1603)
+6688,Gilbert William_Gilbert William_S._Gilbert William_Schwenk_Gilbert Sir_William_Gilbert,a librettist who was a collaborator with Sir Arthur Sullivan in a famous series of comic operettas (1836-1911)
+6689,Gilbert_Islands,a group of islands in Micronesia to the southwest of Hawaii; formerly part of the British colony of Gilbert and Ellice Islands until it became part of the Republic of Kiribati in 1979
+6690,Gilbert_and_Ellice_Islands,a former British possession in Micronesia
+6691,Gilbert_and_Sullivan,the music of Gilbert and Sullivan; "he could sing all of Gilbert and Sullivan"
+6692,Gilgamesh,a legendary Sumerian king who was the hero of an epic collection of mythic stories
+6693,Gilgamish,legendary Sumerian king and hero of Sumerian and Babylonian epics
+6694,Gillespie Dizzy_Gillespie John_Birks_Gillespie,United States jazz trumpeter and exponent of bebop (1917-1993)
+6695,Gillette King_Camp_Gilette,United States inventor and manufacturer who developed the safety razor (1855-1932)
+6696,Gilman Charlotte_Anna_Perkins_Gilman,United States feminist (1860-1935)
+6697,Gilmer Elizabeth_Merriwether_Gilmer Dorothy_Dix,United States journalist who wrote a syndicated column of advice to the lovelorn (1870-1951)
+6698,Ginglymostoma genus_Ginglymostoma,nurse sharks
+6699,Ginkgoaceae family_Ginkgoaceae ginkgo_family,constituting the order Ginkgoales; includes the genus Ginkgo and extinct forms
+6700,Ginkgoales order_Ginkgoales,coextensive with the family Ginkgoaceae: plants that first appeared in the Permian and now represented by a single surviving species; often included in Coniferales
+6701,Ginkgopsida class_Ginkgopsida Ginkgophytina class_Ginkgophytina subdivision_Ginkgophytina subdivision_Ginkgophyta,ginkgos: in some systems classified as a class and in others as a subdivision; used in some classifications for one of five subdivisions of Gymnospermophyta
+6702,Ginsberg Allen_Ginsberg,United States poet of the beat generation (1926-1997)
+6703,Giotto Giotto_di_Bondone,Florentine painter who gave up the stiff Byzantine style and developed a more naturalistic style; considered the greatest Italian painter prior to the Renaissance (1267-1337)
+6704,Giraffa genus_Giraffa,type genus of the Giraffidae
+6705,Giraffidae family_Giraffidae,giraffes
+6706,Girard Stephen_Girard,United States financier (born in France) who helped finance the War of 1812 (1750-1831)
+6707,Giraudoux Jean_Giraudoux Hippolyte_Jean_Giraudoux,French novelist and dramatist whose plays were reinterpretations of Greek myths (1882-1944)
+6708,Giriama,a Bantu language spoken in the coastal regions of eastern Kenya
+6709,Girl_Scout,a girl who is a member of the Girl Scouts
+6710,Girl_Scouts,an organization of young women and girls founded in 1912 for character development and citizenship training
+6711,Gironde,the French moderate political party that was in power (1791-1793) during the French Revolution
+6712,Girondism,the doctrine of the Girondists
+6713,Girondist Girondin,a member of the moderate republican party that was in power during the French Revolution; the Girondists were overthrown by their more radical rivals the Jacobins
+6714,Girru,the Babylonian god of fire; often invoked in incantations against sorcery
+6715,Gish Lillian_Gish,United States film actress who appeared in films by D. W. Griffith (1896-1993)
+6716,Giza El_Giza Gizeh,an ancient Egyptian city on the west bank of the Nile opposite Cairo; site of three Great Pyramids and the Sphinx
+6717,Gjellerup Karl_Gjellerup,Danish novelist (1857-1919)
+6718,Gladstone William_Gladstone William_Ewart_Gladstone,liberal British statesman who served as prime minister four times (1809-1898)
+6719,Glareola genus_Glareola,type genus of the Glareolidae: the pratincoles
+6720,Glareolidae family_Glareolidae,Old World shorebirds: pratincoles and coursers
+6721,Glaser Donald_Glaser Donald_Arthur_Glaser,United States physicist who invented the bubble chamber to study subatomic particles (born in 1926)
+6722,Glasgow,largest city in Scotland; a port on the Clyde in west central Scotland; one of the great shipbuilding centers of the world
+6723,Glaswegian,an inhabitant of Glasgow
+6724,Glauber's_salt Glauber's_salts,(Na2SO4.10H2O) a colorless salt used as a cathartic
+6725,Glaucium genus_Glaucium,herbs of Europe and North Africa and Asia: horned poppy
+6726,Glaucomys genus_Glaucomys,New World flying squirrels
+6727,Glaux genus_Glaux,sea milkwort
+6728,Glechoma genus_Glechoma,ground ivy
+6729,Gleditsia genus_Gleditsia,deciduous trees: honey locusts
+6730,Gleichenia genus_Gleichenia,type genus of Gleicheniaceae: leptosporangiate ferns with sessile sporangia; South Africa to Malaysia and New Zealand
+6731,Gleicheniaceae family_Gleicheniaceae,a family of ferns belonging to order Filicales
+6732,Glen_Canyon_Dam,a large dam built in 1964 on the Colorado River in Arizona
+6733,Glendower Owen_Glendower,Welsh chieftain who led a revolt against Henry IV's rule in Wales (1359-1416)
+6734,Glengarry,a Scottish cap with straight sides and a crease along the top from front to back; worn by Highlanders as part of military dress
+6735,Glenn John_Glenn John_Herschel_Glenn_Jr.,made the first orbital rocket-powered flight by a United States astronaut in 1962; later in United States Senate (1921-)
+6736,Glinka Mikhail_Glinka Mikhail_Ivanovich_Glinka,Russian composer (1804-1857)
+6737,Gliridae family_Gliridae,dormice and other Old World forms
+6738,Glis genus_Glis,type genus of the Gliridae
+6739,Global_Positioning_System GPS,a navigational system involving satellites and computers that can determine the latitude and longitude of a receiver on Earth by computing the time difference for signals from different satellites to reach the receiver
+6740,Globicephala genus_Globicephala,pilot whales
+6741,Globigerinidae family_Globigerinidae,a family of protoctists
+6742,Glossinidae family_Glossinidae,flies closely related to the Muscidae: tsetse flies
+6743,Glossodia genus_Glossodia,small genus of Australian orchids
+6744,Glossopsitta genus_Glossopsitta,a genus of Loriinae
+6745,Gloucester,a town in northeastern Massachusetts on Cape Ann to the northeast of Boston; the harbor has been a fishing center for centuries
+6746,Gloucester,a city in southwestern England in Gloucestershire on the Severn
+6747,Gloucestershire,a county in southwestern England in the lower Severn valley
+6748,Gluck Christoph_Willibald_von_Gluck,German composer of more than 100 operas (1714-1787)
+6749,Glyceria genus_Glyceria,manna grass
+6750,Glycine genus_Glycine,genus of Asiatic erect or sprawling herbs: soya bean
+6751,Glycyrrhiza genus_Glycyrrhiza,sticky perennial Eurasian herbs
+6752,Gnaphalium genus_Gnaphalium,large widely distributed genus of coarse hairy herbs with whitish involucres
+6753,Gnathostomata superclass_Gnathostomata,comprising all vertebrates with upper and lower jaws
+6754,Gnetaceae family_Gnetaceae,plants having small unisexual flowers and fleshy or winged fruit: in some classifications includes the genera Ephedra and Welwitschia as well as genus Gnetum
+6755,Gnetales order_Gnetales,chiefly tropical or xerophytic woody plants; practically unknown as fossils but considered close to the ancestral line of angiosperms
+6756,Gnetopsida class_Gnetopsida Gnetophytina subdivision_Gnetophytina Gnetophyta,gymnospermous flowering plants; supposed link between conifers and angiosperms; in some systems classified as a class (Gnetopsida) and in others as a subdivision (Gnetophytina or Gnetophyta)
+6757,Gnostic,an advocate of Gnosticism
+6758,Gnosticism,a religious orientation advocating gnosis as the way to release a person's spiritual element; considered heresy by Christian churches
+6759,Go_Fish,a card game for two players who try to assemble books of cards by asking the opponent for particular cards
+6760,Goa,a state of southwestern India; a former Portuguese colony
+6761,Gobi Gobi_Desert,a desert in central China
+6762,Gobiesocidae family_Gobiesocidae,clingfishes
+6763,Gobiesox genus_Gobiesox,type genus of the Gobiesocidae
+6764,Gobiidae family_Gobiidae,gobies
+6765,Gobio genus_Gobio,true gudgeons
+6766,God Supreme_Being,the supernatural being conceived as the perfect and omnipotent and omniscient originator and ruler of the universe; the object of worship in monotheistic religions
+6767,God's_Will,the omnipotence of a divine being
+6768,God's_Wisdom,the omniscience of a divine being
+6769,Godard Jean_Luc_Godard,French film maker influenced by surrealism; early work explored the documentary use of film; noted for innovative techniques (born in 1930)
+6770,Goddard Robert_Hutchings_Goddard,United States physicist who developed the first successful liquid-fueled rocket (1882-1945)
+6771,Godel Kurt_Godel,United States mathematician (born in Austria) who is remembered principally for demonstrating the limitations of axiomatic systems (1906-1978)
+6772,Godhead Lord Creator Maker Divine God_Almighty Almighty Jehovah,terms referring to the Judeo-Christian God
+6773,Godiva Lady_Godiva,according to legend she rode naked through Coventry in order to persuade her husband not to tax the townspeople so heavily; the only person to look at her as she rode by was a man named Tom and Peeping Tom has become a synonym for voyeur (circa 1040-1080)
+6774,Godspeed,a successful journey; "they wished him Godspeed"
+6775,Godunov Boris_Godunov Boris_Fyodorovich_Godunov,czar of Russia (1551-1605)
+6776,Goebbels Joseph_Goebbels Paul_Joseph_Goebbels,German propaganda minister in Nazi Germany who persecuted the Jews (1897-1945)
+6777,Goethals George_Washington_Goethals,United States army officer and engineer who supervised the construction of the Panama Canal (1858-1928)
+6778,Goethe Johann_Wolfgang_von_Goethe,German poet and novelist and dramatist who lived in Weimar (1749-1832)
+6779,Gog_and_Magog,biblical names of the enemies of God's people who wage war against God at the end of the world; "in the Book of Ezekiel Gog is a ruler from the land of Magog but in the Book of Revelation Gog and Magog are nations under the rule of Satan"
+6780,Gogol Nikolai_Vasilievich_Gogol,Russian writer who introduced realism to Russian literature (1809-1852)
+6781,Golan_Heights Golan,a fortified hilly area between southern Lebanon and southern Syria; "artillery on the Golan Heights can dominate a large area of Israel"
+6782,Golconda,a source of great wealth (especially a mine)
+6783,Goldberg Rube_Goldberg Reuben_Lucius_Goldberg,United States cartoonist who drew intricate diagrams of very complicated and impractical contraptions that accomplished little or nothing (1883-1970)
+6784,Golden_Age,(classical mythology) the first and best age of the world, a time of ideal happiness, prosperity, and innocence; by extension, any flourishing and outstanding period
+6785,Golden_Delicious Yellow_Delicious,a sweet eating apple with yellow skin
+6786,Golden_Fleece,in Greek mythology, a fleece of gold owned by the king of Colchis and guarded in a sacred grove by a dragon; recovered by Jason and the Argonauts
+6787,Golden_Gate,a strait in western California that connects the San Francisco Bay with the Pacific Ocean; discovered in 1579 by Sir Francis Drake
+6788,Golden_Gate_Bridge,a suspension bridge across the Golden Gate
+6789,Golden_Horde,a Mongolian army that swept over eastern Europe in the 13th century
+6790,Golden_Rule,a command based on Jesus' words in the Sermon on the Mount; "Whatsoever ye would that men do unto you, do you even so unto them" (Matthew 7:12)
+6791,Goldie's_fern Goldie's_shield_fern goldie's_wood_fern Dryopteris_goldiana,North American fern with a blackish lustrous stipe
+6792,Golding William_Golding Sir_William_Gerald_Golding,English novelist (1911-1993)
+6793,Goldman Emma_Goldman,United States anarchist (born in Russia) who opposed conscription; was deported to the Soviet Union in 1919 (1869-1940)
+6794,Goldmark Peter_Goldmark Peter_Carl_Goldmark,United States inventor (born in Hungary) who made the first TV broadcast in 1940 and invented the long-playing record in 1948 and pioneered videocassette recording (1906-1977)
+6795,Goldoni Carlo_Goldoni,prolific Italian dramatist (1707-1793)
+6796,Goldsboro,a town that is a major tobacco center in eastern North Carolina
+6797,Goldsmith Oliver_Goldsmith,Irish writer of novels and poetry and plays and essays (1728-1774)
+6798,Goldwyn Sam_Goldwyn Samuel_Goldwyn,United States film maker (born in Poland) who founded his own film company and later merged with Louis B. Mayer (1882-1974)
+6799,Golgi Camillo_Golgi,Italian histologist noted for work on the structure of the nervous system and for his discovery of Golgi bodies (1844-1926)
+6800,Golgi's_cell Golgi_cell,a neuron in the cerebral cortex with short dendrites and with either a long axon or a short axon that ramifies in the grey matter
+6801,Golgi_body Golgi_apparatus Golgi_complex dictyosome,a netlike structure in the cytoplasm of animal cells (especially in those cells that produce secretions)
+6802,Goliath,(Old Testament) a giant Philistine warrior who was slain by David with a slingshot
+6803,Goma,a city in eastern Congo at the northern end of Lake Kivu near the border with Rwanda
+6804,Gombrowicz Witold_Gombrowicz,Polish author (1904-1969)
+6805,Gomorrah Gomorrha,(Old Testament) an ancient city near the Dead Sea that (along with Sodom) was destroyed by God for the vice and depravity of its inhabitants
+6806,Gompers Samuel_Gompers,United States labor leader (born in England) who was president of the American Federation of Labor from 1886 to 1924 (1850-1924)
+6807,Gomphotheriidae family_Gomphotheriidae,elephants extinct since the Pleistocene
+6808,Gomphotherium genus_Gomphotherium,type genus of the Gomphotheriidae
+6809,Gomphrena genus_Gomphrena,genus of tropical herbs or subshrubs having flowers in close heads; tropical America and Australia
+6810,Goncourt Edmond_de_Goncourt Edmond_Louis_Antoine_Huot_de_Goncourt,French writer who collaborated with his brother Jules de Goncourt on many books and who in his will established the Prix Goncourt (1822-1896)
+6811,Goncourt Jules_de_Goncourt Jules_Alfred_Huot_de_Goncourt,French writer who collaborated with his brother Edmond de Goncourt on many books (1830-1870)
+6812,Gond,a member of a formerly tribal people in south central India
+6813,Gondi,a Dravidian language spoken by the Gond in south central India
+6814,Gondwanaland,a hypothetical continent that (according to plate tectonic theory) broke up later into India and Australia and Africa and South America and Antarctica
+6815,Gongora Luis_de_Gongora_y_Argote,a Spanish poet whose work was characterized by an affected elegance of style (1561-1627)
+6816,Gongorism,an affected elegance of style that was introduced into Spanish literature by the poet Gongora
+6817,Gongorist,a practitioner of the affected elegant style of the Spanish poet Gongora
+6818,Goniopteris genus_Goniopteris,terrestrial ferns of Florida and West Indies to Central and South America
+6819,Gonne Maud_Gonne,Irish patriot and a founder of the Sinn Fein (1865-1953)
+6820,Gonorhynchidae family_Gonorhynchidae,coextensive with the genus Gonorhynchus
+6821,Gonorhynchus genus_Gonorhynchus,slender cylindrical marine fishes lacking air bladders and teeth
+6822,Good_Friday,Friday before Easter
+6823,Goodall Jane_Goodall,English zoologist noted for her studies of chimpanzees in the wild (born in 1934)
+6824,Goodenia,a genus of shrubs and herbs that grow in Australia and New Guinea and Malaysia and southeast Asia
+6825,Goodeniaceae family_Goodeniaceae Goodenia_family,a family of sappy plants that grow in Australasia and southeast China
+6826,Goodman Benny_Goodman Benjamin_David_Goodman King_of_Swing,United States clarinetist who in 1934 formed a big band (including black as well as white musicians) and introduced a kind of jazz known as swing (1909-1986)
+6827,Goodyear Charles_Goodyear,United States inventor of vulcanized rubber (1800-1860)
+6828,Goodyera genus_Goodyera,genus of small orchids of the northern hemisphere with creeping rhizomes and stalked ovate leaves and small flowers
+6829,Goofy,a cartoon character created by Walt Disney
+6830,Google,a widely used search engine that uses text-matching techniques to find web pages that are important and relevant to a user's search
+6831,Gopherus genus_Gopherus,gopher tortoises
+6832,Gorbachev Mikhail_Gorbachev Mikhail_Sergeyevich_Gorbachev,Soviet statesman whose foreign policy brought an end to the Cold War and whose domestic policy introduced major reforms (born in 1931)
+6833,Gordian_knot,any very difficult problem; insoluble in its own terms
+6834,Gordian_knot,an intricate knot tied by Gordius, the king of Phrygia, and cut by the sword of Alexander the Great after he heard that whoever undid it would become ruler of Asia
+6835,Gordimer Nadine_Gordimer,South African novelist and short-story writer whose work describes the effects of apartheid (born in 1923)
+6836,Gordius,legendary king of ancient Phrygia who was said to be responsible for the Gordian knot
+6837,Gordon_setter,a Scottish breed with a black-and-tan coat
+6838,Gore Al_Gore Albert_Gore_Jr.,Vice President of the United States under Bill Clinton (born in 1948)
+6839,Gorgas William_Crawford_Gorgas,United States Army surgeon who suppressed yellow fever in Havana and in the Panama Canal Zone (1854-1920)
+6840,Gorgon,(Greek mythology) any of three winged sister monsters and the mortal Medusa who had live snakes for hair; a glance at Medusa turned the beholder to stone
+6841,Gorgonacea suborder_Gorgonacea Gorgoniacea suborder_Gorgoniacea,red corals and sea fans
+6842,Gorgonocephalus genus_Gorgonocephalus,basket stars
+6843,Goring Goering Hermann_Goring Hermann_Goering Hermann_Wilhelm_Goring,German politician in Nazi Germany who founded the Gestapo and mobilized Germany for war (1893-1946)
+6844,Gorky Maksim_Gorky Gorki Maxim_Gorki Aleksey_Maksimovich_Peshkov Aleksey_Maximovich_Peshkov,Russian writer of plays and novels and short stories; noted for his depiction of social outcasts
+6845,Gosainthan,a mountain in the Himalayas in Tibet (26,290 feet high)
+6846,Gospel Gospels evangel,the four books in the New Testament (Matthew, Mark, Luke, and John) that tell the story of Christ's life and teachings
+6847,Gossypium genus_Gossypium,herbs and shrubs and small trees: cotton
+6848,Gota_Canal,a canal for small oceangoing ships to enter Lake Vanern in Sweden
+6849,Goteborg Goeteborg Gothenburg,a port in southwestern Sweden; second largest city in Sweden
+6850,Goth,one of the Teutonic people who invaded the Roman Empire in the 3rd to 5th centuries
+6851,Gothic,extinct East Germanic language of the ancient Goths; the only surviving record being fragments of a 4th-century translation of the Bible by Bishop Ulfilas
+6852,Gothic Gothic_architecture,a style of architecture developed in northern France that spread throughout Europe between the 12th and 16th centuries; characterized by slender vertical piers and counterbalancing buttresses and by vaulting and pointed arches
+6853,Gothic black_letter,a heavy typeface in use from 15th to 18th centuries
+6854,Gothic_arch,a pointed arch; usually has a joint (instead of a keystone) at the apex
+6855,Gothic_romance,a romance that deals with desolate and mysterious and grotesque events
+6856,Gothic_romancer,a writer of Gothic romances
+6857,Gotterdammerung Ragnarok Twilight_of_the_Gods,myth about the ultimate destruction of the gods in a battle with evil
+6858,Gouda Gouda_cheese,mild cream-colored Dutch cheese shaped in balls
+6859,Goudy Frederic_Goudy Frederic_William_Goudy,United States printer noted for designing typefaces (1865-1947)
+6860,Gould Jay_Gould,United States financier who gained control of the Erie Canal and who caused a financial panic in 1869 when he attempted to corner the gold market (1836-1892)
+6861,Gould Stephen_Jay_Gould,United States paleontologist and popularizer of science (1941-2002)
+6862,Gounod Charles_Francois_Gounod,French composer best remembered for his operas (1818-1893)
+6863,Governador_Valadares,a city in eastern Brazil to the northeast of Belo Horizonte
+6864,Government_Accounting_Office GAO United_States_Government_Accounting_Office,an independent nonpartisan federal agency that acts as the investigative arm of Congress making the executive branch accountable to Congress and the government accountable to citizens of the United States
+6865,Goya Goya_y_Lucientes Francisco_Goya Francisco_de_Goya Francisco_Jose_de_Goya Francisco_Jose_de_Goya_y_Lucientes,Spanish painter well known for his portraits and for his satires (1746-1828)
+6866,Graafian_follicle,a vascular body in a mammalian ovary enclosing a developing egg
+6867,Grace,(Greek mythology) one of three sisters who were the givers of beauty and charm; a favorite subject for sculptors
+6868,Gracilariidae Gracillariidae family_Gracilariidae,leaf miners
+6869,Gracula genus_Gracula,mynas
+6870,Graf Steffi_Graf Stephanie_Graf,German tennis player who won seven women's singles titles at Wimbledon (born in 1969)
+6871,Graham Billy_Graham William_Franklin_Graham,United States evangelical preacher famous as a mass evangelist (born in 1918)
+6872,Graham Martha_Graham,United States dancer and choreographer whose work was noted for its austerity and technical rigor (1893-1991)
+6873,Grahame Kenneth_Grahame,English writer (born in Scotland) of children's stories (1859-1932)
+6874,Grainger Percy_Grainger Percy_Aldridge_Grainger George_Percy_Aldridge_Grainger,United States composer (born in Australia) who lived in London and collected English folk songs (1882-1961)
+6875,Gram Hans_C._J._Gram,Danish physician and bacteriologist who developed a method of staining bacteria to distinguish among them (1853-1938)
+6876,Gram's_method Gram_method Gram's_procedure Gram's_stain Gram_stain,a staining technique used to classify bacteria; bacteria are stained with gentian violet and then treated with Gram's solution; after being decolorized with alcohol and treated with safranine and washed in water, those that retain the gentian violet are Gram-positive and those that do not retain it are Gram-negative
+6877,Gram's_solution,a solution used in staining bacteria by Gram's method; consists of one part iodine and two parts potassium iodide and 300 parts water
+6878,Graminales order_Graminales,grasses; sedges; rushes
+6879,Gramineae family_Gramineae Graminaceae family_Graminaceae Poaceae family_Poaceae grass_family,the grasses: chiefly herbaceous but some woody plants including cereals; bamboo; reeds; sugar cane
+6880,Grammatophyllum genus_Grammatophyllum,small genus of large epiphytic or terrestrial orchids of southeastern Asia to Polynesia; the giants of the Orchidaceae having long narrow leaves and drooping flower clusters often 6 feet long
+6881,Gran_Santiago Santiago Santiago_de_Chile capital_of_Chile,the capital and largest city of Chile; located in central Chile; one of the largest cities in South America
+6882,Granada,a city in southeastern Spain that was the capital of the Moorish kingdom until it was captured by Ferdinand and Isabella in 1492; site of the Alhambra (a palace and fortress built by Moors in the Middle Ages) which is now a major tourist attraction
+6883,Grand_Canal,the major waterway in Venice, Italy
+6884,Grand_Canal,an inland waterway 1000 miles long in eastern China; extends from Tianjin in the north to Hangzhou in the south
+6885,Grand_Canyon,the enormous gorge of the Colorado River in northern Arizona
+6886,Grand_Canyon_National_Park,a national park in Arizona including the mile deep canyon of the Colorado River which shows geologic features and fossil plants and animals
+6887,Grand_Guignol,a play of a macabre or horrific nature
+6888,Grand_Inquisitor,director of the court of Inquisition (especially in Spain and Portugal)
+6889,Grand_Island,a town in south central Nebraska
+6890,Grand_Marnier,an orange-flavored French liqueur
+6891,Grand_National,an annual steeplechase run in Liverpool, England
+6892,Grand_Prix,one of several international races
+6893,Grand_Rapids,a city in west central Michigan; noted for manufacturing furniture
+6894,Grand_River,a river in southern Michigan that flows northwest to empty into Lake Michigan
+6895,Grand_Teton,a mountain peak in northwestern Wyoming; the highest peak in the Teton Range (13,766 feet high)
+6896,Grand_Teton_National_Park,a national park in Wyoming featuring mountains
+6897,Granicus Battle_of_Granicus_River,the battle in which Alexander won his first major victory against the Persians (334 BC)
+6898,Granny_Smith,apple with a green skin and hard tart flesh
+6899,Grant Cary_Grant,United States actor (born in England) who was the elegant leading man in many films (1904-1986)
+6900,Grant Duncan_Grant Duncan_James_Corrow_Grant,Scottish painter; cousin of Lytton Strachey and member of the Bloomsbury Group (1885-1978)
+6901,Grant Ulysses_Grant Ulysses_S._Grant Ulysses_Simpson_Grant Hiram_Ulysses_Grant President_Grant,18th President of the United States; commander of the Union armies in the American Civil War (1822-1885)
+6902,Granville-Barker Harley_Granville-Barker,English actor and dramatist and critic and director noted for his productions of Shakespearean plays (1877-1946)
+6903,Grappelli Stephane_Grappelli,French jazz violinist (1908-1997)
+6904,Graptophyllum genus_Graptophyllum,caricature plant
+6905,Grass Gunter_Grass Gunter_Wilhelm_Grass,German writer of novels and poetry and plays (born 1927)
+6906,Graves Robert_Graves Robert_Ranke_Graves,English writer known for his interest in mythology and in the classics (1895-1985)
+6907,Graves'_disease exophthalmic_goiter,exophthalmos occurring in association with goiter; hyperthyroidism with protrusion of the eyeballs
+6908,Gray Asa_Gray,United States botanist who specialized in North American flora and who was an early supporter of Darwin's theories of evolution (1810-1888)
+6909,Gray Louis_Harold_Gray,English radiobiologist in whose honor the gray (the SI unit of energy for the absorbed dose of radiation) was named (1905-1965)
+6910,Gray Robert_Gray,American navigator who twice circumnavigated the globe and who discovered the Columbia River (1755-1806)
+6911,Gray Thomas_Gray,English poet best known for his elegy written in a country churchyard (1716-1771)
+6912,Graz,an industrial city is southeastern Austria
+6913,Great_Attractor,a massive grouping of galaxies in the direction of Centaurus and Hydra whose gravitational attraction is believed to cause deviations in the paths of other galaxies
+6914,Great_Australian_Bight,a wide bay of the Indian Ocean in southern Australia; notorious for storms
+6915,Great_Barrier_Reef,the largest coral reef in the world; in the Coral Sea off the northeastern coast of Australia
+6916,Great_Bear Ursa_Major,a constellation outside the zodiac that rotates around the North Star
+6917,Great_Britain GB,an island comprising England and Scotland and Wales
+6918,Great_Dane,very large powerful smooth-coated breed of dog
+6919,Great_Depression,the economic crisis beginning with the stock market crash in 1929 and continuing through the 1930s
+6920,Great_Divide,that part of the continental divide formed by the Rocky Mountains in the United States
+6921,Great_Dividing_Range Eastern_Highlands,a mountain range running along the eastern coast of Australia
+6922,Great_Falls,a town in central Montana on the Missouri river; a center of extensive hydroelectric power
+6923,Great_Lakes,a group of five large, interconnected lakes in central North America
+6924,Great_Plains Great_Plains_of_North_America,a vast prairie region extending from Alberta and Saskatchewan and Manitoba in Canada south through the west central United States into Texas; formerly inhabited by Native Americans
+6925,Great_Pyrenees,bred of large heavy-coated white dogs resembling the Newfoundland
+6926,Great_Rift_Valley,( geology) a depression in southwestern Asia and eastern Africa; extends from the valley of the Jordan River to Mozambique; marked by geological faults
+6927,Great_Russian,a member of the chief stock of Russian people living in European Russia; used to distinguish ethnic Russians from other peoples incorporated into Russia
+6928,Great_Salt_Lake,a shallow body of salt water in northwestern Utah
+6929,Great_Sandy_Desert,a desert region in northwestern Australia to the north of the Gibson Desert
+6930,Great_Schism,the period from 1378 to 1417 during which there were two papacies in the Roman Catholic Church, one in Rome and one in Avignon
+6931,Great_Seal_of_the_United_States,the seal of the United States government
+6932,Great_Slave_Lake,a lake in the Northwest Territories in northwestern Canada; drained by the Mackenzie River
+6933,Great_Smoky_Mountains,part of the Appalachians between North Carolina and Tennessee
+6934,Great_Smoky_Mountains_National_Park,a national park in Tennessee and North Carolina that includes the highest mountain in the eastern United States
+6935,Great_Victoria_Desert,a desert region in south central Australia to the north of the Nullarbor Plain
+6936,Greater_Antilles,a group of islands in the western West Indies
+6937,Greater_New_Orleans_Bridge,twin cantilever bridges across the Mississippi at New Orleans
+6938,Greater_Sunda_Islands,a chain of islands including Borneo and Celebes and Java and Sumatra
+6939,Greater_Swiss_Mountain_dog,the largest of the four Swiss breeds
+6940,Grecian,a native or resident of Greece
+6941,Greco-Roman_deity Graeco-Roman_deity,a deity of classical mythology
+6942,Greco-Roman_wrestling,a style of wrestling where the wrestlers are forbidden to tackle or trip or use holds below the waist
+6943,Greece,ancient Greece; a country of city-states (especially Athens and Sparta) that reached its peak in the fifth century BCE
+6944,Greece Hellenic_Republic Ellas,a republic in southeastern Europe on the southern part of the Balkan peninsula; known for grapes and olives and olive oil
+6945,Greek Hellene,a native or inhabitant of Greece
+6946,Greek Hellenic Hellenic_language,the Hellenic branch of the Indo-European family of languages
+6947,Greek_Catholic,a member of the Greek Orthodox Church
+6948,Greek_Orthodox_Church Greek_Church,state church of Greece; an autonomous part of the Eastern Orthodox Church
+6949,Greek_alphabet,the alphabet used by ancient Greeks
+6950,Greek_architecture,the architecture of ancient Greece
+6951,Greek_cross,a cross with each of the four arms the same length
+6952,Greek_deity,a deity worshipped by the ancient Greeks
+6953,Greek_fire,a mixture used by Byzantine Greeks that was often shot at adversaries; catches fire when wetted
+6954,Greek_mode,any of the descending diatonic scales in the music of classical Greece
+6955,Greek_monetary_unit,monetary unit in Greece
+6956,Greek_mythology,the mythology of the ancient Greeks
+6957,Greek_partridge rock_partridge Alectoris_graeca,of mountainous areas of southern Europe
+6958,Greek_valerian Polemonium_reptans,erect or spreading perennial of the eastern United States
+6959,Greeley Horace_Greeley,United States journalist with political ambitions (1811-1872)
+6960,Green,an environmentalist who belongs to the Green Party
+6961,Green Green_River,a river that rises in western Wyoming and flows southward through Utah to become a tributary of the Colorado River
+6962,Green William_Green,United States labor leader who was president of the American Federation of Labor from 1924 to 1952 and who led the struggle with the Congress of Industrial Organizations (1873-1952)
+6963,Green_Bay,a city of eastern Wisconsin on an arm of Lake Michigan
+6964,Green_Beret,a soldier who is a member of the United States Army Special Forces
+6965,Green_Line,the border marking the boundaries of the land that Israel won in its 1948 war of independence
+6966,Green_Mountains,a range of the Appalachian Mountains that extends from south to north through Vermont
+6967,Green_Party,an environmentalist political party
+6968,Greenback_Party,a former political party in the United States; organized in 1874; opposed any reduction in the amount of paper money in circulation
+6969,Greenberg Joseph_Greenberg,United States linguist who studied the historical relations among 5,000 languages (1916-2001)
+6970,Greene Graham_Greene Henry_Graham_Greene,English novelist and Catholic (1904-1991)
+6971,Greenland Gronland Kalaallit_Nunaat,the largest island in the world; lies between the North Atlantic and the Arctic Ocean; a self-governing province of Denmark
+6972,Greenland_Sea,part of the Arctic Ocean to the north of Iceland
+6973,Greenpeace,an international organization that works for environmental conservation and the preservation of endangered species
+6974,Greensboro,a city of north central North Carolina
+6975,Greenville,a town in northwest South Carolina in the Piedmont
+6976,Greenville,a city in eastern North Carolina; tobacco market
+6977,Greenville,a town in western Mississippi on the Mississippi River to the north of Vicksburg
+6978,Greenwich,a borough of Greater London on the Thames; zero degrees of longitude runs through Greenwich; time is measured relative to Greenwich Mean Time
+6979,Greenwich_Mean_Time Greenwich_Time GMT universal_time UT UT1,the local time at the 0 meridian passing through Greenwich, England; it is the same everywhere
+6980,Greenwich_Meridian,the meridian passing through Greenwich; was internationally adopted as the earth's zero of longitude in 1884
+6981,Greenwich_Village Village,a mainly residential district of Manhattan; `the Village' became a home for many writers and artists in the 20th century
+6982,Gregarinida order_Gregarinida,an order in the subclass Telosporidia
+6983,Gregorian_calendar New_Style_calendar,the solar calendar now in general use, introduced by Gregory XIII in 1582 to correct an error in the Julian calendar by suppressing 10 days, making Oct 5 be called Oct 15, and providing that only centenary years divisible by 400 should be leap years; it was adopted by Great Britain and the American colonies in 1752
+6984,Gregorian_calendar_month,a month in the Gregorian calendar
+6985,Gregorian_chant,a variety of plainsong named after Pope Gregory I
+6986,Gregory Gregory_I Saint_Gregory_I St._Gregory_I Gregory_the_Great,(Roman Catholic Church) an Italian pope distinguished for his spiritual and temporal leadership; a saint and Doctor of the Church (540?-604)
+6987,Gregory Gregory_Nazianzen Gregory_of_Nazianzen St._Gregory_of_Nazianzen,(Roman Catholic Church) a church father known for his constant fight against perceived heresies; a saint and Doctor of the Church (329-391)
+6988,Gregory Gregory_VII Hildebrand,the Italian pope who fought to establish the supremacy of the pope over the Roman Catholic Church and the supremacy of the church over the state (1020-1085)
+6989,Gregory Gregory_XII Angelo_Correr,the Italian pope from 1406 to 1415 who worked to end the Great Schism and who retired to make it possible (1327-1417)
+6990,Gregory Gregory_XIII Ugo_Buoncompagni,the pope who sponsored the introduction of the modern calendar (1572-1585)
+6991,Gregory Gregory_XVI Bartolomeo_Alberto_Capillari,Italian pope from 1831 to 1846; conservative in politics and theology; worked to propagate Catholicism in England and the United States (1765-1846)
+6992,Grenada,an island state in the West Indies in the southeastern Caribbean Sea; an independent state within the British Commonwealth
+6993,Grenada_dollar,the basic unit of money in Grenada
+6994,Grenadian,a native or inhabitant of Grenada
+6995,Grenoble,a city in southeastern France on the Isere River
+6996,Gresham Sir_Thomas_Gresham,English financier (1519-1579)
+6997,Gresham's_Law,(economics) the principle that when two kinds of money having the same denominational value are in circulation the intrinsically more valuable money will be hoarded and the money of lower intrinsic value will circulate more freely until the intrinsically more valuable money is driven out of circulation; bad money drives out good; credited to Sir Thomas Gresham
+6998,Gretzky Wayne_Gretzky,high-scoring Canadian ice-hockey player (born in 1961)
+6999,Grewia genus_Grewia,a genus of tropical and subtropical Old World climbers or shrubs or trees
+7000,Grey Charles_Grey Second_Earl_Grey,Englishman who as Prime Minister implemented social reforms including the abolition of slavery throughout the British Empire (1764-1845)
+7001,Grey Lady_Jane_Grey,Queen of England for nine days in 1553; she was quickly replaced by Mary Tudor and beheaded for treason (1537-1554)
+7002,Grey Zane_Grey,United States writer of western adventure novels (1875-1939)
+7003,Grias genus_Grias,anchovy pear tree
+7004,Grieg Edvard_Grieg Edvard_Hagerup_Grieg,Norwegian composer whose work was often inspired by Norwegian folk music (1843-1907)
+7005,Griffith D._W._Griffith David_Lewelyn_Wark_Griffith,United States film maker who was the first to use flashbacks and fade-outs (1875-1948)
+7006,Grim_Reaper Reaper,Death personified as an old man or a skeleton with a scythe
+7007,Grimes'_golden,yellow apple that ripens in late autumn; eaten raw
+7008,Grimm Jakob_Grimm Jakob_Ludwig_Karl_Grimm,the older of the two Grimm brothers remembered best for their fairy stories; also author of Grimm's law describing consonant changes in Germanic languages (1785-1863)
+7009,Grimm Wilhelm_Grimm Wilhelm_Karl_Grimm,the younger of the two Grimm brothers remembered best for their fairy stories (1786-1859)
+7010,Grimm's_law,a sound law relating German consonants and consonants in other Indo-European languages
+7011,Grindelia genus_Grindelia,large genus of coarse gummy herbs of western North and Central America
+7012,Grindelia_robusta,perennial gumweed of California and Baja California
+7013,Gris Jaun_Gris,Spanish cubist painter (1887-1927)
+7014,Griselinia genus_Griselinia,evergreen shrubs of New Zealand and South America
+7015,Groenlandia genus_Groenlandia,a monocotyledonous genus of the family Potamogetonaceae
+7016,Gromyko Andrei_Gromyko Andrei_Andreyevich_Gromyko,Soviet ambassador to the United States and to the United Nations (1909-1989)
+7017,Gropius Walter_Gropius,United States architect (born in Germany) and founder of the Bauhaus school (1883-1969)
+7018,Grossulariaceae family_Grossulariaceae gooseberry_family,in some classifications considered a part of the family Saxifragaceae: plants whose fruit is a berry
+7019,Grotius Hugo_Grotius Huig_de_Groot,Dutch jurist and diplomat whose writings established the basis of modern international law (1583-1645)
+7020,Groundhog_Day February_2,if the ground hog emerges and sees his shadow on this day, there will be 6 more weeks of winter
+7021,Groves Leslie_Richard_Groves,United States general who served as military director of the atomic bomb project (1896-1970)
+7022,Grozny Groznyy,the capital of Chechnya in southwestern Russia; center of extensive oil fields
+7023,Grub_Street,the world of literary hacks
+7024,Gruidae family_Gruidae,cranes
+7025,Gruiformes order_Gruiformes,inland marsh-dwelling birds with long legs and necks and bills that wade in water in search of food: cranes; rails; bustards
+7026,Grus Crane,a small constellation in the southern hemisphere near Phoenix
+7027,Grus genus_Grus,type genus of the Gruidae: typical cranes
+7028,Gruyere,Swiss cheese with small holes
+7029,Gryllidae family_Gryllidae,crickets
+7030,Guadalajara,a city in southwestern Mexico; a popular health resort and site of architecture from the Spanish colonial era
+7031,Guadalcanal,a mountainous island; the largest of the Solomon Islands in the independent state that is a member of the British Commonwealth
+7032,Guadalcanal Battle_of_Guadalcanal,a battle in World War II in the Pacific (1942-1943); the island was occupied by the Japanese and later recaptured by American forces
+7033,Guadalupe_Island,a Mexican island in the Pacific to the west of Baja California
+7034,Guadalupe_Mountains,a mountain range in southern New Mexico and western Texas; the southern extension of the Sacramento Mountains
+7035,Guadalupe_Mountains_National_Park,a national park in Texas that has the highest point in Texas; includes desert wilderness and the ancient Apache hunting grounds
+7036,Guadalupe_cypress Cupressus_guadalupensis,relatively low wide-spreading endemic on Guadalupe Island; cultivated for its bluish foliage
+7037,Guadeloupe,an island territory of France located in the eastern West Indies; tourism is the major industry
+7038,Guaiacum genus_Guaiacum,small genus of evergreen resinous trees or shrubs of warm and tropical America
+7039,Guallatiri,the world's highest volcano; in the Andes in northern Chile; last erupted in 1959
+7040,Guam GU,the largest and southernmost island in the Marianas which is administered as a territory of the United States; it was ceded by Spain to the United States in 1898
+7041,Guangdong Kwangtung Guangdong_province,a province in southern China
+7042,Guangzhou Kuangchou Kwangchow Canton,a city on the Zhu Jiang delta in southern China; the capital of Guangdong province and a major deep-water port
+7043,Guantanamo,a city in southeastern Cuba; site of a United States naval base
+7044,Guantanamo_Bay,an inlet of the Caribbean Sea; a United States naval station was established on the bay in 1903
+7045,Guarani,a member of the South American people living in Paraguay and Bolivia
+7046,Guarani,the language spoken by the Guarani of Paraguay and Bolivia
+7047,Guarneri Guarnieri Guarnerius Andrea_Guarneri,founder of a family of Italian violin makers (1626?-1698)
+7048,Guarneri Guarnieri Guarnerius Guiseppe_Guarneri,Italian violin maker and grandson of Andrea Guarneri (1687?-1745)
+7049,Guarnerius,a violin made by a member of the Guarneri family
+7050,Guatemala Republic_of_Guatemala,a republic in Central America; achieved independence from Spain in 1821; noted for low per capita income and illiteracy; politically unstable
+7051,Guatemala_City capital_of_Guatemala,the capital and largest city of Guatemala
+7052,Guatemalan,a native or inhabitant of Guatemala
+7053,Guatemalan_monetary_unit,monetary unit in Guatemala
+7054,Guayaquil,the largest city of Ecuador
+7055,Guernsey,breed of dairy cattle from the island of Guernsey
+7056,Guernsey island_of_Guernsey,a Channel Island to the northwest of Jersey
+7057,Guest Edgar_Guest Edgar_Albert_Guest,United States journalist (born in England) noted for his syndicated homey verse (1881-1959)
+7058,Guevara Ernesto_Guevara Che_Guevara,an Argentine revolutionary leader who was Fidel Castro's chief lieutenant in the Cuban revolution; active in other Latin American countries; was captured and executed by the Bolivian army (1928-1967)
+7059,Guevina genus_Guevina,one species: Chilean nut
+7060,Guggenheim Meyer_Guggenheim,United States industrialist (born in Switzerland) who with his sons established vast mining and metal processing companies (1828-1905)
+7061,Guggenheim Solomon_Guggenheim,United States philanthropist; son of Meyer Guggenheim who created several foundations to support the arts (1861-1949)
+7062,Guiana,a geographical region of northeastern South America including Guyana and Surinam
+7063,Guiana_Highlands,a mountainous tableland in northern South America; extends from Venezuela into Guyana and northern Brazil
+7064,Guillain-Barre_syndrome infectious_polyneuritis Landry's_paralysis,a form of peripheral polyneuritis characterized by pain and weakness and sometimes paralysis of the limbs; cause is unknown
+7065,Guinea Republic_of_Guinea French_Guinea,a republic in western Africa on the Atlantic; formerly a French colony; achieved independence from France in 1958
+7066,Guinea-Bissau Republic_of_Guinea-Bissau Guine-Bissau Portuguese_Guinea,a republic on the northwestern coast of Africa; recognized as independent by Portugal in 1974
+7067,Guinea-Bissau_monetary_unit,monetary unit in Guinea-Bissau
+7068,Guinea-Bissau_peso peso,the basic unit of money in Guinea-Bissau; equal to 100 centavos
+7069,Guinea_pepper negro_pepper Xylopia_aethiopica,tropical west African evergreen tree bearing pungent aromatic seeds used as a condiment and in folk medicine
+7070,Guinea_worm Dracunculus_medinensis,parasitic roundworm of India and Africa that lives in the abdomen or beneath the skin of humans and other vertebrates
+7071,Guinea_worm_disease Guinea_worm dracunculiasis,a painful and debilitating infestation contracted by drinking stagnant water contaminated with Guinea worm larvae that can mature inside a human's abdomen until the worm emerges through a painful blister in the person's skin
+7072,Guinean,a native or inhabitant of Guinea
+7073,Guinean_franc,the basic unit of money in Guinea
+7074,Guinean_monetary_unit,monetary unit in Guinea
+7075,Guinevere Guenevere,(Arthurian legend) wife of King Arthur; in some versions of the legend she became Lancelot's lover and that led to the end of the Knights of the Round Table
+7076,Guinness,a kind of bitter stout
+7077,Guinness Alec_Guinness Sir_Alec_Guinness,English stage and screen actor noted for versatility (1914-2000)
+7078,Gujarat Gujerat,an industrialized state in western India that includes parts of Bombay
+7079,Gujarati Gujerati,a member of the people of Gujarat
+7080,Gujarati Gujerati,the Indic language spoken by the people of India who live in Gujarat in western India
+7081,Gula,the Babylonian goddess of healing and consort of Ninurta
+7082,Gulf_Coast,a seashore of the Gulf of Mexico
+7083,Gulf_States,a region of the United States comprising states bordering the Gulf of Mexico; Alabama and Florida and Louisiana and Mississippi and Texas
+7084,Gulf_States,the countries in southwestern Asia that border the Persian Gulf
+7085,Gulf_War_syndrome Persian_Gulf_illness,a medical condition of uncertain origin that affected many veterans of the 1991 Gulf War; characterized by fatigue and headache and dizziness and nausea and rashes and joint pain and respiratory disorders
+7086,Gulf_of_Aden,arm of the Indian Ocean at the entrance to the Red Sea
+7087,Gulf_of_Alaska,a gulf of the Pacific Ocean between the Alaska Peninsula and the Alexander Archipelago
+7088,Gulf_of_Antalya,a gulf of the Mediterranean Sea in southwestern Turkey
+7089,Gulf_of_Aqaba Gulf_of_Akaba,a northeastern arm of the Red Sea; between the Sinai Peninsula (Egypt) and Saudi Arabia
+7090,Gulf_of_Bothnia,a northern arm of the Baltic Sea; between Sweden and Finland
+7091,Gulf_of_California Sea_of_Cortes,a gulf to the west of the mainland of Mexico
+7092,Gulf_of_Campeche Golfo_de_Campeche Bay_of_Campeche,a part of the Gulf of Mexico to the west of Yucatan
+7093,Gulf_of_Carpentaria Carpentaria,a wide shallow inlet of the Arafura Sea in northern Australia
+7094,Gulf_of_Corinth Gulf_of_Lepanto,inlet of the Ionian Sea between central Greece and the Peloponnesus
+7095,Gulf_of_Finland,an eastern arm of the Baltic Sea; between Finland and Estonia
+7096,Gulf_of_Guinea,a gulf off the southwest coast of Africa
+7097,Gulf_of_Martaban,an arm of the Andaman Sea off southern Myanmar
+7098,Gulf_of_Mexico Golfo_de_Mexico,an arm of the Atlantic to the south of the United States and to the east of Mexico
+7099,Gulf_of_Ob Bay_of_Ob,an inlet of the Kara Sea in western Siberia
+7100,Gulf_of_Oman,an arm of the Arabian Sea connecting it with the Persian Gulf
+7101,Gulf_of_Riga,an inlet of the Baltic Sea between Latvia and Estonia
+7102,Gulf_of_Saint_Lawrence Gulf_of_St._Lawrence,an arm of the northwest Atlantic Ocean off the southeastern coast of Canada
+7103,Gulf_of_Sidra,wide inlet of the Mediterranean Sea on the north coast of Libya
+7104,Gulf_of_Suez,a northwestern arm of the Red Sea linked to the Mediterranean by the Suez Canal
+7105,Gulf_of_Tehuantepec,an arm of the Pacific in southern Mexico
+7106,Gulf_of_Thailand Gulf_of_Siam,an arm of the South China Sea between Indochina and the Malay Peninsula
+7107,Gulf_of_Venice,an arm of the Adriatic Sea
+7108,Gulf_stream,a warm ocean current that flows from the Gulf of Mexico northward through the Atlantic Ocean
+7109,Gulliver,a fictional Englishman who travels to the imaginary land of Lilliput in a satirical novel by Jonathan Swift
+7110,Gulo genus_Gulo,a genus of Mustelidae
+7111,Gulu,a city in northern Uganda
+7112,Gunpowder_Plot,a conspiracy in 1605 in England to blow up James I and the Houses of Parliament to avenge the persecution of Catholics in England; led by Guy Fawkes
+7113,Gunter's_chain,a unit of length (22 yards)
+7114,Gur Voltaic,a group of Niger-Congo languages spoken primarily in southeastern Mali and northern Ghana
+7115,Gurkha,a member of the Nepalese force that has been part of the British army for 200 years; known for fierceness in combat
+7116,Gurkha,a member of Hindu people descended from brahmins and Rajputs who live in Nepal
+7117,Guru,each of the first ten leaders of the Sikh religion
+7118,Gustavus Gustavus_I,king of Sweden who established Lutheranism as the state religion (1496-1560)
+7119,Gustavus Gustavus_II Gustavus_Adolphus,king of Sweden whose victories in battle made Sweden a European power; his domestic reforms made Sweden a modern state; in 1630 he intervened on the Protestant side of the Thirty Years' War and was killed in the battle of Lutzen (1594-1632)
+7120,Gustavus Gustavus_III,king of Sweden who increased the royal power and waged an unpopular war against Russia (1746-1792)
+7121,Gustavus Gustavus_IV,king of Sweden whose losses to Napoleon I led to his being deposed in 1809 (1778-1837)
+7122,Gustavus Gustavus_V,king of Sweden who kept Sweden neutral during both World War I and II (1858-1950)
+7123,Gustavus Gustavus_VI,the last king of Sweden to have any real political power (1882-1973)
+7124,Gutenberg Johann_Gutenberg Johannes_Gutenberg,German printer who was the first in Europe to print using movable type and the first to use a press (1400-1468)
+7125,Guthrie Woody_Guthrie Woodrow_Wilson_Guthrie,United States folk singer and songwriter (1912-1967)
+7126,Gutierrezia genus_Gutierrezia,sticky perennial herbs and subshrubs of western North America and warm South America
+7127,Guttiferae family_Guttiferae Clusiaceae family_Clusiaceae St_John's_wort_family,widely distributed family of chiefly tropical trees and shrubs and vines that produce oils and resins and some usable timber
+7128,Guttiferales order_Guttiferales,used in some classifications; coextensive with Parietales
+7129,Guy,an effigy of Guy Fawkes that is burned on a bonfire on Guy Fawkes Day
+7130,Guy_Fawkes_Day,day for the celebration of the discovery of the Gunpowder Plot
+7131,Guyana Co-operative_Republic_of_Guyana British_Guiana,a republic in northeastern South America; formerly part of the British Empire, but it achieved independence from the United Kingdom in 1966
+7132,Guyana_dollar,the basic unit of money in Guyana
+7133,Guyanese,a native or inhabitant of Guyana
+7134,Gwydion,Celtic sky god; a magician; giver of arts and civilization
+7135,Gwyn,Celtic underworld god
+7136,Gwynn Gywn Gynne Nell_Gwynn Nell_Gywn Nell_Gwynne Eleanor_Gwynn Eleanor_Gwyn Eleanor_Gwynne,English comedienne and mistress of Charles II (1650-1687)
+7137,Gymnadenia genus_Gymnadenia,small genus of terrestrial orchids of North America and temperate Eurasia
+7138,Gymnadeniopsis genus_Gymnadeniopsis,genus of North American terrestrial orchids usually included in genus Habenaria
+7139,Gymnelis genus_Gymnelis,a genus of Zoarcidae
+7140,Gymnocalycium genus_Gymnocalycium,large genus of low-growing globular South American cacti with spiny ribs covered with many tubercles
+7141,Gymnocarpium genus_Gymnocarpium,oak ferns: in some classification systems included in genus Thelypteris
+7142,Gymnocladus genus_Gymnocladus,small genus of deciduous trees of China and United States having paniculate flowers and thick pulpy pods
+7143,Gymnogyps genus_Gymnogyps,containing solely the California condor
+7144,Gymnophiona order_Gymnophiona,an order of amphibians including caecilians
+7145,Gymnopilus genus_Gymnopilus,a genus of fungus characterized by the orange color of the spore deposit
+7146,Gymnopilus_spectabilis,a fungus with a brownish orange fruiting body and a ring near the top of the stalk; the taste is bitter and the flesh contains psilocybin and psilocin
+7147,Gymnopilus_validipes,a poisonous fungus with a dry cap and a cortina that does not leave much of a ring on the robust stalk
+7148,Gymnopilus_ventricosus,a giant fungus of the Pacific Northwest; has a very thick stalk and the cortina leaves a ring high up on the stalk
+7149,Gymnorhina genus_Gymnorhina,in some classifications placed in the family Laniidae: Australian piping crows
+7150,Gymnospermae class_Gymnospermae Gymnospermophyta division_Gymnospermophyta,plants having naked seeds not enclosed in an ovary; in some systems considered a class (Gymnospermae) and in others a division (Gymnospermophyta); comprises three subdivisions (or classes): Cycadophytina (class Cycadopsida) and Gnetophytina (class Gnetopsida) and Coniferophytina (class Coniferopsida); in some classifications the Coniferophytina are divided into three groups: Pinophytina (class Pinopsida) and Ginkgophytina (class Ginkgopsida) and Taxophytina (class Taxopsida)
+7151,Gymnosporangium genus_Gymnosporangium,genus of fungi that produce galls on cedars and other conifers of genera Juniperus and Libocedrus and causes rust spots on apples and pears and other plants of family Rosaceae
+7152,Gymnura genus_Gymnura,butterfly rays
+7153,Gynura genus_Gynura,genus of Old World tropical herbs: velvet plants
+7154,Gypaetus genus_Gypaetus,in some classifications the type genus of the family Aegypiidae
+7155,Gyps genus_Gyps,a genus of Accipitridae
+7156,Gypsophila genus_Gypsophila,Mediterranean herbs having small white or pink flowers
+7157,Gypsy Gipsy Romany Rommany Romani Roma Bohemian,a member of a people with dark skin and hair who speak Romany and who traditionally live by seasonal work and fortunetelling; they are believed to have originated in northern India but now are living on all continents (but mostly in Europe, North Africa, and North America)
+7158,Gyrinidae family_Gyrinidae,whirligig beetles
+7159,Gyromitra_californica California_false_morel,a gyromitra with a brown puffed up fertile part and a thick fluted stalk; found under conifers in California
+7160,Gyromitra_esculenta brain_mushroom beefsteak_morel,a poisonous gyromitra; the surface of the fertile body is smooth at first and becomes progressively undulating and wrinkled (but never truly pitted); color varies from dull yellow to brown
+7161,Gyromitra_fastigiata Gyromitra_brunnea,a lorchel with deep brownish red fertile part and white stalk
+7162,Gyromitra_gigas,a gyromitra with a large irregular stalk and fertile part that is yellow to brown and wrinkled; has early fruiting time
+7163,Gyromitra_infula saddled-shaped_false_morel,a poisonous fungus; saddle-shaped and dull yellow to brown fertile part is relatively even
+7164,Gyromitra_sphaerospora round-spored_gyromitra,a gyromitra with a brown puffed up fertile part and a rosy pink fluted stalk and smooth round spores; found on hardwood slash east of the Great Plains
+7165,H h,the 8th letter of the Roman alphabet
+7166,HAZMAT,an abbreviation for `hazardous material' used on warning signs; "NO HAZMATS IN TUNNEL"
+7167,HDL_cholesterol,the cholesterol in high-density lipoproteins; the `good' cholesterol; a high level in the blood is thought to lower the risk of coronary artery disease
+7168,HIV,infection by the human immunodeficiency virus
+7169,HMG-CoA_reductase 5-hydroxy-3-methylglutaryl-coenzyme_A_reductase,a liver enzyme that is responsible for producing cholesterol
+7170,Haastia genus_Haastia,genus of New Zealand mat-forming herbs or subshrubs: vegetable sheep
+7171,Habakkuk,a Hebrew minor prophet
+7172,Habakkuk Habacuc Book_of_Habakkuk,an Old Testament book telling Habakkuk's prophecies
+7173,Habenaria genus_Habenaria,chiefly terrestrial orchids with tubers or fleshy roots often having long slender spurs and petals and lip lobes; includes species formerly placed in genus Gymnadeniopsis
+7174,Haber Fritz_Haber,German chemist noted for the synthetic production of ammonia from the nitrogen in air (1868-1934)
+7175,Haber_process Haber-Bosch_process,an industrial process for producing ammonia from nitrogen and hydrogen by combining them under high pressure in the presence of an iron catalyst
+7176,Habsburg Hapsburg,a royal German family that provided rulers for several European states and wore the crown of the Holy Roman Empire from 1440 to 1806
+7177,Hachiman,a Shinto god of war
+7178,Hackelia genus_Hackelia Lappula genus_Lappula,stickweed; beggar's lice
+7179,Had_crime,(Islam) serious crimes committed by Muslims and punishable by punishments established in the Koran; "Had crimes include apostasy from Islam and murder and theft and adultery"
+7180,Hadean Hadean_time Hadean_eon Hadean_aeon Priscoan Priscoan_eon Priscoan_aeon,the earliest eon in the history of the Earth from the first accretion of planetary material (around 4,600 million years ago) until the date of the oldest known rocks (about 3,800 million years ago); no evidence of life
+7181,Hades Aides Aidoneus,(Greek mythology) the god of the underworld in ancient mythology; brother of Zeus and husband of Persephone
+7182,Hadith,(Islam) a tradition based on reports of the sayings and activities of Muhammad and his companions
+7183,Hadrian Publius_Aelius_Hadrianus Adrian,Roman Emperor who was the adoptive son of Trajan; travelled throughout his empire to strengthen its frontiers and encourage learning and architecture; on a visit to Britain in 122 he ordered the construction of Hadrian's Wall (76-138)
+7184,Hadrian's_Wall,an ancient Roman wall built by Hadrian in the 2nd century; marked the northern boundary of the Roman Empire in Britain
+7185,Hadrosauridae family_Hadrosauridae,duck-billed dinosaurs; upper Cretaceous
+7186,Haeckel Ernst_Heinrich_Haeckel,German biologist and philosopher; advocated Darwinism and formulated the theory of recapitulation; was an exponent of materialistic monism (1834-1919)
+7187,Haemanthus genus_Haemanthus,genus of African deciduous or evergreen bulbous herbs: blood lilies
+7188,Haematobia genus_Haematobia,European genus of bloodsucking flies
+7189,Haematopodidae family_Haematopodidae,oystercatchers
+7190,Haematopus genus_Haematopus,oystercatchers
+7191,Haematoxylum genus_Haematoxylum Haematoxylon genus_Haematoxylon,small genus of tropical American spiny bushy shrubs or trees
+7192,Haemodoraceae family_Haemodoraceae bloodwort_family,some genera placed in family Liliaceae
+7193,Haemodorum genus_Haemodorum,type genus of family Haemodoraceae
+7194,Haemopis genus_Haemopis,leeches
+7195,Haemoproteidae family_Haemoproteidae,bird parasites
+7196,Haemoproteus genus_Haemoproteus,type genus of the family Haemoproteidae
+7197,Haemosporidia order_Haemosporidia,an order in the subclass Telosporidia
+7198,Haemulidae family_Haemulidae,grunts
+7199,Haemulon genus_Haemulon,type genus of the Haemulidae
+7200,Haftorah Haftarah Haphtorah Haphtarah,a short selection from the Prophets read on every Sabbath in a Jewish synagogue following a reading from the Torah
+7201,Haganah,the clandestine military wing of the Jewish leadership during the British rule over the mandate of Palestine from 1920 to 1948; became the basis for the Israeli defense force
+7202,Hageman_factor factor_XII,coagulation factor whose deficiency results in prolongation of clotting time of venous blood
+7203,Hagerstown,a town in northern Maryland
+7204,Haggadah Haggada Hagada,Talmudic literature that does not deal with law but is still part of Jewish tradition
+7205,Haggai Aggeus,a Hebrew minor prophet
+7206,Haggai Aggeus Book_of_Haggai,an Old Testament book telling the prophecies of Haggai which are concerned mainly with rebuilding the temples after the Babylonian Captivity
+7207,Haggard Rider_Haggard Sir_Henry_Rider_Haggard,British writer noted for romantic adventure novels (1856-1925)
+7208,Hagia_Sophia Hagia_Sofia Santa_Sophia Santa_Sofia,a 6th century masterpiece of Byzantine architecture in Istanbul; built as a Christian church, converted to a mosque in 1453, and made into a museum in the middle of the 20th century
+7209,Hagiographa Ketubim Writings,the third of three divisions of the Hebrew Scriptures
+7210,Hahn Otto_Hahn,German chemist who was co-discoverer with Lise Meitner of nuclear fission (1879-1968)
+7211,Haida,a member of a seafaring group of North American Indians who lived on the Pacific coast of British Columbia and southwestern Alaska
+7212,Haida,the Na-Dene language of the Haida
+7213,Haile_Selassie Ras_Tafari_Makonnen Ras_Tafari,emperor of Ethiopia; worshipped by Rastafarians (1892-1975)
+7214,Haiphong,a port city in northern Vietnam; industrial center
+7215,Haiti Republic_of_Haiti,a republic in the West Indies on the western part of the island of Hispaniola; achieved independence from France in 1804; the poorest and most illiterate nation in the western hemisphere
+7216,Haitian,a native or inhabitant of Haiti
+7217,Haitian_Creole,a creole language spoken by most Haitians; based on French and various African languages
+7218,Haitian_centime,100 centimes equal 1 gourde in Haiti
+7219,Haitian_monetary_unit,the monetary unit in Haiti
+7220,Hakea genus_Hakea,Australian shrubs and small trees with evergreen usually spiny leaves and dense clusters of showy flowers
+7221,Hakham,a Hebrew title of respect for a wise and highly educated man
+7222,Hakka,a member of a people of southeastern China (especially Hong Kong, Canton, and Taiwan) who migrated from the north in the 12th century
+7223,Hakka Hakka_dialect,a dialect of Chinese spoken in southeastern China by the Hakka
+7224,Halab Aleppo Alep,a city in northwestern Syria
+7225,Halakah Halaka Halacha,Talmudic literature that deals with law and with the interpretation of the laws on the Hebrew Scriptures
+7226,Halchidhoma,a member of a North American Indian people of the Colorado river valley near the mouth of the Gila river; allied to the Maricopa
+7227,Halcyon genus_Halcyon,a large kingfisher widely distributed in warmer parts of the Old World
+7228,Haldane Elizabeth_Haldane Elizabeth_Sanderson_Haldane,Scottish writer and sister of Richard Haldane and John Haldane (1862-1937)
+7229,Haldane J._B._S._Haldane John_Burdon_Sanderson_Haldane,Scottish geneticist (son of John Haldane) who contributed to the development of population genetics; a popularizer of science and a Marxist (1892-1964)
+7230,Haldane John_Haldane John_Scott_Haldane,Scottish physiologist and brother of Richard Haldane and Elizabeth Haldane; noted for research into industrial diseases (1860-1936)
+7231,Haldane Richard_Haldane Richard_Burdon_Haldane First_Viscount_Haldane_of_Cloan,Scottish statesman and brother of Elizabeth and John Haldane (1856-1928)
+7232,Haldea genus_Haldea,ground snakes
+7233,Hale Edward_Everett_Hale,prolific United States writer (1822-1909)
+7234,Hale George_Ellery_Hale,United States astronomer who discovered that sunspots are associated with strong magnetic fields (1868-1938)
+7235,Hale Nathan_Hale,a soldier of the American Revolution who was hanged as a spy by the British; his last words were supposed to have been `I only regret that I have but one life to give for my country' (1755-1776)
+7236,Haleakala_National_Park,a national park in Hawaii including a dormant volcano
+7237,Halenia genus_Halenia,genus of herbs of Eurasia and the Americas: spurred gentians
+7238,Halesia genus_Halesia,deciduous small trees or shrubs of China and eastern North America
+7239,Halevy Fromental_Halevy Jacques_Francois_Fromental_Elie_Halevy,French operatic composer (1799-1862)
+7240,Haley Alex_Haley,United States writer and Afro-American who wrote a fictionalized account of tracing his family roots back to Africa (1921-1992)
+7241,Haley Bill_Haley William_John_Clifton_Haley_Jr.,United States rock singer who was one of the first to popularize rock'n'roll music (1925-1981)
+7242,Haliaeetus genus_Haliaeetus,a genus of Accipitridae
+7243,Halicarnassus,an ancient Greek city on the southwestern coast of Asia Minor in what is now Turkey; site of the mausoleum at Halicarnassus
+7244,Halicoeres genus_Halicoeres,a genus of Labridae
+7245,Halictidae family_Halictidae,a family of small solitary bees; many are valuable pollinators for agriculture
+7246,Halifax,provincial capital and largest city of Nova Scotia
+7247,Halimodendron genus_Halimodendron,one species: salt tree
+7248,Haliotidae family_Haliotidae,abalones
+7249,Haliotis genus_Haliotis,type genus of the family Haliotidae
+7250,Hall Asaph_Hall,United States astronomer who discovered Phobos and Deimos (the two satellites of Mars) (1829-1907)
+7251,Hall Charles_Francis_Hall,United States explorer who led three expeditions to the Arctic (1821-1871)
+7252,Hall Charles_Martin_Hall,United States chemist who developed an economical method of producing aluminum from bauxite (1863-1914)
+7253,Hall G._Stanley_Hall Granville_Stanley_Hall,United States child psychologist whose theories of child psychology strongly influenced educational psychology (1844-1924)
+7254,Hall Radclyffe_Hall Marguerite_Radclyffe_Hall,English writer whose novel about a lesbian relationship was banned in Britain for many years (1883-1943)
+7255,Hall's_honeysuckle Lonicera_japonica_halliana,a variety of Japanese honeysuckle that grows like a vine; established as an aggressive escape in southeastern United States
+7256,Hall_of_Fame,a building containing trophies honoring famous people
+7257,Halle Halle-an-der-Saale,a city in the Saxony region of Germany on the Saale River; a member of the Hanseatic League during the 13th and 14th centuries
+7258,Hallel,(Judaism) a chant of praise (Psalms 113 through 118) used at Passover and Shabuoth and Sukkoth and Hanukkah and Rosh Hodesh
+7259,Halley Edmond_Halley Edmund_Halley,English astronomer who used Newton's laws of motion to predict the period of a comet (1656-1742)
+7260,Halloween Hallowe'en Allhallows_Eve,the evening before All Saints' Day; often devoted to pranks played by young people
+7261,Halocarpus genus_Halocarpus,dioecious trees or shrubs of New Zealand; similar in habit to Dacrydium
+7262,Haloragidaceae family_Haloragidaceae Haloragaceae family_Haloragaceae water-milfoil_family,a family of dicotyledonous plants of the order Myrtales
+7263,Hals Frans_Hals,Dutch portrait and genre painter who endowed his portraits with vitality and humor (1580?-1666)
+7264,Ham,(Old Testament) son of Noah
+7265,Hamamelidaceae family_Hamamelidaceae witch-hazel_family,comprises genera Hamamelis, Corylopsis, Fothergilla, Liquidambar, Parrotia, and other small genera
+7266,Hamamelidae subclass_Hamamelidae,a group of chiefly woody plants considered among the most primitive of angiosperms; perianth poorly developed or lacking; flowers often unisexual and often in catkins and often wind pollinated; contains 23 families including the Betulaceae and Fagaceae (includes the Amentiferae); sometimes classified as a superorder
+7267,Hamamelidanthum genus_Hamamelidanthum,genus of fossil plants of the Oligocene having flowers resembling those of the witch hazel; found in Baltic region
+7268,Hamamelidoxylon genus_Hamamelidoxylon,genus of fossil plants having wood identical with or similar to that of the witch hazel
+7269,Hamamelis genus_Hamamelis,deciduous shrubs or small trees: witch hazel
+7270,Hamamelites genus_Hamamelites,genus of fossil plants having leaves similar to those of the witch hazel
+7271,Haman,(Old Testament) the minister of the Persian emperor who hated the Jews and was hanged for plotting to massacre them
+7272,Hamas Islamic_Resistance_Movement,a militant Islamic fundamentalist political movement that opposes peace with Israel and uses terrorism as a weapon; seeks to create an Islamic state in place of Israel; is opposed to the PLO and has become a leading perpetrator of terrorist activity in Israel; pioneered suicide bombing
+7273,Hamburg,a port city in northern Germany on the Elbe River that was founded by Charlemagne in the 9th century and is today the largest port in Germany; in 1241 it formed an alliance with Lubeck that became the basis for the Hanseatic League
+7274,Hamburg_parsley turnip-rooted_parsley Petroselinum_crispum_tuberosum,parsley with smooth leaves and enlarged edible taproot resembling a savory parsnip
+7275,Hameln Hamelin,a town in northern Germany (near Hanover) that is famous as the setting for the legend of the Pied Piper
+7276,Hamilton,a port city in southeastern Ontario at the western end of Lake Ontario
+7277,Hamilton,the capital of Bermuda
+7278,Hamilton Alexander_Hamilton,United States statesman and leader of the Federalists; as the first Secretary of the Treasury he establish a federal bank; was mortally wounded in a duel with Aaron Burr (1755-1804)
+7279,Hamilton Alice_Hamilton,United States toxicologist known for her work on industrial poisons (1869-1970)
+7280,Hamilton Lady_Emma_Hamilton Amy_Lyon,English beauty who was the mistress of Admiral Nelson (1765-1815)
+7281,Hamilton William_Rowan_Hamilton Sir_William_Rowan_Hamilton,Irish mathematician (1806-1865)
+7282,Haminoea genus_Haminoea,common genus of marine bubble shells of the Pacific coast of North America
+7283,Hamitic Hamitic_language,a group of languages in northern Africa related to Semitic
+7284,Hamlet,the hero of William Shakespeare's tragedy who hoped to avenge the murder of his father
+7285,Hammarskjold Dag_Hammarskjold Dag_Hjalmar_Agne_Carl_Hammarskjold,Swedish diplomat who greatly extended the influence of the United Nations in peacekeeping matters (1905-1961)
+7286,Hammerstein Oscar_Hammerstein Oscar_Hammerstein_II,United States lyricist who collaborated on many musical comedies (most successfully with Richard Rodgers) (1895-1960)
+7287,Hammett Dashiell_Hammett Samuel_Dashiell_Hammett,United States writer of hard-boiled detective fiction (1894-1961)
+7288,Hammurabi Hammurapi,Babylonian king who codified the laws of Sumer and Mesopotamia (died 1750 BC)
+7289,Hampshire,a county of southern England on the English Channel
+7290,Hampshire Hampshire_down,British breed of hornless dark-faced domestic sheep
+7291,Hampton Lionel_Hampton,United States musician who was the first to use the vibraphone as a jazz instrument (1913-2002)
+7292,Hampton_Roads,a channel in southeastern Virginia through which the Elizabeth River and the James River flow into Chesapeake Bay
+7293,Hampton_Roads,a naval battle of the American Civil War (1862); the indecisive battle between the Monitor and the Merrimac
+7294,Hamsun Knut_Hamsun Knut_Pedersen,Norwegian writer of novels (1859-1952)
+7295,Han Han_dynasty,imperial dynasty that ruled China (most of the time from 206 BC to AD 220) and expanded its boundaries and developed its bureaucracy; remembered as one of the great eras of Chinese civilization
+7296,Hancock John_Hancock,American revolutionary patriot who was president of the Continental Congress; was the first signer of the Declaration of Independence (1737-1793)
+7297,Hand-Schuller-Christian_disease Schuller-Christian_disease,inflammatory histiocytosis associated with disturbance of cholesterol metabolism; occurs chiefly in young children and is characterized by cystic defects of the skull and diabetes insipidus
+7298,Handel,the music of Handel
+7299,Handel George_Frideric_Handel George_Frederick_Handel Georg_Friedrich_Handel,a prolific British baroque composer (born in Germany) remembered best for his oratorio Messiah (1685-1759)
+7300,Handies_Peak,a mountain peak in the San Juan Mountains in southwestern Colorado (14,048 feet high)
+7301,Handy W._C._Handy William_Christopher_Handy,United States blues musician who transcribed and published traditional blues music (1873-1958)
+7302,Hanging_Gardens_of_Babylon,a terraced garden at Babylon watered by pumps from the Euphrates; construction attributed to Nebuchadnezzar around 600 BC
+7303,Hangzhou Hangchow,a city of eastern China on Hangzhou Bay; regarded by Marco Polo as the finest city in the world
+7304,Hangzhou_Bay,a bay formed by an inlet of the East China Sea
+7305,Hani Akha,a Loloish language
+7306,Hanks Tom_Hanks Thomas_J._Hanks,United States film actor (born in 1956)
+7307,Hannibal,general who commanded the Carthaginian army in the second Punic War; crossed the Alps and defeated the Romans but was recalled to defend Carthage and was defeated (247-182 BC)
+7308,Hannibal,a town in northeast Missouri on the Mississippi River; boyhood home of Mark Twain
+7309,Hannover Hanover,a port city in northwestern Germany; formerly a member of the Hanseatic League
+7310,Hanoi capital_of_Vietnam,the capital city of Vietnam; located in North Vietnam
+7311,Hanover House_of_Hanover Hanoverian_line,the English royal house that reigned from 1714 to 1901 (from George I to Victoria)
+7312,Hanoverian,any of the British rulers who were members of the House of Hanover
+7313,Hanoverian,a member (or supporter) of the house of Hanover
+7314,Hansard,the official published verbatim report of the proceedings of a parliamentary body; originally of the British Parliament; "the Canadian Hansard is published in both English and French"
+7315,Hanseatic_League,a commercial and defensive confederation of free cities in northern Germany and surrounding areas; formed in 1241 and most influential in the 14th century when it included over 100 towns and functioned as an independent political power; the last official assembly was held in 1669
+7316,Hanukkah Hanukah Hannukah Chanukah Chanukkah Channukah Channukkah Festival_of_Lights Feast_of_Lights Feast_of_Dedication Feast_of_the_Dedication,(Judaism) an eight-day Jewish holiday commemorating the rededication of the Temple of Jerusalem in 165 BC
+7317,Hanuman,in Hinduism, the monkey god and helper of Rama; god of devotion and courage
+7318,Haplopappus genus_Haplopappus,genus of North and South American perennial herbs or shrubs with yellow flowers; in some classifications include species placed in other genera especially Hazardia
+7319,Haplosporidia order_Haplosporidia,an order in the subclass Acnidosporidia
+7320,Harare Salisbury capital_of_Zimbabwe,the capital and largest city of Zimbabwe
+7321,Hardenbergia genus_Hardenbergia,small genus of Australian woody vines with small violet flowers; closely related to genus Kennedia
+7322,Harding Warren_Harding Warren_Gamaliel_Harding President_Harding,29th President of the United States; two of his appointees were involved in the Teapot Dome scandal (1865-1823)
+7323,Hardy Oliver_Hardy,United States slapstick comedian who played the pompous and overbearing member of the Laurel and Hardy duo who made many films (1892-1957)
+7324,Hardy Thomas_Hardy,English novelist and poet (1840-1928)
+7325,Hare_Krishna,worshipper of Krishna and member of the International Society for Krishna Consciousness
+7326,Hare_Krishna,a chant to the Hindu god Krishna
+7327,Hare_Krishna International_Society_for_Krishna_Consciousness ISKCON,a religious sect founded in the United States in 1966; based on Vedic scriptures; groups engage in joyful chanting of `Hare Krishna' and other mantras based on the name of the Hindu god Krishna; devotees usually wear saffron robes and practice vegetarianism and celibacy
+7328,Haredi,any of several sects of Orthodox Judaism that reject modern secular culture and many of whom do not recognize the spiritual authority of the modern state of Israel
+7329,Hargeisa,a city in northwestern Somalia
+7330,Hargreaves James_Hargreaves,English inventor of the spinning jenny (1720-1778)
+7331,Harkat-ul-Jihad-e-Islami Harakat_ul-Jihad-I-Islami HUJI,an extremist militant group in Pakistan occupied Kashmir that seeks an Islamic government and that has had close links and fought with the Taliban in Afghanistan
+7332,Harkat-ul-Mujahidin HUM Harkat_ul-Ansar HUA Harkat_ul-Mujahedeen Al_Faran Movement_of_Holy_Warriors,an Islamic fundamentalist group in Pakistan that fought the Soviet Union in Afghanistan in the 1980s; now operates as a terrorist organization primarily in Kashmir and seeks Kashmir's accession by Pakistan
+7333,Harlem,a district of Manhattan; now largely a Black ghetto
+7334,Harlem_Renaissance,a period in the 1920s when African-American achievements in art and music and literature flourished
+7335,Harlem_River,a channel separating Manhattan from the Bronx
+7336,Harley_Street,a street in central London where the consulting rooms of many physicians and surgeons are located
+7337,Harlow Jean_Harlow Harlean_Carpenter,United States film actress who made several films with Clark Gable (1911-1937)
+7338,Harmsworth Alfred_Charles_William_Harmsworth Viscount_Northcliffe,British newspaper publisher (1865-1922)
+7339,Harold_I King_Harold_I Harold_Harefoot Harefoot,illegitimate son of Canute who seized the throne of England in 1037 (died in 1040)
+7340,Harold_II King_Harold_II,King of England who succeeded Edward the Confessor in 1066 and was the last of the Anglo-Saxon monarchs; he was killed fighting the invasion by William the Conqueror (1045-1066)
+7341,Harpers_Ferry Harper's_Ferry,a small town in northeastern West Virginia that was the site of a raid in 1859 by the abolitionist John Brown and his followers who captured an arsenal that was located there
+7342,Harpia genus_Harpia,a genus of Accipitridae
+7343,Harpy,(Greek mythology) vicious winged monster; often depicted as a bird with the head of a woman
+7344,Harriman Averell_Harriman William_Averell_Harriman,United States financier who negotiated a treaty with the Soviet Union banning tests of nuclear weapons (1891-1986)
+7345,Harriman E._H._Harriman Edward_Henry_Harriman,United States railway tycoon (1848-1909)
+7346,Harris Benjamin_Harris,publisher of the first newspaper printed in America (1673-1713)
+7347,Harris Bomber_Harris Sir_Arthur_Travers_Harris,British marshal of the Royal Air Force; during World War II he directed mass bombing raids against German cities that resulted in heavy civilian casualties (1892-1984)
+7348,Harris Frank_Harris James_Thomas_Harris,Irish writer noted for his sexually explicit but unreliable autobiography (1856-1931)
+7349,Harris Joel_Harris Joel_Chandler_Harris,United States author who wrote the stories about Uncle Remus (1848-1908)
+7350,Harris Townsend_Harris,United States diplomat who was instrumental in opening Japan to foreign trade (1804-1878)
+7351,Harris Zellig_Harris Zellig_Sabbatai_Harris,United States linguist (born in Ukraine) who developed mathematical linguistics and interpreted speech and writing in a social context (1909-1992)
+7352,Harris_Tweed,a loosely woven tweed made in the Outer Hebrides
+7353,Harrisburg capital_of_Pennsylvania,capital of Pennsylvania; located in southern part of state
+7354,Harrisia genus_Harrisia,genus of slender often treelike spiny cacti with solitary showy nocturnal white or pink flowers; Florida and Caribbean to South America
+7355,Harrison Benjamin_Harrison President_Harrison President_Benjamin_Harrison,23rd President of the United States (1833-1901)
+7356,Harrison George_Harrison,English rock star; lead guitarist of the Beatles (1943-2001)
+7357,Harrison Rex_Harrison Sir_Rex_Harrison Reginald_Carey_Harrison,English actor on stage and in films (1908-1990)
+7358,Harrison William_Henry_Harrison President_Harrison President_William_Henry_Harrison,9th President of the United States; caught pneumonia during his inauguration and died shortly after (1773-1841)
+7359,Harrod Charles_Digby_Harrod,English merchant who expanded his father's shop in London into a prestigious department store (1841-1905)
+7360,Harrod Charles_Henry_Harrod,English merchant who took over a shop in London that was expanded by his son into a prestigious department store (1800-1885)
+7361,Hart Lorenz_Hart Lorenz_Milton_Hart,United States lyricist who collaborated with Richard Rodgers (1895-1943)
+7362,Hart Moss_Hart,United States playwright who collaborated with George S. Kaufman (1904-1961)
+7363,Harte Bret_Harte,United States writer noted for his stories about life during the California gold rush (1836-1902)
+7364,Hartford capital_of_Connecticut,the state capital of Connecticut; located in central Connecticut on the Connecticut river; a center of the insurance business
+7365,Hartley David_Hartley,English philosopher who introduced the theory of the association of ideas (1705-1757)
+7366,Harvard John_Harvard,American philanthropist who left his library and half his estate to the Massachusetts college that now bears his name (1607-1638)
+7367,Harvard_University Harvard,a university in Massachusetts
+7368,Harvey William_Harvey,English physician and scientist who described the circulation of the blood; he later proposed that all animals originate from an ovum produced by the female of the species (1578-1657)
+7369,Harvey_Wallbanger,a cocktail made of vodka or gin and orange juice and Galliano
+7370,Hasdrubal,general who commanded a Carthaginian army in Spain; joined his brother Hannibal in Italy and was killed by the Romans at the battle of Metaurus River (died 207 BC)
+7371,Hasek Jaroslav_Hasek,Czech author of novels and short stories (1883-1923)
+7372,Hashimoto's_disease,autoimmune disorder of the thyroid gland; most common in middle-aged women
+7373,Hasid Hassid Chasid Chassid,a member of a Jewish sect that observes a form of strict Orthodox Judaism
+7374,Hasidim Hassidim Hasidism Chasidim Chassidim,a sect of Orthodox Jews that arose out of a pietistic movement originating in eastern Europe in the second half of the 18th century; a sect that follows the Mosaic law strictly
+7375,Hasidism Hassidism Chasidism Chassidism,beliefs and practices of a sect of Orthodox Jews
+7376,Hassam Childe_Hassam Frederick_Childe_Hassam,United States painter noted for brilliant colors and bold brushwork (1859-1935)
+7377,Hassel Odd_Hassel,Norwegian chemist noted for his research on organic molecules (1897-1981)
+7378,Hastinapura,one of two classical Hindu epics; a great collection of poetry worked into and around a central heroic narrative (eight times as large as the Iliad and Odyssey combined)
+7379,Hastings,a town in East Sussex just to the south of the place where the battle of Hastings took place
+7380,Hastings Thomas_Hastings,United States architect who formed and important architectural firm with John Merven Carrere (1860-1929)
+7381,Hastings battle_of_Hastings,the decisive battle in which William the Conqueror (duke of Normandy) defeated the Saxons under Harold II (1066) and thus left England open for the Norman Conquest
+7382,Hathaway Anne_Hathaway,wife of William Shakespeare (1556-1623)
+7383,Hatiora genus_Hatiora,small genus of South American epiphytic or lithophytic cacti
+7384,Hatteras_Island,a barrier island running parallel to the North Carolina shore
+7385,Hattiesburg,a town in southeast Mississippi
+7386,Hausa Haussa,a member of a Negroid people living chiefly in northern Nigeria
+7387,Hausa Haussa,the chief member of the Chadic family of Afroasiatic languages; widely used as a trading language
+7388,Haute-Normandie Upper-Normandy,a division of Normandy
+7389,Havana capital_of_Cuba Cuban_capital,the capital and largest city of Cuba; located in western Cuba; one of the oldest cities in the Americas
+7390,Havasupai,a member of a North American Indian people of Cataract Canyon in Arizona
+7391,Havasupai,the Yuman language spoken by the Havasupai
+7392,Havel Vaclav_Havel,Czech dramatist and statesman whose plays opposed totalitarianism and who served as president of Czechoslovakia from 1989 to 1992 and president of the Czech Republic since 1993 (born in 1936)
+7393,Haverhill_fever,the form of ratbite fever occurring in the United States
+7394,Haversian_canal,any of the many tiny canals that contain blood vessels and connective tissue and that form a network in bone
+7395,Hawaii Hawai'i Aloha_State HI Haw.,a state in the United States in the central Pacific on the Hawaiian Islands
+7396,Hawaii Hawaii_Island,the largest and southernmost of the Hawaii islands; has several volcanic peaks
+7397,Hawaii_Time Hawaii_Standard_Time,standard time in the 10th time zone west of Greenwich, reckoned at the 150th meridian west; used in Hawaii and the western Aleutian Islands
+7398,Hawaii_Volcanoes_National_Park,a national park in Hawaii featuring active volcanoes
+7399,Hawaiian,a native or resident of Hawaii
+7400,Hawaiian,the Oceanic languages spoken on Hawaii
+7401,Hawaiian_Islands H.I. Sandwich_Islands,a group of volcanic and coral islands in the central Pacific
+7402,Hawaiian_guitar steel_guitar,guitar whose steel strings are twanged while being pressed with a movable steel bar for a glissando effect
+7403,Hawking Stephen_Hawking Stephen_William_Hawking,English theoretical physicist (born in 1942)
+7404,Hawkins Coleman_Hawkins,United States jazz saxophonist (1904-1969)
+7405,Hawkins Hawkyns Sir_John_Hawkins Sir_John_Hawkyns,English privateer involved in the slave trade; later helped build the fleet that in 1588 defeated the Spanish Armada (1532-1595)
+7406,Haworth Sir_Walter_Norman_Haworth,English biochemist who was a pioneer in research on carbohydrates; when he synthesized vitamin C he became the first person to synthesize a vitamin artificially (1883-1950)
+7407,Hawthorne Nathaniel_Hawthorne,United States writer of novels and short stories mostly on moral themes (1804-1864)
+7408,Haydn,the music of Haydn
+7409,Haydn Joseph_Haydn Franz_Joseph_Haydn,prolific Austrian composer who influenced the classical form of the symphony (1732-1809)
+7410,Hayek Friedrich_August_von_Hayek,English economist (born in Austria) noted for work on the optimum allocation of resources (1899-1992)
+7411,Hayes Helen_Hayes,acclaimed actress of stage and screen (1900-1993)
+7412,Hayes Rutherford_B._Hayes Rutherford_Birchard_Hayes President_Hayes,19th President of the United States; his administration removed federal troops from the South and so ended the Reconstruction Period (1822-1893)
+7413,Hays,a town in central Kansas
+7414,Hays Arthur_Garfield_Hays,United States lawyer involved in several famous court trials (1881-1954)
+7415,Hays Will_Hays William_Harrison_Hays,United States lawyer and politician who formulated a production code that prescribed the moral content of United States films from 1930 to 1966 (1879-1954)
+7416,Haywood Big_Bill_Haywood William_Dudley_Haywood,United States labor leader and militant socialist who was one of the founders of the Industrial Workers of the World (1869-1928)
+7417,Hazardia genus_Hazardia,small genus of shrubs and subshrubs of western United States having flowers that change color as they mature
+7418,Hazlitt William_Hazlitt,English essayist and literary critic (1778-1830)
+7419,Hearst William_Randolph_Hearst,United States newspaper publisher whose introduction of large headlines and sensational reporting changed American journalism (1863-1951)
+7420,Heaven,the abode of God and the angels
+7421,Heaviside Oliver_Heaviside,English physicist and electrical engineer who helped develop telegraphic and telephonic communications; in 1902 (independent of A. E. Kennelly) he suggested the existence of an atmospheric layer that reflects radio waves back to earth (1850-1925)
+7422,Heaviside_layer Kennelly-Heaviside_layer E_layer E_region,a region of the ionosphere (from 50 to 90 miles up) that reflects radio waves of medium length
+7423,Hebbel Friedrich_Hebbel Christian_Friedrich_Hebbel,German dramatist (1813-1863)
+7424,Hebe,(Greek mythology) the goddess of youth and spring; wife of Hercules; daughter of Zeus and Hera; cupbearer to the Olympian gods
+7425,Hebei Hopei Hopeh Hebei_province,a populous province in northeastern China
+7426,Hebraist,linguist specializing in the Hebrew language
+7427,Hebrew,the ancient Canaanitic language of the Hebrews that has been revived as the official language of Israel
+7428,Hebrew_alphabet Hebraic_alphabet Hebrew_script,a Semitic alphabet used since the 5th century BC for writing the Hebrew language (and later for writing Yiddish and Ladino)
+7429,Hebrew_lesson,instruction in the Hebrew language
+7430,Hebrews Israelites,the ethnic group claiming descent from Abraham and Isaac (especially from Isaac's son Jacob); the nation whom God chose to receive his revelation and with whom God chose to make a covenant (Exodus 19)
+7431,Hebrides Hebridean_Islands Hebridean_Isles Western_Islands Western_Isles,a group of more than 500 islands off the western coast of Scotland
+7432,Hecate,(Greek mythology) Greek goddess of fertility who later became associated with Persephone as goddess of the underworld and protector of witches
+7433,Hecht Ben_Hecht,United States writer of stories and plays (1894-1946)
+7434,Hector,(Greek mythology) a mythical Trojan who was killed by Achilles during the Trojan War
+7435,Hedeoma genus_Hedeoma,small genus of American herbs (American pennyroyal)
+7436,Hedera genus_Hedera,Old World woody vines
+7437,Hedysarum genus_Hedysarum,genus of herbs of north temperate regions
+7438,Hefa Haifa,a major port in northwestern Israel
+7439,Hegel Georg_Wilhelm_Friedrich_Hegel,German philosopher whose three stage process of dialectical reasoning was adopted by Karl Marx (1770-1831)
+7440,Hegelian,a follower of the thought of Hegel
+7441,Hegira Hejira,the flight of Muhammad from Mecca to Medina in 622 which marked the beginning of the Muslim era; the Muslim calendar begins in that year
+7442,Heidegger Martin_Heidegger,German philosopher whose views on human existence in a world of objects and on Angst influenced the existential philosophers (1889-1976)
+7443,Heidelberg_man Homo_heidelbergensis,a type of primitive man who lived in Europe
+7444,Heimdall Heimdal Heimdallr,(Norse mythology) god of dawn and light; guardian of Asgard
+7445,Heimlich_maneuver Heimlich_manoeuvere,an emergency procedure to help someone who is choking because food is lodged in the trachea
+7446,Heinlein Robert_A._Heinlein Robert_Anson_Heinlein,United States writer of science fiction (1907-1988)
+7447,Heinz Henry_John_Heinz,United States industrialist who manufactured and sold processed foods (1844-1919)
+7448,Heisenberg Werner_Karl_Heisenberg,German mathematical physicist noted for stating the uncertainty principle (1901-1976)
+7449,Hejaz Hedjaz Hijaz,a coastal region of the western Arabian Peninsula bordering on the Red Sea; includes both Mecca and Medina; formerly an independent kingdom until it united with Nejd to form the Kingdom of Saudi Arabia
+7450,Hel Hela,(Norse mythology) goddess of the dead and queen of the underworld
+7451,Helen Helen_of_Troy,(Greek mythology) the beautiful daughter of Zeus and Leda who was abducted by Paris; the Greek army sailed to Troy to get her back which resulted in the Trojan War
+7452,Helena capital_of_Montana,capital of the state of Montana; located in western Montana
+7453,Helenium genus_Helenium,genus of American herbs with flowers having yellow rays: sneezeweeds
+7454,Heliamphora genus_Heliamphora,genus of pitcher plants of the Guiana Highlands in South America
+7455,Helichrysum genus_Helichrysum,large genus of mostly African and Australian herbs and shrubs: everlasting flowers; in some classifications includes genus Ozothamnus
+7456,Helicidae family_Helicidae,land snails including the common edible snail and some pests
+7457,Helicteres genus_Helicteres,genus of shrubs and small trees of tropical America and Asia having cylindrical fruits spirally twisted around one another
+7458,Heliobacter genus_Heliobacter,a genus of helical or curved or straight aerobic bacteria with rounded ends and multiple flagella; found in the gastric mucosa of primates (including humans)
+7459,Heliobacter_pylori H._pylori,the type species of genus Heliobacter; produces urease and is associated with several gastroduodenal diseases (including gastritis and gastric ulcers and duodenal ulcers and other peptic ulcers)
+7460,Helios,(Greek mythology) ancient god of the sun; drove his chariot across the sky each day; identified with Roman Sol
+7461,Heliothis genus_Heliothis,a genus of Noctuidae
+7462,Heliozoa order_Heliozoa,mostly freshwater protozoa
+7463,Helipterum genus_Helipterum,genus of South African and Australian herbs or shrubs grown as everlastings; the various Helipterum species are currently in process of being assigned to other genera especially genera Pteropogon and Hyalosperma
+7464,Helix genus_Helix,type genus of the family Helicidae
+7465,Helix_hortensis,a kind of garden snail
+7466,Hell Hades infernal_region netherworld Scheol underworld,(religion) the world of the dead; "No one goes to Hades with all his immense wealth"-Theognis
+7467,Hell perdition Inferno infernal_region nether_region pit,(Christianity) the abode of Satan and the forces of evil; where sinners suffer eternal punishment; "Hurl'd headlong...To bottomless perdition, there to dwell"- John Milton; "a demon from the depths of the pit"; "Hell is paved with good intentions"-Dr. Johnson
+7468,Hell's_Kitchen Hell's_Half_Acre,a district in Manhattan formerly noted for its slums and vice
+7469,Helladic_civilization Helladic_civilisation Helladic_culture,the bronze-age culture of mainland Greece that flourished 2500-1100 BC
+7470,Helleborus genus_Helleborus,a genus of Helleborus
+7471,Hellenism,the principles and ideals associated with classical Greek civilization
+7472,Heller Joseph_Heller,United States novelist whose best known work was a black comedy inspired by his experiences in the Air Force during World War II (1923-1999)
+7473,Hellman Lillian_Hellman,United States playwright; her plays were often indictments of injustice (1905-1984)
+7474,Helmholtz Hermann_von_Helmholtz Hermann_Ludwig_Ferdinand_von_Helmholtz Baron_Hermann_Ludwig_Ferdinand_von_Helmholtz,German physiologist and physicist (1821-1894)
+7475,Helminthostachys genus_Helminthostachys,one species: terrestrial fern of southeastern Asia and Australia
+7476,Heloderma genus_Heloderma,type genus of the Helodermatidae; American venomous lizards
+7477,Helodermatidae family_Helodermatidae,only known venomous lizards
+7478,Heloise,student and mistress and wife of Abelard (circa 1098-1164)
+7479,Helotiaceae family_Helotiaceae,a fungus family of order Helotiales
+7480,Helotiales order_Helotiales,order of fungi having asci in a disk-shaped to goblet-shaped apothecium
+7481,Helotium genus_Helotium,type genus of the Helotiaceae
+7482,Helsinki Helsingfors capital_of_Finland Finnish_capital,the capital and largest city of Finland; located in southern Finland; a major port and commercial and cultural center
+7483,Helvella_acetabulum,a helvella with a cup-shaped fertile body having a brown interior; the stalk is creamy white and heavily ribbed
+7484,Helvella_crispa miter_mushroom,a helvella with a saddle-shaped fertile part and creamy color; the stalk is fluted and pitted
+7485,Helvella_sulcata,a helvella with an irregularly convoluted cap that is dark brown when young and becomes dull grey with age; the lower surface of the cap is smooth and pale grey; the stalk is thick and deeply fluted
+7486,Helvellaceae family_Helvellaceae,family of false morels or lorchels; some are edible and some are poisonous
+7487,Helvetia,the Latin name for Switzerland
+7488,Helvetian,a native of Switzerland
+7489,Helwingia genus_Helwingia,deciduous dioecious shrubs native to woodland thickets in low mountains in Japan
+7490,Helxine genus_Helxine Soleirolia genus_Soleirolia,one species; a dwarf creeping mat-forming evergreen herb
+7491,Hemachatus genus_Hemachatus,ringhals
+7492,Hemerobiidae family_Hemerobiidae,brown lacewings
+7493,Hemerocallidaceae family_Hemerocallidaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Hemerocallis
+7494,Hemerocallis genus_Hemerocallis,east Asian rhizomatous clump-forming perennial herbs having flowers on long leafless stalks; cosmopolitan in cultivation: day lilies; sometimes placed in subfamily Hemerocallidaceae
+7495,Hemiascomycetes class_Hemiascomycetes,class of fungi in which no ascocarps are formed: yeasts and some plant parasites
+7496,Hemigalus genus_Hemigalus,banded palm civets
+7497,Hemigrammus genus_Hemigrammus,tetras
+7498,Heming Hemminge John_Heming John_Hemminge,English actor who edited the first folio of Shakespeare's plays (1556-1630)
+7499,Hemingway Ernest_Hemingway,an American writer of fiction who won the Nobel prize for literature in 1954 (1899-1961)
+7500,Hemiprocnidae family_Hemiprocnidae,tree swifts
+7501,Hemiptera order_Hemiptera,plant bugs; bedbugs; some true bugs; also includes suborders Heteroptera (true bugs) and Homoptera (e.g., aphids, plant lice and cicadas)
+7502,Hemipteronatus genus_Hemipteronatus,razor fish
+7503,Hemiramphidae family_Hemiramphidae,halfbeaks; marine and freshwater fishes closely related to the flying fishes but not able to glide
+7504,Hemitripterus genus_Hemitripterus,sea ravens
+7505,Hendrix Jimi_Hendrix James_Marshall_Hendrix,United States guitarist whose innovative style with electric guitars influenced the development of rock music (1942-1970)
+7506,Henry Joseph_Henry,United States physicist who studied electromagnetic phenomena (1791-1878)
+7507,Henry Patrick_Henry,a leader of the American Revolution and a famous orator who spoke out against British rule of the American colonies (1736-1799)
+7508,Henry William_Henry,English chemist who studied the quantities of gas absorbed by water at different temperatures and under different pressures (1775-1836)
+7509,Henry's_law,(chemistry) law formulated by the English chemist William Henry; the amount of a gas that will be absorbed by water increases as the gas pressure increases
+7510,Henry_I Henry_Beauclerc,King of England from 1100 to 1135; youngest son of William the Conqueror; conquered Normandy in 1106 (1068-1135)
+7511,Henry_II,king of France from 1547 to 1559; regained Calais from the English; husband of Catherine de Medicis and father of Charles IX (1519-1559)
+7512,Henry_II,first Plantagenet King of England; instituted judicial and financial reforms; quarreled with archbishop Becket concerning the authority of the Crown over the church (1133-1189)
+7513,Henry_III,son of Henry II of France and the last Valois to be king of France (1551-1589)
+7514,Henry_III,son of King John and king of England from 1216 to 1272; his incompetence aroused baronial opposition led by Simon de Montfort (1207-1272)
+7515,Henry_IV,King of the Germans and Holy Roman Emperor (1050-1106)
+7516,Henry_IV Bolingbroke Henry_Bolingbroke,the first Lancastrian king of England from 1399 to 1413; deposed Richard II and suppressed rebellions (1367-1413)
+7517,Henry_IV Henry_of_Navarre Henry_the_Great,king of France from 1589 to 1610; although he was leader of the Huguenot armies, when he succeeded the Catholic Henry III and founded the Bourbon dynasty in 1589 he established religious freedom in France
+7518,Henry_V,son of Henry IV and King of England from 1413 to 1422; reopened the Hundred Years' War and defeated the French at Agincourt (1387-1422)
+7519,Henry_VI,son of Henry V who as an infant succeeded his father and was King of England from 1422 to 1461; he was taken prisoner in 1460 and Edward IV was proclaimed king; he was rescued and regained the throne in 1470 but was recaptured and murdered in the Tower of London (1421-1471)
+7520,Henry_VII,King of the Germans and Holy Roman Emperor (1275-1313)
+7521,Henry_VII Henry_Tudor,first Tudor king of England from 1485 to 1509; head of the house of Lancaster in the War of the Roses; defeated Richard III at Bosworth Field and was proclaimed king; married the daughter of Edward IV and so united the houses of York and Lancaster (1457-1509)
+7522,Henry_VIII,son of Henry VII and King of England from 1509 to 1547; his divorce from Catherine of Aragon resulted in his break with the Catholic Church in 1534 and his excommunication 1538, leading to the start of the Reformation in England (1491-1547)
+7523,Henson Jim_Henson,United States puppeteer who created a troupe of puppet characters (1936-1990)
+7524,Hepaticopsida class_Hepaticopsida Hepaticae class_Hepaticae,liverworts: comprises orders Anthocerotales; Jungermanniales; Marchantiales; Sphaerocarpales
+7525,Hepburn Katharine_Hepburn Katharine_Houghton_Hepburn,United States film actress who appeared in many films with Spencer Tracy (1907-2003)
+7526,Hephaestus Hephaistos,(Greek mythology) the lame god of fire and metalworking in ancient mythology; identified with Roman Vulcan
+7527,Hepworth Barbara_Hepworth Dame_Barbara_Hepworth,British sculptor (1902-1975)
+7528,Hera Here,queen of the Olympian gods in ancient Greek mythology; sister and wife of Zeus remembered for her jealously of the many mortal women Zeus fell in love with; identified with Roman Juno
+7529,Heracleum genus_Heracleum,widely distributed genus of plants with usually thick rootstocks and large umbels of white flowers
+7530,Heraclitus,a presocratic Greek philosopher who said that fire is the origin of all things and that permanence is an illusion as all things are in perpetual flux (circa 500 BC)
+7531,Herat,a city in northwestern Afghanistan on the site of several ancient cities
+7532,Herbart Johann_Friedrich_Herbart,German philosopher (1776-1841)
+7533,Herbert Victor_Herbert,United States musician and composer and conductor noted for his comic operas (1859-1924)
+7534,Herculaneum,ancient city; now destroyed
+7535,Hercules,a large constellation in the northern hemisphere between Lyra and Corona Borealis
+7536,Hercules Heracles Herakles Alcides,(classical mythology) a hero noted for his strength; performed 12 immense labors to gain immortality
+7537,Hercules'-club Hercules'-clubs Hercules-club Zanthoxylum_clava-herculis,densely spiny ornamental of southeastern United States and West Indies
+7538,Herder Johann_Gottfried_von_Herder,German philosopher who advocated intuition over reason (1744-1803)
+7539,Hereford whiteface,hardy English breed of cattle raised extensively in United States
+7540,Herero,a member of a pastoral Bantu people living in Namibia, Botswana, and Angola
+7541,Herero,a Banto language spoken by the Herero in Namibia, Botswana, and Angola
+7542,Heritiera genus_Heritiera Terrietia genus_Terrietia,small genus of timber trees of eastern Asia, Australasia and tropical Africa that form large buttresses
+7543,Herman Woody_Herman Woodrow_Charles_Herman,United States jazz musician and bandleader (1913-1987)
+7544,Hermannia genus_Hermannia,genus of African herbs and subshrubs having honey-scented bell-shaped flowers
+7545,Hermaphroditus,(Greek mythology) son of Hermes and Aphrodite who merged with the nymph Salmacis to form one body
+7546,Hermes,(Greek mythology) messenger and herald of the gods; god of commerce and cunning and invention and theft; identified with Roman Mercury
+7547,Hermissenda genus_Hermissenda,genus of marine sea slugs
+7548,Hermissenda_crassicornis,a kind of sea slug
+7549,Hermosillo,a city in northwestern Mexico near the Gulf of California
+7550,Hernaria genus_Hernaria,low-growing Old World herbs with minute bright green leaves
+7551,Hero,(Greek mythology) priestess of Aphrodite who killed herself when her lover Leander drowned while trying to swim the Hellespont to see her
+7552,Hero Heron Hero_of_Alexandria,Greek mathematician and inventor who devised a way to determine the area of a triangle and who described various mechanical devices (first century)
+7553,Herod Herod_the_Great,king of Judea who (according to the New Testament) tried to kill Jesus by ordering the death of all children under age two in Bethlehem (73-4 BC)
+7554,Herodotus,the ancient Greek known as the father of history; his accounts of the wars between the Greeks and Persians are the first known examples of historical writing (485-425 BC)
+7555,Herpestes genus_Herpestes,mongooses
+7556,Herr,a German man; used before the name as a title equivalent to Mr in English
+7557,Herr,a German courtesy title or form of address for a man
+7558,Herrick Robert_Herrick,English lyric poet (1591-1674)
+7559,Herschel John_Herschel Sir_John_Herschel Sir_John_Frederick_William_Herschel,English astronomer (son of William Herschel) who extended the catalogue of stars to the southern hemisphere and did pioneering work in photography (1792-1871)
+7560,Herschel William_Herschel Sir_William_Herschel Sir_Frederick_William_Herschel,English astronomer (born in Germany) who discovered infrared light and who catalogued the stars and discovered the planet Uranus (1738-1822)
+7561,Herschelian_telescope off-axis_reflector,a reflecting telescope with the mirror slightly tilted to throw the image to the side where it can be viewed
+7562,Hershey,an industrial town to the east of Harrisburg
+7563,Hershey Milton_Snavely_Hershey,United States confectioner and philanthropist who created the model industrial town of Hershey, Pennsylvania; founded an industrial school for orphan boys (1857-1945)
+7564,Hershey_bar,a bar of milk chocolate made by the Hershey company
+7565,Hertfordshire,a county in southern England
+7566,Hertz Gustav_Hertz Gustav_Ludwig_Hertz,German physicist who with James Franck proved the existence of the stationary energy states postulated by Bohr (1887-1975)
+7567,Hertz Heinrich_Hertz Heinrich_Rudolph_Hertz,German physicist who was the first to produce electromagnetic waves artificially (1857-1894)
+7568,Hertzian_wave,a former name for a radio wave; an electromagnetic wave of radio frequency generated by oscillations in an electric circuit
+7569,Herzberg Gerhard_Herzberg,Canadian physicist (born in Germany) noted for contributions to understanding the structure of molecules (born in 1904)
+7570,Heshvan,the second month of the civil year; the eighth month of the ecclesiastical year in the Jewish calendar (in October and November)
+7571,Hesiod,Greek poet whose existing works describe rural life and the genealogies of the gods and the beginning of the world (eighth century BC)
+7572,Hesperides Atlantides,(Greek mythology) group of 3 to 7 nymphs who guarded the golden apples that Gaea gave as a wedding gift to Hera
+7573,Hesperiphona genus_Hesperiphona,evening grosbeak
+7574,Hesperis genus_Hesperis,biennial or perennial erect herbs having nocturnally fragrant flowers
+7575,Hess Dame_Myra_Hess,English pianist (1890-1965)
+7576,Hess Rudolf_Hess Walther_Richard_Rudolf_Hess,Nazi leader who in 1941 flew a solo flight to Scotland in an apparent attempt to negotiate a peace treaty with Great Britain but was imprisoned for life (1894-1987)
+7577,Hess Victor_Hess Victor_Franz_Hess,United States physicist (born in Austria) who was a discoverer of cosmic radiation (1883-1964)
+7578,Hess Walter_Hess Walter_Rudolf_Hess,Swiss physiologist noted for studies of the brain (1881-1973)
+7579,Hesse Hermann_Hesse,Swiss writer (born in Germany) whose novels and poems express his interests in eastern spiritual values (1877-1962)
+7580,Hessian_boot hessian jackboot Wellington Wellington_boot,(19th century) a man's high tasseled boot
+7581,Hessian_fly Mayetiola_destructor,small fly whose larvae damage wheat and other grains
+7582,Hestia,(Greek mythology) the goddess of the hearth and its fire in ancient mythology; identified with Roman Vesta
+7583,Heteranthera genus_Heteranthera,mud plantains
+7584,Heterobasidiomycetes subclass_Heterobasidiomycetes,category used in some classification systems for various basidiomycetous fungi including rusts and smuts
+7585,Heterocephalus genus_Heterocephalus,sand rats
+7586,Heterodon genus_Heterodon,a genus of small colubrid snakes containing the North American hognose snakes
+7587,Heterokontophyta division_Heterokontophyta,algae having chlorophyll a and usually c, and flagella of unequal lengths; terminology supersedes Chrysophyta in some classifications
+7588,Heteromeles genus_Heteromeles,one species: toyon; in some classifications included in genus Photinia
+7589,Heteromyidae family_Heteromyidae,small New World burrowing mouselike rodents with fur-lined cheek pouches and hind limbs and tail adapted to leaping; adapted to desert conditions: pocket mice; kangaroo mice; kangaroo rats
+7590,Heteroptera suborder_Heteroptera,true bugs
+7591,Heteroscelus genus_Heteroscelus,tattlers
+7592,Heterosomata order_Heterosomata order_Pleuronectiformes,flatfishes: halibut; sole; flounder; plaice; turbot; tonguefishes
+7593,Heterostraci suborder_Heterostraci,extinct group of armored jawless fishes or fish-like vertebrate; taxonomy is not clear
+7594,Heterotheca genus_Heterotheca,genus of yellow-flowered North American herbs
+7595,Heterotrichales order_Heterotrichales,yellow-green algae with simple or branching filaments; comprising the single family Tribonemaceae
+7596,Heuchera genus_Heuchera,genus of North American herbs with basal cordate or orbicular leaves and small panicled flowers
+7597,Hevea rubber_tree genus_Hevea,small genus of South American trees yielding latex; "rubber trees are usually cultivated in plantations"
+7598,Hevesy George_Charles_Hevesy_de_Hevesy,Hungarian chemist who studied radioisotopes and was one of the discoverers of the element hafnium (1885-1966)
+7599,Hexagrammidae family_Hexagrammidae,greenlings
+7600,Hexagrammos genus_Hexagrammos,type genus of the Hexagrammidae
+7601,Hexalectris genus_Hexalectris,a monocotyledonous genus of the family Orchidaceae
+7602,Hexamita genus_Hexamita,flagellates free-living or parasitic in intestines of birds
+7603,Hexanchidae family_Hexanchidae,primitive sharks
+7604,Hexanchus genus_Hexanchus,a genus of Hexanchidae
+7605,Heyerdahl Thor_Hyerdahl,Norwegian anthropologist noted for his studies of cultural diffusion (1914-2002)
+7606,Heyrovsky Joroslav_Heyrovsky,Czechoslovakian chemist who developed polarography (1890-1967)
+7607,Heyse Paul_Heyse Paul_Johann_Ludwig_von_Heyse,German writer (1830-1914)
+7608,Heyward DuBois_Heyward Edwin_DuBois_Hayward,United States writer (1885-1940)
+7609,Hezekiah Ezekias,(Old Testament) king of Judah who abolished idolatry (715-687 BC)
+7610,Hiawatha,a Native American chieftain who argued for peace with the European settlers (16th century)
+7611,Hibbertia genus_Hibbertia,evergreen heathlike or scandent shrubs of Madagascar; Australasia; Polynesia
+7612,Hibbing,a town in northeastern Minnesota in the Mesabi Range
+7613,Hickock Wild_Bill_Hickock James_Butler_Hickock,frontier marshal whose adventures have become legendary (1837-1876)
+7614,Hidatsa Gros_Ventre,a member of the Sioux people formerly inhabiting an area along the Missouri river in western North Dakota
+7615,Hidatsa Gros_Ventre,a Siouan language spoken by the Hidatsa
+7616,Hieracium genus_Hieracium,large genus of perennial hairy herbs of Europe to western Asia to northwestern Africa and North America; few are ornamental; often considered congeneric with Pilosella
+7617,Higginson Thomas_Higginson Thomas_Wentworth_Storrow_Higginson,United States writer and soldier who led the first Black regiment in the Union Army (1823-1911)
+7618,High_Church High_Anglican_Church,a group in the Anglican Church that emphasizes the Catholic tradition (especially in sacraments and rituals and obedience to church authority)
+7619,High_Commission,an embassy of one British Commonwealth country to another
+7620,High_Holy_Day High_Holiday,Jewish holy days observed with particular solemnity
+7621,High_Mass,a solemn and elaborate Mass with music
+7622,High_Renaissance,the artistic style of early 16th century painting in Florence and Rome; characterized by technical mastery and heroic composition and humanistic content
+7623,Higher_National_Diploma HND,a diploma given for vocational training that prepares the student for a career in a particular area; good students may progress to a course leading to a degree
+7624,Highlander,a soldier in a Scottish regiment from the Highlands
+7625,Highlander Scottish_Highlander Highland_Scot,a native of the Highlands of Scotland
+7626,Highlands Highlands_of_Scotland,a mountainous region of northern Scotland famous for its rugged beauty; known for the style of dress (the kilt and tartan) and the clan system (now in disuse)
+7627,Highness,(Your Highness or His Highness or Her Highness) title used to address a royal person
+7628,Highway_Code,the code of rules governing the use of public roads
+7629,Higi Kapsiki,a Chadic language spoken south of Lake Chad
+7630,Hilbert David_Hilbert,German mathematician (1862-1943)
+7631,Hilbert_space,a metric space that is linear and complete and (usually) infinite-dimensional
+7632,Hill Benny_Hill Alfred_Hawthorne,risque English comedian (1925-1992)
+7633,Hill J._J._Hill James_Jerome_Hill,United States railroad tycoon (1838-1916)
+7634,Hillary Edmund_Hillary Sir_Edmund_Hillary Sir_Edmund_Percival_Hillary,New Zealand mountaineer who in 1953 first attained the summit of Mount Everest with his Sherpa guide Tenzing Norgay (born in 1919)
+7635,Hillel,Palestinian rabbi and interpreter of Judaic law
+7636,Hilo,a town in Hawaii on the island of Hawaii
+7637,Himalaya_honeysuckle Leycesteria_formosa,shrub honeysuckle with drooping spikes of purplish flowers
+7638,Himalayan_lilac Syringa_emodi,robust upright shrub of mountains of northern India having oblong-elliptic leaves and pale lilac or white malodorous flowers
+7639,Himalayan_rhubarb Indian_rhubarb red-veined_pie_plant Rheum_australe Rheum_emodi,Asian herb (Himalayas)
+7640,Himalayas Himalaya_Mountains Himalaya,a mountain range extending 1500 miles on the border between India and Tibet; this range contains the world's highest mountain
+7641,Himalayish,the Tibeto-Burman language spoken in Tibet and Nepal and Bhutan and Sikkim
+7642,Himantoglossum genus_Himantoglossum,small genus of terrestrial orchids of Europe and Mediterranean region
+7643,Himantopus genus_Himantopus,major one of two genera of stilts; similar to avocets but with straight bills
+7644,Himmler Heinrich_Himmler,German Nazi who was chief of the SS and the Gestapo and who oversaw the genocide of six million Jews (1900-1945)
+7645,Hinault Bernard_Hinault,French racing cyclist who won the Tour de France five times (born in 1954)
+7646,Hinayana,a major school of Buddhism teaching personal salvation through one's own efforts
+7647,Hinayana Hinayana_Buddhism,an offensive name for the early conservative Theravada Buddhism; it died out in India but survived in Sri Lanka and was taken from there to other regions of southwestern Asia
+7648,Hinayanism,the religious doctrine of Hinayana Buddhism
+7649,Hinayanist,an adherent of Hinayana Buddhism
+7650,Hindemith Paul_Hindemith,German neoclassical composer and conductor who believed that music should have a social purpose (1895-1963)
+7651,Hindenburg Paul_von_Hindenburg Paul_Ludwig_von_Beneckendorff_und_von_Hindenburg,German field marshal and statesman; as president of the Weimar Republic he reluctantly appointed Hitler as chancellor in 1933 (1847-1934)
+7652,Hindi,the most widely spoken of modern Indic vernaculars; spoken mostly in the north of India; along with English it is the official language of India; usually written in Devanagari script
+7653,Hindu Hindoo,a person who adheres to Hinduism
+7654,Hindu Hindoo Hindustani,a native or inhabitant of Hindustan or India
+7655,Hindu_Kush Hindu_Kush_Mountains,a mountain range extending to the west of the Himalayas
+7656,Hindu_calendar,the lunisolar calendar governing the religious life of Hindus; an extra month is inserted after every month in which there are two new moons (once every three years)
+7657,Hindu_calendar_month,any lunisolar month in the Hindu calendar
+7658,Hindu_deity,a deity worshipped by the Hindus
+7659,Hinduism Hindooism,the religion of most people in India, Bangladesh, Sri Lanka, and Nepal
+7660,Hinduism Hindooism,a body of religious and philosophical beliefs and cultural practices native to India and based on a caste system; it is characterized by a belief in reincarnation, by a belief in a supreme being of many forms and natures, by the view that opposing theories are aspects of one eternal truth, and by a desire for liberation from earthly evils
+7661,Hindustan,northern region of India where Hinduism predominates
+7662,Hindustani Hindoostani Hindostani,a form of Hindi spoken around Delhi
+7663,Hipparchus,Greek astronomer and mathematician who discovered the precession of the equinoxes and made the first known star chart and is said to have invented trigonometry (second century BC)
+7664,Hippo Hippo_Regius,an ancient Numidian town in northwestern Africa adjoining present-day Annaba in northeastern Algeria
+7665,Hippobosca genus_Hippobosca,type genus of the Hippoboscidae
+7666,Hippoboscidae family_Hippoboscidae,winged or wingless dipterans: louse flies
+7667,Hippocampus genus_Hippocampus,seahorses
+7668,Hippocastanaceae family_Hippocastanaceae horse-chestnut_family,trees having showy flowers and inedible nutlike seeds in a leathery capsule
+7669,Hippocrates,medical practitioner who is regarded as the father of medicine; author of the Hippocratic oath (circa 460-377 BC)
+7670,Hippocratic_oath,an oath taken by physicians to observe medical ethics deriving from Hippocrates
+7671,Hippocrepis genus_Hippocrepis,species of Old World herbs or subshrubs: horseshoe vetch
+7672,Hippodamia genus_Hippodamia,genus of ladybugs
+7673,Hippodamia_convergens,a variety of ladybug
+7674,Hippoglossoides genus_Hippoglossoides,a genus of Pleuronectidae
+7675,Hippoglossus genus_Hippoglossus,halibuts
+7676,Hippopotamidae family_Hippopotamidae,hippopotami
+7677,Hipposideridae family_Hipposideridae,Old World leafnose bats
+7678,Hipposideros genus_Hipposideros,horseshoe bats
+7679,Hippotragus genus_Hippotragus,sable antelopes
+7680,Hipsurus genus_Hipsurus,a genus of Embiotocidae
+7681,Hirohito Michinomiya_Hirohito,emperor of Japan who renounced his divinity and became a constitutional monarch after Japan surrendered at the end of World War II (1901-1989)
+7682,Hiroshima,a port city on the southwestern coast of Honshu in Japan; on August 6, 1945 Hiroshima was almost completely destroyed by the first atomic bomb dropped on a populated area
+7683,Hirschfeld Al_Hirschfeld,United States artist noted for his line-drawn caricatures (1904-2003)
+7684,Hirschsprung Harold_Hirschsprung,Danish pediatrician (1830-1916)
+7685,Hirschsprung's_disease congenital_megacolon,congenital condition in which the colon does not have the normal network of nerves; there is little urge to defecate so the feces accumulate and cause megacolon
+7686,Hirudinea class_Hirudinea,hermaphroditic aquatic or terrestrial or parasitic annelids
+7687,Hirudinidae family_Hirudinidae,a family of Hirudinea
+7688,Hirudo genus_Hirudo,type genus of the family Hirudinidae
+7689,Hirundinidae family_Hirundinidae,swallows and martins
+7690,Hirundo genus_Hirundo,type genus of the Hirundinidae
+7691,Hispaniola Haiti Hayti,an island in the West Indies
+7692,Hitchcock Alfred_Hitchcock Sir_Alfred_Hitchcock Alfred_Joseph_Hitchcock,English film director noted for his skill in creating suspense (1899-1980)
+7693,Hitchings George_Herbert_Hitchings,United States biochemist noted for developing drugs to treat leukemia and gout (1905-1998)
+7694,Hitchiti,a member of the Muskhogean people formerly living in Georgia; a member of the Creek Confederacy
+7695,Hitchiti,the Muskhogean language spoken by the Hitchiti
+7696,Hitler Adolf_Hitler Der_Fuhrer,German Nazi dictator during World War II (1889-1945)
+7697,Hittite,a member of an ancient people who inhabited Anatolia and northern Syria about 2000 to 1200 BC
+7698,Hittite,the language of the Hittites and the principal language of the Anatolian group of languages; deciphered from cuneiform inscriptions
+7699,Hizb_ut-Tahrir Freedom_Party,the most popular and feared Islamic extremist group in central Asia; advocates `pure' Islam and the creation of a worldwide Islamic state
+7700,Hizballah Hezbollah Hizbollah Hizbullah Lebanese_Hizballah Party_of_God Islamic_Jihad Islamic_Jihad_for_the_Liberation_of_Palestine Revolutionary_Justice_Organization Organization_of_the_Oppressed_on_Earth,a Shiite terrorist organization with strong ties to Iran; seeks to create an Iranian fundamentalist Islamic state in Lebanon; car bombs are the signature weapon
+7701,Hmong Hmong_language Miao,a language of uncertain affiliation spoken by the Hmong
+7702,Hmong Miao,a people living traditionally in mountain villages in southern China and adjacent areas of Vietnam and Laos and Thailand; many have emigrated to the United States
+7703,Ho_Chi_Minh Nguyen_Tat_Thanh,Vietnamese communist statesman who fought the Japanese in World War II and the French until 1954 and South Vietnam until 1975 (1890-1969)
+7704,Ho_Chi_Minh_City Saigon,a city in South Vietnam; formerly (as Saigon) it was the capital of French Indochina
+7705,Hoagland Hudson_Hoagland,United States physiologist (1899-1982)
+7706,Hobart,a port and state capital of Tasmania
+7707,Hobbes Thomas_Hobbes,English materialist and political philosopher who advocated absolute sovereignty as the only kind of government that could resolve problems caused by the selfishness of human beings (1588-1679)
+7708,Hobbs Sir_Jack_Hobbs John_Berry_Hobbs,notable English cricketer (1882-1963)
+7709,Hobson's_choice,the choice of taking what is offered or nothing at all
+7710,Hodeida Al-Hudaydah,an important port in Yemen on the Red Sea
+7711,Hodgkin Alan_Hodgkin Sir_Alan_Hodgkin Alan_Lloyd_Hodgkin,English physiologist who, with Andrew Huxley, discovered the role of potassium and sodium atoms in the transmission of the nerve impulse (1914-1998)
+7712,Hodgkin Dorothy_Hodgkin Dorothy_Mary_Crowfoot_Hodgkin,English chemist (born in Egypt) who used crystallography to study the structure of organic compounds (1910-1994)
+7713,Hodgkin Thomas_Hodgkin,English physician who first described Hodgkin's disease (1798-1866)
+7714,Hodgkin's_disease,a malignant disorder in which there is progressive (but painless) enlargement of lymph tissue followed by enlargement of the spleen and liver
+7715,Hoenir,(Norse mythology) one of the Aesir having a strong and beautiful body but a dull mind
+7716,Hoffa Jimmy_Hoffa James_Riddle_Hoffa,United States labor leader who was president of the Teamsters Union; he was jailed for trying to bribe a judge and later disappeared and is assumed to have been murdered (1913-1975)
+7717,Hoffman Dustin_Hoffman,versatile United States film actor (born in 1937)
+7718,Hoffman Malvina_Hoffman,United States sculptor (1887-1966)
+7719,Hoffmann August_Wilhelm_von_Hoffmann,German chemist (1818-1892)
+7720,Hoffmann E._T._A._Hoffmann Ernst_Theodor_Amadeus_Hoffmann Ernst_Theodor_Wilhelm_Hoffmann,German writer of fantastic tales (1776-1822)
+7721,Hoffmann Josef_Hoffmann,Austrian architect known for his use of rectilinear units (1870-1956)
+7722,Hoffmann Roald_Hoffmann,United States chemist (born in Poland) who used quantum mechanics to understand chemical reactions (born in 1937)
+7723,Hoffmannsthal Hugo_von_Hoffmannsthal,German poet who wrote libretti for operas by Richard Strauss (1874-1929)
+7724,Hogan Ben_Hogan William_Benjamin_Hogan,United States golfer who won many major golf tournaments (1912-1997)
+7725,Hogarth William_Hogarth,English artist noted for a series of engravings that satirized the affectations of his time (1697-1764)
+7726,Hogg James_Hogg,Scottish writer of rustic verse (1770-1835)
+7727,Hogmanay,New Year's Eve in Scotland
+7728,Hohenlinden,a town in Bavaria (near Munich)
+7729,Hohenlinden battle_of_Hohenlinden,a battle during the Napoleonic Wars (1800); the French defeated the Austrians
+7730,Hohenzollern,a German noble family that ruled Brandenburg and Prussia
+7731,Hohenzollern_empire Second_Reich,the Reich when Hohenzollern monarchs ruled Germany (from 1871 to 1919)
+7732,Hoheria genus_Hoheria,small genus of shrubs and small trees of New Zealand: lacebarks
+7733,Hohhot,a northern industrial city of China to the northwest of Beijing
+7734,Hokan Hoka,a member of a North American Indian people speaking one of the Hokan languages
+7735,Hokan Hoka,a family of Amerindian languages spoken in California
+7736,Hokkaido Ezo Yezo,the second largest of the four main islands of Japan; to the north of Honshu
+7737,Hokusai Katsushika_Hokusai,Japanese painter whose work influenced the impressionists (1760-1849)
+7738,Holarrhena genus_Holarrhena,genus of deciduous trees and shrubs of tropical Africa and Asia
+7739,Holbein Hans_Holbein Holbein_the_Elder,German painter of religious works (1465-1524)
+7740,Holbein Hans_Holbein Holbein_the_Younger,German painter and engraver noted for his portraits; he was commissioned by Henry VIII to provide portraits of the English king's prospective brides (1497-1543)
+7741,Holbrookia genus_Holbrookia,earless lizards
+7742,Holcus genus_Holcus,a genus of Old World grasses widely cultivated in America
+7743,Hollerith Herman_Hollerith,United States inventor who invented a system for recording alphanumeric information on punched cards (1860-1929)
+7744,Holly Buddy_Holly Charles_Hardin_Holley,United States rock star (1936-1959)
+7745,Hollywood,a flashy vulgar tone or atmosphere believed to be characteristic of the American film industry; "some people in publishing think of theirs as a glamorous medium so they copy the glitter of Hollywood"
+7746,Hollywood,a district of Los Angeles long associated with the American film industry
+7747,Hollywood,the film industry of the United States
+7748,Holmes Arthur_Holmes,English geologist and supporter of the theory of continental drift (1890-1965)
+7749,Holmes Oliver_Wendell_Holmes,United States writer of humorous essays (1809-1894)
+7750,Holmes Oliver_Wendell_Holmes_Jr.,United States jurist noted for his liberal opinions (1841-1935)
+7751,Holocaust final_solution,the mass murder of Jews under the German Nazi regime from 1941 until 1945
+7752,Holocene Holocene_epoch Recent Recent_epoch,approximately the last 10,000 years
+7753,Holocentridae family_Holocentridae,squirrelfishes and soldierfishes
+7754,Holocentrus genus_Holocentrus,type genus of the family Holocentridae; squirrelfishes
+7755,Holocentrus_ascensionis,bright red fish of West Indies and Bermuda
+7756,Holocephali subclass_Holocephali,chimaeras and extinct forms
+7757,Holofernes,(Apocrypha) the Assyrian general who was decapitated by the biblical heroine Judith
+7758,Holothuria genus_Holothuria,type genus of the Holothuridae
+7759,Holothuridae family_Holothuridae,a family of Holothuroidea
+7760,Holothuroidea class_Holothuroidea,class of echinoderms including the sea cucumbers
+7761,Holy_Eucharist Eucharist sacrament_of_the_Eucharist Holy_Sacrament Liturgy Eucharistic_liturgy Lord's_Supper,a Christian sacrament commemorating the Last Supper by consecrating bread and wine
+7762,Holy_Ghost Holy_Spirit Paraclete,the third person in the Trinity; Jesus promised the Apostles that he would send the Holy Spirit after his Crucifixion and Resurrection; it came on Pentecost
+7763,Holy_Innocents'_Day Innocents'_Day,December 28, commemorating Herod's slaughter of the children of Bethlehem
+7764,Holy_Order Order,(usually plural) the status or rank or office of a Christian clergyman in an ecclesiastical hierarchy; "theologians still disagree over whether `bishop' should or should not be a separate Order"
+7765,Holy_Roller,a member of a religion that expresses ecstatic fervor
+7766,Holy_Roman_Emperor,sovereign of the Holy Roman Empire
+7767,Holy_Roman_Empire,a political entity in Europe that began with the papal coronation of Otto I as the first emperor in 962 and lasted until 1806 when it was dissolved by Napoleon
+7768,Holy_Saturday,the Saturday before Easter; the last day of Lent
+7769,Holy_See The_Holy_See State_of_the_Vatican_City,the smallest sovereign state in the world; the see of the Pope (as the Bishop of Rome); home of the Pope and the central administration of the Roman Catholic Church; achieved independence from Italy in 1929
+7770,Holy_Sepulcher Holy_Sepulchre,the sepulcher in which Christ's body lay between burial and resurrection
+7771,Holy_Week Passion_Week,the week before Easter
+7772,Holy_Year,(Roman Catholic Church) a period of remission from sin (usually granted every 25 years)
+7773,Homaridae family_Homaridae,large-clawed lobsters
+7774,Homarus genus_Homarus,type genus of the family Homaridae: common edible lobsters
+7775,Home_Counties,the English counties surrounding London into which Greater London has expanded
+7776,Home_Loan_Bank,one of 11 regional banks that monitor and make short-term credit advances to thrift institutions in their region
+7777,Home_Office,the government department in charge of domestic affairs
+7778,Home_Secretary Secretary_of_State_for_the_Home_Department,the British cabinet minister who is head of the Home Office
+7779,Homer,ancient Greek epic poet who is believed to have written the Iliad and the Odyssey (circa 850 BC)
+7780,Homer Winslow_Homer,United States painter best known for his seascapes (1836-1910)
+7781,Hominidae family_Hominidae,modern man and extinct immediate ancestors of man
+7782,Hominoidea superfamily_Hominoidea,anthropoid apes and human beings
+7783,Homo_erectus,extinct species of primitive hominid with upright stature but small brain; "Homo erectus was formerly called Pithecanthropus erectus"
+7784,Homo_habilis,extinct species of upright East African hominid having some advanced humanlike characteristics
+7785,Homo_sapiens,the only surviving hominid; species to which modern man belongs; bipedal primate having language and ability to make and use complex tools; brain volume at least 1400 cc
+7786,Homo_sapiens_sapiens modern_man,subspecies of Homo sapiens; includes all modern races
+7787,Homo_soloensis,extinct primitive hominid of late Pleistocene; Java; formerly Javanthropus
+7788,Homobasidiomycetes subclass_Homobasidiomycetes,category used in some classification systems for various basidiomycetous fungi including e.g. mushrooms and puffballs which are usually placed in the classes Gasteromycetes and Hymenomycetes
+7789,Homogyne genus_Homogyne,small genus of low perennial herbs of montane Europe; in some classifications included in genus Tussilago
+7790,Homona genus_Homona,tea tortrix
+7791,Homoptera suborder_Homoptera,plant lice (aphids); whiteflies; cicadas; leafhoppers; plant hoppers; scale insects and mealybugs; spittle insects
+7792,Homyel Homel Gomel,industrial city of Belarus to the southeast of Minsk
+7793,Honduran,a native or inhabitant of Honduras
+7794,Honduran_monetary_unit,monetary unit in Honduras
+7795,Honduras Republic_of_Honduras,a republic in Central America; achieved independence from Spain in 1821; an early center of Mayan culture
+7796,Honduras_mahogany Swietinia_macrophylla,an important Central American mahogany tree
+7797,Honduras_rosewood Dalbergia_stevensonii,Central American tree yielding a valuable dark streaked rosewood
+7798,Honegger Arthur_Honegger,Swiss composer (born in France) who was the founding member of a group in Paris that included Erik Satie and Darius Milhaud and Francis Poulenc and Jean Cocteau (1892-1955)
+7799,Hong_Kong,formerly a Crown Colony on the coast of southern China in Guangdong province; leased by China to Britain in 1842 and returned in 1997; one of the world's leading commercial centers
+7800,Hong_Kong_dollar,the basic unit of money in Hong Kong
+7801,Honiara,national capital of Solomon Islands
+7802,Honolulu capital_of_Hawaii Hawaiian_capital,the capital and largest city of Hawaii; located on a large bay on the island of Oahu
+7803,Honshu Hondo,the central and largest of the four main islands of Japan; between the Sea of Japan and the Pacific Ocean; regarded as the Japanese mainland
+7804,Hook_of_Holland Hoek_van_Holland,a cape on the southwestern coast of the Netherlands near Rotterdam
+7805,Hooke Robert_Hooke,English scientist who formulated the law of elasticity and proposed a wave theory of light and formulated a theory of planetary motion and proposed the inverse square law of gravitational attraction and discovered the cellular structure of cork and introduced the term `cell' into biology and invented a balance spring for watches (1635-1703)
+7806,Hooke's_law,(physics) the principle that (within the elastic limit) the stress applied to a solid is proportional to the strain produced
+7807,Hooker Joseph_Hooker Fighting_Joe_Hooker,United States general in the Union Army who was defeated at Chancellorsville by Robert E. Lee (1814-1879)
+7808,Hooker Richard_Hooker,English theologian (1554-1600)
+7809,Hooker's_green,green pigment consisting of Prussian blue mixed with gamboge
+7810,Hooker's_onion Allium_acuminatum,a common North American wild onion with a strong onion odor and an umbel of pink flowers atop a leafless stalk; British Columbia to California and Arizona and east to Wyoming and Colorado
+7811,Hooker's_orchid Habenaria_hookeri,a long-spurred orchid with base leaves and petals converging under the upper sepal
+7812,Hooray_Henry,a lively and ineffectual upper-class young man
+7813,Hoover,a kind of vacuum cleaner
+7814,Hoover Herbert_Hoover Herbert_Clark_Hoover President_Hoover,31st President of the United States; in 1929 the stock market crashed and the economy collapsed and Hoover was defeated for reelection by Franklin Roosevelt (1874-1964)
+7815,Hoover J._Edgar_Hoover John_Edgar_Hoover,United States lawyer who was director of the FBI for 48 years (1895-1972)
+7816,Hoover William_Hoover William_Henry_Hoover,United States industrialist who manufactured vacuum cleaners (1849-1932)
+7817,Hoover_Dam,a large dam built in 1933 on the Colorado River in Nevada
+7818,Hope Bob_Hope Leslie_Townes_Hope,United States comedian (born in England) who appeared in films with Bing Crosby (1903-2003)
+7819,Hopi,a member of the Shoshonean people of northeastern Arizona
+7820,Hopi,the Shoshonean language spoken by the Hopi
+7821,Hopkins Anthony_Hopkins Sir_Anthony_Hopkins Sir_Anthony_Philip_Hopkins,Welsh film actor (born in 1937)
+7822,Hopkins Gerard_Manley_Hopkins,English poet (1844-1889)
+7823,Hopkins Johns_Hopkins,United States financier and philanthropist who left money to found the university and hospital that bear his name in Baltimore (1795-1873)
+7824,Hopkins Mark_Hopkins,United States educator and theologian (1802-1887)
+7825,Hopkins Sir_Frederick_Gowland_Hopkins,English biochemist who did pioneering work that led to the discovery of vitamins (1861-1947)
+7826,Hopkinson Francis_Hopkinson,American Revolutionary leader and patriot; a signer of the Declaration of Independence (1737-1791)
+7827,Horace,Roman lyric poet said to have influenced English poetry (65-8 BC)
+7828,Horatian_ode Sapphic_ode,an ode with several stanzas
+7829,Horatio_Hornblower Captain_Horatio_Hornblower,a fictional English admiral during the Napoleonic Wars in novels written by C. S. Forester
+7830,Hordeum genus_Hordeum,annual to perennial grasses of temperate northern hemisphere and South America: barley
+7831,Horne Lena_Horne Lena_Calhoun_Horne,United States singer and actress (born in 1917)
+7832,Horne Marilyn_Horne,United States operatic mezzo-soprano (born 1934)
+7833,Horneophyton genus_Horneophyton,Devonian fossil plant considered one of the earliest forms of vascular land plants; similar to genus Rhynia but smaller
+7834,Horner's_syndrome,a pattern of symptoms occurring as a result of damage to nerves in the cervical region of the spine (drooping eyelids and constricted pupils and absence of facial sweating)
+7835,Horney Karen_Horney Karen_Danielsen_Horney,United States psychiatrist (1885-1952)
+7836,Horowitz Vladimir_Horowitz,Russian concert pianist who was a leading international virtuoso (1904-1989)
+7837,Horta Victor_Horta,Belgian architect and leader in art nouveau architecture (1861-1947)
+7838,Horus,Egyptian solar god with the head of a falcon; the son of Osiris and Isis
+7839,Hosea,a minor Hebrew prophet (8th century BC)
+7840,Hosea Book_of_Hosea,an Old Testament book telling Hosea's prophecies
+7841,Host,a technical name for the bread used in the service of Mass or Holy Communion
+7842,Hosta genus_Hosta Funka genus_Funka,robust east Asian clump-forming perennial herbs having racemose flowers: plantain lilies; sometimes placed in family Hostaceae
+7843,Hostaceae family_Hostaceae Funkaceae family_Funkaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Hosta
+7844,Hot_Springs,a town in west central Arkansas; a health resort noted for thermal springs
+7845,Hot_Springs_National_Park,a national park in Arkansas featuring ancient hot springs; bathing is said to have therapeutic effects
+7846,Hotei,one of the 7 gods of happiness
+7847,Hoth Hothr Hoder Hodr Hodur,(Norse mythology) a blind god; misled by Loki, he kills his brother Balder by throwing a shaft of mistletoe
+7848,Hottentot_bread Hottentot's_bread,thick edible rootstock of elephant's-foot
+7849,Hottentot_fig Hottentot's_fig sour_fig Carpobrotus_edulis Mesembryanthemum_edule,low-growing South African succulent plant having a capsular fruit containing edible pulp
+7850,Hottonia genus_Hottonia,aquatic herbs
+7851,Houdini Harry_Houdini Erik_Weisz,United States magician (born in Hungary) famous for his ability to escape from chains or handcuffs or straitjackets or padlocked containers (1874-1926)
+7852,Houghton,a town in northwest Michigan on the Upper Peninsula
+7853,Houghton Henry_Oscar_Houghton,United States publisher who founded a printing shop that became an important book publisher (1823-1895)
+7854,Housatonic Housatonic_River,a river that rises in western Massachusetts and flows south through Connecticut to empty into Long Island Sound
+7855,House_of_Burgesses,the lower house of legislature in colonial Virginia
+7856,House_of_Commons British_House_of_Commons,the lower house of the British parliament
+7857,House_of_Lords British_House_of_Lords,the upper house of the British parliament
+7858,Houses_of_Parliament,the building in which the House of Commons and the House of Lords meet
+7859,Housman A._E._Housman Alfred_Edward_Housman,English poet (1859-1936)
+7860,Houston,the largest city in Texas; located in southeastern Texas near the Gulf of Mexico; site of the National Aeronautics and Space Administration
+7861,Houston Sam_Houston Samuel_Houston,United States politician and military leader who fought to gain independence for Texas from Mexico and to make it a part of the United States (1793-1863)
+7862,Houttuynia genus_Houttuynia,one species; east Asian low-growing plant of wet places
+7863,Houyhnhnm,one of a race of intelligent horses who ruled the Yahoos in a novel by Jonathan Swift
+7864,Houyhnhnms,a land imagined by Jonathan Swift where intelligent horses ruled the Yahoos
+7865,Howard Catherine_Howard,Queen of England as the fifth wife of Henry VIII who was accused of adultery and executed (1520-1542)
+7866,Howard Leslie_Howard Leslie_Howard_Stainer,English actor of stage and screen (1893-1943)
+7867,Howe Elias_Howe,United States inventor who built early sewing machines and won suits for patent infringement against other manufacturers (including Isaac M. Singer) (1819-1867)
+7868,Howe Gordie_Howe Gordon_Howe,Canadian hockey player who holds the record for playing the most games (born 1928)
+7869,Howe Irving_Howe,United States editor (1920-1993)
+7870,Howe Julia_Ward_Howe,United States feminist who was active in the women's suffrage movement (1819-1910)
+7871,Howells William_Dean_Howells,United States writer and editor (1837-1920)
+7872,Hoyle Edmond_Hoyle,English writer on card games (1672-1769)
+7873,Hoyle Fred_Hoyle Sir_Fred_Hoyle,an English astrophysicist and advocate of the steady state theory of cosmology; described processes of nucleosynthesis inside stars (1915-2001)
+7874,Huainaputina,an inactive volcano in the Andes in southern Peru; last erupted in 1783
+7875,Huambo Nova_Lisboa,a city in the mountains in western Angola
+7876,Huang_He Hwang_Ho Yellow_River,a major river of Asia in northern China; flows generally eastward into the Yellow Sea; carries large quantities of yellow silt to its delta
+7877,Huascaran,a mountain in the Andes in Peru (22,205 feet high)
+7878,Huayna_Capac,the Incan ruler under whom the Incan empire reached its widest extent (died in 1525)
+7879,Hubbard L._Ron_Hubbard,a United States writer of science fiction and founder of Scientology (1911-1986)
+7880,Hubbard Mount_Hubbard,a mountain peak in southeastern Alaska that is part of the Coast Range (14,950 feet high)
+7881,Hubble Edwin_Hubble Edwin_Powell_Hubble,United States astronomer who discovered that (as the universe expands) the speed with which nebulae recede increases with their distance from the observer (1889-1953)
+7882,Hubble's_constant Hubble_constant Hubble's_parameter Hubble_parameter,(cosmology) the ratio of the speed of recession of a galaxy (due to the expansion of the universe) to its distance from the observer; the Hubble constant is not actually a constant, but is regarded as measuring the expansion rate today
+7883,Hubble's_law Hubble_law,(astronomy) the generalization that the speed of recession of distant galaxies (the red shift) is proportional to their distance from the observer
+7884,Hubel David_Hubel,United States neuroscientist noted for his studies of the neural basis of vision (born in 1926)
+7885,Huckleberry_Finn Huck_Finn,a mischievous boy in a novel by Mark Twain
+7886,Hudson Henry_Hudson,English navigator who discovered the Hudson River; in 1610 he attempted to winter in Hudson Bay but his crew mutinied and set him adrift to die (1565-1611)
+7887,Hudson Hudson_River,a New York river; flows southward into New York Bay; explored by Henry Hudson early in the 17th century
+7888,Hudson W._H._Hudson William_Henry_Hudson,English naturalist (born in Argentina) (1841-1922)
+7889,Hudson_Bay,an inland sea in northern Canada
+7890,Hudson_River_school romantic_realism,the first coherent school of American art; active from 1825 to 1870; painted wilderness landscapes of the Hudson River valley and surrounding New England
+7891,Hudson_bay_collared_lemming Dicrostonyx_hudsonius,of northern Canada
+7892,Hudsonia genus_Hudsonia,small evergreen subshrubs of North America
+7893,Hudsonian_godwit Limosa_haemastica,New World godwit
+7894,Huggins Sir_William_Huggins,English astronomer who pioneered spectroscopic analysis in astronomy and who discovered the red shift (1824-1910)
+7895,Hughes Charles_Evans_Hughes,United States jurist who served as chief justice of the United States Supreme Court (1862-1948)
+7896,Hughes Howard_Hughes Howard_Robard_Hughes,United States industrialist who was an aviator and a film producer; during the last years of his life he was a total recluse (1905-1976)
+7897,Hughes Langston_Hughes James_Langston_Hughes,United States writer (1902-1967)
+7898,Hughes Ted_Hughes Edward_James_Hughes,English poet (born in 1930)
+7899,Hugo Victor_Hugo Victor-Marie_Hugo,French poet and novelist and dramatist; leader of the romantic movement in France (1802-1885)
+7900,Hugueninia genus_Hugueninia,one species: tansy-leaved rocket
+7901,Huguenot,a French Calvinist of the 16th or 17th centuries
+7902,Hull Cordell_Hull,United States diplomat who did the groundwork for creating the United Nations (1871-1955)
+7903,Hull Isaac_Hull,United States naval officer who commanded the `Constitution' during the War of 1812 and won a series of brilliant victories against the British (1773-1843)
+7904,Hull Kingston-upon_Hull,a large fishing port in northeastern England
+7905,Hulsea genus_Hulsea,small genus of erect balsam-scented herbs; Pacific coast of the northwestern United States
+7906,Human_Genome_Project,an international study of the entire human genetic material
+7907,Humber,an estuary in central northeastern England formed by the Ouse River and the Trent River
+7908,Humber_Bridge,a suspension bridge at Hull, England; 4,626 feet long
+7909,Humboldt Baron_Alexander_von_Humboldt Baron_Friedrich_Heinrich_Alexander_von_Humboldt,German naturalist who explored Central and South America and provided a comprehensive description of the physical universe (1769-1859)
+7910,Humboldt Baron_Wilhelm_von_Humboldt Baron_Karl_Wilhelm_von_Humboldt,German philologist noted for his studies of the relation between language and culture (1767-1835)
+7911,Hume David_Hume,Scottish philosopher skeptical philosophy restricted human knowledge to that which can be perceived by the senses (1711-1776)
+7912,Humperdinck Engelbert_Humperdinck,German composer of six operas and other incidental music (1854-1921)
+7913,Humpty_Dumpty,an egg-shaped character in a nursery rhyme who fell off a wall and could not be put back together again (late 17th century)
+7914,Humulus genus_Humulus,hops: hardy perennial vines of Europe, North America and central and eastern Asia producing a latex sap; in some classifications included in the family Urticaceae
+7915,Humvee Hum-Vee,a high mobility, multipurpose, military vehicle with four-wheel drive
+7916,Hun,a member of a nomadic people who invaded Europe in the 4th century
+7917,Hunan Hunan_province,a province in southeastern central China between the Nan Ling mountains and the Chang Jiang; noted for its timber and valuable mineral resources
+7918,Hundred_Years'_War,the series of wars fought intermittently between France and England; 1337-1453
+7919,Hungarian Magyar,a native or inhabitant of Hungary
+7920,Hungarian Magyar,the official language of Hungary (also spoken in Rumania); belongs to the Ugric family of languages
+7921,Hungarian_lilac Syringa_josikaea Syringa_josikea,central European upright shrub having elliptic leaves and upright clusters of lilac or deep violet flowers
+7922,Hungarian_monetary_unit,monetary unit in Hungary
+7923,Hungarian_partridge grey_partridge gray_partridge Perdix_perdix,common European partridge
+7924,Hungarian_sauce paprika_sauce,veloute sauce with sauteed chopped onion and paprika and cream
+7925,Hungary Republic_of_Hungary Magyarorszag,a republic in central Europe
+7926,Hunkpapa,a member of the Siouan people who constituted a division of the Teton Sioux and who formerly lived in the western Dakotas; they were prominent in resisting the white encroachment into the northern Great Plains
+7927,Hunkpapa,a Siouan language spoken by the Hunkpapa
+7928,Hunnemannia genus_Hunnemania,one species: golden cup
+7929,Hunt Holman_Hunt William_Holman_Hunt,Englishman and Pre-Raphaelite painter (1827-1910)
+7930,Hunt Leigh_Hunt James_Henry_Leigh_Hunt,British writer who defended the Romanticism of Keats and Shelley (1784-1859)
+7931,Hunt Richard_Morris_Hunt,United States architect (1827-1895)
+7932,Huntingdon_elm Ulmus_hollandica_vegetata,erect vigorous hybrid ornamental elm tree
+7933,Huntington,a city of western West Virginia on the Ohio river at the mouth of the Kanawha
+7934,Huntington Collis_Potter_Huntington,United States railroad executive who built the western section of the first United States transcontinental railroad (1821-1900)
+7935,Huntington George_Huntington,United States physician who first described Huntington's chorea
+7936,Huntington Samuel_Huntington,American revolutionary leader who signed the Declaration of Independence and was president of the Continental Congress (1731-1796)
+7937,Huntington's_chorea Huntington's_disease,hereditary disease; develops in adulthood and ends in dementia
+7938,Huntsville,a city in northern Alabama; center for space research
+7939,Hupa,a member of the Athapaskan people of the Trinity River valley in California
+7940,Hupa,the Athapaskan language spoken by the Hupa
+7941,Hurler's_syndrome Hurler's_disease gargoylism dysostosis_multiplex lipochondrodystrophy,hereditary disease (autosomal recessive) consisting of an error is mucopolysaccharide metabolism; characterized by severe abnormalities in development of skeletal cartilage and bone and mental retardation
+7942,Hurok Sol_Hurok Solomon_Hurok,United States impresario who was born in Russia (1888-1974)
+7943,Huss John_Huss Hus Jan_Hus,Czechoslovakian religious reformer who anticipated the Reformation; he questioned the infallibility of the Catholic Church was excommunicated (1409) for attacking the corruption of the clergy; he was burned at the stake (1372-1415)
+7944,Hussein Husain Husayn Saddam_Hussein Saddam Saddam_bin_Hussein_at-Takriti,Iraqi leader who waged war against Iran; his invasion of Kuwait led to the Gulf War (born in 1937)
+7945,Hussein Husain Husayn ibn_Talal_Hussein King_Hussein,king of Jordan credited with creating stability at home and seeking peace with Israel (1935-1999)
+7946,Husserl Edmund_Husserl,German philosopher who developed phenomenology (1859-1938)
+7947,Hussite,an adherent of the religious reforms of John Huss
+7948,Huston John_Huston,United States film maker born in the United States but an Irish citizen after 1964 (1906-1987)
+7949,Hutchins Robert_Maynard_Hutchins,United States educator who was president of the University of Chicago (1899-1977)
+7950,Hutchinson Anne_Hutchinson,American colonist (born in England) who was banished from Boston for her religious views (1591-1643)
+7951,Hutton James_Hutton,Scottish geologist who described the processes that have shaped the surface of the earth (1726-1797)
+7952,Hutton Sir_Leonard_Hutton,English cricketer (1916-1990)
+7953,Hutu,a member of a Bantu people living in Rwanda and Burundi
+7954,Huxley Aldous_Huxley Aldous_Leonard_Huxley,English writer; grandson of Thomas Huxley who is remembered mainly for his depiction of a scientifically controlled utopia (1894-1963)
+7955,Huxley Andrew_Huxley Andrew_Fielding_Huxley,English physiologist who, with Alan Hodgkin, discovered the role of potassium and sodium ions in the transmission of the nerve impulse (born in 1917)
+7956,Huxley Thomas_Huxley Thomas_Henry_Huxley,English biologist and a leading exponent of Darwin's theory of evolution (1825-1895)
+7957,Huygens Christiaan_Huygens Christian_Huygens,Dutch physicist who first formulated the wave theory of light (1629-1695)
+7958,Hyacinthaceae family_Hyacinthaceae,one of many families or subfamilies in which some classification systems subdivide the Liliaceae but not widely accepted
+7959,Hyacinthoides genus_Hyacinthoides,small genus of perennial bulbs of western Europe and North Africa; sometimes placed in family Hyacinthaceae
+7960,Hyades,(Greek mythology) 7 daughters of Atlas and half-sisters of the Pleiades; they nurtured the infant Dionysus and Zeus placed them among the stars as a reward
+7961,Hyaenidae family_Hyaenidae,hyenas
+7962,Hyalophora genus_Hyalophora,American silkworm moth
+7963,Hyalosperma genus_Hyalosperma,genus of herbs of temperate Australia including some from genus Helipterum
+7964,Hyalospongiae class_Hyalospongiae,sponges with siliceous spicules that have six rays; choanocytes are restricted to finger-shaped chambers
+7965,Hybanthus genus_Hybanthus,a genus of herbs and small shrubs with white or purple flowers; grows in tropical or subtropical regions
+7966,Hyderabad,a city in southern Pakistan on the Indus River
+7967,Hyderabad,a city in south central India in Andhra Pradesh
+7968,Hydnaceae family_Hydnaceae,tooth fungi
+7969,Hydnocarpus genus_Hydnocarpus Taraktagenos genus_Taraktagenos Taraktogenos genus_Taraktogenos,medium to large Indonesian and Malaysian trees
+7970,Hydnocarpus_laurifolia Hydnocarpus_wightiana,leathery-leaved tree of western India bearing round fruits with brown densely hairy rind enclosing oily pulp that yields hydnocarpus oil
+7971,Hydnoraceae family_Hydnoraceae,a family of flowering plants in Africa and Argentina that are parasitic on the roots of other plants
+7972,Hydnum genus_Hydnum,type genus of Hydnaceae
+7973,Hydra,(Greek mythology) monster with nine heads; when struck off each head was replaced by two new ones; "Hydra was slain by Hercules"
+7974,Hydra Snake,a long faint constellation in the southern hemisphere near the equator stretching between Virgo and Cancer
+7975,Hydrangeaceae family_Hydrangeaceae hydrangea_family,sometimes included in the family Saxifragaceae
+7976,Hydrastis genus_Hydrastis,small genus of perennial herbs having rhizomes and palmate leaves and small solitary flowers; of northeastern United States and Japan
+7977,Hydrobates genus_Hydrobates,type genus of the Hydrobatidae
+7978,Hydrobatidae family_Hydrobatidae,storm petrels
+7979,Hydrocharis genus_Hydrocharis,frogbit
+7980,Hydrocharitaceae family_Hydrocharitaceae Hydrocharidaceae family_Hydrocharidaceae frogbit_family frog's-bit_family,simple nearly stemless freshwater aquatic plants; widely distributed
+7981,Hydrochoeridae family_Hydrochoeridae,capybara
+7982,Hydrochoerus genus_Hydrochoerus,a genus of Hydrochoeridae
+7983,Hydrodamalis genus_Hydrodamalis,a genus of the family Dugongidae comprising only Steller's sea cow
+7984,Hydromantes genus_Hydromantes,web-toed salamanders
+7985,Hydromyinae subfamily_Hydromyinae,water rats of Australia and New Guinea
+7986,Hydromys genus_Hydromys,water rats
+7987,Hydrophidae family_Hydrophidae,sea snakes
+7988,Hydrophyllaceae family_Hydrophyllaceae waterleaf_family,perennial woodland herbs
+7989,Hydrophyllum genus_Hydrophyllum,waterleaf
+7990,Hydrozoa class_Hydrozoa,coelenterates typically having alternation of generations; hydroid phase is usually colonial giving rise to the medusoid phase by budding: hydras and jellyfishes
+7991,Hydrus,a constellation in the southern hemisphere near the south celestial pole
+7992,Hyemoschus genus_Hyemoschus,water chevrotains
+7993,Hygeia,(Greek mythology) the goddess of health; daughter of Aesculapius and sister of Panacea
+7994,Hygrocybe genus_Hygrocybe,a genus of fungi belonging to the family Hygrophoraceae
+7995,Hygrocybe_acutoconica conic_waxycap,a fungus having an acutely conic cap and dry stalks
+7996,Hygrophoraceae family_Hygrophoraceae,a family of fungi belonging to the order Agaricales; the gills of these fungi have a clean waxy appearance
+7997,Hygrophorus genus_Hygrophorus,a genus of fungi belonging to the family Hygrophoraceae
+7998,Hygrophorus_borealis,a fungus with a white convex cap and arcuate white gills and a stalk that tapers toward the base
+7999,Hygrophorus_caeruleus,a fungus with a broadly convex cap that is cream color with a tint of blue over the margin; waxy gills are bluish green to blue-grey; a short stalk tapers abruptly at the base
+8000,Hygrophorus_inocybiformis,a fungus with a drab squamulose cap and grey-brown squamules over the white background of the stalk and waxy grey-white gills
+8001,Hygrophorus_kauffmanii,a fungus with a slightly viscid cap; cap and gills are reddish brown and the stalk is grey
+8002,Hygrophorus_marzuolus,a grey fungus frequently found near melting snow banks
+8003,Hygrophorus_purpurascens,a fungus with a viscid purplish red cap and stalk; found under spruce and other conifers
+8004,Hygrophorus_russula,an edible fungus with a reddish cap and close pale gills and dry stalk; found under hardwoods
+8005,Hygrophorus_sordidus,an edible fungus with a large white cap and a dry stalk and white gills
+8006,Hygrophorus_tennesseensis,a fungus having a brownish sticky cap with a white margin and white gills and an odor of raw potatoes
+8007,Hygrophorus_turundus,a small fungus with orange cap and yellow gills found in sphagnum bogs
+8008,Hygrotrama genus_Hygrotrama,a genus of fungi belonging to the family Hygrophoraceae
+8009,Hygrotrama_foetens,a small grey-brown fungus with an unpleasant odor of mothballs
+8010,Hyla genus_Hyla,the type genus of the Hylidae; tree toads
+8011,Hylactophryne genus_Hylactophryne,barking frogs
+8012,Hylidae family_Hylidae,the amphibian family of tree frogs
+8013,Hylobates genus_Hylobates,gibbons
+8014,Hylobatidae family_Hylobatidae,used in some classifications for the lesser apes (gibbons and siamangs); sometimes considered a subfamily of Pongidae
+8015,Hylocereus genus_Hylocereus,genus of climbing or epiphytic tropical American cacti with angular stems and mostly white very fragrant flowers
+8016,Hylocichla genus_Hylocichla,American thrush: wood thrush; hermit thrush; veery
+8017,Hylophylax genus_Hylophylax,a genus of Formicariidae
+8018,Hymen,(Greek mythology) the god of marriage
+8019,Hymenaea genus_Hymenaea,genus of tropical American timber trees
+8020,Hymenanthera genus_Hymenanthera,a genus of slender evergreen shrubs; grow in Australia and New Zealand
+8021,Hymenogastrales order_Hymenogastrales,an order of fungi belonging to the class Gasteromycetes; has a distinct basidiocarp with a fleshy or waxy gleba (sometimes placed in subclass Homobasidiomycetes)
+8022,Hymenomycetes class_Hymenomycetes,used in some classifications; usually coextensive with order Agaricales: mushrooms; toadstools; agarics; bracket fungi
+8023,Hymenophyllaceae family_Hymenophyllaceae,terrestrial (hygrophytic) or epiphytic ferns: filmy ferns
+8024,Hymenophyllum genus_Hymenophyllum,type genus of the Hymenophyllaceae: filmy ferns
+8025,Hymenoptera order_Hymenoptera,an order of insects including: bees; wasps; ants; ichneumons; sawflies; gall wasps; etc.
+8026,Hynerpeton genus_Hynerpeton,earliest fossil amphibian ever found; of the Devonian; found in Pennsylvania
+8027,Hynerpeton_bassetti,fossil amphibian of the Devonian having well-developed forelimbs; found in Pennsylvania
+8028,Hyoscyamus genus_Hyoscyamus,genus of poisonous herbs: henbane
+8029,Hypatia,Greek philosopher and astronomer; she invented the astrolabe (370-415)
+8030,Hypentelium genus_Hypentelium,a genus of fish in the family Catostomidae
+8031,Hyperborean,(Greek mythology) one of a people that the ancient Greeks believed lived in a warm and sunny land north of the source of the north wind
+8032,Hypericaceae family_Hypericaceae,used in some classification systems for plants usually included among the Guttiferae
+8033,Hypericum genus_Hypericum,large almost cosmopolitan genus of evergreen or deciduous shrubs and herbs with often showy yellow flowers; cosmopolitan except tropical lowlands and Arctic or high altitudes and desert regions
+8034,Hyperion,(Greek mythology) a Titan who was the son of Gaea and Uranus and the father of Helios and Selene and Eos in ancient mythology
+8035,Hypermastigina order_Hypermastigina,cellulose-producing flagellates
+8036,Hyperoglyphe genus_Hyperoglyphe,a genus of Stromateidae
+8037,Hyperoodon genus_Hyperoodon,bottle-nosed whales
+8038,Hyphantria genus_Hyphantria,fall webworms
+8039,Hyphantria_cunea,moth whose larvae are fall webworms
+8040,Hypnos,(Greek mythology) the Greek god of sleep; the son of Nyx
+8041,Hypochaeris genus_Hypochaeris Hypochoeris genus_Hypochoeris,widely distributed genus of herbs with milky juice; includes some cosmopolitan weeds
+8042,Hypocreaceae family_Hypocreaceae,family of fungi having brightly colored fleshy or membranous ascocarps; sometimes placed in its own order Hypocreales
+8043,Hypocreales order_Hypocreales,used in some classifications for the family Hypocreaceae
+8044,Hypoderma genus_Hypoderma,in some classifications considered the type genus of the family Hypodermatidae: warble flies
+8045,Hypopachus genus_Hypopachus,sheep frogs
+8046,Hypopitys genus_Hypopitys,term used in some classifications for the pinesaps, which are usually included in the genus Monotropa
+8047,Hypoxidaceae family_Hypoxidaceae,in some classification systems included in the Amaryllidaceae
+8048,Hypoxis genus_Hypoxis,small plants that resemble amaryllis and that grow from a corm and bear flowers on a leafless stalk; sometimes classified as member of the family Amaryllidaceae: star grass
+8049,Hypsiglena genus_Hypsiglena,night snakes
+8050,Hypsiprymnodon genus_Hypsiprymnodon,musk kangaroos
+8051,Hyracoidea order_Hyracoidea,hyraxes and some extinct animals
+8052,Hyracotherium genus_Hyracotherium,extinct horse genus; formerly called eohippus
+8053,Hyssopus genus_Hyssopus,Eurasian genus of perennial herbs or subshrubs
+8054,Hystricidae family_Hystricidae,Old World porcupines
+8055,Hystricomorpha suborder_Hystricomorpha,an order of rodents including: porcupines; guinea pigs; chinchillas; etc.
+8056,I i,the 9th letter of the Roman alphabet
+8057,I-beam,girder having a cross section resembling the letter `I'
+8058,ID I.D.,a card or badge used to identify the bearer; "you had to show your ID in order to get in"
+8059,II_Chronicles 2_Chronicles,the second of two Old Testament books telling the history of Judah and Israel until the return from the Babylonian Captivity in 536 BC
+8060,II_Esdras 2_Esdras,an Apocryphal book of angelic revelations
+8061,II_Kings 2_Kings,the second of two Old Testament books telling the histories of the kings of Judah and Israel
+8062,II_Maccabees 2_Maccabees,an Apocryphal book describing the life of Judas Maccabaeus
+8063,II_Samuel 2_Samuel,the second of two books of the Old Testament that tell of Saul and David
+8064,IJssel IJssel_river,a river in the central Netherlands flowing north to the IJsselmeer
+8065,IJsselmeer,a shallow lake in northwestern Netherlands created in 1932 by building a dam across the entrance to the Zuider Zee
+8066,IOU,an informal debt instrument; representing `I owe you'
+8067,I_Chronicles 1_Chronicles,the first of two Old Testament books telling the history of Judah and Israel until the return from the Babylonian Captivity in 536 BC
+8068,I_Esdra 1_Esdras,an Apocryphal book consisting of a compilation from I Chronicles and II Chronicles and Ezra and Nehemiah
+8069,I_Kings 1_Kings,the first of two Old Testament books telling the histories of the kings of Judah and Israel
+8070,I_Maccabees 1_Maccabees,an Apocryphal book describing the life of Judas Maccabaeus
+8071,I_Samuel 1_Samuel,the first of two books in the Old Testament that tell of Saul and David
+8072,Iago,the villain in William Shakespeare's tragedy who tricked Othello into murdering his wife
+8073,Iapetus,(Greek mythology) the Titan who was father of Atlas and Epimetheus and Prometheus in ancient mythology
+8074,Ibadan,a large Yoruba city in southwestern Nigeria; site of a university
+8075,Iberia,an ancient geographical region to the south of the Caucasus Mountains that corresponded approximately to the present-day Georgia
+8076,Iberian,a native or inhabitant of Iberia in the Caucasus
+8077,Iberian,a native or inhabitant of the Iberian Peninsula (especially in ancient times)
+8078,Iberian_Peninsula Iberia,a peninsula in southwestern Europe
+8079,Iberis genus_Iberis,Old World herbs and subshrubs: candytuft
+8080,Ibero-mesornis,sparrow-sized fossil bird of the Cretaceous period having a vestigial tail; found in Spain; considered possibly the third most primitive of all birds
+8081,Ibert Jacques_Francois_Antoine_Ibert,French composer (1890-1962)
+8082,Ibizan_hound Ibizan_Podenco,breed of slender agile medium-sized hound found chiefly in the Balearic Islands; said to have been bred originally by the Pharaohs of ancient Egypt
+8083,Ibsen Henrik_Ibsen Henrik_Johan_Ibsen,realistic Norwegian author who wrote plays on social and political themes (1828-1906)
+8084,Icarus,(Greek mythology) son of Daedalus; while escaping from Crete with his father (using the wings Daedalus had made) he flew too close to the sun and the wax melted and he fell into the Aegean and drowned
+8085,Iceland,a volcanic island in the North Atlantic near the Arctic Circle
+8086,Iceland Republic_of_Iceland,an island republic on the island of Iceland; became independent of Denmark in 1944
+8087,Iceland_moss Iceland_lichen Cetraria_islandica,lichen with branched flattened partly erect thallus that grows in mountainous and Arctic regions; used as a medicine or food for humans and livestock; a source of glycerol
+8088,Iceland_poppy Papaver_alpinum,Old World alpine poppy with white or yellow to orange flowers
+8089,Iceland_poppy arctic_poppy Papaver_nudicaule,subarctic perennial poppy of both hemispheres having fragrant white or yellow to orange or peach flowers
+8090,Iceland_spar,a transparent calcite found in Iceland and used in polarizing microscopes
+8091,Icelander,a native or inhabitant of Iceland
+8092,Icelandic,a Scandinavian language that is the official language of Iceland
+8093,Icelandic_krona krona,the basic unit of money in Iceland
+8094,Icelandic_monetary_unit,monetary unit in Iceland
+8095,Ichneumonidae family_Ichneumonidae,ichneumon flies
+8096,Ichthyosauria order_Ichthyosauria,extinct marine reptiles: ichthyosaurs
+8097,Ichthyosauridae family_Ichthyosauridae,later ichthyosaurs of the Jurassic and Cretaceous; widely distributed in both hemispheres
+8098,Ichyostega,early tetrapod amphibian found in Greenland
+8099,Ictalurus genus_Ictalurus,channel catfishes
+8100,Icteria genus_Icteria,New World chats
+8101,Icteridae family_Icteridae,American orioles; American blackbirds; bobolinks; meadowlarks
+8102,Icterus genus_Icterus,type genus of the Icteridae
+8103,Ictiobus genus_Ictiobus,buffalo fishes
+8104,Ictodosauria order_Ictodosauria,extinct reptiles of the later Triassic period
+8105,Ictonyx genus_Ictonyx,a genus of Mustelidae
+8106,Id_al-Adha Feast_of_Sacrifice,the 10th day of Dhu'l-Hijja; all Muslims attend a service in the mosques and those who are not pilgrims perform a ritual slaughter of a sheep (commemorating God's ransom of Abraham's son from sacrifice) and give at least a third of the meat to charity
+8107,Id_al-Fitr,a Muslim day of feasting at the end of Ramadan
+8108,Idaho Gem_State ID Id.,a state in the Rocky Mountains
+8109,Idaho_Falls,a town in southeastern Idaho on the Snake River
+8110,Idahoan,a native or resident of Idaho
+8111,Identikit Identikit_picture,a likeness of a person's face constructed from descriptions given to police; uses a set of transparencies of various facial features that can be combined to build up a picture of the person sought
+8112,Idiom_Neutral,an artificial language proposed for use as an auxiliary international language; based on Volapuk but with a vocabulary selected on the basis of the maximum internationality of the roots
+8113,Iditarod Iditarod_Trail_Dog_Sled_Race,an important dogsled race run annually on the Iditarod Trail
+8114,Iditarod_Trail,a trail that extends 1,100 miles from Anchorage over the Alaska Range to Nome
+8115,Ido,an artificial language that is a revision and simplification of Esperanto
+8116,Idun Ithunn,(Norse mythology) goddess of spring and wife of Bragi; guarded the apples that kept the gods eternally young
+8117,Igbo,a member of the largest ethnic group in southeastern Nigeria; "most Igbo are farmers"
+8118,Igigi,any of a group of heavenly spirits under the god Anu
+8119,Iglesias Julio_Iglesias,Spanish singer noted for his ballads and love songs (born in 1943)
+8120,Ignatius Saint_Ignatius St._Ignatius,bishop of Antioch who was martyred under the Roman Emperor Trajan (died 110)
+8121,Ignatius_of_Loyola Saint_Ignatius_of_Loyola St._Ignatius_of_Loyola Loyola,Spaniard and Roman Catholic theologian and founder of the Society of Jesus; a leading opponent of the Reformation (1491-1556)
+8122,Iguanidae family_Iguanidae Iguania family_Iguania,New World lizards
+8123,Iguanodontidae family_Iguanodontidae,iguanodons
+8124,Iguazu Iguazu_Falls Iguassu Iguassu_Falls Victoria_Falls,a large waterfall on the border between Argentina and Brazil
+8125,Ile-St-Louis,island in Paris on the Seine
+8126,Ile-de-France,a region of north central France including Paris and the area around it
+8127,Ilex genus_Ilex,a large genus of dicotyledonous trees and shrubs of the family Aquifoliaceae that have small flowers and berries (including hollies)
+8128,Iliad,a Greek epic poem (attributed to Homer) describing the siege of Troy
+8129,Iliamna genus_Iliamna,small genus of perennial herbs or subshrubs; some often placed in other genera
+8130,Illampu,a mountain peak in the Andes in Bolivia (20,870 feet high)
+8131,Illecebrum genus_Illecebrum,one species: coral necklace
+8132,Illicium genus_Illicium,anise trees: evergreen trees with aromatic leaves
+8133,Illimani,a mountain peak in the Andes in Bolivia (21,201 feet high)
+8134,Illinois,a member of the Algonquian people formerly of Illinois and regions to the west
+8135,Illinois,the Algonquian language of the Illinois and Miami
+8136,Illinois Prairie_State Land_of_Lincoln IL Ill.,a midwestern state in north-central United States
+8137,Illinois_River,a river in Illinois that flows southwest to the Mississippi River
+8138,Illinoisan,a native or resident of Illinois
+8139,Illyria,an uncertain region on the east shore of the Adriatic where an ancient Indo-European people once lived
+8140,Illyrian,a minor and almost extinct branch of the Indo-European languages; spoken along the Dalmatian coast
+8141,Immaculate_Conception December_8,Roman Catholic holy day first celebrated in 1854
+8142,Immaculate_Conception Immaculate_Conception_of_the_Virgin_Mary,(Christianity) the Roman Catholic dogma that God preserved the Virgin Mary from any stain of original sin from the moment she was conceived
+8143,Immigration_and_Naturalization_Service INS,an agency in the Department of Justice that enforces laws and regulations for the admission of foreign-born persons to the United States
+8144,Impressionism,a school of late 19th century French painters who pictured appearances by strokes of unmixed colors to give the impression of reflected light
+8145,Inachis genus_Inachis,a genus of Nymphalidae
+8146,Inanna,consort of Dumuzi (Tammuz)
+8147,Inauguration_Day January_20,the day designated for inauguration of the United States President
+8148,Inca,a ruler of the Incas (or a member of his family)
+8149,Inca Inka,the small group of Quechua living in the Cuzco Valley in Peru who established hegemony over their neighbors in order to create an empire that lasted from about 1100 until the Spanish conquest in the early 1530s
+8150,Inca Inka Incan,a member of the Quechuan people living in the Cuzco valley in Peru
+8151,Incarnation,(Christianity) the Christian doctrine of the union of God and man in the person of Jesus Christ
+8152,Inchon,a battle in the Korean War (1950); United States forces landed at Inchon
+8153,Inchon Incheon Chemulpo,a port city in western South Korea on the Yellow Sea
+8154,Inconel,a nickel-base alloy with chromium and iron; used in gas-turbine blades
+8155,Independence,a city in western Missouri; the beginning of the Santa Fe Trail
+8156,Independence_Day Fourth_of_July July_4,a legal holiday in the United States
+8157,Independence_Hall,the building in Philadelphia where the Declaration of Independence was signed
+8158,India Republic_of_India Bharat,a republic in the Asian subcontinent in southern Asia; second most populous country in the world; achieved independence from the United Kingdom in 1947
+8159,India-rubber_tree India-rubber_plant India-rubber_fig rubber_plant Assam_rubber Ficus_elastica,large tropical Asian tree frequently dwarfed as a houseplant; source of Assam rubber
+8160,India_ink drawing_ink,a black liquid ink used for printing or writing or drawing
+8161,Indiaman,a large sailing ship that was engaged in the British trade with India
+8162,Indian,a native or inhabitant of India
+8163,Indian_Mutiny Sepoy_Mutiny,discontent with British administration in India led to numerous mutinies in 1857 and 1858; the revolt was put down after several battles and sieges (notably the siege at Lucknow)
+8164,Indian_Ocean,the 3rd largest ocean; bounded by Africa on the west, Asia on the north, Australia on the east and merging with the Antarctic Ocean to the south
+8165,Indian_agent,a representative of the federal government to American Indian tribes (especially on Indian reservations)
+8166,Indian_beech Pongamia_glabra,evergreen Asiatic tree having glossy pinnate leaves and racemose creamy-white scented flowers; used as a shade tree
+8167,Indian_blackwood East_Indian_rosewood East_India_rosewood Indian_rosewood Dalbergia_latifolia,East Indian tree having a useful dark purple wood
+8168,Indian_buffalo,upland buffalo of eastern Asia where true water buffaloes do not thrive; used for draft and milk
+8169,Indian_button_fern Tectaria_macrodonta,fern of tropical Asia having round buttonlike bulbils
+8170,Indian_chief Indian_chieftain,the leader of a group of Native Americans
+8171,Indian_club,a bottle-shaped club used in exercises
+8172,Indian_cobra Naja_naja,a cobra of tropical Africa and Asia
+8173,Indian_coral_tree Erythrina_variegata Erythrina_Indica,small to medium-sized thorny tree of tropical Asia and northern Australia having dense clusters of scarlet or crimson flowers and black seeds
+8174,Indian_crocus,any of several dwarf orchids of the genus Pleione bearing one or two solitary white or pink to magenta or occasionally yellow flowers with slender stalks
+8175,Indian_elephant Elephas_maximus,Asian elephant having smaller ears and tusks primarily in the male
+8176,Indian_giver,an offensive term for someone who asks you to return a present he has given you
+8177,Indian_hemp Cannabis_indica,source of e.g. bhang and hashish as well as fiber
+8178,Indian_hemp rheumatism_weed Apocynum_cannabinum,Canadian dogbane yielding a tough fiber used as cordage by Native Americans; used in folk medicine for pain or inflammation in joints
+8179,Indian_lettuce,a plant of the genus Montia having edible pleasant-tasting leaves
+8180,Indian_madder munjeet Rubia_cordifolia,perennial East Indian creeping or climbing herb used for dye in the orient
+8181,Indian_mallow Sida_spinosa,tropical American weed having pale yellow or orange flowers naturalized in southern United States
+8182,Indian_monetary_unit,monetary unit in India
+8183,Indian_mongoose Herpestes_nyula,keen-sighted viverrine of southern Asia about the size of a ferret; often domesticated
+8184,Indian_paintbrush painted_cup,any of various plants of the genus Castilleja having dense spikes of hooded flowers with brightly colored bracts
+8185,Indian_pipe waxflower Monotropa_uniflora,small waxy white or pinkish-white saprophytic woodland plant having scalelike leaves and a nodding flower; turns black with age
+8186,Indian_plantain,any of various plants of the genus Cacalia having leaves resembling those of plantain
+8187,Indian_poke Phytolacca_acinosa,pokeweed of southeastern Asia and China
+8188,Indian_python Python_molurus,very large python of southeast Asia
+8189,Indian_rat_snake Ptyas_mucosus,enter buildings in pursuit of prey
+8190,Indian_rattlebox Crotalaria_spectabilis,erect subshrub having purple-tinted flowers and an inflated pod in which the ripe seeds rattle; India
+8191,Indian_red,a red pigment composed in part from ferric oxide which is often used in paints and cosmetics
+8192,Indian_red,a red soil containing ferric oxide; often used as a pigment
+8193,Indian_red,a reddish-brown color resembling the red soil used as body paint by American Indians
+8194,Indian_reservation,a reservation set aside for the use of Indians
+8195,Indian_rhinoceros Rhinoceros_unicornis,having one horn
+8196,Indian_rhododendron Melastoma_malabathricum,evergreen spreading shrub of India and southeastern Asia having large purple flowers
+8197,Indian_rupee rupee,the basic unit of money in India; equal to 100 paise
+8198,Indian_summer Saint_Martin's_summer,a period of unusually warm weather in the autumn
+8199,Indian_tobacco bladderpod Lobelia_inflata,North American wild lobelia having small blue flowers and inflated capsules formerly used as an antispasmodic
+8200,Indian_trail,a trail through the wilderness worn by Amerindians
+8201,Indiana Hoosier_State IN Ind.,a state in midwestern United States
+8202,Indiana Robert_Indiana,United States pop artist (born 1928)
+8203,Indianan Hoosier,a native or resident of Indiana
+8204,Indianapolis capital_of_Indiana,the capital and largest city of Indiana; a major commercial center in the country's heartland; site of an annual 500-mile automobile race
+8205,Indic Indo-Aryan,a branch of the Indo-Iranian family of languages
+8206,Indicatoridae family_Indicatoridae,honey guides
+8207,Indigirka Indigirka_River,a river in far eastern Siberia that flows generally northward to the Arctic Ocean
+8208,Indigofera genus_Indigofera,genus of tropical herbs and shrubs having odd-pinnate leaves and spurred flowers in long racemes or spikes
+8209,Indo-European Indo-European_language Indo-Hittite,the family of languages that by 1000 BC were spoken throughout Europe and in parts of southwestern and southern Asia
+8210,Indo-Iranian Indo-Iranian_language,the branch of the Indo-European family of languages including the Indic and Iranian language groups
+8211,Indochina Indochinese_peninsula,a peninsula of southeastern Asia that includes Myanmar and Cambodia and Laos and Malaysia and Thailand and Vietnam
+8212,Indonesia Republic_of_Indonesia Dutch_East_Indies,a republic in southeastern Asia on an archipelago including more than 13,000 islands; achieved independence from the Netherlands in 1945; the principal oil producer in the Far East and Pacific regions
+8213,Indonesian,a native or inhabitant of Indonesia
+8214,Indonesian Bahasa_Indonesia Bahasa,the dialect of Malay used as the national language of the Republic of Indonesia or of Malaysia
+8215,Indonesian_Borneo Kalimantan,the part of Indonesia on the southern side of the island of Borneo
+8216,Indonesian_monetary_unit,monetary unit in Indonesia
+8217,Indra,chief Hindu god of the Rig-Veda; god of rain and thunder
+8218,Indriidae family_Indriidae,a family of Lemuroidea
+8219,Indus,a faint constellation in the southern hemisphere near Telescopium and Tucana
+8220,Indus Indus_River,an Asian river that rises in Tibet and flows through northern India and then southwest through Kashmir and Pakistan to the Arabian Sea; "the valley of the Indus was the site of an early civilization"
+8221,Indus_civilization,the bronze-age culture of the Indus valley that flourished from about 2600-1750 BC
+8222,Industrial_Revolution technological_revolution,the transformation from an agricultural to an industrial nation
+8223,Industrial_Workers_of_the_World IWW I.W.W.,a former international labor union and radical labor movement in the United States; founded in Chicago in 1905 and dedicated to the overthrow of capitalism; its membership declined after World War I
+8224,Infusoria subclass_Infusoria,in some recent classifications, coextensive with the Ciliata: minute organisms found in decomposing infusions of organic matter
+8225,Inge William_Inge,United States playwright (1913-1973)
+8226,Inge William_Ralph_Inge Gloomy_Dean,English prelate noted for his pessimistic sermons and articles (1860-1954)
+8227,Ingres Jean_Auguste_Dominique_Ingres,French classical painter (1780-1867)
+8228,Ingrian,a Finnic language spoken by the Ingrian
+8229,Ingrian Inger Ingerman,a member of western Finnish people formerly living in the Baltic province where Saint Petersburg was built
+8230,Inland_Passage Inside_Passage,a naturally protected waterway from Seattle to Skagway in southeastern Alaska
+8231,Inland_Revenue IR,a board of the British government that administers and collects major direct taxes
+8232,Inland_Sea,an arm of the Pacific Ocean in southern Japan; surrounded by the islands of Honshu and Shikoku and Kyushu and linked to the Sea of Japan by a narrow channel; the chief port is Hiroshima
+8233,Inner_Hebrides,islands between the Outer Hebrides and the western coast of Scotland
+8234,Inner_Light Light Light_Within Christ_Within,a divine presence believed by Quakers to enlighten and guide the soul
+8235,Inner_Mongolia Nei_Monggol,an autonomous region of northeastern China that was annexed by the Manchu rulers in 1635 and became an integral part of China in 1911
+8236,Innocent_III Lotario_di_Segni,Italian pope from 1198 to 1216 who instituted the Fourth Crusade and under whom papal intervention in European politics reached its height (1161-1216)
+8237,Innocent_VIII Giovanni_Battista_Cibo,Italian pope from 1484 to 1492 who was known as a nepotist and was attacked by Savonarola for his worldliness (1432-1492)
+8238,Innocent_XI Benedetto_Odescalchi,Italian pope from 1676 to 1689 whose papacy was marked by the struggle with Louis XIV of France over papal authority over French Catholics; known for saintliness and canonized in 1956 (1611-1689)
+8239,Innocent_XII Antonio_Pignatelli,Italian pope from 1691 to 1700 who abolished nepotism within the church hierarchy and was universally loved for his charity and piety
+8240,Innsbruck,city in southwestern Austria; known as a summer and winter resort
+8241,Inquisition,a former tribunal of the Roman Catholic Church (1232-1820) created to discover and suppress heresy
+8242,Inquisitor,an official of the ecclesiastical court of the Inquisition
+8243,Insecta class_Insecta Hexapoda class_Hexapoda,insects; about five-sixths of all known animal species
+8244,Insectivora order_Insectivora,shrews; moles; hedgehogs; tenrecs
+8245,Insessores order_Insessores perching_bird percher,a bird with feet adapted for perching (as on tree branches); this order is now generally abandoned by taxonomists
+8246,Inspector_Maigret Commissaire_Maigret,a fictional detective in novels by Georges Simenon
+8247,Intelligence_Community National_Intelligence_Community United_States_Intelligence_Community IC,a group of government agencies and organizations that carry out intelligence activities for the United States government; headed by the Director of Central Intelligence
+8248,Intelnet,a computer network similar to but separate from the internet; devoted to the dissemination of information to and for the Intelligence Community
+8249,Interlaken,a popular resort town in the Alps in west central Switzerland
+8250,Interlingua,an artificial language proposed for use as an auxiliary international language; based on words common to English and the Romance languages
+8251,Internal_Revenue_Service IRS,the bureau of the Treasury Department responsible for tax collections
+8252,International,any of several international socialist organizations
+8253,International_Atomic_Energy_Agency IAEA,the United Nations agency concerned with atomic energy
+8254,International_Bank_for_Reconstruction_and_Development World_Bank IBRD,a United Nations agency created to assist developing nations by loans guaranteed by member governments
+8255,International_Civil_Aviation_Organization ICAO,the United Nations agency concerned with civil aviation
+8256,International_Court_of_Justice World_Court,a court established to settle disputes between members of the United Nations
+8257,International_Development_Association IDA,an agency of the United Nations affiliated with the World Bank
+8258,International_Finance_Corporation IFC,a United Nations agency that invests directly in companies and guarantees loans to private investors; affiliated with the World Bank
+8259,International_Grandmaster,a chess player who has been awarded the highest title by an international chess organization
+8260,International_Islamic_Front_for_Jihad_against_Jews_and_Crusaders,a terrorist group organized by Osama bin Laden in 1998 that provided an umbrella organization for al-Qaeda and other militant groups in Egypt and Algeria and Pakistan and Bangladesh
+8261,International_Labor_Organization International_Labour_Organization ILO,the United Nations agency concerned with the interests of labor
+8262,International_Maritime_Organization IMO,the United Nations agency concerned with international maritime activities
+8263,International_Monetary_Fund IMF,a United Nations agency to promote trade by increasing the exchange stability of the major currencies
+8264,International_Olympic_Committee IOC I.O.C.,organization responsible for organizing the modern Olympic Games
+8265,International_Relations_and_Security_Network ISN,Switzerland's information network for security and defense studies and for peace and conflict research and for international relations
+8266,International_Wanted_Notice Red_Notice,an Interpol notice describing a wanted person and asking that he or she be arrested with a view to extradition; a wanted notice that is issued by Interpol at the request of an Interpol member country and distributed to all member countries; "an Interpol Red Notice is the closest instrument to an international arrest warrant in use today"
+8267,Internationale,a revolutionary socialist anthem
+8268,Internet_Explorer Explorer IE,a commercial browser
+8269,Interpol,an international intelligence agency permitting collaboration among intelligence agencies around the world
+8270,Interstate_Commerce_Commission ICC,a former independent federal agency that supervised and set rates for carriers that transported goods and people between states; was terminated in 1995; "the ICC was established in 1887 as the first federal agency"
+8271,Invar,an alloy of iron and nickel having a low coefficient of thermal expansion; used in tuning forks and measuring tapes and other instruments
+8272,Io,(Greek mythology) a maiden seduced by Zeus; when Hera was about to discover them together Zeus turned her into a white heifer
+8273,Io,the closest of Jupiter's moons; has active volcanoes
+8274,Ionesco Eugene_Ionesco,French dramatist (born in Romania) who was a leading exponent of the theater of the absurd (1912-1994)
+8275,Ionia,region of western Asia Minor colonized by ancient Greeks
+8276,Ionian,a member of one of four linguistic divisions of the prehistoric Greeks
+8277,Ionian,the ancient Greek inhabitants of Attica and related regions in Ionia
+8278,Ionian_Sea,an arm of the Mediterranean Sea between western Greece and southern Italy
+8279,Ionic_order Ionian_order,the second Greek order; the capital is decorated with spiral scrolls
+8280,Iowa Hawkeye_State IA Ia.,a state in midwestern United States
+8281,Iowa Ioway,a member of the Siouan people formerly living in Iowa and Minnesota and Missouri
+8282,Iowa Ioway,a dialect of the Chiwere language spoken by the Iowa
+8283,Iowa_crab Iowa_crab_apple prairie_crab western_crab_apple Malus_ioensis,wild crab apple of western United States with fragrant pink flowers
+8284,Iowan,a native or resident of Iowa
+8285,Iphigenia,(Greek mythology) the daughter of Clytemnestra and Agamemnon; Agamemnon was obliged to offer her as a sacrifice to Artemis when the Greek fleet was becalmed on its way to Troy; Artemis rescued her and she later became a priestess
+8286,Ipomoea genus_Ipomoea,morning glory
+8287,Ipsus battle_of_Ipsus,a battle between the successors of Alexander the Great (301 BC); Lysimachus and Seleucus defeated Antigonus and Demetrius
+8288,Iran Islamic_Republic_of_Iran Persia,a theocratic Islamic republic in the Middle East in western Asia; Iran was the core of the ancient empire that was known as Persia until 1935; rich in oil
+8289,Iran-Iraq_War Gulf_War,a dispute over control of the waterway between Iraq and Iran broke out into open fighting in 1980 and continued until 1988, when they accepted a UN cease-fire resolution
+8290,Irani Iranian Persian,a native or inhabitant of Iran; "the majority of Irani are Persian Shiite Muslims"
+8291,Iranian Iranian_language,the modern Persian language spoken in Iran
+8292,Iranian_dinar dinar,100 dinars equal 1 rial in Iran
+8293,Iranian_monetary_unit,monetary unit in Iran
+8294,Iranian_rial rial,the basic unit of money in Iran
+8295,Iraq Republic_of_Iraq Al-Iraq Irak,a republic in the Middle East in western Asia; the ancient civilization of Mesopotamia was in the area now known as Iraq
+8296,Iraqi Iraki,a native or inhabitant of Iraq; "the majority of Iraqi are Arab Shiite Muslims although Sunni Muslims control the government"
+8297,Iraqi_Intelligence_Service IIS Iraqi_Mukhabarat,the most notorious and possibly the most important arm of Iraq's security system; "the Iraqi Mukhabarat has been involved in numerous terrorist activities"
+8298,Iraqi_Kurdistan,the part of Kurdistan that is in northwestern Iraq
+8299,Iraqi_National_Congress INC,a heterogeneous collection of groups united in their opposition to Saddam Hussein's government of Iraq; formed in 1992 it is comprised of Sunni and Shiite Arabs and Kurds who hope to build a new government
+8300,Iraqi_dinar dinar,the basic unit of money in Iraq; equal to 1,000 fils
+8301,Iraqi_monetary_unit,monetary unit in Iraq
+8302,Ireland Hibernia Emerald_Isle,an island comprising the republic of Ireland and Northern Ireland
+8303,Ireland Republic_of_Ireland Irish_Republic Eire,a republic consisting of 26 of 32 counties comprising the island of Ireland; achieved independence from the United Kingdom in 1921
+8304,Irena genus_Irena,type genus of the Irenidae: fairy bluebirds
+8305,Irenaeus Saint_Irenaeus St._Irenaeus,Greek theologian who was bishop of Lyons and an antiheretical writer; a saint and Doctor of the Church (circa 130-200)
+8306,Irenidae family_Irenidae,a family of birds of the suborder Oscines
+8307,Iresine genus_Iresine,genus of tropical American herbs or subshrubs
+8308,Iridaceae family_Iridaceae iris_family,large family of usually perennial geophytic herbs with rhizomes or corms or bulbs
+8309,Iridoprocne genus_Iridoprocne,a genus of Hirundinidae
+8310,Irish Irish_Gaelic,the Celtic language of Ireland
+8311,Irish Irish_people,people of Ireland or of Irish extraction
+8312,Irish Irish_whiskey Irish_whisky,whiskey made in Ireland chiefly from barley
+8313,Irish_National_Liberation_Army INLA People's_Liberation_Army People's_Republican_Army Catholic_Reaction_Force,a radical terrorist group dedicated to the removal of British forces from Northern Ireland and the unification of Ireland
+8314,Irish_Republican_Army IRA Provisional_Irish_Republican_Army Provisional_IRA Provos,a militant organization of Irish nationalists who used terrorism and guerilla warfare in an effort to drive British forces from Northern Ireland and achieve a united independent Ireland
+8315,Irish_Sea,an arm of the North Atlantic between Great Britain and Ireland
+8316,Irish_coffee,sweetened coffee with Irish whiskey and whipped cream
+8317,Irish_monetary_unit,monetary unit in Eire
+8318,Irish_moss carrageen carageen carragheen Chondrus_crispus,dark purple edible seaweed of the Atlantic coasts of Europe and North America
+8319,Irish_person Irelander,a native or inhabitant of Ireland
+8320,Irish_pound Irish_punt punt pound,formerly the basic unit of money in Ireland; equal to 100 pence
+8321,Irish_setter red_setter,an Irish breed with a chestnut-brown or mahogany-red coat
+8322,Irish_soda_bread,round loaf made with soda and buttermilk; often containing caraway seeds and raisins
+8323,Irish_stew,meat (especially mutton) stewed with potatoes and onions
+8324,Irish_terrier,medium-sized breed with a wiry brown coat; developed in Ireland
+8325,Irish_water_spaniel,breed of large spaniels developed in Ireland having a heavy coat of liver-colored curls and a topknot of long curls and a nearly hairless tail
+8326,Irish_wolfhound,large breed of hound with a rough thick coat
+8327,Irishman,a man who is a native or inhabitant of Ireland
+8328,Irishwoman,a woman who is a native or inhabitant of Ireland
+8329,Iron_Age,(archeology) the period following the Bronze Age; characterized by rapid spread of iron tools and weapons
+8330,Iroquoian Iroquois Iroquoian_language,a family of North American Indian languages spoken by the Iroquois
+8331,Iroquois,any member of the warlike North American Indian peoples formerly living in New York State; the Iroquois League were allies of the British during the American Revolution
+8332,Iroquois_League League_of_Iroquois Five_Nations Six_Nations,a league of Iroquois tribes including originally the Mohawk, Oneida, Onondaga, Cayuga and Seneca (the Five Nations); after 1722 they were joined by the Tuscarora (the Six Nations)
+8333,Irrawaddy Irrawaddy_River,the main river of Myanmar rising in the north and flowing south through the length of Burma to empty into the Andaman Sea
+8334,Irtish Irtish_River Irtysh Irtysh_River,an Asian river that rises in the Altai Mountains in northern China and flows generally northwest to become a tributary of the Ob River
+8335,Irula,a Dravidian language closely related to Tamil that is spoken in a hilly section of southwestern India
+8336,Irving John_Irving,United States writer of darkly humorous novels (born in 1942)
+8337,Irving Washington_Irving,United States writer remembered for his stories (1783-1859)
+8338,Irvingia genus_Irvingia,wild mango
+8339,Isaac,(Old Testament) the second patriarch; son of Abraham and Sarah who was offered by Abraham as a sacrifice to God; father of Jacob and Esau
+8340,Isabella Queen_Isabella Isabella_I Isabella_the_Catholic,the queen of Castile whose marriage to Ferdinand of Aragon in 1469 marked the beginning of the modern state of Spain; they instituted the Spanish Inquisition in 1478 and sponsored the voyages of Christopher Columbus in 1492 (1451-1504)
+8341,Isaiah,(Old Testament) the first of the major Hebrew prophets (8th century BC)
+8342,Isaiah Book_of_Isaiah,an Old Testament book consisting of Isaiah's prophecies
+8343,Isatis genus_Isatis,Old World genus of annual to perennial herbs: woad
+8344,Ischia,a volcanic island (part of Campania) in the Tyrrhenian Sea at the north end of the Bay of Naples
+8345,Ischigualastia genus_Ischigualastia,early reptile found in Argentina
+8346,Isere Isere_River,a river in southeastern France; a tributary of the Rhone
+8347,Iseult Isolde,(Middle Ages) the bride of the king of Cornwall who (according to legend) fell in love with the king's nephew (Tristan) after they mistakenly drank a love potion that left them eternally in love with each other
+8348,Isfahan Esfahan Aspadana,city in central Iran; former capital of Persia
+8349,Isherwood Christopher_Isherwood Christopher_William_Bradshaw_Isherwood,United States writer (born in England) whose best known novels portray Berlin in the 1930's and who collaborated with W. H. Auden in writing plays in verse (1904-1986)
+8350,Ishmael,(Old Testament) the son of Abraham who was cast out after the birth of Isaac; considered the forebear of 12 Arabian tribes
+8351,Ishtar Mylitta,Babylonian and Assyrian goddess of love and fertility and war; counterpart to the Phoenician Astarte
+8352,Isis,Egyptian goddess of fertility; daughter of Geb; sister and wife of Osiris
+8353,Islam Islamism Mohammedanism Muhammadanism Muslimism,the monotheistic religious system of Muslims founded in Arabia in the 7th century and based on the teachings of Muhammad as laid down in the Koran; "Islam is a complete way of life, not a Sunday religion"; "the term Muhammadanism is offensive to Muslims who believe that Allah, not Muhammad, founded their religion"
+8354,Islam Muslimism,the civilization of Muslims collectively which is governed by the Muslim religion; "Islam is predominant in northern Africa, the Middle East, Pakistan, and Indonesia"
+8355,Islamabad capital_of_Pakistan,the capital of Pakistan in the north on a plateau; the site was chosen in 1959
+8356,Islamic_Army_of_Aden IAA Islamic_Army_of_Aden-Abyan Aden-Abyan_Islamic_Army,Yemen-based terrorist group that supports al-Qaeda's goals; seeks to overthrow the Yemeni government and eliminate United States interests; responsible for bombings and kidnappings and killing western tourists in Yemen
+8357,Islamic_Great_Eastern_Raiders-Front IBDA-C,a Turkish terrorist organization that claimed responsibility for bombing a British consulate and bank in Istanbul; a violent opponent of Turkey's secular government and its ties to the European Union and NATO
+8358,Islamic_Group_of_Uzbekistan IMU Islamic_Party_of_Turkestan,a terrorist group of Islamic militants formed in 1996; opposes Uzbekistan's secular regime and wants to establish an Islamic state in central Asia; is a conduit for drugs from Afghanistan to central Asian countries
+8359,Islamic_calendar Muhammadan_calendar Mohammedan_calendar Moslem_calendar Muslim_calendar,the lunar calendar used by Muslims; dates from 622 AD (the year of the Hegira); the beginning of the Muslim year retrogresses through the solar year completing the cycle every 32 years
+8360,Islamic_calendar_month,any lunar month in the Muslim calendar
+8361,Islamism,a fundamentalist Islamic revivalist movement generally characterized by moral conservatism and the literal interpretation of the Koran and the attempt to implement Islamic values in all aspects of life
+8362,Islamist,a scholar who knowledgeable in Islamic studies
+8363,Islamist,an orthodox Muslim
+8364,Islamophobia,prejudice against Muslims; "Muslim intellectuals are afraid of growing Islamophobia in the West"
+8365,Islay,an island of western Scotland at the southern end of the Inner Hebrides
+8366,Isle_Royal_National_Park,a national park on an island in Michigan; includes prehistoric iron mines
+8367,Isle_of_Skye,an island of northwestern Scotland noted for its rugged mountain scenery
+8368,Ismaili Ismailian,an adherent of Ismailism; a member of the Ismaili branch of Shiism
+8369,Ismailism,the branch of Shiism noted for its esoteric philosophy
+8370,Isocrates,Athenian rhetorician and orator (436-338 BC)
+8371,Isoetaceae family_Isoetaceae quillwort_family,quillworts; coextensive with the genus Isoetes
+8372,Isoetales order_Isoetales,aquatic or marsh-growing fern allies; known to have existed since the Cenozoic; sometimes included in Lycopodiales
+8373,Isoetes genus_Isoetes,type and genus of the Isoetaceae and sole extant genus of the order Isoetales
+8374,Isopoda order_Isopoda,woodlice
+8375,Isoptera order_Isoptera,order of social insects that live in colonies, including: termites; often placed in subclass Exopterygota
+8376,Isopyrum genus_Isopyrum,tufted perennial herbs of northern hemisphere
+8377,Isospondyli order_Isospondyli,most primitive teleost fishes; all are soft-finned: salmon; trout; herring; shad; sardines; anchovies; whitefish; smelts; tarpon
+8378,Israel,an ancient kingdom of the Hebrew tribes at the southeastern end of the Mediterranean Sea; founded by Saul around 1025 BC and destroyed by the Assyrians in 721 BC
+8379,Israel State_of_Israel Yisrael Zion Sion,Jewish republic in southwestern Asia at eastern end of Mediterranean; formerly part of Palestine
+8380,Israeli,a native or inhabitant of Israel
+8381,Israeli_Defense_Force IDF,the ground and air and naval forces of Israel
+8382,Israeli_monetary_unit,monetary unit in Israel
+8383,Israelite,a native or inhabitant of the ancient kingdom of Israel
+8384,Issachar,(Old Testament) a son of Jacob and a forebear of one of the tribes of Israel
+8385,Issus battle_of_Issus,a battle (333 BC) in which Alexander the Great defeated the Persians under Darius III
+8386,Istanbul Stambul Stamboul Constantinople,the largest city and former capital of Turkey; rebuilt on the site of ancient Byzantium by Constantine I in the fourth century; renamed Constantinople by Constantine who made it the capital of the Byzantine Empire; now the seat of the Eastern Orthodox Church
+8387,Isthmian_Games,the ancient Panhellenic games held biennially on the Isthmus of Corinth in the first and third years of each Olympiad
+8388,Isthmus_of_Corinth,a narrow isthmus between the Gulf of Corinth and the Saronic Gulf; a canal crosses the isthmus so that navigation is possible between the gulfs
+8389,Isthmus_of_Kra,a narrow isthmus linking the Malay Peninsula to the Asian mainland
+8390,Isthmus_of_Panama Isthmus_of_Darien,the isthmus that connects Central America and South America; was formerly called the Isthmus of Darien; "Balboa crossed the Isthmus of Darien"
+8391,Isthmus_of_Suez,the isthmus in northeastern Egypt that connects Africa and Asia
+8392,Isthmus_of_Tehuantepec,the narrowest part of southern Mexico is an isthmus between the Bay of Campeche on the north coast and the Gulf of Tehuantepec on the south coast
+8393,Istiophoridae family_Istiophoridae,sailfishes; spearfishes; marlins
+8394,Istiophorus genus_Istiophorus,type genus of the Istiophoridae
+8395,Isuridae family_Isuridae,in some classifications another name for the family Lamnidae
+8396,Isurus genus_Isurus,mako sharks
+8397,Italian,a native or inhabitant of Italy
+8398,Italian,the Romance language spoken in Italy
+8399,Italian_Peninsula,a boot-shaped peninsula in southern Europe extending into the Mediterranean Sea
+8400,Italian_Renaissance,the early period when Italy was the center of the Renaissance
+8401,Italian_bee,yellowish honeybee resembling the Carniolan bee in its habits
+8402,Italian_bread,unsweetened yeast-raised bread made without shortening and baked in long thick loaves with tapered ends
+8403,Italian_cypress Mediterranean_cypress Cupressus_sempervirens,tall Eurasian cypress with thin grey bark and ascending branches
+8404,Italian_dressing,a vinaigrette with garlic and herbs: oregano and basil and dill
+8405,Italian_greyhound,a toy dog developed from the greyhound
+8406,Italian_honeysuckle Italian_woodbine Lonicera_caprifolium,deciduous climbing shrub with fragrant yellow-white flowers in axillary whorls
+8407,Italian_monetary_unit,monetary unit in Italy
+8408,Italian_parsley flat-leaf_parsley Petroselinum_crispum_neapolitanum,a variety of parsley having flat leaves
+8409,Italian_region,Italy is divided into 20 regions for administrative purposes
+8410,Italian_ryegrass Italian_rye Lolium_multiflorum,European grass much used for hay and in United States also for turf and green manure
+8411,Italic Italic_language,a branch of the Indo-European languages of which Latin is the chief representative
+8412,Italy Italian_Republic Italia,a republic in southern Europe on the Italian Peninsula; was the core of the Roman Republic and the Roman Empire between the 4th century BC and the 5th century AD
+8413,Ithaca,a college town in central New York on Lake Cayuga
+8414,Ithaca Ithaki,a Greek island to the west of Greece; in Homeric legend Odysseus was its king
+8415,Ivan_III Ivan_III_Vasilievich Ivan_the_Great,grand duke of Muscovy whose victories against the Tartars laid the basis for Russian unity (1440-1505)
+8416,Ivan_IV Ivan_Iv_Vasilievich Ivan_the_Terrible,the first czar of Russia (1530-1584)
+8417,Ivanov Lev_Ivanov,Russian choreographer (1834-1905)
+8418,Ives Charles_Edward_Ives,United States composer noted for his innovative use of polytonality (1874-1954)
+8419,Ives James_Ives James_Merritt_Ives,United States lithographer who (with his partner Nathaniel Currier) produced thousands of prints signed `Currier & Ives' (1824-1895)
+8420,Ivory_Coast Cote_d'Ivoire Republic_of_Cote_d'Ivoire,a republic in western Africa on the Gulf of Guinea; one of the most prosperous and politically stable countries in Africa
+8421,Ivory_Coast_franc Cote_d'Ivoire_franc,the basic unit of money in the Ivory Coast
+8422,Ivry battle_of_Ivry Ivry_la_Bataille,a battle (1590) in which the Huguenots under Henry IV defeated the Catholics under the duke of Mayenne
+8423,Ivy_League,a league of universities and colleges in the northeastern United States that have a reputation for scholastic achievement and social prestige
+8424,Ivy_Leaguer,a student or graduate at an Ivy League school
+8425,Iwo Iwo_Jima invasion_of_Iwo,a bloody and prolonged operation on the island of Iwo Jima in which American marines landed and defeated Japanese defenders (February and March 1945)
+8426,Iwo_Jima,the largest of the Volcano Islands of Japan
+8427,Ixia genus_Ixia,a monocotyledonous genus of the family Iridaceae
+8428,Ixobrychus genus_Ixobrychus,bitterns
+8429,Ixodes genus_Ixodes,type genus of the family Ixodidae
+8430,Ixodes_dammini deer_tick,a northeastern tick now recognized as same species as Ixodes scapularis
+8431,Ixodes_dentatus,usually does not bite humans; transmits Lyme disease spirochete to cottontail rabbits and wood rats
+8432,Ixodes_neotomae,a tick that usually does not bite humans; transmits Lyme disease spirochete to dusky-footed wood rats
+8433,Ixodes_pacificus western_black-legged_tick,a tick that feeds on dusky-footed wood rat and bites humans; principal vector for Lyme disease in western United States especially northern California
+8434,Ixodes_persulcatus,bites humans; a vector for Lyme disease spirochete
+8435,Ixodes_scapularis black-legged_tick,parasitic on mice of genus Peromyscus and bites humans; principal vector for Lyme disease in eastern United States (especially New England); northern form was for a time known as Ixodes dammini (deer tick)
+8436,Ixodes_spinipalpis,usually does not bite humans; transmits Lyme disease spirochete to cottontail rabbits and wood rats
+8437,Ixodidae family_Ixodidae,hard ticks
+8438,Iyar Iyyar,the eighth month of the civil year; the second month of the ecclesiastical year (in April and May)
+8439,Izanagi,the god who fathered the islands and gods of Japan with his sister Izanami
+8440,Izanami,sister and consort of Izanami; mother of the islands and gods of Japan
+8441,Izmir Smyrna,a port city in western Turkey
+8442,J j,the 10th letter of the Roman alphabet
+8443,J_particle psi_particle,a neutral meson with a large mass
+8444,Jabalpur Jubbulpore,an industrial city of central India to the southeast of Delhi
+8445,Jack_Frost,a personification of frost or winter weather
+8446,Jack_of_all_trades,a person able to do a variety of different jobs acceptably well
+8447,Jack_the_Ripper,an unidentified English murderer in the 19th century
+8448,Jackson,a town in western Wyoming
+8449,Jackson,a town in western Tennessee
+8450,Jackson,a town in south central Michigan
+8451,Jackson Andrew_Jackson Old_Hickory,7th president of the US; successfully defended New Orleans from the British in 1815; expanded the power of the presidency (1767-1845)
+8452,Jackson Glenda_Jackson,English film actress who later became a member of British Parliament (born in 1936)
+8453,Jackson Helen_Hunt_Jackson Helen_Maria_Fiske_Hunt_Jackson,United States writer of romantic novels about the unjust treatment of Native Americans (1830-1885)
+8454,Jackson Jesse_Jackson Jesse_Louis_Jackson,United States civil rights leader who led a national campaign against racial discrimination and ran for presidential nomination (born in 1941)
+8455,Jackson Mahalia_Jackson,United States singer who did much to popularize gospel music (1911-1972)
+8456,Jackson Michael_Jackson Michael_Joe_Jackson,United States singer who began singing with his four brothers and later became a highly successful star during the 1980s (born in 1958)
+8457,Jackson Thomas_Jackson Thomas_J._Jackson Thomas_Jonathan_Jackson Stonewall_Jackson,general in the Confederate Army during the American Civil War whose troops at the first Battle of Bull Run stood like a stone wall (1824-1863)
+8458,Jackson capital_of_Mississippi,capital of the state of Mississippi on the Pearl River
+8459,Jacksonia genus_Jacksonia,genus of yellow-flowered Australian unarmed or spiny shrubs without true leaves but having leaflike stems or branches
+8460,Jacksonian,a follower of Andrew Jackson or his ideas
+8461,Jacksonian_epilepsy,focal epilepsy in which the attack usually moves from distal to proximal limb muscles on the same side of the body
+8462,Jacksonville,Florida's largest city; a port and important commercial center in northeastern Florida
+8463,Jacob,(Old Testament) son of Isaac; brother of Esau; father of the twelve patriarchs of Israel; Jacob wrestled with God and forced God to bless him, so God gave Jacob the new name of Israel (meaning `one who has been strong against God')
+8464,Jacob Francois_Jacob,French biochemist who (with Jacques Monod) studied regulatory processes in cells (born in 1920)
+8465,Jacob's_ladder Greek_valerian charity Polemonium_caeruleum Polemonium_van-bruntiae Polymonium_caeruleum_van-bruntiae,pinnate-leaved European perennial having bright blue or white flowers
+8466,Jacob's_ladder jack_ladder pilot_ladder,(nautical) a hanging ladder of ropes or chains supporting wooden or metal rungs or steps
+8467,Jacob's_rod,asphodel having erect smooth unbranched stem either flexuous or straight
+8468,Jacobean,any distinguished personage during the reign of James I
+8469,Jacobean_lily Aztec_lily Strekelia_formosissima,Mexican bulbous herb cultivated for its handsome bright red solitary flower
+8470,Jacobi Karl_Gustav_Jacob_Jacobi,German mathematician (1804-1851)
+8471,Jacobin,a member of the radical movement that instituted the Reign of Terror during the French Revolution
+8472,Jacobinism,the ideology of the most radical element of the French Revolution that instituted the Reign of Terror
+8473,Jacobite,a supporter of James II after he was overthrown or a supporter of the Stuarts
+8474,Jacobs Aletta_Jacobs,Dutch physician who opened the first birth control clinic in the world in Amsterdam (1854-1929)
+8475,Jacobs Jane_Jacobs,United States writer and critic of urban planning (born in 1916)
+8476,Jacobs W._W._Jacobs William_Wymark_Jacobs,English writer of macabre short stories (1863-1943)
+8477,Jacquard Joseph_M._Jacquard Joseph_Marie_Jacquard,French inventor of the Jacquard loom that could automatically weave complicated patterns (1752-1834)
+8478,Jacquard_loom Jacquard,a loom with an attachment for forming openings for the passage of the shuttle between the warp threads; used in weaving figured fabrics
+8479,Jacquemier's_sign,a purplish discoloration of the mucous membrane of the vagina that occurs early in pregnancy
+8480,Jacquinia genus_Jacquinia,sometimes placed in family Myrsinaceae
+8481,Jaculus genus_Jaculus,jerboas
+8482,Jaculus_jaculus,a variety of jerboa
+8483,Jaffa Joppa Yafo,a port in western Israel on the Mediterranean; incorporated into Tel Aviv in 1950
+8484,Jaffa_orange,sweet almost seedless orange of Israel
+8485,Jaffar Jafar Jaffar_Umar_Thalib Jafar_Umar_Thalib,Indonesian terrorist and Islamic militant who commands the Laskar Jihad; uses violence to achieve political ends (1965-2000)
+8486,Jafnea_semitosta,the fruiting bodies of this discomycete have a firm texture and long retain their cup shape; the pale brown interior blends with the color of dead leaves
+8487,Jagannath Jagannatha Jagganath Juggernaut,an avatar of Vishnu
+8488,Jagger Mick_Jagger Michael_Philip_Jagger,English rock star (born in 1943)
+8489,Jainism,sect founded in the 6th century BC as a revolt against Hinduism
+8490,Jainism,religion founded in the 6th century BC as a revolt against Hinduism; emphasizes asceticism and immortality and transmigration of the soul; denies existence of a perfect or supreme being
+8491,Jainist,a believer in Jainism
+8492,Jaish-i-Mohammed Jaish-e-Muhammad JEM Army_of_Muhammad,a terrorist organization founded in 2000; a militant Islamic group active in Kashmir and closely aligned with al-Rashid Trust; seeks to secure release of imprisoned fellow militants by kidnappings
+8493,Jakarta Djakarta capital_of_Indonesia,capital and largest city of Indonesia; located on the island of Java; founded by the Dutch in 17th century
+8494,Jakobson Roman_Jakobson Roman_Osipovich_Jakobson,United States linguist (born in Russia) noted for his description of the universals of phonology (1896-1982)
+8495,Jalalabad,a town in eastern Afghanistan (east of Kabul)
+8496,Jamaat_ul-Fuqra Fuqra Tanzimul_Fuqra,an Islamic terrorist group organized in the 1980s; seeks to purify Islam through violence; the cells in North America and the Caribbean insulate themselves from Western culture and will even attack other Muslims who they regard as heretics
+8497,Jamaica,a country on the island of Jamaica; became independent of England in 1962; much poverty; the major industry is tourism
+8498,Jamaica,an island in the West Indies to the south of Cuba and to the west of Haiti
+8499,Jamaica_dogwood fish_fuddle Piscidia_piscipula Piscidia_erythrina,small tree of West Indies and Florida having large odd-pinnate leaves and panicles of red-striped purple to white flowers followed by decorative curly winged seedpods; yields fish poisons
+8500,Jamaica_honeysuckle yellow_granadilla Passiflora_laurifolia,West Indian passionflower; cultivated for its yellow edible fruit
+8501,Jamaica_quassia,similar to the extract from Quassia amara
+8502,Jamaica_quassia bitterwood Picrasma_excelsa Picrasma_excelsum,West Indian tree yielding the drug Jamaica quassia
+8503,Jamaica_rum,heavy pungent rum from Jamaica
+8504,Jamaican,a native or inhabitant of Jamaica
+8505,Jamaican_cherry calabur_tree calabura silk_wood silkwood Muntingia_calabura,a fast-growing tropical American evergreen having white flowers and white fleshy edible fruit; bark yields a silky fiber used in cordage and wood is valuable for staves
+8506,Jamaican_dollar,the basic unit of money in Jamaica
+8507,Jambos genus_Jambos,used in some classifications for rose apples (Eugenia jambos)
+8508,James Henry_James,writer who was born in the United States but lived in England (1843-1916)
+8509,James James_I King_James King_James_I,the first Stuart to be king of England and Ireland from 1603 to 1625 and king of Scotland from 1567 to 1625; he was the son of Mary Queen of Scots and he succeeded Elizabeth I; he alienated the British Parliament by claiming the divine right of kings (1566-1625)
+8510,James James_II,the last Stuart to be king of England and Ireland and Scotland; overthrown in 1688 (1633-1701)
+8511,James James_IV,a Stuart king of Scotland who married a daughter of Henry VII; when England and France went to war in 1513 he invaded England and died in defeat at Flodden (1473-1513)
+8512,James James_River,a river in Virginia that flows east into Chesapeake Bay at Hampton Roads
+8513,James James_River,a river that rises in North Dakota and flows southward across South Dakota to the Missouri
+8514,James Jesse_James,United States outlaw who fought as a Confederate soldier and later led a band of outlaws that robbed trains and banks in the West until he was murdered by a member of his own gang (1847-1882)
+8515,James Saint_James St._James Saint_James_the_Apostle St._James_the_Apostle,(New Testament) disciple of Jesus; brother of John; author of the Epistle of James in the New Testament
+8516,James William_James,United States pragmatic philosopher and psychologist (1842-1910)
+8517,James_Bay,the southern extension of Hudson Bay in Canada between western Quebec and northeastern Ontario
+8518,Jamesonia genus_Jamesonia,xerophytic ferns of South America
+8519,Jamestown,a former village on the James River in Virginia to the north of Norfolk; site of the first permanent English settlement in America in 1607
+8520,Jamison Judith_Jamison,United States dancer and choreographer (born in 1944)
+8521,Jane_Doe,an unknown or fictitious woman who is a party to legal proceedings
+8522,Janissary,a Turkish soldier
+8523,Jansen Cornelis_Jansen Cornelius_Jansenius,a Dutch Roman Catholic theologian (1585-1638)
+8524,Jansenism,the Roman Catholic doctrine of Cornelis Jansen and his disciples; salvation is limited to those who are subject to supernatural determinism and the rest are assigned to perdition
+8525,Jansenist,an advocate of Jansenism
+8526,January Jan,the first month of the year; begins 10 days after the winter solstice
+8527,Janus,(Roman mythology) the Roman god of doorways and passages; is depicted with two faces on opposite sides of his head
+8528,Jap Nip,(offensive slang) offensive term for a person of Japanese descent
+8529,Japan Japanese_Islands Japanese_Archipelago,a string of more than 3,000 islands to the east of Asia extending 1,300 miles between the Sea of Japan and the western Pacific Ocean
+8530,Japan Nippon Nihon,a constitutional monarchy occupying the Japanese Archipelago; a world leader in electronics and automobile manufacture and ship building
+8531,Japan_Trench,a depression in the floor of the Pacific Ocean to the northeast of Japan that reaches depths of 30,000 feet
+8532,Japan_allspice Japanese_allspice winter_sweet Chimonanthus_praecox,deciduous Japanese shrub cultivated for its fragrant yellow flowers
+8533,Japan_current Kuroshio_current Kuroshio,a warm ocean current that flows northeastwardly off the coast of Japan into the northern Pacific ocean
+8534,Japan_wax Japan_tallow,a yellow wax obtained from sumac berries; used in polishes
+8535,Japanese,the language (usually considered to be Altaic) spoken by the Japanese
+8536,Japanese Nipponese,a native or inhabitant of Japan
+8537,Japanese_Red_Army JRA Anti-Imperialist_International_Brigade,a terrorist group organized in 1970 to overthrow the Japanese government and monarchy and to foment world revolution; is said to have close ties with Palestinian terrorists; "in 1972 the Japanese Red Army was responsible for a massacre at an airport in Israel"
+8538,Japanese_angelica_tree Aralia_elata,deciduous clump-forming Asian shrub or small tree; adventive in the eastern United States
+8539,Japanese_apricot mei Prunus_mume,Japanese ornamental tree with fragrant white or pink blossoms and small yellow fruits
+8540,Japanese_banana Musa_basjoo,Asiatic banana plant cultivated especially as a foliage plant in Japan
+8541,Japanese_barberry Berberis_thunbergii,compact deciduous shrub having persistent red berries; widespread in cultivation especially for hedges
+8542,Japanese_beech,a beech native to Japan having soft light yellowish-brown wood
+8543,Japanese_beetle Popillia_japonica,small metallic green and brown beetle native to eastern Asia; serious plant pest in North America
+8544,Japanese_bittersweet Japan_bittersweet oriental_bittersweet Celastrus_orbiculatus Celastric_articulatus,ornamental Asiatic vine with showy orange-yellow fruit with a scarlet aril; naturalized in North America
+8545,Japanese_black_pine black_pine Pinus_thunbergii,large Japanese ornamental having long needles in bunches of 2; widely planted in United States because of its resistance to salt and smog
+8546,Japanese_brome Japanese_chess Bromus_japonicus,grass of Mediterranean and temperate Asia
+8547,Japanese_cedar Japan_cedar sugi Cryptomeria_japonica,tall evergreen of Japan and China yielding valuable soft wood
+8548,Japanese_chestnut Castanea_crenata,a spreading tree of Japan that has a short trunk
+8549,Japanese_crab,crabmeat usually canned; from Japan
+8550,Japanese_deer sika Cervus_nipon Cervus_sika,small deer of Japan with slightly forked antlers
+8551,Japanese_deity,a deity worshipped by the Japanese
+8552,Japanese_flowering_cherry Prunus_sieboldii,ornamental tree with inedible fruit widely cultivated in many varieties for its pink blossoms
+8553,Japanese_honeysuckle Lonicera_japonica,an Asiatic trailing evergreen honeysuckle with half-evergreen leaves and fragrant white flowers turning yellow with age; has become a weed in some areas
+8554,Japanese_hop Humulus_japonicus,ornamental vine native to eastern Asia; cultivated for its variegated foliage
+8555,Japanese_iris Iris_kaempferi,iris native to Japan having large showy flowers
+8556,Japanese_lilac Syringa_villosa,lilac of northern China having ovate leaves and profuse early summer rose-lilac flowers
+8557,Japanese_linden Japanese_lime Tilia_japonica,medium-sized tree of Japan used as an ornamental
+8558,Japanese_maple Acer_palmatum,ornamental shrub or small tree of Japan and Korea with deeply incised leaves; cultivated in many varieties
+8559,Japanese_maple full_moon_maple Acer_japonicum,leaves deeply incised and bright red in autumn; Japan
+8560,Japanese_millet billion-dollar_grass Japanese_barnyard_millet sanwa_millet Echinochloa_frumentacea,coarse annual grass cultivated in Japan and southeastern Asia for its edible seeds and for forage; important wildlife food in United States
+8561,Japanese_monetary_unit,monetary unit in Japan
+8562,Japanese_morning_glory Ipomoea_nil,annual Old World tropical climbing herb distinguished by wide color range and frilled or double flowers
+8563,Japanese_oak Lithocarpus_glabra Lithocarpus_glaber,small evergreen tree of China and Japan
+8564,Japanese_oak Quercus_mongolica Quercus_grosseserrata,oak with moderately light fine-grained wood; Japan
+8565,Japanese_oyster Ostrea_gigas,a large oyster native to Japan and introduced along the Pacific coast of the United States; a candidate for introduction in Chesapeake Bay
+8566,Japanese_pagoda_tree Chinese_scholartree Chinese_scholar_tree Sophora_japonica Sophora_sinensis,handsome roundheaded deciduous tree having compound dark green leaves and profuse panicles of fragrant creamy-white flowers; China and Japan
+8567,Japanese_persimmon kaki Diospyros_kaki,small deciduous Asiatic tree bearing large red or orange edible astringent fruit
+8568,Japanese_pink Dianthus_chinensis_heddewigii,a flowering variety of China pink distinguished by jagged-edged petals
+8569,Japanese_plum Prunus_salicina,small tree of China and Japan bearing large yellow to red plums usually somewhat inferior to European plums in flavor
+8570,Japanese_poinsettia mole_plant paint_leaf Euphorbia_heterophylla,showy poinsettia found from the southern United States to Peru
+8571,Japanese_privet Ligustrum_japonicum,evergreen shrub of Japan and Korea having small dark leaves and flowers in loose panicles; related to but smaller than Chinese privet
+8572,Japanese_quince Chaenomeles_speciosa,deciduous thorny shrub native to China having red or white blossoms
+8573,Japanese_red_pine Japanese_table_pine Pinus_densiflora,pine native to Japan and Korea having a wide-spreading irregular crown when mature; grown as an ornamental
+8574,Japanese_snowbell Styrax_japonicum,shrubby tree of China and Japan
+8575,Japanese_spaniel,breed of toy dogs originating in Japan having a silky black-and-white or red-and-white coat
+8576,Japanese_spurge Pachysandra_terminalis,slow-growing Japanese evergreen subshrub having terminal spikes of white flowers; grown as a ground cover
+8577,Japanese_stranglehold,a wrestling hold in which the opponent's arms are crossed in front of his own neck to exert pressure on his windpipe
+8578,Japanese_tree_lilac Syringa_reticulata Syringa_amurensis_japonica,small tree of Japan having narrow pointed leaves and creamy-white flowers
+8579,Japanese_umbrella_pine Sciadopitys_verticillata,tall evergreen having a symmetrical spreading crown and needles growing in whorls that resemble umbrellas at ends of twigs
+8580,Japanese_wistaria Wisteria_floribunda,having flowers of pink to mauve or violet-blue
+8581,Japanese_yew Taxus_cuspidata,shrubby hardy evergreen of China and Japan having lustrous dark green foliage; cultivated in the eastern United States
+8582,Japheth,(Old Testament) son of Noah
+8583,Jarrell Randall_Jarrell,United States poet (1914-1965)
+8584,Jarvik_heart Jarvik_artificial_heart,a kind of artificial heart that has been used with some success
+8585,Jasminum genus_Jasminum,shrubs and woody climbers mostly of tropical and temperate Old World: jasmine; jessamine
+8586,Jason,(Greek mythology) the husband of Medea and leader of the Argonauts who sailed in quest of the Golden Fleece
+8587,Jaspers Karl_Jaspers Karl_Theodor_Jaspers,German psychiatrist (1883-1969)
+8588,Jassidae family_Jassidae,family of small leafhoppers coextensive with the Cicadellidae and not distinguished from it in some classifications
+8589,Jat,a member of an Indo-European people widely scattered throughout the northwest of the Indian subcontinent and consisting of Muslims and Hindus and Sikhs
+8590,Jatropha genus_Jatropha,a mainly tropical genus of American plant belonging to the family Euphorbiaceae
+8591,Java,an island in Indonesia to the south of Borneo; one of the world's most densely populated regions
+8592,Java,a platform-independent object-oriented programming language
+8593,Java_man Trinil_man,fossil remains found in Java; formerly called Pithecanthropus erectus
+8594,Java_sparrow Java_finch ricebird Padda_oryzivora,small finch-like Indonesian weaverbird that frequents rice fields
+8595,Javanese,the Indonesian language spoken on Java
+8596,Javanese Javan,a native or inhabitant of Java
+8597,Javanthropus genus_Javanthropus,former genus of primitive man; now Homo soloensis: comprises Solo man
+8598,Javelle_water Javel_water eau_de_Javelle,an aqueous solution of sodium hypochlorite
+8599,Jaws_of_Life,hydraulic tool inserted into a wrecked vehicle and used to pry the wreckage apart in order to provide access to people trapped inside
+8600,Jay John_Jay,United States diplomat and jurist who negotiated peace treaties with Britain and served as the first chief justice of the United States Supreme Court (1745-1829)
+8601,Jayshullah,an indigenous Islamic terrorist group in Azerbaijan that attempted to bomb the United States embassy in 1999
+8602,Jazz_Age,the 1920s in the United States characterized in the novels of F. Scott Fitzgerald as a period of wealth, youthful exuberance, and carefree hedonism
+8603,Jeanne_d'Arc Joan_of_Arc Saint_Joan,French heroine and military leader inspired by religious visions to organize French resistance to the English and to have Charles VII crowned king; she was later tried for heresy and burned at the stake (1412-1431)
+8604,Jebel_Musa Abila Abyla,a promontory in northern Morocco opposite the Rock of Gibraltar; one of the Pillars of Hercules
+8605,Jeddah Jed'dah Jiddah Jidda,port city in western Saudi Arabia on the Red Sea; near Mecca
+8606,Jeffers Robinson_Jeffers John_Robinson_Jeffers,United States poet who wrote about California (1887-1962)
+8607,Jefferson Thomas_Jefferson President_Jefferson,3rd President of the United States; chief drafter of the Declaration of Independence; made the Louisiana Purchase in 1803 and sent out the Lewis and Clark Expedition to explore it (1743-1826)
+8608,Jefferson_City capital_of_Missouri,capital of the state of Missouri; located in central Missouri on the Missouri river
+8609,Jefferson_Davis'_Birthday Davis'_Birthday June_3,celebrated in southern United States
+8610,Jeffersonian,a follower of Thomas Jefferson or his ideas and principles
+8611,Jeffrey_pine Jeffrey's_pine black_pine Pinus_jeffreyi,tall symmetrical pine of western North America having long blue-green needles in bunches of 3 and elongated cones on spreading somewhat pendulous branches; sometimes classified as a variety of ponderosa pine
+8612,Jehovah's_Witness,believer in imminent approach of the millennium; practitioner of active evangelism
+8613,Jehovah's_Witnesses,Protestant denomination founded in the United States by Charles Taze Russell in 1884
+8614,Jekyll_and_Hyde,someone with two personalities - one good and one evil
+8615,Jemaah_Islamiyah JI Islamic_Group Islamic_Community Malaysian_Mujahidin_Group Malaysia_Militant_Group,a clandestine group of southeast Asian terrorists organized in 1993 and trained by al-Qaeda; supports militant Muslims in Indonesia and the Philippines and has cells in Singapore and Malaysia and Indonesia
+8616,Jena Battle_of_Jena,the battle in 1806 in which Napoleon decisively defeated the Prussians
+8617,Jenner Edward_Jenner,English physician who pioneered vaccination; Jenner inoculated people with small amounts of cowpox to prevent them from getting smallpox (1749-1823)
+8618,Jenny William_Le_Baron_Jenny,United States architect who designed the first skyscraper in which a metal skeleton was used (1832-1907)
+8619,Jensen Johannes_Vilhelm_Jensen,modernistic Danish writer (1873-1950)
+8620,Jeremiah,(Old Testament) an Israelite prophet who is remembered for his angry lamentations (jeremiads) about the wickedness of his people (circa 626-587 BC)
+8621,Jeremiah Book_of_Jeremiah,a book in the Old Testament containing the oracles of the prophet Jeremiah
+8622,Jerez Jerez_de_la_Frontera,a city in southwestern Spain that is famous for making sherry
+8623,Jericho,a village in Palestine near the north end of the Dead Sea; in the Old Testament it was the first place taken by the Israelites under Joshua as they entered the Promised Land
+8624,Jeroboam Jeroboam_I,(Old Testament) first king of the northern kingdom of Israel who led Israel into sin (10th century BC)
+8625,Jerome Saint_Jerome St._Jerome Hieronymus Eusebius_Hieronymus Eusebius_Sophronius_Hieronymus,(Roman Catholic Church) one of the great Fathers of the early Christian Church whose major work was his translation of the Scriptures from Hebrew and Greek into Latin (which became the Vulgate); a saint and Doctor of the Church (347-420)
+8626,Jersey,a breed of diary cattle developed on the island of Jersey
+8627,Jersey island_of_Jersey,the largest of the Channel Islands
+8628,Jersey_City,a city in northeastern New Jersey (opposite Manhattan)
+8629,Jersey_elm guernsey_elm wheately_elm Ulmus_sarniensis Ulmus_campestris_sarniensis Ulmus_campestris_wheatleyi,a variety of the English elm with erect branches and broader leaves
+8630,Jersey_knapweed,a variety of knapweed
+8631,Jerusalem capital_of_Israel,capital and largest city of the modern state of Israel (although its status as capital is disputed); it was captured from Jordan in 1967 in the Six Day War; a holy city for Jews and Christians and Muslims; was the capital of an ancient kingdom
+8632,Jerusalem_Warriors,ethnic Turkish Sunni terrorists who are linked with the Turkish Hizballah; killed a United States Air Force sergeant in 1991
+8633,Jerusalem_artichoke,edible tuber of the Jerusalem artichoke
+8634,Jerusalem_artichoke girasol Jerusalem_artichoke_sunflower Helianthus_tuberosus,tall perennial with hairy stems and leaves; widely cultivated for its large irregular edible tubers
+8635,Jerusalem_artichoke sunchoke,sunflower tuber eaten raw or boiled or sliced thin and fried as Saratoga chips
+8636,Jerusalem_cherry winter_cherry Madeira_winter_cherry Solanum_pseudocapsicum,small South American shrub cultivated as a houseplant for its abundant ornamental but poisonous red or yellow cherry-sized fruit
+8637,Jerusalem_cross,a cross with equal arms, each terminating in a small crossbar
+8638,Jerusalem_oak feather_geranium Mexican_tea Chenopodium_botrys Atriplex_mexicana,Eurasian aromatic oak-leaved goosefoot with many yellow-green flowers; naturalized North America
+8639,Jerusalem_sage Phlomis_fruticosa,a spreading subshrub of Mediterranean regions cultivated for dense axillary whorls of purple or yellow flowers
+8640,Jerusalem_thorn horsebean Parkinsonia_aculeata,large shrub or shrubby tree having sharp spines and pinnate leaves with small deciduous leaflets and sweet-scented racemose yellow-orange flowers; grown as ornamentals or hedging or emergency food for livestock; tropical America but naturalized in southern United States
+8641,Jespersen Otto_Jespersen Jens_Otto_Harry_Jespersen,Danish linguist (1860-1943)
+8642,Jesuit,a member of the Jesuit order
+8643,Jesuitism Jesuitry,the theology or the practices of the Jesuits (often considered to be casuistic)
+8644,Jesus Jesus_of_Nazareth the_Nazarene Jesus_Christ Christ Savior Saviour Good_Shepherd Redeemer Deliverer,a teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)
+8645,Jeth Jyaistha,the third month of the Hindu calendar
+8646,Jevons William_Stanley_Jevons,English economist and logician who contributed to the development of the theory of marginal utility (1835-1882)
+8647,Jew Hebrew Israelite,a person belonging to the worldwide group claiming descent from Jacob (or converted to it) and connected by cultural or religious ties
+8648,Jew's-ear Jew's-ears ear_fungus Auricularia_auricula,widely distributed edible fungus shaped like a human ear and growing on decaying wood
+8649,Jewbush Jew-bush Jew_bush redbird_cactus redbird_flower Pedilanthus_tithymaloides,low tropical American shrub having powerful emetic properties
+8650,Jewess,a woman who is a Jew
+8651,Jewish_calendar Hebrew_calendar,(Judaism) the calendar used by the Jews; dates from 3761 BC (the assumed date of the Creation of the world); a lunar year of 354 days is adjusted to the solar year by periodic leap years
+8652,Jewish_calendar_month,a month in the Jewish calendar
+8653,Jewish_holy_day,a religious holiday for Jews
+8654,Jewish_rye_bread Jewish_rye,(Judaism) bread made with rye flour; usually contains caraway seeds
+8655,Jewison Norman_Jewison,Canadian filmmaker (born in 1926)
+8656,Jewry,Jews collectively
+8657,Jezebel,wife of Ahab who was king of Israel; according to the Old Testament she was a cruel immoral queen who fostered the worship of Baal and tried to kill Elijah and other prophets of Israel (9th century BC)
+8658,Jihadist,a Muslim who is involved in a jihad
+8659,Jimenez Juan_Ramon_Jimenez,Spanish lyric poet (1881-1958)
+8660,Jimenez_de_Cisneros Francisco_Jimenez_de_Cisneros,prelate who was the confessor of Isabella I and who was later appointed Grand Inquisitor (1436-1517)
+8661,Jinghpo Jinghpaw Chingpo,a Kachinic language
+8662,Jinja,a city in Uganda on the north shore of Lake Victoria
+8663,Jinnah Muhammad_Ali_Jinnah,Indian statesman who was the founder of Pakistan as a Muslim state (1876-1948)
+8664,Jirga,a Pashto term for a decision making assembly of male elders; "most criminal cases are handled by a tribal Jirga rather than by laws or police"
+8665,Joachim Joseph_Joachim,Hungarian violinist and composer (1831-1907)
+8666,Joao_Pessoa,a city in northeastern Brazil near the Atlantic Ocean to the north of Recife
+8667,Job,a Jewish hero in the Old Testament who maintained his faith in God in spite of afflictions that tested him
+8668,Job,any long-suffering person who withstands affliction without despairing
+8669,Job Book_of_Job,a book in the Old Testament containing Job's pleas to God about his afflictions and God's reply
+8670,Job's_comforter,someone whose comfort is actually discouraging
+8671,Job's_tears,hard pearly seeds of an Asiatic grass; often used as beads
+8672,Jocasta,(Greek mythology) queen of Thebes who unknowingly married her own son Oedipus
+8673,Joe-Pye_weed purple_boneset trumpet_weed marsh_milkweed Eupatorium_purpureum,North American herb having whorled leaves and terminal clusters of flowers spotted with purple
+8674,Joe-Pye_weed spotted_Joe-Pye_weed Eupatorium_maculatum,North American herb having whorled leaves and terminal clusters of small pinkish or purple flower heads
+8675,Joel,a Hebrew minor prophet
+8676,Joel Book_of_Joel,an Old Testament book telling Joel's prophecies
+8677,Joffre Joseph_Jacques_Cesaire_Joffre,French field marshal who commanded the Allied armies in France during World War II (1852-1931)
+8678,Joffrey Robert_Joffrey,United States choreographer (1930-1988)
+8679,Johannesburg,city in the northeastern part of South Africa near Pretoria; commercial center for diamond and gold industries
+8680,John Gospel_According_to_John,the last of the four Gospels in the New Testament
+8681,John King_John John_Lackland,youngest son of Henry II; King of England from 1199 to 1216; succeeded to the throne on the death of his brother Richard I; lost his French possessions; in 1215 John was compelled by the barons to sign the Magna Carta (1167-1216)
+8682,John Saint_John St._John Saint_John_the_Apostle St._John_the_Apostle John_the_Evangelist John_the_Divine,(New Testament) disciple of Jesus; traditionally said to be the author of the 4th Gospel and three epistles and the book of Revelation
+8683,John_Chrysostom St._John_Chrysostom,(Roman Catholic Church) a Church Father who was a great preacher and bishop of Constantinople; a saint and Doctor of the Church (347-407)
+8684,John_Doe,an unknown or fictitious man who is a party to legal proceedings
+8685,John_Doe Joe_Blow Joe_Bloggs man_in_the_street,a hypothetical average man
+8686,John_Dory Zeus_faber,European dory
+8687,John_Henry,hero of American folk tales; portrayed as an enormously strong black man who worked on the railroads and died from exhaustion after winning a contest with a steam drill
+8688,John_Paul_I Albino_Luciano,the first Pope to assume a double name; he reigned for only 34 days (1912-1978)
+8689,John_Paul_II Karol_Wojtyla,the first Pope born in Poland; the first Pope not born in Italy in 450 years (1920-2005)
+8690,John_XXIII Angelo_Guiseppe_Roncalli,Italian pope from 1958 to 1963 who convoked the Second Vatican Council (1881-1963)
+8691,John_of_Gaunt Duke_of_Lancaster,the fourth son of Edward III who was the effective ruler of England during the close of his father's reign and during the minority of Richard II; his son was Henry Bolingbroke (1340-1399)
+8692,John_the_Baptist St._John_the_Baptist,(New Testament) a preacher and hermit and forerunner of Jesus (whom he baptized); was beheaded by Herod at the request of Salome
+8693,Johns Jasper_Johns,United States artist and proponent of pop art (born in 1930)
+8694,Johns_Hopkins,a university in Baltimore
+8695,Johnson Andrew_Johnson President_Johnson President_Andrew_Johnson,17th President of the United States; was elected vice president and succeeded Lincoln when Lincoln was assassinated; was impeached but acquitted by one vote (1808-1875)
+8696,Johnson Lyndon_Johnson Lyndon_Baines_Johnson LBJ President_Johnson President_Lyndon_Johnson,36th President of the United States; was elected vice president and succeeded Kennedy when Kennedy was assassinated (1908-1973)
+8697,Johnson Samuel_Johnson Dr._Johnson,English writer and lexicographer (1709-1784)
+8698,Johnson_City,a town in northeastern Tennessee
+8699,Johnson_grass Aleppo_grass means_grass evergreen_millet Sorghum_halepense,tall perennial grass that spreads by creeping rhizomes and is grown for fodder; naturalized in southern United States where it is a serious pest on cultivated land
+8700,Johnston J._E._Johnston Joseph_Eggleston_Johnston,Confederate general in the American Civil War; led the Confederate troops in the West (1807-1891)
+8701,Johor Johore,sultanate and one of the 13 states that constitute the Federation of Malaysia
+8702,Joint_Chiefs_of_Staff Joint_Chiefs,the executive agency that advises the President on military questions; composed of the chiefs of the United States Army and the United States Navy and the United States Air Force and the commandant of the United States Marine Corps
+8703,Joint_Direct_Attack_Munition JDAM,a pinpoint bomb guidance device that can be strapped to a gravity bomb thus converting dumb bombs into smart bombs
+8704,Joliot Jean-Frederic_Joliot Joliot-Curie Jean-Frederic_Joliot-Curie,French nuclear physicist who was Marie Curie's assistant and who worked with Marie Curie's daughter who he married (taking the name Joliot-Curie); he and his wife discovered how to synthesize new radioactive elements (1900-1958)
+8705,Joliot-Curie Irene_Joliot-Curie,French physicist who (with her husband) synthesized new chemical elements (1897-1956)
+8706,Jolliet Louis_Jolliet Joliet Louis_Joliet,French explorer (with Jacques Marquette) of the upper Mississippi River valley (1645-1700)
+8707,Jolson Al_Jolson Asa_Yoelson,United States singer (born in Russia) who appeared in the first full-length talking film (1886-1950)
+8708,Jonah,(Old Testament) Jonah did not wish to become a prophet so God caused a great storm to throw him overboard from a ship; he was saved by being swallowed by a whale that vomited him out onto dry land
+8709,Jonah Book_of_Jonah,a book in the Old Testament that tells the story of Jonah and the whale
+8710,Jonah_crab Cancer_borealis,large red deep-water crab of the eastern coast of North America
+8711,Jonathan,red late-ripening apple; primarily eaten raw
+8712,Jones Bobby_Jones Robert_Tyre_Jones,United States golfer (1902-1971)
+8713,Jones Casey_Jones John_Luther_Jones,United States railroad engineer who died trying to stop his train from crashing into another train; a friend wrote a famous ballad describing the incident (1864-1900)
+8714,Jones Daniel_Jones,English phonetician (1881-1967)
+8715,Jones Inigo_Jones,one of the first great English architects and a theater designer (1573-1652)
+8716,Jones John_Paul_Jones,American naval commander in the American Revolution (1747-1792)
+8717,Jones Mother_Jones Mary_Harris_Jones,United States labor leader (born in Ireland) who helped to found the Industrial Workers of the World (1830-1930)
+8718,Jones'_penstemon Penstemon_dolius,low plant with light blue and violet flowers in short clusters near tips of stems; Nevada to Utah
+8719,Jonesboro,a town in northeast Arkansas
+8720,Jong Erica_Jong,United States writer (born in 1942)
+8721,Jonson Ben_Jonson Benjamin_Jonson,English dramatist and poet who was the first real poet laureate of England (1572-1637)
+8722,Joplin Janis_Joplin,United States singer who died of a drug overdose at the height of her popularity (1943-1970)
+8723,Joplin Scott_Joplin,United States composer who was the first creator of ragtime to write down his compositions (1868-1917)
+8724,Jordan Hashemite_Kingdom_of_Jordan,an Arab kingdom in southwestern Asia on the Red Sea
+8725,Jordan Jordan_River,a river in Palestine that empties into the Dead Sea; John the Baptist baptized Jesus in the Jordan
+8726,Jordan_almond,an almond covered with a sugar coating that is hard and flavored and colored
+8727,Jordanella genus_Jordanella,flagfishes
+8728,Jordanian,a native or inhabitant of Jordan
+8729,Jordanian_dinar dinar,the basic unit of money in Jordan; equal to 1,000 fils
+8730,Jordanian_monetary_unit,monetary unit in Jordan
+8731,Joseph,(Old Testament) the 11th son of Jacob and one of the 12 patriarchs of Israel; Jacob gave Joseph a coat of many colors, which made his brothers jealous and they sold him into slavery in Egypt
+8732,Joseph,(New Testament) husband of Mary and (in Christian belief) the foster father of Jesus
+8733,Joseph Chief_Joseph,leader of the Nez Perce in their retreat from United States troops (1840-1904)
+8734,Josephus Flavius_Josephus Joseph_ben_Matthias,Jewish general who led the revolt of the Jews against the Romans and then wrote a history of those events (37-100)
+8735,Joshua,(Old Testament) Moses' successor who led the Israelites into the Promised Land; best remembered for his destruction of Jericho
+8736,Joshua Josue Book_of_Joshua,a book in the Old Testament describing how Joshua led the Israelites into Canaan (the Promised Land) after the death of Moses
+8737,Joshua_tree Yucca_brevifolia,a large branched arborescent yucca of southwestern United States having short leaves and clustered greenish white flowers
+8738,Jotun Jotunn,(Norse mythology) one of a group of giants often in conflict with the Aesir
+8739,Joule James_Prescott_Joule,English physicist who established the mechanical theory of heat and discovered the first law of thermodynamics (1818-1889)
+8740,Jovian_planet gas_giant,any of the four outermost planets in the solar system; much larger than Earth and gaseous in nature (like Jupiter)
+8741,Jowett Benjamin_Jowett,English classical scholar noted for his translations of Plato and Aristotle (1817-1893)
+8742,Joyce James_Joyce James_Augustine_Aloysius_Joyce,influential Irish writer noted for his many innovations (such as stream of consciousness writing) (1882-1941)
+8743,Juan_Carlos Juan_Carlos_Victor_Maria_de_Borbon_y_Borbon,king of Spain since 1975 (born in 1938)
+8744,Judah,(Old Testament) the fourth son of Jacob who was forebear of one of the tribes of Israel; one of his descendants was to be the Messiah
+8745,Judah Juda,an ancient kingdom of southern Palestine with Jerusalem as its center
+8746,Judaica,materials relating to Judaism
+8747,Judaism,the monotheistic religion of the Jews having its spiritual and ethical principles embodied chiefly in the Torah and in the Talmud
+8748,Judaism Hebraism Jewish_religion,Jews collectively who practice a religion based on the Torah and the Talmud
+8749,Judas,someone who betrays under the guise of friendship
+8750,Judas Judas_Iscariot,(New Testament) the Apostle who betrayed Jesus to his enemies for 30 pieces of silver
+8751,Judas_Maccabaeus,Jewish leader of a revolt in Judea that recovered Jerusalem around 166 BC; hero of the Apocryphal books I Maccabees and II Maccabees (?-161 BC)
+8752,Judas_tree love_tree Circis_siliquastrum,small tree of the eastern Mediterranean having abundant purplish-red flowers growing on old wood directly from stems and appearing before the leaves: widely cultivated in mild regions; wood valuable for veneers
+8753,Jude Saint_Jude St._Jude Judas Thaddaeus,(New Testament) supposed brother of St. James; one of the Apostles who is invoked in prayer when a situation seems hopeless
+8754,Judea Judaea,the southern part of ancient Palestine succeeding the kingdom of Judah; a Roman province at the time of Christ
+8755,Judeo-Spanish Ladino,the Spanish dialect spoken by Sephardic Jews but written in the Hebrew script
+8756,Judges Book_of_Judges,a book of the Old Testament that tells the history of Israel under the leaders known as judges
+8757,Judgment_Day Judgement_Day Day_of_Judgment Day_of_Judgement Doomsday Last_Judgment Last_Judgement Last_Day eschaton day_of_reckoning doomsday crack_of_doom end_of_the_world,(New Testament) day at the end of time following Armageddon when God will decree the fates of all individual humans according to the good and evil of their earthly lives
+8758,Judith,Jewish heroine in one of the books of the Apocrypha; she saved her people by decapitating the Assyrian general Holofernes
+8759,Judith Book_of_Judith,an Apocryphal book telling how Judith saved her people
+8760,Juggernaut,a crude idol of Krishna
+8761,Juglandaceae family_Juglandaceae walnut_family,trees having usually edible nuts: butternuts; walnuts; hickories; pecans
+8762,Juglandales order_Juglandales,coextensive with the family Juglandaceae
+8763,Juglans genus_Juglans,type genus of the Juglandaceae
+8764,Julian Julian_the_Apostate Flavius_Claudius_Julianus,Roman Emperor and nephew of Constantine; he restored paganism as the official religion of the Roman Empire and destroyed Christian temples but his decision was reversed after his death (331?-363)
+8765,Julian_calendar Old_Style_calendar,the solar calendar introduced in Rome in 46 b.c. by Julius Caesar and slightly modified by Augustus, establishing the 12-month year of 365 days with each 4th year having 366 days and the months having 31 or 30 days except for February
+8766,July,the month following June and preceding August
+8767,Jumada_I Jomada_I,the fifth month of the Islamic calendar
+8768,Jumada_II Jomada_II,the sixth month of the Islamic calendar
+8769,Juncaceae family_Juncaceae rush_family,tufted herbs resembling grasses: rushes
+8770,Juncus genus_Juncus,type genus of the Juncaceae; perennial tufted glabrous marsh plants of temperate regions: rushes
+8771,Jund-ul-Islam Soldiers_of_God,an Islamic extremist group of Kurds who oppose secular control with bombings and assassinations; believed to have ties with al-Qaeda
+8772,June,the month following May and preceding July
+8773,June_beetle June_bug May_bug May_beetle,any of various large usually brown North American leaf-eating beetles common in late spring; the larvae feed on roots of grasses etc.
+8774,Juneau capital_of_Alaska,the state capital of Alaska
+8775,Juneberry serviceberry service_tree shadbush shadblow,any of various North American trees or shrubs having showy white flowers and edible blue-black or purplish fruit
+8776,Jung Carl_Jung Carl_Gustav_Jung,Swiss psychologist (1875-1961)
+8777,Jungermanniaceae family_Jungermanniaceae,comprising the leafy members of the order Jungermanniales
+8778,Jungermanniales order_Jungermanniales,large order of chiefly tropical liverworts
+8779,Jungian,a follower or advocate of Carl Jung's theories
+8780,Jungian_psychology,the psychological theories of Carl Jung
+8781,Junin_virus,the RNA virus that causes Argentine hemorrhagic fever; carried by rats and mice
+8782,Junior Jr Jnr,a son who has the same first name as his father
+8783,Juniperus genus_Juniperus,junipers
+8784,Junker,member of the Prussian aristocracy noted especially for militarism
+8785,Junkers Hugo_Junkers,German aircraft engineer who designed the first all-metal airplane (1859-1935)
+8786,Juno,(Roman mythology) queen of the Olympian gods who protected marriage; wife and sister of Jupiter; counterpart of Greek Hera
+8787,Jupiter,the largest planet and the 5th from the sun; has many satellites and is one of the brightest objects in the night sky
+8788,Jupiter Jove,(Roman mythology) supreme god of Romans; counterpart of Greek Zeus
+8789,Jupiter's_beard silverbush silver-bush Anthyllis_barba-jovis,silvery hairy European shrub with evergreen foliage and pale yellow flowers
+8790,Jupiter_Fidius Protector_of_Boundaries,an epithet for Jupiter
+8791,Jupiter_Fulgur Jupiter_Fulminator Lightning_Hurler,an epithet for Jupiter
+8792,Jupiter_Optimus_Maximus Best_and_Greatest,an epithet for Jupiter
+8793,Jupiter_Pluvius Rain-giver,an epithet for Jupiter
+8794,Jupiter_Tonans Thunderer,an epithet for Jupiter
+8795,Jurassic Jurassic_period,from 190 million to 135 million years ago; dinosaurs; conifers
+8796,Jussieu Antoine_Laurent_de_Jussieu,French botanist who categorized plants into families and developed a system of plant classification (1748-1836)
+8797,Justinian Justinian_I Justinian_the_Great,Byzantine emperor who held the eastern frontier of his empire against the Persians; codified Roman law in 529; his general Belisarius regained North Africa and Spain (483-565)
+8798,Jute,a member of a Germanic people who conquered England and merged with the Angles and Saxons to become Anglo-Saxons
+8799,Jutland Jylland,peninsula in northern Europe that forms the continental part of Denmark and a northern part of Germany
+8800,Jutland battle_of_Jutland,an indecisive naval battle in World War I (1916); fought between the British and German fleets off the northwestern coast of Denmark
+8801,Juvenal Decimus_Junius_Juvenalis,Roman satirist who denounced the vice and folly of Roman society during the reign of the emperor Domitian (60-140)
+8802,Jynx genus_Jynx,wrynecks
+8803,K jet super_acid special_K honey_oil green cat_valium super_C,street names for ketamine
+8804,K k,the 11th letter of the Roman alphabet
+8805,K2 Godwin_Austen Mount_Godwin_Austen Dapsang,a mountain peak in the Karakoram Range in northern Kashmir; the 2nd highest peak in the world (28,250 feet high)
+8806,K_ration,a small package of emergency rations; issued to United States troops in World War II
+8807,Ka,unknown god; an epithet of Prajapati and Brahma
+8808,Kaaba Caaba,(Islam) a black stone building in Mecca that is shaped like a cube and that is the most sacred Muslim pilgrim shrine; believed to have been given by Gabriel to Abraham; Muslims turn in its direction when praying
+8809,Kabbalah Kabbala Kabala Cabbalah Cabbala Cabala Qabbalah Qabbala,an esoteric theosophy of rabbinical origin based on the Hebrew scriptures and developed between the 7th and 18th centuries
+8810,Kabbalism Cabalism,the doctrines of the Kabbalah
+8811,Kabul capital_of_Afghanistan,the capital and largest city of Afghanistan; located in eastern Afghanistan
+8812,Kachaturian Aram_Kachaturian,Armenian composer who incorporated oriental folk music (1903-1978)
+8813,Kachin Kachinic,Tibeto-Burman languages spoken in northernmost Burma and adjacent China and India
+8814,Kadai Kam-Tai Kadai_language,a family of Sino-Tibetan languages spoken in southeastern Asia
+8815,Kafir,a member of the Kafir people in northeastern Afghanistan
+8816,Kafiri,a Dardic language spoken by the Kafir in northeastern Afghanistan
+8817,Kafka Franz_Kafka,Czech novelist who wrote in German about a nightmarish world of isolated and troubled individuals (1883-1924)
+8818,Kahane_Chai Kach,a terrorist organization founded for Jewish defense; fights antisemitism and hopes to restore the biblical state of Israel
+8819,Kahlua,coffee-flavored liqueur made in Mexico
+8820,Kahn Louis_Isadore_Kahn,United States architect (born in Estonia) (1901-1974)
+8821,Kahoolawe Kahoolawe_Island,an island of south-central Hawaii
+8822,Kaiser,the title of the Holy Roman Emperors or the emperors of Austria or of Germany until 1918
+8823,Kakatoe genus_Kakatoe Cacatua genus_Cacatua,a genus of Psittacidae
+8824,Kakemono,a Japanese (paper or silk) wall hanging; usually narrow with a picture or writing on it and a roller at the bottom
+8825,Kalahari Kalahari_Desert,a desert in southwestern Africa - largely Botswana
+8826,Kalamazoo,a town in southwest Michigan
+8827,Kalapooia Kalapuya Calapooya Calapuya,a member of the North American Indian people of Oregon
+8828,Kalapooian Kalapuyan,a Penutian language spoken by the Kalapuya
+8829,Kalashnikov,a type of submachine gun made in Russia
+8830,Kalashnikov_culture,the attitudes and behavior in a social group that resolves political disputes by force of arms; "the Kalashnikov culture in Afghanistan"
+8831,Kali,wife of Siva and malevolent form of Devi; "the black"
+8832,Kalinin Mikhail_Kalinin Mikhail_Ivanovich_Kalinin,soviet statesman and head of state of the USSR (1875-1946)
+8833,Kalki,the 10th and last incarnation of Vishnu
+8834,Kallman's_syndrome,hypogonadism with anosmia; a congenital sexual disorder that prevents the testicles from maturing at puberty
+8835,Kalon_Tripa,the chairman of the Kashag and essentially head of the Tibetan government-in-exile
+8836,Kalotermes genus_Kalotermes,type genus of Kalotermitidae; termites destructive of wood and living trees
+8837,Kalotermitidae family_Kalotermitidae,primitive termites of warm regions
+8838,Kaluga,a city of central Russia to the south of Moscow
+8839,Kam-Sui,a group of Kadai languages
+8840,Kama,Hindu god of love and erotic desire; opposite of Mara
+8841,Kamarupan,the Tibeto-Burman language spoken in northeastern India and adjacent regions of western Burma
+8842,Kamasutra,(Hinduism) an ancient Sanskrit text giving rules for sensuous and sensual pleasure and love and marriage in accordance with Hindu law
+8843,Kamba,a Bantu language spoken by the Kamba in Kenya
+8844,Kamchatka_Peninsula,a peninsula in eastern Siberia; between Bering Sea and Sea of Okhotsk
+8845,Kamchatkan_sea_eagle Stellar's_sea_eagle Haliaeetus_pelagicus,found on coasts of the northwestern Pacific
+8846,Kamehameha_I Kamehameha_the_Great,Hawaiian king who united the islands under his rule (1758-1819)
+8847,Kamet,a mountain in the Himalayas in northern India (25,450 feet high)
+8848,Kami,one the Shinto deities (including mythological beings, spirits of distinguished men, forces of nature)
+8849,Kamia,a member of a North American Indian people of southeastern California and northwestern Mexico
+8850,Kamia,the Yuman language spoken by the Kamia
+8851,Kammon_Strait_Bridge,a suspension bridge between Kyushu and Honshu
+8852,Kampala capital_of_Uganda,the capital and largest city of Uganda on the north shore of Lake Victoria
+8853,Kananga Luluabourg,a city in southwestern Congo; former name (until 1966) was Luluabourg
+8854,Kanara Canara,a historical region of southwestern India on the west coast
+8855,Kanarese Canarese,a member of a Kannada-speaking group of people living chiefly in Kanara in southern India
+8856,Kanawha Kanawha_River,a tributary of the Ohio River in West Virginia
+8857,Kanchenjunga Mount_Kanchenjunga Kanchanjanga Kinchinjunga,a mountain the Himalayas on the border between Nepal and Tibet (28,208 feet high)
+8858,Kandahar Qandahar,a city in southern Afghanistan; an important trading center
+8859,Kandinsky Wassily_Kandinsky Kandinski Wassily_Kandinski,Russian painter who was a pioneer of abstract art (1866-1944)
+8860,Kandy,a city of central Sri Lanka that was the last capital of the ancient kings of Ceylon; a resort and religious center
+8861,Kannada Kanarese,a Dravidian language spoken in southern India
+8862,Kansa Kansas,a member of the Siouan people of the Kansas river valley in Kansas
+8863,Kansa Kansas,the Dhegiha dialect spoken by the Kansa
+8864,Kansan,a native or resident of Kansas
+8865,Kansas Kansas_River Kaw_River,a river in northeastern Kansas; flows eastward to become a tributary of the Missouri River
+8866,Kansas Sunflower_State KS Kan.,a state in midwestern United States
+8867,Kansas_City,a city in western Missouri situated at the confluence of the Kansas River and the Missouri River; adjacent to Kansas City, Kansas
+8868,Kansas_City,a city of northeast Kansas on the Missouri River adjacent to Kansas City, Missouri
+8869,Kant Immanuel_Kant,influential German idealist philosopher (1724-1804)
+8870,Kaopectate,trade name for a fixed-combination antidiarrheal drug that use kaolin as the adsorbent and pectin as the emollient
+8871,Kaplan_Group Association_of_Islamic_Groups_and_Communities Caliphate_State,a Turkish terrorist group of fundamentalist Muslims with ties to al-Qaeda that operates in Germany; seeks the violent overthrow of the Turkish government and the establishment of an Islamic nation modeled on Iran
+8872,Kaposi's_sarcoma,a sarcoma that starts with purplish spots on the feet and legs and spreads from the skin to lymph nodes and internal organs; a common manifestation of AIDS; "until 1980 Kaposi's sarcoma occurred almost exclusively with Jewish or Italian or black men"
+8873,Kara_Kum Qara_Qum Turkestan_Desert,a desert in Turkmenistan to the south of the Aral Sea
+8874,Kara_Sea,part of the Arctic Ocean to the north of Siberia and to the east of the Barents Sea; icebound most of the year
+8875,Karachi,the largest city in Pakistan; located in southeastern Pakistan; an industrial center and seaport on the Arabian Sea; former capital of Pakistan
+8876,Karaites,a Jewish sect that recognizes only the Hebrew Scriptures as the source of divinely inspired legislation and denies the authority of the postbiblical tradition of the Talmud; the sect arose in Iraq in the eighth century
+8877,Karakalpak,a member of a Turkic people living near Lake Aral in central Asia
+8878,Karakalpak,the Turkic language spoken by the Karakalpak
+8879,Karakoram Karakoram_Range Karakorum_Range Mustagh Mustagh_Range,a mountain range in northern Kashmir; an extension of the Hindu Kush; contains the 2nd highest peak
+8880,Karelia,a region in Finland and Russia between the Gulf of Finland and the White Sea
+8881,Karelian Carelian,a member of the Finnish people living in Karelia in northwestern European Russia
+8882,Karelian Carelian,a Finnic language spoken by the people of Karelia
+8883,Karelian_Isthmus,the isthmus between the Gulf of Finland and Lake Ladoga that connects Finland and Russia
+8884,Karen Karenic,the Tibeto-Burman language spoken in the Thailand and Burmese borderlands
+8885,Karlfeldt Erik_Axel_Karlfeldt,Swedish poet whose works incorporate Swedish customs and folklore (1864-1931)
+8886,Karloff Boris_Karloff William_Henry_Pratt,United States film actor (born in England) noted for his performances in horror films (1887-1969)
+8887,Karnataka Mysore,state in southern India; formerly Mysore
+8888,Karok,a member of a North American Indian people of the Klamath river valley in northern California
+8889,Karok,the Quoratean language of the Karok
+8890,Karpov Anatoli_Karpov Anatoli_Yevgenevich_Karpov,Russian chess master who was world champion from 1975 until 1985 when he was defeated by Gary Kasparov (born in 1951)
+8891,Karsavina Tamara_Karsavina,Russian dancer who danced with Nijinsky (1885-1978)
+8892,Kartik Karttika,the eighth month of the Hindu calendar
+8893,Kartikeya Karttikeya,Hindu god of bravery
+8894,Kasai Kasai_River River_Kasai,a river of southwestern Africa that rises in central Angola and flows east and then north (forming part of the border between Angola and Congo) and continuing northwest through Congo to empty into the Congo River on the border between Congo and Republic of the Congo
+8895,Kashag,the advisory board of the Tibetan government-in-exile
+8896,Kashmir Cashmere Jammu_and_Kashmir,an area in southwestern Asia whose sovereignty is disputed between Pakistan and India
+8897,Kashmiri,a member of the people of Kashmir
+8898,Kashmiri,the official state language of Kashmir
+8899,Kasparov Gary_Kasparov Gary_Weinstein,Azerbaijani chess master who became world champion in 1985 by defeating Anatoli Karpov (born in 1963)
+8900,Kassite Cassite,a member of an ancient people who ruled Babylonia between 1600 and 1200 BC
+8901,Kassite Cassite,an ancient language spoken by the Kassites
+8902,Kastler Alfred_Kastler,French physicist (1902-1984)
+8903,Katharevusa,literary style of Modern Greek containing features borrowed from Koine
+8904,Kathmandu Katmandu capital_of_Nepal,the capital and largest city of Nepal
+8905,Katmai_National_Park,a national park in Alaska featuring mountains
+8906,Katowice,an industrial city of southern Poland
+8907,Katsina,a city in northern Nigeria; a major center of the Hausa people
+8908,Katsuwonidae family_Kasuwonidae,in some classifications considered a separate family comprising the oceanic bonitos
+8909,Katsuwonus genus_Katsuwonus,oceanic bonitos; in some classifications placed in its own family Katsuwonidae
+8910,Kattegatt,a strait of the North Sea between Jutland and Sweden; connects with the North Sea through the Skagerrak
+8911,Kauai Kauai_Island,an island of Hawaii to the northwest of Oahu
+8912,Kaufman George_S._Kaufman George_Simon_Kaufman,United States playwright who collaborated with many other writers including Moss Hart (1889-1961)
+8913,Kaunas Kovna Kovno,a city in central Lithuania
+8914,Kaunda Kenneth_Kaunda Kenneth_David_Kaunda,statesman who led Northern Rhodesia to full independence as Zambia in 1964 and served as Zambia's first president (1924-1999)
+8915,Kawasaki_disease mucocutaneous_lymph_node_syndrome,an acute disease of young children characterized by a rash and swollen lymph nodes and fever; of unknown cause
+8916,Kayser-Fleischer_ring,a pigmented ring at the outer edge of the cornea of the eye; a symptom of Wilson's disease
+8917,Kazak Kazakh,a Muslim who is a member of a Turkic people of western Asia (especially in Kazakstan)
+8918,Kazak Kazakh,the Turkic language spoken by the Kazak
+8919,Kazakhstan Republic_of_Kazakhstan Kazakstan Kazakh Kazak,a landlocked republic to the south of Russia and to the northeast of the Caspian Sea; the original Turkic-speaking inhabitants were overrun by Mongols in the 13th century; an Asian soviet from 1936 to 1991
+8920,Kazakhstani,a native or inhabitant of Kazakhstan
+8921,Kazakhstani_monetary_unit,monetary unit in Kazakhstan
+8922,Kazan,an industrial city in the European part of Russia
+8923,Kazan Elia_Kazan Elia_Kazanjoglous,United States stage and screen director (born in Turkey) and believer in method acting (1909-2003)
+8924,Kean Edmund_Kean,English actor noted for his portrayals of Shakespeare's great tragic characters (1789-1833)
+8925,Keaton Buster_Keaton Joseph_Francis_Keaton,United States comedian and actor in silent films noted for his acrobatic skills and deadpan face (1895-1966)
+8926,Keats John_Keats,Englishman and romantic poet (1795-1821)
+8927,Keble John_Keble,English clergyman who (with John Henry Newman and Edward Pusey) founded the Oxford movement (1792-1866)
+8928,Kedah,sultanate and one of the 13 states that constitute the Federation of Malaysia
+8929,Kegel_exercises pubococcygeus_exercises,exercises for women designed to improve the ability to hold urine
+8930,Kekchi,a member of a Mayan people of north central Guatemala
+8931,Kekchi,a Mayan language spoken by the Kekchi
+8932,Kekule Friedrich_August_Kekule Friedrich_August_Kekule_von_Stradonitz,German chemist remembered for his discovery of the ring structure of benzene (1829-1896)
+8933,Kelantan,sultanate and one of the 13 states that constitute the Federation of Malaysia
+8934,Keller Helen_Keller Helen_Adams_Keller,United States lecturer and writer who was blind and deaf from the age of 19 months; Anne Sullivan taught her to read and write and speak; Helen Keller graduated from college and went on to champion the cause of blind and deaf people (1880-1968)
+8935,Kellogg W._K._Kellogg Will_Keith_Kellog,United States food manufacturer who (with his brother) developed a breakfast cereal of crisp flakes of rolled and toasted wheat and corn; he established a company to manufacture the cereal (1860-1951)
+8936,Kelly Emmett_Kelly Weary_Willie,United States circus clown (1898-1979)
+8937,Kelly Gene_Kelly Eugene_Curran_Kelly,United States dancer who performed in many musical films (1912-1996)
+8938,Kelly Grace_Kelly Grace_Patricia_Kelly Princess_Grace_of_Monaco,United States film actress who retired when she married into the royal family of Monaco (1928-1982)
+8939,Kelvin First_Baron_Kelvin William_Thompson,British physicist who invented the Kelvin scale of temperature and pioneered undersea telegraphy (1824-1907)
+8940,Kelvin_scale absolute_scale,a temperature scale that defines absolute zero as 0 degrees; water freezes at 273.16 degrees and boils at 373.16 degrees
+8941,Kenai_Fjords_National_Park,a national park in Alaska having mountains and whale watching and ancient Indian copper mines
+8942,Kendal_green Kendal,a green dye, often used to color cloth, which is obtained from the woad plant
+8943,Kendall Edward_Kendall Edward_Calvin_Kendall,United States biochemist who discovered cortisone (1886-1972)
+8944,Kendall_partial_rank_correlation,a nonparametric measure of partial correlation
+8945,Kendall_test,any of several nonparametric measures of correlation (used when the assumptions of standard correlational analysis are not met)
+8946,Kendrew Sir_John_Cowdery_Kendrew,English biologist noted for studies of the molecular structure of blood components (born in 1917)
+8947,Kennan George_F._Kennan George_Frost_Kennan,United States diplomat who recommended a policy of containment in dealing with Soviet aggression (1904-2005)
+8948,Kennedia genus_Kennedia Kennedya genus_Kennedya,genus of Australian woody vines having showy red or purplish flowers
+8949,Kennedy Jack_Kennedy John_Fitzgerald_Kennedy JFK President_Kennedy President_John_F._Kennedy,35th President of the United States; established the Peace Corps; assassinated in Dallas (1917-1963)
+8950,Kennedy Kennedy_International Kennedy_International_Airport,a large airport on Long Island to the east of New York City
+8951,Kennelly A._E._Kennelly Arthur_Edwin_Kennelly,United States electrical engineer noted for his work on the theory of alternating currents; independently of Oliver Heaviside he discovered the existence of an atmospheric layer that reflects radio waves back to earth (1861-1939)
+8952,Kennesaw_Mountain,battle of the American Civil War (1864); Union forces under William Tecumseh Sherman were repulsed by Confederate troops under Joseph Eggleston Johnston
+8953,Kennewick,a town in southern Washington on the Columbia River
+8954,Kent,a county in southeastern England on the English Channel; formerly an Anglo-Saxon kingdom, it was the first to be colonized by the Romans
+8955,Kent Rockwell_Kent,United States painter noted for his woodcuts (1882-1971)
+8956,Kentish,a dialect of Middle English
+8957,Kentish Jutish,one of the major dialects of Old English
+8958,Kentuckian Bluegrass_Stater,a native or resident of Kentucky
+8959,Kentucky Bluegrass_State KY Ken.,a state in east central United States; a border state during the American Civil War; famous for breeding race horses
+8960,Kentucky_Derby,an annual race for three-year-old horses; held at Churchill Downs in Louisville, Kentucky
+8961,Kentucky_black_bass spotted_black_bass Micropterus_pseudoplites,a variety of black bass
+8962,Kentucky_bluegrass Kentucky_blue Kentucy_blue_grass June_grass Poa_pratensis,valuable meadow and pasture grass in Europe and especially central United States having tall stalks and slender bright green leaves; a chief constituent in lawn grass mixtures
+8963,Kentucky_coffee_tree bonduc chicot Gymnocladus_dioica,handsome tree of central and eastern North America having large bipinnate leaves and green-white flowers followed by large woody brown pods whose seeds are used as a coffee substitute
+8964,Kentucky_wonder Kentucky_wonder_bean,flat-podded green bean
+8965,Kentucky_yellowwood gopherwood Cladrastis_lutea Cladrastis_kentukea,small handsome roundheaded deciduous tree having showy white flowers in terminal clusters and heavy hardwood yielding yellow dye
+8966,Kenya Republic_of_Kenya,a republic in eastern Africa; achieved independence from the United Kingdom in 1963; major archeological discoveries have been made in the Great Rift Valley in Kenya
+8967,Kenyan,a native or inhabitant of Kenya
+8968,Kenyan_monetary_unit,monetary unit in Kenya
+8969,Kenyan_shilling shilling,the basic unit of money in Kenya; equal to 100 cents
+8970,Kenyapithecus genus_Kenyapithecus,extinct primate having powerful chewing muscles along with large molars and small incisors; fossils found in Kenya
+8971,Kenyata Jomo_Kenyata,Kenyan statesman and the first president of independent Kenya (1893-1978)
+8972,Keogh_plan,a tax-deferred pension plan for employees of unincorporated businesses or for self-employed persons
+8973,Keokuk,Sauk leader who aided the United States against Black Hawk (1790-1848)
+8974,Kepler Johannes_Kepler Johan_Kepler,German astronomer who first stated laws of planetary motion (1571-1630)
+8975,Kepler's_first_law,a law stating that the orbit of each planet is an ellipse with the sun at one focus of the ellipse
+8976,Kepler's_law Kepler's_law_of_planetary_motion,(astronomy) one of three empirical laws of planetary motion stated by Johannes Kepler
+8977,Kepler's_second_law law_of_areas law_of_equal_areas,a law concerning the speed at which planets travel; a line connecting a planet to the sun will sweep out equal areas in equal times; "Kepler's second law means that a planet's orbital speed changes with its distance from the sun"
+8978,Kepler's_third_law harmonic_law,a law stating that the ratio of the square of the revolutionary period (in years) to the cube of the orbital axis (in astronomical units) is the same for all planets
+8979,Kera,a Chadic language spoken in Chad
+8980,Kerbala Karbala Kerbela,a city of central Iraq to the south of Baghdad; a holy city for Shiite Muslims because it is the site of the tomb of Mohammed's grandson who was killed there in 680
+8981,Kerensky Aleksandr_Feodorovich_Kerensky,Russian revolutionary who was head of state after Nicholas II abdicated but was overthrown by the Bolsheviks (1881-1970)
+8982,Kern Jerome_Kern Jerome_David_Kern,United States composer of musical comedies (1885-1945)
+8983,Kernig's_sign,symptom of meningitis; patient cannot extend the leg at the knee when the thigh is flexed because of stiffness in the hamstrings
+8984,Kerouac Jack_Kerouac Jean-Louis_Lebris_de_Kerouac,United States writer who was a leading figure of the beat generation (1922-1969)
+8985,Kerr_cell,optical device consisting of a transparent cell with two electrodes between two polarizing media; passes light only if the two planes of polarization are parallel; used as a high-speed shutter or to modulate a laser beam
+8986,Kerry_blue_terrier,an Irish breed of medium-sized terriers with a silky blue-grey coat
+8987,Kesey Ken_Kesey Ken_Elton_Kesey,United States writer whose best-known novel was based on his experiences as an attendant in a mental hospital (1935-2001)
+8988,Kettering Charles_Kettering Charles_Franklin_Kettering,United States electrical engineer who made numerous automotive improvements (including the electric starter) (1876-1958)
+8989,Keuka_Lake Lake_Keuka,a glacial lake in central New York; one of the Finger Lakes
+8990,Key Francis_Scott_Key,United States lawyer and poet who wrote a poem after witnessing the British attack on Baltimore during the War of 1812; the poem was later set to music and entitled `The Star-Spangled Banner' (1779-1843)
+8991,Key_West,a town on the westernmost of the Florida keys in the Gulf of Mexico
+8992,Keynes John_Maynard_Keynes,English economist who advocated the use of government monetary and fiscal policy to maintain full employment without inflation (1883-1946)
+8993,Keynesian,a follower of the economic theories of John Maynard Keynes
+8994,Keynesianism,the economic theories of John Maynard Keynes who advocated government monetary and fiscal programs intended to stimulate business activity and increase employment
+8995,Khabarovsk,a city on the Amur River on the border of China and the capital of Khabarovsk
+8996,Khabarovsk,an administrative territory in Russia on the eastern coast of Siberia
+8997,Khachaturian Aram_Khachaturian Aram_Ilich_Khachaturian,Russian composer (born in Armenia) whose works are romantic and reflect his interest in folk music (1903-1978)
+8998,Khalkha Khalka Kalka,the Mongol people living in the central and eastern parts of Outer Mongolia
+8999,Khalkha Khalka Kalka,the language of the Khalkha that is the official language of the Mongolian People's Republic
+9000,Khalsa,the group of initiated Sikhs to which devout orthodox Sikhs are ritually admitted at puberty; founded by the tenth and last Guru in 1699
+9001,Khama Sir_Seretse_Khama,Botswanan statesman who was the first president of Botswana (1921-1980)
+9002,Khamti,a branch of the Tai languages
+9003,Khanty Ostyak,a Ugric language (related to Hungarian) spoken by the Ostyak
+9004,Kharkov Kharkiv,a city in northeastern Ukraine; former capital of the Ukraine
+9005,Khartoum capital_of_Sudan,the capital of Sudan located at the confluence of the Blue Nile and White Nile
+9006,Khaya genus_Khaya,African mahogany trees
+9007,Khedive,one of the Turkish viceroys who ruled Egypt between 1867 and 1914
+9008,Khepera,Egyptian god of the morning sun; creator
+9009,Khmer,a native or inhabitant of Cambodia
+9010,Khmer,the Mon-Khmer language spoken in Cambodia
+9011,Khmer_Rouge KR Party_of_Democratic_Kampuchea Communist_Party_of_Kampuchea,a communist organization formed in Cambodia in 1970; became a terrorist organization in 1975 when it captured Phnom Penh and created a government that killed an estimated three million people; was defeated by Vietnamese troops but remained active until 1999
+9012,Khoikhoin Khoikhoi Hottentot,any of the Khoisan languages spoken by the pastoral people of Namibia and South Africa
+9013,Khoisan Khoisan_language,a family of languages spoken in southern Africa
+9014,Khomeini Ruholla_Khomeini Ayatollah_Khomeini Ayatollah_Ruholla_Khomeini,Iranian religious leader of the Shiites; when Shah Pahlavi's regime fell Khomeini established a new constitution giving himself supreme powers (1900-1989)
+9015,Khowar,a Dardic language spoken in northwestern Pakistan
+9016,Khrushchev Nikita_Khrushchev Nikita_Sergeyevich_Khrushchev,Soviet statesman and premier who denounced Stalin (1894-1971)
+9017,Khuen,a branch of the Tai languages
+9018,Khyber_Pass,a mountain pass of great strategic and commercial value in the Hindu Kush on the border between northern Pakistan and western Afghanistan; a route by which invaders entered India
+9019,Ki,goddess personifying earth; counterpart of Akkadian Aruru
+9020,Kichaga Chaga Chagga,a Bantu language spoken by the Chaga in northern Tanzania
+9021,Kichai,a member of a Caddo people formerly living in north central Texas
+9022,Kickapoo,a member of the Algonquian people formerly inhabiting southern Wisconsin and northern Illinois
+9023,Kickapoo,the Algonquian language of the Kickapoo
+9024,Kidd William_Kidd Captain_Kidd,Scottish sea captain who was hired to protect British shipping in the Indian Ocean and then was accused of piracy and hanged (1645-1701)
+9025,Kierkegaard Soren_Kierkegaard Soren_Aabye_Kierkegaard,Danish philosopher who is generally considered. along with Nietzsche, to be a founder of existentialism (1813-1855)
+9026,Kieslowski Krzysztof_Kieslowski,Polish filmmaker who made ten films based on the Ten Commandments (1941-1996)
+9027,Kigali capital_of_Rwanda,the national capital and largest city of Rwanda; located in central Rwanda
+9028,Kiggelaria genus_Kiggelaria,small genus of South African shrubs or small trees
+9029,Kilimanjaro Mount_Kilimanjaro,the highest peak in Africa; located in northeastern Tanzania; 19,340 feet high
+9030,Kiliwa Kiliwi,a member of a North American Indian people living in northern Baja California
+9031,Kiliwa Kiliwi,the Yuman language spoken by the Kiliwa
+9032,Killarney_fern Trichomanes_speciosum,large stout fern of extreme western Europe
+9033,Kilroy,a nonexistent person popularized by American servicemen during World War II; "Kilroy was here"
+9034,Kimberley,city in central South Africa; center for diamond mining and diamond marketing
+9035,Kinetoscope,a device invented by Edison that gave an impression of movement as an endless loop of film moved continuously over a light source with a rapid shutter; precursor of the modern motion picture
+9036,King B._B._King Riley_B_King,United States guitar player and singer of the blues (born in 1925)
+9037,King Billie_Jean_King Billie_Jean_Moffitt_King,United States woman tennis player (born in 1943)
+9038,King Martin_Luther_King Martin_Luther_King_Jr.,United States charismatic civil rights leader and Baptist minister who campaigned against the segregation of Blacks (1929-1968)
+9039,King's_Counsel,Counsel to the Crown when the British monarch is a king
+9040,King's_English Queen's_English,English as spoken by educated persons in southern England
+9041,King_Charles_spaniel,a toy English spaniel with a black-and-tan coat; named after Charles II who popularized it
+9042,King_William_pine Athrotaxis_selaginoides,evergreen of Tasmanian mountains having sharp-pointed leaves that curve inward
+9043,King_of_England King_of_Great_Britain,the sovereign ruler of England
+9044,King_of_France,the sovereign ruler of France
+9045,King_of_the_Germans,the sovereign ruler of the Germans
+9046,Kingdom_of_God,the spiritual domain over which God is sovereign
+9047,Kings_Canyon_National_Park,a national park in California that has giant sequoia trees and alpine lakes and glaciers
+9048,Kingston,a town on the Hudson River in New York
+9049,Kingston,a town in southeast Ontario on Lake Ontario near the head of the Saint Lawrence River
+9050,Kingston capital_of_Jamaica Jamaican_capital,capital and largest city of Jamaica
+9051,Kingstown,the capital of Saint Vincent and the Grenadines; on Saint Vincent
+9052,Kinosternidae family_Kinosternidae,mud turtles; musk turtles
+9053,Kinosternon genus_Kinosternon,type genus of the Kinosternidae
+9054,Kinsey Alfred_Charles_Kinsey,United States zoologist best known for his interview studies of sexual behavior (1894-1956)
+9055,Kinshasa Leopoldville,the capital of the Democratic Republic of the Congo on the Congo river opposite Brazzaville
+9056,Kinyarwanda,a Bantu language
+9057,Kiowa,a member of a Tanoan people living in the southwestern United States
+9058,Kiowa,the Tanoan language spoken by the Kiowa
+9059,Kipling Rudyard_Kipling Joseph_Rudyard_Kipling,English author of novels and poetry who was born in India (1865-1936)
+9060,Kipp's_apparatus,a laboratory apparatus for producing a gas (usually hydrogen sulfide) by the action of a liquid on a solid without heating
+9061,Kirchhoff G._R._Kirchhoff Gustav_Robert_Kirchhoff,German physicist who with Bunsen pioneered spectrum analysis and formulated two laws governing electric networks (1824-1887)
+9062,Kirchhoff's_laws,(physics) two laws governing electric networks in which steady currents flow: the sum of all the currents at a point is zero and the sum of the voltage gains and drops around any closed circuit is zero
+9063,Kirchner Ernst_Ludwig_Kirchner,German expressionist painter (1880-1938)
+9064,Kirghiz Kirgiz Khirghiz,a member of a people vast regions of central Siberia
+9065,Kirghiz Kirgiz Khirghiz,the Turkic language spoken by the Kirghiz
+9066,Kiribati Republic_of_Kiribati,an island republic in the west central Pacific just to the south of the equator
+9067,Kiribati_dollar,the basic unit of money in Kiribati
+9068,Kirkia genus_Kirkia,small genus of tropical South African trees and shrubs
+9069,Kirkuk,a city in northeastern Iraq; the center of a rich oilfield with pipelines to the Mediterranean
+9070,Kishar,Babylonian consort of Anshar; in Sumerian the name signifies `the totality of the lower world'
+9071,Kishinev Chisinau capital_of_Moldova,the capital of Moldova
+9072,Kislev Chislev,the third month of the civil year; the ninth month of the ecclesiastical year in the Jewish calendar (in November and December)
+9073,Kissimmee Kissimmee_River,a river of central Florida that flows southward to Lake Okeechobee
+9074,Kissinger Henry_Kissinger Henry_Alfred_Kissinger,United States diplomat who served under President Nixon and President Ford (born in 1923)
+9075,Kisumu,a port city in western Kenya on the northeastern shore of Lake Victoria; fishing and trading center
+9076,Kiswahili,a Bantu language
+9077,Kitakyushu,a Japanese city on northern Kyushu
+9078,Kitchener Herbert_Kitchener Horatio_Herbert_Kitchener First_Earl_Kitchener_of_Khartoum,British field marshal (1850-1916)
+9079,Kitty_Litter,granulated clay; placed in a container where it absorbs the waste products of a cat or dog
+9080,Kivu Lake_Kivu,a lake in the mountains of central Africa between Congo and Rwanda
+9081,Klaipeda Memel,a city in western Lithuania on the Baltic Sea; formerly an important trading town of the Hanseatic League
+9082,Klamath Klamath_River,a river flowing southwest from Oregon through northern California to the Pacific Ocean
+9083,Klamath_Falls,a town in southern Oregon near the California border
+9084,Klansman Ku_Kluxer Kluxer,a member of the Ku Klux Klan
+9085,Klaproth Martin_Heinrich_Klaproth,German chemist who pioneered analytical chemistry and discovered three new elements (1743-1817)
+9086,Klee Paul_Klee,Swiss painter influenced by Kandinsky (1879-1940)
+9087,Kleenex,a piece of soft absorbent paper (usually two or more thin layers) used as a disposable handkerchief
+9088,Klein Calvin_Klein Calvin_Richard_Klein,United States fashion designer noted for understated fashions (born in 1942)
+9089,Klein Felix_Klein,German mathematician who created the Klein bottle (1849-1925)
+9090,Klein Melanie_Klein,United States psychoanalyst (born in Austria) who was the first to specialize in the psychoanalysis of small children (1882-1960)
+9091,Klein_bottle,a closed surface with only one side; formed by passing one end of a tube through the side of the tube and joining it with the other end
+9092,Kleist Heinrich_von_Kleist Bernd_Heinrich_Wilhelm_von_Kleist,German dramatist whose works concern people torn between reason and emotion (1777-1811)
+9093,Klimt Gustav_Klimt,Austrian painter influenced by art nouveau (1862-1918)
+9094,Kline Franz_Kline Franz_Joseph_Kline,United States abstract expressionist painter (1910-1962)
+9095,Klinefelter Harry_F._Klinefelter Harry_Fitch_Kleinfelter,United States physician who first described the XXY-syndrome (born in 1912)
+9096,Klinefelter's_syndrome Klinefelter_syndrome XXY-syndrome,syndrome in males that is characterized by small testes and long legs and enlarged breasts and reduced sperm production and mental retardation; a genetic defect in which an extra X chromosome (XXY) is present in the male
+9097,Klondike,a region in northwestern Canada where gold was discovered in 1896 but exhausted by 1910
+9098,Klopstock Friedrich_Gottlieb_Klopstock,German poet (1724-1803)
+9099,Klyuchevskaya,an inactive volcano on the Kamchatka Peninsula; last erupted in 1946
+9100,Knesset Knesseth,the Israeli unicameral parliament
+9101,Knight_Templar,a man who belongs to a Masonic order in the United States
+9102,Knight_Templar Templar,a knight of a religious military order established in 1118 to protect pilgrims and the Holy Sepulcher
+9103,Knight_of_the_Round_Table,in the Arthurian legend, a knight of King Arthur's court
+9104,Knightia genus_Knightia,small genus of trees or shrubs of New Zealand and New Caledonia
+9105,Knossos Cnossos Cnossus,an ancient town on Crete where Bronze Age culture flourished from about 2000 BC to 1400 BC
+9106,Knowlton's_cactus Pediocactus_knowltonii,small clustering cactus of southwestern United States; a threatened species
+9107,Knox John_Knox,Scottish theologian who founded Presbyterianism in Scotland and wrote a history of the Reformation in Scotland (1514-1572)
+9108,Knoxville,a city in eastern Tennessee on the Tennessee River
+9109,Koasati,a member of the Muskhogean people formerly living in northern Alabama; a member of the Creek Confederacy
+9110,Koasati,the Muskhogean language spoken by the Koasati
+9111,Kobe,a port city in Japan on Osaka Bay in southern Honshu; was damaged by an earthquake in 1995
+9112,Kobuk_Valley_National_Park,a national park in Alaska having mountains and forests and tundra and sand dunes and archeological sites
+9113,Kobus genus_Kobus,African antelopes: waterbucks
+9114,Koch Robert_Koch,German bacteriologist who isolated the anthrax bacillus and the tubercle bacillus and the cholera bacillus (1843-1910)
+9115,Kodiak Kodiak_Island,an island off southern Alaska in the Gulf of Alaska; site of the first European settlement in the area which was founded by the Russians in 1784
+9116,Koestler Arthur_Koestler,British writer (born in Hungary) who wrote a novel exposing the Stalinist purges during the 1930s (1905-1983)
+9117,Kogia genus_Kogia,pygmy sperm whales
+9118,Koine,a Greek dialect that flourished under the Roman Empire
+9119,Kokka_Shinto Kokka,the branch of Shinto recognized as the official state religion of Japan
+9120,Kol_Nidre,the opening prayer on the eve of Yom Kippur
+9121,Kola_Peninsula,a peninsula in northwestern Russia projecting eastward between the Barents Sea and the White Sea
+9122,Kolam,a member of a formerly tribal people now living in south central India
+9123,Kolami,the Dravidian language spoken by the Kolam in central India
+9124,Kolkata Calcutta,the largest city in India and one of the largest cities in the world; located in eastern India; suffers from poverty and overcrowding
+9125,Kolkwitzia genus_Kolkwitzia,Chinese genus of 1 species: beauty bush
+9126,Kolonia,capital of Micronesia
+9127,Komi,a member of a Finnish people living in the northwestern Urals in Russia
+9128,Komi Zyrian,the Finnic language spoken by the Komi
+9129,Komodo_dragon Komodo_lizard dragon_lizard giant_lizard Varanus_komodoensis,the largest lizard in the world (10 feet); found on Indonesian islands
+9130,Kongo,the Bantu language spoken by the Kongo living in the tropical forests of Zaire and Congo and Angola
+9131,Konoe Fumimaro_Konoe Prince_Fumimaro_Konoe Konoye Fumimaro_Konoye Prince_Fumimaro_Konoye,Japanese statesman who set Japan's expansionist policies and formed an alliance with Germany and Italy (1891-1945)
+9132,Konqueror,a freeware browser for Linux
+9133,Koopmans Tjalling_Koopmans Tjalling_Charles_Koopmans,United States economist (born in the Netherlands) (1910-1985)
+9134,Koplik's_spots,small red spots with white centers found on the mucous membranes of the mouth and tongue; symptom of measles that appears one or two days before the measles rash appears
+9135,Koran Quran al-Qur'an Book,the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina
+9136,Korbut Olga_Korbut,Soviet gymnast (born in 1955)
+9137,Korchnoi Viktor_Korchnoi Viktor_Lvovich_Korchnoi,Russian chess master (born in 1931)
+9138,Korda Sir_Alexander_Korda Sandor_Kellner,British filmmaker (born in Hungary) (1893-1956)
+9139,Kordofan,a mountainous province of central Sudan
+9140,Kordofanian,a group of languages spoken in the relatively small Kordofan area of the south Sudan
+9141,Korea Korean_Peninsula Dae-Han-Min-Gook Han-Gook,an Asian peninsula (off Manchuria) separating the Yellow Sea and the Sea of Japan; the Korean name is Dae-Han-Min-Gook or Han-Gook
+9142,Korea_Bay,an inlet of the Yellow Sea between the Liaodong Peninsula in China and western Korea
+9143,Korean,a native or inhabitant of Korea who speaks the Korean language
+9144,Korean,the Altaic language spoken by Koreans
+9145,Korean_Strait Korea_Strait,a strait between Korea and Japan; connects the East China Sea and the Sea of Japan
+9146,Korean_War,a war between North and South Korea; South Korea was aided by the United States and other members of the United Nations; 1950-1953
+9147,Korean_lawn_grass Japanese_lawn_grass Zoysia_japonica,lawn grass common in China and Japan; grown also in United States
+9148,Korean_lespedeza Lespedeza_stipulacea,annual native to Korea but widely cultivated for forage and hay in hot dry regions
+9149,Korzybski Alfred_Korzybski Alfred_Habdank_Skarbek_Korzybski,United States semanticist (born in Poland) (1879-1950)
+9150,Kosciusko Thaddeus_Kosciusko Kosciuszko Tadeusz_Andrzej_Bonawentura_Kosciuszko,Polish patriot and soldier who fought with Americans in the American Revolution (1746-1817)
+9151,Kosovo,a Serbian province in southern Serbia and Montenegro populated predominantly by Albanians
+9152,Kosteletzya genus_Kosteletzya,small genus of herbs of southeastern United States and tropical America and Africa
+9153,Kota Kotar,a member of the Dravidian people living in the Nilgiri Hills in southern India
+9154,Kota Kotar,a Dravidian language spoken by the Kota
+9155,Kotoko,a Chadic language spoken south of Lake Chad
+9156,Koussevitzky Serge_Koussevitzky Sergei_Aleksandrovich_Koussevitzky,United States conductor (born in Russia) who was noted for performing the works of contemporary composers (1874-1951)
+9157,Krafft-Ebing Richard_von_Krafft-Ebing Baron_Richard_von_Krafft-Ebing,German neurologist noted for his studies of sexual deviance (1840-1902)
+9158,Krakatau Krakatao Krakatoa,a small volcanic island in Indonesia between Java and Sumatra; its violent eruption in 1883 was the greatest in recorded history
+9159,Krasner Lee_Krasner,United States artist remembered for her spontaneous approach to painting; she was a founder of the New York school of abstract expressionism (1908-1984)
+9160,Kraut Krauthead Boche Jerry Hun,offensive term for a person of German descent
+9161,Krebs Hans_Adolf_Krebs Sir_Hans_Adolf_Krebs,English biochemist (born in Germany) who discovered the Krebs cycle (1900-1981)
+9162,Krebs_cycle Krebs_citric_acid_cycle citric_acid_cycle tricarboxylic_acid_cycle,in all plants and animals: a series of enzymatic reactions in mitochondria involving oxidative metabolism of acetyl compounds to produce high-energy phosphate compounds that are the source of cellular energy
+9163,Kreisler Fritz_Kreisler,United States violinist (born in Austria) (1875-1962)
+9164,Kremlin,citadel of Moscow, housing the offices of the Russian government
+9165,Krishna,8th and most important avatar of Vishnu; incarnated as a handsome young man playing a flute
+9166,Krishnaism,worship of Krishna the 8th avatar of Vishnu
+9167,Kroeber Alfred_Kroeber Alfred_Louis_Kroeber,United States anthropologist noted for his studies of culture (1876-1960)
+9168,Kronecker Leopold_Kronecker,German mathematician (1823-1891)
+9169,Kronecker_delta,a function of two variables i and j that equals 1 when i=j and equals 0 otherwise
+9170,Kropotkin Prince_Peter_Kropotkin Pyotr_Alexeyevich_Kropotkin,Russian anarchist (1842-1921)
+9171,Kroto Harold_Kroto Harold_W._Kroto Sir_Harold_Walter_Kroto,British chemist who with Robert Curl and Richard Smalley discovered fullerenes and opened a new branch of chemistry (born in 1939)
+9172,Kruger Oom_Paul_Kruger Stephanus_Johannes_Paulus_Kruger,Boer statesman (1825-1904)
+9173,Krupp Alfred_Krupp,German arms manufacturer and son of Friedrich Krupp; his firm provided ordnance for German armies from the 1840s through World War II (1812-1887)
+9174,Krupp Friedrich_Krupp,German industrialist who manufactured steel in Essen (1787-1826)
+9175,Krypterophaneron genus_Krypterophaneron,a genus of fish in the family Anomalopidae
+9176,Kshatriya,a member of the royal or warrior Hindu caste
+9177,Ku_Klux_Klan Klan KKK,a secret society of white Southerners in the United States; was formed in the 19th century to resist the emancipation of slaves; used terrorist tactics to suppress Black people
+9178,Kuala_Lumpur,the largest city and former capital of Malaysia until 2005
+9179,Kublai_Khan Kubla_Khan Kublai_Kaan,Mongolian emperor of China and grandson of Genghis Khan who completed his grandfather's conquest of China; he establish the Yuan dynasty and built a great capital on the site of modern Beijing where he received Marco Polo (1216-1294)
+9180,Kubrick Stanley_Kubrick,United States filmmaker (born in 1928)
+9181,Kuchean West_Tocharian Kuchean_dialect,a dialect of Tocharian
+9182,Kuhn Richard_Kuhn,Austrian chemist who did research on carotenoids and vitamins (1900-1967)
+9183,Kui,a member of the Dravidian people living in southeastern India
+9184,Kui,the Dravidian language spoken by the Kui in southeastern India
+9185,Kuiper Gerard_Kuiper Gerard_Peter_Kuiper,United States astronomer (born in the Netherlands) who studied the solar system and suggested in 1951 that there is a belt of comet-like debris at the edge of the solar system (1905-1973)
+9186,Kuiper_belt Edgeworth-Kuiper_belt,a disk-shaped region of minor planets outside the orbit of Neptune
+9187,Kuiper_belt_object KBO,any of many minor planets in the Kuiper belt outside the orbit of Neptune at the edge of the solar system
+9188,Kuki Chin Kuki-Chin,Kamarupan languages spoken in western Burma and Bangladesh and easternmost India
+9189,Kulanapan,a group of languages of the Hokan family
+9190,Kumasi,a city in southern Ghana
+9191,Kundt's_tube,a measuring instrument used to measure the speed of sound
+9192,Kunlun Kunlan_Shan Kunlun_Mountains Kuenlun Kuenlun_Mountains,a mountain range in western China that extends eastward from the Indian border for 1000 miles
+9193,Kuomintang Guomindang,the political party founded in 1911 by Sun Yat-sen; it governed China under Chiang Kai-shek from 1928 until 1949 when the Communists took power and subsequently was the official ruling party of Taiwan
+9194,Kupffer's_cell,specialized cells in the liver that destroy bacteria, foreign proteins, and worn-out blood cells
+9195,Kura Kura_River,a river in western Asia; rises in northeast Turkey and flows to the Caspian Sea
+9196,Kurd,a member of a largely pastoral Islamic people who live in Kurdistan; the largest ethnic group without their own state
+9197,Kurdish,an Iranian language spoken in Turkey and Iran and Iraq and Syria and Russia
+9198,Kurdistan,an extensive geographical region in the Middle East to the south of the Caucasus
+9199,Kurdistan,an oriental rug woven by Kurds that is noted for fine colors and durability
+9200,Kurdistan_Workers_Party Kurdistan_Labor_Pary Partiya_Karkeran_Kurdistan PPK,a Marxist-Leninist terrorist group of Kurds trying to establish an independent Kurdish state in eastern Turkey
+9201,Kurosawa Akira_Kurosawa,Japanese filmmaker noted for blending Japanese folklore with western styles of acting (1910-1998)
+9202,Kursk,a city of southwestern Russia
+9203,Kurux,a Dravidian language spoken in eastern India
+9204,Kusan,a member of the North American Indian people of Oregon
+9205,Kusan,a Penutian language spoken by the Kusan
+9206,Kutuzov Mikhail_Ilarionovich_Kutuzov Prince_of_Smolensk,Russian field marshal who commanded the Russian opposition to Napoleon (1745-1813)
+9207,Kuvi,a Dravidian language spoken in southeast India
+9208,Kuwait Kuwait_City Koweit capital_of_Kuwait,a seaport on the Persian Gulf and capital of Kuwait
+9209,Kuwait State_of_Kuwait Koweit,an Arab kingdom in Asia on the northwestern coast of the Persian Gulf; a major source of petroleum
+9210,Kuwaiti,a native or inhabitant of Kuwait
+9211,Kuwaiti_dinar dinar,the basic unit of money in Kuwait; equal 1,000 fils
+9212,Kuwaiti_dirham dirham,worth one tenth of a Kuwaiti dinar; equal 100 fils
+9213,Kuwaiti_monetary_unit,monetary unit in Kuwait
+9214,Kuznets Simon_Kuznets,United States economist (born in Russia) who developed a method for using a country's gross national product to estimate its economic growth (1901-1985)
+9215,Kwa,a group of African language in the Niger-Congo group spoken from the Ivory Coast east to Nigeria
+9216,Kwajalein,an atoll in the western Marshall Islands that was used as a Japanese air and naval base during World War II
+9217,Kwajalein,an amphibious assault in the Pacific in World War II (January 1944); American forces landed and captured a Japanese air base
+9218,Kwakiutl,a member of the Wakashan people living around Queen Charlotte Sound and on northern Vancouver Island
+9219,Kwakiutl,a Wakashan language spoken by the Kwakiutl
+9220,Kwan-yin Kuan_Yin,(Buddhism) a female Bodhisattva; often called goddess of mercy and considered an aspect of the Bodhisattva Avalokitesvara; identified with Japanese Kwannon
+9221,Kwangju,city in southwestern South Korea; an important military base during the Korean War
+9222,Kwannon,Japanese counterpart of Chinese Kuan Yin
+9223,Kwanzaa Kwanza,a festival featuring African-American culture; celebrated between Christmas and New Year
+9224,Kwell,a preparation of lindane (trade name Kwell) that is used to kill lice and itch mites; available in cream or shampoo
+9225,Kyd Kid Thomas_Kyd Thomas_Kid,English dramatist (1558-1594)
+9226,Kyoto,a city in central Japan on southern Honshu; a famous cultural center that was once the capital of Japan
+9227,Kyphosidae family_Kyphosidae,sea chubs
+9228,Kyphosus genus_Kyphosus,type genus of the Kyphosidae
+9229,Kyrgyzstan Kyrgyz_Republic Kirghizia Kirgizia Kirghiz Kirgiz Kirghizstan Kirgizstan,a landlocked republic in west central Asia bordering on northwestern China; formerly an Asian soviet but became independent in 1991
+9230,Kyrgyzstani_monetary_unit,monetary unit in Kyrgyzstan
+9231,Kyushu,the southernmost of the four main islands of Japan; contains coal fields
+9232,Kyyiv Kiev capital_of_the_Ukraine,capital and largest city of the Ukraine; a major manufacturing and transportation center
+9233,Kyzyl_Kum Kizil_Kum Qizil_Qum,a desert in Uzbekistan to the southeast of the Aral Sea
+9234,L l,the 12th letter of the Roman alphabet
+9235,L'Enfant Charles_L'Enfant Pierre_Charles_L'Enfant,United States architect (born in France) who laid out the city plan for Washington (1754-1825)
+9236,L-dopa levodopa Bendopa Brocadopa Larodopa,the levorotatory form of dopa (trade names Bendopa and Brocadopa and Larodopa); as a drug it is used to treat Parkinson's disease
+9237,L-plate,a square plate bearing the letter L that is attached to both ends of a car to indicate that the driver is a learner
+9238,LDL_cholesterol,the cholesterol in low-density lipoproteins; the `bad' cholesterol; a high level in the blood is thought to be related to various pathogenic conditions
+9239,LISP list-processing_language,a flexible procedure-oriented programing language that manipulates symbols in the form of lists
+9240,LISP_compiler,a compiler for programs written in LISP
+9241,LISP_program,a program written in LISP
+9242,LLud,a Celtic warrior god
+9243,LP L-P,a long-playing phonograph record; designed to be played at 33.3 rpm
+9244,LaSalle Sieur_de_LaSalle Rene-Robert_Cavelier,French explorer who claimed Louisiana for France (1643-1687)
+9245,La_Crosse,a town in western Wisconsin on the Mississippi River
+9246,La_Fontaine Jean_de_La_Fontaine,French writer who collected Aesop's fables and published them (1621-1695)
+9247,La_Paz capital_of_Bolivia,capital city in western Bolivia and the administrative seat of Bolivia's government; largest city in Bolivia
+9248,La_Rochefoucauld Francois_de_La_Rochefoucauld,French writer of moralistic maxims (1613-1680)
+9249,La_Spezia,a port city in Liguria on an arm of the Ligurian Sea; a major seaport and year-round resort
+9250,La_Tour Georges_de_La_Tour,French painter of religious works (1593-1652)
+9251,Laban Rudolph_Laban,Hungarian choreographer who developed Labanotation (1879-1958)
+9252,Labanotation,a system of notation for dance movements that uses symbols to represent points on a dancer's body and the direction of the dancer's movement and the tempo and the dynamics
+9253,Labiatae family_Labiatae Lamiaceae family_Lamiaceae mint_family,a large family of aromatic herbs and shrubs having flowers resembling the lips of a mouth and four-lobed ovaries yielding four one-seeded nutlets and including mint; thyme; sage; rosemary
+9254,Lablab genus_Lablab,one species: hyacinth bean
+9255,Labor_Day,first Monday in September in the United States and Canada
+9256,Labourite,a member of the British Labour Party
+9257,Labrador,the mainland part of the province of Newfoundland and Labrador in the eastern part of the large Labrador-Ungava Peninsula in northeastern Canada
+9258,Labrador-Ungava_Peninsula Labrador_Peninsula,a peninsular region of eastern Canada between Hudson Bay and the Labrador Sea; contains most of Quebec and the mainland part of Newfoundland and Labrador
+9259,Labrador_Sea,an arm of the northern Atlantic between Labrador and southern Greenland
+9260,Labrador_retriever,breed originally from Labrador having a short black or golden-brown coat
+9261,Labrador_tea crystal_tea Ledum_groenlandicum,evergreen shrub of eastern North America having white or creamy bell-shaped flowers and dark green hairy leaves used for tea during American Revolution
+9262,Labridae family_Labridae,wrasses
+9263,Labrouste Henri_Labrouste,French architect who was among the first to use metal construction successfully (1801-1875)
+9264,Laburnum genus_Laburnum,flowering shrubs or trees having bright yellow flowers; all parts of the plant are poisonous
+9265,Labyrinth_of_Minos,a vast labyrinth built in Crete by Daedalus at the command of Minos in order to contain the Minotaur
+9266,Labyrinthodontia superorder_Labyrinthodontia Labyrinthodonta superorder_Labyrinthodonta,extinct amphibians typically resembling heavy-bodied salamanders or crocodiles and having a solid flattened skull and conical teeth; Devonian through Triassic
+9267,Laccopetalum genus_Laccopetalum,one species: giant buttercup
+9268,Lacerta genus_Lacerta,type genus of the Lacertidae
+9269,Lacertidae family_Lacertidae,Old World lizards
+9270,Lachaise Gaston_Lachaise,United States sculptor (born in France) noted for his large nude figures (1882-1935)
+9271,Lachesis,the Greek goddess of fate who determines the length of the thread of life
+9272,Lachnolaimus genus_Lachnolaimus,a genus of Labridae
+9273,Laconia,an ancient region of southern Greece in the southeastern Peloponnesus; dominated by Sparta
+9274,Laconian,a resident of Laconia
+9275,Lactarius genus_Lactarius,large genus of agarics that have white spore and contain a white or milky juice when cut or broken; includes both edible and poisonous species
+9276,Lactobacillaceae family_Lactobacillaceae Lactobacteriaceae family_Lactobacteriaceae,lactic acid bacteria and important pathogens; bacteria that ferment carbohydrates chiefly into lactic acid
+9277,Lactophrys genus_Lactophrys,a genus of Ostraciidae
+9278,Lactuca genus_Lactuca,an herb with milky juice: lettuce; prickly lettuce
+9279,Ladin,a Rhaeto-Romance dialect of Romansh spoken in southeastern Switzerland
+9280,Lady noblewoman peeress,a woman of the peerage in Britain
+9281,Ladyship,a title used to address any peeress except a duchess; "Your Ladyship"; "Her Ladyship"
+9282,Laertes,(Greek mythology) the father of Odysseus
+9283,Lafayette,a town in south central Louisiana; settled by Acadians
+9284,Lafayette,a university town in west central Indiana on the Wabash River
+9285,Lafayette La_Fayette Marie_Joseph_Paul_Yves_Roch_Gilbert_du_Motier Marquis_de_Lafayette,French soldier who served under George Washington in the American Revolution (1757-1834)
+9286,Laffer Arthur_Laffer,United States economist who proposed the Laffer curve (born in 1940)
+9287,Laffer_curve,a graph purporting to show the relation between tax rates and government income; income increases as tax rates increase up to an optimum beyond which income declines
+9288,Laffite Lafitte Jean_Laffite Jean_Lafitte,French pirate who aided the United States in the War of 1812 and received an official pardon for his crimes (1780-1826)
+9289,Lag_b'Omer,(Judaism) Jewish holy day; the 33rd day after the 2nd day of Passover; the 18th day of Iyar
+9290,Lagarostrobus genus_Lagarostrobus,genus of dioecious evergreen trees of New Zealand and Tasmania; similar to genus Dacrydium
+9291,Lagenaria genus_Lagenaria,bottle gourds
+9292,Lagenophera genus_Lagenophera,small genus of herbs of Australia and South America having small solitary white or purple flowers similar to true daisies of genus Bellis
+9293,Lagerstroemia genus_Lagerstroemia,shrubs or small trees of tropical Asia and Africa usually with showy white, pink, or purplish flowers
+9294,Lagidium genus_Lagidium,a genus of Chinchillidae
+9295,Lagodon genus_Lagodon,a genus of Sparidae
+9296,Lagomorpha order_Lagomorpha,rabbits; hares; pikas; formerly considered the suborder Duplicidentata of the order Rodentia
+9297,Lagopus genus_Lagopus,ptarmigans
+9298,Lagorchestes genus_Lagorchestes,hare wallabies
+9299,Lagos,chief port and economic center of Nigeria; located in southwestern Nigeria on the Gulf of Guinea; former capital of Nigeria
+9300,Lagostomus genus_Lagostomus,viscachas
+9301,Lagothrix genus_Lagothrix,woolly monkeys
+9302,Laguncularia genus_Laguncularia,a genus of Laguncularia
+9303,Lahore,city in northeast Pakistan
+9304,Lahu,a Loloish language
+9305,Laius,(Greek mythology) king of Thebes who was unwittingly killed by his son Oedipus
+9306,Lake_Albert Lake_Albert_Nyanza Mobuto_Lake,a shallow lake on the border between Uganda and Congo in the Great Rift Valley
+9307,Lake_Aral Aral_Sea,a lake to the east of the Caspian Sea lying between Kazakhstan and Uzbekistan
+9308,Lake_Chad Chad,a lake in north central Africa; fed by the Shari river
+9309,Lake_Champlain Champlain,a lake in northeastern New York, northwestern Vermont and southern Quebec; site of many battles in the French and Indian War and in the American Revolution and in the War of 1812
+9310,Lake_Chelan,a narrow very deep lake in central Washington in the Cascade Range
+9311,Lake_Clark_National_Park,a national park in Alaska having Eskimo and Athapaskan archeological sites
+9312,Lake_District Lakeland,a popular tourist area in northwestern England including England's largest lake and highest mountain
+9313,Lake_Edward,a lake in the Great Rift Valley between Congo and Uganda
+9314,Lake_Erie Erie,the 4th largest of the Great Lakes; it is linked to the Hudson River by the New York State Barge Canal
+9315,Lake_Geneva Lake_Leman,a lake between southwestern Switzerland and France that is crossed from east to west by the Rhone
+9316,Lake_Huron Huron,the 2nd largest of the Great Lakes
+9317,Lake_Ilmen Ilmen,a lake in northwestern Russia; drains through the Volkhov River into Lake Ladoga
+9318,Lake_Ladoga Ladoga,a lake in northwestern Russia to the north of St. Petersburg; the largest lake in Europe; drains through the Neva River into the Gulf of Finland
+9319,Lake_Mead,the largest reservoir in the United States; located in southeastern Nevada and northwestern Arizona and formed by the Hoover Dam on the Colorado River; the center of a recreational area
+9320,Lake_Michigan Michigan,the 3rd largest of the Great Lakes; the largest freshwater lake entirely within the United States borders
+9321,Lake_Nasser Nasser,lake in Egypt formed by dams built on the Nile River at Aswan
+9322,Lake_Nyasa Lake_Malawi,a long lake in southeastern Africa between Tanzania, Mozambique, and Malawi
+9323,Lake_Onega Onega,lake in northwestern Russia near the border with Finland; second largest lake in Europe
+9324,Lake_Ontario Ontario,the smallest of the Great Lakes
+9325,Lake_Powell,the second largest reservoir in the United States; located in southern Utah and north central Arizona and formed by the Glen Canyon Dam on the Colorado River
+9326,Lake_St._Clair Lake_Saint_Clair,a lake between Ontario and Michigan; connected with Lake Huron and Lake Erie
+9327,Lake_Superior Superior,the largest freshwater lake in the world; the deepest of the Great Lakes
+9328,Lake_Tahoe,a lake on the border between Nevada and California to the west of Carson City; a popular resort area
+9329,Lake_Tana Lake_Tsana,a lake in northern Ethiopia; the largest lake in Ethiopia and the source of the Blue Nile
+9330,Lake_Tanganyika Tanganyika,the longest lake in the world in central Africa between Tanzania and Congo in the Great Rift Valley
+9331,Lake_Trasimenus Battle_of_Lake_Trasimenus,a battle in 217 BC in which Hannibal ambushed a Roman army led by Flaminius
+9332,Lake_Urmia Urmia Daryacheh-ye_Orumiyeh,a shallow saline lake in northwestern Iran between Tabriz and the western border of Turkey
+9333,Lake_Vanern Vanern,a lake in southwestern Sweden; the largest lake in Sweden
+9334,Lake_Victoria Victoria_Nyanza,the largest lake in Africa and the 2nd largest fresh water lake in the world; a headwaters reservoir for the Nile River
+9335,Lake_Volta,the Volta river in southeastern has been dammed to create one of the world's largest man-made lakes
+9336,Lakeland_terrier,breed of wire-haired terrier originally from the Lake District of England and used for hunting
+9337,Lakshmi,Hindu goddess of fortune and prosperity
+9338,Lallans Scottish_Lallans,a dialect of English spoken in the Lowlands of Scotland
+9339,Lama genus_Lama,llamas
+9340,Lamaism Tibetan_Buddhism,a Buddhist doctrine that includes elements from India that are not Buddhist and elements of preexisting shamanism
+9341,Lamaist,(Buddhism) an adherent of Lamaism
+9342,Lamarck Jean_Baptiste_de_Lamarck Chevalier_de_Lamarck,French naturalist who proposed that evolution resulted from the inheritance of acquired characteristics (1744-1829)
+9343,Lamarckian,a believer in Lamarckism
+9344,Lamarckism,a theory of organic evolution claiming that acquired characteristics are transmitted to offspring
+9345,Lamaze_method_of_childbirth Lamaze_method,a method that prepares a mother for natural childbirth; the pregnant woman (in classes and at home) practices (usually with the help of a coach) and learns about the physiology of childbirth and techniques of relaxation, concentration, and breathing
+9346,Lamb Charles_Lamb Elia,English essayist (1775-1834)
+9347,Lambert Constant_Lambert Leonard_Constant_Lambert,English composer and conductor (1905-1951)
+9348,Lambert-Eaton_syndrome Eaton-Lambert_syndrome myasthenic_syndrome carcinomatous_myopathy,a disease seen in patients with lung cancer and characterized by weakness and fatigue of hip and thigh muscles and an aching back; caused by antibodies directed against the neuromuscular junctions
+9349,Lambertia genus_Lambertia,small genus of Australian shrubs
+9350,Lambis genus_Lambis,scorpion shells of shallow tropical waters of the eastern hemisphere
+9351,Lamellicornia superfamily_Lamellicornia,scarabaeid beetles and stag beetles
+9352,Lamentations Book_of_Lamentations,an Old Testament book lamenting the desolation of Judah after the destruction of Jerusalem in 586 BC; traditionally attributed to the prophet Jeremiah
+9353,Laminaria genus_Laminaria,type genus of the family Laminariaceae: perennial brown kelps
+9354,Laminariaceae family_Laminariaceae,large family of marine brown algae including many economically important large kelps chiefly of northern waters
+9355,Laminariales order_Laminariales,in some classifications coextensive with family Laminariaceae: marine brown algae of cold or polar seas
+9356,Lamium genus_Lamium,genus of Old World herbs: dead nettles; henbits
+9357,Lammas Lammas_Day August_1,commemorates Saint Peter's miraculous deliverance from prison; a quarter day in Scotland; a harvest festival in England
+9358,Lammastide,the season of Lammas
+9359,Lamna genus_Lamna,a genus of Lamnidae
+9360,Lamnidae family_Lamnidae,oceanic sharks
+9361,Lampridae family_Lampridae,opahs
+9362,Lampris genus_Lampris,type genus of the Lampridae
+9363,Lampropeltis genus_Lampropeltis,king snakes and milk snakes
+9364,Lampyridae family_Lampyridae,fireflies
+9365,Lanai Lanai_Island,an island of central Hawaii; a pineapple-growing area
+9366,Lancashire,a historical area of northwestern England on the Irish Sea; noted for textiles
+9367,Lancaster,a city in northwestern England
+9368,Lancaster House_of_Lancaster Lancastrian_line,the English royal house that reigned from 1399 to 1461; its emblem was a red rose
+9369,Lancastrian,a member (or supporter) of the house of Lancaster
+9370,Lancastrian,a resident of Lancaster
+9371,Lancelot Sir_Lancelot,(Arthurian legend) one of the knights of the Round Table; friend of King Arthur until (according to some versions of the legend) he became the lover of Arthur's wife Guinevere
+9372,Land Din_Land Edwin_Herbert_Land,United States inventor who incorporated Polaroid film into lenses and invented the one step photographic process (1909-1991)
+9373,Landau Lev_Davidovich_Landau,Soviet physicist who worked on low temperature physics (1908-1968)
+9374,Lander,a town in central Wyoming
+9375,Landowska Wanda_Landowska,United States harpsichordist (born in Poland) who helped to revive modern interest in the harpsichord (1879-1959)
+9376,Landsteiner Karl_Landsteiner,United States pathologist (born in Austria) who discovered human blood groups (1868-1943)
+9377,Lane's_Prince_Albert,apple used primarily in cooking
+9378,Laney Lucy_Craft_Laney,United States educator who founded the first private school for Black students in Augusta, Georgia (1854-1933)
+9379,Lange Dorothea_Lange,United States photographer remembered for her portraits of rural workers during the Depression (1895-1965)
+9380,Langley Samuel_Pierpoint_Langley,United States astronomer and aviation pioneer who invented the bolometer and contributed to the design of early aircraft (1834-1906)
+9381,Langmuir Irving_Langmuir,United States chemist who studied surface chemistry and developed the gas-filled tungsten lamp and worked on high temperature electrical discharges (1881-1957)
+9382,Langside battle_of_Langside,(1568) Catholic forces supporting Mary Queen of Scots were routed by Protestants
+9383,Langtry Lillie_Langtry Jersey_Lillie Emilie_Charlotte_le_Breton,British actress and mistress of the prince who later became Edward VII (1853-1929)
+9384,Langue_d'oc Langue_d'oc_French,medieval provincial dialects of French formerly spoken in the south of France
+9385,Langue_d'oil Langue_d'oil_French,medieval provincial dialects of French spoken in central and northern France
+9386,Languedoc-Roussillon,a region in south central France; named after the medieval dialect of French that was spoken there
+9387,Laniidae family_Laniidae,shrikes
+9388,Lanius genus_Lanius,type genus of the Laniidae: typical shrikes
+9389,Lansing capital_of_Michigan,capital of the state of Michigan; located in southern Michigan on the Grand River
+9390,Lanthanotidae family_Lanthanotidae,stout-bodied lizards
+9391,Lanthanotus genus_Lanthanotus,one species
+9392,Lanthanotus_borneensis,a stout-bodied pleurodont lizard of Borneo
+9393,Lanzhou Lanchou Lanchow,the capital city of the Chinese province of Gansu on the Yellow River
+9394,Lao,the Tai language of a Buddhist people living in the area of the Mekong River in Thailand and Laos
+9395,Lao Laotian,a member of a Buddhist people inhabiting the area of the Mekong River in Laos and Thailand and speaking the Lao language; related to the Thais
+9396,Lao-tzu Lao-tse Lao-zi,Chinese philosopher regarded as the founder of Taoism (6th century BC)
+9397,Laocoon,(Greek mythology) the priest of Apollo who warned the Trojans to beware of Greeks bearing gifts when they wanted to accept the Trojan Horse; a god who favored the Greeks (Poseidon or Athena) sent snakes who coiled around Laocoon and his two twin sons killing them
+9398,Laos Lao_People's_Democratic_Republic,a mountainous landlocked communist state in southeastern Asia; achieved independence from France in 1949
+9399,Laotian_monetary_unit,monetary unit in Laos
+9400,Laplace Marquis_de_Laplace Pierre_Simon_de_Laplace,French mathematician and astronomer who formulated the nebular hypothesis concerning the origins of the solar system and who developed the theory of probability (1749-1827)
+9401,Laportea genus_Laportea,mostly tropical stinging herbs or trees: nettle
+9402,Lapp Lapplander Sami Saami Same Saame,a member of an indigenous nomadic people living in northern Scandinavia and herding reindeer
+9403,Lapp Sami Saami Same Saame,the language of nomadic Lapps in northern Scandinavia and the Kola Peninsula
+9404,Lappic Lappish,any of the languages spoken by the Lapps and generally assumed to be Uralic languages
+9405,Lappland Lapland,a region in northmost Europe inhabited by Lapps
+9406,Laptev_Sea,part of the Arctic Ocean to the north of Siberia (between the Taimyr Peninsula and the New Siberian Islands) that is icebound most of the year
+9407,Laputa,a land imagined by Jonathan Swift where impractical projects were pursued and practical projects neglected
+9408,Laramie,a university town in southeast Wyoming
+9409,Lardizabala genus_Lardizabala,evergreen monoecious climbers of South America having dark mauve-blue edible berries
+9410,Lardizabalaceae family_Lardizabalaceae lardizabala_family,thick-stemmed lianas and some shrubs; some have edible fruit
+9411,Lardner Ring_Lardner Ringgold_Wilmer_Lardner,United States humorist and writer of satirical short stories (1885-1933)
+9412,Laredo,a city in southern Texas on the Rio Grande
+9413,Large_Magellanic_Cloud,the larger of the two Magellanic Clouds visible from the southern hemisphere
+9414,Lari suborder_Lari,gulls; terns; jaegers; skimmers
+9415,Laricariidae family_Laricariidae,armored catfish
+9416,Laridae family_Laridae,gull family: gulls and terns
+9417,Larix genus_Larix,larches
+9418,Larousse Pierre_Larousse Pierre_Athanase_Larousse,French lexicographer (1817-1875)
+9419,Larrea genus_Larrea,xerophytic evergreen shrubs; South America to southwestern United States
+9420,Larus genus_Larus,type genus of the Laridae
+9421,Larvacea class_Larvacea,small free-swimming tunicates; sometimes classified as an order
+9422,Las_Cruces,a town in southern New Mexico on the Rio Grande
+9423,Las_Vegas,largest city in Nevada; located in southeastern Nevada; originally settled by Mormons but is now famous for entertainment and gambling and general excess
+9424,Lascar,a volcano in the Andes in Chile
+9425,Lascaux,a cave in southwestern France that contains Paleolithic paintings
+9426,Lashkar-e-Jhangvi,a Sunni Muslim extremist group in Pakistan that collaborates with al-Qaeda; the armed wing of Sipah-e-Sahaba
+9427,Lashkar-e-Omar Al_Qanoon,a terrorist organization formed in Pakistan in 2002 as a coalition of extremist Islamic militant groups including Lashkar-e-Taiba and Lashkar-e-Jhangvi and Jaish-e-Muhammad and elements of al-Qaeda
+9428,Lashkar-e-Taiba Lashkar-e-Toiba Lashkar-e-Tayyiba LET Army_of_the_Pure Army_of_the_Righteous,a brutal terrorist group active in Kashmir; fights against India with the goal of restoring Islamic rule of India; "Lashkar-e-Toiba has committed mass murders of civilian Hindus"
+9429,Lasiocampa genus_Lasiocampa,type genus of the Lasiocampidae: eggars
+9430,Lasiocampidae family_Lasiocampidae,tent caterpillars; eggars; lappet moths
+9431,Lasiurus genus_Lasiurus,a genus of Vespertilionidae
+9432,Laskar_Jihad Holy_War_Warriors,a paramilitary terrorist organization of militant Muslims in Indonesia; wages a jihad against Christians in Indonesia; subscribes to the Wahhabi creed of Islam
+9433,Lassa_fever,an acute contagious viral disease of central western Africa; characterized by fever and inflammation and muscular pains and difficulty swallowing; can be used as a bioweapon
+9434,Lassa_virus,the RNA virus that causes Lassa fever
+9435,Lassen_Volcanic_National_Park,a national park in California having mountains and volcanic lakes and hot springs
+9436,Lasso Orlando_di_Lasso Roland_de_Lassus,Belgian composer (1532-1594)
+9437,Last_Supper Lord's_Supper,the traditional Passover supper of Jesus with his disciples on the eve of his crucifixion
+9438,Lastex,yarn that has an elastic core wound around with cotton or silk or nylon or rayon threads
+9439,Lasthenia genus_Lasthenia,small genus of herbs of Pacific coast of North and South America
+9440,Lastreopsis genus_Lastreopsis,tropical terrestrial shield ferns
+9441,Late_Greek,the Greek language in the 3rd to 8th centuries
+9442,Late_Latin Biblical_Latin,the form of Latin written between the 3rd and 8th centuries
+9443,Lateran,the site in Rome containing the church of Rome and the Lateran Palace
+9444,Lateran_Council,any of five general councils of the Western Catholic Church that were held in the Lateran Palace
+9445,Lateran_Palace,a palace that served as the residence of the popes until the 14th century
+9446,Lateran_Treaty,the agreement signed in the Lateran Palace in 1929 by Italy and the Holy See which recognized the Vatican City as a sovereign and independent papal state
+9447,Lates genus_Lates,a genus of large percoid fishes of fresh and brackish water
+9448,Lathyrus genus_Lathyrus,genus of climbing herbs of Old World and temperate North and South America: vetchling; wild pea
+9449,Latimeria genus_Latimeria,type genus of the Latimeridae: coelacanth
+9450,Latimeridae family_Latimeridae,extinct except for the coelacanth
+9451,Latin,an inhabitant of ancient Latium
+9452,Latin,a person who is a member of those peoples whose languages derived from Latin
+9453,Latin,any dialect of the language of ancient Rome
+9454,Latin_America,the parts of North America and South America to the south of the United States where Romance languages are spoken
+9455,Latin_American Latino,a native of Latin America
+9456,Latin_cross,a cross with the lowest arm being longer than the others
+9457,Latin_square,a square matrix of n rows and columns; cells contain n different symbols so arranged that no symbol occurs more than once in any row or column
+9458,Latinae,a subfamily of the family Centropomidae
+9459,Latinesce,an artificial language based on Latin
+9460,Latinism,a word or phrase borrowed from Latin
+9461,Latinist,a specialist in the Latin language
+9462,Latium Lazio,an ancient region of west central Italy (southeast of Rome) on the Tyrrhenian Sea
+9463,Latrobe Benjamin_Henry_Latrobe,United States architect (born in England) whose works include the chambers of the United States Congress and the Supreme Court; considered the first professional architect in the United States (1764-1820)
+9464,Latrodectus genus_Latrodectus,venomous spiders
+9465,Latter-Day_Saint Mormon,a member of the Church of Jesus Christ of Latter-Day Saints
+9466,Latvia Republic_of_Latvia,a republic in northeastern Europe on the eastern coast of the Baltic Sea
+9467,Latvian,a native or inhabitant of Latvia
+9468,Latvian Lettish,the official language of Latvia; belongs to the Baltic branch of Indo-European
+9469,Latvian_monetary_unit,monetary unit in Latvia
+9470,Lauder Harry_Lauder Sir_Harry_MacLennan_Lauder,Scottish ballad singer and music hall comedian (1870-1950)
+9471,Laudo,a mountain peak in the Andes in Argentina (20,997 feet high)
+9472,Laughton Charles_Laughton,United States film actor (born in England) (1899-1962)
+9473,Lauraceae family_Lauraceae laurel_family,a family of Lauraceae
+9474,Laurasia,a hypothetical continent that (according to plate tectonic theory) broke up later into North America and Europe and Asia
+9475,Laurel Stan_Laurel Arthur_Stanley_Jefferson_Laurel,United States slapstick comedian (born in England) who played the scatterbrained and often tearful member of the Laurel and Hardy duo who made many films (1890-1965)
+9476,Laurel_and_Hardy,United States slapstick comedy duo who made many films together
+9477,Laurens Henry_Laurens,leader of the American Revolution and president of the Continental Congress (1724-1792)
+9478,Laurentian_Plateau Laurentian_Highlands Canadian_Shield,a large plateau that occupies more than 40% of the land area of Canada; it extends from the Great Lakes northward to the Arctic Ocean
+9479,Laurus genus_Laurus,small evergreen trees or shrubs with aromatic leaves
+9480,Lausanne,a city in western Switzerland; cultural and commercial center
+9481,Lautaro_Youth_Movement Lautaro_Faction_of_the_United_Popular_Action_Movement Lautaro_Popular_Rebel_Forces,a violent terrorist group organized in the 1980s and advocating the overthrow of the Chilean military government; leaders are mainly criminals or impoverished youths
+9482,Lavandula genus_Lavandula,lavender
+9483,Lavatera genus_Lavatera,widespread genus of herbs or softwood arborescent shrubs cultivated for their showy flowers
+9484,Laver Rod_Laver Rodney_George_Laver,Australian tennis player who in 1962 was the second man to win the Australian and French and English and United States singles titles in the same year; in 1969 he repeated this feat (born in 1938)
+9485,Lavoisier Antoine_Lavoisier Antoine_Laurent_Lavoisier,French chemist known as the father of modern chemistry; discovered oxygen and disproved the theory of phlogiston (1743-1794)
+9486,Lawrence,a town in northeastern Kansas on the Kansas River; scene of raids by John Brown in 1856
+9487,Lawrence D._H._Lawrence David_Herbert_Lawrence,English novelist and poet and essayist whose work condemned industrial society and explored sexual relationships (1885-1930)
+9488,Lawrence E._O._Lawrence Ernest_Orlando_Lawrence,United States physicist who developed the cyclotron (1901-1958)
+9489,Lawrence Gertrude_Lawrence,English actress (1898-1952)
+9490,Lawrence Saint_Lawrence St._Lawrence Laurentius,Roman martyr; supposedly Lawrence was ordered by the police to give up the church's treasure and when he responded by presenting the poor people of Rome he was roasted to death on a gridiron (died in 258)
+9491,Lawrence Sir_Thomas_Lawrence,English portrait painter remembered for the series of portraits of the leaders of the alliance against Napoleon (1769-1830)
+9492,Lawrence T._E._Lawrence Thomas_Edward_Lawrence Lawrence_of_Arabia,Welsh soldier who from 1916 to 1918 organized the Arab revolt against the Turks; he later wrote an account of his adventures (1888-1935)
+9493,Lawton,a town in southwest Oklahoma
+9494,Layia genus_Layia,genus of western United States annuals with showy yellow or white flowers
+9495,Lazarus,the person who Jesus raised from the dead after four days in the tomb; this miracle caused the enemies of Jesus to begin the plan to put him to death
+9496,Lazarus,the diseased beggar in Jesus' parable of the rich man and the beggar
+9497,Le_Chatelier's_principle Le_Chatelier's_law Le_Chatelier_principle Le_Chatelier-Braun_principle,the principle that if any change is imposed on a system that is in equilibrium then the system tends to adjust to a new equilibrium counteracting the change
+9498,Le_Corbusier Charles_Edouard_Jeanneret,French architect (born in Switzerland) (1887-1965)
+9499,Le_Duc_Tho,Vietnamese diplomat who negotiated with Henry Kissinger to end the war in Vietnam (1911-1990)
+9500,Le_Gallienne Eva_Le_Gallienne,United States actress (born in England) (1899-1991)
+9501,Le_Havre,a port city in northern France on the English Channel at the mouth of the Seine
+9502,Le_Notre Andre_Le_Notre,French landscape gardener who designed many formal gardens including the parks of Versailles (1613-1700)
+9503,Leacock Stephen_Leacock Stephen_Butler_Leacock,Canadian economist best remembered for his humorous writings (1869-1944)
+9504,League_of_Nations,an international organization formed in 1920 to promote cooperation and peace among nations; although suggested by Woodrow Wilson, the United States never joined and it remained powerless; it was dissolved in 1946 after the United Nations was formed
+9505,Leakey Louis_Leakey Louis_Seymour_Bazett_Leakey,English paleontologist whose account of fossil discoveries in Tanzania changed theories of human evolution (1903-1972)
+9506,Leakey Mary_Leakey Mary_Douglas_Leakey,English paleontologist (the wife of Louis Leakey) who discovered the Zinjanthropus skull that was 1,750,000 years old (1913-1996)
+9507,Leakey Richard_Leakey Richard_Erskine_Leakey,English paleontologist (son of Louis Leakey and Mary Leakey) who continued the work of his parents; he was appointed director of a wildlife preserve in Kenya but resigned under political pressure (born in 1944)
+9508,Leander,(Greek mythology) a youth beloved of Hero who drowned in a storm in the Hellespont on one of his nightly visits to see her
+9509,Leaning_Tower Leaning_Tower_of_Pisa,a tall round marble campanile in Pisa that is not perpendicular; construction was begun in 1174
+9510,Lear Edward_Lear,British artist and writer of nonsense verse (1812-1888)
+9511,Lear King_Lear,the hero of William Shakespeare's tragedy who was betrayed and mistreated by two of his scheming daughters
+9512,Leary Tim_Leary Timothy_Leary Timothy_Francis_Leary,United States psychologist who experimented with psychoactive drugs (including LSD) and became a well-known advocate of their use (1920-1996)
+9513,Lebanese,a native or inhabitant of Lebanon
+9514,Lebanese_monetary_unit,monetary unit in Lebanon
+9515,Lebanese_pound pound,the basic unit of money in Lebanon; equal to 100 piasters
+9516,Lebanon Lebanese_Republic,an Asian republic at east end of Mediterranean
+9517,Lebistes genus_Lebistes,guppies
+9518,Leboyer_method_of_childbirth Leboyer_method,a method of childbirth that tries to minimize the trauma for the newborn; delivery occurs in a quiet dimly lit room and the infant's head is not pulled and immediate bonding between mother and child is encouraged
+9519,Lecanoraceae family_Lecanoraceae,a fungus family of the division Lichenes
+9520,Leccinum genus_Leccinum,a genus of fungi belonging to the family Boletaceae
+9521,Leccinum_fibrillosum,an edible fungus with a dark reddish brown cap and a wide light tan stalk that expands toward the base
+9522,Lechanorales order_Lechanorales,category used in some classification systems for all lichens that produce apothecia
+9523,Leclanche_cell,voltaic cell that produces approximately 1.5 volts
+9524,Lecythidaceae family_Lecythidaceae,large tropical trees bearing large fruits with woody skins
+9525,Leda,(Greek mythology) a queen of Sparta who was raped by Zeus who had taken the form of a swan; Helen of Troy was conceived in the rape of Leda
+9526,Ledbetter Huddie_Leadbetter Leadbelly,United States folk singer and composer (1885-1949)
+9527,Ledum genus_Ledum,evergreen shrubs of north temperate regions
+9528,Lee Bruce_Lee Lee_Yuen_Kam,United States actor who was an expert in kung fu and starred in martial arts films (1941-1973)
+9529,Lee Gypsy_Rose_Lee Rose_Louise_Hovick,United States striptease artist who became famous on Broadway in the 1930s (1914-1970)
+9530,Lee Henry_Lee Lighthorse_Harry_Lee,soldier of the American Revolution (1756-1818)
+9531,Lee Richard_Henry_Lee,leader of the American Revolution who proposed the resolution calling for independence of the American Colonies (1732-1794)
+9532,Lee Robert_E._Lee Robert_Edward_Lee,American general who led the Confederate Armies in the American Civil War (1807-1870)
+9533,Lee Spike_Lee Shelton_Jackson_Lee,United States filmmaker whose works explore the richness of black culture in America (born in 1957)
+9534,Lee Tsung_Dao_Lee,United States physicist (born in China) who collaborated with Yang Chen Ning in disproving the principle of conservation of parity (born in 1926)
+9535,Leeds,a city on the River Aire in West Yorkshire in northern England; a center of the clothing industry
+9536,Leeward_Islands,a group of islands in the eastern West Indies
+9537,Left_Bank Latin_Quarter,the region of Paris on the southern bank of the Seine; a center of artistic and student life
+9538,Leger Fernand_Leger,French painter who was an early cubist (1881-1955)
+9539,Legionella_pneumophilia legionella,the motile aerobic rod-shaped Gram-negative bacterium that thrives in central heating and air conditioning systems and can cause Legionnaires' disease
+9540,Legionnaire,a member of the American Legion
+9541,Legionnaires'_disease,acute (sometimes fatal) lobar pneumonia caused by bacteria of a kind first recognized after an outbreak of the disease at an American Legion convention in Philadelphia in 1976; characterized by fever and muscle and chest pain and headache and chills and a dry cough
+9542,Lego Lego_set,(trademark) a child's plastic construction set for making mechanical models
+9543,Leguminosae family_Leguminosae Fabaceae family_Fabaceae legume_family pea_family,a large family of trees, shrubs, vines, and herbs bearing bean pods; divided for convenience into the subfamilies Caesalpiniaceae; Mimosaceae; Papilionaceae
+9544,Lehar Franz_Lehar,Hungarian composer of light operas (1870-1948)
+9545,Lehigh_River,a river in eastern Pennsylvania that flows southeast into the Delaware River
+9546,Leibniz Leibnitz Gottfried_Wilhelm_Leibniz Gottfried_Wilhelm_Leibnitz,German philosopher and mathematician who thought of the universe as consisting of independent monads and who devised a system of the calculus independent of Newton (1646-1716)
+9547,Leicester,an industrial city in Leicestershire in central England; built on the site of a Roman settlement
+9548,Leicestershire Leicester,a largely agricultural county in central England
+9549,Leichtlin's_camas Camassia_leichtlinii,camas found to the west of Cascade Mountains
+9550,Leiden Leyden,a city in the western Netherlands; residence of the Pilgrim Fathers for 11 years before they sailed for America in 1620
+9551,Leiden_jar Leyden_jar,an electrostatic capacitor of historical interest
+9552,Leigh Vivien_Leigh,English film actress (1913-1967)
+9553,Leiopelma genus_Leiopelma Liopelma genus_Liopelma,type and sole genus of the family Leiopelmatidae
+9554,Leiopelmatidae family_Leiopelmatidae Liopelmidae family_Liopelmidae,primitive New Zealand frogs
+9555,Leiophyllum genus_Leiophyllum,one species: sand myrtle
+9556,Leipzig,a city in southeastern Germany famous for fairs; formerly a music and publishing center
+9557,Leishmania genus_Leishmania,flagellate protozoan that causes leishmaniasis
+9558,Leitneria genus_Leitneria,one species: corkwood
+9559,Leitneriaceae family_Leitneriaceae corkwood_family,coextensive with the genus Leitneria; commonly isolated in a distinct order
+9560,Lemaireocereus genus_Lemaireocereus,tropical American cacti usually tall and branching with stout spines and funnel-shaped flowers and globular or ovoid often edible fruit
+9561,Lemaitre Georges_Henri_Lemaitre Edouard_Lemaitre,Belgian cosmologist who proposed the big-bang theory of the origin of the universe (1894-1966)
+9562,Lemmon Jack_Lemmon John_Uhler,United States film actor (1925-2001)
+9563,Lemmus genus_lemmus,lemmings
+9564,Lemna genus_Lemna,minute aquatic herbs floating on or below the water surface of still water consisting of a leaflike frond or plant body and single root
+9565,Lemnaceae family_Lemnaceae duckweed_family,family of small free-floating thalloid plants
+9566,Lemnos Limnos,a Greek island in the northern Aegean Sea; famous for a reddish-brown clay that has medicinal properties
+9567,Lemuridae family_Lemuridae,typical lemurs; of Madagascar
+9568,Lemuroidea suborder_Lemuroidea,Lemuridae; Lorisidae; Daubentoniidae; Indriidae; used in some classifications instead of Prosimii; in others considered a subdivision of Prosimii
+9569,Lena Lena_River,a Russian river in Siberia; flows northward into the Laptev Sea
+9570,Lenard Philipp_Lenard,German physicist who studied cathode rays (1862-1947)
+9571,Lendl Ivan_Lendl,United States tennis player (born in Czechoslovakia) who won several singles championships; in 1992 he became a United States citizen (born in 1960)
+9572,Lenin Vladimir_Lenin Nikolai_Lenin Vladimir_Ilyich_Lenin Vladimir_Ilich_Lenin Vladimir_Ilyich_Ulyanov Vladimir_Ilich_Ulyanov,Russian founder of the Bolsheviks and leader of the Russian Revolution and first head of the USSR (1870-1924)
+9573,Leninism Marxism-Leninism,the political and economic theories of Lenin which provided the guiding doctrine of the Soviet Union; the modification of Marxism by Lenin stressed that imperialism is the highest form of capitalism (which shifts the struggle from developed to underdeveloped countries)
+9574,Lennoaceae family_Lennoaceae,family of fleshy parasitic herbs lacking green foliage and having heads of small flowers; California and Mexico
+9575,Lennon John_Lennon,English rock star and guitarist and songwriter who with Paul McCartney wrote most of the music for the Beatles (1940-1980)
+9576,Lens genus_Lens,genus of small erect or climbing herbs with pinnate leaves and small inconspicuous white flowers and small flattened pods: lentils
+9577,Lent Lententide,a period of 40 weekdays from Ash Wednesday to Holy Saturday
+9578,Lente_Insulin Lente_Iletin,trade names for forms of insulin that are used to treat diabetes mellitus
+9579,Lentibulariaceae family_Lentibulariaceae bladderwort_family,carnivorous aquatic or bog plants: genera Utricularia, Pinguicula, and Genlisea
+9580,Lentinus genus_Lentinus,a genus of fungus belonging to the family Tricholomataceae
+9581,Leo,a zodiacal constellation in northern hemisphere between Cancer and Virgo
+9582,Leo Leo_the_Lion Lion,the fifth sign of the zodiac; the sun is in this sign from about July 23 to August 22
+9583,Leo Lion,(astrology) a person who is born while the sun is in Leo
+9584,Leo_I St._Leo_I Leo_the_Great,Italian pope from 440 to 461 who extended the authority of the papacy to the west and persuaded Attila not to attack Rome (440-461)
+9585,Leo_III,Italian pope from 795 to 816 who in 800 crowned Charlemagne emperor of the Romans (750-816)
+9586,Leo_IX Bruno Bruno_of_Toul,German pope from 1049 to 1054 whose papacy was the beginning of papal reforms in the 11th century (1002-1054)
+9587,Leo_X Giovanni_de'Medici,son of Lorenzo de'Medici and pope from 1513 to 1521 who excommunicated Martin Luther and who in 1521 bestowed on Henry VIII the title of Defender of the Faith (1475-1521)
+9588,Leo_XIII Gioacchino_Pecci Giovanni_Vincenzo_Pecci,Italian pope from 1878 to 1903 who was interested in the advancement of learning and who opened the Vatican secret archives to all scholars
+9589,Leon,a historical area and former kingdom in northwestern Spain
+9590,Leon,a city in northwestern Spain at the foot of the Cantabrian Mountains
+9591,Leon,a city in central Mexico
+9592,Leonard Elmore_Leonard Elmore_John_Leonard Dutch_Leonard,United States writer of thrillers (born in 1925)
+9593,Leonardo Leonardo_da_Vinci da_Vinci,Italian painter and sculptor and engineer and scientist and architect; the most versatile genius of the Italian Renaissance (1452-1519)
+9594,Leonberg,a large dog (usually with a golden coat) produced by crossing a St Bernard and a Newfoundland
+9595,Leonidas,king of Sparta and hero of the battle of Thermopylae where he was killed by the Persians (died in 480 BC)
+9596,Leonotis genus_Leonotis,small genus of tropical herbs and subshrubs of South Africa
+9597,Leontief Wassily_Leontief,United States economist (born in Russia) who devised an input-output method of economic analysis (1906-1999)
+9598,Leontocebus genus_Leontocebus genus_Leontideus,tamarins
+9599,Leontodon genus_Leontodon,hawkbit
+9600,Leontopodium genus_Leontopodium,edelweiss
+9601,Leonurus genus_Leonurus,genus of stout Old World herbs having flowers in whorls
+9602,Leotia_lubrica,a discomycete that develops in clusters of slippery rubbery gelatinous fruiting bodies that are dingy yellow to tan in color
+9603,Lepadidae family_Lepadidae,goose barnacles
+9604,Lepanto Battle_of_Lepanto,Turkish sea power was destroyed in 1571 by a league of Christian nations organized by the Pope
+9605,Lepas genus_Lepas,type genus of the family Lepadidae
+9606,Lepechinia genus_Lepechinia Sphacele genus_Sphacele,a dicotyledonous genus of the family Labiatae
+9607,Lepidium genus_Lepidium,cosmopolitan genus of annual and biennial and perennial herbs: cress
+9608,Lepidobotryaceae family_Lepidobotryaceae,family created in 1950 solely for the classification of a distinctive African tree repeatedly classified in other families; trees long believed to exist only in Africa
+9609,Lepidochelys genus_Lepidochelys,ridleys
+9610,Lepidocybium genus_Lepidocybium,a genus of Gempylidae
+9611,Lepidodendraceae family_Lepidodendraceae,fossil plants characterized by conspicuous spirally arranged leaf scars on the trunk
+9612,Lepidodendrales order_Lepidodendrales,fossil arborescent plants arising during the early Devonian and conspicuous throughout the Carboniferous
+9613,Lepidoptera order_Lepidoptera,moths and butterflies
+9614,Lepidosauria subclass_Lepidosauria,diapsid reptiles: lizards; snakes; tuataras
+9615,Lepidothamnus genus_Lepidothamnus,small usually shrubby conifers
+9616,Lepiota_clypeolaria,an agaric with a ragged stalk and a soft floccose cap
+9617,Lepiota_naucina,an agaric with greyish white fruiting body and gills that change from pink to dingy red
+9618,Lepiota_rhacodes,an agaric with a large cap with brown scales and a thick stalk
+9619,Lepiota_rubrotincta,an agaric with a relatively small pink to red cap and white gills and stalk
+9620,Lepiotaceae family_Lepiotaceae,a family of fungi having free gills and a cap that is cleanly separable from the stalk
+9621,Lepisma genus_Lepisma,type genus of the Lepismatidae: silverfish
+9622,Lepismatidae family_Lepismatidae,firebrats
+9623,Lepisosteidae family_Lepisosteidae,comprises the genus Lepisosteus
+9624,Lepisosteus genus_Lepisosteus,type genus of the Lepisosteidae: freshwater gars
+9625,Lepomis genus_Lepomis,bream
+9626,Leporidae family_Leporidae,hares and rabbits
+9627,Leptarrhena genus_Leptarrhena,one species: leatherleaf saxifrage
+9628,Leptinotarsa genus_Leptinotarsa,Colorado potato beetles
+9629,Leptodactylidae family_Leptodactylidae,New World frogs; in some classifications essentially coextensive with the family Bufonidae
+9630,Leptodactylus genus_Leptodactylus,type genus of the Leptodactylidae; in some classifications placed in the family Bufonidae
+9631,Leptoglossus genus_Leptoglossus,leaf-footed bugs
+9632,Leptopteris genus_Leptopteris,including some ferns sometimes placed in genus Todea
+9633,Leptoptilus genus_Leptoptilus,adjutant birds and marabous
+9634,Leptotyphlopidae family_Leptotyphlopidae,blind snakes
+9635,Leptotyphlops genus_Leptotyphlops,blind snakes of Asia and Africa and Americas
+9636,Lepus,a constellation in the southern hemisphere near Orion and Columba
+9637,Lepus genus_Lepus,type genus of the Leporidae: hares
+9638,Lermontov Mikhail_Yurievich_Lermontov,Russian writer (1814-1841)
+9639,Lerner Alan_Jay_Lerner,United States lyricist who collaborated on musicals with Frederick Loewe (1918-1986)
+9640,Lesbian,a resident of Lesbos
+9641,Lesbos Lesvos Mytilene,an island of eastern Greece in the eastern Aegean Sea; in antiquity it was famous for lyric poetry
+9642,Lesotho Kingdom_of_Lesotho Basutoland,a landlocked constitutional monarchy in southern Africa; achieved independence from the United Kingdom in 1966
+9643,Lesotho_monetary_unit,monetary unit in Lesotho
+9644,Lesquerella genus_Lesquerella,genus of low-growing hairy herbs: bladderpods
+9645,Lesseps Ferdinand_de_Lesseps Vicomte_Ferdinand_Marie_de_Lesseps,French diplomat who supervised the construction of the Suez Canal (1805-1894)
+9646,Lesser_Antilles Caribees,a group of islands in the southeastern West Indies
+9647,Lesser_Sunda_Islands Nusa_Tenggara,a chain of islands forming a province of Indonesia to the east of Java; includes Bali and Timor
+9648,Lessing Doris_Lessing Doris_May_Lessing,English author of novels and short stories who grew up in Rhodesia (now Zimbabwe) (born in 1919)
+9649,Lessing Gotthold_Ephraim_Lessing,German playwright and leader of the Enlightenment (1729-1781)
+9650,Lethe River_Lethe,(Greek mythology) a river in Hades; the souls of the dead had to drink from it, which made them forget all they had done and suffered when they were alive
+9651,Leto Latona,wife or mistress of Zeus and mother of Apollo and Artemis in ancient mythology; called Latona in Roman mythology
+9652,Letter_of_Jeremiah Epistle_of_Jeremiah,an Apocryphal book consisting of a letter ascribed to Jeremiah to the Jews in exile in Babylon warning them against idolatry
+9653,Leucadendron genus_Leucadendron,large genus of evergreen trees and shrubs having silvery white leaves and solitary terminal flowers with conspicuous silvery bracts
+9654,Leucaena genus_Leucaena,small genus of tropical evergreen trees or shrubs having pods like those of the acacia
+9655,Leucanthemum genus_Leucanthemum,comprises plants often included in the genus Chrysanthemum
+9656,Leuciscus genus_Leuciscus,a genus of fish including: dace, chub
+9657,Leucogenes genus_Leucogenes,New Zealand edelweiss
+9658,Leuctra battle_of_Leuctra,Thebes defeated Sparta in 371 BC; the battle ended Sparta's military supremacy in Greece
+9659,Leuwenhoek Leeuwenhoek Anton_van_Leuwenhoek Anton_van_Leeuwenhoek,Dutch pioneer microscopist who was among the first to recognize cells in animals and who gave the first accurate descriptions of microbes and spermatozoa and blood corpuscles (1632-1723)
+9660,Levant,the former name for the geographical area of the eastern Mediterranean that is now occupied by Lebanon, Syria, and Israel
+9661,Levant Levant_morocco,a heavy morocco often used in bookbinding
+9662,Levant_cotton Gossypium_herbaceum,Old World annual having heart-shaped leaves and large seeds with short greyish lint removed with difficulty; considered an ancestor of modern short-staple cottons
+9663,Levantine,(formerly) a native or inhabitant of the Levant
+9664,Levi's levis,a popular brand of jeans
+9665,Levi-Strauss Claude_Levi-Strauss,French cultural anthropologist who promoted structural analysis of social systems (born in 1908)
+9666,Levisticum genus_Levisticum,genus of aromatic European herbs with yellow flowers
+9667,Levite,a member of the Hebrew tribe of Levi (especially the branch that provided male assistants to the temple priests)
+9668,Leviticus Book_of_Leviticus,the third book of the Old Testament; contains Levitical law and ritual precedents
+9669,Lewis C._S._Lewis Clive_Staples_Lewis,English critic and novelist; author of theological works and of books for children (1898-1963)
+9670,Lewis Carl_Lewis Frederick_Carleton_Lewis,United States athlete who won gold medals at the Olympics for his skill in sprinting and jumping (born in 1961)
+9671,Lewis Jerry_Lee_Lewis,United States rock star singer and pianist (born in 1935)
+9672,Lewis John_L._Lewis John_Llewelly_Lewis,United States labor leader who was president of the United Mine Workers of America from 1920 to 1960 and president of the Congress of Industrial Organizations from 1935 to 1940 (1880-1969)
+9673,Lewis Meriwether_Lewis,United States explorer and soldier who lead led an expedition from St. Louis to the mouth of the Columbia River (1774-1809)
+9674,Lewis Sinclair_Lewis Harry_Sinclair_Lewis,United States novelist who satirized middle-class America in his novel Main Street (1885-1951)
+9675,Lewis_and_Clark_Expedition,an expedition sent by Thomas Jefferson to explore the northwestern territories of the United States; led by Meriwether Lewis and William Clark; traveled from St. Louis to the mouth of the Columbia River from 1803 to 1806
+9676,Lewisia genus_Lewisia,genus of western North American low-growing herbs having linear woolly leaves and large pink flowers
+9677,Lewiston,a town in southwestern Maine to the north of Portland
+9678,Lewiston,a town in northwestern Idaho
+9679,Lexington,town in eastern Massachusetts near Boston where the first battle of the American Revolution was fought
+9680,Lexington,a city in eastern Kentucky; noted for raising thoroughbred horses
+9681,Lexington Concord Lexington_and_Concord,the first battle of the American Revolution (April 19, 1775)
+9682,Leycesteria genus_Leycesteria,small species of shrubs of western Himalayas to China
+9683,Leydig_cell Leydig's_cell,a cell in the testes that secretes the hormone testosterone
+9684,Leymus genus_Leymus,genus that in some classifications overlaps the genus Elymus
+9685,Leyte Leyte_Island Leyte_invasion,a battle in World War II; the return of United States troops to the Philippines began with landings on Leyte Island in October 1944; the battle marked first use of kamikaze aircraft by the Japanese
+9686,Lhasa Lassa capital_of_Tibet Forbidden_City,the sacred city of Lamaism; known as the Forbidden City for its former inaccessibility and hostility to strangers
+9687,Lhasa Lhasa_apso,a breed of terrier having a long heavy coat raised in Tibet as watchdogs
+9688,Lhotse,a mountain in the central Himalayas on the border of Tibet and Nepal (27,890 feet high)
+9689,Li_Po,Chinese lyric poet (700-762)
+9690,Liao Liao_dynasty,the dynasty that ruled much of Manchuria and northeastern China from 947 to 1125
+9691,Liaodong_Peninsula Liaodong_Bandao,a peninsula in northeastern China that extends into the Yellow Sea, between Bo Hai and Korea Bay
+9692,Liatris genus_Liatris,genus of perennial North American herbs with aromatic usually cormous roots
+9693,Libby Willard_Frank_Libby,United States chemist who developed a method of radiocarbon dating (1908-1980)
+9694,Liberal_Democrat_Party,a political party in Great Britain; formerly the Liberal Party; advocates reforms and improvement of the conditions of working people
+9695,Liberal_Party,a political party in Australia, Canada, and other nations, and formerly in Great Britain
+9696,Liberation_Tigers_of_Tamil_Eelam LTTE Tamil_Tigers Tigers World_Tamil_Association World_Tamil_Movement,a terrorist organization in Sri Lanka that began in 1970 as a student protest over the limited university access for Tamil students; currently seeks to establish an independent Tamil state called Eelam; relies on guerilla strategy including terrorist tactics that target key government and military personnel; "the Tamil Tigers perfected suicide bombing as a weapon of war"
+9697,Liberia Republic_of_Liberia,a republic in West Africa; established in 1822 by Americans as a way to free negro slaves
+9698,Liberian,a native or inhabitant of Liberia
+9699,Liberian_coffee Coffea_liberica,small tree of West Africa
+9700,Liberian_dollar,the basic unit of money in Liberia
+9701,Liberty_Bell,the bell of Independence Hall; rung 8 July 1776 to announce the signing of the Declaration of Independence
+9702,Liberty_Island Bedloe's_Island,an island in New York Bay to the southwest of Manhattan where the Statue of Liberty stands; "Congress officially changed the name from Bedloe's Island to Liberty Island in 1956"
+9703,Liberty_Party,a former political party in the United States; formed in 1839 to oppose the practice of slavery; merged with the Free Soil Party in 1848
+9704,Liberty_ship,a slow cargo ship built during World War II
+9705,Libocedrus genus_Libocedrus,cypresses that resemble cedars
+9706,Libra,a small faint zodiacal constellation in the southern hemisphere; between Virgo and Scorpius
+9707,Libra Balance,(astrology) a person who is born while the sun is in Libra
+9708,Libra Libra_the_Balance Balance Libra_the_Scales,the seventh sign of the zodiac; the sun is in this sign from about September 23 to October 22
+9709,Libreville capital_of_Gabon,the capital of Gabon
+9710,Libya Socialist_People's_Libyan_Arab_Jamahiriya,a military dictatorship in northern Africa on the Mediterranean; consists almost entirely of desert; a major exporter of petroleum
+9711,Libyan,a native or inhabitant of Libya
+9712,Libyan_Desert,the northeastern part of the Sahara Desert in Libya and Egypt and Sudan
+9713,Libyan_Islamic_Fighting_Group FIG Al-Jama'a_al-Islamiyyah_al-Muqatilah_bi-Libya Libyan_Fighting_Group Libyan_Islamic_Group,a Libyan terrorist group organized in 1995 and aligned with al-Qaeda; seeks to radicalize the Libyan government; attempted to assassinate Qaddafi
+9714,Libyan_dinar dinar,the basic unit of money in Libya
+9715,Libyan_dirham dirham,100 dirhams equal 1 dinar in Libya
+9716,Libyan_monetary_unit,monetary unit in Libya
+9717,Lichanura genus_Lichanura,boas of western North America
+9718,Lichenales order_Lichenales,category used especially in former classifications for organisms now constituting the division Lichenes
+9719,Lichenes division_Lichenes,comprising the lichens which grow symbiotically with algae; sometimes treated as an independent group more or less coordinate with algae and fungi
+9720,Lichtenstein Roy_Lichtenstein,United States painter who was a leading exponent of pop art (1923-1997)
+9721,Lidocaine Xylocaine,a local anesthetic (trade names Lidocaine and Xylocaine) used topically on the skin and mucous membranes
+9722,Lie Trygve_Lie Trygve_Halvden_Lie,Norwegian diplomat who was the first Secretary General of the United Nations (1896-1968)
+9723,Liebig_condenser,a condenser: during distillation the vapor passes through a tube that is cooled by water
+9724,Liechtenstein Principality_of_Liechtenstein,a small landlocked principality (constitutional monarchy) in central Europe located in the Alps between Austria and Switzerland
+9725,Liechtensteiner,a native or inhabitant of Liechtenstein
+9726,Liederkranz,a soft cheese with a strong odor and flavor
+9727,Liege Luik,city in eastern Belgium; largest French-speaking city in Belgium
+9728,Liepaja,a city of southwestern Latvia on the Baltic Sea
+9729,Life_Saver,a candy shaped like a small lifesaver
+9730,Ligularia genus_Ligularia,genus of Old World herbs resembling groundsel: leopard plants
+9731,Liguria,region of northwestern Italy on the Ligurian Sea
+9732,Ligurian_Sea,an arm of the Mediterranean between northwest Italy and Corsica
+9733,Ligustrum genus_Ligustrum,genus of Old World shrubs: privet
+9734,Ligustrum_obtusifolium,small deciduous shrub having graceful arching branches and luxuriant foliage
+9735,Liliaceae family_Liliaceae lily_family,includes species sometimes divided among the following families: Alliaceae; Aloeaceae; Alstroemeriaceae; Aphyllanthaceae; Asparagaceae; Asphodelaceae; Colchicaceae; Convallariaceae; Hemerocallidaceae; Hostaceae; Hyacinthaceae; Melanthiaceae; Ruscaceae; Smilacaceae; Tecophilaeacea; Xanthorrhoeaceae
+9736,Liliales order_Liliales,an order of monocotyledonous plants including Amaryllidaceae and Liliaceae and Iridaceae
+9737,Liliidae subclass_Liliidae,one of four subclasses or superorders of Monocotyledones; comprises 17 families including: Liliaceae; Alliaceae; Amaryllidaceae; Iridaceae; Orchidaceae; Trilliaceae
+9738,Lilith,in ancient Semitic folklore: a female demon who attacks children
+9739,Lilium genus_Lilium,type genus of Liliaceae
+9740,Liliuokalani Lydia_Kamekeha_Paki_Liliuokalani,queen of the Hawaiian islands (1838-1917)
+9741,Lille,an industrial city in northern France near the Belgian border; was the medieval capital of Flanders
+9742,Lillie Beatrice_Lillie Lady_Peel,British actress (born in Canada) (1898-1989)
+9743,Lilliput,a land imagined by Jonathan Swift that was inhabited by tiny people
+9744,Lilliputian,a 6-inch tall inhabitant of Lilliput in a novel by Jonathan Swift
+9745,Lilo,a type of inflatable air mattress
+9746,Lilongwe capital_of_Malawi,the capital of Malawi; located in south central Malawi
+9747,Lima capital_of_Peru,capital and largest city and economic center of Peru; located in western Peru; was capital of the Spanish empire in the New World until the 19th century
+9748,Limacidae family_Limacidae,slugs
+9749,Limanda genus_Limanda,a genus of Pleuronectidae; righteye flounders having a humped nose and small scales; the underside is often brightly colored
+9750,Limax genus_Limax,a genus of Limacidae
+9751,Limburger,a soft white cheese with a very strong pungent odor and flavor
+9752,Limeira,a city of southeastern Brazil (northwest of Sao Paulo)
+9753,Limenitis genus_Limenitis,mainly dark northern butterflies with white wing bars
+9754,Limerick,port city in southwestern Ireland
+9755,Limicolae suborder_Limicolae,term used in some classifications for migratory shorebirds; coextensive with the Charadrii
+9756,Limnobium genus_Limnobium,American frogbit
+9757,Limnocryptes genus_Limnocryptes,snipe
+9758,Limnodromus genus_Limnodromus,dowitchers
+9759,Limonium genus_Limonium,sea lavender
+9760,Limosa genus_Limosa,godwits
+9761,Limousin,a region of central France to the west of the Auvergne mountains
+9762,Limpopo Crocodile_River,an African river; flows into the Indian Ocean
+9763,Limulidae family_Limulidae,horseshoe crabs
+9764,Limulus genus_Limulus,type genus of the family Limulidae
+9765,Lin Maya_Lin,United States sculptor and architect whose public works include the memorial to veterans of the Vietnam War in Washington (born in 1959)
+9766,Linaceae family_Linaceae flax_family,a widely distributed family of plants
+9767,Linanthus genus_Linanthus,a genus of herbs of the family Polemoniaceae; found in western United States
+9768,Linaria genus_Linaria,genus of herbs and subshrubs having showy flowers: spurred snapdragon
+9769,Lincoln,long-wooled mutton sheep originally from Lincolnshire
+9770,Lincoln Abraham_Lincoln President_Lincoln President_Abraham_Lincoln,16th President of the United States; saved the Union during the American Civil War and emancipated the slaves; was assassinated by Booth (1809-1865)
+9771,Lincoln capital_of_Nebraska,capital of the state of Nebraska; located in southeastern Nebraska; site of the University of Nebraska
+9772,Lincoln's_Birthday February_12,the day on which President Abraham Lincoln is remembered
+9773,Lincoln_Memorial,memorial building in Washington containing a large marble statue of Abraham Lincoln
+9774,Lincolnshire,an agricultural county of eastern England on the North Sea
+9775,Lind Jenny_Lind Swedish_Nightingale,Swedish soprano who toured the United States under the management of P. T. Barnum (1820-1887)
+9776,Lindbergh Charles_Lindbergh Charles_A._Lindbergh Charles_Augustus_Lindbergh Lucky_Lindy,United States aviator who in 1927 made the first solo nonstop flight across the Atlantic Ocean (1902-1974)
+9777,Lindera genus_Lindera,aromatic evergreen or deciduous dioecious shrubs or trees of eastern Asia and North America
+9778,Lindesnes Naze,a cape at the southern tip of Norway
+9779,Lindheimera genus_Lindheimera,one species: Texas star
+9780,Lindsay Howard_Lindsay,United States playwright who collaborated with Russel Crouse on several musicals (1889-1931)
+9781,Lindsay Vachel_Lindsay Nicholas_Vachel_Lindsay,United States poet who traveled the country trading his poems for room and board (1879-1931)
+9782,Line_of_Control,a 450-mile line that is supposed to indicate the boundary between the part of Kashmir controlled by India and the part controlled by Pakistan
+9783,Linear_A,an undeciphered writing system used in Crete in the 17th century B.C.
+9784,Linear_B,a syllabic script used in Greece in the 13th century B.C.
+9785,Ling-pao Mystic_Jewel,a member of the Taoist Trinity
+9786,Lingualumina,an artificial language
+9787,Lingvo_Kosmopolita,an artificial language
+9788,Link_trainer,an early form of flight simulator
+9789,Linnaea genus_Linnaea,one species: twinflower
+9790,Linnaeus Carolus_Linnaeus Carl_von_Linne Karl_Linne,Swedish botanist who proposed the modern system of biological nomenclature (1707-1778)
+9791,Linotype Linotype_machine,a typesetting machine operated from a keyboard that casts an entire line as a single slug of metal
+9792,Linum genus_Linum,a herbaceous plant genus of the family Linaceae with small sessile leaves
+9793,Linux,an open-source version of the UNIX operating system
+9794,Linz Lentia,city in northern Austria on the Danube; noted as a cultural center
+9795,Liomys genus_Liomys,pocket mice
+9796,Lions_Club International_Association_of_Lions_clubs,club dedicated to promoting responsible citizenship and good government and community and national and international welfare
+9797,Liopelma_hamiltoni,primitive New Zealand frog with four unwebbed toes on forefeet and five on hind feet
+9798,Liparididae family_Liparididae Liparidae family_Liparidae,snailfishes
+9799,Liparis genus_Liparis,type genus of the Liparididae: snailfishes
+9800,Lipchitz Jacques_Lipchitz,United States sculptor (born in Lithuania) who pioneered cubist sculpture (1891-1973)
+9801,Lipmann Fritz_Albert_Lipmann,United States biochemist (born in Germany) noted for his studies of metabolic processes (1899-1986)
+9802,Liposcelis genus_Liposcelis,a genus of Psocidae
+9803,Lipotyphla suborder_Lipotyphla,moles; hedgehogs; true shrews
+9804,Lippi Filippino_Lippi,Italian painter and son of Fra Filippo Lippi (1457-1504)
+9805,Lippi Fra_Filippo_Lippi,Italian painter whose works show a three-dimensional style (1406-1469)
+9806,Lippizan Lipizzan Lippizaner,a compact and sturdy saddle horse that is bred and trained in Vienna; smart and docile and excellent for dressage; "a Lippizan is black or brown when born but turns white by the time it is five years old"
+9807,Lippmann Gabriel_Lippmann,French physicist who developed the first color photographic process (1845-1921)
+9808,Lippmann Walter_Lippmann,United States journalist (1889-1974)
+9809,Lipscomb William_Nunn_Lipscom_Jr.,United States chemist noted for his theories of molecular structure (born in 1919)
+9810,Lir Ler,the sea personified; father of Manannan; corresponds to Welsh Llyr
+9811,Liriodendron genus_Liriodendron,tulip trees
+9812,Liriope genus_Liriope,sometimes placed in family Convallariaceae: lilyturf
+9813,Lisbon Lisboa capital_of_Portugal,capital and largest city and economic and cultural center of Portugal; a major port in western Portugal on Tagus River where it broadens and empties into the Atlantic
+9814,Lister Joseph_Lister Baron_Lister,English surgeon who was the first to use antiseptics (1827-1912)
+9815,Listera genus_Listera,genus of terrestrial orchids having usually a single pair of broad shining leaves near the middle of the stem; found in temperate Asia and North America and Europe
+9816,Listeria_monocytogenes L._monocytogenes,the type species of the genus Listeria; can cause meningitis, encephalitis, septicemia, endocarditis, abortion, abscesses, listeriosis
+9817,Liston Sonny_Liston Charles_Liston,United States prizefighter who lost his world heavyweight championship to Cassius Clay in 1964 (1932-1970)
+9818,Lisu,a Loloish language
+9819,Liszt Franz_Liszt,Hungarian composer and piano virtuoso (1811-1886)
+9820,Litany,a prayer consisting of a series of invocations by the priest with responses from the congregation
+9821,Lithocarpus genus_Lithocarpus,tanbark oaks
+9822,Lithodidae family_Lithodidae,deep-sea crabs of cold waters
+9823,Lithophragma genus_Lithophragma,small genus of perennial herbs of the western North America
+9824,Lithospermum genus_Lithospermum,annual or perennial herbaceous or shrubby plants; cosmopolitan except Australia
+9825,Lithuania Republic_of_Lithuania Lietuva,a republic in northeastern Europe on the Baltic Sea
+9826,Lithuanian,a native or inhabitant of Lithuania
+9827,Lithuanian,the official language of Lithuania; belongs to the Baltic branch of Indo-European
+9828,Lithuanian_monetary_unit,monetary unit in Lithuania
+9829,Litocranius genus_Litocranius,antelopes of eastern Africa: gerenuks
+9830,Little_Bear Ursa_Minor,a constellation outside the zodiac that rotates around the North Star
+9831,Little_Bighorn Battle_of_Little_Bighorn Battle_of_the_Little_Bighorn Custer's_Last_Stand,a battle in Montana near the Little Bighorn River between United States cavalry under Custer and several groups of Native Americans (1876); Custer was pursuing Sioux led by Sitting Bull; Custer underestimated the size of the Sioux forces (which were supported by Cheyenne warriors) and was killed along with all his command
+9832,Little_Bighorn Little_Bighorn_River Little_Horn,a river that flows from northern Wyoming into the Bighorn River in southern Montana; site of Custer's Last Stand
+9833,Little_Dipper Dipper,a cluster of seven stars in Ursa Minor; at the end of the dipper's handle is Polaris
+9834,Little_John,legendary follower of Robin Hood; noted for his size and strength
+9835,Little_Missouri Little_Missouri_River,a river that rises in northeastern Wyoming and flows through Montana and South Dakota to join the Missouri River in North Dakota
+9836,Little_Office,a Roman Catholic office honoring the Virgin Mary; similar to but shorter than the Divine Office
+9837,Little_Red_Riding_Hood,a girl in a fairy tale who meets a wolf while going to visit her grandmother
+9838,Little_Rock capital_of_Arkansas,the state capital and largest city of Arkansas in the central part of Arkansas on the Arkansas River
+9839,Little_Sioux_River,a river that rises in southwestern Minnesota and flows southwestward to the Missouri River in western Iowa
+9840,Little_Wabash Little_Wabash_River,a river in eastern Illinois that flows southeastward to the Wabash River
+9841,Littorina genus_Littorina,type genus of the family Littorinidae: periwinkles
+9842,Littorinidae family_Littorinidae,periwinkles
+9843,Littre Maximilien_Paul_Emile_Littre,French lexicographer (1801-1881)
+9844,Livermore Mary_Ashton_Rice_Livermore,United States suffragist (1820-1905)
+9845,Liverpool,a large city in northwestern England; its port is the country's major outlet for industrial exports
+9846,Liverpudlian Scouser,a native or resident of Liverpool
+9847,Livingston Robert_R._Livingston,American Revolutionary leader who served in the Continental Congress and as minister to France (1746-1813)
+9848,Livingstone David_Livingstone,Scottish missionary and explorer who discovered the Zambezi River and Victoria Falls (1813-1873)
+9849,Livistona genus_Livistona,fan palms of Asia and Australia and Malaysia
+9850,Livonia,a region on the Baltic that is divided between northern Estonia and southern Latvia
+9851,Livonian,a member of the Livonian-speaking people of Latvia
+9852,Livonian,the Finnic language spoken by the people of Livonia in Estonia and Latvia
+9853,Livy Titus_Livius,Roman historian whose history of Rome filled 142 volumes (of which only 35 survive) including the earliest history of the war with Hannibal (59 BC to AD 17)
+9854,Ljubljana,the capital of Slovenia
+9855,Llano_Estacado,a large semiarid plateau forming the southern part of the Great Plains
+9856,Llew_Llaw_Gyffes,son of Gwydion and Arianrhod; supported by magic of Gwydion; cursed by Arianrhod
+9857,Lloyd Harold_Lloyd Harold_Clayton_Lloyd,United States comic actor in silent films; he used physical danger as a source of comedy (1893-1971)
+9858,Lloyd_Webber Andrew_Lloyd_Webber Baron_Lloyd_Webber_of_Sydmonton,English composer of many successful musicals (some in collaboration with Sir Tim Rice) (born in 1948)
+9859,Llullaillaco,a mountain in the Andes on the border between Argentina and Chile (22,057 feet high)
+9860,Llyr,Celtic deity who was the father of Manawydan; corresponds to Irish Lir
+9861,Lo/Ovral,trade name for an oral contraceptive containing estradiol and norgestrel
+9862,Loafer,a low leather step-in shoe; the top resembles a moccasin but it has a broad flat heel
+9863,Loasaceae family_Loasaceae loasa_family,family of bristly hairy sometimes climbing plants; America and Africa and southern Arabia
+9864,Lobachevsky Nikolai_Ivanovich_Lobachevsky,Russian mathematician who independently discovered non-Euclidean geometry (1792-1856)
+9865,Lobata order_Lobata,ctenophore having tentacles only in the immature stage; body compressed vertically having two large oral lobes and four pointed processes
+9866,Lobeliaceae family_Lobeliaceae lobelia_family,not recognized in all classification systems; in some classifications lobeliaceous plants are included in family Campanulaceae
+9867,Lobipes genus_Lobipes,a genus of Phalaropidae
+9868,Lobito,a seaport on the Atlantic coast of Angola
+9869,Lobotes genus_Lobotes,type genus of the Lobotidae
+9870,Lobotidae family_Lobotidae,tripletails
+9871,Lobularia genus_Lobularia,sweet alyssum
+9872,Loch_Achray,a lake in central Scotland
+9873,Loch_Linnhe,an inlet of the Atlantic Ocean on the western coast of Scotland
+9874,Loch_Ness,a lake in the Scottish highlands; the largest body of fresh water in Great Britain
+9875,Loch_Ness_monster Nessie,a large aquatic animal supposed to resemble a serpent or plesiosaur of Loch Ness in Scotland
+9876,Lochaber_ax,a battle-ax formerly used by Scottish Highlanders
+9877,Locke John_Locke,English empiricist philosopher who believed that all knowledge is derived from sensory experience (1632-1704)
+9878,Locusta genus_Locusta,a genus of Acrididae
+9879,Lodge Sir_Oliver_Lodge Sir_Oliver_Joseph_Lodge,English physicist who studied electromagnetic radiation and was a pioneer of radiotelegraphy (1851-1940)
+9880,Lodz,a large city of central Poland
+9881,Loeb Jacques_Loeb,United States physiologist (born in Germany) who did research on parthenogenesis (1859-1924)
+9882,Loestrin,trade name for an oral contraceptive containing estradiol and norethindrone
+9883,Loewe Frederick_Loewe,United States composer (born in Austria) who collaborated with Lerner on several musicals (1901-1987)
+9884,Loewi Otto_Loewi,United States pharmacologist (born in Germany) who was the first to show that acetylcholine is produced at the junction between a parasympathetic nerve and a muscle (1873-1961)
+9885,Lofortyx genus_Lofortyx,California quail
+9886,Lofoten,a string of islands off the northwestern coast of Norway in the Norwegian Sea
+9887,Logan Mount_Logan,a mountain peak in the St. Elias Range in the southwestern Yukon Territory in Canada (19,850 feet high)
+9888,Logania genus_Logania,type genus of the Loganiaceae; Australian and New Zealand shrubs sometimes cultivated for their flowers
+9889,Loganiaceae family_Loganiaceae,a dicotyledonous family of plants of order Gentianales
+9890,Logrono,a city in northern Spain on the Ebro River
+9891,Loire Loire_River,the longest French river; rises in the Massif Central and flows north and west to the Atlantic Ocean
+9892,Loire_Valley,the valley of the Loire River where many French wines originated
+9893,Loiseleuria genus_Loiseleuria,one species: alpine azalea
+9894,Loki,(Norse mythology) trickster; god of discord and mischief; contrived death of Balder and was overcome by Thor
+9895,Lolita,a sexually precocious young girl
+9896,Lolium genus_Lolium,darnel; ryegrass
+9897,Lolo Yi,a Loloish language
+9898,Lolo-Burmese Burmese-Yi,the Tibeto-Burman language spoken in northern Burma and Yunnan
+9899,Loloish,languages spoken by hill tribes in northern Burma and neighboring areas
+9900,Lomariopsidaceae family_Lomariopsidaceae,small family of usually scandent ferns
+9901,Lombard Langobard,a member of a Germanic people who invaded northern Italy in the 6th century
+9902,Lombard_Street,a street in central London containing many of the major London banks
+9903,Lombardy Lombardia,a region of north central Italy bordering Switzerland
+9904,Lombardy_poplar Populus_nigra_italica,distinguished by its columnar fastigiate shape and erect branches
+9905,Lome capital_of_Togo,capital and largest city of Togo; located in the south on the Gulf of Guinea
+9906,Lomogramma genus_Lomogramma,large scandent ferns of southeastern Asia
+9907,Lomotil,trade name of an antidiarrheal
+9908,Lonas genus_Lonas,one species: yellow ageratum
+9909,Lonchocarpus genus_Lonchocarpus,genus of chiefly tropical American shrubs and trees having pinnate leaves and red or white flowers
+9910,London Greater_London British_capital capital_of_the_United_Kingdom,the capital and largest city of England; located on the Thames in southeastern England; financial and industrial and cultural center
+9911,London Jack_London John_Griffith_Chaney,United States writer of novels based on experiences in the Klondike gold rush (1876-1916)
+9912,London_plane Platanus_acerifolia,very large fast-growing tree much planted as a street tree
+9913,Londoner,a native or resident of London
+9914,Long_Beach,a city in southern California located on 8.5 miles of Pacific beachfront; was a resort until oil was discovered in 1921
+9915,Long_Island,an island in southeastern New York; Brooklyn and Queens are on its western end
+9916,Long_Island_Sound,a sound between Long Island and Connecticut
+9917,Longfellow Henry_Wadsworth_Longfellow,United States poet remembered for his long narrative poems (1807-1882)
+9918,Lonicera genus_Lonicera,woodbine
+9919,Loos Adolf_Loos,Austrian architect (1870-1933)
+9920,Lophiidae family_Lophiidae,large-headed marine fishes comprising the anglers
+9921,Lophius genus_Lophius,type genus of family Lophiidae
+9922,Lophodytes genus_Lophodytes,a genus of Merginae
+9923,Lopholatilus genus_Lopholatilus,large brightly colored food fish of deep Atlantic waters
+9924,Lophophora genus_Lophophora,two species of small cacti of northeastern Mexico and southwestern United States having rounded stems covered with jointed tubercles: mescal
+9925,Lophophorus genus_Lophophorus,monals
+9926,Lophosoria genus_Lophosoria,one species: tree fern of Central and South America
+9927,Lophosoriaceae family_Lophosoriaceae,very small family of tree ferns
+9928,Loranthaceae family_Loranthaceae mistletoe_family,in some classification includes Viscaceae: parasitic or hemiparasitic shrublets or shrubs or small trees of tropical and temperate regions; attach to hosts by haustoria
+9929,Loranthus genus_Loranthus,type genus of the Loranthaceae: 1 species
+9930,Lord noble nobleman,a titled peer of the realm
+9931,Lord's_Prayer,the prayer that Christ gave his disciples in the Sermon on the Mount (Matthew 6:9-13)
+9932,Lord's_Resistance_Army,a quasi-religious rebel group in Uganda that terrorized and raped women and kidnapped children who were forced to serve in the army
+9933,Lord_Chancellor Lord_High_Chancellor,the highest officer of the Crown who is head of the judiciary and who presides in the House of Lords
+9934,Lord_Privy_Seal,the senior cabinet minister in the British Cabinet who has no official duties
+9935,Lord_of_Misrule,a person appointed master of revels at a Christmas celebration
+9936,Lordship,a title used to address any British peer except a duke and extended to a bishop or a judge; "Your Lordship"; "His Lordship"
+9937,Lorelei,a Siren of German legend who lured boatmen in the Rhine to destruction
+9938,Loren Sophia_Loren Sofia_Scicolone,Italian film actress (born in 1934)
+9939,Lorentz Hendrik_Antoon_Lorentz,Dutch physicist noted for work on electromagnetic theory (1853-1928)
+9940,Lorentz_force,the force experienced by a point charge moving along a wire that is in a magnetic field; the force is at right angles to both the current and the magnetic field; "the Lorentz force can be used to suspend a current-carrying object between two magnets"
+9941,Lorenz Konrad_Lorenz Konrad_Zacharias_Lorenz,Austrian zoologist who studied the behavior of birds and emphasized the importance of innate as opposed to learned behaviors (1903-1989)
+9942,Lorenzo_de'Medici Lorenzo_the_Magnificent,Italian statesman and scholar who supported many artists and humanists including Michelangelo and Leonardo and Botticelli (1449-1492)
+9943,Lorenzo_dressing,vinaigrette with chili sauce and chopped watercress
+9944,Loricata order_Loricata,former name for the order Crocodylia
+9945,Loriinae subfamily_Loriinae,lories
+9946,Lorisidae family_Lorisidae,slow-moving omnivorous nocturnal primates of tropical Asia; usually tailless
+9947,Lorraine Lothringen,an eastern French region rich in iron-ore deposits
+9948,Lorraine_cross cross_of_Lorraine,a cross with two crossbars, one above and one below the midpoint of the vertical, the lower longer than the upper
+9949,Lorre Peter_Lorre Laszlo_Lowestein,United States actor (born in Hungary) noted for playing sinister roles (1904-1964)
+9950,Los_Alamos,a town in north central New Mexico; in 1942 it was chosen as a nuclear research site where the first atomic bombs were produced
+9951,Los_Angeles City_of_the_Angels L.A.,a city in southern California; motion picture capital of the world; most populous city of California and second largest in the United States
+9952,Lost_Tribes,the ten Tribes of Israel that were deported into captivity in Assyria around 720 BC (leaving only the tribes of Judah and Benjamin)
+9953,Lot,(Old Testament) nephew of Abraham; God destroyed Sodom and Gomorrah but chose to spare Lot and his family who were told to flee without looking back at the destruction
+9954,Lot's_wife,(Old Testament) when God destroyed Sodom and Gomorrah, Lot and his family were told to flee without looking back; Lot's wife was disobedient and was immediately changed into a pillar of salt
+9955,Lota genus_Lota,burbot
+9956,Lothario,a successful womanizer; a man who behaves selfishly in his sexual relationships with women
+9957,Lothian_Region,a district in southeast central Scotland (south side of the Firth of Forth) and the location of Edinburgh
+9958,Lotus genus_Lotus,annual or perennial herbs or subshrubs
+9959,Louis Joe_Louis Joseph_Louis_Barrow,United States prizefighter who was world heavyweight champion for 12 years (1914-1981)
+9960,Louis_I Louis_the_Pious,third son of Charlemagne and king of France and Germany and Holy Roman Emperor (778-840)
+9961,Louis_II Louis_le_Begue Louis_the_Stammerer Louis_the_German,king of France and Germany (846-879)
+9962,Louis_III,son of Louis II and king of the France and Germany (863-882)
+9963,Louis_IV Louis_d'Outremer,king of France (921-954)
+9964,Louis_IX Saint_Louis St._Louis,king of France and son of Louis VIII; he led two unsuccessful Crusades; considered an ideal medieval king (1214-1270)
+9965,Louis_V Louis_le_Faineant,the last Carolingian king of France (967-987)
+9966,Louis_VI Louis_the_Far Louis_the_Wideawake Louis_the_Bruiser,king of France whose military victories consolidated his reign (1081-1137)
+9967,Louis_VII,king of France who led the unsuccessful Second Crusade and fought frequent wars with Henry II of England (1120-1180)
+9968,Louis_VIII,king of France who increased the power of the Crown over the feudal lords (1187-1226)
+9969,Louis_X Louis_le_Hutin Louis_the_Quarreller,king of France (1289-1316)
+9970,Louis_XI,king of France who put down an alliance of unruly nobles and unified France except for Brittany (1423-1483)
+9971,Louis_XII,king of France who was popular with his subjects (1462-1515)
+9972,Louis_XIII,king of France from 1610 to 1643 who relied heavily on the advice of Cardinal Richelieu (1601-1643)
+9973,Louis_XIV Sun_King Louis_the_Great,king of France from 1643 to 1715; his long reign was marked by the expansion of French influence in Europe and by the magnificence of his court and the Palace of Versailles (1638-1715)
+9974,Louis_XV,grandson of Louis XIV and king of France from 1715 to 1774 who led France into the War of the Austrian Succession and the Seven Years' War (1710-1774)
+9975,Louis_XVI,king of France from 1774 to 1792; his failure to grant reforms led to the French Revolution; he and his queen (Marie Antoinette) were guillotined (1754-1793)
+9976,Louisiana Pelican_State LA La.,a state in southern United States on the Gulf of Mexico; one of the Confederate states during the American Civil War
+9977,Louisiana_Purchase,territory in the western United States purchased from France in 1803 for $15 million; extends from the Mississippi River to the Rocky Mountains and from the Gulf of Mexico to Canada
+9978,Louisianan Louisianian,a native or resident of Louisiana
+9979,Louisville,the largest city in Kentucky; located in north central Kentucky on the Ohio river; site of the Kentucky Derby
+9980,Louvre Louvre_Museum,an art museum that is a famous tourist attraction in Paris
+9981,Lovelace Richard_Lovelace,English poet (1618-1857)
+9982,Lovell Sir_Bernard_Lovell Sir_Alfred_Charles_Bernard_Lovell,English astronomer who pioneered radio astronomy (born in 1913)
+9983,Lovoa genus_Lovoa,genus of African timber trees
+9984,Low David_Low Sir_David_Low Sir_David_Alexander_Cecil_Low,British political cartoonist (born in New Zealand) who created the character Colonel Blimp (1891-1963)
+9985,Low_Countries,the lowland region of western Europe on the North Sea: Belgium and Luxembourg and the Netherlands
+9986,Low_German Plattdeutsch,a German dialect spoken in northern Germany
+9987,Low_Latin,any dialect of Latin other than classical Latin
+9988,Low_Mass,a Mass recited without music
+9989,Low_Sunday,the Sunday following Easter
+9990,Lowell Abbott_Lawrence_Lowell,United States educator and president of Harvard University (1856-1943)
+9991,Lowell Amy_Lowell,United States poet (1874-1925)
+9992,Lowell Percival_Lowell,United States astronomer whose studies of Mars led him to conclude that Mars was inhabited (1855-1916)
+9993,Lowell Robert_Lowell Robert_Traill_Spence_Lowell_Jr.,United States poet (1917-1977)
+9994,Lower_California Baja_California,a mountainous peninsula on northwest Mexico
+9995,Lower_Egypt,one of the two main administrative districts of Egypt; consists of the Nile delta
+9996,Lower_Paleolithic,the oldest part of the Paleolithic Age with the emergence of the hand ax; ended about 120,000 years ago
+9997,Lower_Peninsula,the part of Michigan between Lake Michigan and Lake Huron
+9998,Lower_Saxony,a state in northwestern Germany
+9999,Lowlander Scottish_Lowlander Lowland_Scot,a native of the Lowlands of Scotland
+10000,Lowlands Lowlands_of_Scotland,the southern part of Scotland that is not mountainous
+10001,Lowry L._S._Lowry Laurence_Stephen_Lowry,English painter (1887-1976)
+10002,Lowry Malcolm_Lowry Clarence_Malcolm_Lowry,English novelist (1909-1957)
+10003,Loxia genus_Loxia,crossbill
+10004,Loxodonta genus_Loxodonta,a genus of Elephantidae
+10005,Loxoma genus_Loxoma,one species of terrestrial ferns of New Zealand
+10006,Loxomataceae family_Loxomataceae,very small family of New Zealand ferns
+10007,Loxostege genus_Loxostege,garden webworms
+10008,Loxostege_similalis,moth whose larvae are garden webworms
+10009,Loya_Jirga,a grand council or grand assembly used to resolve political conflicts or other national problems; "he convened a Loya Jirga that persuaded tribal leaders to acquiesce"
+10010,Loyalist_Volunteer_Force,a terrorist group formed in 1996 in Northern Ireland; seeks to prevent the peace process; murders Catholics and any Protestant leaders who favor peace
+10011,Lozier Clemence_Sophia_Harned_Lozier,United States physician who in 1863 founded a medical school for women (1813-1888)
+10012,LuGanda,the Bantu language of the Buganda people; spoken in Uganda
+10013,Luanda Angolan_capital,port city on Atlantic coast; the capital and largest city of Angola
+10014,Luba Chiluba,a member of a Bantu people in southeastern Congo
+10015,Luba Tshiluba,a Bantu language spoken in southeastern Congo
+10016,Lubavitch,a town in Belarus that was the center of the Chabad movement for a brief period during the 19th century
+10017,Lubavitch Lubavitch_movement Chabad-Lubavitch Chabad,a large missionary Hasidic movement known for their hospitality, technological expertise, optimism and emphasis on religious study
+10018,Lubavitcher,a member of the Lubavitch movement; a follower of Chabad Hasidism
+10019,Lubbock,a city in northwest Texas to the south of Amarillo
+10020,Lubeck,a city in northwestern Germany and an important Baltic port; a leading member of the Hanseatic League
+10021,Lubitsch Ernst_Lubitsch,German filmmaker of sophisticated comedies (1892-1947)
+10022,Lublin,an industrial city of eastern Poland
+10023,Lubumbashi Elisabethville,a city in southeastern Congo near the border with Zambia; a copper mining center; former name (until 1966) was Elisabethville
+10024,Lucanidae family_Lucanidae,stag beetles
+10025,Lucas George_Lucas,United States screenwriter and filmmaker (born in 1944)
+10026,Luce Clare_Booth_Luce,United States playwright and public official (1902-1987)
+10027,Luce Henry_Luce Henry_Robinson_Luce,United States publisher of magazines (1898-1967)
+10028,Lucilia genus_Lucilia,greenbottle flies
+10029,Lucite Perspex,a transparent thermoplastic acrylic resin
+10030,Lucknow,a city in northern India in Uttar Pradesh; during the Indian Mutiny its British residents were besieged by Indian insurgents
+10031,Lucknow,the British residents of Lucknow were besieged by Indian insurgents during the Indian Mutiny (1857)
+10032,Lucretius Titus_Lucretius_Carus,Roman philosopher and poet; in a long didactic poem he tried to provide a scientific explanation of the universe (96-55 BC)
+10033,Lucullus Licinius_Lucullus Lucius_Licinius_Lucullus,Roman general famous for self-indulgence and giving lavish banquets (circa 110-57 BC)
+10034,Luculus Lucius_Licinius_Luculus,Roman general famous for giving lavish banquets (110-57 BC)
+10035,Lucy,incomplete skeleton of female found in eastern Ethiopia in 1974
+10036,Luda Luta,an industrial conurbation in northeastern China on the southern end of the Liaodong Peninsula; it now includes the cities of Dalian and Lushun
+10037,Luddite,any opponent of technological progress
+10038,Luddite,one of the 19th century English workmen who destroyed laborsaving machinery that they thought would cause unemployment
+10039,Ludi_Saeculares secular_games,the centennial rites and games of ancient Rome that marked the commencement of a new generation (100 years representing the longest life in a generation); observances may have begun as early as the 5th century BC and lasted well into the Christian era
+10040,Ludian,a Baltic-Finnic language
+10041,Lufengpithecus genus_Lufengpithecus,a genus of Hominidae
+10042,Lufkin,a town in eastern Texas
+10043,Luftwaffe German_Luftwaffe,the German airforce
+10044,Lug Lugh,ancient Celtic god
+10045,Luger,a German semiautomatic pistol
+10046,Lugosi Bela_Lugosi Bela_Ferenc_Blasko,United States film actor (born in Hungary) noted for portraying monsters (1884-1956)
+10047,Luke Gospel_of_Luke Gospel_According_to_Luke,one of the four Gospels in the New Testament; contains details of Jesus's birth and early life
+10048,Luke Saint_Luke St._Luke,(New Testament) the Apostle closely associated with St. Paul and traditionally assumed to be the author of the third Gospel
+10049,Lule_Burgas battle_of_Lule_Burgas,the principal battle of the Balkan Wars (1912); Bulgarian forces defeated the Turks
+10050,Lully Jean_Baptiste_Lully Lulli Giambattista_Lulli,French composer (born in Italy) who was the court composer to Louis XIV and founded the national French opera (1632-1687)
+10051,Lully Raymond_Lully Ramon_Lully,Spanish philosopher (1235-1315)
+10052,Lumpenus genus_Lumpenus,a genus of Stichaeidae
+10053,Luna,(Roman mythology) the goddess of the Moon; counterpart of Greek Selene
+10054,Lunaria genus_Lunaria,small genus of European herbs: honesty
+10055,Lund,a city in southern Sweden
+10056,Lunda genus_Lunda,puffins
+10057,Lunt Alfred_Lunt,United States actor who performed with his wife Lynn Fontanne in many stage productions (1893-1977)
+10058,Luo,a Nilotic language
+10059,Luoyang Loyang,a city in east central China; the capital of ancient China during several dynasties
+10060,Lupinus genus_Lupinus,herbs or shrubs: lupin
+10061,Lupus,a constellation in the southern hemisphere near Centaurus
+10062,Lusaka capital_of_Zambia,the capital and largest city of Zambia
+10063,Luscinia genus_Luscinia,nightingales
+10064,Lushun Port_Arthur,a major port city in northeastern China on the Liaodong Peninsula; now a part of Luda
+10065,Lusitania,ancient region and Roman province on the Iberian Peninsula; corresponds roughly to modern Portugal and parts of Spain
+10066,Luther Martin_Luther,German theologian who led the Reformation; believed that salvation is granted on the basis of faith rather than deeds (1483-1546)
+10067,Lutheran,follower of Lutheranism
+10068,Lutheran_Church,the Protestant denomination adhering to the views of Martin Luther
+10069,Lutheranism,teachings of Martin Luther emphasizing the cardinal doctrine of justification by faith alone
+10070,Lutjanidae family_Lutjanidae,snappers
+10071,Lutjanus genus_Lutjanus,type genus of the Lutjanidae: snappers
+10072,Lutra genus_Lutra,in some classifications considered a genus of the subfamily Lutrinae
+10073,Lutrinae subfamily_Lutrinae,subdivision not used in some classifications: otters
+10074,Lutyens Sir_Edwin_Lutyens Sir_Edwin_Landseer_Luytens,English architect who planned the city of New Delhi (1869-1944)
+10075,Lutzen battle_of_Lutzen,a battle in the Thirty Years' War (1632); Swedes under Gustavus Adolphus defeated the Holy Roman Empire under Wallenstein; Gustavus Adolphus was killed
+10076,Luvaridae family_Luvaridae,louvars
+10077,Luvarus genus_Luvarus,type genus of the Luvaridae
+10078,Luwian Luvian,an Anatolian language
+10079,Luxembourg Grand_Duchy_of_Luxembourg Luxemburg,a grand duchy (a constitutional monarchy) landlocked in northwestern Europe between France and Belgium and Germany; an international financial center
+10080,Luxembourg-Ville Luxembourg Luxemburg Luxembourg_City capital_of_Luxembourg,the capital and largest city of Luxembourg
+10081,Luxembourg_franc,formerly the basic unit of money in Luxembourg
+10082,Luxemburger Luxembourger,a native or inhabitant of Luxembourg
+10083,Luxor El-Aksur,a city in central Egypt on the east bank of the Nile that is a center for visitors to the ruins of and around Thebes
+10084,Luyia,a Bantu language
+10085,Luzon,the main island of the Philippines
+10086,Lycaena genus_Lycaena,type genus of the Lycaenidae; small slender butterflies with upper surface of wings usually metallic blue or green or copper
+10087,Lycaenidae family_Lycaenidae,family of small usually brilliantly colored butterflies; males have short forelegs
+10088,Lycaeon genus_Lycaeon,African hunting dog
+10089,Lycia,an ancient region on the coast of southwest Asia Minor
+10090,Lycian,an Anatolian language
+10091,Lycium genus_Lycium,deciduous and evergreen shrubs often spiny; cosmopolitan in temperate and subtropical regions
+10092,Lycoperdaceae family_Lycoperdaceae,a fungus family belonging to the order Lycoperdales; includes puffballs
+10093,Lycoperdales order_Lycoperdales,small order of basidiomycetous fungi having fleshy often globose fruiting bodies; includes puffballs and earthstars
+10094,Lycoperdon genus_Lycoperdon,genus of fungi whose fruiting body tapers toward a base consisting of spongy mycelium
+10095,Lycopersicon genus_Lycopersicon Lycopersicum genus_Lycopersicum,tomatoes
+10096,Lycophyta,used in some classifications for the class Lycopsida: club mosses
+10097,Lycopodiaceae family_Lycopodiaceae clubmoss_family,a family of ferns belonging to the order Lycopodiales
+10098,Lycopodiales order_Lycopodiales,lower vascular plants coextensive with the family Lycopodiaceae; in some classifications includes the Selaginellaceae and Isoetaceae
+10099,Lycopodineae class_Lycopodineae,alternative designation for the class Lycopsida
+10100,Lycopodium genus_Lycopodium,type and sole genus of the Lycopodiaceae; erect or creeping evergreen plants often used for Christmas decorations
+10101,Lycopsida class_Lycopsida Lycopodiate class_Lycopodiate,club mosses and related forms: includes Lycopodiales; Isoetales; Selaginellales; and extinct Lepidodendrales; sometimes considered a subdivision of Tracheophyta
+10102,Lycopus genus_Lycopus,small genus of herbs of the mint family
+10103,Lycosa genus_Lycosa,type genus of the family Lycosidae
+10104,Lycosidae family_Lycosidae,wolf spiders
+10105,Lydia,an ancient region on the coast of western Asia Minor; a powerful kingdom until conquered by the Persians in 546 BC
+10106,Lydian,an Anatolian language
+10107,Lygaeidae family_Lygaeidae,lygaeid bugs
+10108,Lyginopteris genus_Lyginopteris,genus of fossil seed ferns of the Carboniferous
+10109,Lygodium genus_Lygodium,chiefly tropical climbing ferns
+10110,Lygus genus_Lygus,plant-sucking bugs
+10111,Lyly John_Lyly,English writer noted for his elaborate style (1554-1606)
+10112,Lymantria genus_Lymantria,type genus of the Lymantriidae; a pest (Lymantria means `destroyer')
+10113,Lymantriidae family_Lymantriidae,tussock moths
+10114,Lyme_disease Lyme_arthritis,an acute inflammatory disease characterized by a rash with joint swelling and fever; caused by bacteria carried by the bite of a deer tick
+10115,Lynchburg,a city in central Virginia
+10116,Lyon Lyons,a city in east-central France on the Rhone River; a principal producer of silk and rayon
+10117,Lyonia genus_Lyonia,evergreen or deciduous shrubs or small trees of United States to Antilles and eastern Asia to the Himalaya
+10118,Lyonnais,a former province of east central France; now administered by Rhone-Alpes
+10119,Lyonnaise_sauce brown_onion_sauce,brown sauce with sauteed chopped onions and parsley and dry white wine or vinegar
+10120,Lyons First_Council_of_Lyons,the council of the Western Church in 1245 that excommunicated Holy Roman Emperor Frederick II and planned a new crusade against the Holy Land
+10121,Lyons Second_Council_of_Lyons,the council in 1274 that effected a temporary reunion of the Greek Orthodox with the Roman Catholic Church
+10122,Lyra,a small constellation in the northern hemisphere near Cygnus and Draco; contains the star Vega
+10123,Lyrurus genus_Lyrurus,black grouse
+10124,Lysander,Spartan general who defeated the Athenians in the final battle of the Peloponnesian War (died in 395 BC)
+10125,Lysenko Trofim_Denisovich_Lysenko,Soviet geneticist whose adherence to Lamarck's theory of evolution was favored by Stalin (1898-1976)
+10126,Lysichiton genus_Lysichiton Lysichitum genus_Lysichitum,skunk cabbage
+10127,Lysiloma genus_Lysiloma,small genus of tropical American trees and shrubs with pinnate leaves and flat straight pods
+10128,Lysimachia genus_Lysimachia,loosestrife: a cosmopolitan genus found in damp or swampy terrain having usually yellow flowers; inclined to be invasive
+10129,Lysimachus,Macedonian general under Alexander the Great; with Seleucus he defeated Antigonus and Demetrius at the battle of Ipsus (circa 355-281 BC)
+10130,Lysippus,Greek sculptor (4th century BC)
+10131,Lysol,a clear oily brown solution of cresols in soap; used as an antiseptic and disinfectant
+10132,Lythraceae family_Lythraceae loosestrife_family,herbs and shrubs and small trees with pink or purple flowers
+10133,Lythrum genus_Lythrum,loosestrife
+10134,Lytton First_Baron_Lytton Bulwer-Lytton Edward_George_Earle_Bulwer-Lytton,English writer of historical romances (1803-1873)
+10135,M m,the 13th letter of the Roman alphabet
+10136,M-theory,(particle physics) a theory that involves an eleven-dimensional universe in which the weak and strong forces and gravity are unified and to which all the string theories belong
+10137,M1,a measure of the money supply; includes currency in circulation plus demand deposits or checking account balances
+10138,M2,a measure of the money supply; M1 plus net time deposits (other than large certificates of deposit)
+10139,M3,a measure of the money supply; M2 plus deposits at institutions that are not banks (such as savings and loan associations)
+10140,MANPAD,a man-portable surface-to-air missile
+10141,MEDLINE,the computer-based telephone system of the United States National Library of Medicine that provides rapid linkage to MEDLARS
+10142,MIPS million_instructions_per_second,(computer science) a unit for measuring the execution speed of a computer's CPU (but not the whole system); "4 MIPS is 4,000,000 instructions per second"
+10143,MOT MOT_test Ministry_of_Transportation_test,a compulsory annual test of older motor vehicles for safety and exhaust fumes
+10144,MPEG,a set of standards adopted by the moving pictures experts group for the compression of digital video and audio data or a file of data compressed according to those standards
+10145,MS-DOS Microsoft_disk_operating_system,an operating system developed by Bill Gates for personal computers
+10146,Maalox,an antacid
+10147,MacArthur Douglas_MacArthur,United States general who served as chief of staff and commanded Allied forces in the South Pacific during World War II; he accepted the surrender of Japan (1880-1964)
+10148,MacDowell Edward_MacDowell,United States composer best remembered as a composer of works for the piano (1860-1908)
+10149,MacGregor Robert_MacGregor Rob_Roy,Scottish clan leader and outlaw who was the subject of a 1817 novel by Sir Walter Scott (1671-1734)
+10150,MacLeish Archibald_MacLeish,United States poet (1892-1982)
+10151,Macaca genus_Macaca,macaques; rhesus monkeys
+10152,Macadamia_integrifolia,medium-sized tree of eastern Australia having creamy-white flowers
+10153,Macao Macau,a former Portuguese province on the south coast of China and two islands in the South China Sea; reverted to China in 1999
+10154,Macao_monetary_unit,monetary unit in Macao
+10155,Macaulay Thomas_Babington_Macaulay First_Baron_Macaulay Lord_Macaulay,English historian noted for his history of England (1800-1859)
+10156,Macbeth,king of Scotland (died in 1057)
+10157,Mace Chemical_Mace,(trademark) a liquid that temporarily disables a person; prepared as an aerosol and sprayed in the face, it irritates the eyes and causes dizziness and immobilization
+10158,Macedon Macedonia Makedonija,the ancient kingdom of Philip II and Alexander the Great in the southeastern Balkans that is now divided among modern Macedonia and Greece and Bulgaria
+10159,Macedonia,landlocked republic on the Balkan Peninsula; achieved independence from Yugoslavia in 1991
+10160,Macedonian,a native or inhabitant of Macedon
+10161,Macedonian,the Slavic language of modern Macedonia
+10162,Macedonian_War,one the four wars between Macedonia and Rome in the 3rd and 2nd centuries BC, which ended in the defeat of Macedonia and its annexation as a Roman province
+10163,Mach Ernst_Mach,Austrian physicist and philosopher who introduced the Mach number and who founded logical positivism (1838-1916)
+10164,Mach_number,the ratio of the speed of a moving body to the speed of sound
+10165,Machaeranthera genus_Machaeranthera,wildflowers of western North America
+10166,Machiavelli Niccolo_Machiavelli,a statesman of Florence who advocated a strong central government (1469-1527)
+10167,Machiavellian,a follower of Machiavelli's principles
+10168,Machiavellianism,the political doctrine of Machiavelli: any means (however unscrupulous) can be used by a ruler in order to create and maintain his autocratic government
+10169,Machilidae family_Machilidae,jumping bristletails
+10170,Machu_Picchu,Inca fortress city in the Andes in Peru discovered in 1911; it may have been built in the 15th century
+10171,Machupo_virus,the RNA virus that causes Bolivian hemorrhagic fever; carried by rats and mice
+10172,Mackem,a native of Sunderland
+10173,Mackenzie Mackenzie_River,a Canadian river; flows into the Beaufort Sea
+10174,Mackenzie Sir_Alexander_Mackenzie,Canadian explorer (born in England) who explored the Mackenzie River and who was first to cross North America by land north of Mexico (1764-1820)
+10175,Mackinac_Bridge,a suspension bridge across the channel between the lower and upper peninsulas of Michigan
+10176,Macleaya genus_Macleaya,a perennial herb of eastern Asia: plume poppy
+10177,Macleod John_Macleod John_James_Rickard_Macleod,Scottish physiologist who directed the research by F. G. Banting and C. H. Best that led to the discovery of insulin (1876-1935)
+10178,Maclura genus_Maclura,yellowwood trees or shrubs
+10179,Macon,a city in central Georgia to the southeast of Atlanta
+10180,Macoun,similar to McIntosh; juicy and late-ripening
+10181,Macowanites genus_Macowanites,a stout-stemmed genus of fungus belonging to the family Secotiaceae having fruiting bodies that never expand completely
+10182,Macowanites_americanus,a small fungus with a fragile cap that cracks to expose the white context and a white stalk that is practically enclosed by the cap
+10183,Macrocephalon genus_Macrocephalon,maleos
+10184,Macrocheira genus_Macrocheira,giant crabs of Japan
+10185,Macroclemys genus_Macroclemys,includes the alligator snapping turtle
+10186,Macrodactylus genus_Macrodactylus,a genus of Melolonthidae
+10187,Macronectes genus_Macronectes,giant petrels
+10188,Macropodidae family_Macropodidae,kangaroos; wallabies
+10189,Macropus genus_Macropus,type genus of the family Macropodidae: typical kangaroos and wallabies
+10190,Macrorhamphosidae family_Macrorhamphosidae,bellows fishes
+10191,Macrothelypteris genus_Macrothelypteris,medium to large terrestrial ferns of tropical Asia to Polynesia and Australia; naturalized in Americas
+10192,Macrotis genus_Macrotis,a genus of Peramelidae
+10193,Macrotyloma genus_Macrotyloma,annual or perennial vines of Africa and India and Australia; plants often placed in genus Dolichos
+10194,Macrouridae family_Macrouridae Macruridae family_Macruridae,grenadiers
+10195,Macrozoarces genus_Macrozoarces,a genus of Zoarcidae
+10196,Madagascan,a native or inhabitant of Madagascar
+10197,Madagascar,an island in the Indian Ocean off the southeastern coast of Africa; the 4th largest island in the world
+10198,Madagascar Republic_of_Madagascar Malagasy_Republic,a republic on the island of Madagascar; achieved independence from France in 1960
+10199,Madagascar_cat ring-tailed_lemur Lemur_catta,small lemur having its tail barred with black
+10200,Madagascar_franc,the basic unit of money in Madagascar
+10201,Madagascar_jasmine waxflower Stephanotis_floribunda,twining woody vine of Madagascar having thick dark waxy evergreen leaves and clusters of large fragrant waxy white flowers along the stems; widely cultivated in warm regions
+10202,Madeira,an island in the Atlantic Ocean off the coast of Africa; the largest of the Madeira Islands
+10203,Madeira,an amber dessert wine from the Madeira Islands
+10204,Madeira Madeira_River,a Brazilian river; tributary of the Amazon River
+10205,Madeira_Islands Madeiras,a group of volcanic islands in the Atlantic Ocean to the west of Morocco; the group forms an autonomous region of Portugal
+10206,Madeira_cake Madeira_sponge,a rich sponge cake with close texture; intended to be eaten with a glass of Madeira wine
+10207,Madia genus_Madia,genus of sticky herbs with yellow flowers open in morning or evening but closed in bright light
+10208,Madison James_Madison President_Madison,4th President of the United States; member of the Continental Congress and rapporteur at the Constitutional Convention in 1776; helped frame the Bill of Rights (1751-1836)
+10209,Madison capital_of_Wisconsin,capital of the state of Wisconsin; located in the southern part of state; site of the main branch of the University of Wisconsin
+10210,Madonna Madonna_Louise_Ciccone,United States pop singer and sex symbol during the 1980s (born in 1958)
+10211,Madonna_lily white_lily Annunciation_lily Lent_lily Lilium_candidum,lily of eastern Mediterranean and the Balkans with broad funnel-shaped white flowers
+10212,Madoqua genus_Madoqua,genus comprising some small antelopes of eastern and northeastern Africa
+10213,Madreporaria order_Madreporaria,stony corals
+10214,Madrid capital_of_Spain Spanish_capital,the capital and largest city situated centrally in Spain; home of an outstanding art museum
+10215,Mae_West air_jacket,an inflatable life jacket
+10216,Maeandra genus_Maeandra,brain corals
+10217,Maeterlinck Count_Maurice_Maeterlinck,Belgian playwright (1862-1949)
+10218,Mafia Maffia Cosa_Nostra,a crime syndicate in the United States; organized in families; believed to have important relations to the Sicilian Mafia
+10219,Mafia Maffia Sicilian_Mafia,a secret terrorist group in Sicily; originally opposed tyranny but evolved into a criminal organization in the middle of the 19th century
+10220,Magadhan,a subfamily of Indic languages
+10221,Magdalena Magdalena_River,a river that rises in the Andes mountains in southwestern Colombia and flows generally northward to empty into the Caribbean Sea at Barranquilla
+10222,Magellan Ferdinand_Magellan Fernao_Magalhaes,Portuguese navigator in the service of Spain; he commanded an expedition that was the first to circumnavigate the world (1480-1521)
+10223,Magellanic_Cloud,either of two small galaxies orbiting the Milky Way; visible near the south celestial pole
+10224,Magenta Battle_of_Magenta,a battle in 1859 in which the French and Sardinian forces under Napoleon III defeated the Austrians under Francis Joseph I
+10225,Magh Magha,the eleventh month of the Hindu calendar; corresponds to January in the Gregorian calendar
+10226,Maghreb Mahgrib,the region of northwest Africa comprising the Atlas Mountains and the coastlands of Morocco and Algeria and Tunisia
+10227,Magicicada genus_Magicicada,seventeen-year locust
+10228,Maginot Andre_Maginot,French politician who proposed the Maginot Line (1877-1932)
+10229,Maginot_Line,a fortification built before World War II to protect France's eastern border; initially considered to be impregnable, it was easily overrun by the German army in 1940
+10230,Magna_Carta Magna_Charta The_Great_Charter,the royal charter of political rights given to rebellious English barons by King John in 1215
+10231,Magnificat,(Luke) the canticle of the Virgin Mary (from Luke 1:46 beginning `Magnificat anima mea Dominum')
+10232,Magnoliaceae family_Magnoliaceae magnolia_family,subclass Magnoliidae: genera Liriodendron, Magnolia, and Manglietia
+10233,Magnoliidae subclass_Magnoliidae ranalian_complex,a group of families of trees and shrubs and herbs having well-developed perianths and apocarpous ovaries and generally regarded as the most primitive extant flowering plants; contains 36 families including Magnoliaceae and Ranunculaceae; sometimes classified as a superorder
+10234,Magritte Rene_Magritte,Belgian surrealist painter (1898-1967)
+10235,Mah-Jongg mahjong,Chinese game played by 4 people with 144 tiles
+10236,Mahabharata Mahabharatam Mahabharatum,(Hinduism) a sacred epic Sanskrit poem of India dealing in many episodes with the struggle between two rival families
+10237,Mahan Alfred_Thayer_Mahan,United States naval officer and historian (1840-1914)
+10238,Maharashtra,a state in west-central India
+10239,Mahayana,a major school of Buddhism teaching social concern and universal salvation; China; Japan; Tibet; Nepal; Korea; Mongolia
+10240,Mahayana Mahayana_Buddhism,one of two great schools of Buddhist doctrine emphasizing a common search for universal salvation especially through faith alone; the dominant religion of China and Tibet and Japan
+10241,Mahayanism,the religious doctrine of Mahayana Buddhism
+10242,Mahayanist,an adherent of Mahayana Buddhism
+10243,Mahdi,(Islam) a messianic leader who (according to popular Muslim belief) will appear before the end of the world and restore justice and religion
+10244,Mahdism,belief in the appearance of the Mahdi; devotion to a Mahdi
+10245,Mahdist,an adherent of Mahdism
+10246,Mahler Gustav_Mahler,Austrian composer and conductor (1860-1911)
+10247,Mahonia genus_Mahonia,evergreen shrubs and small trees of North and Central America and Asia
+10248,Maianthemum genus_Maianthemum,sometimes placed in family Convallariaceae: false lily of the valley
+10249,Maidu,a member of a North American Indian people living east of the Sacramento river in California
+10250,Maiduguri Yerwa-Maiduguri,a city in northeastern Nigeria; an agricultural trading center
+10251,Mailer Norman_Mailer,United States writer (born in 1923)
+10252,Maillol Aristide_Maillol,French sculptor of monumental female nudes (1861-1944)
+10253,Maimonides Moses_Maimonides Rabbi_Moses_Ben_Maimon,Spanish philosopher considered the greatest Jewish scholar of the Middle Ages who codified Jewish law in the Talmud (1135-1204)
+10254,Main_Street,any small town (or the people who inhabit it); generally used to represent parochialism and materialism (after a novel by Sinclair Lewis); "Main Street will never vote for a liberal politician"
+10255,Maine Pine_Tree_State ME Me.,a state in New England
+10256,Mainer Down_Easter,a native or resident of Maine
+10257,Maintenon Marquise_de_Maintenon Francoise_d'Aubigne Madame_de_Maintenon,French consort of Louis XIV who secretly married the king after the death of his first wife (1635-1719)
+10258,Maitland Frederic_William_Maitland,English historian noted for his works on the history of English law (1850-1906)
+10259,Maitreya,the Bodhisattva who is to appear as a Buddha 5000 years after the death of Gautama
+10260,Maja genus_Maja Maia genus_Maia,type genus of the Majidae; nearly cosmopolitan in distribution
+10261,Majidae family_Majidae,spider crabs
+10262,Major John_Major John_R._Major John_Roy_Major,British statesman who was prime minister from 1990 until 1997 (born in 1943)
+10263,Majorana genus_Majorana,small genus of herbs usually included in the genus Origanum
+10264,Majorca,the largest of the Balearic Islands
+10265,Makaira genus_Makaira,marlins
+10266,Makalu,a mountain in the Himalayas in Nepal (27,790 feet high)
+10267,Makarios_III,Greek Orthodox bishop and archbishop of Cyprus and the first president of independent Cyprus (1913-1977)
+10268,Maksutov_telescope,reflecting telescope in which the aberration of the concave mirror is reduced by a meniscus lens
+10269,Maktab_al-Khidmat MAK,a terrorist organization founded by Osama bin Laden in the 1980s to provide money and recruit fighters around the world; enlisted and transported thousands of men to Afghanistan to fight the Russians; a split in the group led bin Laden and the extremist faction of MAK to form al-Qaeda
+10270,Malabo,the capital and largest city of Equatorial Guinea on the island of Bioko in the Gulf of Guinea
+10271,Malacanthidae family_Malacanthidae,short-headed marine fishes; often brightly colored
+10272,Malacca,the third smallest Malaysian state; located in the southern region of the Malay Peninsula
+10273,Malachi Malachias,a Hebrew minor prophet of the 5th century BC
+10274,Malachi Malachias Book_of_Malachi,an Old Testament book containing the prophecies of Malachi
+10275,Malaclemys genus_Malaclemys,American terrapins
+10276,Malaconotinae subfamily_Malaconotinae,an African bush shrikes
+10277,Malacopterygii superorder_Malacopterygii,an extensive group of teleost fishes having fins supported by flexible cartilaginous rays
+10278,Malacosoma genus_Malacosoma,tent caterpillars
+10279,Malacostraca subclass_Malacostraca,largest subclass of Crustacea including most of the well-known marine, freshwater, and terrestrial crustaceans: crabs; lobsters; shrimps; sow bugs; beach flies
+10280,Malacothamnus genus_Malacothamnus,genus of shrubs or small trees: chaparral mallow
+10281,Malaga,a port city and resort in Andalusia in southern Spain on the Mediterranean
+10282,Malamud Bernard_Malamud,United States writer (1914-1986)
+10283,Malathion,a yellow insecticide used as a dust or spray to control garden pests and house flies and mites
+10284,Malawi Republic_of_Malawi Nyasaland,a landlocked republic in southern central Africa; achieved independence from the United Kingdom in 1964
+10285,Malawi_kwacha kwacha,the basic unit of money in Malawi
+10286,Malawian,a native or inhabitant of Malawi
+10287,Malawian_monetary_unit,monetary unit in Malawi
+10288,Malaxis genus_Malaxis,large genus of largely terrestrial orchids with one or a few plicate leaves and slender spikes or tiny mostly green flowers; cosmopolitan
+10289,Malay,a western subfamily of Western Malayo-Polynesian languages
+10290,Malay Malayan,a member of a people inhabiting the northern Malay Peninsula and Malaysia and parts of the western Malay Archipelago
+10291,Malay_Archipelago East_Indies East_India,a group of islands in the Indian and Pacific Oceans between Asia and Australia
+10292,Malay_Peninsula,a peninsula in southeastern Asia occupied by parts of Malaysia and Thailand and Myanmar
+10293,Malayalam,a Dravidian language (closely related to Tamil) that is spoken in southwestern India
+10294,Malayan_tapir Indian_tapir Tapirus_indicus,a tapir found in Malaya and Sumatra
+10295,Malayo-Polynesian Polynesian,the branch of the Austronesian languages spoken from Madagascar to the central Pacific
+10296,Malaysia Federation_of_Malaysia,a constitutional monarchy in southeastern Asia on Borneo and the Malay Peninsula; achieved independence from the United Kingdom in 1957
+10297,Malaysian,a native or inhabitant of Malaysia
+10298,Malaysian Bahasa_Malaysia Bahasa_Melayu Bahasa_Kebangsaan,the Malay language spoken in Malaysia
+10299,Malaysian_monetary_unit,monetary unit is Malaysia
+10300,Malaysian_state,one of the several states constituting Malaysia
+10301,Malcolm_X Malcolm_Little,militant civil rights leader (1925-1965)
+10302,Malcolm_stock stock,any of various ornamental flowering plants of the genus Malcolmia
+10303,Malcolmia genus_Malcolmia,genus of plants usually found in coastal habitats; Mediterranean to Afghanistan
+10304,Maldives Maldive_Islands,a group of about 1,200 small coral islands (about 220 inhabited) in the Indian ocean
+10305,Maldives Republic_of_Maldives,a republic on the Maldive Islands; achieved independence from the United Kingdom in 1965
+10306,Maldivian Maldivan,a native or inhabitant of Maldives
+10307,Maldon Battle_of_Maldon,a battle in which the Danes defeated the Saxons in 991; celebrated in an old English poem
+10308,Male,the capital of Maldives in the center of the islands
+10309,Malebranche Nicolas_de_Malebranche,French philosopher (1638-1715)
+10310,Malecite,a member of the Algonquian people of northeastern Maine and New Brunswick
+10311,Malecite Maleseet,the Algonquian language of the Malecite and Passamaquody
+10312,Malevich Kazimir_Malevich Kazimir_Severinovich_Malevich,Russian abstract painter (1878-1935)
+10313,Mali Republic_of_Mali French_Sudan,a landlocked republic in northwestern Africa; achieved independence from France in 1960; Mali was a center of West African civilization for more than 4,000 years
+10314,Mali_franc,the basic unit of money in Mali
+10315,Malian,a native or inhabitant of Mali
+10316,Malinowski Bronislaw_Malinowski Bronislaw_Kasper_Malinowski,British anthropologist (born in Poland) who introduced the technique of the participant observer (1884-1942)
+10317,Mallarme Stephane_Mallarme,French symbolist poet noted for his free verse (1842-1898)
+10318,Mallon Mary_Mallon Typhoid_Mary,United States cook who was an immune carrier of typhoid fever and who infected dozens of people (1870-1938)
+10319,Mallophaga order_Mallophaga,biting lice
+10320,Mallotus genus_Mallotus,capelins
+10321,Malmo,a port in southern Sweden
+10322,Malone Edmund_Malone Edmond_Malone,English scholar remembered for his chronology of Shakespeare's plays and his editions of Shakespeare and Dryden (1741-1812)
+10323,Malopterurus genus_Malopterurus,electric catfish
+10324,Malory Thomas_Malory Sir_Thomas_Malory,English writer who published a translation of romances about King Arthur taken from French and other sources (died in 1471)
+10325,Malosma genus_Malosma,one species; often included in the genus Rhus
+10326,Malpighi Marcello_Malpighi,Italian anatomist who was the first to use a microscope to study anatomy and was among the first to recognize cells in animals (1628-1694)
+10327,Malpighia genus_Malpighia,type genus of the Malpighiaceae
+10328,Malpighiaceae family_Malpighiaceae,tropical shrubs or trees
+10329,Malraux Andre_Malraux,French novelist (1901-1976)
+10330,Malta,a strategically located island to the south of Sicily in the Mediterranean Sea
+10331,Malta Republic_of_Malta,a republic on the island of Malta in the Mediterranean; achieved independence from the United Kingdom in 1964
+10332,Maltese,a native or inhabitant of Malta
+10333,Maltese Maltese_cat,a term applied indiscriminately in the United States to any short-haired bluish-grey cat
+10334,Maltese Maltese_language Malti,the national language of the Republic of Malta; a Semitic language derived from Arabic but with many loan words from Italian, Spanish, and Norman-French
+10335,Maltese_cross,a cross with triangular or arrow-shaped arms and the points toward the center
+10336,Maltese_dog Maltese_terrier Maltese,breed of toy dogs having a long straight silky white coat
+10337,Maltese_monetary_unit,monetary unit on Malta
+10338,Malthus Thomas_Malthus Thomas_Robert_Malthus,an English economist who argued that increases in population would outgrow increases in the means of subsistence (1766-1834)
+10339,Malthusian,a believer in Malthusian theory
+10340,Malthusianism Malthusian_theory,Malthus' theory that population increase would outpace increases in the means of subsistence
+10341,Malto,a member of the Dravidian people living in northern Bengal in eastern India
+10342,Malto,the Dravidian language spoken by the Malto
+10343,Malus genus_Malus,apple trees; found throughout temperate zones of the northern hemisphere
+10344,Malva genus_Malva,herbs and subshrubs: mallows
+10345,Malvaceae family_Malvaceae mallow_family,herbs and shrubs and some trees: mallows; cotton; okra
+10346,Malvales order_Malvales,Malvaceae; Bombacaceae; Elaeocarpaceae; Sterculiaceae; Tiliaceae
+10347,Malvastrum genus_Malvastrum,genus of mallows characterized by red and yellow flowers often placed in other genera
+10348,Malvaviscus genus_Malvaviscus,small genus of shrubs of Central and South America: wax mallows
+10349,Mam,a member of a Mayan people of southwestern Guatemala
+10350,Mam,a Mayan language spoken by the Mam
+10351,Mama,a name under which Ninkhursag was worshipped
+10352,Mamet David_Mamet,United States playwright (born in 1947)
+10353,Mammalia class_Mammalia,warm-blooded vertebrates characterized by mammary glands in the female
+10354,Mammea genus_Mammea,American and Asiatic trees having edible one-seeded fruit
+10355,Mammon,(New Testament) a personification of wealth and avarice as an evil spirit; "ye cannot serve God and Mammon"
+10356,Mammoth_Cave_National_Park,a national park in Kentucky having a large cavern and an underground river
+10357,Mammut genus_Mammut genus_Mastodon,extinct type genus of the Mammutidae: mastodons
+10358,Mammuthus genus_Mammuthus,extinct genus: mammoths
+10359,Mammutidae family_Mammutidae family_Mastodontidae,extinct family: mastodons
+10360,Man Isle_of_Man,one of the British Isles in the Irish Sea
+10361,Managua capital_of_Nicaragua Nicaraguan_capital,the capital and largest city of Nicaragua
+10362,Manama capital_of_Bahrain,the capital of Bahrain; located at the northern end of Bahrain Island
+10363,Manannan,Celtic god of the sea; son of Ler
+10364,Manawydan Manawyddan,Celtic sea god; son of Llyr
+10365,Manchester,largest city in New Hampshire; located in southeastern New Hampshire on the Merrimack river
+10366,Manchester,a city in northwestern England (30 miles to the east of Liverpool); heart of the most densely populated area of England
+10367,Manchester_terrier black-and-tan_terrier,a breed of short-haired rat terrier with a black-and-tan coat that was developed in Manchester, England
+10368,Manchu,a member of the Manchu speaking people of Manchuria; related to the Tungus; conquered China in the 17th century
+10369,Manchu,the Tungusic language spoken by the Manchu
+10370,Manchuria,a region in northeastern China
+10371,Mancunian,a native or resident of Manchester
+10372,Manda,a Dravidian language spoken in south central India
+10373,Mandaean Mandean,a member of a small Gnostic sect that originated in Jordan and survives in Iraq and who believes that John the Baptist was the Messiah
+10374,Mandaean Mandean,the form of Aramaic used by the Mandeans
+10375,Mandaeanism Mandeanism,a Gnostic religion originating the 2nd and 3rd centuries that believes John the Baptist was the Messiah and that incorporates Jewish and Christian elements into a framework of dualistic beliefs
+10376,Mandalay,a city in central Myanmar to the north of Rangoon
+10377,Mandara Wandala,a Chadic language spoken in the Mandara mountains in Cameroon; has only two vowels
+10378,Mandarin Mandarin_Chinese Mandarin_dialect Beijing_dialect,the dialect of Chinese spoken in Beijing and adopted as the official language for all of China
+10379,Mande,a group of African languages in the Niger-Congo group spoken from Senegal east as far as the Ivory Coast
+10380,Mandela Nelson_Mandela Nelson_Rolihlahla_Mandela,South African statesman who was released from prison to become the nation's first democratically elected president in 1994 (born in 1918)
+10381,Mandelbrot Benoit_Mandelbrot,French mathematician (born in Poland) noted for inventing fractals (born in 1924)
+10382,Mandelbrot_set,a set of complex numbers that has a highly convoluted fractal boundary when plotted; the set of all points in the complex plane that are bounded under a certain mathematical iteration
+10383,Mandelstam Osip_Mandelstam Osip_Emilevich_Mandelstam Mandelshtam,Russian poet who died in a prison camp (1891-1938)
+10384,Mandevilla genus_Mandevilla Dipladenia genus_Dipladenia,genus of tropical South American tuberous perennial woody vines with large racemose flowers and milky sap
+10385,Mandragora genus_Mandragora,a genus of stemless herbs of the family Solanaceae
+10386,Mandrillus genus_Mandrillus,baboons
+10387,Manduca genus_Manduca,moths whose larvae are tobacco hornworms or tomato hornworms
+10388,Manduca_quinquemaculata,moth whose larvae are tomato hornworms
+10389,Manduca_sexta,moth whose larvae are tobacco hornworms
+10390,Manes,a Persian prophet who founded Manichaeism (216-276)
+10391,Manet Edouard_Manet,French painter whose work influenced the impressionists (1832-1883)
+10392,Mangifera genus_Mangifera,tropical tree native to Asia bearing fleshy fruit
+10393,Manhattan,one of the five boroughs of New York City
+10394,Manhattan_Island,an island at the north end of New York Bay where the borough of Manhattan is located
+10395,Manhattan_Project,a former United States executive agency that was responsible for developing atomic bombs during World War II
+10396,Manhattan_Project,code name for the secret United States project set up in 1942 to develop atomic bombs for use in World War II
+10397,Manhattan_clam_chowder,a chowder made with clams and tomatoes and other vegetables and seasonings
+10398,Manichaean Manichean Manichee,an adherent of Manichaeism
+10399,Manichaeism Manichaeanism,a religion founded by Manes in the third century; a synthesis of Zoroastrian dualism between light and dark and Babylonian folklore and Buddhist ethics and superficial elements of Christianity; spread widely in the Roman Empire but had largely died out by 1000
+10400,Manidae family_Manidae,coextensive with the order Pholidota
+10401,Manihot genus_Manihot,genus of economically important tropical plants: cassava
+10402,Manila capital_of_the_Philippines,the capital and largest city of the Philippines; located on southern Luzon
+10403,Manila_Bay,a naval battle in the Spanish-American War (1898); the American fleet under Admiral Dewey defeated the Spanish fleet
+10404,Manila_grass Japanese_carpet_grass Zoysia_matrella,lawn grass common in the Philippines; grown also in United States
+10405,Manila_hemp Manilla_hemp abaca,a kind of hemp obtained from the abaca plant in the Philippines
+10406,Manilkara genus_Manilkara,genus of large evergreen trees with milky latex; pantropical
+10407,Manipur,state in northeastern India
+10408,Maniraptora suborder_Maniraptora,advanced theropods including oviraptorids and dromaeosaurs and possibly even modern birds
+10409,Manis genus_Manis,type genus of the Manidae
+10410,Manitoba,one of the three prairie provinces in central Canada
+10411,Mankato,a town in southern Minnesota
+10412,Mann Horace_Mann,United States educator who introduced reforms that significantly altered the system of public education (1796-1859)
+10413,Mann Thomas_Mann,German writer concerned about the role of the artist in bourgeois society (1875-1955)
+10414,Mannheim,a city in southwestern Germany at the confluence of the Rhine and Neckar rivers
+10415,Mansart Francois_Mansart,French architect who introduced the mansard roof (1598-1666)
+10416,Mansfield,a town in north central Ohio
+10417,Mansfield Katherine_Mansfield Kathleen_Mansfield_Beauchamp,New Zealand writer of short stories (1888-1923)
+10418,Mansi Vogul,the Ugric language (related to Hungarian) spoken by the Vogul
+10419,Manson Sir_Patrick_Manson,Scottish physician who discovered that elephantiasis is spread by mosquitos and suggested that mosquitos also spread malaria (1844-1922)
+10420,Mantegna Andrea_Mantegna,Italian painter and engraver noted for his frescoes (1431-1506)
+10421,Mantell Gideon_Algernon_Mantell,English geologist remembered as the first person to recognize that dinosaurs were reptiles (1790-1852)
+10422,Manteodea suborder_Manteodea,mantises; in former classifications considered a suborder of Orthoptera
+10423,Mantidae family_Mantidae Manteidae family_Manteidae,mantises
+10424,Mantinea Mantineia,the site of three famous battles among Greek city-states: in 418 BC and 362 BC and 207 BC
+10425,Mantispidae family_Mantispidae,mantispids
+10426,Mantle Mickey_Mantle Mickey_Charles_Mantle,United States baseball player (1931-1997)
+10427,Mantophasmatodea order_mantophasmatodea,an order of insect identified in 2002 in a 45 million year old piece of amber from the Baltic region
+10428,Mantoux_test,tuberculin (a derivative of tubercle bacillus) is injected intradermally; a red area appearing 1-3 days later signifies an exposure (past or present) to tubercle bacilli and the need for further testing
+10429,Manuel_Rodriquez_Patriotic_Front,a terrorist group formed in 1983 as the armed wing of the Chilean Communist Party
+10430,Manx,the ancient Gaelic formerly spoken on the Isle of Man; the language is sometimes used on ceremonial occasions
+10431,Manx Manx_cat,a short-haired tailless breed of cat believed to originate on the Isle of Man
+10432,Manx_shearwater Puffinus_puffinus,small black-and-white shearwater common in the northeastern Atlantic
+10433,Manzanilla,very dry pale sherry from Spain
+10434,Manzoni Alessandro_Manzoni,Italian novelist and poet (1785-1873)
+10435,Mao Mao_Zedong Mao_Tsetung,Chinese communist leader (1893-1976)
+10436,Mao_jacket,a light weight jacket with a high collar; worn by Mao Zedong and the Chinese people during his regime
+10437,Maoism,a form of communism developed in China by Mao Zedong
+10438,Maoist,an advocate of Maoism
+10439,Maori,an ethnic minority of Polynesian and Melanesian descent who speak Maori and live in New Zealand
+10440,Maori,the Oceanic language spoken by the Maori in New Zealand
+10441,MapQuest,a free, widely-used Web Map Server
+10442,Maputo capital_of_Mozambique,the capital and largest city of Mozambique
+10443,Maquis,the French underground that fought against the German occupation in World War II
+10444,Maquis Maquisard,a guerrilla fighter in the French underground in World War II
+10445,Mara,Hindu god of death; opposite of Kama
+10446,Maracaibo,a port city in northwestern Venezuela; a major oil center
+10447,Maracay,a city in north central Venezuela; cattle center
+10448,Maraco,a member of the South American people living in Argentina and Bolivia and Paraguay
+10449,Maraco Maracan_language,the language spoken by the Maraco
+10450,Marantaceae family_Marantaceae arrowroot_family,tropical perennial herbs with usually starchy rhizomes
+10451,Marasmius genus_Marasmius,chiefly small mushrooms with white spores
+10452,Marat Jean_Paul_Marat,French revolutionary leader (born in Switzerland) who was a leader in overthrowing the Girondists and was stabbed to death in his bath by Charlotte Corday (1743-1793)
+10453,Maratha Mahratta,a member of a people of India living in Maharashtra
+10454,Marathi Mahratti,an Indic language; the state language of Maharashtra in west central India; written in the Devanagari script
+10455,Marathon battle_of_Marathon,a battle in 490 BC in which the Athenians and their allies defeated the Persians
+10456,Marattia genus_Marattia,type genus of the Marattiaceae: ferns having the sporangia fused together in two rows
+10457,Marattiaceae family_Marattiaceae,constituting the order Marattiales: chiefly tropical eusporangiate ferns with gigantic fronds
+10458,Marattiales order_Marattiales,lower ferns coextensive with the family Marattiaceae
+10459,Marburg_disease Marburg_hemorrhagic_fever green_monkey_disease,a viral disease of green monkeys caused by the Marburg virus; when transmitted to humans it causes serious or fatal illness
+10460,Marburg_virus,a filovirus that causes Marburg disease; carried by animals; can be used as a bioweapon
+10461,Marceau Marcel_Marceau,French mime famous for his sad-faced clown (born in 1923)
+10462,March Mar,the month following February and preceding April
+10463,Marchantia genus_Marchantia,type genus of Marchantiaceae; liverworts that reproduce asexually by gemmae and have stalked antheridiophores
+10464,Marchantiaceae family_Marchantiaceae,liverworts with prostrate and usually dichotomously branched thalli
+10465,Marchantiales order_Marchantiales,liverworts with gametophyte differentiated internally
+10466,Marche Marches,a region in central Italy
+10467,Marciano Rocco_Marciano Rocky_Marciano,United States prizefighter who won the world heavyweight championship in 1952 (1924-1969)
+10468,Marcionism,the Christian heresy of the 2nd and 3rd centuries that rejected the Old Testament and denied the incarnation of God in Jesus as a human
+10469,Marco_Polo_sheep Marco_Polo's_sheep Ovis_poli,Asiatic wild sheep with exceptionally large horns; sometimes considered a variety of the argali (or Ovis ammon)
+10470,Marconi Guglielmo_Marconi,Italian electrical engineer who invented wireless telegraphy and in 1901 transmitted radio signals across the Atlantic Ocean (1874-1937)
+10471,Marcuse Herbert_Marcuse,United States political philosopher (born in Germany) concerned about the dehumanizing effects of capitalism and modern technology (1898-1979)
+10472,Mardi_Gras Fat_Tuesday,a carnival held in some countries on Shrove Tuesday (the last day before Lent) but especially in New Orleans
+10473,Mardi_Gras Shrove_Tuesday Fat_Tuesday pancake_day,the last day before Lent
+10474,Marduk Merodach Baal_Merodach Bel-Merodach,the chief Babylonian god; his consort was Sarpanitu
+10475,Marengo,a battle in 1800 in which the French under Napoleon Bonaparte won a great victory over the Austrians
+10476,Marfan's_syndrome,an autosomal dominant disease characterized by elongated bones (especially of limbs and digits) and abnormalities of the eyes and circulatory system
+10477,Marginocephalia suborder_Marginocephalia marginocephalian,includes boneheaded (pachycephalosaurs) and horned (ceratopsian) dinosaurs
+10478,Maria Calophyllum_longifolium,valuable timber tree of Panama
+10479,Mariana_Islands Marianas Ladrone_Islands,a chain of coral and volcanic islands in Micronesia (including Guam and the Northern Marianas) halfway between New Guinea and Japan; discovered by Magellan in 1521
+10480,Maricopa,a member of a North American Indian people of the Gila river valley in Arizona
+10481,Maricopa,the Yuman language spoken by the Maricopa and the Halchidhoma
+10482,Marie_Antoinette,queen of France (as wife of Louis XVI) who was unpopular; her extravagance and opposition to reform contributed to the overthrow of the monarchy; she was guillotined along with her husband (1755-1793)
+10483,Mariehamn Maarianhamina,a town that is the chief port of the Aland islands
+10484,Marine devil_dog leatherneck shipboard_soldier,a member of the United States Marine Corps
+10485,Marine_Corps_Intelligence_Activity MCIA,an agency of the United States Marine Corps that provides responsive and broad intelligence support for the worldwide Marine Corps organization
+10486,Marineland,a commercial aquarium featuring trained dolphins
+10487,Marines,members of a body of troops trained to serve on land or at sea
+10488,Marini Giambattista_Marini Marino Giambattista_Marino,Italian poet (1569-1625)
+10489,Mariposan Yokuts,a Penutian language spoken by the Yokuts in the San Joaquin Valley
+10490,Maritime_Provinces Maritimes Canadian_Maritime_Provinces,the collective name for the Canadian provinces of New Brunswick and Nova Scotia and Prince Edward Island
+10491,Mark Gospel_According_to_Mark,the shortest of the four Gospels in the New Testament
+10492,Mark Saint_Mark St._Mark,Apostle and companion of Saint Peter; assumed to be the author of the second Gospel
+10493,Markaz-ud-Dawa-wal-Irshad MDI,a Sunni organization formed in 1989 and based in Pakistan; opposes missionary groups from the United States; has Lashkar-e-Tayyiba as its armed wing
+10494,Markov Andrei_Markov Markoff Andre_Markoff,Russian mathematician (1856-1922)
+10495,Markov_chain Markoff_chain,a Markov process for which the parameter is discrete time values
+10496,Markov_process Markoff_process,a simple stochastic process in which the distribution of future states depends only on the present state and not on how it arrived in the present state
+10497,Markova Dame_Alicia_Markova Lilian_Alicia_Marks,English ballet dancer (born in 1910)
+10498,Marks Simon_Marks First_Baron_Marks_of_Broughton,English businessman who created a retail chain (1888-1964)
+10499,Marley Robert_Nesta_Marley Bob_Marley,Jamaican singer who popularized reggae (1945-1981)
+10500,Marlowe Christopher_Marlowe,English poet and playwright who introduced blank verse as a form of dramatic expression; was stabbed to death in a tavern brawl (1564-1593)
+10501,Marlowe Philip_Marlowe,tough cynical detective (one of the early detective heroes in American fiction) created by Raymond Chandler
+10502,Marmara Sea_of_Marmara Marmara_Denizi Marmora Sea_of_Marmora,an inland sea in northwestern Turkey; linked to the Black Sea by the Bosporus and linked to the Aegean by the Dardanelles
+10503,Marmota genus_Marmota,marmots
+10504,Marquand John_Marquand John_Philip_Marquand,United States writer who created the Japanese detective Mr. Moto and wrote other novels as well (1893-1960)
+10505,Marquesas_Islands Iles_Marquises,a group of volcanic islands in the south central Pacific; part of French Polynesia
+10506,Marquette,a town on Lake Superior on the Upper Peninsula in northwest Michigan
+10507,Marquette Jacques_Marquette Pere_Jacques_Marquette,French missionary who accompanied Louis Joliet in exploring the upper Mississippi River valley (1637-1675)
+10508,Marquis Don_Marquis Donald_Robert_Perry_Marquis,humorist who wrote about the imaginary life of cockroaches (1878-1937)
+10509,Marrakesh Marrakech,a city in western Morocco; tourist center
+10510,Marrano,(medieval Spain and Portugal) a disparaging term for a Jew who converted to Christianity in order to avoid persecution but continued to practice their religion secretly
+10511,Marrubium genus_Marrubium,Old World aromatic herbs: horehound
+10512,Mars,(Roman mythology) Roman god of war and agriculture; father of Romulus and Remus; counterpart of Greek Ares
+10513,Mars Red_Planet,a small reddish planet that is the 4th from the sun and is periodically visible to the naked eye; minerals rich in iron cover its surface and are responsible for its characteristic color; "Mars has two satellites"
+10514,Marsala,dark sweet or semisweet dessert wine from Sicily
+10515,Marseillaise,the French national anthem
+10516,Marseille Marseilles,a port city in southeastern France on the Mediterranean
+10517,Marseilles_fever Kenya_fever Indian_tick_fever boutonneuse_fever,a disease (common in India and around the Mediterranean area) caused by a rickettsia that is transmitted to humans by a reddish brown tick (ixodid) that lives on dogs and other mammals
+10518,Marsh Ngaio_Marsh,New Zealand writer of detective stories (1899-1982)
+10519,Marsh Reginald_Marsh,United States painter (1898-1954)
+10520,Marshall E._G._Marshall,United States actor (1914-1998)
+10521,Marshall George_Marshall George_Catlett_Marshall,United States general and statesman who as Secretary of State organized the European Recovery Program (1880-1959)
+10522,Marshall John_Marshall,United States jurist; as chief justice of the Supreme Court he established the principles of United States constitutional law (1755-1835)
+10523,Marshall_Islands,a group of coral islands in eastern Micronesia
+10524,Marshall_Islands Republic_of_the_Marshall_Islands,a republic (under United States protection) on the Marshall Islands
+10525,Marshall_Plan European_Recovery_Program,a United States program of economic aid for the reconstruction of Europe (1948-1952); named after George Marshall
+10526,Marsilea genus_Marsilea,clover ferns
+10527,Marsileaceae family_Marsileaceae,clover ferns
+10528,Marstan John_Marstan,English playwright (1575-1634)
+10529,Marston_Moor,a former moor in northern England
+10530,Marston_Moor battle_of_Marston_Moor,a battle in 1644 in which the Parliamentarians under the earl of Manchester defeated the Royalists under Prince Rupert
+10531,Marsupialia order_Marsupialia,coextensive with the subclass Metatheria
+10532,Martes genus_Martes,martens
+10533,Martha's_Vineyard,an island summer resort off of Cape Cod
+10534,Marti Jose_Julian_Marti,Cuban poet and revolutionary who fought for Cuban independence from Spain (1853-1895)
+10535,Martial,Roman poet noted for epigrams (first century BC)
+10536,Martian,imaginary people who live on the planet Mars
+10537,Martin Dean_Martin Dino_Paul_Crocetti,United States singer (1917-1995)
+10538,Martin Mary_Martin,United States actress (1913-1990)
+10539,Martin St._Martin,French bishop who is a patron saint of France (died in 397)
+10540,Martin Steve_Martin,United States actor and comedian (born in 1945)
+10541,Martin_Luther_King_Jr's_Birthday Martin_Luther_King_Day,observed on the Monday closest to January 15
+10542,Martin_V Oddone_Colonna,Italian pope from 1417 to 1431 whose election as pope ended the Great Schism (1368-1431)
+10543,Martinique,an island in the eastern Caribbean in the Windward Islands; administered as an overseas region of France
+10544,Martinmas St_Martin's_Day 11_November,the feast of Saint Martin; a quarter day in Scotland
+10545,Martyniaceae family_Martyniaceae,in most classifications not considered a separate family but included in the Pedaliaceae
+10546,Marut,any of a group of Hindu storm gods; offspring of Rudra
+10547,Marvell Andrew_Marvell,English poet (1621-1678)
+10548,Marx Arthur_Marx Harpo,United States comedian; one of four brothers who made motion pictures together (1893-1964)
+10549,Marx Herbert_Marx Zeppo,United States comedian; one of four brothers who made motion pictures together (1901-1979)
+10550,Marx Julius_Marx Groucho,United States comedian; one of four brothers who made motion pictures together (1890-1977)
+10551,Marx Karl_Marx,founder of modern communism; wrote the Communist Manifesto with Engels in 1848; wrote Das Kapital in 1867 (1818-1883)
+10552,Marx Leonard_Marx Chico,United States comedian; one of four brothers who made motion pictures together (1891-1961)
+10553,Marx_Brothers,a family of United States comedians consisting of four brothers with an anarchic sense of humor
+10554,Marxism,the economic and political theories of Karl Marx and Friedrich Engels that hold that human actions and institutions are economically determined and that class struggle is needed to create historical change and that capitalism will ultimately be superseded by communism
+10555,Marxist,an advocate of Marxism
+10556,Mary Virgin_Mary The_Virgin Blessed_Virgin Madonna,the mother of Jesus; Christians refer to her as the Virgin Mary; she is especially honored by Roman Catholics
+10557,Mary_I Mary_Tudor Bloody_Mary,daughter of Henry VIII and Catherine of Aragon who was Queen of England from 1553 to 1558; she was the wife of Philip II of Spain and when she restored Roman Catholicism to England many Protestants were burned at the stake as heretics (1516-1558)
+10558,Mary_II,Queen of England and Scotland and Ireland; she was the eldest daughter of James II and ruled jointly with her husband William III (1662-1694)
+10559,Mary_Magdalene St._Mary_Magdalene Mary_Magdalen St._Mary_Magdalen,sinful woman Jesus healed of evil spirits; she became a follower of Jesus
+10560,Mary_Queen_of_Scots Mary_Stuart,queen of Scotland from 1542 to 1567; as a Catholic she was forced to abdicate in favor of her son and fled to England where she was imprisoned by Elizabeth I; when Catholic supporters plotted to put her on the English throne she was tried and executed for sedition (1542-1587)
+10561,Maryland,one of the British colonies that formed the United States
+10562,Maryland Old_Line_State Free_State MD Md.,a Mid-Atlantic state; one of the original 13 colonies
+10563,Maryland_chicken,chicken fried than oven-baked and served with milk gravy
+10564,Maryland_golden_aster Chrysopsis_mariana,perennial golden aster of southeastern United States
+10565,Marylander,a native or resident of Maryland
+10566,Masa,an independent group of closely related Chadic languages spoken in the area between the Biu-Mandara and East Chadic languages
+10567,Masai,a Nilotic language
+10568,Masefield John_Masefield John_Edward_Masefield,English poet (1878-1967)
+10569,Maseru capital_of_Lesotho,the capital of Lesotho; located in northwestern Lesotho
+10570,Mashhad Meshed,the holy city of Shiite Muslims; located in northeastern Iran
+10571,Mashi,a Bantu language
+10572,Mashriq,Arabic name for the Middle East
+10573,Mason A._E._W._Mason Alfred_Edward_Woodley_Mason,English writer (1865-1948)
+10574,Mason George_Mason,American Revolutionary leader from Virginia whose objections led to the drafting of the Bill of Rights (1725-1792)
+10575,Mason James_Mason James_Neville_Mason,English film actor (1909-1984)
+10576,Mason-Dixon_line Mason_and_Dixon_line Mason_and_Dixon's_line,the boundary between Maryland and Pennsylvania; symbolic dividing line between North and South before the American Civil War
+10577,Mason_City,a town in north central Iowa
+10578,Mason_jar,a glass jar with an air-tight screw top; used in home canning
+10579,Masonite,a type of fiberboard
+10580,Masorah Masora,a vast body of textual criticism of the Hebrew Scriptures including notes on features of writing and on the occurrence of certain words and on variant sources and instructions for pronunciation and other comments that were written between AD 600 and 900 by Jewish scribes in the margins or at the end of texts
+10581,Masorete Massorete Masorite,a scholar who is expert on the Masorah (especially one of the Jewish scribes who contributed to the Masorah)
+10582,Masoud Ahmad_Shah_Masoud,Afghan leader of forces opposed to the Taliban; won fame by successfully resisting the Soviets in the 1980s; was assassinated by men posing as journalists (1953-2001)
+10583,Mass,a musical setting for a Mass; "they played a Mass composed by Beethoven"
+10584,Mass,a sequence of prayers constituting the Christian Eucharistic rite; "the priest said Mass"
+10585,Mass,(Roman Catholic Church and Protestant Churches) the celebration of the Eucharist
+10586,Mass_card,(Roman Catholic Church) a card sent to a bereaved family that says the sender has arranged for a Mass to be said in memory of the deceased
+10587,Massachuset Massachusetts,a member of the Algonquian people who formerly lived around Massachusetts Bay
+10588,Massachuset Massachusetts,the Algonquian language of the Massachuset
+10589,Massachusetts Bay_State Old_Colony MA Mass.,a state in New England; one of the original 13 colonies
+10590,Massachusetts Massachusetts_Bay_Colony,one of the British colonies that formed the United States
+10591,Massachusetts_Bay,an inlet of the Atlantic Ocean off of eastern Massachusetts extending from Cape Ann on the north to Cape Cod on the south
+10592,Massachusetts_Institute_of_Technology MIT,an engineering university in Cambridge
+10593,Massachusetts_fern Parathelypteris_simulata Thelypteris_simulata,delicate feathery shield fern of the eastern United States; sometimes placed in genus Thelypteris
+10594,Massasoit,Wampanoag leader who aided the Pilgrims (1580-1661)
+10595,Massawa,a port town in Eritrea on an inlet of the Red Sea
+10596,Massenet Jules_Emile_Frederic_Massenet,French composer best remembered for his pop operas (1842-1912)
+10597,Massif_Central,a mountainous plateau in southern France that covers almost one sixth of the country
+10598,Massine Leonide_Fedorovitch_Massine Leonid_Fyodorovich_Myasin,French choreographer and ballet dancer (born in Russia) (1895-1979)
+10599,Master_in_Business Master_in_Business_Administration MBA,a master's degree in business
+10600,Master_in_Public_Affairs,a master's degree in questions of public concern
+10601,Master_of_Architecture MArch,a degree granted for the successful completion of advanced study of architecture
+10602,Master_of_Arts MA Artium_Magister AM,a master's degree in arts and sciences
+10603,Master_of_Arts_in_Library_Science MALS,a master's degree in library science
+10604,Master_of_Arts_in_Teaching MAT,a master's degree in teaching
+10605,Master_of_Divinity MDiv,a master's degree in religion
+10606,Master_of_Education MEd,a master's degree in education
+10607,Master_of_Fine_Arts MFA,a master's degree in fine arts
+10608,Master_of_Laws LLM,an advanced law degree
+10609,Master_of_Library_Science MLS,a master's degree in library science
+10610,Master_of_Literature MLitt,a master's degree in literature
+10611,Master_of_Science MS SM MSc,a master's degree in science
+10612,Master_of_Science_in_Engineering,a master's degree in engineering
+10613,Master_of_Theology ThM,a master's degree in theology
+10614,Masters Edgar_Lee_Masters,United States poet (1869-1950)
+10615,Masticophis genus_Masticophis,whip snakes
+10616,Mastigomycota subdivision_Mastigomycota Mastigomycotina subdivision_Mastigomycotina,fungi in which the spores and gametes are motile; in some systems placed in the Phycomycetes group with the Zygomycota
+10617,Mastigophora class_Mastigophora Flagellata class_Flagellata,protozoa having flagella
+10618,Mastigoproctus genus_Mastigoproctus,giant whip scorpions
+10619,Mastotermes genus_Mastotermes,primitive genus of termites; mostly extinct; sometimes considered the most primitive Isoptera
+10620,Mastotermes_darwiniensis,Australian termite; sole living species of Mastotermes; called a living fossil; apparent missing link between cockroaches and termites
+10621,Mastotermes_electrodominicus,extinct termite found in amber in the Dominican Republic
+10622,Mastotermes_electromexicus,an extinct termite found in amber in southern Mexico
+10623,Mastotermitidae family_Mastotermitidae,primitive termites
+10624,Mata_Hari Margarete_Gertrud_Zelle,Dutch dancer who was executed by the French as a German spy in World War I (1876-1917)
+10625,Matakam Mafa,a Chadic language spoken south of Lake Chad
+10626,Matamoros,a city in northeastern Mexico opposite Brownsville near the mouth of the Rio Grande
+10627,Mathias Bob_Mathias Robert_Bruce_Mathias,United States athlete who won Olympic gold medals in the decathlon (born in 1930)
+10628,Matisse Henri_Matisse Henri_Emile_Benoit_Matisse,French painter and sculptor; leading figure of fauvism (1869-1954)
+10629,Matricaria genus_Matricaria,chiefly Old World strong-smelling weedy herbs; comprises plants sometimes included in other genera: e.g. Tanacetum; Tripleurospermum
+10630,Matterhorn,a mountain in the Alps on the border between Switzerland and Italy (14,780 feet high); noted for its distinctive shape
+10631,Matteuccia genus_Matteuccia Pteretis genus_Pteretis,small genus sometimes included in genus Onoclea; in some classifications both genera are placed in Polypodiaceae
+10632,Matthew Gospel_According_to_Matthew,one of the Gospels in the New Testament; includes the Sermon on the Mount
+10633,Matthew Saint_Matthew St._Matthew Saint_Matthew_the_Apostle St._Matthew_the_Apostle Levi,(New Testament) disciple of Jesus; traditionally considered to be the author of the first Gospel
+10634,Matthew_Walker Matthew_Walker_knot,a kind of stopper knot
+10635,Matthiola genus_Matthiola,genus of Old World plants grown as ornamentals
+10636,Mattole,a member of the Athapaskan people living in northwestern California
+10637,Mattole,the Athapaskan language spoken by the Mattole
+10638,Maugham Somerset_Maugham W._Somerset_Maugham William_Somerset_Maugham,English writer (born in France) of novels and short stories (1874-1965)
+10639,Maui Maui_Island,the second largest of the Hawaiian Islands
+10640,Mauldin Bill_Mauldin William_Henry_Mauldin,United States cartoonist noted for his drawings of soldiers in battle (1921-2003)
+10641,Mauna_Kea,an active volcano on north central Hawaii Island; highest peak in the Hawaiian Islands
+10642,Mauna_Loa,an active volcano on south central Hawaii Island
+10643,Maundy,a public ceremony on Maundy Thursday when the monarch distributes Maundy money
+10644,Maundy_Thursday Holy_Thursday,the Thursday before Easter; commemorates the Last Supper
+10645,Maundy_money,specially minted silver coins that are distributed by the British sovereign on Maundy Thursday
+10646,Maupassant Guy_de_Maupassant Henri_Rene_Albert_Guy_de_Maupassant,French writer noted especially for his short stories (1850-1893)
+10647,Mauriac Francois_Mauriac Francois_Charles_Mauriac,French novelist who wrote about the conflict between desire and religious belief (1885-1970)
+10648,Mauritania Islamic_Republic_of_Mauritania Mauritanie Muritaniya,a country in northwestern Africa with a provisional military government; achieved independence from France in 1960; largely western Sahara Desert
+10649,Mauritanian,a native or inhabitant of Mauritania
+10650,Mauritanian_monetary_unit,monetary unit in Mauritania
+10651,Mauritian,a native or inhabitant of Mauritius
+10652,Mauritian_monetary_unit,monetary unit in Mauritius
+10653,Mauritian_rupee rupee,the basic unit of money in Mauritius; equal to 100 cents
+10654,Mauritius,an island in the southwestern Indian Ocean
+10655,Mauritius Republic_of_Mauritius,a parliamentary state on the island of Mauritius
+10656,Maurois Andre_Maurois Emile_Herzog,French writer best known for his biographies (1885-1967)
+10657,Mauser,trademark for a repeating rifle or pistol
+10658,Mauser von_Mauser P._P._von_Mauser Peter_Paul_Mauser,German arms manufacturer and inventor of a repeating rifle and pistol (1838-1914)
+10659,Mausoleum_at_Halicarnasus,a white marble mausoleum 140 feet high built in 352 BC at Halicarnassus as a memorial to a king; destroyed in 1402
+10660,Maxim Sir_Hiram_Stevens_Maxim,English inventor (born in the United States) who invented the Maxim gun that was used in World War I (1840-1916)
+10661,Maxim_gun,an obsolete water-cooled machine gun having a single barrel
+10662,Maximian Marcus_Aurelius_Valerius_Maximianus Herculius,Roman Emperor from 286 until he abdicated in 305; when Diocletian divided the Roman Empire in 286 Maximian became emperor in the west (died in 311)
+10663,Maximilian's_sunflower Helianthus_maximilianii,tall perennial of central United States to Canada having golden-yellow flowers
+10664,Maxostoma genus_Maxostoma,a genus of fish in the family Catostomidae
+10665,Maxwell J._C._Maxwell James_Clerk_Maxwell,Scottish physicist whose equations unified electricity and magnetism and who recognized the electromagnetic nature of light (1831-1879)
+10666,Maxwell's_demon,an imaginary creature that controls a small hole in a partition that divides a chamber filled with gas into two parts and allows fast molecules to move in one direction and slow molecules to move in the other direction through the hole; this would result in one part of the container becoming warmer and the other cooler, thus decreasing entropy and violating the second law of thermodynamics
+10667,Maxwell's_equations,four differential equations that summarize classical properties of electromagnetic fields
+10668,Maxwell-Boltzmann_distribution_law Boltzmann_distribution_law,(physics) a law expressing the distribution of energy among the molecules of a gas in thermal equilibrium
+10669,Maxzide,trade name for an antihypertensive drug containing hydrochlorothiazide and another diuretic
+10670,May,the month following April and preceding June
+10671,May_Day First_of_May May_1,observed in many countries to celebrate the coming of spring; observed in Russia and related countries in honor of labor
+10672,May_apple,edible but insipid fruit of the May apple plant
+10673,May_queen queen_of_the_May,the girl chosen queen of a May Day festival
+10674,May_wine,a punch made of Moselle and sugar and sparkling water or champagne flavored with sweet woodruff
+10675,Maya,an ethnic minority speaking Mayan languages and living in Yucatan and adjacent areas
+10676,Maya Mayan Mayan_language,a family of American Indian languages spoken by Mayas
+10677,Mayaca genus_Mayaca,small genus of delicate mossy bog plants having white or violet flowers
+10678,Mayacaceae family_Mayacaceae,a monocotyledonous family of bog plants of order Xyridales
+10679,Mayakovski Vladimir_Vladimirovich_Mayakovski,Soviet poet; leader of Russian futurism (1893-1930)
+10680,Mayan Maya,a member of an American Indian people of Yucatan and Belize and Guatemala who had a culture (which reached its peak between AD 300 and 900) characterized by outstanding architecture and pottery and astronomy; "Mayans had a system of writing and an accurate calendar"
+10681,Mayday,an internationally recognized distress signal via radiotelephone (from the French m'aider)
+10682,Mayenne,a department of northwestern France in the Pays de la Loire region
+10683,Mayer Louis_B._Mayer Louis_Burt_Mayer,United States filmmaker (born in Russia) who founded his own film company and later merged with Samuel Goldwyn (1885-1957)
+10684,Mayer Marie_Goeppert_Mayer,United States physicist (born in Germany) noted for her research on the structure of the atom (1906-1972)
+10685,Mayetiola genus_Mayetiola,a genus of Cecidomyidae
+10686,Mayflower,the ship in which the Pilgrim Fathers sailed from England to Massachusetts in 1620
+10687,Mays Willie_Mays Willie_Howard_Mays_Jr. Say_Hey_Kid,United States baseball player (born in 1931)
+10688,Mazama genus_Mazama,brockets
+10689,Mazar-i-Sharif,a city in northern Afghanistan
+10690,Mazatlan,a port city in western Mexico on the Pacific Ocean; tourist center
+10691,Mazzini Giuseppe_Mazzini,Italian nationalist whose writings spurred the movement for a unified and independent Italy (1805-1872)
+10692,Mbabane capital_of_Swaziland,capital of Swaziland; located in northwestern Swaziland
+10693,Mbeya,a city in southwestern Tanzania
+10694,Mbundu Ovimbundu,an ethnic group speaking Umbundu and living in western Angola
+10695,McAlester,a town in southeastern Oklahoma
+10696,McAllen,a town in southern Texas on the Rio Grande
+10697,McArdle's_disease,an inherited disease in which abnormal amounts of glycogen accumulate in skeletal muscle; results in weakness and cramping
+10698,McBurney's_point,a point one third of the way along a line drawn from the hip to the umbilicus; the point of maximum sensitivity in acute appendicitis
+10699,McCarthy Joseph_McCarthy Joseph_Raymond_McCarthy,United States politician who unscrupulously accused many citizens of being Communists (1908-1957)
+10700,McCarthy Mary_McCarthy Mary_Therese_McCarthy,United States satirical novelist and literary critic (1912-1989)
+10701,McCarthyism,unscrupulously accusing people of disloyalty (as by saying they were Communists)
+10702,McCartney Paul_McCartney Sir_James_Paul_McCartney,English rock star and bass guitarist and songwriter who with John Lennon wrote most of the music for the Beatles (born in 1942)
+10703,McCauley Mary_McCauley Mary_Ludwig_Hays_McCauley Molly_Pitcher,heroine of the American Revolution who carried water to soldiers during the Battle of Monmouth Court House and took over her husband's gun when he was overcome by heat (1754-1832)
+10704,McCormick Cyrus_McCormick Cyrus_Hall_McCormick,United States inventor and manufacturer of a mechanical harvester (1809-1884)
+10705,McCormick John_McCormick,United States operatic tenor (born in Ireland) (1884-1945)
+10706,McCullers Carson_McCullers Carson_Smith_McCullers,United States novelist (1917-1967)
+10707,McGraw John_McGraw John_Joseph_McGraw,United States baseball player and manager (1873-1934)
+10708,McGuffey William_Holmes_McGuffey,United States educator who compiled the McGuffey Eclectic Readers (1800-1873)
+10709,McGuffey_Eclectic_Readers,readers that combined lessons in reading with moralistic messages
+10710,McGuffin MacGuffin,(film) a plot element that catches the viewers' attention or drives the plot; "the McGuffin was a key element of Alfred Hitchcock's films"
+10711,McIntosh,early-ripening apple popular in the northeastern United States; primarily eaten raw but suitable for applesauce
+10712,McKim Charles_Follen_McKim,United States neoclassical architect (1847-1909)
+10713,McKinley Mount_McKinley Mt._McKinley Denali,a mountain in south central Alaska; the highest peak in North America (20,300 feet high)
+10714,McKinley William_McKinley President_McKinley,25th President of the United States; was assassinated by an anarchist (1843-1901)
+10715,McLuhan Marshall_McLuhan Herbert_Marshall_McLuhan,Canadian writer noted for his analyses of the mass media (1911-1980)
+10716,McMaster John_Bach_McMaster,United States historian who wrote a nine volume history of the people of the United States (1852-1932)
+10717,McPherson Aimee_Semple_McPherson,United States evangelist (born in Canada) noted for her extravagant religious services (1890-1944)
+10718,Mead George_Herbert_Mead,United States philosopher of pragmatism (1863-1931)
+10719,Mead Margaret_Mead,United States anthropologist noted for her claims about adolescence and sexual behavior in Polynesian cultures (1901-1978)
+10720,Mead's_milkweed Asclepias_meadii Asclepia_meadii,milkweed of central North America; a threatened species
+10721,Meade George_Gordon_Meade,United States general in charge of the Union troops at the Battle of Gettysburg (1815-1872)
+10722,Meade James_Edward_Meade,English economist noted for his studies of international trade and finance (1907-1995)
+10723,Meany George_Meany,United States labor leader who was the first president of the AFL-CIO (1894-1980)
+10724,Mecca,joint capital (with Riyadh) of Saudi Arabia; located in western Saudi Arabia; as the birthplace of Muhammad it is the holiest city of Islam
+10725,Meccano Meccano_set,a child's construction set for making mechanical models
+10726,Meckel's_diverticulum,a congenital diverticulum in the ileum resulting from incomplete closure of the yolk sac
+10727,Meconopsis genus_Meconopsis,herbs almost entirely of mountains of China and Tibet; often monocarpic
+10728,Mecoptera order_Mecoptera,an order of carnivorous insects usually having long membranous wings and long beaklike heads with chewing mouths at the tip
+10729,Medaille_Militaire,a French military decoration
+10730,Medal_of_Honor Congressional_Medal_of_Honor,the highest U.S. military decoration awarded for bravery and valor in action `above and beyond the call of duty'
+10731,Medan,a city in Indonesia; located in northeastern Sumatra
+10732,Medawar Peter_Medawar Sir_Peter_Brian_Medawar,British immunologist (born in Brazil) who studied tissue transplants and discovered that the rejection of grafts was an immune response (1915-1987)
+10733,Medea,(Greek mythology) a princess of Colchis who aided Jason in taking the Golden Fleece from her father
+10734,Medellin,city in western Colombia; important coffee center
+10735,Medellin_cartel,a drug cartel in Colombia; controlled the production of cocaine from the 1970s until 1993 when the leader was killed
+10736,Medford,a town in southwestern Oregon; a summer resort
+10737,Medford,town in northeastern Massachusetts; residential suburb of Boston
+10738,Medicago genus_Medicago,a genus of herbs that resemble clover
+10739,Medicaid,health care for the needy; a federally and state-funded program
+10740,Medicaid_funds,public funds used to pay for Medicaid
+10741,Medical_Literature_Analysis_and_Retrieval_System MEDLARS,relational database of the United States National Library of Medicine for the storage and retrieval of bibliographical information concerning the biomedical literature
+10742,Medicare,health care for the aged; a federally administered system of health insurance available to persons aged 65 and over
+10743,Medici,aristocratic Italian family of powerful merchants and bankers who ruled Florence in the 15th century
+10744,Medieval_Greek Middle_Greek Byzantine_Greek,the Greek language from about 600 to 1200 AD
+10745,Medieval_Latin,Latin used for liturgical purposes during the Middle Ages
+10746,Medina Al_Madinah,a city in western Saudi Arabia; site of the tomb of Muhammad; the second most holy city of Islam
+10747,Medinilla genus_Medinilla,tropical Old World ornamental evergreen shrubs having fleshy leaves and large panicles of white pink flowers
+10748,Medinilla_magnifica,a beautiful tropical evergreen epiphytic shrub grown for its lush foliage and huge panicles of pink flowers; Philippines
+10749,Mediterranean Mediterranean_Sea,the largest inland sea; between Europe and Africa and Asia
+10750,Mediterranean_flour_moth Anagasta_kuehniella,small moth whose larvae damage stored grain and flour
+10751,Mediterranean_fruit_fly medfly Ceratitis_capitata,small black-and-white fly that damages citrus and other fruits by implanting eggs that hatch inside the fruit
+10752,Mediterranean_snapdragon Antirrhinum_majus,perennial native to the Mediterranean but widely cultivated for its purple or pink flowers
+10753,Mediterranean_water_shrew Neomys_anomalus,a type of water shrew
+10754,Medoc,red Bordeaux wine from the Medoc district of southwestern France
+10755,Medusa,(Greek mythology) a woman transformed into a Gorgon by Athena; she was slain by Perseus
+10756,Megachile genus_Megachile,type genus of the Megachilidae: leaf-cutting bees
+10757,Megachilidae family_Megachilidae,leaf-cutting and mason bees
+10758,Megachiroptera suborder_Megachiroptera,fruit bats
+10759,Megaderma genus_Megaderma,type genus of the Megadermatidae
+10760,Megadermatidae family_Megadermatidae,Old World false vampire bats
+10761,Megaera,one of the three Furies
+10762,Megalobatrachus genus_Megalobatrachus,giant salamanders; in some classifications included in the genus Cryptobranchus
+10763,Megalonychidae family_Megalonychidae,mammal family consisting of the two-toed sloths
+10764,Megaloptera suborder_Megaloptera,in some classifications considered a separate order: alderflies; dobsonflies; snake flies
+10765,Megalosauridae family_Megalosauridae,megalosaurs
+10766,Megapodiidae family_Megapodiidae,megapodes
+10767,Megapodius genus-Megapodius,type genus of the Megapodiidae
+10768,Megaptera genus_Megaptera,humpback whales
+10769,Megatheriidae family_Megatheriidae,extinct ground sloths
+10770,Megatherium genus_Megatherium,type genus of the Megatheriidae
+10771,Megillah,(Judaism) the scroll of parchment that contains the biblical story of Esther; traditionally read in synagogues to celebrate Purim
+10772,Meibomian_gland tarsal_gland,a long sebaceous gland that lubricates the eyelids; "bacterial infection of a Meibomian gland produces a stye"
+10773,Meiji_Tenno Mutsuhito,emperor of Japan who encouraged the modernization of Japan (1852-1912)
+10774,Meir Golda_Meir,Israeli statesman (born in Russia) (1898-1978)
+10775,Meissner Fritz_W._Meissner,German physicist (1882-1974)
+10776,Meissner Georg_Meissner,German anatomist (1829-1905)
+10777,Meitner Lise_Meitner,Swedish physicist (born in Austria) who worked in the field of radiochemistry with Otto Hahn and formulated the concept of nuclear fission with Otto Frisch (1878-1968)
+10778,Mekong Mekong_River,an Asian river; flows through a large delta in southern Vietnam into the South China Sea
+10779,Melampodium genus_Melampodium,herbs and subshrubs of warm North America
+10780,Melampsora genus_Melampsora,rusts having sessile one-celled teliospores in a single layer
+10781,Melampsoraceae family_Melampsoraceae,rust fungi
+10782,Melanchthon Philipp_Melanchthon Philipp_Schwarzerd,German theologian and Luther's successor as leader of the Reformation in Germany (1497-1560)
+10783,Melanerpes genus_Melanerpes,a genus of Picidae
+10784,Melanesia,the islands in the southwestern part of Oceania
+10785,Melanitta genus_Melanitta,scoters
+10786,Melanogrammus genus_Melanogrammus,haddock
+10787,Melanoplus genus_Melanoplus,New World migratory locusts and common American grasshoppers
+10788,Melanotis genus_Melanotis,a genus of Mimidae
+10789,Melanthiaceae family_Melanthiaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted: includes Aletris; Narthecium; Veratrum
+10790,Melastoma genus_Melastoma,type genus of Melastomataceae; Asiatic shrubs with leathery leaves and large purple flowers followed by edible fleshy black berries
+10791,Melastomataceae family_Melastomataceae Melastomaceae family_Melastomaceae meadow-beauty_family,a family of trees and bushes and herbs of order Myrtales; many are cultivated as ornamentals
+10792,Melba Dame_Nellie_Melba Helen_Porter_Mitchell,Australian operatic soprano (1861-1931)
+10793,Melba_toast,very thin crisp brown toast
+10794,Melbourne,a resort town in east central Florida
+10795,Melbourne,the capital of Victoria state and 2nd largest Australian city; a financial and commercial center
+10796,Melchior,(New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus; usually represented as a king of Nubia
+10797,Melchior Lauritz_Melchior Lauritz_Lebrecht_Hommel_Melchior,United States operatic tenor (born in Denmark) noted for his Wagnerian roles (1890-1973)
+10798,Meleagrididae family_Meleagrididae,turkeys and some extinct forms
+10799,Meleagris genus_Meleagris,type genus of the Meleagrididae: wild and domestic turkeys
+10800,Meles genus_Meles,in some classifications: type genus of the subfamily Melinae
+10801,Melia genus_Melia,type genus of the Meliaceae: East Indian and Australian deciduous trees with leaves resembling those of the ash
+10802,Meliaceae family_Meliaceae mahogany_family,tropical trees and shrubs including many important timber and ornamental trees
+10803,Melicoccus genus_Melicoccus Melicocca genus_Melicocca,tropical American trees and shrubs bearing berries
+10804,Melicytus genus_Melicytus,a genus of deciduous shrubs or trees; fruit is a berry; grow in New Zealand and Fiji and Solomon Islands
+10805,Melinae subfamily_Melinae,subdivision not used in some classifications: badgers
+10806,Meliphagidae family_Meliphagidae,honey eaters
+10807,Melissa genus_Melissa,a genus of Old World mints of the family Labiatae
+10808,Melkite Melchite,an eastern Christian in Egypt or Syria who adheres to the Orthodox faith as defined by the council of Chalcedon in 451 and as accepted by the Byzantine emperor
+10809,Melkite Melchite,an Orthodox Christian or Uniate Christian belonging to the patriarchate of Alexandria or Antioch or Jerusalem
+10810,Mellivora genus_Mellivora,ratels
+10811,Mellon Andrew_Mellon Andrew_W._Mellon Andrew_William_Mellon,United States financier and philanthropist (1855-1937)
+10812,Melocactus genus_Melocactus,genus of strongly ribbed globose or spheroid cacti of tropical South and Central America and the Caribbean
+10813,Melogale genus_Melogale,a genus of Mustelidae
+10814,Meloidae family_Meloidae,blister beetles
+10815,Melolontha genus_Melolontha,a genus of Melolonthidae
+10816,Melolonthidae subfamily_Melolonthidae,considered a separate family in some classification systems
+10817,Melophagus genus_Melophagus,an arthropod genus of wingless flies including the sheep ked
+10818,Melopsittacus genus_Melopsittacus,a genus of Psittacidae
+10819,Melospiza genus_Melospiza,American song sparrow and swamp sparrow
+10820,Melpomene,(Greek mythology) the Muse of tragedy
+10821,Melursus genus_Melursus,sloth bears; in some classifications not a separate genus from Ursus
+10822,Melville Herman_Melville,United States writer of novels and short stories (1819-1891)
+10823,Membracidae family_Membracidae,plant hoppers: treehoppers
+10824,Memorial_Day Decoration_Day,legal holiday in the United States, last Monday in May; commemorates the members of the United States armed forces who were killed in war
+10825,Memphis,largest city of Tennessee; located in southwestern Tennessee on bluffs overlooking the Mississippi River
+10826,Memphis,an ancient city of Egypt on the Nile (south of Cairo)
+10827,Menai_Strait,a strait in northern Wales between Anglesey Island and the mainland
+10828,Menander,comic dramatist of ancient Greece (342-292 BC)
+10829,Mencken H._L._Mencken Henry_Louis_Mencken,United States journalist and literary critic (1880-1956)
+10830,Mendel Gregor_Mendel Johann_Mendel,Augustinian monk and botanist whose experiments in breeding garden peas led to his eventual recognition as founder of the science of genetics (1822-1884)
+10831,Mendel's_law,(genetics) one of two principles of heredity formulated by Gregor Mendel on the basis of his experiments with plants; the principles were limited and modified by subsequent genetic research
+10832,Mendeleyev Mendeleev Dmitri_Mendeleyev Dmitri_Mendeleev Dmitri_Ivanovich_Mendeleyev Dmitri_Ivanovich_Mendeleev,Russian chemist who developed a periodic table of the chemical elements and predicted the discovery of several new elements (1834-1907)
+10833,Mendelian,a follower of Mendelism
+10834,Mendelism Mendelianism,the theory of inheritance based on Mendel's laws
+10835,Mendelsohn Erich_Mendelsohn,German architect who migrated to Palestine in 1937 (1887-1953)
+10836,Mendelssohn Felix_Mendelssohn Jakob_Ludwig_Felix_Mendelssohn-Bartholdy,German musician and romantic composer of orchestral and choral works (1809-1847)
+10837,Mendenhall_Glacier Great_Mendenhall_Glacier,a glacier of the Piedmont type near Juneau in Alaska
+10838,Menelaus,(Greek mythology) the king of Sparta at the time of the Trojan War; brother of Agamemnon; husband of Helen
+10839,Meniere Prosper_Meniere,French otologist who first described a form of vertigo now known as Meniere's disease and identified the semicircular canals as the site of the lesion (1799-1862)
+10840,Meniere's_disease,a disease of the inner ear characterized by episodes of dizziness and tinnitus and progressive hearing loss (usually unilateral)
+10841,Menippe genus_Menippe,stone crabs
+10842,Meniscium genus_Meniscium,terrestrial ferns of tropical Americas
+10843,Menispermaceae family_Menispermaceae moonseed_family,herbaceous or woody climbers
+10844,Menispermum genus_Menispermum,climbing herbs
+10845,Menninger Charles_Menninger Charles_Frederick_Menninger,United States psychiatrist who with his sons founded a famous psychiatric clinic in Topeka (1862-1953)
+10846,Menninger Karl_Menninger Karl_Augustus_Menninger,United States psychiatrist and son of Charles Menninger (1893-1990)
+10847,Menninger William_Menninger William_Claire_Menninger,United States psychiatrist and son of Charles Menninger (1899-1966)
+10848,Mennonite,a member of an Anabaptist movement in Holland noted for its simplicity of life
+10849,Mennonite_Church,formed from the Anabaptist movement in the 16th century; noted for its simplicity of life
+10850,Mennonitism,system of beliefs and practices including belief in scriptural authority; plain dress; adult baptism; foot washing; restriction of marriage to members of the group
+10851,Menomini Menominee,a member of the federally recognized tribe of Algonquian people living on a reservation in central Wisconsin
+10852,Menomini Menominee,the Algonquian language spoken by the Menomini
+10853,Menopon genus_Menopon,chicken lice
+10854,Menorah,(Judaism) a candelabrum with seven branches used in ceremonies to symbolize the seven days of Creation
+10855,Menotti Gian_Carlo_Menotti,United States composer (born in Italy) of operas (born in 1911)
+10856,Menotyphla suborder_Menotyphla,elephant shrews; tree shrews
+10857,Mensa,a faint constellation in the polar region of the southern hemisphere and containing part of the Large Magellanic Cloud
+10858,Menshevik,a Russian member of the liberal minority group that advocated gradual reform and opposed the Bolsheviks before and during the Russian Revolution
+10859,Mentha genus_Mentha,mint plants
+10860,Menticirrhus genus_Menticirrhus,kingfishes; whiting
+10861,Mentzelia genus_Mentzelia,genus of bristly herbs or subshrubs of western America lacking stinging hairs
+10862,Menuhin Yehudi_Menuhin Sir_Yehudi_Menuhin,British violinist (born in the United States) who began his career as a child prodigy in the 1920s (1916-1999)
+10863,Menura genus_Menura,type and sole genus of the family Menuridae
+10864,Menurae suborder_Menurae,lyrebirds and scrubbirds
+10865,Menuridae family_Menuridae,lyrebirds
+10866,Menyanthaceae family_Menyanthaceae buckbean_family,a dicotyledonous family of marsh plants of order Gentianales
+10867,Menyanthes genus_Menyanthes,the type genus of the Menyanthaceae; one species: bogbeans
+10868,Menziesia genus_Menziesia,deciduous shrubs of North America and eastern Asia
+10869,Mephistopheles,evil spirit to whom Faust sold his soul
+10870,Mephitinae subfamily_Mephitinae,subdivision not used in some classifications: skunks
+10871,Mephitis genus_Mephitis,in some classifications: type genus of the subfamily Mephitinae
+10872,Mercalli_scale,a scale formerly used to describe the magnitude of an earthquake; an earthquake detected only by seismographs is a I and an earthquake that destroys all buildings is a XII
+10873,Mercator Gerardus_Mercator Gerhard_Kremer,Flemish geographer who lived in Germany; he invented the Mercator projection of maps of the globe (1512-1594)
+10874,Mercator_projection Mercator's_projection,a map projection of the earth onto a cylinder; areas appear greater the farther they are from the equator
+10875,Mercedario,a mountain in the Andes in Argentina (22,210 feet high)
+10876,Mercenaria genus_Mercenaria,a genus of Veneridae
+10877,Mercer John_Mercer,British maker of printed calico cloth who invented mercerizing (1791-1866)
+10878,Merckx Eddy_Merckx,Belgian racing cyclist who won the Tour de France five times (born in 1945)
+10879,Mercouri Melina_Mercouri Anna_Amalia_Mercouri,Greek film actress (1925-1994)
+10880,Mercurialis genus_Mercurialis,a genus of slender herbs belonging to the family Euphorbiaceae
+10881,Mercury,(Roman mythology) messenger of Jupiter and god of commerce; counterpart of Greek Hermes
+10882,Mercury,the smallest planet and the nearest to the sun
+10883,Mercury_program,a program of rocket-powered flights undertaken by US between 1961 and 1963 with the goal of putting a man in orbit around the earth; "under the Mercury program each flight had one astronaut"
+10884,Meredith George_Meredith,English novelist and poet (1828-1909)
+10885,Meredith James_Meredith James_Howard_Meredith,United States civil rights leader whose college registration caused riots in traditionally segregated Mississippi (born in 1933)
+10886,Mergenthaler Ottmar_Mergenthaler,United States inventor (born in Germany) of the Linotype machine (1854-1899)
+10887,Merginae subfamily_Merginae,mergansers and closely related diving birds
+10888,Mergus genus_Mergus,mergansers
+10889,Merida,the capital of the Mexican state of Yucatan
+10890,Meridian,a town in eastern Mississippi
+10891,Meriones genus_Meriones,a genus of Cricetidae
+10892,Merlangus genus_Merlangus,whitings
+10893,Merlin,(Arthurian legend) the magician who acted as King Arthur's advisor
+10894,Merlot,black wine grape originally from the region of Bordeaux
+10895,Merlot,dry red wine made from a grape grown widely in Bordeaux and California
+10896,Merluccius genus_Merluccius,hakes
+10897,Merman Ethel_Merman,United States singer who appeared in several musical comedies (1909-1984)
+10898,Meropidae family_Meropidae,bee-eaters
+10899,Merops genus_Merops,type genus of the Meropidae
+10900,Merostomata class_Merostomata,used in some classifications; includes the orders Xiphosura and Eurypterida
+10901,Merovingian,a member of the Merovingian dynasty
+10902,Merovingian Merovingian_dynasty,a Frankish dynasty founded by Clovis I that reigned in Gaul and Germany from about 500 to 750
+10903,Merrimac,an ironclad vessel built by the Confederate forces in the hope of breaking the blockade imposed by the North
+10904,Merrimack Merrimack_River,a river that rises in south central New Hampshire and flows through Concord and Manchester into Massachusetts and empties into the Atlantic Ocean
+10905,Mertensia genus_Mertensia,a genus of herbs belonging to the family Boraginaceae that grow in temperate regions and have blue or purple flowers shaped like funnels
+10906,Merton Robert_Merton Robert_King_Merton,United States sociologist (1910-2003)
+10907,Merton Thomas_Merton,United States religious and writer (1915-1968)
+10908,Meryta genus_Meryta,small to medium evergreen dioecious trees of oceanic climates: puka
+10909,Mesa,a city in Arizona just to the east of Phoenix; originally a suburb of Phoenix
+10910,Mesa_Verde_National_Park,a national park in Colorado containing prehistoric cliff dwellings; semiarid landscape
+10911,Mesabi_Range,a range of hills in northeastern Minnesota where rich iron ore deposits were discovered in 1887
+10912,Mesasamkranti,Hindu solar holiday at the beginning of the new astrological year when the sun enters the constellation Aries
+10913,Mesembryanthemum genus_Mesembryanthemum,South African annual or biennial plants having flowers that open only in bright sunlight
+10914,Mesmer Franz_Anton_Mesmer Friedrich_Anton_Mesmer,Austrian physician who tried to treat diseases with a form of hypnotism (1734-1815)
+10915,Mesoamerica,Mexico and Central America
+10916,Mesoamerican,a member of one of the various peoples inhabiting Mesoamerica
+10917,Mesocricetus genus_Mesocricetus,golden hamsters
+10918,Mesolithic_Age Mesolithic Epipaleolithic,middle part of the Stone Age beginning about 15,000 years ago
+10919,Mesopotamia,the land between the Tigris and Euphrates; site of several ancient civilizations; part of what is now known as Iraq
+10920,Mesozoic Mesozoic_era Age_of_Reptiles,from 230 million to 63 million years ago
+10921,Mespilus genus_Mespilus,medlars
+10922,Messiah,Jesus Christ; considered by Christians to be the promised deliverer
+10923,Messiah,the awaited king of the Jews; the promised and expected deliverer of the Jewish people
+10924,Messiah,an oratorio composed by Handel in 1742
+10925,Messidor,tenth month of the Revolutionary calendar (June and July); the month of harvest
+10926,Messina,a port city in northeastern Sicily on the Strait of Messina
+10927,Mesua genus_Mesua,genus of tropical Asiatic trees having large solitary flowers
+10928,Metatheria subclass_Metatheria,pouched animals
+10929,Metaurus_River,a battle during the second Punic War (207 BC); Hannibal's brother Hasdrubal was defeated by the Romans which ended Hannibal's hopes for success in Italy
+10930,Metazoa subkingdom_Metazoa,multicellular animals having cells differentiated into tissues and organs and usually a digestive cavity and nervous system
+10931,Metchnikoff Elie_Metchnikoff Metchnikov Elie_Metchnikov Ilya_Ilich_Metchnikov,Russian bacteriologist in France who formulated the theory of phagocytosis (1845-1916)
+10932,Methodism,the religious beliefs and practices of Methodists characterized by concern with social welfare and public morals
+10933,Methodist,a follower of Wesleyanism as practiced by the Methodist Church
+10934,Methodist_Church Methodists,a Protestant denomination founded on the principles of John Wesley and Charles Wesley
+10935,Methodist_denomination,group of Methodist congregations
+10936,Methuselah,(Old Testament) a patriarch (grandfather of Noah) who is said to have lived 969 years
+10937,Metis,a person in western Canada who is of Caucasian and American Indian ancestry
+10938,Metroxylon genus_Metroxylon,a genus of Malayan pinnate-leaved palm trees that flower and fruit once and then die
+10939,Metternich Klemens_Metternich Prince_Klemens_Wenzel_Nepomuk_Lothar_von_Metternich,Austrian statesman (1773-1859)
+10940,Meuniere_butter lemon_butter,clarified butter browned slowly and seasoned with lemon juice and parsley
+10941,Meuse Meuse_River,a European river; flows into the North Sea
+10942,Meuse Meuse_River Argonne Argonne_Forest Meuse-Argonne Meuse-Argonne_operation,an American operation in World War I (1918); American troops under Pershing drove back the German armies which were saved only by the armistice on November 11
+10943,Mexicali,a city in northwestern Mexico near the California border
+10944,Mexican,a native or inhabitant of Mexico
+10945,Mexican-American Mexicano,a Mexican (or person of Mexican descent) living in the United States
+10946,Mexican_Revolution,a revolution for agrarian reforms led in northern Mexico by Pancho Villa and in southern Mexico by Emiliano Zapata (1910-1911)
+10947,Mexican_Spanish,the dialect of Spanish spoken in Mexico
+10948,Mexican_War,after disputes over Texas lands that were settled by Mexicans the United States declared war on Mexico in 1846 and by treaty in 1848 took Texas and California and Arizona and New Mexico and Nevada and Utah and part of Colorado and paid Mexico $15,000,000
+10949,Mexican_bean_beetle bean_beetle Epilachna_varivestis,introduced into the United States from Mexico; feeds on the foliage of the bean plant
+10950,Mexican_cypress cedar_of_Goa Portuguese_cypress Cupressus_lusitanica,tall spreading evergreen found in Mexico having drooping branches; believed to have been introduced into Portugal from Goa
+10951,Mexican_hairless,any of an old breed of small nearly hairless dogs of Mexico
+10952,Mexican_hat Ratibida_columnaris,coneflower with flower heads resembling a Mexican hat with a tall red-brown disk and drooping yellow or yellow and red-brown rays; grows in the great plains along base of Rocky Mountains
+10953,Mexican_hyssop Agastache_mexicana,erect perennial of Mexico having rose to crimson flowers
+10954,Mexican_juniper drooping_juniper Juniperus_flaccida,small tree of western Texas and mountains of Mexico having spreading branches with drooping branchlets
+10955,Mexican_mint Salvia_divinorum,an herb from Oaxaca that has a powerful hallucinogenic effect; the active ingredient is salvinorin
+10956,Mexican_monetary_unit,monetary unit in Mexico
+10957,Mexican_peso peso,the basic unit of money in Mexico; equal to 100 centavos
+10958,Mexican_pocket_mouse Liomys_irroratus,large pocket mouse of Mexico
+10959,Mexican_poppy Argemone_mexicana,annual herb with prickly stems and large yellow flowers; southern United States to West Indies and Mexico
+10960,Mexican_standoff,a situation in which no one can emerge as a clear winner
+10961,Mexican_sunflower tithonia,any plant of the genus Tithonia; tall coarse herbs or shrubs of Mexico to Panama having large flower heads resembling sunflowers with yellow disc florets and golden-yellow to orange-scarlet rays
+10962,Mexico United_Mexican_States,a republic in southern North America; became independent from Spain in 1810
+10963,Mexico_City Ciudad_de_Mexico Mexican_capital capital_of_Mexico,the capital and largest city of Mexico is a political and cultural and commercial and industrial center; one of the world's largest cities
+10964,Meyerbeer Giacomo_Meyerbeer Jakob_Liebmann_Beer,German composer of operas in a style that influenced Richard Wagner (1791-1864)
+10965,Meyerhof Otto_Meyerhof Otto_Fritz_Meyerhof,United States biochemist (born in Germany) who studied the metabolism of muscles (1884-1951)
+10966,Miami,a member of the extinct Algonquian people formerly living in northern Indiana and southern Michigan
+10967,Miami,a city and resort in southeastern Florida on Biscayne Bay; the best known city in Florida; a haven for retirees and a refuge for Cubans fleeing Castro
+10968,Miami_Beach,a city in southeastern Florida on an island between Biscayne Bay and the Atlantic Ocean; known for fashionable resort hotels
+10969,Micah Micheas,a minor Hebrew prophet (8th century BC)
+10970,Micah Micheas Book_of_Micah,an Old Testament book telling the prophecies of Micah foretelling the destruction of Jerusalem
+10971,Micawber Wilkins_Micawber,fictional character created by Charles Dickens; an eternal optimist
+10972,Michael,(Old Testament) the guardian archangel of the Jews
+10973,Michaelmas Michaelmas_Day September_29,honoring the archangel Michael; a quarter day in England, Wales, and Ireland
+10974,Michaelmas_daisy New_York_aster Aster_novi-belgii,North American perennial herb having small autumn-blooming purple or pink or white flowers; widely naturalized in Europe
+10975,Michaelmastide,the season of Michaelmas
+10976,Michelangelo Michelangelo_Buonarroti,Florentine sculptor and painter and architect; one of the outstanding figures of the Renaissance (1475-1564)
+10977,Michelson A._A._Michelson Albert_Michelson Albert_Abraham_Michelson,United States physicist (born in Germany) who collaborated with Morley in the Michelson-Morley experiment (1852-1931)
+10978,Michelson-Morley_experiment,a celebrated experiment conducted by Albert Michelson and Edward Morley; their failure to detect any influence of the earth's motion on the velocity of light was the starting point for Einstein's theory of relativity
+10979,Michener James_Michener James_Albert_Michener,United States writer of historical novels (1907-1997)
+10980,Michigan Chicago Newmarket boodle stops,a gambling card game in which chips are placed on the ace and king and queen and jack of separate suits (taken from a separate deck); a player plays the lowest card of a suit in his hand and successively higher cards are played until the sequence stops; the player who plays a card matching one in the layout wins all the chips on that card
+10981,Michigan Wolverine_State Great_Lakes_State MI Mich.,a midwestern state in north central United States in the Great Lakes region
+10982,Michigan_lily Lilium_michiganense,lily of central North America having recurved orange-red flowers with deep crimson spots
+10983,Michigander Wolverine,a native or resident of Michigan
+10984,Mickey_Finn,slang term for knockout drops
+10985,Mickey_Mouse,a fictional mouse created in animated film strips by Walt Disney
+10986,Micmac,the Algonquian language of the Micmac
+10987,Micmac Mikmaq,a member of the Algonquian people inhabiting the Maritime Provinces of Canada
+10988,Microcentrum genus_Microcentrum,katydids
+10989,Microchiroptera suborder_Microchiroptera,most of the bats in the world; all bats except fruit bats insectivorous bats
+10990,Micrococcaceae family_Micrococcaceae,spherical or elliptical usually aerobic eubacteria that produce yellow or orange or red pigment; includes toxin-producing forms as well as harmless commensals and saprophytes
+10991,Micrococcus genus_Micrococcus,type genus of the family Micrococcaceae
+10992,Microdesmidae family_Microdesmidae,worm fish
+10993,Microdipodops genus_Microdipodops,kangaroo mice
+10994,Microgramma genus_Microgramma,epiphytic ferns of tropical America and Africa
+10995,Microhylidae family_Microhylidae Brevicipitidae family_Brevicipitidae,narrow-mouthed toads and sheep frogs; some burrow and some are arboreal; found worldwide
+10996,Micromeria genus_Micromeria,large genus of fragrant chiefly Old World herbs
+10997,Micromyx genus_Micromyx,Old World harvest mice
+10998,Micronesia,the islands in the northwestern part of Oceania
+10999,Micronesia Federated_States_of_Micronesia TT,a country scattered over Micronesia with a constitutional government in free association with the United States; achieved independence in 1986
+11000,Micronor,trade name for and oral contraceptive containing the progestin compound norethindrone
+11001,Micropogonias genus_Micropogonias,croakers
+11002,Micropterus genus_Micropterus,American freshwater black basses
+11003,Microscopium,a faint constellation in the southern hemisphere near Sagittarius and Capricornus
+11004,Microsorium genus_Microsorium,tropical usually epiphytic ferns; Africa to Asia and Polynesia to Australia
+11005,Microsporum genus_Microsporum,a genus of fungus of the family Moniliaceae; causes ringworm
+11006,Microstomus genus_Microstomus,a genus of Pleuronectidae
+11007,Microstrobos genus_Microstrobos,2 species of small evergreen shrubs of Australia and Tasmania
+11008,Microtaggant,(trademark) a microscopic and traceable identification particle used to trace explosives or other hazardous materials or to prevent counterfeiting
+11009,Microtus genus_Microtus,voles of the northern hemisphere
+11010,Micruroides genus_Micruroides,coral snakes
+11011,Micrurus genus_Micrurus,coral snakes
+11012,Mid-Atlantic_Ridge,a very long narrow elevation on the ocean floor that runs all the way from Iceland in the North Atlantic to Bouvet Island in the South Atlantic
+11013,Mid-Atlantic_states,a region of the eastern United States comprising New York and New Jersey and Pennsylvania and Delaware and Maryland
+11014,Midas,(Greek legend) the greedy king of Phrygia who Dionysus gave the power to turn everything he touched into gold
+11015,Midas_touch,an ability to make and manage large amounts of money
+11016,Middle_Ages Dark_Ages,the period of history between classical antiquity and the Italian Renaissance
+11017,Middle_East Mideast Near_East,the area around the eastern Mediterranean; from Turkey to northern Africa and eastward to Iran; the site of such ancient civilizations as Phoenicia and Babylon and Egypt and the birthplace of Judaism and Christianity and Islam; had continuous economic and political turmoil in the 20th century; "the Middle East is the cradle of Western civilization"
+11018,Middle_English,English from about 1100 to 1450
+11019,Middle_High_German,High German from 1100 to 1500
+11020,Middle_Irish,Irish Gaelic from 1100 to 1500
+11021,Middle_Low_German,Low German from 1100 to 1500
+11022,Middle_Paleolithic,the time period of Neanderthal man; ended about 35,000 years BC
+11023,Middleton Thomas_Middleton,English playwright and pamphleteer (1570-1627)
+11024,Midgard,(Norse mythology) the abode of humans in Norse mythology
+11025,Midi,the southern part of France
+11026,Midi-Pyrenees,a region in southwestern France
+11027,Midland,a town in west central Texas
+11028,Midrash,(Judaism) an ancient commentary on part of the Hebrew scriptures that is based on Jewish methods of interpretation and attached to the biblical text
+11029,Midsummer_Day Midsummer's_Day St_John's_Day June_24,a quarter day in England, Wales, and Ireland
+11030,Midsummer_Eve Midsummer_Night St_John's_Eve St_John's_Night June_23,the night before Midsummer Day
+11031,Midway Battle_of_Midway,naval battle of World War II (June 1942); American planes based on land and on carriers decisively defeated a Japanese fleet on its way to invade the Midway Islands
+11032,Midway_Islands,an atoll in the Hawaiian Islands some 1300 miles to the northwest of Honolulu; site of an important United States naval base
+11033,Midwest middle_west midwestern_United_States,the north central region of the United States (sometimes called the heartland or the breadbasket of America)
+11034,Mies_Van_Der_Rohe Ludwig_Mies_Van_Der_Rohe,United States architect (born in Germany) who built unornamented steel frame and glass skyscrapers (1886-1969)
+11035,Mighty_Mouse,a fictional mouse endowed with great strength and courage
+11036,Mikania genus_Mikania,large genus of evergreen lianas of tropical America
+11037,Mikir-Meithei,Kamarupan languages spoken in the states of Manipur and Assam in northeastern India
+11038,Milady,an English noblewoman
+11039,Milan Milano,the capital of Lombardy in northern Italy; has been an international center of trade and industry since the Middle Ages
+11040,Milanese,a native or inhabitant of Milan
+11041,Milhaud Darius_Milhaud,French composer of works that combine jazz and polytonality and Brazilian music (1892-1974)
+11042,Militant_Tendency,a Trotskyist political organization in Great Britain set up in 1964 inside the Labour Party
+11043,Milk Milk_River,a river that rises in the Rockies in northwestern Montana and flows eastward to become a tributary of the Missouri River
+11044,Milky_Way Milky_Way_Galaxy Milky_Way_System,the galaxy containing the solar system; consists of millions of stars that can be seen as a diffuse band of light stretching across the night sky
+11045,Mill James_Mill,Scottish philosopher who expounded Bentham's utilitarianism; father of John Stuart Mill (1773-1836)
+11046,Mill John_Mill John_Stuart_Mill,English philosopher and economist remembered for his interpretations of empiricism and utilitarianism (1806-1873)
+11047,Millais Sir_John_Everett_Millais,Englishman and Pre-Raphaelite painter (1829-1896)
+11048,Millay Edna_Millay Edna_Saint_Vincent_Millay,United States poet (1892-1950)
+11049,Miller Arthur_Miller,United States playwright (1915-2005)
+11050,Miller Glenn_Miller Alton_Glenn_Miller,United States bandleader of a popular big band (1909-1944)
+11051,Miller Henry_Miller Henry_Valentine_Miller,United States novelist whose novels were originally banned as pornographic (1891-1980)
+11052,Millet Jean_Francois_Millet,French painter of rural scenes (1814-1875)
+11053,Millikan Robert_Andrews_Millikan,United States physicist who isolated the electron and measured its charge (1868-1953)
+11054,Mills Robert_Mills,United States architect who was the presidentially appointed architect of Washington D.C. (1781-1855)
+11055,Milne A._A._Milne Alan_Alexander_Milne,English writer of stories for children (1882-1956)
+11056,Miltiades,Athenian general who defeated the Persians at Marathon (540-489)
+11057,Milton John_Milton,English poet; remembered primarily as the author of an epic poem describing humanity's fall from grace (1608-1674)
+11058,Miltonia genus_Miltonia,genus of tropical American orchids
+11059,Milvus genus-Milvus,a genus including the common European kits
+11060,Milwaukee,largest city of Wisconsin; located in southeastern Wisconsin on the western shore of Lake Michigan; a flourishing agricultural center known for its breweries
+11061,Mimamsa,(from the Sanskrit word for `reflection' or `interpretation') one of six orthodox philosophical systems or viewpoints on ritual traditions rooted in the Vedas and the Brahmanas as opposed to Vedanta which relies mostly on the Upanishads
+11062,Mimidae family_Mimidae,sometimes considered a subfamily of Troglodytidae: mockingbirds; catbirds; thrashers
+11063,Mimir,(Norse mythology) giant who lives in the roots of Yggdrasil and guards the well of wisdom
+11064,Mimosaceae family_Mimosaceae,family of spiny woody plants (usually shrubs or small trees) whose leaves mimic animals in sensitivity to touch; commonly included in the family Leguminosae
+11065,Mimosoideae subfamily_Mimosoideae,alternative name used in some classification systems for the family Mimosaceae
+11066,Mimus genus_Mimus,type genus of the family Mimidae: mockingbirds
+11067,Min,an Egyptian god of procreation
+11068,Min Min_dialect Fukien Fukkianese Hokkianese Amoy Taiwanese,any of the forms of Chinese spoken in Fukien province
+11069,Minamata_Bay,a bay on the west coast of Kyushu; in the 1950s industrial wastes caused mercury poisoning among the Japanese people who ate fish from Minamata Bay
+11070,Minamata_disease,a form of mercury poisoning among people who ate fish from mercury-contaminated waters of Minamata Bay off Japan in the 1950s; characterized by severe neurological degeneration
+11071,Minato_Ohashi_Bridge,cantilever bridge at Osaka, Japan
+11072,Mindanao,the second largest island of the Philippines at the southern end of the archipelago; mountainous and volcanic
+11073,Minden battle_of_Minden,a battle in the Seven Years' War (1759) in which the English forces and their allies defeated the French
+11074,Mindoro,a mountainous island in the central Philippines
+11075,Minerva,(Roman mythology) goddess of wisdom; counterpart of Greek Athena
+11076,Ming Ming_dynasty,the imperial dynasty of China from 1368 to 1644
+11077,Miniconju,a member of a group of Siouan people who constituted a division of the Teton Sioux
+11078,Minkowski Hermann_Minkowski,German mathematician (born in Russia) who suggested the concept of four-dimensional space-time (1864-1909)
+11079,Minneapolis,largest city in Minnesota; located in southeastern Minnesota on the Mississippi river; noted for flour mills; one of the Twin Cities
+11080,Minnesota Gopher_State North_Star_State MN Minn.,a midwestern state
+11081,Minnesota_Multiphasic_Personality_Inventory MMPI,a self-report personality inventory consisting of 550 items that describe feelings or actions which the person is asked to agree with or disagree with; many scales estimating traits and qualities of personality have been developed using MMPI items
+11082,Minnesotan Gopher,a native or resident of Minnesota
+11083,Minnie_Mouse,the partner of Mickey Mouse
+11084,Minoan,a Cretan who lived in the bronze-age culture of Crete about 3000-1100 BC
+11085,Minoan_civilization Minoan_civilisation Minoan_culture,the bronze-age culture of Crete that flourished 3000-1100 BC
+11086,Minos,son of Zeus and Europa; king of ancient Crete; ordered Daedalus to build the labyrinth; after death Minos became a judge in the underworld
+11087,Minotaur,(Greek mythology) a mythical monster with the head of a bull and the body of a man; slain by Theseus
+11088,Minsk capital_of_Belarus,the capital of Belarus and of the Commonwealth of Independent States
+11089,Minuartia genus_Minuartia,mostly perennial herbs of northern hemisphere often with mat-forming habit; most often placed in genus Arenaria: sandworts
+11090,Minuit Peter_Minuit Minnewit Peter_Minnewit,Dutch colonist who bought Manhattan from the Native Americans for the equivalent of $24 (1580-1638)
+11091,Minuteman,an American militiaman prior to and during the American Revolution
+11092,Minuteman,a strategic weapon system using a guided missile of intercontinental range; missiles are equipped with nuclear warheads and dispersed in hardened silos
+11093,Miocene Miocene_epoch,from 25 million to 13 million years ago; appearance of grazing mammals
+11094,Mirabeau Comte_de_Mirabeau Honore-Gabriel_Victor_Riqueti,French revolutionary who was prominent in the early days of the French Revolution (1749-1791)
+11095,Mirabilis genus_Mirabilis,four o'clocks
+11096,Miranda_rule,the rule that police (when interrogating you after an arrest) are obliged to warn you that anything you say may be used as evidence and to read you your constitutional rights (the right to a lawyer and the right to remain silent until advised by a lawyer)
+11097,Miri Mirish Abor Dafla,little known Kamarupan languages
+11098,Miridae family_Miridae Capsidae family_Capsidae,leaf bugs
+11099,Miro Joan_Miro,Spanish surrealist painter (1893-1983)
+11100,Mirounga genus_Mirounga,elephant seals
+11101,Mishna Mishnah,the first part of the Talmud; a collection of early oral interpretations of the scriptures that was compiled about AD 200
+11102,Miss,a form of address for an unmarried woman
+11103,Mississippi Magnolia_State MS Miss.,a state in the Deep South on the gulf of Mexico; one of the Confederate States during the American Civil War
+11104,Mississippi Mississippi_River,a major North American river and the chief river of the United States; rises in northern Minnesota and flows southward into the Gulf of Mexico
+11105,Mississippian,a native or resident of Mississippi
+11106,Mississippian Missippian_period Lower_Carboniferous Lower_Carboniferous_period,from 345 million to 310 million years ago; increase of land areas; primitive ammonites; winged insects
+11107,Missoula,a university town in western Montana
+11108,Missouri,a member of the Siouan people formerly inhabiting the valley of the Missouri river in Missouri
+11109,Missouri,a dialect of the Chiwere language spoken by the Missouri
+11110,Missouri Missouri_River,the longest river in the United States; arises in Montana and flows southeastward to become a tributary of the Mississippi at Saint Louis; "The Missouri and Mississippi Rivers together form the third longest river in the world"
+11111,Missouri Show_Me_State MO Mo.,a midwestern state in central United States; a border state during the American Civil War, Missouri was admitted to the Confederacy without actually seceding from the Union
+11112,Missouri_Compromise,an agreement in 1820 between pro-slavery and anti-slavery factions in the United States concerning the extension of slavery into new territories
+11113,Missouri_goldenrod Solidago_missouriensis,similar to meadow goldenrod but usually smaller
+11114,Missouri_primrose Ozark_sundrops Oenothera_macrocarpa,evening-opening primrose of south central United States
+11115,Missourian,a native or resident of Missouri
+11116,Mister Mr Mr.,a form of address for a man
+11117,Mitchell Arthur_Mitchell,United States dancer who formed the first Black classical ballet company (born in 1934)
+11118,Mitchell John_Mitchell,United States labor leader; president of the United Mine Workers of America from 1898 to 1908 (1870-1919)
+11119,Mitchell Margaret_Mitchell Margaret_Munnerlyn_Mitchell,United States writer noted for her novel about the South during the American Civil War (1900-1949)
+11120,Mitchell Maria_Mitchell,United States astronomer who studied sunspots and nebulae (1818-1889)
+11121,Mitchell R._J._Mitchell Reginald_Joseph_Mitchell,English aeronautical engineer (1895-1937)
+11122,Mitchell William_Mitchell Billy_Mitchell,United States aviator and general who was an early advocate of military air power (1879-1936)
+11123,Mitchella genus_Mitchella,creeping evergreen herbs of North America
+11124,Mitchum Robert_Mitchum,United States film actor (1917-1997)
+11125,Mitella genus_Mitella,genus of low slender herbs of North America and northeastern Asia having flowers with trifid or pinnatifid petals
+11126,Mitford Jessica_Mitford Jessica_Lucy_Mitford,United States writer (born in England) who wrote on American culture (1917-1996)
+11127,Mitford Nancy_Mitford Nancy_Freeman_Mitford,English writer of comic novels (1904-1973)
+11128,Mithraism Mithraicism,ancient Persian religion; popular among Romans during first three centuries a.d.
+11129,Mithraist,adherent of Mithraism
+11130,Mithras Mithra,ancient Persian god of light and truth; sun god
+11131,Mithridates Mithridates_VI Mithridates_the_Great,ancient king of Pontus who expanded his kingdom by defeating the Romans but was later driven out by Pompey (132-63 BC)
+11132,Mitra,Hindu god of friendship and alliances; usually invoked together with Varuna as a supporter of heaven and earth
+11133,Mitrula_elegans,a discomycete that is 3-8 cm high with an orange to yellow fertile portion and white or pinkish stalks often half in and half out of the water
+11134,Mitterrand Francois_Mitterrand Francois_Maurice_Marie_Mitterrand,French statesman and president of France from 1981 to 1985 (1916-1996)
+11135,Miwok,a member of the North American Indian people living in the central Sierra Nevada in California
+11136,Mnemosyne,(Greek mythology) the Titaness who was goddess of memory; mother of the Muses
+11137,Mniaceae family_Mniaceae,family of erect mosses with club-shaped paraphyses and the hexagonal cells of the upper leaf surface; sometimes treated as a subfamily of Bryaceae
+11138,Mnium genus_Mnium,mosses similar to those of genus Bryum but larger
+11139,Mobile,a port in southwestern Alabama on Mobile Bay
+11140,Mobile Mobile_River,a river in southwestern Alabama; flows into Mobile Bay
+11141,Mobile_Bay,a bay of the Gulf of Mexico; fed by the Mobile River
+11142,Mobius August_F._Mobius August_Ferdinand_Mobius,German mathematician responsible for the Mobius strip (1790-1868)
+11143,Mobius_strip,a continuous closed surface with only one side; formed from a rectangular strip by rotating one end 180 degrees and joining it with the other end
+11144,Mobula genus_Mobula,type genus of the Mobulidae
+11145,Mobulidae family_Mobulidae,large rays lacking venomous spines: mantas
+11146,Model_T,the first widely available automobile powered by a gasoline engine; mass-produced by Henry Ford from 1908 to 1927
+11147,Modern_English,English since about 1450
+11148,Modern_Greek New_Greek,the Greek language as spoken and written today
+11149,Modern_Hebrew,Hebrew used in Israel today; revived from ancient Hebrew
+11150,Modicon,trade name for an oral contraceptive containing estradiol and norethindrone
+11151,Modigliani Amedeo_Modigliano,Italian painter and sculptor (1884-1920)
+11152,Moehringia genus_Moehringia,low-growing herbs widely distributed in temperate and Arctic northern hemisphere: sandworts; distinguished from members of the genus Arenaria mainly by having four-petaled rather than five-petaled flowers
+11153,Moeller's_glossitis glossodynia_exfoliativa,a superficial form of glossitis marked by irregular red patches on the tongue and sensitivity to hot or spicy food
+11154,Mogadishu Mogadiscio capital_of_Somalia,the capital and largest city of Somalia; a port on the Indian Ocean
+11155,Mogul Moghul,a member of the Muslim dynasty that ruled India until 1857
+11156,Mogul_empire,an empire established by the Mogul conquerors of India that reigned from 1526 to 1857
+11157,Mohammed Mohammad Muhammad Mahomet Mahound,the Arab prophet who, according to Islam, was the last messenger of Allah (570-632)
+11158,Mohammed_Ali Mehemet_Ali Muhammad_Ali,Albanian soldier in the service of Turkey who was made viceroy of Egypt and took control away from the Ottoman Empire and established Egypt as a modern state (1769-1849)
+11159,Mohammedan Muhammedan Muhammadan,a follower of Mohammed
+11160,Mohave Mojave,a member of the North American Indian people formerly living in the Colorado river valley in Arizona and Nevada and California
+11161,Mohave Mojave,the Yuman language spoken by the Mohave
+11162,Mohawk,a member of the Iroquoian people formerly living along the Mohawk River in New York State
+11163,Mohawk,the Iroquoian language spoken by the Mohawk
+11164,Mohawk_River,a river of central New York that flows southeastward to the Hudson River
+11165,Mohican Mahican,a member of the Algonquian people formerly living in the Hudson valley and eastward to the Housatonic
+11166,Mohican Mahican,the Algonquian language spoken by the Mohican
+11167,Mohorovicic Andrija_Mohorovicic,Yugoslav geophysicist for whom the Mohorovicic discontinuity was named (1857-1936)
+11168,Mohorovicic_discontinuity Moho,the boundary between the Earth's crust and the underlying mantle; "the Mohorovicic discontinuity averages 5 miles down under oceans and 20 miles down under continents"
+11169,Mohria genus_Mohria,African terrestrial ferns
+11170,Mohs_scale,a scale of hardness of solids; talc is 0 and diamond is 10; ordering is determined by which substance can scratch another substance
+11171,Moirai Moirae,any of the three Greek goddesses of fate or destiny; identified with the Roman Parcae and similar to the Norse Norns
+11172,Mojave Mojave_Desert Mohave Mohave_Desert,a desert area in southern California and western Arizona
+11173,Mojave_aster Machaeranthera_tortifoloia,wild aster having greyish leafy stems and flower heads with narrow pale lavender or violet rays; of rocky desert slopes California to Arizona and Utah
+11174,Mojave_rattlesnake Crotalus_scutulatus,extremely dangerous; most common in areas of scattered scrubby growth; from Mojave Desert to western Texas and into Mexico
+11175,Mokulu,a Chadic language spoken in Chad
+11176,Moldova Republic_of_Moldova Moldavia,a landlocked republic in eastern Europe; formerly a European soviet but achieved independence in 1991
+11177,Moldovan_monetary_unit,monetary unit in Moldova
+11178,Molidae family_Molidae,ocean sunfishes
+11179,Moliere Jean-Baptiste_Poquelin,French author of sophisticated comedies (1622-1673)
+11180,Moline,a town in northwest Illinois on the Mississippi River
+11181,Molise,a region of south central Italy
+11182,Mollienesia genus_Mollienesia,mollies
+11183,Molluga genus_Molluga,carpetweeds
+11184,Mollusca phylum_Mollusca,gastropods; bivalves; cephalopods; chitons
+11185,Molly_Miller Scartella_cristata,inhabits both coasts of tropical Atlantic
+11186,Molnar Ferenc_Molnar,Hungarian playwright (1878-1952)
+11187,Moloch,a tyrannical power to be propitiated by human subservience or sacrifice; "the great Moloch of war"; "duty has become the Moloch of modern life"- Norman Douglas
+11188,Moloch Molech,god of the Canaanites and Phoenicians to whom parents sacrificed their children
+11189,Molokai Molokai_Island,an island of central Hawaii (between Maui and Oahu)
+11190,Molossidae family_Molossidae,mastiff bats; freetail bats
+11191,Molothrus genus_Molothrus,cowbirds
+11192,Molotov Vyacheslav_Mikhailovich_Molotov,Soviet statesman (1890-1986)
+11193,Molotov_cocktail petrol_bomb gasoline_bomb,a crude incendiary bomb made of a bottle filled with flammable liquid and fitted with a rag wick
+11194,Moluccas Spice_Islands,a group of island in eastern Indonesia between Celebes and New Guinea; settled by the Portuguese but taken by the Dutch who made them the center for a spice monopoly, at which time they were known as Spice Islands
+11195,Molucella genus_Molucella,small genus of aromatic herbs of Mediterranean regions; widely cultivated
+11196,Molva genus_Molva,ling
+11197,Mombasa,a port city in southern Kenya on a coral island in a bay of the Indian Ocean
+11198,Mommsen Theodor_Mommsen,German historian noted for his history of Rome (1817-1903)
+11199,Momordica genus_Momordica,Old World tropical vine
+11200,Momotidae family_Momotidae,a family of birds of the order Coraciiformes
+11201,Momotus genus_Momotus,type genus of the Momotidae
+11202,Momus Momos,god of blame and mockery
+11203,Mon,a member of a Buddhist people living in Myanmar and adjacent parts of Thailand
+11204,Mon,the Mon-Khmer language spoken by the Mon
+11205,Mon-Khmer,a branch of the Austro-Asiatic languages
+11206,Monaco Principality_of_Monaco,a constitutional monarchy in a tiny enclave on the French Riviera
+11207,Monaco-Ville,the capital of Monaco
+11208,Monardella genus_Monardella,a genus of fragrant herbs of the family Labiatae in the western United States
+11209,Monario,an artificial language
+11210,Monday Mon,the second day of the week; the first working day
+11211,Mondrian Piet_Mondrian,Dutch painter whose work (intersecting lines at right angles and planes in primary colors) influenced the development of abstract art (1872-1944)
+11212,Monegasque Monacan,a native or inhabitant of Monaco
+11213,Monel_metal Monell_metal,an alloy of nickel and copper and other metals (such as iron and/or manganese and/or aluminum)
+11214,Monera kingdom_Monera Prokayotae kingdom_Prokaryotae,prokaryotic bacteria and blue-green algae and various primitive pathogens; because of lack of consensus on how to divide the organisms into phyla informal names are used for the major divisions
+11215,Moneses genus_Moneses,one species: one-flowered wintergreen; sometimes included in genus Pyrola
+11216,Monet Claude_Monet,French impressionist painter (1840-1926)
+11217,Mongol Mongolian,a member of the nomadic peoples of Mongolia
+11218,Mongolia,a vast region in Asia including the Mongolian People's Republic and China's Inner Mongolia
+11219,Mongolia Mongolian_People's_Republic Outer_Mongolia,a landlocked socialist republic in central Asia
+11220,Mongolian Mongolic Mongolic_language,a family of Altaic language spoken in Mongolia
+11221,Mongolian_monetary_unit,monetary unit in Mongolia
+11222,Mongoloid,a member of the Mongoloid family
+11223,Moniliaceae family_Moniliaceae,family of imperfect fungi having white or brightly colored hyphae and spores that are produced directly on the mycelium and not aggregated in fruiting bodies
+11224,Moniliales order_Moniliales,order of imperfect fungi lacking conidiophores of having conidiophores that are superficial and not enclosed in a pycnidium
+11225,Monitor,an ironclad vessel built by Federal forces to do battle with the Merrimac
+11226,Monk Thelonious_Monk Thelonious_Sphere_Monk,United States jazz pianist who was one of the founders of the bebop style (1917-1982)
+11227,Monmouth_Court_House Battle_of_Monmouth_Court_House Battle_of_Monmouth,a pitched battle in New Jersey during the American Revolution (1778) that ended with the withdrawal of British forces
+11228,Monnet Jean_Monnet,French economist who advocated a Common Market in Europe (1888-1979)
+11229,Monocanthidae family_Monocanthidae,filefishes
+11230,Monocanthus genus_Monocanthus,type genus of the Monocanthidae
+11231,Monochamus genus_Monochamus,sawyer beetles
+11232,Monocotyledones class_Monocotyledones Monocotyledonae class_Monocotyledonae Liliopsida class_Liliopsida,comprising seed plants that produce an embryo with a single cotyledon and parallel-veined leaves: includes grasses and lilies and palms and orchids; divided into four subclasses or superorders: Alismatidae; Arecidae; Commelinidae; and Liliidae
+11233,Monod Jacques_Monod Jacques_Lucien_Monod,French biochemist who (with Francois Jacob) explained how genes are activated and suggested the existence of messenger RNA (1910-1976)
+11234,Monodon genus_Monodon,type genus of the Monodontidae
+11235,Monodontidae family_Monodontidae,narwhals
+11236,Monomorium genus_Monomorium,a genus of Formicidae
+11237,Monongahela Monongahela_River,a river that rises in northern West Virginia and flows north into Pennsylvania where it joins the Allegheny River at Pittsburgh to form the Ohio River
+11238,Mononychus_olecranus,a turkey-sized long-legged fossil 75 million years old found in the Gobi Desert having bird-like fused wrist bones and keeled breastbone and a long tail resembling a dinosaur's; short forelimbs end in a single claw instead of wings; classification as bird or dinosaur is in dispute
+11239,Monophysite,an adherent of Monophysitism
+11240,Monophysitism,a Christian heresy of the 5th and 6th centuries that challenged the orthodox definition of the two natures (human and divine) in Jesus and instead believed there was a single divine nature
+11241,Monopoly,a board game in which players try to gain a monopoly on real estate as pieces advance around the board according to the throw of a die
+11242,Monothelitism,the theological doctrine that Christ had only one will even though he had two natures (human and divine); condemned as heretical in the Third Council of Constantinople
+11243,Monotremata order_Monotremata,coextensive with the subclass Prototheria
+11244,Monotropa genus_Monotropa,leafless fleshy saprophytic plants; in some classifications placed in the family Pyrolaceae
+11245,Monotropaceae family_Monotropaceae,used in some classification for saprophytic herbs sometimes included in the family Pyrolaceae: genera Monotropa and Sarcodes
+11246,Monroe,a town of southeast Michigan on Lake Erie
+11247,Monroe,a town in north central Louisiana
+11248,Monroe James_Monroe President_Monroe,5th President of the United States; author of the Monroe Doctrine (1758-1831)
+11249,Monroe Marilyn_Monroe Norma_Jean_Baker,United States film actress noted for sex appeal (1926-1962)
+11250,Monroe_Doctrine,an American foreign policy opposing interference in the western hemisphere from outside powers
+11251,Monrovia Liberian_capital capital_of_Liberia,the capital and chief port and largest city of Liberia
+11252,Monsieur,used as a French courtesy title; equivalent to English `Mr'
+11253,Monsignor,(Roman Catholic Church) an ecclesiastical title of honor bestowed on some priests
+11254,Mont_Blanc Monte_Bianco,the highest mountain peak in the Alps; on the border between France and Italy to the south of Geneva (15,781 feet high)
+11255,Montagu Ashley_Montagu,United States anthropologist (born in England) who popularized anthropology (1905-)
+11256,Montagu's_harrier Circus_pygargus,brownish European harrier
+11257,Montaigne Michel_Montaigne Michel_Eyquem_Montaigne,French writer regarded as the originator of the modern essay (1533-1592)
+11258,Montana Treasure_State MT Mont.,a state in northwestern United States on the Canadian border
+11259,Montanan,a native or resident of Montana
+11260,Monte_Carlo,a town and popular resort in the principality of Monaco; famous for its gambling casino
+11261,Montego_Bay,port and resort city in northwestern Jamaica
+11262,Montenegro Crna_Gora,a former country bordering on the Adriatic Sea; now part of the Union of Serbia and Montenegro
+11263,Monterey,a town in western California to the south of San Francisco on a peninsula at the southern end of Monterey Bay
+11264,Monterey_Bay,an inlet of the Pacific Ocean in western California
+11265,Monterey_cypress Cupressus_macrocarpa,tall California cypress endemic on Monterey Bay; widely used for ornament as well as reforestation and shelterbelt planting
+11266,Monterey_pine Pinus_radiata,tall California pine with long needles in bunches of 3, a dense crown, and dark brown deeply fissured bark
+11267,Monterrey,an industrial city in northeastern Mexico
+11268,Montespan Marquise_de_Montespan Francoise-Athenais_de_Rochechouart,French noblewoman who was mistress to Louis XIV until he became attracted to Madame de Maintenon (1641-1707)
+11269,Montesquieu Baron_de_la_Brede_et_de_Montesquieu Charles_Louis_de_Secondat,French political philosopher who advocated the separation of executive and legislative and judicial powers (1689-1755)
+11270,Montessori Maria_Montesorri,Italian educator who developed a method of teaching mentally handicapped children and advocated a child-centered approach (1870-1952)
+11271,Monteverdi Claudio_Monteverdi,Italian composer (1567-1643)
+11272,Montevideo capital_of_Uruguay,the capital and largest city of Uruguay; a cosmopolitan city and one of the busiest ports in South America
+11273,Montez Lola_Montez Marie_Dolores_Eliza_Rosanna_Gilbert,Irish dancer (1818-1861)
+11274,Montezuma,evergreen tree with large leathery leaves and large pink to orange flowers; considered a link plant between families Bombacaceae and Sterculiaceae
+11275,Montezuma's_revenge,diarrhea contracted in Mexico or Central America
+11276,Montezuma_II,the last Aztec emperor in Mexico who was overthrown and killed by Hernando Cortes (1466-1520)
+11277,Montezuma_cypress Mexican_swamp_cypress Taxodium_mucronatum,cypress of river valleys of Mexican highlands
+11278,Montfort Simon_de_Montfort Earl_of_Leicester,an English nobleman who led the baronial rebellion against Henry III (1208-1265)
+11279,Montgolfier Jacques_Etienne_Montgolfier,French inventor who (with his brother Josef Michel Montgolfier) pioneered hot-air ballooning (1745-1799)
+11280,Montgolfier Josef_Michel_Montgolfier,French inventor who (with his brother Jacques Etienne Montgolfier) pioneered hot-air ballooning (1740-1810)
+11281,Montgomery Bernard_Law_Montgomery Sir_Bernard_Law_Montgomery 1st_Viscount_Montgomery_of_Alamein,English general during World War II; won victories over Rommel in North Africa and led British ground forces in the invasion of Normandy (1887-1976)
+11282,Montgomery L._M._Montgomery Lucy_Maud_Montgomery,Canadian novelist (1874-1942)
+11283,Montgomery capital_of_Alabama,the state capital of Alabama on the Mobile River
+11284,Montgomery's_tubercle,one of the sebaceous glands on the areolae of the breast that lubricate the breast during breast-feeding
+11285,Montia genus_Montia,small genus of densely tufted annual herbs; north temperate regions and South America and tropical Africa and Asia
+11286,Montmartre,the highest point in Paris; famous for its associations with many artists
+11287,Montpelier capital_of_Vermont,capital of the state of Vermont; located in north central Vermont
+11288,Montrachet,a white Burgundy wine
+11289,Montreal,a city in southern Quebec province on the Saint Lawrence River; the largest city in Quebec and 2nd largest in Canada; the 2nd largest French-speaking city in the world
+11290,Montserrat,a volcanic island in the Caribbean; in the West Indies
+11291,Montserratian,a native or inhabitant of Montserrat
+11292,Moody Dwight_Lyman_Moody,United States evangelist (1837-1899)
+11293,Moody Helen_Wills_Moody Helen_Wills Helen_Newington_Wills,United States tennis player who dominated women's tennis in the 1920s and 1930s (1905-1998)
+11294,Moon Sun_Myung_Moon,United States religious leader (born in Korea) who founded the Unification Church in 1954; was found guilty of conspiracy to evade taxes (born in 1920)
+11295,Moon moon,the natural satellite of the Earth; "the average distance to the Moon is 384,400 kilometers"; "men first stepped on the moon in 1969"
+11296,Moonie,an often derogatory term for a member of the Unification Church
+11297,Moor,one of the Muslim people of north Africa; of mixed Arab and Berber descent; converted to Islam in the 8th century; conqueror of Spain in the 8th century
+11298,Moore Douglas_Moore,United States composer of works noted for their use of the American vernacular (1893-1969)
+11299,Moore Dudley_Moore Dudley_Stuart_John_Moore,English actor and comedian who appeared on television and in films (born in 1935)
+11300,Moore G._E._Moore George_Edward_Moore,English philosopher (1873-1958)
+11301,Moore Henry_Moore Henry_Spencer_Moore,British sculptor whose works are monumental organic forms (1898-1986)
+11302,Moore Marianne_Moore Marianne_Craig_Moore,United States poet noted for irony and wit (1887-1872)
+11303,Moore Thomas_Moore,Irish poet who wrote nostalgic and patriotic verse (1779-1852)
+11304,Moorish Moorish_architecture,a style of architecture common in Spain from the 13th to 16th centuries; characterized by horseshoe-shaped arches
+11305,Moorish_arch horseshoe_arch,a round arch that widens before rounding off
+11306,Moquelumnan Miwok,a Penutian language spoken by the Miwok
+11307,Moraceae family_Moraceae mulberry_family,trees or shrubs having a milky juice; in some classifications includes genus Cannabis
+11308,Moranzanist_Patriotic_Front,a terrorist group of radical leftists formed in the late 1980s; seeks to prevent the United States from intervening in Honduran economic and political affairs
+11309,Moravia,a region in the central and eastern part of the Czech Republic; it lies to the east of Bohemia and to the west of the Carpathians
+11310,Moray_Firth,an inlet of the North Sea on the northeast coast of Scotland
+11311,Morchella genus_Morchella,genus of edible fungi: morel
+11312,Morchella_crassipes thick-footed_morel,a delicious morel with a conic fertile portion having deep and irregular pits
+11313,Morchella_semilibera half-free_morel cow's_head,a morel with the ridged and pitted fertile portion attached to the stipe for about half its length
+11314,Morchellaceae family_Morchellaceae,a family of edible fungi including the true morels
+11315,Mordva Mordvin Mordvinian,a member of the agricultural people living in the central Volga provinces of European Russia
+11316,Mordva Mordvin Mordvinian,the Finnic language spoken by the Mordvinians
+11317,More Thomas_More Sir_Thomas_More,English statesman who opposed Henry VIII's divorce from Catherine of Aragon and was imprisoned and beheaded; recalled for his concept of Utopia, the ideal state
+11318,Moreau_River,a river that rises in western South Dakota and flows eastward to the Missouri River
+11319,Moreton_Bay,an arm of the Tasman Sea forming a bay to the east of Brisbane
+11320,Moreton_Bay_chestnut Australian_chestnut,Australian tree having pinnate leaves and orange-yellow flowers followed by large woody pods containing 3 or 4 seeds that resemble chestnuts; yields dark strong wood
+11321,Moreton_Bay_tulipwood Harpullia_pendula,Australian tree yielding a variegated tulipwood
+11322,Morgan,an American breed of small compact saddle horses
+11323,Morgan Daniel_Morgan,soldier in the American Revolution who defeated the British in the battle of Cowpens, South Carolina (1736-1802)
+11324,Morgan Henry_Morgan Sir_Henry_Morgan,a Welsh buccaneer who raided Spanish colonies in the West Indies for the English (1635-1688)
+11325,Morgan J._P._Morgan John_Pierpont_Morgan,United States financier and philanthropist (1837-1913)
+11326,Morgan Lewis_Henry_Morgan,United States anthropologist who studied the Seneca (1818-1881)
+11327,Morgan Thomas_Hunt_Morgan,United States biologist who formulated the chromosome theory of heredity (1866-1945)
+11328,Morgan_City,a town in southeast Louisiana to the south of Baton Rouge
+11329,Morgan_le_Fay,(Arthurian legend) a wicked enchantress who was the half sister and enemy of King Arthur
+11330,Morgantown,a city in northern West Virginia on the Monongahela river near the Pennsylvania border; site of the University of West Virginia
+11331,Morlett's_crocodile,a variety of crocodile
+11332,Morley E._W._Morley Edward_Morley Edward_Williams_Morley,United States chemist and physicist who collaborated with Michelson in the Michelson-Morley experiment (1838-1923)
+11333,Mormon,the ancient prophet whose writings were revealed to Joseph Smith who founded the Church of Jesus Christ of Latter-Day Saints
+11334,Mormonism,the doctrines and practices of the Mormon Church based on the Book of Mormon
+11335,Mornay_sauce,onion-flavored creamy cheese sauce with egg yolk and grated cheese
+11336,Moro,a member of the predominantly Muslim people in the southern Philippines
+11337,Moro_Islamic_Liberation_Front,a terrorist group in the southern Philippines formed in 1977 to establish an independent Islamic state for the Moros; have clashed with troops at United States bases
+11338,Moroccan,a native or inhabitant of Morocco
+11339,Moroccan_dirham dirham,the basic unit of money in Morocco; equal to 100 centimes
+11340,Moroccan_monetary_unit,monetary unit in Morocco
+11341,Morocco Kingdom_of_Morocco Maroc Marruecos Al-Magrib,a kingdom (constitutional monarchy) in northwestern Africa with a largely Muslim population; achieved independence from France in 1956
+11342,Moron,a city in Argentina, to the west of Buenos Aires
+11343,Morone genus_Morone,carnivorous fresh and salt water fishes
+11344,Morpheus,the Roman god of sleep and dreams
+11345,Morrigan Morrigu,Celtic war goddess
+11346,Morris Esther_Morris Esther_Hobart_McQuigg_Slack_Morris,United States suffragist in Wyoming (1814-1902)
+11347,Morris Gouverneur_Morris,United States statesman who led the committee that produced the final draft of the United States Constitution (1752-1816)
+11348,Morris Robert_Morris,leader of the American Revolution who signed the Declaration of Independence and raised money for the Continental Army (1734-1806)
+11349,Morris William_Morris,English poet and craftsman (1834-1896)
+11350,Morris_chair,an armchair with an adjustable back
+11351,Morrison Jim_Morrison James_Douglas_Morrison,United States rock singer (1943-1971)
+11352,Morrison Toni_Morrison Chloe_Anthony_Wofford,United States writer whose novels describe the lives of African-Americans (born in 1931)
+11353,Morristown,a town in northern New Jersey where the Continental Army spent two winters
+11354,Morrow's_honeysuckle Lonicera_morrowii,a grey deciduous honeysuckle shrub paired white flowers turning yellow; Japan
+11355,Mors,(Roman mythology) Roman god of death; counterpart of Thanatos
+11356,Morse Morse_code international_Morse_code,a telegraph code in which letters and numbers are represented by strings of dots and dashes (short and long signals)
+11357,Morse Samuel_Morse Samuel_F._B._Morse Samuel_Finley_Breese_Morse,United States portrait painter who patented the telegraph and developed the Morse code (1791-1872)
+11358,Mortimer Roger_de_Mortimer,English nobleman who deposed Edward II and was executed by Edward III (1287-1330)
+11359,Morton Jelly_Roll_Morton Ferdinand_Joseph_La_Menthe_Morton,United States jazz musician who moved from ragtime to New Orleans jazz (1885-1941)
+11360,Morus genus_Morus,type genus of the Moraceae: mulberries
+11361,Mosaic,a freeware browser
+11362,Mosaic_law Law_of_Moses,the laws (beginning with the Ten Commandments) that God gave to the Israelites through Moses; it includes many rules of religious observance given in the first five books of the Old Testament (in Judaism these books are called the Torah)
+11363,Mosan,a family of Amerindian languages spoken in Washington and British Columbia
+11364,Mosander Carl_Gustaf_Mossander,Swedish chemist who discovered rare earth elements (1797-1858)
+11365,Moschus genus_Moschus,musk deer
+11366,Moscow capital_of_the_Russian_Federation Russian_capital,a city of central European Russia; formerly capital of both the Soviet Union and Soviet Russia; since 1991 the capital of the Russian Federation
+11367,Moselle,German white wine from the Moselle valley or a similar wine made elsewhere
+11368,Moses,(Old Testament) the Hebrew prophet who led the Israelites from Egypt across the Red sea on a journey known as the Exodus; Moses received the Ten Commandments from God on Mount Sinai
+11369,Moses Grandma_Moses Anna_Mary_Robertson_Moses,United States painter of colorful and primitive rural scenes (1860-1961)
+11370,Mossad,the Israeli foreign intelligence agency; "the primary focus of the Mossad is on Arab nations"
+11371,Mossbauer Rudolf_Ludwig_Mossbauer,German physicist (born in 1929)
+11372,Mosul,a city in northern Iraq on the Tigris across from the ruins of Nineveh
+11373,Motacilla genus_Motacilla,type genus of the Motacillidae: wagtails
+11374,Motacillidae family_Motacillidae,pipits and wagtails
+11375,Mother's_Day,second Sunday in May
+11376,Mother_Carey's_chicken Mother_Carey's_hen Oceanites_oceanicus,medium-sized storm petrel
+11377,Mother_Goose,the imaginary author of a collection of nursery rhymes
+11378,Mother_Hubbard muumuu,a woman's loose unbelted dress
+11379,Motherwell Robert_Motherwell,United States abstract expressionist painter (1915-1991)
+11380,Mott Lucretia_Coffin_Mott,United States feminist and suffragist (1793-1880)
+11381,Moulmein Mawlamyine,a port city of southern Myanmar on the Gulf of Martaban
+11382,Mound_Builder,prehistoric Amerindians who built altar mounds
+11383,Mount_Bartle_Frere,the highest mountain peak in Queensland, Australia
+11384,Mount_Carmel,a mountain range in northwestern Israel near the Mediterranean coast; "according to the Old Testament, Elijah defeated the priests of Baal at Mount Carmel"
+11385,Mount_Elbert,the highest peak in the Rocky Mountains in central Colorado (14,431 feet high)
+11386,Mount_Rainier_National_Park,a national park in Washington having mountain terrain featuring glaciers and alpine lakes and streams and swamps
+11387,Mount_Saint_Helens Mount_St._Helens Mt._St._Helens,an active volcano in the Cascade Range in southwestern Washington; erupted violently in 1980 after 123 years of inactivity
+11388,Mount_Vernon,the former residence of George Washington in northeastern Virginia overlooking the Potomac river
+11389,Mountain_Time Mountain_Standard_Time MST,standard time in the 7th time zone west of Greenwich, reckoned at the 105th meridian west; used in the mountain states of the United States
+11390,Mountie,colloquial term for a member of the Royal Canadian Mounted Police
+11391,Moynihan Daniel_Patrick_Moynihan,United States politician and educator (1927-2003)
+11392,Mozambican,a native or inhabitant of Mozambique
+11393,Mozambique Republic_of_Mozambique Mocambique,a republic on the southeastern coast of Africa on the Mozambique Channel; became independent from Portugal in 1975
+11394,Mozambique_Channel,an arm of the Indian Ocean between Madagascar and southeastern Africa
+11395,Mozambique_monetary_unit,monetary unit in Mozambique
+11396,Mozart,the music of Mozart; "the concert was mostly Mozart"
+11397,Mozart Wolfgang_Amadeus_Mozart,prolific Austrian composer and child prodigy; master of the classical style in all its forms of his time (1756-1791)
+11398,Mr._Moto,Japanese sleuth created by John Marquand
+11399,Mrs Mrs.,a form of address for a married woman
+11400,Ms Ms.,a form of address for a woman
+11401,Mubarak Hosni_Mubarak,Egyptian statesman who became president in 1981 after Sadat was assassinated (born in 1929)
+11402,Mucoraceae family_Mucoraceae,large family of chiefly saprophytic fungi that includes many common molds destructive to food products
+11403,Mucorales order_Mucorales,an order of mostly saprophytic fungi
+11404,Muenster,semisoft pale-yellow cheese
+11405,Mugil genus_Mugil,type genus of the Mugilidae: mullets
+11406,Mugilidae family_Mugilidae,grey mullets
+11407,Mugiloidea suborder_Mugiloidea,fishes distinguished by abdominal pelvic fins: families Mugilidae; Atherinidae; Sphyraenidae
+11408,Mugwump,someone who bolted from the Republican Party during the U.S. presidential election of 1884
+11409,Muhammad Elijah_Muhammad,leader of Black Muslims who campaigned for independence for Black Americans (1897-1975)
+11410,Muharram Moharram Muharrum,the first month of the Islamic calendar
+11411,Muhlenbergia genus_Muhlenbergia,a genus of grasses of the family Gramineae grown in America and Asia
+11412,Muir John_Muir,United States naturalist (born in England) who advocated the creation of national parks (1838-1914)
+11413,Mujahedeen_Khalq,Iranian guerillas based in Iraq
+11414,Mujahedeen_Kompak,a militant Islamic militia that was formed in 2005 by hardliners who split from Jemaah Islamiyah
+11415,Mujahidin-e_Khalq_Organization MKO MEK People's_Mujahidin_of_Iran,a terrorist organization formed in the 1960s by children of Iranian merchants; sought to counter the Shah of Iran's pro-western policies of modernization and opposition to communism; following a philosophy that mixes Marxism and Islam it now attacks the Islamic fundamentalists who deposed the Shah
+11416,Mukalla Al-Mukalla,a port in southern Yemen on the Gulf of Aden to the east of Aden
+11417,Mull,an island in western Scotland in the Inner Hebrides
+11418,Mullah Mollah Mulla,a Muslim trained in the doctrine and law of Islam; the head of a mosque
+11419,Mullah_Omar Mullah_Mohammed_Omar,reclusive Afghanistani politician and leader of the Taliban who imposed a strict interpretation of shariah law on Afghanistan (born in 1960)
+11420,Muller Hermann_Joseph_Muller,United States geneticist who studied the effects of X-rays on genes (1890-1967)
+11421,Muller Johann_Muller Regiomontanus,German mathematician and astronomer (1436-1476)
+11422,Muller Johannes_Peter_Muller,German physiologist and anatomist (1801-1858)
+11423,Muller Karl_Alex_Muller,Swiss physicist who studied superconductivity (born in 1927)
+11424,Muller Max_Muller Friedrich_Max_Muller,British philologist (born in Germany) who specialized in Sanskrit (1823-1900)
+11425,Muller Paul_Hermann_Muller,Swiss chemist who synthesized DDT and discovered its use as an insecticide (1899-1965)
+11426,Mullidae family_Mullidae,goatfishes or red mullets
+11427,Mulloidichthys genus_Mulloidichthys,a genus of Mullidae
+11428,Mullus genus_Mullus,type genus of the Mullidae: goatfishes
+11429,Mumbai Bombay,a city in western India just off the coast of the Arabian Sea; India's 2nd largest city (after Calcutta); has the only natural deep-water harbor in western India
+11430,Munch Edvard_Munch,Norwegian painter (1863-1944)
+11431,Munchausen's_syndrome Munchausen_syndrome,syndrome consisting of feigning acute and dramatic illness for which no clinical evidence is ever found
+11432,Munchhausen Karl_Friedrich_Hieronymus_von_Munchhausen Munchausen Baron_Munchausen,German raconteur who told preposterous stories about his adventures as a soldier and hunter; his name is now associated with any telling of exaggerated stories or winning lies (1720-1797)
+11433,Muncie,a town in east central Indiana
+11434,Munda,a family of languages spoken by people scattered throughout central India
+11435,Munich Muenchen,the capital and largest city of Bavaria in southwestern Germany
+11436,Munich_beer Munchener,a dark lager produced in Munich since the 10th century; has a distinctive taste of malt
+11437,Munro H._H._Munro Hector_Hugh_Munro Saki,British writer of short stories (1870-1916)
+11438,Muntiacus genus_Muntiacus,muntjacs
+11439,Muntingia genus_Muntingia,one species: Jamaican cherry; sometimes placed in family Flacourtiaceae
+11440,Muraenidae family_Muraenidae,marine eels
+11441,Murdoch Iris_Murdoch Dame_Jean_Iris_Murdoch,British writer (born in Ireland) known primarily for her novels (1919-1999)
+11442,Murdoch Rupert_Murdoch Keith_Rupert_Murdoch,United States publisher (born in Australia in 1931)
+11443,Muridae family_Muridae,originally Old World rats now distributed worldwide; distinguished from the Cricetidae by typically lacking cheek pouches
+11444,Murillo Bartolome_Esteban_Murillo,Spanish painter (1617-1682)
+11445,Murmansk,a port city in northwestern Russia on the Kola Peninsula; the largest city to the north of the Arctic Circle; an important supply line to Russia in World War I and World War II
+11446,Muroidea superfamily_Muroidea,a superfamily of rodents essentially equal to the suborder Myomorpha but with the Dipodidae excluded
+11447,Murphy's_Law Sod's_Law,humorous axiom stating that anything that can go wrong will go wrong
+11448,Murphy_bed,a bed that can be folded or swung into a cabinet when not being used
+11449,Murray Gilbert_Murray George_Gilbert_Aime_Murphy,British classical scholar (born in Australia) who advocated the League of Nations and the United Nations (1866-1957)
+11450,Murray James_Murray James_Augustus_Murray James_Augustus_Henry_Murray Sir_James_Murray Sir_James_Augustus_Murray Sir_James_Augustus_Henry_Murray,Scottish philologist and the lexicographer who shaped the Oxford English Dictionary (1837-1915)
+11451,Murray Murray_River,a southeast Australian river; flows westward and then south into the Indian Ocean at Adelaide
+11452,Murrow Edward_R._Murrow Edward_Roscoe_Murrow,United States broadcast journalist remembered for his reports from London during World War II (1908-1965)
+11453,Murrumbidgee Murrumbidgee_River,a river of southeastern Australia; flows westward into the Murray River
+11454,Mus genus_Mus,type genus of the Muridae: common house mice; the tips of the upper incisors have a square notch
+11455,Musa genus_Musa,type genus of the Musaceae: bananas
+11456,Musaceae family_Musaceae banana_family,treelike tropical Asian herbs
+11457,Musales order_Musales,tropical plants
+11458,Musca,a small constellation in the polar region of the southern hemisphere near the Southern Cross and Chamaeleon
+11459,Musca genus_Musca,type genus of the Muscidae: houseflies
+11460,Muscadet,white grape grown especially in the valley the Loire in France
+11461,Muscadet,dry white wine from the Loire valley in France
+11462,Muscardinus genus_Muscardinus,a genus of Gliridae
+11463,Muscari genus_Muscari,sometimes placed in family Hyacinthaceae
+11464,Muscat Masqat capital_of_Oman,a port on the Gulf of Oman and capital of the sultanate of Oman
+11465,Muscicapa genus_Muscicapa,type genus of the Muscicapidae
+11466,Muscicapidae family_Muscicapidae,Old World (true) flycatchers
+11467,Muscidae family_Muscidae,two-winged flies especially the housefly
+11468,Muscivora genus_Muscivora,a genus of Tyrannidae
+11469,Muscoidea superfamily_Muscoidea,two-winged flies especially the families: Muscidae; Gasterophilidae; Calliphoridae; Tachinidae
+11470,Muscovite,a resident of Moscow
+11471,Muscovy,a Russian principality in the 13th to 16th centuries; Moscow was the capital
+11472,Muse,in ancient Greek mythology any of 9 daughters of Zeus and Mnemosyne; protector of an art or science
+11473,Musgu Munjuk Mulwi,a Chadic language spoken south of Lake Chad
+11474,Musial Stan_Musial Stanley_Frank_Musial Stan_the_Man,United States baseball player (born in 1920)
+11475,Muskhogean Muskhogean_language Muskogean Muskogean_language,a family of North American Indian languages spoken in the southeastern United States
+11476,Muskhogean Muskogean,a member of any of the peoples formerly living in southeastern United States and speaking Muskhogean languages
+11477,Muskogee,a member of the Muskhogean people formerly living in Georgia and eastern Alabama and constituting the core of the Creek Confederacy
+11478,Muskogee,a town in eastern Oklahoma on the Arkansas River
+11479,Muskogee,the Muskhogean language spoken by the Muskogee
+11480,Muslim Moslem,a believer in or follower of Islam
+11481,Muslimah,a Muslim woman
+11482,Musophaga genus_Musophaga,type genus of the Musophagidae
+11483,Musophagidae family_Musophagidae,touracos
+11484,Musset Alfred_de_Musset Louis_Charles_Alfred_de_Musset,French poet and writer (1810-1857)
+11485,Mussolini Benito_Mussolini Il_Duce,Italian fascist dictator (1883-1945)
+11486,Mussorgsky Moussorgsky Modest_Mussorgsky Modest_Moussorgsky Modest_Petrovich_Mussorgsky Modest_Petrovich_Moussorgsky,Russian composer of operas and orchestral works (1839-1881)
+11487,Mustela genus_Mustela,type genus of the family Mustelidae: minks and weasels
+11488,Mustelidae family_Mustelidae,weasels; polecats; ferrets; minks; fishers; otters; badgers; skunks; wolverines; martens
+11489,Mustelus genus_Mustelus,smooth dogfishes
+11490,Mutawa'een Mutawa,religious police in Saudi Arabia whose duty is to ensure strict adherence to established codes of conduct; offenders may be detained indefinitely; foreigners are not excluded
+11491,Mutillidae family_Mutillidae,a family of wasps
+11492,Mutinus genus_Mutinus,a genus of fungi belonging to the family Phallaceae
+11493,Muybridge Eadweard_Muybridge Edward_James_Muggeridge,United States motion-picture pioneer remembered for his pictures of running horses taken with a series of still cameras (born in England) (1830-1904)
+11494,Muztag Muztagh,a highest mountain peak in the Kunlun Shan in China; near the Indian border (23,891 feet high)
+11495,Mwanza,a city in northern Tanzania on Lake Victoria
+11496,Mwera,a Bantu language spoken in southern coastal Tanzania
+11497,Mya genus_Mya,type genus of the family Myacidae
+11498,Myaceae order_Myaceae,clams
+11499,Myacidae family_Myacidae,soft-shell clams
+11500,Myadestes genus_Myadestes,solitaires
+11501,Myanmar Union_of_Burma Burma,a mountainous republic in southeastern Asia on the Bay of Bengal; "much opium is grown in Myanmar"
+11502,Myanmar_monetary_unit,monetary unit in the Union of Burma
+11503,Mycelia_Sterilia order_Mycelia_Sterilia,order of imperfect fungi having no known spore stage
+11504,Mycenae,an ancient city is southern Greece; center of the Mycenaean civilization during the late Bronze Age
+11505,Mycenaean_civilization Mycenaean_civilisation Mycenaean_culture,the late bronze-age culture of Mycenae that flourished 1400-1100 BC
+11506,Mycenaen,a native or inhabitant of ancient Mycenae
+11507,Mycetophilidae family_Mycetophylidae,fungus gnats
+11508,Mycobacteriaceae family_Mycobacteriaceae,a family of bacteria
+11509,Mycoplasmataceae family_Mycoplasmataceae,pleomorphic Gram-negative nonmotile microorganism similar to both viruses and bacteria; parasitic in mammals
+11510,Mycoplasmatales order_Mycoplasmatales,coextensive with the family Mycoplasmataceae
+11511,Mycrosporidia order_Mycrosporidia,an order in the subclass Cnidosporidia
+11512,Mycteria genus_Mycteria,a genus of storks of the family Ciconiidae now including only the American wood ibis
+11513,Mycteroperca genus_Mycteroperca,groupers
+11514,Myctophidae family_Myctophidae,deep-sea fishes comprising the lantern fishes
+11515,Mylanta,an antacid
+11516,Mylar,a thin polyester film
+11517,Myliobatidae family_Myliobatidae,eagle rays
+11518,Mylodontidae family_Mylodontidae,extinct South American edentates
+11519,Myocastor genus_Myocastor,a genus of Capromyidae
+11520,Myomorpha suborder_Myomorpha,true rats and mice and related rodents
+11521,Myopus genus_Myopus,a genus of Cricetidae
+11522,Myosotis genus_Myosotis,forget-me-nots; scorpion grass
+11523,Myotis genus_Myotis,largest and most widely distributed genus of bats
+11524,Myrciaria genus_Myrciaria Myrcia,a genus of tropical American trees and shrubs of the myrtle family
+11525,Myrdal Gunnar_Myrdal Karl_Gunnar_Myrdal,Swedish economist (1898-1987)
+11526,Myrica genus_Myrica,deciduous aromatic shrubs or small trees
+11527,Myricaceae family_Myricaceae wax-myrtle_family,constituting the order Myricales
+11528,Myricales order_Myricales,coextensive with the family Myricaceae
+11529,Myricaria genus_Myricaria,small genus of deciduous shrubs or subshrubs of southern Europe to Siberia and China; tolerant of chalky soil
+11530,Myriophyllum genus_Myriophyllum,chiefly monoecious and usually aquatic herbs (as the milfoils)
+11531,Myristica genus_Myristica,type genus of Myristicaceae; tropical Asian evergreen trees with small white or yellow flowers followed by fleshy fruits
+11532,Myristicaceae family_Myristicaceae nutmeg_family,family of aromatic tropical trees with arillate seeds
+11533,Myrmecia genus_Myrmecia,bulldog ants
+11534,Myrmecobius genus_Myrmecobius,banded anteater
+11535,Myrmecophaga genus_Myrmecophaga,type genus of the Myrmecophagidae; South American ant bear
+11536,Myrmecophagidae family_Myrmecophagidae,New World anteaters
+11537,Myrmeleon genus_Myrmeleon,type genus of the Myrmeleontidae: antlions
+11538,Myrmeleontidae family_Myrmeleontidae,antlions
+11539,Myrmidon,(Greek mythology) a member of the warriors who followed Achilles on the expedition against Troy
+11540,Myroxylon genus_Myroxylon,a genus of tropical American trees having pinnate leaves and white flowers
+11541,Myrrhis genus_Myrrhis,European perennial herbs having pinnate leaves and umbels of white flowers
+11542,Myrsinaceae family_Myrsinaceae myrsine_family,family of Old World tropical trees and shrubs; some in Florida
+11543,Myrsine genus_Myrsine,evergreen trees and shrubs having aromatic foliage; Africa; Asia (New Zealand)
+11544,Myrtaceae family_Myrtaceae myrtle_family,trees and shrubs yielding a fragrant oil
+11545,Myrtales order_Myrtales Thymelaeales order_Thymelaeales,Myrtaceae; Combretaceae; Elaeagnaceae; Haloragidaceae; Melastomaceae; Lecythidaceae; Lythraceae; Rhizophoraceae; Onagraceae; Lecythidaceae; Punicaceae
+11546,Myrtillocactus genus_Myrtillocactus,small genus of arborescent cacti of Mexico and Central America
+11547,Myrtus genus_Myrtus,type genus of the Myrtaceae
+11548,Mysidacea order_Mysidacea,opossum shrimp
+11549,Mysidae family_Mysidae,small shrimp-like crustaceans
+11550,Mysis genus_Mysis,type genus of the family Mysidae
+11551,Mysore,a city in southern India to the southwest of Bangalore
+11552,Mysore_thorn Caesalpinia_decapetala Caesalpinia_sepiaria,spreading thorny shrub of tropical Asia bearing large erect racemes of red-marked yellow flowers
+11553,Mysticeti suborder_Mysticeti,baleen whales: right whales; rorquals; blue whales; humpbacks
+11554,Mytilidae family_Mytilidae,marine mussels
+11555,Mytilus genus_Mytilus,type genus of the family Mytilidae: smooth-shelled marine mussels
+11556,Myxine genus_Myxine,type genus of the Myxinidae (typical hagfishes)
+11557,Myxine_glutinosa,typical hagfish
+11558,Myxinidae family_Myxinidae,slime-producing marine animals: hagfishes
+11559,Myxiniformes suborder_Myxiniformes Hyperotreta suborder_Hyperotreta Myxinoidei Myxinoidea suborder_Myxinoidei,hagfishes as distinguished from lampreys
+11560,Myxinikela genus_Myxinikela,fossil hagfishes
+11561,Myxinikela_siroka,fossil hagfish of the Pennsylvanian period (c. 300 million years ago) that resembled modern hagfishes
+11562,Myxocephalus genus_Myxocephalus,grubby
+11563,Myxomycetes class_Myxomycetes,the class of true slime molds; essentially equivalent to the division Myxomycota
+11564,Myxomycota division_Myxomycota Gymnomycota division_Gymnomycota,slime molds; organisms having a noncellular and multinucleate creeping vegetative phase and a propagative spore-producing stage: comprises Myxomycetes and Acrasiomycetes; in some classifications placed in the kingdom Protoctista
+11565,Myxophyceae family_Myxophyceae Schizophyceae family_Schizophyceae,former terms for Cyanophyceae
+11566,Myxosporidia order_Myxosporidia,an order in the subclass Cnidosporidia
+11567,N n,the 14th letter of the Roman alphabet
+11568,N'Djamena Ndjamena Fort-Lamy capital_of_Chad,the capital and largest city of Chad; located in the southwestern on the Shari river
+11569,NADA_daiquiri,a daiquiri made without alcohol
+11570,NAND_circuit NAND_gate,a logic gate that produces an output that is the inverse of the output of an AND gate
+11571,NIMBY,someone who objects to siting something in their own neighborhood but does not object to it being sited elsewhere; an acronym for not in my backyard
+11572,NOC,an undercover agent who is given no official cover
+11573,Na-Dene,a family of North American Indian languages
+11574,Nabalus genus_Nabalus,genus of North American and east Asian perennial herbs; sometimes included in genus Prenanthes
+11575,Nablus,an ancient city in the West Bank to the north of Jerusalem; the home of Jacob in biblical times
+11576,Nabokov Vladimir_Nabokov Vladimir_vladimirovich_Nabokov,United States writer (born in Russia) (1899-1977)
+11577,Nabu Nebo,Babylonian god of wisdom and agriculture and patron of scribes and schools
+11578,Nacimiento,a mountain peak in the Andes in Argentina (21,302 feet high)
+11579,Naegele's_rule,rule for calculating an expected delivery date; subtract three months from the first day of the last menstrual period and add seven days to that date
+11580,Naemorhedus genus_Naemorhedus,gorals
+11581,Nag_Hammadi,a town in Upper Egypt
+11582,Nag_Hammadi Nag_Hammadi_Library,a collection of 13 ancient papyrus codices translated from Greek into Coptic that were discovered by farmers near the town of Nag Hammadi in 1945; the codices contain 45 distinct works including the chief sources of firsthand knowledge of Gnosticism
+11583,Naga,Kamarupan languages spoken in northeastern India and western Burma
+11584,Nagano,a city in central Honshu to the northwest of Tokyo; site of a Buddhist shrine
+11585,Nagasaki,a city in southern Japan on Kyushu; a leading port and shipbuilding center; on August 9, 1945 Nagasaki became the second populated area to receive an atomic bomb
+11586,Nageia genus_Nageia,small genus of Asian evergreen trees having columnar crowns and distinguished by leaves lacking a midrib; eastern Asia including India and Philippines and New Guinea
+11587,Nagoya,an industrial city in southern Honshu
+11588,Naha_City,the chief city in the Ryukyu Islands
+11589,Nahuatl,a member of any of various Indian peoples of central Mexico
+11590,Nahuatl,the Uto-Aztecan language spoken by the Nahuatl
+11591,Nahum,a Hebrew minor prophet of the 7th century BC
+11592,Nahum Book_of_Nahum,an Old Testament book telling Nahum's prophecy of the fall of Nineveh
+11593,Naiadaceae family_Naiadaceae Najadaceae family_Najadaceae naiad_family,monotypic family of aquatic plants having narrow leaves and small flowers
+11594,Naiadales order_Naiadales Alismales order_Alismales,an order of aquatic monocotyledonous herbaceous plants
+11595,Naias genus_Naias Najas genus_Najas,sole genus of the family Naiadaceae
+11596,Naiki,a Dravidian language spoken in south central India
+11597,Nairobi capital_of_Kenya,the capital and largest city of Kenya; a center for tourist safaris
+11598,Naismith James_Naismith,United States educator (born in Canada) who invented the game of basketball (1861-1939)
+11599,Naja genus_Naja,cobras
+11600,Nakuru,a city in western Kenya; commercial center of an agricultural region
+11601,Nalchik,a city in southwestern Russia in a valley of the Caucasus Mountains; an industrial center and health resort
+11602,Namib_Desert,a desert in Namibia extending along the coast between the high plateau and the Atlantic Ocean
+11603,Namibia Republic_of_Namibia South_West_Africa,a republic in southwestern Africa on the south Atlantic coast (formerly called South West Africa); achieved independence from South Africa in 1990; the greater part of Namibia forms part of the high Namibian plateau of South Africa
+11604,Namibian,a native or inhabitant of Namibia
+11605,Nammu,goddess personifying the primeval sea; mother of the gods and of heaven and earth
+11606,Namoi Namoi_River,a river in southeastern Australia that flows generally northwest to join the Darling River
+11607,Nampa,a town in southwestern Idaho
+11608,Namtar Namtaru,a demon personifying death; messenger of the underworld goddess Ereshkigal bringing death to mankind
+11609,Namur,a city in south central Belgium situated on a promontory between the Meuse River and the Sambre River; the site of intense fighting in World War I and World War II
+11610,Nan Nan_River,a river of western Thailand flowing southward to join the Ping River to form the Chao Phraya
+11611,Nan_Ling,a mountain range in southeastern China running generally east to west
+11612,Nanaimo,a town in southwestern British Columbia on Vancouver Island to the west of Vancouver
+11613,Nanak Guru_Nanak,Indian religious leader who founded Sikhism in dissent from the caste system of Hinduism; he taught that all men had a right to search for knowledge of God and that spiritual liberation could be attained by meditating on the name of God (1469-1538)
+11614,Nancere,a Chadic language spoken in Chad
+11615,Nanchang Nan-chang,a walled city in southeastern China on the Gan Jiang
+11616,Nancy,a city in northeastern France in Lorraine
+11617,Nanda_Devi,a mountain in the Himalayas in northern India (25,660 feet high)
+11618,Nanga_Parbat,a mountain in the Himalayas in Kashmir (26,660 feet high)
+11619,Nanjing Nanking,a city in eastern China on the Yangtze River; a former capital of China; the scene of a Japanese massacre in the 1930s
+11620,Nanna,(Norse mythology) wife of Balder
+11621,Nanna,god of the Moon; counterpart of the Akkadian Sin
+11622,Nanning Nan-ning,an industrial city in southern China
+11623,Nansen Fridtjof_Nansen,Norwegian explorer of the Arctic and director of the League of Nations relief program for refugees of World War I (1861-1930)
+11624,Nantes,a port city in western France on the Loire estuary
+11625,Nanticoke,a member of the Algonquian people formerly of Maryland and eastern Delaware
+11626,Nanticoke,the Algonquian language spoken by the Nanticoke and Conoy
+11627,Nantua shrimp_sauce,white sauce with whipping cream and shrimp butter
+11628,Nantucket,an island resort off Cape Cod; formerly a center of the whaling industry
+11629,Naomi Noemi,the mother-in-law of Ruth whose story is told in the Book of Ruth in the Old Testament
+11630,Napaea genus_Napaea,one species: glade mallow
+11631,Napier John_Napier,Scottish mathematician who invented logarithms; introduced the use of the decimal point in writing numbers (1550-1617)
+11632,Napier's_bones Napier's_rods,a set of graduated rods formerly used to do multiplication and division by a method invented by John Napier
+11633,Naples Napoli,a port and tourist center in southwestern Italy; capital of the Campania region
+11634,Napoleon Napoleon_I Napoleon_Bonaparte Bonaparte Little_Corporal,French general who became emperor of the French (1769-1821)
+11635,Napoleon nap,a card game similar to whist; usually played for stakes
+11636,Napoleon_III Emperor_Napoleon_III Charles_Louis_Napoleon_Bonaparte,nephew of Napoleon I and emperor of the French from 1852 to 1871 (1808-1873)
+11637,Napoleonic_Wars,a series of wars fought between France (led by Napoleon Bonaparte) and alliances involving England and Prussia and Russia and Austria at different times; 1799-1815
+11638,Narcissus,(Greek mythology) a beautiful young man who fell in love with his own reflection
+11639,Nares_Deep,a depression in the floor of the Atlantic Ocean to the north of Haiti and Puerto Rico
+11640,Narragansett_Bay,a deep inlet of the Atlantic Ocean in Rhode Island
+11641,Narthecium genus_Narthecium,bog asphodels; sometimes placed in family Melanthiaceae
+11642,Nasalis genus_Nasalis,proboscis monkeys
+11643,Naseby,a village in western Northamptonshire
+11644,Naseby Battle_of_Naseby,a battle in 1645 that settled the outcome of the first English Civil War as the Parliamentarians won a major victory over the Royalists
+11645,Nash Ogden_Nash,United States writer noted for his droll epigrams (1902-1971)
+11646,Nash_equilibrium,(game theory) a stable state of a system that involves several interacting participants in which no participant can gain by a change of strategy as long as all the other participants remain unchanged
+11647,Nashville capital_of_Tennessee,capital of the state of Tennessee; located in the north central part of the state on the Cumberland River; known for country music
+11648,Nassau capital_of_the_Bahamas,the capital of the Bahamas
+11649,Nasser Gamal_Abdel_Nasser,Egyptian statesman who nationalized the Suez Canal (1918-1970)
+11650,Nast Thomas_Nast,United States political cartoonist (1840-1902)
+11651,Nasturtium genus_Nasturtium,aquatic herbs
+11652,Nasua genus_Nasua,coatis
+11653,Natal,a port city in northeastern Brazil
+11654,Natal KwaZulu-Natal,a region of eastern South Africa on the Indian Ocean; "Natal was renamed KwaZulu-Natal in 1994"
+11655,Natantia suborder_Natantia,shrimp; prawns; etc.
+11656,Natchez,a town in southwest Mississippi on the Mississippi River
+11657,Naticidae family_Naticidae,moonshells
+11658,Nation Carry_Nation Carry_Amelia_Moore_Nation,United States prohibitionist who raided saloons and destroyed bottles of liquor with a hatchet (1846-1911)
+11659,Nation_of_Islam,a group of militant Black Americans who profess Islamic religious beliefs and advocate independence for Black Americans
+11660,National_Academy_of_Sciences,an honorary American society of scientists created by President Lincoln during the American Civil War
+11661,National_Aeronautics_and_Space_Administration NASA,an independent agency of the United States government responsible for aviation and spaceflight
+11662,National_Archives_and_Records_Administration NARA,the independent agency that oversees management of federal government records including presidential libraries and historic collections
+11663,National_Association_of_Realtors,a United States association of real estate agents which follows a strict code of ethics
+11664,National_Association_of_Securities_Dealers_Automated_Quotations NASDAQ,a computerized data system to provide brokers with price quotations for securities traded over the counter
+11665,National_Baseball_Hall_of_Fame,a Hall of Fame and museum in Cooperstown, New York, honoring great baseball players
+11666,National_Climatic_Data_Center NCDC,the part of NOAA that maintains the world's largest active archive of weather data
+11667,National_Geospatial-Intelligence_Agency NGA,a combat support agency that provides geographic intelligence in support of national security
+11668,National_Guard home_reserve,United States military reserves recruited by the states and equipped by the federal government; subject to call by either
+11669,National_Guard_Bureau NGB,the agency that administers the Army National Guard and the Air National Guard; provides liaison between the Army and the Air Force and various National Guard units
+11670,National_Institute_of_Justice NIJ,the law enforcement agency that is the research and development branch of the Department of Justice
+11671,National_Institute_of_Standards_and_Technology NIST,an agency in the Technology Administration that makes measurements and sets standards as needed by industry or government programs
+11672,National_Institutes_of_Health NIH,an agency in the Department of Health and Human Services whose mission is to employ science in the pursuit of knowledge to improve human health; is the principal biomedical research agency of the federal government
+11673,National_Labor_Relations_Board NLRB,an independent agency of the United States government charged with mediating disputes between management and labor unions
+11674,National_Liberation_Army ELN,a Marxist terrorist group formed in 1963 by Colombian intellectuals who were inspired by the Cuban Revolution; responsible for a campaign of mass kidnappings and resistance to the government's efforts to stop the drug trade; "ELN kidnappers target foreign employees of large corporations"
+11675,National_Liberation_Army ELN Nestor_Paz_Zamora_Commission CNPZ,a terrorist organization in Bolivia that acts as an umbrella for numerous small indigenous subversive groups; a revival of a group with Marxist-Leninist ideologies originally established by Che Guevara in the 1960s
+11676,National_Liberation_Front_of_Corsica FLNC,a terrorist group formed in 1976 to work for Corsican independence; attacks on Corsica are aimed at sabotaging public infrastructure and symbols of colonialism
+11677,National_Library_of_Medicine United_States_National_Library_of_Medicine U.S._National_Library_of_Medicine,the world's largest medical library
+11678,National_Oceanic_and_Atmospheric_Administration NOAA,an agency in the Department of Commerce that maps the oceans and conserves their living resources; predicts changes to the earth's environment; provides weather reports and forecasts floods and hurricanes and other natural disasters related to weather
+11679,National_Park_Service,an agency of the Interior Department responsible for the national parks
+11680,National_Reconnaissance_Office NRO,an intelligence agency in the United States Department of Defense that designs and builds and operates space reconnaissance systems to detect trouble spots worldwide and to monitor arms control agreements and environmental issues and to help plan military operations
+11681,National_Rifle_Association NRA,a powerful lobby that advocates the right to own and bear arms and rejects any gun regulation by the government
+11682,National_Science_Foundation NSF,an independent agency of the federal government responsible for the promotion of progress in science and engineering by supporting programs in research and education
+11683,National_Security_Agency NSA,the United States cryptologic organization that coordinates and directs highly specialized activities to protect United States information systems and to produce foreign intelligence information
+11684,National_Security_Council NSC,a committee in the executive branch of government that advises the president on foreign and military and national security; supervises the Central Intelligence Agency
+11685,National_Socialist_German_Workers'_Party Nazi_Party,the political party founded in Germany in 1919 and brought to power by Hitler in 1933
+11686,National_Technical_Information_Service NTIS,an agency in the Technology Administration that is a primary resource for government-funded scientific and technical and engineering and business related information
+11687,National_Trust NT,an organization concerned to preserve historic monuments and buildings and places of historical interest or natural beauty; founded in 1895 and supported by endowment and private subscription
+11688,National_Weather_Service,the federal agency in the National Oceanic and Atmospheric Administration that is responsible for weather forecast and preparation of weather maps
+11689,Native_Hawaiian,a member or descendant of the indigenous Polynesian people who lived in the Hawaiian Islands
+11690,Natrix genus_Natrix,water snakes; a cosmopolitan genus
+11691,Natta Giulio_Natta,Italian chemist noted for work on polymers (1903-1979)
+11692,Nauclea genus_Nauclea,small genus of evergreen tropical shrubs or trees with smooth leathery leaves
+11693,Naucrates genus_Naucrates,a genus of Carangidae
+11694,Nauru Nauru_Island Pleasant_Island,a small island in the central Pacific Ocean 2,800 miles to the southwest of Hawaii; in Micronesia to the west of the Gilbert Islands
+11695,Nauru Republic_of_Nauru,an island republic on Nauru Island; phosphate exports support the economy
+11696,Nauruan,a native or inhabitant of Nauru
+11697,Nautilidae family_Nautilidae,spiral-shelled cephalopods
+11698,Navaho Navajo,a member of an Athapaskan people that migrated to Arizona and New Mexico and Utah
+11699,Navaho Navajo,the Athapaskan language spoken by the Navaho
+11700,Naval_Air_Warfare_Center_Weapons_Division NAWCWPNS,the principal agency of the United States Navy for research and development for air warfare and missile weapon systems
+11701,Naval_Research_Laboratory NRL,the United States Navy's defense laboratory that conducts basic and applied research for the Navy in a variety of scientific and technical disciplines
+11702,Naval_Special_Warfare NSW,the agency that provides units to conduct unconventional and counter-guerilla warfare
+11703,Naval_Surface_Warfare_Center NSWC,the agency that provides scientific and engineering and technical support for all aspects of surface warfare
+11704,Naval_Underwater_Warfare_Center NUWC,the agency that provides scientific and engineering and technical support for submarine and undersea warfare systems
+11705,Navarino battle_of_Navarino,a decisive naval battle in the War of Greek Independence (1827); the Turkish and Egyptian fleet was defeated by an allied fleet of British and French and Russian warships
+11706,Navratilova Martina_Navratilova,United States tennis player (born in Czechoslovakia) who won nine Wimbledon women's singles championships (born in 1956)
+11707,Navy_Cross,a United States Navy decoration for extraordinary heroism against an armed enemy
+11708,Navy_Department,a former executive department of the United States government; created in 1798 and combined with the War Department in 1947
+11709,Navy_SEAL SEAL,a member of a Naval Special Warfare unit who is trained for unconventional warfare; "SEAL is an acronym for Sea Air and Land"
+11710,Nazarene,an early name for any Christian
+11711,Nazarene,an inhabitant of Nazareth
+11712,Nazarene Ebionite,a member of a group of Jews who (during the early history of the Christian Church) accepted Jesus as the Messiah; they accepted the Gospel According to Matthew but rejected the Epistles of St. Paul and continued to follow Jewish law and celebrate Jewish holidays; they were later declared heretic by the Church of Rome
+11713,Nazareth,a historic town in northern Israel that is mentioned in the Gospels as the home of Joseph and Mary
+11714,Nazi German_Nazi,a German member of Adolf Hitler's political party
+11715,Nazification,social process of adopting (or being forced to adopt) Nazism; "as the process of Nazification spread they paid less attention to public opinion"
+11716,Nazimova Alla_Nazimova,United States actress (born in Russia) (1879-1945)
+11717,Nazism Naziism national_socialism,a form of socialism featuring racism and expansionism and obedience to a strong leader
+11718,Ndebele Matabele,a Bantu language sometimes considered a dialect of Zulu
+11719,Neandertal_man Neanderthal_man Neandertal Neanderthal Homo_sapiens_neanderthalensis,extinct robust human of Middle Paleolithic in Europe and western Asia
+11720,Neapolitan,a native or inhabitant of Naples
+11721,Neapolitan_ice_cream,a block of ice cream with 3 or 4 layers of different colors and flavors
+11722,Nebraska Cornhusker_State NE Neb.,a midwestern state on the Great Plains
+11723,Nebraskan Cornhusker,a native or resident of Nebraska
+11724,Nebuchadnezzar Nebuchadnezzar_II Nebuchadrezzar Nebuchadrezzar_II,(Old Testament) king of Chaldea who captured and destroyed Jerusalem and exiled the Israelites to Babylonia (630?-562 BC)
+11725,Neckar Neckar_River,a river in Germany; rises in the Black Forest and flows north into the Rhine
+11726,Necturus genus_Necturus,a genus of Proteidae
+11727,Neel Louis_Eugene_Felix_Neel,French physicist noted for research on magnetism (born in 1904)
+11728,Nefertiti,queen of Egypt and wife of Akhenaton (14th century BC)
+11729,Nefud An_Nefud Nafud An_Nafud,a desert in northern Saudi Arabia that is noted for its red sand and violent winds
+11730,Negaprion genus_Negaprion,lemon sharks
+11731,Negeri_Sembilan,one of the 13 states that constitute the Federation of Malaysia; located on the western coast of Peninsular Malaysia
+11732,Negev Negev_Desert,a desert in southern Israel
+11733,Negritude,an ideological position that holds Black culture to be independent and valid on its own terms; an affirmation of the African cultural heritage
+11734,Nehemiah Book_of_Nehemiah,an Old Testament book telling how a Jewish official at the court of Artaxerxes I in 444 BC became a leader in rebuilding Jerusalem after the Babylonian Captivity
+11735,Nehru Jawaharlal_Nehru,Indian statesman and leader with Gandhi in the struggle for home rule; was the first prime minister of the Republic of India from 1947 to 1964 (1889-1964)
+11736,Nejd Najd,a central plateau region of the Arabian Peninsula; formerly an independent sultanate until 1932 when it united with Hejaz to form the Kingdom of Saudi Arabia
+11737,Nelson Horatio_Nelson Viscount_Nelson Admiral_Nelson Lord_Nelson,English admiral who defeated the French fleets of Napoleon but was mortally wounded at Trafalgar (1758-1805)
+11738,Nelumbo genus_Nelumbo,sometimes placed in the family Nymphaeaceae: lotuses
+11739,Nelumbonaceae subfamily_Nelumbonaceae,in some classifications considered an independent family of water lilies; comprises the single genus Nelumbo
+11740,Nematocera suborder_Nematocera,mosquitoes; fungus gnats; crane flies; gnats; sand flies
+11741,Nematoda phylum_Nematoda Aschelminthes phylum_Aschelminthes,unsegmented worms: roundworms; threadworms; eelworms
+11742,Nemea,a valley in southeastern Greece where the Nemean Games were held
+11743,Nemean_Games,the ancient Panhellenic games held biennially at Nemea in the second and fourth years of each Olympiad
+11744,Nemean_lion,(Greek mythology) an enormous lion strangled by Hercules as the first of his 12 labors
+11745,Nemertea phylum_Nemertea Nemertina phylum_Nemertina,proboscis worms
+11746,Nemesis,(Greek mythology) the goddess of divine retribution and vengeance
+11747,Nenets Nentsi Nentsy Yurak-Samoyed,a Uralic language spoken by a Samoyed of northern Siberia
+11748,Neo-Lamarckism,a modern Lamarckian theory emphasizing the importance of environmental factors in genetic changes and retaining the notion of the inheritance of acquired characters
+11749,Neo-Latin New_Latin,Latin since the Renaissance; used for scientific nomenclature
+11750,Neoceratodus genus_Neoceratodus,extant Australian lungfishes
+11751,Neofiber genus_Neofiber,round-tailed muskrat
+11752,Neohygrophorus genus_Neohygrophorus,a genus of fungi belonging to the family Hygrophoraceae
+11753,Neohygrophorus_angelesianus,a fungus with a small brown convex cap with a depressed disc; waxy wine-colored gills and a brown stalk; fruits in or near melting snow banks in the western mountains of North America
+11754,Neolentinus genus_Neolentinus,a genus of fungi belonging to the family Polyporaceae
+11755,Neolentinus_ponderosus,a gilled polypore with a large cap (up to 15 inches in diameter) and a broad stalk; edible when young and tender
+11756,Neolithic_Age Neolithic New_Stone_Age,latest part of the Stone Age beginning about 10,000 BC in the Middle East (but later elsewhere)
+11757,Neomys genus_Neomys,a genus of Soricidae
+11758,Neophron genus_Neophron,a genus of Accipitridae
+11759,Neoplatonism,a system of philosophical and theological doctrines composed of elements of Platonism and Aristotelianism and oriental mysticism; its most distinctive doctrine holds that the first principle and source of reality transcends being and thought and is naturally unknowable; "Neoplatonism was predominant in pagan Europe until the 6th century"; "Neoplatonism was a major influence on early Christian writers and on later medieval and Renaissance thought and on Islamic philosophy"
+11760,Neoplatonist,an adherent of Neoplatonism
+11761,Neopolitan,a resident of Naples
+11762,Neosho Neosho_River,a river that rises in eastern Kansas and flows eastward into Oklahoma to become a tributary of the Arkansas River
+11763,Neosporin,trade name for a topical drug containing several antibacterials; used as an ointment for skin irritations and in the form of eyedrops for minor eye infections
+11764,Neotoma genus_Neotoma,packrats
+11765,Nepa genus_Nepa,type genus of the Nepidae: typical elongate-oval water scorpions
+11766,Nepal Kingdom_of_Nepal,a small landlocked Asian country high in the Himalayas between India and China
+11767,Nepal_trumpet_flower Easter_lily_vine Beaumontia_grandiflora,evergreen woody twiner with large glossy leaves and showy corymbs of fragrant white trumpet-shaped flowers
+11768,Nepalese Nepali,a native or inhabitant of Nepal
+11769,Nepalese_monetary_unit,monetary unit in Nepal
+11770,Nepalese_rupee rupee,the basic unit of money in Nepal; equal to 100 paisa
+11771,Nepali,the official state language of Nepal
+11772,Nepenthaceae family_Nepenthaceae,coextensive with the genus Nepenthes
+11773,Nepenthes genus_Nepenthes,pitcher plants
+11774,Nepeta genus_Nepeta,catmint
+11775,Nephelium genus_Nephelium,a genus of dicotyledonous trees of the family Sapindaceae that are native to Asia and Australia
+11776,Nephrolepis genus_Nephrolepis,small genus of tropical ferns; sometimes placed in Polypodiaceae
+11777,Nephrops genus_Nephrops,a genus of Nephropsidae
+11778,Nephropsidae family_Nephropsidae,in some classifications coextensive with the Homaridae
+11779,Nephthys,Egyptian goddess associated with ritual of the dead; sister of Geb and Nut; wife of Set
+11780,Nephthytis_afzelii,tropical rhizomatous plant cultivated as an ornamental for its large sagittate leaves
+11781,Nepidae family_Nepidae,water scorpions
+11782,Neptune,(Roman mythology) god of the sea; counterpart of Greek Poseidon
+11783,Neptune,a giant planet with a ring of ice particles; the 8th planet from the sun is the most remote of the gas giants; "the existence of Neptune was predicted from perturbations in the orbit of Uranus and it was then identified in 1846"
+11784,Nereid,(Greek mythology) any of the 50 sea nymphs who were daughters of the sea god Nereus
+11785,Nereus,(Greek mythology) a sea god son of Pontus and Gaea; lived in the depths of the sea with his wife Doris and their daughters the Nereids
+11786,Nergal,(Akkadian) god ruling with his consort Ereshkigal the world of the dead
+11787,Neritidae family_Neritidae,neritids
+11788,Nerium genus_Nerium,one species: oleander
+11789,Nernst Walther_Hermann_Nernst,German physicist and chemist who formulated the third law of thermodynamics (1864-1941)
+11790,Nero Nero_Claudius_Caesar_Drusus_Germanicus Lucius_Domitius_Ahenobarbus,Roman Emperor notorious for his monstrous vice and fantastic luxury (was said to have started a fire that destroyed much of Rome in 64) but the Roman Empire remained prosperous during his rule (37-68)
+11791,Nerodia genus_Nerodia,North American water snakes
+11792,Nerthus Hertha,the Teutonic goddess of fertility; later identified with Norse Njord
+11793,Neruda Pablo_Neruda Reyes Neftali_Ricardo_Reyes,Chilean poet (1904-1973)
+11794,Nerva Marcus_Cocceius_Nerva,Emperor of Rome who introduced a degree of freedom after the repressive reign of Domitian; adopted Trajan as his successor (30-98)
+11795,Nervi Pier_Luigi_Nervi,Italian architect who pioneered in the use of reinforced concrete (1891-1979)
+11796,Nesokia genus_Nesokia,bandicoot rats
+11797,Nesselrode Nesselrode_pudding,a rich frozen pudding made of chopped chestnuts and maraschino cherries and candied fruits and liqueur or rum
+11798,Nestor,(Greek mythology) a wise old counselor to the Greeks at Troy
+11799,Nestor genus_Nestor,a genus of Psittacidae
+11800,Nestorian,a follower of Nestorius
+11801,Nestorian_Church,a Christian Church in the Middle East that followed Nestorianism; there is still a small Nestorian Church in Iraq
+11802,Nestorianism,the theological doctrine (named after Nestorius) that Christ is both the son of God and the man Jesus (which is opposed to Roman Catholic doctrine that Christ is fully God)
+11803,Nestorius,Syrian who was a Christian bishop and Patriarch of Constantinople in the early fifth century; one of the major heresies concerning the doctrine of the hypostasis of Christ was named after him (died in 451)
+11804,Netherlander Dutchman Hollander,a native or inhabitant of Holland
+11805,Netherlands The_Netherlands Kingdom_of_The_Netherlands Nederland Holland,a constitutional monarchy in western Europe on the North Sea; half the country lies below sea level
+11806,Netherlands_Antilles,a group of islands in the Lesser Antilles just to the north of Venezuela that are administered by The Netherlands
+11807,Netscape,a commercial browser
+11808,Neuroptera order_Neuroptera,an order of insects including: lacewings; antlions; dobsonflies; alderflies; fish flies; mantispids; spongeflies
+11809,Neurospora genus_Neurospora,genus of fungi with black perithecia used extensively in genetic research; includes some forms with orange spore masses that cause severe damage in bakeries
+11810,Neurotrichus genus_Neurotrichus,shrew moles
+11811,Neva Neva_River,a river in northwestern Russia flowing generally west into the Gulf of Finland
+11812,Nevada Silver_State Battle_Born_State Sagebrush_State NV Nev.,a state in the western United States
+11813,Nevadan,a native or resident of Nevada
+11814,Nevelson Louise_Nevelson,United States sculptor (born in Russia) known for massive shapes of painted wood (1899-1988)
+11815,Never-Never,the remote outback of Australia; unpopulated desert country
+11816,Nevis,one of the islands of Saint Christopher-Nevis
+11817,New_Amsterdam,a settlement established by the Dutch near the mouth of Hudson River and the southern end of Manhattan Island; annexed by the English in 1664 and renamed New York
+11818,New_Britain,the largest island in the Bismarck Archipelago; part of Papua New Guinea
+11819,New_Brunswick,a university town in central New Jersey
+11820,New_Brunswick,a province in southeastern Canada
+11821,New_Caledonia,an island to the to the east of Australia and to the north of New Zealand
+11822,New_Caledonian_yew Austrotaxus_spicata,large yew native to New Caledonia; cultivated in eastern Australia and New Zealand and Hawaii
+11823,New_Deal,the historic period (1933-1940) in the United States during which President Franklin Roosevelt's economic policies were implemented
+11824,New_Deal,the economic policy of F. D. Roosevelt
+11825,New_Dealer,a supporter of the economic policies in the United States known as the New Deal
+11826,New_England,a region of northeastern United States comprising Maine and New Hampshire and Vermont and Massachusetts and Rhode Island and Connecticut
+11827,New_England_aster Aster_novae-angliae,common perennial of eastern North America having showy purplish flowers; a parent of the Michaelmas daisy
+11828,New_England_clam_chowder,a thick chowder made with clams and potatoes and onions and salt pork and milk
+11829,New_Englander Yankee,an American who lives in New England
+11830,New_English_Bible,a modern English version of the Bible and Apocrypha
+11831,New_Forest,an area of woods and heathland in southern Hampshire that was set aside by William I as Crown property in 1079; originally a royal hunting ground but now administered as parkland; noted for its ponies
+11832,New_Guinea,a Pacific island to the north of Australia; the 2nd largest island in the world; the western part is governed by Indonesia and the eastern part is Papua New Guinea
+11833,New_Hampshire,one of the British colonies that formed the United States
+11834,New_Hampshire Granite_State NH N.H.,a state in New England; one of the original 13 colonies
+11835,New_Hampshirite Granite_Stater,a native or resident of New Hampshire
+11836,New_Haven,a city in southwestern Connecticut; site of Yale University
+11837,New_Ireland,an island in the Bismarck Archipelago; part of Papua New Guinea
+11838,New_Jersey,one of the British colonies that formed the United States
+11839,New_Jersey Jersey Garden_State NJ N.J.,a Mid-Atlantic state on the Atlantic; one of the original 13 colonies
+11840,New_Jerseyan New_Jerseyite Garden_Stater,a native of resident of New Jersey
+11841,New_London,a town in southeastern Connecticut near Long Island Sound; an important whaling center in the 19th century
+11842,New_Look,a style of women's clothing created by Christian Dior in 1947; involved a tight bodice and narrow waist and a flowing pleated skirt
+11843,New_Mexican,a native or resident of New Mexico
+11844,New_Mexico Land_of_Enchantment NM N.M.,a state in southwestern United States on the Mexican border
+11845,New_Netherland,a Dutch colony in North America along the Hudson and lower Delaware rivers although the colony centered in New Amsterdam; annexed by the English in 1664
+11846,New_Orleans,a port and largest city in Louisiana; located in southeastern Louisiana near the mouth of the Mississippi river; a major center for offshore drilling for oil in the Gulf of Mexico; jazz originated here among black musicians in the late 19th century; Mardi Gras is celebrated here each year
+11847,New_People's_Army NPA,a terrorist organization that is the militant wing of the Communist Party of the Philippines; a Maoist organization formed to overthrow the government; uses hit squads called Sparrow Units; opposes United States military presence in the Philippines
+11848,New_River,a river in the southeastern United States that flows northward from North Carolina to West Virginia where it empties into the Kanawha River
+11849,New_River_Gorge_Bridge,a steel arch bridge across New River at Fayetteville, West Virginia
+11850,New_Siberian_Islands,a group of islands in the Arctic Ocean to the north of Siberia and to the east of the Laptev Sea
+11851,New_South_Wales,an Australian state in southeastern Australia
+11852,New_Testament,the collection of books of the Gospels, Acts of the Apostles, the Pauline and other epistles, and Revelation; composed soon after Christ's death; the second half of the Christian Bible
+11853,New_Wave Nouvelle_Vague,an art movement in French cinema in the 1960s
+11854,New_Waver,a film maker who follows New Wave ideas
+11855,New_World_beaver Castor_canadensis,a variety of beaver found in almost all areas of North America except Florida
+11856,New_World_blackbird blackbird,any bird of the family Icteridae whose male is black or predominantly black
+11857,New_World_chat chat,birds having a chattering call
+11858,New_World_flycatcher flycatcher tyrant_flycatcher tyrant_bird,large American birds that characteristically catch insects on the wing
+11859,New_World_goldfinch goldfinch yellowbird Spinus_tristis,American finch whose male has yellow body plumage in summer
+11860,New_World_jay,a North American jay
+11861,New_World_least_weasel Mustela_rixosa,of Canada and northeastern United States
+11862,New_World_monkey platyrrhine platyrrhinian,hairy-faced arboreal monkeys having widely separated nostrils and long usually prehensile tails
+11863,New_World_mouse,a variety of rodent
+11864,New_World_opah Lampris_guttatus,from Nova Scotia to West Indies and Gulf of Mexico
+11865,New_World_oriole American_oriole oriole,American songbird; male is black and orange or yellow
+11866,New_World_porcupine,arboreal porcupine
+11867,New_World_sparrow,sparrow-like North American finches
+11868,New_World_tapir Tapirus_terrestris,a tapir found in South America and Central America
+11869,New_World_vulture cathartid,large birds of prey superficially similar to Old World vultures
+11870,New_World_warbler wood_warbler,small bright-colored American songbird with a weak unmusical song
+11871,New_Year,the calendar year just begun
+11872,New_Year's_Day New_Year's January_1,the first day of the year
+11873,New_Year's_Eve December_31,the last day of the year
+11874,New_York,one of the British colonies that formed the United States
+11875,New_York New_York_City Greater_New_York,the largest city in New York State and in the United States; located in southeastern New York at the mouth of the Hudson river; a major financial and cultural center
+11876,New_York New_York_State Empire_State NY N.Y.,a Mid-Atlantic state; one of the original 13 colonies
+11877,New_York_Bay,a bay of the North Atlantic; fed by the Hudson River
+11878,New_York_State_Barge_Canal,a system of canals crossing New York State and connecting the Great Lakes with the Hudson River and Lake Champlain
+11879,New_York_Stock_Exchange N._Y._Stock_Exchange NYSE big_board,a stock exchange in New York
+11880,New_York_fern Parathelypteris_novae-boracensis Dryopteris_noveboracensis,slender shield fern of moist woods of eastern North America; sometimes placed in genus Dryopteris
+11881,New_Yorker,a native or resident of New York (especially of New York City)
+11882,New_Zealand,an independent country within the British Commonwealth; achieved independence from the United Kingdom in 1907; known for sheep and spectacular scenery
+11883,New_Zealand New_Zealand_Islands,North Island and South Island and adjacent small islands in the South Pacific
+11884,New_Zealand_beech,any of several tall New Zealand trees of the genus Nothofagus; some yield useful timber
+11885,New_Zealand_cotton,a fiber from the bast of New Zealand ribbon trees that resembles cotton fiber
+11886,New_Zealand_daisybush Olearia_haastii,bushy New Zealand shrub cultivated for its fragrant white flower heads
+11887,New_Zealand_dollar,the basic unit of money in New Zealand
+11888,New_Zealand_spinach Tetragonia_tetragonioides Tetragonia_expansa,coarse sprawling Australasian plant with red or yellow flowers; cultivated for its edible young shoots and succulent leaves
+11889,New_Zealand_wren,birds of New Zealand that resemble wrens
+11890,New_Zealander Kiwi,a native or inhabitant of New Zealand
+11891,Newari,Himalayish language spoken in the Kathmandu valley of Nepal
+11892,Newark,the largest city in New Jersey; located in northeastern New Jersey
+11893,Newburg_sauce,lobster butter and cream and egg yolks seasoned with onions and sherry or Madeira
+11894,Newburgh,a town on the Hudson River in New York; in 1782 and 1783 it was George Washington's headquarters
+11895,Newcastle Newcastle-upon-Tyne,a port city in northeastern England on the River Tyne; a center for coal exports (giving rise to the expression `carry coals to Newcastle' meaning to do something unnecessary)
+11896,Newcastle_disease,disease of domestic fowl and other birds
+11897,Newcomb Simon_Newcomb,United States astronomer (1835-1909)
+11898,Newfoundland,an island in the north Atlantic
+11899,Newfoundland Newfoundland_dog,a breed of very large heavy dogs with a thick coarse usually black coat; highly intelligent dogs and vigorous swimmers; developed in Newfoundland
+11900,Newfoundland_and_Labrador,a Canadian province on the island of Newfoundland and on the mainland along the coast of the Labrador Sea; became Canada's 10th province in 1949
+11901,Newfoundland_dwarf_birch American_dwarf_birch Betula_glandulosa,small shrub of colder parts of North America and Greenland
+11902,Newgate,a former prison in London notorious for its unsanitary conditions and burnt down in riots in 1780; a new prison was built on the same spot but was torn down in 1902
+11903,Newman John_Henry_Newman Cardinal_Newman,English prelate and theologian who (with John Keble and Edward Pusey) founded the Oxford movement; Newman later turned to Roman Catholicism and became a cardinal (1801-1890)
+11904,Newman Paul_Newman Paul_Leonard_Newman,United States film actor (born in 1925)
+11905,Newport,a resort city in southeastern Rhode Island; known for the summer homes of millionaires; important yachting center
+11906,Newport,a port city in southeastern Wales
+11907,Newport_News,a port city in southeastern Virginia at the mouth of the James River off Hampton Roads; large shipyards
+11908,Newton Isaac_Newton Sir_Isaac_Newton,English mathematician and physicist; remembered for developing the calculus and for his law of gravitation and his three laws of motion (1642-1727)
+11909,Newton's_law_of_motion Newton's_law law_of_motion,one of three basic laws of classical mechanics
+11910,Newtonian,a follower of Isaac Newton
+11911,Newtonian_telescope Newtonian_reflector,reflecting telescope in which the image is viewed through an eyepiece perpendicular to main axis
+11912,Newtown_Wonder,apple used primarily in cooking
+11913,Ney Michel_Ney Duc_d'Elchingen,French marshal in the Napoleonic Wars (1769-1815)
+11914,Nez_Perce,a member of a tribe of the Shahaptian people living on the pacific coast
+11915,Nez_Perce,the Shahaptian language spoken by the Nez Perce
+11916,Nganasan,a member of the Samoyedic people living on the Taimyr Peninsula in Siberia
+11917,Nganasan,the Uralic language spoken by the Nganasan
+11918,Nguni,a group of southern Bantu languages
+11919,Ni-hard Ni-hard_iron,cast iron to which nickel has been added to make it resist abrasion
+11920,Ni-resist Ni-resist_iron,cast iron consisting of graphite in a matrix of austenite
+11921,Niagara Niagara_Falls,waterfall in Canada is the Horseshoe Falls; in the United States it is the American Falls
+11922,Niagara Niagara_River,a river flowing from Lake Erie into Lake Ontario; forms boundary between Ontario and New York
+11923,Niagara_Falls,a city in western New York State at the falls of the Niagara river; tourist attraction and honeymoon resort
+11924,Niamey capital_of_Niger,the capital and largest city of Niger
+11925,Nibelung,(German mythology) a companion or follower of Siegfried
+11926,Nibelung,(German mythology) any of the group of dwarfs who possessed a treasure hoard that was stolen by Siegfried
+11927,Nibelungenlied,an epic poem written in Middle High German and based on the legends of Siegfried and Teutonic kings
+11928,Nicaea,an ancient city in Bithynia; founded in the 4th century BC and flourished under the Romans; the Nicene Creed was adopted there in 325
+11929,Nicaea First_Council_of_Nicaea,the first ecumenical council in 325 which produced the wording of the Nicene Creed and condemned the heresy of Arianism
+11930,Nicaea Second_Council_of_Nicaea,the seventh ecumenical council in 787 which refuted iconoclasm and regulated the veneration of holy images
+11931,Nicandra genus_Nicandra,sturdy annual of Peru
+11932,Nicaragua Republic_of_Nicaragua,a republic in Central America; achieved independence from Spain in 1821
+11933,Nicaraguan,a native or inhabitant of Nicaragua
+11934,Nicaraguan_monetary_unit,monetary unit in Nicaragua
+11935,Nice,a city in southeastern France on the Mediterranean; the leading resort on the French Riviera
+11936,Nicene_Creed,(Christianity) a formal creed summarizing Christian beliefs; first adopted in 325 and later expanded
+11937,Nicholas Saint_Nicholas St._Nicholas,a bishop in Asia Minor who is associated with Santa Claus (4th century)
+11938,Nicholas_I Czar_Nicholas_I,czar of Russia from 1825 to 1855 who led Russia into the Crimean War (1796-1855)
+11939,Nicholas_II,the last czar of Russia who was forced to abdicate in 1917 by the Russian Revolution; he and his family were executed by the Bolsheviks (1868-1918)
+11940,Nicholas_V Tomasso_Parentucelli,Italian pope from 1447 to 1455 who founded the Vatican library (1397-1455)
+11941,Nichrome,an alloy of nickel and chromium with high electrical resistance and an ability to withstand high temperatures; used for resistance heating elements
+11942,Nicklaus Jack_Nicklaus Jack_William_Nicklaus,United States golfer considered by many to be the greatest golfer of all time (born in 1940)
+11943,Nicol_prism,optical device that produces plane-polarized light
+11944,Nicolson Harold_Nicolson Sir_Harold_George_Nicolson,English diplomat and author (1886-1968)
+11945,Nicosia capital_of_Cyprus,the capital and largest city of Cyprus
+11946,Nicotiana genus_Nicotiana,American and Asiatic aromatic herbs and shrubs with viscid foliage
+11947,Nidularia genus_Nidularia,type genus of the Nidulariaceae
+11948,Nidulariaceae family_Nidulariaceae,bird's-nest fungi
+11949,Nidulariales order_Nidulariales,small order of basidiomycetous fungi comprising families Nidulariaceae and Sphaerobolaceae
+11950,Niebuhr Barthold_George_Niebuhr,German historian noted for his critical approach to sources and for his history of Rome (1776-1831)
+11951,Niebuhr Reinhold_Niebuhr,United States Protestant theologian (1892-1971)
+11952,Nielsen Carl_Nielsen Carl_August_Nielsen,Danish composer (1865-1931)
+11953,Niemann-Pick_disease,a disorder of lipid metabolism that is inherited as an autosomal recessive trait
+11954,Nietzsche Friedrich_Wilhelm_Nietzsche,influential German philosopher remembered for his concept of the superman and for his rejection of Christian values; considered, along with Kierkegaard, to be a founder of existentialism (1844-1900)
+11955,Niger Niger_River,an African river; flows into the South Atlantic
+11956,Niger Republic_of_Niger,a landlocked republic in West Africa; gained independence from France in 1960; most of the country is dominated by the Sahara Desert
+11957,Niger-Congo,a family of African language spoken in west Africa
+11958,Niger-Kordofanian Niger-Kordofanian_language,the family of languages that includes most of the languages spoken in Africa south of the Sahara; the majority of them are tonal languages but there are important exceptions (e.g., Swahili or Fula)
+11959,Niger_franc,the basic unit of money in Niger
+11960,Nigeria Federal_Republic_of_Nigeria,a republic in West Africa on the Gulf of Guinea; gained independence from Britain in 1960; most populous African country
+11961,Nigerian,a native or inhabitant of Nigeria
+11962,Nigerian_monetary_unit,monetary unit in Nigeria
+11963,Nigerien,a native or inhabitant of Niger
+11964,Nightingale Florence_Nightingale Lady_with_the_Lamp,English nurse remembered for her work during the Crimean War (1820-1910)
+11965,Nigroporus genus_Nigroporus,a genus of fungi belonging to the family Polyporaceae
+11966,Nigroporus_vinosus,a woody pore fungus with a dark brown to red brown cap and spore surface and small pores
+11967,Nihau Nihau_Island,the most northwestern Hawaiian island (beyond Kauai)
+11968,Nijinsky Vaslav_Nijinsky Waslaw_Nijinsky,Russian dancer considered by many to be the greatest dancer of the 20th century (1890-1950)
+11969,Nijmegen,an industrial city in the eastern Netherlands
+11970,Nike,(Greek mythology) winged goddess of victory; identified with Roman Victoria
+11971,Nile Nile_River,the world's longest river (4150 miles); flows northward through eastern Africa into the Mediterranean; the Nile River valley in Egypt was the site of the world's first great civilization
+11972,Nilgiri_Hills,hills in southern India
+11973,Nilo-Saharan Nilo-Saharan_language,a family of East African languages spoken by Nilotic peoples from the Sahara south to Kenya and Tanzania
+11974,Nilotic Nilotic_language,a group of languages of East Africa belonging to the Chari-Nile group
+11975,Nilsson Brigit_Nilsson Marta_Brigit_Nilsson,Swedish operatic soprano who played Wagnerian roles (born in 1918)
+11976,Nimitz Chester_Nimitz Chester_William_Nimitz Admiral_Nimitz,United States admiral of the Pacific fleet during World War II who used aircraft carriers to destroy the Japanese navy (1885-1966)
+11977,Nimravus genus_Nimravus,false sabertoothed tigers
+11978,Nimrod,(Old Testament) a famous hunter
+11979,Nina,the Babylonian goddess of the watery deep and daughter of Ea
+11980,Nineteenth_Amendment,an amendment to the Constitution of the United States adopted in 1920; guarantees that no state can deny the right to vote on the basis of sex
+11981,Nineveh,an ancient Assyrian city on the Tigris across from the modern city of Mosul in the northern part of what is now known as Iraq
+11982,Ningal,(Akkadian) a goddess; wife of the Moon god Sin
+11983,Ningirsu,Babylonian god in older pantheon: god of war and agriculture
+11984,Ningishzida,an underworld Babylonian deity; patron of medicine
+11985,Ninigi Ninigino-Mikoto,grandson of Amaterasu and first ruler of Japan
+11986,Ninkhursag Ninhursag Ninkharsag,the great mother goddess; worshipped also as Aruru and Mama and Nintu
+11987,Nintu Nintoo,a name under which Ninkhursag was worshipped
+11988,Ninurta Ninib,a solar deity; firstborn of Bel and consort was Gula; god of war and the chase and agriculture; sometimes identified with biblical Nimrod
+11989,Niobe,(Greek mythology) the daughter of Tantalus whose boasting about her children provoked Apollo and Artemis to slay them all; Niobe was turned to stone while bewailing her loss
+11990,Niobrara Niobrara_River,a tributary of the Missouri River
+11991,Nipa genus_Nipa Nypa genus_Nypa,monotypic genus of palms of Australasia
+11992,Nisan Nissan,the seventh month of the civil year; the first month of the ecclesiastic year (in March and April)
+11993,Nisei,a person born in the United States of parents who emigrated from Japan
+11994,Nissen_hut Quonset_hut,a prefabricated hut of corrugated iron having a semicircular cross section
+11995,Nitella genus_Nitella,fragile branching stoneworts
+11996,Nitrobacter genus_Nitrobacter,rod-shaped soil bacteria
+11997,Nitrobacteriaceae family_Nitrobacteriaceae,usually rod-shaped bacteria that oxidize ammonia or nitrites: nitrobacteria
+11998,Nitrosomonas genus_Nitrosomonas,ellipsoidal soil bacteria
+11999,Nitrospan Nitrostat,trade names for nitroglycerin used as a coronary vasodilator in the treatment of angina pectoris
+12000,Nivose,fourth month of the Revolutionary calendar (December and January); the snowy month
+12001,Nixon Richard_Nixon Richard_M._Nixon Richard_Milhous_Nixon President_Nixon,vice president under Eisenhower and 37th President of the United States; resigned after the Watergate scandal in 1974 (1913-1994)
+12002,Nizhnyi_Novgorod Nizhni_Novgorod Gorki Gorky Gorkiy,an industrial city in the European part of Russia; birthplace of Maksim Gorky
+12003,Njord Njorth,(Norse mythology) chief of the Vanir; god of the sea and winds and prosperity; father of Frey and Freya; sometimes subsumes Teutonic Nerthus
+12004,Noah,the Hebrew patriarch who saved himself and his family and the animals by building an ark in which they survived 40 days and 40 nights of rain; the story of Noah and the flood is told in the Book of Genesis
+12005,Noah's_flood Noachian_deluge Noah_and_the_Flood the_Flood,(Biblical) the great deluge that is said in the Book of Genesis to have occurred in the time of Noah; it was brought by God upon the earth because of the wickedness of human beings
+12006,Nob_Hill,a fashionable neighborhood in San Francisco
+12007,Nobel Alfred_Nobel Alfred_Bernhard_Nobel,Swedish chemist remembered for his invention of dynamite and for the bequest that created the Nobel prizes (1833-1896)
+12008,Nobel_prize,an annual award for outstanding contributions to chemistry or physics or physiology and medicine or literature or economics or peace
+12009,Nobelist Nobel_Laureate,winner of a Nobel prize
+12010,Noctua genus_Noctua,type genus of the Noctuidae: moths whose larvae are cutworms
+12011,Noctuidae family_Noctuidae,cutworms; armyworms
+12012,Noether Emmy_Noether,German mathematician (1882-1935)
+12013,Nogales,a town in Arizona on the Mexican border opposite Nogales, Mexico
+12014,Nogales,a town in northern Mexico on the border of Arizona
+12015,Noguchi Hideyo_Noguchi,United States bacteriologist (born in Japan) who discovered the cause of yellow fever and syphilis (1876-1928)
+12016,Noguchi Isamu_Noguchi,United States sculptor (1904-1988)
+12017,Nolina genus_Nolina,perennial plants resembling yucca; found in southern United States and Mexico
+12018,Nome,a town in western Alaska on the southern coast of the Seward Peninsula; an important center of an Alaskan gold rush at the beginning of the 20th century
+12019,Nomia_melanderi alkali_bee,a common solitary bee important for pollinating alfalfa in the western United States
+12020,Nonconformist chapelgoer,a Protestant in England who is not a member of the Church of England
+12021,Nonproliferation_Center NPC,an agency that serves as the focal point for all Intelligence Community activities related to nonproliferation of weapons of mass destruction and their missile delivery systems
+12022,Noonan's_syndrome,syndrome seen only in males; marked by short stature and lowset ears and subnormal fertility
+12023,Nootka,a member of the Wakashan people living on Vancouver Island and in the Cape Flattery region of northwestern Washington
+12024,Nootka,a Wakashan language spoken by the Nootka
+12025,Nopalea genus_Nopalea,a genus of the cactus family with scarlet flowers
+12026,Nor-Q-D,trade name for an oral contraceptive containing norethindrone
+12027,Nord-Pas-de-Calais,a region in northeastern France
+12028,Norfolk,port city located in southeastern Virginia on the Elizabeth River at the mouth of Chesapeake Bay; headquarters of the Atlantic fleet of the United States Navy
+12029,Norfolk_Island,an island territory of Australia in the Pacific Ocean off the eastern coast of Australia; formerly a British penal colony
+12030,Norfolk_jacket,loose-fitting single-breasted jacket
+12031,Norfolk_terrier,English breed of small terrier with a straight wiry grizzled coat and dropped ears
+12032,Norinyl,trade name for an oral contraceptive containing norethindrone and mestranol
+12033,Norlestrin,trade name for an oral contraceptive containing estradiol and norethindrone
+12034,Norma,a small constellation in the southern hemisphere near Lupus and Ara in the Milky Way
+12035,Norman,an inhabitant of Normandy
+12036,Norman Greg_Norman Gregory_John_Norman,Australian golfer (born in 1955)
+12037,Norman Jessye_Norman,United States operatic soprano (born in 1945)
+12038,Norman-French Norman_French Old_North_French,the medieval Norman dialect of Old French
+12039,Norman_Conquest,the invasion and settlement of England by the Normans following the battle of Hastings (1066)
+12040,Norman_architecture,a Romanesque style first appearing in Normandy around 950 AD and used in Britain from the Norman Conquest until the 12th century
+12041,Normandie Normandy,a former province of northwestern France on the English channel; divided into Haute-Normandie and Basse-Normandie
+12042,Norn weird_sister,(Norse mythology) any of the three goddesses of destiny; identified with Anglo-Saxon Wyrd; similar to Greek Moirae and Roman Parcae
+12043,Norris Frank_Norris Benjamin_Franklin_Norris_Jr.,United States writer (1870-1902)
+12044,Norrish Ronald_George_Wreyford_Norrish,English chemist (1897-1978)
+12045,Norse_deity,a deity worshipped by the ancient Norsemen
+12046,Norse_mythology,the mythology of Scandinavia (shared in part by Britain and Germany) until the establishment of Christianity
+12047,North,the region of the United States lying to the north of the Mason-Dixon line
+12048,North Frederick_North Second_Earl_of_Guilford,British statesman under George III whose policies led to rebellion in the American colonies (1732-1792)
+12049,North_Africa,an area of northern Africa between the Sahara and the Mediterranean Sea
+12050,North_America,a continent (the third largest) in the western hemisphere connected to South America by the Isthmus of Panama
+12051,North_America,the nations of the North American continent collectively
+12052,North_American,a native or inhabitant of North America
+12053,North_American_Free_Trade_Agreement NAFTA,an agreement for free trade between the United States and Canada and Mexico; became effective in 1994 for ten years
+12054,North_American_country North_American_nation,any country on the North American continent
+12055,North_Atlantic,that part of the Atlantic Ocean to the north of the equator
+12056,North_Atlantic_Council NAC,a council consisting of permanent representatives of all the member countries of NATO; has political authority and powers of decision
+12057,North_Atlantic_Treaty,the treaty signed in 1949 by 12 countries that established NATO
+12058,North_Atlantic_Treaty_Organization NATO,an international organization created in 1949 by the North Atlantic Treaty for purposes of collective security
+12059,North_Carolina,one of the British colonies that formed the United States
+12060,North_Carolina Old_North_State Tar_Heel_State NC N.C.,a state in southeastern United States; one of the original 13 colonies
+12061,North_Carolinian Tarheel,a native or resident of North Carolina
+12062,North_Cascades_National_Park,a national park in Washington that is an alpine wilderness area featuring gold rush and logging campsites
+12063,North_Channel,a strait between Northern Ireland and Scotland that connects the Atlantic Ocean and the Irish Sea
+12064,North_Dakota Peace_Garden_State ND N.D.,a state of north central United States bordering on Canada
+12065,North_Dakotan,a native or resident of North Dakota
+12066,North_Dravidian,a Dravidian language spoken primarily in eastern India
+12067,North_Equatorial_Current,an equatorial current that flows west across the Pacific just north of the equator
+12068,North_Island,the smaller but more populous of two main islands of New Zealand; separated from South Island by Cook Strait
+12069,North_Korea Democratic_People's_Republic_of_Korea D.P.R.K. DPRK,a communist country in the northern half of the Korean Peninsula; established in 1948
+12070,North_Korean,a Korean from North Korea
+12071,North_Korean_monetary_unit,monetary unit in North Korea
+12072,North_Korean_won won,the basic unit of money in North Korea
+12073,North_Pacific,that part of the Pacific Ocean to the north of the equator
+12074,North_Peak,19,370 feet high
+12075,North_Platte,a town in west central Nebraska on the Platte River
+12076,North_Platte North_Platte_River,a river that rises in northern Colorado and flows northward into Wyoming and then eastward and southeastward through Nebraska where it joins the South Platte to form the Platte River
+12077,North_Pole,the northernmost point of the Earth's axis
+12078,North_Sea,an arm of the North Atlantic between the British Isles and Scandinavia; oil was discovered under the North Sea in 1970
+12079,North_Temperate_Zone,Temperate Zone between the Arctic Circle and the Tropic of Cancer
+12080,North_Vietnam,a former country in southeastern Asia that existed from 1954 (after the defeat of the French at Dien Bien Phu) until 1975 when South Vietnam collapsed at the end of the Vietnam War
+12081,North_Yorkshire,a county in northern England
+12082,Northampton,the principal city of Northamptonshire
+12083,Northamptonshire,a county is central England
+12084,Northeast northeastern_United_States,the northeastern region of the United States
+12085,Northern,a dialect of Middle English that developed into Scottish Lallans
+12086,Northern_Alliance United_Front,a multiethnic alliance in Afghanistan who practice a moderate form of Islam and are united in their opposition to the Taliban
+12087,Northern_Baptist,a member of the American Baptist Convention
+12088,Northern_Cross,a cluster of 5 bright stars forming a cross in the constellation Cygnus
+12089,Northern_Ireland,a division of the United Kingdom located on the northern part of the island of Ireland
+12090,Northern_Marianas Northern_Mariana_Islands,a self-governing territory comprising all of the Mariana Islands except Guam
+12091,Northern_Spy,large late-ripening apple with skin striped with yellow and red
+12092,Northern_Territory,a territory in north central Australia
+12093,Northern_bedstraw Northern_snow_bedstraw Galium_boreale,North American stoloniferous perennial having white flowers; sometimes used as an ornamental
+12094,Northern_dewberry American_dewberry Rubus_flagellaris,of eastern North America
+12095,Northerner,an inhabitant of the North
+12096,Northrop John_Howard_Northrop,United States biochemist (1891-1987)
+12097,Northumberland,the northernmost county of England; has many Roman remains (including Hadrian's Wall)
+12098,Northumbria,an Anglo-Saxon kingdom in northern England until 876
+12099,Northwest northwestern_United_States,the northwestern region of the United States
+12100,Northwest_Passage,a water route between the Atlantic Ocean and the Pacific Ocean along the northern coast of North America; Europeans since the 16th century had searched for a short route to the Far East before it was successfully traversed by Roald Amundsen (1903-1906)
+12101,Northwest_Territories,a large territory in northwestern Canada; part is now Nunavut
+12102,Noruz Nowruz Nowrooz,(Persian) the new year holiday in Iran and Azerbaijan and Afghanistan and Pakistan and parts of India and among the Kurds; comes at the vernal equinox
+12103,Norway Kingdom_of_Norway Norge Noreg,a constitutional monarchy in northern Europe on the western side of the Scandinavian Peninsula; achieved independence from Sweden in 1905
+12104,Norway_lobster Nephrops_norvegicus,edible European lobster resembling the American lobster but slenderer
+12105,Norway_maple Acer_platanoides,a large Eurasian maple tree naturalized in North America; five-lobed leaves yellow in autumn; cultivated in many varieties
+12106,Norway_spruce Picea_abies,tall pyramidal spruce native to northern Europe having dark green foliage on spreading branches with pendulous branchlets and long pendulous cones
+12107,Norwegian,a Scandinavian language that is spoken in Norway
+12108,Norwegian Norseman Norse,a native or inhabitant of Norway
+12109,Norwegian_Sea,the part of the Atlantic that lies off the Norwegian coast to the north of the North Sea
+12110,Norwegian_elkhound elkhound,breed of compact medium-sized dog with a heavy grey coat developed in Norway for hunting elk
+12111,Norwegian_krone krone,the basic unit of money in Norway
+12112,Norwegian_lobster langoustine scampo,caught in European waters; slenderer than American lobster
+12113,Norwegian_monetary_unit,monetary unit in Norway
+12114,Norwich_terrier,English breed of small short-legged terrier with a straight wiry red or grey or black-and-tan coat and erect ears
+12115,Nostocaceae family_Nostocaceae,blue-green algae
+12116,Nostradamus Michel_de_Notredame,French astrologer who wrote cryptic predictions whose interpretations are still being debated (1503-1566)
+12117,Notechis genus_Notechis,tiger snakes
+12118,Notemigonus genus_Notemigonus,golden shiners
+12119,Nothofagus genus_Nothofagus,beeches of temperate southern hemisphere except Africa: southern beech
+12120,Nothosauria suborder_Nothosauria,a suborder of Sauropterygia
+12121,Notomys genus_Notomys,jerboa rats
+12122,Notonecta genus_Notonecta,type genus of the Notonectidae: backswimmers
+12123,Notonectidae family_Notonectidae,aquatic carnivorous insects
+12124,Notophthalmus genus_Notophthalmus,newts
+12125,Notoryctidae family_Notoryctidae,pouched moles
+12126,Notoryctus genus_Notoryctus,type genus of the family Notoryctidae: comprising solely the marsupial mole
+12127,Notostraca order_Notostraca,small freshwater crustaceans with a shield-shaped carapace
+12128,Notropis genus_Notropis,shiners
+12129,Nouakchott,capital of Mauritania; located in western Mauritania near the Atlantic coast
+12130,Nov-Esperanto,an artificial language based on Esperanto
+12131,Nov-Latin,an artificial language based on Latin
+12132,Nova_Scotia,a peninsula in eastern Canada between the Bay of Fundy and the Saint Lawrence River
+12133,Nova_Scotia,the Canadian province in the Maritimes consisting of the Nova Scotia peninsula and Cape Breton Island; French settlers who called the area Acadia were exiled to Louisiana by the British in the 1750s and their descendants are know as Cajuns
+12134,Nova_Scotia_lox Nova_lox Nova_Scotia_salmon Nova_salmon Nova_style_salmon,brine-cured salmon that is less salty than most; sometimes sugar is also used in the curing
+12135,Nova_Scotian bluenose,a native or inhabitant of Nova Scotia
+12136,Novaya_Zemlya Nova_Zembla,two islands in the Arctic Ocean belonging to Russia; site of a test center for nuclear warheads
+12137,November Nov,the month following October and preceding December
+12138,November_5,anniversary of the discovery of the Gunpowder Plot
+12139,Novgorod,a city in northwestern Russia on the Volkhov River; Russia's oldest city and an important trading center in the Middle Ages
+12140,Novial,an artificial language
+12141,Novosibirsk,a city in the Asian part of Russia on the Ob river; largest city in Siberia
+12142,Nox Night,Roman goddess of night; daughter of Erebus; counterpart of Greek Nyx
+12143,Noyes Alfred_Noyes,English poet (1880-1958)
+12144,Nubia,an ancient region of northeastern Africa (southern Egypt and northern Sudan) on the Nile; much of Nubia is now under Lake Nasser
+12145,Nubian,a native or inhabitant of Nubia; "Nubians now form an ethnic minority in Egypt"
+12146,Nubian_Desert,an arid sandstone plateau in northeastern Sudan between the Nile and the Red Sea
+12147,Nucifraga genus_Nucifraga,nutcrackers
+12148,Nuclear_Regulatory_Commission NRC,an independent federal agency created in 1974 to license and regulate nuclear power plants
+12149,Nuda class_Nuda,ctenophores lacking tentacles; comprises one genus: beroe
+12150,Nudibranchia order_Nudibranchia,comprising numerous marine gastropod mollusks lacking a shell in the adult state and usually having a body like a slug
+12151,Nuffield William_Richard_Morris First_Viscount_Nuffield,British industrialist who manufactured automobiles and created a philanthropic foundation (1877-1963)
+12152,Nullarbor_Plain,a vast arid plain of southern Australia stretching inland from the Great Australian Bight; has sparse vegetation and no surface water and is almost uninhabited; the site of a major rocket research center
+12153,Numbers Book_of_Numbers,the fourth book of the Old Testament; contains a record of the number of Israelites who followed Moses out of Egypt
+12154,Numenius genus_Numenius,curlews
+12155,Numida genus_Numida,guinea fowl
+12156,Numidia,an ancient kingdom (later a Roman province) in North Africa in an area corresponding roughly to present-day Algeria
+12157,Numidian,an inhabitant of ancient Numidia
+12158,Numididae subfamily_Numididae Numidinae subfamily_Numidinae,guinea fowl and related birds of Africa and Madagascar
+12159,Nummulitidae family_Nummulitidae,a family of fossil protoctists
+12160,Nunavut,an Arctic territory in northern Canada created in 1999 and governed solely by the Inuit; includes the eastern part of what was the Northwest Territories and most of the islands of the Arctic Archipelago; "Nunavut is the homeland of the Inuit people"
+12161,Nung,a branch of the Tai languages
+12162,Nuphar genus_Nuphar,spatterdocks
+12163,Nuptse,a mountain in the central Himalayas on the border of Tibet and Nepal (25,726 feet high)
+12164,Nuremberg Nurnberg,a city in southeastern Germany; site of Allied trials of Nazi war criminals (1945-46)
+12165,Nureyev Rudolf_Nureyev,Russian dancer who was often the partner of Dame Margot Fonteyn and who defected to the United States in 1961 (born in 1938)
+12166,Nusku,god of fire and light; corresponds to Babylonian Girru
+12167,Nut,Egyptian goddess of the sky
+12168,Nuttall_oak Nuttall's_oak Quercus_nuttalli,similar to the pin oak; grows in damp sites in Mississippi River basin
+12169,Nuytsia genus_Nuytsia,one species
+12170,Nyala,city in Sudan
+12171,Nyamuragira,an active volcano in eastern Congo
+12172,Nyamwezi,a Bantu language spoken in central Tanzania
+12173,Nyctaginaceae family_Nyctaginaceae Allioniaceae family_Allioniaceae four-o'clock_family,a family of flowering plants of the order Caryophyllales
+12174,Nyctaginia genus_Nyctaginia,a caryophyllaceous genus of the family Nyctaginaceae having only one species
+12175,Nyctanassa genus_Nyctanassa,American night herons
+12176,Nyctereutes genus_Nyctereutes,raccoon dogs
+12177,Nycticebus genus_Nycticebus,a genus of Lorisidae
+12178,Nycticorax genus_Nycticorax,Old World night herons
+12179,Nyctimene genus_Nyctimene,East Indian fruit bats
+12180,Nyiragongo,an active volcano in eastern Congo
+12181,Nymphaea genus_Nymphaea,the type genus of the family Nymphaeaceae; any of a variety of water lilies
+12182,Nymphaeaceae family_Nymphaeaceae water-lily_family,dicot aquatic plants
+12183,Nymphalidae family_Nymphalidae,large beautifully colored butterflies
+12184,Nymphalis genus_Nymphalis,type genus of the Nymphalidae: mourning cloak butterflies
+12185,Nymphicus genus_Nymphicus,a genus of Psittacidae
+12186,Nynorsk New_Norwegian Landsmal Landsmaal,one of two official languages of Norway; based on rural dialects
+12187,Nyquist_frequency,(telecommunication) twice the maximum frequency occurring in the transmitted signal
+12188,Nyquist_rate,(telecommunication) the lowest sampling rate that will permit accurate reconstruction of a sampled analog signal
+12189,Nyssa genus_Nyssa,tupelos: deciduous trees of moist habitats especially swamps and beside ponds
+12190,Nyssaceae family_Nyssaceae sour-gum_family tupelo_family,a family of dicotyledonous trees of order Myrtales that includes the sour gum trees
+12191,Nyx,(Greek mythology) Greek goddess of the night; daughter of Chaos; counterpart of Roman Nox
+12192,O o,the 15th letter of the Roman alphabet
+12193,O type_O group_O,the blood group whose red cells carry neither the A nor B antigens; "people with type O blood are universal donors"
+12194,O'Brien Edna_O'Brien,Irish writer (born in 1932)
+12195,O'Casey Sean_O'Casey,Irish playwright (1880-1964)
+12196,O'Connor Flannery_O'Connor Mary_Flannery_O'Connor,United States writer (1925-1964)
+12197,O'Flaherty Liam_O'Flaherty,Irish writer of short stories (1896-1984)
+12198,O'Hara John_Henry_O'Hara,United States writer (1905-1970)
+12199,O'Keeffe Georgia_Okeeffe,United States painter (1887-1986)
+12200,O'Neill Eugene_O'Neill Eugene_Gladstone_O'Neill,United States playwright (1888-1953)
+12201,O'Toole Peter_O'Toole Peter_Seamus_O'Toole,British actor (born in Ireland in 1932)
+12202,O.K. OK okay okey okeh,an endorsement; "they gave us the O.K. to go ahead"
+12203,OR_circuit OR_gate,a gate circuit in a computer that fires when any of its inputs fire
+12204,O_ring,a gasket consisting of a flat ring of rubber or plastic; used to seal a joint against high pressure
+12205,Oahu Oahu_Island,an island of central Hawaii (between Molokai and Kauai); the chief island of the state
+12206,Oak_Leaf_Cluster,a United States military decoration consisting of bronze or silver oak leaves and acorns awarded to anyone who has won a given medal before
+12207,Oakland,a city in western California on San Francisco Bay opposite San Francisco; primarily and industrial urban center
+12208,Oakley Annie_Oakley,United States sharpshooter who was featured in Buffalo Bill's Wild West Show (1860-1926)
+12209,Oates Joyce_Carol_Oates,United States writer (born in 1938)
+12210,Oates Titus_Oates,English conspirator who claimed that there was a Jesuit plot to assassinate Charles II (1649-1705)
+12211,Oaxaca Oaxaca_de_Juarez,a city of southeastern Mexico
+12212,Ob Ob_River,a major river of western Siberia; flows generally northward and westward to the Gulf of Ob and the Kara Sea
+12213,Obadiah Abdias,a Hebrew minor prophet
+12214,Obadiah Abdias Book_of_Obadiah,an Old Testament book telling Obadiah's prophecies; the shortest book in the Christian Bible
+12215,Obama Barack_Hussein_Obama,44th President of the United States; first African-American President
+12216,Oberson,(Middle Ages) the king of the fairies and husband of Titania in medieval folklore
+12217,Oblation religious_offering,the act of offering the bread and wine of the Eucharist
+12218,Occam William_of_Occam Ockham William_of_Ockham,English scholastic philosopher and assumed author of Occam's Razor (1285-1349)
+12219,Occam's_Razor Ockham's_Razor principle_of_parsimony law_of_parsimony,the principle that entities should not be multiplied needlessly; the simplest of two competing theories is to be preferred
+12220,Occidental,a native inhabitant of the Occident
+12221,Occidental,an artificial language
+12222,Occidentalism,the scholarly knowledge of western cultures and languages and people
+12223,Occupational_Safety_and_Health_Administration OSHA,a government agency in the Department of Labor to maintain a safe and healthy work environment
+12224,Oceania Oceanica,a large group of islands in the south Pacific including Melanesia and Micronesia and Polynesia (and sometimes Australasia and the Malay Archipelago)
+12225,Oceanic Eastern_Malayo-Polynesian,an eastern subfamily of Malayo-Polynesian languages
+12226,Oceanid,(Greek mythology) sea nymph who was a daughter of Oceanus and Tethys
+12227,Oceanites genus_Oceanites,a genus of Hydrobatidae
+12228,Oceanus,(Greek mythology) god of the stream that flowed around the earth in ancient mythology
+12229,Ochna genus_Ochna,type genus of Ochnaceae; evergreen trees and shrubs of Old World tropics
+12230,Ochnaceae family_Ochnaceae ochna_family,family of tropical evergreen trees and shrubs with thick shining parallel-veined leaves
+12231,Ochoa Severo_Ochoa,United States biochemist (born in Spain) who studied the biological synthesis of nucleic acids (1905-1993)
+12232,Ochotona genus_Ochotona,type genus of the Ochotonidae
+12233,Ochotonidae family_Ochotonidae,pikas and extinct forms
+12234,Ochroma genus_Ochroma,one species: balsa
+12235,Ochs Adolph_Simon_Ochs,United States newspaper publisher (1858-1935)
+12236,Ocimum genus_Ocimum,basil
+12237,Octans,the constellation that includes the southern celestial pole
+12238,October Oct,the month following September and preceding November
+12239,Octopoda order_Octopoda,octopuses and paper nautilus
+12240,Octopodidae family_Octopodidae,a family of Octopoda
+12241,Ocyurus genus_Ocyurus,snappers
+12242,Oder Oder_River,a European river; flows into the Baltic Sea
+12243,Odessa,a city in western Texas
+12244,Odessa Odesa,a port city of south central Ukraine on an arm of the Black Sea
+12245,Odets Clifford_Odets,United States playwright (1906-1963)
+12246,Odin,(Norse mythology) ruler of the Aesir; supreme god of war and poetry and knowledge and wisdom (for which he gave an eye) and husband of Frigg; identified with the Teutonic Wotan
+12247,Odoacer Odovacar Odovakar,Germanic barbarian leader who ended the Western Roman Empire in 476 and became the first barbarian ruler of Italy (434-493)
+12248,Odobenidae family_Odobenidae,walruses and extinct forms
+12249,Odobenus genus_Odobenus,type genus of the Odobenidae: walruses
+12250,Odocoileus genus_Odocoileus,North American deer
+12251,Odonata order_Odonata,dragonflies and damselflies
+12252,Odontoceti suborder_Odontoceti,toothed whales: dolphins; porpoises; sperm whales; beaked whales
+12253,Odontophorus genus_Odontophorus,genus of Central and South American crested partridges resembling quails; sometimes placed in a distinct subfamily or isolated in a distinct family
+12254,Odysseus,(Greek mythology) a famous mythical Greek hero; his return to Ithaca after the siege of Troy was described in the Odyssey
+12255,Odyssey,a Greek epic poem (attributed to Homer) describing the journey of Odysseus after the fall of Troy
+12256,Oecanthus genus_Oecanthus,tree crickets
+12257,Oedipus King_Oedipus Oedipus_Rex,(Greek mythology) a tragic king of Thebes who unknowingly killed his father Laius and married his mother Jocasta; the subject of the drama `Oedipus Rex' by Sophocles
+12258,Oedipus_complex Oedipal_complex,a complex of males; desire to possess the mother sexually and to exclude the father; said to be a source of personality disorders if unresolved
+12259,Oedogoniaceae family_Oedogoniaceae,filamentous green algae
+12260,Oedogoniales order_oedogoniales,simple or branched filamentous freshwater green algae
+12261,Oedogonium genus_Oedogonium,type genus of Oedogoniaceae; freshwater green algae having long unbranched filaments; usually free-floating when mature
+12262,Oenanthe genus_Oenanthe,poisonous herbs: water dropworts
+12263,Oenanthe genus_Oenanthe,wheatears
+12264,Oenothera genus_Oenothera,chiefly North American herbs with usually nocturnal flowers
+12265,Oersted Hans_Christian_Oersted,Danish physicist (1777-1851)
+12266,Oestridae family_Oestridae Hypodermatidae family_Hypodermatidae,warble flies
+12267,Oestrus genus_Oestrus,type genus of the Oestridae: sheep botflies
+12268,Offenbach Jacques_Offenbach,French composer of many operettas and an opera (1819-1880)
+12269,Offertory,the part of the Eucharist when bread and wine are offered to God
+12270,Office_of_Inspector_General OIG,the investigative arm of the Federal Trade Commission
+12271,Office_of_Intelligence_Support OIS,agency that oversees the intelligence relationships of the Treasury's offices and bureaus and provides a link between the Intelligence Community and officials responsible for international economic policy
+12272,Office_of_Management_and_Budget OMB,the executive agency that advises the President on the federal budget
+12273,Office_of_Naval_Intelligence ONI,the military intelligence agency that provides for the intelligence and counterintelligence and investigative and security requirements of the United States Navy
+12274,Office_of_the_Dead,an office read or sung before a burial mass in the Roman Catholic Church
+12275,Ofo,a member of the Siouan people living in the Yazoo river valley in Mississippi
+12276,Ofo,a Siouan language spoken by the Ofo
+12277,Ogcocephalidae family_Ogcocephalidae,batfishes: sluggish bottom-dwelling spiny fishes
+12278,Ogden,a town in northern Utah settled by Mormons
+12279,Ogden C._K._Ogden Charles_Kay_Ogden,English psychologist who collaborated with I. A. Richards in designing Basic English (1889-1957)
+12280,Oglala Ogalala,a member of the Siouan people who constituted a division of the Teton Sioux and who formerly inhabited the Black Hills of western South Dakota
+12281,Oglala Ogalala,a Siouan language spoken by the Oglala
+12282,Ohio Buckeye_State OH,a midwestern state in north central United States in the Great Lakes region
+12283,Ohio Ohio_River,a river that is formed in western Pennsylvania and flows westward to become a tributary of the Mississippi River
+12284,Ohio_State_University,a university in Columbus, Ohio
+12285,Ohio_buckeye,a buckeye with scaly grey bark that is found in the central United States
+12286,Ohio_goldenrod,a variety of goldenrod
+12287,Ohioan Buckeye,a native or resident of Ohio
+12288,Ohm Georg_Simon_Ohm,German physicist who formulated Ohm's law (1787-1854)
+12289,Ohm's_law,electric current is directly proportional to voltage and inversely proportional to resistance; I = E/R
+12290,Oireachtas,the parliament of the Irish Republic
+12291,Ojibwa Ojibway Chippewa,a member of an Algonquian people who lived west of Lake Superior
+12292,Ojibwa Ojibway Chippewa,the Algonquian language spoken by the Ojibwa
+12293,Ojos_del_Salado,a mountain in the Andes on the border between Argentina and Chile (22,572 feet high)
+12294,Okapia genus_Okapia,okapis
+12295,Okeechobee Lake_Okeechobee,a lake in southeast Florida to the north of the Everglades
+12296,Okefenokee_Swamp,a large swampy area of northeast Florida and southeast Georgia
+12297,Oken Lorenz_Oken Okenfuss Lorenz_Okenfuss,German naturalist whose speculations that plants and animals are made up of tiny living `infusoria' led to the cell theory (1779-1851)
+12298,Okinawa,the largest island of the central Ryukyu Islands
+12299,Okinawa Okinawa_campaign,a campaign in the closing days of World War II in the Pacific (April to June 1945); in savage close-quarter fighting United States marines and regular army troops took the island from the Japanese; considered the greatest victory of the Pacific campaign for the Americans
+12300,Oklahoma Sooner_State OK Okla.,a state in south central United States
+12301,Oklahoma_City capital_of_Oklahoma,capital and largest city of Oklahoma; the economy is based on oil and livestock
+12302,Oklahoman Sooner,a native or resident of Oklahoma
+12303,Oktoberfest,an autumn festival that involves merrymaking and drinking beer
+12304,Oktoberfest Octoberfest,a strong lager made originally in Germany for the Oktoberfest celebration; sweet and copper-colored
+12305,Olaf_II Olav_II Saint_Olaf Saint_Olav St._Olaf St._Olav,King and patron saint of Norway (995-1030)
+12306,Old_Bailey,the central criminal court in London
+12307,Old_Catholic,a member of the church formed in the 19th century by German Catholics who refused to accept the infallibility of the Pope
+12308,Old_Catholic_Church,Catholic churches that broke away from the Roman Catholic Church in the 18th century
+12309,Old_Church_Slavonic Old_Church_Slavic Church_Slavic Old_Bulgarian,the Slavic language into which the Bible was translated in the 9th century
+12310,Old_English Anglo-Saxon,English prior to about 1100
+12311,Old_English_sheepdog bobtail,large sheepdog with a profuse shaggy bluish-grey-and-white coat and short tail; believed to trace back to the Roman occupation of Britain
+12312,Old_Faithful,a geyser in Yellowstone National Park that erupts for about 4 minutes about every 65 minutes
+12313,Old_French,the earliest form of the French language; 9th to 15th century
+12314,Old_Frisian,the Frisian language until the 16th century; the Germanic language of ancient Frisia
+12315,Old_High_German,High German prior to 1200
+12316,Old_Icelandic,the extinct dialect of Old Norse that was spoken in Iceland up until about 1600
+12317,Old_Irish,Irish Gaelic up to about 1100
+12318,Old_Italian,the Italian language up to the middle of the 16th century
+12319,Old_Latin,the oldest recorded Latin (dating back at early as the 6th century B.C.)
+12320,Old_Norse,the extinct Germanic language of medieval Scandinavia and Iceland from about to 700 to 1350
+12321,Old_Prussian,a dead language of the (non-German) Prussians (extinct after 1700); thought to belong to the Baltic branch of Indo-European
+12322,Old_Saxon,Low German prior to 1200
+12323,Old_South,the South of the United States before the American Civil War
+12324,Old_Testament,the collection of books comprising the sacred scripture of the Hebrews and recording their history as the chosen people; the first half of the Christian Bible
+12325,Old_World,the regions of the world that were known to Europeans before the discovery of the Americas
+12326,Old_World_beaver Castor_fiber,a European variety of beaver
+12327,Old_World_buffalo buffalo,any of several Old World animals resembling oxen including, e.g., water buffalo; Cape buffalo
+12328,Old_World_chat chat,songbirds having a chattering call
+12329,Old_World_coot Fulica_atra,a coot found in Eurasia
+12330,Old_World_crayfish ecrevisse,small crayfish of Europe and Asia and western North America
+12331,Old_World_flycatcher true_flycatcher flycatcher,any of a large group of small songbirds that feed on insects taken on the wing
+12332,Old_World_hop_hornbeam Ostrya_carpinifolia,medium-sized hop hornbeam of southern Europe and Asia Minor
+12333,Old_World_jay,a European jay
+12334,Old_World_least_weasel Mustela_nivalis,of Europe
+12335,Old_World_monkey catarrhine,of Africa or Arabia or Asia; having nonprehensile tails and nostrils close together
+12336,Old_World_oriole oriole,mostly tropical songbird; the male is usually bright orange and black
+12337,Old_World_porcupine,terrestrial porcupine
+12338,Old_World_quail,small game bird with a rounded body and small tail
+12339,Old_World_scops_owl Otus_scops,European scops owl
+12340,Old_World_vulture,any of several large vultures of Africa and Eurasia
+12341,Old_World_warbler true_warbler,small active brownish or greyish Old World birds
+12342,Old_World_yew English_yew Taxus_baccata,predominant yew in Europe; extraordinarily long-lived and slow growing; one of the oldest species in the world
+12343,Old_world_white_pelican Pelecanus_onocrotalus,similar to American white pelican
+12344,Oldenburg Claes_Oldenburg Claes_Thure_Oldenburg,United States sculptor (born in Sweden); a leader of the pop art movement who was noted for giant sculptures of common objects (born in 1929)
+12345,Oldfield Barney_Oldfield Berna_Eli_Oldfield,United States race driver who was the first to drive faster than a mile a minute (1878-1946)
+12346,Olduvai_Gorge,a gorge in northeastern Tanzania where anthropologists have found some of the earliest human remains
+12347,Olea genus_Olea,evergreen trees and shrubs having oily one-seeded fruits
+12348,Oleaceae family_Oleaceae olive_family,trees and shrubs having berries or drupes or capsules as fruits; sometimes placed in the order Oleales: olive; ash; jasmine; privet; lilac
+12349,Oleales order_Oleales,coextensive with the family Oleaceae; in some classifications included in the order Gentianales
+12350,Oleandra genus_Oleandra,or family Polypodiaceae: tropical epiphytic or terrestrial ferns
+12351,Oleandraceae family_Oleandraceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems
+12352,Olearia genus_Olearia,large genus of Australian evergreen shrubs or small trees with large daisylike flowers
+12353,Olfersia genus_Olfersia,genus of fern having only one species
+12354,Oligocene Oligocene_epoch,from 40 million to 25 million years ago; appearance of sabertoothed cats
+12355,Oligochaeta class_Oligochaeta,earthworms
+12356,Oligoplites genus_Oligoplites,leatherjackets
+12357,Oligoporus genus_Oligoporus,a genus of fungi belonging to the family Polyporaceae
+12358,Oligoporus_leucospongia,a pore fungus with a whitish cottony soft cap found on conifer logs in forests at high elevation in the western United States and adjacent Canada
+12359,Oliver Joseph_Oliver King_Oliver,United States jazz musician who influenced the style of Louis Armstrong (1885-1938)
+12360,Olivier Laurence_Olivier Sir_Laurence_Kerr_Olivier Baron_Olivier_of_Birghton,English actor best know for his Shakespearean roles (1907-1989)
+12361,Ollari,a Dravidian language spoken in south central India
+12362,Olmec,a member of an early Mesoamerican civilization centered around Veracruz that flourished between 1300 and 400 BC
+12363,Olmsted Frederick_Law_Olmsted,United States landscape architect primarily responsible for the design of Central Park in New York City (1822-1903)
+12364,Olympia,a plain in Greece in the northwestern Peloponnese; the chief sanctuary of Zeus and the site of the original Olympian Games
+12365,Olympia capital_of_Washington,capital of the state of Washington; located in western Washington on Puget Sound
+12366,Olympiad,one of the four-year intervals between Olympic Games; used to reckon time in ancient Greece for twelve centuries beginning in 776 BC
+12367,Olympian,an athlete who participates in the Olympic games
+12368,Olympian Olympic_god,a classical Greek god after the overthrow of the Titans
+12369,Olympian_Games Olympic_Games,the ancient Panhellenic celebration at Olympia in honor of Zeus; held every 4 years beginning in 776 BC
+12370,Olympian_Zeus,a seated statue of the supreme god of ancient Greek mythology created for the temple at Olympia; the statue was 40 feet tall and rested on a base that was 12 feet high
+12371,Olympic_Games Olympics Olympiad,the modern revival of the ancient games held once every 4 years in a selected country
+12372,Olympic_National_Park,a national park in Washington having rain forests of giant evergreens
+12373,Olympus Mount_Olympus Mt._Olympus Olimbos,a mountain peak in northeast Greece near the Aegean coast; believed by ancient Greeks to be the dwelling place of the gods (9,570 feet high)
+12374,Omaha,largest city in Nebraska; located in eastern Nebraska on the Missouri river; a major transportation center of the Midwest
+12375,Omaha,the Dhegiha dialect spoken by the Omaha
+12376,Omaha,thoroughbred that won the triple crown in 1935
+12377,Omaha Maha,a member of the Siouan people formerly living in the Missouri river valley in northeastern Nebraska
+12378,Oman Sultanate_of_Oman Muscat_and_Oman,a strategically located monarchy on the southern and eastern coasts of the Arabian Peninsula; the economy is dominated by oil
+12379,Omani,a native or inhabitant of Oman
+12380,Omani_monetary_unit,monetary unit in Oman
+12381,Omar_Khayyam,Persian poet and mathematician and astronomer whose poetry was popularized by Edward Fitzgerald's translation (1050-1123)
+12382,Omdurman,a city of Sudan; located in the central Sudan on the White Nile opposite Khartoum
+12383,Omdurman battle_of_Omdurman,a battle (1898) in which an English and Egyptian army under Kitchener defeated the Sudanese
+12384,Omega_Centauri,a global cluster in the constellation Centaurus
+12385,Omiya,a city of east central Honshu; a suburb of Tokyo
+12386,Omomyid Omomyid_group,extinct tiny nocturnal lower primates that fed on fruit and insects; abundant in North America and Europe 30 to 50 million years ago; probably gave rise to the tarsiers; some authorities consider them ancestral to anthropoids but others consider them only cousins
+12387,Omotic,a group of related languages spoken in a valley of southern Ethiopia; closely related to Cushitic languages
+12388,Omphalotus genus_Omphalotus,a genus of fungi with a depressed disc in the cap
+12389,Omsk,a city in the Asian part of Russia
+12390,Onagraceae family_Onagraceae evening-primrose_family,a large and widely distributed family of plants of the order Myrtales
+12391,Oncorhynchus genus_Oncorhynchus,Pacific salmon including sockeye salmon; chinook salmon; chum salmon; coho salmon
+12392,Ondaatje Michael_Ondaatje Philip_Michael_Ondaatje,Canadian writer (born in Sri Lanka in 1943)
+12393,Ondatra genus_Ondatra,muskrats
+12394,Oneida,a member of the Iroquoian people formerly living east of Lake Ontario
+12395,Oneida,the Iroquoian language spoken by the Oneida
+12396,Oniscidae family_Oniscidae,a family of Isopoda
+12397,Oniscus genus_Oniscus,type genus of the Oniscidae; woodlice that cannot roll into a ball
+12398,Ono Yoko_Ono,United States musician (born in Japan) who married John Lennon and collaborated with him on recordings (born in 1933)
+12399,Onobrychis genus_Onobrychis,genus of Old World herbs having pinnate leaves and pink or whites racemose flowers followed by flat unjointed pods
+12400,Onoclea genus_Onoclea,one species: sensitive fern; in some classifications included in Polypodiaceae
+12401,Onondaga,a member of the Iroquoian people formerly living between Lake Champlain and the Saint Lawrence River
+12402,Onondaga,the Iroquoian language spoken by the Onondaga
+12403,Ononis genus_Ononis,genus of European subshrubs or herbs having pink or purple or yellow solitary or clustered flowers: restharrow
+12404,Onopordum genus_Onopordum Onopordon genus_Onopordon,a genus of Eurasian herbs of the family Compositae with prickly foliage and large purplish flowers
+12405,Onosmodium genus_Onosmodium,a genus of North American perennial herbs of the family Boraginaceae
+12406,Onsager Lars_Onsager,United States chemist (born in Norway) noted for his work in thermodynamics (1903-1976)
+12407,Ontario,a prosperous and industrialized province in central Canada
+12408,Onychium genus_Onychium,small terrestrial ferns of Old World tropics and subtropics: clawed ferns; sometimes placed in family Cryptogrammataceae
+12409,Onychogalea genus_Onychogalea,a genus of Macropodidae
+12410,Onychomys genus_Onychomys,grasshopper mice
+12411,Onychophora class_Onychophora,enigmatic small elongated wormlike terrestrial invertebrates of damp dark habitats in warm regions; distinct from the phylum Annelida; resemble slugs with legs and are sometimes described as the missing link between arthropods and annelids
+12412,Oomycetes class_Oomycetes,nonphotosynthetic fungi that resemble algae and that reproduce by forming oospores; sometimes classified as protoctists
+12413,Oort Jan_Hendrix_Oort,Dutch astronomer who proved that the galaxy is rotating and proposed the existence of the Oort cloud (1900-1992)
+12414,Oort_cloud,(astronomy) a hypothetical huge collection of comets orbiting the sun far beyond the orbit of Pluto; perturbations (as by other stars) can upset a comet's orbit and may send it tumbling toward the sun
+12415,Opel Wilhelm_von_Opel,German industrialist who was the first in Germany to use an assembly line in manufacturing automobiles (1871-1948)
+12416,Open_University,a British university that is open to people without formal academic qualifications and where teaching is by correspondence or broadcasting or summer school
+12417,Opera,a commercial browser
+12418,Operation_Desert_Storm,the United States and its allies defeated Iraq in a ground war that lasted 100 hours (1991)
+12419,Opheodrys genus_Opheodrys,North American green snakes
+12420,Ophidiidae family_Ophidiidae,eellike marine fishes
+12421,Ophiodon genus_Ophiodon,a genus of Ophiodontidae
+12422,Ophiodontidae family_Ophiodontidae,fishes closely related to greenlings
+12423,Ophioglossaceae family_Ophioglossaceae,a family of succulent ferns of order Ophioglossales; cosmopolitan in distribution
+12424,Ophioglossales order_Ophioglossales,coextensive with the family Ophioglossaceae
+12425,Ophioglossum genus_Ophioglossum,the type genus of the fern family Ophioglossaceae
+12426,Ophiophagus genus_Ophiophagus,king cobra
+12427,Ophisaurus genus_Ophisaurus,glass lizards
+12428,Ophiuchus,a large constellation in the equatorial region between Hercules and Scorpius
+12429,Ophiurida subclass_Ophiurida,brittle stars
+12430,Ophiuroidea class_Ophiuroidea,brittle stars and basket stars
+12431,Ophrys genus_Ophrys,a hardy genus of terrestrial orchids of Europe and northern Africa and western Asia
+12432,Opisthobranchia subclass_Opisthobranchia,gastropods having the gills when present posterior to the heart and having no operculum: includes sea slugs; sea butterflies; sea hares
+12433,Opisthocomidae family_Opisthocomidae,comprising the hoatzins
+12434,Opisthocomus genus_Opisthocomus,type genus of the Opisthocomidae: hoatzins
+12435,Opisthognathidae family_Opisthognathidae,jawfishes
+12436,Oppenheimer Robert_Oppenheimer,United States physicist who directed the project at Los Alamos that developed the first atomic bomb (1904-1967)
+12437,Opposition,the major political party opposed to the party in office and prepared to replace it if elected; "Her Majesty's loyal opposition"
+12438,Ops,(Roman mythology) goddess of abundance and fertility; wife of Saturn; counterpart of Greek Rhea and Cybele of ancient Asia Minor
+12439,Optez,an artificial language
+12440,Opuntia genus_Opuntia,large genus of cactuses native to America: prickly pears
+12441,Opuntiales order_Opuntiales,coextensive with the family Cactaceae: cactuses
+12442,Oran,a port city in northwestern Algeria and the country's 2nd largest city
+12443,Orange Orange_River,a river in South Africa that flows generally westward to the Atlantic Ocean
+12444,Orange_Group OV,a terrorist group of Protestants who oppose any political settlement with Irish nationalists; a paramilitary group that attacks Catholic interests in Northern Ireland
+12445,Orange_Order Association_of_Orangemen,a Protestant political organization in Northern Ireland
+12446,Orangeman,a member of a society founded in Ireland in 1795 to uphold Protestantism and the British sovereign
+12447,Orbignya genus_Orbignya,palms of southern Mexico to northern South America: babassu palm
+12448,Orbison Roy_Orbison,United States composer and rockabilly tenor popular in the 1950s (1936-1988)
+12449,Orchestia genus_Orchestia,type genus of the family Orchestiidae
+12450,Orchestiidae family_Orchestiidae,beach fleas
+12451,Orchidaceae family_Orchidaceae orchid_family,enormous cosmopolitan family of perennial terrestrial or epiphytic plants with fleshy tubers or rootstocks and unusual flowers
+12452,Orchidales order_Orchidales,order of plants with irregular flowers having minute seeds: Orchidaceae; Burmanniaceae
+12453,Orcinus genus_Orcinus,killer whales
+12454,Orczy Baroness_Emmusca_Orczy,British writer (born in Hungary) (1865-1947)
+12455,Ord_kangaroo_rat Dipodomys_ordi,most widely distributed kangaroo rat: plains and mountain areas of central and western United States
+12456,Order_of_the_Purple_Heart Purple_Heart,a United States military decoration awarded to any member of the armed forces who is wounded in action
+12457,Ordnance_Survey,the official cartography agency of the British government
+12458,Ordovician Ordovician_period,from 500 million to 425 million years ago; conodonts and ostracods and algae and seaweeds
+12459,Oread,(Greek mythology) one of the mountain nymphs
+12460,Oreamnos genus_Oreamnos,mountain goats
+12461,Orectolobidae family_Orectolobidae,nurse sharks and carpet sharks
+12462,Orectolobus genus_Orectolobus,carpet sharks
+12463,Oregon Beaver_State OR Ore.,a state in northwestern United States on the Pacific
+12464,Oregon_ash Fraxinus_latifolia Fraxinus_oregona,timber tree of western North America yielding hard light wood; closely related to the red ash
+12465,Oregon_cedar Port_Orford_cedar Lawson's_cypress Lawson's_cedar Chamaecyparis_lawsoniana,large timber tree of western North America with trunk diameter to 12 feet and height to 200 feet
+12466,Oregon_crab_apple Malus_fusca,small tree or shrub of western United States having white blossoms and tiny yellow or red fruit
+12467,Oregon_grape Mahonia_nervosa,small shrub with grey-green leaves and yellow flowers followed by glaucous blue berries
+12468,Oregon_grape Oregon_holly_grape hollygrape mountain_grape holly-leaves_barberry Mahonia_aquifolium,ornamental evergreen shrub of Pacific coast of North America having dark green pinnate leaves and racemes of yellow flowers followed by blue-black berries
+12469,Oregon_maple big-leaf_maple Acer_macrophyllum,maple of western North America having large 5-lobed leaves orange in autumn
+12470,Oregon_white_oak Oregon_oak Garry_oak Quercus_garryana,small deciduous tree of western North America with crooked branches and pale grey bark
+12471,Oregonian Beaver,a native or resident of Oregon
+12472,Oreopteris genus_Oreopteris,3 species of ferns formerly included in genus Dryopteris or Thelypteris
+12473,Oreortyx genus_Oreortyx,mountain quail of western United States
+12474,Orestes,(Greek mythology) the son of Agamemnon and Clytemnestra; his sister Electra persuaded him to avenge Agamemnon's death by killing Clytemnestra and Aegisthus
+12475,Orff Carl_Orff,German musician who developed a widely used system for teaching music to children (1895-1982)
+12476,Organization_for_the_Prohibition_of_Chemical_Weapons OPCW,international organization for chemical disarmament; administers the Chemical Weapons Convention
+12477,Organization_of_American_States OAS,an association including most countries in the western hemisphere; created in 1948 to promote military and economic and social and cultural cooperation
+12478,Organization_of_Petroleum-Exporting_Countries OPEC,an organization of countries formed in 1961 to agree on a common policy for the production and sale of petroleum
+12479,Oriental_arborvitae Thuja_orientalis Platycladus_orientalis,Asiatic shrub or small tree widely planted in United States and Europe; in some classifications assigned to its own genus
+12480,Oriental_beetle Asiatic_beetle Anomala_orientalis,introduced into United States from the Orient; larvae feed on roots of sugarcane and other grasses
+12481,Oriental_scops_owl Otus_sunia,Asian scops owl
+12482,Orientalism Oriental_Studies,the scholarly knowledge of Asian cultures and languages and people
+12483,Origen,Greek philosopher and theologian who reinterpreted Christian doctrine through the philosophy of Neoplatonism; his work was later condemned as unorthodox (185-254)
+12484,Orinoco Orinoco_River,a South American river 1,500 miles long; flows into the South Atlantic
+12485,Oriolidae family_Oriolidae,Old World orioles
+12486,Oriolus genus_Oriolus,type genus of the Oriolidae
+12487,Orion,(Greek mythology) a giant Boeotian hunter who pursued the Pleiades and was eventually slain by Artemis; was then placed in the sky as a constellation
+12488,Orion Hunter,a constellation on the equator to the east of Taurus; contains Betelgeuse and Rigel
+12489,Orissa,state in eastern India on the Bay of Bengal
+12490,Orites genus_Orites,small genus of Australian shrubs or trees
+12491,Oriya,a member of a people in India living in Orissa and neighboring areas
+12492,Oriya,a Magadhan language that is spoken by the Oriya and is the official language of the Indian state of Orissa
+12493,Orizaba,a city of east central Mexico (west of Veracruz); a popular resort
+12494,Orkney_Islands,an archipelago of about 70 islands in the North Atlantic and North Sea off the northeastern coast of Scotland
+12495,Orlando,a city in central Florida; site of Walt Disney World
+12496,Orleanais,a former province of north central France; centered around Orleans
+12497,Orleanism,the political philosophy of the Orleanists
+12498,Orleanist,a supporter of the Orleans branch of the Bourbons that was descended from a younger brother of Louis XIV
+12499,Orleans,a city on the Loire river in north central France; site of the siege of Orleans by the English (1428-1429)
+12500,Orleans siege_of_Orleans,a long siege of Orleans by the English was relieved by Joan of Arc in 1429
+12501,Orlon,an acrylic fiber or the lightweight crease-resistant fabric made with Orlon yarns
+12502,Orly,a southeastern suburb of Paris; site of an international airport serving Paris
+12503,Ormandy Eugene_Ormandy,United States conductor (born in Hungary) (1899-1985)
+12504,Ormazd Ormuzd Ahura_Mazda,chief deity of Zoroastrianism; source of light and embodiment of good
+12505,Ormosia genus_Ormosia,genus of tropical shrubs and trees having usually odd-pinnate leaves with large leaflets and pink to reddish wood
+12506,Ornithischia order_Ornithischia,extinct terrestrial reptiles having bird-like pelvises: armored dinosaurs (thyreophorans); boneheaded and horned dinosaurs (marginocephalians); duck-billed dinosaurs (euronithopods)
+12507,Ornithogalum genus_Ornithogalum,sometimes placed in family Hyacinthaceae
+12508,Ornithomimida suborder_Ornithomimida,lightly built medium-size theropods
+12509,Ornithorhynchidae family_Ornithorhynchidae,platypus
+12510,Ornithorhynchus genus_Ornithorhynchus,type genus of the family Ornithorhynchidae
+12511,Orobanchaceae family_Orobanchaceae broomrape_family,brown or yellow leafless herbs; sometimes placed in the order Scrophulariales
+12512,Orono,a university town in east central Maine on the Penobscot River to the north of Bangor
+12513,Orontium genus_Orontium,one species of aquatic plant: golden club
+12514,Orozco Jose_Orozco Jose_Clemente_Orozco,Mexican painter noted for his monumental murals (1883-1949)
+12515,Orpheus,(Greek mythology) a great musician; when his wife Eurydice died he went to Hades to get her back but failed
+12516,Orpington,English breed of large chickens with white skin
+12517,Orr Bobby_Orr Robert_Orr,Canadian hockey player (born 1948)
+12518,Ortalis genus_Ortalis,chachalacas
+12519,Ortega Daniel_Ortega Daniel_Ortega_Saavedra,Nicaraguan statesman (born in 1945)
+12520,Ortega_y_Gasset Jose_Ortega_y_Gasset,Spanish philosopher who advocated leadership by an intellectual elite (1883-1955)
+12521,Orthilia genus_Orthilia,a shrubby perennial rhizomatous evergreen herb; grows in damp coniferous woodlands in northern temperate regions
+12522,Orthodox_Church Orthodox_Catholic_Church Eastern_Orthodox_Church Eastern_Church Eastern_Orthodox,derived from the Byzantine Church and adhering to Byzantine rites
+12523,Orthodox_Jew,Jew who practices strict observance of Mosaic law
+12524,Orthodox_Judaism,beliefs and practices of a Judaic sect that strictly observes Mosaic law
+12525,Orthodox_Judaism Jewish_Orthodoxy,Jews who strictly observe the Mosaic law as interpreted in the Talmud
+12526,Orthopristis genus_Orthopristis,a genus of Haemulidae
+12527,Orthoptera order_Orthoptera,grasshoppers and locusts; crickets
+12528,Orthotomus genus_Orthotomus,tailorbirds
+12529,Orwell George_Orwell Eric_Blair Eric_Arthur_Blair,imaginative British writer concerned with social justice (1903-1950)
+12530,Orycteropodidae family_Orycteropodidae,aardvarks
+12531,Orycteropus genus_Orycteropus,coextensive with the family Orycteropodidae
+12532,Oryctolagus genus_Oryctolagus,Old World rabbits
+12533,Oryza genus_Oryza,rice
+12534,Oryzomys genus_Oryzomys,rice rats
+12535,Oryzopsis genus_Oryzopsis,rice grass
+12536,Osage,a member of the Siouan people formerly living in Missouri in the valleys of the Missouri and Osage rivers; oil was found on Osage lands early in the 20th century
+12537,Osage,the Dhegiha dialect spoken by the Osage
+12538,Osage Osage_River,a river in Missouri that is a tributary of the Missouri River
+12539,Osaka,port city on southern Honshu on Osaka Bay; a commercial and industrial center of Japan
+12540,Osaka_Bay,a bay of the western Pacific in southern Honshu
+12541,Osasco,a city in southeastern Brazil; suburb of Sao Paulo
+12542,Osborne John_Osborne John_James_Osborne,English playwright (1929-1994)
+12543,Oscan,an Oscan-speaking member of an ancient people of Campania
+12544,Oscan,an extinct Italic language of ancient southern Italy
+12545,Oscillatoriaceae family_Oscillatoriaceae,blue green algae
+12546,Oscines suborder_Oscines Passeres suborder_Passeres,two names for the suborder of typical songbirds
+12547,Osco-Umbrian,a group of dead languages of ancient Italy; they were displace by Latin
+12548,Osiris,Egyptian god of the underworld and judge of the dead; husband and brother of Isis; father of Horus
+12549,Oslo Christiania capital_of_Norway,the capital and largest city of Norway; the country's main port; located at the head of a fjord on Norway's southern coast
+12550,Osman_I Othman_I,the conqueror of Turkey who founded the Ottoman Empire and the Ottoman dynasty that ruled Turkey after the 13th century; conquered most of Asia Minor and assumed the title of emir in 1299 (1259-1326)
+12551,Osmanthus genus_Osmanthus,widely distributed genus of evergreen shrubs or trees of southern United States and Middle East and China and Japan
+12552,Osmeridae family_Osmeridae,smelts
+12553,Osmerus genus_Osmerus,type genus of the Osmeridae
+12554,Osmundaceae family_Osmundaceae,large family of ferns widely distributed in temperate and tropical areas
+12555,Ossete,a northeastern Iranian language spoken in Russia
+12556,Ostariophysi order_Ostariophysi,in some classifications considered a superorder comprising the Cypriniformes and the Siluriformes
+12557,Osteichthyes class_Osteichthyes,a class of fish having a skeleton composed of bone in addition to cartilage
+12558,Osteoglossidae family_Osteoglossidae,a family of large fishes that live in freshwater; includes bandfish and bonytongues
+12559,Osteoglossiformes Order_Osteoglossiformes,teleost fish with bony tongues
+12560,Osteostraci suborder_Osteostraci Cephalaspida suborder_Cephalaspida,extinct group of armored fish-like vertebrates; taxonomy is not clear
+12561,Ostraciidae family_Ostraciidae family_Ostraciontidae,boxfishes
+12562,Ostracoda subclass_Ostracoda,seed shrimps
+12563,Ostracodermi order_Ostracodermi,extinct group of armored jawless vertebrates; taxonomy is not clear
+12564,Ostrava,an industrial city in northwestern Czech Republic in the Moravian lowlands; located in the coal mining area of Silesia
+12565,Ostrea genus_Ostrea,type genus of the family Ostreidae
+12566,Ostreidae family_Ostreidae,oysters
+12567,Ostrogoth,a member of the eastern group of Goths who created a kingdom in northern Italy around 500 AD
+12568,Ostrya genus_Ostrya,deciduous monoecious trees of Europe and Asia and America; sometimes placed in subfamily or family Carpinaceae
+12569,Ostryopsis genus_Ostryopsis,deciduous monoecious shrubs of China and Mongolia resembling trees of the genus Ostrya; sometimes placed in subfamily or family Carpinaceae
+12570,Ostwald Wilhelm_Ostwald,German chemist (1853-1932)
+12571,Ostyak Khanty,a member of the nomadic Ugrian people living in northwestern Siberia (east of the Urals)
+12572,Oswald Lee_Harvey_Oswald,United States assassin of President John F. Kennedy (1939-1963)
+12573,Otaheite_arrowroot Otaheite_arrowroot_starch,a starch obtained from the root of the pia
+12574,Otaria genus_Otaria,type genus of the Otariidae
+12575,Otariidae family_Otariidae,eared seals: sea lions and fur seals
+12576,Othello,the hero of William Shakespeare's tragedy who would not trust his wife
+12577,Otides suborder_Otides,terrestrial game birds of the Old World and Australia: bustards
+12578,Otididae family_Otididae,bustards
+12579,Otis Elisha_Graves_Otis,United States inventor who manufactured the first elevator with a safety device (1811-1861)
+12580,Otis genus_Otis,type genus of the Otididae: European bustard
+12581,Oto Otoe,a member of the Siouan people inhabiting the valleys of the Platte and Missouri rivers in Nebraska
+12582,Oto Otoe,a dialect of the Chiwere language spoken by the Oto
+12583,Ottawa,a member of the Algonquian people of southern Ontario
+12584,Ottawa Canadian_capital capital_of_Canada,the capital of Canada (located in southeastern Ontario across the Ottawa river from Quebec)
+12585,Otto_I Otho_I Otto_the_Great,King of the Germans and Holy Roman Emperor (912-973)
+12586,Ottoman Ottoman_Turk Osmanli,a Turk (especially a Turk who is a member of the tribe of Osman I)
+12587,Ottoman Ottoman_dynasty,the Turkish dynasty that ruled the Ottoman Empire from the 13th century to its dissolution after World War I
+12588,Ottoman_Empire Turkish_Empire,a Turkish sultanate of southwestern Asia and northeastern Africa and southeastern Europe; created by the Ottoman Turks in the 13th century and lasted until the end of World War I; although initially small it expanded until it superseded the Byzantine Empire
+12589,Ottumwa,a town in southeast Iowa
+12590,Otus genus_Otus,a genus of Strigidae
+12591,Ouachita Ouachita_River,a river that rises in western Arkansas and flows southeast into eastern Louisiana to become a tributary of the Red River
+12592,Ouija Ouija_board,a board with the alphabet on it; used with a planchette to spell out supernatural messages
+12593,Oujda,a city in northeastern Morocco near the Algerian border
+12594,Our_Lord's_candle Yucca_whipplei,yucca of southwestern United States and Mexico with a tall spike of creamy white flowers
+12595,Ouranopithecus genus_Ouranopithecus,a genus of Hominidae
+12596,Ouranos Uranus,(Greek mythology) god of the heavens; son and husband of Gaea and father of the Titans in ancient mythology
+12597,Ouse Ouse_River,a river in northeastern England that flows generally southeastward to join the Trent River and form the Humber
+12598,Outaouais Ottawa Ottawa_river,a river in southeastern Canada that flows along the boundary between Quebec and Ontario to the Saint Lawrence River near Montreal
+12599,Outer_Hebrides,a 130-mile long archipelago to the northwest of Scotland
+12600,Oval_Office,the office of the President of the United States in the White House
+12601,Ovalipes genus_Ovalipes,a genus of Portunidae
+12602,Oven_Stuffer Oven_Stuffer_Roaster,a brand name for a roasting chicken
+12603,Ovibos genus_Ovibos,consisting of the musk-ox
+12604,Ovid Publius_Ovidius_Naso,Roman poet remembered for his elegiac verses on love (43 BC - AD 17)
+12605,Oviedo,a city in northwestern Spain near the Cantabrian Mountains
+12606,Ovis genus_Ovis,sheep
+12607,Ovocon,trade name for an oral contraceptive containing estradiol and norethindrone
+12608,Ovral,trade name for an oral contraceptive containing estradiol and norgestrel
+12609,Ovrette,trade name for an oral contraceptive containing norgestrel
+12610,Ovulen,trade name for an oral contraceptive containing mestranol and a progestin compound
+12611,Owen Robert_Owen,Welsh industrialist and social reformer who founded cooperative communities (1771-1858)
+12612,Owen Sir_Richard_Owen,English comparative anatomist and paleontologist who was an opponent of Darwinism (1804-1892)
+12613,Owens Jesse_Owens James_Cleveland_Owens,United States athlete and Black American whose success in the 1936 Olympic Games in Berlin outraged Hitler (1913-1980)
+12614,Owensboro,a town in northwestern Kentucky on the Ohio River; a tobacco market
+12615,Oxalidaceae family_Oxalidaceae wood-sorrel_family,a family of widely distributed herbs of the order Geraniales; have compound leaves and pentamerous flowers
+12616,Oxandra genus_Oxandra,genus of tropical trees
+12617,Oxbridge,general term for an ancient and prestigious and privileged university (especially Oxford University or Cambridge University)
+12618,Oxford,a university town in northern Mississippi; home of William Faulkner
+12619,Oxford,a city in southern England to the northwest of London; site of Oxford University
+12620,Oxford_English,the dialect of English spoken at Oxford University and regarded by many as affected and pretentious
+12621,Oxford_English_Dictionary O.E.D. OED,an unabridged dictionary constructed on historical principles
+12622,Oxford_University Oxford,a university in England
+12623,Oxford_movement,19th-century movement in the Church of England opposing liberal tendencies
+12624,Oxonian,a native or resident of Oxford
+12625,Oxybelis genus_Oxybelis,vine snakes
+12626,Oxydendrum genus_Oxydendrum,sourwood
+12627,Oxylebius genus_Oxylebius,a genus of Hexagrammidae
+12628,Oxytropis genus_Oxytropis,large widely-distributed genus of evergreen shrubs or subshrubs having odd-pinnate leaves and racemose or spicate flowers each having a pea-like corolla with a clawed petal
+12629,Oxyura genus_Oxyura,ruddy duck
+12630,Oxyuranus genus_Oxyuranus,taipans
+12631,Oxyuridae family_Oxyuridae,pinworms
+12632,Ozark_chinkapin Ozark_chinquapin chinquapin Castanea_ozarkensis,shrubby tree closely related to the Allegheny chinkapin but with larger leaves; southern midwestern United States
+12633,Ozarks Ozark_Mountains Ozark_Plateau,an area of low mountains in northwestern Arkansas and southeastern Missouri and northeastern Oklahoma
+12634,Ozawa Seiji_Ozawa,United States conductor (born in Japan in 1935)
+12635,Ozonium genus_Ozonium,form genus of imperfect fungi
+12636,Ozothamnus genus_Ozothamnus,genus of Australian shrubs and perennial herbs; sometimes included in genus Helichrysum
+12637,P p,the 16th letter of the Roman alphabet
+12638,PAYE pay_as_you_earn,the British system of withholding tax
+12639,PC_board,a removable circuit board for a personal computer; fits into a slot in the mother board
+12640,PKU_test,a test of newborn infants for phenylketonuria
+12641,PSA_blood_test,a blood test that measures levels of a protein called prostate specific antigen that is manufactured exclusively by the prostate gland; men with prostate problems usually have elevated levels of PSA
+12642,PT_boat mosquito_boat mosquito_craft motor_torpedo_boat,a small fast unarmored and lightly armed torpedo boat; P(atrol) T(orpedo) boat
+12643,Pablum,a soft form of cereal for infants
+12644,Pachycephala genus_Pachycephala,arboreal insectivorous birds
+12645,Pachyrhizus genus_Pachyrhizus,small genus of tropical vines having tuberous roots
+12646,Pacific Pacific_Ocean,the largest ocean in the world
+12647,Pacific_Coast,a coast of the Pacific Ocean
+12648,Pacific_Northwest,a region of the northwestern United States usually including Washington and Oregon and sometimes southwestern British Columbia
+12649,Pacific_Time Pacific_Standard_Time PST,standard time in the 8th time zone west of Greenwich, reckoned at the 120th meridian west; used in far western states of the United States
+12650,Pacific_bottlenose_dolphin Tursiops_gilli,a bottlenose dolphin found in the Pacific Ocean
+12651,Pacific_cod Alaska_cod Gadus_macrocephalus,closely related to Atlantic cod
+12652,Pacific_giant_salamander Dicamptodon_ensatus,large (to 7 inches) salamander of western North America
+12653,Pacific_halibut Hippoglossus_stenolepsis,a righteye flounder found in the Pacific
+12654,Pacific_herring Clupea_harengus_pallasii,important food fish of the northern Pacific
+12655,Pacific_newt,any of several rough-skinned newts found in western North America
+12656,Pacific_ridley olive_ridley Lepidochelys_olivacea,olive-colored sea turtle of tropical Pacific and Indian and the southern Atlantic oceans
+12657,Pacific_sardine Sardinops_caerulea,small pilchards common off the pacific coast of North America
+12658,Pacific_spiny_dogfish Squalus_suckleyi,dogfish of Pacific coast of North America
+12659,Pacific_sturgeon white_sturgeon Sacramento_sturgeon Acipenser_transmontanus,food and game fish of marine and fresh waters of northwestern coast of North America
+12660,Pacific_tree_toad Hyla_regilla,the most commonly heard frog on the Pacific coast of America
+12661,Pacific_tripletail Lobotes_pacificus,tripletail found in the Pacific
+12662,Pacific_walrus Odobenus_divergens,a walrus of the Bering Sea and northern Pacific
+12663,Pacific_yew California_yew western_yew Taxus_brevifolia,small or medium irregularly branched tree of the Pacific coast of North America; yields fine hard close-grained wood
+12664,Pacinian_corpuscle,a specialized bulblike nerve ending located in the subcutaneous tissue of the skin; occurs abundantly in the skin of palms and soles and joints and genitals
+12665,Packera genus_Packera,genus of American of east Asian perennial herbs with yellow to orange or red flower rays; sometimes included in genus Senecio
+12666,Padda genus_Padda,a genus of Ploceidae
+12667,Paddy Mick Mickey,(ethnic slur) offensive term for a person of Irish descent
+12668,Paderewski Ignace_Paderewski Ignace_Jan_Paderewski,Polish pianist who in 1919 served as the first Prime Minister of independent Poland (1860-1941)
+12669,Padua Padova Patavium,a city in Veneto
+12670,Paducah,a town in western Kentucky on the Ohio River
+12671,Paeonia genus_Paeonia,peonies: herbaceous or shrubby plants having showy flowers
+12672,Paeoniaceae family_Paeoniaceae peony_family,perennial rhizomatous herbs and shrubs; of temperate Europe and North America
+12673,Paganini Niccolo_Paganini,Italian violinist and composer of music for the violin (1782-1840)
+12674,Page Sir_Frederick_Handley_Page,English industrialist who pioneered in the design and manufacture of aircraft (1885-1962)
+12675,Page Thomas_Nelson_Page,United States diplomat and writer about the Old South (1853-1922)
+12676,Pagellus genus_Pagellus,sea breams
+12677,Paget Sir_James_Paget,English pathologist who discovered the cause of trichinosis (1814-1899)
+12678,Paget's_disease osteitis_deformans,a disease of bone occurring in the middle aged and elderly; excessive bone destruction sometimes leading to bone pain and fractures and skeletal deformities
+12679,Pago_Pago Pango_Pango,a port in American Samoa
+12680,Pagophila genus_Pagophila,a genus of Laridae
+12681,Pagophilus genus_Pagophilus,harp seals
+12682,Pagrus genus_Pagrus,a genus of Sparidae
+12683,Paguridae family_Paguridae,hermit crabs
+12684,Pagurus genus_Pagurus,type genus of the family Paguridae
+12685,Pahang,sultanate and one of the 13 states that constitute the Federation of Malaysia
+12686,Pahlavi,the script (derived from the Aramaic alphabet) used to write the Pahlavi language
+12687,Pahlavi Mohammed_Reza_Pahlavi Shah_Pahlavi Pahlevi Mohammed_Reza_Pahlevi,Shah of Iran who was deposed in 1979 by Islamic fundamentalists (1919-1980)
+12688,Pahlavi Pehlevi,the Iranian language of the Zoroastrian literature of the 3rd to 10th centuries
+12689,Paige Satchel_Paige Leroy_Robert_Paige,United States baseball player; a black pitcher noted for his longevity (1906-1982)
+12690,Paine Robert_Treat_Paine,American Revolutionary leader and signer of the Declaration of Independence (1731-1814)
+12691,Paine Tom_Paine Thomas_Paine,American Revolutionary leader and pamphleteer (born in England) who supported the American colonist's fight for independence and supported the French Revolution (1737-1809)
+12692,Painted_Desert,a desert on a high plateau in northeastern Arizona
+12693,Paiute,the Shoshonean language spoken by the Paiute
+12694,Paiute Piute,a member of either of two Shoshonean peoples (northern Paiute and southern Paiute) related to the Aztecs and living in the southwestern United States
+12695,Paiwanic,a Formosan language
+12696,Pakistan Islamic_Republic_of_Pakistan West_Pakistan,a Muslim republic that occupies the heartland of ancient south Asian civilization in the Indus River valley; formerly part of India; achieved independence from the United Kingdom in 1947
+12697,Pakistani,a native or inhabitant of Pakistan
+12698,Pakistani_monetary_unit,monetary unit in Pakistan
+12699,Pakistani_rupee rupee,the basic unit of money in Pakistan; equal to 100 paisa
+12700,Palaemon genus_Palaemon,type genus of the family Palaemonidae; widely distributed genus
+12701,Palaemonidae family_Palaemonidae,prawns
+12702,Palaic,an Anatolian language
+12703,Palaquium genus_Palaquium,large genus of Malaysian trees with milky juice and leathery leaves
+12704,Palatinate Pfalz,a territory in southwestern Germany formerly ruled by the counts palatine
+12705,Palatine,the most important of the Seven Hills of Rome; supposedly the location of the first settlement and the site of many imperial palaces
+12706,Palau Palau_Islands Belau Pelew,a chain of more than 200 islands about 400 miles long in the western central Pacific Ocean
+12707,Palau Republic_of_Palau TT,a republic in the western central Pacific Ocean in association with the United States
+12708,Paleacrita genus_Paleacrita,geometrid moths
+12709,Paleacrita_vernata,moth whose larvae are spring cankerworms
+12710,Paleo-American Paleo-Amerind Paleo-Indian,a member of the Paleo-American peoples who were the earliest human inhabitants of North America and South America during the late Pleistocene epoch
+12711,Paleo-American_culture Paleo-Amerind_culture Paleo-Indian_culture,the prehistoric culture of the earliest human inhabitants of North America and South America
+12712,Paleocene Paleocene_epoch,from 63 million to 58 million years ago; appearance of birds and earliest mammals
+12713,Paleolithic_Age Paleolithic Palaeolithic,second part of the Stone Age beginning about 750,000 to 500,000 years BC and lasting until the end of the last ice age about 8,500 years BC
+12714,Paleozoic Paleozoic_era,from 544 million to about 230 million years ago
+12715,Palermo,the capital of Sicily; located in northwestern Sicily; an important port for 3000 years
+12716,Palestine,a former British mandate on the east coast of the Mediterranean; divided between Jordan and Israel in 1948
+12717,Palestine Canaan Holy_Land Promised_Land,an ancient country in southwestern Asia on the east coast of the Mediterranean Sea; a place of pilgrimage for Christianity and Islam and Judaism
+12718,Palestine_Islamic_Jihad Palestinian_Islamic_Jihad PIJ Harakat_al-Jihad_al-Islami_al-Filastini,a militant Palestinian terrorist group created in 1979 and committed to the creation of an Islamic state in Palestine and to the destruction of Israel; smaller and more exclusively militant that Hamas
+12719,Palestine_Liberation_Front PLF Jabat_al-Tahrir_al-Filistiniyyah,a terrorist group formed in 1977 as the result of a split with the Popular Front for the Liberation of Palestine; became a satellite of al-Fatah; made terrorist attacks on Israel across the Lebanese border
+12720,Palestine_Liberation_Organization PLO,a political movement uniting Palestinian Arabs in an effort to create an independent state of Palestine; when formed in 1964 it was a terrorist organization dominated by Yasser Arafat's al-Fatah; in 1968 Arafat became chairman; received recognition by the United Nations and by Arab states in 1974 as a government in exile; has played a largely political role since the creation of the Palestine National Authority
+12721,Palestine_National_Authority Palestinian_National_Authority Palestine_Authority,combines the Gaza Strip and the West Bank under a political unit with limited autonomy and a police force; created in 1993 by an agreement between Israel and the PLO
+12722,Palestinian Palestinian_Arab,a descendant of the Arabs who inhabited Palestine
+12723,Palestinian_Hizballah,a little known Palestinian group comprised of members of Hamas and Tanzim with suspected ties to the Lebanese Hizballah; responsible for suicide bombings in Israel
+12724,Palestrina Giovanni_Pierluigi_da_Palestrina,Italian composer (1526-1594)
+12725,Palgrave Francis_Turner_Palgrave,English poet (1824-1897)
+12726,Pali,an ancient Prakrit language (derived from Sanskrit) that is the scriptural and liturgical language of Theravada Buddhism
+12727,Palinuridae family_Palinuridae,spiny lobsters
+12728,Palinurus genus_Palinurus,type genus of the family Palinuridae
+12729,Paliurus genus_Paliurus,thorny Eurasian shrubs
+12730,Pall_Mall,a fashionable street in London noted for its many private clubs
+12731,Palladio Andrea_Palladio,highly original and much imitated Italian architect (1508-1580)
+12732,Pallas,a large asteroid; the second asteroid to be discovered
+12733,Palm_Beach,a resort town in southeast Florida on an island on the Atlantic coast
+12734,Palm_Sunday,Sunday before Easter
+12735,Palmae family_Palmae Palmaceae family_Palmaceae Arecaceae family_Arecaceae palm_family,chiefly tropical trees and shrubs and vines usually having a tall columnar trunk bearing a crown of very large leaves; coextensive with the order Palmales
+12736,Palmales order_Palmales,coextensive with the family Palmae: palms
+12737,Palmer Arnold_Palmer Arnold_Daniel_Palmer,United States golfer (born in 1929)
+12738,Palo_Alto,a university town in California
+12739,Pamir_Mountains the_Pamirs,a mountain range in central Asia that is centered in Tajikistan but extends into Kyrgyzstan and Afghanistan and Pakistan and western China
+12740,Pamlico,a member of the Algonquian people formerly of the Pamlico river valley in North Carolina
+12741,Pamlico,the Algonquian language of the Pamlico
+12742,Pan genus_Pan,chimpanzees; more closely related to Australopithecus than to other pongids
+12743,Pan goat_god,(Greek mythology) god of fields and woods and shepherds and flocks; represented as a man with goat's legs and horns and ears; identified with Roman Sylvanus or Faunus
+12744,Pan_American_Day April_14,a day celebrating political and economic unity among American countries
+12745,Pan_American_Union,the administrative agency of the Organization of American States
+12746,Panacea,(Greek mythology) the goddess of healing; daughter of Aesculapius and sister of Hygeia
+12747,Panama Republic_of_Panama,a republic on the Isthmus of Panama; achieved independence from Colombia in 1903
+12748,Panama_Canal,a ship canal 40 miles long across the Isthmus of Panama built by the United States (1904-1914)
+12749,Panama_Canal_Zone Canal_Zone,a zone consisting of a strip of land across the Isthmus of Panama that contains the Panama Canal
+12750,Panama_City,a resort and fishing town on the Gulf of Mexico in northwest Florida
+12751,Panama_City capital_of_Panama Panamanian_capital,the capital and largest city of Panama
+12752,Panama_redwood quira,hard heavy red wood of a quira tree
+12753,Panama_redwood_tree Panama_redwood Platymiscium_pinnatum,large erect shrub of Colombia having large odd-pinnate leaves with large leaflets and axillary racemes of fragrant yellow flowers
+12754,Panama_tree Sterculia_apetala,large deciduous tree native to Panama and from which the country takes its name; having densely leafy crown and naked trunk
+12755,Panamanian,a native or inhabitant of Panama
+12756,Panamanian_monetary_unit,monetary unit in Panama
+12757,Panax genus_Panax,perennial herbs of eastern North America and Asia having aromatic tuberous roots: ginseng
+12758,Panchen_Lama,the lama next in rank to the Dalai Lama
+12759,Pandanaceae family_Pandanaceae screw-pine_family,family of woody plants of the order Pandanales including pandanus
+12760,Pandanales order_Pandanales,families Typhaceae; Sparganiaceae; Pandanaceae
+12761,Pandion genus_Pandion,type genus of the Pandionidae
+12762,Pandionidae family_Pandionidae,ospreys
+12763,Pandora,(Greek mythology) the first woman; created by Hephaestus on orders from Zeus who presented her to Epimetheus along with a box filled with evils
+12764,Pandora's_box,(Greek mythology) a box that Zeus gave to Pandora with instructions that she not open it; she gave in to her curiosity and opened it; all the miseries and evils flew out to afflict mankind
+12765,Pangaea Pangea,(plate tectonics) a hypothetical continent including all the landmass of the earth prior to the Triassic period when it split into Laurasia and Gondwanaland
+12766,Pangloss,an incurable optimist in a satire by Voltaire
+12767,Panicum genus_Panicum,panic grass
+12768,Panini,Indian grammarian whose grammatical rules for Sanskrit are the first known example of descriptive linguistics (circa 400 BC)
+12769,Panipat battle_of_Panipat,battle in which the ruler of Afghanistan defeated the Mahrattas in 1761
+12770,Panofsky Erwin_Panofsky,art historian (1892-1968)
+12771,Panonychus genus_Panonychus,a genus of Tetranychidae
+12772,Panorpidae family_Panorpidae,a family of insects of the order Mecoptera
+12773,Pantaloon,a buffoon in modern pantomimes; the butt of jokes
+12774,Pantaloon,a character in the commedia dell'arte; portrayed as a foolish old man
+12775,Panthera genus_Panthera,lions; leopards; snow leopards; jaguars; tigers; cheetahs; saber-toothed tigers
+12776,Pantotheria subclass_Pantotheria,generalized extinct mammals widespread during the Jurassic; commonly conceded to be ancestral to marsupial and placental mammals
+12777,Pap_test Papanicolaou_test smear_test,a method of examining stained cells in a cervical smear for early diagnosis of uterine cancer
+12778,Papal_States,the temporal dominions belonging to the pope (especially in central Italy)
+12779,Papaver genus_Papaver,type genus of the Papaveraceae; chiefly bristly hairy herbs with usually showy flowers
+12780,Papaveraceae family_Papaveraceae poppy_family,herbs or shrubs having milky and often colored juices and capsular fruits
+12781,Papeete,the capital of French Polynesia on the northwestern coast of Tahiti
+12782,Paphiopedilum genus_Paphiopedilum,horticulturally important genus of mainly terrestrial orchids including many hybrids; southeastern Asia and Indonesia to Philippines and Solomon Islands; Paphiopedilum species sometimes included in genus Cypripedium
+12783,Papilionaceae family_Papilionacea,leguminous plants whose flowers have butterfly-shaped corollas; commonly included in the family Leguminosae
+12784,Papilionoideae subfamily_Papilionoideae,alternative name used in some classification systems for the family Papilionaceae
+12785,Papio genus_Papio,baboons
+12786,Paprilus genus_Paprilus,a genus of Stromateidae
+12787,Papua,the southeastern part of Papua New Guinea
+12788,Papua_New_Guinea Independent_State_of_Papua_New_Guinea,a parliamentary democracy on the eastern half of the island of New Guinea; in 1975 it became an independent state within the Commonwealth of Nations
+12789,Papuan,a native or inhabitant of Papua New Guinea or New Guinea
+12790,Papuan Papuan_language,any of the indigenous languages spoken in Papua New Guinea or New Britain or the Solomon Islands that are not Malayo-Polynesian languages
+12791,Papuan_monetary_unit,monetary unit in Papua New Guinea
+12792,Para Para_River,an estuary in northern Brazil into which the Tocantins River flows
+12793,Para_rubber,a type of natural rubber obtained from tropical South American trees
+12794,Para_rubber_tree caoutchouc_tree Hevea_brasiliensis,deciduous tree of the Amazon and Orinoco Rivers having leathery leaves and fragrant yellow-white flowers; it yields a milky juice that is the chief source of commercial rubber
+12795,Paracelsus Philippus_Aureolus_Paracelsus Theophrastus_Philippus_Aureolus_Bombastus_von_Hohenheim,Swiss physician who introduced treatments of particular illnesses based on his observation and experience; he saw illness as having an external cause (rather than an imbalance of humors) and replaced traditional remedies with chemical remedies (1493-1541)
+12796,Paracheirodon genus_Paracheirodon,a genus of Characidae
+12797,Paradisaeidae family_Paradisaeidae,birds of paradise
+12798,Paradise,(Christianity) the abode of righteous souls after death
+12799,Paradoxurus genus_Paradoxurus,palm civets
+12800,Paraguay Republic_of_Paraguay,a landlocked republic in south central South America; achieved independence from Spain in 1811
+12801,Paraguayan,a native or inhabitant of Paraguay
+12802,Paraguayan_monetary_unit,monetary unit in Paraguay
+12803,Paralichthys genus_Paralichthys,a genus of Bothidae
+12804,Paralipomenon,(Old Testament) an obsolete name for the Old Testament books of I Chronicles and II Chronicles which were regarded as supplementary to Kings
+12805,Paralithodes genus_Paralithodes,a genus of Lithodidae
+12806,Parallel_Lives,a collection of biographies of famous pairs of Greeks and Romans written by Plutarch; used by Shakespeare in writing some of his plays
+12807,Paramaribo capital_of_Suriname,the capital and largest city and major port of Surinam
+12808,Parana Parana_River,a South American river; tributary of Rio de la Plata
+12809,Paranthias genus_Paranthias,a genus of Serranidae
+12810,Paranthropus genus_Paranthropus,former classification for Australopithecus robustus
+12811,Parascalops genus_Parascalops,brewer's moles
+12812,Parashurama,an incarnation of Vishnu who rid the earth of Kshatriyas
+12813,Parasitaxus genus_Parasitaxus,one species: parasite yew
+12814,Parathelypteris genus_Parathelypteris,terrestrial ferns of warm and tropical Asia and North America
+12815,Parazoa subkingdom_Parazoa,multicellular organisms having less-specialized cells than in the Metazoa; comprises the single phylum Porifera
+12816,Parcae,any of the three Roman goddesses of fate or destiny; identified with the Greek Moirai and similar to the Norse Norns
+12817,Parcheesi,a modern board game based on pachisi
+12818,Pareto Vilfredo_Pareto,Italian sociologist and economist whose theories influenced the development of fascism in Italy (1848-1923)
+12819,Paridae family_Paridae,titmice and chickadees
+12820,Parietales order_Parietales Hypericales order_Hypericales,a large order of dicotyledonous plants of subclass Dilleniidae
+12821,Parietaria genus_Parietaria,small genus of stingless herbs
+12822,Paris,(Greek mythology) the prince of Troy who abducted Helen from her husband Menelaus and provoked the Trojan War
+12823,Paris,a town in northeastern Texas
+12824,Paris City_of_Light French_capital capital_of_France,the capital and largest city of France; and international center of culture and commerce
+12825,Paris genus_Paris,sometimes placed in subfamily Trilliaceae
+12826,Paris_University University_of_Paris Sorbonne,a university in Paris; intellectual center of France
+12827,Paris_green,a toxic double salt of copper arsenate and copper acetate
+12828,Parisian,a native or resident of Paris
+12829,Parisienne,a female native or resident of Paris
+12830,Parjanya,Hindu god of rain; sometimes identified with Indra
+12831,Parji,a Dravidian language spoken in south central India
+12832,Park Mungo_Park,Scottish explorer in Africa (1771-1806)
+12833,Park_Avenue Park_Ave.,a fashionable residential street in New York City
+12834,Parker Charlie_Parker Yardbird_Parker Bird_Parker Charles_Christopher_Parker,United States saxophonist and leader of the bop style of jazz (1920-1955)
+12835,Parker Dorothy_Parker Dorothy_Rothschild_Parker,United States writer noted for her sharp wit (1893-1967)
+12836,Parker_House_roll,yeast-raised dinner roll made by folding a disk of dough before baking
+12837,Parkeriaceae family_Parkeriaceae,coextensive with the genus Ceratopteris; sometimes included in family Polypodiaceae
+12838,Parkersburg,a city in northwestern West Virginia on the Ohio river
+12839,Parkia genus_Parkia,genus of tropical Old World trees: nitta trees
+12840,Parkia_javanica,tall evergreen rain forest tree with wide-spreading crown having yellow-white flowers; grown as an ornamental in parks and large gardens
+12841,Parkinson C._Northcote_Parkinson Cyril_Northcote_Parkinson,British historian noted for ridicule of bureaucracies (1909-1993)
+12842,Parkinson James_Parkinson,English surgeon (1755-1824)
+12843,Parkinson's_law,C. Northcote Parkinson's cynical observation that work will expand so as to fill the time available for its completion
+12844,Parkinson's_law,C. Northcote Parkinson's cynical observation that the number of subordinates in an organization will increase linearly regardless of the amount of work to be done
+12845,Parkinsonia genus_Parkinsonia,small genus of spiny shrubs or small trees
+12846,Parks Rosa_Parks,United States civil rights leader who refused to give up her seat on a bus to a white man in Montgomery (Alabama) and so triggered the national Civil Rights movement (born in 1913)
+12847,Parliamentarian Member_of_Parliament,an elected member of the British Parliament: a member of the House of Commons
+12848,Parmelia genus_Parmelia,type genus of the Parmeliaceae; a large genus of chiefly alpine foliaceous lichens
+12849,Parmeliaceae family_Parmeliaceae,a family of lichens
+12850,Parmenides,a presocratic Greek philosopher born in Italy; held the metaphysical view that being is the basic substance and ultimate reality of which all things are composed; said that motion and change are sensory illusions (5th century BC)
+12851,Parmesan,hard dry sharp-flavored Italian cheese; often grated
+12852,Parnaiba Parnahiba,a river in northeastern Brazil that flows generally northward to the Atlantic Ocean
+12853,Parnassus Mount_Parnassus Liakoura,(Greek mythology) a mountain in central Greece where (according to Greek mythology) the Muses lived; known as the mythological home of music and poetry; "Liakoura is the modern name of Mount Parnassus"
+12854,Parnell Charles_Stewart_Parnell,Irish nationalist leader (1846-1891)
+12855,Parochetus genus_Parochetus,one species: shamrock pea
+12856,Paronychia genus_Paronychia,low-growing annual or perennial herbs or woody plants; whitlowworts
+12857,Parophrys genus_Parophrys,a genus of Soleidae
+12858,Parr Catherine_Parr,Queen of England as the 6th wife of Henry VIII (1512-1548)
+12859,Parrish Maxfield_Parrish Maxfield_Frederick_Parrish,United States painter (1870-1966)
+12860,Parrotia genus_Parrotia,one species: iron tree
+12861,Parrotiopsis genus_Parrotiopsis,one species: deciduous tree of the Himalaya Mountains
+12862,Parry's_penstemon Penstemon_parryi,erect stems with pinkish-lavender flowers in long interrupted clusters; Arizona
+12863,Parry's_pinyon Pinus_quadrifolia Pinus_parryana,five-needled pinon of southern California and northern Baja California having (sometimes three-needled or four-needled showing hybridization from Pinus californiarum)
+12864,Parry_manzanita Arctostaphylos_manzanita,erect treelike shrub forming dense thickets and having drooping panicles of white or pink flowers and red berrylike drupes; California
+12865,Parsee Parsi,a member of a monotheistic sect of Zoroastrian origin; descended from the Persians; now found in western India
+12866,Parsiism Parseeism,the faith of a Zoroastrian sect in India
+12867,Parsons Talcott_Parsons,United States sociologist (1902-1979)
+12868,Parsons_table,a sturdy rectangular table with block legs at the four corners; the top and the legs are the same width
+12869,Parthenium genus_Parthenium,small genus of North American herbs and shrubs with terminal panicles of small ray flowers
+12870,Parthenocissus genus_Parthenocissus,woody vines having disklike tips on the tendrils
+12871,Parthenon,the main temple of the goddess Athena; built on the acropolis in Athens more than 400 years B.C.; example of Doric architecture
+12872,Parthia,an ancient kingdom in Asia to the southeast of the Caspian Sea; it dominated southwestern Asia from about 250 BC to AD 226
+12873,Parthian,a native or inhabitant of Parthia
+12874,Parthian,the Iranian language spoken in the Parthian kingdom (250 BC to AD 226)
+12875,Parula genus_Parula,type genus of the Parulidae: wood warblers
+12876,Parulidae family_Parulidae,New World warblers
+12877,Parus genus_Parus,type genus of the family Paridae
+12878,Parvati Anapurna Annapurna,wife of Siva and a benevolent aspect of Devi: Hindu goddess of plenty
+12879,Pasadena,a city in southwestern California to the east of Los Angeles
+12880,Pascal,a programing language designed to teach programming through a top-down modular approach
+12881,Pascal Blaise_Pascal,French mathematician and philosopher and Jansenist; invented an adding machine; contributed (with Fermat) to the theory of probability (1623-1662)
+12882,Pascal's_law Pascal's_law_of_fluid_pressures,pressure applied anywhere to a body of fluid causes a force to be transmitted equally in all directions; the force acts at right angles to any surface in contact with the fluid; "the hydraulic press is an application of Pascal's law"
+12883,Pascal_compiler,a compiler for programs written in Pascal
+12884,Pasch Pascha,the Jewish feast of the Passover
+12885,Pasch Pascha,the Christian festival of Easter
+12886,Pashto Pashtu Paxto Afghani Afghan,an Iranian language spoken in Afghanistan and Pakistan; the official language of Afghanistan
+12887,Pasigraphy,an artificial international language using characters (as mathematical symbols) instead of words to express ideas
+12888,Pasiphae,(Greek mythology) daughter of Helios and mother of Ariadne
+12889,Passamaquody,a member of the Algonquian people related to the Malecite and living in northeastern Maine and New Brunswick
+12890,Passer genus_Passer,type genus of the Passeridae
+12891,Passeridae family_Passeridae,true sparrows: Old world birds formerly considered weaverbirds
+12892,Passeriformes order_Passeriformes,largest order of birds comprising about half the known species; rooks; finches; sparrows; tits; warblers; robins; wrens; swallows; etc.; the four suborders are Eurylaimi and Tyranni and Menurae and Oscines or Passeres
+12893,Passerina genus_Passerina,a genus of small North American finches including the New World buntings
+12894,Passero Cape_Passero,a naval battle in the Mediterranean Sea off Cape Passero in which the Spanish navy was destroyed by France and England while attempting to recover Sicily and Sardinia from Italy (1719)
+12895,Passiflora genus_Passiflora,type genus of the Passifloraceae
+12896,Passifloraceae family_Passifloraceae passionflower_family,tropical woody tendril-climbing vines
+12897,Passion Passion_of_Christ,the suffering of Jesus at the Crucifixion
+12898,Passion_Sunday,second Sunday before Easter
+12899,Passion_play,a play representing the Passion of Christ
+12900,Passover Pesach Pesah Feast_of_the_Unleavened_Bread,(Judaism) a Jewish festival (traditionally 8 days from Nissan 15) celebrating the exodus of the Israelites from Egypt
+12901,Pasternak Boris_Pasternak Boris_Leonidovich_Pasternak,Russian writer whose best known novel was banned by Soviet authorities but translated and published abroad (1890-1960)
+12902,Pasteur Louis_Pasteur,French chemist and biologist whose discovery that fermentation is caused by microorganisms resulted in the process of pasteurization (1822-1895)
+12903,Pastinaca genus_Pastinaca,a rosid dicot genus of the family Umbelliferae; includes parsnips
+12904,Pastor subgenus_Pastor,only the rose-colored starlings; in some classifications considered a separate genus
+12905,Patagonia,region in southern South America between the Andes and the South Atlantic
+12906,Patagonian_Desert,a semiarid region in southern South America
+12907,Patella genus_Patella,type genus of the family Patellidae: common European limpets
+12908,Patellidae family_Patellidae,marine limpets
+12909,Patent_and_Trademark_Office_Database Patent_Office,the government bureau in the Department of Commerce that keeps a record of patents and trademarks and grants new ones
+12910,Paternoster,(Roman Catholic Church) the Lord's Prayer in Latin; translates as `our father'
+12911,Paterson,a city of northeastern New Jersey
+12912,Paterson William_Patterson,American Revolutionary leader (born in Ireland) who was a member of the Constitutional Convention (1745-1806)
+12913,Pathan Pashtun,an ethnic minority speaking Pashto and living in northwestern Pakistan and southeastern Afghanistan
+12914,Pathan Pashtun Pushtun Pashtoon,a member of the mountain people living in the eastern regions of Afghanistan; "Pathans are the predominant ethnic group in Afghanistan"
+12915,Paton Alan_Paton Alan_Stewart_Paton,South African writer (1903-1988)
+12916,Patras Patrai,a port city in western Greece in the northwestern Peloponnese on an inlet of the Ionian Sea; was a major trade center from the 5th century BC to the 3rd century BC; commercial importance revived during the Middle Ages
+12917,Patrick Saint_Patrick St._Patrick,Apostle and patron saint of Ireland; an English missionary to Ireland in the 5th century
+12918,Patriot's_Day,the 3rd Monday in April; Massachusetts and Maine celebrate the battle of Lexington and Concord in 1775
+12919,Patroclus,(Greek mythology) a friend of Achilles who was killed in the Trojan War; his death led Achilles to return to the fight after his quarrel with Agamemnon
+12920,Patwin,a member of the North American Indian people living in the Sacramento valley in California
+12921,Patwin,a Copehan language spoken by the Patwin
+12922,Paul Alice_Paul,United States feminist (1885-1977)
+12923,Paul Saint_Paul St._Paul Apostle_Paul Paul_the_Apostle Apostle_of_the_Gentiles Saul Saul_of_Tarsus,(New Testament) a Christian missionary to the Gentiles; author of several Epistles in the New Testament; even though Paul was not present at the Last Supper he is considered an Apostle; "Paul's name was Saul prior to his conversion to Christianity"
+12924,Paul_III Alessandro_Farnese,Italian pope from 1534 to 1549 who excommunicated Henry VIII of England in 1538 and initiated the Council of Trent in 1545; was active in the Counter Reformation and promoted the Society of Jesus for this purpose (1468-1549)
+12925,Paul_VI Giovanni_Battista_Montini,Italian pope from 1963 to 1978 who eased restrictions on fasting and on interfaith marriages (1897-1978)
+12926,Pauli Wolfgang_Pauli,United States physicist (born in Austria) who proposed the exclusion principle (thus providing a theoretical basis for the periodic table) (1900-1958)
+12927,Pauli_exclusion_principle exclusion_principle,no two electrons or protons or neutrons in a given system can be in states characterized by the same set of quantum numbers
+12928,Pauling Linus_Pauling Linus_Carl_Pauling,United States chemist who studied the nature of chemical bonding (1901-1994)
+12929,Paulo_Afonso Paulo_Afonso_Falls,a major waterfall in northeastern Brazil
+12930,Pauropoda class_Pauropoda,an obscure class of minute arthropods with branched antennae and 8 to 10 pairs of legs
+12931,Pavarotti Luciano_Pavarotti,Italian tenor (born in 1935)
+12932,Pavlov Ivan_Pavlov Ivan_Petrovich_Pavlov,Russian physiologist who observed conditioned salivary responses in dogs (1849-1936)
+12933,Pavlova Anna_Pavlova,Russian ballerina (1882-1931)
+12934,Pavo,a small constellation near the South Pole between Tucana and Ara
+12935,Pavo genus_Pavo,peafowl
+12936,Pawnee,a member of the Pawnee nation formerly living in Nebraska and Kansas but now largely in Oklahoma
+12937,Pawnee,the Caddoan language spoken by the Pawnee
+12938,Pax_Romana,the Roman peace; the long period of peace enforced on states in the Roman Empire
+12939,Paxton Joseph_Paxton Sir_Joseph_Paxton,English architect (1801-1865)
+12940,Payena genus_Payena,genus of medium to large Malaysian trees yielding gutta-percha
+12941,Payne's_grey Payne's_gray,any pigment that produces a greyish to dark greyish blue
+12942,Pays_de_la_Loire,an agricultural region of western France on the Bay of Biscay
+12943,Peabody Elizabeth_Peabody Elizabeth_Palmer_Peabody,educator who founded the first kindergarten in the United States (1804-1894)
+12944,Peace_Corps,a civilian organization sponsored by the United States government; helps people in developing countries
+12945,Peace_of_Westphalia,the peace treaty that ended the Thirty Years' War in 1648
+12946,Pearl_Harbor,a harbor on Oahu to the west of Honolulu; location of a United States naval base that was attacked by the Japanese on 7 Dec 1941
+12947,Pearl_River,a river in Mississippi that flows southward to the Gulf of Mexico
+12948,Pearmain,any of several varieties of apples with red skins
+12949,Peary Robert_Peary Robert_E._Peary Robert_Edwin_Peary,United States Arctic explorer and United States naval officer who has been regarded as the first man to reach the North Pole (1856-1920)
+12950,Peasant's_Revolt Great_Revolt,a widespread rebellion in 1381 against poll taxes and other inequities that oppressed the poorer people of England; suppressed by Richard II
+12951,Pecos Pecos_River,a tributary of the Rio Grande that flows southeastward from New Mexico through western Texas
+12952,Pectinibranchia order_Pectinibranchia,large order of gastropods comprising univalve mollusks that have a single gill resembling a comb
+12953,Pectinidae family_Pectinidae,scallops
+12954,Pedaliaceae family_Pedaliaceae sesame_family,the family of plants of order Polemoniales
+12955,Pediculati order_Pediculati,anglers and batfishes; spiny-finned marine fishes having pectoral fins at the ends of armlike processes and a long movable spine on the dorsal fin to lure prey to the large mouth
+12956,Pediculidae family_Pediculidae,true lice: human lice and related forms
+12957,Pediculus genus_Pediculus,type genus of Pediculidae: true lice infecting humans
+12958,Pedilanthus genus_Pedilanthus,tropical American succulent shrubs
+12959,Pediocactus genus_Pediocactus,low-growing cacti of the Great Plains of North America
+12960,Pedioecetes genus_Pedioecetes,sharp-tailed grouse
+12961,Pedionomus genus_Pedionomus,plain wanderer
+12962,Pedipalpi order_Pedipalpi Uropygi order_Uropygi,whip scorpions
+12963,Pee_Dee Pee_Dee_River,a river that flows through central North Carolina and northeastern South Carolina to the Atlantic Ocean
+12964,Peel Robert_Peel Sir_Robert_Peel,British politician (1788-1850)
+12965,Pegasus,(Greek mythology) the immortal winged horse that sprang from the blood of the slain Medusa; was tamed by Bellerophon with the help of a bridle given him by Athena; as the flying horse of the Muses it is a symbol of highflying imagination
+12966,Pegasus,a constellation in the northern hemisphere near Andromeda and Pisces
+12967,Pei I._M._Pei Ieoh_Ming_Pei,United States architect (born in China in 1917)
+12968,Peirce Benjamin_Peirce,United States mathematician and astronomer remembered for his studies of Uranus and Saturn and Neptune (1809-1880)
+12969,Peirce Charles_Peirce Charles_Sanders_Peirce,United States philosopher and logician; pioneer of pragmatism (1839-1914)
+12970,Pekinese Pekingese Peke,a Chinese breed of small short-legged dogs with a long silky coat and broad flat muzzle
+12971,Peking_man,fossils found near Beijing, China; they were lost during World War II
+12972,Pelagianism,the theological doctrine put forward by Pelagius which denied original sin and affirmed the ability of humans to be righteous; condemned as heresy by the Council of Ephesus in 431
+12973,Pelagius,a British or Irish monk who denied the doctrines of original sin and predestination and defended human goodness and free will; his views were declared heretical by the Council of Ephesus in 431 (circa 360-418)
+12974,Pelargonium genus_Pelargonium,geraniums native chiefly to South Africa; widely cultivated
+12975,Pelecanidae family_Pelecanidae,pelicans
+12976,Pelecaniformes order_Pelecaniformes,pelicans; frigate birds; gannets; cormorants
+12977,Pelecanoididae family_Pelecanoididae,diving petrels
+12978,Pelecanus genus_Pelecanus,type genus of the Pelecanidae
+12979,Peleus,a king of the Myrmidons and father of Achilles
+12980,Pelham,a bit with a bar mouthpiece that is designed to combine a curb and snaffle
+12981,Pellaea genus_Pellaea,genus of chiefly small rock-loving ferns; in some classification systems it is placed in the family Polypodiaceae or Adiantaceae
+12982,Pellicularia genus_Pellicularia,genus of fungi having the hymenium in the form of a crust; some species formerly placed in form genus Rhizoctinia
+12983,Pelobatidae family_Pelobatidae,the amphibian family of spadefoot toads
+12984,Peloponnese Peloponnesus Peloponnesian_Peninsula,the southern peninsula of Greece; dominated by Sparta until the 4th century BC
+12985,Peloponnesian_War,a war in which Athens and its allies were defeated by the league centered on Sparta; 431-404 BC
+12986,Peltandra genus_Peltandra,small genus of North American marsh or aquatic herbs
+12987,Pelycosauria order_Pelycosauria,edaphosaurus; dimetrodon
+12988,Pembroke Pembroke_Welsh_corgi,the smaller and straight-legged variety of corgi having pointed ears and a short tail
+12989,Pempheridae family_Pempheridae,sweepers
+12990,Penang,the second smallest Malaysian state; located on the northwest coast of Peninsular Malaysia
+12991,Peneidae family_Peneidae,tropical prawns
+12992,Penelope,(Greek mythology) the wife of Odysseus and a symbol of devotion and fidelity; for 10 years while Odysseus fought the Trojan War she resisted numerous suitors until Odysseus returned and killed them
+12993,Penelope genus_Penelope,a genus of guans (turkey-like arboreal birds valued as game and food birds)
+12994,Peneus genus_Peneus,type genus of the family Peneidae
+12995,Pengo,a Dravidian language spoken in south central India
+12996,Penicillium genus_Penicillium,genus of fungi commonly growing as green or blue molds on decaying food; used in making cheese and as a source of penicillin
+12997,Penn William_Penn,Englishman and Quaker who founded the colony of Pennsylvania (1644-1718)
+12998,Pennatula genus_Pennatula,type genus of the family Pennatulidae: sea pens
+12999,Pennatulidae family_Pennatulidae,sea pens
+13000,Pennines Pennine_Chain,a system of hills in Britain that extend from the Scottish border in the north to the Trent River in the south; forms the watershed for English rivers
+13001,Pennisetum genus_Pennisetum,a genus of Old World grasses
+13002,Pennsylvania,one of the British colonies that formed the United States
+13003,Pennsylvania Keystone_State PA Pa.,a Mid-Atlantic state; one of the original 13 colonies
+13004,Pennsylvania_Dutch,a dialect of High German spoken in parts of Pennsylvania and Maryland
+13005,Pennsylvanian Keystone_Stater,a native or resident of Pennsylvania
+13006,Pennsylvanian Pennsylvanian_period Upper_Carboniferous Upper_Carboniferous_period,from 310 million to 280 million years ago; warm climate; swampy land
+13007,Penobscot,a member of the Algonquian people belonging to the Abnaki confederacy and living in the Penobscot valley in northern Maine
+13008,Penobscot Penobscot_River,a river in central Maine flowing into Penobscot Bay
+13009,Penobscot_Bay,an inlet of the Atlantic in eastern Maine
+13010,Pensacola,a town in extreme northwest Florida
+13011,Penstemon genus_Penstemon,large genus of subshrubs or herbs having showy blue or purple or red or yellow or white flowers; mostly western North America
+13012,Pentagon,the United States military establishment
+13013,Pentagon,a government building with five sides that serves as the headquarters of the United States Department of Defense
+13014,Pentagon_Gang,a Filipino terrorist group that broke away from the Moro Islamic Liberation Front in 2001 in order to continue terrorism and kidnapping and extortion
+13015,Pentastomida subphylum_Pentastomida,tongue worms
+13016,Pentecost Whitsunday,seventh Sunday after Easter; commemorates the emanation of the Holy Spirit to the Apostles; a quarter day in Scotland
+13017,Pentecostal Pentecostalist,any member of a Pentecostal religious body
+13018,Pentecostal_religion,any fundamentalist Protestant Church that uses revivalistic methods to achieve experiences comparable to the Pentecostal experiences of the first Christian disciples
+13019,Penutian,a member of a North American Indian people speaking one of the Penutian languages
+13020,Penutian,a family of Amerindian language spoken in the great interior valley of California
+13021,People's_Party Populist_Party,a former political party in the United States; formed in 1891 to advocate currency expansion and state control of railroads
+13022,People_against_Gangsterism_and_Drugs PAGAD,a terrorist organization in South Africa formed in 1996 to fight drug lords; evolved into a vigilante group with anti-western views closely allied with Qibla; is believed to have ties to Islamic extremists in the Middle East; is suspected of conducting bouts of urban terrorism
+13023,Peoria,a city in central Illinois on the Illinois River
+13024,Pepin Pepin_III Pepin_the_Short,king of the Franks and father of Charlemagne who defended papal interests and founded the Carolingian dynasty in 751 (714-768)
+13025,Pepsi Pepsi_Cola,Pepsi Cola is a trademarked cola
+13026,Pepto-bismal,an antacid
+13027,Pepys Samuel_Pepys,English diarist whose diary contained detailed descriptions of 17th century disasters in England (1633-1703)
+13028,Perak,sultanate and one of the 13 states that constitute the Federation of Malaysia
+13029,Peramelidae family_Peramelidae,bandicoots
+13030,Perca genus_Perca,type genus of the Percidae
+13031,Percheron,one of a breed of grey or black draft horses originally used in France to draw heavy coaches or artillery
+13032,Percidae family_Percidae,active freshwater fishes; true perches and pike perches
+13033,Perciformes order_Perciformes Percomorphi order_Percomorphi,one of the largest natural groups of fishes of both marine and fresh water: true perches; basses; tuna
+13034,Percina genus_Percina,a genus of Percidae
+13035,Percoidea suborder_Percoidea,in some classifications nearly or exactly equivalent to the Perciformes which are considered a suborder
+13036,Percophidae family_Percophidae,percoid flatheads
+13037,Percy Sir_Henry_Percy Hotspur Harry_Hotspur,English soldier killed in a rebellion against Henry IV (1364-1403)
+13038,Percy Walker_Percy,United States writer whose novels explored human alienation (1916-1990)
+13039,Perdicidae subfamily_Perdicidae Perdicinae subfamily_Perdicinae,Old World partridges
+13040,Perdix genus_Perdix,a genus of Perdicinae
+13041,Perejil,a small uninhabited Mediterranean islet claimed by both Morocco and Spain
+13042,Pereskia genus_Pereskia Peireskia genus_Peireskia,genus of tropical American shrubby trees and woody climbers having slender branches with broad flat leaves and large panicles of flowers
+13043,Pergamum,an ancient Greek city located in the western part of what is now modern Turkey; the technique of preparing sheepskins as parchment was developed here
+13044,Pericallis genus_Pericallis,cineraria
+13045,Pericles,Athenian statesman whose leadership contributed to Athens' political and cultural supremacy in Greece; he ordered the construction of the Parthenon (died in 429 BC)
+13046,Peridiniidae family_Peridiniidae,marine and freshwater dinoflagellates
+13047,Peridinium genus_Peridinium,type genus of the family Peridiniidae
+13048,Perilla genus_Perilla,small genus of Asiatic herbs
+13049,Periophthalmus genus_Periophthalmus,a genus of Gobiidae
+13050,Peripatidae family_Peripatidae,a family of Onychophora
+13051,Peripatopsidae family_Peripatopsidae,a family of Onychophora
+13052,Peripatopsis genus_Peripatopsis,type genus of Peripatopsidae; onychophorans of chiefly Asiatic and African tropical regions
+13053,Periplaneta genus_Periplaneta,cosmopolitan genus of large cockroaches
+13054,Periploca genus_Periploca,genus of woody vines of warm regions of the Old World
+13055,Perisoreus genus_Perisoreus,Canada jays
+13056,Perissodactyla order_Perissodactyla,nonruminant ungulates: horses; tapirs; rhinoceros; extinct forms
+13057,Peristediinae subfamily_Peristediinae,in some classifications considered a subfamily of Triglidae comprising the armored searobins
+13058,Peristedion genus_Peristedion,in some classifications the type genus of the subfamily Peristediinae: armored sea robins
+13059,Perlis,the smallest Malaysian state; located at the northern part of the west coast of Peninsular Malaysia
+13060,Perm Molotov,a city in the European part of Russia
+13061,Permalloy,an 80/20 alloy of nickel and iron; easily magnetized and demagnetized
+13062,Permian Permian_period,from 280 million to 230 million years ago; reptiles
+13063,Permic,a group of Finnic languages spoken in the northwest Urals
+13064,Pernis genus_Pernis,a common European bird of prey; dull brown with white-streaked underparts
+13065,Pernod,(registered trademark) a liqueur flavored with anise
+13066,Perodicticus genus_Perodicticus,a genus of Lorisidae
+13067,Perognathus genus_Perognathus,pocket mice
+13068,Peromyscus genus_Peromyscus,New World wood mice
+13069,Peron Juan_Domingo_Peron,Argentine soldier who became president of Argentina (1895-1974)
+13070,Peronospora genus_Peronospora,genus of destructive downy mildews
+13071,Peronosporaceae family_Peronosporaceae,parasitic fungi: downy mildews
+13072,Peronosporales order_Peronosporales,order of chiefly parasitic lower fungi: Albuginaceae and Peronosporaceae and Pythiaceae
+13073,Perry Matthew_Calbraith_Perry,United States admiral who led a naval expedition to Japan and signed a treaty in 1854 opening up trade relations between United States and Japan; brother of Oliver Hazard Perry (1794-1858)
+13074,Perry Oliver_Hazard_Perry Commodore_Perry,United States commodore who led the fleet that defeated the British on Lake Erie during the War of 1812; brother of Matthew Calbraith Perry (1785-1819)
+13075,Perry Ralph_Barton_Perry,United States philosopher (1876-1957)
+13076,Perry_Mason,fictional detective in novels by Erle Stanley Gardner
+13077,Persea genus_Persea,avocado
+13078,Persephone Despoina Kore Cora,(Greek mythology) daughter of Zeus and Demeter; made queen of the underworld by Pluto in ancient mythology; identified with Roman Proserpina
+13079,Persepolis,an ancient city that was the capital of the ancient Persian Empire; now in ruins
+13080,Perseus,(Greek mythology) the son of Zeus who slew Medusa (with the help of Athena and Hermes) and rescued Andromeda from a sea monster
+13081,Perseus,a conspicuous constellation in the northern hemisphere; between Auriga and Cassiopeia and crossed by the Milky Way
+13082,Pershing John_Joseph_Pershing Black_Jack_Pershing,United States general who commanded the American forces in Europe during World War I (1860-1948)
+13083,Persia Persian_Empire,an empire in southern Asia created by Cyrus the Great in the 6th century BC and destroyed by Alexander the Great in the 4th century BC
+13084,Persian Farsi,the language of Persia (Iran) in any of its ancient forms
+13085,Persian_Gulf Arabian_Gulf,a shallow arm of the Arabian Sea between Iran and the Arabian peninsula; the Persian Gulf oil fields are among the most productive in the world
+13086,Persian_Gulf_War Gulf_War,a war fought between Iraq and a coalition led by the United States that freed Kuwait from Iraqi invaders; 1990-1991
+13087,Persian_cat,a long-haired breed of cat
+13088,Persian_deity,a deity worshiped by the ancient Persians
+13089,Persian_iris Iris_persica,bulbous iris native to Asia Minor cultivated for its pale lilac-colored flowers
+13090,Persian_lamb,the fur of a karakul lamb
+13091,Persian_lamb,a karakul lamb
+13092,Persian_lilac Syringa_persica,small densely branching Asiatic shrub having lanceolate leaves and panicles of fragrant lilac flowers
+13093,Persian_melon,the fruit of a variety of winter melon vine; a large green melon with orange flesh
+13094,Persian_violet Exacum_affine,perennial cultivated especially as a houseplant for its fragrant bluish to dark lavender flowers
+13095,Persoonia genus_Persoonia,Australian undershrubs to small trees: geebungs
+13096,Perth,the state capital of Western Australia
+13097,Pertusaria genus_Pertusaria,crustose lichens that are a source of the dye archil and of litmus
+13098,Pertusariaceae family_Pertusariaceae,a fungus family of division Lichenes
+13099,Peru Republic_of_Peru,a republic in western South America; achieved independence from Spain in 1821; was the heart of the Inca empire from the 12th to 16th centuries
+13100,Perutz Max_Perutz Max_Ferdinand_Perutz,English biochemist (born in Austria); studied the molecular structure of blood (1914-2002)
+13101,Peruvian,a native or inhabitant of Peru
+13102,Peruvian_balsam Myroxylon_pereirae Myroxylon_balsamum_pereirae,tree of South and Central America yielding an aromatic balsam
+13103,Peruvian_cotton Gossypium_peruvianum,cotton with long rough hairy fibers
+13104,Peruvian_current Humboldt_current,a cold ocean current that flows north along the Pacific Coast of South America before turning west
+13105,Peruvian_lily lily_of_the_Incas Alstroemeria_pelegrina,an Andean herb having umbels of showy pinkish-purple lily-like flowers
+13106,Peruvian_monetary_unit,monetary unit in Peru
+13107,Pesh_Merga,a Kurdish guerrilla force in Iraqi Kurdistan
+13108,Peshawar,city in northern Pakistan at the eastern end of the Khyber Pass
+13109,Petasites genus_Petasites,genus of rhizomatous herbs of north temperate regions: butterbur; sweet coltsfoot
+13110,Petaurista genus_Petaurista,very large Asiatic flying squirrels
+13111,Petauristidae subfamily_Petauristidae,Old World flying squirrels
+13112,Petaurus genus_Petaurus,a genus of Phalangeridae
+13113,Peter Simon_Peter Saint_Peter St._Peter Saint_Peter_the_Apostle St._Peter_the_Apostle,disciple of Jesus and leader of the Apostles; regarded by Catholics as the vicar of Christ on earth and first Pope
+13114,Peter_I Czar_Peter_I Peter_the_Great,czar of Russia who introduced ideas from western Europe to reform the government; he extended his territories in the Baltic and founded St. Petersburg (1682-1725)
+13115,Peter_Pan,a boyish or immature man; after the boy in Barrie's play who never grows up
+13116,Peter_Pan,the main character in a play and novel by J. M. Barrie; a boy who won't grow up
+13117,Peter_Pan_collar,a flat collar with rounded ends that meet in front
+13118,Petersburg,a town in southeastern Virginia (south of Richmond); scene of heavy fighting during the American Civil War
+13119,Petersburg Petersburg_Campaign,the final campaign of the American Civil War (1864-65); Union forces under Grant besieged and finally defeated Confederate forces under Lee
+13120,Petrarch Petrarca Francesco_Petrarca,an Italian poet famous for love lyrics (1304-1374)
+13121,Petrarchan_sonnet Italian_sonnet,a sonnet consisting of an octave with the rhyme pattern abbaabba, followed by a sestet with the rhyme pattern cdecde or cdcdcd
+13122,Petri_dish,a shallow dish used to culture bacteria
+13123,Petrified_Forest_National_Park,a national park in Arizona having the world's largest collection of petrified coniferous trees
+13124,Petrocoptis genus_Petrocoptis,perennial tussock-forming rock plants; of Pyrenees and mountains of northern Spain; similar to and sometimes placed in genus Lychnis
+13125,Petrogale genus_Petrogale,rock wallabies
+13126,Petromyzon genus_Petromyzon,typical lampreys
+13127,Petromyzoniformes suborder_Petromyzoniformes Hyperoartia suborder_Hyperoartia,lampreys as distinguished from hagfishes
+13128,Petromyzontidae family_Petromyzontidae,lampreys
+13129,Petronas_Towers,twin skyscrapers built in Kuala Lumpur in 1997; 1482 feet high
+13130,Petronius Gaius_Petronius Petronius_Arbiter,Roman satirist (died in 66)
+13131,Petroselinum genus_Petroselinum,parsley
+13132,Petteria genus_Petteria,one species: Dalmatian laburnum
+13133,Peyer's_patch Peter's_gland,any of several lymph nodes in the walls of the intestines near the junction of the ileum and colon
+13134,Peziza genus_Peziza,type genus of the Pezizaceae: a variety of cup fungus
+13135,Peziza_domicilina,a discomycetous fungus of the genus Peziza; the fragile fruiting body is a ghostly white but stains yellow when broken; favors strongly alkaline habitats
+13136,Pezizaceae family_Pezizaceae,large family comprising many typical cup fungi
+13137,Pezizales order_Pezizales,order of mostly saprophytic fungi having cup-shaped ascocarps
+13138,Pezophaps genus_Pezophaps,constituted by the extinct solitaire
+13139,Ph.D. PhD,a doctorate usually based on at least 3 years graduate study and a dissertation; the highest degree awarded graduate study
+13140,Phacochoerus genus_Phacochoerus,warthogs
+13141,Phaeophyceae class_Phaeophyceae,brown algae; mostly marine and littoral eukaryotic algae
+13142,Phaeophyta division_Phaeophyta,coextensive with class Phaeophyceae; in some classifications subsumed in the division Heterokontophyta
+13143,Phaethon,(Greek mythology) son of Helios; killed when trying to drive his father's chariot and came too close to earth
+13144,Phaethon genus_Phaethon,type genus of the Phaethontidae
+13145,Phaethontidae family_Phaethontidae,tropicbirds
+13146,Phagun Phalguna,the twelfth month of the Hindu calendar
+13147,Phalacrocoracidae family_Phalacrocoracidae,cormorants
+13148,Phalacrocorax genus_Phalacrocorax,type genus: coextensive with the family Phalacrocoracidae
+13149,Phalaenopsis genus_Phalaenopsis,genus of ornamental epiphytic orchids of Asia and Australia
+13150,Phalaenoptilus genus_Phalaenoptilus,a genus of Caprimulgidae
+13151,Phalangeridae family_Phalangeridae,phalangers; koalas
+13152,Phalangida order_Phalangida Opiliones order_Opiliones,harvestmen
+13153,Phalangiidae family_Phalangiidae,a family of Phalangida
+13154,Phalangium genus_Phalangium,type genus of the family Phalangiidae
+13155,Phalaris genus_Phalaris,a genus of grasses with broad leaves and a dense spike of flowers
+13156,Phalaropidae family_Phalaropidae,phalaropes
+13157,Phalaropus genus_Phalaropus,type genus of the Phalaropidae: phalaropes
+13158,Phallaceae family_Phallaceae,a family of fungi belonging to the order Phallales and comprising the true stinkhorns
+13159,Phallales order_Phallales,order of fungi comprising the stinkhorns and related forms whose mature hymenium is slimy and fetid; sometimes placed in subclass Homobasidiomycetes
+13160,Phallus genus_Phallus,genus of fungi having the cap or pileus hanging free around the stem
+13161,Phallus_ravenelii,this stinkhorn has a cap with a granulose surface at the apex and smells like decaying flesh
+13162,Phanerogamae,in former classification systems: one of two major plant divisions, including all seed-bearing plants; superseded by the division Spermatophyta
+13163,Phanerozoic Phanerozoic_eon Phanerozoic_aeon,the period from about 540 million years ago until the present, a period when abundant life existed
+13164,Pharaoh Pharaoh_of_Egypt,the title of the ancient Egyptian kings
+13165,Pharisee,a member of an ancient Jewish sect noted for strict obedience to Jewish traditions
+13166,Pharomacrus genus_Pharomacrus,a genus of Trogonidae
+13167,Pharsalus battle_of_Pharsalus,Caesar defeated Pompey in 48 BC
+13168,Phascogale genus_Phascogale,pouched mice
+13169,Phascolarctos genus_Phascolarctos,koalas
+13170,Phaseolus genus_Phaseolus,herbs of warm regions including most American beans
+13171,Phasianidae family_Phasianidae,pheasants; quails; partridges
+13172,Phasianus genus_Phasianus,type genus of the Phasianidae: the typical pheasants
+13173,Phasmida order_Phasmida Phasmatodea order_Phasmatodea,in some classifications considered a suborder of Orthoptera: stick insects; leaf insects
+13174,Phasmidae family_Phasmidae Phasmatidae family_Phasmatidae,stick insects
+13175,Phasmidia class_Phasmidia,one of two subgroups of Nematoda used in some classification systems
+13176,Phegopteris genus_Phegopteris,beech ferns: genus is variously classified: considered alternative name for genus Dryopteris or included in genus Thelypteris
+13177,Phellodendron genus_Phellodendron,small genus of aromatic deciduous trees of east Asia often having thick corky bark
+13178,Phidias Pheidias,ancient Greek sculptor (circa 500-432 BC)
+13179,Philadelphaceae subfamily_Philadelphaceae,one genus; usually included in family Hydrangeaceae
+13180,Philadelphia City_of_Brotherly_Love,the largest city in Pennsylvania; located in the southeastern part of the state on the Delaware river; site of Independence Hall where the Declaration of Independence and the Constitution were signed; site of the University of Pennsylvania
+13181,Philadelphia_fleabane Erigeron_philadelphicus,especially pretty plant having a delicate fringe of threadlike rays around flower heads having very slender white or pink rays; United States and Canada
+13182,Philaenus genus_Philaenus,a genus of Cercopidae
+13183,Philemon,(Greek mythology) a simple countryman who offered hospitality to Zeus and Hermes when they came to earth without revealing their identities in order to test people's piety
+13184,Philemon,(New Testament) a Christian (probably living in Colossae) whose slave escaped and went to see Saint Paul
+13185,Philip Prince_Philip Duke_of_Edinburgh,Englishman and husband of Elizabeth II (born 1921)
+13186,Philip_II Philip_Augustus,son of Louis VII whose reign as king of France saw wars with the English that regained control of Normandy and Anjou and most of Poitou (1165-1223)
+13187,Philip_II Philip_II_of_Macedon,king of ancient Macedonia and father of Alexander the Great (382-336 BC)
+13188,Philip_II Philip_II_of_Spain,king of Spain and Portugal and husband of Mary I; he supported the Counter Reformation and sent the Spanish Armada to invade England (1527-1598)
+13189,Philip_V,king of ancient Macedonia whose confrontations with the Romans led to his defeat and his loss of control over Greece
+13190,Philip_VI Philip_of_Valois,king of France who founded the Valois dynasty; his dispute with Edward III over his succession led to the Hundred Years' War (1293-1350)
+13191,Philippi,a city in ancient Macedonia that was important in early Christianity
+13192,Philippi battle_of_Philippi,Octavian and Mark Antony defeated Brutus and Cassius in 42 BC
+13193,Philippian,a native or inhabitant of Philippi in ancient Macedonia
+13194,Philippine Filipino,official language of the Philippines; based on Tagalog; draws its lexicon from other Philippine languages
+13195,Philippine_Sea battle_of_the_Philippine_Sea,a naval battle in World War II (1944); a decisive naval victory for the United States fleet over the Japanese who were trying to block supplies from reaching American troops on Leyte
+13196,Philippine_mahogany,red hardwood of the Philippine mahogany tree used for cigar boxes and interior finish
+13197,Philippine_mahogany Philippine_cedar kalantas Toona_calantas Cedrela_calantas,Philippine timber tree having hard red fragrant wood
+13198,Philippine_monetary_unit,monetary unit in the Philippines
+13199,Philippine_peso peso,the basic unit of money in the Philippines; equal to 100 centavos
+13200,Philippines Philippine_Islands,an archipelago in the southwestern Pacific including some 7000 islands
+13201,Philippines Republic_of_the_Philippines,a republic on the Philippine Islands; achieved independence from the United States in 1946
+13202,Philistia,an ancient region on the coast of southwestern Palestine that was strategically located on a trade route between Syria and Egypt; important in biblical times
+13203,Philistine,a member of an Aegean people who settled ancient Philistia around the 12th century BC
+13204,Phillips_screw,a screw with a special head having crossed slots
+13205,Phillips_screwdriver,a screwdriver for use with Phillips screws
+13206,Phillyrea genus_Phillyrea,small genus of evergreen shrubs of the Mediterranean region
+13207,Philohela genus_Philohela,American woodcocks
+13208,Philomachus genus_Philomachus,ruffs
+13209,Philophylla genus_Philophylla,leaf miners
+13210,Phintias Pythias,friend of Damon; Phintias (according to legend) was condemned to death by Dionysius the Elder and asked a respite to put his affairs in order; Damon pledged his life for the return of his friend; when Phintias returned in time the tyrant released them both (4th century BC)
+13211,Phlebodium genus_Phlebodium,chiefly epiphytic tropical ferns with free veins bearing sori
+13212,Phlebotomus genus_Phlebotomus,small bloodsucking sand flies that resemble moths
+13213,Phleum genus_Phleum,grasses native to temperate regions
+13214,Phnom_Penh Pnom_Penh Cambodian_capital,the capital and largest city of Kampuchea
+13215,Phobos,the larger of the two satellites of Mars
+13216,Phoca genus_Phoca,type genus of the Phocidae: earless seals
+13217,Phocidae family_Phocidae,earless seals
+13218,Phocoena genus_Phocoena,porpoises
+13219,Phoebe,(Greek mythology) a Titaness who became identified with Artemis as goddess of the Moon
+13220,Phoenicia Phenicia,an ancient maritime country (a collection of city states) at eastern end of the Mediterranean
+13221,Phoenician,a member of an ancient Semitic people who dominated trade in the first millennium B.C.
+13222,Phoenician,the extinct language of an ancient Semitic people who dominated trade in the ancient world
+13223,Phoenicopteridae family_Phoenicopteridae,flamingos
+13224,Phoeniculidae family_Phoeniculidae,wood hoopoes
+13225,Phoeniculus genus_Phoeniculus,type and only genus of the family Phoeniculidae
+13226,Phoenicurus genus_Phoenicurus,Old World thrushes
+13227,Phoenix,a constellation in the southern hemisphere near Tucana and Sculptor
+13228,Phoenix capital_of_Arizona,the state capital and largest city located in south central Arizona; situated in a former desert that has become a prosperous agricultural area thanks to irrigation
+13229,Pholadidae family_Pholadidae,a family of Bivalvia
+13230,Pholas genus_Pholas,type genus of the family Pholadidae: piddocks
+13231,Pholidae family_Pholidae family_Pholididae,a family of fish of suborder Blennioidea
+13232,Pholidota genus_Pholidota,genus of mostly epiphytic orchids of Indonesia and the western Pacific
+13233,Pholidota order_Pholidota,pangolins; in some former classifications included in the order Edentata
+13234,Pholiota genus_Pholiota,genus of gilled agarics of Europe and North America having brown spores and an annulus; grows on open ground or decaying wood
+13235,Pholiota_astragalina,a fungus with a smooth orange cap and yellow gills and pale yellow stalk
+13236,Pholiota_aurea golden_pholiota,a beautiful yellow gilled fungus found from Alaska south along the coast
+13237,Pholiota_destruens,a large fungus with whitish scales on the cap and remnants of the veil hanging from the cap; the stalk is thick and hard
+13238,Pholiota_flammans,a fungus with a yellow cap covered with fine scales as is the stalk
+13239,Pholiota_flavida,a fungus that grows in clusters on the ground; cap is brownish orange with a surface that is smooth and slightly sticky; whitish gills and a cylindrical brown stalk
+13240,Pholiota_squarrosa scaly_pholiota,a gilled fungus with a cap and stalk that are conspicuously scaly with upright scales; gills develop a greenish tinge with age
+13241,Pholiota_squarrosa-adiposa,a gilled fungus having yellow slimy caps with conspicuous tawny scales on the caps and stalks
+13242,Pholiota_squarrosoides,a pale buff fungus with tawny scales
+13243,Pholis genus_Pholis,type genus of the Pholidae: gunnels
+13244,Pholistoma genus_Pholistoma,straggling herbs of southwestern United States
+13245,Phoradendron genus_Phoradendron,any of various American parasitic plants similar to Old World mistletoe: false mistletoe
+13246,Phoronida Phoronidea phylum_Phoronida,small phylum of wormlike marine animals
+13247,Photinia genus_Photinia,genus of deciduous and evergreen east Asian trees and shrubs widely cultivated as ornamentals for their white flowers and red fruits; in some classifications includes genus Heteromeles
+13248,Photius,Patriarch of Constantinople and saint of the Greek Orthodox Church; was condemned by the Fourth Council of Constantinople in 869 but was reinstated by a later pope
+13249,Photoblepharon genus_Photoblepharon,a genus of fish in the family Anomalopidae
+13250,Photostat Photostat_machine,a duplicating machine that makes quick positive or negative copies directly on the surface of prepared paper
+13251,Phoxinus genus_Phoxinus,minnows
+13252,Phragmipedium genus_Phragmipedium,genus of tropical American orchid species often included in genus Cypripedium or Paphiopedilum and Selenipedium: lady slippers
+13253,Phragmites genus_Phragmites,reeds of marshes and riversides in tropical or temperate regions
+13254,Phrygia,an ancient country in western and central Asia Minor
+13255,Phrygian,a native or inhabitant of Phrygia
+13256,Phrygian,a Thraco-Phrygian language spoken by the ancient inhabitants of Phrygia and now extinct--preserved only in a few inscriptions
+13257,Phrygian_deity,deity of the ancient Phrygians of west central Asia Minor
+13258,Phrynosoma genus_Phrynosoma,horned lizards
+13259,Phthiriidae family_Phthiriidae,crab lice
+13260,Phthirius genus_Phthirius Phthirus genus_Phthirus,true lice: crab lice
+13261,Phthorimaea genus_Phthorimaea,potato moths
+13262,Phycomycetes Phycomycetes_group,a large and probably unnatural group of fungi and funguslike organisms comprising the Mastigomycota (including the Oomycetes) and Zygomycota subdivisions of the division Eumycota; a category not used in all systems
+13263,Phyllidae family_Phyllidae Phillidae family_Phillidae,leaf insects
+13264,Phyllitis genus_Phyllitis genus_Scolopendrium,a genus of ferns belonging to the family Polypodiaceae (in some classification systems included in genus Asplenium)
+13265,Phyllium genus_Phyllium,type genus of the Phyllidae
+13266,Phyllocladaceae family_Phyllocladaceae,a family of Phyllocladaceae
+13267,Phyllocladus genus_Phyllocladus,celery pine
+13268,Phyllodoce genus_Phyllodoce,small genus of evergreen Arctic and alpine shrubs
+13269,Phylloporus genus_Phylloporus,a genus of fungi belonging to the family Boletaceae
+13270,Phylloporus_boletinoides,a fungus with a broadly convex brown cap and pores that extend part way down the stalk
+13271,Phyllorhynchus genus_Phyllorhynchus,leaf-nosed snakes
+13272,Phylloscopus genus_Phylloscopus,warblers
+13273,Phyllostachys genus_Phyllostachys,medium and large bamboos
+13274,Phyllostomidae family_Phyllostomidae Phyllostomatidae family_Phyllostomatidae,New World leaf-nosed bats
+13275,Phyllostomus genus_Phyllostomus,type genus of the family Phyllostomatidae
+13276,Phyllostomus_hastatus,a variety of leaf-nosed bat
+13277,Phylloxera genus_Phylloxera,type genus of the Phylloxeridae: plant lice
+13278,Phylloxeridae family_Phylloxeridae,plant lice
+13279,Physalia genus_Physalia,Portuguese man-of-war
+13280,Physalis genus_Physalis,ground cherries
+13281,Physaria genus_Physaria,small genus of western North American herbs similar to Lesquerella: bladderpods
+13282,Physeter genus_Physeter,type genus of the Physeteridae
+13283,Physeteridae family_Physeteridae,sperm whales
+13284,Physidae family_Physidae,freshwater snails
+13285,Physostigma genus_Physostigma,African woody vines: calabar beans
+13286,Phytolacca genus_Phytolacca,type genus of Phytolaccaceae: pokeweed
+13287,Phytolaccaceae family_Phytolaccaceae pokeweed_family,chiefly tropical herbaceous plants (including shrubs and trees) with racemose flowers: genera Phytolacca, Agdestis, Ercilla, Rivina, Trichostigma
+13288,Phytomastigina subclass_Phytomastigina,plantlike flagellates containing chlorophyll; often considered unicellular algae
+13289,Phytophthora genus_Phytophthora,destructive parasitic fungi causing brown rot in plants
+13290,Phytophthora_citrophthora,causes brown rot gummosis in citrus fruits
+13291,Phytophthora_infestans,fungus causing late blight in solanaceous plants especially tomatoes and potatoes
+13292,Piaf Edith_Piaf Edith_Giovanna_Gassion Little_Sparrow,French cabaret singer (1915-1963)
+13293,Piaget Jean_Piaget,Swiss psychologist remembered for his studies of cognitive development in children (1896-1980)
+13294,Pica genus_Pica,magpies
+13295,Picardie Picardy,a region of northern France on the English Channel
+13296,Picariae order_Picariae,term used in some classifications as nearly equivalent to the order Coraciiformes
+13297,Picasso Pablo_Picasso,prolific and influential Spanish artist who lived in France (1881-1973)
+13298,Picea genus_Picea,a genus of temperate and Arctic evergreen trees (see spruce)
+13299,Picidae family_Picidae,woodpeckers
+13300,Piciformes order_Piciformes,woodpeckers; jacamars; puffbirds; barbets; honey guides; toucans
+13301,Pick's_disease,a progressive form of presenile dementia found most often in middle-aged and elderly women and characterized by degeneration of the frontal and temporal lobes with loss of intellectual ability and transitory aphasia
+13302,Pickeringia genus_Pickeringia,one species: chaparral pea
+13303,Pickett George_Edward_Pickett,American Confederate general known for leading a disastrous charge at Gettysburg (1825-1875)
+13304,Pickford Mary_Pickford Gladys_Smith,United States film actress (born in Canada) who starred in silent films (1893-1979)
+13305,Picoides genus_Picoides,a genus of Picidae
+13306,Picrasma genus_Picrasma,small genus of deciduous trees of tropical America and Asia
+13307,Picris genus_Picris,genus of weedy Old World yellow-flowered herbs usually containing a bitter-tasting substance: bitterweed
+13308,Pictor,a constellation in the southern hemisphere near Dorado and Columba
+13309,Picumnus genus_Picumnus,a genus of Picidae
+13310,Picus genus_Picus,type genus of Picidae
+13311,Pied_Piper Pied_Piper_of_Hamelin,the title character in a German folk tale and in a poem by Robert Browning
+13312,Piedmont,the plateau between the coastal plain and the Appalachian Mountains: parts of Virginia and North and South Carolina and Georgia and Alabama
+13313,Piedmont Piemonte,the region of northwestern Italy; includes the Po valley
+13314,Piedmont_glacier Piedmont_type_of_glacier,a type of glaciation characteristic of Alaska; large valley glaciers meet to form an almost stagnant sheet of ice
+13315,Pierce Franklin_Pierce President_Pierce,14th President of the United States (1804-1869)
+13316,Pieridae family_Pieridae,arthropod family including cabbage butterflies; sulphur butterflies
+13317,Pieris genus_Pieris,decorative evergreen shrubs of woody vines
+13318,Pieris genus_Pieris,type genus of the Pieridae
+13319,Pierre capital_of_South_Dakota,capital of the state of South Dakota; located in central South Dakota on the Missouri river
+13320,Pierre_Laporte_Bridge,a suspension bridge across the Saint Lawrence River at Quebec
+13321,Pierrot,a male character in French pantomime; usually dressed in white with a whitened face
+13322,Pietism,17th and 18th-century German movement in the Lutheran Church stressing personal piety and devotion
+13323,Pike's_Peak,a mountain peak in the Rockies in central Colorado (14,109 feet high)
+13324,Pilate Pontius_Pilate,the Roman procurator of Judea who ordered that Jesus be crucified (died in AD 36)
+13325,Pilea genus_Pilea,low-growing tropical perennials grown for their stingless foliage
+13326,Pilgrim Pilgrim_Father,one of the colonists from England who sailed to America on the Mayflower and founded the colony of Plymouth in New England in 1620
+13327,Pilgrim's_Progress,an allegory written by John Bunyan in 1678
+13328,Pillars_of_Hercules,the two promontories at the eastern end of the Strait of Gibraltar; according to legend they were formed by Hercules
+13329,Pilosella genus_Pilosella,genus of hairy perennial herbs with horizontal rhizomes and leafy or underground stolons; Eurasia and North Africa; often considered congeneric with Hieracium
+13330,Pilsen Plzen,a town in Czech Republic where Pilsner beer originated
+13331,Pilsner Pilsener,a pale lager with strong flavor of hops; first brewed in the Bohemian town of Pilsen
+13332,Piltdown_man Piltdown_hoax,a supposedly primitive man later proven to be a hoax
+13333,Pilularia genus_Pilularia,pillworts
+13334,Pima,a member of the North American Indian people living in southern Arizona and northern Mexico
+13335,Pima,the Uto-Aztecan language spoken by the Pima
+13336,Pimenta genus_Pimenta,allspice tree
+13337,Pimlico,a racetrack for thoroughbred racing; site of the Preakness
+13338,Pimpinella genus_Pimpinella,anise
+13339,Pinaceae family_Pinaceae pine_family,a family of Pinaceae
+13340,Pinatubo Mount_Pinatubo,a volcano on Luzon to the northwest of Manila; erupted in 1991 after 600 years of dormancy
+13341,Pinckneya genus_Pinckneya,small genus of shrubs or small trees of southeastern United States and northern South America
+13342,Pinctada genus_Pinctada,pearl oysters
+13343,Pincus Gregory_Pincus Gregory_Goodwin_Pincus,United States sexual physiologist whose hunch that progesterone could block ovulation led to the development of the oral contraceptive pill (1903-1967)
+13344,Pindar,Greek lyric poet remembered for his odes (518?-438? BC)
+13345,Pindaric_ode Pindaric,an ode form used by Pindar; has triple groups of triple units
+13346,Pine_Bluff,a town in southeast central Arkansas on the Arkansas River
+13347,Pineus genus_Pineus,a genus of Adelgidae
+13348,Ping Ping_River,a river in western Thailand; a major tributary of the Chao Phraya
+13349,Pinguicula genus_Pinguicula,butterworts: a large genus of almost stemless carnivorous bog plants; Europe and America to Antarctica
+13350,Pinguinus genus_Pinguinus,great auk
+13351,Pinicola genus_Pinicola,a genus of Fringillidae
+13352,Pinnipedia suborder_Pinnipedia,seals; sea lions; walruses
+13353,Pinnotheres genus_Pinnotheres,type genus of the family Pinnotheridae: pea crabs
+13354,Pinnotheridae family_Pinnotheridae,tiny soft-bodied crabs
+13355,Pinopsida class_Pinopsida Pinophytina subdivision_Pinophytina,most conifers: in some systems classified as a class (Pinopsida) and in others as a subdivision (Pinophytina); used in some classifications for one of five subdivisions of Gymnospermophyta
+13356,Pinot Pinot_grape,any of several purple or white wine grapes used especially for Burgundies and champagnes
+13357,Pinot_blanc,white wine grape; grown especially in California for making wines resembling those from Chablis, France
+13358,Pinot_blanc,dry white California table wine made from white Pinot grapes
+13359,Pinot_noir,red wine grape; grown especially in California for making wines resembling those from Burgundy, France
+13360,Pinot_noir,dry red California table wine made from purple Pinot grapes
+13361,Pinsk,a city of southwestern Belarus
+13362,Pinter Harold_Pinter,English dramatist whose plays are characterized by silences and the use of inaction (born in 1930)
+13363,Pinus genus_Pinus,type genus of the Pinaceae: large genus of true pines
+13364,Pipa genus_Pipa,type genus of the Pipidae
+13365,Piper genus_Piper,type genus of the Piperaceae: large genus of chiefly climbing tropical shrubs
+13366,Piperaceae family_Piperaceae pepper_family,tropical woody vines and herbaceous plants having aromatic herbage and minute flowers in spikelets
+13367,Piperales order_Piperales,Piperaceae; Saururaceae; Chloranthaceae
+13368,Pipidae family_Pipidae,tongueless frogs
+13369,Pipile genus_Pipile,genus of large crested guans (the piping guans)
+13370,Pipilo genus_Pipilo,towhees
+13371,Pipistrellus genus_Pipistrellus,nearly cosmopolitan genus of very small bats
+13372,Pippin,any of numerous superior eating apples with yellow or greenish yellow skin flushed with red
+13373,Pipra genus_Pipra,type genus of the Pipridae containing the typical manakins
+13374,Pipridae family_Pipridae,manakins
+13375,Piptadenia genus_Piptadenia,tropical American trees and shrubs; often placed in other genera
+13376,Pipturus genus_Pipturus,an Australian genus of woody plants of the family Urticaceae
+13377,Pipturus_albidus,Hawaiian tree of genus Pipturus having a bark (tapa) from which tapa cloth is made
+13378,Piqueria genus_Piqueria,small genus of tropical American perennial herbs or subshrubs with white to pale yellow flowers; often included in genus Stevia
+13379,Pirandello Luigi_Pirandello,Italian novelist and playwright (1867-1936)
+13380,Piranga genus_Piranga,a genus of Thraupidae
+13381,Pisa,a city in Tuscany; site of the famous Leaning Tower
+13382,Pisces,a large faint zodiacal constellation; between Aquarius and Aries
+13383,Pisces,a group of vertebrates comprising both cartilaginous and bony fishes and sometimes including the jawless vertebrates; not used technically
+13384,Pisces Fish,(astrology) a person who is born while the sun is in Pisces
+13385,Pisces Pisces_the_Fishes Fish,the twelfth sign of the zodiac; the sun is in this sign from about February 19 to March 20
+13386,Piscidia genus_Piscidia,genus of shrubs or small trees having indehiscent pods with black seeds; roots and bark yield fish poisons
+13387,Pisonia genus_Pisonia,genus of often thorny tropical trees and shrubs and some vines; mainly America
+13388,Pissis,a mountain in the Andes in Argentina (22,241 feet high)
+13389,Pistacia genus_Pistacia,a dicotyledonous genus of trees of the family Anacardiaceae having drupaceous fruit
+13390,Piston Walter_Piston,United States neoclassical composer (1894-1976)
+13391,Pisum genus_Pisum,small genus of variable annual Eurasian vines: peas
+13392,Pithecanthropus Pithecanthropus_erectus genus_Pithecanthropus,former genus of primitive apelike men now Homo erectus
+13393,Pithecellobium genus_Pithecellobium Pithecolobium genus_Pithecolobium,thorny shrubs and trees of tropical and subtropical America and Asia
+13394,Pithecia genus_Pithecia,sakis
+13395,Pitman Sir_Isaac_Pitman,English educator who invented a system of phonetic shorthand (1813-1897)
+13396,Pitot Henri_Pitot,French physicist for whom the Pitot tube was named (1695-1771)
+13397,Pitot-static_tube Pitot_head Pitot_tube,measuring instrument consisting of a combined Pitot tube and static tube that measures total and static pressure; used in aircraft to measure airspeed
+13398,Pitot_tube Pitot,measuring instrument consisting of a right-angled tube with an open end that is directed in opposition to the flow of a fluid and used to measure the velocity of fluid flow
+13399,Pitt George_Pitt George_Dibdin_Pitt George_Dibdin-Pitt,a British playwright who created the fictional character Sweeney Todd (1799-1855)
+13400,Pitt William_Pitt First_Earl_of_Chatham Pitt_the_Elder,English statesman who brought the Seven Years' War to an end (1708-1778)
+13401,Pitt William_Pitt Second_Earl_of_Chatham Pitt_the_Younger,English statesman and son of Pitt the Elder (1759-1806)
+13402,Pittidae family_Pittidae,pittas
+13403,Pittsburgh,a city in southwestern Pennsylvania where the confluence of the Allegheny River and Monongahela River forms the Ohio River; long an important urban industrial area; site of Carnegie Mellon University and the University of Pittsburgh
+13404,Pittsfield,a town in western Massachusetts
+13405,Pituophis genus_Pituophis,bull snakes
+13406,Pitymys genus_Pitymys,pine mice
+13407,Pityrogramma genus_Pityrogramma,terrestrial tropical ferns having fronds with powdery yellowish or white undersides; sometimes placed in family Polypodiaceae or Adiantaceae
+13408,Pius_II Aeneas_Silvius Enea_Silvio_Piccolomini,Italian pope from 1458 to 1464 who is remembered for his unsuccessful attempt to lead a crusade against the Turks (1405-1464)
+13409,Pius_IX Giovanni_Mastai-Ferretti Giovanni_Maria_Mastai-Ferretti,Italian pope from 1846 to 1878 who in 1854 declared the dogma of the Immaculate Conception of the Virgin Mary
+13410,Pius_V Antonio_Ghislieri,Italian pope from 1566 to 1572 who led the reformation of the Roman Catholic Church; he excommunicated Elizabeth I (1504-1572)
+13411,Pius_VI Giovanni_Angelo_Braschi Giannangelo_Braschi,Italian pope from 1775 to 1799 who served during the French Revolution; Napoleon attacked the Papal States and in 1797 Pius VI was taken to France where he died (1717-1799)
+13412,Pius_VII Barnaba_Chiaramonti Luigi_Barnaba_Gregorio_Chiaramonti,Italian pope from 1800 to 1823 who was humiliated by Napoleon and taken prisoner in 1809; he concluded a concordat with Napoleon and crowned him emperor of France; he returned to Rome in 1814 (1740-1823)
+13413,Pius_X Giuseppe_Sarto Giuseppe_Melchiorre_Sarto,pope who condemned religious modernism; he was canonized in 1954 because of his interest in the poor (1835-1914)
+13414,Pius_XI Achille_Ratti Ambrogio_Damiano_Achille_Ratti,pope who signed a treaty with Mussolini recognizing the Vatican City as an independent state (1857-1939)
+13415,Pius_XII Eugenio_Pacelli,pope who maintained neutrality during World War II and was later criticized for not aiding the Jews who were persecuted by Hitler (1876-1958)
+13416,Pizarro Francisco_Pizarro,Spanish conquistador who conquered the Incas in what is now Peru and founded the city of Lima (1475-1541)
+13417,Placodermi class_Placodermi,extinct group of bony-plated fishes with primitive jaws
+13418,Placuna genus_Placuna,windowpane oysters
+13419,Plagianthus genus_Plagianthus,small genus of shrubs and trees of Australia and New Zealand
+13420,Plains_Indian Buffalo_Indian,a member of one of the tribes of American Indians who lived a nomadic life following the buffalo in the Great Plains of North America
+13421,Planck Max_Planck Max_Karl_Ernst_Ludwig_Planck,German physicist whose explanation of blackbody radiation in the context of quantized energy emissions initiated quantum theory (1858-1947)
+13422,Planck's_constant h,the constant of proportionality relating the energy of a photon to its frequency; approximately 6.626 x 10^-34 joule-second
+13423,Planck's_law,(physics) the basis of quantum theory; the energy of electromagnetic waves is contained in indivisible quanta that have to be radiated or absorbed as a whole; the magnitude is proportional to frequency where the constant of proportionality is given by Planck's constant
+13424,Planck's_radiation_law,(physics) an equation that expresses the distribution of energy in the radiated spectrum of an ideal black body
+13425,Planera genus_Planera,a deciduous tree of the family Ulmaceae that grows in the southeastern United States
+13426,Plano,a city in northeastern Texas (suburb of Dallas)
+13427,Planococcus genus_Planococcus,a genus of Pseudococcidae
+13428,Plantae kingdom_Plantae plant_kingdom,(botany) the taxonomic kingdom comprising all living or extinct plants
+13429,Plantagenet Plantagenet_line,the family name of a line of English kings that reigned from 1154 to 1485
+13430,Plantaginaceae family_Plantaginaceae plantain_family,cosmopolitan family of small herbs and a few shrubs; most are troublesome weeds
+13431,Plantaginales order_Plantaginales,coextensive with the family Plantaginaceae
+13432,Plantago genus_Plantago,type genus of the family Plantaginaceae; large cosmopolitan genus of mostly small herbs
+13433,Plantation,a newly established colony (especially in the colonization of North America); "the practice of sending convicted criminals to serve on the Plantations was common in the 17th century"
+13434,Plasmodiidae family_Plasmodiidae,malaria parasites
+13435,Plasmodiophora genus_Plasmodiophora,type genus of Plasmodiophoraceae comprising minute plant parasitic fungi similar to and sometimes included among the slime molds
+13436,Plasmodiophoraceae family_Plasmodiophoraceae,family of fungi often causing hypertrophy in seed plants
+13437,Plassey battle_of_Plassey,the victory in 1757 by the British under Clive over Siraj-ud-daula that established British supremacy over Bengal
+13438,Plasticine,a synthetic material resembling clay but remaining soft; used as a substitute for clay or wax in modeling (especially in schools)
+13439,Plataea,a former town in Boeotia; site of a battle between the Greeks and Persians in 479 BC
+13440,Plataea battle_of_Plataea,a defeat of the Persian army by the Greeks at Plataea in 479 BC
+13441,Platalea genus_Platalea,type genus of the Plataleidae
+13442,Plataleidae family_Plataleidae,spoonbills
+13443,Platanaceae family_Platanaceae plane-tree_family,coextensive with the genus Platanus: plane trees
+13444,Platanistidae family_Platanistidae,river dolphins
+13445,Platanthera genus_Platanthera,herbaceous terrestrial orchids of temperate northern and southern hemispheres
+13446,Platanus genus_Platanus,genus of large monoecious mostly deciduous trees: London plane; sycamore
+13447,Plath Sylvia_Plath,United States writer and poet (1932-1963)
+13448,Platichthys genus_Platichthys,a genus of Pleuronectidae
+13449,Plato,ancient Athenian philosopher; pupil of Socrates; teacher of Aristotle (428-347 BC)
+13450,Plato's_Academy,a school established by Plato in ancient Athens; "Plato's Academy continued for several hundred years after Plato died"
+13451,Platonism realism,(philosophy) the philosophical doctrine that abstract concepts exist independent of their names
+13452,Platonist,an advocate of Platonism
+13453,Platt_National_Park,a national park in Oklahoma having mineral springs
+13454,Platte Platte_River,a river in Nebraska that flows eastward to become a tributary of the Missouri River
+13455,Platte_River_penstemon Penstemon_cyananthus,erect plant with blue-violet flowers in rings near tips of stems; Idaho to Utah and Wyoming
+13456,Platycephalidae family_Platycephalidae,scorpaenoid flatheads
+13457,Platycerium genus_Platycerium,often epiphytic tropical Old World ferns
+13458,Platyctenea order_Platyctenea,an order of Tentaculata
+13459,Platyhelminthes phylum_Platyhelminthes,flatworms
+13460,Platylobium genus_Platylobium,small genus of Australian evergreen leguminous shrubs or subshrubs
+13461,Platymiscium genus_Platymiscium,genus of tropical American trees: quira
+13462,Platypoecilus genus_Platypoecilus,platys
+13463,Platyrrhini superfamily_Platyrrhini,New World monkeys: capuchin; douroucouli; howler monkey; saki; spider monkey; squirrel monkey; titi; uakari; woolly monkey; marmoset; tamarin
+13464,Platystemon genus_Platystemon,one species: creamcups
+13465,Plautus Titus_Maccius_Plautus,comic dramatist of ancient Rome (253?-184 BC)
+13466,Plautus genus_Plautus,a genus of Alcidae
+13467,Plecoptera order_Plecoptera,stoneflies
+13468,Plecotus genus_Plecotus,a genus of Vespertilionidae
+13469,Plectania genus_Plectania,genus of fungi in the family Pezizaceae closely related to and often included in genus Peziza
+13470,Plectognathi order_Plectognathi order_Tetraodontiformes,boxfishes; filefishes; globefishes; ocean sunfishes; triggerfishes; puffers
+13471,Plectomycetes class_Plectomycetes,class of fungi in which the fruiting body is a cleistothecium (it releases spores only on decay or disintegration)
+13472,Plectophera,in some former classifications: name for the Ephemeroptera
+13473,Plectorrhiza genus_Plectorrhiza,small genus of Australian orchids
+13474,Plectrophenax genus_Plectrophenax,snow bunting
+13475,Pleiades,(Greek mythology) 7 daughters of Atlas and half-sisters of the Hyades; placed among the stars to save them from the pursuit of Orion
+13476,Pleiades,a star cluster in the constellation Taurus
+13477,Pleione genus_Pleione,small genus of dwarf orchids; India to Thailand and Taiwan
+13478,Pleiospilos genus_Pleiospilos,perennial succulents of South Africa
+13479,Pleistocene Pleistocene_epoch Glacial_epoch,from two million to 11 thousand years ago; extensive glaciation of the northern hemisphere; the time of human evolution
+13480,Plesianthropus genus_Plesianthropus,former name for the genus Australopithecus
+13481,Plesiosauria suborder_Plesiosauria,any of the plesiosaurs
+13482,Plethodon genus_Plethodon,type genus of the Plethodontidae
+13483,Plethodontidae family_Plethodontidae,small mostly terrestrial New World salamanders having neither lungs nor gills as adults
+13484,Pleurobrachia genus_Pleurobrachia,sea gooseberries
+13485,Pleurobrachiidae family_Pleurobrachiidae,sea gooseberries
+13486,Pleuronectes genus_Pleuronectes,type genus of the Pleuronectidae
+13487,Pleuronectidae family_Pleuronectidae,righteye flounders
+13488,Pleurosorus genus_Pleurosorus,small genus comprising terrestrial ferns; found in Chile and Spain and Morocco and Australia and New Zealand
+13489,Pleurotus genus_Pleurotus,agarics with white spores and caps having an eccentric stem; an important mushroom of Japan
+13490,Plevna Pleven,the town was taken from the Turks by the Russians in 1877 after a siege of 143 days
+13491,Plexiglas plexiglass,a light transparent weather resistant thermoplastic
+13492,Plicatoperipatus genus_Plicatoperipatus,a genus of Peripatidae
+13493,Plicatoperipatus_jamaicensis,a kind of onychophoran
+13494,Plinian_eruption,a volcanic eruption in which a stream of gas and ash is violently ejected to a height of several miles
+13495,Pliny Pliny_the_Elder Gaius_Plinius_Secundus,Roman author of an encyclopedic natural history; died while observing the eruption of Vesuvius (23-79)
+13496,Pliny Pliny_the_Younger Gaius_Plinius_Caecilius_Secundus,Roman writer and nephew of Pliny the Elder; author of books of letters that commented on affairs of the day (62-113)
+13497,Pliocene Pliocene_epoch,from 13 million to 2 million years ago; growth of mountains; cooling of climate; more and larger mammals
+13498,Ploceidae family_Ploceidae,weaverbirds
+13499,Ploceus genus_Ploceus,type genus of the Ploceidae
+13500,Plotinus,Roman philosopher (born in Egypt) who was the leading representative of Neoplatonism (205-270)
+13501,Plott_hound,a brindle-coated American hound used in hunting bears and wild boars
+13502,Plovdiv Philippopolis,an ancient city in southern Bulgaria; commercial center of an agricultural region
+13503,Plumbaginaceae family_Plumbaginaceae leadwort_family sea-lavender_family,perennial herbs and shrubs and lianas; cosmopolitan especially in saltwater areas
+13504,Plumbaginales order_Plumbaginales,coextensive with the family Plumbaginaceae; usually included in order Primulales
+13505,Plumeria genus_Plumeria Plumiera,deciduous shrubs and trees of tropical America having branches like candelabra and fragrant white or pink flowers
+13506,Plutarch,Greek biographer who wrote Parallel Lives (46?-120 AD)
+13507,Pluteaceae family_Pluteaceae,a family of fungi belonging to the order Agaricales
+13508,Pluteus genus_Pluteus roof_mushroom,a large genus of fungi belonging to the family Pluteaceae; the shape of the cap resembles a roof; often abundant early in the summer
+13509,Pluteus_aurantiorugosus,an agaric with a brilliant scarlet cap and a slender stalk
+13510,Pluteus_magnus sawdust_mushroom,an edible agaric found in piles of hardwood sawdust; the caps are black and coarsely wrinkled
+13511,Pluto,a cartoon character created by Walt Disney
+13512,Pluto,a large asteroid that was once thought to be the farthest known planet from the sun; it has an elliptical orbit; "Pluto was discovered by Clyde Tombaugh in 1930"
+13513,Pluto Dis Dis_Pater Orcus,(Roman mythology) god of the underworld; counterpart of Greek Hades
+13514,Pluvialis genus_Pluvialis,golden plovers
+13515,Pluvianus genus_Pluvianus,coursers
+13516,Pluviose,fifth month of the Revolutionary calendar (January and February); the rainy month
+13517,Plymouth,a town in Massachusetts founded by Pilgrims in 1620
+13518,Plymouth_Colony,colony formed by the Pilgrims when they arrived at Plymouth Rock in 1620; it was absorbed into the Massachusetts Bay Colony in 1691
+13519,Plymouth_Rock,a boulder in Plymouth supposed to be where the Pilgrims disembarked from the Mayflower
+13520,Plymouth_Rock,an American breed of domestic fowl
+13521,Po Po_River,a European river; flows into the Adriatic Sea
+13522,Poa genus_Poa,chiefly perennial grasses of cool temperate regions
+13523,Pobeda_Peak Pobedy_Peak,a mountain peak in the Tien Shan mountains in northern India (24,406 feet high)
+13524,Pocahontas Matoaka Rebecca_Rolfe,a Powhatan woman (the daughter of Powhatan) who befriended the English at Jamestown and is said to have saved Captain John Smith's life (1595-1617)
+13525,Pocatello,a university town in southeastern Idaho
+13526,Podalyria genus_Podalyria,genus of South African leguminous shrubs often placed in genus Sophora
+13527,Podargidae family_Podargidae,frogmouths
+13528,Podargus genus_Podargus,type genus of the Podargidae
+13529,Podaxaceae,a variety of gastromycete
+13530,Podiceps genus_Podiceps,type genus of the Podicipedidae: grebes
+13531,Podicipedidae family_Podicipedidae,coextensive with the order Podicipitiformes
+13532,Podicipitiformes order_Podicipitiformes Podicipediformes order_Podicipediformes Colymbiformes order_Colymbiformes,grebes
+13533,Podilymbus genus_Podilymbus,a genus of Podicipedidae
+13534,Podocarpaceae family_Podocarpaceae podocarpus_family,gymnosperms with simple persistent needlelike or scalelike leaves
+13535,Podocarpus genus_Podocarpus,evergreen trees or shrubs; sometimes classified as member of the family Taxaceae
+13536,Podophyllum genus_Podophyllum,perennial rhizomatous herbs
+13537,Poe Edgar_Allan_Poe,United States writer and poet (1809-1849)
+13538,Poeciliidae family_Poeciliidae,topminnows
+13539,Poecilocapsus genus_Poecilocapsus,a genus of Miridae
+13540,Poecilogale genus_Poecilogale,muishonds
+13541,Poephila genus_Poephila,grassfinches
+13542,Pogonophora phylum_Pogonophora,beard worms
+13543,Pogostemon genus_Pogostemon,genus of Asiatic shrubs or trees whose leaves yield a fragrant oil
+13544,Poinciana subgenus_Poinciana,small subgenus of ornamental tropical shrubs or trees; not recognized in some classifications
+13545,Poisson_distribution,a theoretical distribution that is a good approximation to the binomial distribution when the probability is small and the number of trials is large
+13546,Poitier Sidney_Poitier,United States film actor and director (born in 1927)
+13547,Poitiers battle_of_Poitiers,the battle in 1356 in which the English under the Black Prince defeated the French
+13548,Poitou-Charentes Poitou,a low-lying region of west central France on the Bay of Biscay
+13549,Pokomo,a Bantu language spoken in the Kenyan coastal areas of East Africa
+13550,Poland Republic_of_Poland Polska,a republic in central Europe; the invasion of Poland by Germany in 1939 started World War II
+13551,Polanisia genus_Polanisia,widely distributed herbs having palmate leaves and creamy white to or pink to magenta flowers with many stamens of unequal length
+13552,Polaris North_Star pole_star polar_star polestar,the brightest star in Ursa Minor; at the end of the handle of the Little Dipper; the northern axis of the earth points toward it
+13553,Polaroid,(trade mark) a plastic film that can polarize a beam of light; often used in sunglasses to eliminate glare
+13554,Polaroid_camera Polaroid_Land_camera,a camera that develops and produces a positive print within seconds
+13555,Pole,a native or inhabitant of Poland
+13556,Polemoniaceae family_Polemoniaceae phlox_family,a widely distributed family of chiefly herbaceous plants of the order Polemoniales; often have showy flowers
+13557,Polemoniales order_Polemoniales,Polemoniaceae; Solanaceae; Boraginaceae; Labiatae; Lentibulariaceae; Pedaliaceae; in some classifications includes the order Scrophulariales
+13558,Polianthes genus_Polianthes,genus of perennial tuberous herbs having lily-like flowers; Mexico; sometimes placed in family Amaryllidaceae
+13559,Polioptila genus_Polioptila,New World gnatcatchers
+13560,Polish,the Slavic language of Poland
+13561,Polish_monetary_unit,monetary unit in Poland
+13562,Polistes genus_Polistes,a genus of Vespidae
+13563,Polistes_annularis,a variety of paper wasp
+13564,Polk James_Polk James_K._Polk James_Knox_Polk President_Polk,11th President of the United States; his expansionism led to the Mexican War and the annexation of California and much of the southwest (1795-1849)
+13565,Pollachius genus_Pollachius,pollack
+13566,Pollack Sydney_Pollack,United States filmmaker (born in 1934)
+13567,Pollock Jackson_Pollock,United States artist famous for painting with a drip technique; a leader of abstract expressionism in America (1912-1956)
+13568,Pollux,the brightest star in Gemini; close to Castor
+13569,Polo Marco_Polo,Venetian traveler who explored Asia in the 13th century and served Kublai Khan (1254-1324)
+13570,Polyangiaceae family_Polyangiaceae Myxobacteriaceae family_Myxobacteriaceae,bacteria living mostly in soils and on dung
+13571,Polyangium genus_Polyangium,type genus of the family Polyangiaceae: myxobacteria with rounded fruiting bodies enclosed in a membrane
+13572,Polyborus genus_Polyborus,a genus of Falconidae
+13573,Polybotrya genus_Polybotrya Polybotria genus_Polybotria,tropical American ferns; usually terrestrial when young but scandent later
+13574,Polycarp Saint_Polycarp St._Polycarp,Greek bishop of Smyrna who refused to recant his Christian faith and was burned to death by pagans (circa 69-155)
+13575,Polychaeta class_Polychaeta,marine annelid worms
+13576,Polycirrus genus_Polycirrus,genus of soft-bodied polychete marine worms
+13577,Polydactylus genus_Polydactylus,a genus of Polynemidae
+13578,Polyergus genus_Polyergus,Amazon ants
+13579,Polygala genus_Polygala,type genus of the Polygalaceae: milkwort; senega; snakeroot
+13580,Polygalaceae family_Polygalaceae milkwort_family,trees, shrubs, and herbs widely distributed throughout both hemispheres
+13581,Polygonaceae family_Polygonaceae buckwheat_family,a family of plants of order Polygonales chiefly of the north temperate zone; includes the buckwheats
+13582,Polygonales order_Polygonales,coextensive with the family Polygonaceae,
+13583,Polygonatum genus_Polygonatum,sometimes placed in subfamily Convallariaceae
+13584,Polygonia genus_Polygonia,comma butterflies
+13585,Polygonum genus_Polygonum,diverse genus of herbs or woody subshrubs of north temperate regions
+13586,Polyhymnia,(Greek mythology) the Muse of singing and mime and sacred dance
+13587,Polymastigina order_Polymastigina,small usually parasitic flagellates
+13588,Polynemidae family_Polynemidae,threadfins
+13589,Polynesia,the islands in the eastern part of Oceania
+13590,Polynesian,a native or inhabitant of Polynesia
+13591,Polynesian_tattler Heteroscelus_incanus,tattler of Pacific coastal regions
+13592,Polyodon genus_Polyodon,type genus of the Polyodontidae
+13593,Polyodontidae family_Polyodontidae,paddlefishes
+13594,Polypedates genus_Polypedates,type genus of the Polypedatidae
+13595,Polypedatidae family_Polypedatidae,Old World tree frogs
+13596,Polyplacophora class_Polyplacophora,small class of marine mollusks comprising the chitons; sometimes considered an order of the subclass Amphineura
+13597,Polypodiaceae family_Polypodiaceae,ferns: a large family that in some classification systems has been subdivided into several families (including Aspleniaceae and Blechnaceae and Davalliaceae and Dennstaedtiaceae and Dryopteridaceae and Oleandraceae and Pteridaceae)
+13598,Polypodium genus_Polypodium,a genus of ferns belonging to the family Polypodiaceae and having rounded naked sori
+13599,Polyporaceae family_Polyporaceae,fungi that become corky or woody with age, often forming shelflike growths on trees
+13600,Polyporus genus_Polyporus,type genus of the Polyporaceae; includes important pathogens of e.g. birches and conifers
+13601,Polyporus_squamosus scaly_polypore,a fungus with a lateral stalk (when there is a stalk) and a scaly cap that becomes nearly black in maturity; widely distributed in the northern hemisphere
+13602,Polyporus_tenuiculus,a fungus with a whitish kidney-shaped cap and elongated pores; causes white rot in dead hardwoods
+13603,Polyprion genus_Polyprion,wreckfish
+13604,Polystichum genus_Polystichum,small to medium-sized terrestrial ferns especially holly ferns; in some classification systems placed in Polypodiaceae
+13605,Pomacanthus genus_Pomacanthus,angelfishes
+13606,Pomacentridae family_Pomacentridae,damselfishes
+13607,Pomacentrus genus_Pomacentrus,type genus of the Pomacentridae: damselfishes
+13608,Pomaderris genus_Pomaderris,a genus of Australasian shrubs and trees
+13609,Pomatomidae family_Pomatomidae,food and game fishes related to pompanos
+13610,Pomatomus genus_Pomatomus,type genus of the Pomatomidae
+13611,Pomeranian,breed of very small compact long-haired dogs of the spitz type
+13612,Pomo,a member of an Indian people of northern California living along the Russian River valley and adjacent Pacific coast
+13613,Pomo,the Kulanapan language spoken by the Pomo
+13614,Pomolobus genus_Pomolobus,genus to which the alewife is sometimes assigned
+13615,Pomoxis genus_Pomoxis,crappies
+13616,Pompadour Marquise_de_Pompadour Jeanne_Antoinette_Poisson,French noblewoman who was the lover of Louis XV, whose policies she influenced (1721-1764)
+13617,Pompeii,ancient city to the southeast of Naples that was buried by a volcanic eruption from Vesuvius
+13618,Pompey Gnaeus_Pompeius_Magnus Pompey_the_Great,Roman general and statesman who quarrelled with Caesar and fled to Egypt where he was murdered (106-48 BC)
+13619,Ponca Ponka,a member of the Siouan people of the Missouri river valley in northeastern Nebraska
+13620,Ponca Ponka,the Dhegiha dialect spoken by the Ponca
+13621,Ponce_de_Leon Juan_Ponce_de_Leon,Spanish explorer who accompanied Columbus on his second trip in 1493; in 1513 he discovered Florida while searching for the legendary Fountain of Youth (1460-1521)
+13622,Poncirus genus_Poncirus,one species: trifoliate orange
+13623,Pongamia genus_Pongamia,one species: Indian beech
+13624,Pongidae family_Pongidae,usually considered as comprising orangutans; gorillas; chimpanzees; and sometimes gibbons
+13625,Pongo genus_Pongo,type genus of the family Pongidae: orangutans
+13626,Pons Lily_Pons Alice-Josephine_Pons,United States coloratura soprano (born in France) (1904-1976)
+13627,Ponselle Rosa_Ponselle Rosa_Melba_Ponselle,United States soprano (1897-1981)
+13628,Ponte_25_de_Abril,a suspension bridge across the Tagus River at Lisbon
+13629,Pontederia genus_Pontederia,pickerelweed
+13630,Pontederiaceae family_Pontederiaceae pickerelweed_family,aquatic or bog plants
+13631,Pontiac,famous chief of the Ottawa who led an unsuccessful rebellion against the British (1715-1769)
+13632,Pontus,an ancient region of northern Asia Minor on the Black Sea; it reached its height under Mithridates VI but was later incorporated into the Roman Empire
+13633,Pontus Pontos,(Greek mythology) ancient personification of the sea; father of Nereus
+13634,Pooecetes genus_Pooecetes,a genus of Fringillidae
+13635,Pop_Art,a school of art that emerged in the United Kingdom in the 1950s and became prevalent in the United States and the United Kingdom in the 1960s; it imitated the techniques of commercial art (as the soup cans of Andy Warhol) and the styles of popular culture and the mass media
+13636,Pope Alexander_Pope,English poet and satirist (1688-1744)
+13637,Popillia genus_Popillia,a genus of Scarabaeidae
+13638,Poplar_Bluff,a town in southeast Missouri
+13639,Popper Karl_Popper Sir_Karl_Raimund_Popper,British philosopher (born in Austria) who argued that scientific theories can never be proved to be true, but are tested by attempts to falsify them (1902-1994)
+13640,Popular_Front_for_the_Liberation_of_Palestine PFLP,a terrorist group of limited popularity formed in 1967 after the Six-Day War; combined Marxist-Leninist ideology with Palestinian nationalism; used terrorism to gain attention for their cause; hoped to eliminate the state of Israel
+13641,Popular_Front_for_the_Liberation_of_Palestine-General_Command PFLP-GC,a Marxist-Leninist terrorist organization that conducted several attacks in western Europe
+13642,Popular_Struggle_Front PSF,a terrorist group of radical Palestinians who split with al-Fatah in 1967 but now have close relations with al-Fatah; staged terrorist attacks against Israel across the Lebanese border
+13643,Population_Commission,the commission of the Economic and Social Council of the United Nations that is concerned with population control
+13644,Populus genus_Populus,a genus of trees of the family Salicaceae that is found in the northern hemisphere; poplars
+13645,Porcellio genus_Porcellio,Old World genus of isopod crustaceans
+13646,Porcellionidae family_Porcellionidae,sow bugs
+13647,Porifera phylum_Porifera,coextensive with the subkingdom Parazoa: sponges
+13648,Poronotus genus_Poronotus,a genus of Stromateidae
+13649,Porphyra genus_Porphyra,a genus of protoctist
+13650,Porphyrio genus_Porphyrio,Old World purple gallinules
+13651,Porphyrula genus_Porphyrula,American purple gallinules
+13652,Port-au-Prince Haitian_capital,the capital and largest city of Haiti
+13653,Port_Arthur,a battle in the Chino-Japanese War (1894); Japanese captured the port and fortifications from the Chinese
+13654,Port_Jackson_fig rusty_rig little-leaf_fig Botany_Bay_fig Ficus_rubiginosa,Australian tree resembling the banyan often planted for ornament; introduced into South Africa for brushwood
+13655,Port_Jackson_heath Epacris_purpurascens,small shrub of southern and western Australia having pinkish to rosy purple tubular flowers
+13656,Port_Jackson_pine Callitris_cupressiformis,Australian cypress pine having globular cones
+13657,Port_Louis,capital and chief port of Mauritius; located on the northwestern coast of the island
+13658,Port_Moresby capital_of_Papua_New_Guinea,the administrative capital and largest city of Papua New Guinea
+13659,Port_Orford_cedar,the wood of the Port Orford cedar tree
+13660,Port_Sudan,port city in Sudan on the Red Sea
+13661,Port_Vila Vila capital_of_Vanuatu,capital of Vanuatu
+13662,Port_of_Spain Port-of-Spain capital_of_Trinidad_and_Tobago,the capital and largest city of Trinidad and Tobago on the west coast of the island of Trinidad
+13663,Porte Sublime_Porte,the Ottoman court in Constantinople
+13664,Porter Cole_Porter Cole_Albert_Porter,United States composer and lyricist of musical comedies (1891-1946)
+13665,Porter Katherine_Anne_Porter,United States writer of novels and short stories (1890-1980)
+13666,Porter William_Sydney_Porter O._Henry,United States writer of short stories whose pen name was O. Henry (1862-1910)
+13667,Portland,freshwater port and largest city in Oregon; located in northwestern Oregon on the Willamette River which divides the city into east and west sections; renowned for its beautiful natural setting among the mountains
+13668,Portland,largest city in Maine in the southwestern corner of the state
+13669,Porto Oporto,port city in northwest Portugal; noted for port wine
+13670,Porto_Novo capital_of_Benin,the capital of Benin in southwestern part of country on a coastal lagoon
+13671,Portsmouth,a port city in southeastern Virginia on the Elizabeth River opposite Norfolk; naval base; shipyards
+13672,Portsmouth,a port town in southeastern New Hampshire on the Atlantic Ocean
+13673,Portsmouth Pompey,a port city in southern England on the English Channel; Britain's major naval base
+13674,Portugal Portuguese_Republic,a republic in southwestern Europe on the Iberian Peninsula; Portuguese explorers and colonists in the 15th and 16th centuries created a vast overseas empire (including Brazil)
+13675,Portuguese,a native or inhabitant of Portugal
+13676,Portuguese,the Romance language spoken in Portugal and Brazil
+13677,Portuguese_escudo escudo,formerly the basic monetary unit of Portugal; equal to 100 centavo
+13678,Portuguese_man-of-war man-of-war jellyfish,large siphonophore having a bladderlike float and stinging tentacles
+13679,Portuguese_monetary_unit,monetary unit in Portugal
+13680,Portulacaceae family_Portulacaceae purslane_family,family of usually succulent herbs; cosmopolitan in distribution especially in Americas
+13681,Portunidae family_Portunidae,swimming crabs
+13682,Portunus genus_Portunus,type genus of the family Portunidae
+13683,Porzana genus_Porzana,spotted crakes
+13684,Poseidon,(Greek mythology) the god of the sea and earthquakes in ancient mythology; brother of Zeus and Hades and Hera; identified with Roman Neptune
+13685,Post C._W._Post Charles_William_Post,United States manufacturer of breakfast cereals and Postum (1854-1914)
+13686,Post Emily_Post Emily_Price_Post,United States female author who wrote a book and a syndicated newspaper column on etiquette (1872-1960)
+13687,Post Wiley_Post,United States aviator who in 1933 made the first solo flight around the world (1899-1935)
+13688,Post-It,brand name for a slip of notepaper that has an adhesive that allows it to stick to a surface and be removed without damaging the surface
+13689,Post-Office_box PO_Box POB call_box letter_box,a numbered compartment in a post office where mail is put to be called for
+13690,Postal_Rate_Commission,an independent federal agency that recommends changes in postal rates
+13691,Postimpressionist Post-impressionist,an artist of the Postimpressionist school who revolted against Impressionism
+13692,Postum,trade mark for a coffee substitute invented by C. W. Post and made with chicory and roasted grains
+13693,Potamogalidae family_Potamogalidae,otter shrews
+13694,Potamogeton genus_Potamogeton,a large genus of aquatic herbs found in quiet waters in temperate regions; leaves usually float on the water
+13695,Potamogetonaceae family_Potamogetonaceae pondweed_family,plants that grow in ponds and slow streams; sometimes includes family Zosteraceae
+13696,Potamophis genus_Potamophis,ground snakes
+13697,Potawatomi,a member of the Algonquian people originally of Michigan and Wisconsin
+13698,Potawatomi,the Algonquian language spoken by the Potawatomi
+13699,Potemkin Potyokin Grigori_Potemkin Grigori_Potyokin Grigori_Aleksandrovich_Potemkin,a Russian officer and politician who was a favorite of Catherine II and in 1762 helped her to seize power; when she visited the Crimea in 1787 he gave the order for sham villages to be built (1739-1791)
+13700,Potemkin_village,something that seems impressive but in fact lacks substance
+13701,Potentilla genus_Potentilla,chiefly perennial northern hemisphere herbs and shrubs: cinquefoil
+13702,Poterium genus_Poterium,a genus of thorny herbs or shrubs of the family Rosaceae
+13703,Potomac,term sometimes used to refer to Washington, D.C.
+13704,Potomac Potomac_River,a river in the east central United States; rises in West Virginia in the Appalachian Mountains and flows eastward, forming the boundary between Maryland and Virginia, to the Chesapeake Bay
+13705,Potoroinae subfamily_Potoroinae,rat kangaroos
+13706,Potorous genus_Potorous,potoroos
+13707,Potos genus_Potos,a genus of Procyonidae
+13708,Potsdam,a city in northeastern Germany; site of the Potsdam Conference in the summer of 1945
+13709,Potsdam_Conference,a conference held in Potsdam in the summer of 1945 where Truman, Stalin, and Churchill drew up plans for the administration of Germany and Poland after World War II ended
+13710,Pott's_disease,TB of the spine with destruction of vertebrae resulting in curvature of the spine
+13711,Poulenc Francis_Poulenc,French pianist and composer (1899-1963)
+13712,Pound Ezra_Pound Ezra_Loomis_Pound,United States writer who lived in Europe; strongly influenced the development of modern literature (1885-1972)
+13713,Poussin Nicolas_Poussin,French painter in the classical style (1594-1665)
+13714,Pouteria genus_Pouteria,tropical American timber tree with edible fruit (canistel)
+13715,Powell Cecil_Frank_Powell,English physicist who discovered the pion (the first known meson) which is a subatomic particle involved in holding the nucleus together (1903-1969)
+13716,Powell Colin_Powell Colin_luther_Powell,United States general who was the first African American to serve as chief of staff; later served as Secretary of State under President George W. Bush (born 1937)
+13717,Powhatan,a member of the Algonquian people who formerly lived in eastern Virginia
+13718,Powhatan,the Algonquian language of the Powhatan
+13719,Powhatan Wahunsonacock,Indian chief and founder of the Powhatan confederacy of tribes in eastern Virginia; father of Pocahontas (1550?-1618)
+13720,Powys John_Cowper_Powys,British writer of novels about nature; one of three literary brothers (1872-1963)
+13721,Powys Llewelyn_Powys,British writer of essays; one of three literary brothers (1884-1939)
+13722,Powys Theodore_Francis_Powys,British writer of allegorical novels; one of three literary brothers (1875-1953)
+13723,Poyang,a lake in central China that is connected to the Chang Jiang by a canal
+13724,Praetorian_Guard,the elite bodyguard of a Roman Emperor in ancient Rome
+13725,Praetorian_Guard Praetorian,a member of the Praetorian Guard
+13726,Prague Praha Prag Czech_capital,the capital and largest city of the Czech Republic in the western part of the country; a cultural and commercial center since the 14th century
+13727,Praia Cidade_de_Praia capital_of_Cape_Verde,the capital of Cape Verde on Sao Tiago Island
+13728,Prairial,ninth month of the Revolutionary calendar (May and June); the month of meadows
+13729,Prajapati,Hindu god personifying a creative force; equivalent to Brahma
+13730,Prakrit,any of the modern Indic languages
+13731,Prakrit,any of the vernacular Indic languages of north and central India (as distinguished from Sanskrit) recorded from the 3rd century BC to the 4th century AD
+13732,Praunus genus_Praunus,a genus of Mysidae
+13733,Praxiteles,ancient Greek sculptor (circa 370-330 BC)
+13734,Prayer_of_Azariah_and_Song_of_the_Three_Children,an Apocryphal book consisting of text added to the Book of Daniel
+13735,Pre-Raphaelite,a painter or writer dedicated to restoring early Renaissance ideals
+13736,Preakness,an annual race for three-year-old horses; held at Pimlico in Baltimore, Maryland
+13737,Precambrian Precambrian_eon Precambrian_aeon Precambrian_period,the eon following the Hadean time and preceding the Phanerozoic eon; from about 3,800 million years ago until 544 million years ago
+13738,Premium_Bond,a government bond that bears no interest or capital gains but enters the holder into lotteries
+13739,Prenanthes genus_Prenanthes,genus of North American and Asiatic perennial herbs having pinnatisect leaves small heads of drooping yellowish to purple flowers; sometimes includes species often placed in genus Nabalus
+13740,Presbyterian,a follower of Calvinism as taught in the Presbyterian Church
+13741,Presbyterian_Church,the Protestant denomination adhering to the views of John Calvin
+13742,Presbyterianism,the doctrines and practices of the Presbyterian Church: based in Calvinism
+13743,Presbytes genus_Presbytes mammal_Semnopithecus,langurs
+13744,Prescott,a town in central Arizona
+13745,President_of_the_United_States President Chief_Executive,the office of the United States head of state; "a President is elected every four years"
+13746,President_of_the_United_States United_States_President President Chief_Executive,the person who holds the office of head of state of the United States government; "the President likes to jog every morning"
+13747,Presidential_Directive,a directive issued by the President of the United States; usually addressed to all heads of departments and agencies
+13748,Presidents'_Day,the third Monday in February; commemorates both presidents Lincoln and Washington
+13749,Presley Elvis_Presley Elvis_Aron_Presley,United States rock singer whose many hit records and flamboyant style greatly influenced American popular music (1935-1977)
+13750,Pretender,a claimant to the throne or to the office of ruler (usually without just title)
+13751,Pretoria capital_of_South_Africa,city in the Transvaal; the seat of the executive branch of the government of South Africa
+13752,Priacanthidae family_Priacanthidae,small carnivorous percoid fishes found worldwide in tropical seas
+13753,Priacanthus genus_Priacanthus,type genus of the Priacanthidae
+13754,Priam,(Greek mythology) the last king of Troy; father of Hector and Paris and Cassandra
+13755,Priapus,(classical mythology) god of male procreative power and guardian of gardens and vineyards
+13756,Price Leontyne_Price Mary_Leontyne_Price,United States operatic soprano (born 1927)
+13757,Priestley Joseph_Priestley,English chemist who isolated many gases and discovered oxygen (independently of Scheele) (1733-1804)
+13758,Prima,used primarily as eating apples
+13759,Primates order_Primates,an animal order including lemurs and tarsiers and monkeys and apes and human beings
+13760,Primaxin,trade name for a parenteral antibiotic
+13761,Prime_Minister PM premier,the person who holds the position of head of the government in the United Kingdom
+13762,Primulaceae family_Primulaceae primrose_family,a dicotyledonous family of the order Primulales with a regular flower; widely distributed in the northern hemisphere
+13763,Primulales order_Primulales,Primulaceae; Theophrastaceae; Myrsinaceae; and (in some classifications) Plumbaginaceae
+13764,Primus_stove Primus,a portable paraffin cooking stove; used by campers
+13765,Prince-of-Wales'-heath Prince_of_Wales_heath Erica_perspicua,South African shrub grown for its profusion of white flowers
+13766,Prince_Albert,a man's double-breasted frock coat
+13767,Prince_Albert_yew Prince_Albert's_yew Saxe-gothea_conspicua,small yew having attractive foliage and partially weeping branches cultivated as an ornamental; mountains of southern Chile
+13768,Prince_Edward_Island,an island in the Gulf of Saint Lawrence; the smallest province of Canada
+13769,Prince_of_Wales,the male heir apparent of the British sovereign
+13770,Princeton,a university town in central New Jersey
+13771,Princeton_University Princeton,a university in New Jersey
+13772,Principe,an island in the Gulf of Guinea that is part of Sao Tome and Principe
+13773,Prinia genus_Prinia,a genus of Sylviidae
+13774,Priodontes genus_Priodontes,solely the giant armadillo
+13775,Prionace genus_Prionace,blue sharks
+13776,Prionotus genus_Prionotus,a genus of Triglidae
+13777,Pristidae family_Pristidae,large primitive rays with elongated snouts
+13778,Pristis genus_Pristis,type genus of the Pristidae
+13779,Pritzelago genus_Pritzelago,chamois cress
+13780,Prix_Goncourt,an award given annually for contributions to French literature
+13781,Prix_de_Rome,an annual prize awarded by the French government in a competition of painters and artists and sculptors and musicians and architects; the winner in each category receives support for a period of study in Rome
+13782,Proboscidea genus_Proboscidea,in some classifications included in the genus Martynia and hence the two taxonomic names for some of the unicorn plants
+13783,Proboscidea order_Proboscidea,an order of animals including elephants and mammoths
+13784,Procavia genus_Procavia,type genus of the Procaviidae
+13785,Procaviidae family_Procaviidae,includes all recent members of the order Hyracoidea
+13786,Procellaria genus_Procellaria,type genus of the Procellariidae
+13787,Procellariidae family_Procellariidae,petrels; fulmars; shearwaters
+13788,Procellariiformes order_Procellariiformes,petrels; albatrosses; shearwaters; diving petrels
+13789,Prociphilus genus_Prociphilus,a genus of Aphididae
+13790,Procnias genus_Procnias,bellbirds
+13791,Procrustes,(Greek mythology) a mythical giant who was a thief and murderer; he would capture people and tie them to an iron bed, stretching them or hacking off their legs to make them fit; was killed by Theseus
+13792,Procyon,the brightest star in Canis Minor
+13793,Procyon genus_Procyon,the type genus of the family Procyonidae: raccoons
+13794,Procyonidae family_Procyonidae,raccoons; coatis; cacomistles; kinkajous; and sometimes pandas
+13795,Progne genus_Progne,a genus of Hirundinidae
+13796,Progressive_Party Bull_Moose_Party,a former political party in the United States; founded by Theodore Roosevelt during the presidential campaign of 1912; its emblem was a picture of a bull moose
+13797,Prohibition_Party,a political party in the United States; formed in 1869 to oppose the manufacture and sale of alcoholic beverages
+13798,Prokhorov Aleksandr_Prokhorov Aleksandr_Mikjailovich_Prokhorov,Russian physicist whose research into ways of moving electrons around atoms led to the development of masers and lasers for producing high-intensity radiation (1916-2002)
+13799,Prokofiev Sergei_Sergeyevich_Prokofiev,Russian composer of ballets and symphonies and operas (1891-1953)
+13800,Prolog logic_programing logic_programming,a computer language designed in Europe to support natural language processing
+13801,Prometheus,(Greek mythology) the Titan who stole fire from Olympus and gave it to mankind; Zeus punished him by chaining him to a rock where an eagle gnawed at his liver until Hercules rescued him
+13802,Promised_Land,the goal towards which Christians strive
+13803,Prophets Nebiim,the second of three divisions of the Hebrew Scriptures
+13804,Prosauropoda suborder_Prosauropoda,the earliest known dinosaurs
+13805,Proserpina Proserpine,goddess of the underworld; counterpart of Greek Persephone
+13806,Prosimii suborder_Prosimii,not used in all classifications; in some classifications considered coextensive with the Lemuroidea; in others includes both Lemuroidea and Tarsioidea
+13807,Prosopis genus_Prosopis,genus of tropical or subtropical branching shrubs or trees: mesquite
+13808,Prosopium genus_Prosopium,whitefishes
+13809,Proteaceae family_Proteaceae protea_family,large family of Australian and South African shrubs and trees with leathery leaves and clustered mostly tetramerous flowers; constitutes the order Proteales
+13810,Proteales order_Proteales,coextensive with the family Proteaceae
+13811,Proteidae family_Proteidae,mud puppies
+13812,Proteles genus_Proteles,aardwolf
+13813,Proterochampsa genus_Proterochampsa,early archosaurian carnivore
+13814,Proterozoic Proterozoic_eon Proterozoic_aeon,from 2,500 to 544 million years ago; bacteria and fungi; primitive multicellular organisms
+13815,Protestant,an adherent of Protestantism
+13816,Protestant_Church Protestant,the Protestant churches and denominations collectively
+13817,Protestant_denomination,group of Protestant congregations
+13818,Protestantism,the theological system of any of the churches of western Christendom that separated from the Roman Catholic Church during the Reformation
+13819,Proteus,(Greek mythology) a prophetic god who served Poseidon; was capable of changing his shape at will
+13820,Proteus genus_Proteus,type genus of the Proteidae
+13821,Protista division_Protista,eukaryotic one-celled living organisms distinct from multicellular plants and animals: protozoa, slime molds, and eukaryotic algae
+13822,Protium genus_Protium,genus of chiefly tropical American trees having fragrant wood and yielding gum elemi
+13823,Protium_guianense,tropical American tree
+13824,Protium_heptaphyllum,tropical American tree
+13825,Proto-Indo_European PIE,a prehistoric unrecorded language that was the ancestor of all Indo-European languages
+13826,Proto-Norse,the Germanic language of Scandinavia up until about 700
+13827,Protoctista kingdom_Protoctista,in most modern classifications, replacement for the Protista; includes: Protozoa; Euglenophyta; Chlorophyta; Cryptophyta; Heterokontophyta; Rhodophyta; unicellular protists and their descendant multicellular organisms: regarded as distinct from plants and animals
+13828,Prototheria subclass_Prototheria,echidnas; platypus
+13829,Protozoa phylum_Protozoa,in some classifications considered a superphylum or a subkingdom; comprises flagellates; ciliates; sporozoans; amoebas; foraminifers
+13830,Protropin,trade name of a synthetic human growth hormone given to children deficient in the hormone; use by athletes and weightlifters is banned
+13831,Protura order_Protura,minute wingless arthropods: telsontails
+13832,Proudhon Pierre_Joseph_Proudhon,French socialist who argued that property is theft (1809-1865)
+13833,Proust Marcel_Proust,French novelist (1871-1922)
+13834,Provencal Occitan,the medieval dialects of Langue d'oc (southern France)
+13835,Provence,a former province of southeastern France; now administered with Cote d'Azur
+13836,Proverbs Book_of_Proverbs,an Old Testament book consisting of proverbs from various Israeli sages (including Solomon)
+13837,Providence capital_of_Rhode_Island,the capital and largest city of Rhode Island; located in northeastern Rhode Island on Narragansett Bay; site of Brown University
+13838,Provo,a city in north central Utah settled by Mormons
+13839,Proxima Proxima_Centauri,the nearest star to the sun; distance: 4.3 light years
+13840,Prudhoe_Bay,a bay on the northern coast of Alaska where oil was discovered in 1968
+13841,Prumnopitys genus_Prumnopitys,mostly dioecious evergreen conifers; leaves are softer than in Podocarpus
+13842,Prunella genus_Prunella,small genus of perennial mostly Eurasian having terminal spikes of small purplish or white flowers
+13843,Prunella genus_Prunella,type genus of the Prunellidae
+13844,Prunellidae family_Prunellidae,hedge sparrow
+13845,Prunus genus_Prunus,a genus of shrubs and trees of the family Rosaceae that is widely distributed in temperate regions
+13846,Prussia Preussen,a former kingdom in north-central Europe including present-day northern Germany and northern Poland; "in the 19th century Prussia led the economic and political unification of the German states"
+13847,Prussian,a German inhabitant of Prussia
+13848,Prussian_blue,a dark greenish-blue color
+13849,Przewalski's_horse Przevalski's_horse Equus_caballus_przewalskii Equus_caballus_przevalskii,wild horse of central Asia that resembles an ass; now endangered
+13850,Psalm,one of the 150 lyrical poems and prayers that comprise the Book of Psalms in the Old Testament; said to have been written by David
+13851,Psalms Book_of_Psalms,an Old Testament book consisting of a collection of 150 Psalms
+13852,Psalter Book_of_Psalms,a collection of Psalms for liturgical use
+13853,Psaltriparus genus_Psaltriparus,a genus of Paridae
+13854,Psenes genus_Psenes,a genus of Stromateidae
+13855,Psephurus genus_Psephurus,a genus of Polyodontidae
+13856,Psetta genus_Psetta,a genus of Bothidae
+13857,Psettichthys genus_Psettichthys,a genus of Soleidae
+13858,Pseudacris genus_Pseudacris,chorus frogs
+13859,Pseudaletia genus_Pseudaletia,moths whose larvae are armyworms
+13860,Pseudechis genus_Pseudechis,venomous Australian blacksnakes
+13861,Pseudemys genus_Pseudemys,sliders; red-bellied terrapin
+13862,Pseudepigrapha,52 texts written between 200 BC and AD 200 but ascribed to various prophets and kings in the Hebrew scriptures; many are apocalyptic in nature
+13863,Pseudobombax genus_Pseudobombax,tropical American deciduous shrubs or small trees
+13864,Pseudococcidae family_Pseudococcidae,scalelike insects: mealybugs
+13865,Pseudococcus genus_Pseudococcus,type genus of the Pseudococcidae
+13866,Pseudocolus genus_Pseudocolus,a genus of fungi belonging to the family Clathraceae
+13867,Pseudolarix genus_Pseudolarix,one species: golden larch
+13868,Pseudomonadales order_Pseudomonadales,one of two usually recognized orders of true bacteria; Gram-negative spiral or spherical or rod-shaped bacteria usually motile by polar flagella; some contain photosynthetic pigments
+13869,Pseudomonas genus_Pseudomonas,type genus of the family Pseudomonodaceae
+13870,Pseudomonas_pyocanea,a species of aerobic bacteria
+13871,Pseudomonodaceae family_Pseudomonodaceae,rod-shaped Gram-negative bacteria; include important plant and animal pathogens
+13872,Pseudopleuronectes genus_Pseudopleuronectes,a genus of Pleuronectidae
+13873,Pseudoryx genus_Pseudoryx,species of large cow-like mammals of Vietnam discovered by scientists in 1992
+13874,Pseudotaxus genus_Pseudotaxus,one species
+13875,Pseudotsuga genus_Pseudotsuga,douglas fir; closely related to genera Larix and Cathaya
+13876,Pseudowintera genus_Pseudowintera Wintera genus_Wintera,evergreen shrubs or small trees of Australia and New Zealand
+13877,Psidium genus_Psidium,guavas
+13878,Psilophytaceae family_Psilophytaceae,Paleozoic plants
+13879,Psilophytales order_Psilophytales,Paleozoic simple dichotomously branched plants of Europe and eastern Canada including the oldest known vascular land plants
+13880,Psilopsida class_Psilopsida Psilotatae class_Psilotatae,whisk ferns; comprising the family Psilotaceae or Psilotatae: vascular plants with no roots, partial if any leaf differentiation, and rudimentary spore sacs
+13881,Psilotaceae family_Psilotaceae,small family of lower ferns having nearly naked stems and minute scalelike leaves
+13882,Psilotales order_Psilotales,lower vascular plants having dichotomously branched sporophyte divided into aerial shoot and rhizome and lacking true roots
+13883,Psilotum genus_Psilotum,type genus of the Psilotaceae
+13884,Psithyrus genus_Psithyrus,a large bee that resembles the bumblebee but lacks pollen-collecting apparatus and a worker caste
+13885,Psittacidae family_Psittacidae,coextensive with the order Psittaciformes
+13886,Psittaciformes order_Psittaciformes,an order of birds including parrots and amazons and cockatoos and lorikeets and lories and macaws and parakeets
+13887,Psittacula genus_Psittacula,a genus of Psittacidae
+13888,Psittacus genus_Psittacus,type genus of the Psittacidae: usually restricted to the African grey
+13889,Psocidae family_Psocidae,a family of small soft-bodied insects that feed on decaying vegetation; related to booklice
+13890,Psocoptera order_Psocoptera Corrodentia order_Corrodentia,an order of insects: includes booklice and bark-lice
+13891,Psophia genus_Psophia,type genus of the Psophiidae: trumpeters
+13892,Psophiidae family_Psophiidae,trumpeters
+13893,Psophocarpus genus_Psophocarpus,species of tropical Asian and African climbing herbs
+13894,Psoralea genus_Psoralea,widely distributed genus of herbs or shrubs with glandular compound leaves and spicate or racemose purple or white flowers
+13895,Psyche,(Greek mythology) a beautiful princess loved by Cupid who visited her at night and told her she must not try to see him; became the personification of the soul
+13896,Psychodidae family_Psychodidae,very small two-winged flies with hairy wings that develop in moss and damp vegetable matter: sand flies
+13897,Psychopsis genus_Psychopsis,epiphytic orchids of Central and South America formerly included in genus Oncidium
+13898,Psychopsis_krameriana Oncidium_papilio_kramerianum,orchid of South and Central America having flowers similar to but smaller than Psychopsis papilio; sometimes placed in genus Oncidium
+13899,Psychopsis_papilio Oncidium_papilio,orchid of South America and Trinidad having large yellow and reddish-brown flowers; sometimes placed in genus Oncidium
+13900,Psychotria genus_Psychotria,tropical chiefly South American shrubs and trees
+13901,Psyllidae family_Psyllidae Chermidae family_Chermidae,jumping plant lice
+13902,Ptah,a major Egyptian god; shaper of the world; father of gods and men; worshipped especially at Memphis
+13903,Pteridaceae family_Pteridaceae,one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems; Pteridaceae is itself in turn sometimes further subdivided
+13904,Pteridium genus_Pteridium,a genus of ferns belonging to the family Dennstaedtiaceae
+13905,Pteridophyta division_Pteridophyta,containing all the vascular plants that do not bear seeds: ferns, horsetails, club mosses, and whisk ferns; in some classifications considered a subdivision of Tracheophyta
+13906,Pteridospermae group_Pteridospermae Pteridospermaphyta group_Pteridospermaphyta,used in some classification systems: a group of extinct fossil gymnosperms coextensive with the order Cycadofilicales
+13907,Pteridospermopsida class_Pteridospermopsida,extinct gymnosperms most of Carboniferous to Jurassic: seed ferns and allies
+13908,Pteriidae family_Pteriidae,pearl oysters
+13909,Pteris genus_Pteris,large genus of terrestrial ferns of tropics and subtropics; sometimes placed in family Polypodiaceae
+13910,Pteris_cretica,cultivated in many varieties as houseplants
+13911,Pternohyla genus_Pternohyla,burrowing tree frogs
+13912,Pterocarpus genus_Pterocarpus,genus of tropical trees or climbers having usually broadly winged pods
+13913,Pterocarya genus_Pterocarya,Asiatic nut trees: wing nuts
+13914,Pterocles genus_Pterocles,type genus of the Pteroclididae
+13915,Pteroclididae family_Pteroclididae,sandgrouses
+13916,Pterocnemia genus_Pterocnemia,a genus of birds of the family Rheidae
+13917,Pterodactylidae family_Pterodactylidae,a reptile family in the order Pterosauria
+13918,Pterodactylus genus_Pterodactylus,a reptile genus of Pterodactylidae
+13919,Pterois genus_Pterois,lionfishes
+13920,Pteropsida subdivision_Pteropsida,used in former classifications to include all ferns and flowering plants and divided into the three classes Filicinae and Gymnospermae and Angiospermae
+13921,Pteropus genus_Pteropus,a genus of Megachiroptera
+13922,Pteropus_capestratus,a variety of fruit bat
+13923,Pteropus_hypomelanus,a variety of fruit bat
+13924,Pterosauria order_Pterosauria,extinct flying reptiles: pterosaurs
+13925,Pterospermum genus_Pterospermum,genus of tropical Asian trees and shrubs
+13926,Pterostylis genus_Pterostylis,genus of terrestrial orchids of Australia and New Zealand and western Pacific
+13927,Ptilocercus genus_Ptilocercus,pentails
+13928,Ptilocrinus genus_Ptilocrinus,sea lilies
+13929,Ptilonorhynchidae family_Ptilonorhynchidae,bowerbirds
+13930,Ptilonorhynchus genus_Ptilonorhynchus,type genus of the Ptilonorhynchidae
+13931,Ptloris genus_Ptloris,a genus of Paradisaeidae
+13932,Ptolemaic_system,(astronomy) Ptolemy's model of the universe with the Earth at the center
+13933,Ptolemy Claudius_Ptolemaeus,Alexandrian astronomer (of the 2nd century) who proposed a geocentric system of astronomy that was undisputed until the late Renaissance
+13934,Ptolemy Ptolemaic_dynasty,an ancient dynasty of Macedonian kings who ruled Egypt from 323 BC to 30 BC; founded by Ptolemy I and ended with Cleopatra
+13935,Ptolemy_I,the king of Egypt who founded the Macedonian dynasty in Egypt; a close friend and general of Alexander the Great who took charge of Egypt after Alexander died (circa 367-285 BC)
+13936,Ptolemy_II,son of Ptolemy I and king of Egypt who was said to be responsible for the Septuagint (circa 309-247 BC)
+13937,Ptyas genus_Ptyas,Asian rat snakes
+13938,Ptychozoon genus_Ptychozoon,flying geckos
+13939,Puccini Giacomo_Puccini,Italian operatic composer noted for the dramatic realism of his operas (1858-1924)
+13940,Puccinia genus_Puccinia,type genus of the Pucciniaceae; a large genus of parasitic fungi including many that are destructive to various economic plants
+13941,Pucciniaceae family_Pucciniaceae,large important family of rust fungi
+13942,Puck Robin_Goodfellow,a mischievous sprite of English folklore
+13943,Puebla Puebla_de_Zaragoza Heroica_Puebla_de_Zaragoza,a city in south central Mexico (southeast of Mexico City) on the edge of central Mexican plateau
+13944,Pueblo,a member of any of about two dozen Native American peoples called `Pueblos' by the Spanish because they live in pueblos (villages built of adobe and rock)
+13945,Pueblo,a city in Colorado to the south of Colorado Springs
+13946,Pueraria genus_Pueraria,genus of woody Asiatic vines: kudzu
+13947,Puerto_Rican,a native or resident of Puerto Rico
+13948,Puerto_Rico Porto_Rico,the smallest and easternmost of the Greater Antilles in the Caribbean
+13949,Puerto_Rico Porto_Rico Commonwealth_of_Puerto_Rico PR,a self-governing commonwealth associated with the United States occupying the island of Puerto Rico
+13950,Puffinus genus_Puffinus,shearwaters
+13951,Puget_Sound,an inlet of the North Pacific in northwestern Washington State
+13952,Pugin Augustus_Welby_Northmore_Pugin,English architect who played a prominent role in the 19th century revival of Gothic architecture (1812-1852)
+13953,Puglia Apulia,a region in southeastern Italy on the Adriatic
+13954,Pujunan Maidu,a Penutian language spoken by the Maidu
+13955,Puka_Inti Sol_Rojo Red_Sun,a small but violent terrorist organization formed in Ecuador in the early 1990s; responsible for bombing several government buildings
+13956,Pulex genus_Pulex,type genus of the Pulicidae
+13957,Pulex_irritans,the most common flea attacking humans
+13958,Pulicaria genus_Pulicaria,genus of temperate Old World herbs: fleabane
+13959,Pulicidae family_Pulicidae,many common fleas attacking humans and domestic animals
+13960,Pulitzer Joseph_Pulitzer,United States newspaper publisher (born in Hungary) who established the Pulitzer prizes (1847-1911)
+13961,Pullman Pullman_car,luxurious passenger car; for day or night travel
+13962,Pulmonata order_Pulmonata,large order of gastropods usually breathing by means of a lung-like sac comprising most land snails and slugs and many freshwater snails
+13963,Pulsatilla genus_Pulsatilla,includes a group of plants that in some classifications are included in the genus Anemone: pasqueflowers
+13964,Punic,the Phoenician dialect of ancient Carthage
+13965,Punic_War,one of the three wars between Carthage and Rome that resulted in the destruction of Carthage and its annexation by Rome; 264-241 BC, 218-201 BC, 149-146 BC
+13966,Punica genus_Punica,coextensive with the family Punicaceae
+13967,Punicaceae family_Punicaceae,one species: pomegranates
+13968,Punjab,a historical region on northwestern India and northern Pakistan
+13969,Punjabi Panjabi,a member of the people of Pakistan and Punjab
+13970,Punjabi Panjabi,the Indic language spoken by people in Pakistan and Punjab
+13971,Punta_Arenas,a city in southern Chile on the Strait of Magellan; the southernmost city in the world
+13972,Puppis,a constellation in the southern hemisphere between Vela and Canis Major that shaped like the stern of a boat
+13973,Purace,an inactive volcano in the Andes in southern Colombia; last erupted in 1950
+13974,Purana,a body of 18 works written between the first and 11th centuries and incorporating legends and speculative histories of the universe and myths and customary observances
+13975,Purcell Henry_Purcell,English organist at Westminster Abbey and composer of many theatrical pieces (1659-1695)
+13976,Purim,(Judaism) a Jewish holy day commemorating their deliverance from massacre by Haman
+13977,Puritan,a member of a group of English Protestants who in the 16th and 17th centuries thought that the Protestant Reformation under Elizabeth was incomplete and advocated the simplification and regulation of forms of worship
+13978,Puritanism,the beliefs and practices characteristic of Puritans (most of whom were Calvinists who wished to purify the Church of England of its Catholic aspects)
+13979,Puritanism,strictness and austerity in conduct and religion
+13980,Purkinje Jan_Evangelista_Purkinje Johannes_Evangelista_Purkinje,Bohemian physiologist remembered for his discovery of Purkinje cells and the Purkinje network (1787-1869)
+13981,Purkinje_cell,a large densely branching neuron that is the characteristic cell of the cerebellar cortex
+13982,Purkinje_fiber,a specialized cardiac muscle fiber that is part of the Purkinje network
+13983,Purkinje_network Purkinje's_tissue Purkinje's_system,a network of Purkinje fibers that carry the cardiac impulse from the atrioventricular node to the ventricles of the heart and causes them to contract
+13984,Purus Purus_River,a Brazilian river; tributary of the Amazon River
+13985,Pus Pansa,the tenth month of the Hindu calendar
+13986,Pusan,a city in southeastern South Korea on the Korean Strait; the chief port and second largest city
+13987,Pusey Edward_Pusey Edward_Bouverie_Pusey,English theologian who (with John Henry Newman and John Keble) founded the Oxford movement (1800-1882)
+13988,Pushan,celestial shepherd god; conductor of souls of the dead
+13989,Pushkin Alexander_Pushkin Aleksandr_Sergeyevich_Pushkin,Russian poet (1799-1837)
+13990,Putin Vladimir_Putin Vladimir_Vladimirovich_Putin,Russian statesman chosen as president of the Russian Federation in 2000; formerly director of the Federal Security Bureau (born in 1952)
+13991,Putrajaya capital_of_Malaysia,Malaysia's sparkling new capital
+13992,Pycnanthemum genus_Pycnanthemum Koellia genus_Koellia,American mountain mint
+13993,Pycnogonida order_Pycnogonida,sea spiders
+13994,Pydna Battle_of_Pydna,a major victory by the Romans over the Macedonians in 168 BC; resulted in the downfall of the ancient Macedonian kingdom
+13995,Pygmalion,(Greek mythology) a king who created a statue of a woman and fell in love with it; Aphrodite brought the sculpture to life as Galatea
+13996,Pygmy Pigmy,any member of various peoples having an average height of less than five feet
+13997,Pygopodidae family_Pygopodidae,Australian and Tasmanian lizards
+13998,Pygopus genus_Pygopus,type genus of the Pygopodidae; snake-shaped pleurodont lizard with no forelimbs and only rudimentary hind limbs
+13999,Pygoscelis genus_Pygoscelis,a genus of Spheniscidae
+14000,Pyle Howard_Pyle,United States writer and illustrator of children's books (1853-1911)
+14001,Pylodictus genus_Pylodictus,flathead catfishes
+14002,Pynchon Thomas_Pynchon,United States writer of pessimistic novels about life in a technologically advanced society (born in 1937)
+14003,Pyongyang capital_of_North_Korea,capital of North Korea and an industrial center; "Pyongyang is Korea's oldest city but little of its history has been preserved"
+14004,Pyracantha pyracanth fire_thorn firethorn,any of various thorny shrubs of the genus Pyracantha bearing small white flowers followed by hard red or orange-red berries
+14005,Pyralidae family_Pyralidae Pyralididae family_Pyralididae,bee moths; corn borers; flour moths
+14006,Pyralis genus_Pyralis,type genus of the Pyralidae
+14007,Pyramid Great_Pyramid Pyramids_of_Egypt,a massive monument with a square base and four triangular sides; begun by Cheops around 2700 BC as royal tombs in ancient Egypt
+14008,Pyrausta genus_Pyrausta,moths whose larvae are corn borers
+14009,Pyrenees,a chain of mountains between France and Spain
+14010,Pyrenees_daisy Leucanthemum_lacustre Chrysanthemum_lacustre,perennial of Portugal similar to the oxeye daisy
+14011,Pyrenomycetes class_Pyrenomycetes,class of fungi in which the fruiting body is a perithecium; includes powdery mildews and ergot and Neurospora
+14012,Pyrethrum genus_Pyrethrum,used in former classifications for plants later placed in genus Chrysanthemum and now often included in genus Tanacetum
+14013,Pyrex,a borosilicate glass with a low coefficient of expansion; used for heat-resistant glassware in cooking and chemistry
+14014,Pyrocephalus genus_Pyrocephalus,a genus of Tyrannidae
+14015,Pyrolaceae family_Pyrolaceae wintergreen_family,evergreen herbs of temperate regions: genera Pyrola, Chimaphila, Moneses, Orthilia
+14016,Pyrophorus genus_Pyrophorus,tropical click beetles
+14017,Pyrrhic_victory,a victory that is won by incurring terrible losses
+14018,Pyrrhocoridae family_Pyrrhocoridae,firebugs
+14019,Pyrrhula genus_Pyrrhula,bullfinches
+14020,Pyrrhus,king of Epirus; defeated the Romans in two battles in spite of staggering losses (319-272 BC)
+14021,Pyrrophyta phylum_Pyrrophyta,a division of lower plants comprising unicellular and biflagellate algae that form starchy compounds
+14022,Pyrrosia genus_Pyrrosia,epiphytic or lithophytic or terrestrial ferns of tropical Old World
+14023,Pyrularia genus_Pyrularia,small genus of chiefly Asiatic parasitic shrubs
+14024,Pyrus genus_Pyrus,fruit trees native to the Old World: pears
+14025,Pythagoras,Greek philosopher and mathematician who proved the Pythagorean theorem; considered to be the first true mathematician (circa 580-500 BC)
+14026,Pythia Pythoness,(Greek mythology) the priestess of Apollo at Delphi who transmitted the oracles
+14027,Pythiaceae family_Pythiaceae,fungi having sporangia usually borne successively and singly at the tips of branching sporangiophores
+14028,Pythian_Games,the ancient Panhellenic celebration at Delphi held every four years in the third year of the Olympiad in honor of Apollo
+14029,Pythius,epithet for Apollo; from the dragon Python which he killed
+14030,Python,(Greek mythology) dragon killed by Apollo at Delphi
+14031,Pythonidae family_Pythonidae,in some classifications a family separate from Boidae comprising Old World boas
+14032,Pythoninae subfamily_Pythoninae,Old World boas: pythons; in some classifications considered a separate family from Boidae
+14033,Pyxidanthera genus_Pyxidanthera,one species: pyxie; the eastern United States
+14034,Pyxis,a constellation in the southern hemisphere near Puppis and Antlia
+14035,Q q,the 17th letter of the Roman alphabet
+14036,QWERTY_keyboard,the standard typewriter keyboard; the keys for Q, W, E, R, T, and Y are the first six from the left on the top row of letter keys
+14037,Q_fever,an acute disease resembling influenza
+14038,Qaddafi Qadhafi Khadafy Gaddafi Muammar_al-Qaddafi Muammar_el-Qaddafi,Libyan leader who seized power in a military coup d'etat in 1969; deposed the Libyan monarchy and imposed socialism and Islamic orthodoxy on the country (born in 1942)
+14039,Qassam_Brigades Salah_al-Din_Battalions Iz_Al-Din_Al-Qassam_Battalions,the military arm of Hamas responsible for suicide bombings and other attacks on Israel
+14040,Qatar Qatar_Peninsula Katar Katar_Peninsula,a peninsula extending northward from the Arabian mainland into the Persian Gulf
+14041,Qatar State_of_Qatar Katar State_of_Katar,an Arab country on the peninsula of Qatar; achieved independence from the United Kingdom in 1971; the economy is dominated by oil
+14042,Qatari Katari,a native or inhabitant of Qatar
+14043,Qatari_dirham dirham,100 dirhams equal 1 riyal in Qatar
+14044,Qatari_monetary_unit,monetary unit in Qatar
+14045,Qatari_riyal riyal,the basic unit of money in Qatar
+14046,Qiang Qiangic,the Tibeto-Burman language spoken in Sichuan
+14047,Qibla,a small terrorist group of Muslims in South Africa formed in the 1980s; was inspired by Ayatollah Khomeini to create an Islamic state in South Africa
+14048,Qin Qin_dynasty Ch'in Ch'in_dynasty,the Chinese dynasty (from 246 BC to 206 BC) that established the first centralized imperial government and built much of the Great Wall
+14049,Qin_Shi_Huang_Ti Ch'in_Shih_Huang_Ti,the first Qin emperor who unified China, built much of the Great Wall, standardized weights and measures, and created a common currency and legal system (died 210 BC)
+14050,Qing Qing_dynasty Ch'ing Ch'ing_dynasty Manchu Manchu_dynasty,the last imperial dynasty of China (from 1644 to 1912) which was overthrown by revolutionaries; during the Qing dynasty China was ruled by the Manchu
+14051,Quadragesima Quadrigesima_Sunday,the first Sunday in Lent
+14052,Quai_d'Orsay,the street in Paris along the south bank of the Seine known for its governmental ministries
+14053,Quaker_gun,a dummy gun or piece of artillery made usually of wood
+14054,Quakerism,the theological doctrine of the Society of Friends characterized by opposition to war and rejection of ritual and a formal creed and an ordained ministry
+14055,Quaoar,a planetoid discovered in 2002
+14056,Quapaw,a member of the Siouan people of the Arkansas river valley in Arkansas
+14057,Quapaw,the Dhegiha dialect spoken by the Quapaw
+14058,Quaternary Quaternary_period Age_of_Man,last 2 million years
+14059,Quebec,the largest province of Canada; a French colony from 1663 to 1759 when it was lost to the British
+14060,Quebec Quebec_City,the French-speaking capital of the province of Quebec; situated on the Saint Lawrence River
+14061,Quebec_Bridge,a cantilever bridge in Quebec
+14062,Quebecois,a native or inhabitant of Quebec (especially one who speaks French)
+14063,Quechua Kechua,a member of a South American Indian people in Peru who were formerly the ruling class of the Inca empire
+14064,Quechua Kechua,a community of South American Indians in Peru who were formerly the ruling class of the Incan Empire
+14065,Quechua Quechuan Quechuan_language Kechua Kechuan,the language of the Quechua which was spoken by the Incas
+14066,Queckenstedt's_test,a test to determine whether there is a blockage of the spinal canal
+14067,Queen's_Counsel,Counsel to the Crown when the British monarch is a queen
+14068,Queen's_crape_myrtle pride-of-India Lagerstroemia_speciosa,native to Asia, Australia, and East Indies, where it provides timber called pyinma; used elsewhere as an ornamental for its large showy flowers
+14069,Queen_Charlotte_Sound,an inlet of the Pacific Ocean off the coast of British Columbia
+14070,Queen_Maud_Land,a region of Antarctica between Enderby Land and the Weddell Sea; claimed by Norway
+14071,Queen_of_England,the sovereign ruler of England
+14072,Queens,a borough of New York City
+14073,Queensboro_Bridge,a cantilever bridge across the East River between Manhattan and Queens
+14074,Queensland,a state in northeastern Australia
+14075,Queensland_bottletree narrow-leaved_bottletree Brachychiton_rupestris Sterculia_rupestris,large tree of Queensland having cream-colored flowers blotched with red inside; sometimes placed in genus Sterculia
+14076,Queensland_grass-cloth_plant Pipturus_argenteus,Australian plant of genus Pipturus whose fiber is used in making cloth
+14077,Queensland_hemp jellyleaf Sida_rhombifolia,herb widely distributed in tropics and subtropics used for forage and medicinally as a demulcent and having a fine soft bast stronger than jute; sometimes an aggressive weed
+14078,Queensland_nut Macadamia_tetraphylla,bushy tree with pink to purple flowers
+14079,Quercus genus_Quercus,oaks
+14080,Quetzalcoatl,an Aztec deity represented as a plumed serpent
+14081,Quezon_City,city on Luzon adjoining Manila
+14082,Quiche,a member of the Mayan people of south central Guatemala
+14083,Quiche,the Mayan language spoken by the Quiche
+14084,Quincy Josiah_Quincy,American patriot who presented the colonists' grievances to the English king (1744-1775)
+14085,Quine W._V._Quine Willard_Van_Orman_Quine,United States philosopher and logician who championed an empirical view of knowledge that depended on language (1908-2001)
+14086,Quinquagesima Quinquagesima_Sunday,the Sunday before Ash Wednesday (the beginning of Lent)
+14087,Quintana_Roo,a Mexican state on the eastern side of the Yucatan Peninsula
+14088,Quiscalus genus_Quiscalus,grackles
+14089,Quito capital_of_Ecuador,the capital of Ecuador
+14090,Qum,a city in northwestern Iran; a place of pilgrimage for Shiite Muslims
+14091,Quoratean,a group of languages of the Hokan family
+14092,R r,the 18th letter of the Roman alphabet
+14093,R-2 Mexican_valium rophy rope roofy roach forget_me_drug circle,street names for flunitrazepan
+14094,RAM_disk,(computer science) a virtual drive that is created by setting aside part of the random-access memory to use as if it were a group of sectors; "access to a RAM disk is very fast but the data it contains is lost when the system is turned off"
+14095,Ra Re,ancient Egyptian sun god with the head of a hawk; a universal creator; he merged with the god Amen as Amen-Ra to become the king of the gods
+14096,Rabat capital_of_Morocco,the capital of Morocco; located in the northwestern on the Atlantic coast
+14097,Rabbi,a Hebrew title of respect for a Jewish scholar or teacher
+14098,Rabelais Francois_Rabelais,author of satirical attacks on medieval scholasticism (1494-1553)
+14099,Rabi_I,the third month of the Islamic calendar
+14100,Rabi_II,the fourth month of the Islamic calendar
+14101,Rachel,(Old Testament) the second wife of Jacob and mother of Joseph and Benjamin
+14102,Rachmaninoff Sergei_Rachmaninoff Sergei_Vasilievich_Rachmaninoff Rachmaninov Sergei_Rachmaninov Sergei_Vasilievich_Rachmaninov,composer and piano virtuoso born in Russia (1873-1943)
+14103,Rachycentridae family_Rachycentridae,family of pelagic fishes containing solely the cobia
+14104,Rachycentron genus_Rachycentron,genus and family are coextensive and comprise only the cobia
+14105,Racine,a city in southeastern Wisconsin on Lake Michigan to the south of Milwaukee
+14106,Racine Jean_Racine Jean_Baptiste_Racine,French advocate of Jansenism; tragedian who based his works on Greek and Roman themes (1639-1699)
+14107,Radhakrishnan Sarvepalli_Radhakrishnan Sir_Sarvepalli_Radhakrishnan,Indian philosopher and statesman who introduced Indian philosophy to the West (1888-1975)
+14108,Radiigera genus_Radiigera,a genus of fungus belonging to the family Geastraceae
+14109,Radiigera_fuscogleba,a fungus similar to an earthstar except that it does not open up; the spore mass is brown at maturity with a column of sterile tissue extending up into it
+14110,Radiolaria order_Radiolaria,marine protozoa
+14111,Radyera genus_Radyera,very small genus of shrubs of southern hemisphere: bush hibiscus
+14112,Raffia genus_Raffia Raphia genus_Raphia,feather palm of tropical Africa and Madagascar and Central and South America widely grown for commercial purposes
+14113,Raffles Sir_Thomas_Raffles Sir_Thomas_Stamford_Raffles,British colonial administrator who founded Singapore (1781-1826)
+14114,Rafflesiaceae family_Rafflesiaceae,a family of parasitic plants of the order Aristolochiales
+14115,Rahu,a Hindu demon who swallows the sun causing eclipses
+14116,Rain-in-the-Face,a chief of the Sioux; he was with Sitting Bull and others at the Battle of Little Bighorn (1876) when General Custer's troops were massacred (1835-1905)
+14117,Rainier Mount_Rainier Mt._Rainier Mount_Tacoma,a mountain peak in central Washington; highest peak in the Cascade Range; (14,410 feet high)
+14118,Raja genus_Raja,type genus of the family Rajidae
+14119,Rajab,the seventh month of the Islamic calendar
+14120,Rajidae family_Rajidae,bottom-dwelling tropical rays: skates
+14121,Rajiformes order_Rajiformes Batoidei order_Batoidei,fish with dorsoventrally flattened bodies; includes: rays; skates; guitarfishes; sawfishes
+14122,Rajput Rajpoot,a member of the dominant Hindu military caste in northern India
+14123,Rakaposhi,a mountain peak in the Karakoram Range in northern Kashmir (25,560 feet high)
+14124,Raleigh Walter_Raleigh Sir_Walter_Raleigh Ralegh Walter_Ralegh Sir_Walter_Ralegh,English courtier (a favorite of Elizabeth I) who tried to colonize Virginia; introduced potatoes and tobacco to England (1552-1618)
+14125,Raleigh capital_of_North_Carolina,capital of the state of North Carolina; located in the east central part of the North Carolina
+14126,Rallidae family_Rallidae,rails; crakes; gallinules; coots
+14127,Rama,avatar of Vishnu whose name is synonymous with God; any of three incarnations: Ramachandra or Parashurama or Balarama; "in Hindu folklore Rama is the epitome of chivalry and courage and obedience to sacred law"
+14128,Ramachandra,a hero in Hindu mythology; an incarnation of Vishnu
+14129,Ramadan,the ninth month of the Islamic calendar; the month of fasting; the holiest period for the Islamic faith
+14130,Ramadan,(Islam) a fast (held from sunrise to sunset) that is carried out during the Islamic month of Ramadan
+14131,Ramalina genus_Ramalina,shrubby lichens of the family Usneaceae having a flattened thallus
+14132,Ramanavami,Hindu lunar holiday (on the 9th day of Caitra) to celebrate the birth of Rama
+14133,Ramayana,one of two classical Hindu epics telling of the banishment of Rama from his kingdom and the abduction of his wife by a demon and Rama's restoration to the throne
+14134,Rambouillet,hardy sheep developed from the merino producing both good mutton and fine wool
+14135,Rameau Jean-Philippe_Rameau,French composer of operas whose writings laid the foundation for the modern theory of harmony (1683-1764)
+14136,Rameses Ramesses Ramses,any of 12 kings of ancient Egypt between 1315 and 1090 BC
+14137,Rameses_II Ramesses_II Ramses_II Rameses_the_Great Ramesses_the_Great Ramses_the_Great,king of Egypt between 1304 and 1237 BC who built many monuments
+14138,Ramman,god of storms and wind; corresponds to Babylonian Adad
+14139,Ramon_y_Cajal Santiago_Ramon_y_Cajal,Spanish histologist noted for his work on the structure of the nervous system (1852-1934)
+14140,Ramphastidae family_Ramphastidae,toucans
+14141,Ramphomicron genus_Ramphomicron,thornbills
+14142,Ramsay_Hunt_syndrome,syndrome resulting from infection by the herpes varicella zoster virus; characterized by vertigo and pain in the ears and facial nerve paralysis and sometimes hearing loss
+14143,Rana genus_Rana,type genus of the Ranidae
+14144,Ranales order_Ranales Ranunculales order_Ranunculales,herbs, shrubs and trees: includes families Ranunculaceae; Annonaceae; Berberidaceae; Magnoliaceae; Menispermaceae; Myristicaceae; Nymphaeaceae; Lardizabalaceae; Lauraceae; Calycanthaceae; Ceratophyllaceae; Cercidiphyllaceae
+14145,Ranatra genus_Ranatra,elongate very slender water scorpions
+14146,Rand Ayn_Rand,United States writer (born in Russia) noted for her polemical novels and political conservativism (1905-1982)
+14147,Rangifer genus_Rangifer,reindeer or caribou
+14148,Ranidae family_Ranidae,a family nearly cosmopolitan in distribution: true frogs
+14149,Rankin Jeannette_Rankin,leader in the women's suffrage movement in Montana; the first woman to serve in the United States House of Representatives (1880-1973)
+14150,Rankine,a unit of temperature on the Rankine scale
+14151,Rankine_scale,a scale of absolute temperature in Fahrenheit degrees; the freezing point of water is 491.69 degrees and the boiling point of water is 671.69 degrees
+14152,Ranunculaceae family_Ranunculaceae buttercup_family crowfoot_family,a family of Ranunculaceae
+14153,Ranunculus genus_Ranunculus,annual, biennial or perennial herbs: buttercup; crowfoot
+14154,Ranvier's_nodes nodes_of_Ranvier,small gaps in the myelin sheath of medullated axons
+14155,Raoulia genus_Raoulia,genus of low-growing mat-forming New Zealand plants; in some classifications includes species placed in genus Haastia
+14156,Rapateaceae family_Rapateaceae,South American herbs somewhat resembling members of the Juncaceae
+14157,Raphael,an archangel of the Hebrew tradition
+14158,Raphael Raffaello_Santi Raffaello_Sanzio,Italian painter whose many paintings exemplify the ideals of the High Renaissance (1483-1520)
+14159,Raphanus genus_Raphanus,radish
+14160,Raphicerus genus_Raphicerus,African antelopes: steenboks
+14161,Raphidae family_Raphidae,extinct dodos and solitaires
+14162,Raphidiidae family_Raphidiidae,a family of arthropods of the suborder Megaloptera, including snakeflies
+14163,Raphus genus_Raphus,type genus of the Raphidae: dodos
+14164,Rapid_City,a town in southwestern South Dakota in the eastern part of the Black Hills
+14165,Rappahannock Rappahannock_River,a river that flows across eastern Virginia into the Tidewater region
+14166,Raptores order_Raptores,term used in former classifications; erroneously grouped together birds of the orders Falconiformes and Strigiformes
+14167,Rasht Resht,city in northwestern Iran near the Caspian Sea
+14168,Rashtriya_Swayamsevak_Sangh National_Volunteers_Association,an all-male organization begun in 1925 to foster nationalism in India's Hindus
+14169,Rask Rasmus_Christian_Rask,Danish philologist whose work on Old Norse pioneered in the field of comparative linguistics (1787-1832)
+14170,Raskolnikov Rodya_Raskolnikov,a fictional character in Dostoevsky's novel `Crime and Punishment'; he kills old women because he believes he is beyond the bounds of good or evil
+14171,Rasmussen Kund_Johan_Victor_Rasmussen,Danish ethnologist and Arctic explorer; led expeditions into the Arctic to find support for his theory that Eskimos and North American Indians originally migrated from Asia (1879-1933)
+14172,Rasputin Grigori_Efimovich_Rasputin,Siberian peasant monk who was religious advisor in the court of Nicholas II; was assassinated by Russian noblemen who feared that his debauchery would weaken the monarchy (1872-1916)
+14173,Rastafari Rastas,(Jamaica) a Black youth subculture and religious movement that arose in the ghettos of Kingston, Jamaica, in the 1950s; males grow hair in long dreadlocks and wear woolen caps; use marijuana and listen to reggae music
+14174,Rastafarian,(Ethiopia) adherents of an African religion that regards Ras Tafari as divine
+14175,Rastafarian Rasta,follower of Rastafarianism
+14176,Rastafarianism,a religious cult based on a belief that Ras Tafari (Haile Selassie) is the Messiah and that Africa (especially Ethiopia) is the Promised Land
+14177,Ratibida genus_Ratibida,genus of perennial wildflowers of North American plains and prairies; often cultivated for their showy flower heads
+14178,Ratitae superorder_Ratitae,used in former classifications to include all ratite bird orders
+14179,Rattigan Terence_Rattigan Sir_Terence_Mervyn_Rattigan,British playwright (1911-1977)
+14180,Rattus genus_Rattus,common house rats; upper incisors have a beveled edge
+14181,Ravel Maurice_Ravel,French composer and exponent of Impressionism (1875-1937)
+14182,Ravenna Battle_of_Ravenna,a battle between the French and an alliance of Spaniards and Swiss and Venetians in 1512
+14183,Ravenna_grass wool_grass Erianthus_ravennae,grass often cultivated for its long white-ribbed leaves and large plumes resembling those of pampas grass
+14184,Rawalpindi,an ancient city in northeastern Pakistan; served as capital of Pakistan while Islamabad was being built
+14185,Rayleigh Third_Baron_Rayleigh Lord_Rayleigh John_William_Strutt,English physicist who studied the density of gases and discovered argon; made important contributions to acoustic theory (1842-1919)
+14186,Rayleigh_disk,an acoustic radiometer consisting of a light disk suspended from a quartz thread; when exposed to a progressive sound wave its torque can measure velocity
+14187,Read_method_of_childbirth Read_method,a method of natural childbirth that assumes it is a normal process and that the pain is largely psychological; involves education and breathing exercises to foster relaxation and other exercises
+14188,Reading,a city on the River Thames in Berkshire in southern England
+14189,Reagan Ronald_Reagan Ronald_Wilson_Reagan President_Reagan,40th President of the United States (1911-2004)
+14190,Reagan_administration,the executive under President Reagan
+14191,Real_Estate_Investment_Trust REIT,an investment trust that owns and manages a pool of commercial properties and mortgages and other real estate assets; shares can be bought and sold in the stock market
+14192,Real_IRA Real_Irish_Republican_Army RIRA Dissident_Irish_Republican_Army,a radical terrorist group that broke away in 1997 when the mainstream Provisional IRA proposed a cease-fire; has continued terrorist activities in opposition to any peace agreement
+14193,Realtor,a real estate agent who is a member of the National Association of Realtors
+14194,Reaumur Rene_Antoine_Ferchault_de_Reaumur,French physicist who invented the alcohol thermometer (1683-1757)
+14195,Reaumur_scale,a temperature scale on which water freezes at 0 degrees and boils at 80 degrees
+14196,Reaumur_thermometer,an alcohol thermometer calibrated in degrees Reaumur
+14197,Rebecca Rebekah,(Old Testament) wife of Isaac and mother of Jacob and Esau
+14198,Rebel Reb Johnny_Reb Johnny greyback,`Johnny' was applied as a nickname for Confederate soldiers by the Federal soldiers in the American Civil War; `greyback' derived from their grey Confederate uniforms
+14199,Received_Pronunciation,the approved pronunciation of British English; originally based on the King's English as spoken at public schools and at Oxford and Cambridge Universities (and widely accepted elsewhere in Britain); until recently it was the pronunciation of English used in British broadcasting
+14200,Recife Pernambuco,a port city of northeastern Brazil on the Atlantic
+14201,Reconstruction Reconstruction_Period,the period after the American Civil War when the southern states were reorganized and reintegrated into the Union; 1865-1877
+14202,Recurvirostra genus_Recurvirostra,type genus of the Recurvirostridae: avocets
+14203,Recurvirostridae family_Recurvirostridae,long-legged shorebirds
+14204,Red Red_River,a tributary of the Mississippi River that flows eastward from Texas along the southern boundary of Oklahoma and through Louisiana
+14205,Red_Army_Faction RAF,a Marxist and Maoist terrorist organization in Germany; a network of underground guerillas who committed acts of violence in the service of the class struggle; a successor to the Baader-Meinhof Gang; became one of Europe's most feared terrorist groups; disbanded in 1998
+14206,Red_Brigades Brigate_Rosse BR,a Marxist-Leninist terrorist organization that arose out of a student protest movement in the late 1960s; wants to separate Italy from NATO and advocates violence in the service of class warfare and revolution; mostly inactive since 1989
+14207,Red_Cloud,leader of the Oglala who resisted the development of a trail through Wyoming and Montana by the United States government (1822-1909)
+14208,Red_Cross,an international organization that cares for the sick or wounded or homeless in wartime
+14209,Red_Delicious,a sweet eating apple with bright red skin; most widely grown apple worldwide
+14210,Red_Guard,a radical political movement by Chinese youths who espoused Maoist principles
+14211,Red_Hand_Defenders RHD,a paramilitary group of Protestants in Northern Ireland that tries to prevent any political settlement with the Irish Republic; attacks interests of Catholic civilians in Northern Ireland; responsible for arson and bombing and murder
+14212,Red_Sea,a long arm of the Indian Ocean between northeast Africa and Arabia; linked to the Mediterranean at the north end by the Suez Canal
+14213,Red_Tai,a branch of the Tai languages
+14214,Redding,a town in north central California on the Sacramento River
+14215,Redford Robert_Redford Charles_Robert_Redford,United States actor and filmmaker who starred with Paul Newman in several films (born in 1936)
+14216,Rediffusion,a system for distributing radio or tv programs
+14217,Redonda,an island in Antigua and Barbuda
+14218,Redskin Injun red_man,(slang) offensive term for Native Americans
+14219,Reduviidae family_Reduviidae,assassin bugs
+14220,Redwood_National_Park,a national park in California featuring a redwood forest and Pacific Ocean coastline
+14221,Reed John_Reed,United States journalist who reported on the October Revolution from Petrograd in 1917; founded the Communist Labor Party in America in 1919; is buried in the Kremlin in Moscow (1887-1920)
+14222,Reed Walter_Reed,United States physician who proved that yellow fever is transmitted by mosquitoes (1851-1902)
+14223,Reform_Jew,liberal Jew who tries to adapt all aspects of Judaism to modern circumstances
+14224,Reform_Judaism,the most liberal Jews; Jews who do not follow the Talmud strictly but try to adapt all of the historical forms of Judaism to the modern world
+14225,Reform_Judaism,beliefs and practices of Reform Jews
+14226,Reformation Protestant_Reformation,a religious movement of the 16th century that began as an attempt to reform the Roman Catholic Church and resulted in the creation of Protestant churches
+14227,Regalecidae family_Regalecidae,ribbonfishes
+14228,Regency,the period from 1811-1820 when the Prince of Wales was regent during George III's periods of insanity
+14229,Reggane,a town in central Algeria
+14230,Regina,the provincial capital of Saskatchewan
+14231,Regius_professor,holder of a British professorship created by a royal patron
+14232,Reglaecus genus_Regalecus,type genus of the Regalecidae
+14233,Regulus,the brightest star in Leo
+14234,Regulus genus_Regulus,a genus of birds of the family Sylviidae including kinglets
+14235,Rehnquist William_Rehnquist William_Hubbs_Rehnquist,United States jurist who served as an associate justice on the United States Supreme Court from 1972 until 1986, when he was appointed chief justice (born in 1924)
+14236,Reich,the German state
+14237,Reich Steve_Reich Stephen_Michael_Reich,United States composer (born in 1936)
+14238,Reich Wilhelm_Reich,Austrian born psychoanalyst who lived in the United States; advocated sexual freedom and believed that cosmic energy could be concentrated in a human being (1897-1957)
+14239,Reichstein Tadeus_Reichstein,a Swiss chemist born in Poland; studied the hormones of the adrenal cortex
+14240,Reid Thomas_Reid,Scottish philosopher of common sense who opposed the ideas of David Hume (1710-1796)
+14241,Reign_of_Terror,the historic period (1793-94) during the French Revolution when thousands were executed; "the Reign of the Bourbons ended and the Reign of Terror began"
+14242,Reiter Hans_Conrad_Julius_Reiter,German bacteriologist who described a disease now known as Reiter's syndrome and who identified the spirochete that causes syphilis in humans (1881-1969)
+14243,Reiter's_syndrome Reiter's_disease,an inflammatory syndrome (etiology unknown) predominantly in males; characterized by arthritis and conjunctivitis and urethritis
+14244,Reithrodontomys genus_Reithrodontomys,New World harvest mice
+14245,Religious_Society_of_Friends Society_of_Friends Quakers,a Christian sect founded by George Fox about 1660; commonly called Quakers
+14246,Rembrandt Rembrandt_van_Rijn Rembrandt_van_Ryn Rembrandt_Harmensz_van_Rijn,influential Dutch artist (1606-1669)
+14247,Remembrance_Day Remembrance_Sunday Poppy_Day,the Sunday nearest to November 11 when those who died in World War I and World War II are commemorated
+14248,Remilegia genus_Remilegia,a genus of Echeneididae
+14249,Remus,(Roman mythology) the twin brother of Romulus
+14250,Renaissance Renascence,the period of European history at the close of the Middle Ages and the rise of the modern world; a cultural rebirth from the 14th through the middle of the 17th centuries
+14251,Renaissance_man,a scholar during the Renaissance who (because knowledge was limited) could know almost everything about many topics
+14252,Renaissance_man generalist,a modern scholar who is in a position to acquire more than superficial knowledge about many different interests; "a statistician has to be something of a generalist"
+14253,Reno,a city in western Nevada at the foot of the Sierra Nevada Mountains; known for gambling casinos and easy divorce and remarriage
+14254,Renoir Pierre_Auguste_Renoir,French impressionist painter (1841-1919)
+14255,Reoviridae,a family of arboviruses carried by arthropods
+14256,Reptantia suborder_Reptantia,lobsters; crabs
+14257,Reptilia class_Reptilia,class of cold-blooded air-breathing vertebrates with completely ossified skeleton and a body usually covered with scales or horny plates; once the dominant land animals
+14258,Republican,a member of the Republican Party
+14259,Republican Republican_River,a tributary of the Kansas River that flows from eastern Colorado eastward through Nebraska and Kansas
+14260,Republican_Guard,formerly Iraq's elite military unit whose primary role was to protect the government in Baghdad
+14261,Republican_Party GOP,the younger of two major political parties in the United States; GOP is an acronym for grand old party
+14262,Requiem,a musical setting for a Mass celebrating the dead
+14263,Requiem,a Mass celebrated for the dead
+14264,Resedaceae family_Resedaceae mignonette_family,mainly Mediterranean herbs: mignonette
+14265,Reserve_Officers_Training_Corps ROTC,a training program to prepare college students to be commissioned officers
+14266,Respighi Ottorino_Respighi,Italian composer remembered for his symphonic poems (1879-1936)
+14267,Restoration,the reign of Charles II in England; 1660-1685
+14268,Restoration,the re-establishment of the British monarchy in 1660
+14269,Resurrection Christ's_Resurrection Resurrection_of_Christ,(New Testament) the rising of Christ on the third day after the Crucifixion
+14270,Retama genus_Retama,small genus of Mediterranean shrubs; often included in genus Genista
+14271,Reticulitermes genus_Reticulitermes,includes species highly destructive to structures and living trees
+14272,Reticulitermes_flanipes,destructive United States termite
+14273,Reticulitermes_lucifugus,destructive European termite
+14274,Reticulum,a small constellation in the southern hemisphere near Dorado and Hydrus
+14275,Retrophyllum genus_Retrophyllum,small genus of tropical evergreen dioecious shrubs or trees of Oceania and tropical South America
+14276,Reuben,(Old Testment) a son of Jacob and forefather of one of the tribes of Israel
+14277,Reuben,a hot sandwich with corned beef and Swiss cheese and sauerkraut on rye bread
+14278,Revelation Revelation_of_Saint_John_the_Divine Apocalypse Book_of_Revelation,the last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle
+14279,Revere Paul_Revere,American silversmith remembered for his midnight ride (celebrated in a poem by Longfellow) to warn the colonists in Lexington and Concord that British troops were coming (1735-1818)
+14280,Reverend,a title of respect for a clergyman
+14281,Revised_Standard_Version,a revision of the American Standard Version
+14282,Revised_Version,a British revision of the Authorized Version
+14283,Revolutionary_Armed_Forces_of_Colombia Fuerzas_Armadas_Revolucionarios_de_Colombia FARC,a powerful and wealthy terrorist organization formed in 1957 as the guerilla arm of the Colombian communist party; opposed to the United States; has strong ties to drug dealers
+14284,Revolutionary_Organization_17_November 17_November,a Marxist-Leninist terrorist organization in Greece that is violently opposed to imperialism and capitalism and NATO and the United States; an active terrorist group during the 1980s
+14285,Revolutionary_People's_Liberation_Party Revolutionary_People's_Liberation_Front,an extreme Marxist terrorist organization in Turkey that is opposed to NATO and the United States; attacks Turkish security and military officials
+14286,Revolutionary_People's_Struggle ELA,an extreme leftist terrorist group formed in Greece in 1971 to oppose the military junta that ruled Greece from 1967 to 1974; a revolutionary group opposed to capitalism and imperialism and the United States
+14287,Revolutionary_Proletarian_Nucleus Revolutionary_Proletarian_Initiative_Nuclei NIPR,a clandestine group of leftist extremists who oppose Italy's labor policies and foreign policy; responsible for bombing building in the historic center of Rome from 2000 to 2002
+14288,Revolutionary_United_Front RUF,a terrorist group formed in the 1980s in Sierra Leone; seeks to overthrow the government and gain control of the diamond producing regions; responsible for attacks on civilians and children, widespread torture and murder and using children to commit atrocities; sponsored by the president of Liberia
+14289,Revolutionary_calendar,the calendar adopted by the first French Republic in 1793 and abandoned in 1805; dates were calculated from Sept. 22, 1792
+14290,Revolutionary_calendar_month,a month in the Revolutionary calendar
+14291,Reye's_syndrome,acquired encephalopathy following acute viral infections (especially influenza or chicken pox) in young children; characterized by fever, vomiting, disorientation, coma, and fatty infiltration of the liver
+14292,Reykjavik capital_of_Iceland,the capital and chief port of Iceland on the southwestern coast of Iceland; buildings are heated by natural hot water
+14293,Reynard,a conventional name for a fox used in tales following usage in the old epic `Reynard the Fox'
+14294,Reynolds Sir_Joshua_Reynolds,English portrait painter and first president of the Royal Academy (1723-1792)
+14295,Rh-negative_blood_type Rh-negative_blood Rh_negative,the blood group whose red cells lack the Rh factor (Rh antigen)
+14296,Rh-positive_blood_type Rh_positive,the blood group (approximately 85% of people) whose red cells have the Rh factor (Rh antigen)
+14297,Rh_antibody,rhesus factor antibody
+14298,Rh_incompatibility,incompatibility of Rh blood types; a transfusion of Rh-positive blood given to a Rh-negative person (or vice versa) can result in hemolysis and anemia
+14299,Rhabdoviridae,a family of arborviruses carried by arthropods
+14300,Rhadamanthus,(Greek mythology) a judge of the dead in the underworld
+14301,Rhaeto-Romance Rhaeto-Romanic,Romance dialects spoken in parts of southeastern Switzerland and northern Italy and the Tyrol
+14302,Rhagoletis genus_Rhagoletis,a genus of Trypetidae
+14303,Rhamnaceae family_Rhamnaceae buckthorn_family,trees and shrubs usually thorny bearing drupaceous fruit many having medicinal value
+14304,Rhamnales order_Rhamnales,an order of dicotyledonous plants
+14305,Rhamnus genus_Rhamnus,type genus of the Rhamnaceae: buckthorns
+14306,Rhapis genus_Rhapis,genus of small clump-forming fan palms of China and Japan
+14307,Rhea,fertility goddess in ancient Greek mythology; wife of Cronus and mother of Zeus; identified with Roman Ops and Cybele of ancient Asia Minor
+14308,Rhea_Silvia Rea_Silvia,(Roman mythology) a vestal virgin who became the mother by Mars of the twins Romulus and Remus
+14309,Rheidae family_Rheidae,a family of birds coextensive with the order Rheiformes
+14310,Rheiformes order_Rheiformes,a ratite bird order: birds intermediate in characteristics between ostriches and emus: recent and extinct rheas
+14311,Rheims Reims,a city in northeastern France to the east of Paris; scene of the coronation of most French kings; site of the unconditional German surrender in 1945 at the end of World War II
+14312,Rheum genus_Rheum,rhubarb
+14313,Rhexia genus_Rhexia,deer grass
+14314,Rhincodon genus_Rhincodon,whale sharks
+14315,Rhincodontidae family_Rhincodontidae,small-toothed sharks comprising only one species
+14316,Rhine J._B._Rhine Joseph_Banks_Rhine,United States parapsychologist (1895-1980)
+14317,Rhine Rhine_River Rhein,a major European river carrying more traffic than any other river in the world; flows into the North Sea
+14318,Rhine_wine Rhenish hock,any of several white wines from the Rhine River valley in Germany (`hock' is British usage)
+14319,Rhineland Rheinland,a picturesque region of Germany around the Rhine river
+14320,Rhinobatidae family_Rhinobatidae,primitive rays with guitar-shaped bodies
+14321,Rhinocerotidae family_Rhinocerotidae rhinoceros_family,rhinoceroses
+14322,Rhinolophidae family_Rhinolophidae,Old World leaf-nosed bats
+14323,Rhinonicteris genus_Rhinonicteris,orange horseshoe bats
+14324,Rhinoptera genus_Rhinoptera,a genus of Myliobatidae
+14325,Rhinotermitidae family_Rhinotermitidae,large widely distributed family of termites of temperate to tropical regions
+14326,Rhipsalis genus_Rhipsalis,large genus of epiphytic or lithophytic unarmed cacti with usually segmented stems and pendulous branches; flowers are small followed by berrylike fruits
+14327,Rhizobiaceae family_Rhizobiaceae,a small family of rod-shaped bacteria
+14328,Rhizobium genus_Rhizobium,the type genus of Rhizobiaceae; usually occur in the root nodules of legumes; can fix atmospheric oxygen
+14329,Rhizophora genus_Rhizophora,type genus of the Rhizophoraceae; a small genus of tropical trees and shrubs
+14330,Rhizophoraceae family_Rhizophoraceae mangrove_family,trees and shrubs that usually form dense jungles along tropical seacoasts
+14331,Rhizopoda subclass_Rhizopoda,creeping protozoans: amoebas and foraminifers
+14332,Rhizopogon genus_Rhizopogon,a genus of fungi having subterranean sporophores resembling tubers
+14333,Rhizopogon_idahoensis,a large whitish Rhizopogon that becomes greyish brown in maturity
+14334,Rhizopogonaceae family_Rhizopogonaceae,a family of fungi of order Hymenogastrales having round subterranean sporophores
+14335,Rhode_Island,one of the British colonies that formed the United States
+14336,Rhode_Island Little_Rhody Ocean_State RI R.I.,a state in New England; one of the original 13 colonies; the smallest state
+14337,Rhode_Island_red,American breed of heavy-bodied brownish-red general-purpose chicken
+14338,Rhode_Islander,a native or resident of Rhode Island
+14339,Rhodes Cecil_Rhodes Cecil_J._Rhodes Cecil_John_Rhodes,British colonial financier and statesman in South Africa; made a fortune in gold and diamond mining; helped colonize the territory now known as Zimbabwe; he endowed annual fellowships for British Commonwealth and United States students to study at Oxford University (1853-1902)
+14340,Rhodes Rodhos,a Greek island in the southeast Aegean Sea 10 miles off the Turkish coast; the largest of the Dodecanese; it was colonized before 1000 BC by Dorians from Argos; site of the Colossus of Rhodes
+14341,Rhodes_grass Chloris_gayana,perennial grass of South Africa introduced into United States; cultivated as forage grass in dry regions
+14342,Rhodes_scholar,a student who holds one of the scholarships endowed by the will of Cecil J. Rhodes that enables the student to study at Oxford University
+14343,Rhodesian_man Homo_rhodesiensis,a primitive hominid resembling Neanderthal man but living in Africa
+14344,Rhodesian_ridgeback,a powerful short-haired African hunting dog having a crest of reversed hair along the spine
+14345,Rhodope_Mountains,a mountain range in the Balkan peninsula in southeastern Europe; extends along the border between Greece and Bulgaria
+14346,Rhodophyceae class_Rhodophyceae,coextensive with the Rhodophyta: red algae
+14347,Rhodophyta division_Rhodophyta,lower plants; mostly marine and littoral eukaryotic algae
+14348,Rhodosphaera genus_Rhodosphaera,one species; an Australian evergreen sumac
+14349,Rhodymenia genus_Rhodymenia,type genus of the family Rhodymeniaceae
+14350,Rhodymeniaceae family_Rhodymeniaceae,a family of protoctist
+14351,Rhoeadales order_Rhoeadales Papaverales order_Papaverales,an order of dicotyledonous plants
+14352,Rhone Rhone_River,a major French river; flows into the Mediterranean near Marseilles; "the valley of the Rhone is famous for its vineyards"
+14353,Rhone-Alpes,a mountainous region of eastern France drained by the Rhone and Saone and Isere rivers
+14354,Rhone_wine,any of various wines from the Rhone River valley in France
+14355,Rhus genus_Rhus,deciduous or evergreen shrubs and shrubby trees of temperate and subtropical North America, South Africa, eastern Asia and northeastern Australia; usually limited to nonpoisonous sumacs (see genus Toxicodendron)
+14356,Rhus_dermatitis,contact dermatitis resulting from contact with plants of the genus Toxicodendron
+14357,Rhyacotriton genus_Rhyacotriton,olympic salamanders
+14358,Rhynchocephalia order_Rhynchocephalia,tuataras; extinct forms from middle Triassic
+14359,Rhynchoelaps genus_Rhynchoelaps,Australian coral snakes
+14360,Rhyncostylis genus_Rhyncostylis,genus of epiphytic orchids of tropical Asia
+14361,Rhynia genus_Rhynia,type genus of the Rhyniaceae; small leafless dichotomously branching fossil plants with terminal sporangia and smooth branching rhizomes
+14362,Rhyniaceae family_Rhyniaceae,primitive plants of the Paleozoic
+14363,Ribes genus_Ribes,a flowering shrub bearing currants or gooseberries; native to northern hemisphere
+14364,Ribhus Rhibhus,one of three artisans of the Hindu gods
+14365,Ricardo David_Ricardo,English economist who argued that the laws of supply and demand should operate in a free market (1772-1823)
+14366,Rice Elmer_Rice Elmer_Leopold_Rice Elmer_Reizenstein,United States playwright (1892-1967)
+14367,Rice Sir_Tim_Rice Timothy_Miles_Bindon_Rice,English lyricist who frequently worked with Andrew Lloyd Webber (born in 1944)
+14368,Richard_I Richard_Coeur_de_Lion Richard_the_Lionheart Richard_the_Lion-Hearted,son of Henry II and King of England from 1189 to 1199; a leader of the Third Crusade; on his way home from the crusade he was captured and held prisoner in the Holy Roman Empire until England ransomed him in 1194 (1157-1199)
+14369,Richard_II,King of England from 1377 to 1399; he suppressed the Peasant's Revolt in 1381 but his reign was marked by popular discontent and baronial opposition in British Parliament and he was forced to abdicate in 1399 (1367-1400)
+14370,Richard_III,King of England from 1483 to 1485; seized the throne from his nephew Edward V who was confined to the Tower of London and murdered; his reign ended when he was defeated by Henry Tudor (later Henry VII) at the battle of Bosworth Field (1452-1485)
+14371,Richard_Roe,an unknown or fictitious party to legal proceedings
+14372,Richards I._A._Richards Ivor_Armstrong_Richards,English literary critic who collaborated with C. K. Ogden and contributed to the development of Basic English (1893-1979)
+14373,Richardson Henry_Hobson_Richardson,United States architect (1838-1886)
+14374,Richardson Ralph_Richardson Sir_Ralph_David_Richardson,British stage and screen actor noted for playing classic roles (1902-1983)
+14375,Richardson's_geranium Geranium_richardsonii,geranium of western North America having branched clusters of white or pale pink flowers
+14376,Richea genus_Richea,evergreen trees or shrubs of mountains of Australia and Tasmania
+14377,Richelieu Duc_de_Richelieu Armand_Jean_du_Plessis Cardinal_Richelieu,French prelate and statesman; principal minister to Louis XIII (1585-1642)
+14378,Richler Mordecai_Richler,Canadian novelist (born in 1931)
+14379,Richmond capital_of_Virginia,capital of the state of Virginia located in the east central part of the state; was capital of the Confederacy during the American Civil War
+14380,Richmondena genus_Richmondena,cardinals
+14381,Richter_scale,a logarithmic scale of 1 to 10 formerly used to express the magnitude of an earthquake on the basis of the size of seismograph oscillations
+14382,Ricinus genus_Ricinus,a genus of herb having only one known species: castor-oil plant
+14383,Rickenbacker Eddie_Rickenbacker Edward_Vernon_Rickenbacker,the most decorated United States combat pilot in World War I (1890-1973)
+14384,Rickettsiaceae family_Rickettsiaceae,microorganism resembling bacteria inhabiting arthropod tissues but capable of causing disease in vertebrates
+14385,Rickettsiales order_Rickettsiales,pleomorphic Gram-negative microorganisms
+14386,Rickover Hyman_Rickover Hyman_George_Rickover,United States admiral who advocated the development of nuclear submarines (1900-1986)
+14387,Riemann Bernhard_Riemann Georg_Friedrich_Bernhard_Riemann,pioneer of non-Euclidean geometry (1826-1866)
+14388,Riesling,white grape grown in Europe and California
+14389,Riesling,fragrant dry or sweet white wine from the Rhine valley or a similar wine from California
+14390,Riesman David_Riesman David_Riesman_Jr.,United States sociologist (1909-2002)
+14391,Riff Riffian,a Berber living in northern Morocco
+14392,Rift_Valley_fever,an infection common in Africa caused by a bunyavirus; transmitted by mosquitoes or by handling infected animals
+14393,Rig-Veda,a Veda consisting of a collection of Hindu poems dating from before 2000 BC
+14394,Riga capital_of_Latvia,a port city on the Gulf of Riga that is the capital and largest city of Latvia; formerly a member of the Hanseatic League
+14395,Rigel Beta_Orionis,the brightest star in Orion
+14396,Right_Bank,the region of Paris on the north bank of the Seine
+14397,Riksmal Riksmaal,in 1929 this dialect of Norwegian was officially renamed Bokmal
+14398,Riley James_Whitcomb_Riley,United States poet (1849-1916)
+14399,Rilke Rainer_Maria_Rilke,German poet (born in Austria) whose imagery and mystic lyricism influenced 20th-century German literature (1875-1926)
+14400,Rimbaud Arthur_Rimbaud Jean_Nicholas_Arthur_Rimbaud,French poet whose work influenced the surrealists (1854-1891)
+14401,Rimsky-Korsakov Nikolai_Andreyevich_Rimsky-Korsakov Rimski-Korsakov Nikolai_Andreyevich_Rimski-Korsakov,Russian composer of operas and orchestral works; often used themes from folk music (1844-1908)
+14402,Ringer's_solution Ringer_solution,an aqueous solution containing the chlorides of sodium and potassium and calcium that is isotonic to animal tissues; used to correct dehydration and (in physiological experiments) as a medium for in vitro preparations
+14403,Ringling Charles_Ringling,United States showman whose song-and-dance troop evolved into a circus (1863-1926)
+14404,Rio_Grande Rio_Bravo,a North American river; boundary between the United States and Mexico; flows into Gulf of Mexico
+14405,Rio_de_Janeiro Rio,the former capital and 2nd largest city of Brazil; chief Brazilian port; famous as a tourist attraction
+14406,Rio_de_la_Plata La_Plata Plata_River,an estuary between Argentina and Uruguay
+14407,Rioja,dry red table wine from the Rioja region of northern Spain
+14408,Riot_Act,a former English law requiring mobs to disperse after a magistrate reads the law to them
+14409,Rip_van_Winkle,a person oblivious to social changes
+14410,Rip_van_Winkle,a person who sleeps a lot
+14411,Rip_van_Winkle,the title character in a story by Washington Irving about a man who sleeps for 20 years and doesn't recognize the world when he wakens
+14412,Riparia genus_Riparia,a genus of Hirundinidae
+14413,Riss_glaciation,the next-to-last Pleistocene glaciation in the Alps and the deposits laid down at that time
+14414,Rissa genus_Rissa,a genus of Laridae
+14415,Rittenhouse David_Rittenhouse,United States astronomer said to have built the first telescope made in America; also the first director of the United States Mint (1732-1796)
+14416,Ritz,an ostentatiously elegant hotel
+14417,Ritz Cesar_Ritz,Swiss hotelier who created a chain of elegant hotels (1850-1918)
+14418,Rivera Diego_Rivera,socialist Mexican painter of murals (1886-1957)
+14419,Riverside,a city in southern California
+14420,Riviera,a coastal area between La Spezia in Italy and Cannes in France; "the Riviera contains some of Europe's most popular resorts"
+14421,Rivina genus_Rivina,small genus of erect perennial shrubby herbs; tropical and subtropical America
+14422,Riyadh capital_of_Saudi_Arabia,joint capital (with Mecca) of Saudi Arabia located in the central oasis; largest city in Saudi Arabia
+14423,Ro,an artificial language for international use that rejects all existing words and is based instead on an abstract analysis of ideas
+14424,Roanoke,a city in southwestern Virginia
+14425,Rob_Roy,a manhattan cocktail made with Scotch whiskey
+14426,Robbins Jerome_Robbins,United States choreographer who brought human emotion to classical ballet and spirited reality to Broadway musicals (1918-1998)
+14427,Robert Henry_M._Robert Henry_Martyn_Robert,United States parliamentary authority and author (in 1876) of Robert's Rules of Order (1837-1923)
+14428,Robert's_Rules_of_Order,a book of rules for presiding over a meeting; written by Henry M. Martin in 1876 and subsequently updated through many editions
+14429,Robert_E_Lee's_Birthday Robert_E_Lee_Day Lee's_Birthday January_19,celebrated in southern United States
+14430,Roberts Bartholomew_Roberts,a Welsh pirate credited with having taken more than 400 ships (1682-1722)
+14431,Roberts Kenneth_Roberts,United States writer remembered for his historical novels about colonial America (1885-1957)
+14432,Roberts Oral_Roberts,United States evangelist (born 1918)
+14433,Roberts Richard_J._Roberts Richard_John_Roberts,United States biochemist (born in England) honored for his discovery that some genes contain introns (born in 1943)
+14434,Robertson Oscar_Robertson Oscar_Palmer_Robertson,United States basketball guard (born in 1938)
+14435,Robeson Paul_Robeson Paul_Bustill_Robeson,United States bass singer and an outspoken critic of racism and proponent of socialism (1898-1976)
+14436,Robespierre Maxmillien_Marie_Isidore_de_Robespierre,French revolutionary; leader of the Jacobins and architect of the Reign of Terror; was himself executed in a coup d'etat (1758-1794)
+14437,Robin_Hood,legendary English outlaw of the 12th century; said to have robbed the rich to help the poor
+14438,Robinia genus_Robinia,deciduous flowering trees and shrubs
+14439,Robinson Edward_G._Robinson Edward_Goldenberg_Robinson,United States film actor noted for playing gangster roles (1893-1973)
+14440,Robinson Edwin_Arlington_Robinson,United States poet; author of narrative verse (1869-1935)
+14441,Robinson Jackie_Robinson Jack_Roosevelt_Robinson,United States baseball player; first Black to play in the major leagues (1919-1972)
+14442,Robinson James_Harvey_Robinson,United States historian who stressed the importance of intellectual and social events for the course of history (1863-1936)
+14443,Robinson Lennox_Robinson Esme_Stuart_Lennox_Robinson,Irish playwright and theater manager in Dublin (1886-1958)
+14444,Robinson Ray_Robinson Sugar_Ray_Robinson Walker_Smith,United States prizefighter who won the world middleweight championship five times and the world welterweight championship once (1921-1989)
+14445,Robinson Robert_Robinson Sir_Robert_Robinson,English chemist noted for his studies of molecular structures in plants (1886-1975)
+14446,Robinson_Crusoe,the hero of Daniel Defoe's novel about a shipwrecked English sailor who survives on a small tropical island
+14447,Robitussin,trade name of an expectorant that loosens phlegm and makes it easier to cough up
+14448,Roccellaceae family_Roccellaceae,a fungus family of division Lichenes
+14449,Roccus genus_Roccus,a genus of Serranidae
+14450,Rochambeau Comte_de_Rochambeau Jean_Baptiste_Donatien_de_Vimeur,French general who commanded French troops in the American Revolution, notably at Yorktown (1725-1807)
+14451,Rochelle_salt Rochelle_salts potassium_sodium_tartrate,a double salt used in Seidlitz powder; acts as a cathartic
+14452,Rochester,a city in western New York; a center of the photographic equipment industry
+14453,Rochester,a town in southeast Minnesota
+14454,Rochon_prism Wollaston_prism,optical device that produces plane-polarized ultraviolet light
+14455,Rock John_Rock,United States gynecologist and devout Catholic who conducted the first clinical trials of the oral contraceptive pill (1890-1984)
+14456,Rock_Cornish,small plump hybrid developed by crossbreeding Plymouth Rock and Cornish fowl
+14457,Rock_Cornish_hen,flesh of a small fowl bred for roasting
+14458,Rock_Island,a town in northwest Illinois on the Mississippi River; site of a Union prison during the American Civil War
+14459,Rock_Springs,a town of southwest Wyoming near the Utah border
+14460,Rockefeller John_D._Rockefeller John_Davison_Rockefeller,United States industrialist who made a fortune in the oil business and gave half of it away (1839-1937)
+14461,Rockford,a city in northern Illinois
+14462,Rockies Rocky_Mountains,the chief mountain range of western North America; extends from British Columbia to northern New Mexico; forms the continental divide
+14463,Rockingham Second_Marquis_of_Rockingham Charles_Watson-Wentworth,English statesman who served as prime minister and who opposed the war with the American colonies (1730-1782)
+14464,Rockwell Norman_Rockwell,United States illustrator whose works present a sentimental idealized view of everyday life (1894-1978)
+14465,Rocky_Mountain_National_Park,a national park in Colorado having mountains and lakes and streams and forests
+14466,Rocky_Mountain_bee_plant stinking_clover Cleome_serrulata,plant of western North America having trifoliate leaves and white or pink spider-shaped flowers; sometimes used as an ornamental
+14467,Rocky_Mountain_dogbane Apocynum_pumilum,North American plant similar to common dogbane
+14468,Rocky_Mountain_jay Perisoreus_canadensis_capitalis,a Canada jay with a white head; widely distributed from Montana to Arizona
+14469,Rocky_Mountain_spotted_fever mountain_fever tick_fever,caused by rickettsial bacteria and transmitted by wood ticks
+14470,Rocky_Mountain_whitefish Prosopium_williamsonii,whitefish of the western United States and Canada
+14471,Rocky_mountain_pinon Pinus_edulis,small compact two-needled pinon of southwestern United States; important as a nut pine
+14472,Rocroi Battle_of_Rocroi,a battle in the Thirty Years' War (1643); the French defeated the Spanish invaders
+14473,Rodentia order_Rodentia,small gnawing animals: porcupines; rats; mice; squirrels; marmots; beavers; gophers; voles; hamsters; guinea pigs; agoutis
+14474,Rodgers Richard_Rodgers,United States composer of musical comedies (especially in collaboration with Oscar Hammerstein II and with Lorenz Hart) (1902-1979)
+14475,Rodin Auguste_Rodin Francois_Auguste_Rene_Rodin,French sculptor noted for his renderings of the human form (1840-1917)
+14476,Rodolia genus_Rodolia genus_Vedalia,genus of Australian ladybugs
+14477,Roebling John_Roebling John_Augustus_Roebling,United States engineer (born in Germany) who designed and began construction of the Brooklyn bridge (1806-1869)
+14478,Roentgen Wilhelm_Konrad_Roentgen Rontgen Wilhelm_Konrad_Rontgen,German physicist who discovered x-rays and developed roentgenography (1845-1923)
+14479,Rogation_Day,one of the three days before Ascension Day; observed by some Christians as days of supplication
+14480,Rogers Carl_Rogers,United States psychologist who developed client-centered therapy (1902-1987)
+14481,Rogers Ginger_Rogers Virginia_McMath Virginia_Katherine_McMath,United States dancer and film actress who partnered with Fred Astaire (1911-1995)
+14482,Rogers Will_Rogers William_Penn_Adair_Rogers,United States humorist remembered for his homespun commentary on politics and American society (1879-1935)
+14483,Roget Peter_Mark_Roget,English physician who in retirement compiled a well-known thesaurus (1779-1869)
+14484,Rolaids,an antacid
+14485,Rollerblade,(trademark) an in-line skate
+14486,Rollo Rolf Hrolf,Norse chieftain who became the first duke of Normandy (860-931)
+14487,Rolodex,(trademark) a desktop rotary card index with removable cards; usually used for names, addresses, and telephone numbers; "a news reporter has to have a good Rolodex"
+14488,Romaic Demotic,the modern Greek vernacular
+14489,Roman,an inhabitant of the ancient Roman Empire
+14490,Roman,a resident of modern Rome
+14491,Roman_Catholic,a member of the Roman Catholic Church
+14492,Roman_Catholic Western_Church Roman_Catholic_Church Church_of_Rome Roman_Church,the Christian Church based in the Vatican and presided over by a pope and an episcopal hierarchy
+14493,Roman_Emperor Emperor_of_Rome,sovereign of the Roman Empire
+14494,Roman_Empire,an empire established by Augustus in 27 BC and divided in AD 395 into the Western Roman Empire and the eastern or Byzantine Empire; at its peak lands in Europe and Africa and Asia were ruled by ancient Rome
+14495,Roman_Inquisition Congregation_of_the_Inquisition,an inquisition set up in Italy in 1542 to curb the number of Protestants; "it was the Roman Inquisition that put Galileo on trial"
+14496,Roman_Legion,a division of from 3000 to 6000 men (including cavalry) in the Roman army
+14497,Roman_Republic,the ancient Roman state from 509 BC until Augustus assumed power in 27 BC; was governed by an elected Senate but dissatisfaction with the Senate led to civil wars that culminated in a brief dictatorship by Julius Caesar
+14498,Roman_alphabet Latin_alphabet,the alphabet evolved by the ancient Romans which serves for writing most of the languages of western Europe
+14499,Roman_arch semicircular_arch,a round arch drawn from a single center
+14500,Roman_architecture,the architecture of ancient Rome
+14501,Roman_building,a building constructed by the ancient Romans
+14502,Roman_calendar,the lunar calendar in use in ancient Rome; replaced by the Julian calendar in 46 BC
+14503,Roman_candle,a cylindrical firework that projects a series of colored balls of fire
+14504,Roman_deity,a deity worshipped by the ancient Romans
+14505,Roman_hyacinth Hyacinthus_orientalis_albulus,hyacinth with loosely flowered spikes, several growing from one bulb
+14506,Roman_law Justinian_code civil_law jus_civile,the legal code of ancient Rome; codified under Justinian; the basis for many modern systems of civil law
+14507,Roman_mythology,the mythology of the ancient Romans
+14508,Roman_nettle Urtica_pipulifera,annual European nettle with stinging foliage and small clusters of green flowers
+14509,Roman_nose hooknose,a nose with a prominent slightly aquiline bridge
+14510,Roman_numeral,a symbol in the old Roman notation; I,V,X,L,C,D,M represent 1,5,10,50,100,500,1000 respectively in Arabic notation
+14511,Roman_pace,an ancient Roman unit of length (4.85 English feet) measured as the distance from the heel of one foot to the heel of the same foot when next it touches the ground
+14512,Roman_times,the time period during which Rome dominated Europe
+14513,Roman_wormwood Artemis_pontica,European wormwood; minor source of absinthe
+14514,Roman_wormwood rock_harlequin Corydalis_sempervirens Fumaria_sempervirens,glaucous herb of northeastern United States and Canada having loose racemes of yellow-tipped pink flowers; sometimes placed in genus Fumaria
+14515,Romanal,an artificial language
+14516,Romance Romance_language Latinian_language,the group of languages derived from Latin
+14517,Romanesque Romanesque_architecture,a style of architecture developed in Italy and western Europe between the Roman and the Gothic styles after 1000 AD; characterized by round arches and vaults and by the substitution of piers for columns and profuse ornament and arcades
+14518,Romania Roumania Rumania,a republic in southeastern Europe with a short coastline on the Black Sea
+14519,Romanian Rumanian,a native or inhabitant of Romania
+14520,Romanian Rumanian,an eastern Romance language spoken in Romania
+14521,Romanian_monetary_unit,monetary unit in Romania
+14522,Romanism Roman_Catholicism papism,the beliefs and practices of the Catholic Church based in Rome
+14523,Romanov Romanoff,a member of the imperial family that ruled Russia
+14524,Romanov Romanoff,the Russian imperial line that ruled from 1613 to 1917
+14525,Romansh Rumansh,the Rhaeto-Romance language spoken in southeastern Switzerland; it is an official language of Switzerland
+14526,Romanticism Romantic_Movement,a movement in literature and art during the late 18th and early 19th centuries that celebrated nature rather than civilization; "Romanticism valued imagination and emotion over rationality"
+14527,Romany Gypsy,the Indic language of the Gypsies
+14528,Romberg Sigmund_Romberg,United States composer (born in Hungary) who composed operettas (1887-1951)
+14529,Rome,the leadership of the Roman Catholic Church
+14530,Rome Roma Eternal_City Italian_capital capital_of_Italy,capital and largest city of Italy; on the Tiber; seat of the Roman Catholic Church; formerly the capital of the Roman Republic and the Roman Empire
+14531,Rome_Beauty,large red apple used primarily for baking
+14532,Romeo,an ardent male lover
+14533,Rommel Erwin_Rommel Desert_Fox,German field marshal noted for brilliant generalship in North Africa during World War II (1891-1944)
+14534,Romneya genus_Romneya,one species: matilija poppy
+14535,Romulus,(Roman mythology) founder of Rome; suckled with his twin brother Remus by a wolf after their parents (Mars and Rhea Silvia) abandoned them; Romulus killed Remus in an argument over the building of Rome
+14536,Ron Bokkos Daffo,a Chadic language spoken in northern Nigeria
+14537,Roosevelt Eleanor_Roosevelt Anna_Eleanor_Roosevelt,wife of Franklin Roosevelt and a strong advocate of human rights (1884-1962)
+14538,Roosevelt Franklin_Roosevelt Franklin_Delano_Roosevelt F._D._Roosevelt President_Roosevelt President_Franklin_Roosevelt FDR,32nd President of the United States; elected four times; instituted New Deal to counter the Great Depression and led country during World War II (1882-1945)
+14539,Roosevelt Theodore_Roosevelt President_Roosevelt President_Theodore_Roosevelt,26th President of the United States; hero of the Spanish-American War; Panama Canal was built during his administration; "Theodore Roosevelt said `Speak softly but carry a big stick'" (1858-1919)
+14540,Roquefort,French blue cheese
+14541,Roridulaceae family_Roridulaceae,in some classifications included in the family Droseraceae
+14542,Rorippa genus_Rorippa,annual and perennial herbs of damp habitats; cosmopolitan except Antarctica
+14543,Rorschach Rorschach_test inkblot_test,a projective tests using bilaterally symmetrical inkblots; subjects state what they see in the inkblot
+14544,Rosa genus_Rosa,large genus of erect or climbing prickly shrubs including roses
+14545,Rosaceae family_Rosaceae rose_family,a large family of dicotyledonous plants of order Rosales; have alternate leaves and five-petaled flowers with numerous stamens
+14546,Rosales order_Rosales,in some classifications this category does not include Leguminosae
+14547,Rosario,a port city on the Parana River in eastern central Argentina
+14548,Roseau,the capital and largest city of Dominica
+14549,Rosellinia genus_Rosellinia,fungi having smooth perithecia with dark one-celled ascospores
+14550,Rosetta_Stone,a part of an inscribed granite stela that was originally about six feet tall and was set up in 196 BC; the inscriptions in hieroglyphics and Demotic and Greek gave the first clues to the decipherment of Egyptian hieroglyphics
+14551,Rosh_Hashanah Rosh_Hashana Rosh_Hashonah Rosh_Hashona Jewish_New_Year,(Judaism) a solemn Jewish feast day celebrated on the 1st or 1st and 2nd of Tishri; noted for the blowing of the shofar
+14552,Rosh_Hodesh Rosh_Chodesh,(Judaism) the beginning of each month in the Jewish calendar; marked by a special liturgy
+14553,Rosicrucian,a member of any of various organizations that subsequently derived from the 17th-century society
+14554,Rosicrucian,a member of a secret 17th-century society of philosophers and scholars versed in mystical and metaphysical and alchemical lore
+14555,Rosicrucianism,the theological doctrine that venerates the rose and the cross as symbols of Christ's Resurrection and redemption; claims various occult powers
+14556,Rosidae subclass_Rosidae,a group of trees and shrubs and herbs mostly with polypetalous flowers; contains 108 families including Rosaceae; Crassulaceae; Myrtaceae; Melastomaceae; Euphorbiaceae; Umbelliferae
+14557,Rosmarinus genus_Rosmarinus,rosemary
+14558,Ross Betsy_Ross Betsy_Griscom_Ross,American seamstress said to have made the first American flag at the request of George Washington (1752-1836)
+14559,Ross James_Clark_Ross Sir_James_Clark_Ross,British explorer of the Arctic and Antarctic; located the north magnetic pole in 1831; discovered the Ross Sea in Antarctica; nephew of Sir John Ross (1800-1862)
+14560,Ross John_Ross Sir_John_Ross,Scottish explorer who led Arctic expeditions that yielded geographic discoveries while searching for the Northwest Passage (1777-1856)
+14561,Ross Nellie_Ross Nellie_Tayloe_Ross,a politician in Wyoming who was the first woman governor in the United States (1876-1977)
+14562,Ross Sir_Ronald_Ross,British physician who discovered that mosquitos transmit malaria (1857-1932)
+14563,Ross_Sea,an arm of the southern Pacific Ocean in Antarctica
+14564,Rossbach battle_of_Rossbach,a battle in the Seven Years' War (1757); Prussian forces under Frederick the Great defeated the armies of France and Austria
+14565,Rossetti Dante_Gabriel_Rossetti,English poet and painter who was a leader of the Pre-Raphaelites (1828-1882)
+14566,Rossini Giloacchino_Antonio_Rossini,Italian composer remembered for his operas (1792-1868)
+14567,Rostand Edmond_Rostand,French dramatist and poet whose play immortalized Cyrano de Bergerac (1868-1918)
+14568,Rostock,a city in northeastern Germany near the Baltic sea; an important member of the Hanseatic League in the 14th century
+14569,Rostov Rostov_on_Don Rostov_na_Donu,a seaport on the Don River near the Sea of Azov in the European part of Russia
+14570,Roswell,a town in southeast New Mexico
+14571,Rota,(Roman Catholic Church) the supreme ecclesiastical tribunal for cases appealed to the Holy See from diocesan courts
+14572,Rotarian,a member of a Rotary Club
+14573,Rotary_Club Rotary_International,a group of businessmen in a town organized as a service club and to promote world peace
+14574,Roth Philip_Roth Philip_Milton_Roth,United States writer whose novels portray middle-class Jewish life (born in 1933)
+14575,Rothko Mark_Rothko,United States abstract painter (born in Russia) whose paintings are characterized by horizontal bands of color with indistinct boundaries (1903-1970)
+14576,Rothschild,any of family of powerful Jewish bankers in Europe
+14577,Rotifera phylum_Rotifera,a phylum including: rotifers
+14578,Rotterdam,the 2nd largest city in the Netherlands; located in the western Netherlands near the North Sea
+14579,Rottweiler,German breed of large vigorous short-haired cattle dogs
+14580,Rough_Rider,a member of the volunteer cavalry regiment led by Theodore Roosevelt in the Spanish-American War (1898)
+14581,Round_Table King_Arthur's_Round_Table,(legend) the circular table for King Arthur and his knights
+14582,Roundhead,a supporter of parliament and Oliver Cromwell during the English Civil War
+14583,Rous Peyton_Rous Francis_Peyton_Rous,United States pathologist who discovered viruses that cause tumors (1879-1970)
+14584,Rousseau Henri_Rousseau Le_Douanier_Rousseau,French primitive painter (1844-1910)
+14585,Rousseau Jean-Jacques_Rousseau,French philosopher and writer born in Switzerland; believed that the natural goodness of man was warped by society; ideas influenced the French Revolution (1712-1778)
+14586,Royal_Academy Royal_Academy_of_Arts,an honorary academy in London (founded in 1768) intended to cultivate painting and sculpture and architecture in Britain
+14587,Royal_Air_Force RAF,the airforce of Great Britain
+14588,Royal_Canadian_Mounted_Police RCMP Mounties,the federal police force of Canada
+14589,Royal_National_Eisteddfod,an eisteddfod with competitions in music and drama and poetry and the fine arts
+14590,Royal_Society Royal_Society_of_London_for_Improving_Natural_Knowledge,an honorary English society (formalized in 1660 and given a royal charter by Charles II in 1662) through which the British government has supported science
+14591,Roystonea genus_Roystonea,a monocotyledonous genus of West Indian feather palms
+14592,Rub_al-Khali Ar_Rimsal Dahna Great_Sandy_Desert,a desert in southern Saudi Arabia
+14593,Rubens Peter_Paul_Rubens Sir_Peter_Paul_Rubens,prolific Flemish baroque painter; knighted by the English king Charles I (1577-1640)
+14594,Rubia genus_Rubia,type genus of the Rubiaceae; Old World herbs and subshrubs grown for their medicinal properties and for dye substances extracted from their roots
+14595,Rubiaceae family_Rubiaceae madder_family,widely distributed family of mostly tropical trees and shrubs and herbs; includes coffee and chinchona and gardenia and madder and bedstraws and partridgeberry
+14596,Rubiales order_Rubiales,an order of dicotyledonous plants of the subclass Asteridae; have opposite leaves and an inferior compound ovary
+14597,Rubicon,the boundary in ancient times between Italy and Gaul; Caesar's crossing it with his army in 49 BC was an act of war
+14598,Rubicon point_of_no_return,a line that when crossed permits of no return and typically results in irrevocable commitment
+14599,Rubin_test,test to determine the patency or occlusion of the Fallopian tubes
+14600,Rubinstein Anton_Rubenstein Anton_Gregor_Rubinstein Anton_Grigorevich_Rubinstein,Russian composer and pianist (1829-1894)
+14601,Rubinstein Arthur_Rubinstein Artur_Rubinstein,United States pianist (born in Poland) known for his interpretations of the music of Chopin (1886-1982)
+14602,Rubus genus_Rubus,large genus of brambles bearing berries
+14603,Rudbeckia genus_Rudbeckia,North American perennial herbs with showy cone-shaped flower heads
+14604,Rudra,father of the Hindu storm gods Marut; controller of nature; sometimes identified with Siva
+14605,Rufous_rubber_cup,a common name for a variety of Sarcosomataceae
+14606,Ruhr Ruhr_River,a tributary of the Rhine
+14607,Ruhr Ruhr_Valley,a major industrial and coal mining region in the valley of the Ruhr river in northwestern Germany
+14608,Rumex genus_Rumex,docks: coarse herbs and shrubs mainly native to north temperate regions
+14609,Ruminantia suborder_Ruminantia,cattle; bison; sheep; goats; antelopes; deer; chevrotains; giraffes; camels
+14610,Rumohra genus_Rumohra,leatherleaf ferns: in some classifications included in genus Polystichum
+14611,Rumpelstiltskin,a dwarf in one of the fairy stories of the brothers Grimm; tells a woman he will not hold her to a promise if she can guess his name and when she discovers it he is so furious that he destroys himself
+14612,Rundstedt von_Rundstedt Karl_Rudolf_Gerd_von_Rundstedt,German field marshal in World War II who directed the conquest of Poland and led the Ardennes counteroffensive (1875-1953)
+14613,Runyon Damon_Runyon Alfred_Damon_Runyon,United States writer of humorous stylized stories about Broadway and the New York underground (1884-1946)
+14614,Rupert Prince_Rupert,English leader (born in Germany) of the Royalist forces during the English Civil War (1619-1682)
+14615,Rupicapra genus_Rupicapra,chamois
+14616,Rupicola genus_Rupicola,cock of the rocks
+14617,Ruptiliocarpon genus_Ruptiliocarpon,new (1993) genus of trees of Central America now recognized as similar to those of genus Lepidobotrys
+14618,Ruritania,an imaginary kingdom in central Europe; often used as a scene for intrigue and romance
+14619,Ruritanian,an imaginary inhabitant of Ruritania
+14620,Rus,the medieval Russian state established by Scandinavian traders in the 9th century; the capital was first in Novgorod and then in Kiev
+14621,Ruscaceae family_Ruscaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+14622,Ruscus genus_Ruscus,a genus of European evergreen shrubs; sometimes placed in family Asparagaceae
+14623,Rush Benjamin_Rush,physician and American Revolutionary leader; signer of the Declaration of Independence (1745-1813)
+14624,Rushdie Salman_Rushdie Ahmed_Salman_Rushdie,British writer of novels who was born in India; one of his novels is regarded as blasphemous by Muslims and a fatwa was issued condemning him to death (born in 1947)
+14625,Rushmore Mount_Rushmore Mt._Rushmore,a mountain in the Black Hills of South Dakota; the likenesses of Washington and Jefferson and Lincoln and Roosevelt are carved on it
+14626,Ruskin John_Ruskin,British art critic (1819-1900)
+14627,Russell Bertrand_Russell Bertrand_Arthur_William_Russell Earl_Russell,English philosopher and mathematician who collaborated with Whitehead (1872-1970)
+14628,Russell Bill_Russell William_Felton_Russell,United States basketball center (born in 1934)
+14629,Russell Charles_Taze_Russell,United States religious leader who founded the sect that is now called Jehovah's Witnesses (1852-1916)
+14630,Russell George_William_Russell A.E.,Irish writer whose pen name was A.E. (1867-1935)
+14631,Russell Henry_Russell Henry_Norris_Russell,United States astronomer who developed a theory of stellar evolution (1877-1957)
+14632,Russell Ken_Russell Henry_Kenneth_Alfred_Russell,English film director (born in 1927)
+14633,Russell Lillian_Russell,United States entertainer remembered for her roles in comic operas (1861-1922)
+14634,Russell's_body cancer_body,an inclusion body found in plasma cells in cases of cancer
+14635,Russia,a former empire in eastern Europe and northern Asia created in the 14th century with Moscow as the capital; powerful in the 17th and 18th centuries under Peter the Great and Catherine the Great when Saint Petersburg was the capital; overthrown by revolution in 1917
+14636,Russia Russian_Federation,a federation in northeastern Europe and northern Asia; formerly Soviet Russia; since 1991 an independent state
+14637,Russia_leather,a smooth leather tanned with willow, birch, or oak, and scented on the flesh side with birch oil
+14638,Russian,a native or inhabitant of Russia
+14639,Russian,the Slavic language that is the official language of Russia
+14640,Russian_Orthodox_Church,an independent church with its own Patriarch; until 1917 it was the established church or Russia
+14641,Russian_Revolution February_Revolution,the revolution against the czarist government which led to the abdication of Nicholas II and the creation of a provisional government in March 1917
+14642,Russian_Revolution October_Revolution,the coup d'etat by the Bolsheviks under Lenin in November 1917 that led to a period of civil war which ended in victory for the Bolsheviks in 1922
+14643,Russian_River,a river in northern California
+14644,Russian_agency,an administrative agency of the Russian government
+14645,Russian_almond dwarf_Russian_almond Prunus_tenella,Asiatic shrub cultivated for its rosy red flowers
+14646,Russian_bank crapette,solitaire with two players using separate packs
+14647,Russian_dandelion kok-saghyz kok-sagyz Taraxacum_kok-saghyz,perennial dandelion native to Kazakhstan cultivated for its fleshy roots that have high rubber content
+14648,Russian_dressing Russian_mayonnaise,mayonnaise with horseradish grated onion and chili sauce or catsup; sometimes with caviar added
+14649,Russian_monetary_unit,monetary unit in Russia
+14650,Russian_olive silver_berry Elaeagnus_augustifolia,deciduous shrubby tree of Europe and western Asia having grey leaves and small yellow fruits covered in silvery scales; sometimes spiny
+14651,Russian_roulette,a stunt in which you spin the cylinder of a revolver that is loaded with only one bullet and then point the muzzle at your head and pull the trigger
+14652,Russian_thistle Russian_tumbleweed Russian_cactus tumbleweed Salsola_kali_tenuifolia,prickly bushy Eurasian plant; a troublesome weed in central and western United States
+14653,Russo-Japanese_War,Japanese victory in the war with Russia (1904-1905) gave Japan power over Korea and Manchuria
+14654,Russula genus_Russula,large genus of fungi with stout stems and white spores and neither annulus nor volva; brittle caps of red or purple or yellow or green or blue; differs from genus Lactarius in lacking milky juice
+14655,Russulaceae family_Russulaceae,used in some classification systems for the genus Russula
+14656,Rustbelt,urban areas in New England and Midwest characterized by concentrations of declining industries (steel or textiles)
+14657,Ruta genus_Ruta,type genus of the Rutaceae; strong-scented Eurasian herbs
+14658,Rutaceae family_Rutaceae rue_family,a family of dicotyledonous plants of order Geraniales; have flowers that are divide into four or five parts and usually have a strong scent
+14659,Ruth,the great-grandmother of king David whose story is told in the Book of Ruth in the Old Testament
+14660,Ruth Babe_Ruth George_Herman_Ruth Sultan_of_Swat,United States professional baseball player famous for hitting home runs (1895-1948)
+14661,Ruth Book_of_Ruth,a book of the Old Testament that tells the story of Ruth who was not an Israelite but who married an Israelite and who stayed with her mother-in-law Naomi after her husband died
+14662,Rutherford Daniel_Rutherford,British chemist who isolated nitrogen (1749-1819)
+14663,Rutherford Ernest_Rutherford First_Baron_Rutherford First_Baron_Rutherford_of_Nelson,British physicist (born in New Zealand) who discovered the atomic nucleus and proposed a nuclear model of the atom (1871-1937)
+14664,Rutherford_atom,first modern concept of atomic structure; all of the positive charge and most of the mass of the atom are contained in a compact nucleus; a number of electrons (equal to the atomic number) occupy the rest of the volume of the atom and neutralize the positive charge
+14665,Rutilus genus_Rutilus,roaches
+14666,Rutland,a town in central Vermont
+14667,Rutledge John_Rutledge,United States jurist and second chief justice of the United States Supreme Court; he was appointed by George Washington and briefly served as chief justice but was ultimately rejected by the United States Senate (1739-1800)
+14668,Rwanda Rwandese_Republic Ruanda,a landlocked republic in central Africa; formerly a German colony
+14669,Rwanda_franc,the basic unit of money in Rwanda
+14670,Rwandan,a native or inhabitant of Rwanda
+14671,Rydberg's_penstemon Penstemon_rydbergii,plant with whorls of small dark blue-violet flowers; Washington to Wyoming and south to California and Colorado
+14672,Rynchopidae family_Rynchopidae,coextensive with the genus Rynchops: skimmers
+14673,Rynchops genus_Rynchops,type genus of the Rynchopidae: skimmers
+14674,Rypticus genus_Rypticus,a genus of fish of the family Serranidae, including soapfishes
+14675,Ryukyu_Islands,a chain of 55 islands in the western Pacific to the to the southwest of Japan (returned by United States to Japan in 1972)
+14676,Ryukyuan,a member of the Japanese people living on the Ryukyu Islands southwest of Japan
+14677,Ryukyuan,the language (related to Japanese) that is spoken by the people of the Ryukyu Islands
+14678,S s,the 19th letter of the Roman alphabet
+14679,S-shape,a double curve resembling the letter S
+14680,SA Sturmabteilung Storm_Troops,Nazi militia created by Hitler in 1921 that helped him to power but was eclipsed by the SS after 1943
+14681,SALT_I,the first treaty between the United States and the Union of Soviet Socialist Republics resulting from the Strategic Arms Limitation Talks
+14682,SALT_II,the second treaty between the United States and the Union of Soviet Socialist Republics resulting from the Strategic Arms Limitation Talks
+14683,SOS,an internationally recognized distress signal in radio code
+14684,STP s.t.p.,standard temperature and pressure
+14685,SWAT_team SWAT_squad Special_Weapons_and_Tactics_team Special_Weapons_and_Tactics_squad,a squad of policemen who have been trained to deal with violent and dangerous situations
+14686,S_wrench,a wrench with an S-shaped handle
+14687,Saale Saale_River,a river that rises in central Germany and flows north to join the Elbe River
+14688,Saale_glaciation,the next-to-last Pleistocene glaciation in northern Europe and the deposits laid down at that time
+14689,Saarinen Eero_Saarinen,United States architect (born in Finland) (1910-1961)
+14690,Saarinen Eliel_Saarinen,Finnish architect and city planner who moved to the United States in 1923; father of Eero Saarinen (1873-1950)
+14691,Saba,a island in the Netherlands Antilles that is the top of an extinct volcano
+14692,Sabah North_Borneo,one of the 13 states that constitute the Federation of Malaysia; located on the northern portion of the island of Borneo
+14693,Sabahan,a Malaysian from Sabah
+14694,Sabal genus_Sabal,American dwarf fan palms
+14695,Sabaoth,(plural) hosts or armies; used in the book of Romans in the New Testament; "Lord of Sabaoth"
+14696,Sabbatarian,one who observes Saturday as the Sabbath (as in Judaism)
+14697,Sabbath,a day of rest and worship: Sunday for most Christians; Saturday for the Jews and a few Christians; Friday for Muslims
+14698,Sabellian,an extinct Osco-Umbrian language of ancient Italy that survives only in a few inscriptions
+14699,Sabin Albert_Sabin Albert_Bruce_Sabin,United States microbiologist (born in Poland) who developed the Sabin vaccine that is taken orally against poliomyelitis (born 1906)
+14700,Sabin_vaccine oral_poliovirus_vaccine OPV trivalent_live_oral_poliomyelitis_vaccine TOPV,an oral vaccine (containing live but weakened poliovirus) that is given to provide immunity to poliomyelitis
+14701,Sabine,a member of an ancient Oscan-speaking people of the central Apennines north of Rome who were conquered and assimilated into the Roman state in 290 BC
+14702,Sabine Sabine_River,a river in eastern Texas that flows south into the Gulf of Mexico
+14703,Sabinea genus_Sabinea,small genus of deciduous West Indian trees or shrubs: carib wood
+14704,Sacagawea Sacajawea,the Shoshone guide and interpreter who guided the Lewis and Clark expedition part of the way
+14705,Saccharomyces genus_Saccharomyces,single-celled yeasts that reproduce asexually by budding; used to ferment carbohydrates
+14706,Saccharomycetaceae family_Saccharomycetaceae,family of fungi comprising the typical yeasts: reproduce by budding and ferment carbohydrates
+14707,Saccharum genus_Saccharum,tall perennial reedlike grass originally of southeastern Asia: sugarcane
+14708,Sacco Nicola_Sacco,United States anarchist (born in Italy) who with Bartolomeo Vanzetti was convicted of murder and in spite of world-wide protest was executed (1891-1927)
+14709,Sacramento capital_of_California,a city in north central California 75 miles to the northeast of San Francisco on the Sacramento River; capital of California
+14710,Sacramento_Mountains,mountain range in New Mexico to the east of the Rio Grande
+14711,Sacramento_River,a river in northern California rising near Mount Shasta and flowing south to the San Francisco Bay
+14712,Sacred_College College_of_Cardinals cardinalate Sacred_College_of_Cardinals,(Roman Catholic Church) the body of all cardinals of the church; elects and advises the pope
+14713,Sadat Anwar_Sadat Anwar_el-Sadat,Egyptian statesman who (as president of Egypt) negotiated a peace treaty with Menachem Begin (then prime minister of Israel) (1918-1981)
+14714,Sadducee,a member of an ancient Jewish sect around the time of Jesus; opposed to the Pharisees
+14715,Sade de_Sade Comte_Donatien_Alphonse_Francois_de_Sade Marquis_de_Sade,French soldier and writer whose descriptions of sexual perversion gave rise to the term `sadism' (1740-1814)
+14716,Sadleria genus_Sadleria,low tree ferns with large fronds; in rain forests and on lava flows of Hawaiian Islands
+14717,Saek,a branch of the Tai languages
+14718,Safar Saphar,the second month of the Islamic calendar
+14719,Sagina genus_Sagina,small low-growing annual or perennial herbs of temperate and cool regions
+14720,Saginaw,a town in east central Michigan on an arm of Lake Huron
+14721,Sagitta,a small constellation in the northern hemisphere between Cygnus and Aquila and crossed by the Milky Way
+14722,Sagittaria genus_Sagittaria,genus of aquatic herbs of temperate and tropical regions having sagittate or hastate leaves and white scapose flowers
+14723,Sagittariidae family_Sagittariidae,secretary birds
+14724,Sagittarius,a large zodiacal constellation in the southern hemisphere; between Scorpius and Capricornus
+14725,Sagittarius Archer,(astrology) a person who is born while the sun is in Sagittarius
+14726,Sagittarius Sagittarius_the_Archer Archer,the ninth sign of the zodiac; the sun is in this sign from about November 22 to December 21
+14727,Sagittarius genus_Sagittarius,type genus of the Sagittariidae
+14728,Sahara Sahara_Desert,the world's largest desert (3,500,000 square miles) in northern Africa
+14729,Saharan,a Nilo-Saharan language spoken in parts of Chad
+14730,Saigon_cinnamon Cinnamomum_loureirii,tropical southeast Asian tree with aromatic bark; yields a bark used medicinally
+14731,Saimiri genus_Saimiri,squirrel monkeys
+14732,Saint-Bernard's-lily Anthericum_liliago,southern European plant commonly cultivated for its spikes of small starry greenish-white flowers
+14733,Saint-Mihiel St_Mihiel battle_of_St_Mihiel,a battle in the Meuse-Argonne operation in World War I (1918); the battle in which American troops launched their first offensive in France
+14734,Saint-Saens Charles_Camille_Saint-Saens,French pianist and composer (1835-1921)
+14735,Saint_Agnes's_Eve January_20,a Christian holy day
+14736,Saint_Anthony's_fire,any of several inflammatory or gangrenous skin conditions
+14737,Saint_Bernard St_Bernard,a Swiss alpine breed of large powerful dog with a thick coat of hair used as a rescue dog
+14738,Saint_Christopher St._Christopher Saint_Kitts St._Kitts,the largest of the islands comprising Saint Christopher-Nevis
+14739,Saint_Cloud St._Cloud,a town in central Minnesota on the Mississippi River; granite quarries
+14740,Saint_Emilion,full-bodied red wine from around the town of Saint Emilion in Bordeaux
+14741,Saint_Eustatius St._Eustatius,an island in the Netherlands Antilles
+14742,Saint_Francis Saint_Francis_River St._Francis St._Francis_River,a tributary of the Mississippi River that rises in Missouri and flows southeastward through Arkansas
+14743,Saint_John Saint_John_River St._John St._John_River,a river that rises in Maine and flows northeastward through New Brunswick to empty into the Bay of Fundy
+14744,Saint_John St._John,a port in eastern Canada; the largest city in New Brunswick
+14745,Saint_John's St._John's,a port and provincial capital of Newfoundland
+14746,Saint_Johns Saint_Johns_River St._Johns St._Johns_River,a river in northeastern Florida that flows northward to Jacksonville and then eastward to empty into the Atlantic Ocean
+14747,Saint_Joseph St._Joseph,a town in northwest Missouri on the Missouri River; in the 19th century it became the eastern terminus of the pony express
+14748,Saint_Joseph St_Joseph March_19,a Christian holy day
+14749,Saint_Kitts_and_Nevis Federation_of_Saint_Kitts_and_Nevis Saint_Christopher-Nevis St._Christopher-Nevis St._Kitts_and_Nevis,a country on several of the Leeward Islands; located to the east southeast of Puerto Rico; achieved independence from the United Kingdom in 1983
+14750,Saint_Lawrence Saint_Lawrence_River St._Lawrence St._Lawrence_River,a North American river; flows into the Gulf of Saint Lawrence and the North Atlantic
+14751,Saint_Lawrence_Seaway St._Lawrence_Seaway,a seaway involving the Saint Lawrence River and the Great Lakes that was developed jointly by Canada and the United States; oceangoing ships can travel as far west as Lake Superior
+14752,Saint_Louis St._Louis Gateway_to_the_West,the largest city in Missouri; a busy river port on the Mississippi River near its confluence with the Missouri River; was an important staging area for wagon trains westward in the 19th century
+14753,Saint_Lucia St._Lucia,a country on the island of Saint Lucia; gained independence from Great Britain in 1979
+14754,Saint_Lucia St._Lucia,a volcanic island in the Windward Isles to the south of Martinique
+14755,Saint_Martin St._Martin Saint_Maarten St._Maarten,an island in the western Leeward Islands; administered jointly by France and the Netherlands
+14756,Saint_Paul St._Paul capital_of_Minnesota,capital of the state of Minnesota; located in southeastern Minnesota on the Mississippi river adjacent to Minneapolis; one of the Twin Cities
+14757,Saint_Vincent St._Vincent,an island in the center of the Windward Islands; the largest of the islands comprising Saint Vincent and the Grenadines
+14758,Saint_Vincent_and_the_Grenadines St._Vincent_and_the_Grenadines,an island country in the central Windward Islands; achieved independence from the United Kingdom in 1979
+14759,Saintpaulia genus_Saintpaulia,east African herb with nodding flowers; widely cultivated
+14760,Saints_Peter_and_Paul June_29,first celebrated in the 3rd century
+14761,Saipan,the largest island in the Northern Marianas and the administrative center of the commonwealth of the Northern Mariana Islands in union with the United States
+14762,Saipan,US forces captured the island from the Japanese in July 1944; it was an important air base until the end of World War II
+14763,Sajama,a mountain peak in the Andes in Bolivia (21,391 feet high)
+14764,Sakharov Andrei_Sakharov Andrei_Dimitrievich_Sakharov,Soviet physicist and dissident; helped develop the first Russian hydrogen bomb; advocated nuclear disarmament and campaigned for human rights (1921-1989)
+14765,Saladin Salah-ad-Din_Yusuf_ibn-Ayyub,sultan of Syria and Egypt; reconquered Jerusalem from the Christians in 1187 but was defeated by Richard Coeur de Lion in 1191 (1137-1193)
+14766,Salafism Salafi_movement,a militant group of extremist Sunnis who believe themselves the only correct interpreters of the Koran and consider moderate Muslims to be infidels; seek to convert all Muslims and to insure that its own fundamentalist version of Islam will dominate the world
+14767,Salafist_Group Salafast_Group_for_Call_and_Combat GSPC,an Algerian extremist Islamic offshoot of the Armed Islamic Group; now the largest and most active armed terrorist group in Algeria that seeks to overthrow the government; a major source of support and recruitment for al-Qaeda operations in Europe and northern Africa
+14768,Salamandra genus_Salamandra,type genus of the Salamandridae
+14769,Salamandridae family_Salamandridae,salamanders
+14770,Salem,a city in northeastern Massachusetts; site of the witchcraft trials in 1692
+14771,Salem,a city in southern India
+14772,Salem capital_of_Oregon,capital of the state of Oregon in the northwestern part of the state on the Willamette River
+14773,Salerno,a battle in World War II; the port was captured by United States troops in September 1943
+14774,Salian_Frank Salian,a member of the tribe of Franks who settled in the Netherlands in the 4th century AD
+14775,Salic_law,the code of laws of the Salian Franks and other German tribes
+14776,Salicaceae family_Salicaceae willow_family,two genera of trees or shrubs having hairy catkins: Salix; Populus
+14777,Salicales order_Salicales,coextensive with the family Salicaceae
+14778,Salicornia genus_Salicornia,glassworts
+14779,Salientia order_Salientia Anura order_Anura Batrachia order_Batrachia,frogs, toads, tree toads
+14780,Salina,a town in central Kansas
+14781,Salinger J._D._Salinger Jerome_David_Salinger,United States writer (born 1919)
+14782,Salisbury_steak,ground beef patty usually with a sauce
+14783,Salish,a member of a group of North American Indians speaking a Salishan language and living on the northwest coast of North America
+14784,Salish Salishan,a family of Mosan language spoken in northwestern United States and western Canada
+14785,Salix genus_Salix,a large and widespread genus varying in size from small shrubs to large trees: willows
+14786,Salk Jonas_Salk Jonas_Edward_Salk,United States virologist who developed the Salk vaccine that is injected against poliomyelitis (born 1914)
+14787,Salk_vaccine IPV,a poliovirus vaccine consisting of inactivated polio virus that is injected subcutaneously to provide immunity to poliomyelitis
+14788,Sally_Lunn,a flat round slightly sweet teacake usually served hot
+14789,Salmacis,nymph who merged with Hermaphroditus to form one body
+14790,Salmo genus_Salmo,type genus of the Salmonidae: salmon and trout
+14791,Salmon Salmon_River,a tributary of the Snake River in Idaho
+14792,Salmonella_enteritidis Gartner's_bacillus,a form of salmonella that causes gastroenteritis in humans
+14793,Salmonella_typhimurium,a form of salmonella that causes food poisoning in humans
+14794,Salmonidae family_Salmonidae,salmon and trout
+14795,Salome,woman whose dancing beguiled Herod into giving her the head of John the Baptist
+14796,Salomon Haym_Salomon,American financier and American Revolutionary War patriot who helped fund the army during the American Revolution (1740?-1785)
+14797,Salpichroa genus_Salpichroa,herbs of temperate North and South America: cock's eggs
+14798,Salpidae family_Salpidae,a small family of tunicates in the class Thaliacea
+14799,Salpinctes genus_Salpinctes,a genus of Troglodytidae
+14800,Salsola genus_Salsola,chiefly Old World herbs or shrubs: saltworts
+14801,Salt_Lake_City capital_of_Utah,the capital and largest city of Utah; located near the Great Salt Lake in north central Utah; world capital of the Mormon Church
+14802,Salton_Sea,a saltwater lake in southeastern California
+14803,Saluki gazelle_hound,old breed of tall swift keen-eyed hunting dogs resembling greyhounds; from Egypt and southwestern Asia
+14804,Salvadora genus_Salvadora,genus of evergreen trees or shrubs; fruit is a drupe; grows in Africa through Arabia to India and China
+14805,Salvadoraceae family_Salvadoraceae Salvadora_family,a family of Old World shrubs and trees of order Gentianales; related to Oleaceae but having four stamens and four petals
+14806,Salvadoran Salvadorian Salvadorean,a native or inhabitant of El Salvador
+14807,Salvation_Army,a charitable and religious organization to evangelize and to care for the poor and homeless
+14808,Salvelinus genus_Salvelinus,brook trout
+14809,Salvinia genus_Salvinia,type genus of the Salviniaceae: water ferns
+14810,Salviniaceae family_Salviniaceae,water ferns
+14811,Salyut,either of two Soviet space stations launched in the 1970s
+14812,Salzburg,city in western Austria; a music center and birthplace of Mozart
+14813,Sam_Browne_belt,leather belt supported by a strap over the right shoulder
+14814,Sama-Veda,a collection of mantras and tunes for use with the Rig-Veda
+14815,Samaria,an ancient city in central Palestine founded in the 9th century BC as the capital of the northern Hebrew kingdom of Israel; the site is in present-day northwestern Jordan
+14816,Samaritan,a member of the people inhabiting Samaria in biblical times
+14817,Samarkand Samarcand,city in southern Uzbekistan; Tamerlane's opulent capital in the 14th century
+14818,Sambre Sambre_River,a river in western Europe that rises in northern France and flows generally east into Belgium where it joins the Meuse at Namur
+14819,Sambucus genus_Sambucus,elder; elderberry
+14820,Samhita,one of four collections of sacred texts
+14821,Samia genus_Samia,silkworm moths
+14822,Samnite,an Oscan-speaking member of an ancient people of Campania who clashed repeatedly with the early Romans
+14823,Samoa Independent_State_of_Samoa Western_Samoa Samoa_i_Sisifo,a constitutional monarchy on the western part of the islands of Samoa in the South Pacific
+14824,Samoa Samoan_Islands,a group of volcanic islands in the South Pacific midway between Hawaii and Australia; its climate and scenery and Polynesian culture make it a popular tourist stop
+14825,Samoan,a native or inhabitant of the Samoan Islands
+14826,Samolus genus_Samolus,genus of herbs usually growing in salt marshes: water pimpernels
+14827,Samoyed,a Samoyedic-speaking person in northwestern Siberia
+14828,Samoyed Samoyede,Siberian breed of white or cream-colored dog of the spitz family
+14829,Samoyedic Samoyed,the Uralic languages spoken by the Samoyed in northwestern Siberia
+14830,Samson,(Old Testament) a judge of Israel who performed herculean feats of strength against the Philistines until he was betrayed to them by his mistress Delilah
+14831,Samuel,(Old Testament) Hebrew prophet and judge who anointed Saul as king
+14832,San_Andreas_Fault,a major geological fault in California; runs from San Diego to San Francisco; the source of serious earthquakes
+14833,San_Angelo,a town in west central Texas; formerly a notorious frontier town
+14834,San_Antonio,a city of south central Texas; site of the Alamo; site of several military bases and a popular haven for vacationers
+14835,San_Bernardino,a city in southern California to the east of Los Angeles
+14836,San_Carlos_Apache,an Apache language
+14837,San_Diego,a picturesque city of southern California on San Diego Bay near the Mexican border; site of an important naval base
+14838,San_Diego_Bay,a bay of the Pacific in southern California
+14839,San_Fernando_Valley,a fertile valley in southern California to the north of Los Angeles; includes many residential communities
+14840,San_Francisco,a port in western California near the Golden Gate that is one of the major industrial and transportation centers; it has one of the world's finest harbors; site of the Golden Gate Bridge
+14841,San_Francisco_Bay,a bay of the Pacific in western California
+14842,San_Joaquin_River,a river in central California that rises in the Sierra Nevada and flows northwest to form a large delta with the Sacramento River
+14843,San_Joaquin_Valley,a vast valley in central California known for its rich farmland
+14844,San_Jose,a city in western California located at the southern end of San Francisco Bay to the south of San Francisco; a center for computer and electronics industries
+14845,San_Jose capital_of_Costa_Rica,the capital and largest city of Costa Rica
+14846,San_Jose_scale Aspidiotus_perniciosus,small east Asian insect naturalized in the United States that damages fruit trees
+14847,San_Juan,the capital and largest city of Puerto Rico
+14848,San_Juan_Hill,a hill in eastern Cuba (near Santiago de Cuba) that was captured during the Spanish-American War; "Theodore Roosevelt and his Rough Riders became famous for their charge up San Juan Hill"
+14849,San_Juan_Mountains,a mountain range in southwestern Colorado that is part of the Rocky Mountains
+14850,San_Luis_Potosi,a city in central Mexico
+14851,San_Marinese,a native or inhabitant of San Marino
+14852,San_Marino Republic_of_San_Marino,the smallest republic in the world; the oldest independent country in Europe (achieved independence in 301); located in the Apennines and completely surrounded by Italy
+14853,San_Marino capital_of_San_Marino,the capital and only city of San Marino
+14854,San_Mateo,a town in California to the south of San Francisco
+14855,San_Pablo,a town in western California to the north of Oakland on an arm of San Francisco Bay
+14856,San_Pedro_Sula,industrial city in northwestern Honduras
+14857,San_Salvador Salvadoran_capital,the capital and largest city of El Salvador; has suffered from recurrent earthquakes
+14858,San_Sebastian,a city in northern Spain on the Bay of Biscay near the French border; a fashionable seaside resort
+14859,Sana Sanaa Sana'a,the capital and largest city of Yemen; on the central plateau
+14860,Sanchez Ilich_Sanchez Ilich_Ramirez_Sanchez Carlos Carlos_the_Jackal Salim Andres_Martinez Taurus Glen_Gebhard Hector_Hevodidbon Michael_Assat,Venezuelan master terrorist raised by a Marxist-Leninist father; trained and worked with many terrorist groups (born in 1949)
+14861,Sand George_Sand Amandine_Aurore_Lucie_Dupin Baroness_Dudevant,French writer known for works concerning women's rights and independence (1804-1876)
+14862,Sandburg Carl_Sandburg,United States writer remembered for his poetry in free verse and his six volume biography of Abraham Lincoln (1878-1967)
+14863,Sangay,an inactive volcano in the Andes in central Ecuador; last erupted in 1946
+14864,Sanger Frederick_Sanger Fred_Sanger,English biochemist who determined the sequence of amino acids in insulin and who invented a technique to determine the genetic sequence of an organism (born in 1918)
+14865,Sanger Margaret_Sanger Margaret_Higgins_Sanger,United States nurse who campaigned for birth control and planned parenthood; she challenged Gregory Pincus to develop a birth control pill (1883-1966)
+14866,Sango,a trade language widely used in Chad
+14867,Sanguinaria genus_Sanguinaria,one species: bloodroot
+14868,Sanhedrin,the supreme judicial and ecclesiastical council of ancient Jerusalem
+14869,Sanicula genus_Sanicula,chiefly American herbs: sanicle
+14870,Sanskrit Sanskritic_language,(Hinduism) an ancient language of India (the language of the Vedas and of Hinduism); an official language of India although it is now used only for religious purposes
+14871,Sanskrit_literature,Hindu literature written in Sanskrit
+14872,Santa_Ana,a strong hot dry wind that blows in winter from the deserts of southern California toward the Pacific Coast
+14873,Santa_Ana,a city in southern California to the east of Long Beach
+14874,Santa_Ana,a city in western El Salvador
+14875,Santa_Anna Santa_Ana Antonio_Lopez_de_Santa_Anna Antonio_Lopez_de_Santa_Ana,Mexican general who tried to crush the Texas revolt and who lost battles to Winfield Scott and Zachary Taylor in the Mexican War (1795-1876)
+14876,Santa_Barbara,a town in southwestern California on the Pacific Ocean
+14877,Santa_Catalina Catalina_Island,an island resort in the Pacific off the southwestern coast of California
+14878,Santa_Clara,a city of west central California; residential area with light industry
+14879,Santa_Claus Santa Kriss_Kringle Father_Christmas Saint_Nicholas Saint_Nick St._Nick,the legendary patron saint of children; an imaginary being who is thought to bring presents to children at Christmas
+14880,Santa_Cruz,a town in western California on Monterey Bay; a tourist center
+14881,Santa_Cruz,a city in central Bolivia
+14882,Santa_Cruz_cypress Cupressus_abramsiana Cupressus_goveniana_abramsiana,rare California cypress taller than but closely related to gowen cypress and sometimes considered the same species
+14883,Santa_Fe capital_of_New_Mexico,capital of the state of New Mexico; located in north central New Mexico
+14884,Santa_Fe_Trail,a trail that extends from Missouri to New Mexico; an important route for settlers moving west in the 19th century
+14885,Santa_Gertrudis,Brahman and shorthorn crossbreed of red cattle; hardy in hot regions
+14886,Santa_Lucia_fir bristlecone_fir Abies_bracteata Abies_venusta,a pyramidal fir of southwestern California having spiny pointed leaves and cone scales with long spines
+14887,Santa_Maria_del_Tule,a town in southeastern Mexico near Oaxaca; site of Ahuehuete, a giant Montezuma cypress
+14888,Santalaceae family_Santalaceae sandalwood_family,chiefly tropical herbs or shrubs or trees bearing nuts or one-seeded fruit
+14889,Santalales order_Santalales,order of plants distinguished by having a one-celled inferior ovary; many are parasitic or partly parasitic usually on roots
+14890,Santalum genus_Santalum,parasitic trees of Indonesia and Malaysia
+14891,Santee,the Siouan language spoken by the Santee
+14892,Santee Santee_Sioux Santee_Dakota Eastern_Sioux,a member of the eastern branch of the Sioux
+14893,Santiago Santiago_de_Cuba,a naval battle in the Spanish-American War (1898); the United States fleet bottled up the Spanish ships in the harbor of Santiago de Cuba and destroyed them when they tried to escape
+14894,Santiago_de_Cuba Santiago,a port city in southeastern Cuba; industrial center
+14895,Santiago_de_los_Caballeros Santiago,city in the northern Dominican Republic
+14896,Santo_Domingo Ciudad_Trujillo capital_of_the_Dominican_Republic,the capital and largest city of the Dominican Republic; "Santo Domingo is the oldest continually inhabited European settlement in the Americas with the oldest cathedral and the oldest hospital and the oldest monastery in the Western Hemisphere"
+14897,Santolina genus_Santolina,genus of Mediterranean subshrubs with rayless flower heads
+14898,Santos,a port city in southwestern Brazil on an offshore island near Sao Paulo
+14899,Sanvitalia genus_Sanvitalia,small genus of tropical American annual herbs: creeping zinnia
+14900,Sao_Bernardo_do_Campo,a city in southeastern Brazil; an industrial suburb of Sao Paulo
+14901,Sao_Francisco,a river in eastern Brazil flowing into the Atlantic Ocean
+14902,Sao_Goncalo,an industrial city in southeastern Brazil across the bay from Rio de Janeiro
+14903,Sao_Joao_de_Meriti,a city in southeastern Brazil that is a residential suburb of Rio de Janeiro
+14904,Sao_Jose_dos_Campos,a city in southeastern Brazil to the northeast of Sao Paulo
+14905,Sao_Louis,a city on an offshore island in northeast Brazil
+14906,Sao_Paulo,an ultramodern city in southeastern Brazil; the largest city in South America
+14907,Sao_Thome_e_Principe_monetary_unit,monetary unit on Sao Tome e Principe
+14908,Sao_Tiago_Island,largest of the Cape Verde Islands in the Atlantic Ocean
+14909,Sao_Tome,capital of Sao Tome and Principe
+14910,Sao_Tome_and_Principe Democratic_Republic_of_Sao_Tome_and_Principe Sao_Tome_e_Principe Sao_Thome_e_Principe St._Thomas_and_Principe,island nation in the South Atlantic off the west coast of Africa; achieved independence from Portugal in 1975; has enormous offshore oil reserves
+14911,Saone Saone_River,a river in eastern France; rises in Lorraine and flows south to become the chief tributary of the Rhone
+14912,Sapindaceae family_Sapindaceae soapberry_family,chiefly tropical New and Old World deciduous and evergreen trees and shrubs bearing leathery drupes with yellow translucent flesh; most plants produce toxic saponins
+14913,Sapindales order_Sapindales,an order of dicotyledonous plants
+14914,Sapindus genus_Sapindus,type genus of the Sapindaceae
+14915,Sapir Edward_Sapir,anthropologist and linguist; studied languages of North American Indians (1884-1939)
+14916,Saponaria genus_Saponaria,mostly perennial Old World herbs
+14917,Sapotaceae family_Sapotaceae sapodilla_family,tropical trees or shrubs with milky juice and often edible fleshy fruit
+14918,Sappho,the Greek lyric poet of Lesbos; much admired although only fragments of her poetry have been preserved (6th century BC)
+14919,Sapporo,a commercial city in northern Japan on western Hokkaido
+14920,Saprolegnia genus_Saprolegnia,aquatic fungi growing chiefly on plant debris and animal remains
+14921,Saprolegniales order_Saprolegniales,order of chiefly aquatic fungi
+14922,Saqqara Saqqarah Sakkara,a town in northern Egypt; site of the oldest Egyptian pyramids
+14923,Saracen,(when used broadly) any Arab
+14924,Saracen,(historically) a member of the nomadic people of the Syrian and Arabian deserts at the time of the Roman Empire
+14925,Saracen,(historically) a Muslim who opposed the Crusades
+14926,Sarah,(Old Testament) the wife of Abraham and mother of Isaac
+14927,Sarajevo,capital and largest city of Bosnia; scene of the assassination of Francis Ferdinand in 1914 which precipitated World War I
+14928,Sarasota,a town in west central Florida on the Gulf of Mexico
+14929,Sarasvati,Hindu goddess of learning and the arts
+14930,Saratoga battle_of_Saratoga,a battle during the American Revolution (1777); the British under Burgoyne were defeated
+14931,Saratoga_Springs,a town in eastern New York State famed for its spa and its horse racing
+14932,Saratoga_spittlebug Aphrophora_saratogensis,feeds on pines in northern United States
+14933,Saratov,an industrial city in the European part of Russia
+14934,Sarawak,the largest state in Malaysia; located on the northwest of the island of Borneo
+14935,Sarawakian,a native or inhabitant of Sarawak
+14936,Sarazen Gene_Sarazen,United States golfer who was first to win all four major golf tournaments (1902-1999)
+14937,Sarcobatus genus_Sarcobatus,one species: greasewood
+14938,Sarcocephalus genus_Sarcocephalus,genus of tropical African trees and shrubs
+14939,Sarcochilus genus_Sarcochilus,diminutive epiphytic or lithophytic orchids with clumped short-stemmed foliage and arching racemes of colorful flowers; Australia and Polynesia to southeastern Asia
+14940,Sarcocystis genus_Sarcocystis,chief genus of the order Sarcosporidia
+14941,Sarcodes genus_Sarcodes,snow plant; in some classifications placed in family Pyrolaceae
+14942,Sarcodina class_Sarcodina,characterized by the formation of pseudopods for locomotion and taking food: Actinopoda; Rhizopoda
+14943,Sarcophaga genus_Sarcophaga,flesh flies
+14944,Sarcophilus genus_Sarcophilus,Tasmanian devil
+14945,Sarcoptes genus_Sarcoptes,type genus of the family Sarcoptidae: itch mites
+14946,Sarcoptidae family_Sarcoptidae,small whitish mites
+14947,Sarcorhamphus genus_Sarcorhamphus,usually containing only the king vulture
+14948,Sarcoscypha_coccinea scarlet_cup,a discomycete that is a harbinger of spring; the fruiting body is thin and tough and saucer-shaped (about the size of quarter to a half dollar) with a deep bright red upper surface and a whitish exterior
+14949,Sarcoscyphaceae family_Sarcoscyphaceae,family of fungi belonging to the order Pezizales
+14950,Sarcosomataceae,a type of ascomycetous fungus
+14951,Sarcosporidia order_Sarcosporidia,imperfectly known parasites of the muscles of vertebrates
+14952,Sarcostemma genus_Sarcostemma,succulent subshrubs or vines; tropical and subtropical India and Africa and Malaysia
+14953,Sarda genus_Sarda,bonitos
+14954,Sardina genus_Sardina genus_Sardinia,pilchards
+14955,Sardinia Sardegna,the Italian region on the island of Sardinia; the kingdom of Sardinia was the nucleus for uniting Italy during the 19th century
+14956,Sardinia Sardegna,an island in the Mediterranean to the west of Italy
+14957,Sardinian,a native or inhabitant of Sardinia
+14958,Sardinian,the Italian dialect spoken in Sardinia; sometimes considered a separate language with many loan words from Spanish
+14959,Sardinops genus_Sardinops,pilchards
+14960,Sardis,an ancient Greek city located in the western part of what is now modern Turkey; as the capital of Lydia it was the cultural center of Asia Minor; destroyed by Tamerlane in 1402
+14961,Sargasso_Sea,a vast area of the North Atlantic from the West Indies to the Azores that is dense with gulfweed
+14962,Sargent John_Singer_Sargent,United States painter (born in Italy) known for his society portraits (1856-1925)
+14963,Sarnoff David_Sarnoff,United States businessman who pioneered in radio and television broadcasting (1891-1971)
+14964,Saronic_Gulf Gulf_of_Aegina,a gulf of the Aegean on the southeastern coast of Greece
+14965,Saroyan William_Saroyan,United States writer of plays and short stories (1908-1981)
+14966,Sarpanitu Zirbanit Zarpanit,consort of Marduk
+14967,Sarpedon,(Greek mythology) a son of Zeus who became king of Lycia; fought on behalf of the Trojans in the Trojan War and was killed by Patroclus
+14968,Sarracenia genus_Sarracenia,pitcher plants
+14969,Sarraceniaceae family_Sarraceniaceae pitcher-plant_family,insectivorous plants
+14970,Sarraceniales order_Sarraceniales,plants that are variously modified to serve as insect traps: families Sarraceniaceae; Nepenthaceae; Droseraceae
+14971,Sartre Jean-Paul_Sartre,French writer and existentialist philosopher (1905-1980)
+14972,Saskatchewan,one of the three prairie provinces in west central Canada; "vast fields of wheat grow on Saskatchewan's prairies"
+14973,Saskatoon,a city in central Saskatchewan; the largest city in the province
+14974,Sassenach,the Scots' term for an English person
+14975,Satan Old_Nick Devil Lucifer Beelzebub the_Tempter Prince_of_Darkness,(Judeo-Christian and Islamic religions) chief spirit of evil and adversary of God; tempter of mankind; master of Hell
+14976,Satanist diabolist,an adherent of Satan or Satanism
+14977,Satie Erik_Satie Erik_Alfred_Leslie_Satie,French composer noted for his experimentalism and rejection of Romanticism (1866-1925)
+14978,Saturday Sabbatum Sat,the seventh and last day of the week; observed as the Sabbath by Jews and some Christians
+14979,Saturday_night_special,a cheap handgun that is easily obtained
+14980,Satureja genus_Satureja Satureia genus_Satureia,savory
+14981,Saturn,(Roman mythology) god of agriculture and vegetation; counterpart of Greek Cronus; "Saturday is Saturn's Day"
+14982,Saturn,a giant planet that is surrounded by three planar concentric rings of ice particles; the 6th planet from the sun
+14983,Saturnalia,an orgiastic festival in ancient Rome in honor of Saturn
+14984,Saturnia genus_Saturnia,type genus of the Saturniidae: emperor moth
+14985,Saturniidae family_Saturniidae,important and widely distributed family of moths including some of the largest insects known
+14986,Satyagraha,the form of nonviolent resistance initiated in India by Mahatma Gandhi in order to oppose British rule and to hasten political reforms
+14987,Satyridae family_Satyridae,a widely distributed family of butterflies common near the edges of woods
+14988,Saudi Saudi_Arabian,a native or inhabitant of Saudi Arabia
+14989,Saudi_Arabia Kingdom_of_Saudi_Arabia,an absolute monarchy occupying most of the Arabian Peninsula in southwest Asia; vast oil reserves dominate the economy
+14990,Saudi_Arabian_monetary_unit,monetary unit in Saudi Arabia
+14991,Saudi_Arabian_riyal riyal,the basic unit of money in Saudi Arabia
+14992,Sauk Sac,a member of the Algonquian people formerly living in Wisconsin in the Fox River valley and on the shores of Green Bay
+14993,Saul,(Old Testament) the first king of the Israelites who defended Israel against many enemies (especially the Philistines)
+14994,Sault_Sainte_Marie,a town of southern Ontario opposite northern Michigan
+14995,Sauria suborder_Sauria Lacertilia suborder_Lacertilia,true lizards; including chameleons and geckos
+14996,Saurischia order_Saurischia,extinct terrestrial reptiles: theropods (carnivorous); sauropods (herbivorous)
+14997,Sauromalus genus_Sauromalus,chuckwallas
+14998,Sauropoda suborder_Sauropoda,any of the sauropod dinosaurs
+14999,Sauropodomorpha suborder_Sauropodomorpha,gigantic herbivorous dinosaurs having huge bodies with long necks and small heads: Prosauropoda and Sauropoda (apatosaurus, diplodocus and titanosaurs)
+15000,Sauropterygia order_Sauropterygia,extinct marine reptiles: plesiosaurs; nothosaurs
+15001,Saurosuchus genus_Saurosuchus,early archosaurian carnivore
+15002,Saururaceae family_Saururaceae lizard's-tail_family,family of perennial aromatic herbs: genera Saururus, Anemopsis, Houttuynia
+15003,Saururus genus_Saururus,type genus of the Saururaceae: lizard's-tails
+15004,Saussurea genus_Saussurea,genus of herbs of temperate and cool regions of Eurasia
+15005,Sauterne Sauternes,semisweet golden-colored table or dessert wine from around Bordeaux in France; similar wine from California
+15006,Sauvignon_blanc,white wine grape grown in California
+15007,Sauvignon_blanc,a California wine
+15008,Sauvignon_grape,small blue-black grape of Medoc region of France highly prized in winemaking
+15009,Savannah,a port in eastern Georgia near the mouth of the Savannah river
+15010,Savannah Savannah_River,a river in South Carolina that flows southeast to the Atlantic
+15011,Savara,a member of the Dravidian people living in southern India
+15012,Savara,a Dravidian language spoken by the Savara in southeastern India (north of Madras)
+15013,Savitar,an important Hindu god; the sun in its life-giving aspect
+15014,Savonarola Girolamo_Savonarola,Italian religious and political reformer; a Dominican friar in Florence who preached against sin and corruption and gained a large following; he expelled the Medici from Florence but was later excommunicated and executed for criticizing the Pope (1452-1498)
+15015,Savoy,a geographical region of historical importance; a former duchy in what is now southwestern France, western Switzerland, and northwestern Italy
+15016,Savoyard,a person who performs in the operettas of Gilbert and Sullivan
+15017,Savoyard,a resident of Savoy
+15018,Sawan Sravana,the fifth month of the Hindu calendar
+15019,Sax Adolphe_Sax,a Belgian maker of musical instruments who invented the saxophone (1814-1894)
+15020,Saxe Hermann_Maurice_Saxe comte_de_Saxe Marshal_Saxe,a French marshal who distinguished himself in the War of the Austrian Succession (1696-1750)
+15021,Saxe-Coburg-Gotha,the name of the royal family that ruled Great Britain from 1901-1917; the name was changed to Windsor in 1917 in response to anti-German feelings in World War I
+15022,Saxe-gothea Saxegothea genus_Saxe-gothea genus_Saxegothea,one species: Prince Albert's yew
+15023,Saxicola genus_Saxicola,Old World chats
+15024,Saxifraga genus_Saxifraga,type genus of the Saxifragaceae; large genus of usually perennial herbs of Arctic and cool regions of northern hemisphere: saxifrage
+15025,Saxifragaceae family_Saxifragaceae saxifrage_family,a large and diverse family of evergreen or deciduous herbs; widely distributed in northern temperate and cold regions; sometimes includes genera of the family Hydrangeaceae
+15026,Saxo_Grammaticus,Danish historian who chronicled the history of Denmark (including the legend of Hamlet) (1150?-1220?)
+15027,Saxon,a member of a Germanic people who conquered England and merged with the Angles and Jutes to become Anglo-Saxons; dominant in England until the Norman Conquest
+15028,Saxony Sachsen Saxe,an area in Germany around the upper Elbe river; the original home of the Saxons
+15029,Sayan_Mountains,a range of mountains in southern Siberia to the west of Lake Baikal; contain important mineral deposits
+15030,Sayda Saida Sidon,the main city of ancient Phoenicia
+15031,Sayeret_Matkal Sayeret_Mat'kal sayeret,Israel's elite secret commando unit responsible for counterterrorist and top secret intelligence gathering and hostage rescue missions
+15032,Sayers Dorothy_Sayers Dorothy_L._Sayers Dorothy_Leigh_Sayers,English writer of detective fiction (1893-1957)
+15033,Sayornis genus_Sayornis,phoebes
+15034,Sazerac,a cocktail made with bourbon with bitters and Pernod and sugar served with lemon peel
+15035,Scandentia order_Scandentia,a small order comprising only the tree shrews: in some classifications tree shrews are considered either primates (and included in the suborder Prosimii) or true insectivores (and included in the order Insectivora)
+15036,Scandinavia,a group of culturally related countries in northern Europe; Finland and Iceland are sometimes considered Scandinavian
+15037,Scandinavia Scandinavian_Peninsula,the peninsula in northern Europe occupied by Norway and Sweden
+15038,Scandinavian Norse Northman,an inhabitant of Scandinavia
+15039,Scandinavian Scandinavian_language Nordic Norse North_Germanic North_Germanic_language,the northern family of Germanic languages that are spoken in Scandinavia and Iceland
+15040,Scandinavian_country Scandinavian_nation,any one of the countries occupying Scandinavia
+15041,Scandinavian_lox,salt-cured Scandinavian salmon
+15042,Scaphiopus genus_Scaphiopus,New World spadefoot toads
+15043,Scaphopoda class_Scaphopoda,small class of bilaterally symmetrical marine forms comprising the tooth shells
+15044,Scaphosepalum genus_Scaphosepalum,comprises some tropical American species usually placed in genus Masdevallia: diminutive plants with small flowers carried on one scape
+15045,Scarabaeidae family_Scarabaeidae,scarab or dung beetles
+15046,Scaramouch Scaramouche,a stock character in commedia dell'arte depicted as a boastful coward
+15047,Scardinius genus_Scardinius,rudds
+15048,Scaridae family_Scaridae,parrotfishes
+15049,Scartella genus_Scartella,a genus of Blenniidae
+15050,Sceliphron genus_Sceliphron,mud daubers
+15051,Sceloglaux genus_Sceloglaux,a genus of Strigidae
+15052,Sceloporus genus_Sceloporus,spiny lizards
+15053,Schadenfreude,delight in another person's misfortune
+15054,Schaffneria genus_Schaffneria,one species
+15055,Schaffneria_nigripes Asplenium_nigripes Scolopendrium_nigripes,a fern of the genus Schaffneria
+15056,Scheele Karl_Scheele Karl_Wilhelm_Scheele,Swedish chemist (born in Germany) who discovered oxygen before Priestley did (1742-1786)
+15057,Schefflera genus_Schefflera,large genus of shrubby and climbing tropical plants having showy digitately compound foliage
+15058,Scheldt Scheldt_River,a river that rises in France and flows northeast across Belgium and empties into the North Sea
+15059,Schenectady,a city of eastern New York on the Mohawk river; it prospered after the opening of the Erie Canal
+15060,Scheuchzeriaceae family_Scheuchzeriaceae Juncaginaceae family_Juncaginaceae arrow-grass_family,a family of monocotyledonous bog herbs of order Naiadales
+15061,Schiaparelli Elsa_Schiaparelli,fashion designer born in Italy who was noted for her use of synthetic materials and brilliant colors (1896-1973)
+15062,Schiaparelli Giovanni_Virginio_Schiaparelli,Italian astronomer who first noted lines (which he called canals) on the surface of Mars (1835-1910)
+15063,Schick_test,a skin test for immunity to diphtheria
+15064,Schiller Johann_Christoph_Friedrich_von_Schiller,German romantic writer (1759-1805)
+15065,Schinus genus_Schinus,genus of evergreen shrubs and trees of tropical and subtropical regions of South and Central America and Canary Islands and China
+15066,Schistosoma genus_Schistosoma,type genus of the family Schistosomatidae: blood flukes
+15067,Schistosomatidae family_Schistosomatidae,a family of Trematoda
+15068,Schizachyrium genus_Schizachyrium,overlaps the genus Andropogon
+15069,Schizaea genus_Schizaea,type genus of the Schizaeaceae cosmopolitan especially in tropics; small leptosporangiate ferns: curly grass fern
+15070,Schizaeaceae family_Schizaeaceae,small family of mainly tropical ferns
+15071,Schizomycetes class_Schizomycetes,a former classification
+15072,Schizophragma genus_Schizophragma,small genus of deciduous climbing and creeping shrubs with white flowers in flat clusters; sometimes placed in family Saxifragaceae
+15073,Schizophyta division_Schizophyta,former term for the Cyanophyta
+15074,Schizopoda,in former classifications a division of Malacostraca; superseded by the orders Mysidacea and Euphausiacea
+15075,Schizosaccharomyces genus_Schizosaccharomyces,type and only genus of Schizosaccharomycetaceae; comprises the fission yeasts
+15076,Schizosaccharomycetaceae family_Schizosaccharomycetaceae,a family of fungi belonging to order Endomycetales
+15077,Schleiden Matthias_Schleiden M._J._Schleiden,German physiologist and histologist who in 1838 formulated the cell theory (1804-1881)
+15078,Schlesinger Arthur_Schlesinger Arthur_Meier_Schlesinger,United States historian (1888-1965)
+15079,Schlesinger Arthur_Schlesinger Arthur_Schlesinger_Jr. Arthur_Meier_Schlesinger_Jr.,United States historian and advisor to President Kennedy (born in 1917)
+15080,Schliemann Heinrich_Schliemann,German archaeologist who discovered nine superimposed city sites of Troy; he also excavated Mycenae (1822-1890)
+15081,Schlumbergera genus_Schlumbergera,South American epiphytic or lithophytic cacti
+15082,Schmidt Helmut_Schmidt Helmut_Heinrich_Waldemar_Schmidt,German statesman who served as chancellor of Germany (born in 1918)
+15083,Schmidt_telescope Schmidt_camera,reflecting telescope that has plate that corrects for aberration so a wide area of sky can be photographed
+15084,Schnabel Artur_Schnabel,United States composer (born in Austria) and pianist noted for his interpretations of the works of Mozart and Beethoven and Schubert (1882-1951)
+15085,Scholastic,a Scholastic philosopher or theologian
+15086,Scholasticism,the system of philosophy dominant in medieval Europe; based on Aristotle and the Church Fathers
+15087,Schomburgkia genus_Schomburgkia,genus of tropical American epiphytic orchids with showy racemose flowers
+15088,Schonbein Christian_Schonbein Christian_Friedrich_Schonbein,German chemist who discovered ozone and developed guncotton as a propellant in firearms (1799-1868)
+15089,Schonberg Arnold_Schonberg Schoenberg Arnold_Schoenberg,United States composer and musical theorist (born in Austria) who developed atonal composition (1874-1951)
+15090,Schoolcraft Henry_Rowe_Schoolcraft,United States geologist and ethnologist and explorer who discovered the source of the Mississippi River (1793-1864)
+15091,Schoolman medieval_Schoolman,a scholar in one of the universities of the Middle Ages; versed in scholasticism
+15092,Schopenhauer Arthur_Schopenhauer,German pessimist philosopher (1788-1860)
+15093,Schreiber's_aster,a variety of aster
+15094,Schrodinger Erwin_Schrodinger,Austrian physicist who discovered the wave equation (1887-1961)
+15095,Schrodinger_equation Schrodinger_wave_equation,the fundamental equation of wave mechanics
+15096,Schubert Franz_Schubert Franz_Peter_Schubert Franz_Seraph_Peter_Schubert,Austrian composer known for his compositions for voice and piano (1797-1828)
+15097,Schulz Charles_Schulz Charles_M._Schulz Charles_Munroe_Schulz,United States cartoonist whose comic strip included the beagle Snoopy (1922-2000)
+15098,Schumann Clara_Josephine_Schumann,German pianist and composer of piano music; renowned for her interpretation of music, especially the music of her husband Robert Schumann (1819-1896)
+15099,Schumann Robert_Schumann Robert_Alexander_Schumann,German romantic composer known for piano music and songs (1810-1856)
+15100,Schumann-Heink Ernestine_Schumann-Heink,United States operatic contralto (1861-1936)
+15101,Schumpeter Joseph_Schumpeter Joseph_Alois_Schumpeter,United States economist (born in Czechoslovakia) (1883-1950)
+15102,Schutzstaffel SS,special police force in Nazi Germany founded as a personal bodyguard for Adolf Hitler in 1925; the SS administered the concentration camps
+15103,Schwann Theodor_Schwann,German physiologist and histologist who in 1838 and 1839 identified the cell as the basic structure of plant and animal tissue (1810-1882)
+15104,Schwann_cell,any cell that covers the nerve fibers in the peripheral nervous system and forms the myelin sheath
+15105,Schweitzer Albert_Schweitzer,French philosopher and physician and organist who spent most of his life as a medical missionary in Gabon (1875-1965)
+15106,Sciadopityaceae family_Sciadopityaceae,family comprising a single genus that until recently was considered part of Taxodiaceae
+15107,Sciadopitys genus_Sciadopitys,type and sole genus of Sciadopityaceae; Japanese umbrella pines
+15108,Sciaena genus_Sciaena,type genus of the Sciaenidae: croakers
+15109,Sciaenidae family_Sciaenidae,warm-water marine fishes including the drums and grunts and croakers and sea trout
+15110,Sciaenops genus_Sciaenops,a genus of Sciaenidae
+15111,Sciaridae family_Sciaridae,fungus gnats
+15112,Scientology Church_of_Scientology,a new religion founded by L. Ron Hubbard in 1955 and characterized by a belief in the power of a person's spirit to clear itself of past painful experiences through self-knowledge and spiritual fulfillment
+15113,Scilly_Islands Isles_of_Scilly,an archipelago of small islands off the southwestern coast of England near the entrance to the English Channel; formerly a haven for smugglers and pirates
+15114,Scincella genus_Scincella,a reptile genus of Scincidae
+15115,Scincidae family_Scincidae,skinks
+15116,Scincus genus_Scincus,type genus of Scincidae
+15117,Scindapsus genus_Scindapsus genus_Pothos,evergreen climbers with adhesive adventitious roots; southeastern Asia and Brazil
+15118,Scipio Scipio_Africanus Scipio_Africanus_Major Publius_Cornelius_Scipio Publius_Cornelius_Scipio_Africanus_Major Scipio_the_Elder,Roman general who commanded the invasion of Carthage in the second Punic War and defeated Hannibal at Zama (circa 237-183 BC)
+15119,Scirpus genus_Scirpus,rhizomatous perennial grasslike herbs
+15120,Sciuridae family_Sciuridae,a mammal family of true squirrels including: ground squirrels; marmots; chipmunks; flying squirrels; spermophiles
+15121,Sciuromorpha suborder_Sciuromorpha,large more or less primitive rodents: squirrels; marmots; gophers; beavers; etc.
+15122,Sciurus genus_Sciurus,type genus of the Sciuridae; typical moderate-sized arboreal squirrels
+15123,Scleranthus genus_Scleranthus,small genus of Old World weedy prostrate annuals: knawel
+15124,Scleroderma genus_Scleroderma,genus of poisonous fungi having hard-skinned fruiting bodies: false truffles
+15125,Scleroderma_bovista smooth_earthball,an earthball with a peridium that is firm dry and smooth when young but developing cracks when mature; pale orange-yellow when young and reddish brown at maturity
+15126,Scleroderma_citrinum Scleroderma_aurantium,an earthball fungus that is a dingy brownish yellow and a dark purplish interior; the peridium is covered with a pattern of small warts
+15127,Scleroderma_flavidium star_earthball,an earthball with a smooth upper surface that is at first buried in sand; the top of the fruiting body opens up to form segments like the ray of an umbel
+15128,Sclerodermataceae family_Sclerodermataceae,a family of fungi or order Sclerodermatales with a single-layered peridium; includes earthballs
+15129,Sclerodermatales order_Sclerodermatales,an order of fungi having a peridium surrounding a gleba (sometimes placed in subclass Homobasidiomycetes)
+15130,Scleropages genus_Scleropages,a genus of large freshwater fishes of Australia and Borneo
+15131,Scleroparei order_Scleroparei,scorpionfishes; sculpins; gurnards; greenlings; flying gurnards
+15132,Sclerotiniaceae family_Sclerotiniaceae,a fungus family of order Helotiales
+15133,Sclerotium genus_Sclerotium,form genus of sterile imperfect fungi; many form sclerotia; some cause sclerotium disease in plants
+15134,Scolopacidae family_Scolopacidae,sandpiper family: sandpipers; woodcocks; snipes; tattlers; curlews; godwits; dowitchers
+15135,Scolopax genus_Scolopax,type of the Scolopacidae: Old World woodcocks
+15136,Scolymus genus_Scolymus,small genus of thistlelike herbs of the Mediterranean region
+15137,Scolytidae family_Scolytidae Ipidae family_Ipidae,large family of bark-boring or wood-boring short-beaked beetles; very destructive to forest and fruit trees
+15138,Scolytus genus_Scolytus,type genus of the Scolytidae comprising numerous small bark beetles
+15139,Scomber genus_Scomber,type genus of the Scombridae
+15140,Scomberesocidae family_Scomberesocidae Scombresocidae family_Scombresocidae,only sauries
+15141,Scomberesox genus_Scomberesox Scombresox genus_Scombresox,a genus of Scomberesocidae
+15142,Scomberomorus genus_Scomberomorus,Spanish mackerels
+15143,Scomberomorus_maculatus,a large commercially important mackerel of the Atlantic coastal waters of North America
+15144,Scombridae family_Scombridae,marine food fishes: mackerels; chub mackerels; tuna
+15145,Scombroidea suborder_Scombroidea,mackerels; tunas; albacores; bonitos; swordfishes; sailfishes
+15146,Scopes John_Scopes John_Thomas_Scopes,Tennessee highschool teacher who violated a state law by teaching evolution; in a highly publicized trial in 1925 he was prosecuted by William Jennings Bryan and defended by Clarence Darrow (1900-1970)
+15147,Scopes_trial,a highly publicized trial in 1925 when John Thomas Scopes violated a Tennessee state law by teaching evolution in high school; Scopes was prosecuted by William Jennings Bryan and defended by Clarence Darrow; Scopes was convicted but the verdict was later reversed
+15148,Scophthalmus genus_Scophthalmus,a genus of Bothidae
+15149,Scopolia genus_Scopolia,genus of European perennial herbs yielding medicinal alkaloids
+15150,Scopolia_carniolica,herb that is a source of scopolamine
+15151,Scorpaena genus_Scorpaena,type genus of the Scorpaenidae: scorpionfishes
+15152,Scorpaenidae family_Scorpaenidae,scorpionfishes; rockfishes; lionfishes
+15153,Scorpaenoidea suborder_Scorpaenoidea,mail-cheeked fishes: scorpionfishes; gurnards
+15154,Scorpio Scorpio_the_Scorpion Scorpion,the eighth sign of the zodiac; the sun is in this sign from about October 23 to November 21
+15155,Scorpio Scorpion,(astrology) a person who is born while the sun is in Scorpio
+15156,Scorpionida order_Scorpionida,true scorpions
+15157,Scorpius Scorpio,a large zodiacal constellation between Libra and Sagittarius
+15158,Scorsese Martin_Scorsese,United States filmmaker (born in 1942)
+15159,Scot Scotsman Scotchman,a native or inhabitant of Scotland
+15160,Scotch Scotch_whiskey Scotch_whisky malt_whiskey malt_whisky Scotch_malt_whiskey Scotch_malt_whisky,whiskey distilled in Scotland; especially whiskey made from malted barley in a pot still
+15161,Scotch_and_soda,a highball with Scotch malt whiskey and club soda
+15162,Scotch_asphodel Tofieldia_pusilla,false asphodel having spikes of white flowers; of mountainous regions of Europe
+15163,Scotch_broth,a thick soup made from beef or mutton with vegetables and pearl barley
+15164,Scotch_egg,hard-cooked egg encased in sausage meat then breaded and deep-fried
+15165,Scotch_kiss,butterscotch candy kiss
+15166,Scotch_laburnum Alpine_golden_chain Laburnum_alpinum,an ornamental shrub or tree of the genus Laburnum
+15167,Scotch_pine Scots_pine Scotch_fir Pinus_sylvestris,medium large two-needled pine of northern Europe and Asia having flaking red-brown bark
+15168,Scotch_terrier Scottish_terrier Scottie,old Scottish breed of small long-haired usually black terrier with erect tail and ears
+15169,Scotch_woodcock,creamy scrambled eggs on toast spread with anchovy paste
+15170,Scotland,one of the four countries that make up the United Kingdom of Great Britain and Northern Ireland; located on the northern part of the island of Great Britain; famous for bagpipes and plaids and kilts
+15171,Scotland_Yard New_Scotland_Yard,the detective department of the metropolitan police force of London
+15172,Scotswoman Scotchwoman,a woman who is a Scot
+15173,Scott Dred_Scott,United States slave who sued for liberty after living in a non-slave state; caused the Supreme Court to declare the Missouri Compromise unconstitutional (1795?-1858)
+15174,Scott George_C._Scott,award-winning United States film actor (1928-1999)
+15175,Scott Robert_Scott Robert_Falcon_Scott,English explorer who reached the South Pole just a month after Amundsen; he and his party died on the return journey (1868-1912)
+15176,Scott Walter_Scott Sir_Walter_Scott,British author of historical novels and ballads (1771-1832)
+15177,Scott Winfield_Scott,United States general who was a hero of the War of 1812 and who defeated Santa Anna in the Mexican War (1786-1866)
+15178,Scottish Scots Scots_English,the dialect of English used in Scotland
+15179,Scottish_Gaelic Scots_Gaelic,the Gaelic of Scotland
+15180,Scottish_deerhound deerhound,very large and tall rough-coated dog bred for hunting deer; known as the royal dog of Scotland
+15181,Scout,a Boy Scout or Girl Scout
+15182,Scrabble,a board game in which words are formed from letters in patterns similar to a crossword puzzle; each letter has a value and those values are used to score the game
+15183,Scranton,an industrial city of northeastern Pennsylvania
+15184,Scriabin Aleksandr_Scriabin Aleksandr_Nikolayevich_Scriabin,Russian composer of orchestral and piano music (1872-1915)
+15185,Scribe Augustin_Eugene_Scribe,French playwright (1791-1861)
+15186,Scripps Edward_Wyllis_Scripps,United States newspaper publisher who founded an important press association; half-brother of James Edmund Scripps (1854-1926)
+15187,Scripps James_Edmund_Scripps,United States newspaper publisher and half-brother of Edward Wyllis Scripps (1835-1908)
+15188,Scrophularia genus_Scrophularia,type genus of Scrophulariaceae; named for the plants' supposed ability to cure scrofula: figworts
+15189,Scrophulariaceae family_Scrophulariaceae figwort_family foxglove_family,a family of dicotyledonous plants of the order Polemoniales; includes figwort and snapdragon and foxglove and toadflax and speedwell and mullein; in some classifications placed in the order Scrophulariales
+15190,Scrophulariales order_Scrophulariales,used in some classification systems; often included in the order Polemoniales
+15191,Sculptor,a faint constellation in the southern hemisphere near Phoenix and Cetus
+15192,Scutellaria genus_Scutellaria,an asterid dicot genus that includes the skullcaps
+15193,Scutigera genus_Scutigera,a genus of Scutigeridae
+15194,Scutigerella genus_Scutigerella,garden centipedes
+15195,Scutigeridae family_Scutigeridae,a family of Chilopoda
+15196,Scyliorhinidae family_Scyliorhinidae,small bottom-dwelling sharks
+15197,Scylla,(Greek mythology) a sea nymph transformed into a sea monster who lived on one side of a narrow strait; drowned and devoured sailors who tried to escape Charybdis (a whirlpool) on the other side of the strait
+15198,Scyphozoa class_Scyphozoa,coelenterates in which the polyp stage is absent or at least inconspicuous: jellyfishes
+15199,Scythia,an ancient area of Eurasia extending from the Black Sea to the Aral Sea that was populated by Scythians from the eighth to the fourth century BC
+15200,Scythian,a member of the ancient nomadic people inhabiting Scythia
+15201,Scythian,the Iranian language spoken by the ancient Scythians
+15202,Scythian_lamb Cibotium_barometz,Asiatic tree fern having dense matted hairs sometimes used as a styptic
+15203,Sea_Scout,a Boy Scout enrolled in programs for water activities
+15204,Sea_of_Azov Sea_of_Azof Sea_of_Azoff,a bay of the Black Sea between Russia and the Ukraine
+15205,Sea_of_Japan East_Sea,an arm of the Pacific bordered by Japan, Korea, North Korea, and Russia
+15206,Sea_of_Okhotsk,an arm of the Pacific to the east of Asia
+15207,Seaborg Glenn_T._Seaborg Glenn_Theodore_Seaborg,United States chemist who was one of the discoverers of plutonium (1912-1999)
+15208,Sealyham,a village in southwestern Wales where the Sealyham terrier was first bred
+15209,Sealyham_terrier Sealyham,a wire-haired terrier with short legs that was first bred in Sealyham
+15210,Seaman Elizabeth_Seaman Elizabeth_Cochrane_Seaman Nellie_Bly,muckraking United States journalist who exposed bad conditions in mental institutions (1867-1922)
+15211,Seanad_Eireann Seanad,the upper house of the parliament of the Irish Republic
+15212,Sears_Tower,a skyscraper built in Chicago in 1974; 1454 feet tall
+15213,Seattle,a major port of entry and the largest city in Washington; located in west central Washington on the protected waters of Puget Sound with the snow-capped peaks of the Cascade Range and Mount Rainier visible to the south and east; an aerospace and computer center; site of the University of Washington
+15214,Seattle_Slew,thoroughbred that won the triple crown in 1977
+15215,Sebastiana genus_Sebastiana,Mexican spurges
+15216,Sebastodes genus_Sebastodes,rockfishes
+15217,Sebastopol Sevastopol,a city in southern Ukraine on the Black Sea
+15218,Secale genus_Secale,cereal grass widely cultivated for its grain: rye
+15219,Secession,the withdrawal of eleven southern states from the Union in 1860 which precipitated the American Civil War
+15220,Second_Coming Second_Coming_of_Christ Second_Advent Advent Parousia,(Christian theology) the reappearance of Jesus as judge for the Last Judgment
+15221,Second_Crusade,a Crusade from 1145 to 1147 that failed because of internal disagreements among the crusaders and led to the loss of Jerusalem in 1187
+15222,Second_Empire,the imperial government of Napoleon III in France from 1852-1870
+15223,Second_Epistel_of_John II_John,the second New Testament epistle traditionally attributed to Saint John the Apostle
+15224,Second_Epistle_of_Paul_the_Apostle_to_Timothy Second_Epistle_to_Timothy II_Timothy,a New Testament book containing Saint Paul's second epistle to Timothy; contains advice on pastoral matters
+15225,Second_Epistle_of_Paul_the_Apostle_to_the_Corinthians Second_Epistle_to_the_Corinthians II_Corinthians,a New Testament book containing the second epistle from Saint Paul to the church at Corinth
+15226,Second_Epistle_of_Paul_the_Apostle_to_the_Thessalonians Second_Epistle_to_the_Thessalonians II_Thessalonians,a New Testament book containing Saint Paul's second epistle to the Thessalonians
+15227,Second_Epistle_of_Peter II_Peter,the second New Testament book traditionally attributed to Saint Peter the Apostle
+15228,Second_Lateran_Council,the second council of the Western Church in 1139 which put an end to the dogmatic errors of Arnold of Brescia
+15229,Second_Vatican_Council Vatican_II,the Vatican Council in 1962-1965 that abandoned the universal Latin liturgy and acknowledged ecumenism and made other reforms
+15230,Secotiaceae family_Secotiaceae,a family of fungi that have a stalk and cap and a wrinkled mass of tissue (the gleba) where spores are produced; are often dismissed as misshapen forms of other fungi
+15231,Secotiales order_Secotiales,an order of fungi belonging to the class Gasteromycetes
+15232,Secret_Intelligence_Service MI Military_Intelligence_Section_6,the government agency in the United Kingdom that is responsible for internal security and counterintelligence overseas
+15233,Secretariat,thoroughbred that won the triple crown in 1973
+15234,Secretary_General,a person who is a chief administrator (as of the United Nations)
+15235,Secretary_of_Agriculture Agriculture_Secretary,the person who holds the secretaryship of the Department of Agriculture; "the first Secretary of Agriculture was Norman J. Colman, who was appointed by Cleveland"
+15236,Secretary_of_Agriculture Agriculture_Secretary,the position of the head of the Department of Agriculture; "the post of Secretary of Agriculture was established in 1889"
+15237,Secretary_of_Commerce Commerce_Secretary,the person who holds the secretaryship of the Department of Commerce; "the first Commerce Secretary was William C. Redfield who was appointed by Wilson"
+15238,Secretary_of_Commerce Commerce_Secretary,the position of the head of the Department of Commerce; "the position of Commerce Secretary was created in 1913"
+15239,Secretary_of_Commerce_and_Labor,head of a former executive department created in 1903 and divided into two departments in 1913
+15240,Secretary_of_Defense Defense_Secretary,the person who holds the secretaryship of the Defense Department; "the first Defense Secretary was James V. Forrestal who was appointed by Truman"
+15241,Secretary_of_Defense Defense_Secretary,the position of the head of the Department of Defense; "the position of Defense Secretary was created in 1947"
+15242,Secretary_of_Education Education_Secretary,the person who holds the secretaryship of the Department of Education; "Carter appointed Shirley Hufstedler as the first Secretary of Education"
+15243,Secretary_of_Education Education_Secretary,the position of the head of the Education Department; "the post of Education Secretary was created in 1979"
+15244,Secretary_of_Energy Energy_Secretary,the person who holds the secretaryship of the Department of Energy; "the first Secretary of Energy was James R. Schlesinger who was appointed by Carter"
+15245,Secretary_of_Energy Energy_Secretary,the position of the head of the Department of Energy; "the post of Energy Secretary was created in 1977"
+15246,Secretary_of_Health_Education_and_Welfare,head of a former executive department created in 1953 and divided into two departments in 1979
+15247,Secretary_of_Health_and_Human_Services,the person who holds the secretaryship of the Department of Health and Human Services; "the first Secretary of Health and Human Services was Patricia Roberts Harris who was appointed by Carter"
+15248,Secretary_of_Health_and_Human_Services,the position of the head of the Department of Health and Human Services; "the post of Secretary of Health and Human Services was created by Congress in 1979"
+15249,Secretary_of_Housing_and_Urban_Development,the person who holds the secretaryship of the Department of Housing and Urban Development; "the first Secretary of Housing and Urban Development was Robert C. Weaver who was appointed by Johnson"
+15250,Secretary_of_Housing_and_Urban_Development,the position of the head of the Department of Housing and Urban Development; "the position of Secretary of Housing and Urban Development was created in 1966"
+15251,Secretary_of_Labor Labor_Secretary,the person who holds the secretaryship of the Department of Labor; "the first Labor Secretary was William B. Wilson who was appointed by President Wilson"
+15252,Secretary_of_Labor Labor_Secretary,the position of the head of the Department of Labor; "the post of Labor Secretary was created in 1913"
+15253,Secretary_of_State,the person who holds the secretaryship of the Department of State; "the first Secretary of State was Thomas Jefferson"
+15254,Secretary_of_State,the position of the head of the State Department; "the position of Secretary of State was established in 1789"
+15255,Secretary_of_Transportation Transportation_Secretary,the person who holds the secretaryship of the Department of Transportation; "Johnson appointed Alan S. Boyd as the first Transportation Secretary"
+15256,Secretary_of_Transportation Transportation_Secretary,the position of the head of the Department of Transportation; "the post of Transportation Secretary was created in 1966"
+15257,Secretary_of_Veterans_Affairs,the person who holds the secretaryship of the Department of Veterans Affairs; "Bush appointed Edward J. Derwinski as the first Secretary of Veterans Affairs"
+15258,Secretary_of_Veterans_Affairs,the position of the head of the Department of Veterans Affairs; "the post of Secretary of Veterans Affairs was created in 1989"
+15259,Secretary_of_War War_Secretary,head of a former executive department; combined with the Navy Secretary to form the Defense Secretary in 1947
+15260,Secretary_of_the_Interior Interior_Secretary,the person who holds the secretaryship of the Interior Department; "President Taylor appointed Thomas Ewing as the first Secretary of the Interior"
+15261,Secretary_of_the_Interior Interior_Secretary,the position of the head of the Department of the Interior; "the position of Interior Secretary was created in 1849"
+15262,Secretary_of_the_Navy Navy_Secretary,head of a former executive department; combined with the War Secretary to form the Defense Secretary in 1947
+15263,Secretary_of_the_Treasury Treasury_Secretary,the person who holds the secretaryship of the Treasury Department; "Alexander Hamilton was the first Secretary of the Treasury"
+15264,Secretary_of_the_Treasury Treasury_Secretary,the position of the head of the Treasury Department; "the position of Treasury Secretary was created in 1789"
+15265,Section_Eight,a soldier who received a Section Eight discharge as unfit for military service
+15266,Section_Eight,a discharge from the US Army based on unfitness or character traits deemed undesirable
+15267,Securities_and_Exchange_Commission SEC,an independent federal agency that oversees the exchange of securities to protect investors
+15268,Security_Council SC,a permanent council of the United Nations; responsible for preserving world peace
+15269,Security_Intelligence_Review_Committee SIRC,an agency of the Canadian government that oversees the activities of the Criminal Intelligence Services of Canada and has the power to intrude on the privacy of suspected terrorists or spies
+15270,Security_Service MI Military_Intelligence_Section_5,the government agency in the United Kingdom that is responsible for internal security and counterintelligence on British territory
+15271,Sedalia,a town in east central Missouri
+15272,Seder Passover_supper,(Judaism) the ceremonial dinner on the first night (or both nights) of Passover
+15273,Sedna,a planetoid of rock and ice about three-quarters the size of Pluto discovered in 2003; the most distant object known to orbit around the sun
+15274,Seeger Alan_Seeger,United States poet killed in World War I (1888-1916)
+15275,Seeger Pete_Seeger Peter_Seeger,United States folk singer who was largely responsible for the interest in folk music in the 1960s (born in 1919)
+15276,Seeing_Eye_dog,(trademark) a guide dog trained to guide a blind person
+15277,Segal George_Segal,United States sculptor (born in 1924)
+15278,Segovia Andres_Segovia,Spanish guitarist who made classical guitar a concert instrument (1893-1987)
+15279,Segway Segway_Human_Transporter Segway_HT,(trademark) a self-balancing personal transportation device with two wheels; can operate in any level pedestrian environment
+15280,Seidlitz_powder Seidlitz_powders Rochelle_powder,an effervescing salt containing sodium bicarbonate and Rochelle salt and tartaric acid; used as a cathartic
+15281,Seine Seine_River,a French river that flows through the heart of Paris and then northward into the English Channel
+15282,Seismosaurus genus_Seismosaurus,genus of large herbivorous dinosaurs of Cretaceous found in western North America
+15283,Seiurus genus_Seiurus,ovenbirds and water thrushes
+15284,Sekhet Eye_of_Ra,a lion-headed Egyptian goddess; typifies life-destroying power of the sun
+15285,Selaginella genus_Selaginella,type and sole genus of the Selaginellaceae; evergreen moss-like plants: spike moss and little club moss
+15286,Selaginellaceae family_Selaginellaceae,lesser club mosses: terrestrial chiefly tropical plants resembling mosses
+15287,Selaginellales order_Selaginellales,in some classifications included in Lycopodiales
+15288,Selangor,sultanate and one of the 13 states that constitute the Federation of Malaysia
+15289,Selar genus_Selar,big-eyed scad
+15290,Selective_Service Selective_Service_System SSS,an independent federal agency that administers compulsory military service
+15291,Selenarctos genus_Selenarctos,Asiatic black bears; in some classifications not a separate genus from Ursus
+15292,Selene,(Greek mythology) goddess of the Moon in ancient mythology; identified with Roman Luna
+15293,Selene genus_Selene,a genus of Carangidae
+15294,Selenicereus genus_Selenicereus,mostly epiphytic climbing cacti that bloom at night
+15295,Selenipedium genus_Selenipedium,genus of tall reedlike tropical American orchids; includes species with pods used locally as a substitute for vanilla
+15296,Seles Monica_Seles,United States tennis player (born in Yugoslavia in 1973)
+15297,Seleucus Seleucus_I Seleucus_I_Nicator,Macedonian general who accompanied Alexander the Great into Asia; founded a line of kings who reigned in Asia Minor until 65 BC (358-281 BC)
+15298,Seljuk,any one of the Turkish dynasties that ruled Asia Minor from the 11th to the 13th centuries; they successfully invaded Byzantium and defended the Holy Land against Crusaders
+15299,Selkirk Selcraig Alexander_Selkirk Alexander_Selcraig,Scottish sailor who was put ashore on a deserted island off the coast of Chile for five years (providing the basis for Daniel Defoe's novel about Robinson Crusoe) (1676-1721)
+15300,Selkirk_Mountains,a range of the Rocky Mountains in southeastern British Columbia
+15301,Selkup Ostyak-Samoyed,one of the people of mixed Ostyak and Samoyed origin in Siberia
+15302,Selkup Ostyak-Samoyed,the Uralic language spoken by the Ostyak-Samoyed
+15303,Sellers Peter_Sellers,English comic actor (1925-1980)
+15304,Selma,a town in central Alabama on the Alabama river; in 1965 it was the center of a drive to register Black voters
+15305,Selznick David_O._Selznick David_Oliver_Selznick,United States filmmaker noted for his film adaptations of popular novels (1902-1965)
+15306,Semarang Samarang,a port city is southern Indonesia; located in northern Java
+15307,Seminole,a member of the Muskhogean people who moved into Florida in the 18th century
+15308,Seminole,the Muskhogean language of the Seminole
+15309,Semite,a member of a group of Semitic-speaking peoples of the Middle East and northern Africa
+15310,Semitic,a major branch of the Afro-Asiatic language family
+15311,Semitic_deity,a deity worshipped by the ancient Semites
+15312,Sempach battle_of_Sempach,the Swiss Confederation escaped Hapsburg domination by their victory in 1386
+15313,Seneca,a member of the Iroquoian people formerly living in New York State south of Lake Ontario
+15314,Seneca,the Iroquoian language spoken by the Seneca
+15315,Seneca Lucius_Annaeus_Seneca,Roman statesman and philosopher who was an advisor to Nero; his nine extant tragedies are modeled on Greek tragedies (circa 4 BC - 65 AD)
+15316,Seneca_Lake Lake_Seneca,a glacial lake in central New York; the largest of the Finger Lakes
+15317,Seneca_snakeroot Seneka_snakeroot senga_root senega_root senega_snakeroot Polygala_senega,eastern North American plant having a terminal cluster of small white flowers and medicinal roots
+15318,Senecio genus_Senecio,enormous and diverse cosmopolitan genus of trees and shrubs and vines and herbs including many weeds
+15319,Senefelder Alois_Senefelder Aloys_Senefelder,German printer who invented lithography (1771-1834)
+15320,Senegal Republic_of_Senegal,a republic in northwestern Africa on the coast of the Atlantic; formerly a French colony but achieved independence in 1960
+15321,Senegal_gum,gum arabic from the vicinity of the Senegal river
+15322,Senegalese,a native or inhabitant of Senegal
+15323,Senegalese_franc,the basic unit of money in Senegal
+15324,Senhor,a Portuguese title of respect; equivalent to English `Mr'
+15325,Sennacherib,king of Assyria who invaded Judea twice and defeated Babylon and rebuilt Nineveh after it had been destroyed by Babylonians (died in 681 BC)
+15326,Sennenhunde,any of four Swiss breeds
+15327,Sennett Mack_Sennett,United States filmmaker (born in Canada) noted for slapstick movies (1880-1960)
+15328,Senor,a Spanish title or form of address for a man; similar to the English `Mr' or `sir'
+15329,Senora,a Spanish title or form of address for a married woman; similar to the English `Mrs' or `madam'
+15330,Senorita,a Spanish title or form of address used to or of an unmarried girl or woman; similar to the English `Miss'
+15331,Seoul capital_of_South_Korea,the capital of South Korea and the largest city of Asia; located in northwestern South Korea
+15332,Sephardi Sephardic_Jew,a Jew who is of Spanish or Portuguese or North African descent
+15333,Sepia genus_Sepia,type genus of the Sepiidae
+15334,Sepiidae family_Sepiidae,true cuttlefishes
+15335,September Sep Sept,the month following August and preceding October
+15336,September_elm red_elm Ulmus_serotina,autumn-flowering elm of southeastern United States
+15337,Septobasidiaceae family_Septobasidiaceae,a family of fungi belonging to the subdivision Basidiomycota
+15338,Septobasidium genus_Septobasidium,type genus of Septobasidiaceae: smooth shelf fungi usually having a well-developed sometimes thick-walled hypobasidium
+15339,Septuagesima Septuagesima_Sunday,the 3rd Sunday before Lent (or the 9th before Easter)
+15340,Septuagint,the oldest Greek version of the Old Testament; said to have been translated from the Hebrew by Jewish scholars at the request of Ptolemy II
+15341,Sequoia_National_Park,a national park in California that includes Mount Whitney
+15342,Sequoiadendron genus_Sequoiadendron,giant sequoias; sometimes included in the genus Sequoia; until recently placed in the Taxodiaceae
+15343,Sequoya Sequoyah George_Guess,Cherokee who created a notation for writing the Cherokee language (1770-1843)
+15344,Serbia Srbija,a historical region in central and northern Yugoslavia; Serbs settled the region in the 6th and 7th centuries
+15345,Serbia_and_Montenegro Union_of_Serbia_and_Montenegro Yugoslavia Federal_Republic_of_Yugoslavia Jugoslavija,a mountainous republic in southeastern Europe bordering on the Adriatic Sea; formed from two of the six republics that made up Yugoslavia until 1992; Serbia and Montenegro were known as the Federal Republic of Yugoslavia until 2003 when they adopted the name of the Union of Serbia and Montenegro
+15346,Serbian Serb,a member of a Slavic people who settled in Serbia and neighboring areas in the 6th and 7th centuries
+15347,Serbo-Croat Serbo-Croatian,the Slavic language of the Serbs and Croats; the Serbian dialect is usually written in the Cyrillic alphabet and the Croatian dialect is usually written in the Roman alphabet
+15348,Serengeti Serengeti_Plain,a vast plain in Tanzania to the west of the Great Rift Valley known for its wildlife
+15349,Serengeti_National_Park,a national park in Tanzania created in 1951 to protect the wildlife
+15350,Serenoa genus_Serenoa,one species: saw palmetto
+15351,Serer,a West African language closely related to Fula; spoken primarily in Senegal and Gambia
+15352,Sericocarpus genus_Sericocarpus,small genus of herbs of the eastern United States: white-topped asters
+15353,Serinus genus_Serinus,Old World finches; e.g. canaries and serins
+15354,Seriola genus_Seriola,a genus of Carangidae
+15355,Seriphidium genus_Seriphidium,woody plants grown chiefly for their silver or grey and often aromatic foliage; formerly included in the genus Artemisia
+15356,Seriphus genus_Seriphus,a genus of Sciaenidae
+15357,Serkin Rudolf_Serkin,United States concert pianist (born in Czechoslovakia) (1903-1991)
+15358,Sermon_on_the_Mount,the first major discourse delivered by Jesus (Matthew 5-7 and Luke 6:20-49)
+15359,Serpens,a constellation in the equatorial region of the northern hemisphere near Ophiuchus and Corona Borealis
+15360,Serpentes suborder_Serpentes Ophidia suborder_Ophidia,snakes
+15361,Serra Junipero_Serra Miguel_Jose_Serra,Spanish missionary who founded Franciscan missions in California (1713-1784)
+15362,Serranidae family_Serranidae,marine fishes: sea basses; sea perches; groupers; jewfish
+15363,Serranus genus_Serranus,type genus of the Serranidae: mostly small Pacific sea basses
+15364,Serrasalmus genus_Serrasalmus,piranhas
+15365,Serratia_marcescens,the type species of the genus Serratia; a species found in water and soil and milk and foods and insects; can cause infections of the endocardium and blood and wounds and urinary tract and respiratory tract; has been tested as a bioweapon
+15366,Serratula genus_Serratula,genus of Old World perennial herbs with spirally arranged toothed leaves
+15367,Sertoli_cell Sertoli's_cell,elongated cells found in the seminiferous tubules of the testis; apparently they nourish the spermatids
+15368,Sertularia genus_Sertularia,sessile hydroid that forms feathery colonies
+15369,Service Robert_William_Service,Canadian writer (born in England) who wrote about life in the Yukon Territory (1874-1958)
+15370,Sesamum genus_Sesamum,tropical African and Indian herbs
+15371,Seseli genus_Seseli,a rosid dicot genus that includes moon carrots
+15372,Sesotho Basuto,the dialect of Sotho spoken by the Basotho; an official language of Lesotho
+15373,Sessions Roger_Sessions Roger_Huntington_Sessions,United States composer who promoted 20th century music (1896-1985)
+15374,Set Seth,evil Egyptian god with the head of a beast that has high square ears and a long snout; brother and murderer of Osiris
+15375,Setaria genus_Setaria,annual or perennial grasses of warm regions: bristlegrasses
+15376,Sete_Quedas Guaira Guaira_Falls,a great waterfall on the border between Brazil and Paraguay
+15377,Seth,(Old Testament) third son of Adam and Eve; given by God in place of the murdered Abel
+15378,Seton Elizabeth_Seton Saint_Elizabeth_Ann_Bayley_Seton Mother_Seton,United States religious leader who was the first person born in the United States to be canonized (1774-1821)
+15379,Setophaga genus_Setophaga,a genus of Parulidae
+15380,Setubal,a port city on the Atlantic coast of Portugal to the southeast of Lisbon
+15381,Seurat Georges_Seurat Georges_Pierre_Seurat,French painter who developed pointillism (1859-1891)
+15382,Seven_Hills_of_Rome,the hills on which the ancient city of Rome was built
+15383,Seven_Wonders_of_the_Ancient_World Seven_Wonders_of_the_World,impressive monuments created in the ancient world that were regarded with awe
+15384,Seven_Years'_War,a war of England and Prussia against France and Austria (1756-1763); Britain and Prussia got the better of it
+15385,Seventh-Day_Adventism,Adventism that is strongly Protestant and observes Saturday as the Sabbath
+15386,Seventh_Avenue,an avenue in Manhattan that runs north and south
+15387,Seventh_Crusade,a Crusade initiated in 1248 after the loss of Jerusalem in 1244 and defeated in 1249
+15388,Severn River_Severn Severn_River,a river in England and Wales flowing into the Bristol Channel; the longest river in Great Britain
+15389,Severn Severn_River,a river in Ontario that flows northeast into Hudson Bay
+15390,Sevilla Seville,a city in southwestern Spain; a major port and cultural center; the capital of bullfighting in Spain
+15391,Seward William_Henry_Seward,United States politician who as Secretary of State in 1867 arranged for the purchase of Alaska from Russia (known at the time as Seward's Folly) (1801-1872)
+15392,Seward's_Folly,the transaction in 1867 in which the United States Secretary of State William Henry Seward purchased Alaska from Russia
+15393,Seward_Peninsula,a peninsula in western Alaska that projects westward into the Bering Sea just below the Arctic Circle
+15394,Sexton Anne_Sexton,United States poet (1928-1974)
+15395,Seychelles Republic_of_Seychelles,a republic on the Seychelles islands; achieved independence from the United Kingdom in 1976
+15396,Seychelles Seychelles_islands,a group of about 90 islands in the western Indian Ocean to the north of Madagascar
+15397,Seychelles_monetary_unit,monetary unit in Seychelles
+15398,Seychelles_rupee rupee,the basic unit of money in Seychelles; equal to 100 cents
+15399,Seychellois,a native or inhabitant of Seychelles
+15400,Seyhan Seyhan_River,a Turkish river flowing south southwest into the Mediterranean
+15401,Seymour Jane_Seymour,Queen of England as the third wife of Henry VIII and mother of Edward VI (1509-1537)
+15402,Sfax Safaqis,the second largest city in Tunisia; located in eastern Tunisia near a phosphate region
+15403,Sha'ban Shaaban,the eighth month of the Islamic calendar
+15404,Shah Shah_of_Iran,title for the former hereditary monarch of Iran
+15405,Shah_Jahan,Mogul emperor of India during whose reign the finest monuments of Mogul architecture were built (including the Taj Mahal at Agra) (1592-1666)
+15406,Shahaptian Sahaptin,a Penutian language spoken by the Shahaptian
+15407,Shahaptian Sahaptin Sahaptino,a member of a North American Indian people who lived in Oregon along the Columbia river and its tributaries in Washington and northern Idaho
+15408,Shahn Ben_Shahn Benjamin_Shahn,United States artist whose work reflected social and political themes (1898-1969)
+15409,Shaker,a member of Christian group practicing celibacy and communal living and common possession of property and separation from the world
+15410,Shakers United_Society_of_Believers_in_Christ's_Second_Appearing,a celibate and communistic Christian sect in the United States
+15411,Shakespeare William_Shakespeare Shakspere William_Shakspere Bard_of_Avon,English poet and dramatist considered one of the greatest English writers (1564-1616)
+15412,Shakespearean_sonnet Elizabethan_sonnet English_sonnet,a sonnet consisting three quatrains and a concluding couplet in iambic pentameter with the rhyme pattern abab cdcd efef gg
+15413,Shakespearian Shakespearean,a Shakespearean scholar
+15414,Shakti Sakti,the female or generative principle; wife of Siva and a benevolent form of Devi
+15415,Shaktism Saktism,a Hindu sect worshiping Shakti
+15416,Shaktism Saktism,worship of Shakti as the wife of Shiva
+15417,Shaktist,worshipper of Shakti
+15418,Shamash,the chief sun god; drives away winter and storms and brightens the earth with greenery; drives away evil and brings justice and compassion
+15419,Shang Shang_dynasty,the imperial dynasty ruling China from about the 18th to the 12th centuries BC
+15420,Shanghai,the largest city of China; located in the east on the Pacific; one of the largest ports in the world
+15421,Shankar Ravi_Shankar,Indian sitar player who popularized classical Indian music in the West (born in 1920)
+15422,Shannon Claude_Shannon Claude_E._Shannon Claude_Elwood_Shannon,United States electrical engineer who pioneered mathematical communication theory (1916-2001)
+15423,Shapley Harlow_Shapley,United States astronomer (1885-1972)
+15424,Shari Shari_River Chari Chari_River,an African river that flows northwest into Lake Chad
+15425,Sharpie,a pen with indelible ink that will write on any surface
+15426,Shasta,a member of the Indian people of northern California and southern Oregon
+15427,Shasta,the Shastan language spoken by the Shasta
+15428,Shasta Mount_Shasta,a volcanic mountain peak in the Cascade Range in northern California (14,162 feet high)
+15429,Shasta_salamander Hydromantes_shastae,primarily a cave dweller in the Mount Shasta area
+15430,Shastan,a group of languages of the Hokan family in California
+15431,Shavian,an admirer of G. B. Shaw or his works
+15432,Shavous Shabuoth Shavuoth Shavuot Pentecost Feast_of_Weeks,(Judaism) Jewish holy day celebrated on the sixth of Sivan to celebrate Moses receiving the Ten Commandments
+15433,Shaw Anna_Howard_Shaw,United States physician and suffragist (1847-1919)
+15434,Shaw Artie_Shaw Arthur_Jacob_Arshawsky,United States clarinetist and leader of a swing band (1910-2004)
+15435,Shaw G._B._Shaw George_Bernard_Shaw,British playwright (born in Ireland); founder of the Fabian Society (1856-1950)
+15436,Shaw Henry_Wheeler_Shaw Josh_Billings,United States humorist who wrote about rural life (1818-1885)
+15437,Shawn Ted_Shawn,United States dancer and choreographer who collaborated with Ruth Saint Denis (1891-1972)
+15438,Shawnee,a member of the Algonquian people formerly living along the Tennessee river
+15439,Shawnee,the Algonquian language spoken by the Shawnee
+15440,Shawnee_cake,form of johnnycake
+15441,Shawwal,the tenth month of the Islamic calendar
+15442,Shearer Moira_Shearer,Scottish ballet dancer and actress (born in 1926)
+15443,Shebat Shevat,the fifth month of the civil year: the eleventh month of the ecclesiastical year in the Jewish calendar (in January and February)
+15444,Sheetrock,a kind of plasterboard
+15445,Sheffield,a steel manufacturing city in northern England famous for its cutlery industry
+15446,Shelley Mary_Shelley Mary_Wollstonecraft_Shelley Mary_Godwin_Wollstonecraft_Shelley,English writer who created Frankenstein's monster and married Percy Bysshe Shelley (1797-1851)
+15447,Shelley Percy_Bysshe_Shelley,Englishman and romantic poet (1792-1822)
+15448,Shem,(Old Testament) eldest son of Noah
+15449,Shema,a liturgical prayer (considered to be the essence of Jewish religion) that is recited at least twice daily by adult Jewish males to declare their faith; "as soon as Leonard learned to talk he was taught to recite the first words of the Shema, the creed of Judaism which originated on Sinai with Moses and is recited daily"
+15450,Shen-pao Spiritual_Jewel,a member of the Taoist Trinity; identified with Lao-tse
+15451,Shenandoah_National_Park,a national park in Virginia for the Blue Ridge Mountains
+15452,Shenandoah_River,a river of northern Virginia that empties into the Potomac at Harpers Ferry
+15453,Shenandoah_Valley,a large valley between the Allegheny Mountains and the Blue Ridge Mountains in northern Virginia; site of numerous battles during the American Civil War
+15454,Shenyang Mukden Moukden Fengtien,a city in northeastern China
+15455,Shepard Alan_Shepard Alan_Bartlett_Shepard_Jr.,astronaut who made the first United States' suborbital rocket-powered flight in 1961 (1923-1998)
+15456,Shepard Sam_Shepard,United States author of surrealistic allegorical plays (born in 1943)
+15457,Sheraton,a furniture style that originated in England around 1800; simple in design with straight lines and classical ornamentation
+15458,Sheridan Richard_Brinsley_Sheridan,Irish playwright remembered for his satirical comedies of manners (1751-1816)
+15459,Sherlock_Holmes Holmes,a fictitious detective in stories by A. Conan Doyle
+15460,Sherman,a town in northeastern Texas near the Oklahoma border
+15461,Sherman Mount_Sherman,a peak in the Rocky Mountains in central Colorado (14,036 feet high)
+15462,Sherman Roger_Sherman,American Revolutionary leader and signer of the Declaration of Independence and the Articles of Confederation and the United States Constitution (1721-1793)
+15463,Sherman William_Tecumseh_Sherman,United States general who was commander of all Union troops in the West; he captured Atlanta and led a destructive march to the sea that cut the Confederacy in two (1820-1891)
+15464,Sherpa,a member of the Himalayan people living in Nepal and Tibet who are famous for their skill as mountaineers
+15465,Sherrington Sir_Charles_Scott_Sherrington,English physiologist who conducted research on reflex action (1857-1952)
+15466,Sherwood Robert_Emmet_Sherwood,United States playwright (1896-1955)
+15467,Sherwood_Forest,an ancient forest in central England; formerly a royal hunting ground; said to be the home of Robin Hood and his merry band
+15468,Shetland Shetland_Islands Zetland,an archipelago of about 100 islands in the North Atlantic off the north coast of Scotland
+15469,Shetland_pony,breed of very small pony with long shaggy mane and tail
+15470,Shetland_sheepdog Shetland_sheep_dog Shetland,a small sheepdog resembling a collie that was developed in the Shetland Islands
+15471,Shetland_wool,a wool obtained from sheep of the Shetland islands
+15472,Shevchenko Taras_Grigoryevich_Shevchenko,Ukranian poet (1814-1861)
+15473,Shiah Shia Shiah_Islam,one of the two main branches of orthodox Islam; mainly in Iran
+15474,Shih-Tzu,a Chinese breed of small dog similar to a Pekingese
+15475,Shiism,the branch of Islam that regards Ali as the legitimate successor to Mohammed and rejects the first three caliphs
+15476,Shiite Shi'ite Shiite_Muslim Shi'ite_Muslim Shia_Muslim,a member of the branch of Islam that regards Ali as the legitimate successor to Mohammed and rejects the first three caliphs
+15477,Shikoku,the smallest of the four main islands of Japan; to the south of Honshu and to the east of Kyushu; separated from Honshu by the Inland Sea; forested and mountainous
+15478,Shiloh battle_of_Shiloh battle_of_Pittsburgh_Landing,the second great battle of the American Civil War (1862); the battle ended with the withdrawal of Confederate troops but it was not a Union victory
+15479,Shimchath_Torah Simchat_Torah Simhath_Torah Simhat_Torah Simchas_Torah Rejoicing_over_the_Law Rejoicing_of_the_Law Rejoicing_in_the_Law,(Judaism) a Jewish holy day celebrated on the 22nd or 23rd of Tishri to celebrate the completion of the annual cycle of readings of the Torah
+15480,Shin_Bet General_Security_Services,the Israeli domestic counterintelligence and internal security agency; "the Shin Bet also handles overall security for Israel's national airline"
+15481,Shina,a Dardic language spoken in northern Kashmir
+15482,Shingon,a form of Buddhism emphasizing mystical symbolism of mantras and mudras and the Buddha's ideal which is inexpressible
+15483,Shining_Path Sendero_Luminoso SL,a terrorist group formed in Peru in the late 1960s as a splinter group from the communist party of Peru; is among the most ruthless guerilla organizations in the world; seeks to destroy Peruvian institutions and replace them with a Maoist peasant regime; is involved in the cocaine trade; "Shining Path has been responsible for 30,000 deaths"
+15484,Shinto,the native religion and former ethnic cult of Japan
+15485,Shinto Shintoism,the ancient indigenous religion of Japan lacking formal dogma; characterized by a veneration of nature spirits and of ancestors
+15486,Shintoist,a believer in Shintoism
+15487,Shiraz,a city in central southwestern Iran; ruins of ancient Persepolis are nearby
+15488,Shirer William_Lawrence_Shirer,United States broadcast journalist who was in Berlin at the outbreak of World War II (1904-1993)
+15489,Shirodkar's_operation purse-string_operation,a surgical procedure in which a suture is used to close the cervix in a pregnant woman; is performed when the cervix has failed to retain previous pregnancies
+15490,Shivaism Sivaism,a Hindu sect worshiping Shiva
+15491,Shivaism Sivaism,worship of Shiva one of the 3 chief gods of the Hindu pantheon
+15492,Shivaist,worshipper of Shiva
+15493,Shockley William_Shockley William_Bradford_Shockley,United States physicist (born in England) who contributed to the development of the electronic transistor (1910-1989)
+15494,Shona,a member of a Bantu tribe living in present-day Zimbabwe
+15495,Shona,a Bantu language spoken in Zimbabwe
+15496,Shorea genus_Shorea,genus of Indonesian and Malaysian timber trees rich in resin
+15497,Short's_aster Aster_shortii,perennial of southeastern United States having usually blue flowers
+15498,Shoshone,the language spoken by the Shoshone (belonging to the Uto-Aztecan family)
+15499,Shoshone Shoshoni,a member of the North American Indian people (related to the Aztecs) of the southwestern United States
+15500,Shoshonean Shoshonean_language Shoshonian Shoshonian_language,a subfamily of Uto-Aztecan languages spoken mainly in the southwestern United States
+15501,Shostakovich Dmitri_Shostakovich Dmitri_Dmitrievich_Shostakovich,Russian composer best known for his fifteen symphonies (1906-1975)
+15502,Shreveport,a city in northwest Louisiana on the Red River near the Texas border
+15503,Shrovetide,immediately preceding Lent
+15504,Shudra Sudra,a member of the lowest or worker Hindu caste
+15505,Shuha_Shinto Shua,any branch of Shinto other than Kokka
+15506,Shumard_oak Shumard_red_oak Quercus_shumardii,large deciduous red oak of southern and eastern United States having large seven-lobed to nine-lobed elliptical leaves, large acorns and medium hard coarse-grained wood
+15507,Shute Nevil_Shute Nevil_Shute_Norway,English novelist who settled in Australia after World War II (1899-1960)
+15508,Shylock,a merciless usurer in a play by Shakespeare
+15509,Sialia genus_Sialia,North American bluebirds
+15510,Sialidae family_Sialidae,an arthropod family including: alderflies
+15511,Sialis genus_Sialis,type genus of the Sialidae
+15512,Siamese_cat Siamese,a slender short-haired blue-eyed breed of cat having a pale coat with dark ears paws face and tail tip
+15513,Siamese_twin conjoined_twin,one of a pair of identical twins born with their bodies joined at some point
+15514,Sibelius Jean_Sibelius Johan_Julius_Christian_Sibelius,Finnish composer (1865-1957)
+15515,Siberia,a vast Asian region of Russia; famous for long cold winters
+15516,Siberian,a native or inhabitant of Siberia
+15517,Siberian_crab Siberian_crab_apple cherry_apple cherry_crab Malus_baccata,Asian wild crab apple cultivated in many varieties for it small acid usually red fruit used for preserving
+15518,Siberian_elm Chinese_elm dwarf_elm Ulmus_pumila,fast-growing shrubby Asian tree naturalized in United States for shelter or ornament
+15519,Siberian_husky,breed of sled dog developed in northeastern Siberia; they resemble the larger Alaskan malamutes
+15520,Siberian_larch Larix_siberica Larix_russica,medium-sized larch of northeastern Russia and Siberia having narrowly conic crown and soft narrow bright-green leaves; used in cultivation
+15521,Siberian_millet Setaria_italica_rubrofructa,millet having orange to reddish grains in long bristly spikes
+15522,Siberian_pea_tree Caragana_arborescens,large spiny shrub of eastern Asia having clusters of yellow flowers; often cultivated in shelterbelts and hedges
+15523,Siberian_spruce Picea_obovata,tall spruce of northern Europe and Asia; resembles Norway spruce
+15524,Siberian_wall_flower Erysimum_allionii Cheiranthus_allionii,showy erect biennial or short-lived perennial cultivated for its terminal racemes of orange-yellow flowers; sometimes placed in genus Cheiranthus
+15525,Sibley_tent,a light conical canvas tent erected on a tripod with ventilation at the top
+15526,Sicilian,a resident of Sicily
+15527,Sicilian_pizza,pizza made with a thick crust
+15528,Sicily Sicilia,the Italian region on the island of Sicily
+15529,Sicily Sicilia,the largest island in the Mediterranean
+15530,Sida genus_Sida,large genus of tropical subshrubs or herbs some of which yield fibers of mucilaginous substances
+15531,Sidalcea genus_Sidalcea,genus of showy plants of western North America having palmate leaves and variously colored racemose flowers
+15532,Siddons Sarah_Siddons Sarah_Kemble_Siddons,English actress noted for her performances in Shakespearean roles (1755-1831)
+15533,Sideritis genus_Sideritis,genus of woolly aromatic herbs or subshrubs or shrubs of Mediterranean region
+15534,Sidney Sir_Philip_Sidney,English poet (1554-1586)
+15535,Siege_Perilous,the legendary seat at King Arthur's Round Table reserved for the knight who would find the Holy Grail; it was fatal for anyone else to sit in it
+15536,Siegfried,(German mythology) mythical German warrior hero of the Nibelungenlied who takes possession of the accursed treasure of the Nibelungs by slaying the dragon that guards it and awakens Brynhild and is eventually killed; Sigurd is the Norse counterpart
+15537,Siegfried_line,German fortifications facing the Maginot Line
+15538,Siemens Ernst_Werner_von_Siemens,German electrical engineer (1816-1892)
+15539,Siemens Karl_Wilhelm_Siemens Sir_Charles_William_Siemens,engineer who was a brother of Ernst Werner von Siemens and who moved to England (1823-1883)
+15540,Sierra_Leone Republic_of_Sierra_Leone,a republic in West Africa; achieved independence from the United Kingdom in 1961
+15541,Sierra_Leone_monetary_unit,monetary unit in Sierra Leone
+15542,Sierra_Leonean,a native or inhabitant of Sierra Leone
+15543,Sierra_Madre_Occidental,a mountain range in northwestern Mexico that runs south from Arizona parallel to the Pacific coastline
+15544,Sierra_Madre_Oriental,a mountain range in northeastern Mexico the runs parallel to the coastline of the Gulf of Mexico
+15545,Sierra_Nevada,a mountain range in southern Spain along the Mediterranean coast to the east of Granada
+15546,Sierra_Nevada Sierra_Nevada_Mountains High_Sierra,a mountain range in eastern California; contains Mount Whitney
+15547,Sierra_lodgepole_pine Pinus_contorta_murrayana,tall subspecies of lodgepole pine
+15548,Sierra_plum Pacific_plum Prunus_subcordata,shrub of the Pacific coast of the United States bearing small red insipid fruit
+15549,Sif,(Norse mythology) wife of Thor and guardian of the home
+15550,Sigmodon genus_Sigmodon,American cotton rats
+15551,Signora,an Italian title or form of address for a married woman
+15552,Signorina,an Italian title or form of address for an unmarried woman
+15553,Sigurd,(Norse mythology) mythical Norse warrior hero who gains an accursed hoard of gold and was killed by Brynhild; Siegfried is the German counterpart
+15554,Sigyn,(Norse mythology) wife of Loki; held a cup over him during his punishment to spare him the pain of drops of poison
+15555,Sihasapa,a member of a group of Siouan people who constituted a division of the Teton Sioux
+15556,Sikh,an adherent of Sikhism
+15557,Sikhism,the doctrines of a monotheistic religion founded in northern India in the 16th century by Guru Nanak and combining elements of Hinduism and Islam
+15558,Sikkim,a state in northeastern India in the Himalaya Mountains between Nepal and Bhutan
+15559,Sikorsky Igor_Sikorsky Igor_Ivanovich_Sikorsky,United States industrialist (born in Russia) who designed the first four-engine airplane and the first mass-produced helicopter (1889-1972)
+15560,Silenus,the chief satyr in the service of Bacchus; father of Dionysus; usually depicted as drunk and jolly and riding a donkey
+15561,Silesia Slask Slezsko Schlesien,a region of central Europe rich in deposits of coal and iron ore; annexed by Prussia in 1742 but now largely in Poland
+15562,Silex,a vacuum coffee maker
+15563,Silicon_Valley,a region in California to the south of San Francisco that is noted for its concentration of high-technology industries
+15564,Silk_Road,an ancient trade route between China and the Mediterranean (4,000 miles); followed by Marco Polo in the 13th century to reach Cathay
+15565,Sillaginidae family_Sillaginidae,small family of small food fishes in shallow waters of the Pacific around Indonesia
+15566,Sillago genus_Sillago,type genus of the Sillaginidae
+15567,Sills Beverly_Sills Belle_Miriam_Silverman,United States operatic soprano (born in 1929)
+15568,Silphium genus_Silphium,tall North American perennial herbs
+15569,Silurian Silurian_period,from 425 million to 405 million years ago; first air-breathing animals
+15570,Siluridae family_Siluridae,Old World catfishes
+15571,Siluriformes order_Siluriformes,an order of fish belonging to the superorder Malacopterygii including catfishes
+15572,Silurus genus_Silurus,type genus of the Siluridae: catfishes
+15573,Silver_City,a town in southwestern New Mexico
+15574,Silver_Star_Medal Silver_Star,a United States military decoration for gallantry in action
+15575,Silverstein Shel_Silverstein Shelby_Silverstein,United States poet and cartoonist remembered for his stories and poems for children (1932-1999)
+15576,Silvia genus_Silvia,type genus of the Sylviidae: warblers
+15577,Silybum genus_Silybum,small genus of east African herbs
+15578,Simarouba genus_Simarouba,type genus of Simaroubaceae; tropical American trees and shrubs having a pale soft wood and bitter bark
+15579,Simaroubaceae family_Simaroubaceae quassia_family,chiefly tropical trees and shrubs with bitter bark having dry usually one-seeded winged fruit
+15580,Simenon Georges_Simenon Georges_Joseph_Christian_Simenon,French writer (born in Belgium) best known for his detective novels featuring Inspector Maigret (1903-1989)
+15581,Simeon,(Old Testament) the 2nd son of Jacob and one of the 12 patriarchs of Israel
+15582,Simon Herb_Simon Herbert_A._Simon Herbert_Alexander_Simon,United States economist and psychologist who pioneered in the development of cognitive science (1916-2001)
+15583,Simon Neil_Simon Marvin_Neil_Simon,United States playwright noted for light comedies (born in 1927)
+15584,Simon Paul_Simon,United States singer and songwriter (born in 1942)
+15585,Simon St._Simon Simon_Zelotes Simon_the_Zealot Simon_the_Canaanite,one of the twelve Apostles (first century)
+15586,Simon_Legree,the cruel slave dealer in an anti-slavery novel by Harriet Beecher Stowe
+15587,Simoniz,a brand of car polish
+15588,Simpson Mrs._Simpson Wallis_Warfield_Simpson Wallis_Warfield_Windsor Duchess_of_Windsor,United States divorcee whose marriage to Edward VIII created a constitutional crisis leading to his abdication
+15589,Simpson Sir_James_Young_Simpson,Scottish obstetrician and surgeon who pioneered in the use of ether and discovered the anesthetic effects of chloroform (1811-1870)
+15590,Simpson_Desert,a desert region of central Australia
+15591,Simuliidae family_Simuliidae,blackflies and sand flies
+15592,Simulium genus_Simulium,type genus of the Simuliidae: blackflies
+15593,Sin,(Akkadian) god of the Moon; counterpart of Sumerian Nanna
+15594,Sinai Mount_Sinai,a mountain peak in the southern Sinai Peninsula (7,500 feet high); it is believed to be the peak on which Moses received the Ten Commandments
+15595,Sinai Sinai_Desert,a desert on the Sinai Peninsula in northeastern Egypt
+15596,Sinai Sinai_Peninsula,a peninsula in northeastern Egypt; at north end of Red Sea
+15597,Sinanthropus genus_Sinanthropus,genus to which Peking man was formerly assigned
+15598,Sinapis genus_Sinapis,small genus of Old World herbs usually included in genus Brassica
+15599,Sinatra Frank_Sinatra Francis_Albert_Sinatra,United States singer and film actor (1915-1998)
+15600,Sinbad_the_Sailor Sinbad,in the Arabian Nights a hero who tells of the fantastic adventures he had in his voyages
+15601,Sinclair Clive_Sinclair Sir_Clive_Marles_Sinclair,English electrical engineer who founded a company that introduced many innovative products (born in 1940)
+15602,Sinclair Upton_Sinclair Upton_Beall_Sinclair,United States writer whose novels argued for social reform (1878-1968)
+15603,Sind,a region of southeastern Pakistan
+15604,Sindhi,a native or inhabitant of Sind
+15605,Sindhi,the Indic language of Sind which is spoken also in western India
+15606,Singapore Republic_of_Singapore,a country in southeastern Asia on the island of Singapore; achieved independence from Malaysia in 1965
+15607,Singapore Singapore_Island,an island to the south of the Malay Peninsula
+15608,Singapore capital_of_Singapore,the capital of Singapore; one of the world's biggest ports
+15609,Singapore_dollar,the basic unit of money in Singapore
+15610,Singaporean,an inhabitant of Singapore
+15611,Singer Isaac_Bashevis_Singer,United States writer (born in Poland) of Yiddish stories and novels (1904-1991)
+15612,Singer Isaac_M._Singer Isaac_Merrit_Singer,United States inventor of an improved chain-stitch sewing machine (1811-1875)
+15613,Sinhalese Singhalese,a native or inhabitant of Sri Lanka
+15614,Sinhalese Singhalese Sinhala,the Indic language spoken by the people of Sri Lanka
+15615,Sinitic Sinitic_language,a group of Sino-Tibetan languages
+15616,Sinn_Fein,an Irish republican political movement founded in 1905 to promote independence from England and unification of Ireland; became the political branch of the Irish Republican Army
+15617,Sinningia genus_Sinningia,genus of perennial tuberous herbs and shrubs of Central and South America
+15618,Sino-Tibetan Sino-Tibetan_language,the family of tonal languages spoken in eastern Asia
+15619,Sinologist,a student of Chinese history and language and culture
+15620,Sinology,the study of Chinese history and language and culture
+15621,Sinornis,sparrow-sized fossil bird of the Jurassic period to the Cretaceous period having a keeled breastbone and vestigial tail; found in China; considered possibly the second most primitive of all birds
+15622,Siouan Siouan_language,a family of North American Indian languages spoken by the Sioux
+15623,Sioux Siouan,a member of a group of North American Indian peoples who spoke a Siouan language and who ranged from Lake Michigan to the Rocky Mountains
+15624,Sioux_City,a city in northeastern Iowa where the Big Sioux River joins the Missouri
+15625,Sioux_Falls,largest city in South Dakota; located in southeastern South Dakota
+15626,Sipah-e-Sahaba,a vicious sectarian organization in Pakistan that persecutes Shiite Muslims and collaborates with al-Qaeda to attack foreigners and to disrupt the government of Pakistan
+15627,Siphonaptera order_Siphonaptera,fleas
+15628,Siphonophora order_Siphonophora,marine colonial hydrozoans
+15629,Sipuncula phylum_Sipuncula,peanut worms
+15630,Siqueiros David_Siqueiros David_Alfaro_Siqueiros,Mexican painter of murals depicting protest and revolution (1896-1974)
+15631,Sir,a title used before the name of knight or baronet
+15632,Sir_Barton,thoroughbred that won the triple crown in 1919
+15633,Siraj-ud-daula,Indian general and nawab of Bengal who opposed the colonization of India by England; he captured Calcutta in 1756 and many of his prisoners suffocated in a crowded room that became known as the Black Hole of Calcutta; he was defeated at the battle of Plassey by a group of Indian nobles in alliance with Robert Clive (1728-1757)
+15634,Siren,a sea nymph (part woman and part bird) supposed to lure sailors to destruction on the rocks where the nymphs lived; "Odysseus ordered his crew to plug their ears so they would not hear the Siren's fatal song"
+15635,Sirenia order_Sirenia,an animal order including: manatees; dugongs; Steller's sea cow
+15636,Sirenidae family_Sirenidae,sirens
+15637,Sirius Dog_Star Canicula Sothis,the brightest star in the sky; in Canis Major
+15638,Sison genus_Sison,genus including stone parsley
+15639,Sister,(Roman Catholic Church) a title given to a nun (and used as a form of address); "the Sisters taught her to love God"
+15640,Sistine_Chapel,the private chapel of the popes in Rome; it was built by and named after Sixtus IV in 1473
+15641,Sistrurus genus_Sistrurus,pygmy rattlesnakes
+15642,Sisyphus,(Greek legend) a king in ancient Greece who offended Zeus and whose punishment was to roll a huge boulder to the top of a steep hill; each time the boulder neared the top it rolled back down and Sisyphus was forced to start again
+15643,Sisyridae family_Sisyridae,an arthropod family of the order Neuroptera that includes spongeflies
+15644,Sisyrinchium genus_Sisyrinchium,chiefly North American grasslike herbs
+15645,Sita,wife of the Hindu god Rama; regarded as an ideal of womanhood
+15646,Sitka,a town in southeastern Alaska that was the capital of Russian America and served as the capital of Alaska from 1867 until 1906
+15647,Sitka_spruce Picea_sitchensis,a large spruce that grows only along the northwestern coast of the United States and Canada; has sharp stiff needles and thin bark; the wood has a high ratio of strength to weight
+15648,Sitka_willow silky_willow Salix_sitchensis,small shrubby tree of western North America (Alaska to Oregon)
+15649,Sitophylus genus_Sitophylus,a genus of Bruchidae
+15650,Sitotroga genus_Sitotroga,grain moths
+15651,Sitta genus_Sitta,type genus of the Sittidae
+15652,Sitter Willem_de_Sitter,Dutch astronomer who calculated the size of the universe and suggested that it is expanding (1872-1934)
+15653,Sittidae family_Sittidae,nuthatches
+15654,Sitting_Bull,a chief of the Sioux; took up arms against settlers in the northern Great Plains and against United States Army troops; he was present at the Battle of Little Bighorn (1876) when the Sioux massacred General Custer's troops (1831-1890)
+15655,Sitwell Dame_Edith_Sitwell Dame_Edith_Louisa_Sitwell,English poet (1887-1964)
+15656,Sium genus_Sium,perennial of wet and marshy places in the northern hemisphere: water parsnips
+15657,Siva Shiva,the auspicious one; a major divinity in the later Hindu pantheon
+15658,Sivan Siwan,the ninth month of the civil year; the third month of the ecclesiastical year in the Jewish calendar (in May and June)
+15659,Sivapithecus,fossil primates found in India
+15660,Sixteen_Personality_Factor_Questionnaire 16_PF,a self-report personality inventory developed by Raymond B. Cattell to measure the 16 personality dimensions that emerged from his factor analysis of a wide range of traits
+15661,Sixth_Crusade,a Crusade from 1228 to 1229 led by the Holy Roman Emperor Frederick II who fell ill and was excommunicated by the Pope; by negotiation Frederick II was able to crown himself king of Jerusalem
+15662,Sixtus_IV Francesco_della_Rovere,Italian pope from 1471 to 1484 who consented to the establishment of the Spanish Inquisition and built the Sistine Chapel (1414-1484)
+15663,Skagens_Odde Skaw,a cape on the northernmost tip of Jutland between the Skagerrak and the Kattegatt
+15664,Skagerrak Skagerak,a broad strait of the North Sea between Jutland and Norway
+15665,Skagit,a member of the Salish people in northwestern Washington
+15666,Skagit,a Salishan dialect spoken by the Skagit
+15667,Skagway,a town in southeastern Alaska at the northern end of the Inside Passage; a gateway to the Klondike during the Alaskan gold rush
+15668,Skanda,Hindu god of war
+15669,Skeat Walter_William_Skeat,English philologist (1835-1912)
+15670,Skinner Cornelia_Otis_Skinner,United States actress noted for her one-woman shows (1901-1979)
+15671,Skinner Fred_Skinner B._F._Skinner Burrhus_Frederic_Skinner,United States psychologist and a leading proponent of behaviorism (1904-1990)
+15672,Skinner Otis_Skinner,United States actor (1858-1942)
+15673,Skinnerian,a follower of the theories or methods of B. F. Skinner
+15674,Skopje Skoplje Uskub,capital of modern Macedonia
+15675,Skuld,goddess of fate: a dwarf who personified the future
+15676,Skye_terrier,Scottish breed of terrier with shaggy hair and long low body with short legs; native to the Isle of Skye
+15677,Skylab,United States space station; in orbit from 1973 to 1979
+15678,Slav,any member of the people of eastern Europe or Asian Russia who speak a Slavonic language
+15679,Slavic Slavic_language Slavonic Slavonic_language,a branch of the Indo-European family of languages
+15680,Slavic_people,group of people speaking a Slavonic language
+15681,Sleeping_Beauty,fairy story: princess under an evil spell who could be awakened only by a prince's kiss
+15682,Sloanea genus_Sloanea,genus of tropical hardwood timber trees
+15683,Sloppy_Joe,ground beef (not a patty) cooked in a spicy sauce and served on a bun
+15684,Slovak,a native or inhabitant of Slovakia
+15685,Slovak,the Slavic language spoken in Slovakia
+15686,Slovakia Slovak_Republic,a landlocked republic in central Europe; separated from the Czech Republic in 1993
+15687,Slovakian_monetary_unit,monetary unit in Slovakia
+15688,Slovene,a native of Slovenia
+15689,Slovene,the Slavic language of Slovenes
+15690,Slovenia Republic_of_Slovenia Slovenija,a mountainous republic in central Europe; formerly part of the Habsburg monarchy and Yugoslavia; achieved independence in 1991
+15691,Slovenian,a native or inhabitant of Slovenia
+15692,Small_Business_Administration SBA,an independent agency of the United States government that protects the interests of small businesses and ensures that they receive a fair share of government contracts
+15693,Small_Magellanic_Cloud,the smaller of the two Magellanic Clouds visible from the southern hemisphere
+15694,Smalley Richard_Smalley Richard_E._Smalley Richard_Errett_Smalley,American chemist who with Robert Curl and Harold Kroto discovered fullerenes and opened a new branch of chemistry (born in 1943)
+15695,Smetana Bedrich_Smetana,Czech composer (1824-1884)
+15696,Smilacaceae subfamily_Smilacaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+15697,Smilax genus_Smilax,sometimes placed in Smilacaceae
+15698,Smiledon genus_Smiledon,saber-toothed tigers
+15699,Smiledon_californicus,North American sabertooth; culmination of sabertooth development
+15700,Smitane,veloute or brown sauce with sauteed chopped onion and dry white wine and sour cream
+15701,Smith Adam_Smith,Scottish economist who advocated private enterprise and free trade (1723-1790)
+15702,Smith Bessie_Smith,United States blues singer (1894-1937)
+15703,Smith David_Smith David_Roland_Smith,United States sculptor (1906-1965)
+15704,Smith Ian_Smith Ian_Douglas_Smith,Rhodesian statesman who declared independence of Zimbabwe from Great Britain (born in 1919)
+15705,Smith John_Smith Captain_John_Smith,English explorer who helped found the colony at Jamestown, Virginia; was said to have been saved by Pocahontas (1580-1631)
+15706,Smith Joseph_Smith,religious leader who founded the Mormon Church in 1830 (1805-1844)
+15707,Smith Julia_Evelina_Smith,United States suffragist who refused to pay taxes until she could vote (1792-1886)
+15708,Smith Kate_Smith Kathryn_Elizabeth_Smith,United States singer noted for her rendition of patriotic songs (1909-1986)
+15709,Smolensk,a city in western Russia on the Dnieper River; scene of severe fighting in World War II
+15710,Smollett Tobias_Smollett Tobias_George_Smollett,Scottish writer of adventure novels (1721-1771)
+15711,Smuts Jan_Christian_Smuts,South African statesman and soldier (1870-1950)
+15712,Smyrnium genus_Smyrnium,Alexanders
+15713,Snake Snake_River,a tributary of the Columbia River that rises in Wyoming and flows westward; discovered in 1805 by the Lewis and Clark Expedition
+15714,Snead Sam_Snead Samuel_Jackson_Snead,United States golfer known for the graceful arc of his swing (1912-2002)
+15715,Snellen Hermann_Snellen,Dutch ophthalmologist who introduced the Snellen chart to study visual acuity (1834-1908)
+15716,Snellen_chart,display consisting of a printed card with letters and numbers in lines of decreasing size; used to test visual acuity
+15717,Snellen_test,a test of visual acuity using a Snellen chart
+15718,Sno-cat,a kind of snowmobile
+15719,Snoopy,a fictional beagle in a comic strip drawn by Charles Schulz
+15720,Snow C._P._Snow Charles_Percy_Snow Baron_Snow_of_Leicester,English writer of novels about moral dilemmas in academe (1905-1980)
+15721,SoHo South_of_Houston,a district in southwestern Manhattan noted for its shops and restaurants and galleries and artist's lofts
+15722,Soave,dry white Italian wine from Verona
+15723,Social_Democratic_Party,a political party in Germany and Britain (and elsewhere) founded in late 19th century; originally Marxist; now advocates the gradual transformation of capitalism into democratic socialism
+15724,Social_Development_Commission,the commission of the Economic and Social Council of the United Nations that is concerned with social development
+15725,Social_Security,social welfare program in the U.S.; includes old-age and survivors insurance and some unemployment insurance and old-age assistance
+15726,Social_Security_Administration SSA,an independent government agency responsible for the Social Security system
+15727,Social_Security_number,the number of a particular individual's Social Security account
+15728,Socialist_Labor_Party,a political party in the United States; formed in 1874 to advocate the peaceful introduction of socialism
+15729,Socialist_Party,a political party in the United States formed in 1900 to advocate socialism
+15730,Society_Islands,an island group of French Polynesia in the South Pacific to the east of Samoa
+15731,Society_of_Jesus Jesuit_order,a Roman Catholic order founded by Saint Ignatius of Loyola in 1534 to defend Catholicism against the Reformation and to do missionary work among the heathen; it is strongly committed to education and scholarship
+15732,Socinian,an adherent of the teachings of Socinus; a Christian who rejects the divinity of Christ and the Trinity and original sin; influenced the development of Unitarian theology
+15733,Socinus Faustus_Socinus Fausto_Paolo_Sozzini,Italian theologian who argued against Trinitarianism (1539-1604)
+15734,Socotra_begonia Begonia_socotrana,semi-tuberous begonia having peltate leaves and rose-pink flowers; Yemen
+15735,Socrates,ancient Athenian philosopher; teacher of Plato and Xenophon (470-399 BC)
+15736,Socratic_irony,admission of your own ignorance and willingness to learn while exposing someone's inconsistencies by close questioning
+15737,Socratic_method maieutic_method,a method of teaching by question and answer; used by Socrates to elicit truths from his students
+15738,Soddy Frederick_Soddy,English chemist whose work on radioactive disintegration led to the discovery of isotopes (1877-1956)
+15739,Sodom,(Old Testament) an ancient city near the Dead Sea that (along with Gomorrah) was destroyed by God for the wickedness of its inhabitants
+15740,Sofia Serdica Bulgarian_capital,capital and largest city of Bulgaria located in western Bulgaria
+15741,Soho,a city district of central London now noted for restaurants and nightclubs
+15742,Soissons battle_of_Soissons-Reims battle_of_the_Chemin-des-Dames battle_of_the_Aisne,a battle in World War I (May 1918); the Germans tried to attack before the American numbers were too great to defeat; the tactical success of the Germans proved to be a strategic failure
+15743,Sokoro,a Chadic language spoken in Chad
+15744,Sol,(Roman mythology) ancient Roman god; personification of the sun; counterpart of Greek Helios
+15745,Solanaceae family_Solanaceae potato_family,large and economically important family of herbs or shrubs or trees often strongly scented and sometimes narcotic or poisonous; includes the genera Solanum, Atropa, Brugmansia, Capsicum, Datura, Hyoscyamus, Lycopersicon, Nicotiana, Petunia, Physalis, and Solandra
+15746,Solandra genus_Solandra,shrubby climbers of tropical America
+15747,Solanopteris genus_Solanopteris,tropical American epiphytic ferns having rhizomes with tubers and roots as well as scales
+15748,Solanum genus_Solanum,type genus of the Solanaceae: nightshade; potato; eggplant; bittersweet
+15749,Solea genus_Solea,type genus of the Soleidae
+15750,Soledad,a city in northern Colombia; a suburb of Barranquilla
+15751,Soleidae family_Soleidae,soles
+15752,Solemnity_of_Mary January_1,(Roman Catholic Church) a holy day of obligation
+15753,Solenichthyes order_Solenichthyes,bellows fishes; shrimpfishes; cornetfishes; pipefishes; small order of chiefly tropical marine fishes of varied and bizarre form all having a small mouth at the end of a drawn-out tubular snout
+15754,Solenidae family_Solenidae,razor clams
+15755,Solenogastres order_Solenogastres Aplacophora order_Aplacophora,an order of Amphineura
+15756,Solenopsis genus_Solenopsis,fire ants
+15757,Solenostemon genus_Solenostemon,genus of shrubby often succulent herbs of tropical Africa and Asia; includes some plants often placed in genus Coleus
+15758,Solent,a strait of the English Channel between the coast of Hampshire and the Isle of Wight
+15759,Solferino battle_of_Solferino,an indecisive battle in 1859 between the French and Sardinians under Napoleon III and the Austrians under Francis Joseph I
+15760,Solidago genus_Solidago,goldenrod
+15761,Solingen,a city in west central Germany noted for cutlery
+15762,Solo_man,early man of late Pleistocene; skull resembles that of Neanderthal man but with smaller cranial capacity; found in Java
+15763,Solomon,(Old Testament) son of David and king of Israel noted for his wisdom (10th century BC)
+15764,Solomon's-seal,any of several plants of the genus Polygonatum having paired drooping yellowish-green flowers and a thick rootstock with scars shaped like Solomon's seal
+15765,Solomon_Islands,the southern Solomon Islands that since 1978 form an independent state in the British Commonwealth
+15766,Solomons Solomon_Islands,the northernmost islands are part of Papua New Guinea; the remainder form an independent state within the British Commonwealth
+15767,Solresol,an artificial language
+15768,Solvay Ernest_Solvay,Belgian chemist who developed the Solvay process and built factories exploiting it (1838-1922)
+15769,Solvay_process,an industrial process for producing sodium carbonate from sodium chloride and ammonia and carbon dioxide
+15770,Solway_Firth,a large firth on the west coast of Britain between England and Scotland
+15771,Solzhenitsyn Alexander_Isayevich_Solzhenitsyn Aleksandr_Solzhenitsyn Aleksandr_I._Solzhenitsyn,Soviet writer and political dissident whose novels exposed the brutality of Soviet labor camps (born in 1918)
+15772,Soma,personification of a sacred intoxicating drink used in Vedic ritual
+15773,Somali,the Cushitic language spoken by the Somali
+15774,Somali_peninsula Horn_of_Africa,a peninsula of northeastern Africa (the easternmost part of Africa) comprising Somalia and Djibouti and Eritrea and parts of Ethiopia
+15775,Somalia,a republic in extreme eastern Africa on the Somali peninsula; subject to tribal warfare
+15776,Somalian Somali,a member of a tall dark (mostly Muslim) people inhabiting Somalia
+15777,Somalian_monetary_unit,monetary unit in Somalia
+15778,Somalian_shilling shilling,the basic unit of money in Somalia; equal to 100 cents
+15779,Somateria genus_Somateria,eider ducks
+15780,Sombrero,one of the islands of Saint Christopher-Nevis
+15781,Somerset,a county in southwestern England on the Bristol Channel
+15782,Somme Somme_River Battle_of_the_Somme,battle of World War II (1944)
+15783,Somme Somme_River Battle_of_the_Somme,battle in World War I (1916)
+15784,Somrai Sibine,a Chadic language spoken in Chad
+15785,Son Word Logos,the divine word of God; the second person in the Trinity (incarnate in Jesus)
+15786,Sonchus genus_Sonchus,sow thistles
+15787,Sondheim Stephen_Sondheim,United States composer of musicals (born in 1930)
+15788,Song_of_Songs Song_of_Solomon Canticle_of_Canticles Canticles,an Old Testament book consisting of a collection of love poems traditionally attributed to Solomon but actually written much later
+15789,Songhai,a Nilo-Saharan language spoken by the Songhai in Mali and Niger
+15790,Sonora genus_Sonora,ground snakes
+15791,Sonora_gum,acidulous gum resin of the creosote bush
+15792,Sonora_lac,resembling lac; secreted by a scale living on twigs of certain Mexican shrubs; used locally as medicine
+15793,Sonoran_Desert,a desert in southwestern Arizona
+15794,Sonoran_lyre_snake Trimorphodon_lambda,of desert regions of southwestern North America
+15795,Sonoran_whipsnake Masticophis_bilineatus,both terrestrial and arboreal snake of United States southwest
+15796,Sontag Susan_Sontag,United States writer (born in 1933)
+15797,Sophist,any of a group of Greek philosophers and teachers in the 5th century BC who speculated on a wide range of subjects
+15798,Sophocles,one of the great tragedians of ancient Greece (496-406 BC)
+15799,Sophora genus_Sophora,cosmopolitan genus of trees and shrubs having odd-pinnate leaves and showy flowers; some species placed in genus Podalyria
+15800,Sorbian,a speaker of Sorbian
+15801,Sorbian Lusatian,a Slavonic language spoken in rural area of southeastern Germany
+15802,Sorbus genus_Sorbus,a genus of shrubs or trees of the family Rosaceae having feathery leaves
+15803,Sorensen Soren_Peter_Lauritz_Sorensen,Danish chemist who devised the pH scale (1868-1939)
+15804,Sorex genus_Sorex,type genus of the family Soricidae: shrews
+15805,Soricidae family_Soricidae,shrews
+15806,Sotho,a member of the Bantu people who inhabit Botswana, Lesotho, and northern South Africa and who speak the Sotho languages
+15807,Sotho,any of the mutually intelligible southern Bantu languages of the Sotho in Botswana and South Africa and Lesotho
+15808,Soubise white_onion_sauce,veloute sauce with sauteed chopped onions and whipping cream
+15809,Soufflot Jacques_Germain_Soufflot,French architect (1713-1780)
+15810,Sousa John_Philip_Sousa March_King,a United States bandmaster and composer of military marches (1854-1932)
+15811,Sousse Susa Susah,a port city in eastern Tunisia on the Mediterranean
+15812,South,the region of the United States lying to the south of the Mason-Dixon line
+15813,South-African_yellowwood Podocarpus_latifolius,erect or shrubby tree of Africa having ridged dark grey bark and rigid glossy medium to long leaves
+15814,South-Central_Dravidian,a Dravidian language spoken primarily in south central India
+15815,South_Africa Republic_of_South_Africa,a republic at the southernmost part of Africa; achieved independence from the United Kingdom in 1910; first European settlers were Dutch (known as Boers)
+15816,South_African,a native or inhabitant of South Africa
+15817,South_African_monetary_unit,monetary unit in South Africa
+15818,South_America,a continent in the western hemisphere connected to North America by the Isthmus of Panama
+15819,South_America,the nations of the South American continent collectively; "South America is an important market for goods from the United States"
+15820,South_American,a native or inhabitant of South America
+15821,South_American_Indian,a member of a native Indian group in South America
+15822,South_American_country South_American_nation,any one of the countries occupying the South American continent
+15823,South_American_poison_toad,a South American toad
+15824,South_American_sea_lion Otaria_Byronia,of the southern coast of South America
+15825,South_American_staghorn Platycerium_andinum,fern of Peru and Bolivia
+15826,South_Atlantic,that part of the Atlantic Ocean to the south of the equator
+15827,South_Australia,a state in south central Australia
+15828,South_Bend,a city in northern Indiana
+15829,South_Carolina,one of the British colonies that formed the United States
+15830,South_Carolina Palmetto_State SC S.C.,a state in the Deep South; one of the original 13 colonies
+15831,South_Carolinian,a native or resident of South Carolina
+15832,South_China_Sea,a tropical arm of the Pacific Ocean near southeastern Asia subject to frequent typhoons
+15833,South_Dakota Coyote_State Mount_Rushmore_State SD S.D.,a state in north central United States
+15834,South_Dakotan,a native or resident of South Dakota
+15835,South_Dravidian,a Dravidian language spoken primarily in southern India
+15836,South_Equatorial_Current,an equatorial current that flows west across the Pacific just south of the equator
+15837,South_Island,the larger but less populous of two main islands of New Zealand; separated from North Island by Cook Strait
+15838,South_Korea Republic_of_Korea,a republic in the southern half of the Korean Peninsula; established in 1948
+15839,South_Korean,a Korean from South Korea
+15840,South_Korean_monetary_unit,monetary unit in South Korea
+15841,South_Korean_won won,the basic unit of money in South Korea
+15842,South_Pacific,that part of the Pacific Ocean to the south of the equator
+15843,South_Platte South_Platte_River,a tributary of the Platte River
+15844,South_Pole,the southernmost point of the Earth's axis
+15845,South_Sea,any sea to the south of the equator (but especially the South Pacific)
+15846,South_Sea_Islands,any islands in the southern or southwestern of central parts of the Pacific Ocean
+15847,South_Temperate_Zone,Temperate Zone between the Antarctic Circle and the Tropic of Capricorn
+15848,South_Vietnam,a former country in southeastern Asia that existed from 1954 (after the defeat of the French at Dien Bien Phu) until 1975 when it was defeated and annexed by North Vietnam
+15849,South_Yorkshire,a metropolitan county in northern England
+15850,Southeast southeastern_United_States,the southeastern region of the United States
+15851,Southeast_Asia,a geographical division of Asia that includes Indochina plus Indonesia and the Philippines and Singapore
+15852,Southern_Baptist,a member of the Southern Baptist Convention
+15853,Southern_Baptist_Convention,an association of Southern Baptists
+15854,Southern_Cross Crux Crux_Australis,a small conspicuous constellation in the southern hemisphere in the Milky Way near Centaurus
+15855,Southern_Tai,a branch of the Tai languages
+15856,Southern_crab_apple flowering_crab Malus_angustifolia,small tree or shrub of southeastern United States; cultivated as an ornamental for its rose-colored blossoms
+15857,Southern_dewberry Rubus_trivialis,of southern North America
+15858,Southerner,an American who lives in the South
+15859,Southey Robert_Southey,English poet and friend of Wordsworth and Coleridge (1774-1843)
+15860,Southwest southwestern_United_States,the southwestern region of the United States generally including New Mexico, Arizona, Texas, California, and sometimes Utah and Colorado
+15861,Southwestern West_Saxon,a dialect of Middle English
+15862,Soutine Chaim_Soutine,French expressionist painter (born in Lithuania) (1893-1943)
+15863,Soviet_Russia Russia Russian_Soviet_Federated_Socialist_Republic,formerly the largest Soviet Socialist Republic in the USSR occupying eastern Europe and northern Asia
+15864,Soviet_Socialist_Republic,one of the states that formerly made up the former Union of Soviet Socialist Republics (1922-1991)
+15865,Soviet_Union Russia Union_of_Soviet_Socialist_Republics USSR,a former communist country in eastern Europe and northern Asia; established in 1922; included Russia and 14 other soviet socialist republics (Ukraine and Byelorussia and others); officially dissolved 31 December 1991
+15866,Soviets,the government of the Soviet Union; "the Soviets said they wanted to increase trade with Europe"
+15867,Soweto,a large collection of African townships to the southwest of Johannesburg in South Africa; inhabited solely by Black Africans
+15868,Space_Needle,a tower 605 feet tall in Seattle; a tourist attraction
+15869,Spain Kingdom_of_Spain Espana,a parliamentary monarchy in southwestern Europe on the Iberian Peninsula; a former colonial power
+15870,Spalacidae family_Spalacidae,mole rats
+15871,Spalax genus_Spalax,type genus of the Spalacidae
+15872,Spallanzani Lazzaro_Spallanzani,Italian physiologist who disproved the theory of spontaneous generation (1729-1799)
+15873,Spam,a canned meat made largely from pork
+15874,Spandau,a German machine gun
+15875,Spaniard,a native or inhabitant of Spain
+15876,Spanish,the Romance language spoken in most of Spain and the countries colonized by Spain
+15877,Spanish Spanish_people,the people of Spain
+15878,Spanish-American_War Spanish_War,a war between the United States and Spain in 1898
+15879,Spanish_American Hispanic_American Hispanic,an American whose first language is Spanish
+15880,Spanish_Armada Invincible_Armada,the great fleet sent from Spain against England by Philip II in 1588
+15881,Spanish_Civil_War,civil war in Spain in which Franco succeeded in overthrowing the republican government; during the war Spain became a battleground for fascists and socialists from all countries; 1936-1939
+15882,Spanish_Inquisition,an inquisition initiated in 1478 by King Ferdinand and Queen Isabella that guarded the orthodoxy of Catholicism in Spain (especially from the 15th to the 17th centuries); "the Spanish Inquisition was administered by both civil and church authorities which gave it ultimate power"; "Torquemada was the inquisitor general for the Spanish Inquisition"
+15883,Spanish_bayonet Yucca_aloifolia,a stiff yucca with a short trunk; found in the southern United States and tropical America; has rigid spine-tipped leaves and clusters of white flowers
+15884,Spanish_bayonet Yucca_baccata,tall yucca of the southwestern United States and Mexico having a woody stem and stiff swordlike pointed leaves and a large cluster of white flowers
+15885,Spanish_broom Spanish_gorse Genista_hispanica,erect shrub of southwestern Europe having racemes of golden yellow flowers
+15886,Spanish_broom weaver's_broom Spartium_junceum,tall thornless shrub having pale yellow flowers and flexible rushlike twigs used in basketry; of southwestern Europe and Mediterranean; naturalized in California
+15887,Spanish_cedar Spanish_cedar_tree Cedrela_odorata,tropical American tree yielding fragrant wood used especially for boxes
+15888,Spanish_dagger Yucca_carnerosana,arborescent yucca of southwestern United States and northern Mexico with sword-shaped leaves and white flowers
+15889,Spanish_dagger Yucca_gloriosa,yucca of southeastern United States similar to the Spanish bayonets but with shorter trunk and smoother leaves
+15890,Spanish_elm Equador_laurel salmwood cypre princewood Cordia_alliodora,large tropical American tree of the genus Cordia grown for its abundant creamy white flowers and valuable wood
+15891,Spanish_fly,green beetle of southern Europe
+15892,Spanish_grunt Haemulon_macrostomum,a kind of grunt
+15893,Spanish_heath Portuguese_heath Erica_lusitanica,erect dense shrub native to western Iberian peninsula having profuse white or pink flowers; naturalized in southwestern England
+15894,Spanish_iris xiphium_iris Iris_xiphium,bulbous iris of western Mediterranean region having usually violet-purple flowers
+15895,Spanish_lime Spanish_lime_tree honey_berry mamoncillo genip ginep Melicocca_bijuga Melicocca_bijugatus,tropical American tree bearing a small edible fruit with green leathery skin and sweet juicy translucent pulp
+15896,Spanish_mackerel,flesh of commercially important fishes especially of the Atlantic coastal waters of America
+15897,Spanish_mackerel,any of several large marine food fishes of the genus Scomberomorus
+15898,Spanish_mackerel Scomber_colias,medium-sized mackerel of temperate Atlantic and Gulf of Mexico
+15899,Spanish_monetary_unit,monetary unit in Spain
+15900,Spanish_moss old_man's_beard black_moss long_moss Tillandsia_usneoides,dense festoons of greenish-grey hairlike flexuous strands anchored to tree trunks and branches by sparse wiry roots; southeastern United States and West Indies to South America
+15901,Spanish_needles Bidens_bipinnata,common bur marigold of the eastern United States
+15902,Spanish_needles beggar-ticks,the seed of bur marigolds
+15903,Spanish_oak Quercus_texana,small deciduous tree having the trunk branched almost from the base with spreading branches; Texas and southern Oklahoma
+15904,Spanish_onion,large mild and succulent onion; often eaten raw
+15905,Spanish_oyster_plant Scolymus_hispanicus,a golden thistle of southwestern Europe cultivated for its edible sweet roots and edible leaves and stalks; its yellow flowers are used as a substitute for saffron
+15906,Spanish_paprika,a mild seasoning made from a variety of pimiento grown in Spain
+15907,Spanish_rice,spicy rice with tomatoes and onions and green peppers
+15908,Spanish_tamarind Vangueria_madagascariensis,shrubby tree of Madagascar occasionally cultivated for its edible apple-shaped fruit
+15909,Sparaxis genus_Sparaxis,deciduous perennial herbs of South Africa
+15910,Sparganiaceae family_Sparganiaceae bur-reed_family,coextensive with the genus Sparganium
+15911,Sparganium genus_Sparganium,type and sole genus of Sparganiaceae; marsh or aquatic herbs of temperate regions
+15912,Sparidae family_Sparidae,porgies; scups
+15913,Spark Muriel_Spark Dame_Muriel_Spark Muriel_Sarah_Spark,Scottish writer of satirical novels (born in 1918)
+15914,Sparmannia genus_Sparmannia,small genus of tropical African shrubs
+15915,Sparrow_Unit,a hit squad of the New People's Army in the Philippines
+15916,Sparta,an ancient Greek city famous for military prowess; the dominant city of the Peloponnesus prior to the 4th century BC
+15917,Spartan,a resident of Sparta
+15918,Spartina genus_Spartina,grass of freshwater swamps and salt marshes of Europe, Africa, America, and South Atlantic islands
+15919,Spartium genus_Spartium,one species: Spanish broom
+15920,Spassky Boris_Spassky Boris_Vasilevich_Spassky,Russian chess master who moved to Paris; world champion from 1969 to 1972 (born in 1937)
+15921,Spatangoida order_Spatangoida,heart-shaped sea urchins
+15922,Speaker,the presiding officer of a deliberative assembly; "the leader of the majority party is the Speaker of the House of Representatives"
+15923,Special_Air_Service SAS,a specialist regiment of the British army that is trained in commando techniques of warfare and used in clandestine operations (especially against terrorist groups)
+15924,Special_Branch,a government police department dealing with political security
+15925,Special_Forces U._S._Army_Special_Forces United_States_Army_Special_Forces,a division of the United States Army that is specially trained for guerilla fighting
+15926,Special_Olympics,an athletic contest modeled after the Olympic Games but intended for mentally or physically handicapped persons
+15927,Speer Albert_Speer,German Nazi architect who worked for Hitler (1905-1981)
+15928,Speke John_Speke John_Hanning_Speke,English explorer who with Sir Richard Burton was the first European to explore Lake Tanganyika; he also discovered Lake Victoria and named it (1827-1864)
+15929,Spencer Herbert_Spencer,English philosopher and sociologist who applied the theory of natural selection to human societies (1820-1903)
+15930,Spender Stephen_Spender Sir_Stephen_Harold_Spender,English poet and critic (1909-1995)
+15931,Spengler Oswald_Spengler,German philosopher who argued that cultures grow and decay in cycles (1880-1936)
+15932,Spenser Edmund_Spenser,English poet who wrote an allegorical romance celebrating Elizabeth I in the Spenserian stanza (1552-1599)
+15933,Spenserian_sonnet,a sonnet consisting of three quatrains and a concluding couplet in iambic pentameter with the rhyme pattern abab bcbd cdcd ee
+15934,Spenserian_stanza,a stanza with eight lines of iambic pentameter and a concluding Alexandrine with the rhyme pattern abab bcbc c; "the Spenserian stanza was introduced by Edmund Spenser in The Faerie Queene"
+15935,Spergula genus_Spergula,small genus of Old World annual herbs: corn spurry
+15936,Spergularia genus_Spergularia,chiefly maritime Eurasian herbs: sand spurry; sea spurry
+15937,Spermatophyta division_Spermatophyta,seed plants; comprises the Angiospermae (or Magnoliophyta) and Gymnospermae (or Gymnospermophyta); in some classification systems Spermatophyta is coordinate with Pteridophyta (spore producing plants having vascular tissue and roots) and Bryophyta (spore producing plants lacking vascular tissue and roots)
+15938,Sperry Elmer_Ambrose_Sperry,United States engineer and inventor of the gyrocompass (1860-1930)
+15939,Sphacelotheca genus_Sphacelotheca,genus of smut fungus
+15940,Sphaeralcea genus_Sphaeralcea,large genus of chiefly tropical herbs with showy flowers and mostly globose fruits: globe mallows
+15941,Sphaeriaceae family_Sphaeriaceae,parasitic fungi having globose and sometimes necked or beaked perithecia
+15942,Sphaeriales order_Sphaeriales,large order of ascomycetous fungi usually having a dark hard perithecia with definite ostioles; in more recent classifications often divided among several orders
+15943,Sphaerobolaceae family_Sphaerobolaceae,monotypic family of fungi in which the more or less spherical gleba is forcibly ejected at maturity
+15944,Sphaerocarpaceae family_Sphaerocarpaceae,liverworts with bilaterally symmetrical gametophytes; sometimes placed in the order Jungermanniales
+15945,Sphaerocarpales order_Sphaerocarpales,small order sometimes included in the order Jungermanniales
+15946,Sphaerocarpus genus_Sphaerocarpus Sphaerocarpos genus_Sphaerocarpos,type genus of Sphaerocarpaceae; liverworts with small many-lobed usually orbicular thallus
+15947,Sphagnales order_Sphagnales,coextensive with the genus Sphagnum; in some classifications isolated in a separate subclass
+15948,Sphecidae family_Sphecidae,mud daubers; some digger wasps
+15949,Sphecius genus_Sphecius,large solitary wasps: cicada killer
+15950,Sphecoidea superfamily_Sphecoidea,families Sphecidae and Stizidae
+15951,Sphecotheres genus_Sphecotheres,a genus of Old World orioles
+15952,Spheniscidae family_Spheniscidae,comprising all existing penguins
+15953,Sphenisciformes order_Sphenisciformes,penguins
+15954,Spheniscus genus_Spheniscus,type genus of the Spheniscidae: jackass penguins
+15955,Sphenodon genus_Sphenodon,coextensive with the order Rhynchocephalia: tuataras
+15956,Sphenopsida class_Sphenopsida Equisetatae class_Equisetatae,horsetails and related forms
+15957,Sphingidae family_Sphingidae,hawkmoths
+15958,Sphinx,(Greek mythology) a riddling winged monster with a woman's head and breast on a lion's body; daughter of Typhon
+15959,Sphyraena genus_Sphyraena,type and sole genus of the Sphyraenidae: barracuda
+15960,Sphyraenidae family_Sphyraenidae,monotypic family of large active fishes of tropical and subtropical waters: barracuda
+15961,Sphyrapicus genus_Sphyrapicus,a genus of Picidae
+15962,Sphyrna genus_Sphyrna,type genus of the Sphyrnidae
+15963,Sphyrnidae family_Sphyrnidae,hammerhead sharks; bonnethead sharks
+15964,Spica,the brightest star in Virgo
+15965,Spielberg Steven_Spielberg,United States filmmaker (born in 1947)
+15966,Spielmeyer-Vogt_disease juvenile_amaurotic_idiocy,a congenital progressive disorder of lipid metabolism having an onset at age 5 and characterized by blindness and dementia and early death
+15967,Spillane Mickey_Spillane Frank_Morrison_Spillane,United States writer of popular detective novels (born in 1918)
+15968,Spilogale genus_Spilogale,a genus of Mustelidae
+15969,Spinacia genus_Spinacia,spinach
+15970,Spinoza de_Spinoza Baruch_de_Spinoza Benedict_de_Spinoza,Dutch philosopher who espoused a pantheistic system (1632-1677)
+15971,Spinus genus_Spinus,in some classifications considered a subgenus of Carduelis: siskins and New World goldfinches
+15972,Spiraea genus_Spiraea,a dicotyledonous genus of the family Rosaceae
+15973,Spiranthes genus_Spiranthes,large cosmopolitan genus of white-flowered terrestrial orchids
+15974,Spirillaceae family_Spirillaceae,rigid spirally curved elongate bacteria
+15975,Spirochaeta genus_Spirochaeta,the type genus of the family Spirochaetaceae; a bacterium that is flexible, undulating, and chiefly aquatic
+15976,Spirochaetaceae family_Spirochaetaceae,large coarsely spiral bacteria; free-living in fresh or salt water or commensal in bodies of oysters
+15977,Spirochaetales order_Spirochaetales,higher bacteria; slender spiral rodlike forms
+15978,Spirodela genus_Spirodela,minute aquatic herbs floating on the water surface consisting of a shiny leaflike frond and 2-21 roots
+15979,Spirulidae family_Spirulidae,coextensive with the genus Spirula; included in the order Belemnoidea in some older classifications
+15980,Spitsbergen Spitzbergen,islands in the Svalbard archipelago to the east of northern Greenland; belonging to Norway
+15981,Spizella genus_Spizella,chipping sparrow; field sparrow; tree sparrow
+15982,Split,an old Croatian city on the Adriatic Sea
+15983,Spock Benjamin_Spock,United States pediatrician whose many books on child care influenced the upbringing of children around the world (1903-1998)
+15984,Spode,a brand of fine English porcelain
+15985,Spode Josiah_Spode,English potter who started a pottery famous for its bone china (1754-1827)
+15986,Spodoptera genus_Spodoptera,moths whose larvae are armyworms
+15987,Spodoptera_exigua,moth whose larvae are beet armyworms
+15988,Spodoptera_frugiperda,moth whose larvae are fall armyworms
+15989,Spokane,a city in eastern Washington near the Idaho border
+15990,Spondias genus_Spondias,tropical trees having one-seeded fruit
+15991,Spork,trademark for a plastic eating utensil that has both tines and a bowl like a spoon
+15992,Sporobolus genus_Sporobolus,cosmopolitan annual and perennial grasses (as dropseed or rush grass)
+15993,Sporozoa class_Sporozoa,strictly parasitic protozoans that are usually immobile; includes plasmodia and coccidia and piroplasms and malaria parasites
+15994,Spotsylvania,a village in northeastern Virginia where battles were fought during the American Civil War
+15995,Spotsylvania battle_of_Spotsylvania_Courthouse,a battle between the armies of Grant and Lee during the Wilderness Campaign
+15996,Spraguea genus_Spraguea,small genus of usually perennial herbs having deep woody taproots and flower heads of umbels or cymes
+15997,Springfield,a city of southwestern Missouri
+15998,Springfield,a city and manufacturing center in southwestern Massachusetts on the Connecticut River
+15999,Springfield capital_of_Illinois,capital of the state of Illinois
+16000,Spyeria genus_Spyeria,fritillaries
+16001,Squalidae family_Squalidae,dogfishes having a spine in each dorsal fin
+16002,Squalus genus_Squalus,spiny dogfishes
+16003,Squamata order_Squamata,diapsid reptiles: snakes and lizards
+16004,Squatina genus_Squatina,type genus of the Squatinidae: angel sharks
+16005,Squatinidae family_Squatinidae,bottom-dwelling ray-like sharks
+16006,Squillidae family_Squillidae,crustaceans that burrow in mud or under stones in shallow water along the seashore
+16007,Sri_Lanka Democratic_Socialist_Republic_of_Sri_Lanka Ceylon,a republic on the island of Ceylon; became independent of the United Kingdom in 1948
+16008,Sri_Lanka_rupee rupee,the basic unit of money in Sri Lanka; equal to 100 cents
+16009,Sri_Lankan,a native or inhabitant of Sri Lanka
+16010,Sri_Lankan_monetary_unit,monetary unit in Sri Lanka
+16011,St.-Bruno's-lily Paradisea_liliastrum,a variety of spiderwort
+16012,St._Andrew's_cross saltire,a cross resembling the letter x, with diagonal bars of equal length
+16013,St._Augustine Saint_Augustine,a resort city in northeastern Florida; the oldest city in the United States
+16014,St._Augustine_grass Stenotaphrum_secundatum buffalo_grass,low mat-forming grass of southern United States and tropical America; grown as a lawn grass
+16015,St._Denis Saint_Denis Ruth_Saint_Denis Ruth_St._Denis,United States dancer and choreographer who collaborated with Ted Shawn (1877-1968)
+16016,St._Elias_Range St._Elias_Mountains,a range of mountains between Alaska and the Yukon territory
+16017,St._George's capital_of_Grenada,the capital and largest city of Grenada
+16018,St._John's Saint_John's capital_of_Antigua_and_Barbuda,the capital and largest city of Antigua and Barbuda; located on the island of Antigua
+16019,St._Petersburg Leningrad Peterburg Petrograd Saint_Petersburg,a city in the European part of Russia; 2nd largest Russian city; located at the head of the Gulf of Finland; former capital of Russia
+16020,St._Petersburg Saint_Petersburg,a city in western Florida on Tampa Bay; a popular winter resort
+16021,St_Andrews's_cross Hypericum_crux_andrae,shrubby plant having yellow to apricot flowers with four petals arranged in a cross; southeastern United States: New York to Texas
+16022,St_John's_wort,any of numerous plants of the genus Hypericum having yellow flowers and transparently dotted leaves; traditionally gathered on St John's eve to ward off evil
+16023,St_Patrick's_Day Saint_Patrick's_Day March_17,a day observed by the Irish to commemorate the patron saint of Ireland
+16024,St_Peter's_wort Hypericum_tetrapterum Hypericum_maculatum,European perennial St John's wort; Ireland and France to western Siberia
+16025,Stachys genus_Stachys,large genus of usually woolly or hairy herbs or subshrubs or shrubs; temperate eastern hemisphere; tropical Australasia
+16026,Stael Madame_de_Stael Baronne_Anne_Louise_Germaine_Necker_de_Steal-Holstein,French romantic writer (1766-1817)
+16027,Staffa,an island in western Scotland in the Inner Hebrides to the west of Mull; site of Fingal's Cave
+16028,Staffordshire_bullterrier Staffordshire_bull_terrier,English breed of strong stocky dog having a broad skull and smooth coat
+16029,Stagira Stagirus,an ancient town of Greece where Aristotle was born
+16030,Stalin Joseph_Stalin Iosif_Vissarionovich_Dzhugashvili,Russian leader who succeeded Lenin as head of the Communist Party and created a totalitarian state by purging all opposition (1879-1953)
+16031,Stalinist,a follower of Stalin and Stalinism
+16032,Stalinization Stalinisation,social process of adopting (or being forced to adopt) the policies and practices of Joseph Stalin; "many Hungarians refused to take part in the Stalinization of their country"
+16033,Stamp_Act,an act passed by the British Parliament in 1756 that raised revenue from the American Colonies by a duty in the form of a stamp required on all newspapers and legal or commercial documents; opposition by the Colonies resulted in the repeal of the act in 1766
+16034,Standard_and_Poor's Standard_and_Poor's_Index,a broadly based stock market index
+16035,Standish Miles_Standish Myles_Standish,English colonist in America; leader of the Pilgrims in the early days of the Plymouth Colony (1584-1656)
+16036,Stanford Leland_Stanford,United States railroad executive and founder of Stanford University (1824-1893)
+16037,Stanford-Binet_test,revision of the Binet-Simon Scale
+16038,Stanford_University Stanford,a university in California
+16039,Stanislavsky Konstantin_Stanislavsky Konstantin_Sergeyevich_Stanislavsky Konstantin_Sergeevich_Alekseev,Russian actor and theater director who trained his actors to emphasize the psychological motivation of their roles (1863-1938)
+16040,Stanley Francis_Edgar_Stanley,United States inventor who built a steam-powered automobile (1849-1918)
+16041,Stanley Henry_M._Stanley Sir_Henry_Morton_Stanley John_Rowlands,Welsh journalist and explorer who led an expedition to Africa in search of David Livingstone and found him in Tanzania in 1871; he and Livingstone together tried to find the source of the Nile River (1841-1904)
+16042,Stanley_Steamer,a steam-powered automobile
+16043,Stanleya genus_Stanleya,prince's plume
+16044,Stanton Elizabeth_Cady_Stanton,United States suffragist and feminist; called for reform of the practices that perpetuated sexual inequality (1815-1902)
+16045,Stapelias_asterias,stapelia of Cape Province having mostly dark red-brown flowers with flat starlike corollas
+16046,Staphylaceae family_Staphylaceae bladdernut_family,a family of dicotyledonous plants of order Sapindales found mostly in the north temperate zone
+16047,Staphylea genus_Staphylea,a genus of small trees or shrubs of the family Staphylaceae
+16048,Staphylinidae family_Staphylinidae,rove beetles
+16049,Star_Chamber,a former English court that became notorious for its arbitrary methods and severe punishments
+16050,Star_of_David Shield_of_David Magen_David Mogen_David Solomon's_seal,a six-pointed star formed from two equilateral triangles; an emblem symbolizing Judaism
+16051,Starr Ringo_Starr Starkey Richard_Starkey,rock star and drummer for the Beatles (born in 1940)
+16052,Stars_and_Bars Confederate_flag,the first flag of the Confederate States of America
+16053,Stassano_furnace electric-arc_furnace,an electric furnace in which an electric arc provides the source of heat for making steel
+16054,State_Department,a department of government in one of the 50 states
+16055,Statehouse,a government building in which a state legislature meets
+16056,Staten_Island,a borough of New York City
+16057,States'_Rights_Democratic_Party Dixiecrats,a former political party in the United States; formed in 1948 by Democrats from southern states in order to oppose to the candidacy of Harry S Truman
+16058,States_General,assembly of the estates of an entire country especially the sovereign body of the Dutch republic from 16th to 18th centuries
+16059,Station_of_the_Cross,a representation of any of the 14 stages in Christ's journey to Calvary
+16060,Stations Stations_of_the_Cross,(Roman Catholic Church) a devotion consisting of fourteen prayers said before a series of fourteen pictures or carvings representing successive incidents during Jesus' passage from Pilate's house to his crucifixion at Calvary
+16061,Statistical_Commission,the commission of the Economic and Social Council of the United Nations that is concerned with statistical data from member nations
+16062,Statue_of_Liberty,a large monumental statue symbolizing liberty on Liberty Island in New York Bay
+16063,Stavanger,a port city in southwestern Norway; center for shipbuilding industry
+16064,Stayman,apple grown chiefly in the Shenandoah Valley
+16065,Stayman_Winesap,crisp tart apple; good for eating raw and suitable for cooking
+16066,Steatornis genus_Steatornis,type and sole genus of the family Steatornithidae
+16067,Steatornithidae family_Steatornithidae,oilbirds
+16068,Steele Sir_Richrd_Steele,English writer (1672-1729)
+16069,Steen Jan_Steen,Dutch genre painter (1626-1679)
+16070,Steffens Lincoln_Steffens Joseph_Lincoln_Steffens,United States journalist whose exposes in 1906 started an era of muckraking journalism (1866-1936)
+16071,Steganopus genus_Steganopus,a genus of Phalaropidae
+16072,Stegocephalia order_Stegocephalia,in former classifications a division of class Amphibia comprising all pre-Jurassic and some later extinct large salamandriform amphibia
+16073,Steichen Edward_Jean_Steichen,United States photographer who pioneered artistic photography (1879-1973)
+16074,Stein Gertrude_Stein,experimental expatriate United States writer (1874-1946)
+16075,Steinbeck John_Steinbeck John_Ernst_Steinbeck,United States writer noted for his novels about agricultural workers (1902-1968)
+16076,Steinberg Saul_Steinberg,United States cartoonist (born in Romania) noted for his caricatures of famous people (1914-1999)
+16077,Steinem Gloria_Steinem,United States feminist (born in 1934)
+16078,Steiner Rudolf_Steiner,Austrian philosopher who founded anthroposophy (1861-1925)
+16079,Steinman David_Barnard_Steinman,United States civil engineer noted for designing suspension bridges (including the George Washington Bridge) (1886-1960)
+16080,Steinmetz Charles_Proteus_Steinmetz,United States electrical engineer and inventor (born in Germany) (1865-1923)
+16081,Steinway Henry_Steinway Henry_Engelhard_Steinway Heinrich_Engelhard_Steinway,United States piano maker (born in Germany) who founded a famous piano manufacturing firm in New York (1797-1871)
+16082,Stella Frank_Stella Frank_Philip_Stella,United States minimalist painter (born in 1936)
+16083,Stellaria genus_Stellaria,common chickweed; stitchwort
+16084,Steller Georg_Wilhelm_Steller,German naturalist (1709-1746)
+16085,Steller's_sea_cow Hydrodamalis_gigas,extinct large sirenian mammal formerly found near the Asiatic coast of the Bering Sea
+16086,Steller_sea_lion Steller's_sea_lion Eumetopias_jubatus,largest sea lion; of the northern Pacific
+16087,Stellite,a very hard alloy of cobalt and chromium with cobalt as the principal ingredient; used to make cutting tools and for surfaces subject to heavy wear
+16088,Sten_gun,a lightweight British submachine gun
+16089,Stendhal Marie_Henri_Beyle,French writer whose novels were the first to feature psychological analysis of the character (1783-1842)
+16090,Stengel Casey_Stengel Charles_Dillon_Stengel,United States baseball manager (1890-1975)
+16091,Stenocarpus genus_Stenocarpus,small genus of timber trees; Australia to Malaysia
+16092,Stenochlaena genus_Stenochlaena,large tropical ferns; some epiphytic climbers and some terrestrial bog ferns; Africa; Asia; Australasia
+16093,Stenopelmatidae family_Stenopelmatidae,long-horned grasshoppers
+16094,Stenopelmatus genus_Stenopelmatus,sand crickets
+16095,Stenotaphrum genus_Stenotaphrum,lawn grasses
+16096,Stenotomus genus_Stenotomus,scups
+16097,Stenotus genus_Stenotus,genus of western North American low evergreen shrubs growing in dense tufts
+16098,Stentor,the mythical Greek warrior with an unusually loud voice who died after losing a shouting contest with Hermes
+16099,Stephanomeria genus_Stephanomeria,malheur wire lettuce
+16100,Stephen Sir_Leslie_Stephen,English writer (1832-1904)
+16101,Stephenson George_Stephenson,English railway pioneer who built the first passenger railway in 1825 (1781-1848)
+16102,Stercorariidae family_Stercorariidae,jaegers and skuas:
+16103,Stercorarius genus_Stercorarius,type genus of the Stercorariidae: jaegers
+16104,Sterculiaceae family_Sterculiaceae sterculia_family,a large family of plants of order Malvales
+16105,Stereospondyli order_Stereospondyli,formerly a suborder of Stegocephalia; amphibia having vertebrae whose component elements are fused into a single piece; "most vertebrates are stereospondylous"
+16106,Stern Isaac_Stern,United States concert violinist (born in Russia in 1920)
+16107,Sterna genus_Sterna,a genus of Sterninae
+16108,Sterne Laurence_Sterne,English writer (born in Ireland) (1713-1766)
+16109,Sterninae subfamily_Sterninae,terns
+16110,Sternotherus genus_Sternotherus,musk turtles
+16111,Sterope Asterope,(Greek mythology) one of the 7 Pleiades
+16112,Sterope Asterope,one of the stars in the star cluster Pleiades
+16113,Steuben Baron_Friedrich_Wilhelm_Ludolf_Gerhard_Augustin_von_Steuben,American Revolutionary leader (born in Prussia) who trained the troops under George Washington (1730-1794)
+16114,Stevens George_Stevens,United States filmmaker (1905-1975)
+16115,Stevens Smitty_Stevens S._Smith_Stevens Stanley_Smith_Stevens,United States psychologist and psychophysicist who proposed Stevens' power law to replace Fechner's law (1906-1973)
+16116,Stevens Wallace_Stevens,United States poet (1879-1955)
+16117,Stevens'_law power_law Stevens'_power_law,(psychophysics) the concept that the magnitude of a subjective sensation increases proportional to a power of the stimulus intensity
+16118,Stevenson Adlai_Stevenson Adlai_Ewing_Stevenson,United States politician and diplomat (1900-1968)
+16119,Stevenson Robert_Louis_Stevenson Robert_Louis_Balfour_Stevenson,Scottish author (1850-1894)
+16120,Stewart Dugald_Stewart,Scottish philosopher and follower of Thomas Reid (1753-1828)
+16121,Stewart Jimmy_Stewart James_Maitland_Stewart,United States film actor who portrayed incorruptible but modest heros (1908-1997)
+16122,Stheno,(Greek mythology) one of the three Gorgons
+16123,Stichaeidae family_Stichaeidae,pricklebacks
+16124,Sticherus genus_Sticherus,umbrella ferns; warm regions of Australia and New Zealand
+16125,Stictomys genus_Stictomys,mountain pacas
+16126,Stictopelia genus_Stictopelia,a genus of Columbidae
+16127,Stieglitz Alfred_Stieglitz,United States photographer (1864-1946)
+16128,Still's_disease juvenile_rheumatoid_arthritis,a form of rheumatoid arthritis that affects children; large joints become inflamed and bone growth may be retarded
+16129,Stillson_wrench,a large pipe wrench with L-shaped adjustable jaws that tighten as pressure on the handle is increased
+16130,Stilton,English blue cheese
+16131,Stilwell Joseph_Warren_Stilwell Vinegar_Joe_Stilwell Uncle_Joe,United States general who commanded the Allied forces in China and Burma and India during World War II (1883-1946)
+16132,Stinger,a portable low altitude surface-to-air missile system using infrared guidance and an impact fuse; fired from the shoulder
+16133,Stizidae family_Stizidae,cicada killers
+16134,Stizostedion genus_Stizostedion,pike-perches
+16135,Stockholm capital_of_Sweden,the capital and largest city of Sweden; located in southern Sweden on the Baltic; "the Nobel Prize is awarded in Stockholm"
+16136,Stockton Frank_Stockton Francis_Richard_Stockton,United States writer (1834-1902)
+16137,Stoic,a member of the ancient Greek school of philosophy founded by Zeno; "a Stoic achieves happiness by submission to destiny"
+16138,Stoicism,(philosophy) the philosophical system of the Stoics following the teachings of the ancient Greek philosopher Zeno
+16139,Stoker Bram_Stoker Abraham_Stoker,Irish writer of the horror novel about Dracula (1847-1912)
+16140,Stokesia genus_Stokesia,one species: stokes' aster
+16141,Stokowski Leopold_Stokowski Leopold_Antoni_Stanislaw_Stokowski,United States conductor (born in Britain) (1882-1977)
+16142,Stomatopoda order_Stomatopoda,mantis shrimps
+16143,Stone Edward_Durell_Stone,United States architect (1902-1978)
+16144,Stone Harlan_Fiske_Stone,United States jurist who served on the United States Supreme Court as chief justice (1872-1946)
+16145,Stone Harlan_Stone Harlan_F._Stone Harlan_Fisk_Stone,United States jurist who was named chief justice of the United States Supreme Court in 1941 by Franklin D. Roosevelt (1872-1946)
+16146,Stone I._F._Stone Isidor_Feinstein_Stone,United States journalist who advocated liberal causes (1907-1989)
+16147,Stone Lucy_Stone,United States feminist and suffragist (1818-1893)
+16148,Stone Oliver_Stone,United States filmmaker (born in 1946)
+16149,Stone_Age,(archeology) the earliest known period of human culture, characterized by the use of stone implements
+16150,Stonehenge,an ancient megalithic monument in southern England; probably used for ritual purposes
+16151,Stopes Marie_Stopes Marie_Charlotte_Carmichael_Stopes,birth-control campaigner who in 1921 opened the first birth control clinic in London (1880-1958)
+16152,Stoppard Tom_Stoppard Sir_Tom_Stoppard Thomas_Straussler,British dramatist (born in Czechoslovakia in 1937)
+16153,Storeria genus_Storeria,a genus of Colubridae
+16154,Stowe Harriet_Beecher_Stowe Harriet_Elizabeth_Beecher_Stowe,United States writer of a novel about slavery that advanced the abolitionists' cause (1811-1896)
+16155,Strachey Lytton_Strachey Giles_Lytton_Strachey,English biographer and leading member of the Bloomsbury Group (1880-1932)
+16156,Stradavarius Strad,a violin made by Antonio Stradivari or a member of his family
+16157,Stradivari Antonio_Stradivari Stradivarius Antonius_Stradivarius,Italian violin maker who developed the modern violin and created violins of unequaled tonal quality (1644?-1737)
+16158,Strait_of_Dover Strait_of_Calais Pas_de_Calais,the strait between the English Channel and the North Sea; shortest distance between England and the European continent
+16159,Strait_of_Georgia,the strait separating Vancouver Island from the Canadian mainland
+16160,Strait_of_Gibraltar,the strait between Spain and Africa
+16161,Strait_of_Hormuz Strait_of_Ormuz,a strategically important strait linking the Persian Gulf and the Gulf of Oman
+16162,Strait_of_Magellan,the strait separating South America from Tierra del Fuego and other islands to the south of the continent; discovered by Ferdinand Magellan in 1520; an important route around South America before the Panama Canal was built
+16163,Strait_of_Malacca,the strait between the Malay Peninsula and Sumatra; it connects the Pacific Ocean to the east with the Indian Ocean to the west and is an important shipping lane
+16164,Strait_of_Messina,the strait separating Sicily from the tip of Italy
+16165,Strand,a street in west central London famous for its theaters and hotels
+16166,Strasberg Lee_Strasberg Israel_Strassberg,United States actor and film director (born in Austria) who was a leader in developing method acting in the United States (1901-1982)
+16167,Strasbourg Strassburg,city on the Rhine in eastern France near the German border; an inland port
+16168,Strategic_Arms_Limitation_Talks SALT,negotiations between the United States and the Union of Soviet Socialist Republics opened in 1969 in Helsinki designed to limit both countries' stock of nuclear weapons
+16169,Stratford-on-Avon Stratford-upon-Avon,a town in central England on the River Avon; birthplace (and burial place) of William Shakespeare
+16170,Strauss Johann_Strauss Strauss_the_Elder,Austrian composer of waltzes (1804-1849)
+16171,Strauss Johann_Strauss Strauss_the_Younger,Austrian composer and son of Strauss the Elder; composed many famous waltzes and became known as the `waltz king' (1825-1899)
+16172,Strauss Richard_Strauss,German composer of many operas; collaborated with librettist Hugo von Hoffmannsthal to produce several operas (1864-1949)
+16173,Stravinsky,the music of Stravinsky; "Stravinsky no longer causes riots in the streets"
+16174,Stravinsky Igor_Stravinsky Igor_Fyodorovich_Stravinsky,composer who was born in Russia but lived in the United States after 1939 (1882-1971)
+16175,Streep Meryl_Streep,United States film actress (born in 1949)
+16176,Streisand Barbra_Streisand Barbra_Joan_Streisand,United States singer and actress (born in 1942)
+16177,Strekelia genus_Strekelia,a monocotyledonous genus of the amaryllis family
+16178,Strelitzia genus_Strelitzia,small genus of large perennial evergreen herbs having leaves resembling those of banana plants; sometimes placed in family Musaceae
+16179,Strelitziaceae family_Strelitziaceae strelitzia_family,woody plants with erect stems of tropical South America and South Africa and Madagascar; in some classifications included in the family Musaceae
+16180,Strepera genus_Strepera,bell magpies
+16181,Strepsirhini suborder_Strepsirhini,in some classifications either coextensive with the Lemuroidea or comprising the true lemurs
+16182,Streptococcus_anhemolyticus,a species of bacteria
+16183,Streptomyces_erythreus,source of the antibiotic erythromycin
+16184,Streptomyces_griseus,source of the antibiotic streptomycin
+16185,Streptomycetaceae family_Streptomycetaceae,higher bacteria typically aerobic soil saprophytes
+16186,Streptopelia genus_Streptopelia,turtledoves
+16187,Streptopelia_turtur,the common European wild dove noted for its plaintive cooing
+16188,Streptosolen genus_Streptosolen,one species: marmalade bush
+16189,Strickland William_Strickland,United States architect and student of Latrobe (1787-1854)
+16190,Strigidae family_Strigidae,a family of nocturnal birds of the order Strigiformes
+16191,Strigiformes order_Strigiformes,owls
+16192,Strindberg August_Strindberg Johan_August_Strindberg,Swedish dramatist and novelist (1849-1912)
+16193,Strix genus_Strix,owls lacking ear tufts
+16194,Strobilomyces genus_Strobilomyces,fungi similar to Boletus but with a shaggy scaly cap
+16195,Stroheim Erich_von_Stroheim,United States film actor (born in Austria) (1885-1957)
+16196,Stromateidae family_Stromateidae,butterfishes: harvest fishes; dollar fishes
+16197,Strombidae family_Strombidae,the family of conchs
+16198,Strombus genus_Strombus,type genus of the family Strombidae
+16199,Strongylodon genus_Strongylodon,genus of Polynesian or southeastern Asian shrubs or vines
+16200,Strophanthus_kombe,plant that is a source of strophanthin
+16201,Stropharia genus_Stropharia ring-stalked_fungus,genus of gill fungi with brown spores that is closely related to Agaricus; here placed in its own family Strophariaceae
+16202,Stropharia_ambigua,a gilled fungus with a long stalk and a yellow slimy cap from which fragments of the broken veil hang; gills are initially white but become dark brown as spores are released
+16203,Stropharia_hornemannii,a gilled fungus with a large slimy purple or olive cap; gills become purple with age; the stalk is long and richly decorated with pieces of the white sheath that extends up to a ring
+16204,Stropharia_rugoso-annulata,a large gilled fungus with a broad cap and a long stalk; the cap is dark brown; the white gills turn dark purplish brown with age; edible and choice
+16205,Strophariaceae family_Strophariaceae,sometimes included in family Agaricaceae
+16206,Struthio genus_Struthio,type genus of the Struthionidae: African ostriches
+16207,Struthionidae family_Struthionidae,tall terrestrial birds: ostriches
+16208,Struthioniformes order_Struthioniformes,a ratite bird order: ostriches and related extinct birds; known from the Pleistocene onward
+16209,Strymon genus_Strymon,large and widely distributed genus of hairstreak butterflies
+16210,Strymon_melinus,larvae are pests of various economic plants
+16211,Stuart,a member of the royal family that ruled Scotland and England
+16212,Stuart,the royal family that ruled Scotland from 1371-1714 and ruled England from 1603 to 1649 and again from 1660 to 1714
+16213,Stuart Gilbert_Stuart Gilbert_Charles_Stuart,United States painter best known for his portraits of George Washington (1755-1828)
+16214,Stubbs William_Stubbs,English historian noted for his constitutional history of medieval England (1825-1901)
+16215,Sturnella genus_Sturnella,a genus of passerine birds including the meadowlarks
+16216,Sturnidae family_Sturnidae,Old World starlings
+16217,Sturnus genus_Sturnus,type genus of the Sturnidae: common starlings
+16218,Stuttgart,a city in southwestern Germany famous for innovative architecture
+16219,Stuyvesant Peter_Stuyvesant Petrus_Stuyvesant,the last Dutch colonial administrator of New Netherland; in 1664 he was forced to surrender the colony to England (1592-1672)
+16220,Stylomecon genus_Stylomecon,one species: wind poppy
+16221,Stylophorum genus_Stylophorum,wood poppies
+16222,Styphelia genus_Styphelia,Australian heathlike shrubs
+16223,Styracaceae family_Styracaceae storax_family styrax_family,a widely distributed family of shrubs and trees of order Ebenales
+16224,Styrofoam,a light resilient foam of polystyrene
+16225,Styron William_Styron,United States writer best known for his novels (born in 1925)
+16226,Styx River_Styx,(Greek mythology) a river in Hades across which Charon carried dead souls
+16227,Sub-Saharan_Africa Black_Africa,the region of Africa to the south of the Sahara Desert
+16228,Subularia genus_Subularia,small genus of herbs of north temperate regions and mountains of tropical Africa
+16229,Succoth Sukkoth Succos Feast_of_Booths Feast_of_Tabernacles Tabernacles,a major Jewish festival beginning on the eve of the 15th of Tishri and commemorating the shelter of the Israelites during their 40 years in the wilderness
+16230,Suckling Sir_John_Suckling,English poet and courtier (1609-1642)
+16231,Sucre,the judicial capital and seat of the judiciary in Bolivia
+16232,Sudan Republic_of_the_Sudan Soudan,a republic in northeastern Africa on the Red Sea; achieved independence from Egypt and the United Kingdom in 1956
+16233,Sudan Soudan,a region of northern Africa to the south of the Sahara and Libyan deserts; extends from the Atlantic to the Red Sea
+16234,Sudanese,a native or inhabitant of Sudan
+16235,Sudanese_monetary_unit,monetary unit in the Sudan
+16236,Sudanese_pound pound,the basic unit of money in the Sudan; equal to 100 piasters
+16237,Sudbury,a city in south central Canada in Ontario; a major nickel mining center
+16238,Sue Eugene_Sue,French writer whose novels described the sordid side of city life (1804-1857)
+16239,Suez,a city in northeastern Egypt at the head of the Gulf of Suez and at the southern end of the Suez Canal
+16240,Suez_Canal,a ship canal in northeastern Egypt linking the Red Sea with the Mediterranean Sea
+16241,Sufi,a Muslim who represents the mystical dimension of Islam; a Muslim who seeks direct experience of Allah; mainly in Iran
+16242,Sufism,Islamic mysticism
+16243,Suharto,Indonesian statesman who seized power from Sukarno in 1967 (born in 1921)
+16244,Suidae family_Suidae,pigs; hogs; boars
+16245,Suillus genus_Suillus,a genus of fungi belonging to the family Boletaceae
+16246,Suillus_albivelatus,a short squat edible fungus with a reddish brown cap and white stalk; fruits under pines in the spring
+16247,Sukarno Achmad_Sukarno,Indonesian statesman who obtained the independence of Indonesia from the Netherlands in 1949 and served as president until ousted by Suharto in a coup d'etat (1901-1970)
+16248,Sukur,a Chadic language spoken south of Lake Chad
+16249,Sula genus_Sula,type genus of the Sulidae
+16250,Sulidae family_Sulidae,gannets and boobies
+16251,Sulla Lucius_Cornelius_Sulla_Felix,Roman general and dictator (138-78 BC)
+16252,Sullivan Anne_Sullivan Anne_Mansfield_Sullivan,United States educator who was the teacher and lifelong companion of Helen Keller (1866-1936)
+16253,Sullivan Arthur_Sullivan Arthur_Seymour_Sullivan Sir_Arthur_Sullivan,English composer of operettas who collaborated with the librettist William Gilbert (1842-1900)
+16254,Sullivan Ed_Sullivan Edward_Vincent_Sullivan,United States host on a well known television variety show (1902-1974)
+16255,Sullivan Harry_Stack_Sullivan,United States psychiatrist (1892-1949)
+16256,Sullivan Louis_Sullivan Louis_Henry_Sullivan Louis_Henri_Sullivan,United States architect known for his steel framed skyscrapers and for coining the phrase `form follows function' (1856-1924)
+16257,Sully Duc_de_Sully Maxmilien_de_Bethune,French statesman (1560-1641)
+16258,Sully Thomas_Sully,United States painter (born in England) of portraits and historical scenes (1783-1872)
+16259,Sumatra,a mountainous island in western Indonesia
+16260,Sumatran,a native or inhabitant of Sumatra
+16261,Sumer,an area in the southern region of Babylonia in present-day Iraq; site of the Sumerian civilization of city-states that flowered during the third millennium BC
+16262,Sumerian,a member of a people who inhabited ancient Sumer
+16263,Sumerology,the archeology of ancient Sumerians
+16264,Sumner William_Graham_Sumner,United States sociologist (1840-1910)
+16265,Sun_City,a residential suburb of Phoenix
+16266,Sun_River,a river in western Montana that flows south and east to join the Missouri River
+16267,Sun_Valley,a winter sports resort in south central Idaho
+16268,Sun_Yat-sen Sun_Yixian,Chinese statesman who organized the Kuomintang and led the revolution that overthrew the Manchu dynasty in 1911 and 1912 (1866-1925)
+16269,Sunbelt,states in the south and southwest that have a warm climate and tend to be politically conservative
+16270,Sunda_Islands,a chain of islands in the western Malay Archipelago
+16271,Sundacarpus genus_Sundacarpus,one species
+16272,Sundacarpus_amara Prumnopitys_amara Podocarpus_amara,a large fast-growing monoecious tropical evergreen tree having large glossy lanceolate leaves; of rain forests of Sumatra and Philippines to northern Queensland
+16273,Sundanese,the Indonesian language spoken on West Java
+16274,Sunday Billy_Sunday William_Ashley_Sunday,United States evangelist (1862-1935)
+16275,Sunday Lord's_Day Dominicus Sun,first day of the week; observed as a day of rest and worship by most Christians
+16276,Sunday_best Sunday_clothes,the best attire you have which is worn to church on Sunday
+16277,Sunday_school Sabbath_school,school meeting on Sundays for religious instruction
+16278,Sunderland,a port and industrial city in northeastern England
+16279,Sung Sung_dynasty Song Song_dynasty,the imperial dynasty of China from 960 to 1279; noted for art and literature and philosophy
+16280,Sunnah Sunna hadith,(Islam) the way of life prescribed as normative for Muslims on the basis of the teachings and practices of Muhammad and interpretations of the Koran
+16281,Sunni Sunni_Islam,one of the two main branches of orthodox Islam
+16282,Sunnite Sunni Sunni_Muslim,a member of the branch of Islam that accepts the first four caliphs as rightful successors to Muhammad
+16283,Superfund_program Superfund,the federal government's program to locate and investigate and clean up the worst uncontrolled and abandoned toxic waste sites nationwide; administered by the Environmental Protection Agency; "some have intimated that the Superfund's money may have turned into a political slush fund"
+16284,Superior,a town in northwest Wisconsin on Lake Superior across from Duluth
+16285,Supreme_Allied_Commander_Atlantic SACLANT,commanding officer of ACLANT; a general of the United States Army nominated by the President of the United States and approved by the North Atlantic Council
+16286,Supreme_Allied_Commander_Europe SACEUR,commanding officer of ACE; NATO's senior military commander in Europe
+16287,Supreme_Court Supreme_Court_of_the_United_States United_States_Supreme_Court,the highest federal court in the United States; has final appellate jurisdiction and has jurisdiction over all other courts in the nation
+16288,Supreme_Headquarters_Allied_Powers_Europe SHAPE,the supreme headquarters that advises NATO on military matters and oversees all aspects of the Allied Command Europe
+16289,Sur Tyre,a port in southern Lebanon on the Mediterranean Sea; formerly a major Phoenician seaport famous for silks
+16290,Surgeon_General,the head of the United States Public Health Service
+16291,Surgeon_General,the senior medical officer in an Army or Navy
+16292,Suricata genus_Suricata,meerkats
+16293,Surinam_cherry pitanga Eugenia_uniflora,Brazilian tree with spicy red fruit; often cultivated in California and Florida
+16294,Surinam_toad Pipa_pipa Pipa_americana,a South American toad; incubates its young in pits in the skin of its back
+16295,Suriname Republic_of_Suriname Surinam Dutch_Guiana Netherlands_Guiana,a republic in northeastern South America on the Atlantic; achieved independence from the Netherlands in 1975
+16296,Suriname_River Surinam_River,a river in Suriname that flows northward to the Atlantic
+16297,Surinamese_monetary_unit,monetary unit in Suriname
+16298,Surnia genus_Surnia,a genus of hawk-like owls
+16299,Surrey,a county in southeastern England on the Thames
+16300,Surya,an important god of later Hinduism; the sun god or the sun itself worshipped as the source of warmth and light
+16301,Sus genus_Sus,type genus of the Suidae
+16302,Susan_B_Anthony_dollar,a United States coin worth one dollar
+16303,Susanna Book_of_Susanna,an Apocryphal book consisting of text added to the Book of Daniel
+16304,Susquehanna Susquehanna_River,a river in the northeastern United States that rises in New York and flows southward through Pennsylvania and Maryland into Chesapeake Bay
+16305,Sussex,a county in southern England on the English Channel; formerly an Anglo-Saxon kingdom that was captured by Wessex in the 9th century
+16306,Sussex_spaniel,an English breed with short legs and a golden liver-colored coat
+16307,Sutherland Joan_Sutherland Dame_Joan_Sutherland,Australian operatic soprano (born in 1926)
+16308,Suva,the capital and largest city of Fiji (on Viti Levu island)
+16309,Svalbard,a Norwegian archipelago in the Arctic Ocean
+16310,Svengali,someone (usually maleficent) who tries to persuade or force another person to do his bidding
+16311,Svengali,the musician in a novel by George du Maurier who controls Trilby's singing hypnotically
+16312,Sverdrup Otto_Neumann_Sverdrup,Norwegian explorer who led expeditions into the Arctic (1855-1930)
+16313,Swahili,the most widely spoken Bantu languages; the official language of Kenya and Tanzania and widely used as a lingua franca in east and central Africa
+16314,Swainsona genus_Swainsona,a genus of Australian herbs and subshrubs: darling peas
+16315,Swammerdam Jan_Swammerdam,Dutch naturalist and microscopist who proposed a classification of insects and who was among the first to recognize cells in animals and was the first to see red blood cells (1637-1680)
+16316,Swan_River_daisy Brachycome_Iberidifolia,western Australian annual much cultivated for its flower heads with white or bluish to violet or variegated rays
+16317,Swan_River_everlasting rhodanthe Rhodanthe_manglesii Helipterum_manglesii,Australian annual everlasting having light pink nodding flower heads; sometimes placed in genus Helipterum
+16318,Swansea,a port city in southern Wales on an inlet of the Bristol Channel
+16319,Swanson Gloria_Swanson Gloria_May_Josephine_Svensson,United States actress in many silent films (1899-1983)
+16320,Swazi,a member of a southeast African people living in Swaziland and adjacent areas
+16321,Swazi,a Bantu language closely related to Zulu
+16322,Swaziland Kingdom_of_Swaziland,a landlocked monarchy in southeastern Africa; member of the commonwealth that achieved independence from the United Kingdom in 1968
+16323,Swaziland_monetary_unit,monetary unit in Swaziland
+16324,Swede,a native or inhabitant of Sweden
+16325,Sweden Kingdom_of_Sweden Sverige,a Scandinavian kingdom in the eastern part of the Scandinavian Peninsula
+16326,Swedenborg Svedberg Emanuel_Swedenborg Emanuel_Svedberg,Swedish theologian (1688-1772)
+16327,Swedish,a Scandinavian language that is the official language of Sweden and one of two official languages of Finland
+16328,Swedish_iron,wrought iron of high purity made in Sweden
+16329,Swedish_krona krona,the basic unit of money in Sweden
+16330,Swedish_massage,massage combined with a system of active and passive exercises for the muscles and joints
+16331,Swedish_meatball,meatballs simmered in stock
+16332,Swedish_monetary_unit,monetary unit in Sweden
+16333,Swedish_rye_bread Swedish_rye,a moist aromatic yeast-raised bread made with rye flour and molasses and orange rind
+16334,Sweet Henry_Sweet,English phonetician; one of the founders of modern phonetics (1845-1912)
+16335,Swertia genus_Swertia,genus of herbs of mountains of North America and Eurasia and Africa
+16336,Swietinia genus_Swietinia,tropical American mahogany trees
+16337,Swift Gustavus_Franklin_Swift,United States meat-packer who began the use of refrigerated railroad cars (1839-1903)
+16338,Swift Jonathan_Swift Dean_Swift,an English satirist born in Ireland (1667-1745)
+16339,Swinburne Algernon_Charles_Swinburne,English poet (1837-1909)
+16340,Swiss Swiss_people,the natives or inhabitants of Switzerland
+16341,Swiss_canton,one of the cantons of Switzerland
+16342,Swiss_cheese,hard pale yellow cheese with many holes from Switzerland
+16343,Swiss_franc,the basic unit of money in Switzerland
+16344,Swiss_mountain_pine mountain_pine dwarf_mountain_pine mugho_pine mugo_pine Pinus_mugo,low shrubby pine of central Europe with short bright green needles in bunches of two
+16345,Swiss_pine Swiss_stone_pine arolla_pine cembra_nut_tree Pinus_cembra,large five-needled European pine; yields cembra nuts and a resinous exudate
+16346,Swiss_steak,steak braised in tomato and onion mixture
+16347,Switzerland Swiss_Confederation Suisse Schweiz Svizzera,a landlocked federal republic in central Europe
+16348,Sydenham Thomas_Sydenham English_Hippocrates,English physician (1624-1689)
+16349,Sydenham's_chorea Saint_Vitus_dance St._Vitus_dance,chorea occurring chiefly in children and associated with rheumatic fever
+16350,Sydney,the largest Australian city located in southeastern Australia on the Tasman Sea; state capital of New South Wales; Australia's chief port
+16351,Sydney_Harbor_Bridge,a steel arch bridge in Sydney, Australia
+16352,Sylvanus Silvanus,(Roman mythology) god of woods and fields and flocks; Pan is the Greek counterpart
+16353,Sylvester_II Gerbert,French pope from 999 to 1003 who was noted for his great learning (945-1003)
+16354,Sylviidae family_Sylviidae,in some classifications considered a subfamily (Sylviinae) of the family Muscicapidae: Old World (true) warblers; American kinglets and gnatcatchers
+16355,Sylviinae subfamily_Sylviinae,alternative classification for the Old World warblers
+16356,Sylvilagus genus_Sylvilagus,North American rabbits
+16357,Symbion_pandora,only known species of Cycliophora; lives symbiotically attached to a lobster's lip by an adhesive disk and feeding by means of a hairy mouth ring; its complex life cycle includes asexual and sexual phases
+16358,Symonds John_Addington_Symonds,English writer (1840-1893)
+16359,Symons Arthur_Symons,English poet (1865-1945)
+16360,Symphalangus genus_Symphalangus,used in some classifications for the siamangs
+16361,Symphoricarpos genus_Symphoricarpos,deciduous shrubs of North America and Central America and China
+16362,Symphyla class_Symphyla,small class of minute arthropods; unimportant except for the garden centipede
+16363,Symphytum genus_Symphytum,comfrey
+16364,Symplocaceae family_Symplocaceae sweetleaf_family,a dicotyledonous family of order Ebenales
+16365,Symplocarpus genus_Symplocarpus,one species: skunk cabbage
+16366,Symplocus genus_Symplocus,type and sole genus of Symplocaceae including sweetleaf
+16367,Synagrops genus_Synagrops,a genus of Serranidae
+16368,Synanceja genus_Synanceja,stonefishes
+16369,Synapsida subclass_Synapsida,extinct reptiles of the Permian to Jurassic considered ancestral to mammals
+16370,Synaptomys genus_Synaptomys,bog lemmings
+16371,Synchytriaceae family_Synchytriaceae,a fungus family of order Chytridiales
+16372,Synchytrium genus_Synchytrium,simple parasitic fungi including pond scum parasites
+16373,Synentognathi order_Synentognathi,order of fishes having spineless fins; needlefishes; sauries; flying fishes; halfbeaks
+16374,Synercus genus_Synercus tribe_synercus,Cape buffalo
+16375,Synge J._M._Synge John_Millington_Synge Edmund_John_Millington_Synge,Irish poet and playwright whose plays are based on rural Irish life (1871-1909)
+16376,Syngnathidae family_Syngnathidae,pipefishes
+16377,Syngnathus genus_Syngnathus,type genus of the family Syngnathidae
+16378,Syngonium genus_Syngonium,epiphytic or terrestrial climbing shrubs of Central and South America; used as ornamental houseplants for their velvety foliage
+16379,Synodontidae family_Synodontidae,soft-finned bottom-dwelling fishes
+16380,Synoptic_Gospels Synoptics,the first three Gospels which describe events in Christ's life from a similar point of view
+16381,Syracuse,a city in central New York
+16382,Syracuse Siracusa,a city in southeastern Sicily that was founded by Corinthians in the 8th century BC
+16383,Syracuse siege_of_Syracuse,the Roman siege of Syracuse (214-212 BC) was eventually won by the Romans who sacked the city (killing Archimedes)
+16384,Syracuse siege_of_Syracuse,the Athenian siege of Syracuse (415-413 BC) was eventually won by Syracuse
+16385,Syria Syrian_Arab_Republic,an Asian republic in the Middle East at the east end of the Mediterranean; site of some of the world's most ancient centers of civilization
+16386,Syrian,a native or inhabitant of Syria
+16387,Syrian_Desert,a desert of northern Arabia occupying western Iraq, southern Syria, eastern Jordan, and northern Saudi Arabia
+16388,Syrian_bear Ursus_arctos_syriacus,yellowish-grey Syrian brown bear
+16389,Syrian_monetary_unit,monetary unit in Syria
+16390,Syrian_pound pound,the basic unit of money in Syria; equal to 100 piasters
+16391,Syringa genus_Syringa,genus of Old World shrubs or low trees having fragrant flowers in showy panicles: lilacs
+16392,Syrrhaptes genus_Syrrhaptes,a genus of Pteroclididae
+16393,Systeme_International_d'Unites Systeme_International SI_system SI SI_unit International_System_of_Units International_System,a complete metric system of units of measurement for scientists; fundamental quantities are length (meter) and mass (kilogram) and time (second) and electric current (ampere) and temperature (kelvin) and amount of matter (mole) and luminous intensity (candela); "Today the United States is the only country in the world not totally committed to the Systeme International d'Unites"
+16394,Syzygium genus_Syzygium,a tropical evergreen tree of the myrtle family native to the East Indies but cultivated elsewhere
+16395,Szechwan Sichuan Szechuan Szechwan_province,a populous province of south central China
+16396,Szell George_Szell,United States conductor (born in Hungary) (1897-1970)
+16397,Szent-Gyorgyi Albert_Szent-Gyorgyi Albert_von_Szent-Gyorgyi,United States biochemist (born in Hungary) who was the first to isolate vitamin C (1893-1986)
+16398,Szilard Leo_Szilard,United States physicist and molecular biologist who helped develop the first atom bomb and later opposed the use of all nuclear weapons (1898-1964)
+16399,T t,the 20th letter of the Roman alphabet
+16400,T-bar_lift T-bar Alpine_lift,a surface lift where riders hold a bar and are pulled up the hill on their skis
+16401,T-bone_steak,small steak from the thin end of the short loin containing a T-shaped bone and small piece of tenderloin
+16402,T-junction,a junction where two roads or pipes etc. meet to form a T
+16403,T-man,a special law-enforcement agent of the United States Treasury
+16404,T-network,a circuit formed by two equal series circuits with a shunt between them
+16405,T-square,a square used by draftsmen to draw parallel lines
+16406,TNT trinitrotoluene,explosive consisting of a yellow crystalline compound that is a flammable toxic derivative of toluene
+16407,TV_dinner,a meal that is prepared in advance and frozen; can be heated and served
+16408,T_cell T_lymphocyte,a small lymphocyte developed in the thymus; it orchestrates the immune system's response to infected or malignant cells
+16409,Ta'ziyeh,(Islam) a form of Iranian musical pageant that is the theatrical expression of religious passion; based on the Battle of Kerbala and performed annually (in Farsi)
+16410,Tabanidae family_Tabanidae,horseflies
+16411,Tabasco,a Mexican state on the Gulf of Campeche
+16412,Tabasco Tabasco_sauce,very spicy sauce (trade name Tabasco) made from fully-aged red peppers
+16413,Tabernacle,(Judaism) a portable sanctuary in which the Jews carried the Ark of the Covenant on their exodus
+16414,Tabernacle Mormon_Tabernacle,the Mormon temple
+16415,Tabernaemontana genus_Tabernaemontana,evergreen tropical trees and shrubs with milky sap
+16416,Tabora,a city in western Tanzania
+16417,Tabriz,an ancient city in northwestern Iran; known for hot springs
+16418,Tabuk,a city in northwestern Saudi Arabia
+16419,Tacca genus_Tacca,genus of tropical plants with creeping rootstocks and small umbellate flowers
+16420,Taccaceae family_Taccaceae,small family of tropical herbs
+16421,Tachinidae family_Tachinidae,parasites on other insects
+16422,Tachyglossidae family_Tachyglossidae,echidnas
+16423,Tachyglossus genus_Tachyglossus,type genus of the family Tachyglossidae
+16424,Tachypleus genus_Tachypleus,a genus of Limulidae
+16425,Tacitus Publius_Cornelius_Tacitus Gaius_Cornelius_Tacitus,Roman historian who wrote major works on the history of the Roman Empire (56-120)
+16426,Tacoma,a city in west central Washington on an arm of Puget Sound to the south of Seattle
+16427,Tacoma_Narrows_Bridge,a suspension bridge across Puget Sound at Tacoma
+16428,Taconic_Mountains,a range of the Appalachian Mountains along the eastern border of New York with Connecticut, Massachusetts, and Vermont
+16429,Tadarida genus_Tadarida,freetail bats
+16430,Tadorna genus_Tadorna,sheldrakes
+16431,Taegu Tegu,a city in southeastern South Korea
+16432,Taeniidae family_Taeniidae,a family of Cestoda
+16433,Taft Lorado_Taft,United States sculptor (1860-1936)
+16434,Taft William_Howard_Taft President_Taft,27th President of the United States and later chief justice of the United States Supreme Court (1857-1930)
+16435,Tagalog,a member of a people native to the Philippines chiefly inhabiting central Luzon around and including Manila
+16436,Tagalog,the language of the Tagalog on which Filipino is based
+16437,Tageteste genus_Tagetes,marigolds
+16438,Tagore Rabindranath_Tagore Sir_Rabindranath_Tagore,Indian writer and philosopher whose poetry (based on traditional Hindu themes) pioneered the use of colloquial Bengali (1861-1941)
+16439,Tagus Tagus_River,a European river; flows into the North Atlantic
+16440,Tahiti,an island in the south Pacific; the most important island in French Polynesia; made famous by Robert Louis Stevenson and Paul Gauguin
+16441,Tahitian,a native or inhabitant of Tahiti
+16442,Tahitian,the Oceanic language spoken on Tahiti
+16443,Tai,the most widespread and best known of the Kadai family of languages
+16444,Tai_Dam Black_Tai,a branch of the Tai languages
+16445,Tai_Long Shan,a branch of the Tai languages
+16446,Tai_Lue Xishuangbanna_Dai,a branch of the Tai languages
+16447,Tai_Nuea Chinese_Shan Dehong_Dai,a branch of the Tai languages
+16448,Tai_Yuan Kam_Muang,a branch of the Tai languages
+16449,Taichung,a city in Taiwan
+16450,Taif,a city in western Saudi Arabia to the east of Mecca
+16451,Taimyr_Peninsula Taymyr_Peninsula,a peninsula in northern Siberia
+16452,Taipei Taipeh capital_of_Taiwan,the capital of Nationalist China; located in northern Taiwan
+16453,Taiwan China Nationalist_China Republic_of_China,a government on the island of Taiwan established in 1949 by Chiang Kai-shek after the conquest of mainland China by the Communists led by Mao Zedong
+16454,Taiwan Formosa,an island in southeastern Asia 100 miles off the coast of mainland China in the South China Sea
+16455,Taiwan_dollar,the basic unit of money in Taiwan
+16456,Taiwanese,a native or inhabitant of Taiwan
+16457,Taiyuan,an ancient city in northeastern China noted for coal mining and steel production
+16458,Taj_Mahal,beautiful mausoleum at Agra built by the Mogul emperor Shah Jahan (completed in 1649) in memory of his favorite wife
+16459,Tajik Tadzhik,a native or inhabitant of Tajikistan and neighboring areas of Uzbekistan and Afghanistan and China
+16460,Tajik Tadzhik,an ethnic group (mostly Moslem) living in Tajikistan and neighboring areas of Uzbekistan and Afghanistan and China
+16461,Tajiki Tajik Tadzhik,the Iranian language of the Tajik that is closely related to Farsi; spoken in Iran and Tajikistan
+16462,Tajikistan Republic_of_Tajikistan Tadzhikistan Tadzhik Tadjik Tajik,a landlocked mountainous republic in southeast central Asia to the north of Afghanistan; formerly an Asian soviet
+16463,Tajikistani_monetary_unit,monetary unit in Tajikistan
+16464,Takakkaw,a waterfall in southeastern British Columbia; the highest waterfall in Canada (1250 feet high)
+16465,Takayasu's_arteritis pulseless_disease,disorder characterized by the absence of a pulse in both arms and in the carotid arteries
+16466,Takelma,a member of a North American Indian people of southwestern Oregon
+16467,Takilman Takelma,a Penutian language spoken by the Takelma
+16468,Taklimakan_Desert Taklamakan_Desert,a desert in western China
+16469,Talbot Fox_Talbot William_Henry_Fox_Talbot,English inventor and pioneer in photography who published the first book illustrated with photographs (1800-1877)
+16470,Taliban Taleban,a fundamentalist Islamic militia; in 1995 the Taliban militia took over Afghanistan and in 1996 took Kabul and set up an Islamic government; "the Taliban enforced a strict Muslim code of behavior"
+16471,Talinum genus_Talinum,genus of mainly American more-or-less succulent herbs
+16472,Tallahassee capital_of_Florida,capital of the state of Florida; located in northern Florida
+16473,Tallapoosa Tallapoosa_River,river that rises in northwestern Georgia and flows southwest through central Alabama to join the Coosa River near Montgomery and form the Alabama River
+16474,Tallchief Maria_Tallchief,United States ballerina who promoted American ballet through tours and television appearances (born in 1925)
+16475,Talleyrand Charles_Maurice_de_Talleyrand,French statesman (1754-1838)
+16476,Tallinn Tallin capital_of_Estonia,a port city on the Gulf of Finland that is the capital and largest city of Estonia
+16477,Tallis Thomas_Tallis,English organist and composer of church and secular music; was granted a monopoly in music printing with William Byrd (1505-1585)
+16478,Talmud,the collection of ancient rabbinic writings on Jewish law and tradition (the Mishna and the Gemara) that constitute the basis of religious authority in Orthodox Judaism
+16479,Talmudic_literature,(Judaism) ancient rabbinical writings
+16480,Talpidae family_Talpidae,moles
+16481,Tamale,a city in northern Ghana
+16482,Tamaricaceae family_Tamaricaceae tamarisk_family,family of desert shrubs and trees (mostly halophytes and xerophytes)
+16483,Tamarindus genus_Tamarindus,widely cultivated tropical trees originally of Africa
+16484,Tamarix genus_Tamarix,genus of deciduous shrubs or small trees of eastern Mediterranean regions and tropical Asia
+16485,Tamerlane Tamburlaine Timur Timur_Lenk,Mongolian ruler of Samarkand who led his nomadic hordes to conquer an area from Turkey to Mongolia (1336-1405)
+16486,Tamias genus_Tamias,chipmunks of eastern North America
+16487,Tamiasciurus genus_Tamiasciurus,American red squirrels
+16488,Tamil,a member of the mixed Dravidian and Caucasian people of southern India and Sri Lanka
+16489,Tamil,the Dravidian language spoken since prehistoric times by the Tamil in southern India and Sri Lanka
+16490,Tamil_Nadu Madras,a state in southeastern India on the Bay of Bengal (south of Andhra Pradesh); formerly Madras
+16491,Tamm Igor_Tamm Igor_Yevgeneevich_Tamm,Russian physicist (1895-1971)
+16492,Tammany_Hall Tammany_Society Tammany,a political organization within the Democratic Party in New York City (late 1800's and early 1900's) seeking political control by corruption and bossism
+16493,Tammuz Thammuz,the tenth month of the civil year; the fourth month of the ecclesiastic year (in June and July)
+16494,Tampa,a resort city in western Florida; located on Tampa Bay on the Gulf of Mexico
+16495,Tampa_Bay,an arm of the Gulf of Mexico in west central Florida
+16496,Tampax,tampon used to absorb menstrual flow
+16497,Tampere Tammerfors,an industrial city in south central Finland
+16498,Tampico,a port city in eastern Mexico
+16499,Tamus genus_Tamus,a genus of tuberous vines of the family Dioscoreaceae; has twining stems and heart-shaped leaves and axillary racemes
+16500,Tanacetum genus_Tanacetum,a large genus of plants resembling chrysanthemums; comprises some plants often included in other genera especially genus Chrysanthemum
+16501,Tanakh Tanach Hebrew_Scripture,the Jewish scriptures which consist of three divisions--the Torah and the Prophets and the Writings
+16502,Tancred,Norman leader in the First Crusade who played an important role in the capture of Jerusalem (1078-1112)
+16503,Tandy Jessica_Tandy,United States actress (born in England) who made many stage appearances, often with her husband Hume Cronyn (1909-1994)
+16504,Taney Roger_Taney Roger_Brooke_Taney,United States jurist who served as chief justice of the United States Supreme Court; remembered for his ruling that slaves and their descendants have no rights as citizens (1777-1864)
+16505,Tang Tang_dynasty,the imperial dynasty of China from 618 to 907
+16506,Tanga,a port city in northeastern Tanzania on the Indian Ocean
+16507,Tanganyika,a former state in East Africa; united with Zanzibar in 1964 to form Tanzania
+16508,Tange Kenzo_Tange,Japanese architect (born in 1913)
+16509,Tangier Tangiers,a city of northern Morocco at the west end of the Strait of Gibraltar; "the first tangerines were shipped from Tangier to Europe in 1841"
+16510,Tangier_pea Tangier_peavine Lalthyrus_tingitanus,North African annual resembling the sweet pea having showy but odorless flowers
+16511,Tangshan,an industrial city of northeastern China in Hebei province
+16512,Tanguy Yves_Tanguy,United States surrealist painter (born in France) (1900-1955)
+16513,Tannenberg battle_of_Tannenberg,a battle in World War I (1914); decisive German victory over the Russians
+16514,Tanoan Tanoan_language,a family of North American Indian language spoken in southwestern United States
+16515,Tantalus,(Greek mythology) a wicked king and son of Zeus; condemned in Hades to stand in water that receded when he tried to drink and beneath fruit that receded when he reached for it
+16516,Tantilla genus_Tantilla,black-headed snakes
+16517,Tantra Tantrism,doctrine of enlightenment as the realization of the oneness of one's self and the visible world; combines elements of Hinduism and paganism including magical and mystical elements like mantras and mudras and erotic rites; especially influential in Tibet
+16518,Tantrism,movement within Buddhism combining elements of Hinduism and paganism
+16519,Tantrist,an adherent of Tantrism
+16520,Tanzania United_Republic_of_Tanzania,a republic in eastern Africa
+16521,Tanzanian,a native or inhabitant of Tanzania
+16522,Tanzanian_monetary_unit,monetary unit in Tanzania
+16523,Tanzanian_shilling shilling,the basic unit of money in Tanzania; equal to 100 cents
+16524,Tao,the ultimate principle of the universe
+16525,Taoism,a Chinese sect claiming to follow the teaching of Lao-tzu but incorporating pantheism and sorcery in addition to Taoism
+16526,Taoism,religion adhering to the teaching of Lao-tzu
+16527,Taoism Daoism,philosophical system developed by Lao-tzu and Chuang-tzu advocating a simple honest life and noninterference with the course of natural events
+16528,Taoism Hsuan_Chiao,popular Chinese philosophical system based in teachings of Lao-tzu but characterized by a pantheism of many gods and the practices of alchemy and divination and magic
+16529,Taoist Tao,an adherent of any branch of Taoism
+16530,Taoist_Trinity,the three pure ones; the three chief gods of Taoism
+16531,Taos,a member of the Pueblo people living in northern New Mexico
+16532,Taos,an artist colony in northern New Mexico
+16533,Tapiridae family_Tapiridae,tapirs and extinct related forms
+16534,Tapirus genus_Tapirus,type genus of the Tapiridae
+16535,Tappan Arthur_Tappan,United States abolitionist (1786-1865)
+16536,Tappan_Zee_Bridge,a cantilever bridge across the Hudson River
+16537,Tara,a village in eastern Ireland (northwest of Dublin); seat of Irish kings until 6th century
+16538,Tarabulus Tripoli Tarabulus_Ash-Sham Trablous,a port city and commercial center in northwestern Lebanon on the Mediterranean Sea
+16539,Taracahitian,a member of a group of peoples of Mexico
+16540,Tarahumara,a member of the Taracahitian people of north central Mexico
+16541,Tarantino Quentin_Tarantino Quentin_Jerome_Tarantino,United States filmmaker (born in 1963)
+16542,Tarawa Bairiki,national capital of Kiribati
+16543,Tarawa Makin Tarawa-Makin,battles in World War II in the Pacific (November 1943); United States Marines took the islands from the Japanese after bitter fighting
+16544,Taraxacum genus_Taraxacum,an asterid dicot genus of the family Compositae including dandelions
+16545,Tarbell Ida_Tarbell Ida_M._Tarbell Ida_Minerva_Tarbell,United States writer remembered for her muckraking investigations into industries in the early 20th century (1857-1944)
+16546,Tardigrada class_Tardigrada,in some classifications considered a separate phylum: microscopic arachnid-like invertebrates living in water or damp moss having 4 pairs of legs and instead of a mouth a pair of stylets or needlelike piercing organs connected with the pharynx
+16547,Tareekh_e_Kasas Movement_for_Revenge,an organization of Muslims in India who killed Hindus in September 2002; believed to have ties with Muslim terrorists in Pakistan
+16548,Taricha genus_Taricha,Pacific newts
+16549,Tarkovsky Andrei_Tarkovsky Andrei_Arsenevich_Tarkovsky,Russian filmmaker (1932-1986)
+16550,Tarquin Tarquin_the_Proud Tarquinius Tarquinius_Superbus Lucius_Tarquinius_Superbus,according to legend, the seventh and last Etruscan king of Rome who was expelled for his cruelty (reigned from 534 to 510 BC)
+16551,Tarrietia genus_Tarrietia,small genus of east Asian and Australian timber trees
+16552,Tarsiidae family_Tarsiidae,coextensive with the genus Tarsius: tarsiers
+16553,Tarsioidea suborder_Tarsioidea,in some classifications assigned to the suborder Prosimii
+16554,Tarsius genus_Tarsius,type and sole genus of the family Tarsiidae
+16555,Tarsius_glis,a variety of tarsier
+16556,Tarsius_syrichta,a variety of tarsier
+16557,Tartary Tatary,the vast geographical region of Europe and Asia that was controlled by the Mongols in the 13th and 14th centuries; "under Genghis Khan Tartary extended as far east as the Pacific Ocean"
+16558,Tartu,a city of southeastern Estonia that was a member of the Hanseatic League
+16559,Tartuffe Tartufe,a hypocrite who pretends to religious piety (after the protagonist in a play by Moliere)
+16560,Tarzan,(sometimes used ironically) a man of great strength and agility (after the hero of a series of novels by Edgar Rice Burroughs)
+16561,Tarzan Tarzan_of_the_Apes,a man raised by apes who was the hero of a series of novels by Edgar Rice Burroughs
+16562,Tashkent Taskent capital_of_Uzbek,the capital of Uzbekistan
+16563,Tashmit Tashmitum,consort of Nabu
+16564,Tasman Abel_Tasman Abel_Janszoon_Tasman,Dutch navigator who was the first European to discover Tasmania and New Zealand (1603-1659)
+16565,Tasman_Sea,an arm of the southern Pacific Ocean between southeastern Australia and New Zealand
+16566,Tasman_dwarf_pine Microstrobos_niphophilus,small shrub or Tasmania having short stiff branches
+16567,Tasmania,an Australian state on the island of Tasmania
+16568,Tasmania,an island off the southeastern coast of Australia
+16569,Tasmanian_devil ursine_dasyure Sarcophilus_hariisi,small ferocious carnivorous marsupial having a mostly black coat and long tail
+16570,Tasso Torquato_Tasso,Italian poet who wrote an epic poem about the capture of Jerusalem during the First Crusade (1544-1595)
+16571,Tatahumara,the Uto-Aztecan language of the Tatahumara
+16572,Tatar,a member of the Turkic-speaking people living from the Volga to the Ural Mountains (the name has been attributed to many other groups)
+16573,Tatar,the Turkic language spoken by the Tatar living from the Volga to the Ural Mountains
+16574,Tatar Tartar Mongol_Tatar,a member of the Mongolian people of central Asia who invaded Russia in the 13th century
+16575,Tate Allen_Tate John_Orley_Allen_Tate,United States poet and critic (1899-1979)
+16576,Tati Jacques_Tati Jacques_Tatischeff,French filmmaker (1908-1982)
+16577,Tatum Art_Tatum Arthur_Tatum,United States jazz pianist who was almost completely blind; his innovations influenced many other jazz musicians (1910-1956)
+16578,Tatum Edward_Lawrie_Tatum,United States biochemist who discovered how genes act by regulating definite chemical events (1909-1975)
+16579,Taurotragus genus_Taurotragus,African antelopes: elands
+16580,Taurus,a zodiacal constellation in the northern hemisphere near Orion; between Aries and Gemini
+16581,Taurus Bull,(astrology) a person who is born while the sun is in Taurus
+16582,Taurus Taurus_the_Bull Bull,the second sign of the zodiac; the sun is in this sign from about April 20 to May 20
+16583,Tautoga genus_Tautoga,tautogs
+16584,Tautogolabrus genus_Tautogolabrus,a genus of Labridae
+16585,Tawney Richard_Henry_Tawney,English economist remembered for his studies of the development of capitalism (1880-1962)
+16586,Taxaceae family_Taxaceae yew_family,sometimes classified as member of order Taxales
+16587,Taxales order_Taxales,coextensive with the family Taxaceae: yews
+16588,Taxidea genus_Taxidea,in some classifications considered a genus of subfamily Melinae
+16589,Taxodiaceae subfamily_Taxodiaceae redwood_family,coniferous trees; traditionally considered an independent family though recently included in Cupressaceae in some classification systems
+16590,Taxodium genus_Taxodium,bald cypress; swamp cypress
+16591,Taxopsida class_Taxopsida Taxophytina subdivision_Taxophytina,yews: in some systems classified as a class (Taxopsida) and in others as a subdivision (Taxophytina) used in some classifications for one of five subdivisions of Gymnospermophyta
+16592,Taxus genus_Taxus,yews
+16593,Tay,a branch of the Tai languages
+16594,Tay-Sachs_disease Tay-Sachs Sachs_disease infantile_amaurotic_idiocy,a hereditary disorder of lipid metabolism occurring most frequently in individuals of Jewish descent in eastern Europe; accumulation of lipids in nervous tissue results in death in early childhood
+16595,Tayalic Atayalic,a language spoken by a Malaysian people on Formosa
+16596,Tayassu genus_Tayassu genus_Pecari,type genus of the Tayassuidae
+16597,Tayassuidae family_Tayassuidae,peccaries
+16598,Taylor Deems_Taylor Joseph_Deems_Taylor,United States composer and music critic (1885-1966)
+16599,Taylor Elizabeth_Taylor,United States film actress (born in England) who was a childhood star; as an adult she often co-starred with Richard Burton (born in 1932)
+16600,Taylor Zachary_Taylor President_Taylor,12th President of the United States; died in office (1784-1850)
+16601,Tazir_crime,(Islam) minor crimes committed by Muslims; crimes that are not mentioned in the Koran so judges are free to punish the offender in any appropriate way; "in some Islamic nations Tazir crimes are set by legislation"
+16602,Tbilisi Tiflis capital_of_Georgia,the capital and largest city of Georgia on the Kura river
+16603,Tchaikovsky Peter_Tchaikovsky Peter_Ilich_Tchaikovsky Pyotr_Tchaikovsky Pyotr_Ilych_Tchaikovsky,important Russian composer whose works are noted for their expressive melodies (1840-1893)
+16604,Te_Deum,an ancient liturgical hymn
+16605,Te_Kanawa Dame_Kiri_Te_Kanawa Dame_Kiri_Janette_Te_Kanawa,New Zealand operatic soprano (born in 1944)
+16606,Teach Edward_Teach Thatch Edward_Thatch Blackbeard,an English pirate who operated in the Caribbean and off the Atlantic coast of North America (died in 1718)
+16607,Teamsters_Union,an industrial union of truck drivers and chauffeurs and warehouse workers
+16608,Teapot_Dome Teapot_Dome_scandal,a government scandal involving a former United States Navy oil reserve in Wyoming that was secretly leased to a private oil company in 1921; became symbolic of the scandals of the Harding administration
+16609,Teasdale Sara_Teasdale,United States poet (1884-1933)
+16610,Tebaldi Renata_Tebaldi,Italian operatic soprano (born in 1922)
+16611,Tebet Tevet,the fourth month of the civil year; the tenth month of the ecclesiastical year (in December and January)
+16612,Technology_Administration,an agency in the Department of Commerce that works with United States industries to promote competitiveness and maximize the impact of technology on economic growth
+16613,Tecophilaeacea family_Tecophilaeacea,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+16614,Tectaria genus_Tectaria,terrestrial or epilithic ferns of tropical rain forests
+16615,Tectona genus_Tectona,small genus of southeastern Asian tropics: teak
+16616,Tecumseh Tecumtha,a famous chief of the Shawnee who tried to unite Indian tribes against the increasing white settlement (1768-1813)
+16617,Ted Teddy_boy,a tough youth of 1950's and 1960's wearing Edwardian style clothes
+16618,Teflon polytetrafluoroethylene,a material used to coat cooking utensils and in industrial applications where sticking is to be avoided
+16619,Tegucigalpa Honduran_capital,the capital and largest city of Honduras
+16620,Teheran Tehran capital_of_Iran Iranian_capital,the capital and largest city of Iran; located in northern Iran
+16621,Teiidae family_Teiidae,whiptails; etc.
+16622,Teilhard_de_Chardin Pierre_Teilhard_de_Chardin,French paleontologist and philosopher (1881-1955)
+16623,Tel_Aviv Tel_Aviv-Yalo Tel_Aviv-Jaffa,the largest city and financial center of Israel; located in western Israel on the Mediterranean
+16624,Telanthera genus_Telanthera,used in former classifications systems; now included in genus Alternanthera
+16625,Telemann Georg_Philipp_Telemann,German baroque composer (1681-1767)
+16626,Teleostei subclass_Teleostei,large diverse group of bony fishes; includes most living species
+16627,Teleprompter,a prompter for television performers
+16628,Telescopium,a small constellation in the southern hemisphere near Ara
+16629,Tell William_Tell,a Swiss patriot who lived in the early 14th century and who was renowned for his skill as an archer; according to legend an Austrian governor compelled him to shoot an apple from his son's head with his crossbow (which he did successfully without mishap)
+16630,Teller Edward_Teller,United States physicist (born in Hungary) who worked on the first atom bomb and the first hydrogen bomb (1908-2003)
+16631,Tellima genus_Tellima,genus of hardy perennials with palmately lobed leaves and long racemes of small nodding five-petaled flowers; western North America
+16632,Tellus,(Roman mythology) goddess of the earth; protector of marriage and fertility; identified with Greek Gaea
+16633,Telopea genus_Telopea,Australian evergreen shrubs: waratahs
+16634,Telosporidia subclass_Telosporidia,parasitic sporozoans that form spores containing one or more infective sporozoites
+16635,Telugu,a member of the people in southeastern India (Andhra Pradesh) who speak the Telugu language
+16636,Telugu,a Dravidian language spoken by the Telugu in southeastern India
+16637,Temnospondyli order_Temnospondyli,formerly a suborder of Stegocephalia; large Carboniferous and Permian amphibians having vertebrae in which some elements remain separate
+16638,Temperate_Zone,the part of the Earth's surface between the Arctic Circle and the Tropic of Cancer or between the Antarctic Circle and the Tropic of Capricorn; characterized by temperate climate
+16639,Temple_of_Apollo Oracle_of_Apollo Delphic_oracle oracle_of_Delphi,(Greek mythology) the oracle at Delphi where a priestess supposedly delivered messages from Apollo to those who sought advice; the messages were usually obscure or ambiguous
+16640,Temple_of_Artemis,a large temple at Ephesus that was said to be one of the seven wonders of the ancient world
+16641,Temple_of_Jerusalem Temple_of_Solomon,any of three successive temples in Jerusalem that served as the primary center for Jewish worship; the first temple contained the Ark of the Covenant and was built by Solomon in the 10th century BC and destroyed by Nebuchadnezzar in 586 BC; the second was built in 515 BC and the third was an enlargement by Herod the Great in 20 BC that was destroyed by the Romans during a Jewish revolt in AD 70; all that remains is the Wailing Wall
+16642,Templetonia genus_Templetonia,genus of Australian shrubs or subshrubs: coral bush
+16643,Temuco,a city in central Chile to the south of Concepcion
+16644,Tenebrionidae family_Tenebrionidae,a family of arthropods including darkling beetles and mealworms
+16645,Tenerife,a Spanish island in the Atlantic off the northwestern coast of Africa; the largest of the Canary Islands
+16646,Tennessean Volunteer,a native or resident of Tennessee
+16647,Tennessee Tennessee_River,a river formed by the confluence of two other rivers near Knoxville; it follows a U-shaped course to become a tributary of the Ohio River in western Kentucky
+16648,Tennessee Volunteer_State TN Tenn.,a state in east central United States
+16649,Tennessee_walker Tennessee_walking_horse Walking_horse Plantation_walking_horse,a horse marked by stamina and trained to move at a fast running walk
+16650,Tenniel Sir_John_Tenniel,English cartoonist (1820-1914)
+16651,Tennyson Alfred_Tennyson First_Baron_Tennyson Alfred_Lord_Tennyson,Englishman and Victorian poet (1809-1892)
+16652,Tenoretic,trade name for an antihypertensive drug consisting of a fixed combination of atenolol and a diuretic
+16653,Tenrecidae family_Tenrecidae,tenrecs and extinct related forms
+16654,Tentaculata class_Tentaculata,ctenophores have retractile tentacles
+16655,Tenthredinidae family_Tenthredinidae,sawflies
+16656,Tenzing_Norgay,Sherpa mountaineer guide who with Sir Edmund Hillary was one of the first to attain the summit of Mount Everest (1914-1986)
+16657,Tephrosia genus_Tephrosia,genus of tropical and subtropical herbs or shrubs: hoary peas
+16658,Tepic,a city in west central Mexico
+16659,Tera Pidlimdi Yamaltu,a three-tone Chadic language
+16660,Terebella genus_Terebella,type genus of Terebellidae; tube-forming marine polychete worms with many filamentous tentacles
+16661,Terebellidae family_Terebellidae,marine burrowing or tube-forming polychete worms usually having long thick bodies
+16662,Teredinidae family_Teredinidae,shipworms
+16663,Terence Publius_Terentius_Afer,dramatist of ancient Rome (born in Greece) whose comedies were based on works by Menander (190?-159 BC)
+16664,Terengganu,sultanate and one of the 13 states of the Federation of Malaysia
+16665,Teresa Mother_Teresa Theresa Mother_Theresa Agnes_Gonxha_Bojaxhiu,Indian nun and missionary in the Roman Catholic Church (born of Albanian parents in what is now Macedonia); dedicated to helping the poor in India (1910-1997)
+16666,Teresa_of_Avila Saint_Teresa_of_Avila,Spanish mystic and religious reformer; author of religious classics and a Christian saint (1515-1582)
+16667,Tereshkova Valentina_Tereshkova Valentina_Vladmirovna_Tereshkova,Soviet cosmonaut who was the first woman in space (born in 1937)
+16668,Termes genus_Termes,type genus of the Termitidae
+16669,Termitidae family_Termitidae,termites
+16670,Terpsichore,(Greek mythology) the Muse of the dance and of choral song
+16671,Terrapene genus_Terrapene,box turtles
+16672,Territorial_Army,British unit of nonprofessional soldiers organized for the defense of Great Britain
+16673,Terry Dame_Ellen_Terry Dame_Alice_Ellen_Terry,English actress (1847-1928)
+16674,Tertiary Tertiary_period,from 63 million to 2 million years ago
+16675,Tertry battle_of_Tertry,a battle in France in 687 among the descendants of Clovis
+16676,Tertullian Quintus_Septimius_Florens_Tertullianus,Carthaginian theologian whose writing influenced early Christian theology (160-230)
+16677,Tesla Nikola_Tesla,United States electrical engineer and inventor (born in Croatia but of Serbian descent) who discovered the principles of alternating currents and developed the first alternating-current induction motor and the Tesla coil and several forms of oscillators (1856-1943)
+16678,Tesla_coil,a step-up transformer with an air core; used to produce high voltages at high frequencies
+16679,Testacea order_Testacea,testacean rhizopods
+16680,Testament,either of the two main parts of the Christian Bible
+16681,Testudinidae family_Testudinidae,land tortoises
+16682,Testudo genus_Testudo,type genus of the Testudinidae
+16683,Tet,the New Year in Vietnam; observed for three days after the first full moon after January 20th
+16684,Tethys,(Greek mythology) a Titaness and sea goddess; wife of Oceanus
+16685,Teton Lakota Teton_Sioux Teton_Dakota,a member of the large western branch of Sioux people which was made up of several groups that lived on the plains
+16686,Teton_Range,a mountain range in northwest Wyoming; contains the Grand Teton
+16687,Tetraclinis genus_Tetraclinis,sandarac tree
+16688,Tetragonia genus_Tetragonia,New Zealand spinach
+16689,Tetragonurus genus_Tetragonurus,a genus of Stromateidae
+16690,Tetragrammaton,four Hebrew letters usually transliterated as YHWH (Yahweh) or JHVH (Jehovah) signifying the Hebrew name for God which the Jews regarded as too holy to pronounce
+16691,Tetraneuris genus_Tetraneuris,genus of hairy yellow-flowered plants of the western United States
+16692,Tetranychidae family_Tetranychidae,plant-feeding mites
+16693,Tetrao genus_Tetrao,type genus of the Tetraonidae: capercaillies
+16694,Tetraodontidae family_Tetraodontidae,puffers
+16695,Tetraonidae family_Tetraonidae,grouse
+16696,Tetrapturus genus_Tetrapturus,a genus of Istiophoridae
+16697,Tetrazzini,a pasta dish with cream sauce and mushrooms
+16698,Tettigoniidae family_Tettigoniidae,long-horned grasshoppers; katydids
+16699,Teucrium genus_Teucrium,large widely distributed genus of perennial herbs or shrubs or subshrubs; native to Mediterranean region to western Asia
+16700,Teutoburger_Wald battle_of_Teutoburger_Wald,a battle in 9 AD in which the Germans under Arminius annihilated three Roman Legions
+16701,Teuton,someone (especially a German) who speaks a Germanic language
+16702,Teuton,a member of the ancient Germanic people who migrated from Jutland to southern Gaul and were annihilated by the Romans
+16703,Teutonic_deity,(German mythology) a deity worshipped by the ancient Teutons
+16704,Teutonist,a specialist in the history of the Teutonic people or language (especially with respect to the Teutonic influence on the history of England)
+16705,Tewkesbury battle_of_Tewkesbury,the final battle of the War of the Roses in 1471 in which Edward IV defeated the Lancastrians
+16706,Texan,a native or resident of Texas
+16707,Texarkana,a town in northeast Texas adjacent to Texarkana, Arkansas
+16708,Texarkana,a town in southwest Arkansas on the Texas border adjacent to Texarkana, Texas
+16709,Texas Lone-Star_State TX Tex.,the second largest state; located in southwestern United States on the Gulf of Mexico
+16710,Texas_Independence_Day March_2,Texans celebrate the anniversary of Texas' declaration of independence from Mexico in 1836
+16711,Texas_Ranger Ranger,a member of the Texas state highway patrol; formerly a mounted lawman who maintained order on the frontier
+16712,Texas_bluebonnet Lupinus_texensis,closely resembles Lupinus subcarnosus; southwestern United States (Texas)
+16713,Texas_chachalaca Ortilis_vetula_macalli,of Mexico and Texas
+16714,Texas_fever,an infectious disease of cattle transmitted by the cattle tick
+16715,Texas_horned_lizard Phrynosoma_cornutum,of arid and semiarid open country
+16716,Texas_leaguer,(baseball) a fly ball that falls between and infielder and an outfielder
+16717,Texas_purple_spike Hexalectris_warnockii,orchid with slender nearly leafless reddish-brown stems with loose racemes of reddish-brown flowers; of open brushy woods of southeastern Arizona and central Texas
+16718,Texas_snowbell Texas_snowbells Styrax_texana,styrax of southwestern United States; a threatened species
+16719,Texas_star Lindheimera_texana,Texas annual with coarsely pinnatifid leaves; cultivated for its showy radiate yellow flower heads
+16720,Texas_storksbill Erodium_texanum,of prairies and desert areas of southwestern United States and Mexico
+16721,Texas_toad Bufo_speciosus,nocturnal burrowing toad of mesquite woodland and prairies of the United States southwest
+16722,Texas_tortoise,close relative to the desert tortoise; may be reclassified as a member of genus Xerobates
+16723,Thackeray William_Makepeace_Thackeray,English writer (born in India) (1811-1863)
+16724,Thai Siamese Central_Thai,a branch of the Tai languages
+16725,Thai Tai Siamese,a native or inhabitant of Thailand
+16726,Thai_monetary_unit,monetary unit in Thailand
+16727,Thailand Kingdom_of_Thailand Siam,a country of southeastern Asia that extends southward along the Isthmus of Kra to the Malay Peninsula; "Thailand is the official name of the former Siam"
+16728,Thalarctos genus_Thalarctos,polar bears; in some classifications not a separate genus from Ursus
+16729,Thalassoma genus_Thalassoma,a genus of Labridae
+16730,Thales Thales_of_Miletus,a presocratic Greek philosopher and astronomer (who predicted an eclipse in 585 BC) who was said by Aristotle to be the founder of physical science; he held that all things originated in water (624-546 BC)
+16731,Thalia,(Greek mythology) the Muse of comedy and pastoral poetry
+16732,Thalia,(Greek mythology) one of the three Graces
+16733,Thaliacea class_Thaliacea,small class of free-swimming tunicates; sometimes classified as an order
+16734,Thalictrum genus_Thalictrum,widely distributed genus of perennial herbs: meadow rue
+16735,Thallophyta,used only in former classifications: comprising what is now considered a heterogeneous assemblage of flowerless and seedless organisms: algae; bacteria; fungi; lichens
+16736,Thames River_Thames Thames_River,the longest river in England; flows eastward through London to the North Sea
+16737,Thamnophilus genus_Thamnophilus,a genus of Formicariidae
+16738,Thamnophis genus_Thamnophis,garter snakes
+16739,Thanatos,(Greek mythology) the Greek personification of death; son of Nyx
+16740,Thanksgiving Thanksgiving_Day,fourth Thursday in November in the United States; second Monday in October in Canada; commemorates a feast held in 1621 by the Pilgrims and the Wampanoag
+16741,Thar_Desert Great_Indian_Desert,a desert to the east of the Indus River in northwestern India and southeastern Pakistan
+16742,Tharp Twyla_Tharp,innovative United States dancer and choreographer (born in 1941)
+16743,Thatcher Margaret_Thatcher Margaret_Hilda_Thatcher Baroness_Thatcher_of_Kesteven Iron_Lady,British stateswoman; first woman to serve as Prime Minister (born in 1925)
+16744,Thatcherism,(England) the political policy of Margaret Thatcher
+16745,Thatcherite,an advocate of Thatcherism
+16746,The_Hague 's_Gravenhage Den_Haag,the site of the royal residence and the de facto capital in the western part of the Netherlands; seat of the International Court of Justice
+16747,The_Star-Spangled_Banner,a poem written by Francis Scott Key during the War of 1812 was set to music and adopted by Congress in 1931 as the national anthem of the United States
+16748,Thea Theia,(Greek mythology) the Titaness who was mother of Helios and Selene and Eos in ancient mythology
+16749,Theaceae family_Theaceae tea_family,a family of trees and shrubs of the order Parietales
+16750,Theban,an Egyptian inhabitant of ancient Thebes
+16751,Theban,a Greek inhabitant of ancient Thebes
+16752,Thebes,an ancient Egyptian city on the Nile River that flourished from the 22nd century BC to the 18th century BC; today the archeological remains include many splendid temples and tombs
+16753,Thebes,an ancient Greek city in Boeotia destroyed by Alexander the Great in 336 BC
+16754,Thecodontia order_Thecodontia,extinct terrestrial reptiles having teeth set in sockets; of the late Permian to Triassic
+16755,Thelephoraceae family_Thelephoraceae,fungi having leathery or membranous sporophores
+16756,Thelypteridaceae family_Thelypteridaceae,genera Thelypteris, Phegopteris, and others
+16757,Thelypteris genus_Thelypteris,marsh ferns: in some classification systems considered part of genus Dryopteris in family Dryopteridaceae
+16758,Thematic_Apperception_Test TAT,a projective technique using black-and-white pictures; subjects tell a story about each picture
+16759,Themis,(Greek mythology) the Titaness who was goddess of justice in ancient mythology
+16760,Themistocles,Athenian statesman who persuaded Athens to build a navy and then led it to victory over the Persians (527-460 BC)
+16761,Theobroma genus_Theobroma,cacao plants
+16762,Theodore_Roosevelt_Memorial_National_Park,a national park in North Dakota that includes the site of former President Theodore Roosevelt's ranch
+16763,Theodosius Theodosius_I Theodosius_the_Great Flavius_Theodosius,the last emperor of a united Roman Empire, he took control of the eastern empire and ended the war with the Visigoths; he became a Christian and in 391 banned all forms of pagan worship (346-395)
+16764,Theophrastaceae family_Theophrastaceae,family of mainly tropical American trees and shrubs similar to those of the Myrsinaceae; often included in the Myrsinaceae
+16765,Theophrastus,Greek philosopher who was a student of Aristotle and who succeeded Aristotle as the leader of the Peripatetics (371-287 BC)
+16766,Theraphosidae family_Theraphosidae,large tropical spiders; tarantulas
+16767,Therapsida order_Therapsida,extinct mammal-like reptiles found inhabiting all continents from the mid Permian to late Triassic
+16768,Theravada Theravada_Buddhism,one of two great schools of Buddhist doctrine emphasizing personal salvation through your own efforts; a conservative form of Buddhism that adheres to Pali scriptures and the non-theistic ideal of self purification to nirvana; the dominant religion of Sri Lanka (Ceylon) and Myanmar (Burma) and Thailand and Laos and Cambodia
+16769,Theridiidae family_Theridiidae,a family of comb-footed spiders
+16770,Thermidor,eleventh month of the Revolutionary calendar (July and August); the month of heat
+16771,Thermobia genus_Thermobia,a genus of Lepismatidae
+16772,Thermopsis genus_Thermopsis,genus of American and Asiatic showy rhizomatous herbs: bush peas
+16773,Thermopylae battle_of_Thermopylae,a famous battle in 480 BC; a Greek army under Leonidas was annihilated by the Persians who were trying to conquer Greece
+16774,Theropoda suborder_Theropoda,carnivorous saurischian dinosaurs with short forelimbs; Jurassic and Cretaceous
+16775,Theseus,(Greek mythology) a hero and king of Athens who was noted for his many great deeds: killed Procrustes and the Minotaur and defeated the Amazons and united Attica
+16776,Thespesia genus_Thespesia,a small genus of tropical trees including the portia tree
+16777,Thespis,Greek poet who is said to have originated Greek tragedy (sixth century BC)
+16778,Thessalia Thessaly,a fertile plain on the Aegean Sea in east central Greece; Thessaly was a former region of ancient Greece
+16779,Thessalian,a native or inhabitant of Thessaly
+16780,Thessalonian,a native or inhabitant of Thessalonica
+16781,Thessaloniki Salonika Salonica Thessalonica,a port city in northeastern Greece on an inlet of the Aegean Sea; second largest city of Greece
+16782,Thetis,(Greek mythology) one of the 50 Nereids; mother of Achilles by Peleus
+16783,Thevetia genus_Thevetia,genus of poisonous tropical American evergreen shrubs and trees having entire leaves and large cymose flowers
+16784,Thielavia genus_Thielavia,genus of fungi having spherical brown perithecia and some conidia borne in chains; cause root rot
+16785,Thiobacteriaceae family_Thiobacteriaceae,free-living coccoid to rod-shaped bacteria that derive energy from oxidizing sulfur or sulfur compounds
+16786,Thiosulfil,trade name for a sulfonamide antibacterial
+16787,Third_Crusade,a Crusade from 1189 to 1192 led by Richard I and the king of France that failed because an army torn by dissensions and fighting on foreign soil could not succeed against forces united by religious zeal
+16788,Third_Epistel_of_John III_John,the third New Testament epistle traditionally attributed to Saint John the Apostle
+16789,Third_Lateran_Council,the Lateran Council in 1179 that condemned the heresies of the Albigenses and the Waldenses
+16790,Third_Reich Nazi_Germany,the Nazi dictatorship under Hitler (1933-1945)
+16791,Third_World,underdeveloped and developing countries of Asia and Africa and Latin America collectively
+16792,Thirty_Years'_War,a series of conflicts (1618-1648) between Protestants and Catholics starting in Germany and spreading until France and Denmark and Sweden were opposing the Holy Roman Empire and Spain
+16793,Thlaspi genus_Thlaspi,herbs of temperate regions: pennycress
+16794,Tho,a branch of the Tai languages
+16795,Thomas Dylan_Thomas Dylan_Marlais_Thomas,Welsh poet (1914-1953)
+16796,Thomas Lowell_Thomas Lowell_Jackson_Thomas,a radio broadcast journalist during World War I and World War II noted for his nightly new broadcast (1892-1981)
+16797,Thomas Norman_Thomas Norman_Mattoon_Thomas,United States socialist who was a candidate for president six times (1884-1968)
+16798,Thomas Saint_Thomas St._Thomas doubting_Thomas Thomas_the_doubting_Apostle,the Apostle who would not believe the resurrection of Jesus until he saw Jesus with his own eyes
+16799,Thomas Seth_Thomas,United States clockmaker who introduced mass production (1785-1859)
+16800,Thomism,the comprehensive theological doctrine created by Saint Thomas Aquinas in the 13th century and still taught by the Dominicans
+16801,Thomomys genus_Thomomys,western pocket gophers
+16802,Thompson Benjamin_Thompson Count_Rumford,English physicist (born in America) who studied heat and friction; experiments convinced him that heat is caused by moving particles (1753-1814)
+16803,Thompson Homer_Thompson Homer_A._Thompson Homer_Armstrong_Thompson,United States classical archaeologist (born in Canada) noted for leading the excavation of the Athenian agora (1906-2000)
+16804,Thompson_Seedless,seedless green table grape of California
+16805,Thomson Elihu_Thomson,United States electrical engineer (born in England) who in 1892 formed a company with Thomas Edison (1853-1937)
+16806,Thomson George_Paget_Thomson Sir_George_Paget_Thomson,English physicist (son of Joseph John Thomson) who was a co-discoverer of the diffraction of electrons by crystals (1892-1975)
+16807,Thomson Joseph_John_Thomson Sir_Joseph_John_Thomson,English physicist who experimented with the conduction of electricity through gases and who discovered the electron and determined its charge and mass (1856-1940)
+16808,Thomson Virgil_Thomson Virgil_Garnett_Thomson,United States composer who collaborated with Gertrude Stein (1896-1989)
+16809,Thomson's_gazelle Gazella_thomsoni,East African gazelle; the smallest gazelle
+16810,Thor,(Norse mythology) god of thunder and rain and farming; pictured as wielding a hammer emblematic of the thunderbolt; identified with Teutonic Donar
+16811,Thoreau Henry_David_Thoreau,United States writer and social critic (1817-1862)
+16812,Thorndike Dame_Sybil_Thorndike,English actress (1882-1976)
+16813,Thorndike Edward_Lee_Thorndike,United States educational psychologist (1874-1949)
+16814,Thornton William_Thornton,American architect (1759-1828)
+16815,Thorpe Jim_Thorpe James_Francis_Thorpe,outstanding United States athlete (1888-1953)
+16816,Thorshavn,the administrative center of the Faroe Islands
+16817,Thoth,Egyptian Moon deity with the head of an ibis; god of wisdom and learning and the arts; scribe of the gods
+16818,Thousand_Island_dressing,mayonnaise with chili sauce or catsup and minced olives and peppers and hard-cooked egg
+16819,Thrace,an ancient country and wine producing region in the east of the Balkan Peninsula to the north of the Aegean Sea; colonized by ancient Greeks; later a Roman province; now divided between Bulgaria and Greece and Turkey
+16820,Thracian,an inhabitant of ancient Thrace
+16821,Thracian,a Thraco-Phrygian language spoken by the ancient people of Thrace but extinct by the early Middle Ages
+16822,Thraco-Phrygian,an extinct branch of the Indo-European language family thought by some to be related to Armenian
+16823,Thraupidae family_Thraupidae,tanagers
+16824,Threskiornis genus_Threskiornis,type genus of the Threskiornithidae
+16825,Threskiornithidae family_Threskiornithidae family_Ibidiidae,ibises
+16826,Thrinax genus_Thrinax,small to medium-sized fan palms
+16827,Thripidae family_Thripidae,thrips
+16828,Thryothorus genus_Thryothorus,Carolina wrens
+16829,Thucydides,ancient Greek historian remembered for his history of the Peloponnesian War (460-395 BC)
+16830,Thuja genus_Thuja,red cedar
+16831,Thujopsis genus_Thujopsis,one species; has close similarity to genus Thuja
+16832,Thule,a town in northwestern Greenland; during World War II a United States naval base was built there
+16833,Thule ultima_Thule,the geographical region believed by ancient geographers to be the northernmost land in the inhabited world
+16834,Thunbergia genus_Thunbergia,a genus of herbs or vines of the family Acanthaceae
+16835,Thunder_Bay,a port city in Ontario on Lake Superior
+16836,Thunnus genus_Thunnus,tunas: warm-blooded fishes
+16837,Thurber James_Thurber James_Grover_Thurber,United States humorist and cartoonist who published collections of essays and stories (1894-1961)
+16838,Thuringia,a historical region of southern Germany
+16839,Thursday Th,the fifth day of the week; the fourth working day
+16840,Thylacinus genus_Thylacinus,Tasmanian wolf
+16841,Thylogale genus_Thylogale,pademelons
+16842,Thymelaeaceae family_Thymelaeaceae daphne_family,family of trees and shrubs and herbs having tough bark that are found especially in Australia and tropical Africa
+16843,Thymus genus_Thymus,large genus of Old World mints: thyme
+16844,Thyreophora suborder_Thyreophora thyreophoran,armored dinosaurs: stegosaurs and ankylosaurs
+16845,Thysanocarpus genus_Thysanocarpus,small genus of herbs of upland regions of the Pacific coast of North America
+16846,Thysanoptera order_Thysanoptera,thrips
+16847,Thysanura order_Thysanura,firebrats; silverfish; machilids
+16848,Tiamat,(Akkadian) mother of the gods and consort of Apsu
+16849,Tianjin Tientsin T'ien-ching,a major industrial center in northeastern China on the Grand Canal near the Yellow Sea; 3rd largest city in China
+16850,Tiarella genus_Tiarella,small genus of North American herbs having mostly basal leaves and slender racemes of delicate white flowers
+16851,Tiber Tevere,a river of central Italy; flows through Rome to the Tyrrhenian Sea
+16852,Tiberius Tiberius_Claudius_Nero_Caesar_Augustus,son-in-law of Augustus who became a suspicious tyrannical Emperor of Rome after a brilliant military career (42 BC to AD 37)
+16853,Tibet Thibet Xizang Sitsang,an autonomous region of the Peoples Republic of China; located in the Himalayas
+16854,Tibetan,a native or inhabitant of Tibet
+16855,Tibetan,Himalayish language spoken in Tibet
+16856,Tibetan_mastiff,very large powerful rough-coated dog native to central Asia
+16857,Tibetan_terrier chrysanthemum_dog,breed of medium-sized terriers bred in Tibet resembling Old English sheepdogs with fluffy curled tails
+16858,Tibeto-Burman Tibeto-Burman_language,a branch of the Sino-Tibetan family of languages spoken from Tibet to the Malay Peninsula
+16859,Tibicen genus_Tibicen,harvest flies
+16860,Tichodroma genus_Tichodroma,wall creepers; in some classifications placed in family Sittidae
+16861,Ticino Tessin,an Italian-speaking region of southern Switzerland
+16862,Tidewater Tidewater_region,the coastal plain of the South: eastern parts of Virginia and North Carolina and South Carolina and Georgia
+16863,Tien-pao Heavenly_Jewel,a member of the Taoist Trinity
+16864,Tien_Shan Tyan_Shan,a major mountain range of central Asia; extends 1,500 miles
+16865,Tiepolo Giovanni_Battista_Tiepolo,Italian painter (1696-1770)
+16866,Tierra_del_Fuego,an archipelago off southern South America; separated from the continent by the Strait of Magellan; islands are administered by Chile and by Argentina
+16867,Tietze's_syndrome,syndrome characterized by swelling of rib cartilage (causing pain)
+16868,Tiffany Louis_Comfort_Tiffany,United States artist who developed Tiffany glass (1848-1933)
+16869,Tiffany_glass,a kind of opalescent colored glass that was used in the early 1900s for stained-glass windows and lamps
+16870,Tigris Tigris_River,an Asian river; a tributary of the Euphrates River
+16871,Tijuana,a Mexican city just to the south of San Diego on the Lower California peninsula; popular among American tourists for racetracks and bullfights
+16872,Tilapia genus_Tilapia,a genus of Cichlidae
+16873,Tilden Big_Bill_Tilden William_Tatem_Tilden_Jr.,United States tennis player who dominated men's tennis in the 1920s (1893-1953)
+16874,Tilia genus_Tilia,deciduous trees with smooth usually silver-grey bark of North America and Europe and Asia: lime trees; lindens; basswood
+16875,Tiliaceae family_Tiliaceae linden_family,chiefly trees and shrubs of tropical and temperate regions of especially southeastern Asia and Brazil; genera Tilia, Corchorus, Entelea, Grewia, Sparmannia
+16876,Tiliomycetes class_Tiliomycetes,category used in some systems to comprise the two orders Ustilaginales (smuts) and Uredinales (rusts)
+16877,Tillandsia genus_Tillandsia,large genus of epiphytic or terrestrial sparse-rooting tropical plants usually forming dense clumps or pendant masses
+16878,Tilletia genus_Tilletia,a genus of fungi belonging to the family Tilletiaceae
+16879,Tilletiaceae family_Tilletiaceae,a family of smut fungi having a simple promycelium bearing the spores in an apical cluster
+16880,Tillich Paul_Tillich Paul_Johannes_Tillich,United States theologian (born in Germany) (1886-1965)
+16881,Timalia genus_Timalia,type genus of the Timaliidae
+16882,Timaliidae family_Timaliidae,babblers
+16883,Timbuktu,a city in central Mali near the Niger river; formerly famous for its gold trade
+16884,Times_Square,the area of Manhattan around the intersection of Broadway and Seventh Avenue; heart of the New York theater district; site of annual celebration of New Year's
+16885,Timgad,an ancient town founded by the Romans; noted for extensive and well-preserved ruins
+16886,Timimoun,a town in central Algeria in the Atlas Mountains
+16887,Timor,an island in Indonesia in the Malay Archipelago; the largest and most eastern of the Lesser Sunda Islands
+16888,Timor_Sea,an arm of the eastern Indian Ocean between Timor and northern Australia
+16889,Timorese,a native or inhabitant of Timor
+16890,Timothy,a disciple of Saint Paul who became the leader of the Christian community at Ephesus
+16891,Tin_Pan_Alley,a city district (originally in New York) where composers and publishers of popular music do business
+16892,Tinamidae family_Tinamidae,comprising the tinamous
+16893,Tinamiformes order_Tinamiformes,coextensive with the family Tinamidae
+16894,Tinbergen Jan_Tinbergen,Dutch economist noted for his work in econometrics (1903-1994)
+16895,Tinbergen Nikolaas_Tinbergen,Dutch zoologist who showed that much animal behavior is innate and stereotyped (1907-1988)
+16896,Tinca genus_Tinca,tench
+16897,Tinea genus_Tinea,type genus of the Tineidae: clothes moths
+16898,Tineidae family_Tineidae,clothes moths
+16899,Tineoidea superfamily_Tineoidea,clothes moths; carpet moths; leaf miners
+16900,Tineola genus_Tineola,webbing clothes moths
+16901,Tingidae family_Tingidae,lace bugs
+16902,Tintoretto Jacopo_Robusti,Italian painter of the Venetian school (1518-1594)
+16903,Tipuana genus_Tipuana,one species: South American tree: tipu tree
+16904,Tipulidae family_Tipulidae,crane flies
+16905,Tirana Albanian_capital,the capital and largest city of Albania in the center of the country
+16906,Tiresias,(Greek mythology) the blind prophet of Thebes who revealed to Oedipus that Oedipus had murdered his father and married his mother
+16907,Tirich_Mir,a mountain in the Hindu Kush in Pakistan (25,230 feet high)
+16908,Tirso_de_Molina Gabriel_Tellez,Spanish dramatist who wrote the first dramatic treatment of the legend of Don Juan (1571-1648)
+16909,Tishah_b'Av Tishah_b'Ab Tisha_b'Av Tisha_b'Ab Ninth_of_Av Ninth_of_Ab Fast_of_Av Fast_of_Ab,(Judaism) a major fast day on the Jewish calendar commemorating the destruction of the temples in Jerusalem
+16910,Tishri,the first month of the civil year; the seventh month of the ecclesiastical year in the Jewish calendar (in September and October)
+16911,Tisiphone,one of the three Furies
+16912,Titan,(Greek mythology) any of the primordial giant gods who ruled the Earth until overthrown by Zeus; the Titans were offspring of Uranus (Heaven) and Gaea (Earth)
+16913,Titan,the largest of the satellites of Saturn; has a hazy nitrogen atmosphere
+16914,Titaness,(Greek mythology) any of the primordial giant goddesses who were offspring of Uranus (heaven) and Gaea (earth) in ancient mythology
+16915,Titania,(Middle Ages) the queen of the fairies in medieval folklore
+16916,Titanosauridae family_Titanosauridae,herbivorous dinosaurs of the Cretaceous
+16917,Titanosaurus genus_Titanosaurus,genus of herbivorous dinosaurs flourishing during the Cretaceous in South America
+16918,Titian Tiziano_Vecellio,old master of the Venetian school (1490-1576)
+16919,Tito Marshal_Tito Josip_Broz,Yugoslav statesman who led the resistance to German occupation during World War II and established a communist state after the war (1892-1980)
+16920,Titus,a Greek disciple and helper of Saint Paul
+16921,Titus Titus_Vespasianus_Augustus Titus_Flavius_Vespasianus,Emperor of Rome; son of Vespasian (39-81)
+16922,Tiu,god of war and sky; counterpart of Norse Tyr
+16923,Tivoli Tibur,a town twenty miles to the east of Rome (Tibur is the ancient name); a summer resort during the Roman empire; noted for its waterfalls
+16924,Tlingit,a member of a seafaring group of North American Indians living in southern Alaska
+16925,Tlingit,the Na-Dene language spoken by the Tlingit
+16926,Tobago,island in West Indies
+16927,Tobagonian,a native or inhabitant of the island of Tobago in the West Indies
+16928,Tobey Mark_Tobey,United States abstract painter influenced by oriental calligraphy (1890-1976)
+16929,Tobin James_Tobin,United States economist (1918-2002)
+16930,Tobit Book_of_Tobit,an Apocryphal book that was a popular novel for several centuries
+16931,Tocantins Tocantins_River,a river in eastern Brazil that flows generally north to the Para River
+16932,Tocharian,a branch of the Indo-European language family that originated in central Asia during the first millennium A.D.
+16933,Tocqueville Alexis_de_Tocqueville Alexis_Charles_Henri_Maurice_de_Tocqueville,French political writer noted for his analysis of American institutions (1805-1859)
+16934,Toda,a member of a pastoral people living in the Nilgiri Hills of southern India
+16935,Toda,the Dravidian language spoken by the Toda in southern India
+16936,Todd Sir_Alexander_Robertus_Todd Lord_Todd,Scottish chemist noted for his research into the structure of nucleic acids (born in 1907)
+16937,Todd Sweeney_Todd,fictional character in a play by George Pitt; a barber who murdered his customers
+16938,Todea genus_Todea,a genus of delicate ferns belonging to the family Osmundaceae
+16939,Todidae family_Todidae,a family of birds of the order Coraciiformes
+16940,Todus genus_Todus,type genus of the Todidae
+16941,Tofieldia genus_Tofieldia,genus of perennial herbs of cool temperate regions; sometimes placed in family Melanthiaceae
+16942,Togaviridae,a family of arboviruses carried by arthropods
+16943,Togo Togolese_Republic,a republic on the western coast of Africa on the Gulf of Guinea; formerly under French control
+16944,Togo_franc,the basic unit of money in Togo
+16945,Togolese,a native or inhabitant of Togo
+16946,Tojo Tojo_Hideki Tojo_Eiki,Japanese army officer who initiated the Japanese attack on Pearl Harbor and who assumed dictatorial control of Japan during World War II; he was subsequently tried and executed as a war criminal (1884-1948)
+16947,Tokay,Hungarian wine made from Tokay grapes
+16948,Tokay,variety of wine grape originally grown in Hungary; the prototype of vinifera grapes
+16949,Toklas Alice_B._Toklas,United States writer remembered as the secretary and companion of Gertrude Stein (1877-1967)
+16950,Tokyo Tokio Yeddo Yedo Edo Japanese_capital capital_of_Japan,the capital and largest city of Japan; the economic and cultural center of Japan
+16951,Toledo,an industrial city in northwestern Ohio on Lake Erie
+16952,Toledo,a city in central Spain on the Tagus river; famous for steel and swords since the first century
+16953,Tolkien J.R.R._Tolkien John_Ronald_Reuel_Tolkien,British philologist and writer of fantasies (born in South Africa) (1892-1973)
+16954,Tolmiea genus_Tolmiea,one species: pickaback plant
+16955,Tolstoy Leo_Tolstoy Count_Lev_Nikolayevitch_Tolstoy,Russian author remembered for two great novels (1828-1910)
+16956,Toltec,a member of the Nahuatl speaking people of central and southern Mexico
+16957,Tolypeutes genus_Tolypeutes,a genus of Dasypodidae
+16958,Tom_Sawyer,the boy hero of a novel by Mark Twain
+16959,Tom_Thumb,an imaginary hero of English folklore who was no taller than his father's thumb
+16960,Tom_Thumb,a very small person
+16961,Tom_and_Jerry,hot rum toddy with a beaten egg
+16962,Tombaugh Clyde_Tombaugh Clyde_William_Tombaugh,United States astronomer who discovered the planet Pluto (1906-1997)
+16963,Tombigbee Tombigbee_River,a river that rises in northeastern Mississippi and flows southward through western Alabama to join the Alabama River and form the Mobile River
+16964,Tomistoma genus_Tomistoma,a genus of Malayan crocodiles
+16965,Tommy_gun Thompson_submachine_gun,a .45-caliber submachine gun
+16966,Tonegawa_Susumu,Japanese molecular biologist noted for his studies of how the immune system produces antibodies (born in 1939)
+16967,Tonga,the language of the Tongan people of south central Africa (Zambia and Rhodesia)
+16968,Tonga Kingdom_of_Tonga Friendly_Islands,a monarchy on a Polynesian archipelago in the South Pacific; achieved independence from the United Kingdom in 1970
+16969,Tongan,a Polynesian native or inhabitant of Tonga
+16970,Tongan,the Polynesian language spoken by the Tongan people
+16971,Tongan_monetary_unit,monetary unit in Tonga
+16972,Toona genus_Toona,formerly included in genus Cedrela
+16973,Topeka capital_of_Kansas,the capital of the state of Kansas; located in eastern Kansas on the Kansas river
+16974,Torah,the whole body of the Jewish sacred writings and tradition including the oral tradition
+16975,Torah,(Judaism) the scroll of parchment on which the first five books of the Hebrew Scripture is written; is used in a synagogue during services
+16976,Torah Pentateuch Laws,the first of three divisions of the Hebrew Scriptures comprising the first five books of the Hebrew Bible considered as a unit
+16977,Toronto,the provincial capital and largest city in Ontario (and the largest city in Canada)
+16978,Torpedinidae family_Torpedinidae,electric rays
+16979,Torpediniformes order_Torpediniformes,rays with bodies shaped like torpedoes
+16980,Torquemada Tomas_de_Torquemada,the Spaniard who as Grand Inquisitor was responsible for the death of thousands of Jews and suspected witches during the Spanish Inquisition (1420-1498)
+16981,Torreon,a city in northern Mexico to the west of Monterrey
+16982,Torres_Strait,a strait between northeastern Australia and southern New Guinea that connects the Coral Sea with the Arafura Sea
+16983,Torrey_pine Torrey's_pine soledad_pine grey-leaf_pine sabine_pine Pinus_torreyana,medium-sized five-needled pine of southwestern California having long cylindrical cones
+16984,Torreya genus_Torreya,nutmeg-yews
+16985,Torricelli Evangelista_Torricelli,Italian physicist who invented the mercury barometer (1608-1647)
+16986,Torrid_Zone tropical_zone tropics,the part of the Earth's surface between the Tropic of Cancer and the Tropic of Capricorn; characterized by a hot climate
+16987,Tortricidae family_Tortricidae,leaf rollers and codling moths
+16988,Tory,a member of political party in Great Britain that has been known as the Conservative Party since 1832; was the opposition party to the Whigs
+16989,Tory,a supporter of traditional political and social institutions against the forces of reform; a political conservative
+16990,Tory,an American who favored the British side during the American Revolution
+16991,Toscanini Arturo_Toscanini,Italian conductor of many orchestras worldwide (1867-1957)
+16992,Tosk Tosk_dialect,the dialect of Albanian spoken in southern Albania and in areas of Greece and Italy
+16993,Toulon,a port city and naval base in southeastern France on the Mediterranean coast
+16994,Toulouse,a city on the Garonne River in southern France to the southeast of Bordeaux; a cultural center of medieval Europe
+16995,Toulouse-Lautrec Henri_Toulouse-Lautrec,French painter who portrayed life in the cafes and music halls of Montmartre (1864-1901)
+16996,Tour_de_France,a French bicycle race for professional cyclists that lasts three weeks and covers about 3,000 miles
+16997,Tourette Gilles_de_la_Tourette Georges_Gilles_de_la_Tourette,French neurologist (1857-1904)
+16998,Tourette's_syndrome Gilles_de_la_Tourette_syndrome,neurological disorder characterized by facial grimaces and tics and movements of the upper body and grunts and shouts and coprolalia
+16999,Tours,an industrial city in western France on the Loire River
+17000,Tower_of_Babel Babel,(Genesis 11:1-11) a tower built by Noah's descendants (probably in Babylon) who intended it to reach up to heaven; God foiled them by confusing their language so they could no longer understand one another
+17001,Tower_of_London,a fortress in London on the Thames; used as a palace and a state prison and now as a museum containing the crown jewels
+17002,Tower_of_Pharos,a great lighthouse (500 feet high) built at Alexandria in 285 BC
+17003,Town Ithiel_Town,United States architect who was noted for his design and construction of truss bridges (1784-1844)
+17004,Townes Charles_Townes Charles_Hard_Townes,United States physicist who developed the laser and maser principles for producing high-intensity radiation (1915-)
+17005,Townsend Francis_Everett_Townsend,United States social reformer who proposed an old-age pension sponsored by the federal government; his plan was a precursor to Social Security (1867-1960)
+17006,Townsendia genus_Townsendia,genus of western American low tufted herbs: Easter daisy
+17007,Toxicodendron genus_Toxicodendron,in some classifications: comprising those members of the genus Rhus having foliage that is poisonous to the touch; of North America and northern South America
+17008,Toxostoma genus_Toxostoma,thrashers
+17009,Toxotes genus_Toxotes,type genus of the Toxotidae
+17010,Toxotidae family_Toxotidae,archerfishes
+17011,Toynbee Arnold_Toynbee Arnold_Joseph_Toynbee,English historian who studied the rise and fall of civilizations looking for cyclical patterns (1889-1975)
+17012,Toyohashi,a Japanese city in southern Honshu on the Pacific shore
+17013,Toyonaki,a Japanese city in southern Honshu; main residential suburb of Osaka
+17014,Toyota,an industrial city of Japan in southern Honshu
+17015,Trachelospermum genus_Trachelospermum,genus of Asiatic woody vines with milky sap in leaves and stems
+17016,Tracheophyta division_Tracheophyta,in former classifications: comprising plants with a vascular system including ferns and fern allies as well as seed plants
+17017,Trachinotus genus_Trachinotus,a genus of Carangidae
+17018,Trachipteridae family_Trachipteridae,ribbonfishes
+17019,Trachipterus genus_Trachipterus,type genus of the Trachipteridae
+17020,Trachurus genus_Trachurus,the scads (particularly horse mackerels)
+17021,Tractarian,a follower of Tractarianism and supporter of the Oxford movement (which was expounded in pamphlets called `Tracts for the Times')
+17022,Tractarianism Puseyism,principles of the founders of the Oxford movement as expounded in pamphlets called `Tracts for the Times'
+17023,Tracy Spencer_Tracy,United States film actor who appeared in many films with Katharine Hepburn (1900-1967)
+17024,Tradescant John_Tradescant,English botanist who was one of the first to collect specimens of plants (1570-1638)
+17025,Tradescantia genus_Tradescantia,spiderworts
+17026,Trafalgar battle_of_Trafalgar,a naval battle in 1805 off the southwest coast of Spain; the French and Spanish fleets were defeated by the English under Nelson (who was mortally wounded)
+17027,Trafalgar_Square,a square in central London where there is a memorial to Admiral Nelson
+17028,Tragelaphus genus_Tragelaphus Strepsiceros genus_Strepsiceros,African antelopes: kudus; bongos; nyalas; bushbucks
+17029,Tragopogon genus_Tragopogon,genus of Old World herbs with linear entire leaves and yellow or purple flower heads
+17030,Tragulidae family_Tragulidae,chevrotains
+17031,Tragulus genus_Tragulus,type genus of the Tragulidae
+17032,Trajan Marcus_Ulpius_Traianus,Roman Emperor and adoptive son of Nerva; extended the Roman Empire to the east and conducted an extensive program of building (53-117)
+17033,Transcaucasia,a geographical region to the south of the Caucasus Mountains and to the north of Turkey that comprises Georgia and Armenia and Azerbaijan
+17034,Transfiguration Transfiguration_Day August_6,(Christianity) a church festival held in commemoration of the Transfiguration of Jesus
+17035,Transfiguration Transfiguration_of_Jesus,(New Testament) the sudden emanation of radiance from the person of Jesus
+17036,Transportation_Security_Administration TSA,an agency established in 2001 to safeguard United States transportation systems and insure safe air travel
+17037,Transvaal,a province of northeastern South Africa originally inhabited by Africans who spoke Bantu; colonized by the Boers
+17038,Transylvania,a historical plateau region in northwestern Romania that is separated from the rest of the country by the Transylvanian Alps; originally part of Hungary; incorporated into Romania at the end of World War I
+17039,Transylvanian_Alps,a range of the southern Carpathian Mountains extending across central Romania
+17040,Trapa genus_Trapa,small genus of Eurasian aquatic perennial herbs: water chestnut
+17041,Trapaceae family_Trapaceae,family comprising solely the genus Trapa; in some classifications treated as a subfamily or tribe of the family Onagraceae
+17042,Trapezium,a multiple star in the constellation of Orion
+17043,Trappist Cistercian,member of an order of monks noted for austerity and a vow of silence
+17044,Trasimeno battle_of_Trasimeno,a battle in central Italy where Hannibal defeated the Romans under Flaminius in 217 BC
+17045,Traubel Helen_Traubel,United States operatic soprano (1903-1972)
+17046,Trautvetteria genus_Trautvetteria,small genus of perennial herbs: false bugbane
+17047,Traverse_City,a town in northern Michigan on an arm of Lake Michigan
+17048,Treasury First_Lord_of_the_Treasury,the British cabinet minister responsible for economic strategy
+17049,Treasury Treasury_obligations,negotiable debt obligations of the United States government which guarantees that interest and principal payments will be paid on time
+17050,Treasury_bill T-bill,a short-term obligation that is not interest-bearing (it is purchased at a discount); can be traded on a discount basis for 91 days
+17051,Treasury_bond,a debt instrument with maturities of 10 years or longer
+17052,Treasury_note,securities with maturities of 1 to 10 years; sold for cash or in exchange for maturing issues or at auction
+17053,Treaty_of_Versailles,the treaty imposed on Germany by the Allied powers in 1920 after the end of World War I which demanded exorbitant reparations from the Germans
+17054,Tree Sir_Herbert_Beerbohm_Tree,English actor and theatrical producer noted for his lavish productions of Shakespeare (1853-1917)
+17055,Trema genus_Trema,an evergreen tree of the family Ulmaceae that grows in tropical America and Africa and Asia
+17056,Trematoda class_Trematoda,parasitic flatworms (including flukes)
+17057,Tremella genus_Tremella,fungi with yellowish gelatinous sporophores having convolutions resembling those of the brain
+17058,Tremella_foliacea,a jelly fungus with a fruiting body 5-15 cm broad and gelatinous in consistency; resembles a bunch of leaf lettuce; mostly water and brownish in color
+17059,Tremella_reticulata,a jelly fungus with an erect whitish fruiting body and a highly variable shape (sometimes resembling coral fungi)
+17060,Tremellaceae family_Tremellaceae,a family of basidiomycetous fungi of the order Tremellales that have the basidium divided longitudinally
+17061,Tremellales order_Tremellales,fungi varying from gelatinous to waxy or even horny in texture; most are saprophytic
+17062,Trent River_Trent Trent_River,a river in central England that flows generally northeastward to join with the Ouse River and form the Humber
+17063,Trentino-Alto_Adige,a region of northeastern Italy bordering Austria
+17064,Trento Trent,a city in northern Italy (northwest of Venice) on the River Adige; the site of the Council of Trent
+17065,Trenton capital_of_New_Jersey,capital of the state of New Jersey; located in western New Jersey on the Delaware river
+17066,Treponemataceae family_Treponemataceae,small spirochetes some parasitic or pathogenic
+17067,Trevelyan George_Macaulay_Trevelyan,English historian and son of Sir George Otto Trevelyan whose works include a social history of England and a biography of Garibaldi (1876-1962)
+17068,Trevelyan George_Otto_Trevelyan Sir_George_Otto_Trevelyan,English historian who wrote a history of the American revolution and a biography of his uncle Lord Macaulay (1838-1928)
+17069,Trevino Lee_Trevino Lee_Buck_Trevino Supermex,United States golfer (born in 1939)
+17070,Trevithick Richard_Trevithick,English engineer who built the first railway locomotive (1771-1833)
+17071,Triaenodon genus_Triaenodon,a genus of Triakidae
+17072,Triakidae family_Triakidae,small sharks with smooth skins and lacking spines on their dorsal fins
+17073,Trialeurodes genus_Trialeurodes,a genus of Aleyrodidae
+17074,Triangulum Triangle,a small northern constellation near Perseus between Andromeda and Aries
+17075,Triangulum_Australe Southern_Triangle,a small bright constellation in the polar region of the southern hemisphere near Circinus and Apus
+17076,Triassic Triassic_period,from 230 million to 190 million years ago; dinosaurs, marine reptiles; volcanic activity
+17077,Triatoma genus_Triatoma,conenoses
+17078,Tribes_of_Israel Twelve_Tribes_of_Israel,twelve kin groups of ancient Israel each traditionally descended from one of the twelve sons of Jacob
+17079,Tribolium genus_Tribolium,flour beetles
+17080,Tribonema genus_Tribonema genus_Conferva,type genus of Tribonemaceae
+17081,Tribonemaceae family_Tribonemaceae,simple filamentous freshwater yellow-green algae
+17082,Tribulus genus_Tribulus,annual or perennial herbs or subshrubs of warm regions
+17083,Trichechidae family_Trichechidae,comprising only the manatees
+17084,Trichechus genus_Trichecus,type and sole genus of the Trichechidae
+17085,Trichiuridae family_Trichiuridae,cutlassfishes
+17086,Trichoceros genus_Trichoceros,small genus of small epiphytic or terrestrial orchids of tropical South America
+17087,Trichodontidae family_Trichodontidae,two species of elongate compressed scaleless large-eyed fishes that live in sand or mud
+17088,Trichoglossus genus_Trichoglossus,a genus of Loriinae
+17089,Tricholoma genus_Tricholoma,agarics with white spores and a fleshy stalk and notched gills; of various colors both edible and inedible
+17090,Tricholoma_aurantium,an orange tan agaric whose gills become brown by maturity; has a strong odor and taste
+17091,Tricholoma_pardinum,a poisonous agaric having a pale cap with fine grey fibrils
+17092,Tricholoma_pessundatum,a mildly poisonous agaric with a viscid reddish brown cap and white gills and stalk
+17093,Tricholoma_sejunctum,an agaric with a cap that is coated with dark fibrils in the center and has yellowish margins
+17094,Tricholoma_vaccinum,an agaric with a cap that is densely covered with reddish fibrils and pale gills and stalk
+17095,Tricholoma_venenata,a poisonous white agaric
+17096,Tricholomataceae family_Tricholomataceae,a family of fungi belonging to the order Agaricales
+17097,Trichomanes genus_Trichomanes,bristle ferns; kidney ferns
+17098,Trichophaga genus_Trichophaga,carpet moths
+17099,Trichophyton genus_Trichophyton,a genus of fungus of the family Moniliaceae; causes ringworm and favus
+17100,Trichoptera order_Trichoptera,an order of insects consisting of caddis flies
+17101,Trichostema genus_Trichostema,genus of North American aromatic herbs or subshrubs: blue curls
+17102,Trichostigma genus_Trichostigma,a genus of erect or climbing shrubs found in tropical South America
+17103,Trichosurus genus_Trichosurus,a genus of Phalangeridae
+17104,Trichys genus_Trichys,a genus of Hystricidae
+17105,Tridacna genus_Tridacna,type genus of the family Tridacnidae: giant clams
+17106,Tridacnidae family_Tridacnidae,large marine hard-shell clams
+17107,Trifolium genus_Trifolium,any leguminous plant having leaves divided into three leaflets
+17108,Triga genus_Triga,type genus of the Triglidae
+17109,Triglidae family_Triglidae,in some classifications restricted to the gurnards and subdivided into the subfamilies Triglinae (true sea robins) and Peristediinae (armored sea robins)
+17110,Triglinae subfamily_Triglinae,in some classifications considered a subfamily of Triglidae comprising searobins having ordinary scales and no barbels (true searobins)
+17111,Triglochin genus_Triglochin,perennial or annual bog or marsh plants; includes arrow grass
+17112,Trigonella genus_Trigonella,Old World genus of frequently aromatic herbs
+17113,Trilby,singer in a novel by George du Maurier who was under the control of the hypnotist Svengali
+17114,Trilisa genus_Trilisa,genus of herbs of southern United States
+17115,Trilliaceae family_Trilliaceae trillium_family,small family of herbs having flowers with 3 petals and 3 sepals; in some classification systems considered a subfamily of the Liliaceae
+17116,Trilling Lionel_Trilling,United States literary critic (1905-1975)
+17117,Trimorphodon genus_Trimorphodon,lyre snakes
+17118,Trimurti,the triad of divinities of later Hinduism
+17119,Trinectes genus_Trinectes,a genus of Soleidae
+17120,Tringa genus_Tringa,a genus of Scolopacidae
+17121,Trinidad,an island in West Indies just off the northeastern coast of Venezuela
+17122,Trinidad_and_Tobago Republic_of_Trinidad_and_Tobago,an island republic in the West Indies off the northeastern coast of Venezuela; achieved independence from the United Kingdom in 1962
+17123,Trinidad_and_Tobago_dollar,the basic unit of money in Trinidad and Tobago
+17124,Trinidadian,inhabitant or native of Trinidad
+17125,Trinitarian,adherent of Trinitarianism
+17126,Trinitarianism,Christian doctrine stressing belief in the Trinity
+17127,Trinity Holy_Trinity Blessed_Trinity Sacred_Trinity,the union of the Father and Son and Holy Ghost in one Godhead
+17128,Trinity_River,a river in eastern Texas that is formed near Dallas and flows generally southeastward to Galveston Bay
+17129,Trinity_Sunday,eighth Sunday after Easter
+17130,Trionychidae family_Trionychidae,soft-shelled turtles
+17131,Trionyx genus_Trionyx,type genus of the Trionychidae
+17132,Triopidae family_Triopidae,a family of Notostraca
+17133,Triops genus_Triops,type genus of the family Triopidae: small crustaceans with a small third median eye
+17134,Triostium genus_Triostium,genus of Asiatic and North American herbs: feverroot
+17135,Triple_Frontier,the border area where Argentina and Brazil and Paraguay meet; an active South American center for contraband and drug trafficking and money laundering; a suspected locale for Islamic extremist groups
+17136,Tripleurospermum genus_Tripleurospermum,small genus comprising plants often included in genus Matricaria
+17137,Triplochiton genus_Triplochiton,small genus of tropical African trees with maplelike leaves
+17138,Tripoli Tarabulus_Al-Gharb capital_of_Libya,the capital and chief port and largest city of Libya; in northwestern Libya on the Mediterranean Sea; founded by the Phoenicians in the 7th century BC
+17139,Tristan Tristram,(Middle Ages) the nephew of the king of Cornwall who (according to legend) fell in love with his uncle's bride (Iseult) after they mistakenly drank a love potion that left them eternally in love with each other
+17140,Triticum genus_Triticum,annual cereal grasses from Mediterranean area; widely cultivated in temperate regions
+17141,Triton,(Greek mythology) a sea god; son of Poseidon
+17142,Triton,the largest moon of Neptune
+17143,Triturus genus_Triturus,chiefly aquatic salamanders
+17144,Trochilidae family_Trochilidae,hummingbirds
+17145,Trogium genus_Trogium,a genus of Psocidae
+17146,Troglodytes genus_Troglodytes,type genus of the Troglodytidae
+17147,Troglodytidae family_Troglodytidae,wrens
+17148,Trogonidae family_Trogonidae,coextensive with the order Trogoniformes
+17149,Trogoniformes order_Trogoniformes,trogons
+17150,Trojan Dardan Dardanian,a native of ancient Troy
+17151,Trojan_Horse Wooden_Horse,a large hollow wooden figure of a horse (filled with Greek soldiers) left by the Greeks outside Troy during the Trojan War
+17152,Trojan_War,(Greek mythology) a great war fought between Greece and Troy; the Greeks sailed to Troy to recover Helen of Troy, the beautiful wife of Menelaus who had been abducted by Paris; after ten years the Greeks (via the Trojan Horse) achieved final victory and burned Troy to the ground; "the story of the Trojan War is told in Homer's Iliad"
+17153,Trollius genus_Trollius,perennial herbs of north temperate regions: globeflowers
+17154,Trollope Anthony_Trollope,English writer of novels (1815-1882)
+17155,Trombicula genus_Trombicula,type genus of the family Trombiculidae
+17156,Trombiculidae family_Trombiculidae,mites
+17157,Trombidiidae family_Trombidiidae,mites
+17158,Trondheim Nidaros,a port in central Norway on Trondheim Fjord
+17159,Trondheim_Fjord Trondheim_Fiord,a long narrow inlet of the Norwegian Sea
+17160,Tropaeolaceae family_Tropaeolaceae nasturtium_family,coextensive with the genus Tropaeolum
+17161,Tropaeolum genus_Tropaeolum,a tropical American genus of dicotyledonous climbing or diffuse pungent herbs constituting the family Tropaeolaceae
+17162,Tropic_of_Cancer,a line of latitude about 23 degrees to the north of the equator
+17163,Tropic_of_Capricorn,a line of latitude about 23 degrees to the south of the equator
+17164,Tropidoclonion genus_Tropidoclonion,lined snakes
+17165,Trotsky Leon_Trotsky Lev_Davidovich_Bronstein,Russian revolutionary and Communist theorist who helped Lenin and built up the army; he was ousted from the Communist Party by Stalin and eventually assassinated in Mexico (1879-1940)
+17166,Trotskyism,the form of communism advocated by Leon Trotsky; calls for immediate worldwide revolution by the proletariat
+17167,Trotskyite Trotskyist Trot,radicals who support Trotsky's theory that socialism must be established throughout the world by continuing revolution
+17168,Troy Ilion Ilium,an ancient city in Asia Minor that was the site of the Trojan War
+17169,Truffaut Francois_Truffaut,French filmmaker (1932-1984)
+17170,Truman Harry_Truman Harry_S_Truman President_Truman,elected vice president in Roosevelt's 4th term; became 33rd President of the United States on Roosevelt's death in 1945 and was elected President in 1948; authorized the use of atomic bombs against Japan (1884-1972)
+17171,Truman_doctrine,President Truman's policy of providing economic and military aid to any country threatened by communism or totalitarian ideology
+17172,Trumbo Dalton_Trumbo,United States screenwriter who was blacklisted and imprisoned for refusing to cooperate with congressional investigations of communism in America (1905-1976)
+17173,Trumbull John_Trumbull,American painter of historical scenes (1756-1843)
+17174,Trumbull John_Trumbull,American satirical poet (1750-1831)
+17175,Trumbull Jonathan_Trumbull,American Revolutionary leader who as governor of Connecticut provided supplies for the Continental Army (1710-1785)
+17176,Truncocolumella genus_Truncocolumella,a genus of fungi belonging to the family Rhizopogonaceae
+17177,Truncocolumella_citrina,a fungus with a round yellow to orange fruiting body that is found on the surface of the ground or partially buried; has a distinctive sterile column extending into the spore-bearing tissue
+17178,Trusteeship_Council TC,a permanent council of the United Nations that commissions a country (or countries) to undertake the administration of a territory
+17179,Truth Sojourner_Truth,United States abolitionist and feminist who was freed from slavery and became a leading advocate of the abolition of slavery and for the rights of women (1797-1883)
+17180,Trypetidae family_Trypetidae Trephritidae family_Trephritidae,fruit flies; some leaf miners
+17181,Tsimshian,a member of a Penutian people who lived on rivers and a sound in British Columbia
+17182,Tsimshian,a Penutian language spoken by the Tsimshian
+17183,Tsouic,a Formosan language
+17184,Tsuga genus_Tsuga,hemlock; hemlock fir; hemlock spruce
+17185,Tsushima,a naval battle in the Russo-Japanese War (1905); the Japanese fleet defeated the Russian fleet in the Korean Strait
+17186,Tswana Bechuana Batswana,a member of a Bantu people living chiefly in Botswana and western South Africa
+17187,Tswana Setswana Sechuana,the dialect of Sotho spoken by the Tswana in Botswana
+17188,Tuamotu_Archipelago Paumotu_Archipelago Low_Archipelago,a group of about 80 coral islands in French Polynesia
+17189,Tuareg,a member of a nomadic Berber people of the Sahara
+17190,Tuareg,the dialect of Berber spoken by the Tuareg
+17191,Tuatha_De_Danann Tuatha_De,group of Celtic gods or demigods; ruled Ireland in the Golden Age
+17192,Tuber genus_Tuber,type genus of the Tuberaceae: fungi whose fruiting bodies are typically truffles
+17193,Tuberaceae family_Tuberaceae,family of fungi whose ascocarps resemble tubers and vary in size from that of an acorn to that of a large apple
+17194,Tuberales order_Tuberales,small order of fungi belonging to the subdivision Ascomycota having closed underground ascocarps
+17195,Tubercularia genus_Tubercularia,type genus of the Tuberculariaceae; fungi with nodules of red or pink conidia; some cause diebacks of woody plants
+17196,Tuberculariaceae family_Tuberculariaceae,large family of mainly saprophytic imperfect fungi
+17197,Tubman Harriet_Tubman,United States abolitionist born a slave on a plantation in Maryland and became a famous conductor on the Underground Railroad leading other slaves to freedom in the North (1820-1913)
+17198,Tubuai_Islands Austral_Islands,a chain of small islands in French Polynesia
+17199,Tubulidentata order_Tubulidentata,an order of Eutheria
+17200,Tucana,a large faint constellation in the southern hemisphere containing most of the Small Magellanic Cloud
+17201,Tuchman Barbara_Tuchman Barbara_Wertheim_Tuchman,United States historian (1912-1989)
+17202,Tucker Benjamin_Ricketson_Tucker,United States anarchist influential before World War I (1854-1939)
+17203,Tucker Sophie_Tucker,United States vaudevillian (born in Russia) noted for her flamboyant performances (1884-1966)
+17204,Tucson,a city in southeastern Arizona ringed by mountain ranges; long known as a winter and health resort but the population shift from industrial states to the Sunbelt resulted in rapid growth late in the 20th century
+17205,Tudor,a member of the dynasty that ruled England
+17206,Tudor Antony_Tudor,United States dancer and choreographer (born in England) (1909-1987)
+17207,Tudor House_of_Tudor,an English dynasty descended from Henry Tudor; Tudor monarchs ruled from Henry VII to Elizabeth I (from 1485 to 1603)
+17208,Tudor_arch four-centered_arch,a low elliptical or pointed arch; usually drawn from four centers
+17209,Tudor_architecture,a style of English-Gothic architecture popular during the Tudor period; characterized by half-timbered houses
+17210,Tuesday Tues,the third day of the week; the second working day
+17211,Tugela Tugela_Falls,a major waterfall in southern Africa; has more than one leap
+17212,Tuileries Tuileries_Gardens,formal gardens next to the Louvre in Paris
+17213,Tuileries Tuileries_Palace,palace and royal residence built for Catherine de Medicis in 1564 and burned down in 1871; all that remains today are the formal gardens
+17214,Tulipa genus_Tulipa,Eurasian perennial bulbous herbs
+17215,Tulipa_gesneriana,tall late blooming tulip
+17216,Tulostoma genus_Tulostoma Tulestoma genus_Tulestoma,type genus of the Tulostomaceae
+17217,Tulostomaceae family_Tulostomaceae Tulostomataceae family_Tulostomataceae,stalked puffballs
+17218,Tulostomatales order_Tulostomatales,an order of fungi belonging to the class Gasteromycetes
+17219,Tulsa,a major city of northeastern Oklahoma on the Arkansas river; once known as the oil capital of the world and still heavily involved in the oil and gas industries
+17220,Tulu,a member of a Dravidian people living on the southwestern coast of India
+17221,Tulu,a Dravidian language spoken by the Tulu
+17222,Tums,an antacid
+17223,Tunga genus_Tunga,a genus of Siphonaptera
+17224,Tungus Evenk,a member of the Tungus speaking people who are a nomadic people widely spread over eastern Siberia; related to the Manchu
+17225,Tungus Tunguz Evenki Ewenki,the Tungusic language of the Evenki in eastern Siberia
+17226,Tungusic,any member of a people speaking a language in the Tungusic family
+17227,Tungusic Tungusic_language,a family of Altaic languages spoken in Mongolia and neighboring areas
+17228,Tunguska Lower_Tunguska,a river that arises to the north of Lake Baikal and flows north and west to the Yenisei River
+17229,Tunguska Stony_Tunguska,a river in Siberia that flows northwest to become a tributary of the Yenisei River
+17230,Tunis capital_of_Tunisia,the capital and principal port of Tunisia
+17231,Tunisia Republic_of_Tunisia,a republic in northwestern Africa on the Mediterranean coast; achieved independence from France in 1956; "southern Tunisia is mostly desert"
+17232,Tunisian,a native or inhabitant of Tunisia
+17233,Tunisian_dinar dinar,the basic unit of money in Tunisia
+17234,Tunisian_dirham dirham,100 dirhams equal 1 dinar in Tunisia
+17235,Tunisian_monetary_unit,monetary unit in Tunisia
+17236,Tunney Gene_Tunney James_Joseph_Tunney,United States prizefighter who won the world heavyweight championship by defeating Jack Dempsey twice (1898-1978)
+17237,Tupac_Amaru_Revolutionary_Movement Movimiento_Revolucionario_Tupac_Anaru MRTA,a Marxist-Leninist terrorist organization in Peru; was formed in 1983 to overthrow the Peruvian government and replace it with a Marxist regime; has connections with the ELN in Bolivia
+17238,Tupac_Katari_Guerrilla_Army EGTK,a terrorist group that is the remnants of the original Bolivian insurgents trained by Che Guevara; attacks small unprotected targets such as power pylons or oil pipelines or government buildings
+17239,Tupaia genus_Tupaia,the type genus of the Tupaia: chief genus of tree shrews
+17240,Tupaiidae family_Tupaiidae,tree shrews; in some classifications tree shrews are considered prosimian primates
+17241,Tupelo,a town in northeast Mississippi
+17242,Tupi,a member of the South American Indian people living in Brazil and Paraguay
+17243,Tupi,the language spoken by the Tupi of Brazil and Paraguay
+17244,Tupi-Guarani Tupi-Guarani_language,a family of South American Indian languages
+17245,Tupinambis genus_Tupinambis,tejus
+17246,Tupungatito,an inactive volcano in central Chile; last erupted in 1959
+17247,Tupungato,a mountain in the Andes on the border between Argentina and Chile (22,310 feet high)
+17248,Turbellaria class_Turbellaria,free-living flatworms
+17249,Turdidae family_Turdidae,thrushes; in some classifications considered a subfamily (Turdinae) of the family Muscicapidae
+17250,Turdinae subfamily_Turdinae,alternative classification for the thrushes
+17251,Turdus genus_Turdus,type genus of the Turdidae
+17252,Turfan East_Tocharian Turfan_dialect,a dialect of Tocharian
+17253,Turgenev Ivan_Turgenev Ivan_Sergeevich_Turgenev,Russian writer of stories and novels and plays (1818-1883)
+17254,Turgot Anne_Robert_Jacques_Turgot,French economist who in 1774 was put in control of finances by Louis XVI; his proposals for reforms that involved abolishing feudal privileges made him unpopular with the aristocracy and in 1776 he was dismissed (1727-1781)
+17255,Turin Torino,capital city of the Piemonte region of northwestern Italy
+17256,Turing Alan_Turing Alan_Mathison_Turing,English mathematician who conceived of the Turing machine and broke German codes during World War II (1912-1954)
+17257,Turing_machine,a hypothetical computer with an infinitely long memory tape
+17258,Turk,a native or inhabitant of Turkey
+17259,Turk's-cap Turk's_cap-lily Lilium_superbum,lily of the eastern United States with orange to red maroon-spotted flowers
+17260,Turk's-cap martagon Lilium_martagon,lily with small dull purple flowers of northwestern Europe and northwestern Asia
+17261,Turk's_head,an ornamental knot that resembles a small turban
+17262,Turkey Republic_of_Turkey,a Eurasian republic in Asia Minor and the Balkans; on the collapse of the Ottoman Empire in 1918, the Young Turks, led by Kemal Ataturk, established a republic in 1923
+17263,Turkey_red alizarine_red,a bright orange-red color produced in cotton cloth with alizarine dye
+17264,Turki,any member of the peoples speaking a Turkic language
+17265,Turki Turkic Turko-Tatar Turkic_language,a subfamily of Altaic languages
+17266,Turkish,a Turkic language spoken by the Turks
+17267,Turkish_Delight,a jellied candy typically flavored with rose water
+17268,Turkish_Hizballah,an ethnic Kurdish group of Sunni extremists formed in the late 1980s in southeastern Turkey; seeks to replace Turkey's secular regime with an Islamic state and strict shariah law; responsible for bombings and the torture and murder of Turkish and Kurdish journalists and businessmen; receives support from Iran
+17269,Turkish_bath,a steam room where facilities are available for a bath followed by a shower and massage
+17270,Turkish_bath steam_bath vapor_bath vapour_bath,you sweat in a steam room before getting a rubdown and cold shower
+17271,Turkish_coffee,a drink made from pulverized coffee beans; usually sweetened
+17272,Turkish_monetary_unit,monetary unit in Turkey
+17273,Turkish_tobacco,a dark aromatic tobacco of eastern Europe that is used in cigarettes
+17274,Turkish_towel terry_towel,a bath towel with rough loose pile
+17275,Turkistan Turkestan,a historical region of central Asia that was a center for trade between the East and the West
+17276,Turkmen Turkoman Turcoman,the Turkic language spoken by the Turkoman
+17277,Turkmen_monetary_unit,monetary unit in Turkmenistan
+17278,Turkmenistan Turkomen Turkmen Turkmenia,a republic in Asia to the east of the Caspian Sea and to the south of Kazakhstan and to the north of Iran; an Asian soviet from 1925 to 1991
+17279,Turkoman Turkmen Turcoman,a member of a Turkic people living in Turkmenistan and neighboring areas
+17280,Turner Frederick_Jackson_Turner,United States historian who stressed the role of the western frontier in American history (1861-1951)
+17281,Turner Henry_Hubert_Turner,United States endocrinologist (1892-1970)
+17282,Turner Joseph_Mallord_William_Turner,English landscape painter whose treatment of light and color influenced the French impressionists (1775-1851)
+17283,Turner Nat_Turner,United States slave and insurrectionist who in 1831 led a rebellion of slaves in Virginia; he was captured and executed (1800-1831)
+17284,Turner's_syndrome,a chromosomal disorder in females who have only one X chromosome; marked by dwarfism and heart abnormalities and underdeveloped sex organs
+17285,Turnicidae family_Turnicidae,small Old World birds resembling but not related to true quail
+17286,Turnix genus_Turnix,type genus of the Turnicidae: button quail
+17287,Turpin Dick_Turpin,English highwayman (1706-1739)
+17288,Turritis genus_Turritis,closely related to and often included in genus Arabis
+17289,Tursiops genus_Tursiops,a genus of Delphinidae
+17290,Tuscaloosa,a university town in west central Alabama
+17291,Tuscan,a resident of Tuscany
+17292,Tuscan,a dialect of Italian spoken in Tuscany (especially Florence)
+17293,Tuscan_order,a Roman order that resembles the Doric order but without a fluted shaft
+17294,Tuscany Toscana,a region in central Italy
+17295,Tuscarora,a member of an Iroquois people who formerly lived in North Carolina and then moved to New York State and joined the Iroquois
+17296,Tuscarora,the Iroquoian language spoken by the Tuscarora
+17297,Tuskegee,a town in eastern Alabama
+17298,Tussaud Marie_Tussaud Madame_Tussaud Marie_Grosholtz,French modeler (resident in England after 1802) who made wax death masks of prominent victims of the French Revolution and toured Britain with her wax models; in 1835 she opened a permanent waxworks exhibition in London (1761-1850)
+17299,Tussilago genus_Tussilago,genus of low creeping yellow-flowered perennial herbs of north temperate regions: coltsfoots; in some classifications includes species often placed in other genera especially Homogyne and Petasites
+17300,Tutankhamen,Pharaoh of Egypt around 1358 BC; his tomb was discovered almost intact by Howard Carter in 1922
+17301,Tutelo,a member of the Siouan people of Virginia and North Carolina
+17302,Tutelo,the Siouan language spoken by the Tutelo
+17303,Tutsi Watutsi Watusi,a member of a Bantu speaking people living in Rwanda and Burundi
+17304,Tutu Desmond_Tutu,South African prelate and leader of the antiapartheid struggle (born in 1931)
+17305,Tuvalu,a small island republic on the Tuvalu islands; formerly part of the British colony of Gilbert and Ellice Islands until it withdrew in 1975 and became independent of the United Kingdom in 1978
+17306,Tuvalu Ellice_Islands,a group of coral islands in Micronesia to the southwest of Hawaii
+17307,Tuvalu_dollar,the basic unit of money in Tuvalu
+17308,Tuxtla_Gutierrez,a city in southeastern Mexico
+17309,Tweedledum_and_Tweedledee Tweedledee_and_Tweedledum,any two people who are hard to tell apart
+17310,Twelfth_night,eve of Twelfth day; evening of January 5
+17311,Twelfthtide,the season of Epiphany
+17312,Twin Twin_Falls,a waterfall in the Snake River in southern Idaho
+17313,Twin_Cities,nickname for Saint Paul and Minneapolis
+17314,Twin_Falls,a town on the Snake River in south central Idaho near the Twin Falls
+17315,Twinkie,a small sponge cake with a synthetic cream filling
+17316,Two_Kettle,a member of the Siouan people who constituted a division of the Teton Sioux
+17317,Tyche,(Greek mythology) the goddess of fortune; identified with Roman Fortuna
+17318,Tyke,a native of Yorkshire
+17319,Tylenchidae family_Tylenchidae,a family of Nematoda
+17320,Tylenchus genus_Tylenchus,type genus of the family Tylenchidae
+17321,Tyler,a town in northeast Texas
+17322,Tyler John_Tyler President_Tyler,elected vice president and became the 10th President of the United States when Harrison died (1790-1862)
+17323,Tympanuchus genus_Tympanuchus,prairie chickens
+17324,Tyndale William_Tyndale Tindale William_Tindale Tindal William_Tindal,English translator and Protestant martyr; his translation of the Bible into English (which later formed the basis for the King James Version) aroused ecclesiastical opposition; he left England in 1524 and was burned at the stake in Antwerp as a heretic (1494-1536)
+17325,Tyndall John_Tyndall,British physicist (born in Ireland) remembered for his experiments on the transparency of gases and the absorption of radiant heat by gases and the transmission of sound through the atmosphere; he was the first person to explain why the daylight sky is blue (1820-1893)
+17326,Tyndall_effect,the phenomenon in which light is scattered by very small particles in its path; it makes a beam of light visible; the scattered light is mainly blue
+17327,Tyne River_Tyne Tyne_River,a river in northern England that flows east to the North Sea
+17328,Typha genus_Typha,reed maces; cattails
+17329,Typhaceae family_Typhaceae cattail_family,perennial marsh plants with creeping rootstocks and long linear leaves
+17330,Typhlopidae family_Typhlopidae,blind snakes
+17331,Typhoeus,(Greek mythology) son of Gaea and Tartarus who created the whirlwinds; had a terrifying voice and 100 dragon heads that spurted fire
+17332,Typhon,(Greek mythology) a monster with a hundred heads who breathed out flames; son of Typhoeus and father of Cerberus and the Chimera and the Sphinx
+17333,Tyr Tyrr,(Norse mythology) god of war and strife and son of Odin; identified with Anglo-Saxon Tiu
+17334,Tyranni suborder_Tyranni,New World flycatchers; antbirds; oven birds; woodhewers
+17335,Tyrannidae superfamily_Tyrannidae,New World tyrant flycatchers most numerous in Central America and South America but also in the United States and Canada
+17336,Tyrannus genus_Tyrannus,type genus of the Tyrannidae: tyrant flycatchers
+17337,Tyrian_purple,a red-purple to deep purple dye obtained from snails or made synthetically
+17338,Tyrian_purple,a vivid purplish-red color; in ancient Rome and Byzantium, it was the color worn by an emperor or senior magistrate
+17339,Tyrol Tirol,a picturesque mountainous province of western Austria and northern Italy
+17340,Tyrolean,a native or inhabitant of the Tyrol
+17341,Tyrolean_Alps,a popular tourist area in the Tyrol
+17342,Tyrrhenian_Sea,an arm of the Mediterranean between Italy and the islands of Corsica and Sardinia and Sicily
+17343,Tyson Mike_Tyson Michael_Gerald_Tyson,United States prizefighter who was world heavyweight champion (born in 1966)
+17344,Tyto genus_Tyto,type and only genus of the family Tytonidae
+17345,Tytonidae family_Tytonidae,comprising only the barn owls
+17346,Tzara Tristan_Tzara Samuel_Rosenstock,French poet (born in Romania) who was one of the cofounders of the dada movement (1896-1963)
+17347,U u,the 21st letter of the Roman alphabet
+17348,UNIX UNIX_system UNIX_operating_system,trademark for a powerful operating system
+17349,UNIX_guru,an expert on the UNIX operating system
+17350,URL uniform_resource_locator universal_resource_locator,the address of a web page on the world wide web
+17351,USS_Cole,a United States destroyer; "17 sailors died as the result of a terrorist attack while the USS Cole was anchored in Aden"
+17352,Ubykh,an extinct Caucasian language spoken exclusively in Turkey
+17353,Uca genus_Uca,fiddler crabs
+17354,Udmurt Votyak,a member of the Finno-Ugric-speaking people living in eastern European Russia
+17355,Udmurt Votyak,the Finnic language spoken by the Votyak
+17356,Ufa,a city in the European part of Russia
+17357,Uganda Republic_of_Uganda,a landlocked republic in eastern Africa; achieved independence from the United Kingdom in 1962
+17358,Ugandan,a native or inhabitant of Uganda
+17359,Ugandan_monetary_unit,monetary unit in Uganda
+17360,Ugandan_shilling shilling,the basic unit of money in Uganda; equal to 100 cents
+17361,Ugaritic,an extinct Semitic language of northern Syria
+17362,Ugric Ugrian,one of the two branches of the Finno-Ugric family of languages; spoken in Hungary and northwestern Siberia
+17363,Uhland Johann_Ludwig_Uhland,German romantic poet (1787-1862)
+17364,Uighur Uigur Uygur,a member of a people who speak Uighur and live in Xinjiang and adjacent areas
+17365,Uighur Uigur Uygur,the Turkic language spoken by approximately 7,000,000 Uighur in extreme northwestern China
+17366,Uighur Uigur Uygur,the script (derived from Aramaic) used to write the Uighur language
+17367,Uintatheriidae family_Uintatheriidae,an extinct family of Dinocerata
+17368,Uintatherium genus_Uintatherium,type genus of the Uintatheriidae; extinct large herbivorous ungulates somewhat resembling elephants; from the Eocene in Wyoming
+17369,Ukraine Ukrayina,a republic in southeastern Europe; formerly a European soviet; the center of the original Russian state which came into existence in the ninth century
+17370,Ukrainian,the Slavic language spoken in the Ukraine
+17371,Ukranian,a native or inhabitant of the Ukraine
+17372,Ukranian_monetary_unit,monetary unit in Ukraine
+17373,Ulan_Bator Ulaanbaatar Urga Kulun capital_of_Mongolia,the capital and largest city of Mongolia
+17374,Ulanova Galina_Ulanova Galina_Sergeevna_Ulanova,Russian ballet dancer (1910-1998)
+17375,Ulex genus_Ulex,genus of Eurasian spiny shrubs: gorse
+17376,Ulfilas Bishop_Ulfilas Ulfila Bishop_Ulfila Wulfila Bishop_Wulfila,a Christian believed to be of Cappadocian descent who became bishop of the Visigoths in 341 and translated the Bible from Greek into Gothic; traditionally held to have invented the Gothic alphabet (311-382)
+17377,Ull Ullr,(Norse mythology) one of the Aesir known for his beauty and skill with bow and skis; son of Sif and stepson of Thor
+17378,Ulmaceae family_Ulmaceae elm_family,a dicot family of the order Urticales including: genera Ulmus, Celtis, Planera, Trema
+17379,Ulmus genus_Ulmus,type genus of family Ulmaceae; deciduous trees having simple serrate leaves; widely distributed in temperate regions
+17380,Ulster,a historic division of Ireland located in the northeastern part of the island; six of Ulster's nine counties are in Northern Ireland
+17381,Ulster_Defence_Association UDA,the major Protestant paramilitary group in Northern Ireland; responsible for bombing the homes of Catholics and for criminal racketeering and selling drugs
+17382,Ultrasuede,a synthetic suede cloth
+17383,Ulugh_Muztagh Ulugh_Muz_Tagh,a mountain in the Kunlun range in China (25,340 feet high)
+17384,Ulva genus_Ulva,type genus of the family Ulvaceae; green seaweed having a thallus two cells thick: sea lettuce
+17385,Ulvaceae family_Ulvaceae sea-lettuce_family,thin flat or tubular green algae
+17386,Ulvales order_Ulvales,an order of protoctist
+17387,Ulvophyceae class_Ulvophyceae,alternative name for the class Chlorophyceae in some classifications
+17388,Ulysses,(Roman mythology) Roman spelling for Odysseus
+17389,Uma,a benevolent aspect of Devi; `splendor'
+17390,Uma genus_Uma,fringe-toed lizard
+17391,Umayyad Ommiad Omayyad,the first dynasty of Arab caliphs whose capital was Damascus
+17392,Umbellales order_Umbellales,plants having umbels or corymbs of uniovulate flowers; includes the Umbelliferae (chiefly herbs) and Cornaceae (chiefly trees or shrubs)
+17393,Umbelliferae family_Umbelliferae Apiaceae family_Apiaceae carrot_family,plants having flowers in umbels: parsley; carrot; anise; caraway; celery; dill
+17394,Umbellularia genus_Umbellularia,aromatic evergreen trees of Pacific coast
+17395,Umbria,a mountainous region in central Italy
+17396,Umbrian,an extinct Italic language of ancient southern Italy
+17397,Umbrina genus_Umbrina,croakers
+17398,Umbundu,a Bantu language spoken in Angola
+17399,Umma_Tameer-e-Nau UTN,a nongovernmental organization of Pakistani scientists that has been a supporter of terrorism; has provided information about chemical and biological and nuclear warfare to Osama bin Laden and al-Qaeda and the Taliban
+17400,Ummah Umma Muslim_Ummah Islamic_Ummah Islam_Nation,the Muslim community or people, considered to extend from Mauritania to Pakistan; "moderate Muslims urge the Ummah to reject the terrorism of radical Muslims"
+17401,Uncle_Remus,the fictional storyteller of tales written in the Black Vernacular and set in the South; the tales were first collected and published in book form in 1880
+17402,Uncle_Sam,a personification of the United States government
+17403,Uncle_Tom,a servile black character in a novel by Harriet Beecher Stowe
+17404,Uncompahgre_Peak,the highest peak in the San Juan Mountains of southwestern Colorado (14,309 feet high)
+17405,Underground_Railroad Underground_Railway,secret aid to escaping slaves that was provided by abolitionists in the years before the American Civil War
+17406,Undset Sigrid_Undset,Norwegian novelist (1882-1949)
+17407,Unguiculata,in former classifications a major division of Mammalia comprising mammals with nails or claws; distinguished from hoofed mammals and cetaceans
+17408,Ungulata,in former classifications a major division of Mammalia comprising all hoofed mammals; now divided into the orders Perissodactyla (odd-toed ungulates) and Artiodactyla (even-toed ungulates)
+17409,Uniat Uniate Uniate_Christian,a member of the Uniat Church
+17410,Uniat_Church Uniate_Church,any of several churches in eastern Europe or the Middle East that acknowledge papal authority but retain their own liturgy
+17411,Unification_Church,a Christian church (with some Buddhist elements) founded in 1954 by Sun Myung Moon and known for staging mass weddings and other communal activities
+17412,Unio genus_Unio,type genus of the family Unionidae
+17413,Union North,the United States (especially the northern states during the American Civil War); "he has visited every state in the Union"; "Lee hoped to detach Maryland from the Union"; "the North's superior resources turned the scale"
+17414,Union_Army,the northern army during the American Civil War
+17415,Union_Jack Union_flag,national flag of the United Kingdom
+17416,Unionidae family_Unionidae,freshwater mussels found worldwide
+17417,Unitarian,adherent of Unitarianism
+17418,Unitarian_Church,the Protestant denomination that rejects the doctrine of the Trinity
+17419,Unitarianism,a non-doctrinal religion that stresses individual freedom of belief and rejects the Trinity
+17420,United_Arab_Emirate_dirham dirham,the basic unit of money in the United Arab Emirates; equal to 1,000 fils
+17421,United_Arab_Emirate_monetary_unit,monetary unit in the United Arab Emirates
+17422,United_Arab_Emirates,a federation of seven Arab emirates on the eastern Arabian peninsula; achieved independence from the United Kingdom in 1971; rich in oil reserves
+17423,United_Church_of_Christ,merger of the Congregational Christian Church and the Evangelical and Reformed Church in 1957
+17424,United_Kingdom UK U.K. Britain United_Kingdom_of_Great_Britain_and_Northern_Ireland Great_Britain,a monarchy in northwestern Europe occupying most of the British Isles; divided into England and Scotland and Wales and Northern Ireland; `Great Britain' is often used loosely to refer to the United Kingdom
+17425,United_Methodist_Church,union of the Wesleyan Methodist Church and the Evangelical United Brethren Church
+17426,United_Mine_Workers_of_America United_Mine_Workers,an industrial union of mine workers in North America
+17427,United_Nations UN,an organization of independent states formed in 1945 to promote international peace and security
+17428,United_Nations_Children's_Fund United_Nations_International_Children's_Emergency_Fund UNICEF,an agency of the United Nations responsible for programs to aid education and the health of children and mothers in developing countries
+17429,United_Nations_Crime_Prevention_and_Criminal_Justice Centre_for_International_Crime_Prevention,the United Nations office responsible for crime prevention and criminal justice and law reform
+17430,United_Nations_Day October_24,a day for celebrating the founding of the United Nations
+17431,United_Nations_Educational_Scientific_and_Cultural_Organization UNESCO,an agency of the United Nations that promotes education and communication and the arts
+17432,United_Nations_Office_for_Drug_Control_and_Crime_Prevention DCCP,an agency of the United Nations that promotes drug control and crime prevention
+17433,United_Nations_Secretariat,the administrative arm of the United Nations
+17434,United_Nations_agency UN_agency,an agency of the United Nations
+17435,United_Self-Defense_Force_of_Colombia United_Self-Defense_Group_of_Colombia Autodefensas_Unidas_de_Colombia AUC,a terrorist organization in Colombia formed in 1997 as an umbrella for local and regional paramilitary groups; is financed by earnings from narcotics and serves to protect the economic interests of its members; "the AUC conducted over 800 assassinations in one year"
+17436,United_States United_States_of_America America the_States US U.S. USA U.S.A.,North American republic containing 50 states - 48 conterminous states in North America plus Alaska in northwest North America and the Hawaiian Islands in the Pacific Ocean; achieved independence in 1776
+17437,United_States_Air_Force U._S._Air_Force US_Air_Force Air_Force USAF,the airforce of the United States of America; the agency that defends the United States through control and exploitation of air and space
+17438,United_States_Air_Force_Academy US_Air_Force_Academy,a school for training men and women to become officers in the United States Air Force
+17439,United_States_Army US_Army U._S._Army Army USA,the army of the United States of America; the agency that organizes and trains soldiers for land warfare
+17440,United_States_Army_Criminal_Investigation_Laboratory U.S._Army_Criminal_Investigation_Laboratory US_Army_Criminal_Investigation_Laboratory USACIL,a defense laboratory of the Criminal Investigation Command; the United States Army's primary forensic laboratory in support of criminal intelligence
+17441,United_States_Army_Rangers,a specially trained elite unit of the United States Army
+17442,United_States_Border_Patrol US_Border_Patrol,the mobile law enforcement arm of the Immigration and Naturalization Service that detects and prevents illegal entry of aliens into the United States
+17443,United_States_Cabinet US_Cabinet,a board to advise the President; members are the secretaries of executive departments; the United States constitution does not provide for the cabinet
+17444,United_States_Coast_Guard U._S._Coast_Guard US_Coast_Guard,an agency of the Department of Transportation responsible for patrolling shores and facilitating nautical commerce
+17445,United_States_Code U._S._Code,a consolidation and codification by subject matter of the general and permanent laws of the United States; is prepared and published by a unit of the United States House of Representatives
+17446,United_States_Constitution U.S._Constitution US_Constitution Constitution Constitution_of_the_United_States,the constitution written at the Constitutional Convention in Philadelphia in 1787 and subsequently ratified by the original thirteen states
+17447,United_States_Customary_System,the system of weights and measures based on the foot and pound and second and pint that dates back to colonial America but differs in some respects from the British Imperial System; today in the United States this system exists side by side with the SI system
+17448,United_States_Fish_and_Wildlife_Service US_Fish_and_Wildlife_Service FWS,an agency in the Department of the Interior that conserves and protects fish and wildlife and their habitats; assesses the environmental impact of pesticides and nuclear power site and hydroelectric dams and thermal pollution
+17449,United_States_Government_Printing_Office US_Government_Printing_Office Government_Printing_Office GPO,an agency of the legislative branch that provides printing and binding services for Congress and the departments and establishments of the federal government
+17450,United_States_House_of_Representatives U.S._House_of_Representatives US_House_of_Representatives House_of_Representatives U.S._House US_House,the lower legislative house of the United States Congress
+17451,United_States_Marine_Corps United_States_Marines Marine_Corps US_Marine_Corps USMC Marines,an amphibious division of the United States Navy
+17452,United_States_Marshals_Service US_Marshals_Service Marshals,the United States' oldest federal law enforcement agency is responsible today for protecting the Federal Judiciary and transporting federal prisoners and protecting federal witnesses and managing assets seized from criminals and generally ensuring the effective operation of the federal judicial system
+17453,United_States_Military_Academy US_Military_Academy,a school for training men and women to become officers in the United States Army
+17454,United_States_Mint U.S._Mint US_Mint,the mint that manufactures and distributes United States coins for circulation through Federal Reserve Banks; processes gold and silver bullion
+17455,United_States_Naval_Academy US_Naval_Academy,a school for training men and women to become officers in the United States Navy
+17456,United_States_Navy US_Navy USN Navy,the navy of the United States of America; the agency that maintains and trains and equips combat-ready naval forces
+17457,United_States_Post_Office US_Post_Office Post_Office PO,an independent agency of the federal government responsible for mail delivery (and sometimes telecommunications) between individuals and businesses in the United States
+17458,United_States_Postal_Inspection_Service US_Postal_Inspection_Service,the primary law enforcement arm of the United States Postal Service
+17459,United_States_Postal_Service US_Postal_Service USPS,an independent federal agency that provides mail processing and delivery service for individuals and businesses in the United States
+17460,United_States_Public_Health_Service PHS,an agency that serves as the office of Surgeon General; includes agencies whose mission is to improve the public health
+17461,United_States_Secret_Service US_Secret_Service USSS Secret_Service SS,the United States intelligence agency that protects current and former presidents and vice presidents and their immediate families and protects distinguished foreign visitors; detects and apprehends counterfeiters; suppresses forgery of government securities and documents
+17462,United_States_Senate U.S._Senate US_Senate Senate,the upper house of the United States Congress
+17463,United_States_Trade_Representative US_Trade_Representative,the executive agency that administers the President's policies on international trade
+17464,United_States_Virgin_Islands American_Virgin_Islands VI,more than 130 southeastern Virgin Islands; a dependent territory of the United States
+17465,United_States_dollar,the basic unit of money in the United States
+17466,United_States_dry_unit,a unit of measurement of capacity for dry substances officially adopted in the United States Customary System
+17467,United_States_government United_States U.S._government US_Government U.S.,the executive and legislative and judicial branches of the federal government of the United States
+17468,United_States_intelligence_agency,an intelligence service in the United States
+17469,United_States_liquid_unit,a liquid unit officially adopted in the United States Customary System
+17470,United_States_waters U.S._waters,territorial waters included within a distance of 12 nautical miles of the coasts of the United States and its territories; "ships operating in United States waters must adhere to United States laws and regulations"
+17471,University_of_California_at_Berkeley,a university in Berkeley, California
+17472,University_of_Chicago,a university in Chicago, Illinois
+17473,University_of_Michigan,a university in Ann Arbor, Michigan
+17474,University_of_Nebraska,a university in Lincoln, Nebraska
+17475,University_of_North_Carolina,a university in Chapel Hill, North Carolina
+17476,University_of_Pennsylvania Pennsylvania Penn,a university in Philadelphia, Pennsylvania
+17477,University_of_Pittsburgh,a university in Pittsburgh, Pennsylvania
+17478,University_of_Sussex Sussex_University,a red-brick university in Brighton, England
+17479,University_of_Texas,a university in Austin, Texas
+17480,University_of_Vermont,a university in Burlington, Vermont
+17481,University_of_Washington,a university in Seattle, Washington
+17482,University_of_West_Virginia,a university in Morgantown, West Virginia
+17483,University_of_Wisconsin,a university in Madison, Wisconsin
+17484,Unknown_Soldier,an unidentified soldier whose body is honored as a memorial
+17485,Untermeyer Louis_Untermeyer,United States writer (1885-1977)
+17486,Upanishad,a later sacred text of Hinduism of a mystical nature dealing with metaphysical questions; "the Vedanta philosophy developed from the pantheistic views of the Upanishads"
+17487,Updike John_Updike John_Hoyer_Updike,United States author (born 1932)
+17488,Upjohn Richard_Upjohn,United States architect (born in England) (1802-1878)
+17489,Upper_Egypt,one of the two main administrative districts of Egypt; extends south from Cairo to Sudan
+17490,Upper_Paleolithic,the time period during which only modern Homo sapiens was known to have existed; ended about 10,000 years BC
+17491,Upper_Peninsula,the peninsula between Lake Superior and Lake Michigan that forms the northwestern part of Michigan
+17492,Uppsala Upsala,a city in east central Sweden to the northwest of Stockholm
+17493,Upupa genus_Upupa,type genus of the Upupidae
+17494,Upupidae family_Upupidae,hoopoes
+17495,Ur,an ancient city of Sumer located on a former channel of the Euphrates River
+17496,Ural-Altaic,a (postulated) group of languages including many of the indigenous languages of Russia (but not Russian)
+17497,Uralic Uralic_language,a family of Ural-Altaic languages
+17498,Urals Ural_Mountains,a mountain range in western Russia extending from the Arctic to the Caspian Sea; forms part of the traditional boundary between Europe and Asia
+17499,Urania,(Greek mythology) the Muse of astronomy
+17500,Uranoscopidae family_Uranoscopidae,stargazers
+17501,Uranus,a giant planet with a ring of ice particles; the 7th planet from the sun has a blue-green color and many satellites; "Uranus was discovered by William Herschel in 1781"
+17502,Urban_II Odo Odo_of_Lagery Otho Otho_of_Lagery,French pope from 1088 to 1099 whose sermons called for the First Crusade (1042-1099)
+17503,Urban_V Guillaume_de_Grimoard,French pope from 1362 to 1370 who tried to reestablish the papacy in Rome but in 1367 returned to Avignon hoping to end the war between France and England; canonized in 1870 (1310-1370)
+17504,Urban_VI Bartolomeo_Prignano,Italian pope from 1378 to 1389 whose contested election began the Great Schism; he alienated his political allies by his ruthless treatment of his opponents (1318-1389)
+17505,Urban_VIII Maffeo_Barberini,Italian pope from 1623 to 1644 who sanctioned the condemnation of Galileo but later freed him (1568-1644)
+17506,Urbana,a university town in east central Illinois adjoining Champaign
+17507,Urd Urth,goddess of fate: a giantess who personified the past
+17508,Urdu,the official literary language of Pakistan, closely related to Hindi; widely used in India (mostly by Moslems); written in Arabic script
+17509,Uredinales order_Uredinales,rust fungi: parasitic fungi causing rust in plants; sometimes placed in
+17510,Urey Harold_Urey Harold_Clayton_Urey,United States chemist who discovered deuterium (1893-1981)
+17511,Urginea genus_Urginea,Mediterranean liliaceous plants; sometimes placed in family Hyacinthaceae
+17512,Uria genus_Uria,murres
+17513,Uriah,(Old Testament) the husband of Bathsheba and a soldier who was sent to die in battle so that king David could marry his wife (circa 10th century BC)
+17514,Urim_and_Thummim,lots thrown to determine God's answers to yes-no questions
+17515,Urmia Orumiyeh,a city on the western side of Lake Urmia in northwestern Iran
+17516,Urnula_craterium urn_fungus,an urn-shaped discomycete with a nearly black interior
+17517,Urochordata subphylum_Urochordata Urochorda subphylum_Urochorda Tunicata subphylum_Tunicata,tunicates
+17518,Urocyon genus_Urocyon,grey foxes
+17519,Urocystis genus_Urocystis,a genus of smut fungi belonging to the family Tilletiaceae
+17520,Urodella order_Urodella Caudata order_Caudata,salamanders; newts; congo snakes
+17521,Urophycis genus_Urophycis,hakes
+17522,Uropsilus genus_Uropsilus,shrew moles
+17523,Urosaurus genus_Urosaurus,a reptile genus of Iguanidae
+17524,Ursidae family_Ursidae,bears and extinct related forms
+17525,Ursus genus_Ursus,type genus of Ursidae: brown bears; in some classifications genus Ursus includes all bears
+17526,Urtica genus_Urtica,a nettle yielding fiber resembling flax
+17527,Urticaceae family_Urticaceae nettle_family,a family of plants of order Urticales including many nettles with stinging hairs
+17528,Urticales order_Urticales,an order of dicotyledonous plants including Moraceae and Urticaceae and Ulmaceae
+17529,Urubupunga Urubupunga_Falls,a waterfall in the Parana river in Brazil
+17530,Uruguay,a South American republic on the southeast coast of South America; achieved independence from Brazil in 1825
+17531,Uruguay_River,a South American river that arises in southern Brazil and flows south to the Rio de la Plata; the northern section forms the boundary between Argentina and Brazil and the southern section forms the boundary between Argentina and Uruguay
+17532,Uruguay_potato,similar to the common potato
+17533,Uruguay_potato Uruguay_potato_vine Solanum_commersonii,South American potato vine
+17534,Uruguayan,a native or inhabitant of Uruguay
+17535,Uruguayan_monetary_unit,monetary unit in Uruguay
+17536,Uruguayan_peso peso,the basic unit of money in Uruguay; equal to 100 centesimos
+17537,Ushas,Hindu goddess of dawn; daughter of the sky and sister of the night
+17538,Usnea genus_Usnea,widely distributed lichens usually having a greyish or yellow pendulous freely branched thallus
+17539,Usneaceae family_Usneaceae,fruticose lichens having prostrate or erect or pendulous thalli: genera Usnea, Evernia, Ramalina, Alectoria
+17540,Ussher James_Ussher Usher James_Usher,Irish prelate who deduced from the Bible that Creation occurred in the year 4004 BC (1581-1656)
+17541,Ustilaginaceae family_Ustilaginaceae,a fungus family of loose smuts
+17542,Ustilaginales order_Ustilaginales,parasitic fungi causing smuts; sometimes placed in class Tiliomycetes
+17543,Ustilaginoidea genus_Ustilaginoidea,genus of imperfect fungi causing plant diseases like smut
+17544,Ustilago genus_Ustilago,type genus of the Ustilaginaceae; genus comprising the loose smuts
+17545,Ustinov Sir_Peter_Ustinov Peter_Alexander_Ustinov,British actor and playwright (1921-2004)
+17546,Usuli,a religious movement by Persian Shiite Muslims in 17th century Iran that is opposed to the Akhbari; "Usuli Shiism produced the politically active caste of priests that is a distinctive feature of Iranian Shiism"
+17547,Uta genus_Uta,a reptile genus of Iguanidae
+17548,Utah Beehive_State Mormon_State UT Ut.,a state in the western United States; settled in 1847 by Mormons led by Brigham Young
+17549,Utahan,a native or resident of Utah
+17550,Ute,a member of the Shoshonean people of Utah and Colorado and New Mexico
+17551,Ute,the Shoshonean language spoken by the Utes
+17552,Utica,a city in central New York
+17553,Utica,an ancient city on the north coast of Africa (northwest of Carthage); destroyed by Arabs around 700 AD
+17554,Utnapishtim,favorite of the gods and grandfather of Gilgamish; survived the great flood and became immortal
+17555,Uto-Aztecan Uto-Aztecan_language,a family of American Indian languages
+17556,Utopia,a book written by Sir Thomas More (1516) describing the perfect society on an imaginary island
+17557,Utopia Zion Sion,an imaginary place considered to be perfect or ideal
+17558,Utopian,an idealistic (but usually impractical) social reformer; "a Utopian believes in the ultimate perfectibility of man"
+17559,Utopianism,the political orientation of a Utopian who believes in impossibly idealistic schemes of social perfection
+17560,Utrecht,a city in the central Netherlands
+17561,Utricularia genus_Utricularia,bladderworts: large genus of aquatic carnivorous plants; cosmopolitan in distribution
+17562,Utrillo Maurice_Utrillo,French painter noted for his paintings of Parisian street scenes (1883-1955)
+17563,Uttar_Pradesh,a state in northern India
+17564,Utu Utug,sun god; counterpart of Akkadian Shamash
+17565,Uvularia genus_Uvularia,genus of perennial rhizomatous herb of southern and southeastern United States
+17566,Uvulariaceae subfamily_Uvulariaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae
+17567,Uzbek Uzbeg Uzbak Usbek Usbeg,a member of a Turkic people of Uzbekistan and neighboring areas
+17568,Uzbek Uzbeg Uzbak Usbek Usbeg,the Turkic language spoken by the Uzbek
+17569,Uzbekistan Republic_of_Uzbekistan Uzbek,a landlocked republic in west central Asia; formerly an Asian soviet
+17570,Uzbekistani_monetary_unit,monetary unit in Uzbekistan
+17571,Uzi,a type of submachine gun that is designed and manufactured in Israel; "the Uzi is used throughout the world as a police and special forces firearm"
+17572,V v,the 22nd letter of the Roman alphabet
+17573,V-8_juice,brand name for canned mixed vegetable juices
+17574,V-E_Day 8_May_1945,the date of Allied victory in Europe, World War II
+17575,V-J_Day 15_August_1945,the date of Allied victory over Japan, World War II
+17576,V-day Victory_Day,the day of a victory
+17577,VAT value-added_tax ad_valorem_tax,a tax levied on the difference between a commodity's price before taxes and its cost of production
+17578,VX_gas,a highly lethal nerve agent used in chemical warfare; a toxic liquid that penetrates the skin or lungs to disrupt the nervous system and stop respiration; in combat VX gas is deployed by detonating a container over the target area and can persist in the environment up to several weeks after release; "VX gas is one of those things we wish we could disinvent"
+17579,V_neck,the neck of a garment has the shape of the letter V
+17580,V_sign,a sign (for victory); making a V with the index and middle fingers
+17581,Vaccaria genus_Vaccaria,cow-cockles
+17582,Vaccinium genus_Vaccinium,evergreen or deciduous berry-bearing shrubs of northern hemisphere: cranberries; blueberries
+17583,Vaduz capital_of_Liechtenstein,the capital and largest city of Liechtenstein
+17584,Vaishnava,worshipper of Vishnu
+17585,Vaishnavism Vaisnavism,Hindu sect worshiping of Vishnu
+17586,Vaishnavism Vaisnavism Vishnuism,worship of Vishnu one of the 3 chief gods of the Hindu pantheon
+17587,Vaisya,a member of the mercantile and professional Hindu caste; the third of the four main castes
+17588,Vajra,Indra's thunderbolt
+17589,Valdez,a port on Alaska's southern coast from which oil is shipped to markets around the world
+17590,Valdosta,a town in southern Georgia near the Florida border
+17591,Valencia,an industrial city in northern Venezuela
+17592,Valencia,a city in eastern Spain on the Mediterranean; "Valencia is the third largest city in Spain"
+17593,Valencia_orange,variety of sweet orange cultivated extensively in Florida and California
+17594,Valenciennes,a town in northeastern France long noted for its lace industry
+17595,Valenciennes Valenciennes_lace,a type of bobbin lace with floral patterns
+17596,Valentine,a card sent or given (as to a sweetheart) on Saint Valentine's Day
+17597,Valentine_Day Valentine's_Day Saint_Valentine's_Day St_Valentine's_Day February_14,a day for the exchange of tokens of affection
+17598,Valeriana genus_Valeriana,genus of widely distributed perennial herbs and some shrubs
+17599,Valerianaceae family_Valerianaceae valerian_family,genus of mostly herbs having a characteristic fetid odor
+17600,Valerianella genus_Valerianella,genus of Old World annual herbs widely naturalized
+17601,Valhalla Walhalla,(Norse mythology) the hall in which the souls of heros slain in battle were received by Odin
+17602,Vali,(Norse mythology) one of the Aesir and avenger of Balder; son of Odin
+17603,Valkyrie,(Norse mythology) one of the maidens of Odin who chose heroes to be slain in battle and conducted them to Valhalla
+17604,Valle_D'Aosta,a region in northwestern Italy
+17605,Valletta Valetta capital_of_Malta,the capital of Malta; located on the northeastern coast of the island
+17606,Vallisneria genus_Vallisneria,eelgrass; eel grass
+17607,Valmy battle_of_Valmy,the French defeated the Austrian and Prussian troops in 1792 (with a famous cannonade from the French artillery)
+17608,Valois,French royal house from 1328 to 1589
+17609,Valparaiso,the chief port and second largest city of Chile; located on a wide harbor in central Chile
+17610,Van_Allen James_Alfred_Van_Allen,United States physicist who discovered two belts of charged particles from the solar wind trapped by the Earth's magnetic field (born in 1914)
+17611,Van_Allen_belt,a belt of charged particles (resulting from cosmic rays) above the Earth trapped by the Earth's magnetic field
+17612,Van_Buren Martin_Van_Buren President_Van_Buren,8th President of the United States (1782-1862)
+17613,Van_Doren Carl_Van_Doren Carl_Clinton_Van_Doren,United States writer and literary critic (1885-1950)
+17614,Van_Vleck John_Van_Vleck John_Hasbrouck_Van_Vleck,United States physicist (1899-1980)
+17615,Van_de_Graaff Robert_Van_de_Graaff Robert_Jemison_Van_de_Graaff,United States physicist (1901-1967)
+17616,Vanbrugh John_Vanbrugh Sir_John_Vanbrigh,English architect (1664-1726)
+17617,Vancouver,a town in southwestern Washington on the Columbia River across from Portland, Oregon
+17618,Vancouver,a port city in southwestern British Columbia on an arm of the Pacific Ocean opposite Vancouver Island; Canada's chief Pacific port and third largest city
+17619,Vancouver George_Vancouver,English navigator remembered for his exploration of the Pacific coast of North America (1757-1798)
+17620,Vancouver_Island,an island off southwestern Canada (off the southwestern coast of British Columbia); the largest island off the west coast of North America
+17621,Vandal,a member of the Germanic people who overran Gaul and Spain and North Africa and sacked Rome in 455
+17622,Vanderbilt Cornelius_Vanderbilt Commodore_Vanderbilt,United States financier who accumulated great wealth from railroad and shipping businesses (1794-1877)
+17623,Vandyke Van_Dyck Anthony_Vandyke Sir_Anthony_Vandyke,Flemish painter of numerous portraits (1599-1641)
+17624,Vandyke_brown,a moderate brown color
+17625,Vanellus genus_Vanellus,Eurasian lapwings
+17626,Vanessa genus_Vanessa,painted beauty and red admiral
+17627,Vangueria genus_Vangueria,tropical African and Asiatic trees and shrubs having one-seeded fruit
+17628,Vanir,(Norse mythology) group of ancient gods sometimes in conflict with the Aesir
+17629,Vanua_Levu,a volcanic island in the Fijis
+17630,Vanuatu Republic_of_Vanuatu New_Hebrides,a volcanic island republic in Melanesia; independent since 1980
+17631,Vanzetti Bartolomeo_Vanzetti,United States anarchist (born in Italy) who with Nicola Sacco was convicted of murder and in spite of world-wide protest was executed (1888-1927)
+17632,Varanidae family_Varanidae,monitor lizards
+17633,Varanus genus_Varanus,type and sole extant genus of the Varanidae
+17634,Varese Edgar_Varese,United States composer (born in France) whose music combines dissonance with complex rhythms and the use of electronic techniques (1883-1965)
+17635,Vargas Getulio_Dornelles_Vargas,Brazilian statesman who ruled Brazil as a virtual dictator (1883-1954)
+17636,Vargas_Llosa Mario_Vargas_Llosa Jorge_Mario_Pedro_Vargas_Llosa,Peruvian writer (born in 1936)
+17637,Varna,a port city in northeastern Bulgaria on the Black Sea
+17638,Varro Marcus_Terentius_Varro,Roman scholar (116-27 BC)
+17639,Varuna,in Vedism, god of the night sky who with his thousand eyes watches over human conduct and judges good and evil and punishes evildoers; often considered king of the Hindu gods and frequently paired with Mitra as an upholder of the world
+17640,Vasarely Viktor_Vasarely,French painter (born in Hungary) who was a pioneer of op art (1908-1997)
+17641,Vasari Giorgio_Vasari,Italian painter and art historian (1511-1574)
+17642,Vaseline,a trademarked brand of petroleum jelly
+17643,Vatican Vatican_Palace,the residence of the Catholic Pope in the Vatican City
+17644,Vatican_City Citta_del_Vaticano,the capital of the State of the Vatican City
+17645,Vatican_Council,each of two councils of the Roman Catholic Church
+17646,Vaughan Sarah_Vaughan,United States jazz singer noted for her complex bebop phrasing and scat singing (1924-1990)
+17647,Vaughan_Williams Ralph_Vaughan_Williams,English composer influenced by folk tunes and music of the Tudor period (1872-1958)
+17648,Vaux Calvert_Vaux,United States landscape architect (born in England) who designed Central Park (1824-1895)
+17649,Vayu,Hindu wind god
+17650,Veadar Adar_Sheni,included seven times in every 19 years
+17651,Veblen Oswald_Veblen,United States mathematician (1880-1960)
+17652,Veblen Thorstein_Veblen Thorstein_Bunde_Veblen,United States economist who wrote about conspicuous consumption (1857-1929)
+17653,Vedanga,Vedic texts from the fifth and fourth centuries BC dealing with phonetics and ritual injunctions and linguistics and grammar and etymology and lexicography and prosody and astronomy and astrology
+17654,Vedanta,(from the Sanskrit for `end of the Veda') one of six orthodox philosophical systems or viewpoints rooted in the Upanishads as opposed to Mimamsa which relies on the Vedas and Brahmanas
+17655,Vedic_literature Veda,(from the Sanskrit word for `knowledge') any of the most ancient sacred writings of Hinduism written in early Sanskrit; traditionally believed to comprise the Samhitas, the Brahmanas, the Aranyakas, and the Upanishads
+17656,Vedism,the form of Hinduism that revolves primarily around the mythic version and ritual ideologies in the Vedas
+17657,Vedist,a scholar of or an authority on the Vedas
+17658,Vega,the brightest star in the constellation Lyra
+17659,Vega Lope_de_Vega Lope_Felix_de_Vega_Carpio,prolific Spanish playwright (1562-1635)
+17660,Vela,a constellation in the southern hemisphere between Carina and Pyxis; "because of its configuration Vela is sometimes called `the Sails'"
+17661,Velazquez Diego_Rodriguez_de_Silva_y_Velazquez,Spanish painter (1599-1660)
+17662,Velcro,nylon fabric used as a fastening
+17663,Velveeta,trademark: soft processed American cheese
+17664,Vendemiaire,first month of the Revolutionary calendar (September and October); the month of the grape harvest
+17665,Veneridae family_Veneridae,hard-shell clams
+17666,Venetian,a resident of Venice
+17667,Venetian_blind,a window blind made of horizontal strips that overlap when closed
+17668,Venetian_glass,fine glassware made near Venice
+17669,Venetian_sumac wig_tree Cotinus_coggygria,Old World shrub having large plumes of yellowish feathery flowers resembling puffs of smoke
+17670,Veneto Venezia-Euganea Venetia,a region of northeastern Italy on the Adriatic
+17671,Venezuela Republic_of_Venezuela,a republic in northern South America on the Caribbean; achieved independence from Spain in 1811; rich in oil
+17672,Venezuelan,a native or inhabitant of Venezuela
+17673,Venezuelan_monetary_unit,monetary unit of Venezuela
+17674,Venice Venezia,the provincial capital of Veneto; built on 118 islands within a lagoon in the Gulf of Venice; has canals instead of streets; one of Italy's major ports and a famous tourist attraction
+17675,Venn John_Venn,English logician who introduced Venn diagrams (1834-1923)
+17676,Venn_diagram Venn's_diagram,a diagram that uses circles to represent mathematical or logical sets pictorially inside a rectangle (the universal set); elements that are common to more than one set are represented by intersections of the circles
+17677,Ventner Craig_Ventner J._Craig_Ventner,United States geneticist who published the complete base sequences for all the genes of a free-living organism, the influenza bacterium; later led team that developed a first draft of the entire human genome (born in 1946)
+17678,Ventose,sixth month of the Revolutionary calendar (February and March); the windy month
+17679,Venturi Robert_Venturi Robert_Charles_Venturi,United States architect (born in 1925)
+17680,Venturi_tube,a short tube inserted into a pipeline and used to measure the quantity of a liquid that is flowing in the pipeline
+17681,Venus,the second nearest planet to the sun; it is peculiar in that its rotation is slow and retrograde (in the opposite sense of the Earth and all other planets except Uranus); it is visible from Earth as an early `morning star' or an `evening star'; "before it was known that they were the same object the evening star was called Venus and the morning star was called Lucifer"
+17682,Venus Urania,goddess of love; counterpart of Greek Aphrodite
+17683,Venus genus_Venus,type genus of the family Veneridae: genus of edible clams with thick oval shells
+17684,Venus'_slipper Venus's_slipper Venus's_shoe,any of various orchids of the genus Paphiopedilum having slender flower stalks bearing 1 to several waxy flowers with pouchlike lips
+17685,Venus's_flower_basket,a deep-water marine sponge having a cylindrical skeleton of intricate glassy latticework; found in the waters of the East Indies and the eastern coast of Asia
+17686,Venus's_flytrap Venus's_flytraps Dionaea_muscipula,carnivorous plant of coastal plains of the Carolinas having sensitive hinged marginally bristled leaf blades that close and entrap insects
+17687,Venus's_girdle Cestum_veneris,ctenophore having a ribbon-shaped iridescent gelatinous body
+17688,Veps Vepse Vepsian,a member of a Finnish people of Russia
+17689,Veps Vepse Vepsian,a Finnic language spoken by the Veps
+17690,Veracruz,a major Mexican port on the Gulf of Mexico in the state of Veracruz
+17691,Veratrum genus_Veratrum,a genus of coarse poisonous perennial herbs; sometimes placed in subfamily Melanthiaceae
+17692,Verbascum genus_Verbascum,genus of coarse herbs and subshrubs mostly with woolly leaves
+17693,Verbenaceae family_Verbenaceae verbena_family vervain_family,family of New World tropical and subtropical herbs and shrubs and trees
+17694,Verbesina genus_Verbesina,herbs and shrubs of warm North America to Mexico; includes plants formerly placed in genus Actinomeris
+17695,Verdandi Verthandi,goddess of fate: an elf who personified the present
+17696,Verdi Giuseppe_Verdi Guiseppe_Fortunino_Francesco_Verdi,Italian operatic composer (1813-1901)
+17697,Verdicchio,a variety of white wine grape grown in Italy
+17698,Verdicchio,a dry white Italian wine made from Verdicchio grapes
+17699,Verdun battle_of_Verdun,a battle in World War I (1916); in some of the bloodiest fighting in World War I the German offensive was stopped
+17700,Verlaine Paul_Verlaine,French symbolist poet (1844-1896)
+17701,Vermeer Jan_Vermeer Jan_van_der_Meer,Dutch painter renowned for his use of light (1632-1675)
+17702,Vermont Green_Mountain_State VT Vt.,a state in New England
+17703,Vermonter,a native or resident of Vermont
+17704,Verne Jules_Verne,French writer who is considered the father of science fiction (1828-1905)
+17705,Verner Karl_Adolph_Verner,Danish philologist (1846-1896)
+17706,Verner's_law,a qualification of Grimm's law
+17707,Vernier Paul_Vernier,French mathematician who described the vernier scale (1580-1637)
+17708,Verona,a city in Veneto on the River Adige
+17709,Veronese Paolo_Veronese Paola_Caliari,Italian painter of the Venetian school (1528-1588)
+17710,Verpa bell_morel,a morel whose fertile portion resembles a bell and is attached to the stipe only at the top
+17711,Verpa_bohemica early_morel,resembles a thimble on a finger; the surface of the fertile portion is folded into wrinkles that extend from the top down; fruiting begins in spring before the leaves are out on the trees
+17712,Verpa_conica conic_Verpa,a morel with a fertile portion that has a relatively smooth surface; the stalk is fragile
+17713,Verrazano Giovanni_da_Verrazano Verrazzano Giovanni_da_Verrazzano,Florentine navigator who explored the eastern coast of North America (circa 1485-1528)
+17714,Verrazano-Narrows_Bridge,a suspension bridge across the Verrazano Narrows between Brooklyn and Staten Island
+17715,Verrazano_Narrows,a narrow channel of water separating Staten Island and Brooklyn
+17716,Versace Gianni_Versace,Italian fashion designer (1946-1997)
+17717,Versailles,a city in north central France near Paris; site of the Palace of Versailles that was built by Louis XIV in the 17th century
+17718,Versailles Palace_of_Versailles,a palace built in the 17th century for Louis XIV southwest of Paris near the city of Versailles
+17719,Vertebrata subphylum_Vertebrata Craniata subphylum_Craniata,fishes; amphibians; reptiles; birds; mammals
+17720,Verwoerd Hendrik_Verwoerd Hendrik_Frensch_Verwoerd,South African statesman who instituted the policy of apartheid (1901-1966)
+17721,Very_Reverend,a title of respect for various ecclesiastical officials (as cathedral deans and canons and others)
+17722,Very_light Very-light,a colored flare fired from a Very pistol
+17723,Very_pistol Verey_pistol,a pistol for firing Very-light flares
+17724,Vesalius Andreas_Vesalius,a Flemish surgeon who is considered the father of modern anatomy (1514-1564)
+17725,Vesey Denmark_Vesey,United States freed slave and insurrectionist in South Carolina who was involved in planning an uprising of slaves and was hanged (1767-1822)
+17726,Vesicaria genus_Vesicaria,small genus of chiefly Mediterranean herbs: bladderpods
+17727,Vespa genus_Vespa,type genus of the Vespidae: various hornets and yellow jackets
+17728,Vespasian Titus_Flavius_Sabinus_Vespasianus,Emperor of Rome and founder of the Flavian dynasty who consolidated Roman rule in Germany and Britain and reformed the army and brought prosperity to the empire; began the construction of the Colosseum (9-79)
+17729,Vespertilio genus_Vespertilio,a genus of Vespertilionidae
+17730,Vespertilionidae family_Vespertilionidae,the majority of common bats of temperate regions of the world
+17731,Vespidae family_Vespidae,an arthropod family of the order Hymenoptera including: yellow jackets; hornets; mason wasps
+17732,Vespucci Amerigo_Vespucci Americus_Vespucius,Florentine navigator who explored the coast of South America; America was named in his honor (1454-1512)
+17733,Vespula genus_Vespula,sometimes considered a subgenus of Vespa: social wasps
+17734,Vesta,(Roman mythology) goddess of the hearth and its fire whose flame was tended by vestal virgins; counterpart of Greek Hestia
+17735,Vesta,the brightest asteroid but the fourth to be discovered
+17736,Vestris Gaetan_Vestris,Italian dancing-master for Louis XVI who was considered the greatest dancer of his day; he was the first to discard the mask in mime (1729-1808)
+17737,Vesuvius Mount_Vesuvius Mt._Vesuvius,a volcano in southwestern Italy on the Mediterranean coast; a Plinian eruption in 79 AD buried Pompeii and killed Pliny the Elder; last erupted in 1944
+17738,Veterans_Day Veterans'_Day Armistice_Day November_11,a legal holiday in the United States; formerly Armistice Day but called Veterans' Day since 1954
+17739,Veterans_of_Foreign_Wars VFW,an organization of United States war veterans
+17740,Vetluga Vetluga_River,a river in central Russia; flows generally southward into the Volga
+17741,Viborg,a town of Denmark in north central Jutland
+17742,Vibrio_fetus,bacteria that cause abortion in sheep
+17743,Viburnum genus_Viburnum,deciduous or evergreen shrubs or small trees: arrow-wood; wayfaring tree
+17744,Vice_President_of_the_United_States,the vice president of the United States who presides over the United States Senate
+17745,Vicente_Lopez,an industrial suburb of Buenos Aires
+17746,Vichy,a town in central France (south of Paris) noted for hot mineral springs; was capital of the unoccupied part of France during World War II
+17747,Vichy_water,sparkling mineral water from springs at Vichy, France or water similar to it
+17748,Vicia genus_Vicia,widely distributed genus of annual or perennial and often climbing herbs
+17749,Vicksburg,a town in western Mississippi on bluffs above the Mississippi River to the west of Jackson; focus of an important campaign during the American Civil War as the Union fought to control the Mississippi River and so to cut the Confederacy into two halves
+17750,Vicksburg siege_of_Vicksburg,a decisive battle in the American Civil War (1863); after being besieged for nearly seven weeks the Confederates surrendered
+17751,Victor_Emanuel_II,king of Italy who completed the unification of Italy by acquiring Venice and Rome (1820-1878)
+17752,Victor_Emanuel_III,king of Italy who appointed Mussolini prime minister; he abdicated in 1946 and the monarchy was abolished (1869-1947)
+17753,Victoria,(Roman mythology) goddess of victory; counterpart of Greek Nike
+17754,Victoria,a town in southeast Texas to the southeast of San Antonio
+17755,Victoria,a state in southeastern Australia
+17756,Victoria,capital of the Canadian province of British Columbia on Vancouver Island
+17757,Victoria Queen_Victoria,queen of Great Britain and Ireland and empress of India from 1837 to 1901; the last Hanoverian ruler of England (1819-1901)
+17758,Victoria Victoria_Falls,a waterfall in the Zambezi River on the border between Zimbabwe and Zambia; diminishes seasonally
+17759,Victoria capital_of_Seychelles,port city and the capital of Seychelles
+17760,Victoria_Cross,a British military decoration for gallantry
+17761,Victoria_Day,a public holiday in Canada on the Monday on or before May 24th
+17762,Victoria_Land,a mountainous area of Antarctica bounded by the Ross Sea and Wilkes Land
+17763,Victoria_plum,a large red plum served as dessert
+17764,Victoria_sandwich Victoria_sponge,a cake consisting of two layers of sponge cake with a jelly filling in between
+17765,Victorian,a person who lived during the reign of Victoria
+17766,Victorian_age,a period in British history during the reign of Queen Victoria in the 19th century; her character and moral standards restored the prestige of the British monarchy but gave the era a prudish reputation
+17767,Victorian_architecture,a style of architecture used in Britain during the reign of Queen Victoria; characterized by massive construction and elaborate ornamentation
+17768,Victoriana,collection of materials of or characteristic of the Victorian era
+17769,Victrola,a brand of gramophone
+17770,Vicugna genus_Vicugna,a genus of Camelidae
+17771,Vidal Gore_Vidal Eugene_Luther_Vidal,United States writer (born in 1925)
+17772,Vidalia,a town in central Georgia; the origin of Vidalia onions
+17773,Vidalia_onion,sweet-flavored onion grown in Georgia
+17774,Vidua genus_Vidua,whydahs
+17775,Vienna Austrian_capital capital_of_Austria,the capital and largest city of Austria; located on the Danube in northeastern Austria; was the home of Beethoven and Brahms and Haydn and Mozart and Schubert and Strauss
+17776,Vienna_sausage,short slender frankfurter usually with ends cut off
+17777,Vienne,a town in south central France where is 1311-1313 the Roman Catholic Church held one of its councils
+17778,Vienne Council_of_Vienne,the council in 1311-1313 that dealt with alleged crimes of the Knights Templar, planned a new crusade, and took on the reformation of the clergy
+17779,Vientiane Laotian_capital capital_of_Laos,the capital and largest city of Laos
+17780,Vieques,a small island off the coast of Puerto Rico used for target practice by the United States Navy
+17781,Vietnam Socialist_Republic_of_Vietnam Viet_Nam Annam,a communist state in Indochina on the South China Sea; achieved independence from France in 1945
+17782,Vietnam_War Vietnam,a prolonged war (1954-1975) between the communist armies of North Vietnam who were supported by the Chinese and the armies of South Vietnam who were supported by the United States
+17783,Vietnamese Annamese,a native or inhabitant of Vietnam
+17784,Vietnamese Annamese Annamite,the Mon-Khmer language spoken in Vietnam
+17785,Vietnamese_monetary_unit,monetary unit in Vietnam
+17786,Vigee-Lebrun Elisabeth_Vigee-Lebrun Marie_Louise_Elisabeth_Vigee-Lebrun,French painter noted for her portraits (1755-1842)
+17787,Vigna genus_Vigna,genus of vines or erect herbs having trifoliate leaves and yellowish or purplish flowers; of warm or tropical regions; most species often placed in genus Phaseolus
+17788,Viking,any of the Scandinavian people who raided the coasts of Europe from the 8th to the 11th centuries
+17789,Villa Pancho_Villa Francisco_Villa Doroteo_Arango,Mexican revolutionary leader (1877-1923)
+17790,Villa-Lobos Heitor_Villa-Lobos,Brazilian composer (1887-1959)
+17791,Villahermosa Villa_Hermosa,a city in southeastern Mexico; the capital of the state of Tabasco
+17792,Villard Henry_Villard,United States railroad magnate and businessman (1835-1900)
+17793,Villon Francois_Villon,French poet (flourished around 1460)
+17794,Vilnius Vilna Vilno Wilno capital_of_Lithuania,the capital and largest city of Lithuania; located in southeastern Lithuania
+17795,Viminaria genus_Viminaria,one species: Australian leafless shrubs: swamp oak
+17796,Vina_del_Mar,a resort city on the Pacific in central Chile
+17797,Vinca genus_Vinca,periwinkles: low creeping evergreen perennials
+17798,Vincent's_angina Vincent's_infection trench_mouth,an acute communicable infection of the respiratory tract and mouth marked by ulceration of the mucous membrane
+17799,Vincetoxicum genus_Vincetoxicum,genus of chiefly tropical American vines having cordate leaves and large purple or greenish cymose flowers; supposedly having powers as an antidote
+17800,Vinogradoff Sir_Paul_Gavrilovich_Vinogradoff,British historian (born in Russia) (1854-1925)
+17801,Vinson Frederick_Moore_Vinson,United States jurist who served as chief justice of the Supreme Court (1890-1953)
+17802,Vinylite,any of various vinyl resins
+17803,Viola genus_Viola,large genus of flowering herbs of temperate regions
+17804,Violaceae family_Violaceae violet_family,a family of order Parietales including the genera Viola, Hybanthus, Hymenanthera, Melicytus
+17805,Vipera genus_Vipera,type genus of the Viperidae
+17806,Viperidae family_Viperidae,Old World vipers
+17807,Virchow Rudolf_Virchow Rudolf_Karl_Virchow,German pathologist who recognized that all cells come from cells by binary fission and who emphasized cellular abnormalities in disease (1821-1902)
+17808,Vireonidae family_Vireonidae,small insectivorous American songbirds
+17809,Virgil Vergil Publius_Vergilius_Maro,a Roman poet; author of the epic poem `Aeneid' (70-19 BC)
+17810,Virgilia genus_Virgilia,genus of South African trees having pinnate leaves and rose-purple flowers followed by leathery pods
+17811,Virgin_Birth Nativity,the theological doctrine that Jesus Christ had no human father; Christians believe that Jesus's birth fulfilled Old Testament prophecies and was attended by miracles; the Nativity is celebrated at Christmas
+17812,Virgin_Islands,a group of islands in northeastern West Indies (east of Puerto Rico) discovered by Christopher Columbus in 1493; owned by United States and Britain
+17813,Virgin_Islands_National_Park,a national park in the Virgin Islands having tropical plants and animals; sandy beaches and coral reefs
+17814,Virgin_Mary bloody_shame,a Bloody Mary made without alcohol
+17815,Virginia,one of the British colonies that formed the United States
+17816,Virginia,a town in northeastern Minnesota in the heart of the Mesabi Range
+17817,Virginia Old_Dominion Old_Dominion_State VA Va.,a state in the eastern United States; one of the original 13 colonies; one of the Confederate States in the American Civil War
+17818,Virginia_Beach,the largest city in Virginia; long overshadowed by Norfolk but growing rapidly since 1970; with 28 miles of public beaches tourism is a major factor in the economy; site of three United States Navy bases
+17819,Virginia_bluebell Virginia_cowslip Mertensia_virginica,smooth erect herb of eastern North America having entire leaves and showy blue flowers that are pink in bud
+17820,Virginia_chain_fern Woodwardia_virginica,North American fern
+17821,Virginia_creeper American_ivy woodbine Parthenocissus_quinquefolia,common North American vine with compound leaves and bluish-black berrylike fruit
+17822,Virginia_crownbeard frostweed frost-weed Verbesina_virginica,tall perennial herb having clusters of white flowers; the eastern United States
+17823,Virginia_deer white_tail whitetail white-tailed_deer whitetail_deer Odocoileus_Virginianus,common North American deer; tail has a white underside
+17824,Virginia_ham,a lean hickory-smoked ham; has dark red meat
+17825,Virginia_mallow Sida_hermaphrodita,tall handsome perennial herb of southeastern United States having maplelike leaves and white flowers
+17826,Virginia_oyster,common edible oyster of Atlantic coast of North America
+17827,Virginia_reel reel,an American country dance which starts with the couples facing each other in two lines
+17828,Virginia_snakeroot Virginia_serpentaria Virginia_serpentary Aristolochia_serpentaria,birthwort of the eastern United States woodlands
+17829,Virginia_spring_beauty Claytonia_virginica,small cormous perennial grown for its low rosette of succulent foliage and racemes of pink-tinged white flowers; eastern North America
+17830,Virginia_strawberry scarlet_strawberry Fragaria_virginiana,North American wild strawberry with sweet scarlet fruit; a source of many cultivated strawberries
+17831,Virginia_thimbleweed Anemone_virginiana,thimbleweed of central and eastern North America
+17832,Virginia_waterleaf Shawnee_salad shawny Indian_salad John's_cabbage Hydrophyllum_virginianum,showy perennial herb with white flowers; leaves sometimes used as edible greens in southeastern United States
+17833,Virginian,a native or resident of Virginia
+17834,Virginian_stock Virginia_stock Malcolmia_maritima,erect branching herb cultivated for its loose racemes of fragrant white or pink or red or lilac flowers; native to sands and sea cliffs of southwestern Greece and southern Albania
+17835,Virginian_witch_hazel Hamamelis_virginiana,common shrub of eastern North America having small yellow flowers after the leaves have fallen
+17836,Virgo,a large zodiacal constellation on the equator; between Leo and Libra
+17837,Virgo Virgin,(astrology) a person who is born while the sun is in Virgo
+17838,Virgo Virgo_the_Virgin Virgin,the sixth sign of the zodiac; the sun is in this sign from about August 23 to September 22
+17839,Visayan Bisayan,a member of the most numerous indigenous people of the Philippines
+17840,Visayan_Islands Bisayas,group of islands in the central Philippines
+17841,Viscaceae family_Viscaceae mistletoe_family,in some classifications considered a subfamily of Loranthaceae
+17842,Visconti Luchino_Visconti Don_Luchino_Visconti_Conte_di_Modrone,Italian filmmaker (1906-1976)
+17843,Viscum genus_Viscum,type genus of the Viscaceae: Old World evergreen shrubs parasitic on many trees including oaks but especially apple trees, poplars, aspens and cottonwoods
+17844,Vishnu,the sustainer; a Hindu divinity worshipped as the preserver of worlds
+17845,Visigoth,a member of the western group of Goths who sacked Rome and created a kingdom in present-day Spain and southern France
+17846,Vistula Vistula_River,a European river; flows into the Baltic Sea
+17847,Vitaceae family_Vitaceae Vitidaceae grapevine_family,a family of vines belonging to order Rhamnales
+17848,Vitharr Vithar Vidar,(Norse mythology) one of the Aesir; son of Odin; avenges his parent by slaying Fenrir at Ragnarok
+17849,Viti_Levu,a volcanic island in the Fijis
+17850,Vitis genus_Vitis,the type genus of the family Vitaceae; woody vines with simple leaves and small flowers; includes a wide variety of grapes
+17851,Vittaria genus_Vittaria,tropical epiphytic ferns with straplike fronds
+17852,Vittariaceae family_Vittariaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems: genus Vittaria
+17853,Vitus St._Vitus,Christian martyr and patron of those who suffer from epilepsy and Sydenham's chorea (died around 300)
+17854,Vivaldi Antonio_Vivaldi Antonio_Lucio_Vivaldi,Italian baroque composer and violinist (1675-1741)
+17855,Viverra genus_Viverra,type genus of the family Viverridae
+17856,Viverricula genus_Viverricula,a genus of Viverridae
+17857,Viverridae family_Viverridae Viverrinae family_Viverrinae,genets; civets; mongooses
+17858,Viyella,a fabric made from a twilled mixture of cotton and wool
+17859,Vizcaino Sebastian_Vizcaino,Spanish explorer who was the first European to explore the California coast (1550-1615)
+17860,Vladivostok,a seaport in the Asian part of Russia
+17861,Vlaminck Maurice_de_Vlaminck,French painter and exponent of fauvism (1876-1958)
+17862,Vogul Mansi,a member of a nomadic people of the northern Urals
+17863,Volans,a small constellation in the polar region of the southern hemisphere near Dorado and Carina
+17864,Volapuk,one of the first artificial language constructed for use as an auxiliary international language; based largely on English but with some German and French and Latin roots
+17865,Volcano_Islands,a group of Japanese Islands in the northwestern Pacific Ocean to the north of the Marianas
+17866,Volga Volga_River,a Russian river; the longest river in Europe; flows into the Caspian Sea
+17867,Volgaic,a group of Finnic languages spoken around the Volga river
+17868,Volgograd Stalingrad Tsaritsyn,a city in the European part of Russia on the Volga; site of German defeat in World War II in the winter of 1942-43
+17869,Volkhov Volkhov_River,a river in northwestern Russia flowing generally north into Lake Ladoga
+17870,Volta,a river in Ghana that flows south to the Bight of Benin
+17871,Volta Count_Alessandro_Volta Conte_Alessandro_Volta Conte_Alessandro_Giuseppe_Antonio_Anastasio_Volta,Italian physicist after whom the volt is named; studied electric currents and invented the voltaic pile (1745-1827)
+17872,Voltaire Arouet Francois-Marie_Arouet,French writer who was the embodiment of 18th century Enlightenment (1694-1778)
+17873,Volund,(Norse mythology) a wonderful smith; identified with Anglo-Saxon Wayland and Teutonic Wieland
+17874,Volvaria genus_Volvaria,agarics having pink spores and a distinct volva
+17875,Volvaria_bombycina,a parasite on various trees
+17876,Volvariaceae family_Volvariaceae,a family of fungi belonging to the order Agaricales
+17877,Volvariella genus_Volvariella,an important genus of mushrooms in the Orient
+17878,Volvariella_bombycina,a mushroom with a dry yellowish to white fibrillose cap
+17879,Volvocaceae family_Volvocaceae,unicellular or colonial biflagellate free-swimming flagellates
+17880,Volvocales order_Volvocales,chiefly freshwater green algae; solitary or colonial
+17881,Volvox genus_Volvox,type genus of the Volvocaceae; minute pale green flagellates occurring in tiny spherical colonies; minute flagella rotate the colony about an axis
+17882,Vombatidae family_Vombatidae,wombats
+17883,Vonnegut Kurt_Vonnegut,United States writer whose novels and short stories are a mixture of realism and satire and science fiction (born in 1922)
+17884,Vouvray,a dry white French wine (either still or sparkling) made in the Loire valley
+17885,Voyageurs_National_Park,a national park in Minnesota having ancient rock outcroppings and evergreen forests
+17886,Voznesenski Andrei_Voznesenski,Russian poet (born in 1933)
+17887,Vuillard Edouard_Vuillard Jean_Edouard_Vuillard,French painter (1868-1940)
+17888,Vulcan,(Roman mythology) god of fire and metal working; counterpart of Greek Hephaestus
+17889,Vulgar_Latin,nonclassical Latin dialects spoken in the Roman Empire; source of Romance languages
+17890,Vulgate,the Latin edition of the Bible translated from Hebrew and Greek mainly by St. Jerome at the end of the 4th century; as revised in 1592 it was adopted as the official text for the Roman Catholic Church
+17891,Vulpecula,a constellation in the northern hemisphere near Cygnus and Sagitta
+17892,Vulpes genus_Vulpes,foxes
+17893,Vultur genus_Vultur,a bird that is usually restricted to the Andean condor
+17894,W w double-u,the 23rd letter of the Roman alphabet
+17895,WASP white_Anglo-Saxon_Protestant,a white person of Anglo-Saxon ancestry who belongs to a Protestant denomination
+17896,WATS WATS_line,a telephone line;long distance service at fixed rates for fixed zones; an acronym for wide area telephone service
+17897,Wabash Wabash_River,a tributary of the Ohio River that rises in western Ohio and flows southwestward across Indiana
+17898,Wac,a member of the Women's Army Corps
+17899,Waco,a city in east central Texas
+17900,Wade Virginia_Wade,English tennis player who won many women's singles titles (born in 1945)
+17901,Wagga_Wagga,a town on the Murrumbidgee River in New South Wales; agricultural trading center
+17902,Wagner,the music of Wagner; "they say that Hitler listened only to Wagner"
+17903,Wagner Otto_Wagner,Austrian architect and pioneer of modern architecture (1841-1918)
+17904,Wagner Richard_Wagner Wilhelm_Richard_Wagner,German composer of operas and inventor of the musical drama in which drama and spectacle and music are fused (1813-1883)
+17905,Wagnerian,a follower of the theories or an admirer of the music of Richard Wagner
+17906,Wagram,a town in northeastern Austria
+17907,Wagram battle_of_Wagram,a battle in the Napoleonic campaigns (1809); Napoleon defeated the Austrians
+17908,Wahhabi Wahabi,a member of a strictly orthodox Sunni Muslim sect from Saudi Arabia; strives to purify Islamic beliefs and rejects any innovation occurring after the 3rd century of Islam; "Osama bin Laden is said to be a Wahhabi Muslim"
+17909,Wahhabism Wahabism,a conservative and intolerant form of Islam that is practiced in Saudi Arabia; "Osama bin Laden and his followers practice Wahhabism"
+17910,Waikiki,a well-known beach and resort area on Oahu Island to the southeast of Honolulu
+17911,Wailing_Wall,a wall in Jerusalem; sacred to Jews as a place of prayer and lamentation; its stones are believed to have formed part of the Temple of Solomon
+17912,Wain John_Wain John_Barrington_Wain,English writer (1925-1994)
+17913,Waite Morrison_Waite Morrison_R._Waite Morrison_Remick_Waite,United States jurist who was appointed chief justice of the United States Supreme Court in 1874 by President Grant (1816-1888)
+17914,Wajda Andrzej_Wajda,Polish filmmaker (born in 1929)
+17915,Wakashan,a member of one of the peoples in British Columbia and Washington who speak the Wakashan language
+17916,Wakashan Wakashan_language,a family of North American Indian languages of British Columbia and Washington
+17917,Wake_Island Wake,an island in the western Pacific between Guam and Hawaii
+17918,Walapai Hualapai Hualpai,a member of a North American people formerly living in the Colorado river valley in Arizona
+17919,Walapai Hualapai Hualpai,the Yuman language spoken by the Walapai
+17920,Walbiri Warlpiri,a language of Australian aborigines
+17921,Waldenses Vaudois,a Christian sect of dissenters that originated in southern France in the late 12th century adopted Calvinist doctrines in the 16th century
+17922,Waldheim Kurt_Waldheim,Austrian diplomat who was Secretary General of the United Nations from 1972 to 1981; in 1986 he was elected president of Austria in spite of worldwide allegations that he had direct knowledge of Nazi atrocities during World War II (born in 1918)
+17923,Waldorf_salad,typically made of apples and celery with nuts or raisins and dressed with mayonnaise
+17924,Wales Cymru Cambria,one of the four countries that make up the United Kingdom of Great Britain and Northern Ireland; during Roman times the region was known as Cambria
+17925,Walesa Lech_Walesa,Polish labor leader and statesman (born in 1943)
+17926,Walker Alice_Walker Alice_Malsenior_Walker,United States writer (born in 1944)
+17927,Walker John_Walker,New Zealand runner who in 1975 became the first person to run a mile in less that 3 minutes and 50 seconds (born in 1952)
+17928,Walker_hound Walker_foxhound,an American breed of foxhound
+17929,Walkman,(trademark) a pocket-sized stereo system with light weight earphones
+17930,Wall_Street Wall_St.,a street in lower Manhattan where the New York Stock Exchange is located; symbol of American finance
+17931,Wall_Street the_Street,used to allude to the securities industry of the United States
+17932,Walla_Walla,a town in southeastern Washington near the Oregon border
+17933,Wallace Alfred_Russel_Wallace,English naturalist who formulated a concept of evolution that resembled Charles Darwin's (1823-1913)
+17934,Wallace Edgar_Wallace Richard_Horatio_Edgar_Wallace,English writer noted for his crime novels (1875-1932)
+17935,Wallace Sir_William_Wallace,Scottish insurgent who led the resistance to Edward I; in 1297 he gained control of Scotland briefly until Edward invaded Scotland again and defeated Wallace and subsequently executed him (1270-1305)
+17936,Wallenstein Albrecht_Eusebius_Wenzel_von_Wallenstein,Austrian general who fought for the Hapsburgs during the Thirty Years' War (1583-1634)
+17937,Waller Fats_Waller Thomas_Wright_Waller,United States jazz musician (1904-1943)
+17938,Walloon,a member of the French-speaking people living in Belgium
+17939,Walloon,a dialect of French spoken in Belgium and adjacent parts of France
+17940,Walloons,an ethnic group speaking a dialect of French and living in southern and eastern Belgium and neighboring parts of France
+17941,Walpole Horace_Walpole Horatio_Walpole Fourth_Earl_of_Orford,English writer and historian; son of Sir Robert Walpole (1717-1797)
+17942,Walpole Robert_Walpole Sir_Robert_Walpole First_Earl_of_Orford,Englishman and Whig statesman who (under George I) was effectively the first British prime minister (1676-1745)
+17943,Walpurgis_Night,eve of May Day
+17944,Walt_Disney_World,a large amusement park established in 1971 to the southwest of Orlando
+17945,Walt_Whitman_Bridge,a suspension bridge across the Delaware River
+17946,Walter Bruno_Walter,German conductor (1876-1962)
+17947,Walter_Mitty,fictional character created by James Thurber who daydreams about his adventures and triumphs
+17948,Walton E._T._S._Walton Ernest_Walton Ernest_Thomas_Sinton_Walton,Irish physicist who (with Sir John Cockcroft in 1931) first split an atom (1903-1995)
+17949,Walton Izaak_Walton,English writer remember for his treatise on fishing (1593-1683)
+17950,Walton William_Walton Sir_William_Walton Sir_William_Turner_Walton,English composer (1902-1983)
+17951,Wampanoag,a member of the Algonquian people of Rhode Island and Massachusetts who greeted the Pilgrims
+17952,Wanamaker John_Wanamaker,United States businessman whose business grew into one of the first department stores (1838-1922)
+17953,Wandering_Jew,a legendary Jew condemned to roam the world for mocking Jesus at the Crucifixion
+17954,Wankel_engine Wankel_rotary_engine epitrochoidal_engine,a rotary engine that is a four-stroke internal-combustion engine without reciprocating parts
+17955,War_Admiral,thoroughbred that won the triple crown in 1937
+17956,War_Department,a former executive department of the United States government; created in 1789 and combined with the Navy Department in 1947
+17957,War_of_1812,a war (1812-1814) between the United States and England which was trying to interfere with American trade with France
+17958,War_of_Greek_Independence,the Greeks rebelled against Turkish rule in 1821; with the support of England and France and Russia they won independence in 1828 at Navarino (although the country included only half its present size)
+17959,War_of_the_Austrian_Succession,Prussia and Austria fought over Silesia and most of the rest of Europe took sides; 1740-1748
+17960,War_of_the_Grand_Alliance War_of_the_League_of_Augsburg,an aggressive war waged by Louis XIV against Spain and the Holy Roman Empire and England and Holland and other states (1689-1697)
+17961,War_of_the_Roses Wars_of_the_Roses,struggle for the English throne (1455-1485) between the house of York (white rose) and the house of Lancaster (red rose) ending with the accession of the Tudor monarch Henry VII
+17962,War_of_the_Spanish_Succession,a general war in Europe (1701-1714) that broke out when Louis XIV installed his grandson on the throne of Spain; England and Holland hoped to limit Louis' power
+17963,Warburg Aby_Warburg Aby_Moritz_Warburg,German art historian (1866-1929)
+17964,Warburg Otto_Heinrich_Warburg,German biochemist who pioneered the use of chemical techniques in biological investigations; noted for studies of cellular respiration (1883-1970)
+17965,Ward Barbara_Ward Baroness_Jackson_of_Lodsworth,English economist and conservationist (1914-1981)
+17966,Ward Montgomery_Ward Aaron_Montgomery_Ward,United States businessman who in 1872 established a successful mail-order business (1843-1913)
+17967,Ward Mrs._Humphrey_Ward Mary_Augusta_Arnold_Ward,English writer of novels who was an active opponent of the women's suffrage movement (1851-1920)
+17968,Warhol Andy_Warhol,United States artist who was a leader of the Pop Art movement (1930-1987)
+17969,Warji,a Chadic language spoken in northern Nigeria
+17970,Warner Charles_Dudley_Warner,United States filmmaker who with his brothers founded the movie studio that produced the first talking picture (1881-1958)
+17971,Warren Earl_Warren,United States jurist who served as chief justice of the United States Supreme Court (1891-1974)
+17972,Warren Robert_Penn_Warren,United States writer and poet (1905-1989)
+17973,Warszawa Warsaw capital_of_Poland,the capital and largest city of Poland; located in central Poland
+17974,Warwick Earl_of_Warwick Richard_Neville Kingmaker,English statesman; during the War of the Roses he fought first for the house of York and secured the throne for Edward IV and then changed sides to fight for the house of Lancaster and secured the throne for Henry VI (1428-1471)
+17975,Washington Booker_T._Washington Booker_Taliaferro_Washington,United States educator who was born a slave but became educated and founded a college at Tuskegee in Alabama (1856-1915)
+17976,Washington Evergreen_State WA Wash.,a state in northwestern United States on the Pacific
+17977,Washington George_Washington President_Washington,1st President of the United States; commander-in-chief of the Continental Army during the American Revolution (1732-1799)
+17978,Washington Washington_D.C. American_capital capital_of_the_United_States,the capital of the United States in the District of Columbia and a tourist mecca; George Washington commissioned Charles L'Enfant to lay out the city in 1791
+17979,Washington's_Birthday February_22,the day on which George Washington is remembered
+17980,Washington_Monument,a stone obelisk built in Washington in 1884 to honor George Washington; 555 feet tall
+17981,Washingtonian,a native or resident of the city of Washington
+17982,Washingtonian,a native or resident of the state of Washington
+17983,Wassermann August_von_Wassermann,German bacteriologist who developed a diagnostic test for syphilis (1866-1925)
+17984,Wassermann_test Wasserman_reaction Wassermann,a blood test to detect syphilis; a complement fixation test is used to detect antibodies to the syphilis organism treponema; a positive reaction indicates the presence of antibodies and therefore syphilis infection
+17985,Waterbury,a city in west central Connecticut
+17986,Waterford,a port city in southern Ireland; famous for glass industry
+17987,Watergate Watergate_scandal,a political scandal involving abuse of power and bribery and obstruction of justice; led to the resignation of Richard Nixon in 1974
+17988,Waterhouse-Friderichsen_syndrome,syndrome associated with bacterial meningitis; marked by sudden high fever and skin discoloration and petechiae with hemorrhage into the adrenal glands and cardiovascular collapse
+17989,Waterloo,a town in central Belgium where in 1815 Napoleon met his final defeat
+17990,Waterloo Battle_of_Waterloo,the battle on 18 June 1815 in which Prussian and British forces under Blucher and the Duke of Wellington routed the French forces under Napoleon
+17991,Waters Ethel_Waters,United States actress and singer (1896-1977)
+17992,Watertown,a town in southeastern Wisconsin
+17993,Watertown,a town in northern New York
+17994,Watson James_Watson James_Dewey_Watson,United States geneticist who (with Crick in 1953) helped discover the helical structure of DNA (born in 1928)
+17995,Watson John_Broadus_Watson,United States psychologist considered the founder of behavioristic psychology (1878-1958)
+17996,Watson Thomas_Augustus_Watson,United States telephone engineer who assisted Alexander Graham Bell in his experiments (1854-1934)
+17997,Watt James_Watt,Scottish engineer and inventor whose improvements in the steam engine led to its wide use in industry (1736-1819)
+17998,Watteau Jean_Antoine_Watteau,French painter (1684-1721)
+17999,Watts Isaac_Watts,English poet and theologian (1674-1748)
+18000,Waugh Evelyn_Waugh Evelyn_Arthur_Saint_John_Waugh,English author of satirical novels (1903-1966)
+18001,Wausau,a town in north central Wisconsin
+18002,Wave,a member of the women's reserve of the United States Navy; originally organized during World War II but now no longer a separate branch
+18003,Wavell Archibald_Percival_Wavell First_Earl_Wavell,British field marshal in North Africa in World War II; he defeated the Italians before being defeated by the Germans (1883-1950)
+18004,Wayland Wayland_the_Smith Wieland,(European mythology) a supernatural smith and king of the elves; identified with Norse Volund
+18005,Wayne Anthony_Wayne Mad_Anthony_Wayne,American general during the American Revolution (1745-1796)
+18006,Wayne John_Wayne Duke_Wayne,United States film actor who played tough heroes (1907-1979)
+18007,Ways_and_Means_Committee,a permanent committee of the United States House of Representatives that makes recommendations to the US House on all bills that would raise revenue
+18008,Web_Map_Service Web_Map_Server,a computer program that produces maps of spatially referenced data dynamically from geographic information
+18009,Webb Beatrice_Webb Martha_Beatrice_Potter_Webb,English writer and a central member of the Fabian Society (1858-1943)
+18010,Webb Sidney_Webb Sidney_James_Webb First_Baron_Passfield,English sociologist and economist and a central member of the Fabian Society (1859-1947)
+18011,Weber Carl_Maria_von_Weber Baron_Karl_Maria_Friedrich_Ernst_von_Weber,German conductor and composer of romantic operas (1786-1826)
+18012,Weber E._H._Weber Ernst_Heinrich_Weber,German physiologist who studied sensory responses to stimuli and is considered the father of psychophysics (1795-1878)
+18013,Weber Max_Weber,United States abstract painter (born in Russia) (1881-1961)
+18014,Weber Max_Weber,German sociologist and pioneer of the analytic method in sociology (1864-1920)
+18015,Weber Wilhelm_Eduard_Weber,German physicist and brother of E. H. Weber; noted for his studies of terrestrial magnetism (1804-1891)
+18016,Weber's_law,(psychophysics) the concept that a just-noticeable difference in a stimulus is proportional to the magnitude of the original stimulus; "Weber's law explains why you don't notice your headlights are on in the daytime"
+18017,Webster Daniel_Webster,United States politician and orator (1782-1817)
+18018,Webster John_Webster,English playwright (1580-1625)
+18019,Webster Noah_Webster,United States lexicographer (1758-1843)
+18020,Weddell_Sea,an arm of the south Atlantic in Antarctica to the east of the Antarctic Peninsula
+18021,Wedgwood,a type of pottery made by Josiah Wedgwood and his successors; typically has a classical decoration in white on a blue background
+18022,Wedgwood Josiah_Wedgwood,English potter (1730-1795)
+18023,Wednesday Midweek Wed,the fourth day of the week; the third working day
+18024,Wegener Alfred_Lothar_Wegener,German geophysicist who proposed the theory of continental drift (1880-1930)
+18025,Wei Wei_dynasty,any of several imperial dynasties of China ruling from 220 to 265 and from 386 to 556
+18026,Weil Andre_Weil,United States mathematician (born in France) (1906-1998)
+18027,Weil Simone_Weil,French philosopher (1909-1943)
+18028,Weil's_disease,a severe form of leptospirosis in human beings
+18029,Weill Kurt_Weill,German composer; collaborated with Bertolt Brecht (1900-1950)
+18030,Weimar,a German city near Leipzig; scene of the adoption in 1919 of the constitution of the Weimar Republic that lasted until 1933
+18031,Weimar_Republic,the German republic founded at Weimar in 1919; "The Weimar Republic was overthrown in 1933 and replaced by the Third Reich"
+18032,Weimaraner,large breed of hound having a smooth greyish coat; originated in Germany
+18033,Weinberg Steven_Weinberg,United States theoretical physicist (born in 1933)
+18034,Weismann August_Friedrich_Leopold_Weismann,German biologist who was one of the founders of modern genetics; his theory of genetic transmission ruled out the possibility of transmitting acquired characteristics (1834-1914)
+18035,Weissbier white_beer wheat_beer,a general name for beers made from wheat by top fermentation; usually very pale and cloudy and effervescent
+18036,Weisshorn,a mountain in the Alps in Switzerland (14,804 feet high)
+18037,Weizenbier,a general name in southern Germany for wheat beers
+18038,Weizenbock,a German wheat beer of bock strength
+18039,Weizmann Chaim_Weizmann Chaim_Azriel_Weizmann,Israeli statesman who persuaded the United States to recognize the new state of Israel and became its first president (1874-1952)
+18040,Weld Theodore_Dwight_Weld,United States abolitionist (1803-1895)
+18041,Welles Orson_Welles George_Orson_Welles,United States actor and filmmaker (1915-1985)
+18042,Wellington Duke_of_Wellington First_Duke_of_Wellington Arthur_Wellesley Iron_Duke,British general and statesman; he defeated Napoleon at Waterloo; subsequently served as Prime Minister (1769-1852)
+18043,Wellington capital_of_New_Zealand,the capital of New Zealand
+18044,Wells H._G._Wells Herbert_George_Wells,prolific English writer best known for his science-fiction novels; he also wrote on contemporary social problems and wrote popular accounts of history and science (1866-1946)
+18045,Welsh Cymric,a Celtic language of Wales
+18046,Welsh Welsh_Black,a breed of dual-purpose cattle developed in Wales
+18047,Welsh_onion Japanese_leek Allium_fistulosum,Asiatic onion with slender bulbs; used as early green onions
+18048,Welsh_pony,breed of small ponies originally from Wales
+18049,Welsh_poppy Meconopsis_cambrica,widely cultivated west European plant with showy pale yellow flowers
+18050,Welsh_rarebit Welsh_rabbit rarebit,cheese melted with ale or beer served over toast
+18051,Welsh_springer_spaniel,a red-and-white breed slightly smaller than the English springer spaniel
+18052,Welsh_terrier,wire-haired terrier resembling Airedales but smaller; developed in Wales for hunting
+18053,Welshman Welsh Cambrian Cymry,a native or resident of Wales
+18054,Weltanschauung world_view,a comprehensive view of the world and human life
+18055,Welty Eudora_Welty,United States writer about rural southern life (1909-2001)
+18056,Welwitschiaceae family_Welwitschiaceae,in some classifications included in the Gnetaceae
+18057,Wembley,a southeastern part of Greater London that is the site of the English national soccer stadium
+18058,Wen_Ch'ang Wen-Ti,Chinese god of literature
+18059,Werdnig-Hoffman_disease,autosomal recessive disease in which the degeneration of spinal nerve cells and brain nerve cells leads to atrophy of skeletal muscles and flaccid paralysis; death usually occurs in early childhood
+18060,Werfel Franz_Werfel,United States writer (1890-1945)
+18061,Wernicke Karl_Wernicke,German neurologist best known for his studies of aphasia (1848-1905)
+18062,Wernicke's_aphasia fluent_aphasia receptive_aphasia sensory_aphasia impressive_aphasia,aphasia characterized by fluent but meaningless speech and severe impairment of the ability understand spoken or written words
+18063,Wernicke's_area Wernicke's_center,the auditory word center; located in the posterior part of the superior temporal convolution in most people
+18064,Wernicke's_encephalopathy,inflammatory degenerative disease of the brain caused by thiamine deficiency that is usually associated with alcoholism
+18065,Weser Weser_River,a river in northwestern Germany that flows northward to the North Sea near Bremerhaven
+18066,Wesley Charles_Wesley,English clergyman and brother of John Wesley who wrote many hymns (1707-1788)
+18067,Wesley John_Wesley,English clergyman and founder of Methodism (1703-1791)
+18068,Wesleyan,a follower of Wesleyanism
+18069,Wesleyan_Methodist_Church Wesleyan_Methodists,the original Methodist Church
+18070,Wesleyanism Wesleyism,evangelical principles taught by John Wesley
+18071,Wessex,a Saxon kingdom in southwestern England that became the most powerful English kingdom by the 10th century
+18072,West Benjamin_West,English painter (born in America) who became the second president of the Royal Academy (1738-1820)
+18073,West Mae_West,United States film actress (1892-1980)
+18074,West Occident,the countries of (originally) Europe and (now including) North America and South America
+18075,West Rebecca_West Dame_Rebecca_West Cicily_Isabel_Fairfield,British writer (born in Ireland) (1892-1983)
+18076,West western_United_States,the region of the United States lying to the west of the Mississippi River
+18077,West-sider,a resident of the west side of Manhattan in New York City
+18078,West_Africa,an area of western Africa between the Sahara Desert and the Gulf of Guinea
+18079,West_African,a group of languages spoken in the extreme western part of West Africa
+18080,West_Bank,an area between Israel and Jordan on the west bank of the Jordan river; populated largely by Palestinians
+18081,West_Bengal,a state in eastern India
+18082,West_Berlin,the part of Berlin under United States and British and French control until 1989
+18083,West_Berliner,an inhabitant of West Berlin
+18084,West_Chadic,a group of Chadic languages spoken in northern Nigeria; Hausa in the most important member
+18085,West_Coast,the western seaboard of the United States from Washington to southern California
+18086,West_Country,the southwestern part of England (including Cornwall and Devon and Somerset)
+18087,West_End,the part of west central London containing the main entertainment and shopping areas
+18088,West_Germanic West_Germanic_language,a branch of the Germanic languages
+18089,West_Germany Federal_Republic_of_Germany,a republic in north central Europe on the North Sea; established in 1949 from the zones of Germany occupied by the British and French and Americans after the German defeat; reunified with East Germany in 1990
+18090,West_Highland_white_terrier,small white long-coated terrier developed in Scotland
+18091,West_Indian,a native or inhabitant of the West Indies
+18092,West_Indian_jasmine pagoda_tree Plumeria_alba,tall sparingly branched conical tree having large fragrant yellow flowers with white centers
+18093,West_Indies the_Indies,the string of islands between North America and South America; a popular resort area
+18094,West_Malaysia Malaya Peninsular_Malaysia,the region of Malaysia on the Malay Peninsula; shares a land border with Thailand to the north
+18095,West_Midland,a dialect of Middle English
+18096,West_Nile_encephalitis,encephalitis caused by the West Nile virus; can be fatal in humans and horses and birds
+18097,West_Nile_virus West_Nile_encephalitis_virus,the flavivirus that causes West Nile encephalitis
+18098,West_Palm_Beach,a town in southeast Florida on the mainland opposite Palm Beach; founded as a commercial center for Palm Beach
+18099,West_Point,United States Army installation on the west bank of Hudson river to the north of New York City; site of United States Military Academy
+18100,West_Saxon,an inhabitant of Wessex
+18101,West_Saxon,a literary dialect of Old English
+18102,West_Sussex,a county in southern England on the English Channel
+18103,West_Virginia Mountain_State WV W.V.,a state in east central United States
+18104,West_Virginian,a native or resident of West Virginia
+18105,West_Yorkshire,a metropolitan county in northern England
+18106,Western horse_opera,a film about life in the western United States during the period of exploration and development
+18107,Western_Australia,a state containing the western third of Australia
+18108,Western_Australia_coral_pea Hardenbergia_comnptoniana,vigorous climber of the forests of western Australia; grown for their dense racemes of attractive bright rose-purple flowers
+18109,Western_Malayo-Polynesian,a western subfamily of Malayo-Polynesian languages
+18110,Western_Roman_Empire Western_Empire,the western part after the Roman Empire was divided in 395; it lasted only until 476
+18111,Western_Sahara Spanish_Sahara,an area in northwestern Africa with rich phosphate deposits; under Moroccan control since 1992
+18112,Western_Samoan_monetary_unit,monetary unit in Western Samoa
+18113,Western_box_turtle Terrapene_ornata,primarily a prairie turtle of western United States and northern Mexico
+18114,Western_culture Western_civilization,the modern culture of western Europe and North America; "when Ghandi was asked what he thought of Western civilization he said he thought it would be a good idea"
+18115,Western_diamondback Western_diamondback_rattlesnake Crotalus_atrox,largest and most dangerous North American snake; of southwestern United States and Mexico
+18116,Western_mountain_ash Sorbus_sitchensis,an ash of the western coast of North America
+18117,Western_pasqueflower Pulsatilla_occidentalis Anemone_occidentalis,of western North America
+18118,Western_ribbon_snake Thamnophis_proximus,yellow- or reddish-striped snake of temperate woodlands and grasslands to tropics
+18119,Western_sand_cherry Rocky_Mountains_cherry Prunus_besseyi,dwarf ornamental shrub of western United States having large black to red and yellow sweet edible fruit
+18120,Western_silvery_aster,a variety of aster
+18121,Westernization Westernisation,assimilation of Western culture; the social process of becoming familiar with or converting to the customs and practices of Western civilization
+18122,Westinghouse George_Westinghouse,United States inventor and manufacturer (1846-1914)
+18123,Westminster City_of_Westminster,a borough of Greater London on the Thames; contains Buckingham Palace and the Houses of Parliament and Westminster Abbey
+18124,Westminster_Abbey,a famous Gothic church of St. Peter in Westminster, London on the site of a former Benedictine monastery; "Westminster Abbey is the scene of the coronations of almost all English monarchs"; "Distinguished English subjects are buried in Westminster Abbey"
+18125,Weston Edward_Weston,United States photographer(1886-1958)
+18126,Weston_cell cadmium_cell,a standard voltaic cell (trademark Weston)
+18127,Wharton Edith_Wharton Edith_Newbold_Jones_Wharton,United States novelist (1862-1937)
+18128,Wheatley Phillis_Wheatley,American poet (born in Africa) who was the first recognized Black writer in America (1753-1784)
+18129,Wheatstone Sir_Charles_Wheatstone,English physicist and inventor who devised the Wheatstone bridge (1802-1875)
+18130,Wheatstone_bridge,a bridge used to measure resistances
+18131,Wheeler Sir_Mortimer_Wheeler Sir_Robert_Eric_Mortimer_Wheeler,Scottish archaeologist (1890-1976)
+18132,Wheeler_Peak,a mountain peak in northeastern New Mexico in the Rocky Mountains
+18133,Wheeling,a city in the northern panhandle of West Virginia on the Ohio river
+18134,Whig,a member of the political party that urged social reform in 18th and 19th century England; was the opposition party to the Tories
+18135,Whig,a supporter of the American Revolution
+18136,Whig,a member of the Whig Party that existed in the United States before the American Civil War
+18137,Whig_Party,a former political party in the United States; formed in 1834 in opposition to the Democratic Party; advocated a loose interpretation of the Constitution and high protective tariffs
+18138,Whipple's_penstemon Penstemon_whippleanus,wine and lavender to purple and black flowers in several clusters on the upper half of leafy stems; Montana south through the Rocky Mountains to Arizona and New Mexico
+18139,Whirlaway,thoroughbred that won the triple crown in 1941
+18140,Whistler James_Abbott_McNeill_Whistler,United States painter (1834-1903)
+18141,Whit-Tuesday Whitsun_Tuesday,the day after Whitmonday
+18142,White Andrew_D._White Andrew_Dickson_White,United States educator who in 1865 (with Ezra Cornell) founded Cornell University and served as its first president (1832-1918)
+18143,White E._B._White Elwyn_Brooks_White,United States writer noted for his humorous essays (1899-1985)
+18144,White Edward_White Edward_D._White Edward_Douglas_White_Jr.,United States jurist appointed chief justice of the United States Supreme Court in 1910 by President Taft; noted for his work on antitrust legislation (1845-1921)
+18145,White Patrick_White Patrick_Victor_Martindale_White,Australian writer (1912-1990)
+18146,White Stanford_White,United States architect (1853-1906)
+18147,White T._H._White Theodore_Harold_White,United States political journalist (1915-1986)
+18148,White White_River,a tributary of the Mississippi River that flows southeastward through northern Arkansas and southern Missouri
+18149,White White_person Caucasian,a Caucasian
+18150,White_House,the government building that serves as the residence and office of the President of the United States
+18151,White_House EXEC,the chief executive department of the United States government
+18152,White_Nile,a headstream of the Nile; joins the Blue Nile at Khartoum to form the Nile
+18153,White_Russian,a cocktail made with vodka, coffee liqueur, and milk or cream
+18154,White_Sea,a large inlet of the Barents Sea in the northwestern part of European Russia
+18155,White_Tai,a branch of the Tai languages
+18156,Whitehall,a wide street in London stretching from Trafalgar Square to the Houses of Parliament; site of many government offices
+18157,Whitehall,the British civil service
+18158,Whitehead Alfred_North_Whitehead,English philosopher and mathematician who collaborated with Bertrand Russell (1861-1947)
+18159,Whitehorse,the provincial capital of the Yukon Territory
+18160,Whitman Marcus_Whitman,United States frontier missionary who established a post in Oregon where Christianity and schooling and medicine were available to Native Americans (1802-1847)
+18161,Whitman Walt_Whitman,United States poet who celebrated the greatness of America (1819-1892)
+18162,Whitmonday Whitsun_Monday,the day after Whitsunday; a legal holiday in England and Wales and Ireland
+18163,Whitney Eli_Whitney,United States inventor of the mechanical cotton gin (1765-1825)
+18164,Whitney Mount_Whitney,the highest peak in the Sierra Nevada range in California (14,494 feet high)
+18165,Whitsun Whitsuntide Whitweek,Christian holiday; the week beginning on Whitsunday (especially the first 3 days)
+18166,Whittier John_Greenleaf_Whittier,United States poet best known for his nostalgic poems about New England (1807-1892)
+18167,Whittle Frank_Whittle Sir_Frank_Whittle,English aeronautical engineer who invented the jet aircraft engine (1907-1996)
+18168,Wicca,a community of followers of the Wicca religion
+18169,Wicca,the polytheistic nature religion of modern witchcraft whose central deity is a mother goddess; claims origins in pre-Christian pagan religions of western Europe
+18170,Wiccan witch,a believer in Wicca
+18171,Wichita,a member of the Caddo people formerly living between Kansas and central Texas
+18172,Wichita,the largest city in Kansas; located in southern Kansas on the Arkansas River
+18173,Wichita,the Caddoan language spoken by the Wichita
+18174,Wichita_Falls,a city in north central Texas near the Oklahoma border
+18175,Widal_test Widal's_test,a test for detecting typhoid fever and other salmonella infections
+18176,Wiener Norbert_Wiener,United States mathematician and founder of cybernetics (1894-1964)
+18177,Wiesbaden,a city in western Germany; a spa since Roman times
+18178,Wiesel Elie_Wiesel Eliezer_Wiesel,United States writer (born in Romania) who survived Nazi concentration camps and is dedicated to keeping alive the memory of the Holocaust (born in 1928)
+18179,Wiesenthal Samuel_Wiesenthal,Austrian investigator of Nazi war crimes (born in 1908)
+18180,Wiffle Wiffle_Ball,(trademark) a hollow plastic ball with cutouts
+18181,Wight Isle_of_Wight,an isle and county of southern England in the English Channel
+18182,Wigner Eugene_Wigner Eugene_Paul_Wigner,United States physicist (born in Hungary) noted for his work on the structure of the atom and its nucleus (1902-1995)
+18183,Wild_West,the western United States during its frontier period
+18184,Wild_West_Show Buffalo_Bill's_Wild_West_Show,a spectacular show organized in 1883 by William F. Cody that featured horseback riding and marksmanship on a large scale; toured the United States and Europe
+18185,Wilde Oscar_Wilde Oscar_Fingal_O'Flahertie_Wills_Wilde,Irish writer and wit (1854-1900)
+18186,Wilder Billy_Wilder Samuel_Wilder,United States filmmaker (born in Austria) whose dark humor infused many of the films he made (1906-2002)
+18187,Wilder Thornton_Wilder Thornton_Niven_Wilder,United States writer and dramatist (1897-1975)
+18188,Wilderness,a wooded region in northeastern Virginia near Spotsylvania where bloody but inconclusive battles were fought in the American Civil War
+18189,Wilderness_Campaign,American Civil War; a series of indecisive battles in Grant's campaign (1864) against Lee in which both armies suffered terrible losses
+18190,Wilhelm_II Kaiser_Wilhelm Kaiser_Bill,grandson of Queen Victoria and Kaiser of Germany from 1888 to 1918; he was vilified as causing World War I (1859-1941)
+18191,Wilkes Charles_Wilkes,United States explorer of Antarctica (1798-1877)
+18192,Wilkes John_Wilkes,English reformer who published attacks on George III and supported the rights of the American colonists (1727-1797)
+18193,Wilkes_Land,a coastal region of Antarctica on the Indian Ocean to the south of Australia; most of the territory is claimed by Australia
+18194,Wilkins George_Hubert_Wilkins,Australian who was the first to explore the Arctic by airplane (1888-1958)
+18195,Wilkins Maurice_Wilkins Maurice_Hugh_Frederick_Wilkins,English biochemist who helped discover the structure of DNA (1916-2004)
+18196,Wilkins Roy_Wilkins,United States civil rights leader (1901-1981)
+18197,Wilkinson Sir_Geoffrey_Wilkinson,English chemist honored for his research on pollutants in car exhausts (born in 1921)
+18198,Willamette Willamette_River,a river in western Oregon that flows north into the Columbia River near Portland
+18199,Willard Emma_Hart_Willard,United States educator who was an early campaigner for higher education for women (1787-1870)
+18200,Willard Frances_Elizabeth_Caroline_Willard,United States advocate of temperance and women's suffrage (1839-1898)
+18201,Willebrand von_Willebrand E._A._von_Willebrand Erik_von_Willebrand Erik_Adolf_von_Willebrand,Finnish physician who first described vascular hemophilia (1870-1949)
+18202,William_I William_the_Conqueror,duke of Normandy who led the Norman invasion of England and became the first Norman to be King of England; he defeated Harold II at the battle of Hastings in 1066 and introduced many Norman customs into England (1027-1087)
+18203,William_II William_Rufus,the second son of William the Conqueror who succeeded him as King of England (1056-1100)
+18204,William_III William_of_Orange,King of England and Scotland and Ireland; he married the daughter of James II and was invited by opponents of James II to invade England; when James fled, William III and Mary II were declared joint monarchs (1650-1702)
+18205,William_IV Sailor_King,King of England and Ireland; son of George III who ascended the throne after a long naval career (1765-1837)
+18206,William_and_Mary,joint monarchs of England; William III and Mary II
+18207,Williams Hank_Williams Hiram_Williams Hiram_King_Williams,United States country singer and songwriter (1923-1953)
+18208,Williams Roger_Williams,English clergyman and colonist who was expelled from Massachusetts for criticizing Puritanism; he founded Providence in 1636 and obtained a royal charter for Rhode Island in 1663 (1603-1683)
+18209,Williams Sir_Bernard_Williams Bernard_Arthur_Owen_Williams,English philosopher credited with reviving the field of moral philosophy (1929-2003)
+18210,Williams Ted_Williams Theodore_Samuel_Williams,United States baseball player noted as a hitter (1918-2002)
+18211,Williams Tennessee_Williams Thomas_Lanier_Williams,United States playwright (1911-1983)
+18212,Williams William_Carlos_Williams,United States poet (1883-1963)
+18213,Williams_syndrome,a rare congenital disorder associated with deletion of genetic material in chromosome 7; characterized by mental deficiency and some growth deficiency and elfin faces but an overly social personality and a remarkable gift for vocabulary
+18214,Williamstown,a town in northwestern Massachusetts
+18215,Willis Thomas_Willis,English physician who was a pioneer in the study of the brain (1621-1675)
+18216,Wilmington,a town in southeastern North Carolina on the Cape Fear River
+18217,Wilmington,the largest city in Delaware
+18218,Wilms'_tumor Wilms_tumour adenomyosarcoma nephroblastoma embryoma_of_the_kidney,malignant renal tumor of young children characterized by hypertension and blood in the urine and the presence of a palpable mass
+18219,Wilmut Ian_Wilmut,English geneticist who succeeded in cloning a sheep from a cell from an adult ewe (born in 1944)
+18220,Wilson Alexander_Wilson,Scottish ornithologist in the United States (1766-1813)
+18221,Wilson Charles_Thomson_Rees_Wilson,Scottish physicist who invented the cloud chamber (1869-1959)
+18222,Wilson E._O._Wilson Edward_Osborne_Wilson,United States entomologist who has generalized from social insects to other animals including humans (born in 1929)
+18223,Wilson Edmund_Wilson,United States literary critic (1895-1972)
+18224,Wilson Harriet_Wilson,author of the first novel by an African American that was published in the United States (1808-1870)
+18225,Wilson James_Wilson,American Revolutionary leader who was one of the signers of the Declaration of Independence (1742-1798)
+18226,Wilson John_Tuzo_Wilson,Canadian geophysicist who was a pioneer in the study of plate tectonics (1908-1993)
+18227,Wilson Mount_Wilson,a peak in the San Juan mountains of Colorado (14,246 feet high)
+18228,Wilson Robert_Woodrow_Wilson,United States physicist honored for his work on cosmic microwave radiation (born in 1918)
+18229,Wilson Sir_Angus_Wilson Angus_Frank_Johnstone_Wilson,English writer of novels and short stories (1913-1991)
+18230,Wilson Woodrow_Wilson Thomas_Woodrow_Wilson President_Wilson,28th President of the United States; led the United States in World War I and secured the formation of the League of Nations (1856-1924)
+18231,Wilson's_phalarope Steganopus_tricolor,breeds on the northern great plains of Canada
+18232,Wilson's_snipe Gallinago_gallinago_delicata,American snipe
+18233,Wilson's_warbler Wilson's_blackcap Wilsonia_pusilla,yellow wood warbler with a black crown
+18234,Wilton Wilton_carpet,a carpet woven on a Jacquard loom with loops like a Brussels carpet but having the loops cut to form a close velvety pile
+18235,Wimbledon,a suburb of London and the headquarters of the club where annual international tennis championships are played on grass courts
+18236,Winchester,a city in southern England; administrative center of Hampshire
+18237,Winchester,a shoulder rifle
+18238,Winchester_College,the oldest English public school; located in Winchester
+18239,Winckelmann Johann_Winckelmann Johann_Joachim_Winckelmann,German archaeologist and art historian said to be the father of archaeology (1717-1768)
+18240,Wind_Cave_National_Park,a national park in South Dakota featuring bison herds and limestone caverns
+18241,Windaus Adolf_Windaus,German chemist who studied steroids and cholesterol and discovered histamine (1876-1959)
+18242,Windhoek,capital of Namibia in the center of the country
+18243,Windows,(trademark) an operating system with a graphical user interface
+18244,Windsor,a city in southeastern Ontario on the Detroit River opposite Detroit
+18245,Windsor House_of_Windsor,the British royal family since 1917
+18246,Windsor_chair,straight chair having a shaped seat and a back of many spindles
+18247,Windsor_green,a light chrome green pigment
+18248,Windsor_knot,a wide triangular slipknot for tying a tie
+18249,Windsor_tie,a wide necktie worn in a loose bow
+18250,Windward_Islands Windward_Isles,a group of islands in the southeastern West Indies; the southern part of the Lesser Antilles
+18251,Windward_Passage,a channel between eastern Cuba and western Haiti that connects the Atlantic Ocean with the Caribbean Sea
+18252,Winesap,crisp apple with dark red skin
+18253,Winnebago,a member of the Siouan-speaking people formerly living in eastern Wisconsin south of Green Bay; ally of the Menomini and enemy of the Fox and Sauk people
+18254,Winnebago,the Siouan language spoken by the Winnebago
+18255,Winnipeg,the capital and largest city of Manitoba; located in southern Manitoba; known for severe winters
+18256,Winnipeg Lake_Winnipeg,a lake in southern Canada in Manitoba
+18257,Winslow Edward_Winslow,English colonial administrator who traveled to America on the Mayflower and served as the first governor of the Plymouth Colony (1595-1655)
+18258,Winston-Salem,a city of north central North Carolina
+18259,Winter_Olympic_Games Winter_Olympics,an Olympics for winter sports
+18260,Winteraceae family_Winteraceae winter's_bark_family,small family of chiefly tropical shrubs and trees of genera Drimys and Pseudowintera; sometimes included in Magnoliaceae
+18261,Wintun,a member of a North American Indian people living in the Sacramento valley in California
+18262,Wintun,a Copehan language spoken by the Wintun
+18263,Wisconsin Badger_State WI Wis. Wisc.,a midwestern state in north central United States
+18264,Wisconsin Wisconsin_River,a tributary of the Mississippi River in Wisconsin
+18265,Wisconsin_weeping_willow Salix_pendulina Salix_blanda Salix_pendulina_blanda,hybrid willow usually not strongly weeping in habit
+18266,Wisconsinite Badger,a native or resident of Wisconsin
+18267,Wisdom_of_Solomon Wisdom,an Apocryphal book consisting mainly of a meditation on wisdom; although ascribed to Solomon it was probably written in the first century BC
+18268,Wise Isaac_Mayer_Wise,United States religious leader (born in Bohemia) who united reform Jewish organizations in the United States (1819-1900)
+18269,Wise Stephen_Samuel_Wise,United States Jewish leader (born in Hungary) (1874-1949)
+18270,Wise_Men Magi,(New Testament) the sages who visited Jesus and Mary and Joseph shortly after Jesus was born; the Gospel According to Matthew says they were guided by a star and brought gifts of gold and frankincense and myrrh; because there were three gifts it is usually assumed that there were three of them
+18271,Wister Owen_Wister,United States writer (1860-1938)
+18272,Witherspoon John_Witherspoon,American Revolutionary leader and educator (born in Scotland) who signed of the Declaration of Independence and was president of the college that became Princeton University (1723-1794)
+18273,Wittgenstein Ludwig_Wittgenstein Ludwig_Josef_Johan_Wittgenstein,British philosopher born in Austria; a major influence on logic and logical positivism (1889-1951)
+18274,Witwatersrand Rand Reef,a rocky region in the southern Transvaal in northeastern South Africa; contains rich gold deposits and coal and manganese
+18275,Wobbly,a member of the Industrial Workers of the World
+18276,Wodehouse P._G._Wodehouse Pelham_Grenville_Wodehouse,English writer known for his humorous novels and stories (1881-1975)
+18277,Woden Wodan,chief god; counterpart of Norse Odin and Teutonic Wotan
+18278,Wolf Friedrich_August_Wolf,German classical scholar who claimed that the Iliad and Odyssey were composed by several authors (1759-1824)
+18279,Wolf Hugo_Wolf,Austrian composer (1860-1903)
+18280,Wolfe Thomas_Wolfe Thomas_Clayton_Wolfe,United States writer best known for his autobiographical novels (1900-1938)
+18281,Wolfe Tom_Wolfe Thomas_Wolfe Thomas_Kennerly_Wolfe_Jr.,United States writer who has written extensively on American culture (born in 1931)
+18282,Wolff Kaspar_Friedrich_Wolff,German anatomist (1733-1794)
+18283,Wolffia genus_Wolffia,minute rootless aquatic herbs having globular fronds floating on or near the water surface and bearing one flower per frond
+18284,Wolffiella genus_Wolffiella,minute rootless aquatic herbs having flat fronds floating on or below the water surface and bearing 1-2 flowers per frond; America and Africa
+18285,Wollaston William_Hyde_Wollaston,English chemist and physicist who discovered palladium and rhodium and demonstrated that static and current electricity are the same (1766-1828)
+18286,Wollemi_pine,newly discovered (1994) pine thought to have been long extinct; Australia; genus and species names not yet assigned
+18287,Wollstonecraft Mary_Wollstonecraft Mary_Wollstonecraft_Godwin,English writer and early feminist who denied male supremacy and advocated equal education for women; mother of Mary Shelley (1759-1797)
+18288,Wolof,the West African language of the Wolof in Senegal; related to Fula
+18289,Wolstonian_glaciation,the next-to-last Pleistocene glaciation in Britain and the deposits laid down at that time
+18290,Women's_Army_Corps WAC,an army corps that was organized in World War II but is no longer a separate branch of the United States Army
+18291,Wood Grant_Wood,United States painter noted for works based on life in the Midwest (1892-1942)
+18292,Wood Mrs._Henry_Wood Ellen_Price_Wood,English writer of novels about murders and thefts and forgeries (1814-1887)
+18293,Wood Natalie_Wood,United States film actress (1938-1981)
+18294,Wood Sir_Henry_Wood Sir_Henry_Joseph_Wood,English conductor (1869-1944)
+18295,Wood's_metal Wood's_alloy,a fusible alloy that is half bismuth plus lead, tin, and cadmium; melts at about 160 degrees Fahrenheit
+18296,Woodbury Helen_Laura_Sumner_Woodbury,United States social economist (1876-1933)
+18297,Woodhull Victoria_Clafin_Woodhull,United States advocate of women's suffrage; in 1872 she was the first woman to run for the United States presidency (1838-1927)
+18298,Woodward Bob_Woodward Robert_Woodward Robert_Burns_Woodward,United States chemist honored for synthesizing complex organic compounds (1917-1979)
+18299,Woodward C._Vann_Woodward Comer_Vann_Woodward,United States historian (1908-1999)
+18300,Woodwardia genus_Woodwardia,in some classification systems placed in family Polypodiaceae: chain ferns
+18301,Woolf Virginia_Woolf Adeline_Virginia_Stephen_Woolf,English author whose work used such techniques as stream of consciousness and the interior monologue; prominent member of the Bloomsbury Group (1882-1941)
+18302,Woollcott Alexander_Woollcott,United States drama critic and journalist (1887-1943)
+18303,Woolley Sir_Leonard_Woolley Sir_Charles_Leonard_Woolley,English archaeologist who supervised the excavations at Ur (1880-1960)
+18304,Woolworth Frank_Winfield_Woolworth,United States businessman who opened a shop in 1879 selling low-priced goods and built it into a national chain of stores (1852-1919)
+18305,Worcester,an industrial and university city in central Massachusetts to the west of Boston
+18306,Worcester,a cathedral city in west central England on the River Severn
+18307,Worcester Joseph_Emerson_Worcester,United States lexicographer who was accused of plagiarism by Noah Webster (1784-1865)
+18308,Worcester_sauce Worcestershire Worcestershire_sauce,a savory sauce of vinegar and soy sauce and spices
+18309,WordNet Princeton_WordNet,a machine-readable lexical database organized by meanings; developed at Princeton University
+18310,WordNet3.1,the latest publicly released version of WordNet
+18311,Word_of_God,a manifestation of the mind and will of God
+18312,Word_of_God,the message of the Gospel of Christ
+18313,Wordsworth William_Wordsworth,a romantic English poet whose work was inspired by the Lake District where he spent most of his life (1770-1850)
+18314,World_Council_of_Churches,an ecumenical organization of Protestant and eastern churches; intended to promote unity and cooperation in religious and secular matters
+18315,World_Cup,a soccer tournament held every four years between national soccer teams to determine a world champion
+18316,World_Health_Organization WHO W.H.O.,a United Nations agency to coordinate international health activities and to help governments improve health services
+18317,World_Meteorological_Organization WMO,the United Nations agency concerned with the international collection of meteorological data
+18318,World_Series,series that constitutes the playoff for the baseball championship; "we watched the World Series on TV"
+18319,World_Trade_Center WTC twin_towers,twin skyscrapers 110 stories high in New York City; built 1368 feet tall in 1970 to 1973; destroyed by a terrorist attack on September 11, 2001
+18320,World_Trade_Organization WTO,an international organization based in Geneva that monitors and enforces rules governing global trade
+18321,World_War_I World_War_1 Great_War First_World_War War_to_End_War,a war between the allies (Russia, France, British Empire, Italy, United States, Japan, Rumania, Serbia, Belgium, Greece, Portugal, Montenegro) and the Central Powers (Germany, Austria-Hungary, Turkey, Bulgaria) from 1914 to 1918
+18322,World_War_II World_War_2 Second_World_War,a war between the Allies (Australia, Belgium, Bolivia, Brazil, Canada, China, Colombia, Costa Rica, Cuba, Czechoslovakia, Dominican Republic, El Salvador, Ethiopia, France, Greece, Guatemala, Haiti, Honduras, India, Iran, Iraq, Luxembourg, Mexico, Netherlands, New Zealand, Nicaragua, Norway, Panama, Philippines, Poland, South Africa, United Kingdom, United States, USSR, Yugoslavia) and the Axis (Albania, Bulgaria, Finland, Germany, Hungary, Italy, Japan, Rumania, Slovakia, Thailand) from 1939 to 1945
+18323,World_Wide_Web WWW web,computer network consisting of a collection of internet sites that offer text and graphics and sound and animation resources through the hypertext transfer protocol
+18324,Wormian_bone sutural_bone,any of the tiny soft bones found in the sutures between cranial bones
+18325,Worth Charles_Frederick_Worth,French couturier (born in England) regarded as the founder of Parisian haute couture; noted for introducing the bustle (1825-1895)
+18326,Wotan,supreme Teutonic god; counterpart of Norse Odin and Anglo-Saxon Woden
+18327,Wouk Herman_Wouk,United States writer (born in 1915)
+18328,Wrangell-St._Elias_National_Park,the largest national park of the United States; located in Alaska
+18329,Wren Sir_Christopher_Wren,English architect who designed more than fifty London churches (1632-1723)
+18330,Wright Frances_Wright Fanny_Wright,United States early feminist (born in Scotland) (1795-1852)
+18331,Wright Frank_Lloyd_Wright,influential United States architect (1869-1959)
+18332,Wright Orville_Wright,United States aviation pioneer who (with his brother Wilbur Wright) invented the airplane (1871-1948)
+18333,Wright Richard_Wright,United States writer whose work is concerned with the oppression of African Americans (1908-1960)
+18334,Wright Wilbur_Wright,United States aviation pioneer who (with his brother Orville Wright) invented the airplane (1867-1912)
+18335,Wright Willard_Huntington_Wright S._S._Van_Dine,United States writer of detective novels (1888-1939)
+18336,Wroclaw Breslau,a city in southwestern Poland on the Oder
+18337,Wu Wu_dialect Shanghai_dialect,a dialect of Chinese spoken in the Yangtze delta
+18338,Wuhan,a city of central China on the Chang Jiang; the commercial and industrial center of central China
+18339,Wurlitzer Rudolf_Wurlitzer,United States businessman (born in Germany) who founded a company to make pipe organs (1831-1914)
+18340,Wurzburg Wuerzburg,a city of south central Germany
+18341,Wyatt James_Wyatt,English architect (1746-1813)
+18342,Wyatt Sir_Thomas_Wyatt Wyat Sir_Thomas_Wyat,English poet who introduced the sonnet form to English literature (1503-1542)
+18343,Wycherley William_Wycherley,English playwright noted for his humorous and satirical plays (1640-1716)
+18344,Wycliffe John_Wycliffe Wickliffe John_Wickliffe Wyclif John_Wyclif Wiclif John_Wiclif,English theologian whose objections to Roman Catholic doctrine anticipated the Protestant Reformation (1328-1384)
+18345,Wyeth Andrew_Wyeth,United States painter (born in 1917)
+18346,Wykeham William_of_Wykeham,English prelate and statesman; founded a college at Oxford and Winchester College in Winchester; served as chancellor of England and bishop of Winchester (1324-1404)
+18347,Wykehamist,a student enrolled in (or graduated from) Winchester College
+18348,Wyler William_Wyler,United States filmmaker (1902-1981)
+18349,Wylie Elinor_Morton_Hoyt_Wylie,United States poet (1885-1928)
+18350,Wynette Tammy_Wynette Tammy_Wynetter_Pugh,United States country singer (1942-1998)
+18351,Wynnea genus_Wynnea,a genus of fungi belonging to the family Sarcoscyphaceae
+18352,Wynnea_americana,a fungus composed of several apothecia that look like elongated rabbit ears; the sterile surface is dark brown and warty; the fertile surface is smooth and pinkish orange
+18353,Wynnea_sparassoides,a fungus with a long solid stalk embedded in soil and a yellow-brown head shaped like a cauliflower
+18354,Wyoming Equality_State WY Wyo.,a state in the western United States; mountainous in the west and north with the Great Plains in the east
+18355,Wyomingite,a native or resident of Wyoming
+18356,Wyrd Weird,fate personified; any one of the three Weird Sisters
+18357,Wyszynski Stefan_Wyszynski,Polish prelate who persuaded the Soviet to allow greater religious freedom in Poland (1901-1981)
+18358,X x ex,the 24th letter of the Roman alphabet
+18359,X-OR_circuit XOR_circuit XOR_gate,gate for exclusive OR; a circuit in a computer that fires only if only one of its inputs fire
+18360,X-linked_SCID X-SCID,SCID in male children resulting from mutation of a gene that codes for a protein on the surface of T cells that allows them to develop a growth factor receptor
+18361,X-linked_dominant_inheritance,hereditary pattern in which a dominant gene on the X chromosome causes a characteristic to be manifested in the offspring
+18362,X-linked_gene,a gene located on an X chromosome
+18363,X-linked_recessive_inheritance,hereditary pattern in which a recessive gene on the X chromosome results in the manifestation of characteristics in male offspring and a carrier state in female offspring
+18364,X-ray_diffraction,the scattering of X rays by the atoms of a crystal; the diffraction pattern shows structure of the crystal
+18365,X-ray_film,photographic film used to make X-ray pictures
+18366,X-ray_machine,an apparatus that provides a source of X rays
+18367,X-ray_therapy,the therapeutic use of X rays
+18368,X-ray_tube,a vacuum tube containing a metal target onto which a beam of electrons is directed at high energy for the generation of X rays
+18369,X-raying X-radiation,obtaining images by the use of X rays
+18370,XX,(genetics) normal complement of sex chromosomes in a female
+18371,XXX,(genetics) abnormal complement of three X chromosomes in a female
+18372,XXY,(genetics) abnormal complement of sex hormones in a male resulting in Klinefelter's syndrome
+18373,XY,(genetics) normal complement of sex hormones in a male
+18374,XYY,(genetics) abnormal complement of sex hormones in a male who has two Y chromosomes
+18375,X_chromosome,the sex chromosome that is present in both sexes: singly in males and doubly in females; "human females normally have two X chromosomes"
+18376,X_ray X-ray X-radiation roentgen_ray,electromagnetic radiation of short wavelength produced when high-speed electrons strike a solid target
+18377,Xanthium genus_Xanthium,coarse herbs having small heads of greenish flowers followed by burrs with hooked bristles
+18378,Xanthomonas genus_Xanthomonas,a genus of bacteria similar to Pseudomonas but producing a yellow pigment that is not soluble in water
+18379,Xanthophyceae class_Xanthophyceae,yellow-green algae
+18380,Xanthorrhoeaceae family_Xanthorrhoeaceae grass_tree_family,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+18381,Xanthorroea genus_Xanthorroea,grass trees; sometimes placed in family Xanthorrhoeaceae
+18382,Xanthosoma genus_Xanthosoma,tropical American tuberous perennials
+18383,Xantusiidae family_Xantusiidae,night lizards
+18384,Xavier Saint_Francis_Xavier,Spanish missionary and Jesuit who establish missionaries in Japan and Ceylon and the East Indies (1506-1552)
+18385,Xenarthra suborder_Xenarthra,armadillos; American anteaters; sloths
+18386,Xenicidae family_Xenicidae Acanthisittidae family_Acanthisittidae,alternative names for the family comprising the New Zealand wrens
+18387,Xenicus genus_Xenicus,type genus for the Xenicidae
+18388,Xenophanes,Greek philosopher (560-478 BC)
+18389,Xenophon,Greek general and historian; student of Socrates (430-355 BC)
+18390,Xenopodidae family_Xenopodidae,in some classifications the family of the genus Xenopus which is otherwise included in the family Pipidae
+18391,Xenopus genus_Xenopus,an African clawed frog; in some classifications made the type genus of a separate family Xenopodidae
+18392,Xenorhyncus genus_Xenorhyncus,East Indian and Australian storks
+18393,Xenosauridae family_Xenosauridae,monotypic family of Mexican lizards
+18394,Xenosaurus genus_Xenosaurus,type and sole genus of Xenosauridae: slender-bodied Mexican lizards having the upper surface covered with tiny granules and tubercles
+18395,Xerobates genus_Xerobates,possible new genus for desert and Texas tortoises based on recent research
+18396,Xerophyllum genus_Xerophyllum,small genus of North American herbs having grasslike basal leaves: squaw grass; sometimes placed in family Melanthiaceae
+18397,Xerox xerographic_copier Xerox_machine,a duplicator (trade mark Xerox) that copies graphic matter by the action of light on an electrically charged photoconductive insulating surface in which the latent image is developed with a resinous powder
+18398,Xerxes_I Xerxes_the_Great,king of Persia who led a vast army against Greece and won the battle of Thermopylae but was eventually defeated (519-465 BC)
+18399,Xhosa,a member of the Negroid people of southern South Africa
+18400,Xhosa,a community of Negroid people in southern South Africa
+18401,Xhosa,a Bantu language closely related to Zulu
+18402,Xian Sian Singan Changan Hsian,a city of central China; capital of ancient Chinese empire 221-206 BC
+18403,Xinjiang Sinkiang Xinjiang_Uighur_Autonomous_Region,an autonomous province in far northwestern China on the border with Mongolia and Kazakhstan; the largest province in the People's Republic of China and the homeland of the Uighur people
+18404,Xiphias genus_Xiphias,type genus of the Xiphiidae
+18405,Xiphiidae family_Xiphiidae,comprising the common swordfishes
+18406,Xiphosura order_Xiphosura,horseshoe crabs and extinct forms
+18407,Xylaria genus_Xylaria,type genus of Xylariaceae; fungi with perithecia in the upper part of erect black woody stromata
+18408,Xylariaceae family_Xylariaceae,family of fungi characterized by dark brown to black spores
+18409,Xylocopa genus_Xylocopa,carpenter bees
+18410,Xylomelum genus_Xylomelum,small species of Australian trees or shrubs; grown for their fruit and flowers
+18411,Xylopia genus_Xylopia,tropical evergreen trees or shrubs; chiefly African
+18412,Xyphophorus genus_Xyphophorus,swordtails
+18413,Xyridaceae family_Xyridaceae yellow-eyed_grass_family,plants of tropical to temperate regions; usually in wet places
+18414,Xyridales order_Xyridales Commelinales order_Commelinales,an order of monocotyledonous herbs
+18415,Xyris genus_Xyris,chiefly American marsh plants, having usually yellow flowers
+18416,Y y wye,the 25th letter of the Roman alphabet
+18417,Y-linked_gene holandric_gene,a gene located on a Y chromosome
+18418,Y2K,the year 2000 in the Gregorian calendar
+18419,Y_chromosome,the sex chromosome that is carried by men; "human males normally have one X chromosome and one Y chromosome"
+18420,Yahi,a member of an extinct North American Indian people who lived in northern California
+18421,Yahi,the Yanan language spoken by the Yahi
+18422,Yahoo,one of a race of brutes resembling men but subject to the Houyhnhnms in a novel by Jonathan Swift
+18423,Yahoo,a widely used search engine for the web that finds information, news, images, products, finance
+18424,Yahweh YHWH Yahwe Yahveh YHVH Yahve Wahvey Jahvey Jahweh Jehovah JHVH,a name for the God of the Old Testament as transliterated from the Hebrew consonants YHVH
+18425,Yajur-Veda,a collection of sacrificial formulas and prayers
+18426,Yakima,a town in south central Washington
+18427,Yakut,a member of a Turkic people of northeastern Siberia (mainly in the Lena river basin)
+18428,Yakut,the Turkic language spoken by the Yakut
+18429,Yale Elihu_Yale,English philanthropist who made contributions to a college in Connecticut that was renamed in his honor (1649-1721)
+18430,Yale_University Yale,a university in Connecticut
+18431,Yalta,a resort city in Crimea in the southern Ukraine on the Black Sea; site of the Allied conference between Roosevelt, Stalin, and Churchill in February 1945
+18432,Yalta_Conference,a conference held in Yalta in February 1945 where Roosevelt, Stalin, and Churchill planned the final stages of World War II and agreed to the territorial division of Europe
+18433,Yalu Yalu_River,river in eastern Asia; rises in North Korea and flows southwest to Korea Bay (forming part of the border between North Korea and China)
+18434,Yalu_River,a battle in the Korean War (November 1950); when UN troops advanced north to the Yalu River 200,000 Chinese troops crossed the river and drove them back
+18435,Yama,Hindu god of death and lord of the underworld
+18436,Yamamoto Isoroku_Yamamoto,Japanese admiral who planned the attack on Pearl Harbor in 1941 (1884-1943)
+18437,Yamani Ahmed_Zoki_Yamani,Saudi Arabian minister of petroleum who was a central figure in the creation of OPEC (born in 1930)
+18438,Yamoussukro,capital of the Ivory Coast
+18439,Yana,a member of an extinct North American Indian people who lived in northern California
+18440,Yana,the Yanan language spoken by the Yana
+18441,Yanan,a language group of the Hokan family
+18442,Yang_Chen_Ning Chen_N._Yang,United States physicist (born in China) who collaborated with Tsung Dao Lee in disproving the principle of conservation of parity (born in 1922)
+18443,Yangon Rangoon,the capital and largest city of Myanmar; located in the south near the Irrawaddy river delta
+18444,Yankee Yank Northerner,an American who lives in the North (especially during the American Civil War)
+18445,Yankee Yank Yankee-Doodle,an American (especially to non-Americans)
+18446,Yaounde capital_of_Cameroon,the capital of Cameroon
+18447,Yastrzemski Carl_Yastrzemski,United States baseball player (born in 1939)
+18448,Yavapai,a member of a North American Indian people of central Arizona
+18449,Yavapai,the Yuman language spoken by the Yavapai
+18450,Yay,a branch of the Tai languages
+18451,Yazoo Yazoo_River,a river that rises in west central Mississippi and flows southwest to empty into the Mississippi River above Vicksburg
+18452,Yeats William_Butler_Yeats W._B._Yeats,Irish poet and dramatist (1865-1939)
+18453,Yellow_Sea Huang_Hai,part of the Pacific off the east coast of Asia
+18454,Yellowknife,a town in the Northwest Territories in northern Canada on the Great Slave Lake
+18455,Yellowstone Yellowstone_River,a tributary of the Missouri River that flows through the Yellowstone National Park
+18456,Yellowstone_National_Park,the first national park in the United States; located in the border area between Wyoming and Montana and Idaho; spectacular wilderness; famous for Old Faithful geyser and for buffalo and bears
+18457,Yemen Republic_of_Yemen,a republic on the southwestern shores of the Arabian Peninsula on the Indian Ocean; formed in 1990
+18458,Yemeni,a native or inhabitant of Yemen
+18459,Yemeni_fils fils,100 Yemeni fils are worth one Yemeni rial
+18460,Yemeni_monetary_unit,monetary unit in Yemen
+18461,Yemeni_rial rial,the basic unit of money in Yemen; equal to 100 fils
+18462,Yenisei Yenisei_River Yenisey Yenisey_River,a Russian river in Siberia; rises in mountains near the Mongolian border and flows generally northward into the Kara Sea
+18463,Yeniseian,a member of one of the groups living in the Yenisei river valley in western Siberia
+18464,Yerevan Jerevan Erivan capital_of_Armenia,capital of Armenia
+18465,Yerkes Robert_M._Yerkes Robert_Mearns_Yerkes,United States psychologist who studied the intelligence of primates (1876-1956)
+18466,Yersin Alexandre_Yersin Alexandre_Emile_Jean_Yersin,French bacteriologist born in Switzerland; was a student of Pasteur; discovered the plague bacillus (1863-1943)
+18467,Yersinia_pestis,a bacillus bacterium that causes the plague; aerosolized bacteria can be used as a bioweapon
+18468,Yerupaja,a mountain peak in the Andes in Peru (21,709 feet high)
+18469,Yevtushenko Yevgeni_Yevtushenko Yevgeni_Aleksandrovich_Yevtushenko,Russian poet who expressed the feelings of the post-Stalinist generation (born in 1933)
+18470,Yggdrasil Ygdrasil,(Norse mythology) a huge ash tree whose roots and branches hold the earth and Heaven and Hell together
+18471,Yiddish,a dialect of High German including some Hebrew and other words; spoken in Europe as a vernacular by many Jews; written in the Hebrew script
+18472,Ymir,(Norse mythology) the primeval giant slain by Odin and his brothers and from whose body they created the world: the sea from his blood; the earth from his flesh; the mountains from his bones; the sky from his skull
+18473,Yogacara,one of the main traditions of Mahayana Buddhism; holds that the mind is real but that objects are just ideas or states of consciousness
+18474,Yokohama,port city on southeastern Honshu in central Japan
+18475,Yokuts,a member of the North American Indian people of the San Joaquin Valley
+18476,Yom_Kippur Day_of_Atonement,(Judaism) a solemn and major fast day on the Jewish calendar; 10th of Tishri; its observance is one of the requirements of the Mosaic law
+18477,York House_of_York,the English royal house (a branch of the Plantagenet line) that reigned from 1461 to 1485; its emblem was a white rose
+18478,Yorkshire,a former large county in northern England; in 1974 it was divided into three smaller counties
+18479,Yorkshire_pudding,light puffy bread made of a puff batter and traditionally baked in the pan with roast beef
+18480,Yorkshire_terrier,very small breed having a long glossy coat of bluish-grey and tan
+18481,Yorktown,a historic village in southeastern Virginia to the north of Newport News; site of the last battle of the American Revolution
+18482,Yorktown siege_of_Yorktown,in 1781 the British under Cornwallis surrendered after a siege of three weeks by American and French troops; the surrender ended the American Revolution
+18483,Yoruba,a member of a West African people living chiefly in southwestern Nigeria
+18484,Yoruba Aku,a Kwa language spoken by the Yoruba in southwestern Nigeria
+18485,Yosemite Yosemite_Falls,a series of waterfalls in Yosemite National Park in California; is reduced to a trickle for part of each year
+18486,Yosemite_National_Park,a national park in California famous for its waterfalls and rock formations
+18487,Yosemite_toad Bufo_canorus,of high Sierra Nevada meadows and forest borders
+18488,Young Brigham_Young,United States religious leader of the Mormon Church after the assassination of Joseph Smith; he led the Mormon exodus from Illinois to Salt Lake City, Utah (1801-1877)
+18489,Young Cy_Young Danton_True_Young,United States baseball player and famous pitcher (1867-1955)
+18490,Young Edward_Young,English poet (1683-1765)
+18491,Young Loretta_Young,United States film and television actress (1913-2000)
+18492,Young Pres_Young Lester_Willis_Young,United States jazz tenor saxophonist (1909-1959)
+18493,Young Thomas_Young,British physicist and Egyptologist; he revived the wave theory of light and proposed a three-component theory of color vision; he also played an important role in deciphering the hieroglyphics on the Rosetta Stone (1773-1829)
+18494,Young Whitney_Young Whitney_Moore_Young_Jr.,United States civil rights leader (1921-1971)
+18495,Young's_modulus,a coefficient of elasticity applicable to the stretching of a wire
+18496,Young_Turk,a member of one or more of the insurgent groups in Turkey in the late 19th century who rebelled against the absolutism of Ottoman rule
+18497,Youngstown,a city in northeast Ohio
+18498,Ypres battle_of_Ypres first_battle_of_Ypres,battle in World War I (1914); heavy but indecisive fighting as the Allies and the Germans both tried to break through the lines of the others
+18499,Ypres battle_of_Ypres second_battle_of_Ypres,battle in World War I (1915); Germans wanted to try chlorine (a toxic yellow gas) as a weapon and succeeded in taking considerable territory from the Allied salient
+18500,Ypres battle_of_Ypres third_battle_of_Ypres,battle in World War I (1917); an Allied offensive which eventually failed because tanks bogged down in the waterlogged soil of Flanders; Germans introduced mustard gas which interfered with the Allied artillery
+18501,Yquem,a sweet white French wine
+18502,Yuan Yuan_dynasty Mongol_dynasty,the imperial dynasty of China from 1279 to 1368
+18503,Yucatan,a state of Mexico on the northern part of the Yucatan Peninsula
+18504,Yucatan Yucatan_Peninsula,a peninsula in Central America extending into the Gulf of Mexico between the Bay of Campeche and the Caribbean Sea
+18505,Yucatec Yucateco,a member of the Mayan people of the Yucatan peninsula in Mexico
+18506,Yucatec Yucateco,a Mayan language spoken by the Yucatec
+18507,Yue Yue_dialect Cantonese Cantonese_dialect,the dialect of Chinese spoken in Canton and neighboring provinces and in Hong Kong and elsewhere outside China
+18508,Yugoslav Jugoslav Yugoslavian Jugoslavian,a native or inhabitant of Yugoslavia
+18509,Yugoslavia,a former country of southeastern Europe bordering the Adriatic Sea; formed in 1918 and named Yugoslavia in 1929; controlled by Marshal Tito as a communist state until his death in 1980; "Tito's Yugoslavia included Slovenia, Croatia, Macedonia, Bosnia-Herzegovina, Serbia, and Montenegro"
+18510,Yugoslavian_dinar dinar,the basic unit of money in Yugoslavia
+18511,Yugoslavian_monetary_unit,monetary unit in Yugoslavia
+18512,Yukawa Hideki_Yukawa,Japanese mathematical physicist who proposed that nuclear forces are mediated by massive particles called mesons which are analogous to the photon in mediating electromagnetic forces (1907-1981)
+18513,Yukon Yukon_River,a North American river that flows westward from the Yukon Territory through central Alaska to the Bering Sea
+18514,Yukon Yukon_Territory,a territory in northwestern Canada; site of the Klondike gold rush in the 1890s
+18515,Yukon_white_birch Betula_neoalaskana,Alaskan birch with white to pale brown bark
+18516,Yule_log,large log traditionally burned at Christmas
+18517,Yuma,a member of the North American Indian people of Arizona and adjacent Mexico and California
+18518,Yuma,a town in southwestern Arizona on the Colorado River and the California border
+18519,Yuma,the Yuman language spoken by the Yuma
+18520,Yuman,a group of language of the Hokan family in Arizona and California and Mexico
+18521,Yunnan Yunnan_province,a province of southern China
+18522,Z z zee zed ezed izzard,the 26th letter of the Roman alphabet; "the British call Z zed and the Scots call it ezed but Americans call it zee"; "he doesn't know A from izzard"
+18523,ZIP_code ZIP postcode postal_code,a code of letters and digits added to a postal address to aid in the sorting of mail
+18524,Zaar Sayanci,a Chadic language spoken in northern Nigeria
+18525,Zabrze,an industrial city in southern Poland
+18526,Zaglossus genus_Zaglossus,a genus of Tachyglossidae
+18527,Zagreb,the capital of Croatia
+18528,Zaharias Babe_Zaharias Didrikson Babe_Didrikson Mildred_Ella_Didrikson Mildred_Ella_Didrikson_Zaharias,outstanding United States athlete (1914-1956)
+18529,Zairese Zairean,a native or inhabitant of Zaire
+18530,Zairese_monetary_unit,monetary unit in Zaire
+18531,Zalophus genus_Zalophus,sea lions
+18532,Zama battle_of_Zama,the battle in 202 BC in which Scipio decisively defeated Hannibal at the end of the second Punic War
+18533,Zambezi Zambezi_River,an African river; flows into the Indian Ocean
+18534,Zambia Republic_of_Zambia Northern_Rhodesia,a republic in central Africa; formerly controlled by Great Britain and called Northern Rhodesia until it gained independence within the commonwealth in 1964
+18535,Zambian,a native or inhabitant of Zambia
+18536,Zambian_kwacha kwacha,the basic unit of money in Zambia
+18537,Zambian_monetary_unit,monetary unit in Zambia
+18538,Zamboni,the trademark for a machine that smooths the ice in an ice-skating rink
+18539,Zamiaceae family_Zamiaceae zamia_family,a family of cycads often included in the family Cycadaceae: zamias
+18540,Zangwill Israel_Zangwill,English writer (1864-1926)
+18541,Zannichellia genus_Zannichellia,horned pondweed: completely submerged herbs; in some classifications included in Potamogetonaceae
+18542,Zannichelliaceae family_Zannichelliaceae,alternative classification for some genera included in Potamogetonaceae; one species
+18543,Zantedeschia genus_Zantedeschia,calla lily
+18544,Zanthoxylum genus_Zanthoxylum,deciduous or evergreen trees or shrubs: prickly ash
+18545,Zanuck Darryl_Zanuck Darryl_Francis_Zanuck,United States filmmaker whose works include the first full-length feature film with sound sequences (1902-1979)
+18546,Zanzibar,an island in the Indian Ocean off the east coast of Africa; part of the United Republic of Tanzania
+18547,Zanzibar_copal anime,a hard copal derived from an African tree
+18548,Zapata Emiliano_Zapata,Mexican revolutionary who led a revolt for agrarian reforms (1879-1919)
+18549,Zapodidae family_Zapodidae,jumping mice
+18550,Zapotec Zapotecan,a member of a large tribe of Mesoamericans living in southern Mexico whose civilization flourished around 300 to 900
+18551,Zapotec Zapotecan,the language of the Zapotec
+18552,Zapus genus_Zapus,type genus of the Zapodidae
+18553,Zaragoza Saragossa,an ancient city on the Ebro River in northeastern Spain; formerly the capital of Aragon
+18554,Zaria,a city in north central Nigeria; agricultural trading center
+18555,Zea genus_Zea,corn
+18556,Zealand Seeland Sjaelland,the largest island of Denmark and the site of Copenhagen
+18557,Zealander,a native or inhabitant of Zealand
+18558,Zealot,a member of an ancient Jewish sect in Judea in the first century who fought to the death against the Romans and who killed or persecuted Jews who collaborated with the Romans
+18559,Zechariah Zacharias,a Hebrew minor prophet of the late 6th century BC
+18560,Zechariah Zacharias Book_of_Zachariah,an Old Testament book telling the prophecies of Zechariah which are concerned mainly with the renewal of Israel after the Babylonian Captivity
+18561,Zeeman Pieter_Zeeman,Dutch physicist honored for his research on the influence of magnetism on radiation which showed that light is radiated by the motion of charged particles in an atom (1865-1943)
+18562,Zeidae family_Zeidae,a family of fish in the order Zeomorphi
+18563,Zeitgeist,the spirit of the time; the spirit characteristic of an age or generation
+18564,Zen Zen_Buddhism,school of Mahayana Buddhism asserting that enlightenment can come through meditation and intuition rather than faith; China and Japan
+18565,Zen Zen_Buddhism,a Buddhist doctrine that enlightenment can be attained through direct intuitive insight
+18566,Zen_Buddhist,an adherent of the doctrines of Zen Buddhism
+18567,Zenaidura genus_Zenaidura,mourning doves
+18568,Zeno Zeno_of_Citium,ancient Greek philosopher who founded the Stoic school (circa 335-263 BC)
+18569,Zeno Zeno_of_Elea,ancient Greek philosopher who formulated paradoxes that defended the belief that motion and change are illusory (circa 495-430 BC)
+18570,Zeomorphi order_Zeomorphi,dories
+18571,Zephaniah Sophonias,a Hebrew minor prophet of the late 7th century BC
+18572,Zephaniah Sophonias Book_of_Zephaniah,an Old Testament book telling the prophecies of Zephaniah which are concerned mainly with the approaching judgment by God upon the sinners of Judah
+18573,Zephyr,(Greek mythology) the Greek god of the west wind
+18574,Zeppelin Count_Ferdinand_von_Zeppelin,German inventor who designed and built the first rigid motorized dirigible (1838-1917)
+18575,Zeus,(Greek mythology) the supreme god of ancient Greek mythology; son of Rhea and Cronus whom he dethroned; husband and brother of Hera; brother of Poseidon and Hades; father of many gods; counterpart of Roman Jupiter
+18576,Zeus genus_Zeus,type genus of the family Zeidae
+18577,Zhou Zhou_dynasty Chou Chou_dynasty Chow Chow_dynasty,the imperial dynasty of China from 1122 to 221 BC; notable for the rise of Confucianism and Taoism
+18578,Zhou_En-lai Chou_En-lai,Chinese revolutionary and communist leader (1898-1976)
+18579,Zhu_Jiang Canton_River Chu_Kiang Pearl_River,a river in southeast China that flows into the South China Sea
+18580,Zhuang,a branch of the Tai languages
+18581,Zhukov Georgi_Zhukov Georgi_Konstantinovich_Zhukov,Soviet general who during World War II directed the counteroffensive at Stalingrad and relieved Leningrad and captured Berlin (1896-1974)
+18582,Ziegfeld Flo_Ziegfeld Florenz_Ziegfeld,United States theatrical producer noted for a series of extravagant revues known as the Ziegfeld Follies (1869-1932)
+18583,Ziegfeld_Follies,a series of extravagant revues produced by Flo Ziegfeld
+18584,Ziegler Karl_Waldemar_Ziegler,German chemist honored for his research on polymers (1898-1973)
+18585,Zigadenus genus_Zigadenus,genus of mostly North American poisonous plants; sometimes placed in family Melanthiaceae
+18586,Zimbabwe Republic_of_Zimbabwe Rhodesia Southern_Rhodesia,a landlocked republic in south central Africa formerly called Rhodesia; achieved independence from the United Kingdom in 1980
+18587,Zimbabwean,a native or inhabitant of Zimbabwe
+18588,Zimbabwean_dollar,the basic unit of money in Zimbabwe
+18589,Zimbalist Efrem_Zimbalist,United States violinist (born in Russia) (1889-1985)
+18590,Zinfandel,small black grape grown chiefly in California; transplanted from Europe
+18591,Zingiber genus_Zingiber,tropical Asiatic and Polynesian perennial plants: ginger
+18592,Zingiberaceae family_Zingiberaceae ginger_family,a family of tropical monocotyledonous plants of order Musales
+18593,Zinjanthropus genus_Zinjanthropus,genus to which Australopithecus boisei was formerly assigned
+18594,Zinnemann Fred_Zinnemann,United States filmmaker (born in Austria) (1907-1997)
+18595,Zinsser Hans_Zinsser,United States bacteriologist who helped develop immunization against typhus fever (1878-1940)
+18596,Zinzendorf Count_Nikolaus_Ludwig_von_Zinzendorf,German theologian (1700-1760)
+18597,Zion Sion,originally a stronghold captured by David (the 2nd king of the Israelites); above it was built a temple and later the name extended to the whole hill; finally it became a synonym for the city of Jerusalem; "the inhabitants of Jerusalem are personified as `the daughter of Zion'"
+18598,Zion_National_Park,a national park in Utah having huge canyons and gorges carved by mountain rivers
+18599,Zionism,a policy for establishing and developing a national homeland for Jews in Palestine
+18600,Zionism Zionist_movement,a movement of world Jewry that arose late in the 19th century with the aim of creating a Jewish state in Palestine
+18601,Zionist,a Jewish supporter of Zionism
+18602,Ziphiidae family_Ziphiidae Hyperodontidae family_Hyperodontidae,beaked whales; in some especially former classifications included in the family Physeteridae
+18603,Zizania genus_Zizania,wild rice
+18604,Ziziphus genus_Ziziphus,spiny chiefly tropical American and Asiatic shrubs: jujubes
+18605,Zoarces genus_Zoarces,type genus of the Zoarcidae
+18606,Zoarcidae family_Zoarcidae,eelpouts
+18607,Zola Emile_Zola,French novelist and critic; defender of Dreyfus (1840-1902)
+18608,Zollinger-Ellison_syndrome,syndrome consisting of intractable peptic ulceration with gastric hypersecretion and hyperacidity
+18609,Zomba,a city in southern Malawi; was the capital until 1971
+18610,Zonotrichia genus_Zonotrichia,large New World sparrows
+18611,Zoomastigina subclass_Zoomastigina,in some classifications considered a phylum of the kingdom Protista; holozoic or saprozoic flagellates
+18612,Zoroaster Zarathustra,Persian prophet who founded Zoroastrianism (circa 628-551 BC)
+18613,Zoroastrian,follower of Zoroaster and Zoroastrianism
+18614,Zoroastrianism Mazdaism,system of religion founded in Persia in the 6th century BC by Zoroaster; set forth in the Zend-Avesta; based on concept of struggle between light (good) and dark (evil)
+18615,Zostera genus_Zostera,(or in some classifications family Zosteraceae) small genus of widely distributed marine plants
+18616,Zosteraceae family_Zosteraceae eelgrass_family,used in some classifications: essentially equivalent to Potamogetonaceae
+18617,Zsigmondy Richard_Adolph_Zsigmondy,German chemist (born in Austria) honored for his research on colloidal solutions (1865-1929)
+18618,Zu Zubird,evil storm god represented as a black bird
+18619,Zuider_Zee,a former inlet of the North Sea in the northern coast of the Netherlands; sealed off from the sea in 1932 by a dam that created the IJsselmeer
+18620,Zukerman Pinchas_Zukerman,Israeli violinist (born in 1948)
+18621,Zulu,a member of the tall Negroid people of eastern South Africa; some live in KwaZulu-Natal under the traditional clan system but many now work in the cities
+18622,Zulu,a community of Negroid people in eastern South Africa
+18623,Zulu,a Bantu language of considerable literary importance in southeastern Africa
+18624,Zuni,a member of the Pueblo people living in western New Mexico
+18625,Zurich,the largest city in Switzerland; located in the northern part of the country; "Zurich is the center of the German-speaking part of Switzerland"
+18626,Zurvan,the Zoroastrian god of time
+18627,Zurvanism,a Zoroastrian sect that claims Zurvan was the ultimate source of the universe
+18628,Zurvanism,a heretical Zoroastrian doctrine holding that Zurvan was the ultimate source of the universe and that both Ahura Mazda and Ahriman were Zurvan's offspring
+18629,Zweig Stefan_Zweig,Austrian writer (1881-1942)
+18630,Zwingli Ulrich_Zwingli Huldreich_Zwingli,Swiss theologian whose sermons began the Reformation in Switzerland (1484-1531)
+18631,Zworykin Vladimir_Kosma_Zworykin,United States physicist who invented the iconoscope (1889-1982)
+18632,Zygnema genus_Zygnema,type genus of the family Zygnemataceae
+18633,Zygnemataceae family_Zygnemataceae,pond scums: common freshwater algae forming green slimy masses
+18634,Zygnematales order_Zygnematales Zygnemales order_Zygnemales,pond scums; desmids
+18635,Zygocactus genus_Zygocactus,small genus of Brazilian cacti having flat fleshy usually branched joints and showy red or pink flowers followed by red fleshy fruits
+18636,Zygomycetes class_Zygomycetes,class of fungi coextensive with subdivision Zygomycota
+18637,Zygomycota subdivision_Zygomycota Zygomycotina subdivision_Zygomycotina,division of fungi having sexually produced zygospores
+18638,Zygophyllaceae family_Zygophyllaceae bean-caper_family,small trees, shrubs, and herbs of warm arid and saline regions; often resinous; some poisonous: genera Zygophyllum, Tribulus, Guaiacum, Larrea
+18639,Zygophyllum genus_Zygophyllum,usually tropical herbs or shrubs having ill-smelling foliage and flower buds that are used as capers: bean capers
+18640,Zygoptera suborder_Zygoptera,damselflies
+18641,a_Kempis Thomas_a_Kempis,German ecclesiastic (1380-1471)
+18642,a_cappella_singing a_capella_singing,singing without instrumental accompaniment
+18643,a_la_carte,a menu having individual dishes listed with separate prices
+18644,aa,a dry form of lava resembling clinkers
+18645,aalii,a small Hawaiian tree with hard dark wood
+18646,aardvark ant_bear anteater Orycteropus_afer,nocturnal burrowing mammal of the grasslands of Africa that feeds on termites; sole extant representative of the order Tubulidentata
+18647,aardwolf Proteles_cristata,striped hyena of southeast Africa that feeds chiefly on insects
+18648,aba,a loose sleeveless outer garment made from aba cloth; worn by Arabs
+18649,aba,a fabric woven from goat hair and camel hair
+18650,abaca Manila_hemp Musa_textilis,Philippine banana tree having leafstalks that yield Manila hemp used for rope and paper etc
+18651,abacus,a tablet placed horizontally on top of the capital of a column as an aid in supporting the architrave
+18652,abacus,a calculator that performs arithmetic functions by manually sliding counters on rods or in grooves
+18653,abalone ear-shell,any of various large edible marine gastropods of the genus Haliotis having an ear-shaped shell with pearly interior
+18654,abampere abamp,a unit of current equal to 10 amperes
+18655,abandon wantonness unconstraint,the trait of lacking restraint or control; reckless freedom from inhibition or worry; "she danced with abandon"
+18656,abandoned_person,someone for whom hope has been abandoned
+18657,abandoned_ship derelict,a ship abandoned on the high seas
+18658,abandonment,the voluntary surrender of property (or a right to property) without attempting to reclaim it or give it away
+18659,abandonment forsaking desertion,the act of giving something up
+18660,abarticulation,dislocation of a joint
+18661,abasement degradation abjection,a low or downcast state; "each confession brought her into an attitude of abasement"- H.L.Menchken
+18662,abashment bashfulness,feeling embarrassed due to modesty
+18663,abasia,inability to walk
+18664,abasia_trepidans,abasia due to trembling of the legs
+18665,abatable_nuisance,a nuisance that can remedied (suppressed or extinguished or rendered harmless); "the continued existence of an abatable nuisance is not authorized under the law"
+18666,abatement,the act of abating; "laws enforcing noise abatement"
+18667,abatement_of_a_nuisance nuisance_abatement,(law) the removal or termination or destruction of something that has been found to be a nuisance
+18668,abator,a person who abates a nuisance
+18669,abattis abatis,a line of defense consisting of a barrier of felled or live trees with branches (sharpened or with barbed wire entwined) pointed toward the enemy
+18670,abattoir butchery shambles slaughterhouse,a building where animals are butchered
+18671,abaya,(Arabic) a loose black robe from head to toe; traditionally worn by Muslim women
+18672,abbacy,the jurisdiction or office of an abbot
+18673,abbe,a French abbot
+18674,abbess mother_superior prioress,the superior of a group of nuns
+18675,abbey,a church associated with a monastery or convent
+18676,abbey,a convent ruled by an abbess
+18677,abbey,a monastery ruled by an abbot
+18678,abbot archimandrite,the superior of an abbey of monks
+18679,abbreviation,a shortened form of a word or phrase
+18680,abbreviation,shortening something by omitting parts of it
+18681,abcoulomb,a unit of electrical charge equal to 10 coulombs
+18682,abdication stepping_down,a formal resignation and renunciation of powers
+18683,abdication stepping_down,the act of abdicating
+18684,abdicator,one who formally relinquishes an office or responsibility
+18685,abdomen venter stomach belly,the region of the body of a vertebrate between the thorax and the pelvis
+18686,abdominal abdominal_muscle ab,the muscles of the abdomen
+18687,abdominal_actinomycosis,a serious form of actinomycosis that affects the abdomen
+18688,abdominal_aorta,a branch of the descending aorta
+18689,abdominal_aortic_aneurysm AAA,an aneurysm of the abdominal aorta associated with old age and hypertension
+18690,abdominal_breathing,breathing in which most of the respiratory effort is done by the abdominal muscles; "abdominal breathing is practiced by singers"
+18691,abdominal_cavity abdomen,the cavity containing the major viscera; in mammals it is separated from the thorax by the diaphragm
+18692,abdominal_pregnancy,ectopic pregnancy in the abdominal cavity
+18693,abdominal_wall,a wall of the abdomen
+18694,abdominocentesis paracentesis,centesis of the belly to remove fluid for diagnosis
+18695,abdominoplasty tummy_tuck,cosmetic surgery of the abdomen to remove wrinkles and tighten the skin over the stomach
+18696,abdominousness paunchiness,the bodily property of a protruding belly
+18697,abducens_muscle lateral_rectus_muscle lateral_rectus rectus_lateralis,the ocular muscle whose contraction turns the eyeball outward
+18698,abducent abducent_nerve abducens abducens_nerve nervus_abducens sixth_cranial_nerve,a small motor nerve supplying the lateral rectus muscle of the eye
+18699,abduction,the criminal act of capturing and carrying away by force a family member; if a man's wife is abducted it is a crime against the family relationship and against the wife
+18700,abduction,(physiology) moving of a body part away from the central axis of the body
+18701,abductor abductor_muscle,a muscle that draws a body part away from the median line
+18702,abecedarian,a novice learning the rudiments of some subject
+18703,abecedarius,a poem having lines beginning with letters of the alphabet in regular order
+18704,abelia,any of various deciduous or evergreen ornamental shrubs of the genus Abelia having opposite simple leaves and cymes of small white or pink or purplish flowers; Asia and Mexico
+18705,abelmosk musk_mallow Abelmoschus_moschatus Hibiscus_moschatus,bushy herb of tropical Asia grown for its yellow or pink to scarlet blooms that resemble the hibiscus
+18706,aberrance aberrancy aberration deviance,a state or condition markedly different from the norm
+18707,aberrant,one whose behavior departs substantially from the norm of a group
+18708,aberration,a disorder in one's mental state
+18709,aberration distortion optical_aberration,an optical phenomenon resulting from the failure of a lens or mirror to produce a good image
+18710,abetalipoproteinemia,a rare inherited disorder of fat metabolism; characterized by severe deficiency of beta-lipoproteins and abnormal red blood cells (acanthocytes) and abnormally low cholesterol levels
+18711,abetment abettal instigation,the verbal act of urging on
+18712,abettor abetter,one who helps or encourages or incites another
+18713,abeyance suspension,temporary cessation or suspension
+18714,abfarad,a capacitance unit equal to one billion farads
+18715,abhenry,a unit of inductance equal to one billionth of a henry
+18716,abhorrence abomination detestation execration loathing odium,hate coupled with disgust
+18717,abhorrer,a signer of a 1679 address to Charles II in which those who petitioned for the reconvening of parliament were condemned and abhorred
+18718,abidance,the act of abiding (enduring without yielding)
+18719,abience,(psychology) an urge to withdraw or avoid a situation or an object
+18720,ability,the quality of being able to perform; a quality that permits or facilitates achievement or accomplishment
+18721,ability power,possession of the qualities (especially mental qualities) required to do something or get something done; "danger heightened his powers of discrimination"
+18722,abiogenesis autogenesis autogeny spontaneous_generation,a hypothetical organic phenomenon by which living organisms are created from nonliving matter
+18723,abiogenist,a believer in abiogenesis
+18724,abiotrophy,a loss of vitality and a degeneration of cells and tissues not due to any apparent injury
+18725,abjurer,a person who abjures
+18726,ablactation,the cessation of lactation
+18727,ablation,the erosive process that reduces the size of glaciers
+18728,ablation extirpation cutting_out excision,surgical removal of a body part or tissue
+18729,ablative ablative_case,the case indicating the agent in passive sentences or the instrument or manner or place of the action described by the verb
+18730,ablative_absolute,a constituent in Latin grammar; a noun and its modifier can function as a sentence modifier
+18731,ablaut,a vowel whose quality or length is changed to indicate linguistic distinctions (such as sing sang sung song)
+18732,able_seaman able-bodied_seaman,a seaman in the merchant marine; trained in special skills
+18733,ableism ablism able-bodiedism able-bodism,discrimination in favor of the able-bodied
+18734,ablepharia,a congenital absence of eyelids (partial or complete)
+18735,ablution,the ritual washing of a priest's hands or of sacred vessels
+18736,abnegation,the denial and rejection of a doctrine or belief; "abnegation of the Holy Trinity"
+18737,abnegation self-abnegation denial self-denial self-renunciation,renunciation of your own interests in favor of the interests of others
+18738,abnegator,one who gives up or relinquishes or renounces something
+18739,abnormal_psychology psychopathology,the branch of psychology concerned with abnormal behavior
+18740,abnormality abnormalcy,an abnormal physical condition resulting from defective genes or developmental deficiencies
+18741,abnormality freakishness,marked strangeness as a consequence of being abnormal
+18742,abnormality irregularity,behavior that breaches the rule or etiquette or custom or morality
+18743,abnormality mental_defectiveness,retardation sufficient to fall outside the normal range of intelligence
+18744,abocclusion,the condition in which the upper teeth do not touch the lower teeth when biting
+18745,abohm,a unit of resistance equal to a billionth of an ohm
+18746,abolition abolishment,the act of abolishing a system or practice or institution (especially abolishing slavery); "the abolition of capital punishment"
+18747,abolitionism,the doctrine that calls for the abolition of slavery
+18748,abolitionist emancipationist,a reformer who favors abolishing slavery
+18749,abomasum fourth_stomach,the fourth compartment of the stomach of a ruminant; the one where digestion takes place
+18750,abominable_snowman yeti,a large hairy humanoid creature said to live in the Himalayas
+18751,abomination,a person who is loathsome or disgusting
+18752,abomination,an action that is vicious or vile; an action that arouses disgust or abhorrence; "his treatment of the children is an abomination"
+18753,abominator loather,one who hates or loathes
+18754,abort,the act of terminating a project or procedure before it is completed; "I wasted a year of my life working on an abort"; "he sent a short message requesting an abort due to extreme winds in the area"
+18755,aborticide feticide,the act of destroying a fetus
+18756,abortifacient aborticide abortion-inducing_drug,a drug (or other chemical agent) that causes abortion
+18757,abortion,termination of pregnancy
+18758,abortion_pill mifepristone RU_486,an abortion-inducing drug (trade name RU 486) developed in France; when taken during the first five weeks of pregnancy it blocks the action of progesterone so that the uterus sloughs off the embryo
+18759,abortionist,a person (who should be a doctor) who terminates pregnancies
+18760,abortus,a human fetus whose weight is less than 0.5 kilogram when removed or expelled from the mother's body
+18761,about-face about_turn,act of pivoting 180 degrees, especially in a military formation
+18762,about-face volte-face reversal policy_change,a major change in attitude or principle or point of view; "an about-face on foreign policy"
+18763,above,an earlier section of a written text; "for instructions refer to the above"
+18764,abracadabra,gibberish and nonsense
+18765,abrachia,the condition of having no arms
+18766,abrader abradant,a tool or machine used for wearing down or smoothing or polishing
+18767,abrading_stone,a primitive stone artifact (usually made of sandstone) used as an abrader
+18768,abrasion attrition corrasion detrition,erosion by friction
+18769,abrasion scratch scrape excoriation,an abraded area where the skin is torn or worn off
+18770,abrasive abradant abrasive_material,a substance that abrades or wears down
+18771,abrasiveness,the quality of being sharply disagreeable
+18772,abridger abbreviator,one who shortens or abridges or condenses a written work
+18773,abrocome chinchilla_rat rat_chinchilla,ratlike rodent with soft fur and large ears of the Andes
+18774,abrogation repeal annulment,the act of abrogating; an official or legal cancellation
+18775,abrogator,an authority or official empowered to abolish or annul or repeal
+18776,abruptio_placentae,a disorder of pregnancy in which the placenta prematurely separates from the wall of the uterus
+18777,abruptness brusqueness curtness gruffness shortness,an abrupt discourteous manner
+18778,abruptness precipitateness precipitousness precipitance precipitancy suddenness,the quality of happening with headlong haste or without warning
+18779,abruptness precipitousness steepness,the property possessed by a slope that is very steep
+18780,abscess,symptom consisting of a localized collection of pus surrounded by inflamed tissue
+18781,abscessed_tooth,an abscess of a common kind in the tissue around a tooth
+18782,abscissa,the value of a coordinate on the horizontal axis
+18783,abscission,shedding of flowers and leaves and fruit following formation of scar tissue in a plant
+18784,abscission cutting_off,the act of cutting something off
+18785,absconder,a fugitive who runs away and hides to avoid arrest or prosecution
+18786,abscondment decampment,the act of running away secretly (as to avoid arrest)
+18787,abseiler rappeller,a person who descends down a nearly vertical face by using a doubled rope that is wrapped around the body and attached to some high point
+18788,absence,the time interval during which something or somebody is away; "he visited during my absence"
+18789,absence,the state of being absent; "he was surprised by the absence of any explanation"
+18790,absence,failure to be present
+18791,absence absence_seizure,the occurrence of an abrupt, transient loss or impairment of consciousness (which is not subsequently remembered), sometimes with light twitching, fluttering eyelids, etc.; common in petit mal epilepsy
+18792,absence_without_leave unauthorized_absence,unauthorized military absence
+18793,absentee,one that is absent or not in residence
+18794,absentee_ballot,(election) a ballot that is cast while absent (usually mailed in prior to election day)
+18795,absentee_rate,the percentage of workers who do not report to work
+18796,absenteeism,habitual absence from work
+18797,absentmindedness,preoccupation so great that the ordinary demands on attention are ignored
+18798,absinth absinthe,strong green liqueur flavored with wormwood and anise
+18799,absolute,something that is conceived or that exists independently and not in relation to other things; something that does not depend on anything else and is beyond human control; something that is not relative; "no mortal being can influence the absolute"
+18800,absolute_alcohol,pure ethyl alcohol (containing no more than 1% water)
+18801,absolute_ceiling,the maximum altitude at which an airplane can maintain horizontal flight
+18802,absolute_magnitude,(astronomy) the magnitude that a star would have if it were viewed from a distance of 10 parsecs (32.62 light years) from the earth
+18803,absolute_pitch perfect_pitch,the ability to identify the pitch of a tone
+18804,absolute_space,physical space independent of what occupies it
+18805,absolute_temperature,temperature measured on the absolute scale
+18806,absolute_threshold,the lowest level of stimulation that a person can detect
+18807,absolute_value numerical_value,a real number regardless of its sign
+18808,absolute_zero,(cryogenics) the lowest temperature theoretically attainable (at which the kinetic energy of atoms and molecules is minimal); 0 Kelvin or -273.15 centigrade or -459.67 Fahrenheit
+18809,absoluteness,the quality of being absolute; "the absoluteness of the pope's decree could not be challenged"
+18810,absolution,the condition of being formally forgiven by a priest in the sacrament of penance
+18811,absolution remission remittal remission_of_sin,the act of absolving or remitting; formal redemption as pronounced by a priest in the sacrament of penance
+18812,absolutism,the doctrine of an absolute being
+18813,absolutism totalitarianism totalism,the principle of complete and unrestricted power in government
+18814,absolutism tyranny despotism,dominance through threat of punishment and violence
+18815,absolutist,one who advocates absolutism
+18816,absolver,someone who grants absolution
+18817,absorbate,a material that has been or is capable of being absorbed
+18818,absorbency,the property of being absorbent
+18819,absorbent_cotton,cotton made absorbent by removal of the natural wax
+18820,absorbent_material absorbent,a material having capacity or tendency to absorb another substance
+18821,absorber,(physics) material in a nuclear reactor that absorbs radiation
+18822,absorption,(physics) the process in which incident radiated energy is retained without reflection or transmission on passing through a medium; "the absorption of photons by atoms or molecules"
+18823,absorption soaking_up,(chemistry) a process in which one substance permeates another; a fluid permeates or is dissolved by a liquid or solid
+18824,absorption_band,a dark band in the spectrum of white light that has been transmitted through a substance that exhibits absorption at selective wavelengths
+18825,absorption_coefficient coefficient_of_absorption absorptance,a measure of the rate of decrease in the intensity of electromagnetic radiation (as light) as it passes through a given substance; the fraction of incident radiant energy absorbed per unit mass or thickness of an absorber; "absorptance equals 1 minus transmittance"
+18826,absorption_indicator,an indicator used in reactions that involve precipitation
+18827,absorption_spectrum,the spectrum of electromagnetic radiation that has passed through a medium that absorbed radiation of certain wavelengths
+18828,absorption_unit,a unit for measuring absorption
+18829,absorptivity absorption_factor,(physics) the property of a body that determines the fraction of the incident radiation or sound flux absorbed or absorbable by the body
+18830,abstainer abstinent nondrinker,a person who refrains from drinking intoxicating beverages
+18831,abstainer ascetic,someone who practices self denial as a spiritual discipline
+18832,abstemiousness,restricted to bare necessities
+18833,abstemiousness,moderation in eating and drinking
+18834,abstinence,act or practice of refraining from indulging an appetite
+18835,abstinence abstention,the trait of abstaining (especially from alcohol)
+18836,abstractedness abstraction,preoccupation with something to the exclusion of all else
+18837,abstraction,an abstract painting
+18838,abstraction,the act of withdrawing or removing something
+18839,abstraction abstract,a concept or idea not associated with any specific instance; "he loved her only in the abstract--not in person"
+18840,abstraction abstract_entity,a general concept formed by extracting common features from specific examples
+18841,abstraction generalization generalisation,the process of formulating general concepts by abstracting common properties of instances
+18842,abstractionism abstract_art,an abstract genre of art; artistic content depends on internal form rather than pictorial representation
+18843,abstractionism unrealism,a representation having no reference to concrete objects or specific examples
+18844,abstractionist abstract_artist,a painter of abstract pictures
+18845,abstractness,the quality of being considered apart from a specific instance or object
+18846,abstractor abstracter,one who makes abstracts or summarizes information
+18847,absurd the_absurd,a situation in which life seems irrational and meaningless; "The absurd is the essential concept and the first truth"--Albert Camus
+18848,absurdity absurdness ridiculousness,a message whose content is at variance with reason
+18849,absurdity fatuity fatuousness silliness,a ludicrous folly; "the crowd laughed at the absurdity of the clown's behavior"
+18850,abulia aboulia,a loss of will power
+18851,abundance,(physics) the ratio of the number of atoms of a specific isotope of an element to the total number of isotopes present
+18852,abundance,(chemistry) the ratio of the total mass of an element in the earth's crust to the total mass of the earth's crust; expressed as a percentage or in parts per million
+18853,abundance copiousness teemingness,the property of a more than adequate quantity or supply; "an age of abundance"
+18854,abuse insult revilement contumely vilification,a rude expression intended to offend or hurt; "when a student made a stupid mistake he spared them no abuse"; "they yelled insults at the visiting team"
+18855,abuser maltreater,someone who abuses
+18856,abutment,point of contact between two objects or parts
+18857,abutment,a masonry support that touches and directly receives thrust or pressure of an arch or bridge
+18858,abutment_arch,an arch supported by an abutment
+18859,abutter,the owner of contiguous property
+18860,abvolt,a unit of potential equal to one-hundred-millionth of a volt
+18861,abwatt,a power unit equal to the power dissipated when 1 abampere flows across a potential difference of 1 abvolt (one ten-thousandth of a milliwatt)
+18862,abyss abysm,a bottomless gulf or pit; any unfathomable (or apparently unfathomable) cavity or chasm or void extending below (often used figuratively)
+18863,abyssal_zone,the deep sea (2000 meters or more) where there is no light
+18864,acacia,any of various spiny trees or shrubs of the genus Acacia
+18865,academia academe,the academic world
+18866,academic_administrator,an administrator in a college or university
+18867,academic_costume,a costume worn on formal occasions by the faculty or students of a university or college
+18868,academic_degree degree,an award conferred by a college or university signifying that the recipient has satisfactorily completed a course of study; "he earned his degree at Princeton summa cum laude"
+18869,academic_department,a division of a school that is responsible for a given subject
+18870,academic_freedom,the freedom of teachers and students to express their ideas in school without religious or political or institutional restrictions
+18871,academic_gown academic_robe judge's_robe,a gown worn by academics or judges
+18872,academic_program,(education) a program of education in liberal arts and sciences (usually in preparation for higher education)
+18873,academic_relation,a professional relation between instructors and those they instruct
+18874,academic_requirement,a requirement for admission to or completion of an academic program
+18875,academician,someone elected to honorary membership in an academy
+18876,academician academic faculty_member,an educator who works at a college or university
+18877,academician schoolman,a scholar who is skilled in academic disputation
+18878,academicianship,the position of member of an honorary academy
+18879,academy,a secondary school (usually private)
+18880,academy,a school for special training
+18881,academy,a learned establishment for the advancement of knowledge
+18882,academy honorary_society,an institution for the advancement of art or science or literature
+18883,acanthion,the craniometric point at the anterior extremity of the intermaxillary suture
+18884,acanthocephalan spiny-headed_worm,any of various worms living parasitically in intestines of vertebrates having a retractile proboscis covered with many hooked spines
+18885,acanthocyte,an abnormal red blood cell that has thorny projections of protoplasm
+18886,acanthocytosis,the presence of acanthocytes in the blood stream (as in abetalipoproteinemia)
+18887,acantholysis,a breakdown of a cell layer in the epidermis (as in pemphigus)
+18888,acanthoma skin_tumor,a neoplasm originating in the epidermis
+18889,acanthosis,an abnormal but benign thickening of the prickle-cell layer of the skin (as in psoriasis)
+18890,acanthosis_nigricans keratosis_nigricans,a skin disease characterized by dark wartlike patches in the body folds; can be benign or malignant
+18891,acanthus,any plant of the genus Acanthus having large spiny leaves and spikes or white or purplish flowers; native to Mediterranean region but widely cultivated
+18892,acardia,congenital absence of the heart (as in the development of some monsters)
+18893,acariasis acariosis acaridiasis,infestation with itch mites
+18894,acaricide acaracide,a chemical agent used to kill mites
+18895,acarid,very small free-living arachnid that is parasitic on animals or plants; related to ticks
+18896,acarine,mite or tick
+18897,acaroid_resin accaroid_resin accroides accroides_resin accroides_gum gum_accroides,an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper
+18898,acarophobia,a morbid fear of small insects and mites and worms
+18899,acarus genus_Acarus,any of several mites of the order Acarina
+18900,acatalectic,(prosody) a line of verse that has the full number of syllables
+18901,acataphasia,a disorder in which a lesion to the central nervous system leaves you unable to formulate a statement or to express yourself in an organized manner
+18902,acathexia,an inability to retain bodily secretions
+18903,acathexis,(psychoanalysis) a lack of cathexis; a condition in which significant objects or memories arouse no emotion in an individual
+18904,accelerando,a gradually increasing tempo of music; "my ear will not accept such violent accelerandos"
+18905,acceleration,(physics) a rate of increase of velocity
+18906,acceleration,an increase in rate of change; "modern science caused an acceleration of cultural change"
+18907,acceleration quickening speedup,the act of accelerating; increasing the speed
+18908,acceleration_unit,a unit for measuring acceleration
+18909,accelerator accelerator_pedal gas_pedal gas throttle gun,a pedal that controls the throttle valve; "he stepped on the gas"
+18910,accelerator particle_accelerator atom_smasher,a scientific instrument that increases the kinetic energy of charged particles
+18911,accelerator throttle throttle_valve,a valve that regulates the supply of fuel to the engine
+18912,accelerometer,an instrument for measuring the acceleration of aircraft or rockets
+18913,accent accent_mark,a diacritical mark used to indicate stress or placed above a vowel to indicate a special pronunciation
+18914,accent speech_pattern,distinctive manner of oral expression; "he couldn't suppress his contemptuous accent"; "she had a very clear speech pattern"
+18915,accentor,small sparrow-like songbird of mountainous regions of Eurasia
+18916,accentual_system prosodic_system,the system of accentuation used in a particular language
+18917,accentuation,the use or application of an accent; the relative prominence of syllables in a phrase or utterance
+18918,acceptability acceptableness,satisfactoriness by virtue of conforming to approved standards
+18919,acceptance,the state of being acceptable and accepted; "torn jeans received no acceptance at the country club"
+18920,acceptance,(contract law) words signifying consent to the terms of an offer (thereby creating a contract)
+18921,acceptance,the act of taking something that is offered; "her acceptance of the gift encouraged him"; "he anticipated their acceptance of his offer"
+18922,acceptance banker's_acceptance,banking: a time draft drawn on and accepted by a bank
+18923,acceptance_sampling,a statistical procedure for accepting or rejecting a batch of merchandise or documents; involves determining the maximum number of defects discovered in a sample before the entire batch is rejected
+18924,acceptation,acceptance as true or valid
+18925,acceptor,(chemistry) in the formation of a coordinate bond it is the compound to which electrons are donated
+18926,acceptor,the person (or institution) who accepts a check or draft and becomes responsible for paying the party named in the draft when it matures
+18927,access,the right to obtain or make use of or take advantage of something (as services or membership)
+18928,access,the act of approaching or entering; "he gained access to the building"
+18929,access access_code,a code (a series of characters or digits) that must be entered in some way (typed or dialed or spoken) to get the use of something (a telephone line or a computer or a local area network etc.)
+18930,access approach,a way of entering or leaving; "he took a wrong turn on the access to the bridge"
+18931,access memory_access,(computer science) the operation of reading or writing stored information
+18932,access_road slip_road,a short road giving access to an expressway; "in Britain they call an access road a slip road"
+18933,access_time,(computer science) the interval between the time data is requested by the system and the time the data is provided by the drive; "access time is the sum of seek time and rotational latency and command processing overhead"
+18934,accession,a process of increasing by addition (as to a collection or group); "the art collection grew through accession"
+18935,accession,(civil law) the right to all of that which your property produces whether by growth or improvement
+18936,accession addition,something added to what you already have; "the librarian shelved the new accessions"; "he was a new addition to the staff"
+18937,accession assenting,agreeing with or consenting to (often unwillingly); "accession to such demands would set a dangerous precedent"; "assenting to the Congressional determination"
+18938,accession rise_to_power,the act of attaining or gaining access to a new office or right or position (especially the throne); "Elizabeth's accession in 1558"
+18939,accessory accessary,someone who helps another person commit a crime
+18940,accessory accoutrement accouterment,clothing that is worn or carried, but not part of your main clothing
+18941,accessory appurtenance supplement add-on,a supplementary component that improves capability
+18942,accessory_after_the_fact,a person who gives assistance or comfort to someone known to be a felon or known to be sought in connection with the commission of a felony
+18943,accessory_before_the_fact,a person who procures or advises or commands the commission of a felony but who is not present at its perpetration
+18944,accessory_cephalic_vein vena_cephalica_accessoria,a vein that passes along the radial edge of the forearm and joins the cephalic vein near the elbow
+18945,accessory_during_the_fact,a person who witnesses a crime but does not try to prevent it
+18946,accessory_fruit pseudocarp,fruit containing much fleshy tissue besides that of the ripened ovary; as apple or strawberry
+18947,accessory_hemiazygos_vein accessory_hemiazygous_vein vena_hemiazygos_accessoria,a vein formed by the union of the 4th to 7th posterior intercostal veins; empties into the azygos vein
+18948,accessory_nerve spinal_accessory nervus_accessorius eleventh_cranial_nerve,arises from two sets of roots (cranial and spinal) that unite to form the nerve
+18949,accessory_vertebral_vein vena_vertebralis_accessoria,a vein that accompanies the vertebral vein but passes through the foramen of the transverse process of the 7th cervical vertebra and empties into the brachiocephalic vein
+18950,accident,an unfortunate mishap; especially one causing damage or injury
+18951,accident stroke fortuity chance_event,anything that happens suddenly or by chance without an apparent cause; "winning the lottery was a happy accident"; "the pregnancy was a stroke of bad luck"; "it was due to an accident or fortuity"
+18952,accidental,a musical notation that makes a note sharp or flat or natural although that is not part of the key signature
+18953,acclaim acclamation plaudits plaudit eclat,enthusiastic approval; "the book met with modest acclaim"; "he acknowledged the plaudits of the crowd"; "they gave him more eclat than he really deserved"
+18954,acclimatization acclimatisation acclimation,adaptation to a new climate (a new temperature or altitude or environment)
+18955,accommodating_lens_implant accommodating_IOL,a lens implant containing a hinge that allows for both near and far vision (thus mimicking the natural lens of a young person)
+18956,accommodation,a settlement of differences; "they reached an accommodation with Japan"
+18957,accommodation,in the theories of Jean Piaget: the modification of internal representations in order to accommodate a changing knowledge of reality
+18958,accommodation,living quarters provided for public convenience; "overnight accommodations are available"
+18959,accommodation,the act of providing something (lodging or seat or food) to meet a need
+18960,accommodation,(physiology) the automatic adjustment in focal length of the natural lens of the eye
+18961,accommodation_endorser,a person who endorses a promissory note without compensation or benefit but simply as a favor to the borrower
+18962,accommodation_ladder,(nautical) a portable ladder hung over the side of a vessel to give access to small boats alongside
+18963,accommodation_reflex,reflex changes in the eyes that enable an object to be focused on the retina
+18964,accompaniment concomitant attendant co-occurrence,an event or situation that happens at the same time as or in connection with another
+18965,accompaniment musical_accompaniment backup support,a musical part (vocal or instrumental) that supports or provides background for other musical parts
+18966,accompanist accompanyist,a person who provides musical accompaniment (usually on a piano)
+18967,accompanying_vein vena_comitans,a vein accompanying another structure; a vein may accompany an artery in such a way that the arterial pulses aid venous return
+18968,accomplice confederate,a person who joins with another in carrying out some plan (especially an unethical or illegal plan)
+18969,accomplishment achievement,the action of accomplishing something
+18970,accord,sympathetic compatibility
+18971,accord conformity accordance,concurrence of opinion; "we are in accord with your proposal"
+18972,accord_and_satisfaction,the settlement of a debt by paying less than the amount demanded in exchange for extinguishing the debt
+18973,accordance accordance_of_rights,the act of granting rights; "the accordance to Canada of rights of access"
+18974,accordion squeeze_box,a portable box-shaped free-reed instrument; the reeds are made to vibrate by air from the bellows controlled by the player
+18975,accordionist,a musician who plays the accordion
+18976,account,importance or value; "a person of considerable account"; "he predicted that although it is of small account now it will rapidly increase in importance"
+18977,account,the quality of taking advantage; "she turned her writing skills to good account"
+18978,account accounting account_statement,a statement of recent transactions and the resulting balance; "they send me an accounting every month"
+18979,account business_relationship,a formal contractual relationship established to provide for regular banking or brokerage or business services; "he asked to see the executive who handled his account"
+18980,account_executive account_representative registered_representative customer's_broker customer's_man,someone in charge of a client's account for an advertising agency or brokerage or other service business
+18981,account_payable payable,a liability account showing how much is owed for goods and services purchased on credit; "the problem was to match receivables and payables in the same currency"
+18982,accountability answerability answerableness,responsibility to someone or for some activity
+18983,accountancy accounting,the occupation of maintaining and auditing records and preparing financial reports for a business
+18984,accountant comptroller controller,someone who maintains and audits business accounts
+18985,accountantship,the position of accountant
+18986,accounting,a convincing explanation that reveals basic causes; "he was unable to give a clear accounting for his actions"
+18987,accounting,a system that provides quantitative information about finances
+18988,accounting accounting_system method_of_accounting,a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts
+18989,accounting_data,all the data (ledgers and journals and spreadsheets) that support a financial statement; can be hard copy or machine readable
+18990,accounting_firm,a firm of accountants who provide accounting and auditing services for a fee
+18991,accounting_principle accounting_standard,a principle that governs current accounting practice and that is used as a reference to determine the appropriate treatment of complex transactions
+18992,accounts_payable,a debtor's accounts of money he owes; normally arise from the purchase of products or services
+18993,accounts_receivable,a creditor's accounts of money owed to him; normally arise from the sale of products or services
+18994,accreditation,the act of granting credit or recognition (especially with respect to educational institution that maintains suitable standards); "a commission is responsible for the accreditation of medical schools"
+18995,accretion,something contributing to growth or increase; "he scraped away the accretions of paint"; "the central city surrounded by recent accretions"
+18996,accretion,(astronomy) the formation of a celestial object by the effect of gravity pulling together surrounding objects and gases
+18997,accretion,(biology) growth by addition as by the adhesion of parts or particles
+18998,accretion,(geology) an increase in land resulting from alluvial deposits or waterborne sediment
+18999,accretion,(law) an increase in a beneficiary's share in an estate (as when a co-beneficiary dies or fails to meet some condition or rejects the inheritance)
+19000,accretion accumulation,an increase by natural growth or addition
+19001,accrual_basis,a method of accounting in which each item is entered as it is earned or incurred regardless of when actual payments are received or made
+19002,acculturation assimilation,the process of assimilating new ideas into an existing cognitive structure
+19003,acculturation culture,all the knowledge and values shared by a society
+19004,accumulation,(finance) profits that are not paid out as dividends but are added to the capital base of the corporation
+19005,accumulation accrual accruement,the act of accumulating
+19006,accumulator accumulator_register,(computer science) a register that has a built-in adder that adds an input number to the contents of the register
+19007,accuracy,(mathematics) the number of significant figures given in a number; "the atomic clock enabled scientists to measure time with much greater accuracy"
+19008,accuracy truth,the quality of being near to the true value; "he was beginning to doubt the accuracy of his compass"; "the lawyer questioned the truth of my account"
+19009,accusation accusal,a formal charge of wrongdoing brought against a person; the act of imputing blame or guilt
+19010,accusation charge,an assertion that someone is guilty of a fault or offence; "the newspaper published charges that Jones was guilty of drunken driving"
+19011,accusative accusative_case objective_case,the case of nouns serving as the direct object of a verb
+19012,accused,a defendant in a criminal proceeding
+19013,accuser,someone who imputes guilt or blame
+19014,ace,one of four playing cards in a deck having a single pip on its face
+19015,ace,a serve that the receiver is unable to reach
+19016,ace adept champion sensation maven mavin virtuoso genius hotshot star superstar whiz whizz wizard wiz,someone who is dazzlingly skilled in any field
+19017,ace_of_clubs,the ace in the club suit
+19018,ace_of_diamonds,the ace in the diamond suit
+19019,ace_of_hearts,the ace in the heart suit
+19020,ace_of_spades,the ace in the spade suit; sometimes taken as a portent of death
+19021,acebutolol Sectral,an oral beta blocker (trade name Sectral) used in treating hypertension
+19022,acentric_chromosome,a chromosome lacking a centromere
+19023,acephalia acephaly acephalism,absence of the head (as in the development of some monsters)
+19024,acerate_leaf needle,the leaf of a conifer
+19025,acerbity,a sharp bitterness
+19026,acerbity tartness,a sharp sour taste
+19027,acerola barbados_cherry surinam_cherry West_Indian_cherry,acid red or yellow cherry-like fruit of a tropical American shrub very rich in vitamin C
+19028,acervulus,small asexual fruiting body resembling a cushion or blister consisting of a mat of hyphae that is produced on a host by some fungi
+19029,acetabulum cotyloid_cavity,the cup-shaped hollow in the hipbone into which the head of the femur fits to form a ball-and-socket joint
+19030,acetal,any organic compound formed by adding alcohol molecules to aldehyde molecules
+19031,acetaldehyde ethanal,a colorless volatile water-soluble liquid aldehyde used chiefly in the manufacture of acetic acid and perfumes and drugs
+19032,acetaldol,unsaturated aldol
+19033,acetamide ethanamide,a colorless solid amide of acetic acid used as a solvent and in the synthesis of organic compounds
+19034,acetaminophen Datril Tylenol Panadol Phenaphen Tempra Anacin_III,an analgesic for mild pain but not for inflammation; also used as an antipyretic; (Datril, Tylenol, Panadol, Phenaphen, Tempra, and Anacin III are trademarks of brands of acetaminophen tablets)
+19035,acetanilide acetanilid phenylacetamide,a white crystalline compound used as an analgesic and also as an antipyretic
+19036,acetate ethanoate,a salt or ester of acetic acid
+19037,acetate_disk phonograph_recording_disk,a disk coated with cellulose acetate
+19038,acetate_rayon acetate,a fabric made from fibers of cellulose acetate
+19039,acetic_acid ethanoic_acid,a colorless pungent liquid widely used in manufacturing plastics and pharmaceuticals
+19040,acetic_anhydride,a compound that is needed in order to refine opium into heroin
+19041,acetin,any of three liquid acetates that are formed when acetic acid and glycerin are heated together
+19042,acetoacetic_acid,unstable acid found in abnormal amounts in the blood and urine in some cases of impaired metabolism (as diabetes mellitus or starvation)
+19043,acetone propanone dimethyl_ketone,the simplest ketone; a highly flammable liquid widely used as an organic solvent and as material for making plastics
+19044,acetophenetidin acetphenetidin phenacetin,a white crystalline compound used as an analgesic and also as an antipyretic
+19045,acetum,a dilute solution of acetic acid that is used as a solvent (e.g. for a drug)
+19046,acetyl acetyl_group acetyl_radical ethanoyl_group ethanoyl_radical,the organic group of acetic acid (CH3CO-)
+19047,acetyl_chloride ethanoyl_chloride,colorless liquid acyl chloride (CH3COCl) that has a pungent odor
+19048,acetylation,the process of introducing an acetyl group into a compound; "the acetylation of cyclooxygenase-2 by aspirin"
+19049,acetylcholine,a neurotransmitter that is a derivative of choline; released at the ends of nerve fibers in the somatic and parasympathetic nervous systems
+19050,acetylene ethyne alkyne,a colorless flammable gas used chiefly in welding and in organic synthesis
+19051,ache aching,a dull persistent (usually moderately intense) pain
+19052,achene,small dry indehiscent fruit with the seed distinct from the fruit wall
+19053,achievability attainability attainableness,the state of being achievable
+19054,achiever winner success succeeder,a person with a record of successes; "his son would never be the achiever that his father was"; "only winners need apply"; "if you want to be a success you have to dress like a success"
+19055,achillea,any of several plants of the genus Achillea native to Europe and having small white flowers in flat-topped flower heads
+19056,achimenes hot_water_plant,any plant of the genus Achimenes having showy bell-shaped flowers that resemble gloxinias
+19057,achira indian_shot arrowroot Canna_indica Canna_edulis,canna grown especially for its edible rootstock from which arrowroot starch is obtained
+19058,achlorhydria,an abnormal deficiency or absence of free hydrochloric acid in the gastric juice; often associated with severe anemias and cancer of the stomach
+19059,acholia cholestasis,a condition in which little or no bile is secreted or the flow of bile into the digestive tract is obstructed
+19060,achondrite,a stony meteor lacking chondrules
+19061,achondroplasia achondroplasty osteosclerosis_congenita chondrodystrophy,an inherited skeletal disorder beginning before birth; cartilage is converted to bone resulting in dwarfism
+19062,achromatic_color achromatic_colour,a color lacking hue; white or grey or black
+19063,achromatic_lens,a compound lens system that forms an image free from chromatic aberration
+19064,achromatic_vision,vision using the rods
+19065,achromatin,the part of a cell nucleus that is relatively uncolored by stains or dyes
+19066,achromia,an absence of normal pigmentation especially in the skin (as in albinism) or in red blood cells
+19067,achylia achylia_gastrica,absence of gastric juices (partial or complete)
+19068,acicula,a needlelike part or structure of a plant or animal or crystal; as a spine or bristle or crystal
+19069,acid,any of various water-soluble compounds having a sour taste and capable of turning litmus red and reacting with a base to form a salt
+19070,acid back_breaker battery-acid dose dot Elvis loony_toons Lucy_in_the_sky_with_diamonds pane superman window_pane Zen,street name for lysergic acid diethylamide
+19071,acid-base_equilibrium acid-base_balance,(physiology) the normal equilibrium between acids and alkalis in the body; "with a normal acid-base balance in the body the blood is slightly alkaline"
+19072,acid-base_indicator,an indicator that changes color on going from acidic to basic solutions
+19073,acid_dye,dye in which the chromophore is part of a negative ion
+19074,acid_head,someone who takes LSD
+19075,acid_rain acid_precipitation,rain containing acids that form in the atmosphere when industrial gas emissions (especially sulfur dioxide and nitrogen oxides) combine with water
+19076,acid_test,a rigorous or crucial appraisal
+19077,acid_value,(chemistry) the amount of free acid present in fat as measured by the milligrams of potassium hydroxide needed to neutralize it; "as the glycerides in fat slowly decompose the acid value increases"
+19078,acidemia,a blood disorder characterized by an increased concentration of hydrogen ions in the blood (which falls below 7 on the pH scale)
+19079,acidic_hydrogen acid_hydrogen,a hydrogen atom in an acid that forms a positive ion when the acid dissociates
+19080,acidification,the process of becoming acid or being converted into an acid
+19081,acidimetry,volumetric analysis using standard solutions of acids to measure the amount of a base present
+19082,acidity,pH values below 7
+19083,acidity acidulousness,the taste experience when something acidic is taken into the mouth
+19084,acidophil acidophile,an organism that thrives in a relatively acid environment
+19085,acidophilus Lactobacillus_acidophilus,a bacterium that is used to make yogurt and to supplement probiotics
+19086,acidophilus_milk,milk fermented by bacteria; used to treat gastrointestinal disorders
+19087,acidosis,abnormally high acidity (excess hydrogen-ion concentration) of the blood and other body tissues
+19088,acinus,one of the small drupes making up an aggregate or multiple fruit like a blackberry
+19089,acinus,one of the small sacs or saclike dilations in a compound gland
+19090,ackee akee,red pear-shaped tropical fruit with poisonous seeds; flesh is poisonous when unripe or overripe
+19091,acknowledgment acknowledgement,a statement acknowledging something or someone; "she must have seen him but she gave no sign of acknowledgment"; "the preface contained an acknowledgment of those who had helped her"
+19092,aclinic_line magnetic_equator,an imaginary line paralleling the equator where a magnetic needle has no dip
+19093,acme height elevation peak pinnacle summit superlative meridian tiptop top,the highest level or degree attainable; the highest stage of development; "his landscapes were deemed the acme of beauty"; "the artist's gifts are at their acme"; "at the height of her career"; "the peak of perfection"; "summer was at its peak"; "...catapulted Einstein to the pinnacle of fame"; "the summit of his ambition"; "so many highest superlatives achieved by man"; "at the top of his profession"
+19094,acne,an inflammatory disease involving the sebaceous glands of the skin; characterized by papules or pustules or comedones
+19095,acne_rosacea rosacea,a skin disease of adults (more often women) in which blood vessels of the face enlarge resulting in a flushed appearance
+19096,acne_vulgaris,the most common form of acne; usually affects people from puberty to young adulthood
+19097,acolyte,someone who assists a priest or minister in a liturgical service; a cleric ordained in the highest of the minor orders in the Roman Catholic Church but not in the Anglican Church or the Eastern Orthodox Churches
+19098,aconite,any of various usually poisonous plants of the genus Aconitum having tuberous roots and palmately lobed leaves and blue or white flowers
+19099,acorea,absence of the pupil in an eye
+19100,acorn,fruit of the oak tree: a smooth thin-walled nut in a woody cup-shaped base
+19101,acorn_barnacle rock_barnacle Balanus_balanoides,barnacle that attaches to rocks especially in intertidal zones
+19102,acorn_squash,squash plant bearing small acorn-shaped fruits having yellow flesh and dark green or yellow rind with longitudinal ridges
+19103,acorn_squash,small dark green or yellow ribbed squash with yellow to orange flesh
+19104,acorn_tube,a small vacuum tube; used at high frequencies
+19105,acoustic,a remedy for hearing loss or deafness
+19106,acoustic_buoy,a buoy that can be heard (at night)
+19107,acoustic_delay_line sonic_delay_line,a delay line based on the time of propagation of sound waves
+19108,acoustic_device,a device for amplifying or transmitting sound
+19109,acoustic_guitar,sound is not amplified by electrical means
+19110,acoustic_modem,a modem that converts electrical signals to telephone tones and back again
+19111,acoustic_nerve auditory_nerve vestibulocochlear_nerve nervus_vestibulocochlearis eighth_cranial_nerve,a composite sensory nerve supplying the hair cells of the vestibular organ and the hair cells of the cochlea
+19112,acoustic_phenomenon,a physical phenomenon associated with the production or transmission of sound
+19113,acoustic_power sound_pressure_level,the physical intensity of sound
+19114,acoustic_radiation_pressure,(acoustics) the pressure exerted on a surface normal to the direction of propagation of a sound wave
+19115,acoustic_resistance acoustic_impedance acoustic_reactance,opposition to the flow of sound through a surface; acoustic resistance is the real component of acoustic impedance and acoustic reactance is the imaginary component
+19116,acoustic_storage,a storage device consisting of acoustic delay lines
+19117,acoustician,a physicist who specializes in acoustics
+19118,acoustics,the study of the physical properties of sound
+19119,acquaintance acquaintanceship,a relationship less intimate than friendship
+19120,acquaintance familiarity conversance conversancy,personal knowledge or information about someone or something
+19121,acquaintance friend,a person with whom you are acquainted; "I have trouble remembering the names of all my acquaintances"; "we are friends of the family"
+19122,acquiescence,acceptance without protest
+19123,acquired_hemochromatosis,hemochromatosis resulting from repeated transfusions or from excessive intake of foods containing iron
+19124,acquired_immunity,immunity to a particular disease that is not innate but has been acquired during life; immunity can be acquired by the development of antibodies after an attack of an infectious disease or by a pregnant mother passing antibodies through the placenta to a fetus or by vaccination
+19125,acquired_taste,a preference that is only acquired after considerable experience; "martinis are an acquired taste"
+19126,acquirer,a person who acquires something (usually permanently)
+19127,acquirer,a corporation gaining financial control over another corporation or financial institution through a payment in cash or an exchange of stock
+19128,acquirer,the financial institution that dispenses cash in automated teller machines and collects a fee from the bank that issued the credit card
+19129,acquiring getting,the act of acquiring something; "I envied his talent for acquiring"; "he's much more interested in the getting than in the giving"
+19130,acquisition,something acquired; "a recent acquisition by the museum"
+19131,acquisition,the act of contracting or assuming or acquiring possession of something; "the acquisition of wealth"; "the acquisition of one company by another"
+19132,acquisitiveness,strong desire to acquire and possess
+19133,acquittal,a judgment of not guilty
+19134,acquittance release,a legal document evidencing the discharge of a debt or obligation
+19135,acre,a unit of area (4840 square yards) used in English-speaking countries
+19136,acre-foot,the volume of water that would cover 1 acre to a depth of 1 foot; 43,560 cubic feet or 1233.5 cubic meters
+19137,acre_inch,one twelfth of an acre-foot
+19138,acreage land_area,an area of ground used for some particular purpose (such as building or farming); "he wanted some acreage to build on"
+19139,acridity,having an acrid smell
+19140,acridity acridness,extreme bitterness; "the acridity of alkali"
+19141,acridity acridness,the quality of being sharply disagreeable in language or tone
+19142,acroanesthesia acroanaesthesia,loss of sensation in the extremities
+19143,acrobat,an athlete who performs acts requiring skill and agility and coordination
+19144,acrobatic_stunt acrobatic_feat,a stunt performed by an acrobat
+19145,acrobatics aerobatics stunting stunt_flying,the performance of stunts while in flight in an aircraft
+19146,acrobatics tumbling,the gymnastic moves of an acrobat
+19147,acrocarp acrocarpous_moss,a moss in which the main axis is terminated by the archegonium (and hence the capsule)
+19148,acrocentric_chromosome,a chromosome with the centromere near one end so that one chromosomal arm is short and one is long
+19149,acrocyanosis Raynaud's_sign,cyanosis of the extremities; can occur when a spasm of the blood vessels is caused by exposure to cold or by strong emotion
+19150,acrodont,an animal having teeth consolidated with the summit of the alveolar ridge without sockets
+19151,acrogen,any flowerless plant such as a fern (pteridophyte) or moss (bryophyte) in which growth occurs only at the tip of the main stem
+19152,acromegaly acromegalia,enlargement of bones of hands and feet and face; often accompanied by headache and muscle pain and emotional disturbances; caused by overproduction of growth hormone by the anterior pituitary gland (due to a tumor)
+19153,acromicria acromikria,abnormally small extremities (underdeveloped fingers and toes)
+19154,acromion acromial_process,the outermost point of the spine of the shoulder blade
+19155,acromphalus,abnormal protrusion of the navel; sometimes the start of umbilical hernia
+19156,acromyotonia,myotonia of the extremities only; causes spastic deformity of the hand or foot
+19157,acronym initialism,a word formed from the initial letters of the several words in the name and pronounced as one word; "`NATO' is an initialism for North Atlantic Treaty Organization"; "the word `scuba' is an acronym for s(elf)-c(ontained) u(nderwater) b(reathing) a(pparatus)"
+19158,acrophobia,a morbid fear of great heights
+19159,acrophony,naming a letter of the alphabet by using a word whose initial sound is the sound represented by that letter
+19160,acropolis,the citadel in ancient Greek towns
+19161,acrosome,a process at the anterior end of a sperm cell that produces enzymes to facilitate penetration of the egg
+19162,acrostic,verse in which certain letters such as the first in each line form a word or message
+19163,acrylamide,a white crystalline amide of propenoic acid can damage the nervous system and is carcinogenic in laboratory animals; "they claimed that acrylamide is produced when certain carbohydrates are baked or fried at high temperatures"
+19164,acrylic,a synthetic fabric
+19165,acrylic acrylic_paint,used especially by artists
+19166,acrylic acrylic_resin acrylate_resin,a glassy thermoplastic; can be cast and molded or used in coatings and adhesives
+19167,acrylic_fiber acrylic,polymerized from acrylonitrile
+19168,acrylonitrile-butadiene-styrene ABS,any of a class of composite plastics used to make car bodies and cases for computers and other appliances
+19169,act,a manifestation of insincerity; "he put on quite an act for her benefit"
+19170,act,a subdivision of a play or opera or ballet
+19171,act deed human_action human_activity,something that people do or cause to happen
+19172,act enactment,a legal document codifying the result of deliberations of a committee or society or legislative body
+19173,act routine number turn bit,a short performance that is part of a longer program; "he did his act three times every evening"; "she had a catchy little routine"; "it was one of the best numbers he ever did"
+19174,act_of_God force_majeure vis_major inevitable_accident unavoidable_casualty,a natural and unavoidable catastrophe that interrupts the expected course of events; "he discovered that his house was not insured against acts of God"
+19175,actin,one of the proteins into which actomyosin can be split; can exist in either a globular or a fibrous form
+19176,acting playing playacting performing,the performance of a part or role in a drama
+19177,acting_out,a (usually irritating) impulsive and uncontrollable outburst by a problem child or a neurotic adult
+19178,acting_out,(psychiatry) the display of previously inhibited emotions (often in actions rather than words); considered to be healthy and therapeutic
+19179,actinia actinian actiniarian,any sea anemone or related animal
+19180,actinic_dermatitis,dermatitis caused exposure to sunlight
+19181,actinic_keratosis,an overgrowth of skin layers resulting from extended exposure to the sun
+19182,actinic_radiation actinic_ray,electromagnetic radiation that can produce photochemical reactions
+19183,actinide_series,(chemistry) a series of 15 radioactive elements with increasing atomic numbers from actinium to lawrencium
+19184,actinism,the property of radiation that enables it to produce photochemical effects
+19185,actinium Ac atomic_number_89,a radioactive element of the actinide series; found in uranium ores
+19186,actinoid actinide actinon,any of a series of radioactive elements with atomic numbers 89 through 103
+19187,actinolite,a green mineral of the amphibole group; calcium magnesium iron silicate
+19188,actinometer,an instrument for measuring the intensity of electromagnetic radiation (usually by the photochemical effect)
+19189,actinometry,measuring the intensity of electromagnetic radiation (especially of the sun's rays)
+19190,actinomyces,soil-inhabiting saprophytes and disease-producing plant and animal parasites
+19191,actinomycete,any bacteria (some of which are pathogenic for humans and animals) belonging to the order Actinomycetales
+19192,actinomycin,any of various red antibiotics isolated from soil bacteria
+19193,actinomycosis,disease of cattle that can be transmitted to humans; results from infection with actinomycetes; characterized by hard swellings that exude pus through long sinuses
+19194,actinomyxidian,parasites of worms
+19195,actinopod,protozoa having stiff rodlike radiating pseudopods
+19196,action,the series of events that form a plot; "his novels always have a lot of action"
+19197,action,the trait of being active and energetic and forceful; "a man of action"
+19198,action,an act by a government body or supranational organization; "recent federal action undermined the segregationist position"; "the United Nations must have the power to propose and organize action without being hobbled by irrelevant issues"; "the Union action of emancipating Southern slaves"
+19199,action,the most important or interesting work or activity in a specific area or field; "the action is no longer in technology stocks but in municipal bonds"; "gawkers always try to get as close to the action as possible"
+19200,action,something done (usually as opposed to something said); "there were stories of murders and other unnatural actions"
+19201,action action_mechanism,the operating part that transmits power to a mechanism; "the piano had a very stiff action"
+19202,action activity activeness,the state of being active; "his sphere of activity"; "he is out of action"
+19203,action_officer,the case officer designated to perform an act during a clandestine operation (especially in a hostile area)
+19204,action_potential,the local voltage change across the cell wall as a nerve impulse is transmitted
+19205,action_spectrum,the efficiency with which electromagnetic radiation produces a photochemical reaction plotted as a function of the wavelength of the radiation
+19206,activated_carbon activated_charcoal,powdered or granular carbon used for purifying by adsorption; given orally (as a slurry) it is an antidote for some kinds of poisons
+19207,activating_agent,(mineral extraction) a surface-active chemical used in flotation process to increase the attraction to a specific mineral
+19208,activation,stimulation of activity in an organism or chemical
+19209,activation,making active and effective (as a bomb)
+19210,activation_energy energy_of_activation,the energy that an atomic system must acquire before a process (such as an emission or reaction) can occur; "catalysts are said to reduce the energy of activation during the transition phase of a reaction"
+19211,activator,(biology) any agency bringing about activation; a molecule that increases the activity of an enzyme or a protein that increases the production of a gene product in DNA transcription
+19212,active,a person who is a participating member of an organization; "the club issues a list of members, both the actives and the retirees"
+19213,active_agent active,chemical agent capable of activity
+19214,active_air_defense,air defense by the use aircraft or missiles or artillery or electronic countermeasures
+19215,active_application,an application that is currently running and in the foreground
+19216,active_birth,childbirth during which the mother is encouraged to be an active participant
+19217,active_citizen,a citizen who takes an active role in the community (as in crime prevention and neighborhood watch)
+19218,active_immunity,a form of acquired immunity in which the body produces its own antibodies against disease-causing antigens
+19219,active_matrix_screen,a type of LCD screen used for some portable computers; there is a separate circuit for each pixel
+19220,active_placebo,a placebo used in experimental tests of a drug that has noticeable side effects; "an active placebo mimics the side effects of the experimental drug"
+19221,active_site,the part of an enzyme or antibody where the chemical reaction occurs
+19222,active_transport,transport of a substance (as a protein or drug) across a cell membrane against the concentration gradient; requires an expenditure of energy
+19223,active_trust,a trust in which the trustee must perform certain duties
+19224,active_voice active,the voice used to indicate that the grammatical subject of the verb is performing the action or causing the happening denoted by the verb; "`The boy threw the ball' uses the active voice"
+19225,activeness activity,the trait of being active; moving or acting rapidly and energetically; "the level of activity declines with age"
+19226,activism,a policy of taking direct action to achieve a political or social goal
+19227,activity,(chemistry) the capacity of a substance to take part in a chemical reaction; "catalytic activity"
+19228,activity,any specific behavior; "they avoided all recreational activity"
+19229,actomyosin,a protein complex in muscle fibers; composed of myosin and actin; shortens when stimulated and causes muscle contractions
+19230,actor doer worker,a person who acts and gets things done; "he's a principal actor in this affair"; "when you want something done get a doer"; "he's a miracle worker"
+19231,actor histrion player thespian role_player,a theatrical performer
+19232,actor's_agent theatrical_agent,a business agent for an actor
+19233,actor's_line speech words,words making up the dialogue of a play; "the actor forgot his speech"
+19234,actress,a female actor
+19235,actual_damages compensatory_damages general_damages,(law) compensation for losses that can readily be proven to have occurred and for which the injured party has the right to be compensated
+19236,actual_eviction,the physical ouster of a tenant from the leased premises; the tenant is relieved of any further duty to pay rent
+19237,actual_possession,(law) immediate and direct physical control over property
+19238,actual_sin,a sin committed of your own free will (as contrasted with original sin)
+19239,actuality,the state of actually existing objectively; "a hope that progressed from possibility to actuality"
+19240,actuarial_table statistical_table,a table of statistical data
+19241,actuator,a mechanism that puts something into automatic action
+19242,acuity visual_acuity sharp-sightedness,sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)
+19243,aculea,small spiny outgrowth on the wings of certain insects
+19244,aculeus,a stiff sharp-pointed plant process
+19245,aculeus,a sharp-pointed process especially a sting of a hymenopterous insect
+19246,acumen,a tapering point
+19247,acuminate_leaf,a leaf narrowing to a slender point
+19248,acupressure G-Jo shiatsu,treatment of symptoms by applying pressure with the fingers to specific pressure points on the body
+19249,acupuncture stylostixis,treatment of pain or disease by inserting the tips of needles at specific points on the skin
+19250,acute_accent acute ague,a mark placed above a vowel to indicate pronunciation
+19251,acute_angle,an angle less than 90 degrees but more than 0 degrees
+19252,acute_brain_disorder acute_organic_brain_syndrome,any disorder (as sudden confusion or disorientation) in an otherwise normal person that is due to reversible (temporary) impairment of brain tissues (as by head injuries or drugs or infection)
+19253,acute_gastritis,gastritis caused by ingesting an irritant (as too much aspirin)
+19254,acute_glaucoma closed-angle_glaucoma angle-closure_glaucoma,glaucoma in which the iris blocks the outflow of aqueous humor; "closed-angle glaucoma can cause a rapid buildup of high intraocular pressure that results in permanent visual damage in a couple of days"
+19255,acute_glossitis,glossitis resulting from injury or infection and characterized by swelling and pain
+19256,acute_hemorrhagic_encephalitis,encephalitis that resembles apoplexy due to blood extravasation
+19257,acute_leukemia,rapidly progressing leukemia
+19258,acute_lymphocytic_leukemia acute_lymphoblastic_leukemia,acute leukemia characterized by proliferation of immature lymphoblast-like cells in bone marrow, lymph nodes, spleen, and blood; most common in children
+19259,acute_myelocytic_leukemia acute_myeloid_leukemia,acute leukemia characterized by proliferation of granular leukocytes; most common in adolescents and young adults
+19260,acute_pyelonephritis,pyelonephritis resulting from the spread of a bladder infection
+19261,acute_renal_failure acute_kidney_failure,renal failure associated with burns or other trauma or with acute infection or obstruction of the urinary tract
+19262,acute_schizophrenic_episode reactive_schizophrenia,schizophrenia of abrupt onset and relatively short duration (a few weeks or months)
+19263,acute_triangle acute-angled_triangle,a triangle whose interior angles are all acute
+19264,acuteness,a sensitivity that is keen and highly developed; "dogs have a remarkable acuteness of smell"
+19265,acuteness,the quality of having a sharp edge or point
+19266,acuteness acuity sharpness keenness,a quick and penetrating intelligence; "he argued with great acuteness"; "I admired the keenness of his mind"
+19267,acyclovir Zovirax,an oral antiviral drug (trade name Zovirax) used to treat genital herpes; does not cure the disease but relieves the symptoms
+19268,acyl acyl_group,any group or radical of the form RCO- where R is an organic group; "an example of the acyl group is the acetyl group"
+19269,acyl_anhydrides acid_anhydrides,organic compounds that react with water to form an acid
+19270,acyl_halide acid_halide,organic compounds containing the group -COX where X is a halogen atom
+19271,acylation,the process of introducing an acyl group into a compound
+19272,ad advertisement advertizement advertising advertizing advert,a public promotion of some product or service
+19273,ad-lib,remark made spontaneously without prior preparation; "his ad-libs got him in trouble with the politicians"
+19274,adactylia adactyly adactylism,congenital absence of fingers and/or toes
+19275,adagio,(music) a composition played in adagio tempo (slowly and gracefully); "they played the adagio too quickly"
+19276,adagio,a slow section of a pas de deux requiring great skill and strength by the dancers
+19277,adamance obduracy unyieldingness,resoluteness by virtue of being unyielding and inflexible
+19278,adaptability,the ability to change (or be changed) to fit changed circumstances
+19279,adaptation,(physiology) the responsive adjustment of a sense organ (as the eye) to varying conditions (as of light)
+19280,adaptation adaption adjustment,the process of adapting to something (such as environmental conditions)
+19281,adaptation version,a written work (as a novel) that has been recast in a new form; "the play is an adaptation of a short novel"
+19282,adapter adaptor,device that enables something to be used in a way different from that for which it was intended or makes different pieces of apparatus compatible
+19283,adaptive_radiation,the development of many different forms from an originally homogeneous group of organisms as they fill different ecological niches
+19284,addax Addax_nasomaculatus,large antelope with lightly spiraled horns of desert regions of northern Africa
+19285,addend,a number that is added to another number (the augend)
+19286,addendum supplement postscript,textual matter that is added onto a publication; usually at the end
+19287,adder,a person who adds numbers
+19288,adder,a machine that adds numbers
+19289,adder common_viper Vipera_berus,small terrestrial viper common in northern Eurasia
+19290,adder's_tongue adder's_tongue_fern,ferns with fertile spikes shaped like a snake's tongue
+19291,addict,someone who is physiologically dependent on a substance; abrupt deprivation of the substance produces withdrawal symptoms
+19292,addict nut freak junkie junky,someone who is so ardently devoted to something that it resembles an addiction; "a golf addict"; "a car nut"; "a bodybuilding freak"; "a news junkie"
+19293,addiction,an abnormally strong craving
+19294,addiction,(Roman law) a formal award by a magistrate of a thing or person to another person (as the award of a debtor to his creditor); a surrender to a master; "under Roman law addiction was the justification for slavery"
+19295,addiction dependence dependance dependency habituation,being abnormally tolerant to and dependent on something that is psychologically or physically habit-forming (especially alcohol or narcotic drugs)
+19296,adding_machine totalizer totaliser,a calculator that performs simple arithmetic functions
+19297,addition,a suburban area laid out in streets and lots for a future residential area
+19298,addition,the act of adding one thing to another; "the addition of flowers created a pleasing effect"; "the addition of a leap day every four years"
+19299,addition add-on improver,a component that is added to something to improve it; "the addition of a bathroom was a major improvement"; "the addition of cinnamon improved the flavor"
+19300,addition increase gain,a quantity that is added; "there was an addition to property taxes this year"; "they recorded the cattle's gain in weight over a period of weeks"
+19301,addition_reaction,a chemical reaction in which one molecule is added to another
+19302,additive,something added to enhance food or gasoline or paint or medicine
+19303,additive_inverse,(mathematics) one of a pair of numbers whose sum is zero; the additive inverse of -5 is +5
+19304,addle-head addlehead loon birdbrain,a person with confused ideas; incapable of serious thought
+19305,address,the place where a person or organization can be found or communicated with
+19306,address,the manner of speaking to another individual; "he failed in his manner of address to the captain"
+19307,address,a sign in front of a house or business carrying the conventional form by which its location is described
+19308,address,the stance assumed by a golfer in preparation for hitting a golf ball
+19309,address computer_address reference,(computer science) the code that identifies where a piece of information is stored
+19310,address destination name_and_address,written directions for finding some location; written on letters or packages that are to be delivered to that location
+19311,address speech,the act of delivering a formal spoken communication to an audience; "he listened to an address on minor Roman poets"
+19312,addressee,one to whom something is addressed
+19313,addressing_machine Addressograph,a printer that automatically prints addresses on letters for mailing
+19314,adducer,a discussant who offers an example or a reason or a proof
+19315,adducing,citing as evidence or proof
+19316,adduct,a compound formed by an addition reaction
+19317,adduction,(physiology) moving of a body part toward the central axis of the body
+19318,adductor adductor_muscle,a muscle that draws a body part toward the median line
+19319,adelgid,any of various insects that feed and form galls on conifers
+19320,adenine A,(biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA
+19321,adenitis,inflammation of a gland or lymph node
+19322,adenocarcinoma glandular_cancer glandular_carcinoma,malignant tumor originating in glandular epithelium
+19323,adenoidectomy,surgical removal of the adenoids; commonly performed along with tonsillectomy
+19324,adenoma,a benign epithelial tumor of glandular origin
+19325,adenomatous_polyp,a polyp that consists of benign neoplastic tissue derived from glandular epithelium; "adenomatous polyps are visible protrusions that can develop on the mucosal surface of the colon or rectum"
+19326,adenomegaly,gland enlargement
+19327,adenopathy,a glandular disease or enlargement of glandular tissue (especially of the lymph glands)
+19328,adenosine,(biochemistry) a nucleoside that is a structural component of nucleic acids; it is present in all living cells in a combined form as a constituent of DNA and RNA and ADP and ATP and AMP
+19329,adenosine_deaminase ADA,an enzyme found in mammals that can catalyze the deamination of adenosine into inosine and ammonia; "ADA deficiency can lead to one form of severe combined immunodeficiency disease"; "the gene encoding ADA was one of the earlier human genes to be isolated and cloned for study"
+19330,adenosine_diphosphate ADP,an ester of adenosine that is converted to ATP for energy storage
+19331,adenosine_monophosphate AMP adenylic_acid,a nucleotide found in muscle cells and important in metabolism; reversibly convertible to ADP and ATP
+19332,adenosine_triphosphate ATP,a nucleotide derived from adenosine that occurs in muscle tissue; the major source of energy for cellular reactions
+19333,adenovirus,any of a group of viruses including those that in humans cause upper respiratory infections or infectious pinkeye
+19334,adeptness adroitness deftness facility quickness,skillful performance or ability without difficulty; "his quick adeptness was a product of good design"; "he was famous for his facility as an archer"
+19335,adequacy adequateness,the quality of being able to meet a need satisfactorily: "he questioned the adequacy of the usual sentimental interpretation of the Golden Rule"
+19336,ader_wax earth_wax mineral_wax ozokerite ozocerite,a waxy mineral that is a mixture of hydrocarbons and occurs in association with petroleum; some varieties are used in making ceresin and candles
+19337,adesite,dark greyish extrusive rock
+19338,adhesion,abnormal union of bodily tissues; most common in the abdomen
+19339,adhesion,a fibrous band of scar tissue that binds together normally separate anatomical structures
+19340,adhesion_contract contract_of_adhesion,a contract that heavily restricts one party while leaving the other free (as some standard form printed contracts); implies inequality in bargaining power
+19341,adhesive_bandage,bandage consisting of a medical dressing of plain absorbent gauze held in place by a plastic or fabric tape coated with adhesive
+19342,adhesive_material adhesive_agent adhesive,a substance that unites or bonds surfaces together
+19343,adhesive_tape,tape coated with adhesive
+19344,adhesiveness adhesion adherence bond,the property of sticking together (as of glue and wood) or the joining of surfaces of different composition; "the mutual adhesiveness of cells"; "a heated hydraulic press was required for adhesion"
+19345,adhocracy,an organization with little or no structure; "the choice between bureaucracy and adhocracy represents a common dilemma"; "the need for informational flexibility can lead to adhocracy"
+19346,adiabatic_process,(thermodynamics) any process that occurs without gain or loss of heat
+19347,adience,(psychology) an urge to accept or approach a situation or an object
+19348,adieu adios arrivederci auf_wiedersehen au_revoir bye bye-bye cheerio good-by goodby good-bye goodbye good_day sayonara so_long,a farewell remark; "they said their good-byes"
+19349,adipose_tissue fat fatty_tissue,a kind of body tissue containing stored fat that serves as a source of energy; it also cushions and insulates vital organs; "fatty tissue protected them from the severe cold"
+19350,adiposity adiposeness fattiness,having the property of containing fat; "he recommended exercise to reduce my adiposity"
+19351,adit,a nearly horizontal passage from the surface into a mine
+19352,adjacency contiguity contiguousness,the attribute of being so near as to be touching
+19353,adjective,a word that expresses an attribute of something
+19354,adjective,the word class that qualifies nouns
+19355,adjoining_room,a hotel room that shares a wall with another hotel room
+19356,adjournment,the act of postponing to another time or place
+19357,adjournment dissolution,the termination of a meeting
+19358,adjudication,the final judgment in a legal proceeding; the act of pronouncing judgment based on the evidence presented
+19359,adjudicator,a person who studies and settles conflicts and disputes
+19360,adjunct,a person who is an assistant or subordinate to another
+19361,adjunct,something added to another thing but not an essential part of it
+19362,adjunct,a construction that can be used to extend the meaning of a word or phrase but is not one of the main constituents of a sentence
+19363,adjuration,a solemn and earnest appeal to someone to do something
+19364,adjustable_wrench adjustable_spanner,can be changed to different settings
+19365,adjuster adjustor claims_adjuster claims_adjustor claim_agent,one who investigates insurance claims or claims for damages and recommends an effective settlement
+19366,adjusting_entry,an accounting entry made at the end of an accounting period to allocate items between accounting periods
+19367,adjustment accommodation fitting,making or becoming suitable; adjusting to circumstances
+19368,adjustment registration readjustment,the act of adjusting something to match a standard
+19369,adjutant aide aide-de-camp,an officer who acts as military assistant to a more senior officer
+19370,adjutant_bird adjutant adjutant_stork Leptoptilus_dubius,large Indian stork with a military gait
+19371,adjutant_general,a general's adjutant; chief administrative officer
+19372,adjuvant,an additive that enhances the effectiveness of medical treatment
+19373,admass,the segment of the public that is easily influenced by mass media (chiefly British)
+19374,administration disposal,a method of tending to or managing the affairs of a some group of people (especially the group's business affairs)
+19375,administration giving_medication,the act of administering medication
+19376,administration governance governing_body establishment brass organization organisation,the persons (or committees or departments etc.) who make up a body for the purpose of administering something; "he claims that the present administration is corrupt"; "the governance of an association is responsible to its members"; "he quickly became recognized as a member of the establishment"
+19377,administration judicature,the act of meting out justice according to the law
+19378,administrative_data_processing business_data_processing,data processing in accounting or business management
+19379,administrative_district administrative_division territorial_division,a district defined for administrative purposes
+19380,administrative_hearing,a hearing that takes place outside the judicial process before hearing examiners who have been granted judicial authority specifically for the purpose of conducting such hearings
+19381,administrative_law,the body of rules and regulations and orders and decisions created by administrative agencies of government
+19382,administrative_unit administrative_body,a unit with administrative responsibilities
+19383,administrator,the party appointed by a probate court to distribute the estate of someone who dies without a will or without naming an executor
+19384,administrator decision_maker,someone who administers a business
+19385,administrator executive,someone who manages a government agency or department
+19386,administrivia,the tiresome but essential details that must be taken care of and tasks that must be performed in running an organization; "he sets policy and leaves all the administrivia to his assistant"
+19387,admirability admirableness wonderfulness,admirable excellence
+19388,admiral,any of several brightly colored butterflies
+19389,admiral full_admiral,the supreme commander of a fleet; ranks above a vice admiral and below a fleet admiral
+19390,admiralty,the department in charge of the navy (as in Great Britain)
+19391,admiralty,the office of admiral
+19392,admiration appreciation,a favorable judgment; "a small token in admiration of your works"
+19393,admiration esteem,a feeling of delighted approval and liking
+19394,admirer,a person who admires; someone who esteems or respects or approves
+19395,admirer adorer,someone who admires a young woman; "she had many admirers"
+19396,admissibility,acceptability by virtue of being admissible
+19397,admission,an acknowledgment of the truth of something
+19398,admission admittance,the act of admitting someone to enter; "the surgery was performed on his second admission to the clinic"
+19399,admixture alloy,the state of impairing the quality or reducing the value of something
+19400,admixture intermixture,an additional ingredient that is added by mixing with the base; "the growing medium should be equal parts of sand and loam with an admixture of peat moss and cow manure"; "a large intermixture of sand"
+19401,admonisher monitor reminder,someone who gives a warning so that a mistake can be avoided
+19402,admonition admonishment monition,a firm rebuke
+19403,admonition monition warning word_of_advice,cautionary advice about something imminent (especially imminent danger or other unpleasantness); "a letter of admonition about the dangers of immorality"; "the warning was to beware of surprises"; "his final word of advice was not to play with matches"
+19404,adnexa annexa,accessory or adjoining anatomical parts or appendages to an organ (especially of the embryo); "Fallopian tubes and ovaries are adnexa of the uterus"
+19405,adnoun,an adjective used as a noun; "`meek' in `blessed are the meek' is an adnoun"
+19406,adobe,the clay from which adobe bricks are made
+19407,adobe adobe_brick,sun-dried brick; used in hot dry climates
+19408,adobe_lily pink_fritillary Fritillaria_pluriflora,California herb with pinkish purple flowers
+19409,adobo,a dish of marinated vegetables and meat or fish; served with rice
+19410,adolescence,the time period between the beginning of puberty and adulthood
+19411,adolescence,in the state that someone is in between puberty and adulthood
+19412,adolescent stripling teenager teen,a juvenile between the onset of puberty and maturity
+19413,adonis,any handsome young man
+19414,adoptee,someone (such as a child) who has been adopted
+19415,adoption,a legal proceeding that creates a parent-child relation between persons not related by blood; the adopted child is entitled to all privileges belonging to a natural child of the adoptive parents (including the right to inherit)
+19416,adoption acceptance acceptation espousal,the act of accepting with approval; favorable reception; "its adoption by society"; "the proposal found wide acceptance"
+19417,adoptive_parent adopter,a person who adopts a child of other parents as his or her own child
+19418,adorability adorableness,extreme attractiveness
+19419,adoration idolization idolisation,the act of admiring strongly
+19420,adoration latria,the worship given to God alone
+19421,adornment,a decoration of color or interest that is added to relieve plainness
+19422,adornment,the action of decorating yourself with something colorful and interesting
+19423,adoxography,fine writing in praise of trivial or base subjects; "Elizabethan schoolboys were taught adoxography, the art of eruditely praising worthless things"; "adoxography is particularly useful to lawyers"
+19424,adrenal_cortex,the cortex of the adrenal gland; secretes corticosterone and sex hormones
+19425,adrenal_gland adrenal suprarenal_gland,either of a pair of complex endocrine glands situated near the kidney
+19426,adrenal_medulla,the medulla of the adrenal gland; secretes epinephrine
+19427,adrenalectomy suprarenalectomy,surgical removal of one or both adrenal glands
+19428,adrenarche,the increase in activity of the adrenal glands just before puberty
+19429,adrenergic adrenergic_drug,drug that has the effects of epinephrine
+19430,adrenergic_agonist_eyedrop,a treatment for glaucoma; the eyedrops reduce intraocular pressure by decreasing the production of aqueous humor and increasing its drainage through the uveoscleral pathway
+19431,adrenocorticotropic_hormone adrenocorticotrophic_hormone ACTH adrenocorticotropin adrenocorticotrophin corticotropin corticotrophin,a hormone produced by the anterior pituitary gland that stimulates the adrenal cortex
+19432,adrenosterone,a steroid having androgenic activity; obtained from the cortex of the adrenal gland
+19433,adsorbate,a material that has been or is capable of being adsorbed
+19434,adsorbent adsorbent_material,a material having capacity or tendency to adsorb another substance
+19435,adsorption surface_assimilation,the accumulation of molecules of a gas to form a thin film on the surface of a solid
+19436,adulation,servile flattery; exaggerated and hypocritical praise
+19437,adult,any mature animal
+19438,adult grownup,a fully developed person from maturity onward
+19439,adult_body,the body of an adult human being
+19440,adult_education,a course (via lectures or correspondence) for adults who are not otherwise engaged in formal study
+19441,adult_female_body woman's_body,the body of an adult woman
+19442,adult_intelligence,the average IQ of the adults in a given population
+19443,adult_male_body man's_body,the body of an adult man
+19444,adult_respiratory_distress_syndrome ARDS wet_lung white_lung,acute lung injury characterized by coughing and rales; inflammation of the lungs which become stiff and fibrous and cannot exchange oxygen; occurs among persons exposed to irritants such as corrosive chemical vapors or ammonia or chlorine etc.
+19445,adulterant adulterator,any substance that lessens the purity or effectiveness of a substance; "it is necessary to remove the adulterants before use"
+19446,adulteration,the act of adulterating (especially the illicit substitution of one substance for another)
+19447,adulteration debasement,being mixed with extraneous material; the product of adulterating
+19448,adulterator,a changer who lessens the purity or effectiveness of a substance
+19449,adulterer fornicator,someone who commits adultery or fornication
+19450,adulteress fornicatress hussy jade loose_woman slut strumpet trollop,a woman adulterer
+19451,adultery criminal_conversation fornication,extramarital sex that willfully and maliciously interferes with marriage relations; "adultery is often cited as grounds for divorce"
+19452,adulthood,the state (and responsibilities) of a person who has attained maturity
+19453,adulthood maturity,the period of time in your life after your physical growth has stopped and you are fully developed
+19454,adumbration,a sketchy or imperfect or faint representation
+19455,advance cash_advance,an amount paid before it is earned
+19456,advance rise,increase in price or value; "the news caused a general advance on the stock market"
+19457,advance_death_benefit,a percentage of death benefits paid directly to policy holders having a short life expectancy (usually 6 months)
+19458,advancement progress,gradual improvement or growth or development; "advancement of knowledge"; "great progress in the arts"
+19459,advancer,someone who advances
+19460,advantage,(tennis) first point scored after deuce
+19461,advantage reward,benefit resulting from some event or action; "it turned out to my advantage"; "reaping the rewards of generosity"
+19462,advantage vantage,the quality of having a superior or more favorable position; "the experience gave him the advantage over me"
+19463,advection,(meteorology) the horizontal transfer of heat or other atmospheric properties
+19464,advent coming,arrival that has been awaited (especially of something momentous); "the advent of the computer"
+19465,adventitious_root,root growing in an unusual location e.g. from a stem
+19466,adventure escapade risky_venture dangerous_undertaking,a wild and exciting undertaking (not necessarily lawful)
+19467,adventure_story heroic_tale,a story of an adventure
+19468,adventurer venturer,a person who enjoys taking risks
+19469,adventuress,a woman adventurer
+19470,adventurism,recklessness in politics or foreign affairs
+19471,adventurousness venturesomeness,the trait of being adventurous
+19472,adverb,a word that modifies something other than a noun
+19473,adverb,the word class that qualifies verbs or clauses
+19474,adverbial,a word or group of words function as an adverb
+19475,adversary antagonist opponent opposer resister,someone who offers opposition
+19476,adversative_conjunction,the conjunctive relation of units that expresses the opposition of their meanings
+19477,adverse_opinion,an opinion concerning financial statements (usually based on an audit by a CPA) that the statements as a whole do not present results fairly or are not in conformity with the generally accepted accounting practices of the United States
+19478,adverse_witness hostile_witness,a witness whose relationship to the opposing party is such that his or her testimony may be prejudiced against the opposing party; "a hostile witness can be asked leading questions and cross-examined"
+19479,adversity,a stroke of ill fortune; a calamitous event; "a period marked by adversities"
+19480,adversity hardship hard_knocks,a state of misfortune or affliction; "debt-ridden farmers struggling with adversity"; "a life of hardship"
+19481,advertence advertency,the process of being heedful
+19482,advertiser advertizer adman,someone whose business is advertising
+19483,advertising publicizing,the business of drawing public attention to goods and services
+19484,advertising_agency ad_agency,an agency that designs advertisement to call public attention to its clients
+19485,advertising_campaign ad_campaign ad_blitz,an organized program of advertisements
+19486,advertising_department advertising_division,the division of a business that is responsible for advertising
+19487,advertorial,an advertisement that is written and presented in the style of an editorial or journalistic report
+19488,advice,a proposal for an appropriate course of action
+19489,advice_and_consent,a legal expression in the United States Constitution that allows the Senate to constrain the President's powers of appointment and treaty-making
+19490,advisability,the quality of being advisable; "they questioned the advisability of our policy"
+19491,advisee,someone who receives advice
+19492,adviser advisor consultant,an expert who gives advice; "an adviser helped students select their courses"; "the United States sent military advisors to Guatemala"
+19493,advisory,an announcement that usually advises or warns the public of some threat; "a frost advisory"
+19494,advisory_board planning_board,a board appointed to advise the chief administrator
+19495,advisory_service,a consulting service in which a CPA develops findings and conclusions and recommendations that are presented to the client for consideration and decision making
+19496,advocacy protagonism,active support of an idea or cause etc.; especially the act of pleading or arguing for something
+19497,advocate advocator proponent exponent,a person who pleads for a cause or propounds an idea
+19498,advocate counsel counselor counsellor counselor-at-law pleader,a lawyer who pleads cases in court
+19499,advowson,the right in English law of presenting a nominee to a vacant ecclesiastical benefice
+19500,adynamia,lack of strength or vigor (especially from illness)
+19501,adz adze,an edge tool used to cut and shape wood
+19502,adzuki_bean adsuki_bean Vigna_angularis Phaseolus_angularis,bushy annual widely grown in China and Japan for the flour made from its seeds
+19503,aeciospore,spore of a rust fungus formed in an aecium
+19504,aecium,fruiting body of some rust fungi bearing chains of aeciospores
+19505,aeolian_harp aeolian_lyre wind_harp,a harp having strings tuned in unison; they sound when wind passes over them
+19506,aeration,the process of exposing to air (so as to purify); "the aeration of the soil"
+19507,aeration,the act of charging a liquid with a gas making it effervescent
+19508,aerator,an apparatus for exposing something to the air (as sewage)
+19509,aerial_ladder,mechanically extendible ladder; used on a fire truck
+19510,aerial_torpedo,a torpedo designed to be launched from an airplane
+19511,aerialist,an acrobat who performs in the air (as on a rope or trapeze)
+19512,aerides,any orchid of the genus Aerides
+19513,aerie aery eyrie eyry,the lofty nest of a bird of prey (such as a hawk or eagle)
+19514,aerie aery eyrie eyry,any habitation at a high altitude
+19515,aerobe,an organism (especially a bacterium) that requires air or free oxygen for life
+19516,aerobics aerobic_exercise,exercise that increases the need for oxygen
+19517,aerobiosis,life sustained in the presence of air or oxygen
+19518,aerodontalgia,pain in the teeth that results from a change in air pressure (as in flying or mountain climbing)
+19519,aerodynamic_force,forces acting on airfoils in motion relative to the air (or other gaseous fluids)
+19520,aerodynamic_lift lift,the component of the aerodynamic forces acting on an airfoil that opposes gravity
+19521,aerolite,a stony meteorite consisting of silicate minerals
+19522,aerology,meteorology of the total extent of the atmosphere; especially the upper layers
+19523,aeromechanics aerodynamics,the branch of mechanics that deals with the motion of gases (especially air) and their effects on bodies in the flow
+19524,aeromedicine aerospace_medicine aviation_medicine,the study and treatment of disorders associated with flight (especially with space flight)
+19525,aeronautical_engineer,an engineer concerned with the design and construction of aircraft
+19526,aeronautical_engineering,the branch of engineering science concerned with the design and construction of aircraft
+19527,aeronautical_engineering,the activity of designing and constructing aircraft
+19528,aeronautics astronautics,the theory and practice of navigation through air or space
+19529,aerophagia,swallowing air (usually followed by belching and discomfort and flatulence)
+19530,aerophilately,the collection and study of airmail stamps
+19531,aerophile,a lover of aviation
+19532,aerosol,a cloud of solid or liquid particles in a gas
+19533,aerosol aerosol_container aerosol_can aerosol_bomb spray_can,a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)
+19534,aerospace,the atmosphere and outer space considered as a whole
+19535,aerospace_engineer,an engineer of aircraft and space vehicles
+19536,aeschynanthus,a plant of the genus Aeschynanthus having somewhat red or orange flowers and seeds having distinctive hairs at base and apex
+19537,aesthetic esthetic,(philosophy) a philosophical theory as to what is beautiful; "he despised the esthetic of minimalism"
+19538,aesthetics esthetics,(art) the branch of philosophy dealing with beauty and taste (emphasizing the evaluative criteria that are applied to art); "traditional aesthetics assumed the existence of universal and timeless criteria of artistic value"
+19539,affability affableness amiability amiableness bonhomie geniality,a disposition to be friendly and approachable (easy to talk to)
+19540,affair affaire intimacy liaison involvement amour,a usually secretive or illicit sexual relationship
+19541,affair occasion social_occasion function social_function,a vaguely specified social event; "the party was quite an affair"; "an occasion arranged to honor the president"; "a seemingly endless round of social functions"
+19542,affairs,transactions of professional or public interest; "news of current affairs"; "great affairs of state"
+19543,affect,the conscious subjective aspect of feeling or emotion
+19544,affectation mannerism pose affectedness,a deliberate pretense or exaggerated display
+19545,affected_role patient_role patient,the semantic role of an entity that is not the agent but is directly involved in or affected by the happening denoted by the verb in the clause
+19546,affectedness,the quality of being false or artificial (as to impress others)
+19547,affection affectionateness fondness tenderness heart warmness warmheartedness philia,a positive feeling of liking; "he had trouble expressing the affection he felt"; "the child won everyone's heart"; "the warmness of his welcome made us feel right at home"
+19548,affectionateness fondness lovingness warmth,a quality proceeding from feelings of affection or love
+19549,affective_disorder major_affective_disorder emotional_disorder emotional_disturbance,any mental disorder not caused by detectable organic abnormalities of the brain and in which a major disturbance of emotions is predominant
+19550,affenpinscher monkey_pinscher monkey_dog,European breed of small dog resembling a terrier with dark wiry hair and a tufted muzzle
+19551,affiant,a person who makes an affidavit
+19552,affidavit,written declaration made under oath; a written statement sworn to be true before someone legally authorized to administer an oath
+19553,affiliate,a subordinate or subsidiary associate; a person who is affiliated with another or with an organization
+19554,affiliate,a subsidiary or subordinate organization that is affiliated with another organization; "network affiliates"
+19555,affiliation,the act of becoming formally connected or joined; "welcomed the affiliation of the research center with the university"
+19556,affiliation association tie tie-up,a social or business relationship; "a valuable financial affiliation"; "he was sorry he had to sever his ties with other members of the team"; "many close associations with England"
+19557,affine,(anthropology) kin by marriage
+19558,affine_geometry,the geometry of affine transformations
+19559,affine_transformation,(mathematics) a transformation that is a combination of single transformations such as translation or rotation or reflection on an axis
+19560,affinity,(anthropology) kinship by marriage or adoption; not a blood relationship
+19561,affinity,(immunology) the attraction between an antigen and an antibody
+19562,affinity,inherent resemblance between persons or things
+19563,affinity,a natural attraction or feeling of kinship; "an affinity for politics"; "the mysterious affinity between them"; "James's affinity with Sam"
+19564,affinity chemical_attraction,the force attracting atoms to each other and binding them together in a molecule; "basic dyes have an affinity for wool and silk"
+19565,affinity kinship,a close connection marked by community of interests or similarity in nature or character; "found a natural affinity with the immigrants"; "felt a deep kinship with the other students"; "anthropology's kinship with the humanities"
+19566,affinity phylogenetic_relation,(biology) state of relationship between organisms or groups of organisms resulting in resemblance in structure or structural parts; "in anatomical structure prehistoric man shows close affinity with modern humans"
+19567,affirmation,(religion) a solemn declaration that serves the same purpose as an oath (if an oath is objectionable to the person on religious or ethical grounds)
+19568,affirmation,a judgment by a higher court that the judgment of a lower court was correct and should stand
+19569,affirmation assertion statement,the act of affirming or asserting or stating something
+19570,affirmative,a reply of affirmation; "he answered in the affirmative"
+19571,affirmative_action,a policy designed to redress past discrimination against women and minority groups through measures to improve their economic and educational opportunities; "affirmative action has been extremely controversial and was challenged in 1978 in the Bakke decision"
+19572,affirmative_pleading,any defensive pleading that affirms facts rather than merely denying the facts alleged by the plaintiff
+19573,affirmativeness,the agreeable quality of one who assents
+19574,affix,a linguistic element added to a word to produce an inflected or derived form
+19575,affixation,the result of adding an affix to a root word
+19576,affixation,formation of a word by means of an affix
+19577,afflatus,a strong creative impulse; divine inspiration; "divine afflatus"
+19578,affliction,a state of great suffering and distress due to adversity
+19579,affliction,a condition of suffering or distress due to ill health
+19580,affliction,a cause of great suffering and distress
+19581,affluence richness,abundant wealth; "they studied forerunners of richness or poverty"; "the richness all around unsettled him for he had expected to find poverty"
+19582,affluent,an affluent person; a person who is financially well off; "the so-called emerging affluents"
+19583,afforestation,the conversion of bare or cultivated land into forest (originally for the purpose of hunting)
+19584,affray altercation fracas,noisy quarrel
+19585,affray disturbance fray ruffle,a noisy fight
+19586,affricate affricate_consonant affricative,a composite speech sound consisting of a stop and a fricative articulated at the same point (as `ch' in `chair' and `j' in `joy')
+19587,affrication,the conversion of a simple stop consonant into an affricate
+19588,affusion,the act of baptizing someone by pouring water on their head
+19589,afghan,a blanket knitted or crocheted in strips or squares; sometimes used as a shawl
+19590,afghani,the basic unit of money in Afghanistan
+19591,afibrinogenemia,the absence of fibrinogen in the plasma leading to prolonged bleeding
+19592,aficionado,a fan of bull fighting
+19593,aficionado,a serious devotee of some particular music genre or musical performer
+19594,aflatoxin,a potent carcinogen from the fungus Aspergillus; can be produced and stored for use as a bioweapon
+19595,afropavo Congo_peafowl Afropavo_congensis,both sexes are brightly colored
+19596,after-shave after-shave_lotion,a fragrant lotion for a man's face after shaving
+19597,afterbirth,the placenta and fetal membranes that are expelled from the uterus after the baby is born
+19598,afterburner,a device that injects fuel into a hot exhaust for extra thrust
+19599,aftercare,care and treatment of a convalescent patient
+19600,afterdamp,a toxic mixture of gases (including carbon dioxide and carbon monoxide and nitrogen) after an explosion of firedamp in a mine
+19601,afterdeck,a deck abaft of midships
+19602,aftereffect,a delayed effect of a drug or therapy; "the drug had unexpected aftereffects"
+19603,aftereffect,any result that follows its cause after an interval
+19604,afterglow,a glow sometimes seen in the sky after sunset
+19605,afterglow,the pleasure of remembering some pleasant event; "he basked in the afterglow of his victory"
+19606,afterimage aftersensation,an image (usually a negative image) that persists after stimulation has ceased
+19607,afterlife hereafter,life after death
+19608,aftermath wake backwash,the consequences of an event (especially a catastrophic event); "the aftermath of war"; "in the wake of the accident no one knew how many had been injured"
+19609,afternoon,the part of the day between noon and evening; "he spent a quiet afternoon in the park"
+19610,afterpains,pains felt by a woman after her baby is born; associated with contractions of the uterus
+19611,afterpiece,a brief dramatic piece (usually comic) presented after a play
+19612,aftershaft,a supplementary feather (usually small) on the underside of the base of the shaft of some feathers in some birds
+19613,aftershock,a tremor (or one of a series of tremors) occurring after the main shock of an earthquake
+19614,aftertaste,an afterimage of a taste
+19615,afterthought,an addition that was not included in the original plan; "the garage was an afterthought"
+19616,afterworld,the place where you are after you die
+19617,agal,a cord (usually of goat's hair) that Arabs (especially Bedouins) wind around their heads to hold down the kaffiyeh
+19618,agalactia agalactosis,a condition in which milk is not secreted in the mother's breasts after her child has been delivered
+19619,agama,small terrestrial lizard of warm regions of the Old World
+19620,agamete,an asexual reproductive cell
+19621,agamid agamid_lizard,a lizard of the family Agamidae
+19622,agammaglobulinemia,a rare immunological disorder characterized by the virtual absence of gamma globulin in the blood and consequent susceptibility to infection
+19623,agapanthus lily_of_the_Nile,any of various plants of the genus Agapanthus having umbels of showy blue to purple flowers
+19624,agape,(Christian theology) the love of God or Christ for mankind
+19625,agape agape_love,selfless love of one person for another without sexual implications (especially love that is spiritual in nature)
+19626,agape love_feast,a religious meal shared as a sign of love and fellowship
+19627,agar agar-agar,a colloidal extract of algae; used especially in culture media and as a gelling agent in foods
+19628,agar nutrient_agar,any culture medium that uses agar as the gelling agent
+19629,agaric,a saprophytic fungus of the order Agaricales having an umbrellalike cap with gills on the underside
+19630,agaric Fomes_igniarius,fungus used in the preparation of punk for fuses
+19631,agate,an impure form of quartz consisting of banded chalcedony; used as a gemstone and for making mortars and pestles
+19632,agate_line line,space for one line of print (one column wide and 1/14 inch deep) used to measure advertising
+19633,agateware,pottery that is veined and mottled to resemble agate
+19634,agave century_plant American_aloe,tropical American plants with basal rosettes of fibrous sword-shaped leaves and flowers in tall spikes; some cultivated for ornament or for fiber
+19635,age,how long something has existed; "it was replaced because of its age"
+19636,age eld,a time of life (usually defined in years) at which some particular qualification or power arises; "she was now of school age"; "tall for his eld"
+19637,age-related_macular_degeneration AMD,macular degeneration that is age-related
+19638,age_class,people in the same age range
+19639,age_group age_bracket cohort,a group of people having approximately the same age
+19640,age_limit,regulation establishing the maximum age for doing something or holding some position
+19641,age_norm,the average age at which particular performances are expected to appear
+19642,age_of_consent,the minimum age for marrying without parental consent or the minimum age for consensual sexual relations; intercourse at an earlier age can result in a charge of assault or statutory rape; the age differs in different states of the Union
+19643,aged elderly,people who are old collectively; "special arrangements were available for the aged"
+19644,agedness senescence,the property characteristic of old age
+19645,ageism agism,discrimination on the basis of a person's age
+19646,agelessness,the quality of being timeless and eternal
+19647,agency,the state of being in action or exerting power; "the agency of providence"; "she has free agency"
+19648,agency,a business or organization that provides a particular service, especially the mediation of transactions between two parties
+19649,agency federal_agency government_agency bureau office authority,an administrative unit of government; "the Central Intelligence Agency"; "the Census Bureau"; "Office of Management and Budget"; "Tennessee Valley Authority"
+19650,agenda agendum order_of_business,a list of matters to be taken up (as at a meeting)
+19651,agenda docket schedule,a temporally organized plan for matters to be attended to
+19652,agenda_item,one of the items to be considered
+19653,agenesis agenesia,imperfect development; nondevelopment of a part
+19654,agent,a substance that exerts some force or effect
+19655,agent,a representative who acts on behalf of other persons or organizations
+19656,agent,an active and efficient cause; capable of producing a certain effect; "their research uncovered new disease agents"
+19657,agent factor broker,a businessman who buys or sells for another in exchange for a commission
+19658,agent federal_agent,any agent or representative of a federal agency or bureau
+19659,agent-in-place,an operative serving as a penetration into an intelligence target
+19660,agent_bank,a bank that acts as an agent for a foreign bank
+19661,agent_provocateur provocateur,a secret agent who incites suspected persons to commit illegal acts
+19662,agentive_role agent,the semantic role of the animate entity that instigates or causes the happening denoted by the verb in the clause
+19663,agerasia,youthful appearance in an old person
+19664,ageratum,any plant of the genus Ageratum having opposite leaves and small heads of blue or white flowers
+19665,agglomerate,volcanic rock consisting of large fragments fused together
+19666,agglomeration,a jumbled collection or mass
+19667,agglomeration,the act of collecting in a mass; the act of agglomerating
+19668,agglomerator,a device that causes material to gather into rounded balls; "a sonic agglomerator"
+19669,agglutination,a clumping of bacteria or red cells when held together by antibodies (agglutinins)
+19670,agglutination,the building of words from component morphemes that retain their form and meaning in the process of combining
+19671,agglutination agglutinating_activity,the coalescing of small particles that are suspended in solution; these larger masses are then (usually) precipitated
+19672,agglutination_test,a blood test used to identify unknown antigens; blood with the unknown antigen is mixed with a known antibody and whether or not agglutination occurs helps to identify the antigen; used in tissue matching and blood grouping and diagnosis of infections
+19673,agglutinin,an antibody that causes agglutination of a specific antigen
+19674,agglutinogen,any substance that acts as an antigen to cause agglutinin production
+19675,aggrandizement aggrandisement elevation,the act of increasing the wealth or prestige or power or scope of something; "the aggrandizement of the king"; "his elevation to cardinal"
+19676,aggravated_assault,a reckless attack with intent to injure seriously (as with a deadly weapon)
+19677,aggravation exacerbation,action that makes a problem or a disease (or its symptoms) worse; "the aggravation of her condition resulted from lack of care"
+19678,aggravation exasperation,an exasperated feeling of annoyance
+19679,aggravation irritation provocation,unfriendly behavior that causes anger or resentment
+19680,aggravator annoyance,an unpleasant person who is annoying or exasperating
+19681,aggregate,material such as sand or gravel used with cement and water to make concrete, mortar, or plaster
+19682,aggregate congeries conglomeration,a sum total of many heterogenous things taken together
+19683,aggregate_fruit multiple_fruit syncarp,fruit consisting of many individual small fruits or drupes derived from separate ovaries within a common receptacle: e.g. blackberry; raspberry; pineapple
+19684,aggression,a disposition to behave aggressively
+19685,aggression,the act of initiating hostilities
+19686,aggression,deliberately unfriendly behavior
+19687,aggression aggressiveness,a feeling of hostility that arouses thoughts of attack
+19688,aggression hostility,violent action that is hostile and usually unprovoked
+19689,aggressiveness,the quality of being bold and enterprising
+19690,aggressiveness belligerence pugnacity,a natural disposition to be hostile
+19691,aggressor,a confident assertive person who acts as instigator
+19692,aggro,(informal British usage) aggravation or aggression; "I skipped it because it was too much aggro"
+19693,agility legerity lightness lightsomeness nimbleness,the gracefulness of a person or animal that is quick and nimble
+19694,aging ageing senescence,the organic process of growing older and showing the effects of increasing age
+19695,agio agiotage premium exchange_premium,a fee charged for exchanging currencies
+19696,agitated_depression,a state of clinical depression in which the person exhibits irritability and restlessness
+19697,agitation,a mental state of extreme emotional disturbance
+19698,agitation,the feeling of being agitated; not calm
+19699,agitation,the act of agitating something; causing it to move around (usually vigorously)
+19700,agitation excitement turmoil upheaval hullabaloo,disturbance usually in protest
+19701,agitation ferment fermentation tempestuousness unrest,a state of agitation or turbulent change or development; "the political ferment produced new leadership"; "social unrest"
+19702,agitator fomenter,one who agitates; a political troublemaker
+19703,agitprop,political propaganda (especially communist propaganda) communicated via art and literature and cinema
+19704,aglet aiglet,metal or plastic sheath over the end of a shoelace or ribbon
+19705,aglet aiglet aiguilette,ornamental tagged cord or braid on the shoulder of a uniform
+19706,agnate patrikin patrilineal_kin patrisib patrilineal_sib,one related on the father's side
+19707,agnomen,an additional name or an epithet appended to a name (as in `Ferdinand the Great')
+19708,agnosia,inability to recognize objects by use of the senses
+19709,agnostic,a person who claims that they cannot have true knowledge about the existence of God (but does not deny that God might exist)
+19710,agnostic doubter,someone who is doubtful or noncommittal about something
+19711,agnosticism,a religious orientation of doubt; a denial of ultimate knowledge of the existence of God; "agnosticism holds that you can neither prove nor disprove God's existence"
+19712,agnosticism skepticism scepticism,the disbelief in any claims of ultimate knowledge
+19713,agon,a festivity in ancient Greece at which competitors contended for prizes
+19714,agonic_line,an imaginary line connecting points on the Earth's surface where the magnetic declination is zero
+19715,agonist,someone involved in a contest or battle (as in an agon)
+19716,agonist,a muscle that contracts while another relaxes; "when bending the elbow the biceps are the agonist"
+19717,agonist,(biochemistry) a drug that can combine with a receptor on a cell to produce a physiological reaction
+19718,agony suffering excruciation,a state of acute pain
+19719,agony torment torture,intense feelings of suffering; acute mental or physical pain; "an agony of doubt"; "the torments of the damned"
+19720,agony_aunt,a newspaper columnist who answers questions and offers advice on personal problems to people who write in
+19721,agony_column,a newspaper column devoted to personal problems
+19722,agora,100 agorot equal 1 shekel in Israel
+19723,agora,the marketplace in ancient Greece
+19724,agora public_square,a place of assembly for the people in ancient Greece
+19725,agoraphobia,a morbid fear of open spaces (as fear of being caught alone in some public place)
+19726,agouti Dasyprocta_aguti,agile long-legged rabbit-sized rodent of Central America and South America and the West Indies; valued as food
+19727,agranulocytosis agranulosis granulocytopenia,an acute blood disorder (often caused by radiation or drug therapy) characterized by severe reduction in granulocytes
+19728,agrapha,sayings of Jesus not recorded in the canonical Gospels
+19729,agraphia anorthography logagraphia,a loss of the ability to write or to express thoughts in writing because of a brain lesion
+19730,agreeableness agreeability,a temperamental disposition to be agreeable
+19731,agreeableness amenity,pleasantness resulting from agreeable conditions; "a well trained staff saw to the agreeableness of our accommodations"; "he discovered the amenities of reading at an early age"
+19732,agreement,the verbal act of agreeing
+19733,agreement accord,harmony of people's opinions or actions or characters; "the two parties were in agreement"
+19734,agreement arrangement,the thing arranged or agreed to; "they made arrangements to meet in Chicago"
+19735,agreement concord,the determination of grammatical inflection on the basis of word relations
+19736,agreement correspondence,compatibility of observations; "there was no agreement between theory and measurement"; "the results of two tests were in correspondence"
+19737,agreement understanding,the statement (oral or written) of an exchange of promises; "they had an agreement that they would not interfere in each other's business"; "there was an understanding between management and the workers"
+19738,agribusiness agriculture factory_farm,a large-scale farming enterprise
+19739,agricultural_laborer agricultural_labourer,a person who tills the soil for a living
+19740,agriculture,the class of people engaged in growing food
+19741,agriculturist agriculturalist cultivator grower raiser,someone concerned with the science or art or business of cultivating the soil
+19742,agrimonia agrimony,a plant of the genus Agrimonia having spikelike clusters of small yellow flowers
+19743,agrobiology,the study of plant nutrition and growth especially as a way to increase crop yield
+19744,agrology,science of soils in relation to crops
+19745,agromania,an intense desire to be alone or out in the open
+19746,agronomist,an expert in soil management and field-crop production
+19747,agronomy scientific_agriculture,the application of soil and plant sciences to land management and crop production
+19748,agrypnia,a vigil before certain feasts (as e.g. Easter)
+19749,agua agua_toad Bufo_marinus,largest known toad species; native to Central America; valuable destroyer of insect pests
+19750,ague,a fit of shivering or shaking
+19751,ague chills_and_fever,successive stages of chills and fever that is a symptom of malaria
+19752,ague_root ague_grass Aletris_farinosa,colicroot having a scurfy or granuliferous perianth and white flowers; southeastern United States
+19753,agueweed ague_weed five-flowered_gentian stiff_gentian Gentianella_quinquefolia Gentiana_quinquefolia,gentian of eastern North America having clusters of bristly blue flowers
+19754,ahimsa,a Buddhist and Hindu and especially Jainist doctrine holding that all forms of life are sacred and urging the avoidance of violence
+19755,aid assist assistance help,the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose; "he gave me an assist with the housework"; "could not walk without assistance"; "rescue party went to their aid"; "offered his help in unloading"
+19756,aid assistance help,a person or thing that is a resource that helps make something easier or possible to do; "visual aids in teaching"; "his job was to give technical assistance over the phone"
+19757,aid economic_aid financial_aid assistance financial_assistance economic_assistance,gift of money or other material help to support a person or cause; "economic assistance to depressed areas"
+19758,aide auxiliary,someone who acts as assistant
+19759,aide-memoire position_paper,a memorandum summarizing the items of an agreement (used especially in diplomatic communications)
+19760,aigrette aigret,a long plume (especially one of egret feathers) worn on a hat or a piece of jewelry in the shape of a plume
+19761,aikido,a Japanese martial art employing principles similar to judo
+19762,ailanthus,any of several deciduous Asian trees of the genus Ailanthus
+19763,ailanthus_silkworm Samia_cynthia,large green silkworm of the cynthia moth
+19764,aileron,an airfoil that controls lateral motion
+19765,ailment complaint ill,an often persistent bodily disorder or disease; a cause for complaining
+19766,ailurophobia,a morbid fear of cats
+19767,aim,the action of directing something at an object; "he took aim and fired"
+19768,aim object objective target,the goal intended to be attained (and which is believed to be attainable); "the sole object of her trip was to see her children"
+19769,aioli aioli_sauce garlic_sauce,garlic mayonnaise
+19770,air,once thought to be one of four elements composing the universe (Empedocles)
+19771,air,a mixture of gases (especially oxygen) required for breathing; the stuff that the wind consists of; "air pollution"; "a smell of chemicals in the air"; "open a window and let in some air"; "I need some fresh air"
+19772,air,the region above the ground; "her hand stopped in mid air"; "he threw the ball into the air"
+19773,air airwave,medium for radio and television broadcasting; "the program was on the air from 9 til midnight"; "the president used the airwaves to take his message to the people"
+19774,air aura atmosphere,a distinctive but intangible quality surrounding a person or thing; "an air of mystery"; "the house had a neglected air"; "an atmosphere of defeat pervaded the candidate's headquarters"; "the place had an aura of romance"
+19775,air-intake,a duct that admits air to be mixed with fuel
+19776,air-to-air_missile,a missile designed to be launched from one airplane at another
+19777,air-to-ground_missile air-to-surface_missile,a missile designed to be launched from an airplane at a target on the ground
+19778,air_alert,the time period during which military and civilian agencies are prepared for an enemy air attack
+19779,air_alert,the condition in which combat aircraft are airborne and ready for an operation; "aircraft in the Mideast are on air alert"
+19780,air_alert,the warning signal that begins a period of preparation for an enemy air attack
+19781,air_attache,a military attache who is a commissioned or warrant officer in an air force
+19782,air_bag,a safety restraint in an automobile; the bag inflates on collision and prevents the driver or passenger from being thrown forward
+19783,air_base air_station,a base for military aircraft
+19784,air_bladder swim_bladder float,an air-filled sac near the spinal column in many fishes that helps maintain buoyancy
+19785,air_bubble,a bubble of air
+19786,air_compressor,a compressor that takes in air at atmospheric pressure and delivers it at a higher pressure
+19787,air_conditioner A/C air-conditioner,an appliance designed to extract humidity from the air and thereby cool it; "we rarely turn on the air-conditioner"
+19788,air_conditioner air_conditioning,a system that keeps air cool and dry
+19789,air_cover,the use of military aircraft to provide protection against attack by enemy aircraft during ground or naval operations
+19790,air_cushion,the trapped air that supports a hovercraft a short distance above the water or ground
+19791,air_cushion air_spring,a mechanical device using confined air to absorb the shock of motion
+19792,air_cushion inflatable_cushion,a cushion usually made of rubber or plastic that can be inflated
+19793,air_defense,defensive measures designed to destroy attacking enemy aircraft or missiles or to nullify their effectiveness
+19794,air_embolism aeroembolism gas_embolism,obstruction of the circulatory system caused by an air bubble as, e.g., accidentally during surgery or hypodermic injection or as a complication from scuba diving
+19795,air_filter air_cleaner,a filter that removes dust from the air that passes through it
+19796,air_force airforce,the airborne branch of a country's armed forces
+19797,air_force_academy,an academy for training air force officers
+19798,air_force_officer commander,an officer in the airforce
+19799,air_group,a unit of the United States Air Force larger than a squadron and smaller than a wing
+19800,air_gun airgun air_rifle,a gun that propels a projectile by compressed air
+19801,air_hammer jackhammer pneumatic_hammer,a hammer driven by compressed air
+19802,air_hole,a hole that allows the passage of air
+19803,air_horn,a pneumatic horn
+19804,air_horn,air intake of a carburetor
+19805,air_lane flight_path airway skyway,a designated route followed by airplanes in flying from one airport to another
+19806,air_mail,mail that is sent by air transport
+19807,air_marshal sky_marshal,a person trained by the government in hijacking and terrorist tactics who (for security reasons) is a passenger aboard an airline flight
+19808,air_mass,a large body of air with uniform characteristics horizontally
+19809,air_mattress,a mattress that can be stored flat and inflated for use
+19810,air_passage air_duct airway,a duct that provides ventilation (as in mines)
+19811,air_plant epiphyte aerophyte epiphytic_plant,plant that derives moisture and nutrients from the air and rain; usually grows on another plant but not parasitic on it
+19812,air_pocket pocket air_hole,a local region of low pressure or descending air that causes a plane to lose height suddenly
+19813,air_pollution,pollution of the atmosphere; "air pollution reduced the visibility"
+19814,air_potato Dioscorea_bulbifera,yam of tropical Africa and Asia cultivated for it large tubers
+19815,air_pump vacuum_pump,a pump that moves air in or out of something
+19816,air_raid air_attack,an attack by armed planes on a surface target
+19817,air_reconnaissance,reconnaissance either by visual observation from the air or through the use of airborne sensors
+19818,air_sac,any of the thin-walled extensions of the tracheae of insects
+19819,air_sac,any of the membranous air-filled extensions of the lungs of birds
+19820,air_search_radar,a shipboard radar that searches for aircraft
+19821,air_shaft air_well,a shaft for ventilation
+19822,air_terminal airport_terminal,a terminal that serves air travelers or air freight
+19823,air_traffic,traffic created by the movement of aircraft
+19824,air_transportation air_transport,transportation by air
+19825,air_transportation_system,a transportation system for moving passengers or goods by air
+19826,air_travel aviation air,travel via aircraft; "air travel involves too much waiting in airports"; "if you've time to spare go by air"
+19827,air_traveler air_traveller,someone who travels by airplane
+19828,air_unit,a military unit that is part of the airforce
+19829,air_wave,a sound wave that is transmitted via air
+19830,airborne_patrol,a patrol provided by aircraft
+19831,airborne_transmission,a transmission mechanism in the which the infectious agent is spread as an aerosol and usually enters a person through the respiratory tract
+19832,airbrake,a vehicular brake that operates by compressed air; especially for heavy vehicles
+19833,airbrake dive_brake,a small parachute or articulated flap to reduce the speed of an aircraft
+19834,airbrush,an atomizer to spray paint by means of compressed air
+19835,airburst,an explosion in the atmosphere
+19836,airbus,a subsonic jet airliner operated over short distances
+19837,aircraft,a vehicle that can fly
+19838,aircraft_carrier carrier flattop attack_aircraft_carrier,a large warship that carries planes and has a long flat deck for takeoffs and landings
+19839,aircraft_engine,the engine that powers and aircraft
+19840,aircraft_landing airplane_landing,landing an aircraft
+19841,aircraftsman aircraftman,a noncommissioned officer in the British Royal Air Force
+19842,aircrew air_crew,the crew of an aircraft
+19843,aircrewman,a member of an aircrew
+19844,airdock hangar repair_shed,a large structure at an airport where aircraft can be stored and maintained
+19845,airdrop,delivery of supplies or equipment or personnel by dropping them by parachute from an aircraft; "until then, front line troops will be supplied by airdrop"
+19846,airfare,the fare charged for traveling by airplane
+19847,airfield landing_field flying_field field,a place where planes take off and land
+19848,airflow air_flow flow_of_air,the flow of air; "she adjusted the fan so that the airflow was directed right at her"
+19849,airfoil aerofoil control_surface surface,a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight
+19850,airframe,the framework and covering of an airplane or rocket (excluding the engines)
+19851,airhead,a flighty scatterbrained simpleton; "she's a total airhead"; "every airhead on a big salary rushed out to buy one"
+19852,airhead,a bridgehead seized by airborne troops
+19853,airiness,the property of something spacious and abounding in fresh air
+19854,airiness buoyancy,the property of something weightless and insubstantial
+19855,airiness delicacy,lightness in movement or manner
+19856,airing,a short excursion (a walk or ride) in the open air; "he took the dogs for an airing"
+19857,airing_cupboard,a warm cupboard where you put newly washed clothes until they are completely dry
+19858,airlift lift,transportation of people or goods by air (especially when other means of access are unavailable)
+19859,airline air_hose,a hose that carries air under pressure
+19860,airline airline_business airway,a commercial enterprise that provides scheduled flights for passengers
+19861,airliner,a commercial airplane that carries passengers
+19862,airlock air_lock,a chamber that provides access to space where air is under pressure
+19863,airmail,letters and packages that are transported by aircraft
+19864,airmail airpost,a system of conveying mail by aircraft
+19865,airmail_letter air_letter aerogram aerogramme,a letter sent by air mail
+19866,airmailer,a mailer for airmail
+19867,airplane aeroplane plane,an aircraft that has a fixed wing and is powered by propellers or jets; "the flight was delayed due to trouble with the airplane"
+19868,airplane_mechanics,the craft of building and repairing airplanes
+19869,airplane_propeller airscrew prop,a propeller that rotates to push against air
+19870,airport airdrome aerodrome drome,an airfield equipped with control tower and hangars as well as accommodations for passengers and cargo
+19871,airs pose,affected manners intended to impress others; "don't put on airs with me"
+19872,airship dirigible,a steerable self-propelled aircraft
+19873,airsickness air_sickness,motion sickness experienced while traveling by air (especially during turbulence)
+19874,airspace,the atmosphere above a nation that is deemed to be under its jurisdiction; "the plane was refused permission to enter Chinese airspace"
+19875,airspace air_space,the space in the atmosphere immediately above the earth
+19876,airspeed,the speed of an aircraft relative to the air in which it is flying
+19877,airstream,a relatively well-defined prevailing wind
+19878,airstrip flight_strip landing_strip strip,an airfield without normal airport facilities
+19879,airworthiness,fitness to fly; "the plane received a certificate of airworthiness"
+19880,aisle,a long narrow passage (as in a cave or woods)
+19881,aisle,part of a church divided laterally from the nave proper by rows of pillars or columns
+19882,aisle gangway,passageway between seating areas as in an auditorium or passenger vehicle or between areas of shelves of goods as in stores
+19883,aitchbone,a cut of beef including the H-shaped rump bone
+19884,akaryocyte akaryote acaryote,a cell without a nucleus (as an erythrocyte)
+19885,akee akee_tree Blighia_sapida,widely cultivated in tropical and subtropical regions for its fragrant flowers and colorful fruits; introduced in Jamaica by William Bligh
+19886,akinesis akinesia,motionlessness attributable to a temporary paralysis
+19887,akinetic_epilepsy,epilepsy characterized by akinesia
+19888,al-Fatah Fatah al-Asifa,a Palestinian political and military organization founded by Yasser Arafat in 1958 to work toward the creation of a Palestinian state; during the 1960s and 1970s trained terrorist and insurgent groups; "al-Fatah carried out numerous acts of international terrorism in western Europe and the Middle East in the 1970s"
+19889,al-Gama'a_al-Islamiyya Islamic_Group,a terrorist organization of militant Islamists organized into tiny cells of extreme fundamentalists; emerged during the 1970s mainly in Egyptian jails; "al-Gama'a al-Islamiyya uses force to push Egyptian society toward Islamic rule"
+19890,al-Jihad Egyptian_Islamic_Jihad Islamic_Jihad Vanguards_of_Conquest,an Islamic extremist group active since the late 1970s; seeks to overthrow the Egyptian government and replace it with an Islamic state; works in small underground cells; "the original Jihad was responsible for the assassination of Anwar Sadat in 1981"
+19891,al-Ma'unah,a radical insurgent Islamist group consisting of disaffected middle-class professionals in Malaysia who want to overthrow the government by violent means and set up an Islamic state
+19892,al-Muhajiroun,a hard-line extremist Islamic group in Great Britain who support bin Laden and other terrorist groups
+19893,al-Qaeda Qaeda al-Qa'ida al-Qaida al_Qaeda al_Qaida Base,a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries
+19894,al-Rashid_Trust,a terrorist group organized in 1996 after the Taliban took over Afghanistan and part of Osama bin Laden's international system; provides financial support for the Taliban and al-Qaeda and Jaish-i-Mohammed and assists Muslim militants around the world; established a network of madrasas and mosques in Afghanistan
+19895,al-Tawhid Al_Tawhid Divine_Unity,an Islamic terrorist cell that originated in Jordan but operates in Germany; goal is to attack Europe and Russia with chemical weapons
+19896,al-Ummah,a terrorist group formed in India in 1992; is believed to be responsible for bombings in southern India in 1998
+19897,al_Itihaad_al_Islamiya al-Itihaad_al-Islamiya Islamic_Unity AIAI,a fundamentalist Islamic group in Somalia who initially did fundraising for al-Qaeda; responsible for ambushing United States Army Rangers and for terrorist bombings in Ethiopia; believed to have branches in several countries
+19898,al_Sunna_Wal_Jamma Followers_of_the_Prophet,a resurgent Islamic fundamentalist organization based in Nigeria that is thought to be planning terrorist attacks
+19899,ala,a flat wing-shaped process or winglike part of an organism; "the alae of the nose"; "the alae of a maple seed"; "the flat petals of a pea blossom are alae"
+19900,ala,a wing of an insect
+19901,alabaster,a compact fine-textured, usually white gypsum used for carving
+19902,alabaster,a very light white
+19903,alabaster oriental_alabaster onyx_marble Mexican_onyx,a hard compact kind of calcite
+19904,alacrity briskness smartness,liveliness and eagerness; "he accepted with alacrity"; "the smartness of the pace soon exhausted him"
+19905,alalia,paralysis of the vocal cords resulting in an inability to speak
+19906,alanine,a crystalline amino acid that occurs in many proteins
+19907,alarm alert warning_signal alarum,an automatic signal (usually a sound) warning of danger
+19908,alarm dismay consternation,fear resulting from the awareness of danger
+19909,alarm warning_device alarm_system,a device that signals the occurrence of some undesirable event
+19910,alarm_clock alarm,a clock that wakes a sleeper at some preset time
+19911,alarmism,needless warnings
+19912,alarmist,a person who alarms others needlessly
+19913,alastrim variola_minor pseudosmallpox pseudovariola milk_pox white_pox West_Indian_smallpox Cuban_itch Kaffir_pox,a mild form of smallpox caused by a less virulent form of the virus
+19914,alb,a white linen liturgical vestment with sleeves; worn by priests
+19915,albacore,relatively small tuna with choice white flesh; major source of canned tuna
+19916,albacore long-fin_tunny Thunnus_alalunga,large pelagic tuna the source of most canned tuna; reaches 93 pounds and has long pectoral fins; found worldwide in tropical and temperate waters
+19917,albatross millstone,(figurative) something that hinders or handicaps; "she was an albatross around his neck"
+19918,albatross mollymawk,large web-footed birds of the southern hemisphere having long narrow wings; noted for powerful gliding flight
+19919,albedo reflective_power,the ratio of reflected to incident light
+19920,albinism,the congenital absence of pigmentation in the eyes and skin and hair
+19921,albino,a person with congenital albinism: white hair and milky skin; eyes are usually pink
+19922,albite white_feldspar,a widely distributed feldspar that forms rocks
+19923,albizzia albizia,any of numerous trees of the genus Albizia
+19924,albuca,any of various plants of the genus Albuca having large clusters of pale yellow flowers; South Africa
+19925,albuginea,whitish tunic
+19926,album,a book of blank pages with pockets or envelopes; for organizing photographs or stamp collections etc
+19927,album record_album,one or more recordings issued together; originally released on 12-inch phonograph records (usually with attractive record covers) and later on cassette audiotape and compact disc
+19928,albumin albumen,a simple water-soluble protein found in many animal tissues and liquids
+19929,albuminuria proteinuria,the presence of excessive protein (chiefly albumin but also globulin) in the urine; usually a symptom of kidney disorder
+19930,albuterol Ventolin Proventil,a bronchodilator (trade names Ventolin or Proventil) used for asthma and emphysema and other lung conditions; available in oral or inhalant forms; side effects are tachycardia and shakiness
+19931,alcalde,a mayor or chief magistrate of a Spanish town
+19932,alcazar,any of various Spanish fortresses or palaces built by the Moors
+19933,alchemist,one who was versed in the practice of alchemy and who sought an elixir of life and a panacea and an alkahest and the philosopher's stone
+19934,alchemy,a pseudoscientific forerunner of chemistry in medieval times
+19935,alcohol,any of a series of volatile hydroxyl compounds that are made from hydrocarbons by distillation
+19936,alcohol alcoholic_drink alcoholic_beverage intoxicant inebriant,a liquor or brew containing alcohol as the active agent; "alcohol (or drink) ruined him"
+19937,alcohol_abuse alcoholic_abuse alcoholism_abuse,excessive use of alcohol and alcoholic drinks
+19938,alcohol_group alcohol_radical,the chemical group -OH
+19939,alcohol_thermometer alcohol-in-glass_thermometer,thermometer consisting of a glass capillary tube marked with degrees Celsius or Fahrenheit and containing alcohol which rises or falls as it expands or contracts with changes in temperature
+19940,alcoholic alky dipsomaniac boozer lush soaker souse,a person who drinks alcohol to excess habitually
+19941,alcoholic_dementia alcohol_amnestic_disorder Korsakoff's_psychosis Korsakoff's_syndrome Korsakov's_psychosis Korsakov's_syndrome polyneuritic_psychosis,dementia observed during the last stages of severe chronic alcoholism; involves loss of memory for recent events although long term memory is intact
+19942,alcoholism alcohol_addiction inebriation drunkenness,habitual intoxication; prolonged and excessive intake of alcoholic drinks leading to a breakdown in health and an addiction to alcohol such that abrupt deprivation leads to severe withdrawal symptoms
+19943,alcove bay,a small recess opening off a larger room
+19944,aldehyde,any of a class of highly reactive chemical compounds; used in making resins and dyes and organic acids
+19945,aldehyde_group aldehyde_radical,the chemical group -CHO
+19946,alder,wood of any of various alder trees; resistant to underwater rot; used for bridges etc
+19947,alder alder_tree,north temperate shrubs or trees having toothed leaves and conelike fruit; bark is used in tanning and dyeing and the wood is rot-resistant
+19948,alder_blight,a disease of alders caused by the woolly alder aphid (a plant louse)
+19949,alder_buckthorn alder_dogwood Rhamnus_frangula,small tree common in Europe
+19950,alderfly alder_fly Sialis_lutaria,dark-colored insect having predaceous aquatic larvae
+19951,alderleaf_Juneberry alder-leaved_serviceberry Amelanchier_alnifolia,shrub or small tree of northwestern North America having fragrant creamy white flowers and small waxy purple-red fruits
+19952,alderman,a member of a municipal legislative body (as a city council); "aldermen usually represent city wards"
+19953,aldohexose,a monosaccharide sugar having six carbon atoms and an aldehyde group
+19954,aldol aldehyde-alcohol,an oily colorless liquid obtained by the condensation of two molecules of acetaldehyde; contains an alcohol group (-OH) and an aldehyde group (-CHO)
+19955,aldol_reaction,a reaction of aldehydes resulting in an aldol
+19956,aldose,a monosaccharide sugar that contains the aldehyde group or is hemiacetal
+19957,aldosterone,a corticosteroid hormone that is secreted by the cortex of the adrenal gland; regulates salt (sodium and potassium) and water balance
+19958,aldosteronism hyperaldosteronism,a condition caused by overproduction of aldosterone
+19959,ale,a general name for beer made with a top fermenting yeast; in some of the United States an ale is (by law) a brew of more than 4% alcohol by volume
+19960,aleatory_contract,a contract whose performance by one party depends on the occurrence of an uncertain contingent event (but if it is contingent on the outcome of a wager it is not enforceable)
+19961,alehouse,a tavern where ale is sold
+19962,alembic,an obsolete kind of container used for distillation; two retorts connected by a tube
+19963,alendronate Fosamax,a tablet (trade name Fosamax) prescribed to prevent or treat osteoporosis in women after menopause
+19964,aleph,the 1st letter of the Hebrew alphabet
+19965,aleph-null aleph-nought aleph-zero,the smallest infinite integer
+19966,alert alerting,a warning serves to make you more alert to danger
+19967,alert qui_vive,condition of heightened watchfulness or preparation for action; "bombers were put on alert during the crisis"
+19968,alertness alerting,a state of readiness to respond; "alerting was indicated by the desynchronization of the EEG"
+19969,alertness sharp-sightedness on_the_qui_vive,lively attentiveness
+19970,alethic_logic,the modal logic of necessity and possibility and contingency
+19971,aleurone,granular protein in outermost layer of endosperm of many seeds or cereal grains
+19972,alewife,flesh of shad-like fish abundant along the Atlantic coast or in coastal streams
+19973,alewife Alosa_pseudoharengus Pomolobus_pseudoharengus,shad-like food fish that runs rivers to spawn; often salted or smoked; sometimes placed in genus Pomolobus
+19974,alexandrite,a green variety of chrysoberyl used as a gemstone
+19975,alexic,a person with alexia
+19976,alfalfa,leguminous plant grown for hay or forage
+19977,alfalfa lucerne Medicago_sativa,important European leguminous forage plant with trifoliate leaves and blue-violet flowers grown widely as a pasture and hay crop
+19978,alfalfa_sprout,sprouted alfalfa seeds
+19979,alga algae,primitive chlorophyll-containing mainly aquatic eukaryotic organisms lacking true stems and roots and leaves
+19980,algarroba Prosopis_juliflora Prosopis_juliiflora,mesquite of Gulf Coast and Caribbean Islands from Mexico to Venezuela
+19981,algarroba algarrobilla algarobilla,mesquite pod used in tanning and dyeing
+19982,algebra,the mathematics of generalized arithmetical operations
+19983,algebraic_language,an algorithmic language having statements that resemble algebraic expressions
+19984,algebraic_number,root of an algebraic equation with rational coefficients
+19985,algebraist,a mathematician whose specialty is algebra
+19986,algidity,prostration characterized by cold and clammy skin and low blood pressure
+19987,algin alginic_acid,a gum used especially as a thickener or emulsifier
+19988,algolagnia algophilia,sexual pleasure derived from inflicting or experiencing pain
+19989,algometer,device for measuring pain caused by pressure
+19990,algometry,measuring sensitivity to pain or pressure
+19991,algophobia,a morbid fear of pain
+19992,algorism,the Arabic (or decimal) system of numeration
+19993,algorism,computation with Arabic figures
+19994,algorithm algorithmic_rule algorithmic_program,a precise rule (or set of rules) specifying how to solve some problem
+19995,algorithm_error,error resulting from the choice of the wrong algorithm or method for achieving the intended result
+19996,algorithmic_language,an artificial language designed to express algorithms
+19997,alias assumed_name false_name,a name that has been assumed temporarily
+19998,alibi,(law) a defense by an accused person purporting to show that he or she could not have committed the crime in question
+19999,alicyclic_compound,an aliphatic compound that contains a ring of atoms
+20000,alidade alidad,surveying instrument consisting of the upper movable part of a theodolite including the telescope and its attachments
+20001,alidade alidad,surveying instrument used with a plane table for drawing lines of sight on a distant object and for measuring angles
+20002,alien_absconder,a fugitive remaining in the United States after an immigration judge has ordered them deported; "the government has categorized more than 320,000 foreigners as alien absconders"
+20003,alienage alienism,the quality of being alien
+20004,alienation,(law) the voluntary and absolute transfer of title and possession of real property from one person to another; "the power of alienation is an essential ingredient of ownership"
+20005,alienation,the action of alienating; the action of causing to become unfriendly; "his behavior alienated the other students"
+20006,alienation disaffection estrangement,the feeling of being alienated from other people
+20007,alienation estrangement,separation resulting from hostility
+20008,alienation_of_affection,a tort based on willful and malicious interference with the marriage relation by a third party without justification or excuse
+20009,alienator,an unpleasant person who causes friendly people to become indifferent or unfriendly or hostile
+20010,alienee grantee,someone to whom the title of property is transferred
+20011,alienism,an obsolete term for the study and treatment of mental illness
+20012,alienist,a psychiatrist and specialist in the legal aspects of mental illness
+20013,alienor,someone from whom the title of property is transferred
+20014,alignment,the spatial property possessed by an arrangement or position of things in a straight line or in parallel lines
+20015,alignment,the act of adjusting or aligning the parts of a device in relation to each other
+20016,alimentary_canal alimentary_tract digestive_tube digestive_tract gastrointestinal_tract GI_tract,tubular passage of mucous membrane and muscle extending about 8.3 meters from mouth to anus; functions in digestion and elimination
+20017,alimentary_tract_smear,any of several cytologic smears obtained from different parts of the alimentary tract; obtained by specialized lavage techniques and used mainly to diagnose cancer in those parts
+20018,alimony maintenance,court-ordered support paid by one spouse to another after they are separated
+20019,aliphatic_compound,organic compound that is an alkane or alkene or alkyne or their derivative
+20020,aliquant aliquant_part,an integer that is not an exact divisor of some quantity; "5 is an aliquant part of 12"
+20021,aliquot aliquot_part,an integer that is an exact divisor of some quantity; "4 is an aliquot part of 12"
+20022,aliterate aliterate_person,a person who can read but is disinclined to derive information from literary sources
+20023,aliyah,(Judaism) the honor of being called up to the reading desk in the synagogue to read from the Torah; "he was called on for an aliyah"
+20024,aliyah,(Judaism) immigration of Jews to Israel; "students making aliyah"
+20025,alizarin alizarine,an orange-red crystalline compound used in making red pigments and in dyeing
+20026,alizarin_carmine alizarin_crimson alizarin_red,any of various acid dyes; used for dyeing wool scarlet red
+20027,alizarin_yellow,any of various yellow dyes; not related chemically to alizarin but applied in the same manner
+20028,alkahest alcahest universal_solvent,hypothetical universal solvent once sought by alchemists
+20029,alkalemia,a blood disorder characterized by a lower concentration of hydrogen ions in the blood (which rises above 7.45 on the pH scale)
+20030,alkali,a mixture of soluble salts found in arid soils and some bodies of water; detrimental to agriculture
+20031,alkali_grass Zigadenus_elegans,plant of western North America having grasslike leaves and greenish-white flowers
+20032,alkali_metal alkaline_metal,any of the monovalent metals of group I of the periodic table (lithium or sodium or potassium or rubidium or cesium or francium); "the hydroxides of the alkali metals are strongly alkaline"
+20033,alkali_poisoning,poisoning resulting from the ingestion of an alkali compound (as lye or ammonia)
+20034,alkalimetry,volumetric analysis using standard solutions of alkali to measure the amount of acid present
+20035,alkaline_earth alkaline-earth_metal,any of the bivalent metals of group II of the periodic table (calcium or strontium or barium or magnesium or beryllium)
+20036,alkalinity,pH values above 7
+20037,alkalinuria alkaluria,a condition in which the urine (which is normally slightly acidic) is alkaline
+20038,alkaloid,natural bases containing nitrogen found in plants
+20039,alkalosis,abnormally high alkalinity (low hydrogen-ion concentration) of the blood and other body tissues
+20040,alkapton alcapton homogentisic_acid,an acid formed as an intermediate product of the metabolism of tyrosine and phenylalanine
+20041,alkaptonuria alcaptonuria,a rare recessive metabolic anomaly marked by ochronosis and the presence of alkapton in the urine
+20042,alkene olefine olefin,any unsaturated aliphatic hydrocarbon
+20043,alkyd alkyd_resin,a durable synthetic resin widely used in adhesives and paints
+20044,alkyl alkyl_group alkyl_radical,any of a series of univalent groups of the general formula CnH2n+1 derived from aliphatic hydrocarbons
+20045,alkyl_halide haloalkane,organic compound in which halogen atoms have been substituted for hydrogen atoms in an alkane
+20046,alkylating_agent,an antineoplastic drug used to treat some forms of cancer
+20047,alkylbenzene,organic compound that has an alkyl group bound to a benzene ring
+20048,alkylbenzenesulfonate,sulfonate of alkyl benzene
+20049,all-or-none_law,(neurophysiology) a nerve impulse resulting from a weak stimulus is just as strong as a nerve impulse resulting from a strong stimulus
+20050,all-rounder all_arounder,a versatile person who is expert at many things; "she's the best all-rounder they've seen in years"
+20051,all_clear,a signal (usually a siren) that danger is over
+20052,all_clear,permission to proceed because obstacles have been removed
+20053,all_fours high-low-jack,card games in which points are won for taking the high or low or jack or game
+20054,alla_breve,a musical time signature indicating two or four half notes to a measure
+20055,allamanda,a plant of the genus Allamanda having large showy funnel-shaped flowers in terminal cymes
+20056,allantois,the vascular fetal membrane that lies below the chorion and develops from the hindgut in many embryonic higher vertebrates (reptiles, birds and mammals)
+20057,allegation,(law) a formal accusation against somebody (often in a court of law); "an allegation of malpractice"
+20058,allegation allegement,statements affirming or denying certain matters of fact that you are prepared to prove
+20059,allegiance fealty,the loyalty that citizens owe to their country (or subjects to their sovereign)
+20060,allegorizer allegoriser,someone who communicates in allegories
+20061,allegory,an expressive style that uses fictional characters and events to describe some subject by suggestive resemblances; an extended metaphor
+20062,allegretto,a quicker tempo than andante but not as fast as allegro
+20063,allegretto,a musical composition or musical passage to be performed at a somewhat quicker tempo than andante but not as fast as allegro
+20064,allegro,a brisk and lively tempo
+20065,allegro,a musical composition or musical passage to be performed quickly in a brisk lively manner
+20066,allegro_con_spirito,lively with spirit
+20067,allele allelomorph,(genetics) either of a pair (or series) of alternative forms of a gene that can occupy the same locus on a particular chromosome and that control the same character; "some alleles are dominant over others"
+20068,allemande allemande_sauce,egg-thickened veloute
+20069,allergen,any substance that can cause an allergy
+20070,allergic_eczema,eczema caused by an allergic reaction
+20071,allergic_rhinitis,rhinitis caused by an allergic reaction
+20072,allergist,a physician skilled in the diagnosis and treatment of allergies
+20073,allergology,the branch of medical science that studies the causes and treatment of allergies
+20074,allergy allergic_reaction,hypersensitivity reaction to a particular allergen; symptoms can vary greatly in intensity
+20075,allergy_diet,a diet designed to avoid the foods that you are allergic to
+20076,alleviator,a therapist who makes suffering more endurable
+20077,alley alleyway back_street,a narrow street with walls on both sides
+20078,alley_cat,a homeless cat
+20079,alliaceous_plant,bulbous plants having a characteristic pungent onion odor
+20080,alliance,a formal agreement establishing an association or alliance between nations or other groups to achieve a particular aim
+20081,alliance bond,a connection based on kinship or marriage or common interest; "the shifting alliances within a large family"; "their friendship constitutes a powerful bond between them"
+20082,alliance coalition alignment alinement,an organization of people (or countries) involved in a pact or treaty
+20083,alliance confederation,the state of being allied or confederated
+20084,allice_shad allis_shad allice allis Alosa_alosa,European shad
+20085,allies,an alliance of nations joining together to fight a common enemy
+20086,alligator,leather made from alligator's hide
+20087,alligator gator,either of two amphibious reptiles related to crocodiles but with shorter broader snouts
+20088,alligator_lizard,slim short-limbed lizard having a distinctive fold on each side that permits expansion; of western North America
+20089,alligator_snapping_turtle alligator_snapper Macroclemys_temmincki,large species having three ridges on its back; found in southeastern United States
+20090,alligator_weed alligator_grass Alternanthera_philoxeroides,prolific South American aquatic weed having grasslike leaves and short spikes of white flowers; clogs waterways with dense floating masses
+20091,alligator_wrench,a wrench with a v-shaped jaw and serrations on one side (resembles the open jaws of an alligator)
+20092,alligatorfish Aspidophoroides_monopterygius,small very elongate sea poachers
+20093,alliteration initial_rhyme beginning_rhyme head_rhyme,use of the same consonant at the beginning of each stressed syllable in a line of verse; "around the rock the ragged rascal ran"
+20094,alliterator,a speaker or writer who makes use of alliteration
+20095,allocation storage_allocation,(computer science) the assignment of particular areas of a magnetic disk to particular data or instructions
+20096,allocation_unit,a group of sectors on a magnetic disk that can be reserved for the use of a particular file
+20097,allocator distributor,a person with authority to allot or deal out or apportion
+20098,allocution,(rhetoric) a formal or authoritative address that advises or exhorts
+20099,allogamy,cross-fertilization in plants
+20100,allograph,a variant form of a grapheme, as `m' or `M' or a handwritten version of that grapheme
+20101,allograph,a signature written by one person for another
+20102,allomerism,(chemistry) variability in chemical composition without variation in crystalline form
+20103,allometry,the study of the relative growth of a part of an organism in relation to the growth of the whole
+20104,allomorph,any of several different crystalline forms of the same chemical compound; "calcium carbonate occurs in the allomorphs calcite and aragonite"
+20105,allomorph,a variant phonological representation of a morpheme; "the final sounds of `bets' and `beds' and `horses' and `oxen' are allomorphs of the English plural morpheme"
+20106,allopathy,the usual method of treating disease with remedies that produce effects differing from those produced by the disease itself
+20107,allopatry,the occurrence of related organisms in separate geographical areas with no overlap
+20108,allophone,(linguistics) any of various acoustically different forms of the same phoneme
+20109,allopurinol Zyloprim,a drug (trade name Zyloprim) used to treat gout and other conditions in which there is an excessive buildup of uric acid
+20110,allosaur allosaurus,late Jurassic carnivorous dinosaur; similar to but somewhat smaller than tyrannosaurus
+20111,allotment allocation,a share set aside for a specific purpose
+20112,allotment apportionment apportioning allocation parceling parcelling assignation,the act of distributing by allotting or apportioning; distribution according to a plan; "the apportionment of seats in the House of Representatives is based on the relative population of each state"
+20113,allotrope,a structurally different form of an element; "graphite and diamond are allotropes of carbon"
+20114,allotropy allotropism,the phenomenon of an element existing in two or more physical forms
+20115,allowance,a sum granted as reimbursement for expenses
+20116,allowance,an amount allowed or granted (as during a given period); "travel allowance"; "my weekly allowance of two eggs"; "a child's allowance should not be too generous"
+20117,allowance,the act of allowing; "He objected to the allowance of smoking in the dining room"
+20118,allowance adjustment,an amount added or deducted on the basis of qualifying circumstances; "an allowance for profit"
+20119,allowance leeway margin tolerance,a permissible difference; allowing some freedom to move within limits
+20120,alloy metal,a mixture containing two or more metallic elements or metallic and nonmetallic elements usually fused together or dissolving into each other when molten; "brass is an alloy of zinc and copper"
+20121,alloy_iron alloy_cast_iron,cast iron containing alloying elements (usually nickel or chromium or copper or molybdenum) to increase the strength or facilitate heat treatment
+20122,alloy_steel,steel who characteristics are determined by the addition of other elements in addition to carbon
+20123,allspice,deciduous shrubs having aromatic bark; eastern China; southwestern and eastern United States
+20124,allspice,ground dried berrylike fruit of a West Indian allspice tree; suggesting combined flavors of cinnamon and nutmeg and cloves
+20125,allspice allspice_tree pimento_tree Pimenta_dioica,aromatic West Indian tree that produces allspice berries
+20126,allspice_tree Pimenta_officinalis,tropical American tree having small white flowers and aromatic berries
+20127,allure allurement temptingness,the power to entice or attract through personal charm
+20128,allurement,attractiveness; "its allurement was its remoteness"
+20129,allusion,passing reference or indirect mention
+20130,allusiveness,a quality characterized by indirect reference
+20131,alluvial_fan alluvial_cone,a fan-shaped deposit where a fast flowing stream flattens out
+20132,alluvial_flat alluvial_plain,a flat resulting from repeated deposits of alluvial material by running water
+20133,alluvial_sediment alluvial_deposit alluvium alluvion,clay or silt or gravel carried by rushing streams and deposited where the stream slows down
+20134,alluvial_soil,a fine-grained fertile soil deposited by water flowing over flood plains or in river beds
+20135,alluvion,gradual formation of new land, by recession of the sea or deposit of sediment
+20136,ally,a friendly nation
+20137,ally friend,an associate who provides cooperation or assistance; "he's a good ally in fight"
+20138,allyl allyl_group allyl_radical,the univalent unsaturated organic radical C3H5; derived from propylene
+20139,allyl_alcohol propenyl_alcohol,an unsaturated primary alcohol present in wood spirit; use to make resins and plasticizers and pharmaceuticals
+20140,allyl_resin,a resin derived from allyl alcohol that hardens when cured; used as an adhesive
+20141,alma_mater,your alma mater is a school you graduated from
+20142,almanac,an annual publication containing tabular information in a particular field or fields arranged according to the calendar of a given year
+20143,almanac farmer's_calendar,an annual publication including weather forecasts and other miscellaneous information arranged according to the calendar of a given year
+20144,almandine,a purple variety of the ruby spinel
+20145,almandite almandine,a deep red garnet consisting of iron aluminum silicate
+20146,almond,oval-shaped edible seed of the almond tree
+20147,almond sweet_almond Prunus_dulcis Prunus_amygdalus Amygdalus_communis,small bushy deciduous tree native to Asia and North Africa having pretty pink blossoms and highly prized edible nuts enclosed in a hard green hull; cultivated in southern Australia and California
+20148,almond_cookie almond_crescent,very rich cookie containing ground almonds; usually crescent-shaped
+20149,almond_extract,flavoring made from almonds macerated in alcohol
+20150,almond_moth fig_moth Cadra_cautella,a moth whose larvae feed on and mat together with webbing various stored products of vegetable origin
+20151,almond_oil expressed_almond_oil sweet_almond_oil,pale yellow fatty oil expressed from sweet or bitter almonds
+20152,almond_tree,any of several small bushy trees having pink or white blossoms and usually bearing nuts
+20153,almond_willow black_Hollander Salix_triandra Salix_amygdalina,Old World willow with light green leaves cultivated for use in basketry
+20154,almoner medical_social_worker,an official in a British hospital who looks after the social and material needs of the patients
+20155,alms,money or goods contributed to the poor
+20156,alms-giving almsgiving,making voluntary contributions to aid the poor
+20157,alms_dish alms_tray,a tray for collecting the offering from a congregation
+20158,almsgiver,a person who gives alms
+20159,alocasia elephant's_ear elephant_ear,any plant of the genus Alocasia having large showy basal leaves and boat-shaped spathe and reddish berries
+20160,aloe,succulent plants having rosettes of leaves usually with fiber like hemp and spikes of showy flowers; found chiefly in Africa
+20161,aloes bitter_aloes,a purgative made from the leaves of aloe
+20162,aloha ciao,an acknowledgment that can be used to say hello or goodbye (aloha is Hawaiian and ciao is Italian)
+20163,aloneness loneliness lonesomeness solitariness,a disposition toward being alone
+20164,aloofness remoteness standoffishness withdrawnness,a disposition to be distant and unsympathetic in manner
+20165,alopecia,loss of hair (especially on the head) or loss of wool or feathers; in humans it can result from heredity or hormonal imbalance or certain diseases or drugs and treatments (chemotherapy for cancer)
+20166,alopecia_areata,patchy baldness
+20167,alp,any high mountain
+20168,alpaca,wool of the alpaca
+20169,alpaca,a thin glossy fabric made of the wool of the Lama pacos, or made of a rayon or cotton imitation of that wool
+20170,alpaca Lama_pacos,domesticated llama with long silky fleece; believed to be a domesticated variety of the guanaco
+20171,alpenstock,a stout staff with a metal point; used by mountain climbers
+20172,alpha,the beginning of a series or sequence; "the Alpha and Omega, the first and the last, the beginning and the end"--Revelations
+20173,alpha,the 1st letter of the Greek alphabet
+20174,alpha-beta_brass Muntz_metal yellow_metal,a brass that has more zinc and is stronger than alpha brass; used in making castings and hot-worked products
+20175,alpha-interferon,a form of interferon that is produced endogenously and commercially for its pharmacological effects (including regulation of the immune system and antiviral and antineoplastic effects)
+20176,alpha-linolenic_acid,a polyunsaturated fatty acid with 18 carbon atoms; the only omega-3 fatty acid found in vegetable products; it is most abundant in canola oil; a fatty acid essential for nutrition
+20177,alpha-naphthol,an isomer of naphthol used in dyes
+20178,alpha-naphthol_test Molisch's_test Molisch_test Molisch_reaction,biochemical indicator of the presence of carbohydrates in a solution; if carbohydrates are present a violet ring is formed by reaction with alpha-naphthol in the presence of sulfuric acid
+20179,alpha-tocopheral,a potent form of vitamin E obtained from germ oils or by synthesis
+20180,alpha_and_omega,the first and last; signifies God's eternity
+20181,alpha_and_omega,the basic meaning of something; the crucial part
+20182,alpha_blocker alpha-blocker alpha-adrenergic_blocker alpha-adrenergic_blocking_agent,any of various drugs that block alpha-adrenergic receptors; used in treating benign prostatic hyperplasia; relaxes the muscles of the prostate and bladder
+20183,alpha_brass,an alloy of brass and zinc; used mainly for cold working
+20184,alpha_bronze,an alloy of copper and tin that can be worked
+20185,alpha_decay,radioactive decay of an atomic nucleus that is accompanied by the emission of an alpha particle
+20186,alpha_fetoprotein alpha_foetoprotein AFP,an abnormally large amount of this fetoprotein in the fetus can signal an abnormality of the neural tube (as spina bifida or anencephaly)
+20187,alpha_globulin,a globulin in blood plasma or serum that is alkaline and has great electrophoretic mobility
+20188,alpha_iron,a magnetic allotrope of iron; stable below 906 degrees centigrade
+20189,alpha_particle,a positively charged particle that is the nucleus of the helium atom; emitted from natural or radioactive isotopes
+20190,alpha_privative,the negative prefix a- or un-
+20191,alpha_radiation alpha_ray,the radiation of alpha particles during radioactive decay
+20192,alpha_receptor alpha-adrenergic_receptor alpha-adrenoceptor,receptors postulated to exist on nerve cell membranes of the sympathetic nervous system in order to explain the specificity of certain agents that affect only some sympathetic activities (such as vasoconstriction and relaxation of intestinal muscles and contraction of smooth muscles)
+20193,alpha_rhythm alpha_wave,the normal brainwave in the electroencephalogram of a person who is awake but relaxed; occurs with a frequency of 8-12 hertz
+20194,alpha_software,a first release of a software product that is usually tested only by the developers
+20195,alpha_test,(computer science) a first test of an experimental product (such as computer software) carried out by the developer
+20196,alphabet,a character set that includes letters and is used to write a language
+20197,alphabet_soup,a confusing assortment; "Roosevelt created an alphabet soup of federal agencies"
+20198,alphabet_soup,soup that contains small noodles in the shape of letters of the alphabet
+20199,alphabetic_writing alphabetic_script,a writing system based on alphabetic characters
+20200,alphabetization alphabetisation,the act of putting in alphabetical order
+20201,alphabetizer alphabetiser,a literate person who can arrange items in alphabetical order
+20202,alphanumerics alphanumeric_characters,a character set that includes letters and digits and punctuation
+20203,alphavirus,an arbovirus of the family Togaviridae that can cause a variety of encephalitis in horses
+20204,alpine_ash mountain_oak Eucalyptus_delegatensis,tall timber tree with hard heavy pinkish or light brown wood
+20205,alpine_azalea mountain_azalea Loiseleuria_procumbens,creeping mat-forming evergreen shrub of high mountain regions of northern hemisphere grown for its rose-pink flowers
+20206,alpine_bearberry black_bearberry Arctostaphylos_alpina,deciduous creeping shrub bright red in autumn having black or blue-black berries; alpine and circumpolar
+20207,alpine_clover Trifolium_alpinum,European mountain clover with fragrant usually pink flowers
+20208,alpine_clubmoss Lycopodium_alpinum,a variety of club moss
+20209,alpine_coltsfoot Homogyne_alpina Tussilago_alpina,rhizomatous herb with purple-red flowers suitable for groundcover; sometimes placed in genus Tussilago
+20210,alpine_gold alpine_hulsea Hulsea_algida,low tufted plant having hairy stems each topped by a flower head with short narrow yellow rays; northwestern United States
+20211,alpine_goldenrod Solidago_multiradiata,goldenrod similar to narrow goldenrod but having bristly hairs on edges of leaf stalks; mountainous regions of western America
+20212,alpine_milk_vetch Astragalus_alpinus,perennial of mountainous areas of Eurasia and North America
+20213,alpine_salamander Salamandra_atra,ovoviviparous amphibian of the Alps
+20214,alpine_totara Podocarpus_nivalis,low wide-spreading coniferous shrub of New Zealand mountains
+20215,alpinist,a mountain climber who specializes in difficult climbs
+20216,alprazolam Xanax,an antianxiety agent (trade name Xanax) of the benzodiazepine class
+20217,alstroemeria,any of various South American plants of the genus Alstroemeria valued for their handsome umbels of beautiful flowers
+20218,altar,a raised structure on which gifts or sacrifices to a god are made
+20219,altar communion_table Lord's_table,the table in Christian churches where communion is given
+20220,altar_boy,a boy serving as an acolyte
+20221,altar_wine sacramental_wine,used in a communion service
+20222,altarpiece reredos,a painted or carved screen placed above and behind an altar or communion table
+20223,altazimuth,an instrument that measures the altitude and azimuth of celestial bodies; used in navigation
+20224,alter_ego,a very close and trusted friend who seems almost a part of yourself
+20225,alterability,the quality of being alterable
+20226,alteration modification adjustment,the act of making something different (as e.g. the size of a garment)
+20227,alternating_current AC alternating_electric_current,an electric current that reverses direction sinusoidally; "In the US most household current is AC at 60 cycles per second"
+20228,alternation,successive change from one thing or state to another and back again; "a trill is a rapid alternation between the two notes"
+20229,alternation_of_generations heterogenesis xenogenesis,the alternation of two or more different forms in the life cycle of a plant or animal
+20230,alternative_birth alternative_birthing,a method of childbirth that avoids intrusive high-tech medicine in favor of more natural and homely settings
+20231,alternative_energy,energy derived from sources that do not use up natural resources or harm the environment
+20232,alternative_medicine,the practice of medicine without the use of drugs; may involve herbal medicines or self-awareness or biofeedback or acupuncture
+20233,alternative_pleading pleading_in_the_alternative,a pleading that alleges facts so separate that it is difficult to determine which facts the person intends to rely on
+20234,alternator,an old term for an electric generator that produces alternating current (especially in automobiles)
+20235,althea althaea hollyhock,any of various plants of the genus Althaea; similar to but having smaller flowers than genus Alcea
+20236,altimeter,an instrument that measures the height above ground; used in navigation
+20237,altitude,the perpendicular distance from the base of a geometric figure to the opposite vertex (or side if parallel)
+20238,altitude height,elevation especially above sea level or above the earth's surface; "the altitude gave her a headache"
+20239,altitude_sickness,effects (as nosebleed or nausea) of oxygen deficiency in the blood and tissues at high altitudes
+20240,alto,a singer whose voice lies in the alto clef
+20241,alto,(of a musical instrument) the second highest instrument in a family of musical instruments
+20242,alto,the pitch range of the lowest female voice
+20243,alto_clef viola_clef,a clef that puts middle C on the third line of a staff
+20244,alto_relievo alto_rilievo high_relief,a sculptural relief in which forms extend out from the background to at least half their depth
+20245,alto_saxophonist altoist,a musician who plays the alto saxophone
+20246,altocumulus altocumulus_cloud,a cumulus cloud at an intermediate altitude of 2 or 3 miles
+20247,altostratus altostratus_cloud,a stratus cloud at an intermediate altitude of 2 or 3 miles
+20248,altruism selflessness,the quality of unselfish concern for the welfare of others
+20249,alula calypter,scalelike structure between the base of the wing and the halter of a two-winged fly
+20250,alum,a double sulphate of aluminum and potassium that is used as an astringent (among other things)
+20251,alum ammonia_alum ammonium_alum,a white crystalline double sulfate of aluminum: the ammonium double sulfate of aluminum
+20252,alum potassium_alum potash_alum,a white crystalline double sulfate of aluminum: the potassium double sulfate of aluminum
+20253,alumina aluminum_oxide aluminium_oxide,any of various forms of aluminum oxide occurring naturally as corundum
+20254,aluminate,a compound of alumina and a metallic oxide
+20255,aluminum aluminium Al atomic_number_13,a silvery ductile metallic element found primarily in bauxite
+20256,aluminum_bronze aluminium_bronze,an alloy of copper and aluminum with high tensile strength and resistance to corrosion
+20257,aluminum_business aluminum_industry,manufacturers of aluminum considered as a group
+20258,aluminum_chloride aluminium_chloride,a chloride used as a wood preservative or catalyst
+20259,aluminum_foil aluminium_foil tin_foil,foil made of aluminum
+20260,aluminum_hydroxide aluminium_hydroxide hydrated_aluminum_oxide hydrated_aluminium_oxide,white crystalline compound that occurs naturally as the mineral gibbsite
+20261,alumnus alumna alum graduate grad,a person who has received a degree from a school (high school or college or university)
+20262,alumroot alumbloom,any of several herbs of the genus Heuchera
+20263,alundum,a substance made of fused alumina
+20264,alveolar_arch,the part of the upper or lower jawbones in which the teeth are set
+20265,alveolar_artery arteria_alveolaris,a branch of the maxillary artery that supplies the alveolar process
+20266,alveolar_bed,lung tissue densely packed with alveoli
+20267,alveolar_consonant dental_consonant alveolar dental,a consonant articulated with the tip of the tongue near the gum ridge
+20268,alveolar_ectasia,abnormal enlargement of the air sacs in the lungs
+20269,alveolar_resorption,wasting of the bony socket
+20270,alveolar_rhabdomyosarcoma alveolar_rhabdosarcoma,form of rhabdomyosarcoma occurring mainly in adolescents and young adults
+20271,alveolar_ridge gum_ridge alveolar_process,a ridge that forms the borders of the upper and lower jaws and contains the sockets of the teeth
+20272,alveolitis,inflammation of the alveoli in the lungs caused by inhaling dust; with repeated exposure the condition may become chronic
+20273,alveolitis dry_socket,inflammation in the socket of a tooth; sometimes occurs after a tooth is extracted and a blood clot fails to form
+20274,alveolus air_sac air_cell,a tiny sac for holding air in the lungs; formed by the terminal dilation of tiny air passageways
+20275,alyssum madwort,any garden plant of the genus Alyssum having clusters of small yellow or white flowers
+20276,amabilis_fir white_fir Pacific_silver_fir red_silver_fir Christmas_tree Abies_amabilis,medium to tall fir of western North America having a conic crown and branches in tiers; leaves smell of orange when crushed
+20277,amalgam,a combination or blend of diverse things; "his theory is an amalgam of earlier ideas"
+20278,amalgam dental_amalgam,an alloy of mercury with another metal (usually silver) used by dentists to fill cavities in teeth; except for iron and platinum all metals dissolve in mercury and chemists refer to the resulting mercury mixtures as amalgams
+20279,amalgamation merger uniting,the combination of two or more commercial companies
+20280,amalgamator,a businessman who arranges an amalgamation of two or more commercial companies
+20281,amaranth,seed of amaranth plants used as a native cereal in Central and South America
+20282,amaranth,any of various plants of the genus Amaranthus having dense plumes of green or red flowers; often cultivated for food
+20283,amarelle,pale red sour cherry with colorless or nearly colorless juice
+20284,amarelle Prunus_cerasus_caproniana,any of several cultivated sour cherry trees bearing pale red fruit with colorless juice
+20285,amaretto,an Italian almond liqueur
+20286,amaryllis,bulbous plant having showy white to reddish flowers
+20287,amastia,absence of the mammary glands (either through surgery or developmental defect)
+20288,amateur,an athlete who does not play for pay
+20289,amateur,someone who pursues a study or sport as a pastime
+20290,amateurishness,something that demonstrates a lack of professional competency
+20291,amateurism,the conviction that people should participate in sports as a hobby (for the fun of it) rather than for money
+20292,amaurosis,partial or total loss of sight without pathology of the eye; caused by disease of optic nerve or retina or brain
+20293,amazon,mainly green tropical American parrots
+20294,amazon virago,a large strong and aggressive woman
+20295,ambages,(archaic) roundabout or mysterious ways of action
+20296,ambassador,an informal representative; "an ambassador of good will"
+20297,ambassador embassador,a diplomat of the highest rank; accredited as representative from one country to another
+20298,ambassadorship,the post of ambassador
+20299,ambassadress,a woman ambassador
+20300,amber,a hard yellowish to brownish translucent fossil resin; used for jewelry
+20301,amber gold,a deep yellow color; "an amber light illuminated the room"; "he admired the gold of her hair"
+20302,amber_lily Anthericum_torreyi,plant having basal grasslike leaves and a narrow open cluster of starlike yellowish-orange flowers atop a leafless stalk; southwestern United States; only species of Anthericum growing in North America
+20303,ambergris,waxy substance secreted by the sperm whale and found floating at sea or washed ashore; used in perfume
+20304,amberjack amberfish,any of several amber to coppery fork-tailed warm-water carangid fishes
+20305,ambiance ambience,the atmosphere of an environment
+20306,ambidexterity ambidextrousness,the property of being equally skillful with each hand
+20307,ambiguity,an expression whose meaning cannot be determined from its context
+20308,ambiguity equivocalness,unclearness by virtue of having more than one meaning
+20309,ambition ambitiousness,a strong drive for success
+20310,ambition aspiration dream,a cherished desire; "his ambition is to own his own business"
+20311,ambivalence ambivalency,mixed feelings or emotions
+20312,ambiversion,(psychology) a balanced disposition intermediate between extroversion and introversion
+20313,amble promenade saunter stroll perambulation,a leisurely walk (usually in some public place)
+20314,amblygonite,a white or grey mineral consisting of lithium aluminum phosphate; a source of lithium
+20315,amblyopia,visual impairment without apparent organic pathology
+20316,amboina_pine amboyna_pine Agathis_dammara Agathis_alba,native to the Moluccas and Philippines; a source of dammar resin
+20317,amboyna Andaman_redwood,mottled curly-grained wood of Pterocarpus indicus
+20318,ambrosia,fruit dessert made of oranges and bananas with shredded coconut
+20319,ambrosia nectar,(classical mythology) the food and drink of the gods; mortals who ate it became immortal
+20320,ambulacrum,one of the five areas on the undersurface of an echinoderm on which the tube feet are located
+20321,ambulance,a vehicle that takes people to and from hospitals
+20322,ambulance_chaser,an unethical lawyer who incites accident victims to sue
+20323,ambulant_plague ambulatory_plague pestis_ambulans,a mild form of bubonic plague
+20324,ambulation,walking about; "the hospital encouraged early ambulation"
+20325,ambulatory,a covered walkway (as in a cloister); "it has an ambulatory and seven chapels"
+20326,ambush ambuscade lying_in_wait trap,the act of concealing yourself and lying in wait to attack by surprise
+20327,ambusher,an attacker who waits in a concealed position to launch a surprise attack
+20328,ambystomid ambystomid_salamander,small to moderate-sized terrestrial or semiaquatic New World salamander
+20329,ameba amoeba,naked freshwater or marine or parasitic protozoa that form temporary pseudopods for feeding and locomotion
+20330,amebiasis amoebiasis amebiosis amoebiosis,infection by a disease-causing ameba
+20331,amebic_dysentery amoebic_dysentery,inflammation of the intestines caused by Endamoeba histolytica; usually acquired by ingesting food or water contaminated with feces; characterized by severe diarrhea
+20332,amelia,congenital absence of an arm or leg
+20333,amelioration melioration betterment,the act of relieving ills and changing for the better
+20334,ameloblast,a cell from which tooth enamel develops
+20335,amelogenesis,the developmental process of forming tooth enamel
+20336,amen_corner,area reserved for persons leading the responsive `amens'
+20337,amenability amenableness cooperativeness,the trait of being cooperative
+20338,amended_return,a tax return that corrects the information in an earlier return
+20339,amendment,a statement that is added to or revises or improves a proposal or document (a bill or constitution etc.)
+20340,amendment,the act of amending or correcting
+20341,amenorrhea amenorrhoea amenia,absence or suppression of normal menstrual flow
+20342,americium Am atomic_number_95,a radioactive transuranic metallic element; discovered by bombarding uranium with helium atoms
+20343,amethyst,a transparent purple variety of quartz; used as a gemstone
+20344,amethystine_python,a python having the color of amethyst
+20345,ametria,congenital absence of the uterus
+20346,ametropia,(ophthalmology) faulty refraction of light rays in the eye as in astigmatism or myopia
+20347,amicability amicableness,a disinclination to quarrel
+20348,amicability amicableness,having a disposition characterized by warmth and friendliness
+20349,amicus_curiae friend_of_the_court,an adviser to the court on some matter of law who is not a party to the case; usually someone who wants to influence the outcome of a lawsuit involving matters of wide public interest
+20350,amicus_curiae_brief,a brief presented by someone interested in influencing the outcome of a lawsuit but who is not a party to it
+20351,amide,any organic compound containing the group -CONH2
+20352,amigo,a friend or comrade
+20353,amine aminoalkane,a compound derived from ammonia by replacing hydrogen atoms by univalent hydrocarbon radicals
+20354,amino amino_group,the radical -NH2
+20355,amino_acid aminoalkanoic_acid,organic compounds containing an amino group and a carboxylic acid group; "proteins are composed of various proportions of about 20 common amino acids"
+20356,amino_plastic aminoplast amino_resin,a plastic (synthetic resin) made from amino compounds; used as an adhesive and as a coating for paper and textiles
+20357,aminoaciduria,abnormal presence of amino acids in the urine; usually a symptom of metabolic defects
+20358,aminobenzoic_acid,a derivative of benzoic acid
+20359,aminomethane,a methyl with the hydrogen atom replaced by an amino radical
+20360,aminophylline,a theophylline derivative that is used as a bronchodilator in the treatment of bronchial asthma, emphysema, and bronchitis
+20361,aminopyrine amidopyrine,a white crystalline substance used as an analgesic and antipyretic
+20362,amiodarone Cordarone,an antiarrhythmic drug (trade name Cordarone) that has potentially fatal side effects and is used to control serious heart rhythm problems only when safer agents have been ineffective
+20363,amitosis,the direct method of cell division characterized by simple division of the nucleus without formation of chromosomes
+20364,amitriptyline amitriptyline_hydrochloride Elavil,a tricyclic antidepressant drug (trade name Elavil) with serious side effects; interacts with many other medications
+20365,amity,a state of friendship and cordiality
+20366,amity cordiality,a cordial disposition
+20367,amlodipine_besylate Norvasc,a vasodilator (trade name Norvasc) taken in tablet form; prescribed for hypertension and angina pectoris
+20368,ammeter,a meter that measures the flow of electrical current in amperes
+20369,ammine,a complex inorganic compound that contains ammonia molecules
+20370,ammobium,any plant of the genus Ammobium having yellow flowers and silvery foliage
+20371,ammonia,a pungent gas compounded of nitrogen and hydrogen (NH3)
+20372,ammonia_clock,an atomic clock based on vibrational frequency of the nitrogen atom in the ammonia molecule
+20373,ammonia_water ammonia ammonium_hydroxide,a water solution of ammonia
+20374,ammoniac gum_ammoniac,the aromatic gum of the ammoniac plant
+20375,ammonification,impregnation with ammonia or a compound of ammonia
+20376,ammonite ammonoid,one of the coiled chambered fossil shells of extinct mollusks
+20377,ammonium ammonium_ion,the ion NH4 derived from ammonia; behaves in many respects like an alkali metal ion
+20378,ammonium_carbamate,a salt of carbamic acid that is used as a nitrogen fertilizer
+20379,ammonium_carbonate,a carbonate of ammonium; used in the manufacture of smelling salts and baking powder and ammonium compounds
+20380,ammonium_chloride sal_ammoniac,a white salt used in dry cells
+20381,ammonium_nitrate,used as an explosive and fertilizer and rocket propellant
+20382,ammoniuria,excessive ammonia in the urine
+20383,ammunition,any nuclear or chemical or biological material that can be used as a weapon of mass destruction
+20384,ammunition,information that can be used to attack or defend a claim or argument or viewpoint; "his admission provided ammunition for his critics"
+20385,ammunition ammo,projectiles to be fired from a gun
+20386,amnesia memory_loss blackout,partial or total loss of memory; "he has a total blackout for events of the evening"
+20387,amnesic amnesiac,a person suffering from amnesia
+20388,amnesty,a period during which offenders are exempt from punishment
+20389,amnesty pardon free_pardon,the formal act of liberating someone
+20390,amniocentesis amnio,(pregnancy) extraction by centesis of amniotic fluid from a pregnant woman (after the 15th week of pregnancy) to aid in the diagnosis of fetal abnormalities
+20391,amnion amniotic_sac amnios,thin innermost membranous sac enclosing the developing embryo of higher vertebrates (reptiles, birds and mammals)
+20392,amniote,any member of the Amniota
+20393,amniotic_cavity,the fluid-filled cavity that surrounds the developing embryo
+20394,amniotic_fluid amnionic_fluid waters,the serous fluid in which the embryo is suspended inside the amnion; "before a woman gives birth her waters break"
+20395,amobarbital,a barbiturate with sedative and hypnotic effects; used to relieve insomnia and as an anticonvulsant
+20396,amobarbital_sodium blue blue_angel blue_devil Amytal,the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic
+20397,amora,one of a group of rabbis (active AD 250-500) who discussed the Mishnaic law in the law schools of Palestine and Mesopotamia where they explained and applied earlier teachings and whose discussions are recorded in the Talmud; they emphasized the study of Torah and the importance of personal action and the fulfillment of the commandments
+20398,amoralism,the doctrine that moral distinctions are invalid
+20399,amoralist,someone who adheres to the doctrine that ordinary moral distinctions are invalid
+20400,amorality,the quality of being amoral
+20401,amorist,one dedicated to love and lovemaking especially one who writes about love
+20402,amorousness enamoredness,a feeling of love or fondness
+20403,amorousness eroticism erotism sexiness amativeness,the arousal of feelings of sexual desire
+20404,amorpha,any plant of the genus Amorpha having odd-pinnate leaves and purplish spicate flowers
+20405,amorphophallus,any plant of the genus Amorphophallus
+20406,amorphous_shape,an ill-defined or arbitrary shape
+20407,amortization amortisation,the reduction of the value of an asset by prorating its cost over a period of years
+20408,amortization amortisation,payment of an obligation in a series of installments or transfers
+20409,amount,the relative magnitude of something with reference to a criterion; "an adequate amount of food for four people"
+20410,amour_propre conceit self-love vanity,feelings of excessive pride
+20411,amoxicillin Amoxil Larotid Polymox Trimox Augmentin,an antibiotic; a semisynthetic oral penicillin (trade names Amoxil and Larotid and Polymox and Trimox and Augmentin) used to treat bacterial infections
+20412,amperage,the strength of an electrical current measured in amperes
+20413,ampere amp A,the basic unit of electric current adopted under the Systeme International d'Unites; "a typical household circuit carries 15 to 50 amps"
+20414,ampere international_ampere,a former unit of electric current (slightly smaller than the SI ampere)
+20415,ampere-hour,a unit of charge equal to 3600 coulombs
+20416,ampere-minute,a unit of charge equal to 60 coulombs
+20417,ampere-turn,a unit of magnetomotive force equal to the magnetomotive force produced by the passage of 1 ampere through 1 complete turn of a coil; equal to 1.257 gilberts
+20418,ampersand,a punctuation mark (&) used to represent conjunction (and)
+20419,amphetamine pep_pill upper speed,a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression
+20420,amphetamine_sulfate amphetamine_sulphate,a sulfate derivative of amphetamine that is used as a stimulant for the central nervous system
+20421,amphibia class_Amphibia,the class of vertebrates that live on land but breed in water; frogs; toads; newts; salamanders; caecilians
+20422,amphibian,cold-blooded vertebrate typically living on land but breeding in water; aquatic larvae undergo metamorphosis into adult form
+20423,amphibian amphibious_aircraft,an airplane designed to take off and land on water
+20424,amphibian amphibious_vehicle,a flat-bottomed motor vehicle that can travel on land or water
+20425,amphibian_family,any family of amphibians
+20426,amphibian_genus,any genus of amphibians
+20427,amphibious_assault,an amphibious operation attacking a land base that is carried out by troops that are landed by naval ships
+20428,amphibious_demonstration,an amphibious operation conducted for the purpose of deceiving the enemy and leading him into a course of action unfavorable to him
+20429,amphibious_landing,a military action of coordinated land, sea, and air forces organized for an invasion; "MacArthur staged a massive amphibious landing behind enemy lines"
+20430,amphibious_operation,a military operation by both land and sea forces
+20431,amphibole,a mineral or mineral variety belonging to the amphibole group
+20432,amphibole_group,a group of minerals with similar crystal structures containing a silicate chain and combinations of chiefly sodium and calcium and magnesium and iron and aluminum
+20433,amphibolite,a metamorphic rock composed chiefly of amphibole and plagioclase
+20434,amphibology amphiboly,an ambiguous grammatical construction; e.g., `they are flying planes' can mean either that someone is flying planes or that something is flying planes
+20435,amphibrach,a metrical unit with unstressed-stressed-unstressed syllables (e.g., `remember')
+20436,amphictyony,an association of neighboring states or tribes in ancient Greece; established originally to defend a common religious center
+20437,amphidiploid,(genetics) an organism or cell having a diploid set of chromosomes from each parent
+20438,amphidiploidy,the condition of being amphidiploid
+20439,amphigory nonsense_verse,nonsensical writing (usually verse)
+20440,amphimixis,union of sperm and egg in sexual reproduction
+20441,amphipod,a kind of malacostracan crustacean
+20442,amphisbaena,(classical mythology) a serpent with a head at each end of its body
+20443,amphitheater amphitheatre,a sloping gallery with seats for spectators (as in an operating room or theater)
+20444,amphitheater amphitheatre coliseum,an oval large stadium with tiers of seats; an arena in which contests and spectacles are held
+20445,amphitropous_ovule,a partly inverted ovule turned back 90 degrees on its stalk
+20446,amphiuma congo_snake congo_eel blind_eel,aquatic eel-shaped salamander having two pairs of very small feet; of still muddy waters in the southern United States
+20447,amphora,an ancient jar with two handles and a narrow neck; used to hold oil or wine
+20448,amphotericin,an antibiotic and antifungal agent
+20449,ampicillin Principen Polycillin SK-Ampicillin,semisynthetic penicillin (trade names Principen and Polycillin and SK-Ampicillin)
+20450,ampleness,the property of being more than sufficient; comfortable sufficiency; "the ampleness of her servings more than satisfied his hunger"
+20451,ampleness,the property of impressive largeness in size; "he admired the ampleness of its proportions"
+20452,amplexicaul_leaf,a leaf with its base clasping the stem
+20453,amplification,(electronics) the act of increasing voltage or power or current
+20454,amplification elaboration,addition of extra material or illustration or clarifying detail; "a few remarks added in amplification and defense"; "an elaboration of the sketch followed"
+20455,amplification gain,the amount of increase in signal power or voltage or current expressed as the ratio of output to input
+20456,amplifier,electronic equipment that increases strength of signals passing through it
+20457,amplitude,(physics) the maximum displacement of a periodic wave
+20458,amplitude,greatness of magnitude
+20459,amplitude bountifulness bounty,the property of copious abundance
+20460,amplitude_level,the level on a scale of amplitude
+20461,amplitude_modulation AM,modulation of the amplitude of the (radio) carrier wave
+20462,ampulla,the dilated portion of a canal or duct especially of the semicircular canals of the ear
+20463,ampulla,a flask that has two handles; used by Romans for wines or oils
+20464,amputation,a condition of disability resulting from the loss of one or more limbs
+20465,amputation,a surgical removal of all or part of a limb
+20466,amputator,a surgeon who removes part or all of a limb
+20467,amputee,someone who has had a limb removed by amputation
+20468,amrinone Inocor,a drug (trade name Inocor) used intravenously in heart failure; increases strength of contraction of myocardium
+20469,amulet talisman,a trinket or piece of jewelry usually hung about the neck and thought to be a magical protection against evil or disease
+20470,amusement,a feeling of delight at being entertained
+20471,amusement_arcade,an arcade featuring coin-operated game machines
+20472,amusement_park funfair pleasure_ground,a commercially operated park with stalls and shows for amusement
+20473,amygdala amygdaloid_nucleus corpus_amygdaloideum,an almond-shaped neural structure in the anterior part of the temporal lobe of the cerebrum; intimately connected with the hypothalamus and the hippocampus and the cingulate gyrus; as part of the limbic system it plays an important role in motivation and emotional behavior
+20474,amygdalin,a bitter cyanogenic glucoside extracted from the seeds of apricots and plums and bitter almonds
+20475,amygdaloid,volcanic rock in which rounded cavities formed by expanding gas have subsequently become filled with mineral deposits
+20476,amygdalotomy,psychosurgery in which amygdaloid fibers that mediate limbic system activity are severed (in cases of extreme uncontrollable violence)
+20477,amyl,a hydrocarbon radical that occurs in many organic compounds
+20478,amyl_alcohol,a mixture of 2 or more isomeric alcohols; used as a solvent and in organic synthesis
+20479,amyl_nitrate,a vasodilator that is sometimes used to treat angina pectoris
+20480,amylase,any of a group of proteins found in saliva and pancreatic juice and parts of plants; help convert starch to sugar
+20481,amyloid,a non-nitrogenous food substance consisting chiefly of starch; any substance resembling starch
+20482,amyloid,(pathology) a waxy translucent complex protein resembling starch that results from degeneration of tissue
+20483,amyloid_plaque amyloid_protein_plaque,a plaque consisting of tangles of amyloid protein in nervous tissue (a pathological mark of Alzheimer's disease)
+20484,amyloidosis,a disorder characterized by deposit of amyloid in organs or tissues; often secondary to chronic rheumatoid arthritis or tuberculosis or multiple myeloma
+20485,amylolysis,conversion of starch to sugar
+20486,amyotrophia amyotrophy,progressive wasting of muscle tissues
+20487,amyotrophic_lateral_sclerosis ALS Lou_Gehrig's_disease,thickening of tissue in the motor tracts of the lateral columns and anterior horns of the spinal cord; results in progressive muscle atrophy that starts in the limbs
+20488,amyxia,a condition in which no mucus in produced
+20489,ana,a collection of anecdotes about a person or place
+20490,anabiosis,suspended animation in organisms during periods of extreme drought from which they revive when moisture returns
+20491,anabolic_steroid,any of a group of synthetic steroid hormones used to stimulate muscle and bone growth; more than 100 have been developed and each requires a prescription to be used legally in the United States; sometimes used illicitly by athletes to increase their strength
+20492,anabolism constructive_metabolism,the synthesis in living organisms of more complex substances (e.g., living tissue) from simpler ones together with the storage of energy
+20493,anachronism,a person who seems to be displaced in time; who belongs to another age
+20494,anachronism,an artifact that belongs to another time
+20495,anachronism mistiming misdating,something located at a time when it could not have existed or occurred
+20496,anaclisis,(psychoanalysis) relationship marked by strong dependence on others; especially a libidinal attachment to e.g. a parental figure
+20497,anaclitic_depression,severe and progressive depression in infants who lose their mother and do not get a suitable substitute
+20498,anacoluthia anacoluthon,an abrupt change within a sentence from one syntactic structure to another
+20499,anaconda Eunectes_murinus,large arboreal boa of tropical South America
+20500,anadama_bread,a yeast-raised bread made of white flour and cornmeal and molasses
+20501,anadiplosis reduplication,repetition of the final words of a sentence or line at the beginning of the next
+20502,anaerobe,an organism (especially a bacterium) that does not require air or free oxygen to live
+20503,anaglyph,moving or still pictures in contrasting colors that appear three-dimensional when superimposed
+20504,anaglyph,anything carved in low relief
+20505,anaglyphy,the process of producing pictures in contrasting colors that appear three-dimensional when superimposed and viewed through spectacles with one red and one green lens
+20506,anagnost,a cleric in the minor orders of the Eastern Orthodox Church who reads the lessons aloud in the liturgy (analogous to the lector in the Roman Catholic Church)
+20507,anagoge,a mystical or allegorical interpretation (especially of Scripture)
+20508,anagram,a word or phrase spelled by rearranging the letters of another word or phrase
+20509,anagrams,a game whose object is to form words from a group of randomly chosen letters
+20510,anal_personality anal_retentive_personality,(psychoanalysis) a personality characterized by meticulous neatness and suspicion and reserve; said to be formed in early childhood by fixation during the anal stage of development (usually as a consequence of toilet training)
+20511,anal_sphincter sphincter_ani musculus_sphincter_ani,the sphincter muscle of the anus
+20512,anal_stage anal_phase,(psychoanalysis) the second sexual and social stage of a child's development during which bowel control is learned
+20513,analbuminemia,an abnormally low level of albumin in the blood serum
+20514,analects analecta,a collection of excerpts from a literary work
+20515,analeptic,a medication used as a stimulant to the central nervous system
+20516,analgesia,absence of the sense of pain without loss of consciousness
+20517,analgesic anodyne painkiller pain_pill,a medicine used to relieve pain
+20518,analog_clock,a clock that displays the time of day by the position of hands on a dial
+20519,analog_computer analogue_computer,a computer that represents information by variable quantities (e.g., positions or voltages)
+20520,analog_watch,a watch that represents time by the position of hands on a dial
+20521,analogist,someone who looks for analogies or who reasons by analogy
+20522,analogue analog parallel,something having the property of being analogous to something else
+20523,analogy,an inference that if things agree in some respects they probably agree in others
+20524,analogy,drawing a comparison in order to show a similarity in some respect; "the operation of a computer presents and interesting analogy to the working of the brain"; "the models show by analogy how matter is built up"
+20525,analphabet analphabetic,an illiterate person who does not know the alphabet
+20526,analysand,a person undergoing psychoanalysis
+20527,analysis,the use of closed-class words instead of inflections: e.g., `the father of the bride' instead of `the bride's father'
+20528,analysis,a form of literary criticism in which the structure of a piece of writing is analyzed
+20529,analysis,a branch of mathematics involving calculus and the theory of limits; sequences and series and integration and differentiation
+20530,analysis,an investigation of the component parts of a whole and their relations in making up the whole
+20531,analysis analytic_thinking,the abstract separation of a whole into its constituent parts in order to study the parts and their relations
+20532,analysis_of_variance ANOVA,a statistical method for making simultaneous comparisons between two or more means; a statistical method that yields values that can be tested to determine whether a significant relation exists between variables
+20533,analyst,an expert who studies financial data (on credit or securities or sales or financial patterns etc.) and recommends appropriate business actions
+20534,analyst,someone who is skilled at analyzing data
+20535,analyst psychoanalyst,a licensed practitioner of psychoanalysis
+20536,analytic_geometry analytical_geometry coordinate_geometry,the use of algebra to study geometric properties; operates on symbols defined in a coordinate system
+20537,analytical_balance chemical_balance,a beam balance of great precision used in quantitative chemical analysis
+20538,analytical_cubism,the early phase of cubism
+20539,analytical_review,an auditing procedure based on ratios among accounts and tries to identify significant changes
+20540,analyticity,the property of being analytic
+20541,analyzer analyser,an instrument that performs analyses
+20542,anamnestic_response anamnestic_reaction,renewed rapid production of an antibody on the second (or subsequent) encounter with the same antigen
+20543,anamorphism,metamorphism that occurs deep under the earth's surface; changes simple minerals into complex minerals
+20544,anamorphosis anamorphism,the evolution of one type of organism from another by a long series of gradual changes
+20545,anamorphosis anamorphism,a distorted projection or perspective; especially an image distorted in such a way that it becomes visible only when viewed in a special manner
+20546,anapest anapaest,a metrical unit with unstressed-unstressed-stressed syllables
+20547,anaphase,the stage of meiosis or mitosis when chromosomes move toward opposite ends of the nuclear spindle
+20548,anaphor,a word (such as a pronoun) used to avoid repetition; the referent of an anaphor is determined by its antecedent
+20549,anaphora,using a pronoun or similar word instead of repeating a word used earlier
+20550,anaphoric_pronoun,a pronoun that refers to an antecedent
+20551,anaphoric_relation,the relation between an anaphor and its antecedent
+20552,anaphrodisia,decline or absence of sexual desire
+20553,anaphylactic_shock,a severe and rapid and sometimes fatal hypersensitivity reaction to a substance (especially a vaccine or penicillin or shellfish or insect venom) to which the organism has become sensitized by previous exposure
+20554,anaphylaxis,hypersensitivity reaction to the ingestion or injection of a substance (a protein or drug) resulting from prior contact with a substance
+20555,anaplasia,loss of structural differentiation within a cell or group of cells often with increased capacity for multiplication, as in a malignant tumor
+20556,anaplasmosis,a disease of cattle that is transmitted by cattle ticks; similar to Texas fever
+20557,anapsid anapsid_reptile,primitive reptile having no opening in the temporal region of the skull; all extinct except turtles
+20558,anarchism,a political theory favoring the abolition of governments
+20559,anarchist nihilist syndicalist,an advocate of anarchism
+20560,anarchy lawlessness,a state of lawlessness and disorder (usually resulting from a failure of government)
+20561,anarthria,partial or total loss of articulate speech resulting from lesions of the central nervous system
+20562,anasarca,generalized edema with accumulation of serum in subcutaneous connective tissue
+20563,anaspid,extinct small freshwater jawless fish usually having a heterocercal tail and an armored head; of the Silurian and Devonian
+20564,anastalsis,muscular action of the alimentary tract in a direction opposite to peristalsis
+20565,anastigmat,compound lens or lens system designed to be free of astigmatism and able to form approximately point images
+20566,anastigmatic_lens,a lens designed to correct astigmatism
+20567,anastomosis inosculation,a natural or surgical joining of parts or branches of tubular structures so as to make or become continuous
+20568,anastomotic_vein vena_anastomotica,either of two communicating veins serving the brain
+20569,anastrophe inversion,the reversal of the normal order of words
+20570,anastylosis,the archeological reassembly of ruined monuments from fallen or decayed fragments (incorporating new materials when necessary)
+20571,anathema,a formal ecclesiastical curse accompanied by excommunication
+20572,anathema bete_noire,a detested person; "he is an anathema to me"
+20573,anathematization anathematisation,the formal act of pronouncing (someone or something) accursed
+20574,anatomical_reference anatomical,an expression that relates to anatomy
+20575,anatomist,an expert in anatomy
+20576,anatomy,a detailed analysis; "he studied the anatomy of crimes"
+20577,anatomy general_anatomy,the branch of morphology that deals with the structure of animals
+20578,anatotitan,one of the largest and most famous duck-billed dinosaurs
+20579,anatoxin toxoid,a bacterial toxin that has been weakened until it is no longer toxic but is strong enough to induce the formation of antibodies and immunity to the specific disease caused by the toxin; "diphtheria toxoid"
+20580,anatropous_ovule,a completely inverted ovule turned back 180 degrees on its stalk
+20581,ancestor ascendant ascendent antecedent root,someone from whom you are descended (but usually more remote than a grandparent)
+20582,ancestor_worship,worship of ancestors
+20583,ancestress,a woman ancestor
+20584,ancestry lineage derivation filiation,inherited properties shared with others of your bloodline
+20585,anchor anchorman anchorperson,a television reporter who coordinates a broadcast to which several correspondents contribute
+20586,anchor ground_tackle,a mechanical device that prevents a vessel from moving
+20587,anchor mainstay keystone backbone linchpin lynchpin,a central cohesive source of support and stability; "faith is his anchor"; "the keystone of campaign reform was the ban on soft money"; "he is the linchpin of this firm"
+20588,anchor_chain anchor_rope,the chain or rope that attaches an anchor to a vessel
+20589,anchor_light riding_light riding_lamp,a light in the rigging of a ship that is riding at anchor
+20590,anchorage,the condition of being secured to a base; "the plant needs a firm anchorage"; "the mother provides emotional anchorage for the entire family"
+20591,anchorage,a fee for anchoring
+20592,anchorage,the act of anchoring
+20593,anchorage anchorage_ground,place for vessels to anchor
+20594,anchorite hermit,one retired from society for religious reasons
+20595,anchovy,tiny fishes usually canned or salted; used for hors d'oeuvres or as seasoning in sauces
+20596,anchovy,small herring-like plankton-eating fishes often canned whole or as paste; abundant in tropical waters worldwide
+20597,anchovy_butter,butter blended with mashed anchovies
+20598,anchovy_dressing,vinaigrette and mashed anchovies
+20599,anchovy_paste,paste made primarily of anchovies; used in sauces and spreads
+20600,anchovy_pear anchovy_pear_tree Grias_cauliflora,West Indian tree bearing edible fruit resembling mango
+20601,anchovy_pear river_pear,West Indian fruit resembling the mango; often pickled
+20602,anchovy_pizza,tomato and cheese pizza with anchovies
+20603,anchovy_sauce,made of white sauce and mashed anchovies
+20604,anchusa,any of various Old World herbs of the genus Anchusa having one-sided clusters of trumpet-shaped flowers
+20605,ancien_regime,a political and social system that no longer governs (especially the system that existed in France before the French Revolution)
+20606,ancient,a person who lived in ancient times
+20607,ancient antediluvian,a very old person
+20608,ancient_history,a history of the ancient world
+20609,ancient_history,knowledge of some recent fact or event that has become so commonly known that it has lost its original pertinence
+20610,ancient_pine Pinus_longaeva,small slow-growing pine of western United States similar to the bristlecone pine; chocolate brown bark in plates and short needles in bunches of 5; crown conic but becoming rough and twisted; oldest plant in the world growing to 5000 years in cold semidesert mountain tops
+20611,ancientness antiquity,extreme oldness
+20612,ancients,people who lived in times long past (especially during the historical period before the fall of the Roman Empire in western Europe)
+20613,anconeous_muscle musculus_anconeus,the muscle that extends the forearm and abducts the ulna in pronation of the wrist
+20614,andante,a moderately slow tempo (a walking pace)
+20615,andante,a musical composition or musical passage to be performed moderately slow
+20616,andesite,a dark grey volcanic rock
+20617,andiron firedog dog dog-iron,metal supports for logs in a fireplace; "the andirons were too hot to touch"
+20618,andradite,a garnet consisting of calcium iron silicate and having any color ranging from yellow and green to brown and black; used as gemstone
+20619,andrena andrenid mining_bee,a bee that is a member of the genus Andrena
+20620,androecium,a male gametoecium
+20621,androgen androgenic_hormone,male sex hormone that is produced in the testes and responsible for typical male sexual characteristics
+20622,androgenesis androgeny,male parthenogenesis in which the embryo contains only paternal chromosomes due to the failure of the egg nucleus to participate in fertilization
+20623,androglossia,a woman's voice with male qualities
+20624,androgyny hermaphroditism bisexuality,showing characteristics of both sexes
+20625,android humanoid mechanical_man,an automaton that resembles a human being
+20626,andromeda,any of several shrubs of the genus Andromeda having leathery leaves and clusters of small flowers
+20627,andromeda Japanese_andromeda lily-of-the-valley_tree Pieris_japonica,broad-leaved evergreen Asiatic shrub with glossy leaves and drooping clusters of white flowers
+20628,androphobia,a morbid fear of men
+20629,androsterone,an androgenic hormone that is less active than testosterone
+20630,andryala,any plant of the genus Andryala having milky sap and heads of bright yellow flowers
+20631,anecdote,short account of an incident (especially a biographical one)
+20632,anecdotist raconteur,a person skilled in telling anecdotes
+20633,anechoic_chamber,a chamber having very little reverberation
+20634,anemia anaemia,a lack of vitality
+20635,anemia anaemia,a deficiency of red blood cells
+20636,anemic_anoxia,anoxia resulting from a decreased concentration of hemoglobin
+20637,anemic_hypoxia,hypoxia resulting from a decreased concentration of hemoglobin
+20638,anemography,recording anemometrical measurements
+20639,anemometer wind_gauge wind_gage,a gauge for recording the speed and direction of wind
+20640,anemometry,measuring wind speed and direction
+20641,anemone windflower,any woodland plant of the genus Anemone grown for its beautiful flowers and whorls of dissected leaves
+20642,anemone_fish,live associated with sea anemones
+20643,anencephaly anencephalia,a defect in brain development resulting in small or missing brain hemispheres
+20644,anergy,reduction or lack of an immune response to a specific antigen
+20645,anergy,inactivity and lack of energy
+20646,aneroid_barometer aneroid,a barometer that measures pressure without using fluids
+20647,anesthesia anaesthesia,loss of bodily sensation with or without loss of consciousness
+20648,anesthesiologist anesthetist anaesthetist,a specialist who administers an anesthetic to a patient before he is treated
+20649,anesthesiology,the branch of medical science that studies and applies anesthetics
+20650,anesthetic anaesthetic anesthetic_agent anaesthetic_agent,a drug that causes temporary loss of bodily sensations
+20651,anesthyl,a mixture of methyl and ethyl chloride; sprayed on as a local anesthetic
+20652,anestrus anestrum anoestrus anoestrum,applies to nonhuman mammals: a state or interval of sexual inactivity between two periods of estrus
+20653,aneuploidy,an abnormality involving a chromosome number that is not an exact multiple of the haploid number (one chromosome set is incomplete)
+20654,aneurysm aneurism,a cardiovascular disease characterized by a saclike widening of an artery resulting from weakening of the artery wall
+20655,angel,spiritual being attendant upon God
+20656,angel backer,invests in a theatrical production
+20657,angel's_trumpet Brugmansia_suaveolens Datura_suaveolens,South American plant cultivated for its very large nocturnally fragrant trumpet-shaped flowers
+20658,angel's_trumpet maikoa Brugmansia_arborea Datura_arborea,a South American plant that is cultivated for its large fragrant trumpet-shaped flowers
+20659,angel-wing_begonia Begonia_cocchinea,South American fibrous-rooted begonias having prominent basal leaf lobes suggesting angels' wings and racemes of coral-red flowers
+20660,angel_cake angel_food_cake,a light sponge cake made without egg yolks
+20661,angel_shark angelfish Squatina_squatina monkfish,sharks with broad flat bodies and winglike pectoral fins but that swim the way sharks do
+20662,angelfish,a butterfly fish of the genus Pomacanthus
+20663,angelica,candied stalks of the angelica plant
+20664,angelica,aromatic stems or leaves or roots of Angelica Archangelica
+20665,angelica angelique,any of various tall and stout herbs of the genus Angelica having pinnately compound leaves and small white or greenish flowers in compound umbels
+20666,angelim andelmin,any of several tropical American trees of the genus Andira
+20667,angelology,the branch of theology that is concerned with angels
+20668,angelus_bell angelus,the sound of a bell rung in Roman Catholic churches to announce the time when the Angelus should be recited
+20669,anger angriness,the state of being angry
+20670,anger choler ire,a strong emotion; a feeling that is oriented toward some real or supposed grievance
+20671,angiitis,inflammation of a blood vessel or lymph duct
+20672,angina,any disease of the throat or fauces marked by spasmodic attacks of intense suffocative pain
+20673,angina_pectoris angina,a heart condition marked by paroxysms of chest pain due to reduced oxygen to the heart
+20674,angiocardiogram,a series of X rays representing the action of the heart and its blood vessels after the injection of a radiopaque substance
+20675,angiocarp,tree bearing fruit enclosed in a shell or involucre or husk
+20676,angioedema atrophedema giant_hives periodic_edema Quincke's_edema,recurrent large circumscribed areas of subcutaneous edema; onset is sudden and it disappears within 24 hours; seen mainly in young women, often as an allergic reaction to food or drugs
+20677,angiogenesis,the formation of new blood vessels
+20678,angiogenesis_inhibitor,a drug that is designed to prevent the growth of blood vessels that nourish tumors
+20679,angiogram,an X-ray representation of blood vessels made after the injection of a radiopaque substance; "angiograms are produced by angiography"
+20680,angiography,roentgenographic examination of blood vessels after injection of a radiopaque contrast medium; produces an angiogram
+20681,angiologist,a physician who specializes in angiology
+20682,angiology,the branch of medical science that studies the blood and lymph vessels and their disorders
+20683,angioma,a tumor consisting of a mass of blood or lymphatic vessels
+20684,angiopathy,any disease of the blood vessels or lymph ducts
+20685,angioplasty,an operation to repair a damaged blood vessel or unblock a coronary artery
+20686,angiopteris giant_fern Angiopteris_evecta,highly variable species of very large primitive ferns of the Pacific tropical areas with high rainfall
+20687,angiosarcoma,a rare malignant neoplasm arising from vascular tissue; usually occurs in the breast and skin and is believed to originate from the endothelial cells of blood vessels
+20688,angioscope,a modified microscope used to study capillary vessels
+20689,angiosperm flowering_plant,plants having seeds in a closed ovary
+20690,angiospermous_tree flowering_tree,any tree having seeds and ovules contained in the ovary
+20691,angiospermous_yellowwood,any of various angiospermous trees having yellow wood
+20692,angiotelectasia,dilation and enlargement of arterioles
+20693,angiotensin angiotonin Hypertensin,any of several vasoconstrictor substances (trade name Hypertensin) that cause narrowing of blood vessels
+20694,angiotensin_I,a physiologically inactive form of angiotensin that is the precursor to angiotensin II
+20695,angiotensin_II,a potent vasopressor agent formed from angiotensin I
+20696,angiotensin_II_inhibitor,an agent that retards or restrains the action of angiotensin II
+20697,angiotensin_converting_enzyme angiotensin-converting_enzyme ACE,proteolytic enzyme that converts angiotensin I into angiotensin II
+20698,angle,the space between two lines or planes that intersect; the inclination of one line to another; measured in degrees or radians
+20699,angle_bracket angle_iron,an L-shaped metal bracket
+20700,angle_of_attack,the acute angle between the direction of the undisturbed relative wind and the chord of an airfoil
+20701,angle_of_extinction extinction_angle,the angle from its axis that a crystal must be rotated before appearing maximally dark when viewed in polarized light
+20702,angle_of_incidence incidence_angle,the angle that a line makes with a line perpendicular to the surface at the point of incidence
+20703,angle_of_reflection,the angle between a reflected ray and a line perpendicular to the reflecting surface at the point of incidence
+20704,angle_of_refraction,the angle between a refracted ray and a line perpendicular to the surface between the two media at the point of refraction
+20705,angled_loofah sing-kwa Luffa_acutangula,loofah of Pakistan; widely cultivated throughout tropics
+20706,angledozer,a bulldozer with an angled moldboard to push earth to one side
+20707,angler,a scheming person; someone who schemes to gain an advantage
+20708,angler troller,a fisherman who uses a hook and line
+20709,anglewing,nymphalid butterfly having angular notches on the outer edges of the forewings
+20710,angling,fishing with a hook and line (and usually a pole)
+20711,anglophile anglophil,an admirer of England and things English
+20712,anglophobe,a person who hates England and everything English
+20713,angostura_bark angostura,the bitter bark of a South American tree; used in medicines and liqueurs and bitters
+20714,angoumois_moth angoumois_grain_moth Sitotroga_cerealella,small moth whose larvae feed on kernels of stored grains
+20715,angrecum,any of various spectacular orchids of the genus Angraecum having dark green leathery leaves and usually nocturnally scented white or ivory flowers
+20716,angst,an acute but unspecific feeling of anxiety; usually reserved for philosophical anxiety about the world or about personal freedom
+20717,angstrom angstrom_unit A,a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation
+20718,anguid_lizard,any of a small family of lizards widely distributed in warm areas; all are harmless and useful as destroyers of e.g. slugs and insects
+20719,anguish,extreme distress of body or mind
+20720,anguish torment torture,extreme mental distress
+20721,angular_acceleration,(physics) the rate of change of the angular velocity of a rotating body
+20722,angular_artery arteria_angularis,the terminal branch of the facial artery
+20723,angular_distance,the angular separation between two objects as perceived by an observer; "he recorded angular distances between the stars"
+20724,angular_momentum,the product of the momentum of a rotating body and its distance from the axis of rotation; "any rotating body has an angular momentum about its center of mass"; "angular momentum makes the world go round"
+20725,angular_position,relation by which any position with respect to any other position is established
+20726,angular_shape angularity,a shape having one or more sharp angles
+20727,angular_unit,a unit of measurement for angles
+20728,angular_vein vena_angularis,a short vein formed by the supraorbital vein and the supratrochlear vein and continuing as the facial vein
+20729,angular_velocity,(physics) the rate of change of the angular position of a rotating body; usually expressed in radians per second or radians per minute
+20730,angularity,the property possessed by a shape that has angles
+20731,angulation,the precise measurement of angles
+20732,angulation,the act of making angulate (having corners)
+20733,angwantibo golden_potto Arctocebus_calabarensis,a kind of lemur
+20734,anhedonia,an inability to experience pleasure
+20735,anhidrosis anhydrosis,failure of the sweat glands
+20736,anhydride,a compound formed from one or more other compounds in a reaction resulting in removal of water
+20737,ani,black tropical American cuckoo
+20738,anil Indigofera_suffruticosa Indigofera_anil,shrub of West Indies and South America that is a source of indigo dye
+20739,anil indigo indigotin,a blue dye obtained from plants or made synthetically
+20740,aniline aniline_oil aminobenzine phenylamine,oily poisonous liquid amine obtained from nitrobenzene and used to make dyes and plastics and medicines
+20741,aniline_dye,any of many dyes made from aniline
+20742,anima,(Jungian psychology) the inner self (not the external persona) that is in touch with the unconscious
+20743,animal animate_being beast brute creature fauna,a living organism characterized by voluntary movement
+20744,animal_communication,communication between animals (of the same species)
+20745,animal_disease,a disease that typically does not affect human beings
+20746,animal_fancier,a person who breeds animals
+20747,animal_fat,any fat obtained from animals; "animal fat is high in saturated fatty acids"
+20748,animal_fiber animal_fibre,fiber derived from animals
+20749,animal_foot foot,the pedal extremity of vertebrates other than human beings
+20750,animal_glue,a protein gelatin obtained by boiling e.g. skins and hoofs of cattle and horses
+20751,animal_group,a group of animals
+20752,animal_husbandry,breeding and caring for farm animals
+20753,animal_leg,the leg of an animal
+20754,animal_material,material derived from animals
+20755,animal_oil,any oil obtained from animal substances
+20756,animal_order,the order of animals
+20757,animal_pigment,pigment occurring in animals
+20758,animal_product,a product made from animal material
+20759,animal_skin,the outer covering of an animal
+20760,animal_tissue,the tissue in the bodies of animals
+20761,animal_toxin zootoxin,a toxin resembling bacterial toxins in its antigenic properties that is found in the fluids of certain animals
+20762,animal_trainer handler,one who trains or exhibits animals
+20763,animal_virus,an animal pathogen that is a virus
+20764,animalcule animalculum,microscopic organism such as an amoeba or paramecium
+20765,animalism,the doctrine that human beings are purely animal in nature and lacking a spiritual nature
+20766,animalism physicality,preoccupation with satisfaction of physical drives and appetites
+20767,animality animal_nature,the physical (or animal) side of a person as opposed to the spirit or intellect
+20768,animalization,a depiction in the form of an animal
+20769,animateness aliveness liveness,the property of being animated; having animal life as distinguished from plant life
+20770,animation,the making of animated cartoons
+20771,animation life living aliveness,the condition of living or the state of being alive; "while there's life there's hope"; "life depends on many chemical and physical processes"
+20772,animation spiritedness invigoration brio vivification,quality of being active or spirited or alive and vigorous
+20773,animation vitality,the property of being able to survive and grow; "the vitality of a seed"
+20774,animatism,the attribution of consciousness and personality to natural phenomena such as thunderstorms and earthquakes and to objects such as plants and stones
+20775,animator,the technician who produces animated cartoons
+20776,animatronics,the construction of robots to look like animals (developed for Disneyland)
+20777,anime,a style of animation developed in Japan, characterized by stylized colorful art and often adult themes
+20778,anime gum_anime,any of various resins or oleoresins
+20779,animism,the doctrine that all natural objects and the universe itself have souls; "animism is common among primitive peoples"
+20780,animist,one who accepts the doctrine of animism
+20781,animosity animus bad_blood,a feeling of ill will arousing active hostility
+20782,anion,a negatively charged ion
+20783,anionic_compound,a compound characterized by an active anion
+20784,anionic_detergent anionic non-ionic_detergent,a class of synthetic detergents in which the molecules do not ionize in aqueous solutions
+20785,anise anise_plant Pimpinella_anisum,native to Egypt but cultivated widely for its aromatic seeds and the oil from them used medicinally and as a flavoring in cookery
+20786,anise aniseed anise_seed,liquorice-flavored seeds, used medicinally and in cooking and liquors
+20787,anise_cookie,cookie made without butter and flavored with anise seed
+20788,anise_hyssop Agastache_foeniculum,much-branched North American herb with an odor like fennel
+20789,anise_tree,any of several evergreen shrubs and small trees of the genus Illicium
+20790,aniseikonia,visual defect in which the shape and size of an ocular image differ in the two eyes
+20791,anisette anisette_de_Bordeaux,liquorice-flavored usually colorless sweet liqueur made from aniseed
+20792,anisogamete,either of a pair of unlike gametes especially those unlike in size
+20793,anisogamy,(biology) reproduction by the union or fusion of two differing gametes (especially differing in size)
+20794,anisometropia,difference in the refractive power of the two eyes
+20795,anisotropy,the property of being anisotropic; having a different value when measured in different directions
+20796,anjou,a pear with firm flesh and a green skin
+20797,ankle ankle_joint mortise_joint articulatio_talocruralis,a gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus
+20798,ankle_brace,a brace worn to strengthen the ankle
+20799,anklebone astragal astragalus talus,the bone in the ankle that articulates with the leg bones to form the ankle joint
+20800,anklet,a shoe for a child or woman that has a strap around the ankle
+20801,anklet ankle_bracelet,an ornament worn around the ankle
+20802,anklet anklets bobbysock bobbysocks,a sock that reaches just above the ankle
+20803,ankus,an elephant goad with a sharp spike and a hook
+20804,ankylosaur ankylosaurus,having the back covered with thick bony plates; thought to have walked with a sprawling gait resembling a lizard's
+20805,ankylosing_spondylitis Marie-Strumpell_disease rheumatoid_spondylitis,a chronic form of spondylitis primarily in males and marked by impaired mobility of the spine; sometimes leads to ankylosis
+20806,ankylosis anchylosis,abnormal adhesion and rigidity of the bones of a joint
+20807,anna,a former copper coin of Pakistan and India
+20808,annalist,a historian who writes annals
+20809,annals,reports of the work of a society or learned body etc
+20810,annals chronological_record,a chronological account of events in successive years
+20811,annealing tempering,hardening something by heat treatment
+20812,annelid annelid_worm segmented_worm,worms with cylindrical bodies segmented both internally and externally
+20813,annex annexe extension wing,an addition that extends a main building
+20814,annexation,the formal act of acquiring something (especially territory) by conquest or occupation; "the French annexation of Madagascar as a colony in 1896"; "a protectorate has frequently been a first step to annexation"
+20815,annexation appropriation,incorporation by joining or uniting
+20816,annihilation disintegration,total destruction; "bomb tests resulted in the annihilation of the atoll"
+20817,annihilation obliteration,destruction by annihilating something
+20818,annihilator,a total destroyer
+20819,anniversary day_of_remembrance,the date on which an event occurred in some previous year (or the celebration of it)
+20820,annotation annotating,the act of adding notes
+20821,annotator,a commentator who writes notes to a text
+20822,announcement proclamation annunciation declaration,a formal public statement; "the government made an announcement about changes in the drug war"; "a declaration of independence"
+20823,announcement promulgation,a public statement containing information about an event that has happened or is going to happen; "the announcement appeared in the local newspaper"; "the promulgation was written in English"
+20824,announcer,someone who proclaims a message publicly
+20825,announcer,reads news, commercials on radio or television
+20826,annoyance annoying irritation vexation,the act of troubling or annoying someone
+20827,annoyance bother botheration pain infliction pain_in_the_neck pain_in_the_ass,something or someone that causes trouble; a source of unhappiness; "washing dishes was a nuisance before we got a dish washer"; "a bit of a bother"; "he's not a friend, he's an infliction"
+20828,annoyance chafe vexation,anger produced by some annoying irritation
+20829,annual,(botany) a plant that completes its entire life cycle within the space of a year
+20830,annual yearly yearbook,a reference book that is published regularly once every year
+20831,annual_fern Jersey_fern Anogramma_leptophylla,small short-lived fern of Central and South America
+20832,annual_ring growth_ring,an annual formation of wood in plants as they grow
+20833,annual_salt-marsh_aster,a variety of aster
+20834,annuitant,the recipient of an annuity
+20835,annuity rente,income from capital investment paid in a series of regular payments; "his retirement fund was set up to be paid as an annuity"
+20836,annuity_in_advance,an annuity paid in a series of more or less equal payments at the beginning of equally spaced periods; "rent payable in advance constitutes an annuity in advance for the landlord"
+20837,annular_eclipse,only a thin outer disk of the sun can be seen
+20838,annular_scotoma,a circular scotoma surrounding the center of the field of vision
+20839,annulet,(heraldry) a charge in the shape of a small ring
+20840,annulet bandelet bandelette bandlet square_and_rabbet,molding in the form of a ring; at top of a column
+20841,annulment invalidation,(law) a formal termination (of a relationship or a judicial proceeding etc)
+20842,annulus skirt,(Fungi) a remnant of the partial veil that in mature mushrooms surrounds the stem like a collar
+20843,annum,(Latin) year; "per annum"
+20844,annunciator,an indicator that announces which electrical circuit has been active (as on a telephone switchboard)
+20845,anoa dwarf_buffalo Anoa_depressicornis,small buffalo of the Celebes having small straight horns
+20846,anode,the negatively charged terminal of a voltaic cell or storage battery that supplies current
+20847,anode,a positively charged electrode by which electrons leave an electrical device
+20848,anointer,one who anoints as a religious ceremony
+20849,anointing anointment,the act of applying oil or an oily liquid
+20850,anointing_of_the_sick extreme_unction last_rites,a Catholic sacrament; a priest anoints a dying person with oil and prays for salvation
+20851,anomalist,someone who has a special interest in exceptional cases
+20852,anomalistic_month,period between successive perigees; approximately 27.5546 days
+20853,anomalistic_year,time of the earth's revolution from perihelion to perihelion again; 365 days and 6 hr and 13 min and 53.1 sec
+20854,anomalops flashlight_fish,fish having a luminous organ beneath eye; of warm waters of the western Pacific and Puerto Rico
+20855,anomalopteryx Anomalopteryx_oweni,the smallest moa; slender moa about the size of a large turkey
+20856,anomaly,(astronomy) position of a planet as defined by its angular distance from its perihelion (as observed from the sun)
+20857,anomaly anomalousness,deviation from the normal or common order or form or rule
+20858,anomaly unusual_person,a person who is unusual
+20859,anomie anomy,personal state of isolation and anxiety resulting from a lack of social control and regulation
+20860,anomie anomy,lack of moral standards in a society
+20861,anonymity namelessness,the state of being anonymous
+20862,anonymous_ftp anonymous_file_transfer_protocol,a common way to make software available; users are allowed to log in as `guest' without a password and copy whatever has been made available
+20863,anopheline,any mosquito of the genus Anopheles
+20864,anopia,sightlessness (especially because of a structural defect in or the absence of an eye)
+20865,anorchism anorchidism anorchia,absence of one of both testes
+20866,anorexia,a prolonged disorder of eating due to loss of appetite
+20867,anorexia_nervosa,(psychiatry) a psychological disorder characterized by somatic delusions that you are too fat despite being emaciated
+20868,anorexic anorectic,a person suffering from anorexia nervosa
+20869,anorgasmia,absence of an orgasm in sexual relations
+20870,anorthite,rare plagioclastic feldspar occurring in many igneous rocks
+20871,anorthopia,distorted vision in which straight lines appear curved
+20872,anosmia,absence of the sense of smell (as by damage to olfactory nasal tissue or the olfactory nerve or by obstruction of the nasal passages)
+20873,anovulation,the absence of ovulation due to immaturity or post-maturity or pregnancy or oral contraceptive pills or dysfunction of the ovary
+20874,anoxemia,abnormally low oxygen content in arterial blood
+20875,anoxia,severe hypoxia; absence of oxygen in inspired gases or in arterial blood or in the tissues
+20876,anoxic_anoxia,anoxia resulting from defective oxygenation of the blood in the lungs
+20877,anseriform_bird,chiefly web-footed swimming birds
+20878,answer,the speech act of replying to a question
+20879,answer,the principal pleading by the defendant in response to plaintiff's complaint; in criminal law it consists of the defendant's plea of `guilty' or `not guilty' (or nolo contendere); in civil law it must contain denials of all allegations in the plaintiff's complaint that the defendant hopes to controvert and it can contain affirmative defenses or counterclaims
+20880,answer,a nonverbal reaction; "his answer to any problem was to get drunk"; "their answer was to sue me"
+20881,answer reply response,a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation; "I waited several days for his answer"; "he wrote replies to several of his critics"
+20882,answering_machine,an electronic device that answers the telephone and records messages
+20883,ant emmet pismire,social insect living in organized colonies; characteristically the males and fertile queen have wings during breeding season; wingless sterile females are the workers
+20884,ant_bear giant_anteater great_anteater tamanoir Myrmecophaga_jubata,large shaggy-haired toothless anteater with long tongue and powerful claws; of South America
+20885,ant_cow,excretes a honeylike substance eaten by ants
+20886,ant_lion antlion antlion_fly,winged insect resembling a dragonfly; the larvae (doodlebugs) dig conical pits where they wait to catch e.g. ants
+20887,ant_shrike,antbirds superficially resembling shrikes
+20888,ant_thrush,a kind of antbird
+20889,antacid gastric_antacid alkalizer alkaliser antiacid,an agent that counteracts or neutralizes acidity (especially in the stomach)
+20890,antagonism,the relation between opposing principles or forces or factors; "the inherent antagonism of capitalism and socialism"
+20891,antagonism,an actively expressed feeling of dislike and hostility
+20892,antagonism,(biochemistry) interference in or inhibition of the physiological action of a chemical substance by another having a similar structure
+20893,antagonist,a muscle that relaxes while another contracts; "when bending the elbow the triceps are the antagonist"
+20894,antagonist,a drug that neutralizes or counteracts the effects of another drug
+20895,antagonistic_muscle,(physiology) a muscle that opposes the action of another; "the biceps and triceps are antagonistic muscles"
+20896,antapex,the point opposite in direction from the solar apex; the point the solar system is moving away from
+20897,antbird ant_bird,any of various dull-colored South American birds that feeding on ants some following army ant swarms
+20898,ante,(poker) the initial contribution that each player makes to the pot
+20899,anteater New_World_anteater,any of several tropical American mammals of the family Myrmecophagidae which lack teeth and feed on ants and termites
+20900,antecedent,a preceding occurrence or cause or event
+20901,antecedent,the referent of an anaphor; a phrase or clause that is referred to by an anaphoric pronoun
+20902,antecedent forerunner,anything that precedes something similar in time; "phrenology was an antecedent of modern neuroscience"
+20903,antediluvian antediluvian_patriarch,any of the early patriarchs who lived prior to the Noachian deluge
+20904,antefix,carved ornament at the eaves of a tile roof concealing the joints between tiles
+20905,antelope,graceful Old World ruminant with long legs and horns directed upward and backward; includes gazelles; springboks; impalas; addax; gerenuks; blackbucks; dik-diks
+20906,antelope_squirrel whitetail_antelope_squirrel antelope_chipmunk Citellus_leucurus,small ground squirrel of western United States
+20907,antenna aerial transmitting_aerial,an electrical device that sends or receives radio or television signals
+20908,antenna feeler,sensitivity similar to that of a receptor organ; "he had a special antenna for public relations"
+20909,antenna feeler,one of a pair of mobile appendages on the head of e.g. insects and crustaceans; typically sensitive to touch and taste
+20910,antepenult antepenultima antepenultimate,the 3rd syllable of a word counting back from the end
+20911,anterior_cardinal_vein,a major drainage channel from the cephalic part of the body
+20912,anterior_cerebral_artery,one of two branches of the internal carotid artery; divides into two branches that serve (1) the thalamus and (2) parts of the frontal and parietal cortex
+20913,anterior_cerebral_vein vena_cerebri_anterior,accompanies the anterior cerebral artery and empties into the basal vein
+20914,anterior_facial_vein vena_facialis_anterior,a continuation of the angular vein; unites with the retromandibular vein before emptying into the internal jugular vein
+20915,anterior_fontanelle,corresponds to the bregma when bones have ossified
+20916,anterior_jugular_vein,arises below the chin from veins draining the lower face; joins the external jugular vein
+20917,anterior_meningeal_artery,branch of the anterior ethmoidal artery that supplies meninges in the anterior cranial fossa
+20918,anterior_pituitary anterior_pituitary_gland adenohypophysis,the anterior lobe of the pituitary body; primarily glandular in nature
+20919,anterior_serratus_muscle serratus_anterior musculus_serratus_anterior serratus_magnus,muscles that rotate the scapula and elevate the rib cage
+20920,anterior_synechia,adhesion between the iris and the cornea
+20921,anterior_temporal_artery arteria_temporalis_anterior,temporal artery that goes to the anterior part of the cerebral cortex of the temporal lobe
+20922,anterior_vertebral_vein vena_vertebralis_anterior,a vein that accompanies the ascending cervical artery and opens into the vertebral vein
+20923,anteriority,the quality of being in front or (in lower animals) toward the head
+20924,anterograde_amnesia posttraumatic_amnesia,loss of memory for events immediately following a trauma; sometimes in effect for events during and for a long time following the trauma
+20925,anteroom antechamber entrance_hall hall foyer lobby vestibule,a large entrance or reception room or area
+20926,anthem,a song of devotion or loyalty (as to a nation or school)
+20927,anther,the part of the stamen that contains pollen; usually borne on a stalk
+20928,antheridiophore,gametophore bearing antheridia as in certain mosses and liverworts
+20929,antheridium,the male sex organ of spore-producing plants; produces antherozoids; equivalent to the anther in flowers
+20930,antherozoid spermatozoid,a motile male gamete of a plant such as an alga or fern or gymnosperm
+20931,anthill formicary,a mound of earth made by ants as they dig their nest
+20932,anthologist,an editor who makes selections for an anthology
+20933,anthology,a collection of selected literary passages
+20934,anthophyllite,a dark brown mineral of the amphibole group; magnesium iron silicate
+20935,anthozoan actinozoan,sessile marine coelenterates including solitary and colonial polyps; the medusoid phase is entirely suppressed
+20936,anthracite anthracite_coal hard_coal,a hard natural coal that burns slowly and gives intense heat
+20937,anthracosis black_lung black_lung_disease coal_miner's_lung,lung disease caused by inhaling coal dust
+20938,anthrax,a disease of humans that is not communicable; caused by infection with Bacillus anthracis followed by septicemia
+20939,anthrax splenic_fever,a highly infectious animal disease (especially cattle and sheep); it can be transmitted to people
+20940,anthropocentrism anthropocentricity,an inclination to evaluate reality exclusively in terms of human values
+20941,anthropogenesis anthropogeny,the evolution or genesis of the human race
+20942,anthropoid,any member of the suborder Anthropoidea including monkeys and apes and hominids
+20943,anthropoid ape,person who resembles a nonhuman primate
+20944,anthropoid_ape,any tailless ape of the families Pongidae and Hylobatidae
+20945,anthropolatry worship_of_man,the worship of human beings
+20946,anthropologist,a social scientist who specializes in anthropology
+20947,anthropology,the social science that studies the origins and social relationships of human beings
+20948,anthropology_department department_of_anthropology,the academic department responsible for teaching and research in anthropology
+20949,anthropometry,measurement and study of the human body and its parts and capacities
+20950,anthropomorphism theanthropism,the representation of objects (especially a god) as having human form or traits
+20951,anthropophagy,human cannibalism; the eating of human flesh
+20952,anthroposophy,a system of beliefs and practices based on the philosophy of Rudolf Steiner; it claims to integrate the practical and psychological in child-centered education
+20953,anthurium tailflower tail-flower,any of various tropical American plants cultivated for their showy foliage and flowers
+20954,anti,a person who is opposed (to an action or policy or practice etc.); "the antis smelled victory after a long battle"
+20955,anti-American,a person who is opposed to the United States and its policies
+20956,anti-Catholicism,a religious orientation opposed to Catholicism
+20957,anti-G_suit G_suit,pressure suit worn by fliers and astronauts to counteract the forces of gravity and acceleration
+20958,anti-Semite Jew-baiter,someone who hates and would persecute Jews
+20959,anti-Semitism antisemitism,the intense dislike for and prejudice against Jewish people
+20960,anti-TNF_compound,a class of drugs that block the action of tumor necrosis factor (TNF); used in cases of rheumatoid arthritis because TNF instigates inflammation of the joints
+20961,anti-drug_law,a law forbidding the sale or use of narcotic drugs
+20962,anti-dumping_duty,a tariff imposed to prevent dumping
+20963,anti-inflammatory anti-inflammatory_drug,a medicine intended to reduce inflammation
+20964,anti-racketeering_law Racketeer_Influenced_and_Corrupt_Organizations_Act RICO_Act RICO,law intended to eradicate organized crime by establishing strong sanctions and forfeiture provisions
+20965,anti-submarine_rocket,a shipboard system to fire rockets at submarines
+20966,anti-takeover_defense,resistance to or defense against a hostile takeover
+20967,anti-virus_program,a computer program that checks a computer for viruses and prevents their spread
+20968,anti-war_movement,a campaign against entering or continuing a war
+20969,antiaircraft antiaircraft_gun flak flack pom-pom ack-ack ack-ack_gun,artillery designed to shoot upward at airplanes
+20970,antiaircraft_fire,firing at enemy aircraft
+20971,antialiasing,(computer graphics) a technique that is used to smooth jagged distortions in curves and diagonal lines so they appear smoother
+20972,antiarrhythmic antiarrhythmic_drug antiarrhythmic_medication,a drug used to treat an abnormal heart rhythm
+20973,antibacterial antibacterial_drug bactericide,any drug that destroys bacteria or inhibits their growth
+20974,antiballistic_missile ABM,a defensive missile designed to shoot down incoming intercontinental ballistic missiles; "the Strategic Arms Limitation Talks placed limits on the deployment of ABMs"
+20975,antibaryon,the antiparticle of a baryon; a hadron with a baryon number of -1
+20976,antibiosis,an association between organisms that is harmful to one of them or between organisms and a metabolic product of another
+20977,antibiotic antibiotic_drug,a chemical substance derivable from a mold or bacterium that can kill microorganisms and cure bacterial infections; "when antibiotics were first discovered they were called wonder drugs"
+20978,antibody,any of a large variety of proteins normally present in the body or produced in response to an antigen which it neutralizes, thus producing an immune response
+20979,antic joke prank trick caper put-on,a ludicrous or grotesque act done for fun and amusement
+20980,anticatalyst,(chemistry) a substance that retards a chemical reaction or diminishes the activity of a catalyst
+20981,anticholinergic anticholinergic_drug,a substance that opposes or blocks the action of acetylcholine
+20982,anticholinesterase,a medicine that inhibits cholinesterase by combining with it and so has a cholinergic effect
+20983,anticipation expectancy,an expectation
+20984,anticipation expectancy,something expected (as on the basis of a norm); "each of them had their own anticipations"; "an indicator of expectancy in development"
+20985,anticipation expectation,anticipating with confidence of fulfillment
+20986,anticipator anticipant,one who anticipates
+20987,anticipatory_breach constructive_breach,a breach of contract committed prior to the time of required performance
+20988,anticlimax,a disappointing decline after a previous rise; "the anticlimax of a brilliant career"
+20989,anticlimax bathos,a change from a serious subject to a disappointing one
+20990,anticoagulant anticoagulant_medication decoagulant,medicine that prevents or retards the clotting of blood
+20991,anticoagulation,the administration of an anticoagulant drug to retard coagulation of the blood
+20992,anticonvulsant anticonvulsant_drug antiepileptic antiepileptic_drug,a drug used to treat or prevent convulsions (as in epilepsy)
+20993,anticyclone,(meteorology) winds spiraling outward from a high pressure center; circling clockwise in the northern hemisphere and counterclockwise in the southern
+20994,antidepressant antidepressant_drug,any of a class of drugs used to treat depression; often have undesirable side effects
+20995,antidiabetic antidiabetic_drug,a drug used to treat diabetes mellitus
+20996,antidiarrheal antidiarrheal_drug,a drug used to control or stop diarrhea
+20997,antidiuretic antidiuretic_drug,a drug that limits the formation of urine
+20998,antidote counterpoison,a remedy that stops or controls the effects of a poison
+20999,antiemetic antiemetic_drug,a drug that prevents or alleviates nausea and vomiting
+21000,antiestablishmentarianism antiestablishmentism,the doctrine of opposition to the social and political establishment
+21001,antifeminist,someone who does not believe in the social or economic or political equality of men and women
+21002,antiferromagnetism,magnetic field creates parallel but opposing spins; varies with temperature
+21003,antiflatulent,any agent that reduces intestinal gas
+21004,antifouling_paint,a paint used to protect against the accumulation of barnacles etc. on underwater surfaces
+21005,antifreeze,a liquid added to the water in a cooling system to lower its freezing point
+21006,antifungal antifungal_agent fungicide antimycotic antimycotic_agent,any agent that destroys or prevents the growth of fungi
+21007,antigen,any substance (as a toxin or enzyme) that stimulates an immune response in the body (especially the production of antibodies)
+21008,antigenic_determinant determinant epitope,the site on the surface of an antigen molecule to which an antibody attaches itself
+21009,antigram,an anagram that means the opposite of the original word or phrase; "`restful' is the antigram of `fluster'"
+21010,antihemophilic_factor antihaemophilic_factor antihemophilic_globulin antihaemophilic_globulin factor_VIII Hemofil,a coagulation factor (trade name Hemofil) whose absence is associated with hemophilia A
+21011,antihero,a protagonist who lacks the characteristics that would make him a hero (or her a heroine)
+21012,antihistamine,a medicine used to treat allergies and hypersensitive reactions and colds; works by counteracting the effects of histamine on a receptor site
+21013,antihypertensive antihypertensive_drug,a drug that reduces high blood pressure
+21014,antiknock,any of various compounds that are added to gasoline to reduce engine knocking
+21015,antilepton,the antiparticle of a lepton
+21016,antilogarithm antilog,the number of which a given number is the logarithm
+21017,antimacassar,a piece of ornamented cloth that protects the back of a chair from hair oils
+21018,antimalarial antimalarial_drug,a medicinal drug used to prevent or treat malaria
+21019,antimatter,matter consisting of elementary particles that are the antiparticles of those making up normal substances
+21020,antimeson,the antiparticle of a meson
+21021,antimetabolite,an antineoplastic drug that inhibits the utilization of a metabolite
+21022,antimony Sb atomic_number_51,a metallic element having four allotropic forms; used in a wide variety of alloys; found in stibnite
+21023,antimuon positive_muon,the antiparticle of a muon; decays to positron and neutrino and antineutrino
+21024,antimycin,a crystalline antibiotic active against various fungi
+21025,antineoplastic antineoplastic_drug cancer_drug,any of several drugs that control or kill neoplastic cells; used in chemotherapy to kill cancer cells; all have unpleasant side effects that may include nausea and vomiting and hair loss and suppression of bone marrow function
+21026,antineoplastic_antibiotic,an antibiotic drug used as an antineoplastic in chemotherapy
+21027,antineutrino,the antiparticle of a neutrino
+21028,antineutron,the antiparticle of a neutron
+21029,antinode,(physics) the point of maximum displacement in a periodic system
+21030,antinomasia,substitution of a title for a name
+21031,antinomian,a follower of the doctrine of antinomianism
+21032,antinomianism,the theological doctrine that by faith and God's grace a Christian is freed from all laws (including the moral standards of the culture)
+21033,antinomy,a contradiction between two statements that seem equally reasonable
+21034,antioxidant,substance that inhibits oxidation or inhibits reactions promoted by oxygen or peroxides
+21035,antiparticle,a particle that has the same mass as another particle but has opposite values for its other properties; interaction of a particle and its antiparticle results in annihilation and the production of radiant energy
+21036,antipasto,a course of appetizers in an Italian meal
+21037,antipathy,the object of a feeling of intense aversion; something to be avoided; "cats were his greatest antipathy"
+21038,antipathy aversion distaste,a feeling of intense dislike
+21039,antiperspirant,an astringent substance applied to the skin to reduce perspiration
+21040,antiphon antiphony,a verse or song to be chanted or sung in response
+21041,antiphonary antiphonal,bound collection of antiphons
+21042,antiphony,alternate (responsive) singing by a choir in two parts
+21043,antiphrasis,the use of a word in a sense opposite to its normal sense (especially in irony)
+21044,antipodal antipodal_opposition diametrical_opposition,the relation of opposition along a diameter
+21045,antipode,direct opposite; "quiet: an antipode to focused busyness"
+21046,antipodes,any two places or regions on diametrically opposite sides of the Earth; "the North Pole and the South Pole are antipodes"
+21047,antipope,someone who is elected pope in opposition to another person who is held to be canonically elected; "the antipopes resided in Avignon during the Great Schism"
+21048,antiproton,an unstable negatively charged proton; the antiparticle of a proton
+21049,antiprotozoal antiprotozoal_drug,a medicinal drug used to fight diseases (like malaria) that are caused by protozoa
+21050,antipruritic,a substance that relieves or prevents itching
+21051,antipyresis,medication with antipyretics to treat a fever
+21052,antipyretic febrifuge,any medicine that lowers body temperature to prevent or alleviate fever
+21053,antiquark,the antiparticle of a quark
+21054,antiquary antiquarian archaist,an expert or collector of antiquities
+21055,antique,any piece of furniture or decorative object or the like produced in a former period and valuable because of its beauty or rarity
+21056,antiquity,the historic period preceding the Middle Ages in Europe
+21057,antiquity,an artifact surviving from the past
+21058,antiredeposition,the process of preventing redeposition
+21059,antisepsis asepsis,the process of inhibiting the growth and multiplication of microorganisms
+21060,antiseptic,a substance that destroys micro-organisms that carry disease without harming body tissues
+21061,antiserum,blood serum containing antibodies against specific antigens; provides immunity to a disease
+21062,antisocial_personality_disorder sociopathic_personality psychopathic_personality,a personality disorder characterized by amorality and lack of affect; capable of violent acts without guilt feelings (`psychopathic personality' was once widely used but was superseded by `sociopathic personality' to indicate the social aspects of the disorder, but now `antisocial personality disorder' is the preferred term)
+21063,antispasmodic spasmolytic antispasmodic_agent,a drug used to relieve or prevent spasms (especially of the smooth muscles)
+21064,antistrophe,the section of a choral ode answering a previous strophe in classical Greek drama; the second of two metrically corresponding sections in a poem
+21065,antisyphilitic,a drug (or other chemical agent) that is effective against syphilis
+21066,antitauon tau-plus_particle,an antilepton of very great mass
+21067,antithesis,exact opposite; "his theory is the antithesis of mine"
+21068,antithesis,the juxtaposition of contrasting words or ideas to give a feeling of balance
+21069,antitoxin,an antibody that can neutralize a specific toxin
+21070,antitrade_wind antitrade,winds blowing from west to east and lying above the trade winds in the tropics
+21071,antitrades,wind in the upper atmosphere blowing above but in the opposite direction from the trade winds
+21072,antitrust_case,a legal action brought against parties who are charged with limiting free competition in the market place
+21073,antitrust_legislation antitrust_law,law intended to promote free competition in the market place by outlawing monopolies
+21074,antitussive,any medicine used to suppress or relieve coughing
+21075,antitype,a person or thing represented or foreshadowed by an earlier type or symbol; especially a figure or event in the New Testament having a counterpart in the Old Testament; "Aaron and Jesus Christ are the type and antitype for the high priest who made atonement for the sins of the people"
+21076,antitype,an opposite or contrasting type
+21077,antivenin antivenene,an antitoxin that counteracts the effects of venom from the bite of a snake or insect or other animal
+21078,antiviral antiviral_agent antiviral_drug,any drug that destroys viruses
+21079,antler,deciduous horn of a member of the deer family
+21080,antler_moth Cerapteryx_graminis,European moth with white antler-like markings on the forewings; the larvae damage pastures and grasslands
+21081,antonym opposite_word opposite,a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other; "to him the antonym of `gay' was `depressed'"
+21082,antonymy,the semantic relation that holds between two words that can (in a given context) express opposite meanings
+21083,antrum,a natural cavity or hollow in a bone
+21084,anuresis anuria,inability to urinate
+21085,anus,the excretory opening at the end of the alimentary canal
+21086,anvil,a heavy block of iron or steel on which hot metals are shaped by hammering
+21087,anxiety,a vague unpleasant emotion that is experienced in anticipation of some (usually ill-defined) misfortune
+21088,anxiety anxiousness,(psychiatry) a relatively permanent state of worry and nervousness occurring in a variety of mental disorders, usually accompanied by compulsive behavior or attacks of panic
+21089,anxiety_attack,a sudden acute episode of intense anxiety and feelings of panic
+21090,anxiety_disorder,a cover term for a variety of mental disorders in which severe anxiety is a salient symptom
+21091,anxiety_hysteria,a form of hysteria having features of both conversion disorder and anxiety neurosis
+21092,anxiety_neurosis,characterized by diffuse anxiety and often somatic manifestations of fear
+21093,anxiousness disquiet,a feeling of mild anxiety about possible developments
+21094,any-and-all_bid,a takeover bid where the acquirer offers to buy any and all shares outstanding
+21095,ao_dai,the traditional dress of Vietnamese women consisting of a tunic with long sleeves and panels front and back; the tunic is worn over trousers
+21096,aorist,a verb tense in some languages (classical Greek and Sanskrit) expressing action (especially past action) without indicating its completion or continuation
+21097,aorta,the large trunk artery that carries blood from the left ventricle of the heart to branch arteries
+21098,aortic_aneurysm,an aneurysm of the aorta
+21099,aortic_arch,the part of the aorta that arches and turns downward
+21100,aortic_orifice,the orifice from the lower left chamber of the heart to the aorta
+21101,aortic_plexus,a plexus of lymph nodes in the lower portion of the abdominal aorta
+21102,aortic_stenosis,abnormal narrowing of the aortic valve
+21103,aortic_valve,a semilunar valve between the left ventricle and the aorta; prevents blood from flowing from the aorta back into the heart
+21104,aortitis,inflammation of the aorta
+21105,aoudad arui audad Barbary_sheep maned_sheep Ammotragus_lervia,wild sheep of northern Africa
+21106,apache,a Parisian gangster
+21107,apache_dance,a violent fast dance in French vaudeville (an apache is a member of the French underworld)
+21108,apache_devil_dance,a ritual dance of the Apache
+21109,apadana,the great hall in ancient Persian palaces
+21110,apar three-banded_armadillo Tolypeutes_tricinctus,South American armadillo with three bands of bony plates
+21111,apartheid,a social policy or racial segregation involving political and economic and legal discrimination against people who are not Whites; the former official policy in South Africa
+21112,apartment flat,a suite of rooms usually on one floor of an apartment house
+21113,apartment_building apartment_house,a building that is divided into apartments
+21114,apatetic_coloration,coloring serving as natural camouflage
+21115,apathy,an absence of emotion or enthusiasm
+21116,apathy indifference numbness spiritlessness,the trait of lacking enthusiasm for or interest in things generally
+21117,apatite,a common complex mineral consisting of calcium fluoride phosphate or calcium chloride phosphate; a source of phosphorus
+21118,apatosaur apatosaurus brontosaur brontosaurus thunder_lizard Apatosaurus_excelsus,huge quadrupedal herbivorous dinosaur common in North America in the late Jurassic
+21119,ape,any of various primates with short tails or no tail at all
+21120,ape-man,a person assumed to have been raised by apes
+21121,apercu,a short synopsis
+21122,aperea wild_cavy Cavia_porcellus,South American cavy; possibly ancestral to the domestic guinea pig
+21123,aperitif,alcoholic beverage taken before a meal as an appetizer
+21124,aperture,a natural opening in something
+21125,aperture,a device that controls amount of light admitted
+21126,aperture,an man-made opening; usually small
+21127,apery mimicry,the act of mimicking; imitative behavior
+21128,apetalous_flower,flower having no petals
+21129,apex solar_apex apex_of_the_sun's_way,the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars
+21130,aphaeresis apheresis,(linguistics) omission at the beginning of a word as in `coon' for `raccoon' or `till' for `until'
+21131,aphagia,loss of the ability to swallow
+21132,aphakia,absence of the natural lens of the eye (usually resulting from the removal of cataracts)
+21133,aphakic,someone afflicted by aphakia; someone lacking the natural lenses of the eyes
+21134,aphanite,fine-grained homogeneous rock (such as basalt) containing minerals undetectable by the naked eye
+21135,aphasia,inability to use or understand language (spoken or written) because of a brain lesion
+21136,aphasic,someone affected by aphasia or inability to use or understand language
+21137,aphelion,apoapsis in solar orbit; the point in the orbit of a planet or comet that is at the greatest distance from the sun
+21138,apheresis pheresis,a procedure in which blood is drawn and separated into its components by dialysis; some are retained and the rest are returned to the donor by transfusion
+21139,aphesis,the gradual disappearance of an initial (usually unstressed) vowel or syllable as in `squire' for `esquire'
+21140,aphid,any of various small plant-sucking insects
+21141,aphid_lion aphis_lion,carnivorous larva of lacewing flies
+21142,aphonia voicelessness,a disorder of the vocal organs that results in the loss of voice
+21143,aphorism apothegm apophthegm,a short pithy instructive saying
+21144,aphorist,someone who formulates aphorisms or who repeats aphorisms
+21145,aphrodisia,a desire for heterosexual intimacy
+21146,aphrodisiac,a drug or other agent that stimulates sexual desire
+21147,aphthous_ulcer,a blister on the mucous membranes of the lips or mouth or gastrointestinal tract
+21148,apiary bee_house,a shed containing a number of beehives
+21149,apical_placentation,where one or few ovules develop at the top of a simple or compound ovary
+21150,apishamore,a saddle blanket made of buffalo hide
+21151,aplasia,failure of some tissue or organ to develop
+21152,aplastic_anemia aplastic_anaemia,anemia characterized by pancytopenia resulting from failure of the bone marrow; can be caused by neoplasm or by toxic exposure
+21153,aplite,light-colored and fine-grained granitic rock consisting chiefly of quartz and feldspars
+21154,aplomb assuredness cool poise sang-froid,great coolness and composure under strain; "keep your cool"
+21155,apnea,transient cessation of respiration
+21156,apoapsis point_of_apoapsis,(astronomy) the point in an orbit farthest from the body being orbited
+21157,apocalypse,a cosmic cataclysm in which God destroys the ruling powers of evil
+21158,apocope,abbreviation of a word by omitting the final sound or sounds; "the British get `pud' from `pudding' by apocope"
+21159,apocrine_gland,a large sweat gland that produces both a fluid and an apocrine secretion; in human beings located in hairy regions of the body
+21160,apodeme,ridge-like ingrowth of the exoskeleton of an arthropod that supports internal organs and provides attachment points for muscles
+21161,apodiform_bird,nonpasserine bird having long wings and weak feet; spends much of its time in flight
+21162,apoenzyme,a protein that combines with a coenzyme to form an active enzyme
+21163,apogamy,(botany) development of an embryo without fertilization; especially the development in some ferns of a sporophyte from the gametophyte without fertilization
+21164,apogee,apoapsis in Earth orbit; the point in its orbit where a satellite is at the greatest distance from the Earth
+21165,apogee culmination,a final climactic stage; "their achievements stand as a culmination of centuries of development"
+21166,apojove,apoapsis in orbit around Jupiter
+21167,apolemia,large siphonophore of up to 50 ft long
+21168,apologetics,the branch of theology that is concerned with the defense of Christian doctrines
+21169,apologist vindicator justifier,a person who argues to defend or justify some policy or institution; "an apologist for capital punishment"
+21170,apology,an expression of regret at having caused trouble for someone; "he wrote a letter of apology to the hostess"
+21171,apology apologia,a formal written defense of something you believe in strongly
+21172,apology excuse,a poor example; "it was an apology for a meal"; "a poor excuse for an automobile"
+21173,apomict,a plant that reproduces or is reproduced by apomixis
+21174,apomixis,any of several kinds of reproduction without fertilization
+21175,apomorphine,a morphine derivative that is not as strong as morphine; used as an emetic and in small doses as a sedative
+21176,aponeurosis,any of the deeper and thicker fascia that attach muscles to bones; resemble flattened tendons
+21177,apophasis,mentioning something by saying it will not be mentioned
+21178,apophatism,the religious belief that God cannot be known but is completely `other' and must be described in negative terms (in terms of what God is not)
+21179,apophysis,(botany) a natural swelling or enlargement: at the base of the stalk or seta in certain mosses or on the cone scale of certain conifers
+21180,apophysis,(anatomy) a natural outgrowth or projection on an organ or body part such as the process of a vertebra
+21181,apoptosis programmed_cell_death caspase-mediated_cell_death,a type of cell death in which the cell uses specialized cellular machinery to kill itself; a cell suicide mechanism that enables metazoans to control cell number and eliminate cells that threaten the animal's survival
+21182,aposelene apolune,apoapsis in orbit around the moon
+21183,aposematic_coloration warning_coloration,conspicuous coloration or markings of an animal serving to warn off predators; "a skunk's aposematic coloration"
+21184,aposiopesis,breaking off in the middle of a sentence (as by writers of realistic conversations)
+21185,apostasy renunciation defection,the state of having rejected your religious beliefs or your political party or a cause (often in favor of opposing beliefs or causes)
+21186,apostasy tergiversation,the act of abandoning a party for cause
+21187,apostle,an ardent early supporter of a cause or reform; "an apostle of revolution"
+21188,apostleship,the position of apostle
+21189,apostolic_delegate,(Roman Catholic Church) a representative of the Holy See in a country that has no formal diplomatic relations with it
+21190,apostrophe,address to an absent or imaginary person
+21191,apostrophe,the mark (') used to indicate the omission of one or more letters from a printed word
+21192,apothecaries'_unit apothecaries'_weight,any weight unit used in pharmacy; an ounce is equal to 480 grains and a pound is equal to 12 ounces
+21193,apothecium,a cuplike ascocarp in many lichens and ascomycetous fungi
+21194,appalling,an experience that appalls; "is it better to view the appalling or merely hear of it?"
+21195,appanage apanage,any customary and rightful perquisite appropriate to your station in life; "for thousands of years the chair was an appanage of state and dignity rather than an article of ordinary use"
+21196,appanage apanage,a grant (by a sovereign or a legislative body) of resources to maintain a dependent member of a ruling family; "bishoprics were received as appanages for the younger sons of great families"
+21197,apparatchik,a humorous but derogatory term for an official of a large organization (especially a political organization); "Democratic apparatchiks"
+21198,apparatchik,a communist who was a member of the administrative system of a communist party
+21199,apparatus,(anatomy) a group of body parts that work together to perform a given function; "the breathing apparatus"
+21200,apparatus setup,equipment designed to serve a specific function
+21201,apparel wearing_apparel dress clothes,clothing in general; "she was refined in her choice of apparel"; "he always bought his clothes at the same store"; "fastidious about his dress"
+21202,apparel_chain,a chain of clothing stores
+21203,apparel_industry garment_industry fashion_industry fashion_business rag_trade,makers and sellers of fashionable clothing
+21204,apparent_motion motion apparent_movement movement,an optical illusion of motion produced by viewing a rapid succession of still pictures of a moving object; "the cinema relies on apparent motion"; "the succession of flashing lights gave an illusion of movement"
+21205,apparentness apparency,the property of being apparent
+21206,apparition,the appearance of a ghostlike figure; "I was recalled to the present by the apparition of a frightening specter"
+21207,apparition,an act of appearing or becoming visible unexpectedly; "natives were amazed at the apparition of this white stranger"
+21208,apparition phantom phantasm phantasma fantasm shadow,something existing in perception only; "a ghostly apparition at midnight"
+21209,apparition phantom phantasm phantasma fantasm specter spectre,a ghostly appearing figure; "we were unprepared for the apparition that confronted us"
+21210,appeal,(law) a legal proceeding in which the appellant resorts to a higher court for the purpose of obtaining a review of a lower court decision and a reversal of the lower court's judgment or the granting of a new trial; "their appeal was denied in the superior court"
+21211,appeal appealingness charm,attractiveness that interests or pleases or stimulates; "his smile was part of his appeal to her"
+21212,appeal_board appeals_board board_of_appeals,a board of officials that are not judicial but are appointed to hear appeals
+21213,appearance,the event of coming into sight
+21214,appearance,a mental representation; "I tried to describe his appearance to the police"
+21215,appearance,the act of appearing in public view; "the rookie made a brief appearance in the first period"; "it was Bernhardt's last appearance in America"
+21216,appearance appearing coming_into_court,formal attendance (in court or at a hearing) of a party in an action
+21217,appearance show,pretending that something is the case in order to make a good impression; "they try to keep up appearances"; "that ceremony is just for show"
+21218,appearance visual_aspect,outward or visible aspect of a person or thing
+21219,appeasement calming,the act of appeasing (as by acceding to the demands of)
+21220,appeaser,someone who tries to bring peace by acceding to demands; "An appeaser is one who feeds a crocodile--hoping it will eat him last"--Winston Churchill
+21221,appellant plaintiff_in_error,the party who appeals a decision of a lower court
+21222,appellate_court appeals_court court_of_appeals,a court whose jurisdiction is to review decisions of lower courts or agencies
+21223,appellation,a geographical indication used to identify where the grapes for a wine are grown
+21224,appellation denomination designation appellative,identifying word or words by which someone or something is called and classified or distinguished from others
+21225,appendage,a part that is joined to something larger
+21226,appendectomy appendicectomy,surgical removal of the vermiform appendix
+21227,appendicitis,inflammation of the vermiform appendix
+21228,appendicle,a small appendage
+21229,appendicular_artery arteria_appendicularis,the branch of the ileocolic artery that supplies the vermiform appendix
+21230,appendicular_skeleton,the part of the skeleton that includes the pectoral girdle and the pelvic girdle and the upper and lower limbs
+21231,appendicular_vein vena_appendicularis,a vein that accompanies the appendicular artery and empties into the ileocolic vein
+21232,appendicularia,free-swimming tadpole-shaped pelagic tunicate resembling larvae of other tunicates
+21233,appendix,supplementary material that is collected and appended at the back of a book
+21234,appendix vermiform_appendix vermiform_process cecal_appendage,a vestigial process that extends from the lower end of the cecum and that resembles a small pouch
+21235,apperception,the process whereby perceived qualities of an object are related to past experience
+21236,appetite appetency appetence,a feeling of craving something; "an appetite for life"; "the object of life is to satisfy as many appetencies as possible"- Granville Hicks
+21237,appetizer appetiser starter,food or drink to stimulate the appetite (usually served before a meal or as the first course)
+21238,appetizingness appetisingness,the property of stimulating the appetite
+21239,applause hand_clapping clapping,a demonstration of approval by clapping the hands together
+21240,apple,fruit with red or yellow or green skin and sweet to tart crisp whitish flesh
+21241,apple orchard_apple_tree Malus_pumila,native Eurasian tree widely cultivated in many varieties for its firm rounded edible fruits
+21242,apple_aphid green_apple_aphid Aphis_pomi,bright green aphid; feeds on and causes curling of apple leaves
+21243,apple_blight apple_canker,a disease of apple trees
+21244,apple_butter,thick dark spicy puree of apples
+21245,apple_dumpling,apples wrapped in pastry and baked
+21246,apple_fritter,fritter containing sliced apple
+21247,apple_geranium nutmeg_geranium Pelargonium_odoratissimum,geranium with round fragrant leaves and small white flowers
+21248,apple_jelly,jelly made from apple juice
+21249,apple_juice,the juice of apples
+21250,apple_maggot railroad_worm Rhagoletis_pomonella,larvae bore into and feed on apples
+21251,apple_mint applemint Mentha_rotundifolia Mentha_suaveolens,mint with apple-scented stems of southern and western Europe; naturalized in United States
+21252,apple_of_Peru shoo_fly Nicandra_physaloides,coarse South American herb grown for its blue-and-white flowers followed by a bladderlike fruit enclosing a dry berry
+21253,apple_of_discord,(classical mythology) a golden apple thrown into a banquet of the gods by Eris (goddess of discord--who had not been invited); the apple had `for the fairest' written on it and Hera and Athena and Aphrodite all claimed it; when Paris (prince of Troy) awarded it to Aphrodite it began a chain of events that led to the Trojan War
+21254,apple_orchard,a grove of apple trees
+21255,apple_pie,pie (with a top crust) containing sliced apples and sugar
+21256,apple_polisher bootlicker fawner groveller groveler truckler,someone who humbles himself as a sign of respect; who behaves as if he had no self-respect
+21257,apple_rust cedar-apple_rust Gymnosporangium_juniperi-virginianae,rust fungus causing rust spots on apples and pears etc
+21258,apple_tart,a small open pie filled with sliced apples and sugar
+21259,apple_tart,a tart filled with sliced apples and sugar
+21260,apple_tree,any tree of the genus Malus especially those bearing firm rounded edible fruits
+21261,apple_turnover,turnover with an apple filling
+21262,applecart,the planning that is disrupted when someone `upsets the applecart'
+21263,applecart,a handcart from which apples and other fruit are sold in the street
+21264,applejack,distilled from hard cider
+21265,applesauce apple_sauce,puree of stewed apples usually sweetened and spiced
+21266,applesauce_cake,moist spicy cake containing applesauce
+21267,applet,a Java application; an application program that uses the client's web browser to provide a user interface
+21268,applewood,wood of any of various apple trees of the genus Malus
+21269,appliance,durable goods for home or office use
+21270,appliance contraption contrivance convenience gadget gizmo gismo widget,a device or control that is very useful for a particular job
+21271,applicability pertinence pertinency,relevance by virtue of being applicable to the matter at hand
+21272,applicant applier,a person who requests or seeks something such as assistance or employment or admission
+21273,application,a verbal or written request for assistance or employment or admission to a school; "December 31 is the deadline for applications"
+21274,application,the action of putting something into operation; "the application of maximum thrust"; "massage has far-reaching medical applications"; "the application of indexes to tables of data"
+21275,application application_program applications_programme,a program that gives a computer instructions that provide the user with tools to accomplish a task; "he has tried several different word processing applications"
+21276,application coating covering,the work of applying something; "the doctor prescribed a topical application of iodine"; "a complete bleach requires several applications"; "the surface was ready for a coating of paint"
+21277,application diligence,a diligent effort; "it is a job requiring serious application"
+21278,application practical_application,the act of bringing something to bear; using it for a particular purpose; "he advocated the application of statistics to the problem"; "a novel application of electronics to medical diagnosis"
+21279,application-oriented_language problem-oriented_language,a language whose statements resemble terminology of the user
+21280,application_form,a form to use when making an application
+21281,applicator applier,a device for applying a substance
+21282,applied_mathematics applied_math,the branches of mathematics that are involved in the study of the physical or biological or sociological world
+21283,applied_psychology industrial_psychology,any of several branches of psychology that seek to apply psychological principles to practical problems of education or industry or marketing etc.
+21284,applique,a decorative design made of one material sewn over another
+21285,appointee,an official who is appointed
+21286,appointee appointment,a person who is appointed to a job or position
+21287,appointment,the job to which you are (or hope to be) appointed; "he applied for an appointment in the treasury"
+21288,appointment,(law) the act of disposing of property by virtue of the power of appointment; "she allocated part of the trust to her church by appointment"
+21289,appointment assignment designation naming,the act of putting a person into a non-elective position; "the appointment had to be approved by the whole committee"
+21290,appointment fitting,(usually in the plural) furnishings and equipment (especially for a ship or hotel)
+21291,appointment_book appointment_calendar,a book containing a calendar and space to keep a record of appointments
+21292,apposition,a grammatical relation between a word and a noun phrase that follows; "`Rudolph the red-nosed reindeer' is an example of apposition"
+21293,apposition,(biology) growth in the thickness of a cell wall by the deposit of successive layers of material
+21294,appraisal,an expert estimation of the quality, quantity, and other characteristics of someone or something
+21295,appraisal assessment,the classification of someone or something with respect to its worth
+21296,appraisal estimate estimation,a document appraising the value of something (as for insurance or taxation)
+21297,appraiser authenticator,one who determines authenticity (as of works of art) or who guarantees validity
+21298,appraiser valuator,one who estimates officially the worth or value or quality of things
+21299,appreciation,an expression of gratitude; "he expressed his appreciation in a short note"
+21300,appreciation,an increase in price or value; "an appreciation of 30% in the value of real estate"
+21301,appreciation grasp hold,understanding of the nature or meaning or quality or magnitude of something; "he has a good grasp of accounting practices"
+21302,appreciator,a person who is fully aware of something and understands it; "he is not an appreciator of our dilemma"
+21303,apprehender,a person who seizes or arrests (especially a person who seizes or arrests in the name of justice)
+21304,apprehension apprehensiveness dread,fearful expectation or anticipation; "the student looked around the examination room with apprehension"
+21305,apprehension arrest catch collar pinch taking_into_custody,the act of apprehending (especially apprehending a criminal); "the policeman on the beat got credit for the collar"
+21306,apprehension misgiving,painful expectation
+21307,apprentice learner prentice,works for an expert to learn a trade
+21308,apprenticeship,the position of apprentice
+21309,appro,an informal British abbreviation of approval; "he accepted it on appro"
+21310,approach,a close approximation; "the nearest approach to genius"
+21311,approach approach_shot,a relatively short golf shot intended to put the ball onto the putting green; "he lost the hole when his approach rolled over the green"
+21312,approach approaching,the event of one object coming closer to another
+21313,approach approaching coming,the temporal property of becoming nearer in time; "the approach of winter"
+21314,approach approaching coming,the act of drawing spatially closer to something; "the hunter's approach scattered the geese"
+21315,approach attack plan_of_attack,ideas or actions intended to deal with a problem or situation; "his approach to every problem is to draw up a list of pros and cons"; "an attack on inflation"; "his plan of attack was misguided"
+21316,approach_path approach glide_path glide_slope,the final path followed by an aircraft as it is landing
+21317,approach_trench communication_trench,a trench that provides protected passage between the rear and front lines of a defensive position
+21318,approachability accessibility,the attribute of being easy to meet or deal with
+21319,approbation,official approval
+21320,approbation,official recognition or approval
+21321,appropriateness,the quality of being specially suitable
+21322,appropriateness rightness,appropriate conduct; doing the right thing
+21323,appropriation,money set aside (as by a legislature) for a specific purpose
+21324,appropriation,a deliberate act of acquisition of something, often without the permission of the owner; "the necessary funds were obtained by the government's appropriation of the company's operating unit"; "a person's appropriation of property belonging to another is dishonest"
+21325,appropriation_bill,a legislative act proposing to authorize the expenditure of public funds for a specified purpose
+21326,appropriator,someone who takes for his or her own use (especially without permission)
+21327,approval,a feeling of liking something or someone good; "although she fussed at them, she secretly viewed all her children with approval"
+21328,approval commendation,a message expressing a favorable opinion; "words of approval seldom passed his lips"
+21329,approval favorable_reception favourable_reception,acceptance as satisfactory; "he bought it on approval"
+21330,approver,an authority with power to approve
+21331,approximate_range ballpark,near to the scope or range of something; "his answer wasn't even in the right ballpark"
+21332,approximation,an imprecise or incomplete account; "newspapers gave only an approximation of the actual events"
+21333,approximation,the quality of coming near to identity (especially close in quantity)
+21334,approximation bringing_close_together,the act of bringing near or bringing together especially the cut edges of tissue
+21335,apraxia,inability to make purposeful movements
+21336,apricot,downy yellow to rosy-colored fruit resembling a small peach
+21337,apricot apricot_tree,Asian tree having clusters of usually white blossoms and edible fruit resembling the peach
+21338,apricot_bar,fruit bar containing apricot jam
+21339,apricot_sauce,for Chinese dishes: apricot preserves and chutney
+21340,apron,(golf) the part of the fairway leading onto the green
+21341,apron,a paved surface where aircraft stand while not being used
+21342,apron,a garment of cloth or leather or plastic that is tied about the waist and worn to protect your clothing
+21343,apron_string,(usually used in the plural) a cord used to tie an apron at the waist
+21344,apse apsis,a domed or vaulted recess or projection on a building especially the east end of a church; usually contains the altar
+21345,aptitude,inherent ability
+21346,aptness appositeness,appropriateness for the occasion; "the phrase had considerable aptness"
+21347,aptness propensity,a disposition to behave in a certain way; "the aptness of iron to rust"; "the propensity of disease to spread"
+21348,aqua_regia nitrohydrochloric_acid,a yellow fuming corrosive mixture of nitric and hydrochloric acid that dissolves metals (including gold)
+21349,aqua_vitae ardent_spirits,strong distilled liquor or brandy
+21350,aquaculture,rearing aquatic animals or cultivating aquatic plants for food
+21351,aqualung Aqua-Lung scuba,a device (trade name Aqua-Lung) that lets divers breathe under water; scuba is an acronym for self-contained underwater breathing apparatus
+21352,aquamarine,a transparent variety of beryl that is blue green in color
+21353,aquanaut oceanaut,a skilled worker who can live in underwater installations and participate in scientific research
+21354,aquaphobia,a morbid fear of drowning
+21355,aquaplane,a board that is pulled by a speedboat as a person stands on it and skims over the top of the water
+21356,aquarium fish_tank marine_museum,a tank or pool or bowl filled with water for keeping live fish and underwater animals
+21357,aquatic,a plant that lives in or on water
+21358,aquatic_bird,wading and swimming and diving birds of either fresh or salt water
+21359,aquatic_fern water_fern,ferns that grow in water
+21360,aquatic_mammal,whales and dolphins; manatees and dugongs; walruses; seals
+21361,aquatic_plant water_plant hydrophyte hydrophytic_plant,a plant that grows partly or wholly in water whether rooted in the mud, as a lotus, or floating without anchorage, as the water hyacinth
+21362,aquatic_vertebrate,animal living wholly or chiefly in or on water
+21363,aquatint,an etching made by a process that makes it resemble a water color
+21364,aquatint,a method of etching that imitates the broad washes of a water color
+21365,aquavit akvavit,Scandinavian liquor usually flavored with caraway seeds
+21366,aqueduct,a conduit that resembles a bridge but carries water over a valley
+21367,aqueous_humor aqueous_humour,the limpid fluid within the eyeball between the cornea and the lens
+21368,aqueous_solution,a solution in water
+21369,aquifer,underground bed or layer yielding ground water for wells and springs etc
+21370,arabesque,position in which the dancer has one leg raised behind and arms outstretched in a conventional pose
+21371,arabesque,an ornament that interlaces simulated foliage in an intricate design
+21372,arability,the quality of land that is appropriate for cultivation
+21373,arachnid arachnoid,air-breathing arthropods characterized by simple eyes and four pairs of legs
+21374,arachnoid arachnoid_membrane,the middle of the 3 meninges
+21375,arachnophobia,a morbid fear of spiders
+21376,aragonite,a mineral form of crystalline calcium carbonate; dimorphic with calcite
+21377,aralia,any of various plants of the genus Aralia; often aromatic plants having compound leaves and small umbellate flowers
+21378,arame,an edible seaweed with a mild flavor
+21379,arariba Centrolobium_robustum,Brazilian tree with handsomely marked wood
+21380,araroba Goa_powder chrysarobin,a bitter yellow powder used to treat skin diseases
+21381,araucaria,any of several tall South American or Australian trees with large cones and edible seeds
+21382,arbiter arbitrator umpire,someone chosen to judge and decide a disputed issue; "the critic was considered to be an arbiter of modern literature"; "the arbitrator's authority derived from the consent of the disputants"; "an umpire was appointed to settle the tax case"
+21383,arbiter supreme_authority,someone with the power to settle matters at will; "she was the final arbiter on all matters of fashion"
+21384,arbitrage,a kind of hedged investment meant to capture slight differences in price; when there is a difference in the price of something on two different markets the arbitrageur simultaneously buys at the lower price and sells at the higher price
+21385,arbitrageur arbitrager arb,someone who engages in arbitrage (who purchases securities in one market for immediate resale in another in the hope of profiting from the price differential)
+21386,arbitration,(law) the hearing and determination of a dispute by an impartial referee agreed to by both parties (often used to settle disputes between labor and management)
+21387,arbitration arbitrament arbitrement,the act of deciding as an arbiter; giving authoritative judgment; "they submitted their disagreement to arbitration"
+21388,arbitration_clause,a clause in a contract providing for arbitration of disputes arising under the contract
+21389,arbor,tree (as opposed to shrub)
+21390,arbor arbour bower pergola,a framework that supports climbing plants; "the arbor provided a shady resting place in the park"
+21391,arboreal_salamander Aneides_lugubris,yellow-spotted brown salamander of California woodlands
+21392,arborescent_plant,having the shape or characteristics of a tree
+21393,arboretum botanical_garden,a facility where trees and shrubs are cultivated for exhibition
+21394,arboriculture tree_farming,the tending of and caring for trees
+21395,arborolatry tree-worship,the worship of trees
+21396,arborvitae,any of several Asian and North American conifers of the genera Thuja and Thujopsis
+21397,arbovirus arborvirus,a large heterogeneous group of RNA viruses divisible into groups on the basis of the virions; they have been recovered from arthropods, bats, and rodents; most are borne by arthropods; they are linked by the epidemiologic concept of transmission between vertebrate hosts by arthropod vectors (mosquitoes, ticks, sandflies, midges, etc.) that feed on blood; they can cause mild fevers, hepatitis, hemorrhagic fever, and encephalitis
+21398,arbutus,any of several evergreen shrubs of the genus Arbutus of temperate Europe and America
+21399,arc,a continuous portion of a circle
+21400,arc_cosecant arccosecant inverse_cosecant,the angle that has a cosecant equal to a given number
+21401,arc_cosine arccosine arccos inverse_cosine,the inverse function of the cosine; the angle that has a cosine equal to a given number
+21402,arc_cotangent arccotangent inverse_cotangent,the inverse function of the cotangent; the angle that has a cotangent equal to a given number
+21403,arc_lamp arc_light,a lamp that produces light when electric current flows across the gap between two electrodes
+21404,arc_secant arcsecant arcsec inverse_secant,the inverse function of the secant; the angle that has a secant equal to a given number
+21405,arc_sine arcsine arcsin inverse_sine,the inverse function of the sine; the angle that has a sine equal to a given number
+21406,arc_tangent arctangent arctan inverse_tangent,the inverse function of the tangent; the angle that has a tangent equal to a given number
+21407,arcade,a covered passageway with shops and stalls on either side
+21408,arcade colonnade,a structure composed of a series of arches supported by columns
+21409,arcella,an amoeba-like protozoan with a chitinous shell resembling an umbrella
+21410,arch,a curved shape in the vertical plane that spans an opening
+21411,arch,a curved bony structure supporting or enclosing organs (especially the inner sides of the feet)
+21412,arch,(architecture) a masonry construction (usually curved) for spanning an opening and supporting the weight above it
+21413,arch archway,a passageway under a curved masonry construction; "they built a triumphal arch to memorialize their victory"
+21414,arch_support,a support for the arch of the foot
+21415,archaebacteria archaebacterium archaeobacteria archeobacteria,considered ancient life forms that evolved separately from bacteria and blue-green algae
+21416,archaeopteryx archeopteryx Archaeopteryx_lithographica,extinct primitive toothed bird of the Jurassic period having a long feathered tail and hollow bones; usually considered the most primitive of all birds
+21417,archaeornis,extinct primitive toothed bird with a long feathered tail and three free clawed digits on each wing
+21418,archaism archaicism,the use of an archaic expression
+21419,archaist,a person who archaizes
+21420,archangel,an angel ranked above the highest rank in the celestial hierarchy
+21421,archbishop,a bishop of highest rank
+21422,archbishopric,the territorial jurisdiction of an archbishop
+21423,archdeacon,(Anglican Church) an ecclesiastical dignitary usually ranking just below a bishop
+21424,archdeaconry,the territorial jurisdiction of an archdeacon
+21425,archdiocese,the diocese of an archbishop
+21426,archduchess,a wife or widow of an archduke or a princess of the former ruling house of Austria
+21427,archduchy,the domain controlled by an archduke or archduchess
+21428,archduke,a sovereign prince of the former ruling house of Austria
+21429,archegonium,a female sex organ occurring in mosses, ferns, and most gymnosperms
+21430,archenteron,central cavity of the gastrula; becomes the intestinal or digestive cavity
+21431,archeological_remains remains,a relic that has been excavated from the soil
+21432,archeologist archaeologist,an anthropologist who studies prehistoric people and their culture
+21433,archeology archaeology,the branch of anthropology that studies prehistoric people and their cultures
+21434,archer bowman,a person who is expert in the use of a bow and arrow
+21435,archerfish Toxotes_jaculatrix,any of several small freshwater fishes that catch insects by squirting water at them and knocking them into the water; found in Indonesia and Australia
+21436,archery,the sport of shooting arrows with a bow
+21437,archespore archesporium,primitive cell or group of cells from which a mother cell develops
+21438,archiannelid,small primitive marine worm lacking external segmentation and resembling polychaete larvae
+21439,archidiaconate,office or position of an archdeacon
+21440,archil orchil,any of various lecanoras that yield the dye archil
+21441,archine,a Russian unit of length (71 cm)
+21442,archipallium paleocortex,the olfactory cortex of the cerebrum
+21443,archipelago,a group of many islands in a large body of water
+21444,architect designer,someone who creates plans to be used in making something (such as buildings)
+21445,architectonics tectonics,the science of architecture
+21446,architectural_engineering,the branch of engineering that deals with the construction of buildings (as distinguished from architecture as a design art)
+21447,architectural_ornament,(architecture) something added to a building to improve its appearance
+21448,architectural_style style_of_architecture type_of_architecture,architecture as a kind of art form
+21449,architecture,the discipline dealing with the principles of design and construction and ornamentation of fine buildings; "architecture and eloquence are mixed arts whose end is sometimes beauty and sometimes use"
+21450,architecture,an architectural product or work
+21451,architecture,the profession of designing buildings and environments with consideration for their esthetic effect
+21452,architeuthis giant_squid,largest mollusk known about but never seen (to 60 feet long)
+21453,architrave,the molding around a door or window
+21454,architrave,the lowest part of an entablature; rests immediately on the capitals of the columns
+21455,archive,a depository containing historical records and documents
+21456,archives,collection of records especially about an institution
+21457,archivist,a person in charge of collecting and cataloguing archives
+21458,archosaur archosaurian archosaurian_reptile,extinct reptiles including: dinosaurs; plesiosaurs; pterosaurs; ichthyosaurs; thecodonts
+21459,archpriest hierarch high_priest prelate primate,a senior clergyman and dignitary
+21460,arctic galosh golosh rubber gumshoe,a waterproof overshoe that protects shoes from water or snow
+21461,arctic_willow Salix_arctica,low creeping shrub of Arctic Europe and America
+21462,arctiid arctiid_moth,stout-bodied broad-winged moth with conspicuously striped or spotted wings; larvae are hairy caterpillars
+21463,arcuate_artery arteria_arcuata,curved artery in the foot
+21464,arcuate_artery_of_the_kidney,curved arteries of the kidney
+21465,arcuate_vein_of_the_kidney vena_arcuata_renis,veins that receive blood from interlobular veins of kidney and rectal venules
+21466,arcus arcus_senilis,a whitish deposit in the shape of an arc that is sometimes seen in the cornea
+21467,ardeb,a unit of dry measure used in Egypt
+21468,ardor ardour,intense feeling of love
+21469,ardor ardour elan zeal,a feeling of strong eagerness (usually in favor of a person or cause); "they were imbued with a revolutionary ardor"; "he felt a kind of religious zeal"
+21470,ardor ardour fervor fervour fervency fire fervidness,feelings of great warmth and intensity; "he spoke with great ardor"
+21471,arduousness strenuousness,extreme effortfulness
+21472,are ar,a unit of surface area equal to 100 square meters
+21473,area,a subject of study; "it was his area of specialization"; "areas of interest include..."
+21474,area,a part of a structure having some specific characteristic or function; "the spacious cooking area provided plenty of room for servants"
+21475,area country,a particular geographical region of indefinite boundary (usually serving some special purpose or distinguished by its people or culture or geography); "it was a mountainous area"; "Bible country"
+21476,area expanse surface_area,the extent of a 2-dimensional surface enclosed within a boundary; "the area of a rectangle"; "it was about 500 square feet in area"
+21477,area region,a part of an animal that has a special function or is supplied by a given artery or nerve; "in the abdominal region"
+21478,area_code,a number usually of 3 digits assigned to a telephone area as in the United States and Canada
+21479,area_of_cardiac_dullness,a triangular area of the front of the chest (determined by percussion); corresponds to the part of the heart not covered by the lungs
+21480,area_unit square_measure,a system of units used to measure areas
+21481,areaway,a passageway between buildings or giving access to a basement
+21482,areca,any of several tall tropical palms native to southeastern Asia having egg-shaped nuts
+21483,areflexia,absence of a reflex; a sign of possible nerve damage
+21484,arena,the central area of an ancient Roman amphitheater where contests and spectacles were held; especially an area that was strewn with sand
+21485,arena scene_of_action,a playing field where sports events take place
+21486,arena_theater theater_in_the_round,a theater arranged with seats around at least three sides of the stage
+21487,arenaceous_rock,a sedimentary rock composed of sand
+21488,arenavirus,animal viruses belonging to the family Arenaviridae
+21489,areola,small space in a tissue or body part such as the area between veins on a leaf or an insect's wing
+21490,areola ring_of_color,small circular area such as that around the human nipple or an inflamed area around a pimple or insect bite
+21491,areolar_tissue,fibrous connective tissue with the fibers arranged in a mesh or net
+21492,arete,a sharp narrow ridge found in rugged mountains
+21493,arethusa,any of several bog orchids of the genus Arethusa having 1 or 2 showy flowers
+21494,argali argal Ovis_ammon,wild sheep of semidesert regions in central Asia
+21495,argent,a metal tincture used in heraldry to give a silvery appearance
+21496,argentine,any of various small silver-scaled salmon-like marine fishes
+21497,argentinosaur,huge herbivorous dinosaur of Cretaceous found in Argentina
+21498,argentite,a valuable silver ore consisting of silver sulfide (Ag2S)
+21499,argil,a white clay (especially a white clay used by potters)
+21500,argillaceous_rock,a sedimentary rock formed from clay deposits
+21501,argillite,a sedimentary rock differing from shale in being bound by silica and from slate in having no slate cleavages
+21502,arginine,a bitter tasting amino acid found in proteins and necessary for nutrition; its absence from the diet leads to a reduced production of spermatozoa
+21503,argon Ar atomic_number_18,a colorless and odorless inert gas; one of the six inert gases; comprises approximately 1% of the earth's atmosphere
+21504,argonaut,someone engaged in a dangerous but potentially rewarding adventure
+21505,argosy,one or more large merchant ships
+21506,argument,a variable in a logical or mathematical expression whose value determines the dependent variable; if f(x)=y, x is the independent variable
+21507,argument argumentation debate,a discussion in which reasons are advanced for and against some proposition or proposal; "the argument over foreign aid goes on and on"
+21508,argument literary_argument,a summary of the subject or plot of a literary work or play or movie; "the editor added the argument to the poem"
+21509,argument parameter,(computer science) a reference or value that is passed to a function, procedure, subroutine, command, or program
+21510,argument statement,a fact or assertion offered as evidence that something is true; "it was a strong argument that his hypothesis was true"
+21511,argumentation logical_argument argument line_of_reasoning line,a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning; "I can't follow your line of reasoning"
+21512,argus argus_pheasant,large brilliantly patterned East Indian pheasant
+21513,argy-bargy argle-bargle,a verbal dispute; a wrangling argument
+21514,argyle argyll,a design consisting of a pattern of varicolored diamonds on a solid background (originally for knitted articles); patterned after the tartan of a clan in western Scotland
+21515,argyle argyll,a sock knitted or woven with an argyle design (usually used in the plural)
+21516,argyll argyle,a covered gravy holder of silver or other metal containing a detachable central vessel for hot water to keep the gravy warm
+21517,argyrodite,a rare steel-grey mineral consisting of silver and germanium and sulfur
+21518,aria,an elaborate song for solo voice
+21519,arianist,an adherent of Arianism (the belief that Jesus Christ was not truly God)
+21520,aridity aridness thirstiness,a deficiency of moisture (especially when resulting from a permanent absence of rainfall)
+21521,arietta short_aria,a short aria
+21522,aril,fleshy and usually brightly colored cover of some seeds that develops from the ovule stalk and partially or entirely envelops the seed
+21523,arioso,(music) a short recitative that is melodic but is not an aria
+21524,arista,bristlelike process near the tip of the antenna of certain flies
+21525,aristocrat blue_blood patrician,a member of the aristocracy
+21526,arithmancy,divination by means of numbers
+21527,arithmetic,the branch of pure mathematics dealing with the theory of numerical calculations
+21528,arithmetic_mean first_moment expectation expected_value,the sum of the values of a random variable divided by the number of values
+21529,arithmetic_operation,a mathematical operation involving numbers
+21530,arithmetic_progression,(mathematics) a progression in which a constant is added to each term in order to obtain the next term; "1-4-7-10-13- is the start of an arithmetic progression"
+21531,arithmetician,someone who specializes in arithmetic
+21532,arity,the number of arguments that a function can take
+21533,ark,a boat built by Noah to save his family and animals from the flood
+21534,ark_shell,marine bivalve mollusk having a heavy toothed shell with a deep boat-like inner surface
+21535,arm,a human limb; technically the part of the superior limb between the shoulder and the elbow but commonly used to refer to the whole superior limb
+21536,arm,the part of an armchair or sofa that supports the elbow and forearm of a seated person
+21537,arm branch limb,any projection that is thought to resemble a human arm; "the arm of the record player"; "an arm of the sea"; "a branch of the sewer"
+21538,arm's_length,a distance sufficient to exclude intimacy
+21539,arm-twisting,persuasion by the use of direct personal pressure; "some gentle arm-twisting produced the desired result"; "no amount of arm-twisting will get me to agree"
+21540,arm_bone,a bone in the arm
+21541,arm_exercise,exercise designed to strengthen the arm muscles
+21542,arm_guard arm_pad,a pad worn by football players and hockey goalkeepers
+21543,armada,a large fleet
+21544,armadillo,burrowing chiefly nocturnal mammal with body covered with strong horny plates
+21545,armament,weaponry used by military or naval force
+21546,armamentarium,the collection of equipment and methods used in the practice of medicine
+21547,armature,coil in which voltage is induced by motion through a magnetic field
+21548,armband,worn around arm as identification or to indicate mourning
+21549,armband,a band worn around the upper arm
+21550,armchair,chair with a support on each side for arms
+21551,armchair_liberal,a person of liberal ideals who takes no action to realize them
+21552,armed_forces_censorship,military censorship of personal communications to or from persons in the armed forces
+21553,armed_robbery heist holdup stickup,robbery at gunpoint
+21554,armet,a medieval helmet with a visor and a neck guard
+21555,armful,the quantity that can be contained in the arms
+21556,armhole,a hole through which you put your arm and where a sleeve can be attached
+21557,armiger,a nobleman entitled to bear heraldic arms
+21558,armiger armor-bearer,a squire carrying the armor of a knight
+21559,armilla,(archeology) a bracelet worn around the wrist or arm
+21560,armillary_sphere armilla,a celestial globe consisting of metal hoops; used by early astronomers to determine the positions of stars
+21561,arming armament equipping,the act of equiping with weapons in preparation for war
+21562,armistice cease-fire truce,a state of peace agreed to between opponents so they can discuss peace terms
+21563,armlet arm_band,a band worn around the arm for decoration
+21564,armoire,a large wardrobe or cabinet; originally used for storing weapons
+21565,armor armour,a military unit consisting of armored fighting vehicles
+21566,armor armour,protective covering made of metal and used in combat
+21567,armor armour,tough more-or-less rigid protective covering of an animal or plant
+21568,armor_plate armour_plate armor_plating plate_armor plate_armour,specially hardened steel plate used to protect fortifications or vehicles from enemy fire
+21569,armored_car armoured_car,an armor-plated truck with strong doors and locks used to transport money or valuables; "the paintings were delivered to the museum in an air-conditioned armored car"
+21570,armored_car armoured_car,a military combat vehicle on wheels with light armor (and usually a machine gun)
+21571,armored_catfish,South American catfish having the body covered with bony plates
+21572,armored_dinosaur,dinosaurs having bony armour
+21573,armored_personnel_carrier armoured_personnel_carrier APC,(military) an armored vehicle (usually equipped with caterpillar treads) that is used to transport infantry
+21574,armored_scale,insect having a firm covering of wax especially in the female
+21575,armored_searobin armored_sea_robin Peristedion_miniatum,sea robins having bony scutes on the body and barbels on the chin; found mostly on the continental slope
+21576,armored_vehicle armoured_vehicle,a vehicle that is protected by armor plate
+21577,armorer armourer,a worker skilled in making armor or arms; "a sword made by a famous English armorer"
+21578,armorer armourer,a manufacturer of firearms
+21579,armorer armourer artificer,an enlisted man responsible for the upkeep of small arms and machine guns etc.
+21580,armory armoury arsenal,a place where arms are manufactured
+21581,armory armoury inventory,a collection of resources; "he dipped into his intellectual armory to find an answer"
+21582,armpit axilla axillary_cavity axillary_fossa,the hollow under the arm where it is joined to the shoulder; "they were up to their armpits in water"
+21583,armrest,a support for the arm
+21584,arms_control,a limitation on the size and armament of the armed forces of a country
+21585,arms_deal,a deal to provide military arms
+21586,arms_manufacturer,someone who manufactures arms and munitions
+21587,arms_race,a competition between nations to have the most powerful armaments
+21588,army,a large number of people united for some specific purpose
+21589,army regular_army ground_forces,a permanent organization of the military land forces of a nation or state
+21590,army_ant driver_ant legionary_ant,tropical nomadic ant that preys mainly on other insects
+21591,army_attache,a military attache who is a commissioned or warrant officer in an army
+21592,army_base,a large base of operations for an army
+21593,army_brat,the child of a career officer of the United States Army
+21594,army_cutworm Chorizagrotis_auxiliaris,larvae (of a noctuid moth) that travel in large groups and destroy grains and alfalfa in the midwestern states
+21595,army_engineer military_engineer,a member of the military who is trained in engineering and construction work
+21596,army_officer,an officer in the armed forces; "he's a retired army officer"
+21597,army_unit,a military unit that is part of an army
+21598,armyworm,larva of fungus gnat that feed on cereals and other grains; they march in large companies in regular order when the food is exhausted
+21599,armyworm Pseudaletia_unipuncta,moth whose destructive larvae travel in multitudes
+21600,armyworm army_worm Pseudaletia_unipuncta,noctuid moth larvae that travel in multitudes destroying especially grass and grain
+21601,arnica,used especially in treating bruises
+21602,arnica,any of various rhizomatous usually perennial plants of the genus Arnica
+21603,arnica,an ointment used in treating bruises
+21604,aroeira_blanca Schinus_chichita,small resinous tree or shrub of Brazil
+21605,aroma fragrance perfume scent,a distinctive odor that is pleasant
+21606,aromatherapy,the therapeutic use of aromatic plant extracts and essential oils in baths or massage
+21607,aromatic_aster,a variety of aster
+21608,aromatic_compound,a hydrocarbon containing one or more benzene rings that are characteristic of the benzene series of compounds
+21609,aromatic_hydrocarbon,a hydrocarbon that contains one or more benzene rings that are characteristic of the benzene series of organic compounds
+21610,arousal,a state of heightened physiological activity
+21611,arousal,awakening from sleep
+21612,arousal rousing,the act of arousing; "the purpose of art is the arousal of emotions"
+21613,arpeggio,a chord whose notes are played in rapid succession rather than simultaneously
+21614,arpent,a former French unit of area; equal approximately to an acre
+21615,arquebus harquebus hackbut hagbut,an obsolete firearm with a long barrel
+21616,arrack arak,any of various strong liquors distilled from the fermented sap of toddy palms or from fermented molasses
+21617,arraignment,a legal document calling someone to court to answer an indictment
+21618,arrangement,an orderly grouping (of things or persons) considered as a unit; the result of arranging; "a flower arrangement"
+21619,arrangement arranging transcription,the act of arranging and adapting a piece of music
+21620,arrangement organization organisation system,an organized structure for arranging or classifying; "he changed the arrangement of the topics"; "the facts were familiar but it was in the organization of them that he was original"; "he tried to understand their system of classification"
+21621,arranger adapter transcriber,a musician who adapts a composition for particular voices or instruments or for another style of performance
+21622,array,an orderly arrangement; "an array of troops in battle order"
+21623,array,an impressive display; "it was a bewildering array of books"; "his tools were in an orderly array on the basement wall"
+21624,array,an arrangement of aerials spaced to give desired directional characteristics
+21625,array raiment regalia,especially fine or decorative clothing
+21626,arrears,the state of being behind in payments; "an account in arrears"
+21627,arrears,an unpaid overdue debt
+21628,arrest check halt hitch stay stop stoppage,the state of inactivity following an interruption; "the negotiations were in arrest"; "held them in check"; "during the halt he got some lunch"; "the momentary stay enabled him to escape the blow"; "he spent the entire stop in his seat"
+21629,arrested_development fixation infantile_fixation regression,an abnormal state in which development has stopped prematurely
+21630,arrester arrester_hook,a restraint that slows airplanes as they land on the flight deck of an aircraft carrier
+21631,arrival,the act of arriving at a certain place; "they awaited her arrival"
+21632,arrival arriver comer,someone who arrives (or has arrived)
+21633,arrival reaching,accomplishment of an objective
+21634,arrival_gate,gate where passengers disembark
+21635,arrival_time time_of_arrival,the time at which a public conveyance is scheduled to arrive at a given destination
+21636,arroba,a unit of weight used in some Spanish speaking countries
+21637,arroba,a liquid measure (with different values) used in some Spanish speaking countries
+21638,arrogance haughtiness hauteur high-handedness lordliness,overbearing pride evidenced by a superior manner toward inferiors
+21639,arrogator,a person who through conceit makes pretentious claims to rights or advantages that he or she is not entitled to or to qualities that he or she does not possess
+21640,arrow,a projectile with a straight thin shaft and an arrowhead on one end and stabilizing vanes on the other; intended to be shot from a bow
+21641,arrow pointer,a mark to indicate a direction or relation
+21642,arrow_arum,an aquatic plant of the genus Peltandra; North America
+21643,arrow_grass Triglochin_maritima,tufted perennial found in shallow water or marshland; sometimes poisons livestock
+21644,arrow_leaved_aster,a variety of aster
+21645,arrow_wood Viburnum_recognitum,closely related to southern arrow wood; grows in the eastern United States from Maine to Ohio and Georgia
+21646,arrow_wood southern_arrow_wood Viburnum_dentatum,deciduous shrub of eastern North America having blue-black berries and tough pliant wood formerly used to make arrows
+21647,arrowhead,the pointed head or striking tip of an arrow
+21648,arrowleaf_groundsel Senecio_triangularis,perennial with sharply toothed triangular leaves on leafy stems bearing a cluster of yellow flower heads; moist places in mountains of western North America
+21649,arrowroot,a nutritive starch obtained from the root of the arrowroot plant
+21650,arrowroot American_arrowroot obedience_plant Maranta_arundinaceae,white-flowered West Indian plant whose root yields arrowroot starch
+21651,arrowsmith,a maker of arrows
+21652,arrowworm chaetognath,any worm of the Chaetognatha; transparent marine worm with horizontal lateral and caudal fins and a row of movable curved spines at each side of the mouth
+21653,arroyo,a stream or brook
+21654,arroyo_willow Salix_lasiolepis,shrubby willow of the western United States
+21655,arroz_con_pollo,rice and chicken cooked together Spanish style; highly seasoned especially with saffron
+21656,arse arsehole asshole bunghole,vulgar slang for anus
+21657,arsenal armory armoury,all the weapons and equipment that a country has
+21658,arsenal armory armoury,a military structure where arms and ammunition and other military equipment are stored and training is given in the use of arms
+21659,arsenate,a salt or ester of arsenic acid
+21660,arsenic As atomic_number_33,a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar
+21661,arsenic arsenic_trioxide arsenous_anhydride arsenous_oxide white_arsenic ratsbane,a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer
+21662,arsenic_acid,an acid formed from arsenic pentoxide
+21663,arsenical,a pesticide or drug containing arsenic
+21664,arsenide,a compound of arsenic with a more positive element
+21665,arsenopyrite mispickel,a silver-white or grey ore of arsenic
+21666,arsine,a poisonous colorless flammable gas used in organic synthesis and to dope transistors and as a poison gas in warfare
+21667,arson incendiarism fire-raising,malicious burning to destroy property; "the British term for arson is fire-raising"
+21668,arsonist incendiary firebug,a criminal who illegally sets fire to property
+21669,art artistic_creation artistic_production,the creation of beautiful or significant things; "art does not need to be innovative to be good"; "I was never any good at art"; "he said that architecture is the art of wasting space beautifully"
+21670,art artistry prowess,a superior skill that you can learn by study and practice and observation; "the art of conversation"; "it's quite an art"
+21671,art fine_art,the products of human creativity; works of art collectively; "an art exhibition"; "a collection of fine art"
+21672,art_class,a class in which you learn to draw or paint
+21673,art_collection,a collection of art works
+21674,art_critic,a critic of paintings
+21675,art_dealer,a dealer in works of art requiring esthetic evaluation
+21676,art_department,the academic department responsible for teaching art and art appreciation
+21677,art_director,the director in charge of the artistic features of a theatrical production (costumes and scenery and lighting)
+21678,art_editor,an editor who is responsible for illustrations and layouts in printed matter
+21679,art_exhibition,an exhibition of art objects (paintings or statues)
+21680,art_form,(architecture) a form of artistic expression (such as writing or painting or architecture)
+21681,art_historian,a historian of art
+21682,art_history,the academic discipline that studies the development of painting and sculpture
+21683,art_nouveau,a French school of art and architecture popular in the 1890s; characterized by stylized natural forms and sinuous outlines of such objects as leaves and vines and flowers
+21684,art_paper,a high-quality paper (usually having a filler of china clay)
+21685,art_school,a school specializing in art
+21686,art_student,someone studying to be an artist
+21687,art_teacher,someone who teaches art
+21688,artemisia,any of various composite shrubs or herbs of the genus Artemisia having aromatic green or greyish foliage
+21689,arterial_blood,blood found in arteries; "except for the pulmonary artery the arterial blood is rich in oxygen"
+21690,arterial_blood_gases,measurement of the pH level and the oxygen and carbon dioxide concentrations in arterial blood; important in diagnosis of many respiratory diseases
+21691,arterial_plaque,a fatty deposit inside an arterial wall; characteristic of atherosclerosis
+21692,arterial_pressure,the pressure of the circulating blood on the arteries; "arterial pressure is the product of cardiac output and vascular resistance"
+21693,arterial_road,a major or main route
+21694,arteriectasis arteriectasia,an abnormal distension of an artery
+21695,arteriogram,an X ray of an artery filled with a contrast medium
+21696,arteriography,roentgenographic examination of arteries
+21697,arteriole arteriola capillary_artery,one of the small thin-walled arteries that end in capillaries
+21698,arteriolosclerosis,sclerosis of the arterioles
+21699,arteriosclerosis arterial_sclerosis hardening_of_the_arteries induration_of_the_arteries coronary-artery_disease,sclerosis of the arterial walls
+21700,arteriosclerosis_obliterans,a stage of arteriosclerosis involving closure of blood vessels
+21701,arteritis,inflammation of an artery
+21702,artery,a major thoroughfare that bears important traffic
+21703,artery arteria arterial_blood_vessel,a blood vessel that carries blood from the heart to the body
+21704,artery_of_the_penis_bulb arteria_bulbi_penis,a branch of the internal pudendal artery of males that supplies the bulb of the penis
+21705,artery_of_the_vestibule_bulb arteria_bulbi_vestibuli,a branch of the internal pudendal artery in females that supplies the bulb of the vestibule
+21706,artesian_well,a well drilled through impermeable strata into strata that receive water from a higher altitude so there is pressure to force the water to flow upward
+21707,artfulness,the quality of being adroit in taking unfair advantage
+21708,arthralgia,pain in a joint or joints
+21709,arthritic,a person afflicted with arthritis; "the hands of an elderly arthritic"
+21710,arthritis,inflammation of a joint or joints
+21711,arthrocentesis,removal of fluid from a joint by centesis
+21712,arthrodesis,the surgical fixation of a joint which is intended to result in bone fusion
+21713,arthrogram,an X ray of a joint after the injection of a contrast medium
+21714,arthrography,roentgenographic examination of a joint after injection of radiopaque contrast medium; produces an arthrogram
+21715,arthromere,any of the segments in the body of a jointed animal like an arthropod
+21716,arthropathy,a pathology or abnormality of a joint
+21717,arthroplasty,surgical reconstruction or replacement of a malformed or degenerated joint
+21718,arthropod,invertebrate having jointed limbs and a segmented body with an exoskeleton made of chitin
+21719,arthropod_family,any of the arthropods
+21720,arthropod_genus,a genus of arthropods
+21721,arthroscope,a type of endoscope that is inserted into a joint for visual examination
+21722,arthroscopy,a minimally invasive operation to repair a damaged joint; the surgeon examines the joint with an arthroscope while making repairs through a small incision
+21723,arthrospore,a body that resembles a spore but is not an endospore; produced by some bacteria
+21724,arthrospore,one of a string of thick walled vegetative resting cells formed by some algae and fungi
+21725,artichoke globe_artichoke,a thistlelike flower head with edible fleshy leaves and heart
+21726,artichoke globe_artichoke artichoke_plant Cynara_scolymus,Mediterranean thistlelike plant widely cultivated for its large edible flower head
+21727,artichoke_heart,the tender fleshy center of the immature artichoke flower
+21728,article,(grammar) a determiner that may indicate the specificity of reference of a noun phrase
+21729,article,nonfictional prose forming an independent part of a publication
+21730,article,one of a class of artifacts; "an article of clothing"
+21731,article clause,a separate section of a legal document (as a statute or contract or will)
+21732,article_of_commerce,an article that is offered for sale
+21733,article_of_faith credendum,(Christianity) any of the sections into which a creed or other statement of doctrine is divided
+21734,articles_of_agreement shipping_articles,a contract between crew and captain of a ship
+21735,articles_of_incorporation,a legal document that creates a corporation; it is filed with a state by the founders of a corporation and is governed by the laws of the state
+21736,articular_muscle,a muscle that inserts directly onto the capsule of a joint
+21737,articulated_ladder,a ladder consisting of segments (usually four) that are held together by joints that can lock in place
+21738,articulation,the aspect of pronunciation that involves bringing articulatory organs together so as to shape the sounds of speech
+21739,articulation,the act of joining things in such a way that motion is possible
+21740,articulation join joint juncture junction,the shape or manner in which things come together and a connection is made
+21741,articulation voice,expressing in coherent verbal form; "the articulation of my feelings"; "I gave voice to my feelings"
+21742,articulator,someone who pronounces words
+21743,articulator,a movable speech organ
+21744,articulatory_system,the system of joints in the body
+21745,artifact artefact,a man-made object taken as a whole
+21746,artificial_blood,a liquid that can carry large amounts of oxygen and can serve as a temporary substitute for blood
+21747,artificial_flower,a handmade imitation of a blossom
+21748,artificial_heart,a pump that replaces the natural heart
+21749,artificial_horizon gyro_horizon flight_indicator,a navigational instrument based on a gyroscope; it artificially provides a simulated horizon for the pilot
+21750,artificial_insemination AI,the introduction of semen into the oviduct or uterus by some means other than sexual intercourse
+21751,artificial_intelligence AI,the branch of computer science that deal with writing computer programs that can solve problems creatively; "workers in AI hope to imitate or duplicate intelligence in computers and robots"
+21752,artificial_joint,a metal or plastic part that is surgically implanted to replace a natural joint (possibly elbow or wrist but usually hip or knee)
+21753,artificial_kidney hemodialyzer,a machine that uses dialysis to remove impurities and waste products from the bloodstream before returning the blood to the patient's body
+21754,artificial_language,a language that is deliberately created for a specific purpose
+21755,artificial_respiration,an emergency procedure whereby breathing is maintained artificially
+21756,artificial_skin,a synthetic covering with two layers used experimentally to treat burn victims
+21757,artificiality,the quality of being produced by people and not occurring naturally
+21758,artillery artillery_unit,an army unit that uses big guns
+21759,artillery heavy_weapon gun ordnance,large but transportable armament
+21760,artillery_fire cannon_fire,fire delivered by artillery
+21761,artillery_plant Pilea_microphylla,tropical American stingless nettle that discharges its pollen explosively
+21762,artillery_shell,a shell fired by artillery
+21763,artilleryman cannoneer gunner machine_gunner,a serviceman in the artillery
+21764,artisan's_lien,lien permitting an artisan to retain possession of a piece of work until has been paid for
+21765,artist creative_person,a person whose creative work shows sensitivity and imagination
+21766,artist's_loft,a factory loft that has been converted into an artist's workroom and living area
+21767,artist's_model sitter,a person who poses for a painter or sculptor
+21768,artist's_workroom atelier,a studio especially for an artist or designer
+21769,artiste,a public performer (a dancer or singer)
+21770,artistic_movement art_movement,a group of artists who agree on general principles
+21771,artistic_style idiom,the style of a particular artist or school or movement; "an imaginative orchestral idiom"
+21772,artlessness,ingenuousness by virtue of being free from artful deceit
+21773,artlessness innocence ingenuousness naturalness,the quality of innocent naivete
+21774,arts_and_crafts,the arts of decorative design and handicraft; "they sponsored arts and crafts in order to encourage craftsmanship in an age of mass production"
+21775,artwork art graphics nontextual_matter,photographs or other visual representations in a printed publication; "the publisher was responsible for all the artwork in the book"
+21776,arum,starch resembling sago that is obtained from cuckoopint root
+21777,arum aroid,any plant of the family Araceae; have small flowers massed on a spadix surrounded by a large spathe
+21778,arytenoid arytaenoid arytenoid_cartilage,either of two small cartilages at the back of the larynx to which the vocal folds are attached
+21779,asafetida asafoetida,the brownish gum resin of various plants; has strong taste and odor; formerly used as an antispasmodic
+21780,asana,(Hinduism) a posture or manner of sitting (as in the practice of yoga)
+21781,asarabacca Asarum_europaeum,thick creeping evergreen herb of western Europe
+21782,asbestos,a fibrous amphibole; used for making fireproof articles; inhaling fibers can cause asbestosis or lung cancer
+21783,asbestos_abatement,the removal of asbestos from a public building
+21784,asbestosis,lung disease caused by inhaling asbestos particles
+21785,ascariasis,infestation of the human intestine with Ascaris roundworms
+21786,ascendant ascendent,position or state of being dominant or in control; "that idea was in the ascendant"
+21787,ascender,someone who ascends
+21788,ascender,a lowercase letter that has a part extending above other lowercase letters
+21789,ascender,(printing) the part of tall lowercase letters that extends above the other lowercase letters
+21790,ascending_aorta,the ascending part of the aorta as it emerges from the left ventricle
+21791,ascending_artery arteria_ascendens,the branch of the ileocolic artery that supplies the ascending colon
+21792,ascending_colon,the part of the large intestine that ascends from the cecum to the transverse colon
+21793,ascending_node,the point at which an orbit crosses the ecliptic plane going north
+21794,ascension,(astronomy) the rising of a star above the horizon
+21795,ascent acclivity rise raise climb upgrade,an upward slope or grade (as in a road); "the car couldn't make it up the rise"
+21796,asceticism,the doctrine that through renunciation of worldly pleasures it is possible to achieve a high spiritual or intellectual state
+21797,asceticism ascesis,rigorous self-denial and active self-restraint
+21798,ascidian,minute sedentary marine invertebrate having a saclike body with siphons through which water enters and leaves
+21799,ascidian_tadpole,free-swimming larva of ascidians; they have a tail like a tadpole that contains the notochord
+21800,ascites,accumulation of serous fluid in peritoneal cavity
+21801,asclepiad,any plant of the family Asclepiadaceae
+21802,ascocarp,mature fruiting body of an ascomycetous fungus
+21803,ascolichen,a lichen in which the fungus component is an ascomycete
+21804,ascoma,an ascocarp having the spore-bearing layer of cells (the hymenium) on a broad disklike receptacle
+21805,ascomycete ascomycetous_fungus,any fungus of the class Ascomycetes (or subdivision Ascomycota) in which the spores are formed inside an ascus
+21806,ascospore,sexually produced fungal spore formed within an ascus
+21807,ascot,a cravat with wide square ends; secured with an ornamental pin
+21808,ascus,saclike structure in which ascospores are formed through sexual reproduction of ascomycetes
+21809,asepsis antisepsis sterility sterileness,(of non-living objects) the state of being free of pathogenic organisms
+21810,asexual_reproduction agamogenesis,reproduction without the fusion of gametes
+21811,asexuality sexlessness,having no evident sex or sex organs
+21812,ash,the residue that remains when something is burned
+21813,ash,strong elastic wood of any of various ash trees; used for furniture and tool handles and sporting goods such as baseball bats
+21814,ash ash_tree,any of various deciduous pinnate-leaved ornamental or timber trees of the genus Fraxinus
+21815,ash-key,winged seed of the ash tree
+21816,ash-pan,a receptacle fitted beneath the grate in which ashes collect and are removed
+21817,ash_grey ash_gray silver silver_grey silver_gray,a light shade of grey
+21818,ashcake ash_cake corn_tash,corn bread wrapped in cabbage leaves and baked in hot ashes (southern)
+21819,ashcan trash_can garbage_can wastebin ash_bin ash-bin ashbin dustbin trash_barrel trash_bin,a bin that holds rubbish until it is collected
+21820,ashlar,a rectangular block of hewn stone used for building purposes
+21821,ashram,a place of religious retreat modeled after the Indian ashram
+21822,ashram,(India) a place of religious retreat for Hindus
+21823,ashtray,a receptacle for the ash from smokers' cigars or cigarettes
+21824,aside,a line spoken by an actor to the audience but not intended for others on the stage
+21825,asininity,the quality of being asinine; stupidity combined with stubbornness
+21826,asking_price selling_price,the price at which something is offered for sale
+21827,asp Egyptian_cobra Naja_haje,cobra used by the Pharaohs as a symbol of their power over life and death
+21828,asp asp_viper Vipera_aspis,of southern Europe; similar to but smaller than the adder
+21829,asparaginase Elspar,antineoplastic drug (trade name Elspar) sometimes used to treat lymphoblastic leukemia
+21830,asparagine,a crystalline amino acid found in proteins and in many plants (e.g., asparagus)
+21831,asparagus,edible young shoots of the asparagus plant
+21832,asparagus edible_asparagus Asparagus_officinales,plant whose succulent young shoots are cooked and eaten as a vegetable
+21833,asparagus_bean yard-long_bean Vigna_unguiculata_sesquipedalis Vigna_sesquipedalis,South American bean having very long succulent pods
+21834,asparagus_bed,a bed in which asparagus is growing
+21835,asparagus_fern Asparagus_setaceous Asparagus_plumosus,a fernlike plant native to South Africa
+21836,aspartame,an artificial sweetener made from aspartic acid; used as a calorie-free sweetener
+21837,aspartic_acid,a crystalline amino acid found in proteins and occurring naturally in sugar beets and sugar cane
+21838,aspect,the beginning or duration or completion or repetition of the action of a verb
+21839,aspect,a characteristic to be considered
+21840,aspect facet,a distinct feature or element in a problem; "he studied every facet of the question"
+21841,aspect_ratio,the ratio of the width to the height of a tv picture
+21842,aspen,any of several trees of the genus Populus having leaves on flattened stalks so that they flutter in the lightest wind
+21843,asper,20 aspers equal 1 kurus in Turkey
+21844,aspergill aspersorium,a short-handled device with a globe containing a sponge; used for sprinkling holy water
+21845,aspergillosis,an opportunistic infection by a fungus of the genus Aspergillus; characterized by inflammation and lesions of the ear and other organs
+21846,aspergillosis,disease especially in agricultural workers caused by inhalation of Aspergillus spores causing lumps in skin and ears and respiratory organs
+21847,aspergillosis brooder_pneumonia,severe respiratory disease of birds that takes the form of an acute rapidly fatal pneumonia in young chickens and turkeys
+21848,asperity grimness hardship rigor rigour severity severeness rigorousness rigourousness,something hard to endure; "the asperity of northern winters"
+21849,asperity sharpness,harshness of manner
+21850,aspersion calumny slander defamation denigration,an abusive attack on a person's character or good name
+21851,aspersion slur,a disparaging remark; "in the 19th century any reference to female sexuality was considered a vile aspersion"; "it is difficult for a woman to understand a man's sensitivity to any slur on his virility"
+21852,aspersion sprinkling,the act of sprinkling water in baptism (rare)
+21853,aspersorium,the basin or other vessel that holds holy water in Roman Catholic Churches
+21854,asphalt,mixed asphalt and crushed gravel or sand; used especially for paving but also for roofing
+21855,asphalt mineral_pitch,a dark bituminous substance found in natural beds and as residue from petroleum distillation; consists mainly of hydrocarbons
+21856,asphodel,any of various chiefly Mediterranean plants of the genera Asphodeline and Asphodelus having linear leaves and racemes of white or pink or yellow flowers
+21857,asphyxia,a condition in which insufficient or no oxygen and carbon dioxide are exchanged on a ventilatory basis; caused by choking or drowning or electric shock or poison gas
+21858,aspic,savory jelly based on fish or meat stock used as a mold for meats or vegetables
+21859,aspidistra cast-iron_plant bar-room_plant Aspidistra_elatio,evergreen perennial with large handsome basal leaves; grown primarily as a foliage houseplant
+21860,aspirant aspirer hopeful wannabe wannabee,an ambitious and aspiring young person; "a lofty aspirant"; "two executive hopefuls joined the firm"; "the audience was full of Madonna wannabes"
+21861,aspirate,a consonant pronounced with aspiration
+21862,aspiration,a manner of articulation involving an audible release of breath
+21863,aspiration,a will to succeed
+21864,aspiration_pneumonia,inflammation of the lungs caused by inhaling or choking on vomitus; may occur during unconsciousness (anesthesia or drunkenness or seizure or cardiac arrest)
+21865,aspirator,a pump that draws air or another gas through a liquid
+21866,aspirin acetylsalicylic_acid Bayer Empirin St._Joseph,the acetylated derivative of salicylic acid; used as an analgesic anti-inflammatory drug (trade names Bayer, Empirin, and St. Joseph) usually taken in tablet form; used as an antipyretic; slows clotting of the blood by poisoning platelets
+21867,aspirin_powder headache_powder,a powdered form of aspirin
+21868,ass,a pompous fool
+21869,ass,hardy and sure-footed animal smaller and with longer ears than the horse
+21870,assailability,vulnerability to forceful attack
+21871,assassin,a member of a secret order of Muslims (founded in the 12th century) who terrorized and killed Christian Crusaders
+21872,assassin assassinator bravo,a murderer (especially one who kills a prominent political figure) who kills by a surprise attack and often is hired to do the deed; "his assassins were hunted down like animals"; "assassinators of kings and emperors"
+21873,assassin_bug reduviid,a true bug: long-legged predacious bug living mostly on other insects; a few suck blood of mammals
+21874,assassination,murder of a public figure by surprise attack
+21875,assault,close fighting during the culmination of a military attack
+21876,assault,a threatened or attempted physical attack by someone who appears to be able to cause bodily harm if not stopped
+21877,assault_gun,an armored vehicle with the chassis of a tank (but no turret) and a large gun; used as an antitank weapon and to support infantry
+21878,assault_rifle assault_gun,any of the automatic rifles or semiautomatic rifles with large magazines designed for military use
+21879,assay,a substance that is undergoing an analysis of its components
+21880,assay,a written report of the results of an analysis of the composition of some substance
+21881,assay,a quantitative or qualitative test of a substance (especially an ore or a drug) to determine its components; frequently used to test for the presence or concentration of infectious agents or antibodies etc.
+21882,assay check,an appraisal of the state of affairs; "they made an assay of the contents"; "a check on its dependability under stress"
+21883,assayer,an analyst who assays (performs chemical tests on) metals
+21884,assegai assagai,the slender spear of the Bantu-speaking people of Africa
+21885,assembler assembly_program,a program to convert assembly language into machine language
+21886,assembly,a group of persons who are gathered together for a common purpose
+21887,assembly,a unit consisting of components that have been fitted together
+21888,assembly,a group of machine parts that fit together to form a self-contained unit
+21889,assembly assemblage gathering,the social act of assembling; "they demanded the right of assembly"
+21890,assembly_hall,a hall where many people can congregate
+21891,assembly_language,a low-level programing language; close approximation to machine language
+21892,assembly_plant,a factory where manufactured parts are assembled into a finished product
+21893,assemblyman,someone who is a member of a legislative assembly
+21894,assemblywoman,a woman assemblyman
+21895,assent acquiescence,agreement with a statement or proposal to do something; "he gave his assent eagerly"; "a murmur of acquiescence from the assembly"
+21896,assenter,a person who assents
+21897,asserter declarer affirmer asseverator avower,someone who claims to speak the truth; "a bold asserter"; "a declarer of his intentions"; "affirmers of traditional doctrine"; "an asseverator of strong convictions"; "an avower of his own great intelligence"
+21898,assertion averment asseveration,a declaration that is made emphatically (as if no supporting evidence were necessary)
+21899,assertiveness self-assertiveness,aggressive self-assurance; given to making bold assertions
+21900,assertiveness_training,a method of psychotherapy that reinforces you for stating negative and positive feelings directly
+21901,assessee,a person (or property) that is assessed
+21902,assessment,an amount determined as payable; "the assessment for repairs outraged the club's membership"
+21903,assessment,the market value set on assets
+21904,asset plus,a useful or valuable quality
+21905,assets,anything of material value or usefulness that is owned by a person or company
+21906,asshole bastard cocksucker dickhead shit mother_fucker motherfucker prick whoreson son_of_a_bitch SOB,insulting terms of address for people who are stupid or irritating or ridiculous
+21907,assibilation,the development of a consonant phoneme into a sibilant
+21908,assiduity assiduousness concentration,great and constant diligence and attention
+21909,assignation tryst,a secret rendezvous (especially between lovers)
+21910,assignee,(law) the party to whom something is assigned (e.g., someone to whom a right or property is legally transferred)
+21911,assignment,the instrument by which a claim or right or interest or property is transferred from one person to another
+21912,assignment,an undertaking that you have been assigned to do (as by an instructor)
+21913,assignment assigning,the act of distributing something to designated places or persons; "the first task is the assignment of an address to each datum"
+21914,assignment duty_assignment,a duty that you are assigned to perform (especially in the armed forces); "hazardous duty"
+21915,assignor,(law) the party who makes an assignment
+21916,assimilation,the state of being assimilated; people of different backgrounds come to see themselves as part of a larger national family
+21917,assimilation,a linguistic process by which a sound becomes similar to an adjacent sound
+21918,assimilation,in the theories of Jean Piaget: the application of a general schema to a particular instance
+21919,assimilation absorption,the social process of absorbing one cultural group into harmony with another
+21920,assimilation absorption,the process of absorbing nutrients into the body after digestion
+21921,assist,(sports) the act of enabling another player to make a good play
+21922,assistant helper help supporter,a person who contributes to the fulfillment of a need or furtherance of an effort or purpose; "my invaluable assistant"; "they hired additional help to finish the work"
+21923,assistant_professor,a teacher or lower rank than an associate professor
+21924,assisted_suicide,suicide of a terminally ill person that involves an assistant who serves to make dying as painless and dignified as possible
+21925,assize,the regulation of weights and measures of articles offered for sale
+21926,assize,an ancient writ issued by a court of assize to the sheriff for the recovery of property
+21927,assizes court_of_assize court_of_assize_and_nisi_prius,the county courts of England (replaced in 1971 by Crown courts)
+21928,associability associableness,the capability of being easily associated or joined or connected in thought
+21929,associate,a person with subordinate membership in a society, institution, or commercial enterprise; "associates in the law firm bill at a lower rate than do partners"
+21930,associate,a person who joins with others in some activity or endeavor; "he had to consult his associate before continuing"
+21931,associate,any event that usually accompanies or is closely connected with another; "first was the lightning and then its thunderous associate"
+21932,associate_degree associate,a degree granted by a two-year college on successful completion of the undergraduates course of studies
+21933,associate_professor,a teacher lower in rank than a full professor but higher than an assistant professor
+21934,associateship,the position of associate (as in an office or academy)
+21935,association,the state of being connected together as in memory or imagination; "his association of his father with being beaten was too strong to break"
+21936,association,a relation resulting from interaction or dependence; "flints were found in association with the prehistoric remains of the bear"; "the host is not always injured by association with a parasite"
+21937,association,(chemistry) any process of combination (especially in solution) that depends on relatively weak chemical bonding
+21938,association,a formal organization of people or groups of people; "he joined the Modern Language Association"
+21939,association,(ecology) a group of organisms (plants and animals) that live together in a certain geographical region and constitute a community with a few dominant species
+21940,association,the act of consorting with or joining with others; "you cannot be convicted of criminal guilt by association"
+21941,association connection connexion,the process of bringing ideas or events together in memory or imagination; "conditioning is a form of learning by association"
+21942,association_area association_cortex,cortical areas that are neither motor or sensory but are thought to be involved in higher processing of information
+21943,associationism association_theory,(psychology) a theory that association is the basic principle of mental activity
+21944,assonance vowel_rhyme,the repetition of similar vowels in the stressed syllables of successive words
+21945,assortative_mating,mating of individuals having more traits in common than likely in random mating
+21946,assortment mixture mixed_bag miscellany miscellanea variety salmagundi smorgasbord potpourri motley,a collection containing a variety of sorts of things; "a great assortment of cars was on display"; "he had a variety of disorders"; "a veritable smorgasbord of religions"
+21947,assumed_name fictitious_name Doing_Business_As DBA,(law) a name under which a corporation conducts business that is not the legal name of the corporation as shown in its articles of incorporation
+21948,assumption,the act of assuming or taking for granted; "your assumption that I would agree was unwarranted"
+21949,assumption laying_claim,the act of taking possession of or power over something; "his assumption of office coincided with the trouble in Cuba"; "the Nazi assumption of power in 1934"; "he acquired all the company's assets for ten million dollars and the assumption of the company's debts"
+21950,assumption supposition supposal,a hypothesis that is taken for granted; "any society is built upon certain assumptions"
+21951,assurance,a British term for some kinds of insurance
+21952,assurance,a statement intended to inspire confidence; "the President's assurances were not respected"
+21953,assurance pledge,a binding commitment to do or give or refrain from something; "an assurance of help when needed"; "signed a pledge never to reveal the secret"
+21954,assurance self-assurance confidence self-confidence authority sureness,freedom from doubt; belief in yourself and your abilities; "his assurance in his superiority did not make him popular"; "after that failure he lost his confidence"; "she spoke with authority"
+21955,astasia,inability to stand due to muscular incoordination
+21956,astatic_coils,an arrangement of coils used in sensitive electrical instruments; the coils are arranged to give zero resultant external magnetic field when a current passes through them and to have zero electromotive force induced in them by an external magnetic field
+21957,astatic_galvanometer,has a moving magnet and astatic coils arranged to cancel the effect of the Earth's magnetic field
+21958,astatine At atomic_number_85,a highly unstable radioactive element (the heaviest of the halogen series); a decay product of uranium and thorium
+21959,aster,any of various chiefly fall-blooming herbs of the genus Aster with showy daisylike flowers
+21960,aster,star-shaped structure formed in the cytoplasm of a cell having fibers like rays that surround the centrosome during mitosis
+21961,astereognosis tactile_agnosia,a loss of the ability to recognize objects by handling them
+21962,asterid_dicot_family,family of more or less advanced dicotyledonous herbs and some trees and shrubs
+21963,asterid_dicot_genus,genus of more or less advanced dicotyledonous herbs and some trees and shrubs
+21964,asterion,the craniometric point at the junction of the lamboid suture and the occipitomastoid suture and the parietomastoid suture
+21965,asterisk star,a star-shaped character * used in printing
+21966,asterism,(mineralogy) a star-shaped figure with six rays that is seen in some crystal structures under reflected or transmitted light
+21967,asterism,(astronomy) a cluster of stars (or a small constellation)
+21968,asteroid,any of numerous small celestial bodies composed of rock and metal that move around the sun (mainly between the orbits of Mars and Jupiter)
+21969,asteroid_belt,the region of interplanetary space between Mars and Jupiter where most asteroids are found
+21970,asthenia astheny,an abnormal loss of strength
+21971,asthenic_type ectomorphy,slender, weak, and lightweight
+21972,asthenosphere,the lower layer of the crust
+21973,asthma asthma_attack bronchial_asthma,respiratory disorder characterized by wheezing; usually of allergic origin
+21974,asthmatic,a person suffering from asthma; "she is a chronic asthmatic"; "the painful gasps of a dying asthmatic"
+21975,astigmatism astigmia,(ophthalmology) impaired eyesight resulting usually from irregular conformation of the cornea; common in nearsighted people
+21976,astigmatism astigmia,(optics) defect in an optical system in which light rays from a single point fail to converge in a single focal point
+21977,astilbe,any plant of the genus Astilbe having compound leaves and showy panicles of tiny colorful flowers
+21978,astonishment amazement,the feeling that accompanies something extremely surprising; "he looked at me in astonishment"
+21979,astrakhan,the fur of young lambs
+21980,astrantia masterwort,any plant of the genus Astrantia
+21981,astraphobia,a morbid fear of thunder and lightning
+21982,astringency astringence,a sharp astringent taste; the taste experience when a substance causes the mouth to pucker
+21983,astringency stypsis,the ability to contract or draw together soft body tissues to check blood flow or restrict secretion of fluids
+21984,astringent astringent_drug styptic,a drug that causes contraction of body tissues and canals
+21985,astrocyte,comparatively large neuroglial cell
+21986,astrodome,a transparent dome on top of an airplane where the navigator can make celestial observations
+21987,astrodynamics,the branch of astronomy that studies the motion of natural and artificial bodies in space
+21988,astrogator,the navigator of a spacecraft
+21989,astroglia macroglia,tissue consisting of large stellate neuroglial cells
+21990,astrolabe,an early form of sextant
+21991,astrolatry worship_of_heavenly_bodies,the worship of planets or stars
+21992,astrologer astrologist,someone who predicts the future by the positions of the planets and sun and Moon
+21993,astrology star_divination,a pseudoscience claiming divination by the positions of the planets and sun and moon
+21994,astrometry,the branch of astronomy that deals with the measurement of the position and motion of celestial bodies
+21995,astronaut spaceman cosmonaut,a person trained to travel in a spacecraft; "the Russians called their astronauts cosmonauts"
+21996,astronomer uranologist stargazer,a physicist who studies astronomy
+21997,astronomical_telescope,any telescope designed to collect and record electromagnetic radiation from cosmic sources
+21998,astronomy uranology,the branch of physics that studies celestial bodies and the universe as a whole
+21999,astronomy_satellite,a satellite equipped with a telescope to observe infrared radiation
+22000,astronomy_unit,a linear unit used for astronomical distances
+22001,astrophysicist,an astronomer who studies the physical properties of celestial bodies
+22002,astrophysics,the branch of astronomy concerned with the physical and chemical properties of celestial bodies
+22003,astuteness profundity profoundness depth deepness,the intellectual ability to penetrate deeply into ideas
+22004,asymmetry dissymmetry imbalance,(mathematics) a lack of symmetry
+22005,asymptote,a straight line that is the limiting value of a curve; can be considered as tangent at infinity; "the asymptote of the curve"
+22006,asynchronism asynchrony desynchronization desynchronisation desynchronizing,the relation that exists when things occur at unrelated times; "the stimulus produced a desynchronizing of the brain waves"
+22007,asynchronous_operation,operations that occur without a regular or predictable time relation to other events
+22008,asynchronous_transfer_mode ATM,a means of digital communications that is capable of very high speeds; suitable for transmission of images or voice or video as well as data; "ATM is used for both LAN and WAN"
+22009,asynclitism obliquity,the presentation during labor of the head of the fetus at an abnormal angle
+22010,asyndeton,the omission of conjunctions where they would normally be used
+22011,asynergy asynergia,absence of coordination of organs or body parts that usually work together harmoniously
+22012,asystole cardiac_arrest cardiopulmonary_arrest,absence of systole; failure of the ventricles of the heart to contract (usually caused by ventricular fibrillation) with consequent absence of the heart beat leading to oxygen lack and eventually to death
+22013,at,100 at equal 1 kip in Laos
+22014,at_home,a reception held in your own home
+22015,atactic_abasia ataxic_abasia,abasia due to ataxia of the legs
+22016,ataraxia,peace of mind
+22017,atavism reversion throwback,a reappearance of an earlier characteristic
+22018,atavist throwback,an organism that has the characteristics of a more primitive type of that organism
+22019,ataxia ataxy dyssynergia motor_ataxia,inability to coordinate voluntary muscle movements; unsteady movements and staggering gait
+22020,atelectasis,collapse of an expanded lung (especially in infants); also failure of pulmonary alveoli to expand at birth
+22021,ateleiosis ateliosis,a form of infantilism characterized by physical underdevelopment but normal intelligence
+22022,atenolol Tenormin,an oral beta blocker (trade name Tenormin) used in treating hypertension and angina; has adverse side effects (depression and exacerbation of congestive heart failure etc.)
+22023,athanor,a furnace that feeds itself so as to maintain a uniform temperature; used by alchemists
+22024,atheism,a lack of belief in the existence of God or gods
+22025,atheist,someone who does not believe in the existence of a god
+22026,athenaeum atheneum,a literary or scientific association for the promotion of learning
+22027,athenaeum atheneum,a place where reading materials are available
+22028,atherogenesis,the formation of atheromas on the walls of the arteries as in atherosclerosis
+22029,atheroma,a fatty deposit in the intima (inner lining) of an artery; can obstruct blood flow
+22030,atherosclerosis coronary_artery_disease,a stage of arteriosclerosis involving fatty deposits (atheromas) inside the arterial walls, thus narrowing the arteries
+22031,athetosis,a continuous succession of slow, writhing, involuntary movements of the hands and feet and other body parts
+22032,athlete jock,a person trained to compete in sports
+22033,athlete's_heart,enlarged heart commonly found among athletes trained for endurance
+22034,athletic_contest athletic_competition athletics,a contest between athletes
+22035,athletic_facility,a facility for athletic events
+22036,athletic_game,a game involving athletic activity
+22037,athletic_sock sweat_sock varsity_sock,a sock worn for athletic events
+22038,athletic_supporter supporter suspensor jockstrap jock,a support for the genitals worn by men engaging in strenuous exercise
+22039,athletic_training,the course of practice and exercise and diet undertaken by an athlete
+22040,athletic_type mesomorphy,muscular and big-boned
+22041,athleticism strenuosity,intense energy; "his music is characterized by a happy athleticism"
+22042,athletics,participation in sports events as an extracurricular activity
+22043,atlas atlas_vertebra,the 1st cervical vertebra
+22044,atlas book_of_maps map_collection,a collection of maps in book form
+22045,atlas telamon,a figure of a man used as a supporting column
+22046,atlas_moth Atticus_atlas,giant saturniid moth widespread in Asia; sometimes cultured for silk
+22047,atmometer evaporometer,an instrument that measures rate of evaporation of water
+22048,atmosphere,the envelope of gases surrounding any celestial body
+22049,atmosphere air,the mass of air surrounding the Earth; "there was great heat as the comet entered the atmosphere"; "it was exposed to the air"
+22050,atmosphere ambiance ambience,a particular environment or surrounding influence; "there was an atmosphere of excitement"
+22051,atmosphere atmospheric_state,the weather or climate at some place; "the atmosphere was thick with fog"
+22052,atmospheric_electricity,electrical discharges in the atmosphere
+22053,atmospheric_phenomenon,a physical phenomenon associated with the atmosphere
+22054,atmospheric_pressure air_pressure pressure,the pressure exerted by the atmosphere
+22055,atole,eaten as mush or as a thin gruel
+22056,atoll,an island consisting of a circular coral reef surrounding a lagoon
+22057,atom,(physics and chemistry) the smallest component of an element having the chemical properties of the element
+22058,atom molecule particle corpuscle mote speck,(nontechnical usage) a tiny piece of anything
+22059,atom_bomb atomic_bomb A-bomb fission_bomb plutonium_bomb,a nuclear weapon in which enormous energy is released by nuclear fission (splitting the nuclei of a heavy element like uranium 235 or plutonium 239)
+22060,atomic_clock,a timepiece that derives its time scale from the vibration of atoms or molecules
+22061,atomic_cocktail,an oral dose of radioactive substance used in treatment and diagnosis of cancer
+22062,atomic_energy nuclear_energy,the energy released by a nuclear reaction
+22063,atomic_mass atomic_weight relative_atomic_mass,(chemistry) the mass of an atom of a chemical element expressed in atomic mass units
+22064,atomic_mass_unit,unit of mass for expressing masses of atoms or molecules
+22065,atomic_number,the order of an element in Mendeleyev's table of the elements; equal to the number of protons in the nucleus or electrons in the neutral state of an atom of an element
+22066,atomic_pile atomic_reactor pile chain_reactor,a nuclear reactor that uses controlled nuclear fission to generate energy
+22067,atomic_power nuclear_power,nuclear energy regarded as a source of electricity for the power grid (for civilian use)
+22068,atomic_spectrum,(physics) a spectrum of radiation caused by electron transitions within an atom; the series of spectrum lines is characteristic of the element
+22069,atomic_theory,a theory of the structure of the atom
+22070,atomic_warhead nuclear_warhead thermonuclear_warhead nuke,the warhead of a missile designed to deliver an atom bomb
+22071,atomism,(psychology) a theory that reduces all mental phenomena to simple elements (sensations and feelings) that form complex ideas by association
+22072,atomism atomic_theory atomist_theory atomistic_theory,(chemistry) any theory in which all matter is composed of tiny discrete finite indivisible indestructible particles; "the ancient Greek philosophers Democritus and Epicurus held atomic theories of the universe"
+22073,atomization atomisation,annihilation by reducing something to atoms
+22074,atomization atomisation fragmentation,separating something into fine particles
+22075,atomizer atomiser spray sprayer nebulizer nebuliser,a dispenser that turns a liquid (such as perfume) into a fine mist
+22076,atonality atonalism,the absence of a key; alternative to the diatonic system
+22077,atonement expiation satisfaction,compensation for a wrong; "we were unable to get satisfaction from the local store"
+22078,atonicity atony atonia amyotonia,lack of normal muscular tension or tonus
+22079,atopic_dermatitis atopic_eczema,a severe form of dermatitis characterized by atopy
+22080,atopognosia atopognosis,absence or loss of topognosia; inability to locate correctly a point of touch
+22081,atorvastatin Lipitor,an oral drug (trade name Lipitor) that is effective in lowering triglycerides; potent in reducing LDL cholesterol because higher doses can be given
+22082,atrazine,a synthetic compound derived from triazine that is widely used as an agricultural herbicide; "atrazine is thought to cause cancer and is banned in some European countries"
+22083,atresia,an abnormal condition in which a normal opening or tube in the body (as the urethra) is closed or absent
+22084,atrial_artery,the branch of the coronary artery that supplies the muscles of the atria
+22085,atrial_fibrillation,fibrillation of the muscles of the atria of the heart
+22086,atrial_septal_defect,an abnormal opening between the left and right atria of the heart
+22087,atrioventricular_bundle bundle_of_His atrioventricular_trunk truncus_atrioventricularis,a bundle of modified heart muscle that transmits the cardiac impulse from the atrioventricular node to the ventricles causing them to contract
+22088,atrioventricular_nodal_rhythm nodal_rhythm,the normal cardiac rhythm when the heart is controlled by the atrioventricular node
+22089,atrioventricular_node,a node of specialized heart muscle located in the septal wall of the right atrium; receives impulses from the sinoatrial node and transmits them to atrioventricular bundle
+22090,atrioventricular_valve,either of two heart valves through which blood flows from the atria to the ventricles; prevents return of blood to the atrium
+22091,atrium,any chamber that is connected to other chambers or passageways (especially one of the two upper chambers of the heart)
+22092,atrium,the central area in a building; open to the sky
+22093,atrium_cordis atrium_of_the_heart,the upper chamber of each half of the heart
+22094,atrocity atrociousness barbarity barbarousness heinousness,the quality of being shockingly cruel and inhumane
+22095,atrocity inhumanity,an act of atrocious cruelty
+22096,atrophy wasting wasting_away,a decrease in size of an organ caused by disease or disuse
+22097,atrophy withering,any weakening or degeneration (especially through lack of use)
+22098,atropine,a poisonous crystalline alkaloid extracted from the nightshade family; used as an antispasmodic and to dilate the eye pupil; also administered in large amounts as an antidote for organophosphate nerve agents or organophosphate insecticides
+22099,attache,a specialist assigned to the staff of a diplomatic mission
+22100,attache_case attache,a shallow and rectangular briefcase
+22101,attachment,a writ authorizing the seizure of property that may be needed for the payment of a judgment in a judicial proceeding
+22102,attachment,a supplementary part or accessory
+22103,attachment adherence adhesion,faithful support for a cause or political party or religion; "attachment to a formal agenda"; "adherence to a fat-free diet"; "the adhesion of Seville was decisive"
+22104,attachment affixation,the act of attaching or affixing something
+22105,attachment bond,a connection that fastens things together
+22106,attachment fond_regard,a feeling of affection for a person or an institution
+22107,attack,a sudden occurrence of an uncontrollable condition; "an attack of diarrhea"
+22108,attack,the onset of a corrosive or destructive process (as by a chemical agent); "the film was sensitive to attack by acids"; "open to attack by the elements"
+22109,attack,strong criticism; "he published an unexpected attack on my work"
+22110,attack,an offensive move in a sport or game; "they won the game with a 10-hit attack in the 9th inning"
+22111,attack attempt,the act of attacking; "attacks on women increased last year"; "they made an attempt on his life"
+22112,attack onslaught onset onrush,(military) an offensive against an enemy (using weapons); "the attack began at dawn"
+22113,attack tone-beginning,a decisive manner of beginning a musical tone or phrase
+22114,attack_dog,a watchdog trained to attack on command
+22115,attack_submarine,a military submarine designed and armed to attack enemy shipping
+22116,attacker aggressor assailant assaulter,someone who attacks
+22117,attainder civil_death,cancellation of civil rights
+22118,attainment,the act of achieving an aim; "the attainment of independence"
+22119,attainment,arrival at a new stage; "his attainment of puberty was delayed by malnutrition"
+22120,attar atar athar ottar,essential oil or perfume obtained from flowers
+22121,attar_of_roses rose_oil,a volatile fragrant oil obtained from fresh roses by steam distillation
+22122,attempt effort endeavor endeavour try,earnest and conscientious activity intended to do or accomplish something; "made an effort to cover all the reading material"; "wished him luck in his endeavor"; "she gave it a good try"
+22123,attendance,the frequency with which a person is present; "a student's attendance is an important factor in her grade"
+22124,attendance,the number of people that are present; "attendance was up by 50 per cent"
+22125,attendance attending,the act of being present (at a meeting or event etc.)
+22126,attendance_check,a call of students' names in a classroom
+22127,attendant attender attendee meeter,a person who is present and participates in a meeting; "he was a regular attender at department meetings"; "the gathering satisfied both organizers and attendees"
+22128,attendant attender tender,someone who waits on or tends to or attends to the needs of another
+22129,attention,a general interest that leads people to want to know more; "She was the center of attention"
+22130,attention,the faculty or power of mental concentration; "keeping track of all the details requires your complete attention"
+22131,attention,a motionless erect stance with arms at the sides and feet together; assumed by military personnel during drill or review; "the troops stood at attention"
+22132,attention,a courteous act indicating affection; "she tried to win his heart with her many attentions"
+22133,attention attending,the process whereby a person concentrates on some features of the environment to the (relative) exclusion of others
+22134,attention_deficit_disorder ADD attention_deficit_hyperactivity_disorder ADHD hyperkinetic_syndrome minimal_brain_dysfunction minimal_brain_damage MBD,a condition (mostly in boys) characterized by behavioral and learning disorders
+22135,attention_span,the length of time you can concentrate on some idea or activity
+22136,attentiveness,the trait of being considerate and thoughtful of others
+22137,attentiveness,the trait of being observant and paying attention
+22138,attentiveness heed regard paying_attention,paying particular notice (as to children or helpless people); "his attentiveness to her wishes"; "he spends without heed to the consequences"
+22139,attenuation,the property of something that has been weakened or reduced in thickness or density
+22140,attenuation fading,weakening in force or intensity; "attenuation in the volume of the sound"
+22141,attenuator,an electrical device for attenuating the strength of an electrical signal
+22142,attestation,the action of bearing witness
+22143,attestation,the evidence by which something is attested
+22144,attestation_service attestation_report,a consulting service in which a CPA expresses a conclusion about the reliability of a written statement that is the responsibility of someone else
+22145,attester attestant,someone who affirms or vouches for the correctness or truth or genuineness of something
+22146,attic,(architecture) a low wall at the top of the entablature; hides the roof
+22147,attic bean bonce noodle noggin dome,informal terms for a human head
+22148,attic_fan,a fan that blows heated air out of the attic of a building
+22149,attire garb dress,clothing of a distinctive style or for a particular occasion; "formal attire"; "battle dress"
+22150,attitude,position of aircraft or spacecraft relative to a frame of reference (the horizon or direction of motion)
+22151,attitude,a theatrical pose created for effect; "the actor struck just the right attitude"
+22152,attitude mental_attitude,a complex mental state involving beliefs and feelings and values and dispositions to act in certain ways; "he had the attitude that work was fun"
+22153,attorney-client_privilege,the right of a lawyer to refuse to divulge confidential information from his client
+22154,attorney_general,the chief law officer of a country or state
+22155,attorneyship,the position of attorney
+22156,attosecond,one quintillionth (10^-18) of a second; one thousandth of a femtosecond
+22157,attraction,an entertainment that is offered to the public
+22158,attraction attractive_force,the force by which one object attracts another
+22159,attraction attractiveness,the quality of arousing interest; being attractive or something that attracts; "her personality held a strange attraction for him"
+22160,attraction attractor attracter attractive_feature magnet,a characteristic that provides pleasure and attracts; "flowers are an attractor for bees"
+22161,attractive_nuisance,anything on your premises that might attract children into danger or harm; "their swimming pool is an attractive nuisance; they should fence it in"
+22162,attractiveness,sexual allure
+22163,attractor attracter,(physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system
+22164,attribute,an abstraction belonging to or characteristic of an entity
+22165,attribution ascription,assigning some quality or character to a person or thing; "the attribution of language to birds"; "the ascription to me of honors I had not earned"
+22166,attribution ascription,assigning to a cause or source; "the attribution of lighting to an expression of God's wrath"; "he questioned the attribution of the painting to Picasso"
+22167,attributive_genitive attributive_genitive_case,a word in the genitive case that is used as an attributive adjective; "an example of the attributive genetive is `John's' in `John's mother'"
+22168,attrition,a wearing down to weaken or destroy; "a war of attrition"
+22169,attrition,the act of rubbing together; wearing something down by friction
+22170,attrition contrition contriteness,sorrow for sin arising from fear of damnation
+22171,attrition_rate rate_of_attrition,the rate of shrinkage in size or number
+22172,atypical_pneumonia primary_atypical_pneumonia mycoplasmal_pneumonia,an acute respiratory disease marked by high fever and coughing; caused by mycoplasma; primarily affecting children and young adults
+22173,atypicality untypicality,any state that is not typical
+22174,au_pair,a young foreigner who lives with a family in return for doing light housework
+22175,au_pair_girl,a foreign girl serving as an au pair
+22176,auction auction_bridge,a variety of bridge in which tricks made in excess of the contract are scored toward game; now generally superseded by contract bridge
+22177,auction auction_sale vendue,the public sale of something to the highest bidder
+22178,auction_block block,a platform from which an auctioneer sells; "they put their paintings on the block"
+22179,auction_house,a firm that conducts auctions
+22180,auctioneer,an agent who conducts an auction
+22181,audacity audaciousness,aggressive boldness or unmitigated effrontery; "he had the audacity to question my decision"
+22182,audacity audaciousness temerity,fearless daring
+22183,audibility audibleness,quality or fact or degree of being audible or perceptible by the ear
+22184,audible,a football play is changed orally after both teams have assumed their positions at the line of scrimmage
+22185,audience,the part of the general public interested in a source of information or entertainment; "every artist needs an audience"; "the broadcast reached an audience of millions"
+22186,audience,a gathering of spectators or listeners at a (usually public) performance; "the audience applauded"; "someone in the audience began to cough"
+22187,audile,one whose mental imagery is auditory rather than visual or motor
+22188,audio,the sound elements of television
+22189,audio audio_frequency,an audible acoustic wave frequency
+22190,audio sound,the audible part of a transmitted signal; "they always raise the audio for commercials"
+22191,audio_CD audio_compact_disc,compact discs used to reproduce sound (voice and music)
+22192,audio_amplifier,an amplifier that increases the amplitude of reproduced sound
+22193,audio_lingual_acquisition,system of language acquisition focusing intensively on listening and speaking
+22194,audio_system sound_system,a system of electronic equipment for recording or reproducing sound
+22195,audiocassette,a cassette for audiotape
+22196,audiogram,a graphical representation of a person's auditory sensitivity to sound
+22197,audiology audiometry,the measurement of hearing
+22198,audiometer sonometer,an instrument used to measure the sensitivity of hearing
+22199,audiometry,measuring sensitivity of hearing
+22200,audiotape,a tape recording of sound
+22201,audiotape,magnetic tape for use in recording sound
+22202,audiovisual audiovisual_aid,materials using sight or sound to present information; "language tapes and videocassettes and other audiovisuals"
+22203,audit,a methodical examination or review of a condition or situation; "he made an audit of all the plants on his property"; "an energy efficiency audit"; "an email log audit"
+22204,audit_program audit_programme,a listing of audit procedures to be performed in completing an audit
+22205,audited_account audit,an inspection of the accounting procedures and records by a trained accountant or CPA
+22206,audition tryout,a test of the suitability of a performer
+22207,auditor,a student who attends a course but does not take it for credit
+22208,auditor,a qualified accountant who inspects the accounting records and practices of a business or other organization
+22209,auditorium,the area of a theater or concert hall where the audience sits
+22210,auditory_agnosia,inability to recognize or understand the meaning of spoken words
+22211,auditory_aphasia acoustic_aphasia word_deafness,an impairment in understanding spoken language that is not attributable to hearing loss
+22212,auditory_apparatus,all of the components of the organ of hearing including the outer and middle and inner ears
+22213,auditory_area auditory_cortex,the cortical area that receives auditory information from the medial geniculate body
+22214,auditory_center,the part of the brain (in a fold of the cerebral cortex of the temporal lobe on both sides of the brain) that receives impulses from the ear by way of the auditory nerve
+22215,auditory_communication,communication that relies on hearing
+22216,auditory_hallucination acousma,illusory auditory perception of strange nonverbal sounds
+22217,auditory_image,a mental image that is similar to an auditory perception
+22218,auditory_meatus acoustic_meatus ear_canal auditory_canal external_auditory_canal,either of the passages in the outer ear from the auricle to the tympanic membrane
+22219,auditory_ossicle,ossicles of the middle ear that transmit acoustic vibrations from the eardrum to the inner ear
+22220,auditory_perception sound_perception,the perception of sound as a meaningful phenomenon
+22221,auditory_system,the sensory system for hearing
+22222,augend,a number to which another number (the addend) is added
+22223,auger gimlet screw_auger wimble,hand tool for boring holes
+22224,augite,dark-green to black glassy mineral of the pyroxene group containing large amounts of aluminum and iron and magnesium
+22225,augmentation,the amount by which something increases
+22226,augmentation,the statement of a theme in notes of greater duration (usually twice the length of the original)
+22227,augmentation,the act of augmenting
+22228,augur auspex,(ancient Rome) a religious official who interpreted omens to guide public policy
+22229,augury sign foretoken preindication,an event that is experienced as indicating important things to come; "he hoped it was an augury"; "it was a sign from God"
+22230,auk,black-and-white short-necked web-footed diving bird of northern seas
+22231,auklet,any of several small auks of the northern Pacific coasts
+22232,auld_langsyne langsyne old_times good_old_days,past times remembered with nostalgia
+22233,aunt auntie aunty,the sister of your father or mother; the wife of your uncle
+22234,aura,a sensation (as of a cold breeze or bright light) that precedes the onset of certain disorders such as a migraine attack or epileptic seizure
+22235,aura aureole halo nimbus glory gloriole,an indication of radiant light drawn around the head of a saint
+22236,aureole corona,the outermost region of the sun's atmosphere; visible as a white halo during a solar eclipse
+22237,auricle atrial_auricle auricula_atrii,a small conical pouch projecting from the upper anterior part of each atrium of the heart
+22238,auricle pinna ear,the externally visible cartilaginous structure of the external ear
+22239,auricula auricular_appendage auricular_appendix,a pouch projecting from the top front of each atrium of the heart
+22240,auricula bear's_ear Primula_auricula,yellow-flowered primrose native to Alps; commonly cultivated
+22241,auricular_artery arteria_auricularis,artery that supplies blood to the ear
+22242,auricular_vein vena_auricularis,one of two veins serving the ear region
+22243,auriculare auricular_point,the craniometric point at the center of the opening of the external acoustic meatus
+22244,aurochs urus Bos_primigenius,large recently extinct long-horned European wild ox; considered one of the ancestors of domestic cattle
+22245,aurora,an atmospheric phenomenon consisting of bands of light caused by charged solar particles following the earth's magnetic lines of force
+22246,aurora_australis southern_lights,the aurora of the southern hemisphere
+22247,aurora_borealis northern_lights,the aurora of the northern hemisphere
+22248,auscultation,listening to sounds within the body (usually with a stethoscope)
+22249,auspice,a favorable omen
+22250,auspices protection aegis,kindly endorsement and guidance; "the tournament was held under the auspices of the city council"
+22251,auspiciousness propitiousness,the favorable quality of strongly indicating a successful result
+22252,austenite,a solid solution of ferric carbide or carbon in iron; cools to form pearlite or martensite
+22253,austenitic_steel,steel that has enough nickel and chromium or manganese to retain austenite at atmospheric temperatures
+22254,austereness severity severeness,extreme plainness
+22255,austerity asceticism nonindulgence,the trait of great self-denial (especially refraining from worldly pleasures)
+22256,austral,the basic unit of money in Argentina; equal to 100 centavos
+22257,australopithecine,any of several extinct humanlike bipedal primates with relatively small brains of the genus Australopithecus; from 1 to 4 million years ago
+22258,autacoid autocoid,any physiologically active internal secretion especially one of uncertain classification
+22259,autarky autarchy,economic independence as a national policy
+22260,auteur,a filmmaker who has a personal style and keeps creative control over his or her works
+22261,authentication certification,validating the authenticity of something or someone
+22262,authentication hallmark assay-mark,a mark on an article of trade to indicate its origin and authenticity
+22263,authenticity genuineness legitimacy,undisputed credibility
+22264,authoress,a woman author
+22265,authoring_language,software that can be used to develop interactive computer programs without the technically demanding task of computer programming
+22266,authoritarian dictator,a person who behaves in a tyrannical manner; "my boss is a dictator who makes everyone work overtime"
+22267,authoritarian_state authoritarian_regime,a government that concentrates political power in an authority not responsible to the people
+22268,authority,(usually plural) persons who exercise (administrative) control over others; "the authorities have issued a curfew"
+22269,authority,an expert whose views are taken as definitive; "he is an authority on corporate law"
+22270,authority,an authoritative written work; "this book is the final authority on the life of Milton"
+22271,authority authorization authorisation potency dominance say-so,the power or right to give orders or make decisions; "he has the authority to issue warrants"; "deputies are given authorization to make arrests"; "a place of potency in the state"
+22272,authority authorization authorisation sanction,official permission or approval; "authority for the program was renewed several times"
+22273,authority_figure,someone who is regarded as an authority by someone else
+22274,authorization authorisation empowerment,the act of conferring legality or sanction or formal warrant
+22275,authorized_shares authorized_stock capital_stock,the maximum number of shares authorized under the terms of a corporation's articles of incorporation
+22276,authorizer authoriser,an authority who authorizes (people or actions); "the agents report back to their authorizers"
+22277,authorship paternity,the act of initiating a new idea or theory or writing; "the authorship of the theory is disputed"
+22278,autism,(psychiatry) an abnormal absorption with the self; marked by communication disorders and short attention span and inability to treat others as people
+22279,auto-da-fe,the burning to death of heretics (as during the Spanish Inquisition)
+22280,auto_accessory,an accessory for an automobile
+22281,auto_limitation,social control achieved as a manifestation of self-will or general consent
+22282,auto_mechanics,the craft of building and repairing automobiles
+22283,auto_part car_part,a component of an automobile; "his business is auto parts"
+22284,auto_racing car_racing,the sport of racing automobiles
+22285,autoantibody,an antibody acting against tissues of the organism that produces it
+22286,autobahn,an expressway in a German-speaking country
+22287,autobiographer,someone who writes their own biography
+22288,autobiography,a biography of yourself
+22289,autocatalysis,catalysis in which the catalyst is one of the products of the reaction
+22290,autochthon,the earliest known inhabitants of a region
+22291,autoclave sterilizer steriliser,a device for heating substances above their boiling point; used to manufacture chemicals or to sterilize surgical instruments
+22292,autocracy,a political theory favoring unlimited authority by a single individual
+22293,autocracy autarchy,a political system governed by a single individual
+22294,autodidact,a person who has taught himself
+22295,autoeroticism autoerotism,using you own body as a sexual object
+22296,autofluorescence,self-induced fluorescence
+22297,autofocus,an optical device for focussing a camera or other instrument automatically
+22298,autogamy,self-fertilization in plants
+22299,autogenic_therapy autogenic_training autogenics,training patients in self-induced relaxation
+22300,autogiro autogyro gyroplane,an aircraft that is supported in flight by unpowered rotating horizontal wings (or blades); forward propulsion is provided by a conventional propeller
+22301,autograft autoplasty,tissue that is taken from one site and grafted to another site on the same person; "skin from his thigh replaced the burned skin on his arms"
+22302,autograph,something written by one's own hand
+22303,autograph John_Hancock,a person's own signature
+22304,autograph_album,an album for autographs
+22305,autoimmune_disease autoimmune_disorder,any of a large group of diseases characterized by abnormal functioning of the immune system that causes your immune system to produce antibodies against your own tissues
+22306,autoimmunity,production of antibodies against the tissues of your own body; produces autoimmune disease or hypersensitivity reactions
+22307,autoinjector,a hypodermic syringe to use in injecting yourself with a liquid; "United States troops now carry atropine and autoinjectors in their first-aid kits to use in case of organophosphate nerve agent poisoning"
+22308,autoloader self-loader,a firearm that reloads itself
+22309,autolysis self-digestion,lysis of plant or animal tissue by an internal process
+22310,automat,a vending machine from which you can get food
+22311,automat,a cafeteria where food is served from machines
+22312,automatic_choke,a choke that automatically controls the flow of air to the carburetor
+22313,automatic_data_processing ADP,data processing by a computer
+22314,automatic_firearm automatic_gun automatic_weapon,a firearm that reloads itself and keeps firing until the trigger is released
+22315,automatic_pilot autopilot,a cognitive state in which you act without self-awareness; "she went about her chores on automatic pilot"; "too much of the writing seems to have been done on automatic pilot"; "she talked and he dozed and my mind went on autopilot"
+22316,automatic_pistol automatic,a pistol that will keep firing until the ammunition is gone or the trigger is released
+22317,automatic_rifle automatic machine_rifle,light machine gun
+22318,automatic_transmission automatic_drive,a transmission that automatically changes the gears according to the speed of the car
+22319,automation,the condition of being automatically operated or controlled; "automation increases productivity"
+22320,automation,equipment used to achieve automatic control or operation; "this factory floor is a showcase for automation and robotic equipment"
+22321,automation mechanization mechanisation,the act of implementing the control of equipment with advanced technology; usually involving electronic hardware; "automation replaces human workers by machines"
+22322,automatism,any reaction that occurs automatically without conscious thought or reflection (especially the undirected behavior seen in psychomotor epilepsy)
+22323,automaton robot golem,a mechanism that can move automatically
+22324,automaton zombi zombie,someone who acts or responds in a mechanical or apathetic way; "only an automaton wouldn't have noticed"
+22325,automobile_engine,the engine that propels an automobile
+22326,automobile_factory auto_factory car_factory,a factory where automobiles are manufactured
+22327,automobile_horn car_horn motor_horn horn hooter,a device on an automobile for making a warning noise
+22328,automobile_industry,the manufacturers of automobiles considered collectively
+22329,automobile_insurance car_insurance,insurance against loss due to theft or traffic accidents
+22330,automobile_loan auto_loan car_loan,a personal loan to purchase an automobile
+22331,automobile_mechanic auto-mechanic car-mechanic mechanic grease_monkey,someone whose occupation is repairing and maintaining automobiles
+22332,automobile_race auto_race car_race,a race between (usually high-performance) automobiles
+22333,automobile_traffic car_traffic,cars coming and going
+22334,automotive_engineer,an engineer concerned with the design and construction of automobiles
+22335,automotive_technology automotive_engineering,the activity of designing and constructing automobiles
+22336,automysophobia,a morbid fear of being dirty
+22337,autonomic_ganglion,any of the ganglia of the autonomic system whose unmyelinated fibers innervate the internal organs
+22338,autonomic_nervous_system ANS,the part of the nervous system of vertebrates that controls involuntary actions of the smooth muscles and heart and glands
+22339,autonomic_plexus plexus_autonomici,a plexus of sympathetic and parasympathetic nerve fibers
+22340,autonomy liberty,immunity from arbitrary exercise of authority: political independence
+22341,autonomy self-direction self-reliance self-sufficiency,personal independence
+22342,autophyte autophytic_plant autotroph autotrophic_organism,plant capable of synthesizing its own food from simple organic substances
+22343,autopilot automatic_pilot robot_pilot,a navigational device that automatically keeps ships or planes or spacecraft on a steady course
+22344,autoplasty,surgical repair by using tissue from another part of the patient's own body
+22345,autopsy necropsy postmortem post-mortem PM postmortem_examination post-mortem_examination,an examination and dissection of a dead body to determine cause of death or the changes produced by disease
+22346,autoradiograph,a radiogram produced by radiation emitted by the specimen being photographed
+22347,autoradiography,producing a radiograph by means of the radiation emitted from the specimen being photographed
+22348,autoregulation,(physiology) processes that maintain a generally constant physiological state in a cell or organism
+22349,autosexing,(especially of domestic fowl) breeding to reveal differential sex characteristics at hatching
+22350,autosomal_dominant_disease autosomal_dominant_disorder,a disease caused by a dominant mutant gene on an autosome
+22351,autosomal_recessive_disease autosomal_recessive_defect,a disease caused by the presence of two recessive mutant genes on an autosome
+22352,autosome somatic_chromosome,any chromosome that is not a sex chromosome; appear in pairs in body cells but as single chromosomes in spermatozoa
+22353,autostrada,an expressway in an Italian-speaking country
+22354,autosuggestion auto-suggestion self-suggestion,a system for self-improvement developed by Emile Coue which was popular in the 1920s and 1930s
+22355,autotelism,belief that a work of art is an end in itself or its own justification
+22356,autotomy,spontaneous removal or casting off of a body part (as the tail of a lizard or claw of a lobster) especially when the organism is injured or under attack
+22357,autotype autotypy,process for producing permanent prints in a carbon pigment
+22358,autumn_crocus meadow_saffron naked_lady Colchicum_autumnale,bulbous autumn-flowering herb with white, purple or lavender-and-white flowers; native to western and central Europe
+22359,autumn_sneezeweed Helenium_autumnale,North American perennial with bright yellow late summer flowers
+22360,autumnal_equinox,(astronomy) the equinoctial point that lies in the constellation of Virgo
+22361,autumnal_equinox September_equinox fall_equinox,September 22
+22362,auxesis,growth from increase in cell size without cell division
+22363,auxiliary_airfield,an airfield that functions in a subsidiary capacity
+22364,auxiliary_boiler donkey_boiler,(nautical) an extra boiler (as a ship's boiler that is used while the ship is in port)
+22365,auxiliary_cell,a terrorist cell responsible for logistics; usually large and less compartmentalized than other terrorist cells
+22366,auxiliary_engine donkey_engine,(nautical) a small engine (as one used on board ships to operate a windlass)
+22367,auxiliary_operation off-line_operation,a operation performed by off-line equipment not under the control of the central processing unit
+22368,auxiliary_pump donkey_pump,a supplementary pump available if needed
+22369,auxiliary_research_submarine,a submarine for research purposes
+22370,auxiliary_storage external_storage secondary_storage,a data storage device that is not the main memory of a computer
+22371,auxiliary_verb,a verb that combines with another verb in a verb phrase to help form tense, mood, voice, or condition of the verb it combines with
+22372,auxin,a plant hormone that promotes root formation and bud growth
+22373,avadavat amadavat,red Asian weaverbirds often kept as cage birds
+22374,avail help service,a means of serving; "of no avail"; "there's no help for it"
+22375,avalanche,a slide of large masses of snow and ice and mud down a mountain
+22376,avalanche,a sudden appearance of an overwhelming number of things; "the program brought an avalanche of mail"
+22377,avalanche_lily Erythronium_montanum,perennial herb having large white flowers marked with orange; found near the snow line in the northwestern United States
+22378,avant-garde vanguard van new_wave,any creative group active in the innovation and application of new concepts and techniques in a given field (especially in the arts)
+22379,avaram tanner's_cassia Senna_auriculata Cassia_auriculata,evergreen Indian shrub with vivid yellow flowers whose bark is used in tanning; sometimes placed in genus Cassia
+22380,avarice avariciousness covetousness cupidity,extreme greed for material wealth
+22381,avarice greed covetousness rapacity avaritia,reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)
+22382,avatar,the manifestation of a Hindu deity (especially Vishnu) in human or superhuman or animal form; "some Hindus consider Krishna to be an avatar of the god Vishnu"
+22383,avenger retaliator,someone who takes vengeance
+22384,avens,any of various perennials of the genus Geum having usually pinnate basal leaves and variously colored flowers
+22385,avenue,a line of approach; "they explored every avenue they could think of"; "it promises to open new avenues to understanding"
+22386,avenue boulevard,a wide street or thoroughfare
+22387,average,(sports) the ratio of successful performances to opportunities
+22388,average,an intermediate scale value regarded as normal or usual; "he is about average in height"; "the snowfall this month is below average"
+22389,average norm,a statistic describing the location of a distribution; "it set the norm for American homes"
+22390,average_cost,total cost for all units bought (or produced) divided by the number of units
+22391,averageness,the state of being that is average; indicates normality but with connotations of mediocrity
+22392,averageness mediocrity,ordinariness as a consequence of being average and not outstanding
+22393,aversion averting,the act of turning yourself (or your gaze) away; "averting her gaze meant that she was angry"
+22394,aversion_therapy,any technique of behavior modification that uses unpleasant stimuli in a controlled fashion to alter behavior in a therapeutic way; primarily used for alcoholism or drug abuse (but with little success)
+22395,aversive_conditioning,conditioning to avoid an aversive stimulus
+22396,aversive_stimulus,any negative stimulus to which an organism will learn to make a response that avoids it
+22397,averting,the act of preventing something from occurring; "averting danger was his responsibility"
+22398,aviary bird_sanctuary volary,a building where birds are kept
+22399,aviation,the operation of aircraft to provide transportation
+22400,aviation air_power,the aggregation of a country's military aircraft
+22401,aviation airmanship,the art of operating aircraft
+22402,aviator aeronaut airman flier flyer,someone who operates an aircraft
+22403,aviatrix airwoman aviatress,a woman aviator
+22404,avifauna,the birds of a particular region or period
+22405,avionics,science and technology of electronic systems and devices for aeronautics and astronautics; "avionics has become even more important with the development of the space program"
+22406,avitaminosis hypovitaminosis,any of several diseases caused by deficiency of one or more vitamins
+22407,avo,100 avos equal 1 pataca in Macao
+22408,avocado alligator_pear avocado_pear aguacate,a pear-shaped tropical fruit with green or blackish skin and rich yellowish pulp enclosing a single large seed
+22409,avocado avocado_tree Persea_Americana,tropical American tree bearing large pulpy green fruits
+22410,avocation by-line hobby pursuit sideline spare-time_activity,an auxiliary activity
+22411,avocet,long-legged web-footed black-and-white shorebird with slender upward-curving bill
+22412,avoidance turning_away shunning dodging,deliberately avoiding; keeping away from or preventing from happening
+22413,avoirdupois avoirdupois_weight,a system of weights based on the 16-ounce pound (or 7,000 grains)
+22414,avoirdupois_unit,any of the units of the avoirdupois system of weights
+22415,avowal avouchment affirmation,a statement asserting the existence or the truth of something
+22416,avower,someone who admits or acknowledges openly and boldly
+22417,avulsion,an abrupt change in the course of a stream that forms the boundary between two parcels of land resulting in the loss of part of the land of one landowner and a consequent increase in the land of another
+22418,avulsion,a forcible tearing or surgical separation of one body part from another
+22419,awakening wakening waking_up,the act of waking; "it was an early awakening"; "it was the waking up he hated most"
+22420,award accolade honor honour laurels,a tangible symbol signifying approval or distinction; "an award for bravery"
+22421,award awarding,a grant made by a law court; "he criticized the awarding of compensation by the court"
+22422,awareness consciousness cognizance cognisance knowingness,having knowledge of; "he had no awareness of his mistakes"; "his sudden consciousness of the problem he faced"; "their intelligence and general knowingness was impressive"
+22423,awareness sentience,state of elementary or undifferentiated consciousness; "the crash intruded on his awareness"
+22424,away_game road_game,a game played away from home
+22425,awayness,the state of being elsewhere than in particular place
+22426,awe,an overwhelming feeling of wonder or admiration; "he stared over the edge with a feeling of awe"
+22427,awfulness dreadfulness horridness terribleness,a quality of extreme unpleasantness
+22428,awkwardness clumsiness,the carriage of someone whose movements and posture are ungainly or inelegant
+22429,awkwardness clumsiness gracelessness stiffness,the inelegance of someone stiff and unrelaxed (as by embarrassment)
+22430,awkwardness clumsiness ineptness ineptitude maladroitness slowness,unskillfulness resulting from a lack of training
+22431,awkwardness cumbersomeness unwieldiness,trouble in carrying or managing caused by bulk or shape; "the movers cursed the unwieldiness of the big piano"
+22432,awkwardness nuisance_value,the quality of an embarrassing situation; "he sensed the awkwardness of his proposal"
+22433,awl,a pointed tool for marking surfaces or for punching small holes
+22434,awlwort Subularia_aquatica,small aquatic plant having tufted awl-shaped leaves in a basal rosette and minute white flowers; circumboreal
+22435,awn,slender bristlelike appendage found on the bracts of grasses
+22436,awning sunshade sunblind,a canopy made of canvas to shelter people or things from rain or sun
+22437,awnless_bromegrass Bromus_inermis,drought-resistant perennial with awns lacking or very short and long creeping rhizomes; Europe and temperate Asia
+22438,ax axe,an edge tool with a heavy bladed head mounted across a handle
+22439,ax_handle axe_handle,the handle of an ax
+22440,ax_head axe_head,the cutting head of an ax
+22441,axial_muscle,a skeletal muscle of the trunk or head
+22442,axial_rotation axial_motion roll,rotary motion of an object around its own axis; "wheels in axial rotation"
+22443,axial_skeleton,the part of the skeleton that includes the skull and spinal column and sternum and ribs
+22444,axil,the upper angle between an axis and an offshoot such as a branch or leafstalk
+22445,axile_placentation,ovules are borne at or around the center of a compound ovary on an axis formed from joined septa
+22446,axillary_artery arteria_axillaris,the part of the main artery of the arm that lies in the armpit and is continuous with the subclavian artery above and the brachial artery below
+22447,axillary_node,any of the lymph glands of the armpit; fights infections in the neck and chest and arm regions
+22448,axillary_vein vena_axillaris,a continuation of the basilic vein and brachial vein that becomes the subclavian vein
+22449,axiology,the study of values and value judgments
+22450,axiom,(logic) a proposition that is not susceptible of proof or disproof; its truth is assumed to be self-evident
+22451,axis,the main stem or central part about which plant organs or plant parts such as branches are arranged
+22452,axis,a straight line through a body or figure that satisfies certain conditions
+22453,axis axis_of_rotation,the center around which something rotates
+22454,axis axis_vertebra,the 2nd cervical vertebra; serves as a pivot for turning the head
+22455,axle,a shaft on which a wheel rotates
+22456,axle_bar,an iron bar that serves as an axletree
+22457,axle_grease,a thick heavy grease used to lubricate axles
+22458,axletree,a dead axle on a carriage or wagon that has terminal spindles on which the wheels revolve
+22459,axolemma,outer membrane covering an axon
+22460,axolotl mud_puppy Ambystoma_mexicanum,larval salamander of mountain lakes of Mexico that usually lives without metamorphosing
+22461,axon axone,long nerve fiber that conducts away from the cell body of the neuron
+22462,axseed crown_vetch Coronilla_varia,European herb resembling vetch; naturalized in the eastern United States; having umbels of pink-and-white flowers and sharp-angled pods
+22463,ayah,(in India) a native nursemaid who looks after children
+22464,ayapana Ayapana_triplinervis Eupatorium_aya-pana,low spreading tropical American shrub with long slender leaves used to make a mildly stimulating drink resembling tea; sometimes placed in genus Eupatorium
+22465,ayatollah,a high-ranking Shiite religious leader who is regarded as an authority on religious law and its interpretation and who has political power as well
+22466,aye-aye Daubentonia_madagascariensis,nocturnal lemur with long bony fingers and rodent-like incisor teeth closely related to the lemurs
+22467,ayin,the 16th letter of the Hebrew alphabet
+22468,azadirachtin,insecticide
+22469,azalea,any of numerous ornamental shrubs grown for their showy flowers of various colors
+22470,azathioprine Imuran,an immunosuppressive drug (trade name Imuran) used to prevent rejection of a transplanted organ
+22471,azide,a chemical compound containing the azido group combined with an element or radical
+22472,azido_group azido_radical,the univalent group N3- derived from hydrazoic acid
+22473,azimuth AZ,the azimuth of a celestial body is the angle between the vertical plane containing it and the plane of the meridian
+22474,azithromycin Zithromax,a systemic antibacterial medicine (trade name Zithromax) that is prescribed to treat bacterial infections in many different parts of the body
+22475,azo_dye,any dye containing one or more azo groups
+22476,azo_group azo_radical,the bivalent group -N=N- united to two hydrocarbon groups
+22477,azote,an obsolete name for nitrogen
+22478,azoturia,excess of urea in the urine
+22479,aztreonam Azactam,an antibiotic (trade name Azactam) used against severe infections; has minimal side effects
+22480,azure cerulean sapphire lazuline sky-blue,a light shade of blue
+22481,azure_aster,a variety of aster
+22482,azurite,blue carbonate of copper; blue malachite
+22483,azygos_vein azygous_vein vena_azygos,one of a system of veins that drain the thoracic and abdominal walls; arises as a continuation of the right ascending lumbar vein and terminates in the superior vena cava
+22484,azymia,absence of an enzyme
+22485,b-meson,exceedingly short-lived meson
+22486,baa,the cry made by sheep
+22487,baa-lamb,child's word for a sheep or lamb
+22488,baas,South African term for `boss'
+22489,baba,a small cake leavened with yeast
+22490,baba_au_rhum rum_baba,a baba soaked in rum
+22491,babassu babassu_palm coco_de_macao Orbignya_phalerata Orbignya_spesiosa Orbignya_martiana,tall feather palm of northern Brazil with hard-shelled nuts yielding valuable oil and a kind of vegetable ivory
+22492,babassu_nut,hard-shelled nut of the babassu palm
+22493,babassu_oil babacu_oil,fatty oil from kernels of babassu nuts similar to coconut oil
+22494,babbitting,lining a surface or bearing with Babbitt metal
+22495,babble babbling lallation,gibberish resembling the sounds of a baby
+22496,babbler cackler,any of various insectivorous Old World birds with a loud incessant song; in some classifications considered members of the family Muscicapidae
+22497,babel,a confusion of voices and other sounds
+22498,babirusa babiroussa babirussa Babyrousa_Babyrussa,Indonesian wild pig with enormous curved canine teeth
+22499,babka,a coffee cake flavored with orange rind and raisins and almonds
+22500,baboon,large terrestrial monkeys having doglike muzzles
+22501,babu baboo,used as a Hindi courtesy title; equivalent to English `Mr'
+22502,babushka,a woman's headscarf folded into a triangle and tied under the chin; worn by Russian peasant women
+22503,baby,an unborn child; a human fetus; "I felt healthy and very feminine carrying the baby"; "it was great to feel my baby moving about inside"
+22504,baby,the youngest member of a group (not necessarily young); "the baby of the family"; "the baby of the Supreme Court"
+22505,baby,a very young mammal; "baby rabbits"
+22506,baby,a project of personal concern to someone; "this project is his baby"
+22507,baby babe infant,a very young child (birth to 1 year) who has not yet begun to walk or talk; "the baby began to cry again"; "she held the baby in her arms"; "it sounds simple, but when you have your own baby it is all so different"
+22508,baby's_breath babies'-breath Gypsophila_paniculata,tall plant with small lance-shaped leaves and numerous tiny white or pink flowers
+22509,baby's_tears baby_tears Helxine_soleirolia Soleirolia_soleirolii,prostrate or creeping Corsican herb with moss-like small round short-stemmed leaves
+22510,baby_bed baby's_bed,a small bed for babies; enclosed by sides to prevent the baby from falling
+22511,baby_blue-eyes Nemophila_menziesii,delicate California annual having blue flowers marked with dark spots
+22512,baby_boom baby-boom_generation,the larger than expected generation in United States born shortly after World War II
+22513,baby_boomer boomer,a member of the baby boom generation in the 1950s; "they expanded the schools for a generation of baby boomers"
+22514,baby_buggy baby_carriage carriage perambulator pram stroller go-cart pushchair pusher,a small vehicle with four wheels in which a baby or child is pushed around
+22515,baby_buster buster,a person born in the generation following the baby boom when the birth rate fell dramatically
+22516,baby_doctor pediatrician pediatrist paediatrician,a specialist in the care of babies
+22517,baby_farmer,someone who runs an establishment that houses and cares for babies for a fee
+22518,baby_grand baby_grand_piano parlor_grand parlor_grand_piano parlour_grand parlour_grand_piano,a small grand piano
+22519,baby_oil,an ointment for babies
+22520,baby_powder,powder used to prevent a baby's diaper from chafing
+22521,baby_shoe,a shoe designed to be worn by infants
+22522,baby_talk babytalk,the developing speech of a young child
+22523,baby_talk babytalk motherese,an adult's imitation of the speech of a young child
+22524,babyminder baby_minder minder,a person who looks after babies (usually in the person's own home) while the babys' parents are working
+22525,babysitter baby-sitter sitter,a person engaged to care for children when the parents are not home
+22526,babysitting baby_sitting,the work of a baby sitter; caring for children when their parents are not home
+22527,baccalaureate,a farewell sermon to a graduating class at their commencement ceremonies
+22528,baccarat chemin_de_fer,a card game played in casinos in which two or more punters gamble against the banker; the player wins who holds 2 or 3 cards that total closest to nine
+22529,bacchant,(classical mythology) a priest or votary of Bacchus
+22530,bacchant bacchanal,a drunken reveller; a devotee of Bacchus
+22531,bacchante,(classical mythology) a priestess or votary of Bacchus
+22532,bachelor unmarried_man,a man who has never been married
+22533,bachelor's_degree baccalaureate,an academic degree conferred on someone who has successfully completed undergraduate studies
+22534,bachelor_girl bachelorette,a young unmarried woman who lives alone
+22535,bachelor_party,stag party held for a bachelor (usually on the night before he is married)
+22536,bachelorhood,the time of a man's life prior to marriage
+22537,bachelorhood,the state of being an unmarried man
+22538,bacillus B,aerobic rod-shaped spore-producing bacterium; often occurring in chainlike formations; found primarily in soil
+22539,bacitracin,a polypeptide antibiotic of known chemical structure effective against several types of Gram-positive organisms; usually applied locally
+22540,back,(football) a person who plays in the backfield
+22541,back,the part of a garment that covers the back of your body; "they pinned a `kick me' sign on his back"
+22542,back,(American football) the position of a player on a football team who is stationed behind the line of scrimmage
+22543,back backrest,a support that you can lean against while sitting; "the back of the dental chair was adjustable"
+22544,back dorsum,the posterior part of a human (or animal) body from the neck to the end of the spine; "his back was nicely tanned"
+22545,back rear,the part of something that is furthest from the normal viewer; "he stood at the back of the stage"; "it was hidden in the rear of the store"
+22546,back-formation,a word invented (usually unwittingly by subtracting an affix) on the assumption that a familiar word derives from it
+22547,back_brace,a brace worn to support the back
+22548,back_burner,reduced priority; "dozens of cases were put on the back burner"
+22549,back_channel,an alternative to the regular channels of communication that is used when agreements must be made secretly (especially in diplomacy or government); "they negotiated via a back channel"
+22550,back_circle,a feat in which an acrobat arches the back from a prone position and bends the knees until the toes touch the head
+22551,back_door backdoor,an undocumented way to get access to a computer system or the data it contains
+22552,back_door backdoor,a secret or underhand means of access (to a place or a position); "he got his job through the back door"
+22553,back_door backdoor back_entrance,an entrance at the rear of a building
+22554,back_exercise,exercise designed to strengthen the back muscles
+22555,back_judge,a football official
+22556,back_matter end_matter,written matter following the main text of a book
+22557,back_of_beyond,a very remote and inaccessible place; "you'd have to go to the back of beyond to find one of those"
+22558,back_porch,a porch for the back door
+22559,back_room,a room located in the rear of an establishment; usually accessible only to privileged groups
+22560,back_tooth posterior,a tooth situated at the back of the mouth
+22561,backache,an ache localized in the back
+22562,backband,a broad band that passes over the back of a horse and supports the shafts of a vehicle
+22563,backbeat,a loud steady beat
+22564,backbench,any of the seats occupied by backbenchers in the House of Commons
+22565,backbencher,a member of the House of Commons who is not a party leader
+22566,backbend,an acrobatic feat in which the trunk is bent backward from a standing position until the hands touch the floor
+22567,backblast back-blast,backfire from a recoilless weapon
+22568,backboard,a board used to support the back of someone or something
+22569,backboard basketball_backboard,a raised vertical board with basket attached; used to play basketball; "he banked the shot off the backboard"
+22570,backbone,the part of a network that connects other networks together; "the backbone is the part of a communication network that carries the heaviest traffic"
+22571,backbone grit guts moxie sand gumption,fortitude and determination; "he didn't have the guts to try it"
+22572,backdrop background backcloth,scenery hung at back of stage
+22573,backfield,the offensive football players who line up behind the linemen
+22574,backfire,a loud noise made by the explosion of fuel in the manifold or exhaust of an internal combustion engine
+22575,backfire,a fire that is set intentionally in order to slow an approaching forest fire or grassfire by clearing a burned area in its path
+22576,backfire boomerang,a miscalculation that recoils on its maker
+22577,backflow backflowing,a flow that returns toward its source
+22578,backgammon,a board game for two players; pieces move according to throws of the dice
+22579,backgammon_board,the board on which backgammon is played
+22580,background,relatively unimportant or inconspicuous accompanying situation; "when the rain came he could hear the sound of thunder in the background"
+22581,background,a person's social heritage: previous experience or training; "he is a lawyer with a sports background"
+22582,background background_knowledge,information that is essential to understanding a situation or problem; "the embassy filled him in on the background of the incident"
+22583,background background_signal,extraneous signals that can be confused with the phenomenon to be observed or measured; "they got a bad connection and could hardly hear one another over the background signals"
+22584,background desktop screen_background,(computer science) the area of the screen in graphical user interfaces against which icons and windows appear
+22585,background ground,the part of a scene (or picture) that lies behind objects in the foreground; "he posed her against a background of rolling hills"
+22586,background_noise ground_noise,extraneous noise contaminating sound measurements that cannot be separated from the desired signal
+22587,background_processing backgrounding,the execution of low priority programs while higher priority programs are not using the processing system
+22588,background_radiation,radiation coming from sources other than those being observed
+22589,backgrounder,a press conference or interview in which a government official explains to reporters the background of an action or policy; "the secretary gave us a backgrounder on public health issues"
+22590,backhand backhand_stroke backhand_shot,a return made with the back of the hand facing the direction of the stroke
+22591,backhand_drive,a hard straight return made on the backhand side
+22592,backhander,a backhanded blow
+22593,backhoe,an excavator whose shovel bucket is attached to a hinged boom and is drawn backward to move earth
+22594,backing backup championship patronage,the act of providing approval and support; "his vigorous backing of the conservatives got him in trouble with progressives"
+22595,backing mount,something forming a back that is added for strengthening
+22596,backlash,an adverse reaction to some political or social occurrence; "there was a backlash of intolerance"
+22597,backlighting,lighting from behind
+22598,backlog,the large log at the back of a hearth fire
+22599,backlog,an accumulation of jobs not done or materials not processed that are yet to be dealt with (especially unfilled customer orders for products or services)
+22600,backpack back_pack knapsack packsack rucksack haversack,a bag carried by a strap on your back or shoulder
+22601,backpacker packer,a hiker who wears a backpack
+22602,backpacking_tent pack_tent,a tent that can be carried in a backpack
+22603,backplate,plate armor protecting the back; worn as part of a cuirass
+22604,backroom,the meeting place of a group of leaders who make their decisions via private negotiations
+22605,backroom_boy brain_truster,an expert adviser involved in making important decisions but usually lacking official status
+22606,backsaw back_saw,a handsaw that is stiffened by metal reinforcement along the upper edge
+22607,backscratcher,someone who is willing to trade favors or services for mutual advantage
+22608,backscratcher,a long-handled scratcher for scratching your back
+22609,backseat,a secondary or inferior position or status; "tennis has had to take a backseat while his work is so demanding"
+22610,backseat,a seat at the back of a vehicle (especially the seat at the back of an automobile)
+22611,backseat_driver,a meddler who insists on giving unwanted advice
+22612,backslapper,someone who demonstrates enthusiastic or excessive cordiality
+22613,backsliding lapse lapsing relapse relapsing reversion reverting,a failure to maintain a higher state
+22614,backspace_character,a control character that indicates moving a space to the left
+22615,backspace_key backspace backspacer,the typewriter key used for back spacing
+22616,backspin,spin (usually of a moving ball) that retards or reverses the forward motion
+22617,backstairs,a second staircase at the rear of a building
+22618,backstay,a stay that supports the back of something
+22619,backstitch,an overlapping stitch made by starting the next stitch at the middle of the preceding one
+22620,backstop,(baseball) a fence or screen (as behind home plate) to prevent the ball from traveling out of the playing field
+22621,backstop,a precaution in case of an emergency; "he acted as a backstop in case anything went wrong"
+22622,backstroke,a swimming stroke that resembles the crawl except the swimmer lies on his or her back
+22623,backstroker,someone who swims the backstroke
+22624,backswimmer Notonecta_undulata,predaceous aquatic insect that swims on its back and may inflict painful bites
+22625,backsword,a sword with only one cutting edge
+22626,backup,an accumulation caused by clogging or a stoppage; "a traffic backup on the main street"; "he discovered a backup in the toilet"
+22627,backup computer_backup,(computer science) a copy of a file or directory on a separate storage device; "he made a backup in case the original was accidentally damaged or erased"
+22628,backup_file,(computer science) a computer file dedicated to storing and updating computer backups
+22629,backup_system,a computer system for making backups
+22630,backwater,a body of water that was created by a flood or tide or by being held or forced back by a dam; "the bayous and backwaters are breeding grounds for mosquitos"
+22631,backwater,a place or condition in which no development or progress is occurring; "the country is an economic backwater"
+22632,backwoods back_country boondocks hinterland,a remote and undeveloped area
+22633,backyard,the grounds in back of a house
+22634,bacon,back and sides of a hog salted and dried or smoked; usually sliced thin and fried
+22635,bacon-lettuce-tomato_sandwich BLT,sandwich filled with slices of bacon and tomato with lettuce
+22636,bacon_and_eggs,eggs (fried or scrambled) served with bacon
+22637,bacon_rind,the rind of bacon
+22638,bacon_strip,a slice of bacon
+22639,bacteremia bacteriemia bacteriaemia,transient presence of bacteria (or other microorganisms) in the blood
+22640,bacteria bacterium,(microbiology) single-celled or noncellular spherical or spiral or rod-shaped organisms lacking chlorophyll that reproduce by fission; important as pathogens and for biochemical properties; taxonomy is difficult; often considered to be plants
+22641,bacteria_bed,layer of sand or gravel used to expose sewage effluent to air and the action of microorganisms
+22642,bacteria_family,a family of bacteria
+22643,bacteria_genus,a genus of bacteria
+22644,bacteria_order,an order of bacteria
+22645,bacteria_species,a species of bacteria
+22646,bacterial_toxin,any endotoxin or exotoxin formed in or elaborated by bacterial cells
+22647,bactericide bacteriacide,any chemical agent that destroys bacteria
+22648,bacteriochlorophyll,a substance in photosensitive bacteria that is related to but different from chlorophyll of higher plants
+22649,bacteriologist,a biologist who studies bacteria
+22650,bacteriology,the branch of medical science that studies bacteria in relation to disease
+22651,bacteriolysis,dissolution or destruction of bacteria
+22652,bacteriophage phage,a virus that is parasitic (reproduces itself) in bacteria; "phage uses the bacterium's machinery and energy to produce more phage until the bacterium is destroyed and phage is released to invade surrounding bacteria"
+22653,bacteriostasis,inhibition of the growth of bacteria
+22654,bacteriostat,a chemical or biological material that inhibits bacterial growth
+22655,bacteroid,a rodlike bacterium (especially any of the rod-shaped or branched bacteria in the root nodules of nitrogen-fixing plants)
+22656,bad badness,that which is below standard or expectations as of ethics or decency; "take the bad with the good"
+22657,bad_block,(computer science) a block (usually one sector) that cannot reliably hold data
+22658,bad_check bad_cheque,a check that is dishonored on presentation because of insufficient funds; "issuing a bad check is a form of larceny"
+22659,bad_debt,a debt that is unlikely to be repaid
+22660,bad_egg,(old-fashioned slang) a bad person
+22661,bad_fairy,a fairy that tends to cause harm
+22662,bad_guy,any person who is not on your side
+22663,bad_luck mischance mishap,an unpredictable outcome that is unfortunate; "if I didn't have bad luck I wouldn't have any luck at all"
+22664,bad_manners ill-breeding,impoliteness resulting from ignorance
+22665,bad_person,a person who does harm to others
+22666,bad_temper ill_temper,a persisting angry mood
+22667,bad_weather inclemency inclementness,weather unsuitable for outdoor activities
+22668,baddeleyite,a mineral consisting of zirconium oxide
+22669,badge,an emblem (a small piece of plastic or cloth or metal) that signifies your status (rank or membership or affiliation etc.); "they checked everyone's badge before letting them in"
+22670,badge,any feature that is regarded as a sign of status (a particular power or quality or rank); "wearing a tie was regarded as a badge of respectability"
+22671,badger,sturdy carnivorous burrowing mammal with strong claws; widely distributed in the northern hemisphere
+22672,badgering worrying torment bedevilment,the act of harassing someone
+22673,badinage,frivolous banter
+22674,badlands,deeply eroded barren land
+22675,badminton,a game played on a court with light long-handled rackets used to volley a shuttlecock over a net
+22676,badminton_court,the court on which badminton is played
+22677,badminton_equipment,equipment for playing the game of badminton
+22678,badminton_racket badminton_racquet battledore,a light long-handled racket used by badminton players
+22679,badness severity severeness,used of the degree of something undesirable e.g. pain or weather
+22680,baedeker,any of a series of travel guidebooks published by the German firm founded by Karl Baedeker
+22681,baffle baffle_board,a flat plate that controls or directs the flow of fluid or energy
+22682,baffled,people who are frustrated and perplexed; "the children's faces clearly expressed the frustration of the baffled"
+22683,bag,the quantity of game taken in a particular period (usually by one person); "his bag included two deer"
+22684,bag,a flexible container with a single opening; "he stuffed his laundry into a large bag"
+22685,bag bagful,the quantity that a bag will hold; "he ate a large bag of popcorn"
+22686,bag handbag pocketbook purse,a container used for carrying money and small personal items or accessories (especially by women); "she reached into her bag and found a comb"
+22687,bag old_bag,an ugly or ill-tempered woman; "he was romancing the old bag for her money"
+22688,bag traveling_bag travelling_bag grip suitcase,a portable rectangular container for carrying clothes; "he carried his small bag onto the plane with him"
+22689,bag_lady,a homeless woman who carries all her possessions with her in shopping bags
+22690,bag_of_tricks,a supply of ways of accomplishing something; "every good mechanic has a large bag of tricks"
+22691,bagasse,the dry dusty pulp that remains after juice is extracted from sugar cane or similar plants
+22692,bagassosis bagascosis,alveolitis caused by inhaling bagasse (sugarcane dust)
+22693,bagatelle,a light piece of music for piano
+22694,bagatelle bar_billiards,a table game in which short cues are used to knock balls into holes that are guarded by wooden pegs; penalties are incurred if the pegs are knocked over
+22695,bagatelle fluff frippery frivolity,something of little value or significance
+22696,bagel beigel,(Yiddish) glazed yeast-raised doughnut-shaped roll with hard crust
+22697,baggage,a worthless or immoral woman
+22698,baggage,the portable equipment and supplies of an army
+22699,baggage luggage,cases used to carry belongings when traveling
+22700,baggage_car luggage_van,a railway car where passengers' bags are carried
+22701,baggage_claim,an area in an airport where arriving passengers can collect the luggage that has been carried in the hold of the aircraft
+22702,baggageman,an attendant who takes care of baggage
+22703,bagger,a machine for putting objects or substances into bags
+22704,bagman,a racketeer assigned to collect or distribute payoff money
+22705,bagpipe,a tubular wind instrument; the player blows air into a bag and squeezes it out through the drone
+22706,baguet baguette,narrow French stick loaf
+22707,baht tical,the basic unit of money in Thailand
+22708,bail,the legal system that allows an accused person to be temporarily released from custody (usually on condition that a sum of money guarantees their appearance at trial); "he is out on bail"
+22709,bail bail_bond bond,(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial; "the judge set bail at $10,000"; "a $10,000 bond was furnished by an alderman"
+22710,bailee,the agent to whom property involved in a bailment is delivered
+22711,bailey,the outer courtyard of a castle
+22712,bailey,the outer defensive wall that surrounds the outer courtyard of a castle
+22713,bailiff,an officer of the court who is employed to execute writs and processes and make arrests etc.
+22714,bailiffship,the office of bailiff
+22715,bailiwick,the area over which a bailiff has jurisdiction
+22716,bailment,the delivery of personal property in trust by the bailor to the bailee
+22717,bailor,the person who delivers personal property (goods or money) in trust to the bailee in a bailment
+22718,bain-marie,a large pan that is filled with hot water; smaller pans containing food can be set in the larger pan to keep food warm or to cook food slowly
+22719,bairn,a child: son or daughter
+22720,bait come-on hook lure sweetener,anything that serves as an enticement
+22721,bait decoy lure,something used to lure fish or other animals into danger so they can be trapped or killed
+22722,bait_and_switch,a deceptive way of selling that involves advertising a product at a very low price in order to attract customers who are then persuaded to switch to a more expensive product
+22723,bait_casting,the single-handed rod casting of a relatively heavy (artificial) bait
+22724,baiting,harassment especially of a tethered animal
+22725,baiza baisa,1,000 baiza equal 1 riyal-omani in Oman
+22726,baize,a bright green fabric napped to resemble felt; used to cover gaming tables
+22727,baked_Alaska,cake covered with ice cream and meringue browned quickly in an oven
+22728,baked_goods,foods (like breads and cakes and pastries) that are cooked in an oven
+22729,baked_potato,potato that has been cooked by baking it in an oven
+22730,baker,someone who bakes commercially
+22731,baker bread_maker,someone who bakes bread or cake
+22732,baker's_eczema,allergic eczema caused by flour or other ingredients handled by bakers
+22733,baker's_yeast brewer's_yeast Saccharomyces_cerevisiae,used as a leaven in baking and brewing
+22734,bakery bakeshop bakehouse,a workplace where baked goods (breads and cakes and pastries) are produced or sold
+22735,baking,making bread or cake or pastry etc.
+22736,baking,cooking by dry heat in an oven
+22737,baking-powder_biscuit,leavened with baking powder
+22738,baking_powder,any of various powdered mixtures used in baking as a substitute for yeast
+22739,baklava,rich Middle Eastern cake made of thin layers of flaky pastry filled with nuts and honey
+22740,balaclava balaclava_helmet,a cap that is close-fitting and woolen and covers all of the head but the face
+22741,balagan,a word for chaos or fiasco borrowed from modern Hebrew (where it is a loan word from Russian); "it was utter and complete balagan!"
+22742,balalaika,a stringed instrument that has a triangular body and three strings
+22743,balance,a state of equilibrium
+22744,balance,the difference between the totals of the credit and debit sides of an account
+22745,balance,equality between the totals of the credit and debit sides of an account
+22746,balance,a scale for weighing; depends on pull of gravity
+22747,balance equilibrium equipoise counterbalance,equality of distribution
+22748,balance-of-payments_problem,an economic problem caused by payments for imports being greater than receipts for exports
+22749,balance_beam beam,a gymnastic apparatus used by women gymnasts
+22750,balance_of_payments balance_of_international_payments,a system of recording all of a country's economic transactions with the rest of the world over a period of one year; "a favorable balance of payments exists when more payments are coming in than going out"
+22751,balance_of_power,an equilibrium of power between nations
+22752,balance_of_trade trade_balance visible_balance trade_gap,the difference in value over a period of time of a country's imports and exports of merchandise; "a nation's balance of trade is favorable when its exports exceed its imports"
+22753,balance_sheet,a record of the financial situation of an institution on a particular date by listing its assets and the claims against those assets
+22754,balance_wheel balance,a wheel that regulates the rate of movement in a machine; especially a wheel oscillating against the hairspring of a timepiece to regulate its beat
+22755,balanced_budget,a budget is balanced when current expenditures are equal to receipts
+22756,balanced_diet,a diet that contains adequate amounts of all the necessary nutrients required for healthy growth and activity
+22757,balancer,an acrobat who balances himself in difficult positions
+22758,balanitis,inflammation of the head of the penis
+22759,balanoposthitis,inflammation of both the head of the penis and the foreskin
+22760,balas balas_ruby,a pale rose-colored variety of the ruby spinel
+22761,balata balata_tree beefwood bully_tree Manilkara_bidentata,a tropical hardwood tree yielding balata gum and heavy red timber
+22762,balata gutta_balata,when dried yields a hard substance used e.g. in golf balls
+22763,balboa,the basic unit of money in Panama; equal to 100 centesimos
+22764,balbriggan,a cotton knit fabric used for underwear
+22765,balcony,an upper floor projecting from the rear over the main floor in an auditorium
+22766,balcony,a platform projecting from the wall of a building and surrounded by a balustrade or railing or parapet
+22767,bald-faced_hornet white-faced_hornet Vespula_maculata,North American hornet
+22768,bald_cypress swamp_cypress pond_bald_cypress southern_cypress Taxodium_distichum,common cypress of southeastern United States having trunk expanded at base; found in coastal swamps and flooding river bottoms
+22769,bald_eagle American_eagle Haliaeetus_leucocephalus,a large eagle of North America that has a white head and dark wings and body
+22770,baldachin,ornamented canopy supported by columns or suspended from a roof or projected from a wall (as over an altar)
+22771,balderdash fiddle-faddle piffle,trivial nonsense
+22772,baldhead baldpate baldy skinhead skin,a person whose head is bald or shaved
+22773,baldness phalacrosis,the condition of having no hair on the top of the head
+22774,baldric baldrick,a wide (ornamented) belt worn over the right shoulder to support a sword or bugle by the left hip
+22775,bale,a large bundle bound for storage or transport
+22776,baleen_whale whalebone_whale,whale with plates of whalebone along the upper jaw for filtering plankton from the water
+22777,baling_wire,wire used to make bales
+22778,balk,an illegal pitching motion while runners are on base
+22779,balk baulk,the area on a billiard table behind the balkline; "a player with ball in hand must play from the balk"
+22780,balker baulker noncompliant,a person who refuses to comply
+22781,balkiness,likely to stop abruptly and unexpectedly
+22782,balkline baulk-line string_line,line across a billiard table behind which the cue balls are placed at the start of a game
+22783,ball,the people assembled at a lavish formal dance; "the ball was already emptying out before the fire alarm sounded"
+22784,ball,a more or less rounded anatomical body or mass; "the ball at the base of the thumb"; "he stood on the balls of his feet"
+22785,ball,a spherical object used as a plaything; "he played with his rubber ball in the bathtub"
+22786,ball,round object that is hit or thrown or kicked in games; "the ball travelled 90 mph on his serve"; "the mayor threw out the first ball"; "the ball rolled into the corner pocket"
+22787,ball,a pitch that is not in the strike zone; "he threw nine straight balls before the manager yanked him"
+22788,ball clod glob lump clump chunk,a compact mass; "a ball of mud caught him on the shoulder"
+22789,ball formal,a lavish dance requiring formal attire
+22790,ball globe orb,an object with a spherical shape; "a ball of fire"
+22791,ball-and-socket_joint,a joint that can rotate within a socket
+22792,ball-and-socket_joint spheroid_joint cotyloid_joint enarthrodial_joint enarthrosis articulatio_spheroidea,a freely moving joint in which a sphere on the head of one bone fits into a rounded cavity in the other bone
+22793,ball-buster ball-breaker,a demanding woman who destroys men's confidence
+22794,ball-buster ball-breaker,a job or situation that is demanding and arduous and punishing; "Vietnam was a ball-breaker"
+22795,ball-peen_hammer,a hammer with one round and one flat end; used in working metal
+22796,ball_and_chain,heavy iron ball attached to a prisoner by a chain
+22797,ball_bearing needle_bearing roller_bearing,bearings containing small metal balls
+22798,ball_boy,a boy who retrieves balls for tennis players
+22799,ball_carrier runner,(football) the player who is carrying (and trying to advance) the ball on an offensive play
+22800,ball_cartridge,a general purpose cartridge having a primer and a ball and a full charge of powder
+22801,ball_field baseball_field diamond,the baseball playing field
+22802,ball_game ballgame,a field game played with a ball (especially baseball)
+22803,ball_gown,the most formal gown; worn to a ball
+22804,ball_hawk,a team athlete who is skilled at stealing or catching the ball
+22805,ball_hawking,a skillful maneuver in catching balls or in stealing the ball from the opposing team
+22806,ball_valve,any valve that checks flow by the seating of a ball
+22807,ballad lay,a narrative song with a recurrent refrain
+22808,ballad lay,a narrative poem of popular origin
+22809,ballade,a poem consisting of 3 stanzas and an envoy
+22810,ballast,coarse gravel laid to form a bed for streets and railroads
+22811,ballast,an attribute that tends to give stability in character and morals; something that steadies the mind or feelings
+22812,ballast,any heavy material used to stabilize a ship or airship
+22813,ballast light_ballast,an electrical device for starting and regulating fluorescent and discharge lamps
+22814,ballast_resistor ballast barretter,a resistor inserted into a circuit to compensate for changes (as those arising from temperature fluctuations)
+22815,ballcock ball_cock,floating ball that controls level in a water tank
+22816,balldress,a suit or dress for formal occasions
+22817,ballerina danseuse,a female ballet dancer
+22818,ballet,music written for a ballet
+22819,ballet concert_dance,a theatrical representation of a story that is performed to music by trained dancers
+22820,ballet_company,a company that produces ballets
+22821,ballet_dancer,a trained dancer who is a member of a ballet company
+22822,ballet_master,a man who directs and teaches and rehearses dancers for a ballet company
+22823,ballet_mistress,a woman who directs and teaches and rehearses dancers for a ballet company
+22824,ballet_position,classical position of the body and especially the feet in ballet
+22825,ballet_skirt tutu,very short skirt worn by ballerinas
+22826,balletomane,a ballet enthusiast
+22827,balletomania,extraordinary enthusiasm for ballets
+22828,ballgame new_ballgame,a particular situation that is radically different from the preceding situation; "HDTV looks the same but it's really a whole new ballgame"
+22829,ballistic_galvanometer,a moving-coil galvanometer that measures electric charge
+22830,ballistic_identification ballistic_fingerprinting bullet_fingerprinting,identification of the gun that fired a bullet from an analysis of the unique marks that every gun makes on the bullet it fires and on the shell ejected from it
+22831,ballistic_missile,a missile that is guided in the first part of its flight but falls freely as it approaches target
+22832,ballistic_pendulum,a physical pendulum consisting of a large mass suspended from a rod; when it is struck by a projectile its displacement is used to measure the projectile's velocity
+22833,ballistics,the science of flight dynamics
+22834,ballistics ballistic_trajectory,the trajectory of an object in free flight
+22835,ballistocardiogram,a graphical recording made by a ballistocardiograph
+22836,ballistocardiograph cardiograph,a medical instrument that measures the mechanical force of cardiac contractions and the amount of blood passing through the heart during a specified period by measuring the recoil of the body as blood is pumped from the ventricles
+22837,balloon,small thin inflatable rubber bag with narrow neck
+22838,balloon,large tough nonrigid bag filled with gas or heated air
+22839,balloon_bomb Fugo,a bomb carried by a balloon; "In World War II the Japanese launched balloon bombs against North America"
+22840,balloon_flower scented_penstemon Penstemon_palmeri,fragrant puffed-up white to reddish-pink flowers in long narrow clusters on erect stems; Arizona to New Mexico and Utah
+22841,balloon_sail,any light loose sail
+22842,balloon_vine heart_pea Cardiospermum_halicacabum,woody perennial climbing plant with large ornamental seed pods that resemble balloons; tropical India and Africa and America
+22843,balloonfish Diodon_holocanthus,similar to but smaller than porcupinefish
+22844,ballooning,flying in a balloon
+22845,balloonist,someone who flies a balloon
+22846,ballot,a document listing the alternatives that is used in voting
+22847,ballot_box,a box where voters deposit their ballots
+22848,ballottement,a palpatory technique for feeling a floating object in the body (especially for determining the position of a fetus by feeling the rebound of the fetus after a quick digital tap on the wall of the uterus)
+22849,ballpark park,a facility in which ball games are played (especially baseball games); "take me out to the ballpark"
+22850,ballplayer baseball_player,an athlete who plays baseball
+22851,ballpoint ballpoint_pen ballpen Biro,a pen that has a small metal ball as the point of transfer of ink to paper
+22852,ballroom dance_hall dance_palace,large room used mainly for dancing
+22853,ballroom_dancing ballroom_dance,any of a variety of social dances performed by couples in a ballroom
+22854,ballup balls-up cockup mess-up,something badly botched or muddled
+22855,ballyhoo hoopla hype plug,blatant or sensational promotion
+22856,balm,any of various aromatic resinous substances used for healing and soothing
+22857,balm_of_Gilead,a fragrant oleoresin
+22858,balm_of_gilead Commiphora_meccanensis,small evergreen tree of Africa and Asia; leaves have a strong aromatic odor when bruised
+22859,balminess softness,the quality of weather that is deliciously mild and soothing; "the day's heat faded into balminess"; "the climate had the softness of the south of France"
+22860,balmoral,a sturdy laced walking shoe
+22861,baloney boloney bilgewater bosh drool humbug taradiddle tarradiddle tommyrot tosh twaddle,pretentious or silly talk or writing
+22862,balsa Ochroma_lagopus,forest tree of lowland Central America having a strong very light wood; used for making floats and rafts and in crafts
+22863,balsa balsa_wood,strong lightweight wood of the balsa tree used especially for floats
+22864,balsa_raft Kon_Tiki,a light raft made of balsa
+22865,balsam,any of various fragrant oleoresins used in medicines and perfumes
+22866,balsam,any seed plant yielding balsam
+22867,balsam,an ointment containing a fragrant resin
+22868,balsam_apple Momordica_balsamina,a tropical Old World flowering vine with red or orange warty fruit
+22869,balsam_fir balm_of_Gilead Canada_balsam Abies_balsamea,medium-sized fir of northeastern North America; leaves smell of balsam when crushed; much used for pulpwood and Christmas trees
+22870,balsam_of_Peru,dark brown syrupy balsam from the Peruvian balsam tree used especially in dressing wounds and treating certain skin diseases
+22871,balsam_pear Momordica_charantia,tropical Old World vine with yellow-orange fruit
+22872,balsam_poplar hackmatack tacamahac Populus_balsamifera,poplar of northeastern North America with broad heart-shaped leaves
+22873,balsam_willow Salix_pyrifolia,small shrubby tree of eastern North America having leaves exuding an odor of balsam when crushed
+22874,balsam_woolly_aphid Adelges_piceae,a variety of adelgid
+22875,balsamroot,a plant of the genus Balsamorhiza having downy leaves in a basal rosette and yellow flowers and long balsam-scented taproots
+22876,baluster,one of a number of closely spaced supports for a railing
+22877,bamboo,the hard woody stems of bamboo plants; used in construction and crafts and fishing poles
+22878,bamboo,woody tropical grass having hollow woody stems; mature canes used for construction and furniture
+22879,bamboo_curtain,an ideological barrier around communist China especially in the 1950s and 1960s
+22880,bamboo_fern Coniogramme_japonica,fast-growing sturdy Japanese fern; cultivated for their attractive broad dark-green pinnate fronds
+22881,bamboo_palm Raffia_vinifera,a palm of the genus Raffia
+22882,bamboo_shoot,edible young shoots of bamboo
+22883,ban,100 bani equal 1 leu in Moldova
+22884,ban,100 bani equal 1 leu in Romania
+22885,ban banning forbiddance forbidding,an official prohibition or edict against something
+22886,banana,elongated crescent-shaped yellow fruit with soft sweet flesh
+22887,banana banana_tree,any of several tropical and subtropical treelike herbs of the genus Musa having a terminal crown of large entire leaves and usually bearing hanging clusters of elongated fruits
+22888,banana_boat,a ship designed to transport bananas
+22889,banana_bread,moist bread containing banana pulp
+22890,banana_oil,a liquid ester derived from amyl alcohol; has the odor of bananas
+22891,banana_passion_fruit Passiflora_mollissima,cultivated for fruit
+22892,banana_peel banana_skin,the skin of a banana (especially when it is stripped off and discarded); "he slipped on a banana skin and almost fell"
+22893,banana_quit,any of several honeycreepers
+22894,banana_republic,a small country (especially in Central America) that is politically unstable and whose economy is dominated by foreign companies and depends on one export (such as bananas)
+22895,banana_split,a banana split lengthwise and topped with scoops of ice cream and sauces and nuts and whipped cream
+22896,band,instrumentalists not including string players
+22897,band,a range of frequencies between two limits
+22898,band,a driving belt in machinery
+22899,band,a thin flat strip or loop of flexible material that goes around or over something else, typically to hold it together or as a decoration
+22900,band,a restraint put around something to hold it together
+22901,band,a thin flat strip of flexible material that is worn around the body or one of the limbs (especially to decorate the body)
+22902,band banding stria striation,a stripe or stripes of contrasting color; "chromosomes exhibit characteristic bands"; "the black and yellow banding of bees and wasps"
+22903,band banding stripe,an adornment consisting of a strip of a contrasting color or material
+22904,band ring,a strip of material attached to the leg of a bird to identify it (as in studies of bird migration)
+22905,band-tailed_pigeon band-tail_pigeon bandtail Columba_fasciata,wild pigeon of western North America; often mistaken for the now extinct passenger pigeon
+22906,band_aid quick_fix quickie quicky,hurried repair
+22907,bandage patch,a piece of soft material that covers and protects an injured part of the body
+22908,bandanna bandana,large and brightly colored handkerchief; often used as a neckerchief
+22909,bandbox,a light cylindrical box for holding light articles of attire (especially hats)
+22910,banded_gecko,any of several geckos with dark bands across the body and differing from typical geckos in having movable eyelids; of United States southwest and Florida Gulf Coast
+22911,banded_krait banded_adder Bungarus_fasciatus,sluggish krait banded with black and yellow
+22912,banded_palm_civet Hemigalus_hardwickii,an East Indian civet
+22913,banded_purple white_admiral Limenitis_arthemis,North American butterfly with blue-black wings crossed by a broad white band
+22914,banded_sand_snake Chilomeniscus_cinctus,a sand snake of southwestern United States; lives in fine to coarse sand or loamy soil in which it `swims'; banding resembles that of coral snakes
+22915,banded_stilt Cladorhyncus_leucocephalum,web-footed Australian stilt with reddish-brown pectoral markings
+22916,banderilla,a decorated dart that is implanted in the neck or shoulders of the bull during a bull fight
+22917,banderillero,the bullfighter who implants decorated darts (banderillas) into the neck or shoulders of the bull during a bull fight
+22918,bandicoot,any of various agile ratlike terrestrial marsupials of Australia and adjacent islands; insectivorous and herbivorous
+22919,bandicoot_rat mole_rat,burrowing scaly-tailed rat of India and Ceylon
+22920,bandit brigand,an armed thief who is (usually) a member of a band
+22921,banditry,the practice of plundering in gangs
+22922,bandleader,the leader of a dance band
+22923,bandmaster,the conductor of a band
+22924,bandoleer bandolier,a broad cartridge belt worn over the shoulder by soldiers
+22925,bandoneon,a type of concertina popular in South America
+22926,bandsaw band_saw,an endless saw consisting of a toothed metal band that is driven around two wheels
+22927,bandsman,a player in a band (especially a military band)
+22928,bandstand outdoor_stage stand,a platform where a (brass) band can play in the open air
+22929,bandwagon,a popular trend that attracts growing support; "when they saw how things were going everybody jumped on the bandwagon"
+22930,bandwagon,a large ornate wagon for carrying a musical band; "the gaudy bandwagon led the circus parade"
+22931,bandwagon_effect,the phenomenon of a popular trend attracting even greater popularity; "in periods of high merger activity there is a bandwagon effect with more and more firms seeking to engage in takeover activity"; "polls are accused of creating a bandwagon effect to benefit their candidate"
+22932,bandwidth,a data transmission rate; the maximum amount of information (bits/second) that can be transmitted along a channel
+22933,bane curse scourge nemesis,something causing misery or death; "the bane of my life"
+22934,baneberry,a poisonous berry of a plant of the genus Actaea
+22935,baneberry cohosh herb_Christopher,a plant of the genus Actaea having acrid poisonous berries
+22936,bang boot charge rush flush thrill kick,the swift release of a store of affective force; "they got a great bang out of it"; "what a boot!"; "he got a quick rush from injecting heroin"; "he does it for kicks"
+22937,bang clap eruption blast bam,a sudden very loud noise
+22938,bang fringe,a border of hair that is cut short and hangs across the forehead
+22939,bangalore_torpedo,a metal pipe filled with explosive, used to detonate land mines or to clear a path through barbed wire
+22940,banger,(British informal) pork sausage
+22941,banging,a continuing very loud noise
+22942,bangle bauble gaud gewgaw novelty fallal trinket,cheap showy jewelry or ornament on clothing
+22943,banishment ostracism Coventry,the state of being banished or ostracized (excluded from society by general consent); "the association should get rid of its elderly members--not by euthanasia, of course, but by Coventry"
+22944,banishment proscription,rejection by means of an act of banishing or proscribing someone
+22945,banjo,a stringed instrument of the guitar family that has long neck and circular body
+22946,bank,a supply or stock held in reserve for future use (especially in emergencies)
+22947,bank,the funds held by a gambling house or the dealer in some gambling games; "he tried to break the bank at Monte Carlo"
+22948,bank,sloping land (especially the slope beside a body of water); "they pulled the canoe up on the bank"; "he sat on the bank of the river and watched the currents"
+22949,bank,a long ridge or pile; "a huge bank of earth"
+22950,bank,an arrangement of similar objects in a row or in tiers; "he operated a bank of switches"
+22951,bank,a flight maneuver; aircraft tips laterally about its longitudinal axis (especially in turning); "the plane went into a steep bank"
+22952,bank bank_building,a building in which the business of banking transacted; "the bank is on the corner of Nassau and Witherspoon"
+22953,bank cant camber,a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force
+22954,bank-depositor_relation,the responsibility of a bank to act in the best interests of the depositors
+22955,bank_account,a fund that a customer has entrusted to a bank and from which the customer can make withdrawals; "he moved his bank account to a new bank"
+22956,bank_card,a credit card issued by a bank
+22957,bank_charter,a charter authorizing the operation of a bank
+22958,bank_closing,act of closing down a bank because of a fiscal emergency or failure
+22959,bank_commissioner,a commissioner appointed to supervise banks; a state superintendent of banks
+22960,bank_draft banker's_draft,a draft drawn by a bank against funds deposited in another bank
+22961,bank_examination,an examination of the affairs and records of a bank by a state or federal bank examiner
+22962,bank_examiner,an examiner appointed to audit the accounts of banks in a given jurisdiction
+22963,bank_failure,the inability of a bank to meet its credit obligations
+22964,bank_gravel pit-run_gravel pit_run,gravel as found in natural deposits
+22965,bank_guard,a security guard at a bank
+22966,bank_holding_company,a holding company owning or controlling one or more banks
+22967,bank_holiday,any of several weekdays when banks are closed; a legal holiday in Britain
+22968,bank_identification_number BIN ABA_transit_number,an identification number consisting of a two-part code assigned to banks and savings associations; the first part shows the location and the second identifies the bank itself
+22969,bank_loan,a loan made by a bank; to be repaid with interest on or before a fixed date
+22970,bank_manager,manager of a branch office of a bank
+22971,bank_martin bank_swallow sand_martin Riparia_riparia,swallow of the northern hemisphere that nests in tunnels dug in clay or sand banks
+22972,bank_rate,the discount rate fixed by a central bank
+22973,bank_robber,a robber of banks
+22974,bank_run,the concerted action of depositors who try to withdraw their money from a bank because they think it will fail
+22975,bank_shot,a basketball shot that bounces off of the backboard before passing through the hoop
+22976,bank_statement,a periodic statement prepared by a bank for each client; "I wish my bank statement arrived earlier in the month"
+22977,bank_withdrawal,the withdrawal of money from your account at a bank
+22978,bankbook passbook,a record of deposits and withdrawals and interest held by depositors at certain banks
+22979,banker,a financier who owns or is an executive in a bank
+22980,banker,the person in charge of the bank in a gambling game
+22981,banking,engaging in the business of keeping money for savings and checking accounts or for exchange or for issuing loans and credit etc.
+22982,banking,transacting business with a bank; depositing or withdrawing funds or requesting a loan etc.
+22983,banking_game,any gambling game in which bets are laid against the gambling house or the dealer
+22984,banking_industry banking_system,banks collectively
+22985,bankroll roll,a roll of currency notes (often taken as the resources of a person or business etc.); "he shot his roll on a bob-tailed nag"
+22986,bankrupt insolvent,someone who has insufficient assets to cover their debts
+22987,bankruptcy,a state of complete lack of some abstract property; "spiritual bankruptcy"; "moral bankruptcy"; "intellectual bankruptcy"
+22988,bankruptcy,a legal process intended to insure equality among the creditors of a corporation declared to be insolvent
+22989,bankruptcy failure,inability to discharge all your debts as they come due; "the company had to declare bankruptcy"; "fraudulent loans led to the failure of many banks"
+22990,banksia,any shrub or tree of the genus Banksia having alternate leathery leaves apetalous yellow flowers often in showy heads and conelike fruit with winged seeds
+22991,banksia_rose Rosa_banksia,Chinese evergreen climbing rose with yellow or white single flowers
+22992,banner streamer,long strip of cloth or paper used for decoration or advertising
+22993,banning-order,an order that bans something
+22994,bannister banister balustrade balusters handrail,a railing at the side of a staircase or balcony to prevent people from falling
+22995,bannock,a flat bread made of oat or barley flour; common in New England and Scotland
+22996,banns,a public announcement of a proposed marriage
+22997,banquet feast,a ceremonial dinner party for many people
+22998,banquet feast spread,a meal that is well prepared and greatly enjoyed; "a banquet for the graduating seniors"; "the Thanksgiving feast"; "they put out quite a spread"
+22999,banquette,an upholstered bench
+23000,banshee banshie,(Irish folklore) a female spirit who wails to warn of impending death
+23001,bantam,any of various small breeds of fowl
+23002,bantamweight,weighs 115-126 pounds
+23003,bantamweight,an amateur boxer who weighs no more than 119 pounds
+23004,banteng banting tsine Bos_banteng,wild ox of the Malay Archipelago
+23005,banter raillery give-and-take backchat,light teasing repartee
+23006,banyan banian,a loose fitting jacket; originally worn in India
+23007,banyan banyan_tree banian banian_tree Indian_banyan East_Indian_fig_tree Ficus_bengalensis,East Indian tree that puts out aerial shoots that grow down into the soil forming additional trunks
+23008,banzai,a Japanese cheer of enthusiasm or triumph
+23009,banzai_attack banzai_charge,a mass attack of troops without concern for casualties; originated by Japanese who accompanied it with yells of `banzai'
+23010,baobab monkey-bread_tree Adansonia_digitata,African tree having an exceedingly thick trunk and fruit that resembles a gourd and has an edible pulp called monkey bread
+23011,bap,a small loaf or roll of soft bread
+23012,baptism,a Christian sacrament signifying spiritual cleansing and rebirth; "most churches baptize infants but some insist on adult baptism"
+23013,baptismal_font baptistry baptistery font,bowl for baptismal water
+23014,bar,(meteorology) a unit of pressure equal to a million dynes per square centimeter; "unfortunately some writers have used bar for one dyne per square centimeter"
+23015,bar,a submerged (or partly submerged) ridge in a river or along a shore; "the boat ran aground on a submerged bar in the river"
+23016,bar,a horizontal rod that serves as a support for gymnasts as they perform exercises
+23017,bar,a heating element in an electric fire; "an electric fire with three bars"
+23018,bar,(law) a railing that encloses the part of the courtroom where the judges and lawyers sit and the case is tried; "spectators were not allowed past the bar"
+23019,bar,a counter where you can obtain food or drink; "he bought a hot dog and a coke at the bar"
+23020,bar,an obstruction (usually metal) placed at the top of a goal; "it was an excellent kick but the ball hit the bar"
+23021,bar,a rigid piece of metal or wood; usually used as a fastening or obstruction or weapon; "there were bars in the windows to prevent escape"
+23022,bar_bit,a bit for horses that is a solid bar of metal
+23023,bar_chart bar_graph,a chart with bars whose lengths are proportional to quantities
+23024,bar_code Universal_Product_Code,code consisting of a series of vertical bars of variable width that are scanned by a laser; printed on consumer product packages to identify the item for a computer that provides the price and registers inventory information
+23025,bar_examination bar_exam,an examination conducted at regular intervals to determine whether a candidate is qualified to practice law in a given jurisdiction; "applicants may qualify to take the New York bar examination by graduating from an approved law school"; "he passed the bar exam on his third try"
+23026,bar_fly,a drinker who frequents bars
+23027,bar_line,a vertical line before the accented beat marking the boundary between musical bars
+23028,bar_magnet,a magnet in the form of a bar with magnetic poles at each end
+23029,bar_mask,a catcher's mask with bars
+23030,bar_mitzvah,(Judaism) an initiation ceremony marking the 13th birthday of a Jewish boy and signifying the beginning of religious responsibility; "a bar mitzvah is an important social event"
+23031,bar_printer,an impact printer that uses a bar to carry the type slugs
+23032,bar_sinister bend_sinister,a mark of bastardy; lines from top right to bottom left
+23033,bar_soap,soap in the form of a bar
+23034,barb,the pointed part of barbed wire
+23035,barb,a subsidiary point facing opposite from the main point that makes an arrowhead or spear hard to remove
+23036,barb,one of the parallel filaments projecting from the main shaft of a feather
+23037,barbados_cherry acerola Surinam_cherry West_Indian_cherry Malpighia_glabra,tropical American shrub bearing edible acid red fruit resembling cherries
+23038,barbarization barbarisation,an act that makes people primitive and uncivilized
+23039,barbasco joewood Jacquinia_keyensis,West Indian shrub or small tree having leathery saponaceous leaves and extremely hard wood
+23040,barbecue barbeque,meat that has been barbecued or grilled in a highly seasoned sauce
+23041,barbecue barbeque,a cookout in which food is cooked over an open fire; especially a whole animal carcass roasted on a spit
+23042,barbecue barbeque,a rack to hold meat for cooking over hot charcoal usually out of doors
+23043,barbecue_pit,a pit where wood or charcoal is burned to make a bed of hot coals suitable for barbecuing meat
+23044,barbecue_sauce,spicy sweet and sour sauce usually based on catsup or chili sauce
+23045,barbecued_spareribs spareribs,baked or roasted with a spicy sauce
+23046,barbecued_wing,chicken wings cooked in barbecue sauce
+23047,barbecuing,roasting a large piece of meat on a revolving spit out of doors over an open fire
+23048,barbed_wire barbwire,strong wire with barbs at regular intervals used to prevent passage
+23049,barbel feeler,slender tactile process on the jaws of a fish
+23050,barbell,a bar to which heavy discs are attached at each end; used in weightlifting
+23051,barber,a hairdresser who cuts hair and shaves beards as a trade
+23052,barber's_pole,striped pole outside a barbershop
+23053,barber_chair,a large fixed adjustable chair in which barbers seat their customers
+23054,barberry,any of numerous plants of the genus Berberis having prickly stems and yellow flowers followed by small red berries
+23055,barbershop,a shop where men can get their hair cut
+23056,barbershop_quartet,an unaccompanied quartet of (usually male) voices singing sentimental songs in four-part harmony
+23057,barbet,small brightly colored stout-billed tropical bird having short weak wings
+23058,barbette,(formerly) a mound of earth inside a fort from which heavy gun can be fired over the parapet
+23059,barbette_carriage,a gun carriage elevated so that the gun can be fired over the parapet
+23060,barbican barbacan,a tower that is part of a defensive structure (such as a castle)
+23061,barbital veronal barbitone diethylbarbituric_acid diethylmalonylurea,a barbiturate used as a hypnotic
+23062,barbiturate,organic compound having powerful soporific effect; overdose can be fatal
+23063,barbituric_acid malonylurea,a white crystalline acid derived from pyrimidine; used in preparing barbiturate drugs
+23064,barbu Polydactylus_virginicus,found along western Atlantic coast
+23065,barcarole barcarolle,a boating song sung by Venetian gondoliers
+23066,bard,a lyric poet
+23067,bard,an ornamental caparison for a horse
+23068,bardolatry,the idolization of William Shakespeare
+23069,bare_bone,bone stripped of flesh
+23070,bare_bones,(plural) the most basic facts or elements; "he told us only the bare bones of the story"
+23071,bareboat,a vessel (such as a yacht) that can be chartered without a captain or crew or provisions
+23072,bareboating,boating by chartering a bareboat and providing your own crew and provisions; "we saved money by bareboating"
+23073,bareness,the state of being unclothed and exposed (especially of a part of the body)
+23074,bareness starkness,an extreme lack of furnishings or ornamentation; "I was struck by the starkness of my father's room"
+23075,bargain buy steal,an advantageous purchase; "she got a bargain at the auction"; "the stock was a real buy at that price"
+23076,bargain deal,an agreement between parties (usually arrived at after discussion) fixing obligations of each; "he made a bargain with the devil"; "he rose to prominence through a series of shady deals"
+23077,bargain_hunter,a shopper who hunts for bargains
+23078,bargain_rate cheapness cut_rate cut_price,a price below the standard price
+23079,bargainer,negotiator of the terms of a transaction; "he is a hard bargainer"
+23080,bargaining,the negotiation of the terms of a transaction or agreement
+23081,bargaining_chip,leverage in the form of an inducement or a concession useful in successful negotiations
+23082,barge flatboat hoy lighter,a flatbottom boat for carrying heavy loads (especially on canals)
+23083,barge_pole,a long pole used to propel or guide a barge; "I wouldn't touch it with a barge pole"
+23084,bargello flame_stitch,needlepoint embroidery stitch that produces zigzag lines
+23085,barilla Halogeton_souda,Algerian plant formerly burned to obtain calcium carbonate
+23086,baritone baritone_horn,the second lowest brass wind instrument
+23087,baritone baritone_voice,the second lowest adult male singing voice
+23088,baritone barytone,a male singer
+23089,barium Ba atomic_number_56,a soft silvery metallic element of the alkali earth group; found in barite
+23090,barium_dioxide barium_peroxide,a white toxic powder obtained by heating barium oxide in air
+23091,barium_enema,enema in which a contrast medium (usually barium sulfate) is injected into the rectum and X-rays are taken to search for lesions
+23092,barium_hydroxide,white poisonous crystals; made by dissolving barium oxide in water
+23093,barium_monoxide barium_oxide barium_protoxide,an oxide of barium; a whitish toxic powder
+23094,barium_sulphate barium_sulfate blanc_fixe,a white insoluble radiopaque powder used as a pigment
+23095,bark,tough protective covering of the woody stems and roots of trees and other woody plants
+23096,bark,a noise resembling the bark of a dog
+23097,bark,the sound made by a dog
+23098,bark barque,a sailing ship with 3 (or more) masts
+23099,bark-louse bark_louse,any of several insects living on the bark of plants
+23100,bark_beetle,small beetle that bores tunnels in the bark and wood of trees; related to weevils
+23101,barker,someone who stands in front of a show (as at a carnival) and gives a loud colorful sales talk to potential customers
+23102,barking_frog robber_frog Hylactophryne_augusti,of southwest United States and Mexico; call is like a dog's bark
+23103,barley,cultivated since prehistoric times; grown for forage and grain
+23104,barley barleycorn,a grain of barley
+23105,barley-sugar barley_candy,a brittle transparent candy made by melting and cooling cane sugar
+23106,barley_grass wall_barley Hordeum_murinum,European annual grass often found as a weed in waste ground especially along roadsides and hedgerows
+23107,barley_water,broth used to feed infants
+23108,barleycorn,a grain of barley
+23109,barmaid,a female bartender
+23110,barmbrack,a rich currant cake or bun
+23111,barn,an outlying farm building for storing grain or animal feed and housing farm animals
+23112,barn b,(physics) a unit of nuclear cross section; the effective circular area that one particle presents to another as a target for an encounter
+23113,barn_dance,a dance party featuring country dancing
+23114,barn_door,the large sliding door of a barn
+23115,barn_owl Tyto_alba,mottled buff and white owl often inhabiting barns and other structures; important in rodent control
+23116,barn_spider Araneus_cavaticus,an orange and tan spider with darkly banded legs that spins an orb web daily; "the barn spider was made famous in E. B. White's book `Charlotte's Web'"
+23117,barn_swallow chimney_swallow Hirundo_rustica,common swallow of North America and Europe that nests in barns etc.
+23118,barnacle cirriped cirripede,marine crustaceans with feathery food-catching appendages; free-swimming as larvae; as adults form a hard shell and live attached to submerged surfaces
+23119,barnacle_goose barnacle Branta_leucopsis,European goose smaller than the brant; breeds in the far north
+23120,barnburner,someone who burns down a barn
+23121,barnburner,an impressively successful event; "the rock concert was a real barnburner"
+23122,barndoor,an opaque adjustable flap on a lamp fixture; used in photography to cut off light from particular areas
+23123,barndoor_skate Raja_laevis,one of the largest skates (to 5 feet); an active skate easy to hook
+23124,barnful,the quantity that a barn will hold
+23125,barnstormer playactor play-actor trouper,an actor who travels around the country presenting plays
+23126,barnstormer stunt_flier stunt_pilot,a pilot who travels around the country giving exhibits of stunt flying and parachuting
+23127,barnyard,a yard adjoining a barn
+23128,barnyard_grass barn_grass barn_millet Echinochloa_crusgalli,a coarse annual panic grass; a cosmopolitan weed; occasionally used for hay or grazing
+23129,barograph,a recording barometer; automatically records on paper the variations in atmospheric pressure
+23130,barometer,an instrument that measures atmospheric pressure
+23131,barometric_pressure,atmospheric pressure as indicated by a barometer
+23132,baron,a nobleman (in various countries) of varying rank
+23133,baron,a British peer of the lowest rank
+23134,baron big_businessman business_leader king magnate mogul power top_executive tycoon,a very wealthy or powerful businessman; "an oil baron"
+23135,baronduki baranduki barunduki burunduki Eutamius_asiaticus Eutamius_sibiricus,terrestrial Siberian squirrel
+23136,baroness,a noblewoman who holds the rank of baron or who is the wife or widow of a baron
+23137,baronet Bart,a member of the British order of honor; ranks below a baron but above a knight; "since he was a baronet he had to be addressed as Sir Henry Jones, Bart."
+23138,baronetage,the collective body of baronets
+23139,baronetage,the state of a baronet
+23140,baronetcy,the title of a baron
+23141,baronetcy barony,the rank or dignity or position of a baronet or baroness
+23142,barong,a knife resembling a cleaver; used in the Philippines
+23143,barony,the estate of a baron
+23144,barony,the domain of a baron
+23145,baroque baroqueness,elaborate and extensive ornamentation in decorative art and architecture that flourished in Europe in the 17th century
+23146,baroreceptor,a sensory receptor that responds to pressure
+23147,barosaur barosaurus,a dinosaur that could grow to be as tall as a building five stories tall
+23148,barouche,a horse-drawn carriage having four wheels; has an outside seat for the driver and facing inside seats for two couples and a folding top
+23149,barrack,a building or group of buildings used to house military personnel
+23150,barracouta snoek,a large marine food fish common on the coasts of Australia, New Zealand, and southern Africa
+23151,barracuda,any voracious marine fish of the genus Sphyraena having an elongated cylindrical body and large mouth with projecting lower jaw and long strong teeth
+23152,barrage barrage_fire battery bombardment shelling,the heavy fire of artillery to saturate an area rather than hit a specific target; "they laid down a barrage in front of the advancing troops"; "the shelling went on for hours without pausing"
+23153,barrage bombardment outpouring onslaught,the rapid and continuous delivery of linguistic communication (spoken or written); "a barrage of questions"; "a bombardment of mail complaining about his mistake"
+23154,barrage_balloon,an elongated tethered balloon or blimp with cables or net suspended from it to deter enemy planes that are flying low
+23155,barrage_jamming,electronic jamming over a wide range of frequencies simultaneously
+23156,barramundi giant_perch giant_seaperch Asian_seabass white_seabass Lates_calcarifer,a species of large perch noted for its sporting and eating qualities; lives in marine, estuary, and freshwater habitats
+23157,barrator barrater,someone guilty of barratry
+23158,barratry,the crime of a judge whose judgment is influenced by bribery
+23159,barratry,(maritime law) a fraudulent breach of duty by the master of a ship that injures the owner of the ship or its cargo; includes every breach of trust such as stealing or sinking or deserting the ship or embezzling the cargo
+23160,barratry,the offense of vexatiously persisting in inciting lawsuits and quarrels
+23161,barred_owl Strix_varia,large owl of eastern North America having its breast and abdomen streaked with brown
+23162,barrel barrelful,the quantity that a barrel (of any size) will hold
+23163,barrel bbl,any of various units of capacity; "a barrel of beer is 31 gallons and a barrel of oil is 42 gallons"
+23164,barrel cask,a cylindrical container that holds liquids
+23165,barrel drum,a bulging cylindrical shape; hollow with flat ends
+23166,barrel gun_barrel,a tube through which a bullet travels when a gun is fired
+23167,barrel_cactus,a cactus of the genus Ferocactus: unbranched barrel-shaped cactus having deep ribs with numerous spines and usually large funnel-shaped flowers followed by dry fruits
+23168,barrel_knot blood_knot,a knot used for tying fishing leaders together; the ends of the two leaders are wrapped around each other two or three times
+23169,barrel_organ grind_organ hand_organ,a musical instrument that makes music by rotation of a cylinder studded with pegs
+23170,barrel_roll,a roll in which the plane follows a spiral course
+23171,barrel_vault,the simplest form of vault; a single continuous arch
+23172,barrelfish black_rudderfish Hyperglyphe_perciformis,blackish fish of New England waters
+23173,barrelhouse honky-tonk,a cheap drinking and dancing establishment
+23174,barrels,the amount that many barrels might hold
+23175,barren waste wasteland,an uninhabited wilderness that is worthless for cultivation; "the barrens of central Africa"; "the trackless wastes of the desert"
+23176,barren_ground_caribou Rangifer_arcticus,of tundra of northern Canada; in some classifications included in the species Rangifer tarandus
+23177,barrenness,the state (usually of a woman) of having no children or being unable to have children
+23178,barrenwort bishop's_hat Epimedium_grandiflorum,slow-growing creeping plant with semi-evergreen leaves on erect wiry stems; used as ground cover
+23179,barrette,a pin for holding women's hair in place
+23180,barricade,a barrier (usually thrown up hastily) to impede the advance of an enemy; "they stormed the barricade"
+23181,barrier,anything serving to maintain separation by obstructing vision or access
+23182,barrier,a structure or object that impedes free movement
+23183,barrier roadblock,any condition that makes it difficult to make progress or to achieve an objective; "intolerance is a barrier to understanding"
+23184,barrier_island,a long narrow sandy island (wider than a reef) running parallel to the shore
+23185,barrier_reef,a long coral reef near and parallel to the shore
+23186,barring blackball,the act of excluding someone by a negative vote or veto
+23187,barrio,a Spanish-speaking quarter in a town or city (especially in the United States)
+23188,barrio,an urban area in a Spanish-speaking country
+23189,barrister,a British or Canadian lawyer who speaks in the higher courts of law on behalf of either the defense or prosecution
+23190,barroom bar saloon ginmill taproom,a room or establishment where alcoholic drinks are served over a counter; "he drowned his sorrows in whiskey at the bar"
+23191,barrow barrowful,the quantity that a barrow will hold
+23192,barrow garden_cart lawn_cart wheelbarrow,a cart for carrying small loads; has handles and one or more wheels
+23193,bartender barman barkeep barkeeper mixologist,an employee who mixes and serves alcoholic drinks at a bar
+23194,barter swap swop trade,an equal exchange; "we had no money so we had to live by barter"
+23195,barterer,a trader who exchanges goods and not money
+23196,bartlett bartlett_pear,juicy yellow pear
+23197,bartonia Mentzelia_lindleyi,annual grown especially for its fragrant golden nocturnal flowers
+23198,barycenter,(astronomy) the common center of mass around which two or more bodies revolve
+23199,barye bar_absolute microbar,the absolute unit of pressure equal to one dyne per square centimeter
+23200,baryon heavy_particle,any of the elementary particles having a mass equal to or greater than that of a proton and that participate in strong interactions; a hadron with a baryon number of +1
+23201,baryon_number,a number equal to the difference between the number of baryons and the number of antibaryons in any subatomic structure; it is conserved in all types of particle interactions
+23202,baryta,any of several compounds of barium
+23203,bas_relief low_relief basso_relievo basso_rilievo,a sculptural relief in which forms extend only slightly from the background; no figures are undercut
+23204,basal_body_temperature basal_temperature,body temperature in the morning before rising or moving about or eating anything
+23205,basal_body_temperature_method_of_family_planning basal_body_temperature_method,natural family planning in which the fertile period of the woman's menstrual cycle is inferred by noting the rise in basal body temperature that typically occurs with ovulation
+23206,basal_ganglion,any of several masses of subcortical grey matter at the base of each cerebral hemisphere that seem to be involved in the regulation of voluntary movement
+23207,basal_metabolic_rate BMR,the rate at which heat is produced by an individual in a resting state
+23208,basal_metabolism,the amount of energy required to maintain the body of an individual in a resting state
+23209,basal_placentation,where one or few ovules develop at the base of a simple or compound ovary
+23210,basal_vein vena_basalis,a large vein passing along the medial surface of the temporal lobe and emptying into the great cerebral vein
+23211,basalt,the commonest type of solidified lava; a dense dark grey fine-grained igneous rock that is composed chiefly of plagioclase feldspar and pyroxene
+23212,bascule,a structure or device in which one end is counterbalanced by the other (on the principle of the seesaw)
+23213,base,the bottom side of a geometric figure from which the altitude can be constructed; "the base of the triangle"
+23214,base,the bottom or lowest part; "the base of the mountain"
+23215,base,(anatomy) the part of an organ nearest its point of attachment; "the base of the skull"
+23216,base,the principal ingredient of a mixture; "glycerinated gelatin is used as a base for many ointments"; "he told the painter that he wanted a yellow base with just a hint of green"; "everything she cooked seemed to have rice as the base"
+23217,base,a flat bottom on which something is intended to sit; "a tub should sit on its own base"
+23218,base,(electronics) the part of a transistor that separates the emitter from the collector
+23219,base alkali,any of various water-soluble compounds capable of turning litmus blue and reacting with an acid to form a salt and water; "bases include oxides and hydroxides of metals and ammonia"
+23220,base bag,a place that the runner must touch before scoring; "he scrambled to get back to the bag"
+23221,base base_of_operations,installation from which a military force initiates operations; "the attack wiped out our forward bases"
+23222,base home,the place where you are stationed and from which missions start and end
+23223,base pedestal stand,a support or foundation; "the base of the lamp"
+23224,base radix,(numeration system) the positive integer that is equivalent to one in the next higher counting place; "10 is the radix of the decimal system"
+23225,base_hit safety,(baseball) the successful act of striking a baseball in such a way that the batter reaches base safely
+23226,base_metal,a metal that is common and not considered precious; "lead, iron, copper, tin, and zinc are base metals"
+23227,base_on_balls walk pass,(baseball) an advance to first base by a batter who receives four balls; "he worked the pitcher for a base on balls"
+23228,base_pair,one of the pairs of chemical bases joined by hydrogen bonds that connect the complementary strands of a DNA molecule or of an RNA molecule that has two strands; the base pairs are adenine with thymine and guanine with cytosine in DNA and adenine with uracil and guanine with cytosine in RNA
+23229,base_rate,the interest rate set by the Bank of England for lending to other banks
+23230,base_runner runner,a baseball player on the team at bat who is on base (or attempting to reach a base)
+23231,baseball,a ball used in playing baseball
+23232,baseball baseball_game ball,a ball game played with a bat and ball between two teams of nine players; teams take turns at bat trying to score runs; "he played baseball in high school"; "there was a baseball game on every empty lot"; "there was a desire for National League ball in the area"; "play ball!"
+23233,baseball_bat lumber,an implement used in baseball by the batter
+23234,baseball_cap jockey_cap golf_cap,a cap with a bill
+23235,baseball_card,a trading card with a picture of a baseball player and information about his playing record
+23236,baseball_clinic,a meeting at which baseball players receive special evaluation and instruction; "a summer baseball clinic for promising young players"
+23237,baseball_club ball_club club nine,a team of professional baseball players who play and travel together; "each club played six home games with teams in its own division"
+23238,baseball_coach baseball_manager,a coach of baseball players
+23239,baseball_diamond diamond infield,the area of a baseball field that is enclosed by 3 bases and home plate
+23240,baseball_equipment,equipment used in playing baseball
+23241,baseball_glove glove baseball_mitt mitt,the handwear used by fielders in playing baseball
+23242,baseball_league,a league of baseball teams
+23243,baseball_play,(baseball) a play executed by a baseball team
+23244,baseball_score,the score of a baseball game
+23245,baseball_season,the season when baseball is played
+23246,baseball_swing swing cut,in baseball; a batter's attempt to hit a pitched ball; "he took a vicious cut at the ball"
+23247,baseball_team,a team that plays baseball
+23248,baseboard mopboard skirting_board,a molding covering the joint formed by a wall and the floor
+23249,baseline,an imaginary line or standard by which things are measured or compared; "the established a baseline for the budget"
+23250,baseline,the lines a baseball player must follow while running the bases
+23251,basement,the ground floor facade or interior in Renaissance architecture
+23252,basement cellar,the lowermost portion of a structure partly or wholly below ground level; often used for storage
+23253,baseness sordidness contemptibility despicableness despicability,unworthiness by virtue of lacking higher values
+23254,basenji,small smooth-haired breed of African origin having a tightly curled tail and the inability to bark
+23255,bash do brawl,an uproarious party
+23256,basic staple,(usually in the plural) a necessary commodity for which demand is constant
+23257,basic_assumption constatation self-evident_truth,an assumption that is basic to an argument
+23258,basic_cognitive_process,cognitive processes involved in obtaining and storing knowledge
+23259,basic_dye basic_color basic_colour,a dye that is considered to be a base because the chromophore is part of a positive ion
+23260,basic_iron,pig iron containing a high percentage of phosphorus; used in making steel by a process that removes the phosphorus
+23261,basic_point_defense_missile_system,a shipboard missile system
+23262,basic_slag,slag produced in making steel; low in silica but having large amounts of calcium phosphate; useful as fertilizer
+23263,basic_training,the initial period of training for new military personnel; involves intense physical activity and behavioral discipline
+23264,basics rudiments,a statement of fundamental facts or principles
+23265,basidiocarp,the fruiting body of a basidiomycete which bears its spores on special cells
+23266,basidiolichen,a lichen in which the fungus component is a basidiomycete
+23267,basidiomycete basidiomycetous_fungi,any of various fungi of the subdivision Basidiomycota
+23268,basidiospore,a sexually produced fungal spore borne on a basidium
+23269,basidium,a small club-shaped structure typically bearing four basidiospores at the ends of minute projections; unique to basidiomycetes
+23270,basil,any of several Old World tropical aromatic annual or perennial herbs of the genus Ocimum
+23271,basil sweet_basil,leaves of the common basil; used fresh or dried
+23272,basil_balm Monarda_clinopodia,perennial herb of North America (New York to Illinois and mountains of Alaska) having aromatic leaves and clusters of yellowish-pink balls
+23273,basil_mint Pycnanthemum_virginianum,perennial herb of the eastern United States having inconspicuous greenish flowers and narrow leaves that are very aromatic when bruised
+23274,basil_thyme basil_balm mother_of_thyme Acinos_arvensis Satureja_acinos,fragrant European mint having clusters of small violet-and-white flowers; naturalized especially in eastern North America
+23275,basilar_artery arteria_basilaris,an unpaired artery; supplies the pons and cerebellum and the back part of the cerebrum and the inner ear
+23276,basilar_membrane,a membrane in the cochlea that supports the organ of Corti
+23277,basileus,a ruler of the eastern Roman Empire
+23278,basilic_vein vena_basilica,a vein that drains the back of the hand and forearm and empties into the axillary vein
+23279,basilica,an early Christian church designed like a Roman basilica; or a Roman Catholic church or cathedral accorded certain privileges; "the church was raised to the rank of basilica"
+23280,basilica Roman_basilica,a Roman building used for public administration
+23281,basilisk,(classical mythology) a serpent (or lizard or dragon) able to kill with its breath or glance
+23282,basilisk,ancient brass cannon
+23283,basilisk,small crested arboreal lizard able to run on its hind legs; of tropical America
+23284,basin,a natural depression in the surface of the land often with a lake at the bottom of it; "the basin of the Great Salt Lake"
+23285,basin,a bowl-shaped vessel; usually used for holding food or liquids; "she mixed the dough in a large basin"
+23286,basin basinful,the quantity that a basin will hold; "a basinful of water"
+23287,basinet,a medieval steel helmet
+23288,basis base,the most important or necessary part of something; "the basis of this drink is orange juice"
+23289,basis base foundation fundament groundwork cornerstone,the fundamental assumptions from which something is begun or developed or calculated or explained; "the whole argument rested on a basis of conjecture"
+23290,basivertebral_vein vena_basivertebralis,one of a number of veins draining the spongy substance of the vertebrae and emptying into the anterior internal vertebral venous plexus
+23291,basket basketball_hoop hoop,horizontal circular metal hoop supporting a net through which players try to throw the basketball
+23292,basket basketful,the quantity contained in a basket
+23293,basket field_goal,a score in basketball made by throwing the ball through the hoop
+23294,basket handbasket,a container that is usually woven and has handles
+23295,basket_fern Drynaria_rigidula,giant epiphytic or lithophytic fern; Asia to Polynesia and Australia
+23296,basket_fern toothed_sword_fern Nephrolepis_pectinata,tropical American fern cultivated for its finely divided greyish-green foliage; West Indies and southern Mexico to Peru and Brazil
+23297,basket_flower Centaurea_americana,annual of southwestern United States cultivated for its purple flower heads and its bracts that resemble small baskets
+23298,basket_hilt,a hilt with a basket-shaped guard for the hand
+23299,basket_oak cow_oak Quercus_prinus Quercus_montana,medium to large deciduous tree of the eastern United States; its durable wood is used as timber or split and woven into baskets or chair seats
+23300,basket_star basket_fish,any starfish-like animal of the genera Euryale or Astrophyton or Gorgonocephalus having slender complexly branched interlacing arms radiating from a central disc
+23301,basket_weave,a cloth woven of two or more threads interlaced to suggest the weave of a basket
+23302,basketball,an inflated ball used in playing basketball
+23303,basketball basketball_game hoops,a game played on a court by two opposing teams of 5 players; points are scored by throwing the ball through an elevated horizontal hoop
+23304,basketball_clinic,a meeting at which basketball players receive special evaluation and instruction
+23305,basketball_coach,a coach of basketball players
+23306,basketball_court,the court on which basketball is played
+23307,basketball_equipment,sports equipment used in playing basketball
+23308,basketball_league,a league of basketball teams
+23309,basketball_play,a play executed by a basketball team
+23310,basketball_player basketeer cager,an athlete who plays basketball
+23311,basketball_score,the score in a basketball game
+23312,basketball_season,the season when basketball is played
+23313,basketball_shot,throwing the basketball toward the hoop; "his shot hit the rim and bounced out"
+23314,basketball_team five,a team that plays basketball
+23315,basketry,the craft of basket making
+23316,basketweaver basketmaker,someone skilled in weaving baskets
+23317,basking_shark Cetorhinus_maximus,large harmless plankton-eating northern shark; often swims slowly or floats at the sea surface
+23318,basophil basophile,a leukocyte with basophilic granules easily stained by basic stains
+23319,basophilia,the tendency of cells to stain with basic dyes; "cytoplasmic basophilia"
+23320,bass,the lowest part of the musical range
+23321,bass,the member with the lowest range of a family of musical instruments
+23322,bass,nontechnical name for any of numerous edible marine and freshwater spiny-finned fishes
+23323,bass bass_part,the lowest part in polyphonic music
+23324,bass bass_voice basso,the lowest adult male singing voice
+23325,bass basso,an adult male singer with the lowest voice
+23326,bass_clarinet,a large clarinet whose range is an octave below the B-flat clarinet
+23327,bass_clef F_clef,a clef that puts the F below middle C on the fourth line of a staff
+23328,bass_drum gran_casa,a large drum with two heads; makes a sound of indefinite but very low pitch
+23329,bass_fiddle bass_viol bull_fiddle double_bass contrabass string_bass,largest and lowest member of the violin family
+23330,bass_guitar,the guitar with six strings that has the lowest pitch
+23331,bass_horn sousaphone tuba,the lowest brass wind instrument
+23332,bassarisk cacomistle cacomixle coon_cat raccoon_fox ringtail ring-tailed_cat civet_cat miner's_cat Bassariscus_astutus,raccoon-like omnivorous mammal of Mexico and the southwestern United States having a long bushy tail with black and white rings
+23333,basset basset_hound,smooth-haired breed of hound with short legs and long ears
+23334,basset_horn,a tenor clarinet; pitched in the key of F below the B-flat clarinet
+23335,bassine,coarse leaf fiber from palmyra palms used in making brushes and brooms
+23336,bassinet,a perambulator that resembles a bassinet
+23337,bassinet,a basket (usually hooded) used as a baby's bed
+23338,bassist,a musician who play the bass viol
+23339,basso_profundo,a very deep bass voice
+23340,bassoon,a double-reed instrument; the tenor of the oboe family
+23341,bassoonist,a musician who plays the bassoon
+23342,basswood linden,soft light-colored wood of any of various linden trees; used in making crates and boxes and in carving and millwork
+23343,bast bast_fiber,strong woody fibers obtained especially from the phloem of from various plants
+23344,bastard by-blow love_child illegitimate_child illegitimate whoreson,the illegitimate offspring of unmarried parents
+23345,bastard mongrel,derogatory term for a variation that is not genuine; something irregular or inferior or of dubious origin; "the architecture was a kind of bastard suggesting Gothic but not true Gothic"
+23346,bastard_feverfew Parthenium_hysterophorus,tropical American annual weed with small radiate heads of white flowers; adventive in southern United States
+23347,bastard_indigo Tephrosia_purpurea,East Indian shrub
+23348,bastard_lignum_vitae Guaiacum_sanctum,small evergreen tree of the southern United States and West Indies a source of lignum vitae wood
+23349,bastard_pennyroyal Trichostema_dichotomum,aromatic plant of the eastern United States
+23350,bastard_toadflax Comandra_pallida,woody creeping parasite of western North America having numerous thick powdery leaves and panicles of small dull-white flowers
+23351,bastard_wing alula spurious_wing,tuft of small stiff feathers on the first digit of a bird's wing
+23352,bastardization,declaring or rendering bastard; "the annulment of their marriage resulted in the bastardization of their children"
+23353,bastardization bastardisation,an act that debases or corrupts
+23354,bastardy illegitimacy bar_sinister,the status of being born to parents who were not married
+23355,baste basting basting_stitch tacking,a loose temporary sewing stitch to hold layers of fabric together
+23356,baster,a cook who bastes roasting meat with melted fat or gravy
+23357,baster,a tube with a rubber bulb used to take up and release melted fat or gravy in order to moisten roasting meat
+23358,baster tacker,a sewer who fastens a garment with long loose stitches
+23359,bastille,a jail or prison (especially one that is run in a tyrannical manner)
+23360,bastinado,a cudgel used to give someone a beating on the soles of the feet
+23361,bastinado falanga,a form of torture in which the soles of the feet are beaten with whips or cudgels
+23362,basting,moistening a roast as it is cooking
+23363,bastion,a group that defends a principle; "a bastion against corruption"; "the last bastion of communism"
+23364,bastion,projecting part of a rampart or other fortification
+23365,bastion citadel,a stronghold into which people could go for shelter during a battle
+23366,bastnasite bastnaesite,a yellow-to-brown mineral that is a source of rare earth elements
+23367,basuco,low-grade cocaine mixed with coca paste and cannabis
+23368,bat,a club used for hitting a ball in various games
+23369,bat at-bat,(baseball) a turn trying to get a hit; "he was at bat when it happened"; "he got four hits in four at-bats"
+23370,bat chiropteran,nocturnal mouselike mammal with forelimbs modified to form membranous wings and anatomical adaptations for echolocation by which they navigate
+23371,bat_boy,(baseball) a boy who takes care of bats and other baseball equipment
+23372,bat_mitzvah bath_mitzvah bas_mitzvah,(Judaism) an initiation ceremony marking the 12th birthday of a Jewish girl and signifying the beginning of religious responsibility
+23373,batch,all the loaves of bread baked at the same time
+23374,batch clutch,a collection of things or persons to be handled together
+23375,batch deal flock good_deal great_deal hatful heap lot mass mess mickle mint mountain muckle passel peck pile plenty pot quite_a_little raft sight slew spate stack tidy_sum wad,(often followed by `of') a large number or amount or extent; "a batch of letters"; "a deal of trouble"; "a lot of money"; "he made a mint on the stock market"; "see the rest of the winners in our huge passel of photos"; "it must have cost plenty"; "a slew of journalists"; "a wad of money"
+23376,batch_processing,the serial execution of computer programs
+23377,batfish,bottom-dweller of warm western Atlantic coastal waters having a flattened scaleless body that crawls about on fleshy pectoral and pelvic fins
+23378,bath,an ancient Hebrew liquid measure equal to about 10 gallons
+23379,bath,a vessel containing liquid in which something is immersed (as to process it or to maintain it at a constant temperature or to lubricate it); "she soaked the etching in an acid bath"
+23380,bath,a soaking and washing in a bathtub; "he has a good bath every morning"
+23381,bath_asparagus Prussian_asparagus Ornithogalum_pyrenaicum,Old World star of Bethlehem having edible young shoots
+23382,bath_chair,a wheelchair usually pushed by an attendant, as at a spa
+23383,bath_linen,linens for use in the bathroom
+23384,bath_mat,a heavy towel or mat to stand on while drying yourself after a bath
+23385,bath_oil,a scented oil added to your bath water
+23386,bath_salts,a preparation that softens or scents a bath
+23387,bath_towel,a large towel; to dry yourself after a bath
+23388,bath_water,water used for a bath
+23389,bathe,the act of swimming for pleasure or recreation; "the Englishman said he had a good bathe"
+23390,bather,a person who takes a bath; "the bathers enjoyed the cool water"
+23391,bathhouse bagnio,a building containing public baths
+23392,bathhouse bathing_machine,a building containing dressing rooms for bathers
+23393,bathing,immersing the body in water or sunshine
+23394,bathing_cap swimming_cap,a tight-fitting cap that keeps hair dry while swimming
+23395,batholith batholite pluton plutonic_rock,large mass of intrusive igneous rock believed to have solidified deep within the earth
+23396,bathos,triteness or triviality of style
+23397,bathrobe,a loose-fitting robe of towelling; worn after a bath or swim
+23398,bathroom,a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet
+23399,bathroom_cleaner,a preparation for cleaning bathrooms
+23400,bathroom_fixture,any fixture in a bathroom
+23401,bathtub bathing_tub tub,a relatively large open container that you fill with water and use to wash the body
+23402,bathtub_gin,homemade gin especially that made illegally
+23403,bathymeter bathometer,an instrument that measures the depth of water
+23404,bathymetry plumbing,measuring the depths of the oceans
+23405,bathyscaphe bathyscaph bathyscape,navigable deep diving vessel for underwater exploration
+23406,bathysphere,spherical deep diving apparatus (lowered by a cable) for underwater exploration
+23407,batik,a dyed fabric; a removable wax is used where the dye is not wanted
+23408,batiste,a thin plain-weave cotton or linen fabric; used for shirts or dresses
+23409,batman,an orderly assigned to serve a British military officer
+23410,baton,a short staff carried by some officials to symbolize an office or an authority
+23411,baton,a hollow metal rod that is wielded or twirled by a drum major or drum majorette
+23412,baton,a hollow cylinder passed from runner to runner in a relay race
+23413,baton wand,a thin tapered rod used by a conductor to lead an orchestra or choir
+23414,baton_twirler twirler,someone who twirls a baton
+23415,batrachomyomachia,a silly altercation
+23416,battalion,an army unit usually consisting of a headquarters and three or more companies
+23417,battalion large_number multitude plurality pack,a large indefinite number; "a battalion of ants"; "a multitude of TV antennas"; "a plurality of religions"
+23418,batten,a strip fixed to something to hold it firm
+23419,batter,a liquid or semiliquid mixture, as of flour, eggs, and milk, used in cooking
+23420,batter hitter slugger batsman,(baseball) a ballplayer who is batting
+23421,batter's_box,an area on a baseball diamond (on either side of home plate) marked by lines within which the batter must stand when at bat
+23422,battering banging,the act of subjecting to strong attack
+23423,battering_ram,a ram used to break down doors of fortified buildings
+23424,battery,group of guns or missile launchers operated together at one place
+23425,battery,a unit composed of the pitcher and catcher
+23426,battery,a collection of related things intended for use together; "took a battery of achievement tests"
+23427,battery assault_and_battery,an assault in which the assailant makes physical contact
+23428,battery electric_battery,a device that produces electricity; may have several primary or secondary cells arranged in parallel or series
+23429,battery stamp_battery,a series of stamps operated in one mortar for crushing ores
+23430,battery_acid electrolyte_acid,dilute sulfuric acid used in storage batteries
+23431,batting,(baseball) the batter's attempt to get on base
+23432,batting batten,stuffing made of rolls or sheets of cotton wool or synthetic fiber
+23433,batting_average,(an extension of the baseball term) the proportion of times some effort succeeds; "the salesman's batting average was 7 out of 12"
+23434,batting_average hitting_average,(baseball) a measure of a batter's performance; the number of base hits divided by the number of official times at bat; "Ted Williams once had a batting average above .400"
+23435,batting_cage cage,a movable screen placed behind home base to catch balls during batting practice
+23436,batting_coach,(baseball) someone who teaches batters how to bat better
+23437,batting_glove,a glove worn by batters in baseball to give a firmer grip on the bat
+23438,batting_helmet,a helmet worn by the batter in baseball
+23439,batting_order card lineup,(baseball) a list of batters in the order in which they will bat; "the managers presented their cards to the umpire at home plate"
+23440,battle conflict fight engagement,a hostile meeting of opposing military forces in the course of a war; "Grant won a decisive victory in the battle of Chickamauga"; "he lost his romantic ideas about war when he got into a real engagement"
+23441,battle-ax battle-axe,a sharp-tongued domineering wife
+23442,battle-ax battle-axe,a broadax used as a weapon
+23443,battle_cruiser,a cruiser of maximum speed and firepower
+23444,battle_damage combat_casualty,loss of military equipment in battle
+23445,battle_dress,a military uniform designed for field service
+23446,battle_fatigue combat_fatigue combat_neurosis shell_shock,a mental disorder caused by stress of active warfare
+23447,battle_flag,a flag that leads troops into battle
+23448,battle_fleet,a fleet of warships prepared for battle
+23449,battle_group,an army unit usually consisting of five companies
+23450,battle_line,the line along which warring troops meet
+23451,battle_of_wits,a contest in which intelligence rather than violence is used
+23452,battle_plan,plan for conducting a battle
+23453,battle_sight battlesight,an arrangement of sights that makes possible the rapid aiming of a firearm at short ranges
+23454,battledore battledore_and_shuttlecock,an ancient racket game
+23455,battlefield battleground field_of_battle field_of_honor field,a region where a battle is being (or has been) fought; "they made a tour of Civil War battlefields"
+23456,battlefront front front_line,the line along which opposing armies face each other
+23457,battlement crenelation crenellation,a rampart built around the top of a castle with regular gaps for firing arrows or guns
+23458,battleship battlewagon,large and heavily armoured warship
+23459,battue,a hunt in which beaters force the game to flee in the direction of the hunter
+23460,batwing,one of a pair of swinging doors (as at the entrance to a western saloon)
+23461,bauble,a mock scepter carried by a court jester
+23462,baud baud_rate,(computer science) a data transmission rate (bits/second) for modems
+23463,bauxite,a clay-like mineral; the chief ore of aluminum; composed of aluminum oxides and aluminum hydroxides; used as an abrasive and catalyst
+23464,bawbee,an old Scottish coin of little value
+23465,bawdry bawdy,lewd or obscene talk or writing; "it was smoking-room bawdry"; "they published a collection of Elizabethan bawdy"
+23466,bawler,a loud weeper; "their new baby is a real bawler"
+23467,bay,the sound of a hound on the scent
+23468,bay,a compartment on a ship between decks; often used as a hospital; "they put him in the sick bay"
+23469,bay,a compartment in an aircraft used for some specific purpose; "he opened the bomb bay"
+23470,bay,a horse of a moderate reddish-brown color
+23471,bay embayment,an indentation of a shoreline larger than a cove but smaller than a gulf
+23472,bay_leaf,dried leaf of the bay laurel
+23473,bay_myrtle puckerbush Myrica_cerifera,evergreen aromatic shrubby tree of southeastern United States having small hard berries thickly coated with white wax used for candles
+23474,bay_rum,an aromatic liquid originally obtained by distilling the leaves of the bayberry tree with rum
+23475,bay_scallop,muscle of small choice shallow-water scallops
+23476,bay_scallop Pecten_irradians,a small scallop inhabiting shallow waters and mud flats of the Atlantic coast of North America
+23477,bay_willow laurel_willow Salix_pentandra,European willow tree with shining leathery leaves; widely naturalized in the eastern United States
+23478,bay_window bow_window,a window that sticks out from the outside wall of a house
+23479,baya Ploceus_philippinus,common Indian weaverbird
+23480,bayat,an oath of allegiance to an emir
+23481,bayberry bay-rum_tree Jamaica_bayberry wild_cinnamon Pimenta_acris,West Indian tree; source of bay rum
+23482,bayberry candleberry swamp_candleberry waxberry Myrica_pensylvanica,deciduous aromatic shrub of eastern North America with grey-green wax-coated berries
+23483,bayberry_wax bayberry_tallow,a fragrant green wax obtained from the wax myrtle and used in making candles
+23484,bayonet,a knife that can be fixed to the end of a rifle and used as a weapon
+23485,bayou,a swampy arm or slow-moving outlet of a lake (term used mainly in Mississippi and Louisiana)
+23486,bazaar bazar,a street of small shops (especially in Orient)
+23487,bazaar bazar,a shop where a variety of goods are sold
+23488,bazaar fair,a sale of miscellany; often for charity; "the church bazaar"
+23489,bazooka,a portable rocket launcher used by infantrymen as an antitank weapon
+23490,bdellium,aromatic gum resin; similar to myrrh
+23491,be-all_and_end-all be_all_and_end_all,the essential factor; the all-important element; the supreme aim; "profit is the be-all and end-all of business"
+23492,beach,an area of sand sloping down to the water of a sea or lake
+23493,beach_ball beachball,large and light ball; for play at the seaside
+23494,beach_erosion,the erosion of beaches
+23495,beach_flea sand_hopper sandhopper sand_flea,small amphipod crustaceans that hop like fleas; common on ocean beaches
+23496,beach_grass,tough grasses with strong roots that can grow on exposed sandy shores
+23497,beach_heather poverty_grass Hudsonia_tomentosa,small heathlike plant covered with white down growing on beaches in northeastern North America
+23498,beach_house,a house built on or near a beach
+23499,beach_pancake Abronia_maritima,plant having hemispherical heads of wine-red flowers; found in coastal dunes from California to Mexico
+23500,beach_pea sea_pea Lathyrus_maritimus Lathyrus_japonicus,wild pea of seashores of north temperate zone having tough roots and purple flowers and useful as a sand binder
+23501,beach_plum,small dark purple fruit used especially in jams and pies
+23502,beach_plum beach_plum_bush Prunus_maritima,seacoast shrub of northeastern North America having showy white blossoms and edible purple fruit
+23503,beach_sand_verbena pink_sand_verbena Abronia_umbellata,prostrate herb having heads of deep pink to white flowers; found in coastal dunes from British Columbia to Baja California
+23504,beach_strawberry Chilean_strawberry Fragaria_chiloensis,wild strawberry of western United States and South America; source of many varieties of cultivated strawberries
+23505,beach_towel,very large towel to dry yourself after swimming
+23506,beach_wagon station_wagon wagon estate_car beach_waggon station_waggon waggon,a car that has a long body and rear door with space behind rear seat
+23507,beachcomber,a vagrant living on a beach
+23508,beachfront,a strip of land running along a beach
+23509,beachhead,a bridgehead on the enemy's shoreline seized by an amphibious operation; "the Germans were desperately trying to contain the Anzio beachhead"
+23510,beachhead foothold,an initial accomplishment that opens the way for further developments; "the town became a beachhead in the campaign to ban smoking outdoors"; "they are presently attempting to gain a foothold in the Russian market"
+23511,beachwear,clothing to be worn at a beach
+23512,beacon beacon_fire,a fire (usually on a hill or tower) that can be seen from a distance
+23513,beacon lighthouse beacon_light pharos,a tower with a light that gives warning of shoals to passing ships
+23514,bead,a small ball with a hole through the middle
+23515,bead_tree jumby_bean jumby_tree Ormosia_monosperma,small tree of West Indies and northeastern Venezuela having large oblong pointed leaflets and panicles of purple flowers; seeds are black or scarlet with black spots
+23516,beaded_lizard Mexican_beaded_lizard Heloderma_horridum,lizard with black and yellowish beadlike scales; of western Mexico
+23517,beading bead beadwork astragal,a beaded molding for edging or decorating furniture
+23518,beading beadwork,ornamentation with beads
+23519,beading_plane,a plane with a concave blade for making moulding with beadwork
+23520,beadle,a minor parish official who serves a ceremonial function
+23521,beads string_of_beads,several beads threaded together on a string
+23522,beadsman bedesman,a person who is paid to pray for the soul of another
+23523,beagle,a small short-legged smooth-coated breed of hound
+23524,beagling,hunting rabbits with beagles
+23525,beak,a beaklike, tapering tip on certain plant structures
+23526,beak,beaklike mouth of animals other than birds (e.g., turtles)
+23527,beak bill neb nib pecker,horny projecting mouth of a bird
+23528,beak honker hooter nozzle snoot snout schnozzle schnoz,informal terms for the nose
+23529,beaked_hazelnut Corylus_cornuta,hazel of western United States with conspicuous beaklike involucres on the nuts
+23530,beaked_salmon sandfish Gonorhynchus_gonorhynchus,fish of sandy areas of western Pacific and Indian oceans having an angular snout for burrowing into sand
+23531,beaked_whale,any of several whales inhabiting all oceans and having beaklike jaws with vestigial teeth in the upper jaw
+23532,beaker,a flatbottomed jar made of glass or plastic; used for chemistry
+23533,beaker,a cup (usually without a handle)
+23534,beam,(nautical) breadth amidships
+23535,beam,the broad side of a ship; "they sighted land on the port beam"
+23536,beam,long thick piece of wood or metal or concrete, etc., used in construction
+23537,beam beam_of_light light_beam ray ray_of_light shaft shaft_of_light irradiation,a column of light (as from a beacon)
+23538,beam ray electron_beam,a group of nearly parallel lines of electromagnetic radiation
+23539,beam-ends,(nautical) at the ends of the transverse deck beams of a vessel; "on her beam-ends" means heeled over on the side so that the deck is almost vertical
+23540,beam_balance,a balance consisting of a lever with two equal arms and a pan suspended from each arm
+23541,bean,any of various seeds or fruits that are beans or resemble beans
+23542,bean bean_plant,any of various leguminous plants grown for their edible seeds and pods
+23543,bean edible_bean,any of various edible seeds of plants of the family Leguminosae used for food
+23544,bean_caper Syrian_bean_caper Zygophyllum_fabago,perennial shrub of the eastern Mediterranean region and southwestern Asia having flowers whose buds are used as capers
+23545,bean_counter,an accountant or bureaucrat who is believed to place undue emphasis on the control of expenditures
+23546,bean_curd tofu,cheeselike food made of curdled soybean milk
+23547,bean_dip,a dip made of cooked beans
+23548,bean_sprout,any of various sprouted beans: especially mung beans or lentils or edible soybeans
+23549,bean_tostada,a flat tortilla topped with refried beans
+23550,bean_tree,any of several trees having seedpods as fruits
+23551,bean_trefoil stinking_bean_trefoil Anagyris_foetida,shrub with trifoliate leaves and yellow flowers followed by backward curving seed pods; leaves foetid when crushed
+23552,bean_weevil Acanthoscelides_obtectus,larvae live in and feed on growing or stored beans
+23553,beanbag,a small cloth bag filled with dried beans; thrown in games
+23554,beanball beaner,a baseball deliberately thrown at the batter's head
+23555,beanfeast,an annual dinner party given by an employer for the employees
+23556,beanie beany,a small skullcap; formerly worn by schoolboys and college freshmen
+23557,beanstalk,stem of a bean plant
+23558,bear,an investor with a pessimistic market outlook; an investor who expects prices to fall and so sells now in order to buy later at a lower price
+23559,bear,massive plantigrade carnivorous or omnivorous mammals with long shaggy coats and strong claws
+23560,bear's-paw_fern Aglaomorpha_meyeniana,epiphytic fern with large fronds; Taiwan and Philippines
+23561,bear's_breech bear's_breeches sea_holly Acanthus_mollis,widely cultivated southern European acanthus with whitish purple-veined flowers
+23562,bear_claw,an incised design resembling the claw of a bear; used in Native American pottery
+23563,bear_claw,claw of a bear; often used in jewelry
+23564,bear_claw bear_paw,almond-flavored yeast-raised pastry shaped in an irregular semicircle resembling a bear's claw
+23565,bear_cub,a young bear
+23566,bear_grass Nolina_microcarpa,stemless plant with tufts of grasslike leaves and erect panicle of minute creamy white flowers; southwestern United States and Mexico
+23567,bear_grass Yucca_glauca,yucca of west central United States having a clump of basal grasslike leaves and a central stalk with a terminal raceme of small whitish flowers
+23568,bear_grass Yucca_smalliana,yucca of southern United States having a clump of basal grasslike leaves and a central stalk with a terminal raceme of small whitish flowers
+23569,bear_hug,a wrestling hold with arms locked tightly around the opponent
+23570,bear_hug,a takeover bid so attractive that the directors of the target company must approve it or risk shareholder protest
+23571,bear_market,a market characterized by falling prices for securities
+23572,bear_oak Quercus_ilicifolia,shrubby oak of southeastern United States usually forming dense thickets
+23573,bearberry,chiefly evergreen subshrubs of northern to Arctic areas
+23574,bearberry possum_haw winterberry Ilex_decidua,deciduous shrub of southeastern and central United States
+23575,bearberry_willow Salix_uva-ursi,dwarf prostrate mat-forming shrub of Arctic and alpine regions of North America and Greenland having deep green elliptic leaves that taper toward the base
+23576,beard,a tuft or growth of hairs or bristles on certain plants such as iris or grasses
+23577,beard,a person who diverts suspicion from someone (especially a woman who accompanies a male homosexual in order to conceal his homosexuality)
+23578,beard,hairy growth on or near the face of certain mammals
+23579,beard face_fungus whiskers,the hair growing on the lower part of a man's face
+23580,beard_lichen beard_moss Usnea_barbata,greenish grey pendulous lichen growing on trees
+23581,beard_worm pogonophoran,slender animal with tentacles and a tubelike outer covering; lives on the deep ocean bottom
+23582,bearded_iris,any of numerous wild or cultivated irises with hairlike structures on the falls (the drooping sepals)
+23583,bearded_seal squareflipper_square_flipper Erignathus_barbatus,medium-sized greyish to yellow seal with bristles each side of muzzle; of the Arctic Ocean
+23584,bearded_vulture lammergeier lammergeyer Gypaetus_barbatus,the largest Eurasian bird of prey; having black feathers hanging around the bill
+23585,bearded_wheatgrass Agropyron_subsecundum,a wheatgrass with straight terminal awns on the flowering glumes
+23586,beardless_iris,any of numerous wild or cultivated irises having no hairs on the drooping sepals (the falls)
+23587,bearer,a messenger who bears or presents; "a bearer of good tidings"
+23588,bearing,relevant relation or interconnection; "those issues have no bearing on our situation"
+23589,bearing,a rotating support placed between moving parts to allow them to move easily
+23590,bearing comportment presence mien,dignified manner or conduct
+23591,bearing heading aim,the direction or path along which something moves or along which it lies
+23592,bearing_brass,a brass bushing or a lining for a bearing
+23593,bearing_rein checkrein,a rein designed to keep the horse's head in the desired position
+23594,bearing_wall,any wall supporting a floor or the roof of a building
+23595,bearnaise,a sauce like hollandaise but made with white wine and tarragon and shallots instead of lemon juice
+23596,bearskin,the pelt of a bear (sometimes used as a rug)
+23597,bearskin busby shako,tall hat; worn by some British soldiers on ceremonial occasions
+23598,beast wolf savage brute wildcat,a cruelly rapacious person
+23599,beast_of_burden jument,an animal such as a donkey or ox or elephant used for transporting loads or doing other heavy work
+23600,beastliness,unpleasant nastiness; used especially of nasty weather
+23601,beastliness meanness,the quality of being deliberately mean
+23602,beat,a single pulsation of an oscillation produced by adding two waves of different frequencies; has a frequency equal to the difference between the two oscillations
+23603,beat,the sound of stroke or blow; "he heard the beat of a drum"
+23604,beat,a regular rate of repetition; "the cox raised the beat"
+23605,beat,a stroke or blow; "the signal was two beats on the steam pipe"
+23606,beat,the act of beating to windward; sailing as close as possible to the direction from which the wind is blowing
+23607,beat round,a regular route for a sentry or policeman; "in the old days a policeman walked a beat and knew all his people by name"
+23608,beat_generation beats beatniks,a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop)
+23609,beater,a worker who rouses wild game from under cover for a hunter
+23610,beater,an implement for beating
+23611,beatification,the action of rendering supremely blessed and extremely happy
+23612,beatification,(Roman Catholic Church) an act of the Pope who declares that a deceased person lived a holy life and is worthy of public veneration; a first step toward canonization
+23613,beating thrashing licking drubbing lacing trouncing whacking,the act of inflicting corporal punishment with repeated blows
+23614,beating whipping,the act of overcoming or outdoing
+23615,beating-reed_instrument reed_instrument reed,a musical instrument that sounds by means of a vibrating reed
+23616,beatnik beat,a member of the beat generation; a nonconformist in dress and behavior
+23617,beats_per_minute bpm metronome_marking M.M.,the pace of music measured by the number of beats occurring in 60 seconds
+23618,beau_geste,a gracious (but usually meaningless) gesture
+23619,beaugregory Pomacentrus_leucostictus,a blue and yellow damselfish of Bermuda and Florida and the West Indies
+23620,beautician cosmetician,someone who works in a beauty parlor
+23621,beautification,the act of making something more beautiful
+23622,beauty,the qualities that give pleasure to the senses
+23623,beauty beaut,an outstanding example of its kind; "his roses were beauties"; "when I make a mistake it's a beaut"
+23624,beauty_bush Kolkwitzia_amabilis,Chinese deciduous shrub with yellow-throated pinkish flowers and bristly fruit; often cultivated as an ornamental
+23625,beauty_consultant,someone who gives you advice about your personal appearance
+23626,beauty_sleep,sleep before midnight
+23627,beauty_spot,a spot that is worn on a lady's face for adornment
+23628,beauty_treatment,enhancement of someone's personal beauty
+23629,beaver,a full beard
+23630,beaver,a movable piece of armor on a medieval helmet used to protect the lower face
+23631,beaver,large semiaquatic rodent with webbed hind feet and a broad flat tail; construct complex dams and underwater lodges
+23632,beaver beaver_fur,the soft brown fur of the beaver
+23633,beaver castor,a hat made with the fur of a beaver (or similar material)
+23634,beaver_board,a light wallboard made of compressed wood pulp
+23635,beaver_rat,amphibious rat of Australia and New Guinea
+23636,beck,a beckoning gesture
+23637,becket,(nautical) a short line with an eye at one end and a knot at the other; used to secure loose items on a ship
+23638,becomingness,the quality of being becoming
+23639,bed,(geology) a stratum of rock (especially sedimentary rock); "they found a bed of sandstone"
+23640,bed,the flat surface of a printing press on which the type form is laid in the last stage of producing a newspaper or magazine or book etc.
+23641,bed,a foundation of earth or rock supporting a road or railroad track; "the track bed had washed away"
+23642,bed,a plot of ground in which plants are growing; "the gardener planted a bed of roses"
+23643,bed,a piece of furniture that provides a place to sleep; "he sat on the edge of the bed"; "the room had only a bed and chair"
+23644,bed bottom,a depression forming the ground under a body of water; "he searched for treasure on the ocean bed"
+23645,bed-wetting,enuresis during sleep; especially common in children (who usually outgrow it)
+23646,bed_and_breakfast bed-and-breakfast,an overnight boardinghouse with breakfast
+23647,bed_check,a check that everyone is in bed by the time they should be
+23648,bed_ground bed-ground bedground,an area on which a drove of cattle or sheep can sleep for a night
+23649,bed_jacket,a lightweight jacket worn over bedclothes (as when sitting in bed)
+23650,bed_linen,linen or cotton articles for a bed (as sheets and pillowcases)
+23651,bed_pillow,a soft pillow for use on a bed
+23652,bedbug bed_bug chinch Cimex_lectularius,bug of temperate regions that infests especially beds and feeds on human blood
+23653,bedclothes bed_clothing bedding,coverings that are used on a bed
+23654,bedder bedding_plant,an ornamental plant suitable for planting in a flowerbed
+23655,bedding_material bedding litter,material used to provide a bed for animals
+23656,bedfellow,a temporary associate; "politics makes strange bedfellows"
+23657,bedfellow,a person with whom you share a bed
+23658,bedlamite,an archaic term for a lunatic
+23659,bedpan,a shallow vessel used by a bedridden patient for defecation and urination
+23660,bedpost,any of 4 vertical supports at the corners of a bedstead
+23661,bedrest bed_rest,confinement to bed continuously (as in the case of some sick or injured persons)
+23662,bedrock,solid unweathered rock lying beneath surface deposits of soil
+23663,bedroll,bedding rolled up for carrying
+23664,bedroom sleeping_room sleeping_accommodation chamber bedchamber,a room used primarily for sleeping
+23665,bedroom_community,a community where many commuters live
+23666,bedroom_furniture,furniture intended for use in a bedroom
+23667,bedroom_suite bedroom_set,a suite of furniture for the bedroom
+23668,bedside,space by the side of a bed (especially the bed of a sick or dying person); "the doctor stood at her bedside"
+23669,bedside_manner,manner or conduct of a physician in the presence of a patient
+23670,bedsitting_room bedsitter bedsit,a furnished sitting room with sleeping accommodations (and some plumbing)
+23671,bedsore pressure_sore decubitus_ulcer,a chronic ulcer of the skin caused by prolonged pressure on it (as in bedridden patients)
+23672,bedspread bedcover bed_cover bed_covering counterpane spread,decorative cover for a bed
+23673,bedspring,(usually in the plural) one of the springs holding up the mattress of a bed
+23674,bedstead bedframe,the framework of a bed
+23675,bedstraw,any of several plants of the genus Galium
+23676,bedtime,the time you go to bed
+23677,bedwetter bed_wetter wetter,someone suffering from enuresis; someone who urinates while asleep in bed
+23678,bee,a social gathering to carry out some communal task or to hold competitions
+23679,bee,any of numerous hairy-bodied insects including social and solitary species
+23680,bee_balm beebalm Monarda_fistulosa,perennial herb of North America
+23681,bee_balm beebalm bergamot_mint oswego_tea Monarda_didyma,perennial aromatic herb of eastern North America having variously colored tubular flowers in dense showy heads
+23682,bee_beetle,European beetle; infests beehives
+23683,bee_eater,colorful chiefly tropical Old World bird having a strong graceful flight; feeds on especially bees
+23684,bee_fly,hairy nectar-eating fly that resembles a bee; larvae are parasitic on larvae of bees and related insects
+23685,bee_moth wax_moth Galleria_mellonella,moth whose larvae live in and feed on bee honeycombs
+23686,bee_orchid Ophrys_apifera,European orchid whose flowers resemble bumble bees in shape and color
+23687,bee_sting,a sting inflicted by a bee
+23688,beebread ambrosia,a mixture of nectar and pollen prepared by worker bees and fed to larvae
+23689,beech beech_tree,any of several large deciduous trees with rounded spreading crowns and smooth grey bark and small sweet edible triangular nuts enclosed in burs; north temperate regions
+23690,beech beechwood,wood of any of various beech trees; used for flooring and containers and plywood and tool handles
+23691,beech_fern,any fern of the genus Phegopteris having deeply cut triangular fronds
+23692,beechnut,small sweet triangular nut of any of various beech trees
+23693,beef beef_cattle,cattle that are reared for their meat
+23694,beef boeuf,meat from an adult domestic bovine
+23695,beef_Bourguignonne boeuf_Bourguignonne,beef and mushrooms and onions stewed in red wine and seasonings
+23696,beef_Stroganoff,sauteed strips of beef and mushrooms in sour cream sauce served with noodles
+23697,beef_Wellington filet_de_boeuf_en_croute,rare-roasted beef tenderloin coated with mushroom paste in puff pastry
+23698,beef_broth beef_stock,a stock made with beef
+23699,beef_burrito,a burrito with a beef filling
+23700,beef_fondue boeuf_fondu_bourguignon,cubes of beef cooked in hot oil and then dipped in various tasty sauces
+23701,beef_goulash,meat is browned before stewing
+23702,beef_jerky,strips of dried beef
+23703,beef_loin,cut of meat from a loin of beef
+23704,beef_neck,a cut of beef from the neck of the animal
+23705,beef_roast roast_beef,cut of beef suitable for roasting
+23706,beef_stew,a stew made with beef
+23707,beef_tallow,tallow obtained from a bovine animal
+23708,beef_tea Bovril,an extract of beef (given to people who are ill)
+23709,beef_tenderloin,beef loin muscle
+23710,beef_tongue,the tongue of a cow eaten as meat
+23711,beefcake,a photograph of a muscular man in minimal attire
+23712,beefsteak,a beef steak usually cooked by broiling
+23713,beefsteak_begonia kidney_begonia Begonia_erythrophylla Begonia_feastii,rhizomatous begonia with roundish fleshy leaves reddish colored beneath
+23714,beefsteak_fungus Fistulina_hepatica,a popular edible fungus with a cap the color of liver or raw meat; abundant in southeastern United States
+23715,beefsteak_plant Perilla_frutescens_crispa,plant grown for its ornamental red or purple foliage
+23716,beefsteak_plant beef_plant Iresine_herbstii Iresine_reticulata,South American plant having green to purple or red branches with green to purple ornamental foliage and spikes of insignificant woolly flowers with dry membranous bracts
+23717,beefsteak_tomato,any of several large tomatoes with thick flesh
+23718,beefwood,any of several heavy hard reddish chiefly tropical woods of the families Casuarinaceae and Proteaceae; some used for cabinetwork
+23719,beefwood,any of several Australian trees of the genus Casuarina yielding heavy hard red wood used in cabinetwork
+23720,beefwood Grevillea_striata,tree yielding hard heavy reddish wood
+23721,beehive,a hairdo resembling a beehive
+23722,beehive,any workplace where people are very busy
+23723,beehive hive,a structure that provides a natural habitation for bees; as in a hollow tree
+23724,beehive hive,a man-made receptacle that houses a swarm of bees
+23725,beekeeper apiarist apiculturist,a farmer who keeps bees for their honey
+23726,beekeeping apiculture,the cultivation of bees on a commercial scale for the production of honey
+23727,beeline,the most direct route; "he made a beeline for the bathroom"
+23728,beep bleep,a short high tone produced as a signal or warning
+23729,beeper pager,an electronic device that generates a series of beeps when the person carrying it is being paged
+23730,beer,a general name for alcoholic beverages made by fermenting a cereal (or mixture of cereals) flavored with hops
+23731,beer_barrel beer_keg,a barrel that holds beer
+23732,beer_bottle,a bottle that holds beer
+23733,beer_can,a can that holds beer
+23734,beer_drinker ale_drinker,someone whose favorite drink is beer or ale
+23735,beer_garden,tavern with an outdoor area (usually resembling a garden) where beer and other alcoholic drinks are served
+23736,beer_glass,a relatively large glass for serving beer
+23737,beer_hall,a hall or barroom featuring beer and (usually) entertainment
+23738,beer_mat,a drip mat placed under a glass of beer
+23739,beer_mug stein,a mug intended for serving beer
+23740,beeswax,a yellow to brown wax secreted by honeybees to build honeycombs
+23741,beet beetroot,round red root vegetable
+23742,beet common_beet Beta_vulgaris,biennial Eurasian plant usually having a swollen edible root; widely cultivated as a food crop
+23743,beet_armyworm Spodoptera_exigua,moth larva that eats foliage of beets and other vegetables
+23744,beet_blight,a disease of beet plants
+23745,beet_green,young leaves of the beetroot
+23746,beet_sugar,sugar made from sugar beets
+23747,beet_sugar,sugar from sugar beets used as sweetening agent
+23748,beetle,insect having biting mouthparts and front wings modified to form horny covers overlying the membranous rear wings
+23749,beetroot Beta_vulgaris_rubra,beet having a massively swollen red root; widely grown for human consumption
+23750,befoulment defilement pollution,the state of being polluted
+23751,beggar mendicant,a pauper who lives by begging
+23752,beggar's_lice beggar_lice,Eurasian and North American plants having small prickly nutlets that stick to clothing
+23753,beggar-my-neighbor beggar-my-neighbour strip-Jack-naked,a card game for two players in which the object is to win all of the other player's cards
+23754,beggar-my-neighbor_policy beggar-my-neighbour_policy beggar-my-neighbor_strategy beggar-my-neighbour_strategy,a policy of promoting oneself at the expense of others; used especially of national policy; "the United States has pursued a beggar-my-neighbor policy"
+23755,beggarman,a man who is a beggar
+23756,beggarweed Desmodium_tortuosum Desmodium_purpureum,West Indian forage plant cultivated in southern United States as forage and to improve soil
+23757,beggarwoman,a woman who is a beggar
+23758,beggary begging mendicancy,a solicitation for money or food (especially in the street by an apparently penniless person)
+23759,beggary mendicancy mendicity,the state of being a beggar or mendicant; "they were reduced to mendicancy"
+23760,beginning,the event consisting of the start of something; "the beginning of the war"
+23761,beginning,the first part or section of something; "`It was a dark and stormy night' is a hackneyed beginning for a story"
+23762,beginning commencement first outset get-go start kickoff starting_time showtime offset,the time at which something is supposed to begin; "they got an early start"; "she knew from the get-go that he was the man for her"
+23763,beginning origin root rootage source,the place where something begins, where it springs into being; "the Italian beginning of the Renaissance"; "Jupiter was the origin of the radiation"; "Pittsburgh is the source of the Ohio River"; "communism's Russian root"
+23764,beginning start commencement,the act of starting something; "he was responsible for the beginning of negotiations"
+23765,begonia,any of numerous plants of the genus Begonia grown for their attractive glossy asymmetrical leaves and colorful flowers in usually terminal cymes or racemes
+23766,beguilement distraction,an entertainment that provokes pleased interest and distracts you from worries and vexations
+23767,beguine,music written in the bolero rhythm of the beguine dance
+23768,beguine,a ballroom dance that originated in the French West Indies; similar to the rumba
+23769,begum,a Muslim woman of high rank in India or Pakistan
+23770,behalf,for someone's benefit (usually expressed as `in behalf' rather than `on behalf' and usually with a possessive); "in your behalf"; "campaigning in his own behalf"; "spoke a good word in his friend's behalf"
+23771,behalf,as the agent of or on someone's part (usually expressed as `on behalf of' rather than `in behalf of'); "the guardian signed the contract on behalf of the minor child"; "this letter is written on behalf of my client"
+23772,behavior behaviour,the action or reaction of something (as a machine or substance) under specified circumstances; "the behavior of small particles can be studied in experiments"
+23773,behavior behaviour,(psychology) the aggregate of the responses or reactions or movements made by an organism in any situation
+23774,behavior behaviour conduct doings,manner of acting or controlling yourself
+23775,behavior_therapy behavior_modification,psychotherapy that seeks to extinguish or inhibit abnormal or maladaptive behavior by reinforcing desired behavior and extinguishing undesired behavior
+23776,behaviorism behaviourism behavioristic_psychology behaviouristic_psychology,an approach to psychology that emphasizes observable measurable behavior
+23777,behaviorist behaviourist,a psychologist who subscribes to behaviorism
+23778,behest,an authoritative command or request
+23779,beige ecru,a very light brown
+23780,being beingness existence face_of_the_earth,the state or fact of existing; "a point of view gradually coming into being"; "laws in existence for centuries"; "he appeared on the face of the earth one day"
+23781,bel_canto,a style of operatic singing
+23782,bel_esprit,a witty or clever person with a fine mind
+23783,belay,something to which a mountain climber's rope can be secured
+23784,belaying_pin,a wood or metal bar to which a rope can be secured (as on a ship or in mountain climbing)
+23785,belch belching burp burping eructation,a reflex that expels gas noisily from the stomach through the mouth
+23786,belching,the forceful expulsion of something from inside; "the belching of smoke from factory chimneys"
+23787,beldam beldame,a woman of advanced age
+23788,belemnite,a conical calcareous fossil tapering to a point at one end and with a conical cavity at the other end containing (when unbroken) a small chambered phragmocone from the shell of any of numerous extinct cephalopods of the family Belemnitidae
+23789,belfry,a room (often at the top of a tower) where bells are hung
+23790,belief,any cognitive content held as true
+23791,believer truster,a supporter who accepts something as true
+23792,believer worshiper worshipper,a person who has religious faith
+23793,believing,the cognitive process that leads to convictions; "seeing is believing"
+23794,belittling,the act of belittling
+23795,bell,the flared opening of a tubular device
+23796,bell,a hollow device made of metal that makes a ringing sound when struck
+23797,bell bell_shape campana,the shape of a bell
+23798,bell ship's_bell,(nautical) each of the eight half-hour units of nautical time signaled by strokes of a ship's bell; eight bells signals 4:00, 8:00, or 12:00 o'clock, either a.m. or p.m.
+23799,bell toll,the sound of a bell being struck; "saved by the bell"; "she heard the distant toll of church bells"
+23800,bell-like_call,a birdcall that resembles the tone of a bell
+23801,bell_apple sweet_cup water_lemon yellow_granadilla,the edible yellow fruit of the Jamaica honeysuckle
+23802,bell_arch,a round arch resting on corbels
+23803,bell_book,a logbook in which all orders concerning the main engines of a ship are recorded
+23804,bell_buoy gong_buoy,a buoy with a bell on it
+23805,bell_captain,the supervisor of bellboys in a hotel
+23806,bell_cote bell_cot,a small shelter for bells; has a gable or shed roof
+23807,bell_deck,a floor under the bells of an open belfry
+23808,bell_founder,a person who casts metal bells
+23809,bell_foundry,a foundry where bells are cast
+23810,bell_gable,an extension of a gable that serves as a bell cote
+23811,bell_heather heather_bell fine-leaved_heath Erica_cinerea,common low European shrub with purple-red flowers
+23812,bell_jar bell_glass,a bell-shaped glass cover used to protect and display delicate objects or to cover scientific apparatus or to contain gases
+23813,bell_metal,bronze with 3 or 4 parts copper to 1 part tin; used in making bells
+23814,bell_pepper,large bell-shaped sweet pepper in green or red or yellow or orange or black varieties
+23815,bell_push,a button that is pushed to ring a bell
+23816,bell_ringer,someone who plays musical handbells
+23817,bell_ringer bull's_eye mark home_run,something that exactly succeeds in achieving its goal; "the new advertising campaign was a bell ringer"; "scored a bull's eye"; "hit the mark"; "the president's speech was a home run"
+23818,bell_ringing,the sound of someone playing a set of bells
+23819,bell_ringing carillon carillon_playing,playing a set of bells that are (usually) hung in a tower
+23820,bell_seat balloon_seat,a seat that has a bell shape (on some 18th century chairs)
+23821,bell_tent,a bell-shaped tent
+23822,bell_tower,a tower that supports or shelters a bell
+23823,belladonna,an alkaloidal extract or tincture of the poisonous belladonna plant that is used medicinally
+23824,belladonna belladonna_plant deadly_nightshade Atropa_belladonna,perennial Eurasian herb with reddish bell-shaped flowers and shining black berries; extensively grown in United States; roots and leaves yield atropine
+23825,belladonna_lily naked_lady Amaryllis_belladonna,amaryllis of South Africa often cultivated for its fragrant white or rose flowers
+23826,bellarmine longbeard long-beard greybeard,a stoneware drinking jug with a long neck; decorated with a caricature of Cardinal Bellarmine (17th century)
+23827,bellbird,any of several tropical American birds of the genus Procnias having a bell-like call
+23828,bellbottom_trousers bell-bottoms bellbottom_pants,(used in the plural) trousers with legs that flare; worn by sailors; absurdly wide hems were fashionable in the 1960s
+23829,bellboy bellman bellhop,someone employed as an errand boy and luggage carrier around hotels
+23830,belle,a young woman who is the most charming and beautiful of several rivals; "she was the belle of the ball"
+23831,belles-lettres belles_lettres,creative writing valued for esthetic content
+23832,bellicosity bellicoseness,a natural disposition to fight
+23833,belligerence belligerency,hostile or warlike attitude or nature
+23834,bellow bellowing holla holler hollering hollo holloa roar roaring yowl,a very loud utterance (like the sound of an animal); "his bellow filled the hallway"
+23835,bellows,(used in the plural) a mechanical device that blows a strong current of air; used to make a fire burn more fiercely or to sound a musical instrument
+23836,bellpull,a handle or cord that is pulled to ring a doorbell or a servant's bell etc.
+23837,bellwether,someone who assumes leadership of a movement or activity
+23838,bellwether,sheep that leads the herd often wearing a bell
+23839,bellwort merry_bells wild_oats,any of various plants of the genus Uvularia having yellowish drooping bell-shaped flowers
+23840,belly,a part that bulges deeply; "the belly of a sail"
+23841,belly,the hollow inside of something; "in the belly of the ship"
+23842,belly,the underpart of the body of certain vertebrates such as snakes or fish
+23843,belly paunch,a protruding abdomen
+23844,belly_dance belly_dancing danse_du_ventre,a Middle Eastern dance in which the dancer makes sensuous movements of the hips and abdomen
+23845,belly_dancer exotic_belly_dancer exotic_dancer,a woman who performs a solo belly dance
+23846,belly_flop belly_flopper belly_whop belly_whopper,a dive in which the abdomen bears the main force of impact with the water
+23847,belly_laugh sidesplitter howler thigh-slapper scream wow riot,a joke that seems extremely funny
+23848,bellyband,a cloth band that is worn around the waist (as on infants until the navel has healed)
+23849,bellyband,a strap around the belly of a draft animal holding the shafts of a wagon
+23850,bellyful,an undesirable overabundance; "a bellyful of your complaints"
+23851,belonging,happiness felt in a secure relationship; "with his classmates he felt a sense of belonging"
+23852,beloved dear dearest honey love,a beloved person; used as terms of endearment
+23853,belt,an elongated region where a specific condition or characteristic is found; "a belt of high pressure"
+23854,belt,endless loop of flexible material between two rotating shafts or pulleys
+23855,belt,a band to tie or buckle around the body (usually at the waist)
+23856,belt belt_ammunition belted_ammunition,ammunition (usually of small caliber) loaded in flexible linked strips for use in a machine gun
+23857,belt_buckle,the buckle used to fasten a belt
+23858,belt_maker,a maker of belts
+23859,belted_kingfisher Ceryle_alcyon,greyish-blue North American kingfisher with a chestnut band on its chest
+23860,belted_sandfish Serranus_subligarius,found in warm shallow waters of western Atlantic
+23861,belting,the material of which belts are made
+23862,beltway bypass ring_road ringway,a highway that encircles an urban area so that traffic does not have to pass through the center
+23863,beluga hausen white_sturgeon Acipenser_huso,valuable source of caviar and isinglass; found in Black and Caspian seas
+23864,beluga_caviar,roe of beluga sturgeon usually from Russia; highly valued
+23865,belvedere,a gazebo sited to command a fine view
+23866,ben,a mountain or tall hill; "they were climbing the ben"
+23867,bench,the reserve players on a team; "our team has a strong bench"
+23868,bench,(law) the seat for judges in a courtroom
+23869,bench,a long seat for more than one person
+23870,bench_clamp,a clamp used to hold work in place on a workbench
+23871,bench_hook,any of various stops on a workbench against which work can be pushed (as while chiseling or planing)
+23872,bench_lathe,lathe mounted on a workbench
+23873,bench_press,a small punch press mounted on a workbench
+23874,bench_press,a weightlift in which you lie on your back on a bench and press weights upward
+23875,bench_warmer,(sports) a substitute who seldom plays
+23876,bench_warrant arrest_warrant,a warrant authorizing law enforcement officials to apprehend an offender and bring that person to court
+23877,benchmark,a standard by which something can be measured or judged; "his painting sets the benchmark of quality"
+23878,benchmark bench_mark,a surveyor's mark on a permanent object of predetermined position and elevation used as a reference point
+23879,bend bend_dexter,diagonal line traversing a shield from the upper right corner to the lower left
+23880,bend crook twist turn,a circular segment of a curve; "a bend in the road"; "a crook in the path"
+23881,bend curve,curved segment (of a road or river or railroad track etc.)
+23882,bendability pliability,the property of being easily bent without breaking
+23883,bender,a tool for bending; "he used pliers as a bender"
+23884,bending,the act of bending something
+23885,bending bend,movement that causes the formation of a curve
+23886,benedick benedict,a newly married man (especially one who has long been a bachelor)
+23887,benedictine,a French liqueur originally made by Benedictine monks
+23888,benediction blessing,a ceremonial prayer invoking divine protection
+23889,benefaction,a contribution of money or assistance
+23890,benefactive_role beneficiary,the semantic role of the intended recipient who benefits from the happening denoted by the verb in the clause
+23891,benefactor helper,a person who helps people or institutions (especially with financial help)
+23892,benefactress,a woman benefactor
+23893,benefice ecclesiastical_benefice,an endowed church office giving income to its holder
+23894,beneficence,doing good; feeling beneficent
+23895,beneficence,the quality of being kind or helpful or generous
+23896,beneficiary donee,the recipient of funds or other benefits
+23897,benefit,financial assistance in time of need
+23898,benefit,a performance to raise money for a charitable cause
+23899,benefit welfare,something that aids or promotes well-being; "for the benefit of all"
+23900,benefit_concert,a concert given for the benefit of some charitable cause
+23901,benefit_of_clergy,sanction by a religious rite; "they are living together without benefit of clergy"
+23902,benevolence,disposition to do good
+23903,benevolence,an inclination to do kind or charitable acts
+23904,benevolence benefaction,an act intending or showing kindness and good will
+23905,benign_prostatic_hyperplasia BPH,enlarged prostate; appears to be part of the natural aging process
+23906,benign_tumor benign_tumour nonmalignant_tumor nonmalignant_tumour nonmalignant_neoplasm,a tumor that is not cancerous
+23907,benignity benignancy graciousness,the quality of being kind and gentle
+23908,benison,a spoken blessing
+23909,bennet white_avens Geum_canadense,North American white-flowered avens
+23910,bennet white_avens Geum_virginianum,avens of Virginia having pale or greenish yellow flowers
+23911,bent,an area of grassland unbounded by fences or hedges
+23912,bent bent_grass bent-grass,grass for pastures and lawns especially bowling and putting greens
+23913,bent knack hang,a special way of doing something; "he had a bent for it"; "he had a special knack for getting into trouble"; "he couldn't get the hang of it"
+23914,bent set,a relatively permanent inclination to react in a particular way; "the set of his mind was obvious"
+23915,bent_hang,a hang performed with the elbows bent
+23916,benthos,organisms (plants and animals) that live at or near the bottom of a sea
+23917,benthos benthic_division benthonic_zone,a region including the bottom of the sea and the littoral zones
+23918,bentonite,an absorbent aluminum silicate clay formed from volcanic ash
+23919,bentwood,wood that is steamed until it becomes pliable and then is shaped for use in making furniture; "bentwood chairs"
+23920,benzene benzine benzol,a colorless liquid hydrocarbon; highly flammable; carcinogenic; the simplest of the aromatic compounds
+23921,benzene_formula benzene_ring benzene_nucleus Kekule_formula,a closed chain of 6 carbon atoms with hydrogen atoms attached
+23922,benzoate,any salt or ester of benzoic acid
+23923,benzoate_of_soda sodium_benzoate,a white crystalline salt used as a food preservative and antiseptic
+23924,benzocaine ethyl_aminobenzoate,a white crystalline ester used as a local anesthetic
+23925,benzodiazepine,any of several similar lipophilic amines used as tranquilizers or sedatives or hypnotics or muscle relaxants; chronic use can lead to dependency
+23926,benzofuran coumarone cumarone,a colorless oily compound extracted from coal tar and used in manufacturing synthetic resins
+23927,benzoic_acid,a white crystalline solid occurring in many resins
+23928,benzoin gum_benzoin benjamin gum_benjamin asa_dulcis,gum resin used especially in treating skin irritation
+23929,benzoyl_group benzoyl_radical,the univalent radical derived from benzoic acid
+23930,benzoyl_peroxide,a white crystalline peroxide used in bleaching (flour or oils or fats) and as a catalyst for free radical reactions
+23931,benzyl benzyl_group benzyl_radical,the univalent radical derived from toluene
+23932,bequest legacy,(law) a gift of personal property by will
+23933,berating blowing_up,a severe rebuke; "he deserved the berating that the coach gave him"
+23934,bereaved bereaved_person,a person who has suffered the death of someone they loved; "the bereaved do not always need to be taken care of"
+23935,beret,a cap with no brim or bill; made of soft cloth
+23936,bergamot bergamot_orange Citrus_bergamia,small tree with pear-shaped fruit whose oil is used in perfumery; Italy
+23937,bergamot_mint lemon_mint eau_de_cologne_mint Mentha_citrata,mint with leaves having perfume like that of the bergamot orange
+23938,bergenia,any plant of the genus Bergenia; valued as an evergreen ground cover and for the spring blossoms
+23939,beriberi,avitaminosis caused by lack of thiamine (vitamin B1)
+23940,berk,a stupid person who is easy to take advantage of
+23941,berkelium Bk atomic_number_97,a radioactive transuranic element; discovered by bombarding americium with helium
+23942,berlin,a limousine with a glass partition between the front and back seats
+23943,berm,a narrow ledge or shelf typically at the top or bottom of a slope
+23944,beroe,delicately iridescent thimble-shaped ctenophores
+23945,berry,a small fruit having any of various structures, e.g., simple (grape or blueberry) or aggregate (blackberry or raspberry)
+23946,berry,any of numerous small and pulpy edible fruits; used as desserts or in making jams and jellies and preserves
+23947,berserker berserk,one of the ancient Norse warriors legendary for working themselves into a frenzy before a battle and fighting with reckless savagery and insane fury
+23948,berth bunk built_in_bed,a bed on a ship or train; usually in tiers
+23949,beryl,the chief source of beryllium; colored transparent varieties are valued as gems
+23950,beryllium Be glucinium atomic_number_4,a light strong brittle grey toxic bivalent metallic element
+23951,beryllium_bronze,a copper-base alloy containing beryllium
+23952,besieger,an energetic petitioner
+23953,besieger,an enemy who lays siege to your position
+23954,besom,a broom made of twigs tied together on a long handle
+23955,best,the supreme effort one can make; "they did their best"
+23956,best topper,the person who is most outstanding or excellent; someone who tops all others; "he could beat the best of them"
+23957,best_evidence_rule,a rule of evidence requiring that to prove the content of a writing or recording or photograph the original is required
+23958,best_friend,the one friend who is closest to you
+23959,best_man,the principal groomsman at a wedding
+23960,best_seller bestseller,a book that has had a large and rapid sale
+23961,bestiality,the stupid brutal quality of a beast
+23962,bestiality zooerastia zooerasty sodomy,sexual activity between a person and an animal
+23963,bestiary,a medieval book (usually illustrated) with allegorical and amusing descriptions of real and fabled animals
+23964,bestowal bestowment,a gift that is bestowed or conferred
+23965,bestowal bestowment conferral conferment,the act of conferring an honor or presenting a gift
+23966,bet wager,the act of gambling; "he did it on a bet"
+23967,beta,the 2nd letter of the Greek alphabet
+23968,beta-carotene,an isomer of carotene that is found in dark green and dark yellow fruits and vegetables
+23969,beta-hydroxybutyric_acid,beta derivative of hydroxybutyric acid that is found in the blood and urine in some cases of impaired metabolism
+23970,beta-interferon,a form of interferon that is produced by fibroblasts and have antiviral effects; used in the treatment of multiple sclerosis
+23971,beta-naphthol,an isomer of naphthol used in rubber as an antioxidant
+23972,beta_blocker beta-blocking_agent beta-adrenergic_blocker beta-adrenergic_blocking_agent,any of various drugs used in treating hypertension or arrhythmia; decreases force and rate of heart contractions by blocking beta-adrenergic receptors of the autonomic nervous system
+23973,beta_blocker_eyedrop,a treatment for glaucoma; the eyedrops reduce intraocular pressure by reducing the production of aqueous humor
+23974,beta_cell,a cell that produces insulin in the isles of Langerhans in the pancreas
+23975,beta_decay,radioactive decay of an atomic nucleus that is accompanied by the emission of a beta particle
+23976,beta_endorphin,an endorphin produced by the pituitary gland that suppresses pain
+23977,beta_iron,an allotrope of iron that is the same as alpha iron except that it is nonmagnetic; stable between 768 and 906 degrees centigrade
+23978,beta_particle,a high-speed electron or positron emitted in the decay of a radioactive isotope
+23979,beta_radiation beta_ray electron_radiation,radiation of beta particles during radioactive decay
+23980,beta_receptor beta-adrenergic_receptor beta-adrenoceptor,receptors postulated to exist on nerve cell membranes of the sympathetic nervous system in order to explain the specificity of certain agents that affect only some sympathetic activities (such as vasodilation and increased heart beat)
+23981,beta_rhythm beta_wave,the normal brainwave in the encephalogram of a person who is awake and alert; occurs with a frequency between 12 and 30 hertz
+23982,beta_software,software that has not yet been released but has received an alpha test and still has more bugs than a regular release; "beta software is usually available only to particular users who will test it"
+23983,beta_test,(computer science) a second test of an experimental product (such as computer software) carried out by an outside organization
+23984,betaine,a sweet tasting alkaloid that occurs in sugar beets
+23985,betatron induction_accelerator,accelerates a continuous beam of electrons to high speeds by means of the electric field produced by changing magnetic flux
+23986,betel betel_pepper Piper_betel,Asian pepper plant whose leaves are chewed with betel nut (seed of the betel palm) by southeast Asians
+23987,betel_leaf betel,a leaf of a vine from the betel pepper
+23988,betel_nut areca_nut,seed of betel palm; chewed with leaves of the betel pepper and lime as a digestive stimulant and narcotic in southeastern Asia
+23989,betel_palm Areca_palm Areca_catechu,southeastern Asian palm bearing betel nuts (scarlet or orange single-seeded fruit with a fibrous husk)
+23990,beth,the 2nd letter of the Hebrew alphabet
+23991,bethel,a house of worship (especially one for sailors)
+23992,betrayal,the quality of aiding an enemy
+23993,betrothal espousal,the act of becoming betrothed or engaged
+23994,betrothal troth engagement,a mutual promise to marry
+23995,betrothed,the person to whom you are engaged
+23996,better,a superior person having claim to precedence; "the common man has been kept in his place by his betters"
+23997,better,the superior one of two alternatives; "chose the better of the two"
+23998,better,something superior in quality or condition or effect; "a change for the better"
+23999,betterment,an improvement that adds to the value of a property or facility
+24000,betting_shop,a licensed bookmaker's shop that is not at the race track
+24001,bettong,short-nosed rat kangaroo
+24002,bettor better wagerer punter,someone who bets
+24003,bevatron,a cyclotron that accelerates protons up to several billion electron volts
+24004,bevel bevel_square,a hand tool consisting of two rules that are hinged together so you can draw or measure angles of any size
+24005,bevel cant chamfer,two surfaces meeting at an angle different from 90 degrees
+24006,bevel_gear pinion_and_crown_wheel pinion_and_ring_gear,gears that mesh at an angle
+24007,beverage drink drinkable potable,any liquid suitable for drinking; "may I take your beverage order?"
+24008,bevy,a large gathering of people of a particular type; "he was surrounded by a bevy of beauties in bathing attire"; "a bevy of young beach boys swarmed around him"
+24009,bevy,a flock of birds (especially when gathered close together on the ground); "we were visited at breakfast by a bevy of excited ducks"
+24010,bewilderment obfuscation puzzlement befuddlement mystification bafflement bemusement,confusion resulting from failure to understand
+24011,bewitchery beguilement animal_magnetism,magnetic personal charm
+24012,bey,(formerly) a title of respect for a man in Turkey or Egypt; "he introduced me to Ahmet Bey"
+24013,bey,the governor of a district or province in the Ottoman Empire
+24014,bezant bezzant byzant solidus,a gold coin of the Byzantine Empire; widely circulated in Europe in the Middle Ages
+24015,bezel,a sloping edge on a cutting tool
+24016,bezoar_goat pasang Capra_aegagrus,wild goat of Iran and adjacent regions
+24017,bhakti,(Hinduism) loving devotion to a deity leading to salvation and nirvana; open to all persons independent of caste or sex
+24018,bhang,a preparation of the leaves and flowers of the hemp plant; much used in India
+24019,bi-fold_door,an interior door
+24020,bialy bialystoker,flat crusty-bottomed onion roll
+24021,bias prejudice preconception,a partiality that prevents objective consideration of an issue or situation
+24022,biauriculate_heart,a heart (as of mammals and birds and reptiles) having two auricles
+24023,bib,top part of an apron; covering the chest
+24024,bib,a napkin tied under the chin of a child while eating
+24025,bib-and-tucker,an attractive outfit; "she wore her best bib-and-tucker"
+24026,bible,a book regarded as authoritative in its field
+24027,bibliographer,someone trained in compiling bibliographies
+24028,bibliography,a list of writings with time and place of publication (such as the writings of a single author or the works referred to in preparing a document etc.)
+24029,bibliolatry Bible-worship,the worship of the Bible
+24030,bibliomania,preoccupation with the acquisition and possession of books
+24031,bibliophile booklover book_lover,someone who loves (and usually collects) books
+24032,bibliopole bibliopolist,a dealer in secondhand books (especially rare or curious books)
+24033,bibliotheca,a collection of books
+24034,bibliotics,the scientific study of documents and handwriting etc. especially to determine authorship or authenticity
+24035,bibliotist,someone who engages in bibliotics
+24036,bicameral_script,a script having two distinct cases
+24037,bicarbonate hydrogen_carbonate,a salt of carbonic acid (containing the anion HCO3) in which one hydrogen atom has been replaced; an acid carbonate
+24038,bicarbonate_of_soda sodium_hydrogen_carbonate sodium_bicarbonate baking_soda saleratus,a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid
+24039,bicentennial bicentenary,the 200th anniversary (or the celebration of it)
+24040,biceps,any skeletal muscle having two origins (but especially the muscle that flexes the forearm)
+24041,biceps_brachii musculus_biceps_brachii biceps_humeri,a muscle that flexes and supinates the forearm
+24042,bichromate dichromate,a salt of the hypothetical dichromic acid
+24043,bicker bickering spat tiff squabble pettifoggery fuss,a quarrel about petty points
+24044,bicolor_lespediza ezo-yama-hagi Lespedeza_bicolor,Asian shrub having conspicuous racemose rose-purple flowers widely used as an ornamental and in erosion control and as a source of feed for wild birds
+24045,bicorn bicorne,a cocked hat with the brim turned up to form two points
+24046,bicycle bike wheel cycle,a wheeled vehicle that has two wheels and is moved by foot pedals
+24047,bicycle-built-for-two tandem_bicycle tandem,a bicycle with two sets of pedals and two seats
+24048,bicycle_chain,a chain that transmits the power from the pedals to the rear wheel of a bicycle
+24049,bicycle_clip trouser_clip,a clip worn around a cyclist's ankles that keeps trousers from becoming caught in the bicycle chain
+24050,bicycle_pump,a small pump that fills bicycle tires with air
+24051,bicycle_race bike_race,a race between people riding bicycles
+24052,bicycle_rack,a rack for parking bicycles
+24053,bicycle_seat saddle,a seat for the rider of a bicycle
+24054,bicycle_traffic,bicycles coming and going
+24055,bicycle_wheel,the wheel of a bicycle
+24056,bicycling,riding a bicycle
+24057,bid bidding,(bridge) the number of tricks a bridge player is willing to contract to make
+24058,bid play,an attempt to get something; "they made a futile play for power"; "he made a bid to gain attention"
+24059,bid tender,a formal proposal to buy at a specified price
+24060,bid_price,(stock market) the price at which a broker is willing to buy a certain security
+24061,bidder,someone who makes a bid at cards
+24062,bidder,someone who makes an offer
+24063,bidding summons,a request to be present; "they came at his bidding"
+24064,bidding_contest,a series of competing bids
+24065,bidet,a basin for washing genitals and anal area
+24066,biennial,(botany) a plant having a life cycle that normally takes two seasons from germination to death to complete; flowering biennials usually bloom and fruit in the second season
+24067,bier,a coffin along with its stand; "we followed the bier to the graveyard"
+24068,bier,a stand to support a corpse or a coffin prior to burial
+24069,bifocals,(plural) eyeglasses having two focal lengths, one for near vision and the other for far vision
+24070,bifurcation,a bifurcating branch (one or both of them)
+24071,bifurcation,the place where something divides into two branches
+24072,bifurcation,the act of splitting into two branches
+24073,big-bang_theory big_bang_theory,(cosmology) the theory that the universe originated sometime between 10 billion and 20 billion years ago from the cataclysmic explosion of a small volume of matter at extremely high density and temperature
+24074,big-cone_spruce big-cone_douglas_fir Pseudotsuga_macrocarpa,douglas fir of California having cones 4-8 inches long
+24075,big-eared_bat Megaderma_lyra,large carnivorous Old World bat with very large ears
+24076,big-tree_plum Prunus_mexicana,small tree of southwestern United States having purplish-red fruit sometimes cultivated as an ornamental for its large leaves
+24077,big_H hell_dust nose_drops smack thunder skag scag,street names for heroin
+24078,big_band,a large dance or jazz band usually featuring improvised solos by lead musicians
+24079,big_bang,(cosmology) the cosmic explosion that is hypothesized to have marked the origin of the universe
+24080,big_board,the large display board at the New York Stock Exchange that reports on stocks traded on the exchange
+24081,big_brother,an older brother
+24082,big_brown_bat Eptesicus_fuscus,rather large North American brown bat; widely distributed
+24083,big_business,commercial enterprises organized and financed on a scale large enough to influence social and political policies; "big business is growing so powerful it is difficult to regulate it effectively"
+24084,big_cat cat,any of several large cats typically able to roar and living in the wild
+24085,big_deal,anything of great importance or consequence
+24086,big_game,large animals that are hunted for sport
+24087,big_sagebrush blue_sage Seriphidium_tridentatum Artemisia_tridentata,aromatic shrub of arid regions of western North America having hoary leaves
+24088,big_science,scientific research that requires massive capital investment but is expected to yield very significant results
+24089,big_shellbark big_shellbark_hickory big_shagbark king_nut king_nut_hickory Carya_laciniosa,hickory of the eastern United States resembling the shagbark but having a much larger nut
+24090,big_shot big_gun big_wheel big_cheese big_deal big_enchilada big_fish head_honcho,an important influential person; "he thinks he's a big shot"; "she's a big deal in local politics"; "the Qaeda commander is a very big fish"
+24091,big_sister,an older sister
+24092,big_spender high_roller,one who spends lavishly and ostentatiously on entertainment; "the last of the big spenders"
+24093,big_stick,a display of force or power; "speak softly but carry a big stick"
+24094,big_time,the highest level of an occupation (especially in entertainment)
+24095,big_toe great_toe hallux,the first largest innermost toe
+24096,bigamist,someone who marries one person while already legally married to another
+24097,bigamy,the state of having two spouses at the same time
+24098,bigamy,the offense of marrying someone while you have a living spouse from whom no valid divorce has occurred
+24099,bigeye,red fishes of American coastal tropical waters having very large eyes and rough scales
+24100,bigeye_scad big-eyed_scad goggle-eye Selar_crumenophthalmus,of Atlantic coastal waters; commonly used for bait
+24101,biggin,a child's tight-fitting cap; often ties under the chin
+24102,bighead,any of various diseases of animals characterized by edema of the head and neck
+24103,bigheartedness,the quality of being kind and generous
+24104,bighorn bighorn_sheep cimarron Rocky_Mountain_bighorn Rocky_Mountain_sheep Ovis_canadensis,wild sheep of mountainous regions of western North America having massive curled horns
+24105,bight,a loop in a rope
+24106,bight,a bend or curve (especially in a coastline)
+24107,bight,a broad bay formed by an indentation in the shoreline; "the Bight of Benin"; "the Great Australian Bight"
+24108,bight,the middle part of a slack rope (as distinguished from its ends)
+24109,bignoniad,any woody plant of the family Bignoniaceae
+24110,bigos,a Polish stew of cabbage and meat
+24111,bigot,a prejudiced person who is intolerant of any opinions differing from his own
+24112,bigotry dogmatism,the intolerance and prejudice of a bigot
+24113,bigram,a word that is written with two letters in an alphabetic writing system
+24114,bijou,a small and delicately worked piece
+24115,bijugate_leaf bijugous_leaf twice-pinnate,a pinnate leaf having two pairs of leaflets
+24116,bikini two-piece,a woman's very brief bathing suit
+24117,bikini_pants,(used in the plural) small and tight-fitting underpants; worn by women
+24118,bilabial,a consonant that is articulated using both lips; /p/ or /b/ or /w/
+24119,bilateral_contract,a contract involving mutual promises (each party is both promisor and promisee)
+24120,bilateral_descent,line of descent traced through both the maternal and paternal sides of the family
+24121,bilaterality bilateralism bilateral_symmetry,the property of being symmetrical about a vertical plane
+24122,bilberry thin-leaved_bilberry mountain_blue_berry Viccinium_membranaceum,erect blueberry of western United States having solitary flowers and somewhat sour berries
+24123,bilberry whortleberry European_blueberry,blue-black berries similar to American blueberries
+24124,bilberry whortleberry whinberry blaeberry Viccinium_myrtillus,erect European blueberry having solitary flowers and blue-black berries
+24125,bile gall,a digestive juice secreted by the liver and stored in the gallbladder; aids in the digestion of fats
+24126,bile_acid,any of the steroid acids generated in the liver and stored with bile
+24127,bile_salt,a salt of bile acid and a base; functions as an emulsifier of lipids and fatty acids
+24128,bilge,where the sides of the vessel curve in to form the bottom
+24129,bilge bilge_water,water accumulated in the bilge of a ship
+24130,bilge_keel,either of two lengthwise fins attached along the outside of a ship's bilge; reduces rolling
+24131,bilge_pump,a pump to remove bilgewater
+24132,bilge_well,(nautical) a well where seepage drains to be pumped away
+24133,bilges,in a vessel with two hulls, an enclosed area between the frames at each side
+24134,biliary_ductule,excretory ducts of the liver; empty into the hepatic ducts
+24135,bilimbi Averrhoa_bilimbi,East Indian evergreen tree bearing very acid fruit
+24136,bilingual bilingualist,a person who speaks two languages fluently
+24137,bilingual_dictionary,a dictionary giving equivalent words in two languages
+24138,bilingualism,the ability to speak two languages colloquially
+24139,biliousness,gastric distress caused by a disorder of the liver or gall bladder
+24140,bilirubin hematoidin haematoidin,an orange-yellow pigment in the bile that forms as a product of hemoglobin; excess amounts in the blood produce the yellow appearance observed in jaundice
+24141,bill,a list of particulars (as a playbill or bill of fare)
+24142,bill,the entertainment offered at a public presentation
+24143,bill account invoice,an itemized statement of money owed for goods shipped or services rendered; "he paid his bill and left"; "send me an account of what I owe"
+24144,bill billhook,a cutting tool with a sharp edge; "he used a bill to prune branches off of the tree"
+24145,bill measure,a statute in draft before it becomes law; "they held a public hearing on the bill"
+24146,bill note government_note bank_bill banker's_bill bank_note banknote Federal_Reserve_note greenback,a piece of paper money (especially one issued by a central bank); "he peeled off five one-thousand-zloty notes"
+24147,bill peak eyeshade visor vizor,a brim that projects to the front to shade the eyes; "he pulled down the bill of his cap and trudged ahead"
+24148,bill_of_Particulars,the particular events to be dealt with in a criminal trial; advises the defendant and the court of the facts the defendant will be required to meet
+24149,bill_of_attainder,a legislative act finding a person guilty of treason or felony without a trial; "bills of attainder are prohibited by the Constitution of the United States"
+24150,bill_of_entry,a list of goods received at a customhouse for export or import
+24151,bill_of_goods,communication (written or spoken) that persuades someone to accept something untrue or undesirable; "they tried to sell me a bill of goods about a secondhand car"
+24152,bill_of_goods,a consignment of merchandise
+24153,bill_of_health,a certificate saying that a departing ship's company is healthy (to be presented at the next port of arrival)
+24154,bill_of_lading waybill,a receipt given by the carrier to the shipper acknowledging receipt of the goods being shipped and specifying the terms of delivery
+24155,bill_of_review,a proceeding brought to obtain an explanation or an alteration or a reversal of a decree by the court that rendered it
+24156,bill_of_sale,a deed transferring personal property
+24157,bill_poster poster bill_sticker,someone who pastes up bills or placards on walls or billboards
+24158,billabong,a stagnant pool of water in the bed of a stream that flows intermittently
+24159,billabong,a branch of a river made by water flowing from the main stream only when the water level is high
+24160,billboard hoarding,large outdoor signboard
+24161,billet,lodging for military personnel (especially in a private home)
+24162,billfish,giant warm-water game fish having a prolonged and rounded toothless upper jaw
+24163,billiard_ball,ball used in playing billiards
+24164,billiard_marker,a device for keeping the score in a game of billiards
+24165,billiard_player,someone who plays billiards
+24166,billiard_room billiard_saloon billiard_parlor billiard_parlour billiard_hall,a room in which billiards is played
+24167,billiards,any of several games played on rectangular cloth-covered table (with cushioned edges) in which long tapering cue sticks are used to propel ivory (or composition) balls
+24168,billion one_million_million 1000000000000,the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen
+24169,billion one_thousand_million 1000000000,the number that is represented as a one followed by 9 zeros
+24170,billionaire,a very rich person whose material wealth is valued at more than a billion dollars
+24171,billionth,position 1,000,000,000 in a countable series of things
+24172,billow surge,a large sea wave
+24173,billy billy_goat he-goat,male goat
+24174,billy_buttons,any of various plants of the genus Craspedia grown for their downy foliage and globose heads of golden flowers; Australia and New Zealand
+24175,billyo billyoh billy-ho all_get_out,an unimaginably large amount; "British say `it rained like billyo' where Americans say `it rained like all get out'"
+24176,bilocation,the ability (said of certain Roman Catholic saints) to exist simultaneously in two locations
+24177,bilocular_capsule,a capsule divided into two cells or compartments
+24178,biltong,meat that is salted and cut into strips and dried in the sun
+24179,bimbo,a young woman indulged by rich and powerful older men
+24180,bimester,a period of 2 months
+24181,bimetal,material made by bonding together sheets of two different metals
+24182,bimetallic_strip,a strip consisting of two metals that bends with a rise in temperature
+24183,bimetallism,a monetary standard under which the basic unit of currency is defined by stated amounts of two metals (usually gold and silver) with values set at a predetermined ratio
+24184,bimetallist,an advocate of bimetallism
+24185,bimillennium bimillenary,the 2000th anniversary (or the celebration of it)
+24186,bimillennium bimillenary,a span of 2000 years
+24187,bimonthly,a periodical that is published twice a month or every two months (either 24 or 6 issues per year)
+24188,bin,a container; usually has a lid
+24189,bin binful,the quantity contained in a bin
+24190,bin_Laden Osama_bin_Laden Usama_bin_Laden,Arab terrorist who established al-Qaeda (born in 1957)
+24191,bin_liner,a plastic bag used to line a trash or garbage bin
+24192,binary binary_program,a pre-compiled, pre-linked program that is ready to run under a given operating system; a binary for one operating system will not run on a different operating system; "the same source code can be compiled to produce different binaries for different operating systems"
+24193,binary_code,code using a string of 8 binary digits to represent characters
+24194,binary_compound,chemical compound composed of only two elements
+24195,binary_digit,either 0 or 1 in binary notation
+24196,binary_file,(computer science) a computer file containing machine-readable information that must be read by an application; characters use all 8 bits of each byte
+24197,binary_notation,any notation that uses 2 characters (usually 0 and 1)
+24198,binary_numeration_system pure_binary_numeration_system binary_number_system binary_system,a positional system of numeration that uses binary digits and a radix of two
+24199,binary_star binary double_star,a system of two stars that revolve around each other under their mutual gravitation
+24200,bind,something that hinders as if with bonds
+24201,binder,something used to bind separate particles together or facilitate adhesion to a surface
+24202,binder ligature,something used to tie or bind
+24203,binder reaper_binder,a machine that cuts grain and binds it in sheaves
+24204,binder ring-binder,holds loose papers or magazines
+24205,binder's_board binder_board,a cardboard used by bookbinders to make covers for books
+24206,bindery,a workshop where books are bound
+24207,binding,the capacity to attract and hold something
+24208,binding,strip sewn over or along an edge for reinforcement or decoration
+24209,binding book_binding cover back,the protective covering on the front, back, and spine of a book; "the book had a leather binding"
+24210,binding_energy separation_energy,the energy required to separate particles from a molecule or atom or nucleus; equals the mass defect
+24211,bindweed,any of several vines of the genera Convolvulus and Calystegia having a twining habit
+24212,bing_cherry,dark red or blackish sweet cherry
+24213,binnacle,a nonmagnetic housing for a ship's compass (usually in front of the helm)
+24214,binocular_microscope,a light microscope adapted to the use of both eyes
+24215,binocular_vision,vision involving the use of both eyes
+24216,binoculars field_glasses opera_glasses,(plural) an optical instrument designed for simultaneous use by both eyes
+24217,binomial,(mathematics) a quantity expressed as a sum or difference of two terms; a polynomial with two terms
+24218,binomial_distribution Bernoulli_distribution,a theoretical distribution of the number of successes in a finite set of independent trials with a constant probability of success
+24219,binomial_theorem,a theorem giving the expansion of a binomial raised to a given power
+24220,binturong bearcat Arctictis_bintourong,arboreal civet of Asia having a long prehensile tail and shaggy black hair
+24221,bioassay bio-assay,appraisal of the biological activity of a substance by testing its effect on an organism and comparing the result with some agreed standard
+24222,biocatalyst,a biochemical catalyst such as an enzyme
+24223,biochemical_mechanism,a chemical mechanism involved in vital processes occurring in living organisms
+24224,biochemist,someone with special training in biochemistry
+24225,biochemistry,the organic chemistry of compounds and processes occurring in organisms; the effort to understand biology within the context of chemistry
+24226,biochip,a microchip that uses tiny strands of DNA to latch onto and quickly recognize thousands of genes at a time; intended for use in a biological environment
+24227,bioclimatology,the study of effects of climate on living organisms
+24228,biodegradable_pollution,pollution that is rendered harmless by natural processes and so causes no permanent harm
+24229,biodiversity,the diversity of plant and animal life in a particular habitat (or in the world as a whole); "a high level of biodiversity is desirable"
+24230,bioelectricity,electric phenomena in animals or plants
+24231,bioethics,the branch of ethics that studies moral values in the biomedical sciences
+24232,biofeedback,a training program in which a person is given information about physiological processes (heart rate or blood pressure) that is not normally available with the goal of gaining conscious control of them
+24233,biogenesis biogeny,the production of living organisms from other living organisms
+24234,biogeographical_region,an area of the Earth determined by distribution of flora and fauna
+24235,biogeography,dealing with the geographical distribution of animals and plants
+24236,biographer,someone who writes an account of a person's life
+24237,biography life life_story life_history,an account of the series of events making up a person's life
+24238,biohazard,hazard to humans or the environment resulting from biological agents or conditions
+24239,biohazard_suit,a loose one-piece garment worn to protect the wearer against dangerous biological or chemical agents
+24240,biological_agent biohazard,any bacterium or virus or toxin that could be used in biological warfare
+24241,biological_clock,an innate mechanism in living organisms that controls the periodicity of many physiological functions
+24242,biological_defense biological_defence biodefense biodefence,procedures involved in taking defensive measures against attacks using biological agents
+24243,biological_group,a group of plants or animals
+24244,biological_research,scientific research conducted by biologists
+24245,biological_time,the time of various biological processes
+24246,biological_warfare BW biological_attack biologic_attack bioattack,the use of bacteria or viruses or toxins to destroy men and animals or food
+24247,biological_warfare_defense biological_warfare_defence BW_defense BW_defence,defense against biological warfare
+24248,biologism,use of biological principles in explaining human especially social behavior
+24249,biologist life_scientist,(biology) a scientist who studies living organisms
+24250,biology,characteristic life processes and phenomena of living organisms; "the biology of viruses"
+24251,biology biological_science,the science that studies living organisms
+24252,biology_department department_of_biology,the academic department responsible for teaching and research in biology
+24253,biology_lab biology_laboratory bio_lab,a laboratory for biological research
+24254,bioluminescence,luminescence produced by physiological processes (as in the firefly)
+24255,biomass,plant materials and animal waste used as fuel
+24256,biomass,the total mass of living matter in a given unit area
+24257,biome,a major biotic community characterized by the dominant forms of plant life and the prevailing climate
+24258,biomedical_science,the application of the principles of the natural sciences to medicine
+24259,biomedicine,the branch of medical science that applies biological and physiological principles to clinical practice
+24260,biomedicine,the branch of medical science that studies the ability of organisms to withstand environmental stress (as in space travel)
+24261,biometric_identification biometric_authentication identity_verification,the automatic identification of living individuals by using their physiological and behavioral characteristics; "negative identification can only be accomplished through biometric identification"; "if a pin or password is lost or forgotten it can be changed and reissued but a biometric identification cannot"
+24262,biometrics biometry biostatistics,a branch of biology that studies biological phenomena and observations by means of statistical analysis
+24263,bionics,application of biological principles to the study and design of engineering systems (especially electronic systems)
+24264,biont,a discrete unit of living matter
+24265,biophysicist,a physicist who applies the methods of physics to biology
+24266,biophysics,physics as applied to biological problems
+24267,biopiracy,biological theft; illegal collection of indigenous plants by corporations who patent them for their own use
+24268,biopsy,examination of tissues or liquids from the living body to determine the existence or cause of a disease
+24269,bioremediation,the branch of biotechnology that uses biological process to overcome environmental problems
+24270,bioremediation,the act of treating waste or pollutants by the use of microorganisms (as bacteria) that can break down the undesirable substances
+24271,biosafety,safety from exposure to infectious agents
+24272,biosafety_level,the level of safety from exposure to infectious agents; depends on work practices and safety equipment and facilities
+24273,biosafety_level_1,exposure only to infectious agents that do not ordinarily cause human disease
+24274,biosafety_level_2,exposure to infectious agents that can cause disease in humans but whose potential for transmission is limited
+24275,biosafety_level_3,exposure to infectious agents that can be transmitted by the respiratory route and which can cause serious infection
+24276,biosafety_level_4,exposure to exotic infectious agents that pose a high risk of life-threatening disease and can be transmitted as an aerosol and for which there is no vaccine or therapy
+24277,bioscope,a South African movie theater
+24278,bioscope,a kind of early movie projector
+24279,biosphere,the regions of the surface and atmosphere of the Earth (or other planet) where living organisms exist
+24280,biosynthesis biogenesis,production of a chemical compound by a living organism
+24281,biosystematics biosystematy,use of data (e.g. cytogenetic or biochemical) to assess taxonomic relations especially within an evolutionary framework
+24282,biota biology,all the plant and animal life of a particular region
+24283,biotechnology bioengineering ergonomics,the branch of engineering science in which biological science is used to study the relation between workers and their environments
+24284,biotechnology biotech,the branch of molecular biology that studies the use of microorganisms to perform specific industrial processes; "biotechnology produced genetically altered bacteria that solved the problem"
+24285,bioterrorism biological_terrorism,terrorism using the weapons of biological warfare
+24286,biotin vitamin_H,a B vitamin that aids in body growth
+24287,biotite,dark brown to black mica found in igneous and metamorphic rock
+24288,biotype,organisms sharing a specified genotype or the genotype (or peculiarities) so shared
+24289,bioweapon biological_weapon bioarm,any weapon usable in biological warfare; "they feared use of the smallpox virus as a bioweapon"
+24290,biped,an animal with two feet
+24291,bipedalism,the bodily attribute of being bipedal; having two feet; "bipedalism made the human form of birth possible"
+24292,bipinnate_leaf,a leaf having pinnate leaflets; as ferns
+24293,biplane,old fashioned airplane; has two wings one above the other
+24294,biplane_flying_fish four-wing_flying_fish,having both pectoral and pelvic fins enlarged
+24295,bipolar_disorder manic_depression manic_depressive_illness manic-depressive_psychosis,a mental disorder characterized by episodes of mania and depression
+24296,biprism,an optical device for obtaining interference fringes
+24297,biquadrate biquadratic quartic fourth_power,an algebraic equation or function of the fourth degree
+24298,biquadratic biquadratic_polynomial quartic_polynomial,a polynomial of the fourth degree
+24299,biquadratic_equation biquadratic,an equation of the fourth degree
+24300,birch,hard close-grained wood of any of various birch trees; used especially in furniture and interior finishes and plywood
+24301,birch birch_rod,a switch consisting of a twig or a bundle of twigs from a birch tree; used to hit people as punishment; "my father never spared the birch"
+24302,birch birch_tree,any betulaceous tree or shrub of the genus Betula having a thin peeling bark
+24303,birch_beer,carbonated drink containing an extract from bark of birch trees
+24304,birch_leaf_miner Fenusa_pusilla,small black sawfly native to Europe but established in eastern United States; larvae mine the leaves of birches causing serious defoliation
+24305,birchbark_canoe birchbark birch_bark,a canoe made with the bark of a birch tree
+24306,bird,warm-blooded egg-laying vertebrates characterized by feathers and forelimbs modified as wings
+24307,bird fowl,the flesh of a bird or fowl (wild or domestic) used as food
+24308,bird's-eye_bush Ochna_serrulata,shrub with narrow-elliptic glossy evergreen leaves and yellow flowers with leathery petaloid sepals
+24309,bird's-eye_maple,maple wood having a wavy grain with eyelike markings
+24310,bird's-foot_fern Pellaea_mucronata Pellaea_ornithopus,cliff brake of California and Baja California having purple-brown leafstalks
+24311,bird's-foot_violet pansy_violet Johnny-jump-up wood_violet Viola_pedata,common violet of the eastern United States with large pale blue or purple flowers resembling pansies
+24312,bird's-nest_fungus,any of various fungi of the family Nidulariaceae having a cup-shaped body containing several egg-shaped structure enclosing the spores
+24313,bird's_eye_view panoramic_view,a situation or topic as if viewed from an altitude or distance
+24314,bird's_foot,the foot of a bird
+24315,bird's_foot_trefoil Trigonella_ornithopodioides,Old World herb related to fenugreek
+24316,bird's_foot_trefoil bird's_foot_clover babies'_slippers bacon_and_eggs Lotus_corniculatus,European forage plant having claw-shaped pods introduced in America
+24317,bird's_nest bird_nest birdnest,nest where birds lay their eggs and hatch their young
+24318,bird's_nest_fern Asplenium_nidus,tropical Old World or Australian epiphytic fern frequently forming tufts in tree crotches
+24319,bird_cherry bird_cherry_tree,any of several small-fruited cherry trees frequented or fed on by birds
+24320,bird_dog,a gun dog trained to locate or retrieve birds
+24321,bird_family,a family of warm-blooded egg-laying vertebrates characterized by feathers and forelimbs modified as wings
+24322,bird_fancier,a person with a strong interest in birds
+24323,bird_feed bird_food birdseed,food given to birds; usually mixed seeds
+24324,bird_feeder birdfeeder feeder,an outdoor device that supplies food for wild birds
+24325,bird_genus,a genus of birds
+24326,bird_louse biting_louse louse,wingless insect with mouth parts adapted for biting; mostly parasitic on birds
+24327,bird_of_paradise,any of numerous brilliantly colored plumed birds of the New Guinea area
+24328,bird_of_paradise Strelitzia_reginae,ornamental plant of tropical South Africa and South America having stalks of orange and purplish-blue flowers resembling a bird
+24329,bird_of_paradise poinciana Caesalpinia_gilliesii Poinciana_gilliesii,a tropical flowering shrub having bright orange or red flowers; sometimes placed in genus Poinciana
+24330,bird_of_passage,any bird that migrates seasonally
+24331,bird_of_prey raptor raptorial_bird,any of numerous carnivorous birds that hunt and kill other animals
+24332,bird_pepper Capsicum_frutescens_baccatum Capsicum_baccatum,plant bearing very small and very hot oblong red fruits; includes wild forms native to tropical America; thought to be ancestral to the sweet pepper and many hot peppers
+24333,bird_shot buckshot duck_shot,small lead shot for shotgun shells
+24334,bird_watcher birder,a person who identifies and studies birds in their natural habitats
+24335,birdbath,an ornamental basin (usually in a garden) for birds to bathe in
+24336,birdcage,a cage in which a bird can be kept
+24337,birdcage_mask,a catcher's mask with a strong wire face
+24338,birdcall,a device for imitating a birdcall
+24339,birdcall call birdsong song,the characteristic sound produced by a bird; "a bird will not learn its song unless it hears it at an early age"
+24340,birdhouse,a shelter for birds
+24341,birdie,(golf) a score of one stroke under par on a hole
+24342,birdlime lime,a sticky adhesive that is smeared on small branches to capture small birds
+24343,birdnesting,hunting for birds' nests to get the eggs
+24344,biretta berretta birretta,a stiff cap with ridges across the crown; worn by Roman Catholic clergy
+24345,birling logrolling,rotating a log rapidly in the water (as a competitive sport)
+24346,birr,the basic unit of money in Ethiopia; equal to 100 cents
+24347,birth,the time when something begins (especially life); "they divorced after the birth of the child"; "his election signaled the birth of a new age"
+24348,birth,a baby born; an offspring; "the overall rate of incidence of Down's syndrome is one in every 800 births"
+24349,birth nativity nascency nascence,the event of being born; "they celebrated the birth of their first child"
+24350,birth-control_campaigner birth-control_reformer,a social reformer who advocates birth control and family planning
+24351,birth_canal,a passage in the uterus and vagina through which a fetus passes during vaginal birth
+24352,birth_certificate,a copy of the official document giving details of a person's birth
+24353,birth_control birth_prevention family_planning,limiting the number of children born
+24354,birth_defect congenital_anomaly congenital_defect congenital_disorder congenital_abnormality,a defect that is present at birth
+24355,birth_pangs labor_pains labour_pains,a regularly recurrent spasm of pain that is characteristic of childbirth
+24356,birth_trauma,physical injury to an infant during the birth process
+24357,birth_trauma,emotional injury inflicted on an infant by events incident to birth that is alleged to appear in symbolic form in patients with mental illness
+24358,birthday,an anniversary of the day on which a person was born (or the celebration of it)
+24359,birthday natal_day,the date on which a person was born
+24360,birthday_cake,decorated cake served at a birthday party
+24361,birthday_card,a card expressing a birthday greeting
+24362,birthday_party,a party held on the anniversary of someone's birth
+24363,birthday_present birthday_gift,a present given in celebration of a person's birthday
+24364,birthmark nevus,a blemish on the skin that is formed before birth
+24365,birthplace cradle place_of_origin provenance provenience,where something originated or was nurtured in its early existence; "the birthplace of civilization"
+24366,birthplace place_of_birth,the place where someone was born
+24367,birthrate birth_rate fertility fertility_rate natality,the ratio of live births in an area to the population of that area; expressed per 1000 population per year
+24368,birthright,a right or privilege that you are entitled to at birth; "free public education is the birthright of every American child"
+24369,birthright,personal characteristics that are inherited at birth
+24370,birthright patrimony,an inheritance coming by right of birth (especially by primogeniture)
+24371,birthwort Aristolochia_clematitis,creeping plant having curving flowers thought to resemble fetuses; native to Europe; naturalized Great Britain and eastern North America
+24372,biryani biriani,an Indian dish made with highly seasoned rice and meat or fish or vegetables
+24373,biscuit,small round bread leavened with baking-powder or soda
+24374,bise bize,a dry cold north wind in southeastern France
+24375,bisection,dividing into two equal parts
+24376,biserial_correlation_coefficient biserial_correlation,a correlation coefficient in which one variable is many-valued and the other is dichotomous
+24377,bisexual bisexual_person,a person who is sexually attracted to both sexes
+24378,bisexuality,sexual activity with both men and women
+24379,bishop,a senior member of the Christian clergy having spiritual and administrative authority; appointed in Christian churches to oversee priests or ministers; considered in some churches to be successors of the twelve Apostles of Christ
+24380,bishop,port wine mulled with oranges and cloves
+24381,bishop,(chess) a piece that can be moved diagonally over unoccupied squares of the same color
+24382,bishop_pine bishop's_pine Pinus_muricata,two-needled or three-needled pinon mostly of northwestern California coast
+24383,bishopry episcopate,the office and dignity of a bishop
+24384,bismuth Bi atomic_number_83,a heavy brittle diamagnetic trivalent metallic element (resembles arsenic and antimony chemically); usually recovered as a by-product from ores of other metals
+24385,bison,any of several large humped bovids having shaggy manes and large heads and short horns
+24386,bisque,a thick cream soup made from shellfish
+24387,bister bistre,a water-soluble brownish-yellow pigment made by boiling wood soot
+24388,bistro,a small informal restaurant; serves wine
+24389,bit,a unit of measurement of information (from binary + digit); the amount of information in a system having two equiprobable states; "there are 8 bits in a byte"
+24390,bit,the part of a key that enters a lock and lifts the tumblers
+24391,bit,piece of metal held in horse's mouth by reins and used to control the horse while riding; "the horse was not accustomed to a bit"
+24392,bit,the cutting part of a drill; usually pointed and threaded and is replaceable in a brace or bitstock or drill press; "he looked around for the right size bit"
+24393,bit chip flake fleck scrap,a small fragment of something broken off from the whole; "a bit of rock caught him in the eye"
+24394,bit_field,a field containing only binary characters
+24395,bit_part minor_role,a small role
+24396,bitartrate,an acid tartrate; a hydrogen tartrate
+24397,bitch,an unpleasant difficulty; "this problem is a real bitch"
+24398,bitch,female of any member of the dog family
+24399,bitchery,aggressive remarks and behavior like that of a spiteful malicious woman
+24400,bite,a wound resulting from biting by an animal or a person
+24401,bite,(angling) an instance of a fish taking the bait; "after fishing for an hour he still had not had a bite"
+24402,bite,a portion removed from the whole; "the government's weekly bite from my paycheck"
+24403,bite chomp,the act of gripping or chewing off with the teeth and jaws
+24404,bite collation snack,a light informal meal
+24405,bite_plate biteplate,a removable dental appliance that is worn in the palate for diagnostic or therapeutic purposes
+24406,biter,someone who bites
+24407,bitewing,a dental X-ray film that can be held in place by the teeth during radiography
+24408,bitmap electronic_image,an image represented as a two dimensional array of brightness values for pixels
+24409,bitok,a Russian dish made with patties of ground meat (mixed with onions and bread and milk) and served with a sauce of sour cream
+24410,bits_per_inch bpi,a measure of how densely information is packed on a storage medium
+24411,bits_per_second bps,(computer science) the rate at which data is transferred (as by a modem)
+24412,bitt_pin,a pin through the bitthead to keep the mooring lines from slipping off
+24413,bitter,English term for a dry sharp-tasting ale with strong flavor of hops (usually on draft)
+24414,bitter bitterness,the taste experience when quinine or coffee is taken into the mouth
+24415,bitter_almond Prunus_dulcis_amara Amygdalus_communis_amara,almond trees having white blossoms and poisonous nuts yielding an oil used for flavoring and for medicinal purposes
+24416,bitter_almond_oil,pale yellow essential oil obtained from bitter almonds by distillation from almond cake or meal
+24417,bitter_betch Vicia_orobus,European perennial toxic vetch
+24418,bitter_cassava manioc mandioc mandioca tapioca_plant gari Manihot_esculenta Manihot_utilissima,cassava with long tuberous edible roots and soft brittle stems; used especially to make cassiri (an intoxicating drink) and tapioca
+24419,bitter_chocolate baking_chocolate cooking_chocolate,pure unsweetened chocolate used in baking and icings and sauces and candy
+24420,bitter_dock broad-leaved_dock yellow_dock Rumex_obtusifolius,European dock with broad obtuse leaves and bitter rootstock common as a weed in North America
+24421,bitter_end,the final extremity (however unpleasant it may be); "he was determined to fight to the bitter end"
+24422,bitter_end,(nautical) the inboard end of a line or cable especially the end that is wound around a bitt
+24423,bitter_lemon,tart lemon-flavored carbonated drink
+24424,bitter_orange Seville_orange sour_orange,highly acidic orange used especially in marmalade
+24425,bitter_pea,any of several spiny shrubs of the genus Daviesia having yellow flowers and triangular seeds; Australia
+24426,bitter_principle,any one of several hundred compounds having a bitter taste; not admitting of chemical classification
+24427,bittercress bitter_cress,any of various herbs of the genus Cardamine, having usually pinnate leaves and racemes of white, pink or purple flowers; cosmopolitan except Antarctic
+24428,bittern,relatively small compact tawny-brown heron with nocturnal habits and a booming cry; found in marshes
+24429,bitterness acrimony acerbity jaundice tartness thorniness,a rough and bitter manner
+24430,bitterness bitter,the property of having a harsh unpleasant taste
+24431,bitternut bitternut_hickory bitter_hickory bitter_pignut swamp_hickory Carya_cordiformis,hickory of the eastern United States having a leaves with 7 or 9 leaflets and thin-shelled very bitter nuts
+24432,bitterroot Lewisia_rediviva,showy succulent ground-hugging plant of Rocky Mountains regions having deep to pale pink flowers and fleshy farinaceous roots; the Montana state flower
+24433,bitters,alcoholic liquor flavored with bitter herbs and roots
+24434,bittersweet American_bittersweet climbing_bittersweet false_bittersweet staff_vine waxwork shrubby_bittersweet Celastrus_scandens,twining shrub of North America having yellow capsules enclosing scarlet seeds
+24435,bittersweet bittersweet_nightshade climbing_nightshade deadly_nightshade poisonous_nightshade woody_nightshade Solanum_dulcamara,poisonous perennial Old World vine having violet flowers and oval coral-red berries; widespread weed in North America
+24436,bittersweet_chocolate semi-sweet_chocolate dark_chocolate,chocolate liquor with cocoa butter and small amounts of sugar and vanilla; lecithin is usually added
+24437,bitterwood_tree,any of various trees or shrubs of the family Simaroubaceae having wood and bark with a bitter taste
+24438,bitthead,the upper end of a bitt
+24439,bitumastic,a protective coating of asphalt and filter used on structural metals that are exposed to weathering
+24440,bitumen,any of various naturally occurring impure mixtures of hydrocarbons
+24441,bituminous_coal soft_coal,rich in tarry hydrocarbons; burns readily with a smoky yellow flame
+24442,bivalve pelecypod lamellibranch,marine or freshwater mollusks having a soft body with platelike gills enclosed within two shells hinged together
+24443,biweekly,a periodical that is published twice a week or every two weeks (either 104 or 26 issues per year)
+24444,black,(board games) the darker pieces
+24445,black,black clothing (worn as a sign of mourning); "the widow wore black"
+24446,black blackness inkiness,the quality or state of the achromatic color of least lightness (bearing the least resemblance to white)
+24447,black-and-tan_coonhound,American breed of large powerful hound dogs used for hunting raccoons and other game
+24448,black-backed_gull great_black-backed_gull cob Larus_marinus,white gull having a black back and wings
+24449,black-billed_cuckoo Coccyzus_erythropthalmus,North American cuckoo; builds a nest and rears its own young
+24450,black-body_radiation blackbody_radiation,the electromagnetic radiation that would be radiated from an ideal black body; the distribution of energy in the radiated spectrum of a black body depends only on temperature and is determined by Planck's radiation law
+24451,black-capped_chickadee blackcap Parus_atricapillus,chickadee having a dark crown
+24452,black-crowned_night_heron Nycticorax_nycticorax,night heron of both Old and New Worlds
+24453,black-eyed_Susan Rudbeckia_hirta Rudbeckia_serotina,the state flower of Maryland; of central and southeastern United States; having daisylike flowers with dark centers and yellow to orange rays
+24454,black-eyed_Susan black-eyed_Susan_vine Thunbergia_alata,tropical African climbing plant having yellow flowers with a dark purple center
+24455,black-eyed_pea cowpea,eaten fresh as shell beans or dried
+24456,black-footed_albatross gooney gooney_bird goonie goony Diomedea_nigripes,a variety of albatross with black feet
+24457,black-footed_ferret ferret Mustela_nigripes,musteline mammal of prairie regions of United States; nearly extinct
+24458,black-fronted_bush_shrike Chlorophoneus_nigrifrons,a kind of bush shrike
+24459,black-headed_snake,small secretive ground-living snake; found from central United States to Argentina
+24460,black-necked_cobra spitting_cobra Naja_nigricollis,aggressive cobra widely distributed in Africa; rarely bites but spits venom that may cause blindness
+24461,black-necked_grebe eared_grebe Podiceps_nigricollis,small grebe with yellow ear tufts and a black neck; found in Eurasia and southern Africa as well as western United States
+24462,black-necked_stilt Himantopus_mexicanus,stilt of southwestern United States to northern South America having black plumage extending from the head down the back of the neck
+24463,black-stem_spleenwort black-stemmed_spleenwort little_ebony_spleenwort,fern of tropical America: from southern United States to West Indies and Mexico to Brazil
+24464,black-tailed_deer blacktail_deer blacktail Odocoileus_hemionus_columbianus,mule deer of western Rocky Mountains
+24465,black-winged_stilt Himantopus_himantopus,stilt of Europe and Africa and Asia having mostly white plumage but with black wings
+24466,black_and_gold_garden_spider Argiope_aurantia,a widely distributed North American garden spider
+24467,black_and_white monochrome,a black-and-white photograph or slide
+24468,black_ash basket_ash brown_ash hoop_ash Fraxinus_nigra,vigorous spreading North American tree having dark brown heavy wood; leaves turn gold in autumn
+24469,black_bamboo kuri-chiku Phyllostachys_nigra,small bamboo having thin green culms turning shining black
+24470,black_bass,widely distributed and highly prized American freshwater game fishes (sunfish family)
+24471,black_bean turtle_bean,black-seeded bean of South America; usually dried
+24472,black_bee German_bee,dark-colored ill-tempered honeybee supposedly of German origin
+24473,black_beech Nothofagus_solanderi,New Zealand forest tree
+24474,black_belt,a person who attained the rank of expert in the martial arts (judo or karate)
+24475,black_belt,a black sash worn to show expert standards in the martial arts (judo or karate)
+24476,black_bile melancholy,a humor that was once believed to be secreted by the kidneys or spleen and to cause sadness and melancholy
+24477,black_birch river_birch red_birch Betula_nigra,birch of swamps and river bottoms throughout the eastern United States having reddish-brown bark
+24478,black_body blackbody full_radiator,a hypothetical object capable of absorbing all the electromagnetic radiation falling on it; "a black body maintained at a constant temperature is a full radiator at that temperature because the radiation reaching and leaving it must be in equilibrium"
+24479,black_box,equipment that records information about the performance of an aircraft during flight
+24480,black_bread pumpernickel,bread made of coarse rye flour
+24481,black_bream Chrysophrys_australis,important dark-colored edible food and game fish of Australia
+24482,black_bryony black_bindweed Tamus_communis,common European twining vine with tuberous roots and cordate leaves and red berries
+24483,black_buffalo Ictiobus_niger,fish of the lower Mississippi
+24484,black_calla Arum_palaestinum,ornamental plant of Middle East cultivated for its dark purple spathe
+24485,black_caraway nutmeg_flower Roman_coriander Nigella_sativa,herb of the Mediterranean region having pungent seeds used like those of caraway
+24486,black_carpet_beetle,a carpet beetle that is solid black in color
+24487,black_catechu catechu,extract of the heartwood of Acacia catechu used for dyeing and tanning and preserving fishnets and sails; formerly used medicinally
+24488,black_cherry black_cherry_tree rum_cherry Prunus_serotina,large North American wild cherry with round black sour edible fruit
+24489,black_cohosh black_snakeroot rattle-top Cimicifuga_racemosa,North American bugbane found from Maine and Ontario to Wisconsin and south to Georgia
+24490,black_comedy,comedy that uses black humor
+24491,black_cottonwood Western_balsam_poplar Populus_trichocarpa,cottonwood of western North America with dark green leaves shining above and rusty or silvery beneath
+24492,black_crappie Pomoxis_nigromaculatus,a crappie that is black
+24493,black_currant,small black berries used in jams and jellies
+24494,black_currant European_black_currant Ribes_nigrum,widely cultivated current bearing edible black aromatic berries
+24495,black_cypress_pine red_cypress_pine Callitris_endlicheri Callitris_calcarata,Australian tree with small flattened scales as leaves and numerous dark brown seed; valued for its timber and resin
+24496,black_disease sheep_rot liver_rot distomatosis,a disease of the liver (especially in sheep and cattle) caused by liver flukes and their by-products
+24497,black_duck Anas_rubripes,a dusky duck of northeastern United States and Canada
+24498,black_economy,a hidden sector of the economy where private cash transactions go unreported; "no one knows how large the black economy really is"
+24499,black_eye,a bad reputation; "his behavior gave the whole family a black eye"
+24500,black_felt_cup,a common name for a variety of Sarcosomataceae
+24501,black_flag pirate_flag Jolly_Roger blackjack,a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship
+24502,black_fox,red fox in the color phase when its pelt is mostly black
+24503,black_grama Bouteloua_eriopoda,a pasture grass (especially of western coastal regions of North America)
+24504,black_grouse,grouse of which the male is bluish-black
+24505,black_guillemot Cepphus_grylle,northern Atlantic guillemot
+24506,black_haw Viburnum_prunifolium,upright deciduous shrub having frosted dark-blue fruit; east and east central North America
+24507,black_hole,a region of space resulting from the collapse of a star; extremely high gravitational field
+24508,black_horehound black_archangel fetid_horehound stinking_horehound Ballota_nigra,ill-smelling European herb with rugose leaves and whorls of dark purple flowers
+24509,black_huckleberry Gaylussacia_baccata,low shrub of the eastern United States bearing shiny black edible fruit; best known of the huckleberries
+24510,black_humor black_humour,the juxtaposition of morbid and farcical elements (in writing or drama) to give a disturbing effect
+24511,black_ice,a thin coating of ice (as from freezing mist) on a road or sidewalk; nearly invisible but very hazardous
+24512,black_kite Milvus_migrans,dark Old World kite feeding chiefly on carrion
+24513,black_knot,disease of plum and cherry trees characterized by black excrescences on the branches
+24514,black_locust,strong stiff wood of a black-locust tree; very resistant to decay
+24515,black_locust yellow_locust Robinia_pseudoacacia,large thorny tree of eastern and central United States having pinnately compound leaves and drooping racemes of white flowers; widely naturalized in many varieties in temperate regions
+24516,black_maire Olea_cunninghamii,northern Zealand tree having dense hard light-brown wood
+24517,black_mallee black_sally black_gum Eucalytus_stellulata,a small mallee with rough dark-colored bark toward the butt; yields a red eucalyptus kino gum
+24518,black_mamba Dendroaspis_augusticeps,a highly venomous southern African mamba dreaded because of its quickness and readiness to bite
+24519,black_mangrove Aegiceras_majus,an Australian tree resembling the black mangrove of the West Indies and Florida
+24520,black_mangrove Avicennia_marina,a mangrove of the West Indies and the southern Florida coast; occurs in dense thickets and has numerous short roots that bend up from the ground
+24521,black_market,people who engage in illicit trade
+24522,black_market,an illegal market in which goods or currencies are bought and sold in violation of rationing or controls
+24523,black_marketeer,someone who engages illegally in trade in scarce or controlled commodities
+24524,black_marlin Makaira_mazara Makaira_marlina,large game fish in the Pacific Ocean; may reach 1000 pounds
+24525,black_medick hop_clover yellow_trefoil nonesuch_clover Medicago_lupulina,prostrate European herb with small yellow flowers and curved black pods; naturalized in North America
+24526,black_morel Morchella_conica conic_morel Morchella_angusticeps narrowhead_morel,a morel whose pitted fertile body is attached to the stalk with little free skirt around it; the fertile body is grey when young and black in old age
+24527,black_mulberry Morus_nigra,European mulberry having dark foliage and fruit
+24528,black_music African-American_music,music created by African-American musicians; early forms were songs that had a melodic line and a strong rhythmic beat with repeated choruses
+24529,black_mustard Brassica_nigra,widespread Eurasian annual plant cultivated for its pungent seeds; a principal source of table mustard
+24530,black_nightshade common_nightshade poisonberry poison-berry Solanum_nigrum,Eurasian herb naturalized in America having white flowers and poisonous hairy foliage and bearing black berries that are sometimes poisonous but sometimes edible
+24531,black_oak yellow_oak quercitron quercitron_oak Quercus_velutina,medium to large deciduous timber tree of the eastern United States and southeastern Canada having dark outer bark and yellow inner bark used for tanning; broad five-lobed leaves are bristle-tipped
+24532,black_olive ripe_olive,olives picked ripe and cured in brine then dried or pickled or preserved canned or in oil
+24533,black_opal,a dark colored opal with internal reflections of green or red
+24534,black_operation,a covert operation not attributable to the organization carrying it out
+24535,black_pea Lathyrus_niger,perennial of Europe and North Africa; foliage turns black in drying
+24536,black_pepper,pepper that is ground from whole peppercorns with husks on
+24537,black_pine Pinus_nigra,large two-needled timber pine of southeastern Europe
+24538,black_poplar Populus_nigra,large European poplar
+24539,black_raspberry blackcap blackcap_raspberry thimbleberry Rubus_occidentalis,raspberry native to eastern North America having black thimble-shaped fruit
+24540,black_rat roof_rat Rattus_rattus,common household pest originally from Asia that has spread worldwide
+24541,black_rat_snake blacksnake pilot_blacksnake mountain_blacksnake Elaphe_obsoleta,large harmless shiny black North American snake
+24542,black_rhinoceros Diceros_bicornis,African rhino; in danger of extinction
+24543,black_root_rot_fungus Xylaria_mali,fungus causing black root rot in apples
+24544,black_rot,a fungous disease causing darkening and decay of the leaves of fruits and vegetables
+24545,black_sage wooly_blue_curls California_romero Trichostema_lanatum,an aromatic plant with wooly leaves found in southern California and Mexico
+24546,black_salsify viper's_grass scorzonera Scorzonera_hispanica,perennial south European herb having narrow entire leaves and solitary yellow flower heads and long black edible roots shaped like carrots
+24547,black_sea_bass black_bass Centropistes_striata,bluish black-striped sea bass of the Atlantic coast of the United States
+24548,black_sheep,sheep with a black coat
+24549,black_spleenwort Asplenium_adiantum-nigrum,spleenwort of Europe and Africa and Asia having pinnate fronds and yielding an astringent
+24550,black_spot,any of several fungous diseases of plants that produce small black spots on the plant
+24551,black_spruce Picea_mariana spruce_pine,small spruce of boggy areas of northeastern North America having spreading branches with dense foliage; inferior wood
+24552,black_squirrel,fox squirrel or grey squirrel in the black color phase
+24553,black_stork Ciconia_nigra,Old World stork that is glossy black above and white below
+24554,black_swan Cygnus_atratus,large Australian swan having black plumage and a red bill
+24555,black_tea,fermented tea leaves
+24556,black_tie,a black bow tie worn with a dinner jacket
+24557,black_turnstone Arenaria-Melanocephala,common turnstone of the Pacific coast of North America
+24558,black_vulture Aegypius_monachus,of southern Eurasia and northern Africa
+24559,black_vulture carrion_crow Coragyps_atratus,American vulture smaller than the turkey buzzard
+24560,black_walnut,American walnut having a very hard and thick woody shell
+24561,black_walnut black_walnut_tree black_hickory Juglans_nigra,North American walnut tree with hard dark wood and edible nut
+24562,black_wattle Acacia_auriculiformis,Australian tree that yields tanning materials
+24563,black_widow Latrodectus_mactans,venomous New World spider; the female is black with an hourglass-shaped red mark on the underside of the abdomen
+24564,blackberry,large sweet black or very dark purple edible aggregate fruit of any of various bushes of the genus Rubus
+24565,blackberry blackberry_bush,bramble with sweet edible black or dark purple berries that usually do not separate from the receptacle
+24566,blackberry-lily leopard_lily Belamcanda_chinensis,garden plant whose capsule discloses when ripe a mass of seeds resembling a blackberry
+24567,blackbird merl merle ouzel ousel European_blackbird Turdus_merula,common black European thrush
+24568,blackboard chalkboard,sheet of slate; for writing with chalk
+24569,blackboard_eraser,an eraser that removes chalk marks from blackboard
+24570,blackbuck black_buck Antilope_cervicapra,common Indian antelope with a dark back and spiral horns
+24571,blackcap Silvia_atricapilla,small brownish-grey warbler with a black crown
+24572,blackcock black_cock,male black grouse
+24573,blackening darkening,changing to a darker color
+24574,blackface,the makeup (usually burnt cork) used by a performer in order to imitate a Negro
+24575,blackfish,female salmon that has recently spawned
+24576,blackfly bean_aphid Aphis_fabae,blackish aphid that infests e.g. beans and sugar beets
+24577,blackfly black_fly buffalo_gnat,small blackish stout-bodied biting fly having aquatic larvae; sucks the blood of birds as well as humans and other mammals
+24578,blackfoot_daisy Melampodium_leucanthum,bushy subshrub having flower heads that resemble asters with broad white rays; found in desert areas of Arizona east to Kansas and south to Mexico
+24579,blackhead comedo,a black-tipped plug clogging a pore of the skin
+24580,blackheart,any of various diseases in which the central tissues blacken
+24581,blackheart blackheart_cherry,heart cherry with dark flesh and skin cherry
+24582,blackjack cosh sap,a piece of metal covered by leather with a flexible handle; used for hitting people
+24583,blackjack twenty-one vingt-et-un,a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21
+24584,blackjack_oak blackjack jack_oak Quercus_marilandica,a common scrubby deciduous tree of central and southeastern United States having dark bark and broad three-lobed (club-shaped) leaves; tends to form dense thickets
+24585,blacklist black_book shitlist,a list of people who are out of favor
+24586,blackmail,extortion of money by threats to divulge discrediting information
+24587,blackmailer extortioner extortionist,a criminal who extorts money from someone by threatening to expose embarrassing information about them
+24588,blackmouth_bass Synagrops_bellus,small marine fish with black mouth and gill cavity
+24589,blackout,a suspension of radio or tv broadcasting
+24590,blackout,the failure of electric power for a general region
+24591,blackout,a momentary loss of consciousness
+24592,blackout brownout dimout,darkness resulting from the extinction of lights (as in a city invisible to enemy aircraft)
+24593,blackpoll Dendroica_striate,North American warbler having a black-and-white head
+24594,blacksmith,a smith who forges and shapes iron with a hammer and anvil
+24595,blacksnake black_racer Coluber_constrictor,blackish racer of the eastern United States that grows to six feet
+24596,blacktail_jackrabbit Lepus_californicus,the common jackrabbit of grasslands and open areas of western United States; has large black-tipped ears and black streak on the tail
+24597,blacktail_prairie_dog Cynomys_ludovicianus,tail is black tipped
+24598,blackthorn pear_haw pear_hawthorn Crataegus_calpodendron Crataegus_tomentosa,erect and almost thornless American hawthorn with somewhat pear-shaped berries
+24599,blackthorn sloe Prunus_spinosa,a thorny Eurasian bush with plumlike fruits
+24600,blacktip_shark sandbar_shark Carcharhinus_limbatus,widely distributed shallow-water shark with fins seemingly dipped in ink
+24601,blacktop blacktopping,a black bituminous material used for paving roads or other areas; usually spread over crushed rock
+24602,blackwash,a wash that colors a surface black
+24603,blackwash black_lotion,a mixture of calomel and limewater that is used on syphilitic sores
+24604,blackwater,any of several human or animal diseases characterized by dark urine resulting from rapid breakdown of red blood cells
+24605,blackwater_fever,severe and often fatal malaria characterized by kidney damage resulting in dark urine
+24606,blackwood,very dark wood of any of several blackwood trees
+24607,blackwood blackwood_tree,any of several hardwood trees yielding very dark-colored wood
+24608,bladder,a bag that fills with air
+24609,bladder vesica,a distensible membranous sac (usually containing liquid or gas)
+24610,bladder_campion Silene_uniflora Silene_vulgaris,perennial of Arctic Europe having large white flowers with inflated calyx
+24611,bladder_disorder,a disorder of the urinary bladder
+24612,bladder_fern,any fern of the genus Cystopteris characterized by a hooded indusium or bladderlike membrane covering the sori
+24613,bladder_senna Colutea_arborescens,yellow-flowered European shrub cultivated for its succession of yellow flowers and very inflated bladdery pods and as a source of wildlife food
+24614,bladder_sphincter musculus_sphincter_vesicae,the sphincter muscle of the urinary bladder; made up of a thickened muscular layer of bladder around the urethral opening
+24615,bladder_stone cystolith,a calculus formed in the bladder
+24616,bladder_worm,encysted saclike larva of the tapeworm
+24617,bladderpod,annual or perennial herbs with inflated seed pods; some placed in genus Lesquerella
+24618,bladderpod,any of several plants of the genus Physaria having racemose yellow flowers and inflated pods
+24619,bladderpod,any of several hairy North American herbs having yellow racemose flowers and inflated pods
+24620,bladderwort,any of numerous aquatic carnivorous plants of the genus Utricularia some of whose leaves are modified as small urn-shaped bladders that trap minute aquatic animals
+24621,bladderwrack Ascophyllum_nodosum,similar to and found with black rockweed
+24622,bladderwrack black_rockweed bladder_fucus tang Fucus_vesiculosus,a common rockweed used in preparing kelp and as manure
+24623,blade,a dashing young man; "gay young blades bragged of their amorous adventures"
+24624,blade,something long and thin resembling a blade of grass; "a blade of lint on his suit"
+24625,blade,a cut of beef from the shoulder blade
+24626,blade,a broad flat body part (as of the shoulder or tongue)
+24627,blade,the part of the skate that slides on the ice
+24628,blade,the flat part of a tool or weapon that (usually) has a cutting edge
+24629,blade leaf_blade,especially a leaf of grass or the broad portion of a leaf as distinct from the petiole
+24630,blade vane,flat surface that rotates and pushes against air or water
+24631,blade_roast,a roast cut from the blade
+24632,blahs,a general feeling of boredom and dissatisfaction
+24633,blain,an inflammatory swelling or sore
+24634,blame rap,a reproach for some lapse or misdeed; "he took the blame for it"; "it was a bum rap"
+24635,blame_game,accusations exchanged among people who refuse to accept sole responsibility for some undesirable event
+24636,blamelessness inculpability inculpableness guiltlessness,a state of innocence
+24637,blameworthiness culpability culpableness,a state of guilt
+24638,blanc,a white sauce of fat, broth, and vegetables (used especially with braised meat)
+24639,blancmange,sweet almond-flavored milk pudding thickened with gelatin or cornstarch; usually molded
+24640,bland_diet ulcer_diet,a diet of foods that are not irritating; "he ate a bland diet because of his colitis"
+24641,blandishment cajolery palaver,flattery intended to persuade
+24642,blandishment wheedling,the act of urging by means of teasing or flattery
+24643,blandness,the trait of exhibiting no personal embarrassment or concern; "the blandness of his confession enraged the judge"
+24644,blandness insipidity insipidness,lacking any distinctive or interesting taste property
+24645,blank,a piece of material ready to be made into something
+24646,blank dummy blank_shell,a cartridge containing an explosive charge but no bullet
+24647,blank_check blank_cheque,a check that has been signed but with the amount payable left blank
+24648,blank_endorsement endorsement_in_blank,an endorsement on commercial paper naming no payee and so payable to the bearer
+24649,blank_verse,unrhymed verse (usually in iambic pentameter)
+24650,blanket,a layer of lead surrounding the highly reactive core of a nuclear reactor
+24651,blanket cover,bedding that keeps a person warm in bed; "he pulled the covers over his head and went to sleep"
+24652,blanket mantle,anything that covers; "there was a blanket of snow"
+24653,blanket_flower Indian_blanket fire_wheel fire-wheel Gaillardia_pulchella,annual of central United States having showy long-stalked yellow flower heads marked with scarlet or purple in the center
+24654,blanket_stitch,a strong reinforcing stitch for edges of blanket and other thick material; similar to buttonhole stitch
+24655,blankness,the state of being blank; void; emptiness
+24656,blanquillo tilefish,important marine food fishes
+24657,blare blaring cacophony clamor din,a loud harsh or strident noise
+24658,blarney coaxing soft_soap sweet_talk,flattery designed to gain favor
+24659,blasphemer,a person who speaks disrespectfully of sacred things
+24660,blasphemy,blasphemous language (expressing disrespect for God or for something sacred)
+24661,blast,an explosion (as of dynamite)
+24662,blast,a very long fly ball
+24663,blast_furnace,a furnace for smelting of iron from iron oxide ores; combustion is intensified by a blast of air
+24664,blast_trauma,injury caused the explosion of a bomb (especially in enclosed spaces)
+24665,blastema,a mass of undifferentiated cells from which an organ or body part develops
+24666,blaster chargeman,a workman employed to blast with explosives
+24667,blasting_cap,a small tube filled with detonating substances; used to detonate high explosives
+24668,blasting_gelatin,mixture of guncotton with nitroglycerin
+24669,blastocoel blastocoele blastocele segmentation_cavity cleavage_cavity,the fluid-filled cavity inside a blastula
+24670,blastocyst blastodermic_vessicle,the blastula of a placental mammal in which some differentiation of cells has occurred
+24671,blastocyte,an undifferentiated embryonic cell
+24672,blastoderm germinal_disc blastodisc germinal_area,a layer of cells on the inside of the blastula
+24673,blastoff shot,the launching of a missile or spacecraft to a specified destination
+24674,blastogenesis,asexual reproduction by budding
+24675,blastogenesis,theory that inherited characteristics are transmitted by germ plasm
+24676,blastoma blastocytoma embryonal_carcinosarcoma,a tumor composed of immature undifferentiated cells
+24677,blastomere,any cell resulting from cleavage of a fertilized egg
+24678,blastomycete,any of various yeastlike budding fungi of the genus Blastomyces; cause disease in humans and other animals
+24679,blastomycosis,any of several infections of the skin or mucous membrane caused by Blastomyces
+24680,blastopore,the opening into the archenteron
+24681,blastula blastosphere,early stage of an embryo produced by cleavage of an ovum; a liquid-filled sphere whose wall is composed of a single layer of cells; during this stage (about eight days after fertilization) implantation in the wall of the uterus occurs
+24682,blatancy,the property of being both obvious and offensive; "the blatancy of his attempt to whitewash the crime was unforgivable"
+24683,blather blatherskite,foolish gibberish
+24684,blaxploitation,the exploitation of black people (especially with regard to stereotyped roles in movies)
+24685,blaze,a light-colored marking; "they chipped off bark to mark the trail with blazes"; "the horse had a blaze between its eyes"
+24686,blaze blazing,a strong flame that burns brightly; "the blaze spread rapidly"
+24687,blazer sport_jacket sport_coat sports_jacket sports_coat,lightweight single-breasted jacket; often striped in the colors of a club or school
+24688,blazing_star Mentzelia_livicaulis Mentzelia_laevicaulis,biennial of southwestern United States having white stems and toothed leaves that is grown for its large pale yellow flowers that open in early morning
+24689,blazing_star button_snakeroot gayfeather gay-feather snakeroot,any of various North American plants of the genus Liatris having racemes or panicles of small discoid flower heads
+24690,bleach,the whiteness that results from removing the color from something; "a complete bleach usually requires several applications"
+24691,bleach,the act of whitening something by bleaching it (exposing it to sunlight or using a chemical bleaching agent)
+24692,bleach_liquor,a solution containing bleaching agents that is used to bleach textiles or paper pulp
+24693,bleacher,a worker who bleaches (cloth or flour etc.)
+24694,bleachers,(used in the plural) an outdoor grandstand without a roof; patrons are exposed to the sun as linens are when they are bleached
+24695,bleaching_agent bleach blanching_agent whitener,an agent that makes things white or colorless
+24696,bleaching_clay bleaching_earth,an adsorbent clay that will remove coloring from oils
+24697,bleaching_powder chlorinated_lime chloride_of_lime,a white powder comprised of calcium hydroxide and chloride and hypochlorite and used to bleach and/or disinfect
+24698,bleakness desolation bareness nakedness,a bleak and desolate atmosphere; "the nakedness of the landscape"
+24699,bleat,the sound of sheep or goats (or any sound resembling this)
+24700,bleeding hemorrhage haemorrhage,the flow of blood from a ruptured blood vessel
+24701,bleeding_heart,someone who is excessively sympathetic toward those who claim to be exploited or underprivileged
+24702,bleeding_heart lyreflower lyre-flower Dicentra_spectabilis,garden plant having deep-pink drooping heart-shaped flowers
+24703,bleeding_tooth Nerita_peloronta,gastropod having reddish toothlike projections around the shell opening; of the Caribbean area
+24704,blemish defect mar,a mark or flaw that spoils the appearance of something (especially on a person's body); "a facial blemish"
+24705,blend,an occurrence of thorough mixing
+24706,blend blending,the act of blending components together thoroughly
+24707,blend portmanteau_word portmanteau,a new word formed by joining two others and combining their meanings; "`smog' is a blend of `smoke' and `fog'"; "`motel' is a portmanteau word made by combining `motor' and `hotel'"; "`brunch' is a well-known portmanteau"
+24708,blended_whiskey blended_whisky,mixture of two or more whiskeys or of a whiskey and neutral spirits
+24709,blender liquidizer liquidiser,an electrically powered mixer with whirling blades that mix or chop or liquefy foods
+24710,blennioid_fish blennioid,elongated mostly scaleless marine fishes with large pectoral fins and reduced pelvic fins
+24711,blenny combtooth_blenny,small usually scaleless fishes with comb-like teeth living about rocky shores; are territorial and live in holes between rocks
+24712,blepharism,condition in which a person blinks continuously
+24713,blepharitis,inflammation of the eyelids characterized by redness and swelling and dried crusts
+24714,blepharospasm,spasm of the eyelid muscle resulting in closure of the eye
+24715,blessed_event happy_event,the live birth of a child
+24716,blessed_thistle sweet_sultan Cnicus_benedictus,annual of Mediterranean to Portugal having hairy stems and minutely spiny-toothed leaves and large heads of yellow flowers
+24717,blessedness beatitude beatification,a state of supreme happiness
+24718,blessing approval approving,the formal act of approving; "he gave the project his blessing"; "his decision merited the approval of any sensible person"
+24719,blessing benediction,the act of praying for divine protection
+24720,blessing boon,a desirable state; "enjoy the blessings of peace"; "a spanking breeze is a boon to sailors"
+24721,bletia,any of various orchids of the genus Bletia having pseudobulbs and erect leafless racemes of large purple or pink flowers
+24722,bleu blue_cheese,cheese containing a blue mold
+24723,bleu_cheese_dressing blue_cheese_dressing,creamy dressing containing crumbled blue cheese
+24724,blewits Clitocybe_nuda,edible agaric that is pale lilac when young; has a smooth moist cap
+24725,blight,a state or condition being blighted
+24726,blight,any plant disease resulting in withering without rotting
+24727,blight_canker,a phase of fire blight in which cankers appear
+24728,blighty_wound,a wound that would cause an English soldier to be sent home from service abroad
+24729,blimp sausage_balloon sausage,a small nonrigid airship used for observation or as a barrage balloon
+24730,blind,people who have severe visual impairments, considered as a group; "he spent hours reading to the blind"
+24731,blind,a hiding place sometimes used by hunters (especially duck hunters); "he waited impatiently in the blind"
+24732,blind screen,a protective covering that keeps things out or hinders sight; "they had just moved in and had not put up blinds yet"
+24733,blind_alley,(figurative) a course of action that is unproductive and offers no hope of improvement; "all the clues led the police into blind alleys"; "so far every road that we've been down has turned out to be a blind alley"
+24734,blind_alley cul_de_sac dead-end_street impasse,a street with only one way in or out
+24735,blind_corner,a street corner that you cannot see around as you are driving
+24736,blind_curve blind_bend,a curve or bend in the road that you cannot see around as you are driving
+24737,blind_date,a participant in a blind date (someone you meet for the first time when you have a date with them)
+24738,blind_date,a date with a stranger; "she never goes on blind dates"
+24739,blind_flying blind_landing,using only instruments for flying an aircraft because you cannot see through clouds or mists etc.
+24740,blind_person,a person with a severe visual impairment
+24741,blind_side,the side on which your vision is limited or obstructed
+24742,blind_snake worm_snake,wormlike burrowing snake of warm regions having vestigial eyes
+24743,blind_spot,a subject about which you are ignorant or prejudiced and fail to exercise good judgment; "golf is one of his blind spots and he's proud of it"
+24744,blind_spot optic_disc optic_disk,the point where the optic nerve enters the retina; not sensitive to light
+24745,blind_stitching,stitching that is not easily seen or noticed
+24746,blind_trust,a trust that enables a person to avoid possible conflict of interest by transferring assets to a fiduciary; the person establishing the trust gives up the right to information about the assets
+24747,blindfold,a cloth used to cover the eyes
+24748,blindman's_bluff blindman's_buff,a children's game in which a blindfolded player tries to catch and identify other players
+24749,blindness sightlessness cecity,the state of being blind or lacking sight
+24750,blindworm slowworm Anguis_fragilis,small burrowing legless European lizard with tiny eyes; popularly believed to be blind
+24751,bling bling_bling,flashy, ostentatious jewelry; "the rapper was loaded with bling"
+24752,blini bliny,Russian pancake of buckwheat flour and yeast; usually served with caviar and sour cream
+24753,blink eye_blink blinking wink winking nictitation nictation,a reflex that closes and opens the eyes rapidly
+24754,blink_of_an_eye flash heartbeat instant jiffy split_second trice twinkling wink New_York_minute,a very short time (as the time it takes the eye to blink or the heart to beat); "if I had the chance I'd do it in a flash"
+24755,blinker flasher,a light that flashes on and off; used as a signal or to send messages
+24756,blinker turn_signal turn_indicator trafficator,a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn
+24757,blinks blinking_chickweed water_chickweed Montia_lamprosperma,small Indian lettuce of northern regions
+24758,blintz blintze,(Judaism) thin pancake folded around a filling and fried or baked
+24759,blip,a sudden minor shock or meaningless interruption; "the market had one bad blip today"; "you can't react to the day-to-day blips"; "renewed jitters in the wake of a blip in retail sales"
+24760,blip pip radar_target,a radar echo displayed so as to show the position of a reflecting surface
+24761,bliss blissfulness cloud_nine seventh_heaven walking_on_air,a state of extreme happiness
+24762,blister,a flaw on a surface resulting when an applied substance does not adhere (as an air bubble in a coat of paint)
+24763,blister,(botany) a swelling on a plant similar to that on the skin
+24764,blister bulla bleb,(pathology) an elevation of the skin filled with serous fluid
+24765,blister_beetle meloid,beetle that produces a secretion that blisters the skin
+24766,blister_blight,a disease of Scotch pines
+24767,blister_blight,a disease of tea plants
+24768,blister_copper,an impure form of copper having a black blistered surface
+24769,blister_pack bubble_pack,packaging in which a product is sealed between a cardboard backing and clear plastic cover
+24770,blister_rust Cronartium_ribicola,fungus causing white pine blister rust and having a complex life cycle requiring a plant of genus Ribes as alternate host
+24771,blister_rust white-pine_rust white_pine_blister_rust,any of several diseases of pines caused by rust fungi of the genus Cronartium and marked by destructive invasion of bark and sapwood and producing blisters externally
+24772,blitz blitzkrieg,a swift and violent military offensive with intensive aerial bombardment
+24773,blizzard snowstorm,a storm with widespread snowfall accompanied by strong winds
+24774,bloat,swelling of the rumen or intestinal tract of domestic animals caused by excessive gas
+24775,bloater,large fatty herring lightly salted and briefly smoked
+24776,blob,an indistinct shapeless form
+24777,bloc axis,a group of countries in special alliance
+24778,block,(computer science) a sector or group of sectors that function as the smallest data unit permitted; "since blocks are often defined as a single sector, the terms `block' and `sector' are sometimes used interchangeably"
+24779,block,a number or quantity of related things dealt with as a unit; "he reserved a large block of seats"; "he held a large block of the company's stock"
+24780,block,housing in a large building that is divided into separate units; "there is a block of classrooms in the west wing"
+24781,block,a solid piece of something (usually having flat rectangular sides); "the pyramids were built with large stone blocks"
+24782,block city_block,a rectangular area in a city surrounded by streets and usually containing several buildings; "he lives in the next block"
+24783,block cube,a three-dimensional shape with six square or rectangular sides
+24784,block mental_block,an inability to remember or think of something you normally can do; often caused by emotional tension; "I knew his name perfectly well but I had a temporary block"
+24785,block_and_tackle,pulley blocks with associated rope or cable
+24786,block_diagram,a diagram showing the interconnections between the components of system (especially an electronic system)
+24787,block_grant,a grant of federal money to state and local governments to support social welfare programs; "block grants reduce federal responsibility for social welfare"
+24788,block_letter block_capital,a plain hand-drawn letter
+24789,block_plane,a small plane used on end grains of wood
+24790,block_vote,a vote proportional in magnitude to the number of people that a delegate represents
+24791,blockade,prevents access or progress
+24792,blockade encirclement,a war measure that isolates some area of importance to the enemy
+24793,blockade-runner,a ship that runs through or around a naval blockade
+24794,blockage block closure occlusion stop stoppage,an obstruction in a pipe or tube; "we had to call a plumber to clear out the blockage in the drainpipe"
+24795,blockage closure occlusion,the act of blocking
+24796,blockbuster,a large bomb used to demolish extensive areas (as a city block)
+24797,blockbuster megahit smash_hit,an unusually successful hit with widespread popularity and huge sales (especially a movie or play or recording or novel)
+24798,blocker,a football player whose responsibility is to block players attempting to stop an offensive play
+24799,blocker blocking_agent,a class of drugs that inhibit (block) some biological process
+24800,blockhouse,a stronghold that is reinforced for protection from enemy fire; with apertures for defensive fire
+24801,blocking block,the act of obstructing or deflecting someone's movements
+24802,blogger,a person who keeps and updates a blog
+24803,blolly West_Indian_snowberry Chiococca_alba,evergreen climbing shrub of southern Florida and West Indies grown for its racemes of fragrant white to creamy flowers followed by globose white succulent berries
+24804,blond blonde,a person with fair skin and hair
+24805,blond blonde,a light grayish yellow to near white
+24806,blood,people viewed as members of a group; "we need more young blood in this organization"
+24807,blood,the fluid (red in vertebrates) that is pumped through the body by the heart and contains plasma, blood cells, and platelets; "blood carries oxygen and nutrients to the tissues and carries away waste products"; "the ancients believed that blood was the seat of the emotions"
+24808,blood,temperament or disposition; "a person of hot blood"
+24809,blood-brain_barrier,a mechanism that creates a barrier between brain tissues and circulating blood; serves to protect the central nervous system; "the brain was protected from the large molecules of the virus by the blood-brain barrier"
+24810,blood-oxygenation_level_dependent_functional_magnetic_resonance_imaging BOLD_FMRI,functional magnetic resonance imaging that relies on intrinsic changes in hemoglobin oxygenation
+24811,blood_agar,a culture medium containing whole blood as the nutrient
+24812,blood_bank,a place for storing whole blood or blood plasma; "the Red Cross created a blood bank for emergencies"
+24813,blood_blister,blister containing blood or bloody serum usually caused by an injury
+24814,blood_brother,a male sworn (usually by a ceremony involving the mingling of blood) to treat another as his brother
+24815,blood_brotherhood,the friendship characteristic of blood brothers
+24816,blood_cell blood_corpuscle corpuscle,either of two types of cells (erythrocytes and leukocytes) and sometimes including platelets
+24817,blood_clam,red-blooded clam
+24818,blood_clot grume,a semisolid mass of coagulated red and white blood cells
+24819,blood_coagulation blood_clotting,a process in which liquid blood is changed into a semisolid mass (a blood clot)
+24820,blood_count,the number of red and white corpuscles in a blood sample
+24821,blood_count,the act of estimating the number of red and white corpuscles in a blood sample
+24822,blood_cup fairy_cup Peziza_coccinea,a scarlet European fungus with cup-shaped ascocarp
+24823,blood_disease blood_disorder,a disease or disorder of the blood
+24824,blood_donor,someone who gives blood to be used for transfusions
+24825,blood_dyscrasia,any abnormal condition of the blood
+24826,blood_extravasation,the leakage of blood from a vessel into tissues surrounding it; can occur in injuries or burns or allergic reactions
+24827,blood_flower swallowwort Asclepias_curassavica,tropical herb having orange-red flowers followed by pods suggesting a swallow with outspread wings; a weed throughout the tropics
+24828,blood_group blood_type,human blood cells (usually just the red blood cells) that have the same antigens
+24829,blood_lily,any of various deciduous or evergreen herbs of the genus Haemanthus; South Africa and Namibia
+24830,blood_meal,the dried and powdered blood of animals
+24831,blood_money,compensation paid to the family of a murdered person
+24832,blood_money,a reward for information about a murderer
+24833,blood_money,paid to a hired murderer
+24834,blood_poisoning septicemia septicaemia,invasion of the bloodstream by virulent microorganisms from a focus of infection
+24835,blood_pressure,the pressure of the circulating blood against the walls of the blood vessels; results from the systole of the left ventricle of the heart; sometimes measured for a quick evaluation of a person's health; "adult blood pressure is considered normal at 120/80 where the first number is the systolic pressure and the second is the diastolic pressure"
+24836,blood_relation blood_relative cognate sib,one related by blood or origin; especially on sharing an ancestor with another
+24837,blood_sausage blood_pudding black_pudding,a black sausage containing pig's blood and other ingredients
+24838,blood_spavin,spavin caused by distension of the veins
+24839,blood_sport,sport that involves killing animals (especially hunting)
+24840,blood_sugar blood_glucose,glucose in the bloodstream
+24841,blood_test,a serologic analysis of a sample of blood
+24842,blood_typing,determining a person's blood type by serological methods
+24843,blood_vessel,a vessel in which blood circulates
+24844,bloodbath bloodletting bloodshed battue,indiscriminate slaughter; "a bloodbath took place when the leaders of the plot surrendered"; "ten days after the bloodletting Hitler gave the action its name"; "the valley is no stranger to bloodshed and murder"; "a huge prison battue was ordered"
+24845,bloodberry blood_berry rougeberry rouge_plant Rivina_humilis,bushy houseplant having white to pale pink flowers followed by racemes of scarlet berries; tropical Americas
+24846,bloodguilt,the state of being guilty of bloodshed and murder
+24847,bloodhound sleuthhound,a breed of large powerful hound of European origin having very acute smell and used in tracking
+24848,bloodiness,the state of being bloody
+24849,bloodiness bloodthirstiness,a disposition to shed blood
+24850,bloodleaf,any plant of the genus Iresine having colored foliage
+24851,bloodletting,formerly used as a treatment to reduce excess blood (one of the four humors of medieval medicine)
+24852,bloodlust,a desire for bloodshed
+24853,bloodmobile,a motor vehicle equipped to collect blood donations
+24854,bloodroot puccoon redroot tetterwort Sanguinaria_canadensis,perennial woodland native of North America having a red root and red sap and bearing a solitary lobed leaf and white flower in early spring and having acrid emetic properties; rootstock used as a stimulant and expectorant
+24855,bloodshed gore,the shedding of blood resulting in murder; "he avenged the bloodshed of his kinsmen"
+24856,bloodstain,a discoloration caused by blood
+24857,bloodstock,thoroughbred horses (collectively)
+24858,bloodstone heliotrope,green chalcedony with red spots that resemble blood
+24859,bloodstream blood_stream,the blood flowing through the circulatory system
+24860,bloodwood_tree kiaat Pterocarpus_angolensis,deciduous South African tree having large odd-pinnate leaves and profuse fragrant orange-yellow flowers; yields a red juice and heavy strong durable wood
+24861,bloodworm,a segmented marine worm with bright red body; often used for bait
+24862,bloodwort,any of various plants of the family Haemodoraceae; roots contain a deep red coloring matter
+24863,bloom bloom_of_youth salad_days,the best time of youth
+24864,bloom blush flush rosiness,a rosy color (especially in the cheeks) taken as a sign of good health
+24865,bloomer,a flower that blooms in a particular way; "a night bloomer"
+24866,bloomers pants drawers knickers,(used in the plural) underpants worn by women; "she was afraid that her bloomers might have been showing"
+24867,blooming bloom,the organic process of bearing flowers; "you will stop all bloom if you let the flowers go to seed"
+24868,blossoming flowering florescence inflorescence anthesis efflorescence,the time and process of budding and unfolding of blossoms
+24869,blot smear smirch spot stain,an act that brings discredit to the person who does it; "he made a huge blot on his copybook"
+24870,blotch splodge splotch,an irregularly shaped spot
+24871,blotter day_book police_blotter rap_sheet charge_sheet,the daily written record of events (as arrests) in a police station
+24872,blotting_paper blotter,absorbent paper used to dry ink
+24873,blouse,a top worn by women
+24874,blow,a powerful stroke with the fist or a weapon; "a blow on the head"
+24875,blow bump,an impact (as from a collision); "the bump threw him off the bicycle"
+24876,blow puff,forceful exhalation through the nose or mouth; "he gave his nose a loud blow"; "he blew out all the candles with a single puff"
+24877,blow_gas blowing_gas,the gas leaving a generator during a blow period
+24878,blowback,misinformation resulting from the recirculation into the source country of disinformation previously planted abroad by that country's intelligence service
+24879,blowback backfire,the backward escape of gases and unburned gunpowder after a gun is fired
+24880,blower,a device that produces a current of air
+24881,blowfish sea_squab puffer pufferfish,delicacy that is highly dangerous because of a potent nerve poison in ovaries and liver
+24882,blowfly blow_fly,large usually hairy metallic blue or green fly; lays eggs in carrion or dung or wounds
+24883,blowgun blowpipe blowtube blow_tube,a tube through which darts can be shot by blowing
+24884,blowhole,the spiracle of a cetacean located far back on the skull
+24885,blowing,processing that involves blowing a gas
+24886,blowout,a sudden malfunction of a part or apparatus; "the right front tire had a blowout"; "as a result of the blowout we lost all the lights"
+24887,blowtorch torch blowlamp,a burner that mixes air and gas to produce a very hot flame
+24888,blowtube blow_tube blowpipe,a tube that directs air or gas into a flame to concentrate heat
+24889,blubber,an insulating layer of fat under the skin of whales and other large marine mammals; used as a source of oil
+24890,blubberer,someone who sniffles and weeps with loud sobs
+24891,blucher,a high shoe with laces over the tongue
+24892,bludgeon,a club used as a weapon
+24893,bludgeoner,an assailant who uses a bludgeon
+24894,blue,any organization or party whose uniforms or badges are blue; "the Union army was a vast blue"
+24895,blue,blue clothing; "she was wearing blue"
+24896,blue,any of numerous small butterflies of the family Lycaenidae
+24897,blue blueness,blue color or pigment; resembling the color of the clear sky in the daytime; "he had eyes of bright blue"
+24898,blue-eyed_African_daisy Arctotis_stoechadifolia Arctotis_venusta,bushy perennial of South Africa with white or violet flowers; in its native region often clothes entire valley sides in a sheet of color
+24899,blue-eyed_Mary Collinsia_verna,eastern United States plant with whorls of blue-and-white flowers
+24900,blue-eyed_grass,plant with grasslike foliage and delicate blue flowers
+24901,blue-headed_vireo Vireo_solitarius_solitarius,common vireo of northeastern North America with bluish slaty-grey head
+24902,blue_ash Fraxinus_quadrangulata,ash of central and southern United States with bluish-green foliage and hard brown wood
+24903,blue_baby,an infant born with a bluish color; usually has a defective heart
+24904,blue_book,a report published by the British government; bound in blue
+24905,blue_book,a register of persons who are socially prominent
+24906,blue_book,a blue booklet used in universities for writing examinations
+24907,blue_catfish blue_cat blue_channel_catfish blue_channel_cat,a large catfish of the Mississippi valley
+24908,blue_cheese_dressing Roquefort_dressing,vinaigrette containing crumbled Roquefort or blue cheese
+24909,blue_chip,a blue poker chip with the highest value
+24910,blue_chip blue-chip_stock,a common stock of a nationally known company whose value and dividends are reliable; typically have high price and low yield; "blue chips are usually safe investments"
+24911,blue_cohosh blueberry_root papooseroot papoose_root squawroot squaw_root Caulophyllum_thalictrioides Caulophyllum_thalictroides,tall herb of eastern North America and Asia having blue berrylike fruit and a thick knotty rootstock formerly used medicinally
+24912,blue_columbine Aquilegia_caerulea Aquilegia_scopulorum_calcarea,columbine of the Rocky Mountains having long-spurred blue flowers
+24913,blue_crab,Atlantic crab; most common source of fresh crabmeat
+24914,blue_crab Callinectes_sapidus,bluish edible crab of Atlantic and Gulf Coasts of North America
+24915,blue_curls,any of several plants of the genus Trichostema having whorls of small blue flowers
+24916,blue_daisy blue_marguerite Felicia_amelloides,hairy South African or Australian subshrub that has daisylike flowers with blue rays
+24917,blue_elder blue_elderberry Sambucus_caerulea,shrub or small tree of western United States having white flowers and blue berries; fruit used in wines and jellies
+24918,blue_false_indigo Baptisia_australis,wild indigo of the eastern United States having racemes of blue flowers
+24919,blue_flag Iris_versicolor,a common iris of the eastern United States having blue or blue-violet flowers; root formerly used medicinally
+24920,blue_fleabane Erigeron_acer,widespread weed with pale purple-blue flowers
+24921,blue_fox,a variety of Arctic fox having a pale grey winter coat
+24922,blue_goose Chen_caerulescens,North American wild goose having dark plumage in summer but white in winter
+24923,blue_grama Bouteloua_gracilis,a pasture grass of western North America
+24924,blue_gum fever_tree Eucalyptus_globulus,tall fast-growing timber tree with leaves containing a medicinal oil; young leaves are bluish
+24925,blue_jasmine blue_jessamine curly_clematis marsh_clematis Clematis_crispa,climber of southern United States having bluish-purple flowers
+24926,blue_jay jaybird Cyanocitta_cristata,common jay of eastern North America; bright blue with grey breast
+24927,blue_law,a statute regulating work on Sundays
+24928,blue_lotus Nymphaea_caerulea,blue Egyptian lotus: held sacred by the Egyptians
+24929,blue_lotus Nymphaea_stellata,blue lotus of India and southeastern Asia
+24930,blue_marlin Makaira_nigricans,largest marlin; may reach 2000 pounds; found worldwide in warm seas
+24931,blue_mockingbird Melanotis_caerulescens,mockingbird of Mexico
+24932,blue_mold_fungus Peronospora_tabacina,fungus causing a serious disease in tobacco plants characterized by bluish-grey mildew on undersides of leaves
+24933,blue_moon,a long time; "something that happens once in blue moon almost never happens"
+24934,blue_murder,an extravagantly loud outcry; "she screamed blue murder"
+24935,blue_note,a flattened third or seventh
+24936,blue_orchid Vanda_caerulea,famous orchid of northern India having large pale to deep lilac-blue flowers
+24937,blue_pea butterfly_pea Clitoria_turnatea,vine of tropical Asia having pinnate leaves and bright blue flowers with yellow centers
+24938,blue_peafowl Pavo_cristatus,peafowl of India and Ceylon
+24939,blue_peter,a blue flag with a white square in the center indicates that the vessel is ready to sail
+24940,blue_pike blue_pickerel blue_pikeperch blue_walleye Strizostedion_vitreum_glaucum,variety inhabiting the Great Lakes
+24941,blue_pimpernel blue_skullcap mad-dog_skullcap mad-dog_weed Scutellaria_lateriflora,an American mint that yields a resinous exudate used especially formerly as an antispasmodic
+24942,blue_point_Siamese,Siamese cat having a bluish cream-colored body and dark grey points
+24943,blue_poppy Meconopsis_betonicifolia,Chinese perennial having mauve-pink to bright sky blue flowers in drooping cymes
+24944,blue_racer Coluber_constrictor_flaviventris,bluish-green blacksnake found from Ohio to Texas
+24945,blue_ribbon cordon_bleu,an honor or award gained for excellence
+24946,blue_ribbon_commission blue_ribbon_committee,an independent and exclusive commission of nonpartisan statesmen and experts formed to investigate some important governmental issue
+24947,blue_sage Salvia_azurea,blue-flowered sage of dry prairies of the eastern United States
+24948,blue_sage Salvia_reflexa Salvia_lancifolia,sage of western North America to Central America having violet-blue flowers; widespread in cultivation
+24949,blue_sage mealy_sage Salvia_farinacea,Texas sage having intensely blue flowers
+24950,blue_shark great_blue_shark Prionace_glauca,slender cosmopolitan, pelagic shark; blue body shades to white belly; dangerous especially during maritime disasters
+24951,blue_sky blue blue_air wild_blue_yonder,the sky as viewed during daylight; "he shot an arrow into the blue"
+24952,blue_sky_law,a state law regulating the sale of securities in an attempt to control the sale of securities in fraudulent enterprises
+24953,blue_star Amsonia_tabernaemontana,subshrubs of southeastern United States forming slow-growing clumps and having blue flowers in short terminal cymes
+24954,blue_succory cupid's_dart Catananche_caerulea,south European plant having dark-eyed flowers with flat blue rays
+24955,blue_tit tomtit Parus_caeruleus,widely distributed European titmouse with bright cobalt blue wings and tail and crown of the head
+24956,blue_toadflax old-field_toadflax Linaria_canadensis,North American plant having racemes of blue-violet flowers
+24957,blue_vitriol blue_copperas blue_stone chalcanthite,hydrated blue crystalline form of copper sulfate
+24958,blue_wall_of_silence blue_wall wall_of_silence,the secrecy of police officers who lie or look the other way to protect other police officers; "the blue wall cracked when some officers refused to take part in the cover-up"
+24959,blue_whale sulfur_bottom Balaenoptera_musculus,largest mammal ever known; bluish-grey migratory whalebone whale mostly of southern hemisphere
+24960,blueberry,sweet edible dark-blue berries of either low-growing or high-growing blueberry plants
+24961,blueberry blueberry_bush,any of numerous shrubs of the genus Vaccinium bearing blueberries
+24962,blueberry_pie,pie containing blueberries and sugar
+24963,blueberry_yogurt,yogurt with sweetened blueberries or blueberry jam
+24964,bluebird,blue North American songbird
+24965,bluebonnet buffalo_clover Texas_bluebonnet Lupinus_subcarnosus,low-growing annual herb of southwestern United States (Texas) having silky foliage and blue flowers; a leading cause of livestock poisoning in the southwestern United States
+24966,bluebottle Calliphora_vicina,blowfly with iridescent blue body; makes a loud buzzing noise in flight
+24967,bluecoat,a person dressed all in blue (as a soldier or sailor)
+24968,bluefin bluefin_tuna,flesh of very large tuna
+24969,bluefin bluefin_tuna horse_mackerel Thunnus_thynnus,largest tuna; to 1500 pounds; of mostly temperate seas: feed in polar regions but breed in tropics
+24970,bluefish,fatty bluish flesh of bluefish
+24971,bluefish Pomatomus_saltatrix,bluish warm-water marine food and game fish that follow schools of small fishes into shallow waters
+24972,bluegill Lepomis_macrochirus,important edible sunfish of eastern and central United States
+24973,bluegrass,a type of country music played at a rapid tempo on banjos and guitars
+24974,bluegrass blue_grass,any of various grasses of the genus Poa
+24975,bluehead Thalassoma_bifasciatum,small Atlantic wrasse the male of which has a brilliant blue head
+24976,bluejack_oak turkey_oak Quercus_incana,small semi-evergreen shrubby tree of southeastern United States having hairy young branchlets and leaves narrowing to a slender bristly point
+24977,bluejacket navy_man sailor sailor_boy,a serviceman in the navy
+24978,bluepoint blue_point,oysters originally from Long Island Sound but now from anywhere along the northeastern seacoast; usually eaten raw
+24979,bluepoint blue_point,small edible oyster typically from the southern shore of Long Island
+24980,blueprint,photographic print of plans or technical drawings etc.
+24981,blueprint design pattern,something intended as a guide for making something else; "a blueprint for a house"; "a pattern for a skirt"
+24982,blueprint_paper,sensitized paper used to make blueprints
+24983,blues,a type of folksong that originated among Black Americans at the beginning of the 20th century; has a melancholy sound from repeated use of blue notes
+24984,blues blue_devils megrims vapors vapours,a state of depression; "he had a bad case of the blues"
+24985,bluestem blue_stem Andropogon_furcatus Andropogon_gerardii,tall grass with smooth bluish leaf sheaths grown for hay in the United States
+24986,bluestocking bas_bleu,a woman having literary or intellectual interests
+24987,bluestone,bluish-grey sandstone used for paving and building
+24988,bluethroat Erithacus_svecicus,songbird of northern Europe and Asia
+24989,bluethroat_pikeblenny Chaenopsis_ocellata,found from Florida to Cuba
+24990,bluetick,a very fast American hound; white mottled with bluish grey
+24991,bluetongue,a viral disease of sheep and cattle that is transmitted by biting midges
+24992,blueweed blue_devil blue_thistle viper's_bugloss Echium_vulgare,a coarse prickly European weed with spikes of blue flowers; naturalized in United States
+24993,bluewing blue-winged_teal Anas_discors,American teal
+24994,bluff,a high steep bank (usually formed by river erosion)
+24995,bluff,pretense that your position is stronger than it really is; "his bluff succeeded in getting him accepted"
+24996,bluff four_flush,the act of bluffing in poker; deception by a false show of confidence in the strength of your cards
+24997,bluffer four-flusher,a person who tries to bluff other people
+24998,bluffness,good-natured frankness
+24999,bluing blueing,a process that makes something blue (or bluish)
+25000,bluing blueing blue,used to whiten laundry or hair or give it a bluish tinge
+25001,bluish_green blue_green teal,a blue-green color or pigment; "they painted it a light shade of bluish green"
+25002,blunder blooper bloomer bungle pratfall foul-up fuckup flub botch boner boo-boo,an embarrassing mistake
+25003,blunderbuss,a short musket of wide bore with a flared muzzle
+25004,blunt_file,a file with parallel edges
+25005,blunt_trauma,injury incurred when the human body hits or is hit by a large outside object (as a car)
+25006,bluntness,the quality of being direct and outspoken; "the bluntness of a Yorkshireman"
+25007,blur fuzz,a hazy or indistinct representation; "it happened so fast it was just a blur"; "he tried to clear his head of the whisky fuzz"
+25008,blush flush,sudden reddening of the face (as from embarrassment or guilt or shame or modesty)
+25009,blush_wine pink_wine rose rose_wine,pinkish table wine from red grapes whose skins were removed after fermentation began
+25010,blushing_mushroom blusher Amanita_rubescens,yellowish edible agaric that usually turns red when touched
+25011,bluster,noisy confusion and turbulence; "he was awakened by the bluster of their preparations"
+25012,bluster,a violent gusty wind
+25013,boa,any of several chiefly tropical constrictors with vestigial hind limbs
+25014,boa_constrictor Constrictor_constrictor,very large boa of tropical America and West Indies
+25015,boar,an uncastrated male hog
+25016,board,a committee having supervisory powers; "the board has seven members"
+25017,board,a flat piece of material designed for a special purpose; "he nailed boards across the windows"
+25018,board gameboard,a flat portable surface (usually rectangular) designed for board games; "he got out the board and set up the pieces"
+25019,board plank,a stout length of sawn timber; made in a wide variety of sizes and used for many purposes
+25020,board table,food or meals in general; "she sets a fine table"; "room and board"
+25021,board_foot,the volume of a piece of wood 1 foot square and 1 inch thick
+25022,board_game,a game played on a specially designed board
+25023,board_measure,a system of units for measuring lumber based on the board foot
+25024,board_meeting committee_meeting,a meeting for administrative purposes
+25025,board_member,a member of a governing board
+25026,board_of_regents,a committee of university officers who have general supervision over the welfare and conduct of students
+25027,board_of_selectmen,a board of officials elected to administer the public business of a New England town
+25028,board_of_trustees,a governing board elected or appointed to direct the policies of an educational institution
+25029,board_rule,a measure used in computing board feet
+25030,boarder,someone who forces their way aboard ship; "stand by to repel boarders"
+25031,boarder,a pupil who lives at school during term time
+25032,boarding,a structure of boards
+25033,boarding embarkation embarkment,the act of passengers and crew getting aboard a ship or aircraft
+25034,boarding_card boarding_pass,a pass that allows you to board a ship or plane
+25035,boarding_house boardinghouse,a private house that provides accommodations and meals for paying guests
+25036,boarding_school,a private school where students are lodged and fed as well as taught
+25037,boardroom council_chamber,a room where a committee meets (such as the board of directors of a company)
+25038,boards,(used in the plural) the stage of a theater; "most actors love to stride the boards"
+25039,boards,(used in the plural) the boarding that surrounds an ice hockey rink
+25040,boardwalk,a walkway made of wooden boards; usually at seaside
+25041,boarfish,fish with large eyes and long snouts
+25042,boarfish Capros_aper,fish with a projecting snout
+25043,boarhound,large hound used in hunting wild boars
+25044,boast boasting self-praise jactitation,speaking of yourself in superlatives
+25045,boastfulness vainglory,outspoken conceit
+25046,boat,a small vessel for travel on water
+25047,boat_deck,the upper deck on which lifeboats are stored
+25048,boat_hook,pole-handled hook used to pull or push boats
+25049,boat_race,a race between people rowing or driving boats
+25050,boat_racing,the sport of racing boats
+25051,boat_train,a train taking passengers to or from a port
+25052,boat_whistle,a whistle on a boat that is sounded as a warning
+25053,boatbill boat-billed_heron broadbill Cochlearius_cochlearius,tropical American heron related to night herons
+25054,boatbuilder,a person who builds boats
+25055,boater leghorn Panama Panama_hat sailor skimmer straw_hat,a stiff hat made of straw with a flat crown
+25056,boathouse,a shed at the edge of a river or lake; used to store boats
+25057,boating yachting,water travel for pleasure
+25058,boatload shipload carload,the amount of cargo that can be held by a boat or ship or a freight car; "he imported wine by the boatload"
+25059,boatman boater waterman,someone who drives or rides in a boat
+25060,boatmanship,skill in handling boats
+25061,boatswain bos'n bo's'n bosun bo'sun,a petty officer on a merchant ship who controls the work of other seamen
+25062,boatswain's_chair bosun's_chair,a seat consisting of a board and a rope; used while working aloft or over the side of a ship
+25063,boatyard,a place where boats are built or maintained or stored
+25064,bob,a hair style for women and children; a short haircut all around
+25065,bob,a hanging weight, especially a metal ball on a string
+25066,bob,a short abrupt inclination (as of the head); "he gave me a short bob of acknowledgement"
+25067,bob bobber cork bobfloat,a small float usually made of cork; attached to a fishing line
+25068,bobbin spool reel,a winder around which thread or tape or film or other flexible materials can be wound
+25069,bobble,the momentary juggling of a batted or thrown baseball; "the second baseman made a bobble but still had time to throw the runner out"
+25070,bobby,an informal term for a British policeman
+25071,bobby_pin hairgrip grip,a flat wire hairpin whose prongs press tightly together; used to hold bobbed hair in place; "in Britain they call a bobby pin a grip"
+25072,bobbysoxer bobby-socker,an adolescent girl wearing bobby socks (common in the 1940s)
+25073,bobcat bay_lynx Lynx_rufus,small lynx of North America
+25074,bobolink ricebird reedbird Dolichonyx_oryzivorus,migratory American songbird
+25075,bobsled bobsleigh,formerly two short sleds coupled together
+25076,bobsled bobsleigh bob,a long racing sled (for 2 or more people) with a steering mechanism
+25077,bobsledding,riding on a bobsled
+25078,bobtail bob dock,a short or shortened tail of certain animals
+25079,bobwhite bobwhite_quail partridge,a popular North American game bird; named for its call
+25080,bocce bocci boccie,Italian bowling played on a long narrow dirt court
+25081,bocce_ball bocci_ball boccie_ball,wooden ball that is bowled in the Italian game of bocce
+25082,bocconia tree_celandine Bocconia_frutescens,small Central American tree having loose racemes of purple-tinted green flowers
+25083,bock bock_beer,a very strong lager traditionally brewed in the fall and aged through the winter for consumption in the spring
+25084,bodega,a small Hispanic shop selling wine and groceries
+25085,bodice,part of a dress above the waist
+25086,bodice_ripper,a romantic novel containing scenes in which the heroine is sexually violated
+25087,bodily_process body_process bodily_function activity,an organic process that takes place in the body; "respiratory activity"
+25088,bodily_property,an attribute of the body
+25089,bodkin,formerly a long hairpin; usually with an ornamental head
+25090,bodkin,a small sharp-pointed tool for punching holes in leather or fabric
+25091,bodkin threader,a blunt needle for threading ribbon through loops
+25092,body,an individual 3-dimensional object that has mass and that is distinguishable from other objects; "heavenly body"
+25093,body,a collection of particulars considered as a system; "a body of law"; "a body of doctrine"; "a body of precedents"
+25094,body,a group of persons associated by some common tie or occupation and regarded as an entity; "the whole body filed out of the auditorium"; "the student body"; "administrative body"
+25095,body,the central message of a communication; "the body of the message was short"
+25096,body,the main mass of a thing
+25097,body,the external structure of a vehicle; "the body of the car was badly rusted"
+25098,body dead_body,a natural object consisting of a dead animal or person; "they found the body in the lake"
+25099,body organic_structure,the entire physical structure of an organism (an animal, plant, or human being); "he felt as if his whole body were on fire"
+25100,body_English,a motion of the body by a player as if to make an object already propelled go in the desired direction
+25101,body_armor body_armour suit_of_armor suit_of_armour coat_of_mail cataphract,armor that protects the wearer's whole body
+25102,body_bag personnel_pouch human_remains_pouch,a bag in which the body of a dead soldier is placed
+25103,body_count,a count of troops killed in an operation or time period; "the daily body count increased as the war went on"
+25104,body_covering,any covering for the body or a body part
+25105,body_hair,short hair growing over a person's body
+25106,body_image,an individual's idea as assessment of his or her own body; "some teenagers are obsessed with their body image"
+25107,body_language,communication via the movements or attitudes of the body
+25108,body_length,the length of your body
+25109,body_lotion,lotion applied to the body after bathing
+25110,body_louse cootie Pediculus_corporis,a parasitic louse that infests the body of human beings
+25111,body_mass_index BMI,a measure of someone's weight in relation to height; to calculate one's BMI, multiply one's weight in pounds and divide that by the square of one's height in inches; overweight is a BMI greater than 25; obese is a BMI greater than 30
+25112,body_odor body_odour B.O.,malodorousness resulting from a failure to bathe
+25113,body_of_water water,the part of the earth's surface covered with water (such as a river or lake or ocean); "they invaded our territorial waters"; "they were sitting by the water's edge"
+25114,body_pad,a pad worn by hockey goalkeeper
+25115,body_part,any part of an organism such as an organ or extremity
+25116,body_plethysmograph,plethysmograph consisting of a chamber surrounding the entire body; used in studies of respiration
+25117,body_servant,a valet or personal maid
+25118,body_stocking,a one-piece tight-fitting undergarment for women that covers the torso (and may have sleeves and legs)
+25119,body_substance,the substance of the body
+25120,body_temperature blood_heat,temperature of the body; normally 98.6 F or 37 C in humans; usually measured to obtain a quick evaluation of a person's health
+25121,body_type somatotype,a category of physique
+25122,body_waste excretion excreta excrement excretory_product,waste matter (as urine or sweat but especially feces) discharged from the body
+25123,body_weight,the weight of a person's body
+25124,bodybuilder muscle_builder muscle-builder musclebuilder muscleman,someone who does special exercises to develop a brawny musculature
+25125,bodybuilding anaerobic_exercise muscle_building musclebuilding,exercise that builds muscles through tension
+25126,bodyguard,a group of men who escort and protect some important person
+25127,bodyguard escort,someone who escorts and protects a prominent person
+25128,bodywork,the exterior body of a motor vehicle
+25129,bodywork,the work of making or repairing vehicle bodies
+25130,boffin,(British slang) a scientist or technician engaged in military research
+25131,bog peat_bog,wet spongy ground of decomposing vegetation; has poorer drainage than a swamp; soil is unfit for cultivation but can be cut and dried and used for fuel
+25132,bog_asphodel,either of two herbaceous rushlike bog plants having small yellow flowers and grasslike leaves; north temperate regions
+25133,bog_aster,a variety of aster
+25134,bog_bilberry bog_whortleberry moor_berry Vaccinium_uliginosum_alpinum,an evergreen shrub with leathery leaves
+25135,bog_pimpernel Anagallis_tenella,small creeping European herb having delicate pink flowers
+25136,bog_rein_orchid bog_candles Habenaria_dilatata,orchid with spikes of many fragrant white flowers on erect leafy stems; of wet or boggy ground through most of the West and northern North America
+25137,bog_rose wild_pink dragon's_mouth Arethusa_bulbosa,a bog orchid with usually a solitary fragrant magenta pink blossom with a wide gaping corolla; Canada
+25138,bog_rosemary moorwort Andromeda_glaucophylla,wiry evergreen shrub having pendent clusters of white or pink flowers; of wet acidic areas in Arctic and Canada to northeastern United States
+25139,bog_soil,poorly drained soils on top of peat and under marsh or swamp vegetation
+25140,bog_spavin,spavin caused by collection of fluids
+25141,bog_star Parnassia_palustris,plant having ovate leaves in a basal rosette and white starlike flowers netted with green
+25142,bogey,(golf) a score of one stroke over par on a hole
+25143,bogey bogy bogie,an evil spirit
+25144,bogeyman bugbear bugaboo boogeyman booger,an imaginary monster used to frighten children
+25145,bogy bogie bogey,an unidentified (and possibly enemy) aircraft
+25146,bohemia,a group of artists and writers with real or pretended artistic or intellectual aspirations and usually an unconventional life style
+25147,bohemian,a nonconformist writer or artist who lives an unconventional life
+25148,bohemianism,conduct characteristic of a bohemian
+25149,bohrium Bh element_107 atomic_number_107,a transuranic element
+25150,boil furuncle,a painful sore with a hard core filled with pus
+25151,boil_smut Ustilago_maydis,a common smut attacking Indian corn causing greyish white swellings that rupture to expose a black spore mass
+25152,boiled_dinner New_England_boiled_dinner,corned beef simmered with onions and cabbage and usually other vegetables
+25153,boiled_egg coddled_egg,egg cooked briefly in the shell in gently boiling water
+25154,boiler steam_boiler,sealed vessel where water is converted to steam
+25155,boilerplate,standard formulations uniformly found in certain types of legal documents or news stories
+25156,boilerplate,thick plate iron used in the production of boilers
+25157,boiling,the application of heat to change something from a liquid to a gas
+25158,boiling stewing simmering,cooking in a liquid that has been brought to a boil
+25159,boiling_point,being highly angry or excited; ready to boil over; "after an hour of waiting I was at the boiling point"
+25160,boiling_point boil,the temperature at which a liquid boils at sea level; "they brought the water to a boil"
+25161,boiling_water_reactor BWR,a nuclear reactor that uses water as a coolant and moderator; the water boils in the reactor core and the steam produced can drive a steam turbine
+25162,boisterousness,a turbulent and stormy state of the sea
+25163,boisterousness,the property of being noisy and lively and unrestrained
+25164,bok_choy bok_choi,elongated head of dark green leaves on thick white stalks
+25165,bok_choy bok_choi pakchoi pak_choi Chinese_white_cabbage Brassica_rapa_chinensis,Asiatic plant grown for its cluster of edible white stalks with dark green leaves
+25166,bola,a rope with weights attached to the ends; is thrown to entangle the legs of an animal; of South American origin
+25167,boldface bold_face bold,a typeface with thick heavy lines
+25168,boldness daring hardiness hardihood,the trait of being willing to undertake things that involve risk or danger; "the proposal required great boldness"; "the plan required great hardiness of heart"
+25169,boldness nerve brass face cheek,impudent aggressiveness; "I couldn't believe her boldness"; "he had the effrontery to question my honesty"
+25170,boldness strikingness,the quality of standing out strongly and distinctly
+25171,bole,a soft oily clay used as a pigment (especially a reddish brown pigment)
+25172,bolero,music written in the rhythm of the bolero dance
+25173,bolero,a short jacket; worn mostly by women
+25174,bolero,a Spanish dance in triple time accompanied by guitar and castanets
+25175,bolete,any fungus of the family Boletaceae
+25176,bolide fireball,an especially luminous meteor (sometimes exploding)
+25177,bolivar,the basic unit of money in Venezuela; equal to 100 centimos
+25178,bolivia,a form of canasta in which sequences can be melded
+25179,boliviano,the basic unit of money in Bolivia; equal to 100 centavos
+25180,boll,the rounded seed-bearing capsule of a cotton or flax plant
+25181,boll_weevil Anthonomus_grandis,greyish weevil that lays its eggs in cotton bolls destroying the cotton
+25182,bollard bitt,a strong post (as on a wharf or quay or ship for attaching mooring lines); "the road was closed to vehicular traffic with bollards"
+25183,bollock bullock_block,a pulley-block at the head of a topmast
+25184,bollworm,any of various moth caterpillars that destroy cotton bolls
+25185,bolo bolo_knife,long heavy knife with a single edge; of Philippine origin
+25186,bolo_tie bolo bola_tie bola,a cord fastened around the neck with an ornamental clasp and worn as a necktie
+25187,bologna Bologna_sausage,large smooth-textured smoked sausage of beef and veal and pork
+25188,bolognese_pasta_sauce,sauce for pasta; contains mushrooms and ham and chopped vegetables and beef and tomato paste
+25189,bologram bolograph,record or recording made by a bolometer
+25190,bolometer,an instrument that measures heat radiation; extremely sensitive
+25191,bolster long_pillow,a pillow that is often put across a bed underneath the regular pillows
+25192,bolt,a roll of cloth or wallpaper of a definite length
+25193,bolt,a sliding bar in a breech-loading firearm that ejects an empty cartridge and replaces it and closes the breech
+25194,bolt,a screw that screws into a nut to form a fastener
+25195,bolt,a sudden abandonment (as from a political party)
+25196,bolt deadbolt,the part of a lock that is engaged or withdrawn with a key
+25197,bolt-hole,a hole through which an animal may bolt when pursued into its burrow or den
+25198,bolt_cutter,an implement for cutting bolts
+25199,bolti Tilapia_nilotica,important food fish of the Nile and other rivers of Africa and Asia Minor
+25200,bolus,a small round soft mass (as of chewed food)
+25201,bolus,a large pill; used especially in veterinary medicine
+25202,bomb,an explosive device fused to explode under specific conditions
+25203,bomb_blast,the explosion of a bomb
+25204,bomb_calorimeter bomb,strong sealed vessel for measuring heat of combustion
+25205,bomb_rack,a device on an aircraft for carrying bombs
+25206,bomb_shelter air-raid_shelter bombproof,a chamber (often underground) reinforced against bombing and provided with food and living facilities; used during air raids
+25207,bomb_site,an area in a town that has been devastated by bombs; "they opened a parking lot on the bomb site"
+25208,bombardier,a noncommissioned officer in the British artillery
+25209,bombardier,the member of a bomber crew responsible for using the bombsight and releasing the bombs on the target
+25210,bombardier_beetle,beetle that ejects audibly a pungent vapor when disturbed
+25211,bombardment,the act (or an instance) of subjecting a body or substance to the impact of high-energy particles (as electrons or alpha rays)
+25212,bombardon bombard,a large shawm; the bass member of the shawm family
+25213,bombast fustian rant claptrap blah,pompous or pretentious talk or writing
+25214,bombazine,a twilled fabric used for dresses; the warp is silk and the weft is worsted; "black bombazine is frequently used for mourning garments"
+25215,bomber,a person who plants bombs
+25216,bomber,a military aircraft that drops bombs during flight
+25217,bomber grinder hero hero_sandwich hoagie hoagy Cuban_sandwich Italian_sandwich poor_boy sub submarine submarine_sandwich torpedo wedge zep,a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States
+25218,bomber_crew bomber_aircrew,the crew of a bomber
+25219,bomber_jacket,a jacket gathered into a band at the waist
+25220,bombie,an unexploded bomblet; "unexploded bomblets known in Laos as `bombies' caused farmers to fear cultivating their fields"
+25221,bombing,the use of bombs for sabotage; a tactic frequently used by terrorists
+25222,bombing bombardment,an attack by dropping bombs
+25223,bombing_run,that part of the flight that begins with the approach to the target; includes target acquisition and ends with the release of the bombs
+25224,bomblet cluster_bomblet,one of the smaller bombs that are released from a cluster bomb
+25225,bombshell,an entertainer who has a sensational effect; "she was a blonde bombshell"
+25226,bombshell,an explosive bomb or artillery shell
+25227,bombshell thunderbolt thunderclap,a shocking surprise; "news of the attack came like a bombshell"
+25228,bombsight,a sighting device in an aircraft for aiming bombs
+25229,bombycid bombycid_moth silkworm_moth,moderate-sized Asiatic moth whose larvae feed on mulberry leaves and produce silk
+25230,bon_mot mot,a clever remark
+25231,bon_voyage send-off,an organized expression of goodwill at the start of a trip or new venture
+25232,bonanza,an especially rich vein of precious ore
+25233,bonbon,a candy that usually has a center of fondant or fruit or nuts coated in chocolate
+25234,bond bond_certificate,a certificate of debt (usually interest-bearing or discounted) that is issued by a government or corporation in order to raise money; the issuer is required to pay a fixed sum annually until maturity and then a fixed sum to repay the principal
+25235,bond bond_paper,a superior quality of strong durable white writing paper; originally made for printing documents
+25236,bond_issue,bonds sold by a corporation or government agency at a particular time and identifiable by date of maturity
+25237,bond_rating,an evaluation by a rating company of the probability that a particular bond issue will default; "the bonds of highest quality are said to have bond ratings of AAA"
+25238,bond_servant,someone bound to labor without wages
+25239,bond_trading bond-trading_activity,trading in bonds (usually by a broker on the floor of an exchange)
+25240,bondage,the state of being under the control of a force or influence or abstract power; "he was in bondage to fear"; "he sought release from his bondage to Satan"; "a self freed from the bondage of time"
+25241,bondage,sexual practice that involves physically restraining (by cords or handcuffs) one of the partners
+25242,bondage slavery thrall thralldom thraldom,the state of being under the control of another person
+25243,bonded_labor,a practice in which employers give high-interest loans to workers whose entire families then labor at low wages to pay off the debt; the practice is illegal in the United States
+25244,bondholder,a holder of bonds issued by a government or corporation
+25245,bonding,a close personal relationship that forms between people (as between husband and wife or parent and child)
+25246,bonding,(dentistry) a technique for repairing a tooth; resinous material is applied to the surface of the tooth where it adheres to the tooth's enamel
+25247,bonding soldering,fastening firmly together
+25248,bondman bondsman,a male bound to serve without wages
+25249,bondman bondsman,a male slave
+25250,bondsman bondswoman,someone who signs a bond as surety for someone else
+25251,bonduc bonduc_tree Caesalpinia_bonduc Caesalpinia_bonducella,tropical tree with large prickly pods of seeds that resemble beans and are used for jewelry and rosaries
+25252,bonduc_nut nicker_nut nicker_seed,hard shiny grey seed of a bonduc tree; used for making e.g. jewelry
+25253,bondwoman bondswoman bondmaid,a female bound to serve without wages
+25254,bondwoman bondswoman bondmaid,a female slave
+25255,bone ivory pearl off-white,a shade of white the color of bleached bones
+25256,bone os,rigid connective tissue that makes up the skeleton of vertebrates
+25257,bone osseous_tissue,the porous calcified substance from which bones are made
+25258,bone-ash_cup cupel refractory_pot,a small porous bowl made of bone ash used in assaying to separate precious metals from e.g. lead
+25259,bone-headed_dinosaur,bipedal herbivorous dinosaurs with bony crowns
+25260,bone_age,a person's age measured by matching their bone development (as shown by X rays) with bone development of an average person of known chronological age
+25261,bone_ash,ash left when bones burn; high in calcium phosphate; used as fertilizer and in bone china
+25262,bone_black bone_char animal_black animal_charcoal,black substance containing char in the form of carbonized bone; used as a black pigment
+25263,bone_cell,a cell that is part of a bone
+25264,bone_china,fine porcelain that contains bone ash
+25265,bone_fat,fatty matter in bones extracted with solvents or by boiling or steaming; used chiefly in candles and cheap soaps and in lubricating greases
+25266,bone_of_contention,the subject of a dispute; "the real bone of contention, as you know, is money"
+25267,bone_oil,the liquid portion of bone fat; used as a lubricant and in leather manufacture
+25268,bone_oil Dippel's_oil,dark-colored ill-smelling oil obtained by carbonizing bone; used especially in sheep dips and in denaturing alcohol
+25269,bone_spavin,spavin caused by a bony growth
+25270,bonefish Albula_vulpes,slender silvery marine fish found in tropical mud flats and mangrove lagoons
+25271,bonemeal,fertilizer made of ground bones
+25272,bones castanets clappers finger_cymbals,(used in the plural) a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance
+25273,boneset agueweed thoroughwort Eupatorium_perfoliatum,perennial herb of southeastern United States having white-rayed flower heads; formerly used as in folk medicine
+25274,bonesetter,someone (not necessarily a licensed physician) who sets broken bones
+25275,boneshaker,any wheeled vehicle that is dilapidated and uncomfortable; "that old bike without rubber tires was a real boneshaker"
+25276,bonfire balefire,a large outdoor fire that is lighted as a signal or in celebration
+25277,bong,a dull resonant sound as of a bell
+25278,bongo Tragelaphus_eurycerus Boocercus_eurycerus,large forest antelope of central Africa having a reddish-brown coat with white stripes and spiral horns
+25279,bongo bongo_drum,a small drum; played with the hands
+25280,bonheur,(French) happiness and good humor
+25281,bonito,flesh of mostly Pacific food fishes of the genus Sarda of the family Scombridae; related to but smaller than tuna
+25282,bonito,any of various scombroid fishes intermediate in size and characteristics between mackerels and tunas
+25283,bonito oceanic_bonito Katsuwonus_pelamis,fish whose flesh is dried and flaked for Japanese cookery; may be same species as skipjack tuna
+25284,bonito_shark blue_pointed Isurus_glaucus,common blue-grey shark of southwest Pacific; sport and food fish
+25285,bonnet poke_bonnet,a hat tied under the chin
+25286,bonnet_macaque bonnet_monkey capped_macaque crown_monkey Macaca_radiata,Indian macaque with a bonnet-like tuft of hair
+25287,bonsai,a dwarfed ornamental tree or shrub grown in a tray or shallow pot
+25288,bonus fillip,anything that tends to arouse; "his approval was an added fillip"
+25289,bonus incentive,an additional payment (or other remuneration) to employees as a means of increasing output
+25290,bony_fish,any fish of the class Osteichthyes
+25291,bony_labyrinth osseous_labyrinth,cavity in the petrous part of the temporal bone that contains the membranous labyrinth
+25292,bonyness boniness emaciation gauntness maceration,extreme leanness (usually caused by starvation or disease)
+25293,boo hoot Bronx_cheer hiss raspberry razzing razz snort bird,a cry or noise made to express displeasure or contempt
+25294,booboisie,class consisting of all those who are considered boobs
+25295,booby,small tropical gannet having a bright bill or bright feet or both
+25296,booby_prize,a prize given to one who finishes last in a contest
+25297,boodle bread cabbage clams dinero dough gelt kale lettuce lolly lucre loot moolah pelf scratch shekels simoleons sugar wampum,informal terms for money
+25298,booger,dried nasal mucus
+25299,boogie boogie-woogie,an instrumental version of the blues (especially for piano)
+25300,boojum_tree cirio Fouquieria_columnaris Idria_columnaris,candlewood of Mexico and southwestern California having tall columnar stems and bearing honey-scented creamy yellow flowers
+25301,book,a collection of playing cards satisfying the rules of a card game
+25302,book,a written work or composition that has been published (printed on pages bound together); "I am reading a good book on economics"
+25303,book,a major division of a long written composition; "the book of Isaiah"
+25304,book,a number of sheets (ticket or stamps etc.) bound together on one edge; "he bought a book of stamps"
+25305,book rule_book,a collection of rules or prescribed standards on the basis of which decisions are made; "they run things by the book around here"
+25306,book volume,physical objects consisting of a number of pages bound together; "he used a large book as a doorstop"
+25307,book_agent,a book salesman
+25308,book_bag,a bag in which students carry their books
+25309,book_fair bookfair,fair organized by publishers or booksellers to promote the sale of books
+25310,book_fair bookfair,bazaar at which books are sold or auctioned off in order to raise funds for a worthy cause
+25311,book_jacket dust_cover dust_jacket dust_wrapper,a paper jacket for a book; a jacket on which promotional information is usually printed
+25312,book_lung,organ in many arachnids containing many thin folds of membrane resembling the leaves of a book
+25313,book_of_knowledge,an elementary encyclopedia dealing with general knowledge
+25314,book_review,a critical review of a book (usually a recently published book)
+25315,book_scorpion Chelifer_cancroides,minute arachnid sometimes found in old papers
+25316,book_token,a gift voucher that can be exchanged for books costing up to an amount given on the voucher
+25317,book_value,the value at which an asset is carried on a balance sheet; equals cost minus accumulated depreciation
+25318,bookbinder,a worker whose trade is binding books
+25319,bookbindery,a bookbinder's workshop; a place for binding books
+25320,bookbinding,the craft of binding books
+25321,bookcase,a piece of furniture with shelves for storing books
+25322,bookclub,a club that people join in order to buy selected books at reduced prices
+25323,bookdealer book_seller,a dealer in books; a merchant who sells books
+25324,bookend,a support placed at the end of a row of books to keep them upright (on a shelf or table)
+25325,booker booking_agent,someone who engages a person or company for performances
+25326,booking reservation,the act of reserving (a place or passage) or engaging the services of (a person or group); "wondered who had made the booking"
+25327,bookishness,exaggerated studiousness
+25328,bookkeeper,someone who records the transactions of a business
+25329,bookkeeping clerking,the activity of recording business transactions
+25330,booklet brochure folder leaflet pamphlet,a small book usually having a paper cover
+25331,booklouse book_louse deathwatch Liposcelis_divinatorius,minute wingless psocopterous insects injurious to books and papers
+25332,bookmaker,a maker of books; someone who edits or publishes or binds books
+25333,bookmaker bookie,a gambler who accepts and pays off bets (especially on horse races)
+25334,bookmark bookmarker,a marker (a piece of paper or ribbon) placed between the pages of a book to mark the reader's place
+25335,bookmobile,a van with shelves of books; serves as a mobile library or bookstore
+25336,bookplate ex_libris,a label identifying the owner of a book in which it is pasted
+25337,bookseller,the proprietor of a bookstore
+25338,bookshelf,a shelf on which to keep books
+25339,bookshop bookstore bookstall,a shop where books are sold
+25340,bookworm,someone who spends a great deal of time reading
+25341,boolean_operation binary_operation binary_arithmetic_operation,an operation that follows the rules of Boolean algebra; each operand and the result take one of two values
+25342,boom,a state of economic prosperity
+25343,boom,any of various more-or-less horizontal spars or poles used to extend the foot of a sail or for handling cargo or in mooring
+25344,boom bonanza gold_rush gravy godsend manna_from_heaven windfall bunce,a sudden happening that brings good fortune (as a sudden opportunity to make money); "the demand for testing has created a boom for those unregulated laboratories where boxes of specimen jars are processed like an assembly line"
+25345,boom microphone_boom,a pole carrying an overhead microphone projected over a film or tv set
+25346,boom roar roaring thunder,a deep prolonged loud noise
+25347,boom_town,a town enjoying sudden prosperity
+25348,boomerang throwing_stick throw_stick,a curved piece of wood; when properly thrown will return to thrower
+25349,boondoggle,work of little or no value done merely to look busy
+25350,boorishness,the manner of a rude or insensitive person
+25351,boorishness uncouthness,inelegance by virtue of being an uncouth boor
+25352,boost,the act of giving a push; "he gave her a boost over the fence"
+25353,boost encouragement,the act of giving hope or support to someone
+25354,booster booster_amplifier booster_station relay_link relay_station relay_transmitter,an amplifier for restoring the strength of a transmitted signal
+25355,booster booster_dose booster_shot recall_dose,an additional dose that makes sure the first dose was effective
+25356,booster booster_rocket booster_unit takeoff_booster takeoff_rocket,the first stage of a multistage rocket
+25357,booster shoplifter lifter,a thief who steals goods that are in a store
+25358,boot,protective casing for something that resembles a leg
+25359,boot,footwear that covers the whole foot and lower leg
+25360,boot,a form of foot torture in which the feet are encased in iron and slowly crushed
+25361,boot the_boot iron_boot iron_heel,an instrument of torture that is used to heat or crush the foot and leg
+25362,boot_camp,camp for training military recruits
+25363,bootblack shoeblack,a person who polishes shoes and boots
+25364,bootee bootie,a slipper that is soft and wool (for babies)
+25365,booth,a table (in a restaurant or bar) surrounded by two high-backed benches
+25366,booth,a small shop at a fair; for selling goods or entertainment
+25367,booth cubicle stall kiosk,small area set off by walls for special use
+25368,boothose,protective stockings worn with or in place of boots
+25369,bootjack,has V-shaped notch for pulling off boots
+25370,bootlace,a long lace for fastening boots
+25371,bootleg,the part of a boot above the instep
+25372,bootlegger moonshiner,someone who makes or sells illegal liquor
+25373,bootlegging,the act of selling illegally or without permission; "the bootlegging of videotapes is common in Asia"
+25374,bootlegging,the act of making or transporting alcoholic liquor for sale illegally; "the Prohibition amendment made bootlegging profitable"
+25375,bootmaker boot_maker,a maker of boots
+25376,bootstrap,a strap that is looped and sewn to the top of a boot for pulling it on
+25377,bop bebop,an early form of modern jazz (originating around 1940)
+25378,borage,an herb whose leaves are used to flavor sauces and punches; young leaves can be eaten in salads or cooked
+25379,borage tailwort Borago_officinalis,hairy blue-flowered European annual herb long used in herbal medicine and eaten raw as salad greens or cooked like spinach
+25380,borate,a salt or ester of boric acid
+25381,borax,an ore of boron consisting of hydrated sodium borate; used as a flux or cleansing agent
+25382,bordelaise,brown sauce with beef marrow and red wine
+25383,border,a strip forming the outer edge of something; "the rug had a wide blue border"
+25384,border_patrol,a group of officers who patrol the borders of a country
+25385,border_patrolman,someone who patrols the borders of a country
+25386,borderer,an inhabitant of a border area (especially the border between Scotland and England)
+25387,borderland border_district march marchland,district consisting of the area on either side of a border or boundary of a country or an area; "the Welsh marches between England and Wales"
+25388,borderline_intelligence,the minimal IQ required for someone to function normally and independently in the world (without some form of institutional assistance)
+25389,borderline_schizophrenia latent_schizophrenia,schizophrenia characterized by mild symptoms or by some preexisting tendency to schizophrenia
+25390,bore bore-hole drill_hole,a hole or passage made by a drill; usually made for exploratory purposes
+25391,bore dullard,a person who evokes boredom
+25392,bore gauge caliber calibre,diameter of a tube or gun barrel
+25393,bore_bit borer rock_drill stone_drill,a drill for penetrating rock
+25394,boredom ennui tedium,the feeling of being bored by something tedious
+25395,boric_acid boracic_acid,any of various acids containing boron and oxygen
+25396,boric_acid orthoboric_acid,a white or colorless slightly acid solid that is soluble in water and ethanol; used in the manufacture of glass and paper and adhesives and in detergents and as a flux in welding; also used as an antiseptic and food preservative
+25397,boring drilling oil_production,the act of drilling a hole in the earth in the hope of producing petroleum
+25398,boringness dreariness insipidness insipidity,extreme dullness; lacking spirit or interest
+25399,born-again_Christian,a Christian who has experienced a dramatic conversion to faith in Jesus
+25400,bornite peacock_ore,a mineral consisting of sulfides of copper and iron that is found in copper deposits
+25401,boron B atomic_number_5,a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder
+25402,boron_chamber,an ionization chamber lined with boron or filled with boron trifluoride gas for counting low velocity neutrons
+25403,boron_counter_tube,a proportional counter tube for counting neutrons
+25404,boron_trifluoride,a pungent colorless gas
+25405,borosilicate,a salt of boric and silicic acids
+25406,borough,one of the administrative divisions of a large city
+25407,borough,an English town that forms the constituency of a member of parliament
+25408,borough_English,a former English custom by which the youngest son inherited land to the exclusion of his older brothers
+25409,borrelia,cause of e.g. European and African relapsing fever
+25410,borrow_pit,a pit created to provide earth that can be used as fill at another site
+25411,borrower,someone who receives something on the promise to return it or its equivalent
+25412,borrowing,obtaining funds from a lender
+25413,borrowing adoption,the appropriation (of ideas or words etc) from another source; "the borrowing of ancient motifs was very apparent"
+25414,borrowing_cost,the cost of borrowing something
+25415,borsch borsh borscht borsht borshch bortsch,a Russian or Polish soup usually containing beet juice as a foundation
+25416,borscht_circuit borsht_circuit borscht_belt borsht_belt,(informal) a resort area in the Catskill Mountains of New York that was patronized primarily by Jewish guests; "many comedians learned their trade playing the borscht circuit"
+25417,borstal,formerly a British reform school for youths considered too young to send to prison
+25418,borzoi Russian_wolfhound,tall fast-moving dog breed
+25419,bosc,greenish-yellow pear
+25420,bosk,a small wooded area
+25421,bosom,the chest considered as the place where secret thoughts are kept; "his bosom was bursting with the secret"
+25422,bosom,a person's breast or chest
+25423,bosom,cloth that covers the chest or breasts
+25424,boson,any particle that obeys Bose-Einstein statistics but not the Pauli exclusion principle; all nuclei with an even mass number are bosons
+25425,boss,a person who exercises control and makes decisions; "he is his own boss now"
+25426,boss hirer,a person responsible for hiring workers; "the boss hired three more men for the new job"
+25427,bossism,domination of a political organization by a party boss
+25428,bot,botfly larva; typically develops inside the body of a horse or sheep or human
+25429,bota,a wine bottle made of leather
+25430,botanical,a drug made from part of a plant (as the bark or root or leaves)
+25431,botanist phytologist plant_scientist,a biologist specializing in the study of plants
+25432,botany phytology,the branch of biology that studies plants
+25433,botfly,stout-bodied hairy dipterous fly whose larvae are parasites on humans and other mammals
+25434,bottle,a glass or plastic vessel used for storing drinks or other liquids; typically cylindrical without handles and with a narrow neck that can be plugged or capped
+25435,bottle bottleful,the quantity contained in a bottle
+25436,bottle feeding_bottle nursing_bottle,a vessel fitted with a flexible teat and filled with milk or formula; used as a substitute for breast feeding infants and very young children
+25437,bottle-nosed_whale bottlenose_whale bottlenose Hyperoodon_ampullatus,northern Atlantic beaked whale with a bulbous forehead
+25438,bottle-tree bottle_tree,an Australian tree of the genus Brachychiton
+25439,bottle_bank,a place where bottles can be deposited for recycling
+25440,bottle_bill,a statute that would require merchants to reclaim used bottles
+25441,bottle_collection,a collection of bottles; "her bottle collection is arranged on glass shelves in the window"
+25442,bottle_collection,the activity of collecting bottles; "bottle collection is a hobby of hers"
+25443,bottle_collection,collecting bottles for reuse
+25444,bottle_gourd calabash Lagenaria_siceraria,Old World climbing plant with hard-shelled bottle-shaped gourds as fruits
+25445,bottle_green,dark to moderate or greyish green
+25446,bottle_opener,an opener for removing caps or corks from bottles
+25447,bottlebrush,a cylindrical brush on a thin shaft that is used to clean bottles
+25448,bottlecap,a cap that seals a bottle
+25449,bottled_water,drinking water (often spring water) that is put into bottles and offered for sale
+25450,bottleneck,the narrow part of a bottle near the top
+25451,bottlenose_dolphin bottle-nosed_dolphin bottlenose,any of several dolphins with rounded forehead and well-developed beak; chiefly of northern Atlantic and Mediterranean
+25452,bottler,a manufacturer that makes and bottles beverages
+25453,bottling_plant,a plant where beverages are put into bottles with caps
+25454,bottom,the lowest part of anything; "they started at the bottom of the hill"
+25455,bottom bottom_of_the_inning,the second half of an inning; while the home team is at bat
+25456,bottom freighter merchantman merchant_ship,a cargo ship; "they did much of their overseas trade in foreign bottoms"
+25457,bottom underside undersurface,the lower side of anything
+25458,bottom-feeder,a scavenger that feeds low on the food chain
+25459,bottom-feeder bottom-dweller,a fish that lives and feeds on the bottom of a body of water
+25460,bottom_dog,a person of low status
+25461,bottom_feeder,an opportunist who profits from the misfortunes of others
+25462,bottom_fermentation,a slow kind of alcoholic fermentation at a temperature low enough that the yeast cells can sink to the bottom of the fermenting liquid; used in the production of lager
+25463,bottom_fermenting_yeast,brewer's yeast used in bottom fermentation of lager
+25464,bottom_line,the last line in an audit; the line that shows profit or loss
+25465,bottom_line,the decisive point
+25466,bottom_lurkers,a fish that lurks on the bottom of a body of water
+25467,bottom_quark beauty_quark,a quark with a charge of -1/3 and a mass about 10,000 times that of an electron
+25468,bottom_rot,fungous disease of lettuce that first rots lower leaves and spreads upward
+25469,bottom_rot_fungus Corticium_solani,fungus causing bottom rot in lettuce
+25470,bottom_round,cut from the round; suitable for pot roast
+25471,bottomland bottom,low-lying alluvial land near a river
+25472,bottomlessness,the property of being very deep; without limit
+25473,botulin botulinus_toxin botulismotoxin,potent bacterial toxin produced by the bacterium Clostridium botulinum that causes botulism; can be used as a bioweapon
+25474,botulinum_toxin,any of several neurotoxins that are produced by the anaerobic bacterium Clostridium botulinum; causes muscle paralysis
+25475,botulinum_toxin_A Botox,a neurotoxin (trade name Botox) that is used clinically in small quantities to treat strabismus and facial spasms and other neurological disorders characterized by abnormal muscle contractions; is also used by cosmetic surgeons to smooth frown lines temporarily
+25476,botulinus botulinum Clostridium_botulinum,anaerobic bacterium producing botulin the toxin that causes botulism
+25477,botulism,food poisoning from ingesting botulin; not infectious; affects the CNS; can be fatal if not treated promptly
+25478,boucle,a fabric of uneven yarn that has an uneven knobby effect
+25479,boudoir,a lady's bedroom or private sitting room
+25480,bouffant,a woman's hairstyle in which the hair gives a puffy appearance
+25481,bougainvillea,any of several South American ornamental woody vines of the genus Bougainvillea having brilliant red or purple flower bracts; widely grown in warm regions
+25482,bough,any of the larger branches of a tree
+25483,bouillabaisse,highly seasoned Mediterranean soup or stew made of several kinds of fish and shellfish with tomatoes and onions or leeks and seasoned with saffron and garlic and herbs
+25484,bouillon,a clear seasoned broth
+25485,bouillon_cube,a cube of evaporated seasoned meat extract
+25486,boulder bowlder,a large smooth mass of rock detached from its place of origin
+25487,boulevardier,a visitor of a city boulevard (especially in Paris)
+25488,boulle boule buhl,an inlaid furniture decoration; tortoiseshell and yellow and white metal form scrolls in cabinetwork
+25489,bounce bounciness,the quality of a substance that is able to rebound
+25490,bounce bouncing,rebounding from an impact (or series of impacts)
+25491,bouncer chucker-out,a person whose duty is to throw troublemakers out of a bar or public meeting
+25492,bouncing_betty,an antipersonnel land mine
+25493,bouncing_putty,a soft elastic silicone polymer that increases in elasticity with the application of force; used in the center of golf balls and as shock-absorbent padding
+25494,bound_morpheme bound_form,a morpheme that occurs only as part of a larger construction; eg an -s at the end of plural nouns
+25495,boundary bound bounds,the line or plane indicating the limit or extent of something
+25496,boundary edge bound,a line determining the limits of an area
+25497,boundary_condition,(mathematics) a condition specified for the solution to a set of differential equations
+25498,boundary_layer,the layer of slower flow of a fluid past a surface
+25499,boundary_line border borderline delimitation mete,a line that indicates a boundary
+25500,bounder leaper,someone who bounds or leaps (as in competition)
+25501,bounty bounteousness,generosity evidenced by a willingness to give freely
+25502,bounty premium,payment or reward (especially from a government) for acts such as catching criminals or killing predatory animals or enlisting in the military
+25503,bounty_hunter,someone who pursues fugitives or criminals for whom a reward is offered
+25504,bounty_hunter,a hunter who kills predatory wild animals in order to collect a bounty
+25505,bouquet corsage posy nosegay,an arrangement of flowers that is usually given as a present
+25506,bouquet fragrance fragrancy redolence sweetness,a pleasingly sweet olfactory property
+25507,bourbon,whiskey distilled from a mash of corn and malt and rye and aged in charred oak barrels
+25508,bourgeois burgher,a member of the middle class
+25509,bourguignon bourguignon_sauce Burgundy_sauce,reduced red wine with onions and parsley and thyme and butter
+25510,bourn bourne,an archaic term for a boundary
+25511,bourn bourne,an archaic term for a goal or destination
+25512,bourtree black_elder common_elder elderberry European_elder Sambucus_nigra,a common shrub with black fruit or a small tree of Europe and Asia; fruit used for wines and jellies
+25513,boustrophedon,an ancient writing system: having alternate lines written in opposite directions; literally `as the ox ploughs'
+25514,bout,a period of illness; "a bout of fever"; "a bout of depression"
+25515,bout,a contest or fight (especially between boxers or wrestlers)
+25516,boutique dress_shop,a shop that sells women's clothes and jewelry
+25517,boutonniere,a flower that is worn in a buttonhole
+25518,bovid,hollow-horned ruminants
+25519,bovine,any of various members of the genus Bos
+25520,bovine_spongiform_encephalitis BSE mad_cow_disease,a fatal disease of cattle that affects the central nervous system; causes staggering and agitation
+25521,bow,a decorative interlacing of ribbons
+25522,bow,a weapon for shooting arrows, composed of a curved piece of resilient wood with a taut cord to propel the arrow
+25523,bow,a slightly curved piece of resilient wood with taut horsehair strands; used in playing certain stringed instruments
+25524,bow,a stroke with a curved piece of wood with taut horsehair strands that is used in playing stringed instruments
+25525,bow arc,something curved in shape
+25526,bow bowing obeisance,bending the head or body or knee as a sign of reverence or submission or shame or greeting
+25527,bow bowknot,a knot with two loops and loose ends; used to tie shoelaces
+25528,bow curtain_call,an appearance by actors or performers at the end of the concert or play in order to acknowledge the applause of the audience
+25529,bow fore prow stem,front part of a vessel or aircraft; "he pointed the bow of the boat toward the finish line"
+25530,bow-wow,the bark of a dog
+25531,bow_and_arrow,a weapon consisting of arrows and the bow to shoot them
+25532,bow_leg bow_legs bandy_legs,outward curvature of the legs
+25533,bow_tie bow-tie bowtie,a man's tie that ties in a bow
+25534,bowdlerization bowdlerisation,written material that has been bowdlerized
+25535,bowdlerization bowdlerisation,the act of deleting or modifying all passages considered to be indecent
+25536,bowed_stringed_instrument string,stringed instruments that are played with a bow; "the strings played superlatively well"
+25537,bowel_movement movement bm,a euphemism for defecation; "he had a bowel movement"
+25538,bowels,the center of the Earth
+25539,bower_actinidia tara_vine Actinidia_arguta,climbing Asiatic vine having long finely serrate leaves and racemes of white flowers followed by greenish-yellow edible fruit
+25540,bowerbird catbird,any of various birds of the Australian region whose males build ornamented structures resembling bowers in order to attract females
+25541,bowfin grindle dogfish Amia_calva,primitive long-bodied carnivorous freshwater fish with a very long dorsal fin; found in sluggish waters of North America
+25542,bowhead bowhead_whale Greenland_whale Balaena_mysticetus,large-mouthed Arctic whale
+25543,bowing,managing the bow in playing a stringed instrument; "the violinist's bowing was excellent"
+25544,bowl,a wooden ball (with flattened sides so that it rolls on a curved course) used in the game of lawn bowling
+25545,bowl,a round vessel that is open at the top; used chiefly for holding food or liquids
+25546,bowl,a dish that is round and open at the top for serving foods
+25547,bowl bowlful,the quantity contained in a bowl
+25548,bowl pipe_bowl,a small round container that is open at the top for holding tobacco
+25549,bowl trough,a concave shape with an open top
+25550,bowleg bow_leg bandyleg bandy_leg genu_varum tibia_vara,a leg bowed outward at the knee (or below the knee)
+25551,bowler,a cricketer who delivers the ball to the batsman in cricket
+25552,bowler,a player who rolls balls down an alley at pins
+25553,bowler_hat bowler derby_hat derby plug_hat,a felt hat that is round and hard with a narrow brim
+25554,bowline bowline_knot,a loop knot that neither slips nor jams
+25555,bowling,a game in which balls are rolled at an object or group of objects with the aim of knocking them over or moving them
+25556,bowling,(cricket) the act of delivering a cricket ball to the batsman
+25557,bowling,the playing of a game of tenpins or duckpins etc
+25558,bowling_alley,a building that contains several alleys for bowling
+25559,bowling_alley alley skittle_alley,a lane down which a bowling ball is rolled toward pins
+25560,bowling_ball bowl,a large ball with finger holes used in the sport of bowling
+25561,bowling_equipment,equipment used in bowling
+25562,bowling_green,a field of closely mowed turf for playing bowls
+25563,bowling_league,a league of bowling teams
+25564,bowling_pin pin,a club-shaped wooden object used in bowling; set up in triangular groups of ten as the target
+25565,bowling_score,the score in a bowling match
+25566,bowling_shoe,a special shoe worn when bowling
+25567,bowsprit,a spar projecting from the bow of a vessel
+25568,bowstring,the string of an archer's bow
+25569,bowstring_hemp,hemp obtained from the sansevieria
+25570,bowstring_hemp,strong fiber that resembles hemp; obtained from sansevieria and used for e.g. cordage
+25571,box,a rectangular drawing; "the flowchart contained many boxes"
+25572,box,any one of several designated areas on a ball field where the batter or catcher or coaches are positioned; "the umpire warned the batter to stay in the batter's box"
+25573,box,separate partitioned area in a public place for a few people; "the sentry stayed in his box to avoid the cold"
+25574,box,a (usually rectangular) container; may have a lid; "he rummaged through a box of spare parts"
+25575,box,a blow with the hand (usually on the ear); "I gave him a good box on the ear"
+25576,box box_seat,the driver's seat on a coach; "an armed guard sat in the box with the driver"
+25577,box boxful,the quantity contained in a box; "he gave her a box of chocolates"
+25578,box boxwood,evergreen shrubs or small trees
+25579,box loge,private area in a theater or grandstand where a small group can watch the performance; "the royal box was empty"
+25580,box_beam box_girder,a beam built up from boards; has a hollow rectangular cross section
+25581,box_calf,black calfskin leather tanned with chromium salts
+25582,box_camera box_Kodak,a simple camera shaped like a rectangular box
+25583,box_coat,a short coat that hangs loosely from the shoulders
+25584,box_elder ash-leaved_maple Acer_negundo,common shade tree of eastern and central United States
+25585,box_huckleberry Gaylussacia_brachycera,creeping evergreen shrub of southeastern United States having small shiny boxlike leaves and flavorless berries
+25586,box_kite,a kite shaped like a box open at both ends
+25587,box_number,a mailing address to which answers to a newspaper ad can be sent
+25588,box_office,total admission receipts for an entertainment
+25589,box_office ticket_office ticket_booth,the office where tickets of admission are sold
+25590,box_pleat,a flat double pleat made by folding under the fabric on either side of it
+25591,box_seat,a special seat in a theater or grandstand box
+25592,box_spring,a coiled bedspring in a frame that is covered with cloth
+25593,box_turtle box_tortoise,chiefly terrestrial turtle of North America; shell can be closed tightly
+25594,box_wrench box_end_wrench,a wrench with a closed loop (a socket) that fits over a nut or bolt head
+25595,boxcar,a freight car with roof and sliding doors in the sides
+25596,boxcars,(usually plural) an expression used when two dice are thrown and both come up showing six spots
+25597,boxer,a breed of stocky medium-sized short-haired dog with a brindled coat and square-jawed muzzle developed in Germany
+25598,boxer pugilist,someone who fights with his fists for sport
+25599,boxfish trunkfish,any of numerous small tropical fishes having body and head encased in bony plates
+25600,boxing pugilism fisticuffs,fighting with the fists
+25601,boxing_equipment,equipment used in boxing
+25602,boxing_glove glove,boxing equipment consisting of big and padded coverings for the fists of the fighters; worn for the sport of boxing
+25603,boxing_match,a match between boxers; usually held in a boxing ring
+25604,boxing_ring prize_ring,a square ring where boxers fight
+25605,boxwood Turkish_boxwood,very hard tough close-grained light yellow wood of the box (particularly the common box); used in delicate woodwork: musical instruments and inlays and engraving blocks
+25606,boy,a friendly informal reference to a grown man; "he likes to play golf with the boys"
+25607,boy_scout,a man who is considered naive
+25608,boy_wonder,an extremely talented young male person
+25609,boycott,a group's refusal to have commercial dealings with some organization in protest against its policies
+25610,boyfriend fellow beau swain,a man who is the lover of a man or woman; "if I'd known he was her boyfriend I wouldn't have asked"; "When the law changed, Pet could finally married his long-time boyfriend Jim"
+25611,boyhood,the childhood of a boy
+25612,boyishness,being characteristic of a boy
+25613,boysenberry,large raspberry-flavored fruit; cross between blackberries and raspberries
+25614,boysenberry boysenberry_bush,cultivated hybrid bramble of California having large dark wine-red fruit with a flavor resembling raspberries
+25615,brace,either of two punctuation marks ({ or }) used to enclose textual material
+25616,brace,a rope on a square-rigged ship that is used to swing a yard about and secure it
+25617,brace,a support that steadies or strengthens something else; "he wore a brace on his knee"
+25618,brace bitstock,a carpenter's tool having a crank handle for turning and a socket to hold a bit for boring
+25619,brace braces orthodontic_braces,an appliance that corrects dental irregularities
+25620,brace bracing,a structural member used to stiffen a framework
+25621,brace suspender gallus,elastic straps that hold trousers up (usually used in the plural)
+25622,brace_and_bit,a drill consisting of a bit and a brace to hold and turn it
+25623,brace_wrench,a wrench shaped like a brace (has a handle shaped like a crank) and a socket head
+25624,bracelet bangle,jewelry worn around the wrist for decoration
+25625,bracelet_wood Jacquinia_armillaris,small West Indian shrub or tree with hard glossy seeds patterned yellow and brown that are used to make bracelets
+25626,bracer armguard,a protective covering for the wrist or arm that is used in archery and fencing and other sports
+25627,bracer pick-me-up,a tonic or restorative (especially a drink of liquor)
+25628,bracero,a Mexican laborer who worked in the United States on farms and railroads in order to ease labor shortages during World War II
+25629,brachial_artery arteria_brachialis,the main artery of the upper arm; a continuation of the axillary artery; bifurcates into the radial and ulnar arteries at the elbow
+25630,brachial_plexus plexus_brachialis,a network of nerves formed by cervical and thoracic spinal nerves and supplying the arm and parts of the shoulder
+25631,brachial_vein vena_brachialis,two veins in either arm that accompany the brachial artery and empty into the axillary vein
+25632,brachiation,swinging by the arms from branch to branch
+25633,brachiocephalic_vein innominate_vein vena_brachiocephalica,veins formed by the union of the internal jugular and subclavian veins
+25634,brachiopod lamp_shell lampshell,marine animal with bivalve shell having a pair of arms bearing tentacles for capturing food; found worldwide
+25635,brachium,(biology) a branching or armlike part of an animal
+25636,brachycephalic,an adult with a short broad head
+25637,brachycephaly brachycephalism,the quality of being brachycephalic
+25638,brachydactyly brachydactylia,abnormal shortness of fingers and toes
+25639,brachyuran,typical crabs
+25640,bracken Pteridium_esculentum,fern of southeastern Asia; not hardy in cold temperate regions
+25641,bracken pasture_brake brake Pteridium_aquilinum,large coarse fern often several feet high; essentially weed ferns; cosmopolitan
+25642,bracket,a category falling within certain defined limits
+25643,bracket angle_bracket,either of two punctuation marks (`<' or `>') used in computer programming and sometimes used to enclose textual material
+25644,bracket square_bracket,either of two punctuation marks ([ or ]) used to enclose textual material
+25645,bracket wall_bracket,a support projecting from a wall (as to hold a shelf)
+25646,bracket_creep,a movement into a higher tax bracket as taxable income increases
+25647,bracket_fungus shelf_fungus,a woody fungus that forms shelflike sporophores on tree trunks and wood structures
+25648,brackishness,the quality of being salty, as the saltiness of water
+25649,bract,a modified leaf or leaflike part just below and protecting an inflorescence
+25650,bracteole bractlet,a small bract
+25651,brad,a small nail
+25652,bradawl pricker,an awl for making small holes for brads or small screws
+25653,bradycardia,abnormally slow heartbeat
+25654,brae,a slope or hillside
+25655,brag bragging crow crowing vaporing line-shooting gasconade,an instance of boastful talk; "his brag is worse than his fight"; "whenever he won we were exposed to his gasconade"
+25656,braggadocio bluster rodomontade rhodomontade,vain and empty boasting
+25657,bragger braggart boaster blowhard line-shooter vaunter,a very boastful and talkative person
+25658,brahman brahmin,a member of a social and cultural elite (especially a descendant of an old New England family); "a Boston brahman"
+25659,brahman brahmin,a member of the highest of the four Hindu varnas; "originally all brahmans were priests"
+25660,brahman brahmin,the highest of the four varnas: the priestly or sacerdotal category
+25661,braid gold_braid braiding,trimming used to decorate clothes or curtains
+25662,braid plait tress twist,a hairdo formed by braiding or twisting the hair
+25663,brail,a small net used to draw fish into a boat
+25664,brail,a small rope (one of several) used to draw a sail in
+25665,braille,a point system of writing in which patterns of raised dots represent letters and numerals
+25666,brain,the brain of certain animals used as meat
+25667,brain brainpower learning_ability mental_capacity mentality wit,mental ability; "he's got plenty of brains but no common sense"
+25668,brain encephalon,that part of the central nervous system that includes all the higher nervous centers; enclosed within the skull; continuous with the spinal cord
+25669,brain_cell,a nerve cell in the brain
+25670,brain_coral,massive reef-building coral having a convoluted and furrowed surface
+25671,brain_damage,injury to the brain that impairs its functions (especially permanently); can be caused by trauma to the head, infection, hemorrhage, inadequate oxygen, genetic abnormality, etc.
+25672,brain_death cerebral_death,death when respiration and other reflexes are absent; consciousness is gone; organs can be removed for transplantation before the heartbeat stops
+25673,brain_disorder encephalopathy brain_disease,any disorder or disease of the brain
+25674,brain_drain,depletion or loss of intellectual and technical personnel
+25675,brain_science,the branch of neuroscience concerned with the brain
+25676,brain_surgery,any surgical procedure involving the brain
+25677,brain_tumor brain_tumour,a tumor in the brain
+25678,brainstem brain-stem brain_stem,the part of the brain continuous with the spinal cord and comprising the medulla oblongata and pons and midbrain and parts of the hypothalamus
+25679,brainstorming,a group problem-solving technique in which members spontaneously share ideas and solutions; "we had an intense brainstorming session today"
+25680,brainwashing,forcible indoctrination into a new set of attitudes and beliefs
+25681,brainwave brain_wave cortical_potential,(neurophysiology) rapid fluctuations of voltage between parts of the cerebral cortex that are detectable with an electroencephalograph
+25682,brainworker brain-worker,someone whose profession involves using his head to solve problems
+25683,braising,cooking slowly in fat in a closed pot with little moisture
+25684,brake,any of various ferns of the genus Pteris having pinnately compound leaves and including several popular houseplants
+25685,brake,an area thickly overgrown usually with one kind of plant
+25686,brake,anything that slows or hinders a process; "she wan not ready to put the brakes on her life with a marriage"; "new legislation will put the brakes on spending"
+25687,brake,a restraint used to slow or stop a vehicle
+25688,brake_band,a band that can be tightened around a shaft to stop its rotation
+25689,brake_cylinder hydraulic_brake_cylinder master_cylinder,a cylinder that contains brake fluid that is compressed by a piston
+25690,brake_disk,a disk or plate that is fixed to the wheel; pressure is applied to it by the brake pads
+25691,brake_drum drum,a hollow cast iron cylinder attached to the wheel that forms part of the brakes
+25692,brake_failure,brakes fail to stop a vehicle
+25693,brake_lining,the lining on the brake shoes that comes in contact with the brake drum
+25694,brake_pad,one of the pads that apply friction to both sides of the brake disk
+25695,brake_pedal,foot pedal that moves a piston in the master brake cylinder
+25696,brake_shoe shoe skid,a restraint provided when the brake linings are moved hydraulically against the brake drum to retard the wheel's rotation
+25697,brake_system brakes,a braking device consisting of a combination of interacting parts that work to slow a motor vehicle
+25698,brakeman,a railroad employee responsible for a train's brakes
+25699,bramble,any of various rough thorny shrubs or vines
+25700,bramble_bush,any prickly shrub of the genus Rubus bearing edible aggregate fruits
+25701,brambling Fringilla_montifringilla,Eurasian finch
+25702,bran,broken husks of the seeds of cereal grains that are separated from the flour by sifting
+25703,bran,food prepared from the husks of cereal grains
+25704,bran_flake,wheat flake including the bran
+25705,bran_muffin,muffin containing bran
+25706,branch,a division of a stem, or secondary stem arising from the main stem of a plant
+25707,branch,a stream or river connected to a larger one
+25708,branch leg ramification,a part of a forked or branching shape; "he broke off one of the branches"
+25709,branch subdivision arm,a division of some larger or more complex organization; "a branch of Congress"; "botany is a branch of biology"; "the Germanic branch of Indo-European languages"
+25710,branch_line spur_track spur,a railway line connected to a trunk line
+25711,branch_water,pure natural water from a stream or brook; often distinguished from soda water
+25712,branched_chain,an open chain of atoms with one or more side chains attached to it
+25713,branching ramification fork forking,the act of branching out or dividing into branches
+25714,branchiopod_crustacean branchiopod branchiopodan,aquatic crustaceans typically having a carapace and many pairs of leaflike appendages used for swimming as well as respiration and feeding
+25715,branchlet twig sprig,a small branch or division of a branch (especially a terminal division); usually applied to branches of the current or preceding year
+25716,brand,identification mark on skin, made by burning
+25717,brand firebrand,a piece of wood that has been burned or is burning
+25718,brand make,a recognizable kind; "there's a new brand of hero in the movies now"; "what make of car is that?"
+25719,brand-name_drug proprietary_drug,a drug that has a trade name and is protected by a patent (can be produced and sold only by the company holding the patent)
+25720,brand-newness,the property of being very new
+25721,brandy,distilled from wine or fermented fruit juice
+25722,brandy_sling,a sling made with brandy
+25723,brandyball,a British candy flavored with brandy
+25724,brandysnap,a gingersnap flavored with brandy
+25725,brant brant_goose brent brent_goose,small dark geese that breed in the north and migrate southward
+25726,brashness,the trait of being rash and hasty
+25727,brass,an alloy of copper and zinc
+25728,brass,an ornament or utensil made of brass
+25729,brass brass_instrument,a wind instrument that consists of a brass tube (usually of variable length) that is blown by means of a cup-shaped or funnel-shaped mouthpiece
+25730,brass memorial_tablet plaque,a memorial made of brass
+25731,brass_band,a group of musicians playing only brass and percussion instruments
+25732,brass_buttons Cotula_coronopifolia,South African herb with golden-yellow globose flower heads; naturalized in moist areas along coast of California; cultivated as an ornamental
+25733,brass_family,(music) the family of brass instruments
+25734,brass_hat,a high-ranking military officer
+25735,brass_knucks knucks brass_knuckles knuckles knuckle_duster,(used in the plural) a small metal weapon; worn over the knuckles on the back of the hand
+25736,brass_monkey,a metal stand that formerly held cannon balls on sailing ships
+25737,brass_ring,a rich opportunity or a prize; "he missed the brass ring at the Miami convention"
+25738,brass_section brass,the section of a band or orchestra that plays brass instruments
+25739,brassard,armor plate that protects the arm
+25740,brassavola,any of various tropical American orchids with usually solitary fleshy leaves and showy white to green nocturnally fragrant blossoms solitary or in racemes of up to 7
+25741,brasserie,a small restaurant serving beer and wine as well as food; usually cheap
+25742,brassie,(formerly) a golfing wood with a face more elevated that a driver but less than a spoon
+25743,brassiere bra bandeau,an undergarment worn by women to support their breasts
+25744,brattice,a partition (often temporary) of planks or cloth that is used to control ventilation in a mine
+25745,bratwurst brat,a small pork sausage
+25746,bravado bluster,a swaggering show of courage
+25747,brave,a North American Indian warrior
+25748,brave,people who are brave; "the home of the free and the brave"
+25749,bravo,a cry of approval as from an audience at the end of great performance
+25750,bravura,brilliant and showy technical skill; "in a final bravura the ballerina appeared to be floating in water"; "the music ends with a display of bravura"
+25751,brawl free-for-all,a noisy fight in a crowd
+25752,brawler,a fighter (especially one who participates in brawls)
+25753,brawn brawniness muscle muscularity sinew heftiness,possessing muscular strength
+25754,bray,the cry of an ass
+25755,brazier brasier,large metal container in which coal or charcoal is burned; warms people who must stay outside for long times
+25756,brazil_nut brazil,three-sided tropical American nut with white oily meat and hard brown shell
+25757,brazil_nut brazil-nut_tree Bertholletia_excelsa,tall South American tree bearing brazil nuts
+25758,brazilian_ironwood Caesalpinia_ferrea,thornless tree yielding heavy wood
+25759,brazilwood,heavy wood of various brazilwood trees; used for violin bows and as dyewoods
+25760,brazilwood peachwood peach-wood pernambuco_wood Caesalpinia_echinata,tropical tree with prickly trunk; its heavy red wood yields a red dye and is used for cabinetry
+25761,breach,an opening (especially a gap in a dike or fortification)
+25762,breach,a failure to perform some promised act or obligation
+25763,breach_of_contract,a breach of a legal duty; failure to do something that is required in a contract
+25764,breach_of_duty,a breach of due care
+25765,breach_of_promise,failure to keep a promise (of marriage)
+25766,breach_of_the_covenant_of_warranty,a failure of the seller's guarantee of good title
+25767,breach_of_trust,violation (either through fraud or negligence) by a trustee of a duty that equity requires of him
+25768,breach_of_trust_with_fraudulent_intent,larceny after trust rather than after unlawful taking
+25769,breach_of_warranty,a breach that occurs when an item is deficient according to the terms of a warranty
+25770,bread breadstuff staff_of_life,food made from dough of flour or meal and usually raised with yeast or baking powder and then baked
+25771,bread-bin breadbox,a container used to keep bread or cake in
+25772,bread_and_butter_pickle,thinly sliced sweet pickles
+25773,bread_dough,any of various doughs for bread
+25774,bread_knife,a knife used to cut bread
+25775,bread_mold Rhizopus_nigricans,a mold of the genus Rhizopus
+25776,bread_sauce,creamy white sauce made with bread instead of flour and seasoned with cloves and onion
+25777,breadbasket,a geographic region serving as the principal source of grain
+25778,breadbasket,a basket for serving bread
+25779,breadboard bread_board,a wooden or plastic board on which dough is kneaded or bread is sliced
+25780,breadcrumb,crumb of bread; used especially for coating or thickening
+25781,breadfruit,a large round seedless or seeded fruit with a texture like bread; eaten boiled or baked or roasted or ground into flour; the roasted seeds resemble chestnuts
+25782,breadfruit breadfruit_tree Artocarpus_communis Artocarpus_altilis,native to Pacific islands and having edible fruit with a texture like bread
+25783,breadline bread_line,a queue of people waiting for free food
+25784,breadroot Indian_breadroot pomme_blanche pomme_de_prairie Psoralea_esculenta,densely hairy perennial of central North America having edible tuberous roots
+25785,breadstick bread-stick,a crisp stick-shaped roll; often served with soup
+25786,breadstuff,flour or meal or grain used in baking bread
+25787,breadth comprehensiveness largeness,the capacity to understand a broad range of topics; "a teacher must have a breadth of knowledge of the subject"; "a man distinguished by the largeness and scope of his views"
+25788,breadwinner,one whose earnings are the primary source of support for their dependents
+25789,break,the occurrence of breaking; "the break in the dam threatened the valley"
+25790,break,an abrupt change in the tone or register of the voice (as at puberty or due to emotion); "then there was a break in her voice"
+25791,break,the opening shot that scatters the balls in billiards or pool
+25792,break,a sudden dash; "he made a break for the open door"
+25793,break break_of_serve,(tennis) a score consisting of winning a game when your opponent was serving; "he was up two breaks in the second set"
+25794,break breakout jailbreak gaolbreak prisonbreak prison-breaking,an escape from jail; "the breakout was carefully planned"
+25795,break good_luck happy_chance,an unexpected piece of good luck; "he finally got his big break"
+25796,break interruption disruption gap,an act of delaying or interrupting the continuity; "it was presented without commercial breaks"; "there was a gap in his account"
+25797,break_dancing break_dance,a form of solo dancing that involves rapid acrobatic moves in which different parts of the body touch the ground; normally performed to the rhythm of rap music
+25798,break_seal,a seal that must be broken when first used and cannot easily be resealed; "it was stored in a tube with a break seal"
+25799,breakable,an article that is fragile and easily broken; "pack the breakables separately"
+25800,breakableness,the consistency of something that breaks under pressure
+25801,breakage,the quantity broken; "the total breakage was huge"
+25802,breakage,reimbursement for goods damaged while in transit or in use
+25803,breakage break breaking,the act of breaking something; "the breakage was unavoidable"
+25804,breakaway breaking_away,the act of breaking away or withdrawing from; "there was a breakaway by the discontented members"; "a breaking away from family and neighborhood"
+25805,breakax breakaxe break-axe Sloanea_jamaicensis,West Indian timber tree having very hard wood
+25806,breakdown crack-up,a mental or physical breakdown
+25807,breakdown equipment_failure,a cessation of normal operation; "there was a power breakdown"
+25808,breakdown partitioning,an analysis into mutually exclusive categories
+25809,breaker ledgeman,a quarry worker who splits off blocks of stone
+25810,breakfast,the first meal of the day (usually in the morning)
+25811,breakfast_area breakfast_nook,a place for light meals (usually near a kitchen); "the breakfast nook had a built in table and seats"
+25812,breakfast_food,any food (especially cereal) usually served for breakfast
+25813,breakfast_table,a table where breakfast is eaten
+25814,breakfast_time,the customary or habitual hour for eating breakfast
+25815,breaking_away,departing hastily
+25816,breaking_off abruption,an instance of sudden interruption
+25817,breaking_point,(psychology) stress at which a person breaks down or a situation becomes crucial
+25818,breaking_point,the degree of tension or stress at which something breaks
+25819,breakthrough,a penetration of a barrier such as an enemy's defense
+25820,breakthrough,making an important discovery
+25821,breakwater groin groyne mole bulwark seawall jetty,a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away
+25822,bream freshwater_bream,flesh of various freshwater fishes of North America or of Europe
+25823,bream sea_bream,flesh of any of various saltwater fishes of the family Sparidae or the family Bramidae
+25824,breast,the part of an animal's body that corresponds to a person's chest
+25825,breast bosom knocker boob tit titty,either of two soft fleshy milk-secreting glandular organs on the chest of a woman
+25826,breast chest,the front of the trunk from the neck to the abdomen; "he beat his breast in anger"
+25827,breast white_meat,meat carved from the breast of a fowl
+25828,breast_cancer,cancer of the breast; one of the most common malignancies in women in the US
+25829,breast_drill,a portable drill with a plate that is pressed against the chest to force the drill point into the work
+25830,breast_implant,an implant for cosmetic purposes to replace a breast that has been surgically removed
+25831,breast_of_lamb poitrine_d'agneau,a cut of lamb including the breastbone and attached muscles dressed as meat
+25832,breast_of_veal,usually stuffed and roasted
+25833,breast_pocket,a pocket inside of a man's coat
+25834,breastplate aegis egis,armor plate that protects the chest; the front part of a cuirass
+25835,breaststroke,a swimming stroke; the arms are extended together in front of the head and swept back on either side accompanied by a frog kick
+25836,breaststroker,someone who swims the breaststroke
+25837,breath,the air that is inhaled and exhaled in respiration; "his sour breath offended her"
+25838,breath,a slight movement of the air; "there wasn't a breath of air in the room"
+25839,breath,the process of taking in and expelling air during breathing; "he took a deep breath and dived into the pool"; "he was fighting to his last breath"
+25840,breath breather breathing_place breathing_space breathing_spell breathing_time,a short respite
+25841,breath_of_fresh_air,a welcome relief; "the new management was like a breath of fresh air"
+25842,breathalyzer breathalyser,a device that measures chemicals (especially the alcohol content) in a person's expired breath
+25843,breathing external_respiration respiration ventilation,the bodily process of inhalation and exhalation; the process of taking in oxygen from inhaled air and releasing carbon dioxide by exhalation
+25844,breathing_device breathing_apparatus breathing_machine ventilator,a device that facilitates breathing in cases of respiratory failure
+25845,breathing_room breathing_space,sufficient room for easy breathing or movement; "moved to the country to find breathing room"
+25846,breccia,a rudaceous rock consisting of sharp fragments embedded in clay or sand
+25847,breech rear_of_barrel rear_of_tube,opening in the rear of the barrel of a gun where bullets can be loaded
+25848,breech_delivery breech_birth breech_presentation,delivery of an infant whose feet or buttocks appear first
+25849,breechblock breech_closer,a metal block in breech-loading firearms that is withdrawn to insert a cartridge and replaced to close the breech before firing
+25850,breechcloth breechclout loincloth,a garment that provides covering for the loins
+25851,breeches knee_breeches knee_pants knickerbockers knickers,(used in the plural) trousers ending above the knee
+25852,breeches_buoy,a life buoy in the form of a ring with short breeches for support; used to transfer people from a ship
+25853,breechloader,a gun that is loaded at the breech
+25854,breed,a special type; "Google represents a new breed of entrepreneurs"
+25855,breed strain stock,a special variety of domesticated animals within a species; "he experimented on a particular breed of white rats"; "he created a new strain of sheep"
+25856,breeder stock_breeder,a person who breeds animals
+25857,breeder_reactor,a nuclear reactor that produces more fissile material than it burns
+25858,breeding,the production of animals or plants by inbreeding or hybridization
+25859,breeding bringing_up fostering fosterage nurture raising rearing upbringing,helping someone grow up to be an accepted member of the community; "they debated whether nature or nurture was more important"
+25860,breeding genteelness gentility,elegance by virtue of fineness of manner and expression
+25861,breeding_ground,a place where animals breed
+25862,breeze zephyr gentle_wind air,a slight wind (usually refreshing); "the breeze was cooled by the lake"; "as he waited he could feel the air on his neck"
+25863,breeziness jauntiness,a breezy liveliness; "a delightful breeziness of manner"
+25864,breeziness windiness,a mildly windy state of the air
+25865,bregma,the craniometric point at the junction of the sagittal and coronal sutures at the top of the cranium
+25866,brethren,(plural) the lay members of a male religious order
+25867,breve,a diacritical mark (U-shaped) placed over a vowel to indicate a short sound
+25868,brevet,a document entitling a commissioned officer to hold a higher rank temporarily (but without higher pay)
+25869,breviary,(Roman Catholic Church) a book of prayers to be recited daily certain priests and members of religious orders
+25870,brevity,the use of brief expressions
+25871,brevity briefness transience,the attribute of being brief or fleeting
+25872,brew brewage,drink made by steeping and boiling and fermenting rather than distilling
+25873,brewer,the owner or manager of a brewery
+25874,brewer beer_maker,someone who brews beer or ale from malt and hops and water
+25875,brewer's_mole hair-tailed_mole Parascalops_breweri,mole of eastern North America
+25876,brewer's_yeast,yeast used in fermenting beer
+25877,brewery,a plant where beer is brewed by fermentation
+25878,brewing,the production of malt beverages (as beer or ale) from malt and hops by grinding and boiling them and fermenting the result with yeast
+25879,brewpub,a combination brewery and restaurant; beer is brewed for consumption on the premises and served along with food
+25880,briar briar_pipe,a pipe made from the root (briarroot) of the tree heath
+25881,briard,old French breed of large strong usually black dogs having a long tail and long wavy and slightly stiff coat
+25882,briarroot,hard woody root of the briar Erica arborea
+25883,briarwood brierwood brier-wood,wood from the hard woody root of the briar Erica arborea; used to make tobacco pipes
+25884,bribe payoff,payment made to a person in a position of trust to corrupt his judgment
+25885,briber suborner,someone who pays (or otherwise incites) you to commit a wrongful act
+25886,bribery graft,the practice of offering something (usually money) in order to gain an illicit advantage
+25887,bric-a-brac knickknack nicknack knickknackery whatnot,miscellaneous curios
+25888,brick,a good fellow; helpful and trustworthy
+25889,brick,rectangular block of clay baked by the sun or in a kiln; used as a building or paving material
+25890,brick_cheese,semisoft sweet American cheese from whole milk in a brick form
+25891,brick_red,a bright reddish-brown color
+25892,brick_trowel mason's_trowel,a trowel used in masonry
+25893,brickbat,a fragment of brick used as a weapon
+25894,brickbat,blunt criticism
+25895,brickkiln,a kiln for making bricks
+25896,bricklayer,a craftsman skilled in building with bricks
+25897,bricklayer's_hammer,a hammer used in laying bricks
+25898,bricklaying,the craft of laying bricks
+25899,bricks_and_mortar,building material consisting of bricks laid with mortar between them
+25900,brickwork,masonry done with bricks and mortar
+25901,brickyard brickfield,a place where bricks are made and sold
+25902,bricolage,construction of something by whatver material are available
+25903,bridal espousal,archaic terms for a wedding or wedding feast
+25904,bridal_gown wedding_gown wedding_dress,a gown worn by the bride at a wedding
+25905,bridal_wreath bridal-wreath Francoa_ramosa,Chilean evergreen shrub having delicate spikes of small white flowers
+25906,bridal_wreath bridal-wreath Saint_Peter's_wreath St._Peter's_wreath Spiraea_prunifolia,shrub having copious small white flowers in spring
+25907,bride,a woman participant in her own marriage ceremony
+25908,bride,a woman who has recently been married
+25909,bride-gift,a wedding present to the bride
+25910,bride_price,money or property given (in some societies) by the bridegroom to the family of his bride
+25911,bridesmaid maid_of_honor,an unmarried woman who attends the bride at a wedding
+25912,bridge,something resembling a bridge in form or function; "his letters provided a bridge across the centuries"
+25913,bridge,the hard ridge that forms the upper part of the nose; "her glasses left marks on the bridge of her nose"
+25914,bridge,a wooden support that holds the strings up
+25915,bridge,any of various card games based on whist for four players
+25916,bridge bridge_circuit,a circuit consisting of two branches (4 arms arranged in a diamond configuration) across which a meter is connected
+25917,bridge bridge_deck,an upper deck where a ship is steered and the captain stands
+25918,bridge bridgework,a denture anchored to teeth on either side of missing teeth
+25919,bridge nosepiece,the link between two lenses; rests on the nose
+25920,bridge span,a structure that allows people or vehicles to cross an obstacle such as a river or canal or railway etc.
+25921,bridge_agent,an operative who acts as a courier or go-between from a case officer to a secret agent in a hostile area
+25922,bridge_hand,the cards held in a game of bridge
+25923,bridge_partner,one of a pair of bridge players who are on the same side of the game
+25924,bridge_player hand,a card player in a game of bridge; "we need a 4th hand for bridge"
+25925,bridge_whist,the earliest form of bridge; the dealer could name the trump suit
+25926,bridged-T,a circuit consisting of a T-network with an additional shunt bridging the two series circuits
+25927,bridgehead,a defensive post at the end of a bridge nearest to the enemy
+25928,bridgehead foothold,an area in hostile territory that has been captured and is held awaiting further troops and supplies; "an attempt to secure a bridgehead behind enemy lines"; "the only foothold left for British troops in Europe was Gibraltar"
+25929,bridle,headgear for a horse; includes a headstall and bit and reins to give the rider or driver control
+25930,bridle check curb,the act of restraining power or action or limiting excess; "his common sense is a bridle to his quick temper"
+25931,bridle_path bridle_road,a path suitable for riding or leading horses (but not for cars)
+25932,bridoon,a bit resembling a snaffle bit; used with a separate curb
+25933,brief,a condensed written summary or abstract
+25934,brief legal_brief,a document stating the facts and points of law of a client's case
+25935,briefcase,a case with a handle; for carrying papers or files or books
+25936,briefcase_bomb,a bomb consisting of an explosive and timer hidden inside a briefcase
+25937,briefcase_computer,a portable computer housed in a box that resembles a briefcase
+25938,briefing,detailed instructions, as for a military operation
+25939,briefness,the temporal property of being very short
+25940,briefs Jockey_shorts,(used in the plural) short tight-fitting underpants (trade name Jockey shorts)
+25941,brier,a thorny stem or twig
+25942,brier brierpatch brier_patch,tangled mass of prickly plants
+25943,brig,two-masted sailing vessel square-rigged on both masts
+25944,brig,a penal institution (especially on board a ship)
+25945,brigade,army unit smaller than a division
+25946,brigadier brigadier_general,a general officer ranking below a major general
+25947,brigandine,a medieval coat of chain mail consisting of metal rings sewn onto leather or cloth
+25948,brigantine hermaphrodite_brig,two-masted sailing vessel square-rigged on the foremast and fore-and-aft rigged on the mainmast
+25949,brightness,the location of a visual perception along a continuum from black to white
+25950,brightness cleverness smartness,intelligence as manifested in being quick and witty
+25951,brightness_constancy,the tendency for a visual object to be perceived as having the same brightness under widely different conditions of illumination
+25952,brill Scophthalmus_rhombus,European food fish
+25953,brilliance genius,unusual mental ability
+25954,brilliant_pebble,a code name for a small computerized heat-seeking missile that was supposed to intercept and destroy enemy missiles
+25955,brilliantine,a pomade to make the hair manageable and lustrous
+25956,brim,a circular projection that sticks outward from the crown of a hat
+25957,brim rim lip,the top edge of a vessel or other container
+25958,brimstone native_sulfur native_sulphur,an old name for sulfur
+25959,brine,a strong solution of salt and water used for pickling
+25960,brine_shrimp Artemia_salina,common to saline lakes
+25961,brininess salinity,the relative proportion of salt in a solution
+25962,brink,the edge of a steep place
+25963,brink threshold verge,a region marking a boundary
+25964,brinkmanship,the policy of pushing a dangerous situation to the brink of disaster (to the limits of safety)
+25965,brioche,a light roll rich with eggs and butter and somewhat sweet
+25966,briquette briquet,a block made from charcoal or coal dust and burned as fuel
+25967,brisance,the shattering or crushing effect of a sudden release of energy as in an explosion
+25968,brisket,a cut of meat from the breast or lower chest especially of beef
+25969,brisling sprat Clupea_sprattus,small herring processed like a sardine
+25970,bristle,a stiff fiber (coarse hair or filament); natural or synthetic
+25971,bristle,a stiff hair
+25972,bristle_brush,a brush that is made with the short stiff hairs of an animal or plant
+25973,bristle_fern filmy_fern,any fern of the genus Trichomanes having large pinnatifid often translucent fronds; most are epiphytic on tree branches and twigs or terrestrial on mossy banks
+25974,bristlecone_pine Rocky_Mountain_bristlecone_pine Pinus_aristata,small slow-growing upland pine of western United States (Rocky Mountains) having dense branches with fissured rust-brown bark and short needles in bunches of 5 and thorn-tipped cone scales; among the oldest living things some over 4500 years old
+25975,bristlegrass bristle_grass,grasses of grasslands and woodlands having large gracefully arching spikes with long bristles beneath each spikelet
+25976,bristletail,small wingless insect with a long bristlelike tail
+25977,bristly_locust rose_acacia moss_locust Robinia_hispida,large shrub or small tree of the eastern United States having bristly stems and large clusters of pink flowers
+25978,bristly_sarsaparilla bristly_sarsparilla dwarf_elder Aralia_hispida,bristly herb of eastern and central North America having black fruit and medicinal bark
+25979,brit britt,the young of a herring or sprat or similar fish
+25980,brit britt,minute crustaceans forming food for right whales
+25981,britches,(used in the plural) informal term for breeches
+25982,brittle toffee toffy,caramelized sugar cooled in thin sheets
+25983,brittle_bladder_fern brittle_fern fragile_fern Cystopteris_fragilis,delicate fern widely distributed in North America and European having thin pinnatifid fronds with brittle stems
+25984,brittle_maidenhair brittle_maidenhair_fern Adiantum_tenerum,tropical American fern with broad pinnae; widely cultivated
+25985,brittle_star brittle-star serpent_star,an animal resembling a starfish with fragile whiplike arms radiating from a small central disc
+25986,brittlebush brittle_bush incienso Encelia_farinosa,fragrant rounded shrub of southwestern United States and adjacent Mexico having brittle stems and small crowded blue-green leaves and yellow flowers; produces a resin used in incense and varnish and in folk medicine
+25987,brittleness crispness crispiness,firm but easily broken
+25988,broad,slang term for a woman; "a broad is a woman who can throw a mean punch"
+25989,broad-leaved_everlasting_pea perennial_pea Lathyrus_latifolius,perennial climber of central and southern Europe having purple or pink or white flowers; naturalized in North America
+25990,broad-leaved_montia Montia_cordifolia,succulent plant with mostly basal leaves; stem bears 1 pair of broadly ovate or heart-shaped leaves and a loose raceme of 3-10 white flowers; western North America
+25991,broad-leaved_plantain common_plantain white-man's_foot whiteman's_foot cart-track_plant Plantago_major,common European perennial naturalized worldwide; a troublesome weed
+25992,broad-leaved_twayblade Listera_convallarioides,small orchid with two elliptic leaves and a slender raceme of small green flowers; western North America
+25993,broad-mindedness,an inclination to tolerate or overlook opposing or shocking opinions or behavior
+25994,broad_arrow,an arrowhead mark identifying British government property
+25995,broad_arrow,a mark shaped like an arrowhead; used to mark convicts' clothing
+25996,broad_arrow,an arrow with a wide barbed head
+25997,broad_bean broad-bean broad-bean_plant English_bean European_bean field_bean Vicia_faba,Old World upright plant grown especially for its large flat edible seeds but also as fodder
+25998,broad_bean fava_bean horsebean,seed of the broad-bean plant
+25999,broad_bean horse_bean,a bean plant cultivated for use animal fodder
+26000,broad_beech_fern southern_beech_fern Phegopteris_hexagonoptera Dryopteris_hexagonoptera Thelypteris_hexagonoptera,beech fern of North American woodlands having straw-colored stripes
+26001,broad_buckler-fern Dryopteris_dilatata,European shield fern
+26002,broad_gauge,a railroad track (or its width) broader than the standard 56.5 inches
+26003,broad_hatchet,a short-handled hatchet with a broad blade opposite a hammerhead
+26004,broad_interpretation judicial_activism,an interpretation of the U.S. constitution holding that the spirit of the times and the needs of the nation can legitimately influence judicial decisions (particularly decisions of the Supreme Court)
+26005,broad_jump long_jump,the act of jumping as far as possible from a running start
+26006,broad_leaved_centaury,a variety of centaury with broad leaves
+26007,broadax broadaxe,a large ax with a broad cutting blade
+26008,broadbill,small birds of the Old World tropics having bright plumage and short wide bills
+26009,broadcast,message that is transmitted by radio or television
+26010,broadcast program programme,a radio or television show; "did you see his program last night?"
+26011,broadcast_area,the area over which a radio or tv transmission can be received
+26012,broadcast_journalist,a journalist who broadcasts on radio or television
+26013,broadcast_medium broadcasting,a medium that disseminates via telecommunications
+26014,broadcaster,someone who broadcasts on radio or television
+26015,broadcaster spreader,a mechanical device for scattering something (seed or fertilizer or sand etc.) in all directions
+26016,broadcasting,taking part in a radio or tv program
+26017,broadcasting_company,a company that manages tv or radio stations
+26018,broadcasting_station broadcast_station,a station equipped to broadcast radio or television programs
+26019,broadcasting_studio,a studio where broadcasts originate
+26020,broadcloth,a densely textured woolen fabric with a lustrous finish
+26021,broadcloth,a closely woven silk or synthetic fabric with a narrow crosswise rib
+26022,broadening,the action of making broader; "the broadening of travel"
+26023,broadloom,a carpet woven on a wide loom to obviate the need for seams
+26024,broadside,all of the armament that is fired from one side of a warship
+26025,broadside,the whole side of a vessel from stem to stern; "the ship was broadside to the dock"
+26026,broadside,the simultaneous firing of all the armament on one side of a warship
+26027,broadsword,a sword with a broad blade and (usually) two cutting edges; used to cut rather than stab
+26028,broadtail,the fur of a very young karakul lamb
+26029,broadtail caracul karakul,hardy coarse-haired sheep of central Asia; lambs are valued for their soft curly black fur
+26030,brocade,thick heavy expensive material with a raised pattern
+26031,broccoli,branched green undeveloped flower heads
+26032,broccoli Brassica_oleracea_italica,plant with dense clusters of tight green flower buds
+26033,broccoli_raab broccoli_rabe Brassica_rapa_ruvo,plant grown for its pungent edible leafy shoots
+26034,broccoli_rabe broccoli_raab,slightly bitter dark green leaves and clustered flower buds
+26035,brochette,a small spit or skewer
+26036,brocket,small South American deer with unbranched antlers
+26037,brocket,male red deer in its second year
+26038,brodiaea,any of several plants of the genus Brodiaea having basal grasslike leaves and globose flower heads on leafless stems resembling those of genus Allium
+26039,brogan brogue clodhopper work_shoe,a thick and heavy shoe
+26040,broil broiling grilling,cooking by direct exposure to radiant heat (as over a fire or under a grill)
+26041,broiler,flesh of a small young chicken not over 2 1/2 lb suitable for broiling
+26042,broiler,an oven or part of a stove used for broiling
+26043,broken_arch,an arch with a gap at the apex; the gap is usually filled with some decoration
+26044,broken_heart,devastating sorrow and despair; "he is recovering from a broken heart"; "a broken heart languishes here"
+26045,broken_home,a family in which the parents have separated or divorced
+26046,broker-dealer,a financial specialist who trades for his own account and so acts both as a broker and principal
+26047,brokerage,the business of a broker; charges a fee to arrange a contract between two parties
+26048,brokerage brokerage_firm securities_firm,a stock broker's business; charges a fee to act as intermediary between buyer and seller
+26049,brokerage_account,a fund that a customer has entrusted to a securities brokerage; "you can't get a brokerage account unless you have $20,000"
+26050,brokerage_house brokerage,place where a broker conducts his business
+26051,brome bromegrass,any of various woodland and meadow grasses of the genus Bromus; native to temperate regions
+26052,bromic_acid,an unstable acid used as an oxidizing agent
+26053,bromide,any of the salts of hydrobromic acid; formerly used as a sedative but now generally replaced by safer drugs
+26054,bromine Br atomic_number_35,a nonmetallic heavy volatile corrosive dark brown liquid element belonging to the halogens; found in sea water
+26055,bromoform tribromomethane,colorless liquid haloform CHBr3
+26056,bromophenol_blue bromphenol_blue tetrabromo-phenolsulfonephthalein,a dye used as an acid-base indicator
+26057,bromothymol_blue bromthymol_blue,a dye used as an acid-base indicator
+26058,brompheniramine_maleate Dimetane,antihistamine (trade name Dimetane) used to treat hypersensitivity reactions (as rhinitis)
+26059,brompton_stock Matthiola_incana,European plant with racemes of sweet-scented flowers; widely cultivated as an ornamental
+26060,bronchial_artery,arteries that accompany the bronchioles
+26061,bronchial_vein vena_bronchialis,veins serving the bronchi; empty into the azygos vein
+26062,bronchiole,any of the smallest bronchial ducts; ending in alveoli
+26063,bronchiolitis,inflammation of the membranes lining the bronchioles
+26064,bronchitis,inflammation of the membranes lining the bronchial tubes
+26065,bronchodilator,a drug that relaxes and dilates the bronchial passageways and improves the passages of air into the lungs
+26066,bronchopneumonia bronchial_pneumonia,pneumonia characterized by acute inflammation of the walls of the bronchioles
+26067,bronchoscope,a slender tubular instrument used to examine the bronchial tubes
+26068,bronchospasm,a spasm of the bronchi that makes exhalation difficult and noisy; associated with asthma and bronchitis
+26069,bronchus bronchial_tube,either of the two main branches of the trachea
+26070,bronco bronc broncho,an unbroken or imperfectly broken mustang
+26071,bronco_busting,breaking a bronco to saddle
+26072,bronze,an alloy of copper and tin and sometimes other elements; also any copper-base alloy containing other elements in place of tin
+26073,bronze,a sculpture made of bronze
+26074,bronze_age,(classical mythology) the third age of the world, marked by war and violence
+26075,bronze_medal,a trophy made of bronze (or having the appearance of bronze) that is usually awarded for winning third place in a competition
+26076,brooch broach breastpin,a decorative pin worn by women
+26077,brood,the young of an animal cared for at one time
+26078,brood_bitch,a bitch used for breeding
+26079,brood_hen broody broody_hen setting_hen sitter,a domestic hen ready to brood
+26080,brooding incubation,sitting on eggs so as to hatch them by the warmth of the body
+26081,broodmare stud_mare,a female horse used for breeding
+26082,brook creek,a natural stream of water smaller than a river (and often a tributary of a river); "the creek dried up every summer"
+26083,brook_thistle Cirsium_rivulare,of central and southwestern Europe
+26084,brook_trout speckled_trout,a delicious freshwater food fish
+26085,brook_trout speckled_trout Salvelinus_fontinalis,North American freshwater trout; introduced in Europe
+26086,brooklet,a small brook
+26087,brooklime American_brooklime Veronica_americana,plant of western North America and northeastern Asia having prostrate stems with dense racemes of pale violet to lilac flowers
+26088,brooklime European_brooklime Veronica_beccabunga,European plant having low-lying stems with blue flowers; sparsely naturalized in North America
+26089,brookweed Samolus_parviflorus Samolus_floribundus,American water pimpernel
+26090,brookweed Samolus_valerandii,water pimpernel of Europe to China
+26091,broom,any of various shrubs of the genera Cytisus or Genista or Spartium having long slender branches and racemes of yellow flowers
+26092,broom,a cleaning implement for sweeping; bundle of straws or twigs attached to a long handle
+26093,broom_beard_grass prairie_grass wire_grass Andropogon_scoparius Schizachyrium_scoparium,handsome hardy North American grass with foliage turning pale bronze in autumn
+26094,broom_closet,a small room for storing brooms and other cleaning equipment
+26095,broom_grass,any of several grasses of the genus Andropogon; used in broom making
+26096,broom_sedge Andropogon_virginicus,tall tufted grass of southeastern United States
+26097,broom_tree needle_furze petty_whin Genista_anglica,prickly yellow-flowered shrub of the moors of New England and Europe
+26098,broomcorn Sorghum_vulgare_technicum,tall grasses grown for the elongated stiff-branched panicle used for brooms and brushes
+26099,broomcorn_millet hog_millet Panicum_miliaceum,extensively cultivated in Europe and Asia for its grain and in United States sometimes for forage
+26100,broomstick broom_handle,the handle of a broom
+26101,broomweed broom-weed Gutierrezia_texana,annual of southwestern United States having rigid woody branches with sticky foliage and yellow flowers
+26102,broth,a thin soup of meat or fish or vegetable stock
+26103,broth stock,liquid in which meat and vegetables are simmered; used as a basis for e.g. soups or sauces; "she made gravy with a base of beef stock"
+26104,broth_of_a_boy broth_of_a_man,an outstanding person; as if produced by boiling down a savory broth
+26105,brother,a male person who is a fellow member (of a fraternity or religion or other group); "none of his brothers would betray him"
+26106,brother blood_brother,a male with the same parents as someone else; "my brother still lives with our parents"
+26107,brother comrade,used as a term of address for those male persons engaged in the same movement; "Greetings, comrade!"
+26108,brother-in-law,a brother by marriage
+26109,brotherhood,the kinship relation between a male offspring and the siblings
+26110,brotherhood,the feeling that men should treat one another like brothers
+26111,brotherhood fraternity sodality,people engaged in a particular occupation; "the medical fraternity"
+26112,brotula,deep-sea fishes
+26113,brougham,light carriage; pulled by a single horse
+26114,brougham,a sedan that has no roof over the driver's seat
+26115,brouhaha,a confused disturbance far greater than its cause merits
+26116,brow forehead,the part of the face above the eyes
+26117,brow_ptosis,sagging eyebrows
+26118,brown brownness,an orange of low brightness and saturation
+26119,brown_Betty,baked pudding of apples and breadcrumbs
+26120,brown_algae,algae having the chlorophyll masked by brown and yellow pigments
+26121,brown_bat,any of numerous medium to small insectivorous bats found worldwide in caves and trees and buildings
+26122,brown_bear bruin Ursus_arctos,large ferocious bear of Eurasia
+26123,brown_bells Fritillaria_micrantha Fritillaria_parviflora,California herb with brownish-purple or greenish bell-shaped flowers
+26124,brown_bread Boston_brown_bread,dark steamed bread made of cornmeal wheat and flour with molasses and soda and milk or water
+26125,brown_bullhead,freshwater catfish of eastern United States
+26126,brown_butter beurre_noisette,clarified butter browned slowly and seasoned with vinegar or lemon juice and capers
+26127,brown_creeper American_creeper Certhia_americana,a common creeper in North America with a down-curved bill
+26128,brown_cup,a variety of sclerotinia
+26129,brown_hyena strand_wolf Hyaena_brunnea,of southern Africa
+26130,brown_lacewing hemerobiid hemerobiid_fly,small dark-colored lacewing fly
+26131,brown_lemming Lemmus_trimucronatus,of northwestern Canada and Alaska
+26132,brown_pine Rockingham_podocarp Podocarpus_elatus,large Australian tree with straight-grained yellow wood that turns brown on exposure
+26133,brown_rat Norway_rat Rattus_norvegicus,common domestic rat; serious pest worldwide
+26134,brown_rice,unpolished rice retaining the yellowish-brown outer layer
+26135,brown_root_rot_fungus Thielavia_basicola,fungus causing brown root rot in plants of the pea and potato and cucumber families
+26136,brown_rot,any of certain fungous diseases of plants characterized by browning and decay of tissues
+26137,brown_rot_gummosis gummosis,disease of citrus trees caused by the fungus Phytophthora citrophthora
+26138,brown_sauce sauce_Espagnole,bouillon or beef stock thickened with butter and flour roux and variously seasoned with herbs or Worcestershire etc.
+26139,brown_snail Helix_aspersa,serious garden pest having a brown shell with paler zigzag markings; nearly cosmopolitan in distribution
+26140,brown_soft_scale Coccus_hesperidum,pest on citrus trees
+26141,brown_study,a state of deep absorption or thoughtfulness
+26142,brown_sugar,unrefined or only partly refined sugar
+26143,brown_thrasher brown_thrush Toxostoma_rufums,common large songbird of eastern United States having reddish-brown plumage
+26144,brown_trout salmon_trout Salmo_trutta,speckled trout of European rivers; introduced in North America
+26145,brownie,square or bar of very rich chocolate cake usually with nuts
+26146,brownie_mix,a commercial mix for making brownies
+26147,brownish_yellow,a yellow color of low lightness with a brownish tinge
+26148,brownstone,a reddish brown sandstone; used in buildings
+26149,brownstone,a row house built of brownstone; reddish brown in color
+26150,browntail brown-tail_moth Euproctis_phaeorrhoea,small brown and white European moth introduced into eastern United States; pest of various shade and fruit trees
+26151,browse,vegetation (such as young shoots, twigs, and leaves) that is suitable for animals to eat; "a deer needs to eat twenty pounds of browse every day"
+26152,browse browsing,reading superficially or at random
+26153,browse browsing,the act of feeding by continual nibbling
+26154,browser,a viewer who looks around casually without seeking anything in particular
+26155,browser web_browser,a program used to view HTML documents
+26156,brucellosis contagious_abortion Bang's_disease,an infectious disease of domestic animals often resulting in spontaneous abortion; transmittable to human beings
+26157,brucellosis undulant_fever Malta_fever Gibraltar_fever Rock_fever Mediterranean_fever,infectious bacterial disease of human beings transmitted by contact with infected animals or infected meat or milk products; characterized by fever and headache
+26158,brucine,a bitter alkaloid poison resembling strychnine and extracted from nux vomica
+26159,bruin,a conventional name for a bear used in tales following usage in the old epic `Reynard the Fox'
+26160,bruise contusion,an injury that doesn't break the skin but results in some discoloration
+26161,brunch,combination breakfast and lunch; usually served in late morning
+26162,brunch_coat,a woman's short housecoat or wrapper
+26163,brunet brunette,a person with dark (brown) hair
+26164,brunt,main force of a blow etc; "bore the brunt of the attack"
+26165,brush,conducts current between rotating and stationary parts of a generator or motor
+26166,brush,an implement that has hairs or bristles firmly set into a handle
+26167,brush,a bushy tail or part of a bushy tail (especially of the fox)
+26168,brush,contact with something dangerous or undesirable; "I had a brush with danger on my way to work"; "he tried to avoid any brushes with the police"
+26169,brush brushing,the act of brushing your teeth; "the dentist recommended two brushes a day"
+26170,brush brushing,the act of brushing your hair; "he gave his hair a quick brush"
+26171,brush brushwood coppice copse thicket,a dense growth of bushes
+26172,brush clash encounter skirmish,a minor short-term fight
+26173,brush light_touch,momentary contact
+26174,brush-off,a curt or disdainful rejection
+26175,brush-tailed_phalanger Trichosurus_vulpecula,bushy-tailed phalanger
+26176,brush-tailed_porcupine brush-tail_porcupine,porcupine with a tuft of large beaded bristles on the tail
+26177,brush_cut,a short haircut with hairs standing up like a brush
+26178,brush_discharge,discharge between electrodes creating visible streamers of ionized particles
+26179,brush_fire,an uncontrolled fire that consumes brush and shrubs and bushes
+26180,brush_turkey Alectura_lathami,black megapode of wooded regions of Australia and New Guinea
+26181,brushwood,the wood from bushes or small branches; "they built a fire of brushwood"
+26182,brushwork,an artist's distinctive technique of applying paint with a brush
+26183,brussels_sprout Brassica_oleracea_gemmifera,plant grown for its stout stalks of edible small green heads resembling diminutive cabbages
+26184,brussels_sprouts,the small edible cabbage-like buds growing along a stalk of the brussels sprout plant
+26185,brutality barbarity barbarism savagery,a brutal barbarous savage act
+26186,brutalization brutalisation,the condition of being treated in a cruel and savage manner
+26187,brutalization brutalisation,the activity of treating someone savagely or viciously
+26188,brutalization brutalisation animalization animalisation,an act that makes people cruel or lacking normal human qualities
+26189,bruxism,involuntarily or unconsciously clenching or grinding the teeth, typically during sleep
+26190,bryanthus,procumbent Old World mat-forming evergreen shrub with racemes of pinkish-white flowers
+26191,bryony briony,a vine of the genus Bryonia having large leaves and small flowers and yielding acrid juice with emetic and purgative properties
+26192,bryophyte nonvascular_plant,any of numerous plants of the division Bryophyta
+26193,bryozoan polyzoan sea_mat sea_moss moss_animal,sessile aquatic animal forming mossy colonies of small polyps each having a curved or circular ridge bearing tentacles; attach to stones or seaweed and reproduce by budding
+26194,bubble,a hollow globule of gas (e.g., air or carbon dioxide)
+26195,bubble,an impracticable and illusory idea; "he didn't want to burst the newcomer's bubble"
+26196,bubble,a dome-shaped covering made of transparent glass or plastic
+26197,bubble_and_squeak,leftover cabbage fried with cooked potatoes and sometimes meat
+26198,bubble_bath,a bath in which you add something to foam and scent the bath water
+26199,bubble_chamber,an instrument that records the tracks of ionizing particles
+26200,bubble_dance,a solo dance similar to a fan dance except large balloons are used instead of fans
+26201,bubble_gum,a kind of chewing gum that can be blown into bubbles
+26202,bubble_gum_dermatitis,an allergic contact dermatitis developed around the lips of children who chew bubble gum
+26203,bubble_jet_printer bubble-jet_printer bubblejet,a kind of ink-jet printer
+26204,bubble_shell,marine gastropod mollusk having a very small thin shell
+26205,bubbler,any of various devices in which air or some other gas is bubbled through a liquid
+26206,bubbliness effervescence frothiness,the property of giving off bubbles
+26207,bubo,a lymph node that is inflamed and swollen because of plague or gonorrhea or tuberculosis
+26208,bubonic_plague pestis_bubonica glandular_plague,the most common form of the plague in humans; characterized by chills, prostration, delirium and the formation of buboes in the armpits and groin; does not spread from person to person
+26209,buccal_artery arteria_buccalis,a branch of the maxillary artery that supplies blood to the buccinator muscle and the cheek
+26210,buccal_cavity,the cavity between the jaws and the cheeks
+26211,buck,mature male of various mammals (especially deer or antelope)
+26212,buck-and-wing,a solo tap dance emphasizing sharp taps
+26213,buck_fever,nervous excitement of an inexperienced hunter
+26214,buck_sergeant,a sergeant of the lowest rank in the military
+26215,buckboard,an open horse-drawn carriage with four wheels; has a seat attached to a flexible board between the two axles
+26216,bucket bucketful,the quantity contained in a bucket
+26217,bucket pail,a roughly cylindrical vessel that is open at the top
+26218,bucket_seat,a low single seat as in cars or planes
+26219,bucket_shop,an unethical or overly aggressive brokerage firm
+26220,bucket_shop,(formerly) a cheap saloon selling liquor by the bucket
+26221,buckeye horse_chestnut conker,the inedible nutlike seed of the horse chestnut
+26222,bucking_bronco,a wild horse that is vicious and difficult or impossible to break in
+26223,buckle,fastener that fastens together two ends of a belt or strap; often has loose prong
+26224,buckler_mustard Biscutalla_laevigata,plant of southeastern Europe having yellow flowers like those of mustard and pods with open valves resembling bucklers
+26225,buckleya Buckleya_distichophylla,parasitic shrub of the eastern United States having opposite leaves and insignificant greenish flowers followed by oily dull green olivelike fruits
+26226,buckminsterfullerene buckyball,a spheroidal fullerene; the first known example of a fullerene
+26227,buckram,a coarse cotton fabric stiffened with glue; used in bookbinding and to stiffen clothing
+26228,bucksaw,a saw that is set in a frame in the shape of an H; used with both hands to cut wood that is held in a sawbuck
+26229,buckskin,a soft yellowish suede leather originally from deerskin but now usually from sheepskin
+26230,buckskin,horse of a light yellowish dun color with dark mane and tail
+26231,buckskins,(used in the plural) breeches made of buckskin
+26232,buckthorn,a shrub or shrubby tree of the genus Rhamnus; fruits are source of yellow dyes or pigments
+26233,buckthorn,any shrub or small tree of the genus Bumelia
+26234,buckthorn_berry yellow_berry,fruit of various buckthorns yielding dyes or pigments
+26235,bucktooth,a large projecting front tooth
+26236,buckwheat,grain ground into flour
+26237,buckwheat Polygonum_fagopyrum Fagopyrum_esculentum,a member of the genus Fagopyrum; annual Asian plant with clusters of small pinkish white flowers and small edible triangular seeds which are used whole or ground into flour
+26238,buckwheat_cake,a pancake made with buckwheat flour
+26239,bud,a swelling on a plant stem consisting of overlapping immature leaves or petals
+26240,bud,a partially opened flower
+26241,bud_brush bud_sagebrush Artemis_spinescens,a perennial that is valuable as sheep forage in the United States
+26242,budding,reproduction of some unicellular organisms (such as yeasts) by growth and specialization followed by the separation by constriction of a part of the parent
+26243,buddy brother chum crony pal sidekick,a close friend who accompanies his buddies in their activities
+26244,buddy_system,a cooperative practice of pairing two or more people together for mutual assistance or safety (especially in recreational swimming)
+26245,budgerigar budgereegah budgerygah budgie grass_parakeet lovebird shell_parakeet Melopsittacus_undulatus,small Australian parakeet usually light green with black and yellow markings in the wild but bred in many colors
+26246,budget,a sum of money allocated for a particular purpose; "the laboratory runs on a budget of a million a year"
+26247,budget,a summary of intended expenditures along with proposals for how to meet them; "the president submitted the annual budget to Congress"
+26248,budget_cut,the act of reducing budgeted expenditures
+26249,budget_deficit,an excess of expenditures over revenues
+26250,buff,a soft thick undyed leather from the skins of e.g. buffalo or oxen
+26251,buff,bare skin; "swimming in the buff means to swim naked"
+26252,buff buffer,an implement consisting of soft material mounted on a block; used for polishing (as in manicuring)
+26253,buffalo,meat from an American bison
+26254,buffalo_bur Solanum_rostratum,North American nightshade with prickly foliage and racemose yellow flowers
+26255,buffalo_carpet_beetle Anthrenus_scrophulariae,a small black and red and white carpet beetle
+26256,buffalo_clover Trifolium_reflexum Trifolium_stoloniferum,clover of western United States
+26257,buffalo_fish buffalofish,any of several large suckers of the Mississippi valley
+26258,buffalo_grass Buchloe_dactyloides,short grass growing on dry plains of central United States (where buffalo roam)
+26259,buffalo_nut elk_nut oil_nut,oily drupaceous fruit of rabbitwood
+26260,buffalo_wing,crisp spicy chicken wings
+26261,buffalofish,large carp-like North American fish
+26262,buffel_grass Cenchrus_ciliaris Pennisetum_cenchroides,erect tussock-forming perennial bur grass used particularly in South Africa and Australia for pasture and forage
+26263,buffer,(chemistry) an ionic compound that resists changes in its pH
+26264,buffer buffer_storage buffer_store,(computer science) a part of RAM used for temporary storage of data that is waiting to be sent to a device; used to compensate for differences in the rate of flow of data between components of a computer system
+26265,buffer fender,a cushion-like device that reduces shock due to an impact
+26266,buffer polisher,a power tool used to buff surfaces
+26267,buffer_solution,a solution containing a buffer
+26268,buffer_state buffer_country,a small neutral state between two rival powers
+26269,buffer_zone buffer,a neutral zone between two rival powers that is created in order to diminish the danger of conflict
+26270,buffered_aspirin Bufferin,aspirin coated with a substance capable of neutralizing acid (trade name Bufferin)
+26271,buffet,a meal set out on a buffet at which guests help themselves
+26272,buffet counter sideboard,a piece of furniture that stands at the side of a dining room; has shelves and drawers
+26273,buffing_wheel,a wheel that is covered with soft material
+26274,bufflehead butterball dipper Bucephela_albeola,small North American diving duck; males have bushy head plumage
+26275,buffoonery clowning japery frivolity harlequinade prank,acting like a clown or buffoon
+26276,bufo,any toad of the genus Bufo
+26277,bug,a small hidden microphone; for listening secretly
+26278,bug,general term for any insect or similar creeping or crawling invertebrate
+26279,bug glitch,a fault or defect in a computer program, system, or machine
+26280,bugaboo,a source of concern; "the old bugaboo of inflation still bothers them"
+26281,bugbane,a plant of the genus Cimicifuga having flowers in long racemes or panicles reported to be distasteful to insects
+26282,bugbear hobgoblin,an object of dread or apprehension; "Germany was always a bugbear for France"; "A foolish consistency is the hobgoblin of little minds"--Ralph Waldo Emerson
+26283,bugger_all fuck_all Fanny_Adams sweet_Fanny_Adams,little or nothing at all; "I asked for a raise and they gave me bugger-all"; "I know sweet Fanny Adams about surgery"
+26284,bugginess,the state of having bugs
+26285,buggy roadster,a small lightweight carriage; drawn by a single horse
+26286,buggy_whip,a horsewhip once used by a driver of a buggy; "since buggies have been replaced by cars the buggy whip has become a symbol for anything that is hopelessly outmoded"
+26287,bugle,a tubular glass or plastic bead sewn onto clothing for decoration
+26288,bugle,a brass instrument without valves; used for military calls and fanfares
+26289,bugle bugleweed,any of various low-growing annual or perennial evergreen herbs native to Eurasia; used for ground cover
+26290,bugle_call,a signal broadcast by the sound of a bugle
+26291,bugler,someone who plays a bugle
+26292,bugleweed Lycopus_virginicus,a mildly narcotic and astringent aromatic herb having small whitish flowers; eastern United States
+26293,bugloss alkanet Anchusa_officinalis,perennial or biennial herb cultivated for its delicate usually blue flowers
+26294,builder,a person who creates a business or who organizes and develops a country; "empire builder"
+26295,builder constructor,someone who contracts for and supervises construction (as of a building)
+26296,builder detergent_builder,a substance added to soaps or detergents to increase their cleansing action
+26297,building,the occupants of a building; "the entire building complained about the noise"
+26298,building edifice,a structure that has a roof and walls and stands more or less permanently in one place; "there was a three-story building on the corner"; "it was an imposing edifice"
+26299,building_block,a block of material used in construction work
+26300,building_code,set of standards established and enforced by local government for the structural safety of buildings
+26301,building_complex complex,a whole structure (as a building) made up of interconnected or related structures
+26302,building_material,material used for constructing buildings
+26303,building_permit,a document authorizing the holder to construct a building of a particular kind on a particular lot
+26304,building_society,British equivalent of United States savings and loan association
+26305,building_supply_store building_supply_house,a store where builders can purchase materials for building houses and related structures
+26306,buildup,the result of the process of accumulation; "the buildup of leaves blocked the drain pipes"
+26307,buildup,highly favorable publicity and praise; "his letter of recommendation gave her a terrific buildup"
+26308,buildup,the act of building up an accumulation; "I envied his rapid buildup of assets"; "a military buildup in preparation for the invasion"
+26309,built-in_bed,a bed that is built in and fixed to a wall
+26310,bulb,anything with a round shape resembling a teardrop
+26311,bulb,a modified bud consisting of a thickened globular underground stem serving as a reproductive structure
+26312,bulb,a rounded dilation or expansion in a canal or vessel or organ
+26313,bulb,a rounded part of a cylindrical instrument (usually at one end); "the bulb of a syringe"
+26314,bulbar_conjunctiva conjunctival_layer_of_bulb tunica_conjunctiva_bulbi,the part of the conjunctiva covering the anterior face of the sclera and the surface epithelium of the cornea
+26315,bulbil bulblet,small bulb or bulb-shaped growth arising from the leaf axil or in the place of flowers
+26316,bulblet_fern bulblet_bladder_fern berry_fern Cystopteris_bulbifera,North American fern often bearing bulbils on the leaflets
+26317,bulbous_iris,any of various irises having a rootstock formed like a bulb
+26318,bulbous_plant,plant growing from a bulb
+26319,bulbul,nightingale spoken of in Persian poetry
+26320,bulge bump hump swelling gibbosity gibbousness jut prominence protuberance protrusion extrusion excrescence,something that bulges out or is protuberant or projects from its surroundings; "the gun in his pocket made an obvious bulge"; "the hump of a camel"; "he stood on the rocky prominence"; "the occipital protuberance was well developed"; "the bony excrescence between its horns"
+26321,bulgur bulghur bulgur_wheat,parched crushed wheat
+26322,bulgur_pilaf,pilaf made with bulgur wheat instead of rice and usually without meat
+26323,bulimarexia binge-purge_syndrome binge-vomit_syndrome bulima_nervosa,a disorder of eating in which the person alternates between strong craving for food and aversion to food; characterized by excessive eating followed by periods of fasting or self-induced vomiting
+26324,bulimia,pathologically insatiable hunger (especially when caused by brain lesions)
+26325,bulimia binge-eating_syndrome,a disorder of eating seen among young women who go on eating binges and then feel guilt and depression and self-condemnation
+26326,bulimic,a person suffering from bulimia
+26327,bulk,the property possessed by a large mass
+26328,bulk mass volume,the property of something that is great in magnitude; "it is cheaper to buy it in bulk"; "he received a mass of correspondence"; "the volume of exports"
+26329,bulk_mail,mail consisting of large numbers of identical items (circulars or advertisements) sent to individual addresses at less than 1st-class rates and paid for in one lot
+26330,bulk_modulus,the ratio of the change in pressure acting on a volume to the fractional change in volume
+26331,bulkhead,a partition that divides a ship or plane into compartments
+26332,bulkiness massiveness,an unwieldy largeness
+26333,bull,an investor with an optimistic market outlook; an investor who expects prices to rise and so buys now for resale later
+26334,bull,uncastrated adult male of domestic cattle
+26335,bull,mature male of various mammals of which the female is called `cow'; e.g. whales or elephants or especially cattle
+26336,bull,a serious and ludicrous blunder; "he made a bad bull of the assignment"
+26337,bull bruiser strapper Samson,a large and strong and heavyset man; "he was a bull of a man"; "a thick-skinned bruiser ready to give as good as he got"
+26338,bull cop copper fuzz pig,uncomplimentary terms for a policeman
+26339,bull papal_bull,a formal proclamation issued by the pope (usually written in antiquated characters and sealed with a leaden bulla)
+26340,bull's_eye,in target shooting: a score made by hitting the center of the target; "in repeated sets of five shots his numbers of bull's-eyes varied"
+26341,bull's_eye bull,the center of a target
+26342,bull_market,a market characterized by rising prices for securities
+26343,bull_mastiff,large powerful breed developed by crossing the bulldog and the mastiff
+26344,bull_neck,a thick short powerful neck
+26345,bull_nose,a disease of pigs resulting in swelling of the snout
+26346,bull_session,an informal discussion (usually among men)
+26347,bull_shark cub_shark Carcharhinus_leucas,a most common shark in temperate and tropical coastal waters worldwide; heavy-bodied and dangerous
+26348,bull_snake bull-snake,any of several large harmless rodent-eating North American burrowing snakes
+26349,bull_thistle boar_thistle spear_thistle Cirsium_vulgare Cirsium_lanceolatum,European thistle with rather large heads and prickly leaves; extensively naturalized as a weed in the United States
+26350,bull_tongue,a heavy plow with a single wide blade; used chiefly in cotton fields
+26351,bulla,the round leaden seal affixed to a papal bull
+26352,bullace Prunus_insititia,small wild or half-domesticated Eurasian plum bearing small ovoid fruit in clusters
+26353,bullbrier greenbrier catbrier horse_brier horse-brier brier briar Smilax_rotundifolia,a very prickly woody vine of the eastern United States growing in tangled masses having tough round stems with shiny leathery leaves and small greenish flowers followed by clusters of inedible shiny black berries
+26354,bulldog English_bulldog,a sturdy thickset short-haired breed with a large head and strong undershot lower jaw; developed originally in England for bull baiting
+26355,bulldog_ant,any of the large fierce Australian ants of the genus Myrmecia
+26356,bulldog_clip alligator_clip,a clip with a spring that closes the metal jaws
+26357,bulldog_wrench,a wrench designed to provide a firm grip on something
+26358,bulldozer dozer,large powerful tractor; a large blade in front flattens areas of ground
+26359,bullet slug,a projectile that is fired from a gun
+26360,bullet_hole,a hole made by a bullet passing through it
+26361,bullet_train bullet,a high-speed passenger train
+26362,bullethead,a head shaped like a bullet
+26363,bulletin,a brief report (especially an official statement issued for immediate publication or broadcast)
+26364,bulletin_board notice_board,a board that hangs on a wall; displays announcements
+26365,bulletin_board_system bulletin_board electronic_bulletin_board bbs,a computer that is running software that allows users to leave messages and access information of general interest
+26366,bulletproof_vest,a vest capable of resisting the impact of a bullet
+26367,bullfight corrida,a Spanish or Portuguese or Latin American spectacle; a matador baits and (usually) kills a bull in an arena before many spectators
+26368,bullfighter toreador,someone who fights bulls
+26369,bullfighting tauromachy,the activity at a bullfight
+26370,bullfinch Pyrrhula_pyrrhula,common European finch mostly black and white with red throat and breast
+26371,bullfrog Rana_catesbeiana,largest North American frog; highly aquatic with a deep-pitched voice
+26372,bullhead,freshwater sculpin with a large flattened bony-plated head with hornlike spines
+26373,bullhead bullhead_catfish,any of several common freshwater catfishes of the United States
+26374,bullhorn loud_hailer loud-hailer,a portable loudspeaker with built-in microphone and amplifier
+26375,bullion,a mass of precious metal
+26376,bullion,gold or silver in bars or ingots
+26377,bullnose bullnosed_plane,a small carpenter's plane with the cutting edge near the front
+26378,bullock,young bull
+26379,bullock steer,castrated bull
+26380,bullock's_heart Jamaica_apple,large heart-shaped tropical fruit with soft acid pulp
+26381,bullock's_heart bullock's_heart_tree bullock_heart Annona_reticulata,small tropical American tree bearing a bristly heart-shaped acid tropical fruit
+26382,bullpen,a place on a baseball field where relief pitchers can warm up during a game
+26383,bullpen detention_cell detention_centre,a large cell where prisoners (people awaiting trial or sentence or refugees or illegal immigrants) are confined together temporarily
+26384,bullring,a stadium where bullfights take place
+26385,bullshit bull Irish_bull horseshit shit crap dogshit,obscene words for unacceptable behavior; "I put up with a lot of bullshit from that jerk"; "what he said was mostly bull"
+26386,bullshot,a cocktail made with vodka and beef bouillon or consomme
+26387,bullterrier bull_terrier,a powerful short-haired terrier originated in England by crossing the bulldog with terriers
+26388,bully,a hired thug
+26389,bully tough hooligan ruffian roughneck rowdy yob yobo yobbo,a cruel and brutal fellow
+26390,bully_beef corned_beef corn_beef,beef cured or pickled in brine
+26391,bully_pulpit,a public office of sufficiently high rank that it provides the holder with an opportunity to speak out and be listened to on any matter; "the American presidency is a bully pulpit"
+26392,bullyboy,a swaggering tough; usually one acting as an agent of a political faction
+26393,bullying intimidation,the act of intimidating a weaker person to make them do something
+26394,bulrush bullrush common_rush soft_rush Juncus_effusus,tall rush with soft erect or arching stems found in Eurasia, Australia, New Zealand, and common in North America
+26395,bulwark,a fencelike structure around a deck (usually plural)
+26396,bumblebee humblebee,robust hairy social bee of temperate regions
+26397,bumboat,a small boat that ferries supplies and commodities for sale to a larger ship at anchor
+26398,bumf bumph,reading materials (documents, written information) that you must read and deal with but that you think are extremely boring
+26399,bummer,an experience that is irritating or frustrating or disappointing; "having to stand in line so long was a real bummer"
+26400,bummer,a bad reaction to a hallucinogenic drug
+26401,bump,a lump on the body caused by a blow
+26402,bumper,a glass filled to the brim (especially as a toast); "we quaffed a bumper of ale"
+26403,bumper,a mechanical device consisting of bars at either end of a vehicle to absorb shock and prevent serious damage
+26404,bumper_car Dodgem,a small low-powered electrically powered vehicle driven on a special platform where there are many others to be dodged
+26405,bumper_guard,vertical bars attached to a bumper to prevent locking bumpers with another vehicle
+26406,bumper_jack,a jack for lifting a motor vehicle by the bumper
+26407,bumpiness,the texture of a surface that has many bumps
+26408,bumptiousness cockiness pushiness forwardness,offensive boldness and assertiveness
+26409,bun roll,small rounded bread either plain or sweet
+26410,buna buna_rubber,made by polymerizing butadiene
+26411,bunch clump cluster clustering,a grouping of a number of similar things; "a bunch of trees"; "a cluster of admirers"
+26412,bunch lot caboodle,any collection in its entirety; "she bought the whole caboodle"
+26413,bunchberry dwarf_cornel crackerberry pudding_berry Cornus_canadensis,creeping perennial herb distinguished by red berries and clustered leaf whorls at the tips of shoots; Greenland to Alaska
+26414,bunchgrass bunch_grass,any of various grasses of many genera that grow in tufts or clumps rather than forming a sod or mat; chiefly of western United States
+26415,bunco bunco_game bunko bunko_game con confidence_trick confidence_game con_game hustle sting flimflam,a swindle in which you cheat at gambling or persuade a person to buy worthless property
+26416,bundle sheaf,a package of several things tied together for carrying or storing
+26417,bundling,a onetime custom during courtship of unmarried couples occupying the same bed without undressing
+26418,bundling,the act of binding something into a bundle
+26419,bundling,the act of shoving hastily; "she complained about bundling the children off to school"
+26420,bunfight bun-fight,(Briticism) a grand formal party on an important occasion
+26421,bung spile,a plug used to close a hole in a barrel or flask
+26422,bungalow cottage,a small house with a single story
+26423,bungee bungee_cord,an elasticized rope
+26424,bunghole,a hole in a barrel or cask; used to fill or empty it
+26425,bungler blunderer fumbler bumbler stumbler sad_sack botcher butcher fuckup,someone who makes mistakes because of incompetence
+26426,bunion,a painful swelling of the bursa of the first joint of the big toe
+26427,bunji-bunji Flindersia_schottiana,Australian timber tree whose bark yields a poison
+26428,bunk,a rough bed (as at a campsite)
+26429,bunk bunkum buncombe guff rot hogwash,unacceptable behavior (especially ludicrously false statements)
+26430,bunk feed_bunk,a long trough for feeding cattle
+26431,bunk_bed bunk,beds built one above the other
+26432,bunker,a large container for storing fuel; "the ship's bunkers were full of coal"
+26433,bunker dugout,a fortification of earth; mostly or entirely below ground
+26434,bunker sand_trap trap,a hazard on a golf course
+26435,bunker_mentality,defensiveness resulting from repeated attacks; "after so many suicide bombings the Israelis have to resist developing a bunker mentality"
+26436,bunkmate,someone who occupies the same sleeping quarters as yourself
+26437,bunny bunny_girl,a young waitress in a nightclub whose costume includes the tail and ears of a rabbit
+26438,bunny bunny_rabbit,(usually informal) especially a young rabbit
+26439,bunny_hug,a syncopated ballroom dance formerly popular in the US
+26440,bunsen_burner bunsen etna,a gas burner used in laboratories; has an air valve to regulate the mixture of gas and air
+26441,bunt,(baseball) the act of hitting a baseball lightly without swinging the bat
+26442,bunt Tilletia_caries,fungus that destroys kernels of wheat by replacing them with greasy masses of smelly spores
+26443,bunt stinking_smut,disease of wheat characterized by replacement of the grains with greasy masses of smelly smut spores
+26444,bunt stinking_smut Tilletia_foetida,similar to Tilletia caries
+26445,buntal,fine white Philippine fiber from stalks of unopened leaves of talipot palms; used in making hats
+26446,bunter,a batter who bunts
+26447,bunting,a loosely woven fabric used for flags, etc.
+26448,bunting,any of numerous seed-eating songbirds of Europe or North America
+26449,bunya_bunya,nut tasting like roasted chestnuts; a staple food of Australian aborigines
+26450,bunya_bunya bunya_bunya_tree Araucaria_bidwillii,Australian conifer bearing two-inch seeds tasting like roasted chestnuts; among the aborigines the tree is hereditary property protected by law
+26451,bunyavirus,an animal virus belonging to the family Bunyaviridae; can be used as a bioweapon
+26452,buoy,bright-colored; a float attached by rope to the seabed to mark channels in a harbor or underwater hazards
+26453,buoyancy,the tendency to float in water or other liquid
+26454,buoyancy perkiness,cheerfulness that bubbles to the surface
+26455,bur burr,seed vessel having hooks or prickles
+26456,bur burr,small bit used in dentistry or surgery
+26457,bur_marigold burr_marigold beggar-ticks beggar's-ticks sticktight,any of several plants of the genus Bidens having yellow flowers and prickly fruits that cling to fur and clothing
+26458,bur_oak burr_oak mossy-cup_oak mossycup_oak Quercus_macrocarpa,medium to large deciduous oak of central and eastern North America with ovoid acorns deeply immersed in large fringed cups; yields tough close-grained wood
+26459,bur_reed,marsh plant having elongated linear leaves and round prickly fruit
+26460,burbot eelpout ling cusk Lota_lota,elongate freshwater cod of northern Europe and Asia and North America having barbels around its mouth
+26461,burden,the central idea that is expanded in a document or discourse
+26462,burden load encumbrance incumbrance onus,an onerous or difficult concern; "the burden of responsibility"; "that's a load off my mind"
+26463,burden_of_proof,the duty of proving a disputed charge
+26464,burdensomeness heaviness onerousness oppressiveness,unwelcome burdensome difficulty
+26465,burdock clotbur,any of several erect biennial herbs of temperate Eurasia having stout taproots and producing burs
+26466,bureau_de_change,(French) an establishment where you can exchange foreign money
+26467,bureaucracy,a government that is administered primarily by bureaus that are staffed with nonelective officials
+26468,bureaucracy,any organization in which action is obstructed by insistence on unnecessary procedures and red tape
+26469,bureaucracy bureaucratism,nonelective government officials
+26470,bureaucrat administrative_official,an official of a bureaucracy
+26471,bureaucratic_procedure red_tape,needlessly time-consuming procedure
+26472,burette buret,measuring instrument consisting of a graduated glass tube with a tap at the bottom; used for titration
+26473,burg,colloquial American term for a town; "I've lived in this burg all my life"
+26474,burgess burgher,a citizen of an English borough
+26475,burgh,a borough in Scotland
+26476,burglar,a thief who enters a building with intent to steal
+26477,burglar_alarm,a loud warning signal produced by a burglar alarm; "they could hear the burglar alarm a mile away"
+26478,burglar_alarm,a warning device that is tripped off by the occurrence of a burglary
+26479,burglary,entering a building unlawfully with intent to commit a felony or to steal valuable property
+26480,burgomaster,a mayor of a municipality in Germany or Holland or Flanders or Austria
+26481,burgoo,a gathering at which burgoo stew is served
+26482,burgoo,thick spicy stew of whatever meat and whatever vegetables are available; southern United States
+26483,burgrass bur_grass,a grass of the genus Cenchrus
+26484,burgrave,a nobleman ruling a German castle and surrounding grounds by hereditary right
+26485,burgrave,the military governor of a German town in the 12th and 13th centuries
+26486,burgundy,a dark purplish-red to blackish-red color
+26487,burial entombment inhumation interment sepulture,the ritual placing of a corpse in a grave
+26488,burial_chamber sepulcher sepulchre sepulture,a chamber that is used as a grave
+26489,burial_garment,cloth used to cover a corpse in preparation for burial
+26490,burial_mound grave_mound barrow tumulus,(archeology) a heap of earth placed over prehistoric tombs
+26491,burin,a chisel of tempered steel with a sharp point; used for engraving
+26492,burl,the wood cut from a tree burl or outgrowth; often used decoratively in veneer
+26493,burl,a large rounded outgrowth on the trunk or branch of a tree
+26494,burlap gunny,coarse jute fabric
+26495,burlesque,a theatrical entertainment of broad and earthy humor; consists of comic skits and short turns (and sometimes striptease)
+26496,burn,an injury caused by exposure to heat or chemicals or radiation
+26497,burn,damage inflicted by fire
+26498,burn burn_mark,a place or area that has been burned (especially on a person's body)
+26499,burn burning,pain that feels hot as if it were on fire
+26500,burn_bag,a bag into which secret documents are placed before being burned
+26501,burn_center,a center where patients with severe burns can be treated
+26502,burn_plant Aloe_vera,very short-stemmed plant with thick leaves with soothing mucilaginous juice; leaves develop spiny margins with maturity; native to Mediterranean region; grown widely in tropics and as houseplants
+26503,burner,the heating elements of a stove or range on which pots and pans are placed for cooking; "the electric range had one large burner and three smaller one"
+26504,burner,an apparatus for burning fuel (or refuse); "a diesel engine is an oil burner"
+26505,burning,a form of torture in which cigarettes or cigars or other hot implements are used to burn the victim's skin
+26506,burning burning_at_the_stake,execution by fire
+26507,burning combustion,the act of burning something; "the burning of leaves was prohibited by a town ordinance"
+26508,burning_bush,(Old Testament) the bush that burned without being consumed and from which God spoke to Moses
+26509,burnous burnoose burnouse,a long hooded cloak woven of wool in one piece; worn by Arabs and Moors
+26510,burnt_sienna,a reddish-brown pigment produced by roasting sienna
+26511,burnt_umber,dark brown pigment obtained by heating umber
+26512,burnup,a high-speed motorcycle race on a public road
+26513,burnup,the amount of fuel used up (as in a nuclear reactor)
+26514,burp_gun machine_pistol,a fully automatic pistol; a small submachine gun
+26515,burqa burka,a loose garment (usually with veiled holes for the eyes) worn by Muslim women especially in India and Pakistan; "the Taliban forced all women to wear the burqa"
+26516,burr,rotary file for smoothing rough edges left on a workpiece
+26517,burr,rough projection left on a workpiece after drilling or cutting
+26518,burrawong Macrozamia_communis Macrozamia_spiralis,large attractive palmlike evergreen cycad of New South Wales
+26519,burrfish,any of several fishes having rigid flattened spines
+26520,burrito,a flour tortilla folded around a filling
+26521,burro,small donkey used as a pack animal
+26522,burrow tunnel,a hole made by an animal, usually for shelter
+26523,bursa,a small fluid-filled sac located between movable parts of the body especially at joints
+26524,bursa_omentalis omental_bursa lesser_peritoneal_cavity,an isolated part of the peritoneal cavity that is dorsal to the stomach
+26525,bursar,the treasurer at a college or university
+26526,bursary,the treasury of a public institution or religious order
+26527,bursitis,inflammation of a bursa; frequently in the shoulder
+26528,burst fit,a sudden flurry of activity (often for no obvious reason); "a burst of applause"; "a fit of housecleaning"
+26529,burthen,a variant of `burden'
+26530,burweed_marsh_elder false_ragweed Iva_xanthifolia,tall annual marsh elder common in moist rich soil in central North America that can cause contact dermatitis; produces much pollen that is a major cause of hay fever
+26531,burying burial,concealing something under the ground
+26532,bus autobus coach charabanc double-decker jitney motorbus motorcoach omnibus passenger_vehicle,a vehicle carrying many passengers; used for public transport; "he always rode the bus to work"
+26533,bus jalopy heap,a car that is old and unreliable; "the fenders had fallen off that old bus"
+26534,bus_company bus_service,a public utility providing local transportation
+26535,bus_fare carfare,the fare charged for riding a bus or streetcar
+26536,bus_lane,a traffic lane intended for buses only
+26537,bus_line,an organization responsible for operating a bus transportation system
+26538,bus_route,the route regularly followed by a passenger bus
+26539,bus_stop,a place on a bus route where buses stop to discharge and take on passengers
+26540,bus_terminal bus_depot bus_station coach_station,a terminal that serves bus passengers
+26541,bus_ticket,a ticket good for a ride on a bus
+26542,bus_topology bus,the topology of a network whose components are connected by a busbar
+26543,bus_traffic,buses coming and going
+26544,busbar bus,an electrical conductor that makes a common connection between several circuits; "the busbar in this computer can transmit data either way between any two components of the system"
+26545,busboy waiter's_assistant,a restaurant attendant who sets tables and assists waiters and clears away dirty dishes
+26546,bush,a large wilderness area
+26547,bush_bean,a bean plant whose bushy growth needs no supports
+26548,bush_clover lespedeza,shrubby or herbaceous plants widely used for forage, soil improvement, and especially hay in southern United States
+26549,bush_hibiscus Radyera_farragei Hibiscus_farragei,southern and western Australian shrub with unlobed or shallowly lobed toothed leaves and purple flowers; sometimes placed in genus Hibiscus
+26550,bush_honeysuckle Diervilla_lonicera,spreading bush of northeastern United States having small clusters of fragrant green and yellow flowers
+26551,bush_honeysuckle Diervilla_sessilifolia,bush honeysuckle of southeastern United States having large crowded clusters of sulfur-yellow flowers
+26552,bush_honeysuckle Tartarian_honeysuckle Lonicera_tatarica,a honeysuckle shrub of southern Russia to central Asia
+26553,bush_jacket,a loose fitting jacket; resembles a shirt with four patch pockets and a belt
+26554,bush_nasturtium Tropaeolum_minus,annual with deep yellow flowers smaller than the common garden nasturtium
+26555,bush_pea,any of various plants of the genus Thermopsis having trifoliate leaves and yellow or purple racemose flowers
+26556,bush_poppy tree_poppy,evergreen shrub of southwestern United States and Mexico often cultivated for its fragrant golden yellow flowers
+26557,bush_shrike,an African shrike
+26558,bush_vetch Vicia_sepium,European purple-flowered with slender stems; occurs as a weed in hedges
+26559,bush_violet browallia,any of several herbs of the genus Browallia cultivated for their blue or violet or white flowers
+26560,bush_willow Combretum_appiculatum,small deciduous tree of the Transvaal having spikes of yellow flowers
+26561,bush_willow Combretum_erythrophyllum,small South African tree having creamy yellow fragrant flowers usually growing on stream banks
+26562,bushbuck guib Tragelaphus_scriptus,antelope with white markings like a harness and twisted horns
+26563,bushel,a British imperial capacity measure (liquid or dry) equal to 4 pecks
+26564,bushel,a United States dry measure equal to 4 pecks or 2152.42 cubic inches
+26565,bushel_basket,a basket large enough to hold a bushel
+26566,bushing,an insulating liner in an opening through which conductors pass
+26567,bushing cylindrical_lining,a cylindrical metal lining used to reduce friction
+26568,bushman,a dweller in the Australian bush country
+26569,bushman's_poison ordeal_tree Acocanthera_oppositifolia Acocanthera_venenata,evergreen shrub or tree of South Africa
+26570,bushtit bush_tit,active grey titmice of western North America
+26571,bushwhacker,a Confederate guerrilla during the American Civil War
+26572,bushy_aster Aster_dumosus,stiff perennial of the eastern United States having small linear leaves and numerous tiny white flower heads
+26573,business,an immediate objective; "gossip was the main business of the evening"
+26574,business,a rightful concern or responsibility; "it's none of your business"; "mind your own business"
+26575,business,the volume of commercial activity; "business is good today"; "show me where the business was today"
+26576,business business_sector,business concerns collectively; "Government and business could not agree"
+26577,business concern business_concern business_organization business_organisation,a commercial or industrial enterprise and the people who constitute it; "he bought his brother's business"; "a small mom-and-pop business"; "a racially integrated business concern"
+26578,business stage_business byplay,incidental activity performed by an actor for dramatic effect; "his business with the cane was hilarious"
+26579,business_activity commercial_activity,activity undertaken as part of a commercial enterprise
+26580,business_address,the address at which a business is located
+26581,business_agent,an agent who handles business affairs for another; especially one who deals with employers
+26582,business_card,a card on which are printed the person's name and business affiliation
+26583,business_college,a school for teaching the clerical aspects of business and commerce
+26584,business_cycle trade_cycle,recurring fluctuations in economic activity consisting of recession and recovery and growth and decline
+26585,business_deduction,tax write-off for expenses of doing business
+26586,business_department,a division of a business firm
+26587,business_district downtown,the central area or commercial center of a town or city; "the heart of Birmingham's downtown"
+26588,business_editor,the newspaper editor responsible for business news
+26589,business_expense trade_expense,ordinary and necessary expenses incurred in a taxpayer's business or trade
+26590,business_index,a statistical compilation that provides a context for economic or financial conditions; "this business index is computed relative to the base year of 2005"
+26591,business_interruption_insurance,insurance that provides protection for the loss of profits and continuing fixed expenses resulting from a break in commercial activities due to the occurrence of a peril
+26592,business_letter,a letter dealing with business
+26593,business_life professional_life,a career in industrial or commercial or professional activities
+26594,business_loan commercial_loan,a bank loan granted for the use of a business
+26595,business_lunch,lunch (usually at a restaurant) where business is discussed and the cost is charged as a business expense
+26596,business_news,news about businesses and investments
+26597,business_people businesspeople,people who transact business (especially business executives)
+26598,business_relation,a relation between different business enterprises
+26599,business_school,a graduate school offering study leading to a degree of Master in Business Administration
+26600,business_suit,a suit of clothes traditionally worn by businessmen
+26601,business_traveler,a traveler whose expenses are paid by the business he works for
+26602,businessman man_of_affairs,a person engaged in commercial or industrial business (especially an owner or executive)
+26603,businessmen business_community,the body of individuals who manage businesses
+26604,businessperson bourgeois,a capitalist who engages in industrial commercial enterprise
+26605,businesswoman,a female businessperson
+26606,busker,a person who entertains people for money in public places (as by singing or dancing), usually while asking for money
+26607,buskin combat_boot desert_boot half_boot top_boot,a boot reaching halfway up to the knee
+26608,busload,the quantity of cargo or the number of passengers that a bus can carry
+26609,busman bus_driver,someone who drives a bus
+26610,busman's_holiday,a holiday where you do the same things you do at work
+26611,buspirone BuSpar,a drug (trade name BuSpar) designed specifically for anxiety
+26612,bust,a sculpture of the head and shoulders of a person
+26613,bust tear binge bout,an occasion for excessive eating or drinking; "they went on a bust that lasted three days"
+26614,bust-up,a serious quarrel (especially one that ends a friendship)
+26615,bust-up_takeover,a leveraged buyout in which the target company's assets are sold to repay the loan that financed the takeover
+26616,bustard,large heavy-bodied chiefly terrestrial game bird capable of powerful swift flight; classified with wading birds but frequents grassy steppes
+26617,buster,a robust child
+26618,buster,a person (or thing) that breaks up or overpowers something; "dam buster"; "sanction buster"; "crime buster"
+26619,buster bronco_buster broncobuster,a person who breaks horses
+26620,bustier,a close-fitting and strapless top without sleeves that is worn by women either as lingerie or for evening dress
+26621,bustle,a framework worn at the back below the waist for giving fullness to a woman's skirt
+26622,bustle hustle flurry ado fuss stir,a rapid active commotion
+26623,busybody nosy-parker nosey-parker quidnunc,a person who meddles in the affairs of others
+26624,busyness hum,the state of being or appearing to be actively engaged in an activity; "they manifested all the busyness of a pack of beavers"; "there is a constant hum of military preparation"
+26625,busywork make-work,active work of little value; "while he was waiting he filled the days with busywork"
+26626,butacaine butacaine_sulfate,a white crystalline ester that is applied to mucous membranes as a local anesthetic
+26627,butadiene,a gaseous hydrocarbon C4H6; used in making synthetic rubbers
+26628,butane,occurs in natural gas; used in the manufacture of rubber and fuels
+26629,butanone methyl_ethyl_ketone,colorless soluble flammable liquid ketone used as a solvent for resins and as a paint remover and in lacquers and cements and adhesives and cleaning fluids and celluloid
+26630,butch dike dyke,(slang) offensive term for a lesbian who is noticeably masculine
+26631,butcher,a brutal indiscriminate murderer
+26632,butcher meatman,a retailer of meat
+26633,butcher slaughterer,a person who slaughters or dresses meat for market
+26634,butcher's_broom Ruscus_aculeatus,shrub with stiff flattened stems resembling leaves (cladophylls); used for making brooms
+26635,butcher_board butcher_block,a thick wooden slab formed by bonding together thick laminated strips of unpainted hardwood
+26636,butcher_knife,a large sharp knife for cutting or trimming meat
+26637,butcher_paper,a strong wrapping paper that resists penetration by blood or meat fluids
+26638,butcher_shop meat_market,a shop in which meat and poultry (and sometimes fish) are sold
+26639,butcherbird,shrikes that impale their prey on thorns
+26640,butcherbird,large carnivorous Australian bird with the shrike-like habit of impaling prey on thorns
+26641,butchery butchering,the business of a butcher
+26642,buteonine,any hawk of the genus Buteo
+26643,butler pantryman,a manservant (usually the head servant of a household) who has charge of wines and the table
+26644,butt,the part of a plant from which the roots spring or the part of a stalk or trunk nearest the roots
+26645,butt,a large cask (especially one holding a volume equivalent to 2 hogsheads or 126 gallons)
+26646,butt butt_end,thick end of the handle
+26647,butt goat laughingstock stooge,a victim of ridicule or pranks
+26648,butt stub,the small unused part of something (especially the end of a cigarette that is left after smoking)
+26649,butt_hinge,a hinge mortised flush into the edge of the door and jamb
+26650,butt_joint butt,a joint made by fastening ends together without overlapping
+26651,butt_shaft,a blunt arrow without a barb; an arrow used for target practice
+26652,butt_weld butt-weld,a butt joint that is welded
+26653,butt_welding butt-welding,creating a butt joint by welding
+26654,butte,a hill that rises abruptly from the surrounding region; has a flat top and sloping sides
+26655,butter,a fighter who strikes the opponent with his head
+26656,butter,an edible emulsion of fat globules made by churning milk or cream; for cooking and table use
+26657,butter_cookie,cookie containing much butter
+26658,butter_dish,a small dish (often with a cover) for holding butter at the table
+26659,butter_knife,a small knife with a dull blade; for cutting or spreading butter
+26660,butterbur bog_rhubarb Petasites_hybridus Petasites_vulgaris,small Eurasian herb having broad leaves and lilac-pink rayless flowers; found in moist areas
+26661,buttercrunch,lettuce with delicate and relatively crunchy leaves
+26662,buttercup butterflower butter-flower crowfoot goldcup kingcup,any of various plants of the genus Ranunculus
+26663,buttercup_squash,plant bearing somewhat drum-shaped fruit having dark green rind with greyish markings
+26664,buttercup_squash,drum-shaped squash with dark green rind marked in silver or grey
+26665,butterfat,the fatty substance of milk from which butter is made
+26666,butterfingers,someone who drops things (especially one who cannot catch a ball)
+26667,butterfish,any of numerous small flat Atlantic food fish having smooth skin
+26668,butterfish stromateid_fish stromateid,small marine fish with a short compressed body and feeble spines
+26669,butterfly,diurnal insect typically having a slender body with knobbed antennae and broad colorful wings
+26670,butterfly butterfly_stroke,a swimming stroke in which the arms are thrown forward together out of the water while the feet kick up and down
+26671,butterfly_bush buddleia,tropical shrub having clusters of white or violet or yellow flowers
+26672,butterfly_effect,the phenomenon whereby a small change at one place in a complex system can have large effects elsewhere, e.g., a butterfly flapping its wings in Rio de Janeiro might change the weather in Chicago
+26673,butterfly_fish,small usually brilliantly colored tropical marine fishes having narrow deep bodies with large broad fins; found worldwide
+26674,butterfly_flower Bauhinia_monandra,shrub or small tree of Dutch Guiana having clusters of pink flowers streaked with purple
+26675,butterfly_flower poor_man's_orchid schizanthus,any plant of the genus Schizanthus having finely divided leaves and showy variegated flowers
+26676,butterfly_orchid,any orchid of the genus Psychopsis: spectacular large tiger-striped orchids
+26677,butterfly_orchid Encyclia_tampensis Epidendrum_tampense,orchid of Florida and the Bahamas having showy brightly colored flowers; sometimes placed in genus Epidendrum
+26678,butterfly_orchid butterfly_orchis Epidendrum_venosum Encyclia_venosa,Mexican epiphytic orchid having pale green or yellow-green flowers with white purple-veined lip
+26679,butterfly_orchid butterfly_orchis Orchis_papilionaceae,Mediterranean orchid having usually purple flowers with a fan-shaped spotted or striped rose-red lip
+26680,butterfly_pea Centrosema_virginianum,large-flowered weakly twining or prostrate vine of New Jersey to tropical eastern North America, sometimes cultivated for its purple and white flowers
+26681,butterfly_pea Clitoria_mariana,large-flowered wild twining vine of southeastern and central United States having pale blue flowers
+26682,butterfly_plant Phalaenopsis_amabilis,orchid having large elliptic to obovate fleshy leaves and fragrant pink-and-white flowers dotted with red
+26683,butterfly_ray,a stingray with a short tail and a broad fin
+26684,butterfly_valve,a valve in a carburetor that consists of a disc that turns and acts as a throttle
+26685,butterfly_weed orange_milkweed chigger_flower chiggerflower pleurisy_root tuber_root Indian_paintbrush Asclepias_tuberosa,erect perennial of eastern and southern United States having showy orange flowers
+26686,butterhead_lettuce,lettuce with relatively soft leaves in a loose head; easily broken or bruised
+26687,buttermilk,residue from making butter from sour raw milk; or pasteurized milk curdled by adding a culture
+26688,buttermilk_biscuit soda_biscuit,very tender biscuit partially leavened with buttermilk and soda
+26689,buttermilk_pancake,a pancake made with buttermilk
+26690,butternut,oily egg-shaped nut of an American tree of the walnut family
+26691,butternut butternut_tree white_walnut Juglans_cinerea,North American walnut tree having light-brown wood and edible nuts; source of a light-brown dye
+26692,butternut_squash,buff-colored squash with a long usually straight neck and sweet orange flesh
+26693,butternut_squash Cucurbita_maxima,plant bearing buff-colored squash having somewhat bottle-shaped fruit with fine-textured edible flesh and a smooth thin rind
+26694,butterscotch,a hard brittle candy made with butter and brown sugar
+26695,butterweed,any of several yellow-flowered plants of the genus Packera; often placed in genus Senecio
+26696,butterweed ragwort Senecio_glabellus,American ragwort with yellow flowers
+26697,butterwort,any of numerous carnivorous bog plants of the genus Pinguicula having showy purple or yellow or white flowers and a rosette of basal leaves coated with a sticky secretion to trap small insects
+26698,buttery,a teashop where students in British universities can purchase light meals
+26699,buttinsky,a meddler who tends to butt in
+26700,buttock cheek,either of the two large fleshy masses of muscular tissue that form the human rump
+26701,buttocks nates arse butt backside bum buns can fundament hindquarters hind_end keister posterior prat rear rear_end rump stern seat tail tail_end tooshie tush bottom behind derriere fanny ass,the fleshy part of the human body that you sit on; "he deserves a good kick in the butt"; "are you going to sit on your fanny and do nothing?"
+26702,button,any of various plant parts that resemble buttons
+26703,button,a round flat badge displaying information and suitable for pinning onto a garment; "they passed out campaign buttons for their candidate"
+26704,button,any artifact that resembles a button
+26705,button,a round fastener sewn to shirts and coats etc to fit through buttonholes
+26706,button_accordion,an accordion with buttons rather than keys
+26707,button_fern Pellaea_rotundifolia,fern of New Zealand and Australia having trailing fronds with dark green buttonlike leaflets
+26708,button_fern Tectaria_cicutaria,Jamaican fern having round buttonlike bulbils
+26709,button_pink Dianthus_latifolius,much-branched pink with flowers in clusters; closely related to sweet William
+26710,button_quail button-quail bustard_quail hemipode,small quail-like terrestrial bird of southern Eurasia and northern Africa that lacks a hind toe; classified with wading birds but inhabits grassy plains
+26711,button_snakeroot Eryngium_aquaticum,coarse prickly perennial eryngo with aromatic roots; southeastern United States; often confused with rattlesnake master
+26712,button_tree button_mangrove Conocarpus_erectus,evergreen tree or shrub with fruit resembling buttons and yielding heavy hard compact wood
+26713,buttonhole button_hole,a hole through which buttons are pushed
+26714,buttonhole_stitch,a reinforcing looped stitch for edges, as around a buttonhole
+26715,buttonhook,a hook for pulling a button through a buttonhole
+26716,buttress buttressing,a support usually of stone or brick; supports the wall of a building
+26717,butty,a sandwich; "a bacon butty"
+26718,butut butat,100 bututs equal 1 dalasi in Gambia
+26719,butyl,a hydrocarbon radical (C4H9)
+26720,butyl_alcohol butanol,a flammable alcohol derived from butanes and used for solvents
+26721,butyl_nitrite isobutyl_nitrite,a colorless pungent liquid sometimes used as a stimulant drug by drug abusers
+26722,butyl_rubber,synthetic rubber made by polymerizing isobutylene
+26723,butylene butene,any of three isomeric hydrocarbons C4H8; all used in making synthetic rubbers
+26724,butyric_acid butanoic_acid,an unpleasant smelling fatty acid found especially in butter
+26725,butyrin,any of three glycerides of butyric acid
+26726,buxomness,the bodily property of being attractively plump and vigorous and (of women) full-bosomed
+26727,buy-and-bust_operation,an undercover operation by narcotics detectives to catch unsuspecting drug dealers
+26728,buyer purchaser emptor vendee,a person who buys
+26729,buyer's_market buyers'_market soft_market,a market in which more people want to sell than want to buy
+26730,buying purchasing,the act of buying; "buying and selling fill their days"; "shrewd purchasing requires considerable knowledge"
+26731,buyout,acquisition of a company by purchasing a controlling percentage of its stock
+26732,buyout_bid,a bid to buy all of a person's holdings
+26733,buzz,a confusion of activity and gossip; "the buzz of excitement was so great that a formal denial was issued"
+26734,buzz bombilation bombination,sound of rapid vibration; "the buzz of a bumble bee"
+26735,buzz_bomb robot_bomb flying_bomb doodlebug V-1,a small jet-propelled winged missile that carries a bomb
+26736,buzzard Buteo_buteo,the common European short-winged hawk
+26737,buzzard turkey_buzzard turkey_vulture Cathartes_aura,a New World vulture that is common in South America and Central America and the southern United States
+26738,buzzer,a signaling device that makes a buzzing sound
+26739,buzzword cant,stock phrases that have become nonsense through endless repetition
+26740,by-and-by,an indefinite time in the future; "he'll get around to it in the sweet by-and-by"
+26741,by-catch bycatch,unwanted marine creatures that are caught in the nets while fishing for another species; "thousands of dolphins and porpoises and whales are killed as part of the by-catch each year"
+26742,by-election bye-election,a special election between regular elections
+26743,by-line credit_line,a line giving the name of the writer of a story or article
+26744,by-product byproduct,a secondary and sometimes unexpected consequence
+26745,by-product byproduct spin-off,a product made during the manufacture of something else
+26746,bye pass,an automatic advance to the next round in a tournament without playing an opponent; "he had a bye in the first round"
+26747,bygone water_under_the_bridge,past events to be put aside; "let bygones be bygones"
+26748,bylaw,a rule adopted by an organization in order to regulate its own affairs and the behavior of its members
+26749,bypass,a surgically created shunt (usually around a damaged part)
+26750,bypass_condenser bypass_capacitor,a capacitor that provides low impedance over certain (high) frequencies
+26751,byssus beard,tuft of strong filaments by which e.g. a mussel makes itself fast to a fixed surface
+26752,bystander,a nonparticipant spectator
+26753,byte,a sequence of 8 bits (enough to represent one character of alphanumeric data) processed as a single unit of information
+26754,byway bypath byroad,a side road little traveled (as in the countryside)
+26755,cab,a compartment at the front of a motor vehicle or locomotive where driver sits
+26756,cab cabriolet,small two-wheeled horse-drawn carriage; with two seats and a folding hood
+26757,cab hack taxi taxicab,a car driven by a person whose job is to take passengers where they want to go in exchange for money
+26758,cab_fare taxi_fare,the fare charged for riding in a taxicab
+26759,cabal faction junto camarilla,a clique (often secret) that seeks power usually through intrigue
+26760,cabala cabbala cabbalah kabala kabbala kabbalah qabala qabalah,an esoteric or occult matter resembling the Kabbalah that is traditionally secret
+26761,cabalist,a member of a cabal
+26762,cabalist kabbalist,an expert who is highly skilled in obscure or difficult or esoteric matters
+26763,cabana,a small tent used as a dressing room beside the sea or a swimming pool
+26764,cabaret floorshow floor_show,a series of acts at a night club
+26765,cabaret nightclub night_club club nightspot,a spot that is open late at night and that provides entertainment (as singers or dancers) as well as dancing and food and drink; "don't expect a good meal at a cabaret"; "the gossip columnist got his information by visiting nightclubs every night"; "he played the drums at a jazz club"
+26766,cabbage chou,any of various types of cabbage
+26767,cabbage cultivated_cabbage Brassica_oleracea,any of various cultivars of the genus Brassica oleracea grown for their edible leaves or flowers
+26768,cabbage_bark cabbage-bark_tree cabbage_tree Andira_inermis,tree with shaggy unpleasant-smelling toxic bark and yielding strong durable wood; bark and seeds used as a purgative and vermifuge and narcotic
+26769,cabbage_butterfly,white butterfly whose larvae (cabbageworms) feed on cabbage
+26770,cabbage_palm Euterpe_oleracea,Brazilian palm of genus Euterpe whose leaf buds are eaten like cabbage when young
+26771,cabbage_palm Roystonea_oleracea,West Indian palm with leaf buds that are edible when young
+26772,cabbage_palm cabbage_tree Livistona_australis,Australian palm with leaf buds that are edible when young
+26773,cabbage_palmetto cabbage_palm Sabal_palmetto,low-growing fan-leaved palm of coastal southern United States having edible leaf buds
+26774,cabbage_tree grass_tree Cordyline_australis,elegant tree having either a single trunk or a branching trunk each with terminal clusters of long narrow leaves and large panicles of fragrant white, yellow or red flowers; New Zealand
+26775,cabbageworm Pieris_rapae,toxic green larva of a cabbage butterfly
+26776,caber,a heavy wooden pole (such as the trunk of a young fir) that is tossed as a test of strength (in the Highlands of northern Scotland)
+26777,cabin,a small house built of wood; usually in a wooded area
+26778,cabin,small room on a ship or boat where people sleep
+26779,cabin,the enclosed compartment of an aircraft or spacecraft where passengers are carried
+26780,cabin_boy,a young man acting as a servant on a ship
+26781,cabin_car caboose,a car on a freight train for use of the train crew; usually the last car on the train
+26782,cabin_class second_class economy_class,a class of accommodations on a ship or train or plane that are less expensive than first class accommodations
+26783,cabin_cruiser cruiser pleasure_boat pleasure_craft,a large motorboat that has a cabin and plumbing and other conveniences necessary for living on board
+26784,cabin_liner,a liner with cabins for passengers
+26785,cabinet,persons appointed by a head of state to head executive departments of government and act as official advisers
+26786,cabinet,a piece of furniture resembling a cupboard with doors and shelves and drawers; for storage or display
+26787,cabinet console,housing for electronic instruments, as radio or television
+26788,cabinet locker storage_locker,a storage compartment for clothes and valuables; usually it has a lock
+26789,cabinet_minister,a person who is a member of the cabinet
+26790,cabinet_minister,the job of a senior minister who is a member of the cabinet
+26791,cabinet_wood,moderately dense wood used for cabinetwork; "teak and other heavy cabinet wood"
+26792,cabinetmaker furniture_maker,a woodworker who specializes in making furniture
+26793,cabinetmaking joinery,the craft of a joiner
+26794,cabinetwork,woodwork finished by hand by a cabinetmaker
+26795,cabinetwork cabinetry,the craft of making furniture (especially furniture of high quality)
+26796,cable,a very strong thick rope made of twisted hemp or steel wire
+26797,cable cable_length cable's_length,a nautical unit of depth
+26798,cable cable_television cable_system cable_television_service,a television system that transmits over cables
+26799,cable cablegram overseas_telegram,a telegram sent abroad
+26800,cable line transmission_line,a conductor for transmitting electrical or optical signals or electric power
+26801,cable_car car,a conveyance for passengers or freight on a cable railway; "they took a cable car to the top of the mountain"
+26802,cable_railway funicular funicular_railway,a railway up the side of a mountain pulled by a moving cable and having counterbalancing ascending and descending cars
+26803,cable_television cable,television that is transmitted over cable directly to the receiver
+26804,cabochon,a highly polished gem that is cut convexly but without facets
+26805,cabotage,the exclusive right of a country to control the air traffic within its borders
+26806,cabotage,navigation in coastal waters
+26807,cabstand taxistand taxi_rank,a place where taxis park while awaiting customers; "in England the place where taxis wait to be hired is called a `taxi rank'"
+26808,cacao cacao_tree chocolate_tree Theobroma_cacao,tropical American tree producing cacao beans
+26809,cacao_bean cocoa_bean,seed of the cacao tree; ground roasted beans are source of chocolate
+26810,cache,a hidden storage space (for money or provisions or weapons)
+26811,cache memory_cache,(computer science) RAM memory that is set aside as a specialized buffer storage that is continually updated; used to optimize data transfers between system elements with different characteristics
+26812,cachet,a seal on a letter
+26813,cachet lettre_de_cachet,a warrant formerly issued by a French king who could warrant imprisonment or death in a signed letter under his seal
+26814,cachet seal seal_of_approval,an indication of approved or superior status
+26815,cachexia cachexy wasting,any general reduction in vitality and strength of body and mind resulting from a debilitating chronic disease
+26816,cachinnation,loud convulsive laughter
+26817,cachou,a scented lozenge used to sweeten the breath (e.g. to conceal the odor of tobacco)
+26818,cacique cazique,black-and-red or black-and-yellow orioles of the American tropics
+26819,cackle,the sound made by a hen after laying an egg
+26820,cackle,a loud laugh suggestive of a hen's cackle
+26821,cackler,a hen that has just laid an egg and emits a shrill squawk
+26822,cacodemon cacodaemon,an evil spirit
+26823,cacodyl cacodyl_group cacodyl_radical arsenic_group,the univalent group derived from arsine
+26824,cacodyl tetramethyldiarsine,a poisonous oily liquid with a garlicky odor composed of 2 cacodyl groups; undergoes spontaneous combustion in dry air
+26825,cacogenesis,inability to produce hybrids that are both viable and fertile
+26826,cacophony,loud confusing disagreeable sounds
+26827,cactus,any succulent plant of the family Cactaceae native chiefly to arid regions of the New World and usually having spines
+26828,cactus_mouse Peromyscus_eremicus,burrowing mouse of desert areas of southwestern United States
+26829,cactus_wren,large harsh-voiced American wren of arid regions of the United States southwest and Mexico
+26830,cad bounder blackguard dog hound heel,someone who is morally reprehensible; "you dirty dog"
+26831,cadaster cadastre,a public register showing the details of ownership and value of land; made for the purpose of taxation
+26832,cadaver corpse stiff clay remains,the dead body of a human being; "the cadaver was intended for dissection"; "the end of the police search was the discovery of a corpse"; "the murderer confessed that he threw the stiff in the river"; "honor comes to bless the turf that wraps their clay"
+26833,cadaverine,a colorless toxic ptomaine with an unpleasant odor formed during the putrefaction of animal tissue
+26834,caddie golf_caddie,an attendant who carries the golf clubs for a player
+26835,caddis_fly caddis-fly caddice_fly caddice-fly,small moth-like insect having two pairs of hairy membranous wings and aquatic larvae
+26836,caddisworm strawworm,larva of the caddis fly; constructs a case of silk covered with sand or plant debris
+26837,caddy tea_caddy,a can for storing tea
+26838,cadence,the close of a musical section
+26839,cadence cadency,a recurrent rhythmical series
+26840,cadenza,a brilliant solo passage occurring near the end of a piece of music
+26841,cadet plebe,a military trainee (as at a military academy)
+26842,cadetship,the position of cadet
+26843,cadmium Cd atomic_number_48,a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores
+26844,cadmium_orange,orange-hued cadmium yellow pigment
+26845,cadmium_sulfide,a yellow sulfide used chiefly as a pigment
+26846,cadmium_yellow,pigment of cadmium sulfide and barium sulfate varying in hue from lemon yellow to orange
+26847,cadmium_yellow_pale,pale-hued cadmium yellow pigment
+26848,cadre,a nucleus of military personnel capable of expansion
+26849,caduceus,an insignia used by the medical profession; modeled after the staff of Hermes
+26850,caecilian blindworm,any of the small slender limbless burrowing wormlike amphibians of the order Gymnophiona; inhabit moist soil in tropical regions
+26851,caesium_clock,an atomic clock based on the energy difference between two states of the caesium nucleus in a magnetic field
+26852,caesura,a pause or interruption (as in a conversation); "after an ominous caesura the preacher continued"
+26853,caesura,a break or pause (usually for sense) in the middle of a verse line
+26854,cafe coffeehouse coffee_shop coffee_bar,a small restaurant where drinks and snacks are sold
+26855,cafe_au_lait,equal parts of coffee and hot milk
+26856,cafe_noir demitasse,small cup of strong black coffee without milk or cream
+26857,cafe_royale coffee_royal,black coffee with Cognac and lemon peel and sugar
+26858,cafeteria,a restaurant where you serve yourself and pay a cashier
+26859,cafeteria_facility,(usually plural) facilities for providing food for employees or visitors
+26860,cafeteria_tray,a tray for carrying your food in a cafeteria
+26861,caff,informal British term for a cafe
+26862,caffe_latte latte,strong espresso coffee with a topping of frothed steamed milk
+26863,caffein_addiction,an addiction to caffein
+26864,caffeine caffein,a bitter alkaloid found in coffee and tea that is responsible for their stimulating effects
+26865,caffeine_addict caffein_addict,someone addicted to caffeine
+26866,caffeinism caffeine_intoxication,poisoning resulting from excessive intake of caffeine containing products
+26867,caftan kaftan,a woman's dress style that imitates the caftan cloaks worn by men in the Near East
+26868,caftan kaftan,a (cotton or silk) cloak with full sleeves and sash reaching down to the ankles; worn by men in the Levant
+26869,cage,something that restricts freedom as a cage restricts movement
+26870,cage,the net that is the goal in ice hockey
+26871,cage coop,an enclosure made or wire or metal bars in which birds or animals can be kept
+26872,cagoule,lightweight parka; waterproof
+26873,cahoot,collusion; "in cahoots with"
+26874,caiman cayman,a semiaquatic reptile of Central and South America that resembles an alligator but has a more heavily armored belly
+26875,caiman_lizard,crocodile-like lizard of South America having powerful jaws for crushing snails and mussels
+26876,cairn,a mound of stones piled up as a memorial or to mark a boundary or path
+26877,cairn cairn_terrier,small rough-haired breed of terrier from Scotland
+26878,cairngorm smoky_quartz,a smoky yellow or brown quartz
+26879,caisson,a two-wheeled military vehicle carrying artillery ammunition
+26880,caisson ammunition_chest,a chest to hold ammunition
+26881,caisson pneumatic_caisson cofferdam,large watertight chamber used for construction under water
+26882,caitiff,a cowardly and despicable person
+26883,cajan_pea pigeon_pea dahl,small highly nutritious seed of the tropical pigeon-pea plant
+26884,cake,baked goods made from or based on a mixture of flour, sugar, eggs, and fat
+26885,cake bar,a block of solid substance (such as soap or wax); "a bar of chocolate"
+26886,cake_mix,a commercial mix for making a cake
+26887,cakewalk,a strutting dance based on a march; was performed in minstrel shows; originated as a competition among Black dancers to win a cake
+26888,cakewalk,an easy accomplishment; "winning the tournament was a cakewalk for him"; "invading Iraq won't be a cakewalk"
+26889,calaba Santa_Maria_tree Calophyllum_calaba,West Indian tree having racemes of fragrant white flowers and yielding a durable timber and resinous juice
+26890,calabar-bean_vine Physostigma_venenosum,tropical African woody vine yielding calabar beans
+26891,calabar_bean ordeal_bean,dark brown highly poisonous seed of the calabar-bean vine; source of physostigmine and used in native witchcraft
+26892,calabash,round gourd of the calabash tree
+26893,calabash calabash_pipe,a pipe for smoking; has a curved stem and a large bowl made from a calabash gourd
+26894,calabash calabash_tree Crescentia_cujete,tropical American evergreen that produces large round gourds
+26895,caladenia,any of various orchids of the genus Caladenia
+26896,caladium,any plant of the genus Caladium cultivated for their ornamental foliage variously patterned in white or pink or red
+26897,calamine_lotion,a lotion consisting of a liquid preparation containing calamine; used to treat itching or mild skin irritations
+26898,calamint,perennial aromatic herbs growing in hedgerows or scrub or open woodlands from western Europe to central Asia and in North America
+26899,calamity catastrophe disaster tragedy cataclysm,an event resulting in great loss and misfortune; "the whole city was affected by the irremediable calamity"; "the earthquake was a disaster"
+26900,calamus,any tropical Asian palm of the genus Calamus; light tough stems are a source of rattan canes
+26901,calamus,the aromatic root of the sweet flag used medicinally
+26902,calamus_oil,carcinogenic oil from calamus root used as a perfume
+26903,calanthe,any of various showy orchids of the genus Calanthe having white or yellow or rose-colored flowers and broad leaves folded lengthwise
+26904,calash caleche,a woman's large folded hooped hood; worn in the 18th century
+26905,calash caleche calash_top,the folding hood of a horse-drawn carriage
+26906,calcarine_sulcus calcarine_fissure,a sulcus in the mesial surface of the occipital lobe of the cerebrum
+26907,calceolaria slipperwort,any garden plant of the genus Calceolaria having flowers with large inflated slipper-shaped lower lip
+26908,calceus,a shoe covering the ankle; worn by ancient Romans
+26909,calcification,tissue hardened by deposition of lime salts
+26910,calcification,an inflexible and unchanging state; "the calcification of negotiations"
+26911,calcification,a process that impregnates something with calcium (or calcium salts)
+26912,calcimine,a water-base paint containing zinc oxide and glue and coloring; used as a wash for walls and ceilings
+26913,calcination,the conversion of metals into their oxides as a result of heating to a high temperature
+26914,calcite,a common mineral consisting of crystallized calcium carbonate; a major constituent of limestone
+26915,calcitonin thyrocalcitonin,thyroid hormone that tends to lower the level of calcium in the blood plasma and inhibit resorption of bone
+26916,calcium Ca atomic_number_20,a white metallic element that burns with a brilliant light; the fifth most abundant element in the earth's crust; an important component of most plants and animals
+26917,calcium-cyanamide cyanamide,a compound used as a fertilizer and as a source of nitrogen compounds
+26918,calcium_bicarbonate,a bicarbonate that is a major cause of hard water
+26919,calcium_blocker calcium-channel_blocker,any of a class of drugs that block the flow of the electrolyte calcium (either in nerve cell conduction or smooth muscle contraction of the heart); has been used in the treatment of angina or arrhythmia or hypertension or migraine
+26920,calcium_carbide,a grey salt of calcium (CaC) used in making acetylene
+26921,calcium_carbonate,a salt found in nature as chalk or calcite or aragonite or limestone
+26922,calcium_chloride,a deliquescent salt; used in de-icing and as a drying agent
+26923,calcium_hydride hydrolith,a saltlike binary compound (CaH2) used as a reducing agent and source of hydrogen
+26924,calcium_hydroxide lime slaked_lime hydrated_lime calcium_hydrate caustic_lime lime_hydrate,a caustic substance produced by heating limestone
+26925,calcium_hypochlorite,any hypochlorite of calcium; used as a bleaching agent
+26926,calcium_ion factor_IV,ion of calcium; a factor in the clotting of blood
+26927,calcium_lactate,a white crystalline salt made by the action of lactic acid on calcium carbonate; used in foods (as a baking powder) and given medically as a source of calcium
+26928,calcium_nitrate,a deliquescent salt that is soluble in water; sometimes used as a source of nitrogen in fertilizers
+26929,calcium_oxide quicklime lime calx calcined_lime fluxing_lime unslaked_lime burnt_lime,a white crystalline oxide used in the production of calcium hydroxide
+26930,calcium_phosphate,a phosphate of calcium; a main constituent of animal bones
+26931,calcium_stearate calcium_octadecanoate,an insoluble calcium salt of stearic acid and palmitic acid; it is formed when soap is mixed with water that contains calcium ions and is the scum produced in regions of hard water
+26932,calcium_sulphate calcium_sulfate,a white salt (CaSO4)
+26933,calculation computation computing,the procedure of calculating; determining something by mathematical or logical methods
+26934,calculation computation figuring reckoning,problem solving that involves numbers or quantities
+26935,calculation deliberation,planning something carefully and intentionally; "it was the deliberation of his act that was insulting"
+26936,calculator calculating_machine,a small machine that is used for mathematical calculations; can be mechanical or electronic
+26937,calculator reckoner figurer estimator computer,an expert at calculation (or at operating calculating machines)
+26938,calculus concretion,a hard lump produced by the concretion of mineral salts; found in hollow organs or ducts of the body; "renal calculi can be very painful"
+26939,calculus infinitesimal_calculus,the branch of mathematics that is concerned with limits and with the differentiation and integration of functions
+26940,calculus_of_variations,the calculus of maxima and minima of definite integrals
+26941,caldera,a large crater caused by the violent explosion of a volcano that collapses into a depression
+26942,caldron cauldron,a very large pot that is used for boiling
+26943,calefaction incalescence,the property of being warming
+26944,calendar,a system of timekeeping that defines the beginning and length and divisions of the year
+26945,calendar,a tabular array of the days (usually for one year)
+26946,calendar,a list or register of events (appointments or social events or court cases etc); "I have you on my calendar for next Monday"
+26947,calendar_day civil_day,a day reckoned from midnight to midnight
+26948,calendar_month month,one of the twelve divisions of the calendar year; "he paid the bill last month"
+26949,calendar_year civil_year,the year (reckoned from January 1 to December 31) according to Gregorian calendar
+26950,calender,a machine that smooths or glazes paper or cloth by pressing it between plates or passing it through rollers
+26951,calendula,any of numerous chiefly annual herbs of the genus Calendula widely cultivated for their yellow or orange flowers; often used for medicinal and culinary purposes
+26952,calf,young of various large placental mammals e.g. whale or giraffe or elephant or buffalo
+26953,calf,young of domestic cattle
+26954,calf calfskin,fine leather from the skin of a calf
+26955,calf sura,the muscular back part of the shank
+26956,calf's-foot_jelly,a savory jelly made with gelatin obtained by boiling calves' feet
+26957,calf's_brain,the brain of a calf eaten as meat
+26958,calf's_tongue,the tongue of a calf eaten as meat
+26959,calf_roping,capturing a calf with a lasso and binding its feet
+26960,calibration standardization standardisation,the act of checking or adjusting (by comparison with a standard) the accuracy of a measuring instrument; "the thermometer needed calibration"
+26961,caliche,nitrate-bearing rock or gravel of the sodium nitrate deposits of Chile and Peru
+26962,caliche hardpan,crust or layer of hard subsoil encrusted with calcium-carbonate occurring in arid or semiarid regions
+26963,calico,coarse cloth with a bright print
+26964,californium Cf atomic_number_98,a radioactive transuranic element; discovered by bombarding curium with alpha particles
+26965,caliper calliper,an instrument for measuring the distance between two points (often used in the plural)
+26966,caliph calif kaliph kalif khalif khalifah,the civil and religious leader of a Muslim state considered to be a representative of Allah on earth; "many radical Muslims believe a Khalifah will unite all Islamic lands and people and subjugate the rest of the world"
+26967,caliphate,the territorial jurisdiction of a caliph
+26968,caliphate,the office of a caliph
+26969,calisaya Cinchona_officinalis Cinchona_ledgeriana Cinchona_calisaya,Peruvian shrub or small tree having large glossy leaves and cymes of fragrant yellow to green or red flowers; cultivated for its medicinal bark
+26970,calisthenics callisthenics,the practice of calisthenic exercises; "calisthenics is recommended for general good health"
+26971,calisthenics callisthenics,light exercises designed to promote general fitness; "several different calisthenics were illustrated in the video"
+26972,calk calkin,a metal cleat on the bottom front of a horseshoe to prevent slipping
+26973,call,a demand for a show of hands in a card game; "after two raises there was a call"
+26974,call,a request; "many calls for Christmas stories"; "not many calls for buggywhips"
+26975,call,an instruction that interrupts the program being executed; "Pascal performs calls by simply giving the name of the routine to be executed"
+26976,call,a brief social visit; "senior professors' wives no longer make afternoon calls on newcomers"; "the characters in Henry James' novels are forever paying calls on each other, usually in the parlor of some residence"
+26977,call,a visit in an official or professional capacity; "the pastor's calls on his parishioners"; "the salesman's call on a customer"
+26978,call,(sports) the decision made by an umpire or referee; "he was ejected for protesting the call"
+26979,call claim,a demand especially in the phrase "the call of duty"
+26980,call phone_call telephone_call,a telephone connection; "she reported several anonymous calls"; "he placed a phone call to London"; "he heard the phone ringing but didn't want to take the call"
+26981,call-back,a return call
+26982,call-back,the recall of an employee after a layoff
+26983,call-board,a bulletin board backstage in a theater
+26984,call-in,a telephone call to a radio station or a television station in which the caller participates in the on-going program
+26985,call-out,a challenge to a fight or duel
+26986,call_center call_centre,a center equipped to handle a large volume of telephone calls (especially for taking orders or serving customers)
+26987,call_fire,fire delivered on a specific target in response to a request from the supported unit
+26988,call_forwarding,lets you transfer your incoming calls to any telephone that you can dial direct
+26989,call_girl,a female prostitute who can be hired by telephone
+26990,call_loan demand_loan,a loan that is repayable on demand
+26991,call_mark call_number pressmark,a mark consisting of characters written on a book; used to indicate shelf location
+26992,call_option,an option to buy
+26993,call_option call,the option to buy a given stock (or stock index or commodity future) at a given price before a given date
+26994,call_up,an order to report for military duty
+26995,call_waiting,a way of letting you know that someone else is calling when you are using your telephone
+26996,calla_lily calla arum_lily Zantedeschia_aethiopica,South African plant widely cultivated for its showy pure white spathe and yellow spadix
+26997,caller,an investor who buys a call option
+26998,caller,the bettor in a card game who matches the bet and calls for a show of hands
+26999,caller,someone who proclaims or summons in a loud voice; "the callers were mothers summoning their children home for dinner"
+27000,caller,the person who convenes a meeting; "who is the caller of this meeting?"
+27001,caller caller-out,a person who announces the changes of steps during a dance; "you need a fiddler and a caller for country dancing"
+27002,caller caller-up phoner telephoner,the person initiating a telephone call; "there were so many callers that he finally disconnected the telephone"
+27003,caller company,a social or business visitor; "the room was a mess because he hadn't expected company"
+27004,caller_ID,a small display that will show you the telephone number of the party calling you
+27005,calliandra,any of various shrubs and small trees valued for their fine foliage and attractive spreading habit and clustered white to deep pink or red flowers
+27006,calligrapher calligraphist,someone skilled in penmanship
+27007,calligraphy penmanship chirography,beautiful handwriting
+27008,calling_card,a distinguishing characteristic or behavior; "bombs are a terrorist's calling cards"
+27009,calling_card phone_card,a card that is used instead of cash to make telephone calls
+27010,calling_card visiting_card card,a printed or written greeting that is left to indicate that you have visited
+27011,calling_into_question demand_for_explanation,a challenge to defend what someone has said
+27012,calliope steam_organ,a musical instrument consisting of a series of steam whistles played from a keyboard
+27013,calliopsis Coreopsis_tinctoria,North American annual widely cultivated for its yellow flowers with purple-red to brownish centers; in some classifications placed in a subgenus Calliopsis
+27014,callithump callathump callithump_parade,a noisy boisterous parade
+27015,callosity callus,an area of skin that is thick or hard from continual pressure or friction (as the sole of the foot)
+27016,callosotomy callosectomy,severing the corpus callosum so that communication between the cerebral hemispheres is interrupted (in cases of severe intractable epilepsy)
+27017,callowness jejuneness juvenility,lacking and evidencing lack of experience of life
+27018,callus,bony tissue formed during the healing of a fractured bone
+27019,callus,(botany) an isolated thickening of tissue, especially a stiff protuberance on the lip of an orchid
+27020,calm_air calm,wind moving at less than 1 knot; 0 on the Beaufort scale
+27021,calmness,an absence of strong winds or rain
+27022,calmness,a feeling of calm; an absence of agitation or excitement
+27023,calomel mercurous_chloride,a tasteless colorless powder used medicinally as a cathartic
+27024,calorie gram_calorie small_calorie,unit of heat defined as the quantity of heat required to raise the temperature of 1 gram of water by 1 degree centigrade at atmospheric pressure
+27025,calorie_chart,a list of foods and information about their caloric content
+27026,calorimeter,a measuring instrument that determines quantities of heat
+27027,calorimetry,measurement of quantities of heat
+27028,calosoma,any beetle of the genus Calosoma
+27029,calpac calpack kalpac,a high-crowned black cap (usually made of felt or sheepskin) worn by men in Turkey and Iran and the Caucasus
+27030,calque calque_formation loan_translation,an expression introduced into one language by translating it from another language; "`superman' is a calque for the German `Ubermensch'"
+27031,caltrop devil's_weed Tribulus_terestris,tropical annual procumbent poisonous subshrub having fruit that splits into five spiny nutlets; serious pasture weed
+27032,calumet peace_pipe pipe_of_peace,a highly decorated ceremonial pipe of Amerindians; smoked on ceremonial occasions (especially as a token of peace)
+27033,calvaria skullcap,the dome of the skull
+27034,calvary martyrdom,any experience that causes intense suffering
+27035,calves'_feet,feet of calves used as food; usually jellied
+27036,calves'_liver calf's_liver,liver of a calf used as meat
+27037,calving,giving birth to a calf
+27038,calyculus caliculus calycle,a small cup-shaped structure (as a taste bud or optic cup or cavity of a coral containing a polyp)
+27039,calypso fairy-slipper Calypso_bulbosa,rare north temperate bog orchid bearing a solitary white to pink flower marked with purple at the tip of an erect reddish stalk above 1 basal leaf
+27040,calyptra,the hood or cap covering the calyx of certain plants: e.g., the California poppy
+27041,calyx,(botany) the whorl of sepals of a flower collectively forming the outer floral envelope or layer of the perianth enclosing and supporting the developing bud; usually green
+27042,cam,a rotating disk shaped to convert circular into linear motion
+27043,camail aventail ventail,a medieval hood of mail suspended from a basinet to protect the head and neck
+27044,camas camass quamash camosh camash,any of several plants of the genus Camassia; North and South America
+27045,camber,a slight convexity (as of the surface of a road)
+27046,camber,the alignment of the wheels of a motor vehicle closer together at the bottom than at the top
+27047,camber_arch,an arch with a straight horizontal extrados and a slightly arched intrados
+27048,cambium,a formative one-cell layer of tissue between xylem and phloem in most vascular plants that is responsible for secondary growth
+27049,cambium,the inner layer of the periosteum
+27050,cambric,a finely woven white linen
+27051,cambric_tea,a beverage for children containing hot water and milk and sugar and a small amount of tea
+27052,camcorder,a portable television camera and videocassette recorder
+27053,camel,cud-chewing mammal used as a draft or saddle animal in desert regions
+27054,camel's_hair camelhair,a soft tan cloth made with the hair of a camel
+27055,camel_racing,the sport of racing camels
+27056,camellia camelia,any of several shrubs or small evergreen trees having solitary white or pink or reddish flowers
+27057,camelpox,a viral disease of camels closely related to smallpox; "with a little genetic engineering camelpox could be used as a bioweapon"
+27058,cameo,engraving or carving in low relief on a stone (as in a brooch or ring)
+27059,camera photographic_camera,equipment for taking photographs (usually consisting of a lightproof box with a lens at one end and light-sensitive film at the other)
+27060,camera_angle,the point of view of a camera
+27061,camera_care,keeping a camera in good working order
+27062,camera_lens optical_lens,a lens that focuses the image in a camera
+27063,camera_lucida,an optical device consisting of an attachment that enables an observer to view simultaneously the image and a drawing surface for sketching it
+27064,camera_obscura,a darkened enclosure in which images of outside objects are projected through a small aperture or lens onto a facing surface
+27065,camera_tripod,a tripod used to support a camera
+27066,cameraman camera_operator cinematographer,a photographer who operates a movie camera
+27067,camise,a loose shirt or tunic; originally worn in the Middle Ages
+27068,camisole,a short negligee
+27069,camisole underbodice,a short sleeveless undergarment for women
+27070,camlet,a garment made of camlet fabric
+27071,camlet,a fabric of Asian origin; originally made of silk and camel's hair
+27072,camomile_tea,tea-like drink made from camomile leaves and flowers
+27073,camouflage,device or stratagem for concealment or deceit
+27074,camouflage camo,fabric dyed with splotches of green and brown and black and tan; intended to make the wearer of a garment made of this fabric hard to distinguish from the background
+27075,camp,a group of people living together in a camp; "the whole camp laughed at his mistake"
+27076,camp,something that is considered amusing not because of its originality but because of its unoriginality; "the living room was pure camp"
+27077,camp,a penal institution (often for forced labor); "China has many camps for political prisoners"
+27078,camp,temporary lodgings in the country for travelers or vacationers; "level ground is best for parking and camp areas"
+27079,camp encampment cantonment bivouac,temporary living quarters specially built by the army for soldiers; "wherever he went in the camp the men were grumbling"
+27080,camp refugee_camp,shelter for persons displaced by war or political oppression or for religious beliefs
+27081,camp summer_camp,a site where care and activities are provided for children during the summer months; "city kids get to see the country at a summer camp"
+27082,camp_chair,a light folding chair
+27083,camp_follower,a prostitute who provides service to military personnel
+27084,camp_follower,a follower who is not a member of an ingroup
+27085,camp_meeting,religious (usually evangelistic) meeting held in a large tent or outdoors and lasting several days
+27086,campaign cause crusade drive movement effort,a series of actions advancing a principle or tending toward a particular end; "he supported populist campaigns"; "they worked in the cause of world peace"; "the team was ready for a drive toward the pennant"; "the movement to end slavery"; "contributed to the war effort"
+27087,campaign hunting_expedition safari,an overland journey by hunters (especially in Africa)
+27088,campaign military_campaign,several related operations aimed at achieving a particular goal (usually within geographical and temporal constraints)
+27089,campaign_hat,a broad-brimmed felt hat with a high crown; formerly worn by the United States Army and Marine personnel
+27090,campaigner candidate nominee,a politician who is running for public office
+27091,campaigning candidacy candidature electioneering political_campaign,the campaign of a candidate to be elected
+27092,campanile belfry,a bell tower; usually stands alone unattached to a building
+27093,campanula bellflower,any of various plants of the genus Campanula having blue or white bell-shaped flowers
+27094,camper,someone living temporarily in a tent or lodge for recreation
+27095,camper camping_bus motor_home,a recreational vehicle equipped for camping out while traveling
+27096,camper_trailer,a trailer equipped for occupancy (especially for holiday trips)
+27097,campfire,a small outdoor fire for warmth or cooking (as at a camp)
+27098,camphor,a resin obtained from the camphor tree; used in making celluloid and liniment
+27099,camphor_daisy Haplopappus_phyllocephalus,annual of southern United States and Mexico having bristly leaves and pale yellow flowers
+27100,camphor_dune_tansy Tanacetum_camphoratum,densely hairy plant with rayless flowers; San Francisco Bay area
+27101,camphor_ice,a cerate made of camphor and wax and spermaceti and castor oil
+27102,camphor_oil,oil distilled from camphor resin
+27103,camphor_tree Cinnamomum_camphora,large evergreen tree of warm regions whose aromatic wood yields camphor
+27104,camping encampment bivouacking tenting,the act of encamping and living in tents in a camp
+27105,campmate,someone who lives in the same camp you do
+27106,campsite campground camping_site camping_ground bivouac encampment camping_area,a site where people on holiday can pitch a tent
+27107,campstool,a folding stool
+27108,campus,a field on which the buildings of a university are situated
+27109,campylotropous_ovule,a curved ovule with the micropyle almost touching the funiculus
+27110,camshaft,an engine shaft with cams attached to it
+27111,camwood African_sandalwood Baphia_nitida,small shrubby African tree with hard wood used as a dyewood yielding a red dye
+27112,can can_buoy,a buoy with a round bottom and conical top
+27113,can canful,the quantity contained in a can
+27114,can tin tin_can,airtight sealed metal container for food or drink or paint etc.
+27115,can_of_worms,a source of unpredictable trouble and complexity
+27116,can_opener tin_opener,a device for cutting cans open
+27117,canal,(astronomy) an indistinct surface feature of Mars once thought to be a system of channels; they are now believed to be an optical illusion
+27118,canal,long and narrow strip of water made for boats or for irrigation
+27119,canal_boat narrow_boat narrowboat,a long boat that carries freight and is narrow enough to be used in canals
+27120,canal_of_Schlemm Schlemm's_canal sinus_venosus_sclerae,a circular canal in the eye that drains aqueous humor from the anterior chamber of the eye into the anterior ciliary veins
+27121,canaliculus,a small canal or duct as in some bones and parts of plants
+27122,canalization canalisation,the production of a canal or a conversion to canals
+27123,canape,an appetizer consisting usually of a thin slice of bread or toast spread with caviar or cheese or other savory food
+27124,canard,a deliberately misleading fabrication
+27125,canary,a female singer
+27126,canary canary_bird,any of several small Old World finches
+27127,canary_grass birdseed_grass Phalaris_canariensis,Canary Islands grass; seeds used as feed for caged birds
+27128,canary_seed,a mixture of seeds used to feed caged birds
+27129,canary_yellow canary,a moderate yellow with a greenish tinge
+27130,canarybird_flower canarybird_vine canary_creeper Tropaeolum_peregrinum,a climber having flowers that are the color of canaries
+27131,canasta basket_rummy meld,a form of rummy using two decks of cards and four jokers; jokers and deuces are wild; the object is to form groups of the same rank
+27132,canavanine,an amino acid found in the jack bean
+27133,cancan,a high-kicking dance of French origin performed by a female chorus line
+27134,cancellation,the speech act of revoking or annulling or making void
+27135,cancellation,the act of cancelling; calling off some arrangement
+27136,cancer malignant_neoplastic_disease,any malignant growth or tumor caused by abnormal and uncontrolled cell division; it may spread to other parts of the body through the lymphatic system or the blood stream
+27137,cancer_cell,a cell that is part of a malignant tumor
+27138,cancer_juice,a milky substance found in certain cancerous growths
+27139,cancerweed cancer_weed Salvia_lyrata,sage of eastern United States
+27140,cancroid squamous_cell_carcinoma,the most common form of skin cancer
+27141,candelabrum candelabra,branched candlestick; ornamental; has several lights
+27142,candelilla Euphorbia_antisyphilitica,wax-coated shrub of northern Mexico and southwestern United States
+27143,candelilla Pedilanthus_bracteatus Pedilanthus_pavonis,wax-coated Mexican shrub related to Euphorbia antisyphilitica
+27144,candelilla_wax,a hard brown wax that occurs as a coating on candelilla shrubs
+27145,candid_camera,a miniature camera with a fast lens
+27146,candida,any of the yeastlike imperfect fungi of the genus Candida
+27147,candidate prospect,someone who is considered for something (for an office or prize or honor etc.)
+27148,candidiasis moniliasis monilia_disease,an infection caused by fungi of the genus Monilia or Candida (especially Candida albicans)
+27149,candied_apple candy_apple taffy_apple caramel_apple toffee_apple,an apple that is covered with a candy-like substance (usually caramelized sugar)
+27150,candied_citrus_peel,strips of citrus peel cooked in a sugar syrup
+27151,candied_fruit succade crystallized_fruit,fruit cooked in sugar syrup and encrusted with a sugar crystals
+27152,candle candela cd standard_candle,the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin
+27153,candle taper wax_light,stick of wax with a wick in the middle
+27154,candlelight candle_flame,the light provided by a burning candle
+27155,candlemaker,a person who makes or sells candles
+27156,candlenut,seed of candlenut tree; source of soil used in varnishes
+27157,candlenut varnish_tree Aleurites_moluccana,large tree native to southeastern Asia; the nuts yield oil used in varnishes; nut kernels strung together are used locally as candles
+27158,candlepin,a bowling pin that is thin by comparison with a tenpin
+27159,candlepins candlepin_bowling,a bowling game using slender bowling pins
+27160,candlepower light_intensity,luminous intensity measured in candelas
+27161,candlesnuffer,an implement with a small cup at the end of a handle; used to extinguish the flame of a candle
+27162,candlestick candle_holder,a holder with sockets for candles
+27163,candlewick,loops of soft yarn are cut to give a tufted pattern
+27164,candlewick,the wick of a candle
+27165,candlewood,any of several resinous trees or shrubs often burned for light
+27166,candor candour candidness frankness directness forthrightness,the quality of being honest and straightforward in attitude and speech
+27167,candy confect,a rich sweet made of flavored sugar and often combined with fruit or nuts
+27168,candy_bar,a candy shaped as a bar
+27169,candy_cane,a hard candy in the shape of a rod (usually with stripes)
+27170,candy_corn,a small yellow and white candy shaped to resemble a kernel of corn
+27171,candy_egg,egg-shaped candy
+27172,candy_striper,a volunteer worker in a hospital
+27173,candy_thermometer,a thermometer used to determine the temperature of candy syrups during cooking
+27174,candytuft,any of various flowering plants of the genus Iberis cultivated for their showy clusters of white to red or purple flowers; native to Mediterranean region
+27175,cane,a strong slender often flexible stem as of bamboos, reeds, rattans, or sugar cane
+27176,cane,a stick that people can lean on to help them walk
+27177,cane,a stiff switch used to hit students as punishment
+27178,cane_blight,a disease affecting the canes of various bush fruits (e.g., raspberries or currants)
+27179,cane_sugar,sucrose obtained from sugar cane
+27180,cane_sugar,sugar from sugarcane used as sweetening agent
+27181,canebrake,a dense growth of cane (especially giant cane)
+27182,canebrake_rattlesnake canebrake_rattler Crotalus_horridus_atricaudatus,southern variety
+27183,canella canella_bark white_cinnamon,highly aromatic inner bark of the Canella winterana used as a condiment and a tonic
+27184,canfield,a form of solitaire that involves gambling
+27185,cangue,an instrument of punishment formerly used in China for petty criminals; consists of a heavy wooden collar enclosing the neck and arms
+27186,canicola_fever,an acute feverish disease in people and in dogs marked by gastroenteritis and mild jaundice
+27187,canine canid,any of various fissiped mammals with nonretractile claws and typically long muzzles
+27188,canine canine_tooth eyetooth eye_tooth dogtooth cuspid,one of the four pointed conical teeth (two in each jaw) located between the incisors and the premolars
+27189,canine_chorea chorea,chorea in dogs
+27190,canine_distemper,a viral disease of young dogs characterized by high fever and respiratory inflammation
+27191,canistel canistel_tree Pouteria_campechiana_nervosa,tropical tree of Florida and West Indies yielding edible fruit
+27192,canistel eggfruit,ovoid orange-yellow mealy sweet fruit of Florida and West Indies
+27193,canister cannister tin,metal container for storing dry foods such as tea or flour
+27194,canker,a fungal disease of woody plants that causes localized damage to the bark
+27195,canker canker_sore,an ulceration (especially of the lips or lining of the mouth)
+27196,cankerworm,green caterpillar of a geometrid moth; pest of various fruit and shade trees
+27197,canna,any plant of the genus Canna having large sheathing leaves and clusters of large showy flowers
+27198,canna_lily Canna_generalis,plants grown for their large bright yellow to red flowers
+27199,cannabin cannabis_resin,a resin obtained from the hemp plant; thought to be the active narcotic agent in marijuana
+27200,cannabis hemp,any plant of the genus Cannabis; a coarse bushy annual with palmate leaves and clusters of small green flowers; yields tough fibers and narcotic drugs
+27201,cannabis marijuana marihuana ganja,the most commonly used illicit drug; considered a soft drug, it consists of the dried leaves of the hemp plant; smoked or chewed for euphoric effect
+27202,canned_food canned_foods canned_goods tinned_goods,food preserved by canning
+27203,canned_hunt,a hunt for animals that have been raised on game ranches until they are mature enough to be killed for trophy collections
+27204,canned_meat tinned_meat,meat preserved in a can or tin
+27205,cannel_coal,a bituminous coal that burns with a luminous flame
+27206,cannelloni,tubular pasta filled with meat or cheese
+27207,cannery,a factory where food is canned
+27208,cannibal man-eater anthropophagus anthropophagite,a person who eats human flesh
+27209,cannibalism,the practice of eating the flesh of your own kind
+27210,cannikin,a wooden bucket
+27211,cannikin,a small can
+27212,cannon,heavy gun fired from a tank
+27213,cannon,(Middle Ages) a cylindrical piece of armor plate to protect the arm
+27214,cannon,heavy automatic gun fired from an airplane
+27215,cannon,a large artillery gun that is usually on wheels
+27216,cannon shank,lower part of the leg extending from the hock to the fetlock in hoofed mammals
+27217,cannon_bone,greatly developed metatarsal or metacarpal bone in the shank or cannon part of the leg in hoofed mammals
+27218,cannon_cracker,a large firecracker
+27219,cannon_fodder fodder fresh_fish,soldiers who are regarded as expendable in the face of artillery fire
+27220,cannonade drumfire,intense and continuous artillery fire
+27221,cannonball cannon_ball round_shot,a solid projectile that in former times was fired from a cannon
+27222,cannula,a small flexible tube inserted into a body cavity for draining off fluid or introducing medication
+27223,cannulation canulation cannulization cannulisation canulization canulisation intubation,the insertion of a cannula or tube into a hollow body organ
+27224,canoe,small and light boat; pointed at both ends; propelled with a paddle
+27225,canoeist paddler,someone paddling a canoe
+27226,canola_oil canola,vegetable oil made from rapeseed; it is high in monounsaturated fatty acids
+27227,canon,a priest who is a member of a cathedral chapter
+27228,canon,a contrapuntal piece of music in which a melody in one part is imitated exactly in other parts
+27229,canon,a rule or especially body of rules or principles generally established as valid and fundamental in a field of art or philosophy; "the neoclassical canon"; "canons of polite society"
+27230,canon,a complete list of saints that have been recognized by the Roman Catholic Church
+27231,canon,a collection of books accepted as holy scripture especially the books of the Bible recognized by any Christian church as genuine and inspired
+27232,canon_law ecclesiastical_law,the body of codified laws governing the affairs of a Christian church
+27233,canonical_hour,(Roman Catholic Church) one of seven specified times for prayer
+27234,canonist,a specialist in canon law
+27235,canonization canonisation,(Roman Catholic and Eastern Orthodox Church) the act of admitting a deceased person into the canon of saints
+27236,canopic_jar canopic_vase,a jar used in ancient Egypt to contain entrails of an embalmed body
+27237,canopy,the transparent covering of an aircraft cockpit
+27238,canopy,the umbrellalike part of a parachute that fills with air
+27239,canopy,a covering (usually of cloth) that serves as a roof to shelter an area from the weather
+27240,cant pious_platitude,insincere talk about religion or morals
+27241,cant_hook,a peavey having a hook instead of a spike; used for handling logs
+27242,cantala Cebu_maguey manila_maguey,hard fiber used in making coarse twine; from Philippine agave plants
+27243,cantaloup cantaloupe,the fruit of a cantaloup vine; small to medium-sized melon with yellowish flesh
+27244,cantaloupe cantaloup cantaloupe_vine cantaloup_vine Cucumis_melo_cantalupensis,a variety of muskmelon vine having fruit with a tan rind and orange flesh
+27245,cantata oratorio,a musical composition for voices and orchestra based on a religious text
+27246,canteen,sells food and personal items to personnel at an institution or school or camp etc.
+27247,canteen,a recreation room in an institution
+27248,canteen,restaurant in a factory; where workers can eat
+27249,canteen,a flask for carrying water; used by soldiers or travelers
+27250,canteen mobile_canteen,a restaurant outside; often for soldiers or policemen
+27251,canter lope,a smooth three-beat gait; between a trot and a gallop
+27252,canthus,either of the corners of the eye where the upper and lower eyelids meet
+27253,canticle,a hymn derived from the Bible
+27254,cantilever,projecting horizontal beam fixed at one end only
+27255,cantilever_bridge,bridge constructed of two cantilevers that meet in the middle
+27256,cantillation,liturgical chanting
+27257,cantle,the back of a saddle seat
+27258,canto,the highest part (usually the melody) in a piece of choral music
+27259,canto,a major division of a long poem
+27260,canton,a small administrative division of a country
+27261,cantor hazan,the official of a synagogue who conducts the liturgical part of the service and sings or chants the prayers intended to be performed as solos
+27262,cantus_firmus,a pre-existing melody used as the basis for a polyphonic composition; originally drawn from plainchant, but later drawn from other sources
+27263,canvas canvass,the setting for a narrative or fictional or dramatic account; "the crowded canvas of history"; "the movie demanded a dramatic canvas of sound"
+27264,canvas canvass,an oil painting on canvas fabric
+27265,canvas canvass,the mat that forms the floor of the ring in which boxers or professional wrestlers compete; "the boxer picked himself up off the canvas"
+27266,canvas canvass,a heavy, closely woven fabric (used for clothing or chairs or sails or tents)
+27267,canvas_tent canvas canvass,a tent made of canvas fabric
+27268,canvasback canvasback_duck Aythya_valisineria,North American wild duck valued for sport and food
+27269,canvasser,a person who takes or counts votes
+27270,canyon canon,a ravine formed by a river in an area with little rainfall
+27271,canyon_oak canyon_live_oak maul_oak iron_oak Quercus_chrysolepis,medium-sized evergreen of southwestern United States and northwestern Mexico with oblong leathery often spiny-edged leaves
+27272,canyon_treefrog Hyla_arenicolor,a small chiefly ground dweller that stays within easy jumping distance of water; of United States southwest and northern Mexico
+27273,canyonside,the steeply sloping side of a canyon
+27274,cap,something serving as a cover or protection
+27275,cap,a top (as for a bottle)
+27276,cap,a tight-fitting headdress
+27277,cap pileus,a fruiting structure resembling an umbrella or a cone that forms the top of a stalked fleshy fungus such as a mushroom
+27278,cap_opener,a bottle opener to pry off caps
+27279,cap_screw,a threaded screw for machine parts; screws into a tapped hole
+27280,capability capableness,the quality of being capable -- physically or intellectually or legally; "he worked to the limits of his capability"
+27281,capability capableness potentiality,an aptitude that may be developed
+27282,capability capacity,the susceptibility of something to a particular treatment; "the capability of a metal to be fused"
+27283,capaciousness roominess,intellectual breadth; "the very capaciousness of the idea meant that agreement on fundamentals was unnecessary"; "his unselfishness gave him great intellectual roominess"
+27284,capaciousness roominess spaciousness commodiousness,spatial largeness and extensiveness (especially inside a building); "the capaciousness of Santa's bag astounded the child"; "roominess in this size car is always a compromise"; "his new office lacked the spaciousness that he had become accustomed to"
+27285,capacitance electrical_capacity capacity,an electrical phenomenon whereby an electric charge is stored
+27286,capacitance_unit,a measure of the capacity of a circuit component to store charge
+27287,capacitor capacitance condenser electrical_condenser,an electrical device characterized by its capacity to store an electric charge
+27288,capacity,(computer science) the amount of information (in bytes) that can be stored on a disk drive; "the capacity of a hard disk drive is usually expressed in megabytes"
+27289,capacity,capability to perform or produce; "among his gifts is his capacity for true altruism"; "limited runway capacity"; "a great capacity for growth"
+27290,capacity,tolerance for alcohol; "he had drunk beyond his capacity"
+27291,capacity,the maximum production possible; "the plant is working at 80 per cent capacity"
+27292,capacity,a specified function; "he was employed in the capacity of director"; "he should be retained in his present capacity at a higher salary"
+27293,capacity content,the amount that can be contained; "the gas tank has a capacity of 12 gallons"
+27294,capacity mental_ability,the power to learn or retain knowledge; in law, the ability to understand the facts and significance of your behavior
+27295,caparison trapping housing,stable gear consisting of a decorated covering for a horse, especially (formerly) for a warhorse
+27296,cape mantle,a sleeveless garment like a cloak but shorter
+27297,cape ness,a strip of land projecting into a body of water
+27298,cape_aloe Aloe_ferox,much-branched South African plant with reddish prickly succulent leaves
+27299,cape_forget-me-not Anchusa_capensis,anchusa of southern Africa having blue flowers with white throats
+27300,cape_forget-me-not Anchusa_riparia,anchusa of southern Africa having blue to red-purple flowers
+27301,cape_gooseberry purple_ground_cherry Physalis_peruviana,annual of tropical South America having edible purple fruits
+27302,cape_jasmine cape_jessamine Gardenia_jasminoides Gardenia_augusta,evergreen shrub widely cultivated for its large fragrant waxlike white flowers and glossy leaves
+27303,cape_marigold sun_marigold star_of_the_veldt,any of several South African plants grown for the profusion of usually yellow daisylike flowers and mounds of aromatic foliage
+27304,cape_yellowwood African_yellowwood Podocarpus_elongatus,South African tree or shrub having a rounded crown
+27305,capelin capelan caplin,very small northern fish; forage for sea birds and marine mammals and other fishes
+27306,capeline_bandage,bandage that covers the head or an amputation stump like a cap
+27307,caper,any of numerous plants of the genus Capparis
+27308,caper,pickled flower buds used as a pungent relish in various dishes and sauces
+27309,caper capriole,a playful leap or hop
+27310,caper job,a crime (especially a robbery); "the gang pulled off a bank job in St. Louis"
+27311,caper_sauce,allemande sauce with capers
+27312,caper_spurge myrtle_spurge mole_plant Euphorbia_lathyris,poisonous Old World spurge; adventive in America; seeds yield a purgative oil
+27313,caper_tree Jamaica_caper_tree Capparis_cynophallophora,shrub of southern Florida to West Indies
+27314,caper_tree bay-leaved_caper Capparis_flexuosa,shrub or small tree of southern Florida to Central and South America
+27315,capercaillie capercailzie horse_of_the_wood Tetrao_urogallus,large black Old World grouse
+27316,capful,the quantity that a cap will hold
+27317,capillarity capillary_action,a phenomenon associated with surface tension and resulting in the elevation or depression of liquids in capillaries
+27318,capillary capillary_tube capillary_tubing,a tube of small internal diameter; holds liquid by capillary action
+27319,capillary capillary_vessel,any of the minute blood vessels connecting arterioles with venules
+27320,capillary_bed,a layer of tissue densely packed with capillaries
+27321,capital,wealth in the form of money or property owned by a person or business and human resources of economic value
+27322,capital,a center that is associated more than any other with some activity or product; "the crime capital of Italy"; "the drug capital of Columbia"
+27323,capital,a seat of government
+27324,capital capital_letter uppercase upper-case_letter majuscule,one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis; "printers once kept the type for capitals and for small letters in separate cases; capitals were kept in the upper half of the type case and so became known as upper-case letters"
+27325,capital chapiter cap,the upper part of a column that supports the entablature
+27326,capital working_capital,assets available for use in the production of further assets
+27327,capital_account,(economics) that part of the balance of payments recording a nation's outflow and inflow of financial securities
+27328,capital_account,(finance) an account of the net value of a business at a specified date
+27329,capital_expenditure,the cost of long-term improvements
+27330,capital_gain,the amount by which the selling price of an asset exceeds the purchase price; the gain is realized when the asset is sold
+27331,capital_gains_tax,a tax on capital gains; "he avoided the capital gains tax by short selling"
+27332,capital_levy,a tax on capital or property
+27333,capital_loss,the amount by which the purchase price of an asset exceeds the selling price; the loss is realized when the asset is sold
+27334,capital_offense,a crime so serious that capital punishment is considered appropriate
+27335,capital_ship,a warship of the first rank in size and armament
+27336,capital_stock,the book value of the outstanding shares of a corporation
+27337,capitalism capitalist_economy,an economic system based on private ownership of capital
+27338,capitalist,a conservative advocate of capitalism
+27339,capitalist,a person who invests capital in a business (especially a large business)
+27340,capitalization capitalisation,writing in capital letters
+27341,capitalization capitalisation,an estimation of the value of a business
+27342,capitalization capitalisation,the act of capitalizing on an opportunity
+27343,capitalization capitalisation,the sale of capital stock
+27344,capitate capitate_bone os_capitatum,the wrist bone with a rounded head shape that articulates with the 3rd metacarpus
+27345,capitation,a tax levied on the basis of a fixed amount per person
+27346,capitol,a building occupied by a state legislature
+27347,capitulation,a document containing the terms of surrender
+27348,capitulation,a summary that enumerates the main parts of a topic
+27349,capitulation fall surrender,the act of surrendering (usually under agreed conditions); "they were protected until the capitulation of the fort"
+27350,capitulum,an arrangement of leafy branches forming the top or head of a tree
+27351,capitulum head,a dense cluster of flowers or foliage; "a head of cauliflower"; "a head of lettuce"
+27352,capo,the head of a branch of an organized crime syndicate
+27353,capon,flesh of a castrated male chicken
+27354,capon,castrated male chicken
+27355,capote hooded_cloak,a long cloak with a hood that can be pulled over the head
+27356,capote hooded_coat,a long overcoat with a hood that can be pulled over the head
+27357,cappuccino cappuccino_coffee coffee_cappuccino,equal parts of espresso and hot milk topped with cinnamon and nutmeg and usually whipped cream
+27358,capric_acid decanoic_acid,a fatty acid found in animal oils and fats; has an unpleasant smell resembling goats
+27359,capriccio,an instrumental composition that doesn't adhere to rules for any specific musical form and is played with improvisation
+27360,caprice impulse whim,a sudden desire; "he bought it on an impulse"
+27361,capriciousness unpredictability,the quality of being guided by sudden unpredictable impulses
+27362,caprifig Ficus_carica_sylvestris,wild variety of the common fig used to facilitate pollination of certain figs
+27363,caprimulgiform_bird,long-winged nonpasserine birds
+27364,capriole,(dressage) a vertical jump of a trained horse with a kick of the hind legs at the top of the jump
+27365,caproic_acid hexanoic_acid,a fatty acid found in animal oils and fats or made synthetically; smells like goats
+27366,caprylic_acid,a fatty acid having a rancid taste; found in butter and other fats and oils
+27367,capsaicin,colorless pungent crystalline compound derived from capsicum; source of the hotness of hot peppers of the genus Capsicum such as chili and cayenne and jalapeno
+27368,capsicum pepper capsicum_pepper_plant,any of various tropical plants of the genus Capsicum bearing peppers
+27369,capsid,the outer covering of protein surrounding the nucleic acid of a virus
+27370,capsizing,(nautical) the event of a boat accidentally turning over in the water
+27371,capstan,a windlass rotated in a horizontal plane around a vertical axis; used on ships for weighing anchor or raising heavy sails
+27372,capstone copestone coping_stone stretcher,a stone that forms the top of wall or building
+27373,capsule,a dry dehiscent seed vessel or the spore-containing structure of e.g. mosses
+27374,capsule,a structure that encloses a body part
+27375,capsule,a small container
+27376,capsule,a pill in the form of a small rounded gelatinous container with medicine inside
+27377,captain,an officer holding a rank below a major but above a lieutenant
+27378,captain chieftain,the leader of a group of people; "a captain of industry"
+27379,captain headwaiter maitre_d'hotel maitre_d',a dining-room attendant who is in charge of the waiters and the seating of customers
+27380,captain police_captain police_chief,a policeman in charge of a precinct
+27381,captain senior_pilot,the pilot in charge of an airship
+27382,captain skipper,the naval officer in command of a military ship
+27383,captain's_chair,a wooden armchair with a saddle seat and a low back that has vertical spindles
+27384,captainship captaincy,the post of captain
+27385,caption,taking exception; especially a quibble based on a captious argument; "a mere caption unworthy of a reply"
+27386,caption legend,brief description accompanying an illustration
+27387,captivation enchantment enthrallment fascination,a feeling of great liking for something wonderful and unusual
+27388,captive,a person held in the grip of a strong emotion or passion
+27389,captive,an animal that is confined
+27390,captive_finance_company,a finance company owned by a manufacturer to finance dealers' inventories or to make loans to consumers buying the company's products
+27391,captivity imprisonment incarceration immurement,the state of being imprisoned; "he was held in captivity until he died"; "the imprisonment of captured soldiers"; "his ignominious incarceration in the local jail"; "he practiced the immurement of his enemies in the castle dungeon"
+27392,captopril Capoten,a drug (trade name Capoten) that blocks the formation of angiotensin in the kidneys resulting in vasodilation; used in the treatment of hypertension and congestive heart failure
+27393,captor capturer,a person who captures and holds people or animals
+27394,capture,a process whereby a star or planet holds an object in its gravitational field
+27395,capture,any process in which an atomic or nuclear system acquires an additional particle
+27396,capture,the removal of an opponent's piece from the chess board
+27397,capture gaining_control seizure,the act of forcibly dispossessing an owner of property
+27398,capture seizure,the act of taking of a person by force
+27399,capuchin,a hooded cloak for women
+27400,capuchin ringtail Cebus_capucinus,monkey of Central America and South America having thick hair on the head that resembles a monk's cowl
+27401,capulin Mexican_black_cherry,Mexican black cherry
+27402,capulin capulin_tree Prunus_capuli,Mexican black cherry tree having edible fruit
+27403,caput,a headlike protuberance on an organ or structure; "the caput humeri is the head of the humerus which fits into a cavity in the scapula"
+27404,capybara capibara Hydrochoerus_hydrochaeris,pig-sized tailless South American amphibious rodent with partly webbed feet; largest living rodent
+27405,car auto automobile machine motorcar,a motor vehicle with four wheels; usually propelled by an internal combustion engine; "he needs a car to get to work"
+27406,car elevator_car,where passengers ride up and down; "the car was on the top floor"
+27407,car gondola,the compartment that is suspended from an airship and that carries personnel and the cargo and the power plant
+27408,car railcar railway_car railroad_car,a wheeled vehicle adapted to the rails of railroad; "three cars had jumped the rails"
+27409,car-ferry,a ferry that transports motor vehicles
+27410,car_battery automobile_battery,a lead-acid storage battery in a motor vehicle; usually a 12-volt battery of six cells; the heart of the car's electrical system
+27411,car_bomb,a bomb placed in a car and wired to explode when the ignition is started or by remote control or by a timing device
+27412,car_boot_sale boot_sale,an outdoor sale at which people sell things from the trunk of their car
+27413,car_care,keeping a car in good working order
+27414,car_carrier,a trailer that can be loaded with new cars for delivery to sales agencies
+27415,car_company auto_company,a company that makes and sells automobiles
+27416,car_dealer,a firm that sells and buys cars
+27417,car_door,the door of a car
+27418,car_manufacturer car_maker carmaker auto_manufacturer auto_maker automaker,a business engaged in the manufacture of automobiles
+27419,car_mirror,a mirror that the driver of a car can use
+27420,car_pool,a small group of car drivers who arrange to take turns driving while the others are passengers
+27421,car_rental hire_car rent-a-car self-drive u-drive you-drive,a rented car; "she picked up a hire car at the airport and drove to her hotel"
+27422,car_seat,a seat in a car
+27423,car_sickness,motion sickness experienced while traveling in a car
+27424,car_tire automobile_tire auto_tire rubber_tire,a tire consisting of a rubber ring around the rim of an automobile wheel
+27425,car_train,a train that transports passengers and their automobiles
+27426,car_wheel,a wheel that has a tire and rim and hubcap; used to propel the car
+27427,car_window,a window in a car
+27428,carabao,water buffalo of the Philippines
+27429,carabiner karabiner snap_ring,an oblong metal ring with a spring clip; used in mountaineering to attach a rope to a piton or to connect two ropes
+27430,caracal desert_lynx Lynx_caracal,of deserts of northern Africa and southern Asia
+27431,caracara,any of various long-legged carrion-eating hawks of South America and Central America
+27432,caracolito Ruptiliocarpon_caracolito,large Costa Rican tree having light-colored wood suitable for cabinetry; similar to the African lepidobotrys in wood structure as well as in fruit and flowers and leaves and seeds; often classified in other families
+27433,carafe decanter,a bottle with a stopper; for serving wine or water
+27434,carambola carambola_tree Averrhoa_carambola,East Indian tree bearing deeply ridged yellow-brown fruit
+27435,carambola star_fruit,deeply ridged yellow-brown tropical fruit; used raw as a vegetable or in salad or when fully ripe as a dessert
+27436,caramel,firm chewy candy made from caramelized sugar and butter and milk
+27437,caramel caramelized_sugar,burnt sugar; used to color and flavor food
+27438,carancha Polyborus_plancus,South American caracara
+27439,caranday caranda caranda_palm wax_palm Copernicia_australis Copernicia_alba,South American palm yielding a wax similar to carnauba wax
+27440,carangid_fish carangid,a percoid fish of the family Carangidae
+27441,carapace shell cuticle shield,hard outer covering or case of certain organisms such as arthropods and turtles
+27442,carat,a unit of weight for precious stones = 200 mg
+27443,caravan train wagon_train,a procession (of wagons or mules or camels) traveling together in single file; "we were part of a caravan of almost a thousand camels"; "they joined the wagon train for safety"
+27444,caravanning,the practice of taking holidays in a caravan
+27445,caravansary caravanserai khan caravan_inn,an inn in some eastern countries with a large courtyard that provides accommodation for caravans
+27446,caraway,leaves used sparingly in soups and stews
+27447,caraway Carum_carvi,a Eurasian plant with small white flowers yielding caraway seed
+27448,caraway_seed,aromatic seeds of the caraway plant; used widely as seasoning
+27449,caraway_seed_bread,bread containing caraway seeds
+27450,carbamate,a salt (or ester) of carbamic acid
+27451,carbamic_acid,an acid that is known only by virtue of its salts (as ammonium carbamate) or its esters (as urethane)
+27452,carbide,a binary compound of carbon with a more electropositive element
+27453,carbine,light automatic rifle
+27454,carbineer carabineer carabinier,a soldier (historically a mounted soldier) who is armed with a carbine
+27455,carbohydrate saccharide sugar,an essential structural component of living cells and source of energy for animals; includes simple sugars with small molecules as well as macromolecular substances; are classified according to the number of monosaccharide groups they contain
+27456,carbohydrate_loading carbo_loading,a diet of foods high in starch that increases carbohydrate reserves in muscles; "carbo loading is used by endurance athletes just before competing"
+27457,carbolic_acid phenol hydroxybenzene oxybenzene phenylic_acid,a toxic white soluble crystalline acidic derivative of benzene; used in manufacturing and as a disinfectant and antiseptic; poisonous if taken internally
+27458,carbomycin,a colorless basic antibiotic that inhibits the growth of Gram-positive organisms
+27459,carbon C atomic_number_6,an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds
+27460,carbon carbon_copy,a copy made with carbon paper
+27461,carbon_arc_lamp carbon_arc,has carbon electrodes
+27462,carbon_atom,an atom of carbon
+27463,carbon_black lampblack soot smut crock,a black colloidal substance consisting wholly or principally of amorphous carbon and used to make pigments and ink
+27464,carbon_cycle,the organic circulation of carbon from the atmosphere into organisms and back again
+27465,carbon_cycle,a thermonuclear reaction in the interior of stars
+27466,carbon_dioxide CO2 carbonic_acid_gas,a heavy odorless colorless gas formed during respiration and by the decomposition of organic substances; absorbed from the air by plants in photosynthesis
+27467,carbon_disulfide,a toxic colorless flammable liquid (CS2); used in the manufacture of rayon and cellophane and carbon tetrachloride and as a solvent for rubber
+27468,carbon_monoxide carbon_monoxide_gas CO,an odorless very poisonous gas that is a product of incomplete combustion of carbon
+27469,carbon_monoxide_poisoning,a toxic condition that results from inhaling and absorbing carbon monoxide gas; "carbon monoxide combines with hemoglobin and displaces oxygen in the blood"
+27470,carbon_nanotube nanotube,a fullerene molecule having a cylindrical or toroidal shape
+27471,carbon_paper carbon,a thin paper coated on one side with a dark waxy substance (often containing carbon); used to transfer characters from the original to an under sheet of paper
+27472,carbon_process,a process of printing on paper coated with bichromated gelatin containing pigment
+27473,carbon_steel,steel whose characteristics are determined by the amount of carbon it contains
+27474,carbon_tetrachloride carbon_tet tetrachloromethane perchloromethane,a colorless nonflammable liquid used as a solvent for fats and oils; because of its toxicity its use as a cleaning fluid or fire extinguisher has declined
+27475,carbon_tetrahalide,compounds composed of 1 carbon and 4 halogen molecules
+27476,carbonado,a piece of meat (or fish) that has been scored and broiled
+27477,carbonado black_diamond,an inferior dark diamond used in industry for drilling and polishing
+27478,carbonara,sauce for pasta; contains eggs and bacon or ham and grated cheese
+27479,carbonate,a salt or ester of carbonic acid (containing the anion CO3)
+27480,carbonation,saturation with carbon dioxide (as soda water)
+27481,carbonic_acid,a weak acid known only in solution; formed when carbon dioxide combines with water
+27482,carbonization carbonisation,the destructive distillation of coal (as in coke ovens)
+27483,carbonnade_flamande Belgian_beef_stew,beef stewed in beer seasoned with garlic and served with boiled potatoes
+27484,carbonyl,a compound containing metal combined with carbon monoxide
+27485,carbonyl_group,the bivalent radical CO
+27486,carborundum,an abrasive composed of silicon carbide crystals
+27487,carboxyl carboxyl_group,the univalent radical -COOH; present in and characteristic of organic acids
+27488,carboxylic_acid,an organic acid characterized by one or more carboxyl groups
+27489,carboxymethyl_cellulose,an acid derivative of cellulose
+27490,carboy,a large bottle for holding corrosive liquids; usually cushioned in a special container
+27491,carbuncle,deep-red cabochon garnet cut without facets
+27492,carbuncle,an infection larger than a boil and with several openings for discharge of pus
+27493,carburetor carburettor,mixes air with gasoline vapor prior to explosion
+27494,carcase carcass,the dead body of an animal especially one slaughtered and dressed for food
+27495,carcinogen,any substance that produces cancer
+27496,carcinoid,a small tumor (benign or malignant) arising from the mucosa of the gastrointestinal tract; usually associated with excessive secretion of serotonin
+27497,carcinoma,any malignant tumor derived from epithelial tissue; one of the four major types of cancer
+27498,carcinoma_in_situ preinvasive_cancer,a cluster of malignant cells that has not yet invaded the deeper epithelial tissue or spread to other parts of the body
+27499,carcinosarcoma,a malignant neoplasm composed of carcinoma and sarcoma extensively intermixed
+27500,card,thin cardboard, usually rectangular
+27501,card,a rectangular piece of stiff paper used to send messages (may have printed greetings or pictures); "they sent us a card from Miami"
+27502,card,one of a set of small pieces of stiff paper marked in various ways and used for playing games or for telling fortunes; "he collected cards and traded them with the other boys"
+27503,card identity_card,a card certifying the identity of the bearer; "he had to show his card to get in"
+27504,card scorecard,(golf) a record of scores (as in golf); "you have to turn in your card to get a handicap"
+27505,card_catalog card_catalogue,a library catalog in which each publication is described on a separate file card
+27506,card_game cards,a game played with playing cards
+27507,card_index card_catalog card_catalogue,an alphabetical listing of items (e.g., books in a library) with a separate card for each item
+27508,card_player,someone who plays (or knows how to play) card games
+27509,card_table,a table for playing cards (as in a casino)
+27510,card_table,a small light table with folding legs; can be folded for storage
+27511,card_trick,a trick performed with playing cards
+27512,cardamom cardamon Elettaria_cardamomum,rhizomatous herb of India having aromatic seeds used as seasoning
+27513,cardamom cardamon cardamum,aromatic seeds used as seasoning like cinnamon and cloves especially in pickles and barbecue sauces
+27514,cardboard composition_board,a stiff moderately thick paper
+27515,cardcase,a small case for carrying business cards
+27516,cardholder,a person who holds a credit card or debit card
+27517,cardholder,a player who holds a card or cards in a card game
+27518,cardia,the opening into the stomach and that part of the stomach connected to the esophagus
+27519,cardiac_arrhythmia arrhythmia,an abnormal rate of muscle contractions in the heart
+27520,cardiac_cycle,the complete cycle of events in the heart from the beginning of one heart beat to the beginning of the next; an electrical impulse conducted through the heart muscle that constricts the atria which is followed by constriction of the ventricles; "the cardiac cycle can be shown on an electrocardiogram"
+27521,cardiac_glycoside cardiac_glucoside,obtained from a number of plants and used to stimulate the heart in cases of heart failure
+27522,cardiac_massage heart_massage,an emergency procedure that employs rhythmic compression of the heart (either through the chest wall or, during surgery, directly to the heart) in an attempt to maintain circulation during cardiac arrest
+27523,cardiac_monitor heart_monitor,a piece of electronic equipment for continual observation of the function of the heart
+27524,cardiac_muscle heart_muscle,the muscle tissue of the heart; adapted to continued rhythmic contraction
+27525,cardiac_output,the amount of blood pumped out by the ventricles in a given period of time; "a resting adult has a cardiac output of about three quarts a minute"
+27526,cardiac_plexus plexus_cardiacus,a plexus of nerves supplying the heart and nearby structures
+27527,cardiac_rhythm heart_rhythm,the rhythm of a beating heart
+27528,cardiac_sphincter,the valve between the distal end of the esophagus and the stomach; the physiological sphincter at the esophagogastric junction
+27529,cardiac_tamponade,mechanical compression of the heart resulting from large amounts of fluid collecting in the pericardial space and limiting the heart's normal range of motion
+27530,cardigan,knitted jacket that is fastened up the front with buttons or a zipper
+27531,cardinal,(Roman Catholic Church) one of a group of more than 100 prominent bishops in the Sacred College who advise the Pope and elect new Popes
+27532,cardinal cardinal_grosbeak Richmondena_Cardinalis Cardinalis_cardinalis redbird,crested thick-billed North American finch having bright red plumage in the male
+27533,cardinal carmine,a variable color averaging a vivid red
+27534,cardinal_compass_point,one of the four main compass points
+27535,cardinal_flower Indian_pink Lobelia_cardinalis,North American lobelia having brilliant red flowers
+27536,cardinal_number cardinal,the number of elements in a mathematical set; denotes a quantity but not the order
+27537,cardinal_tetra Paracheirodon_axelrodi,small bright red and blue aquarium fish from streams in Brazil and Colombia
+27538,cardinal_vein,any of the major venous channels in primitive adult vertebrates and in embryos of higher vertebrates
+27539,cardinal_virtue,one of the seven preeminent virtues
+27540,cardinalfish,small red fishes of coral reefs and inshore tropical waters
+27541,cardinality,(mathematics) the number of elements in a set or group (considered as a property of that grouping)
+27542,cardinalship cardinalate,the office of cardinal; "following the scandal, the cardinal resigned his cardinalate"
+27543,cardiogenic_shock,shock caused by cardiac arrest
+27544,cardiograph electrocardiograph,medical instrument that records electric currents associated with contractions of the heart
+27545,cardiography electrocardiography,diagnostic procedure consisting of recording the activity of the heart electronically with a cardiograph (and producing a cardiogram)
+27546,cardioid,an epicycloid in which the rolling circle equals the fixed circle
+27547,cardioid_microphone cardioid_mike,a directional microphone with a cardioid pattern of sensitivity
+27548,cardiologist heart_specialist heart_surgeon,a specialist in cardiology; a specialist in the structure and function and disorders of the heart
+27549,cardiology,the branch of medicine dealing with the heart and its diseases
+27550,cardiomegaly megalocardia megacardia enlarged_heart,an abnormal enlargement of the heart; "mild cardiomegaly is common in athletes"
+27551,cardiomyopathy myocardiopathy,a disorder (usually of unknown origin) of the heart muscle (myocardium)
+27552,cardiopulmonary_exercise,exercise intended to strengthen the circulatory system
+27553,cardiopulmonary_resuscitation CPR cardiac_resuscitation mouth-to-mouth_resuscitation kiss_of_life,an emergency procedure consisting of external cardiac massage and artificial respiration; the first treatment for a person who has collapsed and has no pulse and has stopped breathing; attempts to restore circulation of the blood and prevent death or brain damage due to lack of oxygen
+27554,cardiospasm,a spasm of the cardiac sphincter (between the esophagus and the stomach); if the cardiac sphincter does not relax during swallowing the passage of food into the stomach is obstructed
+27555,cardiovascular_disease,a disease of the heart or blood vessels
+27556,carditis,inflammation of the heart
+27557,cardoon,only parts eaten are roots and especially stalks (blanched and used as celery); related to artichokes
+27558,cardoon Cynara_cardunculus,southern European plant having spiny leaves and purple flowers cultivated for its edible leafstalks and roots
+27559,cardroom,a room for gambling on card games
+27560,cardsharp card_sharp cardsharper card_sharper sharper sharpie sharpy card_shark,a professional card player who makes a living by cheating at card games
+27561,care,a cause for feeling concern; "his major care was the illness of his wife"
+27562,care attention aid tending,the work of providing treatment for or attending to someone or something; "no medical care was required"; "the old car needs constant attention"
+27563,care charge tutelage guardianship,attention and management implying responsibility for safety; "he is in the care of a bodyguard"
+27564,care maintenance upkeep,activity involved in maintaining something in good working order; "he wrote the manual on car care"
+27565,career calling vocation,the particular occupation for which you are trained
+27566,career life_history,the general progression of your working or professional life; "the general had had a distinguished career"; "he had a long career in the law"
+27567,career_counseling,counseling on career opportunities
+27568,career_girl,a woman who is a careerist
+27569,career_man,a man who is a careerist
+27570,careerism,the practice of advancing your career at the expense of your personal integrity
+27571,careerist,a professional who is intent on furthering his or her career by any possible means and often at the expense of their own integrity
+27572,carefreeness,the trait of being without worry or responsibility
+27573,carefreeness insouciance lightheartedness lightsomeness,the cheerful feeling you have when nothing is troubling you
+27574,carefulness,the quality of being careful and painstaking; "I admired the carefulness of his work"
+27575,caregiver,a person who is responsible for attending to the needs of a child or dependent adult
+27576,carelessness sloppiness,the quality of not being careful or taking pains
+27577,caress,a gentle affectionate stroking (or something resembling it); "he showered her with caresses"; "soft music was a fond caress"; "the caresses of the breeze played over his face"
+27578,caressing cuddling fondling hugging kissing necking petting smooching snuggling,affectionate play (or foreplay without contact with the genital organs)
+27579,caret,a mark used by an author or editor to indicate where something is to be inserted into a text
+27580,caretaker,an official who performs the duties of an office temporarily; "he acted as a caretaker until a new president could be elected"
+27581,caretaker,a custodian who is hired to take care of something (property or a person)
+27582,carful,the quantity that a car will hold
+27583,cargo lading freight load loading payload shipment consignment,goods carried by a large vehicle
+27584,cargo_area cargo_deck cargo_hold hold storage_area,the space in a ship or aircraft for storing cargo
+27585,cargo_container,a large container for freight
+27586,cargo_cult,(Melanesia) the followers of one of several millenarian cults that believe salvation will come in the form of wealth (`cargo') brought by westerners; some ascribe divine attributes to westerners on first contact (especially to missionaries)
+27587,cargo_cult,a religious cult that anticipates a time of joy, serenity, and justice when salvation comes
+27588,cargo_door,door used to load or unload cargo
+27589,cargo_hatch,hatch opening into the cargo compartment
+27590,cargo_helicopter,a helicopter that carries cargo
+27591,cargo_liner,a liner that carries cargo
+27592,cargo_ship cargo_vessel,a ship designed to carry cargo
+27593,carhop,a waiter at a drive-in restaurant
+27594,carib_wood Sabinea_carinalis,small Dominican tree bearing masses of large crimson flowers before the fine pinnate foliage emerges
+27595,caribou reindeer Greenland_caribou Rangifer_tarandus,Arctic deer with large antlers in both sexes; called `reindeer' in Eurasia and `caribou' in North America
+27596,caricature imitation impersonation,a representation of a person that is exaggerated for comic effect
+27597,caricature_plant Graptophyllum_pictum,tropical Old World shrub having purple or red tubular flowers and leaf markings resembling the profile of a human face
+27598,caricaturist,someone who parodies in an exaggerated manner
+27599,carillon,set of bells hung in a bell tower
+27600,carillonneur,a musician who plays a carillon
+27601,carina,any of various keel-shaped structures or ridges such as that on the breastbone of a bird or that formed by the fused petals of a pea blossom
+27602,carina_fornicis,ridge on the lower surface of the fornix of the brain
+27603,carinate carinate_bird flying_bird,birds having keeled breastbones for attachment of flight muscles
+27604,carioca,music composed for dancing the carioca
+27605,carioca,a lively ballroom dance that resembles the samba
+27606,carissa,a shrub of the genus Carissa having fragrant white flowers and plumlike red to purple-black fruits
+27607,carissa_plum natal_plum,edible scarlet plumlike fruit of a South African plant
+27608,carjacking,the violent theft of an occupied car
+27609,carline_thistle,a thistle of the genus Carlina
+27610,carload,a gathering of passengers sufficient to fill an automobile
+27611,carminative,medication that prevents the formation of gas in the alimentary tract or eases its passing
+27612,carnal_abuse,any lascivious contact by an adult with the sexual organs of a child (especially not involving sexual intercourse)
+27613,carnallite,a white or reddish mineral consisting of hydrous chlorides of potassium and magnesium; used as a fertilizer and as a source of potassium and magnesium
+27614,carnassial_tooth,the last upper premolar and first lower molar teeth of a carnivore; having sharp edges for cutting flesh
+27615,carnation,a pink or reddish-pink color
+27616,carnation clove_pink gillyflower Dianthus_caryophyllus,Eurasian plant with pink to purple-red spice-scented usually double flowers; widely cultivated in many varieties and many colors
+27617,carnauba carnauba_palm wax_palm Copernicia_prunifera Copernicia_cerifera,Brazilian fan palm having an edible root; source of a useful leaf fiber and a brittle yellowish wax
+27618,carnauba_wax carnauba,hard yellowish to brownish wax from leaves of the carnauba palm used especially in floor waxes and polishes
+27619,carnelian cornelian,a translucent red or orange variety of chalcedony
+27620,carnival,a festival marked by merrymaking and processions
+27621,carnival fair funfair,a traveling show; having sideshows and rides and games of skill etc.
+27622,carnivore,a terrestrial or aquatic flesh-eating mammal; "terrestrial carnivores have four or five clawed digits on each limb"
+27623,carnivore,any animal that feeds on flesh; "Tyrannosaurus Rex was a large carnivore"; "insectivorous plants are considered carnivores"
+27624,carnivorous_bat microbat,typically having large ears and feeding primarily on insects; worldwide in distribution
+27625,carnivorous_plant,plants adapted to attract and capture and digest primarily insects but also other small animals
+27626,carnosaur,large carnivorous bipedal dinosaur having huge claws
+27627,carnotite,a yellow radioactive mineral; an ore of uranium and radium and vanadium
+27628,carob carob_bean algarroba_bean algarroba locust_bean locust_pod,long pod containing small beans and sweetish edible pulp; used as animal feed and source of a chocolate substitute
+27629,carob carob_powder Saint-John's-bread,powder from the ground seeds and pods of the carob tree; used as a chocolate substitute
+27630,carob carob_tree carob_bean_tree algarroba Ceratonia_siliqua,evergreen Mediterranean tree with edible pods; the biblical carob
+27631,carob_bar,a bar of candy made with carob powder
+27632,caroche,a luxurious carriage suitable for nobility in the 16th and 17th century
+27633,carol,a joyful song (usually celebrating the birth of Christ)
+27634,carol Christmas_carol,joyful religious song celebrating the birth of Christ
+27635,caroler caroller,a singer of carols
+27636,caroling,singing joyful religious songs (especially at Christmas)
+27637,carom cannon,a shot in billiards in which the cue ball contacts one object ball and then the other
+27638,carotene,yellow or orange-red fat-soluble pigments in plants
+27639,carotenemia xanthemia,excess carotene in the blood stream; can cause the skin to turn a pale yellow or red color
+27640,carotenoid,any of a class of highly unsaturated yellow to red pigments occurring in plants and animals
+27641,carotid_artery arteria_carotis,either of two major arteries of the neck and head; branches from the aorta
+27642,carotid_body,a chemoreceptor located near the bifurcations of the carotid arteries; monitors oxygen content of the blood and helps control respiration
+27643,carotid_plexus plexus_caroticus,a plexus of nerves surrounding the internal carotid artery
+27644,carouse carousal bender toot booze-up,revelry in drinking; a merry drinking party
+27645,carousel carrousel luggage_carousel luggage_carrousel,a conveyer belt that carries luggage to be claimed by air travelers
+27646,carousel carrousel merry-go-round roundabout whirligig,a large, rotating machine with seats for children to ride or amusement
+27647,carp,the lean flesh of a fish that is often farmed; can be baked or braised
+27648,carp,any of various freshwater fish of the family Cyprinidae
+27649,carpal_bone carpal wrist_bone,any of the eight small bones of the wrist of primates
+27650,carpal_tunnel,a passageway in the wrist through which nerves and the flexor muscles of the hands pass
+27651,carpal_tunnel_syndrome,a painful disorder caused by compression of a nerve in the carpal tunnel; characterized by discomfort and weakness in the hands and fingers and by sensations of tingling, burning or numbness
+27652,carpel,a simple pistil or one element of a compound pistil
+27653,carpenter,a woodworker who makes or repairs wooden objects
+27654,carpenter's_hammer claw_hammer clawhammer,a hammer with a cleft at one end for pulling nails
+27655,carpenter's_kit tool_kit,a set of carpenter's tools
+27656,carpenter's_level,a straight bar of light metal with a spirit level in it
+27657,carpenter's_mallet,a short-handled mallet with a wooden head used to strike a chisel or wedge
+27658,carpenter's_rule,a rule used by a carpenter
+27659,carpenter's_square,a steel square used by carpenters; larger than a try square
+27660,carpenter_ant,ant that nests in decaying wood in which it bores tunnels for depositing eggs
+27661,carpenter_bee,large solitary bee that lays eggs in tunnels bored into wood or plant stems
+27662,carpenteria Carpenteria_californica,California evergreen shrub having glossy opposite leaves and terminal clusters of a few fragrant white flowers
+27663,carpentry woodworking woodwork,the craft of a carpenter: making things out of wood
+27664,carper niggler,someone who constantly criticizes in a petty way
+27665,carpet,a natural object that resembles or suggests a carpet; "a carpet of flowers"; "the larvae of some moths spin a web that resembles a carpet"
+27666,carpet_beater rug_beater,implement for beating dust out of carpets
+27667,carpet_beetle carpet_bug,small beetle whose larvae are household pests feeding on woolen fabrics
+27668,carpet_bombing area_bombing saturation_bombing,an extensive and systematic bombing intended to devastate a large target
+27669,carpet_knight,a knight who spends his time in luxury and idleness (knighted on the carpet at court rather than on the field of battle)
+27670,carpet_loom,a loom for weaving carpeting
+27671,carpet_moth tapestry_moth Trichophaga_tapetzella,larvae feed on carpets and other woolens
+27672,carpet_pad rug_pad underlay underlayment,a pad placed under a carpet
+27673,carpet_shark Orectolobus_barbatus,shark of the western Pacific with flattened body and mottled skin
+27674,carpet_snake Python_variegatus Morelia_spilotes_variegatus,Australian python with a variegated pattern on its back
+27675,carpet_sweeper sweeper,a cleaning implement with revolving brushes that pick up dirt as the implement is pushed over a carpet
+27676,carpet_tack,a tack used to nail down carpets
+27677,carpetbag,traveling bag made of carpet; widely used in 19th century
+27678,carpetbagger,an outsider who seeks power or success presumptuously; "after the Civil War the carpetbaggers from the north tried to take over the south"
+27679,carpetweed Indian_chickweed Molluga_verticillata,annual prostrate mat-forming weed having whorled leaves and small greenish-white flowers; widespread throughout North America
+27680,carpophore,a slender stalk that furnishes an axis for a carpel
+27681,carport car_port,garage for one or two cars consisting of a flat roof supported on poles
+27682,carpospore,a nonmotile spore of red algae
+27683,carrack carack,a large galleon sailed in the Mediterranean as a merchantman
+27684,carrageenin carrageenan,a colloidal extract from carrageen seaweed and other red algae
+27685,carrel carrell cubicle stall,small individual study area in a library
+27686,carriage,a machine part that carries something else
+27687,carriage bearing posture,characteristic way of bearing one's body; "stood with good posture"
+27688,carriage equipage rig,a vehicle with wheels drawn by one or more horses
+27689,carriage_bolt,a roundheaded bolt for timber; threaded along part of the shank; inserted into holes already drilled
+27690,carriage_return,the operation that prepares for the next character to be printed or displayed as the first character on a line
+27691,carriage_trade,trade from upper-class customers
+27692,carriage_wrench,a wrench designed for use with carriage bolts
+27693,carriageway,one of the two sides of a motorway where traffic travels in one direction only usually in two or three lanes
+27694,carrick_bend,a knot used to connect the ends of two large ropes or hawsers
+27695,carrick_bitt,either of a pair of strong posts that support a windlass on a ship's deck
+27696,carrier,an inactive substance that is a vehicle for a radioactive tracer of the same substance and that assists in its recovery after some chemical reaction
+27697,carrier,a self-propelled wheeled vehicle designed specifically to carry something; "refrigerated carriers have revolutionized the grocery business"
+27698,carrier,a rack attached to a vehicle; for carrying luggage or skis or the like
+27699,carrier,(genetics) an organism that possesses a recessive gene whose effect is masked by a dominant allele; the associated trait is not apparent but can be passed on to offspring
+27700,carrier bearer toter,someone whose employment involves carrying something; "the bonds were transmitted by carrier"
+27701,carrier common_carrier,a person or firm in the business of transporting people or goods or messages
+27702,carrier immune_carrier,(medicine) a person (or animal) who has some pathogen to which he is immune but who can pass it on to others
+27703,carrier newsboy,a boy who delivers newspapers
+27704,carrier_pigeon,a homing pigeon used to carry messages
+27705,carrier_wave carrier,a radio wave that can be modulated in order to transmit a signal
+27706,carrion,the dead and rotting body of an animal; unfit for human food
+27707,carron_oil,an ointment formerly used to treat burns
+27708,carrot,deep orange edible root of the cultivated carrot plant
+27709,carrot,orange root; important source of carotene
+27710,carrot,promise of reward as in "carrot and stick"; "used the carrot of subsidized housing for the workers to get their vote"
+27711,carrot cultivated_carrot Daucus_carota_sativa,perennial plant widely cultivated as an annual in many varieties for its long conical orange edible roots; temperate and tropical regions
+27712,carrot_juice,usually freshly squeezed juice of carrots
+27713,carrot_pudding,pudding made with grated carrots
+27714,carrot_stick,a stick of carrot eaten raw
+27715,carry,the act of carrying something
+27716,carry-over carry-forward,the accumulated and undivided profits of a corporation after provision has been made for dividends and reserves
+27717,carryall holdall tote tote_bag,a capacious bag or basket
+27718,carrycot,box-shaped baby bed with handles (for a baby to sleep in while being carried)
+27719,carrying_charge,charge made for carrying an account or for merchandise sold on an installment plan
+27720,carrying_cost carrying_charge,the opportunity cost of unproductive assets; the expense incurred by ownership
+27721,cart,a heavy open wagon usually having two wheels and drawn by an animal
+27722,cartage carting,the work of taking something away in a cart or truck and disposing of it
+27723,carte_blanche,complete freedom or authority to act
+27724,carter,someone whose work is driving carts
+27725,carthorse cart_horse drayhorse,draft horse kept for pulling carts
+27726,cartilage gristle,tough elastic tissue; mostly converted to bone in adults
+27727,cartilage_bone,any bone that develops within cartilage rather than a fibrous tissue
+27728,cartilaginification,abnormal formation of cartilage from other tissues; observed in some Asians
+27729,cartilaginous_fish chondrichthian,fishes in which the skeleton may be calcified but not ossified
+27730,cartilaginous_structure,body structure given shape by cartilage
+27731,cartilaginous_tube,a duct with cartilaginous walls
+27732,cartload,the quantity that a cart holds
+27733,cartographer map_maker,a person who makes maps
+27734,carton,a box made of cardboard; opens by flaps on top
+27735,carton cartonful,the quantity contained in a carton
+27736,cartoon animated_cartoon toon,a film made by photographing a series of cartoon drawings to give the illusion of movement when projected in rapid sequence
+27737,cartoon sketch,a humorous or satirical drawing published in a newspaper or magazine
+27738,cartoonist,a person who draws cartoons
+27739,cartouche cartouch,a cartridge (usually with paper casing)
+27740,cartridge,a module designed to be inserted into a larger piece of equipment; "he loaded a cartridge of fresh tape into the tape deck"
+27741,cartridge,ammunition consisting of a cylindrical casing containing an explosive charge and a bullet; fired from a rifle or handgun
+27742,cartridge pickup,an electro-acoustic transducer that is the part of the arm of a record player that holds the needle and that is removable
+27743,cartridge_belt,a broad belt with loops or pockets for holding ammunition
+27744,cartridge_brass,an alloy of copper and zinc (containing about 30% zinc) that is wrought into cartridges or tubing
+27745,cartridge_ejector ejector,a mechanism in a firearm that ejects the empty shell case after firing
+27746,cartridge_extractor cartridge_remover extractor,a mechanism in a firearm that pulls an empty shell case out of the chamber and passes it to the ejector
+27747,cartridge_fuse,a fuse cased in a tube
+27748,cartridge_holder cartridge_clip clip magazine,a metal frame or container holding cartridges; can be inserted into an automatic gun
+27749,cartridge_paper,thick white paper for pencil and ink drawings
+27750,cartridge_paper,paper for making cartridge cases
+27751,cartwheel,a wheel that has wooden spokes and a metal rim
+27752,cartwheel,acrobatic revolutions with the body turned sideways and the arms and legs outstretched like the spokes of a wheel
+27753,cartwright,a workman who makes and repairs carts and wagons
+27754,caruncle caruncula,an outgrowth on a plant or animal such as a fowl's wattle or a protuberance near the hilum of certain seeds
+27755,carvedilol,beta blocker that can reduce the progression of heart failure in individuals whose disease is not advanced
+27756,carving,a sculpture created by removing material (as wood or ivory or stone) in order to create a desired shape
+27757,carving cutting,removing parts from hard material to create a desired pattern or shape
+27758,carving_fork,a large fork used in carving cooked meat
+27759,carving_knife,a large knife used to carve cooked meat
+27760,caryatid,a supporting column carved in the shape of a person
+27761,caryophyllaceous_plant,a plant of the family Caryophyllaceae
+27762,caryophylloid_dicot_family,family of relatively early dicotyledonous plants including mostly flowers
+27763,caryophylloid_dicot_genus,genus of relatively early dicotyledonous plants including mostly flowers
+27764,casaba casaba_melon,melon having yellowish rind and whitish flesh
+27765,cascade,a small waterfall or series of small waterfalls
+27766,cascade,a succession of stages or operations or processes or units; "progressing in severity as though a cascade of genetic damage was occurring"; "separation of isotopes by a cascade of processes"
+27767,cascade_everlasting Ozothamnus_secundiflorus Helichrysum_secundiflorum,shrub with white woolly branches and woolly leaves having fragrant flowers forming long sprays; flowers suitable for drying; sometimes placed in genus Helichrysum
+27768,cascade_liquefier,an apparatus used to liquefy air or oxygen etc.
+27769,cascade_penstemon Penstemon_serrulatus,whorls of deep blue to dark purple flowers at tips of erect leafy stems; moist places from British Columbia to Oregon
+27770,cascade_transformer,a number of transformers in series; provides a high-voltage source
+27771,cascades_frog Rana_cascadae,mountain frog found near water; of United States Northwest to California
+27772,cascara cascara_sagrada chittam_bark chittem_bark,dried bark of the cascara buckthorn used as a laxative
+27773,cascara_buckthorn bearberry bearwood chittamwood chittimwood Rhamnus_purshianus,shrubby tree of the Pacific coast of the United States; yields cascara sagrada
+27774,cascarilla Croton_eluteria,West Indian shrub with aromatic bark
+27775,cascarilla_bark eleuthera_bark sweetwood_bark,aromatic bark of cascarilla; used as a tonic and for making incense
+27776,case,a specific state of mind that is temporary; "a case of the jitters"
+27777,case,a person requiring professional services; "a typical case was the suburban housewife described by a marriage counselor"
+27778,case,a problem requiring investigation; "Perry Mason solved the case of the missing heir"
+27779,case,a statement of facts and reasons used to support an argument; "he stated his case clearly"
+27780,case,the actual state of things; "that was not the case"
+27781,case,a portable container for carrying several objects; "the musicians left their instrument cases backstage"
+27782,case caseful,the quantity contained in a case
+27783,case compositor's_case typesetter's_case,(printing) the receptacle in which a compositor has his type, which is divided into compartments for the different letters, spaces, or numbers; "for English, a compositor will ordinarily have two such cases, the upper case containing the capitals and the lower case containing the small letters"
+27784,case display_case showcase vitrine,a glass container used to store and display items in a shop or museum or home
+27785,case grammatical_case,nouns or pronouns or adjectives (often marked by inflection) related in some way to other words in a sentence
+27786,case instance example,an occurrence of something; "it was a case of bad judgment"; "another instance occurred yesterday"; "but there is always the famous example of the Smiths"
+27787,case pillowcase slip pillow_slip,bed linen consisting of a cover for a pillow; "the burglar carried his loot in a pillowcase"
+27788,case-fatality_proportion,the number of cases of a disease ending in death divided by the number of cases of the disease; usually expressed as a percentage or as the number of deaths per 1000 cases
+27789,case-hardened_steel,steel with a surface that is much harder than the interior metal
+27790,case-to-infection_proportion case-to-infection_ratio,the number of cases of a disease divided by the number of infections with the agent that causes the disease
+27791,case_agreement,agreement in grammatical case between words in the same construction
+27792,case_history,detailed record of the background of a person or group under study or treatment
+27793,case_knife,a metal blade with a handle; used as cutlery
+27794,case_knife sheath_knife,a knife with a fixed blade that is carried in a sheath
+27795,case_law precedent common_law,(civil law) a law established by following earlier judicial decisions
+27796,case_load,the number of cases handled in a given period of time (as by a court or agency)
+27797,case_officer,an operative who also serves as an official staffer of an intelligence service
+27798,case_shot canister canister_shot,a metallic cylinder packed with shot and used as ammunition in a firearm
+27799,case_study,a careful study of some social unit (as a corporation or division within a corporation) that attempts to determine what factors led to its success or failure
+27800,case_study,a detailed analysis of a person or group from a social or psychological or medical point of view
+27801,casebook,a book in which detailed written records of a case are kept and which are a source of information for subsequent work
+27802,casein,a milk protein used in making e.g. plastics and adhesives
+27803,casein_glue,made from casein; used for e.g. plywood and cabinetwork
+27804,casein_paint casein,a water-base paint made with a protein precipitated from milk
+27805,casemaking_clothes_moth Tinea_pellionella,the larvae live in tubes of its food material fastened with silk that it spins
+27806,casement,a window sash that is hinged (usually on one side)
+27807,casement_window,a window with one or more casements
+27808,casern,military barracks in a garrison town
+27809,casework,close sociological study of a maladjusted person or family for diagnosis and treatment
+27810,caseworm,insect larva that constructs a protective case around its body
+27811,cash hard_cash hard_currency,money in the form of bills or coins; "there is a desperate shortage of hard cash"
+27812,cash immediate_payment,prompt payment for goods or services in currency or by check
+27813,cash_account,an account with a securities brokerage whose transactions are settled on a cash basis
+27814,cash_bar,a counter at a large party where you can purchase drinks by the glass
+27815,cash_basis,a method of accounting in which each item is entered as payments are received or made
+27816,cash_card cashcard,a credit card that entitles the holder to receive cash
+27817,cash_crop,a readily salable crop that is grown and gathered for the market (as vegetables or cotton or tobacco)
+27818,cash_equivalent,a highly liquid debt instrument with maturities of less than three months
+27819,cash_flow,the excess of cash revenues over cash outlays in a give period of time (not including non-cash expenses)
+27820,cash_machine cash_dispenser automated_teller_machine automatic_teller_machine automated_teller automatic_teller ATM,an unattended machine (outside some banks) that dispenses money when a personal coded card is used
+27821,cash_register register,a cashbox with an adding machine to register transactions; used in shops to add up the bill
+27822,cash_surrender_value,the amount that the insurance company will pay on a given life insurance policy if the policy is cancelled prior to the death of the insured
+27823,cashbox money_box till,a strongbox for holding cash
+27824,cashew cashew_nut,kidney-shaped nut edible only when roasted
+27825,cashew cashew_tree Anacardium_occidentale,tropical American evergreen tree bearing kidney-shaped nuts that are edible only when roasted
+27826,cashier,a person responsible for receiving payments for goods and services (as in a shop or restaurant)
+27827,cashier's_check treasurer's_check cashier's_cheque treasurer's_cheque,a check issued by the officer of a bank on the banks own account (not that of a private person); "cashier's checks are as good as cash"
+27828,cashmere,the wool of the Kashmir goat
+27829,cashmere,a soft fabric made from the wool of the Cashmere goat
+27830,casing,the outermost covering of a pneumatic tire
+27831,casing case,the enclosing frame around a door or window opening; "the casings had rotted away and had to be replaced"
+27832,casino cassino,a card game in which cards face up on the table are taken with eligible cards in the hand
+27833,casino gambling_casino,a public building for gambling and entertainment
+27834,cask caskful,the quantity a cask will hold
+27835,casket jewel_casket,small and often ornate box for holding jewels or other valuables
+27836,caspase,any of a group of proteases that mediate apoptosis
+27837,casque,(15-16th century) any armor for the head; usually ornate without a visor
+27838,casquet casquetel,a light open casque without a visor or beaver
+27839,cassareep,a flavoring made by boiling down the juice of the bitter cassava; used in West Indian cooking
+27840,cassava casava,any of several plants of the genus Manihot having fleshy roots yielding a nutritious starch
+27841,cassava cassava_starch manioc manioca,a starch made by leaching and drying the root of the cassava plant; the source of tapioca; a staple food in the tropics
+27842,cassava manioc,cassava root eaten as a staple food after drying and leaching; source of tapioca
+27843,casserole,food cooked and served in a casserole
+27844,casserole,large deep dish in which food can be cooked and served
+27845,cassette,a container that holds a magnetic tape used for recording or playing sound or video
+27846,cassette_deck,a tape deck for playing and recording cassette tapes
+27847,cassette_player,electronic equipment for playing cassettes
+27848,cassette_recorder,a recorder for recording or playing cassettes
+27849,cassette_tape,a cassette that contains magnetic tape
+27850,cassia,any of various trees or shrubs of the genus Cassia having pinnately compound leaves and usually yellow flowers followed by long seedpods
+27851,cassia cassia-bark_tree Cinnamomum_cassia,Chinese tree with aromatic bark; yields a less desirable cinnamon than Ceylon cinnamon
+27852,cassia_bark Chinese_cinnamon,aromatic bark of the cassia-bark tree; less desirable as a spice than Ceylon cinnamon bark
+27853,cassiri,a drink resembling beer; made from fermented cassava juice
+27854,cassiterite,a hard heavy dark mineral that is the chief source of tin
+27855,cassock,a black garment reaching down to the ankles; worn by priests or choristers
+27856,cassowary,large black flightless bird of Australia and New Guinea having a horny head crest
+27857,cast cast_of_characters dramatis_personae,the actors in a play
+27858,cast casting,object formed by a mold
+27859,cast mold mould stamp,the distinctive form in which a thing is made; "pottery of this cast was found throughout the region"
+27860,cast plaster_cast plaster_bandage,bandage consisting of a firm covering (often made of plaster of Paris) that immobilizes broken bones while they heal
+27861,cast roll,the act of throwing dice
+27862,cast_iron,an alloy of iron containing so much carbon that it is brittle and so cannot be wrought but must be shaped by casting
+27863,castaway shipwreck_survivor,a shipwrecked person
+27864,caste,social status or position conferred by a system based on class; "lose caste by doing work beneath one's station"
+27865,caste,(Hinduism) a hereditary social class among Hindus; stratified according to ritual purity
+27866,caste,a social class separated from others by distinctions of hereditary rank or profession or wealth
+27867,caste,in some social insects (such as ants) a physically distinct individual or group of individuals specialized to perform certain functions in the colony
+27868,caste_system,a social structure in which classes are determined by heredity
+27869,caster,a worker who casts molten metal into finished products
+27870,caster castor,a shaker with a perforated top for sprinkling powdered sugar
+27871,caster castor,a pivoting roller attached to the bottom of furniture or trucks or portable machines to make them movable
+27872,castigation chastisement,verbal punishment
+27873,castigation earful bawling_out chewing_out upbraiding going-over dressing_down,a severe scolding
+27874,castile_soap,a good hard soap made from olive oil and sodium hydroxide
+27875,casting,the choice of actors to play particular roles in a play or movie
+27876,casting cast,the act of throwing a fishing line out over the water by means of a rod and reel
+27877,casting_lots drawing_lots sortition,making a chance decision by using lots (straws or pebbles etc.) that are thrown or drawn
+27878,casting_vote,the deciding vote cast by the presiding officer to resolve a tie
+27879,castle,a large building formerly occupied by a ruler and fortified against attack
+27880,castle castling,interchanging the positions of the king and a rook
+27881,castle rook,(chess) the piece that can move any number of unoccupied squares in a direction parallel to the sides of the chessboard
+27882,castor-oil_plant castor_bean_plant palma_christi palma_christ Ricinus_communis,large shrub of tropical Africa and Asia having large palmate leaves and spiny capsules containing seeds that are the source of castor oil and ricin; widely naturalized throughout the tropics
+27883,castor_bean,the toxic seed of the castor-oil plant; source of castor oil
+27884,castor_oil,a purgative extracted from the seed of the castor-oil plant; used in paint and varnish as well as medically
+27885,castor_sugar caster_sugar,very finely granulated sugar that was formerly sprinkled from a castor
+27886,castration,surgical removal of the testes or ovaries (usually to inhibit hormone secretion in cases of breast cancer in women or prostate cancer in men); "bilateral castration results in sterilization"
+27887,castration emasculation,neutering a male animal by removing the testicles
+27888,castration_anxiety,(psychoanalysis) anxiety resulting from real or imagined threats to your sexual functions; originally applied only to men but can in principle apply to women
+27889,castrato,a male singer who was castrated before puberty and retains a soprano or alto voice
+27890,casualness familiarity,a casual manner
+27891,casualty,someone injured or killed or captured or missing in a military engagement
+27892,casualty,a decrease of military personnel or equipment
+27893,casualty injured_party,someone injured or killed in an accident
+27894,casuarina,any of various trees and shrubs of the genus Casuarina having jointed stems and whorls of scalelike leaves; some yield heavy hardwood
+27895,casuist sophist,someone whose reasoning is subtle and often specious
+27896,casuistry,argumentation that is specious or excessively subtle and intended to be misleading
+27897,casuistry,moral philosophy based on the application of general ethical principles to resolve moral dilemmas
+27898,casus_belli,an event used to justify starting a war
+27899,cat,a spiteful woman gossip; "what a cat she is!"
+27900,cat true_cat,feline mammal usually having thick soft fur and no ability to roar: domestic cats; wildcats
+27901,cat's-claw catclaw black_bead Pithecellobium_unguis-cati,erect shrub with small if any spines having racemes of white to yellow flowers followed by curved pointed pods and black shiny seeds; West Indies and Florida
+27902,cat's-ear,any of several plants of the genus Calochortus having flowers with petals shaped like cat's ears
+27903,cat's-ear California_dandelion capeweed gosmore Hypochaeris_radicata,European weed widely naturalized in North America having yellow flower heads and leaves resembling a cat's ears
+27904,cat's-paw,a hitch in the middle of rope that has two eyes into which tackle can be hooked
+27905,cat's-tail bullrush bulrush nailrod reed_mace reedmace Typha_latifolia,tall marsh plant with cylindrical seed heads that explode when mature shedding large quantities of down; its long flat leaves are used for making mats and chair seats; of North America, Europe, Asia and North Africa
+27906,cat's_cradle,a game played with string looped over the fingers
+27907,cat's_eye,any of various gems (as chrysoberyl or chalcedony) that reflect light when cut in a rounded shape
+27908,cat's_foot cat's_feet pussytoes Antennaria_dioica,low-growing perennial herb having leaves with whitish down and clusters of small white flowers
+27909,cat-o'-nine-tails cat,a whip with nine knotted cords; "British sailors feared the cat"
+27910,cat_and_mouse cat_and_rat,a game for children in which the players form a circle and join hands; they raise their hands to let a player inside the circle or lower their hands to bar a second player who is chasing the first
+27911,cat_box,a receptacle for cat excrement
+27912,cat_fancier,a person who breeds and cares for cats
+27913,cat_flea Ctenocephalides_felis,flea that breeds chiefly on cats and dogs and rats
+27914,cat_food,food prepared for cats
+27915,cat_rig,rig of a catboat
+27916,cat_scratch_disease,a disease thought to be transmitted to humans by a scratch from a cat
+27917,cat_shark,small bottom-dwelling sharks with cat-like eyes; found along continental slopes
+27918,cat_thyme marum Teucrium_marum,Mediterranean germander having small hairy leaves and reddish purple flowers; attractive to cats
+27919,catabiosis,normal aging of cells
+27920,catabolism katabolism dissimilation destructive_metabolism,breakdown in living organisms of more complex substances into simpler ones together with release of energy
+27921,catachresis,strained or paradoxical use of words either in error (as `blatant' to mean `flagrant') or deliberately (as in a mixed metaphor: `blind mouths')
+27922,catacomb,an underground tunnel with recesses where bodies were buried (as in ancient Rome)
+27923,catafalque,a decorated bier on which a coffin rests in state during a funeral
+27924,catalase,enzyme found in most plant and animal cells that functions as an oxidative catalyst; decomposes hydrogen peroxide into oxygen and water
+27925,catalectic,(prosody) a line of verse that lacks a syllable in the last metrical foot
+27926,catalepsy,a trancelike state with loss of voluntary motion and failure to react to stimuli
+27927,cataleptic,a person suffering from catalepsy
+27928,catalexis,the absence of a syllable in the last foot of a line or verse
+27929,catalog catalogue,a complete list of things; usually arranged systematically; "it does not pretend to be a catalog of his achievements"
+27930,catalog catalogue,a book or pamphlet containing an enumeration of things; "he found it in the Sears catalog"
+27931,cataloged_procedure,a set of control statements that have been placed in a library and can be retrieved by name
+27932,cataloger cataloguer,a librarian who classifies publications according to a categorial system
+27933,catalpa Indian_bean,tree of the genus Catalpa with large leaves and white flowers followed by long slender pods
+27934,catalufa Priacanthus_arenatus,brightly colored carnivorous fish of western Atlantic and West Indies waters
+27935,catalysis contact_action,acceleration of a chemical reaction induced the presence of material that is chemically unchanged at the end of the reaction; "of the top 50 commodity chemicals, 30 are created directly by catalysis and another 6 are made from raw materials that are catalytically produced"
+27936,catalyst,something that causes an important event to happen; "the invasion acted as a catalyst to unite the country"
+27937,catalyst accelerator,(chemistry) a substance that initiates or accelerates a chemical reaction without itself being affected
+27938,catalytic_converter,a converter that uses a platinum-iridium catalyst to oxidize pollutants and carbon monoxide into carbon dioxide and water; an antipollution device on an automotive exhaust system
+27939,catalytic_cracker cat_cracker,a chemical reactor for converting oils with high boiling points into fuels with lower boiling points in the presence of a catalyst
+27940,catamaran,a boat with two parallel hulls held together by single deck
+27941,catamite,a boy who submits to a sexual relationship with a man
+27942,catananche,any of several plants of the genus Catananche having long-stalked heads of blue or yellow flowers
+27943,cataphasia,a speech disorder in which the same word is repeated several times in succession
+27944,cataphatism,the religious belief that God has given enough clues to be known to humans positively and affirmatively (e.g., God created Adam `in his own image')
+27945,cataphyll,a reduced or scarcely developed leaf at the start of a plant's life (i.e., cotyledons) or in the early stages of leaf development
+27946,cataplasia,(biology) degenerative reversion of cells or tissue to a less differentiated or more primitive form
+27947,catapult arbalest arbalist ballista bricole mangonel onager trebuchet trebucket,an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles
+27948,catapult launcher,a device that launches aircraft from a warship
+27949,cataract,an eye disease that involves the clouding or opacification of the natural lens of the eye
+27950,cataract,a large waterfall; violent rush of water over a precipice
+27951,cataract_surgery,eye surgery that involves removing all or part of the lens and replacing it with an intraocular lens implant
+27952,catarrh,inflammation of the nose and throat with increased production of mucus
+27953,catarrhal_fever,any of several disease of livestock marked by fever and edema of the respiratory tract
+27954,catastrophe cataclysm,a sudden violent change in the earth's surface
+27955,catastrophe disaster,a state of extreme (usually irremediable) ruin and misfortune; "lack of funds has resulted in a catastrophe for our school system"; "his policies were a disaster"
+27956,catastrophic_illness,severe illness requiring prolonged hospitalization or recovery; usually involves high costs for hospitals and doctors and medicines
+27957,catatonia,extreme tonus; muscular rigidity; a common symptom in catatonic schizophrenia
+27958,catatonic_schizophrenia catatonic_type_schizophrenia catatonia,a form of schizophrenia characterized by a tendency to remain in a fixed stuporous state for long periods; the catatonia may give way to short periods of extreme excitement
+27959,catbird grey_catbird gray_catbird Dumetella_carolinensis,North American songbird whose call resembles a cat's mewing
+27960,catboat,a sailboat with a single mast set far forward
+27961,catcall,a cry expressing disapproval
+27962,catch,anything that is caught (especially if it is worth catching); "he shared his catch with the others"
+27963,catch,a break or check in the voice (usually a sign of strong emotion)
+27964,catch,a fastener that fastens or locks a door or window
+27965,catch,a cooperative game in which a ball is passed back and forth; "he played catch with his son in the backyard"
+27966,catch gimmick,a drawback or difficulty that is not readily evident; "it sounds good but what's the catch?"
+27967,catch grab snatch snap,the act of catching an object with the hands; "Mays made the catch with his back to the plate"; "he made a grab for the ball before it landed"; "Martin's snatch at the bridle failed and the horse raced away"; "the infielder's snap and throw was a single motion"
+27968,catch haul,the quantity that was caught; "the catch was only 10 fish"
+27969,catch match,a person regarded as a good matrimonial prospect
+27970,catch stop,a restraint that checks the motion of something; "he used a book as a stop to hold the door open"
+27971,catch_crop,a crop that grows quickly (e.g. lettuce) and can be planted between two regular crops grown in successive seasons or between two rows of crops in the same season
+27972,catchall,an enclosure or receptacle for odds and ends
+27973,catcher,the position on a baseball team of the player who is stationed behind home plate and who catches the balls that the pitcher throws; "a catcher needs a lot of protective equipment"; "a catcher plays behind the plate"
+27974,catcher backstop,(baseball) the person who plays the position of catcher
+27975,catcher's_mask,a mask to protect the face of the catcher in baseball
+27976,catching,(baseball) playing the position of catcher on a baseball team
+27977,catching contracting,becoming infected; "catching cold is sometimes unavoidable"; "the contracting of a serious illness can be financially catastrophic"
+27978,catchment,a structure in which water is collected (especially a natural drainage area)
+27979,catchphrase catch_phrase,a phrase that has become a catchword
+27980,catechesis,oral religious instruction (as before baptism or confirmation)
+27981,catechetical_instruction,teaching religious principles by questions and answers
+27982,catechin,a tannic acid that is extracted from black catechu as a white crystalline substance
+27983,catechism,a series of question put to an individual (such as a political candidate) to elicit their views
+27984,catechism,an elementary book summarizing the principles of a Christian religion; written as questions and answers
+27985,catechist,one who instructs catechumens in preparation for baptism (especially one using a catechism)
+27986,catecholamine,any of a group of chemicals including epinephrine and norepinephrine that are produced in the medulla of the adrenal gland
+27987,catechu Jerusalem_thorn Acacia_catechu,East Indian spiny tree having twice-pinnate leaves and yellow flowers followed by flat pods; source of black catechu
+27988,catechumen neophyte,a new convert being taught the principles of Christianity by a catechist
+27989,categorem categoreme,a categorematic expression; a term capable of standing alone as the subject or predicate of a logical proposition; "names are called categorems"
+27990,categorical_imperative,the moral principle that behavior should be determined by duty
+27991,categorization categorisation classification compartmentalization compartmentalisation assortment,the act of distributing things into classes or categories of the same type
+27992,category,a general concept that marks divisions or coordinations in a conceptual scheme
+27993,catena,a chain of connected ideas or passages or objects so arranged that each member is closely related to the preceding and following members (especially a series of patristic comments elucidating Christian dogma)
+27994,catenary,the curve theoretically assumed by a perfectly flexible and inextensible cord of uniform density and cross section hanging freely from two fixed points
+27995,caterer,someone who provides food and service (as for a party)
+27996,catering,providing food and services
+27997,caterpillar,a wormlike and often brightly colored and hairy or spiny larva of a butterfly or moth
+27998,caterwaul,the yowling sound made by a cat in heat
+27999,catfish mudcat,flesh of scaleless food fish of the southern United States; often farmed
+28000,catfish siluriform_fish,any of numerous mostly freshwater bottom-living fishes of Eurasia and North America with barbels like whiskers around the mouth
+28001,catgut goat's_rue wild_sweet_pea Tephrosia_virginiana,perennial subshrub of eastern North America having downy leaves yellowish and rose flowers and; source of rotenone
+28002,catgut gut,a strong cord made from the intestines of sheep and used in surgery
+28003,catharsis katharsis abreaction,(psychoanalysis) purging of emotional tensions
+28004,catharsis katharsis purgation,purging the body by the use of a cathartic to stimulate evacuation of the bowels
+28005,cathedra bishop's_throne,a throne that is the official chair of a bishop
+28006,cathedral,any large and important church
+28007,cathedral duomo,the principal Christian church building of a bishop's diocese
+28008,catherine_wheel pinwheel,a circular firework that spins round and round emitting colored fire
+28009,catheter,a thin flexible tube inserted into the body to permit introduction or withdrawal of fluids or to keep the passageway open
+28010,catheterization catheterisation,the operation of introducing a catheter into the body
+28011,cathexis charge,(psychoanalysis) the libidinal energy invested in some idea or person or object; "Freud thought of cathexis as a psychic analog of an electrical charge"
+28012,cathode,the positively charged terminal of a voltaic cell or storage battery that supplies current
+28013,cathode,a negatively charged electrode that is the source of electrons entering an electrical device
+28014,cathode-ray_tube CRT,a vacuum tube in which a hot cathode emits a beam of electrons that pass through a high voltage anode and are focused or deflected before hitting a phosphorescent screen
+28015,cathode_ray,a beam of electrons emitted by the cathode of an electrical discharge tube
+28016,cation,a positively charged ion
+28017,cationic_detergent invert_soap,a class of synthetic detergents in which the surface-active part of the molecule is the cation
+28018,catkin ament,a cylindrical spikelike inflorescence
+28019,catling,a long double-edged knife used for amputations
+28020,catmint catnip Nepeta_cataria,hairy aromatic perennial herb having whorls of small white purple-spotted flowers in a terminal spike; used in the past as a domestic remedy; strongly attractive to cats
+28021,catoptrics,branch of optics dealing with formation of images by mirrors
+28022,catostomid,a cypriniform fish of the family Catostomidae
+28023,catsup ketchup cetchup tomato_ketchup,thick spicy sauce made from tomatoes
+28024,catsup_bottle ketchup_bottle,a bottle that holds catsup
+28025,cattail,tall erect herbs with sword-shaped leaves; cosmopolitan in fresh and salt marshes
+28026,cattalo beefalo,hardy breed of cattle resulting from crossing domestic cattle with the American buffalo; yields leaner beef than conventional breeds
+28027,cattiness bitchiness spite spitefulness nastiness,malevolence by virtue of being malicious or spiteful or nasty
+28028,cattle cows kine oxen Bos_taurus,domesticated bovine animals as a group regardless of sex or age; "so many head of cattle"; "wait till the cows come home"; "seven thin and ill-favored kine"- Bible; "a team of oxen"
+28029,cattle_breeding,breeding cattle
+28030,cattle_cake,a concentrated feed for cattle; processed in the form of blocks or cakes
+28031,cattle_car,a freight car for transporting cattle
+28032,cattle_drive,driving a bovine herd (as cows or bulls or steers)
+28033,cattle_egret Bubulcus_ibis,small white egret widely distributed in warm regions often found around grazing animals
+28034,cattle_guard cattle_grid,a bridge over a ditch consisting of parallel metal bars that allow pedestrians and vehicles to pass, but not cattle
+28035,cattle_trail,a trail over which cattle were driven to market
+28036,cattleman cow_man beef_man,a man who raises (or tends) cattle
+28037,cattleship cattle_boat,a cargo ship for the transport of livestock
+28038,cattley_guava purple_strawberry_guava Psidium_cattleianum Psidium_littorale_longipes,small tropical shrubby tree bearing deep red oval fruit
+28039,cattleya,any orchid of the genus Cattleya characterized by a three-lobed lip enclosing the column; among the most popular and most extravagantly beautiful orchids known
+28040,catty cattie,any of various units of weight used in southeastern Asia (especially a Chinese measure equal to 500 grams)
+28041,catwalk,narrow platform extending out into an auditorium; "models displayed clothes on a catwalk at the fashion show"
+28042,catwalk,narrow pathway high in the air (as above a stage or between parts of a building or along a bridge)
+28043,caucus,a closed political meeting
+28044,cauda,any taillike structure
+28045,caudal_anesthesia caudal_anaesthesia caudal_block,regional anesthesia resulting from injection of an anesthetic into the caudal end of the spinal canal; now largely replaced by epidural anesthesia
+28046,caudal_appendage,tail especially of a mammal posterior to and above the anus
+28047,caudate_nucleus caudate,a tail-shaped basal ganglion located in a lateral ventricle of the brain
+28048,caudex,woody stem of palms and tree ferns
+28049,caul veil embryonic_membrane,the inner membrane of embryos in higher vertebrates (especially when covering the head at birth)
+28050,cauliflower,compact head of white undeveloped flowers
+28051,cauliflower Brassica_oleracea_botrytis,a plant having a large edible head of crowded white flower buds
+28052,cauliflower_ear,an auricle deformed by injury; common among boxers
+28053,caulk caulking,a waterproof filler and sealant that is used in building and repair to make watertight
+28054,causal_agent cause causal_agency,any entity that produces an effect or is responsible for events or results
+28055,causalgia,a burning pain in a limb along the course of a peripheral nerve; usually associated with skin changes
+28056,causality,the relation between causes and effects
+28057,cause,events that provide the generative force that is the origin of something; "they are trying to determine the cause of the crash"
+28058,cause reason grounds,a justification for something existing or happening; "he had no cause to complain"; "they had good reason to rejoice"
+28059,cause_celebre,an incident that attracts great public attention
+28060,cause_of_action,a claim sufficient to demand judicial attention; the facts that give rise to right of action
+28061,cause_of_death killer,the causal agent resulting in death; "heart disease is the biggest killer in the United States"
+28062,causeway,a road that is raised above water or marshland or sand
+28063,causing causation,the act of causing something to happen
+28064,caustic,any chemical substance that burns or destroys living tissue
+28065,cautery cauterant,an instrument or substance used to destroy tissue for medical reasons (eg removal of a wart) by burning it with a hot iron or an electric current or a caustic or by freezing it
+28066,cautery cauterization cauterisation,the act of coagulating blood and destroying tissue with a hot iron or caustic agent or by freezing
+28067,caution cautiousness carefulness,the trait of being cautious; being attentive to possible danger; "a man of caution"
+28068,caution caveat,a warning against certain acts; "a caveat against unfair practices"
+28069,caution precaution care forethought,judiciousness in avoiding harm or danger; "he exercised caution in opening the door"; "he handled the vase with care"
+28070,cautious_statement,a statement made with careful qualifications
+28071,cavalcade,a procession of people traveling on horseback
+28072,cavalier chevalier,a gallant or courtly gentleman
+28073,cavalier_hat slouch_hat,a soft felt hat with a wide flexible brim
+28074,cavalry,a highly mobile army unit
+28075,cavalry horse_cavalry horse,troops trained to fight on horseback; "500 horse led the attack"
+28076,cavalry_horse,horse trained for battle
+28077,cavalry_sword saber sabre,a stout sword with a curved blade and thick back
+28078,cavalryman trooper,a soldier in a motorized army unit
+28079,cavalryman trooper,a soldier mounted on horseback; "a cavalryman always takes good care of his mount"
+28080,cave,a geological formation consisting of an underground enclosure with access from the surface of the ground or from the sea
+28081,cave_in subsidence,the sudden collapse of something into a hollow beneath it
+28082,cave_myotis Myotis_velifer,small bat of southwest United States that lives in caves etc.
+28083,caveat,(law) a formal notice filed with a court or officer to suspend a proceeding until filer is given a hearing; "a caveat filed against the probate of a will"
+28084,caveat_emptor,a commercial principle that without a warranty the buyer takes upon himself the risk of quality
+28085,caveman cave_man cave_dweller troglodyte,someone who lives in a cave
+28086,cavern,any large dark enclosed space; "his eyes were dark caverns"
+28087,cavern,a large cave or a large chamber in a cave
+28088,cavernous_sinus sinus_cavernosus,either of a pair of large venous sinuses in the cranial cavity
+28089,cavetto,a concave molding shaped like a quarter circle in cross section
+28090,caviar caviare,salted roe of sturgeon or other large fish; usually served as an hors d'oeuvre
+28091,cavity bodily_cavity cavum,(anatomy) a natural hollow or sinus within the body
+28092,cavity caries dental_caries tooth_decay,soft decayed area in a tooth; progressive decay can lead to the death of a tooth
+28093,cavity enclosed_space,space that is surrounded by something
+28094,cavity_wall,a wall formed of two thicknesses of masonry with a space between them
+28095,cavy,short-tailed rough-haired South American rodent
+28096,caw,the sound made by corvine birds
+28097,cayenne cayenne_pepper,a long and often twisted hot red pepper
+28098,cayenne cayenne_pepper chili_pepper chilli_pepper long_pepper jalapeno Capsicum_annuum_longum,plant bearing very hot and finely tapering long peppers; usually red
+28099,cayenne cayenne_pepper red_pepper,ground pods and seeds of pungent red peppers of the genus Capsicum
+28100,cayuse Indian_pony,a small native range horse
+28101,cease,(`cease' is a noun only in the phrase `without cease') end
+28102,cecropia cecropia_moth Hyalophora_cecropia,North American silkworm moth; larvae feed on the leaves of forest trees
+28103,cecum caecum blind_gut,the cavity in which the large intestine begins and into which the ileum opens; "the appendix is an offshoot of the cecum"
+28104,cedar cedar_tree,any of numerous trees of the family Cupressaceae that resemble cedars
+28105,cedar cedar_tree true_cedar,any cedar of the genus Cedrus
+28106,cedar cedarwood,durable aromatic wood of any of numerous cedar trees; especially wood of the red cedar often used for cedar chests
+28107,cedar_chest,a chest made of cedar
+28108,cedar_elm Ulmus_crassifolia,elm of southern United States and Mexico having spreading pendulous corky branches
+28109,cedar_of_Lebanon Cedrus_libani,cedar of Lebanon and northwestern Syria that attains great age and height
+28110,cedar_waxwing cedarbird Bombycilla_cedrorun,widely distributed over temperate North America
+28111,cedi,the basic unit of money in Ghana
+28112,cedilla,a diacritical mark (,) placed below the letter c to indicate that it is pronounced as an s
+28113,cefadroxil Ultracef,a cephalosporin antibiotic (trade name Ultracef)
+28114,cefoperazone Cefobid,a parenteral cephalosporin (trade name Cefobid) used for severe infections
+28115,cefotaxime Claforan,a parenteral cephalosporin (trade name Claforan) used for severe infections of the lungs or throat or ears or urinary tract
+28116,ceftazidime Fortaz Tazicef,a parenteral cephalosporin (trade names Fortaz and Tazicef) used to treat moderate infections
+28117,ceftriaxone Rocephin,a parenteral cephalosporin (trade name Rocephin) used for severe infection of the lungs or throat or ears or urinary tract
+28118,cefuroxime Ceftin Zinacef,a cephalosporin that can be given parenterally (trade name Zinacef) or orally by tablets (trade name Ceftin); indicated for infections of the lungs or throat or ears or urinary tract or meninges
+28119,ceibo crybaby_tree cry-baby_tree common_coral_tree Erythrina_crista-galli,small South American spiny tree with dark crimson and scarlet flowers solitary or clustered
+28120,ceilidh,an informal social gathering at which there is Scottish or Irish folk music and singing and folk dancing and story telling
+28121,ceiling,maximum altitude at which a plane can fly (under specified conditions)
+28122,ceiling,(meteorology) altitude of the lowest layer of clouds
+28123,ceiling,the overhead upper surface of a covered space; "he hated painting the ceiling"
+28124,ceiling roof cap,an upper limit on what is allowed; "he put a ceiling on the number of women who worked for him"; "there was a roof on salaries"; "they established a cap for prices"
+28125,celandine greater_celandine swallowwort swallow_wort Chelidonium_majus,perennial herb with branched woody stock and bright yellow flowers
+28126,celandine_poppy wood_poppy Stylophorum_diphyllum,perennial herb native to woodland of the eastern United States having yellow flowers
+28127,celebrant,an officiating priest celebrating the Eucharist
+28128,celebrant celebrator celebrater,a person who is celebrating
+28129,celebration festivity,any joyous diversion
+28130,celebration jubilation,a joyful occasion for special festivities to mark some happy event
+28131,celebration solemnization solemnisation,the public performance of a sacrament or solemn ceremony with all appropriate ritual; "the celebration of marriage"
+28132,celebrity famous_person,a widely known person; "he was a baseball celebrity"
+28133,celecoxib Celebrex,a Cox-2 inhibitor (trade name Celebrex) that relieves pain and inflammation without harming the digestive tract
+28134,celeriac celery_root,thickened edible aromatic root of a variety of celery plant
+28135,celeriac celery_root knob_celery root_celery turnip-rooted_celery Apium_graveolens_rapaceum,grown for its thickened edible aromatic root
+28136,celerity quickness rapidity rapidness speediness,a rate that is rapid
+28137,celery,stalks eaten raw or cooked or used as seasoning
+28138,celery cultivated_celery Apium_graveolens_dulce,widely cultivated herb with aromatic leaf stalks that are eaten raw or cooked
+28139,celery_blight,a fungous leaf spot disease of the celery plant
+28140,celery_pine,Australasian evergreen conifer having a graceful head of foliage resembling celery that is composed of phyllodes borne in the axils of scalelike leaves
+28141,celery_salt,ground celery seed and salt
+28142,celery_seed,seed of the celery plant used as seasoning
+28143,celery_stick,celery stalks cut into small sticks
+28144,celery_top_pine celery-topped_pine Phyllocladus_asplenifolius,medium tall celery pine of Tasmania
+28145,celesta,a musical instrument consisting of graduated steel plates that are struck by hammers activated by a keyboard
+28146,celestial_body heavenly_body,natural objects visible in the sky
+28147,celestial_equator equinoctial_circle equinoctial_line equinoctial,the great circle on the celestial sphere midway between the celestial poles
+28148,celestial_globe,a globe that is a spherical model of the heavens
+28149,celestial_guidance,a method of controlling the flight of a missile or spacecraft by reference to the positions of celestial bodies
+28150,celestial_hierarchy,the collective body of angels
+28151,celestial_mechanics,the branch of astronomy concerned with the application of Newton's laws of motion to the motions of heavenly bodies
+28152,celestial_navigation astronavigation,navigating according to the positions of the stars
+28153,celestial_point,a point in the heavens (on the celestial sphere)
+28154,celestial_sphere sphere empyrean firmament heavens vault_of_heaven welkin,the apparent surface of the imaginary sphere on which celestial bodies appear to be projected
+28155,celestite,a mineral consisting of strontium sulphate
+28156,celiac_disease,a disorder in children and adults; inability to tolerate wheat protein (gluten); symptoms include foul-smelling diarrhea and emaciation; often accompanied by lactose intolerance
+28157,celiac_trunk celiac_artery truncus_celiacus arteria_celiaca,an artery that originates from the abdominal aorta just below the diaphragm and branches into the left gastric artery and the common hepatic artery and the splenic artery
+28158,celibacy,an unmarried status
+28159,celibate,an unmarried person who has taken a religious vow of chastity
+28160,celiocentesis,removal of fluid from the abdomen by centesis
+28161,celioma,an abdominal tumor
+28162,celioscopy,endoscopic examination of the abdomen through the abdominal wall
+28163,cell,any small compartment; "the cells of a honeycomb"
+28164,cell,(biology) the basic structural and functional unit of all organisms; they may exist as independent units of life (as in monads) or may form colonies or tissues as in higher plants and animals
+28165,cell cadre,a small unit serving as part of or as the nucleus of a larger political movement
+28166,cell cubicle,small room in which a monk or nun lives
+28167,cell electric_cell,a device that delivers an electric current as the result of a chemical reaction
+28168,cell jail_cell prison_cell,a room where a prisoner is kept
+28169,cell-mediated_immune_response,an immune response (chiefly against viral or fungal invasions or transplanted tissue) that involves T cells
+28170,cell_division cellular_division,the process in reproduction and growth by which a cell divides to form daughter cells
+28171,cell_membrane cytomembrane plasma_membrane,a thin membrane (a double layer of lipids) enclosing the cytoplasm of a cell; proteins in the membrane control passage of ions (like sodium or potassium or calcium) in and out of the cell; "all cells have a cell membrane"
+28172,cell_theory cell_doctrine,(biology) the theory that cells form the fundamental structural and functional units of all living organisms; proposed in 1838 by Matthias Schleiden and by Theodor Schwann
+28173,cell_wall,a rigid layer of polysaccharides enclosing the membrane of plant and prokaryotic cells; maintains the shape of the cell and serves as a protective barrier
+28174,cellar wine_cellar,storage space where wines are stored
+28175,cellarage,a charge for storing goods in a cellar
+28176,cellarage,a storage area in a cellar
+28177,cellblock ward,a division of a prison (usually consisting of several cells)
+28178,cellist violoncellist,someone who plays a violoncello
+28179,cello violoncello,a large stringed instrument; seated player holds it upright while playing
+28180,cellophane,a transparent paperlike product that is impervious to moisture and used to wrap candy or cigarettes etc.
+28181,cellular_slime_mold,differing from true slime molds in being cellular and nucleate throughout the life cycle
+28182,cellular_telephone cellular_phone cellphone cell mobile_phone,a hand-held mobile radiotelephone for use in an area divided into small sections, each with its own short-range transmitter/receiver
+28183,cellularity,the state of having cells
+28184,cellulite,lumpy deposits of body fat especially on women's thighs etc.
+28185,cellulitis,an inflammation of body tissue (especially that below the skin) characterized by fever and swelling and redness and pain
+28186,celluloid,highly flammable substance made from cellulose nitrate and camphor; used in e.g. motion-picture and X-ray film; its use has decreased with the development of nonflammable thermoplastics
+28187,cellulose,a polysaccharide that is the chief constituent of all plant tissues and fibers
+28188,cellulose_acetate,an ester of acetic acid; used in fibers and fabrics; photographic films and varnishes
+28189,cellulose_ester,any ester of cellulose with an acid
+28190,cellulose_nitrate nitrocellulose guncotton nitrocotton,a nitric acid ester; used in lacquers and explosives
+28191,cellulose_tape Scotch_tape Sellotape,transparent or semitransparent adhesive tape (trade names Scotch tape and Sellotape) used for sealing or attaching or mending
+28192,cellulose_triacetate triacetate,cellulose acetate that is relatively slow to burn; used instead of celluloid for motion-picture film
+28193,cellulose_xanthate viscose,a cellulose ester obtained by treating cellulose with caustic soda
+28194,cellulosic,a plastic made from cellulose (or a derivative of cellulose)
+28195,celom coelom celoma,a cavity in the mesoderm of an embryo that gives rise in humans to the pleural cavity and pericardial cavity and peritoneal cavity
+28196,celtuce,leaves having celery-like stems eaten raw or cooked
+28197,celtuce stem_lettuce Lactuca_sativa_asparagina,lettuce valued especially for its edible stems
+28198,cembra_nut cedar_nut,the seed of the Swiss pine
+28199,cement,any of various materials used by dentists to fill cavities in teeth
+28200,cement,concrete pavement is sometimes referred to as cement; "they stood on the grey cement beside the pool"
+28201,cement,a building material that is a powder made of a mixture of calcined limestone and clay; used with water and sand or gravel to make concrete and mortar
+28202,cement,something that hardens to act as adhesive material
+28203,cementite iron_carbide,a chemical compound that is a constituent of steel and cast iron; very hard and brittle
+28204,cementum cement,a specialized bony substance covering the root of a tooth
+28205,cemetery graveyard burial_site burial_ground burying_ground memorial_park necropolis,a tract of land used for burials
+28206,cenobite coenobite,a member of a religious order living in common
+28207,cenogenesis kenogenesis caenogenesis cainogenesis kainogenesis,introduction during embryonic development of characters or structure not present in the earlier evolutionary history of the strain or species (such as the addition of the placenta in mammalian evolution)
+28208,cenotaph empty_tomb,a monument built to honor people whose remains are interred elsewhere or whose remains cannot be recovered
+28209,censer thurible,a container for burning incense (especially one that is swung on a chain in a religious ritual)
+28210,censor,someone who censures or condemns
+28211,censor,a person who is authorized to read publications or correspondence or to watch theatrical performances and suppress in whole or in part anything considered obscene or politically unacceptable
+28212,censoring censorship,deleting parts of publications or correspondence or theatrical performances
+28213,censoring censorship security_review,counterintelligence achieved by banning or deleting any information of value to the enemy
+28214,censure animadversion,harsh criticism or disapproval
+28215,census nose_count nosecount,a periodic count of the population
+28216,census_taker enumerator,someone who collects census data by visiting individual homes
+28217,cent,a fractional monetary unit of several countries
+28218,centas,100 centas equal 1 litas in Lithuania
+28219,centaur,(classical mythology) a mythical being that is half man and half horse
+28220,centaury,any of various plants of the genus Centaurium
+28221,centaury,any plant of the genus Centaurea
+28222,centavo,a fractional monetary unit of several countries: El Salvador and Sao Tome and Principe and Brazil and Argentina and Bolivia and Colombia and Cuba and the Dominican Republic and Ecuador and El Salvador and Guatemala and Honduras and Mexico and Nicaragua and Peru and the Philippines and Portugal
+28223,centenarian,someone who is at least 100 years old
+28224,centennial centenary,the 100th anniversary (or the celebration of it)
+28225,center,(ice hockey) the person who plays center on a hockey team
+28226,center,(basketball) the person who plays center on a basketball team
+28227,center,the middle of a military or naval formation; "they had to reinforce the center"
+28228,center,politically moderate persons; centrists
+28229,center,the position on a hockey team of the player who participates in the face off at the beginning of the game
+28230,center,(American football) the position of the player on the line of scrimmage who puts the ball in play; "it is a center's responsibility to get the football to the quarterback"
+28231,center,a position on a basketball team of the player who participates in the jump that starts the game
+28232,center centre,a place where some particular activity is concentrated; "they received messages from several centers"
+28233,center centre,the sweet central portion of a piece of candy that is enclosed in chocolate or some other covering
+28234,center centre,a building dedicated to a particular activity; "they were raising money to build a new center for research"
+28235,center centre center_of_attention centre_of_attention,the object upon which interest and attention focuses; "his stories made him the center of the party"
+28236,center centre middle heart eye,an area that is approximately central within some larger region; "it is in the center of town"; "they ran forward into the heart of the struggle"; "they were in the eye of the storm"
+28237,center centre midpoint,a point equidistant from the ends of a line or the extremities of a figure
+28238,center centre nerve_center nerve_centre,a cluster of nerve cells governing a specific bodily process; "in most people the speech center is in the left hemisphere"
+28239,center snapper,(football) the person who plays center on the line of scrimmage and snaps the ball to the quarterback; "the center fumbled the handoff"
+28240,center_bit centre_bit,a bit with a sharp center point for guidance and two side cutters
+28241,center_field centerfield,the fielding position of the player on a baseball team who is expected to field balls in the central third of the outfield
+28242,center_field centerfield center,the piece of ground in the outfield directly ahead of the catcher; "he hit the ball to deep center"
+28243,center_fielder centerfielder,the person who plays center field
+28244,center_of_buoyancy centre_of_buoyancy center_of_immersion centre_of_immersion,(physics) the center of mass of the immersed part of ship or other floating object
+28245,center_of_curvature centre_of_curvature,the center of the circle of curvature
+28246,center_of_flotation centre_of_flotation,the center of gravity of a floating object
+28247,center_of_gravity centre_of_gravity,the point within something at which gravity can be considered to act; in uniform gravity it is equal to the center of mass
+28248,center_of_mass centre_of_mass,point representing the mean position of the matter in a body
+28249,center_punch,a tool with a conical point that is used to make indentations in metal (especially to mark points for drilling)
+28250,center_spread centre_spread,the spread at the center of a magazine
+28251,center_stage centre_stage,a position of prominence or importance
+28252,center_stage centre_stage,the central area on a theater stage
+28253,centerboard centreboard drop_keel sliding_keel,a retractable fin keel used on sailboats to prevent drifting to leeward
+28254,centerfold centrefold,a magazine center spread; especially a foldout of a large photograph or map or other feature
+28255,centering snap,(American football) putting the ball in play by passing it (between the legs) to a back; "the quarterback fumbled the snap"
+28256,centerline center_line,a line that bisects a plane figure
+28257,centerpiece centrepiece,the central or most important feature; "education was the centerpiece of the Democratic Party's political platform"
+28258,centerpiece centrepiece,something placed at the center of something else (as on a table)
+28259,centesimo,a fractional monetary unit of several countries: Panama and Italy and Uruguay and Chile
+28260,centesis,(surgery) the act of puncturing a body cavity or organ with a hollow needle in order to draw out fluid
+28261,centiliter centilitre cl,a metric unit of volume equal to one hundredth of a liter
+28262,centime,a fractional monetary unit of several countries: France and Algeria and Belgium and Burkina Faso and Burundi and Cameroon and Chad and the Congo and Gabon and Haiti and the Ivory Coast and Luxembourg and Mali and Morocco and Niger and Rwanda and Senegal and Switzerland and Togo
+28263,centimeter centimetre cm,a metric unit of length equal to one hundredth of a meter
+28264,centimo,a fractional monetary unit of Venezuela and Costa Rica and Equatorial Guinea and Paraguay and Spain
+28265,centipede,chiefly nocturnal predacious arthropod having a flattened body of 15 to 173 segments each with a pair of legs, the foremost pair being modified as prehensors
+28266,centner,in some European countries: a unit of weight equivalent to 50 kilograms
+28267,central telephone_exchange exchange,a workplace that serves as a telecommunications facility where lines from telephones can be connected together to permit communication
+28268,central_artery_of_the_retina arteria_centralis_retinae,a branch of the ophthalmic artery; enters the eyeball with the optic nerve
+28269,central_bank,a government monetary authority that issues currency and regulates the supply of credit and holds the reserves of other banks and sells new issues of securities for the government
+28270,central_chimpanzee Pan_troglodytes_troglodytes,black-faced chimpanzees of central Africa; closely related to eastern chimpanzees
+28271,central_gyrus,either of two gyri on either side of the central sulcus
+28272,central_heating,a heating system in which air or water is heated at a central furnace and sent through the building via vents or pipes and radiators
+28273,central_nervous_system CNS systema_nervosum_centrale,the portion of the vertebrate nervous system consisting of the brain and spinal cord
+28274,central_processing_unit CPU C.P.U. central_processor processor mainframe,(computer science) the part of a computer (a microprocessor chip) that does most of the data processing; "the CPU and the memory form the central part of a computer to which the peripherals are attached"
+28275,central_scotoma,a scotoma that involves the fixation point
+28276,central_vein_of_retina vena_centrales_retinae,vein formed by the union of the retinal veins; accompanies central arteries of the retina in the optic nerve
+28277,central_vein_of_suprarenal_gland vena_centralis_glandulae_suprarenalis,a single draining vein; on the right it empties into the inferior vena cava; on the left it empties into the left renal vein
+28278,central_veins_of_liver venae_centrales_hepatis,terminal branches of the hepatic veins that lie in the hepatic lobules and receive blood from the liver sinusoids
+28279,central_vision,vision using the fovea and parafovea; the middle part of the visual field
+28280,centralism,the political policy of concentrating power in a central organization
+28281,centrality,the property of being central
+28282,centralization centralisation,the act of consolidating power under a central control
+28283,centralization centralisation,gathering to a center
+28284,centrex,(CENTRal EXchange) a kind of telephone exchange
+28285,centrifugal_force,the outward force on a body moving in a curved path around another body
+28286,centrifugal_pump,a pump that use centrifugal force to discharge fluid into a pipe
+28287,centrifugation,the process of separating substances of different densities by the use of a centrifuge
+28288,centrifuge extractor separator,an apparatus that uses centrifugal force to separate particles from a suspension
+28289,centriole,one of a pair of small cylindrical cell organelles near the nucleus in animal cells; composed of nine triplet microtubules and form the asters during mitosis
+28290,centripetal_acceleration,the acceleration toward the center that holds a satellite in elliptical orbit
+28291,centripetal_force,the inward force on a body moving in a curved path around another body
+28292,centrism moderatism,a political philosophy of avoiding the extremes of left and right by taking a moderate position or course of action
+28293,centrist middle_of_the_roader moderate moderationist,a person who takes a position in the political center
+28294,centroid,the center of mass of an object of uniform density
+28295,centromere kinetochore,a specialized condensed region of each chromosome that appears during mitosis where the chromatids are held together to form an X shape; "the centromere is difficult to sequence"
+28296,centrosome central_body,small region of cytoplasm adjacent to the nucleus; contains the centrioles and serves to organize the microtubules
+28297,centrum,the main body of a vertebra
+28298,centurion,(ancient Rome) the leader of 100 soldiers
+28299,century,a period of 100 years
+28300,cephalexin Keflex Keflin Keftab,an oral cephalosporin (trade names Keflex and Keflin and Keftab) commonly prescribe for mild to moderately severe infections of the skin or ears or throat or lungs or urinary tract
+28301,cephalhematoma cephalohematoma,a collection of blood under the scalp of a newborn; caused by pressure during birth
+28302,cephalic_index breadth_index cranial_index,ratio (in percent) of the maximum breadth to the maximum length of a skull
+28303,cephalic_vein vena_cephalica,a large vein of the arm that empties into the axillary vein
+28304,cephalochordate,fish-like animals having a notochord rather than a true spinal column
+28305,cephaloglycin Kafocin,antibiotic related to cephalosporin but no longer in common use
+28306,cephalometry,measurement of human heads
+28307,cephalopod cephalopod_mollusk,marine mollusk characterized by well-developed head and eyes and sucker-bearing tentacles
+28308,cephaloridine,a broad spectrum semisynthetic antibiotic produced by modifying cephalosporin
+28309,cephalosporin Mefoxin,one of several broad spectrum antibiotic substances obtained from fungi and related to penicillin (trade names Mefoxin); addition of side chains has produced semisynthetic antibiotics with greater antibacterial activity
+28310,cephalothin,a semisynthetic analogue of cephalosporin
+28311,ceramic,an artifact made of hard brittle material produced from nonmetallic minerals by firing at high temperatures
+28312,ceramic_ware,utensils made from ceramic material
+28313,ceramics,the art of making and decorating pottery
+28314,ceras,one of the often brightly colored and branching hornlike structures on the back of the nudibranch (and other related mollusks) that serve as gills
+28315,cerate,a hard medicated paste made of lard or oil mixed with wax or resin
+28316,ceratodus,extinct lungfish
+28317,ceratopsian horned_dinosaur,any of several four-footed herbivorous dinosaurs with enormous beaked skulls; of the late Cretaceous in North America and Mongolia
+28318,ceratosaur ceratosaurus,primitive medium-sized theropod; swift-running bipedal carnivorous dinosaur having grasping hands with sharp claws and a short horn between the nostrils; Jurassic in North America
+28319,ceratozamia,a small cycad of the genus Ceratozamia having a short scaly woody trunk and fernlike foliage and woody cones; Mexico
+28320,cercaria,tadpole-shaped parasitic larva of a trematode worm; tail disappears in adult stage
+28321,cere,the fleshy, waxy covering at the base of the upper beak of some birds
+28322,cereal,a breakfast food prepared from grain
+28323,cereal cereal_grass,grass whose starchy grains are used as food: wheat; rice; rye; oats; maize; buckwheat; millet
+28324,cereal_bowl,a bowl for holding breakfast cereal
+28325,cereal_box,a paper box in which breakfast cereals are sold
+28326,cereal_oat Avena_sativa,widely cultivated in temperate regions for its edible grains
+28327,cerebellar_artery arteria_cerebelli,an artery that supplies the cerebellum
+28328,cerebellar_hemisphere,either of two lateral lobes of the cerebellum
+28329,cerebellar_vein vena_cerebellum,the veins draining the cerebellum
+28330,cerebellum,a major division of the vertebrate brain; situated above the medulla oblongata and beneath the cerebrum in humans
+28331,cerebral_aneurysm,an aneurysm of the carotid artery
+28332,cerebral_aqueduct Sylvian_aqueduct aqueductus_cerebri,a canal connecting the third and fourth ventricles
+28333,cerebral_artery arteria_cerebri,any of the arteries supplying blood to the cerebral cortex
+28334,cerebral_cortex cerebral_mantle pallium cortex,the layer of unmyelinated neurons (the grey matter) forming the cortex of the cerebrum
+28335,cerebral_edema brain_edema,swelling of the brain due to the uptake of water in the neuropile and white matter
+28336,cerebral_hemorrhage,bleeding from a ruptured blood vessel in the brain
+28337,cerebral_palsy spastic_paralysis,a loss or deficiency of motor control with involuntary spasms caused by permanent brain damage present at birth
+28338,cerebral_thrombosis,a blood clot in a cerebral artery or vein
+28339,cerebral_vein vena_cerebri,any of several veins serving the cerebral hemispheres of the brain
+28340,cerebrospinal_meningitis epidemic_meningitis brain_fever cerebrospinal_fever,meningitis caused by bacteria and often fatal
+28341,cerebrum,anterior portion of the brain consisting of two hemispheres; dominant part of the brain in humans
+28342,cerecloth,a waterproof waxed cloth once used as a shroud
+28343,ceremoniousness,a ceremonial manner
+28344,ceremony,the proper or conventional behavior on some solemn occasion; "an inaugural ceremony"
+28345,ceremony,any activity that is performed in an especially solemn elaborate or formal way; "the ceremony of smelling the cork and tasting the wine"; "he makes a ceremony of addressing his golf ball"; "he disposed of it without ceremony"
+28346,ceremony ceremonial ceremonial_occasion observance,a formal event performed on a special occasion; "a ceremony commemorating Pearl Harbor"
+28347,ceresin,a white wax extracted from ozokerite
+28348,ceriman Monstera_deliciosa,tropical American vine having roots that hang like cords and cylindrical fruit with a pineapple and banana flavor
+28349,ceriman monstera,tropical cylindrical fruit resembling a pinecone with pineapple-banana flavor
+28350,cerise cherry cherry_red,a red the color of ripe cherries
+28351,cerium Ce atomic_number_58,a ductile grey metallic element of the lanthanide series; used in lighter flints; the most abundant of the rare-earth group
+28352,cerivastatin Baycol,an oral drug (trade name Baycol) to reduce blood cholesterol levels
+28353,cero pintado kingfish Scomberomorus_regalis,large edible mackerel of temperate United States coastal Atlantic waters
+28354,cerotic_acid hexacosanoic_acid,a white solid fatty acid found in waxes (such as beeswax)
+28355,cert,an absolute certainty; "it's a dead cert"
+28356,certainty,the state of being certain; "his certainty reassured the others"
+28357,certainty sure_thing foregone_conclusion,something that is certain; "his victory is a certainty"
+28358,certificate certification credential credentials,a document attesting to the truth of certain stated facts
+28359,certificate_of_deposit CD,a debt instrument issued by a bank; usually pays interest
+28360,certificate_of_incorporation,state approval of the articles of incorporation of a corporation
+28361,certification enfranchisement,the act of certifying or bestowing a franchise on
+28362,certified_check certified_cheque,a check containing certification that the person who issued the check has sufficient funds on deposit to cover payment
+28363,certified_milk,milk from dairies regulated by an authorized medical milk commission
+28364,certified_public_accountant CPA,an accountant who has passed certain examinations and met all other statutory and licensing requirements of a United States state to be certified by that state; "in addition to accounting and auditing, CPAs also prepare tax returns for individuals and corporations"
+28365,certiorari writ_of_certiorari,a common law writ issued by a superior court to one of inferior jurisdiction demanding the record of a particular case
+28366,certitude cocksureness overconfidence,total certainty or greater certainty than circumstances warrant
+28367,cerulean_blue,light greenish-blue pigment consisting essentially of oxides of cobalt and tin
+28368,cerumen earwax,a soft yellow wax secreted by glands in the ear canal
+28369,cerussite white_lead_ore,a mineral consisting of lead carbonate that is an important source of lead
+28370,cervical_artery areteria_cervicalis,an artery that supplies the muscles of the neck
+28371,cervical_canal canalis_cervicis_uteri,a spindle-shaped canal extending from the uterus to the vagina
+28372,cervical_cap,a contraceptive device consisting of a small thimble-shaped cup that is placed over the uterine cervix to prevent the entrance of spermatozoa
+28373,cervical_disc_syndrome cervical_root_syndrome,an abnormal condition resulting from compression of spinal nerve roots in the neck region; involves neck pains and muscular weakness and paresthesia
+28374,cervical_glands cervical_glands_of_the_uterus glandulae_cervicales_uteri,mucus-secreting glands in the mucosa of the uterine cervix
+28375,cervical_nerve,any of eight pairs of spinal nerves emerging from the cervical section of the spinal cord
+28376,cervical_plexus plexus_cervicalis,a nerve plexus lying beneath the sternocleidomastoid muscle
+28377,cervical_smear Pap_smear Papanicolaou_smear,a sample of secretions and superficial cells of the uterine cervix and uterus; examined with a microscope to detect any abnormal cells
+28378,cervical_vein deep_cervical_vein vena_cervicalis_profunda,a vein that accompanies an artery of the same name
+28379,cervical_vertebra neck_bone,one of 7 vertebrae in the human spine located in the neck region
+28380,cervicitis,inflammation of the uterine cervix
+28381,cervicofacial_actinomycosis lumpy_jaw,the commonest and least severe form of actinomycosis; affects the face and neck regions
+28382,cervix uterine_cervix cervix_uteri,necklike opening to the uterus
+28383,cesarean_delivery caesarean_delivery caesarian_delivery cesarean_section cesarian_section caesarean_section caesarian_section C-section cesarean cesarian caesarean caesarian abdominal_delivery,the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)
+28384,cesium caesium Cs atomic_number_55,a soft silver-white ductile metallic element (liquid at normal temperatures); the most electropositive and alkaline metal
+28385,cesium_137,a radioactive isotope of cesium used in radiation therapy
+28386,cessation surcease,a stopping; "a cessation of the thunder"
+28387,cession ceding,the act of ceding
+28388,cesspool cesspit sink sump,a covered cistern; waste water and sewage flow into it
+28389,cetacean cetacean_mammal blower,large aquatic carnivorous mammal with fin-like forelimbs no hind limbs, including: whales; dolphins; porpoises; narwhals
+28390,cetrimide,a cationic detergent that is a powerful disinfectant
+28391,cgs cgs_system,system of measurement based on centimeters and grams and seconds
+28392,cha-cha cha-cha-cha,a modern ballroom dance from Latin America; small steps and swaying movements of the hips
+28393,chabazite chabasite,a group of minerals of the zeolite family consisting of a hydrous silicate of calcium and aluminum
+28394,chachalaca,slender arboreal guan resembling a wild turkey; native to Central America and Mexico; highly regarded as game birds
+28395,chachka tsatske tshatshke tchotchke,(Yiddish) an inexpensive showy trinket
+28396,chachka tsatske tshatshke tchotchke tchotchkeleh,(Yiddish) an attractive, unconventional woman
+28397,chacma chacma_baboon Papio_ursinus,greyish baboon of southern and eastern Africa
+28398,chad,a small piece of paper that is supposed to be removed when a hole is punched in a card or paper tape
+28399,chador chadar chaddar chuddar,a cloth used as a head covering (and veil and shawl) by Muslim and Hindu women
+28400,chaenactis,any of several United States plants having long stalks of funnel-shaped white or yellow flowers
+28401,chaeta,a stiff chitinous seta or bristle especially of an annelid worm
+28402,chaetodon,any fish of the genus Chaetodon
+28403,chafe,soreness and warmth caused by friction; "he had a nasty chafe on his knee"
+28404,chafeweed wood_cudweed Gnaphalium_sylvaticum,weedy perennial of north temperate regions having woolly foliage and dirty white flowers in a leafy spike
+28405,chaff,foil in thin strips; ejected into the air as a radar countermeasure
+28406,chaff husk shuck stalk straw stubble,material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds
+28407,chaffinch Fringilla_coelebs,small European finch with a cheerful song
+28408,chaffweed bastard_pimpernel false_pimpernel,weedy plant having short dry chafflike leaves
+28409,chafing,soreness or irritation of the skin caused by friction
+28410,chafing_dish,a metal pan over a heater; used to cook or to keep things warm at the table
+28411,chafing_gear,covering (usually rope or canvas) of a line or spar to protect it from friction
+28412,chagrin humiliation mortification,strong feelings of embarrassment
+28413,chain,a unit of length
+28414,chain,(business) a number of similar establishments (stores or restaurants or banks or hotels or theaters) under one ownership
+28415,chain,a linked or connected series of objects; "a chain of daisies"
+28416,chain,anything that acts as a restraint
+28417,chain,a series of (usually metal) rings or links fitted into one another to make a flexible ligament
+28418,chain chemical_chain,(chemistry) a series of linked atoms (generally in an organic molecule)
+28419,chain concatenation,a series of things depending on each other as if linked together; "the chain of command"; "a complicated concatenation of circumstances"
+28420,chain string strand,a necklace made by stringing objects together; "a string of beads"; "a strand of pearls"
+28421,chain-smoker,a heavy smoker (usually of cigarettes) who lights one off of another
+28422,chain_fern,a fern of the genus Woodwardia having the sori in chainlike rows
+28423,chain_gang,a gang of convicts chained together
+28424,chain_letter,a letter that is sent successively to several people
+28425,chain_mail ring_mail mail chain_armor chain_armour ring_armor ring_armour,(Middle Ages) flexible armor made of interlinked metal rings
+28426,chain_pickerel chain_pike Esox_niger,common in quiet waters of eastern United States
+28427,chain_printer,an impact printer that carries the type slugs by links of a revolving chain
+28428,chain_reaction,a self-sustaining nuclear reaction; a series of nuclear fissions in which neutrons released by splitting one atom leads to the splitting of others
+28429,chain_reaction,a series of chemical reactions in which the product of one is a reactant in the next
+28430,chain_saw chainsaw,portable power saw; teeth linked to form an endless chain
+28431,chain_stitch,the most basic of all crochet stitches made by pulling a loop of yarn through another loop
+28432,chain_stitch,a looped stitch resembling the links of a chain; used in embroidery and in sewing
+28433,chain_store,one of a chain of retail stores under the same management and selling the same merchandise
+28434,chain_tongs,a pipe wrench used for turning large pipes; an adjustable chain circles the pipe with its ends connected to the head whose teeth engage the pipe
+28435,chain_wrench,another name for chain tongs
+28436,chainlink_fence,a fence of steel wires woven into a diamond pattern
+28437,chair,a particular seat in an orchestra; "he is second chair violin"
+28438,chair,a seat for one person, with a support for the back; "he put his coat over the back of the chair and sat down"
+28439,chair_of_state,a ceremonial chair for an exalted or powerful person
+28440,chairlift chair_lift,a ski lift on which riders (skiers or sightseers) are seated and carried up or down a mountainside; seats are hung from an endless overhead cable
+28441,chairman_of_the_board,the chairman of the board of directors of a corporation
+28442,chairmanship,the position of chairman
+28443,chaise shay,a carriage consisting of two wheels and a calash top; drawn by a single horse
+28444,chaise_longue chaise daybed,a long chair; for reclining
+28445,chaja Chauna_torquata,largest crested screamer; native to southern Brazil and Argentina
+28446,chalaza,basal part of a plant ovule opposite the micropyle; where integument and nucellus are joined
+28447,chalaza,one of two spiral bands of tissue connecting the egg yolk to the enclosing membrane at either end of the shell
+28448,chalazion Meibomian_cyst,a small sebaceous cyst of the eyelid resulting when a Meibomian gland is blocked
+28449,chalcedony calcedony,a milky or greyish translucent to transparent quartz
+28450,chalcid_fly chalcidfly chalcid chalcid_wasp,any of various tiny insects whose larvae are parasites on eggs and larvae of other insects; many are beneficial in destroying injurious insects
+28451,chalcis_fly,a variety of chalcid fly
+28452,chalcocite copper_glance,a heavy grey mineral that is an ore of copper
+28453,chalcopyrite copper_pyrites,a yellow copper ore (CuFeS2) made up of copper and iron sulfide
+28454,chaldron,a British imperial capacity measure (liquid or dry) equal to 36 bushels
+28455,chalet,a Swiss house with a sloping roof and wide eaves or a house built in this style
+28456,chalice goblet,a bowl-shaped drinking vessel; especially the Eucharistic cup
+28457,chalice_vine trumpet_flower cupflower Solandra_guttata,Mexican evergreen climbing plant having large solitary funnel-shaped fragrant yellow flowers with purple-brown ridges in the throat
+28458,chalk,a soft whitish calcite
+28459,chalk,a pure flat white with little reflectance
+28460,chalk,a piece of calcite or a similar substance, usually in the shape of a crayon, that is used to write or draw on blackboards or other flat surfaces
+28461,chalk_dust,dust resulting from writing with a piece of chalk; "chalk dust covered the teacher's hands"
+28462,chalk_line snap_line snapline,a chalked string used in the building trades to make a straight line on a vertical surface
+28463,chalk_talk,a talk that uses a blackboard and chalk
+28464,chalkpit chalk_pit,a quarry for chalk
+28465,challah hallah,(Judaism) a loaf of white bread containing eggs and leavened with yeast; often formed into braided loaves and glazed with eggs before baking
+28466,challenge,a demanding or stimulating situation; "they reacted irrationally to the challenge of Russian power"
+28467,challenge,a call to engage in a contest or fight
+28468,challenge,a formal objection to the selection of a particular person as a juror
+28469,challenge,questioning a statement and demanding an explanation; "his challenge of the assumption that Japan is still our enemy"
+28470,challenge,a demand by a sentry for a password or identification
+28471,challis,a soft lightweight fabric (usually printed)
+28472,chamber,a deliberative or legislative or administrative or judicial assembly; "the upper chamber is the senate"
+28473,chamber,an enclosed volume in the body; "the chambers of his heart were healthy"
+28474,chamber,a room where a judge transacts business
+28475,chamber,a natural or artificial enclosed space
+28476,chamber_music,serious music performed by a small group of musicians
+28477,chamber_of_commerce,an association of businessmen to protect and promote business interests
+28478,chamber_orchestra,small orchestra; usually plays classical music
+28479,chambered_nautilus pearly_nautilus nautilus,cephalopod of the Indian and Pacific oceans having a spiral shell with pale pearly partitions
+28480,chamberlain,the treasurer of a municipal corporation
+28481,chamberlain,an officer who manages the household of a king or nobleman
+28482,chambermaid fille_de_chambre,a maid who is employed to clean and care for bedrooms (now primarily in hotels)
+28483,chamberpot potty thunder_mug,a receptacle for urination or defecation in the bedroom
+28484,chambray,a lightweight fabric woven with white threads across a colored warp
+28485,chameleon,a changeable or inconstant person
+28486,chameleon chamaeleon,lizard of Africa and Madagascar able to change skin color and having a projectile tongue
+28487,chameleon_tree_frog,a form of tree toad
+28488,chamfer_bit,a bit that is used for beveling
+28489,chamfer_plane,a plane that makes a beveled edge
+28490,chamois Rupicapra_rupicapra,hoofed mammal of mountains of Eurasia having upright horns with backward-hooked tips
+28491,chamois chamois_leather chammy chammy_leather shammy shammy_leather,a soft suede leather formerly from the skin of the chamois antelope but now from sheepskin
+28492,chamois_cloth,a piece of chamois used for washing windows or cars
+28493,chamois_cress Pritzelago_alpina Lepidium_alpina,small tufted perennial herb of mountains of central and southern Europe having very small flowers of usually leafless stems; sometimes placed in genus Lepidium
+28494,chamomile camomile Chamaemelum_nobilis Anthemis_nobilis,Eurasian plant with apple-scented foliage and white-rayed flowers and feathery leaves used medicinally; in some classification systems placed in genus Anthemis
+28495,chamosite,a greenish grey or black silicate of iron and aluminum
+28496,champagne bubbly,a white sparkling wine either produced in Champagne or resembling that produced there
+28497,champagne_cup,a punch containing a sparkling wine
+28498,champerty,an unethical agreement between an attorney and client that the attorney would sue and pay the costs of the client's suit in return for a portion of the damages awarded; "soliciting personal injury cases may constitute champerty"
+28499,champion champ title-holder,someone who has won first place in a competition
+28500,champion fighter hero paladin,someone who fights for a cause
+28501,championship,a competition at which a champion is chosen
+28502,championship title,the status of being a champion; "he held the title for two years"
+28503,chanar chanal Geoffroea_decorticans,thorny shrub or small tree common in central Argentina having small orange or yellow flowers followed by edible berries
+28504,chance,a risk involving danger; "you take a chance when you let her drive"
+28505,chance-medley,an unpremeditated killing of a human being in self defense
+28506,chancel sanctuary bema,area around the altar of a church for the clergy and choir; often enclosed by a lattice or railing
+28507,chancellery,a government building housing the office of a chancellor
+28508,chancellor,the honorary or titular head of a university
+28509,chancellor premier prime_minister,the person who is head of government (in several countries)
+28510,chancellorship,the office of chancellor
+28511,chancery,an office of archives for public or ecclesiastic records; a court of public records
+28512,chancery court_of_chancery,a court with jurisdiction in equity
+28513,chancre,a small hard painless nodule at the site of entry of a pathogen (as syphilis)
+28514,chancroid,infectious venereal ulcer
+28515,chandelier pendant pendent,branched lighting fixture; often ornate; hangs from the ceiling
+28516,chandelle,a flight maneuver consisting of a steep climbing turn executed to gain altitude while changing direction
+28517,chandler,a retail dealer in provisions and supplies
+28518,chandler,a maker (and seller) of candles and soap and oils and paints
+28519,chandlery,candles and other commodities sold by a chandler
+28520,chandlery,a storeroom where candles are kept
+28521,chanfron chamfron testiere frontstall front-stall,medieval plate armor to protect a horse's head
+28522,change,a relational difference between states; especially between states before and after some event; "he attributed the change to their marriage"
+28523,change,coins of small denomination regarded collectively; "he had a pocketful of change"
+28524,change,the balance of money received when the amount you tender is greater than the amount due; "I paid with a twenty and pocketed the change"
+28525,change,money received in return for its equivalent in a larger denomination or a different currency; "he got change for a twenty and used it to pay the taxi driver"
+28526,change,the result of alteration or modification; "there were marked changes in the lining of the lungs"; "there had been no change in the mountains"
+28527,change,a thing that is different; "he inspected several changes before selecting one"
+28528,change,a different or fresh set of clothes; "she brought a change in her overnight bag"
+28529,change,the action of changing something; "the change of government had no impact on the economy"; "his change on abortion cost him the election"
+28530,change alteration modification,an event that occurs when something passes from one state or phase to another; "the change was intended to increase sales"; "this storm is certainly a change for the worse"; "the neighborhood had undergone few modifications since his last visit years ago"
+28531,change-up change-of-pace change-of-pace_ball off-speed_pitch,a baseball thrown with little velocity when the batter is expecting a fastball
+28532,change_of_color,an act that changes the light that something reflects
+28533,change_of_course,a change in the direction that you are moving
+28534,change_of_direction reorientation,the act of changing the direction in which something is oriented
+28535,change_of_integrity,the act of changing the unity or wholeness of something
+28536,change_of_location travel,a movement through space that changes the location of something
+28537,change_of_magnitude,the act of changing the amount or size of something
+28538,change_of_shape,an action that changes the shape of something
+28539,change_of_state,the act of changing something into something different in essential characteristics
+28540,change_ringing,ringing tuned bells in a fixed order that is continually changing
+28541,changeableness changeability,the quality of being changeable; having a marked tendency to change; "the changeableness of the weather"
+28542,changelessness,the property of remaining unchanged
+28543,changelessness unchangeability unchangeableness unchangingness,the quality of being unchangeable; having a marked tendency to remain unchanged
+28544,changeling,a child secretly exchanged for another in infancy
+28545,changer modifier,a person who changes something; "an inveterate changer of the menu"
+28546,channel,a deep and relatively narrow body of water (as in a river or a harbor or a strait linking two larger bodies) that allows the best passage for vessels; "the ship went aground in the channel"
+28547,channel,a passage for water (or other fluids) to flow through; "the fields were crossed with irrigation channels"; "gutters carried off the rainwater into a series of channels under the street"
+28548,channel communication_channel line,(often plural) a means of communication or access; "it must go through official channels"; "lines of communication were set up between the two firms"
+28549,channel television_channel TV_channel,a television station and its programs; "a satellite TV channel"; "surfing through the channels"; "they offer more than one hundred channels"
+28550,channel transmission_channel,a path over which electrical signals can pass; "a channel is typically what you rent from a telephone company"
+28551,channel_capacity,the maximum data rate that can be attained over a given channel
+28552,channel_catfish channel_cat Ictalurus_punctatus,freshwater food fish common throughout central United States
+28553,channelization channelisation canalization canalisation,management through specified channels of communication
+28554,channels,official routes of communication; "you have to go through channels"
+28555,chanson_de_geste,Old French epic poems
+28556,chant,a repetitive song in which as many syllables as necessary are assigned to a single tone
+28557,chanter melody_pipe,reed pipe with finger holes on which the melody is played
+28558,chanterelle chantarelle Cantharellus_cibarius,widely distributed edible mushroom rich yellow in color with a smooth cap and a pleasant apricot aroma
+28559,chantey chanty sea_chantey shanty,a rhythmical work song originally sung by sailors
+28560,chantry,an endowment for the singing of Masses
+28561,chantry,a chapel endowed for singing Masses for the soul of the donor
+28562,chaos,the formless and disordered state of matter before the creation of the cosmos
+28563,chaos,(physics) a dynamical system that is extremely sensitive to its initial conditions
+28564,chaos pandemonium bedlam topsy-turvydom topsy-turvyness,a state of extreme confusion and disorder
+28565,chap,a crack in a lip caused usually by cold
+28566,chap,(usually in the plural) leather leggings without a seat; joined by a belt; often have flared outer flaps; worn over trousers by cowboys to protect their legs
+28567,chap fellow feller fella lad gent blighter cuss bloke,a boy or man; "that chap is your host"; "there's a fellow at the door"; "he's a likable cuss"; "he's a good bloke"
+28568,chaparral_mallow Malacothamnus_fasciculatus Sphaeralcea_fasciculata,shrub of coastal ranges of California and Baja California having hairy branches and spikes of numerous mauve flowers; sometimes placed in genus Sphaeralcea
+28569,chaparral_pea stingaree-bush Pickeringia_montana,spiny evergreen xerophytic shrub having showy rose and purple flowers and forming dense thickets; of dry rocky mountain slopes of California
+28570,chapatti chapati,flat pancake-like bread cooked on a griddle
+28571,chapel,a place of worship that has its own altar
+28572,chapel_service chapel,a service conducted in a place of worship that has its own altar; "he was late for chapel"
+28573,chaperon chaperone,one who accompanies and supervises a young woman or gatherings of young people
+28574,chaplain,a clergyman ministering to some institution
+28575,chaplaincy chaplainship,the position of chaplain
+28576,chapman,archaic term for an itinerant peddler
+28577,chapter,any distinct period in history or in a person's life; "the industrial revolution opened a new chapter in British history"; "the divorce was an ugly chapter in their relationship"
+28578,chapter,an ecclesiastical assembly of the monks in a monastery or even of the canons of a church
+28579,chapter,a local branch of some fraternity or association; "he joined the Atlanta chapter"
+28580,chapter,a series of related events forming an episode; "a chapter of disasters"
+28581,chapter,a subdivision of a written work; usually numbered and titled; "he read a chapter every night before falling asleep"
+28582,chapterhouse,a building attached to a monastery or cathedral; used as a meeting place for the chapter
+28583,chapterhouse fraternity_house frat_house,a house used as a residence by a chapter of a fraternity
+28584,char,a charred substance
+28585,char charr,any of several small trout-like fish of the genus Salvelinus
+28586,characin characin_fish characid,any freshwater fish of the family Characinidae
+28587,character,good repute; "he is a man of character"
+28588,character,(genetics) an attribute (structural or functional) that is determined by a gene or group of genes
+28589,character eccentric type case,a person of a specified kind (usually with many eccentricities); "a real character"; "a strange character"; "a friendly eccentric"; "the capable type"; "a mental case"
+28590,character fiber fibre,the inherent complex of attributes that determines a persons moral and ethical actions and reactions; "education has for its object the formation of character"- Herbert Spencer
+28591,character graph grapheme graphic_symbol,a written symbol that is used to represent speech; "the Greek alphabet has 24 characters"
+28592,character reference character_reference,a formal recommendation by a former employer to a potential future employer describing the person's qualifications and dependability; "requests for character references are all too often answered evasively"
+28593,character role theatrical_role part persona,an actor's portrayal of someone in a play; "she played the part of Desdemona"
+28594,character_actor,an actor who specializes in playing supporting roles
+28595,character_assassination assassination blackwash,an attack intended to ruin someone's reputation
+28596,character_printer character-at-a-time_printer serial_printer,a printer that prints a single character at a time
+28597,character_set,an ordered list of characters that are used together in writing or printing
+28598,character_witness,a witness who testifies under oath as to the good reputation of another person in the community where that person lives
+28599,characteristic,the integer part (positive or negative) of the representation of a logarithm; in the expression log 643 = 2.808 the characteristic is 2
+28600,characteristic,a distinguishing quality
+28601,characteristic device_characteristic,any measurable property of a device measured under closely specified conditions
+28602,characteristic_curve characterisic_function,(electronics) graph showing how a particular characteristic of a device varies with other parameters
+28603,characterization characterisation,the act of describing distinctive characteristics or essential features; "the media's characterization of Al Gore as a nerd"
+28604,charade,a word acted out in an episode of the game of charades
+28605,charades,guessing game in which one player pantomimes a word or phrase for others to guess
+28606,charcoal,a drawing made with a stick of black carbon material
+28607,charcoal charcoal_grey charcoal_gray oxford_grey oxford_gray,a very dark grey color
+28608,charcoal fusain,a stick of black carbon material used for drawing
+28609,charcoal wood_coal,a carbonaceous material obtained by heating wood or other organic matter in the absence of air
+28610,charcoal_burner,a worker whose job is to make charcoal
+28611,charcoal_burner,a stove that burns charcoal as fuel
+28612,charcuterie,a delicatessen that specializes in meats
+28613,chard Swiss_chard spinach_beet leaf_beet,long succulent whitish stalks with large green leaves
+28614,chard Swiss_chard spinach_beet leaf_beet chard_plant Beta_vulgaris_cicla,beet lacking swollen root; grown as a vegetable for its edible leaves and stalks
+28615,charge,financial liabilities (such as a tax); "the charges against the estate"
+28616,charge,the price charged for some article or service; "the admission charge"
+28617,charge,a person committed to your care; "the teacher led her charges across the street"
+28618,charge,an impetuous rush toward someone or something; "the wrestler's charge carried him past his adversary"; "the battle began with a cavalry charge"
+28619,charge bearing heraldic_bearing armorial_bearing,heraldry consisting of a design or image depicted on a shield
+28620,charge billing,request for payment of a debt; "they submitted their charges at the end of each month"
+28621,charge burster bursting_charge explosive_charge,a quantity of explosive to be set off at one time; "this cartridge has a powder charge of 50 grains"
+28622,charge complaint,(criminal law) a pleading describing some wrong or offense; "he was arrested on a charge of larceny"
+28623,charge electric_charge,the quantity of unbalanced electricity in a body (either positive or negative) and construed as an excess or deficiency of electrons; "the battery needed a fresh charge"
+28624,charge-exchange_accelerator,an accelerator in which high-energy ions escape from plasma following charge exchange
+28625,charge_d'affaires,the official temporarily in charge of a diplomatic mission in the absence of the ambassador
+28626,charge_of_quarters,an enlisted man who handles his unit's administrative matters after hours
+28627,charge_unit quantity_unit,a measure of the quantity of electricity (determined by the amount of an electric current and the time for which it flows)
+28628,charger battery_charger,a device that can hold a rechargeable battery by means of an electrical cable
+28629,charger courser,formerly a strong swift horse ridden into battle
+28630,chariot,a two-wheeled horse-drawn battle vehicle; used in war and races in ancient Egypt and Greece and Rome
+28631,chariot,a light four-wheel horse-drawn ceremonial carriage
+28632,chariot_race,a race between ancient chariots
+28633,charioteer,the driver of a chariot
+28634,charisma personal_appeal personal_magnetism,a personal attractiveness or interestingness that enables you to influence others
+28635,charitable_trust public_trust,a trust created for charitable or religious or educational or scientific purposes
+28636,charitableness,generosity as manifested by practicing charity (as for the poor or unfortunate)
+28637,charity,a foundation created to promote the public good (not for assistance to any particular individuals)
+28638,charity,an institution set up to provide help to the needy
+28639,charity,an activity or gift that benefits the public at large
+28640,charity brotherly_love,a kindly and lenient attitude toward people
+28641,charlatanism quackery,the dishonesty of a charlatan
+28642,charley_horse charley-horse,a muscular cramp (especially in the thigh or calf) following vigorous exercise
+28643,charlotte,a mold lined with cake or crumbs and filled with fruit or whipped cream or custard
+28644,charlotte_russe,lady fingers enclosing Bavarian cream
+28645,charm,(physics) one of the six flavors of quark
+28646,charm good_luck_charm,something believed to bring good luck
+28647,charm_campaign,a campaign of flattery and friendliness (by a company, politician, etc.) to become more popular and gain support
+28648,charm_quark,a quark with an electric charge of +2/3 and a mass 2900 times that of an electron and a charm of +1
+28649,charmer beguiler,a person who charms others (usually by personal attractiveness)
+28650,charnel_house charnel,a vault or building where corpses or bones are deposited
+28651,charred_pancake_cup,a common name for a variety of Sarcosomataceae
+28652,chart,(usually plural) a listing of best-selling recorded music; "number 2 on the charts"
+28653,chart,a map designed to assist navigation by air or sea
+28654,chart graph,a visual display of information
+28655,charter,a contract to hire or lease transportation
+28656,charter,a document incorporating an institution and specifying its rights; includes the articles of incorporation and the certificate of incorporation
+28657,charter_member,one of the original members when an organization was founded
+28658,charter_school,an experimental public school for kindergarten through grade 12; created and organized by teachers and parents and community leaders; operates independently of other schools
+28659,chartered_accountant,a British or Canadian accountant who is a member of a professional body that has a royal charter
+28660,charterhouse,a Carthusian monastery
+28661,chartist technical_analyst,a stock market analyst who tries to predict market trends from graphs of recent prices of securities
+28662,charwoman char cleaning_woman cleaning_lady woman,a human female employed to do housework; "the char will clean the carpet"; "I have a woman who comes in four hours a day while I write"
+28663,chase,a rectangular metal frame used in letterpress printing to hold together the pages or columns of composed type that are printed at one time
+28664,chaser,a drink to follow immediately after another drink
+28665,chasm,a deep opening in the earth's surface
+28666,chasse sashay,(ballet) quick gliding steps with one foot always leading
+28667,chassis,a metal mounting for the circuit components of an electronic device
+28668,chassis,the skeleton of a motor vehicle consisting of a steel frame supported on springs that holds the body and motor
+28669,chasteness restraint simplicity simpleness,lack of ornamentation; "the room was simply decorated with great restraint"
+28670,chastity celibacy sexual_abstention,abstaining from sexual relations (as because of religious vows)
+28671,chasuble,a long sleeveless vestment worn by a priest when celebrating Mass
+28672,chat confab confabulation schmooze schmoose,an informal conversation
+28673,chat_room chatroom,a site on the internet where a number of users can communicate in real time (typically one dedicated to a particular topic)
+28674,chateau,an impressive country house (or castle) in France
+28675,chatelaine,the mistress of a chateau or large country house
+28676,chatelaine,a chain formerly worn at the waist by women; for carrying a purse or bunch of keys etc.
+28677,chattel personal_chattel movable,personal as opposed to real property; any tangible movable property (furniture or domestic animals or a car etc)
+28678,chattel_mortgage,a loan to buy some personal item; the item (or chattel) is security for the loan
+28679,chatter chattering,the rapid series of noises made by the parts of a machine
+28680,chatter chattering,the high-pitched continuing noise made by animals (birds or monkeys)
+28681,chatter_mark,marks on a glaciated rock caused by the movement of a glacier
+28682,chatter_mark,a mark made by a chattering tool on the surface of a workpiece
+28683,chatterer babbler prater chatterbox magpie spouter,an obnoxious and foolish and loquacious talker
+28684,chauffeur,a man paid to drive a privately owned car
+28685,chauffeuse,a woman chauffeur
+28686,chaulmoogra chaulmoogra_tree chaulmugra Hydnocarpus_kurzii Taraktagenos_kurzii Taraktogenos_kurzii,East Indian tree with oily seeds yield chaulmoogra oil used to treat leprosy
+28687,chaulmoogra_oil,an oil from chaulmoogra trees; used in treatment of skin diseases and leprosy
+28688,chauvinism jingoism superpatriotism ultranationalism,fanatical patriotism
+28689,chauvinist,a person with a prejudiced belief in the superiority of his or her own kind
+28690,chauvinist jingoist jingo flag-waver hundred-percenter patrioteer,an extreme bellicose nationalist
+28691,cheap_money,credit available at low rates of interest
+28692,cheap_shot,an unnecessarily aggressive and unfair remark directed at a defenseless person
+28693,cheap_shot,an illegal and unsportsmanlike act of unnecessary violence; "he called a penalty on them when the lineman took a cheap shot at the quarterback"
+28694,cheapjack,a peddler of inferior goods
+28695,cheapness tackiness tat sleaze,tastelessness by virtue of being cheap and vulgar
+28696,cheapskate tightwad,a miserly person
+28697,cheat cheating,a deception for profit to yourself
+28698,chebab,a Palestinian juvenile 10-15 years old who fights against the Israelis
+28699,check,a textile pattern of squares or crossed lines (resembling a checkerboard); "she wore a skirt with checks"
+28700,check,obstructing an opponent in ice hockey
+28701,check,(chess) a direct attack on an opponent's king
+28702,check bank_check cheque,a written order directing a bank to pay money; "he paid all his bills by check"
+28703,check checkout check-out_procedure,the act of inspecting or verifying; "they made a check of their equipment"; "the pilot ran through the check-out procedure"
+28704,check chip,a mark left after a small piece has been chopped or broken off of something
+28705,check chit tab,the bill in a restaurant; "he asked the waiter for the check"
+28706,check-in,the act of reporting your presence (as at an airport or a hotel)
+28707,check_character,a character that is added to the end of a block of transmitted data and used to check the accuracy of the transmission
+28708,check_girl hatcheck_girl,a female checker
+28709,check_mark check tick,a mark indicating that something has been noted or completed etc.; "as he called the role he put a check mark by each student's name"
+28710,check_register,a register of checks issued (usually in numeric order)
+28711,checkbook chequebook,a book issued to holders of checking accounts
+28712,checker,an attendant who checks coats or baggage
+28713,checker,one who checks the correctness of something
+28714,checker chequer,one of the flat round pieces used in playing the game of checkers
+28715,checkerbloom wild_hollyhock Sidalcea_malviflora,perennial purple-flowered wild mallow of western North America that is also cultivated
+28716,checkerboard checker_board,a board having 64 squares of two alternating colors
+28717,checkered_whiptail Cnemidophorus_tesselatus,markings are darker and more marked than in western whiptail; from southeastern Colorado to eastern Chihuahua
+28718,checkers draughts,a checkerboard game for two players who each have 12 pieces; the object is to jump over and so capture the opponent's pieces
+28719,checking_account chequing_account current_account,a bank account against which the depositor can draw checks that are payable on demand
+28720,checking_program,a program that examines other computer programs for syntax errors
+28721,checklist,a list of items (names or tasks etc.) to be checked or consulted
+28722,checkmate,complete victory
+28723,checkmate mate,a chess move constituting an inescapable and indefensible attack on the opponent's king
+28724,checkout checkout_counter,a counter in a supermarket where you pay for your purchases
+28725,checkout checkout_time,the latest time for vacating a hotel room; "the checkout here is 12 noon"
+28726,checkout_line,a queue of people waiting to pay for purchases
+28727,checkpoint,a place (as at a frontier) where travellers are stopped for inspection and clearance
+28728,checkroom left-luggage_office,a room where baggage or parcels are checked
+28729,checksum,a digit representing the sum of the digits in an instance of digital data; used to check whether errors have occurred in transmission or storage
+28730,checkup medical_checkup medical_examination medical_exam medical health_check,a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person
+28731,cheddar cheddar_cheese Armerican_cheddar American_cheese,hard smooth-textured cheese; originally made in Cheddar in southwestern England
+28732,cheddar_pink Diangus_gratianopolitanus,mat-forming perennial of central Europe with large fragrant pink or red flowers
+28733,cheek,either side of the face below the eyes
+28734,cheek_muscle buccinator_muscle musculus_buccinator,a muscle that flattens the cheek and retracts the angle of the mouth
+28735,cheek_pouch,a membranous pouch inside the mouth of many rodents (as a gopher)
+28736,cheekbone zygomatic_bone zygomatic malar malar_bone jugal_bone os_zygomaticum,the arch of bone beneath the eye that forms the prominence of the cheek
+28737,cheekpiece,either of two straps of a bridle that connect the bit to the headpiece
+28738,cheep peep,the short weak cry of a young bird
+28739,cheer,a cry or shout of approval
+28740,cheerer,a spectator who shouts encouragement
+28741,cheerfulness blitheness,a feeling of spontaneous good spirits; "his cheerfulness made everyone feel better"
+28742,cheerfulness cheer sunniness sunshine,the quality of being cheerful and dispelling gloom; "flowers added a note of cheerfulness to the drab room"
+28743,cheering shouting,encouragement in the form of cheers from spectators; "it's all over but the shouting"
+28744,cheerleader,an enthusiastic and vocal supporter; "he has become a cheerleader for therapeutic cloning"
+28745,cheerleader,someone who leads the cheers by spectators at a sporting event
+28746,cheerlessness uncheerfulness,a feeling of dreary or pessimistic sadness
+28747,cheese,a solid food prepared from the pressed curd of milk
+28748,cheese_cutter,a kitchen utensil (board or handle) with a wire for cutting cheese
+28749,cheese_dip,a dip made of cheeses
+28750,cheese_fondue,fondue made of cheese melted in wine for dipping bread and sometimes fruits
+28751,cheese_pizza,pizza with lots of cheese
+28752,cheese_press,a press for shaping cheese curd
+28753,cheese_rind,the rind of a cheese
+28754,cheese_sauce,white sauce with grated cheese
+28755,cheese_souffle,puffy dish of cheese and eggs (whites beaten separately) and white sauce
+28756,cheese_spread,spread made of cheese mixed with butter or cream or cream cheese and seasonings
+28757,cheeseboard cheese_tray,tray on which cheeses are served
+28758,cheeseburger,a hamburger with melted cheese on it
+28759,cheesecake,made with sweetened cream cheese and eggs and cream baked in a crumb crust
+28760,cheesecake,a photograph of an attractive woman in minimal attire
+28761,cheesecloth,a coarse loosely woven cotton gauze; originally used to wrap cheeses
+28762,cheesemonger,someone who sells cheese
+28763,cheetah chetah Acinonyx_jubatus,long-legged spotted cat of Africa and southwestern Asia having nonretractile claws; the swiftest mammal; can be trained to run down game
+28764,chef,a professional cook
+28765,chef's_salad,the combination salad prepared as a particular chef's specialty
+28766,cheilitis,inflammation and cracking of the skin of the lips
+28767,cheilosis perleche,a disorder of the lips marked by scaling and fissures at the corners of the mouth; caused by a deficiency of riboflavin
+28768,chela,a Hindu disciple of a swami
+28769,chelate chelate_compound,a heterocyclic compound having a metal ion attached by coordinate bonds to at least two nonmetal ions
+28770,chelation,(medicine) the process of removing a heavy metal from the bloodstream by means of a chelate as in treating lead or mercury poisoning
+28771,chelation,the process of forming a ring by forming one or more hydrogen bonds
+28772,chelicera,either of the first pair of fang-like appendages near the mouth of an arachnid; often modified for grasping and piercing
+28773,chelonian chelonian_reptile,a reptile of the order Chelonia
+28774,chemical chemical_substance,material produced by or used in a reaction involving changes in atoms or molecules
+28775,chemical_agent,an agent that produces chemical reactions
+28776,chemical_analysis qualitative_analysis,the act of decomposing a substance into its constituent elements
+28777,chemical_bomb gas_bomb,a bomb laden with chemical agents that are released when the bomb explodes
+28778,chemical_bond bond,an electrical force linking atoms
+28779,chemical_defense chemical_defence,procedures involved in taking defensive measures against attacks using chemical agents
+28780,chemical_element element,any of the more than 100 known substances (of which 92 occur naturally) that cannot be separated into simpler substances and that singly or in combination constitute all matter
+28781,chemical_energy,that part of the energy in a substance that can be released by a chemical reaction
+28782,chemical_engineering,the branch of engineering that is concerned with the design and construction and operation of the plants and machinery used in industrial chemical processes
+28783,chemical_engineering,the activity of applying chemistry to the solution of practical problems
+28784,chemical_equilibrium equilibrium,a chemical reaction and its reverse proceed at equal rates
+28785,chemical_industry,the manufacturers of chemicals considered collectively
+28786,chemical_irritant,a substance producing irritation
+28787,chemical_notation,a notation used by chemists to express technical facts in chemistry
+28788,chemical_phenomenon,any natural phenomenon involving chemistry (as changes to atoms or molecules)
+28789,chemical_plant,an industrial plant where chemicals are produced
+28790,chemical_process chemical_change chemical_action,(chemistry) any process determined by the atomic and molecular composition and structure of the substances involved
+28791,chemical_property,a property used to characterize materials in reactions that change their identity
+28792,chemical_reaction reaction,(chemistry) a process in which one or more substances are changed into others; "there was a chemical reaction of the lime with the ground water"
+28793,chemical_reactor,an apparatus for holding substances that are undergoing a chemical reaction
+28794,chemical_terrorism,terrorism using the chemical agents of chemical warfare; can undermine the personal security of citizens; "a good agent for chemical terrorism should be colorless and odorless and inexpensive and readily available and not detectable until symptoms are experienced"
+28795,chemical_warfare chemical_operations,warfare using chemical agents to kill or injure or incapacitate the enemy
+28796,chemical_weapon,chemical substances that can be delivered using munitions and dispersal devices to cause death or severe harm to people and animals and plants
+28797,chemiluminescence,luminescence resulting from a chemical reaction as the oxidation of luciferin in fireflies
+28798,chemise sack shift,a loose-fitting dress hanging straight from the shoulders without a waist
+28799,chemise shimmy shift slip teddy,a woman's sleeveless undergarment
+28800,chemisorption chemosorption,adsorption (especially when irreversible) by means of chemical instead of physical forces; "chemisorption of gaseous nitrogen on iron catalysts"
+28801,chemist,a scientist who specializes in chemistry
+28802,chemistry,the chemical composition and properties of a substance or object; "the chemistry of soil"
+28803,chemistry chemical_science,the science of matter; the branch of the natural sciences dealing with the composition of substances and their properties and reactions
+28804,chemistry interpersonal_chemistry alchemy,the way two individuals relate to each other; "their chemistry was wrong from the beginning -- they hated each other"; "a mysterious alchemy brought them together"
+28805,chemistry_department department_of_chemistry,the academic department responsible for teaching and research in chemistry
+28806,chemistry_lab chemistry_laboratory chem_lab,a laboratory for research in chemistry
+28807,chemoreceptor,a sensory receptor that responds to chemical stimuli
+28808,chemosis,edema of the mucous membrane of the eyeball and eyelid lining
+28809,chemosurgery,use of chemical to destroy diseased or malignant tissue; used in treatment of skin cancer
+28810,chemosynthesis,synthesis of carbohydrate from carbon dioxide and water; limited to certain bacteria and fungi
+28811,chemotaxis,movement by a cell or organism in reaction to a chemical stimulus
+28812,chemotherapy,the use of chemical agents to treat or control disease (or mental illness)
+28813,chenille,a heavy fabric woven with chenille cord; used in rugs and bedspreads
+28814,chenille chenille_cord,a soft tufted cord used in embroidery
+28815,cheoplastic_metal,any alloy that fuses at low temperatures and can be used molding artificial teeth
+28816,cherimoya cherimolla,large tropical fruit with leathery skin and soft pulp; related to custard apples
+28817,cherimoya cherimoya_tree Annona_cherimola,small tropical American tree bearing round or oblong fruit
+28818,chernozemic_soil,a rich black loam of Russia
+28819,cheroot,a cigar with both ends cut flat
+28820,cherry,wood of any of various cherry trees especially the black cherry
+28821,cherry,a red fruit with a single hard stone
+28822,cherry cherry_tree,any of numerous trees and shrubs producing a small fleshy round fruit with a single hard stone; many also produce a valuable hardwood
+28823,cherry-tree_gum,exudation from trees of the Prunus genus; resembles gum arabic
+28824,cherry_bomb,a red ball-shaped firecracker with high explosive power
+28825,cherry_laurel laurel_cherry Prunus_laurocerasus,frequently cultivated Eurasian evergreen shrub or small tree having showy clusters of white flowers and glossy foliage and yielding oil similar to bitter almond oil
+28826,cherry_laurel laurel_cherry mock_orange wild_orange Prunus_caroliniana,small flowering evergreen tree of southern United States
+28827,cherry_pepper Capsicum_annuum_cerasiforme,plant bearing small rounded usually pungent fruits
+28828,cherry_plum myrobalan myrobalan_plum Prunus_cerasifera,small Asiatic tree bearing edible red or yellow fruit
+28829,cherry_stone,the stone seed of a cherry
+28830,cherry_tomato,small red to yellow tomatoes
+28831,cherry_tomato Lycopersicon_esculentum_cerasiforme,plant bearing small red to yellow fruit
+28832,cherrystone cherrystone_clam,small quahog larger than a littleneck; eaten raw or cooked as in e.g. clams casino
+28833,cherrystone cherrystone_clam,a half-grown quahog
+28834,chert,variety of silica containing microcrystalline quartz
+28835,cherub,a sweet innocent baby
+28836,cherub,an angel of the second order whose gift is knowledge; usually portrayed as a winged child
+28837,chervil,fresh ferny parsley-like leaves used as a garnish with chicken and veal and omelets and green salads and spinach
+28838,chervil beaked_parsley Anthriscus_cereifolium,aromatic annual Old World herb cultivated for its finely divided and often curly leaves for use especially in soups and salads
+28839,chess cheat Bromus_secalinus,weedy annual native to Europe but widely distributed as a weed especially in wheat
+28840,chess chess_game,a board game for two players who move their 16 pieces according to specific rules; the object is to checkmate the opponent's king
+28841,chess_club,a club of people to play chess
+28842,chess_master,a chess player of great skill
+28843,chess_match,a match between chess players
+28844,chess_move,the act of moving a chess piece
+28845,chess_player,someone who plays the game of chess
+28846,chess_set,checkerboard and a set of 32 pieces used to play chess
+28847,chessboard chess_board,a checkerboard used to play chess
+28848,chessman chess_piece,any of 16 white and 16 black pieces used in playing the game of chess
+28849,chest,box with a lid; used for storage; usually large and sturdy
+28850,chest_cavity thoracic_cavity,the cavity in the vertebrate body enclosed by the ribs between the diaphragm and the neck and containing the lungs and heart
+28851,chest_of_drawers chest bureau dresser,furniture with drawers for keeping clothes
+28852,chest_pain,pain in the chest
+28853,chest_protector,protective garment consisting of a pad worn in baseball by catchers and by football players
+28854,chest_register chest_voice chest_tone,the lower ranges of the voice in speaking or singing
+28855,chesterfield,an overstuffed davenport with upright armrests
+28856,chesterfield,a fitted overcoat with a velvet collar
+28857,chestnut,wood of any of various chestnut trees of the genus Castanea
+28858,chestnut,edible nut of any of various chestnut trees of the genus Castanea
+28859,chestnut,the brown color of chestnuts
+28860,chestnut,a small horny callus on the inner surface of a horse's leg
+28861,chestnut,a dark golden-brown or reddish-brown horse
+28862,chestnut chestnut_tree,any of several attractive deciduous trees yellow-brown in autumn; yield a hard wood and edible nuts in a prickly bur
+28863,chestnut_blight chestnut_canker chestnut-bark_disease,a disease of American chestnut trees
+28864,chestnut_oak,an oak having leaves resembling those of chestnut trees
+28865,chetrum,100 chetrums equal 1 ngultrum in Bhutan
+28866,cheval-de-frise chevaux-de-frise,defensive structure consisting of a movable obstacle composed of barbed wire or spikes attached to a wooden frame; used to obstruct cavalry
+28867,cheval_glass,a full length mirror mounted in a frame in which it can be tilted
+28868,chevron,an inverted V-shaped charge
+28869,chevron stripe stripes grade_insignia,V-shaped sleeve badge indicating military rank and service; "they earned their stripes in Kuwait"
+28870,chevrotain mouse_deer,very small hornless deer-like ruminant of tropical Asia and west Africa
+28871,chew chaw cud quid plug wad,a wad of something chewable as tobacco
+28872,chew chewing mastication manduction,biting and grinding food in your mouth so it becomes soft enough to swallow
+28873,chewer,someone who chews (especially someone who chews tobacco)
+28874,chewing_gum gum,a preparation (usually made of sweetened chicle) for chewing
+28875,chewink cheewink Pipilo_erythrophthalmus,common towhee of eastern North America
+28876,chi khi,the 22nd letter of the Greek alphabet
+28877,chiaroscuro,a monochrome picture made by using several different shades of the same color
+28878,chiasma chiasm decussation,an intersection or crossing of two tracts in the form of the letter X
+28879,chiasmus,inversion in the second of two parallel phrases
+28880,chic chicness chichi modishness smartness stylishness swank last_word,elegance by virtue of being fashionable
+28881,chicane,a bridge hand that is void of trumps
+28882,chicane,a movable barrier used in motor racing; sometimes placed before a dangerous corner to reduce speed as cars pass in single file
+28883,chichi,someone who dresses in a trendy fashionable way
+28884,chichipe Lemaireocereus_chichipe,tall treelike Mexican cactus with edible red fruit
+28885,chick biddy,young bird especially of domestic fowl
+28886,chickadee,any of various small grey-and-black songbirds of North America
+28887,chickasaw_plum hog_plum hog_plum_bush Prunus_angustifolia,small native American shrubby tree bearing small edible yellow to reddish fruit
+28888,chicken,a foolhardy competition; a dangerous activity that is continued until one competitor becomes afraid and stops
+28889,chicken Gallus_gallus,a domestic fowl bred for flesh or eggs; believed to have been developed from the red jungle fowl
+28890,chicken poulet volaille,the flesh of a chicken used for food
+28891,chicken_Kiev,pounded chicken cutlets rolled around butter (that has been seasoned with herbs) and then covered with crumbs and fried
+28892,chicken_Marengo,braised chicken with onions and mushrooms in a wine and tomato sauce
+28893,chicken_Tetrazzini,chicken prepared in a cream sauce with mushrooms and served over pasta; usually topped with cheese
+28894,chicken_and_rice,rice and chicken cooked together with or without other ingredients and variously seasoned
+28895,chicken_broth chicken_stock,a stock made with chicken
+28896,chicken_cacciatore chicken_cacciatora hunter's_chicken,chicken casserole prepared with tomatoes and mushrooms and herbs in the Italian style
+28897,chicken_casserole,chicken cooked and served in a casserole
+28898,chicken_coop coop hencoop henhouse,a farm building for housing poultry
+28899,chicken_cordon_bleu,thin slices of chicken stuffed with cheese and ham and then sauteed
+28900,chicken_farm,farm where chickens are raised for sale
+28901,chicken_feed scratch,dry mash for poultry
+28902,chicken_hawk hen_hawk,nontechnical term for any hawks said to prey on poultry
+28903,chicken_leg chicken_drumstick,the lower joint of the leg of a chicken
+28904,chicken_liver,liver of a chicken used as meat
+28905,chicken_louse shaft_louse Menopon_palladum Menopon_gallinae,a louse parasitic on poultry
+28906,chicken_manure,chicken excreta used as fertilizer
+28907,chicken_mousse,mousse made with chicken
+28908,chicken_paprika chicken_paprikash,chicken simmered in broth with onions and paprika then mixed with sour cream
+28909,chicken_provencale,chicken cooked in a sauce made with tomatoes, garlic, and olive oil
+28910,chicken_roundworm Ascaridia_galli,intestinal parasite of domestic fowl
+28911,chicken_salad,salad composed primarily of chopped chicken meat
+28912,chicken_sandwich,a sandwich made with a filling of sliced chicken
+28913,chicken_scratch,cramped or illegible handwriting
+28914,chicken_snake,large North American snake
+28915,chicken_soup,soup made from chicken broth
+28916,chicken_stew,a stew made with chicken
+28917,chicken_taco,a taco with a chicken filling
+28918,chicken_wing,the wing of a chicken
+28919,chicken_wire,a galvanized wire network with a hexagonal mesh; used to build fences
+28920,chicken_yard hen_yard chicken_run fowl_run,an enclosed yard for keeping poultry
+28921,chickenpox varicella,an acute contagious disease caused by herpes varicella zoster virus; causes a rash of vesicles on the face and body
+28922,chickenshit,a false statement that is considered to indicate timidity or fear
+28923,chickeree Douglas_squirrel Tamiasciurus_douglasi,far western United States counterpart of the red squirrel
+28924,chickpea chickpea_plant Egyptian_pea Cicer_arietinum,Asiatic herb cultivated for its short pods with one or two edible seeds
+28925,chickpea garbanzo,the seed of the chickpea plant
+28926,chickpea garbanzo,large white roundish Asiatic legume; usually dried
+28927,chickweed,any of various plants of the genus Stellaria
+28928,chickweed_phlox sand_phlox Phlox_bifida Phlox_stellaria,low mat-forming herb of rocky places in United States
+28929,chicle chicle_gum,gum-like substance from the sapodilla
+28930,chicory chicory_root,the dried root of the chicory plant: used as a coffee substitute
+28931,chicory chicory_root,root of the chicory plant roasted and ground to substitute for or adulterate coffee
+28932,chicory curly_endive,crisp spiky leaves with somewhat bitter taste
+28933,chicory succory chicory_plant Cichorium_intybus,perennial Old World herb having rayed flower heads with blue florets cultivated for its root and its heads of crisp edible leaves used in salads
+28934,chicory_escarole endive escarole,variety of endive having leaves with irregular frilled edges
+28935,chiding scolding objurgation tongue-lashing,rebuking a person harshly
+28936,chief_executive_officer CEO chief_operating_officer,the corporate executive responsible for the operations of the firm; reports to a board of directors; may appoint other managers (including a president)
+28937,chief_financial_officer CFO,the corporate executive having financial authority to make appropriations and authorize expenditures for a firm
+28938,chief_justice,the judge who presides over a supreme court
+28939,chief_of_staff,the senior officer of a service of the armed forces
+28940,chief_petty_officer,a person with the senior noncommissioned naval rank
+28941,chieftaincy chieftainship,the position of chieftain
+28942,chiffon,a sheer fabric of silk or rayon
+28943,chiffon_cake,very light cake
+28944,chiffonier commode,a tall elegant chest of drawers
+28945,chigetai dziggetai Equus_hemionus_hemionus,Mongolian wild ass
+28946,chignon,a roll of hair worn at the nape of the neck
+28947,chigoe chigger chigoe_flea Tunga_penetrans,small tropical flea; the fertile female burrows under the skin of the host including humans
+28948,chilblain chilblains pernio,inflammation of the hands and feet caused by exposure to cold and moisture
+28949,child,a member of a clan or tribe; "the children of Israel"
+28950,child baby,an immature childish person; "he remained a child in practical matters as long as he lived"; "stop being a baby!"
+28951,child kid,a human offspring (son or daughter) of any age; "they had three children"; "they were able to send their kids to college"
+28952,child kid youngster minor shaver nipper small_fry tiddler tike tyke fry nestling,a young person of either sex; "she writes books for children"; "they're just kids"; "`tiddler' is a British term for youngster"
+28953,child's_body,the body of a human child
+28954,child's_game,a game enjoyed by children
+28955,child's_room,a bedroom for a child
+28956,child_abuse,the physical or emotional or sexual mistreatment of children
+28957,child_neglect,failure of caretakers to provide adequate emotional and physical care for a child
+28958,child_pornography kiddie_porn kiddy_porn,the illegal use of children in pornographic pictures or films
+28959,child_prodigy infant_prodigy wonder_child,a prodigy whose talents are recognized at an early age; "Mozart was a child prodigy"
+28960,child_support,court-ordered support paid by one spouse to the other who has custody of the children after the parents are separated
+28961,child_welfare_agency child_welfare_service,an administrative unit responsible for social work concerned with the welfare and vocational training of children
+28962,childbirth childbearing accouchement vaginal_birth,the parturition process in human beings; having a baby; the process of giving birth to a child
+28963,childbirth-preparation_class,a course that teaches pregnant women to use breathing and concentration and exercise techniques to use during labor
+28964,childcare child_care,a service involving care for other people's children
+28965,childhood,the time of person's life when they are a child
+28966,childhood puerility,the state of a child between infancy and adolescence
+28967,childishness puerility,a property characteristic of a child
+28968,childlessness,the condition of being without offspring
+28969,chili chili_con_carne,ground beef and chili peppers or chili powder often with tomatoes and kidney beans
+28970,chili chili_pepper chilli chilly chile,very hot and finely tapering pepper of special pungency
+28971,chili_dog,a hotdog with chili con carne on it
+28972,chili_powder,powder made of ground chili peppers mixed with e.g. cumin and garlic and oregano
+28973,chili_sauce,tomatoes and onions and peppers (sweet or hot) simmered with vinegar and sugar and various seasonings
+28974,chili_vinegar,fiery vinegar flavored with chili peppers
+28975,chill iciness gelidity,coldness due to a cold environment
+28976,chill pall,a sudden numbing dread
+28977,chill shivering,a sensation of cold that often marks the start of an infection and the development of a fever
+28978,chilliness coolness nip,the property of being moderately cold; "the chilliness of early morning"
+28979,chimaera,a deep-sea fish with a tapering body, smooth skin, and long threadlike tail
+28980,chime bell gong,a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument
+28981,chimera chimaera,a grotesque product of the imagination
+28982,chimney,a vertical flue that provides a path through which smoke from a fire is carried away through the wall or roof of a building
+28983,chimney_breast,walls that project out from the wall of a room and surround the chimney base
+28984,chimney_corner inglenook,a corner by a fireplace
+28985,chimney_plant chimney_bellflower Campanula_pyramidalis,bellflower of southeastern Europe
+28986,chimney_swift chimney_swallow Chateura_pelagica,American swift that nests in e.g. unused chimneys
+28987,chimneypot,a short earthenware pipe on the top of a chimney to increase the draft
+28988,chimneystack,the part of the chimney that is above the roof; usually has several flues
+28989,chimneysweeper chimneysweep sweep,someone who cleans soot from chimneys
+28990,chimpanzee chimp Pan_troglodytes,intelligent somewhat arboreal ape of equatorial African forests
+28991,chin mentum,the protruding part of the lower jaw
+28992,chin_rest,a rest on which a violinist can place the chin
+28993,chin_strap,a strap attached to a hat; passes under the chin and holds the hat in place
+28994,china,high quality porcelain originally made only in China
+28995,china_cabinet china_closet,a cabinet (usually with glass doors) for storing and displaying china
+28996,china_clay china_stone kaolin kaoline porcelain_clay terra_alba,a fine usually white clay formed by the weathering of aluminous minerals (as feldspar); used in ceramics and as an absorbent and as a filler (e.g., in paper)
+28997,china_pink rainbow_pink Dianthus_chinensis,Chinese pink with deeply toothed rose-lilac flowers with a purplish eye; usually raised as an annual
+28998,chinaberry chinaberry_tree China_tree Persian_lilac pride-of-India azederach azedarach Melia_azederach Melia_azedarach,tree of northern India and China having purple blossoms and small inedible yellow fruits; naturalized in the southern United States as a shade tree
+28999,chinaware china,dishware made of high quality porcelain
+29000,chincapin chinkapin chinquapin,small nut of either of two small chestnut trees of the southern United States; resembles a hazelnut
+29001,chinch_bug Blissus_leucopterus,small black-and-white insect that feeds on cereal grasses
+29002,chincherinchee wonder_flower Ornithogalum_thyrsoides,South African perennial with long-lasting spikes of white blossoms that are shipped in to Europe and America for use as winter cut flowers
+29003,chinchilla,the expensive silvery grey fur of the chinchilla
+29004,chinchilla,a thick twilled fabric of wool and cotton
+29005,chinchilla Chinchilla_laniger,small rodent with soft pearly grey fur; native to the Andes but bred in captivity for fur
+29006,chine,cut of meat or fish including at least part of the backbone
+29007,chine,backbone of an animal
+29008,chinese_mustard indian_mustard leaf_mustard gai_choi Brassica_juncea,Asiatic mustard used as a potherb
+29009,chink,a narrow opening as e.g. between planks in a wall
+29010,chink Chinaman,(ethnic slur) offensive term for a person of Chinese descent
+29011,chink click clink,a short light metallic sound
+29012,chinning_bar,a horizontal bar on which you can chin yourself
+29013,chino,a coarse twilled cotton fabric frequently used for uniforms
+29014,chinoiserie,a style in art reflecting Chinese influence; elaborately decorated and intricately patterned
+29015,chinook chinook_salmon king_salmon quinnat_salmon Oncorhynchus_tshawytscha,large Pacific salmon valued as food; adults die after spawning
+29016,chinook chinook_wind snow_eater,a warm dry wind blowing down the eastern slopes of the Rockies
+29017,chinook_salmon chinook king_salmon,pink or white flesh of large Pacific salmon
+29018,chinos,(plural) trousers made with chino cloth
+29019,chinquapin_oak chinkapin_oak yellow_chestnut_oak Quercus_muehlenbergii,medium-sized deciduous tree of the eastern United States that yields a strong durable wood
+29020,chintz,a brightly printed and glazed cotton fabric
+29021,chip,a triangular wooden float attached to the end of a log line
+29022,chip chip_shot,(golf) a low running approach shot
+29023,chip chipping splintering,the act of chipping something
+29024,chip cow_chip cow_dung buffalo_chip,a piece of dried bovine dung
+29025,chip crisp potato_chip Saratoga_chip,a thin crisp slice of potato fried in deep fat
+29026,chip microchip micro_chip silicon_chip microprocessor_chip,electronic equipment consisting of a small crystal of a silicon semiconductor fabricated to carry out a number of electronic functions in an integrated circuit
+29027,chip poker_chip,a small disk-shaped counter used to represent money when gambling
+29028,chipboard hardboard,a cheap hard material made from wood chips that are pressed together and bound with synthetic resin
+29029,chipmunk,a burrowing ground squirrel of western America and Asia; has cheek pouches and a light and dark stripe running down the body
+29030,chipolata,a small thin sausage
+29031,chipotle,a ripe jalapeno that has been dried for use in cooking
+29032,chipping_sparrow Spizella_passerina,small North American finch common in urban areas
+29033,chiralgia,a pain in the hand that is not traumatic
+29034,chiropodist foot_doctor podiatrist,a specialist in care for the feet
+29035,chiropractic,a method of treatment that manipulates body structures (especially the spine) to relieve low back pain or even headache or high blood pressure
+29036,chiropractor,a therapist who practices chiropractic
+29037,chirp,a sharp sound made by small birds or insects
+29038,chirpiness,cheerful and lively
+29039,chirrup twitter,a series of chirps
+29040,chisel,an edge tool with a flat steel blade with a cutting edge
+29041,chisel_steel,steel used in making chisels
+29042,chit,a dismissive term for a girl who is immature or who lacks respect; "she was incensed that this chit of a girl should dare to make a fool of her in front of the class"; "she's a saucy chit"
+29043,chitchat chit-chat chit_chat small_talk gab gabfest gossip tittle-tattle chin_wag chin-wag chin_wagging chin-wagging causerie,light informal conversation for social occasions
+29044,chitin,a tough semitransparent horny substance; the principal component of the exoskeletons of arthropods and the cell walls of certain fungi
+29045,chiton,a woolen tunic worn by men and women in ancient Greece
+29046,chiton coat-of-mail_shell sea_cradle polyplacophore,primitive elongated bilaterally symmetrical marine mollusk having a mantle covered with eight calcareous plates
+29047,chitterlings chitlins chitlings,small intestines of hogs prepared as food
+29048,chivalry gallantry politesse,courtesy towards women
+29049,chivalry knightliness,the medieval principles governing knighthood and knightly conduct
+29050,chives,cylindrical leaves used fresh as a mild onion-flavored seasoning
+29051,chives chive cive schnittlaugh Allium_schoenoprasum,perennial having hollow cylindrical leaves used for seasoning
+29052,chlamydia,a sexually transmitted infection caused by bacteria of the genus Chlamydia
+29053,chlamydia,coccoid rickettsia infesting birds and mammals; cause infections of eyes and lungs and genitourinary tract
+29054,chlamydospore,thick-walled asexual resting spore of certain fungi and algae
+29055,chlamys,a short mantle or cape fastened at the shoulder; worn by men in ancient Greece
+29056,chloasma melasma mask_of_pregnancy,a tan discoloration of a woman's face that is associated with pregnancy or with the use of oral contraceptives
+29057,chloral_hydrate,a colorless crystalline drug used as a sedative; irritates the stomach and can be addictive
+29058,chlorambucil Leukeran,an alkylating agent (trade name Leukeran) used to treat some kinds of cancer
+29059,chloramine chloramine-T,any of several compounds containing chlorine and nitrogen; used as an antiseptic in wounds
+29060,chloramphenicol Chloromycetin,an oral antibiotic (trade name Chloromycetin) used to treat serious infections (especially typhoid fever)
+29061,chlorate,any salt of chloric acid
+29062,chlordiazepoxide Librium Libritabs,a tranquilizer (trade names Librium and Libritabs) used in the treatment of alcoholism
+29063,chlorella,any alga of the genus Chlorella
+29064,chlorenchyma,parenchyma whose cells contain chloroplasts
+29065,chlorhexidine,a long-lasting liquid antiseptic; used by surgeons to wash their hands before performing surgery
+29066,chloric_acid,(HClO3) a strong unstable acid with an acrid odor found in chlorate salts
+29067,chloride,any compound containing a chlorine atom
+29068,chloride,any salt of hydrochloric acid (containing the chloride ion)
+29069,chlorination,the addition or substitution of chlorine in organic compounds
+29070,chlorination,disinfection of water by the addition of small amounts of chlorine or a chlorine compound
+29071,chlorine Cl atomic_number_17,a common nonmetallic element belonging to the halogens; best known as a heavy yellow irritating toxic gas; used to purify water and as a bleaching agent and disinfectant; occurs naturally only as a salt (as in sea water)
+29072,chlorine_dioxide,an explosive gas (ClO2) used chiefly in bleaching paper or starch or soap or flour and in water purification
+29073,chlorine_water,an aqueous solution of chlorine used as a bleaching agent
+29074,chlorinity,a measure of the quantity of chlorine or other halides in water (especially seawater)
+29075,chlorite,a generally green or black mineral; it occurs as a constituent of many rocks typically in the form of a flat crystal
+29076,chloroacetophenone CN_gas,a tear gas that is weaker than CS gas but lasts longer
+29077,chlorobenzene,a colorless volatile flammable liquid with an almond odor that is made from chlorine and benzene; used as a solvent and in the production of phenol and DDT and other organic compounds
+29078,chlorobenzylidenemalononitrile CS_gas,a tear gas that is stronger than CN gas but wears off faster; can be deployed by grenades or cluster bombs; can cause skin burns and fatal pulmonary edema
+29079,chlorofluorocarbon CFC,a fluorocarbon with chlorine; formerly used as a refrigerant and as a propellant in aerosol cans; "the chlorine in CFCs causes depletion of atmospheric ozone"
+29080,chloroform trichloromethane,a volatile liquid haloform (CHCl3); formerly used as an anesthetic; "chloroform was the first inhalation anesthetic"
+29081,chlorophyll chlorophyl,any of a group of green pigments found in photosynthetic organisms; there are four naturally occurring forms
+29082,chlorophyll_a,a blue-black plant pigment having a blue-green alcohol solution; found in all higher plants
+29083,chlorophyll_b,a dark-green plant pigment having a brilliant green alcohol solution; generally characteristic of higher plants
+29084,chlorophyll_c chlorofucin,the chlorophyll present in brown algae, diatoms, and flagellates
+29085,chlorophyll_d,the chlorophyll found (together with chlorophyll a) in red algae
+29086,chloropicrin nitrochloroform,a heavy colorless insoluble liquid compound that causes tears and vomiting; used as a pesticide and as tear gas
+29087,chloroplast,plastid containing chlorophyll and other pigments; in plants that carry out photosynthesis
+29088,chloroprene,derivative of butadiene used in making neoprene by polymerization
+29089,chloroquine,an antimalarial drug used to treat malaria and amebic dysentery and systemic lupus erythematosus
+29090,chlorosis greensickness,iron deficiency anemia in young women; characterized by weakness and menstrual disturbances and a green color to the skin
+29091,chlorothiazide Diuril,a diuretic drug (trade name Diuril) used in the treatment of edema and hypertension
+29092,chlorous_acid,(HClO2) a strongly oxidizing acid; known only in solution
+29093,chlorpheniramine_maleate Coricidin Chlor-Trimeton,an antihistamine (trade names Coricidin and Chlor-Trimeton)
+29094,chlorpromazine Thorazine,a drug (trade name Thorazine) derived from phenothiazine that has antipsychotic effects and is used as a sedative and tranquilizer
+29095,chlorpyrifos,a common organophosphate insecticide
+29096,chlortetracycline Aureomycin,a yellow crystalline antibiotic (trade name Aureomycin) used to treat certain bacterial and rickettsial diseases
+29097,chlorthalidone Hygroton Thalidone,a diuretic (trade names Hygroton and Thalidone) used to control hypertension and conditions that cause edema; effective in lowering blood pressure to prevent heart attacks
+29098,choanocyte collar_cell,any of the flagellated cells in sponges having a collar of cytoplasm around the flagellum; they maintain a flow of water through the body
+29099,choc,colloquial British abbreviation; "a box of chocs"
+29100,choc-ice,colloquial British abbreviation for chocolate ice cream
+29101,chock wedge,a block of wood used to prevent the sliding or rolling of a heavy object
+29102,chocolate,a food made from roasted ground cacao beans
+29103,chocolate coffee deep_brown umber burnt_umber,a medium brown to dark-brown color
+29104,chocolate_bar,a bar of chocolate candy
+29105,chocolate_cake,cake containing chocolate
+29106,chocolate_candy,candy made with chocolate
+29107,chocolate_chip_cookie Toll_House_cookie,cookies containing chocolate chips
+29108,chocolate_eclair,eclair topped with chocolate
+29109,chocolate_egg,egg-shaped chocolate candy
+29110,chocolate_fondue,fondue made of chocolate melted with milk or cream for dipping fruits
+29111,chocolate_fudge,fudge made with chocolate or cocoa
+29112,chocolate_ice_cream,ice cream flavored with chocolate
+29113,chocolate_kiss,a kiss that consists of a conical bite-sized piece of chocolate
+29114,chocolate_liquor,the liquid or paste that is produced when cocoa beans are roasted and ground; the basis of all chocolate
+29115,chocolate_milk,milk flavored with chocolate syrup
+29116,chocolate_mousse,dessert mousse made with chocolate
+29117,chocolate_pudding,sweet chocolate flavored custard-like pudding usually thickened with flour rather than eggs
+29118,chocolate_sauce chocolate_syrup,sauce made with unsweetened chocolate or cocoa and sugar and water
+29119,choice pick selection,the person or thing chosen or selected; "he was my pick for mayor"
+29120,choice selection option pick,the act of choosing or selecting; "your choice of colors was unfortunate"; "you can take your pick"
+29121,choice_morsel tidbit titbit,a small tasty bit of food
+29122,choir,a chorus that sings as part of a religious ceremony
+29123,choir,the area occupied by singers; the part of the chancel between sanctuary and nave
+29124,choir consort,a family of similar musical instrument playing together
+29125,choir_loft,a gallery in a church occupied by the choir
+29126,choir_school schola_cantorum,a school that is part of a cathedral or monastery where boys with singing ability can receive a general education
+29127,choirboy,a boy who sings in a choir
+29128,choirmaster precentor cantor,the musical director of a choir
+29129,choke,a valve that controls the flow of air into the carburetor of a gasoline engine
+29130,choke choke_coil choking_coil,a coil of low resistance and high inductance used in electrical circuits to pass direct current and attenuate alternating current
+29131,chokecherry,the fruit of the chokecherry tree
+29132,chokecherry chokecherry_tree Prunus_virginiana,a common wild cherry of eastern North America having small bitter black berries favored by birds
+29133,chokedamp blackdamp,the atmosphere in a mine following an explosion; high in carbon dioxide and incapable of supporting life
+29134,chokehold choke_hold,a restraining hold; someone loops the arm around the neck of another person in a tight grip, usually from behind; "he grabbed the woman in a chokehold, demanded her cash and jewelry, and then fled"
+29135,chokepoint,a point of congestion or blockage; "the bridge is always a chokepoint at rush hour"
+29136,choker,an unfortunate person who is unable to perform effectively because of nervous tension or agitation; "he could win if he wasn't a choker"
+29137,choker collar dog_collar neckband,necklace that fits tightly around a woman's neck
+29138,choker ruff ruffle neck_ruff,a high tight collar
+29139,chokey choky,British slang (dated) for a prison
+29140,choking,a condition caused by blocking the airways to the lungs (as with food or swelling of the larynx)
+29141,choking strangling strangulation throttling,the act of suffocating (someone) by constricting the windpipe; "no evidence that the choking was done by the accused"
+29142,cholangiography,roentgenographic examination of the bile ducts after a contrast medium has been injected
+29143,cholangitis,inflammation of the bile ducts
+29144,cholecystectomy,surgical removal of the gall bladder (usually for relief of gallstone pain)
+29145,cholecystitis,inflammation of the gall bladder
+29146,cholecystokinin,a gastrointestinal hormone that stimulates the secretion of pancreatic enzymes and the contraction and emptying of the gall bladder; its release is stimulated by the presence of fatty acids and amino acids in the small intestine
+29147,cholelithiasis,the presence of gallstones in the gallbladder
+29148,cholelithotomy,removal of gallstone through an incision in the gallbladder
+29149,cholera Asiatic_cholera Indian_cholera epidemic_cholera,an acute intestinal infection caused by ingestion of contaminated water or food
+29150,cholera_infantum,often fatal form of gastroenteritis occurring in children; not true cholera but having similar symptoms
+29151,cholera_morbus collywobbles,severe gastroenteritis of unknown etiology; characterized by severe colic and vomiting and diarrhea
+29152,cholesterol cholesterin,an animal sterol that is normally synthesized by the liver; the most abundant steroid in animal tissues
+29153,cholic_acid,an insoluble crystalline acid present in bile
+29154,choline,a B-complex vitamin that is a constituent of lecithin; essential in the metabolism of fat
+29155,cholinesterase,an enzyme that hydrolyses acetylcholine (into choline and acetic acid)
+29156,cholla Opuntia_cholla,arborescent cacti having very spiny cylindrical stem segments; southwestern United States and Mexico
+29157,chomping,the act of chewing noisily
+29158,chon,100 chon equal 1 won in South Korea
+29159,chon,100 chon equal 1 won in North Korea
+29160,chondrin,a substance that resembles gelatin and is obtained by boiling cartilage in water
+29161,chondrite,a rock of meteoric origin containing chondrules
+29162,chondroma,a common benign tumor of cartilage cells
+29163,chondrosarcoma,a malignant neoplasm of cartilage cells
+29164,chondrule,small granule (of e.g. chrysolite) found in some meteoric rocks
+29165,choo-choo,a child's word for locomotive
+29166,chop,the irregular motion of waves (usually caused by wind blowing in a direction opposite to the tide); "the boat headed into the chop"
+29167,chop,a small cut of meat including part of a rib
+29168,chop,a jaw; "I'll hit him on the chops"
+29169,chop chop_shot,a tennis return made with a downward motion that puts backspin on the ball
+29170,chop chopper,a grounder that bounces high in the air
+29171,chop-suey_greens,succulent and aromatic young dark green leaves used in Chinese and Vietnamese and Japanese cooking
+29172,chop-suey_greens tong_ho shun_giku Chrysanthemum_coronarium_spatiosum,grown for its succulent edible leaves used in Asian cooking
+29173,chop_shop,a place where stolen cars are disassembled for their parts
+29174,chop_suey,meat or fish stir-fried with vegetables (e.g., celery, onions, peppers or bean sprouts) seasoned with ginger and garlic and soy sauce; served with rice; created in the United States and frequently served in Chinese restaurants there
+29175,chopine platform,a woman's shoe with a very high thick sole
+29176,chopped_steak chop_steak chopsteak hamburger_steak beef_patty,a patty of ground cooked beef
+29177,chopper pearly,informal terms for a human `tooth'
+29178,choppiness roughness rough_water,used of the sea during inclement or stormy weather
+29179,chopping_block,a steady wooden block on which food can be cut or diced or wood can be split
+29180,chopping_board cutting_board,a wooden board where meats or vegetables can be cut
+29181,chopstick,one of a pair of slender sticks used as oriental tableware to eat food with
+29182,choragus,(ancient Greece) leader of a group or festival; leader of a chorus
+29183,choral_ode,ode sung by the chorus in classical Greek drama
+29184,chorale choral,a stately Protestant (especially Lutheran) hymn tune
+29185,chorale_prelude,a composition for organ using a chorale as a basis for variations
+29186,chord,a straight line connecting two points on a curve
+29187,chord,a combination of three or more notes that blend harmoniously when sounded together
+29188,chordamesoderm chordomesoderm,the area of mesoderm that forms the notochord
+29189,chordate,any animal of the phylum Chordata having a notochord or spinal column
+29190,chordate_family,any family in the phylum Chordata
+29191,chordate_genus,any genus in the phylum Chordata
+29192,chorditis,inflammation of the spermatic cord
+29193,chorditis,inflammation of the vocal cords
+29194,chordophone,a stringed instrument of the group including harps, lutes, lyres, and zithers
+29195,chorea,any of several degenerative nervous disorders characterized by spasmodic movements of the body and limbs
+29196,choreic_abasia,abasia related to abnormal movements of the legs
+29197,choreographer,someone who creates new dances
+29198,choreography,the representation of dancing by symbols as music is represented by notes
+29199,choreography,a notation used by choreographers
+29200,chorioallantois chorioallantoic_membrane,the very vascular fetal membrane composed of the fused chorion and adjacent wall of the allantois
+29201,choriomeningitis,a cerebral meningitis with cellular infiltration of the meninges
+29202,chorion,the outermost membranous sac enclosing the embryo in higher vertebrates (reptiles, birds and mammals)
+29203,chorionic_villus,one of the tiny villi that stick out of the fetal chorion and combine with the mother's uterine tissue to form the placenta
+29204,chorionic_villus_sampling chorionic_villus_biopsy,a prenatal test to detect birth defects at an early stage of pregnancy; tissue from the chorionic villi is assayed
+29205,chorioretinitis,inflammation of the choroid layer behind the retina
+29206,chorister,a singer in a choir
+29207,chorizo,a spicy Spanish pork sausage
+29208,choroid choroid_coat,a highly vascular membrane in the eye between the retina and the sclera; a dark pigmentation minimizes the scattering of light inside the eye
+29209,choroid_plexus plexus_choroideus,a vascular plexus of the cerebral ventricles that regulate intraventricular pressure
+29210,choroid_vein vena_choroidea,either of two veins serving the choroid coat of the eye
+29211,choroidal_artery arteria_choroidea,an artery that supplies the choroid plexus
+29212,choropleth_map,a map that uses graded differences in shading or color or the placing of symbols inside defined areas on the map in order to indicate the average values of some property or quantity in those areas
+29213,chortle chuckle,a soft partly suppressed laugh
+29214,chorus,a group of people assembled to sing together
+29215,chorus,any utterance produced simultaneously by a group; "a chorus of boos"
+29216,chorus Greek_chorus,a company of actors who comment (by speaking or singing in unison) on the action in a classical Greek play
+29217,chorus chorus_line,a body of dancers or singers who perform together
+29218,chorus_frog,any of several small North American frogs having a loud call
+29219,chorus_girl showgirl chorine,a woman who dances in a chorus line
+29220,chosen,one who is the object of choice; who is given preference; "she was Mama's chosen"
+29221,chosen elect,an exclusive group of people; "one of the elect who have power inside the government"
+29222,chosen_people,any people believing themselves to be chosen by God
+29223,chough,a European corvine bird of small or medium size with red legs and glossy black plumage
+29224,chow chow_chow,breed of medium-sized dogs with a thick coat and fluffy curled tails and distinctive blue-black tongues; believed to have originated in northern China
+29225,chow chuck eats grub,informal terms for a meal
+29226,chow_line,a queue of people waiting for food to be served (especially at a military camp)
+29227,chow_mein,chop suey served with fried noodles
+29228,chowchow,chopped pickles in mustard sauce
+29229,chowchow,a Chinese preserve of mixed fruits and ginger
+29230,chowder,a thick soup or stew made with milk and bacon and onions and potatoes
+29231,chrestomathy,a selection of passages from different authors that is compiled as an aid in learning a language
+29232,chrism chrisom sacramental_oil holy_oil,a consecrated ointment consisting of a mixture of oil and balsam
+29233,christella,any of several tropical ferns of the genus Christella having thin brittle fronds
+29234,christening,giving a Christian name at baptism
+29235,chromate,any salt or ester of chromic acid
+29236,chromatic_aberration,an optical aberration in which the image has colored fringes
+29237,chromatic_color chromatic_colour spectral_color spectral_colour,a color that has hue
+29238,chromatic_scale,a 12-note scale including all the semitones of the octave
+29239,chromatid,one of two identical strands into which a chromosome splits during mitosis
+29240,chromatin chromatin_granule,the readily stainable substance of a cell nucleus consisting of DNA and RNA and various proteins; during mitotic division it condenses into chromosomes
+29241,chromatism,hallucinatory perception of colored lights
+29242,chromatism,abnormal pigmentation
+29243,chromatogram,the recording (column or paper strip) on which the constituents of a mixture are adsorbed in chromatography
+29244,chromatography,a process used for separating mixtures by virtue of differences in absorbency
+29245,chrome,another word for chromium when it is used in dyes or pigments
+29246,chrome-nickel_steel Elinvar,Elinvar is a trademark for a kind of steel used for watch springs because its elasticity is constant over a wide range of temperatures
+29247,chrome-tungsten_steel,a steel alloy made with chromium and tungsten
+29248,chrome_alum,a violet-colored salt used in hide tanning and as a mordant in dyeing
+29249,chrome_green,any of a class of green pigments consisting of chrome yellow and iron blue
+29250,chrome_green,a brilliant green color
+29251,chrome_red,a red pigment used in paints; basic lead chromate
+29252,chrome_yellow,any of several yellow pigments consisting of normal lead chromate and other lead compounds
+29253,chromesthesia chromaesthesia,a form of synesthesia in which nonvisual stimulation results in the experience of color sensations
+29254,chromic_acid,an unstable acid known only in solution and as chromate salts
+29255,chromite,a brownish-black mineral; the major source of chromium
+29256,chromium Cr atomic_number_24,a hard brittle multivalent metallic element; resistant to corrosion and tarnishing
+29257,chromoblastomycosis,a fungal infection characterized by itchy warty nodules on the skin
+29258,chromogen,a compound that can be converted to a pigment
+29259,chromolithography,single- or multi-color lithography
+29260,chromophore,the chemical group that gives color to a molecule
+29261,chromoplast,plastid containing pigments other than chlorophyll usually yellow or orange carotenoids
+29262,chromosomal_aberration chromosomal_anomaly chrosomal_abnormality chromosonal_disorder,any change in the normal structure or number of chromosomes; often results in physical or mental abnormalities
+29263,chromosome,a threadlike strand of DNA in the cell nucleus that carries the genes in a linear order; "humans have 22 chromosome pairs plus two sex chromosomes"
+29264,chromosphere,a gaseous layer of the sun's atmosphere (extending from the photosphere to the corona) that is visible during a total eclipse of the sun
+29265,chronic_bronchitis,a form of bronchitis characterized by excess production of sputum leading to a chronic cough and obstruction of air flow
+29266,chronic_gastritis,persistent gastritis can be a symptom of a gastric ulcer or pernicious anemia or stomach cancer or other disorders
+29267,chronic_glaucoma open-angle_glaucoma,glaucoma caused by blockage of the canal of Schlemm; produces gradual loss of peripheral vision; "open-angle glaucoma is the most common type of glaucoma"
+29268,chronic_glossitis,glossitis with atrophy of tongue tissue; sometimes accompanies pernicious anemia
+29269,chronic_leukemia,slowly progressing leukemia
+29270,chronic_lymphocytic_leukemia,chronic leukemia characterized by lymphoblast-like cells; more common in older men
+29271,chronic_myelocytic_leukemia myeloid_leukemia,chronic leukemia characterized by granular leukocytes; more common in older people
+29272,chronic_obstructive_pulmonary_disease,a nonreversible lung disease that is a combination of emphysema and chronic bronchitis; usually patients have been heavy cigarette smokers
+29273,chronic_pyelonephritis,pyelonephritis that develops slowly and can lead to renal failure if untreated; often associated with a kidney stone or with narrowing of the urinary passageways
+29274,chronic_renal_failure chronic_kidney_failure,renal failure that can result from a variety of systemic disorders
+29275,chronic_wasting_disease,a wildlife disease (akin to bovine spongiform encephalitis) that affects deer and elk
+29276,chronicler,someone who writes chronicles
+29277,chronograph,an accurate timer for recording time
+29278,chronological_age,age measured by the time (years and months) that something or someone has existed; "his chronological age was 71 years"
+29279,chronology,an arrangement of events in time
+29280,chronology,a record of events in the order of their occurrence
+29281,chronology,the determination of the actual temporal sequence of past events
+29282,chronometer,an accurate clock (especially used in navigation)
+29283,chronoscope,an instrument for accurate measurements of small intervals of time
+29284,chrysalis,pupa of a moth or butterfly enclosed in a cocoon
+29285,chrysanthemum,the flower of a chrysanthemum plant
+29286,chrysanthemum,any of numerous perennial Old World herbs having showy brightly colored flower heads of the genera Chrysanthemum, Argyranthemum, Dendranthema, Tanacetum; widely cultivated
+29287,chrysoberyl,a rare hard yellow green mineral consisting of beryllium aluminate in crystal form; used as a gemstone
+29288,chrysolite,a brown or yellow-green olivine found in igneous and metamorphic rocks and used as a gemstone
+29289,chrysoprase,a green variety of chalcedony valued as a gemstone
+29290,chrysotherapy,the use of chemicals containing gold for treating diseases (such as rheumatoid arthritis)
+29291,chrysotile,a grey or green fibrous mineral; an important source of commercial asbestos
+29292,chub Leuciscus_cephalus,European freshwater game fish with a thick spindle-shaped body
+29293,chub_mackerel tinker Scomber_japonicus,small mackerel found nearly worldwide
+29294,chubbiness pudginess tubbiness rolypoliness,the property of having a plump and round body
+29295,chuck,the part of a forequarter from the neck to the ribs and including the shoulder blade
+29296,chuck,a holding device consisting of adjustable jaws that center a workpiece in a lathe or center a tool in a drill
+29297,chuck-will's-widow Caprimulgus_carolinensis,large whippoorwill-like bird of the southern United States
+29298,chuck_short_ribs,between the chuck and the brisket
+29299,chuck_wagon,a wagon equipped with a cookstove and provisions (for cowboys)
+29300,chuckwalla Sauromalus_obesus,a herbivorous lizard that lives among rocks in the arid parts of southwestern United States and Mexico
+29301,chufa yellow_nutgrass earth_almond ground_almond rush_nut Cyperus_esculentus,European sedge having small edible nutlike tubers
+29302,chug,the dull explosive noise made by an engine
+29303,chukka chukka_boot,a shoe that comes up to the ankle and is laced through two or three pairs of eyelets; often made of suede
+29304,chukker chukka,(polo) one of six divisions into which a polo match is divided
+29305,chum,bait consisting of chopped fish and fish oils that are dumped overboard to attract fish
+29306,chum_salmon chum Oncorhynchus_keta,a large Pacific salmon with small spots on its back; an important food fish
+29307,chumminess camaraderie comradeliness comradery comradeship,the quality of affording easy familiarity and sociability
+29308,chump fool gull mark patsy fall_guy sucker soft_touch mug,a person who is gullible and easy to take advantage of
+29309,chunga seriema Chunga_burmeisteri,Argentinian Cariama
+29310,chunk,a substantial amount; "we won a chunk of money"
+29311,chunnel Channel_Tunnel,the railroad tunnel between France and England under the English Channel
+29312,church,the body of people who attend or belong to a particular local church; "our church is hosting a picnic next week"
+29313,church Christian_church,one of the groups of Christians who have their own beliefs and forms of worship
+29314,church church_building,a place for public (especially Christian) worship; "the church was empty"
+29315,church-state,a state ruled by religious authority
+29316,church_bell,a bell in a church tower (usually sounded to summon people to church); "church bells were ringing all over town"
+29317,church_calendar ecclesiastical_calendar,a calendar of the Christian year indicating the dates of fasts and festivals
+29318,church_hat,a fanciful hat of the kind worn by Black women for Sunday worship
+29319,church_key,can opener that has a triangular pointed end that pierces the tops of cans
+29320,church_mouse,a fictional mouse created by Lewis Carroll
+29321,church_officer,a church official
+29322,church_roll,a list of the members of church
+29323,church_school parochial_school,a private religious school run by a church or parish
+29324,church_service church,a service conducted in a house of worship; "don't be late for church"
+29325,church_tower,the tower of a church
+29326,church_year Christian_year,the year in the ecclesiastical calendar; especially feast days and special seasons
+29327,churchgoer church_member,a religious person who goes to church regularly
+29328,churchwarden,an officer in the Episcopal church who helps a parish priest with secular matters
+29329,churchyard God's_acre,the yard associated with a church
+29330,churidars,tight trousers worn by people from the Indian subcontinent (typically with a kameez or kurta)
+29331,churn butter_churn,a vessel in which cream is agitated to separate butterfat from buttermilk
+29332,chute slide slideway sloping_trough,sloping channel through which things can descend
+29333,chutney Indian_relish,a spicy condiment made of chopped fruits or vegetables cooked in vinegar and sugar with ginger and spices
+29334,chutzpa chutzpah hutzpah,(Yiddish) unbelievable gall; insolence; audacity
+29335,chutzpanik,(Yiddish) a person characterized by chutzpa
+29336,chyle,a milky fluid consisting of lymph and emulsified fats; formed in the small intestine during digestion of ingested fats
+29337,chylomicron,a microscopic particle of triglycerides produced in the intestines during digestion; in the bloodstream they release their fatty acids into the blood
+29338,chyme,a semiliquid mass of partially digested food that passes from the stomach through the pyloric sphincter into the duodenum
+29339,cicada cicala,stout-bodied insect with large membranous wings; male has drum-like organs for producing a high-pitched drone
+29340,cicada_killer Sphecius_speciosis,large black or rust-colored wasp that preys on cicadas
+29341,cicero,a linear unit of the size of type slightly larger than an em
+29342,cicerone,a guide who conducts and informs sightseers
+29343,cichlid cichlid_fish,freshwater fishes of tropical America and Africa and Asia similar to American sunfishes; some are food fishes; many small ones are popular in aquariums
+29344,cider cyder,a beverage made from juice pressed from apples
+29345,cider_gum Eucalypt_gunnii,small to medium-sized tree of Tasmania
+29346,cider_mill,mill that extracts juice from apples to make apple cider
+29347,cider_vinegar,vinegar made from cider
+29348,ciderpress,a press that is used to extract the juice from apples
+29349,cigar,a roll of tobacco for smoking
+29350,cigar-box_cedar,fragrant wood much used for cigar boxes
+29351,cigar_band,a narrow paper band around a cigar
+29352,cigar_box,a box for holding cigars
+29353,cigar_butt,small part of a cigar that is left after smoking
+29354,cigar_cutter,an implement for cutting the tip off of a cigar
+29355,cigar_lighter cigarette_lighter pocket_lighter,a lighter for cigars or cigarettes
+29356,cigar_smoker,a smoker of cigars
+29357,cigarette cigaret coffin_nail butt fag,finely ground tobacco wrapped in paper; for smoking
+29358,cigarette_burn,a burn mark left by a smoldering cigarette; "a cigarette burn on the edge of the table"
+29359,cigarette_butt,small part of a cigarette that is left after smoking
+29360,cigarette_case,a small flat case for holding cigarettes; can be carried in a purse or a pocket
+29361,cigarette_holder,a tube that holds a cigarette while it is being smoked
+29362,cigarette_paper rolling_paper,a strong tissue paper that burns evenly and is sufficiently porous to control the burning of the tobacco in a cigarette
+29363,cigarette_smoker,a smoker of cigarettes
+29364,cigarillo,small cigar or cigarette wrapped in tobacco instead of paper
+29365,ciliary_artery arteria_ciliaris,one of several arteries supplying the choroid coat of the eye
+29366,ciliary_body,the part of the tunic of the eye between the choroid coat and the iris; "the ciliary body produces aqueous humor"
+29367,ciliary_veins venae_ciliares,small veins coming from the ciliary body
+29368,ciliate ciliated_protozoan ciliophoran,a protozoan with a microscopic appendage extending from the surface of the cell
+29369,cilium,a hairlike projection from the surface of a cell; provides locomotion in free-swimming unicellular organisms
+29370,cimetidine Tagamet,a drug (trade name Tagamet) used to treat peptic ulcers by decreasing the secretion of stomach acid
+29371,cinch,a form of all fours in which the players bid for the privilege of naming trumps
+29372,cinch breeze picnic snap duck_soup child's_play pushover walkover piece_of_cake,any undertaking that is easy to do; "marketing this product will be no picnic"
+29373,cinch girth,stable gear consisting of a band around a horse's belly that holds the saddle in place
+29374,cinchona chinchona,any of several trees of the genus Cinchona
+29375,cinchona cinchona_bark Peruvian_bark Jesuit's_bark,medicinal bark of cinchona trees; source of quinine and quinidine
+29376,cinchona_tree Cinchona_pubescens,small tree of Ecuador and Peru having very large glossy leaves and large panicles of fragrant pink flowers; cultivated for its medicinal bark
+29377,cinchonine,an alkaloid derivative of the bark of cinchona trees that is used as an antimalarial drug
+29378,cinder clinker,a fragment of incombustible matter left after a wood or coal or charcoal fire
+29379,cinder_block clinker_block breeze_block,a light concrete building block made with cinder aggregate; "cinder blocks are called breeze blocks in Britain"
+29380,cinder_pig,pig iron containing a substantial proportion of slag
+29381,cinder_track,a racetrack paved with fine cinders
+29382,cinema movie_theater movie_theatre movie_house picture_palace,a theater where films are shown
+29383,cinema_verite,a movie that shows ordinary people in actual activities without being controlled by a director
+29384,cineraria Pericallis_cruenta Senecio_cruentus,herb of Canary Islands widely cultivated for its blue or purple or red or variegated daisylike flowers
+29385,cingulate_gyrus gyrus_cinguli,a long curved structure on the medial surface of the cerebral hemispheres; the cortical part of the limbic system
+29386,cingulum,(anatomy) an encircling structure (as the ridge around the base of a tooth)
+29387,cinnabar,a heavy reddish mineral consisting of mercuric sulfide; the chief source of mercury
+29388,cinnabar cinnabar_moth Callimorpha_jacobeae,large red-and-black European moth; larvae feed on leaves of ragwort; introduced into United States to control ragwort
+29389,cinnabar_chanterelle Cantharellus_cinnabarinus,mushroom with a distinctive pink to vermillion fruiting body
+29390,cinnamon,spice from the dried aromatic bark of the Ceylon cinnamon tree; used as rolled strips or ground
+29391,cinnamon Ceylon_cinnamon Ceylon_cinnamon_tree Cinnamomum_zeylanicum,tropical Asian tree with aromatic yellowish-brown bark; source of the spice cinnamon
+29392,cinnamon cinnamon_bark,aromatic bark used as a spice
+29393,cinnamon_bark,aromatic bark of Saigon cinnamon used medicinally as a carminative
+29394,cinnamon_bear,reddish-brown color phase of the American black bear
+29395,cinnamon_bread,bread flavored with cinnamon often containing raisins
+29396,cinnamon_fern fiddlehead fiddlehead_fern Osmunda_cinnamonea,New World fern having woolly cinnamon-colored spore-bearing fronds in early spring later surrounded by green fronds; the early uncurling fronds are edible
+29397,cinnamon_roll cinnamon_bun cinnamon_snail,rolled dough spread with cinnamon and sugar (and raisins) then sliced before baking
+29398,cinnamon_stone essonite hessonite,a garnet ranging in color from yellow to brown
+29399,cinnamon_toast,buttered toast with sugar and cinnamon (and nutmeg and grated lemon peel)
+29400,cinnamon_vine Chinese_yam Dioscorea_batata,hardy Chinese vine naturalized in United States and cultivated as an ornamental climber for its glossy heart-shaped cinnamon-scented leaves and in the tropics for its edible tubers
+29401,cinquefoil,an ornamental carving consisting of five arcs arranged in a circle
+29402,cinquefoil five-finger,any of a numerous plants grown for their five-petaled flowers; abundant in temperate regions; alleged to have medicinal properties
+29403,cipher cypher,a message written in a secret code
+29404,cipher cypher cryptograph secret_code,a secret method of writing
+29405,cipher cypher nobody nonentity,a person of no influence
+29406,ciprofloxacin Cipro,an oral antibiotic (trade name Cipro) used against serious bacterial infections of the skin or respiratory tract or urinary tract or bones or joints
+29407,circadian_rhythm,a daily cycle of activity observed in many living organisms
+29408,circle,something approximating the shape of a circle; "the chairs were arranged in a circle"
+29409,circle,ellipse in which the two axes are of equal length; a plane curve generated by one point moving at a constant distance from a fixed point; "he calculated the circumference of the circle"
+29410,circle dress_circle,a curved section or tier of seats in a hall or theater or opera house; usually the first tier above the orchestra; "they had excellent seats in the dress circle"
+29411,circle round,any circular or rotating mechanism; "the machine punched out metal circles"
+29412,circle_of_Willis,a ring of arteries at the base of the brain
+29413,circle_of_curvature osculating_circle,the circle that touches a curve (on the concave side) and whose radius is the radius of curvature
+29414,circlet,a small circle
+29415,circlet,decorated metal band worn around the head
+29416,circuit,an established itinerary of venues or events that a particular group of people travel to; "she's a familiar name on the club circuit"; "on the lecture circuit"; "the judge makes a circuit of the courts in his district"; "the international tennis circuit"
+29417,circuit,(law) a judicial division of a state or the United States (so-called because originally judges traveled and held court in different locations); one of the twelve groups of states in the United States that is covered by a particular circuit court of appeals
+29418,circuit electrical_circuit electric_circuit,an electrical device that provides a path for electrical current to flow
+29419,circuit_board circuit_card board card plug-in add-in,a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities
+29420,circuit_breaker breaker,a device that trips like a switch and opens the circuit when overloaded
+29421,circuit_court_of_appeals,one of the twelve federal United States courts of appeals that cover a group of states known as a `circuit'
+29422,circuitry,electronic equipment consisting of a system of circuits
+29423,circular handbill bill broadside broadsheet flier flyer throwaway,an advertisement (usually printed on a page or in a leaflet) intended for wide distribution; "he mailed the circular to all subscribers"
+29424,circular_measure,measurement of angles in radians
+29425,circular_plane compass_plane,a plane with a flexible face that can plane concave or convex surfaces
+29426,circular_saw buzz_saw,a power saw that has a steel disk with cutting teeth on the periphery; rotates on a spindle
+29427,circularity disk_shape,the roundness of a 2-dimensional figure
+29428,circularization circularisation,circulating printed notices as a means of advertising
+29429,circulating_decimal recurring_decimal repeating_decimal,a decimal with a sequence of digits that repeats itself indefinitely
+29430,circulation,(library science) the count of books that are loaned by a library over a specified period
+29431,circulation,number of copies of a newspaper or magazine that are sold; "by increasing its circulation the newspaper hoped to increase its advertising"
+29432,circulation,movement through a circuit; especially the movement of blood through the heart and blood vessels
+29433,circulation,free movement or passage (as of cytoplasm within a cell or sap through a plant); "ocean circulation is an important part of global climate"; "a fan aids air circulation"
+29434,circulation,the dissemination of copies of periodicals (as newspapers or magazines)
+29435,circulation,the spread or transmission of something (as news or money) to a wider group or area
+29436,circulatory_failure,failure of the cardiovascular system to supply adequate amounts of blood to body tissues
+29437,circulatory_system cardiovascular_system,the organs and tissues involved in circulating blood and lymph through the body
+29438,circumcision,the act of circumcising performed on males eight days after birth as a Jewish and Muslim religious rite
+29439,circumcision,the act of circumcising; surgical removal of the foreskin of males
+29440,circumduction,a circular movement of a limb or eye
+29441,circumference,the length of the closed curve of a circle
+29442,circumference circuit,the boundary line encompassing an area or object; "he had walked the full circumference of his land"; "a danger to all races over the whole circumference of the globe"
+29443,circumference perimeter,the size of something as given by the distance around it
+29444,circumflex,a diacritical mark (^) placed above a vowel in some languages to indicate a special phonetic quality
+29445,circumflex_artery,any of several paired curving arteries
+29446,circumflex_artery_of_the_thigh arteria_circumflexa_femoris,an artery that supplies the hip joint and thigh muscles
+29447,circumflex_femoral_vein vena_circumflexus_femoris,either of two veins that accompany arteries of the same name serving the hip and thigh
+29448,circumflex_humeral_artery arteria_circumflexa_humeri,an artery that supplies the shoulder joint and shoulder muscles
+29449,circumflex_iliac_artery arteria_circumflexa_ilium,an artery that supplies the lower abdominal walls and skin and the sartorius muscle
+29450,circumflex_iliac_vein vena_circumflexa_ilium,accompanies the artery of the same name
+29451,circumflex_scapular_artery arteria_circumflexa_scapulae,an artery that serves the muscles of the shoulder and scapular area
+29452,circumflex_vein vena_circumflexa,any of several curved parallel veins accompanying arteries of the same name
+29453,circumlocution indirect_expression,an indirect way of expressing something
+29454,circumlocution periphrasis ambage,a style that involves indirect ways of expressing things
+29455,circumnavigation,traveling around something (by ship or plane); "Magellan's circumnavigation of the earth proved that it is a globe"
+29456,circumscription,the act of circumscribing
+29457,circumspection caution,the trait of being circumspect and prudent
+29458,circumstance,a condition that accompanies or influences some event or activity
+29459,circumstance,formal ceremony about important occasions; "pomp and circumstance"
+29460,circumstance condition consideration,information that should be kept in mind when making a decision; "another consideration is the time it would take"
+29461,circumstances,a person's financial situation (good or bad); "he found himself in straitened circumstances"
+29462,circumstantial_evidence indirect_evidence,evidence providing only a basis for inference about the fact in dispute
+29463,circumvention,the act of evading by going around
+29464,circumvolution,the act of turning or winding or folding around a central axis
+29465,circus,a travelling company of entertainers; including trained animals; "he ran away from home to join the circus"
+29466,circus,(antiquity) an open-air stadium for chariot races and gladiatorial games
+29467,circus,an arena consisting of an oval or circular area enclosed by tiers of seats and usually covered by a tent; "they used the elephants to help put up the circus"
+29468,circus,a performance given by a traveling company of acrobats, clowns, and trained animals; "the children always love to go to the circus"
+29469,circus carnival,a frenetic disorganized (and often comic) disturbance suggestive of a large public entertainment; "it was so funny it was a circus"; "the whole occasion had a carnival atmosphere"
+29470,circus_acrobat,an acrobat who performs acrobatic feats in a circus
+29471,circus_tent big_top round_top top,a canvas tent to house the audience at a circus performance; "he was afraid of a fire in the circus tent"; "they had the big top up in less than an hour"
+29472,cirque corrie cwm,a steep-walled semicircular basin in a mountain; may contain a lake
+29473,cirrhosis cirrhosis_of_the_liver,a chronic disease interfering with the normal functioning of the liver; the major cause is chronic alcoholism
+29474,cirrocumulus cirrocumulus_cloud,a cloud at a high altitude consisting of a series of regularly arranged small clouds resembling ripples
+29475,cirrostratus cirrostratus_cloud,a thin uniform layer of hazy cloud at high altitude
+29476,cirrus,a slender flexible animal appendage as on barnacles or crinoids or many insects; often tactile
+29477,cirrus cirrhus,usually coiled
+29478,cirrus cirrus_cloud,a wispy white cloud (usually of fine ice crystals) at a high altitude (4 to 8 miles)
+29479,cisco lake_herring Coregonus_artedi,important food fish of cold deep lakes of North America
+29480,cistern,an artificial reservoir for storing liquids; especially an underground tank for storing rainwater
+29481,cistern water_tank,a tank that holds the water used to flush a toilet
+29482,cisterna cistern,a sac or cavity containing fluid especially lymph or cerebrospinal fluid
+29483,citation,(law) the act of citing (as of spoken words or written passages or legal precedents etc.)
+29484,citation,a summons that commands the appearance of a party at a proceeding
+29485,citation cite acknowledgment credit reference mention quotation,a short note recognizing a source of information or of a quoted passage; "the student's essay failed to list several important citations"; "the acknowledgments are usually printed at the front of a book"; "the article includes mention of similar clinical cases"
+29486,citation commendation,an official award (as for bravery or service) usually given as formal public statement
+29487,citation_form main_entry_word entry_word,the form of a word that heads a lexical entry and is alphabetized in a dictionary
+29488,citizen,a native or naturalized member of a state or other political community
+29489,citizenry people,the body of citizens of a state or country; "the Spanish people"
+29490,citizenship,the status of a citizen with rights and duties
+29491,citizenship,conduct as a citizen; "award for good citizenship"
+29492,citrange,more aromatic and acid tasting than oranges; used in beverages and marmalade
+29493,citrange citrange_tree Citroncirus_webberi,more aromatic and acidic than oranges
+29494,citrate,a salt or ester of citric acid
+29495,citric_acid,a weak water-soluble acid found in many fruits (especially citrus fruits); used as a flavoring agent
+29496,citrine,semiprecious yellow quartz resembling topaz
+29497,citron,large lemonlike fruit with thick aromatic rind; usually preserved
+29498,citron citron_tree Citrus_medica,thorny evergreen small tree or shrub of India widely cultivated for its large lemonlike fruits that have thick warty rind
+29499,citronwood,wood of a citron tree
+29500,citrophilous_mealybug citrophilus_mealybug Pseudococcus_fragilis,destructive especially to citrus
+29501,citrulline,an amino acid that does not occur in proteins but is an intermediate in the conversion of ornithine to arginine
+29502,citrus citrus_fruit citrous_fruit,any of numerous fruits of the genus Citrus having thick rind and juicy pulp; grown in warm regions
+29503,citrus citrus_tree,any of numerous tropical usually thorny evergreen trees of the genus Citrus having leathery evergreen leaves and widely cultivated for their juicy edible fruits having leathery aromatic rinds
+29504,citrus_mealybug Planococcus_citri,feeds on a wide variety of cultivated plants but especially destructive to citrus
+29505,citrus_whitefly Dialeurodes_citri,whitefly that attacks citrus trees
+29506,cittern cithern cither citole gittern,a 16th century musical instrument resembling a guitar with a pear-shaped soundbox and wire strings
+29507,city,an incorporated administrative district established by state charter; "the city raised the tax rate"
+29508,city metropolis,people living in a large densely populated municipality; "the city voted for Republicans in 1994"
+29509,city metropolis urban_center,a large and densely populated urban area; may include several independent administrative districts; "Ancient Troy was a great city"
+29510,city_center city_centre central_city,the central part of a city
+29511,city_council,a municipal body that can pass ordinances and appropriate funds etc.
+29512,city_desk city_room,the editorial department of a newspaper that edits the local news
+29513,city_district,a district of a town or city
+29514,city_editor,the newspaper editor in charge of editing local news
+29515,city_father,an important municipal official
+29516,city_hall,a building that houses administrative offices of a municipal government
+29517,city_limit city_limits,the limits of the area occupied by a city or town
+29518,city_line,the boundary of a city
+29519,city_man,a financier who works in one of the banks in the City of London
+29520,city_planning town_planning urban_planning,determining and drawing up plans for the future physical arrangement and condition of a community
+29521,city_slicker city_boy,a city dweller with sophisticated manners and clothing
+29522,city_state city-state,a state consisting of a sovereign city
+29523,city_university,an urban university in a large city
+29524,cityscape,a viewpoint toward a city or other heavily populated area; "the dominant character of the cityscape is it poverty"
+29525,cityscape,painting depicting a city or urban area
+29526,civet civet_cat,cat-like mammal typically secreting musk used in perfumes
+29527,civic_center municipal_center down_town,the center of a city
+29528,civic_duty civic_responsibility,the responsibilities of a citizen
+29529,civic_leader civil_leader,a leader in municipal affairs
+29530,civic_pride civic_spirit,pride in your city
+29531,civics,the social science of municipal affairs
+29532,civies civvies,civilian garb as opposed to a military uniform
+29533,civil_action,legal action to protect a private civil right or to compel a civil remedy (as distinguished from criminal prosecution)
+29534,civil_authority civil_officer,a person who exercises authority over civilian affairs
+29535,civil_censorship,military censorship of civilian communications (correspondence or printed matter of films) entering or leaving of circulating within territories controlled by armed forces
+29536,civil_contempt,a failure to follow a court order that benefits someone else
+29537,civil_death,the legal status of a person who is alive but who has been deprived of the rights and privileges of a citizen or a member of society; the legal status of one sentenced to life imprisonment
+29538,civil_defense,activities organized by civilians for their own protection in time of war or disaster
+29539,civil_disobedience,a group's refusal to obey a law because they believe the law is immoral (as in protest against discrimination); "Thoreau wrote a famous essay justifying civil disobedience"
+29540,civil_engineer,an engineer trained to design and construct and maintain public works (roads or bridges or harbors etc.)
+29541,civil_engineering,the branch of engineering concerned with the design and construction of such public works as dams or bridges
+29542,civil_law,the body of laws established by a state or nation for its own regulation
+29543,civil_libertarian,a libertarian who is actively concerned with the protection of civil liberties
+29544,civil_liberty,fundamental individual right protected by law and expressed as immunity from unwarranted governmental interference
+29545,civil_liberty political_liberty,one's freedom to exercise one's rights as guaranteed under the laws of the country
+29546,civil_marriage,a marriage performed by a government official rather than by a clergyman
+29547,civil_order polity,the form of government of a social organization
+29548,civil_right,right or rights belonging to a person by reason of citizenship including especially the fundamental freedoms and privileges guaranteed by the 13th and 14th amendments and subsequent acts of Congress including the right to legal and social and economic equality
+29549,civil_rights_leader civil_rights_worker civil_rights_activist,a leader of the political movement dedicated to securing equal opportunity for members of minority groups
+29550,civil_servant,a public official who is a member of the civil service
+29551,civil_service,government workers; usually hired on the basis of competitive examinations
+29552,civil_suit,a lawsuit alleging violations of civil law by the defendant
+29553,civil_time standard_time local_time,the official time in a local region (adjusted for location around the Earth); established by law or custom
+29554,civil_union,a voluntary union for life (or until divorce) of adult parties of the same sex; "parties to a civil union have all the same benefits, protections, and responsibilities under Vermont law as spouses in a marriage"
+29555,civil_war,a war between factions in the same country
+29556,civilian,a nonmilitary citizen
+29557,civilian_clothing civilian_dress civilian_garb plain_clothes,ordinary clothing as distinguished from uniforms, work clothes, clerical garb, etc.
+29558,civility,formal or perfunctory politeness
+29559,civilization civilisation,the social process whereby societies achieve an advanced stage of development and organization
+29560,civilization civilisation,a society in an advanced state of social development (e.g., with complex legal and political and religious organizations); "the people slowly progressed from barbarism to civilization"
+29561,clabber,raw milk that has soured and thickened
+29562,clack clap,a sharp abrupt noise as if two objects hit together; may be repeated
+29563,clack_valve clack clapper_valve,a simple valve with a hinge on one side; allows fluid to flow in only one direction
+29564,clade,a group of biological taxa or species that share features inherited from a common ancestor
+29565,cladistics cladistic_analysis,a taxonomic system of classifying species based on the branching patterns of cladograms that are built to infer phylogenetic relations
+29566,cladode cladophyll phylloclad phylloclade,a flattened stem resembling and functioning as a leaf
+29567,cladogram,a tree diagram used to illustrate phylogenetic relationships
+29568,claim,an assertion that something is true or factual; "his claim that he was innocent"; "evidence contradicted the government's claims"
+29569,claim,an assertion of a right (as to money or property); "his claim asked for damages"
+29570,claim,demand for something as rightful or due; "they struck in support of their claim for a shorter work day"
+29571,claim title,an informal right to something; "his claim on her attentions"; "his title to fame"
+29572,claim_form,a form to use when filing a claim
+29573,claim_jumper,one who illegally occupies property to which another has a legal claim
+29574,claimant,someone who claims a benefit or right or title; "claimants of unemployment compensation"; "he was a claimant to the throne"
+29575,claiming_race,a horse race in which each owner declares before the race at what price his horse will be offered for sale after the race
+29576,clairvoyance second_sight extrasensory_perception E.S.P. ESP,apparent power to perceive things that are not present to the senses
+29577,clairvoyant,someone who has the power of clairvoyance
+29578,clam,flesh of either hard-shell or soft-shell clams
+29579,clam,burrowing marine mollusk living on sand or mud; the shell closes with viselike firmness
+29580,clam_chowder,chowder containing clams
+29581,clam_dip,a dip made of clams and soft cream cheese
+29582,clambake,a cookout at the seashore where clams and fish and other foods are cooked--usually on heated stones covered with seaweed
+29583,clamber,an awkward climb; "reaching the crest was a real clamber"
+29584,clammy_locust Robinia_viscosa,small rough-barked locust of southeastern United States having racemes of pink flowers and glutinous branches and seeds
+29585,clammyweed Polanisia_graveolens Polanisia_dodecandra,strong-scented herb common in southern United States covered with intermixed gland and hairs
+29586,clamor clamoring clamour clamouring hue_and_cry,loud and persistent outcry from many people; "he ignored the clamor of the crowd"
+29587,clamp clinch,a device (generally used by carpenters) that holds things firmly together
+29588,clampdown,sudden restriction on an activity
+29589,clamshell,the shell of a clam
+29590,clamshell grapple,a dredging bucket with hinges like the shell of a clam
+29591,clandestine_operation,an intelligence operation so planned and executed as to insure concealment
+29592,clang clangor clangour clangoring clank clash crash,a loud resonant repeating noise; "he could hear the clang of distant bells"
+29593,clanger,a conspicuous mistake whose effects seem to reverberate; "he dropped a clanger"
+29594,clannishness cliquishness exclusiveness,tendency to associate with only a select group
+29595,clansman clanswoman clan_member,a member of a clan
+29596,clapboard weatherboard weatherboarding,a long thin board with one edge thicker than the other; used as siding by lapping one board over the board below
+29597,clapper applauder,someone who applauds
+29598,clapper tongue,metal striker that hangs inside a bell and makes a sound by hitting the side
+29599,clapperboard,photographic equipment used to synchronize sound and motion picture; boards held in front of a movie camera are banged together
+29600,claque,a group of followers hired to applaud at a performance
+29601,clarence,a closed carriage with four wheels and seats for four passengers
+29602,claret,a dark purplish-red color
+29603,claret red_Bordeaux,dry red Bordeaux or Bordeaux-like wine
+29604,claret_cup,a punch made of claret and brandy with lemon juice and sugar and sometimes sherry or curacao and fresh fruit
+29605,clarification elucidation illumination,an interpretation that removes obstacles to understanding; "the professor's clarification helped her to understand the textbook"
+29606,clarified_butter drawn_butter,butter made clear by heating and removing the sediment of milk solids
+29607,clarinet,a single-reed instrument with a straight tube
+29608,clarinet_section,the section of a band or orchestra that plays clarinets
+29609,clarinetist clarinettist,a musician who plays the clarinet
+29610,clarion,a medieval brass instrument with a clear shrill tone
+29611,clarity lucidity lucidness pellucidity clearness limpidity,free from obscurity and easy to understand; the comprehensibility of clear expression
+29612,claro,a cigar made with light-colored tobacco
+29613,clary Salvia_sclarea,aromatic herb of southern Europe; cultivated in Great Britain as a potherb and widely as an ornamental
+29614,clary_sage,fresh leaves used in omelets and fritters and with lamb
+29615,clary_sage Salvia_clarea,stout Mediterranean sage with white or pink or violet flowers; yields oil used as a flavoring and in perfumery
+29616,clash,a state of conflict between colors; "her dress was a disturbing clash of colors"
+29617,clash friction,a state of conflict between persons
+29618,clasp,a fastener (as a buckle or hook) that is used to hold two things together
+29619,clasp clench clutch clutches grasp grip hold,the act of grasping; "he released his clasp on my arm"; "he has a strong grip for an old man"; "she kept a firm hold on the railing"
+29620,clasp_knife jackknife,a large knife with one or more folding blades
+29621,class,(biology) a taxonomic group containing one or more orders
+29622,class,elegance in dress or behavior; "she has a lot of class"
+29623,class category family,a collection of things sharing a common attribute; "there are two classes of detergents"
+29624,class division,a league ranked by quality; "he played baseball in class D for two years"; "Princeton is in the NCAA Division 1-AA"
+29625,class form grade course,a body of students who are taught together; "early morning classes are always sleepy"
+29626,class stratum social_class socio-economic_class,people having the same social, economic, or educational status; "the working class"; "an emerging professional class"
+29627,class year,a body of students who graduate together; "the class of '97"; "she was in my year at Hoehandle High"
+29628,class_Cyanobacteria Cyanophyceae class_Cyanophyceae,photosynthetic bacteria found in fresh and salt water, having chlorophyll a and phycobilins; once thought to be algae: blue-green algae
+29629,class_act,someone who shows impressive and stylish excellence
+29630,class_action class-action_suit,a lawsuit brought by a representative member of a large group of people on behalf of all members of the group
+29631,class_feeling,feelings of envy and resentment of one social or economic class for toward another
+29632,class_list honours_list,a list issued by examiners that categorizes students according to the class of honours they achieved in their degree examinations
+29633,class_structure,the organization of classes within a society
+29634,class_struggle class_war class_warfare,conflict between social or economic classes (especially between the capitalist and proletariat classes)
+29635,classic,an artist who has created classic works
+29636,classic,a creation of the highest excellence
+29637,classic_hemochromatosis idiopathic_hemochromatosis,inherited form of hemochromatosis
+29638,classical_Latin,the language of educated people in ancient Rome; "Latin is a language as dead as dead can be. It killed the ancient Romans--and now it's killing me"
+29639,classical_architecture Greco-Roman_architecture,architecture influenced by the ancient Greeks or Romans
+29640,classical_ballet,a style of ballet based on precise conventional steps performed with graceful and flowing movements
+29641,classical_conditioning,conditioning that pairs a neutral stimulus with a stimulus that evokes a reflex; the stimulus that evokes the reflex is given whether or not the conditioned response occurs until eventually the neutral stimulus comes to evoke the reflex
+29642,classical_mechanics Newtonian_mechanics,the branch of mechanics based on Newton's laws of motion
+29643,classical_music classical serious_music,traditional genre of music conforming to an established form and appealing to critical interest and developed musical taste
+29644,classical_mythology,the system of mythology of the Greeks and Romans together; much of Roman mythology (especially the gods) was borrowed from the Greeks
+29645,classical_style,the artistic style of ancient Greek art with its emphasis on proportion and harmony
+29646,classicism classicalism,a movement in literature and art during the 17th and 18th centuries in Europe that favored rationality and restraint and strict forms; "classicism often derived its models from the ancient Greeks and Romans"
+29647,classicist,an artistic person who adheres to classicism
+29648,classicist classical_scholar,a student of ancient Greek and Latin
+29649,classics,study of the literary works of ancient Greece and Rome
+29650,classification,restriction imposed by the government on documents or weapons that are available only to certain authorized people
+29651,classification categorization categorisation,a group of people or things arranged by class or category
+29652,classification categorization categorisation sorting,the basic cognitive process of arranging into classes or categories
+29653,classification_system,a system for classifying things
+29654,classified_ad classified_advertisement classified,a short ad in a newspaper or magazine (usually in small print) and appearing along with other ads of the same type
+29655,classified_stock,common stock classified as A or B where A has certain advantages (e.g., voting power) that B does not
+29656,classifier,a person who creates classifications
+29657,classifier,a word or morpheme used in some languages in certain contexts (such as counting) to indicate the semantic class to which the counted item belongs
+29658,classroom schoolroom,a room in a school where lessons take place
+29659,classroom_project,a school task requiring considerable effort
+29660,classwork,the part of a student's work that is done in the classroom
+29661,clast,(geology) a constituent fragment of a clastic rock
+29662,clastic_rock,(geology) a rock composed of broken pieces of older rocks
+29663,clatter,a rattling noise (often produced by rapid movement); "the shutters clattered against the house"; "the clatter of iron wheels on cobblestones"
+29664,clause,(grammar) an expression including a subject and predicate functioning as a part of a complex sentence
+29665,claustrophobe,a person suffering from claustrophobia
+29666,claustrophobia,a morbid fear of being closed in a confined space
+29667,claustrum,a layer of grey matter in the brain adjacent to the lenticular nucleus
+29668,clavichord,an early stringed instrument like a piano but with more delicate sound
+29669,clavicle collarbone,bone linking the scapula and sternum
+29670,clavier Klavier,a stringed instrument that has a keyboard
+29671,claw,sharp curved horny process on the toe of a bird or some mammals or reptiles
+29672,claw,a bird's foot
+29673,claw chela nipper pincer,a grasping structure on the limb of a crustacean or other arthropods
+29674,claw_hatchet,a hatchet that has a cleft for pulling nails
+29675,clawback,finding a way to take money back from people that they were given in another way; "the Treasury will find some clawback for the extra benefits members received"
+29676,clawfoot pes_cavus,a deformity of the foot characterized by an abnormally high arch and hyperextension of the toes which gives the foot the appearance of a claw
+29677,clay,a very fine-grained soil that is plastic when moist but hard when fired
+29678,clay-colored_robin Turdus_greyi,robin of Mexico and Central America
+29679,clay_pigeon,target used in skeet or trapshooting
+29680,clay_pipe,a pipe made of clay
+29681,claymore,a large double-edged broadsword; formerly used by Scottish Highlanders
+29682,claymore_mine claymore,an antipersonnel land mine whose blast is aimed at the oncoming enemy
+29683,claystone,fine-grained rock consisting of compacted clay particles
+29684,clean_and_jerk clean,a weightlift in which the barbell is lifted to shoulder height and then jerked overhead
+29685,clean_bill_of_health,an assurance that someone is healthy or something is in good condition; "the doctor gave him a clean bill of health"
+29686,clean_bomb,an atom bomb leaving little or no radioactive contamination
+29687,clean_room white_room,a room that is virtually free of dust or bacteria; used in laboratory work and in assembly or repair of precision equipment
+29688,cleaner,someone whose occupation is cleaning
+29689,cleaner dry_cleaner,the operator of dry-cleaning establishment
+29690,cleaners dry_cleaners,shop where dry cleaning is done
+29691,cleaning cleansing cleanup,the act of making something clean; "he gave his shoes a good cleaning"
+29692,cleaning_implement cleaning_device cleaning_equipment,any of a large class of implements used for cleaning
+29693,cleaning_pad,a pad used as a cleaning implement
+29694,cleanliness,the habit of keeping free of superficial imperfections
+29695,cleanliness,diligence in keeping clean
+29696,cleanness,the state of being clean; without dirt or other impurities
+29697,cleanness,without moral defects
+29698,cleansing_agent cleanser cleaner,a preparation used in cleaning something
+29699,cleanup cleanup_position cleanup_spot,(baseball) the fourth position in the batting order (usually filled by the best batter on the team)
+29700,clear,the state of being free of suspicion; "investigation showed that he was in the clear"
+29701,clear-air_turbulence,strong turbulence in an otherwise cloudless region that subjects aircraft to violent updrafts or downdrafts
+29702,clear_and_present_danger,a standard for judging when freedom of speech can be abridged; "no one has a right to shout `fire' in a crowded theater when there is no fire because such an action would pose a clear and present danger to public safety"
+29703,clear_liquid_diet,a diet of fluids with minimal residues (fat-free broth or strained fruit juices or gelatin); cannot be used for more than one day postoperative
+29704,clearance,the distance by which one thing clears another; the space between them
+29705,clearance,permission to proceed; "the plane was given clearance to land"
+29706,clearance_sale inventory-clearance_sale,a sale to reduce inventory
+29707,clearing,the act of freeing from suspicion
+29708,clearing clarification,the act of removing solid particles from a liquid
+29709,clearing glade,a tract of land with few or no trees in the middle of a wooded area
+29710,clearing_house,a central collection place where banks exchange checks or drafts; participants maintain an account against which credits or debits are posted
+29711,clearness clarity uncloudedness,the quality of clear water; "when she awoke the clarity was back in her eyes"
+29712,clearway,a road on which you are not allowed to stop (unless you have a breakdown)
+29713,cleat,a metal or leather projection (as from the sole of a shoe); prevents slipping
+29714,cleat,a fastener (usually with two projecting horns) around which a rope can be secured
+29715,cleat,a strip of wood or metal used to strengthen the surface to which it is attached
+29716,cleats,shoes with leather or metal projections on the soles; "the football players all wore cleats"
+29717,cleavage,the state of being split or cleft; "there was a cleavage between the liberal and conservative members"
+29718,cleavage,the breaking of a chemical bond in a molecule resulting in smaller molecules
+29719,cleavage,the line formed by a groove between two parts (especially the separation between a woman's breasts)
+29720,cleavage,the act of cleaving or splitting
+29721,cleavage segmentation,(embryology) the repeated division of a fertilised ovum
+29722,cleaver meat_cleaver chopper,a butcher's knife having a large square blade
+29723,cleavers clivers goose_grass catchweed spring_cleavers Galium_aparine,annual having the stem beset with curved prickles; North America and Europe and Asia
+29724,clef,a musical notation written on a staff indicating the pitch of the notes following it
+29725,cleft,a split or indentation in something (as the palate or chin)
+29726,cleft_foot,a deformity in which the space between the third and fourth toes extends up into the foot
+29727,cleft_lip harelip cheiloschisis,a congenital cleft in the middle of the upper lip
+29728,cleft_palate,a congenital fissure of the hard palate
+29729,cleistogamy,the production of small nonopening self-pollinating flowers
+29730,cleistothecium cleistocarp,closed spore-bearing structure of some fungi (especially Aspergillaceae and Erysiphaceae) from which spores are released only by decay or disintegration
+29731,clematis,any of various ornamental climbing plants of the genus Clematis usually having showy flowers
+29732,clemency mercifulness mercy,leniency and compassion shown toward offenders by a person or agency charged with administering justice; "he threw himself on the mercy of the court"
+29733,clementine,a mandarin orange of a deep reddish orange color and few seeds
+29734,clementine clementine_tree,a variety of mandarin orange that is grown around the Mediterranean and in South Africa
+29735,clerestory clearstory,part of an interior wall rising above the adjacent roof with windows admitting light
+29736,clergy,in Christianity, clergymen collectively (as distinguished from the laity)
+29737,clergyman reverend man_of_the_cloth,a member of the clergy and a spiritual leader of the Christian Church
+29738,cleric churchman divine ecclesiastic,a clergyman or other person in religious orders
+29739,clerical_collar Roman_collar dog_collar,a stiff white collar with no opening in the front; a distinctive symbol of the clergy
+29740,clericalism,a policy of supporting the influence and power of the clergy in secular or political matters
+29741,clericalist,one who advocates clericalism
+29742,clerid_beetle clerid,predacious on other insects; usually brightly colored or metallic
+29743,clerihew,a witty satiric verse containing two rhymed couplets and mentioning a famous person; "`The president is George W. Bush, Who is happy to sit on his tush, While sending his armies to fight, For anything he thinks is right' is a clerihew"
+29744,clerk,an employee who performs clerical work (e.g., keeps records or accounts)
+29745,clerkship,the job of clerk
+29746,clever_Dick clever_clogs,an intellectual who is ostentatiously and irritatingly knowledgeable
+29747,clevis,a coupler shaped like the letter U with holes through each end so a bolt or pin can pass through the holes to complete the coupling; used to attach a drawbar to a plow or wagon or trailer etc.
+29748,clew,a ball of yarn or cord or thread
+29749,clews,the cords used to suspend a hammock
+29750,click mouse_click,depression of a button on a computer mouse; "a click on the right button for example"
+29751,click-clack,a succession of clicks
+29752,click_beetle skipjack snapping_beetle,able to right itself when on its back by flipping into the air with a clicking sound
+29753,clickety-clack clickety-click,a fast and rhythmic click-clack; "the clickety-clack of the typewriters"
+29754,client,a person who seeks the advice of a lawyer
+29755,client-centered_therapy,a method of psychotherapy developed by Carl Rogers in which the client determines the focus and pace of each session
+29756,clientage,relation of a client to a patron
+29757,clientele patronage business,customers collectively; "they have an upper class clientele"
+29758,cliff drop drop-off,a steep high face of rock; "he stood on a high cliff overlooking the town"; "a steep drop"
+29759,cliff_brake cliff-brake rock_brake,any of several small lithophytic ferns of tropical and warm temperate regions
+29760,cliff_diving,diving into the water from a steep overhanging cliff
+29761,cliff_dweller,a member of the Anasazi people living in the southwestern United States who built rock or adobe dwellings on ledges in the sides of caves
+29762,cliff_dwelling,a rock and adobe dwelling built on sheltered ledges in the sides of a cliff; "the Anasazi built cliff dwellings in the southwestern United States"
+29763,cliff_rose sea_pink Armeria_maritima,tufted thrift of seacoasts and mountains of north temperate zone; occasionally grown as a ground cover
+29764,cliff_swallow Hirundo_pyrrhonota,North American swallow that lives in colonies and builds bottle-shaped mud nests on cliffs and walls
+29765,cliffhanger,a contest whose outcome is uncertain up to the very end
+29766,cliffhanger,an episode that ends in suspense
+29767,climacteric,a period in a man's life corresponding to menopause
+29768,climate clime,the weather in some location averaged over some long period of time; "the dank climate of southern Wales"; "plants from a cold clime travel best in winter"
+29769,climate mood,the prevailing psychological state; "the climate of opinion"; "the national mood had changed radically since the last election"
+29770,climate_change global_climate_change,a change in the world's climate
+29771,climatic_zone,any of the geographical zones loosely divided according to prevailing climate and latitude
+29772,climatologist,someone who is expert in climatology
+29773,climatology,meteorology of climates and their phenomena
+29774,climax,the most severe stage of a disease
+29775,climax,arrangement of clauses in ascending order of forcefulness
+29776,climax culmination,the decisive moment in a novel or play; "the deathbed scene is the climax of the play"
+29777,climax flood_tide,the highest point of anything conceived of as growing or developing or unfolding; "the climax of the artist's career"; "in the flood tide of his success"
+29778,climb climbing mounting,an event that involves rising to a higher point (as in altitude or temperature or intensity etc.)
+29779,climb mount,the act of climbing something; "it was a difficult climb to the top"
+29780,climber,a vine or climbing plant that readily grows up a support or over other plants
+29781,climber,someone who climbs as a sport; especially someone who climbs mountains; "the lead climber looked strong still but his partner often slumped in his ropes"
+29782,climbing_bird's_nest_fern Microsorium_punctatum,tropical Africa to Australasia and Polynesia
+29783,climbing_corydalis Corydalis_claviculata Fumaria_claviculata,annual vine with decompound leaves and racemes of yellow and pink flowers
+29784,climbing_fern,any of several ferns of the genus Lygodium that climb by twining
+29785,climbing_frame,a framework of bars or logs for children to climb on
+29786,climbing_fumitory Allegheny_vine Adlumia_fungosa Fumaria_fungosa,vine with feathery leaves and white or pinkish flowers; sometimes placed in genus Fumaria
+29787,climbing_hempweed climbing_boneset wild_climbing_hempweed climbing_hemp-vine Mikania_scandens,herb of tropical America having vanilla-scented flowers; climbs up trees
+29788,climbing_hydrangea Hydrangea_anomala,deciduous climber with aerial roots having white to creamy flowers in fairly flat heads
+29789,climbing_hydrangea Hydrangea_petiolaris,deciduous climber with aerial roots having large flat flower heads
+29790,climbing_hydrangea Schizophragma_hydrangeoides,climbing shrub with adhesive aerial roots having opposite leaves and small white flowers in terminal cymes; Himalayas to Taiwan and Japan
+29791,climbing_maidenhair climbing_maidenhair_fern snake_fern Lygodium_microphyllum,tropical fern widespread in Old World; naturalized in Jamaica and Florida
+29792,climbing_onion Bowiea_volubilis,much-branched leafless twining South African herb cultivated as an ornamental for its bright green stems growing from large aboveground bulbs
+29793,climbing_perch Anabas_testudineus A._testudineus,a small perch of India whose gills are modified to allow it to breathe air; has spiny pectoral fins that enable it to travel on land
+29794,climbing_salamander,any of several North American salamanders adapted for climbing with well-developed limbs and long somewhat squared-off toes
+29795,clinch,the flattened part of a nail or bolt or rivet
+29796,clinch,(boxing) the act of one boxer holding onto the other to avoid being hit and to rest momentarily
+29797,clinch clench,a small slip noose made with seizing
+29798,clincher,a tool used to clinch nails or bolts or rivets
+29799,clincher decisive_factor,a point or fact or remark that settles something conclusively
+29800,clincher determiner determining_factor,an argument that is conclusive
+29801,cling clingstone,fruit (especially peach) whose flesh adheres strongly to the pit
+29802,cling_film clingfilm Saran_Wrap,a thin plastic film made of saran (trade name Saran Wrap) that sticks to itself; used for wrapping food
+29803,clingfish,very small (to 3 inches) flattened marine fish with a sucking disc on the abdomen for clinging to rocks etc.
+29804,clinic,a medical establishment run by a group of medical specialists
+29805,clinic,meeting for diagnosis of problems and instruction or remedial work in a particular activity
+29806,clinic,a healthcare facility for outpatient care
+29807,clinical_anatomy applied_anatomy,the practical application of anatomical knowledge to diagnosis and treatment
+29808,clinical_psychology,the branch of psychology concerned with the treatment of abnormal mentation and behavior
+29809,clinical_thermometer mercury-in-glass_clinical_thermometer,a mercury thermometer designed to measure the temperature of the human body; graduated to cover a range a few degrees on either side of the normal body temperature
+29810,clinical_trial clinical_test,a rigorously controlled test of a new drug or a new invasive medical device on human subjects; in the United States it is conducted under the direction of the FDA before being made available for general clinical use
+29811,clinician,a practitioner (of medicine or psychology) who does clinical work instead of laboratory experiments
+29812,clinid clinid_fish,mostly small blennioid fishes of coral reefs and seagrass beds
+29813,clinker clinker_brick,a hard brick used as a paving stone
+29814,clinocephaly clinocephalism,a congenital defect in which the top of the head is depressed (concave instead of convex)
+29815,clinodactyly,a congenital defect in which one or more toes or fingers are abnormally positioned
+29816,clinometer inclinometer,an instrument used by surveyors in order to measure an angle of inclination or elevation
+29817,clintonia Clinton's_lily,any temperate liliaceous plant of the genus Clintonia having broad basal leaves and white or yellowish or purplish flowers followed by blue or black berries
+29818,clip,an article of jewelry that can be clipped onto a hat or dress
+29819,clip,any of various small fasteners used to hold loose articles together
+29820,clip,a sharp slanting blow; "he gave me a clip on the ear"
+29821,clip clipping snip,the act of clipping or snipping
+29822,clip-clop clippety-clop clop clopping clunking clumping,the sound of a horse's hoofs hitting on a hard surface
+29823,clip-on,a device (as an earring, sunglasses, microphone etc.) that is attached by clips
+29824,clip_art,ready-made pieces of computerized graphic art that can be used to decorate a document
+29825,clip_artist,a swindler who fleeces the victim
+29826,clip_joint,a place of entertainment where high prices are charged for poor entertainment
+29827,clip_lead,a short piece of wire with alligator clips on both ends
+29828,clipboard,a small writing board with a clip at the top for holding papers
+29829,clipper,shears for cutting grass or shrubbery (often used in the plural)
+29830,clipper,scissors for cutting hair or finger nails (often used in the plural)
+29831,clipper clipper_ship,a fast sailing ship used in former times
+29832,clipping newspaper_clipping press_clipping cutting press_cutting,an excerpt cut from a newspaper or magazine; "he searched through piles of letters and clippings"
+29833,clique coterie ingroup inner_circle pack camp,an exclusive circle of people with a common purpose
+29834,clitoral_vein vena_clitoridis,veins that serve the clitoris
+29835,clitoridectomy female_circumcision,excision of the clitoris
+29836,clitoris clit button,a female sexual organ homologous to the penis
+29837,cloaca,(zoology) the cavity (in birds, reptiles, amphibians, most fish, and monotremes but not mammals) at the end of the digestive tract into which the intestinal, genital, and urinary tracts open
+29838,cloak,anything that covers or conceals
+29839,cloak,a loose outer garment
+29840,cloakmaker furrier,someone whose occupation is making or repairing fur garments
+29841,cloakroom,a private lounge off of a legislative chamber
+29842,cloakroom coatroom,a room where coats and other articles can be left temporarily
+29843,cloche,a low transparent cover put over young plants to protect them from cold
+29844,cloche,a woman's close-fitting hat that resembles a helmet
+29845,clock,a timepiece that shows the time of day
+29846,clock-watching,paying excessive attention to the clock (in anticipation of stopping work)
+29847,clock_face clock_dial,the face of a clock showing hours and minutes of the day
+29848,clock_golf,a form of golf in which you putt from positions arranged on the circumference of a circle around the hole
+29849,clock_pendulum,a physical pendulum used to regulate a clockwork mechanism
+29850,clock_radio,a radio that includes a clock that can be set to turn it on automatically
+29851,clock_time time,a reading of a point in time as given by a clock; "do you know what time it is?"; "the time is 10 o'clock"
+29852,clock_tower,a tower with a large clock visible high up on an outside face
+29853,clock_watcher,a worker preoccupied with the arrival of quitting time
+29854,clocking,the time taken to traverse a measured course; "it was a world record clocking"
+29855,clocksmith clockmaker,someone whose occupation is making or repairing clocks and watches
+29856,clockwork,any mechanism of geared wheels that is driven by a coiled spring; resembles the works of a mechanical clock
+29857,clockwork_universe,the view that the universe resembles a clock built by God and ticking along according to Newtonian mechanics
+29858,clofibrate Atromid-S,a drug (trade name Atromid-S) that reduces lipids in the blood serum; used to treat some cardiovascular diseases
+29859,clog,any object that acts as a hindrance or obstruction
+29860,clog geta patten sabot,footwear usually with wooden soles
+29861,clog_dance clog_dancing clog,a dance performed while wearing shoes with wooden soles; has heavy stamping steps
+29862,clog_dancer,someone who does clog dancing
+29863,cloisonne,enamelware in which colored areas are separated by thin metal strips
+29864,cloister,a courtyard with covered walks (as in religious institutions)
+29865,clomiphene clomiphene_citrate Clomid,a fertility drug (trade name Clomid) that is used to stimulate ovulation and that has been associated with multiple births
+29866,clomipramine,a tricyclic antidepressant drug
+29867,clone clon,a group of genetically identical cells or organisms derived from a single cell or individual by some kind of asexual reproduction
+29868,clonidine Catapres,an antihypertensive (trade name Catapres) that can be administered orally or via transdermal patches
+29869,cloning,a general term for the research activity that creates a copy of some biological entity (a gene or organism or cell)
+29870,clonus,convulsion characterized by alternating contractions and relaxations
+29871,clopidogrel_bisulfate Plavix,a blood thinner (trade name Plavix) approved for the treatment of mild heart attacks; works by preventing blood platelets from sticking together to form clots that would restrict blood flow
+29872,close-order_drill,(military) military drill of troops in standard marching (shoulder-to-shoulder)
+29873,close-quarter_fighting,hand-to-hand fighting at close quarters
+29874,close_call close_shave squeak squeaker narrow_escape,something achieved (or escaped) by a narrow margin
+29875,close_order,a military formation for drill or marching
+29876,close_quarters,a situation of being uncomfortably close to someone or something
+29877,close_support,close-in firing by one unit against an enemy engaged by another unit
+29878,close_supporting_fire,fire on enemy troops or weapons or positions that are near the supported unit and are the most immediate and serious threat to it
+29879,closed-circuit_television,a television system that is not used for broadcasting but is connected by cables to designated monitors (as in a factory or theater)
+29880,closed-end_fund closed-end_investment_company,a regulated investment company that issues a fixed number of shares which are listed on a stock market
+29881,closed-heart_surgery,heart surgery in which a small incision is made (the chest cavity is not opened)
+29882,closed_chain ring,(chemistry) a chain of atoms in a molecule that forms a closed loop
+29883,closed_circuit loop,a complete electrical circuit around which current flows or a signal circulates
+29884,closed_corporation close_corporation private_corporation privately_held_corporation,a corporation owned by a few people; shares have no public market
+29885,closed_couplet,a rhymed couplet that forms a complete syntactic unit
+29886,closed_curve,a curve (such as a circle) having no endpoints
+29887,closed_gentian blind_gentian Gentiana_clausa,similar to Gentiana andrewsii but with larger flowers
+29888,closed_gentian blind_gentian bottle_gentian Gentiana_andrewsii,gentian of eastern North America having tubular blue or white flowers that open little if at all
+29889,closed_interval bounded_interval,an interval that includes its endpoints
+29890,closed_loop closed-loop_system,a control system with a feedback loop that is active
+29891,closed_primary,a primary in which only registered members of a particular political party can vote; "closed primaries strengthen party unity"
+29892,closed_shop,a company that hires only union members
+29893,closed_universe,(cosmology) a universe that is spatially closed and in which there is sufficient matter to halt the expansion that began with the big bang; the visible matter is only 10 percent of the matter required for closure but there may be large amounts of dark matter
+29894,closely_held_corporation,stock is publicly traded but most is held by a few shareholders who have no plans to sell
+29895,closeness intimacy,a feeling of being intimate and belonging together; "their closeness grew as the night wore on"
+29896,closeness secretiveness,characterized by a lack of openness (especially about one's actions or purposes)
+29897,closeout,a sale intended to dispose of all remaining stock
+29898,closer,a person who closes something; "whoever is the closer has to turn out the lights and lock up"
+29899,closer finisher,(baseball) a relief pitcher who can protect a lead in the last inning or two of the game
+29900,closet,a small private room for study or prayer
+29901,closet_auger,a snake used to unblock toilets
+29902,closet_drama,drama more suitable for reading that for performing
+29903,closet_queen,a negative term for a homosexual man who chooses not to reveal his sexual orientation
+29904,closeup,a photograph taken at close range
+29905,closeup_lens,a photographic lens with a short focal length used to take pictures at short ranges
+29906,closing closure,approaching a particular destination; a coming closer; a narrowing of a gap; "the ship's rapid rate of closing gave them little time to avoid a collision"
+29907,closing_price,(stock market) the price of the last transaction completed during a day's trading session
+29908,closing_time,the regular time of day when an establishment closes to the public
+29909,clostridium clostridia,spindle-shaped bacterial cell especially one swollen at the center by an endospore
+29910,clostridium_perfringens,anaerobic Gram-positive rod bacterium that produces epsilon toxin; can be used as a bioweapon
+29911,closure closedown closing shutdown,termination of operations; "they regretted the closure of the day care center"
+29912,closure cloture gag_rule gag_law,a rule for limiting or ending debate in a deliberative body
+29913,closure law_of_closure,a Gestalt principle of organization holding that there is an innate tendency to perceive incomplete objects as complete and to close or fill gaps and to perceive asymmetric stimuli as symmetric
+29914,closure_by_compartment guillotine,closure imposed on the debate of specific sections of a bill
+29915,clot coagulum,a lump of material formed from the content of a liquid
+29916,cloth_cap flat_cap,a flat woolen cap with a stiff peak
+29917,cloth_covering,a covering made of cloth
+29918,clothes_closet clothespress,a closet where clothes are stored
+29919,clothes_dryer clothes_drier,a dryer that dries clothes wet from washing
+29920,clothes_hamper laundry_basket clothes_basket voider,a hamper that holds dirty clothes to be washed or wet clothes to be dried
+29921,clothes_moth,any of several small yellowish or buff-colored moths whose larvae eat organic matter e.g. woolens
+29922,clothes_tree coat_tree coat_stand,an upright pole with pegs or hooks on which to hang clothing
+29923,clothesbrush,a brush used for cleaning clothing
+29924,clotheshorse,a framework on which to hang clothes (as for drying)
+29925,clothesline,a cord on which clothes are hung to dry
+29926,clothespin clothes_pin clothes_peg,wood or plastic fastener; for holding clothes on a clothesline
+29927,clothier haberdasher,a merchant who sells men's clothing
+29928,clothing article_of_clothing vesture wear wearable habiliment,a covering designed to be worn on a person's body
+29929,clothing_store haberdashery haberdashery_store mens_store,a store where men's clothes are sold
+29930,clotted_cream Devonshire_cream,thick cream made from scalded milk
+29931,clotting_time,the time it takes for a sample of blood to clot; used to diagnose some clotting disorders
+29932,cloud,a cause of worry or gloom or trouble; "the only cloud on the horizon was the possibility of dissent by the French"
+29933,cloud,suspicion affecting your reputation; "after that mistake he was under a cloud"
+29934,cloud,out of touch with reality; "his head was in the clouds"
+29935,cloud,any collection of particles (e.g., smoke or dust) or gases that is visible
+29936,cloud,a visible mass of water or ice particles suspended at a considerable altitude
+29937,cloud-cuckoo-land,an imaginary place where you say people are when they seem optimistically out of touch with reality
+29938,cloud_bank,a layer of clouds seen from a distance
+29939,cloud_chamber Wilson_cloud_chamber,apparatus that detects the path of high-energy particles passing through a supersaturated vapor; each particle ionizes molecules along its path and small droplets condense on them to produce a visible track
+29940,cloud_grass Agrostis_nebulosa,Spanish grass with light feathery panicles grown for dried bouquets
+29941,cloudberry dwarf_mulberry bakeapple baked-apple_berry salmonberry Rubus_chamaemorus,creeping raspberry of north temperate regions with yellow or orange berries
+29942,cloudiness cloud_cover overcast,the state of the sky when it is covered by clouds
+29943,cloudiness murkiness muddiness,the quality of being cloudy
+29944,cloudiness overcast,gloomy semidarkness caused by cloud cover
+29945,clouding clouding_up,the process whereby water particles become visible in the sky
+29946,cloudlessness,the lightness of a sunny day when there are no clouds in the sky
+29947,clout,a target used in archery
+29948,clout_nail clout,a short nail with a flat head; used to attach sheet metal to wood
+29949,clove,aromatic flower bud of a clove tree; yields a spice
+29950,clove,spice from dried unopened flower bud of the clove tree; used whole or ground
+29951,clove clove_tree Syzygium_aromaticum Eugenia_aromaticum Eugenia_caryophyllatum,moderate sized very symmetrical red-flowered evergreen widely cultivated in the tropics for its flower buds which are source of cloves
+29952,clove garlic_clove,one of the small bulblets that can be split off of the axis of a larger garlic bulb
+29953,clove_hitch,a knot used to fasten a line temporarily to a post or spar
+29954,clove_oil oil_of_cloves,essential oil obtained from cloves and used to flavor medicines
+29955,cloven_foot cloven_hoof,a hoof divided into two parts at its distal extremity (as of ruminants or swine)
+29956,cloven_hoof cloven_foot,the mark of Satan
+29957,clover trefoil,a plant of the genus Trifolium
+29958,clover-leaf_roll,yeast-raised dinner roll made by baking three small balls of dough in each cup of a muffin pan
+29959,clover_fern pepperwort,any of several water ferns of the genus Marsilea having four leaflets
+29960,cloverleaf,an interchange that does not require left-hand turns
+29961,clowder,a group of cats
+29962,clown buffoon,a rude or vulgar fool
+29963,clown buffoon goof goofball merry_andrew,a person who amuses others by ridiculous behavior
+29964,clown_anemone_fish Amphiprion_percula,an anemone fish of the genus Amphiprion
+29965,clozapine Clozaril,an antipsychotic drug (trade name Clozaril) used as a sedative and for treatment-resistant schizophrenia; know to have few side effects
+29966,cloze_procedure cloze_test,a test for diagnosing reading ability; words are deleted from a prose passage and the reader is required to fill in the blanks
+29967,club,a playing card in the minor suit that has one or more black trefoils on it; "he led a small club"; "clubs were trumps"
+29968,club,stout stick that is larger at one end; "he carried a club in self defense"; "he felt as if he had been hit with a club"
+29969,club social_club society guild gild lodge order,a formal association of people with similar interests; "he joined a golf club"; "they formed a small lunch society"; "men from the fraternal order will staff the soup kitchen today"
+29970,club_car lounge_car,railroad car having a bar and tables and lounge chairs
+29971,club_drug,a controlled substance that is usually taken by young people at dance clubs and raves
+29972,club_fungus,a club-shaped coral fungus
+29973,club_member,someone who is a member of a club
+29974,club_moss club-moss lycopod,primitive evergreen moss-like plant with spores in club-shaped strobiles
+29975,club_sandwich three-decker triple-decker,made with three slices of usually toasted bread
+29976,clubbing,a condition in which the ends of toes and fingers become wide and thick; a symptom of heart or lung disease
+29977,clubfoot talipes,congenital deformity of the foot usually marked by a curled shape or twisted position of the ankle and heel and toes
+29978,clubhouse club,a building that is occupied by a social club; "the clubhouse needed a new roof"
+29979,clubroom,a room used for the activities of a club
+29980,clubroot_fungus Plasmodiophora_brassicae,a fungus resembling slime mold that causes swellings or distortions of the roots of cabbages and related plants
+29981,cluck clucking,the sound made by a hen (as in calling her chicks)
+29982,clue clew cue,evidence that helps to solve a problem
+29983,clumber clumber_spaniel,a thickset spaniel with longish silky hair
+29984,clumsy_person,a person with poor motor coordination
+29985,clunch,hardened clay
+29986,clupeid_fish clupeid,any of numerous soft-finned schooling food fishes of shallow waters of northern seas
+29987,clusia,an aromatic tree of the genus Clusia having large white or yellow or pink flowers
+29988,cluster_bomb,bomb consisting of a canister that is dropped from a plane and that opens to release a cluster of bomblets (usually fragmentation bombs) over a wide area; "cluster bombs cannot be targeted precisely"
+29989,cluster_of_differentiation_4 CD4,a glycoprotein that is found primarily on the surface of helper T cells; "CD4 is a receptor for HIV in humans"
+29990,cluster_of_differentiation_8 CD8,a membrane glycoprotein that is found primarily on the surface of cytotoxic T cells
+29991,clustered_bellflower Campanula_glomerata,bellflower of Europe to temperate Asia having dense spikes of violet-blue to white flowers
+29992,clustered_lady's_slipper Cypripedium_fasciculatum,clusters of several short stems each having 2 broad leaves and 2-4 drooping brownish to greenish flowers with pouches mottled with purple; British Columbia to central California and northern Colorado
+29993,clustered_poppy_mallow Callirhoe_triangulata,densely hairy perennial having mostly triangular basal leaves and rose-purple flowers in panicled clusters
+29994,clutch,a tense critical situation; "he is a good man in the clutch"
+29995,clutch,a number of birds hatched at the same time
+29996,clutch,a coupling that connects or disconnects driving and driven parts of a driving mechanism; "this year's model has an improved clutch"
+29997,clutch clutch_pedal,a pedal or lever that engages or disengages a rotating shaft and a driving mechanism; "he smoothely released the clutch with one foot and stepped on the gas with the other"
+29998,clutch_bag clutch,a woman's strapless purse that is carried in the hand
+29999,clutter,unwanted echoes that interfere with the observation of signals on a radar screen
+30000,clutter jumble muddle fuddle mare's_nest welter smother,a confused multitude of things
+30001,clypeus,a shield-like plate on the front of an insect's head
+30002,co-beneficiary,one of two or more beneficiaries of the same benefit
+30003,co-discoverer,someone who is the first of two or more people to discover something
+30004,co-ed college_girl,a female student at a coeducational college or university
+30005,co-option co-optation,the selection of a new member (usually by a vote of the existing membership)
+30006,co-option co-optation,the act of appointing summarily (with or without the appointee's consent)
+30007,co-star,one of two actors who are given equal status as stars in a play or film
+30008,coach four-in-hand coach-and-four,a carriage pulled by four horses with one driver
+30009,coach manager handler,(sports) someone in charge of training an athlete or a team
+30010,coach private_instructor tutor,a person who gives private instruction (as in singing, acting, etc.)
+30011,coach_horse,strong draft horse for drawing coaches
+30012,coach_house carriage_house remise,a small building for housing coaches and carriages and other vehicles
+30013,coachbuilder,a craftsman who makes the bodies of motor vehicles
+30014,coaching coaching_job,the job of a professional coach
+30015,coachman,a man who drives a coach (or carriage)
+30016,coachwhip coachwhip_snake Masticophis_flagellum,a whipsnake of southern United States and Mexico; tail resembles a braided whip
+30017,coadjutor,an assistant to a bishop
+30018,coagulant coagulator,an agent that produces coagulation
+30019,coagulase,an enzyme that induces coagulation
+30020,coagulation_factor clotting_factor,any of the factors in the blood whose actions are essential for blood coagulation
+30021,coal,fossil fuel consisting of carbonized vegetable matter deposited in the Carboniferous period
+30022,coal_black ebony jet_black pitch_black sable soot_black,a very dark black
+30023,coal_car,freight car with fixed sides and no roof; for transporting coal
+30024,coal_chute,a chute for coal
+30025,coal_gas,gaseous mixture produced by distillation of bituminous coal and used for heating and lighting
+30026,coal_house,a shed for storing coal
+30027,coal_industry,the producers of coal considered collectively
+30028,coal_mine coalpit,a mine where coal is dug from the ground
+30029,coal_miner collier pitman,someone who works in a coal mine
+30030,coal_seam,a seam of coal
+30031,coal_shovel,a hand shovel for shoveling coal
+30032,coal_tar,a tar formed from distillation of bituminous coal; coal tar can be further distilled to give various aromatic compounds
+30033,coalbin coalhole,a bin for holding coal
+30034,coalescence coalescency coalition concretion conglutination,the union of diverse things into one body or form or group; the growing together of parts
+30035,coalface,the part of a coal seam that is being cut
+30036,coalfield,a region where there is coal underground
+30037,coaling_station,a seaport where ships can take on supplies of coal
+30038,coalition fusion,the state of being combined into one body
+30039,coalman,someone who delivers coal
+30040,coaming,a raised framework around a hatchway on a ship to keep water out
+30041,coarctation,(biology) a narrowing or constriction of a vessel or canal; especially a congenital narrowing of the aorta
+30042,coarseness commonness grossness vulgarity vulgarism raunch,the quality of lacking taste and refinement
+30043,coarseness graininess granularity,the quality of being composed of relatively large particles
+30044,coarseness nubbiness tweediness,looseness or roughness in texture (as of cloth)
+30045,coast,a slope down which sleds may coast; "when it snowed they made a coast on the golf course"
+30046,coast,the area within view; "the coast is clear"
+30047,coast_boykinia Boykinia_elata Boykinia_occidentalis,plant with leaves mostly at the base and openly branched clusters of small white flowers; western North America
+30048,coast_lily Lilium_maritinum,orange-flowered lily of Pacific coast of United States
+30049,coast_live_oak California_live_oak Quercus_agrifolia,highly variable often shrubby evergreen oak of coastal zone of western North America having small thick usually spiny-toothed dark-green leaves
+30050,coast_rhododendron Rhododendron_californicum,medium-sized rhododendron of Pacific coast of North America having large rosy brown-spotted flowers
+30051,coastal_diving_bird,gull family; skimmer family; jaeger family; auk family
+30052,coastal_plain,a plain adjacent to a coast
+30053,coastal_rein_orchid Habenaria_greenei,stout orchid of central California to northern Washington having racemes of white fragrant bilaterally symmetrical flowers
+30054,coaster,a resident of a coastal area
+30055,coaster,someone who coasts
+30056,coaster,a covering (plate or mat) that protects the surface of a table (i.e., from the condensation on a cold glass or bottle)
+30057,coaster_brake,a brake on a bicycle that engages with reverse pressure on the pedals
+30058,coastguard,a military service responsible for the safety of maritime traffic in coastal waters
+30059,coastguardsman,a member of a coastguard
+30060,coastland,land in a coastal area
+30061,coastline,the outline of a coast
+30062,coat,an outer garment that has sleeves and covers the body from shoulder down; worn outdoors
+30063,coat pelage,growth of hair or wool or fur covering the body of an animal
+30064,coat_button,a button on a coat
+30065,coat_closet,a closet for storing outerwear
+30066,coat_hanger clothes_hanger dress_hanger,a hanger that is shaped like a person's shoulders and used to hang garments on
+30067,coat_of_arms arms blazon blazonry,the official symbols of a family, state, etc.
+30068,coat_of_paint,a layer of paint covering something else
+30069,coatdress,a dress that is tailored like a coat and buttons up the front
+30070,coatee,a short close-fitting coat
+30071,coati coati-mondi coati-mundi coon_cat Nasua_narica,omnivorous mammal of Central America and South America
+30072,coating,a heavy fabric suitable for coats
+30073,coating coat,a thin layer covering something; "a second coat of paint"
+30074,coating finish finishing,a decorative texture or appearance of a surface (or the substance that gives it that appearance); "the boat had a metallic finish"; "he applied a coat of a clear finish"; "when the finish is too thin it is difficult to apply evenly"
+30075,coatrack coat_rack hatrack,a rack with hooks for temporarily holding coats and hats
+30076,coattail,the loose back flap of a coat that hangs below the waist
+30077,coattails_effect,(politics) the consequence of one popular candidate in an election drawing votes for other members of the same political party; "he counted on the coattails effect to win him the election"
+30078,coauthor joint_author,a writer who collaborates with others in writing something
+30079,coaxial_cable coax coax_cable,a transmission line for high-frequency signals
+30080,cob,stocky short-legged harness horse
+30081,cob,adult male swan
+30082,cobalt Co atomic_number_27,a hard ferromagnetic silver-white bivalent or trivalent metallic element; a trace element in plant and animal nutrition
+30083,cobalt_60,a radioactive isotope of cobalt with mass number 60; a source of exceptionally intense gamma rays; used in radiation therapy
+30084,cobalt_blue cobalt_ultramarine,greenish-blue pigment consisting essentially of cobalt oxide and alumina
+30085,cobaltite,a rare silvery-white mineral; important ore of cobalt
+30086,cobber,Australian term for a pal
+30087,cobble cobblestone sett,rectangular paving stone with curved top; once used to make roads
+30088,cobbler,tall sweetened iced drink of wine or liquor with fruit
+30089,cobbler shoemaker,a person who makes or repairs shoes
+30090,cobblers,nonsense; "I think that is a load of cobblers"
+30091,cobblers,a man's testicles (from Cockney rhyming slang: cobbler's awl rhymes with ball)
+30092,cobia Rachycentron_canadum sergeant_fish,large dark-striped tropical food and game fish related to remoras; found worldwide in coastal to open waters
+30093,cobnut filbert Corylus_avellana Corylus_avellana_grandis,small nut-bearing tree much grown in Europe
+30094,cobra,venomous Asiatic and African elapid snakes that can expand the skin of the neck into a hood
+30095,cobweb,a fabric so delicate and transparent as to resemble a web of a spider
+30096,cobweb,a dense elaborate spider web that is more efficient than the orb web
+30097,cobweb gossamer,filaments from a web that was spun by a spider
+30098,coca,dried leaves of the coca plant (and related plants that also contain cocaine); chewed by Andean people for their stimulating effect
+30099,cocaine cocain,a narcotic (alkaloid) extracted from coca leaves; used as a surface anesthetic or taken for pleasure; can become powerfully addictive
+30100,cocaine_addict,a person addicted to cocaine
+30101,cocaine_addiction,an addiction to cocaine
+30102,cocarboxylase thiamine_pyrophosphate,a coenzyme important in respiration in the Krebs cycle
+30103,coccid_insect,scale insects and mealybugs
+30104,coccidioidomycosis coccidiomycosis valley_fever desert_rheumatism,an infection of the lungs and skin characterized by excessive sputum and nodules
+30105,coccidiosis,(veterinary medicine) infestation with coccidia
+30106,coccidium eimeria,parasitic on the digestive epithelium of vertebrates and higher invertebrates
+30107,coccobacillus,a bacterial cell intermediate in morphology between a coccus and a bacillus; a very short bacillus
+30108,coccus cocci,any spherical or nearly spherical bacteria
+30109,coccygeal_nerve nervus_coccygeus,the lowest pair of spinal nerves
+30110,coccygeal_plexus plexus_coccygeus,a small plexus formed by the fifth sacral and coccygeal nerves
+30111,coccygeal_vertebra caudal_vertebra,one of 4 vertebrae in the human coccyx
+30112,coccyx tail_bone,the end of the vertebral column in humans and tailless apes
+30113,cochin cochin_china,Asian breed of large fowl with dense plumage and feathered legs
+30114,cochineal,a red dyestuff consisting of dried bodies of female cochineal insects
+30115,cochineal_insect cochineal Dactylopius_coccus,Mexican red scale insect that feeds on cacti; the source of a red dye
+30116,cochlea,the snail-shaped tube (in the inner ear coiled around the modiolus) where sound vibrations are converted into nerve impulses by the organ of Corti
+30117,cochon_de_lait suckling_pig,whole young pig suitable for roasting
+30118,cock,adult male bird
+30119,cock prick dick shaft pecker tool putz,obscene terms for penis
+30120,cock rooster,adult male chicken
+30121,cock's_eggs Salpichroa_organifolia Salpichroa_rhomboidea,weedy vine of Argentina having solitary white flowers followed by egg-shaped white or yellow fruit
+30122,cock-a-doodle-doo,an imitation of the crow of a cock
+30123,cock-a-leekie cocky-leeky,soup made from chicken boiled with leeks
+30124,cock_of_the_rock Rupicola_peruviana,bird of the Andes similar to Rupicola rupicola
+30125,cock_of_the_rock Rupicola_rupicola,tropical bird of northern South America the male having brilliant red or orange plumage and an erectile disklike crest
+30126,cock_sucking blowjob,slang for fellatio
+30127,cockade,an ornament (such as a knot of ribbon or a rosette) usually worn on the hat
+30128,cockateel cockatiel cockatoo_parrot Nymphicus_hollandicus,small grey Australian parrot with a yellow crested head
+30129,cockatoo,white or light-colored crested parrot of the Australian region; often kept as cage birds
+30130,cockatrice,monster hatched by a reptile from a cock's egg; able to kill with a glance
+30131,cockchafer May_bug May_beetle Melolontha_melolontha,any of various large European beetles destructive to vegetation as both larvae and adult
+30132,cocked_hat,hat with opposing brims turned up and caught together to form points
+30133,cocker_spaniel English_cocker_spaniel cocker,a small breed with wavy silky hair; originally developed in England
+30134,cockerel,a young domestic cock; not older than one year
+30135,cockfight,a match in a cockpit between two fighting cocks heeled with metal gaffs
+30136,cockfighting,participation in the sport of matching gamecocks in a cockfight
+30137,cockhorse,anything used as a toy horse (such as a rocking horse or one knee of an adult)
+30138,cockle,common edible European bivalve
+30139,cockle,common edible, burrowing European bivalve mollusk that has a strong, rounded shell with radiating ribs
+30140,cocklebur cockle-bur cockleburr cockle-burr,any coarse weed of the genus Xanthium having spiny burrs
+30141,cockleshell,a small light flimsy boat
+30142,cockloft,a small loft or garret
+30143,cockney,the nonstandard dialect of natives of the east end of London
+30144,cockpit,a pit for cockfights
+30145,cockpit,seat where the driver sits while driving a racing car
+30146,cockpit,compartment where the pilot sits while flying the aircraft
+30147,cockroach roach,any of numerous chiefly nocturnal insects; some are domestic pests
+30148,cockscomb common_cockscomb Celosia_cristata Celosia_argentea_cristata,garden annual with featherlike spikes of red or yellow flowers
+30149,cockscomb coxcomb,a cap worn by court jesters; adorned with a strip of red
+30150,cockspur Pisonia_aculeata,small spiny West Indian tree
+30151,cockspur_thorn cockspur_hawthorn Crataegus_crus-galli,eastern United States hawthorn with long straight thorns
+30152,cocksucker,a person who performs fellatio
+30153,cocktail,a short mixed drink
+30154,cocktail,an appetizer served as a first course at a meal
+30155,cocktail_dress sheath,a dress suitable for formal occasions
+30156,cocktail_lounge,a barroom in a hotel or restaurant where cocktails are served
+30157,cocktail_party,an afternoon party at which cocktails are served
+30158,cocktail_sauce seafood_sauce,usually catsup with horseradish and lemon juice
+30159,cocktail_shaker,a shaker for mixing cocktails
+30160,coco_plum coco_plum_tree cocoa_plum icaco Chrysobalanus_icaco,small tropical American tree bearing edible plumlike fruit
+30161,cocoa,powder of ground roasted cacao beans with most of the fat removed
+30162,cocoa chocolate hot_chocolate drinking_chocolate,a beverage made from cocoa powder and milk and sugar; usually drunk hot
+30163,cocoa_butter,a yellow-white fat from cocoa beans
+30164,cocoa_butter,the vegetable fat from the cacao that is extracted from chocolate liquor; the basis for white chocolate
+30165,cocoa_plum coco_plum icaco,plum-shaped whitish to almost black fruit used for preserves; tropical American
+30166,cocoa_powder,the powdery remains of chocolate liquor after cocoa butter is removed; used in baking and in low fat and low calorie recipes and as a flavoring for ice cream
+30167,cocobolo Dalbergia_retusa,a valuable timber tree of tropical South America
+30168,coconut cocoanut,large hard-shelled oval nut with a fibrous husk containing thick white meat surrounding a central cavity filled (when fresh) with fluid or milk
+30169,coconut coconut_meat,the edible white meat of a coconut; often shredded for use in e.g. cakes and curries
+30170,coconut coconut_palm coco_palm coco cocoa_palm coconut_tree Cocos_nucifera,tall palm tree bearing coconuts as fruits; widely planted throughout the tropics
+30171,coconut_cake,cake containing shredded coconut in batter and frosting
+30172,coconut_macaroon,macaroon containing coconut
+30173,coconut_milk coconut_cream,white liquid obtained from compressing fresh coconut meat
+30174,coconut_milk coconut_water,clear to whitish fluid from within a fresh coconut
+30175,coconut_oil copra_oil,oil from coconuts
+30176,cocoon,silky envelope spun by the larvae of many insects to protect pupas and by spiders to protect eggs
+30177,cocooning,retreating to the seclusion of your home (as for privacy or escape)
+30178,cocotte,a small casserole in which individual portions can be cooked and served
+30179,cocozelle,squash resembling zucchini
+30180,cocozelle Italian_vegetable_marrow,squash plant having dark green fruit with skin mottled with light green or yellow
+30181,cocuswood cocoswood granadilla_wood,wood of the granadilla tree used for making musical instruments especially clarinets
+30182,cod codfish,lean white flesh of important North Atlantic food fish; usually baked or poached
+30183,cod codfish,major food fish of Arctic and cold-temperate waters
+30184,cod-liver_oil cod_liver_oil,an oil obtained from the livers of cod and similar fishes; taken orally as a source of vitamins A and D
+30185,cod_oil,an inferior cod-liver oil that is used in leather manufacturing
+30186,code,a coding system used for transmitting messages requiring brevity or secrecy
+30187,code codification,a set of rules or principles or laws (especially written ones)
+30188,code computer_code,(computer science) the symbolic arrangement of data or instructions in a computer program or the set of such instructions
+30189,code_flag nautical_signal_flag,one of an international code of flag signals used between ships
+30190,code_of_conduct code_of_behavior,a set of conventional principles and expectations that are considered binding on any person who is a member of a particular group
+30191,codefendant co-defendant,a defendant who has been joined together with one or more other defendants in a single action
+30192,codeine,derivative of opium; used as an antitussive (to relieve coughing) and an analgesic (to relieve pain)
+30193,codetalker windtalker,a secret agent who was one of the Navajos who devised and used a code based on their native language; the code was unbroken by the Japanese during World War II
+30194,codex,an official list of chemicals or medicines etc.
+30195,codex leaf-book,an unbound manuscript of some ancient classic (as distinguished from a scroll)
+30196,codfish_ball codfish_cake,usually made of flaked salt cod and mashed potatoes
+30197,codger old_codger,used affectionately to refer to an eccentric but amusing old man
+30198,codicil,a supplement to a will; a testamentary instrument intended to alter an already executed will
+30199,codification,the act of codifying; arranging in a systematic order
+30200,coding_system,a system of signals used to represent letters or numbers in transmitting messages
+30201,codling,young codfish
+30202,codling_moth codlin_moth Carpocapsa_pomonella,a small grey moth whose larvae live in apples and English walnuts
+30203,codon,a specific sequence of three adjacent nucleotides on a strand of DNA or RNA that specifies the genetic code information for synthesizing a particular amino acid
+30204,codpiece,(15th-16th century) a flap for the crotch of men's tight-fitting breeches
+30205,coeducation,education of men and women in the same institutions
+30206,coefficient,a constant number that serves as a measure of some property or characteristic
+30207,coefficient_of_concordance,a coefficient of agreement (concordance) between different sets of rank orderings of the same set of things
+30208,coefficient_of_elasticity modulus_of_elasticity elastic_modulus,(physics) the ratio of the applied stress to the change in shape of an elastic body
+30209,coefficient_of_expansion expansivity,the fractional change in length or area or volume per unit change in temperature at a given constant pressure
+30210,coefficient_of_friction,the ratio of the weight of an object being moved along a surface and the force that maintains contact between the object and the surface
+30211,coefficient_of_mutual_induction mutual_inductance,a measure of the induction between two circuits; the ratio of the electromotive force in a circuit to the corresponding change of current in a neighboring circuit; usually measured in henries
+30212,coefficient_of_reflection reflection_factor reflectance reflectivity,the fraction of radiant energy that is reflected from a surface
+30213,coefficient_of_self_induction self-inductance,the ratio of the electromotive force produced in a circuit by self-induction to the rate of change of current producing it, expressed in henries
+30214,coefficient_of_viscosity absolute_viscosity dynamic_viscosity,a measure of the resistance to flow of a fluid under an applied force
+30215,coelacanth Latimeria_chalumnae,fish thought to have been extinct since the Cretaceous period but found in 1938 off the coast of Africa
+30216,coelenterate cnidarian,radially symmetrical animals having saclike bodies with only one opening and tentacles with stinging structures; they occur in polyp and medusa forms
+30217,coelenterate_family,a family of coelenterates
+30218,coelenterate_genus,a genus of coelenterates
+30219,coelenteron,the saclike body cavity of a coelenterate
+30220,coelogyne,any of various orchids of the genus Coelogyne with: clusters of fragrant lacy snow-white flowers; salmon-pink solitary flowers; chainlike racemes of topaz and chocolate brown flowers; spikes of delicate white spice-scented flowers; emerald green flowers marked with blue-black
+30221,coelophysis,one of the oldest known dinosaurs; late Triassic; cannibalistic
+30222,coelostat,optical device used to follow the path of a celestial body and reflect its light into a telescope; has a movable and a fixed mirror
+30223,coenzyme,a small molecule (not a protein but sometimes a vitamin) essential for the activity of some enzymes
+30224,coenzyme_A,a coenzyme present in all living cells; essential to metabolism of carbohydrates and fats and some amino acids
+30225,coercion,the act of compelling by force of authority
+30226,coevals contemporaries generation,all the people living at the same time or of approximately the same age
+30227,coexistence,existing peacefully together
+30228,coextension,equality of extension or duration
+30229,cofactor,a substance (as a coenzyme) that must join with another to produce a given result
+30230,coffee coffee_tree,any of several small trees and shrubs native to the tropical Old World yielding coffee beans
+30231,coffee java,a beverage consisting of an infusion of ground coffee beans; "he ordered a cup of coffee"
+30232,coffee-table_book,an elaborate oversize book suitable for displaying on a coffee table
+30233,coffee_bean coffee_berry coffee,a seed of the coffee tree; ground to make coffee
+30234,coffee_blight,a blight affecting the coffee plant
+30235,coffee_break tea_break,a snack taken during a break in the work day; "a ten-minute coffee break"; "the British have tea breaks"
+30236,coffee_can,a can for storing ground coffee
+30237,coffee_cup,a cup from which coffee is drunk
+30238,coffee_fern Pellaea_andromedifolia,evergreen fern of California and Baja California
+30239,coffee_filter,filter (usually of paper) that passes the coffee and retains the coffee grounds
+30240,coffee_fungus Pellicularia_koleroga,fungus causing a disease in coffee and some other tropical plants
+30241,coffee_grounds,the dregs remaining after brewing coffee
+30242,coffee_liqueur,coffee-flavored liqueur
+30243,coffee_maker,a kitchen appliance for brewing coffee automatically
+30244,coffee_mill coffee_grinder,a mill that grinds roasted coffee beans
+30245,coffee_mug,a mug intended for serving coffee
+30246,coffee_ring,ring-shaped coffeecake with fruits or nuts and often iced
+30247,coffee_senna mogdad_coffee styptic_weed stinking_weed Senna_occidentalis Cassia_occidentalis,very leafy malodorous tropical weedy shrub whose seeds have been used as an adulterant for coffee; sometimes classified in genus Cassia
+30248,coffee_stall,a stand (usually movable) selling hot coffee and food (especially at night)
+30249,coffee_substitute,a drink resembling coffee that is sometimes substituted for it
+30250,coffee_table cocktail_table,low table where magazines can be placed and coffee or cocktails are served
+30251,coffee_urn,an urn in which coffee is made and kept hot
+30252,coffeeberry California_buckthorn California_coffee Rhamnus_californicus,evergreen shrub of western United States bearing small red or black fruits
+30253,coffeecake coffee_cake,a cake or sweet bread usually served with coffee
+30254,coffeepot,tall pot in which coffee is brewed
+30255,coffer,a chest especially for storing valuables
+30256,coffer caisson lacunar,an ornamental sunken panel in a ceiling or dome
+30257,coffin casket,box in which a corpse is buried or cremated
+30258,cofounder,one of a group of founders
+30259,cog,a subordinate who performs an important but routine function; "he was a small cog in a large machine"
+30260,cog sprocket,tooth on the rim of gear wheel
+30261,cog_railway rack_railway,railway for steep mountains; a cogwheel on the locomotive engages cogs on a center rail to provide traction
+30262,cogency,persuasive relevance
+30263,cogency validity rigor rigour,the quality of being valid and rigorous
+30264,cogitation,a carefully considered thought about something; "his cogitations were dutifully recorded in his daybook"
+30265,cogitation study,attentive consideration and meditation; "after much cogitation he rejected the offer"
+30266,cognate cognate_word,a word is cognate with another if both derive from the same word in an ancestral language
+30267,cognition knowledge noesis,the psychological result of perception and learning and reasoning
+30268,cognitive_factor,something immaterial (as a circumstance or influence) that contributes to producing a result
+30269,cognitive_neuroscience,the branch of neuroscience that studies the biological foundations of mental phenomena
+30270,cognitive_neuroscientist,a cognitive scientist who studies the neurophysiological foundations of mental phenomena
+30271,cognitive_psychology,an approach to psychology that emphasizes internal mental processes
+30272,cognitive_science,the field of science concerned with cognition; includes parts of cognitive psychology and linguistics and computer science and cognitive neuroscience and philosophy of mind
+30273,cognitive_scientist,a scientist who studies cognitive processes
+30274,cognitive_semantics conceptual_semantics semasiology,the branch of semantics that studies the cognitive aspects of meaning
+30275,cognitive_state state_of_mind,the state of a person's cognitive processes
+30276,cognizance,range or scope of what is perceived
+30277,cognizance ken,range of what one can know or understand; "beyond my ken"
+30278,cohabitation,the act of living together and having a sexual relationship (especially without being married)
+30279,coherence coherency,logical and orderly and consistent relation of parts
+30280,coherence coherency cohesion cohesiveness,the state of cohering or sticking together
+30281,cohesion,(botany) the process in some plants of parts growing together that are usually separate (such as petals)
+30282,cohesion,(physics) the intermolecular force that holds together the molecules in a solid or liquid
+30283,cohesiveness glueyness gluiness gumminess tackiness ropiness viscidity viscidness,the property of being cohesive and sticky
+30284,coho cohoe coho_salmon blue_jack silver_salmon Oncorhynchus_kisutch,small salmon of northern Pacific coasts and the Great Lakes
+30285,cohort,a company of companions or supporters
+30286,cohort,a band of warriors (originally a unit of a Roman Legion)
+30287,cohune-nut_oil cohune_oil cohune_fat,semisolid fat from nuts of the cohune palm; used in cooking and soap making
+30288,cohune_nut,nut of the cohune palm having hard white shells like those of ivory nuts
+30289,cohune_palm Orbignya_cohune cohune,tropical American feather palm whose large nuts yield valuable oil and a kind of vegetable ivory
+30290,coif,a skullcap worn by nuns under a veil or by soldiers under a hood of mail or formerly by British sergeants-at-law
+30291,coiffeur,a man hairdresser
+30292,coiffeuse,a woman hairdresser
+30293,coil,a transformer that supplies high voltage to spark plugs in a gasoline engine
+30294,coil,a contraceptive device placed inside a woman's womb
+30295,coil,tubing that is wound in a spiral
+30296,coil,reactor consisting of a spiral of insulated wire that introduces inductance into a circuit
+30297,coil spiral volute whorl helix,a structure consisting of something wound in a continuous series of loops; "a coil of rope"
+30298,coil whorl roll curl curlicue ringlet gyre scroll,a round shape formed by a series of concentric circles (as formed by leaves or flower petals)
+30299,coil_spring volute_spring,a spring in the shape of a coil
+30300,coin,a flat metal piece (usually a disc) used as money
+30301,coin_box,the part of a slot machine that serves as a receptacle for the coins
+30302,coin_collection,a collection of coins
+30303,coin_silver,a silver of the degree of purity established for making legal silver coins
+30304,coin_slot,a slot through which coins can be inserted into a slot machine
+30305,coinage mintage specie metal_money,coins collectively
+30306,coincidence,the quality of occupying the same position or area in space; "he waited for the coincidence of the target and the cross hairs"
+30307,coincidence happenstance,an event that might have been arranged although it was really accidental
+30308,coiner,a maker of counterfeit coins
+30309,coiner,someone who is a source of new words or new expressions
+30310,coiner minter moneyer,a skilled worker who coins or stamps money
+30311,coinsurance,insurance issued jointly by two or more underwriters
+30312,coir,stiff coarse fiber from the outer husk of a coconut
+30313,coitus_interruptus withdrawal_method withdrawal pulling_out onanism,a method of birth control in which coitus is initiated but the penis is deliberately withdrawn before ejaculation
+30314,coke,carbon fuel produced by distillation of coal
+30315,coke blow nose_candy snow C,street names for cocaine
+30316,col gap,a pass between mountain peaks
+30317,cola dope,carbonated drink flavored with extract from kola nuts (`dope' is a southernism in the United States)
+30318,cola_extract,a flavoring extracted from the kola nut
+30319,colander cullender,bowl-shaped strainer; used to wash or drain foods
+30320,colchicine,an analgesic drug derived from the saffron plant and used to treat gout
+30321,cold coldness,the sensation produced by low temperatures; "he shivered from the cold"; "the cold helped clear his head"
+30322,cold common_cold,a mild viral infection involving the nose and respiratory passages (but not the lungs); "will they never find a cure for the common cold?"
+30323,cold-water_flat,an apartment without modern conveniences
+30324,cold_cathode,a cathode that is a source of electrons without being heated
+30325,cold_cereal dry_cereal,a cereal that is not heated before serving
+30326,cold_chisel set_chisel,narrow chisel made of steel; used to cut stone or bricks
+30327,cold_comfort,very limited consolation or empathy; "he told me that time heals all wounds but that was cold comfort to me"
+30328,cold_cream coldcream face_cream vanishing_cream,a cream used cosmetically (mostly by women) for softening and cleaning the skin
+30329,cold_cuts,sliced assorted cold meats
+30330,cold_duck,pink sparkling wine originally from Germany
+30331,cold_feet,timidity that prevents the continuation of a course of action; "I was going to tell him but I got cold feet"
+30332,cold_fish,an aloof unemotional person
+30333,cold_frame,protective covering consisting of a wooden frame with a glass top in which small plants are protected from the cold
+30334,cold_front polar_front,the front of an advancing mass of colder air
+30335,cold_fusion,nuclear fusion at or near room temperatures; claims to have discovered it are generally considered to have been mistaken
+30336,cold_medicine,medicine intended to relieve the symptoms of the common cold
+30337,cold_rubber,a rubber made at low temperatures (5 degrees Centigrade) which is tougher than conventional rubber and is often used in car tires
+30338,cold_spell cold_snap,a spell of cold weather
+30339,cold_storage,in a state of abeyance or postponement
+30340,cold_storage,refrigerated storage for preservation
+30341,cold_sweat,the physical condition of concurrent perspiration and chill; associated with fear
+30342,cold_turkey,a blunt expression of views; "I told him cold turkey"
+30343,cold_turkey,complete and abrupt withdrawal of all addictive drugs or anything else on which you have become dependent; "he quit smoking cold turkey"; "she quit her job cold turkey"
+30344,cold_war,a state of political hostility between countries using means short of armed warfare
+30345,cold_water,disparagement of a plan or hope or expectation; "she poured cold water on the whole idea of going to Africa"
+30346,cold_wave,a wave of unusually cold weather
+30347,cold_weather,a period of unusually cold weather
+30348,coldness cold low_temperature frigidity frigidness,the absence of heat; "the coldness made our breath visible"; "come in out of the cold"; "cold is a vasoconstrictor"
+30349,coldness coolness frigidity frigidness iciness chilliness,a lack of affection or enthusiasm; "a distressing coldness of tone and manner"
+30350,coleslaw slaw,basically shredded cabbage
+30351,coleus flame_nettle,any of various Old World tropical plants of the genus Coleus having multicolored decorative leaves and spikes of blue flowers
+30352,colic intestinal_colic gripes griping,acute abdominal pain (especially in infants)
+30353,colic_artery arteria_colica,arteries that supply blood to the colon
+30354,colic_vein vena_colica,vein serving the large intestine
+30355,colicroot colic_root crow_corn star_grass unicorn_root,any of several perennials of the genus Aletris having grasslike leaves and bitter roots reputed to cure colic
+30356,coliphage,a bacteriophage that infects the bacterium Escherichia coli
+30357,colitis inflammatory_bowel_disease,inflammation of the colon
+30358,collaboration coaction,act of working jointly; "they worked either in collaboration or independently"
+30359,collaboration collaborationism quislingism,act of cooperating traitorously with an enemy that is occupying your country
+30360,collaborator collaborationist quisling,someone who collaborates with an enemy occupying force
+30361,collaborator cooperator partner pardner,an associate in an activity or endeavor or sphere of common interest; "the musician and the librettist were collaborators"; "sexual partners"
+30362,collage,any collection of diverse things; "a collage of memories"
+30363,collage montage,a paste-up made by sticking together pieces of paper or photographs to form an artistic image; "he used his computer to make a collage of pictures superimposed on a map"
+30364,collage_film,a movie that juxtaposes different kinds of footage
+30365,collagen,a fibrous scleroprotein in bone and cartilage and tendon and other connective tissue; yields gelatin on boiling
+30366,collagenase,any enzyme that catalyzes the hydrolysis of collagen and gelatin
+30367,collapse,a natural event caused by something suddenly falling down or caving in; "the roof is in danger of collapse"; "the collapse of the old star under its own gravity"
+30368,collapse prostration,an abrupt failure of function or complete physical exhaustion; "the commander's prostration demoralized his men"
+30369,collar,(zoology) an encircling band or marking around the neck of any animal
+30370,collar,anything worn or placed about the neck; "the thief was forced to wear a heavy wooden collar"; "a collar of flowers was placed about the neck of the winning horse"
+30371,collar,a short ring fastened over a rod or shaft to limit, guide, or secure a machine part
+30372,collar,a band of leather or rope that is placed around an animal's neck as a harness or to identify it
+30373,collar leash,a figurative restraint; "asked for a collar on program trading in the stock market"; "kept a tight leash on his emotions"; "he's always gotten a long leash"
+30374,collar neckband,a band that fits around the neck and is usually folded over
+30375,collar shoe_collar,the stitching that forms the rim of a shoe or boot
+30376,collar_blight,a disease affecting the trunks of pear and apple trees
+30377,collard,variety of kale having smooth leaves
+30378,collards collard_greens,kale that has smooth leaves
+30379,collared_lizard,any of several robust long-tailed lizards with collars of two dark bands; of central and western United States and northern Mexico
+30380,collared_peccary javelina Tayassu_angulatus Tayassu_tajacu Peccari_angulatus,dark grey peccary with an indistinct white collar; of semi desert areas of Mexico and southwestern United States
+30381,collared_pika Ochotona_collaris,similar to little chief hare and may be same species
+30382,collateral,a security pledged for the repayment of a loan
+30383,collateral_damage,(euphemism) inadvertent casualties and destruction inflicted on civilians in the course of military operations
+30384,collation,assembling in proper numerical or logical sequence
+30385,collation,careful examination and comparison to note points of disagreement
+30386,colleague co-worker fellow_worker workfellow,an associate that one works with
+30387,colleague confrere fellow,a person who is member of one's class or profession; "the surgeon consulted his colleagues"; "he sent e-mail to his fellow hackers"
+30388,collect,a short prayer generally preceding the lesson in the Church of Rome or the Church of England
+30389,collect_call,a telephone call that the receiving party is asked to pay for
+30390,collectible collectable,things considered to be worth collecting (not necessarily valuable or antique)
+30391,collection aggregation accumulation assemblage,several things grouped together or considered as a whole
+30392,collection collecting assembling aggregation,the act of gathering something together
+30393,collection compendium,a publication containing a variety of works
+30394,collective,members of a cooperative enterprise
+30395,collective_bargaining,negotiation between an employer and trade union
+30396,collective_farm,a farm operated collectively
+30397,collective_noun,a noun that is singular in form but refers to a group of people or things
+30398,collective_security,a system for international peace
+30399,collectivism,a political theory that the people should own the means of production
+30400,collectivist leftist left-winger,a person who belongs to the political left
+30401,collectivization collectivisation,the organization of a nation or economy on the basis of collectivism
+30402,collector,a crater that has collected cosmic material hitting the earth
+30403,collector,the electrode in a transistor through which a primary flow of carriers leaves the region between the electrodes
+30404,collector aggregator,a person who collects things
+30405,collector gatherer accumulator,a person who is employed to collect payments (as for rent or taxes)
+30406,collector's_item showpiece piece_de_resistance,the outstanding item (the prize piece or main exhibit) in a collection
+30407,colleen,an Irish girl
+30408,college,an institution of higher education created to educate and grant degrees; often a part of a university
+30409,college,the body of faculty and students of a college
+30410,college,a complex of buildings in which an institution of higher education is housed
+30411,college_level,the level of education that college students are assumed to have attained
+30412,college_student university_student,a student enrolled in a college or university
+30413,collegian college_man college_boy,a student (or former student) at a college or university
+30414,collembolan springtail,any of numerous minute wingless primitive insects possessing a special abdominal appendage that allows the characteristic nearly perpetual springing pattern; found in soil rich in organic debris or on the surface of snow or water
+30415,collet,a band or collar that holds an individual stone in a jewelry setting
+30416,collet collet_chuck,a cone-shaped chuck used for holding cylindrical pieces in a lathe
+30417,collider,an accelerator in which two beams of particles are forced to collide head on
+30418,collie,a silky-coated sheepdog with a long ruff and long narrow head developed in Scotland
+30419,colliery pit,a workplace consisting of a coal mine plus all the buildings and equipment connected with it
+30420,colligation,the connection of isolated facts by a general hypothesis
+30421,collimation,the accurate adjustment of the line of sight of a telescope
+30422,collimator,a small telescope attached to a large telescope to use in setting the line of the larger one
+30423,collimator,optical device consisting of a tube containing a convex achromatic lens at one end and a slit at the other with the slit at the focus of the lens; light rays leave the slit as a parallel beam
+30424,collins Tom_Collins,tall iced drink of liquor (usually gin) with fruit juice
+30425,collision,an accident resulting from violent impact of a moving object; "three passengers were killed in the collision"; "the collision of the two ships resulted in a serious oil spill"
+30426,collision,a conflict of opposed ideas or attitudes or goals; "a collision of interests"
+30427,collision hit,(physics) a brief event in which two or more bodies come together; "the collision of the particles resulted in an exchange of energy and a change of direction"
+30428,collision_course,a course of a moving object that will lead to a collision if it continues unchanged
+30429,collision_course,a course of action (following a given idea) that will lead to conflict if it continues unabated
+30430,collocation,a grouping of words in a sentence
+30431,collodion,a colorless syrupy solution of pyroxylin in ether and alcohol; used as a coating for wounds or photographic films
+30432,colloid,a mixture with properties between those of a solution and fine suspension
+30433,colloquialism,a colloquial expression; characteristic of spoken or written communication that seeks to imitate informal speech
+30434,colloquium,an academic meeting or seminar usually led by a different lecturer and on a different topic at each meeting
+30435,colloquium,an address to an academic meeting or seminar
+30436,colloquy,a conversation especially a formal one
+30437,colloquy,formal conversation
+30438,collotype collotype_printing photogelatin_process,a photomechanical printing process that uses a glass plate with a gelatin surface that carries the image to be reproduced; can be used with one or more colors
+30439,collusion,secret agreement
+30440,colobus colobus_monkey,arboreal monkey of western and central Africa with long silky fur and reduced thumbs
+30441,cologne cologne_water eau_de_cologne,a perfumed liquid made of essential oils and alcohol
+30442,colon,a punctuation mark (:) used after a word introducing a series or an example or an explanation (or after the salutation of a business letter)
+30443,colon,the part of the large intestine between the cecum and the rectum; it extracts moisture from food residues before they are excreted
+30444,colon Costa_Rican_colon,the basic unit of money in Costa Rica; equal to 100 centimos
+30445,colon El_Salvadoran_colon,the basic unit of money in El Salvador; equal to 100 centavos
+30446,colon_cancer,a malignant tumor of the colon; early symptom is bloody stools
+30447,colonel,a commissioned military officer in the United States Army or Air Force or Marines who ranks above a lieutenant colonel and below a brigadier general
+30448,colonial,a resident of a colony
+30449,colonialism,exploitation by a stronger country of weaker one; the use of the weaker country's resources to strengthen and enrich the stronger country
+30450,colonialist,a believer in colonialism
+30451,colonic_irrigation colonic,a water enema given to flush out the colon
+30452,colonization colonisation settlement,the act of colonizing; the establishment of colonies; "the British colonization of America"
+30453,colonizer coloniser,someone who helps to found a colony
+30454,colonnade,structure consisting of a row of evenly spaced columns
+30455,colonoscope,an elongated fiberoptic endoscope for examining the entire colon from cecum to rectum
+30456,colonoscopy,visual examination of the colon (with a colonoscope) from the cecum to the rectum; requires sedation
+30457,colony,a place where a group of people with the same interest or occupation are concentrated; "a nudist colony"; "an artists' colony"
+30458,colony,(microbiology) a group of organisms grown from a single parent cell
+30459,colony,a group of organisms of the same type living or growing together
+30460,colony dependency,a geographical area politically controlled by a distant country
+30461,colony settlement,a body of people who settle far from home but maintain ties with their homeland; inhabitants remain nationals of their home state but are not literally under the home state's system of government; "the American colony in Paris"
+30462,colophon,a publisher's emblem printed in a book (usually on the title page)
+30463,colophony,translucent brittle substance produced from pine oleoresin; used especially in varnishes and inks and on the bows of stringed instruments
+30464,color colour,(physics) the characteristic of quarks that determines their role in the strong interaction; "each flavor of quarks comes in three colors"
+30465,color colour,the appearance of objects (or light sources) described in terms of a person's perception of their hue and lightness (or brightness) and saturation
+30466,color colour coloration colouration,the timbre of a musical sound; "the recording fails to capture the true color of the original music"
+30467,color colour coloring colouring,a visual attribute of things that results from the light they emit or transmit or reflect; "a white color is made up of many different wavelengths of light"
+30468,color colour vividness,interest and variety and intensity; "the Puritan Period was lacking in color"; "the characters were delineated with exceptional vividness"
+30469,color-blind_person,a person unable to distinguish differences in hue
+30470,color_bar colour_bar color_line colour_line Jim_Crow,barrier preventing blacks from participating in various activities with whites
+30471,color_barrier,the barrier preventing Blacks from participating in various activities with whites
+30472,color_bearer standard-bearer,the soldier who carries the standard of the unit in military parades or in battle
+30473,color_blindness colour_blindness color_vision_deficiency colour_vision_deficiency,genetic inability to distinguish differences in hue
+30474,color_chart,a chart displaying colors
+30475,color_circle color_wheel,a chart in which complementary colors (or their names) are arranged on opposite sides of a circle
+30476,color_code,system using colors to designate classifications
+30477,color_constancy colour_constancy,the tendency for a color to look the same under widely different viewing conditions
+30478,color_guard,a ceremonial escort for the (regimental) colors
+30479,color_of_law colour_of_law,a mere semblance of legal right; something done with the apparent authority of law but actually in contravention of law; "the plaintiff claimed that under color of law the officer had deprived him of his civil rights"
+30480,color_property,an attribute of color
+30481,color_scheme colour_scheme,a planned combination of colors; "the color scheme for this room was determined by an interior decorator"
+30482,color_sergeant,a sergeant in a color guard who carries one of the colors
+30483,color_television colour_television color_television_system colour_television_system color_TV colour_TV,a television that transmits images in color
+30484,color_tube colour_tube color_television_tube colour_television_tube color_TV_tube colour_TV_tube,a television tube that displays images in full color
+30485,color_vision chromatic_vision trichromacy,the normal ability to see colors
+30486,color_wash colour_wash,a wash of whitewash or other water-base paint tinted with a colored pigment
+30487,coloration colouration,appearance with regard to color; "her healthy coloration"
+30488,coloration colouration,choice and use of colors (as by an artist)
+30489,coloratura,singing with florid ornamentation
+30490,coloratura coloratura_soprano,a lyric soprano who specializes in coloratura vocal music
+30491,colorcast colourcast,a television program that is broadcast in color
+30492,colored_hearing colored_audition,a form of chromesthesia in which experiences of color accompany auditory stimuli
+30493,colorimeter tintometer,a measuring instrument used in colorimetric analysis to determine the quantity of a substance from the color it yields with specific reagents
+30494,colorimetry colorimetric_analysis,quantitative chemical analysis by color using a colorimeter
+30495,coloring colouring,the act or process of changing the color of something
+30496,coloring colouring food_coloring food_colouring food_color food_colour,a digestible substance used to give color to food; "food color made from vegetable dyes"
+30497,coloring_book,a picture book with line drawings intended to be colored with crayons by children
+30498,coloring_material colouring_material color colour,any material used for its color; "she used a different color for the trim"
+30499,colorist,a painter able to achieve special effects with color
+30500,colorlessness colourlessness achromatism achromaticity,the visual property of being without chromatic color
+30501,colors colours,a distinguishing emblem; "his tie proclaimed his school colors"
+30502,colors colours,a flag that shows its nationality
+30503,colossus behemoth giant heavyweight titan,a person of exceptional importance and reputation
+30504,colostomy,a surgical operation that creates an opening from the colon to the surface of the body to function as an anus
+30505,colostrum foremilk,milky fluid secreted for the first day or two after parturition
+30506,colour_supplement,(British) a magazine that is printed in color and circulated with a newspaper (especially on weekends)
+30507,colpitis,inflammation of the vagina
+30508,colpocele vaginocele,hernia projecting into the vagina
+30509,colpocystitis,inflammation of the vagina and bladder
+30510,colpoxerosis,a condition in which the vagina is unusually dry
+30511,colt,a young male horse under the age of four
+30512,colter coulter,a sharp steel wedge that precedes the plow and cuts vertically through the soil
+30513,coltsfoot Tussilago_farfara,perennial herb with large rounded leaves resembling a colt's foot and yellow flowers appearing before the leaves do; native to Europe but now nearly cosmopolitan; used medicinally especially formerly
+30514,colubrid_snake colubrid,mostly harmless temperate-to-tropical terrestrial or arboreal or aquatic snakes
+30515,columbarium,a sepulchral vault or other structure having recesses in the walls to receive cinerary urns
+30516,columbarium cinerarium,a niche for a funeral urn containing the ashes of the cremated dead
+30517,columbian_mammoth Mammuthus_columbi,a variety of mammoth
+30518,columbiform_bird,a cosmopolitan order of land birds having small heads and short legs with four unwebbed toes
+30519,columbine aquilegia aquilege,a plant of the genus Aquilegia having irregular showy spurred flowers; north temperate regions especially mountains
+30520,columbite-tantalite coltan,a valuable black mineral combining niobite and tantalite; used in cell phones and computer chips
+30521,columbium,a former name for niobium
+30522,columbo American_columbo deer's-ear deer's-ears pyramid_plant American_gentian,any of various tall perennial herbs constituting the genus Frasera; widely distributed in warm dry upland areas of California, Oregon, and Washington
+30523,columella,a small column (or structure resembling a column) that is a part of a plant or animal
+30524,column,a vertical array of numbers or other information; "he added a column of numbers"
+30525,column,a line of units following one after another
+30526,column,a page or text that is vertically divided; "the newspaper devoted several columns to the subject"; "the bookkeeper used pages that were divided into columns"
+30527,column,any tubular or pillar-like supporting structure in the body
+30528,column chromatography_column,a vertical glass tube used in column chromatography; a mixture is poured in the top and washed through a stationary substance where components of the mixture are adsorbed selectively to form colored bands
+30529,column editorial newspaper_column,an article giving opinions or perspectives
+30530,column pillar,a vertical cylindrical structure standing alone and not supporting anything (such as a monument)
+30531,column pillar,(architecture) a tall vertical cylindrical structure standing upright and used to support a structure
+30532,column tower pillar,anything that approximates the shape of a column or tower; "the test tube held a column of white powder"; "a tower of dust rose above the horizon"; "a thin pillar of smoke betrayed their campsite"
+30533,column_chromatography,chromatography that uses selective adsorption by a column of powders
+30534,column_inch inch,a unit of measurement for advertising space
+30535,columnar_cell columnar_epithelial_cell,an epithelial cell that is shaped like a column; some have cilia
+30536,columnea,tropical plant having thick hairy somewhat toothed leaves and solitary or clustered yellow to scarlet flowers; many cultivated for their flowers and ornamental foliage
+30537,columniation,(architecture) the arrangement of columns (especially freestanding columns) in a structure
+30538,columnist editorialist,a journalist who writes editorials
+30539,coma,(botany) a usually terminal tuft of bracts (as in the pineapple) or tuft of hairs (especially on certain seeds)
+30540,coma,(astronomy) the luminous cloud of particles surrounding the frozen nucleus of a comet; forms as the comet approaches the sun and is warmed
+30541,coma comatoseness,a state of deep and often prolonged unconsciousness; usually the result of disease or injury
+30542,comb,any of several tools for straightening fibers
+30543,comb,a flat device with narrow pointed teeth on one edge; disentangles or arranges hair
+30544,comb,ciliated comb-like swimming plate of a ctenophore
+30545,comb cockscomb coxcomb,the fleshy red crest on the head of the domestic fowl and other gallinaceous birds
+30546,comb combing,the act of drawing a comb through hair; "his hair needed a comb"
+30547,comb-footed_spider theridiid,spider having a comb-like row of bristles on each hind foot
+30548,comb-out,the act of carefully weeding out unwanted things or people; "the department got a good comb-out"
+30549,comb-out teasing,the act of removing tangles from you hair with a comb
+30550,combat armed_combat,an engagement fought between two military forces
+30551,combat_ceiling service_ceiling,altitude above which a plane cannot climb faster than a given rate
+30552,combat_mission,a mission to capture or defend something
+30553,combat_pay,extra pay for soldiers engaged in active combat
+30554,combat_pilot,airplane pilot who fights in an action between two military forces
+30555,combat_zone combat_area,a military area where combat forces operate
+30556,combat_zone tenderloin,a city district known for its vice and high crime rate
+30557,combatant battler belligerent fighter scrapper,someone who fights (or is fighting)
+30558,combativeness militance militancy,a militant aggressiveness
+30559,comber,a person who separates and straightens the fibers of cotton or wool
+30560,comber,a long curling sea wave
+30561,comber,a machine that separates and straightens the fibers of cotton or wool
+30562,combination,a coordinated sequence of chess moves
+30563,combination,a sequence of numbers or letters that opens a combination lock; "he forgot the combination to the safe"
+30564,combination,a group of people (often temporary) having a common purpose; "they were a winning combination"
+30565,combination,an alliance of people or corporations or countries for a special purpose (formerly to achieve some antisocial end but now for general political or economic purposes)
+30566,combination,a collection of things that have been combined; an assemblage of separate parts or qualities
+30567,combination,the act of arranging elements into specified groups without regard to order
+30568,combination combining compounding,the act of combining things to form a new whole
+30569,combination_in_restraint_of_trade,(law) any monopoly or contract or combination or conspiracy intended to restrain commerce (which are illegal according to antitrust laws of the United States)
+30570,combination_lock,lock that can be opened only by turning dials in a special sequence
+30571,combination_plane,a woodworking plane that has interchangeable cutters of various shapes
+30572,combination_salad,containing meat or chicken or cheese in addition to greens and vegetables
+30573,combine,harvester that heads and threshes and cleans grain while moving across the field
+30574,combined_operation,a military operation carried out cooperatively by two or more allied nations or a military operation carried out by coordination of sea, land, and air forces
+30575,combining combine,an occurrence that results in things being united
+30576,combining_form,a bound form used only in compounds; "`hemato-' is a combining form in words like `hematology'"
+30577,combretum,any of numerous shrubs or small trees of the genus Combretum having spikes of small flowers
+30578,combustibility combustibleness burnability,the quality of being capable of igniting and burning
+30579,combustible combustible_material,a substance that can be burned to provide heat or power
+30580,combustion,a state of violent disturbance and excitement; "combustion grew until revolt was unavoidable"
+30581,combustion burning,a process in which a substance reacts with oxygen to give heat and light
+30582,comeback,return by a celebrity to some previously successful activity
+30583,comedian,an actor in a comedy
+30584,comedian comic,a professional performer who tells jokes and performs comical acts
+30585,comedienne,a female actor in a comedy
+30586,comedienne,a female comedian
+30587,comedown,decline to a lower status or level
+30588,comedy,light and humorous drama with a happy ending
+30589,comedy_ballet,a ballet that stresses the drama with features of comedy
+30590,comeliness fairness loveliness beauteousness,the quality of being good looking and attractive
+30591,comer,someone with a promising future
+30592,comestible edible eatable pabulum victual victuals,any substance that can be used as food
+30593,comet,(astronomy) a relatively small extraterrestrial body consisting of a frozen mass that travels around the sun in a highly elliptical orbit
+30594,comfit,candy containing a fruit or nut
+30595,comfort,satisfaction or physical well-being provided by a person or thing; "his friendship was a comfort"; "a padded chair was one of the room's few comforts"
+30596,comfort,a feeling of freedom from worry or disappointment
+30597,comfort,assistance, such as that provided to an enemy or to a known criminal; "it gave comfort to the enemy"
+30598,comfort comfortableness,a state of being relaxed and feeling no pain; "he is a man who enjoys his comfort"; "she longed for the comfortableness of her armchair"
+30599,comfort_food,food that is simply prepared and gives a sense of wellbeing; typically food with a high sugar or carbohydrate content that is associated with childhood or with home cooking
+30600,comfort_woman ianfu,a woman forced into prostitution for Japanese servicemen during World War II; "she wrote a book about her harsh experiences as a comfort woman"
+30601,comfort_zone,the temperature range (between 28 and 30 degrees Centigrade) at which the naked human body is able to maintain a heat balance without shivering or sweating
+30602,comfortableness,a feeling of being at ease in a relationship
+30603,comforter pacifier baby's_dummy teething_ring,device used for an infant to suck or bite on
+30604,comforts creature_comforts amenities conveniences,things that make you comfortable and at ease; "all the comforts of home"
+30605,comfrey cumfrey,perennial herbs of Europe and Iran; make rapidly growing groundcover for shaded areas
+30606,comfrey healing_herb,leaves make a popular tisane; young leaves used in salads or cooked
+30607,comic_book,a magazine devoted to comic strips
+30608,comic_opera opera_bouffe bouffe opera_comique,opera with a happy ending and in which some of the text is spoken
+30609,comic_strip cartoon_strip strip funnies,a sequence of drawings telling a story in a newspaper or comic book
+30610,comicality,the quality of being comical
+30611,coming_attraction,a movie that is advertised to draw customers
+30612,comity,a state or atmosphere of harmony or mutual civility and respect
+30613,comity_of_nations,courteous respect by one nation for the laws and institutions of another
+30614,comma,a punctuation mark (,) used to indicate the separation of elements within the grammatical structure of a sentence
+30615,comma comma_butterfly Polygonia_comma,anglewing butterfly with a comma-shaped mark on the underside of each hind wing
+30616,comma_bacillus Vibrio_comma,comma-shaped bacteria that cause Asiatic cholera
+30617,command,a position of highest authority; "the corporation has just undergone a change in command"
+30618,command,a military unit or region under the control of a single officer
+30619,command,the power or authority to command; "an admiral in command"
+30620,command,availability for use; "the materials at the command of the potters grew"
+30621,command bid bidding dictation,an authoritative direction or instruction to do something
+30622,command control mastery,great skillfulness and knowledge of some subject or activity; "a good command of French"
+30623,command_guidance,a method of controlling the flight of a missile by commands originating from the ground or from another missile
+30624,command_language query_language search_language,a source language consisting of procedural operators that invoke functions to be executed
+30625,command_line,commands that a user types in order to run an application
+30626,command_line_interface CLI,a user interface in which you type commands instead of choosing them from a menu or selecting an icon
+30627,command_module,a space module in which astronauts can live and control the spacecraft and communicate with earth
+30628,command_post general_headquarters GHQ,military headquarters from which a military commander controls and organizes the forces
+30629,command_processing_overhead_time command_processing_overhead command_overhead overhead,(computer science) the processing time required by a device prior to the execution of a command
+30630,commander,a commissioned naval officer who ranks above a lieutenant commander and below a captain
+30631,commander,someone in an official position of authority who can command or control others
+30632,commander_in_chief commander-in-chief generalissimo,the officer who holds the supreme command; "in the U.S. the president is the commander in chief"
+30633,commandership commandery,the position or office of commander
+30634,commanding_officer commandant commander,an officer in command of a military unit
+30635,commandment,something that is commanded
+30636,commando,an amphibious military unit trained for raids into enemy territory
+30637,commando ranger,a member of a military unit trained as shock troops for hit-and-run raids
+30638,commedia_dell'arte,Italian comedy of the 16th to 18th centuries improvised from standardized situations and stock characters
+30639,commelina,any plant of the genus Commelina
+30640,commemoration memorialization memorialisation,a ceremony to honor the memory of someone or something
+30641,commemorative,an object (such as a coin or postage stamp) made to mark an event or honor a person
+30642,commencement commencement_exercise commencement_ceremony graduation graduation_exercise,an academic exercise in which diplomas are conferred
+30643,commencement_day degree_day,the day on which university degrees are conferred
+30644,commensal,either of two different animal or plant species living in close association but not interdependent
+30645,commensalism,the relation between two different kinds of organisms when one receives benefits from the other without damaging it
+30646,commensurateness correspondence proportionateness,the relation of corresponding in degree or size or amount
+30647,comment commentary,a written explanation or criticism or illustration that is added to a book or other textual material; "he wrote an extended comment on the proposal"
+30648,commentator reviewer,a writer who reports and analyzes events of the day
+30649,commerce,social exchange, especially of opinions, attitudes, etc.
+30650,commerce commercialism mercantilism,transactions (sales and purchases) having the objective of supplying commodities (goods and services)
+30651,commercial commercial_message,a commercially sponsored ad on radio or television
+30652,commercial_art,art used for commercial purposes (as in advertising)
+30653,commercial_artist,an illustrator who is supported by advertising
+30654,commercial_bank full_service_bank,a financial institution that accepts demand deposits and makes loans and provides other services for the public
+30655,commercial_bribery,bribery of a purchasing agent in order to induce the agent to enter into a transaction
+30656,commercial_credit,credit granted by a bank to a business concern for commercial purposes
+30657,commercial_document commercial_instrument,a document of or relating to commerce
+30658,commercial_enterprise,an enterprise connected with commerce
+30659,commercial_enterprise business_enterprise business,the activity of providing goods and services involving financial and commercial and industrial aspects; "computers are now widely used in business"
+30660,commercial_finance_company commercial_credit_company,a finance company that makes loans to manufacturers and wholesalers
+30661,commercial_letter_of_credit,a letter of credit given to a business concern for commercial purposes
+30662,commercial_paper,an unsecured and unregistered short-term obligation issued by an institutional borrower to investors who have temporarily idle cash
+30663,commercial_treaty,a treaty governing commerce between two or more nations
+30664,commercialization commercialisation,the act of commercializing something; involving something in commerce; "my father considered the commercialization of Christmas to be a sacrilege"; "the government tried to accelerate the commercialization of this development"; "both companies will retain control over the commercialization of their own products"
+30665,commination,prayers proclaiming God's anger against sinners; read in the Church of England on Ash Wednesday
+30666,commination,a threat of divine punishment or vengeance
+30667,comminuted_fracture,fracture in which the bone is splintered or crushed
+30668,commiseration pity ruth pathos,a feeling of sympathy and sorrow for the misfortunes of others; "the blind are too often objects of pity"
+30669,commissar political_commissar,an official of the Communist Party who was assigned to teach party principles to a military unit
+30670,commissariat provisions provender viands victuals,a stock or supply of foods
+30671,commissary,a snack bar in a film studio
+30672,commissary,a retail store that sells equipment and provisions (usually to military personnel)
+30673,commission,the state of being in good working order and ready for operation; "put the ships into commission"; "the motor was out of commission"
+30674,commission,a fee for services rendered based on a percentage of an amount received or collected or agreed to be paid (as distinguished from a salary); "he works on commission"
+30675,commission charge direction,a formal statement of a command or injunction to do something; "the judge's charge to the jury"
+30676,commission commissioning,the act of granting authority to undertake certain functions
+30677,commission military_commission,an official document issued by a government and conferring on the recipient the rank of an officer in the armed forces
+30678,commission_plan,a municipal government that combines legislative and executive authority in the members of a commission
+30679,commissionaire,a uniformed doorman
+30680,commissioned_military_officer,a commissioned officer in the Army or Air Force or Marine Corps
+30681,commissioned_naval_officer,a commissioned officer in the navy
+30682,commissioned_officer,a military officer holding a commission
+30683,commissioner,a member of a commission
+30684,commissioner,a government administrator
+30685,commissure,a bundle of nerve fibers passing from one side to the other of the brain or spinal cord
+30686,commitment,an engagement by contract involving financial obligation; "his business commitments took him to London"
+30687,commitment allegiance loyalty dedication,the act of binding yourself (intellectually or emotionally) to a course of action; "his long commitment to public service"; "they felt no loyalty to a losing team"
+30688,commitment committal consignment,the official act of consigning a person to confinement (as in a prison or mental hospital)
+30689,commitment dedication,a message that makes a pledge
+30690,committal_service,service committing a body to the grave; "the committal service will be held next Monday"
+30691,committedness commitment,the trait of sincere and steadfast fixity of purpose; "a man of energy and commitment"
+30692,committee citizens_committee,a self-constituted organization to promote something
+30693,committee commission,a special group delegated to consider some matter; "a committee is a group that keeps minutes and loses hours" - Milton Berle
+30694,committee_member,a member of a committee
+30695,committeeman,a man who is a member of committee
+30696,committeewoman,a woman who is a member of a committee
+30697,commodity trade_good good,articles of commerce
+30698,commodity_brokerage,a brokerage firm dealing in commodities
+30699,commodity_exchange commodities_exchange commodities_market,an exchange for buying and selling commodities for future delivery
+30700,commodore,a commissioned naval officer who ranks above a captain and below a rear admiral; the lowest grade of admiral
+30701,common-law_marriage,a marriage relationship created by agreement and cohabitation rather than by ceremony
+30702,common_American_shad Alosa_sapidissima,shad of Atlantic coast of North America; naturalized to Pacific coast
+30703,common_European_dogwood red_dogwood blood-twig pedwood Cornus_sanguinea,European deciduous shrub turning red in autumn having dull white flowers
+30704,common_European_earwig Forficula_auricularia,sometimes destructive to cultivated bulbs
+30705,common_European_jay Garullus_garullus,fawn-colored jay with black-and-white crest and blue-and-black wings
+30706,common_St_John's_wort tutsan Hypericum_androsaemum,deciduous bushy Eurasian shrub with golden yellow flowers and reddish-purple fruits from which a soothing salve is made in Spain
+30707,common_ageratum Ageratum_houstonianum,small tender herb grown for its fluffy brushlike blue to lavender blooms
+30708,common_alder European_black_alder Alnus_glutinosa Alnus_vulgaris,medium-sized tree with brown-black bark and woody fruiting catkins; leaves are hairy beneath
+30709,common_allamanda golden_trumpet Allamanda_cathartica,vigorous evergreen climbing plant of South America having glossy leathery foliage and golden yellow flowers
+30710,common_amsinckia Amsinckia_intermedia,annual of western United States with coiled spikes of yellow-orange coiled flowers
+30711,common_apricot Prunus_armeniaca,temperate zone tree bearing downy yellow to rosy fruits
+30712,common_arrowhead,a weed
+30713,common_ax common_axe Dayton_ax Dayton_axe,an ax with a long handle and a head that has one cutting edge and one blunt side
+30714,common_bamboo Bambusa_vulgaris,extremely vigorous bamboo having thin-walled culms striped green and yellow; so widely cultivated that native area is uncertain
+30715,common_barberry European_barberry Berberis_vulgaris,upright deciduous European shrub widely naturalized in United States having clusters of juicy berries
+30716,common_barley Hordeum_vulgare,grass yielding grain used for breakfast food and animal feed and in malt beverages
+30717,common_basil sweet_basil Ocimum_basilicum,annual or perennial of tropical Asia having spikes of small white flowers and aromatic leaves; one of the most important culinary herbs; used in salads, casseroles, sauces and some liqueurs
+30718,common_bean,any of numerous beans eaten either fresh or dried
+30719,common_bean common_bean_plant Phaseolus_vulgaris,the common annual twining or bushy bean plant grown for its edible seeds or pods
+30720,common_bearberry red_bearberry wild_cranberry mealberry hog_cranberry sand_berry sandberry mountain_box bear's_grape creashak Arctostaphylos_uva-ursi,evergreen mat-forming shrub of North America and northern Eurasia having small white flowers and red berries; leaves turn red in autumn
+30721,common_beech European_beech Fagus_sylvatica,large European beech with minutely-toothed leaves; widely planted as an ornamental in North America
+30722,common_bile_duct bile_duct,a duct formed by the hepatic and cystic ducts; opens into the duodenum
+30723,common_booklouse Trogium_pulsatorium,a variety of booklouse
+30724,common_box European_box Buxus_sempervirens,large slow-growing evergreen shrub or small tree with multiple stems; extensively used for hedges or borders and topiary figures
+30725,common_brant_goose Branta_bernicla,the best known variety of brant goose
+30726,common_broom Scotch_broom green_broom Cytisus_scoparius,deciduous erect spreading broom native to western Europe; widely cultivated for its rich yellow flowers
+30727,common_burdock lesser_burdock Arctium_minus,a plant that is ubiquitous in all but very acid soil; found in most of Europe and North Africa
+30728,common_buttercup Ranunculus_bulbosus,perennial Old World buttercup with golden to sulphur yellow flowers in late spring to early summer; naturalized in North America
+30729,common_calamint Calamintha_sylvatica Satureja_calamintha_officinalis,mint-scented perennial of central and southern Europe
+30730,common_camas Camassia_quamash,plant having a large edible bulb and linear basal leaves and racemes of light to deep violet-blue star-shaped flowers on tall green scapes; western North America
+30731,common_canary Serinus_canaria,native to the Canary Islands and Azores; popular usually yellow cage bird noted for its song
+30732,common_caper Capparis_spinosa,prostrate spiny shrub of the Mediterranean region cultivated for its greenish flower buds which are pickled
+30733,common_cardinal_vein,the major return channels to the heart; formed by anastomosis of the anterior and posterior cardinal veins
+30734,common_carline_thistle Carlina_vulgaris,Eurasian thistle growing in sand dunes and dry chalky soils
+30735,common_carotid_artery common_carotid,runs upward in the neck and divides into the external and internal carotid arteries
+30736,common_chickweed Stellaria_media,a common low-growing annual garden weed with small white flowers; cosmopolitan; so-called because it is eaten by chickens
+30737,common_chord triad,a three-note major or minor chord; a note and its third and fifth tones
+30738,common_comfrey boneset Symphytum_officinale,European herb having small white, pink or purple flowers; naturalized as a weed in North America
+30739,common_corn_salad lamb's_lettuce Valerianella_olitoria Valerianella_locusta,widely cultivated as a salad crop and pot herb; often a weed
+30740,common_cotton_grass Eriophorum_angustifolium,having densely tufted white cottony or downlike glumes
+30741,common_daisy English_daisy Bellis_perennis,low-growing Eurasian plant with yellow central disc flowers and pinkish-white outer ray flowers
+30742,common_dandelion Taraxacum_ruderalia Taraxacum_officinale,Eurasian plant widely naturalized as a weed in North America; used as salad greens and to make wine
+30743,common_denominator,an integer that is a common multiple of the denominators of two or more fractions
+30744,common_denominator,an attribute that is common to all members of a category
+30745,common_divisor common_factor common_measure,an integer that divides two (or more) other integers evenly
+30746,common_dogbane spreading_dogbane rheumatism_weed Apocynum_androsaemifolium,North American perennial having pinkish flowers in loose cymes; used in folk medicine for pain or inflammation in joints
+30747,common_dolphin Delphinus_delphis,black-and-white dolphin that leaps high out of the water
+30748,common_duckweed lesser_duckweed Lemna_minor,of temperate regions except eastern Asia and Australia
+30749,common_eel freshwater_eel,eels that live in fresh water as adults but return to sea to spawn; found in Europe and America; marketed both fresh and smoked
+30750,common_eland Taurotragus_oryx,dark fawn-colored eland of southern and eastern Africa
+30751,common_evening_primrose German_rampion Oenothera_biennis,a coarse biennial of eastern North America with yellow flowers that open in the evening; naturalized in Europe
+30752,common_facial_vein,vein formed by union of facial vein and the retromandibular vein and emptying into the jugular vein
+30753,common_fate law_of_common_fate,a Gestalt principle of organization holding that aspects of perceptual field that move or function in a similar manner will be perceived as a unit
+30754,common_fennel Foeniculum_vulgare,strongly aromatic with a smell of aniseed; leaves and seeds used for seasoning
+30755,common_flat_pea native_holly Playlobium_obtusangulum,low spreading evergreen shrub of southern Australia having triangular to somewhat heart-shaped foliage and orange-yellow flowers followed by flat winged pods
+30756,common_four-o'clock marvel-of-Peru Mirabilis_jalapa Mirabilis_uniflora,common garden plant of North America having fragrant red or purple or yellow or white flowers that open in late afternoon
+30757,common_foxglove fairy_bell fingerflower finger-flower fingerroot finger-root Digitalis_purpurea,tall leafy European biennial or perennial having spectacular clusters of large tubular pink-purple flowers; leaves yield drug digitalis and are poisonous to livestock
+30758,common_fraction simple_fraction,the quotient of two integers
+30759,common_front,a movement in which several individuals or groups with different interests join together; "the unions presented a common front at the bargaining table"
+30760,common_garden_cress garden_pepper_cress pepper_grass pepperwort Lepidium_sativum,annual herb used as salad green and garnish
+30761,common_garter_snake Thamnophis_sirtalis,a garter snake that is widespread in North America
+30762,common_ginger Canton_ginger stem_ginger Zingiber_officinale,tropical Asian plant widely cultivated for its pungent root; source of gingerroot and powdered ginger
+30763,common_good commonweal,the good of a community
+30764,common_grape_hyacinth Muscari_neglectum,prolific species having particularly beautiful dark blue flowers
+30765,common_ground,a basis agreed to by all parties for reaching a mutual understanding
+30766,common_gum_cistus Cistus_ladanifer Cistus_ladanum,shrub having white flowers and viscid stems and leaves yielding a fragrant oleoresin used in perfumes especially as a fixative
+30767,common_heath Epacris_impressa,spindly upright shrub of southern Australia and Tasmania having white to rose or purple-red flowers
+30768,common_heath blunt-leaf_heath Epacris_obtusifolia,small erect shrub of Australia and Tasmania with fragrant ivory flowers
+30769,common_hop common_hops bine European_hop Humulus_lupulus,European twining plant whose flowers are used chiefly to flavor malt liquors; cultivated in America
+30770,common_horehound white_horehound Marrubium_vulgare,European aromatic herb with hairy leaves and numerous white flowers in axillary cymes; leaves yield a bitter extract use medicinally and as flavoring
+30771,common_horsetail field_horsetail Equisetum_arvense,of Eurasia and Greenland and North America
+30772,common_hyacinth Hyacinthus_orientalis,widely grown for its fragrance and its white, pink, blue, or purplish flowers
+30773,common_iguana iguana Iguana_iguana,large herbivorous tropical American arboreal lizards with a spiny crest along the back; used as human food in Central America and South America
+30774,common_iliac_artery,terminal branches of the abdominal aorta
+30775,common_iliac_vein,formed by the internal and external iliac veins; unites with its fellow from the opposite side of the body to form the inferior vena cava
+30776,common_jasmine true_jasmine jessamine Jasminum_officinale,a climbing deciduous shrub with fragrant white or yellow or red flowers used in perfume and to flavor tea
+30777,common_juniper Juniperus_communis,densely branching shrub or small tree having pungent blue berries used to flavor gin; widespread in northern hemisphere; only conifer on coasts of Iceland and Greenland
+30778,common_kingsnake Lampropeltis_getulus,widespread in United States except northern regions; black or brown with yellow bands
+30779,common_knowledge,anything generally known to everyone
+30780,common_laburnum golden_chain golden_rain Laburnum_anagyroides,an ornamental shrub or tree of the genus Laburnum; often cultivated for Easter decorations
+30781,common_lady's-slipper showy_lady's-slipper showy_lady_slipper Cypripedium_reginae Cypripedium_album,pale pink wild orchid of northeastern America having an inflated pouchlike lip
+30782,common_law case_law precedent,a system of jurisprudence based on judicial precedents rather than statutory laws; "common law originated in the unwritten laws of England and was later applied in the United States"
+30783,common_lilac Syringa_vulgaris,large European lilac naturalized in North America having heart-shaped ovate leaves and large panicles of highly fragrant lilac or white flowers
+30784,common_limpet Patella_vulgata,marine limpet
+30785,common_logarithm,a logarithm to the base 10
+30786,common_louse Pediculus_humanus,head or body louse
+30787,common_lynx Lynx_lynx,of northern Eurasia
+30788,common_mackerel shiner Scomber_scombrus,important food fish of the northern Atlantic and Mediterranean; its body is greenish-blue with dark bars and small if any scales
+30789,common_madia common_tarweed Madia_elegans,California annual having red-brown spots near the base of its yellow flower rays
+30790,common_maidenhair Venushair Venus'-hair_fern southern_maidenhair Venus_maidenhair Adiantum_capillus-veneris,delicate maidenhair fern with slender shining black leaf stalks; cosmopolitan
+30791,common_mallow Malva_neglecta,annual Old World plant with clusters of pink or white flowers; naturalized in United States
+30792,common_marigold pot_marigold ruddles Scotch_marigold Calendula_officinalis,the common European annual marigold
+30793,common_matrimony_vine Duke_of_Argyll's_tea_tree Lycium_barbarum Lycium_halimifolium,deciduous erect or spreading shrub with spiny branches and violet-purple flowers followed by orange-red berries; southeastern Europe to China
+30794,common_measure common_meter,the usual (iambic) meter of a ballad
+30795,common_milkwort gand_flower Polygala_vulgaris,small European perennial with numerous branches having racemes of blue, pink or white flowers; formerly reputed to promote human lactation
+30796,common_moonseed Canada_moonseed yellow_parilla Menispermum_canadense,a woody vine of eastern North America having large oval leaves and small white flowers and purple to blue-black fruits
+30797,common_morel Morchella_esculenta sponge_mushroom sponge_morel,an edible and choice morel with a globular to elongate head with an irregular pattern of pits and ridges
+30798,common_morning_glory Ipomoea_purpurea,pantropical annual climbing herb with funnel-shaped blue, purple, pink or white flowers
+30799,common_morning_glory Ipomoea_tricolor,annual or perennial climbing herb of Central America having sky-blue flowers; most commonly cultivated morning glory
+30800,common_mosquito Culex_pipiens,common house mosquito
+30801,common_mugwort Artemisia_vulgaris,European tufted aromatic perennial herb having hairy red or purple stems and dark green leaves downy white below and red-brown florets
+30802,common_mullein great_mullein Aaron's_rod flannel_mullein woolly_mullein torch Verbascum_thapsus,tall-stalked very woolly mullein with densely packed yellow flowers; ancient Greeks and Romans dipped the stalks in tallow for funeral torches
+30803,common_multiple,an integer that is a multiple of two or more other integers
+30804,common_murre Uria_aalge,the most frequent variety of murre
+30805,common_myrtle Myrtus_communis,European shrub with white or rosy flowers followed by black berries
+30806,common_newt Triturus_vulgaris,small semiaquatic salamander
+30807,common_noun,a noun that denotes any or all members of a class
+30808,common_nutcracker Nucifraga_caryocatactes,Old World nutcracker
+30809,common_oak English_oak pedunculate_oak Quercus_robur,medium to large deciduous European oak having smooth leaves with rounded lobes; yields hard strong light-colored wood
+30810,common_opossum Didelphis_virginiana Didelphis_marsupialis,omnivorous opossum of the eastern United States; noted for feigning death when in danger; esteemed as food in some areas; considered same species as the crab-eating opossum of South America
+30811,common_osier hemp_willow velvet_osier Salix_viminalis,willow with long flexible twigs used in basketry
+30812,common_pitcher_plant huntsman's_cup huntsman's_cups Sarracenia_purpurea,perennial bog herb having dark red flowers and decumbent broadly winged pitchers forming a rosette; of northeastern North America and naturalized in Europe especially Ireland
+30813,common_plum Prunus_domestica,any of various widely distributed plums grown in the cooler temperate areas
+30814,common_polypody adder's_fern wall_fern golden_maidenhair golden_polypody sweet_fern Polypodium_vulgare,mat-forming lithophytic or terrestrial fern with creeping rootstocks and large pinnatifid fronds found throughout North America and Europe and Africa and east Asia
+30815,common_pond-skater Gerris_lacustris,a variety of water strider
+30816,common_privet Ligustrum_vulgare,deciduous semi-evergreen shrub used for hedges
+30817,common_purslane pussley pussly verdolagas Portulaca_oleracea,weedy trailing mat-forming herb with bright yellow flowers cultivated for its edible mildly acid leaves eaten raw or cooked especially in Indian and Greek and Middle Eastern cuisine; cosmopolitan
+30818,common_raccoon common_racoon coon ringtail Procyon_lotor,North American raccoon
+30819,common_ragweed Ambrosia_artemisiifolia,annual weed with finely divided foliage and spikes of green flowers; common in North America; introduced elsewhere accidentally
+30820,common_room,a sitting room (usually at school or university)
+30821,common_roundworm Ascaris_lumbricoides,intestinal parasite of humans and pigs
+30822,common_sage ramona Salvia_officinalis,shrubby plant with aromatic greyish-green leaves used as a cooking herb
+30823,common_scoter Melanitta_nigra,a variety of scoter
+30824,common_sense good_sense gumption horse_sense sense mother_wit,sound practical judgment; "Common sense is not so common"; "he hasn't got the sense God gave little green apples"; "fortunately she had the good sense to run away"
+30825,common_shiner silversides Notropis_cornutus,the common North American shiner
+30826,common_shrew Sorex_araneus,common American shrew
+30827,common_sickle_pine Falcatifolium_falciforme,small tropical rain forest tree of Indonesia and Malaysia
+30828,common_snapping_turtle snapper Chelydra_serpentina,large-headed turtle with powerful hooked jaws found in or near water; prone to bite
+30829,common_speedwell gypsyweed Veronica_officinalis,common hairy European perennial with pale blue or lilac flowers in axillary racemes
+30830,common_spindle_tree Euonymus_europaeus,small erect deciduous shrub having tough white wood and cathartic bark and fruit
+30831,common_spoonbill Platalea_leucorodia,pure white crested spoonbill of southern Eurasia and northeastern Africa
+30832,common_spotted_orchid Dactylorhiza_fuchsii Dactylorhiza_maculata_fuchsii,European orchid having lanceolate leaves spotted purple and pink to white or mauve flowers spotted or lined deep red or purple
+30833,common_staghorn_fern elkhorn_fern Platycerium_bifurcatum Platycerium_alcicorne,commonly cultivated fern of Australia and southeastern Asia and Polynesia
+30834,common_starling Sturnus_vulgaris,gregarious bird having plumage with dark metallic gloss; builds nests around dwellings and other structures; naturalized worldwide
+30835,common_stinkhorn Phallus_impudicus,a common fungus formerly used in preparing a salve for rheumatism
+30836,common_stock common_shares ordinary_shares,stock other than preferred stock; entitles the owner to a share of the corporation's profits and a share of the voting power in shareholder elections; "over 40 million Americans invest in common stocks"
+30837,common_stock_equivalent,preferred stock or convertible bonds or warrants that can be converted into common stock
+30838,common_sunflower mirasol Helianthus_annuus,annual sunflower grown for silage and for its seeds which are a source of oil; common throughout United States and much of North America
+30839,common_teasel Dipsacus_fullonum,teasel with lilac flowers native to Old World but naturalized in North America; dried flower heads used to raise a nap on woolen cloth
+30840,common_thyme Thymus_vulgaris,common aromatic garden perennial native to the western Mediterranean; used in seasonings and formerly as medicine
+30841,common_time four-four_time quadruple_time common_measure,a time signature indicating four beats to the bar
+30842,common_tobacco Nicotiana_tabacum,tall erect South American herb with large ovate leaves and terminal clusters of tubular white or pink flowers; cultivated for its leaves
+30843,common_touch,the property of appealing to people in general (usually by appearing to have qualities in common with them)
+30844,common_unicorn_plant devil's_claw common_devil's_claw elephant-tusk proboscis_flower ram's_horn Proboscidea_louisianica,annual of southern United States to Mexico having large whitish or yellowish flowers mottled with purple and a long curving beak
+30845,common_valerian garden_heliotrope Valeriana_officinalis,tall rhizomatous plant having very fragrant flowers and rhizomes used medicinally
+30846,common_vetchling meadow_pea yellow_vetchling Lathyrus_pratensis,scrambling perennial Eurasian wild pea having yellowish flowers and compressed seed pods; cultivated for forage
+30847,common_wallaby Macropus_agiles,a small wallaby having a height of 30 inches
+30848,common_wart,a benign growth (often with a rough surface)
+30849,common_wasp Vespula_vulgaris,a variety of vespid wasp
+30850,common_water_snake banded_water_snake Natrix_sipedon Nerodia_sipedon,in some classifications placed in the genus Nerodia; western United States snake that seldom ventures far from water
+30851,common_watercress Rorippa_nasturtium-aquaticum Nasturtium_officinale,perennial Eurasian cress growing chiefly in springs or running water having fleshy pungent leaves used in salads or as a potherb or garnish; introduced in North America and elsewhere
+30852,common_wheat Triticum_aestivum,widely cultivated in temperate regions in many varieties for its commercially important grain
+30853,common_white_dogwood eastern_flowering_dogwood Cornus_florida,deciduous tree; celebrated for its large white or pink bracts and stunning autumn color that is followed by red berries
+30854,common_winterberry_holly,a holly shrub
+30855,common_wolffia Wolffia_columbiana,smallest flowering plants known; of the Americas
+30856,common_wood_sorrel cuckoo_bread shamrock Oxalis_acetosella,Eurasian plant with heart-shaped trifoliate leaves and white purple-veined flowers
+30857,common_wormwood absinthe old_man lad's_love Artemisia_absinthium,aromatic herb of temperate Eurasia and North Africa having a bitter taste used in making the liqueur absinthe
+30858,common_year 365_days,a year that is not a leap year
+30859,common_yellowthroat Maryland_yellowthroat Geothlypis_trichas,an American warbler
+30860,common_yellowwood bastard_yellowwood Afrocarpus_falcata,medium-sized tree of South Africa
+30861,common_zebra Burchell's_zebra Equus_Burchelli,of the plains of central and eastern Africa
+30862,commonage,property held in common
+30863,commonality commonness,sharing of common attributes
+30864,commonalty commonality commons,a class composed of persons lacking clerical or noble rank
+30865,commoner common_man common_person,a person who holds no title
+30866,commonness commonplaceness everydayness,ordinariness as a consequence of being frequent and commonplace
+30867,commonness expectedness,the state of being that is commonly observed
+30868,commonplace_book,a notebook in which you enter memorabilia
+30869,commons common_land,a pasture subject to common use
+30870,commonwealth,the official name of some states in the United States (Massachusetts and Pennsylvania and Virginia and Kentucky) and associated territories (Puerto Rico)
+30871,commonwealth,a world organization of autonomous states that are united in allegiance to a central power but are not subordinate to it or to one another
+30872,commonwealth_country,any of the countries in the British Commonwealth
+30873,commotion din ruction ruckus rumpus tumult,the act of making a noisy disturbance
+30874,communalism,the practice of communal living and common ownership
+30875,communalism,loyalty and commitment to the interests of your own minority or ethnic group rather than to society as a whole
+30876,commune,the smallest administrative district of several European countries
+30877,commune,a body of people or families living together and sharing everything
+30878,communicable_disease,a disease that can be communicated from one person to another
+30879,communicant,a person entitled to receive Communion
+30880,communicating_artery arteria_communicans,any of three arteries in the brain that make up the circle of Willis
+30881,communication,a connection allowing access between persons or places; "how many lines of communication can there be among four people?"; "a secret passageway provided communication between the two rooms"
+30882,communication,something that is communicated by or to or between people or groups
+30883,communication communicating,the activity of communicating; the activity of conveying information; "they could not act without official communication from Moscow"
+30884,communication_system,a system for communicating
+30885,communication_system communication_equipment,facility consisting of the physical plants and equipment for disseminating information
+30886,communications communication_theory,the discipline that studies the principles of transmiting information and the methods by which it is delivered (as print or radio or television etc.); "communications is his major field of study"
+30887,communications_intelligence COMINT,technical and intelligence information derived from foreign communications by other than the intended recipients
+30888,communications_satellite,an artificial satellite that relays signals back to earth; moves in a geostationary orbit
+30889,communications_technology,the activity of designing and constructing and maintaining communication systems
+30890,communicativeness,the trait of being communicative
+30891,communicator,a person who communicates with others
+30892,communion,(Christianity) a group of Christians with a common religious faith who practice the same rites
+30893,communion sharing,sharing thoughts and feelings
+30894,communism,a form of socialism that abolishes private ownership
+30895,communism,a political theory favoring collectivism in a classless society
+30896,communist commie,a socialist who advocates communism
+30897,communist_economy,the managed economy of a communist state
+30898,community,common ownership; "they shared a community of possessions"
+30899,community,a group of nations having common interests; "they hoped to join the NATO community"
+30900,community,a group of people living in a particular local area; "the team is drawn from all parts of the community"
+30901,community,a group of people having a religion, ethnic, profession, or other particular characteristic in common; "he was well known throughout the Catholic community"; "the news spread rapidly through the medical community"; "they formed a community of scientists"
+30902,community biotic_community,(ecology) a group of interdependent organisms inhabiting the same region and interacting with each other
+30903,community community_of_interests,agreement as to goals; "the preachers and the bootleggers found they had a community of interests"
+30904,community_center civic_center,a center where the members of a community can gather for social or cultural activities
+30905,community_chest,a charity supported by individual subscriptions; defrays the demands on a community for social welfare
+30906,community_college,a nonresidential junior college offering a curriculum fitted to the needs of the community
+30907,community_of_scholars,the body of individuals holding advanced academic degrees
+30908,community_property,property and income belonging jointly to a married couple
+30909,community_service,an unpaid service for the benefit of the public that is performed by lawbreakers as part (or all) of their sentence
+30910,community_service public_service,a service that is performed for the benefit of the public or its institutions
+30911,communization communisation,a change from private property to public property owned by the community
+30912,communization communisation,the organization of a nation of the basis of communism
+30913,commutability transmutability,the quality of being commutable
+30914,commutation,a warrant substituting a lesser punishment for a greater one
+30915,commutation commuting,the travel of a commuter
+30916,commutation re-sentencing,(law) the reduction in severity of a punishment imposed by law
+30917,commutation_ticket season_ticket,a ticket good for several trips or to attend a season of entertainments; sold at a reduced rate
+30918,commutator,switch for reversing the direction of an electric current
+30919,commute,a regular journey of some distance to and from your place of work; "there is standing room only on the high-speed commute"
+30920,commuter,someone who travels regularly from home in a suburb to work in a city
+30921,commuter commuter_train,a passenger train that is ridden primarily by passengers who travel regularly from one place to another
+30922,commuter_traffic,traffic created by people going to or returning from work
+30923,compact compact_car,a small and economical car
+30924,compact powder_compact,a small cosmetics case with a mirror; to be carried in a woman's purse
+30925,compact-disk_burner CD_burner,recording equipment for making compact disks
+30926,compact_disk compact_disc CD,a digitally encoded recording on an optical disk that is smaller than a phonograph record; played back by a laser
+30927,compaction compression concretion densification,an increase in the density of something
+30928,compactness,the consistency of a compact solid
+30929,companion,one paid to accompany or assist or live with another
+30930,companion comrade fellow familiar associate,a friend who is frequently in the company of another; "drinking companions"; "comrades in arms"
+30931,companion fellow_traveler fellow_traveller,a traveler who accompanies you
+30932,companionability companionableness,suitability to be a companion
+30933,companionway,a stairway or ladder that leads from one deck to another on a ship
+30934,company,small military unit; usually two or three platoons
+30935,company,a social gathering of guests or companions; "the house was filled with company when I arrived"
+30936,company,a unit of firefighters including their equipment; "a hook-and-ladder company"
+30937,company,an institution created to conduct business; "he only invests in large well-established companies"; "he started the company in his garage"
+30938,company companionship fellowship society,the state of being with someone; "he missed their company"; "he enjoyed the society of his friends"
+30939,company troupe,organization of performers and associated personnel (especially theatrical); "the traveling company all stayed at the same hotel"
+30940,company_man,an employee whose first loyalty is to the company rather than to fellow workers
+30941,company_name,the name by which a corporation is identified
+30942,company_operator,an operator who works for a company
+30943,company_union,a union of workers for a single company; a union not affiliated with a larger union
+30944,comparative comparative_degree,the comparative form of an adjective or adverb; "`faster' is the comparative of the adjective `fast'"; "`less famous' is the comparative degree of the adjective `famous'"; "`more surely' is the comparative of the adverb `surely'"
+30945,comparative_anatomist,anatomist who compares the anatomy of different animals
+30946,comparative_anatomy,the study of anatomical features of animals of different species
+30947,comparative_literature,study of literary works from different cultures (often in translation)
+30948,comparative_negligence,(law) negligence allocated between the plaintiff and the defendant with a corresponding reduction in damages paid to the plaintiff
+30949,comparative_psychology animal_psychology,the branch of psychology concerned with the behavior of animals
+30950,comparison,relation based on similarities and differences
+30951,comparison compare equivalence comparability,qualities that are comparable; "no comparison between the two books"; "beyond compare"
+30952,comparison comparing,the act of examining resemblances; "they made a comparison of noise levels"; "the fractions selected for comparison must require pupils to consider both numerator and denominator"
+30953,compartment,a space into which an area is subdivided
+30954,compartment,a partitioned section, chamber, or separate room within a larger enclosed area
+30955,compartment_pressure,the air pressure maintained in an air-tight compartment (as in an aircraft)
+30956,compartmentalization compartmentalisation,a mild state of dissociation
+30957,compass,drafting instrument used for drawing circles
+30958,compass,navigational instrument for finding directions
+30959,compass range reach grasp,the limit of capability; "within the compass of education"
+30960,compass_card mariner's_compass,compass in the form of a card that rotates so that 0 degrees or North points to magnetic north
+30961,compass_plant compass_flower,any of several plants having leaves so arranged on the axis as to indicate the cardinal points of the compass
+30962,compass_point point,any of 32 horizontal directions indicated on the card of a compass; "he checked the point on his compass"
+30963,compass_saw,a handsaw with a narrow triangular blade for cutting curves
+30964,compassion compassionateness,a deep awareness of and sympathy for another's suffering
+30965,compassion pity,the humane quality of understanding the suffering of others and wanting to do something about it
+30966,compassionate_leave,(military) leave granted in an emergency such as family sickness or death
+30967,compatibility,a feeling of sympathetic understanding
+30968,compatibility,capability of existing or performing in harmonious or congenial combination
+30969,compatible_software,application software programs that share common conventions so they can be utilized together
+30970,compatible_software,software that can run on different computers without modification
+30971,compatriot,a person from your own country
+30972,compendium,a concise but comprehensive summary of a larger work
+30973,compensating_balance offsetting_balance,a minimum credit balance that a bank may require a borrower to keep on deposit as a condition for granting a loan; a common requirement for establishing a line of credit at a bank; "the compensating balance increases the effective interest rate to the bank since the net amount loaned is reduced but the interest paid is unchanged"
+30974,compensation,(psychiatry) a defense mechanism that conceals your undesirable shortcomings by exaggerating desirable behaviors
+30975,compensation,something (such as money) given or received as payment or reparation (as for a service or loss or injury)
+30976,compensatory_time,time off that is granted to a worker as compensation for working overtime
+30977,compere,British term for someone who introduces television acts or cabarets etc
+30978,competence competency,the quality of being adequately or well qualified physically and intellectually
+30979,competence_hearing,a hearing to determine legal capacity (to determine whether the defendant can understand the charges and cooperate with a lawyer in preparing a defense)
+30980,competition,a business relation in which two parties compete to gain customers; "business competition can be fiendish at times"
+30981,competition contention rivalry,the act of competing as for profit or a prize; "the teams were in fierce contention for first place"
+30982,competitiveness fight,an aggressive willingness to compete; "the team was full of fight"
+30983,compilation compiling,the act of compiling (as into a single book or file or list); "the job of compiling the inventory took several hours"
+30984,compilation digest,something that is compiled (as into a single book or file)
+30985,compiler,a person who compiles information (as for reference purposes)
+30986,compiler compiling_program,(computer science) a program that decodes instructions written in a higher order language and produces an assembly language program
+30987,complacency complacence self-complacency self-satisfaction,the feeling you have when you are satisfied with yourself; "his complacency was absolutely disgusting"
+30988,complaint,(formerly) a loud cry (or repeated cries) of pain or rage or sorrow
+30989,complaint,an expression of grievance or resentment
+30990,complaint,(civil law) the first pleading of the plaintiff setting out the facts on which the claim for relief is based
+30991,complaisance compliance compliancy obligingness deference,a disposition or tendency to yield to the will of others
+30992,complement,one of a series of enzymes in the blood serum that are part of the immune response
+30993,complement,a complete number or quantity; "a full complement"
+30994,complement,a word or phrase used to complete a grammatical construction
+30995,complement,either of two parts that mutually complete each other
+30996,complement accompaniment,something added to complete or embellish or make perfect; "a fine wine is a perfect complement to the dinner"; "wild rice was served as an accompaniment to the main dish"
+30997,complement full_complement,number needed to make up a whole force; "a full complement of workers"
+30998,complement_fixation,an immune response in which an antigen-antibody combination inactivates a complement (so it is unavailable to participate in a second antigen-antibody combination)
+30999,complement_fixation_test,a blood test in which a sample of serum is exposed to a particular antigen and complement in order to determine whether or not antibodies to that particular antigen are present; used as a diagnostic test
+31000,complementarity,a relation between two opposite states or principles that together exhaust the possibilities
+31001,complementarity,the interrelation of reciprocity whereby one thing supplements or depends on the other; "the complementarity of the sexes"
+31002,complementary_DNA cDNA,single-stranded DNA that is complementary to messenger RNA or DNA that has been synthesized from messenger RNA by reverse transcriptase
+31003,complementary_angles,two angles whose sum is a right angle
+31004,complementary_color complementary,either one of two chromatic colors that when mixed together give white (in the case of lights) or grey (in the case of pigments); "yellow and blue are complementaries"
+31005,complementary_distribution complementation,(linguistics) a distribution of related speech sounds or forms in such a way that they only appear in different contexts
+31006,complementary_medicine,the practice of medicine that combines traditional medicine with alternative medicine
+31007,complementation,the grammatical relation of a word or phrase to a predicate
+31008,complete_blood_count CBC blood_profile,counting the number of white and red blood cells and the number of platelets in 1 cubic millimeter of blood
+31009,complete_fracture,break involving the entire width of the bone
+31010,completeness,the state of being complete and entire; having everything that is needed
+31011,completeness,(logic) an attribute of a logical system that is so constituted that a contradiction arises if any proposition is introduced that cannot be derived from the axioms of the system
+31012,completion culmination closing windup mop_up,a concluding action
+31013,completion pass_completion,(American football) a successful forward pass in football
+31014,complex,(psychoanalysis) a combination of emotions and impulses that have been rejected from awareness but still influence a person's behavior
+31015,complex composite,a conceptual whole made up of complicated and related parts; "the complex of shopping malls, houses, and roads created a new town"
+31016,complex coordination_compound,a compound described in terms of the central atom to which other atoms are bound or coordinated
+31017,complex_absence,an absence seizure accompanied by other abnormalities (atonia or automatisms or vasomotor changes)
+31018,complex_conjugate,either of two complex numbers whose real parts are identical and whose imaginary parts differ only in sign
+31019,complex_fraction compound_fraction,a fraction with fractions in the numerator or denominator
+31020,complex_instruction_set_computing complex_instruction_set_computer CISC,(computer science) a kind of computer architecture that has a large number of instructions hard coded into the CPU chip
+31021,complex_number complex_quantity imaginary_number imaginary,(mathematics) a number of the form a+bi where a and b are real numbers and i is the square root of -1
+31022,complex_plane,a geometric representation of the complex numbers established by the real axis and the orthogonal imaginary axis; it can be thought of as a modified Cartesian plane, with the real part of a complex number represented by a displacement along the x-axis, and the imaginary part by a displacement along the y-axis
+31023,complex_sentence,a sentence composed of at least one main clause and one subordinate clause
+31024,complexifier,someone makes things complex
+31025,complexion,a combination that results from coupling or interlinking; "diphthongs are complexions of vowels"
+31026,complexion,a point of view or general attitude or inclination; "he altered the complexion of his times"; "a liberal political complexion"
+31027,complexion,texture and appearance of the skin of the face
+31028,complexion,(obsolete) a combination of elements (of dryness and warmth or of the four humors) that was once believed to determine a person's health and temperament
+31029,complexion skin_color skin_colour,the coloring of a person's face
+31030,complexity complexness,the quality of being intricate and compounded; "he enjoyed the complexity of modern computers"
+31031,complicatedness complication knottiness tortuousness,puzzling complexity
+31032,complication,any disease or disorder that occurs during the course of (or because of) another disease; "bed sores are a common complication in cases of paralysis"
+31033,complication,a situation or condition that is complex or confused; "her coming was a serious complication"
+31034,complication,the act or process of complicating
+31035,complication ramification,a development that complicates a situation; "the court's decision had many unforeseen ramifications"
+31036,complicity,guilt as an accomplice in a crime or offense
+31037,compliment,a remark (or act) expressing praise and admiration
+31038,compline complin,last of the seven canonical hours just before retiring
+31039,component constituent element,an artifact that is one of the individual parts of which a composite entity is made up; especially a part that can be separated from or attached to a system; "spare components for cars"; "a component or constituent element of a system"
+31040,component constituent element factor ingredient,an abstract part of something; "jealousy was a component of his character"; "two constituents of a musical composition are melody and harmony"; "the grammatical elements of a sentence"; "a key factor in her success"; "humor: an effective ingredient of a speech"
+31041,composer,someone who composes music as a profession
+31042,composing composition,musical creation
+31043,composite composite_plant,considered the most highly evolved dicotyledonous plants, characterized by florets arranged in dense heads that resemble single flowers
+31044,composite_material,strong lightweight material developed in the laboratory; fibers of more than one kind are bonded together chemically
+31045,composite_number,an integer that is divisible without remainder by at least one positive integer other than itself and one
+31046,compositeness,the property of being a composite number
+31047,composition,a mixture of ingredients
+31048,composition,something that is created by arranging several things to form a unified whole; "he envied the composition of their faculty"
+31049,composition composing,the spatial property resulting from the arrangement of parts in relation to each other and to the whole; "harmonious composition is essential in a serious work of art"
+31050,composition paper report theme,an essay (especially one written as an assignment); "he got an A on his composition"
+31051,compositor typesetter setter typographer,one who sets written material into type
+31052,compost,a mixture of decaying vegetation and manure; used as a fertilizer
+31053,compost_heap compost_pile,a heap of manure and vegetation and other organic residues that are decaying to become compost
+31054,composure calm calmness equanimity,steadiness of mind under stress; "he accepted their problems with composure and she with equanimity"
+31055,compote fruit_compote,dessert of stewed or baked fruit
+31056,compound,a whole formed by a union of two or more elements or parts
+31057,compound,an enclosure of residences and other building (especially in the Orient)
+31058,compound chemical_compound,(chemistry) a substance formed by chemical union of two or more elements or ingredients in definite proportion by weight
+31059,compound_eye,in insects and some crustaceans: composed of many light-sensitive elements each forming a portion of an image
+31060,compound_fracture open_fracture,bone fracture associated with lacerated soft tissue or an open wound
+31061,compound_interest,interest calculated on both the principal and the accrued interest
+31062,compound_leaf,a leaf composed of a number of leaflets on a common stalk
+31063,compound_lens,a lens system consisting of two or more lenses on the same axis
+31064,compound_lever,a pair of levers hinged at the fulcrum
+31065,compound_microscope,light microscope that has two converging lens systems: the objective and the eyepiece
+31066,compound_morphology,the part of grammar that deals with combinations of simple words into compound words
+31067,compound_number,a quantity expressed in two different units; "one hour and ten minutes"
+31068,compound_pistil,consists of two or more fused carpels
+31069,compound_sentence,a sentence composed of at least two coordinate independent clauses
+31070,comprehensibility understandability,the quality of comprehensible language or thought
+31071,comprehension,an ability to understand the meaning or importance of something (or the knowledge acquired as a result); "how you can do that is beyond my comprehension"; "he was famous for his comprehension of American literature"
+31072,comprehensive_examination comprehensive comp,an intensive examination testing a student's proficiency in some special field of knowledge; "she took her comps in English literature"
+31073,comprehensive_school composite_school,a large British or Canadian secondary school for children of all abilities
+31074,comprehensiveness fullness,completeness over a broad scope
+31075,compress,a cloth pad or dressing (with or without medication) applied firmly to some part of the body (to relieve discomfort or reduce fever)
+31076,compressed_air,air at a pressure greater than that of the atmosphere; "compressed air is often used to power machines"
+31077,compressed_gas,gas at a high pressure that can be used as a propellant
+31078,compressibility squeezability sponginess,the property of being able to occupy less space
+31079,compression,encoding information while reducing the bandwidth or bits required
+31080,compression compressing,applying pressure
+31081,compression condensation contraction,the process or result of becoming smaller or pressed together; "the contraction of a gas on cooling"
+31082,compression_bandage tourniquet,bandage that stops the flow of blood from an artery by applying pressure
+31083,compression_fracture,fracture in which the bone collapses (especially in short bones such as vertebrae)
+31084,compressor,a mechanical device that compresses gasses
+31085,compromise,an accommodation in which both sides make concessions; "the newly elected congressmen rejected a compromise because they considered it `business as usual'"
+31086,compromise via_media,a middle way between two extremes
+31087,compromise_verdict,a verdict resulting from improper compromises between jurors on material issues
+31088,compromiser,a negotiator willing to compromise; "Henry Clay was known as the Great Compromiser"
+31089,compsognathus,very small bipedal carnivorous dinosaur of the late Jurassic in Bavaria
+31090,comptrollership,the position of comptroller
+31091,compulsion coercion,using force to cause something to occur; "though pressed into rugby under compulsion I began to enjoy the game"; "they didn't have to use coercion"
+31092,compulsion irresistible_impulse,an urge to do or say something that might be better left undone or unsaid; "he felt a compulsion to babble on about the accident"
+31093,compulsion obsession,an irrational motive for performing trivial or repetitive actions, even against your will; "her compulsion to wash her hands repeatedly"
+31094,compulsive,a person with a compulsive disposition; someone who feels compelled to do certain things
+31095,compulsiveness compulsivity,the trait of acting compulsively
+31096,compulsory_process,the right of a defendant to have a court use its subpoena power to compel the appearance of material witnesses before the court
+31097,compunction remorse self-reproach,a feeling of deep regret (usually for some misdeed)
+31098,computational_linguist,someone trained in computer science and linguistics who uses computers for natural language processing
+31099,computational_linguistics,the use of computers for linguistic research and applications
+31100,computer computing_machine computing_device data_processor electronic_computer information_processing_system,a machine for performing calculations automatically
+31101,computer-aided_design CAD,software used in art and architecture and engineering and manufacturing to assist in precision drawing
+31102,computer_accessory,an accessory for a computer; "when you add in all the computer accessories you are going to need the computer gets pretty expensive"
+31103,computer_architecture,the art of assembling logical elements into a computing device; the specification of the relation between parts of a computer system
+31104,computer_architecture architecture,(computer science) the structure and organization of a computer's hardware or system software; "the architecture of a computer's system software"
+31105,computer_business,a business that manufactures and sells computers
+31106,computer_circuit,a circuit that is part of a computer
+31107,computer_dealer,a firm that sells and buys computers
+31108,computer_expert computer_guru,an authority on computers and computing
+31109,computer_file,(computer science) a file maintained in computer-readable form
+31110,computer_game video_game,a game played against a computer
+31111,computer_graphics,the pictorial representation and manipulation of data by a computer
+31112,computer_industry,the manufacturers of computers considered collectively
+31113,computer_keyboard keypad,a keyboard that is a data input device for computers; arrangement of keys is modelled after the typewriter keyboard
+31114,computer_language computer-oriented_language machine_language machine-oriented_language,a programming language designed for use on a specific class of computers
+31115,computer_memory_unit,a unit for measuring computer memory
+31116,computer_monitor,a device that displays signals on a computer screen
+31117,computer_network,(computer science) a network of computers
+31118,computer_operation machine_operation,an elementary operation that a computer is designed and built to perform
+31119,computer_paper,paper folded to permit continuous printing controlled by a computer
+31120,computer_science computing,the branch of engineering science that studies (with the aid of computers) computable processes and structures
+31121,computer_scientist,a scientist who specializes in the theory of computation and the design of computers
+31122,computer_screen computer_display,a screen used to display the output of a computer to the user
+31123,computer_store,a store that sells computers to the small businessperson or personal user
+31124,computer_system computing_system automatic_data_processing_system ADP_system ADPS,a system of one or more computers and associated software with common storage
+31125,computer_technology,the activity of designing and constructing and programming computers
+31126,computer_user,a person who uses computers for work or entertainment or communication or business
+31127,computerization cybernation,the control of processes by computer
+31128,computerized_axial_tomography_scanner CAT_scanner,a tomograph that constructs a 3-D model of an object by combining parallel planes
+31129,computerized_tomography computed_tomography CT computerized_axial_tomography computed_axial_tomography CAT,a method of examining body organs by scanning them with X rays and using a computer to construct a series of cross-sectional scans along a single axis
+31130,con,an argument opposed to a proposal
+31131,conacaste elephant's_ear Enterolobium_cyclocarpa,tropical South American tree having a wide-spreading crown of bipinnate leaves and coiled ear-shaped fruits; grown for shade and ornament as well as valuable timber
+31132,concatenation,the state of being linked together as in a chain; union in a linked series
+31133,concatenation,the linking together of a consecutive series of symbols or events or ideas etc; "it was caused by an improbable concatenation of circumstances"
+31134,concatenation,the act of linking together as in a series or chain
+31135,concave_polygon,a polygon such that there is a straight line that cuts it in four or more points
+31136,concave_polyhedron,a polyhedron some of whose plane sections are concave polygons
+31137,concave_shape concavity incurvation incurvature,a shape that curves or bends inward
+31138,concavity concaveness,the property possessed by a concave shape
+31139,concealment concealing hiding,the activity of keeping something secret
+31140,conceit,an elaborate poetic image or a far-fetched comparison of very dissimilar things
+31141,conceit,a witty or ingenious turn of phrase; "he could always come up with some inspired off-the-wall conceit"
+31142,conceit,an artistic device or effect; "the architect's brilliant conceit was to build the house around the tree"
+31143,conceit conceitedness vanity,the trait of being unduly vain and conceited; false pride
+31144,conceivableness conceivability,the state of being conceivable
+31145,concentrate,a concentrated form of a foodstuff; the bulk is reduced by removing water
+31146,concentrate,a concentrated example of something; "the concentrate of contemporary despair"
+31147,concentrated_fire massed_fire,fire from two or more weapons directed at a single target or area (as fire by batteries of two or more warships)
+31148,concentration,increase in density
+31149,concentration,the strength of a solution; number of molecules of a substance in a given volume
+31150,concentration,bringing together military forces
+31151,concentration,strengthening the concentration (as of a solute in a mixture) by removing diluting material
+31152,concentration density denseness tightness compactness,the spatial property of being crowded together
+31153,concentration engrossment absorption immersion,complete attention; intense mental effort
+31154,concentration_camp,a situation characterized by crowding and extremely harsh conditions
+31155,concentration_camp stockade,a penal camp where political prisoners or prisoners of war are confined (usually under harsh conditions)
+31156,concentration_gradient,a gradient in concentration of a solute as a function of distance through a solution; "the movement of a solute down its concentration gradient is called diffusion"
+31157,concentricity,the quality of having the same center (as circles inside one another)
+31158,concept conception construct,an abstract or general idea inferred or derived from specific instances
+31159,concept_album,an album whose recordings are unified by some theme (instrumental or lyrical or narrative or compositional)
+31160,conception,the act of becoming pregnant; fertilization of an ovum by a spermatozoon
+31161,conceptualism,the doctrine that the application of a general term to various objects indicates the existence of a mental entity that mediates the application
+31162,conceptualization conceptualisation conceptuality,an elaborated concept
+31163,conceptualization conceptualisation formulation,inventing or contriving an idea or explanation and formulating it mentally
+31164,concern,a feeling of sympathy for someone or something; "She felt strong concern for those less fortunate"
+31165,concern,something that interests you because it is important or affects you; "the safety of the ship is the captain's concern"
+31166,concern care fear,an anxious feeling; "care had aged him"; "they hushed it up out of fear of public reaction"
+31167,concern worry headache vexation,something or someone that causes anxiety; a source of unhappiness; "New York traffic is a constant concern"; "it's a major worry"
+31168,concert,a performance of music by players or singers not involving theatrical staging
+31169,concert-goer music_lover,someone who attends concerts
+31170,concert_band military_band,a group of musicians playing brass and woodwind and percussion instruments
+31171,concert_grand concert_piano,a grand piano suitable for concert performances
+31172,concert_hall,a hall where concerts are given
+31173,concert_pitch philharmonic_pitch international_pitch,the pitch used to tune instruments for concert performances; usually assigns 440 Hz to the A above middle C
+31174,concertina,coiled barbed wire used as an obstacle
+31175,concertina,free-reed instrument played like an accordion by pushing its ends together to force air through the reeds
+31176,concertinist,a person who plays the concertina
+31177,concerto,a composition for orchestra and a soloist
+31178,concerto_grosso,a baroque composition for orchestra and a group of solo instruments
+31179,concession,a point conceded or yielded; "they won all the concessions they asked for"
+31180,concession conceding yielding,the act of conceding or yielding
+31181,concession grant,a contract granting the right to operate a subsidiary business; "he got the beer concession at the ball park"
+31182,concessionaire concessioner,someone who holds or operates a concession
+31183,conch,any of various edible tropical marine gastropods of the genus Strombus having a brightly-colored spiral shell with large outer lip
+31184,concha,(anatomy) a structure that resembles a shell in shape
+31185,conchfish Astropogon_stellatus,found in West Indies; lives in mantle cavity of a living conch
+31186,conchologist,a collector and student of mollusc shells
+31187,conchology shell_collecting,the collection and study of mollusc shells
+31188,concierge,a French caretaker of apartments or a hotel; lives on the premises and oversees people entering and leaving and handles mail and acts as janitor or porter
+31189,conciliation,the state of manifesting goodwill and cooperation after being reconciled; "there was a brief period of conciliation but the fighting soon resumed"
+31190,conciliation,any of various forms of mediation whereby disputes may be settled short of arbitration
+31191,conciliator make-peace pacifier peacemaker reconciler,someone who tries to bring peace
+31192,conciseness concision pithiness succinctness,terseness and economy in writing and speaking achieved by expressing a great deal in just a few words
+31193,conclave,a confidential or secret meeting
+31194,conclusion,a final settlement; "the conclusion of a business deal"; "the conclusion of the peace treaty"
+31195,conclusion,an intuitive assumption; "jump to a conclusion"
+31196,conclusion end close closing ending,the last section of a communication; "in conclusion I want to say..."
+31197,conclusion ratiocination,the proposition arrived at by logical reasoning (such as the proposition that must follow from the major and minor premises of a syllogism)
+31198,concoction,an occurrence of an unusual mixture; "it suddenly spewed out a thick green concoction"
+31199,concoction,the invention of a scheme or story to suit some purpose; "his testimony was a concoction"; "she has no peer in the concoction of mystery stories"
+31200,concoction mixture intermixture,any foodstuff made by combining different ingredients; "he volunteered to taste her latest concoction"; "he drank a mixture of beer and lemonade"
+31201,concomitance,occurrence or existence together or in connection with one another
+31202,concordance,an index of all main words in a book along with their immediate contexts
+31203,concourse,a wide hallway in a building where people can walk
+31204,concourse confluence,a coming together of people
+31205,concrete,a strong hard building material composed of sand and gravel and cement and water
+31206,concrete_jungle,an area in a city with large modern buildings that is perceived as dangerous and unpleasant
+31207,concrete_mixer cement_mixer,a machine with a large revolving drum in which cement is mixed with other materials to make concrete
+31208,concreteness,the quality of being concrete (not abstract)
+31209,concretion,the formation of stonelike objects within a body organ (e.g., the kidneys)
+31210,concretism concrete_representation,a representation of an abstract idea in concrete terms
+31211,concubinage,cohabitation without being legally married
+31212,concubine courtesan doxy paramour,a woman who cohabits with an important man
+31213,concurrence coincidence conjunction co-occurrence,the temporal property of two things happening at the same time; "the interval determining the coincidence gate is adjustable"
+31214,concurrence concurrency,agreement of results or opinions
+31215,concurrence concurrency,acting together, as agents or circumstances or events
+31216,concurrence meeting_of_minds,a state of cooperation
+31217,concurrent_negligence,(law) negligence of two of more persons acting independently; the plaintiff may sue both together or separately
+31218,concurrent_operation,two or more operations performed at the same time (or within a give interval)
+31219,concurring_opinion,an opinion that agrees with the court's disposition of the case but is written to express a particular judge's reasoning
+31220,concussion,injury to the brain caused by a blow; usually resulting in loss of consciousness
+31221,concussion,any violent blow
+31222,condemnation,the condition of being strongly disapproved of; "he deserved nothing but condemnation"
+31223,condemnation,(law) the act of condemning (as land forfeited for public use) or judging to be unfit for use (as a food product or an unsafe building)
+31224,condensate,a product of condensation
+31225,condensation,the process of changing from a gaseous to a liquid or solid state
+31226,condensation,(psychoanalysis) an unconscious process whereby two ideas or images combine into a single symbol; especially in dreams
+31227,condensation abridgement abridgment capsule,a shortened version of a written work
+31228,condensation condensate,atmospheric moisture that has condensed because of cold
+31229,condensation_pump diffusion_pump,vacuum pump used to obtain a high vacuum
+31230,condensed_milk,sweetened evaporated milk
+31231,condenser,an apparatus that converts vapor into liquid
+31232,condenser,a hollow coil that condenses by abstracting heat
+31233,condenser optical_condenser,lens used to concentrate light on an object
+31234,condenser_microphone capacitor_microphone condenser_mike capacitor_mike,microphone consisting of a capacitor with one plate fixed and the other forming the diaphragm moved by sound waves
+31235,condensing condensation,the act of increasing the density of something
+31236,condescension condescendingness,affability to your inferiors and temporary disregard for differences of position or rank; "the queen's condescension was intended to make us feel comfortable"
+31237,condescension disdain patronage,a communication that indicates lack of respect by patronizing the recipient
+31238,condescension superciliousness disdainfulness,the trait of displaying arrogance by patronizing those considered inferior
+31239,condiment,a preparation (a sauce or relish or spice) to enhance flavor or enjoyment; "mustard and ketchup are condiments"
+31240,condition,an illness, disease, or other medical problem; "a heart condition"; "a skin condition"
+31241,condition,a mode of being or form of existence of a person or thing; "the human condition"
+31242,condition experimental_condition,the procedure that is varied in order to estimate a variable's effect by comparison with a control condition
+31243,condition precondition stipulation,an assumption on which rests the validity or effect of something else
+31244,condition shape,the state of (good) health (especially in the phrases `in condition' or `in shape' or `out of condition' or `out of shape')
+31245,condition status,a state at a particular time; "a condition (or state) of disrepair"; "the current status of the arms negotiations"
+31246,condition strings term,(usually plural) a statement of what is required as part of an agreement; "the contract set out the conditions of the lease"; "the terms of the treaty were generous"
+31247,conditional_contract,a contract whose performance depends on a fact or event that affects legal relations
+31248,conditional_probability contingent_probability,the probability that an event will occur given that one or more other events have occurred
+31249,conditional_reflex conditioned_reflex acquired_reflex conditional_reaction conditioned_reaction conditional_response conditioned_response,an acquired response that is under the control of (conditional on the occurrence of) a stimulus
+31250,conditional_sale,a security interest taken by the seller in return for credit
+31251,conditional_sale,a sale in which the buyer receives title to the property only upon the performance of some condition (usually the full payment of the purchase price)
+31252,conditionality,the state of being conditional
+31253,conditioned_avoidance conditioned_avoidance_response,a conditioned response that anticipates the occurrence of an aversive stimulus
+31254,conditioned_emotional_response CER conditioned_emotion,an emotional response that has been acquired by conditioning
+31255,conditioned_stimulus,the stimulus that is the occasion for a conditioned response
+31256,conditioner,a trainer of athletes
+31257,conditioner,a substance used in washing (clothing or hair) to make things softer
+31258,conditioner,exercise that conditions the body; "farm work can be a good conditioner"
+31259,conditioning,a learning process in which an organism's behavior becomes dependent on the occurrence of a stimulus in its environment
+31260,conditions,the prevailing context that influences the performance or the outcome of a process; "there were wide variations in the conditions of observation"
+31261,conditions,the set of circumstances that affect someone's welfare; "hazardous working conditions"; "harsh living conditions"
+31262,condolence commiseration,an expression of sympathy with another's grief; "they sent their condolences"
+31263,condom rubber safety safe prophylactic,contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse
+31264,condominium,housing consisting of a complex of dwelling units (as an apartment house) in which each unit is individually owned
+31265,condominium condo,one of the dwelling units in a condominium
+31266,condonation,a pardon by treating the offender as if the offense had not occurred
+31267,condor,the largest flying birds in the western hemisphere
+31268,conductance,a material's capacity to conduct electricity; measured as the reciprocal of electrical resistance
+31269,conductance_unit,a measure of a material's ability to conduct an electrical charge
+31270,conducting,the way of administering a business
+31271,conducting,the direction of an orchestra or choir; "he does not use a baton for conducting"
+31272,conduction conductivity,the transmission of heat or electricity or sound
+31273,conduction_anesthesia conduction_anaesthesia nerve_block_anesthesia nerve_block_anaesthesia block_anesthesia block_anaesthesia,anesthesia of an area supplied by a nerve; produced by an anesthetic agent applied to the nerve
+31274,conduction_aphasia associative_aphasia,aphasia in which the lesion is assumed to be in the association tracts connecting the various language centers in the brain; patient's have difficulty repeating a sentence just heard
+31275,conductive_hearing_loss conduction_deafness middle-ear_deafness,hearing loss due to problems with the bones of the middle ear
+31276,conductor,a substance that readily conducts e.g. electricity and heat
+31277,conductor,the person who collects fares on a public conveyance
+31278,conductor,a device designed to transmit electricity, heat, etc.
+31279,conductor music_director director,the person who leads a musical group
+31280,conductress,a woman conductor
+31281,conduit,a passage (a pipe or tunnel) through which water or electric wires can pass; "the computers were connected through a system of conduits"
+31282,condylar_process condyloid_process mandibular_condyle,the condyle of the ramus of the mandible that articulates with the skull
+31283,condyle,a round bump on a bone where it forms a joint with another bone
+31284,condylion,the craniometric point at the tip of the mandibular condyle
+31285,cone,any cone-shaped artifact
+31286,cone cone_cell retinal_cone,a visual receptor cell in the retina that is sensitive to bright light and to color
+31287,cone conoid cone_shape,a shape whose base is a circle and whose sides taper up to a point
+31288,cone strobilus strobile,cone-shaped mass of ovule- or spore-bearing scales or bracts
+31289,cone_clutch cone_friction_clutch,a friction clutch in which the frictional surfaces are cone-shaped
+31290,cone_pepper Capsicum_annuum_conoides,plant bearing erect pungent conical red or yellow or purple fruits; sometimes grown as an ornamental
+31291,coneflower,any of various plants of the genus Rudbeckia cultivated for their large usually yellow daisies with prominent central cones
+31292,coneflower,a wildflower of the genus Ratibida
+31293,coneflower,any of various perennials of the eastern United States having thick rough leaves and long-stalked showy flowers with drooping rays and a conelike center
+31294,conenose cone-nosed_bug conenose_bug big_bedbug kissing_bug,large bloodsucking bug
+31295,coney Epinephelus_fulvus,black-spotted usually dusky-colored fish with reddish fins
+31296,confabulation,(psychiatry) a plausible but imagined memory that fills in gaps in what is remembered
+31297,confection concoction,the act of creating something (a medicine or drink or soup etc.) by compounding or mixing a variety of components
+31298,confectioner candymaker,someone who makes candies and other sweets
+31299,confectionery,candy and other sweets considered collectively; "the business decided to concentrate on confectionery and soft drinks"
+31300,confectionery,the occupation and skills of a confectioner
+31301,confectionery confectionary candy_store,a confectioner's shop
+31302,confederate collaborator henchman partner_in_crime,someone who assists in a plot
+31303,confederation alliance,the act of forming an alliance or confederation
+31304,confederation confederacy federation,a union of political organizations
+31305,conferee,a person on whom something is bestowed; "six honorary were conferred; the conferees were..."
+31306,conferee,a member of a conference
+31307,conference,a prearranged meeting for consultation or exchange of information or discussion (especially one with a formal agenda)
+31308,conference group_discussion,a discussion among participants who have an agreed (serious) topic
+31309,conference_call,a telephone call in which more than two people participate
+31310,conference_center conference_house,a center where conferences can be conducted
+31311,conference_room,a room in which a conference can be held
+31312,conference_table council_table council_board,the table that conferees sit around as they hold a meeting
+31313,conferrer,someone who converses or confers (as in a conference)
+31314,conferva,any of various algae of the genus Tribonema; algae with branching filaments that form scum in still or stagnant fresh water
+31315,confervoid_algae,algae resembling confervae especially in having branching filaments
+31316,confession,an admission of misdeeds or faults
+31317,confession,a public declaration of your faith
+31318,confession,the document that spells out the belief system of a given church (especially the Reformation churches of the 16th century)
+31319,confession,a written document acknowledging an offense and signed by the guilty party
+31320,confession,(Roman Catholic Church) the act of a penitent disclosing his sinfulness before a priest in the sacrament of penance in the hope of absolution
+31321,confession_of_judgment confession_of_judgement cognovit_judgment cognovit_judgement,a judgment entered after a written confession by the debtor without the expense of ordinary legal proceedings
+31322,confessional,a booth where a priest sits to hear confessions
+31323,confessor,someone who confesses (discloses information damaging to themselves)
+31324,confessor,a priest who hears confession and gives absolution
+31325,confetti,small pieces or streamers of colored paper that are thrown around on festive occasions (as at a wedding)
+31326,confidant intimate,someone to whom private matters are confided
+31327,confidante,a female confidant
+31328,confidence,a state of confident hopefulness that events will be favorable; "public confidence in the economy"
+31329,confidence,a feeling of trust (in someone or something); "I have confidence in our team"; "confidence is always borrowed, never owned"
+31330,confidence,a secret that is confided or entrusted to another; "everyone trusted him with their confidences"; "the priest could not reveal her confidences"
+31331,confidence trust,a trustful relationship; "he took me into his confidence"; "he betrayed their trust"
+31332,confidence_man con_man con_artist,a swindler who exploits the confidence of his victim
+31333,confidential_adviser-advisee_relation,the responsibility of a confidential adviser to act in the best interest of the advisee
+31334,confidentiality,the state of being secret; "you must respect the confidentiality of your client's communications"
+31335,confidentiality,discretion in keeping secret information
+31336,configuration constellation,an arrangement of parts or elements; "the outcome depends on the configuration of influences at the time"
+31337,confinement,the state of being confined; "he was held in confinement"
+31338,confinement,the act of restraining of a person's liberty by confining them
+31339,confines,a bounded scope; "he stayed within the confines of the city"
+31340,confirmation,information that confirms or verifies
+31341,confirmation,a ceremony held in the synagogue (usually at Pentecost) to admit as adult members of the Jewish community young men and women who have successfully completed a course of study in Judaism
+31342,confirmation,a sacrament admitting a baptized person to full participation in the church
+31343,confirmation verification check substantiation,additional proof that something that was believed (some fact or hypothesis or theory) is correct; "fossils provided further confirmation of the evolutionary theory"
+31344,confirmation_hearing,a hearing held by the US Senate to gather information on whether to approve or reject candidates for high federal office who are nominated by the president
+31345,confiscation arrogation,seizure by the government
+31346,confit,a piece of meat (especially a duck) cooked slowly in its own fat
+31347,confiture,preserved or candied fruit
+31348,conflagration inferno,a very intense and uncontrolled fire
+31349,conflict,a state of opposition between persons or ideas or interests; "his conflict of interest made him ineligible for the post"; "a conflict of loyalties"
+31350,conflict,opposition in a work of drama or fiction between characters or forces (especially an opposition that motivates the development of the plot); "this form of conflict is essential to Mann's writing"
+31351,conflict,opposition between two simultaneous but incompatible feelings; "he was immobilized by conflict and indecision"
+31352,conflict,an incompatibility of dates or events; "he noticed a conflict in the dates of the two meetings"
+31353,conflict struggle battle,an open clash between two opposing groups (or individuals); "the harder the conflict the more glorious the triumph"--Thomas Paine; "police tried to control the battle between the pro- and anti-abortion mobs"
+31354,conflict_of_interest,a situation in which a public official's decisions are influenced by the official's personal interests
+31355,confluence conflux merging,a flowing together
+31356,confluence meeting,a place where things merge or flow together (especially rivers); "Pittsburgh is located at the confluence of the Allegheny and Monongahela rivers"
+31357,conformal_projection orthomorphic_projection,a map projection in which a small area is rendered in its true shape
+31358,conformation,a symmetrical arrangement of the parts of a thing
+31359,conformational_entropy,entropy calculated from the probability that a state could be reached by chance alone
+31360,conformist,someone who conforms to established standards of conduct (especially in religious matters)
+31361,conformity conformance,correspondence in form or appearance
+31362,conformity conformation compliance abidance,acting according to certain accepted standards; "their financial statements are in conformity with generally accepted accounting practices"
+31363,conformity conformism,orthodoxy in thoughts and belief
+31364,confrontation,a bold challenge
+31365,confrontation,discord resulting from a clash of ideas or opinions
+31366,confrontation,a focussed comparison; bringing together for a careful comparison
+31367,confrontation encounter showdown face-off,a hostile disagreement face-to-face
+31368,confrontation opposition,the act of hostile groups opposing each other; "the government was not ready for a confrontation with the unions"; "the invaders encountered stiff opposition"
+31369,confusion,disorder resulting from a failure to behave predictably; "the army retreated in confusion"
+31370,confusion,an act causing a disorderly combination of elements with identities lost and distinctions blended; "the confusion of tongues at the Tower of Babel"
+31371,confusion discombobulation,a feeling of embarrassment that leaves you confused
+31372,confusion mental_confusion confusedness muddiness disarray,a mental state characterized by a lack of clear and orderly thought and behavior; "a confusion of impressions"
+31373,confusion mix-up,a mistake that results from taking one thing to be another; "he changed his name in order to avoid confusion with the notorious outlaw"
+31374,confutation,the speech act of refuting conclusively
+31375,confutation,evidence that refutes conclusively
+31376,conga,music composed for dancing the conga
+31377,conga,a Latin American dance of 3 steps and a kick by people in single file
+31378,conga_line,a line of people in single file performing the conga dance
+31379,conge congee,(architecture) a concave molding
+31380,conge congee,formal permission to depart; "he gave me his conge"
+31381,conge congee,an abrupt and unceremonious dismissal
+31382,congealment congelation,the process of congealing; solidification by (or as if by) freezing
+31383,congee jook,a Chinese rice gruel eaten for breakfast
+31384,congener,a minor chemical constituent that gives a wine or liquor its distinctive character
+31385,congener,a whole (a thing or person) of the same kind or category as another; "lard was also used, though its congener, butter, was more frequently employed"; "the American shopkeeper differs from his European congener"
+31386,congeniality,a congenial disposition
+31387,congenialness congeniality,compatibility between persons
+31388,congenital_afibrinogenemia,a rare congenital disorder of blood coagulation in which no fibrinogen is found in the blood plasma
+31389,congenital_heart_defect,a birth defect involving the heart
+31390,conger conger_eel,large dark-colored scaleless marine eel found in temperate and tropical coastal waters; some used for food
+31391,congestion,excessive accumulation of blood or other fluid in a body part
+31392,congestion over-crowding,excessive crowding; "traffic congestion"
+31393,congestive_heart_failure,inability to pump enough blood to avoid congestion in the tissues
+31394,conglomerate empire,a group of diverse companies under common ownership and run as a single organization
+31395,conglomeration conglobation,a rounded spherical form
+31396,conglomeration conglobation,an occurrence combining miscellaneous things into a (more or less) rounded mass
+31397,congo_copal congo_gum,copal found usually as a fossil
+31398,congo_red,a red-brown azo dye especially as a chemical pH indicator (congo red is red in basic and blue in acidic solutions)
+31399,congou congo congou_tea English_breakfast_tea,black tea grown in China
+31400,congratulation felicitation,(usually plural) an expression of pleasure at the success or good fortune of another; "I sent them my sincere congratulations on their marriage"
+31401,congratulation felicitation,the act of acknowledging that someone has an occasion for celebration
+31402,congregant,a member of a congregation (especially that of a church or synagogue)
+31403,congregation,an assemblage of people or animals or things collected together; "a congregation of children pleaded for his autograph"; "a great congregation of birds flew over"
+31404,congregation congregating,the act of congregating
+31405,congregation fold faithful,a group of people who adhere to a common faith and habitually attend a given church
+31406,congress,a national legislative assembly
+31407,congress,a meeting of elected or appointed representatives
+31408,congress_boot congress_shoe congress_gaiter,an ankle high shoe with elastic gussets in the sides
+31409,congressional_district,a territorial division of a state; entitled to elect one member to the United States House of Representatives
+31410,congressman congresswoman representative,a member of the United States House of Representatives
+31411,congruity congruousness congruence,the quality of agreeing; being suitable and appropriate
+31412,conic_projection conical_projection,a map projection of the globe onto a cone with its point over one of the earth's poles
+31413,conic_section conic,(geometry) a curve generated by the intersection of a plane and a circular cone
+31414,conical_buoy nun nun_buoy,a buoy resembling a cone
+31415,conidiophore,a specialized fungal hypha that produces conidia
+31416,conidium conidiospore,an asexually produced fungal spore formed on a conidiophore
+31417,conifer coniferous_tree,any gymnospermous tree or shrub bearing cones
+31418,conima,a gum resin from the poison hemlock, Conium maculatum
+31419,conjecture,reasoning that involves the formation of conclusions from incomplete evidence
+31420,conjugal_right,the right of married persons to the enjoyment of association and sympathy and confidence and domestic happiness and the comfort of living together and eating meals at the same table and profiting from joint property right and the intimacies of domestic relations
+31421,conjugal_visitation_right conjugal_visitation,the legal right in a prison for the inmate and spouse to have sexual intercourse
+31422,conjugate_solution conjugate,a mixture of two partially miscible liquids A and B produces two conjugate solutions: one of A in B and another of B in A
+31423,conjugated_protein compound_protein,a protein complex combining amino acids with other substances
+31424,conjugation,the inflection of verbs
+31425,conjugation,the complete set of inflected forms of a verb
+31426,conjugation,a class of verbs having the same inflectional forms
+31427,conjunction,the grammatical relation between linguistic units (words or phrases or clauses) that are connected by a conjunction
+31428,conjunction alignment,(astronomy) apparent meeting or passing of two or more celestial bodies in the same degree of the zodiac
+31429,conjunction conjunctive connective continuative,an uninflected function word that serves to conjoin words or phrases or clauses or sentences
+31430,conjunctiva,a transparent lubricating mucous membrane that covers the eyeball and the under surface of the eyelid
+31431,conjunctival_veins venae_conjunctivales,veins draining the conjunctiva
+31432,conjunctivitis pinkeye,inflammation of the conjunctiva of the eye
+31433,conjuncture,a critical combination of events or circumstances
+31434,conjurer conjuror conjure_man,a witch doctor who practices conjury
+31435,conjuring conjuration conjury invocation,calling up a spirit or devil
+31436,conk,informal term for the nose
+31437,connecting_flight,a flight with an intermediate stop and a change of aircraft (possibly a change of airlines)
+31438,connecting_rod,a rod that transmits motion (especially one that connects a rotating wheel to a reciprocating shaft)
+31439,connecting_room,a hotel room that shares a wall with an adjoining room and is connected by a private door
+31440,connection,(usually plural) a person who is influential and to whom you are connected in some way (as by family or friendship); "he has powerful connections"
+31441,connection,a supplier (especially of narcotics)
+31442,connection connexion,shifting from one form of transportation to another; "the plane was late and he missed his connection in Atlanta"
+31443,connection connexion connectedness,a relation between things or events (as in the case of one causing the other or sharing features with it); "there was a connection between eating that pickle and having that nightmare"
+31444,connection connexion connector connecter connective,an instrumentality that connects; "he soldered the connection"; "he didn't have the right connector between the amplifier and the speakers"
+31445,connection connexion link,a connecting shape
+31446,connection link connectedness,the state of being connected; "the connection between church and state is inescapable"
+31447,connective_tissue,tissue of mesodermal origin consisting of e.g. collagen fibroblasts and fatty cells; supports organs and fills spaces between them and forms tendons and ligaments
+31448,connectivity,the property of being connected or the degree to which something has connections
+31449,conning_tower,an armored pilothouse on a warship
+31450,conning_tower,a raised bridge on a submarine; often used for entering and exiting
+31451,connivance collusion,agreement on a secret plot
+31452,connivance secret_approval tacit_consent,(law) tacit approval of someone's wrongdoing
+31453,connoisseur cognoscente,an expert able to appreciate a field; especially in the fine arts
+31454,connotation,an idea that is implied or suggested
+31455,conodont,the tiny fossil cone-shaped tooth of a primitive vertebrate of order Conodonta
+31456,conodont,small (2 inches long) extinct eellike fish with a finned tail and a notochord and having cone-shaped teeth containing cellular bone; late Cambrian to late Triassic; possible predecessor of the cyclostomes
+31457,conqueror vanquisher,someone who is victorious by force of arms
+31458,conquest,success in mastering something difficult; "the conquest of space"
+31459,conquest conquering subjection subjugation,the act of conquering
+31460,conquistador,an adventurer (especially one who led the Spanish conquest of Mexico and Peru in the 16th century)
+31461,consanguinity blood_kinship cognation,(anthropology) related by blood
+31462,conscience,a feeling of shame when you do something immoral; "he has no conscience about his cruelty"
+31463,conscience,conformity to one's own sense of right conduct; "a person of unflagging conscience"
+31464,conscience scruples moral_sense sense_of_right_and_wrong,motivation deriving logically from ethical or moral principles that govern a person's thoughts and actions
+31465,conscience_money,payment made voluntarily to reduce guilt over dishonest dealings
+31466,conscientious_objector CO,one who refuses to serve in the armed forces on grounds of conscience
+31467,conscientiousness,the quality of being in accord with the dictates of conscience
+31468,conscientiousness painstakingness,the trait of being painstaking and careful
+31469,consciousness,an alert cognitive state in which you are aware of yourself and your situation; "he lost consciousness"
+31470,conscription muster draft selective_service,compulsory military service
+31471,consecration,a solemn commitment of your life or your time to some cherished purpose (to a service or a goal); "his consecration to study"
+31472,consecration,(religion) sanctification of something by setting it apart (usually with religious rites) as dedicated to God; "the Cardinal attended the consecration of the church"
+31473,consensus,agreement in the judgment or opinion reached by a group as a whole; "the lack of consensus reflected differences in theoretical positions"; "those rights and obligations are based on an unstated consensus"
+31474,consent,permission to do something; "he indicated his consent"
+31475,consent_decree,an agreement between two parties that is sanctioned by the court; for example, a company might agree to stop certain questionable practices without admitting guilt
+31476,consequence aftermath,the outcome of an event especially as relative to an individual
+31477,consequence effect outcome result event issue upshot,a phenomenon that follows and is caused by some previous phenomenon; "the magnetic effect was greater when the rod was lengthwise"; "his decision had depressing consequences for business"; "he acted very wise after the event"
+31478,consequence import moment,having important effects or influence; "decisions of great consequence are made by the president himself"; "virtue is of more moment than security"; "that result is of no consequence"
+31479,conservancy,a commission with jurisdiction over fisheries and navigation in a port or river
+31480,conservancy,the official conservation of trees and soil and rivers etc.
+31481,conservation,(physics) the maintenance of a certain quantities unchanged during chemical reactions or physical transformations
+31482,conservation,the preservation and careful management of the environment and of natural resources
+31483,conservation preservation,an occurrence of improvement by virtue of preventing loss or injury or other change
+31484,conservation_of_charge conservation_of_electricity,the principle that the total electric charge of a system remains constant despite changes inside the system
+31485,conservation_of_energy law_of_conservation_of_energy first_law_of_thermodynamics,the fundamental principle of physics that the total energy of an isolated system is constant despite internal changes
+31486,conservation_of_mass conservation_of_matter law_of_conservation_of_mass law_of_conservation_of_matter,a fundamental principle of classical physics that matter cannot be created or destroyed in an isolated system
+31487,conservation_of_momentum,the principle that the total linear momentum in a closed system is constant and is not affected by processes occurring inside the system
+31488,conservatism conservativism,a political or theological orientation advocating the preservation of the best in society and opposing radical changes
+31489,conservative conservativist,a person who is reluctant to accept changes and new ideas
+31490,conservator,someone appointed by a court to assume responsibility for the interests of a minor or incompetent person
+31491,conservator-ward_relation,the responsibility of a conservator to act in the best interests of the ward
+31492,conservatory,the faculty and students of a school specializing in one of the fine arts
+31493,conservatory conservatoire,a schoolhouse with special facilities for fine arts
+31494,conservatory hothouse indoor_garden,a greenhouse in which plants are arranged in a pleasing manner
+31495,conserve preserve conserves preserves,fruit preserved by cooking with sugar
+31496,consideration,a discussion of a topic (as in a meeting); "consideration of the traffic problem took more than an hour"
+31497,consideration,the process of giving careful thought to something
+31498,consideration considerateness thoughtfulness,kind and considerate regard for others; "he showed no consideration for her feelings"
+31499,consideration thoughtfulness,a considerate and thoughtful act
+31500,consignee,the person to whom merchandise is delivered over
+31501,consigner consignor,the person who delivers over or commits merchandise
+31502,consignment,the delivery of goods for sale or disposal
+31503,consistency,logical coherence and accordance with the facts; "a rambling argument that lacked any consistency"
+31504,consistency,(logic) an attribute of a logical system that is so constituted that none of the propositions deducible from the axioms contradict one another
+31505,consistency consistence,a harmonious uniformity or agreement among things or parts
+31506,consistency consistence substance body,the property of holding together and retaining its shape; "wool has more body than rayon"; "when the dough has enough consistency it is ready to bake"
+31507,consistory,a church tribunal or governing body
+31508,consolation comfort solace,the act of consoling; giving relief in affliction; "his presence was a consolation to her"
+31509,consolation solace solacement,the comfort you feel when consoled in times of disappointment; "second place was no consolation to him"
+31510,console,a scientific instrument consisting of displays and an input device that an operator can use to monitor and control a system (especially a computer system)
+31511,console,an ornamental scroll-shaped bracket (especially one used to support a wall fixture); "the bust of Napoleon stood on a console"
+31512,console_table console,a small table fixed to a wall or designed to stand against a wall
+31513,consolidation,something that has consolidated into a compact mass; "he dropped the consolidation into the acid bath"
+31514,consolidation,combining into a solid mass
+31515,consolidation integration,the act of combining into an integral whole; "a consolidation of two corporations"; "after their consolidation the two bills were passed unanimously"; "the defendants asked for a consolidation of the actions against them"
+31516,consomme,clear soup usually of beef or veal or chicken
+31517,consonance consonant_rhyme,the repetition of consonants (or consonant patterns) especially at the ends of words
+31518,consonance harmoniousness,the property of sounding harmonious
+31519,consonant,a letter of the alphabet standing for a spoken consonant
+31520,consonant,a speech sound that is not a vowel
+31521,consonant_system consonantal_system,the system of consonants used in a particular language
+31522,consort,the husband or wife of a reigning monarch
+31523,consortium pool syndicate,an association of companies for some definite purpose
+31524,conspecific,an organism belonging to the same species as another organism
+31525,conspectus,an overall summary
+31526,conspicuous_consumption,buying expensive services and products in order to flaunt your wealth
+31527,conspicuousness,the state of being conspicuous
+31528,conspicuousness,high visibility
+31529,conspiracy cabal,a plot to carry out some harmful or illegal act (especially a political plot)
+31530,conspiracy confederacy,a group of conspirators banded together to achieve some harmful or illegal purpose
+31531,conspiracy confederacy,a secret agreement between two or more people to perform an unlawful act
+31532,conspiracy_of_silence,a conspiracy not to talk about some situation or event; "there was a conspiracy of silence about police brutality"
+31533,conspirator coconspirator plotter machinator,a member of a conspiracy
+31534,constable,a lawman with less authority and jurisdiction than a sheriff
+31535,constable police_constable,a police officer of the lowest rank
+31536,constancy,faithfulness and dependability in personal attachments (especially sexual fidelity)
+31537,constancy perceptual_constancy,(psychology) the tendency for perceived objects to give rise to very similar perceptual experiences in spite of wide variations in the conditions of observation
+31538,constancy stability,the quality of being enduring and free from change or variation; "early mariners relied on the constancy of the trade winds"
+31539,constant,a number representing a quantity assumed to have a fixed value in a specified mathematical context; "the velocity of light is a constant"
+31540,constant constant_quantity invariable,a quantity that does not vary
+31541,constantan Eureka,an alloy of copper and nickel with high electrical resistance and a low temperature coefficient; used as resistance wire
+31542,constellation,a configuration of stars as seen from the earth
+31543,constipation irregularity,irregular and infrequent or difficult evacuation of the bowels; can be a symptom of intestinal obstruction or diverticulitis
+31544,constituency,the body of voters who elect a representative for their area
+31545,constituent,a member of a constituency; a citizen who is represented in a government by officials for whom he or she votes; "needs continued support by constituents to be re-elected"
+31546,constituent grammatical_constituent,(grammar) a word or phrase or clause forming part of a larger grammatical construction
+31547,constitution composition physical_composition makeup make-up,the way in which someone or something is composed
+31548,constitution establishment formation organization organisation,the act of forming or establishing something; "the constitution of a PTA group last year"; "it was the establishment of his reputation"; "he still remembers the organization of the club"
+31549,constitutional,a regular walk taken as a form of exercise
+31550,constitutionalism,a constitutional system of government (usually with a written constitution)
+31551,constitutionalism,advocacy of a system of government according to constitutional principles
+31552,constitutionalist,an advocate of constitutional government
+31553,constraint,the act of constraining; the threat or use of force to control the thoughts or behavior of others
+31554,constraint restraint,the state of being physically constrained; "dogs should be kept under restraint"
+31555,constriction,the action or process of compressing
+31556,constriction bottleneck chokepoint,a narrowing that reduces the flow through a channel
+31557,constriction coarctation,tight or narrow compression
+31558,constriction tightness,a tight feeling in some part of the body; "he felt a constriction in her chest"; "she felt an alarming tightness in her chest"; "emotion caused a constriction of his throat"
+31559,constrictor,any of various large nonvenomous snakes that kill their prey by crushing it in its coils
+31560,construal,an interpretation of the meaning of something; the act of construing
+31561,construction,drawing a figure satisfying certain conditions as part of solving a problem or proving a theorem; "the assignment was to make a construction that could be used in proving the Pythagorean theorem"
+31562,construction building,the commercial activity involved in repairing old structures or constructing new ones; "their main business is home construction"; "workers in the building trades"
+31563,construction building,the act of constructing something; "during the construction we had to take a detour"; "his hobby was the building of boats"
+31564,construction grammatical_construction expression,a group of words that form a constituent of a sentence and are considered as a single unit; "I concluded from his awkward constructions that he was a foreigner"
+31565,construction mental_synthesis,the creation of a construct; the process of combining ideas into a congruous object of thought
+31566,construction twist,an interpretation of a text or action; "they put an unsympathetic construction on his conduct"
+31567,construction_industry housing_industry,an industry that builds housing
+31568,construction_paper,paper suitable for drawing and making cutouts
+31569,construction_worker hard_hat,a worker skilled in building offices or dwellings etc.
+31570,constructive_fraud legal_fraud,comprises all acts or omissions or concealments involving breach of equitable or legal duty or trust or confidence
+31571,constructive_possession,(law) having the power and intention to have and control property but without direct control or actual presence upon it
+31572,constructive_trust involuntary_trust,a trust created by a court (regardless of the intent of the parties) to benefit a party that has been wrongfully deprived of its rights
+31573,constructiveness,the quality of serving to build or improve
+31574,constructivism,an abstractionist artistic movement in Russia after World War I; industrial materials were used to construct nonrepresentational objects
+31575,constructivist,an artist of the school of constructivism
+31576,consubstantiation,the doctrine of the High Anglican Church that after the consecration of the Eucharist the substance of the body and blood of Christ coexists with the substance of the consecrated bread and wine
+31577,consuetude,a custom or usage that has acquired the force of law
+31578,consuetudinary consuetudinal,a manual describing the customs of a particular group (especially the ceremonial practices of a monastic order)
+31579,consul,a diplomat appointed by a government to protect its commercial interests and help its citizens in a foreign country
+31580,consulate,diplomatic building that serves as the residence or workplace of a consul
+31581,consulship,the post of consul
+31582,consultancy,the practice of giving expert advice within a particular field; "a business management consultancy"
+31583,consultation,a conference between two or more people to consider a particular question; "frequent consultations with his lawyer"; "a consultation of several medical specialists"
+31584,consultation audience interview,a conference (usually with someone important); "he had a consultation with the judge"; "he requested an audience with the king"
+31585,consulting_firm consulting_company,a firm of experts providing professional advice to an organization for a fee
+31586,consulting_service,service provided by a professional advisor (e.g., a lawyer or doctor or CPA etc.)
+31587,consumer,a person who uses goods or services
+31588,consumer_credit,a line of credit extended for personal or household use
+31589,consumer_finance_company small_loan_company,a finance company that makes loans to people who have trouble getting a bank loan
+31590,consumer_goods,goods (as food or clothing) intended for direct use or consumption
+31591,consumer_price_index CPI cost-of-living_index,an index of the cost of all goods and services to a typical consumer
+31592,consumer_research,marketing research that yields information about the motives and needs of different classes of consumers
+31593,consumerism,the theory that an increasing consumption of goods is economically beneficial
+31594,consumerism,a movement advocating greater protection of the interests of consumers
+31595,consummation,the completion of marriage by sexual intercourse
+31596,consummation,the act of bringing to completion or fruition
+31597,consumption economic_consumption usance use use_of_goods_and_services,(economics) the utilization of economic goods to satisfy needs or in manufacturing; "the consumption of energy has increased steadily"
+31598,consumption ingestion intake uptake,the process of taking food into the body through the mouth (as by eating)
+31599,consumption using_up expenditure,the act of consuming something
+31600,consumptive lunger tubercular,a person with pulmonary tuberculosis
+31601,contact,the state or condition of touching or of being in immediate proximity; "litmus paper turns red on contact with an acid"
+31602,contact,close interaction; "they kept in daily contact"; "they claimed that they had been in contact with extraterrestrial beings"
+31603,contact contact_lens,a thin curved glass or plastic lens designed to fit over the cornea in order to correct vision or to deliver medication
+31604,contact impinging striking,the physical coming together of two or more things; "contact with the pier scraped paint from the hull"
+31605,contact middleman,a person who is in a position to give you special assistance; "he used his business contacts to get an introduction to the governor"
+31606,contact physical_contact,the act of touching physically; "her fingers came in contact with the light switch"
+31607,contact tangency,(electronics) a junction where things (as two electrical conductors) touch or are in physical contact; "they forget to solder the contacts"
+31608,contact touch,a communicative interaction; "the pilot made contact with the base"; "he got in touch with his colleagues"
+31609,contact_dermatitis,a delayed type of allergic reaction of the skin resulting from skin contact with a specific allergen (such as poison ivy)
+31610,contact_microphone contact_mike,a microphone designed to be used in contact with a source of sound (or with a resonating surface)
+31611,contact_print,a print made by exposing a photosensitive surface to direct contact with a photographic negative
+31612,contact_sport,a sport that necessarily involves body contact between opposing players
+31613,contadino,an Italian farmer
+31614,contagion infection,the communication of an attitude or emotional state among a number of people; "a contagion of mirth"; "the infection of his enthusiasm for poetry"
+31615,contagious_disease contagion,any disease easily transmitted by contact
+31616,container,any object that can be used to hold things (especially a large metal boxlike object of standardized dimensions that can be loaded from one form of transport to another)
+31617,container_ship containership container_vessel,a cargo ship designed to hold containerized cargoes; "the weight of the documentation of all the consignments on board a contemporary container ship can exceed 90 pounds"
+31618,containerful,the quantity that a container will hold
+31619,containment,a policy of creating strategic alliances in order to check the expansion of a hostile power or ideology or to force it to negotiate peacefully; "containment of communist expansion was a central principle of United States' foreign policy from 1947 to the 1975"
+31620,containment,(physics) a system designed to prevent the accidental release of radioactive material from a reactor
+31621,containment,the act of containing; keeping something from spreading; "the containment of the AIDS epidemic"; "the containment of the rebellion"
+31622,contaminant contamination,a substance that contaminates
+31623,contamination pollution,the act of contaminating or polluting; including (either intentionally or accidentally) unwanted substances or factors
+31624,contamination taint,the state of being contaminated
+31625,contemplation,a long and thoughtful observation
+31626,contemplation reflection reflexion rumination musing thoughtfulness,a calm, lengthy, intent consideration
+31627,contemplative,a person devoted to the contemplative life
+31628,contemporaneity contemporaneousness,the quality of belonging to the same period of time
+31629,contemporary coeval,a person of nearly the same age as another
+31630,contempt,a willful disobedience to or disrespect for the authority of a court or legislative body
+31631,contempt disdain scorn despite,lack of respect accompanied by a feeling of intense dislike; "he was held in contempt"; "the despite in which outsiders were held is legendary"
+31632,contempt disrespect,a manner that is generally disrespectful and contemptuous
+31633,contempt scorn,open disrespect for a person or thing
+31634,contempt_of_Congress,deliberate obstruction of the operation of the federal legislative branch
+31635,contempt_of_court,disrespect for the rules of a court of law
+31636,contemptuousness,the manifestation of scorn and contempt; "every subordinate sensed his contemptuousness and hated him in return"
+31637,content,the proportion of a substance that is contained in a mixture or alloy etc.
+31638,content cognitive_content mental_object,the sum or range of what has been perceived, discovered, or learned
+31639,content contents,(usually plural) everything that is included in a collection and that is held or included in something; "he emptied the contents of his pockets"; "the two groups were similar in content"
+31640,content_word open-class_word,a word to which an independent meaning can be assigned
+31641,contentedness content,the state of being contented with your situation in life; "he relaxed in sleepy contentedness"; "they could read to their heart's content"
+31642,contention,a point asserted as part of an argument
+31643,contentment,happiness with one's situation in life
+31644,contents table_of_contents,a list of divisions (chapters or articles) and the pages on which they start
+31645,contest,a struggle between rivals
+31646,contest competition,an occasion on which a winner is selected from among two or more contestants
+31647,contestant,a person who participates in competitions
+31648,contestee,a winner (of a race or an election etc.) whose victory is contested
+31649,contester,someone who contests an outcome (of a race or an election etc.)
+31650,context circumstance setting,the set of facts or circumstances that surround a situation or event; "the historical context"
+31651,context linguistic_context context_of_use,discourse that surrounds a language unit and helps to determine its interpretation
+31652,contextual_definition,a definition in which the term is used by embedding it in a larger expression containing its explanation; "a contextual definition of `legal duty' might be `X has a legal duty to do Y means that X is required to do Y by a contract relationship that would be upheld in a court of law'"
+31653,contextualism,any doctrine emphasizing the importance of the context in solving problems or establishing the meaning of terms
+31654,continence,voluntary control over urinary and fecal discharge
+31655,continence continency,the exercise of self constraint in sexual matters
+31656,continent,one of the large landmasses of the earth; "there are seven continents"; "pioneers had to cross the continent on foot"
+31657,continental_breakfast petit_dejeuner,a breakfast that usually includes a roll and coffee or tea
+31658,continental_divide,the watershed of a continent (especially the watershed of North America formed by a series of mountain ridges extending from Alaska to Mexico)
+31659,continental_drift,the gradual movement and formation of continents (as described by plate tectonics)
+31660,continental_glacier,a glacier that spreads out from a central mass of ice
+31661,continental_shelf,the relatively shallow (up to 200 meters) seabed surrounding a continent
+31662,continental_slope bathyal_zone bathyal_district,the steep descent of the seabed from the continental shelf to the abyssal zone
+31663,contingency,the state of being contingent on something
+31664,contingency_fee,a fee that is payable only if the outcome is successful (as for an attorney's services)
+31665,contingency_procedure,an alternative to the normal procedure; triggered if an unusual but anticipated situation arises
+31666,contingent,a gathering of persons representative of some larger group; "each nation sent a contingent of athletes to the Olympics"
+31667,contingent detail,a temporary military unit; "the peacekeeping force includes one British contingent"
+31668,continuance continuation,the act of continuing an activity without interruption
+31669,continuant_consonant continuant,consonant articulated by constricting (but not closing) the vocal tract
+31670,continued_fraction,a fraction whose numerator is an integer and whose denominator is an integer plus a fraction whose numerator is an integer and whose denominator is an integer plus a fraction and so on
+31671,continuing_education,a program of instruction designed primarily for adult students who participate part-time
+31672,continuing_trespass,trespass that is not transient or intermittent but continues as long as the offending object remains; "dumping his garbage on my land was a case of continuing trespass"
+31673,continuity,uninterrupted connection or union
+31674,continuity,a detailed script used in making a film in order to avoid discontinuities from shot to shot
+31675,continuity persistence,the property of a continuous and connected period of time
+31676,continuousness ceaselessness incessancy incessantness,the quality of something that continues without end or interruption
+31677,continuum,a continuous nonspatial whole or extent or succession in which no part or portion is distinct or distinguishable from adjacent parts
+31678,conto,1 conto equals 1,000 escudos in Portugal
+31679,contortion deformation,the act of twisting or deforming the shape of something (e.g., yourself)
+31680,contortionist,an acrobat able to twist into unusual positions
+31681,contour,a feature (or the order or arrangement of features) of anything having a complex structure; "the contours of the melody"; "it defines a major contour of this administration"
+31682,contour contour_line,a line drawn on a map connecting points of equal height
+31683,contour_feather,feathers covering the body of an adult bird and determining its shape
+31684,contour_language,a tone language that uses pitch changes
+31685,contour_map relief_map,a map having contour lines through points of equal elevation
+31686,contraband,goods whose importation or exportation or possession is prohibited by law
+31687,contrabassoon contrafagotto double_bassoon,the bassoon that is the largest instrument in the oboe family
+31688,contraception contraceptive_method,birth control by the use of devices (diaphragm or intrauterine device or condom) or drugs or surgery
+31689,contraceptive preventive preventative contraceptive_device prophylactic_device birth_control_device,an agent or device intended to prevent conception
+31690,contract,a binding agreement between two or more persons that is enforceable by law
+31691,contract contract_bridge,a variety of bridge in which the bidder receives points toward game only for the number of tricks he bid
+31692,contract declaration,(contract bridge) the highest bid becomes the contract setting the number of tricks that the bidder must make
+31693,contract_killing,a murder carried out on agreement with a hired killer
+31694,contract_law,that branch of jurisprudence that studies the rights and obligations of parties entering into contracts
+31695,contract_offer,offer by an employer to contract to pay an employee at a given rate
+31696,contractile_organ contractor,a bodily organ that contracts
+31697,contractility,the capability or quality of shrinking or contracting, especially by muscle fibers and even some other forms of living matter
+31698,contraction,a word formed from two or more words by omitting or combining some sounds; "`won't' is a contraction of `will not'"; "`o'clock' is a contraction of `of the clock'"
+31699,contraction,the act of decreasing (something) in size or volume or quantity or scope
+31700,contraction muscular_contraction muscle_contraction,(physiology) a shortening or tensing of a part or organ (especially of a muscle or muscle fiber)
+31701,contractor,(law) a party to a contract
+31702,contractor,someone (a person or firm) who contracts to build things
+31703,contractor declarer,the bridge player in contract bridge who wins the bidding and can declare which suit is to be trumps
+31704,contracture,an abnormal and usually permanent contraction of a muscle
+31705,contradiction,opposition between two conflicting forces or ideas
+31706,contradiction,the speech act of contradicting someone; "he spoke as if he thought his claims were immune to contradiction"
+31707,contradiction contradiction_in_terms,(logic) a statement that is necessarily false; "the statement `he is brave and he is not brave' is a contradiction"
+31708,contradictoriness,the relation that exists when opposites cannot coexist
+31709,contradictory,two propositions are contradictories if both cannot be true (or both cannot be false) at the same time
+31710,contradistinction,a distinction drawn on the basis of contrast; "sculpture in contradistinction to painting"
+31711,contrail condensation_trail,an artificial cloud created by an aircraft; caused either by condensation due to the reduction in air pressure above the wing surface or by water vapor in the engine exhaust
+31712,contraindication,(medicine) a reason that makes it inadvisable to prescribe a particular drug or employ a particular procedure or treatment
+31713,contralto,a woman singer having a contralto voice
+31714,contralto alto,the lowest female singing voice
+31715,contrapuntist,a composer who specializes in counterpoint
+31716,contrarian,an investor who deliberately decides to go against the prevailing wisdom of other investors
+31717,contrariety,the relation between contraries
+31718,contrariness perversity perverseness,deliberate and stubborn unruliness and resistance to guidance or discipline
+31719,contrary,exact opposition; "public opinion to the contrary he is not guilty"
+31720,contrary,a logical relation such that two propositions are contraries if both cannot be true but both can be false
+31721,contrast,the perceptual effect of the juxtaposition of very different colors
+31722,contrast,the range of optical density and tone on a photographic negative or print (or the extent to which adjacent areas on a television screen differ in brightness)
+31723,contrast,the act of distinguishing by comparing differences
+31724,contrast direct_contrast,the opposition or dissimilarity of things that are compared; "in contrast to"; "by contrast"
+31725,contrast_medium contrast_material,a substance that is opaque to x-rays; when administered it allows a radiologist to examine the organ or tissue it fills
+31726,contretemps,an awkward clash; "he tried to smooth over his contretemps with the policeman"
+31727,contribution,an amount of money contributed; "he expected his contribution to be repaid with interest"
+31728,contribution,a writing for publication especially one of a collection of writings as an article or story
+31729,contribution donation,a voluntary gift (as of money or service or ideas) made to some worthwhile cause
+31730,contribution donation,act of giving in common with others for a common purpose especially to a charity
+31731,contribution part share,the effort contributed by a person in bringing about a result; "I am proud of my contribution in advancing the project"; "they all did their share of the work"
+31732,contributor,a writer whose work is published in a newspaper or magazine or as part of a book
+31733,contributory_negligence,(law) behavior by the plaintiff that contributes to the harm resulting from the defendant's negligence; "in common law any degree of contributory negligence would bar the plaintiff from collecting damages"
+31734,contrivance,an artificial or unnatural or obviously contrived arrangement of details or parts etc.; "the plot contained too many improbable contrivances to be believable"
+31735,contrivance,the faculty of contriving; inventive skill; "his skillful contrivance of answers to every problem"
+31736,contrivance stratagem dodge,an elaborate or deceitful scheme contrived to deceive or evade; "his testimony was just a contrivance to throw us off the track"
+31737,control,a relation of constraint of one entity (thing or person or group) by another; "measures for the control of disease"; "they instituted controls over drinking on campus"
+31738,control,a spiritual agency that is assumed to assist the medium during a seance
+31739,control,the economic policy of controlling or limiting or curbing prices or wages etc.; "they wanted to repeal all the legislation that imposed economic controls"
+31740,control,power to direct or determine; "under control"
+31741,control,(physiology) regulation or maintenance of a function or action or reflex etc; "the timing and control of his movements were unimpaired"; "he had lost control of his sphincters"
+31742,control,the activity of managing or exerting control over something; "the control of the mob by the police was admirable"
+31743,control controller,a mechanism that controls the operation of a machine; "the speed controller on his turntable was not working properly"; "I turned the controls over to her"
+31744,control_account,an account that shows totals of amounts entered in a subsidiary ledger
+31745,control_center,the operational center for a group of related activities; "the general in command never left the control center"
+31746,control_character ASCII_control_character,ASCII characters to indicate carriage return or tab or backspace; typed by depressing a key and the control key at the same time
+31747,control_circuit negative_feedback_circuit,a feedback circuit that subtracts from the input
+31748,control_condition control,a standard against which other conditions can be compared in a scientific experiment; "the control condition was inappropriate for the conclusions he wished to draw"
+31749,control_experiment,an experiment designed to control for variables affecting the results of another experiment
+31750,control_freak,someone with a compulsive desire to exert control over situations and people
+31751,control_key command_key,(computer science) the key on a computer keyboard that is used (in combination with some other key) to type control characters
+31752,control_operation control_function,an operation that controls the recording or processing or transmission of interpretation of data; "a control operation started the data processing"
+31753,control_panel instrument_panel control_board board panel,electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices; "he checked the instrument panel"; "suddenly the board lit up like a Christmas tree"
+31754,control_rod,a steel or aluminum rod that can be moved up or down to control the rate of the nuclear reaction
+31755,control_room,a room housing control equipment (as in a recording studio)
+31756,control_stock,shares owned by shareholders who have a controlling interest
+31757,control_system,a system for controlling the operation of another system
+31758,control_tower,a tower with an elevated workspace enclosed in glass for the visual observation of aircraft around an airport
+31759,controlled_substance,a drug or chemical substance whose possession and use are controlled by law
+31760,controllership,the position of controller
+31761,controlling_interest,ownership of more than 50% of a corporation's voting shares
+31762,controversy contention contestation disputation disceptation tilt argument arguing,a contentious speech act; a dispute where there is strong disagreement; "they were involved in a violent argument"
+31763,contumacy,willful refusal to appear before a court or comply with a court order; can result in a finding of contempt of court
+31764,contumacy,obstinate rebelliousness and insubordination; resistance to authority
+31765,contusion,the action of bruising; "the bruise resulted from a contusion"
+31766,conurbation urban_sprawl sprawl,an aggregation or continuous network of urban communities
+31767,convalescence recuperation recovery,gradual healing (through rest) after sickness or injury
+31768,convalescent,a person who is recovering from illness
+31769,convection,(meteorology) the vertical movement of heat or other properties by massive motion within the atmosphere
+31770,convection,the transfer of heat through a fluid (liquid or gas) caused by molecular motion
+31771,convector,a space heater that transfers heat to the surrounding air by convection
+31772,convener,the member of a group whose duty it is to convene meetings
+31773,convenience,the state of being suitable or opportune; "chairs arranged for his own convenience"
+31774,convenience,the quality of being useful and convenient; "they offered the convenience of an installment plan"
+31775,convenience_food,any packaged dish or food that can be prepared quickly and easily as by thawing or heating
+31776,convenience_store,a store selling a limited variety of food and pharmaceutical items; open long hours for the convenience of customers
+31777,convent,a community of people in a religious order (especially nuns) living together
+31778,convent,a religious residence especially for nuns
+31779,conventicle,a secret unauthorized meeting for religious worship
+31780,conventicle meetinghouse,a building for religious assembly (especially Nonconformists, e.g., Quakers)
+31781,convention,a large formal assembly; "political convention"
+31782,convention,(diplomacy) an international agreement
+31783,convention convening,the act of convening
+31784,convention normal pattern rule formula,something regarded as a normative example; "the convention of not naming the main character"; "violence is the rule not the exception"; "his formula for impressing visitors"
+31785,conventionality,conformity with conventional thought and behavior
+31786,conventionality,unoriginality as a result of being too conventional
+31787,conventionality convention conventionalism,orthodoxy as a consequence of being conventional
+31788,conventionalization conventionalisation,the act of conventionalizing; conforming to a conventional style
+31789,conventioneer,someone who attends a convention
+31790,convergence,the occurrence of two or more things coming together
+31791,convergence convergency,the approach of an infinite series to a finite limit
+31792,convergence converging convergency,the act of converging (coming closer)
+31793,convergent_thinking,thinking that brings together information focussed on solving a problem (especially solving problems that have a single correct solution)
+31794,converging_lens convex_lens,lens such that a beam of light passing through it is brought to a point or focus
+31795,conversation,the use of speech for informal exchange of views or ideas or information etc.
+31796,conversation_piece,something interesting that stimulates conversation
+31797,conversation_stopper stopper,a remark to which there is no polite conversational reply
+31798,conversationalist conversationist schmoozer,someone skilled at conversation
+31799,converse,a proposition obtained by conversion
+31800,conversion,(psychiatry) a defense mechanism represses emotional conflicts which are then converted into physical symptoms that have no organic basis
+31801,conversion,a change of religion; "his conversion to the Catholic faith"
+31802,conversion,interchange of subject and predicate of a proposition
+31803,conversion,a change in the units or form of an expression: "conversion from Fahrenheit to Centigrade"
+31804,conversion,act of exchanging one type of money or security for another
+31805,conversion,the act of changing from one use or function or purpose to another
+31806,conversion,a successful free throw or try for point after a touchdown
+31807,conversion rebirth spiritual_rebirth,a spiritual enlightenment causing a person to lead a new life
+31808,conversion transition changeover,an event that results in a transformation
+31809,conversion_disorder conversion_reaction conversion_hysteria,a mental disorder characterized by the conversion of mental conflict into somatic forms (into paralysis or anesthesia having no apparent cause)
+31810,conversion_factor,factor by which a quantity that is expressed in one set of units must be multiplied in order to convert it into another set of units
+31811,convert,a person who has been converted to another religious or political belief
+31812,converter convertor,a device for changing one substance or form or state into another
+31813,convertibility,the quality of being exchangeable (especially the ability to convert a currency into gold or other currencies without restriction)
+31814,convertible,a car that has top that can be folded or removed
+31815,convertible convertible_security,a corporate security (usually bonds or preferred stock) that can be exchanged for another form of security (usually common stock)
+31816,convertible sofa_bed,a sofa that can be converted into a bed
+31817,convertible_bond,a bond that can be converted to other securities under certain conditions
+31818,convex_polygon,a polygon such that no side extended cuts any other side or vertex; it can be cut by a straight line in at most two points
+31819,convex_polyhedron,a polyhedron any plane section of which is a convex polygon
+31820,convex_shape convexity,a shape that curves or bulges outward
+31821,convexity convexness,the property possessed by a convex shape
+31822,conveyance,document effecting a property transfer
+31823,conveyance conveyance_of_title conveyancing conveying,act of transferring property title from one person to another
+31824,conveyance imparting impartation,the transmission of information
+31825,conveyance transport,something that serves as a means of transportation
+31826,conveyancer,a lawyer who specializes in the business of conveying properties
+31827,conveyer conveyor,a person who conveys (carries or transmits); "the conveyer of good tidings"
+31828,conveyer_belt conveyor_belt conveyer conveyor transporter,a moving belt that transports objects (as in a factory)
+31829,convict,a person who has been convicted of a criminal offense
+31830,convict con inmate yard_bird yardbird,a person serving a sentence in a jail or prison
+31831,conviction judgment_of_conviction condemnation sentence,(criminal law) a final judgment of guilty in a criminal case and the punishment that is imposed; "the conviction came as no surprise"
+31832,conviction strong_belief article_of_faith,an unshakable belief in something without need for proof or evidence
+31833,convincingness,the power of argument or evidence to cause belief
+31834,conviviality joviality,a jovial nature
+31835,convocation,a group gathered in response to a summons
+31836,convocation calling_together,the act of convoking
+31837,convolution,the action of coiling or twisting or winding together
+31838,convolvulus,any of numerous plants of the genus Convolvulus
+31839,convoy,a procession of land vehicles traveling together
+31840,convoy,a collection of merchant ships with an escort of warships
+31841,convoy,the act of escorting while in transit
+31842,convulsion,violent uncontrollable contractions of muscles
+31843,convulsion,a physical disturbance such as an earthquake or upheaval
+31844,convulsion turmoil upheaval,a violent disturbance; "the convulsions of the stock market"
+31845,coo,the sound made by a pigeon
+31846,cook,someone who cooks food
+31847,cookbook cookery_book,a book of recipes and cooking directions
+31848,cooker,a utensil for cooking
+31849,cookfire,a fire for cooking
+31850,cookhouse,a detached or outdoor shelter for cooking; "the circus used a tent as their cookhouse"
+31851,cookie,a short line of text that a web site puts on your computer's hard drive when you access the web site
+31852,cookie cooky,the cook on a ranch or at a camp
+31853,cookie cooky biscuit,any of various small flat sweet cakes (`biscuit' is the British term)
+31854,cookie_cutter,a kitchen utensil used to cut a sheet of cookie dough into desired shapes before baking
+31855,cookie_jar cooky_jar,a jar in which cookies are kept (and sometimes money is hidden)
+31856,cookie_jar_reserve,a hidden reserve that can be used to adjust quarterly earning reports
+31857,cookie_sheet baking_tray,a cooking utensil consisting of a flat rectangular metal sheet used for baking cookies or biscuits
+31858,cooking cookery preparation,the act of preparing something (as food) by the application of heat; "cooking can be a great art"; "people are needed who have experience in cookery"; "he left the preparation of meals to his wife"
+31859,cooking_apple,an apple used primarily in cooking for pies and applesauce etc
+31860,cooking_oil,any of numerous vegetable oils used in cooking
+31861,cooking_utensil cookware,a kitchen utensil made of material that does not melt easily; used for cooking
+31862,cookout,an informal meal cooked and eaten outdoors
+31863,cookstove,a stove for cooking (especially a wood- or coal-burning kitchen stove)
+31864,cool,the quality of being at a refreshingly low temperature; "the cool of early morning"
+31865,cool_jazz,jazz that is restrained and fluid and marked by intricate harmonic structures often lagging slightly behind the beat
+31866,cool_medium cold_medium,a medium that usually, but not always, provides little involvement together with substantial stimulus; includes speech, television, cartoons
+31867,coolant,a fluid agent (gas or liquid) that produces cooling; especially one used to cool a system by transferring heat away from one part to another; "he added more coolant to the car's radiator"; "the atomic reactor used a gas coolant"; "lathe operators use an emulsion of oil and water as a coolant for the cutting tool"
+31868,coolant_system,a cooling system that uses a fluid to transfer heat from one place to another
+31869,cooler,an iced drink especially white wine and fruit juice
+31870,cooler ice_chest,a refrigerator for cooling liquids
+31871,cooler tank,a cell for violent prisoners
+31872,coolie cooly,(ethnic slur) an offensive name for an unskilled Asian laborer
+31873,cooling chilling temperature_reduction,the process of becoming cooler; a falling temperature
+31874,cooling_system cooling,a mechanism for keeping something cool; "the cooling was overhead fans"
+31875,cooling_system engine_cooling_system,equipment in a motor vehicle that cools the engine
+31876,cooling_tower,a cooling system used in industry to cool hot water (by partial evaporation) before reusing it as a coolant
+31877,coolness imperturbability imperturbableness,calm and unruffled self-assurance; "he performed with all the coolness of a veteran"
+31878,coolness nervelessness,fearless self-possession in the face of danger
+31879,coon,an eccentric or undignified rustic; "I'll be a gone coon when the battle starts"
+31880,coondog,any dog trained to hunt raccoons
+31881,coonhound,any of several breeds of hound developed for hunting raccoons
+31882,coonskin_cap coonskin,a raccoon cap with the tail hanging down the back
+31883,coontie Florida_arrowroot Seminole_bread Zamia_pumila,small tough woody zamia of Florida and West Indies and Cuba; roots and half-buried stems yield an arrowroot
+31884,cooper barrel_maker,a craftsman who makes or repairs wooden barrels or tubs
+31885,cooperation,joint operation or action; "their cooperation with us was essential for the success of our mission"
+31886,cooperation,the practice of cooperating; "economic cooperation"; "they agreed on a policy of cooperation"
+31887,cooperative,an association formed and operated for the benefit of those using it
+31888,cooperative co-op,a jointly owned commercial enterprise (usually organized by farmers or consumers) that produces and distributes goods and services and is run for the benefit of its owners
+31889,coordinate co-ordinate,a number that identifies a position relative to an axis
+31890,coordinate_axis,one of the fixed reference lines of a coordinate system
+31891,coordinate_bond dative_bond,a covalent bond in which both electrons are provided by one of the atoms
+31892,coordinate_clause,a clause in a complex sentence that is grammatically equivalent to the main clause and that performs the same grammatical function
+31893,coordinate_system frame_of_reference reference_system reference_frame,a system that uses coordinates to establish position
+31894,coordinated_universal_time UTC,Greenwich Mean Time updated with leap seconds
+31895,coordinating_conjunction,the coordination by conjunction of linguistic units of the same status
+31896,coordinating_conjunction,a conjunction (like `and' or `or') that connects two identically constructed grammatical constituents
+31897,coordination,the grammatical relation of two constituents having the same grammatical form
+31898,coordination,the skillful and effective interaction of movements
+31899,coordination,being of coordinate importance, rank, or degree
+31900,coordination,the regulation of diverse elements into an integrated and harmonious operation
+31901,coordinator co-ordinator,someone whose task is to see that work goes harmoniously
+31902,coot,slate-black slow-flying birds somewhat resembling ducks
+31903,cooter river_cooter Pseudemys_concinna,large river turtle of the southern United States and northern Mexico
+31904,copaiba copaiba_balsam balsam_capivi,an oleoresin used in varnishes and ointments
+31905,copal,a brittle aromatic resin used in varnishes
+31906,copalite copaline fossil_copal,partly mineralized copal dug from the ground
+31907,copartner,a joint partner (as in a business enterprise)
+31908,copartnership,a partnership in which employees get a share of the profits in addition to their wages
+31909,cope,a long cloak; worn by a priest or bishop on ceremonial occasions
+31910,copepod copepod_crustacean,minute marine or freshwater crustaceans usually having six pairs of limbs on the thorax; some abundant in plankton and others parasitic on fish
+31911,copilot co-pilot,a relief pilot on an airplane
+31912,coping_saw,a handsaw with a taut thin blade; used for cutting small curves in wood
+31913,copolymer,a polymer consisting of two or more different monomers
+31914,copout,a failure to face some difficulty squarely
+31915,copper,a copper penny
+31916,copper,any of various small butterflies of the family Lycaenidae having coppery wings
+31917,copper Cu atomic_number_29,a ductile malleable reddish-brown corrosion-resistant diamagnetic metallic element; occurs in various minerals but is the only metal that occurs abundantly in large masses; used as an electrical and thermal conductor
+31918,copper copper_color,a reddish-brown color resembling the color of polished copper
+31919,copper-base_alloy,any alloy whose principal component is copper
+31920,copper_beech purple_beech Fagus_sylvatica_atropunicea Fagus_purpurea Fagus_sylvatica_purpurea,variety of European beech with shining purple or copper-colored leaves
+31921,copper_mine,a mine where copper is dug from the ground
+31922,copper_oxide,an oxide of copper
+31923,copper_rockfish Sebastodes_caurinus,a rockfish of the Pacific coastal waters of North America
+31924,copper_sulfate copper_sulphate cupric_sulfate cupric_sulphate,a copper salt made by the action of sulfuric acid on copper oxide
+31925,copperhead Agkistrodon_contortrix,common coppery brown pit viper of upland eastern United States
+31926,copperhead Denisonia_superba,venomous but sluggish reddish-brown snake of Australia
+31927,copperplate,a graceful style of handwriting based on the writing used on copperplate engravings
+31928,copperplate,a print made from an engraved copperplate
+31929,copperplate copperplate_engraving,an engraving consisting of a smooth plate of copper that has been etched or engraved
+31930,coppersmith,someone who makes articles from copper
+31931,copperware,utensils made with copper
+31932,copra,the dried meat of the coconut from which oil is extracted
+31933,coprolalia,an uncontrollable use of obscene language; often accompanied by mental disorders
+31934,coprolite,fossil excrement; petrified dung
+31935,coprolith fecalith faecalith stercolith,a hard mass of fecal matter
+31936,coprophagy coprophagia,eating feces; in human a symptom of some kinds of insanity
+31937,copula copulative linking_verb,an equating verb (such as `be' or `become') that links the subject with the complement of a sentence
+31938,copulative_conjunction,the conjunctive relation of units that expresses the addition of their meanings
+31939,copy,material suitable for a journalistic account; "catastrophes make good copy"
+31940,copy,a thing made to be similar or identical to another thing; "she made a copy of the designer dress"; "the clone was a copy of its ancestor"
+31941,copy written_matter,matter to be printed; exclusive of graphical materials
+31942,copy_editing,putting something into a form suitable for a printer
+31943,copy_editor copyreader text_editor,an editor who prepares text for publication
+31944,copybook,a book containing models of good penmanship; used in teaching penmanship
+31945,copycat imitator emulator ape aper,someone who copies the words or behavior of another
+31946,copyhold,a medieval form of land tenure in England; a copyhold was a parcel of land granted to a peasant by the lord of the manor in return for agricultural services
+31947,copyholder,mechanical device used in printing; holds the copy for the compositor
+31948,copying,an act of copying
+31949,copyist scribe scrivener,someone employed to make written copies of documents and manuscripts
+31950,copyright right_of_first_publication,a document granting exclusive right to publish and sell literary or musical or artistic work
+31951,copyright_infringement infringement_of_copyright,a violation of the rights secured by a copyright
+31952,copywriter,a person employed to write advertising or publicity copy
+31953,coq_au_vin,chicken and onions and mushrooms braised in red wine and seasonings
+31954,coquette flirt vamp vamper minx tease prickteaser,a seductive woman who uses her sex appeal to exploit men
+31955,coquilla_nut,nut having a hard hazel-brown shell used like vegetable ivory
+31956,coquille,seafood served in a scallop shell
+31957,coquille,a dish in the form of a scallop shell
+31958,coquilles_Saint-Jacques,scallops in white wine sauce served in scallop shells
+31959,cor_pulmonale,enlargement of the right ventricle of the heart due to disease of the lungs or of the pulmonary blood vessels
+31960,coraciiform_bird,chiefly short-legged arboreal nonpasserine birds that nest in holes
+31961,coracle,a small rounded boat made of hides stretched over a wicker frame; still used in some parts of Great Britain
+31962,coral,unfertilized lobster roe; reddens in cooking; used as garnish or to color sauces
+31963,coral,a variable color averaging a deep pink
+31964,coral,marine colonial polyp characterized by a calcareous skeleton; masses in a variety of shapes often forming reefs
+31965,coral red_coral precious_coral,the hard stony skeleton of a Mediterranean coral that has a delicate red or pink color and is used for jewelry
+31966,coral-root_bittercress coralroot coralwort Cardamine_bulbifera Dentaria_bulbifera,European bittercress having a knotted white rootstock
+31967,coral_bean_tree Erythrina_corallodendrum,deciduous shrub having racemes of deep red flowers and black-spotted red seeds
+31968,coral_bush flame_bush Templetonia_retusa,Australian shrub having simple obovate leaves and brilliant scarlet flowers
+31969,coral_drops Bessera_elegans,half-hardy Mexican herb cultivated for its drooping terminal umbels of showy red-and-white flowers
+31970,coral_fungus,any of numerous fungi of the family Clavariaceae often brightly colored that grow in often intricately branched clusters like coral
+31971,coral_gem Lotus_berthelotii,low-growing much-branched perennial of Canary Islands having orange-red to scarlet or purple flowers; naturalized in United States
+31972,coral_necklace Illecebrum_verticullatum,glabrous annual with slender taproot and clusters of white flowers; western Europe especially western Mediterranean and Atlantic coastal areas
+31973,coral_pea,any of various Australian climbing plants of the genus Kennedia having scarlet flowers
+31974,coral_reef,a reef consisting of coral consolidated into limestone
+31975,coral_root,a wildflower of the genus Corallorhiza growing from a hard mass of rhizomes associated with a fungus that aids in absorbing nutrients from the forest floor
+31976,coral_snake Old_World_coral_snake,any of various venomous elapid snakes of Asia and Africa and Australia
+31977,coral_snake harlequin-snake New_World_coral_snake,any of several venomous New World snakes brilliantly banded in red and black and either yellow or white; widely distributed in South America and Central America
+31978,coral_tree erythrina,any of various shrubs or shrubby trees of the genus Erythrina having trifoliate leaves and racemes of scarlet to coral red flowers and black seeds; cultivated as an ornamental
+31979,coral_vine Kennedia_coccinea,prostrate or twining woody vine with small leathery leaves and umbels of red flowers; Australia and Tasmania
+31980,coralbells Heuchera_sanguinea,perennial plant of the western United States having bright red flowers in feathery spikes; used as an ornamental
+31981,coralberry Indian_currant Symphoricarpos_orbiculatus,North American deciduous shrub cultivated for it abundant clusters of coral-red berrylike fruits
+31982,coralberry spiceberry Ardisia_crenata,shrub with coral-red berries; Japan to northern India
+31983,coralwood coral-wood red_sandalwood Barbados_pride peacock_flower_fence Adenanthera_pavonina,East Indian tree with racemes of yellow-white flowers; cultivated as an ornamental
+31984,corbel truss,(architecture) a triangular bracket of brick or stone (usually of slight extent)
+31985,corbel_arch,(architecture) an arch constructed of masonry courses that are corbelled until they meet
+31986,corbel_step corbie-step corbiestep crow_step,(architecture) a step on the top of a gable wall
+31987,corbie_gable,(architecture) a gable having corbie-steps or corbel steps
+31988,corbina Menticirrhus_undulatus,bluish-grey whiting of California coast
+31989,corchorus,any of various plants of the genus Corchorus having large leaves and cymose clusters of yellow flowers; a source of jute
+31990,cord,a unit of amount of wood cut for burning; 128 cubic feet
+31991,cord,a line made of twisted fibers or threads; "the bundle was tied with a cord"
+31992,cord corduroy,a cut pile fabric with vertical ribs; usually made of cotton
+31993,cord electric_cord,a light insulated conductor for household use
+31994,cord_blood,blood obtained from the umbilical cord at birth
+31995,cordage,the amount of wood in an area as measured in cords
+31996,cordage,the ropes in the rigging of a ship
+31997,cordate_leaf,a heart-shaped leaf
+31998,cordgrass cord_grass,any of several perennial grasses of the genus Spartina; some important as coastal soil binders
+31999,cordial_reception hospitality,kindness in welcoming guests or strangers
+32000,cordierite,a blue mineral of magnesium and iron and aluminum and silicon and oxygen; often used as a gemstone
+32001,cordite,explosive powder (nitroglycerin and guncotton and petrolatum) dissolved in acetone and dried and extruded in brown cords
+32002,corditis,inflammation of the spermatic cord
+32003,cordoba,the basic unit of money in Nicaragua; equal to 100 centavos
+32004,cordon,a series of sentinels or of military posts enclosing or guarding some place or thing
+32005,cordon,cord or ribbon worn as an insignia of honor or rank
+32006,cordon,adornment consisting of an ornamental ribbon or cord
+32007,cordon_bleu,a chef famous for his great skill
+32008,cordovan,a fine leather originally made in Cordoba, Spain
+32009,cords corduroys,cotton trousers made of corduroy cloth
+32010,corduroy,a road made of logs laid crosswise
+32011,cordwood,firewood cut and stacked in cords; wood sold by the cord
+32012,core,a cylindrical sample of soil or rock obtained with a hollow drill
+32013,core,the central part of the Earth
+32014,core,the center of an object; "the ball has a titanium core"
+32015,core,the chamber of a nuclear reactor containing the fissile material where the reaction takes place
+32016,core,a bar of magnetic material (as soft iron) that passes through a coil and serves to increase the inductance of the coil
+32017,core magnetic_core,(computer science) a tiny ferrite toroid formerly used in a random access memory to store one bit of data; now superseded by semiconductor memories; "each core has three wires passing through it, providing the means to select and detect the contents of each bit"
+32018,core nucleus core_group,a small group of indispensable persons or things; "five periodicals make up the core of their publishing program"
+32019,core_bit,a hollow drilling bit that is the cutting part of a core drill; allows core samples to be taken
+32020,core_drill,a drill that removes a cylindrical core from the drill hole
+32021,core_dump,(computer science) dump of the contents of the chief registers in the CPU; usually used for debugging
+32022,coreference,the grammatical relation between two words that have a common referent
+32023,coreid_bug coreid,a true bug
+32024,coreligionist,someone having the same religion as another person
+32025,coreopsis tickseed tickweed tick-weed,any of numerous plants of the genus Coreopsis having a profusion of showy usually yellow daisylike flowers over long periods; North and South America
+32026,corer,a device for removing the core from apples
+32027,corespondent co-respondent,the codefendant charged with adultery with the estranged spouse in a divorce proceeding
+32028,corgi Welsh_corgi,either of two Welsh breeds of long-bodied short-legged dogs with erect ears and a fox-like head
+32029,coriander Chinese_parsley cilantro,parsley-like herb used as seasoning or garnish
+32030,coriander coriander_plant Chinese_parsley cilantro Coriandrum_sativum,Old World herb with aromatic leaves and seed resembling parsley
+32031,coriander coriander_seed,dried coriander seeds used whole or ground
+32032,cork,outer bark of the cork oak; used for stoppers for bottles etc.
+32033,cork bottle_cork,the plug in the mouth of a bottle (especially a wine bottle)
+32034,cork_oak Quercus_suber,medium-sized evergreen oak of southern Europe and northern Africa having thick corky bark that is periodically stripped to yield commercial cork
+32035,cork_tree Erythrina_vespertilio,prickly Australian coral tree having soft spongy wood
+32036,cork_tree Phellodendron_amurense,deciduous tree of China and Manchuria having a turpentine aroma and handsome compound leaves turning yellow in autumn and deeply fissured corky bark
+32037,corkage,a charge added at a restaurant for every bottle of wine served that was not bought on the premises
+32038,corkboard,a heat-insulating building material consisting of cork granules that are made into sheets by compressing and baking
+32039,corker,(dated slang) a remarkable or excellent thing or person; "that story was a corker"
+32040,corker,a machine that is used to put corks in bottles
+32041,corkscrew bottle_screw,a bottle opener that pulls corks
+32042,corkwood corkwood_tree Leitneria_floridana,very small deciduous dioecious tree or shrub of damp habitats in southeastern United States having extremely light wood
+32043,corm,solid swollen underground bulb-shaped stem or stem base and serving as a reproductive structure
+32044,cormorant Phalacrocorax_carbo,large voracious dark-colored long-necked seabird with a distensible pouch for holding fish; used in Asia to catch fish
+32045,cormous_plant,plant growing from a corm
+32046,corn,the dried grains or kernels or corn used as animal feed or ground for meal
+32047,corn,(Great Britain) any of various cereal plants (especially the dominant crop of the region--wheat in Great Britain or oats in Scotland and Ireland)
+32048,corn,something sentimental or trite; "that movie was pure corn"
+32049,corn clavus,a hard thickening of the skin (especially on the top or sides of the toes) caused by the pressure of ill-fitting shoes
+32050,corn edible_corn,ears of corn that can be prepared and served for human food
+32051,corn maize Indian_corn Zea_mays,tall annual cereal grass bearing kernels on large ears: widely cultivated in America in many varieties; the principal cereal in Mexico and Central and South America since pre-Columbian times
+32052,corn_borer European_corn_borer_moth corn_borer_moth Pyrausta_nubilalis,native to Europe; in America the larvae bore into the stem and crown of corn and other plants
+32053,corn_borer Pyrausta_nubilalis,larva of the European corn borer moth; a serious pest of maize
+32054,corn_cake,baked in a pan or on a griddle (southern and midland)
+32055,corn_chamomile field_chamomile corn_mayweed Anthemis_arvensis,European white-flowered weed naturalized in North America
+32056,corn_chip,thin piece of cornmeal dough fried
+32057,corn_chowder,chowder containing corn
+32058,corn_cockle corn_campion crown-of-the-field Agrostemma_githago,European annual having large trumpet-shaped reddish-purple flowers and poisonous seed; a common weed in grainfields and beside roadways; naturalized in America
+32059,corn_dab corn_dodger dodger,small oval cake of corn bread baked or fried (chiefly southern)
+32060,corn_dance,a rain dance of Amerindians
+32061,corn_earworm cotton_bollworm tomato_fruitworm tobacco_budworm vetchworm Heliothis_zia,larva of a noctuid moth; highly destructive to especially corn and cotton and tomato crops
+32062,corn_exchange,an exchange where grains are bought and sold
+32063,corn_flake,crisp flake made from corn
+32064,corn_fritter,fritter containing corn or corn kernels
+32065,corn_gluten,gluten prepared from corn
+32066,corn_gluten_feed,a feed consisting primarily of corn gluten
+32067,corn_lily,any of several South African plants of the genus Ixia having grasslike leaves and clusters of showy variously colored lily-like flowers; widely cultivated
+32068,corn_marigold field_marigold Chrysanthemum_segetum,European herb with bright yellow flowers; a common weed in grain fields
+32069,corn_mint field_mint Mentha_arvensis,European mint naturalized in United States
+32070,corn_muffin,cornbread muffin
+32071,corn_oil,oil from the germs of corn grains
+32072,corn_poppy field_poppy Flanders_poppy Papaver_rhoeas,annual European poppy common in grain fields and often cultivated
+32073,corn_pudding,pudding made of corn and cream and egg
+32074,corn_salad,a plant of the genus Valerianella
+32075,corn_snake red_rat_snake Elaphe_guttata,large harmless snake of southeastern United States; often on farms
+32076,corn_snow,granular snow formed by alternate thawing and freezing
+32077,corn_speedwell Veronica_arvensis,erect or procumbent blue-flowered annual found in waste places of Europe and America
+32078,corn_spurry corn_spurrey Spergula_arvensis,small European weed with whorled leaves and white flowers
+32079,corn_sugar,dextrose made by hydrolysis of cornstarch
+32080,corn_sugar,dextrose used as sweetening agent
+32081,corn_syrup,syrup prepared from corn
+32082,corn_whiskey corn_whisky corn,whiskey distilled from a mash of not less than 80 percent corn
+32083,cornbread,bread made primarily of cornmeal
+32084,corncob corn_cob,the hard cylindrical core that bears the kernels of an ear of corn
+32085,corncrake land_rail Crex_crex,common Eurasian rail that frequents grain fields
+32086,corncrib,a crib for storing and drying ears of corn
+32087,cornea,the transparent dome-shaped anterior portion of the outer covering of the eye; it covers the iris and pupil and is continuous with the sclera
+32088,corned_beef_hash,hash made with corned beef
+32089,cornelian_cherry Cornus_mas,deciduous European shrub or small tree having bright red fruit
+32090,corner,a temporary monopoly on a kind of commercial trade; "a corner on the silver market"
+32091,corner,a projecting part where two sides or edges meet; "he knocked off the corners"
+32092,corner,the point where three areas or surfaces meet or intersect; "the corners of a cube"
+32093,corner,a remote area; "in many corners of the world they still practice slavery"
+32094,corner,a place off to the side of an area; "he tripled to the rightfield corner"; "the southeastern corner of the Mediterranean"
+32095,corner,the point where two lines meet or intersect; "the corners of a rectangle"
+32096,corner box,a predicament from which a skillful or graceful escape is impossible; "his lying got him into a tight corner"
+32097,corner nook,an interior angle formed by two meeting walls; "a piano was in one corner of the room"
+32098,corner quoin,(architecture) solid exterior angle of a building; especially one formed by a cornerstone
+32099,corner street_corner turning_point,the intersection of two streets; "standing on the corner watching all the girls go by"
+32100,corner_kick,a free kick from the corner awarded to the other side when a player has sent the ball behind his own goal line
+32101,corner_pocket,a pocket at the corner of a billiard table
+32102,corner_post,a square post supporting a structural member at the corner of a building
+32103,cornerback,a defensive football player stationed outside the linebackers
+32104,cornerstone,a stone in the exterior of a large and important building; usually carved with a date and laid with appropriate ceremonies
+32105,cornerstone,a stone at the outer corner of two intersecting masonry walls
+32106,cornet horn trumpet trump,a brass musical instrument with a brilliant tone; has a narrow tube and a flared bell and is played by means of valves
+32107,cornetfish,slender tropical fish with a long tubular snout and bony plates instead of scales
+32108,cornfield corn_field,a field planted with corn
+32109,cornflower bachelor's_button bluebottle Centaurea_cyanus,an annual Eurasian plant cultivated in North America having showy heads of blue or purple or pink or white flowers
+32110,cornhusk,the husk of an ear of corn
+32111,cornhusker,a worker who husks corn
+32112,cornhusking,the act of removing the husks from ears of corn
+32113,cornice,a molding at the corner between the ceiling and the top of a wall
+32114,cornice,the topmost projecting part of an entablature
+32115,cornice valance valance_board pelmet,a decorative framework to conceal curtain fixtures at the top of a window casing
+32116,cornmeal Indian_meal,coarsely ground corn
+32117,cornpone pone,cornbread often made without milk or eggs and baked or fried (southern)
+32118,cornsilk corn_silk,each of the long filamentous styles that grow as a silky tuft at the tip of an ear of Indian corn
+32119,cornsmut corn_smut,a smut fungus attacking Indian corn
+32120,cornstalk corn_stalk,the stalk of a corn plant
+32121,cornstarch cornflour,starch prepared from the grains of corn; used in cooking as a thickener
+32122,cornu,(anatomy) any structure that resembles a horn in shape
+32123,corolla,(botany) the whorl of petals of a flower that collectively form an inner floral envelope or layer of the perianth; "we cultivate the flower for its corolla"
+32124,corollary,a practical consequence that follows naturally; "blind jealousy is a frequent corollary of passionate love"
+32125,corollary,(logic) an inference that follows directly from the proof of another proposition
+32126,corona,(botany) the trumpet-shaped or cup-shaped outgrowth of the corolla of a daffodil or narcissus flower
+32127,corona,one or more circles of light seen around a luminous object
+32128,corona,(anatomy) any structure that resembles a crown in shape
+32129,corona,a long cigar with blunt ends
+32130,corona_discharge corona corposant St._Elmo's_fire Saint_Elmo's_fire Saint_Elmo's_light Saint_Ulmo's_fire Saint_Ulmo's_light electric_glow,an electrical discharge accompanied by ionization of surrounding atmosphere
+32131,coronal_suture sutura_coronalis,the suture between the parietal and frontal bones of the skull
+32132,coronary_artery arteria_coronaria,the artery that branches from the aorta to supply blood to the heart
+32133,coronary_bypass coronary_bypass_surgery coronary_artery_bypass_graft CABG,open-heart surgery in which the rib cage is opened and a section of a blood vessel is grafted from the aorta to the coronary artery to bypass the blocked section of the coronary artery and improve the blood supply to the heart
+32134,coronary_care_unit,a hospital unit specially staffed and equipped to treat patients with serious cardiac problems
+32135,coronary_heart_disease,a heart disease due to an abnormality of the arteries that supply blood and oxygen to the heart
+32136,coronary_insufficiency cardiac_insufficiency,inadequate blood flow to the heart muscles; can cause angina pectoris
+32137,coronary_occlusion,occlusion of a coronary artery caused either by progressive atherosclerosis or by a blood clot
+32138,coronary_sinus sinus_coronarius,a short sinus receiving most of the veins of the heart; empties into the right atrium
+32139,coronary_thrombosis coronary,obstruction of blood flow in a coronary artery by a blood clot (thrombus)
+32140,coronation enthronement enthronization enthronisation investiture,the ceremony of installing a new monarch
+32141,coroner medical_examiner,a public official who investigates by inquest any death not due to natural causes
+32142,coronet,a small crown; usually indicates a high rank but below that of sovereign
+32143,coronet,margin between the skin of the pastern and the horn of the hoof
+32144,coronilla,any of various plants of the genus Coronilla having purple or pink or yellow flowers in long axillary heads or umbels
+32145,coronion,the craniometric point at the tip of the coronoid process of the mandible
+32146,coronoid_process processus_coronoideus,a sharp triangular process projecting from a bone
+32147,coronoid_process_of_the_mandible,the coronoid process that provides an attachment for the temporal muscle
+32148,corozo corozo_palm,any of several tropical American palms bearing corozo nuts
+32149,corporal,a noncommissioned officer in the Army or Air Force or Marines
+32150,corporal_punishment,the infliction of physical injury on someone convicted of committing a crime
+32151,corporate_bond,a bond issued by a corporation; carries no claim to ownership and pays no dividends but payments to bondholders have priority over payments to stockholders; "a corporate bond is a safer investment than common stock in the same company"
+32152,corporate_executive business_executive,an executive in a business corporation
+32153,corporate_finance,the financial activities of corporation
+32154,corporate_investor,a company that invests in (acquires control of) other companies
+32155,corporation corp,a business firm whose articles of incorporation have been approved in some state
+32156,corporation_law,that branch of jurisprudence that studies the laws governing corporations
+32157,corporatism,control of a state or organization by large interest groups; "individualism is in danger of being swamped by a kind of corporatism"
+32158,corporatist,a supporter of corporatism
+32159,corps,a body of people associated together; "diplomatic corps"
+32160,corps army_corps,an army unit usually consisting of two or more divisions and their support
+32161,corps_de_ballet ensemble,the chorus of a ballet company
+32162,corpulence overweight stoutness adiposis,the property of excessive fatness
+32163,corpus,a collection of writings; "he edited the Hemingway corpus"
+32164,corpus,the main part of an organ or other bodily structure
+32165,corpus_callosum,a broad transverse nerve tract connecting the two cerebral hemispheres
+32166,corpus_delicti,the body of evidence that constitute the offence; the objective proof that a crime has been committed (sometimes mistakenly thought to refer to the body of a homicide victim)
+32167,corpus_luteum,yellow endocrine tissue that forms in a ruptured Graafian follicle following the release of an ovum; it degenerates after a few days unless pregnancy has begun
+32168,corpus_striatum striatum striate_body,a striped mass of white and grey matter located in front of the thalamus in each cerebral hemisphere; consists of the caudate nucleus and the lenticular nucleus
+32169,corpuscular_radiation particulate_radiation,a stream of atomic or subatomic particles that may be charged positively (e.g. alpha particles) or negatively (e.g. beta particles) or not at all (e.g. neutrons)
+32170,corpuscular_theory corpuscular_theory_of_light,(physics) the theory that light is transmitted as a stream of particles
+32171,correction,something substituted for an error
+32172,correction,a drop in stock market activity or stock prices following a period of increases; "market runups are invariably followed by a correction"
+32173,correction,treatment of a specific defect; "the correction of his vision with eye glasses"
+32174,correction chastening chastisement,a rebuke for making a mistake
+32175,correction fudge_factor,a quantity that is added or subtracted in order to increase the accuracy of a scientific measure
+32176,correction rectification,the act of offering an improvement to replace a mistake; setting right
+32177,correctional_institution,a penal institution maintained by the government
+32178,correctional_rehabilitation,providing penal custody or probation or parole for convicted offenders
+32179,corrections,the social control of offenders through a system of imprisonment and rehabilitation and probation and parole
+32180,corrections department_of_corrections,the department of local government that is responsible for managing the treatment of convicted offenders; "for a career in corrections turn to the web site of the New Jersey Department of Corrections"
+32181,corrective restorative,a device for treating injury or disease
+32182,correctness, the quality of conformity to social expectations
+32183,correctness rightness,conformity to fact or truth
+32184,correlate correlative,either of two or more related or complementary variables
+32185,correlation correlational_statistics,a statistical relation between two or more variables such that systematic changes in the value of one variable are accompanied by systematic changes in the other
+32186,correlation correlativity,a reciprocal relation between two or more things
+32187,correlation_coefficient coefficient_of_correlation correlation,a statistic representing how closely two variables co-vary; it can vary from -1 (perfect negative correlation) through 0 (no correlation) to +1 (perfect positive correlation); "what is the correlation between those two variables?"
+32188,correlation_matrix,a matrix giving the correlations between all pairs of data sets
+32189,correlation_table,a two-way tabulation of the relations between correlates; row headings are the scores on one variable and column headings are the scores on the second variables and a cell shows how many times the score on that row was associated with the score in that column
+32190,correlational_analysis,the use of statistical correlation to evaluate the strength of the relations between variables
+32191,correspondence,communication by the exchange of letters
+32192,correspondence_course,a course offered (by mail) by a correspondence school
+32193,correspondence_school,a school that teaches nonresident students by mail
+32194,correspondent letter_writer,someone who communicates by means of letters
+32195,correspondent newspaperman newspaperwoman newswriter pressman,a journalist employed to provide news stories for newspapers or broadcast media
+32196,corridor,an enclosed passageway; rooms usually open onto it
+32197,corrigenda,a list of printing errors in a book along with their corrections
+32198,corrigendum,a printer's error; to be corrected
+32199,corroborating_evidence,additional evidence or evidence of different kind that supports a proof already offered in a proceeding
+32200,corrosion,a state of deterioration in metals caused by oxidation or chemical action
+32201,corrosion corroding erosion,erosion by chemical action
+32202,corrosive,a substance having the tendency to cause corrosion (such a strong acids or alkali)
+32203,corrugated_board corrugated_cardboard,cardboard with corrugations (can be glued to flat cardboard on one or both sides)
+32204,corrugated_fastener wiggle_nail,a small strip of corrugated steel with sharp points on one side; hammered across wood joints in rough carpentry
+32205,corrugated_iron,usually galvanized sheet iron or sheet steel shaped into straight parallel ridges and hollows
+32206,corrugation,a ridge on a corrugated surface
+32207,corrugation,the act of shaping into parallel ridges and grooves
+32208,corruptibility,the capability of being corrupted
+32209,corruption,decay of matter (as by rot or oxidation)
+32210,corruption,inducement (as of a public official) by improper means (as bribery) to violate duty (as by commiting a felony); "he was held on charges of corruption and racketeering"
+32211,corruption degeneracy depravation depravity putrefaction,moral perversion; impairment of virtue and moral principles; "the luxury and corruption among the upper classes"; "moral degeneracy followed intellectual degeneration"; "its brothels, its opium parlors, its depravity"; "Rome had fallen into moral putrefaction"
+32212,corruption subversion,destroying someone's (or some group's) honesty or loyalty; undermining moral integrity; "corruption of a minor"; "the big city's subversion of rural innocence"
+32213,corruptness,the state of being corrupt
+32214,corruptness corruption,lack of integrity or honesty (especially susceptibility to bribery); use of a position of trust for dishonest gain
+32215,corsair,a swift pirate ship (often operating with official sanction)
+32216,corsair Barbary_pirate,a pirate along the Barbary Coast
+32217,corselet corslet,a piece of body armor for the trunk; usually consists of a breastplate and back piece
+32218,corset girdle stays,a woman's close-fitting foundation garment
+32219,cortege,a funeral procession
+32220,cortege retinue suite entourage,the group following and attending to some important person
+32221,cortex,the tissue forming the outer layer of an organ or structure in plant or animal
+32222,cortical_area cortical_region,any of various regions of the cerebral cortex
+32223,cortical_cataract,a cataract that affects the lens cortex
+32224,cortical_epilepsy focal_epilepsy,epilepsy in which the attacks begins with an isolated disturbance of cerebral function (as a twitching of a limb or an illusory sensation or a mental disturbance)
+32225,corticosteroid corticoid adrenal_cortical_steroid,a steroid hormone produced by the adrenal cortex or synthesized; administered as drugs they reduce swelling and decrease the body's immune response; "adrenal cortical steroids are used to treat many different conditions"
+32226,corticosterone,secreted by the adrenal cortex; involved in regulating water and electrolyte balance in the body
+32227,cortina,a cobwebby partial veil consisting of silky fibrils
+32228,cortisone Cortone_Acetate,a corticosteroid hormone (trade name Cortone Acetate) normally produced by the adrenal cortex; is converted to hydrocortisone
+32229,corundom corundum,very hard mineral used as an abrasive
+32230,coruscation,a sudden or striking display of brilliance; "coruscations of great wit"
+32231,corvee,unpaid labor (as for the maintenance of roads) required by a lord of his vassals in lieu of taxes
+32232,corvette,a highly maneuverable escort warship; smaller than a destroyer
+32233,corvine_bird,birds of the crow family
+32234,corydalis,a plant of the genus Corydalis with beautiful compound foliage and spurred tubular flowers
+32235,corymb,flat-topped or convex inflorescence in which the individual flower stalks grow upward from various points on the main stem to approximately the same height; outer flowers open first
+32236,corynebacterium,any species of the genus Corynebacterium
+32237,coryphantha,a cactus of the genus Coryphantha
+32238,corythosaur corythosaurus,duck-billed dinosaur with nasal passages that expand into a crest like a hollow helmet
+32239,cos cos_lettuce romaine romaine_lettuce,lettuce with long dark-green leaves in a loosely packed elongated head
+32240,cos_lettuce romaine_lettuce Lactuca_sativa_longifolia,lettuce with long dark-green spoon-shaped leaves
+32241,coscoroba,large white South American bird intermediate in some respects between ducks and swans
+32242,cosecant cosec,ratio of the hypotenuse to the opposite side of a right-angled triangle
+32243,cosigner,a signer in addition to the principal signer (to verify the authenticity of the principal signature or to provide surety)
+32244,cosigner cosignatory,one of two or more signers of the same document (as a treaty or declaration)
+32245,cosine cos,ratio of the adjacent side to the hypotenuse of a right-angled triangle
+32246,cosmetic,a toiletry designed to beautify the body
+32247,cosmetic_dentistry,the branch of dentistry dealing with the appearance of the teeth
+32248,cosmetic_surgeon plastic_surgeon,a surgeon who beautifies the body (especially the face)
+32249,cosmetician,someone who sells or applies cosmetics
+32250,cosmetologist,an expert in the use of cosmetics
+32251,cosmetology,the practice of beautifying the face and hair and skin
+32252,cosmic_background_radiation CBR cosmic_microwave_background_radiation CMBR cosmic_microwave_background CMB,(cosmology) the cooled remnant of the hot big bang that fills the entire universe and can be observed today with an average temperature of about 2.725 kelvin
+32253,cosmic_dust,clouds of particles or gases occurring throughout interstellar space
+32254,cosmic_radiation,radiation coming from outside the solar system
+32255,cosmic_ray,highly penetrating ionizing radiation of extraterrestrial origin; consisting chiefly of protons and alpha particles; collision with atmospheric particles results in rays and particles of many kinds
+32256,cosmic_time,the time covered by the physical formation and development of the universe
+32257,cosmid,(genetics) a large vector that is made from a bacteriophage and used to clone genes or gene fragments
+32258,cosmographer cosmographist,a scientist knowledgeable about cosmography
+32259,cosmography,the science that maps the general features of the universe; describes both heaven and earth (but without encroaching on geography or astronomy)
+32260,cosmography,a representation of the earth or the heavens; "the cosmography of Ptolemy"
+32261,cosmolatry,the worship of the cosmos
+32262,cosmological_constant,an arbitrary constant in the equations of general relativity theory
+32263,cosmologist,an astronomer who studies the evolution and space-time relations of the universe
+32264,cosmology,the metaphysical study of the origin and nature of the universe
+32265,cosmology cosmogony cosmogeny,the branch of astrophysics that studies the origin and evolution and structure of the universe
+32266,cosmopolitan cosmopolite,a sophisticated person who has travelled in many countries
+32267,cosmos cosmea,any of various mostly Mexican herbs of the genus Cosmos having radiate heads of variously colored flowers and pinnate leaves; popular fall-blooming annuals
+32268,cosmotron,a large proton synchrotron; uses frequency modulation of an electric field to accelerate protons
+32269,cost,the total spent for goods or services including money and time and labor
+32270,cost-benefit_analysis,an analysis of the cost effectiveness of different alternatives in order to see whether the benefits outweigh the costs
+32271,cost-of-living_allowance,an allowance for changes in the consumer price index
+32272,cost-of-living_benefit,a benefit that goes to anyone whose money receipts increase automatically as prices rise
+32273,cost-plus_contract,a contract in which the contractor is paid his total cost plus a stated percentage of profit
+32274,cost-pull_inflation,inflation caused by an increase in the costs of production
+32275,cost_accountant,a specialist in the systematic recording and analysis of the costs incident to production
+32276,cost_accounting,keeping account of the costs of items in production
+32277,cost_analysis,breaking down the costs of some operation and reporting on each factor separately
+32278,cost_cutting,the act of cutting costs
+32279,cost_ledger,ledger showing the accumulated costs classified in various ways
+32280,cost_of_capital capital_cost,the opportunity cost of the funds employed as the result of an investment decision; the rate of return that a business could earn if it chose another investment with equivalent risk
+32281,cost_of_living,average cost of basic necessities of life (as food and shelter and clothing); "a rise in the cost of living reflects the rate of inflation"
+32282,cost_overrun,excess of cost over budget; "the cost overrun necessitated an additional allocation of funds in the budget"
+32283,costa,a riblike part of a plant or animal (such as a middle rib of a leaf or a thickened vein of an insect wing)
+32284,costal_cartilage,the cartilages that connect the sternum and the ends of the ribs; its elasticity allows the chest to move in respiration
+32285,costal_groove,groove between the ribs where the nerves and blood vessels are
+32286,costermonger barrow-man barrow-boy,a hawker of fruit and vegetables from a barrow
+32287,costia Costia_necatrix,a flagellate that is the cause of the frequently fatal fish disease costiasis
+32288,costiasis,a fatal disease of freshwater fish caused by a flagellated protozoan invading the skin
+32289,costing,cost accounting
+32290,costliness dearness preciousness,the quality possessed by something with a great price or value
+32291,costmary,leaves used sparingly (because of bitter overtones) in sauces and soups and stuffings
+32292,costmary alecost bible_leaf mint_geranium balsam_herb Tanacetum_balsamita Chrysanthemum_balsamita,tansy-scented Eurasian perennial herb with buttonlike yellow flowers; used as potherb or salad green and sometimes for potpourri or tea or flavoring; sometimes placed in genus Chrysanthemum
+32293,costoaxillary_vein,one of several veins connecting intercostal veins with the lateral thoracic vein or the thoracoepigastric vein
+32294,costochondritis,inflammation at the junction of a rib and its cartilage
+32295,costs,pecuniary reimbursement to the winning party for the expenses of litigation
+32296,costume,the prevalent fashion of dress (including accessories and hair style as well as garments)
+32297,costume,unusual or period attire not characteristic of or appropriate to the time and place; "in spite of the heat he insisted on his woolen costume"
+32298,costume,the attire characteristic of a country or a time or a social class; "he wore his national costume"
+32299,costume,the attire worn in a play or at a fancy dress ball; "he won the prize for best costume"
+32300,costumier costumer costume_designer,someone who designs or supplies costumes (as for a play or masquerade)
+32301,costus_oil,a yellow volatile essential oil obtained from costusroot; used in perfumes
+32302,costusroot Saussurea_costus Saussurea_lappa,annual herb of the eastern Himalayas (Kashmir) having purple florets and a fragrant root that yields a volatile oil used in perfumery and for preserving furs
+32303,cosy tea_cosy cozy tea_cozy,a padded cloth covering to keep a teapot warm
+32304,cot camp_bed,a small bed that folds up for storage or transport
+32305,cotangent cotan,ratio of the adjacent to the opposite side of a right-angled triangle
+32306,cote,a small shelter for domestic animals (as sheep or pigeons)
+32307,cotenant,one of two or more tenants holding title to the same property
+32308,cotillion cotilion,a ball at which young ladies are presented to society
+32309,cotillion cotilion,a lively dance originating in France in the 18th century
+32310,cotinga chatterer,passerine bird of New World tropics
+32311,cotoneaster,any shrub of the genus Cotoneaster: erect or creeping shrubs having richly colored autumn foliage and many small white to pinkish flowers followed by tiny red or black fruits
+32312,cottage_cheese pot_cheese farm_cheese farmer's_cheese,mild white cheese made from curds of soured skim milk
+32313,cottage_industry,small-scale industry that can be carried on at home by family members using their own equipment
+32314,cottage_pie,a dish of minced meat topped with mashed potatoes
+32315,cottage_pink grass_pink Dianthus_plumarius,European pink cultivated for its very fragrant pink or rosy flowers
+32316,cottage_tent,a tent providing shelter for a family
+32317,cottage_tulip,any of several long-stemmed tulips that flower in May; have egg-shaped variously colored flowers
+32318,cottager cottage_dweller,someone who lives in a cottage
+32319,cotter cottar,a peasant farmer in the Scottish Highlands
+32320,cotter cottar,fastener consisting of a wedge or pin inserted through a slot to hold two other pieces together
+32321,cotter cottier,a medieval English villein
+32322,cotter_pin,a cotter consisting of a split pin that is secured (after passing through a hole) by splitting the ends apart
+32323,cotton,thread made of cotton fibers
+32324,cotton,fabric woven from cotton fibers
+32325,cotton cotton_fiber cotton_wool,soft silky fibers from cotton plants in their raw state
+32326,cotton cotton_plant,erect bushy mallow plant or small tree bearing bolls containing seeds with many long hairy fibers
+32327,cotton_ball,a fungus disease of cranberries
+32328,cotton_candy spun_sugar candyfloss,a candy made by spinning sugar that has been boiled to a high temperature
+32329,cotton_flannel Canton_flannel,a stout cotton fabric with nap on only one side
+32330,cotton_gin gin,a machine that separates the seeds from raw cotton fibers
+32331,cotton_grass cotton_rush,any sedge of the genus Eriophorum; north temperate bog plants with tufted spikes
+32332,cotton_mill,a textile mill for making cotton textiles
+32333,cotton_mouse Peromyscus_gossypinus,large dark mouse of southeastern United States
+32334,cotton_rat Sigmodon_hispidus,destructive long-haired burrowing rat of southern North America and Central America
+32335,cotton_rose Confederate_rose Confederate_rose_mallow Hibiscus_mutabilis,Chinese shrub or small tree having white or pink flowers becoming deep red at night; widely cultivated; naturalized in southeastern United States
+32336,cotton_rose cudweed filago,any plant of the genus Filago having capitate clusters of small woolly flower heads
+32337,cotton_stainer,a true bug: bug that damages and stains the lint of developing cotton
+32338,cotton_strain,feeds primarily on cotton
+32339,cotton_thistle woolly_thistle Scotch_thistle Onopordum_acanthium Onopordon_acanthium,biennial Eurasian white hairy thistle having pale purple flowers; naturalized in North America
+32340,cottonseed,seed of cotton plants; source of cottonseed oil
+32341,cottonseed_cake cotton_cake,the solid matter remaining after oil has been pressed from cottonseeds
+32342,cottonseed_oil,edible oil pressed from cottonseeds
+32343,cottonweed,any of various plants of the genus Froelichia found in sandy soils and on rocky slopes in warmer regions of America; grown for their spikes of woolly white flowers
+32344,cottonwick Haemulon_malanurum,of warm Atlantic waters
+32345,cottonwood,any of several North American trees of the genus Populus having a tuft of cottony hairs on the seed
+32346,cotyledon seed_leaf,embryonic leaf in seed-bearing plants
+32347,coucal,Old World ground-living cuckoo having a long dagger-like hind claw
+32348,couch,a flat coat of paint or varnish used by artists as a primer
+32349,couch,a narrow bed on which a patient lies during psychiatric or psychoanalytic treatment
+32350,couch_potato,an idler who spends much time on a couch (usually watching television)
+32351,couchette,a compartment on a European passenger train; contains 4 to 6 berths for sleeping
+32352,coude_telescope coude_system,a reflecting telescope so constructed that the light is led to a plate holder or spectrograph
+32353,cougar puma catamount mountain_lion painter panther Felis_concolor,large American feline resembling a lion
+32354,cough coughing,a sudden noisy expulsion of air from the lungs that clears the air passages; a common symptom of upper respiratory infection or bronchitis or pneumonia or tuberculosis
+32355,cough_drop troche pastille pastil,a medicated lozenge used to soothe the throat
+32356,coughing_up,the act of expelling (food or phlegm) by coughing
+32357,coulisse,a timber member grooved to take a sliding panel
+32358,coulisse wing_flat,a flat situated in the wings
+32359,coulomb C ampere-second,a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second
+32360,coumarone-indene_resin coumarone_resin,a thermoplastic resin obtained by polymerization of indene and coumarone; used in coatings and paint and asphalt tile
+32361,council,(Christianity) an assembly of theologians and bishops and other representatives of different churches or dioceses that is convened to regulate matters of discipline or doctrine
+32362,council,a body serving in an administrative capacity; "student council"
+32363,council,a meeting of people for consultation; "emergency council"
+32364,council_member councillor,a member of a council
+32365,council_tax,a tax levied on households by local authorities; based on the estimated value of the property and the number of people living in it
+32366,councillorship councilorship,the position of council member
+32367,councilman,a man who is a council member
+32368,councilwoman,a woman who is a council member
+32369,counselor counsellor,someone who has supervisory duties at a summer camp
+32370,counselor counsellor,someone who gives advice about problems
+32371,counselorship counsellorship,the position of counselor
+32372,count,the total number counted; "a blood count"
+32373,count,a nobleman (in various countries) having rank equal to a British earl
+32374,count counting numeration enumeration reckoning tally,the act of counting; reciting numbers in ascending order; "the counting continued for several hours"
+32375,count_noun,a noun that forms plurals
+32376,count_palatine,a count who exercised royal authority in his own domain
+32377,count_per_minute counts/minute,frequency per minute
+32378,countdown,counting backward from an arbitrary number to indicate the time remaining before some event (such as launching a space vehicle)
+32379,countenance physiognomy phiz visage kisser smiler mug,the human face (`kisser' and `smiler' and `mug' are informal terms for `face' and `phiz' is British)
+32380,countenance visage,the appearance conveyed by a person's face; "a pleasant countenance"; "a stern visage"
+32381,counter,a person who counts things
+32382,counter,(computer science) a register whose contents go through a regular series of states (usually states indicating consecutive integers)
+32383,counter,game equipment (as a piece of wood, plastic, or ivory) used for keeping a count or reserving a space in various card or board games
+32384,counter,table consisting of a horizontal surface over which business is transacted
+32385,counter heel_counter,a piece of leather forming the back of a shoe or boot; "a counter may be used to stiffen the material around the heel and to give support to the foot"
+32386,counter tabulator,a calculator that keeps a record of the number of times something happens
+32387,counter-sabotage,counterintelligence designed to detect and counteract sabotage
+32388,counter_check,a blank check provided by a bank for the convenience of customers who are making withdrawals
+32389,counter_conditioning,conditioning in which a second incompatible response is conditioned to an already conditioned stimulus; "counter conditioning lies behind many of the procedures used in behavior therapy"
+32390,counter_tube,a measuring instrument for counting individual ionizing events
+32391,counterargument,an argument offered in opposition to another argument
+32392,counterattack countermove,an attack by a defending force against an attacking enemy force in order to regain lost ground or cut off enemy advance units etc.
+32393,counterattack counterplay,(chess) an attack that is intended to counter the opponent's advantage in another part of the board
+32394,counterattraction,a rival attraction
+32395,counterbalance offset,a compensating equivalent
+32396,counterbattery_fire,fire delivered to neutralize or destroy indirect fire weapon systems
+32397,counterblast,a vigorous and unrestrained response; "her tirade provoked a counterblast from her husband"
+32398,counterblow,a return blow; a retaliatory blow
+32399,counterbombardment,bombardment intended to destroy or neutralize enemy weapons
+32400,counterbore countersink countersink_bit,a bit for enlarging the upper part of a hole
+32401,countercharge,a charge brought by an accused person against the accuser
+32402,countercharge,a retaliatory charge
+32403,countercheck,a check that restrains another check
+32404,countercheck double_check,something that checks the correctness of a previous check
+32405,counterclaim,a claim filed in opposition to another claim in a legal action
+32406,countercoup,a sudden and decisive overthrow of a government that gained power by a coup d'etat
+32407,counterculture,a culture with lifestyles and values opposed to those of the established culture
+32408,countercurrent crosscurrent,actions counter to the main group activity; "political crosscurrents disrupted the conference"
+32409,counterdemonstration,a demonstration held in opposition to another demonstration; "supporters of the president organized a counterdemonstration in his support"
+32410,counterdemonstrator,someone who demonstrates in opposition to another demonstration
+32411,counterespionage,spying on the spies
+32412,counterexample,refutation by example
+32413,counterfactuality,the quality of being contrary to fact
+32414,counterfeit forgery,a copy that is represented as the original
+32415,counterfire,fire intended to neutralize or destroy enemy weapons
+32416,counterglow gegenschein,a faint spot of light in the night sky that appears directly opposite the position of the sun; a reflection of sunlight by micrometeoric material in space
+32417,counterintelligence,intelligence activities concerned with identifying and counteracting the threat to security posed by hostile intelligence organizations or by individuals engaged in espionage or sabotage or subversion or terrorism
+32418,counterirritant,a medicine applied locally to produce superficial inflammation in order to reduce deeper inflammation
+32419,countermand,a contrary command cancelling or reversing a previous command
+32420,countermarch,(military) a march in the reverse direction or back along the same route
+32421,countermeasure,an action taken to offset another action
+32422,countermine,(military) a tunnel dug to defeat similar activities by the enemy
+32423,countermortar_fire,mortar fire intended to destroy or neutralize enemy weapons
+32424,counteroffensive,a large scale offensive (more than a counterattack) undertaken by a defending force to seize the initiative from an attacking force
+32425,counteroffer,an offer made by someone who has rejected a prior offer
+32426,counterpart opposite_number vis-a-vis,a person or thing having the same function or characteristics as another
+32427,counterpart similitude twin,a duplicate copy
+32428,counterperson counterwoman counterman,someone who attends a counter (as in a diner)
+32429,counterplea,a plaintiff's reply to a defendant's plea
+32430,counterplot counterplan,a plot intended to subvert another plot
+32431,counterpoint,a musical form involving the simultaneous sound of two or more melodies
+32432,counterpreparation_fire,intensive prearranged fire delivered when the immanence of enemy attack is discovered
+32433,counterproposal,a proposal offered as an alternative to an earlier proposal
+32434,counterpunch parry counter,a return punch (especially by a boxer)
+32435,counterreformation,a reformation intended to counter the results of a prior reformation
+32436,counterrevolution,a revolution whose aim is to reverse the changes introduced by a previous revolution
+32437,counterrevolutionist counter-revolutionist counterrevolutionary,a revolutionary whose aim is to reverse the changes introduced by an earlier revolution
+32438,countershot,a return shot; a retaliatory shot
+32439,countersignature countersign,a second confirming signature endorsing a document already signed
+32440,countersink,a hole (usually in wood) with the top part enlarged so that a screw or bolt will fit into it and lie below the surface
+32441,counterspy mole,a spy who works against enemy espionage
+32442,counterstain,a stain of contrasting color that is used when the principal stain does not show the structure clearly
+32443,countersubversion,the aspect of counterintelligence designed to detect and prevent subversive activities
+32444,countersuit,a suit brought against someone who has sued you
+32445,countertenor,a male singer with a voice above that of a tenor
+32446,countertenor alto,the highest adult male singing voice
+32447,counterterrorism,a strategy intended to prevent or counter terrorism
+32448,counterterrorist,someone who attempts to prevent terrorism
+32449,countertop,the top side of a counter
+32450,countertransference,the psychoanalyst's displacement of emotion onto the patient or more generally the psychoanalyst's emotional involvement in the therapeutic interaction
+32451,countervailing_duty,a duty imposed to offset subsidies by foreign governments
+32452,counterweight counterbalance counterpoise balance equalizer equaliser,a weight that balances another weight
+32453,countess,female equivalent of a count or earl
+32454,countinghouse,office used by the accountants of a business
+32455,country rural_area,an area outside of cities and towns; "his poetry celebrated the slower pace of life in the country"
+32456,country state land,the territory occupied by a nation; "he returned to the land of his birth"; "he visited several European countries"
+32457,country-dance country_dancing contredanse contra_danse contradance,a type of folk dance in which couples are arranged in sets or face one another in a line
+32458,country_borage Coleus_aromaticus Coleus_amboinicus Plectranthus_amboinicus,an aromatic fleshy herb of India and Ceylon to South Africa; sometimes placed in genus Plectranthus
+32459,country_club,a suburban club for recreation and socializing
+32460,country_doctor,a doctor who practices in the country (rather than in a city) usually remote from a modern hospital; "do country doctors still make house calls?"
+32461,country_house,a house (usually large and impressive) on an estate in the country
+32462,country_music country_and_western C_and_W,a simple style of folk music heard mostly in the southern United States; usually played on stringed instruments
+32463,country_people countryfolk,people living in the same country; compatriots
+32464,country_people countryfolk,people raised in or living in a rural environment; rustics
+32465,country_store general_store trading_post,a retail store serving a sparsely populated region; usually stocked with a wide variety of merchandise
+32466,countryman,a man from your own country
+32467,countryman ruralist,a man who lives in the country and has country ways
+32468,countryseat,an estate in the country
+32469,countryside,rural regions
+32470,countrywoman,a woman who lives in the country and has country ways
+32471,countrywoman,a woman from your own country
+32472,county,(United States) the largest administrative district within a state; "the county plans to build a new road"
+32473,county,(United Kingdom) a region created by territorial division for the purpose of local government; "the county has a population of 12,345 people"
+32474,county_agent agricultural_agent extension_agent,an advisor employed by the government to assist people in rural areas with methods of farming and home economics
+32475,county_council,the elected governing body of a county
+32476,county_line,the boundary between two counties
+32477,county_palatine,the territory of a count palatine
+32478,county_seat county_courthouse,the town or city that is the seat of government for a county
+32479,county_town shire_town,the town or city that is the seat of government for a shire
+32480,coup,a brilliant and notable success
+32481,coup_d'etat coup putsch takeover,a sudden and decisive change of government illegally or by force
+32482,coup_de_theatre,a dramatic surprise
+32483,coup_de_theatre,a sensational bit of stagecraft
+32484,coup_de_theatre,a highly successful theatrical production
+32485,coupe,a car with two doors and front seats and a luggage compartment
+32486,couple,a small indefinite number; "he's coming for a couple of days"
+32487,couple,(physics) something joined by two equal and opposite forces that act along parallel lines
+32488,couple mates match,a pair of people who live together; "a married couple from Chicago"
+32489,couple pair twosome twain brace span yoke couplet distich duo duet dyad duad,two items of the same kind
+32490,couple twosome duo duet,a pair who associate with one another; "the engaged couple"; "an inseparable twosome"
+32491,couplet,a stanza consisting of two successive lines of verse; usually rhymed
+32492,coupling coupler,a mechanical device that serves to connect the ends of adjacent objects
+32493,coupling mating pairing conjugation union sexual_union,the act of pairing a male and female for reproductive purposes; "the casual couplings of adolescents"; "the mating of some species occurs only in the spring"
+32494,coupon,a test sample of some substance
+32495,coupon voucher,a negotiable certificate that can be detached and redeemed as needed
+32496,coupon_bond bearer_bond,a bond issued with detachable coupons that must be presented to the issuer for interest payments
+32497,courage courageousness bravery braveness,a quality of spirit that enables you to face danger or pain without showing fear
+32498,courante,a court dance of the 16th century; consisted of short advances and retreats
+32499,courbaril Hymenaea_courbaril,West Indian locust tree having pinnate leaves and panicles of large white or purplish flowers; yields very hard tough wood
+32500,courbaril_copal,resin from the courbaril tree
+32501,coureur_de_bois,a French Canadian trapper
+32502,courlan Aramus_guarauna,wading bird of South America and Central America
+32503,course,part of a meal served at one time; "she prepared a three course meal"
+32504,course,facility consisting of a circumscribed area of land or water laid out for a sport; "the course had only nine holes"; "the course was less than a mile"
+32505,course course_of_action,a mode of action; "if you persist in that course you will surely fail"; "once a nation is embarked on a course of action it becomes extremely difficult for any retraction to take place"
+32506,course course_of_study course_of_instruction class,education imparted in a series of lessons or meetings; "he took a course in basket weaving"; "flirting is not unknown in college classes"
+32507,course line,a connected series of events or actions or developments; "the government took a firm course"; "historians can only point out those lines for which evidence is available"
+32508,course row,(construction) a layer of masonry; "a course of bricks"
+32509,course trend,general line of orientation; "the river takes a southern course"; "the northeastern trend of the coast"
+32510,course_catalog course_catalogue prospectus,a catalog listing the courses offered by a college or university
+32511,course_of_lectures,a series of lectures dealing with a subject
+32512,course_of_study program programme curriculum syllabus,an integrated course of academic studies; "he was admitted to a new program at the university"
+32513,course_session class_period recitation,a regularly scheduled session as part of a course of study
+32514,courser,a huntsman who hunts small animals with fast dogs that use sight rather than scent to follow their prey
+32515,courser,a dog trained for coursing
+32516,courser,swift-footed terrestrial plover-like bird of southern Asia and Africa; related to the pratincoles
+32517,coursework,work assigned to and done by a student during a course of study; usually it is evaluated as part of the student's grade in the course
+32518,coursing,hunting with dogs (usually greyhounds) that are trained to chase game (such as hares) by sight instead of by scent
+32519,court,the residence of a sovereign or nobleman; "the king will visit the duke's court"
+32520,court,a specially marked horizontal area within which a game is played; "players had to reserve a court in advance"
+32521,court courtroom,a room in which a lawcourt sits; "television cameras were admitted in the courtroom"
+32522,court courtyard,an area wholly or partly surrounded by walls or buildings; "the house was built around an inner court"
+32523,court homage,respectful deference; "pay court to the emperor"
+32524,court lawcourt court_of_law law_court court_of_justice,a tribunal that is presided over by a magistrate or by one or more judges who administer justice according to the laws
+32525,court royal_court,the family and retinue of a sovereign or prince
+32526,court royal_court,the sovereign and his advisers who are the governing power of a state
+32527,court tribunal judicature,an assembly (including one or more judges) to conduct judicial business
+32528,court-martial,a military court to try members of the armed services who are accused of serious breaches of martial law
+32529,court-martial,a trial that is conducted by a military court
+32530,court_game,an athletic game played on a court
+32531,court_order,a writ issued by a court of law requiring a person to do something or to refrain from doing something
+32532,court_plaster,a plaster composed of isinglass on silk; formerly used to dress superficial wounds
+32533,courtesy,a courteous or respectful or considerate remark
+32534,courtesy,a courteous or respectful or considerate act
+32535,courtesy good_manners,a courteous manner
+32536,courthouse,a government building that houses the offices of a county government
+32537,courthouse,a building that houses judicial courts
+32538,courtier,an attendant at the court of a sovereign
+32539,courtliness,elegance suggestive of a royal court
+32540,courtly_love,(Middle Ages) a highly conventionalized code of conduct for lovers
+32541,courtship wooing courting suit,a man's courting of a woman; seeking the affections of a woman (usually with the hope of marriage); "its was a brief and intense courtship"
+32542,couscous,a spicy dish that originated in northern Africa; consists of pasta steamed with a meat and vegetable stew
+32543,couscous,a pasta made in northern Africa of crushed and steamed semolina
+32544,cousin first_cousin cousin-german full_cousin,the child of your aunt or uncle
+32545,couth,(used facetiously) refinement
+32546,couture,high fashion designing and dressmaking
+32547,couturier fashion_designer clothes_designer designer,someone who designs clothing
+32548,couvade,a custom among some peoples whereby the husband of a pregnant wife is put to bed at the time of bearing the child
+32549,couverture,chocolate that contains at least 32 percent cocoa butter
+32550,covalence covalency,valence characterized by the sharing of electrons in a chemical compound; the number of pairs of electrons an atom can share
+32551,covalent_bond,a chemical bond that involves sharing a pair of electrons between atoms in a molecule
+32552,covariance,(statistics) the mean value of the product of the deviations of two variates from their respective means
+32553,covariation,(statistics) correlated variation
+32554,cove,small or narrow cave in the side of a cliff or mountain
+32555,cove,a small inlet
+32556,coven,an assembly of witches; usually 13 witches
+32557,covenant,(Bible) an agreement between God and his people in which God makes certain promises and requires certain behavior from them in return
+32558,covenant compact concordat,a signed written agreement between two or more parties (nations) to perform some action
+32559,cover,a false identity and background (especially one created for an undercover agent); "her new name and passport are cover for her next assignment"
+32560,cover cover_version cover_song,a recording of a song that was first recorded or made popular by somebody else; "they made a cover of a Beatles' song"
+32561,cover covering screening masking,the act of concealing the existence of something by obstructing the view of it; "the cover concealed their guns from enemy aircraft"
+32562,cover covering_fire,fire that makes it difficult for the enemy to fire on your own individuals or formations; "artillery provided covering fire for the withdrawal"
+32563,cover-up,concealment that attempts to prevent something scandalous from becoming public
+32564,cover_charge cover,a fixed charge by a restaurant or nightclub over and above the charge for food and drink
+32565,cover_crop,crop planted to prevent soil erosion and provide green manure
+32566,cover_girl pin-up lovely,a very pretty girl who works as a photographer's model
+32567,cover_glass cover_slip,a small and very thin piece of glass used to cover the specimen on a microscope slide
+32568,cover_plate,covering consisting of a plate used to cover over or close in a chamber or receptacle
+32569,coverage,the extent to which something is covered; "the dictionary's coverage of standard English is excellent"
+32570,coverage insurance_coverage,the total amount and type of insurance carried
+32571,coverage reporting reportage,the news as presented by reporters for newspapers or radio or television; "they accused the paper of biased coverage of race relations"
+32572,coverall,a loose-fitting protective garment that is worn over other clothing
+32573,covered_bridge,a bridge whose passageway is protected by a roof and enclosing sides
+32574,covered_couch,a litter with a cover for privacy
+32575,covered_option,a put or call option backed by the shares underlying the option
+32576,covered_smut,a smut fungus causing a smut disease of grains in which the spore masses are covered or held together by the grain membranes
+32577,covered_wagon Conestoga_wagon Conestoga prairie_wagon prairie_schooner,a large wagon with broad wheels and an arched canvas top; used by the United States pioneers to cross the prairies in the 19th century
+32578,covering,an artifact that covers something else (usually to protect or shelter or conceal it)
+32579,covering,the act of protecting something by covering it
+32580,covering natural_covering cover,a natural object that covers or envelops; "under a covering of dust"; "the fox was flushed from its cover"
+32581,covering_letter cover_letter,a letter sent along with other documents to provide additional information
+32582,covering_material,a material used by builders to cover surfaces
+32583,coverlet,a decorative bedspread (usually quilted)
+32584,covert,a flock of coots
+32585,covert_operation,an intelligence operation so planned as to permit plausible denial by the sponsor
+32586,covetousness,an envious eagerness to possess something
+32587,covey,a small collection of people
+32588,covey,a small flock of grouse or partridge
+32589,cow,a large unpleasant woman
+32590,cow,mature female of mammals of which the male is called `bull'
+32591,cow moo-cow,female of domestic cattle: "`moo-cow' is a child's term"
+32592,cow_manure,cow excreta used as fertilizer
+32593,cow_parsley wild_chervil Anthriscus_sylvestris,coarse erect biennial Old World herb introduced as a weed in eastern North America
+32594,cow_parsnip hogweed Heracleum_sphondylium,tall coarse plant having thick stems and cluster of white to purple flowers
+32595,cow_pasture,a pasture for cows
+32596,cow_pen cattle_pen corral,a pen for cattle
+32597,cow_pie cowpie,fecal matter of a cow
+32598,cow_pony,a light saddle horse trained for herding cattle
+32599,cow_shark six-gilled_shark Hexanchus_griseus,large primitive shark widely distributed in warm seas
+32600,cow_town cowtown,a small town in a cattle-raising area of western North America
+32601,cowage,pods of the cowage plant or the stinging hairs covering them; used as a vermifuge when mixed with e.g. honey
+32602,cowage velvet_bean Bengal_bean Benghal_bean Florida_bean Mucuna_pruriens_utilis Mucuna_deeringiana Mucuna_aterrima Stizolobium_deeringiana,the annual woody vine of Asia having long clusters of purplish flowers and densely hairy pods; cultivated in southern United States for green manure and grazing
+32603,coward,a person who shows fear or timidity
+32604,cowardice cowardliness,the trait of lacking courage
+32605,cowbarn cowshed cow_barn cowhouse byre,a barn for cows
+32606,cowbell,a bell hung around the neck of cow so that the cow can be easily located
+32607,cowberry mountain_cranberry lingonberry lingenberry lingberry foxberry Vaccinium_vitis-idaea,low evergreen shrub of high north temperate regions of Europe and Asia and America bearing red edible berries
+32608,cowbird,North American blackbird that follows cattle and lays eggs in other birds' nests
+32609,cowboy,someone who is reckless or irresponsible (especially in driving vehicles)
+32610,cowboy cowpuncher puncher cowman cattleman cowpoke cowhand cowherd,a hired hand who tends cattle and performs other duties on horseback
+32611,cowboy rodeo_rider,a performer who gives exhibitions of riding and roping and bulldogging
+32612,cowboy_boot,a boot with a high arch and fancy stitching; worn by American cowboys
+32613,cowboy_hat ten-gallon_hat,a hat with a wide brim and a soft crown; worn by American ranch hands
+32614,cowfish Lactophrys_quadricornis,trunkfish having hornlike spines over the eyes
+32615,cowgirl,a woman cowboy
+32616,cowherb cow_cockle Vaccaria_hispanica Vaccaria_pyramidata Saponaria_vaccaria,European annual with pale rose-colored flowers; cultivated flower or self-sown grainfield weed; introduced in North America; sometimes classified as a soapwort
+32617,cowhide,the hide of a cow
+32618,cowhide,a heavy flexible whip braided from leather made from the hide of a cow
+32619,cowhide cowskin,leather made from the hide of a cow
+32620,cowl,a loose hood or hooded robe (as worn by a monk)
+32621,cowlick,a tuft of hair that grows in a different direction from the rest of the hair and usually will not lie flat
+32622,cownose_ray cow-nosed_ray Rhinoptera_bonasus,large ray found along eastern coast of North America
+32623,cowpea black-eyed_pea,fruit or seed of the cowpea plant
+32624,cowpea cowpea_plant black-eyed_pea Vigna_unguiculata Vigna_sinensis,sprawling Old World annual cultivated especially in southern United States for food and forage and green manure
+32625,cowpen_daisy golden_crownbeard golden_crown_beard butter_daisy Verbesina_encelioides Ximenesia_encelioides,coarse greyish-green annual yellow-flowered herb; southwestern United States to Mexico
+32626,cowpox vaccinia,a viral disease of cattle causing a mild skin disease affecting the udder; formerly used to inoculate humans against smallpox
+32627,cowrie cowry,any of numerous tropical marine gastropods of the genus Cypraea having highly polished usually brightly marked shells
+32628,cows'_milk,milk obtained from dairy cows
+32629,cowslip paigle Primula_veris,early spring flower common in British isles having fragrant yellow or sometimes purple flowers
+32630,coxcomb cockscomb,a conceited dandy who is overly impressed by his own accomplishments
+32631,coxsackievirus Coxsackie_virus,enterovirus causing a disease resembling poliomyelitis but without paralysis
+32632,coxswain cox,the helmsman of a ship's boat or a racing crew
+32633,coydog,offspring of a coyote and a dog
+32634,coyness demureness,the affectation of being demure in a provocative way
+32635,coyol coyol_palm Acrocomia_vinifera,tropical American palm having edible nuts and yielding a useful fiber
+32636,coyote,someone who smuggles illegal immigrants into the United States (usually across the Mexican border)
+32637,coyote,a forest fire fighter who is sent to battle remote and severe forest fires (often for days at a time)
+32638,coyote prairie_wolf brush_wolf Canis_latrans,small wolf native to western North America
+32639,coyote_brush coyote_bush chaparral_broom kidney_wort Baccharis_pilularis,widely spreading evergreen shrub of southwestern United States with flower heads in a leafy panicle
+32640,coypu nutria Myocastor_coypus,aquatic South American rodent resembling a small beaver; bred for its fur
+32641,coziness cosiness snugness,a state of warm snug comfort
+32642,crab,decapod having eyes on short stalks and a broad flattened carapace with a small abdomen folded under the thorax and pincers
+32643,crab,a stroke of the oar that either misses the water or digs too deeply; "he caught a crab and lost the race"
+32644,crab crabby_person,a quarrelsome grouch
+32645,crab crabmeat,the edible flesh of any of various crabs
+32646,crab-eating_dog crab-eating_fox Dusicyon_cancrivorus,wild dog of northern South America
+32647,crab-eating_macaque croo_monkey Macaca_irus,monkey of southeast Asia, Borneo and the Philippines
+32648,crab-eating_opossum,South American opossum
+32649,crab-eating_raccoon Procyon_cancrivorus,a South American raccoon
+32650,crab_Louis,lettuce and crabmeat dressed with sauce Louis
+32651,crab_apple crabapple,small sour apple; suitable for preserving; "crabapples make a tangy jelly"
+32652,crab_apple crabapple cultivated_crab_apple,any of numerous varieties of crab apples cultivated for their small acidic (usually bright red) fruit used for preserves or as ornamentals for their blossoms
+32653,crab_cactus Thanksgiving_cactus Zygocactus_truncatus Schlumbergera_truncatus,South American jointed cactus with usually red flowers; often cultivated as a houseplant; sometimes classified as genus Schlumbergera
+32654,crab_cocktail,a cocktail of cold cooked crabmeat and a sauce
+32655,crab_legs,legs of especially Alaska king crabs
+32656,crab_louse pubic_louse crab Phthirius_pubis,a louse that infests the pubic region of the human body
+32657,crabapple_jelly,a tart apple jelly made from crab apples
+32658,crabbiness crabbedness crossness,a disposition to be ill-tempered
+32659,crabeater_seal crab-eating_seal,silvery grey Antarctic seal subsisting on crustaceans
+32660,crabgrass crab_grass finger_grass,grasses with creeping stems that root freely; a pest in lawns
+32661,crack,a blemish resulting from a break without complete separation of the parts; "there was a crack in the mirror"
+32662,crack cleft crevice fissure scissure,a long narrow opening
+32663,crack crack_cocaine tornado,a purified and potent form of cocaine that is smoked rather than snorted; highly addictive
+32664,crack cracking snap,a sudden sharp noise; "the crack of a whip"; "he heard the cracking of the ice"; "he can hear the snap of a twig"
+32665,crack fling go pass whirl offer,a usually brief attempt; "he took a crack at it"; "I gave it a whirl"
+32666,crack_addict binger,someone addicted to crack cocaine
+32667,crack_willow brittle_willow snap_willow Salix_fragilis,large willow tree with stiff branches that are easily broken
+32668,crackdown,severely repressive actions
+32669,cracked-wheat_bread,bread made with cracked wheat that has been ground fine
+32670,cracked_wheat,grains of wheat that have been crushed into small pieces
+32671,cracker,a programmer who cracks (gains unauthorized access to) computers, typically to do malicious things; "crackers are often mistakenly called hackers"
+32672,cracker,a thin crisp wafer made of flour and water with or without leavening and shortening; unsweetened or semisweet
+32673,cracker snapper cracker_bonbon,a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends
+32674,cracker_crumbs,crumbs of crackers used especially for coating or thickening
+32675,cracking,the process whereby heavy molecules of naphtha or petroleum are broken down into hydrocarbons of lower molecular weight (especially in the oil-refining process)
+32676,crackle crackleware crackle_china,glazed china with a network of fine cracks on the surface
+32677,crackle crackling crepitation,the sharp sound of snapping noises
+32678,cracklings,the crisp residue left after lard has been rendered
+32679,crackpot crank nut nut_case fruitcake screwball,a whimsically eccentric person
+32680,cradle,birth of a person; "he was taught from the cradle never to cry"
+32681,cradle,a baby bed with sides and rockers
+32682,cradle_cap,a dermatitis of the scalp that is common in infants
+32683,craft,a vehicle designed for navigation in or on water or air or through outer space
+32684,craft craftiness cunning foxiness guile slyness wiliness,shrewdness as demonstrated by being skilled in deception
+32685,craft craftsmanship workmanship,skill in an occupation or trade
+32686,craft trade,people who perform a particular kind of skilled work; "he represented the craft of brewers"; "as they say in the trade"
+32687,craft_fair,a fair at which objects made by craftsmen are offered for sale
+32688,craft_union,a labor union whose membership is restricted to workers in a particular craft
+32689,craftiness deceitfulness guile,the quality of being crafty
+32690,craftsman,a professional whose work is consistently of high quality; "as an actor he was a consummate craftsman"
+32691,craftsman artisan journeyman artificer,a skilled worker who practices some trade or handicraft
+32692,craftsman crafter,a creator of great skill in the manual arts; "the jewelry was made by internationally famous craftsmen"
+32693,crag,a steep rugged rock or cliff
+32694,crake,any of several short-billed Old World rails
+32695,crammer,a student who crams
+32696,crammer,a teacher who is paid to cram students for examinations
+32697,crammer,a special school where students are crammed
+32698,crammer,a textbook designed for cramming
+32699,cramp,a clamp for holding pieces of wood together while they are glued
+32700,cramp cramp_iron,a strip of metal with ends bent at right angles; used to hold masonry together
+32701,crampon crampoon,a hinged pair of curved iron bars; used to raise heavy objects
+32702,crampon crampoon climbing_iron climber,an iron spike attached to the shoe to prevent slipping on ice when walking or climbing
+32703,cran,a capacity unit used for measuring fresh herring
+32704,cranberry,any of numerous shrubs of genus Vaccinium bearing cranberries
+32705,cranberry,very tart red berry used for sauce or juice
+32706,cranberry_bush cranberry_tree American_cranberry_bush highbush_cranberry Viburnum_trilobum,deciduous North American shrub or small tree having three-lobed leaves and red berries
+32707,cranberry_culture,the cultivation of cranberries
+32708,cranberry_juice,the juice of cranberries (always diluted and sweetened)
+32709,cranberry_sauce,sauce made of cranberries and sugar
+32710,crane,lifts and moves heavy objects; lifting tackle is suspended from a pivoted boom that rotates around a vertical axis
+32711,crane,large long-necked wading bird of marshes and plains in many parts of the world
+32712,crane_fly daddy_longlegs,long-legged slender flies that resemble large mosquitoes but do not bite
+32713,cranesbill crane's_bill,any of numerous geraniums of the genus Geranium
+32714,cranial_cavity intracranial_cavity,the cavity enclosed by the cranium
+32715,cranial_nerve,any of the 12 paired nerves that originate in the brain stem
+32716,craniology,the scientific study of the skulls of various human races
+32717,craniometer,an instrument for measuring skull sizes
+32718,craniometric_point,a landmark on the skull from which craniometric measurements can be taken
+32719,craniometry,the branch of physical anthropology dealing with the study and measurement of dry skulls after removal of its soft parts
+32720,craniotomy,a surgical opening through the skull
+32721,cranium braincase brainpan,the part of the skull that encloses the brain
+32722,crank starter,a hand tool consisting of a rotating shaft with parallel handle
+32723,crank_call,a hostile telephone call (from a crank)
+32724,crank_handle starting_handle,crank used to start an engine
+32725,crank_letter,a hostile (usually anonymous) letter
+32726,crankcase,housing for a crankshaft
+32727,crankiness crotchetiness contrariness grumpiness,a fussy and eccentric disposition
+32728,crankshaft,a rotating shaft driven by (or driving) a crank
+32729,cranny,a small opening or crevice (especially in a rock face or wall)
+32730,crap dirt shit shite poop turd,obscene terms for feces
+32731,crap_shooting crapshoot crap_game,playing craps
+32732,crapaud South_American_bullfrog Leptodactylus_pentadactylus,large toothed frog of South America and Central America resembling the bullfrog
+32733,crape crepe French_pancake,small very thin pancake
+32734,crape_fern Prince-of-Wales_fern Prince-of-Wales_feather Prince-of-Wales_plume Leptopteris_superba Todea_superba,New Zealand with pinnate fronds and a densely woolly stalks; sometimes included in genus Todea
+32735,crape_jasmine crepe_jasmine crepe_gardenia pinwheel_flower East_Indian_rosebay Adam's_apple Nero's_crown coffee_rose Tabernaemontana_divaricate,tropical shrub having glossy foliage and fragrant nocturnal flowers with crimped or wavy corollas; northern India to Thailand
+32736,crape_myrtle crepe_myrtle crepe_flower Lagerstroemia_indica,ornamental shrub from eastern India commonly planted in the southern United States
+32737,crappie,small sunfishes of the genus Pomoxis of central United States rivers
+32738,crappie,small sunfishes of central United States rivers
+32739,craps,a gambling game played with two dice; a first throw of 7 or 11 wins and a first throw of 2, 3, or 12 loses and a first throw of any other number must be repeated to win before a 7 is thrown, which loses the bet and the dice
+32740,craps snake_eyes,expressions used when when two dice are thrown and both come up showing one spot
+32741,crapshoot,a risky and uncertain venture; "getting admitted to the college of your choice has become a crapshoot"
+32742,crapshooter,a gambler who plays the game of craps
+32743,crash,(computer science) an event that causes a computer system to become inoperative; "the crash occurred during a thunderstorm and the system has been down ever since"
+32744,crash collapse,a sudden large decline of business or the prices of stocks (especially one that causes additional failures)
+32745,crash smash,the act of colliding with something; "his crash through the window"; "the fullback's smash into the defensive line"
+32746,crash wreck,a serious accident (usually involving one or more vehicles); "they are still investigating the crash of the TWA plane"
+32747,crash_barrier,a strong protective barrier that is erected around a racetrack or in the middle of a dual-lane highway in order to reduce the likelihood of severe accidents
+32748,crash_course crash_program crash_programme,a rapid and intense course of training or research (usually undertaken in an emergency); "he took a crash course in Italian on his way to Italy"; "his first job was a crash course in survival and in learning how to get along with people"; "a crash programme is needed to create new jobs"
+32749,crash_dive,a rapid descent by a submarine
+32750,crash_helmet,a padded helmet worn by people riding bicycles or motorcycles; protects the head in case of accidents
+32751,crash_landing,an emergency landing under circumstances where a normal landing is impossible (usually damaging the aircraft)
+32752,crassness crassitude,the quality of being crass--devoid of refinement
+32753,crate,a rugged box (usually made of wood); used for shipping
+32754,crate crateful,the quantity contained in a crate
+32755,crater,a bowl-shaped depression formed by the impact of a meteorite or bomb
+32756,craton,the part of a continent that is stable and forms the central mass of the continent; typically Precambrian
+32757,cravat,neckwear worn in a slipknot with long ends overlapping vertically in front
+32758,cravenness,meanspirited cowardice
+32759,craving,an intense desire for some particular thing
+32760,craw crop,a pouch in many birds and some lower animals that resembles a stomach for storage and preliminary maceration of food
+32761,crawl,a very slow movement; "the traffic advanced at a crawl"
+32762,crawl crawling creep creeping,a slow mode of locomotion on hands and knees or dragging the body; "a crawl was all that the injured man could manage"; "the traffic moved at a creep"
+32763,crawl front_crawl Australian_crawl,a swimming stroke; arms are moved alternately overhead accompanied by a flutter kick
+32764,crawler creeper,a person who crawls or creeps along the ground
+32765,crawlspace crawl_space,low space beneath a floor of a building; gives workers access to wiring or plumbing
+32766,crayfish crawfish crawdad crawdaddy,small freshwater decapod crustacean that resembles a lobster
+32767,crayfish crawfish crawdad ecrevisse,tiny lobster-like crustaceans usually boiled briefly
+32768,crayon wax_crayon,writing implement consisting of a colored stick of composition wax used for writing and drawing
+32769,craze,a fine crack in a glaze or other surface
+32770,craze delirium frenzy fury hysteria,state of violent mental agitation
+32771,craziness daftness flakiness,informal terms for insanity
+32772,crazy loony looney nutcase weirdo,someone deranged and possibly dangerous
+32773,crazy_quilt,a patchwork quilt without a design
+32774,creak creaking,a squeaking sound; "the creak of the floorboards gave him away"
+32775,cream,the part of milk containing the butterfat
+32776,cream ointment emollient,toiletry consisting of any of various substances in the form of a thick liquid that have a soothing and moisturizing effect when applied to the skin
+32777,cream pick,the best people or things in a group; "the cream of England's young men were killed in the Great War"
+32778,cream-colored_courser Cursorius_cursor,courser of desert and semidesert regions of the Old World
+32779,cream-of-tartar_tree sour_gourd Adansonia_gregorii,Australian tree having an agreeably acid fruit that resembles a gourd
+32780,cream_cheese,soft unripened cheese made of sweet milk and cream
+32781,cream_of_tartar tartar potassium_bitartrate potassium_hydrogen_tartrate,a salt used especially in baking powder
+32782,cream_pitcher creamer,a small pitcher for serving cream
+32783,cream_puff chou,puff filled with cream or custard
+32784,cream_sauce,white sauce made with cream
+32785,cream_soda,sweet carbonated drink flavored with vanilla
+32786,creamcups Platystemon_californicus,California plant with small pale yellow flowers
+32787,creamery,a workplace where dairy products (butter and cheese etc.) are produced or sold
+32788,creaminess soupiness,the property of having the thickness of heavy cream
+32789,creatine creatin,an amino acid that does not occur in proteins but is found in the muscle tissue of vertebrates both in the free form and as phosphocreatine; supplies energy for muscle contraction
+32790,creating_by_mental_acts,the act of creating something by thinking
+32791,creating_by_removal,the act of creating by removing something
+32792,creating_from_raw_materials,the act of creating something that is different from the materials that went into it
+32793,creation,an artifact that has been brought into existence by someone
+32794,creation conception,the event that occurred at the beginning of something; "from its creation the plan was doomed to failure"
+32795,creation creative_activity,the human act of creating
+32796,creation_science,an effort to give scientific support for the truth of the account of Creation given in the Book of Genesis
+32797,creationism,the literal belief in the account of Creation given in the Book of Genesis; "creationism denies the theory of evolution of species"
+32798,creativity creativeness creative_thinking,the ability to create
+32799,creator,a person who grows or makes or invents things
+32800,creature tool puppet,a person who is controlled by others and is used to perform unpleasant or dishonest tasks for someone else
+32801,creature wight,a human being; `wight' is an archaic term
+32802,creche,a representation of Christ's nativity in the stable at Bethlehem
+32803,creche foundling_hospital,a hospital where foundlings (infant children of unknown parents) are taken in and cared for
+32804,credence acceptance,the mental attitude that something is believable and should be accepted as true; "he gave credence to the gossip"; "acceptance of Newtonian mechanics was unquestioned for 200 years"
+32805,credenza credence,a kind of sideboard or buffet
+32806,credibility credibleness believability,the quality of being believable or trustworthy
+32807,credit,money available for a client to borrow
+32808,credit,an entry on a list of persons who contributed to a film or written work; "the credits were given at the end of the film"
+32809,credit,used in the phrase `to your credit' in order to indicate an achievement deserving praise; "she already had several performances to her credit"
+32810,credit course_credit,recognition by a college or university that a course of studies has been successfully completed; typically measured in semester hours
+32811,credit credit_entry,an accounting entry acknowledging income or capital items
+32812,credit deferred_payment,arrangement for deferred payment for goods and services
+32813,credit_account charge_account open_account,credit extended by a business to a customer
+32814,credit_analyst,an analyst who studies the financial statements and financial history of applicants for credit in order to evaluate their creditworthiness
+32815,credit_application,an application for a line of credit
+32816,credit_bureau,a private firm that maintains consumer credit data files and provides credit information to authorized users for a fee
+32817,credit_card charge_card charge_plate plastic,a card (usually plastic) that assures a seller that the person using it has a satisfactory credit rating and that the issuer will see to it that the seller receives payment for the merchandise delivered; "do you take plastic?"
+32818,credit_crunch liquidity_crisis squeeze,a state in which there is a short supply of cash to lend to businesses and consumers and interest rates are high
+32819,credit_line line_of_credit bank_line line personal_credit_line personal_line_of_credit,the maximum credit that a customer is allowed
+32820,credit_order bill-me_order,an order that is received without payment; requires billing at a later date
+32821,credit_rating credit,an estimate, based on previous dealings, of a person's or an organization's ability to fulfill their financial commitments
+32822,credit_side,account of payments received; usually the right side of a financial statement
+32823,credit_system,a system for allowing people to purchase things on credit
+32824,credit_union,a cooperative depository financial institution whose members can obtain loans from their combined savings
+32825,creditor,a person to whom money is owed by a debtor; someone to whom an obligation exists
+32826,credits,a list of acknowledgements of those who contributed to the creation of a film (usually run at the end of the film)
+32827,creditworthiness,trustworthiness with money as based on a person's credit history; a general qualification for borrowing
+32828,credulity,tendency to believe readily
+32829,credulousness gullibility,tendency to believe too readily and therefore to be easily deceived
+32830,creed credo,any system of principles or beliefs
+32831,creel,a wicker basket used by anglers to hold fish
+32832,creep,a slow longitudinal movement or deformation
+32833,creep,a pen that is fenced so that young animals can enter but adults cannot
+32834,creep weirdo weirdie weirdy spook,someone unpleasantly strange or eccentric
+32835,creep_feed,feed given to young animals isolated in a creep
+32836,creeper,any plant (as ivy or periwinkle) that grows by creeping
+32837,creeper tree_creeper,any of various small insectivorous birds of the northern hemisphere that climb up a tree trunk supporting themselves on stiff tail feathers and their feet
+32838,creepiness,an uneasy sensation as of insects creeping on your skin
+32839,creeping_St_John's_wort Hypericum_calycinum,creeping evergreen shrub with bright yellow star-shaped summer flowers; useful as ground cover
+32840,creeping_bellflower Campanula_rapunculoides,erect European herb with creeping rootstocks and nodding spikelike racemes of blue to violet flowers
+32841,creeping_bent creeping_bentgrass Agrostis_palustris,common pasture or lawn grass spread by long runners
+32842,creeping_bugle Ajuga_reptans,low rhizomatous European carpeting plant having spikes of blue flowers; naturalized in parts of United States
+32843,creeping_buttercup creeping_crowfoot Ranunculus_repens,perennial European herb with long creeping stolons
+32844,creeping_fern Hartford_fern Lygodium_palmatum,delicate fern of the eastern United States having a twining stem and palmately-lobed sterile fronds and forked fertile fronds
+32845,creeping_juniper Juniperus_horizontalis,low to prostrate shrub of Canada and northern United States; bronzed purple in winter
+32846,creeping_oxalis creeping_wood_sorrel Oxalis_corniculata,creeping much-branched mat-forming weed; cosmopolitan
+32847,creeping_snowberry moxie_plum maidenhair_berry Gaultheria_hispidula,slow-growing procumbent evergreen shrublet of northern North America and Japan having white flowers and numerous white fleshy rough and hairy seeds
+32848,creeping_soft_grass Holcus_mollis,European perennial grass with soft velvety foliage
+32849,creeping_spike_rush Eleocharis_palustris,cylindrical-stemmed sedge
+32850,creeping_willow Salix_repens,small trailing bush of Europe and Asia having straggling branches with silky green leaves of which several varieties are cultivated
+32851,creeping_zinnia Sanvitalia_procumbens,low-branching leafy annual with flower heads resembling zinnias; found in southwestern United States and Mexico to Guatemala
+32852,creeps,a disease of cattle and sheep attributed to a dietary deficiency; characterized by anemia and softening of the bones and a slow stiff gait
+32853,creeps,a feeling of fear and revulsion; "he gives me the creeps"
+32854,creepy-crawlies,feelings of dislike and anxiety; "the cave gave me the creepy-crawlies"
+32855,creepy-crawly,an animal that creeps or crawls (such as worms or spiders or insects)
+32856,cremains,the remains of a dead body after cremation
+32857,cremation,the incineration of a dead body
+32858,crematory crematorium,a mortuary where corpses are cremated
+32859,crematory crematorium cremation_chamber,a furnace where a corpse can be burned and reduced to ashes
+32860,creme_anglais,custard sauce flavored with vanilla or a liqueur
+32861,creme_brulee,custard sprinkled with sugar and broiled
+32862,creme_caramel,baked custard topped with caramel
+32863,creme_de_cacao,sweet liqueur flavored with vanilla and cacao beans
+32864,creme_de_fraise,strawberry-flavored liqueur
+32865,creme_de_menthe,sweet green or white mint-flavored liqueur
+32866,crenate_leaf,a leaf having a scalloped margin
+32867,crenel crenelle,a notch or open space between two merlons in a crenelated battlement
+32868,crenelation crenellation,the action of constructing ramparts with gaps for firing guns or arrows
+32869,creole,a mother tongue that originates from contact between two languages
+32870,creole-fish Paranthias_furcifer,deep-sea fish of tropical Atlantic
+32871,creosol,a colorless to yellow aromatic liquid that is a constituent of creosote
+32872,creosote,a colorless or yellowish oily liquid obtained by distillation of wood tar; used as an antiseptic
+32873,creosote coal-tar_creosote,a dark oily liquid obtained by distillation of coal tar; used as a preservative for wood
+32874,creosote_bush coville hediondilla Larrea_tridentata,desert shrub of southwestern United States and New Mexico having persistent resinous aromatic foliage and small yellow flowers
+32875,crepe crape,a soft thin light fabric with a crinkled surface
+32876,crepe crepe_paper,paper with a crinkled texture; usually colored and used for decorations
+32877,crepe_Suzette,crepes flamed in a sweet orange-and-lemon flavored liqueur sauce
+32878,crepe_de_Chine,a very thin crepe of silk or silklike fabric
+32879,crepe_fern king_fern Todea_barbara,fern of rain forests of tropical Australia and New Zealand and South Africa
+32880,crepe_rubber,crude natural rubber; used mainly for shoe soles
+32881,crepitation_rale,the crackling sound heard on auscultation when patients with respiratory diseases inhale; associated with tuberculosis and pneumonia and congestive heart failure
+32882,crescendo,(music) a gradual increase in loudness
+32883,crescent,any shape resembling the curved shape of the moon in its first or last quarters
+32884,crescent_roll croissant,very rich flaky crescent-shaped roll
+32885,crescent_wrench,an adjustable wrench designed to fit hexagonal nuts with the adjusting screw built into the head of the wrench
+32886,cresol methyl_phenol,any of three poisonous colorless isomeric phenols; derived from coal or wood tar; used as a disinfectant
+32887,cress,pungent leaves of any of numerous cruciferous herbs
+32888,cress cress_plant,any of various plants of the family Cruciferae with edible leaves that have a pungent taste
+32889,crest,the top line of a hill, mountain, or wave
+32890,crest,(heraldry) in medieval times, an emblem used to decorate a helmet
+32891,crest,a showy growth of e.g. feathers or skin on the head of a bird or other animal
+32892,crested_cariama seriema Cariama_cristata,Brazilian Cariama; sole representative of the genus Cariama
+32893,crested_coral_root Hexalectris_spicata,orchid with yellowish-brown flowers with dark veins; southeastern Arizona to the eastern United States
+32894,crested_myna Acridotheres_tristis,dark brown crested bird of southeastern Asia
+32895,crested_screamer,distinguished from the horned screamer by a feathery crest on the back of the head
+32896,crested_wheatgrass crested_wheat_grass fairway_crested_wheat_grass Agropyron_cristatum,Eurasian grass grown in United States great plains area for forage and erosion control
+32897,cretinism,severe hypothyroidism resulting in physical and mental stunting
+32898,cretonne,an unglazed heavy fabric; brightly printed; used for slipcovers and draperies
+32899,crevalle_jack jack_crevalle Caranx_hippos,fish of western Atlantic and Gulf of Mexico
+32900,crevasse,a deep fissure
+32901,crevice cranny crack fissure chap,a long narrow depression in a surface
+32902,crew,the team of men manning a racing shell
+32903,crew,the men and women who man a vehicle (ship, aircraft, etc.)
+32904,crew_cut butch flattop,a closely cropped haircut; usually for men or boys
+32905,crew_neck crew_neckline,a plain straight neckline opening from shoulder to shoulder of sweaters
+32906,crewelwork,embroidery done with loosely twisted worsted yarn
+32907,crewman,a member of a work crew
+32908,crewman crew_member,a member of a flight crew
+32909,crib,a bin or granary for storing grains
+32910,crib,the cards discarded by players at cribbage
+32911,crib cot,baby bed with high sides made of slats
+32912,cribbage crib,a card game (usually for two players) in which each player is dealt six cards and discards one or two
+32913,cribbage_board,a board with pegs and regularly spaced holes for holding the pegs; used for keeping the score in a game of cribbage
+32914,crick kink rick wrick,a painful muscle spasm especially in the neck or back (`rick' and `wrick' are British)
+32915,cricket,leaping insect; male makes chirping noises by rubbing the forewings together
+32916,cricket,a game played with a ball and bat by two teams of 11 players; teams take turns trying to score runs
+32917,cricket-bat_willow Salix_alba_caerulea,Eurasian willow tree having greyish leaves and ascending branches
+32918,cricket_ball,the ball used in playing cricket
+32919,cricket_bat bat,the club used in playing cricket; "a cricket bat has a narrow handle and a broad flat end for hitting"
+32920,cricket_equipment,sports equipment used in playing cricket
+32921,cricket_frog,either of two frogs with a clicking call
+32922,cricket_match,a match between two cricket teams
+32923,cricketer,an athlete who plays cricket
+32924,crier,a peddler who shouts to advertise the goods he sells
+32925,crime,an evil act not necessarily punishable by law; "crimes of the heart"
+32926,crime criminal_offense criminal_offence law-breaking,(criminal law) an act punishable by law; usually considered an evil act; "a long record of crimes"
+32927,crime_rate,the ratio of crimes in an area to the population of that area; expressed per 1000 population per year
+32928,crime_wave,a sudden rise in the crime rate
+32929,criminal felon crook outlaw malefactor,someone who has committed a crime or has been legally convicted of a crime
+32930,criminal_contempt,an act of disrespect that impedes the administration of justice
+32931,criminal_court,a court having jurisdiction over criminal cases
+32932,criminal_law,the body of law dealing with crimes and their punishment
+32933,criminal_negligence culpable_negligence,(law) recklessly acting without reasonable caution and putting another person at risk of injury or death (or failing to do something with the same consequences)
+32934,criminal_possession,(law) possession for which criminal sanctions are provided because the property may not lawfully be possessed or may not be possessed under certain circumstances
+32935,criminal_record record,a list of crimes for which an accused person has been previously convicted; "he ruled that the criminal record of the defendant could not be disclosed to the court"; "the prostitute had a record a mile long"
+32936,criminal_suit,a lawsuit alleging violations of criminal law by the defendant
+32937,criminalism criminality criminalness,the state of being a criminal
+32938,criminalization criminalisation,legislation that makes something illegal; "the criminalization of marijuana"
+32939,criminologist,a specialist in criminology
+32940,criminology,the scientific study of crime and criminal behavior and law enforcement
+32941,crimp,a lock of hair that has been artificially waved or curled
+32942,crimp crimper,someone who tricks or coerces men into service as sailors or soldiers
+32943,crimson ruby deep_red,a deep and vivid red color
+32944,crimson_clover Italian_clover Trifolium_incarnatum,southern European annual with spiky heads of crimson flower; extensively cultivated in United States for forage
+32945,cringle eyelet loop grommet grummet,fastener consisting of a metal ring for lining a small hole to permit the attachment of cords or lines
+32946,crinkleroot crinkle-root crinkle_root pepper_root toothwort Cardamine_diphylla Dentaria_diphylla,North American herb with pungent scaly or toothed roots
+32947,crinoid,primitive echinoderms having five or more feathery arms radiating from a central disk
+32948,crinoline,a full stiff petticoat made of crinoline fabric
+32949,crinoline,a stiff coarse fabric used to stiffen hats or clothing
+32950,criollo,a Spanish American of pure European stock (usually Spanish); "Mexico is a country of mestizos, criollos, and indigenes"
+32951,criollo,cocoa of superior quality
+32952,cripple,someone who is unable to walk normally because of an injury or disability to the legs or back
+32953,crisis,an unstable situation of extreme danger or difficulty; "they went bankrupt during the economic crisis"
+32954,crisis,a crucial stage or turning point in the course of something; "after the crisis the patient either dies or gets better"
+32955,crisis_intervention,psychotherapy that focuses on acute critical situations (depressive episodes or attempted suicides or drug overdoses) with the aim of restoring the person to the level of functioning before the crisis
+32956,crisphead_lettuce iceberg_lettuce iceberg,lettuce with crisp tightly packed light-green leaves in a firm head; "iceberg is still the most popular lettuce"
+32957,crispness,an expressive style that is direct and to the point; "the crispness of his reply"
+32958,crispness,a pleasing firmness and freshness; "crispness of new dollar bills"; "crispness of fresh lettuce"
+32959,crisscross cross mark,a marking that consists of lines that cross each other
+32960,cristobalite,a white mineral consisting of silica; found in volcanic rocks
+32961,criterion standard,the ideal in terms of which something can be judged; "they live by the standards of their community"
+32962,criterium crit,a bicycle race held on a short course (usually less than 5 km or 3 miles)
+32963,crith,the weight of a liter of hydrogen (at 0 centigrade and 760 millimeters pressure)
+32964,critic,a person who is professionally engaged in the analysis and interpretation of works of art
+32965,critic,anyone who expresses a reasoned judgment of something
+32966,critic,someone who frequently finds fault or makes harsh and unfair judgments
+32967,critical_angle,the smallest angle of incidence for which light is totally reflected
+32968,critical_appraisal critical_analysis,an appraisal based on careful analytical evaluation
+32969,critical_mass,the minimum amount (of something) required to start or maintain a venture; "the battle for the computer market has now reached critical mass"; "there is now a critical mass of successful women to take the lead"; "they sold the business because it lacked critical mass"
+32970,critical_mass,the minimum mass of fissionable material that can sustain a chain reaction
+32971,criticality,a critical state; especially the point at which a nuclear reaction is self-sustaining
+32972,criticality criticalness cruciality,a state of critical urgency
+32973,criticism critique,a serious examination and judgment of something; "constructive criticism is always appreciated"
+32974,criticism literary_criticism,a written evaluation of a work of literature
+32975,criticism unfavorable_judgment,disapproval expressed by pointing out faults or shortcomings; "the senator received severe criticism from his opponent"
+32976,critter,a regional term for `creature' (especially for domestic animals)
+32977,croak croaking,a harsh hoarse utterance (as of a frog)
+32978,croaker,the lean flesh of a saltwater fish caught along Atlantic coast of southern U.S.
+32979,croaker,any of several fishes that make a croaking noise
+32980,crochet crocheting,needlework done by interlocking looped stitches with a hooked needle
+32981,crochet_needle crochet_hook,a needle with a hook on the end; used in crocheting
+32982,crochet_stitch,any one of a number of stitches made by pulling a loop of yarn through another loop with a crochet needle
+32983,crocheting,creating a garment of needlework
+32984,crock,nonsense; foolish talk; "that's a crock"
+32985,crock earthenware_jar,an earthen jar (made of baked clay)
+32986,crockery dishware,tableware (eating and serving dishes) collectively
+32987,crocket,an architectural ornament of curved foliage used at the edge of a spire or gable
+32988,crocodile,large voracious aquatic reptile having a long snout with massive jaws and sharp teeth and a body covered with bony plates; of sluggish tropical waters
+32989,crocodile_bird Pluvianus_aegyptius,African courser that feeds on insect parasites on crocodiles
+32990,crocodile_tears,a hypocritical display of sorrow; false or insincere weeping; "the secretaries wept crocodile tears over the manager's dilemma"; "politicians shed crocodile tears over the plight of the unemployed"
+32991,crocodilian_reptile crocodilian,extant archosaurian reptile
+32992,crocolite,a rare lead chromite mineral that forms bright orange crystals
+32993,crocus,any of numerous low-growing plants of the genus Crocus having slender grasslike leaves and white or yellow or purple flowers; native chiefly to the Mediterranean region but widely cultivated
+32994,croft,a small farm worked by a crofter
+32995,crofter,an owner or tenant of a small farm in Great Britain
+32996,cronyism,favoritism shown to friends and associates (as by appointing them to positions without regard for their qualifications)
+32997,crook shepherd's_crook,a long staff with one end being hook shaped
+32998,crooked-stemmed_aster,a variety of aster
+32999,crookedness,having or distinguished by crooks or curves or bends or angles
+33000,crookedness deviousness,the quality of being deceitful and underhanded
+33001,crookneck crookneck_squash summer_crookneck,yellow squash with a thin curved neck and somewhat warty skin
+33002,crooner balladeer,a singer of popular ballads
+33003,crooning,singing in a soft low tone; "her crooning soon put the child to sleep"
+33004,crooning,the act of singing popular songs in a sentimental manner
+33005,crop,a cultivated plant that is grown commercially on a large scale
+33006,crop,a collection of people or things appearing together; "the annual crop of students brings a new crop of ideas"
+33007,crop,the output of something in a season; "the latest crop of fashions is about to hit the stores"
+33008,crop,the stock or handle of a whip
+33009,crop harvest,the yield from plants in a single growing season
+33010,crop-dusting spraying,the dispersion of fungicides or insecticides or fertilizer on growing crops (often from a low-flying aircraft)
+33011,crop_failure,the failure of crops to produce a marketable surplus
+33012,croquet,a game in which players hit a wooden ball through a series of hoops; the winner is the first to traverse all the hoops and hit a peg
+33013,croquet_ball,a wooden ball used in playing croquet
+33014,croquet_equipment,sports equipment used in playing croquet
+33015,croquet_mallet,a mallet used to strike the ball in croquet
+33016,croquette,minced cooked meats (or vegetables) in thick white sauce; breaded and deep-fried
+33017,crore,the number that is represented as a one followed by 7 zeros; ten million
+33018,crosier crozier,a staff surmounted by a crook or cross carried by bishops as a symbol of pastoral office
+33019,cross,a wooden structure consisting of an upright post with a transverse piece
+33020,cross crown_of_thorns,any affliction that causes great suffering; "that is his cross to bear"; "he bears his afflictions like a crown of thorns"
+33021,cross-classification cross-division,classification according to more than one attribute at the same time; "the cross-classification of cases was done by age and sex"
+33022,cross-country_riding cross-country_jumping,riding horses across country over obstructions to demonstrate horsemanship
+33023,cross-country_skiing,the sport of skiing across the countryside (rather than downhill)
+33024,cross-examination,(law) close questioning of a hostile witness in a court of law to discredit or throw a new light on the testimony already provided in direct examination
+33025,cross-examiner cross-questioner,someone who questions a witness carefully (especially about testimony given earlier)
+33026,cross-eye crossed_eye convergent_strabismus esotropia,strabismus in which one or both eyes turn inward toward the nose
+33027,cross-fertilization cross-fertilisation,fertilization by the union of male and female gametes from different individual of the same species
+33028,cross-fertilization cross-fertilisation,interchange between different cultures or different ways of thinking that is mutually productive and beneficial; "the cross-fertilization of science and the creative arts"
+33029,cross-leaved_heath bell_heather Erica_tetralix,dwarf European shrub with rose-colored flowers
+33030,cross-link cross-linkage,a side bond that links two adjacent chains of atoms in a complex molecule
+33031,cross-pollination,fertilization by transfer of pollen from the anthers of one flower to the stigma of another
+33032,cross-pollination,stimulating influence among diverse elements; "the cross-pollination of the arts"
+33033,cross-purpose,a contrary aim; "at cross-purposes"
+33034,cross-question,a question asked in cross-examination
+33035,cross-reference cross-index,a reference at one place in a work to information at another place in the same work
+33036,cross-stitch,two stitches forming a cross or X
+33037,cross-stitch,embroidery done with pairs of stitches that cross each other
+33038,cross_bit,a rock drill having cruciform cutting edges; used in mining
+33039,cross_bun hot_cross_bun,moderately sweet raised roll containing spices and raisins and citron and decorated with a cross-shaped sugar glaze
+33040,cross_country,a long race run over open country
+33041,cross_hair cross_wire,either of two fine mutually perpendicular lines that cross in the focus plane of an optical instrument and are use for sighting or calibration; "he had the target in his cross hairs"
+33042,cross_section,a section created by a plane cutting a solid perpendicular to its longest axis
+33043,cross_section,a sample meant to be representative of a whole population
+33044,cross_section,(physics) the probability that a particular interaction (as capture or ionization) will take place between particles; measured in barns
+33045,cross_street,a street intersecting a main street (usually at right angles) and continuing on both sides of it
+33046,cross_vine trumpet_flower quartervine quarter-vine Bignonia_capreolata,woody flowering vine of southern United States; stems show a cross in transverse section
+33047,crossbar,a horizontal bar that goes across something
+33048,crossbar,game equipment consisting of a horizontal bar to be jumped or vaulted over
+33049,crossbar,long thin horizontal crosspiece between two vertical posts
+33050,crossbench,any of the seats in the House of Commons used by members who do not vote regularly with either the government or the Opposition
+33051,crossbencher,a member of the House of Commons who does not vote regularly with either the government or the Opposition
+33052,crossbill Loxia_curvirostra,finch with a bill whose tips cross when closed
+33053,crossbones,two crossed bones (or a representation of two crossed bones) used as a symbol danger or death
+33054,crossbow,a bow fixed transversely on a wooden stock grooved to direct the arrow (quarrel)
+33055,crosscheck,an instance of confirming something by considering information from several sources
+33056,crosscheck,an illegal check (chopping at an opponent's arms or stick)
+33057,crosscut,a diagonal path
+33058,crosscut_saw crosscut_handsaw cutoff_saw,handsaw that cuts at right angles to the grain (or major axis)
+33059,crosse,a long racket with a triangular frame; used in playing lacrosse
+33060,crossfire,a lively or heated interchange of ideas and opinions
+33061,crossfire,fire from two or more points so that the lines of fire cross
+33062,crosshairs,a center of interest; "the war on terrorism has put Saddam Hussein in the crosshairs"
+33063,crosshead,metal block that connects to a piston; it slides on parallel guides and moves a connecting rod back and forth
+33064,crossheading crosshead,a heading of a subsection printed within the body of the text
+33065,crossing,a point where two lines (paths or arcs etc.) intersect
+33066,crossing,a voyage across a body of water (usually across the Atlantic Ocean)
+33067,crossing,traveling across
+33068,crossing crosswalk crossover,a path (often marked) where something (as a street or railroad) can be crossed to get from one side to the other
+33069,crossing_guard,someone who helps people (especially children) at a traffic crossing
+33070,crossing_over crossover,the interchange of sections between pairing homologous chromosomes during the prophase of meiosis
+33071,crossjack mizzen_course,the lowermost sail on a mizzenmast
+33072,crossopterygian lobefin lobe-finned_fish,any fish of the order Crossopterygii; most known only in fossil form
+33073,crossover,the appropriation of a new style (especially in popular music) by combining elements of different genres in order to appeal to a wider audience; "a jazz-classical crossover album"
+33074,crossover_voter crossover,a voter who is registered as a member of one political party but who votes in the primary of another party
+33075,crosspiece,a transverse brace
+33076,crossroads,a point where a choice must be made; "Freud's work stands at the crossroads between psychology and neurology"
+33077,crosstalk XT,the presence of an unwanted signal via an accidental coupling
+33078,crosswind,wind blowing across the path of a ship or aircraft
+33079,crossword_puzzle crossword,a puzzle in which words corresponding to numbered clues are to be found and written in to squares in the puzzle
+33080,crotalaria rattlebox,any of various plants of the genus Crotalaria having inflated pods within which the seeds rattle; used for pasture and green-manure crops
+33081,crotaphion,the tip of the greater wing of the sphenoid bone
+33082,crotch fork,the angle formed by the inner sides of the legs where they join the human trunk
+33083,crotchet,a small tool or hooklike implement
+33084,croton Codiaeum_variegatum,grown in many varieties for their brightly colored foliage; widely cultivated as a houseplant
+33085,croton Croton_tiglium,tropical Asiatic shrub; source of croton oil
+33086,croton_oil,viscid acrid brownish-yellow oil from the seeds of Croton tiglium having a violent cathartic action
+33087,crottle crottal crotal,any of several lichens of the genus Parmelia from which reddish brown or purple dyes are made
+33088,crouch,the act of bending low with the limbs close to the body
+33089,croup spasmodic_laryngitis,a disease of infants and young children; harsh coughing and hoarseness and fever and difficult breathing
+33090,croupier,someone who collects and pays bets at a gaming table
+33091,croupier's_rake,a small rake used by a croupier to move chips around on the table
+33092,crouton,a small piece of toasted or fried bread; served in soup or salads
+33093,crow,the cry of a cock (or an imitation of it)
+33094,crow,black birds having a raucous call
+33095,crow's_foot crow's_feet laugh_line,a wrinkle in the skin at the outer corner of your eyes
+33096,crow's_nest,platform for a lookout at or near the top of a mast
+33097,crow_garlic false_garlic field_garlic stag's_garlic wild_garlic Allium_vineale,pungent Old World wild onion
+33098,crow_pheasant Centropus_sinensis,common coucal of India and China
+33099,crowbait crow-bait,an emaciated horse likely soon to become carrion and so attractive to crows
+33100,crowbar wrecking_bar pry pry_bar,a heavy iron lever with one end forged into a wedge
+33101,crowberry,a low evergreen shrub with small purple flowers and black berrylike fruit
+33102,crowd,a large number of things or people considered together; "a crowd of insects assembled around the flowers"
+33103,crowd crew gang bunch,an informal body of friends; "he still hangs out with the same crowd"
+33104,crowd_control,activity of controlling a crowd
+33105,crowding,a situation in which people or things are crowded together; "he didn't like the crowding on the beach"
+33106,crown,an English coin worth 5 shillings
+33107,crown,the part of a tooth above the gum that is covered with enamel
+33108,crown,a wreath or garland worn on the head to signify victory
+33109,crown,the part of a hat (the vertex) that covers the crown of the head
+33110,crown crest,the center of a cambered road
+33111,crown crownwork jacket jacket_crown cap,(dentistry) dental appliance consisting of an artificial crown for a broken or decayed tooth; "tomorrow my dentist will fit me for a crown"
+33112,crown diadem,an ornamental jeweled headdress signifying sovereignty
+33113,crown treetop,the upper branches and leaves of a tree or other plant
+33114,crown_daisy Chrysanthemum_coronarium,shrubby annual of the Mediterranean region with yellowish-white flowers
+33115,crown_fire,a forest fire that advances with great speed jumping from crown to crown ahead of the ground fire
+33116,crown_gall,a bacterial disease of plants (especially pome and stone fruits and grapes and roses) which forms excrescences on the stem near the ground
+33117,crown_glass,a glass blown into a globe which is later flattened and spun to form a disk
+33118,crown_imperial Fritillaria_imperialis,Eurasian herb with a cluster of leaves and orange-red bell-shaped flowers at the top of the stem
+33119,crown_jewel,the most desirable assets of a corporation; "their crown jewels figured prominently in the takeover attempt"
+33120,crown_jewel,a precious stone that is a valuable part of a sovereign's regalia
+33121,crown_jewels,regalia (jewelry and other paraphernalia) worn by a sovereign on state occasions
+33122,crown_lens,a lens made of optical crown glass
+33123,crown_of_thorns,a mock crown made of thorn branches that Roman soldiers placed on Jesus before the Crucifixion
+33124,crown_of_thorns Christ_thorn Christ_plant Euphorbia_milii,somewhat climbing bushy spurge of Madagascar having long woody spiny stems with few leaves and flowers with scarlet bracts
+33125,crown_prince,a male heir apparent to a throne
+33126,crown_princess,the wife of a crown prince
+33127,crown_princess,a female heir apparent to a throne
+33128,crown_saw,a saw having teeth around the edge of a hollow cylinder
+33129,crown_wart,a fungous disease of alfalfa which forms white excrescences at the base of the stem
+33130,crownbeard crown-beard crown_beard,any plant of the genus Verbesina having clustered white or yellow flower heads
+33131,crucian_carp Carassius_carassius Carassius_vulgaris,European carp closely resembling wild goldfish
+33132,crucible melting_pot,a vessel made of material that does not melt easily; used for high temperature chemical reactions
+33133,crucible_steel,steel made by the mixture of molten wrought iron, charcoal, and other substances in a crucible
+33134,crucifer cruciferous_plant,any of various plants of the family Cruciferae
+33135,cruciferous_vegetable,a vegetable of the mustard family: especially mustard greens; various cabbages; broccoli; cauliflower; brussels sprouts
+33136,crucifix,a gymnastic exercise performed on the rings when the gymnast supports himself with both arms extended horizontally
+33137,crucifix rood rood-tree,representation of the cross on which Jesus died
+33138,crucifix_fish,sea catfish of the Caribbean area
+33139,crucifixion,the act of executing by a method widespread in the ancient world; the victim's hands and feet are bound or nailed to a cross
+33140,crucifixion excruciation,the infliction of extremely painful punishment or suffering
+33141,crud,heavy wet snow that is unsuitable for skiing
+33142,crud,an ill-defined bodily ailment; "he said he had the crud and needed a doctor"
+33143,crudeness crudity gaucheness,an impolite manner that is vulgar and lacking tact or refinement; "the whole town was famous for its crudeness"
+33144,crudeness crudity primitiveness primitivism rudeness,a wild or unrefined state
+33145,crudeness roughness,an unpolished unrefined quality; "the crudeness of frontier dwellings depressed her"
+33146,crudites,raw vegetables cut into bite-sized strips and served with a dip
+33147,cruel_and_unusual_punishment,punishment prohibited by the 8th amendment to the U.S. Constitution; includes torture or degradation or punishment too severe for the crime committed
+33148,cruel_plant Araujia_sericofera,robust twining shrub having racemes of fragrant white or pink flowers with flat spreading terminal petals that trap nocturnal moths and hold them until dawn
+33149,cruelty cruelness harshness,the quality of being cruel and causing tension or annoyance
+33150,cruelty inhuman_treatment,a cruel act; a deliberate infliction of pain and suffering
+33151,cruelty mercilessness pitilessness ruthlessness,feelings of extreme heartlessness
+33152,cruet crewet,bottle that holds wine or oil or vinegar for the table
+33153,cruet-stand,a stand for cruets containing various condiments
+33154,cruise sail,an ocean trip taken for pleasure
+33155,cruise_control,control mechanism for keeping an automobile at a set speed
+33156,cruise_missile,an unmanned aircraft that is a self-contained bomb
+33157,cruise_ship cruise_liner,a passenger ship used commercially for pleasure cruises
+33158,cruiser,a large fast warship; smaller than a battleship and larger than a destroyer
+33159,cruiser police_cruiser patrol_car police_car prowl_car squad_car,a car in which policemen cruise the streets; equipped with radiotelephonic communications to headquarters
+33160,cruller twister,small friedcake formed into twisted strips and fried; richer than doughnuts
+33161,crumb,a very small quantity of something; "he gave only a crumb of information about his plans"; "there were few crumbs of comfort in the report"
+33162,crumb,small piece of e.g. bread or cake
+33163,crumb_cake,cake or coffeecake topped with a mixture of sugar and butter and flour
+33164,crumbliness friability,excessive breakableness
+33165,crumpet,a thick soft cake with a porous texture; cooked on a griddle
+33166,crunch,a critical situation that arises because of a shortage (as a shortage of time or money or resources); "an end-of-the year crunch"; "a financial crunch"
+33167,crunch,the sound of something crunching; "he heard the crunch of footsteps on the gravel path"
+33168,crupper,a strap from the back of a saddle passing under the horse's tail; prevents saddle from slipping forward
+33169,crus,the leg from the knee to foot
+33170,cruse,small jar; holds liquid (oil or water)
+33171,crush crunch compaction,the act of crushing
+33172,crush jam press,a dense crowd of people
+33173,crushed_leather crush,leather that has had its grain pattern accentuated
+33174,crusher,a device that crushes something
+33175,crust Earth's_crust,the outer layer of the Earth
+33176,crust gall impertinence impudence insolence cheekiness freshness,the trait of being rude and impertinent; inclined to take liberties
+33177,crust incrustation encrustation,a hard outer layer that covers something
+33178,crustacean,any mainly aquatic arthropod usually having a segmented body and chitinous exoskeleton
+33179,crustal_movement tectonic_movement,movement resulting from or causing deformation of the earth's crust
+33180,crustose_thallus,thin crusty lichen thallus; adheres closely to or is embedded in the surface on which it grows
+33181,crutch,a wooden or metal staff that fits under the armpit and reaches to the ground; used by disabled person while walking
+33182,crutch,anything that serves as an expedient; "he uses drugs as a psychological crutch"
+33183,crux crux_of_the_matter,the most important point
+33184,cry,the characteristic utterance of an animal; "animal cries filled the night"
+33185,cry,a fit of weeping; "had a good cry"
+33186,cry outcry call yell shout vociferation,a loud utterance; often in protest or opposition; "the speaker was interrupted by loud cries from the rear of the audience"
+33187,cry yell,a loud utterance of emotion (especially when inarticulate); "a cry of rage"; "a yell of pain"
+33188,cryesthesia cryaesthesia,hypersensitivity to cold
+33189,crying weeping tears,the process of shedding tears (usually accompanied by sobs or other inarticulate sounds); "I hate to hear the crying of a child"; "she was in tears"
+33190,cryoanesthesia cryoanaesthesia,insensibility resulting from cold
+33191,cryobiology,the branch of biology that studies the effects of low temperatures on living tissues or organs or organisms
+33192,cryocautery,an instrument for destroying tissue by freezing it
+33193,cryocautery,application of a substance that destroys tissue by freezing it
+33194,cryogen,a liquid that boils at below -160 C and is used as a refrigerant
+33195,cryogenics cryogeny,the branch of physics that studies the phenomena that occur at very low temperatures
+33196,cryolite Greenland_spar,a white mineral consisting of fluorides of aluminum and sodium; a source of fluorine
+33197,cryometer,a thermometer designed to measure low temperatures
+33198,cryonics,the freezing of a seriously ill or recently deceased person to stop tissues from decomposing; the body is preserved until new medical cures are developed that might bring the person back to life; "cryonics is more science fiction than serious science"
+33199,cryophobia,a morbid fear of freezing
+33200,cryoscope,a measuring instrument for measuring freezing and melting points
+33201,cryostat,a thermostat that operates at very low temperatures
+33202,cryosurgery,the use of extreme cold (usually liquid nitrogen) to destroy unwanted tissue (warts or cataracts or skin cancers)
+33203,crypt,a cellar or vault or underground burial chamber (especially beneath a church)
+33204,cryptanalysis cryptanalytics cryptography cryptology,the science of analyzing and deciphering codes and ciphers and cryptograms
+33205,cryptanalyst cryptographer cryptologist,decoder skilled in the analysis of codes and cryptograms
+33206,cryptic_coloration,coloring that conceals or disguises an animal's shape
+33207,cryptobiosis,a state in which an animal's metabolic activities come to a reversible standstill
+33208,cryptococcosis,a fungal infection characterized by nodular lesions--first in the lungs and spreading to the nervous system
+33209,cryptocoryne water_trumpet,any plant of the genus Cryptocoryne; evergreen perennials growing in fresh or brackish water; tropical Asia
+33210,cryptogam,formerly recognized taxonomic group including all flowerless and seedless plants that reproduce by means of spores: ferns, mosses, algae, fungi
+33211,cryptogram cryptograph secret_writing,a piece of writing in code or cipher
+33212,cryptograph,a device for deciphering codes and ciphers
+33213,cryptography coding secret_writing steganography,act of writing in code or cipher
+33214,cryptomonad cryptophyte,common in fresh and salt water appearing along the shore as algal blooms
+33215,cryptorchidy cryptorchidism cryptorchism,failure of one or both testes to move into the scrotum as the male fetus develops
+33216,crystal,a solid formed by the solidification of a chemical and having a highly regular atomic structure
+33217,crystal,a crystalline element used as a component in various electronic devices
+33218,crystal,glassware made of quartz
+33219,crystal crystallization,a rock formed by the solidification of a substance; has regularly repeating internal structure; external plane faces
+33220,crystal watch_crystal watch_glass,a protective cover that protects the face of a watch
+33221,crystal_ball,a glass or crystal globe used in crystal gazing by fortunetellers
+33222,crystal_counter,a counter tube in which an ionizing event increases conductivity
+33223,crystal_detector,a detector consisting of a fine wire in contact with a galena crystal; acts as a rectifier
+33224,crystal_gazing,staring into a crystal ball to arouse visions of future or distant events
+33225,crystal_microphone crystal_mike,a microphone in which sound waves vibrate a piezoelectric crystal that generates a varying voltage
+33226,crystal_oscillator quartz_oscillator,an oscillator that produces electrical oscillations at a frequency determined by the physical characteristics of a piezoelectric quartz crystal
+33227,crystal_pickup,a cartridge in which an output voltage is produced by the vibration of a piezoelectric crystal
+33228,crystal_set,an early radio receiver using a crystal detector
+33229,crystallite,any of numerous minute rudimentary crystalline bodies of unknown composition found in glassy igneous rock
+33230,crystallization,a mental synthesis that becomes fixed or concrete by a process resembling crystal formation
+33231,crystallization crystallisation crystallizing,the formation of crystals
+33232,crystallized_ginger,strips of gingerroot cooked in sugar syrup and coated with sugar
+33233,crystallographer,a specialist in crystallography
+33234,crystallography,the branch of science that studies the formation and structure of crystals
+33235,ctene comb-plate,a locomotor organ consisting of a row of strong cilia whose bases are fused
+33236,ctenidium,comb-like respiratory structure serving as the gill of certain mollusks
+33237,ctenophore comb_jelly,biradially symmetrical hermaphroditic solitary marine animals resembling jellyfishes having for locomotion eight rows of cilia arranged like teeth in a comb
+33238,ctenophore_family,a family of ctenophores
+33239,ctenophore_genus,a genus of ctenophores
+33240,cub greenhorn rookie,an awkward and inexperienced youth
+33241,cub lad laddie sonny sonny_boy,a male child (a familiar term of address to a boy)
+33242,cub young_carnivore,the young of certain carnivorous mammals such as the bear or wolf or lion
+33243,cubby cubbyhole snuggery snug,a small secluded room
+33244,cubbyhole pigeonhole,a small compartment
+33245,cube,any of several tropical American woody plants of the genus Lonchocarpus whose roots are used locally as a fish poison and commercially as a source of rotenone
+33246,cube regular_hexahedron,a hexahedron with six equal squares as faces
+33247,cube square_block,a block in the (approximate) shape of a cube
+33248,cube third_power,the product of three equal terms
+33249,cube_root,a number that when multiplied three times equals a given number
+33250,cubeb,spicy fruit of the cubeb vine; when dried and crushed is used medicinally or in perfumery and sometimes smoked in cigarettes
+33251,cubeb cubeb_cigarette,a cigarette containing cubeb
+33252,cubeb cubeb_vine Java_pepper Piper_cubeba,tropical southeast Asian shrubby vine bearing spicy berrylike fruits
+33253,cubic_foot cu_ft,the volume equal to a cube one foot on each side
+33254,cubic_inch cu_in,the volume equal to a cube one inch on each side
+33255,cubic_kilometer cubic_kilometre,a unit of capacity equal to the volume of a cube one kilometer on each edge
+33256,cubic_millimeter cubic_millimetre,a metric measure of volume or capacity equal to a cube 1 millimeter on each edge
+33257,cubic_yard yard,a unit of volume (as for sand or gravel)
+33258,cubicity,the property of resembling a cube
+33259,cubism,an artistic movement in France beginning in 1907 that featured surfaces of geometrical planes
+33260,cubist,an artist who adheres to the principles of cubism
+33261,cubit,an ancient unit of length based on the length of the forearm
+33262,cubitiere,body armor that protects the elbow
+33263,cubitus,the arm from the elbow to the fingertips
+33264,cuboid,a rectangular parallelepiped
+33265,cuboid_bone,the cube shaped bone on the outer side of the tarsus
+33266,cuboidal_cell cuboidal_epithelial_cell,an epithelial cell that shaped like a cube
+33267,cucking_stool ducking_stool,an instrument of punishment consisting of a chair in which offenders were ducked in water
+33268,cuckold,a man whose wife committed adultery
+33269,cuckoldom,the state of a husband whose wife has committed adultery
+33270,cuckoldry,the practice of making cuckolds; sexual conquests of married women
+33271,cuckoo,any of numerous European and North American birds having pointed wings and a long tail
+33272,cuckoo-bumblebee,a bee that is parasitic in the nests of bumblebees
+33273,cuckoo_clock,clock that announces the hours with a sound like the call of the cuckoo
+33274,cuckoopint lords-and-ladies jack-in-the-pulpit Arum_maculatum,common European arum with lanceolate spathe and short purple spadix; emerges in early spring; source of a starch called arum
+33275,cuculiform_bird,birds having zygodactyl feet (except for the touracos)
+33276,cucumber cucumber_vine Cucumis_sativus,a melon vine of the genus Cucumis; cultivated from earliest times for its cylindrical green fruit
+33277,cucumber cuke,cylindrical green fruit with thin green rind and white flesh eaten as a vegetable; related to melons
+33278,cucumber_tree Magnolia_acuminata,American deciduous magnolia having large leaves and fruit like a small cucumber
+33279,cucurbit,any plant of the family Cucurbitaceae
+33280,cud rechewed_food,food of a ruminant regurgitated to be chewed again
+33281,cuddle nestle snuggle,a close and affectionate (and often prolonged) embrace
+33282,cuddy,the galley or pantry of a small ship
+33283,cudgel,a club that is used as a weapon
+33284,cudweed,any of numerous plants of the genus Gnaphalium having flowers that can be dried without loss of form or color
+33285,cue,an actor's line that immediately precedes and serves as a reminder for some action or speech
+33286,cue cue_stick pool_cue pool_stick,sports implement consisting of a tapering rod used to strike a cue ball in pool or billiards
+33287,cue_ball,the ball that the billiard player or pool player strikes with his cue
+33288,cuff turnup,the lap consisting of a turned-back hem encircling the end of the sleeve or leg
+33289,cufflink,jewelry consisting of one of a pair of linked buttons used to fasten the cuffs of a shirt
+33290,cuirass,medieval body armor that covers the chest and back
+33291,cuirassier,a cavalryman equipped with a cuirass
+33292,cuisine culinary_art,the practice or manner of preparing food or the food so prepared
+33293,cuisse,armor plate that protects the thigh
+33294,cul cul_de_sac dead_end,a passage with access only at one end
+33295,culdoscope,a specialized endoscope for visually examining a woman's pelvic organs
+33296,culdoscopy,endoscopic examination of a woman's pelvic organs by the insertion of a culdoscope through the vagina
+33297,cull reject,the person or thing that is rejected or set aside as inferior in quality
+33298,cullis,a gutter in a roof
+33299,culm,stem of plants of the Gramineae
+33300,culmination,(astronomy) a heavenly body's highest celestial point above an observer's horizon
+33301,culotte,a divided skirt
+33302,cult,followers of an exclusive system of beliefs and practices
+33303,cult,followers of an unorthodox, extremist, or false religion or sect who often live outside of conventional society under the direction of a charismatic leader
+33304,cult,a religion or sect that is generally considered to be unorthodox, extremist, or false; "it was a satanic cult"
+33305,cult cultus religious_cult,a system of religious beliefs and rituals; "devoted to the cultus of the Blessed Virgin"
+33306,cult_of_personality,intense devotion to a particular person
+33307,cultism,devotion to the doctrine or a cult or to the practices of a cult
+33308,cultist,a member of an unorthodox cult who generally lives outside of conventional society under the direction of a charismatic leader
+33309,cultist,a member of a religious cult
+33310,cultivar,a variety of a plant developed from a natural species and maintained under cultivation
+33311,cultivated_land farmland plowland ploughland tilled_land tillage tilth,arable land that is worked by plowing and sowing and raising crops
+33312,cultivated_parsnip,European biennial having a long fusiform root that has been made palatable through cultivation
+33313,cultivated_plant,plants that are grown for their produce
+33314,cultivated_rice Oryza_sativa,yields the staple food of 50 percent of world's population
+33315,cultivation,the process of fostering the growth of something; "the cultivation of bees for honey"
+33316,cultivation,socialization through training and education to develop one's mind or manners; "her cultivation was remarkable"
+33317,cultivation,the act of raising or growing plants (especially on a large scale)
+33318,cultivation,(agriculture) production of food by preparing the land to grow crops (especially on a large scale)
+33319,cultivator tiller,a farm implement used to break up the surface of the soil (for aeration and weed control and conservation of moisture)
+33320,cultural_attache,an attache who is a specialist in cultural matters
+33321,cultural_movement,a group of people working together to advance certain cultural goals
+33322,culturati,people interested in culture and cultural activities
+33323,culture,the attitudes and behavior that are characteristic of a particular social group or organization; "the developing drug culture"; "the reason that the agency is doomed to inaction has something to do with the FBI culture"
+33324,culture,the tastes in art and manners that are favored by a social group
+33325,culture,(biology) the growing of microorganisms in a nutrient medium (such as gelatin or agar); "the culture of cells in a Petri dish"
+33326,culture,the raising of plants or animals; "the culture of oysters"
+33327,culture civilization civilisation,a particular society at a particular time and place; "early Mayan civilization"
+33328,culture_medium medium,(bacteriology) a nutrient substance (solid or liquid) that is used to cultivate micro-organisms
+33329,culture_shock,a condition of disorientation affecting someone who is suddenly exposed to an unfamiliar culture or way of life or set of attitudes
+33330,culverin,a heavy cannon with a long barrel used in the 16th and 17th centuries
+33331,culverin,a medieval musket
+33332,culvert,a transverse and totally enclosed drain under a road or railway
+33333,cumin Cuminum_cyminum,dwarf Mediterranean annual long cultivated for its aromatic seeds
+33334,cumin cumin_seed,aromatic seeds of the cumin herb of the carrot family
+33335,cummerbund,a broad pleated sash worn as formal dress with a tuxedo
+33336,cummings e._e._cummings Edward_Estlin_Cummings,United States writer noted for his typographically eccentric poetry (1894-1962)
+33337,cumulative_preferred cumulative_preferred_stock,preferred stock whose dividends if omitted accumulate until paid out
+33338,cumulative_vote,an election in which each person has as many votes as there are positions to be filled and they can all be cast for one candidate or can be distributed in any manner
+33339,cumulonimbus cumulonimbus_cloud thundercloud,a dark cloud of great vertical extent charged with electricity; associated with thunderstorms
+33340,cumulus cumulus_cloud,a globular cloud
+33341,cuneate_leaf,a wedge-shaped leaf having the acute angle at the base
+33342,cuneiform,an ancient wedge-shaped script used in Mesopotamia and Persia
+33343,cunner bergall Tautogolabrus_adspersus,common in north Atlantic coastal waters of the United States
+33344,cunnilingus cunnilinctus,oral stimulation of the vulva or clitoris
+33345,cunning,crafty artfulness (especially in deception)
+33346,cunt bitch,a person (usually but not necessarily a woman) who is thoroughly disliked; "she said her son thought Hillary was a bitch"
+33347,cunt puss pussy slit snatch twat,obscene terms for female genitals
+33348,cup,any cup-shaped concavity; "bees filled the waxen cups with honey"; "he wore a jock strap with a metal cup"; "the cup of her bra"
+33349,cup,a United States liquid unit equal to 8 fluid ounces
+33350,cup,cup-shaped plant organ
+33351,cup,a punch served in a pitcher instead of a punch bowl
+33352,cup,the hole (or metal container in the hole) on a golf green; "he swore as the ball rimmed the cup and rolled away"; "put the flag back in the cup"
+33353,cup,a small open container usually used for drinking; usually has a handle; "he put the cup back in the saucer"; "the handle of the cup was missing"
+33354,cup cupful,the quantity a cup will hold; "he drank a cup of coffee"; "he borrowed a cup of sugar"
+33355,cup loving_cup,a large metal vessel with two handles that is awarded as a trophy to the winner of a competition; "the school kept the cups is a special glass case"
+33356,cup_final,the final match of any cup competition (such as the annual final of the English soccer competition at Wembley)
+33357,cup_hook,hook (usually on the underside of a shelf) for hanging cups
+33358,cup_of_tea bag dish,an activity that you like or at which you are superior; "chemistry is not my cup of tea"; "his bag now is learning to play golf"; "marriage was scarcely his dish"
+33359,cup_tie,an eliminating game between teams in a cup competition
+33360,cupbearer,the attendant (usually an officer of a nobleman's household) whose duty is to fill and serve cups of wine
+33361,cupboard closet,a small room (or recess) or cabinet used for storage space
+33362,cupboard_love,a show of affection motivated by selfishness
+33363,cupcake,small cake baked in a muffin tin
+33364,cupflower nierembergia,any of various plants of the genus Nierembergia having upturned bell-shaped flowers
+33365,cupid,a symbol for love in the form of a cherubic naked boy with wings and a bow and arrow
+33366,cupola,a vertical cylindrical furnace for melting iron for casting
+33367,cupola,a roof in the form of a dome
+33368,cuppa cupper,a cup of tea
+33369,cupping,a treatment in which evacuated cups are applied to the skin to draw blood through the surface
+33370,cuprite,a mineral consisting of cuprous oxide that is a source of copper
+33371,cupronickel,a 60/40 alloy of copper and nickel
+33372,cupule,a sucker on the feet of certain flies
+33373,cupule acorn_cup,cup-shaped structure of hardened bracts at the base of an acorn
+33374,cur,a cowardly and despicable person
+33375,cur mongrel mutt,an inferior dog or one of mixed breed
+33376,curability curableness,capability of being cured or healed
+33377,curacao curacoa,flavored with sour orange peel
+33378,curacy,the position of a curate
+33379,curandera,a Mexican woman who practices healing techniques inherited from the Mayans
+33380,curandero,a Mexican man who practices healing techniques inherited from the Mayans
+33381,curassow,large crested arboreal game bird of warm parts of the Americas having long legs and tails; highly esteemed as game and food
+33382,curate minister_of_religion minister parson pastor rector,a person authorized to conduct religious worship; "clergymen are usually called ministers in Protestant churches"
+33383,curator conservator,the custodian of a collection (as a museum or library)
+33384,curatorship,the position of curator
+33385,curb curb_bit,a horse's bit with an attached chain or strap to check the horse
+33386,curb curbing kerb,an edge between a sidewalk and a roadway consisting of a line of curbstones (usually forming part of a gutter)
+33387,curb_market,a stock market for trading in securities not listed on the New York Stock Exchange
+33388,curb_roof,a roof with two or more slopes on each side of the ridge
+33389,curb_service,service provided to customers who remain in their vehicles
+33390,curbside,the side of a sidewalk that is bordered by a curb; "policemen stood at intervals along the curbside"
+33391,curbstone kerbstone,a paving stone forming part of a curb
+33392,curd,a coagulated liquid resembling milk curd; "bean curd"; "lemon curd"
+33393,curd,coagulated milk; used to make cheese; "Little Miss Muffet sat on a tuffet eating some curds and whey"
+33394,curdling clotting coagulation,the process of forming semisolid lumps in a liquid
+33395,curettage curettement,surgery to remove tissue or growths from a bodily cavity (as the uterus) by scraping with a curette
+33396,curette curet,a surgical instrument shaped like a scoop to remove tissue from a bodily cavity
+33397,curfew,the time that the curfew signal is sounded
+33398,curfew,a signal (usually a bell) announcing the start of curfew restrictions
+33399,curfew,an order that after a specific time certain activities (as being outside on the streets) are prohibited
+33400,curie Ci,a unit of radioactivity equal to the amount of a radioactive isotope that decays at the rate of 37,000,000,000 disintegrations per second
+33401,curio curiosity oddity oddment peculiarity rarity,something unusual -- perhaps worthy of collecting
+33402,curiosa,books on strange or unusual subjects (especially erotica)
+33403,curiosity wonder,a state in which you want to learn more about something
+33404,curiousness inquisitiveness,a state of active curiosity
+33405,curium Cm atomic_number_96,a radioactive transuranic metallic element; produced by bombarding plutonium with helium nuclei
+33406,curled_leaf_pondweed curly_pondweed Potamogeton_crispus,European herb naturalized in the eastern United States and California
+33407,curler hair_curler roller crimper,a mechanical device consisting of a cylindrical tube around which the hair is wound to curl it; "a woman with her head full of curlers is not a pretty sight"
+33408,curlew,large migratory shorebirds of the sandpiper family; closely related to woodcocks but having a down-curved bill
+33409,curlew_sandpiper Calidris_Ferruginea,Old World sandpiper with a curved bill like a curlew
+33410,curliness waviness,(of hair) a tendency to curl
+33411,curling,a game played on ice in which heavy stones with handles are slid toward a target
+33412,curling_iron,a cylindrical metal home appliance that heats a lock of hair that has been curled around it
+33413,curly-coated_retriever,an English breed having a tightly curled black or liver-colored coat; retrieves game from land or water
+33414,curly-heads Clematis_ochreleuca,shrubby clematis of the eastern United States having curly foliage
+33415,curly_grass curly_grass_fern Schizaea_pusilla,rare small fern of northeastern North America having numerous slender spiraling fronds and forming dense tufts
+33416,curlycup_gumweed Grindelia_squarrosa,perennial gumweed of western and central North America
+33417,curmudgeon,a crusty irascible cantankerous old person full of stubborn ideas
+33418,currant,small dried seedless raisin grown in the Mediterranean region and California; used in cooking
+33419,currant,any of several tart red or black berries used primarily for jellies and jams
+33420,currant currant_bush,any of various deciduous shrubs of the genus Ribes bearing currants
+33421,currawong bell_magpie,bluish black fruit-eating bird with a bell-like call
+33422,currency,the metal or paper medium of exchange that is presently used
+33423,currency,general acceptance or use; "the currency of ideas"
+33424,current electric_current,a flow of electricity through a conductor; "the current was measured in amperes"
+33425,current stream,a steady flow of a fluid (usually from natural causes); "the raft floated downstream on the current"; "he felt a stream of air"; "the hose ejected a stream of water"
+33426,current_account,that part of the balance of payments recording a nation's exports and imports of goods and services and transfer payments
+33427,current_intelligence,intelligence of all types and forms of immediate interest; usually disseminated without delays for evaluation or interpretation
+33428,current_unit,a measure of the amount of electric charge flowing past a circuit point at a specific time
+33429,currentness currency up-to-dateness,the property of belonging to the present time; "the currency of a slang term"
+33430,curriculum_vitae CV resume,a summary of your academic and work history
+33431,currier,a craftsman who curries leather for use
+33432,curry,(East Indian cookery) a pungent dish of vegetables or meats flavored with curry powder and usually eaten with rice
+33433,curry_powder,pungent blend of cumin and ground coriander seed and turmeric and other spices
+33434,curry_sauce,allemande sauce with curry powder and coconut milk instead of stock
+33435,currycomb,a square comb with rows of small teeth; used to curry horses
+33436,curse curse_word expletive oath swearing swearword cuss,profane or obscene expression usually of surprise or anger; "expletives were deleted"
+33437,curse torment,a severe affliction
+33438,cursed_crowfoot celery-leaved_buttercup Ranunculus_sceleratus,annual herb growing in marshy places
+33439,cursor pointer,(computer science) indicator consisting of a movable spot of light (an icon) on a visual display; moving it allows the user to point to commands or screen positions
+33440,curtailment,the temporal property of being cut short
+33441,curtain,any barrier to communication or vision; "a curtain of secrecy"; "a curtain of trees"
+33442,curtain drape drapery mantle pall,hanging cloth used as a blind (especially for a window)
+33443,curtain_lecture,a private lecture to a husband by his wife
+33444,curtain_raiser,a short play presented before the main play
+33445,curtain_raiser,any preliminary activity
+33446,curtain_ring,a circular ring for holding up a curtain
+33447,curtate_cycloid,a cycloid generated by a point inside the rolling circle
+33448,curtsy curtsey,bending the knees; a gesture of respect made by women
+33449,curvaceousness shapeliness voluptuousness,the quality of having a well-rounded body
+33450,curvature,(medicine) a curving or bending; often abnormal; "curvature of the spine"
+33451,curvature,the rate of change (at a point) of the angle between a curve and a tangent to the curve
+33452,curvature curve,the property possessed by the curving of a line or surface
+33453,curve,a line on a graph representing data
+33454,curve curve_ball breaking_ball bender,a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter
+33455,curve curved_shape,the trace of a point whose direction of motion changes
+33456,curvet vaulting,a light leap by a horse in which both hind legs leave the ground before the forelegs come down
+33457,curvilinear_correlation nonlinear_correlation skew_correlation,any correlation in which the rates of change of the variables is not constant
+33458,curvilinear_regression,the relation between variables when the regression equation is nonlinear (quadratic or higher order)
+33459,cuscus,woolly-haired monkey-like arboreal marsupial of New Guinea and northern Australia
+33460,cush-cush Dioscorea_trifida,tropical American yam with small yellow edible tubers
+33461,cushaw,globose or ovoid squash with striped grey and green warty rind
+33462,cushaw Cucurbita_mixta Cucurbita_argyrosperma,plant bearing squash having globose to ovoid fruit with variously striped grey and green and white warty rinds
+33463,cushion,the layer of air that supports a hovercraft or similar vehicle
+33464,cushion,a soft bag filled with air or a mass of padding such as feathers or foam rubber etc.
+33465,cushion_flower pincushion_hakea Hakea_laurina,tall straggling shrub with large globose crimson-yellow flowers; western Australia
+33466,cusk,the lean flesh of a cod-like fish of North Atlantic waters
+33467,cusk torsk Brosme_brosme,large edible marine fish of northern coastal waters; related to cod
+33468,cusk-eel,elongate compressed somewhat eel-shaped fishes
+33469,cusp,small elevation on the grinding surface of a tooth
+33470,cusp,point formed by two intersecting arcs (as from the intrados of a Gothic arch)
+33471,cusp leaflet,a thin triangular flap of a heart valve
+33472,cuspidation,a decoration using cusps
+33473,cussedness orneriness,meanspirited disagreeable contrariness
+33474,custard,sweetened mixture of milk and eggs baked or boiled or frozen
+33475,custard_apple,the fruit of any of several tropical American trees of the genus Annona having soft edible pulp
+33476,custard_apple custard_apple_tree,any of several tropical American trees bearing fruit with soft edible pulp
+33477,custard_pie,a prop consisting of an open pie filled with real or artificial custard; thrown in slapstick comedies
+33478,custodial_account,a brokerage firm account that parents have created for a minor
+33479,custodian keeper steward,one having charge of buildings or grounds or animals
+33480,custodianship,the position of custodian
+33481,custody,holding by the police; "the suspect is in custody"
+33482,custody_battle,litigation to settle custody of the children of a divorced couple
+33483,custody_case,a legal action to determine custody (usually of children following a divorce)
+33484,custom,habitual patronage; "I have given this tailor my custom for many years"
+33485,custom tradition,a specific practice of long standing
+33486,custom usage usance,accepted or habitual practice
+33487,custom-made custom-built,an item made to the customer's specifications
+33488,customer client,someone who pays for goods or services
+33489,customer_agent,a foreign purchaser who buys goods outright for resale
+33490,customhouse customshouse,a government building where customs are collected and where ships are cleared to enter or leave the country
+33491,customs customs_duty custom impost,money collected under a tariff
+33492,customs_union,an association of nations to promote free trade within the union and set common tariffs for nations that are not members
+33493,cut,a step on some scale; "he is a cut above the rest"
+33494,cut,a share of the profits; "everyone got a cut of the earnings"
+33495,cut,(film) an immediate transition from one shot to the next; "the cut from the accident scene to the hospital seemed too abrupt"
+33496,cut,the style in which a garment is cut; "a dress of traditional cut"
+33497,cut,a canal made by erosion or excavation
+33498,cut,the act of reducing the amount or number; "the mayor proposed extensive cuts in the city budget"
+33499,cut,an unexcused absence from class; "he was punished for taking too many cuts in his math class"
+33500,cut cut_of_meat,a piece of meat that has been cut from an animal carcass
+33501,cut cutting,the division of a deck of cards before dealing; "he insisted that we give him the last cut before every deal"; "the cutting of the cards soon became a ritual"
+33502,cut cutting,the act of penetrating or opening open with a sharp edge; "his cut in the lining revealed the hidden jewels"
+33503,cut cutting,the act of cutting something into parts; "his cuts were skillful"; "his cutting of the cake made a terrible mess"
+33504,cut cutting cutting_off,the act of shortening something by chopping off the ends; "the barber gave him a good cut"
+33505,cut gash,a trench resembling a furrow that was made by erosion or excavation
+33506,cut gash slash slice,a wound made by cutting; "he put a bandage over the cut"
+33507,cut track,a distinct selection of music from a recording or a compact disc; "he played the first cut on the cd"; "the title track of the album"
+33508,cut undercut,(sports) a stroke that puts reverse spin on the ball; "cuts do not bother a good tennis player"
+33509,cut-in insert,(broadcasting) a local announcement inserted into a network program
+33510,cut-in insert,(film) a still picture that is introduced and that interrupts the action of a film
+33511,cut_glass,glass decorated by cutting or grinding facets
+33512,cut_of_beef,cut of meat from beef cattle
+33513,cut_of_lamb,cut of meat from a lamb
+33514,cut_of_mutton,cut of meat from a mature sheep
+33515,cut_of_pork,cut of meat from a hog or pig
+33516,cut_of_veal,cut of meat from a calf
+33517,cutaneous_anthrax malignant_pustule,a form of anthrax infection that begins as papule that becomes a vesicle and breaks with a discharge of toxins; symptoms of septicemia are severe with vomiting and high fever and profuse sweating; the infection is often fatal
+33518,cutaneous_leishmaniasis Old_World_leishmaniasis oriental_sore tropical_sore Delhi_boil Aleppo_boil,leishmaniasis of the skin; characterized by ulcerative skin lesions
+33519,cutaneous_sensation haptic_sensation skin_sensation,a sensation localized on the skin
+33520,cutaneous_vein vena_cutanea,one of a number of veins in the subcutaneous tissue that empty into deep veins
+33521,cutaway,a man's coat cut diagonally from the waist to the back of the knees
+33522,cutaway cutaway_drawing cutaway_model,a representation (drawing or model) of something in which the outside is omitted to reveal the inner parts
+33523,cutback,a reduction in quantity or rate
+33524,cutch kutch,tannin extract derived from any of several mangrove barks of Pacific areas
+33525,cuticle,the dead skin at the base of a fingernail or toenail
+33526,cuticula,the outer body wall of an insect
+33527,cutin,(biochemistry) a waxy transparent material that occurs in the cuticle of plants and consists of highly polymerized esters of fatty acids
+33528,cutlas cutlass,a short heavy curved sword with one edge; formerly used by sailors
+33529,cutlassfish frost_fish hairtail,long-bodied marine fishes having a long whiplike scaleless body and sharp teeth; closely related to snake mackerel
+33530,cutleaved_coneflower Rudbeckia_laciniata,tall leafy plant with erect branches ending in large yellow flower heads with downward-arching rays; grow in Rocky Mountains south to Arizona and east to the Atlantic coast
+33531,cutler,a dealer in cutlery
+33532,cutlery eating_utensil,tableware implements for cutting and eating food
+33533,cutlet scallop scollop escallop,thin slice of meat (especially veal) usually fried or broiled
+33534,cutoff,a designated limit beyond which something cannot function or must be terminated
+33535,cutoff,a device that terminates the flow in a pipe
+33536,cutout,a switch that interrupts an electric circuit in the event of an overload
+33537,cutout,a photograph from which the background has been cut away
+33538,cutout,a part that is cut out or is intended to be cut out
+33539,cutter,someone whose work is cutting (as e.g. cutting cloth for garments)
+33540,cutter,a sailing vessel with a single mast set further back than the mast of a sloop
+33541,cutter carver,someone who carves the meat
+33542,cutter cutlery cutting_tool,a cutting implement; a tool for cutting
+33543,cutthroat,someone who murders by cutting the victim's throat
+33544,cutting,a piece cut off from the main part of something
+33545,cutting slip,a part (sometimes a root or leaf or bud) removed from a plant to propagate a new plant through rooting or grafting
+33546,cutting thinning,the act of diluting something; "the cutting of whiskey with water"; "the thinning of paint with turpentine"
+33547,cutting_angle,the angle between the face of a cutting tool and the surface of the work
+33548,cutting_implement,a tool used for cutting or slicing
+33549,cutting_room,a room where films or tapes are edited (by cutting out unwanted parts)
+33550,cuttlefish cuttle,ten-armed oval-bodied cephalopod with narrow fins as long as the body and a large calcareous internal shell
+33551,cutty_stool,a low stool; formerly in Scotland, a seat in a church where an offender was publicly rebuked
+33552,cutwork,embroidery in which the design is outlined in a buttonhole stitch and the intervening material is cut away
+33553,cutworm,North American moth whose larvae feed on young plant stems cutting them off at the ground
+33554,cy_pres rule_of_cy_pres cy_pres_doctrine,a rule that when literal compliance is impossible the intention of a donor or testator should be carried out as nearly as possible
+33555,cyan,a primary subtractive color for light; has a blue-green color
+33556,cyanamide cyanamid,a weak soluble dibasic acid (the parent acid of cyanamide salts)
+33557,cyanic_acid,a colorless poisonous volatile liquid acid that hydrolyzes readily to ammonia and carbon dioxide
+33558,cyanide,an extremely poisonous salt of hydrocyanic acid
+33559,cyanide_poisoning,poisoning due to ingesting or inhaling cyanide; common in smoke from fires and in industrial chemicals
+33560,cyanide_process,an industrial process for extracting gold and silver by treating ore with a sodium cyanide solution
+33561,cyanine_dye,any of a class of dyes containing a -CH= group linking two heterocyclic rings containing nitrogen; used as sensitizers in photography
+33562,cyano_group cyano_radical cyanide_group cyanide_radical,the monovalent group -CN in a chemical compound
+33563,cyanobacteria blue-green_algae,predominantly photosynthetic prokaryotic organisms containing a blue pigment in addition to chlorophyll; occur singly or in colonies in diverse habitats; important as phytoplankton
+33564,cyanogen,a colorless toxic gas with a pungent almond odor; has been used in chemical warfare
+33565,cyanohydrin,any organic compound in which the cyano radical -CN and the hydroxyl radical -OH are attached to the same carbon atom
+33566,cyanosis,a bluish discoloration of the skin and mucous membranes
+33567,cyanuric_acid,a trimer of cyanic acid
+33568,cyber-terrorism cyberwar,an assault on electronic communication networks
+33569,cyber-terrorist cyberpunk,a programmer who breaks into computer systems in order to steal or change or destroy information as a form of cyber-terrorism
+33570,cyberart,art that is produced with the help of computer hardware and software
+33571,cybercafe,a cafe whose customers sit at computer terminals and log on to the internet while they eat and drink
+33572,cybercrime,crime committed using a computer and the internet to steal a person's identity or sell contraband or stalk victims or disrupt operations with malevolent programs
+33573,cyberculture,the culture that emerges from the use of computers for communication and entertainment and business
+33574,cybernaut,a computer user who uses the internet; someone who explores cyberspace
+33575,cybernetics,(biology) the field of science concerned with processes of communication and control (especially the comparison of these processes in biological and artificial systems)
+33576,cyberphobia,irrational fear of computers or technology
+33577,cyberpunk,a writer of science fiction set in a lawless subculture of an oppressive society dominated by computer technology
+33578,cyberpunk,a genre of fast-paced science fiction involving oppressive futuristic computerized societies
+33579,cybersex,sexual arousal involving communication on the internet
+33580,cyborg bionic_man bionic_woman,a human being whose body has been taken over in whole or in part by electromechanical devices; "a cyborg is a cybernetic organism"
+33581,cycad,any tropical gymnosperm of the order Cycadales; having unbranched stems with a crown of fernlike leaves
+33582,cyclamen Cyclamen_purpurascens,Mediterranean plant widely cultivated as a houseplant for its showy dark green leaves splotched with silver and nodding white or pink to reddish flowers with reflexed petals
+33583,cycle,a series of poems or songs on the same theme; "Schubert's song cycles"
+33584,cycle,a periodically repeated sequence of events; "a cycle of reprisal and retaliation"
+33585,cycle oscillation,a single complete execution of a periodically repeated phenomenon; "a year constitutes a cycle of the seasons"
+33586,cycle rhythm round,an interval during which a recurring sequence of events occurs; "the never-ending cycle of the seasons"
+33587,cycle_of_rebirth,(Hinduism) repeated rebirth in new forms
+33588,cyclic_neutropenia,neutropenia that occurs periodically
+33589,cyclic_redundancy_check,an error correction code that is recorded in each sector of a magnetic disk and used to catch errors in the data
+33590,cyclicity periodicity,the quality of recurring at regular intervals
+33591,cycling,the sport of traveling on a bicycle or motorcycle
+33592,cyclist bicyclist bicycler wheeler biker,a person who rides a bicycle
+33593,cyclobenzaprine Flexeril,muscle relaxant (trade name Flexeril) used for muscle spasms or acute injury
+33594,cyclodestructive_surgery,an eye operation that treats glaucoma by destroying the ciliary body with a laser
+33595,cyclohexanol,a colorless oily alcohol that smells like camphor
+33596,cyclohexanol_phthalate,the cyclohexanol ester of phthalic acid
+33597,cycloid,a line generated by a point on a circle rolling along a straight line
+33598,cyclone,(meteorology) rapid inward circulation of air masses about a low pressure center; circling counterclockwise in the northern hemisphere and clockwise in the southern
+33599,cyclone,a violent rotating windstorm
+33600,cyclooxygenase Cox,either of two related enzymes that control the production of prostaglandins and are blocked by aspirin
+33601,cyclooxygenase-1 Cox-1,an enzyme that regulates prostaglandins that are important for the health of the stomach lining and kidneys; "an unfortunate side effect of NSAIDs is that they block Cox-1"
+33602,cyclooxygenase-2 Cox-2,an enzyme that makes prostaglandins that cause inflammation and pain and fever; "the beneficial effects of NSAIDs result from their ability to block Cox-2"
+33603,cyclopean_masonry,a primitive style of masonry characterized by use of massive stones of irregular shape and size
+33604,cyclopia,a developmental abnormality in which there is only one eye
+33605,cyclopropane,a colorless flammable gas sometimes used as an inhalation anesthetic
+33606,cyclops water_flea,minute free-swimming freshwater copepod having a large median eye and pear-shaped body and long antennae used in swimming; important in some food chains and as intermediate hosts of parasitic worms that affect man e.g. Guinea worms
+33607,cycloserine,an antibiotic that is especially active against the tubercle bacillus
+33608,cyclosis streaming,the circulation of cytoplasm within a cell
+33609,cyclostome,primitive aquatic vertebrate
+33610,cyclostyle,a writing implement with a small toothed wheel that cuts small holes in a stencil
+33611,cyclothymia cyclothymic_disorder cyclic_disorder,a mild bipolar disorder that persists over a long time
+33612,cyclotron,an accelerator that imparts energies of several million electron-volts to rapidly moving particles
+33613,cygnet,a young swan
+33614,cylinder,a surface generated by rotating a parallel line around a fixed line
+33615,cylinder,a solid bounded by a cylindrical surface and two parallel planes (the bases)
+33616,cylinder,a cylindrical container for oxygen or compressed air
+33617,cylinder piston_chamber,a chamber within which piston moves
+33618,cylinder_head,a detachable plate that covers the closed end of a cylinder chamber in a reciprocating engine or pump
+33619,cylinder_lock,a lock in which a cylinder rotates to move a bolt; tumblers are pins; inserting the key lifts and aligns the pins to free the cylinder to rotate
+33620,cylindricality cylindricalness,the roundness of a 3-dimensional cylinder
+33621,cyma cymatium,(architecture) a molding for a cornice; in profile it is shaped like an S (partly concave and partly convex)
+33622,cyma_recta,a cyma in which the upper section is concave and the lower section is convex
+33623,cymbal,a percussion instrument consisting of a concave brass disk; makes a loud crashing sound when hit with a drumstick or when two are struck together
+33624,cymbalist,a performer on the cymbals
+33625,cymbid cymbidium,any of various plants of the genus Cymbidium having narrow leaves and a long drooping cluster of numerous showy and variously colored boat-shaped flowers; extensively hybridized and cultivated as houseplants and important florists' flowers
+33626,cyme,more or less flat-topped cluster of flowers in which the central or terminal flower opens first
+33627,cymene,any of three isotopes of a colorless aromatic liquid hydrocarbon occurring in the volatile oil of cumin and thyme and used in the manufacture of synthetic resins
+33628,cymling pattypan_squash,squash plant having flattened round fruit with a scalloped edge; usually greenish white
+33629,cymule,a small cyme, generally with few flowers
+33630,cynancum,any of various mostly giant tropical lianas of Africa and Madagascar having greenish or purple flowers and long smooth pods; roots formerly used as an emetic
+33631,cynic faultfinder,someone who is critical of the motives of others
+33632,cynicism,a cynical feeling of distrust
+33633,cynodont,small carnivorous reptiles
+33634,cynophobia,a morbid fear of dogs
+33635,cynosure,something that provides guidance (as Polaris guides mariners); "let faith be your cynosure to walk by"
+33636,cynosure,something that strongly attracts attention and admiration; "if he was the cynosure of all eyes he didn't notice"
+33637,cynthia_moth Samia_cynthia Samia_walkeri,large Asiatic moth introduced into the United States; larvae feed on the ailanthus
+33638,cypress,wood of any of various cypress trees especially of the genus Cupressus
+33639,cypress cypress_tree,any of numerous evergreen conifers of the genus Cupressus of north temperate regions having dark scalelike leaves and rounded cones
+33640,cypress_pine,any of several evergreen trees or shrubs of Australia and northern New Caledonia
+33641,cypress_sedge Carex_pseudocyperus,tufted sedge of temperate regions; nearly cosmopolitan
+33642,cypress_spurge Euphorbia_cyparissias,Old World perennial having foliage resembling cypress; naturalized as a weed in the United States
+33643,cypress_vine star-glory Indian_pink Ipomoea_quamoclit Quamoclit_pennata,tropical American annual climber having red (sometimes white) flowers and finely dissected leaves; naturalized in United States and elsewhere
+33644,cyprinid cyprinid_fish,soft-finned mainly freshwater fishes typically having toothless jaws and cycloid scales
+33645,cypriniform_fish,a soft-finned fish of the order Cypriniformes
+33646,cyprinodont,any member of the family Cyprinodontidae
+33647,cypripedia,a plant or flower of the genus Cypripedium
+33648,cyproheptadine Periactin,an antihistamine (trade name Periactin) used to treat some allergic reactions
+33649,cyrilla leatherwood white_titi Cyrilla_racemiflora,shrub or small tree of southeastern United States to West Indies and Brazil; grown for the slender racemes of white flowers and orange and crimson foliage
+33650,cyst,a closed sac that develops abnormally in some body structure
+33651,cysteine,an amino acid containing sulfur that is found in most proteins; oxidizes on exposure to air to form cystine
+33652,cystic_artery arteria_cystica,a branch of the hepatic artery; supplies the gall bladder and the surface of the liver
+33653,cystic_fibrosis CF fibrocystic_disease_of_the_pancreas pancreatic_fibrosis mucoviscidosis,the most common hereditary disease; the child's lungs and intestines and pancreas become clogged with thick mucus; caused by defect in a single gene; no cure is known
+33654,cystic_fibrosis_transport_regulator CFTR,the gene that is mutated in cystic fibrosis
+33655,cystic_vein vena_cystica,vein that drains the gallbladder
+33656,cystine,a crystalline amino acid found in proteins (especially keratin); discovered in bladder stones
+33657,cystitis,inflammation of the urinary bladder and ureters
+33658,cystocele colpocystocele,hernia in which the urinary bladder protrudes through the wall of the vagina; sometimes occurs after childbirth
+33659,cystoid_macular_edema,a specific pattern of swelling in the central retina
+33660,cystoplegia cystoparalysis,paralysis of the urinary bladder
+33661,cytoarchitecture cytoarchitectonics,the cellular composition of a bodily structure
+33662,cytochrome,(biochemistry) a class of hemoprotein whose principal biological function is electron transfer (especially in cellular respiration)
+33663,cytochrome_c,the most abundant and stable cytochrome; involved in energy transfer
+33664,cytogenesis cytogeny,the origin and development and variation of cells
+33665,cytogeneticist,a geneticist who specializes in the cellular components associated with heredity
+33666,cytogenetics,the branch of biology that studies the cellular aspects of heredity (especially the chromosomes)
+33667,cytokine,any of various protein molecules secreted by cells of the immune system that serve to regulate the immune system
+33668,cytokinesis,organic process consisting of the division of the cytoplasm of a cell following karyokinesis bringing about the separation into two daughter cells
+33669,cytologic_specimen,a specimen used for cytologic examination and diagnosis
+33670,cytologist,a biologist who studies the structure and function of cells
+33671,cytology,the branch of biology that studies the structure and function of cells
+33672,cytolysin,a substance that partly or completely destroys animal cells
+33673,cytolysis,pathological breakdown of cells by the destruction of their outer membrane
+33674,cytomegalovirus CMV,any of a group of herpes viruses that enlarge epithelial cells and can cause birth defects; can affect humans with impaired immunological systems
+33675,cytopenia,a deficiency of some cellular element of the blood
+33676,cytophotometer,a photometer that can be used to locate and identify chemical compounds in a cell by measuring the intensity of the light that passes through stained sections of the cytoplasm
+33677,cytophotometry,the study of chemical compounds inside a cell by means of a cytophotometer
+33678,cytoplasm cytol,the protoplasm of a cell excluding the nucleus; is full of proteins that control cell metabolism
+33679,cytoplast,the intact cytoplasmic content of a cell
+33680,cytosine C,a base found in DNA and RNA and derived from pyrimidine; pairs with guanine
+33681,cytoskeleton,a microscopic network of actin filaments and microtubules in the cytoplasm of many living cells that gives the cell shape and coherence
+33682,cytosol,the aqueous part of the cytoplasm within which various particles and organelles are suspended
+33683,cytostome,mouth of a protozoan
+33684,cytotoxic_drug,any drug that has a toxic effect on cells; commonly used in chemotherapy to inhibit the proliferation of cancerous cells
+33685,cytotoxicity,the degree to which something is toxic to living cells
+33686,cytotoxin,any substance that has a toxic effect on cells
+33687,czar,a person having great power
+33688,czar tsar tzar,a male monarch or emperor (especially of Russia prior to 1917)
+33689,czarina tsarina tzarina czaritza tsaritsa,the wife or widow of a czar
+33690,da'wah dawah,missionary work for Islam
+33691,da_Gamma Vasco_da_Gamma Gamma,Portuguese navigator who led an expedition around the Cape of Good Hope in 1497; he sighted and named Natal on Christmas Day before crossing the Indian Ocean (1469-1524)
+33692,dab splash splatter,a small quantity of something moist or liquid; "a dab of paint"; "a splatter of mud"; "just a splash of whiskey"
+33693,dabbler dilettante sciolist,an amateur who engages in an activity without serious intentions and who pretends to have knowledge
+33694,dabbling_duck dabbler,any of numerous shallow-water ducks that feed by upending and dabbling
+33695,dabchick little_grebe Podiceps_ruficollis,small European grebe
+33696,dace Leuciscus_leuciscus,small European freshwater fish with a slender bluish-green body
+33697,dacha,Russian country house
+33698,dachshund dachsie badger_dog,small long-bodied short-legged German breed of dog having a short sleek coat and long drooping ears; suited for following game into burrows
+33699,dacite,a grey volcanic rock containing plagioclase and quartz and other crystalline minerals
+33700,dacoit dakoit,a member of an armed gang of robbers
+33701,dacoity dakoity,robbery by a gang of armed dacoits
+33702,dacryocystitis,inflammation of the lacrimal sac causing obstruction of the tube draining tears into the nose
+33703,dacryon,the craniometric point at the junction of the anterior border of the lacrimal bone with the frontal bone
+33704,dactyl,a metrical unit with stressed-unstressed-unstressed syllables
+33705,dactylomegaly,abnormally large fingers or toes
+33706,dad dada daddy pa papa pappa pop,an informal term for a father; probably derived from baby talk
+33707,dada dadaism,a nihilistic art movement (especially in painting) that flourished in Europe early in the 20th century; based on irrationality and negation of the accepted laws of beauty
+33708,dado,the section of a pedestal between the base and the surbase
+33709,dado,a rectangular groove cut into a board so that another piece can fit into it
+33710,dado_plane,a plane for making a dado groove
+33711,daemon demigod,a person who is part mortal and part god
+33712,daffodil Narcissus_pseudonarcissus,any of numerous varieties of Narcissus plants having showy often yellow flowers with a trumpet-shaped central crown
+33713,daffodil_garlic flowering_onion Naples_garlic Allium_neopolitanum,European onion with white flowers
+33714,dagame lemonwood_tree Calycophyllum_candidissimum,source of a tough elastic wood
+33715,dagga Cape_dagga red_dagga wilde_dagga Leonotis_leonurus,relatively nontoxic South African herb smoked like tobacco
+33716,dagger obelisk,a character used in printing to indicate a cross reference or footnote
+33717,dagger sticker,a short knife with a pointed blade used for piercing or stabbing
+33718,daggerboard,a removable centerboard on a small sailboat that can be lowered into the water to serve as a keel
+33719,daguerreotype,a photograph made by an early photographic process; the image was produced on a silver plate sensitized to iodine and developed in mercury vapor
+33720,dahlia Dahlia_pinnata,any of several plants of or developed from the species Dahlia pinnata having tuberous roots and showy rayed variously colored flower heads; native to the mountains of Mexico and Central America and Colombia
+33721,daily,a newspaper that is published every day
+33722,daily_double,a single bet on two horse races in the same day
+33723,daily_variation,fluctuations that occur between one day and the next
+33724,daintiness delicacy fineness,the quality of being beautiful and delicate in appearance; "the daintiness of her touch"; "the fineness of her features"
+33725,dainty delicacy goody kickshaw treat,something considered choice to eat
+33726,daiquiri rum_cocktail,a cocktail made with rum and lime or lemon juice
+33727,dairy dairy_farm,a farm where dairy products are produced
+33728,dairy_cattle dairy_cow milch_cow milk_cow milcher milker,cattle that are reared for their milk
+33729,dairy_product,milk and butter and cheese
+33730,dairying dairy_farming,the business of a dairy
+33731,dairymaid milkmaid,a woman who works in a dairy
+33732,dairyman,a man who works in a dairy
+33733,dairyman dairy_farmer,the owner or manager of a dairy
+33734,dais podium pulpit rostrum ambo stump soapbox,a platform raised above the surrounding level to give prominence to the person on it
+33735,daisy,any of numerous composite plants having flower heads with well-developed ray flowers usually arranged in a single whorl
+33736,daisy_chain,(figurative) a series of associated things or people or experiences
+33737,daisy_chain,flower chain consisting of a string of daisies linked by their stems; worn by students on class day at some schools
+33738,daisy_cutter,a batted or served ball that skims along close to the ground
+33739,daisy_fleabane Erigeron_annuus,widely naturalized white-flowered North American herb
+33740,daisy_print_wheel daisy_wheel,a wheel around which is a set of print characters that make a typing impression on paper
+33741,daisybush daisy-bush daisy_bush,any of various mostly Australian attractively shaped shrubs of the genus Olearia grown for their handsome and sometimes fragrant evergreen foliage and profusion of daisy flowers with white or purple or blue rays
+33742,daisyleaf_grape_fern daisy-leaved_grape_fern Botrychium_matricariifolium,of North America and Eurasia
+33743,daisywheel_printer,a printer that uses a daisy print wheel
+33744,dalasi,the basic unit of money in Gambia
+33745,dale,an open river valley (in a hilly area)
+33746,dalesman,a person who lives in the dales of northern England
+33747,daleth,the 4th letter of the Hebrew alphabet
+33748,dalliance dawdling trifling,the deliberate act of delaying and playing instead of working
+33749,dallier dillydallier dilly-dallier mope lounger,someone who wastes time
+33750,dallisgrass dallis_grass paspalum Paspalum_dilatatum,tall tufted perennial tropical American grass naturalized as pasture and forage grass in southern United States
+33751,dalmatian coach_dog carriage_dog,a large breed having a smooth white coat with black or brown spots; originated in Dalmatia
+33752,dam,female parent of an animal especially domestic livestock
+33753,dam dike dyke,a barrier constructed to contain the flow of water or to keep out the sea
+33754,damage equipment_casualty,loss of military equipment
+33755,damage harm hurt scathe,the act of damaging something or someone
+33756,damage harm impairment,the occurrence of a change for the worse
+33757,damage_control,an effort to minimize or curtail damage or loss
+33758,damages amends indemnity indemnification restitution redress,a sum of money paid in compensation for loss or injury
+33759,damascene,a design produced by inlaying gold or silver into steel
+33760,damask,a table linen made from linen with a damask pattern
+33761,damask,a fabric of linen or cotton or silk or wool with a reversible pattern woven into it
+33762,damask_rose summer_damask_rose Rosa_damascena,large hardy very fragrant pink rose; cultivated in Asia Minor as source of attar of roses; parent of many hybrids
+33763,damask_violet Dame's_violet sweet_rocket Hesperis_matronalis,long cultivated herb having flowers whose scent is more pronounced in the evening; naturalized throughout Europe to Siberia and into North America
+33764,dame doll wench skirt chick bird,informal terms for a (young) woman
+33765,dame madam ma'am lady gentlewoman,a woman of refinement; "a chauffeur opened the door of the limousine for the grand lady"
+33766,dammar gum_dammar damar dammar_resin,any of various hard resins from trees of the family Dipterocarpaceae and of the genus Agathis; especially the amboyna pine
+33767,damn darn hoot red_cent shit shucks tinker's_damn tinker's_dam,something of little value; "his promise is not worth a damn"; "not worth one red cent"; "not worth shucks"
+33768,damnation,the act of damning
+33769,damnation eternal_damnation,the state of being condemned to eternal punishment in Hell
+33770,damned,people who are condemned to eternal punishment; "he felt he had visited the realm of the damned"
+33771,damourite,a variety of muscovite
+33772,damp dampness moistness,a slight wetness
+33773,damp-proof_course damp_course,a course of some impermeable material laid in the foundation walls of building near the ground to prevent dampness from rising into the building
+33774,dampener moistener,a device that dampens or moistens something; "he used a dampener to moisten the shirts before he ironed them"
+33775,damper,a movable iron plate that regulates the draft in a stove or chimney or furnace
+33776,damper,a depressing restraint; "rain put a damper on our picnic plans"
+33777,damper muffler,a device that decreases the amplitude of electronic, mechanical, acoustical, or aerodynamic oscillations
+33778,damper_block piano_damper,damper consisting of a small felted block that drops onto a piano string to stop its vibration
+33779,damping_off,a plant disease caused by a fungus; diseased condition of seedlings in excessive moisture
+33780,damping_off_fungus Pythium_debaryanum,fungus causing damping off disease in seedlings
+33781,damsel demoiselle damoiselle damosel damozel,a young unmarried woman
+33782,damselfish demoiselle,small brilliantly colored tropical marine fishes of coral reefs
+33783,damselfly,slender non-stinging insect similar to but smaller than the dragonfly but having wings folded when at rest
+33784,damson damson_plum,dark purple plum of the damson tree
+33785,damson_plum damson_plum_tree Prunus_domestica_insititia,plum tree long cultivated for its edible fruit
+33786,danaid danaid_butterfly,large tropical butterfly with degenerate forelegs and an unpleasant taste
+33787,dance,a party of people assembled for dancing
+33788,dance,a party for social dancing
+33789,dance,an artistic form of nonverbal communication
+33790,dance_band band dance_orchestra,a group of musicians playing popular music for dancing
+33791,dance_floor,a bare floor polished for dancing
+33792,dance_lesson,a lesson in dancing
+33793,dance_music,music to dance to
+33794,dance_music danceroom_music ballroom_music,a genre of popular music composed for ballroom dancing
+33795,dance_school,a school where students are taught to dance
+33796,dance_step step,a sequence of foot movements that make up a particular dance; "he taught them the waltz step"
+33797,dancer professional_dancer terpsichorean,a performer who dances professionally
+33798,dancer social_dancer,a person who participates in a social gathering arranged for dancing (as a ball)
+33799,dancing dance terpsichore saltation,taking a series of rhythmical steps (and movements) in time to music
+33800,dancing-master dance_master,a professional teacher of dancing
+33801,dancing_partner,one of a pair of people who dance together
+33802,dancing_school,a school in which students learn to dance
+33803,dandelion blowball,any of several herbs of the genus Taraxacum having long tap roots and deeply notched leaves and bright yellow flowers followed by fluffy seed balls
+33804,dandelion_green,the foliage of the dandelion plant
+33805,dandelion_green,edible leaves of the common dandelion collected from the wild; used in salads and in making wine
+33806,dander,small scales from animal skins or hair or bird feathers that can cause allergic reactions in some people
+33807,dander hackles,a feeling of anger and animosity; "having one's hackles or dander up"
+33808,dandruff,a condition in which white scales of dead skin are shed by the scalp
+33809,dandruff,loose scales shed from the scalp; "I could see the dandruff on her shoulders"
+33810,dandy dude fop gallant sheik beau swell fashion_plate clotheshorse,a man who is much concerned with his dress and appearance
+33811,danger,a cause of pain or injury or loss; "he feared the dangers of traveling by air"
+33812,danger,the condition of being susceptible to harm or injury; "you are in no danger"; "there was widespread danger of disease"
+33813,danger,a dangerous place; "He moved out of danger"
+33814,danger_line,a line beyond which it is dangerous to go
+33815,danger_zone,a dangerous area
+33816,dangerousness,the quality of not being safe
+33817,dangleberry dangle-berry Gaylussacia_frondosa,huckleberry of the eastern United States with pink flowers and sweet blue fruit
+33818,dangling_modifier misplaced_modifier,a word or phrase apparently modifying an unintended word because of its placement in a sentence: e.g., `when young' in `when young, circuses appeal to all of us'
+33819,dangling_participle,a participle (usually at the beginning of a sentence) apparently modifying a word other than the word intended: e.g., `flying across the country' in `flying across the country the Rockies came into view'
+33820,danish danish_pastry,light sweet yeast-raised roll usually filled with fruits or cheese
+33821,dankness clamminess,unpleasant wetness
+33822,danse_macabre dance_of_death,a medieval dance in which a skeleton representing death leads a procession of others to the grave
+33823,danseur danseur_noble,a male ballet dancer who is the partner of a ballerina
+33824,daphne,any of several ornamental shrubs with shiny mostly evergreen leaves and clusters of small bell-shaped flowers
+33825,daphnia water_flea,minute freshwater crustacean having a round body enclosed in a transparent shell; moves about like a flea by means of hairy branched antennae
+33826,dapple-grey dapple-gray dappled-grey dappled-gray,grey with a mottled pattern of darker grey markings
+33827,dapsone,antibacterial drug used to treat leprosy and some kinds of skin diseases
+33828,daraf,a unit of elastance equal to the reciprocal of a farad
+33829,dare daring,a challenge to do something dangerous or foolhardy; "he could never refuse a dare"
+33830,daredevil madcap hothead swashbuckler lunatic harum-scarum,a reckless impetuous irresponsible person
+33831,daredevilry daredeviltry,boldness as manifested in rash and daredevil behavior
+33832,dark darkness,absence of light or illumination
+33833,dark darkness,an unenlightened state; "he was in the dark concerning their intentions"; "his lectures dispelled the darkness"
+33834,dark-eyed_junco slate-colored_junco Junco_hyemalis,common North American junco having grey plumage and eyes with dark brown irises
+33835,dark_adaptation,the process of adjusting the eyes to low levels of illumination; cones adapt first; rods continue to adapt for up to four hours
+33836,dark_blue navy navy_blue,a dark shade of blue
+33837,dark_bread whole_wheat_bread whole_meal_bread brown_bread,bread made with whole wheat flour
+33838,dark_comedy,a comedy characterized by grim or satiric humor; a comedy having gloomy or disturbing elements
+33839,dark_ground_illumination dark_field_illumination,a form of microscopic examination of living material by scattered light; specimens appear luminous against a dark background
+33840,dark_horse,a political candidate who is not well known but could win unexpectedly
+33841,dark_horse,a racehorse about which little is known
+33842,dark_lantern bull's-eye,a lantern with a single opening and a sliding panel that can be closed to conceal the light
+33843,dark_matter,(cosmology) a hypothetical form of matter that is believed to make up 90 percent of the universe; it is invisible (does not absorb or emit light) and does not collide with atomic particles but exerts gravitational force
+33844,dark_meat,the flesh of the legs of fowl used as food
+33845,dark_red,a red color that reflects little light
+33846,darkling_beetle darkling_groung_beetle tenebrionid,sluggish hard-bodied black terrestrial weevil whose larvae feed on e.g. decaying plant material or grain
+33847,darkness,having a dark or somber color
+33848,darkness dark shadow,an unilluminated area; "he moved off into the darkness"
+33849,darkness duskiness swarthiness,a swarthy complexion
+33850,darkroom,a room in which photographs are developed
+33851,darling favorite favourite pet dearie deary ducky,a special loved one
+33852,darling_pea poison_bush,either of two Australian plants of the genus Swainsona that are poisonous to sheep
+33853,darmstadtium Ds element_110 atomic_number_110,a radioactive transuranic element
+33854,darnel tare bearded_darnel cheat Lolium_temulentum,weedy annual grass often occurs in grainfields and other cultivated land; seeds sometimes considered poisonous
+33855,darner,a person who mends by darning
+33856,darning,the act of mending a hole in a garment with crossing threads
+33857,darning_needle embroidery_needle,a long needle with an eye large enough for heavy darning or embroidery thread
+33858,dart,a small narrow pointed missile that is thrown or shot
+33859,dart,a tapered tuck made in dressmaking
+33860,dart_player,someone who plays the game of darts
+33861,dartboard dart_board,a circular board of wood or cork used as the target in the game of darts
+33862,darter,a person or other animal that moves abruptly and rapidly; "squirrels are darters"
+33863,darts,a game in which small pointed missiles are thrown at a dartboard
+33864,dash,a footrace run at top speed; "he is preparing for the 100-yard dash"
+33865,dash bolt,the act of moving with great haste; "he made a dash for the door"
+33866,dash dah,the longer of the two telegraphic signals used in Morse code
+33867,dash elan flair panache style,distinctive and stylish elegance; "he wooed her with the confident dash of a cavalry officer"
+33868,dash sprint,a quick run
+33869,dash-pot,a mechanical damper; the vibrating part is attached to a piston that moves in a chamber filled with liquid
+33870,dashboard fascia,instrument panel on an automobile or airplane containing dials and controls
+33871,dashiki daishiki,a loose and brightly colored African shirt
+33872,dastard,a despicable coward
+33873,dastardliness,despicable cowardice
+33874,dasymeter,densimeter consisting of a thin glass globe that is weighed in a gas to determine its density
+33875,dasyure,any of several more or less arboreal marsupials somewhat resembling martens
+33876,dasyurid_marsupial dasyurid,small carnivorous nocturnal marsupials of Australia and Tasmania
+33877,data information,a collection of facts from which conclusions may be drawn; "statistical data"
+33878,data_conversion,conversion from one way of encoding data to another way
+33879,data_converter,converter for changing information from one code to another
+33880,data_encryption,(computer science) the encryption of data for security purposes
+33881,data_hierarchy,an arrangement of data consisting of sets and subsets such that every subset of a set is of lower rank than the set
+33882,data_input_device input_device,a device that can be used to insert data into a computer or other computational device
+33883,data_mining,data processing using sophisticated data search capabilities and statistical algorithms to discover patterns and correlations in large preexisting databases; a way to discover new meaning in data
+33884,data_multiplexer,a multiplexer that permits two or more data sources to share a common transmission medium
+33885,data_processing,(computer science) a series of operations on data by a computer in order to retrieve or transform or classify information
+33886,data_rate,the rate at which circuits or other devices operate when handling digital information
+33887,data_structure,(computer science) the organization of data (and its storage allocations in a computer)
+33888,data_system information_system,system consisting of the network of all communication channels used within an organization
+33889,database,an organized body of related information
+33890,database_management,creation and maintenance of a database
+33891,database_management_system DBMS,a software system that facilitates the creation and maintenance and use of an electronic database
+33892,date,the particular day, month, or year (usually according to the Gregorian calendar) that an event occurred; "he tried to memorizes all the dates for his history class"
+33893,date,a particular day specified as the time something happens; "the date of the election is set by law"; "we hope to get together at an early date"; "Mother's Day is always on the same date"
+33894,date,the present; "they are up to date"; "we haven't heard from them to date"
+33895,date,sweet edible fruit of the date palm with a single long woody seed
+33896,date appointment engagement,a meeting arranged in advance; "she asked how to avoid kissing at the end of a date"
+33897,date day_of_the_month,the specified day of the month; "what is the date today?"
+33898,date escort,a participant in a date; "his date never stopped talking"
+33899,date-nut_bread,bread containing chopped dates and nuts
+33900,date_bar,fruit bar containing chopped dates
+33901,date_bread,bread containing chopped dates
+33902,date_palm Phoenix_dactylifera,tall tropical feather palm tree native to Syria bearing sweet edible fruit
+33903,date_plum Diospyros_lotus,an Asiatic persimmon tree cultivated for its small yellow or purplish-black edible fruit much valued by Afghan tribes
+33904,date_rape,rape in which the rapist is known to the victim (as when they are on a date together)
+33905,dateline,a line at the beginning of a news article giving the date and place of origin of the news dispatch
+33906,dateline date_line International_Date_Line,an imaginary line on the surface of the earth following (approximately) the 180th meridian
+33907,dating geological_dating,use of chemical analysis to estimate the age of geological specimens
+33908,dative dative_case,the category of nouns serving as the indirect object of a verb
+33909,datum data_point,an item of factual information derived from measurement or research
+33910,daub,material used to daub walls
+33911,daub,an unskillful painting
+33912,dauber,an unskilled painter
+33913,daughter girl,a female human offspring; "her daughter cared for her in her old age"
+33914,daughter-in-law,the wife of your son
+33915,daughter_cell,a cell formed by the division or budding of another cell; "anthrax grows by dividing into two daughter cells that are generally identical"
+33916,dauntlessness intrepidity,resolute courageousness
+33917,dauphin,formerly, the eldest son of the King of France and direct heir to the throne
+33918,davallia,any fern of the genus Davallia; having scaly creeping rhizomes
+33919,davenport,a small decorative writing desk
+33920,davenport,a large sofa usually convertible into a bed
+33921,davit,a crane-like device (usually one of a pair) for suspending or lowering equipment (as a lifeboat)
+33922,dawdler drone laggard lagger trailer poke,someone who takes more time than necessary; someone who lags behind
+33923,dawn,an opening time period; "it was the dawn of the Roman Empire"
+33924,dawn dawning morning aurora first_light daybreak break_of_day break_of_the_day dayspring sunrise sunup cockcrow,the first light of day; "we got up before dawn"; "they talked until morning"
+33925,dawn morning,the earliest period; "the dawn of civilization"; "the morning of the world"
+33926,day,an era of existence or influence; "in the day of the dinosaurs"; "in the days of the Roman Empire"; "in the days of sailing ships"; "he was a successful pianist in his day"
+33927,day,the period of time taken by a particular planet (e.g. Mars) to make a complete rotation on its axis; "how long is a day on Jupiter?"
+33928,day,a day assigned to a particular purpose or observance; "Mother's Day"
+33929,day,the recurring hours when you are not sleeping (especially those when you are working); "my day began early this morning"; "it was a busy day on the stock exchange"; "she called it a day and went to bed"
+33930,day,some point or period in time; "it should arrive any day now"; "after that day she never trusted him again"; "those were the days"; "these days it is not unusual"
+33931,day,a period of opportunity; "he deserves his day in court"; "every dog has his day"
+33932,day daytime daylight,the time after sunrise and before sunset while it is light outside; "the dawn turned night into day"; "it is easier to make the repairs in the daytime"
+33933,day twenty-four_hours twenty-four_hour_period 24-hour_interval solar_day mean_solar_day,time for Earth to make a complete rotation on its axis; "two days later they left"; "they put on two performances every day"; "there are 30,000 passengers per day"
+33934,day_boarder,a schoolchild at a boarding school who has meals at school but sleeps at home
+33935,day_camp,a camp providing care and activities for children during the daytime
+33936,day_game,a game played in daylight
+33937,day_jessamine Cestrum_diurnum,West Indian evergreen shrub having clusters of funnel-shaped white flowers that are fragrant by day
+33938,day_laborer day_labourer,a laborer who works by the day; for daily wages
+33939,day_lily daylily,any of numerous perennials having tuberous roots and long narrow bladelike leaves and usually yellow lily-like flowers that bloom for only a day
+33940,day_nursery day_care_center,a nursery for the supervision of preschool children while the parents work
+33941,day_of_the_week,any one of the seven days in a week
+33942,day_off,a day when you are not required to work; "Thursday is his day off"
+33943,day_return,a return ticket (at reduced fare) for traveling both ways in the same day
+33944,day_school,a school giving instruction during the daytime
+33945,day_school,a private school taking day students only
+33946,day_school,a school building without boarding facilities
+33947,day_shift,the work shift during the day (as 8 a.m. to 4 p.m.)
+33948,day_shift day_watch,workers who work during the day (as 8 a.m. to 4 p.m.)
+33949,daybed divan_bed,an armless couch; a seat by day and a bed by night
+33950,daybook journal,a ledger in which transactions have been recorded as they occurred
+33951,daybook ledger,an accounting journal as a physical object; "he bought a new daybook"
+33952,dayboy,a day boarder who is a boy
+33953,daycare day_care,childcare during the day while parents work
+33954,daydreamer woolgatherer,someone who indulges in idle or absentminded daydreaming
+33955,daygirl,a day boarder who is a girl
+33956,daylight,light during the daytime
+33957,daylight-saving_time daylight-savings_time daylight_saving daylight_savings,time during which clocks are set one hour ahead of local standard time; widely adopted during summer to provide extra daylight in the evenings
+33958,daylight_vision photopic_vision,normal vision in daylight; vision with sufficient illumination that the cones are active and hue is perceived
+33959,days years,the time during which someone's life continues; "the monarch's last days"; "in his final years"
+33960,daze fog haze,confusion characterized by lack of clarity
+33961,daze shock stupor,the feeling of distress and disbelief that you have when something bad happens accidentally; "his mother's death left him in a daze"; "he was numb with shock"
+33962,dazzle,brightness enough to blind partially and temporarily
+33963,de-escalation,(war) a reduction in intensity (of a crisis or a war)
+33964,de-iodinase,an enzyme that removes the iodine radical
+33965,de-iodination,the removal of iodine atoms from organic compounds
+33966,deVries De_Vries Hugo_deVries Hugo_De_Vries,Dutch botanist who rediscovered Mendel's laws and developed the mutation theory of evolution (1848-1935)
+33967,de_Gaulle General_de_Gaulle Charles_de_Gaulle General_Charles_de_Gaulle Charles_Andre_Joseph_Marie_de_Gaulle,French general and statesman who became very popular during World War II as the leader of the Free French forces in exile (1890-1970)
+33968,de_Kooning Willem_de_Kooning,United States painter (born in the Netherlands) who was a leading American exponent of abstract expressionism (1904-1997)
+33969,de_Mille Agnes_de_Mille Agnes_George_de_Mille,United States dancer and choreographer who introduced formal dance to a wide audience (1905-1993)
+33970,de_Saussure Ferdinand_de_Saussure Saussure,Swiss linguist and expert in historical linguistics whose lectures laid the foundations for synchronic linguistics (1857-1913)
+33971,de_Valera Eamon_de_Valera,Irish statesman (born in the United States); as president of the Irish Free State he was responsible for the new constitution of 1937 that created the state of Eire (1882-1975)
+33972,de_facto_segregation,segregation (especially in schools) that happens in fact although not required by law
+33973,de_jure_segregation,segregation that is imposed by law
+33974,de_la_Mare Walter_de_la_Mare Walter_John_de_la_Mare,English poet remembered for his verse for children (1873-1956)
+33975,deacon,a cleric ranking just below a priest in Christian churches; one of the Holy Orders
+33976,deacon Protestant_deacon,a Protestant layman who assists the minister
+33977,deaconess,a woman deacon
+33978,deactivation defusing,the act of deactivating or making ineffective (as a bomb)
+33979,deactivation inactivation,breaking up a military unit (by transfers or discharges)
+33980,dead,a time when coldness (or some other quality associated with death) is intense; "the dead of winter"
+33981,dead,people who are no longer living; "they buried the dead"
+33982,dead-air_space,an unventilated area where no air circulates
+33983,dead-man's-fingers dead-men's-fingers Xylaria_polymorpha,the fruiting bodies of the fungi of the genus Xylaria
+33984,dead-man's_float prone_float,a floating position with the face down and arms stretched forward
+33985,dead_air,an inadvertent interruption in a broadcast during which there is no sound
+33986,dead_axle,an axle that carries a wheel but without power to drive it
+33987,dead_center dead_centre,the position of a crank when it is in line with the connecting rod and not exerting torque
+33988,dead_drop,a drop used for the clandestine exchange of intelligence information; "a dead drop avoids the need for an intelligence officer and a spy to be present at the same time"
+33989,dead_duck,something doomed to failure; "he finally admitted that the legislation was a dead duck"; "the idea of another TV channel is now a dead duck"; "as theories go, that's a dead duck"
+33990,dead_hand dead_hand_of_the_past mortmain,the oppressive influence of past events or decisions
+33991,dead_heat,a tie in a race
+33992,dead_language,a language that is no longer learned as a native language
+33993,dead_letter dead_mail,mail that can neither be delivered nor returned
+33994,dead_letter non-issue,the state of something that has outlived its relevance
+33995,dead_load,a constant load on a structure (e.g. a bridge) due to the weight of the supported structure itself
+33996,dead_metaphor frozen_metaphor,a metaphor that has occurred so often that it has become a new meaning of the expression (e.g., `he is a snake' may once have been a metaphor but after years of use it has died and become a new sense of the word `snake')
+33997,dead_nettle,any of various plants of the genus Lamium having clusters of small usually purplish flowers with two lips
+33998,dead_person dead_soul deceased_person deceased decedent departed,someone who is no longer alive; "I wonder what the dead person would have done"
+33999,dead_reckoning,navigation without the aid of celestial observations
+34000,dead_weight,an oppressive encumbrance
+34001,dead_weight,a heavy motionless weight
+34002,deadbeat_dad,a father who willfully defaults on his obligation to provide financial support for his offspring
+34003,deadeye,a dead shot
+34004,deadeye,(nautical) a round hardwood disk with holes and a grooved perimeter used to tighten a shroud
+34005,deadhead,a nonenterprising person who is not paying his way; "the deadheads on the payroll should be eased out as fast as possible"
+34006,deadhead,a train or bus or taxi traveling empty
+34007,deadlight,a strong shutter over a ship's porthole that is closed in stormy weather
+34008,deadline,the point in time at which something must be completed
+34009,deadliness lethality,the quality of being deadly
+34010,deadlock dead_end impasse stalemate standstill,a situation in which no progress can be made or no advancement is possible; "reached an impasse on the negotiations"
+34011,deadness,the physical property of something that has lost its elasticity; "he objected to the deadness of the tennis balls"
+34012,deadness,the inanimate property of something that has died
+34013,deadwood,a branch or a part of a tree that is dead
+34014,deaf,people who have severe hearing impairments; "many of the deaf use sign language"
+34015,deaf-mutism deaf-muteness,congenital deafness that results in inability to speak
+34016,deaf_person,a person with a severe auditory impairment
+34017,deafness hearing_loss,partial or complete loss of hearing
+34018,deal,a plank of softwood (fir or pine board)
+34019,deal,the type of treatment received (especially as the result of an agreement); "he got a good deal on his car"
+34020,deal,the act of distributing playing cards; "the deal was passed around the table clockwise"
+34021,deal,the act of apportioning or distributing something; "the captain was entrusted with the deal of provisions"
+34022,deal trade business_deal,a particular instance of buying or selling; "it was a package deal"; "I had no further trade with him"; "he's a master of the business deal"
+34023,dealer,a seller of illicit goods; "a dealer in stolen goods"
+34024,dealer,the person who distributes the playing cards in a card game
+34025,dealer,a firm engaged in trading
+34026,dealfish Trachipterus_arcticus,deep-sea ribbonfish
+34027,dealignment,a process whereby voters are moved toward nonpartisanship thus weakening the structure of political parties
+34028,dealing,method or manner of conduct in relation to others; "honest dealing"
+34029,dealings traffic,social or verbal interchange (usually followed by `with')
+34030,deamination deaminization,removal of the amino radical from an amino acid or other amino compound
+34031,dean,(Roman Catholic Church) the head of the College of Cardinals
+34032,dean,an administrator in charge of a division of a university or college
+34033,dean doyen,a man who is the senior member of a group; "he is the dean of foreign correspondents"
+34034,deanery,the official residence of a dean
+34035,deanship deanery,the position or office of a dean
+34036,dearth famine shortage,an acute insufficiency
+34037,dearth paucity,an insufficient quantity or number
+34038,death,the absence of life or state of being dead; "he seemed more content in death than he had ever been in life"
+34039,death,the permanent end of all life functions in an organism or part of an organism; "the animal died a painful death"
+34040,death,the act of killing; "he had two deaths on his conscience"
+34041,death decease expiry,the event of dying or departure from life; "her death came as a terrible shock"; "upon your decease the capital will pass to your grandchildren"
+34042,death dying demise,the time when something ends; "it was the death of all his plans"; "a dying of old hopes"
+34043,death last,the time at which life ends; continuing until dead; "she stayed until his death"; "a struggle to the last"
+34044,death's-head_moth Acherontia_atropos,European hawkmoth with markings on the back resembling a human skull
+34045,death's_head,a human skull (or a representation of a human skull) used as a symbol of death
+34046,death-roll,a list of persons killed in a war or other disaster
+34047,death_adder Acanthophis_antarcticus,venomous Australian snake resembling an adder
+34048,death_benefit,insurance or pension money payable to a beneficiary of a deceased
+34049,death_camas zigadene,any of various plants of the genus Zigadenus having glaucous leaves and terminal racemes of mostly white flowers; all are poisonous
+34050,death_camp,a concentration camp where prisoners are likely to die or be killed
+34051,death_cap death_cup death_angel destroying_angel Amanita_phalloides,extremely poisonous usually white fungus with a prominent cup-shaped base; differs from edible Agaricus only in its white gills
+34052,death_house death_row,the cellblock in a prison where those condemned to death await execution
+34053,death_instinct death_wish Thanatos,(psychoanalysis) an unconscious urge to die
+34054,death_knell,an omen of death or destruction
+34055,death_knell death_bell,a bell rung to announce a death
+34056,death_mask,a cast taken from the face of a dead person
+34057,death_seat,the car seat beside the driver of an automobile; believed to be the most dangerous place to sit in a car in case of an accident
+34058,death_squad,a clandestine military or paramilitary team who murder political dissidents or petty criminals (usually with the government's tacit approval)
+34059,death_toll,the number of deaths resulting from some particular cause such as an accident or a battle or a natural disaster
+34060,death_warrant,a warrant to execute the death sentence
+34061,deathbed,the last few hours before death
+34062,deathbed,the bed on which a person dies
+34063,deathblow coup_de_grace,the blow that kills (usually mercifully)
+34064,deathrate death_rate mortality mortality_rate fatality_rate,the ratio of deaths in an area to the population of that area; expressed per 1000 per year
+34065,deathtrap,any structure that is very unsafe; where people are likely to be killed
+34066,deathwatch_beetle deathwatch Xestobium_rufovillosum,bores through wood making a ticking sound popularly thought to presage death
+34067,debacle,flooding caused by a tumultuous breakup of ice in a river during the spring or summer
+34068,debacle fiasco,a sudden and violent collapse
+34069,debarkation disembarkation disembarkment,the act of passengers and crew getting off of a ship or aircraft
+34070,debarment,the state of being debarred (excluded from enjoying certain possessions or rights or practices)
+34071,debarment,the act of prevention by legal means; "they achieved his debarment from holding public office"
+34072,debaser degrader,a person who lowers the quality or character or value (as by adding cheaper metal to coins)
+34073,debate disputation public_debate,the formal presentation of a stated proposition and the opposition to it (usually followed by a vote)
+34074,debater arguer,someone who engages in debate
+34075,debenture,a certificate or voucher acknowledging a debt
+34076,debilitation enervation enfeeblement exhaustion,serious weakening and loss of energy
+34077,debit debit_entry,an accounting entry acknowledging sums that are owing
+34078,debit_card,a card (usually plastic) that enables the holder to withdraw money or to have the cost of purchases charged directly to the holder's bank account
+34079,debit_side,account of payments owed; usually the left side of a financial statement
+34080,debridement,surgical removal of foreign material and dead tissue from a wound in order to prevent infection and promote healing
+34081,debriefing,report of a mission or task
+34082,debris dust junk rubble detritus,the remains of something that has been destroyed or broken up
+34083,debris_surge debris_storm,the sudden spread of dust and debris from a collapsing building; "the destruction of the building produced an enormous debris surge"
+34084,debt,the state of owing something (especially money); "he is badly in debt"
+34085,debt,money or goods or services owed by one person to another
+34086,debt,an obligation to pay or do something
+34087,debt_instrument obligation certificate_of_indebtedness,a written promise to repay a debt
+34088,debt_limit debt_ceiling,the maximum borrowing power of a governmental entity
+34089,debtor debitor,a person who owes a creditor; someone who has the obligation of paying a debt
+34090,debugger,a program that helps in locating and correcting programming errors
+34091,debut,the presentation of a debutante in society
+34092,debutante deb,a young woman making her debut into society
+34093,decade decennary decennium,a period of 10 years
+34094,decadent,a person who has fallen into a decadent state (morally or artistically)
+34095,decaffeinated_coffee decaf,coffee with the caffeine removed
+34096,decagon,a polygon with 10 sides and 10 angles
+34097,decahedron,any polyhedron having ten plane faces
+34098,decal decalcomania,either a design that is fixed to some surface or a paper bearing the design which is to be transferred to the surface
+34099,decalcification,loss of calcium from bones or teeth
+34100,decalcomania,the art of transfering designs from specially prepared paper to a wood or glass or metal surface
+34101,decalescence,phenomenon that occurs when a metal is being heated and there is a sudden slowing in the rate of temperature increase; slowing is caused by a change in the internal crystal structure of the metal
+34102,decameter dekameter decametre dekametre dam dkm,a metric unit of length equal to ten meters
+34103,decampment,breaking camp
+34104,decantation,the act of gently pouring off a clear liquor (as from its original bottle) without disturbing the lees
+34105,decapitation beheading,execution by cutting off the victim's head
+34106,decapitation beheading,killing by cutting off the head
+34107,decapod,cephalopods having eight short tentacles plus two long ones
+34108,decapod_crustacean decapod,crustaceans characteristically having five pairs of locomotor appendages each joined to a segment of the thorax
+34109,decarboxylase,any of the enzymes that hydrolize the carboxyl group
+34110,decarboxylation,the process of removing a carboxyl group from a chemical compound (usually replacing it with hydrogen)
+34111,decasyllable,a verse line having ten syllables
+34112,decathlon,an athletic contest consisting of ten different events
+34113,decay,an inferior state resulting from the process of decaying; "the corpse was in an advanced state of decay"; "the house had fallen into a serious state of decay and disrepair"
+34114,decay,the process of gradually becoming inferior
+34115,decay decline,a gradual decrease; as of stored charge or current
+34116,decay decomposition,the organic phenomenon of rotting
+34117,decay radioactive_decay disintegration,the spontaneous disintegration of a radioactive substance along with the emission of ionizing radiation
+34118,deceiver cheat cheater trickster beguiler slicker,someone who leads you to believe something that is not true
+34119,deceleration,(physics) a rate of decrease in velocity
+34120,deceleration,the act of decelerating; decreasing the speed; "he initiated deceleration by braking"
+34121,deceleration slowing retardation,a decrease in rate of change; "the deceleration of the arms race"
+34122,decency,the quality of conforming to standards of propriety and morality
+34123,decency,the quality of being polite and respectable
+34124,decentralization decentalisation,the social process in which population and industry moves from urban centers to outlying districts
+34125,decentralization decentralisation,the spread of power away from the center to local branches or governments
+34126,deception deceit dissembling dissimulation,the act of deceiving
+34127,deceptiveness obliquity,the quality of being deceptive
+34128,decibel dB,a logarithmic unit of sound intensity; 10 times the logarithm of the ratio of the sound intensity to some reference intensity
+34129,decidua,the epithelial tissue of the endometrium
+34130,deciduous_holly,a holly tree
+34131,deciduous_plant,a plant having foliage that is shed annually at the end of the growing season
+34132,decigram dg,1/10 gram
+34133,decile,(statistics) any of nine points that divided a distribution of ranked scores into equal intervals where each interval contains one-tenth of the scores
+34134,deciliter decilitre dl,a metric unit of volume equal to one tenth of a liter
+34135,decimal,a number in the decimal system
+34136,decimal_digit,a digit from 0 to 9 in decimal notation
+34137,decimal_fraction decimal,a proper fraction whose denominator is a power of 10
+34138,decimal_notation,any notation that uses 10 different characters (usually the digits 0 to 9)
+34139,decimal_numeration_system decimal_number_system decimal_system,a positional system of numeration that uses decimal digits and a base of ten
+34140,decimal_point percentage_point point,the dot at the left of a decimal fraction
+34141,decimalization decimalisation,the act of changing to a decimal system; "the decimalization of British currency"
+34142,decimation,destroying or killing a large part of the population (literally every tenth person as chosen by lot)
+34143,decimeter decimetre dm,a metric unit of length equal to one tenth of a meter
+34144,decipherer,a reader capable of reading and interpreting illegible or obscure text
+34145,decision,(boxing) a victory won on points when no knockout has occurred; "had little trouble in taking a unanimous decision over his opponent"
+34146,decision,the outcome of a game or contest; "the team dropped three decisions in a row"
+34147,decision determination conclusion,a position or opinion or judgment reached after consideration; "a decision unfavorable to the opposition"; "his conclusion took the evidence into account"; "satisfied with the panel's determination"
+34148,decision determination conclusion,the act of making up your mind about something; "the burden of decision was his"; "he drew his conclusions quickly"
+34149,decision_making deciding,the cognitive process of reaching a decision; "a good executive must be good at decision making"
+34150,decision_table,a table of all contingencies and the actions to be taken for each
+34151,decisiveness decision,the trait of resoluteness as evidenced by firmness of character or purpose; "a man of unusual decisiveness"
+34152,deck,a porch that resembles the deck on a ship
+34153,deck,street name for a packet of illegal drugs
+34154,deck,any of various platforms built into a vessel
+34155,deck-house,a superstructure on the upper deck of a ship
+34156,deck_chair beach_chair,a folding chair for use outdoors; a wooden frame supports a length of canvas
+34157,deck_tennis,game played mainly on board ocean liners; players toss a ring back and forth over a net that is stretched across a small court
+34158,decker,(often used in combinations) something constructed with multiple levels; "they rode in a double-decker bus"
+34159,deckhand roustabout,a member of a ship's crew who performs manual labor
+34160,deckle,(paper making) a frame used to form paper pulp into sheets
+34161,deckle_edge deckle,rough edge left by a deckle on handmade paper or produced artificially on machine-made paper
+34162,declamation,recitation of a speech from memory with studied gestures and intonation as an exercise in elocution or rhetoric
+34163,declamation,vehement oratory
+34164,declaration,a statement of taxable goods or of dutiable properties
+34165,declaration,(law) unsworn statement that can be admitted in evidence in a legal transaction; "his declaration of innocence"
+34166,declaration,a statement that is emphatic and explicit (spoken or written)
+34167,declaration_of_estimated_tax estimated_tax_return,return required of a taxpayer whose tax withheld from income does not meet the tax liability for the year
+34168,declarative_sentence declaratory_sentence,a sentence (in the indicative mood) that makes a declaration
+34169,declassification,reduction or removal by the government of restrictions on a classified document or weapon
+34170,declension,the inflection of nouns and pronouns and adjectives in Indo-European languages
+34171,declension,a class of nouns or pronouns or adjectives in Indo-European languages having the same (or very similar) inflectional forms; "the first declension in Latin"
+34172,declination celestial_latitude dec,(astronomy) the angular distance of a celestial body north or to the south of the celestial equator; expressed in degrees; used with right ascension to specify positions on the celestial sphere
+34173,declination regrets,a polite refusal of an invitation
+34174,decline declination,a condition inferior to an earlier condition; a gradual falling off from a better state
+34175,decline diminution,change toward something smaller or lower
+34176,declinometer transit_declinometer,an instrument for measuring magnetic declination
+34177,deco art_deco,a style of design that was popular in the 1920s and 1930s; marked by stylized forms and geometric designs adapted to mass production
+34178,decoction,(pharmacology) the extraction of water-soluble drug substances by boiling
+34179,decoction_process decoction_mashing,(brewing) a process in which part of the mash is removed and boiled and then returned
+34180,decoder,a machine that converts a coded text into ordinary language
+34181,decoder decipherer,the kind of intellectual who converts messages from a code to plain text
+34182,decoding decryption decipherment,the activity of making clear or converting from code into plain text; "a secret key or password is required for decryption"
+34183,decolletage,a low-cut neckline on a woman's dress
+34184,decolonization decolonisation,the action of changing from colonial to independent status
+34185,decomposition decomposition_reaction chemical_decomposition_reaction,(chemistry) separation of a substance into two or more substances that may differ from each other and from the original substance
+34186,decomposition disintegration,in a decomposed state
+34187,decomposition rot rotting putrefaction breakdown,(biology) the process of decay caused by bacterial or fungal action
+34188,decomposition vector_decomposition,the analysis of a vector field
+34189,decompound_leaf,a leaf having divisions that are themselves compound
+34190,decompression,restoring compressed information to its normal form for use or display
+34191,decompression decompressing,relieving pressure (especially bringing a compressed person gradually back to atmospheric pressure)
+34192,decompression_sickness aeroembolism air_embolism gas_embolism caisson_disease bends,pain resulting from rapid change in pressure
+34193,decongestant,a drug that decreases pulmonary congestion
+34194,deconstruction deconstructionism,a philosophical theory of criticism (usually of literature or film) that seeks to expose deep-seated contradictions in a work by delving below its surface meaning
+34195,deconstructivism,a school of architecture based on the philosophical theory of deconstruction
+34196,decontamination,the removal of contaminants
+34197,decoration,the act of decorating something (in the hope of making it more attractive)
+34198,decoration laurel_wreath medal medallion palm ribbon,an award for winning a championship or commemorating some other event
+34199,decoration ornament ornamentation,something used to beautify
+34200,decorativeness,an appearance that serves to decorate and make something more attractive
+34201,decorator ornamentalist,someone who decorates
+34202,decortication,removal of the outer covering of an organ or part
+34203,decorum decorousness,propriety in manners and conduct
+34204,decoupage,art produced by decorating a surface with cutouts and then coating it with several layers of varnish or lacquer
+34205,decoupage,the art of decorating a surface with shapes or pictures and then coating it with varnish or lacquer
+34206,decoy steerer,a beguiler who leads someone into danger (usually as part of a plot)
+34207,decrease decrement,a process of becoming smaller or shorter
+34208,decrease decrement,the amount by which something decreases
+34209,decrease diminution reduction step-down,the act of decreasing or reducing something
+34210,decrease lessening drop-off,a change downward; "there was a decrease in his temperature as the fever subsided"; "there was a sharp drop-off in sales"
+34211,decree edict fiat order rescript,a legally binding command or decision entered on the court record (as if issued by a court or judge); "a friend in New Mexico said that the order caused no trouble out there"
+34212,decree_nisi,a decree issued on a first petition for divorce; becomes absolute at some later date
+34213,decrepitation,the crackling or breaking up of certain crystals when they are heated
+34214,decrepitude dilapidation,a state of deterioration due to old age or long use
+34215,decrescendo diminuendo,(music) a gradual decrease in loudness
+34216,decriminalization decriminalisation,legislation that makes something legal that was formerly illegal
+34217,decubitus,a reclining position (as in a bed)
+34218,decumary Decumaria_barbata Decumaria_barbara,woody climber of southeastern United States having white flowers in compound terminal clusters
+34219,dedicated_file_server,(computer science) a file server that can be used only as a file server
+34220,dedication,a ceremony in which something (as a building) is dedicated to some goal or purpose
+34221,dedication,complete and wholehearted fidelity
+34222,dedication inscription,a short message (as in a book or musical work or on a photograph) dedicating it to someone or something
+34223,dedifferentiation,the loss of specialization in form or function
+34224,deductible,(taxes) an amount that can be deducted (especially for the purposes of calculating income tax)
+34225,deductible,a clause in an insurance policy that relieves the insurer of responsibility to pay the initial loss up to a stated amount
+34226,deduction deductive_reasoning synthesis,reasoning from the general to the particular (or from cause to effect)
+34227,deduction discount,an amount or percentage deducted
+34228,deduction entailment implication,something that is inferred (deduced or entailed or implied); "his resignation had political implications"
+34229,deed deed_of_conveyance title,a legal document signed and sealed and delivered to effect a transfer of property and to show the legal right to possess it; "he signed the deed"; "he kept the title to his car in the glove compartment"
+34230,deed_poll,a deed made and executed by only one party
+34231,deep,the central and most intense or profound part; "in the deep of night"; "in the deep of winter"
+34232,deep,literary term for an ocean; "denizens of the deep"
+34233,deep-dish_pie cobbler,a pie made of fruit with rich biscuit dough usually only on top of the fruit
+34234,deep-freeze Deepfreeze deep_freezer freezer,electric refrigerator (trade name Deepfreeze) in which food is frozen and stored for long periods of time
+34235,deep-sea_diver,a diver in the deeper parts of the sea
+34236,deep_fording,fording at a deep place in the stream
+34237,deep_freeze,temporary inactivity or suspension; "the legislation has now been revived after ten years in the deep freeze"
+34238,deep_middle_cerebral_vein,accompanies the middle cerebral artery deep in the Sylvian fissure; empties into the basal vein
+34239,deep_pockets,(plural) a source of substantial wealth; "a patron of the arts should have deep pockets"
+34240,deep_space,any region in space outside the solar system
+34241,deep_supporting_fire,fire on objectives not in the immediate vicinity of your forces but with the objective of destroying enemy reserves and weapons and interfering with the enemy command and supply and communications
+34242,deep_temporal_vein,temporal veins that empty into the pterygoid plexus
+34243,deep_water,serious trouble
+34244,deepening,a process of becoming deeper and more profound
+34245,deepness,a low pitch that is loud and voluminous
+34246,deepness profundity profoundness,the quality of being physically deep; "the profundity of the mine was almost a mile"
+34247,deepwater_pipefish Cosmocampus_profundus,a fish 8 inches long; found from eastern Florida to western Caribbean
+34248,deepwater_squirrelfish Holocentrus_bullisi,a squirrelfish found from South Carolina to Bermuda and Gulf of Mexico
+34249,deer cervid,distinguished from Bovidae by the male's having solid deciduous antlers
+34250,deer_fern Blechnum_spicant,fern with erect fronds of Europe and western North America; often cultivated for deer browse
+34251,deer_grass meadow_beauty,any of several plants of the genus Rhexia usually having pink-purple to magenta flowers; eastern North America
+34252,deer_hunter,hunter of deer
+34253,deer_hunting deer_hunt,hunting deer
+34254,deer_mouse Peromyscus_maniculatus,brownish New World mouse; most widely distributed member of the genus
+34255,deer_mushroom Pluteus_cervinus,a small edible agaric with a slender stalk; usually found on rotting hardwoods
+34256,deer_trail,a trail worn by the passage of deer
+34257,deerberry squaw_huckleberry Vaccinium_stamineum,small branching blueberry common in marshy areas of the eastern United States having greenish or yellowish unpalatable berries reputedly eaten by deer
+34258,deerskin,leather from the hide of a deer
+34259,deerstalker,a tight-fitting hat with visors front and back; formerly worn by hunters
+34260,deerstalking,stalking deer
+34261,defacement disfigurement disfiguration mutilation,the act of damaging the appearance or surface of something; "the defacement of an Italian mosaic during the Turkish invasion"; "he objected to the dam's massive disfigurement of the landscape"
+34262,defalcation,the sum of money that is misappropriated
+34263,defamation calumny calumniation obloquy traducement hatchet_job,a false accusation of an offense or a malicious misrepresentation of someone's words or actions
+34264,defamer maligner slanderer vilifier libeler backbiter traducer,one who attacks the reputation of another by slander or libel
+34265,default,loss due to not showing up; "he lost the game by default"
+34266,default nonpayment nonremittal,act of failing to meet a financial obligation
+34267,default_judgment default_judgement judgment_by_default judgement_by_default,a judgment entered in favor of the plaintiff when the defendant defaults (fails to appear in court)
+34268,default_option default,an option that is selected automatically unless an alternative is specified
+34269,defaulter,someone who fails to make a required appearance in court
+34270,defaulter,a contestant who forfeits a match
+34271,defaulter deadbeat,someone who fails to meet a financial obligation
+34272,defeat licking,an unsuccessful ending to a struggle or contest; "it was a narrow defeat"; "the army's only defeat"; "they suffered a convincing licking"
+34273,defeated discomfited,people who are defeated; "the Romans had no pity for the defeated"
+34274,defeatism,acceptance of the inevitability of defeat
+34275,defeatist negativist,someone who is resigned to defeat without offering positive suggestions
+34276,defecation laxation shitting,the elimination of fecal waste through the anus
+34277,defecation_reflex rectal_reflex,normal response to the presence of feces in the rectum
+34278,defecator voider shitter,a person who defecates
+34279,defect,an imperfection in a bodily system; "visual defects"; "this device permits detection of defects in the lungs"
+34280,defect fault flaw,an imperfection in an object or machine; "a flaw caused the crystal to shatter"; "if there are any defects you should send it back to the manufacturer"
+34281,defect shortcoming,a failing or deficiency; "that interpretation is an unfortunate defect of our lack of information"
+34282,defective_pleading,any pleading that fails to conform in form or substance to minimum standards of accuracy or sufficiency
+34283,defectiveness faultiness,the state of being defective
+34284,defendant suspect,a person or institution against whom an action is brought in a court of law; the person being sued or accused
+34285,defender guardian protector shielder,a person who cares for persons or property
+34286,defender withstander,a fighter who holds out against attack
+34287,defenestration,the act of throwing someone or something out of a window
+34288,defense defence,protection from harm; "sanitation is the best defense against disease"
+34289,defense defence,the act of defending someone or something against attack or injury; "a good boxer needs a good defense"; "defense against hurricanes is an urgent problem"
+34290,defense defence defending_team,(sports) the team that is trying to prevent the other team from scoring; "his teams are always good on defense"
+34291,defense defence defense_force defence_force,an organization of defenders that provides resistance against attack; "he joined the defense against invasion"
+34292,defense defence defense_team defense_lawyers,the defendant and his legal advisors collectively; "the defense called for a mistrial"
+34293,defense defence defensive_measure,(military) military action or resources protecting a country against potential enemies; "they died in the defense of Stalingrad"; "they were developed for the defense program"
+34294,defense defence denial demurrer,a defendant's answer or plea denying the truth of the charges against him; "he gave evidence for the defense"
+34295,defense defence vindication,the justification for some act or belief; "he offered a persuasive defense of the theory"
+34296,defense_attorney defense_lawyer,the lawyer representing the defendant
+34297,defense_contractor,a contractor concerned with the development and manufacture of systems of defense
+34298,defense_laboratory,a laboratory devoted to research and development for national defense
+34299,defense_mechanism defense_reaction defence_mechanism defence_reaction defense defence,(psychiatry) an unconscious process that tries to reduce the anxiety associated with instinctive desires
+34300,defense_program defense_policy defence_program defence_policy,a program for defending a country against its enemies
+34301,defense_system defence_system,the weaponry available for the defense of a region
+34302,defenselessness defencelessness unprotectedness,the property of being helpless in the face of attack
+34303,defensibility,capability of being defended; "they built their castles with an eye to their defensibility"; "client complaints create a felt need for the defensibility of individual actions"
+34304,defensive defensive_attitude,an attitude of defensiveness (especially in the phrase `on the defensive')
+34305,defensive_structure defense defence,a structure used to defend against attack; "the artillery battered down the defenses"
+34306,defensiveness,excessive sensitivity to criticism; "his defensiveness was manifested in hurt silence"; "the fear of being sued for malpractice has magnified physicians' defensiveness"
+34307,deference respect,a courteous expression (by word or deed) of esteem or regard; "his deference to her wishes was very flattering"; "be sure to give my respects to the dean"
+34308,deference respect respectfulness,courteous regard for people's feelings; "in deference to your wishes"; "out of respect for his privacy"
+34309,deferral recess,a state of abeyance or suspended business
+34310,defervescence,abatement of a fever as indicated by a reduction in body temperature
+34311,defiance,a hostile challenge
+34312,defiance,a defiant act
+34313,defiance rebelliousness,intentionally contemptuous behavior or attitude
+34314,defibrillation,treatment by stopping fibrillation of heart muscles (usually by electric shock delivered by a defibrillator)
+34315,defibrillator,an electronic device that administers an electric shock of preset voltage to the heart through the chest wall in an attempt to restore the normal rhythm of the heart during ventricular fibrillation
+34316,deficiency_disease,any disease caused by a lack of an essential nutrient (as a vitamin or mineral)
+34317,deficit,a deficiency or failure in neurological or mental functioning; "the people concerned have a deficit in verbal memory"; "they have serious linguistic deficits"
+34318,deficit,(sports) the score by which a team or individual is losing
+34319,deficit,an excess of liabilities over assets (usually over a certain period); "last year there was a serious budgetary deficit"
+34320,deficit shortage shortfall,the property of being an amount by which something is less than expected or required; "new blood vessels bud out from the already dilated vascular bed to make up the nutritional deficit"
+34321,deficit_spending compensatory_spending pump_priming,spending money raised by borrowing; used by governments to stimulate their economy
+34322,defilade,the arrangement of defensive fortifications to protect against enemy fire
+34323,defile gorge,a narrow pass (especially one between mountains)
+34324,definite_article,a determiner (as `the' in English) that indicates specificity of reference
+34325,definite_integral,the integral of a function over a definite interval
+34326,definite_quantity,a specific measure of amount
+34327,definition,a concise explanation of the meaning of a word or phrase or symbol
+34328,definition,clarity of outline; "exercise had given his muscles superior definition"
+34329,definitive_host,the host in which the sexual reproduction of a parasite takes place
+34330,deflagration,combustion that propagates through a gas or along the surface of an explosive at a rapid rate driven by the transfer of heat
+34331,deflation,(geology) the erosion of soil as a consequence of sand and dust and loose rocks being removed by the wind; "a constant deflation of the desert landscape"
+34332,deflation,a contraction of economic activity resulting in a decline of prices
+34333,deflation,the act of letting the air out of something
+34334,deflationary_spiral,an episode of deflation in which prices and wages decrease at an increasing rate and currency gains in value
+34335,deflator,a statistical factor designed to remove the effect of inflation; inflation adjusted variables are in constant dollars
+34336,deflection deflexion,the movement of the pointer or pen of a measuring instrument from its zero position
+34337,deflection deflexion bending,the property of being bent or deflected
+34338,deflection deflexion refraction,the amount by which a propagating wave is bent
+34339,deflection warp,a twist or aberration; especially a perverse or abnormal way of judging or acting
+34340,deflector,a device intended to turn aside the flow of something (water or air or smoke etc)
+34341,defloration,an act that despoils the innocence or beauty of something
+34342,defloration,the act of depriving a woman of her virginity (especially by rupturing the hymen through sexual intercourse)
+34343,defoliant,a chemical that is sprayed on plants and causes their leaves to fall off
+34344,defoliation,the loss of foliage
+34345,defoliation,causing the leaves of trees and other plants to fall off (as by the use of chemicals)
+34346,defoliator,an insect that strips the leaves from plants
+34347,deforestation,the state of being clear of trees
+34348,deforestation disforestation,the removal of trees
+34349,deformation,alteration in the shape or dimensions of an object as a result of the application of stress to it
+34350,deformity malformation misshapenness,an affliction in which some part of the body is misshapen or malformed
+34351,defroster deicer,heater that removes ice or frost (as from a windshield or a refrigerator or the wings of an airplane)
+34352,degaussing,the process of making a (steel) ship's hull nonmagnetic by producing an opposing magnetic field
+34353,degeneracy degeneration decadence decadency,the state of being degenerate in mental or moral qualities
+34354,degeneration devolution,the process of declining from a higher to a lower level of effective power or vitality or essential quality
+34355,degeneration retrogression,passing from a more complex to a simpler biological form
+34356,degenerative_disorder,condition leading to progressive loss of function
+34357,degradation debasement,changing to a lower state (a less respected state)
+34358,degree,a unit of temperature on a specified scale; "the game was played in spite of the 40-degree temperature"
+34359,degree,the highest power of a term or variable
+34360,degree,the seriousness of something (e.g., a burn or crime); "murder in the second degree"; "a second degree burn"
+34361,degree arcdegree,a measure for arcs and angles; "there are 360 degrees in a circle"
+34362,degree grade level,a position on a scale of intensity or amount or quality; "a moderate grade of intelligence"; "a high level of care is required"; "it is all a matter of degree"
+34363,degree level stage point,a specific identifiable position in a continuum or series or especially in a process; "a remarkable degree of frankness"; "at what stage are the social sciences?"
+34364,degree_Fahrenheit F,a degree on the Fahrenheit scale of temperature
+34365,degree_centigrade degree_Celsius C,a degree on the centigrade scale of temperature
+34366,degree_day,a unit used in estimating fuel requirements for heating a building
+34367,degree_of_a_polynomial,the degree of the term in the polynomial that has the highest degree
+34368,degree_of_a_term,the sum of the exponents of the variables in the term
+34369,degree_of_freedom,one of the minimum number of parameters needed to describe the state of a physical system
+34370,degree_of_freedom,(statistics) an unrestricted variable in a frequency distribution
+34371,degree_program,a course of study leading to an academic degree
+34372,degressive_tax,any tax in which the rate decreases as the amount subject to taxation increases
+34373,dehiscence,(biology) release of material by splitting open of an organ or tissue; the natural bursting open at maturity of a fruit or other reproductive body to release seeds or spores or the bursting open of a surgically closed wound
+34374,dehumanization dehumanisation,the act of degrading people with respect to their best qualities; "science has been blamed for the dehumanization of modern life"
+34375,dehumidifier,an applicance to extract moisture from the air and make the environment more comfortable; "in summer, we need to run the dehumidifier in the basement"
+34376,dehydrated_food dehydrated_foods,food preserved by dehydration
+34377,dehydration,depletion of bodily fluids
+34378,dehydration desiccation,dryness resulting from the removal of water
+34379,dehydration desiccation drying_up evaporation,the process of extracting moisture
+34380,deictic deictic_word,a word specifying identity or spatial or temporal location from the perspective of a speaker or hearer in the context in which the communication occurs; "words that introduce particulars of the speaker's and hearer's shared cognitive field into the message"- R.Rommetveit
+34381,deification,the condition of being treated like a god
+34382,deification,an embodiment of the qualities of a god; "the capitalists' deification of capital"
+34383,deification exaltation apotheosis,the elevation of a person (as to the status of a god)
+34384,deinocheirus,lightly built medium-sized theropod with long limbs and neck
+34385,deinonychus,swift agile wolf-sized bipedal dinosaur having a large curved claw on each hind foot; of the Cretaceous
+34386,deipnosophist,someone skilled at informal chitchat
+34387,deism free_thought,the form of theological rationalism that believes in God on the basis of reason without reference to revelation
+34388,deist,a person who believes that God created the universe and then abandoned it
+34389,deity divinity god immortal,any supernatural being worshipped as controlling some part of the world or some aspect of life or who is the personification of a force
+34390,deixis,the function of pointing or specifying from the perspective of a participant in an act of speech or writing; aspects of a communication whose interpretation depends on knowledge of the context in which the communication occurs
+34391,deja_vu,the experience of thinking that a new situation had occurred before
+34392,dejection,a state of melancholy depression
+34393,dekagram decagram dkg dag,10 grams
+34394,dekaliter dekalitre decaliter decalitre dal dkl,a metric unit of volume or capacity equal to 10 liters
+34395,dekko,British slang for a look
+34396,delavirdine Rescriptor,a non-nucleoside reverse transcriptase inhibitor (trade name Rescriptor) used to treat AIDS and HIV
+34397,delay hold time_lag postponement wait,time during which some action is awaited; "instant replay caused too long a delay"; "he ordered a hold in the action"
+34398,delay holdup,the act of delaying; inactivity resulting in something being put off until a later time
+34399,delay_line,a circuit designed to introduce a calculated delay into the transmission of a signal
+34400,delayed_action,a mechanism that automatically delays the release of a camera shutter for a fixed period of time so that the photographer can appear in the picture
+34401,delayed_allergy type_IV_allergic_reaction,an allergic reaction that becomes apparent only hours after contact
+34402,delayer,a person who delays; to put off until later or cause to be late
+34403,delectability deliciousness lusciousness toothsomeness,extreme appetizingness
+34404,delegacy,the appointment of a delegate
+34405,delegate,a person appointed or elected to represent others
+34406,delegating delegation relegating relegation deputation,authorizing subordinates to make certain decisions
+34407,deletion,(genetics) the loss or absence of one or more nucleotides from a chromosome
+34408,deletion,the act of deleting something written or printed
+34409,deletion excision cut,the omission that is made when an editorial change shortens a written passage; "an editor's deletions frequently upset young authors"; "both parties agreed on the excision of the proposed clause"
+34410,delf,an excavation; usually a quarry or mine
+34411,delft,a style of glazed earthenware; usually white with blue decoration
+34412,deliberate_defense deliberate_defence,a defense organized before contact is made with the enemy and while time for organization is available; usually includes a fortified zone (with pillboxes) and communication systems
+34413,deliberation,(usually plural) discussion of all sides of a question; "the deliberations of the jury"
+34414,deliberation deliberateness,the trait of thoughtfulness in action or decision; "he was a man of judicial deliberation"
+34415,deliberation weighing advisement,careful consideration; "a little deliberation would have deterred them"
+34416,deliberative_assembly,an assembly of people for the purpose of unhurried consideration and discussion
+34417,delicacy diplomacy discreetness finesse,subtly skillful handling of a situation
+34418,delicacy discretion,refined taste; tact
+34419,delicacy slightness,smallness of stature
+34420,delicatessen deli food_shop,a shop selling ready-to-eat food products
+34421,delicatessen delicatessen_food,ready-to-eat food products
+34422,delight delectation,a feeling of extreme pleasure or satisfaction; "his delight to see her was obvious to all"
+34423,delineation depiction limning line_drawing,a drawing of the outlines of forms or objects
+34424,delinquency,nonpayment of a debt when due
+34425,delinquency dereliction willful_neglect,a tendency to be negligent and uncaring; "he inherited his delinquency from his father"; "his derelictions were not really intended as crimes"; "his adolescent protest consisted of willful neglect of all his responsibilities"
+34426,delinquency juvenile_delinquency,an antisocial misdeed in violation of the law by a minor
+34427,delinquent juvenile_delinquent,a young offender
+34428,delirium,a usually brief state of excitement and mental confusion often accompanied by hallucinations
+34429,delirium_tremens DTs,acute delirium caused by alcohol poisoning
+34430,deliverable,something that can be provided as the product of development; "under this contract the deliverables include both software and hardware"
+34431,deliverer,a person who gives up or transfers money or goods
+34432,delivery,the event of giving birth; "she had a difficult delivery"
+34433,delivery bringing,the act of delivering or distributing something (as goods or mail); "his reluctant delivery of bad news"
+34434,delivery livery legal_transfer,the voluntary transfer of something (title or possession) from one party to another
+34435,delivery obstetrical_delivery,the act of delivering a child
+34436,delivery_truck delivery_van panel_truck,a van suitable for delivering goods or services to customers
+34437,deliveryman delivery_boy deliverer,someone employed to make deliveries
+34438,dell dingle,a small wooded hollow
+34439,delphinium,any plant of the genus Delphinium having palmately divided leaves and showy spikes of variously colored spurred flowers; some contain extremely poisonous substances
+34440,delta,an object shaped like an equilateral triangle
+34441,delta,a low triangular area of alluvial deposits where a river divides before entering a larger body of water; "the Mississippi River delta"; "the Nile delta"
+34442,delta,the 4th letter of the Greek alphabet
+34443,delta_iron,an allotrope of iron that is stable between 1403 degrees centigrade and the melting point (= 1532 degrees)
+34444,delta_ray,an electron ejected from matter by ionizing radiation
+34445,delta_rhythm delta_wave,the normal brainwave in the encephalogram of a person in deep dreamless sleep; occurs with high voltage and low frequency (1 to 4 hertz)
+34446,delta_wing,an airplane with wings that give it the appearance of an isosceles triangle
+34447,deltoid deltoid_muscle musculus_deltoideus,a large triangular muscle covering the shoulder joint and serving to abduct and flex and extend and rotate the arm
+34448,deltoid_leaf,a simple leaf shaped like a capital delta
+34449,deltoid_tuberosity deltoid_eminence,a bump on the outside of the humerus where the deltoid muscle attaches
+34450,delusion hallucination,a mistaken or unfounded opinion or idea; "he has delusions of competence"; "his dreams of vast wealth are a hallucination"
+34451,delusion illusion head_game,the act of deluding; deception by creating illusory ideas
+34452,delusion psychotic_belief,(psychology) an erroneous belief that is held in the face of evidence to the contrary
+34453,delusional_disorder,any mental disorder in which delusions play a significant role
+34454,delusions_of_grandeur,a delusion (common in paranoia) that you are much greater and more powerful and influential than you really are
+34455,delusions_of_persecution,a delusion (common in paranoia) that others are out to get you and frustrate and embarrass you or inflict suffering on you; a complicated conspiracy is frequently imagined
+34456,demagnetization demagnetisation,the process of removing magnetization
+34457,demagogue demagog rabble-rouser,a political leader who seeks support by appealing to popular passions and prejudices
+34458,demagoguery demagogy,impassioned appeals to the prejudices and emotions of the populace
+34459,demand,the ability and desire to purchase goods and services; "the automobile reduced the demand for buggywhips"; "the demand exceeded the supply"
+34460,demand,an urgent or peremptory request; "his demands for attention were unceasing"
+34461,demand,the act of demanding; "the kidnapper's exorbitant demands for money"
+34462,demand-pull_inflation,inflation caused by an increase in demand or in the supply of money
+34463,demand_deposit,a bank deposit from which withdrawals can be made without notice
+34464,demand_feeding,feeding a baby or animal whenever it shows a need
+34465,demand_for_identification,as by a sentry
+34466,demand_note,a note payable on demand
+34467,demander,a person who makes demands
+34468,demantoid,a green andradite used as a gemstone
+34469,demarche,a move or step or maneuver in political or diplomatic affairs
+34470,demeanor demeanour behavior behaviour conduct deportment,(behavioral attributes) the way a person behaves toward other people
+34471,demeclocycline_hydrochloride Declomycin,tetracycline antibacterial (trade name Declomycin) effective in the treatment of some bacterial and rickettsial and other infections
+34472,dementia dementedness,mental deterioration of organic or functional origin
+34473,demerara,a light brown raw cane sugar from Guyana
+34474,demerara demerara_rum,dark rum from Guyana
+34475,demerara demerara_sugar,light brown cane sugar; originally from Guyana
+34476,demerit,a mark against a person for misconduct or failure; usually given in school or armed forces; "ten demerits and he loses his privileges"
+34477,demerit fault,the quality of being inadequate or falling short of perfection; "they discussed the merits and demerits of her novel"; "he knew his own faults much better than she did"
+34478,demiglace demi-glaze,sauce Espagnole with extra beef stock simmered down and seasoned with dry wine or sherry
+34479,demigod superman Ubermensch,a person with great powers and abilities
+34480,demijohn,large bottle with a short narrow neck; often has small handles at neck and is enclosed in wickerwork
+34481,demilitarized_zone DMZ,a zone from which military forces or operations or installations are prohibited; "tensions exist on both sides of the demilitarized zone separating North Korea and South Korea"
+34482,demimondaine,a female prostitute
+34483,demimonde,a class of woman not considered respectable because of indiscreet or promiscuous behavior
+34484,demineralization demineralisation,abnormal loss of mineral salts (especially from bone)
+34485,demineralization demineralisation,the removal of minerals and mineral salts from a liquid (especially from water)
+34486,demister,heater that removes mist from the windshield of a car
+34487,demitasse,small coffee cup; for serving black coffee
+34488,demiurge,a subordinate deity, in some philosophies the creator of the universe
+34489,demobilization demobilisation,act of changing from a war basis to a peace basis including disbanding or discharging troops; "demobilization of factories"; "immediate demobilization of the reserves"
+34490,democracy,the political orientation of those who favor government by the people or by their elected representatives
+34491,democracy republic commonwealth,a political system in which the supreme power lies in a body of citizens who can elect people to represent them
+34492,democrat,an advocate of democratic principles
+34493,democratization democratisation,the action of making something democratic
+34494,demodulation,(electronics) the reception of a signal by extracting it from the carrier wave
+34495,demographer demographist population_scientist,a scientist who studies the growth and density of populations and their vital statistics
+34496,demographic,a statistic characterizing human populations (or segments of human populations broken down by age or sex or income etc.)
+34497,demography human_ecology,the branch of sociology that studies the characteristics of human populations
+34498,demolition,the act of demolishing; "the demolition of the huge tower was quite a spectacle"
+34499,demon,someone extremely diligent or skillful; "he worked like a demon to finish the job on time"; "she's a demon at math"
+34500,demonetization demonetisation,ending something (e.g. gold or silver) as no longer the legal tender of a country
+34501,demoniac,someone who acts as if possessed by a demon
+34502,demonization demonisation,to represent as diabolically evil; "the demonization of our enemies"
+34503,demonstrability provability,capability of being demonstrated or logically proved
+34504,demonstration,a show of military force or preparedness; "he confused the enemy with feints and demonstrations"
+34505,demonstration demo,a visual presentation showing how something works; "the lecture was accompanied by dramatic demonstrations"; "the lecturer shot off a pistol as a demonstration of the startle response"
+34506,demonstration manifestation,a public display of group feelings (usually of a political nature); "there were violent demonstrations against the war"
+34507,demonstration monstrance,proof by a process of argument or a series of proposition proving an asserted conclusion
+34508,demonstrative_pronoun demonstrative,a pronoun that points out an intended referent
+34509,demonstrativeness,tending to express your feelings freely
+34510,demonstrator,a teacher or teacher's assistant who demonstrates the principles that are being taught
+34511,demonstrator protester,someone who participates in a public display of group feeling
+34512,demonstrator sales_demonstrator,someone who demonstrates an article to a prospective buyer
+34513,demoralization demoralisation,a state of disorder and confusion; "his inconsistency resulted in the demoralization of his staff"
+34514,demoralization demoralisation,depression resulting from an undermining of your morale
+34515,demoralization demoralisation,destroying the moral basis for a doctrine or policy
+34516,demotion,act of lowering in rank or position
+34517,demulcent,a medication (in the form of an oil or salve etc.) that soothes inflamed or injured skin
+34518,demur demurral demurrer,(law) a formal objection to an opponent's pleadings
+34519,demureness,the trait of behaving with reserve and decorum
+34520,demurrage,a charge required as compensation for the delay of a ship or freight car or other cargo beyond its scheduled time of departure
+34521,demurrage,detention of a ship or freight car or other cargo beyond its scheduled time of departure
+34522,demurrer,(law) any pleading that attacks the legal sufficiency of the opponent's pleadings
+34523,demyelination,loss of the myelin covering of some nerve fibers resulting in their impaired function
+34524,demythologization demythologisation,the restatement of a message (as a religious one) in rational terms
+34525,den,a unit of 8 to 10 cub scouts
+34526,den,a room that is comfortable and secluded
+34527,den_mother,someone who plays the role of a den mother; "he serves as den mother to all the freshmen in this dormitory"; "she's the den mother to new secretaries"
+34528,den_mother,a woman who supervises a den of Cub Scouts
+34529,denationalization denationalisation privatization privatisation,changing something from state to private ownership or control
+34530,denaturant,any substance that serves as a denaturing agent
+34531,denatured_alcohol,ethyl alcohol that is unfit for drinking but is still useful for other purposes
+34532,denazification de-Nazification,social process of removing Nazis from official positions and giving up any allegiance to Nazism; "denazification was a slow process"
+34533,dendrite,short fiber that conducts toward the cell body of the neuron
+34534,dendrobium,a plant of the genus Dendrobium having stems like cane and usually showy racemose flowers
+34535,dendrology,the study of wooden plants
+34536,dengue dengue_fever dandy_fever breakbone_fever,an infectious disease of the tropics transmitted by mosquitoes and characterized by rash and aching head and joints
+34537,denial,(psychiatry) a defense mechanism that denies painful thoughts
+34538,denial,the act of refusing to comply (as with a request); "it resulted in a complete denial of his privileges"
+34539,denial disaffirmation,the act of asserting that something alleged is not true
+34540,denier,a unit of measurement for the fineness of silk or nylon or rayon; "with an evening dress one wears 10 denier stockings"
+34541,denier,any of various former European coins of different denominations
+34542,denier,one who denies
+34543,denigration belittling,a belittling comment
+34544,denim dungaree jean,a coarse durable twill-weave cotton fabric
+34545,denizen,a plant or animal naturalized in a region; "denizens of field and forest"; "denizens of the deep"
+34546,denomination,a group of religious congregations having its own organization and a distinctive faith
+34547,denomination,a class of one kind of unit in a system of numbers or measures or weights or money; "he flashed a fistful of bills of large denominations"
+34548,denominationalism,the tendency, in Protestantism, to separate into religious denominations or to advocate such separations
+34549,denominator,the divisor of a fraction
+34550,denotatum,an actual object referred to by a linguistic expression
+34551,denouement,the outcome of a complex sequence of events
+34552,denouement,the final resolution of the main complication of a literary or dramatic work
+34553,dense-leaved_elodea Elodea_densa Egeria_densa,aquatic plant with deep green foliage useful to oxygenate an aquarium; sometimes placed in genus Egeria
+34554,dense_blazing_star Liatris_pycnostachya,perennial of southeastern and central United States having very dense spikes of purple flowers; often cultivated for cut flowers
+34555,denseness dumbness slow-wittedness,the quality of being mentally slow and limited
+34556,densimeter densitometer,a measuring instrument for determining density or specific gravity
+34557,densitometer,a measuring instrument for determining optical or photographic density
+34558,densitometry,measuring the optical density of a substance by shining light on it and measuring its transmission
+34559,density denseness,the amount per unit size
+34560,dent,an appreciable consequence (especially a lessening); "it made a dent in my bank account"
+34561,dent ding gouge nick,an impression in a surface (as made by a blow)
+34562,dent_corn Zea_mays_indentata,corn whose kernels contain both hard and soft starch and become indented at maturity
+34563,dental_anatomy,the branch of gross anatomy concerning with the morphology of teeth
+34564,dental_appliance,a device to repair teeth or replace missing teeth
+34565,dental_assistant,an assistant to a dentist
+34566,dental_care,care for the teeth
+34567,dental_floss floss,a soft thread for cleaning the spaces between the teeth
+34568,dental_gold,an alloy of gold used in dentistry
+34569,dental_hygienist,someone trained to provide preventive dental service (cleaning teeth or taking x-rays)
+34570,dental_implant,an implant that replaces a natural tooth
+34571,dental_plaque bacterial_plaque,a film of mucus and bacteria deposited on the teeth that encourages the development of dental caries
+34572,dental_practice,the practice of dentistry
+34573,dental_procedure,a procedure employed by a dentist
+34574,dental_school school_of_dentistry,a graduate school offering study leading to degrees in dentistry
+34575,dental_surgeon,a dentist qualified to perform surgical procedures
+34576,dental_surgery,the branch of dentistry involving surgical procedures
+34577,dental_technician denturist,someone who makes dental appliances (bridges and dentures)
+34578,dentate_leaf,a leaf having a toothed margin
+34579,dentate_nucleus,a large laminar nucleus of grey matter within the white matter of each cerebral hemisphere
+34580,denticle,small pointed ridge on the exoskeleton of an arthropod
+34581,denticulate_leaf,a leaf having a finely toothed margin; minutely dentate
+34582,dentifrice,a substance for cleaning the teeth; applied with a toothbrush
+34583,dentine dentin,a calcareous material harder and denser than bone that comprises the bulk of a tooth
+34584,dentine dentin,bone (calcified tissue) surrounding the pulp cavity of a tooth
+34585,dentist tooth_doctor dental_practitioner,a person qualified to practice dentistry
+34586,dentist's_drill burr_drill,a high speed drill that dentists use to cut into teeth
+34587,dentistry dental_medicine odontology,the branch of medicine dealing with the anatomy and development and diseases of the teeth
+34588,dentition teeth,the kind and number and arrangement of teeth (collectively) in a person or animal
+34589,denture dental_plate plate,a dental appliance that artificially replaces missing teeth
+34590,denudation stripping uncovering baring husking,the removal of covering
+34591,denunciation denouncement,a public act of denouncing
+34592,deodar deodar_cedar Himalayan_cedar Cedrus_deodara,tall East Indian cedar having spreading branches with nodding tips; highly valued for its appearance as well as its timber
+34593,deodorant deodourant,a toiletry applied to the skin in order to mask unpleasant odors
+34594,deontic_logic,the modal logic of obligation and permissibility
+34595,deossification,the loss of the mineral content of bone tissue
+34596,deoxyadenosine,a nucleoside component of DNA; composed of adenosine and deoxyribose
+34597,deoxyadenosine_monophosphate A,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34598,deoxycytidine cytidine,a nucleoside component of DNA; composed of cytosine and deoxyribose
+34599,deoxycytidine_monophosphate C,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34600,deoxyguanosine guanosine,a nucleoside component of DNA; composed of guanine and deoxyribose
+34601,deoxyguanosine_monophosphate G,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34602,deoxyribonucleic_acid desoxyribonucleic_acid DNA,(biochemistry) a long linear polymer found in the nucleus of a cell and formed from nucleotides and shaped like a double helix; associated with the transmission of genetic information; "DNA is the king of molecules"
+34603,deoxyribose,a sugar that is a constituent of nucleic acids
+34604,deoxythymidine thymidine,a nucleoside component of DNA; composed of thymine and deoxyribose
+34605,deoxythymidine_monophosphate T,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34606,departer leaver goer,someone who leaves
+34607,department,the territorial and administrative division of some countries (such as France)
+34608,department,a specialized sphere of knowledge; "baking is not my department"; "his work established a new department of literature"
+34609,department section,a specialized division of a large organization; "you'll find it in the hardware department"; "she got a job in the historical section of the Treasury"
+34610,department_head,the head of a department
+34611,department_of_computer_science,the academic department responsible for teaching and research in computer science
+34612,department_store emporium,a large retail store organized into departments offering a variety of merchandise; commonly part of a retail chain
+34613,departure going going_away leaving,the act of departing
+34614,departure_gate,gate where passengers embark
+34615,departure_lounge,lounge where passengers can await departure
+34616,departure_tax,a tax that is levied when you are departing a country by land or sea or air
+34617,departure_time time_of_departure,the time at which a public conveyance is scheduled to depart from a given point of origin
+34618,dependability dependableness reliability reliableness,the quality of being dependable or reliable
+34619,dependant dependent,a person who relies on another person for support (especially financial support)
+34620,dependence dependance dependency,the state of relying on or being controlled by someone or something else
+34621,dependent_variable,(statistics) a variable in a logical or mathematical expression whose value depends on the independent variable; "if f(x)=y, y is the dependent variable"
+34622,depersonalization depersonalisation,(existentialism) a loss of personal identity; a feeling of being an anonymous cog in an impersonal social machine
+34623,depersonalization depersonalisation depersonalization_disorder depersonalisation_disorder depersonalization_neurosis depersonalisation_neurosis,emotional dissociative disorder in which there is loss of contact with your own personal reality accompanied by feelings of unreality and strangeness
+34624,depersonalization depersonalisation reification,representing a human being as a physical thing deprived of personal qualities or individuality; "according to Marx, treating labor as a commodity exemplified the reification of the individual"
+34625,depicting depiction portraying portrayal,a representation by picture or portraiture
+34626,depiction delineation portrayal,representation by drawing or painting etc
+34627,depigmentation,absence or loss of pigmentation (or less than normal pigmentation) in the skin or hair
+34628,depilation epilation,the act of removing hair (as from an animal skin)
+34629,depilatory,a chemical (usually a sulfide) used to remove hair or wool or bristles from hides
+34630,depilatory depilator epilator,a cosmetic for temporary removal of undesired hair
+34631,depletion,the state of being depleted
+34632,depletion,the act of decreasing something markedly
+34633,deployment,the distribution of forces in preparation for battle or work
+34634,depolarization depolarisation,a loss of polarity or polarization
+34635,depopulation,the condition of having reduced numbers of inhabitants (or no inhabitants at all)
+34636,deportation,the expulsion from a country of an undesirable alien
+34637,deposit,money given as security for an article acquired for temporary use; "his deposit was refunded when he returned the car"
+34638,deposit,a payment given as a guarantee that an obligation will be met
+34639,deposit bank_deposit,money deposited in a bank or some similar institution
+34640,deposit deposition,the act of putting something somewhere
+34641,deposit sedimentation alluviation,the phenomenon of sediment or gravel accumulating
+34642,deposition,(law) a pretrial interrogation of a witness; usually conducted in a lawyer's office
+34643,deposition deposit,the natural process of laying down a deposit of something
+34644,deposition dethronement,the act of deposing someone; removing a powerful person from a position or office
+34645,depositor,a person who has deposited money in a bank or similar institution
+34646,depository deposit depositary repository,a facility where things can be deposited for storage or safekeeping
+34647,depository_financial_institution bank banking_concern banking_company,a financial institution that accepts deposits and channels the money into lending activities; "he cashed a check at the bank"; "that bank holds the mortgage on my home"
+34648,depravity turpitude,a corrupt or depraved or degenerate act or practice; "the various turpitudes of modern society"
+34649,deprecation,a prayer to avert or remove some evil or disaster
+34650,deprecation denigration,the act of expressing disapproval (especially of yourself)
+34651,depreciation,a decrease in price or value; "depreciation of the dollar against the yen"
+34652,depreciation wear_and_tear,decrease in value of an asset due to obsolescence or use
+34653,depreciation_allowance,an allowance for loss due to depreciation
+34654,depreciation_charge,an amount periodically charged to expense or against revenue in compensation for depreciation of property
+34655,depredation predation,an act of plundering and pillaging and marauding
+34656,depressed_fracture,fracture of the skull where the bone is pushed in
+34657,depression,a mental state characterized by a pessimistic sense of inadequacy and a despondent lack of activity
+34658,depression,angular distance below the horizon (especially of a celestial object)
+34659,depression,sad feelings of gloom and inadequacy
+34660,depression,pushing down; "depression of the space bar on the typewriter"
+34661,depression impression imprint,a concavity in a surface produced by pressing; "he left the impression of his fingers in the soft mud"
+34662,depression slump economic_crisis,a long-term economic state characterized by unemployment and low prices and low levels of trade and investment
+34663,depressive,someone suffering psychological depression
+34664,depressive_disorder clinical_depression depression,a state of depression and anhedonia so severe as to require clinical intervention
+34665,depressor,a device used by physician to press a part down or aside
+34666,depressor depressor_muscle,any skeletal muscle that draws a body part down
+34667,depressor depressor_nerve,any nerve whose activity tends to reduce the activity or tone of the body part it serves
+34668,depth,(usually plural) a low moral state; "he had sunk to the depths of addiction"
+34669,depth,the attribute or quality of being deep, strong, or intense; "the depth of his breathing"; "the depth of his sighs"; "the depth of his emotion"
+34670,depth,degree of psychological or intellectual profundity
+34671,depth deepness,the extent downward or backward or inward; "the depth of the water"; "depth of a shelf"; "depth of a closet"
+34672,depth_charge depth_bomb,a bomb that explodes at a preset depth under water; antisubmarine device
+34673,depth_finder,navigational instrument used to measure the depth of a body of water (as by ultrasound or radar)
+34674,depth_gauge depth_gage,a gauge for measuring the depth of grooves or holes or other concavities
+34675,depths,(plural) the deepest and most remote part; "from the depths of darkest Africa"; "signals received from the depths of space"
+34676,deputation commission delegation delegacy mission,a group of representatives or delegates
+34677,deputy,a member of the lower chamber of a legislative assembly (such as in France)
+34678,deputy deputy_sheriff,someone authorized to exercise the powers of sheriff in emergencies
+34679,deputy lieutenant,an assistant with power to act when his superior is absent
+34680,deputy surrogate,a person appointed to represent or act on behalf of others
+34681,derailment,an accident in which a train runs off its track
+34682,derangement mental_unsoundness unbalance,a state of mental disturbance and disorientation
+34683,deregulation deregulating,the act of freeing from regulation (especially from governmental regulations)
+34684,derelict,a person without a home, job, or property
+34685,dereliction,willful negligence
+34686,derision,contemptuous laughter
+34687,derision ridicule,the act of deriding or treating with contempt
+34688,derivation,(descriptive linguistics) the process whereby new words are formed from existing words or bases by affixation; "`singer' from `sing' or `undo' from `do' are examples of derivations"
+34689,derivation,the source or origin from which something derives (i.e. comes or issues); "he prefers shoes of Italian derivation"; "music of Turkish derivation"
+34690,derivation,a line of reasoning that shows how a conclusion follows logically from accepted propositions
+34691,derivation,drawing of fluid or inflammation away from a diseased part of the body
+34692,derivation,drawing off water from its main channel as for irrigation
+34693,derivation,the act of deriving something or obtaining something from a source or origin
+34694,derivational_morphology,the part of grammar that deals with the derivations of words
+34695,derivative,a compound obtained from, or regarded as derived from, another compound
+34696,derivative,(linguistics) a word that is derived from another word; "`electricity' is a derivative of `electric'"
+34697,derivative_instrument derivative,a financial instrument whose value is based on another security
+34698,derived_function derivative differential_coefficient differential first_derivative,the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx
+34699,deriving derivation etymologizing,(historical linguistics) an explanation of the historical origins of a word or phrase
+34700,dermabrasion,removal of scars or tattoos by anesthetizing the skin surface and then sanding or scraping off some of the outer skin layer
+34701,dermatitis,inflammation of the skin; skin becomes itchy and may develop blisters
+34702,dermatoglyphic,the lines that form patterns on the skin (especially on the fingertips and the palms of the hands and the soles of the feet)
+34703,dermatoglyphics,the study of the whorls and loops and arches in the fingertips and on the palms of the hand and the soles of the feet; "some criminologists specialize in dermatoglyphics"
+34704,dermatologist skin_doctor,a doctor who specializes in the physiology and pathology of the skin
+34705,dermatology,the branch of medicine dealing with the skin and its diseases
+34706,dermatome,a surgical instrument used to cut very thin slices of skin
+34707,dermatomycosis dermatophytosis,fungal infection of the skin (especially of moist parts covered by clothing)
+34708,dermatomyositis,myositis characterized by weakness of limb and neck muscles and much muscle pain and swelling accompanied by skin rash affecting cheeks and eyelids and neck and chest and limbs; progression and severity vary among individuals
+34709,dermatosis,disorder involving lesions or eruptions of the skin (in which there is usually no inflammation)
+34710,dermis corium derma,the deep vascular inner layer of the skin
+34711,dermoid_cyst,a cystic tumor (usually benign) with a wall lined with epithelium and a cavity containing other material
+34712,derogation,(law) the partial taking away of the effectiveness of a law; a partial repeal or abolition of a law; "any derogation of the common law is to be strictly construed"
+34713,derrick,a framework erected over an oil well to allow drill tubes to be raised and lowered
+34714,derrick,a simple crane having lifting tackle slung from a boom
+34715,derring-do,brave and heroic feats
+34716,derringer,a pocket pistol of large caliber with a short barrel
+34717,derris,any of various usually woody vines of the genus Derris of tropical Asia whose roots yield the insecticide rotenone; several are sources of native fish and arrow poisons
+34718,derris_root tuba_root Derris_elliptica,woody vine having bright green leaves and racemes of rose-tinted white flowers; the swollen roots contain rotenone
+34719,derv,diesel oil used in cars and lorries with diesel engines; from d(iesel) e(ngine) r(oad) v(ehicle)
+34720,dervish,an ascetic Muslim monk; a member of an order noted for devotional exercises involving bodily movements
+34721,desalination desalinization desalinisation,the removal of salt (especially from sea water)
+34722,descant discant,a decorative musical accompaniment (often improvised) added above a basic melody
+34723,descendant descendent,a person considered as descended from some ancestor
+34724,descendants posterity,all of the offspring of a given progenitor; "we must secure the benefits of freedom for ourselves and our posterity"
+34725,descender,someone who descends
+34726,descender,a lowercase letter that has a part extending below other lowercase letters
+34727,descender,(printing) the part of lowercase letters that extends below the other lowercase letters
+34728,descending_aorta,the descending part of the aorta that branches into the thoracic and abdominal aortae
+34729,descending_colon,the part of the large intestine that descends from the transverse colon to the sigmoid colon
+34730,descending_node,the point at which an orbit crosses the ecliptic plane going south
+34731,descent,a movement downward
+34732,descent,the act of changing your location in a downward direction
+34733,descent declivity fall decline declination declension downslope,a downward slope or bend
+34734,descent line_of_descent lineage filiation,the kinship relation between an individual and the individual's progenitors
+34735,description,the act of describing something
+34736,description,sort or variety; "every description of book was there"
+34737,description verbal_description,a statement that represents something in words
+34738,descriptive_adjective qualifying_adjective,an adjective that ascribes to its noun the value of an attribute of that noun (e.g., `a nervous person' or `a musical speaking voice')
+34739,descriptive_grammar,a grammar that is produced by descriptive linguistics
+34740,descriptive_linguistics,a description (at a given point in time) of a language with respect to its phonology and morphology and syntax and semantics without value judgments
+34741,descriptivism,(ethics) a doctrine holding that moral statements have a truth value
+34742,descriptivism,(linguistics) a doctrine supporting or promoting descriptive linguistics
+34743,descriptor,a piece of stored information that is used to identify an item in an information storage and retrieval system
+34744,desensitization desensitisation,the process of reducing sensitivity; "the patient was desensitized to the allergen"
+34745,desensitization_technique desensitisation_technique desensitization_procedure desensitisation_procedure systematic_desensitization systematic_desensitisation,a technique used in behavior therapy to treat phobias and other behavior problems involving anxiety; client is exposed to the threatening situation under relaxed conditions until the anxiety reaction is extinguished
+34746,desert,arid land with little or no vegetation
+34747,desert,(usually plural) a person's deservingness of or entitlement to reward or punishment
+34748,desert_four_o'clock Colorado_four_o'clock maravilla Mirabilis_multiflora,wildflower having vibrant deep pink tubular evening-blooming flowers; found in sandy and desert areas from southern California to southern Colorado and into Mexico
+34749,desert_holly Atriplex_hymenelytra,handsome low saltbush of arid southwestern United States and Mexico having blue-green prickly-edged leaves often used for Christmas decoration
+34750,desert_iguana Dipsosaurus_dorsalis,small long-tailed lizard of arid areas of southwestern United States and northwestern Mexico
+34751,desert_mariposa_tulip Calochortus_kennedyi,mariposa with clusters of bell-shaped vermilion or orange or yellow flowers atop short stems; southern California to Arizona and Mexico
+34752,desert_paintbrush Castilleja_chromosa,most common paintbrush of western United States dry lands; having erect stems ending in dense spikes of bright orange to red flowers
+34753,desert_pea Sturt_pea Sturt's_desert_pea Clianthus_formosus Clianthus_speciosus,sprawling shrubby perennial noted for its scarlet black-marked flowers; widely distributed in dry parts of Australia
+34754,desert_plant xerophyte xerophytic_plant xerophile xerophilous_plant,plant adapted for life with a limited supply of water; compare hydrophyte and mesophyte
+34755,desert_plume prince's-plume Stanleya_pinnata Cleome_pinnata,perennial of southwestern United States having leathery blue-green pinnatifid leaves and thick plumelike spikes of yellow flowers; sometimes placed in genus Cleome
+34756,desert_sand_verbena Abronia_villosa,soft-haired sticky plant with heads of bright pink trumpet-shaped flowers; found in sandy desert soil; after ample rains may carpet miles of desert with pink from the southwestern United States to northern Mexico
+34757,desert_selaginella Selaginella_eremophila,prostrate spikemoss; California
+34758,desert_soil desertic_soil,a type of soil that develops in arid climates
+34759,desert_sunflower Gerea_canescens,slender hairy plant with few leaves and golden-yellow flower heads; sandy desert areas of southeastern California to southwestern Utah and western Arizona and northwestern Mexico
+34760,desert_tortoise Gopherus_agassizii,burrowing tortoise of the arid western United States and northern Mexico; may be reclassified as a member of genus Xerobates
+34761,desert_willow Chilopsis_linearis,evergreen shrubby tree resembling a willow of dry regions of southwestern North America having showy purplish flowers and long seed pods
+34762,deserter apostate renegade turncoat recreant ratter,a disloyal person who betrays or deserts his cause or religion or political party or friend etc.
+34763,deserter defector,a person who abandons their duty (as on a military post)
+34764,desertification,the gradual transformation of habitable land into desert; is usually caused by climate change or by destructive use of the land; "the dust storms in Korea are the result of rapid desertification in China"
+34765,desertion abandonment defection,withdrawing support or help despite allegiance or responsibility; "his abandonment of his wife and children left them penniless"
+34766,deservingness merit meritoriousness,the quality of being deserving (e.g., deserving assistance); "there were many children whose deservingness he recognized and rewarded"
+34767,desiccant drying_agent drier siccative,a substance that promotes drying (e.g., calcium oxide absorbs water and is used to remove moisture)
+34768,desideratum,something desired as a necessity; "the desiderata for a vacation are time and money"
+34769,design,a preliminary sketch indicating the plan for something; "the design of a building"
+34770,design designing,the act of working out the form of something (as by making a sketch or outline or plan); "he contributed to the design of a new instrument"
+34771,design pattern figure,a decorative or artistic work; "the coach had a design on the doors"
+34772,design plan,an arrangement scheme; "the awkward design of the keyboard made operation difficult"; "it was an excellent design for living"; "a plan for seating guests"
+34773,design_criteria,criteria that designers should meet in designing some system or device; "the job specifications summarized the design criteria"
+34774,designated_driver,the member of a party who is designated to refrain from alcohol and so is sober when it is time to drive home
+34775,designated_hitter,a ballplayer who is designated to bat in place of the pitcher
+34776,designation identification,the act of designating or identifying something
+34777,designatum,something (whether existing or not) that is referred to by a linguistic expression
+34778,designer intriguer,a person who devises plots or intrigues; "he is believed to be the principal designer of the terrorist bombing attack"
+34779,designer_drug,a psychoactive drug deliberately synthesized to avoid anti-drug laws; mimics the effects of a banned drug; law was revised in 1986 to ban designer drugs
+34780,desipramine,a tricyclic antidepressant drug that activates the psychomotor system
+34781,desirability desirableness,the quality of being worthy of desiring
+34782,desire,something that is desired
+34783,desire,the feeling that accompanies an unsatisfied state
+34784,desire,an inclination to want things; "a man of many desires"
+34785,desire_to_know lust_for_learning thirst_for_knowledge,curiosity that motivates investigation and study
+34786,desk,a piece of furniture with a writing surface and usually drawers or other compartments
+34787,desk_clerk hotel_desk_clerk hotel_clerk,a hotel receptionist
+34788,desk_dictionary collegiate_dictionary,an abridged dictionary of a size convenient to hold in the hand
+34789,desk_officer,a military officer who is not assigned to active duty
+34790,desk_phone,a telephone set that sits on a desk or table
+34791,desk_sergeant deskman station_keeper,the police sergeant on duty in a police station
+34792,desktop,the top of a desk
+34793,desktop_computer,a personal computer small enough to fit conveniently in an individual workspace
+34794,desktop_publishing,(computer science) the use of microcomputers with graphics capacity to produce printed materials
+34795,desmid,freshwater green algae
+34796,desorption,changing from an adsorbed state on a surface to a gaseous or liquid state
+34797,despair,the feeling that everything is wrong and nothing will turn out well; "they moaned in despair and dismay"; "one harsh word would send her into the depths of despair"
+34798,despair desperation,a state in which all hope is lost or absent; "in the depths of despair"; "they were rescued from despair at the last minute"; "courage born of desperation"
+34799,desperado desperate_criminal,a bold outlaw (especially on the American frontier)
+34800,desperate,a person who is frightened and in need of help; "they prey on the hopes of the desperate"
+34801,desperate_measure,desperate actions taken as a means to an end; "he had to resort to desperate measures"
+34802,desperate_straits dire_straits,a state of extreme distress
+34803,desperation,desperate recklessness; "it was a policy of desperation"
+34804,despisal despising,a feeling of scornful hatred
+34805,despite,contemptuous disregard; "she wanted neither favor nor despite"
+34806,despondency despondence heartsickness disconsolateness,feeling downcast and disheartened and hopeless
+34807,desquamation peeling shedding,loss of bits of outer skin by peeling or shedding or coming off in scales
+34808,dessert sweet afters,a dish served as the last course of a meal
+34809,dessert_plate,a small plate on which dessert can be served
+34810,dessert_spoon,a spoon larger than a teaspoon and smaller than a tablespoon
+34811,dessert_wine,still sweet wine often served with dessert or after a meal
+34812,dessertspoon dessertspoonful,as much as a dessert spoon will hold
+34813,dessiatine,a former Russian unit of area equal to 2.7 acres
+34814,destabilization,an event that causes a loss of equilibrium (as of a ship or aircraft)
+34815,destabilization destabilisation,the action of destabilizing; making something less stable (especially of a government or country or economy)
+34816,destalinization de-Stalinization destalinisation de-Stalinisation,social process of neutralizing the influence of Joseph Stalin by revising his policies and removing monuments dedicated to him and renaming places named in his honor; "his statue was demolished as part of destalinization"
+34817,destination terminus,the ultimate goal for which something is done
+34818,destiny fate,the ultimate agency regarded as predetermining the course of events (often personified as a woman); "we are helpless in the face of destiny"
+34819,destiny fate,an event (or a course of events) that will inevitably happen in the future
+34820,destitution,a state without friends or money or prospects
+34821,destroyer guided_missile_destroyer,a small fast lightly armored but heavily armed warship
+34822,destroyer ruiner undoer waster uprooter,a person who destroys or ruins or lays waste to; "a destroyer of the environment"; "jealousy was his undoer"; "uprooters of gravestones"
+34823,destroyer_escort,warship smaller than a destroyer; designed to escort fleets or convoys
+34824,destroying_angel Amanita_verna,fungus similar to Amanita phalloides
+34825,destructibility,vulnerability to destruction
+34826,destruction demolition wipeout,an event (or the result of an event) that completely destroys something
+34827,destruction devastation,the termination of something by causing so much damage to it that it cannot be repaired or no longer exists
+34828,destruction_fire,fire delivered for the sole purpose of destroying material objects
+34829,destructive_distillation,heating a solid substance in a closed container and collecting the volatile products
+34830,destructiveness,the quality of causing destruction
+34831,desuetude,a state of inactivity or disuse
+34832,detached_house single_dwelling,a house that stands alone
+34833,detachment,a small unit of troops of special composition
+34834,detachment disengagement,the act of releasing from an attachment or connection
+34835,detail,a crew of workers selected for a particular task; "a detail was sent to remove the fallen trees"
+34836,detail,extended treatment of particulars; "the essay contained too much detail"
+34837,detail item point,an isolated fact that is considered separately from the whole; "several of the details are similar"; "a point of information"
+34838,detail particular item,a small part that can be considered separately from the whole; "it was perfect in all details"
+34839,details inside_information,true confidential information; "after the trial he gave us the real details"
+34840,detainee political_detainee,some held in custody
+34841,detection catching espial spying spotting,the act of detecting something; catching sight of something
+34842,detection detecting detective_work sleuthing,a police investigation to determine the perpetrator; "detection is hard on the feet"
+34843,detection sensing,the perception that something has occurred or some state exists; "early detection can often lead to a cure"
+34844,detective,an investigator engaged or employed in obtaining information not easily available to the public
+34845,detective investigator tec police_detective,a police officer who investigates crimes
+34846,detective_agency,an agency that makes inquiries for its clients
+34847,detective_novel mystery_novel,novel in which the reader is challenged to solve a puzzle before the detective explains it at the end
+34848,detective_story,a narrative about someone who investigates crimes and obtains evidence leading to their resolution
+34849,detector,electronic equipment that detects the presence of radio signals or radioactivity
+34850,detector demodulator,rectifier that extracts modulation from a radio carrier wave
+34851,detector sensor sensing_element,any device that receives a signal or stimulus (as heat or pressure or light or motion etc.) and responds to it in a distinctive manner
+34852,detente,the easing of tensions or strained relations (especially between nations)
+34853,detention,a punishment in which a student must stay at school after others have gone home; "the detention of tardy pupils"
+34854,detention detainment hold custody,a state of being confined (usually for a short time); "his detention was politically motivated"; "the prisoner is on hold"; "he is in the custody of police"
+34855,detention_basin,a storage site (such as a small reservoir) that delays the flow of water downstream
+34856,detention_home detention_house house_of_detention detention_camp,an institution where juvenile offenders can be held temporarily (usually under the supervision of a juvenile court)
+34857,detergency detergence,detergent quality; the quality of having cleansing power
+34858,detergent,a surface-active chemical widely used in industry and laundering
+34859,detergent,a cleansing agent that differs from soap but can also emulsify oils and hold dirt in suspension
+34860,deterioration decline_in_quality declension worsening,process of changing to an inferior state
+34861,deterioration impairment,a symptom of reduced quality or strength
+34862,determent deterrence intimidation,a communication that makes you afraid to try something
+34863,determinant,a square matrix used to solve simultaneous equations
+34864,determinant determiner determinative determining_factor causal_factor,a determining or causal element or factor; "education is an important determinant of one's outlook on life"
+34865,determinateness definiteness,the quality of being predictable with great confidence
+34866,determination,deciding or controlling something's outcome or nature; "the determination of grammatical inflections"
+34867,determination finding,the act of determining the properties of something, usually by research or calculation; "the determination of molecular structures"
+34868,determination purpose,the quality of being determined to do or achieve something; firmness of purpose; "his determination showed in his every movement"; "he is a man of purpose"
+34869,determiner determinative,one of a limited class of noun modifiers that determine the referents of noun phrases
+34870,determinism,(philosophy) a philosophical theory holding that all events are inevitable consequences of antecedent sufficient causes; often understood as denying the possibility of free will
+34871,deterrence,the act or process of discouraging actions or preventing occurrences by instilling fear or doubt or anxiety
+34872,detonating_fuse,a fuse containing an explosive
+34873,detonation,the act of detonating an explosive
+34874,detonator detonating_device cap,a mechanical or electrical explosive device or a small amount of explosive; can be used to initiate the reaction of a disrupting explosive
+34875,detour roundabout_way,a roundabout road (especially one that is used temporarily while a main route is blocked)
+34876,detox,the hospital ward or clinic in which patients are detoxified
+34877,detoxification,a treatment for addiction to drugs or alcohol intended to remove the physiological effects of the addictive substances
+34878,detoxification,treatment for poisoning by neutralizing the toxic properties (normally a function of the liver)
+34879,detraction,the act of discrediting or detracting from someone's reputation (especially by slander); "let it be no detraction from his merits to say he is plainspoken"
+34880,detraction petty_criticism,a petty disparagement
+34881,detractor disparager depreciator knocker,one who disparages or belittles the worth of something
+34882,detribalization detribalisation,the act of causing tribal people to abandon their customs and adopt urban ways of living
+34883,detribalization detribalisation,the decline or termination of tribal organization
+34884,detriment hurt,a damage or loss
+34885,detritus,loose material (stone fragments and silt etc) that is worn away from rocks
+34886,detumescence,diminution of swelling; the subsidence of anything swollen
+34887,deuce,a tie in tennis or table tennis that requires winning two successive points to win the game
+34888,deuce two,one of the four playing cards in a deck that have two spots
+34889,deus_ex_machina,any active agent who appears unexpectedly to solve an insoluble difficulty
+34890,deuteranopia Daltonism green-blindness,dichromacy characterized by a lowered sensitivity to green light resulting in an inability to distinguish green and purplish-red
+34891,deuterium heavy_hydrogen,an isotope of hydrogen which has one neutron (as opposed to zero neutrons in hydrogen)
+34892,deuteron,the nucleus of deuterium; consists of one proton and one neutron; used as a bombarding particle in accelerators
+34893,deutzia,any of various shrubs of the genus Deutzia having usually toothed opposite leaves and shredding bark and white or pink flowers in loose terminal clusters
+34894,devaluation,an official lowering of a nation's currency; a decrease in the value of a country's currency relative to that of foreign countries
+34895,devaluation,the reduction of something's value or worth
+34896,devastation,the feeling of being confounded or overwhelmed; "her departure left him in utter devastation"
+34897,devastation desolation,the state of being decayed or destroyed
+34898,devastation desolation,an event that results in total destruction
+34899,developer,someone who develops real estate (especially someone who prepares a site for residential or commercial use)
+34900,developer,photographic equipment consisting of a chemical solution for developing film
+34901,developing_country,a country that is poor and whose citizens are mostly agricultural workers but that wants to become more advanced socially and economically
+34902,development,a state in which things are improving; the result of developing (as in the early part of a game of chess); "after he saw the latest development he changed his mind and became a supporter"; "in chess your should take care of your development before moving your queen"
+34903,development,a district that has been developed to serve some purpose; "such land is practical for small park developments"
+34904,development,a recent event that has some relevance for the present situation; "recent developments in Iraq"; "what a revolting development!"
+34905,development,(music) the section of a composition or movement (especially in sonata form) where the major musical themes are developed and elaborated
+34906,development,act of improving by expanding or enlarging or refining; "he congratulated them on their development of a plan to meet the emergency"; "they funded research and development"
+34907,development developing,processing a photosensitive material in order to make an image visible; "the development and printing of his pictures took only two hours"
+34908,development evolution,a process in which something passes by degrees to a different stage (especially a more advanced or mature stage); "the development of his ideas took many years"; "the evolution of Greek civilization"; "the slow development of her skill as a writer"
+34909,developmental_age,a measure of a child's development (in body size or motor skill or psychological function) expressed in terms of age norms
+34910,developmental_anatomy,the branch of anatomy that studies structural changes of an individual from fertilization to maturity
+34911,developmental_learning,learning that takes place as a normal part of cognitive development
+34912,developmental_psychology genetic_psychology child_psychology,the branch of psychology that studies the social and mental development of children
+34913,deviated_nasal_septum,abnormal shift in location of the nasal septum; a common condition causing obstruction of the nasal passages and difficulty in breathing and recurrent nosebleeds
+34914,deviated_septum,abnormal displacement of any wall that separates two chambers (usually in the nasal cavity)
+34915,deviation,the difference between an observed value and the expected value of a variable or function
+34916,deviation,the error of a compass due to local magnetic disturbances
+34917,deviation deviance,deviate behavior
+34918,deviation divergence departure difference,a variation that deviates from the standard or norm; "the deviation from the mean"
+34919,deviationism,ideological defection from the party line (especially from orthodox communism)
+34920,deviationist,an ideological defector from the party line (especially from orthodox communism)
+34921,device,something in an artistic work designed to achieve a particular effect
+34922,device,any ornamental pattern or design (as in embroidery)
+34923,device,an emblematic design (especially in heraldry); "he was recognized by the device on his shield"
+34924,device,an instrumentality invented for a particular purpose; "the device is small enough to wear on your wrist"; "a device intended to conserve water"
+34925,device gimmick twist,any clever maneuver; "he would stoop to any device to win a point"; "it was a great sales gimmick"; "a cheap promotions gimmick for greedy businessmen"
+34926,devices,an inclination or desire; used in the plural in the phrase `left to your own devices'; "eventually the family left the house to the devices of this malevolent force"; "the children were left to their own devices"
+34927,devil deuce dickens,a word used in exclamations of confusion; "what the devil"; "the deuce with it"; "the dickens you say"
+34928,devil fiend demon daemon daimon,an evil supernatural being
+34929,devil's_advocate,someone who takes the worse side just for the sake of argument
+34930,devil's_cigar,a common name for a variety of Sarcosomataceae
+34931,devil's_food devil's_food_cake,very dark chocolate cake
+34932,devil's_tongue snake_palm umbrella_arum Amorphophallus_rivieri,foul-smelling somewhat fleshy tropical plant of southeastern Asia cultivated for its edible corms or in the greenhouse for its large leaves and showy dark red spathe surrounding a large spadix
+34933,devil's_urn,a common name for a variety of Sarcosomataceae
+34934,devil_ray Mobula_hypostoma,small manta (to 4 feet) that travels in schools
+34935,devil_worshiper,someone who worships devils
+34936,deviled_egg stuffed_egg,halved hard-cooked egg with the yolk mashed with mayonnaise and seasonings and returned to the white
+34937,deviltry devilry,wicked and cruel behavior
+34938,devilwood American_olive Osmanthus_americanus,small tree of southern United States having panicles of dull white flowers followed by dark purple fruits
+34939,deviousness obliqueness,the quality of being oblique and rambling indirectly
+34940,devisal contrivance,the act of devising something
+34941,devise,a will disposing of real property
+34942,devise,(law) a gift of real property by will
+34943,devisee,someone to whom property (especially realty) is devised by will
+34944,devising fashioning making,the act that results in something coming to be; "the devising of plans"; "the fashioning of pots and pans"; "the making of measurements"; "it was already in the making"
+34945,devisor,someone who devises real property in a will
+34946,devitalization devitalisation,the act of reducing the vitality of something
+34947,devoir,formal expression of respect
+34948,devolution devolvement,the delegation of authority (especially from a central to a regional government)
+34949,devotion,commitment to some purpose; "the devotion of his time and wealth to science"
+34950,devotion,(usually plural) religious observance or prayers (usually spoken silently); "he returned to his devotions"
+34951,devotion devotedness,feelings of ardent love; "their devotion to each other was beautiful"
+34952,devotion veneration cultism,religious zeal; the willingness to serve God
+34953,devotional,a short religious service
+34954,devourer,someone who eats greedily or voraciously
+34955,devoutness religiousness,piety by virtue of being devout
+34956,dew,water that has condensed on a cool surface overnight from water vapor in the air; "in the morning the grass was wet with dew"
+34957,dew_point,the temperature at which the water vapor in the air becomes saturated and condensation begins
+34958,dewberry,blackberry-like fruits of any of several trailing blackberry bushes
+34959,dewberry dewberry_bush running_blackberry,any of several trailing blackberry brambles especially of North America
+34960,dewdrop,a drop of dew
+34961,dewlap,a hanging fold of loose skin on an elderly person's neck
+34962,dexamethasone Decadron Dexamethasone_Intensol Dexone Hexadrol Oradexon,a corticosteroid drug (trade names Decadron or Dexamethasone Intensol or Dexone or Hexadrol or Oradexon) used to treat allergies or inflammation
+34963,dexterity manual_dexterity sleight,adroitness in using the hands
+34964,dextrin,any of various polysaccharides obtained by hydrolysis of starch; a tasteless and odorless gummy substance that is used as a thickening agent and in adhesives and in dietary supplements
+34965,dextroamphetamine_sulphate Dexedrine,an isomer of amphetamine (trade name Dexedrine) used as a central nervous system stimulant
+34966,dextrocardia,abnormal condition where the heart is located toward the right side of the chest
+34967,dextrorotation clockwise_rotation,rotation to the right
+34968,dextrose dextroglucose grape_sugar,an isomer of glucose that is found in honey and sweet fruits
+34969,dhak dak palas Butea_frondosa Butea_monosperma,East Indian tree bearing a profusion of intense vermilion velvet-textured blooms and yielding a yellow dye
+34970,dhawa dhava,an Indian tree of the family Combretaceae that is a source of timber and gum
+34971,dhobi_itch,fungal infection attacking moist parts of the body
+34972,dhole Cuon_alpinus,fierce wild dog of the forests of central and southeast Asia that hunts in packs
+34973,dhoti,a long loincloth worn by Hindu men
+34974,dhow,a lateen-rigged sailing vessel used by Arabs
+34975,di-iodotyrosine,tyrosine with two iodine atoms added
+34976,diabetes,a polygenic disease characterized by abnormally high glucose levels in the blood; any of several metabolic disorders marked by excessive urination and persistent thirst
+34977,diabetes_insipidus,a rare form of diabetes resulting from a deficiency of vasopressin (the pituitary hormone that regulates the kidneys); characterized by the chronic excretion of large amounts of pale dilute urine which results in dehydration and extreme thirst
+34978,diabetes_mellitus DM,diabetes caused by a relative or absolute deficiency of insulin and characterized by polyuria; "when doctors say `diabetes' they usually mean `diabetes mellitus'"
+34979,diabetic,someone who has diabetes
+34980,diabetic_coma Kussmaul's_coma,coma that can develop in inadequately treated cases of diabetes mellitus
+34981,diabetic_diet,a diet designed to help control the symptoms of diabetes
+34982,diabetic_retinopathy,retinopathy involving damage to the small blood vessels in the retina; results from chronically high blood glucose levels in people with poorly controlled diabetes
+34983,diabolatry demonolatry devil-worship,the acts or rites of worshiping devils
+34984,diabolism demonism Satanism,a belief in and reverence for devils (especially Satan)
+34985,diacritical_mark diacritic,a mark added to a letter to indicate a special pronunciation
+34986,diagnosis diagnosing,identifying the nature or cause of some phenomenon
+34987,diagnostic_procedure diagnostic_technique,a procedure followed in making a medical diagnosis
+34988,diagnostic_program,a program that recognizes and explains faults in the equipment or mistakes in a computer program
+34989,diagnostic_test diagnostic_assay,an assay conducted for diagnostic purposes
+34990,diagnostician pathologist,a doctor who specializes in medical diagnosis
+34991,diagonal,(geometry) a straight line connecting any two vertices of a polygon that are not adjacent
+34992,diagonal,an oblique line of squares of the same color on a checkerboard; "the bishop moves on the diagonals"
+34993,diagonal,(mathematics) a set of entries in a square matrix running diagonally either from the upper left to lower right entry or running from the upper right to lower left entry
+34994,diagonal bias,a line or cut across a fabric that is not at right angles to a side of the fabric
+34995,diagonal_matrix,a square matrix with all elements not on the main diagonal equal to zero
+34996,diagonalization diagonalisation,changing a square matrix to diagonal form (with all non-zero elements on the principal diagonal); "the diagonalization of a normal matrix by a unitary transformation"
+34997,diagram,a drawing intended to explain how something works; a drawing showing the relation between the parts
+34998,diakinesis,the final stage of the prophase of meiosis
+34999,dial,the control on a radio or television set that is used for tuning
+35000,dial,the circular graduated indicator on various measuring instruments
+35001,dial,the face of a timepiece; graduated to show the hours
+35002,dial telephone_dial,a disc on a telephone that is rotated a fixed distance for each number called
+35003,dial_telephone dial_phone,a telephone with a dial for registering the number to be called
+35004,dialect idiom accent,the usage or vocabulary that is characteristic of a specific group of people; "the immigrants spoke an odd dialect of English"; "he has a strong German accent"; "it has been said that a language is a dialect with an army and navy"
+35005,dialect_atlas linguistic_atlas,an atlas showing the distribution of distinctive linguistic features
+35006,dialect_geography linguistic_geography,the study of the geographical distribution of linguistic features
+35007,dialectic,a contradiction of ideas that serves as the determining factor in their interaction; "this situation created the inner dialectic of American history"
+35008,dialectic,any formal system of reasoning that arrives at the truth by the exchange of logical arguments
+35009,dialectical_materialism,the materialistic philosophy of Karl Marx and Friedrich Engels
+35010,dialectician,a logician skilled in dialectic
+35011,dialectics,a rationale for dialectical materialism based on change through the conflict of opposing forces
+35012,dialectology,the branch of philology that is devoted to the study of dialects
+35013,dialog_box panel,(computer science) a small temporary window in a graphical user interface that appears in order to request information from the user; after the information has been provided the user dismisses the box with `okay' or `cancel'
+35014,dialogue dialog,the lines spoken by characters in drama or fiction
+35015,dialogue dialog,a literary composition in the form of a conversation between two people; "he has read Plato's Dialogues in the original Greek"
+35016,dialogue dialog duologue,a conversation between two persons
+35017,dialysis,separation of substances in solution by means of their unequal diffusion through semipermeable membranes
+35018,dialyzer dialysis_machine,a medical instrument for separating substances in solution by unequal diffusion through semipermeable membranes
+35019,diamagnet,a substance that exhibits diamagnetism
+35020,diamagnetism,phenomenon exhibited by materials like copper or bismuth that become magnetized in a magnetic field with a polarity opposite to the magnetic force; unlike iron they are slightly repelled by a magnet
+35021,diamante,fabric covered with glittering ornaments such as sequins or rhinestones
+35022,diameter,a straight line connecting the center of a circle with two points on its perimeter (or the center of a sphere with two points on its surface)
+35023,diameter diam,the length of a straight line passing through the center of a circle and connecting two points on the circumference
+35024,diamine,any organic compound containing two amino groups
+35025,diamond,a transparent piece of diamond that has been cut and polished and is valued as a precious gem
+35026,diamond,a playing card in the minor suit that has one or more red rhombuses on it; "he led a small diamond"; "diamonds were trumps"
+35027,diamond adamant,very hard native crystalline carbon valued as a gem
+35028,diamond_jubilee,an anniversary celebrating the passage of 60 years
+35029,diamond_point,a very hard small point made from a diamond
+35030,diamond_wedding_anniversary diamond_wedding,the 60th wedding anniversary
+35031,diamondback diamondback_rattlesnake Crotalus_adamanteus,large deadly rattlesnake with diamond-shaped markings
+35032,diamondback_terrapin Malaclemys_centrata,of marshes along Atlantic and Gulf Coasts of United States
+35033,diapason diapason_stop,either of the two main stops on a pipe organ
+35034,diapedesis,passage of blood cells (especially white blood cells) through intact capillary walls and into the surrounding tissue
+35035,diapensia,any boreal low-growing evergreen plant of the genus Diapensia
+35036,diaper,a fabric (usually cotton or linen) with a distinctive woven pattern of small repeated figures
+35037,diaper nappy napkin,garment consisting of a folded cloth drawn up between the legs and fastened at the waist; worn by infants to catch excrement
+35038,diaper_rash diaper_dermatitis,dermatitis of the thighs and buttocks of infants; supposedly caused by ammonia in the urine in the child's diapers
+35039,diapheromera Diapheromera_femorata,a variety of stick insect
+35040,diaphone,a foghorn that makes a signal consisting of two tones
+35041,diaphoretic,used to produce perspiration
+35042,diaphragm,electro-acoustic transducer that vibrates to receive or produce sound waves
+35043,diaphragm midriff,(anatomy) a muscular partition separating the abdominal and thoracic cavities; functions in respiration
+35044,diaphragm pessary contraceptive_diaphragm,a contraceptive device consisting of a flexible dome-shaped cup made of rubber or plastic; it is filled with spermicide and fitted over the uterine cervix
+35045,diaphragm stop,a mechanical device in a camera that controls size of aperture of the lens; "the new cameras adjust the diaphragm automatically"
+35046,diaphysis shaft,the main (mid) section of a long bone
+35047,diapir,a domed rock formation where a core of rock has moved upward and pierced through the more brittle overlying strata
+35048,diapsid diapsid_reptile,reptile having a pair of openings in the skull behind each eye
+35049,diarchy dyarchy,a form of government having two joint rulers
+35050,diarist diary_keeper journalist,someone who keeps a diary or journal
+35051,diarrhea diarrhoea looseness_of_the_bowels looseness,frequent and watery bowel movements; can be a symptom of infection or food poisoning or colitis or a gastrointestinal tumor
+35052,diary,a personal journal (as a physical object)
+35053,diary journal,a daily written record of (usually personal) experiences and observations
+35054,diaspora,the body of Jews (or Jewish communities) outside Palestine or modern Israel
+35055,diaspora,the dispersion or spreading of something that was originally localized (as a people or language or culture)
+35056,diastasis,separation of an epiphysis from the long bone to which it is normally attached without fracture of the bone
+35057,diastema,a gap or vacant space between two teeth
+35058,diastole,the widening of the chambers of the heart between two contractions when the chambers fill with blood
+35059,diastolic_pressure,the blood pressure (as measured by a sphygmomanometer) after the contraction of the heart while the chambers of the heart refill with blood
+35060,diastrophism,the process of deformation that produces continents and ocean basins in the earth's crust
+35061,diathermy,a method of physical therapy that involves generating local heat in body tissues by high-frequency electromagnetic currents
+35062,diathermy_machine,a medical instrument for local heating of bodily tissues for medical purposes
+35063,diathesis,constitutional predisposition to a particular disease or abnormality
+35064,diatom,microscopic unicellular marine or freshwater colonial alga having cell walls impregnated with silica
+35065,diatomaceous_earth diatomite kieselguhr,a light soil consisting of siliceous diatom remains and often used as a filtering material
+35066,diatonic_scale,a scale with eight notes in an octave; all but two are separated by whole tones
+35067,diazepam Valium,a tranquilizer (trade name Valium) used to relieve anxiety and relax muscles; acts by enhancing the inhibitory actions of the neurotransmitter GABA; can also be used as an anticonvulsant drug in cases of nerve agent poisoning
+35068,diazonium,the univalent cation R-N:N- (where R is an aromatic hydrocarbon); found in salts that are used in manufacturing azo dyes
+35069,diazoxide Hyperstat,vasodilator (trade name Hyperstat) used to treat severe hypertension
+35070,dibasic_acid,an acid containing two replaceable hydrogen atoms per molecule
+35071,dibasic_salt,a salt derived by replacing two hydrogen atoms per molecule
+35072,dibble dibber,a wooden hand tool with a pointed end; used to make holes in the ground for planting seeds or bulbs
+35073,dibranchiate dibranchiate_mollusk dibranch,cephalopods having two gills
+35074,dibs,a claim of rights; "I have dibs on that last slice of pizza"
+35075,dibucaine,a local anesthetic that is administered by injection
+35076,dicamptodon dicamptodontid,salamanders found near cold streams throughout the year
+35077,dice_cup dice_box,a small container (open at one end) in which dice are shaken by hand and from which they are thrown
+35078,dicer,a mechanical device used for dicing food
+35079,dichloride bichloride,a compound containing two chlorine atoms per molecule
+35080,dichlorodiphenyltrichloroethane DDT,an insecticide that is also toxic to animals and humans; banned in the United States since 1972
+35081,dichondra Dichondra_micrantha,a creeping perennial herb with hairy stems and orbicular to reniform leaves and small white to greenish flowers; used as a grass substitute in warm regions
+35082,dichotomization dichotomisation,the act of dividing into two sharply different categories
+35083,dichotomy duality,being twofold; a classification into two opposed parts or subclasses; "the dichotomy between eastern and western culture"
+35084,dichroism,pleochroism of a crystal so that it exhibits two different colors when viewed from two different directions
+35085,dichromacy dichromatism dichromatopsia dichromia dichromasy,a deficiency of color vision in which the person can match any given hue by mixing only two other wavelengths of light (as opposed to the three wavelengths needed by people with normal color vision)
+35086,dichromat,a person with any of the various forms of dichromacy
+35087,dichromic_acid,the hypothetical acid (H2Cr2O7) from which dichromates are derived; known only in solution and in the form of dichromate salts
+35088,dick gumshoe hawkshaw,someone who is a detective
+35089,dickey dickie dicky dickey-seat dickie-seat dicky-seat,a small third seat in the back of an old-fashioned two-seater
+35090,dickey dickie dicky shirtfront,a man's detachable insert (usually starched) to simulate the front of a shirt
+35091,dickeybird dickey-bird dickybird dicky-bird,small bird; adults talking to children sometimes use these words to refer to small birds
+35092,diclofenac_potassium Cataflam,a nonsteroidal anti-inflammatory drug (trade name Cataflam)
+35093,diclofenac_sodium Voltaren,a nonsteroidal anti-inflammatory drug (trade name Voltaren) that is administered only orally
+35094,dicloxacillin Dynapen,antibacterial (trade name Dynapen) used to treat staphylococcal infections that are resistant to penicillin
+35095,dicot dicotyledon magnoliopsid exogen,flowering plant with two cotyledons; the stem grows by deposit on its outside
+35096,dicot_family magnoliopsid_family,family of flowering plants having two cotyledons (embryonic leaves) in the seed which usually appear at germination
+35097,dicot_genus magnoliopsid_genus,genus of flowering plants having two cotyledons (embryonic leaves) in the seed which usually appear at germination
+35098,dictate,an authoritative rule
+35099,dictate,a guiding principle; "the dictates of reason"
+35100,dictation,speech intended for reproduction in writing
+35101,dictation,matter that has been dictated and transcribed; a dictated passage; "he signed and mailed his dictation without bothering to read it"
+35102,dictator,a speaker who dictates to a secretary or a recording machine
+35103,dictator potentate,a ruler who is unconstrained by law
+35104,dictatorship absolutism authoritarianism Caesarism despotism monocracy one-man_rule shogunate Stalinism totalitarianism tyranny,a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)
+35105,dictionary lexicon,a reference book containing an alphabetical list of words with information about them
+35106,dictionary_definition,a definition that reports the standard uses of a word or phrase or symbol
+35107,dictostylium,any slime mold of the genus Dictostylium
+35108,dictyopterous_insect,cockroaches and mantids
+35109,dicumarol dicoumarol,an anticoagulant drug that has now been largely replaced by warfarin
+35110,dicynodont,a kind of therapsid
+35111,didacticism,communication that is suitable for or intended to be instructive; "the didacticism expected in books for the young"; "the didacticism of the 19th century gave birth to many great museums"
+35112,dideoxycytosine ddC DDC zalcitabine,an antiviral drug used to combat HIV infection
+35113,dideoxyinosine ddI DDI didanosine,an antiviral drug used to combat HIV infection
+35114,die,a cutting tool that is fitted into a diestock and used for cutting male (external) screw threads on screws or bolts or pipes or rods
+35115,die,a device used for shaping metal
+35116,die dice,a small cube with 1 to 6 spots on the six faces; used in gambling to generate random numbers
+35117,dieback,a disease of plants characterized by the gradual dying of the young shoots starting at the tips and progressing to the larger branches
+35118,dielectric_heating,heating of an insulator by a high-frequency electric field
+35119,diemaker diesinker die-sinker,someone who makes dies
+35120,diencephalon interbrain betweenbrain thalmencephalon,the posterior division of the forebrain; connects the cerebral hemispheres with the mesencephalon
+35121,dieresis diaeresis,a diacritical mark (two dots) placed over a vowel to indicate that it does not form a diphthong with an adjacent vowel
+35122,diesel diesel_engine diesel_motor,an internal-combustion engine that burns heavy oil
+35123,diesel-electric_locomotive diesel-electric,a locomotive driven by the electric current generated by a diesel engine
+35124,diesel-hydraulic_locomotive diesel-hydraulic,a locomotive driven by a hydraulic transmission system powered by a diesel engine
+35125,diesel_locomotive,a locomotive driven by a diesel engine
+35126,diesel_oil diesel_fuel,a heavy mineral oil used as fuel in diesel engines
+35127,diestock,a device that holds the dies that cut external threads on metal cylinders
+35128,diestrus diestrum,(of animals having several estrous cycles in one breeding season) a state or interval of sexual inactivity or quiescence between periods of activity
+35129,diet,a legislative assembly in certain countries (e.g., Japan)
+35130,diet,a prescribed selection of foods
+35131,diet,the usual food and drink consumed by an organism (person or animal)
+35132,diet dieting,the act of restricting your food intake (or your intake of particular foods)
+35133,dietary,a regulated daily food allowance
+35134,dietary_supplement,something added to complete a diet or to make up for a dietary deficiency
+35135,dieter,a person who diets
+35136,dietetics,the scientific study of food preparation and intake
+35137,diethylaminoethyl_cellulose DEAE_cellulose,used for chromatography
+35138,diethylstilbesterol DES stilbesterol,synthetic nonsteroid with the properties of estrogen; formerly used to treat menstrual problems but was found to be associated with vaginal cancers in the daughters of women so treated during pregnancy
+35139,diethylstilbestrol diethylstilboestrol stilbestrol stilboestrol DES,a potent estrogen used in medicine and in feed for livestock and poultry
+35140,dietician dietitian,a specialist in the study of diet and nutrition
+35141,difference,a significant change; "the difference in her is amazing"; "his support made a real difference"
+35142,difference,the quality of being unlike or dissimilar; "there are many differences between jazz and rock"
+35143,difference_threshold differential_threshold difference_limen differential_limen,the smallest change in stimulation that a person can detect
+35144,differentia,distinguishing characteristics (especially in different species of a genus)
+35145,differential,a quality that differentiates between similar things
+35146,differential_analyzer,an analog computer designed to solve differential equations
+35147,differential_blood_count,counting the number of specific types of white blood cells found in 1 cubic millimeter of blood; may be included as part of a complete blood count
+35148,differential_calculus method_of_fluxions,the part of calculus that deals with the variation of a function with respect to changes in the independent variable (or variables) by means of the concepts of derivative and differential
+35149,differential_diagnosis,a systematic method of diagnosing a disorder (e.g., headache) that lacks unique symptoms or signs
+35150,differential_equation,an equation containing differentials of a function
+35151,differential_gear differential,a bevel gear that permits rotation of two shafts at different speeds; used on the rear axle of automobiles to allow wheels to rotate at different speeds on curves
+35152,differential_psychology,the branch of psychology that studies measurable differences between individuals
+35153,differentiation,the mathematical process of obtaining the derivative of a function
+35154,differentiation distinction,a discrimination between things as different and distinct on the basis of their characteristics or attributes; "it is necessary to make a distinction between love and infatuation"
+35155,differentiator discriminator,a person who (or that which) differentiates
+35156,difficulty,a condition or state of affairs almost beyond one's ability to deal with and requiring great effort to bear or overcome; "grappling with financial difficulties"
+35157,difficulty,a factor causing trouble in achieving a positive result or tending to produce a negative result; "serious difficulties were encountered in obtaining a pure reagent"
+35158,difficulty difficultness,the quality of being difficult; "they agreed about the difficulty of the climb"
+35159,diffidence self-doubt self-distrust,lack of self-confidence
+35160,difflugia,a protozoan with an ovoid shell of cemented sand grains
+35161,diffraction,when light passes sharp edges or goes through narrow slits the rays are deflected and produce fringes of light and dark bands
+35162,diffraction_grating grating,optical device consisting of a surface with many parallel grooves in it; disperses a beam of light (or other electromagnetic radiation) into its wavelengths to produce its spectrum
+35163,diffuse_nebula gaseous_nebula,a cluster of stars within an intricate cloud of gas and dust
+35164,diffuseness,the spatial property of being spread out over a wide area or through a large volume
+35165,diffuser diffusor,baffle that distributes sound waves evenly
+35166,diffuser diffusor,optical device that distributes the light of a lamp evenly
+35167,diffusion,(physics) the process in which there is movement of a substance from an area of high concentration of that substance to an area of lower concentration
+35168,diffusion,the spread of social institutions (and myths and skills) from one society to another
+35169,diflunisal Dolobid,nonsteroidal anti-inflammatory (trade name Dolobid) used to treat arthritis and other inflammatory conditions
+35170,dig,a small gouge (as in the cover of a book); "the book was in good condition except for a dig in the back cover"
+35171,dig excavation archeological_site,the site of an archeological exploration; "they set up camp next to the dig"
+35172,dig jab,the act of touching someone suddenly with your finger or elbow; "she gave me a sharp dig in the ribs"
+35173,digest,a periodical that summarizes the news
+35174,digester,autoclave consisting of a vessel in which plant or animal materials are digested
+35175,digestibility digestibleness,the property of being easy to digest
+35176,digestion,the process of decomposing organic matter (as in sewage) by bacteria or by chemical action or heat
+35177,digestion,the organic process by which food is converted into substances that can be absorbed into the body
+35178,digestion,learning and coming to understand ideas and information; "his appetite for facts was better than his digestion"
+35179,digestive,any substance that promotes digestion
+35180,digestive_gland,any gland having ducts that pour secretions into the digestive tract
+35181,digestive_juice digestive_fluid,secretions that aid digestion
+35182,digestive_system gastrointestinal_system systema_alimentarium systema_digestorium,the system that makes food absorbable into the body
+35183,digger,a laborer who digs
+35184,digger_wasp,solitary wasp that digs nests in the soil and stocks them with paralyzed insects for the larvae
+35185,diggings digs,an excavation for ore or precious stones or for archaeology
+35186,diggings digs domiciliation lodgings pad,temporary living quarters
+35187,digit dactyl,a finger or toe in human beings or corresponding body part in other vertebrates
+35188,digit figure,one of the elements that collectively form a system of numeration; "0 and 1 are digits"
+35189,digital-analog_converter digital-to-analog_converter,device for converting digital signals into analogue signals
+35190,digital_arteries arteria_digitalis,arteries in the hand and foot that supply the fingers and toes
+35191,digital_audiotape DAT,a digital tape recording of sound
+35192,digital_camera,a camera that encodes an image digitally and store it for later reproduction
+35193,digital_clock,a clock that displays the time of day digitally
+35194,digital_communication data_communication,electronic transmission of information that has been encoded digitally (as for storage and processing by computers)
+35195,digital_communications_technology,the design and construction of communications technology that transmits information in digital form
+35196,digital_computer,a computer that represents information by numerical (binary) digits
+35197,digital_display alphanumeric_display,a display that gives the information in the form of characters (numbers or letters)
+35198,digital_photography,a photographic method that stores the image digitally for later reproduction
+35199,digital_plethysmograph,plethysmograph applied to a digit of the hand or foot to measure skin blood flow
+35200,digital_subscriber_line DSL,a generic name for digital lines that are provided by telephone companies to their local subscribers and that carry data at high speeds
+35201,digital_vein vena_digitalis,one of the veins serving the fingers or toes
+35202,digital_voltmeter,an electronic voltmeter that gives readings in digits
+35203,digital_watch,a watch with a digital display
+35204,digitalis digitalis_glycoside digitalin,a powerful cardiac stimulant obtained from foxglove
+35205,digitalization digitalisation,the administration of digitalis for the treatment of certain heart disorders
+35206,digitigrade_mammal digitigrade,an animal that walks so that only the toes touch the ground as e.g. dogs and cats and horses
+35207,digitization digitisation,conversion of analog information into digital information
+35208,digitizer digitiser analog-digital_converter analog-to-digital_converter,device for converting analogue signals into digital signals
+35209,digitoxin,digitalis preparation used to treat congestive heart failure or cardiac arrhythmia
+35210,dignity,high office or rank or station; "he respected the dignity of the emissaries"
+35211,dignity lordliness gravitas,formality in bearing and appearance; "he behaved with great dignity"
+35212,dignity self-respect self-regard self-worth,the quality of being worthy of esteem or respect; "it was beneath his dignity to cheat"; "showed his true dignity when under pressure"
+35213,digoxin Lanoxin,digitalis preparation (trade name Lanoxin) used to treat congestive heart failure or cardiac arrhythmia; helps the heart beat more forcefully
+35214,digraph digram,two successive letters (especially two letters used to represent a single sound: `sh' in `shoe')
+35215,digression aside excursus divagation parenthesis,a message that departs from the main subject
+35216,digression excursion,wandering from the main path of a journey
+35217,dihybrid,a hybrid produced by parents that differ only at two gene loci that have two alleles each
+35218,dihybrid_cross,hybridization using two traits with two alleles each
+35219,dihydrostreptomycin,antibiotic consisting of a hydrogenated form of streptomycin; used against tuberculosis and tularemia and Gram-negative organisms
+35220,dik-dik,any of several small antelopes of eastern Africa of the genus Madoqua; the size of a large rabbit
+35221,dika_bread,somewhat astringent paste prepared by grinding and heating seeds of the African wild mango; a staple food of some African peoples
+35222,dika_nut,edible oil-rich seed of wild mango
+35223,dilapidation ruin,the process of becoming dilapidated
+35224,dilatation distension distention,the state of being stretched beyond normal dimensions
+35225,dilation,a lengthy discussion (spoken or written) on a particular topic
+35226,dilation dilatation,the act of expanding an aperture; "the dilation of the pupil of the eye"
+35227,dilation_and_curettage dilatation_and_curettage D_and_C,a surgical procedure usually performed under local anesthesia in which the cervix is dilated and the endometrial lining of the uterus is scraped with a curet; performed to obtain tissue samples or to stop prolonged bleeding or to remove small tumors or to remove fragments of placenta after childbirth or as a method of abortion
+35228,dilator,a muscle or nerve that dilates or widens a body part
+35229,dilator,a drug that causes dilation
+35230,dilator dilater,a surgical instrument that is used to dilate or distend an opening or an organ
+35231,dilatoriness procrastination,slowness as a consequence of not getting around to it
+35232,dilatory_plea,a plea that delays the action without settling the cause of action; it can challenge the jurisdiction or claim disability of the defendant etc. (such defenses are usually raised in the defendant's answer)
+35233,dildo,a vibrating device that substitutes for an erect penis to provide vaginal stimulation
+35234,dilemma quandary,state of uncertainty or perplexity especially as requiring a choice between equally unfavorable options
+35235,diligence,conscientiousness in paying proper attention to a task; giving the degree of care required in a given situation
+35236,diligence industriousness industry,persevering determination to perform a task; "his diligence won him quick promotions"; "frugality and industry are still regarded as virtues"
+35237,dill Anethum_graveolens,aromatic Old World herb having aromatic threadlike foliage and seeds used as seasoning
+35238,dill dill_weed,aromatic threadlike foliage of the dill plant used as seasoning
+35239,dill_pickle,pickle preserved in brine or vinegar flavored with dill seed
+35240,dill_seed,seed of the dill plant used as seasoning
+35241,dillenia,any of several evergreen trees or shrubs of the genus Dillenia grown for their foliage and nodding flowers resembling magnolias which are followed by fruit that is used in curries and jellies and preserves
+35242,dilleniid_dicot_family,family of more or less advanced dicotyledonous trees and shrubs and herbs
+35243,dilleniid_dicot_genus,genus of more or less advanced dicotyledonous trees and shrubs and herbs
+35244,diltiazem Cardizem,a calcium blocker (trade name Cardizem) used in treating hypertension or angina or heart failure
+35245,dilutant diluent thinner,a diluting agent
+35246,dilution,a diluted solution
+35247,dilution,weakening (reducing the concentration) by the addition of water or a thinner
+35248,dim_sum,traditional Chinese cuisine; a variety of foods (including several kinds of steamed or fried dumplings) are served successively in small portions
+35249,dime,a United States coin worth one tenth of a dollar
+35250,dime_bag dime,street name for a packet of illegal drugs that is sold for ten dollars
+35251,dime_novel penny_dreadful,a melodramatic paperback novel
+35252,dimenhydrinate Dramamine,antihistamine and antiemetic (trade name Dramamine) used to treat motion sickness
+35253,dimension,one of three Cartesian coordinates that determine a position in space
+35254,dimension,the magnitude of something in a particular direction (especially length or width or height)
+35255,dimensionality,the spatial property of having dimensions; "all matter has dimensionality"
+35256,dimer,a compound whose molecules are composed of two identical monomers
+35257,dimethylglyoxime,a compound used in analysis as a precipitant for palladium or nickel
+35258,dimetrodon,carnivorous dinosaur of the Permian in North America having a crest or dorsal sail
+35259,diminution,the statement of a theme in notes of lesser duration (usually half the length of the original)
+35260,diminutive,a word that is formed with a suffix (such as -let or -kin) to indicate smallness
+35261,diminutiveness minuteness petiteness tininess weeness,the property of being very small in size; "hence the minuteness of detail in the painting"
+35262,dimity,a strong cotton fabric with a raised pattern; used for bedcovers and curtains
+35263,dimmer,a rheostat that varies the current through an electric light in order to control the level of illumination
+35264,dimness duskiness,the state of being poorly illuminated
+35265,dimness faintness,the quality of being dim or lacking contrast
+35266,dimness subduedness,the property of lights or sounds that lack brilliance or are reduced in intensity
+35267,dimorphism,(chemistry) the property of certain substances that enables them to exist in two distinct crystalline forms
+35268,dimorphism,(biology) the existence of two forms of individual within the same animal species (independent of sex differences)
+35269,dimple,any slight depression in a surface; "there are approximately 336 dimples on a golf ball"
+35270,dimple,a small natural hollow in the cheek or chin; "His dimple appeared whenever he smiled"
+35271,dimpled_chad pregnant_chad dimple,a chad that has been punched or dimpled but all four corners are still attached
+35272,dimwit nitwit half-wit doofus,a stupid incompetent person
+35273,diner,a person eating a meal (especially in a restaurant)
+35274,diner,a restaurant that resembles a dining car
+35275,dinette,a small area off of a kitchen that is used for dining
+35276,ding,a ringing sound
+35277,ding-dong,the noise made by a bell
+35278,dingbat,a silly empty-headed person; "you would be a dingbat even to try it"; "yet here he was with an upper class dingbat who just happened to be married to his sister"
+35279,dinghy dory rowboat,a small boat of shallow draft with cross thwarts for seats and rowlocks for oars with which it is propelled
+35280,dinginess dinge,discoloration due to dirtiness
+35281,dingo warrigal warragal Canis_dingo,wolflike yellowish-brown wild dog of Australia
+35282,dining,the act of eating dinner
+35283,dining-hall,a large room at a college or university; used especially for dining
+35284,dining-room_attendant restaurant_attendant,someone employed to provide service in a dining room
+35285,dining-room_furniture,furniture intended for use in a dining room
+35286,dining-room_suite dining-room_set dining_room_suite dining_room_set,a suite of furniture for the dining room
+35287,dining-room_table,dining-room furniture consisting of a table on which meals can be served
+35288,dining_area,an area arranged for dining; "they put up tents for the dining area"
+35289,dining_car diner dining_compartment buffet_car,a passenger car where food is served in transit
+35290,dining_room dining-room,a room used for dining
+35291,dining_table board,a table at which meals are served; "he helped her clear the dining table"; "a feast was spread upon the board"
+35292,dinky dinkey,a small locomotive
+35293,dinner,the main meal of the day served in the evening or at midday; "dinner will be at 8"; "on Sundays they had a large dinner when they returned from church"
+35294,dinner dinner_party,a party of people assembled to have dinner together; "guests should never be late to a dinner party"
+35295,dinner_bell,a bell rung to announce that dinner has been served
+35296,dinner_dress dinner_gown formal evening_gown,a gown for evening wear
+35297,dinner_jacket tux tuxedo black_tie,semiformal evening dress for men
+35298,dinner_napkin,a large napkin used when dinner is served
+35299,dinner_pail dinner_bucket,a pail in which a workman carries his lunch or dinner
+35300,dinner_plate,a plate from which a diner eats during the main course of a meal
+35301,dinner_service dinner_set,a table service for serving dinner
+35302,dinner_table,the dining table where dinner is served and eaten
+35303,dinner_theater dinner_theatre,a theater at which dinner is included in the price of admission
+35304,dinnertime suppertime,the customary or habitual hour for the evening meal
+35305,dinnerware,the tableware (plates and platters and serving bowls etc.) used in serving a meal
+35306,dinoceras uintathere,a variety of dinocerate
+35307,dinocerate,an extinct ungulate
+35308,dinoflagellate,chiefly marine protozoa having two flagella; a chief constituent of plankton
+35309,dinosaur,any of numerous extinct terrestrial reptiles of the Mesozoic era
+35310,dint,interchangeable with `means' in the expression `by means of'
+35311,diocesan,a bishop having jurisdiction over a diocese
+35312,diocese bishopric episcopate,the territorial jurisdiction of a bishop
+35313,diode rectifying_tube rectifying_valve,a thermionic tube having two electrodes; used as a rectifier
+35314,diode semiconductor_diode junction_rectifier crystal_rectifier,a semiconductor that consists of a p-n junction
+35315,diol glycol dihydric_alcohol,any of a class of alcohols having 2 hydroxyl groups in each molecule
+35316,dioon,any cycad of the genus Dioon; handsome palmlike cycads with robust crowns of leaves and rugged trunks
+35317,diopter dioptre,a unit of measurement of the refractive power of a lens which is equal to the reciprocal of the focal length measured in meters; used by oculists
+35318,diorite,a granular crystalline intrusive rock
+35319,dioxide,an oxide containing two atoms of oxygen in the molecule
+35320,dioxin,any of several toxic or carcinogenic hydrocarbons that occur as impurities in herbicides
+35321,dip,a depression in an otherwise level surface; "there was a dip in the road"
+35322,dip,tasty mixture or liquid into which bite-sized foods are dipped
+35323,dip,a brief immersion
+35324,dip,a candle that is made by repeated dipping in a pool of wax or tallow
+35325,dip,a gymnastic exercise on the parallel bars in which the body is lowered and raised by bending and straightening the arms
+35326,dip angle_of_dip magnetic_dip magnetic_inclination inclination,(physics) the angle that a magnetic needle makes with the plane of the horizon
+35327,dip plunge,a brief swim in water
+35328,diphenhydramine Benadryl,antihistamine (trade name Benadryl) used to treat allergic reactions involving the nasal passages (hay fever) and also to treat motion sickness
+35329,diphenylbutyl_piperidine,a group of antipsychotic drugs used mainly in the treatment of schizophrenia
+35330,diphenylhydantoin phenytoin Dilantin,an anticonvulsant drug (trade name Dilantin) used to treat epilepsy and that is not a sedative
+35331,diphtheria,acute contagious infection caused by the bacterium Corynebacterium diphtheriae; marked by the formation of a false membrane in the throat and other air passages causing difficulty in breathing
+35332,diphthong,a vowel sound that starts near the articulatory position for one vowel and moves toward the position for another
+35333,diplegia,paralysis of corresponding parts on both sides of the body
+35334,diplococcus,Gram-positive bacteria usually occurring in pairs
+35335,diplodocus,a huge quadrupedal herbivore with long neck and tail; of late Jurassic in western North America
+35336,diploic_vein vena_diploica,one of the veins serving the spongy part of the cranial bones
+35337,diploid,(genetics) an organism or cell having the normal amount of DNA per cell; i.e., two sets of chromosomes or twice the haploid number
+35338,diploidy,the condition of being diploid
+35339,diploma sheepskin,a document certifying the successful completion of a course of study
+35340,diplomacy diplomatic_negotiations,negotiation between nations
+35341,diplomat,a person who deals tactfully with others
+35342,diplomat diplomatist,an official engaged in international negotiations
+35343,diplomate,medical specialist whose competence has been certified by a diploma granted by an appropriate professional group
+35344,diplomatic_building,government building in which diplomats live or work
+35345,diplomatic_immunity,exemption from taxation or normal processes of law that is offered to diplomatic personnel in a foreign country
+35346,diplomatic_mission,a mission serving diplomatic ends
+35347,diplomatic_pouch,a mail pouch that is sealed shut and that is used to carry communications between a legation and its home office
+35348,diplomatic_service diplomatic_corps corps_diplomatique,the body of diplomatic personnel
+35349,diplopia double_vision,visual impairment in which an object is seen as two objects; "diplopia often disappears when one eye is covered"
+35350,diplotene,the fourth stage of the prophase of meiosis
+35351,dipole,a pair of equal and opposite electric charges or magnetic poles separated by a small distance
+35352,dipole dipole_antenna,an aerial half a wavelength long consisting of two rods connected to a transmission line at the center
+35353,dipole_molecule,a molecule that is a permanent dipole
+35354,dipole_moment,the moment of a dipole
+35355,dipper,a ladle that has a cup with a long handle
+35356,dipsomania alcoholism potomania,an intense persistent desire to drink alcoholic beverages to excess
+35357,dipstick,a graduated rod dipped into a container to indicate the fluid level
+35358,dipterocarp,tree of the family Dipterocarpaceae
+35359,dipterous_insect two-winged_insects dipteran dipteron,insects having usually a single pair of functional wings (anterior pair) with the posterior pair reduced to small knobbed structures and mouth parts adapted for sucking or lapping or piercing
+35360,diptych,a painting or carving (especially an altarpiece) on two panels (usually hinged like a book)
+35361,direct-grant_school,formerly a school that charged tuition fees and also received government grants in return for admitting certain non-paying students who were nominated by the local authorities
+35362,direct_action,a protest action by labor or minority groups to obtain their demands
+35363,direct_antonym,antonyms that are commonly associated (e.g., `wet' and `dry')
+35364,direct_current DC direct_electric_current,an electric current that flows in one direction steadily
+35365,direct_discourse direct_quotation,a report of the exact words used in a discourse (e.g., "he said `I am a fool'")
+35366,direct_dye substantive_dye,dye with a high affinity for cellulose fibers (cotton or rayon etc.)
+35367,direct_evidence,evidence (usually the testimony of a witness) directly related to the fact in dispute
+35368,direct_examination,(law) the initial questioning of a witness by the party that called the witness
+35369,direct_fire,fire delivered on a target that is visible to the person aiming it
+35370,direct_flight,a flight with one or more intermediate stops but no change of aircraft
+35371,direct_loan,a loan by a lender to a customer without the use of a third party; direct lending gives the lender greater discretion in making loans
+35372,direct_mail,advertising sent directly to prospective customers via the mail
+35373,direct_mailer,a distributor who uses direct mail to sell merchandise
+35374,direct_marketing,marketing via a promotion delivered directly to the individual prospective customer
+35375,direct_object object_of_the_verb,the object that receives the direct action of the verb
+35376,direct_primary,a primary where voters directly select the candidates who will run for office
+35377,direct_sum,a union of two disjoint sets in which every element is the sum of an element from each of the disjoint sets
+35378,direct_support,a mission requiring one force to support another specific force and authorizing it to answer directly the supported force's request for assistance
+35379,direct_supporting_fire,fire delivered in support of part of a force (as opposed to general supporting fire delivered in support of the force as a whole)
+35380,direct_tax,a tax paid directly by the person or organization on whom it is levied
+35381,direct_tide,the occurrence of high tide on one side of the earth coinciding with high tide on the opposite side
+35382,direct_transmission,a transmission mechanism in which the infectious agent is transferred directly into the body via touching or biting or kissing or sexual intercourse or by droplets entering the eye or nose or mouth
+35383,direct_trust express_trust,a trust created by the free and deliberate act of the parties involved (usually on the basis of written documentation)
+35384,directed_study,a course of study that is supervised and controlled by a specialist in the subject; "he registered for directed study"; "he got credit for directed study"; "he did directed study"
+35385,directed_verdict,a verdict entered by the court in a jury trial without consideration by the jury; "there cannot be a directed verdict of guilty in a criminal trial"
+35386,direction,the spatial relation between something and the course along which it points or moves; "he checked the direction and velocity of the wind"
+35387,direction,a general course along which something has a tendency to develop; "I couldn't follow the direction of his thoughts"; "his ideals determined the direction of his career"; "they proposed a new direction for the firm"
+35388,direction instruction,a message describing how something is to be done; "he gave directions faster than she could follow them"
+35389,direction way,a line leading to a place or point; "he looked the other direction"; "didn't know the way home"
+35390,direction_finder,radio; determines the direction of incoming radio waves
+35391,directional_antenna,an antenna that transmits or receives signals only in a narrow angle
+35392,directional_microphone directional_mike,a microphone that is designed to receive sound from a particular direction
+35393,directionality,the property of being directional or maintaining a direction; "the directionality of written English is from left to right"
+35394,directive,a pronouncement encouraging or banning some activity; "the boss loves to send us directives"
+35395,directivity directionality,the property of a microphone or antenna of being more sensitive in one direction than in another; "the antenna received signals with no directivity"
+35396,directivity directiveness,the quality of being directive
+35397,directness straightness,trueness of course toward a goal; "rivaling a hawk in directness of aim"
+35398,director,member of a board of directors
+35399,director manager managing_director,someone who controls resources and expenditures
+35400,director theater_director theatre_director,someone who supervises the actors and directs the action in the production of a show
+35401,director-stockholder_relation,the responsibility of corporate directors to act in the best interests of stockholders
+35402,directorate board_of_directors,a group of persons chosen to govern the affairs of a corporation or other large institution
+35403,directorship,the position of a director of a business concern
+35404,directory,(computer science) a listing of the files stored in memory (usually on a hard disk)
+35405,directory,an alphabetical list of names and addresses
+35406,dirge coronach lament requiem threnody,a song or hymn of mourning composed or performed as a memorial to a dead person
+35407,diriment_impediment,(canon law) an impediment that invalidates a marriage (such as the existence of a prior marriage)
+35408,dirk,a relatively long dagger with a straight blade
+35409,dirndl,a full skirt with a gathered waistband
+35410,dirndl,a dress with a tight bodice and full skirt
+35411,dirt filth grime soil stain grease grunge,the state of being covered with unclean things
+35412,dirt_track,a racetrack that is not paved
+35413,dirtiness,the state of containing dirty impurities
+35414,dirtiness uncleanness,the state of being unsanitary
+35415,dirty_bomb,an atom bomb that leaves considerable radioactive contamination
+35416,dirty_joke dirty_story blue_joke blue_story,an indelicate joke
+35417,dirty_linen dirty_laundry,personal matters that could be embarrassing if made public
+35418,dirty_old_man,a middle-aged man with lecherous inclinations
+35419,dirty_pool,conduct that is unfair or unethical or unsportsmanlike
+35420,dirty_trick,an unkind or aggressive trick
+35421,dirty_tricks,underhand commercial or political behavior designed to discredit an opponent
+35422,dirty_war,an offensive conducted by secret police or the military of a regime against revolutionary and terrorist insurgents and marked by the use of kidnapping and torture and murder with civilians often being the victims; "thousands of people disappeared and were killed during Argentina's dirty war in the late 1970s"
+35423,dirty_word,a word that is considered to be unmentionable; "`failure' is a dirty word to him"
+35424,disa,any orchid of the genus Disa; beautiful orchids with dark green leaves and usually hooded flowers; much prized as emblematic flowers in their native regions
+35425,disability disablement handicap impairment,the condition of being unable to perform as a consequence of physical or mental unfitness; "reading disability"; "hearing impairment"
+35426,disability_benefit,insurance benefits paid in case of disability
+35427,disability_check disability_payment,a monthly payment made to someone who has become disabled and is unable to work
+35428,disability_insurance,social insurance for the disabled
+35429,disability_of_walking,a disability that interferes with or prevents walking
+35430,disabled handicapped,people collectively who are crippled or otherwise physically handicapped; "technology to help the elderly and the disabled"
+35431,disaccharidase,an enzyme that catalyzes the hydrolysis of disaccharides into monosaccharides
+35432,disaccharide,any of a variety of carbohydrates that yield two monosaccharide molecules on complete hydrolysis
+35433,disadvantage,the quality of having an inferior or less favorable position
+35434,disaffection,disloyalty to the government or to established authority; "the widespread disaffection of the troops"
+35435,disagreeableness,the quality of being disagreeable and unpleasant
+35436,disagreeableness,an ill-tempered and offensive disposition
+35437,disagreement,the speech act of disagreeing or arguing or disputing
+35438,disagreement dissension dissonance,a conflict of people's opinions or actions or characters
+35439,disambiguation,clarification that follows from the removal of ambiguity
+35440,disambiguator,(computer science) a natural language processing application that tries to determine the intended meaning of a word or phrase by examining the linguistic context in which it is used
+35441,disappearance,ceasing to exist; "he regretted the disappearance of Greek from school curricula"; "what was responsible for the disappearance of the rainforest?"; "the disappearance of resistance at very low temperatures"
+35442,disappearance,the event of passing out of sight
+35443,disappearance disappearing,the act of leaving secretly or without explanation
+35444,disappointment dashing_hopes,an act (or failure to act) that disappoints someone
+35445,disappointment letdown,a feeling of dissatisfaction that results when your expectations are not realized; "his hopes were so high he was doomed to disappointment"
+35446,disapprobation condemnation,an expression of strong disapproval; pronouncing as wrong or morally culpable; "his uncompromising condemnation of racism"
+35447,disapproval,a feeling of disliking something or what someone is doing
+35448,disapproval,the expression of disapproval
+35449,disapproval,the act of disapproving or condemning
+35450,disarming disarmament,act of reducing or depriving of arms; "the disarmament of the aggressor nations must be complete"
+35451,disarray disorderliness,untidiness (especially of clothing and appearance)
+35452,disassociation,the state of being unconnected in memory or imagination; "I could not think of him in disassociation from his wife"
+35453,disassortative_mating,mating of individuals having traits more dissimilar than likely in random mating
+35454,disaster,an act that has disastrous consequences
+35455,disaster_area,a region whose population is affected by a general disaster
+35456,disavowal disclaimer,denial of any connection with or knowledge of
+35457,disbandment,the act of disbanding; "the orchestra faced the prospect of disbandment"
+35458,disbarment,the act of expelling a lawyer from the practice of law
+35459,discard,anything that is cast aside or discarded
+35460,discard,(cards) the act of throwing out a useless card or of failing to follow suit
+35461,discard throwing_away,getting rid something that is regarded as useless or undesirable
+35462,discernability legibility,distinctness that makes perception easy
+35463,discernment perceptiveness,perception of that which is obscure
+35464,discharge,the sudden giving off of energy
+35465,discharge emission,a substance that is emitted or released
+35466,discharge emission expelling,any of several bodily processes by which substances go out of the body; "the discharge of pus"
+35467,discharge firing firing_off,the act of discharging a gun
+35468,discharge outpouring run,the pouring forth of a fluid
+35469,discharge spark arc electric_arc electric_discharge,electrical conduction through a gas in an applied electric field
+35470,discharge venting,the act of venting
+35471,discharge_lamp,a lamp that generates light by a discharge between two electrodes in a gas
+35472,discharge_pipe,a pipe through which fluids can be discharged
+35473,discina,any fungus of the genus Discina
+35474,disciple adherent,someone who believes and helps to spread the doctrine of another
+35475,discipleship,the position of disciple
+35476,discipline,a system of rules of conduct or method of practice; "he quickly learned the discipline of prison routine"; "for such a plan to work requires discipline"
+35477,discipline,the trait of being well behaved; "he insisted on discipline among the troops"
+35478,discipline,training to improve strength or self-control
+35479,discipline correction,the act of disciplining; "the offenders deserved the harsh discipline they received"
+35480,discipline subject subject_area subject_field field field_of_study study bailiwick,a branch of knowledge; "in what discipline is his doctorate?"; "teachers should be well trained in their subject"; "anthropology is the study of human beings"
+35481,disclaimer,(law) a voluntary repudiation of a person's legal claim to something
+35482,disclosure revelation revealing,the speech act of making something evident
+35483,disco disco_music,popular dance music (especially in the late 1970s); melodic with a regular bass beat; intended mainly for dancing at discotheques
+35484,disco discotheque,a public dance hall for dancing to recorded popular music
+35485,discography,a descriptive catalog of musical recordings
+35486,discoid_lupus_erythematosus DLE,a chronic skin disease occurring primarily in women between the ages of 20 and 40; characterized by an eruption of red lesions over the cheeks and bridge of the nose
+35487,discoloration discolouration,the act of changing the natural color of something by making it duller or dingier or unnatural or faded
+35488,discomfiture discomposure disconcertion disconcertment,anxious embarrassment
+35489,discomfort soreness irritation,an uncomfortable feeling of mental painfulness or distress
+35490,discomfort uncomfortableness,the state of being tense and feeling pain
+35491,discomposure,a temperament that is perturbed and lacking in composure
+35492,discomycete cup_fungus,any fungus that is a member of the subclass Discomycetes
+35493,disconnection disjunction,the act of breaking a connection
+35494,discontentment discontent discontentedness,a longing for something better than the present situation
+35495,discontinuance discontinuation,the act of discontinuing or breaking off; an interruption (temporary or permanent)
+35496,discontinuity,lack of connection or continuity
+35497,discord discordance,strife resulting from a lack of agreement
+35498,discord dissension,disagreement among those expected to cooperate
+35499,discord strife,lack of agreement or harmony
+35500,discordance discord,a harsh mixture of sounds
+35501,discount price_reduction deduction,the act of reducing the selling price of merchandise
+35502,discount_business,the business of selling merchandise at a discount
+35503,discount_chain,a chain of discount stores
+35504,discount_house discount_store discounter wholesale_house,a sales outlet offering goods at a discounted price
+35505,discount_rate,the rate of interest set by the Federal Reserve that member banks are charged when they borrow money through the Federal Reserve System
+35506,discount_rate discount bank_discount,interest on an annual basis deducted in advance on a loan
+35507,discouragement,the expression of opposition and disapproval
+35508,discouragement,the act of discouraging; "the discouragement of petty theft"
+35509,discouragement disheartenment dismay,the feeling of despair in the face of obstacles
+35510,discourse,extended verbal expression in speech or writing
+35511,discourtesy offense offence offensive_activity,a lack of politeness; a failure to show regard for others; wounding the feelings or others
+35512,discourtesy rudeness,a manner that is rude and insulting
+35513,discovered_check,a check on the opponent's king that is delivered by moving a piece out of the line of attack by a queen or rook or bishop
+35514,discovery,(law) compulsory pretrial disclosure of documents relevant to a case; enables one side in a litigation to elicit information from the other side concerning the facts in the case
+35515,discovery,something that is discovered
+35516,discovery breakthrough find,a productive insight
+35517,discovery find uncovering,the act of discovering something
+35518,discrepancy disagreement divergence variance,a difference between conflicting facts or claims or opinions; "a growing divergence of opinion"
+35519,discrepancy variance variant,an event that departs from expectations
+35520,discreteness distinctness separateness severalty,the state of being several and distinct
+35521,discretion,freedom to act or judge on one's own
+35522,discretion discernment,the trait of judging wisely and objectively; "a man of discernment"
+35523,discretion discreetness circumspection prudence,knowing how to avoid embarrassment or distress; "the servants showed great tact and discretion"
+35524,discretionary_trust,a trust that gives the trustee discretion to pay the beneficiary as much of the trust income as the trustee believes appropriate
+35525,discrimination favoritism favouritism,unfair treatment of a person or group on the basis of prejudice
+35526,discrimination secernment,the cognitive process whereby two or more stimuli are distinguished
+35527,discriminative_stimulus cue,a stimulus that provides information about what to do
+35528,discursiveness,the quality of being discursive
+35529,discus,an athletic competition in which a disk-shaped object is thrown as far as possible
+35530,discus saucer,a disk used in throwing competitions
+35531,discussant,a participant in a formal discussion
+35532,discussion give-and-take word,an exchange of views on some topic; "we had a good discussion"; "we had a word or two about it"
+35533,discussion treatment discourse,an extended communication (often interactive) dealing with some particular topic; "the book contains an excellent discussion of modal logic"; "his treatment of the race question is badly biased"
+35534,disease,an impairment of health or a condition of abnormal functioning
+35535,disease_of_the_neuromuscular_junction,a disease characterized by impairment of neuromuscular junctions
+35536,disembarrassment,something that extricates you from embarrassment
+35537,disembowelment evisceration,the act of removing the bowels or viscera; the act of cutting so as to cause the viscera to protrude
+35538,disenchantment disillusion disillusionment,freeing from false belief or illusions
+35539,disenfranchisement,the act of withdrawing certification or terminating a franchise
+35540,disengagement fallback pullout,to break off a military action with an enemy
+35541,disentangler unraveler unraveller,a person who removes tangles; someone who takes something out of a tangled state
+35542,disequilibrium,loss of equilibrium attributable to an unstable situation in which some forces outweigh others
+35543,disestablishment,the act terminating an established state of affairs; especially ending a connection with the Church of England
+35544,disesteem,the state in which esteem has been lost
+35545,disfavor disfavour,the state of being out of favor; "he is in disfavor with the king"
+35546,disfavor disfavour dislike disapproval,an inclination to withhold approval from some person or group
+35547,disfigurement disfiguration deformity,an appearance that has been spoiled or is misshapen; "there were distinguishing disfigurements on the suspect's back"; "suffering from facial disfiguration"
+35548,disfluency,lack of skillfulness in speaking or writing
+35549,disfranchisement,the discontinuation of a franchise; especially the discontinuation of the right to vote
+35550,disgruntlement,a feeling of sulky discontent
+35551,disguise,any attire that modifies the appearance in order to conceal the wearer's identity
+35552,disguise camouflage,an outward semblance that misrepresents the true nature of something; "the theatrical notion of disguise is always associated with catastrophe in his stories"
+35553,disguise camouflage,the act of concealing the identity of something by modifying its appearance; "he is a master of disguise"
+35554,disgust,strong feelings of dislike
+35555,disgustingness distastefulness nauseatingness sickeningness unsavoriness,extreme unpalatability to the mouth
+35556,disgustingness unsavoriness,the property of being extremely unacceptable to the mind
+35557,dish,a particular item of prepared food; "she prepared a special dish for dinner"
+35558,dish,a piece of dishware normally used as a container for holding or serving food; "we gave them a set of dishes for a wedding present"
+35559,dish dish_aerial dish_antenna saucer,directional antenna consisting of a parabolic reflector for microwave or radio frequency radiation
+35560,dish dishful,the quantity that a dish will hold; "they served me a dish of rice"
+35561,dish_rack,a rack for holding dishes as dishwater drains off of them
+35562,dishabille deshabille,the state of being carelessly or partially dressed
+35563,disharmony inharmoniousness,a lack of harmony
+35564,disheartenment,a communication that leaves you disheartened or daunted
+35565,dishonesty,the quality of being dishonest
+35566,dishonesty knavery,lack of honesty; acts of lying or cheating or stealing
+35567,dishonor dishonour,a state of shame or disgrace; "he was resigned to a life of dishonor"
+35568,dishonor dishonour,lacking honor or integrity
+35569,dishonorable_discharge,a discharge from the armed forces for a grave offense (as sabotage or espionage or cowardice or murder)
+35570,dishonorableness dishonourableness,the quality of not deserving honor or respect
+35571,dishpan,large pan for washing dishes
+35572,dishrag dishcloth,a cloth for washing dishes
+35573,dishtowel dish_towel tea_towel,a towel for drying dishes
+35574,dishwasher,someone who washes dishes
+35575,dishwasher dish_washer dishwashing_machine,a machine for washing dishes
+35576,dishwasher_detergent dishwashing_detergent dishwashing_liquid,a low-sudsing detergent designed for use in dishwashers
+35577,dishwashing washup,the act of washing dishes
+35578,dishwater,water in which dishes and cooking utensils are washed
+35579,disincentive deterrence,a negative motivational influence
+35580,disinclination,that toward which you are inclined to feel dislike; "his disinclination for modesty is well known"
+35581,disinfectant germicide antimicrobic antimicrobial,an agent (as heat or radiation or a chemical) that destroys microorganisms that might carry disease
+35582,disinfection,treatment to destroy harmful microorganisms
+35583,disinfestation,the activity of getting rid of vermin
+35584,disinflation,a reduction of prices intended to improve the balance of payments
+35585,disinformation,misinformation that is deliberately disseminated in order to influence or confuse rivals (foreign enemies or business competitors etc.)
+35586,disingenuousness,the quality of being disingenuous and lacking candor
+35587,disinheritance,the act by a donor that terminates the right of a person to inherit
+35588,disintegration,a loss (or serious disruption) of organization in some system; "a disintegration of personality"
+35589,disinterest neutrality,tolerance attributable to a lack of involvement
+35590,disinterestedness,freedom from bias or from selfish motives
+35591,disinvestment,the withdrawal of capital from a country or corporation
+35592,disjointedness,lacking order or coherence
+35593,disjunction disjuncture disconnection disconnectedness,state of being disconnected
+35594,disjunctive_conjunction,the conjunctive relation of units that expresses the disjunction of their meanings
+35595,disk disc,a flat circular plate
+35596,disk disc saucer,something with a round shape resembling a flat circular plate; "the moon's disk hung in a cloudless sky"
+35597,disk_access,memory access to the computer disk on which information is stored
+35598,disk_brake disc_brake,hydraulic brake in which friction is applied to both sides of a spinning disk by the brake pads
+35599,disk_cache,a cache that stores copies of frequently used disk sectors in random access memory (RAM) so they can be read without accessing the slower disk
+35600,disk_clutch,a friction clutch in which the frictional surfaces are disks
+35601,disk_controller,(computer science) a circuit or chip that translates commands into a form that can control a hard disk drive
+35602,disk_drive disc_drive hard_drive Winchester_drive,computer hardware that holds and spins a magnetic or optical disk and reads and writes information on it
+35603,disk_error,error resulting from malfunction of a magnetic disk
+35604,disk_file,(computer science) a computer file stored on a magnetic disk and identified by a unique label
+35605,disk_harrow disc_harrow,a harrow with a series of disks set on edge at an angle
+35606,disk_jockey disc_jockey d.j. DJ,a person who announces and plays popular recorded music
+35607,disk_overhead overhead,(computer science) the disk space required for information that is not data but is used for location and timing
+35608,disk_pack disc_pack,(computer science) a portable pack of magnetic disks used in a disk storage device
+35609,disk_space disc_space,(computer science) the space available on a magnetic disk
+35610,diskette floppy floppy_disk,a small plastic magnetic disk enclosed in a stiff envelope with a radial slit; used to store data or programs for a microcomputer; "floppy disks are noted for their relatively slow speed and small capacity and low price"
+35611,dislike,a feeling of aversion or antipathy; "my dislike of him was instinctive"
+35612,dislocation,a displacement of a part (especially a bone) from its normal position (as in the shoulder or the vertebral column)
+35613,dislocation breakdown,the act of disrupting an established order so it fails to continue; "the social dislocations resulting from government policies"; "his warning came after the breakdown of talks in London"
+35614,dislocation disruption,an event that results in a displacement or discontinuity
+35615,dislodgment dislodgement,forced removal from a position of advantage
+35616,disloyalty,the quality of being disloyal
+35617,dismantling dismantlement disassembly,the act of taking something apart (as a piece of machinery); "Russia and the United States discussed the dismantling of their nuclear weapons"
+35618,dismemberment taking_apart,the removal of limbs; being cut to pieces
+35619,dismissal,permission to go; the sending away of someone
+35620,dismissal dismission discharge firing liberation release sack sacking,the termination of someone's employment (leaving them free to depart)
+35621,dismissal dismission pink_slip,official notice that you have been fired from your job
+35622,dismount,the act of dismounting (a horse or bike etc.)
+35623,disobedience,the trait of being unwilling to obey
+35624,disobedience noncompliance,the failure to obey
+35625,disorder,a disturbance of the peace or of public order
+35626,disorder upset,a physical condition in which there is a disturbance of normal functioning; "the doctor prescribed some medicine for the disorder"; "everyone gets stomach upsets from time to time"
+35627,disorderliness disorder,a condition in which things are not in their expected places; "the files are in complete disorder"
+35628,disorderly_conduct disorderly_behavior disturbance_of_the_peace breach_of_the_peace,any act of molesting, interrupting, hindering, agitating, or arousing from a state of repose or otherwise depriving inhabitants of the peace and quiet to which they are entitled
+35629,disorganization disorganisation,the disturbance of a systematic arrangement causing disorder and confusion; "the disorganization of the enemy troops by a flank attack"
+35630,disorganization disorganisation disarrangement,a condition in which an orderly system has been disrupted
+35631,disorientation,confusion (usually transient) about where you are and how to proceed; uncertainty as to direction; "his disorientation was the result of inattention"
+35632,disorientation freak_out,a wild delusion (especially one induced by a hallucinogenic drug)
+35633,disownment disowning,refusal to acknowledge as one's own
+35634,disparagement depreciation derogation,a communication that belittles somebody or something
+35635,disparagement dispraise,the act of speaking contemptuously of
+35636,disparateness distinctiveness,utter dissimilarity
+35637,disparity,inequality or difference in some respect
+35638,dispassion dispassionateness dryness,objectivity and detachment; "her manner assumed a dispassion and dryness very unlike her usual tone"
+35639,dispatch despatch,killing a person or animal
+35640,dispatch despatch communique,an official report (usually sent in haste)
+35641,dispatch despatch expedition expeditiousness,the property of being prompt and efficient; "it was done with dispatch"
+35642,dispatch despatch shipment,the act of sending off something
+35643,dispatch_case dispatch_box,case consisting of an oblong container (usually having a lock) for carrying dispatches or other valuables
+35644,dispatch_rider,a messenger who carries military dispatches (usually on a motorcycle)
+35645,dispatcher,employee of a transportation company who controls the departures of vehicles according to weather conditions and in the interest of efficient service
+35646,dispensability dispensableness,the quality possessed by something that you can get along without
+35647,dispensary,clinic where medicine and medical supplies are dispensed
+35648,dispensation,a share that has been dispensed or distributed
+35649,dispensation,an exemption from some rule or obligation
+35650,dispensation,the act of dispensing (giving out in portions)
+35651,dispenser,a person who dispenses
+35652,dispenser,a container so designed that the contents can be used in prescribed amounts
+35653,dispersed_phase dispersed_particles,(of colloids) a substance in the colloidal state
+35654,dispersing_phase dispersion_medium dispersing_medium,(of colloids) a substance in which another is colloidally dispersed
+35655,dispersion dispersal dissemination diffusion,the act of dispersing or diffusing something; "the dispersion of the troops"; "the diffusion of knowledge"
+35656,dispersion scattering,spreading widely or driving off
+35657,displaced_fracture,fracture in which the two ends of the broken bone are separated from one another
+35658,displaced_person DP stateless_person,a person forced to flee from home or country
+35659,displacement,(psychiatry) a defense mechanism that transfers affect or reaction from the original object to some more acceptable one
+35660,displacement,act of removing from office or employment
+35661,displacement deracination,to move something from its natural environment
+35662,displacement displacement_reaction,(chemistry) a reaction in which an elementary substance displaces and sets free a constituent element from a compound
+35663,display,behavior that makes your feelings public; "a display of emotion"
+35664,display,exhibiting openly in public view; "a display of courage"
+35665,display exhibit showing,something shown to the public; "the museum had many exhibits of oriental art"
+35666,display presentation,a visual representation of something
+35667,display show,something intended to communicate a particular impression; "made a display of strength"; "a show of impatience"; "a good show of looking interested"
+35668,display video_display,an electronic device that represents information in visual form
+35669,display_adapter display_adaptor,(computer science) an electronic device that converts information in memory to video output to a display
+35670,display_panel display_board board,a vertical surface on which information can be displayed to public view
+35671,display_window shop_window shopwindow show_window,a window of a store facing onto the street; used to display merchandise for sale in the store
+35672,displeasure,the feeling of being displeased or annoyed or dissatisfied with someone or something
+35673,disposable,an item that can be disposed of after it has been used
+35674,disposable_income,income (after taxes) that is available to you for saving or spending
+35675,disposal,the power to use something or someone; "used all the resources at his disposal"
+35676,disposal disposition,the act or means of getting rid of something
+35677,disposal electric_pig garbage_disposal,a kitchen appliance for disposing of garbage
+35678,disposition,a natural or acquired habit or characteristic tendency in a person or thing; "a swelling with a disposition to rupture"
+35679,disposition temperament,your usual mood; "he has a happy disposition"
+35680,disproof falsification refutation,any evidence that helps to establish the falsity of something
+35681,disproportion,lack of proportion; imbalance among the parts of something
+35682,disputant controversialist eristic,a person who disputes; who is good at or enjoys controversy
+35683,dispute contravention,coming into conflict with
+35684,dispute difference difference_of_opinion conflict,a disagreement or argument about something important; "he had a dispute with his wife"; "there were irreconcilable differences"; "the familiar conflict between Republicans and Democrats"
+35685,disqualification,unfitness that bars you from participation
+35686,disqualification,the act of preventing someone from participating by finding them unqualified
+35687,disquiet unease uneasiness,the trait of seeming ill at ease
+35688,disquisition,an elaborate analytical or explanatory essay or discussion
+35689,disregard neglect,lack of attention and due care
+35690,disregard neglect,willful lack of care and attention
+35691,disrepair,in need of repairs
+35692,disreputable_person,someone lacking public esteem
+35693,disrepute discredit,the state of being held in low esteem; "your actions will bring discredit to your name"; "because of the scandal the school has fallen into disrepute"
+35694,disrespect,a disrespectful mental attitude
+35695,disrespect discourtesy,an expression of lack of respect
+35696,disrupting_explosive bursting_explosive,a high explosive that is used to damage the target that is under attack
+35697,disruption perturbation,the act of causing disorder
+35698,dissatisfaction,the feeling of being displeased and discontent; "he was never slow to express his dissatisfaction with the service he received"
+35699,dissection,a minute and critical analysis
+35700,dissection,detailed critical analysis or examination one part at a time (as of a literary work)
+35701,dissection,cutting so as to separate into pieces
+35702,dissemination airing public_exposure spreading,the opening of a subject to widespread discussion and debate
+35703,dissemination diffusion,the property of being diffused or dispersed
+35704,dissent,(law) the difference of one judge's opinion from that of the majority; "he expressed his dissent in a contrary opinion"
+35705,dissent,a difference of opinion
+35706,dissenter dissident protester objector contestant,a person who dissents from some established policy
+35707,dissenting_opinion,an opinion that disagrees with the court's disposition of the case
+35708,dissertation thesis,a treatise advancing a new point of view resulting from research; usually a requirement for an advanced academic degree
+35709,disservice ill_service ill_turn,an act intended to help that turns out badly; "he did them a disservice"
+35710,dissidence,disagreement; especially disagreement with the government
+35711,dissilience,the emergence of seeds as seed pods burst open when they are ripe
+35712,dissimilarity unsimilarity,the quality of being dissimilar
+35713,dissimilation,a linguistic process by which one of two similar sounds in a word becomes less like the other; "the Old French MARBRE became the English MARBLE by dissimilation"
+35714,dissipation,breaking up and scattering by dispersion; "the dissipation of the mist"
+35715,dissociation,(chemistry) the temporary or reversible process in which a molecule or ion is broken down into smaller molecules or ions
+35716,dissociation,the act of removing from association
+35717,dissociation disassociation,a state in which some integrated part of a person's life becomes separated from the rest of the personality and functions independently
+35718,dissociation_constant,the equilibrium constant for a reversible dissociation
+35719,dissociative_disorder,dissociation so severe that the usually integrated functions of consciousness and perception of self break down
+35720,dissolubility solubleness,the property of being dissoluble; "he measure the dissolubility of sugar in water"
+35721,dissoluteness incontinence self-gratification,indiscipline with regard to sensuous pleasures
+35722,dissolution breakup,the termination or disintegration of a relationship (between persons or nations)
+35723,dissolution disintegration,separation into component parts
+35724,dissolution_of_marriage,an annulment of a marriage
+35725,dissolve,(film) a gradual transition from one scene to the next; the next scene is gradually superimposed as the former scene fades out
+35726,dissolving dissolution,the process of going into solution; "the dissolving of salt in water"
+35727,dissonance,disagreeable sounds
+35728,dissuasion,a communication that dissuades you
+35729,dissuasion,persuading not to do or believe something; talking someone out of a belief or an intended course of action
+35730,distaff,the sphere of work by women
+35731,distaff,the staff on which wool or flax is wound before spinning
+35732,distal_muscular_dystrophy,a form of muscular dystrophy that sets in between 40 and 60 years of age and is characterized by weakness and wasting of the muscles of the hands and forearms and lower legs; inheritance is autosomal dominant
+35733,distance,a remote point in time; "if that happens it will be at some distance in the future"; "at a distance of ten years he had forgotten many of the details"
+35734,distance,a distant region; "I could see it in the distance"
+35735,distance,the property created by the space between two objects or points
+35736,distance aloofness,indifference by personal withdrawal; "emotional distance"
+35737,distance length,size of the gap between two places; "the distance from New York to Chicago"; "he determined the length of the shortest line segment joining the two points"
+35738,distance space,the interval between two times; "the distance from birth to death"; "it all happened in the space of 10 minutes"
+35739,distance_vision,vision for objects that a 20 feet or more from the viewer
+35740,distemper,any of various infectious viral diseases of animals
+35741,distemper,paint made by mixing the pigments with water and a binder
+35742,distemper,a painting created with paint that is made by mixing the pigments with water and a binder
+35743,distemper,a method of painting in which the pigments are mixed with water and a binder; used for painting posters or murals or stage scenery
+35744,distention distension,the act of expanding by pressure from within
+35745,distillate distillation,a purified liquid produced by condensation from a vapor during distilling; the product of distilling
+35746,distillation distillment,the process of purifying a liquid by boiling it and condensing its vapors
+35747,distilled_water,water that has been purified by distillation
+35748,distiller,someone who distills alcoholic liquors
+35749,distillery still,a plant and works where alcoholic drinks are made by distillation
+35750,distinction,an honor awarded to someone in recognition of achievement or superiority; "she graduated with the highest distinction"
+35751,distinction,a distinguishing difference between similar things or people; "he learned the distinction between gold and lead"
+35752,distinctness sharpness,the quality of being sharp and clear
+35753,distorted_shape distortion,a shape resulting from distortion
+35754,distortion,a change (usually undesired) in the waveform of an acoustic or analog electrical signal; the difference between two measurements of a signal (as between the input and output signal); "heavy metal guitar players use vacuum tube amplifiers to produce extreme distortion"
+35755,distortion,the mistake of misrepresenting the facts
+35756,distortion deformation,a change for the worse
+35757,distortion overrefinement straining torture twisting,the act of distorting something so it seems to mean something it was not intended to mean
+35758,distortionist,a painter who introduces distortions
+35759,distraction,an obstacle to attention
+35760,distraction,mental turmoil; "he drives me to distraction"
+35761,distraction misdirection,the act of distracting; drawing someone's attention away from something; "conjurers are experts at misdirection"
+35762,distress,a state of adversity (danger or affliction or need); "a ship in distress"; "she was the classic maiden in distress"
+35763,distress,extreme physical pain; "the patient appeared to be in distress"
+35764,distress distraint,the seizure and holding of property as security for payment of a debt or satisfaction of a claim; "Originally distress was a landlord's remedy against a tenant for unpaid rents or property damage but now the landlord is given a landlord's lien"
+35765,distress hurt suffering,psychological suffering; "the death of his wife caused him great distress"
+35766,distress_signal distress_call,an internationally recognized signal sent out by a ship or plane indicating that help is needed
+35767,distributary,a branch of a river that flows away from the main stream and does not rejoin it
+35768,distributed_data_processing remote-access_data_processing teleprocessing,data processing in which some of the functions are performed in different places and connected by transmission facilities
+35769,distributed_fire,fire dispersed so as to engage effectively an area target
+35770,distribution,the commercial activity of transporting and selling goods from a producer to a consumer
+35771,distribution,the act of distributing or spreading or apportioning
+35772,distribution dispersion,the spatial or geographic property of being scattered about over a range, area, or volume; "worldwide in distribution"; "the distribution of nerve fibers"; "in complementary distribution"
+35773,distribution statistical_distribution,(statistics) an arrangement of values of a variable showing their observed or theoretical frequency of occurrence
+35774,distribution_agreement,a contract governing the marketing of an item of merchandise
+35775,distribution_channel channel,a way of selling a company's product either directly or via distributors; "possible distribution channels are wholesalers or small retailers or retail chains or direct mailers or your own stores"
+35776,distribution_cost,any cost incurred by a producer or wholesaler or retailer or distributor (as for advertising and shipping etc)
+35777,distribution_law,(chemistry) the total energy in an assembly of molecules is not distributed equally but is distributed around an average value according to a statistical distribution
+35778,distribution_list,list of names to whom a communication should be sent
+35779,distributive_shock,shock caused by poor distribution of the blood flow
+35780,distributor,a company that markets merchandise; "his company is a large distributor of software products"
+35781,distributor distributer,someone who markets merchandise
+35782,distributor distributer electrical_distributor,electrical device that distributes voltage to the spark plugs of a gasoline engine in the order of the firing sequence
+35783,distributor_cam,the cam inside the distributor that rotates to contact spark plug terminals in the correct order
+35784,distributor_cap,the cap of the distributor that holds in place the wires from the distributor to the spark plugs
+35785,distributor_housing,the housing that supports the distributor cam
+35786,distributor_point breaker_point point,a contact in the distributor; as the rotor turns its projecting arm contacts them and current flows to the spark plugs
+35787,district territory territorial_dominion dominion,a region marked off for administrative or other purposes
+35788,district_attorney DA,an official prosecutor for a judicial district
+35789,district_line,the boundary between two districts
+35790,district_manager,a manager who supervises the sales activity for a district
+35791,distrust distrustfulness mistrust,the trait of not trusting others
+35792,disturbance,the act of disturbing something or someone; setting something in motion
+35793,disturbance disruption commotion flutter hurly_burly to-do hoo-ha hoo-hah kerfuffle,a disorderly outburst or tumult; "they were amazed by the furious disturbance they had caused"
+35794,disturbance perturbation upset,an unhappy and worried mental state; "there was too much anger and disturbance"; "she didn't realize the upset she caused me"
+35795,disturber,a troubler who interrupts or interferes with peace and quiet; someone who causes disorder and commotion
+35796,disulfiram Antabuse,a drug (trade name Antabuse) used in the treatment of alcoholism; causes nausea and vomiting if alcohol is ingested
+35797,disunion,the termination or destruction of union
+35798,disunity,lack of unity (usually resulting from dissension)
+35799,disyllable dissyllable,a word having two syllables
+35800,dita dita_bark devil_tree Alstonia_scholaris,evergreen tree of eastern Asia and Philippines having large leathery leaves and small green-white flowers in compact cymes; bark formerly used medicinally
+35801,ditch,any small natural waterway
+35802,ditch,a long narrow excavation in the earth
+35803,ditch_digger mud_digger,a laborer who digs ditches
+35804,ditch_reed common_reed carrizo Phragmites_communis,tall North American reed having relative wide leaves and large plumelike panicles; widely distributed in moist areas; used for mats, screens and arrow shafts
+35805,ditch_spade long-handled_spade,a spade with a long handle for digging narrow ditches
+35806,dither pother fuss tizzy flap,an excited state of agitation; "he was in a dither"; "there was a terrible flap about the theft"
+35807,dithering,the process of representing intermediate colors by patterns of tiny colored dots that simulate the desired color
+35808,dithyramb,a wildly enthusiastic speech or piece of writing
+35809,dithyramb,(ancient Greece) a passionate hymn (usually in honor of Dionysus)
+35810,dittany_of_crete cretan_dittany crete_dittany hop_marjoram winter_sweet Origanum_dictamnus,dwarf aromatic shrub of Crete
+35811,ditto_mark ditto,a mark used to indicate the word above it should be repeated
+35812,ditty,a short simple song (or the words of a poem intended to be sung)
+35813,ditty_bag,kit used by sailors and soldiers
+35814,diuresis,increased secretion of urine; if not due to increased liquid intake or to the action of a diuretic drug it can be a symptom of diabetes mellitus
+35815,diuretic_drug diuretic water_pill,any substance that tends to increase the flow of urine, which causes the body to get rid of excess water
+35816,diurnal_variation,fluctuations that occur during each day
+35817,divan,a long backless sofa (usually with pillows against a wall)
+35818,divan diwan,a Muslim council of state
+35819,divan diwan,a collection of Persian or Arabic poems (usually by one author)
+35820,divan diwan,a Muslim council chamber or law court
+35821,divarication,branching at a wide angle
+35822,dive diving,a headlong plunge into water
+35823,dive nose_dive nosedive,a steep nose-down descent by an aircraft
+35824,dive-bombing,a bombing run in which the bomber releases the bomb while flying straight toward the target
+35825,dive_bomber,a bomber that releases its bombs during a steep dive toward the target
+35826,diver frogman underwater_diver,someone who works underwater
+35827,diver plunger,someone who dives (into water)
+35828,divergence divergency,an infinite series that has no limit
+35829,divergence divergency,the act of moving away in different direction from a common point; "an angle is formed by the divergence of two straight lines"
+35830,divergent_thinker,a thinker who moves away from the problem as stated and often has novel ideas and solutions
+35831,divergent_thinking out-of-the-box_thinking,thinking that moves away in diverging directions so as to involve a variety of aspects and which sometimes lead to novel ideas and solutions; associated with creativity
+35832,diverging_lens concave_lens,a lens such that a parallel beam of light passing through it is caused to diverge or spread out
+35833,diverseness diversity multifariousness variety,noticeable heterogeneity; "a diversity of possibilities"; "the range and variety of his work is amazing"
+35834,diversification,the condition of being varied; "that restaurant's menu lacks diversification; every day it is the same"
+35835,diversification variegation,the act of introducing variety (especially in investments or in the variety of goods and services offered); "my broker recommended a greater diversification of my investments"; "he limited his losses by diversification of his product line"
+35836,diversion deviation digression deflection deflexion divagation,a turning aside (of your course or attention or concern); "a diversion from the main highway"; "a digression into irrelevant details"; "a deflection from his goal"
+35837,diversion diversionary_attack,an attack calculated to draw enemy defense away from the point of the principal attack
+35838,diversion recreation,an activity that diverts or amuses or stimulates; "scuba diving is provided as a diversion for tourists"; "for recreation he wrote poetry and solved crossword puzzles"; "drug abuse is often regarded as a form of recreation"
+35839,diversionary_landing,an amphibious diversionary attack
+35840,diversity,the condition or result of being changeable
+35841,diverticulitis,inflammation of a diverticulum in the digestive tract (especially the colon); characterized by painful abdominal cramping and fever and constipation
+35842,diverticulosis,presence of multiple diverticula in the walls of the colon
+35843,diverticulum,a herniation through the muscular wall of a tubular organ (especially the colon)
+35844,divertimento serenade,a musical composition in several movements; has no fixed form
+35845,divestiture,an order to an offending party to rid itself of property; it has the purpose of depriving the defendant of the gains of wrongful behavior; "the court found divestiture to be necessary in preventing a monopoly"
+35846,divestiture,the sale by a company of a product line or a subsidiary or a division
+35847,divi-divi,twisted seed pods of the divi-divi tree; source of tannin
+35848,divi-divi Caesalpinia_coriaria,small thornless tree or shrub of tropical America whose seed pods are a source of tannin
+35849,divide,a serious disagreement between two groups of people (typically producing tension or hostility)
+35850,divided_highway dual_carriageway,a highway divided down the middle by a barrier that separates traffic going in different directions; "in Britain they call a divided highway a dual carriageway"
+35851,dividend,a number to be divided by another number
+35852,dividend,that part of the earnings of a corporation that is distributed to its shareholders; usually paid quarterly
+35853,dividend,a bonus; something extra (especially a share of a surplus)
+35854,dividend_warrant,an order of payment (such as a check payable to a shareholder) in which a dividend is paid
+35855,divider,a person who separates something into parts or groups
+35856,divider,a drafting instrument resembling a compass that is used for dividing lines into equal segments or for transferring measurements
+35857,divination,successful conjecture by unusual insight or good luck
+35858,divination foretelling soothsaying fortune_telling,the art or gift of prophecy (or the pretense of prophecy) by supernatural means
+35859,divine_guidance inspiration,(theology) a special influence of a divinity on the minds of human beings; "they believe that the books of Scripture were written under divine guidance"
+35860,divine_law,a law that is believed to come directly from God
+35861,divine_messenger,a messenger from God; "angel of death"
+35862,divine_right divine_right_of_kings,the doctrine that kings derive their right to rule directly from God and are not accountable to their subjects; rebellion is the worst of political crimes; "the doctrine of the divine right of kings was enunciated by the Stuarts in Britain in the 16th century"
+35863,diviner,someone who claims to discover hidden knowledge with the aid of supernatural powers
+35864,diving diving_event,an athletic competition that involves diving into water
+35865,diving_bell,diving apparatus for underwater work; has an open bottom and is supplied with compressed air
+35866,diving_board,a springboard from which swimmers can dive
+35867,diving_duck,any of various ducks of especially bays and estuaries that dive for their food
+35868,diving_petrel,any of several small diving birds of southern hemisphere seas; somewhat resemble auks
+35869,diving_suit diving_dress,a weighted and hermetically sealed garment supplied with air; worn by underwater divers
+35870,divining_rod dowser dowsing_rod waterfinder water_finder,forked stick that is said to dip down to indicate underground water or oil
+35871,divinity,the quality of being divine; "ancient Egyptians believed in the divinity of the Pharaohs"
+35872,divinity divinity_fudge,white creamy fudge made with egg whites
+35873,divisibility,the quality of being divisible; the capacity to be divided into parts or divided among a number of persons
+35874,division,(biology) a group of organisms forming a subdivision of a larger category
+35875,division,(botany) taxonomic unit of plants corresponding to a phylum
+35876,division,an administrative unit in government or business
+35877,division,an army unit large enough to sustain combat; "two infantry divisions were held in reserve"
+35878,division,an arithmetic operation that is the inverse of multiplication; the quotient of two numbers is computed
+35879,division,the act or process of dividing
+35880,division air_division,a unit of the United States Air Force usually comprising two or more wings
+35881,division naval_division,a group of ships of similar type
+35882,division partition partitioning segmentation sectionalization sectionalisation,the act of dividing or partitioning; separation by the creation of a boundary that divides or keeps apart
+35883,division variance,discord that splits a group
+35884,division_Archaebacteria,in some classifications considered a kingdom
+35885,division_Eubacteria,one-celled monerans having simple cells with rigid walls and (in motile types) flagella
+35886,divisor,the number by which a dividend is divided
+35887,divisor factor,one of two or more integers that can be exactly divided into another integer; "what are the 4 factors of 6?"
+35888,divorce divorcement,the legal dissolution of a marriage
+35889,divorce_court,a court having jurisdiction over the termination of marriage contracts
+35890,divorce_lawyer,a lawyer specializing in actions for divorce or annulment
+35891,divorcee grass_widow,a divorced woman or a woman who is separated from her husband
+35892,divot,(golf) the cavity left when a piece of turf is cut from the ground by the club head in making a stroke; "it was a good drive but the ball ended up in a divot"
+35893,divot,a piece of turf dug out of a lawn or fairway (by an animals hooves or a golf club)
+35894,divulgence divulgement,the act of disclosing something that was secret or private
+35895,divvy,short for dividend; especially one paid by a cooperative society
+35896,dixie,a large metal pot (12 gallon camp kettle) for cooking; used in military camps
+35897,dizziness giddiness lightheadedness vertigo,a reeling sensation; a feeling that you are about to fall
+35898,do doh ut,the syllable naming the first (tonic) note of any major scale in solmization
+35899,do-si-do,a square-dance figure; two dancers approach each other and circle back to back before returning to their original places
+35900,dobra,the basic unit of money on Sao Tome e Principe
+35901,dobson dobsonfly dobson_fly Corydalus_cornutus,large soft-bodied insect having long slender mandibles in the male; aquatic larvae often used as bait
+35902,docent,a teacher at some universities
+35903,docility,the trait of being agreeably submissive and manageable
+35904,dock,an enclosure in a court of law where the defendant sits during the trial
+35905,dock,the solid bony part of the tail of an animal as distinguished from the hair
+35906,dock dockage docking_facility,landing in a harbor next to a pier where ships are loaded and unloaded or repaired; may have gates to let water in or out; "the ship arrived at the dock more than a day late"
+35907,dock loading_dock,a platform where trucks or trains can be loaded or unloaded
+35908,dock sorrel sour_grass,any of certain coarse weedy plants with long taproots, sometimes used as table greens or in folk medicine
+35909,dockage docking_fee,a fee charged for a vessel to use a dock
+35910,docket,(law) the calendar of a court; the list of cases to be tried or a summary of the court's activities
+35911,docking moorage dockage tying_up,the act of securing an arriving vessel with ropes
+35912,dockside,the region adjacent to a boat dock
+35913,dockyard,an establishment on the waterfront where vessels are built or fitted out or repaired
+35914,docosahexaenoic_acid,an omega-3 fatty acid with 22 carbon atoms; found in fish (especially tuna and bluefish)
+35915,doctor,children take the roles of physician or patient or nurse and pretend they are at the physician's office; "the children explored each other's bodies by playing the game of doctor"
+35916,doctor Dr.,a person who holds Ph.D. degree (or the equivalent) from an academic institution; "she is a doctor of philosophy in physics"
+35917,doctor doc physician MD Dr. medico,a licensed medical practitioner; "I felt so bad I went to see my doctor"
+35918,doctor's_degree doctorate,one of the highest earned academic degrees conferred by a university
+35919,doctor-patient_relation,the responsibility of a physician to act in the best interests of the patient
+35920,doctorfish doctor-fish Acanthurus_chirurgus,surgeon fish of the West Indies
+35921,doctorspeak,medical jargon
+35922,doctrine philosophy philosophical_system school_of_thought ism,a belief (or system of beliefs) accepted as authoritative by some group or school
+35923,doctrine_of_analogy analogy,the religious belief that between creature and creator no similarity can be found so great but that the dissimilarity is always greater; any analogy between God and humans will always be inadequate
+35924,document,a written account of ownership or obligation
+35925,document,anything serving as a representation of a person's thinking by means of symbolic marks
+35926,document written_document papers,writing that provides information (especially information of an official nature)
+35927,documentary docudrama documentary_film infotainment,a film or TV program presenting the facts about a person or event
+35928,documentation certification corroboration,confirmation that some fact or statement is true through the use of documentary evidence
+35929,documentation support,documentary validation; "his documentation of the results was excellent"; "the strongest support for this view is the work of Jones"
+35930,dodder,a leafless annual parasitic vine of the genus Cuscuta having whitish or yellow filamentous stems; obtain nourishment through haustoria
+35931,dodderer,one who dodders from old age and weakness
+35932,doddle,an easy task
+35933,dodecagon,a twelve-sided polygon
+35934,dodecahedron,any polyhedron having twelve plane faces
+35935,dodge,a quick evasive movement
+35936,dodge dodging scheme,a statement that evades the question by cleverness or trickery
+35937,dodger fox slyboots,a shifty deceptive person
+35938,dodo Raphus_cucullatus,extinct heavy flightless bird of Mauritius related to pigeons
+35939,dodo fogy fogey fossil,someone whose style is out of fashion
+35940,doe,mature female of mammals of which the male is called `buck'
+35941,doeskin,soft leather from deerskin or lambskin
+35942,doeskin,a fine smooth soft woolen fabric
+35943,dog,informal term for a man; "you lucky dog"
+35944,dog domestic_dog Canis_familiaris,a member of the genus Canis (probably descended from the common wolf) that has been domesticated by man since prehistoric times; occurs in many breeds; "the dog barked all night"
+35945,dog's_breakfast dog's_dinner,a poor job; a mess; "they made a real dog's breakfast of that job"
+35946,dog's_mercury dog_mercury Mercurialis_perennis,European perennial weedy plant with greenish flowers
+35947,dog-day_cicada harvest_fly,its distinctive song is heard during July and August
+35948,dog-ear,a corner of a page turned down to mark your place
+35949,dog_biscuit,a hard biscuit for dogs
+35950,dog_bite,a bite inflicted by a dog
+35951,dog_breeding,breeding dogs
+35952,dog_catcher,an employee of a municipal pound who is hired to round up stray dogs and cats
+35953,dog_collar,a collar for a dog
+35954,dog_days canicule canicular_days,the hot period between early July and early September; a period of inactivity
+35955,dog_fennel Eupatorium_capillifolium,weedy plant of southeastern United States having divided leaves and long clusters of greenish flowers
+35956,dog_flea Ctenocephalides_canis,flea that attacks dogs and cats
+35957,dog_food,food prepared for dogs
+35958,dog_grass couch_grass quackgrass quack_grass quick_grass witch_grass witchgrass Agropyron_repens,European grass spreading rapidly by creeping rhizomes; naturalized in North America as a weed
+35959,dog_in_the_manger,someone who prevents you from enjoying something that they themselves have no need for
+35960,dog_laurel dog_hobble switch-ivy Leucothoe_fontanesiana Leucothoe_editorum,fast-growing evergreen shrub of southeastern United States having arching interlaced branches and racemes of white flowers
+35961,dog_paddle,an elementary swimming stroke imitating a swimming dog
+35962,dog_racing,a race between dogs; usually an occasion for betting on the outcome
+35963,dog_rose Rosa_canina,prickly wild rose with delicate pink or white scentless flowers; native to Europe
+35964,dog_shit dog_do doggy_do dog_turd,fecal droppings from a dog
+35965,dog_show,a competitive exhibition of dogs
+35966,dog_stinkhorn Mutinus_caninus,a stinkhorn having a stalk without a cap; the slimy gleba is simply plastered on its surface near the apex where winged insects can find it
+35967,dog_tag,military identification tag worn on a chain around the neck
+35968,dog_tag,metal plate on a dog collar bearing its registration number
+35969,dog_violet heath_violet Viola_canina,Old World leafy-stemmed blue-flowered violet
+35970,dog_wrench,a wrench with a handle shaped like a crank
+35971,dogbane,any of several poisonous perennial plants of the genus Apocynum having acrid milky juice and bell-shaped white or pink flowers and a very bitter root
+35972,dogcart,a cart drawn by a dog
+35973,doge,formerly the chief magistrate in the republics of Venice and Genoa
+35974,dogfight,a fiercely disputed contest; "their rancor dated from a political dogfight between them"; "a real dogfight for third place"; "a prolonged dogfight over their rival bids for the contract"
+35975,dogfight,an aerial engagement between fighter planes
+35976,dogfight,a violent fight between dogs (sometimes organized illegally for entertainment and gambling)
+35977,dogfighter,a fighter pilot who engages in an aerial dogfights
+35978,dogfish,any of several small sharks
+35979,doggedness perseverance persistence persistency tenacity tenaciousness pertinacity,persistent determination
+35980,doggerel doggerel_verse jingle,a comic verse of irregular measure; "he had heard some silly doggerel that kept running through his mind"
+35981,doggie_bag doggy_bag,a bag for food that a customer did not eat at a restaurant; the transparent pretense is that the food is taken home to feed the customer's dog
+35982,doghouse,an idiomatic term for being in disfavor; "in the doghouse"
+35983,dogie dogy leppy,motherless calf in a range herd of cattle
+35984,dogleg,angle that resembles the hind leg of a dog
+35985,dogleg,a golf hole with a sharp angle in the fairway
+35986,dogma,a doctrine or code of beliefs accepted as authoritative; "he believed all the Marxist dogma"
+35987,dogma tenet,a religious doctrine that is proclaimed as true without proof
+35988,dogmatist doctrinaire,a stubborn person of arbitrary or arrogant opinions
+35989,dogsbody,a worker who has to do all the unpleasant or boring jobs that no one else wants to do
+35990,dogsled dog_sled dog_sleigh,a sled pulled by dogs
+35991,dogtooth,a carved pyramidal ornament; used in 13th century England
+35992,dogtooth_violet dogtooth dog's-tooth_violet,perennial woodland spring-flowering plant; widely cultivated
+35993,dogtrot,a steady trot like that of a dog
+35994,dogwatch,either of two short watches: from 4-6 pm or 6-8 pm
+35995,dogwood,hard tough wood of any dogwood of the genus Cornus; resembles boxwood
+35996,dogwood dogwood_tree cornel,a tree of shrub of the genus Cornus often having showy bracts resembling flowers
+35997,doily doyley doyly,a small round piece of linen placed under a dish or bowl
+35998,dol,a unit of pain intensity
+35999,dolce_far_niente,carefree idleness
+36000,doldrums,a belt of calms and light winds between the northern and southern trade winds of the Atlantic and Pacific
+36001,dole,a share of money or food or clothing that has been charitably given
+36002,dole pogy pogey,money received from the state
+36003,dolefulness,sadness caused by grief or affliction
+36004,dolichocephalic,an adult with a long narrow head
+36005,dolichocephaly dolichocephalism,the quality of being dolichocephalic
+36006,doliolum,free-swimming oceanic tunicate with a barrel-shaped transparent body
+36007,doll dolly,a small replica of a person; used as a toy
+36008,dollar,the basic monetary unit in many countries; equal to 100 cents
+36009,dollar,a United States coin worth one dollar; "the dollar coin has never been popular in the United States"
+36010,dollar dollar_bill one_dollar_bill buck clam,a piece of paper money worth one dollar
+36011,dollar dollar_mark dollar_sign,a symbol of commercialism or greed; "he worships the almighty dollar"; "the dollar sign means little to him"
+36012,dollar_diplomacy,diplomacy influenced by economic considerations
+36013,dollar_mark dollar_sign,a mark ($) written before a number to indicate that it stands for the number of dollars
+36014,dollar_volume turnover,the volume measured in dollars; "the store's dollar volume continues to rise"
+36015,dollarfish Poronotus_triacanthus,small food fish of Atlantic coast
+36016,dollhouse doll's_house,a house so small that it is likened to a child's plaything
+36017,dollhouse doll's_house,a small model of a house used as a toy by children
+36018,dollop,a small measure (usually of food)
+36019,dolly,conveyance consisting of a wheeled support on which a camera can be mounted
+36020,dolly,conveyance consisting of a wheeled platform for moving heavy objects
+36021,dolman,a woman's cloak with dolman sleeves
+36022,dolman dolman_jacket,a hussar's jacket worn over the shoulders
+36023,dolman_sleeve,a sleeve with a large armhole and tight cuff
+36024,dolmas stuffed_grape_leaves,well-seasoned rice (with nuts or currants or minced lamb) simmered or braised in stock
+36025,dolmen cromlech portal_tomb,a prehistoric megalithic tomb typically having two large upright stones and a capstone
+36026,dolomite,a kind of sedimentary rock resembling marble or limestone but rich in magnesium carbonate
+36027,dolomite bitter_spar,a light colored mineral consisting of calcium magnesium carbonate; a source of magnesium; used as a ceramic and as fertilizer
+36028,dolor dolour,(poetry) painful grief
+36029,dolphin,any of various small toothed whales with a beaklike snout; larger than porpoises
+36030,dolphin_kick,a swimming kick; an up and down kick of the feet together
+36031,dolphin_oil,an unsaturated fatty oil obtained from dolphins and used as a fine lubricant
+36032,dolphin_striker martingale,spar under the bowsprit of a sailboat
+36033,dolphinfish dolphin mahimahi,large slender food and game fish widely distributed in warm seas (especially around Hawaii)
+36034,dolphinfish mahimahi,the lean flesh of a saltwater fish found in warm waters (especially in Hawaii)
+36035,domain demesne land,territory over which rule or control is exercised; "his domain extended into Europe"; "he made it the law of the land"
+36036,domain domain_of_a_function,(mathematics) the set of values of the independent variable for which a function is defined
+36037,domain_name,strings of letters and numbers (separated by periods) that are used to name organizations and computers and addresses on the internet; "domain names are organized hierarchically with the more generic parts to the right"
+36038,domatium,a part of a plant (e.g., a leaf) that has been modified to provide protection for insects or mites or fungi
+36039,dombeya,any of various shrubs or small trees of the genus Dombeya grown for their rounded clusters of exquisite often sweet-scented flowers usually hanging beneath the leaves
+36040,dome,a concave shape whose distinguishing characteristic is that the concavity faces downward
+36041,dome,a hemispherical roof
+36042,dome domed_stadium covered_stadium,a stadium that has a roof
+36043,domestic domestic_help house_servant,a servant who is paid to perform menial tasks around the household
+36044,domestic_animal domesticated_animal,any of various animals that have been tamed and made fit for a human environment
+36045,domestic_ass donkey Equus_asinus,domestic beast of burden descended from the African wild ass; patient but stubborn
+36046,domestic_carp Cyprinus_carpio,large Old World freshwater bottom-feeding fish introduced into Europe from Asia; inhabits ponds and sluggish streams and often raised for food; introduced into United States where it has become a pest
+36047,domestic_cat house_cat Felis_domesticus Felis_catus,any domesticated member of the genus Felis
+36048,domestic_flight,a flight that begins and ends in the same country
+36049,domestic_fowl fowl poultry,a domesticated gallinaceous bird thought to be descended from the red jungle fowl
+36050,domestic_goat Capra_hircus,any of various breeds of goat raised for milk or meat or wool
+36051,domestic_llama Lama_peruana,used in the Andes as a beast of burden and source of wool; considered a domesticated variety of the guanaco
+36052,domestic_partner significant_other spousal_equivalent spouse_equivalent,a person (not necessarily a spouse) with whom you cohabit and share a long-term sexual relationship
+36053,domestic_pigeon,domesticated pigeon raised for sport or food
+36054,domestic_prelate,(Roman Catholic Church) a priest who is an honorary member of the papal household
+36055,domestic_sheep Ovis_aries,any of various breeds raised for wool or edible meat or skin
+36056,domestic_silkworm_moth domesticated_silkworm_moth Bombyx_mori,stocky creamy-white Asiatic moth found almost entirely under human care; the source of most of the silk commerce
+36057,domestic_terrorism,terrorism practiced in your own country against your own people; "the 1995 bombing of a federal building in Oklahoma City was an instance of domestic terrorism"
+36058,domestic_violence,violence or physical abuse directed toward your spouse or domestic partner or other members of a household
+36059,domestication,adaptation to intimate association with human beings
+36060,domestication,accommodation to domestic life; "her explorer husband resisted all her attempts at domestication"
+36061,domesticity,the quality of being domestic or domesticated; "a royal family living in unpretentious domesticity"
+36062,domesticity,domestic activities or life; "making a hobby of domesticity"
+36063,domicile legal_residence,(law) the residence where you have your permanent home or principal establishment and to where, whenever you are absent, you intend to return; every person is compelled to have one and only one domicile at a time; "what's his legal residence?"
+36064,dominance,the organic phenomenon in which one of a pair of alleles present in a genotype is expressed in the phenotype and the other allele of the pair is not
+36065,dominance ascendance ascendence ascendancy ascendency control,the state that exists when one person or group has power over another; "her apparent dominance of her husband was really her attempt to make him pay attention to her"
+36066,dominant,(music) the fifth note of the diatonic scale
+36067,dominant_allele dominant,an allele that produces the same phenotype whether its paired allele is identical or different
+36068,dominant_gene,gene that produces the same phenotype in the organism whether or not its allele identical; "the dominant gene for brown eyes"
+36069,domination,social control by dominating
+36070,domination mastery supremacy,power to dominate or defeat; "mastery of the seas"
+36071,dominatrix,a dominating woman (especially one who plays that role in a sadomasochistic sexual relationship)
+36072,dominion rule,dominance or power through legal authority; "France held undisputed dominion over vast areas of Africa"; "the rule of Caesar"
+36073,domino,a loose hooded cloak worn with a half mask as part of a masquerade costume
+36074,domino,a small rectangular block used in playing the game of dominoes; the face of each block has two equal areas that can bear 0 to 6 dots
+36075,domino half_mask eye_mask,a mask covering the upper part of the face but with holes for the eyes
+36076,domino_effect,the consequence of one event setting off a chain of similar events (like a falling domino causing a whole row of upended dominos to fall)
+36077,domino_theory,the political theory that if one nation comes under communist control then neighboring nations will also come under communist control
+36078,dominoes dominos,any of several games played with small rectangular blocks
+36079,dominus dominie domine dominee,a clergyman; especially a settled minister or parson
+36080,domoic_acid,a neurotoxin that is deadly for humans; found in various marine algae
+36081,don father,the head of an organized crime family
+36082,don't-know,a person who responds `I don't know' in a public opinion poll; "70% in favor, 13% opposed and 17% don't-knows"
+36083,dong,the basic unit of money in Vietnam
+36084,dongle,(computer science) an electronic device that must be attached to a computer in order for it to use protected software
+36085,donkey,the symbol of the Democratic Party; introduced in cartoons by Thomas Nast in 1874
+36086,donkey_jacket,a short thick jacket; often worn by workmen
+36087,donna,an Italian woman of rank
+36088,donor,(medicine) someone who gives blood or tissue or an organ to be used in another person (the host)
+36089,donor giver presenter bestower conferrer,person who makes a gift of property
+36090,donor_card,a card that you carry on your person and that authorizes the use of your organs for transplantation after your death
+36091,doo-wop,a genre (usually a cappella) of Black vocal-harmony music of the 1950s that evolved in New York City from gospel singing; characterized by close four-part harmonies; the name derived from some of the nonsense syllables sung by the backup
+36092,doodad doohickey doojigger gimmick gizmo gismo gubbins thingamabob thingumabob thingmabob thingamajig thingumajig thingmajig thingummy whatchamacallit whatchamacallum whatsis widget,something unspecified whose name is either forgotten or not known; "she eased the ball-shaped doodad back into its socket"; "there may be some great new gizmo around the corner that you will want to use"
+36093,doodia rasp_fern,any fern of the genus Doodia having pinnate fronds with sharply dentate pinnae
+36094,doodlebug,a small motor vehicle
+36095,doodlebug ant_lion antlion,the larva of any of several insects
+36096,doom doomsday day_of_reckoning end_of_the_world,an unpleasant or disastrous destiny; "everyone was aware of the approaching doom but was helpless to avoid it"; "that's unfortunate but it isn't the end of the world"
+36097,doomed lost,people who are destined to die soon; "the agony of the doomed was in his voice"
+36098,door,anything providing a means of access (or escape); "we closed the door to Haitian immigrants"; "education is the door to success"
+36099,door,a structure where people live or work (usually ordered along a street or road); "the office next door"; "they live two doors up the street from us"
+36100,door,a room that is entered via a door; "his office is the third door down the hall on the left"
+36101,door,a swinging or sliding barrier that will close the entrance to a room or building or vehicle; "he knocked on the door"; "he slammed the door as he left"
+36102,door_prize,tickets are passed out at the entrance to a dance or party or other social function and a prize is awarded to the holder of the winning ticket
+36103,doorbell bell buzzer,a push button at an outer door that gives a ringing or buzzing signal when pushed
+36104,doorframe doorcase,the frame that supports a door
+36105,doorjamb doorpost,a jamb for a door
+36106,doorkeeper doorman door_guard hall_porter porter gatekeeper ostiary,someone who guards an entrance
+36107,doorkeeper ostiary ostiarius,the lowest of the minor Holy Orders in the unreformed Western Church but now suppressed by the Roman Catholic Church
+36108,doorknob doorhandle,a knob used to release the catch when opening a door (often called `doorhandle' in Great Britain)
+36109,doorlock,a lock on an exterior door
+36110,doormat welcome_mat,a mat placed outside an exterior door for wiping the shoes before entering
+36111,doornail,a nail with a large head; formerly used to decorate doors
+36112,doorplate,a nameplate fastened to a door; indicates the person who works or lives there
+36113,doorsill doorstep threshold,the sill of a door; a horizontal piece of wood or stone that forms the bottom of a doorway and offers support when passing through a doorway
+36114,doorstop doorstopper,a stop that keeps open doors from moving
+36115,doorway door room_access threshold,the entrance (the space in a wall) through which you enter or leave a room or building; the space that a door can close; "he stuck his head in the doorway"
+36116,dooryard,a yard outside the front or rear door of a house
+36117,dopa dihydroxyphenylalanine,amino acid that is formed in the liver and converted into dopamine in the brain
+36118,dopamine Dopastat Intropin,a monoamine neurotransmitter found in the brain and essential for the normal functioning of the central nervous system; as a drug (trade names Dopastat and Intropin) it is used to treat shock and hypotension
+36119,dope poop the_skinny low-down,slang terms for inside information; "is that the straight dope?"
+36120,dope_sheet scratch_sheet,a racing publication giving information on horses and the outcomes of horse races
+36121,doppelganger,a ghostly double of a living person that haunts its living counterpart
+36122,dorbeetle,Old World dung beetle that flies with a droning sound
+36123,dormancy quiescence quiescency,a state of quiet (but possibly temporary) inaction; "the volcano erupted after centuries of dormancy"
+36124,dormant_account,a savings account showing no activity (other than posting interest) for some specified period; "the dormant account reverted to the state under escheat laws"
+36125,dormer dormer_window,a gabled extension built out from a sloping roof to accommodate a vertical window
+36126,dormer_window,the window in a gabled extension built to accommodate a window
+36127,dormitory dorm residence_hall hall student_residence,a college or university building containing living quarters for students
+36128,dormitory dormitory_room dorm_room,a large sleeping room containing several beds
+36129,dormouse,small furry-tailed squirrel-like Old World rodent that becomes torpid in cold weather
+36130,dorsal_fin,unpaired median fin on the backs of fishes and some other aquatic vertebrates that help to maintain balance
+36131,dorsal_root dorsal_horn posterior_root posterior_horn,one of two roots of a spinal nerve that passes dorsally from the spinal cord and that consists of sensory fibers
+36132,dorsal_scapular_vein vena_scapularis_dorsalis,vein that is a tributary of the subclavian vein or external jugular vein and accompanies the descending scapular artery
+36133,dorsiflexion,the act of bending backward (of the body or a body part)
+36134,dorsum,the back of the body of a vertebrate or any analogous surface (as the upper or outer surface of an organ or appendage or part); "the dorsum of the foot"
+36135,dory,marine fishes widely distributed in mid-waters and deep slope waters
+36136,dose dosage,the quantity of an active agent (substance or radiation) taken in or absorbed at any one time
+36137,dose dosage,a measured portion of medicine taken at any one time
+36138,dose_rate,the quantity of radiation absorbed per unit time
+36139,dosemeter dosimeter,a measuring instrument for measuring doses of ionizing radiation (X-rays or radioactivity)
+36140,dosimetry,measuring the dose of radiation emitted by a radioactive source
+36141,dossal dossel,an ornamental hanging of rich fabric hung behind the altar of a church or at the sides of a chancel
+36142,dosser street_person,someone who sleeps in any convenient place
+36143,dossier,a collection of papers containing detailed information about a particular person or subject (usually a person's record)
+36144,dot dit,the shorter of the two telegraphic signals used in Morse code
+36145,dot-com dot_com dot_com_company,a company that operates its business primarily on the internet using a URL that ends in `.com'
+36146,dot_matrix,a rectangular matrix of dots from which written characters can be formed
+36147,dot_matrix_printer matrix_printer dot_printer,a printer that represents each character as a pattern of dots from a dot matrix
+36148,dotage second_childhood senility,mental infirmity as a consequence of old age; sometimes shown by foolish infatuations
+36149,dotard,an oldster in his dotage; someone whose age has impaired his intellect
+36150,dotted_gayfeather Liatris_punctata,herb with many stems bearing narrow slender wands of crowded rose-lavender flowers; central United States and Canada to Texas and northern Mexico
+36151,dotted_line,a line made up of dots or dashes; often used to indicate where you are supposed to sign a contract; "just sign on the dotted line"
+36152,dotterel dotrel Charadrius_morinellus Eudromias_morinellus,rare plover of upland areas of Eurasia
+36153,dottle,the residue of partially burnt tobacco left caked in the bowl of a pipe after smoking
+36154,double,a quantity that is twice as great as another; "36 is the double of 18"
+36155,double image look-alike,someone who closely resembles a famous person (especially an actor); "he could be Gingrich's double"; "she's the very image of her mother"
+36156,double stunt_man stunt_woman,a stand-in for movie stars to perform dangerous stunts; "his first job in Hollywood was as a double for Clark Gable"
+36157,double two-base_hit two-bagger two-baser,a base hit on which the batter stops safely at second base; "he hit a double to deep centerfield"
+36158,double-bitted_ax double-bitted_axe Western_ax Western_axe,an ax that has cutting edges on both sides of the head
+36159,double-blind_procedure double-blind_experiment double-blind_study,an experimental procedure in which neither the subjects of the experiment nor the persons administering the experiment know the critical aspects of the experiment; "a double-blind procedure is used to guard against both experimenter bias and placebo effects"
+36160,double-bogey,(golf) a score of two strokes over par for a hole
+36161,double-breasted_jacket,a jacket having fronts that overlap enough for two separate rows of buttons
+36162,double-breasted_suit,a suit with a double-breasted jacket
+36163,double-crosser double-dealer two-timer betrayer traitor,a person who says one thing and does another
+36164,double-hung_window,a window having two sashes that slide up and down
+36165,double-prop double-propeller_plane twin-prop twin-propeller-plane,a propeller plane with an engine that drives two propellers in opposite directions (for stability)
+36166,double-reed_instrument double_reed,a woodwind that has a pair of joined reeds that vibrate together
+36167,double-spacing,typing that leaves alternate lines blank
+36168,double_Dutch,an incomprehensible talk
+36169,double_Dutch,the difficult version of jump rope in which players jump over two ropes that are swung in a crisscross manner by two turners
+36170,double_Gloucester,a smooth firm mild orange-red cheese
+36171,double_agent,a spy who works for two mutually antagonistic countries
+36172,double_bar,notation marking the end of principal parts of a musical composition; two adjacent bar lines
+36173,double_bed,a bed wide enough to accommodate two sleepers
+36174,double_bind,(psychology) an unresolvable dilemma; situation in which a person receives contradictory messages from a person who is very powerful
+36175,double_blind,a test procedure in which the identity of those receiving the intervention is concealed from both the administrators and the subjects until after the test is completed; designed to reduce or eliminate bias in the results
+36176,double_boiler double_saucepan,two saucepans, one fitting inside the other
+36177,double_bond,a covalent bond in which two pairs of electrons are shared between two atoms
+36178,double_chin buccula,a fold of fatty tissue under the chin
+36179,double_clinch,a clinch with two loops
+36180,double_cream,fresh soft French cheese containing at least 60% fat
+36181,double_creme heavy_whipping_cream,cream with a fat content of 48% or more
+36182,double_crochet double_stitch,a kind of crochet stitch
+36183,double_cross double-crossing,an act of betrayal; "he gave us the old double cross"; "I could no longer tolerate his impudent double-crossing"
+36184,double_dagger double_obelisk diesis,a character used in printing to indicate a cross reference or footnote
+36185,double_damages,twice the amount that a court would normally find the injured party entitled to
+36186,double_date,a date in which two couples participate
+36187,double_decomposition double_decomposition_reaction metathesis,a chemical reaction between two compounds in which parts of each are interchanged to form two new compounds (AB+CD=AD+CB)
+36188,double_digit,a two-digit integer; from 10 to 99
+36189,double_dipper,someone who draws two incomes from the government (usually by combining a salary and a pension)
+36190,double_dipping,two incomes received from the same source (as by holding a government job and receiving a government pension)
+36191,double_door,two vertical doors that meet in the middle of the door frame when closed
+36192,double_dribble,an illegal dribble in basketball (the player uses both hands to dribble or the player starts to dribble a second time after coming to a stop)
+36193,double_eagle,(golf) a score of three strokes under par on a hole
+36194,double_eagle,a former gold coin in the United States worth 20 dollars
+36195,double_entendre,an ambiguity with one interpretation that is indelicate
+36196,double_entry double-entry_bookkeeping,bookkeeper debits the transaction to one account and credits it to another
+36197,double_fault,(tennis) two successive faults in serving resulting in the loss of the point
+36198,double_first,a first-class honours degree in two subjects
+36199,double_flat,a musical notation of two flats in front of a note indicating that it is to be lowered by two semitones
+36200,double_glazing,a window with two panes of glass and a space between them; reduces heat and noise transmission through the window
+36201,double_helix,a pair of parallel helices intertwined about a common axis; "the shape of the DNA molecule is a double helix"
+36202,double_indemnity,a clause in an insurance policy that provides for double the face value of the policy in the case of accidental death
+36203,double_jeopardy,the prosecution of a defendant for a criminal offense for which he has already been tried; prohibited in the fifth amendment to the United States Constitution
+36204,double_knit,a knit fabric similar to jersey that is made with two sets of needles producing a double thickness joined by interlocking stitches
+36205,double_leg_circle,a gymnastic exercise performed on the pommel horse when the gymnast (with legs together) swings his legs in a circle while alternating hands on the pommels
+36206,double_negative,an affirmative constructed from two negatives; "A not unwelcome outcome"
+36207,double_negative,a grammatically substandard but emphatic negative; "I don't never go"
+36208,double_play,the act of getting two players out on one play
+36209,double_pneumonia,lobar pneumonia involving both lungs
+36210,double_quotes,a pair of quotation marks
+36211,double_reed,a pair of joined reeds that vibrate together to produce the sound in some woodwinds
+36212,double_refraction birefringence,splitting a ray into two parallel rays polarized perpendicularly
+36213,double_replacement_reaction,a chemical reaction between two compounds where the positive ion of one compound is exchanged with the positive ion of another compound
+36214,double_reverse,(American football) a running play in which a first reverse is followed by a second reverse
+36215,double_rhyme,a two-syllable rhyme; "`ended' and `blended' form a double rhyme"
+36216,double_salt,a solution of two simple salts that forms a single substance on crystallization
+36217,double_sharp,a musical notation of two sharps in front of a note indicating that it is to be raised by two semitones
+36218,double_standard,an ethical or moral code that applies more strictly to one group than to another
+36219,double_standard_of_sexual_behavior,a code that permits greater sexual freedom for men than for women (associated with the subordination of women)
+36220,double_stopping,stopping two strings and producing two notes at the same time
+36221,double_take,a delayed reaction indicating surprise
+36222,double_talk,deliberately unintelligible gibberish
+36223,double_time,a fast marching pace (180 steps/min) or slow jog
+36224,double_time,a doubled wage (for working overtime)
+36225,doubler,an electronic device that doubles the voltage or the frequency of an input signal
+36226,doubles,badminton played with two players on each side
+36227,doubles,tennis played with two players on each side
+36228,doublespeak,any language that pretends to communicate but actually does not
+36229,doublet,a man's close-fitting jacket; worn during the Renaissance
+36230,doublethink,believing two contradictory ideas at the same time
+36231,doubleton,(bridge) a pair of playing cards that are the only cards in their suit in the hand dealt to a player
+36232,doubletree,a crossbar on a wagon or carriage to which two whiffletrees are attached in order to harness two horses abreast
+36233,doubling,increase by a factor of two; "doubling with a computer took no time at all"
+36234,doubling double,raising the stakes in a card game by a factor of 2; "I decided his double was a bluff"
+36235,doubloon,a former Spanish gold coin
+36236,doubly_transitive_verb doubly_transitive_verb_form,a transitive verb that takes both a direct and an indirect object
+36237,doubt dubiousness doubtfulness question,uncertainty about the truth or factuality or existence of something; "the dubiousness of his claim"; "there is no question about the validity of the enterprise"
+36238,doubt uncertainty incertitude dubiety doubtfulness dubiousness,the state of being unsure of something
+36239,doubting_Thomas,someone who demands physical evidence in order to be convinced (especially when this demand is out of place)
+36240,douche,irrigation with a jet of water or medicated solution into or around a body part (especially the vagina) to treat infections or cleanse from odorous contents
+36241,douche douche_bag,a small syringe with detachable nozzles; used for vaginal lavage and enemas
+36242,dough,a flour mixture stiff enough to knead or roll
+36243,doughboy,an American infantryman in World War I
+36244,doughboy,a rounded lump of dough that is deep-fried and served as hot bread; "the doughboy was a predecessor of the doughnut"
+36245,doughnut donut sinker,a small ring-shaped friedcake
+36246,douglas_fir,strong durable timber of a douglas fir
+36247,douglas_fir,tall evergreen timber tree of western North America having resinous wood and short needles
+36248,douroucouli Aotus_trivirgatus,nocturnal monkey of Central America and South America with large eyes and thick fur
+36249,dove,an emblem of peace
+36250,dove,any of numerous small pigeons
+36251,dove peacenik,someone who prefers negotiations to armed conflict in the conduct of foreign relations
+36252,dove's_foot_geranium Geranium_molle,western geranium with small pink flowers; a common weed on lawns and in vacant lots
+36253,dovecote columbarium columbary,a birdhouse for pigeons
+36254,dovetail dovetail_joint,a mortise joint formed by interlocking tenons and mortises
+36255,dovetail_plane,a woodworking plane designed to make the grooves for dovetail joints
+36256,dovishness,any political orientation favoring compromise to avoid conflict
+36257,dowager,a widow holding property received from her deceased husband
+36258,dowager's_hump,abnormal spinal curvature that results when osteoporosis causes the spine to collapse; seen most often in elderly women
+36259,dowdiness drabness homeliness,having a drab or dowdy quality; lacking stylishness or elegance
+36260,dowdy pandowdy,deep-dish apple dessert covered with a rich crust
+36261,dowel dowel_pin joggle,a fastener that is inserted into holes in two adjacent pieces and holds them together
+36262,doweling,fastening by dowels
+36263,dower,a life estate to which a wife is entitled on the death of her husband
+36264,dowitcher,shorebird of the sandpiper family that resembles a snipe
+36265,down,(usually plural) a rolling treeless highland with little soil
+36266,down,(American football) a complete play to advance the football; "you have four downs to gain ten yards"
+36267,down down_feather,soft fine feathers
+36268,down pile,fine soft dense hair (as the fine short hair of cattle or deer or the wool of sheep or the undercoat of certain dogs)
+36269,down-and-out,a person who is destitute; "he tried to help the down-and-out"
+36270,down-bow,a downward stroke from the heel to the tip of the bow
+36271,down_payment deposit,a partial payment made at the time of purchase; the balance to be paid later
+36272,down_quark,a stable quark with an electric charge of -1/3 and a mass 607 times that of an electron
+36273,downbeat,the first beat of a musical measure (as the conductor's arm moves downward)
+36274,downcast,a ventilation shaft through which air enters a mine
+36275,downdraft,a strong downward air current
+36276,downfall ruin ruination,failure that results in a loss of position or reputation
+36277,downgrade,the property possessed by a slope or surface that descends
+36278,downheartedness dejectedness low-spiritedness lowness dispiritedness,a feeling of low spirits; "he felt responsible for her lowness of spirits"
+36279,downhill,the downward slope of a hill
+36280,downhill,a ski race down a trail
+36281,downiness featheriness fluffiness,a light softness
+36282,downpour cloudburst deluge waterspout torrent pelter soaker,a heavy rain
+36283,downrightness straightforwardness,the quality of being direct and straightforward; "what some people take for rudeness is really straightforwardness"
+36284,downshift,a change from a financially rewarding but stressful career to a less well paid but more fulfilling one
+36285,downshift,a change to a lower gear in a car or bicycle
+36286,downside,a negative aspect of something that is generally positive; "there is a downside even to motherhood"
+36287,downspin,a swift and dangerous downturn
+36288,downstage,the front half of the stage (as seen from the audience)
+36289,downstroke,a stroke normally made in a downward direction
+36290,downswing,a swing downward of a golf club
+36291,downtick,a transaction in the stock market at a price below the price of the preceding transaction
+36292,downtime,a period of time when something (as a machine or factory) is not operating (especially as a result of malfunctions)
+36293,downturn downswing,a worsening of business or economic activity; "the market took a downturn"
+36294,downy_birch white_birch Betula_pubescens,European birch with dull white to pale brown bark and somewhat drooping hairy branches
+36295,downy_brome downy_bromegrass downy_cheat downy_chess cheatgrass drooping_brome Bromus_tectorum,annual or winter annual grass with softly hairy leaves of the Mediterranean
+36296,downy_ground_cherry strawberry_tomato Physalis_pubescens,decorative American annual having round fleshy yellow berries enclosed in a bladderlike husk
+36297,downy_manzanita woolly_manzanita Arctostaphylos_tomentosa,erect openly branched California shrub whose twigs are woolly when young
+36298,downy_mildew false_mildew,any of various fungi of the family Peronosporaceae parasitic on e.g. grapes and potatoes and melons
+36299,downy_wood_mint Blephilia_celiata,a variety of wood mint
+36300,downy_woodpecker,small North American woodpecker with black and white plumage and a small bill
+36301,downy_yellow_violet Viola_pubescens,violet of eastern North America having softly pubescent leaves and stems and clear yellow flowers with brown-purple veins
+36302,dowry dowery dower portion,money or property brought by a woman to her husband at marriage
+36303,dowse dowsing rhabdomancy,searching for underground water or minerals by using a dowsing rod
+36304,doxastic_logic,the modal logic of belief and disbelief
+36305,doxazosin Cardura,an antihypertensive drug (trade name Cardura) that works by relaxing blood vessels so that blood passes through them more easily; it is also used to treat benign prostatic hyperplasia
+36306,doxepin doxepin_hydrochloride Adapin Sinequan,a tricyclic antidepressant (trade names Adapin and Sinequan) with numerous side effects (dry mouth and sedation and gastrointestinal disturbances)
+36307,doxology,a hymn or verse in Christian liturgy glorifying God
+36308,doxorubicin,an antibiotic used as an anticancer drug
+36309,doxycycline Vibramycin,an antibiotic derived from tetracycline that is effective against many infections; "Vibramycin is the trade name of doxycycline"
+36310,doyenne,a woman who is the senior member of a group
+36311,doze drowse,a light fitful sleep
+36312,draba,any of numerous low-growing cushion-forming plants of the genus Draba having rosette-forming leaves and terminal racemes of small flowers with scapose or leafy stems; fruit is a dehiscent oblong or linear silique
+36313,dracaena,an agave that is often cultivated for its decorative foliage
+36314,drachma Greek_drachma,formerly the basic unit of money in Greece
+36315,dracontium,any plant of the genus Dracontium; strongly malodorous tropical American plants usually with gigantic leaves
+36316,draft,a regulator for controlling the flow of air in a fireplace
+36317,draft bill_of_exchange order_of_payment,a document ordering the payment of money; drawn by one person or bank on another
+36318,draft draft_copy,any of the various versions in the development of a written work; "a preliminary draft"; "the final draft of the constitution"
+36319,draft draught,a current of air (usually coming into a chimney or room or vehicle)
+36320,draft draught,the depth of a vessel's keel below the surface (especially when loaded)
+36321,draft draught,a dose of liquid medicine; "he took a sleeping draft"
+36322,draft draught drawing,the act of moving a load by drawing or pulling
+36323,draft draught potation tipple,a serving of drink (usually alcoholic) drawn from a keg; "they served beer on draft"
+36324,draft rough_drawing,a preliminary sketch of a design or picture
+36325,draft_animal,an animal used for pulling heavy loads
+36326,draft_beer draught_beer,beer drawn from a keg
+36327,draft_board,a board to select personnel for involuntary military service
+36328,draft_dodger draft_evader,someone who is drafted and illegally refuses to serve
+36329,draft_horse draught_horse dray_horse,horse adapted for drawing heavy loads
+36330,draftee conscript inductee,someone who is drafted into military service
+36331,drafter,a writer of a draft
+36332,drafting,writing a first version to be filled out and polished later
+36333,drafting mechanical_drawing,the craft of drawing blueprints
+36334,drafting_board drawing_board,a smooth board on which paper is placed for making drawings
+36335,drafting_instrument,an instrument used by a draftsman in making drawings
+36336,drafting_table drawing_table,a worktable with adjustable top
+36337,draftsman draughtsman draftsperson,a skilled worker who draws plans of buildings or machines
+36338,draftsman drawer,an artist skilled at drawing
+36339,drag,something that slows or delays progress; "taxation is a drag on the economy"; "too many laws are a drag on the use of new land"
+36340,drag,something tedious and boring; "peeling potatoes is a drag"
+36341,drag,clothing that is conventionally worn by the opposite sex (especially women's clothing when worn by a man); "he went to the party dressed in drag"; "the waitresses looked like missionaries in drag"
+36342,drag,the act of dragging (pulling with force); "the drag up the hill exhausted him"
+36343,drag retarding_force,the phenomenon of resistance to motion through a fluid
+36344,drag_coefficient coefficient_of_drag,the ratio of the drag on a body moving through air to the product of the velocity and the surface area of the body
+36345,dragee,silvery candy beads used for decorating cakes
+36346,dragee,sugar-coated nut or fruit piece
+36347,dragee,pill that is a sugar-coated medicated candy
+36348,dragnet,a system of coordinated measures for apprehending (criminals or other individuals); "caught in the police dragnet"
+36349,dragoman,an interpreter and guide in the Near East; in the Ottoman Empire in the 18th and 19th centuries a translator of European languages for the Turkish and Arab authorities and most dragomans were Greek (many reached high positions in the government)
+36350,dragon firedrake,a creature of Teutonic mythology; usually represented as breathing fire and having a reptilian body and sometimes wings
+36351,dragon flying_dragon flying_lizard,any of several small tropical Asian lizards capable of gliding by spreading winglike membranes on each side of the body
+36352,dragon tartar,a fiercely vigilant and unpleasant woman
+36353,dragon's_blood,a dark red resinous substance derived from various trees and used in photoengraving
+36354,dragon_arum green_dragon Dracunculus_vulgaris,European arum resembling the cuckoopint
+36355,dragon_tree Dracaena_draco,tall tree of the Canary Islands; source of dragon's blood
+36356,dragonet,small often brightly colored scaleless marine bottom-dwellers; found in tropical and warm temperate waters of Europe and America
+36357,dragonfly darning_needle devil's_darning_needle sewing_needle snake_feeder snake_doctor mosquito_hawk skeeter_hawk,slender-bodied non-stinging insect having iridescent wings that are outspread at rest; adults and nymphs feed on mosquitoes etc.
+36358,dragonhead dragon's_head Dracocephalum_parviflorum,American herb having sharply serrate lanceolate leaves and spikes of blue to violet flowers
+36359,dragoon,a member of a European military unit formerly composed of heavily armed cavalrymen
+36360,drain,tube inserted into a body cavity (as during surgery) to remove unwanted material
+36361,drain,a gradual depletion of energy or resources; "a drain on resources"; "a drain of young talent by emigration"
+36362,drain drainage,emptying something accomplished by allowing liquid to run out of it
+36363,drain drainpipe waste_pipe,a pipe through which liquid is carried away
+36364,drain_basket,a filter in a sink drain; traps debris but passes water
+36365,drainage_ditch,a ditch for carrying off excess water or sewage
+36366,drainage_system,a system of watercourses or drains for carrying off excess water
+36367,drainboard draining_board,a board beside a kitchen sink and inclined to drain into the sink
+36368,drainplug,a removable plug for holding water in a tub or basin
+36369,drake,adult male of a wild or domestic duck
+36370,dram,1/16 ounce or 1.771 grams
+36371,dram,the basic unit of money in Armenia
+36372,dram drachm drachma,a unit of apothecary weight equal to an eighth of an ounce or to 60 grains
+36373,drama,the literary genre of works intended for the theater
+36374,drama,the quality of being arresting or highly emotional
+36375,drama dramatic_event,an episode that is turbulent or highly emotional
+36376,drama_critic theater_critic,a critic of theatrical performances
+36377,dramatic_composition dramatic_work,a play for performance on the stage or television or in a movie etc.
+36378,dramatic_irony,(theater) irony that occurs when the meaning of the situation is understood by the audience but not by the characters in the play
+36379,dramatic_production dramatic_performance,the act of performing a drama; "the group joined together in a dramatic production"
+36380,dramatics,participation in theatrical productions as an extracurricular activity
+36381,dramatist playwright,someone who writes plays
+36382,dramatization dramatisation,conversion into dramatic form; "the play was a dramatization of a short story"
+36383,dramatization dramatisation,a dramatic representation
+36384,dramaturgy dramatic_art dramatics theater theatre,the art of writing and producing plays
+36385,drape,the manner in which fabric hangs or falls; "she adjusted the drape of her skirt"
+36386,drape,a sterile covering arranged over a patient's body during a medical examination or during surgery in order to reduce the possibility of contamination
+36387,draper,a dealer in fabrics and sewing materials (and sometimes in clothing and drygoods)
+36388,drapery,cloth gracefully draped and arranged in loose folds
+36389,draw,a gully that is shallower than a ravine
+36390,draw,a playing card or cards dealt or taken from the pack; "he got a pair of kings in the draw"
+36391,draw draw_play,(American football) the quarterback moves back as if to pass and then hands the ball to the fullback who is running toward the line of scrimmage
+36392,draw draw_poker,poker in which a player can discard cards and receive substitutes from the dealer; "he played only draw and stud"
+36393,draw haul haulage,the act of drawing or hauling something; "the haul up the hill went very slowly"
+36394,draw lot,anything (straws or pebbles etc.) taken or chosen at random; "the luck of the draw"; "they drew lots for it"
+36395,draw standoff tie,the finish of a contest in which the score is tied and the winner is undecided; "the game ended in a draw"; "their record was 3 wins, 6 losses and a tie"
+36396,drawback,the quality of being a hindrance; "he pointed out all the drawbacks to my plan"
+36397,drawbar,a strong metal bar bearing a hook to attach something to be pulled
+36398,drawbridge lift_bridge,a bridge that can be raised to block passage or to allow boats or ships to pass beneath it
+36399,drawee,the person (or bank) who is expected to pay a check or draft when it is presented for payment
+36400,drawer,the person who writes a check or draft instructing the drawee to pay someone else
+36401,drawer,a boxlike container in a piece of furniture; made so as to slide in and out
+36402,drawers underdrawers shorts boxers boxershorts,underpants worn by men
+36403,drawing,an illustration that is drawn by hand and published in a book, magazine, or newspaper; "it is shown by the drawing in Fig. 7"
+36404,drawing,a representation of forms or objects on a surface by means of lines; "drawings of abstract forms"; "he did complicated pen-and-ink drawings like medieval miniatures"
+36405,drawing draftsmanship drafting,the creation of artistic pictures or diagrams; "he learned drawing from his father"
+36406,drawing drawing_off,act of getting or draining something such as electricity or a liquid from a source; "the drawing of water from the well"
+36407,drawing_card draw attraction attractor attracter,an entertainer who attracts large audiences; "he was the biggest drawing card they had"
+36408,drawing_card loss_leader leader,a featured article of merchandise sold at a loss in order to draw customers
+36409,drawing_chalk,colored chalks used by artists
+36410,drawing_paper,paper that is specially prepared for use in drafting
+36411,drawing_power,the capacity for attracting people (customers or supporters)
+36412,drawing_room,a private compartment on a sleeping car with three bunks and a toilet
+36413,drawing_room withdrawing_room,a formal room where visitors can be received and entertained
+36414,drawknife drawshave,a woodworker's knife to shave surfaces
+36415,drawl,a slow speech pattern with prolonged vowels
+36416,drawler,someone who speaks with a drawl
+36417,drawnwork,ornamental needlework done by drawing threads to form lacelike patterns
+36418,drawstring drawing_string string,a tie consisting of a cord that goes through a seam around an opening; "he pulled the drawstring and closed the bag"
+36419,drawstring_bag,a bag that is closed at the top with a drawstring
+36420,dray camion,a low heavy horse cart without sides; used for haulage
+36421,dreadlock,one of many long thin braids of hair radiating from the scalp; popularized by Rastafarians
+36422,dreadnought dreadnaught,battleship that has big guns all of the same caliber
+36423,dream,someone or something wonderful; "this dessert is a dream"
+36424,dream,a state of mind characterized by abstraction and release from reality; "he went about his work as if in a dream"
+36425,dream dreaming,imaginative thoughts indulged in while awake; "he lives in a dream that has nothing to do with reality"
+36426,dream dreaming,a series of mental images and emotions occurring during sleep; "I had a dream about you last night"
+36427,dreamer,someone who is dreaming
+36428,dredge,a power shovel to remove material from a channel or riverbed
+36429,dredger,a barge (or a vessel resembling a barge) that is used for dredging
+36430,dredging_bucket,a bucket for lifting material from a channel or riverbed
+36431,dreg,a small amount of residue
+36432,dregs settlings,sediment that has settled at the bottom of a liquid
+36433,drenching soaking souse sousing,the act of making something completely wet; "he gave it a good drenching"
+36434,dress frock,a one-piece garment for a woman; has skirt and bodice
+36435,dress_blues dress_whites,a dress uniform for formal occasions
+36436,dress_code,a set of rules specifying the correct manner of dress while on the premises of the institution (or specifying what manner of dress is prohibited)
+36437,dress_hat high_hat opera_hat silk_hat stovepipe top_hat topper beaver,a man's hat with a tall crown; usually covered with silk or with beaver fur
+36438,dress_rack,a rack used primarily to display dresses for sale in a store
+36439,dress_rehearsal,a full uninterrupted rehearsal in costumes shortly before the first performance
+36440,dress_shirt evening_shirt,a man's white shirt (with a starch front) for evening wear (usually with a tuxedo)
+36441,dress_suit full_dress tailcoat tail_coat tails white_tie white_tie_and_tails,formalwear consisting of full evening dress for men
+36442,dress_uniform,a military uniform worn on formal occasions
+36443,dressage,maneuvers of a horse in response to body signals by the rider
+36444,dressed_ore concentrate,the desired mineral that is left after impurities have been removed from mined ore
+36445,dresser,a person who dresses in a particular way; "she's an elegant dresser"; "he's a meticulous dresser"
+36446,dresser,a cabinet with shelves
+36447,dresser actor's_assistant,a wardrobe assistant for an actor
+36448,dressing,processes in the conversion of rough hides into leather
+36449,dressing bandaging binding,the act of applying a bandage
+36450,dressing grooming,the activity of getting dressed; putting on clothes
+36451,dressing medical_dressing,a cloth covering for a wound or sore
+36452,dressing salad_dressing,savory dressings for salads; basically of two kinds: either the thin French or vinaigrette type or the creamy mayonnaise type
+36453,dressing_case,a small piece of luggage for carrying brushes and bottles and toilet articles while traveling
+36454,dressing_gown robe-de-chambre lounging_robe,a robe worn before dressing or while lounging
+36455,dressing_room,a room in which you can change clothes
+36456,dressing_sack dressing_sacque,a woman's loose jacket; worn while dressing
+36457,dressing_station aid_station,(military) a station located near a combat area for giving first aid to the wounded
+36458,dressing_table dresser vanity toilet_table,low table with mirror or mirrors where one sits while dressing or applying makeup
+36459,dressmaker modiste needlewoman seamstress sempstress,someone who makes or mends dresses
+36460,dressmaker's_model,someone who models dresses
+36461,dressmaking,the craft of making dresses
+36462,drey,the nest of a squirrel
+36463,dribble dribbling,the propulsion of a ball by repeated taps or kicks
+36464,dribbler,a basketball player who is dribbling the ball to advance it
+36465,dribbler driveller slobberer drooler,a person who dribbles; "that baby is a dribbler; he needs a bib"
+36466,dried_apricot,apricots preserved by drying
+36467,dried_fruit,fruit preserved by drying
+36468,drift,a process of linguistic change over a period of time
+36469,drift,the gradual departure from an intended course due to external influences (as a ship or plane)
+36470,drift,a large mass of material that is heaped up by the wind or by water currents
+36471,drift heading gallery,a horizontal (or nearly horizontal) passageway in a mine; "they dug a drift parallel with the vein"
+36472,drift impetus impulsion,a force that moves something along
+36473,drift purport,the pervading meaning or tenor; "caught the general drift of the conversation"
+36474,drift trend movement,a general tendency to change (as of opinion); "not openly liberal but that is the trend of the book"; "a broad movement of the electorate to the right"
+36475,drift_ice,masses of ice floating in the open sea
+36476,drift_net,a large fishnet supported by floats; it drifts with the current
+36477,driftage,the deviation (by a vessel or aircraft) from its intended course due to drifting
+36478,driftfish,larger butterfishes of the western Atlantic from the New York area to the northern Gulf of Mexico
+36479,driftfish,small (6 inches) tropical butterfishes found worldwide
+36480,drifting,aimless wandering from place to place
+36481,driftwood,wood that is floating or that has been washed ashore
+36482,drill,a tool with a sharp point and cutting edges for making holes in hard materials (usually rotating rapidly or by repeated blows)
+36483,drill,(military) the training of soldiers to march (as in ceremonial parades) or to perform the manual of arms
+36484,drill Mandrillus_leucophaeus,similar to the mandrill but smaller and less brightly colored
+36485,drill_master drill_instructor,a noncommissioned officer who instructs recruits in military marching and discipline
+36486,drill_press,a machine tool with a separate, upright stand; an electric drill is pressed into the work automatically or with a hand lever
+36487,drill_rig drilling_rig oilrig oil_rig,rig used in drilling for oil or gas
+36488,drill_site,workplace that is the site of a drill hole
+36489,drill_steel drill_rod,carbon steel used for rock drills and dowels
+36490,drilling boring,the act of drilling
+36491,drilling_bit drill_bit,a bit used in drilling for oil
+36492,drilling_mud drilling_fluid,a mixture of clays and chemicals and water; pumped down the drill pipe to lubricate and cool the drilling bit and to flush out the cuttings and to strengthen the sides of the hole
+36493,drilling_pipe,a series of tubes (joined by screwed collars) that connect a drilling platform to the drilling bit; rotates the bit and supplies drilling mud
+36494,drilling_platform offshore_rig,drilling rig consisting of an offshore platform (floating or fixed to the sea bed) from which many oil wells can be bored radially
+36495,drink,any large deep body of water; "he jumped into the drink and had to be rescued"
+36496,drink,a single serving of a beverage; "I asked for a hot drink"; "likes a drink before dinner"
+36497,drink drinking boozing drunkenness crapulence,the act of drinking alcoholic beverages to excess; "drink was his downfall"
+36498,drinker,a person who drinks liquids
+36499,drinker imbiber toper juicer,a person who drinks alcoholic beverages (especially to excess)
+36500,drinking imbibing imbibition,the act of consuming liquids
+36501,drinking_age,the age at which is legal for a person to buy alcoholic beverages
+36502,drinking_bout,a long period of drinking
+36503,drinking_fountain water_fountain bubbler,a public fountain to provide a jet of drinking water
+36504,drinking_song,a song celebrating the joys of drinking; sung at drinking parties
+36505,drinking_vessel,a vessel intended for drinking
+36506,drinking_water,water suitable for drinking
+36507,drip drip_mold drip_mould,(architecture) a projection from a cornice or sill designed to protect the area below from rainwater (as over a window or doorway)
+36508,drip dripping,the sound of a liquid falling drop by drop; "the constant sound of dripping irritated him"
+36509,drip trickle dribble,flowing in drops; the formation and falling of drops of liquid; "there's a drip through the roof"
+36510,drip_coffee,coffee made by passing boiling water through a perforated container packed with finely ground coffee
+36511,drip_culture,a hydroponic method of growing plants by allowing nutrient solutions to drip slowly onto an inert medium in which the plants are growing
+36512,drip_feed,the administration of a solution (blood or saline or plasma etc.) one drop at a time
+36513,drip_loop,a downward hanging loop in a line that runs to a building; "when it rained water would fall from the drip loop before it reached the building"
+36514,drip_mat,a small mat placed under a glass to protect a surface from condensation
+36515,drip_pan,pan under a refrigerator for collecting liquid waste
+36516,drip_pot,a coffeepot for making drip coffee
+36517,drippiness,the physical property of being soft and drippy
+36518,dripping drippage,a liquid (as water) that flows in drops (as from the eaves of house)
+36519,dripping_pan drip_pan,pan for catching drippings under roasting meat
+36520,drippings,fat that exudes from meat and drips off while it is being roasted or fried
+36521,dripstone,the form of calcium carbonate found in stalactites and stalagmites
+36522,dripstone hoodmold hoodmould,a protective drip that is made of stone
+36523,drive,a physiological state corresponding to a strong need or desire
+36524,drive,the trait of being highly motivated; "his drive and energy exhausted his co-workers"
+36525,drive,(computer science) a device that writes data onto or reads data from a storage medium
+36526,drive,a mechanism by which force or power is transmitted in a machine; "a variable speed drive permitted operation through a range of speeds"
+36527,drive,(sports) a hard straight return (as in tennis or squash)
+36528,drive,the act of driving a herd of animals overland
+36529,drive driving,hitting a golf ball off of a tee with a driver; "he sliced his drive out of bounds"
+36530,drive parkway,a wide scenic road planted with trees; "the riverside drive offers many exciting scenic views"
+36531,drive ride,a journey in a vehicle (usually an automobile); "he took the family for a drive in his new car"
+36532,drive thrust driving_force,the act of applying force to propel something; "after reaching the desired velocity the drive is cut off"
+36533,drive-by_killing,homicide committed by shooting from a moving automobile
+36534,drive-by_shooting,shooting someone from a car as it is driven past the victim
+36535,drive-in,any installation designed to accommodate patrons in their automobiles
+36536,drive_line drive_line_system,mechanism that transmits power from the engine to the driving wheels of a motor vehicle
+36537,drivel garbage,a worthless message
+36538,driveller jabberer,someone whose talk is trivial drivel
+36539,driven_well tube_well,a well made by driving a tube into the earth to a stratum that bears water
+36540,driver,someone who drives animals that pull a vehicle
+36541,driver,a golfer who hits the golf ball with a driver
+36542,driver,the operator of a motor vehicle
+36543,driver device_driver,(computer science) a program that determines how a computer will communicate with a peripheral device
+36544,driver number_one_wood,a golf club (a wood) with a near vertical face that is used for hitting long shots from the tee
+36545,driver's_license driver's_licence driving_license driving_licence,a license authorizing the bearer to drive a motor vehicle
+36546,driveshaft,a rotating shaft that transmits power from the engine to the point of application
+36547,driveway drive private_road,a road leading up to a private house; "they parked in the driveway"
+36548,driving,the act of controlling and steering the movement of a vehicle or animal
+36549,driving_belt,a belt that carries motion from a motor to the machinery
+36550,driving_iron one_iron,(golf) the long iron with the most nearly vertical face
+36551,driving_school,a school where people are taught to drive automobiles
+36552,driving_wheel,a wheel that drives a motor vehicle (transforms torque into a tractive force)
+36553,drizzle mizzle,very light rain; stronger than mist but less than a shower
+36554,drogue,a funnel-shaped device towed as a target by an airplane
+36555,drogue drogue_chute drogue_parachute,a parachute used to decelerate an object that is moving rapidly
+36556,drogue_parachute,a small parachute that pulls the main parachute from its storage pack
+36557,drollery clowning comedy funniness,a comic incident or series of incidents
+36558,drollery waggery,a quaint and amusing jest
+36559,dromaeosaur,a kind of maniraptor
+36560,dronabinol,psychoactive substance present in marijuana; used therapeutically to control nausea associated with cancer therapy
+36561,drone,stingless male bee in a colony of social bees (especially honeybees) whose sole function is to mate with the queen
+36562,drone drone_pipe bourdon,a pipe of the bagpipe that is tuned to produce a single continuous tone
+36563,drone pilotless_aircraft radio-controlled_aircraft,an aircraft without a pilot that is operated by remote control
+36564,drool dribble drivel slobber,saliva spilling from the mouth
+36565,drop,a predetermined hiding place for the deposit and distribution of illicit goods (such as drugs or stolen property)
+36566,drop,a central depository where things can be left or picked up
+36567,drop,the act of dropping something; "they expected the drop would be successful"
+36568,drop bead pearl,a shape that is spherical and small; "he studied the shapes of low-viscosity drops"; "beads of sweat on his forehead"
+36569,drop dip fall free_fall,a sudden sharp decrease in some quantity; "a drop of 57 points on the Dow Jones index"; "there was a drop in pressure in the pulmonary artery"; "a dip in prices"; "when that became known the price of their stock went into free fall"
+36570,drop drib driblet,a small indefinite quantity (especially of a liquid); "he had a drop too much to drink"; "a drop of each sample was analyzed"; "there is not a drop of pity in that man"; "years afterward, they would pay the blood-money, driblet by driblet"--Kipling
+36571,drop fall,a free and rapid descent by the force of gravity; "it was a miracle that he survived the drop from that height"
+36572,drop-down_menu,a menu of options that appears below the item when the computer user clicks on it
+36573,drop-leaf,a hinged leaf on a table that can be raised and supported by a bracket
+36574,drop-leaf_table,a table that has a drop-leaf to enlarge its surface
+36575,drop-off_charge,a fee added for returning a rented car to a location different from the one where it was rented
+36576,drop_arch,a blunt pointed arch drawn from two centers within the span
+36577,drop_biscuit,biscuit made from dough with enough milk that it can be dropped from a spoon
+36578,drop_cloth,a large piece of cloth laid over the floor or furniture while a room is being painted
+36579,drop_curtain drop_cloth drop,a curtain that can be lowered and raised onto a stage from the flies; often used as background scenery
+36580,drop_forge drop_hammer drop_press,device for making large forgings
+36581,drop_scone griddlecake Scotch_pancake,a scone made by dropping a spoonful of batter on a griddle
+36582,drop_shot dink,a soft return so that the tennis ball drops abruptly after crossing the net
+36583,drop_zone dropping_zone,an agreed area where military supplies are dropped to ground troops
+36584,dropkick,(football) kicking (as for a field goal) in which the football is dropped and kicked as it touches the ground
+36585,dropkicker,a football kicker who drops the ball and kicks it just as it reaches the ground
+36586,droplet,a tiny drop
+36587,dropline drop_line stepped_line stagger_head staggered_head stephead,a headline with the top line flush left and succeeding lines indented to the right
+36588,dropout,someone who withdraws from a social group or environment
+36589,dropout,someone who quits school before graduation
+36590,dropper eye_dropper,pipet consisting of a small tube with a vacuum bulb at one end for drawing liquid in and releasing it a drop at a time; "she used an eye dropper to administer medication to the eyes"
+36591,droppings dung muck,fecal matter of animals
+36592,dropseed drop-seed,a grass of the genus Sporobolus
+36593,droshky drosky,an open horse-drawn carriage with four wheels; formerly used in Poland and Russia
+36594,drosophila Drosophila_melanogaster,small fruit fly used by Thomas Hunt Morgan in studying basic mechanisms of inheritance
+36595,drought drouth,a prolonged shortage; "when England defeated Pakistan it ended a ten-year drought"
+36596,drought drouth,a shortage of rainfall; "farmers most affected by the drought hope that there may yet be sufficient rain early in the growing season"
+36597,drove,a group of animals (a herd or flock) moving together
+36598,drove drove_chisel,a stonemason's chisel with a broad edge for dressing stone
+36599,drove horde swarm,a moving crowd
+36600,drudge peon navvy galley_slave,a laborer who is obliged to do menial work
+36601,drudgery plodding grind donkeywork,hard monotonous routine work
+36602,drug,a substance that is used as a medicine or narcotic
+36603,drug_addict junkie junky,a narcotics addict
+36604,drug_addiction white_plague,an addiction to a drug (especially a narcotic drug)
+36605,drug_baron drug_lord,a person who controls an organization dealing in illegal drugs
+36606,drug_bust drugs_bust,seizure of illegal drugs by the police
+36607,drug_cartel,an illicit cartel formed to control the production and distribution of narcotic drugs; "drug cartels sometimes finance terrorist organizations"
+36608,drug_cocktail highly_active_antiretroviral_therapy HAART,a combination of protease inhibitors taken with reverse transcriptase inhibitors; used in treating AIDS and HIV
+36609,drug_company pharmaceutical_company pharma,a company that makes and sells pharmaceuticals
+36610,drug_of_abuse street_drug,a drug that is taken for nonmedicinal reasons (usually for mind-altering effects); drug abuse can lead to physical and mental damage and (with some substances) dependence and addiction
+36611,drug_traffic drug_trafficking narcotraffic,traffic in illegal drugs
+36612,drug_user substance_abuser user,a person who takes drugs
+36613,drug_war,conflict between law enforcement and those who deal in illegal drugs
+36614,drugget,a rug made of a coarse fabric having a cotton warp and a wool filling
+36615,drugstore apothecary's_shop chemist's chemist's_shop pharmacy,a retail shop where medicine and other articles are sold
+36616,druidism,the system of religion and philosophy taught by the Druids and their rites and ceremonies
+36617,drum,the sound of a drum; "he could hear the drums before he heard the fifes"
+36618,drum drumfish,small to medium-sized bottom-dwelling food and game fishes of shallow coastal and fresh waters that make a drumming noise
+36619,drum membranophone tympan,a musical percussion instrument; usually consists of a hollow cylinder with a membrane stretched across each end
+36620,drum metal_drum,a cylindrical metal container used for shipping or storage of liquids
+36621,drum_brake,hydraulic brake in which friction is applied to the inside of a spinning drum by the brake shoe
+36622,drum_major,the leader of a marching band or drum corps
+36623,drum_majorette majorette,a female baton twirler who accompanies a marching band
+36624,drum_majorette majorette,a female drum major
+36625,drum_printer,a line printer in which the type is mounted on a rotating drum that contains a full character set for each printing position
+36626,drum_sander electric_sander sander smoother,a power tool used for sanding wood; an endless loop of sandpaper is moved at high speed by an electric motor
+36627,drumbeat,(military) the beating of a drum as a signal for lowering the flag at sundown
+36628,drumbeat,a vehement and vociferous advocacy of a cause; "the warmongers kept up their drumbeat on Iraq"
+36629,drumhead head,a membrane that is stretched taut over a drum
+36630,drumhead_court-martial,a military court convened to hear urgent charges of offenses committed in action
+36631,drumlin,a mound of glacial drift
+36632,drummer,someone who plays a drum
+36633,drumming,the act of playing drums; "he practiced his drumming several hours every day"
+36634,drumstick,the lower joint of the leg of a fowl
+36635,drumstick,a stick used for playing a drum
+36636,drunk,someone who is intoxicated
+36637,drunk-and-disorderly,someone arrested on the charge of being drunk and disorderly; "they delivered the drunk-and-disorderlies to the county jail"
+36638,drunkard drunk rummy sot inebriate wino,a chronic drinker
+36639,drunken_reveler drunken_reveller bacchanal bacchant,someone who engages in drinking bouts
+36640,drunkenness inebriation inebriety intoxication tipsiness insobriety,a temporary state resulting from excessive consumption of alcohol
+36641,drupe stone_fruit,fleshy indehiscent fruit with a single seed: e.g. almond; peach; plum; cherry; elderberry; olive; jujube
+36642,drupelet,a small part of an aggregate fruit that resembles a drupe
+36643,drusen,(plural) an eye disease resulting from small accumulations of hyaline bodies underneath the retina
+36644,dry prohibitionist,a reformer who opposes the use of intoxicating beverages
+36645,dry-bulb_thermometer,an ordinary thermometer with a dry bulb; used to measure the air temperature
+36646,dry-gulching,the act of killing from ambush
+36647,dry-wood_termite,any of various termites that live in and feed on dry wood that is not connected with the soil
+36648,dry_battery,a voltaic battery consisting of two or more dry cells
+36649,dry_cell,a small Leclanche cell containing no free liquid; the electrolyte is a paste and the negative zinc pole forms the container of the cell; used in flashlights, portable radios, etc.
+36650,dry_cleaning,the act of cleaning (fabrics) with a solvent other than water
+36651,dry_dock drydock graving_dock,a large dock from which water can be pumped out; used for building ships or for repairing a ship below its waterline
+36652,dry_fly,a fly (fisherman's lure) that skims the surface of the water
+36653,dry_gangrene cold_gangrene mumification_necrosis mummification,(pathology) gangrene that develops in the presence of arterial obstruction and is characterized by dryness of the dead tissue and a dark brown color
+36654,dry_ice,solidified carbon dioxide; dry ice sublimates at -78.5 C and is used mainly as a refrigerant
+36655,dry_kiln,a kiln for drying and seasoning lumber
+36656,dry_masonry,masonry without mortar
+36657,dry_nurse,a nurse who cares for but does not suckle an infant
+36658,dry_plate dry_plate_process,a former photographic method that used a glass plate coated with a light-sensitive gelatinous emulsion
+36659,dry_point,a print produced by dry point engraving
+36660,dry_point,a steel needle for engraving without acid on a bare copper plate
+36661,dry_rot,a crumbling and drying of timber or bulbs or potatoes or fruit caused by a fungus
+36662,dry_rot,a fungus causing dry rot
+36663,dry_season,one of the two seasons in tropical climates
+36664,dry_unit dry_measure,a unit of capacity for dry commodities (as fruit or grain)
+36665,dry_vermouth French_vermouth,dry pale amber variety
+36666,dry_wall dry-stone_wall,a stone wall made with stones fitted together without mortar
+36667,dry_walling,the activity of building stone walls without mortar
+36668,dryad wood_nymph,a deity or nymph of the woods
+36669,dryer drier,an appliance that removes moisture
+36670,drygoods soft_goods,textiles or clothing and related merchandise
+36671,drying_oil,an oil that hardens in air due to oxidation and is often used as a paint or varnish base
+36672,dryland_blueberry dryland_berry Vaccinium_pallidum,low deciduous shrub of the eastern United States bearing dark blue sweet berries
+36673,dryness waterlessness xerotes,the condition of not containing or being covered by a liquid (especially water)
+36674,dryopithecine,considered a possible ancestor to both anthropoid apes and humans
+36675,drypis,spiny-leaved perennial herb of southern Europe having terminal clusters of small flowers
+36676,dscDNA,double-stranded cDNA
+36677,du_Maurier Daphne_du_Maurier Dame_Daphne_du_Maurier,English writer of melodramatic novels (1907-1989)
+36678,du_Maurier George_du_Maurier George_Louis_Palmella_Busson_du_Maurier,English writer and illustrator; grandfather of Daphne du Maurier (1834-1896)
+36679,dual_scan_display,a type of passive matrix display in which the top and bottom half of the screen are refreshed simultaneously
+36680,dualism,the doctrine that reality consists of two basic opposing elements, often taken to be mind and matter (or mind and body), or good and evil
+36681,dualist,an adherent of dualism
+36682,duality,(geometry) the interchangeability of the roles of points and planes in the theorems of projective geometry
+36683,duality wave-particle_duality,(physics) the property of matter and electromagnetic radiation that is characterized by the fact that some properties can be explained best by wave theory and others by particle theory
+36684,dub,the new sounds added by dubbing
+36685,dubbin,tallow mixed with oil; used to make leather soft and waterproof
+36686,dubbing,a new soundtrack that is added to a film
+36687,dubnium Db hahnium element_105 atomic_number_105,a transuranic element
+36688,ducat,formerly a gold coin of various European countries
+36689,duce,leader; "Mussolini was called Il Duce"
+36690,duchess,the wife of a duke or a woman holding ducal title in her own right
+36691,duchy dukedom,the domain controlled by a duke or duchess
+36692,duck,flesh of a duck (domestic or wild)
+36693,duck,a heavy cotton fabric of plain weave; used for clothing and tents
+36694,duck,small wild or domesticated web-footed broad-billed swimming bird usually having a depressed body and short legs
+36695,duck duck's_egg,(cricket) a score of nothing by a batsman
+36696,duck_down,down of the duck
+36697,duck_hunter,hunter of ducks
+36698,duck_pate,a pate made from duck liver
+36699,duck_sauce hoisin_sauce,a thick sweet and pungent Chinese condiment
+36700,duckboard,a boardwalk laid across muddy ground
+36701,ducking duck_hunting,hunting ducks
+36702,duckling,flesh of a young domestic duck
+36703,duckling,young duck
+36704,duckpin,a bowling pin that is short and squat by comparison with a tenpin
+36705,duckpins,a bowling game using a pin smaller than a tenpin but proportionately wider
+36706,ducks_and_drakes,a game in which a flat stone is bounced along the surface of calm water
+36707,duckweed,any small or minute aquatic plant of the family Lemnaceae that float on or near the surface of shallow ponds
+36708,duct,a continuous tube formed by a row of elongated cells lacking intervening end walls
+36709,duct,an enclosed conduit for a fluid
+36710,duct epithelial_duct canal channel,a bodily passage or tube lined with epithelial cells and conveying a secretion or other substance; "the tear duct was obstructed"; "the alimentary canal"; "poison is released through a channel in the snake's fangs"
+36711,duct_tape,a wide silvery adhesive tape intended to seal joints in sheet metal duct work but having many other uses; "duct tape holds the world together"
+36712,ductility ductileness,the malleability of something that can be drawn into threads or wires or hammered into thin sheets
+36713,ductule ductulus,a very small duct
+36714,ductus_arteriosus,a blood vessel in a fetus that bypasses pulmonary circulation by connecting the pulmonary artery directly to the ascending aorta; normally closes at birth
+36715,dude_ranch,a holiday resort offering ranch activities (riding and camping)
+36716,dudeen,a clay pipe with a short stem
+36717,dudgeon high_dudgeon,a feeling of intense indignation (now used only in the phrase `in high dudgeon')
+36718,due,a payment that is due (e.g., as the price of membership); "the society dropped him for non-payment of dues"
+36719,due,that which is deserved or owed; "give the devil his due"
+36720,due_care ordinary_care reasonable_care,the care that a reasonable man would exercise under the circumstances; the standard for determining legal duty
+36721,due_process due_process_of_law,(law) the administration of justice according to established rules and principles; based on the principle that a person cannot be deprived of life or liberty or property without appropriate legal procedures and safeguards
+36722,duel,any struggle between two skillful opponents (individuals or groups)
+36723,duel affaire_d'honneur,a prearranged fight with deadly weapons by two people (accompanied by seconds) in order to settle a quarrel over a point of honor
+36724,dueler dueller duelist duellist,a person who fights duels
+36725,duenna,a woman chaperon
+36726,duet duette duo,two performers or singers who perform together
+36727,duet duette duo,a musical composition for two performers
+36728,duff plum_duff,a stiff flour pudding steamed or boiled usually and containing e.g. currants and raisins and citron
+36729,duffel duffle,a coarse heavy woolen fabric
+36730,duffel_bag duffle_bag duffel duffle,a large cylindrical bag of heavy cloth; for carrying personal belongings
+36731,duffel_coat duffle_coat,a warm coat made of duffel; usually has a hood and fastens with toggles
+36732,duffer,an incompetent or clumsy person; "as a golfer he was only a duffer"
+36733,dug,an udder or breast or teat
+36734,dugong Dugong_dugon,sirenian tusked mammal found from eastern Africa to Australia; the flat tail is bilobate
+36735,dugout,either of two low shelters on either side of a baseball diamond where the players and coaches sit during the game
+36736,dugout_canoe dugout pirogue,a canoe made by hollowing out and shaping a large log
+36737,duke,a nobleman (in various countries) of high rank
+36738,duke,a British peer of the highest rank
+36739,dukedom,the dignity or rank or position of a duke
+36740,dulciana,the organ stop having a tone of soft sweet string quality
+36741,dulcimer,a stringed instrument used in American folk music; an elliptical body and a fretted fingerboard and three strings
+36742,dulcimer,a trapezoidal zither whose metal strings are struck with light hammers
+36743,dullness,the quality of lacking interestingness; "the stories were of a dullness to bring a buffalo to its knees"
+36744,dullness,a lack of visual brightness; "the brightness of the orange sky was reflected in the dullness of the orange sea"
+36745,dullness,lack of sensibility; "there was a dullness in his heart"; "without him the dullness of her life crept into her work no matter how she tried to compartmentalize it."
+36746,dullness bluntness,without sharpness or clearness of edge or point; "the dullness of the pencil made his writing illegible"
+36747,dullness obtuseness,the quality of being slow to understand
+36748,dulse Rhodymenia_palmata,coarse edible red seaweed
+36749,dumb_bomb gravity_bomb,a bomb that falls because of gravity and is not guided to a target
+36750,dumb_cane mother-in-law_plant mother-in-law's_tongue Dieffenbachia_sequine,an evergreen plant with large showy dark green leaves; contains a poison that swells the tongue and throat hence the name
+36751,dumbbell,an exercising weight; two spheres connected by a short bar that serves as a handle
+36752,dumbbell dummy dope boob booby pinhead,an ignorant or foolish person
+36753,dumbwaiter food_elevator,a small elevator used to convey food (or other goods) from one floor of a building to another
+36754,dumdum dumdum_bullet,a soft-nosed small-arms bullet that expands when it hits a target and causes a gaping wound
+36755,dummy,a figure representing the human form
+36756,dummy silent_person,a person who does not talk
+36757,dummy_whist,a form of whist with three players; four hands are dealt with the hand opposite the dealer being face up
+36758,dump,(computer science) a copy of the contents of a computer storage device; sometimes used in debugging programs
+36759,dump,a place where supplies can be stored; "an ammunition dump"
+36760,dump garbage_dump trash_dump rubbish_dump wasteyard waste-yard dumpsite,a piece of land where waste materials are dumped
+36761,dump_routine,a routine that writes from an internal store to some external medium
+36762,dump_truck dumper tipper_truck tipper_lorry tip_truck tipper,truck whose contents can be emptied without handling; the front end of the platform can be pneumatically raised so that the load is discharged by gravity
+36763,dumpcart,a cart that can be tilted to empty contents without handling
+36764,dumpiness squattiness,a short and stout physique
+36765,dumping,selling goods abroad at a price below that charged in the domestic market
+36766,dumpling,dessert made by baking fruit wrapped in pastry
+36767,dumpling dumplings,small balls or strips of boiled or steamed dough
+36768,dumps mopes,an informal expression for a mildly depressed state; "in the dumps"; "have the mopes"
+36769,dun,horse of a dull brownish grey color
+36770,dun greyish_brown grayish_brown fawn,a color or pigment varying around a light grey-brown color; "she wore dun"
+36771,dunce dunderhead numskull blockhead bonehead lunkhead hammerhead knucklehead loggerhead muttonhead shithead dumbass fuckhead,a stupid person; these words are used to express a low opinion of someone's intelligence
+36772,dunce_cap dunce's_cap fool's_cap,a cone-shaped paper hat formerly placed on the head of slow or lazy pupils
+36773,dundathu_pine queensland_kauri smooth_bark_kauri Agathis_robusta,Australian timber tree resembling the kauri but having wood much lighter in weight and softer
+36774,dune sand_dune,a ridge of sand created by the wind; found in deserts or near lakes and oceans
+36775,dune_buggy beach_buggy,a recreational vehicle with large tires used on beaches or sand dunes
+36776,dune_cycling,bicycling or motorcycling on sand dunes
+36777,dung_beetle,any of numerous beetles that roll balls of dung on which they feed and in which they lay eggs
+36778,dungeon,a dark cell (usually underground) where prisoners can be confined
+36779,dunghill,a foul or degraded condition
+36780,dunghill midden muckheap muckhill,a heap of dung or refuse
+36781,dunk dunk_shot stuff_shot,a basketball shot in which the basketball is propelled downward into the basket
+36782,dunker,an eater who dips food into a liquid before eating it; "he was a dunker--he couldn't eat a doughnut without a cup of coffee to dunk it in"
+36783,dunker,a basketball player who is able to make dunk shots
+36784,duodecimal_digit,a digit from 0 to 11 in duodecimal notation
+36785,duodecimal_notation,any notation that uses 12 different characters
+36786,duodecimal_number_system duodecimal_system,a positional system of numeration that uses duodecimal digits and a radix of twelve
+36787,duodenal_ulcer,a peptic ulcer of the duodenum
+36788,duodenum,the part of the small intestine between the stomach and the jejunum
+36789,duologue,a part of the script in which the speaking roles are limited to two actors
+36790,duple_time,musical time with two beats in each bar
+36791,duplex_apartment duplex,an apartment having rooms on two floors that are connected by a staircase
+36792,duplex_house duplex semidetached_house,a house with two units sharing a common wall
+36793,duplicate duplication,a copy that corresponds to an original exactly; "he made a duplicate for the files"
+36794,duplication gemination,the act of copying or making a duplicate (or duplicates) of something; "this kind of duplication is wasteful"
+36795,duplicator copier,apparatus that makes copies of typed, written or drawn material
+36796,duplicity double-dealing,acting in bad faith; deception by pretending to entertain one set of intentions while acting under the influence of another
+36797,dura_mater dura,the outermost (and toughest) of the 3 meninges
+36798,durables durable_goods consumer_durables,consumer goods that are not destroyed by use
+36799,durance,imprisonment (especially for a long time)
+36800,duration continuance,the period of time during which something continues
+36801,duration continuance,the property of enduring or continuing in time
+36802,duration length,continuance in time; "the ceremony was of short duration"; "he complained about the length of time required"
+36803,durative durative_aspect,the aspect of a verb that expresses its duration
+36804,durbar,the room in the palace of a native prince of India in which audiences and receptions occur
+36805,duress,compulsory force or threat; "confessed under duress"
+36806,durian,huge fruit native to southeastern Asia `smelling like Hell and tasting like Heaven'; seeds are roasted and eaten like nuts
+36807,durian durion durian_tree Durio_zibethinus,tree of southeastern Asia having edible oval fruit with a hard spiny rind
+36808,durmast Quercus_petraea Quercus_sessiliflora,deciduous European oak valued for its tough elastic wood
+36809,durra doura dourah Egyptian_corn Indian_millet Guinea_corn,sorghums of dry regions of Asia and North Africa
+36810,durum durum_wheat hard_wheat Triticum_durum Triticum_turgidum macaroni_wheat,wheat with hard dark-colored kernels high in gluten and used for bread and pasta; grown especially in southern Russia, North Africa, and northern central North America
+36811,dusky-footed_wood_rat,a wood rat with dusky feet
+36812,dusky-footed_woodrat Neotoma_fuscipes,host to Lyme disease tick (Ixodes pacificus) in northern California
+36813,dusky_salamander,common North American salamander mottled with dull brown or greyish-black
+36814,dusky_shark Carcharhinus_obscurus,relatively slender blue-grey shark; nearly worldwide in tropical and temperate waters
+36815,dust,free microscopic particles of solid material; "astronomers say that the empty space between planets actually contains measurable amounts of dust"
+36816,dust,fine powdery material such as dry earth or pollen that can be blown about in the air; "the furniture was covered with dust"
+36817,dust_bag vacuum_bag,a bag into which dirt is sucked by a vacuum cleaner
+36818,dust_bowl,a region subject to dust storms; especially the central region of United States subject to dust storms in the 1930s
+36819,dust_cloud,a cloud of dust suspended in the air
+36820,dust_contamination,state of being contaminated with dust
+36821,dust_contamination,the act of contaminating with dust particles
+36822,dust_cover,a removable plastic protective covering for a piece of equipment
+36823,dust_cover dust_sheet,a large piece of cloth used to cover furniture that is not in use for a long period
+36824,dust_devil,a miniature whirlwind strong enough to whip dust and leaves and litter into the air
+36825,dust_storm duster sandstorm sirocco,a windstorm that lifts up clouds of dust or sand; "it was the kind of duster not experienced in years"
+36826,dustcloth dustrag duster,a piece of cloth used for dusting
+36827,duster,a pitch thrown deliberately close to the batter
+36828,duster gaberdine gabardine smock dust_coat,a loose coverall (coat or frock) reaching down to the ankles
+36829,dustiness,the state of being covered with dust
+36830,dustmop dust_mop dry_mop,a dry swab for dusting floors
+36831,dustpan,a short-handled receptacle into which dust can be swept
+36832,dustpan dustpanful,the quantity that a dustpan will hold
+36833,dusty_miller Centaurea_cineraria Centaurea_gymnocarpa,a plant having leaves and stems covered with down that resembles dust
+36834,dusty_miller Senecio_cineraria Cineraria_maritima,stiff much-branched perennial of the Mediterranean region having very white woolly stems and leaves
+36835,dusty_miller beach_wormwood old_woman Artemisia_stelleriana,herb with greyish leaves found along the east coast of North America; used as an ornamental plant
+36836,dusty_miller silver-lace silver_lace Tanacetum_ptarmiciflorum Chrysanthemum_ptarmiciflorum,shrubby perennial of the Canary Islands having white flowers and leaves and hairy stems covered with dustlike down; sometimes placed in genus Chrysanthemum
+36837,dutch_auction,a method of selling in which the price is reduced until a buyer is found
+36838,dutifulness,piety by virtue of devotion to duty
+36839,duty,work that you are obliged to perform for moral or legal reasons; "the duties of the job"
+36840,duty responsibility obligation,the social force that binds you to the courses of action demanded by that force; "we must instill a sense of duty in our children"; "every right implies a responsibility; every opportunity, an obligation; every possession, a duty"- John D.Rockefeller Jr
+36841,duty tariff,a government tax on imports or exports; "they signed a treaty to lower duties on trade between their countries"
+36842,dwarf,a plant or animal that is atypically small
+36843,dwarf midget nanus,a person who is markedly small
+36844,dwarf-white_trillium snow_trillium early_wake-robin,a low perennial white-flowered trillium found in the southeastern United States
+36845,dwarf_astilbe Astilbe_chinensis_pumila,mat-forming evergreen Asiatic plant with finely cut leaves and small pink to burgundy flowers; grown as ground cover
+36846,dwarf_banana Musa_acuminata,low-growing Asian banana tree cultivated especially in the West Indies for its clusters of edible yellow fruit
+36847,dwarf_bilberry dwarf_blueberry Vaccinium_caespitosum,low-growing tufted deciduous shrub of northern and alpine North America having pink to coral-red flowers followed by sweet blue berries
+36848,dwarf_buckeye bottlebrush_buckeye,a spreading shrub with pink flowers; found in southeastern United States
+36849,dwarf_chinkapin_oak dwarf_chinquapin_oak dwarf_oak Quercus_prinoides,deciduous shrubby tree of northeastern and central United States having a sweet edible nut and often forming dense thickets
+36850,dwarf_dandelion Krigia_dandelion Krigia_bulbosa,small yellow-flowered herb resembling dandelions of central and southeastern United States
+36851,dwarf_elder danewort Sambucus_ebulus,dwarf herbaceous elder of Europe having pink flowers and a nauseous odor
+36852,dwarf_flowering_almond Prunus_glandulosa,small Chinese shrub with smooth unfurrowed dark red fruit grown especially for its red or pink or white flowers
+36853,dwarf_golden_chinkapin Chrysolepis_sempervirens,evergreen shrub similar to golden chinkapin; mountains of California
+36854,dwarf_grey_willow dwarf_gray_willow sage_willow Salix_tristis,willow shrub of dry places in the eastern United States having long narrow leaves canescent beneath
+36855,dwarf_hulsea Hulsea_nana,similar to but smaller than alpine hulsea
+36856,dwarf_iris Iris_cristata,low-growing summer-flowering iris of northeastern United States
+36857,dwarf_iris vernal_iris Iris_verna,low-growing spring-flowering American iris with bright blue-lilac flowers
+36858,dwarf_juniper savin Juniperus_sabina,procumbent or spreading juniper
+36859,dwarf_maple Rocky-mountain_maple Acer_glabrum,small maple of northwestern North America
+36860,dwarf_pipefish Syngnathus_hildebrandi,small (4 inches) fish found off the Florida Gulf Coast
+36861,dwarf_sperm_whale Kogia_simus,very small (to 8 feet) sperm whale of central coasts of Atlantic and Pacific
+36862,dwarf_spurge Euphorbia_exigua,European erect or depressed annual weedy spurge adventive in northeastern United States
+36863,dwarf_sumac mountain_sumac black_sumac shining_sumac Rhus_copallina,common nonpoisonous shrub of eastern North America with compound leaves and green paniculate flowers followed by red berries
+36864,dwarf_tulip Tulipa_armena Tulipa_suaveolens,small early blooming tulip
+36865,dwarf_willow Salix_herbacea,widely distributed boreal shrubby willow with partially underground creeping stems and bright green glossy leaves
+36866,dwarfishness,smallness of stature
+36867,dwarfism nanism,a genetic abnormality resulting in short stature
+36868,dwelling home domicile abode habitation dwelling_house,housing that someone is living in; "he built a modest dwelling near the pond"; "they raise money to provide homes for the homeless"
+36869,dwindling dwindling_away,a becoming gradually less; "there is no greater sadness that the dwindling away of a family"
+36870,dyadic_operation,an operation on exactly two operands
+36871,dybbuk dibbuk,(Jewish folklore) a demon that enters the body of a living person and controls that body's behavior
+36872,dye dyestuff,a usually soluble substance for staining or coloring e.g. fabrics or hair
+36873,dye-works,a workshop where dyeing is done
+36874,dyeing,the use of dye to change the color of something permanently
+36875,dyer,someone whose job is to dye cloth
+36876,dyer's_rocket dyer's_mignonette weld Reseda_luteola,European mignonette cultivated as a source of yellow dye; naturalized in North America
+36877,dyer's_weed Solidago_rugosa,eastern North American herb whose yellow flowers are (or were) used in dyeing
+36878,dyer's_woad Isatis_tinctoria,European biennial formerly grown for the blue coloring matter yielded by its leaves
+36879,dyer's_woodruff Asperula_tinctoria,creeping European perennial having red or pinkish-white flowers and red roots sometimes used as a substitute for madder in dyeing
+36880,dyewood,any wood from which dye is obtained
+36881,dynamic_balance,(aeronautics) the state of equilibrium in which centrifugal forces due to a rotating mass (e.g., a propeller) do not produce force in the shaft and so vibration is reduced
+36882,dynamic_electricity current_electricity,a flow of electric charge
+36883,dynamical_system,(physics) a phase space together with a transformation of that space
+36884,dynamics kinetics,the branch of mechanics concerned with the forces that cause motions of bodies
+36885,dynamism,any of the various theories or doctrines or philosophical systems that attempt to explain the phenomena of the universe in terms of some immanent force or energy
+36886,dynamism pizzazz pizzaz oomph zing,the activeness of an energetic personality
+36887,dynamite,an explosive containing nitrate sensitized with nitroglycerin absorbed on wood pulp
+36888,dynamiter dynamitist,a person who uses dynamite in a revolutionary cause
+36889,dynamo,generator consisting of a coil (the armature) that rotates between the poles of an electromagnet (the field magnet) causing a current to flow in the armature
+36890,dynamometer ergometer,measuring instrument designed to measure power
+36891,dynast,a hereditary ruler
+36892,dynasty,a sequence of powerful leaders in the same family
+36893,dyne,a unit of force equal to the force that imparts an acceleration of 1 cm/sec/sec to a mass of 1 gram
+36894,dysaphia,a disorder in the sense of touch
+36895,dysarthria,impaired articulatory ability resulting from defects in the peripheral motor nerves or in the speech musculature
+36896,dyscalculia,impaired ability to learn grade-appropriate mathematics
+36897,dyschezia,difficulty in defecating (usually as a consequence of long continued voluntary suppression of the urge to defecate)
+36898,dyscrasia,an abnormal or physiologically unbalanced state of the body
+36899,dysentery,an infection of the intestines marked by severe diarrhea
+36900,dysfunction disfunction,(medicine) any disturbance in the functioning of an organ or body part or a disturbance in the functioning of a social group; "erectile dysfunction"; "sexual relationship dysfunction"
+36901,dysgenesis,infertility between hybrids
+36902,dysgenics cacogenics,the study of the operation of factors causing degeneration in the type of offspring produced
+36903,dysgraphia,impaired ability to learn to write
+36904,dyskinesia,abnormality in performing voluntary muscle movements
+36905,dyslectic dyslexic,a person who has dyslexia
+36906,dyslexia,impaired ability to learn to read
+36907,dyslogia,impaired ability to express ideas verbally; usually resulting from difficulties of reasoning (as in feeblemindedness or certain psychoses)
+36908,dysmenorrhea,painful menstruation
+36909,dysomia,impairment of the sense of smell
+36910,dysosmia parosamia olfactory_impairment,a disorder in the sense of smell
+36911,dyspeptic,a person suffering from indigestion
+36912,dysphagia,condition in which swallowing is difficult or painful
+36913,dysphasia,an impairment of language (especially speech production) that is usually due to brain damage
+36914,dysphemism,an offensive or disparaging expression that is substituted for an inoffensive one; "his favorite dysphemism was to ask for axle grease when he wanted butter"
+36915,dysphonia,speech disorder attributable to a disorder of phonation
+36916,dysphoria,abnormal depression and discontent
+36917,dysplasia,abnormal development (of organs or cells) or an abnormal structure resulting from such growth
+36918,dyspnea dyspnoea,difficult or labored respiration
+36919,dysprosium Dy atomic_number_66,a trivalent metallic element of the rare earth group; forms compounds that are highly magnetic
+36920,dysthymia dysthymic_depression,mild chronic depression; "I thought she had just been in a bad mood for thirty years, but the doctor called it dysthymia"
+36921,dystopia,state in which the conditions of life are extremely bad as from deprivation or oppression or terror
+36922,dystopia,a work of fiction describing an imaginary place where life is extremely bad because of deprivation or oppression or terror
+36923,dystrophy,any degenerative disorder resulting from inadequate or faulty nutrition
+36924,dysuria,painful or difficult urination
+36925,e,the base of the natural system of logarithms; approximately equal to 2.718282...
+36926,e-commerce,commerce conducted electronically (as on the internet)
+36927,eager_beaver busy_bee live_wire sharpie sharpy,an alert and energetic person
+36928,eagerness avidity avidness keenness,a positive feeling of wanting to push ahead with something
+36929,eagle,(golf) a score of two strokes under par on a hole
+36930,eagle,a former gold coin in the United States worth 10 dollars
+36931,eagle,an emblem representing power; "the Roman eagle"
+36932,eagle bird_of_Jove,any of various large keen-sighted diurnal birds of prey noted for their broad wings and strong soaring flight
+36933,eagle_ray,powerful free-swimming tropical ray noted for `soaring' by flapping winglike fins; usually harmless but has venomous tissue near base of the tail as in stingrays
+36934,eaglet,a young eagle
+36935,ear,attention to what is said; "he tried to get her ear"
+36936,ear,good hearing; "he had a keen ear"; "a good ear for pitch"
+36937,ear,the sense organ for hearing and equilibrium
+36938,ear spike capitulum,fruiting spike of a cereal plant especially corn
+36939,ear_doctor ear_specialist otologist,a physician who specializes in the ear and its diseases
+36940,ear_hole,a hole (as in a helmet) for sound to reach the ears
+36941,earache otalgia,an ache localized in the middle or inner ear
+36942,eardrum tympanum tympanic_membrane myringa,the membrane in the ear that vibrates to sound
+36943,eared_seal,pinniped mammal having external ear flaps and hind limbs used for locomotion on land; valued for its soft underfur
+36944,earflap earlap,one of two flaps attached to a cap to keep the ears warm
+36945,earful,an outpouring of gossip
+36946,earl,a British peer ranking below a marquess and above a viscount
+36947,earldom,the dignity or rank or position of an earl or countess
+36948,earldom,the domain controlled by an earl or count or countess
+36949,earleaved_umbrella_tree Magnolia_fraseri,small erect deciduous tree with large leaves in coiled formations at branch tips
+36950,earless_lizard,any of several slender lizards without external ear openings: of plains of western United States and Mexico
+36951,earless_seal true_seal hair_seal,any of several seals lacking external ear flaps and having a stiff hairlike coat with hind limbs reduced to swimming flippers
+36952,earliness,quality of coming early or earlier in time
+36953,earlobe ear_lobe,the fleshy pendulous part of the external human ear
+36954,early-morning_hour,an hour early in the morning
+36955,early_bird,a person who arrives early before others do
+36956,early_bird,a person who gets up very early in the morning
+36957,early_coral_root pale_coral_root Corallorhiza_trifida,plant having clumps of nearly leafless pale yellowish to greenish stems bearing similarly colored flowers with white lower lips; northern New Mexico north through South Dakota and Washington to Alaska
+36958,early_spider_orchid Ophrys_sphegodes,spring-blooming spider orchid having a flower with yellow or green or pink sepals and a broad brown velvety lip
+36959,early_warning_radar,a radar that is part of an early warning system
+36960,early_warning_system,a network of radar installations designed to detect enemy missiles or aircraft while there is still time to intercept them
+36961,earmark,identification mark on the ear of a domestic animal
+36962,earmuff,either of a pair of ear coverings (usually connected by a headband) that are worn to keep the ears warm in cold weather
+36963,earned_run,a run that was not scored as the result of an error by the other team
+36964,earned_run_average ERA,(baseball) a measure of a pitcher's effectiveness; calculated as the average number of earned runs allowed by the pitcher for every nine innings pitched
+36965,earner wage_earner,someone who earn wages in return for their labor
+36966,earnest,something of value given by one person to another to bind a contract
+36967,earnest_money arles,money given by a buyer to a seller to bind a contract
+36968,earnestness seriousness sincerity,an earnest and sincere feeling
+36969,earning_per_share,the portion of a company's profit allocated to each outstanding share of common stock
+36970,earphone earpiece headphone phone,electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear; "it was not the typing but the earphones that she disliked"
+36971,earplug,an earphone that is inserted into the ear canal
+36972,earplug,a plug of cotton, wax, or rubber that is fitted into the ear canal for protection against the entry of water or loud noise
+36973,earring,jewelry to ornament the ear; usually clipped to the earlobe or fastened through a hole in the lobe
+36974,earshot earreach hearing,the range within which a voice can be heard; "the children were told to stay within earshot"
+36975,earth,once thought to be one of four elements composing the universe (Empedocles)
+36976,earth ground,the loose soft material that makes up a large part of the land surface; "they dug into the earth outside the church"
+36977,earth-god earth_god,a god of fertility and vegetation
+36978,earth-goddess earth_goddess,a goddess of fertility and vegetation
+36979,earth_color,a colored mineral used as a pigment
+36980,earth_mother,the earth conceived of as the female principle of fertility
+36981,earth_science,any of the sciences that deal with the earth or its parts
+36982,earthball false_truffle puffball hard-skinned_puffball,any of various fungi of the genus Scleroderma having hard-skinned subterranean fruiting bodies resembling truffles
+36983,earthenware,ceramic ware made of porous clay fired at low heat
+36984,earthnut Conopodium_denudatum,a common European plant having edible tubers with the flavor of roasted chestnuts
+36985,earthquake,a disturbance that is extremely disruptive; "selling the company caused an earthquake among the employees"
+36986,earthquake quake temblor seism,shaking and vibration at the surface of the earth resulting from underground movement along a fault plane or from volcanic activity
+36987,earthstar,any fungus of the family Geastraceae; in form suggesting a puffball whose outer peridium splits into the shape of a star
+36988,earthtongue earth-tongue,any club-shaped fungus of the genus Geoglossum
+36989,earthwork,an earthen rampart
+36990,earthworm angleworm fishworm fishing_worm wiggler nightwalker nightcrawler crawler dew_worm red_worm,terrestrial worm that burrows into and helps aerate soil; often surfaces when the ground is cool or wet; used as bait by anglers
+36991,earwig,any of numerous insects of the order Dermaptera having elongate bodies and slender many-jointed antennae and a pair of large pincers at the rear of the abdomen
+36992,ease comfort,a freedom from financial difficulty that promotes a comfortable state; "a life of luxury and ease"; "he had all the material comforts of this world"
+36993,ease easiness simplicity simpleness,freedom from difficulty or hardship or effort; "he rose through the ranks with apparent ease"; "they put it into containers for ease of transportation"; "the very easiness of the deed held her back"
+36994,ease informality,freedom from constraint or embarrassment; "I am never at ease with strangers"
+36995,easel,an upright tripod for displaying something (usually an artist's canvas)
+36996,easement,(law) the privilege of using something that is not your own (as using another's land as a right of way to your own land)
+36997,easiness,the quality of being easy in behavior or style; "there was an easiness between them"; "a natural easiness of manner"
+36998,easiness relaxation,a feeling of refreshing tranquility and an absence of tension or worry; "the easiness we feel when sleeping"
+36999,easing easement alleviation relief,the act of reducing something unpleasant (as pain or annoyance); "he asked the nurse for relief from the constant pain"
+37000,easing moderation relief,a change for the better
+37001,east,the direction corresponding to the eastward cardinal compass point
+37002,east,a location in the eastern part of a country, region, or city
+37003,east due_east eastward E,the cardinal compass point that is at 90 degrees
+37004,east-west_direction,in a direction parallel with lines of latitude
+37005,east_African_cedar Juniperus_procera,tropical African timber tree with fragrant wood
+37006,east_by_north EbN,the compass point that is one point north of due east
+37007,east_by_south EbS,the compass point that is one point south of due east
+37008,east_northeast ENE,the compass point midway between northeast and east
+37009,east_side,the side that is on the east
+37010,east_southeast ESE,the compass point midway between east and southeast
+37011,east_wind easter easterly,a wind from the east
+37012,eastern_chimpanzee Pan_troglodytes_schweinfurthii,long-haired chimpanzees of east-central Africa; closely related to the central chimpanzees
+37013,eastern_chipmunk hackee striped_squirrel ground_squirrel Tamias_striatus,small striped semiterrestrial eastern American squirrel with cheek pouches
+37014,eastern_coral_snake Micrurus_fulvius,ranges from Central America to southeastern United States
+37015,eastern_cottontail Sylvilagus_floridanus,widely distributed in United States except northwest and far west regions
+37016,eastern_cricket_frog Acris_gryllus,a cricket frog of eastern United States
+37017,eastern_dasyure Dasyurus_quoll,a variety of dasyure
+37018,eastern_fence_lizard pine_lizard Sceloporus_undulatus,small active lizard of United States and north to British Columbia
+37019,eastern_grey_squirrel eastern_gray_squirrel cat_squirrel Sciurus_carolinensis,common medium-large squirrel of eastern North America; now introduced into England
+37020,eastern_ground_snake Potamophis_striatula Haldea_striatula,in some classifications placed in genus Haldea; small reddish-grey snake of eastern North America
+37021,eastern_hemisphere orient,the hemisphere that includes Eurasia and Africa and Australia
+37022,eastern_hemlock Canadian_hemlock spruce_pine Tsuga_canadensis,common forest tree of the eastern United States and Canada; used especially for pulpwood
+37023,eastern_indigo_snake Drymarchon_corais_couperi,a variety of indigo snake
+37024,eastern_kingbird,a kingbird that breeds in North America and winters in tropical America; distinguished by a white band on the tip of the tail
+37025,eastern_lowland_gorilla Gorilla_gorilla_grauri,a kind of gorilla
+37026,eastern_meadowlark Sturnella_magna,a meadowlark of eastern North America
+37027,eastern_narrow-mouthed_toad Gastrophryne_carolinensis,small toad of southeastern United States
+37028,eastern_pipistrel Pipistrellus_subflavus,one of the smallest bats of eastern North America
+37029,eastern_poison_oak Toxicodendron_quercifolium Rhus_quercifolia Rhus_toxicodenedron,poisonous shrub of southeastern United States causing a rash on contact
+37030,eastern_red-backed_salamander Plethodon_cinereus,common salamander of eastern North America
+37031,eastern_red_cedar red_cedar red_juniper Juniperus_virginiana,small juniper found east of Rocky Mountains having a conic crown, brown bark that peels in shreds, and small sharp needles
+37032,eastern_woodrat Neotoma_floridana,large greyish-brown wood rat of the southeastern United States
+37033,easterner,an inhabitant of an eastern area; especially of the U.S.
+37034,easy_chair lounge_chair overstuffed_chair,a comfortable upholstered armchair
+37035,easy_money,the economic condition in which credit is easy to secure
+37036,easy_money gravy_train,income obtained with a minimum of effort
+37037,easy_street,financial security
+37038,easygoingness,being without worry or concern
+37039,eatage forage pasture pasturage grass,bulky food like grass or hay for browsing or grazing horses or cattle
+37040,eater,any green goods that are good to eat; "these apples are good eaters"
+37041,eater feeder,someone who consumes food for nourishment
+37042,eating feeding,the act of consuming food
+37043,eating_apple dessert_apple,an apple used primarily for eating raw without cooking
+37044,eating_disorder,a disorder of the normal eating routine
+37045,eau_de_vie,strong coarse brandy
+37046,eaves,the overhang at the lower edge of a roof
+37047,eavesdropper,a secret listener to private conversations
+37048,ebb ebbing wane,a gradual decline (in size or strength or power or number)
+37049,ebb reflux,the outward flow of the tide
+37050,ebbtide,the tide while water is flowing out
+37051,eblis,(Islam) the principal evil jinni in Islamic mythology
+37052,ebony,hard dark-colored heartwood of the ebony tree; used in cabinetwork and for piano keys
+37053,ebony ebony_tree Diospyros_ebenum,tropical tree of southern Asia having hard dark-colored heartwood used in cabinetwork
+37054,ebony_spleenwort Scott's_Spleenwort Asplenium_platyneuron,common North American fern with polished black stripes
+37055,eburnation,a change that occurs in degenerative joint disease in which bone is converted into a dense smooth substance resembling ivory
+37056,ecarte,a card game for 2 players; played with 32 cards and king high
+37057,ecce_homo,a representation (a picture or sculpture) of Jesus wearing a crown of thorns
+37058,eccentric eccentric_person flake oddball geek,a person with an unusual or odd personality
+37059,eccentricity,(geometry) a ratio describing the shape of a conic section; the ratio of the distance between the foci to the length of the major axis; "a circle is an ellipse with zero eccentricity"
+37060,eccentricity,a circularity that has a different center or deviates from a circular path
+37061,eccentricity,strange and unconventional behavior
+37062,ecchymosis,the purple or black-and-blue area resulting from a bruise
+37063,ecchymosis,the escape of blood from ruptured blood vessels into the surrounding tissue to form a purple or black-and-blue spot on the skin
+37064,ecclesiastical_attire ecclesiastical_robe,attire that is appropriate to wear in a church
+37065,ecclesiastical_mode Gregorian_mode church_mode medieval_mode,any of a system of modes used in Gregorian chants up until 1600; derived historically from the Greek mode
+37066,ecclesiastical_province,the district within the jurisdiction of an archbishop or a metropolitan or one of the territorial divisions of an ecclesiastical order; "the general of the Jesuits has several provinces under him"
+37067,ecclesiasticism,religion appropriate to a church and to ecclesiastical principles and practices
+37068,ecclesiasticism,excessive adherence to ecclesiastical forms and activities; "their ecclesiasticism overwhelmed their religion"
+37069,ecclesiology,the branch of theology concerned with the nature and the constitution and the functions of a church
+37070,eccrine_gland,a small sweat gland that produces only a fluid; restricted to the human skin
+37071,echelon,status in a society or organization; "the upper echelon"
+37072,echelon,a body of troops arranged in a line
+37073,echelon,a diffraction grating consisting of a pile of plates of equal thickness arranged stepwise with a constant offset
+37074,echidna spiny_anteater anteater,a burrowing monotreme mammal covered with spines and having a long snout and claws for hunting ants and termites; native to New Guinea
+37075,echidna spiny_anteater anteater,a burrowing monotreme mammal covered with spines and having a long snout and claws for hunting ants and termites; native to Australia
+37076,echinocactus barrel_cactus,any cactus of the genus Echinocactus; strongly ribbed and very spiny; southwestern United States to Brazil
+37077,echinococcosis hydatid_disease hydatidosis,infestation with larval echinococci (tapeworms)
+37078,echinococcus,tapeworms whose larvae are parasitic in humans and domestic animals
+37079,echinoderm,marine invertebrates with tube feet and five-part radially symmetrical bodies
+37080,echinoderm_family,a family of echinoderms
+37081,echinoderm_genus,a genus of echinoderms
+37082,echinus,ovolo molding between the shaft and the abacus of a Doric column
+37083,echo,a reply that repeats what has just been said
+37084,echo,a reflected television or radio or radar beam
+37085,echo,a close parallel of a feeling, idea, style, etc.; "his contention contains more than an echo of Rousseau"; "Napoleon III was an echo of the mighty Emperor but an infinitely better man"
+37086,echo,an imitation or repetition; "the flower arrangement was created as an echo of a client's still life"
+37087,echo reverberation sound_reflection replication,the repetition of a sound resulting from reflection of the sound waves; "she could hear echoes of her own footsteps"
+37088,echo_chamber,an enclosed space for producing reverberation of a sound
+37089,echocardiogram,a graphical image of the heart produced by an echocardiograph
+37090,echocardiograph,a sonograph that creates an image of the heart and its abnormalities
+37091,echocardiography,a noninvasive diagnostic procedure that uses ultrasound to study to structure and motions of the heart
+37092,echoencephalogram,a graphical image of the brain produced by an echoencephalograph
+37093,echoencephalograph,a sonograph that creates an image of the brain and its abnormalities
+37094,echoencephalography,a noninvasive diagnostic procedure that uses ultrasound to study the anatomy of the brain
+37095,echolalia,an infant's repetition of sounds uttered by others
+37096,echolalia,(psychiatry) mechanical and meaningless repetition of the words of another person (as in schizophrenia)
+37097,echolocation echo_sounding,determining the location of something by measuring the time it takes for an echo to return from it
+37098,echovirus,any of a group of viruses associated with various diseases including viral meningitis and mild respiratory disorders and diarrhea in newborn infants
+37099,eclair,oblong cream puff
+37100,eclampsia,a toxic condition characterized by convulsions and possibly coma during or immediately after pregnancy
+37101,eclat,brilliant or conspicuous success or effect; "the eclat of a great achievement"
+37102,eclectic eclecticist,someone who selects according to the eclectic method
+37103,eclecticism eclectic_method,making decisions on the basis of what seems best instead of following some single doctrine or style
+37104,eclipse occultation,one celestial body obscures another
+37105,ecliptic,the great circle representing the apparent annual path of the sun; the plane of the Earth's orbit around the sun; makes an angle of about 23 degrees with the equator; "all of the planets rotate the sun in approximately the same ecliptic"
+37106,eclogue bucolic idyll idyl,a short poem descriptive of rural or pastoral life
+37107,ecobabble,using the technical language of ecology to make the user seem ecologically aware
+37108,ecologist,a biologist who studies the relation between organisms and their environment
+37109,ecology,the environment as it relates to living organisms; "it changed the ecology of the island"
+37110,ecology bionomics environmental_science,the branch of biology concerned with the relations between organisms and their environment
+37111,econometrician econometrist,an economist who uses statistical and mathematical methods
+37112,econometrics,the application of mathematics and statistics to the study of economic and financial data
+37113,economic_condition,the condition of the economy
+37114,economic_geography,the branch of geography concerned with the production and distribution of commodities
+37115,economic_geology,the branch of geology that deals with economically valuable geological materials
+37116,economic_growth,steady growth in the productive capacity of the economy (and so a growth of national income)
+37117,economic_libertarian,a libertarian who advocates maximizing individual rights and minimizing the role of the state
+37118,economic_mobilization economic_mobilisation,mobilization of the economy
+37119,economic_policy,a government policy for maintaining economic growth and tax revenues
+37120,economic_process,any process affecting the production and development and management of material wealth
+37121,economic_rent rent,the return derived from cultivated land in excess of that derived from the poorest land cultivated under similar conditions
+37122,economic_strangulation,punishment of a group by cutting off commercial dealings with them; "the economic strangulation of the Jews by the Nazi Party"
+37123,economic_theory,(economics) a theory of commercial activities (such as the production and consumption of goods)
+37124,economics economic_science political_economy,the branch of social science that deals with the production and distribution and consumption of goods and services and their management
+37125,economics_department department_of_economics,the academic department responsible for teaching and research in economics
+37126,economics_profession,the body of professional economists
+37127,economist economic_expert,an expert in the science of economics
+37128,economizer economiser,a frugal person who limits spending and avoids waste
+37129,economy,the efficient use of resources; "economy of effort"
+37130,economy economic_system,the system of production and distribution and consumption
+37131,economy saving,an act of economizing; reduction in cost; "it was a small economy to walk to work every day"; "there was a saving of 50 cents"
+37132,economy thriftiness,frugality in the expenditure of money or resources; "the Scots are famous for their economy"
+37133,economy_of_scale,the saving in cost of production that is due to mass production
+37134,ecosystem,a system formed by the interaction of a community of organisms with their physical environment
+37135,ecoterrorism ecological_terrorism eco-warfare ecological_warfare,violence carried out to further the political or social objectives of the environmentalists
+37136,ecotourism,tourism to exotic or threatened ecosystems to observe wildlife or to help preserve nature
+37137,ecphonesis exclamation,an exclamatory rhetorical device; "O tempore! O mores"
+37138,ecstasy rapture,a state of elated bliss
+37139,ecstasy rapture transport exaltation raptus,a state of being carried away by overwhelming emotion; "listening to sweet music in a perfect rapture"- Charles Dickens
+37140,ectasia ectasis,dilatation or distension of a hollow organ
+37141,ectoderm exoderm ectoblast,the outer germ layer that develops into skin and nervous tissue
+37142,ectomorph,a person with a thin body
+37143,ectoparasite ectozoan ectozoon epizoan epizoon,any external parasitic organism (as fleas)
+37144,ectopia,abnormal position of a part or organ (especially at the time of birth)
+37145,ectopic_pregnancy extrauterine_pregnancy ectopic_gestation extrauterine_gestation eccyesis metacyesis,pregnancy resulting from gestation elsewhere than in the uterus
+37146,ectoplasm,(spiritualism) a substance supposed to emanate from the body of the medium during a trance
+37147,ectoplasm,the outer granule-free layer of cytoplasm
+37148,ectoproct,sessile mossy aquatic animal having the anus of the polyp outside the crown of tentacles
+37149,ectrodactyly,congenital abnormality involving the absence of some fingers or toes
+37150,ecumenical_council,(early Christian church) one of seven gatherings of bishops from around the known world under the presidency of the Pope to regulate matters of faith and morals and discipline; "the first seven councils through 787 are considered to be ecumenical councils by both the Roman Catholic church and the Eastern Orthodox church but the next fourteen councils are considered ecumenical only by the Roman Catholic church"
+37151,ecumenical_movement,a movement aimed to promote understanding and cooperation among Christian churches; aimed ultimately at universal Christian unity
+37152,ecumenism ecumenicism ecumenicalism,(Christianity) the doctrine of the ecumenical movement that promotes cooperation and better understanding among different religious denominations: aimed at universal Christian unity
+37153,ecumenism oecumenism,a movement promoting union between religions (especially between Christian churches)
+37154,eczema,generic term for inflammatory conditions of the skin; particularly with vesiculation in the acute stages
+37155,eczema_herpeticum,eczema characterized by a feverish condition and widespread eruption of vesicles; most common in children
+37156,eczema_vaccinatum Kaposi's_varicelliform_eruption,a now rare complication of vaccinia superimposed on atopic dermatitis with high fever and generalized vesicles and papulovesicles
+37157,edacity esurience rapaciousness rapacity voracity voraciousness,extreme gluttony
+37158,edacity esurience ravenousness voracity voraciousness,excessive desire to eat
+37159,edaphosaurus,heavy-bodied reptile with a dorsal sail or crest; of the late Paleozoic
+37160,eddy twist,a miniature whirlpool or whirlwind resulting when the current of a fluid doubles back on itself
+37161,edelweiss Leontopodium_alpinum,alpine perennial plant native to Europe having leaves covered with whitish down and small flower heads held in stars of glistening whitish bracts
+37162,edema oedema hydrops dropsy,swelling from excessive accumulation of watery fluid in cells, tissues, or serous cavities
+37163,edentate,primitive terrestrial mammal with few if any teeth; of tropical Central America and South America
+37164,edge,a slight competitive advantage; "he had an edge on the competition"
+37165,edge,the outside limit of an object or area or surface; a place farthest away from the center of something; "the edge of the leaf is wavy"; "she sat on the edge of the bed"; "the water's edge"
+37166,edge,a sharp side formed by the intersection of two surfaces of an object; "he rounded the edges of the box"
+37167,edge border,the boundary of a surface
+37168,edge sharpness,the attribute of urgency in tone of voice; "his voice had an edge to it"
+37169,edge_tool,any cutting tool with a sharp cutting edge (as a chisel or knife or plane or gouge)
+37170,edger,a person who puts finishing edges on a garment
+37171,edger,garden tool for cutting grass around the edges of a yard
+37172,edginess uneasiness inquietude disquietude,feelings of anxiety that make you tense and irritable
+37173,edging,border consisting of anything placed on the edge to finish something (such as a fringe on clothing or on a rug)
+37174,edibility edibleness,the property of being fit to eat
+37175,edible-pod_pea edible-podded_pea Pisum_sativum_macrocarpon,a variety of pea plant producing peas having soft thick edible pods lacking the fibrous inner lining of the common pea
+37176,edible_banana Musa_paradisiaca_sapientum,widely cultivated species of banana trees bearing compact hanging clusters of commercially important edible yellow fruit
+37177,edible_cockle Cardium_edule,common edible European cockle
+37178,edible_fat,oily or greasy matter making up the bulk of fatty tissue in animals and in seeds and other plant tissue
+37179,edible_fruit,edible reproductive body of a seed plant especially one having sweet flesh
+37180,edible_mussel Mytilus_edulis,a mussel with a dark shell that lives attached to rocks
+37181,edible_nut,a hard-shelled seed consisting of an edible kernel or meat enclosed in a woody or leathery shell
+37182,edible_sea_urchin Echinus_esculentus,a sea urchin that can be eaten
+37183,edible_seed,many are used as seasoning
+37184,edible_snail Helix_pomatia,one of the chief edible snails
+37185,edict,a formal or authoritative proclamation
+37186,edification sophistication,uplifting enlightenment
+37187,editing redaction,putting something (as a literary work or a legislative bill) into acceptable form
+37188,edition,all of the identical copies of something offered to the public at the same time; "the first edition appeared in 1920"; "it was too late for the morning edition"; "they issued a limited edition of Bach recordings"
+37189,edition,an issue of a newspaper; "he read it in yesterday's edition of the Times"
+37190,edition,the form in which a text (especially a printed book) is published
+37191,editor editor_in_chief,a person responsible for the editorial aspects of publication; the person who determines the final content of a text (especially of a newspaper or magazine)
+37192,editor_program editor,(computer science) a program designed to perform such editorial functions as rearrangement or modification or deletion of data
+37193,editorial_department,the department of a publishing business that edits material for publication
+37194,editorship,the position of editor
+37195,edmontosaurus,duck-billed dinosaur from Canada found as a fossilized mummy with skin
+37196,education,knowledge acquired by learning and instruction; "it was clear that he had a very broad education"
+37197,education,the gradual process of acquiring knowledge; "education is a preparation for life"; "a girl's education was less important than a boy's"
+37198,education,the profession of teaching (especially at a school or college or university)
+37199,education instruction teaching pedagogy didactics educational_activity,the activities of educating or instructing; activities that impart knowledge or skill; "he received no formal education"; "our instruction was carefully programmed"; "good classroom teaching is seldom rewarded"
+37200,education training breeding,the result of good upbringing (especially knowledge of correct social behavior); "a woman of breeding and refinement"
+37201,educational_institution,an institution dedicated to education
+37202,educational_program,a program for providing education
+37203,educationist educationalist,a specialist in the theory of education
+37204,educator pedagogue pedagog,someone who educates young people
+37205,edutainment,entertainment that is intended to be educational
+37206,eel,the fatty flesh of eel; an elongate fish found in fresh water in Europe and America; large eels are usually smoked or pickled
+37207,eel,voracious snakelike marine or freshwater fishes with smooth slimy usually scaleless skin and having a continuous vertical fin but no ventral fins
+37208,eelblenny,eellike fishes found in subarctic coastal waters
+37209,eelgrass grass_wrack sea_wrack Zostera_marina,submerged marine plant with very long narrow leaves found in abundance along North Atlantic coasts
+37210,eelpout pout,marine eellike mostly bottom-dwelling fishes of northern seas
+37211,eelworm,any of various small free-living plant-parasitic roundworms
+37212,eeriness ghostliness,strangeness by virtue of being mysterious and inspiring fear
+37213,effacement,shortening of the uterine cervix and thinning of its walls as it is dilated during labor
+37214,effacement self-effacement,withdrawing into the background; making yourself inconspicuous
+37215,effect,a symptom caused by an illness or a drug; "the effects of sleep loss"; "the effect of the anesthetic"
+37216,effect,an impression (especially one that is artificial or contrived); "he just did it for effect"
+37217,effect essence burden core gist,the central meaning or theme of a speech or literary work
+37218,effect force,(of a law) having legal validity; "the law is still in effect"
+37219,effecter effector,one who brings about a result or event; one who accomplishes a purpose
+37220,effectiveness effectivity effectualness effectuality,power to be effective; the quality of being able to bring about an effect
+37221,effector,a nerve fiber that terminates on a muscle or gland and stimulates contraction or secretion
+37222,effector,an organ (a gland or muscle) that becomes active in response to nerve impulses
+37223,effects personal_effects,property of a personal character that is portable but not used in business; "she left some of her personal effects in the house"; "I watched over their effects until they returned"
+37224,effeminacy effeminateness sissiness softness womanishness unmanliness,the trait of being effeminate (derogatory of a man); "the students associated science with masculinity and arts with effeminacy"; "Spartans accused Athenians of effeminateness"; "he was shocked by the softness of the atmosphere surrounding the young prince, arising from the superfluity of the femininity that guided him"
+37225,effendi,a former Turkish term of respect; especially for government officials
+37226,effervescence,the process of bubbling as gas escapes
+37227,efficacy efficaciousness,capacity or power to produce a desired effect; "concern about the safety and efficacy of the vaccine"
+37228,efficiency,the ratio of the output to the input of any system
+37229,efficiency,skillfulness in avoiding wasted time and effort; "she did the work with great efficiency"
+37230,efficiency_apartment,a furnished apartment with a kitchenette and bathroom
+37231,efficiency_expert efficiency_engineer,an expert in increasing the efficient use of machines and personnel
+37232,effigy image simulacrum,a representation of a person (especially in the form of sculpture); "the coin bears an effigy of Lincoln"; "the emperor's tomb had his image carved in stone"
+37233,effleurage,a rhythmic stroking; "effleurage of the abdomen is used in the Lamaze method of childbirth"
+37234,efflorescence bloom,a powdery deposit on a surface
+37235,effluent wastewater sewer_water,water mixed with waste matter
+37236,effluvium,a foul-smelling outflow or vapor (especially a gaseous waste)
+37237,effort elbow_grease exertion travail sweat,use of physical or mental energy; hard work; "he got an A for effort"; "they managed only with great exertion"
+37238,effortfulness,the quality of requiring deliberate effort
+37239,effortlessness,the quality of requiring little effort; "such effortlessness is achieved only after hours of practice"
+37240,effusion,flow under pressure
+37241,effusion gush outburst blowup ebullition,an unrestrained expression of emotion
+37242,effusiveness expansiveness expansivity,a friendly open trait of a talkative person
+37243,eft,a newt in its terrestrial stage of development
+37244,egalitarian equalitarian,a person who believes in the equality of all people
+37245,egalitarianism equalitarianism,the doctrine of the equality of mankind and the desirability of political and economic and social equality
+37246,egality egalite,social and political equality; "egality represents an extreme leveling of society"
+37247,egg,animal reproductive body consisting of an ovum or embryo together with nutritive and protective envelopes; especially the thin-shelled reproductive body laid by e.g. female birds
+37248,egg eggs,oval reproductive body of a fowl (especially a hen) used as food
+37249,egg-and-dart egg-and-anchor egg-and-tongue,a decorative molding; a series of egg-shaped figures alternating with another shape
+37250,egg_cream,made of milk and flavored syrup with soda water
+37251,egg_foo_yong egg_fu_yung,omelet containing onions and celery and chopped meat or fish
+37252,egg_noodle,narrow strip of pasta dough made with eggs
+37253,egg_roll spring_roll,minced vegetables and meat wrapped in a pancake and fried
+37254,egg_timer,a sandglass that runs for three minutes; used to time the boiling of eggs
+37255,egg_white white albumen ovalbumin,the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water; "she separated the whites from the yolks of several eggs"
+37256,egg_yolk yolk,the yellow spherical part of an egg that is surrounded by the albumen
+37257,eggar egger,moth having nonfunctional mouthparts as adults; larvae feed on tree foliage and spin egg-shaped cocoons
+37258,eggbeater eggwhisk,a mixer for beating eggs or whipping cream
+37259,eggcup egg_cup,dishware consisting of a small cup for serving a boiled egg
+37260,eggdrop_soup,made by stirring beaten eggs into a simmering broth
+37261,egghead,an intellectual; a very studious and academic person; "in spite of her love of reading she denied being an egghead"
+37262,eggnog,a punch made of sweetened milk or cream mixed with eggs and usually alcoholic liquor
+37263,eggplant aubergine brinjal eggplant_bush garden_egg mad_apple Solanum_melongena,hairy upright herb native to southeastern Asia but widely cultivated for its large glossy edible fruit commonly used as a vegetable
+37264,eggplant aubergine mad_apple,egg-shaped vegetable having a shiny skin typically dark purple but occasionally white or yellow
+37265,eggs_Benedict,toasted English muffin topped with ham and a poached egg (or an oyster) and hollandaise sauce
+37266,eggshake,a milkshake with egg in it
+37267,ego,(psychoanalysis) the conscious mind
+37268,ego egotism self-importance,an inflated feeling of pride in your superiority to others
+37269,ego_ideal,(psychoanalysis) the part of the ego that contains an ideal of personal excellence toward which a person strives
+37270,egocentric egoist,a self-centered person with little regard for others
+37271,egoism,(ethics) the theory that the pursuit of your own welfare in the basis of morality
+37272,egoism egocentrism self-interest self-concern self-centeredness,concern for your own interests and welfare
+37273,egomania,an intense and irresistible love for yourself and concern for your own needs
+37274,egomaniac,an abnormally egotistical person
+37275,egotism self-importance swelled_head,an exaggerated opinion of your own importance
+37276,egotist egoist swellhead,a conceited and self-centered person
+37277,egress egression emergence,the act of coming (or going) out; becoming apparent
+37278,egress emersion,(astronomy) the reappearance of a celestial body after an eclipse
+37279,egret,any of various usually white herons having long plumes during breeding season
+37280,eicosapentaenoic_acid,an omega-3 fatty acid with 20 carbon atoms; found in fish (especially tuna and bluefish)
+37281,eider eider_duck,duck of the northern hemisphere much valued for the fine soft down of the females
+37282,eiderdown,down of the eider duck
+37283,eiderdown duvet continental_quilt,a soft quilt usually filled with the down of the eider
+37284,eidos,(anthropology) the distinctive expression of the cognitive or intellectual character of a culture or a social group
+37285,eigenvalue eigenvalue_of_a_matrix eigenvalue_of_a_square_matrix characteristic_root_of_a_square_matrix,(mathematics) any number such that a given square matrix minus that number times the identity matrix has a zero determinant
+37286,eight 8 VIII eighter eighter_from_Decatur octad ogdoad octonary octet,the cardinal number that is the sum of seven and one
+37287,eight-spot eight,one of four playing cards in a deck with eight pips on the face
+37288,eight_ball,a black pool ball bearing the number 8; should be the last to go in certain pool games
+37289,eighteen 18 XVIII,the cardinal number that is the sum of seventeen and one
+37290,eighteenth,position 18 in a countable series of things
+37291,eighth,position eight in a countable series of things
+37292,eighth_note quaver,a musical note having the time value of an eighth of a whole note
+37293,eighties 1880s,the decade from 1880 to 1889
+37294,eighties 1980s,the decade from 1980 to 1989
+37295,eighties mid-eighties,the time of life between 80 and 90
+37296,eightieth,position 80 in a countable series of things
+37297,eightpence,a coin worth eight pennies
+37298,eightpenny_nail,a nail 2.5 inches long
+37299,eightsome,a Scottish reel for eight dancers
+37300,eighty 80 LXXX fourscore,the cardinal number that is the product of ten and eight
+37301,einsteinium Es E atomic_number_99,a radioactive transuranic element produced by bombarding plutonium with neutrons
+37302,eisegesis,personal interpretation of a text (especially of the Bible) using your own ideas
+37303,eisteddfod,any of several annual Welsh festivals involving artistic competitions (especially in singing)
+37304,eitchen_midden midden kitchen_midden,(archeology) a mound of domestic refuse containing shells and animal bones marking the site of a prehistoric settlement
+37305,ejaculation,the discharge of semen in males
+37306,ejaculation interjection,an abrupt emphatic exclamation expressing emotion
+37307,ejaculator,a man who ejaculates semen
+37308,ejaculator,a speaker who utters a sudden exclamation
+37309,ejaculatory_duct,a part of the seminal duct formed by the duct from the seminal vesicle and the vas deferens; passes through the prostate gland
+37310,ejection exclusion expulsion riddance,the act of forcing out someone or something; "the ejection of troublemakers by the police"; "the child's expulsion from school"
+37311,ejection_seat ejector_seat capsule,a pilot's seat in an airplane that can be forcibly ejected in the case of an emergency; then the pilot descends by parachute
+37312,elaborateness elaboration intricacy involution,marked by elaborately complex detail
+37313,elaboration working_out,developing in intricate and painstaking detail
+37314,elaidic_acid,a monounsaturated fatty acid that has the same structure as oleic acid except that it is a trans fatty acid; the major trans fatty acid in margarine and fried foods
+37315,elan,enthusiastic and assured vigor and liveliness; "a performance of great elan and sophistication"
+37316,eland,either of two large African antelopes of the genus Taurotragus having short spirally twisted horns in both sexes
+37317,elapid elapid_snake,any of numerous venomous fanged snakes of warmer parts of both hemispheres
+37318,elapsed_time,the time that elapses while some event is occurring
+37319,elasmobranch selachian,any of numerous fishes of the class Chondrichthyes characterized by a cartilaginous skeleton and placoid scales: sharks; rays; skates
+37320,elastance electrical_elastance,the reciprocal of capacitance
+37321,elastance_unit,the reciprocal of capacitance
+37322,elastase,a pancreatic enzyme that catalyzes the hydrolysis of elastin
+37323,elastic,a fabric made of yarns containing an elastic material
+37324,elastic_bandage,a bandage containing stretchable material that can apply local pressure
+37325,elastic_device,any flexible device that will return to its original shape when stretched
+37326,elastic_energy elastic_potential_energy,potential energy that is stored when a body is deformed (as in a coiled spring)
+37327,elastic_tissue,connective tissue consisting chiefly of elastic fibers found in the dermis of the skin and in the walls of veins and arteries and in some tendons and ligaments
+37328,elasticity snap,the tendency of a body to return to its original shape after it has been stretched or compressed; "the waistband had lost its snap"
+37329,elasticity_of_shear,the elasticity of a body that has been pulled out of shape by a shearing force
+37330,elastin,a fibrous scleroprotein found in elastic tissues such as the walls of arteries
+37331,elastomer,any of various elastic materials that resemble rubber (resumes its original shape when a deforming force is removed)
+37332,elastosis,breakdown of elastic tissue (as the loss of elasticity in the skin of elderly people that results from degeneration of connective tissue)
+37333,elaterid_beetle elater elaterid,any of various widely distributed beetles
+37334,elation,an exhilarating psychological state of pride and optimism; an absence of depression
+37335,elation high_spirits lightness,a feeling of joy and pride
+37336,elbow,a length of pipe with a sharp bend in it
+37337,elbow,a sharp bend in a road or river
+37338,elbow,the part of a sleeve that covers the elbow joint; "his coat had patches over the elbows"
+37339,elbow,the joint of a mammal or bird that corresponds to the human elbow
+37340,elbow elbow_joint human_elbow cubitus cubital_joint articulatio_cubiti,hinge joint between the forearm and upper arm and the corresponding joint in the forelimb of a quadruped
+37341,elbow_pad,protective garment consisting of a pad worn over the elbow by football and hockey players
+37342,elbowing,jostling with the elbows; "elbowing is a foul in basketball"
+37343,elder,any of various church officers
+37344,elder elderberry_bush,any of numerous shrubs or small trees of temperate and subtropical northern hemisphere having white flowers and berrylike fruit
+37345,elder senior,a person who is older than you are
+37346,elder_statesman,any influential person whose advice is highly respected
+37347,elder_statesman,an elderly statesman whose advice is sought be government leaders
+37348,elderberry,berrylike fruit of an elder used for e.g. wines and jellies
+37349,eldership,the office of elder
+37350,eldest_hand elder_hand,the card player on the dealer's left
+37351,elecampane Inula_helenium,tall coarse Eurasian herb having daisylike yellow flowers with narrow petals whose rhizomatous roots are used medicinally
+37352,elected_official,official who won the office in a free election
+37353,election,the status or fact of being elected; "they celebrated his election"
+37354,election,the predestination of some individuals as objects of divine mercy (especially as conceived by Calvinists)
+37355,election,a vote to select the winner of a position or political office; "the results of the election will be announced tonight"
+37356,election,the act of selecting someone or something; the exercise of deliberate choice; "her election of medicine as a profession"
+37357,election_commission,a commission delegated to supervise an election
+37358,election_fraud,misrepresentation or alteration of the true results of an election
+37359,electioneering bell_ringing canvassing,persuasion of voters in a political campaign
+37360,elective_course elective,a course that the student can select from among alternatives
+37361,electoral_college,the body of electors who formally elect the United States president and vice president
+37362,electorate,the body of enfranchised citizens; those qualified to vote
+37363,electric electric_automobile electric_car,a car that is powered by electricity
+37364,electric-discharge_lamp gas-discharge_lamp,an electric lamp in which the light comes from an electric discharge between two electrodes in a glass tube
+37365,electric_bell,a bell activated by the magnetic effect of an electric current
+37366,electric_bill,a bill for money owed for electricity used
+37367,electric_blanket,a blanket containing and electric heating element that can be controlled to the desired temperature by a rheostat
+37368,electric_burn,a burn caused by heat produced by an electric current
+37369,electric_catfish Malopterurus_electricus,freshwater catfish of the Nile and tropical central Africa having an electric organ
+37370,electric_chair chair death_chair hot_seat,an instrument of execution by electrocution; resembles an ordinary seat for one person; "the murderer was sentenced to die in the chair"
+37371,electric_clock,a clock using a small electric motor
+37372,electric_dipole electric_doublet,a dipole with equal and opposite electric charges
+37373,electric_dipole_moment,the dipole moment in an electric dipole
+37374,electric_drill,a rotating power drill powered by an electric motor
+37375,electric_eel Electrophorus_electric,eel-shaped freshwater fish of South America having electric organs in its body
+37376,electric_fan blower,a fan run by an electric motor
+37377,electric_field,a field of force surrounding a charged particle
+37378,electric_frying_pan,a frying pan heated by electricity
+37379,electric_furnace,any furnace in which the heat is provided by an electric current
+37380,electric_guitar,a guitar whose sound is amplified by electrical means
+37381,electric_hammer,a hammer driven by electric motor
+37382,electric_heater electric_fire,a small electric space heater
+37383,electric_lamp,a lamp powered by electricity
+37384,electric_locomotive,a locomotive that is powered by an electric motor
+37385,electric_main,a main that distributes electricity
+37386,electric_meter power_meter,a meter for measuring the amount of electric power used
+37387,electric_mixer,a food mixer powered by an electric motor
+37388,electric_motor,a motor that converts electricity to mechanical work
+37389,electric_organ electronic_organ Hammond_organ organ,(music) an electronic simulation of a pipe organ
+37390,electric_potential potential potential_difference potential_drop voltage,the difference in electrical charge between two points in a circuit expressed in volts
+37391,electric_range,a kitchen range in which the heat for cooking is provided by electric power
+37392,electric_ray crampfish numbfish torpedo,any sluggish bottom-dwelling ray of the order Torpediniformes having a rounded body and electric organs on each side of the head capable of emitting strong electric discharges
+37393,electric_refrigerator fridge,a refrigerator in which the coolant is pumped around by an electric motor
+37394,electric_resistance electrical_resistance impedance resistance resistivity ohmic_resistance,a material's opposition to the flow of electric current; measured in ohms
+37395,electric_shock,trauma caused by the passage of electric current through the body (as from contact with high voltage lines or being struck by lightning); usually involves burns and abnormal heart rhythm and unconsciousness
+37396,electric_shock,the use of electricity to administer punishment or torture; "they used cattle prods to administer electric shocks"
+37397,electric_shock electrical_shock shock,a reflex response to the passage of electric current through the body; "subjects received a small electric shock when they made the wrong response"; "electricians get accustomed to occasional shocks"
+37398,electric_socket,a socket into which a lightbulb can be inserted
+37399,electric_toothbrush,a toothbrush with an electric motor in the handle that vibrates the head of the brush
+37400,electric_typewriter,a typewriter powered by an electric motor
+37401,electrical_cable,a cable that provides an electrical connection for telephone or television or power stations
+37402,electrical_conduction,the passage of electricity through a conductor
+37403,electrical_contact,contact that allows current to pass from one conductor to another
+37404,electrical_converter,converter that converts alternating current into direct current or vice versa
+37405,electrical_device,a device that produces or is powered by electricity
+37406,electrical_discharge,a discharge of electricity
+37407,electrical_disturbance,electrical signals produced by unwanted sources (atmospherics or receiver noise or unwanted transmitters)
+37408,electrical_engineer,a person trained in practical applications of the theory of electricity
+37409,electrical_engineering EE,the branch of engineering science that studies the uses of electricity and the equipment for power generation and distribution and the control of machines and communication
+37410,electrical_line_of_force,a line of force in an electrical field
+37411,electrical_phenomenon,a physical phenomenon involving electricity
+37412,electrical_power electric_power wattage,the product of voltage and current
+37413,electrical_system,equipment in a motor vehicle that provides electricity to start the engine and ignite the fuel and operate the lights and windshield wiper and heater and air conditioner and radio
+37414,electrical_system electrical_plant,utility that provides electricity
+37415,electrical_work,the craft of an electrician
+37416,electrician lineman linesman,a person who installs or repairs electrical or telephone lines
+37417,electricity,a physical phenomenon associated with stationary or moving electrons and protons
+37418,electricity,keen and shared excitement; "the stage crackled with electricity whenever she was on it"
+37419,electricity electrical_energy power,energy made available by the flow of electric charge through a conductor; "they built a car that runs on electricity"; "The power went oout around midnight"
+37420,electrification,the activity of thrilling or markedly exciting some person or group
+37421,electrification,the act of providing electricity; "the electrification of rural Tennessee"
+37422,electro-acoustic_transducer,a transducer that converts electrical to acoustic energy or vice versa
+37423,electrocardiogram cardiogram EKG ECG,a graphical recording of the cardiac cycle produced by an electrocardiograph
+37424,electrocautery,application of a needle heated by an electric current to destroy tissue (as to remove warts)
+37425,electrochemistry,branch of chemistry that deals with the chemical action of electricity and the production of electricity by chemical reactions
+37426,electroconvulsive_therapy electroshock electroshock_therapy ECT,the administration of a strong electric current that passes through the brain to induce convulsions and coma
+37427,electrocution,killing by electric shock
+37428,electrocution burning,execution by electricity
+37429,electrocutioner,an executioner who uses electricity to kill the condemned person
+37430,electrode,a conductor used to make electrical contact with some part of a circuit
+37431,electrodeposition,the deposition of a substance on an electrode by the action of electricity (especially by electrolysis)
+37432,electrodynamometer,measuring instrument that uses the interaction of the magnetic fields of two coils to measure current or voltage or power
+37433,electroencephalogram encephalogram EEG,a graphical record of electrical activity of the brain; produced by an electroencephalograph
+37434,electroencephalograph,medical instrument that records electric currents generated by the brain
+37435,electrograph,an apparatus for the electrical transmission of pictures
+37436,electrograph,electrical device used for etching by electrolytic means
+37437,electrologist,someone skilled in the use of electricity to remove moles or warts or hair roots
+37438,electrolysis,(chemistry) a chemical decomposition reaction produced by passing an electric current through a solution containing ions
+37439,electrolysis,removing superfluous or unwanted hair by passing an electric current through the hair root
+37440,electrolyte,a solution that conducts electricity; "the proper amount and distribution of electrolytes in the body is essential for health"
+37441,electrolyte_balance,an equilibrium between the amounts of electrolytes (as calcium and sodium and potassium) that is essential for normal health and functioning
+37442,electrolytic electrolytic_capacitor electrolytic_condenser,a fixed capacitor consisting of two electrodes separated by an electrolyte
+37443,electrolytic_cell,a cell containing an electrolyte in which an applied voltage causes a reaction to occur that would not occur otherwise (such as the breakdown of water into hydrogen and oxygen)
+37444,electromagnet,a temporary magnet made by coiling wire around an iron core; when current flows in the coil the iron becomes a magnet
+37445,electromagnetic_delay_line,a delay line based on the time of propagation of electromagnetic waves
+37446,electromagnetic_interaction,an interaction between charged elementary particles that is intermediate in strength between the strong and weak interactions; mediated by photons
+37447,electromagnetic_intrusion,the deliberate insertion of electromagnetic energy into transmission paths with the objective of confusing or deceiving operators
+37448,electromagnetic_radiation electromagnetic_wave nonparticulate_radiation,radiation consisting of waves of energy associated with electric and magnetic fields resulting from the acceleration of an electric charge
+37449,electromagnetic_spectrum,the entire frequency range of electromagnetic waves
+37450,electromagnetic_unit emu,any of various systems of units for measuring electricity and magnetism
+37451,electromagnetism,magnetism produced by an electric current; "electromagnetism was discovered when it was observed that a copper wire carrying an electric current can magnetize pieces of iron or steel near it"
+37452,electromagnetism electromagnetics,the branch of physics concerned with electromagnetic phenomena
+37453,electromechanical_device,a mechanical device that is operated by electricity
+37454,electrometer,meter to measure electrostatic voltage differences; draws no current from the source
+37455,electromotive_series electromotive_force_series electrochemical_series,a serial arrangement of metallic elements or ions according to their electrode potentials determined under specified conditions; the order shows the tendency of one metal to reduce the ions of any other metal below it in the series
+37456,electromyogram EMG,a graphical record of electric currents associated with muscle contractions
+37457,electromyograph,a medical instrument that records the electrical waves associated with the activity of skeletal muscles
+37458,electromyography,diagnosis of neuromuscular disorders with the use of an electromyograph
+37459,electron negatron,an elementary particle with negative charge
+37460,electron_accelerator,collider that consists of an accelerator that collides electrons and positrons
+37461,electron_gun,the electrode that is the source of electrons in a cathode-ray tube or electron microscope; consists of a cathode that emits a stream of electrons and the electrostatic or electromagnetic apparatus that focuses it
+37462,electron_microscope,a microscope that is similar in purpose to a light microscope but achieves much greater resolving power by using a parallel beam of electrons to illuminate the object instead of a beam of light
+37463,electron_microscopy,microscopy with the use of electron microscopes
+37464,electron_multiplier,a vacuum tube that amplifies a flow of electrons
+37465,electron_optics,the branch of electronics that deals with beams of electrons and their focusing and deflection by magnetic fields
+37466,electron_shell,a grouping of electrons surrounding the nucleus of an atom; "the chemical properties of an atom are determined by the outermost electron shell"
+37467,electron_spin_resonance ESR electron_paramagnetic_resonance,microwave spectroscopy in which there is resonant absorption of radiation by a paramagnet
+37468,electron_volt eV,a unit of energy equal to the work done by an electron accelerated through a potential difference of 1 volt
+37469,electronegativity negativity,(chemistry) the tendency of an atom or radical to attract electrons in the formation of an ionic bond
+37470,electronic_balance,a balance that generates a current proportional to the displacement of the pan
+37471,electronic_communication,communication by computer
+37472,electronic_converter,(telecommunication) converter for converting a signal from one frequency to another
+37473,electronic_counter-countermeasures ECCM,electronic warfare undertaken to insure effective friendly use of the electromagnetic spectrum in spite of the enemy's use of electronic warfare
+37474,electronic_countermeasures ECM,electronic warfare undertaken to prevent or reduce an enemy's effective use of the electromagnetic spectrum
+37475,electronic_data_processing EDP,automatic data processing by electronic means without the use of tabulating cards or punched tapes
+37476,electronic_database on-line_database computer_database electronic_information_service,(computer science) a database that can be accessed by computers
+37477,electronic_deception,the deliberate use of electromagnetic energy in a manner intended to convey misleading information
+37478,electronic_device,a device that accomplishes its purpose electronically
+37479,electronic_equipment,equipment that involves the controlled conduction of electrons (especially in a gas or vacuum or semiconductor)
+37480,electronic_fetal_monitor electronic_foetal_monitor fetal_monitor foetal_monitor,an electronic monitor that monitors fetal heartbeat and the mother's uterine contractions during childbirth
+37481,electronic_instrument electronic_musical_instrument,a musical instrument that generates sounds electronically
+37482,electronic_mail e-mail email,(computer science) a system of world-wide electronic communication in which a computer user can compose a message at one terminal that can be regenerated at the recipient's terminal when the recipient logs in; "you cannot send packages by electronic mail"
+37483,electronic_reconnaissance,the detection and identification and evaluation and location of foreign electromagnetic radiations (other than radioactive)
+37484,electronic_signal,a signal generated by electronic means
+37485,electronic_surveillance,surveillance by electronic means (e.g. television)
+37486,electronic_text,text that is in a form that computer can store or display on a computer screen
+37487,electronic_voltmeter,a voltmeter whose sensitivity is increased by amplification
+37488,electronic_warfare EW,military action involving the use of electromagnetic energy to determine or exploit or reduce or prevent hostile use of the electromagnetic spectrum
+37489,electronic_warfare-support_measures ESM,electronic warfare undertaken under direct control of an operational commander to locate sources of radiated electromagnetic energy for the purpose of immediate threat recognition
+37490,electronics,the branch of physics that deals with the emission and effects of electrons and with the use of electronic devices
+37491,electronics_company,a company that makes and sells electronic instruments
+37492,electronics_industry,the manufacturers of electronic products considered collectively
+37493,electronics_intelligence ELINT,intelligence derived from electromagnetic radiations from foreign sources (other than radioactive sources)
+37494,electrophoresis cataphoresis dielectrolysis ionophoresis,the motion of charged particles in a colloid under the influence of an electric field; particles with a positive charge go to the cathode and negative to the anode
+37495,electrophorus,a simple electrostatic generator that generates repeated charges of static electricity
+37496,electroplate,any artifact that has been plated with a thin coat of metal by electrolysis
+37497,electroplater,a plater who uses electrolysis
+37498,electroretinogram,a graphical recording of the electrical activity of the retina that results when light is flashed into the eye
+37499,electroscope,measuring instrument that detects electric charge; two gold leaves diverge owing to repulsion of charges with like sign
+37500,electrosleep,unconsciousness brought about by the passage of a low voltage electric current through the brain
+37501,electrostatic_charge,the electric charge at rest on the surface of an insulated body (which establishes and adjacent electrostatic field)
+37502,electrostatic_field,electric field associated with static electric charges
+37503,electrostatic_generator electrostatic_machine Wimshurst_machine Van_de_Graaff_generator,electrical device that produces a high voltage by building up a charge of static electricity
+37504,electrostatic_precipitation,a process that removes suspended dust particles from a gas by applying a high voltage electrostatic charge to the particles and collecting them on charged plates
+37505,electrostatic_printer,a printer that uses an electric charge to deposit toner on paper
+37506,electrostatic_unit,any of various units of electricity based on forces of interaction between electric charges
+37507,electrostatics,the branch of physics that deals with static electricity
+37508,electrosurgery,surgery performed with electrical devices (as in electrocautery)
+37509,electrotherapist,someone who specializes in the treatment of disease by electricity
+37510,electrotherapy galvanism electric_healing electrical_healing,the therapeutic application of electricity to the body (as in the treatment of various forms of paralysis)
+37511,electrum,an alloy of gold and silver
+37512,elegance,a quality of neatness and ingenious simplicity in the solution of a problem (especially in science or mathematics); "the simplicity and elegance of his invention"
+37513,elegance,a refined quality of gracefulness and good taste; "she conveys an aura of elegance and gentility"
+37514,elegant_Habenaria Habenaria_elegans,slender inland rein orchid similar to coastal rein orchid but with pale greenish-yellow flowers
+37515,elegant_brodiaea Brodiaea_elegans,brodiaea having an umbel of violet or blue-violet flowers atop a leafless stalk; northern Oregon to southern California
+37516,elegiac_stanza,a quatrain in iambic pentameter with abab rhyme scheme
+37517,elegist,the author of a mournful poem lamenting the dead
+37518,elegy lament,a mournful poem; a lament for the dead
+37519,element,one of four substances thought in ancient and medieval cosmology to constitute the physical universe; "the alchemists believed that there were four elements"
+37520,element,the situation in which you are happiest and most effective; "in your element"
+37521,element,a straight line that generates a cylinder or cone
+37522,element,the most favorable environment for a plant or animal; "water is the element of fishes"
+37523,element_of_a_cone,a straight line joining the apex and a point on the base
+37524,element_of_a_cylinder,a straight line running the length of the cylinder
+37525,elementary_education,education in elementary subjects (reading and writing and arithmetic) provided to young students at a grade school
+37526,elementary_geometry parabolic_geometry Euclidean_geometry,(mathematics) geometry based on Euclid's axioms
+37527,elementary_particle fundamental_particle,(physics) a particle that is less complex than an atom; regarded as constituents of all matter
+37528,elements,violent or severe weather (viewed as caused by the action of the four elements); "they felt the full fury of the elements"
+37529,elemi gum_elemi,fragrant resin obtain from trees of the family Burseraceae and used as incense
+37530,eleostearic_acid elaeostearic_acid,a crystalline unsaturated fatty acid
+37531,elephant,the symbol of the Republican Party; introduced in cartoons by Thomas Nast in 1874
+37532,elephant,five-toed pachyderm
+37533,elephant's-foot,any plant of the genus Elephantopus having heads of blue or purple flowers; America
+37534,elephant's-foot tortoise_plant Hottentot_bread_vine Hottentot's_bread_vine Dioscorea_elephantipes,South African vine having a massive rootstock covered with deeply fissured bark
+37535,elephant_bird aepyornis,huge (to 9 ft.) extinct flightless bird of Madagascar
+37536,elephant_seal sea_elephant,either of two large northern Atlantic earless seals having snouts like trunks
+37537,elephant_tree Bursera_microphylla,small tree or shrub of the southwestern United States having a spicy odor and odd-pinnate leaves and small clusters of white flowers
+37538,elephantiasis,hypertrophy of certain body parts (usually legs and scrotum); the end state of the disease filariasis
+37539,elephantiasis_neuromatosa,hypertrophy of a limb
+37540,elephantiasis_scroti chyloderma,swelling of the scrotum resulting from chronic lymphatic obstruction
+37541,elevated_railway elevated_railroad elevated el overhead_railway,a railway that is powered by electricity and that runs on a track that is raised above the street level
+37542,elevation,distance of something above a reference point (such as sea level); "there was snow at the higher elevations"
+37543,elevation,(ballet) the height of a dancer's leap or jump; "a dancer of exceptional elevation"
+37544,elevation,drawing of an exterior of a structure
+37545,elevation EL altitude ALT,angular distance above the horizon (especially of a celestial object)
+37546,elevation lift raising,the event of something being raised upward; "an elevation of the temperature in the afternoon"; "a raising of the land resulting from volcanic activity"
+37547,elevator,the airfoil on the tailplane of an aircraft that makes it ascend or descend
+37548,elevator lift,lifting device consisting of a platform or cage that is raised and lowered mechanically in a vertical shaft in order to move people from one floor to another in a building
+37549,elevator_girl,a girl employed to operate an elevator
+37550,elevator_man elevator_boy liftman,a man employed to operate an elevator; "in England they call an elevator man a liftman"
+37551,elevator_operator,an operator of an elevator
+37552,elevator_shaft,a vertical shaft in a building to permit the passage of an elevator from floor to floor
+37553,eleven 11 XI,the cardinal number that is the sum of ten and one
+37554,eleven-plus 11-plus,(formerly in Britain) an examination taken by 11 and 12 year old students to select suitable candidates for grammar school
+37555,eleventh,position 11 in a countable series of things
+37556,eleventh_hour last_minute,the latest possible moment; "money became available at the eleventh hour"; "at the last minute the government changed the rules"
+37557,elf hob gremlin pixie pixy brownie imp,(folklore) fairies that are somewhat mischievous
+37558,elf_cup,apothecium of a fungus of the family Pezizaceae
+37559,eligibility,the quality or state of being eligible; "eligibility of a candidate for office"; "eligibility for a loan"
+37560,elimination,the act of removing an unknown mathematical quantity by combining equations
+37561,elimination evacuation excretion excreting voiding,the bodily process of discharging waste matter
+37562,elimination liquidation,the murder of a competitor
+37563,elimination reasoning_by_elimination,analysis of a problem into alternative possibilities followed by the systematic rejection of unacceptable alternatives
+37564,elimination riddance,the act of removing or getting rid of something
+37565,elimination_reaction,a chemical reaction in which a molecule decomposes to two different molecules
+37566,elimination_tournament,a tournament in which losers are eliminated in successive rounds
+37567,eliminator,an agent that eliminates something
+37568,elision,omission of a sound between two words (usually a vowel and the end of one word or the beginning of the next)
+37569,elite elite_group,a group or class of persons enjoying superior intellectual or social or economic status
+37570,elitism,the attitude that society should be governed by an elite group of individuals
+37571,elitist,someone who believes in rule by an elite group
+37572,elixir,a sweet flavored liquid (usually containing a small amount of alcohol) used in compounding medicines to be taken by mouth in order to mask an unpleasant taste
+37573,elixir,a substance believed to cure all ills
+37574,elixir_of_life,a hypothetical substance believed to maintain life indefinitely; once sought by alchemists
+37575,elk moose Alces_alces,large northern deer with enormous flattened antlers in the male; called `elk' in Europe and `moose' in North America
+37576,ell,an extension at the end and at right angles to the main building
+37577,ellipse oval,a closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it; "the sums of the distances from the foci to any point on an ellipse is constant"
+37578,ellipsis eclipsis,omission or suppression of parts of words or sentences
+37579,ellipsoid,a surface whose plane sections are all ellipses or circles; "the Earth is an ellipsoid"
+37580,elliptic_geometry Riemannian_geometry,(mathematics) a non-Euclidean geometry that regards space as like a sphere and a line as like a great circle; "Bernhard Riemann pioneered elliptic geometry"
+37581,elliptic_leaf,a simple leaf shaped like an ellipse
+37582,elm elm_tree,any of various trees of the genus Ulmus: important timber or shade trees
+37583,elm elmwood,hard tough wood of an elm tree; used for e.g. implements and furniture
+37584,elocution,an expert manner of speaking involving control of voice and gesture
+37585,elocutionist,a public speaker trained in voice production and gesture and delivery
+37586,elongation,the quality of being elongated
+37587,elongation,the act of lengthening something
+37588,elongation extension,an addition to the length of something
+37589,elopement,the act of running away with a lover (usually to get married)
+37590,eloquence fluency smoothness,powerful and effective language; "his eloquence attracted a large congregation"; "fluency in spoken and written English is essential"; "his oily smoothness concealed his guilt from the police"
+37591,elsholtzia,any of various aromatic herbs of the genus Elsholtzia having blue or purple flowers in one-sided spikes
+37592,eluate,a liquid solution that results from elution
+37593,elucidation,an act of explaining that serves to clear up and cast light on
+37594,elusiveness,the quality of being difficult to grasp or pin down; "the author's elusiveness may at times be construed as evasiveness"
+37595,elution,the process of extracting one material from another by washing with a solvent to remove adsorbed material from an adsorbent (as in washing of loaded ion-exchange resins to remove captured ions); used to obtain uranium ions
+37596,elver,young eel; may be sauteed or batter-fried
+37597,elver,young eel
+37598,elves,an acronym for emissions of light and very low frequency perturbations due to electromagnetic pulse sources; extremely bright extremely short (less than a msec) electrical flashes forming a huge ring (up to 400 km diameter) in the ionosphere
+37599,em em_quad mutton_quad,a quad with a square body; "since `em quad' is hard to distinguish from `en quad', printers sometimes called it a `mutton quad'"
+37600,em pica_em pica,a linear unit (1/6 inch) used in printing
+37601,emanation,something that is emitted or radiated (as a gas or an odor or a light, etc.)
+37602,emanation rise procession,(theology) the origination of the Holy Spirit at Pentecost; "the emanation of the Holy Spirit"; "the rising of the Holy Ghost"; "the doctrine of the procession of the Holy Spirit from the Father and the Son"
+37603,emancipation,freeing someone from the control of another; especially a parent's relinquishing authority and control over a minor child
+37604,emancipator manumitter,someone who frees others from bondage; "Lincoln is known as the Great Emancipator"
+37605,emarginate_leaf,a leaf having a notch at the apex
+37606,emasculation,loss of power and masculinity
+37607,embalmer,a mortician who treats corpses with preservatives
+37608,embalmment,preservation (of a dead body) by treating with balsams and drugs and other chemicals
+37609,embankment,a long artificial mound of stone or earth; built to hold back water or to support a road or as protection
+37610,embargo trade_embargo trade_stoppage,a government order imposing a trade barrier
+37611,embarrassment,the state of being embarrassed (usually by some financial inadequacy); "he is currently suffering financial embarrassments"
+37612,embarrassment,the shame you feel when your inadequacy or guilt is made public
+37613,embarrassment,some event that causes someone to be embarrassed; "the outcome of the vote was an embarrassment for the liberals"
+37614,embassy,an ambassador and his entourage collectively
+37615,embassy,a diplomatic building where ambassadors live or work
+37616,embellishment,a superfluous ornament
+37617,embellishment embroidery,elaboration of an interpretation by the use of decorative (sometimes fictitious) detail; "the mystery has been heightened by many embellishments in subsequent retellings"
+37618,ember coal,a hot fragment of wood or coal that is left from a fire and is glowing or smoldering
+37619,embezzlement peculation defalcation misapplication misappropriation,the fraudulent appropriation of funds or property entrusted to your care but actually owned by someone else
+37620,embezzler defalcator peculator,someone who violates a trust by taking (money) for his own use
+37621,embitterment,the state of being embittered; "the embitterment that resulted from the loss of his job never left him"
+37622,emblem,special design or visual object representing a quality, type, group, etc.
+37623,emblem allegory,a visible symbol representing an abstract idea
+37624,embodiment,giving concrete form to an abstract concept
+37625,embodiment incarnation avatar,a new personification of a familiar idea; "the embodiment of hope"; "the incarnation of evil"; "the very avatar of cunning"
+37626,embolectomy,surgical removal of an embolus (usually from an artery)
+37627,embolism,occlusion of a blood vessel by an embolus (a loose clot or air bubble or other particle)
+37628,embolism intercalation,an insertion into a calendar
+37629,embolus,an abnormal particle (e.g. an air bubble or part of a clot) circulating in the blood
+37630,embrace,the state of taking in or encircling; "an island in the embrace of the sea"
+37631,embrace bosom,a close affectionate and protective acceptance; "his willing embrace of new ideas"; "in the bosom of the family"
+37632,embrace embracing embracement,the act of clasping another person in the arms (as in greeting or affection)
+37633,embroiderer,someone who ornaments with needlework
+37634,embroideress,a woman embroiderer
+37635,embroidery fancywork,decorative needlework
+37636,embryo,(botany) a minute rudimentary plant contained within a seed or an archegonium
+37637,embryo conceptus fertilized_egg,an animal organism in the early stages of growth and differentiation that in higher forms merge into fetal stages but in lower forms terminate in commencement of larval life
+37638,embryologist,a physician who specializes in embryology
+37639,embryology,the branch of biology that studies the formation and early development of living organisms
+37640,embryonal_carcinoma,malignant neoplasm of the testis
+37641,embryonal_rhabdomyosarcoma embryonal_rhabdosarcoma,form of rhabdomyosarcoma occurring mainly in infants and children
+37642,embryonic_cell formative_cell,a cell of an embryo
+37643,embryonic_stem-cell_research,biological research on stem cells derived from embryos and on their use in medicine
+37644,embryonic_tissue,tissue in an embryo
+37645,emendation,a correction by emending; a correction resulting from critical editing
+37646,emerald,a green transparent form of beryl; highly valued as a gemstone
+37647,emerald,a transparent piece of emerald that has been cut and polished and is valued as a precious gem
+37648,emerald,the green color of an emerald
+37649,emerald_shiner Notropis_atherinoides,small blunt-nosed fish of Great Lakes and Mississippi valley with a greenish luster
+37650,emergence egress issue,the becoming visible; "not a day's difference between the emergence of the andrenas and the opening of the willow catkins"
+37651,emergence emersion,the act of emerging
+37652,emergence outgrowth growth,the gradual beginning or coming forth; "figurines presage the emergence of sculpture in Greece"
+37653,emergency,a state in which martial law applies; "the governor declared a state of emergency"
+37654,emergency exigency pinch,a sudden unforeseen crisis (usually involving danger) that requires immediate action; "he never knew what to do in an emergency"
+37655,emergency_medicine,the branch of medicine concerned with the prompt diagnosis and treatment of injuries or trauma or sudden illness
+37656,emergency_procedure,(medicine) a procedure adopted to meet an emergency (especially a medical emergency)
+37657,emergency_room ER,a room in a hospital or clinic staffed and equipped to provide emergency care to persons requiring immediate medical treatment
+37658,emergent_evolution,the appearance of entirely new properties at certain critical stages in the course of evolution
+37659,emeritus,a professor or minister who is retired from assigned duties
+37660,emery,a hard grey-black mineral consisting of corundum and either hematite or magnetite; used as an abrasive (especially as a coating on paper)
+37661,emery_cloth,cloth covered with powdered emery
+37662,emery_paper sandpaper,stiff paper coated with powdered emery or sand
+37663,emery_stone emery_rock,a mixture of emery dust and a binder; can be molded into grindstones
+37664,emesis_basin,a basin used by bedridden patients for vomiting
+37665,emetic vomit vomitive nauseant,a medicine that induces nausea and vomiting
+37666,emigrant emigre emigree outgoer,someone who leaves one country to settle in another
+37667,emigration out-migration expatriation,migration from a place (especially migration from your native country in order to settle in another)
+37668,eminence distinction preeminence note,high status importance owing to marked superiority; "a scholar of great eminence"
+37669,eminence_grise,(French) a person who exercises power or influence in certain areas without holding an official position; "the President's wife is an eminence grise in matters of education"
+37670,eminent_domain,the right of the state to take private property for public use; the Fifth Amendment that was added to the Constitution of the United States requires that just compensation be made
+37671,emir amir emeer ameer,an independent ruler or chieftain (especially in Africa or Arabia)
+37672,emirate,the domain controlled by an emir
+37673,emirate,the office of an emir
+37674,emissary envoy,someone sent on a mission to represent the interests of someone else
+37675,emissary_vein vena_emissaria,one of several connecting veins in the scalp and head that drain blood from sinuses in the dura mater to veins outside the skull
+37676,emission,the release of electrons from parent atoms
+37677,emission,the occurrence of a flow of water (as from a pipe)
+37678,emission emanation,the act of emitting; causing to flow forth
+37679,emission_spectrum,spectrum of electromagnetic radiation emitted by a self-luminous source
+37680,emitter,the electrode in a transistor where electrons originate
+37681,emmenagogue,any agent that promotes menstrual discharge
+37682,emmer starch_wheat two-grain_spelt Triticum_dicoccum,hard red wheat grown especially in Russia and Germany; in United States as stock feed
+37683,emmetropia,(ophthalmology) the normal refractive condition of the eye in which there is clear focus of light on the retina
+37684,emolument,compensation received by virtue of holding an office or having employment (usually in the form of wages or fees); "a clause in the U.S. constitution prevents sitting legislators from receiving emoluments from their own votes"
+37685,emoticon,a representation of a facial expression (as a smile or frown) created by typing a sequence of characters in sending email; ":-( and :-) are emoticons"
+37686,emotion,any strong feeling
+37687,emotional_arousal,the arousal of strong emotions and emotional behavior
+37688,emotional_person,a person subject to strong states of emotion
+37689,emotional_state spirit,the state of a person's emotions (especially with regard to pleasure or dejection); "his emotional state depended on her opinion"; "he was in good spirits"; "his spirit rose"
+37690,emotionality emotionalism,emotional nature or quality
+37691,emotionlessness impassivity impassiveness phlegm indifference stolidity unemotionality,apathy demonstrated by an absence of emotional reactions
+37692,empathy,understanding and entering into another's feelings
+37693,emperor,the male ruler of an empire
+37694,emperor,red table grape of California
+37695,emperor emperor_moth Saturnia_pavonia,large moth of temperate forests of Eurasia having heavily scaled transparent wings
+37696,emperor_butterfly emperor,large richly colored butterfly
+37697,emperor_penguin Aptenodytes_forsteri,the largest penguin; an Antarctic penguin
+37698,emphasis,special and significant stress by means of position or repetition e.g.
+37699,emphasis accent,special importance or significance; "the red light gave the central figure increased emphasis"; "the room was decorated in shades of grey with distinctive red accents"
+37700,emphasizing accenting accentuation,the act of giving special importance or significance to something
+37701,emphysema pulmonary_emphysema,an abnormal condition of the lungs marked by decreased respiratory function; associated with smoking or chronic bronchitis or old age
+37702,empire,a monarchy with an emperor as head of state
+37703,empire,a group of countries under a single authority; "the British created a great empire"
+37704,empire imperium,the domain ruled by an emperor or empress; the region over which imperial dominion is exercised
+37705,empirical_formula,a chemical formula showing the ratio of elements in a compound rather than the total number of atoms
+37706,empirical_research,an empirical search for knowledge
+37707,empiricism,the application of empirical methods in any art or science
+37708,empiricism empiricist_philosophy sensationalism,(philosophy) the doctrine that knowledge derives from experience
+37709,empiricist,a philosopher who subscribes to empiricism
+37710,emplacement,military installation consisting of a prepared position for siting a weapon
+37711,employable,a person who is qualified and ready to work
+37712,employee,a worker who is hired to perform a job
+37713,employee-owned_enterprise employee-owned_business,a commercial enterprise owned by the people who work for it
+37714,employee_ownership,ownership of a business by the people who work for it
+37715,employee_savings_plan,a plan that allows employees to contribute to an investment pool managed the employer
+37716,employee_stock_ownership_plan ESOP,a program under which employees regularly accumulate shares and may ultimately assume control of the company
+37717,employee_turnover turnover_rate turnover,the ratio of the number of workers that had to be replaced in a given time period to the average number of workers
+37718,employer,a person or firm that employs workers
+37719,employment employ,the state of being employed or having a job; "they are looking for employment"; "he was in the employ of the city"
+37720,employment engagement,the act of giving someone a job
+37721,employment work,the occupation for which you are paid; "he is looking for employment"; "a lot of people are out of work"
+37722,employment_agency employment_office,an agency that finds people to fill particular jobs or finds jobs for unemployed people
+37723,employment_agent,someone who runs an employment agency
+37724,employment_contract employment_agreement,contract between employer and employee
+37725,empress,a woman emperor or the wife of an emperor
+37726,emptiness,the state of containing nothing
+37727,emptiness,having an empty stomach
+37728,empty,a container that has been emptied; "return all empties to the store"
+37729,empty_nester,a parent whose children have grown up and left home
+37730,emptying voidance evacuation,the act of removing the contents of something
+37731,empyema,a collection of pus in a body cavity (especially in the lung cavity)
+37732,emu Dromaius_novaehollandiae Emu_novaehollandiae,large Australian flightless bird similar to the ostrich but smaller
+37733,emulation,ambition to equal or excel
+37734,emulation,(computer science) technique of one machine obtaining the same results as another
+37735,emulation,effort to equal or surpass another
+37736,emulsifier,a surface-active agent that promotes the formation of an emulsion
+37737,emulsion,(chemistry) a colloid in which both phases are liquids; "an oil-in-water emulsion"
+37738,emulsion photographic_emulsion,a light-sensitive coating on paper or film; consists of fine grains of silver bromide suspended in a gelatin
+37739,en nut,half the width of an em
+37740,en_passant,(chess) a chess pawn that is moved two squares can be captured by an opponent's pawn commanding the square that was passed
+37741,enabling_act enabling_clause,a provision in a law that confers on appropriate officials the power to implement or enforce the law
+37742,enabling_legislation,legislation that gives appropriate officials the authority to implement or enforce the law
+37743,enactment passage,the passing of a law by a legislative body
+37744,enalapril Vasotec,an ACE inhibitor (trade name Vasotec) that blocks the formation of angiotensin in the kidney and so results in vasodilation; administered after heart attacks
+37745,enallage,a substitution of part of speech or gender or number or tense etc. (e.g., editorial `we' for `I')
+37746,enamel,a colored glassy compound (opaque or partially opaque) that is fused to the surface of metal or glass or pottery for decoration or protection
+37747,enamel,a paint that dries to a hard glossy finish
+37748,enamel,any smooth glossy coating that resembles ceramic glaze
+37749,enamel tooth_enamel,hard white substance covering the crown of a tooth
+37750,enamelware,cooking utensil of enameled iron
+37751,enamine,an amine containing the double bond linkage -C=C-N-
+37752,enanthem enanthema,eruption on a mucous membrane (as the inside of the mouth) occurring as a symptom of a disease
+37753,enantiomorph enantiomer,either one of a pair of compounds (crystals or molecules) that are mirror images on each other but are not identical
+37754,enantiomorphism mirror-image_relation,the relation of opposition between crystals or molecules that are reflections of one another
+37755,enate matrikin matrilineal_kin matrisib matrilineal_sib,one related on the mother's side
+37756,encainide Enkaid,antiarrhythmic drug (trade name Enkaid) used to treat life-threatening arrhythmias but increases the risk of sudden death in heart attack patients
+37757,encapsulation,the condition of being enclosed (as in a capsule); "the encapsulation of tendons in membranous sheaths"
+37758,encapsulation,the process of enclosing (as in a capsule)
+37759,encasement incasement,the act of enclosing something in a case
+37760,encaustic,a paint consisting of pigment mixed with melted beeswax; it is fixed with heat after application
+37761,encephalartos,any of numerous cycads of the genus Encephalartos having stout cylindrical trunks and a terminal crown of long often spiny pinnate leaves
+37762,encephalitis cephalitis phrenitis,inflammation of the brain usually caused by a virus; symptoms include headache and neck pain and drowsiness and nausea and fever (`phrenitis' is no longer in scientific use)
+37763,encephalocele,protrusion of brain tissue through a congenital fissure in the skull
+37764,encephalogram pneumoencephalogram,an X ray of the brain made by replacing spinal fluid with a gas (usually oxygen) to improve contrast
+37765,encephalography,roentgenography of the brain after spinal fluid has been replaced by a gas (usually oxygen); produces an encephalogram
+37766,encephalomyelitis,inflammation of the brain and spinal cord
+37767,enchanter,a sorcerer or magician
+37768,enchanter's_nightshade,any of several erect perennial rhizomatous herbs of the genus Circaea having white flowers that open at dawn; northern hemisphere
+37769,enchantment bewitchment,a magical spell
+37770,enchantment spell trance,a psychological state induced by (or as if induced by) a magical incantation
+37771,enchantress temptress siren Delilah femme_fatale,a woman who is considered to be dangerously seductive
+37772,enchantress witch,a female sorcerer or magician
+37773,enchilada,tortilla with meat filling baked in tomato sauce seasoned with chili
+37774,enchondroma,benign slow-growing tumor of cartilaginous cells at the ends of tubular bones (especially in the hands and feet)
+37775,enclave,an enclosed territory that is culturally distinct from the foreign territory that surrounds it
+37776,enclosure,a structure consisting of an area that has been enclosed for some purpose
+37777,enclosure enclosing envelopment inclosure,the act of enclosing something inside something else
+37778,enclosure inclosure,something (usually a supporting document) that is enclosed in an envelope with a covering letter
+37779,enclosure natural_enclosure,a naturally enclosed space
+37780,encoding encryption,the activity of converting data or information into code
+37781,encolure,the mane of a horse
+37782,encomium eulogy panegyric paean pean,a formal expression of praise
+37783,encompassment,including entirely
+37784,encopresis,involuntary defecation not attributable to physical defects or illness
+37785,encore,an extra or repeated performance; usually given in response to audience demand
+37786,encounter coming_upon,a casual meeting with a person or thing
+37787,encounter_group,a meeting of people to develop mutual understanding by freely expressing emotions
+37788,encouragement,the feeling of being encouraged
+37789,encouragement,the expression of approval and support
+37790,encumbrance incumbrance,a charge against property (as a lien or mortgage)
+37791,encyclical encyclical_letter,a letter from the pope sent to all Roman Catholic bishops throughout the world
+37792,encyclopedia cyclopedia encyclopaedia cyclopaedia,a reference work (often in several volumes) containing articles on various topics (often arranged in alphabetical order) dealing with the entire range of human knowledge or with some particular specialty
+37793,encyclopedist encyclopaedist,a person who compiles information for encyclopedias
+37794,end,(football) the person who plays at one end of the line of scrimmage; "the end managed to hold onto the pass"
+37795,end,one of two places from which people are communicating to each other; "the phone rang at the other end"; "both ends wrote at the same time"
+37796,end,the surface at either extremity of a three-dimensional object; "one end of the box was marked `This side up'"
+37797,end,a boundary marking the extremities of something; "the end of town"
+37798,end,a final part or section; "we have given it at the end of the section since it involves the calculus"; "Start at the beginning and go on until you come to the end"
+37799,end,the part you are expected to play; "he held up his end"
+37800,end,(American football) a position on the line of scrimmage; "no one wanted to play end"
+37801,end destruction death,a final state; "he came to a bad end"; "the so-called glorious experiment came to an inglorious end"
+37802,end ending,the point in time at which something ends; "the end of the year"; "the ending of warranty period"
+37803,end last,the final stage or concluding parts of an event or occurrence; "the end was exciting"; "I had to miss the last of the movie"
+37804,end remainder remnant oddment,a piece of cloth that is left over after the rest has been used or sold
+37805,end terminal,either extremity of something that has length; "the end of the pier"; "she knotted the end of the thread"; "they rode to the end of the line"; "the terminals of the anterior arches of the fornix"
+37806,end-all,the ultimate goal; "human beings are not the end-all of evolution"
+37807,end-plate endplate motor_end_plate,the flattened end of a motor neuron that transmits neural impulses to a muscle
+37808,end_man,a man at one end of a row of people
+37809,end_man corner_man,a man at one end of line of performers in a minstrel show; carries on humorous dialogue with the interlocutor
+37810,end_organ,a specialized structure at the peripheral end of some motor or sensory nerve fibers
+37811,end_point endpoint termination terminus,a place where something ends or is complete
+37812,end_product output,final product; the things produced
+37813,end_run sweep,(American football) an attempt to advance the ball by running around the end of the line
+37814,end_user,the ultimate user for which something is intended
+37815,endameba,any ameba of the genus Endamoeba
+37816,endangered_species,a species whose numbers are so small that the species is at risk of extinction
+37817,endarterectomy,surgical removal of the inner lining of an artery that is clogged with atherosclerosis
+37818,endarteritis,inflammation of the inner lining of an artery
+37819,endearment,the act of showing affection
+37820,endemic,a plant that is native to a certain limited area; "it is an endemic found only this island"
+37821,endemic endemic_disease,a disease that is constantly present to a greater or lesser degree in people of a certain class or in people living in a particular location
+37822,endgame end_game,the final stages of an extended process of negotiation; "the diplomatic endgame"
+37823,endgame end_game,the final stages of a chess game after most of the pieces have been removed from the board
+37824,ending conclusion finish,event whose occurrence ends something; "his death marked the ending of an era"; "when these final episodes are broadcast it will be the finish of the show"
+37825,ending termination,the end of a word (a suffix or inflectional ending or final morpheme); "I don't like words that have -ism as an ending"
+37826,endive witloof Cichorium_endivia,widely cultivated herb with leaves valued as salad green; either curly serrated leaves or broad flat ones that are usually blanched
+37827,endlessness,the property of being (or seeming to be) without end
+37828,endocarditis,inflammation of the endocardium and heart valves
+37829,endocardium,the membrane that lines the cavities of the heart and forms part of the heart valves
+37830,endocervicitis,inflammation of the mucous lining of the uterine cervix
+37831,endocranium,membrane lining the inside of the skull
+37832,endocrine_gland endocrine ductless_gland,any of the glands of the endocrine system that secrete hormones directly into the bloodstream
+37833,endocrine_system,the system of glands that produce endocrine secretions that help to control bodily metabolic activity
+37834,endocrinologist,physician who specializes in the diagnosis and treatment of conditions affecting the endocrine system
+37835,endocrinology,the branch of medicine dealing with the endocrine glands and their secretions
+37836,endoderm entoderm endoblast entoblast hypoblast,the inner germ layer that develops into the lining of the digestive and respiratory systems
+37837,endodontics endodontia,the branch of dentistry dealing with diseases of the dental pulp
+37838,endodontist,a dentist specializing in diseases of the dental pulp and nerve
+37839,endoergic_reaction,a nuclear reaction occurring with absorption of energy
+37840,endogamy intermarriage inmarriage,marriage within one's own tribe or group as required by custom or law
+37841,endogenous_depression,a state of depression for which there is no apparent precipitating cause
+37842,endogeny,a geological phenomenon below the surface of the earth
+37843,endolymph,the bodily fluid that fills the membranous labyrinth of the inner ear
+37844,endometrial_carcinoma endometrial_cancer,cancer of the uterine lining
+37845,endometriosis adenomyosis,the presence of endometrium elsewhere than in the lining of the uterus; causes premenstrual pain and dysmenorrhea
+37846,endometrium,(pregnancy) the mucous membrane that lines the uterus; thickens under hormonal control and (if pregnancy does not occur) is shed in menstruation; if pregnancy occurs it is shed along with the placenta at parturition
+37847,endomorph,a heavy person with a soft and rounded body
+37848,endomorphy pyknic_type,round, fat, and heavy
+37849,endoneurium,delicate connective tissue around individual nerve fibers in nerve
+37850,endonuclease,a nuclease that cleaves nucleic acids at interior bonds and so produces fragments of various sizes
+37851,endoparasite entoparasite entozoan entozoon endozoan,any of various parasites that live in the internal organs of animals (especially intestinal worms)
+37852,endoplasm,the inner portion of the cytoplasm of a cell
+37853,endorphin,a neurochemical occurring naturally in the brain and having analgesic properties
+37854,endorsement indorsement,a signature that validates something; "the cashier would not cash the check without an endorsement"
+37855,endorsement indorsement,the act of endorsing; "a star athlete can make a lot of money from endorsements"
+37856,endorsement indorsement blurb,a promotional statement (as found on the dust jackets of books); "the author got all his friends to write blurbs for his book"
+37857,endorser indorser,a person who transfers his ownership interest in something by signing a check or negotiable security
+37858,endoscope,a long slender medical instrument for examining the interior of a bodily organ or performing minor surgery
+37859,endoscopy,visual examination of the interior of a hollow body organ by use of an endoscope
+37860,endoskeleton,the internal skeleton; bony and cartilaginous structure (especially of vertebrates)
+37861,endosperm,nutritive tissue surrounding the embryo within seeds of flowering plants
+37862,endospore,a small asexual spore that develops inside the cell of some bacteria and algae
+37863,endospore-forming_bacteria,a group of true bacteria
+37864,endosteum,vascular membrane that lines the inner surface of long bones
+37865,endothelium,an epithelium of mesoblastic origin; a thin layer of flattened cells that lines the inside of some body cavities
+37866,endothermic_reaction,a chemical reaction accompanied by the absorption of heat
+37867,endotoxin,a toxin that is confined inside the microorganisms and is released only when the microorganisms are broken down or die
+37868,endotracheal_tube,a catheter that is inserted into the trachea through the mouth or nose in order to maintain an open air passage or to deliver oxygen or to permit the suctioning of mucus or to prevent aspiration of the stomach contents
+37869,endowment,the act of endowing with a permanent source of income; "his generous endowment of the laboratory came just in the nick of time"
+37870,endowment endowment_fund,the capital that provides income for an institution
+37871,endowment gift talent natural_endowment,natural abilities or qualities
+37872,endowment_insurance,life insurance for a specified amount which is payable to the insured person at the expiration of a certain period of time or to a designated beneficiary immediately upon the death of the insured
+37873,endurance,the power to withstand hardship or stress; "the marathon tests a runner's endurance"
+37874,endurance_riding,riding for long hours over long distances
+37875,enema clyster,an injection of a liquid through the anus to stimulate evacuation; sometimes used for diagnostic purposes
+37876,enemy,an opposing military force; "the enemy attacked at dawn"
+37877,enemy,any hostile group of people; "he viewed lawyers as the real enemy"
+37878,enemy foe foeman opposition,an armed adversary (especially a member of an opposing military force); "a soldier must be prepared to kill his enemies"
+37879,energid protoplast,a biological unit consisting of a nucleus and the body of cytoplasm with which it interacts
+37880,energizer energiser,a device that supplies electrical energy
+37881,energizer energiser vitalizer vitaliser animator,someone who imparts energy and vitality and spirit to other people
+37882,energizing activating activation,the activity of causing to have energy and be active
+37883,energy,any source of usable power; "the DOE is responsible for maintaining the energy policy"
+37884,energy free_energy,(physics) a thermodynamic quantity equivalent to the capacity of a physical system to do work; the units of energy are joules or ergs; "energy can take a wide variety of forms"
+37885,energy muscularity vigor vigour vim,an imaginative lively style (especially style of writing); "his writing conveys great energy"; "a remarkable muscularity of style"
+37886,energy push get-up-and-go,enterprising or ambitious drive; "Europeans often laugh at American energy"
+37887,energy vigor vigour zip,forceful exertion; "he plays tennis with great energy"; "he's full of zip"
+37888,energy vim vitality,a healthy capacity for vigorous activity; "jogging works off my excess energy"; "he seemed full of vim and vigor"
+37889,energy_level energy_state,a definite stable energy that a physical system can have; used especially of the state of electrons in atoms or molecules; "according to quantum theory only certain energy levels are possible"
+37890,enervation,lack of vitality; "an enervation of mind greater than any fatigue"
+37891,enervation,surgical removal of a nerve
+37892,enfant_terrible,a person whose unconventional behavior embarrasses others
+37893,enfeoffment,under the feudal system, the deed by which a person was given land in exchange for a pledge of service
+37894,enfilade enfilade_fire,gunfire directed along the length rather than the breadth of a formation
+37895,enflurane Ethrane,a nonflammable liquid (trade name Ethrane) used as an inhalation general anesthetic
+37896,enforcement,the act of enforcing; ensuring observance of or obedience to
+37897,enfranchisement,freedom from political subjugation or servitude
+37898,engagement booking,employment for performers or performing groups that lasts for a limited period of time; "the play had bookings throughout the summer"
+37899,engagement mesh meshing interlocking,contact by fitting together; "the engagement of the clutch"; "the meshing of gears"
+37900,engagement participation involvement involution,the act of sharing in the activities of a group; "the teacher tried to increase his students' engagement in class activities"
+37901,engagement_ring,a ring given and worn as a sign of betrothal
+37902,engelmannia,common erect hairy perennial of plains and prairies of southern and central United States having flowers that resemble sunflowers
+37903,engine,something used to achieve a purpose; "an engine of change"
+37904,engine,an instrument or machine that is used in warfare, such as a battering ram, catapult, artillery piece, etc.; "medieval engines of war"
+37905,engine,motor that converts thermal energy to mechanical work
+37906,engine_block cylinder_block block,a metal casting containing the cylinders and cooling ducts of an engine; "the engine had to be replaced because the block was cracked"
+37907,engine_failure,engine does not run
+37908,engineer applied_scientist technologist,a person who uses scientific knowledge to solve practical problems
+37909,engineer locomotive_engineer railroad_engineer engine_driver,the operator of a railway locomotive
+37910,engineer's_chain,a unit of length (100 ft)
+37911,engineering,the practical application of technical and scientific knowledge to commerce or industry
+37912,engineering engine_room,a room (as on a ship) in which the engine is located
+37913,engineering engineering_science applied_science technology,the discipline dealing with the art or science of applying scientific knowledge to practical problems; "he had trouble deciding which branch of engineering to study"
+37914,enginery,machinery consisting of engines collectively
+37915,engorgement,congestion with blood; "engorgement of the breast"
+37916,engorgement,eating ravenously or voraciously to satiation
+37917,engram memory_trace,a postulated biochemical change (presumably in neural tissue) that represents a memory
+37918,engraver,a skilled worker who can inscribe designs or writing onto a surface by carving or etching
+37919,engraver,a printmaker who prints from an engraved printing plate
+37920,engraving,a print made from an engraving
+37921,engraving,a block or plate or other hard surface that has been engraved
+37922,engraving etching,making engraved or etched plates and printing designs from them
+37923,enhancement sweetening,an improvement that makes something more agreeable
+37924,enigma_canon enigmatic_canon enigmatical_canon riddle_canon,a canon in which the entrances of successive parts were indicated by cryptic symbols and devices (popular in the 15th and 16th centuries)
+37925,enjambment enjambement,the continuation of a syntactic unit from one line of verse into the next line without a pause
+37926,enjoyableness,pleasantness resulting from something that can be enjoyed; "the enjoyableness of an afternoon at the beach"
+37927,enjoyer,a person who delights in having or using or experiencing something
+37928,enjoyment,the pleasure felt when having a good time
+37929,enjoyment delectation,act of receiving pleasure from something
+37930,enkephalin,an endorphin having opiate qualities that occurs in the brain and spinal cord and elsewhere
+37931,enlargement,the state of being enlarged
+37932,enlargement blowup magnification,a photographic print that has been enlarged
+37933,enlarger,photographic equipment consisting of an optical projector used to enlarge a photograph
+37934,enlightenment,education that results in understanding and the spread of knowledge
+37935,enlisted_man,a male enlisted person in the armed forces
+37936,enlisted_person,a serviceman who ranks below a commissioned officer
+37937,enlisted_woman,a female enlisted person in the armed forces
+37938,enlistment,the act of enlisting (as in a military service)
+37939,enlistment hitch term_of_enlistment tour_of_duty duty_tour tour,a period of time spent in military service
+37940,ennoblement,the state of being noble
+37941,ennoblement,the act of raising someone to the nobility
+37942,enol,an organic compound that contains a hydroxyl group bonded to a carbon atom which in turn is doubly bonded to another carbon atom
+37943,enologist oenologist fermentologist,a specialist in wine making
+37944,enology oenology,the art of wine making
+37945,enophile oenophile,someone who appreciates wine
+37946,enormity,vastness of size or extent; "in careful usage the noun enormity is not used to express the idea of great size"; "universities recognized the enormity of their task"
+37947,enormity,the quality of extreme wickedness
+37948,enormity,an act of extreme wickedness
+37949,enormousness grandness greatness immenseness immensity sizeableness vastness wideness,unusual largeness in size or extent or number
+37950,enosis,the union of Greece and Cyprus (which is the goal of a group of Greek Cypriots)
+37951,enough sufficiency,an adequate quantity; a quantity that is large enough to achieve a purpose; "enough is as good as a feast"; "there is more than a sufficiency of lawyers in this country"
+37952,enrichment,a gift that significantly increases the recipient's wealth
+37953,enrichment,act of making fuller or more meaningful or rewarding
+37954,enrollee,a person who enrolls in (or is enrolled in) a class or course of study
+37955,ensemble,a group of musicians playing or singing together; "a string ensemble"
+37956,ensemble,a coordinated outfit (set of clothing)
+37957,ensemble supporting_players,a cast other than the principals
+37958,ensemble tout_ensemble,an assemblage of parts or details (as in a work of art) considered as forming a whole
+37959,ensiform_leaf,a sword-shaped leaf; as of iris
+37960,ensign,a person who holds a commissioned rank in the United States Navy or the United States Coast Guard; below lieutenant junior grade
+37961,ensign,colors flown by a ship to show its nationality
+37962,enslavement,the act of making slaves of your captives
+37963,enslavement captivity,the state of being a slave; "So every bondman in his own hand bears the power to cancel his captivity"--Shakespeare
+37964,entablature,(architecture) the structure consisting of the part of a classical temple above the columns between a capital and the roof
+37965,entail,land received by fee tail
+37966,entail,the act of entailing property; the creation of a fee tail from a fee simple
+37967,entasis,a slight convexity in the shaft of a column; compensates for the illusion of concavity that viewers experience when the sides are perfectly straight
+37968,entelechy,(Aristotle) the state of something that is fully realized; actuality as opposed to potentiality
+37969,entellus hanuman Presbytes_entellus Semnopithecus_entellus,langur of southern Asia; regarded as sacred in India
+37970,entente entente_cordiale,an informal alliance between countries
+37971,entente entente_cordiale,a friendly understanding between political powers
+37972,enteric-coated_aspirin,aspirin that is treated to pass through the stomach unaltered and to dissolve in the intestines
+37973,enteric_bacteria enterobacteria enterics entric,rod-shaped Gram-negative bacteria; most occur normally or pathogenically in intestines of humans and other animals
+37974,enteritis,inflammation of the intestine (especially the small intestine); usually characterized by diarrhea
+37975,enterobiasis,an infestation with or a resulting infection caused by the pinworm Enterobius vermicularis; occurs especially in children
+37976,enterokinase,enzyme in the intestinal juice that converts inactive trypsinogen into active trypsin
+37977,enterolith,a calculus occurring in the intestines
+37978,enterolithiasis,the presence of calculi in the intestines
+37979,enteron,the alimentary canal (especially of an embryo or a coelenterate)
+37980,enteropathy,a disease of the intestinal tract
+37981,enteroptosis,an abnormally downward position of the intestines in the abdominal cavity
+37982,enterostenosis,abnormal narrowing of the intestine
+37983,enterostomy enterotomy,surgical operation that creates a permanent opening through the abdominal wall into the intestine
+37984,enterotoxemia,a disease of cattle and sheep that is attributed to toxins absorbed from the intestines
+37985,enterotoxin,a cytotoxin specific for the cells of the intestinal mucosa
+37986,enterovirus,any of a group of picornaviruses that infect the gastrointestinal tract and can spread to other areas (especially the nervous system)
+37987,enterprise,an organization created for business ventures; "a growing enterprise must have a bold leader"
+37988,enterprise endeavor endeavour,a purposeful or industrious undertaking (especially one that requires effort or boldness); "he had doubts about the whole enterprise"
+37989,enterprise enterprisingness initiative go-ahead,readiness to embark on bold new ventures
+37990,enterprise_zone,a city district where development receives special tax advantages
+37991,entertainer,a person who tries to please or amuse
+37992,entertainment amusement,an activity that is diverting and that holds the attention
+37993,entertainment_center,a wall unit containing sound and television systems
+37994,entertainment_deduction,deduction allowed for some (limited) kinds of entertainment for business purposes
+37995,entertainment_industry show_business show_biz,those involved in providing entertainment: radio and television and films and theater
+37996,enthusiasm,a feeling of excitement
+37997,enthusiasm,a lively interest; "enthusiasm for his program is growing"
+37998,enthusiast partisan partizan,an ardent and enthusiastic supporter of some person or activity
+37999,enticement temptation,the act of influencing by exciting hope or desire; "his enticements were shameless"
+38000,entire_leaf,a leaf having a smooth margin without notches or indentations
+38001,entirety entireness integrality totality,the state of being total and complete; "he read the article in its entirety"; "appalled by the totality of the destruction"
+38002,entitlement,right granted by law or contract (especially a right to benefits); "entitlements make up the major part of the federal budget"
+38003,entity,that which is perceived or known or inferred to have its own distinct existence (living or nonliving)
+38004,entomion,the craniometric point at the tip of the angular part of the parietal bone that articulates with the temporal bone
+38005,entomologist bugologist bug-hunter,a zoologist who studies insects
+38006,entomology bugology,the branch of zoology that studies insects
+38007,entomophobia,a morbid fear of insects
+38008,entopic_pregnancy,pregnancy resulting from normal gestation in the uterus
+38009,entoproct,any of various moss-like aquatic animals usually forming branching colonies; each polyp having a both mouth and anus within a closed ring of tentacles
+38010,entr'acte,the interlude between two acts of a play
+38011,entrance entering,a movement into or inward
+38012,entrance entering entry ingress incoming,the act of entering; "she made a grand entrance"
+38013,entrance entranceway entryway entry entree,something that provides access (to get in or get out); "they waited at the entrance to the garden"; "beggars waited just outside the entryway to the cathedral"
+38014,entrance_examination entrance_exam,examination to determine a candidate's preparation for a course of studies
+38015,entrance_fee admission admission_charge admission_fee admission_price price_of_admission entrance_money,the fee charged for admission
+38016,entrancement ravishment,a feeling of delight at being filled with wonder and enchantment
+38017,entrant,someone who enters; "new entrants to the country must go though immigration procedures"
+38018,entrant,one who enters a competition
+38019,entrant,a commodity that enters competition with established merchandise; "a well publicized entrant is the pocket computer"
+38020,entrapment,a defense that claims the defendant would not have broken the law if not tricked into doing it by law enforcement officials
+38021,entreaty prayer appeal,earnest or urgent request; "an entreaty to stop the fighting"; "an appeal for help"; "an appeal to the public to keep calm"
+38022,entrecote,cut of meat taken from between the ribs
+38023,entree,an entrance, especially a theatrical entrance onto a stage or as if onto a stage; "she made a graceful entree into the ballroom"
+38024,entree access accession admission admittance,the right to enter
+38025,entree main_course,the principal dish of a meal
+38026,entrenching_tool trenching_spade,a hand shovel carried by infantrymen for digging trenches
+38027,entrenchment intrenchment,an entrenched fortification; a position protected by trenches
+38028,entrepot transshipment_center,a port where merchandise can be imported and then exported without paying import duties; "Bahrain has been an entrepot of trade between Arabia and India since the second millennium BC"
+38029,entrepreneur enterpriser,someone who organizes a business venture and assumes the risk for it
+38030,entry,an item inserted in a written record
+38031,entry accounting_entry ledger_entry,a written record of a commercial transaction
+38032,enucleation,surgical removal of something without cutting into it; "the enucleation of the tumor"
+38033,enumeration numbering,a numbered list
+38034,enunciation diction,the articulation of speech regarded from the point of view of its intelligibility to the audience
+38035,enuresis urinary_incontinence,inability to control the flow of urine and involuntary urination
+38036,envelope,a curve that is tangent to each of a family of curves
+38037,envelope,a natural covering (as by a fluid); "the spacecraft detected an envelope of gas around the comet"
+38038,envelope,the maximum operating capability of a system (especially an aircraft); "test pilots try to push the envelope"
+38039,envelope,a flat (usually rectangular) container for a letter, thin package, etc.
+38040,envelope,any wrapper or covering
+38041,envelope gasbag,the bag containing the gas in a balloon
+38042,environment,the totality of surrounding conditions; "he longed for the comfortable environment of his living room"
+38043,environment environs surroundings surround,the area in which something exists or lives; "the country--the flat agricultural surround"
+38044,environmental_condition,the state of the environment
+38045,environmentalism,the philosophical doctrine that environment is more important than heredity in determining intellectual growth
+38046,environmentalism,the activity of protecting the environment from pollution or destruction
+38047,environmentalist conservationist,someone who works to protect the environment from destruction or pollution
+38048,environs purlieu,an outer adjacent area of any place
+38049,envoy envoi,a brief stanza concluding certain forms of poetry
+38050,envoy envoy_extraordinary minister_plenipotentiary,a diplomat having less authority than an ambassador
+38051,envy enviousness,a feeling of grudging admiration and desire to have something that is possessed by another
+38052,envy invidia,spite and resentment at seeing the success of another (personified as one of the deadly sins)
+38053,enzyme,any of several complex proteins that are produced by cells and act as catalysts in specific biochemical reactions
+38054,enzyme-linked-immunosorbent_serologic_assay ELISA,an assay that relies on an enzymatic conversion reaction and is used to detect the presence of specific substances (such as enzymes or viruses or antibodies or bacteria)
+38055,enzymologist,a person who is trained in or engaged in enzymology
+38056,enzymology,the branch of biochemistry dealing with the chemical nature and biological activity of enzymes
+38057,eohippus dawn_horse,earliest horse; extinct primitive dog-sized four-toed Eocene animal
+38058,eolith,a crude stone artifact (as a chipped flint); possibly the earliest tools
+38059,eon aeon,the longest division of geological time
+38060,eon aeon,an immeasurably long period of time; "oh, that happened eons ago"
+38061,eon aeon,(Gnosticism) a divine power or nature emanating from the Supreme Being and playing various roles in the operation of the universe
+38062,eoraptor,a theropod dinosaur of the genus Eoraptor
+38063,eosin bromeosin,a red fluorescent dye resulting from the action of bromine on fluorescein; used in cosmetics and as a biological stain for studying cell structures
+38064,eosinopenia,a decrease in the number of eosinophils in the blood
+38065,eosinophil eosinophile,a leukocyte readily stained with eosin
+38066,eosinophilia,a symptom of allergic states; increased eosinophils in the blood
+38067,epacris,any heathlike evergreen shrub of the genus Epacris grown for their showy and crowded spikes of small bell-shaped or tubular flowers
+38068,epanalepsis,repetition after intervening words
+38069,epanaphora anaphora,repetition of a word or phrase at the beginning of successive clauses
+38070,epanodos,recapitulation of the main ideas of a speech (especially in reverse order)
+38071,epanodos,repetition of a group of words in reverse order
+38072,epanorthosis,immediate rephrasing for intensification or justification; "Seems, madam! Nay, it is"
+38073,eparch,a bishop or metropolitan in charge of an eparchy in the Eastern Church
+38074,eparch,the governor or prefect of an eparchy in ancient Greece
+38075,eparchy,a province in ancient Greece
+38076,eparchy exarchate,a diocese of the Eastern Orthodox Church
+38077,epaulet epaulette,adornment consisting of an ornamental cloth pad worn on the shoulder
+38078,epauliere,armor plate that protects the shoulder
+38079,epee,a fencing sword similar to a foil but with a heavier blade
+38080,ependyma,thin epithelial membrane lining the ventricles of the brain and the spinal cord canal
+38081,epenthesis,the insertion of a vowel or consonant into a word to make its pronunciation easier; "the insertion of a vowel in the plural of the word `bush' is epenthesis"
+38082,epergne,a large table centerpiece with branching holders for fruit or sweets or flowers
+38083,ephah epha,an ancient Hebrew unit of dry measure equal to about a bushel
+38084,ephedra joint_fir,jointed and nearly leafless desert shrub having reduced scalelike leaves and reddish fleshy seeds
+38085,ephedrine,white odorless powdered or crystalline alkaloid from plants of the genus Ephedra (especially Ephedra sinica) or made synthetically; used as a bronchodilator to treat bronchitis and asthma
+38086,ephemera,something transitory; lasting a day
+38087,ephemerality ephemeralness fleetingness,the property of lasting for a very short time
+38088,ephemerid ephemeropteran,short-lived insect
+38089,ephemeris,an annual publication containing astronomical tables that give the positions of the celestial bodies throughout the year; "today computers calculate the ephemerides"
+38090,ephemeron ephemeral,anything short-lived, as an insect that lives only for a day in its winged form
+38091,epic_poem heroic_poem epic epos,a long narrative poem telling of a hero's deeds
+38092,epicalyx false_calyx calycle calyculus,a group of bracts simulating a calyx as in a carnation or hibiscus
+38093,epicanthus epicanthic_fold,a vertical fold of skin over the nasal canthus; typical for many east Asian peoples; sometimes occurs in Down's syndrome
+38094,epicardia,the short part of the esophagus extending downward from the diaphragm to the stomach
+38095,epicardium visceral_pericardium,the innermost of the two layers of the pericardium
+38096,epicarp exocarp,outermost layer of the pericarp of fruits as the skin of a peach or grape
+38097,epicenter epicentre,the point on the Earth's surface directly above the focus of an earthquake
+38098,epicondyle,a projection on a bone above a condyle serving for the attachment of muscles and ligaments
+38099,epicondylitis,painful inflammation of the muscles and soft tissues around an epicondyle
+38100,epicranium,the muscle and aponeurosis and skin covering the cranium
+38101,epicure gourmet gastronome bon_vivant epicurean foodie,a person devoted to refined sensuous enjoyment (especially good food and drink)
+38102,epicureanism,a doctrine of hedonism that was defended by several ancient Greek philosophers
+38103,epicurism,the disposition and habits of an epicure
+38104,epicycle,a circle that rolls around (inside or outside) another circle; generates an epicycloid or hypocycloid
+38105,epicyclic_train epicyclic_gear_train,a system of epicyclic gears in which at least one wheel axis itself revolves about another fixed axis
+38106,epicycloid,a line generated by a point on a circle rolling around another circle
+38107,epideictic_oratory,a type of oratory used to eulogize or condemn a person or group of people; "Pericles' funeral oration for Athenians killed in the Peloponnesian War is a famous example of epideictic oratory"
+38108,epidemic,a widespread outbreak of an infectious disease; many people are infected at the same time
+38109,epidemic_disease,any infectious disease that develops and spreads rapidly to many people
+38110,epidemic_pleurodynia epidemic_myalgia myosis diaphragmatic_pleurisy Bornholm_disease,an acute infectious disease occurring in epidemic form and featuring paroxysms of pain (usually in the chest)
+38111,epidemiologist,a medical scientist who studies the transmission and control of epidemic diseases
+38112,epidemiology,the branch of medical science dealing with the transmission and control of disease
+38113,epidendron,any of various orchids of the genus Epidendrum
+38114,epidermal_cell,any of the cells making up the epidermis
+38115,epidermis cuticle,the outer layer of the skin covering the exterior body surface of vertebrates
+38116,epidiascope,an optical projector that gives images of both transparent and opaque objects
+38117,epididymis,a convoluted tubule in each testis; carries sperm to vas deferens
+38118,epididymitis,painful inflammation of the epididymis
+38119,epidural_anesthesia epidural_anaesthesia epidural,regional anesthesia resulting from injection of an anesthetic into the epidural space of the spinal cord; sensation is lost in the abdominal and genital and pelvic areas; used in childbirth and gynecological surgery
+38120,epidural_injection,injection of an anesthetic substance into the epidural space of the spinal cord in order to produce epidural anesthesia
+38121,epigastric_artery arteria_epigastrica,one of three arteries supplying the anterior walls of the abdomen
+38122,epigastric_vein,veins serving the anterior walls of the abdomen
+38123,epigastrium,the region lying on or over the stomach (just below the sternum)
+38124,epigenesis,a geological change in the mineral content of rock after the rock has formed
+38125,epiglottis,a flap of cartilage that covers the windpipe while swallowing
+38126,epiglottitis,inflammation of the epiglottis; characterized by fever and a severe sore throat and difficulty in swallowing
+38127,epigone epigon,an inferior imitator of some distinguished writer, artist, or musician
+38128,epigram quip,a witty saying
+38129,epigraph,a quotation at the beginning of some piece of writing
+38130,epigraph,an engraved inscription
+38131,epigraphy,the study of ancient inscriptions
+38132,epikeratophakia,using a piece of donated corneal tissue to repair the eye of someone who has had a cataract removed; "epikeratophakia gave her a living contact lens"
+38133,epilating_wax,a mixture of resins and waxes to remove cosmetically undesirable hair; mixture is applied hot to the surface and after cooling is pulled away taking the hairs with it
+38134,epilation,loss of hair; the result of removing hair
+38135,epilepsy,a disorder of the central nervous system characterized by loss of consciousness and convulsions
+38136,epileptic,a person who has epilepsy
+38137,epileptic_seizure,convulsions accompanied by impaired consciousness
+38138,epilogue epilog,a short speech (often in verse) addressed directly to the audience by an actor at the end of a play
+38139,epilogue epilog,a short passage added at the end of a literary work; "the epilogue told what eventually happened to the main characters"
+38140,epinephrine epinephrin adrenaline Adrenalin,a catecholamine secreted by the adrenal medulla in response to stress (trade name Adrenalin); stimulates autonomic nerve action
+38141,epiphany,a divine manifestation
+38142,epiphenomenon,a secondary phenomenon that is a by-product of another phenomenon
+38143,epiphora epistrophe,repetition of the ends of two or more successive sentences, verses, etc.
+38144,epiphyllum orchid_cactus,any cactus of the genus Epiphyllum having flattened jointed irregularly branching stems and showy tubular flowers
+38145,epiphysis,the end of a long bone; initially separated from the main bone by a layer of cartilage that eventually ossifies so the parts become fused
+38146,epiplexis,a rhetorical device in which the speaker reproaches the audience in order to incite or convince them
+38147,episcia,any plant of the genus Episcia; usually creeping and stoloniferous and of cascading habit; grown for their colorful foliage and flowers
+38148,episcleral_veins venae_episclerales,small veins in the sclera near the corneal margin; empty into the anterior ciliary veins
+38149,episcleritis,inflammation of the sclera of the eye
+38150,episcopacy episcopate,the collective body of bishops
+38151,episcopate,the term of office of a bishop
+38152,episiotomy,surgical incision of the perineum to enlarge the vagina and so facilitate delivery during childbirth
+38153,episode,a happening that is distinctive in a series of related events
+38154,episode,a brief section of a literary or dramatic work that forms part of a connected series
+38155,episode installment instalment,a part of a broadcast serial
+38156,episodic_memory personal_memory,memory for episodes in your own life
+38157,episome,DNA that is not incorporated into the genome but is replicated together with the genome (especially in bacterial cells)
+38158,epispadias,a congenital abnormality in males in which the urethra is on the upper surface of the penis
+38159,episteme,the body of ideas that determine the knowledge that is intellectually certain at any particular time
+38160,epistemic_logic,the modal logic of knowledge and uncertainty and ignorance
+38161,epistemologist,a specialist in epistemology
+38162,epistemology,the philosophical theory of knowledge
+38163,epistle,a specially long, formal letter
+38164,epitaph,a summary statement of commemoration for a dead person
+38165,epitaph,an inscription on a tombstone or monument in memory of the person buried there
+38166,epitaxy,growing a crystal layer of one mineral on the crystal base of another mineral in such a manner that its crystalline orientation is the same as that of the substrate
+38167,epithalamium,an ode honoring a bride and bridegroom
+38168,epithelial_cell,one of the closely packed cells forming the epithelium
+38169,epithelioma,a malignant tumor of the epithelial tissue
+38170,epithelium epithelial_tissue,membranous tissue covering internal organs and other internal surfaces of the body
+38171,epithet,descriptive word or phrase
+38172,epitome,a brief abstract (as of an article or book)
+38173,epoch,a unit of geological time that is a subdivision of a period and is itself divided into ages
+38174,epoch date_of_reference,(astronomy) an arbitrarily fixed date that is the point in time relative to which information (as coordinates of a celestial body) is recorded
+38175,eponym,the person for whom something is named; "Constantine I is the eponym for Constantinople"
+38176,eponym,the name derived from a person (real or imaginary); "Down's syndrome is an eponym for the English physician John Down"
+38177,eponymy,the derivation of a general name from that of a famous person
+38178,epos,a body of poetry that conveys the traditions of a society by treating some epic theme
+38179,epoxy epoxy_resin epoxy_glue,a thermosetting resin; used chiefly in strong adhesives and coatings and laminates
+38180,epsilon,the 5th letter of the Greek alphabet
+38181,epsilon_toxin Clostridium_perfringens_epsilon_toxin,a bacterial toxin produced by clostridium perfringens; causes intense abdominal cramps and diarrhea that begins 8-22 hours after consumption of foods containing large numbers of these bacteria
+38182,eptatretus,a fossil hagfish of the genus Eptatretus
+38183,equal-area_projection equal-area_map_projection,a map projection in which quadrilaterals formed by meridians and parallels have an area on the map proportional to their area on the globe
+38184,equal_opportunity,the right to equivalent opportunities for employment regardless of race or color or sex or national origin
+38185,equal_protection_of_the_laws,a right guaranteed by the Fourteenth Amendment to the US Constitution and by the due-process clause of the Fifth Amendment
+38186,equal_sign,a sign indicating that the quantities on either side are equal
+38187,equal_temperament,the division of the scale based on an octave that is divided into twelve exactly equal semitones; "equal temperament is the system commonly used in keyboard instruments"
+38188,equality,the quality of being the same in quantity or measure or value or status
+38189,equality equivalence equation par,a state of being essentially equal or equivalent; equally balanced; "on a par with the best"
+38190,equality_before_the_law,the right to equal protection of the laws
+38191,equalization equalisation leveling,the act of making equal or uniform
+38192,equalizer,a score that makes the match even
+38193,equalizer equaliser,electronic equipment that reduces frequency distortion
+38194,equalizing_dividend,a dividend paid to compensate shareholders for losses resulting from a change in the dividend schedule
+38195,equatability,capability of being equated
+38196,equation,a mathematical statement that two expressions are equal
+38197,equation equating,the act of regarding as equal
+38198,equator,a circle dividing a sphere or other surface into two usually equal and symmetrical parts
+38199,equator,an imaginary line around the Earth forming the great circle that is equidistant from the north and south poles; "the equator is the boundary between the northern and southern hemispheres"
+38200,equatorial,a telescope whose mounting has only two axes of motion, one parallel to the Earth's axis and the other one at right angles to it
+38201,equatorial_current,any of the ocean currents that flow westward at the equator
+38202,equerry,an official charged with the care of the horses of princes or nobles
+38203,equerry,a personal attendant of the British royal family
+38204,equestrian_sport,a sport that tests horsemanship
+38205,equidistribution,a flat distribution having equal frequencies of occurrence
+38206,equilateral,a figure whose sides are all equal
+38207,equilateral_triangle equiangular_triangle,a three-sided regular polygon
+38208,equilibration,stabilization by bringing into equilibrium
+38209,equilibrium,a stable situation in which forces cancel one another
+38210,equilibrium labyrinthine_sense vestibular_sense sense_of_balance sense_of_equilibrium,a sensory system located in structures of the inner ear that registers the orientation of the head
+38211,equilibrium_constant,(chemistry) the ratio of concentrations when equilibrium is reached in a reversible reaction (when the rate of the forward reaction equals the rate of the reverse reaction)
+38212,equilibrium_law law_of_chemical_equilibrium,(chemistry) the principle that (at chemical equilibrium) in a reversible reaction the ratio of the rate of the forward reaction to the rate of the reverse reaction is a constant for that reaction
+38213,equine equid,hoofed mammals having slender legs and a flat coat with a narrow mane along the back of the neck
+38214,equine_distemper strangles,an acute bacterial disease of horses characterized by inflammation of the mucous membranes
+38215,equine_encephalitis equine_encephalomyelitis,encephalitis caused by a virus that is transmitted by a mosquito from an infected horse
+38216,equinoctial_point equinox,(astronomy) either of the two celestial points at which the celestial equator intersects the ecliptic
+38217,equinox,either of two times of the year when the sun crosses the plane of the earth's equator and day and night are of equal length
+38218,equipment,an instrumentality needed for an undertaking or to perform a service
+38219,equity,the difference between the market value of a property and the claims held against it
+38220,equity,the ownership interest of shareholders in a corporation
+38221,equivalence,essential equality and interchangeability
+38222,equivalent,a person or thing equal to another in value or measure or force or effect or significance etc; "send two dollars or the equivalent in stamps"
+38223,equivalent equivalent_weight combining_weight eq,the atomic weight of an element that has the same combining capacity as a given weight of another element; the standard is 8 for oxygen
+38224,equivalent-binary-digit_factor,the average number of binary digits needed to express one radix digit in a numeration system that is not binary; on the average a number that can be expressed in N decimal digits takes 3.3N binary digits
+38225,equivocation prevarication evasiveness,intentionally vague or ambiguous
+38226,equivocation tergiversation,falsification by means of vague or ambiguous language
+38227,era epoch,a period marked by distinctive character or reckoned from a fixed point or event
+38228,era geological_era,a major division of geological time; an era is usually divided into two or more periods
+38229,eradication obliteration,the complete destruction of every trace of something
+38230,erasable_programmable_read-only_memory EPROM,(computer science) a read-only memory chip that can be erased by ultraviolet light and programmed again with new data
+38231,eraser,an implement used to erase something
+38232,erasure,a correction made by erasing; "there were many erasures in the typescript"
+38233,erasure,a surface area where something has been erased; "another word had been written over the erasure"
+38234,erbium Er atomic_number_68,a trivalent metallic element of the rare earth group; occurs with yttrium
+38235,erect_bugle blue_bugle Ajuga_genevensis,upright rhizomatous perennial with bright blue flowers; southern Europe
+38236,erectile_dysfunction male_erecticle_dysfunction ED,impotence resulting from a man's inability to have or maintain an erection of his penis
+38237,erectile_organ,an organ containing erectile tissue
+38238,erectile_tissue,vascular tissue capable of filling with blood and becoming rigid
+38239,erecting erection,the act of building or putting up
+38240,erecting_prism,a right-angled optical prism used to turn an inverted image upright
+38241,erection,a structure that has been erected
+38242,erection hard-on,an erect penis
+38243,erectness uprightness,the property of being upright in posture
+38244,eremite,a Christian recluse
+38245,eremitism,monasticism characterized by solitude in which the social dimension of life is sacrificed to the primacy of religious experience
+38246,erethism,an abnormally high degree of irritability or sensitivity to stimulation of an organ or body part
+38247,erg,a cgs unit of work or energy; the work done by a force of one dyne acting over a distance of one centimeter
+38248,ergodicity,an attribute of stochastic systems; generally, a system that tends in probability to a limiting form that is independent of the initial conditions
+38249,ergonovine Ergotrate_Maleate,an alkaloid derived from ergot (trade name Ergotrate Maleate) that is less toxic than ergot; induces muscular contraction of the uterus and is administered after childbirth or abortion
+38250,ergosterol,a plant sterol that is converted into vitamin D by ultraviolet radiation
+38251,ergot,a plant disease caused by the ergot fungus
+38252,ergot Claviceps_purpurea,a fungus that infects various cereal plants forming compact black masses of branching filaments that replace many grains of the plant; source of medicinally important alkaloids and of lysergic acid
+38253,ergotamine,an alkaloid derived from ergot that is less toxic than ergot; causes constriction of blood vessels and is used to treat migraine
+38254,ergotism,poisoning by ingestion of ergot-infected grain products; characterized by thirst and diarrhea and nausea and cramping and vomiting and abnormal cardiac rhythms; in severe cases it can cause seizures and gangrene of the limbs
+38255,ergotropism,an affinity for work
+38256,erica true_heath,any plant of the genus Erica
+38257,eriogonum,any plant of the genus Eriogonum with small clustered flowers
+38258,eristic,the art of logical disputation (especially if specious)
+38259,ermine,the expensive white fur of the ermine
+38260,ermine shorttail_weasel Mustela_erminea,mustelid of northern hemisphere in its white winter coat
+38261,ern erne grey_sea_eagle gray_sea_eagle European_sea_eagle white-tailed_sea_eagle Haliatus_albicilla,bulky greyish-brown eagle with a short wedge-shaped white tail; of Europe and Greenland
+38262,erogenous_zone,any area of the body especially sensitive to sexual stimulation
+38263,erose_leaf,a leaf having a jagged margin as though gnawed
+38264,erosion,condition in which the earth's surface is worn away by the action of water and wind
+38265,erosion,a gradual decline of something; "after the accounting scandal there was an erosion of confidence in the auditors"
+38266,erosion eroding eating_away wearing wearing_away,(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)
+38267,erotic,an erotic person
+38268,eroticism erotism,a state of anticipation of sexuality
+38269,errancy,(Christianity) holding views that disagree with accepted doctrine; especially disagreement with papal infallibility; "he denies the errancy of the Catholic Church"
+38270,errancy,fallibility as indicated by erring or a tendency to err
+38271,errand,a short trip that is taken in the performance of a necessary task or mission
+38272,erroneousness error,inadvertent incorrectness
+38273,error computer_error,(computer science) the occurrence of an incorrect result produced by a computer
+38274,error erroneous_belief,a misconception resulting from incorrect information
+38275,error misplay,(baseball) a failure of a defensive player to make an out when normal play would have sufficed
+38276,error mistake,part of a statement that is not correct; "the book was full of errors"
+38277,error wrongdoing,departure from what is ethically acceptable
+38278,error_correction_code ECC,(telecommunication) a coding system that incorporates extra parity bits in order to detect errors
+38279,ersatz,an artificial or inferior substitute or imitation
+38280,eruditeness erudition learnedness learning scholarship encyclopedism encyclopaedism,profound scholarly knowledge
+38281,eruption,symptom consisting of a breaking out and becoming visible
+38282,eruption,the emergence of a tooth as it breaks through the gum
+38283,eruption eructation extravasation,(of volcanos) pouring out fumes or lava (or a deposit so formed)
+38284,erwinia,rod-shaped motile bacteria that attack plants
+38285,eryngo eringo,any plant of the genus Eryngium
+38286,erysipelas,an acute streptococcal infection characterized by deep-red inflammation of the skin and mucous membranes
+38287,erythema,abnormal redness of the skin resulting from dilation of blood vessels (as in sunburn or inflammation)
+38288,erythema_multiforme,a red rash caused by hypersensitivity to a drug or disease or other allergen
+38289,erythema_nodosum,skin condition characterized by tender red nodules on the shins and legs
+38290,erythema_nodosum_leprosum ENL,an inflammatory complication of leprosy that results in painful skin lesions on the arms and legs and face
+38291,erythrite cobalt_bloom,a reddish mineral consisting of hydrated cobalt arsenate in monoclinic crystalline form and used in coloring glass; usually found in veins bearing cobalt and arsenic
+38292,erythroblast,a nucleated cell in bone marrow from which red blood cells develop
+38293,erythroblastosis,a blood disease characterized by the abnormal presence of erythroblasts in the blood
+38294,erythroblastosis_fetalis,severe anemia in newborn babies; the result of Rh incompatibility between maternal and fetal blood; typically occurs when the child of an Rh-negative mother inherits Rh-positive blood from the father; can be diagnosed before birth by amniocentesis
+38295,erythrocyte_sedimentation_rate ESR sedimentation_rate sed_rate,the rate at which red blood cells settle out in a tube of blood under standardized conditions; a high rate usually indicates the presence of inflammation
+38296,erythroderma,any skin disorder involving abnormal redness
+38297,erythromycin Erythrocin E-Mycin Ethril Ilosone Pediamycin,an antibiotic (trade name Erythrocin or E-Mycin or Ethril or Ilosone or Pediamycin) obtained from the actinomycete Streptomyces erythreus; effective against many Gram-positive bacteria and some Gram-negative
+38298,erythropoiesis,the process of producing red blood cells by the stem cells in the bone marrow
+38299,erythropoietin,a glycoprotein secreted by the kidneys that stimulates the production of red blood cells
+38300,escadrille,a small squadron
+38301,escadrille,an air force squadron typically containing six airplanes (as in France during World War I)
+38302,escalade,an act of scaling by the use of ladders (especially the walls of a fortification)
+38303,escalader,someone who gains access by the use of ladders
+38304,escalation,an increase to counteract a perceived discrepancy; "higher wages caused an escalation of prices"; "there was a gradual escalation of hostilities"
+38305,escalator moving_staircase moving_stairway,a stairway whose steps move continuously on a circulating belt
+38306,escalator_clause escalator,a clause in a contract that provides for an increase or a decrease in wages or prices or benefits etc. depending on certain conditions (as a change in the cost of living index)
+38307,escalope_de_veau_Orloff,lightly sauteed veal cutlets spread with a Soubise sauce and liver paste then sprinkled with grated Parmesan and baked briefly
+38308,escapade lark,any carefree episode
+38309,escape,a plant originally cultivated but now growing wild
+38310,escape,an avoidance of danger or difficulty; "that was a narrow escape"
+38311,escape,a means or way of escaping; "hard work was his escape from worry"; "they installed a second hatch as an escape"; "their escape route"
+38312,escape escapism,an inclination to retreat from unpleasant realities through diversion or fantasy; "romantic novels were her escape from the stress of daily life"; "his alcohol problem was a form of escapism"
+38313,escape flight,the act of escaping physically; "he made his escape from the mental hospital"; "the canary escaped from its cage"; "his flight was an indication of his guilt"
+38314,escape leak leakage outflow,the discharge of a fluid from some container; "they tried to stop the escape of gas from the damaged pipe"; "he had to clean up the leak"
+38315,escape_hatch,hatchway that provides a means of escape in an emergency
+38316,escape_mechanism,a form of behavior that evades unpleasant realities
+38317,escape_velocity,the minimum velocity needed to escape a gravitational field
+38318,escape_wheel,gear that engages a rocking lever
+38319,escapee,someone who escapes
+38320,escapement,mechanical device that regulates movement
+38321,escapist dreamer wishful_thinker,a person who escapes into a world of fantasy
+38322,escapologist escape_expert,an entertainer who is expert in the art of escaping
+38323,escapology,the study of methods of escaping (especially as a form of entertainment)
+38324,escargot snail,edible terrestrial snail usually served in the shell with a sauce of melted butter and garlic
+38325,escarpment escarp scarp protective_embankment,a steep artificial slope in front of a fortification
+38326,escarpment scarp,a long steep slope or cliff at the edge of a plateau or ridge; usually formed by erosion
+38327,eschar,a dry scab formed on the skin following a burn or cauterization of the skin
+38328,eschatologist,a theologian who specializes in eschatology
+38329,eschatology,the branch of theology that is concerned with such final things as death and Last Judgment; Heaven and Hell; the ultimate destiny of humankind
+38330,escheat,a reversion to the state (as the ultimate owner of property) in the absence of legal heirs
+38331,escheat,the property that reverts to the state
+38332,escherichia,a genus of enteric bacteria
+38333,escolar Lepidocybium_flavobrunneum,large snake mackerel with rings like spectacles around its eyes
+38334,escort,an attendant who is employed to accompany someone
+38335,escort accompaniment,the act of accompanying someone or something in order to protect them
+38336,escrow,a written agreement (or property or money) delivered to a third party or put in trust by one party to a contract to be returned after fulfillment of some condition
+38337,escrow_funds,funds held in escrow
+38338,escutcheon,(nautical) a plate on a ship's stern on which the name is inscribed
+38339,escutcheon scutcheon,a shield; especially one displaying a coat of arms
+38340,esker,(geology) a long winding ridge of post glacial gravel and other sediment; deposited by meltwater from glaciers or ice sheets
+38341,esmolol Brevibloc,intravenous beta blocker (trade name Brevibloc) that acts for only a short time; used primarily for cardiac arrhythmias
+38342,esophageal_smear,alimentary tract smear of material obtained from the esophagus
+38343,esophageal_veins oesophageal_veins venae_esophageae,small veins from the esophagus emptying into the brachiocephalic vein or the azygos veins
+38344,esophagitis oesophagitis,inflammation of the esophagus; often caused by gastroesophageal reflux
+38345,esophagogastric_junction oesophagogastric_junction,the junction between the esophagus and the stomach epithelium
+38346,esophagoscope oesophagoscope,an optical instrument for examining the inside of the esophagus
+38347,esophagus oesophagus gorge gullet,the passage between the pharynx and the stomach
+38348,esoterica,secrets known only to an initiated minority
+38349,espadrille,a sandal with a sole made of rope or rubber and a cloth upper part
+38350,espalier,a trellis on which ornamental shrub or fruit tree is trained to grow flat
+38351,espionage,the systematic use of spies to get military or political secrets
+38352,espionage_agent,someone employed to spy on another country or business competitor
+38353,espionage_network,a network of spies
+38354,esplanade,a long stretch of open level ground (paved or grassy) for walking beside the seashore
+38355,espresso,strong black coffee brewed by forcing hot water under pressure through finely ground coffee beans
+38356,espresso_maker,a coffee maker that forces live steam under pressure through dark roasted coffee grounds
+38357,espresso_shop,a cafe where espresso is served
+38358,esprit,liveliness of mind or spirit
+38359,esprit_de_corps morale team_spirit,the spirit of a group that makes the members want the group to succeed
+38360,esprit_de_l'escalier,a witty remark that occurs to you too late
+38361,esquire,(Middle Ages) an attendant and shield bearer to a knight; a candidate for knighthood
+38362,essay,an analytic or interpretive literary composition
+38363,essay,a tentative attempt
+38364,essayist litterateur,a writer of literary works
+38365,essence,any substance possessing to a high degree the predominant properties of a plant or drug or other natural product from which it is extracted
+38366,essential_amino_acid,an amino acid that is required by animals but that they cannot synthesize; must be supplied in the diet
+38367,essential_condition sine_qua_non,a prerequisite
+38368,essential_hypertension hyperpiesia hyperpiesis,persistent and pathological high blood pressure for which no specific cause can be found
+38369,essential_oil volatile_oil,an oil having the odor or flavor of the plant from which it comes; used in perfume and flavorings
+38370,essential_thrombocytopenia,the primary form of thrombocytopenia (rather than a shortage of platelets caused by other conditions such as tuberculosis or chemical suppression of bone marrow etc.)
+38371,essential_tremor,tremor of unknown cause (usually of the hands and head) that develops in older people; often mistaken for Parkinsonism but is not life-threatening and can usually be kept under control
+38372,essentiality essentialness,basic importance
+38373,established_church,the church that is recognized as the official church of a nation
+38374,establishment,any large organization
+38375,establishment,a public or private structure (business or governmental or educational) including buildings and equipment for business or residence
+38376,establishment ecesis,(ecology) the process by which a plant or animal becomes established in a new habitat
+38377,establishment validation,the cognitive process of establishing a valid proof
+38378,establishmentarianism establishmentism,the doctrine of supporting the social or political establishment
+38379,estaminet,a small (and usually shabby) cafe selling wine and beer and coffee
+38380,estate,everything you own; all of your assets (whether real property or personal property) and liabilities
+38381,estate land landed_estate acres demesne,extensive landed property (especially in the country) retained by the owner for his own use; "the family owned a large estate on Long Island"
+38382,estate_of_the_realm estate the_three_estates,a major social class or order of persons regarded collectively as part of the body politic of the country (especially in the United Kingdom) and formerly possessing distinct political rights
+38383,estazolam ProSom,a frequently prescribed sleeping pill (trade name ProSom)
+38384,esteem regard respect,the condition of being honored (esteemed or respected or well regarded); "it is held in esteem"; "a man who has earned high regard"
+38385,ester,organic compound formed by reaction between an acid and an alcohol with elimination of water
+38386,esthete aesthete,one who professes great sensitivity to the beauty of art and nature
+38387,esthetician aesthetician,a worker skilled in giving beauty treatments (manicures and facials etc.)
+38388,esthetician aesthetician,a philosopher who specializes in the nature of beauty
+38389,estimate,a statement indicating the likely cost of some job; "he got an estimate from the car repair shop"
+38390,estimate estimation,the respect with which a person is held; "they had a high estimation of his ability"
+38391,estimate estimation,a judgment of the qualities of something or somebody; "many factors are involved in any estimate of human life"; "in my estimation the boy is innocent"
+38392,estimate estimation approximation idea,an approximate calculation of quantity or degree or worth; "an estimate of what it would cost"; "a rough idea how long it would take"
+38393,estimated_tax,income tax paid periodically on income that is not subject to withholding taxes; based on the taxpayer's predicted tax liability
+38394,estivation aestivation,(zoology) cessation or slowing of activity during the summer; especially slowing of metabolism in some animals during a hot or dry period
+38395,estivation aestivation,(botany) the arrangement of sepals and petals in a flower bud before it opens
+38396,estoppel,a rule of evidence whereby a person is barred from denying the truth of a fact that has already been settled
+38397,estradiol oestradiol,the most powerful female hormone that occurs naturally; synthesized and used to treat estrogen deficiency and breast cancer
+38398,estradiol_patch,a transdermal patch that allows estradiol to be absorbed into the blood stream; used in treating estrogen deficiency and in hormone replacement therapy
+38399,estriol oestriol,a naturally occurring estrogenic hormone; a synthetic form is used to treat estrogen deficiency
+38400,estrogen oestrogen,a general term for female steroid sex hormones that are secreted by the ovary and responsible for typical female sexual characteristics
+38401,estrogen_antagonist tamoxifen,an antagonist for estrogen that is used in the treatment of breast cancer
+38402,estrone oestrone theelin Estronol,a naturally occurring weak estrogenic hormone secreted by the mammalian ovary; synthesized (trade name Estronol) and used to treat estrogen deficiency
+38403,estrus oestrus heat rut,applies to nonhuman mammals: a state or period of heightened sexual arousal and activity
+38404,estuary,the wide part of a river where it nears the sea; fresh and salt water mix
+38405,eta,the 7th letter of the Greek alphabet
+38406,etagere,a piece of furniture with open shelves for displaying small ornaments
+38407,etamine etamin,a soft cotton or worsted fabric with an open mesh; used for curtains or clothing etc.
+38408,etanercept Enbrel,a genetically engineered anti-TNF compound (trade name Enbrel) consisting of receptors that bind TNF; it is injected twice a week in the treatment of rheumatoid arthritis
+38409,etcetera,additional unspecified odds and ends; more of the same; "his report was full of etceteras"
+38410,etcher,someone who etches
+38411,etching,an impression made from an etched plate
+38412,etching,an etched plate made with the use of acid
+38413,eternal_life life_eternal,life without beginning or end
+38414,eternity,a seemingly endless time interval (waiting)
+38415,eternity infinity,time without end
+38416,eternity timelessness timeless_existence,a state of eternal existence believed in some religions to characterize the afterlife
+38417,ethacrynic_acid Edecrin,diuretic (trade name Edecrin) used to treat edema
+38418,ethane C2H6,a colorless odorless alkane gas used as fuel
+38419,ethchlorvynol Placidyl,a mild sedative-hypnotic drug (trade name Placidyl)
+38420,ether,any of a class of organic compounds that have two hydrocarbon groups linked by an oxygen atom
+38421,ether aether,a medium that was once supposed to fill all space and to support the propagation of electromagnetic waves
+38422,ether ethoxyethane divinyl_ether vinyl_ether diethyl_ether ethyl_ether,a colorless volatile highly flammable liquid formerly used as an inhalation anesthetic
+38423,ethernet,a type of network technology for local area networks; coaxial cable carries radio frequency signals between computers at a rate of 10 megabits per second
+38424,ethernet_cable,any of several types of coaxial cable used in ethernets
+38425,ethic ethical_code,a system of principles governing morality and acceptable conduct
+38426,ethic moral_principle value-system value_orientation,the principles of right and wrong that are accepted by an individual or a social group; "the Puritan ethic"; "a person with old-fashioned values"
+38427,ethical_motive ethics morals morality,motivation based on ideas of right and wrong
+38428,ethicism,a doctrine that ethics and ethical ideas are valid and important; "his ethicism often led him to moralize"
+38429,ethicist ethician,a philosopher who specializes in ethics
+38430,ethics moral_philosophy,the philosophical study of moral values and rules
+38431,ethics_committee ethics_panel,a committee appointed to consider ethical issues
+38432,ethmoid ethmoid_bone,one of the eight bones of the cranium; a small bone filled with air spaces that forms part of the eye sockets and the nasal cavity
+38433,ethmoid_sinus ethmoidal_sinus sinus_ethmoidales,a sinus of the meatuses of the nasal cavity (behind the bridge of the nose)
+38434,ethmoidal_artery arteria_ethmoidalis,a branch of the ophthalmic artery supplying structures in and around the nasal capsule
+38435,ethmoidal_vein vena_ethmoidalis,veins that drain the ethmoidal sinuses and empty into the superior ophthalmic vein
+38436,ethnarch,the ruler of a province (as in the Roman Empire and Byzantine Empire) or certain religious rulers with secular authority; "the election of Makarios III to archbishop gave him the status of the ethnarch of Cyprus"
+38437,ethnic,a person who is a member of an ethnic group
+38438,ethnic_cleansing,the mass expulsion and killing of one ethnic or religious group in an area by another ethnic or religious group in that area
+38439,ethnic_group ethnos,people of the same race or nationality who share a distinctive culture
+38440,ethnic_joke,a joke at the expense of some ethnic group
+38441,ethnic_minority,a group that has different national or cultural traditions from the majority of the population
+38442,ethnic_slur,a slur on someone's race or language
+38443,ethnicity,an ethnic quality or affiliation resulting from racial or cultural ties; "ethnicity has a strong influence on community status relations"
+38444,ethnocentrism,belief in the superiority of one's own ethnic group
+38445,ethnographer,an anthropologist who does ethnography
+38446,ethnography descriptive_anthropology,the branch of anthropology that provides scientific description of individual human societies
+38447,ethnologist,an anthropologist who studies ethnology
+38448,ethnology,the branch of anthropology that deals with the division of humankind into races and with their origins and distribution and distinctive characteristics
+38449,ethologist,a zoologist who studies the behavior of animals in their natural habitats
+38450,ethology,the branch of zoology that studies the behavior of animals in their natural habitats
+38451,ethos,(anthropology) the distinctive spirit of a culture or an era; "the Greek ethos"
+38452,ethosuximide Emeside Zarontin,an anticonvulsant drug (trade names Emeside and Zarontin) used to treat petit mal epilepsy
+38453,ethyl ethyl_group ethyl_radical,the univalent hydrocarbon radical C2H5 derived from ethane by the removal of one hydrogen atom
+38454,ethyl_acetate,a fragrant colorless flammable volatile liquid ester made from ethanol and acetic acid; used in flavorings and perfumes and as a solvent for plastics
+38455,ethyl_alcohol ethanol fermentation_alcohol grain_alcohol,the intoxicating agent in fermented and distilled liquors; used pure or denatured as a solvent or in medicines and colognes and cleaning solutions and rocket fuel; proposed as a renewable clean-burning additive to gasoline
+38456,ethyl_chloride,a colorless flammable gas used as a local surface anesthetic
+38457,ethylene ethene,a flammable colorless gaseous alkene; obtained from petroleum and natural gas and used in manufacturing many other chemicals; sometimes used as an anesthetic
+38458,ethylene_glycol glycol ethanediol,a sweet but poisonous syrupy liquid used as an antifreeze and solvent
+38459,ethylenediaminetetraacetic_acid EDTA,a complex molecule used medically to chelate metal ions in cases of lead or heavy metal poisoning
+38460,etiolation,a pale and sickly appearance; "his etiolation signaled years in prison"
+38461,etiolation,the act of weakening by stunting the growth or development of something; "the etiolation of the critical tradition"
+38462,etiolation,(botany) the act of causing a plant to develop without chlorophyll by growing it without exposure to sunlight; "the etiolation of celery"
+38463,etiologist aetiologist,a specialist in the etiology of diseases
+38464,etiology aetiology,the cause of a disease
+38465,etiology aetiology,the philosophical study of causation
+38466,etiquette,rules governing socially acceptable behavior
+38467,etodolac Lodine,a nonsteroidal anti-inflammatory drug (trade name Lodine)
+38468,etude,a short composition for a solo instrument; intended as an exercise or to demonstrate technical virtuosity
+38469,etui,small ornamental ladies' bag for small articles
+38470,etymological_dictionary,a dictionary giving the historical origins of each word
+38471,etymologist,a lexicographer who specializes in etymology
+38472,etymology,a history of a word
+38473,etymology,the study of the sources and development of words
+38474,etymon root,a simple form inferred as the common basis from which related words in several languages can be derived by linguistic processes
+38475,eubacteria eubacterium true_bacteria,a large group of bacteria having rigid cell walls; motile types have flagella
+38476,eucalyptus,wood of any of various eucalyptus trees valued as timber
+38477,eucalyptus eucalypt eucalyptus_tree,a tree of the genus Eucalyptus
+38478,eucalyptus_gum eucalyptus_kino red_gum,reddish-brown dried gummy exudation from any of several trees of the genus Eucalyptus especially Eucalyptus camaldulensis
+38479,eucalyptus_oil,an essential oil obtained from the leaves of eucalypts
+38480,euchre five_hundred,a card game similar to ecarte; each player is dealt 5 cards and the player making trump must take 3 tricks to win a hand
+38481,eudemon eudaemon good_spirit,a benevolent spirit
+38482,eudemonism endaemonism,an ethical system that evaluates actions by reference to personal well-being through a life based on reason
+38483,eudiometer,measuring instrument consisting of a graduated glass tube for measuring volume changes in chemical reactions between gases
+38484,eugenics,the study of methods of improving genetic qualities by selective breeding (especially as applied to human mating)
+38485,euglena,minute single-celled green freshwater organism having a single flagella; often classed as algae
+38486,euglenoid euglenophyte euglenid,marine and freshwater green or colorless flagellate organism
+38487,eukaryote eucaryote,an organism with cells characteristic of all life forms except primitive microorganisms such as bacteria; i.e. an organism with `good' or membrane-bound nuclei in its cells
+38488,eulogist panegyrist,an orator who delivers eulogies or panegyrics
+38489,eulogy eulogium,a formal expression of praise for someone who has died recently
+38490,eunuch castrate,a man who has been castrated and is incapable of reproduction; "eunuchs guarded the harem"
+38491,euphemism,an inoffensive or indirect expression that is substituted for one that is considered offensive or too harsh
+38492,euphonium,a bass horn (brass wind instrument) that is the tenor of the tuba family
+38493,euphorbium gum_eurphorbium,an acrid brown gum resin now used mainly in veterinary medicine
+38494,euphoria euphory,a feeling of great (usually exaggerated) elation
+38495,euphoriant,a psychoactive drug that tends to produce elation and euphoria
+38496,euphuism,any artificially elegant style of language
+38497,euphuism,an elegant style of prose of the Elizabethan period; characterized by balance and antithesis and alliteration and extended similes with and allusions to nature and mythology
+38498,eupnea eupnoea,normal relaxed breathing
+38499,euro,the basic monetary unit of most members of the European Union (introduced in 1999); in 2002 twelve European nations (Germany, France, Belgium, Luxembourg, the Netherlands, Italy, Spain, Portugal, Ireland, Greece, Austria, Finland) adopted the euro as their basic unit of money and abandoned their traditional currencies
+38500,europium Eu atomic_number_63,a bivalent and trivalent metallic element of the rare earth group
+38501,eurypterid,large extinct scorpion-like arthropod considered related to horseshoe crabs
+38502,eurythmy eurhythmy eurythmics eurhythmics,the interpretation in harmonious bodily movements of the rhythm of musical compositions; used to teach musical understanding
+38503,eusporangium,a sporangium that arises from a group of epidermal cells
+38504,eutectic,a mixture of substances having a minimum melting point
+38505,eutectoid_steel,a steel that contains 0.9% carbon (the eutectic point); a carbon steel with 0.9% carbon is pure pearlite
+38506,euthanasia mercy_killing,the act of killing someone painlessly (especially someone suffering from an incurable illness)
+38507,euthenics,the study of methods of improving human well-being and efficient functioning by improving environmental conditions
+38508,eutrophication,excessive nutrients in a lake or other body of water, usually caused by runoff of nutrients (animal waste, fertilizers, sewage) from the land, which causes a dense growth of plant life; the decomposition of the plants depletes the supply of oxygen, leading to the death of animal life; "he argued that the controlling factor in eutrophication is not nitrate but phosphate"
+38509,evacuation,the act of evacuating; leaving a place in an orderly fashion; especially for protection
+38510,evacuee,a person who has been evacuated from a dangerous place
+38511,evaluation rating,act of ascertaining or fixing the value or worth of
+38512,evaluation valuation rating,an appraisal of the value of something; "he set a high valuation on friendship"
+38513,evaluator judge,an authority who is able to estimate worth or quality
+38514,evanescence,the event of fading and gradually vanishing from sight; "the evanescence of the morning mist"
+38515,evangelicalism,stresses the importance of personal conversion and faith as the means of salvation
+38516,evangelism,zealous preaching and advocacy of the gospel
+38517,evangelist revivalist gospeler gospeller,a preacher of the Christian gospel
+38518,evaporated_milk,milk concentrated by evaporation
+38519,evaporative_cooler,a cooling system that cools by evaporation
+38520,evaporite,the sediment that is left after the evaporation of seawater
+38521,evasion,the act of physically escaping from something (an opponent or a pursuer or an unpleasant situation) by some adroit maneuver
+38522,evasion equivocation,a statement that is not literally false but that cleverly avoids an unpleasant truth
+38523,evasion escape dodging,nonperformance of something distasteful (as by deceit or trickery) that you are supposed to do; "his evasion of his clear duty was reprehensible"; "that escape from the consequences is possible but unattractive"
+38524,evasion nonpayment,the deliberate act of failing to pay money; "his evasion of all his creditors"; "he was indicted for nonpayment"
+38525,evasive_answer,(law) an answer by a defendant that fails to admit or deny the allegations set forth in the complaint
+38526,eve,the period immediately before something; "on the eve of the French Revolution"
+38527,eve,the day before; "he always arrives on the eve of her departure"
+38528,even-pinnate_leaf abruptly-pinnate_leaf,a pinnate leaf with a pair of leaflets at the apex
+38529,even-toed_ungulate artiodactyl artiodactyl_mammal,placental mammal having hooves with an even number of functional toes on each foot
+38530,even_spacing,regularity of spacing
+38531,evening,a later concluding time period; "it was the evening of the Roman Empire"
+38532,evening,the early part of night (from dinner until bedtime) spent in a special way; "an evening at the opera"
+38533,evening eve even eventide,the latter part of the day (the period of decreasing daylight from late afternoon until nightfall); "he enjoyed the evening light across the lake"
+38534,evening-snow Linanthus_dichotomus,small California annual with white flowers
+38535,evening_bag,a handbag used with evening wear
+38536,evening_grosbeak Hesperiphona_vespertina,North American grosbeak
+38537,evening_primrose,any of several plants of the family Onagraceae
+38538,evening_shift,workers who work during the evening (as 4 p.m. to midnight)
+38539,evening_shift swing_shift,the work shift during the evening (as 4 p.m. to midnight)
+38540,evening_star Hesperus Vesper,a planet (usually Venus) seen at sunset in the western sky
+38541,evenness,the parity of even numbers (divisible by two)
+38542,evenness,the quality of being balanced
+38543,evenness invariability,a quality of uniformity and lack of variation
+38544,event,a phenomenon located at a single point in space-time; the fundamental observational entity in relativity theory
+38545,event,something that happens at a given place and time
+38546,event case,a special set of circumstances; "in that event, the first possibility is excluded"; "it may rain in which case the picnic will be canceled"
+38547,event_planner,someone who plans social events as a profession (usually for government or corporate officials)
+38548,eventration,protrusion of the intestine through the abdominal wall
+38549,eventuality contingency contingence,a possible event or occurrence or result
+38550,evergreen evergreen_plant,a plant having foliage that persists and remains green throughout the year
+38551,evergreen_bittersweet Euonymus_fortunei_radicans Euonymus_radicans_vegetus,broad and bushy Asiatic twining shrub with pinkish fruit; many subspecies or varieties
+38552,evergreen_blueberry Vaccinium_myrsinites,shrub of the eastern United States having shining evergreen leaves and bluish-black fruit
+38553,evergreen_huckleberry Vaccinium_ovatum,stiff bushy evergreen shrub of western North America having sour black berries and glossy green foliage used in floral arrangements
+38554,evergreen_thorn Crataegus_oxyacantha,evergreen hawthorn of southeastern Europe
+38555,everlasting everlasting_flower,any of various plants of various genera of the family Compositae having flowers that can be dried without loss of form or color
+38556,everlasting_pea,any of several perennial vines of the genus Lathyrus
+38557,everlastingness,the property of lasting forever
+38558,eversion,the position of being turned outward; "the eversion of the foot"
+38559,everyman,the ordinary person
+38560,eviction constructive_eviction,action by a landlord that compels a tenant to leave the premises (as by rendering the premises unfit for occupancy); no physical expulsion or legal process is involved
+38561,eviction dispossession legal_ouster,the expulsion of someone (such as a tenant) from the possession of land by process of law
+38562,evidence,(law) all the means by which any alleged matter of fact whose truth is investigated at judicial trial is established or disproved
+38563,evidence,an indication that makes something evident; "his trembling was evidence of his fear"
+38564,evidence grounds,your basis for belief or disbelief; knowledge on which to base belief; "the evidence that smoking causes lung cancer is very compelling"
+38565,evil,that which causes harm or destruction or misfortune; "the evil that men do lives after them; the good is oft interred with their bones"- Shakespeare
+38566,evil evilness,the quality of being morally wrong in principle or practice; "attempts to explain the origin of evil in the world"
+38567,evil immorality wickedness iniquity,morally objectionable behavior
+38568,evil_eye,a look that is believed to have the power of inflicting harm
+38569,evil_spirit,a spirit tending to cause harm
+38570,evisceration,surgical removal of an organ (or the contents of an organ) from a patient
+38571,evisceration,altering something (as a legislative act or a statement) in such a manner as to reduce its value; "the adoption of their amendments would have amounted to an evisceration of the act"
+38572,evocation,imaginative re-creation
+38573,evocation induction elicitation,stimulation that calls up (draws forth) a particular class of behaviors; "the elicitation of his testimony was not easy"
+38574,evocation summoning,calling up supposed supernatural forces by spells and incantations
+38575,evoked_potential,the electrical response of the central nervous system produced by an external stimulus; "he measured evoked potentials with an electroencephalogram"
+38576,evolution organic_evolution phylogeny phylogenesis,(biology) the sequence of events involved in the evolutionary development of a species or taxonomic group of organisms
+38577,evolutionary_trend,a general direction of evolutionary change
+38578,evolutionist,a person who believes in organic evolution
+38579,ewe,female sheep
+38580,ex-boyfriend,a man who is no longer a woman's boyfriend
+38581,ex-gambler,a former gambler
+38582,ex-husband ex,a man who was formerly a certain woman's husband
+38583,ex-mayor,a former mayor
+38584,ex-president,a former president
+38585,ex-spouse,a person who was formerly a spouse
+38586,ex-wife ex,a woman who was formerly a particular man's wife; "all his exes live in Texas"
+38587,exabit Ebit Eb,a unit of information equal to 1000 petabits or 10^18 bits
+38588,exabyte EB,a unit of information equal to 1000 petabytes or 10^18 bytes
+38589,exabyte exbibyte EB EiB,a unit of information equal to 1024 pebibytes or 2^60 bytes
+38590,exacerbation,violent and bitter exasperation; "his foolishness was followed by an exacerbation of their quarrel"
+38591,exacta perfecta,a bet that you can pick the first and second finishers in the right order
+38592,exaction,act of demanding or levying by force or authority; "exaction of tribute"; "exaction of various dues and fees"
+38593,exactness exactitude,the quality of being exact; "he demanded exactness in all details"; "a man of great exactitude"
+38594,exaggeration,the act of making something more noticeable than usual; "the dance involved a deliberate exaggeration of his awkwardness"
+38595,exaggeration overstatement magnification,making to seem more important than it really is
+38596,exaltation,the location of a planet in the zodiac at which it is believed to exert its maximum influence
+38597,exaltation,a flock of larks (especially a flock of larks in flight overhead)
+38598,examen,a critical study (as of a writer's work)
+38599,examen examination,a detailed inspection of your conscience (as done daily by Jesuits)
+38600,examination exam test,a set of questions or exercises evaluating skill or knowledge; "when the test was stolen the professor had to make a new set of questions"
+38601,examination scrutiny,the act of examining something closely (as for mistakes)
+38602,examination testing,the act of giving students or candidates a test (as by questions) to determine what they know or have learned
+38603,examiner inspector,an investigator who observes carefully; "the examiner searched for clues"
+38604,examiner tester quizzer,someone who administers a test to determine your qualifications
+38605,example deterrent_example lesson object_lesson,punishment intended as a warning to others; "they decided to make an example of him"
+38606,example illustration instance representative,an item of information that is typical of a class or group; "this patient provides a typical example of the syndrome"; "there is an example on page 10"
+38607,exanthem exanthema skin_eruption,eruption on the skin occurring as a symptom of a disease
+38608,exanthema_subitum roseola_infantum roseola_infantilis pseudorubella,a viral disease of infants and young children; characterized by abrupt high fever and mild sore throat; a few days later there is a faint pinkish rash that lasts for a few hours to a few days
+38609,exarch,a bishop in one of several Eastern Orthodox Churches in North America
+38610,exarch,a bishop in eastern Christendom who holds a place below a patriarch but above a metropolitan
+38611,exarch,a viceroy who governed a large province in the Roman Empire
+38612,exasperation,actions that cause great irritation (or even anger)
+38613,exbibit Eibit,a unit of information equal to 1024 pebibits or 2^60 bits
+38614,excavation,a hole in the ground made by excavating
+38615,excavation digging dig,the act of digging; "there's an interesting excavation going on near Princeton"
+38616,excavator,a workman who excavates for foundations of buildings or for quarrying
+38617,exceedance,(geology) the probability that an earthquake will generate a level of ground motion that exceeds a specified reference level during a given exposure time; "the concept of exceedance can be applied to any type of environmental risk modeling"
+38618,excellence,the quality of excelling; possessing good qualities in high degree
+38619,excellence excellency,an outstanding feature; something in which something or someone excels; "a center of manufacturing excellence"; "the use of herbs is one of the excellencies of French cuisine"
+38620,excelsior wood_shavings,thin curly wood shavings used for packing or stuffing
+38621,exception,grounds for adverse criticism; "his authority is beyond exception"
+38622,exception,an instance that does not conform to a rule or generalization; "all her children were brilliant; the only exception was her last child"; "an exception tests the rule"
+38623,exception exclusion elision,a deliberate act of omission; "with the exception of the children, everyone was told the news"
+38624,excerpt excerption extract selection,a passage selected from a larger work; "he presented excerpts from William James' philosophical writings"
+38625,excess excessiveness inordinateness,immoderation as a consequence of going beyond sufficient or permitted limits
+38626,excess surplus surplusage nimiety,a quantity much larger than is needed
+38627,exchange,chemical process in which one atom or ion or group changes places with another
+38628,exchange,a mutual expression of views (especially an unpleasant one); "they had a bitter exchange"
+38629,exchange,a workplace for buying and selling; open only to members
+38630,exchange,the act of giving something in return for something received; "deductible losses on sales or exchanges of property are allowable"
+38631,exchange,(chess) gaining (or losing) a rook in return for a knight or bishop; "black lost the exchange"
+38632,exchange,(chess) the capture by both players (usually on consecutive moves) of pieces of equal value; "the endgame began after the exchange of queens"
+38633,exchange interchange,the act of changing one thing for another thing; "Adam was promised immortality in exchange for his disobedience"; "there was an interchange of prisoners"
+38634,exchange interchange,reciprocal transfer of equivalent sums of money (especially the currencies of different countries); "he earns his living from the interchange of currency"
+38635,exchange_traded_fund ETF,a mutual fund that is traded on a stock exchange
+38636,exchange_transfusion,slow removal of a person's blood and its replacement with equal amounts of a donor's blood
+38637,exchangeability interchangeability interchangeableness fungibility,the quality of being capable of exchange or interchange
+38638,exchanger money_changer,one whose business is to exchange the money of one country for that of another country
+38639,excise excise_tax,a tax that is measured by the amount of business done (not on property or income from real estate)
+38640,excitability excitableness volatility,being easily excited
+38641,excitability irritability,excessive sensitivity of an organ or body part
+38642,excitation excitement,something that agitates and arouses; "he looked forward to the excitements of the day"
+38643,excitation innervation irritation,the neural or electrical arousal of an organ or muscle or gland
+38644,excitement excitation inflammation fervor fervour,the state of being emotionally aroused and worked up; "his face was flushed with excitement and his hands trembled"; "he tried to calm those who were in a state of extreme inflammation"
+38645,exclamation,a loud complaint or protest or reproach
+38646,exclamation exclaiming,an abrupt excited utterance; "she gave an exclamation of delight"; "there was much exclaiming over it"
+38647,exclamation_mark exclamation_point,a punctuation mark (!) used after an exclamation
+38648,exclusion,the state of being excluded
+38649,exclusionary_rule,a rule that provides that otherwise admissible evidence cannot be used in a criminal trial if it was the result of illegal police conduct
+38650,exclusive scoop,a news report that is reported first by one news organization; "he got a scoop on the bribery of city officials"
+38651,excogitation,thinking something out with care in order to achieve complete understanding of it
+38652,excogitator,a thinker who considers carefully and thoroughly
+38653,excommunication excision,the act of banishing a member of a church from the communion of believers and the privileges of the church; cutting a person off from a religious society
+38654,excommunication exclusion censure,the state of being excommunicated
+38655,excoriation,severe censure
+38656,excrescence,(pathology) an abnormal outgrowth or enlargement of some part of the body
+38657,excretory_organ urinary_organ,an organ that separates waste substances from the blood and discharges them
+38658,exculpation,the act of freeing from guilt or blame
+38659,excursion jaunt outing junket pleasure_trip expedition sashay,a journey taken for pleasure; "many summer excursions to the shore"; "it was merely a pleasure trip"; "after cautious sashays into the field"
+38660,excursion_rate,a reduced rate for a round-trip ticket
+38661,excuse,a note explaining an absence; "he had to get his mother to write an excuse for him"
+38662,excuse alibi exculpation self-justification,a defense of some offensive behavior or some failure to keep a promise etc.; "he kept finding excuses to stay"; "every day he had a new alibi for not getting a job"; "his transparent self-justification was unacceptable"
+38663,execration,the object of cursing or detestation; that which is execrated
+38664,execration condemnation curse,an appeal to some supernatural power to inflict evil on someone or some group
+38665,executability,capability of being executed; "the job is executable for two million dollars"; "this contract is not executable"
+38666,executant,a performer (usually of musical works)
+38667,execution executing capital_punishment death_penalty,putting a condemned person to death
+38668,execution execution_of_instrument,(law) the completion of a legal instrument (such as a contract or deed) by signing it (and perhaps sealing and delivering it) so that it becomes legally binding and enforceable
+38669,execution implementation carrying_out,the act of accomplishing some aim or executing some order; "the agency was created for the implementation of the policy"
+38670,execution instruction_execution,(computer science) the process of carrying out an instruction by a computer
+38671,execution writ_of_execution,a routine court order that attempts to enforce the judgment that has been granted to a plaintiff by authorizing a sheriff to carry it out
+38672,execution_speed,(computer science) the speed with which a computational device can execute instructions; measured in MIPS
+38673,executioner public_executioner,an official who inflicts capital punishment in pursuit of a warrant
+38674,executive,persons who administer the law
+38675,executive executive_director,a person responsible for the administration of a business
+38676,executive_agency,an agency of the executive branch of government
+38677,executive_branch Executive_Office_of_the_President,the branch of the United States government that is responsible for carrying out the laws
+38678,executive_clemency,the power (usually of a president or governor) to pardon or commute the sentence of someone convicted in that jurisdiction
+38679,executive_council,a council that shares the supreme executive power
+38680,executive_department,a federal department in the executive branch of the government of the United States
+38681,executive_officer,the officer second in command
+38682,executive_secretary,a secretary having administrative duties and responsibilities
+38683,executive_session closed_session,a session (usually of a legislative body) that is closed to the public
+38684,executive_vice_president,a vice president holding executive power
+38685,executor,a person appointed by a testator to carry out the terms of the will
+38686,executor-heir_relation,the responsibility of an executor (or administrator) of an estate to act in the best interests of the heir
+38687,executrix,a woman executor
+38688,exegesis,an explanation or critical interpretation (especially of the Bible)
+38689,exegete,a person skilled in exegesis (especially of religious texts)
+38690,exemplar example model good_example,something to be imitated; "an exemplar of success"; "a model of clarity"; "he is the very model of a modern major general"
+38691,exemplification illustration,showing by example
+38692,exemption,a deduction allowed to a taxpayer because of his status (having certain dependents or being blind or being over 65 etc.); "additional exemptions are allowed for each dependent"
+38693,exemption freedom,immunity from an obligation or duty
+38694,exemption immunity granting_immunity,an act exempting someone; "he was granted immunity from prosecution"
+38695,exenteration,surgical removal of the organs within a body cavity (as those of the pelvis)
+38696,exercise,(usually plural) a ceremony that involves processions and speeches; "academic exercises"
+38697,exercise,an action, often used negatively and without consequences; "an exercise in futility"; "an exercise in cheap talk"
+38698,exercise example,a task performed or problem solved in order to develop skill or understanding; "you must work the examples at the end of each chapter in the textbook"
+38699,exercise exercising physical_exercise physical_exertion workout,the activity of exerting your muscles in various ways to keep fit; "the doctor recommended regular exercise"; "he did some exercising"; "the physical exertion required by his work kept him fit"
+38700,exercise practice drill practice_session recitation,systematic training by multiple repetitions; "practice makes perfect"
+38701,exercise_bike exercycle,an exercise device resembling a stationary bike
+38702,exercise_device,a device designed to provide exercise for the user
+38703,exfiltration_operation,a clandestine rescue operation to bring a defector or refugee or an operative and family out of danger
+38704,exfoliation,the peeling off in flakes or scales of bark or dead skin; "exfoliation is increased by sunburn"
+38705,exhalation expiration breathing_out,the act of expelling air from the lungs
+38706,exhaust exhaust_fumes fumes,gases ejected from an engine as waste products
+38707,exhaust exhaust_system,system consisting of the parts of an engine through which burned gases or steam are discharged
+38708,exhaust_fan,a fan that moves air out of an enclosure
+38709,exhaust_manifold,a manifold that receives exhaust gases from the cylinders and conducts them to the exhaust pipe
+38710,exhaust_pipe,a pipe through which burned gases travel from the exhaust manifold to the muffler
+38711,exhaust_valve,a valve through which burned gases from a cylinder escape into the exhaust manifold
+38712,exhaustion,extreme fatigue
+38713,exhaustion,the act of exhausting something entirely
+38714,exhibit,an object or statement produced before a court of law and referred to while giving evidence
+38715,exhibition,the act of exhibiting; "a remarkable exhibition of musicianship"
+38716,exhibition exposition expo,a collection of things (goods or works of art etc.) for public display
+38717,exhibition_game practice_game,a game whose outcome is not recorded in the season's standing
+38718,exhibition_hall exhibition_area,a large hall for holding exhibitions
+38719,exhibition_season,the time before the regular games begin when football or baseball teams play practice games
+38720,exhibitionism,extravagant and conspicuous behavior intended to attract attention to yourself
+38721,exhibitionism immodesty,the perverse act of exposing and attracting attention to your own genitals
+38722,exhibitionist flasher,someone with a compulsive desire to expose the genitals
+38723,exhibitionist show-off,someone who deliberately behaves in such a way as to attract attention
+38724,exhibitor exhibitioner shower,someone who organizes an exhibit for others to see
+38725,exhilaration excitement,the feeling of lively and cheerful joy; "he could hardly conceal his excitement when she agreed"
+38726,exhortation,a communication intended to urge or persuade the recipients to take some action
+38727,exhortation incitement,the act of exhorting; an earnest attempt at persuasion
+38728,exhumation disinterment digging_up,the act of digging something up out of the ground (especially a corpse) where it has been buried
+38729,exigency,a pressing or urgent situation; "the health-care exigency"
+38730,exile deportation expatriation transportation,the act of expelling a person from their native land; "men in exile dream of hope"; "his deportation to a penal colony"; "the expatriation of wealthy farmers"; "the sentence was one of transportation for life"
+38731,exile deportee,a person who is expelled from home or country by authority
+38732,exile expatriate expat,a person who is voluntarily absent from home or country; "American expatriates"
+38733,existential_quantifier existential_operator,a logical quantifier of a proposition that asserts the existence of at least one thing for which the proposition is true
+38734,existentialism existential_philosophy existentialist_philosophy,(philosophy) a 20th-century philosophical movement chiefly in Europe; assumes that people are entirely free and thus responsible for what they make of themselves
+38735,existentialist existentialist_philosopher existential_philosopher,a philosopher who emphasizes freedom of choice and personal responsibility but who regards human existence in a hostile universe as unexplainable
+38736,exit,the act of going out
+38737,exit issue outlet way_out,an opening that permits escape or release; "he blocked the way out"; "the canyon had only one issue"
+38738,exit_poll,a poll of voters as they leave the voting place; usually taken by news media in order to predict the outcome of an election
+38739,exobiology space_biology astrobiology,the branch of biology concerned with the effects of outer space on living organisms and the search for extraterrestrial life
+38740,exocrine_gland exocrine duct_gland,a gland that secretes externally through a duct
+38741,exode,a farcical afterpiece in the ancient Roman theater
+38742,exodontics exodontia,the branch of dentistry dealing with extraction of teeth
+38743,exodontist,a dentist specializing in the extraction of teeth
+38744,exodus hegira hejira,a journey by a large group to escape from a hostile environment
+38745,exoergic_reaction,a nuclear reaction accompanied by the evolution of energy
+38746,exogamy intermarriage,marriage to a person belonging to a tribe or group other than your own as required by custom or law
+38747,exogenous_depression reactive_depression,an inappropriate state of depression that is precipitated by events in the person's life (to be distinguished from normal grief)
+38748,exogenous_obesity,obesity caused by overeating
+38749,exomphalos,an umbilical hernia at birth in which some abdominal organs push into the umbilical cord
+38750,exon coding_DNA,sequence of a gene's DNA that transcribes into protein structures; "exons are interspersed with introns"
+38751,exoneration,the condition of being relieved from blame or obligation
+38752,exonuclease,a nuclease that releases one nucleotide at a time (serially) beginning at one of a nucleic acid
+38753,exophthalmos,protrusion of the eyeball from the socket
+38754,exorbitance outrageousness,excessive excess
+38755,exorcism dispossession,freeing from evil spirits
+38756,exorcist,one of the minor orders in the unreformed Western Church but now suppressed in the Roman Catholic Church
+38757,exorcist exorciser,someone who practices exorcism
+38758,exordium,(rhetoric) the introductory section of an oration or discourse
+38759,exoskeleton,the exterior protective or supporting structure or shell of many animals (especially invertebrates) including bony or horny parts such as nails or scales or hoofs
+38760,exosphere,the outermost atmospheric layer
+38761,exostosis,a benign outgrowth from a bone (usually covered with cartilage)
+38762,exotherm,a compound that gives off heat during its formation and absorbs heat during its decomposition
+38763,exothermic_reaction,a chemical reaction accompanied by the evolution of heat
+38764,exoticism exoticness exotism,the quality of being exotic; "he loved the exoticism of Egypt"
+38765,exotoxin,a toxin that is secreted by microorganisms into the surrounding medium
+38766,expanse,a wide and open space or area as of surface or land or sky
+38767,expansion,a function expressed as a sum or product of terms; "the expansion of (a+b)^2 is a^2 + 2ab + b^2"
+38768,expansion enlargement,the act of increasing (something) in size or volume or quantity or scope
+38769,expansion enlargement elaboration,a discussion that provides additional information
+38770,expansion expanding_upon,adding information or detail
+38771,expansion_bit expansive_bit,a bit with a cutting blade that can be adjusted to different sizes
+38772,expansion_bolt,a bolt that has an attachment that expands as the bolt is driven into a surface
+38773,expansionism,the doctrine of expanding the territory or the economic influence of a country
+38774,expansiveness expansivity,a quality characterized by magnificence of scale or the tendency to expand; "the expansiveness of their extravagant life style was soon curtailed"
+38775,expatiation,a discussion (spoken or written) that enlarges on a topic or theme at length or in detail
+38776,expectation,the feeling that something is about to happen
+38777,expectation outlook prospect,belief about (or mental picture of) the future
+38778,expectedness,ordinariness as a consequence of being expected and not surprising
+38779,expectorant expectorator,a medicine promoting expectoration
+38780,expectoration,the process of coughing up and spitting out
+38781,expedience expediency,the quality of being suited to the end in view
+38782,expedient,a means to an end; not necessarily a principled or ethical one
+38783,expedition,an organized group of people undertaking a journey for a particular purpose; "an expedition was sent to explore Mars"
+38784,expedition,a journey organized for a particular purpose
+38785,expedition military_expedition hostile_expedition,a military campaign designed to achieve a specific objective in a foreign country
+38786,expending expenditure,the act of spending money for goods or services
+38787,expense,money spent to perform work and usually reimbursed by an employer; "he kept a careful record of his expenses at the meeting"
+38788,expense,a detriment or sacrifice; "at the expense of"
+38789,expense disbursal disbursement,amounts paid for goods and services that may be currently tax deductible (as opposed to capital expenditures)
+38790,expense_account travel_and_entertainment_account,an account to which salespersons or executives can charge travel and entertainment expenses
+38791,expense_record,a written record of money spent
+38792,expensiveness,the quality of being high-priced
+38793,experience,an event as apprehended; "a surprising experience"; "that painful experience certainly got our attention"
+38794,experience,the content of direct observation or participation in an event; "he had a religious experience"; "he recalled the experience vividly"
+38795,experience,the accumulation of knowledge or skill that results from direct participation in events or activities; "a man of experience"; "experience is the best teacher"
+38796,experiment,a venture at something new or different; "as an experiment he decided to grow a beard"
+38797,experiment experimentation,the testing of an idea; "it was an experiment in living"; "not all experimentation is done in laboratories"
+38798,experiment experimentation,the act of conducting a controlled test or investigation
+38799,experimental_method,the use of controlled observations and measurements to test hypotheses
+38800,experimental_procedure,the specific techniques used in conducting a particular experiment
+38801,experimental_psychology psychonomics,the branch of psychology that uses experimental methods to study psychological issues
+38802,experimentalism,an orientation that favors experimentation and innovation; "the children of psychologists are often raised in an atmosphere of experimentalism"
+38803,experimentalism,an empirical doctrine that advocates experimental principles
+38804,experimenter,a person who enjoys testing innovative ideas; "she was an experimenter in new forms of poetry"
+38805,experimenter,a research worker who conducts experiments
+38806,experimenter_bias,(psychology) bias introduced by an experimenter whose expectations about the outcome of the experiment can be subtly communicated to the participants in the experiment
+38807,expert,a person with special knowledge or ability who performs skillfully
+38808,expert_witness,a witness who has knowledge not normally possessed by the average person concerning the topic that he is to testify about
+38809,expertness expertise,skillfulness by virtue of possessing special knowledge
+38810,expiation atonement propitiation,the act of atoning for sin or wrongdoing (especially appeasing a deity)
+38811,explanans,(logic) statements that explain the explicandum; the explanatory premises
+38812,explanation,the act of explaining; making something plain or intelligible; "I heard his explanation of the accident"
+38813,explanation,thought that makes something comprehensible
+38814,explanation account,a statement that makes something comprehensible by describing the relevant structure or operation or circumstances etc.; "the explanation was very simple"; "I expected a brief account"
+38815,expletive,a word or phrase conveying no independent meaning but added to fill out a sentence or metrical line
+38816,explicandum explanandum,(logic) a statement of something (a fact or thing or expression) to be explained
+38817,explication,the act of making clear or removing obscurity from the meaning of a word or symbol or expression etc.
+38818,explication,a detailed explanation of the meaning of something
+38819,explication_de_texte,a method of literary criticism that analyzes details of a text in order to reveal its structure and meaning
+38820,explicit_definition,a definition that gives an exact equivalent of the term defined
+38821,explicitness,clarity as a consequence of being explicit
+38822,exploitation development,the act of making some area of land or water more profitable or productive or useful; "the development of Alaskan resources"; "the exploitation of copper deposits"
+38823,exploitation victimization victimisation using,an act that exploits or victimizes someone (treats them unfairly); "capitalistic exploitation of the working class"; "paying Blacks less and charging them more is a form of victimization"
+38824,exploiter user,a person who uses something or someone selfishly or unethically
+38825,exploration,a systematic consideration; "he called for a careful exploration of the consequences"
+38826,exploration,a careful systematic search
+38827,exploration geographic_expedition,to travel for the purpose of discovery
+38828,explorer adventurer,someone who travels into little known regions (especially for some scientific purpose)
+38829,explorer's_gentian Gentiana_calycosa,tufted sometimes sprawling perennial with blue flowers spotted with green; western North America
+38830,explosion,a sudden great increase; "the population explosion"; "the information explosion"
+38831,explosion,the noise caused by an explosion; "the explosion was heard a mile away"
+38832,explosion,a sudden outburst; "an explosion of laughter"; "an explosion of rage"
+38833,explosion,a golf shot from a bunker that typically moves sand as well as the golf ball
+38834,explosion burst,the act of exploding or bursting; "the explosion of the firecrackers awoke the children"; "the burst of an atom bomb creates enormous radiation aloft"
+38835,explosion detonation blowup,a violent release of energy caused by a chemical or nuclear reaction
+38836,explosive,a chemical substance that undergoes a rapid chemical change (with the production of gas) on being heated or struck
+38837,explosive_compound,a compound that is explosive
+38838,explosive_detection_system EDS,a rapid automatic system to detect plastic explosives in passengers' luggage using X-ray technology and computers; designed for use in airports
+38839,explosive_device,device that bursts with sudden violence from internal energy
+38840,explosive_mixture,a mixture that is explosive
+38841,explosive_trace_detection ETD,a system for screening luggage in airports; an agent passes a swab around or inside luggage and then runs the swab through a machine that can detect trace amounts of explosives
+38842,explosive_unit,any unit for measuring the force of explosions
+38843,exponent,someone who expounds and interprets or explains
+38844,exponent power index,a mathematical notation indicating the number of times a quantity is multiplied by itself
+38845,exponential exponential_function,a function in which an independent variable appears as an exponent
+38846,exponential_curve,a graph of an exponential function
+38847,exponential_decay exponential_return,a decrease that follows an exponential function
+38848,exponential_equation,an equation involving exponential functions of a variable
+38849,exponential_expression,a mathematical expression consisting of a constant (especially e) raised to some power
+38850,exponential_series,a series derived from the expansion of an exponential expression
+38851,exponentiation involution,the process of raising a quantity to some assigned power
+38852,export exportation,commodities (goods or services) sold to a foreign country
+38853,export_credit,a credit opened by an importer with a bank in an exporter's country to finance an export operation
+38854,export_duty,a duty imposed on exports
+38855,exporter,a businessperson who transports goods abroad (for sale)
+38856,exporting exportation,the commercial activity of selling and shipping goods to a foreign country
+38857,expose unmasking,the exposure of an impostor or a fraud; "he published an expose of the graft and corruption in city government"
+38858,exposition,an account that sets forth the meaning or intent of a writing or discourse; "we would have understood the play better if there had been some initial exposition of the background"
+38859,exposition,(music) the section of a movement (especially in sonata form) where the major musical themes first occur
+38860,exposition expounding,a systematic interpretation or explanation (usually written) of a specific topic
+38861,expositor expounder,a person who explains
+38862,expostulation,an exclamation of protest or remonstrance or reproof
+38863,expostulation remonstrance remonstration objection,the act of expressing earnest opposition or protest
+38864,exposure,the intensity of light falling on a photographic film or plate; "he used the wrong exposure"
+38865,exposure,the disclosure of something secret; "they feared exposure of their campaign plans"
+38866,exposure,aspect resulting from the direction a building or window faces; "the studio had a northern exposure"
+38867,exposure,vulnerability to the elements; to the action of heat or cold or wind or rain; "exposure to the weather"; "they died from exposure"
+38868,exposure,the act of exposing film to light
+38869,exposure,presentation to view in an open or public manner; "the exposure of his anger was shocking"
+38870,exposure,abandoning without shelter or protection (as by leaving an infant out in the open)
+38871,exposure,the act of subjecting someone to an influencing experience; "she denounced the exposure of children to pornography"
+38872,exposure_therapy,a form of behavior therapy in which a survivor confronts feelings or phobias or anxieties about a traumatic event and relives it in the therapy situation
+38873,express express_mail,mail that is distributed by a rapid and efficient system
+38874,express expressage,rapid transport of goods
+38875,express limited,public transport consisting of a fast train or bus that makes only a few scheduled stops; "he caught the express to New York"
+38876,expression,(genetics) the process of expressing a gene
+38877,expression,the act of forcing something out by squeezing or pressing; "the expression of milk from her breast"
+38878,expression look aspect facial_expression face,the feelings expressed on a person's face; "a sad expression"; "a look of triumph"; "an angry face"
+38879,expression manifestation reflection reflexion,expression without words; "tears are an expression of grief"; "the pulse is a reflection of the heart's condition"
+38880,expression verbal_expression verbalism,the communication (in speech or writing) of your beliefs or opinions; "expressions of good will"; "he helped me find verbal expression for my ideas"; "the idea was immediate but the verbalism took hours"
+38881,expressionism,an art movement early in the 20th century; the artist's subjective expression of inner experiences was emphasized; an inner feeling was expressed through a distorted rendition of reality
+38882,expressionist,an artist who is an adherent of expressionism
+38883,expressive_style style,a way of expressing something (in language or art or music etc.) that is characteristic of a particular person or group of people or period; "all the reporters were expected to adopt the style of the newspaper"
+38884,expressiveness,the quality of being expressive
+38885,expressway freeway motorway pike state_highway superhighway throughway thruway,a broad highway designed for high-speed traffic
+38886,expropriation,taking out of an owner's hands (especially taking property by public authority)
+38887,expulsion projection ejection forcing_out,the act of expelling or projecting or ejecting
+38888,expunction expunging erasure,deletion by an act of expunging or erasing
+38889,expurgation castration,the deletion of objectionable parts from a literary work
+38890,expurgator bowdlerizer bowdleriser,a person who edits a text by removing obscene or offensive words or passages; "Thomas Bowdler was a famous expurgator"
+38891,exquisiteness,extreme beauty of a delicate sort
+38892,extemporization extemporisation improvisation,a performance given extempore without planning or preparation
+38893,extended_care_facility,a medical institution that provides prolonged care (as in cases of prolonged illness or rehabilitation from acute illness)
+38894,extended_family,a family consisting of the nuclear family and their blood relatives
+38895,extended_order,a military formation for skirmishing; as widely separated as the tactical situation permits
+38896,extended_time_scale slow_time_scale,(simulation) the time scale used in data processing when the time-scale factor is greater than one
+38897,extension,a mutually agreed delay in the date set for the completion of a job or payment of a debt; "they applied for an extension of the loan"
+38898,extension,the ability to raise the working leg high in the air; "the dancer was praised for her uncanny extension"; "good extension comes from a combination of training and native ability"
+38899,extension,act of stretching or straightening out a flexed limb
+38900,extension,act of expanding in scope; making more widely available; "extension of the program to all in need"
+38901,extension extension_service university_extension,an educational opportunity provided by colleges and universities to people who are not enrolled as regular students
+38902,extension filename_extension file_name_extension,a string of characters beginning with a period and followed by one or more letters; the optional second part of a PC computer filename; "most applications provide extensions for the files they create"; "most BASIC files use the filename extension .BAS"
+38903,extension lengthiness prolongation,amount or degree or range to which something extends; "the wire has an extension of 50 feet"
+38904,extension telephone_extension extension_phone,an additional telephone set that is connected to the same telephone line
+38905,extension_cord,an electric cord used to extend the length of a power cord
+38906,extension_course,a course offered as part of an extension service
+38907,extension_ladder,a ladder whose length can be extended
+38908,extensor_muscle extensor,a skeletal muscle whose contraction extends or stretches a body part
+38909,extent,the point or degree to which something extends; "the extent of the damage"; "the full extent of the law"; "to a certain extent she was right"
+38910,extent,the distance or area or volume over which something extends; "the vast extent of the desert"; "an orchard of considerable extent"
+38911,extenuation mitigation,a partial excuse to mitigate censure; an attempt to represent an offense as less serious than it appears by showing mitigating circumstances
+38912,extenuation mitigation palliation,to act in such a way as to cause an offense to seem less serious
+38913,exterior_angle external_angle,the supplement of an interior angle of a polygon
+38914,exterior_door outside_door,a doorway that allows entrance to or exit from a building
+38915,extermination liquidation,the act of exterminating
+38916,exterminator terminator eradicator,someone who exterminates (especially someone whose occupation is the extermination of troublesome rodents and insects)
+38917,extern medical_extern,a nonresident doctor or medical student; connected with a hospital but not living there
+38918,external,outward features; "he enjoyed the solemn externals of religion"
+38919,external-combustion_engine,a heat engine in which ignition occurs outside the chamber (cylinder or turbine) in which heat is converted to mechanical energy
+38920,external_body_part,any body part visible externally
+38921,external_carotid_artery external_carotid,the branch of the carotid artery that supplies blood to the face and tongue and external parts of the head
+38922,external_drive,a drive with its own power supply and fan mounted outside the computer system enclosure and connected to the computer by a cable
+38923,external_ear outer_ear,the part of the ear visible externally
+38924,external_gill,occurs in some mollusks and in tadpoles and other immature amphibians
+38925,external_iliac_artery,the outer branch of the common iliac artery on either side of the body; becomes the femoral artery
+38926,external_iliac_vein,a continuation of the femoral vein; unites with the internal iliac vein to form the common iliac vein
+38927,external_jugular_vein,formed by the junction of the posterior auricular and the retromandibular veins; empties into the subclavian vein
+38928,external_nasal_vein vena_nasalis_externa,one of the veins that drain the external nose and empty into the angular or facial vein
+38929,external_oblique_muscle musculus_obliquus_externus_abdominis abdominal_external_oblique_muscle oblique,a diagonally arranged abdominal muscle on either side of the torso
+38930,external_organ,an organ that is situated on or near the surface of the body
+38931,externalization externalisation,attributing to outside causes
+38932,externalization externalisation exteriorization exteriorisation,embodying in an outward form
+38933,exteroception,sensitivity to stimuli originating outside of the body
+38934,exteroceptor,any receptor that responds to stimuli outside the body
+38935,extinction,no longer active; extinguished; "the extinction of the volcano"
+38936,extinction,the reduction of the intensity of radiation as a consequence of absorption and radiation
+38937,extinction defunctness,no longer in existence; "the extinction of a species"
+38938,extinction experimental_extinction,a conditioning process in which the reinforcer is removed and a conditioned response becomes independent of the conditioned stimulus
+38939,extinction extermination,complete annihilation; "they think a meteor cause the extinction of the dinosaurs"
+38940,extinction extinguishing quenching,the act of extinguishing; causing to stop burning; "the extinction of the lights"
+38941,extirpation excision deracination,the act of pulling up or out; uprooting; cutting off from existence
+38942,extortion,an exorbitant charge
+38943,extortion,unjust exaction (as by the misuse of authority); "the extortion by dishonest officials of fees for performing their sworn duty"
+38944,extortion,the felonious act of extorting money (as by threats of violence)
+38945,extra,an additional edition of a newspaper (usually to report a crisis)
+38946,extra duplicate,something additional of the same kind; "he always carried extras in case of an emergency"
+38947,extra_dividend,a dividend paid in addition to the regular dividend
+38948,extra_innings,overtime play until one team is ahead at the end of an inning; e.g. baseball
+38949,extra_large,a garment size for a very large person
+38950,extracapsular_surgery,cataract surgery in which only the front of the lens is removed; the back of the lens capsule remains intact and provides support for the lens implant
+38951,extracellular_fluid ECF,liquid containing proteins and electrolytes including the liquid in blood plasma and interstitial fluid; "the body normally has about 15 quarts of extracellular fluid"
+38952,extraction,the process of obtaining something from a mixture or compound by chemical or physical or mechanical means
+38953,extraction,the action of taking out something (especially using effort or force); "the dentist gave her a local anesthetic prior to the extraction"
+38954,extractor,an instrument for extracting tight-fitting components
+38955,extracurricular_activity,educational activities not falling within the scope of the regular curriculum
+38956,extradition,the surrender of an accused or convicted person by one state or country to another (usually under the provisions of a statute or treaty)
+38957,extrados,the exterior curve of an arch
+38958,extramarital_sex free_love,sexual intercourse between individuals who are not married to one another
+38959,extraneousness,unrelatedness by virtue of falling outside the matter at hand
+38960,extraordinariness,the quality of being extraordinary and not commonly encountered
+38961,extrapolation,(mathematics) calculation of the value of a function outside the range of known values
+38962,extrapolation,an inference about the future (or about some hypothetical situation) based on known facts and observations
+38963,extrasystole,a premature systole resulting in a momentary cardiac arrhythmia
+38964,extraterrestrial_being extraterrestrial alien,a form of life assumed to exist outside the Earth or its atmosphere
+38965,extraterrestrial_object estraterrestrial_body,a natural object existing outside the earth and outside the earth's atmosphere
+38966,extravagance extravagancy,the quality of exceeding the appropriate limits of decorum or probability or truth; "we were surprised by the extravagance of his description"
+38967,extravagance prodigality lavishness highlife high_life,excessive spending
+38968,extravagance prodigality profligacy,the trait of spending extravagantly
+38969,extravaganza,any lavishly staged or spectacular entertainment
+38970,extravasation,an extravasated liquid (blood or lymph or urine); the product of extravasation
+38971,extravasation,the process of exuding or passing out of a vessel into surrounding tissues; said of blood or lymph or urine
+38972,extraversion extroversion,(psychology) an extroverted disposition; concern with what is outside the self
+38973,extreme,the furthest or highest degree of something; "he carried it to extremes"
+38974,extreme_point extreme extremum,the point located farthest from the middle of something
+38975,extremely_high_frequency EHF,30 to 300 gigahertz
+38976,extremely_low_frequency ELF,below 3 kilohertz
+38977,extremeness,the quality of being extreme
+38978,extremism,any political theory favoring immoderate uncompromising policies
+38979,extremist,a person who holds extreme views
+38980,extremity,an extreme condition or state (especially of adversity or disease)
+38981,extremity,the greatest or utmost degree; "the extremity of despair"
+38982,extremity,the outermost or farthest region or point
+38983,extremity,that part of a limb that is farthest from the torso
+38984,extremity appendage member,an external body part that projects from the body; "it is important to keep the extremities warm"
+38985,extremum peak,the most extreme possible amount or value; "voltage peak"
+38986,extrinsic_fraud collateral_fraud,fraud that prevents a party from knowing their rights or from having a fair opportunity of presenting them at trial
+38987,extropy,the prediction that human intelligence and technology will enable life to expand in an orderly way throughout the entire universe
+38988,extrovert extravert,(psychology) a person concerned more with practical realities than with inner thoughts and feelings
+38989,extrusion expulsion,squeezing out by applying pressure; "an unexpected extrusion of toothpaste from the bottom of the tube"; "the expulsion of pus from the pimple"
+38990,exuberance,joyful enthusiasm
+38991,exuberance enthusiasm ebullience,overflowing with eager enjoyment or approval
+38992,exudate exudation,a substance that oozes out from plant pores
+38993,exudation transudation,the process of exuding; the slow escape of liquids from blood vessels through pores or breaks in the cell membranes
+38994,exultation jubilance jubilancy jubilation,a feeling of extreme joy
+38995,exultation rejoicing jubilation,the utterance of sounds expressing great joy
+38996,exurbia,a residential area outside of a city and beyond suburbia
+38997,exuviae,cast-off skins or coverings of various organisms during ecdysis
+38998,eyas,an unfledged or nestling hawk
+38999,eye,attention to what is seen; "he tried to catch her eye"
+39000,eye,good discernment (either visually or as if visually); "she has an eye for fresh talent"; "he has an artist's eye"
+39001,eye,a small hole or loop (as in a needle); "the thread wouldn't go through the eye"
+39002,eye oculus optic,the organ of sight
+39003,eye-beaming,a radiant glance of the eye; "he pretended profundity by eye-beamings at people"
+39004,eye-catcher,a striking person or thing that attracts attention
+39005,eye-lotion eyewash collyrium,lotion consisting of a solution used as a cleanser for the eyes
+39006,eye_bank,a place for storing and preserving corneas that are obtained from human corpses immediately after death; used for corneal transplantation to patients with corneal defects
+39007,eye_candy,visual images that are pleasing to see but are intellectually undemanding; "he wanted to put some eye candy on their web site"
+39008,eye_chart,a chart that is read from a fixed distance; used as a test of vision
+39009,eye_clinic,a clinic where specialist care for a patient's eyes
+39010,eye_condition,the condition of the optical properties of the eye
+39011,eye_contact,a meeting of the eyes between two people that expresses meaningful nonverbal communication; "it was a mere glance, but the eye contact was enough to tell her that he was desperate to leave"
+39012,eye_contact,contact that occurs when two people look directly at each other; "a teacher should make eye contact with the students"
+39013,eye_dialect,the use of misspellings to identify a colloquial or uneducated speaker
+39014,eye_disease,any disease of the eye
+39015,eye_movement,the movement of the eyes
+39016,eye_opener,an alcoholic drink intended to wake one up early in the morning
+39017,eye_opener,something surprising and revealing
+39018,eye_operation eye_surgery,any surgical procedure involving the eyes
+39019,eye_rhyme,an imperfect rhyme (e.g., `love' and `move')
+39020,eye_socket orbit cranial_orbit orbital_cavity,the bony cavity in the skull containing the eyeball
+39021,eyeball orb,the ball-shaped capsule containing the vertebrate eye
+39022,eyebrow brow supercilium,the arch of hair above each eye
+39023,eyebrow_pencil,makeup provided by a cosmetic pencil that is used to darken the eyebrows
+39024,eyecup eyebath eye_cup,a small vessel with a rim curved to fit the orbit of the eye; use to apply medicated or cleansing solution to the eyeball; "an eyecup is called an eyebath in Britain"
+39025,eyedness,the property of favoring one eye over the other (as in taking aim)
+39026,eyedrop eye-drop,a drop from an eye dropper
+39027,eyedrop eye-drop,a method of irrigating the eye used by ophthalmologists
+39028,eyeful,a strikingly beautiful woman; "she was a statuesque redheaded eyeful"
+39029,eyeful,a full view; a good look; "they wanted to see violence and they got an eyeful"
+39030,eyeglass_wearer,a person who wears spectacles in order to see better
+39031,eyelash lash cilium,any of the short curved hairs that grow from the edges of the eyelids
+39032,eyelessness,blindness due to loss of the eyes
+39033,eyelet eyehole,a small hole (usually round and finished around the edges) in cloth or leather for the passage of a cord or hook or bar
+39034,eyelid lid palpebra,either of two folds of skin that can be moved to cover or open the eye; "his lids would stay open no longer"
+39035,eyeliner,makeup applied to emphasize the shape of the eyes
+39036,eyepatch patch,a protective cloth covering for an injured eye
+39037,eyepiece ocular,combination of lenses at the viewing end of optical instruments
+39038,eyes,opinion or judgment; "in the eyes of the law"; "I was wrong in her eyes"
+39039,eyeshadow,makeup consisting of a cosmetic substance used to darken the eyes
+39040,eyesight seeing sightedness,normal use of the faculty of vision
+39041,eyesore,something very ugly and offensive
+39042,eyespot ocellus,an eyelike marking (as on the wings of some butterflies); usually a spot of color inside a ring of another color
+39043,eyestrain asthenopia,a tiredness of the eyes caused by prolonged close work by a person with an uncorrected vision problem
+39044,eyewitness,a spectator who can describe what happened
+39045,eyrir,100 aurar equal 1 krona in Iceland
+39046,fa,the syllable naming the fourth (subdominant) note of the diatonic scale in solmization
+39047,fa_la fal_la,meaningless syllables in the refrain of a partsong
+39048,fable parable allegory apologue,a short moral story (often with animal characters)
+39049,fabric cloth material textile,artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers; "the fabric in the curtains was light and semitransparent"; "woven cloth originated in Mesopotamia around 5000 BC"; "she measured off enough material for a dress"
+39050,fabrication assembly,the act of constructing something (as a piece of machinery)
+39051,fabrication fiction fable,a deliberately false or improbable account
+39052,fabrication fictionalization fictionalisation,writing in a fictional form
+39053,fabrication manufacture manufacturing,the act of making something (a product) from raw materials; "the synthesis and fabrication of single crystals"; "an improvement in the manufacture of explosives"; "manufacturing is vital to Great Britain"
+39054,fabulist,a person who tells or invents fables
+39055,facade frontage frontal,the face or front of a building
+39056,facade window_dressing,a showy misrepresentation intended to conceal something unpleasant
+39057,face,a part of a person that is used to refer to a person; "he looked out at a roomful of faces"; "when he returned to work he met many new faces"
+39058,face,the part of an animal corresponding to the human face
+39059,face,status in the eyes of others; "he lost face"
+39060,face,the general outward appearance of something; "the face of the city is changing"
+39061,face,the striking or working surface of an implement
+39062,face,the side upon which the use of a thing depends (usually the most prominent surface of an object); "he dealt the cards face down"
+39063,face,a vertical surface of a building or cliff
+39064,face human_face,the front of the human head from the forehead to the chin and ear to ear; "he washed his face"; "I wish I had seen the look on his face when he got the news"
+39065,face-amount_certificate_company,a regulated investment company that pays a stated amount to certificate holders on a stated maturity date
+39066,face-off,(ice hockey) the method of starting play; a referee drops the puck between two opposing players
+39067,face_angle,the angle formed by two edges of a polyhedral angle
+39068,face_card picture_card court_card,one of the twelve cards in a deck bearing a picture of a face
+39069,face_guard,face mask consisting of a strong wire mesh on the front of football helmets
+39070,face_lift facelift face_lifting,a renovation that improves the outward appearance (as of a building) but usually does not involve major changes; "give your home a facelift"; "more than a facelift, the new model marks a fundamental change of direction"
+39071,face_lift facelift lift face_lifting cosmetic_surgery rhytidectomy rhytidoplasty nip_and_tuck,plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised; "some actresses have more than one face lift"
+39072,face_mask,mask that provides a protective covering for the face in such sports as baseball or football or hockey
+39073,face_powder,cosmetic powder for the face
+39074,face_recognition,the visual perception of familiar faces
+39075,face_recognition facial_recognition automatic_face_recognition,biometric identification by scanning a person's face and matching it against a library of known faces; "they used face recognition to spot known terrorists"
+39076,face_saver face_saving,an act that avoids a loss of face (of dignity or prestige)
+39077,face_time,work time spent at the location of or in the presence of other people; "instead of working on the problem at home he devoted face time to it at the office"
+39078,face_value,the apparent worth as opposed to the real worth
+39079,face_veil,a piece of more-or-less transparent material that covers the face
+39080,faceplate,a protective covering for the front of a machine or device (as a door lock or computer component)
+39081,facer,(a dated Briticism) a serious difficulty with which one is suddenly faced
+39082,facet,a smooth surface (as of a bone or cut gemstone)
+39083,facet_plane,the plane of a facet of an object (as of a cube)
+39084,facetiousness,playful humor
+39085,facial,care for the face that usually involves cleansing and massage and the application of cosmetic creams
+39086,facial facial_nerve nervus_facialis seventh_cranial_nerve,cranial nerve that supplies facial muscles
+39087,facial_artery arteria_facialis external_maxillary_artery,an artery that originates in the external carotid and gives off branches that supply the neck and face
+39088,facial_expression facial_gesture,a gesture executed with the facial muscles
+39089,facial_hair,hair on the face (especially on the face of a man)
+39090,facial_index,the ratio (in percent) of the maximum width to the maximum height of the face
+39091,facial_muscle,any of the skeletal muscles of the face
+39092,facial_profiling,identification of criminals and terrorist by means of videotapes of their faces; "facial profiling is a new form of airport security"
+39093,facial_tissue,tissue paper suitable for use on the face
+39094,facial_vein vena_facialis,any of several veins draining the face
+39095,facilitation,the condition of being made easy (or easier); "social facilitation is an adaptive condition"
+39096,facilitation,(neurophysiology) phenomenon that occurs when two or more neural impulses that alone are not enough to trigger a response in a neuron combine to trigger an action potential
+39097,facilitation,act of assisting or making easier the progress or improvement of something
+39098,facilitator,someone who makes progress easier
+39099,facility,something designed and created to serve a particular function and to afford a particular convenience or service; "catering facilities"; "toilet facilities"; "educational facilities"
+39100,facility,a service that an organization or a piece of equipment offers you; "a cell phone with internet facility"
+39101,facility installation,a building or place that provides a particular service or is used for a particular industry; "the assembly plant is an enormous facility"
+39102,facility readiness,a natural effortlessness; "they conversed with great facility"; "a happy readiness of conversation"--Jane Austen
+39103,facing,a lining applied to the edge of a garment for ornamentation or strengthening
+39104,facing cladding,a protective covering that protects the outside of a building
+39105,facing veneer,an ornamental coating to a building
+39106,facsimile autotype,an exact copy or reproduction
+39107,facsimile facsimile_machine fax,duplicator that transmits the copy by wire or radio
+39108,fact,an event known to have happened or something known to have existed; "your fears have no basis in fact"; "how much of the story is fact and how much fiction is hard to tell"
+39109,fact,a statement or assertion of verified information about something that is the case or has happened; "he supported his argument with an impressive array of facts"
+39110,fact,a concept whose truth can be proved; "scientific hypotheses are not facts"
+39111,fact,a piece of information about circumstances that exist or events that have occurred; "first you must collect all the facts of the case"
+39112,faction sect,a dissenting clique
+39113,factoid,something resembling a fact; unverified (often invented) information that is given credibility because it appeared in print
+39114,factoid,a brief (usually one sentence and usually trivial) news item
+39115,factor,any of the numbers (or symbols) that form a product when multiplied together
+39116,factor,anything that contributes causally to a result; "a number of factors determined the outcome"
+39117,factor,an independent variable in statistics
+39118,factor_analysis,any of several methods for reducing correlational data to a smaller number of dimensions or factors; beginning with a correlation matrix a small number of components or factors are extracted that are regarded as the basic variables that account for the interrelations observed in the data
+39119,factor_of_proportionality constant_of_proportionality,the constant value of the ratio of two proportional quantities x and y; usually written y = kx, where k is the factor of proportionality
+39120,factorial,the product of all the integers up to and including a given integer; "1, 2, 6, 24, and 120 are factorials"
+39121,factorization factorisation factoring,(mathematics) the resolution of an expression into factors such that when multiplied together they give the original expression
+39122,factory mill manufacturing_plant manufactory,a plant consisting of one or more buildings with facilities for manufacturing
+39123,factory_price,price charged for goods picked up at the factory
+39124,factory_ship,a whaling ship equipped to process whale products at sea
+39125,factory_whistle,a whistle at a factory that is sounded to announce times for starting or stopping work
+39126,factotum,a servant employed to do a variety of jobs
+39127,factuality factualness,the quality of being actual or based on fact; "the realm of factuality must be distinguished from the realm of imagination"
+39128,facula,a bright spot on a planet
+39129,facula solar_facula,a large bright spot on the sun's photosphere occurring most frequently in the vicinity of sunspots
+39130,faculty mental_faculty module,one of the inherent cognitive or perceptual powers of the mind
+39131,fad craze furor furore cult rage,an interest followed with exaggerated zeal; "he always follows the latest fads"; "it was all the rage that season"
+39132,fad_diet,a reducing diet that enjoys temporary popularity
+39133,faddist,a person who subscribes to a variety of fads
+39134,fade disappearance,gradually ceasing to be visible
+39135,fadeout,a gradual temporary loss of a transmitted signal due to electrical disturbances
+39136,fading_away,gradually diminishing in brightness or loudness or strength
+39137,fado,a sad Portuguese folksong
+39138,fag_end,the frayed end of a length of cloth or rope
+39139,fag_end tail tail_end,the time of the last part of something; "the fag end of this crisis-ridden century"; "the tail of the storm"
+39140,fagot faggot,a bundle of sticks and branches bound together
+39141,fagot faggot fag fairy nance pansy queen queer poof poove pouf,offensive term for a homosexual man
+39142,fagot_stitch faggot_stitch,the stitch that ties a group of parallel threads together in fagoting
+39143,fagoting faggoting,embroidery in which groups of parallel threads are tied together with fagot stitches
+39144,faience,glazed earthenware decorated with opaque colors
+39145,fail-safe,a mechanism capable of returning to a safe state in case there is a failure or malfunction
+39146,failing flunk,failure to reach a minimum required performance; "his failing the course led to his disqualification"; "he got two flunks on his report"
+39147,failing weakness,a flaw or weak point; "he was quick to point out his wife's failings"
+39148,faille,a ribbed woven fabric of silk or rayon or cotton
+39149,failure,lack of success; "he felt that his entire life had been a failure"; "that year there was a crop failure"
+39150,failure,loss of ability to function normally; "kidney failure"
+39151,failure,an event that does not accomplish its intended purpose; "the surprise party was a complete failure"
+39152,failure,an act that fails; "his failure to pass the test"
+39153,failure,an unexpected omission; "he resented my failure to return his call"; "the mechanic's failure to check the brakes"
+39154,failure loser nonstarter unsuccessful_person,a person with a record of failing; someone who loses consistently
+39155,faineance idleness,the trait of being idle out of a reluctance to work
+39156,faint swoon syncope deliquium,a spontaneous loss of consciousness caused by insufficient blood to the brain
+39157,faintheartedness faintness,the trait of lacking boldness and courage; "faintness of heart and infirmity of purpose"
+39158,faintness,a feeling of faintness and of being ready to swoon
+39159,faintness,the property of being without strength; "the faintness or potency of the feeling"
+39160,faintness,barely audible
+39161,fair,gathering of producers to promote business; "world fair"; "trade fair"; "book fair"
+39162,fair,a competitive exhibition of farm products; "she won a blue ribbon for her baking at the county fair"
+39163,fair-trade_act,formerly a state law that protected manufacturers from price-cutting by allowing them to set minimum retail prices for their merchandise; eliminated by the United States Congress in 1975
+39164,fair-trade_agreement,an agreement (illegal in the United States) between the manufacturer of a trademarked item of merchandise and its retail distributors to sell the item at a price at or above the price set by the manufacturer
+39165,fair_ball,(baseball) a ball struck with the bat so that it stays between the lines (the foul lines) that define the width of the playing field
+39166,fair_catch,(American football) a catch of a punt on the fly by a defensive player who has signalled that he will not run and so should not be tackled
+39167,fair_chance sporting_chance,a reasonable probability of success
+39168,fair_copy,a clean copy of a corrected draft
+39169,fair_deal square_deal,fair treatment
+39170,fair_hearing,a hearing that is granted in extraordinary situations where the normal judicial process would be inadequate to secure due process because the person would be harmed or denied their rights before a judicial remedy became available (as in deportation or loss of welfare benefits)
+39171,fair_trade,trade that satisfies certain criteria on the supply chain of the goods involved, usually including fair payment for producers; often with other social and environmental considerations
+39172,fair_trade,trade that is conducted legally
+39173,fair_use,the conditions under which you can use material that is copyrighted by someone else without paying royalties
+39174,fair_weather sunshine temperateness,moderate weather; suitable for outdoor activities
+39175,fairground,an open area for holding fairs or exhibitions or circuses
+39176,fairlead,a pulley-block used to guide a rope forming part of a ship's rigging to avoid chafing
+39177,fairness equity,conformity with rules or standards; "the judge recognized the fairness of my claim"
+39178,fairness fair-mindedness candor candour,ability to make judgments free from discrimination or dishonesty
+39179,fairness_commission,a commission delegated to ensure opportunities for the expression of opposing views
+39180,fairway,the usual course taken by vessels through a harbor or coastal waters
+39181,fairway,a tract of ground free of obstacles to movement
+39182,fairway,the area between the tee and putting green where the grass is cut short
+39183,fairy faery faerie fay sprite,a small being, human in form, playful and having magical powers
+39184,fairy-ring_mushroom Marasmius_oreades,mushroom that grows in a fairy ring
+39185,fairy_bluebird bluebird,fruit-eating mostly brilliant blue songbird of the East Indies
+39186,fairy_cup Mitella_diphylla,miterwort of northeastern North America usually with two opposite leaves on erect flowering stems that terminate in erect racemes of white flowers
+39187,fairy_godmother,a generous benefactor
+39188,fairy_godmother,a female character in some fairy stories who has magical powers and can bring unexpected good fortune to the hero or heroine
+39189,fairy_light,a small colored light used for decoration (especially at Christmas)
+39190,fairy_ring fairy_circle,a ring of fungi marking the periphery of the perennial underground growth of the mycelium
+39191,fairy_shrimp,small freshwater branchiopod having a transparent body with many appendages; swims on its back
+39192,fairy_swallow,fancy domestic pigeon having blue-and-white plumage and heavily muffed feet
+39193,fairyland faerie faery,the enchanted realm of fairies
+39194,fairytale fairy_tale fairy_story,a story about fairies; told to amuse children
+39195,fairytale fairy_tale fairy_story cock-and-bull_story song_and_dance,an interesting but highly implausible story; often told as an excuse
+39196,fait_accompli accomplished_fact,an irreversible accomplishment
+39197,faith,loyalty or allegiance to a cause or a person; "keep the faith"; "they broke faith with their investors"
+39198,faith trust,complete confidence in a person or plan etc; "he cherished the faith of a good woman"; "the doctor-patient relationship is based on trust"
+39199,faith_healing faith_cure,care provided through prayer and faith in God
+39200,faithful,any loyal and steadfast following
+39201,faithlessness falseness fickleness inconstancy,unfaithfulness by virtue of being unreliable or treacherous
+39202,fake sham postiche,something that is a counterfeit; not what it seems to be
+39203,fake_book,a fake in the form of an imitation book; used to fill bookcases of people who wish to appear scholarly
+39204,fakery,the act of faking (or the product of faking)
+39205,fakir fakeer faqir faquir,a Muslim or Hindu mendicant monk who is regarded as a holy man
+39206,falafel felafel,small croquette of mashed chick peas or fava beans seasoned with sesame seeds
+39207,falangist phalangist,a Spanish member of General Franco's political party
+39208,falchion,a short broad slightly convex medieval sword with a sharp point
+39209,falciform_ligament,a ligament that attaches part of the liver to the diaphragm and the abdominal wall
+39210,falcon,diurnal birds of prey having long pointed powerful wings adapted for swift flight
+39211,falcon-gentle falcon-gentil,female falcon especially a female peregrine falcon
+39212,falconer hawker,a person who breeds and trains hawks and who follows the sport of falconry
+39213,falconry,the art of training falcons to hunt and return
+39214,fall,a movement downward; "the rise and fall of the tides"
+39215,fall,a lapse into sin; a loss of innocence or of chastity; "a fall from virtue"
+39216,fall autumn,the season when the leaves fall from the trees; "in the fall of 1973"
+39217,fall downfall,a sudden decline in strength or number or importance; "the fall of the House of Hapsburg"
+39218,fall pin,when a wrestler's shoulders are forced to the mat
+39219,fall-blooming_hydrangea Hydrangea_paniculata,deciduous shrub or small tree with pyramidal flower clusters
+39220,fall_armyworm Spodoptera_frugiperda,larva of a migratory American noctuid moth; destroys grasses and small grains
+39221,fall_cankerworm,green or brown white-striped looper; larva of Alsophila pometaria
+39222,fall_dandelion arnica_bud Leontodon_autumnalis,fall-blooming European herb with a yellow flower; naturalized in the United States
+39223,fall_webworm Hyphantria_cunea,a variety of webworm
+39224,fallaciousness,result of a fallacy or error in reasoning
+39225,fallacy false_belief,a misconception resulting from incorrect reasoning
+39226,fallboard fall-board,the hinged protective covering that protects the keyboard of a piano when it is not being played
+39227,faller,a person who falls; "one of them was safe but they were unable to save the faller"; "a faller among thieves"
+39228,fallibility,the likelihood of making errors
+39229,fallout radioactive_dust,the radioactive particles that settle to the ground after a nuclear explosion
+39230,fallout_shelter,a shelter to protect occupants from the fallout from an atomic bomb
+39231,fallow,cultivated land that is not seeded for one or more growing seasons
+39232,fallow_deer Dama_dama,small Eurasian deer
+39233,falls,the petals or sepals of a flower that bend downward (especially the outer perianth of an iris)
+39234,false_alarm,a warning that is given about something that fails to occur
+39235,false_alumroot fringe_cups Tellima_grandiflora,plant growing in clumps with mostly basal leaves and cream-colored or pale pink fringed flowers in several long racemes; Alaska to coastal central California and east to Idaho
+39236,false_asphodel,a plant of the genus Tofieldia having linear chiefly basal leaves and small spicate flowers
+39237,false_azalea fool's_huckleberry Menziesia_ferruginea,straggling shrub of northwestern North America having foliage with a bluish tinge and umbels of small bell-shaped flowers
+39238,false_bottom,a horizontal structure that partitions a ship or box (especially one built close to the actual bottom)
+39239,false_bracken Culcita_dubia,resembles Pteridium aquilinum; of Queensland, Australia
+39240,false_buckthorn chittamwood chittimwood shittimwood black_haw Bumelia_lanuginosa,deciduous tree of southeastern United States and Mexico
+39241,false_bugbane Trautvetteria_carolinensis,tall perennial of the eastern United States having large basal leaves and white summer flowers
+39242,false_chamomile,any of various autumn-flowering perennials having white or pink to purple flowers that resemble asters; wild in moist soils from New Jersey to Florida and Texas
+39243,false_deathcap Amanita_mappa,agaric often confused with the death cup
+39244,false_dragonhead false_dragon_head obedient_plant Physostegia_virginiana,North American plant having a spike of two-lipped pink or white flowers
+39245,false_face,a mask worn as part of a masquerade costume
+39246,false_foxglove Aureolaria_pedicularia Gerardia_pedicularia,multi-stemmed North American annual having solitary axillary dark golden-yellow flowers resembling those of the foxglove; sometimes placed in genus Gerardia
+39247,false_foxglove Aureolaria_virginica Gerardia_virginica,sparsely branched North American perennial with terminal racemes of bright yellow flowers resembling those of the foxglove; sometimes placed in genus Gerardia
+39248,false_gavial Tomistoma_schlegeli,crocodile of southeast Asia similar to but smaller than the gavial
+39249,false_goatsbeard Astilbe_biternata,North American astilbe with panicles of creamy white flowers
+39250,false_gromwell,any of several North American perennial herbs with hairy foliage and small yellowish or greenish flowers
+39251,false_heather golden_heather Hudsonia_ericoides,North American decumbent evergreen heathlike plant with yellow flowers
+39252,false_imprisonment,(law) confinement without legal authority
+39253,false_indigo bastard_indigo Amorpha_californica,an erect to spreading hairy shrub of the Pacific coast of the United States having racemes of red to indigo flowers
+39254,false_indigo bastard_indigo Amorpha_fruticosa,dense shrub of moist riverbanks and flood plains of the eastern United States having attractive fragrant foliage and dense racemes of dark purple flowers
+39255,false_lily_of_the_valley Maianthemum_bifolium,small white-flowered plant of western Europe to Japan
+39256,false_lily_of_the_valley Maianthemum_canadense,small two-leaved herb of the northern United States and parts of Canada having racemes of small fragrant white flowers
+39257,false_lupine golden_pea yellow_pea Thermopsis_macrophylla,western United States bushy herb having yellow pea-like flowers
+39258,false_mallow,an American plant of the genus Malvastrum
+39259,false_miterwort false_mitrewort Tiarella_unifoliata,plant with tiny white flowers hanging in loose clusters on leafy stems; moist woods from Alaska to central California and east to Montana
+39260,false_morel,a fungus of the family Helvellaceae
+39261,false_nettle bog_hemp,any of several flowering weeds of the genus Boehmeria lacking stinging hairs
+39262,false_pregnancy pseudocyesis,physiological state in which a woman exhibits symptoms of pregnancy but is not pregnant
+39263,false_pretense false_pretence,(law) an offense involving intent to defraud and false representation and obtaining property as a result of that misrepresentation
+39264,false_return,an incorrect income tax return
+39265,false_rue_anemone false_rue Isopyrum_biternatum,slender erect perennial of eastern North America having tuberous roots and pink-tinged white flowers; resembles meadow rue
+39266,false_saber-toothed_tiger,North American cat of the Miocene and Pliocene; much earlier and less specialized than members of the genus Smiledon
+39267,false_sago fern_palm Cycas_circinalis,southeastern Indian cycad with palmlike foliage
+39268,false_scorpion pseudoscorpion,small nonvenomous arachnid resembling a tailless scorpion
+39269,false_tamarisk German_tamarisk Myricaria_germanica,Eurasian shrub resembling the tamarisk
+39270,false_teeth,a removable denture
+39271,false_truffle,any of various fungi of the family Rhizopogonaceae having subterranean fruiting bodies similar to the truffle
+39272,false_vampire false_vampire_bat,any New or Old World carnivorous bat erroneously thought to suck blood but in fact feeding on insects
+39273,false_verdict,a manifestly unjust verdict; not true to the evidence
+39274,false_vocal_cord false_vocal_fold superior_vocal_cord ventricular_fold vestibular_fold,either of the upper two vocal cords that are not involved in vocalization
+39275,false_wintergreen Pyrola_americana Pyrola_rotundifolia_americana,evergreen of eastern North America with leathery leaves and numerous white flowers
+39276,falsehood falsity untruth,a false statement
+39277,falsetto,a male singing voice with artificially high tones in an upper register
+39278,falsie,padding that is worn inside a brassiere
+39279,falsification falsehood,the act of rendering something false as by fraudulent changes (of documents or measures etc.) or counterfeiting
+39280,falsification falsifying disproof refutation refutal,the act of determining that something is false
+39281,falsification misrepresentation,a willful perversion of facts
+39282,falsifier,someone who falsifies
+39283,falsity falseness,the state of being false or untrue; "argument could not determine its truth or falsity"
+39284,falun_gong,a spiritual movement that began in China in the latter half of the 20th century and is based on Buddhist and Taoist teachings and practices
+39285,fame,favorable public reputation
+39286,fame celebrity renown,the state or quality of being widely honored and acclaimed
+39287,familial_hypercholesterolemia,congenital disorder characterized by high levels of cholesterol and early development of atherosclerosis
+39288,familiar,a person attached to the household of a high official (as a pope or bishop) who renders service in return for support
+39289,familiar familiar_spirit,a spirit (usually in animal form) that acts as an assistant to a witch or wizard
+39290,familiarity,usualness by virtue of being familiar or well known
+39291,familiarity impropriety indecorum liberty,an act of undue intimacy
+39292,familiarity intimacy closeness,close or warm friendship; "the absence of fences created a mysterious intimacy in which no one knew privacy"
+39293,familiarization familiarisation,the experience of becoming familiar with something
+39294,family,(biology) a taxonomic group containing one or more genera; "sharks belong to the fish family"
+39295,family family_line folk kinfolk kinsfolk sept phratry,people descended from a common ancestor; "his family has lived in Massachusetts since the Mayflower"
+39296,family family_unit,primary social group; parents and children; "he wanted to have a good job before starting a family"
+39297,family fellowship,an association of people who share common beliefs or activities; "the message was addressed not just to employees but to every member of the company family"; "the church welcomed new members into its fellowship"
+39298,family household house home menage,a social unit living together; "he moved his family to Virginia"; "It was a good Christian household"; "I waited until the whole house was asleep"; "the teacher asked how many people made up his home"; "the family refused to accept his will"
+39299,family_Bible,a large Bible with pages to record marriages and births
+39300,family_business,a corporation that is entirely owned by the members of a single family
+39301,family_court domestic_relations_court court_of_domestic_relations,a court in some states in the United States that has jurisdiction over family disputes (especially those involving children)
+39302,family_doctor,a general practitioner who treats all the family members
+39303,family_history,part of a patient's medical history in which questions are asked in an attempt to find out whether the patient has hereditary tendencies toward particular diseases
+39304,family_man,a man whose family is of major importance in his life
+39305,family_practice family_medicine,medical practice that provides health care regardless of age or sex while placing emphasis on the family unit
+39306,family_room,a recreation room in a private house
+39307,family_therapy,any of several therapeutic approaches in which a family is treated as a whole
+39308,famine,a severe shortage of food (as through crop failure) resulting in violent hunger and starvation and death
+39309,famotidine Pepcid,a histamine blocker (trade name Pepcid) used to treat peptic ulcers and gastritis and esophageal reflux
+39310,famulus,a close attendant (as to a scholar)
+39311,fan,a device for creating a current of air by movement of a surface or surfaces
+39312,fan buff devotee lover,an ardent follower and admirer
+39313,fan_belt,a belt driven by the crankshaft that drives a fan that pulls air through the radiator
+39314,fan_blade,blade of a rotating fan
+39315,fan_dance,a solo dance in which large fans are manipulated to suggest or reveal nakedness
+39316,fan_letter,a letter that is a piece of fan mail
+39317,fan_mail,mail sent to public figures from their admirers; "he hired someone to answer his fan mail"
+39318,fan_palm,palm having palmate or fan-shaped leaves
+39319,fan_tracery,the carved tracery on fan vaulting
+39320,fan_vaulting,an elaborate system of vaulting in which the ribs diverge like fans
+39321,fanaloka Fossa_fossa,civet of Madagascar
+39322,fanatic fiend,a person motivated by irrational enthusiasm (as for a cause); "A fanatic is one who can't change his mind and won't change the subject"--Winston Churchill
+39323,fanaticism fanatism zealotry,excessive intolerance of opposing views
+39324,fancier enthusiast,a person having a strong liking for something
+39325,fancy,imagination or fantasy; held by Coleridge to be more casual and superficial than true imagination; "never had the wildest flights of fancy imagined such magnificence"
+39326,fancy_dress masquerade masquerade_costume,a costume worn as a disguise at a masquerade party
+39327,fancy_goods,goods that are chiefly ornamental
+39328,fancy_man paramour,a woman's lover
+39329,fandango,a provocative Spanish courtship dance in triple time; performed by a man and a woman playing castanets
+39330,fandom,the fans of a sport or famous person
+39331,fang,an appendage of insects that is capable of injecting venom; usually evolved from the legs
+39332,fang,canine tooth of a carnivorous animal; used to seize and tear its prey
+39333,fang,hollow or grooved tooth of a venomous snake; used to inject its poison
+39334,fanion,a small flag used by surveyors or soldiers to mark a position
+39335,fanjet fan-jet fanjet_engine turbojet turbojet_engine turbofan turbofan_engine,a jet engine in which a fan driven by a turbine provides extra air to the burner and gives extra thrust
+39336,fanjet fan-jet turbofan turbojet,an airplane propelled by a fanjet engine
+39337,fanlight,a semicircular window over a door or window; usually has sash bars like the ribs of a fan
+39338,fanny_pack butt_pack,a waist pack worn with the pouch in back
+39339,fantail,an overhang consisting of the fan-shaped part of the deck extending aft of the sternpost of a ship
+39340,fantan fan_tan,a Chinese gambling game; a random number of counters are placed under a bowl and you gamble on how many will be left (0, 1, 2, or 3 modulo 4)
+39341,fantan sevens parliament,a card game in which you play your sevens and other cards in sequence in the same suit as the sevens; you win if you are the first to use all your cards
+39342,fantasia,a musical composition of a free form usually incorporating several familiar themes
+39343,fantasist,a creator of fantasies
+39344,fantast futurist,someone who predicts the future
+39345,fantasy phantasy,fiction with a large amount of imagination in it; "she made a lot of money writing romantic fantasies"
+39346,fantasy phantasy,imagination unrestricted by reality; "a schoolgirl fantasy"
+39347,fantasy_life phantasy_life,an imaginary life lived in a fantasy world
+39348,fantasy_world phantasy_world fairyland,something existing solely in the imagination (but often mistaken for reality)
+39349,fantods,an ill-defined state of irritability and distress
+39350,far_cry,distance estimated in terms of the audibility of a cry; "it's a far cry from here"
+39351,far_cry,a disappointing disparity; "it was a far cry from what he had expected"
+39352,farad F,the capacitance of a capacitor that has an equal and opposite charge of 1 coulomb on each plate and a voltage difference of 1 volt between the plates
+39353,farandole,a lively dance from Provence; all the dancers join hands and execute various figures
+39354,farce farce_comedy travesty,a comedy characterized by broad satire and improbable situations
+39355,fardel,a burden (figuratively in the form of a bundle)
+39356,fare,a paying (taxi) passenger
+39357,fare,the food and drink that are regularly served or consumed
+39358,fare transportation,the sum charged for riding in a public conveyance
+39359,fare-stage,a section along the route of a bus for which the fare is the same
+39360,fare-thee-well,state of perfection; the utmost degree; "they polished the furniture to a fare-thee-well"
+39361,fare_increase,increase in the sum charged for riding in a public conveyance
+39362,farewell leave leave-taking parting,the act of departing politely; "he disliked long farewells"; "he took his leave"; "parting is such sweet sorrow"
+39363,farewell word_of_farewell,an acknowledgment or expression of goodwill at parting
+39364,farfalle bowtie_pasta,pasta shaped with scalloped edges and pinched in the middle, suggestive of a bow tie
+39365,farina,fine meal made from cereal grain especially wheat; often used as a cooked cereal or in puddings
+39366,farkleberry sparkleberry Vaccinium_arboreum,shrub or small tree of eastern United States having black inedible berries
+39367,farm,workplace consisting of farm buildings and cultivated land as a unit; "it takes several people to work the farm"
+39368,farm_bill,a statute that would regulate farm production and prices
+39369,farm_boy,a boy who has grown up on a farm
+39370,farm_building,a building on a farm
+39371,farm_girl,a girl who has grown up on a farm
+39372,farm_horse dobbin,a quiet plodding workhorse
+39373,farm_machine,a machine used in farming
+39374,farm_team farm_club,a minor-league team that is owned by a major-league team (especially in baseball)
+39375,farmer husbandman granger sodbuster,a person who operates a farm
+39376,farmer's_lung thresher's_lung,alveolitis caused by an allergic reaction to fungal spores in the dust that is inhaled from moldy hay
+39377,farmer's_market green_market greenmarket,an open-air marketplace for farm products
+39378,farmerette,a woman working on a farm
+39379,farmhand fieldhand field_hand farm_worker,a hired hand on a farm
+39380,farmhouse,house for a farmer and family
+39381,farming agriculture husbandry,the practice of cultivating the land or raising stock
+39382,farming land,agriculture considered as an occupation or way of life; "farming is a strenuous life"; "there's no work on the land any more"
+39383,farmland farming_area,a rural area where farming is practiced
+39384,farmplace farm-place farmstead,a farm together with its buildings
+39385,farmstead,the buildings and adjacent grounds of a farm
+39386,farmyard,an area adjacent to farm buildings
+39387,farness remoteness farawayness,the property of being remote
+39388,faro,a card game in which players bet against the dealer on the cards he will draw from a dealing box
+39389,farrier horseshoer,a person who shoes horses
+39390,farrow farrowing,the production of a litter of pigs
+39391,fart farting flatus wind breaking_wind,a reflex that expels intestinal gas through the anus
+39392,farthing,a former British bronze coin worth a quarter of a penny
+39393,farthingale,a hoop worn beneath a skirt to extend it horizontally; worn by European women in the 16th and 17th centuries
+39394,fartlek,a method of athletic training (especially for runners) in which strenuous effort and normal effort alternate in a continuous exercise
+39395,fasces,bundle of rods containing an axe with the blade protruding; in ancient Rome it was a symbol of a magistrate's power; in modern Italy it is a symbol of fascism
+39396,fascia facia,a sheet or band of fibrous connective tissue separating or binding together muscles and organs etc
+39397,fascicle fascicule,an installment of a printed work
+39398,fasciculation,muscular twitching of contiguous groups of muscle fibers
+39399,fascination,the capacity to attract intense interest; "he held the children spellbound with magic tricks and other fascinations"
+39400,fascination captivation,the state of being intensely interested (as by awe or terror)
+39401,fascioliasis fasciolosis,infestation with the liver fluke Fasciola hepatica; liver damage sometimes occurs; related to liver rot
+39402,fasciolopsiasis,infestation with the large intestinal fluke Fasciolopsis buski; common in eastern Asia
+39403,fascism,a political theory advocating an authoritarian hierarchical government (as opposed to democracy or liberalism)
+39404,fascist,an adherent of fascism or other authoritarian views
+39405,fascista,an Italian fascist under Mussolini
+39406,fashion,the latest and most admired style in clothes and cosmetics and behavior
+39407,fashion,consumer goods (especially clothing) in the current mode
+39408,fashion,characteristic or habitual practice
+39409,fashion_consultant fashionmonger,someone who advises you about fashionable clothing
+39410,fashion_plate,a plate illustrating the latest fashion in dress
+39411,fast fasting,abstaining from food
+39412,fast_break,(basketball) a rapid dash to get a shot as soon as possible after taking possession of the ball
+39413,fast_buck quick_buck,quick or easy earnings; "they are traders out to make a fast buck"
+39414,fast_day,a day designated for fasting
+39415,fast_food,inexpensive food (hamburgers or chicken or milkshakes) prepared and served quickly
+39416,fast_lane,a hectic and pressured lifestyle often characterized by recklessness or dissipation; "life in fashion's fast lane has taught her a lot"
+39417,fast_lane,the traffic lane for vehicles that are moving rapidly
+39418,fast_reactor,nuclear reactor in which nuclear fissions are caused by fast neutrons because little or no moderator is used
+39419,fast_time_scale,(simulation) the time scale used in data processing when the time-scale factor is less than one
+39420,fast_track,a rapid means of achieving a goal; "they saw independence as the fast track to democracy"; "he took a fast track to the top of the corporate ladder"; "the company went off the fast track when the stock market dropped"
+39421,fastball heater smoke hummer bullet,(baseball) a pitch thrown with maximum velocity; "he swung late on the fastball"; "he showed batters nothing but smoke"
+39422,fastener,a person who fastens or makes fast; "he found the door fastened and wondered who the fastener was"
+39423,fastener fastening holdfast fixing,restraint that attaches to something or holds something in place
+39424,fastening attachment,the act of fastening things together
+39425,fastidiousness,the trait of being meticulous about matters of taste or style; "neatness and fastidiousness of dress"
+39426,fastnacht,doughnut traditionally eaten on Shrove Tuesday
+39427,fastness fixedness fixity fixture secureness,the quality of being fixed in place as by some firm attachment
+39428,fat,a soft greasy substance occurring in organic tissue and consisting of a mixture of lipids (mostly triglycerides); "pizza has too much fat"
+39429,fat-soluble_vitamin,any vitamin that is soluble in fats
+39430,fat_cat,a wealthy and privileged person
+39431,fat_cell adipose_cell,cells composed of fat
+39432,fat_chance slim_chance,little or no chance of success
+39433,fat_embolism,serious condition in which fat blocks an artery; fat can enter the blood stream after a long bone is fractured or if adipose tissue is injured or as a result of a fatty liver
+39434,fat_farm,a health spa that specializes in helping people lose weight
+39435,fat_metabolism,a metabolic process that breaks down ingested fats into fatty acids and glycerol and then into simpler compounds that can be used by cells of the body
+39436,fata_morgana,a mirage in the Strait of Messina (attributed to the Arthurian sorcerer Morgan le Fay)
+39437,fatal_accident casualty,an accident that causes someone to die
+39438,fatalism,a submissive mental attitude resulting from acceptance of the doctrine that everything that happens is predetermined and inevitable
+39439,fatalism,a philosophical doctrine holding that all events are predetermined in advance for all time and human beings are powerless to change them
+39440,fatalist determinist predestinarian predestinationist,anyone who submits to the belief that they are powerless to change their destiny
+39441,fatality,the quality of being able to cause death or fatal disasters
+39442,fatality human_death,a death resulting from an accident or a disaster; "a decrease in the number of automobile fatalities"
+39443,fatback,salt pork from the back of a hog carcass
+39444,fathead goof goofball bozo jackass goose cuckoo twat zany,a man who is a stupid incompetent fool
+39445,father,a person who holds an important or distinguished position in some organization; "the tennis fathers ruled in her favor"; "the city fathers endorsed the proposal"
+39446,father male_parent begetter,a male parent (also used as a term of address to your father); "his father was born in Atlanta"
+39447,father-figure,a man (often a powerful or influential man) who arouses emotions usually felt for your real father and with whom you identify psychologically
+39448,father-in-law,the father of your spouse
+39449,father_figure father_surrogate,a man who takes over all the functions of the real father
+39450,fatherhood,the status of a religious leader
+39451,fatherhood,the status of a father
+39452,fatherhood paternity,the kinship relation between an offspring and the father
+39453,fatherland homeland motherland mother_country country_of_origin native_land,the country where you were born
+39454,fatherliness paternal_quality,the benignity and protectiveness of or befitting a father; "the gentleness and fatherliness of the strange old man eased her fears"
+39455,fathom fthm,a linear unit of measurement (equal to 6 feet) for water depth
+39456,fathom fthm,(mining) a unit of volume (equal to 6 cubic feet) used in measuring bodies of ore
+39457,fatigability,susceptibility to fatigue; a tendency to get tired or lose strength
+39458,fatigue,used of materials (especially metals) in a weakened state caused by long stress; "metal fatigue"
+39459,fatigue,(always used with a modifier) boredom resulting from overexposure to something; "he was suffering from museum fatigue"; "after watching TV with her husband she had a bad case of football fatigue"; "the American public is experiencing scandal fatigue"; "political fatigue"
+39460,fatigue weariness tiredness,temporary loss of strength and energy resulting from hard physical or mental work; "he was hospitalized for extreme fatigue"; "growing fatigue was apparent from the decline in the execution of their athletic skills"; "weariness overcame her after twelve hours and she fell asleep"
+39461,fatigue_crack,a crack in metal resulting from metal fatigue
+39462,fatigue_duty fatigue,labor of a nonmilitary kind done by soldiers (cleaning or digging or draining or so on); "the soldiers were put on fatigue to teach them a lesson"; "they were assigned to kitchen fatigues"
+39463,fatigue_fracture stress_fracture,fracture resulting from excessive activity rather than a specific injury
+39464,fatigue_party,a group of soldiers on fatigue duty
+39465,fatigues,military uniform worn by military personnel when doing menial labor
+39466,fatness fat blubber avoirdupois,excess bodily weight; "she disliked fatness in herself as well as in others"
+39467,fatso fatty fat_person roly-poly butterball,a rotund individual
+39468,fattism fatism,discrimination against people who are overweight
+39469,fatty_acid,any of a class of aliphatic monocarboxylic acids that form part of a lipid molecule and can be derived from fat by hydrolysis; fatty acids are simple molecules built around a series of carbon atoms linked together in a chain of 12 to 22 carbon atoms
+39470,fatty_liver,yellow discoloration as a result of the accumulation of certain fats (triglycerides) in the liver; can be caused by alcoholic cirrhosis or pregnancy or exposure to certain toxins
+39471,fatwa,a ruling on a point of Islamic law that is given by a recognized authority
+39472,fatwah,(Islam) a legal opinion or ruling issued by an Islamic scholar; "bin Laden issued three fatwahs calling upon Muslims to take up arms against the United States"
+39473,faubourg,a New Orleans district lying outside the original city limits; used in combination with the names of various quarters of the city; "in Faubourg Sainte-Marie"
+39474,fauces,the passage between the back of the mouth and the pharynx
+39475,faucet spigot,a regulator for controlling the flow of a liquid from a reservoir
+39476,fauld,a piece of armor plate below the breastplate
+39477,fault,(electronics) equipment failure attributable to some defect in a circuit (loose connection or insulation failure or short circuit etc.); "it took much longer to find the fault than to fix it"
+39478,fault,responsibility for a bad situation or event; "it was John's fault"
+39479,fault,(sports) a serve that is illegal (e.g., that lands outside the prescribed area); "he served too many double faults"
+39480,fault faulting geological_fault shift fracture break,(geology) a crack in the earth's crust resulting from the displacement of one side with respect to the other; "they built it right over a geological fault"; "he studied the faulting of the earth's crust"
+39481,fault_line,(geology) line determined by the intersection of a geological fault and the earth's surface
+39482,faultfinding carping,persistent petty and unjustified criticism
+39483,faultlessness impeccability,the quality of being without an error or fault
+39484,faun,ancient Italian deity in human shape, with horns, pointed ears and a goat's tail; equivalent to Greek satyr
+39485,fauna zoology,all the animal life in a particular region or period; "the fauna of China"; "the zoology of the Pliocene epoch"
+39486,fauteuil,an upholstered armchair
+39487,fauvism,an art movement launched in 1905 whose work was characterized by bright and nonnatural colors and simple forms; influenced the expressionists
+39488,faux_pas gaffe solecism slip gaucherie,a socially awkward or tactless act
+39489,fava_bean broad_bean,shell beans cooked as lima beans
+39490,favism,anemia resulting from eating fava beans; victims have an inherited blood abnormality and enzyme deficiency
+39491,favor favour,a feeling of favorable regard
+39492,favor favour,an inclination to approve; "that style is in favor this season"
+39493,favor favour,an advantage to the benefit of someone or something; "the outcome was in his favor"
+39494,favor favour,an act of gracious kindness
+39495,favorableness favourableness advantageousness positivity positiveness profitableness,the quality of being encouraging or promising of a successful outcome
+39496,favorite favourite,something regarded with special favor or liking; "that book is one of my favorites"
+39497,favorite_son,a United States politician favored mainly in his or her home state
+39498,favoritism favouritism,an inclination to favor some person or group
+39499,favus,a contagious fungal infection of the scalp; occurs mainly in Africa and the Middle East
+39500,fawn,a young deer
+39501,fawn_lily Erythronium_californicum,California dogtooth violet with creamy white flowers sometimes yellow-tinged
+39502,fear fearfulness fright,an emotion experienced in anticipation of some specific pain or danger (usually accompanied by a desire to flee or fight)
+39503,fear reverence awe veneration,a feeling of profound respect for someone or something; "the fear of God"; "the Chinese reverence for the dead"; "the French treat food with gentle reverence"; "his respect for the law bordered on veneration"
+39504,fearfulness,the trait of being afraid
+39505,fearlessness,the trait of feeling no fear
+39506,fearlessness bravery,feeling no fear
+39507,feasibility feasibleness,the quality of being doable
+39508,feast,something experienced with great delight; "a feast for the eyes"
+39509,feast_day fete_day,a day designated for feasting
+39510,feasting banqueting,eating an elaborate meal (often accompanied by entertainment)
+39511,feat effort exploit,a notable achievement; "he performed a great feat"; "the book was her finest effort"
+39512,feather feathering,turning an oar parallel to the water between pulls
+39513,feather plume plumage,the light horny waterproof structure forming the external covering of birds
+39514,feather_ball Mammillaria_plumosa,a low tuberculate cactus with white feathery spines; northeastern Mexico
+39515,feather_bed featherbed,a mattress stuffed with feathers
+39516,feather_boa boa,a long thin fluffy scarf of feathers or fur
+39517,feather_palm,palm having pinnate or featherlike leaves
+39518,feather_reed_grass feathertop Calamagrostis_acutiflora,a variety of reed grass
+39519,feather_star comatulid,free-swimming stalkless crinoid with ten feathery arms; found on muddy sea bottoms
+39520,featherbedding,the practice (usually by a labor union) of requiring an employer to hire more workers than are required
+39521,featheredge,a thin tapering edge
+39522,featherfoil feather-foil,a plant of the genus Hottonia
+39523,feathertop feathertop_grass Pennistum_villosum,northeastern tropical African plant having feathery panicles
+39524,featherweight,an amateur boxer who weighs no more than 126 pounds
+39525,featherweight,weighs 126-139 pounds
+39526,featherweight,a professional boxer who weighs between 123 and 126 pounds
+39527,feature,an article of merchandise that is displayed or advertised more than other articles
+39528,feature characteristic,a prominent attribute or aspect of something; "the map showed roads and other features"; "generosity is one of his best characteristics"
+39529,feature feature_article,a special or prominent article in a newspaper or magazine; "they ran a feature on retirement planning"
+39530,feature feature_film,the principal (full-length) film in a program at a movie theater; "the feature tonight is `Casablanca'"
+39531,feature lineament,the characteristic parts of a person's face: eyes and nose and mouth and chin; "an expression of pleasure crossed his features"; "his lineaments were very regular"
+39532,feature_of_speech feature,(linguistics) a distinctive characteristic of a linguistic unit that serves to distinguish it from other units of the same kind
+39533,fecal_impaction,accumulation of hardened feces in the rectum or lower colon which the person cannot move
+39534,fecal_matter faecal_matter feces faeces BM stool ordure dejection,solid excretory product evacuated from the bowels
+39535,fecal_occult_test faecal_occult_test stool_test,a test performed at home in which you collect specimens of your stool that are tested for traces of blood; used to detect colorectal cancers
+39536,fecklessness,worthlessness due to being feeble and ineffectual
+39537,fecula,excreta (especially of insects)
+39538,feculence,something that is feculent
+39539,fecundity fruitfulness,the intellectual productivity of a creative imagination
+39540,fedayeen,(plural) Arab guerrillas who operate mainly against Israel
+39541,fedelline,extremely fine pasta thinner than vermicelli
+39542,federal_court,a court establish by the authority of a federal government
+39543,federal_deficit,an excess of the federal government's spending over its revenue; "federal deficits can cause inflation"
+39544,federal_department federal_office department_of_the_federal_government,a department of the federal government of the United States
+39545,federal_district,a district set apart as the seat of government of a federation
+39546,federal_government,a government with strong central powers
+39547,federal_savings_bank FSB,a federally chartered savings bank
+39548,federal_tax_lien,lien of the United States on all property of a taxpayer who fails to pay the federal government the taxes for which he or she is liable
+39549,federalism,the idea of a federal organization of more or less self-governing units
+39550,federalist,an advocate of federalism
+39551,federalization federalisation,the state of being under federal control; "the federalization of postal service"
+39552,federalization federalisation,the act of being put under federal control
+39553,federation,an organization formed by merging several groups or parties
+39554,federation,the act of constituting a political unity out of a number of separate states or colonies or provinces so that each member retains the management of its internal affairs
+39555,fedora felt_hat homburg Stetson trilby,a hat made of felt with a creased crown
+39556,fee,a fixed charge for a privilege or for professional services
+39557,fee,an interest in land capable of being inherited
+39558,fee_simple,a fee without limitation to any class of heirs; they can sell it or give it away
+39559,fee_splitting,payment (usually by doctors or lawyers) of part of the fee in return for the referral
+39560,fee_tail,a fee limited to a particular line of heirs; they are not free to sell it or give it away
+39561,feeblemindedness,severe mental deficiency
+39562,feebleness tenuity,the quality of lacking intensity or substance; "a shrill yet sweet tenuity of voice"- Nathaniel Hawthorne
+39563,feed provender,food for domestic livestock
+39564,feed_grain,grain grown for cattle feed
+39565,feedback,the process in which part of the output of a system is returned to its input in order to regulate its further output
+39566,feedback,response to an inquiry or experiment
+39567,feedback_circuit feedback_loop,a circuit that feeds back some of the output to the input of a system
+39568,feeder,an animal that feeds on a particular source of food; "a bark feeder"; "a mud feeder"
+39569,feeder,an animal being fattened or suitable for fattening
+39570,feeder tributary confluent affluent,a branch that flows into the main stream
+39571,feeder_line,a branching path off of a main transportation line (especially an airline)
+39572,feeding alimentation,the act of supplying food and nourishment
+39573,feedlot,a building where livestock are fattened for market
+39574,feedstock,the raw material that is required for some industrial process
+39575,feel,an intuitive awareness; "he has a feel for animals"; "it's easy when you get the feel of it"
+39576,feel,manual stimulation of the genital area for sexual pleasure; "the girls hated it when he tried to sneak a feel"
+39577,feeling,a physical sensation that you experience; "he had a queasy feeling"; "I had a strange feeling in my leg"; "he lost all feeling in his arm"
+39578,feeling,the experiencing of affective and emotional states; "she had a feeling of euphoria"; "he had terrible feelings of guilt"; "I disliked him and the feeling was mutual"
+39579,feeling intuitive_feeling,an intuitive understanding of something; "he had a great feeling for music"
+39580,feelings,emotional or moral sensitivity (especially in relation to personal principles or dignity); "the remark hurt his feelings"
+39581,feijoa feijoa_bush,South American shrub having edible greenish plumlike fruit
+39582,feijoa pineapple_guava,dark-green kiwi-sized tropical fruit with white flesh; used chiefly for jellies and preserves
+39583,feint,any distracting or deceptive maneuver (as a mock attack)
+39584,feist fice,a nervous belligerent little mongrel dog
+39585,feldspar felspar,any of a group of hard crystalline minerals that consist of aluminum silicates of potassium or sodium or calcium or barium
+39586,felicity felicitousness,pleasing and appropriate manner or style (especially manner or style of expression)
+39587,feline felid,any of various lithe-bodied roundheaded fissiped mammals, many with retractile claws
+39588,fell,the act of felling something (as a tree)
+39589,fell felled_seam,seam made by turning under or folding together and stitching the seamed materials to avoid rough edges
+39590,fellah,an agricultural laborer in Arab countries
+39591,fellatio fellation,oral stimulation of the penis
+39592,felloe felly,rim (or part of the rim) into which spokes are inserted
+39593,fellow,a member of a learned society; "he was elected a fellow of the American Physiological Association"
+39594,fellow dude buster,an informal form of address for a man; "Say, fellow, what are you doing?"; "Hey buster, what's up?"
+39595,fellow_traveler fellow_traveller,a communist sympathizer (but not a member of the Communist Party)
+39596,fellowship,money granted (by a university or foundation or other agency) for advanced study or research
+39597,felo-de-se,an act of deliberate self destruction
+39598,felon whitlow,a purulent infection at the end of a finger or toe in the area surrounding the nail
+39599,felony,a serious crime (such as murder or arson)
+39600,felt,a fabric made of compressed matted animal fibers
+39601,felt-tip_pen felt-tipped_pen felt_tip Magic_Marker,a pen with a writing tip made of felt (trade name Magic Marker)
+39602,felt_fern tongue_fern Pyrrosia_lingua Cyclophorus_lingua,east Asian fern having fronds shaped like tongues; sometimes placed in genus Cyclophorus
+39603,felt_fungus Septobasidium_pseudopedicellatum,fungus that frequently encircles twigs and branches of various trees especially citrus trees in southern United States
+39604,felucca,a fast narrow sailing ship of the Mediterranean
+39605,felwort gentianella_amarella,gentian of Europe and China having creamy white flowers with fringed corollas
+39606,female,an animal that produces gametes (ova) that can be fertilized by male gametes (spermatozoa)
+39607,female female_person,a person who belongs to the sex that can have babies
+39608,female_aristocrat,a woman who is an aristocrat
+39609,female_body,the body of a female human being
+39610,female_bonding,the formation of a close personal relationship between women
+39611,female_chest bust,the chest of a woman
+39612,female_child girl little_girl,a youthful female person; "the baby was a girl"; "the girls were just learning to ride a tricycle"
+39613,female_genitalia female_genitals female_genital_organ fanny,external female sex organs; "in England `fanny' is vulgar slang for female genitals"
+39614,female_internal_reproductive_organ,the reproductive organs of a woman
+39615,female_mammal,animals that nourish their young with milk
+39616,female_offspring,a child who is female
+39617,female_reproductive_system,the reproductive system of females
+39618,female_sibling,a person's sister
+39619,femaleness feminineness,the properties characteristic of the female sex
+39620,feminine,a gender that refers chiefly (but not exclusively) to females or to objects classified as female
+39621,femininity muliebrity,the trait of behaving in ways considered typical for women
+39622,feminism,a doctrine that advocates equal rights for women
+39623,feminist women's_rightist women's_liberationist libber,a supporter of feminism
+39624,feminist_movement feminism women's_liberation_movement women's_lib,the movement aimed at equal rights for women
+39625,feminization feminisation,the process of becoming feminized; the development of female characteristics (loss of facial hair or breast enlargement) in a male because of hormonal disorders or castration
+39626,femoral_artery arteria_femoralis,the chief artery of the thigh; a continuation of the external iliac artery
+39627,femoral_nerve nervus_femoralis anterior_crural_nerve,one of a pair of nerves that originate from lumbar nerves and supply the muscles and skin of the anterior part of the thigh
+39628,femoral_pulse,pulse of the femoral artery (felt in the groin)
+39629,femoral_vein vena_femoralis,a vein that accompanies the femoral artery in the same sheath; a continuation of the popliteal vein; becomes the external iliac vein
+39630,femtochemistry,the branch of chemistry that studies elementary (often very fast) chemical reactions as they occur; the experimental methods are often based on the use of femtosecond laser pulses
+39631,femtometer femtometre fermi,a metric unit of length equal to one quadrillionth of a meter
+39632,femtosecond,one quadrillionth (10^-15) of a second; one thousandth of a picosecond
+39633,femtovolt,a unit of potential equal to one quadrillionth of a volt (or one thousandth of a nanosecond)
+39634,femur thighbone femoris,the longest and thickest bone of the human skeleton; extends from the pelvis to the knee
+39635,fen,100 fen equal 1 yuan in China
+39636,fen_orchid fen_orchis Liparis_loeselii,small terrestrial orchid of eastern North America and Europe having two nearly basal leaves and dull yellow-green racemose flowers
+39637,fence,a dealer in stolen property
+39638,fence fencing,a barrier that serves to enclose an area
+39639,fence-sitter,a person who won't take sides in a controversy
+39640,fence_line,a boundary line created by a fence
+39641,fence_lizard,spiny lizard often seen basking on fences in the United States and northern Mexico
+39642,fence_mending,social action to improve poor relations (especially in politics); "they moved forward from a period of fence mending to substantive changes in the country"
+39643,fencer swordsman,someone skilled at fencing
+39644,fencing,the art or sport of fighting with swords (especially the use of foils or epees or sabres to score points under a set of rules)
+39645,fencing_mask fencer's_mask,a face mask made of fine mesh that is worn over a fencer's face
+39646,fencing_material fencing,material for building fences
+39647,fencing_sword,a sword used in the sport of fencing
+39648,fender,a low metal guard to confine falling coals to a hearth
+39649,fender buffer cowcatcher pilot,an inclined metal frame at the front of a locomotive to clear the track
+39650,fender wing,a barrier that surrounds the wheels of a vehicle to block splashing water or mud; "in Britain they call a fender a wing"
+39651,fender-bender,a collision between motor vehicles that produces minor damage
+39652,fenestra,a small opening covered with membrane (especially one in the bone between the middle and inner ear)
+39653,fenestra_ovalis fenestra_vestibuli oval_window fenestra_of_the_vestibule,fenestra that has the base of the stapes attached to it
+39654,fenestra_rotunda fenestra_cochleae round_window fenestra_of_the_cochlea,fenestra leading into the cochlea
+39655,fenestration,the arrangement of windows in a building
+39656,fenestration,surgical procedure that creates a new fenestra to the cochlea in order to restore hearing lost because of osteosclerosis
+39657,feng_shui,rules in Chinese philosophy that govern spatial arrangement and orientation in relation to patterns of yin and yang and the flow of energy (qi); the favorable or unfavorable effects are taken into consideration in designing and siting buildings and graves and furniture
+39658,fennel,any of several aromatic herbs having edible seeds and leaves and stems
+39659,fennel,fennel seeds are ground and used as a spice or as an ingredient of a spice mixture
+39660,fennel Florence_fennel finocchio,aromatic bulbous stem base eaten cooked or raw in salads
+39661,fennel common_fennel,leaves used for seasoning
+39662,fennel_flower Nigella_hispanica,nigella of Spain and southern France
+39663,fennel_seed,aromatic anis-scented seeds
+39664,fenoprofen fenoprofen_calcium Nalfon,a nonsteroidal anti-inflammatory drug (trade name Nalfon) used in the treatment of arthritis and other painful inflammatory disorders
+39665,fenugreek Greek_clover Trigonella_foenumgraecum,annual herb or southern Europe and eastern Asia having off-white flowers and aromatic seeds used medicinally and in curry
+39666,fenugreek fenugreek_seed,aromatic seeds used as seasoning especially in curry
+39667,fer-de-lance Bothrops_atrops,large extremely venomous pit viper of Central America and South America
+39668,fergusonite,a dark mineral consisting of oxides of yttrium and erbium and tantalum and other minerals
+39669,feria,a weekday on which no festival or holiday is celebrated; "in the middle ages feria was used with a prefixed ordinal number to designate the day of the week, so `secunda feria' meant Monday, but Sunday and Saturday were always called by their names, Dominicus and Sabbatum, and so feria came to mean an ordinary weekday"
+39670,feria,(in Spanish speaking regions) a local festival or fair, usually in honor of some patron saint
+39671,fermata,a musical notation (over a note or chord or rest) that indicates it is to be prolonged by an unspecified amount
+39672,fermata,(music) a prolongation of unspecified length on a note or chord or rest
+39673,ferment,a substance capable of bringing about fermentation
+39674,fermion,any particle that obeys Fermi-Dirac statistics and is subject to the Pauli exclusion principle
+39675,fermium Fm atomic_number_100,a radioactive transuranic metallic element produced by bombarding plutonium with neutrons
+39676,fern,any of numerous flowerless and seedless vascular plants having true roots from a rhizome and fronds that uncurl upward; reproduce by spores
+39677,fern_ally,pteridophytes of other classes than Filicopsida
+39678,fern_family,families of ferns and fern allies
+39679,fern_genus,genera of ferns and fern allies
+39680,fern_seed,the asexual spore of ferns that resembles dust; once thought to be seeds and to make the possessor invisible
+39681,ferociousness brutality viciousness savagery,the trait of extreme cruelty
+39682,ferocity fierceness furiousness fury vehemence violence wildness,the property of being wild or turbulent; "the storm's violence"
+39683,ferret,domesticated albino variety of the European polecat bred for hunting rats and rabbits
+39684,ferret_badger,small ferret-like badger of southeast Asia
+39685,ferric_oxide,a red oxide of iron
+39686,ferricyanic_acid,a brown unstable acid formed from ferricyanide
+39687,ferricyanide,salt of ferricyanic acid obtained by oxidation of a ferrocyanide
+39688,ferrimagnetism,a phenomenon in ferrites where there can be incomplete cancellation of antiferromagnetic arranged spins giving a net magnetic moment
+39689,ferrite,a solid solution in which alpha iron is the solvent
+39690,ferritin,a protein containing 20% iron that is found in the intestines and liver and spleen; it is one of the chief forms in which iron is stored in the body
+39691,ferrocerium,a pyrophoric alloy of iron with cerium; used for lighter flints
+39692,ferrocyanic_acid,a white unstable acid formed from ferrocyanide salts
+39693,ferrocyanide,salt of ferrocyanic acid usually obtained by a reaction of a cyanide with iron sulphate
+39694,ferromagnetism,phenomenon exhibited by materials like iron (nickel or cobalt) that become magnetized in a magnetic field and retain their magnetism when the field is removed
+39695,ferrule collet,a metal cap or band placed on a wooden pole to prevent splitting
+39696,ferry ferryboat,a boat that transports people or vehicles across a body of water and operates on a regular schedule
+39697,ferry ferrying,transport by boat or aircraft
+39698,ferryman,a man who operates a ferry
+39699,fertile_period fertile_phase,the time in the menstrual cycle when fertilization is most likely to be possible (7 days before to 7 days after ovulation)
+39700,fertility fecundity,the state of being fertile; capable of producing offspring
+39701,fertility_drug,a drug used to increase a woman's fertility
+39702,fertilization fertilisation fecundation dressing,making fertile as by applying fertilizer or manure
+39703,fertilization fertilisation fecundation impregnation,creation by the physical union of male and female gametes; of sperm and ova in an animal or pollen and ovule in a plant
+39704,fertilization_membrane,the membrane that forms around a fertilized ovum and prevents penetration by additional spermatozoon
+39705,fertilizer fertiliser plant_food,any substance such as manure or a mixture of nitrates used to make soil more fertile
+39706,ferule,a switch (a stick or cane or flat paddle) used to punish children
+39707,fescue fescue_grass meadow_fescue Festuca_elatior,grass with wide flat leaves cultivated in Europe and America for permanent pasture and hay and for lawns
+39708,fesse fess,(heraldry) an ordinary consisting of a broad horizontal band across a shield
+39709,fester suppurating_sore,a sore that has become inflamed and formed pus
+39710,festering suppuration maturation,(medicine) the formation of morbific matter in an abscess or a vesicle and the discharge of pus
+39711,festination,involuntary shortening of stride and quickening of gait that occurs in some diseases (e.g., Parkinson's disease)
+39712,festival,a day or period of time set aside for feasting and celebration
+39713,festival fete,an organized series of acts and performances (usually in one place); "a drama festival"
+39714,festoon,a curtain of fabric draped and bound at intervals to form graceful curves
+39715,festoon,an embellishment consisting of a decorative representation of a string of flowers suspended between two points; used on pottery or in architectural work
+39716,festoon festoonery,flower chains suspended in curves between points as a decoration
+39717,festschrift,a collection of writings published in honor of a scholar
+39718,fetal_age fertilization_age gestational_age,the age of an embryo counting from the time of fertilization
+39719,fetal_alcohol_syndrome FAS,a congenital medical condition in which body deformation occurs or facial development or mental ability is impaired because the mother drinks alcohol during pregnancy
+39720,fetal_circulation foetal_circulation,the system of blood vessels and structures through which blood moves in a fetus
+39721,fetal_distress foetal_distress,an abnormal condition of a fetus; usually discovered during pregnancy and characterized by an abnormal heart rhythm
+39722,fetal_membrane,any membrane that functions for the protection or nourishment or respiration or excretion of a developing fetus
+39723,fetal_movement foetal_movement,motion of a fetus within the uterus (usually detected by the 16th week of pregnancy)
+39724,fetch,the action of fetching
+39725,fete feast fiesta,an elaborate party (often outdoors)
+39726,feterita federita Sorghum_vulgare_caudatum,a Sudanese sorghum having exceptionally large soft white grains
+39727,fetid_bugbane foetid_bugbane Cimicifuga_foetida,bugbane of Siberia and eastern Asia having ill-smelling green-white flowers
+39728,fetish,a form of sexual desire in which gratification depends to an abnormal degree on some object or item of clothing or part of the body; "common male fetishes are breasts, legs, hair, shoes, and underwear"
+39729,fetish fetich,excessive or irrational devotion to some activity; "made a fetish of cleanliness"
+39730,fetishism fetichism,a belief in the magical power of fetishes (or the worship of a fetish)
+39731,fetishism fetichism,sexual arousal or gratification resulting from handling a fetish (or a specific part of the body other than the sexual organs)
+39732,fetishist,one who engages in fetishism (especially of a sexual nature)
+39733,fetlock,projection behind and above a horse's hoof
+39734,fetlock fetlock_joint,the joint between the cannon bone and the pastern
+39735,fetology foetology,the branch of medicine concerned with the fetus in the uterus
+39736,fetometry foetometry,measurement of a fetus (especially the diameter of the head)
+39737,fetoprotein foetoprotein,any of several antigens that occur naturally in the fetus and sometimes in adults with cancer
+39738,fetoscope foetoscope,a stethoscope placed on the pregnant woman's abdomen to listen for the fetal heartbeat
+39739,fetoscopy foetoscopy,prenatal diagnosis that allows direct observation of a fetus in the uterus and the withdrawal of fetal blood
+39740,fetter hobble,a shackle for the ankles or feet
+39741,fetterbush fetter_bush shiny_lyonia Lyonia_lucida,showy evergreen shrub of southeastern United States with shiny leaves and angled branches and clusters of pink to reddish flowers that resemble an umbel
+39742,fetterbush mountain_fetterbush mountain_andromeda Pieris_floribunda,ornamental evergreen shrub of southeastern United States having small white bell-shaped flowers
+39743,fettle,a state of fitness and good health; "in fine fettle"
+39744,fettuccine fettuccini,pasta in flat strips wider than linguine
+39745,fettuccine_Alfredo,fettuccine in cream sauce with cheese
+39746,fetus foetus,an unborn or unhatched vertebrate in the later stages of development showing the main recognizable features of the mature animal
+39747,feud,a bitter quarrel between two parties
+39748,feudal_lord seigneur seignior,a man of rank in the ancient regime
+39749,feudalism feudal_system,the social system that developed in Europe in the 8th century; vassals were protected by lords who they had to serve in war
+39750,fever,intense nervous anticipation; "in a fever of resentment"
+39751,fever febrility febricity pyrexia feverishness,a rise in the temperature of the body; frequently a symptom of infection
+39752,fever_pitch,a state of extreme excitement; "the crowd was at fever pitch"
+39753,fever_tree,any of several trees having leaves or bark used to allay fever or thought to indicate regions free of fever
+39754,fever_tree Acacia_xanthophloea,African tree supposed to mark healthful regions
+39755,fever_tree Georgia_bark bitter-bark Pinckneya_pubens,ornamental shrub or small tree of swampy areas in southwestern United States having large pink or white sepals and yielding Georgia bark for treating fever
+39756,feverfew Tanacetum_parthenium Chrysanthemum_parthenium,bushy aromatic European perennial herb having clusters of buttonlike white-rayed flower heads; valued traditionally for medicinal uses; sometimes placed in genus Chrysanthemum
+39757,feverroot horse_gentian tinker's_root wild_coffee Triostium_perfoliatum,coarse weedy American perennial herb with large usually perfoliate leaves and purple or dull red flowers
+39758,few,a small elite group; "it was designed for the discriminating few"
+39759,few-flowered_leek Allium_paradoxum,leek producing bulbils instead of flowers; Russia and Iran
+39760,fewness,the quality of being small in number
+39761,fez tarboosh,a felt cap (usually red) for a man; shaped like a flat-topped cone with a tassel that hangs from the crown
+39762,fiance groom-to-be,a man who is engaged to be married
+39763,fiancee bride-to-be,a woman who is engaged to be married
+39764,fiat_money,money that the government declares to be legal tender although it cannot be converted into standard specie
+39765,fib story tale tarradiddle taradiddle,a trivial lie; "he told a fib about eating his spinach"; "how can I stop my child from telling stories?"
+39766,fibbing paltering,a trivial act of lying or being deliberately unclear
+39767,fiber fibre,a slender and greatly elongated substance capable of being spun into yarn
+39768,fiber fibre,any of several elongated, threadlike cells (especially a muscle fiber or a nerve fiber)
+39769,fiber fibre vulcanized_fiber,a leatherlike material made by compressing layers of paper or cloth
+39770,fiber-optic_transmission_system fibre-optic_transmission_system FOTS,a communication system using fiber optic cables
+39771,fiber_bundle fibre_bundle fascicle fasciculus,a bundle of fibers (especially nerve fibers)
+39772,fiber_optic_cable fibre_optic_cable,a cable made of optical fibers that can transmit large amounts of information at the speed of light
+39773,fiber_optics fiberoptics fibre_optics fibreoptics,the transmission of light signals via glass fibers
+39774,fiberboard fibreboard particle_board,wallboard composed of wood chips or shavings bonded together with resin and compressed into rigid sheets
+39775,fiberglass fibreglass,a covering material made of glass fibers in resins
+39776,fiberscope,a flexible medical instrument involving fiber optics that is used to examine internal organs
+39777,fibril filament strand,a very slender natural or synthetic fiber
+39778,fibrillation,muscular twitching involving individual muscle fibers acting without coordination
+39779,fibrillation,act or process of forming fibrils
+39780,fibrin,a white insoluble fibrous protein formed by the action of thrombin on fibrinogen when blood clots; it forms a network that traps red cells and platelets
+39781,fibrinase factor_XIII,in the clotting of blood thrombin catalyzes factor XIII into its active form (fibrinase) which causes fibrin to form a stable clot
+39782,fibrinogen factor_I,a protein present in blood plasma; converts to fibrin when blood clots
+39783,fibrinolysis,a normal ongoing process that dissolves fibrin and results in the removal of small blood clots; "drugs causing fibrinolysis have been utilized therapeutically"
+39784,fibrinopeptide,peptide released from the amino end of fibrinogen by the action of thrombin to form fibrin during clotting of the blood
+39785,fibroadenoma,benign and movable and firm and not tender tumor of the breast; common in young women and caused by high levels of estrogen
+39786,fibroblast,a cell from which connective tissue develops
+39787,fibrocartilage,cartilage that is largely composed of fibers like those in ordinary connective tissue
+39788,fibrocystic_breast_disease fibrocystic_disease_of_the_breast cystic_breast_disease cystic_mastitis,the presence of one or more cysts in a breast
+39789,fibroid_tumor fibroid,benign tumor containing fibrous tissue (especially in the uterus)
+39790,fibroma,nonmalignant tumor of connective tissue
+39791,fibromyositis,local inflammation of muscle and connective tissue
+39792,fibrosis,development of excess fibrous connective tissue in an organ
+39793,fibrositis,inflammation of white fibrous tissues (especially muscle sheaths)
+39794,fibrosity fibrousness,the quality of being fibrous
+39795,fibrous-rooted_begonia,any of numerous begonias having fibrous rather than tuberous or rhizomatous roots
+39796,fibrous_astrocyte,star-shaped cells with long processes; found in the white matter of the brain and spinal cord
+39797,fibrous_dysplasia_of_bone,a disturbance in which bone that is undergoing lysis is replaced by an abnormal proliferation of fibrous tissue resulting in bone lesions or skin lesions
+39798,fibrous_tissue,tissue consisting of or containing fibers in both animals and plants
+39799,fibula calf_bone,the outer and thinner of the two bones of the human leg between the knee and ankle
+39800,fichu,a lightweight triangular scarf worn by a woman
+39801,fiction,a literary work based on the imagination and not necessarily on fact
+39802,fictional_animal,animals that exist only in fiction (usually in children's stories)
+39803,fictional_character fictitious_character character,an imaginary person represented in a work of fiction (play or film or story); "she is the main character in the novel"
+39804,fictionalization fictionalisation,a literary work based partly or wholly on fact but written as if it were fiction
+39805,fiddleneck Phacelia_tanacetifolia,hairy annual of California to Mexico with crowded cymes of small blue to lilac or mauve flowers
+39806,fiddler_crab,burrowing crab of American coastal regions having one claw much enlarged in the male
+39807,fiddlestick violin_bow,a bow used in playing the violin
+39808,fidelity,accuracy with which an electronic system reproduces the sound or image of its input signal
+39809,fidelity faithfulness,the quality of being faithful
+39810,fidget fidgetiness restlessness,a feeling of agitation expressed in continual motion; "he's got the fidgets"; "waiting gave him a feeling of restlessness"
+39811,fiduciary,a person who holds assets in trust for a beneficiary; "it is illegal for a fiduciary to misappropriate money for personal gain"
+39812,fiduciary_duty,the legal duty of a fiduciary to act in the best interests of the beneficiary
+39813,fiduciary_relation,the legal relation that exists when one person justifiably places reliance on another whose aid or protection is sought in some matter
+39814,fief feoff,a piece of land held under the feudal system
+39815,fiefdom,the domain controlled by a feudal lord
+39816,fiefdom,an organization that is controlled by a dominant person or group
+39817,field,a geographic region (land or sea) under which something valuable is found; "the diamond fields of South Africa"
+39818,field,a piece of land cleared of trees and usually enclosed; "he planted a field of wheat"
+39819,field,somewhere (away from a studio or office or library or laboratory) where practical work is done or data is collected; "anthropologists do much of their work in the field"
+39820,field,(computer science) a set of one or more adjacent characters comprising a unit of information
+39821,field,(mathematics) a set of elements such that addition and multiplication are commutative and associative and multiplication is distributive over addition and there are two elements 0 and 1; "the set of all rational numbers is a field"
+39822,field,all of the horses in a particular horse race
+39823,field,all the competitors in a particular contest or sporting event
+39824,field field_of_force force_field,the space around a radiating body within which its electromagnetic oscillations can exert force on another similar body not in contact with it
+39825,field field_of_operation line_of_business,a particular kind of commercial enterprise; "they are outstanding in their field"
+39826,field field_of_operations theater theater_of_operations theatre theatre_of_operations,a region in which active military operations are in progress; "the army was in the field awaiting action"; "he served in the Vietnam theater for three years"
+39827,field field_of_view,the area that is visible (as through an optical instrument)
+39828,field-effect_transistor FET,a transistor in which most current flows in a channel whose effective resistance can be controlled by a transverse electric field
+39829,field-emission_microscope,electron microscope used to observe the surface structure of a solid
+39830,field-grade_officer field_officer FO,an officer holding the rank of major or lieutenant colonel or colonel
+39831,field-sequential_color_television field-sequential_color_TV field-sequential_color_television_system field-sequential_color_TV_system,an early form of color TV in which successive fields are scanned in three primary colors
+39832,field_artillery field_gun,movable artillery (other than antiaircraft) used by armies in the field (especially for direct support of front-line troops)
+39833,field_bindweed wild_morning-glory Convolvulus_arvensis,weakly climbing European perennial with white or pink flowers; naturalized in North America and an invasive weed
+39834,field_brome Bromus_arvensis,annual grass of Europe and temperate Asia
+39835,field_capacity,the maximum amount of water that a particular soil can hold
+39836,field_chickweed field_mouse-ear Cerastium_arvense,densely tufted perennial chickweed of north temperate zone
+39837,field_coil field_winding,the electric coil around a field magnet that produces the magneto motive force to set up the flux in an electric machine
+39838,field_corn,corn grown primarily for animal feed or market grain
+39839,field_cricket Acheta_assimilis,common American black cricket; attacks crops and also enters dwellings
+39840,field_crop,a crop (other than fruits or vegetables) that is grown for agricultural purposes; "cotton, hay, and grain are field crops"
+39841,field_day,(military) a day for military exercises and display
+39842,field_day,a day for outdoor athletic competition
+39843,field_day,a time of unusual pleasure and success
+39844,field_day outing picnic,a day devoted to an outdoor social gathering
+39845,field_emission,the emission of electrons that are stripped from parent atoms by a high electric field
+39846,field_event,a competition that takes place on a field rather than on a running track
+39847,field_game,an outdoor game played on a field of specified dimensions
+39848,field_glass glass spyglass,a small refracting telescope
+39849,field_goal,a score in American football; a score made by kicking the ball between the opponents' goal posts
+39850,field_guide,a guidebook describing natural objects of some type that might be encountered in the field; "a field guide to mushrooms"
+39851,field_hockey hockey,a game resembling ice hockey that is played on an open field; two opposing teams use curved hockey sticks try to drive a ball into the opponents' net
+39852,field_hockey_ball,ball used in playing field hockey
+39853,field_hospital,a temporary military hospital near the battle lines
+39854,field_house,an athletic facility where athletes prepare for sport
+39855,field_house sports_arena,a building for indoor sports
+39856,field_judge,a football official
+39857,field_lens,the lens that is farthest from the eye in an optical device with more than one lens
+39858,field_magnet,a magnet that provides a magnetic field in a dynamo or electric motor
+39859,field_marshal,an officer holding the highest rank in the army
+39860,field_mouse fieldmouse,any nocturnal Old World mouse of the genus Apodemus inhabiting woods and fields and gardens
+39861,field_mustard wild_mustard charlock chadlock Brassica_kaber Sinapis_arvensis,weedy Eurasian plant often a pest in grain fields
+39862,field_of_fire,the area that a weapon or group of weapons can cover effectively with gun fire from a given position
+39863,field_of_honor,the scene of a duel
+39864,field_pansy heartsease Viola_arvensis,common Old World viola with creamy often violet-tinged flowers
+39865,field_pea,seed of the field pea plant
+39866,field_pea,coarse small-seeded pea often used as food when young and tender
+39867,field_pea field-pea_plant Austrian_winter_pea Pisum_sativum_arvense Pisum_arvense,variety of pea plant native to the Mediterranean region and North Africa and widely grown especially for forage
+39868,field_pennycress French_weed fanweed penny_grass stinkweed mithridate_mustard Thlaspi_arvense,foetid Eurasian weed having round flat pods; naturalized throughout North America
+39869,field_press_censorship,security review of news (including all information or material intended for dissemination to the public) subject to the jurisdiction of the armed forces
+39870,field_pussytoes,a variety of pussytoes
+39871,field_ration,rations issued for United States troops in the field
+39872,field_scabious Scabiosa_arvensis,perennial having bluish-lilac flowers; introduced in the eastern United States
+39873,field_soybean,seeds used as livestock feed
+39874,field_spaniel,large usually black hunting and retrieving spaniel with a dense flat or slightly wavy coat; cross between cocker and Sussex spaniel
+39875,field_sparrow Spizella_pusilla,common North American finch of brushy pasturelands
+39876,field_speedwell Veronica_agrestis,European plant with minute axillary blue flowers on long stalks; widely naturalized in America
+39877,field_strength field_intensity,the vector sum of all the forces exerted by an electrical or magnetic field (on a unit mass or unit charge or unit magnetic pole) at a given point in the field
+39878,field_strength_unit,an electromagnetic unit of magnetic intensity
+39879,field_tent,a canvas tent for use in the field
+39880,field_theory,(physics) a theory that explains a physical phenomenon in terms of a field and the manner in which it interacts with matter or with other fields
+39881,field_thistle Cirsium_discolor,stout North American thistle with purplish-pink flower heads
+39882,field_trial,a contest between gun dogs to determine their proficiency in pointing and retrieving
+39883,field_trial,a test of young hunting dogs to determine their skill in pointing and retrieving
+39884,field_trial field_test,a test of the performance of some new product under the conditions in which it will be used
+39885,field_trip,a group excursion (to a museum or the woods or some historic place) for firsthand examination
+39886,field_work,an investigation carried out in the field rather than in a laboratory or headquarters
+39887,field_wormwood Artemisia_campestris,European wormwood similar to common wormwood in its properties
+39888,fielder,a member of the baseball team that is in the field instead of at bat
+39889,fielder fieldsman,a member of the cricket team that is fielding rather than batting
+39890,fielder's_choice,a play made on a ground ball in which the fielder chooses to put out an advancing runner instead of the batter
+39891,fieldfare snowbird Turdus_pilaris,medium-sized Eurasian thrush seen chiefly in winter
+39892,fielding,(baseball) handling the ball while playing in the field
+39893,fielding_average,(baseball) a measure of a fielder's performance; the number of assists and putouts divided by the number of chances
+39894,fieldstone,stone that occurs naturally in fields; often used as building material
+39895,fieldwork,a temporary fortification built by troops in the field
+39896,fieldworker,a researcher who works in the field
+39897,fieri_facias,a writ ordering a levy on the belongings of a debtor to satisfy the debt
+39898,fieriness,a passionate and quick-tempered nature
+39899,fieriness red_heat,the heat or the color of fire
+39900,fiesta_flower Pholistoma_auritum Nemophila_aurita,straggling California annual herb with deep purple or violet flowers; sometimes placed in genus Nemophila
+39901,fife,a small high-pitched flute similar to a piccolo; has a shrill tone and is used chiefly to accompany drums in a marching band
+39902,fife_rail,the railing surrounding the mast of a sailing vessel
+39903,fifteen 15 XV,the cardinal number that is the sum of fourteen and one
+39904,fifteenth,position 15 in a countable series of things
+39905,fifth,position five in a countable series of things; "he was fifth out of several hundred runners"
+39906,fifth,a quantity of liquor equal to one fifth of a United States gallon
+39907,fifth,the musical interval between one note and another five notes away from it
+39908,fifth_column Trojan_horse,a subversive group that supports the enemy and engages in espionage or sabotage; an enemy in your midst
+39909,fifth_columnist saboteur,a member of a clandestine subversive organization who tries to help a potential invader
+39910,fifth_wheel,a steering bearing that enables the front axle of a horse-drawn wagon to rotate
+39911,fifth_wheel deadwood,someone or something that is unwanted and unneeded
+39912,fifth_wheel spare,an extra car wheel and tire for a four-wheel vehicle
+39913,fifties 1950s,the decade from 1950 to 1959
+39914,fifties mid-fifties,the time of life between 50 and 60
+39915,fiftieth,position 50 in a countable series of things
+39916,fifty 50 L,the cardinal number that is the product of ten and five
+39917,fifty_dollar_bill fifty,a United States bill worth 50 dollars
+39918,fifty_percent,a half expressed as a percentage
+39919,fig,fleshy sweet pear-shaped yellowish or purple multiple fruit eaten fresh or preserved or dried
+39920,fig common_fig common_fig_tree Ficus_carica,Mediterranean tree widely cultivated for its edible fruit
+39921,fig-bird,greenish-yellow Australian oriole feeding chiefly on figs and other fruits
+39922,fig_leaf,a leaf from a fig tree
+39923,fig_leaf,a covering consisting of anything intended to conceal something regarded as shameful
+39924,fig_marigold pebble_plant,any of several South African plants of the genus Mesembryanthemum cultivated for showy pink or white flowers
+39925,fig_tree,any moraceous tree of the tropical genus Ficus; produces a closed pear-shaped receptacle that becomes fleshy and edible when mature
+39926,fight,an intense verbal dispute; "a violent fight over the bill is expected in the Senate"
+39927,fight,a boxing or wrestling match; "the fight was on television last night"
+39928,fight fighting combat scrap,the act of fighting; any contest or struggle; "a fight broke out at the hockey game"; "there was fighting in the streets"; "the unhappy couple got into a terrible scrap"
+39929,fighter fighter_aircraft attack_aircraft,a high-speed military or naval airplane designed to destroy enemy aircraft in the air
+39930,fighter_pilot,a military or naval pilot of fighter planes
+39931,fighting_chair,a fixed chair from which a saltwater angler can fight a hooked fish
+39932,figment,a contrived or fantastic idea; "a figment of the imagination"
+39933,figural_blindness,inability to see shapes and contours
+39934,figuration,representing figuratively as by emblem or allegory
+39935,figuration,decorating with a design
+39936,figure,a combination of points and lines and planes that form a visible palpable shape
+39937,figure,an amount of money expressed numerically; "a figure of $17 was suggested"
+39938,figure,a unitary percept having structure and coherence that is the object of attention and that stands out against a ground
+39939,figure,the impression produced by a person; "he cut a fine figure"; "a heroic figure"
+39940,figure,a model of a bodily form (especially of a person); "he made a figure of Santa Claus"
+39941,figure,a predetermined set of movements in dancing or skating; "she made the best score on compulsory figures"
+39942,figure fig,a diagram or picture illustrating textual material; "the area covered can be seen from Figure 2"
+39943,figure_eight,a skating figure that carves an 8 in the ice
+39944,figure_eight figure_8 figure_of_eight,a two-dimensionsal figure having the shape of the number eight
+39945,figure_eight figure_of_eight,a knot having the shape of the numeral 8; tied in a rope that has been passed through a hole or pulley and that prevents the rope from coming loose
+39946,figure_loom figured-fabric_loom,a loom for weaving figured fabrics
+39947,figure_of_merit,a numerical expression representing the efficiency of a given system, material, or procedure
+39948,figure_skate,an ice skate worn for figure skating; has a slightly curved blade and a row of jagged points at the front of the blade
+39949,figure_skating,ice skating where the skates trace outlines of selected figures
+39950,figured_bass basso_continuo continuo thorough_bass,a bass part written out in full and accompanied by numbers to indicate the chords to be played
+39951,figurehead,figure on the bow of some sailing vessels
+39952,figurine statuette,a small carved or molded figure
+39953,figwort,any of numerous tall coarse woodland plants of the genus Scrophularia
+39954,filaggrin,the main protein of the keratohyalin granules; "the specific target of the immune response in rheumatoid arthritis is filaggrin"
+39955,filament,the stalk of a stamen
+39956,filament,a thin wire (usually tungsten) that is heated white hot by the passage of an electric current
+39957,filament filum,a threadlike structure (as a chainlike series of cells)
+39958,filaria,slender threadlike roundworms living in the blood and tissues of vertebrates; transmitted as larvae by biting insects
+39959,filariasis,a disease caused by nematodes in the blood or tissues of the body causing blockage of lymphatic vessels
+39960,filature,a bobbin used in spinning silk into thread
+39961,file,a steel hand tool with small sharp teeth on some or all of its surfaces; used for smoothing wood or metal
+39962,file data_file,a set of related records (either written or electronic) kept together
+39963,file file_cabinet filing_cabinet,office furniture consisting of a container for keeping papers in order
+39964,file single_file Indian_file,a line of persons or things ranged one behind the other
+39965,file_allocation_table,the part of a floppy disk or hard disk where information is stored about the location of each piece of information on the disk (and about the location of unusable areas of the disk)
+39966,file_clerk filing_clerk filer,a clerk who is employed to maintain the files of an organization
+39967,file_folder,folder that holds papers together in a filing cabinet
+39968,file_server,(computer science) a digital computer that provides workstations on a network with controlled access to shared resources
+39969,file_system filing_system,a system of classifying into files (usually arranged alphabetically)
+39970,file_transfer_protocol FTP,protocol that allows users to copy files between their local system and any system they can reach on the network
+39971,filefish,narrow flattened warm-water fishes with leathery skin and a long file-like dorsal spine
+39972,filename file_name computer_filename computer_file_name,(computer science) the name given to a computer file in order to distinguish it from other files; may contain an extension that indicates the type of file
+39973,filer,a party who files a notice with a law court
+39974,filet,lace having a square mesh
+39975,filet_mignon,small steak cut from the thick end of a beef tenderloin
+39976,filial_duty,duty of a child to its parents
+39977,filial_love,the love of a child for a parent
+39978,filibuster,(law) a tactic for delaying or obstructing legislation by making long speeches
+39979,filibuster filibusterer,a legislator who gives long speeches in an effort to delay or obstruct legislation that he (or she) opposes
+39980,filicide,a parent who murders his own son or daughter
+39981,filicide,the murder of your own son or daughter
+39982,filigree filagree fillagree,delicate and intricate ornamentation (usually in gold or silver or other fine twisted wire)
+39983,filing,a fragment rubbed off by the use of a file
+39984,filing,the entering of a legal document into the public record; "he filed a complaint"; "he filed his tax return"
+39985,filing,the act of using a file (as in shaping or smoothing an object)
+39986,filing,preservation and methodical arrangement as of documents and papers etc.; "I have some filing to do"
+39987,fill,a quantity sufficient to satisfy; "he ate his fill of potatoes"; "she had heard her fill of gossip"
+39988,filler,used for filling cracks or holes in a surface
+39989,filler,100 filler equal 1 forint in Hungary
+39990,filler,copy to fill space between more important articles in the layout of a magazine or newspaper
+39991,filler,the tobacco used to form the core of a cigar
+39992,fillet filet,a boneless steak cut from the tenderloin of beef
+39993,fillet filet fish_fillet fish_filet,a longitudinal slice or boned side of a fish
+39994,fillet stopping,fastener consisting of a narrow strip of welded metal used to join steel members
+39995,filling,flow into something (as a container)
+39996,filling,a food mixture used to fill pastry or sandwiches etc.
+39997,filling,(dentistry) a dental appliance consisting of any of various substances (as metal or plastic) inserted into a prepared cavity in a tooth; "when he yawned I could see the gold fillings in his teeth"; "an informal British term for `filling' is `stopping'"
+39998,filling,the act of filling something
+39999,filling fill,any material that fills a space or container; "there was not enough fill for the trench"
+40000,filly,a young female horse under the age of four
+40001,film,a thin coating or layer; "the table was covered with a film of dust"
+40002,film cinema celluloid,a medium that disseminates moving pictures; "theater pieces transferred to celluloid"; "this story would be good cinema"; "film coverage of sporting events"
+40003,film photographic_film,photographic material consisting of a base of celluloid covered with a photographic emulsion; used to make negatives or transparencies
+40004,film plastic_film,a thin sheet of (usually plastic and usually transparent) material used to wrap or cover things
+40005,film_advance,a mechanism for advancing film in a camera or projector
+40006,film_clip,a strip of motion picture film used in a telecast
+40007,film_company,a company that makes, advertises, and distributes movies
+40008,film_director director,the person who directs the making of a film
+40009,film_editing cutting,the activity of selecting the scenes to be shown and putting them together to create a film
+40010,film_festival,a cinematic festival that features films (usually films produced during the past year)
+40011,film_industry movie_industry,the entertainment industries involved in producing and distributing movies
+40012,film_maker filmmaker film_producer movie_maker,a producer of motion pictures
+40013,film_noir,a movie that is marked by a mood of pessimism, fatalism, menace, and cynical characters; "film noir was applied by French critics to describe American thriller or detective films in the 1940s"
+40014,film_star movie_star,a star who plays leading roles in the cinema
+40015,filmdom screenland screen,the personnel of the film industry; "a star of stage and screen"
+40016,filming cinematography motion-picture_photography,the act of making a film
+40017,filmy_fern film_fern,any fern of the genus Hymenophyllum growing in tropical humid regions and having translucent leaves
+40018,filovirus,animal viruses belonging to the family Filoviridae
+40019,fils,a fractional monetary unit in Bahrain and Iraq and Jordan and Kuwait; equal to one thousandth of a dinar
+40020,filter,an electrical device that alters the frequency spectrum of signals passing through it
+40021,filter,device that removes something from whatever passes through it
+40022,filter-tipped_cigarette,a cigarette with a filter tip
+40023,filter_bed,filter consisting of a layer of sand or gravel for filtering water
+40024,filter_paper,a porous unsized paper used for filtering
+40025,filter_tip,an air filter on the end of a cigarette; contains material that filters the smoke
+40026,filth crud skank,any substance considered disgustingly foul or unpleasant
+40027,filth filthiness foulness nastiness,a state characterized by foul or disgusting dirt and refuse
+40028,filthiness,moral corruption or pollution; "this deformity and filthiness of sin"
+40029,filthy_lucre,shameful profit; "he would sell his soul for filthy lucre"
+40030,filtrate,the product of filtration; a gas or liquid that has been passed through a filter
+40031,filtration,the process whereby fluids pass through a filter or a filtering medium
+40032,filtration,the act of changing a fluid by passing it through a filter
+40033,filtration_surgery,eye surgery that opens a passage allowing excess aqueous humor to drain into surrounding tissues; a treatment for glaucoma
+40034,fimbria,thin projections forming a fringe (especially around the ovarian end of the Fallopian tube)
+40035,fin,a stabilizer on a ship that resembles the fin of a fish
+40036,fin,organ of locomotion and balance in fishes and some other aquatic animals
+40037,fin_de_siecle,the end of a century, especially the 19th century
+40038,fin_keel,a metal plate projecting from the keel of a shallow vessel to give it greater lateral stability
+40039,finagler wangler,a deceiver who uses crafty misleading methods
+40040,final,the final match between the winners of all previous matches in an elimination tournament
+40041,final_cause,(philosophy) the end or purpose of a thing or process
+40042,final_cut,the final edited version of a movie as approved by the director and producer
+40043,final_examination final_exam final,an examination administered at the end of an academic term
+40044,final_judgment final_decision,a judgment disposing of the case before the court; after the judgment (or an appeal from it) is rendered all that remains is to enforce the judgment
+40045,final_period,the final division into which the play of a game is divided
+40046,finale close closing_curtain finis,the concluding part of any performance
+40047,finale coda,the closing section of a musical composition
+40048,finalist,a contestant who reaches the final stages of a competition
+40049,finality conclusiveness decisiveness,the quality of being final or definitely settled; "the finality of death"
+40050,finalization finalisation,the act of finalizing
+40051,finance,the branch of economics that studies the management of money and other assets
+40052,finance,the management of money and credit and banking and investments
+40053,finance,the commercial activity of providing funds and capital
+40054,finance_committee,a committee appointed to consider financial issues
+40055,finance_company,a financial institution (often affiliated with a holding company or manufacturer) that makes loans to individuals or businesses
+40056,finance_minister minister_of_finance,the minister responsible for state finances
+40057,financial_analyst securities_analyst,an analyst who studies the financial performance of corporations
+40058,financial_audit,an attestation that the client's financial statement is accurate
+40059,financial_center,the part of a city where financial institutions are centered
+40060,financial_condition,the condition of (corporate or personal) finances
+40061,financial_forecast,a forecast of the expected financial position and the results of operations and cash flows based on expected conditions
+40062,financial_gain,the amount of monetary gain
+40063,financial_institution financial_organization financial_organisation,an institution (public or private) that collects funds (from the public or other institutions) and invests them in financial assets
+40064,financial_loss,loss of money or decrease in financial value
+40065,financier moneyman,a person skilled in large scale financial transactions
+40066,financing funding,the act of financing
+40067,finback finback_whale fin_whale common_rorqual Balaenoptera_physalus,large flat-headed whalebone whale having deep furrows along the throat; of Atlantic and Pacific
+40068,finch,any of numerous small songbirds with short stout bills adapted for crushing seeds
+40069,finder,someone who comes upon something after searching
+40070,finder discoverer spotter,someone who is the first to observe something
+40071,finder viewfinder view_finder,optical device that helps a user to find the target of interest
+40072,finder's_fee,a fee that is paid to someone who finds a source of financial backing or to someone who brings people together for business purposes; "the agency got a finder's fee when their candidate was hired as the new CEO"
+40073,finding,something that is found; "the findings in the gastrointestinal tract indicate that he died several hours after dinner"; "an area rich in archaeological findings"
+40074,finding,the decision of a court on issues of fact or law
+40075,finding_of_law conclusion_of_law,a finding as to the applicability of a rule of law to particular facts
+40076,findings,a collection of tools and other articles used by an artisan to make jewelry or clothing or shoes
+40077,fine mulct amercement,money extracted as a penalty
+40078,fine-tooth_comb fine-toothed_comb,a comb with teeth set close together
+40079,fine-tooth_comb fine-toothed_comb,a method of examining in minute detail; "he went over the contract with a fine-tooth comb looking for loopholes"
+40080,fine_arts beaux_arts,the study and creation of visual works of art
+40081,fine_print small_print,the part of a contract that contains reservations and qualifications that are often printed in small type; "don't sign a contract without reading the fine print"
+40082,fine_spray,precipitation in very small drops
+40083,fine_structure,the presence of groups of closely spaced spectrum lines observed in the atomic spectrum of certain elements; "the fine structure results from slightly different energy levels"
+40084,fineness choiceness,the quality of being very good indeed; "the inn is distinguished by the fineness of its cuisine"
+40085,fineness powderiness,having a very fine texture; "the fineness of the sand on the beach"
+40086,fineness thinness,the property of being very narrow or thin; "he marvelled at the fineness of her hair"
+40087,finery,elaborate or showy attire and accessories
+40088,fines_herbes,a mixture of finely chopped fresh herbs; "an omelet flavored with fines herbes"
+40089,finger,any of the terminal members of the hand (sometimes excepting the thumb); "her fingers were long and thin"
+40090,finger,one of the parts of a glove that provides covering for a finger or thumb
+40091,finger fingerbreadth finger's_breadth digit,the length of breadth of a finger used as a linear measure
+40092,finger-painting,a painting produced by spreading paint with the fingers
+40093,finger-painting,painting by using the fingers to spread the paint
+40094,finger-pointing fingerpointing,the imputation of blame; "they want all the finger-pointing about intelligence failures to stop"
+40095,finger-roll,a basketball shot that rolls off the tips of the fingers into the basket
+40096,finger_bowl,small bowl for rinsing the fingers at table
+40097,finger_food,food to be eaten with the fingers
+40098,finger_grass,any grass of the genus Chloris; occurs in short grassland especially on waste ground or poor soils
+40099,finger_hole,one of a series of holes in a woodwind instrument; pitch changes when a finger covers it
+40100,finger_hole,a hole for inserting a finger
+40101,finger_millet ragi ragee African_millet coracan corakan kurakkan Eleusine_coracana,East Indian cereal grass whose seed yield a somewhat bitter flour, a staple in the Orient
+40102,finger_paint fingerpaint,paint that has the consistency of jelly
+40103,finger_plate escutcheon scutcheon,a flat protective covering (on a door or wall etc) to prevent soiling by dirty fingers
+40104,finger_scan finger_scanning,biometric identification by automatically scanning a person's fingerprints electronically
+40105,finger_spelling fingerspelling,an alphabet of manual signs
+40106,finger_wave,a wave made with the fingers
+40107,fingerboard,a narrow strip of wood on the neck of some stringed instruments (violin or cello or guitar etc) where the strings are held against the wood with the fingers
+40108,fingering,the placement of the fingers for playing different notes (or sequences of notes) on a musical instrument
+40109,fingering,touching something with the fingers
+40110,fingerling,a young or small fish
+40111,fingermark fingerprint,a smudge made by a (dirty) finger
+40112,fingernail,the nail at the end of a finger
+40113,fingerpost fingerboard,a guidepost resembling a hand with a pointing index finger
+40114,fingerprint,a generic term for any identifying characteristic; "that tax bill had the senator's fingerprints all over it"
+40115,fingerprint,a print made by an impression of the ridges in the skin of a finger; often used for biometric identification in criminal investigations
+40116,fingerprint_expert fingerprint_specialist fingerprint_man,a specialist in identifying fingerprints
+40117,fingerprinting,the procedure of taking inked impressions of a person's fingerprints for the purpose of identification
+40118,fingerstall cot,a sheath worn to protect a finger
+40119,fingertip,the end (tip) of a finger
+40120,finial,an ornament at the top of a spire or gable; usually a foliated fleur-de-lis
+40121,finish,designated event that concludes a contest (especially a race); "excitement grew as the finish neared"; "my horse was several lengths behind at the finish"; "the winner is the team with the most points at the finish"
+40122,finish,the downfall of someone (as of persons on one side of a conflict); "booze will be the finish of him"; "it was a fight to the finish"
+40123,finish,(wine tasting) the taste of a wine on the back of the tongue (as it is swallowed); "the wine has a nutty flavor and a pleasant finish"
+40124,finish destination goal,the place designated as the end (as of a race or journey); "a crowd assembled at the finish"; "he was nearly exhausted as their destination came into view"
+40125,finish finishing,the act of finishing; "his best finish in a major tournament was third"; "the speaker's finishing was greeted with applause"
+40126,finish_coat finishing_coat,the final coating of (eg., paint, plaster, varnish, etc.); "we can't paint until they put on the finishing coat"
+40127,finisher,a racing driver who finishes a race
+40128,finisher,a painter who applies a finishing coat
+40129,finisher,a worker who performs the last step in a manufacturing process
+40130,finisher,a race car that finishes a race
+40131,finisher,an animal that wins in a contest of speed
+40132,finishing_line finish_line,a line indicating the location of the finish of a race
+40133,finishing_school,a private school for girls that emphasizes training in cultural and social activities
+40134,finishing_touch capstone copestone,a final touch; a crowning achievement; a culmination
+40135,finiteness finitude boundedness,the quality of being finite
+40136,fink snitch snitcher stoolpigeon stool_pigeon stoolie sneak sneaker canary,someone acting as an informer or decoy for the police
+40137,finnan_haddie finnan_haddock finnan smoked_haddock,haddock usually baked but sometimes broiled with lots of butter
+40138,fipple,a wooden plug forming a flue pipe (as the mouthpiece of a recorder)
+40139,fipple_flute fipple_pipe recorder vertical_flute,a tubular wind instrument with 8 finger holes and a fipple mouthpiece
+40140,fir,nonresinous wood of a fir tree
+40141,fir fir_tree true_fir,any of various evergreen trees of the genus Abies; chiefly of upland areas
+40142,fir_clubmoss mountain_clubmoss little_clubmoss Lycopodium_selago,of northern Europe and America; resembling a miniature fir
+40143,fir_cone,the seed-producing cone of a fir tree
+40144,fire,once thought to be one of four elements composing the universe (Empedocles)
+40145,fire,fuel that is burning and is used as a means for cooking; "put the kettle on the fire"; "barbecue over an open fire"
+40146,fire,a severe trial; "he went through fire and damnation"
+40147,fire,the event of something burning (often destructive); "they lost everything in the fire"
+40148,fire,a fireplace in which a relatively small fire is burning; "they sat by the fire and talked"
+40149,fire attack flak flack blast,intense adverse criticism; "Clinton directed his fire at the Republican Party"; "the government has come under attack"; "don't give me any flak"
+40150,fire firing,the act of firing weapons or artillery at an enemy; "hold your fire until you can see the whites of their eyes"; "they retreated in the face of withering enemy fire"
+40151,fire flame flaming,the process of combustion of inflammable materials producing heat and light and (often) smoke; "fire was one of our ancestors' first discoveries"
+40152,fire-bellied_toad Bombina_bombina,toad of central and eastern Europe having red or orange patches mixed with black on its underside
+40153,fire-eater fire-swallower,a performer who pretends to swallow fire
+40154,fire-eater hothead,a belligerent grouch
+40155,fire-on-the-mountain painted_leaf Mexican_fire_plant Euphorbia_cyathophora,poinsettia of United States and eastern Mexico; often confused with Euphorbia heterophylla
+40156,fire_alarm,a shout or bell to warn that fire has broken out
+40157,fire_alarm smoke_alarm,an alarm that is tripped off by fire or smoke
+40158,fire_and_brimstone,(Old Testament) God's means of destroying sinners; "his sermons were full of fire and brimstone"
+40159,fire_ant,omnivorous ant of tropical and subtropical America that can inflict a painful sting
+40160,fire_bell,a bell rung to give a fire alarm
+40161,fire_blight pear_blight,a disease blackening the leaves of pear and apple trees
+40162,fire_brigade,British name for a fire department
+40163,fire_brigade fire_company,a private or temporary organization of individuals equipped to fight fires
+40164,fire_chief fire_marshal,the head of a fire department
+40165,fire_code,set of standards established and enforced by government for fire prevention and safety in case of fire as in fire escapes etc
+40166,fire_control,preparation for the delivery of shellfire on a target
+40167,fire_control_radar,naval radar that controls the delivery of fire on a military target
+40168,fire_control_system,naval weaponry consisting of a system for controlling the delivery of fire on a military target
+40169,fire_department,the department of local government responsible for preventing and extinguishing fires
+40170,fire_door,a fire-resistant door that can be closed to stop the spread of a fire
+40171,fire_drill,an exercise intended to train people in duties and escape procedures to be followed in case of fire
+40172,fire_engine fire_truck,any of various large trucks that carry firemen and equipment to the site of a fire
+40173,fire_escape emergency_exit,a stairway (often on the outside of a building) that permits exit in the case of fire or other emergency
+40174,fire_extinguisher extinguisher asphyxiator,a manually operated device for extinguishing small fires
+40175,fire_hose,a large hose that carries water from a fire hydrant to the site of the fire
+40176,fire_insurance,insurance against loss due to fire
+40177,fire_iron,metal fireside implements
+40178,fire_marshall,an official who is responsible for the prevention and investigation of fires
+40179,fire_opal girasol,an opal with flaming orange and yellow and red colors
+40180,fire_pink Silene_virginica,perennial herb of eastern North America, having red flowers with narrow notched petals
+40181,fire_pit,a pit whose floor is incandescent lava; "the fire pit of the crater"
+40182,fire_sale,a sale of assets at very low prices typically when the seller faces bankruptcy
+40183,fire_sale,a sale of merchandise supposedly damaged by fire
+40184,fire_screen fireguard,a metal screen before an open fire for protection (especially against flying sparks)
+40185,fire_ship,a weapon consisting of a ship carrying explosives that is set adrift to destroy enemy ships
+40186,fire_station firehouse,a station housing fire apparatus and firemen
+40187,fire_tongs coal_tongs,tongs for taking hold of burning coals
+40188,fire_tower,a watchtower where a lookout is posted to watch for fires
+40189,fire_trench,a trench especially constructed for the delivery of small-arms fire
+40190,fire_walker,someone who walks barefoot on burning coals
+40191,fire_walking,the ceremony of walking barefoot over hot stones or a bed of embers
+40192,fire_warden forest_fire_fighter ranger,an official who is responsible for managing and protecting an area of forest
+40193,fire_watcher,(during World War II in Britain) someone whose duty was to watch for fires caused by bombs dropped from the air
+40194,fire_watching,(during World War II in Britain) watching for fires started by bombs that dropped from the sky
+40195,firearm piece small-arm,a portable gun; "he wore his firearm in a shoulder holster"
+40196,fireball,a ball of fire (such as the sun or a ball-shaped discharge of lightning)
+40197,fireball,the luminous center of a nuclear explosion
+40198,firebase,an artillery base to support advancing troops
+40199,fireboat,a boat equipped to fight fires on ships or along a waterfront
+40200,firebox,a furnace (as on a steam locomotive) in which fuel is burned
+40201,firebrat Thermobia_domestica,lives in warm moist areas e.g. around furnaces
+40202,firebreak fireguard,a narrow field that has been cleared to check the spread of a prairie fire or forest fire
+40203,firebrick,brick made of fire clay; used for lining e.g. furnaces and chimneys
+40204,firebug,a true bug: brightly colored bug that can exude a stain
+40205,fireclay,a heat-resistant clay
+40206,firecracker cracker banger,firework consisting of a small explosive charge and fuse in a heavy paper casing
+40207,firedamp,a mixture of gases (mostly methane) that form in coal mines and become explosive when mixed with air
+40208,firefly fire_beetle Pyrophorus_noctiluca,tropical American click beetle having bright luminous spots
+40209,firefly lightning_bug,nocturnal beetle common in warm regions having luminescent abdominal organs
+40210,firelight,the light of a fire (especially in a fireplace)
+40211,firelighter,(a piece of) a substance that burns easily and can be used to start a coal or coke fire
+40212,fireman,play in which children pretend to put out a fire
+40213,fireman firefighter fire_fighter fire-eater,a member of a fire department who tries to extinguish fires
+40214,fireman's_ax fireman's_axe,an ax that has a long handle and a head with one cutting edge and a point on the other side
+40215,fireman's_carry,the act of carrying a person over your shoulder
+40216,fireplace hearth open_fireplace,an open recess in a wall at the base of a chimney where a fire can be built; "the fireplace was so large you could walk inside it"; "he laid a fire in the hearth and lit it"; "the hearth was black with the charcoal of many fires"
+40217,fireplug fire_hydrant plug,an upright hydrant for drawing water to use in fighting a fire
+40218,firepower,(military) the relative capacity for delivering fire on a target
+40219,firestone,a piece of flint that is struck to light a fire
+40220,firestone,a sandstone that withstands intense heat; used to line fireplaces and furnaces and kilns
+40221,firestorm,a storm in which violent winds are drawn into the column of hot air rising over a severely bombed area
+40222,firestorm,an outburst of controversy; "the incident triggered a political firestorm"
+40223,firetrap,a building that would be hard to escape from if it were to catch fire
+40224,firewall,(computing) a security system consisting of a combination of hardware and software that limits the exposure of a computer or computer network to attack from crackers; commonly used on local area networks that are connected to the internet
+40225,firewall,a fireproof (or fire-resistant) wall designed to prevent the spread of fire through a building or a vehicle
+40226,firewall,(colloquial) the application of maximum thrust; "he moved the throttle to the firewall"
+40227,firewater,any strong spirits (such as strong whisky or rum)
+40228,fireweed Erechtites_hieracifolia,an American weedy plant with small white or greenish flowers
+40229,fireweed giant_willowherb rosebay_willowherb wickup Epilobium_angustifolium,tall North American perennial with creeping rootstocks and narrow leaves and spikes of pinkish-purple flowers occurring in great abundance in burned-over areas or recent clearings; an important honey plant
+40230,firewood,wood used for fuel; "they collected and cut their own firewood"
+40231,firework pyrotechnic,(usually plural) a device with an explosive that burns at a low rate and with colored flames; can be used to illuminate areas or send signals etc.
+40232,firing_chamber gun_chamber,chamber that is the part of a gun that receives the charge
+40233,firing_line,the line from which soldiers deliver fire
+40234,firing_line,the most advanced and responsible group in an activity; "the firing line is where the action is"
+40235,firing_pin,striker that ignites the charge by striking the primer
+40236,firing_range target_range,a practice range for target practice
+40237,firing_squad firing_party,a squad formed to fire volleys at a military funeral or to carry out a military execution
+40238,firkin,a British unit of capacity equal to 9 imperial gallons
+40239,firkin,a small wooden keg
+40240,firm house business_firm,the members of a business organization that owns or operates one or more establishments; "he worked for a brokerage house"
+40241,firm_omelet,eggs beaten with milk or cream and cooked until set
+40242,firmer_chisel,a chisel with a thin blade for woodworking
+40243,firmness,the property of being unyielding to the touch
+40244,firmness soundness,the muscle tone of healthy tissue; "his muscular firmness"
+40245,firmware microcode,(computer science) coded instructions that are stored permanently in read-only memory
+40246,first first-class_honours_degree,an honours degree of the highest class
+40247,first number_one,the first or highest in an ordering or series; "He wanted to be the first"
+40248,first number_one number_1,the first element in a countable series; "the first of the month"
+40249,first-aid_kit,kit consisting of a set of bandages and medicines for giving first aid
+40250,first-aid_station,a station providing emergency care or treatment before regular medical aid can be obtained
+40251,first-degree_burn,burn causing redness of the skin surface
+40252,first-nighter,someone habitually a spectator at the openings of theatrical productions
+40253,first-order_correlation,a partial correlation in which the effects of only one variable are removed (held constant)
+40254,first-place_finish,a finish in first place (as in a race)
+40255,first-rater,one who is first-rate
+40256,first_aid,emergency care given before regular medical aid can be obtained
+40257,first_base,the base that must be touched first by a base runner in baseball
+40258,first_base,the initial stage in accomplishing something; "we didn't get to first base with that approach"
+40259,first_base first,the fielding position of the player on a baseball team who is stationed at first of the bases in the infield (counting counterclockwise from home plate)
+40260,first_baseman first_sacker,(baseball) the person who plays first base
+40261,first_blush,at the first glimpse or impression; "at first blush the idea possesses considerable intuitive appeal but on closer examination it fails"
+40262,first_cause prime_mover primum_mobile,an agent that is the cause of all things but does not itself have a cause; "God is the first cause"
+40263,first_class,the highest rank in a classification
+40264,first_class,the most expensive accommodations on a ship or train or plane
+40265,first_class 1st_class first-class_mail 1st-class_mail,mail that includes letters and postcards and packages sealed against inspection
+40266,first_degree,a degree of one; "all of the terms in a linear equation are of the first degree"
+40267,first_estate Lords_Spiritual,the clergy in France and the heads of the church in Britain
+40268,first_gear first low_gear low,the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving
+40269,first_half,the first of two halves of play
+40270,first_in_first_out FIFO,inventory accounting in which the oldest items (those first acquired) are assumed to be the first sold
+40271,first_lady,the leading woman in an art or profession
+40272,first_lady,the wife of a chief executive
+40273,first_law_of_motion Newton's_first_law_of_motion Newton's_first_law,a body remains at rest or in motion with a constant velocity unless acted upon by an external force
+40274,first_lieutenant 1st_lieutenant,a commissioned officer in the Army or Air Force or Marines ranking above a 2nd lieutenant and below a captain
+40275,first_mortgage,a mortgage that has priority over all mortgages and liens except those imposed by law
+40276,first_name given_name forename,the name that precedes the surname
+40277,first_offender,someone convicted for the first time
+40278,first_period,the first division into which the play of a game is divided
+40279,first_person,pronouns and verbs used to refer to the speaker or writer of the language in which they occur
+40280,first_quarter,the first fourth of the Moon's period of revolution around the Earth
+40281,first_reading,the first presentation of a bill in a legislature
+40282,first_sergeant sergeant_first_class,a sergeant in the Army above the rank of staff sergeant and below master sergeant
+40283,first_step initiative opening_move opening,the first of a series of actions
+40284,first_strike,the initial use of nuclear weapons to attack a country that also has nuclear weapons; considered feasible only when the attacker can destroy the other country's ability to retaliate; "the Pakistani president promised no first strike against India"
+40285,first_trimester,time period extending from the first day of the last menstrual period through 12 weeks of gestation
+40286,first_water,the highest quality gems
+40287,firstborn eldest,the offspring who came first in the order of birth
+40288,firth,a long narrow estuary (especially in Scotland)
+40289,fisc,a state treasury or exchequer or a royal treasury; originally the public treasury of Rome or the emperor's private purse
+40290,fiscal_policy,a government policy for dealing with the budget (especially with taxation and borrowing)
+40291,fiscal_year financial_year,any accounting period of 12 months
+40292,fish,the flesh of fish used as food; "in Japan most fish is eaten raw"; "after the scare about foot-and-mouth disease a lot of people started eating fish instead of meat"; "they have a chef who specializes in fish"
+40293,fish,any of various mostly cold-blooded aquatic vertebrates usually having scales and breathing through gills; "the shark is a large fish"; "in the living room there was a tank of colorful fish"
+40294,fish-liver_oil fish_oil,a fatty oil obtained from the livers of various fish
+40295,fish_and_chips,fried fish and french-fried potatoes
+40296,fish_cake fish_ball,a fried ball or patty of flaked fish and mashed potatoes
+40297,fish_chowder,chowder containing fish
+40298,fish_doctor Gymnelis_viridis,brightly colored scaleless Arctic eelpout
+40299,fish_family,any of various families of fish
+40300,fish_farm,a workplace (usually a pond) where fish are raised for food
+40301,fish_fly fish-fly,similar to but smaller than the dobsonfly; larvae are used as fishing bait
+40302,fish_fry,a cookout where fried fish is the main course
+40303,fish_genus,any of various genus of fish
+40304,fish_geranium bedding_geranium zonal_pelargonium Pelargonium_hortorum,an upright geranium having scalloped leaves with a broad color zone inside the margin and white or pink or red flowers
+40305,fish_glue,gelatinous substance obtained by boiling skins fins and bones of fish
+40306,fish_house_punch,a punch made of rum and brandy and water or tea sweetened with sugar syrup
+40307,fish_joint,a butt joint formed by bolting fish plates to the sides of two rails or beams
+40308,fish_knife,a small table knife with a spatula blade used for eating fish
+40309,fish_ladder,a series of ascending pools providing a passage for salmon to swim upstream past a dam
+40310,fish_loaf,flaked fish baked in a loaf with bread crumbs and various seasonings
+40311,fish_louse,a kind of copepod
+40312,fish_meal,ground dried fish used as fertilizer and as feed for domestic livestock
+40313,fish_mousse,mousse made with fish
+40314,fish_scale,scale of the kind that covers the bodies of fish
+40315,fish_slice,a food turner with a broad blade used for turning or serving fish or other food that is cooked in a frying pan
+40316,fish_species,a species of fish
+40317,fish_steak,cross-section slice of a large fish
+40318,fish_stew,a stew made with fish
+40319,fish_stick fish_finger,a long fillet of fish breaded and fried
+40320,fishbone,a bone of a fish
+40321,fishbowl fish_bowl goldfish_bowl,a transparent bowl in which small fish are kept
+40322,fisher pekan fisher_cat black_cat Martes_pennanti,large dark brown North American arboreal carnivorous mammal
+40323,fisherman fisher,someone whose occupation is catching fish
+40324,fisherman's_bend,a knot for tying a line to a spar or ring
+40325,fisherman's_knot true_lover's_knot truelove_knot,a knot for tying the ends of two lines together
+40326,fisherman's_lure fish_lure,(angling) any bright artificial bait consisting of plastic or metal mounted with hooks and trimmed with feathers
+40327,fishery piscary,a workplace where fish are caught and processed and sold
+40328,fishhook,a sharp barbed hook for catching fish
+40329,fishing,the occupation of catching fish for a living
+40330,fishing sportfishing,the act of someone who fishes as a diversion
+40331,fishing_boat fishing_smack fishing_vessel,a vessel for fishing; often has a well to keep the catch alive
+40332,fishing_eagle Haliaeetus_leucorhyphus,of southeast Europe and central Asia
+40333,fishing_expedition,an investigation undertaken in the hope (but not the stated purpose) of discovering information
+40334,fishing_gear tackle fishing_tackle fishing_rig rig,gear used in fishing
+40335,fishing_license fishing_licence fishing_permit,a license authorizing the bearer to fish during a specified period of time
+40336,fishing_line,a length of cord to which the leader and float and sinker and hook are attached
+40337,fishing_rod fishing_pole,a rod of wood or steel or fiberglass that is used in fishing to extend the fishing line
+40338,fishing_season,the season during which it is legal to catch fish
+40339,fishmonger fishwife,someone who sells fish
+40340,fishnet fishing_net,a net that will enclose fish when it is pulled in
+40341,fishpaste,a paste of fish or shellfish
+40342,fishplate,metal plate bolted along sides of two rails or beams
+40343,fishpole_bamboo gosan-chiku hotei-chiku Phyllostachys_aurea,small bamboo of southeastern China having slender culms flexuous when young
+40344,fishpond,a freshwater pond with fish
+40345,fishtail_bit blade_bit,a drilling bit with cutting edges usually hardened against wear
+40346,fishtail_palm,attractive East Indian palm having distinctive bipinnate foliage
+40347,fission,reproduction of some unicellular organisms by division of the cell into two more or less equal parts
+40348,fission nuclear_fission,a nuclear reaction in which a massive nucleus splits into smaller nuclei with the simultaneous release of energy
+40349,fissiparity,reproduction of some multicellular organisms by division, as in the case of some starfish
+40350,fissiparity,the tendency to break into parts; "the fissiparity of religious sects"
+40351,fissiped_mammal fissiped,terrestrial carnivores; having toes separated to the base: dogs; cats; bears; badgers; raccoons
+40352,fissure,(anatomy) a long narrow slit or groove that divides an organ into lobes
+40353,fissure_of_Rolando Rolando's_fissure central_sulcus sulcus_centralis,a brain fissure extending upward on the lateral surface of both hemispheres; separates the frontal and parietal lobes
+40354,fissure_of_Sylvius Sylvian_fissure lateral_cerebral_sulcus sulcus_lateralis_cerebri,the deepest and most prominent of the cortical fissures; separates the frontal lobes and temporal lobes in both hemispheres
+40355,fist clenched_fist,a hand with the fingers clenched in the palm (as for hitting)
+40356,fistfight fisticuffs slugfest,a fight with bare fists
+40357,fistmele,about seven inches; the breadth of a fist with the thumb stuck out (used especially in archery to give the correct distance of the string from the bow)
+40358,fistula sinus,an abnormal passage leading from a suppurating cavity to the body surface
+40359,fistulous_withers fistula,a chronic inflammation of the withers of a horse
+40360,fit,the manner in which something fits; "I admired the fit of her coat"
+40361,fit tantrum scene conniption,a display of bad temper; "he had a fit"; "she threw a tantrum"; "he made a scene"
+40362,fitfulness jerkiness,the quality of being spasmodic and irregular
+40363,fitment,any of the items furnishing or equipping a room (especially built-in furniture); "she liked the kitchen fitments"
+40364,fitness,the quality of being qualified
+40365,fitness fittingness,the quality of being suitable; "they had to prove their fitness for the position"
+40366,fitness physical_fitness,good physical condition; being in shape or in condition
+40367,fits_and_starts,repeated bursts of activity; "they worked in fits and starts"
+40368,fitted_sheet contour_sheet,a sheet (usually with elastic edges) tailored to fit a particular mattress
+40369,fitter,someone who fits a garment to a particular person
+40370,fitting,a small and often standardized accessory to a larger system
+40371,fitting try-on trying_on,putting clothes on to see whether they fit
+40372,five 5 V cinque quint quintet fivesome quintuplet pentad fin Phoebe Little_Phoebe,the cardinal number that is the sum of four and one
+40373,five-hitter 5-hitter,a game in which a pitcher allows the opposing team 5 hits
+40374,five-point_bishop's_cap Mitella_pentandra,small plant with leaves in a basal cluster and tiny greenish flowers in slender racemes; northwestern North America to California and Colorado
+40375,five-spot Nemophila_maculata,California annual having white flowers with a deep purple blotch on each petal
+40376,five-spot five,a playing card or a domino or a die whose upward face shows five pips
+40377,five_hundred 500 D,the cardinal number that is the product of one hundred and five
+40378,five_spice_powder,Chinese seasoning made by grinding star anise and fennel and pepper and cloves and cinnamon
+40379,fivepence,a coin worth five cents
+40380,fiver five-spot five_dollar_bill,a United States bill worth 5 dollars
+40381,fives,a game resembling handball; played on a court with a front wall and two side walls
+40382,fix,something craved, especially an intravenous injection of a narcotic drug; "she needed a fix of chocolate"
+40383,fix,an exemption granted after influence (e.g., money) is brought to bear; "collusion resulted in tax fixes for gamblers"
+40384,fix hole jam mess muddle pickle kettle_of_fish,informal terms for a difficult situation; "he got into a terrible fix"; "he made a muddle of his marriage"
+40385,fixation,the activity of fastening something firmly in position
+40386,fixation fixing,(histology) the preservation and hardening of a tissue sample to retain as nearly as possible the same relations they had in the living body
+40387,fixative,a compound (such as ethanol or formaldehyde) that fixes tissues and cells for microscopic study
+40388,fixative,a varnish dissolved in alcohol and sprayed over pictures to prevent smudging
+40389,fixed-combination_drug,drug containing fixed amounts of two or more ingredients
+40390,fixed-cycle_operation,an operation that is completed in a specified number of regularly timed execution cycles
+40391,fixed-point_notation fixed-point_representation_system,a radix numeration system in which the location of the decimal point is fixed by convention
+40392,fixed-point_number,a number represented in fixed-point notation
+40393,fixed_charge fixed_cost fixed_costs,a periodic charge that does not vary with business volume (as insurance or rent or mortgage payments etc.)
+40394,fixed_intonation,the intonation of keyboard instruments where the pitch of each note is fixed and cannot be varied by the performer
+40395,fixed_oil fatty_oil,nonvolatile animal or plant oil
+40396,fixed_phagocyte,a phagocyte that does not circulate in the blood but is fixed in the liver or spleen or bone marrow etc.
+40397,fixed_star,any star in the Ptolemaic theory of planetary motion
+40398,fixedness unalterability,the quality of being fixed and unchangeable; "the fixedness of his gaze upset her"
+40399,fixer influence_peddler,someone who intervenes with authorities for a person in trouble (usually using underhand or illegal methods for a fee)
+40400,fixer-upper,a house or other dwelling in need of repair (usually offered for sale at a low price)
+40401,fixing_agent fixer,a chemical compound that sets or fixes something (as a dye or a photographic image)
+40402,fixings trimmings,the accessories that normally accompany (something or some activity); "an elaborate formal dinner with all the fixings"; "he bought a Christmas tree and trimmings to decorate it"
+40403,fixture,an object firmly fixed in place (especially in a household)
+40404,fizgig,a firework that fizzes as it moves
+40405,fizz,an effervescent beverage (usually alcoholic)
+40406,fjord fiord,a long narrow inlet of the sea between steep cliffs; common in Norway
+40407,flab,loose or flaccid body fat
+40408,flabbiness limpness flaccidity,a flabby softness
+40409,flaccid_bladder,a urinary bladder disorder resulting from interruption of the reflex arc normally associated with voiding urine; absence of bladder sensation and over-filling of the bladder and inability to urinate voluntarily
+40410,flaccid_paralysis,weakness or loss of muscle tone resulting from injury or disease of the nerves innervating the muscles
+40411,flag,emblem usually consisting of a rectangular piece of cloth of distinctive design
+40412,flag,a conspicuously marked or shaped tail
+40413,flag flagstone,stratified stone that splits into pieces suitable as paving stones
+40414,flag signal_flag,a rectangular piece of fabric used as a signalling device
+40415,flag_captain,the captain of a flagship
+40416,flag_officer,a senior naval officer above the rank of captain
+40417,flag_rank,the rank of a flag officer
+40418,flag_smut,smut affecting leaves and stems of cereals and other grasses
+40419,flag_smut_fungus,a smut fungus causing a smut in cereals and other grasses that chiefly affects leaves and stems and is characterized chains of sori within the plant tissue that later rupture releasing black masses of spores
+40420,flag_waving jingoism,an appeal intended to arouse patriotic emotions
+40421,flagellant,a person who is whipped or whips himself for sexual gratification
+40422,flagellant,a person who whips himself as a religious penance
+40423,flagellate flagellate_protozoan flagellated_protozoan mastigophoran mastigophore,a usually nonphotosynthetic free-living protozoan with whiplike appendages; some are pathogens of humans and other animals
+40424,flagellated_cell,any cell or one-celled organism equipped with a flagellum
+40425,flagellation,beating as a source of erotic or religious stimulation
+40426,flagellum,a lash-like appendage used for locomotion (e.g., in sperm cells and some bacteria and protozoa)
+40427,flageolet haricot,a French bean variety with light-colored seeds; usually dried
+40428,flageolet treble_recorder shepherd's_pipe,a small fipple flute with four finger holes and two thumb holes
+40429,flagfish American_flagfish Jordanella_floridae,a fish with a dark-blue back and whitish sides with red stripes; found in swamps and streams of Florida
+40430,flagging,flagstones collectively; "there was a pile of flagging waiting to be laid in place"
+40431,flagging,a walk of flagstones; "the flagging in the garden was quite imaginative"
+40432,flagon,a large metal or pottery vessel with a handle and spout; used to hold alcoholic beverages (usually wine)
+40433,flagpole flagstaff,a tall staff or pole on which a flag is raised
+40434,flagship,the chief one of a related group; "it is their flagship newspaper"
+40435,flagship,the ship that carries the commander of a fleet and flies his flag
+40436,flail,an implement consisting of handle with a free swinging stick at the end; used in manual threshing
+40437,flair genius,a natural talent; "he has a flair for mathematics"; "he has a genius for interior decorating"
+40438,flak_catcher flak flack_catcher flack,a slick spokesperson who can turn any criticism to the advantage of their employer
+40439,flakiness,having or breaking into thin crisp flakes
+40440,flambeau,a flaming torch (such as are used in processions at night)
+40441,flamboyance floridness floridity showiness,extravagant elaborateness; "he wrote with great flamboyance"
+40442,flame-out,the failure of a jet engine caused by an interruption of the fuel supply or by faulty combustion
+40443,flame-out,a complete or conspicuous failure; "the spectacular flame-out of the company's stock cost many people their life savings"
+40444,flame_cell,organ of excretion in flatworms
+40445,flame_fish flamefish Apogon_maculatus,a cardinalfish found in tropical Atlantic coastal waters
+40446,flame_flower flame-flower flameflower Talinum_aurantiacum,plant with fleshy roots and erect stems with narrow succulent leaves and one reddish-orange flower in each upper leaf axil; southwestern United States; Indians once cooked the fleshy roots
+40447,flame_pea,any of several small shrubs or twining vines having entire or lobed leaves and racemes of yellow to orange-red flowers; Australia
+40448,flame_tokay,purplish-red table grape
+40449,flame_tree broad-leaved_bottletree Brachychiton_australis,north Australian tree having white flowers and broad leaves
+40450,flame_tree fire_tree Christmas_tree Nuytsia_floribunda,a terrestrial evergreen shrub or small tree of western Australia having brilliant yellow-orange flowers; parasitic on roots of grasses
+40451,flame_tree flame_durrajong Brachychiton_acerifolius Sterculia_acerifolia,south Australian tree having panicles of brilliant scarlet flowers
+40452,flamen,a priest who served a particular deity in ancient Rome
+40453,flamenco,guitar music composed for dancing the flamenco
+40454,flamenco gypsy_dancing,a style of dancing characteristic of the Andalusian Gypsies; vigorous and rhythmic with clapping and stamping of feet
+40455,flamethrower,a weapon that squirts ignited fuel for several yards
+40456,flamingo,large pink to scarlet web-footed wading bird with down-bent bill; inhabits brackish lakes
+40457,flamingo_flower flamingo_plant Anthurium_andraeanum Anthurium_scherzerianum,commonly cultivated anthurium having bright scarlet spathe and spadix
+40458,flammability inflammability,the quality of being easily ignited and burning rapidly
+40459,flan,open pastry filled with fruit or custard
+40460,flange rim,a projection used for strength or for attaching to another object
+40461,flank,a subfigure consisting of a side of something
+40462,flank,a cut from the fleshy part of an animal's side between the ribs and the leg
+40463,flank,the side between ribs and hipbone
+40464,flank wing,the side of military or naval formation; "they attacked the enemy's right flank"
+40465,flank_steak,a cut of beef from the flank of the animal
+40466,flanker,a soldier who is a member of a detachment assigned to guard the flanks of a military formation
+40467,flanker_back flanker,a back stationed wide of the scrimmage line; used as a pass receiver
+40468,flannel,a soft light woolen fabric; used for clothing
+40469,flannel gabardine tweed white,(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth
+40470,flannelbush flannel_bush California_beauty,any of several handsome evergreen shrubs of California and northern Mexico having downy lobed leaves and showy yellow flowers
+40471,flannelette,a cotton fabric imitating flannel
+40472,flap,a movable piece of tissue partly connected to the body
+40473,flap,any broad thin and limber covering attached at one edge; hangs loose or projects freely; "he wrote on the flap of the envelope"
+40474,flap flapping flutter fluttering,the motion made by flapping up and down
+40475,flap flaps,a movable airfoil that is part of an aircraft wing; used to increase lift or drag
+40476,flapper,a young woman in the 1920s who flaunted her unconventional conduct and dress
+40477,flare,reddening of the skin spreading outward from a focus of infection or irritation
+40478,flare,a sudden recurrence or worsening of symptoms; "a colitis flare"; "infection can cause a lupus flare"
+40479,flare,a sudden burst of flame
+40480,flare,am unwanted reflection in an optical system (or the fogging of an image that is caused by such a reflection)
+40481,flare,a sudden outburst of emotion; "she felt a flare of delight"; "she could not control her flare of rage"
+40482,flare,a device that produces a bright light for warning or illumination or identification
+40483,flare,(baseball) a fly ball hit a short distance into the outfield
+40484,flare flair,a shape that spreads outward; "the skirt had a wide flare"
+40485,flare flash,a burst of light used to communicate or illuminate
+40486,flare_pass flare,a short forward pass to a back who is running toward the sidelines; "he threw a flare to the fullback who was tackled for a loss"
+40487,flare_path,an airstrip outline with lights to guide an airplane pilot in landing
+40488,flare_star,a red dwarf star in which luminosity can change several magnitudes in a few minutes
+40489,flash,a sudden intense burst of radiant energy
+40490,flash,a sudden brilliant understanding; "he had a flash of intuition"
+40491,flash,a momentary brightness
+40492,flash,a bright patch of color used for decoration or identification; "red flashes adorned the airplane"; "a flash sewn on his sleeve indicated the unit he belonged to"
+40493,flash flashing,a short vivid experience; "a flash of emotion swept over him"; "the flashings of pain were a warning"
+40494,flash photoflash flash_lamp flashgun flashbulb flash_bulb,a lamp for providing momentary light to take a photograph
+40495,flash-forward,a transition (in literary or theatrical works or films) to a later event or scene that interrupts the normal chronological development of the story
+40496,flash_camera,a camera with a photoflash attachment
+40497,flash_card flashcard,a card with words or numbers or pictures that is flashed to a class by the teacher
+40498,flash_flood flashflood,a sudden local flood of great volume and short duration
+40499,flash_in_the_pan,someone who enjoys transient success but then fails
+40500,flash_memory,nonvolatile storage that can be electrically erased and programmed anew
+40501,flash_point flashpoint,point at which something is ready to blow up
+40502,flash_point flashpoint,the lowest temperature at which the vapor of a combustible liquid can be ignited in air
+40503,flash_welding flash_butt_welding,butt welding by creating an electric arc between the two pieces which melts and joins them; used for joining segments of metal pipe
+40504,flashback,an unexpected but vivid recurrence of a past experience (especially a recurrence of the effects of an hallucinogenic drug taken much earlier)
+40505,flashback,a transition (in literary or theatrical works or films) to an earlier event or scene that interrupts the normal chronological development of the story
+40506,flashboard flashboarding,boarding place along the top of a dam to increase its height
+40507,flasher,an electrical device that automatically turns a lamp on and off (as for an advertising display)
+40508,flashiness garishness gaudiness loudness brashness meretriciousness tawdriness glitz,tasteless showiness
+40509,flashing,sheet metal shaped and attached to a roof for strength and weatherproofing
+40510,flashlight torch,a small portable battery-powered electric lamp
+40511,flashlight_battery,a small dry battery containing dry cells; used to power flashlights
+40512,flashlight_fish Photoblepharon_palpebratus,fish of deep dark waters having a light organ below each eye
+40513,flashover,an unintended electric discharge (as over or around an insulator)
+40514,flask,bottle that has a narrow neck
+40515,flask flaskful,the quantity a flask will hold
+40516,flat,a level tract of land; "the salt flats of Utah"
+40517,flat,a musical notation indicating one half step lower than the note named
+40518,flat,a shallow box in which seedlings are started
+40519,flat,scenery consisting of a wooden frame covered with painted canvas; part of a stage setting
+40520,flat flat_tire,a deflated pneumatic tire
+40521,flat-coated_retriever,an English breed having a shiny black or liver-colored coat; retrieves game from land or water
+40522,flat-topped_white_aster,a variety of aster
+40523,flat_arch straight_arch,an arch with mutually supporting voussoirs that has a straight horizontal extrados and intrados
+40524,flat_bench,a bench on which a weightlifter lies to do exercises
+40525,flat_bone,part of the sirloin next to the wedge bone
+40526,flat_coat ground primer priming primer_coat priming_coat undercoat,the first or preliminary coat of paint or size applied to a surface
+40527,flat_file,a file with two flat surfaces
+40528,flat_panel_display FPD,a type of video display that is thin and flat; commonly used in laptop computers
+40529,flat_pea Platylobium_formosum,evergreen shrub having almost heart-shaped foliage and bright yellow pea-like flowers followed by flat pods with flat wings; Australia and Tasmania
+40530,flat_pea narrow-leaved_everlasting_pea Lathyrus_sylvestris,European perennial with mottled flowers of purple and pink; sometimes cultivated for fodder or as green manure
+40531,flat_tip_screwdriver,a screwdriver with a flat wedge-shaped tip that fits into a slot in the head of a screw
+40532,flatbed,an open truck bed or trailer with no sides; used to carry large heavy objects
+40533,flatbed_press cylinder_press,a printing press where the type is carried on a flat bed under a cylinder that holds paper and rolls over the type
+40534,flatbread,any of various breads made from usually unleavened dough
+40535,flatbrod,the thin wafer-like bread of Scandinavia
+40536,flatcar flatbed flat,freight car without permanent sides or roof
+40537,flatfish,sweet lean whitish flesh of any of numerous thin-bodied fish; usually served as thin fillets
+40538,flatfish,any of several families of fishes having flattened bodies that swim along the sea floor on one side of the body with both eyes on the upper side
+40539,flatfoot patrolman,a policeman who patrols a given region
+40540,flatfoot splayfoot pes_planus,a foot afflicted with a fallen arch; abnormally flattened and spread out
+40541,flathead,food fish of the Indonesian region of the Pacific; resembles gurnards
+40542,flathead,pallid bottom-dwelling flat-headed fish with large eyes and a duck-like snout
+40543,flathead_catfish mudcat goujon shovelnose_catfish spoonbill_catfish Pylodictus_olivaris,large catfish of central United States having a flattened head and projecting jaw
+40544,flatiron,an iron that was heated by placing it on a stove
+40545,flatlet,a tiny flat
+40546,flatmate,an associate who shares an apartment with you
+40547,flatness,a want of animation or brilliance; "the almost self-conscious flatness of Hemingway's style"
+40548,flatness,a deficiency in flavor; "it needed lemon juice to sharpen the flatness of the dried lentils"
+40549,flatness lusterlessness lustrelessness mat matt matte,the property of having little or no contrast; lacking highlights or gloss
+40550,flats,footwear (shoes or slippers) with no heel (or a very low heel)
+40551,flatterer adulator,a person who uses flattery
+40552,flattery,excessive or insincere praise
+40553,flatulence flatulency gas,a state of excessive gas in the alimentary canal
+40554,flatware,tableware that is relatively flat and fashioned as a single piece
+40555,flatware silver,silverware eating utensils
+40556,flatwork flat_wash,ironing that can be done mechanically
+40557,flatworm platyhelminth,parasitic or free-living worms having a flattened body
+40558,flaunt,the act of displaying something ostentatiously; "his behavior was an outrageous flaunt"
+40559,flavin,a ketone that forms the nucleus of certain natural yellow pigments like riboflavin
+40560,flavivirus,animal viruses belonging to the family Flaviviridae
+40561,flavone,a colorless crystalline compound that is part of a number of white or yellow plant pigments
+40562,flavonoid,any of a large class of plant pigments having a chemical structure based on or similar to flavone
+40563,flavor flavour,(physics) the six kinds of quarks
+40564,flavorer flavourer flavoring flavouring seasoner seasoning,something added to food primarily for the savor it imparts
+40565,flavorlessness flavourlessness savorlessness savourlessness tastelessness,the property of having no flavor
+40566,flavorsomeness flavoursomeness savoriness,having an appetizing flavor
+40567,flaw,defect or weakness in a person's character; "he had his flaws, but he was great nonetheless"
+40568,flaw,an imperfection in a plan or theory or legal document that causes it to fail or that reduces its effectiveness
+40569,flax,fiber of the flax plant that is made into thread and woven into linen fabric
+40570,flax,plant of the genus Linum that is cultivated for its seeds and for the fibers of its stem
+40571,flax_rust flax_rust_fungus Melampsora_lini,fungus causing flax rust
+40572,flea,any wingless bloodsucking parasitic insect noted for ability to leap
+40573,flea_beetle,any small leaf beetle having enlarged hind legs and capable of jumping
+40574,flea_bite,sting inflicted by a flea
+40575,flea_bite,a very minor inconvenience
+40576,flea_market,an open-air street market for inexpensive or secondhand articles
+40577,fleabag,a run-down hotel
+40578,fleabane,any of several North American plants of the genus Erigeron having daisylike flowers; formerly believed to repel fleas
+40579,fleabane feabane_mullet Pulicaria_dysenterica,hairy perennial Eurasian herb with yellow daisylike flowers reputed to destroy or drive away fleas
+40580,fleapit,an old shabby movie theater
+40581,fleawort psyllium Spanish_psyllium Plantago_psyllium,plantain of Mediterranean regions whose seeds swell and become gelatinous when moist and are used as a mild laxative
+40582,flecainide Tambocor,oral antiarrhythmic medication (trade name Tambocor) used as a last resort in treating arrhythmias; increases the risk of sudden death in heart attack patients
+40583,fledgling fledgeling,young bird that has just fledged or become capable of flying
+40584,fleece,the wool of a sheep or similar animal
+40585,fleece,a soft bulky fabric with deep pile; used chiefly for clothing
+40586,fleer,contempt expressed by mockery in looks or words
+40587,fleet,group of aircraft operating together under the same ownership
+40588,fleet,group of motor vehicles operating together under the same ownership
+40589,fleet,a group of steamships operating together under the same ownership
+40590,fleet,a group of warships organized as a tactical unit
+40591,fleet_admiral five-star_admiral,an admiral of the highest rank
+40592,fleet_ballistic_missile_submarine,a submarine carrying ballistic missiles
+40593,fleetness,rapidity of movement; "fleetness of foot"
+40594,flesh,the soft tissue of the body of a vertebrate: mainly muscle tissue and fat
+40595,flesh_fly Sarcophaga_carnaria,fly whose larvae feed on carrion or the flesh of living animals
+40596,flesh_wound,a wound that does not damage important internal organs or shatter any bones
+40597,fleshiness obesity corpulency,more than average fatness
+40598,fleur-de-lis fleur-de-lys,(heraldry) charge consisting of a conventionalized representation of an iris
+40599,flex,the act of flexing; "he gave his biceps a flex to impress the ladies"
+40600,flexibility flexibleness,the property of being flexible; easily bent or shaped
+40601,flexibility flexibleness,the quality of being adaptable or variable; "he enjoyed the flexibility of his working arrangement"
+40602,flexion flexure,act of bending a joint; especially a joint between the bones of a limb so that the angle between them is decreased
+40603,flexor_muscle flexor,a skeletal muscle whose contraction bends a joint
+40604,flexure flection flexion,the state of being flexed (as of a joint)
+40605,flibbertigibbet foolish_woman,a female fool
+40606,flick,a light sharp contact (usually with something flexible); "he gave it a flick with his finger"; "he felt the flick of a whip"
+40607,flick,a short stroke
+40608,flicker,North American woodpecker
+40609,flicker spark glint,a momentary flash of light
+40610,flickertail Richardson_ground_squirrel Citellus_richardsoni,of sagebrush and grassland areas of western United States and Canada
+40611,flier flyer,someone who travels by air
+40612,flies,(theater) the space over the stage (out of view of the audience) used to store scenery (drop curtains)
+40613,flight,a flock of flying birds
+40614,flight,a formation of aircraft in flight
+40615,flight,an air force unit smaller than a squadron
+40616,flight,passing above and beyond ordinary bounds; "a flight of fancy"; "flights of rhetoric"; "flights of imagination"
+40617,flight,a scheduled trip by plane between designated airports; "I took the noon flight to Chicago"
+40618,flight flight_of_stairs flight_of_steps,a stairway (set of steps) between one floor or landing and the next
+40619,flight flying,an instance of traveling by air; "flying was still an exciting adventure for him"
+40620,flight_control,control from ground stations of airplanes in flight by means of messages transmitted to the pilot electronically
+40621,flight_deck landing_deck,the upper deck of an aircraft carrier; used as a runway
+40622,flight_engineer,the flight crewman responsible for mechanical operation while in flight
+40623,flight_feather pinion quill quill_feather,any of the larger wing or tail feathers of a bird
+40624,flight_line,place where airplanes are parked and the maintenance hangars (but not the runways or taxiways)
+40625,flight_maneuver airplane_maneuver,a maneuver executed by an aircraft
+40626,flight_path,the path of a rocket or projectile or aircraft through the air
+40627,flight_simulator trainer,simulator consisting of a machine on the ground that simulates the conditions of flying a plane
+40628,flight_surgeon,a medical officer specializing in aviation medicine
+40629,flightiness arbitrariness whimsicality whimsy whimsey capriciousness,the trait of acting unpredictably and more from whim or caprice than from reason or judgment; "I despair at the flightiness and whimsicality of my memory"
+40630,flimsiness shoddiness,the property of weakness by virtue of careless construction
+40631,flinders,bits and splinters and fragments; "it would have shattered in flinders long before it did that damage"
+40632,fling,the act of flinging
+40633,flint,a hard kind of stone; a form of silica more opaque than chalcedony
+40634,flint_corn flint_maize Yankee_corn Zea_mays_indurata,corn having kernels with a hard outer layer enclosing the soft endosperm
+40635,flintlock,an obsolete gunlock that has flint embedded in the hammer; the flint makes a spark that ignites the charge
+40636,flintlock firelock,a muzzle loader that had a flintlock type of gunlock
+40637,flintstone,pebbles of flint used in masonry construction
+40638,flip,hot or cold alcoholic mixed drink containing a beaten egg
+40639,flip,a sudden, quick movement; "with a flip of the wrist"; "the fish flipped over"
+40640,flip,a dive in which the diver somersaults before entering the water
+40641,flip toss,the act of flipping a coin
+40642,flip-flop,an electronic circuit that can assume either of two stable states
+40643,flip-flop,a backward somersault
+40644,flip-flop thong,a backless sandal held to the foot by a thong between the big toe and the second toe
+40645,flip_chart,a chart with several sheets hinged at the top; sheets can be flipped over to present information sequentially
+40646,flip_side,a different aspect of something (especially the opposite aspect); "the flip side of your positive qualities sometimes get out of control"; "on the flip side of partnerships he talked about their competition"
+40647,flippancy light-mindedness,inappropriate levity; "her mood changed and she was all lightness and joy"
+40648,flipper,the flat broad limb of aquatic animals specialized for swimming
+40649,flipper fin,a shoe for swimming; the paddle-like front is an aid in swimming (especially underwater)
+40650,flirt flirting flirtation coquetry dalliance toying,playful behavior intended to arouse sexual interest
+40651,flit,a secret move (to avoid paying debts); "they did a moonlight flit"
+40652,flit dart,a sudden quick movement
+40653,flitch,fish steak usually cut from a halibut
+40654,flitch side_of_bacon,salted and cured abdominal wall of a side of pork
+40655,float,the time interval between the deposit of a check in a bank and its payment
+40656,float,the number of shares outstanding and available for trading by the public
+40657,float,an elaborate display mounted on a platform carried by a truck (or pulled by a truck) in a procession or parade
+40658,float,something that floats on the surface of water
+40659,float plasterer's_float,a hand tool with a flat face used for smoothing and finishing the surface of plaster or cement or stucco
+40660,floater,a debt instrument with a variable interest rate tied to some other interest rate (e.g. the rate paid by T-bills)
+40661,floater,an employee who is reassigned from job to job as needed
+40662,floater,a voter who votes illegally at different polling places in the same election
+40663,floater,a swimmer who floats in the water
+40664,floater,an object that floats or is capable of floating
+40665,floater floating_policy,an insurance policy covering loss of movable property (e.g. jewelry) regardless of its location
+40666,floating natation,the act of someone who floats on the water
+40667,floating-moss Salvinia_rotundifolia Salvinia_auriculata,free-floating aquatic ferns
+40668,floating-point_notation floating-point_representation_system,a radix numeration system in which the location of the decimal point is indicated by an exponent of the radix; in the floating-point representation system, 0.0012 is represented as 0.12-2 where -2 is the exponent
+40669,floating-point_number,a number represented in floating-point notation
+40670,floating-point_operation flop,an arithmetic operation performed on floating-point numbers; "this computer can perform a million flops per second"
+40671,floating_dock floating_dry_dock,dry dock that can be submerged under a vessel and then raised
+40672,floating_fern Ceratopteris_thalictroides,pantropical aquatic fern
+40673,floating_fern water_sprite Ceratopteris_pteridioides,aquatic fern of tropical America often used in aquariums
+40674,floating_mine marine_mine,an explosive mine designed to destroy ships that bump into it
+40675,floatplane pontoon_plane,a seaplane equipped with pontoons for landing or taking off from water
+40676,floccose_chanterelle Cantharellus_floccosus,a mildly poisonous fungus with a fruiting body shaped like a hollow trumpet
+40677,flocculation,the process of flocculating; forming woolly cloudlike aggregations
+40678,floccule floc,a small loosely aggregated mass of flocculent material suspended in or precipitated from a liquid
+40679,flock,a church congregation guided by a pastor
+40680,flock,a group of birds
+40681,flock fold,a group of sheep or goats
+40682,flogger scourger,a torturer who flogs or scourges (especially an official whose duty is to whip offenders)
+40683,flood floodlight flood_lamp photoflood,light that is a source of artificial illumination having a broad beam; used in photography
+40684,flood flowage,the act of flooding; filling to overflowing
+40685,flood inundation deluge alluvion,the rising of a body of water and its overflowing onto normally dry land; "plains fertilized by annual inundations"
+40686,flood inundation deluge torrent,an overwhelming number or amount; "a flood of requests"; "a torrent of abuse"
+40687,flood overflow outpouring,a large flow
+40688,flood_control,(engineering) the art or technique of trying to control rivers with dams etc in order to minimize the occurrence of floods
+40689,flood_tide flood rising_tide,the occurrence of incoming water (between a low tide and the following high tide); "a tide in the affairs of men which, taken at the flood, leads on to fortune" -Shakespeare
+40690,flooded_gum,any of several Australian gum trees growing on moist or alluvial soil
+40691,floodgate,something that restrains a flood or outpouring; "suspension of surveillance opened the floodgates to illegal immigrants"
+40692,floodhead,a wall of water rushing ahead of the flood; "we were lucky to be safe when the floodheads hit"
+40693,floodplain flood_plain,a low plain adjacent to a river that is formed chiefly of river sediment and is subject to flooding
+40694,floor,the lower inside surface of any hollow structure; "the floor of the pelvis"; "the floor of the cave"
+40695,floor,the ground on which people and animals move about; "the fire spared the forest floor"
+40696,floor,the bottom surface of any lake or other body of water
+40697,floor,the occupants of a floor; "the whole floor complained about the lack of heat"
+40698,floor,the parliamentary right to address an assembly; "the chairman granted him the floor"
+40699,floor,the legislative hall where members debate and vote and conduct other business; "there was a motion from the floor"
+40700,floor base,a lower limit; "the government established a wage floor"
+40701,floor flooring,the inside lower horizontal surface (as of a room, hallway, tent, or other structure); "they needed rugs to cover the bare floors"; "we spread our sleeping bags on the dry floor of the tent"
+40702,floor level storey story,a structure consisting of a room or set of rooms at a single position along a vertical scale; "what level is the office on?"
+40703,floor trading_floor,a large room in a exchange where the trading is done; "he is a floor trader"
+40704,floor_cover floor_covering,a covering for a floor
+40705,floor_joist,joist that supports a floor
+40706,floor_lamp,a lamp that stands on the floor
+40707,floor_leader,the legislator who organizes his party's strategy
+40708,floor_plan,scale drawing of a horizontal section through a building at a given level; contrasts with elevation
+40709,floor_wax,a preparation containing wax and used to polish and preserve the finish of floors
+40710,floorboard,the floor of an automobile
+40711,floorboard floor_board,a board in the floor
+40712,flooring,building material used in laying floors
+40713,floorwalker shopwalker,an employee of a retail store who supervises sales personnel and helps with customer problems; "a floorwalker is called a shopwalker in Britain"
+40714,flop bust fizzle,a complete failure; "the play was a dismal flop"
+40715,flop collapse,the act of throwing yourself down; "he landed on the bed with a great flop"
+40716,flop dud washout,someone who is unsuccessful
+40717,flophouse dosshouse,a cheap lodging house
+40718,floral_leaf,a modified leaf that is part of a flower
+40719,florest's_cineraria Pericallis_hybrida,herb derived from Pericallis cruenta and widely cultivated in a variety of profusely flowering forms with florets from white to pink to red or purple or violet or blue
+40720,floret floweret,a diminutive flower (especially one that is part of a composite flower)
+40721,florida_selaginella Selaginella_eatonii,occurs widely in Florida
+40722,florilegium garland miscellany,an anthology of short literary pieces and poems and ballads etc.
+40723,florist,someone who grows and deals in flowers; "the florist made up an attractive bouquet"
+40724,florist florist_shop flower_store,a shop where flowers and ornamental plants are sold
+40725,florist's_chrysanthemum florists'_chrysanthemum mum Dendranthema_grandifloruom Chrysanthemum_morifolium,of China
+40726,florist's_gloxinia Sinningia_speciosa Gloxinia_spesiosa,South American herb cultivated in many varieties as a houseplant for its large handsome leaves and large variously colored bell-shaped flowers
+40727,floss,a soft loosely twisted thread used in embroidery
+40728,flotation floatation,the phenomenon of floating (remaining on the surface of a liquid without sinking)
+40729,flotation floatation,financing a commercial enterprise by bond or stock shares
+40730,flotilla,a United States Navy fleet consisting of two or more squadrons of small warships
+40731,flotilla,a fleet of small craft
+40732,flotsam jetsam,the floating wreckage of a ship
+40733,flounce,the act of walking with exaggerated jerky motions
+40734,flounder,flesh of any of various American and European flatfish
+40735,flounder,any of various European and non-European marine flatfish
+40736,flour,fine powdery foodstuff obtained by grinding and sifting the meal of a cereal grain
+40737,flour_beetle flour_weevil,an insect that infests flour and stored grains
+40738,flour_bin,a bin for holding flour
+40739,flour_mill,a mill for grinding grain into flour
+40740,flourish,an ornamental embellishment in writing
+40741,flourish,a showy gesture; "she entered with a great flourish"
+40742,flourish,a display of ornamental speech or language
+40743,flourish brandish,the act of waving
+40744,flourish fanfare tucket,(music) a short lively tune played on brass instruments; "he entered to a flourish of trumpets"; "her arrival was greeted with a rousing fanfare"
+40745,flow,any uninterrupted stream or discharge
+40746,flow flow_rate rate_of_flow,the amount of fluid that flows in a given time
+40747,flow flowing,the motion characteristic of fluids (liquids or gases)
+40748,flow stream,the act of flowing or streaming; continuous progression
+40749,flow_chart flowchart flow_diagram flow_sheet,a diagram of the sequence of operations in a computer program or an accounting system
+40750,flowage,gradual internal motion or deformation of a solid body (as by heat); "rock fracture and rock flowage are different types of geological deformation"
+40751,flowage,a body of water that has been created by deliberately flooding an area; "many campsites were located near the flowage"
+40752,flower,a plant cultivated for its blooms or blossoms
+40753,flower bloom blossom,reproductive organ of angiosperm plants especially one having showy or colorful parts
+40754,flower prime peak heyday bloom blossom efflorescence flush,the period of greatest prosperity or productivity
+40755,flower-of-an-hour flowers-of-an-hour bladder_ketmia black-eyed_Susan Hibiscus_trionum,annual weedy herb with ephemeral yellow purple-eyed flowers; Old World tropics; naturalized as a weed in North America
+40756,flower_arrangement floral_arrangement,a decorative arrangement of flowers
+40757,flower_bud,a bud from which only a flower or flowers develop
+40758,flower_chain,flowers strung together in a chain
+40759,flower_cluster,an inflorescence consisting of a cluster of flowers
+40760,flower_garden,a garden featuring flowering plants
+40761,flower_gardening floriculture,the cultivation of flowering plants
+40762,flower_girl,a woman who sells flowers in the street
+40763,flower_girl,a young girl who carries flowers in a (wedding) procession
+40764,flower_head,a shortened compact cluster of flowers so arranged that the whole gives the effect of a single flower as in clover or members of the family Compositae
+40765,flower_people hippies hipsters,a youth subculture (mostly from the middle class) originating in San Francisco in the 1960s; advocated universal love and peace and communes and long hair and soft drugs; favored acid rock and progressive rock music
+40766,flower_power,a counterculture of young people in the US during the 1960s and 70s
+40767,flowerbed flower_bed bed_of_flowers,a bed in which flowers are growing
+40768,flowering_almond Prunus_triloba,deciduous Chinese shrub or small tree with often trilobed leaves grown for its pink-white flowers
+40769,flowering_almond oriental_bush_cherry Prunus_japonica,woody oriental plant with smooth unfurrowed red fruit grown especially for its white or pale pink blossoms
+40770,flowering_ash Fraxinus_cuspidata,shrubby ash of southwestern United States having fragrant white flowers
+40771,flowering_ash Fraxinus_dipetala,shrubby California ash with showy off-white flowers
+40772,flowering_cherry,any of several shrubs or trees of the genus Prunus cultivated for their showy white or pink single or double blossoms
+40773,flowering_fern Helminthostachys_zeylanica,Australasian fern with clusters of sporangia on stems of fertile fronds
+40774,flowering_fern osmund,any fern of the genus Osmunda: large ferns with creeping rhizomes; naked sporangia are on modified fronds that resemble flower clusters
+40775,flowering_maple,an ornamental plant of the genus Abutilon having leaves that resemble maple leaves
+40776,flowering_quince,Asiatic ornamental shrub with spiny branches and pink or red blossoms
+40777,flowering_raspberry purple-flowering_raspberry Rubus_odoratus thimbleberry,shrubby raspberry of eastern North America having showy rose to purplish flowers and red or orange thimble-shaped fruit
+40778,flowering_shrub,shrub noted primarily for its flowers
+40779,flowering_tobacco Jasmine_tobacco Nicotiana_alata,South American ornamental perennial having nocturnally fragrant greenish-white flowers
+40780,flowering_wintergreen gaywings bird-on-the-wing fringed_polygala Polygala_paucifolia,common trailing perennial milkwort of eastern North America having leaves like wintergreen and usually rosy-purple flowers with winged sepals
+40781,floxuridine,antineoplastic drug used to treat some cancers; can cause loss of hair
+40782,fluctuation,a wave motion; "the fluctuations of the sea"
+40783,fluctuation wavering,the quality of being unsteady and subject to changes; "he kept a record of price fluctuations"
+40784,flue,a conduit to carry off smoke
+40785,flue_pipe flue labial_pipe,organ pipe whose tone is produced by air passing across the sharp edge of a fissure or lip
+40786,flue_stop,an organ stop with the tone of a flue pipe
+40787,fluency,skillfulness in speaking or writing
+40788,fluency volubility articulateness,the quality of being facile in speech and writing
+40789,fluff,any light downy material
+40790,fluff,a blunder (especially an actor's forgetting the lines)
+40791,fluffy_omelet,souffle-like omelet made by beating and adding the whites separately
+40792,flugelhorn fluegelhorn,a brass instrument resembling a cornet but with a wider bore
+40793,fluid,a substance that is fluid at room temperature and pressure
+40794,fluid,continuous amorphous matter that tends to flow and to conform to the outline of its container: a liquid or a gas
+40795,fluid_drive,an automotive power coupling
+40796,fluid_flywheel,a kind of fluid coupling in which the flywheel is the driving rotor
+40797,fluid_mechanics hydraulics,study of the mechanics of fluids
+40798,fluidity fluidness,a changeable quality; "a charming Oriental fluidity of manner"; "a certain fluidness in his perception of time made him an unpredictable colleague"; "demographers try to predict social fluidity"
+40799,fluidity fluidness liquidity liquidness runniness,the property of flowing easily; "adding lead makes the alloy easier to cast because the melting point is reduced and the fluidity is increased"; "they believe that fluidity increases as the water gets warmer"
+40800,fluidounce fluid_ounce,a British imperial unit of capacity or volume (liquid or dry) equal to 8 fluid drams or 28.416 cubic centimeters (1.734 cubic inches)
+40801,fluidounce fluid_ounce,a United States unit of capacity or volume equal to 1.804 cubic inches
+40802,fluidram fluid_dram fluid_drachm drachm,a British imperial capacity measure (liquid or dry) equal to 60 minims or 3.5516 cubic centimeters
+40803,fluidram fluid_dram fluid_drachm drachm,a unit of capacity or volume in the apothecary system equal to one eighth of a fluid ounce
+40804,fluke,a barb on a harpoon or arrow
+40805,fluke,either of the two lobes of the tail of a cetacean
+40806,fluke flue,flat bladelike projection on the arm of an anchor
+40807,fluke trematode trematode_worm,parasitic flatworms having external suckers for attaching to a host
+40808,flume,watercourse that consists of an open artificial chute filled with water for power or for carrying logs
+40809,flummery,a bland custard or pudding especially of oatmeal
+40810,flunitrazepan Rohypnol,a depressant and tranquilizer (trade name Rohypnol) often used in the commission of sexual assault; legally available in Europe and Mexico and Colombia
+40811,flunky flunkey stooge yes-man,a person of unquestioning obedience
+40812,fluorapatite,a form of apatite in which fluorine predominates over chlorine
+40813,fluorescein fluoresceine fluorescent_dye resorcinolphthalein,a yellow dye that is visible even when highly diluted; used as an absorption indicator when silver nitrate solution is added to sodium chloride in order to precipitate silver chloride (turns pink when no chloride ions are left in solution and negative fluorescein ions are then absorbed)
+40814,fluorescein_isothiocyanate fluorescein_isocyanate,a fluorochrome commonly conjugated with antibodies for use in indirect immunofluorescence
+40815,fluorescence,light emitted during absorption of radiation of some other (invisible) wavelength
+40816,fluorescence_microscopy,light microscopy in which the specimen is irradiated at wavelengths that excite fluorochromes
+40817,fluorescent fluorescent_fixture,a lighting fixture that uses a fluorescent lamp
+40818,fluorescent_lamp,lamp consisting of a tube coated on the inside with a fluorescent material; mercury vapor in the tube emits ultraviolet radiation that is converted to visible radiation by the fluorescent material
+40819,fluoridation fluoridization fluoridisation,the addition of a fluoride to the water supply (to prevent dental decay)
+40820,fluoride,a salt of hydrofluoric acid
+40821,fluorine F atomic_number_9,a nonmetallic univalent element belonging to the halogens; usually a yellow irritating toxic flammable gas; a powerful oxidizing agent; recovered from fluorite or cryolite or fluorapatite
+40822,fluorite fluorspar fluor,a soft mineral (calcium fluoride) that is fluorescent in ultraviolet light; chief source of fluorine
+40823,fluoroboric_acid,an acid of fluorine and boron
+40824,fluoroboride,a salt of fluoroboric acid
+40825,fluorocarbon,a halocarbon in which some hydrogen atoms have been replaced by fluorine; used in refrigerators and aerosols
+40826,fluorocarbon_plastic,a plastic made with fluorocarbon
+40827,fluorochrome,any of various fluorescent substances used in fluorescence microscopy to stain specimens
+40828,fluoroform trifluoromethane,colorless gas haloform CHF3 (similar to chloroform)
+40829,fluoroscope roentgenoscope,an X-ray machine that combines an X-ray source and a fluorescent screen to enable direct observation
+40830,fluoroscopy,examination of body structures using a fluoroscope
+40831,fluorosis,a pathological condition resulting from an excessive intake of fluorine (usually from drinking water)
+40832,fluorouracil,an antimetabolite used to treat certain cancers
+40833,fluosilicate,salt of fluosilicic acid
+40834,fluosilicic_acid hydrofluosilicic_acid,an unstable poisonous corrosive acid known primarily in the form of its salts
+40835,fluoxetine fluoxetine_hydrocholoride Prozac Sarafem,a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade names Prozac or Sarafem); it is thought to work by increasing the activity of serotonin in the brain
+40836,fluphenazine,tranquilizer used to treat psychotic disorders
+40837,flurazepam flurazepam_hydrochloride Dalmane,tranquilizer (trade name Dalmane) used to treat insomnia
+40838,flurbiprofen Ansaid,a nonsteroidal anti-inflammatory drug (trade name Ansaid) that is administered only orally
+40839,flurry snow_flurry,a light brief snowfall and gust of wind (or something resembling that); "he had to close the window against the flurries"; "there was a flurry of chicken feathers"
+40840,flush,a poker hand with all 5 cards in the same suit
+40841,flush gush outpouring,a sudden rapid flow (as of water); "he heard the flush of a toilet"; "there was a little gush of blood"; "she attacked him with an outpouring of words"
+40842,flush_toilet lavatory,a toilet that is cleaned of waste by the flow of water through it
+40843,flushless_toilet,a toilet that relies on bacteria to break down waste matter (instead of using water)
+40844,flute flute_glass champagne_flute,a tall narrow wineglass
+40845,flute fluting,a groove or furrow in cloth etc (particularly a shallow concave groove on the shaft of a column)
+40846,flute transverse_flute,a high-pitched woodwind instrument; a slender tube closed at one end with finger holes on one end and an opening near the closed end across which the breath is blown
+40847,flutist flautist flute_player,someone who plays the flute
+40848,flutter,abnormally rapid beating of the auricles of the heart (especially in a regular rhythm); can result in heart block
+40849,flutter_kick,a swimming kick; the legs are moved rapidly up and down without bending the knees
+40850,fluvastatin Lescol,least expensive statin drug (trade name Lescol); usually taken orally at bedtime
+40851,flux,the rate of flow of energy or particles across a given surface
+40852,flux,a substance added to molten metals to bond with impurities that can then be readily removed
+40853,flux,excessive discharge of liquid from a cavity or organ (as in watery diarrhea)
+40854,flux,in constant change; "his opinions are in flux"; "the newness and flux of the computer industry"
+40855,flux fluxion,a flow or discharge
+40856,flux state_of_flux,a state of uncertainty about what should be done (usually following some important event) preceding the establishment of a new direction of action; "the flux following the death of the emperor"
+40857,flux_applicator,an applicator for applying flux (as in soldering)
+40858,flux_density flux,(physics) the number of changes in energy flow across a given surface per unit area
+40859,flux_density_unit,a measure of the amount of flux per unit of cross sectional area
+40860,flux_unit magnetic_flux_unit,a measure of the strength of a magnetic field per unit area
+40861,fluxmeter,meter that measures magnetic flux by the current it generates in a coil
+40862,fly,fisherman's lure consisting of a fishhook decorated to look like an insect
+40863,fly,two-winged insects characterized by active flight
+40864,fly fly_ball,(baseball) a hit that flies up in the air
+40865,fly fly_front,an opening in a garment that is closed by a zipper or by buttons concealed under a fold of cloth
+40866,fly-by-night,a debtor who flees to avoid paying
+40867,fly-fishing,angling with an artificial fly as a lure
+40868,fly_agaric Amanita_muscaria,poisonous (but rarely fatal) woodland fungus having a scarlet cap with white warts and white gills
+40869,fly_ash,fine solid particles of ash that are carried into the air when fuel is combusted
+40870,fly_casting,casting an artificial fly as a lure
+40871,fly_gallery fly_floor,a narrow raised platform at the side of a stage in a theater; stagehands can work the ropes controlling equipment in the flies
+40872,fly_in_the_ointment,an inconvenience that detracts from the usefulness of something
+40873,fly_orchid,any of several dwarf creeping orchids with small bizarre insect-like hairy flowers on slender stalks
+40874,fly_orchid Ophrys_insectifera Ophrys_muscifera,European orchid whose flowers resemble flies
+40875,fly_poison Amianthum_muscaetoxicum Amianthum_muscitoxicum,all parts of plant are highly toxic; bulb pounded and used as a fly poison; sometimes placed in subfamily Melanthiaceae
+40876,fly_rod,a long flexible fishing rod used in fly fishing
+40877,fly_tent,a tent with a fly front
+40878,flycatching_warbler,any of numerous American wood warblers that feed on insects caught on the wing
+40879,flying_boat,a large seaplane that floats with its fuselage in the water rather than on pontoons
+40880,flying_bridge flybridge fly_bridge monkey_bridge,the highest navigational bridge on a ship; a small (often open) deck above the pilot house
+40881,flying_buttress arc-boutant,a buttress that stands apart from the main structure and connected to it by an arch
+40882,flying_carpet,(Asian folktale) an imaginary carpet that will fly people anywhere they wish to go
+40883,flying_colors flying_colours,complete success; "they passed inspection with flying colors"
+40884,flying_fish,tropical marine fishes having enlarged winglike fins used for brief gliding flight
+40885,flying_fox,large bat with a head that resembles the head of a fox
+40886,flying_gecko fringed_gecko Ptychozoon_homalocephalum,a gecko that has membranous expansions along the sides of its body and limbs and tail that enable it to glide short distances
+40887,flying_gurnard flying_robin butterflyfish,tropical fish with huge fanlike pectoral fins for underwater gliding; unrelated to searobins
+40888,flying_jib,the outermost of two or more jibs
+40889,flying_lemur flying_cat colugo,arboreal nocturnal mammal of southeast Asia and the Philippines resembling a lemur and having a fold of skin on each side from neck to tail that is used for long gliding leaps
+40890,flying_mare,a wrestling maneuver
+40891,flying_mouse,tiny flying phalanger
+40892,flying_phalanger flying_opossum flying_squirrel,nocturnal phalangers that move with gliding leaps using parachute-like folds of skin along the sides of the body
+40893,flying_school,a school for teaching students to fly airplanes
+40894,flying_squad,a mobile group of trained people (police or executives or officials) able to move quickly in the case of emergencies
+40895,flying_start running_start,a racing start in which the contestants are already in full motion when they pass the starting line
+40896,flying_start running_start,a quick and auspicious beginning
+40897,flying_visit,a visit that last for only a very short time; "he wanted to hear all about my flying visit to his old stamping grounds"
+40898,flyleaf,a blank leaf in the front or back of a book
+40899,flyover fly-by flypast,a flight at a low altitude (usually of military aircraft) over spectators on the ground
+40900,flypaper,paper that is poisoned or coated with a sticky substance to kill flies
+40901,flyspeck,a tiny dark speck made by the excrement of a fly
+40902,flytrap,a trap for catching flies
+40903,flyweight,weighs no more than 115 pounds
+40904,flyweight,an amateur boxer who weighs no more than 112 pounds
+40905,flywheel,regulator consisting of a heavy wheel that stores kinetic energy and smooths the operation of a reciprocating engine
+40906,foal,a young horse
+40907,foam,a lightweight material in cellular form; made by introducing gas bubbles during manufacture
+40908,foam froth,a mass of small bubbles formed in or on a liquid; "the beer had a thick head of foam"
+40909,foam_rubber,spongy rubber; made by introducing air bubbles before vulcanization and used for cushioning or upholstery
+40910,foamflower coolwart false_miterwort false_mitrewort Tiarella_cordifolia,stoloniferous white-flowered spring-blooming woodland plant
+40911,foaminess,the property of being foamy
+40912,fob,an adornment that hangs from a watch chain
+40913,fob watch_chain watch_guard,short chain or ribbon attaching a pocket watch to a man's vest
+40914,fob watch_pocket,a vest pocket to hold a pocket watch
+40915,focal_distance focal_length,the distance from a lens to its focus
+40916,focal_infection,bacterial infection limited to a specific organ or region especially one causing symptoms elsewhere
+40917,focal_ratio f_number stop_number speed,the ratio of the focal length to the diameter of a (camera) lens system
+40918,focal_seizure,transitory disturbance in motor or sensory function resulting from abnormal cortical activity
+40919,focalization focalisation,the confinement of an infection to a limited area
+40920,focalization focalisation focusing,the act of bringing into focus
+40921,focus,a fixed reference point on the concave side of a conic section
+40922,focus,maximum clarity or distinctness of an idea; "the controversy brought clearly into focus an important difference of opinion"
+40923,focus,maximum clarity or distinctness of an image rendered by an optical system; "in focus"; "out of focus"
+40924,focus focal_point,a point of convergence of light (or other radiation) or a point from which it diverges
+40925,focus focal_point nidus,a central point or locus of an infection in an organism; "the focus of infection"
+40926,focus focusing focussing focal_point direction centering,the concentration of attention or energy on something; "the focus of activity shifted to molecular biology"; "he had no direction in his life"
+40927,fodder,coarse food (especially for livestock) composed of entire plants or the leaves and stalks of a cereal crop
+40928,foe enemy,a personal enemy; "they had been political foes for years"
+40929,fog,droplets of water vapor suspended in the air near the ground
+40930,fog fogginess murk murkiness,an atmosphere in which visibility is reduced because of a cloud of some substance
+40931,fogbank,a large mass of fog on the sea (as seen from a distance)
+40932,foghorn,a warning device consisting of a horn that generates a loud low tone
+40933,foghorn fogsignal,a loud low warning signal that can be heard by fogbound ships
+40934,foglamp,headlight that provides strong beam for use in foggy weather
+40935,fohn foehn,a warm dry wind that blows down the northern slopes of the Alps
+40936,foible,the weaker part of a sword's blade from the forte to the tip
+40937,foie_gras pate_de_foie_gras,a pate made from goose liver (marinated in Cognac) and truffles
+40938,foil,a piece of thin and flexible sheet metal; "the photographic film was wrapped in foil"
+40939,foil,a light slender flexible sword tipped by a button
+40940,foil enhancer,anything that serves by contrast to call attention to another thing's good qualities; "pretty girls like plain friends as foils"
+40941,foil transparency,picture consisting of a positive photograph or drawing on a transparent base; viewed with a projector
+40942,fold crease plication flexure crimp bend,an angular or rounded shape made by folding; "a fold in the napkin"; "a crease in his trousers"; "a plication on her blouse"; "a flexure of the colon"; "a bend of his elbow"
+40943,fold folding,a geological process that causes a bend in a stratum of rock
+40944,fold folding,the act of folding; "he gave the napkins a double fold"
+40945,fold plica,a folded part (as in skin or muscle)
+40946,fold sheepfold sheep_pen sheepcote,a pen for sheep
+40947,folder,covering that is folded over to protect the contents
+40948,folderal falderol frill gimcrackery gimcrack nonsense trumpery,ornamental objects of no great value
+40949,folderol rubbish tripe trumpery trash wish-wash applesauce codswallop,nonsensical talk or writing
+40950,folding_chair,a chair that can be folded flat for storage
+40951,folding_door accordion_door,an interior door that opens by folding back in sections (rather than by swinging on hinges)
+40952,folding_saw,a saw with a toothed blade that folds into a handle (the way a pocketknife folds)
+40953,foldout gatefold,an oversize page that is folded in to a book or magazine
+40954,foliation,(geology) the arrangement of leaflike layers in a rock
+40955,foliation,the production of foil by cutting or beating metal into thin leaves
+40956,foliation,the work of coating glass with metal foil
+40957,foliation foliage,(architecture) leaf-like architectural ornament
+40958,foliation leafing,(botany) the process of forming leaves
+40959,folie_a_deux,the simultaneous occurrence of symptoms of a mental disorder (as delusions) in two persons who are closely related (as siblings or man and wife)
+40960,folio,a book (or manuscript) consisting of large sheets of paper folded in the middle to make two leaves or four pages; "the first folio of Shakespeare's plays"
+40961,folium,a thin layer or stratum of (especially metamorphic) rock
+40962,folk folks common_people,people in general (often used in the plural); "they're just country folk"; "folks around here drink moonshine"; "the common people determine the group character and preserve its customs from one generation to the next"
+40963,folk_art,genre of art of unknown origin that reflects traditional values of a society
+40964,folk_dancer,someone who does folk dances
+40965,folk_dancing folk_dance,a style of dancing that originated among ordinary people (not in the royal courts)
+40966,folk_etymology,a popular but erroneous etymology
+40967,folk_music ethnic_music folk,the traditional and typically anonymous music that is an expression of the life of people in a community
+40968,folk_poet,a folk writer who composes in verse
+40969,folk_singer jongleur minstrel poet-singer troubadour,a singer of folk songs
+40970,folk_song folksong folk_ballad,a song that is traditionally sung by the common people of a region and forms part of their culture
+40971,folk_writer,a writer of folktales
+40972,folklore,the unwritten lore (stories and proverbs and riddles and songs) of a culture
+40973,folks,your parents; "he wrote to his folks every day"
+40974,folktale folk_tale,a tale circulated by word of mouth among the common folk
+40975,follicle,any small spherical group of cells containing a cavity
+40976,follicle-stimulating_hormone FSH,a gonadotropic hormone that is secreted by the anterior pituitary and stimulates growth of Graafian follicles in female mammals, and activates the cells in male mammals that form sperm
+40977,folliculitis,inflammation of a hair follicle
+40978,follies,a revue with elaborate costuming
+40979,follow-on,an immediate second innings forced on a cricket team scoring a prescribed number of runs fewer than its opponents in the first innings
+40980,follow-through,the act of carrying a stroke to its natural completion; "his follow-through was straight down the line toward the target"; "squash can be dangerous if your opponent has a long follow-through"
+40981,follow-through,carrying some project or intention to full completion; "I appreciated his follow-through on his promise"
+40982,follow-up followup,a piece of work that exploits or builds on earlier work; "his new software is a follow-up to the programs they started with"
+40983,follow-up followup,an activity that continues something that has already begun or that repeats something that has already been done
+40984,follow-up followup reexamination review,a subsequent examination of a patient for the purpose of monitoring earlier treatment
+40985,follower,someone who travels behind or pursues another
+40986,follower,a person who accepts the leadership of another
+40987,following followers,a group of followers or enthusiasts
+40988,folly foolery tomfoolery craziness lunacy indulgence,foolish or senseless behavior
+40989,folly foolishness craziness madness,the quality of being rash and foolish; "trying to drive through a blizzard is the height of folly"; "adjusting to an insane society is total foolishness"
+40990,folly foolishness unwiseness,the trait of acting stupidly or rashly
+40991,fomentation,a substance used as a warm moist medicinal compress or poultice
+40992,fomentation,application of warm wet coverings to a part of the body to relieve pain and inflammation
+40993,fomentation instigation,deliberate and intentional triggering (of trouble or discord)
+40994,fomite vehicle,any inanimate object (as a towel or money or clothing or dishes or books or toys etc.) that can transmit infectious agents from one person to another
+40995,fondant,candy made of a thick creamy sugar paste
+40996,fondler,a molester who touches the intimate parts of the victim; "the woman charged that her jailer was a fondler"; "not all fondlers are sexual perverts"
+40997,fondness fancy partiality,a predisposition to like something; "he had a fondness for whiskey"; "she had dismissed him quite brutally, relegating him to the status of a passing fancy, or less"
+40998,fondue fondu,cubes of meat or seafood cooked in hot oil and then dipped in any of various sauces
+40999,fondue fondu,hot cheese or chocolate melted to the consistency of a sauce into which bread or fruits are dipped
+41000,font fount typeface face case,a specific size and style of type within a type family
+41001,font_cartridge cartridge_font,any font that is contained in a cartridge that can be plugged into a computer printer
+41002,fontanelle fontanel soft_spot,any membranous gap between the bones of the cranium in an infant or fetus
+41003,food food_for_thought intellectual_nourishment,anything that provides mental stimulus for thinking
+41004,food nutrient,any substance that can be metabolized by an animal to give energy and build tissue
+41005,food solid_food,any solid substance (as opposed to liquid) that is used as a source of nourishment; "food and drink"
+41006,food_additive artificial_additive,an additive to food intended to improve its flavor or appearance or shelf-life
+41007,food_allergy,allergic reaction to a substance ingested in food
+41008,food_bank,a place where food is contributed and made available to those in need; "they set up a food bank for the flood victims"
+41009,food_cache,food in a secure or hidden storage place
+41010,food_chain,(ecology) a community of organisms where each member is eaten in turn by another member
+41011,food_company,a company that processes and sells food
+41012,food_court,an area (as in a shopping mall) where fast food is sold (usually around a common eating area)
+41013,food_faddist,a person who adheres briefly to different diets
+41014,food_fish,any fish used for food by human beings
+41015,food_hamper,a hamper for packing and transporting food
+41016,food_manufacturer,a person who manufactures food products
+41017,food_poisoning gastrointestinal_disorder,illness caused by poisonous or contaminated food
+41018,food_processor,a kitchen appliance with interchangeable blades; used for shredding or blending or chopping or slicing food
+41019,food_pyramid,(ecology) a hierarchy of food chains with the principal predator at the top; each level preys on the level below
+41020,food_stamp,a government-issued stamp that can be used in exchange for food
+41021,food_web food_cycle,(ecology) a community of organisms where there are several interrelated food chains
+41022,foodstuff food_product,a substance that can be used or prepared for use as food
+41023,fool sap saphead muggins tomfool,a person who lacks good judgment
+41024,fool's_errand,a fruitless mission
+41025,fool's_paradise,an illusory state of wellbeing
+41026,fool's_parsley lesser_hemlock Aethusa_cynapium,European weed naturalized in America that resembles parsley but causes nausea and poisoning when eaten
+41027,foolscap,a size of paper used especially in Britain
+41028,foot,a member of a surveillance team who works on foot or rides as a passenger
+41029,foot,the lower part of anything; "curled up on the foot of the bed"; "the foot of the page"; "the foot of the list"; "the foot of the mountain"
+41030,foot,a support resembling a pedal extremity; "one foot of the chair was on the carpet"
+41031,foot,travel by walking; "he followed on foot"; "the swiftest of foot"
+41032,foot ft,a linear unit of length equal to 12 inches or a third of a yard; "he is six feet tall"
+41033,foot human_foot pes,the part of the leg of a human being below the ankle joint; "his bare feet projected from his trousers"; "armored from head to foot"
+41034,foot invertebrate_foot,any of various organs of locomotion or attachment in invertebrates
+41035,foot-and-mouth_disease hoof-and-mouth_disease,acute contagious disease of cloven-footed animals marked by ulcers in the mouth and around the hoofs
+41036,foot-lambert ft-L,a former luminance unit equal to one lumen per square foot
+41037,foot-pound,a unit of work equal to a force of one pound moving through a distance of one foot
+41038,foot-poundal,a unit of work equal to a force of one poundal moving through a distance of one foot
+41039,foot-ton,2240 foot-pounds
+41040,foot_brake,hydraulic brake operated by pressing on a foot pedal
+41041,foot_rot,plant disease in which the stem or trunk rots at the base
+41042,foot_rot,contagious degenerative infection of the feet of hoofed animals (especially cattle and sheep)
+41043,foot_rule,a ruler one foot long
+41044,footage,a rate of charging by the linear foot of work done
+41045,footage,film that has been shot; "they had stock footage of lightning, tornados, and hurricanes"; "he edited the news footage"
+41046,football,the inflated oblong ball used in playing American football
+41047,football football_game,any of various games played with a ball (round or oval) in which two teams try to kick or carry or propel the ball into each other's goal
+41048,football_coach,a coach of football players
+41049,football_field gridiron,the playing field on which football is played
+41050,football_helmet,a padded helmet with a face mask to protect the head of football players
+41051,football_hero,a football player who has achieved a reputation for success
+41052,football_league,a league of football teams
+41053,football_official,an official who enforces the rules at a football game
+41054,football_play,(American football) a play by the offensive team
+41055,football_player footballer,an athlete who plays American football
+41056,football_score,the score in a football game
+41057,football_season,the season when football is played
+41058,football_stadium,a stadium where football games are held
+41059,football_team eleven,a team that plays football
+41060,footbath,a small bathtub for warming or washing or disinfecting the feet
+41061,footboard,a narrow platform on which to stand or brace the feet
+41062,footboard,a vertical board or panel forming the foot of a bedstead
+41063,footbridge overcrossing pedestrian_bridge,a bridge designed for pedestrians
+41064,footcandle,a unit of illuminance on a surface that is everywhere 1 foot from a point source of 1 candle
+41065,footedness,the property of favoring one foot over the other (as in kicking a ball)
+41066,footer,(used only in combinations) the height or length of something in feet; "he is a six-footer"; "the golfer sank a 40-footer"; "his yacht is a 60-footer"
+41067,footfall footstep step,the sound of a step of someone walking; "he heard footsteps on the porch"
+41068,footfault,a fault that occurs when the server in tennis fails to keep both feet behind the baseline
+41069,foothill,a relatively low hill on the lower slope of a mountain
+41070,foothold footing,a place providing support for the foot in standing or climbing
+41071,footing basis ground,a relation that provides the foundation for something; "they were on a friendly footing"; "he worked on an interim basis"
+41072,footing terms,status with respect to the relations between people or groups; "on good terms with her in-laws"; "on a friendly footing"
+41073,footlights,theater light at the front of a stage that illuminate the set and actors
+41074,footlocker locker,a trunk for storing personal possessions; usually kept at the foot of a bed (as in a barracks)
+41075,footman,a man employed as a servant in a large establishment (as a palace) to run errands and do chores
+41076,footnote footer,a printed note placed below the text on a printed page
+41077,footpad padder,a highwayman who robs on foot
+41078,footplate,the platform in the cab of a locomotive on which the engineer stands to operate the controls
+41079,footprint,a trace suggesting that something was once present or felt or otherwise important; "the footprints of an earlier civilization"
+41080,footprint,the area taken up by some object; "the computer had a desktop footprint of 10 by 16 inches"
+41081,footprint footmark step,a mark of a foot or shoe on a surface; "the police made casts of the footprints in the soft earth outside the window"
+41082,footprint_evidence,evidence in the form of footprints; "there was footprint evidence that he had been at the scene of the crime"
+41083,footrace foot_race run,a race run on foot; "she broke the record for the half-mile run"
+41084,footstep,the act of taking a step in walking
+41085,footstep pace step stride,the distance covered by a step; "he stepped off ten paces from the old tree and began to dig"
+41086,footsteps-of-spring Sanicula_arctopoides,sanicle of northwestern United States and British Columbia having yellow flowers
+41087,footstool footrest ottoman tuffet,a low seat or a stool to rest the feet of a seated person
+41088,footwall,the lower wall of an inclined fault
+41089,footwear,clothing worn on a person's feet
+41090,footwear footgear,covering for a person's feet
+41091,footwork,the manner of using the feet
+41092,footwork,skillful maneuvering or dealing; "she needs some fancy footwork to cover all those lies"
+41093,foppishness dandyism,the manner and dress of a fop or dandy
+41094,forager,someone who hunts for food and provisions; "in Japan a fungus forager can earn a good living"
+41095,foraging forage,the act of searching for food and provisions
+41096,foram foraminifer,marine microorganism having a calcareous shell with openings where pseudopods protrude
+41097,foramen hiatus,a natural opening or perforation through a bone or a membranous structure
+41098,foramen_magnum,the large opening at the base of the cranium through which the spinal cord passes
+41099,foray,an initial attempt (especially outside your usual areas of competence); "scientists' forays into politics"
+41100,foray raid maraud,a sudden short attack
+41101,forbearance,a delay in enforcing rights or claims or privileges; refraining from acting; "his forbearance to reply was alarming"
+41102,forbidden_fruit,originally an apple from the tree of knowledge of good and evil in the Garden of Eden; it is now used to refer to anything that is tempting but dangerous (as sexuality)
+41103,force,(physics) the influence that produces a change in a physical quantity; "force equals mass times acceleration"
+41104,force,a group of people having the power of effective action; "he joined forces with a band of adventurers"
+41105,force,a powerful effect or influence; "the force of his eloquence easily persuaded them"
+41106,force forcefulness strength,physical energy or intensity; "he hit with all the force he could muster"; "it was destroyed by the strength of the gale"; "a government has not the vitality and forcefulness of a living man"
+41107,force personnel,group of people willing to obey orders; "a public force is necessary to give security to the rights of citizens"
+41108,force_out force-out force_play force,a putout of a base runner who is required to run; the putout is accomplished by holding the ball while touching the base to which the runner must advance before the runner reaches that base; "the shortstop got the runner at second on a force"
+41109,force_pump,pump used to force a liquid up and expel it under pressure
+41110,force_unit,a unit of measurement of physical force
+41111,forced_feeding gavage,feeding that consists of the delivery of a nutrient solution (as through a nasal tube) to someone who cannot or will not eat
+41112,forced_landing emergency_landing,an unscheduled airplane landing that is made under circumstances (engine failure or adverse weather) not under the pilot's control
+41113,forcemeat farce,mixture of ground raw chicken and mushrooms with pistachios and truffles and onions and parsley and lots of butter and bound with eggs
+41114,forceps,an extractor consisting of a pair of pincers used in medical treatment (especially for the delivery of babies)
+41115,forceps_delivery,delivery in which forceps are inserted through the vagina and used to grasp the head of the fetus and pull it through the birth canal; since the forceps can injure the fetus this procedure has generally given way to cesarean deliveries
+41116,ford crossing,a shallow area in a stream that can be forded
+41117,ford fording,the act of crossing a stream or river by wading or in a car or on a horse
+41118,fore-and-aft_rig,rig in which the principal sails are fore-and-aft
+41119,fore-and-aft_sail,any sail not set on a yard and whose normal position is in a fore-and-aft direction
+41120,fore-and-after,sailing vessel with a fore-and-aft rig
+41121,fore-topmast,the topmast next above the foremast
+41122,fore-topsail,the topsail on a foremast
+41123,fore_edge foredge,the part of a book that faces inward when the book is shelved; the part opposite the spine
+41124,fore_plane,a carpenter's plane intermediate between a jack plane and a jointer plane
+41125,forearm,the part of the superior limb between the elbow and the wrist
+41126,forebear forbear,a person from whom you are descended
+41127,foreboding,an unfavorable omen
+41128,foreboding premonition presentiment boding,a feeling of evil to come; "a steadily escalating sense of foreboding"; "the lawyer had a presentiment that the judge would dismiss the case"
+41129,forebrain prosencephalon,the anterior portion of the brain; the part of the brain that develops from the anterior part of the neural tube
+41130,forecaster predictor prognosticator soothsayer,someone who makes predictions of the future (usually on the basis of special knowledge)
+41131,forecastle fo'c'sle,living quarters consisting of a superstructure in the bow of a merchant ship where the crew is housed
+41132,foreclosure,the legal proceedings initiated by a creditor to repossess the collateral for loan that is in default
+41133,forecourt,the outer or front court of a building or of a group of buildings
+41134,foredeck,the deck between the bridge and the forecastle
+41135,forefather,person from an earlier time who contributed to the tradition shared by some group; "our forefathers brought forth a great nation"
+41136,forefather father sire,the founder of a family; "keep the faith of our forefathers"
+41137,forefoot,a front foot of a quadruped
+41138,forefront head,the part in the front or nearest the viewer; "he was in the forefront"; "he was at the head of the column"
+41139,foregone_conclusion matter_of_course,an inevitable ending
+41140,foreground,the part of a scene that is near the viewer
+41141,foreground,(computer science) a window for an active application
+41142,foreground_processing foregrounding,the execution of a program that preempts the use of the processing system
+41143,forehand forehand_stroke forehand_shot,(sports) a return made with the palm of the hand facing the direction of the stroke (as in tennis or badminton or squash)
+41144,forehand_drive,(sports) hard straight return made on the forehand side (as in tennis or badminton or squash)
+41145,foreign_agent,a spy for a foreign country
+41146,foreign_aid,aid (such as economic or military assistance) provided to one nation by another
+41147,foreign_bill foreign_draft,a bill of exchange that is drawn in one country and made payable in another
+41148,foreign_correspondent,a journalist who sends news reports and commentary from a foreign country for publication or broadcast
+41149,foreign_country,any state of which one is not a citizen; "working in a foreign country takes a bit of getting used to"
+41150,foreign_direct_investment,investing in United States businesses by foreign citizens (often involves stock ownership of the business)
+41151,foreign_direct_investment,a joint venture between a foreign company and a United States company
+41152,foreign_exchange,the system by which one currency is exchanged for another; enables international transactions to take place
+41153,foreign_legion,a military unit composed of foreign volunteers who serve the state
+41154,foreign_minister secretary_of_state,a government minister for foreign relations
+41155,foreign_policy,a policy governing international relations
+41156,foreigner alien noncitizen outlander,a person who comes from a foreign country; someone who does not owe allegiance to your country
+41157,foreigner outsider,someone who is excluded from or is not a member of a group
+41158,foreignness strangeness curiousness,the quality of being alien or not native; "the strangeness of a foreigner"
+41159,foreland,land forming the forward margin of something
+41160,foreleg,the forelimb of a quadruped
+41161,forelimb,the front limb (or the homologous structure in other animals, such as a flipper or wing)
+41162,forelock,a lock of hair growing (or falling) over the forehead
+41163,forelock foretop,a lock of a horse's mane that grows forward between the ears
+41164,foreman,a man who is foreperson of a jury
+41165,foreman chief gaffer honcho boss,a person who exercises control over workers; "if you want to leave early you have to ask the foreman"
+41166,foremanship,the position of foreman
+41167,foremast,the mast nearest the bow in vessels with two or more masts
+41168,foremother,a woman ancestor
+41169,forensic_medicine forensic_pathology,the branch of medical science that uses medical knowledge for legal purposes; "forensic pathology provided the evidence that convicted the murderer"
+41170,forensics,scientific tests or techniques used in the investigation of crimes
+41171,forepaw,front paw; analogous to the human hand
+41172,foreperson,the presiding member of the jury and the one who speaks on their behalf
+41173,foreplay arousal stimulation,mutual sexual fondling prior to sexual intercourse
+41174,forequarter,the front half of a side of meat
+41175,foresail,the lowest sail on the foremast of a square-rigged vessel
+41176,foreshank,a cut of meat from the upper part of a front leg
+41177,foreshock,a tremor preceding an earthquake
+41178,foreshore,the part of the seashore between the highwater mark and the low-water mark
+41179,foresight foresightedness foresightfulness,providence by virtue of planning prudently for the future
+41180,forest wood woods,the trees and other plants in a large densely wooded area
+41181,forest woodland timberland timber,land that is covered with trees and shrubs
+41182,forest_fire,an uncontrolled fire in a wooded area
+41183,forest_goat spindle_horn Pseudoryx_nghetinhensis,cow-like creature with the glossy coat of a horse and the agility of a goat and the long horns of an antelope; characterized as a cow that lives the life of a goat
+41184,forest_red_gum Eucalypt_tereticornis,tall tree of Queensland and New South Wales and Victoria
+41185,forest_tent_caterpillar Malacosoma_disstria,larvae of a gregarious North American moth that spins a web resembling a carpet rather than a tent; serious defoliator of deciduous trees
+41186,forestay,an adjustable stay from the foremast to the deck or bowsprit; controls the bending of the mast
+41187,forester tree_farmer arboriculturist,someone trained in forestry
+41188,forestiera,any plant of the genus Forestiera
+41189,forestry,the science of planting and caring for forests and the management of growing timber
+41190,foretaste,an early limited awareness of something yet to occur
+41191,foretop,a platform at the head of a foremast
+41192,forewarning premonition,an early warning about a future event
+41193,forewing fore-wing fore_wing,either of the anterior pair of wings on an insect that has four wings
+41194,forewoman,a woman in charge of a group of workers
+41195,forewoman forelady,a woman who is foreperson of a jury
+41196,foreword preface prolusion,a short introductory essay preceding the text of a book
+41197,forfeit forfeiture,something that is lost or surrendered as a penalty
+41198,forfeit forfeiture,a penalty for a fault or mistake that involves losing or giving up something; "the contract specified forfeits if the work was not completed on time"
+41199,forfeit forfeiture sacrifice,the act of losing or surrendering something as a penalty for a mistake or fault or failure to perform etc.
+41200,forge,furnace consisting of a special hearth where metal is heated before shaping
+41201,forge smithy,a workplace where metal is worked by heating and hammering
+41202,forger,someone who operates a forge
+41203,forger counterfeiter,someone who makes copies illegally
+41204,forgery,criminal falsification by making or altering an instrument with intent to defraud
+41205,forget-me-not mouse_ear Myosotis_scorpiodes,small perennial herb having bright blue or white flowers
+41206,forgetfulness,unawareness caused by neglectful or heedless failure to remember; "his forgetfulness increased as he grew older"
+41207,forgetfulness,tendency to forget
+41208,forging,shaping metal by heating and hammering
+41209,forgiveness,compassionate feelings that support a willingness to forgive
+41210,forgiveness pardon,the act of excusing a mistake or offense
+41211,forgivingness kindness,tendency to be kind and forgiving
+41212,forint,the basic unit of money in Hungary
+41213,fork,an agricultural tool used for lifting or digging; has a handle and metal prongs
+41214,fork,cutlery used for serving and eating food
+41215,fork crotch,the region of the angle formed by the junction of two branches; "they took the south fork"; "he climbed into the crotch of a tree"
+41216,forked_lightning chain_lightning,a form of lightning that moves rapidly in a zigzag path with one end divided (fork-like)
+41217,forklift,a small industrial vehicle with a power operated forked platform in front that can be inserted under loads to lift and move them
+41218,forlorn_hope,a hopeless or desperate enterprise
+41219,forlornness loneliness desolation,sadness resulting from being forsaken or abandoned
+41220,form,an arrangement of the elements in a composition or discourse; "the essay was in the form of a dialogue"; "he first sketches the plot in outline form"
+41221,form,a printed document with spaces in which to write; "he filled out his tax form"
+41222,form,an ability to perform well; "he was at the top of his form"; "the team was off form last night"
+41223,form,a particular mode in which something is manifested; "his resentment took the form of extreme hostility"
+41224,form,a mold for setting concrete; "they built elaborate forms for pouring the foundation"
+41225,form shape cast,the visual appearance of something or someone; "the delicate cast of his features"
+41226,form shape pattern,a perceptual structure; "the composition presents problems for students of musical form"; "a visual pattern must include not only objects but the spaces between them"
+41227,form variant strain var.,(biology) a group of organisms within a species that differ in trivial ways from similar groups; "a new strain of microorganisms"
+41228,form word_form signifier descriptor,the phonological or orthographic sound or appearance of a word that can be used to describe or identify something; "the inflected forms of a word can be represented by a stem and a list of inflections to be attached"
+41229,form_division,an artificial taxonomic category for organisms of which the true relationships are obscure
+41230,form_family,(biology) an artificial taxonomic category for organisms of which the true relationships are obscure
+41231,form_genus,(biology) an artificial taxonomic category for organisms of which the true relationships are obscure
+41232,form_genus,an artificial taxonomic category established on the basis of morphological resemblance for organisms of obscure true relationships especially fossil forms
+41233,form_letter,a letter that is printed in multiple copies and mailed to a list of recipients
+41234,formal_garden,a garden laid out on regular lines with plants arranged in symmetrical locations or in geometrical designs
+41235,formal_semantics,the branch of semantics that studies the logical aspects of meaning
+41236,formaldehyde methanal,a colorless poisonous gas; made by the oxidation of methanol
+41237,formalin formol,a 10% solution of formaldehyde in water; used as a disinfectant or to preserve biological specimens
+41238,formalism,(philosophy) the philosophical theory that formal (logical or mathematical) statements have no meaning but that its symbols (regarded as physical entities) exhibit a form that has useful applications
+41239,formalism,the doctrine that formal structure rather than content is what should be represented
+41240,formalism,the practice of scrupulous adherence to prescribed or external forms
+41241,formality,compliance with formal rules; "courtroom formality"
+41242,formality formalities,a requirement of etiquette or custom; "a mere formality"
+41243,formality formalness,a manner that strictly observes all forms and ceremonies; "the formality of his voice made the others pay him close attention"
+41244,formalization formalisation,the act of making formal (as by stating formal rules governing classes of expressions)
+41245,formalwear eveningwear evening_dress evening_clothes,attire to wear on formal occasions in the evening
+41246,format,the general appearance of a publication
+41247,format formatting data_format data_formatting,the organization of information according to preset specifications (usually for computer processing)
+41248,formation,natural process that causes something to form; "the formation of gas in the intestine"; "the formation of crystals"; "the formation of pseudopods"
+41249,formation,an arrangement of people or things acting as a unit; "a defensive formation"; "a formation of planes"
+41250,formation,a particular spatial arrangement
+41251,formation,creation by mental activity; "the formation of sentences"; "the formation of memories"
+41252,formation shaping,the act of fabricating something in a particular shape
+41253,formative,minimal language unit that has a syntactic (or morphological) function
+41254,formatted_capacity,(computer science) the usable capacity of a disk drive; the amount of space that is left after the sector headings and boundary definitions and timing information have been added by formatting the disk
+41255,former,the first of two or the first mentioned of two; "Tom and Dick were both heroes but only the former is remembered today"
+41256,formic_acid,a colorless pungent fuming vesicatory liquid acid HCOOH found naturally in ants and many plants or made catalytically from carbon monoxide and steam; used in finishing textiles and paper and in the manufacture of insecticides and fumigants
+41257,formication,hallucinated sensation that insects or snakes are crawling over the skin; a common side-effect of extensive use of cocaine or amphetamines
+41258,formidability toughness,impressive difficulty
+41259,formula,a liquid food for infants
+41260,formula,a conventionalized statement expressing some fundamental principle
+41261,formula chemical_formula,a representation of a substance using symbols for its constituent elements
+41262,formula expression,a group of symbols that make a mathematical statement
+41263,formulary pharmacopeia,(pharmacology) a book containing a compilation of pharmaceutical products with their formulas and methods of preparation; "postexposure prophylaxis is an integral part of the pharmacopeia in preventing severe disease after acute infections"
+41264,formulation expression,the style of expressing yourself; "he suggested a better formulation"; "his manner of expression showed how much he cared"
+41265,formulation preparation,a substance prepared according to a formula; "the physician prescribed a commercial preparation of the medicine"
+41266,fornication,voluntary sexual intercourse between persons not married to each other
+41267,fornix,generally any arch shaped structure (but often it refers to the arched roof of an anatomical space)
+41268,fornix trigonum_cerebrale,an arched bundle of white fibers at the base of the brain by which the hippocampus of each hemisphere projects to the contralateral hippocampus and to the thalamus and mamillary bodies
+41269,forsaking giving_up,the act of forsaking
+41270,forsythia,any of various early blooming oleaceous shrubs of the genus Forsythia; native to eastern Asia and southern Europe but widely cultivated for their branches of bright yellow bell-shaped flowers
+41271,forte,a musical composition or musical passage to be performed loudly
+41272,forte,the stronger part of a sword blade between the hilt and the foible
+41273,forte strong_suit long_suit metier specialty speciality strong_point strength,an asset of special worth or utility; "cooking is his forte"
+41274,forties 1940s,the decade from 1940 to 1949
+41275,forties mid-forties,the time of life between 40 and 50
+41276,fortieth,position 40 in a countable series of things
+41277,fortification,the art or science of strengthening defenses
+41278,fortification,the addition of an ingredient for the purpose of enrichment (as the addition of alcohol to wine or the addition of vitamins to food)
+41279,fortification munition,defensive structure consisting of walls or mounds built around a stronghold to strengthen it
+41280,fortified_wine,wine to which alcohol (usually grape brandy) has been added
+41281,fortissimo,a musical composition or musical passage to be performed very loudly
+41282,fortitude,strength of mind that enables one to endure adversity with courage
+41283,fortnight two_weeks,a period of fourteen consecutive days; "most major tennis tournaments last a fortnight"
+41284,fortress fort,a fortified defensive structure
+41285,fortuitousness,the quality of happening accidentally and by lucky chance
+41286,fortune,a large amount of wealth or prosperity
+41287,fortune destiny fate luck lot circumstances portion,your overall circumstances or condition in life (including everything that happens to you); "whatever my fortune may be"; "deserved a better fate"; "has a happy lot"; "the luck of the Irish"; "a victim of circumstances"; "success that was her portion"
+41288,fortune_cookie,thin folded wafer containing a maxim on a slip of paper
+41289,fortune_hunter,a person who seeks wealth through marriage
+41290,fortuneteller fortune_teller,a person who foretells your personal future
+41291,fortunetelling,the practice of predicting people's futures (usually for payment)
+41292,forty 40 XL,the cardinal number that is the product of ten and four
+41293,forty-five,a .45-caliber pistol
+41294,forty-niner,a miner who took part in the California gold rush in 1849
+41295,forum,a public meeting or assembly for open discussion
+41296,forum assembly meeting_place,a public facility to meet for open discussion
+41297,forward,the person who plays the position of forward in certain games, such as basketball, soccer, or hockey
+41298,forward,a position on a basketball, soccer, or hockey team
+41299,forward_pass aerial,a pass to a receiver downfield from the passer
+41300,forwarding,the act of sending on to another destination; "the forwarding of mail to a new address is done automatically"; "the forwarding of resumes to the personnel department"
+41301,forwarding furtherance promotion,the advancement of some enterprise; "his experience in marketing resulted in the forwarding of his career"
+41302,forwardness,an advanced stage; "the forwardness of the harvest this year"; "the arts are in no kind of forwardness in this matter"
+41303,foryml,(chemistry) the negative univalent acyl radical CHO that occurs in aldehydes
+41304,fossa fossa_cat Cryptoprocta_ferox,largest carnivore of Madagascar; intermediate in some respects between cats and civets
+41305,fossil,the remains (or an impression) of a plant or animal that existed in a past geological age and that has been excavated from the soil
+41306,fossil_fuel,fuel consisting of the remains of organisms preserved in rocks in the earth's crust with high carbon and hydrogen content
+41307,fossilization fossilisation,the process of fossilizing a plant or animal that existed in some earlier age; the process of being turned to stone
+41308,fossilization fossilisation,becoming inflexible or out of date
+41309,fossorial_foot,foot adapted for digging as in moles
+41310,fossorial_mammal,a burrowing mammal having limbs adapted for digging
+41311,foster-brother foster_brother,your foster brother is a male who is not a son of your parents but who is raised by your parents
+41312,foster-child foster_child fosterling,a child who is raised by foster parents
+41313,foster-daughter foster_daughter,someone who is raised as a daughter although not related by birth
+41314,foster-father foster_father,a man who is a foster parent
+41315,foster-mother foster_mother,a woman who is a foster parent and raises another's child
+41316,foster-nurse,a nurse who raises another woman's child as her own
+41317,foster-parent foster_parent,a person who acts as parent and guardian for a child in place of the child's natural parents but without legally adopting the child
+41318,foster-sister foster_sister,your foster sister is a female who is not a daughter of your parents but who is raised by your parents
+41319,foster-son foster_son,someone who is raised as a son although not related by birth
+41320,foster_care,supervised care for delinquent or neglected children usually in an institution or substitute home
+41321,foster_family,the family of a fosterling
+41322,foster_home,a household in which an orphaned or delinquent child is placed (usually by a social-service agency)
+41323,fostering fosterage,encouragement; aiding the development of something
+41324,fothergilla witch_alder,any of several deciduous low-growing shrubs of the genus Fothergilla having showy brushlike spikes of white flowers in spring and fiery red and orange autumn color; grows from Alabama to the Allegheny Mountains
+41325,foul,an act that violates the rules of a sport
+41326,foul-weather_gear,protective garment that is intended to keep the wearer dry and warm in bad weather
+41327,foul_ball,(baseball) a ball struck with the bat so that it does not stay between the lines (the foul lines) that define the width of the playing field
+41328,foul_line,a line from which basketball players take penalty shots
+41329,foul_line,a line across a bowling alley that a bowler must not cross
+41330,foul_line,lines through 1st and 3rd base indicating the boundaries of a baseball field
+41331,foul_play,unfair or dishonest behavior (especially involving violence)
+41332,foul_shot free_throw penalty_free_throw charity_toss charity_throw charity_shot,an unhindered basketball shot from the foul line; given to penalize the other team for committing a foul
+41333,foulard,a light plain-weave or twill-weave silk or silklike fabric (usually with a printed design)
+41334,foulness,disgusting wickedness and immorality; "he understood the foulness of sin"; "his display of foulness deserved severe punishment"; "mouths which speak such foulness must be cleansed"
+41335,foulness raininess,(of weather) the badness of the weather; "they were wearied with the foulness of the weather"
+41336,found,food and lodging provided in addition to money; "they worked for $30 and found"
+41337,foundation,the basis on which something is grounded; "there is little foundation for his objections"
+41338,foundation,an institution supported by an endowment
+41339,foundation base fundament foot groundwork substructure understructure,lowest support of a structure; "it was built on a base of solid rock"; "he stood at the foot of the tower"
+41340,foundation grounding,education or instruction in the fundamentals of a field of knowledge; "he lacks the foundation necessary for advanced study"; "a good grounding in mathematics"
+41341,foundation_garment foundation,a woman's undergarment worn to give shape to the contours of the body
+41342,foundation_stone,a stone laid at a ceremony to mark the founding of a new building
+41343,founder,a worker who makes metal castings
+41344,founder beginner founding_father father,a person who founds or establishes some institution; "George Washington is the father of his country"
+41345,foundering going_under,(of a ship) sinking
+41346,foundling abandoned_infant,a child who has been abandoned and whose parents are unknown
+41347,foundress,a woman founder
+41348,foundry metalworks,factory where metal castings are produced
+41349,foundry_proof,a proof taken from a form before duplicate plates are made
+41350,fountain,a structure from which an artificially produced jet of water arises
+41351,fountain fount,a plumbing fixture that provides a flow of water
+41352,fountain jet,an artificially produced flow of water
+41353,fountain_grass Pennisetum_ruppelii Pennisetum_setaceum,tall perennial ornamental grass with long nodding flower plumes of tropical Africa and Asia
+41354,fountain_pen,a pen that is supplied with ink from a reservoir in its barrel
+41355,fountainhead headspring head,the source of water from which a stream arises; "they tracked him back toward the head of the stream"
+41356,four 4 IV tetrad quatern quaternion quaternary quaternity quartet quadruplet foursome Little_Joe,the cardinal number that is the sum of three and one
+41357,four-hitter 4-hitter,a game in which a pitcher allows the opposing team 4 hits
+41358,four-in-hand,a long necktie that is tied in a slipknot with one end hanging in front of the other
+41359,four-letter_word four-letter_Anglo-Saxon_word,any of several short English words (often having 4 letters) generally regarded as obscene or offensive
+41360,four-lined_plant_bug four-lined_leaf_bug Poecilocapsus_lineatus,yellow or orange leaf bug with four black stripes down the back; widespread in central and eastern North America
+41361,four-minute_man,someone who has run the mile in less that 4 minutes
+41362,four-part_harmony,harmony in which each chord has four notes that create four melodic lines
+41363,four-poster,a bed with posts at the four corners that can be used to support a canopy or curtains
+41364,four-pounder,an artillery gun that throws a shot weighing four pounds
+41365,four-spot four,a playing card or domino or die whose upward face shows four pips
+41366,four-stroke_engine four-stroke_internal-combustion_engine,an internal-combustion engine in which an explosive mixture is drawn into the cylinder on the first stroke and is compressed and ignited on the second stroke; work is done on the third stroke and the products of combustion are exhausted on the fourth stroke
+41367,four-tailed_bandage,a bandage consisting of a strip of cloth split in two on both ends; the central part is placed under the chin to restrict motion of the mandible and the tails are tied over the top of the head
+41368,four-wheel_drive 4WD,a motor vehicle with a four-wheel drive transmission system
+41369,four-wheel_drive 4WD,a transmission that provides power directly to all four wheels of a motor vehicle
+41370,four-wheeler,a hackney carriage with four wheels
+41371,four_o'clock,any of several plants of the genus Mirabilis having flowers that open in late afternoon
+41372,fourpence groat,a former English silver coin worth four pennies
+41373,fourpenny_nail,a nail 1.5 inches long
+41374,fourteen 14 XIV,the cardinal number that is the sum of thirteen and one
+41375,fourteenth,position 14 in a countable series of things
+41376,fourth,following the third position; number four in a countable series
+41377,fourth,the musical interval between one note and another four notes away from it
+41378,fourth_dimension time,the fourth coordinate that is required (along with three spatial dimensions) to specify a physical event
+41379,fourth_estate,the press, including journalists, newspaper writers, photographers
+41380,fourth_ventricle,an irregular ventricle between the third ventricle and the central canal of the spinal cord
+41381,fovea fovea_centralis,area consisting of a small depression in the retina containing cones and where vision is most acute
+41382,foveal_vision,vision with the fovea
+41383,fowl_cholera,an acute diarrheal disease (especially of chickens) caused by the microorganism that causes hemorrhagic septicemia
+41384,fowl_pest,either of two acute viral diseases of domestic fowl; characterized by refusal to eat and high temperature and discoloration of the comb
+41385,fowler,someone who hunts wild birds for food
+41386,fowling_piece,a light shotgun used for fowling
+41387,fox,the grey or reddish-brown fur of a fox
+41388,fox,alert carnivorous mammal with pointed muzzle and ears and a bushy tail; most are predators that do not hunt in packs
+41389,fox-trot foxtrot,a ballroom dance in quadruple time; combines short and long and fast and slow steps fixed sequences
+41390,fox_grape,purplish-black wild grape of the eastern United States with tough skins that slip easily from the flesh; cultivated in many varieties
+41391,fox_grape Vitis_labrusca,native grape of northeastern United States; origin of many cultivated varieties e.g. Concord grapes
+41392,fox_hunter,a mounted hunter who follows the hounds in pursuit of a fox
+41393,fox_hunting foxhunt,mounted hunters follow hounds in pursuit of a fox
+41394,fox_squirrel eastern_fox_squirrel Sciurus_niger,exceptionally large arboreal squirrel of eastern United States
+41395,fox_terrier,small lively black-and-white terriers formerly used to dig out foxes
+41396,foxglove digitalis,any of several plants of the genus Digitalis
+41397,foxhole fox_hole,a small dugout with a pit for individual shelter against enemy fire
+41398,foxhound,medium-sized glossy-coated hounds developed for hunting foxes
+41399,foxtail foxtail_grass,grasses of the genera Alopecurus and Setaria having dense silky or bristly brushlike flowering spikes
+41400,foxtail_grass Lycopodium_alopecuroides,ground pine thickly covered with bristly leaves; widely distributed in barren sandy or peaty moist coastal regions of eastern and southeastern United States
+41401,foxtail_millet Italian_millet Hungarian_grass Setaria_italica,coarse drought-resistant annual grass grown for grain, hay, and forage in Europe and Asia and chiefly for forage and hay in United States
+41402,foxtail_orchid,any of various orchids of the genus Rhyncostylis having pink- to purple-marked white flowers in a dense cylindrical raceme
+41403,fractal,(mathematics) a geometric pattern that is repeated at every scale and so cannot be represented by classical geometry
+41404,fractal_geometry,(mathematics) the geometry of fractals; "Benoit Mandelbrot pioneered fractal geometry"
+41405,fraction,a component of a mixture that has been separated by a fractional process
+41406,fraction,the quotient of two rational numbers
+41407,fraction,a small part or item forming a piece of a whole
+41408,fractional_currency,paper currency in denominations less than the basic monetary unit
+41409,fractional_distillation,fractionation of a liquid by distillation
+41410,fractional_monetary_unit subunit,a monetary unit that is valued at a fraction (usually one hundredth) of the basic monetary unit
+41411,fractionation,separation into portions
+41412,fractionation fractional_process,a process that uses heat to separate a substance into its components
+41413,fracture break,breaking of hard tissue such as bone; "it was a nasty fracture"; "the break seems to have been caused by a fall"
+41414,fracture crack cracking,the act of cracking something
+41415,fragility breakability frangibleness frangibility,quality of being easily damaged or destroyed
+41416,fragility delicacy,lack of physical strength
+41417,fragment,a piece broken off or cut off of something else; "a fragment of rock"
+41418,fragment,an incomplete piece; "fragments of a play"
+41419,fragmentation,the disintegration of social norms governing behavior and thought and social relationships
+41420,fragmentation,(computer science) the condition of a file that is broken up and stored in many different locations on a magnetic disk; "fragmentation slows system performance because it takes extra time to locate and assemble the parts of the fragmented file"
+41421,fragmentation,the scattering of bomb fragments after the bomb explodes
+41422,fragmentation_bomb antipersonnel_bomb anti-personnel_bomb daisy_cutter,a bomb with only 10 to 20 per cent explosive and the remainder consisting of casings designed to break into many small high-velocity fragments; most effective against troops and vehicles
+41423,fragrant_agrimony Agrimonia_procera,fragrant European perennial herb found at woodland margins on moist soils
+41424,fragrant_cliff_fern fragrant_shield_fern fragrant_wood_fern Dryopteris_fragrans,fern or northern Eurasia and North America having fragrant fronds
+41425,fragrant_orchid Gymnadenia_conopsea,European orchid having dense spikes of fragrant pink or lilac or red flowers with conspicuous spurs
+41426,fragrant_sumac lemon_sumac Rhus_aromatica,sweet-scented sumac of eastern America having ternate leaves and yellowish-green flowers in spikes resembling catkins followed by red hairy fruits
+41427,frail,the weight of a frail (basket) full of raisins or figs; between 50 and 75 pounds
+41428,frail,a basket for holding dried fruit (especially raisins or figs)
+41429,frailty vice,moral weakness
+41430,fraise,a ruff for the neck worn in the 16th century
+41431,fraise,sloping or horizontal rampart of pointed stakes
+41432,frame,a single drawing in a comic strip
+41433,frame,an application that divides the user's display into two or more windows that can be scrolled independently
+41434,frame,a single one of a series of still transparent pictures forming a cinema, television or video film
+41435,frame,the framework for a pair of eyeglasses
+41436,frame,one of the ten divisions into which bowling is divided
+41437,frame framing,a framework that supports and protects a picture or a mirror; "the frame enhances but is not itself the subject of attention"; "the frame was much more valuable than the miror it held"
+41438,frame-up setup,an act that incriminates someone on a false charge
+41439,frame_buffer,(computer science) a buffer that stores the contents of an image pixel by pixel
+41440,frame_of_reference frame,a system of assumptions and standards that sanction behavior and give it meaning
+41441,framer,someone who makes frames (as for pictures)
+41442,framer,someone who writes a new law or plan; "the framers of the Constitution"
+41443,framework fabric,the underlying structure; "providing a factual framework for future research"; "it is part of the fabric of society"
+41444,framework frame,a structure supporting or containing something
+41445,framing,formulation of the plans and important details; "the framing of judicial decrees"
+41446,franc,the basic monetary unit in many countries; equal to 100 centimes
+41447,franc-tireur,a sharpshooter (in the French army)
+41448,franchise,an authorization to sell a company's goods or services in a particular place
+41449,franchise dealership,a business established or operated under an authorization to sell or distribute a company's goods or services in a particular area
+41450,franchise enfranchisement,a statutory right or privilege granted to a person or group by a government (especially the rights of citizenship and the right to vote)
+41451,franchise_tax,a tax that is imposed by states on corporations; it depends both on the net worth of the corporation and on its net income attributable to activities within the state
+41452,francium Fr atomic_number_87,a radioactive element of the alkali-metal group discovered as a disintegration product of actinium
+41453,frangipane,pastry with a creamy almond-flavored filling
+41454,frangipani frangipanni,any of various tropical American deciduous shrubs or trees of the genus Plumeria having milky sap and showy fragrant funnel-shaped variously colored flowers
+41455,frank frankfurter hotdog hot_dog dog wiener wienerwurst weenie,a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll
+41456,frank_breech frank_breech_delivery,position of a fetus in which the buttocks are present at the maternal pelvic outlet
+41457,frankfurter_bun hotdog_bun,a long bun shaped to hold a frankfurter
+41458,frankincense olibanum gum_olibanum thus,an aromatic gum resin obtained from various Arabian or East African trees; formerly valued for worship and for embalming and fumigation
+41459,franking_machine,a machine that automatically stamps letters or packages passing through it and computes the total charge
+41460,franklin,a landowner (14th and 15th centuries) who was free but not of noble birth
+41461,frankness outspokenness,the trait of being blunt and outspoken
+41462,frappe,liqueur poured over shaved ice
+41463,frappe,thick milkshake containing ice cream
+41464,fraternal_twin dizygotic_twin,either of two twins who developed from two separate fertilized eggs
+41465,fraternity frat,a social club for male undergraduates
+41466,fraternization fraternisation,associating with others in a brotherly or friendly way; especially with an enemy
+41467,fratricide,a person who murders their brother or sister
+41468,fratricide,the murder of your sibling
+41469,fraud,intentional deception resulting in injury to another person
+41470,fraud fraudulence dupery hoax humbug put-on,something intended to deceive; deliberate trickery intended to gain an advantage
+41471,fraud_in_fact positive_fraud,actual deceit; concealing something or making a false representation with an evil intent to cause injury to another
+41472,fraud_in_law,fraud that is presumed from the circumstances although the one who commits it need not have had any evil intent
+41473,fraud_in_the_factum,fraud that arises from a disparity between the instrument intended to be executed and the instrument actually executed; e.g., leading someone to sign the wrong contract
+41474,fraud_in_the_inducement,fraud which intentionally causes a person to execute an instrument or make an agreement or render a judgment; e.g., misleading someone about the true facts
+41475,fraudulence deceit,the quality of being fraudulent
+41476,fraudulence duplicity,a fraudulent or duplicitous representation
+41477,fraxinella dittany burning_bush gas_plant Dictamnus_alba,Eurasian perennial herb with white flowers that emit flammable vapor in hot weather
+41478,frazzle,a state of extreme exhaustion; "he was worn to a frazzle"
+41479,freak monster monstrosity lusus_naturae,a person or animal that is markedly unusual or deformed
+41480,freckle lentigo,a small brownish spot (of the pigment melanin) on the skin
+41481,free free_people,people who are free; "the home of the free and the brave"
+41482,free-liver,someone who gratifies physical appetites (especially for food and drink) with more than the usual freedom
+41483,free-reed,a reed that does not fit closely over the aperture
+41484,free-reed_instrument,a wind instrument with a free reed
+41485,free_agency,(sports) the state of a professional athlete who is free to negotiate a contract to play for any team
+41486,free_agent,(sports) a professional athlete who is free to sign a contract to play for any team
+41487,free_agent free_spirit freewheeler,someone acting freely or even irresponsibly
+41488,free_association,a thought process in which ideas (words or images) suggest other ideas in a sequence
+41489,free_central_placentation,where ovules develop on a central column in a compound ovary lacking septa or with septa at base only
+41490,free_electron,electron that is not attached to an atom or ion or molecule but is free to move under the influence of an electric field
+41491,free_fall,the ideal falling motion of something subject only to a gravitational field
+41492,free_hand blank_check,freedom to do as you see fit; "many have doubts about giving him a free hand to attack"
+41493,free_house,a public house that is not controlled by a brewery and so is free to sell different brands of beer and ale
+41494,free_kick,(soccer) a place kick that is allowed for a foul or infringement by the other team
+41495,free_list,a list of commodities that are not subject to tariffs
+41496,free_living,a lifestyle given to easy indulgence of the appetites
+41497,free_lunch,something acquired without effort or payment or obligation; "there is no free lunch in politics or Hollywood"
+41498,free_morpheme free_form,a morpheme that can occur alone
+41499,free_nerve_ending,microscopic sensory nerve endings in the skin that are not connected to any specific sensory receptor
+41500,free_phagocyte,a phagocyte that circulates in the blood
+41501,free_port,a port open on equal terms to all commercial vessels
+41502,free_port free_zone,an area adjoining a port where goods that are intended for reshipment can be received and stored without payment of duties
+41503,free_press,a press not restricted or controlled by government censorship regarding politics or ideology
+41504,free_radical radical,an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule; "in the body free radicals are high-energy particles that ricochet wildly and damage cells"
+41505,free_rein play,the removal of constraints; "he gave free rein to his impulses"; "they gave full play to the artist's talent"
+41506,free_state,any state prohibiting slavery prior to the American Civil War
+41507,free_throw_lane,a lane on a basketball court extending from the end line to 15 feet in front of the backboard; players may not enter this lane during a free throw
+41508,free_time spare_time,time that is free from duties or responsibilities
+41509,free_trade,international trade free of government interference
+41510,free_trader,an advocate of unrestricted international trade
+41511,free_verse vers_libre,unrhymed verse without a consistent metrical pattern
+41512,free_will discretion,the power of making free choices unconstrained by external agencies
+41513,freebie freebee,something that is free (usually provided as part of a promotional scheme); "the road map was a freebie"
+41514,freeboard_deck,the uppermost watertight deck
+41515,freedman freedwoman,a person who has been freed from slavery
+41516,freedom,the condition of being free; the power to act or speak or think without externally imposed restraints
+41517,freedom_from_cruel_and_unusual_punishment,a right guaranteed by the 8th amendment to the US Constitution
+41518,freedom_from_discrimination,immunity from discrimination on the basis of race or sex or nationality or religion or age; guaranteed by federal laws of the United States
+41519,freedom_from_double_jeopardy,a civil right guaranteed by the Fifth Amendment to the US Constitution
+41520,freedom_from_involuntary_servitude,a civil right guaranteed by the 13th amendment to the US Constitution
+41521,freedom_from_search_and_seizure,a right guaranteed by the 4th amendment to the US Constitution
+41522,freedom_from_self-incrimination privilege_against_self_incrimination,the civil right (guaranteed by the Fifth Amendment to the United States Constitution) to refuse to answer questions or otherwise give testimony against yourself
+41523,freedom_of_assembly,the right to peaceably assemble and to petition the government for redress of grievances; guaranteed by the First Amendment to the US Constitution
+41524,freedom_of_religion,a civil right guaranteed by the First Amendment to the US Constitution
+41525,freedom_of_speech,a civil right guaranteed by the First Amendment to the US Constitution
+41526,freedom_of_the_press,a right guaranteed by the First Amendment to the US Constitution
+41527,freedom_of_the_seas,the right of merchant ships to travel freely in international waters
+41528,freedom_of_thought,the right to hold unpopular ideas
+41529,freedom_rider,one of an interracial group of civil rights activists who rode buses through parts of the South in order to protest racial segregation
+41530,freedom_to_bear_arms,a right guaranteed by the 2nd amendment to the US Constitution
+41531,freehold,an estate held in fee simple or for life
+41532,freehold,tenure by which land is held in fee simple or for life
+41533,freeholder,the owner of a freehold
+41534,freelancer freelance free-lance free_lance independent self-employed_person,a writer or artist who sells services to different employers without a long-term contract with any of them
+41535,freeloader,someone who takes advantage of the generosity of others
+41536,freemail,a service providing free email delivery in exchange for exposure to advertising
+41537,freeman freewoman,a person who is not a serf or a slave
+41538,freemasonry,a natural or instinctive fellowship between people of similar interests; "he enjoyed the freemasonry of the Press"
+41539,freesia,any of several plants of the genus Freesia valued for their one-sided clusters of usually fragrant yellow or white or pink tubular flowers
+41540,freestone,fruit (especially peach) whose flesh does not adhere to the pit
+41541,freestyle,a race (as in swimming) in which each contestant has a free choice of the style to use
+41542,freetail free-tailed_bat freetailed_bat,small swift insectivorous bat with leathery ears and a long tail; common in warm regions
+41543,freethinker,a person who rejects religion
+41544,freeware,software that is provided without charge
+41545,freewheel,a clutch (as on the rear wheel of a bicycle) that allows wheels to turn freely (as in coasting)
+41546,freeze,fixing (of prices or wages etc) at a particular level; "a freeze on hiring"
+41547,freeze freezing,the withdrawal of heat to change something from a liquid to a solid
+41548,freeze frost,weather cold enough to cause freezing
+41549,freeze halt,an interruption or temporary suspension of progress or movement; "a halt in the arms race"; "a nuclear freeze"
+41550,freeze-drying lyophilization lyophilisation,a method of drying food or blood plasma or pharmaceuticals or tissue without destroying their physical structure; material is frozen and then warmed in a vacuum so that the ice sublimes
+41551,freezing_mixture,a mixture of substances (usually salt and ice) to obtain a temperature below the freezing point of water
+41552,freezing_point melting_point,the temperature below which a liquid turns into a solid
+41553,freight freightage,transporting goods commercially at rates cheaper than express rates
+41554,freight freightage freight_rate,the charge for transporting something by common carrier; "we pay the freight"; "the freight rate is usually cheaper"
+41555,freight_agent,an employee of a freight carrier who directs the receipt and delivery of goods
+41556,freight_car,a railway car that carries freight
+41557,freight_elevator service_elevator,an elevator designed for carrying freight
+41558,freight_liner liner_train,a long-distance express freight train between industrial centers and seaports with facilities for rapid loading and unloading of goods
+41559,freight_train rattler,a railroad train consisting of freight cars
+41560,french_fries french-fried_potatoes fries chips,strips of potato fried in deep fat
+41561,frequency absolute_frequency,the number of observations in a given statistical category
+41562,frequency frequence oftenness,the number of occurrences within a given time period; "the frequency of modulation was 40 cycles per second"; "the frequency of his seizures increased as he grew older"
+41563,frequency relative_frequency,the ratio of the number of observations in a statistical category to the total number of observations
+41564,frequency-response_curve frequency-response_characteristic,(electronics) a graph of frequency response with signal amplitude or gain plotted against frequency
+41565,frequency_band waveband,a band of adjacent radio frequencies (e.g., assigned for transmitting radio or television signals)
+41566,frequency_distribution,a distribution of observed frequencies of occurrence of the values of a variable
+41567,frequency_modulation FM,modulation of the frequency of the (radio) carrier wave
+41568,frequency_response,(electronics) a curve representing the output-to-input ratio of a transducer as a function of frequency
+41569,frequentative,a verb form that serves to express frequent repetition of an action
+41570,fresco,a mural done with watercolors on wet plaster
+41571,fresco,a durable method of painting on a wall by using watercolors on wet plaster
+41572,fresh_bean,beans eaten before they are ripe as opposed to dried
+41573,fresh_breeze,wind moving 19-24 knots; 5 on the Beaufort scale
+41574,fresh_food fresh_foods,food that is not preserved by canning or dehydration or freezing or smoking
+41575,fresh_gale,wind moving 39-46 knots; 8 on the Beaufort scale
+41576,fresh_start clean_slate tabula_rasa,an opportunity to start over without prejudice
+41577,fresh_water freshwater,water that is not salty
+41578,freshener,anything that freshens
+41579,freshet spate,the occurrence of a water flow resulting from sudden rain or melting snow
+41580,freshman fresher,a first-year undergraduate
+41581,freshman_class,the first class in college or high school
+41582,freshness,the property of being pure and fresh (as if newly made); not stale or deteriorated; "she loved the freshness of newly baked bread"; "the freshness of the air revived him"
+41583,freshness glow,an alert and refreshed state
+41584,freshness novelty,originality by virtue of being refreshingly novel
+41585,freshwater_bass,North American food and game fish
+41586,freshwater_bass bass,any of various North American freshwater fish with lean flesh (especially of the genus Micropterus)
+41587,freshwater_bream bream,any of various usually edible freshwater percoid fishes having compressed bodies and shiny scales; especially (but not exclusively) of the genus Lepomis
+41588,freshwater_fish,flesh of fish from fresh water used as food
+41589,freshwater_mussel freshwater_clam,bivalve mollusk abundant in rivers of central United States
+41590,fret,a small bar of metal across the fingerboard of a musical instrument; when the string is stopped by a finger at the metal bar it will produce a note of the desired pitch
+41591,fret Greek_fret Greek_key key_pattern,an ornamental pattern consisting of repeated vertical and horizontal lines (often in relief); "there was a simple fret at the top of the walls"
+41592,fret stew sweat lather swither,agitation resulting from active worry; "don't get in a stew"; "he's in a sweat about exams"
+41593,friar mendicant,a male member of a religious order that originally relied solely on alms
+41594,friar's-cowl Arisarum_vulgare,tuberous perennial having a cowl-shaped maroon or violet-black spathe; Mediterranean; Canaries; Azores
+41595,friar's_lantern ignis_fatuus jack-o'-lantern will-o'-the-wisp,a pale light sometimes seen at night over marshy ground
+41596,friary,a monastery of friars
+41597,fricandeau,larded veal braised and glazed in its own juices
+41598,fricassee,pieces of chicken or other meat stewed in gravy with e.g. carrots and onions and served with noodles or dumplings
+41599,fricative_consonant fricative spirant,a continuant consonant produced by breath moving against a narrowing of the vocal tract
+41600,friction detrition rubbing,effort expended in moving one object over another with pressure
+41601,friction rubbing,the resistance encountered when one body is moved in contact with another
+41602,friction_clutch,a clutch in which one part turns the other by the friction between them
+41603,friction_tape insulating_tape,a water-resistant adhesive tape used to insulate exposed electrical conductors
+41604,fried_egg,eggs cooked by sauteing in oil or butter; sometimes turned and cooked on both sides
+41605,fried_rice Chinese_fried_rice,boiled rice mixed with scallions and minced pork or shrimp and quickly scrambled with eggs
+41606,friedcake,small cake in the form of a ring or twist or ball or strip fried in deep fat
+41607,friend,a person you know well and regard with affection and trust; "he was my best friend at the university"
+41608,friendlessness,being without friends
+41609,friendliness,a feeling of liking for another person; enjoyment in their company
+41610,friendliness,a friendly disposition
+41611,friendly,troops belonging to or allied with your own military forces; "friendlies came to their rescue"
+41612,friendly_fire fratricide,fire that injures or kills an ally
+41613,friendly_takeover,a takeover that is welcomed by the management of the target company
+41614,friendship friendly_relationship,the state of being friends (or friendly)
+41615,friendship_plant panamica panamiga Pilea_involucrata,low stingless nettle of Central and South America having velvety brownish-green toothed leaves and clusters of small green flowers
+41616,frieze,an architectural ornament consisting of a horizontal sculptured band between the architrave and the cornice
+41617,frieze,a heavy woolen fabric with a long nap
+41618,frigate,a medium size square-rigged warship of the 18th and 19th centuries
+41619,frigate,a United States warship larger than a destroyer and smaller than a cruiser
+41620,frigate_bird man-of-war_bird,long-billed warm-water seabird with wide wingspan and forked tail
+41621,frightfulness,the quality of being frightful
+41622,frigidity frigidness,sexual unresponsiveness (especially of women) and inability to achieve orgasm during intercourse
+41623,frijole,Mexican bean; usually dried
+41624,frill,(paleontology) a bony plate that curves upward behind the skull of many ceratopsian dinosaurs
+41625,frill flounce ruffle furbelow,a strip of pleated material used as a decoration or a trim
+41626,frill ruff,an external body part consisting of feathers or hair about the neck of a bird or other animal
+41627,frilled_lizard Chlamydosaurus_kingi,large arboreal insectivorous Australian lizard with a ruff of skin around the neck
+41628,fringe,a social group holding marginal or extreme views; "members of the fringe believe we should be armed with guns at all times"
+41629,fringe,an ornamental border consisting of short lengths of hanging threads or tassels
+41630,fringe interference_fringe,one of the light or dark bands produced by the interference and diffraction of light
+41631,fringe-toed_lizard Uma_notata,with long pointed scales around toes; of deserts of United States and Mexico
+41632,fringe_benefit perquisite perk,an incidental benefit awarded for certain types of employment (especially if it is regarded as a right); "a limousine is one of the fringe benefits of the job"
+41633,fringe_bush Chionanthus_virginicus,small bushy tree of southeastern United States having profuse clusters of white flowers
+41634,fringe_tree,any of various small decorative flowering trees or shrubs of the genus Chionanthus
+41635,fringed_gentian,any of various herbs of the genus Gentianopsis having the margins of the corolla lobes fringed; sometimes included in genus Gentiana
+41636,fringed_grass_of_Parnassus Parnassia_fimbriata,bog plant with broadly heart-shaped basal leaves and cream-colored or white saucer-shaped flowers with fringed petals; west of Rocky Mountains from Alaska to New Mexico
+41637,fringed_loosestrife Lysimachia_ciliatum,of North America
+41638,fringed_orchis fringed_orchid,any of several summer-flowering American orchids distinguished by a fringed or lacerated lip
+41639,fringed_pink Dianthus_supurbus,Eurasian perennial pink having fragrant lilac or rose flowers with deeply fringed margins
+41640,fringed_poppy_mallow Callirhoe_digitata,perennial poppy mallow of United States southern plains states having rose-red or rose-purple flowers
+41641,fringepod lacepod,annual herb having pinnatifid basal leaves and slender racemes of small white flowers followed by one-seeded winged silicles
+41642,frisk frisking,the act of searching someone for concealed weapons or illegal drugs; "he gave the suspect a quick frisk"
+41643,friskiness frolicsomeness sportiveness,lively high-spirited playfulness
+41644,frisson shiver chill quiver shudder thrill tingle,an almost pleasurable sensation of fright; "a frisson of surprise shot through him"
+41645,fritillary,butterfly with brownish wings marked with black and silver
+41646,fritillary checkered_lily,any liliaceous plant of the genus Fritillaria having nodding variously colored flowers
+41647,frittata,Italian omelet with diced vegetables and meats; cooked until bottom is set then inverted into another pan to cook the top
+41648,fritter,small quantity of fried batter containing fruit or meat or vegetables
+41649,fritter_batter,batter for making fritters
+41650,frivolity frivolousness,the trait of being frivolous; not serious or sensible
+41651,frizz,the condition of being formed into small tight curls; "her hair was in a frizz"
+41652,frock,a long, loose outer garment
+41653,frock,a habit worn by clerics
+41654,frock_coat,a man's coat having knee-length skirts front and back; worn in the 19th century
+41655,frog,a decorative loop of braid or cord
+41656,frog Gaul,a person of French descent
+41657,frog toad toad_frog anuran batrachian salientian,any of various tailless stout-bodied amphibians with long hind limbs for leaping; semiaquatic and terrestrial species
+41658,frog's_lettuce,very similar to Potamogeton; of western Africa, Asia, and Europe
+41659,frog_kick,a swimming kick; knees are drawn upward and outward so the legs can be brought together when fully extended
+41660,frog_legs,hind legs of frogs used as food; resemble chicken and cooked as chicken
+41661,frog_orchid,any of several green orchids of the genus Habenaria
+41662,frog_orchid Coeloglossum_viride,orchid having hooded long-bracted green to yellow-green flowers suffused with purple
+41663,frogbit frog's-bit Hydrocharis_morsus-ranae,European floating plant with roundish heart-shaped leaves and white flowers
+41664,frogfish,fish having a frog-like mouth with a lure on the snout
+41665,froghopper,a variety of spittlebug
+41666,frogmouth,insectivorous bird of Australia and southeastern Asia having a wide frog-like mouth
+41667,frond,compound leaf of a fern or palm or cycad
+41668,front,a sphere of activity involving effort; "the Japanese were active last week on the diplomatic front"; "they advertise on many different fronts"
+41669,front,(meteorology) the atmospheric phenomenon created at the boundary between two different air masses
+41670,front,the part of something that is nearest to the normal viewer; "he walked to the front of the stage"
+41671,front,the outward appearance of a person; "he put up a bold front"
+41672,front,the side that is seen or that goes first
+41673,front front_end forepart,the side that is forward or prominent
+41674,front-porch_campaigning front-porch_campaign,a campaign in which the candidate makes speeches but does not travel; "William McKinley's dignified front-porch campaign won him the presidency in 1896"; "her approach was the opposite of a passive front-porch campaign"
+41675,front-runner favorite favourite,a competitor thought likely to win
+41676,front_bench,any of the front seats in the House of Commons that are reserved for ministers or former ministers
+41677,front_burner,top priority; "the work was moved to the front burner in order to meet deadlines"
+41678,front_door front_entrance,exterior door (at the entrance) at the front of a building
+41679,front_man front figurehead nominal_head straw_man strawman,a person used as a cover for some questionable activity
+41680,front_matter prelims,written matter preceding the main text of a book
+41681,front_porch,a porch for the front door
+41682,front_projector,a projector for digital input
+41683,front_tooth anterior,a tooth situated at the front of the mouth; "his malocclusion was caused by malposed anteriors"
+41684,front_yard,the yard in front of a house; between the house and the street
+41685,frontage,the direction in which something (such as a building) faces
+41686,frontage,the extent of land abutting on a street or water
+41687,frontage_road service_road,a local road that runs parallel to an expressway and allows local traffic to gain access to property
+41688,frontal,a drapery that covers the front of an altar
+41689,frontal_bone os_frontale forehead,the large cranial bone forming the front part of the cranium: includes the upper part of the orbits
+41690,frontal_eminence,either prominence of the frontal bone above each orbit
+41691,frontal_gyrus,any of the convolutions of the outer surface of the frontal lobe of the cerebrum
+41692,frontal_lobe frontal_cortex,that part of the cerebral cortex in either hemisphere of the brain lying directly behind the forehead
+41693,frontal_sinus,one of a pair of cavities in the frontal bone
+41694,frontal_suture sutura_frontalis,the suture between two halves of the frontal bone (usually obliterated by the age of 6)
+41695,frontbencher,a member of the House of Commons who is a minister in the government or who holds an official position in an opposition party
+41696,frontier,a wilderness at the edge of a settled area of a country; "the individualism of the frontier in Andrew Jackson's day"
+41697,frontier,an international boundary or the area (often fortified) immediately inside the boundary
+41698,frontier,an undeveloped field of study; a topic inviting research and development; "he worked at the frontier of brain science"
+41699,frontier_settlement outpost,a settlement on the frontier of civilization
+41700,frontiersman backwoodsman mountain_man,a man who lives on the frontier
+41701,frontierswoman,a woman who lives on the frontier
+41702,frontispiece,an ornamental facade
+41703,frontispiece,front illustration facing the title page of a book
+41704,frontlet frontal,an adornment worn on the forehead
+41705,frost hoar hoarfrost rime,ice crystals forming a white deposit (especially on objects outside)
+41706,frost icing,the formation of frost or ice on a surface
+41707,frost_heave frost_heaving,upthrust of ground or pavement caused by the freezing of moist soil
+41708,frostbite cryopathy,destruction of tissue by freezing and characterized by tingling, blistering and possibly gangrene
+41709,frosted_bat Vespertilio_murinus,common Eurasian bat with white-tipped hairs in its coat
+41710,frostiness,coldness as evidenced by frost
+41711,frostiness hoariness,a silvery-white color
+41712,frosting icing ice,a flavored sugar topping used to coat and decorate cakes
+41713,frostweed frost-weed frostwort Helianthemum_canadense Crocanthemum_canadense,perennial of the eastern United States having early solitary yellow flowers followed by late petalless flowers; so-called because ice crystals form on it during first frosts
+41714,frottage,masturbation by rubbing against another person (as in a crowd)
+41715,frotteur,someone who masturbates by rubbing against another person (as in a crowd)
+41716,frown scowl,a facial expression of dislike or displeasure
+41717,frown_line,a facial wrinkle associated with frowning
+41718,frozen_custard soft_ice_cream,dessert resembling ice cream but with a boiled custard base
+41719,frozen_dessert,any of various desserts prepared by freezing
+41720,frozen_food frozen_foods,food preserved by freezing
+41721,frozen_orange_juice orange-juice_concentrate,orange juice that has been concentrated and frozen
+41722,frozen_pudding,a chilled dessert consisting of a mixture of custard and nuts and (sometimes) liquor
+41723,frozen_yogurt,a soft frozen dessert of sweetened flavored yogurt
+41724,fructification,the bearing of fruit
+41725,fructification,organs of fruiting (especially the reproductive parts of ferns and mosses)
+41726,fructose fruit_sugar levulose laevulose,a simple sugar found in honey and in many ripe fruits
+41727,fructosuria,the presence of levulose is the urine; "fructosuria is a harmless condition"
+41728,frugality frugalness,prudence in avoiding waste
+41729,fruit,the ripened reproductive body of a seed plant
+41730,fruit,the consequence of some effort or action; "he lived long enough to see the fruit of his policies"
+41731,fruit_bar,cookies containing chopped fruits either mixed in the dough or spread between layers of dough then baked and cut in bars
+41732,fruit_bat megabat,large Old World bat of warm and tropical regions that feeds on fruit
+41733,fruit_cocktail,a mixture of sliced or diced fruits
+41734,fruit_custard,a custard containing fruit
+41735,fruit_drink ade,a sweetened beverage of diluted fruit juice
+41736,fruit_fly pomace_fly,any of numerous small insects whose larvae feed on fruits
+41737,fruit_grower,someone who grows fruit commercially
+41738,fruit_juice fruit_crush,drink produced by squeezing or crushing fruit
+41739,fruit_machine,a coin-operated gambling machine that produces random combinations of symbols (usually pictures of different fruits) on rotating dials; certain combinations win money for the player
+41740,fruit_of_the_poisonous_tree,a rule that once primary evidence is determined to have been illegally obtained any secondary evidence following from it may also not be used
+41741,fruit_punch,a punch made of fruit juices mixed with water or soda water (with or without alcohol)
+41742,fruit_salad,salad composed of fruits
+41743,fruit_tree,tree bearing edible fruit
+41744,fruitage,the yield of fruit; "a tree highly recommended for its fruitage"
+41745,fruitcake,a rich cake containing dried fruit and nuts and citrus peel and so on
+41746,fruiterer,a person who sells fruit
+41747,fruitfulness fecundity,the quality of something that causes or assists healthy growth
+41748,fruiting_body,an organ specialized for producing spores
+41749,fruition,the condition of bearing fruit
+41750,fruition,enjoyment derived from use or possession
+41751,fruitlessness,a lack of creative imagination
+41752,fruitlessness aridity barrenness,the quality of yielding nothing of value
+41753,fruitlet,a diminutive fruit, especially one that is part of a multiple fruit
+41754,fruitwood,wood of various fruit trees (as apple or cherry or pear) used especially in cabinetwork
+41755,frumenty,sweet spiced porridge made from hulled wheat
+41756,frump dog,a dull unattractive unpleasant girl or woman; "she got a reputation as a frump"; "she's a real dog"
+41757,frustration,a feeling of annoyance at being hindered or criticized; "her constant complaints were the main source of his frustration"
+41758,frustration defeat,the feeling that accompanies an experience of being thwarted in attaining your goals
+41759,frustration thwarting foiling,an act of hindering someone's plans or efforts
+41760,frustum,a truncated cone or pyramid; the part that is left when a cone or pyramid is cut by a plane parallel to the base and the apical part is removed
+41761,fry_cook,a cook who specializes in fried foods
+41762,fryer frier pullet,flesh of a medium-sized young chicken suitable for frying
+41763,frying sauteing,cooking in fat or oil in a pan or griddle
+41764,frying_pan frypan skillet,a pan used for frying foods
+41765,fuchsia,any of various tropical shrubs widely cultivated for their showy drooping purplish or reddish or white flowers; Central and South America and New Zealand and Tahiti
+41766,fuck fucking screw screwing ass nooky nookie piece_of_ass piece_of_tail roll_in_the_hay shag shtup,slang for sexual intercourse
+41767,fucker,a stupid despised man
+41768,fucoid,a fossilized cast or impression of algae of the order Fucales
+41769,fucoid fucoid_algae,any of various algae of the family Fucaceae
+41770,fucus,any member of the genus Fucus
+41771,fuddy-duddy,a conservative who is old-fashioned or dull in attitude or appearance; "you may accuse me of being and old fuddy-duddy trying to stop young people having fun"
+41772,fudge,soft creamy candy
+41773,fuel,a substance that can be consumed to produce energy; "more fuel is needed during the winter months"; "they developed alternative fuels for aircraft"
+41774,fuel-air_explosive FAE,a device consisting of a container of fuel and two explosive charges; the first charge bursts open the fuel container at a predetermined height and spreads the fuel in a cloud that mixes with atmospheric oxygen; the second charge detonates the cloud which creates an enormous blast wave and incinerates whatever is below
+41775,fuel_cell,cell that produces electricity by oxidation of fuel (hydrogen and oxygen or zinc and air); often used in electric cars
+41776,fuel_filter,a filter in the fuel line that screens out dirt and rust particles from the fuel
+41777,fuel_gauge fuel_indicator,an indicator of the amount of fuel remaining in a vehicle
+41778,fuel_injection fuel_injection_system,mechanical system to inject atomized fuel directly into the cylinders of an internal-combustion engine; avoids the need for a carburetor
+41779,fuel_level,the amount of fuel remaining
+41780,fuel_line gas_line petrol_line,a pipe that carries gasoline from a tank to a gasoline engine; "the car wouldn't start because dirt clogged the gas line"
+41781,fuel_oil heating_oil,a petroleum product used for fuel
+41782,fuel_system,equipment in a motor vehicle or aircraft that delivers fuel to the engine
+41783,fueling refueling,the activity of supplying or taking on fuel
+41784,fug,(British informal) an airless smoky smelly atmosphere
+41785,fugacity,the tendency of a gas to expand or escape
+41786,fugacity fugaciousness,the lack of enduring qualities (used chiefly of plant parts)
+41787,fugitive fugitive_from_justice,someone who is sought by law officers; someone trying to elude justice
+41788,fugitive runaway fleer,someone who flees from an uncongenial situation; "fugitives from the sweatshops"
+41789,fugleman,a leader and organizer and spokesman (especially a political leader); "a fugleman for the radical right"
+41790,fugu,a blowfish highly prized as a delicacy in Japan but highly dangerous because the skin and organs are poisonous
+41791,fugue,a dreamlike state of altered consciousness that may last for hours or days
+41792,fugue,a musical form consisting of a theme repeated a fifth above or a fourth below its first statement
+41793,fugue psychogenic_fugue,dissociative disorder in which a person forgets who they are and leaves home to create a new life; during the fugue there is no memory of the former life; after recovering there is no memory for events during the dissociative state
+41794,fuji fuji_cherry Prunus_incisa,shrubby Japanese cherry tree having pale pink blossoms
+41795,fulcrum,the pivot about which a lever turns
+41796,fulfillment fulfilment,a feeling of satisfaction at having achieved your desires
+41797,fulfillment fulfilment,the act of consummating something (a desire or promise etc)
+41798,full-dress_uniform,the naval or military uniform that is specified by regulations to be worn on ceremonial occasions
+41799,full-wave_rectifier,rectifier that converts the negative half wave of an alternating current into a positive half wave
+41800,full_blood,descent from parents both of one pure breed
+41801,full_employment,the economic condition when everyone who wishes to work at the going wage rate for their type of labor is employed
+41802,full_faith_and_credit,a guarantee to pay interest and principal on debt; usually issued by the United States Treasury
+41803,full_house,a poker hand with 3 of a kind and a pair
+41804,full_metal_jacket,a lead bullet that is covered with a jacket of a harder metal (usually copper)
+41805,full_moon full-of-the-moon full_phase_of_the_moon full,the time when the Moon is fully illuminated; "the moon is at the full"
+41806,full_nelson,a wrestling hold in which the holder puts both arms under the opponent's arms and exerts pressure on the back of the neck (illegal in amateur wrestling)
+41807,full_page,something that covers an entire page; "the ad took up a full page"
+41808,full_professor,a professor of the highest rank
+41809,full_skirt,a long skirt gathered at the waist
+41810,fullback,(football) the running back who plays the fullback position on the offensive team
+41811,fullback,(American football) an offensive position in the backfield
+41812,fuller,a workman who fulls (cleans and thickens) freshly woven cloth for a living
+41813,fuller's_earth,an absorbent soil resembling clay; used in fulling (shrinking and thickening) woolen cloth and as an adsorbent
+41814,fuller's_teasel Dipsacus_sativus,similar to the common teasel and similarly used; widespread in Europe and North Africa and western Asia; naturalized in United States
+41815,fullerene,a form of carbon having a large molecule consisting of an empty cage of sixty or more carbon atoms
+41816,fullness,the condition of being filled to capacity
+41817,fullness mellowness richness,the property of a sensation that is rich and pleasing; "the music had a fullness that echoed through the hall"; "the cheap wine had no body, no mellowness"; "he was well aware of the richness of his own appearance"
+41818,fullness voluminosity voluminousness,greatness of volume
+41819,fulmar fulmar_petrel Fulmarus_glacialis,heavy short-tailed oceanic bird of polar regions
+41820,fulminate,a salt or ester of fulminic acid
+41821,fulmination,the act of exploding with noise and violence; "his fulminations frightened the horses"
+41822,fulmination diatribe,thunderous verbal attack
+41823,fulminic_acid,(CNOH) an unstable acid occurring mainly in the form of explosive salts and esters that is isomeric with cyanic acid
+41824,fulsomeness oiliness oleaginousness smarminess unctuousness unction,smug self-serving earnestness
+41825,fulvic_acid,a yellow to yellow-brown humic substance that is soluble in water under all pH conditions; "they measured the fluvial fulvic acid"
+41826,fumaric_acid,a colorless crystalline acid with a fruity taste; used in making polyester resins
+41827,fumble muff,(sports) dropping the ball
+41828,fumed_oak,oak given a weathered appearance by exposure to fumes of ammonia; used for cabinetwork
+41829,fumewort fumeroot Corydalis_solida,herb of northern Europe and Asia having erect racemes of red flowers
+41830,fumigant,a chemical substance used in fumigation
+41831,fumigation,the application of a gas or smoke to something for the purpose of disinfecting it
+41832,fumigator,someone whose job is to fumigate
+41833,fumigator,a device that generates a gas for the purpose of disinfecting or eradicating pests
+41834,fumitory fumewort fumeroot Fumaria_officinalis,delicate European herb with greyish leaves and spikes of purplish flowers; formerly used medicinally
+41835,fun,violent and excited activity; "she asked for money and then the fun began"
+41836,fun merriment playfulness,activities that are enjoyable or amusing; "I do it for the fun of it"; "he is fun to have around"
+41837,fun play sport,verbal wit or mockery (often at another's expense but not to be taken seriously); "he became a figure of fun"; "he said it in sport"
+41838,funambulism tightrope_walking,walking on a tightrope or slack rope
+41839,funambulist tightrope_walker,an acrobat who performs on a tightrope or slack rope
+41840,function,a relation such that one thing is dependent on another; "height is a function of age"; "price is a function of supply and demand"
+41841,function,a formal or official social gathering or ceremony; "it was a black-tie function"
+41842,function mathematical_function single-valued_function map mapping,(mathematics) a mathematical relation such that each element of a given set (the domain of the function) is associated with an element of another set (the range of the function)
+41843,function office part role,the actions and activities assigned to or required or expected of a person or group; "the function of a teacher"; "the government must do its part"; "play its role"
+41844,function purpose role use,what something is used for; "the function of an auger is to bore holes"; "ballet is beautiful but what use is it?"
+41845,function_call,a call that passes control to a subroutine; after the subroutine is executed control returns to the next instruction in main program
+41846,function_word closed-class_word,a word that is uninflected and serves a grammatical function but has little identifiable meaning
+41847,functional_anatomy physiological_anatomy morphophysiology,the study of anatomy in its relation to function
+41848,functional_disorder,disorder showing symptoms for which no physiological or anatomical cause can be identified
+41849,functional_genomics,the branch of genomics that determines the biological function of the genes and their products
+41850,functional_illiterate,a person with some ability to read and write but not enough for daily practical needs
+41851,functional_magnetic_resonance_imaging fMRI,a form of magnetic resonance imaging of the brain that registers blood flow to functioning areas of the brain
+41852,functionalism,a psychology based on the assumption that all mental process are useful to an organism in adapting to the environment
+41853,functionalism,any doctrine that stresses utility or purpose
+41854,functionalist,an adherent of functionalism
+41855,functionality,capable of serving a purpose well; "software with greater functionality"
+41856,fund monetary_fund,a reserve of money set aside for some purpose
+41857,fund-raising_campaign fund-raising_drive fund-raising_effort,a campaign to raise money for some cause
+41858,fundamental,any factor that could be considered important to the understanding of a particular business; "fundamentals include a company's growth, revenues, earnings, management, and capital structure"
+41859,fundamental fundamental_frequency first_harmonic,the lowest tone of a harmonic series
+41860,fundamental_analysis fundamentals_analysis,(stock exchange) the use of fundamentals as an investment strategy
+41861,fundamental_law organic_law constitution,law determining the fundamental political principles of a government
+41862,fundamental_quantity fundamental_measure,one of the four quantities that are the basis of systems of measurement
+41863,fundamentalism,a form of Protestantism that takes the interpretation of every word in the sacred texts as literal truth
+41864,fundamentalism,the strict adherence to the basic principles or doctrines of a religion, ideology, etc.
+41865,fundamentalist,an adherent of fundamentalist principles
+41866,fundamentalist,a supporter of fundamentalism
+41867,fundamentals basics fundamental_principle basic_principle bedrock,principles from which other truths can be derived; "first you must learn the fundamentals"; "let's get down to basics"
+41868,fundraiser,someone who solicits financial contributions
+41869,fundraiser,a social function that is held for the purpose of raising money
+41870,funds finances monetary_resource cash_in_hand pecuniary_resource,assets in the form of money
+41871,fundus,(anatomy) the base of a hollow organ or that part of the organ farthest from its opening; "the uterine fundus"; "the fundus of the stomach"
+41872,funeral obsequy,a ceremony at which a dead person is buried or cremated; "hundreds of people attended his funeral"
+41873,funeral_home funeral_parlor funeral_parlour funeral_chapel funeral_church funeral-residence,a mortuary where those who knew the deceased can come to pay their last respects
+41874,funeral_march dead_march,a slow march to be played for funeral processions
+41875,fungal_infection mycosis,an inflammatory condition caused by a fungus
+41876,fungible,a commodity that is freely interchangeable with another in satisfying an obligation
+41877,fungus,an organism of the kingdom Fungi lacking chlorophyll and feeding on organic matter; ranging from unicellular or multicellular organisms to spore-bearing syncytia
+41878,fungus_family,includes lichen families
+41879,fungus_genus,includes lichen genera
+41880,fungus_gnat,mosquito-like insect whose larvae feed on fungi or decaying vegetation
+41881,fungus_gnat sciara sciarid,minute blackish gregarious flies destructive to mushrooms and seedlings
+41882,fungus_order,the order of fungi
+41883,funicle funiculus,the stalk of a plant ovule or seed
+41884,funiculitis,inflammation of a funiculus (especially an inflammation of the spermatic cord)
+41885,funiculus,any of several body structure resembling a cord
+41886,funk,an earthy type of jazz combining it with blues and soul; has a heavy bass line that accentuates the first beat in the bar
+41887,funk blue_funk,a state of nervous depression; "he was in a funk"
+41888,funk_hole,dugout as a place of safe retreat (when in a funk)
+41889,funnel,a conically shaped utensil having a narrow tube at the small end; used to channel the flow of substances into a container with a small mouth
+41890,funnel,(nautical) smokestack consisting of a shaft for ventilation or the passage of smoke (especially the smokestack of a ship)
+41891,funnel funnel_shape,a conical shape with a wider and a narrower opening at the two ends
+41892,funnel_web,a funnel-shaped spider web; the funnel-web spider perches in the center of the web
+41893,funny_bone crazy_bone,a point on the elbow where the ulnar nerve passes near the surface; a sharp tingling sensation results when the nerve is knocked against the bone; "the funny bone is not humerus"
+41894,funny_story good_story funny_remark funny,an account of an amusing incident (usually with a punch line); "she told a funny story"; "she made a funny"
+41895,funny_wagon,an ambulance used to transport patients to a mental hospital
+41896,funrun fun_run,a footrace run for fun (often including runners who are sponsored for a charity)
+41897,fur,a garment made of animal pelts or synthetic fur
+41898,fur,dense coat of fine silky hairs on mammals (e.g., cat or seal or weasel)
+41899,fur pelt,the dressed hairy coat of a mammal
+41900,fur-piece,a neckpiece made of fur
+41901,fur_coat,a coat made of fur
+41902,fur_hat,a hat made of fur
+41903,fur_seal,an eared seal of the northern Pacific
+41904,fur_seal,eared seal of the southern hemisphere; the thick soft underfur is the source of sealskin; "the male fur seal is much larger than the female"
+41905,furan furane furfuran,a colorless toxic flammable liquid used in the synthesis of nylon
+41906,furcation forking,the place where something divides into branches
+41907,furcula,a forked bone formed by the fusion of the clavicles of most birds
+41908,furfural furfuraldehyde,a liquid aldehyde with a penetrating odor; made from plant hulls and corncobs; used in making furan and as a solvent
+41909,furlong,a unit of length equal to 220 yards
+41910,furlough,a temporary leave of absence from military duty
+41911,furnace,an enclosed chamber in which heat is produced to heat buildings, destroy refuse, smelt or refine ores, etc.
+41912,furnace_lining refractory,lining consisting of material with a high melting point; used to line the inside walls of a furnace
+41913,furnace_room,a room (usually in the basement of a building) that contains a furnace for heating the building
+41914,furnishing,(usually plural) the instrumentalities (furniture and appliances and other movable accessories including curtains and rugs) that make a home (or other area) livable
+41915,furnishing,the act of providing a house or room with furniture and other removable items such as shelves, carpets, appliances, etc.
+41916,furnishing trappings,(usually plural) accessory wearing apparel
+41917,furniture piece_of_furniture article_of_furniture,furnishings that make a room or other area ready for occupancy; "they had too much furniture for the small apartment"; "there was only one piece of furniture in the room"
+41918,furniture_company,a company that sells furniture
+41919,furor furore,a sudden outburst (as of protest)
+41920,furosemide Lasix,commonly used diuretic (trade name Lasix) used to treat hypertension and edema
+41921,furring,a furlike coating of matter as on the tongue
+41922,furring_strip furring,strip used to give a level surface for attaching wallboard
+41923,furrow,a long shallow trench in the ground (especially one made by a plow)
+41924,furtiveness sneakiness stealthiness,a disposition to be sly and stealthy and to do things surreptitiously
+41925,furunculosis,acute skin disease characterized by the presence of many furuncles
+41926,fury rage madness,a feeling of intense anger; "hell hath no fury like a woman scorned"; "his face turned red with rage"
+41927,fusarium_wilt,wilt caused by fungi of the genus Fusarium
+41928,fuschia,a dark purplish-red color
+41929,fuse electrical_fuse safety_fuse,an electrical device that can interrupt the flow of electrical current when it is overloaded
+41930,fuse fuze fusee fuzee primer priming,any igniter that is used to initiate the burning of a propellant
+41931,fusee fuzee,a colored flare used as a warning signal by trucks and trains
+41932,fusee fuzee,a friction match with a large head that will stay alight in the wind
+41933,fusee_drive fusee,a spirally grooved spindle in a clock that counteracts the diminishing power of the uncoiling mainspring
+41934,fusel_oil,a mixture of amyl alcohols and propanol and butanol formed from distillation of fermented liquors
+41935,fuselage,the central body of an airplane that is designed to accommodate the crew and passengers (or cargo)
+41936,fusible_metal,an alloy with a low melting point and used as solder and in safety plugs and sprinkler fuses
+41937,fusil,a light flintlock musket
+41938,fusilier,(formerly) a British infantryman armed with a light flintlock musket
+41939,fusillade salvo volley burst,rapid simultaneous discharge of firearms; "our fusillade from the left flank caught them by surprise"
+41940,fusion,the merging of adjacent sounds or syllables or words
+41941,fusion,the act of fusing (or melting) together
+41942,fusion merger unification,an occurrence that involves the production of a union
+41943,fusion nuclear_fusion nuclear_fusion_reaction,a nuclear reaction in which nuclei combine to form more massive nuclei with the simultaneous release of energy
+41944,fusion optical_fusion,the combining of images from the two eyes to form a single visual percept
+41945,fusion spinal_fusion,correction of an unstable part of the spine by joining two or more vertebrae; usually done surgically but sometimes done by traction or immobilization
+41946,fusion_cooking,cooking that combines ingredients and techniques and seasonings from different cuisines
+41947,fuss trouble bother hassle,an angry disturbance; "he didn't want to make a fuss"; "they had labor trouble"; "a spot of bother"
+41948,fussiness,unnecessary elaborateness in details
+41949,fustian,a strong cotton and linen fabric with a slight nap
+41950,futility,uselessness as a consequence of having no practical result
+41951,futon,mattress consisting of a pad of cotton batting that is used for sleeping on the floor or on a raised frame
+41952,futtock_shroud,shroud that is part of a ship's rigging
+41953,future,bulk commodities bought or sold at an agreed price for delivery at a specified future date
+41954,future future_tense,a verb tense that expresses actions or states in the future
+41955,future hereafter futurity time_to_come,the time yet to come
+41956,future_date,a particular day in the future that is specified as the time something will happen
+41957,future_perfect future_perfect_tense,a perfective tense used to describe action that will be completed in the future; "`I will have finished' is an example of the future perfect"
+41958,future_progressive future_progressive_tense,a progressive tense used to express action that will be on-going in the future; "`I will be running' is an example of the future progressive"
+41959,futures_contract,an agreement to buy or sell a specific amount of a commodity or financial instrument at a particular price on a stipulated future date; the contract can be sold before the settlement date
+41960,futures_exchange futures_market forward_market,a commodity exchange where futures contracts are traded
+41961,futurism,an artistic movement in Italy around 1910 that tried to express the energy and values of the machine age
+41962,futurism,the position that the meaning of life should be sought in the future
+41963,futurist,a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) will be fulfilled in the future
+41964,futurity,the quality of being in or of the future
+41965,futurology futuristics,the study or prediction of future developments on the basis of existing conditions
+41966,fuzz,the first beard of an adolescent boy
+41967,fuzzy_logic,a form of mathematical logic in which truth can assume a continuum of values between 0 and 1
+41968,g gee g-force,a unit of force equal to the force exerted by gravity; used to indicate the force to which a body is subjected when it is accelerated
+41969,gabapentin Neurontin,an anticonvulsant (trade name Neurontin) used to control some types of seizures in the treatment of epilepsy; also used to manage neuralgia caused by shingles
+41970,gabardine,a firm durable fabric with a twill weave
+41971,gabbro,one of a family of granular intrusive rocks
+41972,gable gable_end gable_wall,the vertical triangular wall between the sloping ends of gable roof
+41973,gable_roof saddle_roof saddleback saddleback_roof,a double sloping roof with a ridge and gables at each end
+41974,gaboon_viper Bitis_gabonica,large heavy-bodied brilliantly marked and extremely venomous west African viper
+41975,gadabout,a restless seeker after amusement or social companionship
+41976,gaddi,a cushion on a throne for a prince in India
+41977,gadfly,any of various large flies that annoy livestock
+41978,gadgeteer,a person who delights in designing or building or using gadgets
+41979,gadgetry,appliances collectively; "laborsaving gadgetry"
+41980,gadoid gadoid_fish,a soft-finned fish of the family Gadidae
+41981,gadolinite ytterbite,a mineral that is a source of rare earths; consists of silicates of iron and beryllium and cerium and yttrium and erbium
+41982,gadolinium Gd atomic_number_64,a ductile silvery-white ductile ferromagnetic trivalent metallic element of the rare earth group
+41983,gaff,a sharp metal spike or spur that is fastened to the leg of a gamecock
+41984,gaff,a spar rising aft from a mast to support the head of a quadrilateral fore-and-aft sail
+41985,gaff,an iron hook with a handle; used for landing large fish
+41986,gaff_topsail fore-and-aft_topsail,a triangular fore-and-aft sail with its foot along the gaff and its luff on the topmast
+41987,gaffer,an electrician responsible for lighting on a movie or tv set
+41988,gaffsail gaff-headed_sail,a quadrilateral fore-and-aft sail suspended from a gaff
+41989,gag muzzle,restraint put into a person's mouth to prevent speaking or shouting
+41990,gag_law,any law that limits freedom of the press
+41991,gag_order,a court order restricting information or comment by the participants involved in a lawsuit; "imposing a gag order on members of the press violates the First Amendment"
+41992,gaggle,a flock of geese
+41993,gagman gagster gagwriter,someone who writes comic material for public performers
+41994,gagman standup_comedian,a comedian who uses gags
+41995,gaiety merriment,a gay feeling
+41996,gaiety playfulness,a festive merry feeling
+41997,gaillardia,any plant of western America of the genus Gaillardia having hairy leaves and long-stalked flowers in hot vibrant colors from golden yellow and copper to rich burgundy
+41998,gain,the amount by which the revenue of a business exceeds its cost of operating
+41999,gainer,a person who gains (gains an advantage or gains profits); "she was clearly the gainer in that exchange"
+42000,gainer full_gainer,a dive in which the diver throws the feet forward to complete a full backward somersault and enters the water feet first and facing away from the diving board
+42001,gainer weight_gainer,a person who gains weight
+42002,gait,a horse's manner of moving
+42003,gait,a person's manner of walking
+42004,gaiter,a shoe covering the ankle with elastic gores in the sides
+42005,gaiter,legging consisting of a cloth or leather covering for the leg from the knee to the ankle
+42006,gal,a unit of gravitational acceleration equal to one centimeter per second per second (named after Galileo)
+42007,gal,alliterative term for girl (or woman)
+42008,gala gala_affair jamboree blowout,a gay festivity
+42009,galactagogue,agent that induces milk secretion
+42010,galactocele,a cystic tumor containing milk or a milky substance (especially in the mammary glands)
+42011,galactose brain_sugar,a simple sugar found in lactose
+42012,galactosemia,a genetic disease (autosomal recessive) in which an enzyme needed to metabolize galactose is deficient or absent; typically develops shortly after birth
+42013,galactosis,the secretion of milk
+42014,galago bushbaby bush_baby,agile long-tailed nocturnal African lemur with dense woolly fur and large eyes and ears
+42015,galangal Alpinia_galanga,southeastern Asian perennial with aromatic roots
+42016,galantine,boned poultry stuffed then cooked and covered with aspic; served cold
+42017,galanty_show shadow_show shadow_play,a drama executed by throwing shadows on a wall
+42018,galax galaxy wandflower beetleweed coltsfoot Galax_urceolata,tufted evergreen perennial herb having spikes of tiny white flowers and glossy green round to heart-shaped leaves that become coppery to maroon or purplish in fall
+42019,galaxy,a splendid assemblage (especially of famous people)
+42020,galaxy extragalactic_nebula,(astronomy) a collection of star systems; any of the billions of systems each having many stars and nebulae and dust; "`extragalactic nebula' is a former name for `galaxy'"
+42021,galbanum gum_albanum,a bitter aromatic gum resin that resembles asafetida
+42022,galbulus,the seed-producing cone of a cypress tree
+42023,gale,a strong wind moving 45-90 knots; force 7 to 10 on Beaufort scale
+42024,galea,an organ shaped like a helmet; usually a vaulted and enlarged petal as in Aconitum
+42025,galena,soft blue-grey mineral; lead sulfide; a major source of lead
+42026,galere rogue's_gallery,a coterie of undesirable people
+42027,galingale galangal Cyperus_longus,European sedge having rough-edged leaves and spikelets of reddish flowers and aromatic roots
+42028,gall,a skin sore caused by chafing
+42029,gall,abnormal swelling of plant tissue caused by insects or microorganisms or injury
+42030,gall_midge gallfly gall_gnat,fragile mosquito-like flies that produce galls on plants
+42031,gall_wasp gallfly cynipid_wasp cynipid_gall_wasp,small solitary wasp that produces galls on oaks and other plants
+42032,gallamine Flaxedil,neuromuscular blocking agent (trade name Flaxedil) used as a muscle relaxant in the administration of anesthesia
+42033,gallantry,polite attentiveness to women
+42034,gallbladder gall_bladder,a muscular sac attached to the liver that stores bile (secreted by the liver) until it is needed for digestion
+42035,galleon,a large square-rigged sailing ship with three or more masts; used by the Spanish for commerce and war from the 15th to 18th centuries
+42036,gallery,spectators at a golf or tennis match
+42037,gallery,a long usually narrow room used for some specific purpose; "shooting gallery"
+42038,gallery,a covered corridor (especially one extending along the wall of a building and supported with arches or columns)
+42039,gallery,narrow recessed balcony area along an upper floor on the interior of a building; usually marked by a colonnade
+42040,gallery art_gallery picture_gallery,a room or series of rooms where works of art are exhibited
+42041,galley,a large medieval vessel with a single deck propelled by sails and oars with guns at stern and prow; a complement of 1,000 men; used mainly in the Mediterranean for war and trading
+42042,galley,(classical antiquity) a crescent-shaped seagoing vessel propelled by oars
+42043,galley,the kitchen area for food preparation on an airliner
+42044,galley ship's_galley caboose cookhouse,the area for food preparation on a ship
+42045,galley_proof,a proof taken before the type is broken up to print pages
+42046,galley_slave,a slave condemned to row in a galley
+42047,gallfly,any of various insects that deposit their eggs in plants causing galls in which the larvae feed
+42048,gallic_acid,a colorless crystalline acid obtained from tannin
+42049,gallinaceous_bird gallinacean,heavy-bodied largely ground-feeding domestic or game birds
+42050,gallinule marsh_hen water_hen swamphen,any of various small aquatic birds of the genus Gallinula distinguished from rails by a frontal shield and a resemblance to domestic hens
+42051,gallium Ga atomic_number_31,a rare silvery (usually trivalent) metallic element; brittle at low temperatures but liquid above room temperature; occurs in trace amounts in bauxite and zinc ores
+42052,gallon Imperial_gallon congius,a British imperial capacity measure (liquid or dry) equal to 4 quarts or 4.545 liters
+42053,gallon gal,United States liquid unit equal to 4 quarts or 3.785 liters
+42054,gallop,a fast gait of a horse; a two-beat stride during which all four legs are off the ground simultaneously
+42055,gallop_rhythm cantering_rhythm,cardiac rhythm characterized by the presence of an extra sound; can indicate a heart abnormality
+42056,gallows,an instrument of execution consisting of a wooden frame from which a condemned person is executed by hanging
+42057,gallows_bird,a person who deserves to be hanged
+42058,gallows_tree gallows-tree gibbet gallous,alternative terms for gallows
+42059,gallstone bilestone,a calculus formed in the gall bladder or its ducts
+42060,galoot,a disreputable or clumsy man
+42061,galvanic_skin_response GSR psychogalvanic_response electrodermal_response electrical_skin_response Fere_phenomenon Tarchanoff_phenomenon,a change in the electrical properties of the skin in response to stress or anxiety; can be measured either by recording the electrical resistance of the skin or by recording weak currents generated by the body
+42062,galvanism,electricity produced by chemical action
+42063,galvanization galvanisation,stimulation with a galvanic current
+42064,galvanization galvanisation,stimulation that arouses a person to lively action; "the unexpected news produced a kind of galvanization of the whole team"
+42065,galvanization galvanisation,either the work of covering with metal by the use of a galvanic current or the coating of iron with zinc to protect it from rusting
+42066,galvanized_iron,iron that is coated with zinc to protect it from rust
+42067,galvanizer galvaniser,a skilled worker who coats iron or steel with zinc
+42068,galvanizer galvaniser inspirer,a leader who stimulates and excites people to action
+42069,galvanometer,meter for detecting or comparing or measuring small electric currents
+42070,gam,a herd of whales
+42071,gambist,a musician who performs upon the viola da gamba
+42072,gambit,a chess move early in the game in which the player sacrifices minor pieces in order to obtain an advantageous position
+42073,gambit ploy,an opening remark intended to secure an advantage for the speaker
+42074,gamble,money that is risked for possible monetary gain
+42075,gamble,a risky act or venture
+42076,gambler,a person who wagers money on the outcome of games or sporting events
+42077,gambler risk_taker,someone who risks loss or injury in the hope of gain or excitement
+42078,gambling gaming play,the act of playing for stakes in the hope of winning (including the payment of a price for a chance to win a prize); "his gambling cost him a fortune"; "there was heavy play at the blackjack table"
+42079,gambling_contract,a contract whose performance by one party is contingent on the outcome of a bet; unenforceable by statute in most jurisdictions
+42080,gambling_house gambling_den gambling_hell gaming_house,a public building in which a variety of games of chance can be played (operated as a business)
+42081,gambling_system,a system of rules for placing bets that is believed to lead to winning; "he has a perfect gambling system at roulette"
+42082,gamboge,a gum resin used as a yellow pigment and a purgative
+42083,gamboge lemon lemon_yellow maize,a strong yellow color
+42084,gamboge_tree Garcinia_hanburyi Garcinia_cambogia Garcinia_gummi-gutta,low spreading tree of Indonesia yielding an orange to brown gum resin (gamboge) used as a pigment when powdered
+42085,gambrel gambrel_roof,a gable roof with two slopes on each side and the lower slope being steeper
+42086,game,(tennis) a division of play during which one player serves
+42087,game,(games) the score at a particular point or the score needed to win; "the game is 6 all"; "he is serving for the game"
+42088,game,the flesh of wild animals that is used for food
+42089,game,the game equipment needed in order to play a particular game; "the child received several games for his birthday"
+42090,game,animal hunted for food or sport
+42091,game,frivolous or trifling behavior; "for actors, memorizing lines is no game"; "for him, life is all fun and games"
+42092,game,a single play of a sport or other contest; "the game lasted two hours"
+42093,game,a contest with rules to determine a winner; "you need four people to play this game"
+42094,game,an amusement or pastime; "they played word games"; "he thought of his painting as a game that filled his empty time"; "his life was all fun and games"
+42095,game biz,your occupation or line of work; "he's in the plumbing game"; "she's in show biz"
+42096,game_bird,any bird (as grouse or pheasant) that is hunted for sport
+42097,game_equipment,equipment or apparatus used in playing a game
+42098,game_fish sport_fish,any fish providing sport for the angler
+42099,game_fowl,any of several breeds reared for cockfighting
+42100,game_law,a regulation intended to manage or preserve game animals
+42101,game_misconduct,(ice hockey) a penalty that suspends a player for the remainder of a game (but allows the team to send in a substitute for the suspended player)
+42102,game_of_chance gambling_game,a game that involves gambling
+42103,game_plan,(figurative) a carefully thought out strategy for achieving an objective in war or politics or business or personal affairs; "newscasters speculated about the President's game plan for an invasion"
+42104,game_plan,(sports) a plan for achieving an objective in some sport
+42105,game_show giveaway,a television or radio program in which contestants compete for awards
+42106,game_theory theory_of_games,(economics) a theory of competition stated in terms of gains and losses among opposing players
+42107,gamebag,a canvas or leather bag for carrying game (especially birds) killed by a hunter
+42108,gamecock fighting_cock,a cock bred and trained for fighting
+42109,gamekeeper game_warden,a person employed to take care of game and wildlife
+42110,gamelan,a traditional Indonesian ensemble typically including many tuned percussion instruments including bamboo xylophones and wooden or bronze chimes and gongs
+42111,games-master games-mistress,the teacher in charge of games at a school
+42112,gamesmanship,the use of dubious (although not technically illegal) methods to win a game
+42113,gametangium,cell or organ in which gametes develop
+42114,gamete,a mature sexual reproductive cell having a single set of unpaired chromosomes
+42115,gametocyte,an immature animal or plant cell that develops into a gamete by meiosis
+42116,gametoecium,gametangia and surrounding bracts
+42117,gametogenesis,the development and maturation of sex cells through meiosis
+42118,gametophore,a modified branch bearing gametangia as in the thalloid liverworts
+42119,gametophyte,the gamete-bearing individual or phase in the life cycle of a plant having alternation of generations
+42120,gamine,a homeless girl who roams the streets
+42121,gamine,a girl of impish appeal
+42122,gaminess raciness ribaldry spiciness,behavior or language bordering on indelicacy
+42123,gaming_card,one of a set of cards used in gambling games
+42124,gaming_table,a table used for gambling; may be equipped with a gameboard and slots for chips
+42125,gamma,a unit of magnetic field strength equal to one-hundred-thousandth of an oersted
+42126,gamma,the 3rd letter of the Greek alphabet
+42127,gamma-interferon,a form of interferon that is produced by T cells and macrophages; involved in the activation of phagocytes
+42128,gamma_acid,a crystalline acid used to make azo dyes
+42129,gamma_aminobutyric_acid GABA,an amino acid that is found in the central nervous system; acts as an inhibitory neurotransmitter
+42130,gamma_globulin human_gamma_globulin,a plasma protein containing the immunoglobulins that are responsible for immune responses
+42131,gamma_hydroxybutyrate GHB,a club drug available in liquid or powder form is taken orally (frequently combined with alcohol); used to incapacitate individuals for the commission of sexual assault and rape
+42132,gamma_iron,a nonmagnetic allotrope of iron that is the basis of austenite; stable between 906 and 1403 degrees centigrade
+42133,gamma_radiation gamma_ray,electromagnetic radiation emitted during radioactive decay and having an extremely short wavelength
+42134,gammon,hind portion of a side of bacon
+42135,gammopathy,a disturbance in the synthesis of immunoglobulins; proteins having antibody activity increase greatly in the blood
+42136,gamp brolly,colloquial terms for an umbrella
+42137,gamut,the entire scale of musical notes
+42138,gamut,a complete extent or range: "a face that expressed a gamut of emotions"
+42139,gander,mature male goose
+42140,gandy_dancer,a laborer in a railroad maintenance gang
+42141,gang,tool consisting of a combination of implements arranged to work together
+42142,gang crew work_party,an organized group of workmen
+42143,gang pack ring mob,an association of criminals; "police tried to break up the gang"; "a pack of thieves"
+42144,ganger,the foreman of a work gang
+42145,ganglion,an encapsulated neural structure consisting of a collection of cell bodies or neurons
+42146,ganglion_cell gangliocyte,a nerve cell whose body is outside the central nervous system; "damage to ganglion cells in the retina may play a role in the development of glaucoma"
+42147,gangplank gangboard gangway,a temporary bridge for getting on and off a vessel at dockside
+42148,gangrene sphacelus slough,necrotic tissue; a mortified or gangrenous part or mass
+42149,gangsaw,a power saw that has several parallel blades making simultaneous cuts
+42150,gangsta,(Black English) a member of a youth gang
+42151,gangster mobster,a criminal who is a member of gang
+42152,gangway,a temporary passageway of planks (as over mud on a building site)
+42153,gannet,large heavily built seabird with a long stout bill noted for its plunging dives for fish
+42154,ganoid ganoid_fish,primitive fishes having thick bony scales with a shiny covering
+42155,ganoin ganoine,shiny substance that resemble enamel and is secreted by the corium of certain fishes (especially ganoid fishes) and composes the outer layer of their scales
+42156,gantlet,the convergence of two parallel railroad tracks in a narrow place; the inner rails cross and run parallel and then diverge so a train remains on its own tracks at all times
+42157,gantry gauntry,a framework of steel bars raised on side supports to bridge over or around something; can display railway signals above several tracks or can support a traveling crane etc.
+42158,gap,a difference (especially an unfortunate difference) between two opinions or two views or two situations
+42159,gap crack,a narrow opening; "he opened the window a crack"
+42160,gap spread,a conspicuous disparity or difference as between two figures; "gap between income and outgo"; "the spread between lending and borrowing costs"
+42161,gape,an expression of openmouthed astonishment
+42162,gape,a stare of amazement (usually with the mouth open)
+42163,gapped_scale,a musical scale with fewer than seven notes
+42164,gar garfish garpike billfish Lepisosteus_osseus,primitive predaceous North American fish covered with hard scales and having long jaws with needlelike teeth
+42165,garage,an outbuilding (or part of a building) for housing automobiles
+42166,garage service_department,a repair shop where cars and trucks are serviced and repaired
+42167,garage_sale yard_sale,an outdoor sale of used personal or household items held on the seller's premises
+42168,garageman's_lien,the extension of a mechanic's lien to include payment for work on automobiles
+42169,garambulla,small berrylike fruit
+42170,garambulla garambulla_cactus Myrtillocactus_geometrizans,arborescent cactus of western Mexico bearing a small oblong edible berrylike fruit
+42171,garbage,a receptacle where waste can be discarded; "she tossed the moldy bread into the garbage"
+42172,garbage refuse food_waste scraps,food that is discarded (as from a kitchen)
+42173,garbage_collection garbage_pickup trash_collection trash_pickup,the collection and removal of garbage
+42174,garbage_heap junk_heap rubbish_heap scrapheap trash_heap junk_pile trash_pile refuse_heap,an accumulation of refuse and discarded matter
+42175,garbage_man garbageman garbage_collector garbage_carter garbage_hauler refuse_collector dustman,someone employed to collect and dispose of refuse
+42176,garbage_truck dustcart,a truck for collecting domestic refuse; "in Britain a garbage truck is called a dustcart"
+42177,garboard garboard_plank garboard_strake,the first wale laid next to the keel of a wooden ship
+42178,garbology,the study of a society by analyzing its garbage
+42179,garden,the flowers or vegetables or fruits or herbs that are cultivated in a garden
+42180,garden,a yard or lawn adjoining a house
+42181,garden,a plot of ground where plants are cultivated
+42182,garden_angelica archangel Angelica_Archangelica,a biennial cultivated herb; its stems are candied and eaten and its roots are used medicinally
+42183,garden_centipede garden_symphilid symphilid Scutigerella_immaculata,minute arthropod often infesting the underground parts of truck-garden and greenhouse crops
+42184,garden_cress,cress cultivated for salads and garnishes
+42185,garden_forget-me-not Myosotis_sylvatica,small biennial to perennial herb of Europe, northern Africa and western Asia having blue, purple or white flowers
+42186,garden_hose,a hose used for watering a lawn or garden
+42187,garden_huckleberry wonderberry sunberry Solanum_nigrum_guineese Solanum_melanocerasum Solanum_burbankii,improved garden variety of black nightshade having small edible orange or black berries
+42188,garden_lettuce common_lettuce Lactuca_sativa,annual or perennial garden plant having succulent leaves used in salads; widely grown
+42189,garden_nasturtium Indian_cress Tropaeolum_majus,strong-growing annual climber having large flowers of all shades of orange from orange-red to yellowish orange and seeds that are pickled and used like capers
+42190,garden_orache mountain_spinach Atriplex_hortensis,Asiatic plant resembling spinach often used as a potherb; naturalized in Europe and North America
+42191,garden_party lawn_party fete_champetre,a party of people assembled for social interaction out of doors
+42192,garden_pea,the flattened to cylindric inflated multi-seeded fruit of the common pea plant
+42193,garden_pea garden_pea_plant common_pea Pisum_sativum,plant producing peas usually eaten fresh rather than dried
+42194,garden_plant,any of a variety of plants usually grown especially in a flower or herb garden
+42195,garden_rake,a rake used by gardeners
+42196,garden_roller,heavy cast-iron cylinder used to flatten lawns
+42197,garden_snail,any of several inedible snails of the genus Helix; often destructive pests
+42198,garden_spade,a spade used by gardeners
+42199,garden_spider Aranea_diademata,a spider common in European gardens
+42200,garden_strawberry cultivated_strawberry Fragaria_ananassa,widely cultivated
+42201,garden_tool lawn_tool,used for working in gardens or yards
+42202,garden_trowel,a trowel used by gardeners
+42203,garden_webworm Loxostege_similalis,a variety of webworm
+42204,gardener,someone employed to work in a garden
+42205,gardener nurseryman,someone who takes care of a garden
+42206,gardenia,any of various shrubs and small trees of the genus Gardenia having large fragrant white or yellow flowers
+42207,gardening horticulture,the cultivation of plants
+42208,garganey Anas_querquedula,small Eurasian teal
+42209,gargle,the sound produced while gargling
+42210,gargle mouthwash,a medicated solution used for gargling and rinsing the mouth
+42211,gargoyle,a spout that terminates in a grotesquely carved figure of a person or animal
+42212,gargoyle,an ornament consisting of a grotesquely carved figure of a person or animal
+42213,garibaldi,a loose high-necked blouse with long sleeves; styled after the red flannel shirts worn by Garibaldi's soldiers
+42214,garishness gaudiness,strident color or excessive ornamentation
+42215,garland_flower Daphne_cneorum,widely cultivated low evergreen shrub with dense clusters of fragrant pink to deep rose flowers
+42216,garlic Allium_sativum,bulbous herb of southern Europe widely naturalized; bulb breaks up into separate strong-flavored cloves
+42217,garlic ail,aromatic bulb used as seasoning
+42218,garlic_bread,French or Italian bread sliced and spread with garlic butter then crisped in the oven
+42219,garlic_butter,butter seasoned with mashed garlic
+42220,garlic_chive,large flat leaves used as chive is used
+42221,garlic_chive Chinese_chive Oriental_garlic Allium_tuberosum,a plant of eastern Asia; larger than Allium schoenoprasum
+42222,garlic_mustard hedge_garlic sauce-alone jack-by-the-hedge Alliaria_officinalis,European herb that smells like garlic
+42223,garlic_press,a press for extracting juice from garlic
+42224,garlic_salt,ground dried garlic and salt
+42225,garment,an article of clothing; "garments of the finest silk"
+42226,garment_bag,a suitcase that unfolds to be hung up
+42227,garment_cutter,someone who cuts cloth etc. to measure in making garments
+42228,garmentmaker garment-worker garment_worker,a person who makes garments
+42229,garnet,any of a group of hard glassy minerals (silicates of various metals) used as gemstones and as an abrasive
+42230,garnet_lac,lac refined by treating with solvent; garnet-colored
+42231,garnierite,a green mineral consisting of hydrated nickel magnesium silicate; a source of nickel
+42232,garnish,something (such as parsley) added to a dish for flavor or decoration
+42233,garnish,any decoration added as a trimming or adornment
+42234,garnishee,a wage earner who is served with a garnishment
+42235,garnishment,a court order to an employer to withhold all or part of an employee's wages and to send the money to the court or to the person who won a lawsuit against the employee
+42236,garrison,the troops who maintain and guard a fortified place
+42237,garrison fort,a fortified military post where troops are stationed
+42238,garrison_cap overseas_cap,a wedge-shaped wool or cotton cap; worn as part of a uniform
+42239,garrote garotte garrotte iron_collar,an instrument of execution for execution by strangulation
+42240,garroter garrotter strangler throttler choker,someone who kills by strangling
+42241,garrulity garrulousness loquaciousness loquacity talkativeness,the quality of being wordy and talkative
+42242,garter supporter,a band (usually elastic) worn around the leg to hold up a stocking (or around the arm to hold up a sleeve)
+42243,garter_belt suspender_belt,a wide belt of elastic with straps hanging from it; worn by women to hold up stockings
+42244,garter_snake grass_snake,any of numerous nonvenomous longitudinally-striped viviparous North American and Central American snakes
+42245,garter_stitch,a knitting stitch that results in a pattern of horizontal ridges formed by knitting both sides (instead of purling one side)
+42246,gas,a fluid in the gaseous state having neither independent shape nor volume and being able to expand indefinitely
+42247,gas gaseous_state,the state of matter distinguished from the solid and liquid states by: relatively low density and viscosity; relatively great expansion and contraction with changes in pressure and temperature; the ability to diffuse readily; and the spontaneous tendency to become distributed uniformly throughout any container
+42248,gas-cooled_reactor,a nuclear reactor using gas as a coolant
+42249,gas-discharge_tube,a tube in which an electric discharge takes place through a gas
+42250,gas-turbine_ship,a ship powered by a gas turbine
+42251,gas_bracket,a pipe with one or more burners projecting from a wall
+42252,gas_burner gas_jet,burner such that combustible gas issues from a nozzle to form a steady flame
+42253,gas_chamber death_chamber,instrument of execution consisting of a sealed chamber into which poison gas is introduced; used to kill people or animals
+42254,gas_company gas_service,a public utility that provides gas
+42255,gas_constant universal_gas_constant R,(physics) the universal constant in the gas equation: pressure times volume = R times temperature; equal to 8.3143 joules per kelvin per mole
+42256,gas_engine,an internal-combustion engine similar to a gasoline engine but using natural gas instead of gasoline vapor
+42257,gas_fitter,a workman who installs and repairs gas fixtures and appliances
+42258,gas_fitting,the fitting (pipes or valves or meters) that convey gas from the gas main to the gas fixtures of a building
+42259,gas_fixture,a device to convey illuminating gas from the pipe to the gas burner
+42260,gas_furnace,a furnace that burns gas
+42261,gas_gangrene clostridial_myonecrosis emphysematous_gangrene emphysematous_phlegmon gangrenous_emphysema gas_phlegmon progressive_emphysematous_necrosis,(pathology) a deadly form of gangrene usually caused by clostridium bacteria that produce toxins that cause tissue death; can be used as a bioweapon
+42262,gas_gun,a gun that fires gas shells
+42263,gas_guzzler,a car with relatively low fuel efficiency
+42264,gas_heat,heating system that burns natural gas
+42265,gas_heater,a heater that burns gas for heat
+42266,gas_holder gasometer,a large gas-tight spherical or cylindrical tank for holding gas to be used as fuel
+42267,gas_lamp,a lamp that burns illuminating gas
+42268,gas_line,a queue of vehicles waiting to purchase gasoline
+42269,gas_line,a pipeline used to transport natural gas; "the workmen broke through the gas line"
+42270,gas_main,a main that distributes gas
+42271,gas_maser,a maser in which microwave radiation interacts with gas molecules
+42272,gas_meter gasometer,a meter for measuring the amount of gas flowing through a particular pipe
+42273,gas_oil,an oil formed through distillation of petroleum of intermediate boiling range and viscosity
+42274,gas_oven,a cremation chamber fueled by gas
+42275,gas_oven,a domestic oven fueled by gas
+42276,gas_pressure,the pressure exerted by a gas
+42277,gas_pump gasoline_pump petrol_pump island_dispenser,a pump in a service station that draws gasoline from underground storage tanks
+42278,gas_range gas_stove gas_cooker,a range with gas rings and an oven for cooking with gas
+42279,gas_ring,gas burner consisting of a circular metal pipe with several small holes through which gas can escape to be burned
+42280,gas_shell,(military) bomb consisting of an explosive projectile filled with a toxic gas that is released when the bomb explodes
+42281,gas_system,facility (plant and equipment) for providing natural-gas service
+42282,gas_tank gasoline_tank petrol_tank,a tank for holding gasoline to supply a vehicle
+42283,gas_thermometer air_thermometer,thermometer that measures temperature by changes in the pressure of a gas kept at constant volume
+42284,gas_turbine,turbine that converts the chemical energy of a liquid fuel into mechanical energy by internal combustion; gaseous products of the fuel (which is burned in compressed air) are expanded through a turbine
+42285,gas_well,a well that yields or has yielded natural gas
+42286,gasbag windbag,a boring person who talks a great deal about uninteresting topics
+42287,gaseousness,having the consistency of a gas
+42288,gasfield,a region where there is natural gas underground
+42289,gasification,the process of changing into gas; "coal gas is produced by the gasification of coal"
+42290,gasket,seal consisting of a ring for packing pistons or sealing a pipe joint
+42291,gaskin,lower part of a horse's thigh between the hock and the stifle
+42292,gaslight,light yielded by the combustion of illuminating gas
+42293,gasman,someone employed by a gas company
+42294,gasmask respirator gas_helmet,a protective mask with a filter; protects the face and lungs against poisonous gases
+42295,gasohol,a gasoline substitute consisting of 90% gasoline and 10% grain alcohol from corn
+42296,gasoline gasolene gas petrol,a volatile flammable mixture of hydrocarbons (hexane and heptane and octane etc.) derived from petroleum; used mainly as a fuel in internal-combustion engines
+42297,gasoline_engine petrol_engine,an internal-combustion engine that burns gasoline; most automobiles are driven by gasoline engines
+42298,gasoline_gauge gasoline_gage gas_gauge gas_gage petrol_gauge petrol_gage,gauge that indicates the amount of gasoline left in the gasoline tank of a vehicle
+42299,gasoline_station gas_station filling_station petrol_station,a service station that sells gasoline
+42300,gasoline_tax,a tax on every gallon of gasoline sold
+42301,gasp pant,a short labored intake of breath with the mouth open; "she gave a gasp and fainted"
+42302,gassing,the process of interacting with gas
+42303,gassing,the deliberate act of poisoning some person or animal with gas
+42304,gasteromycete gastromycete,any fungus of the class Gasteromycetes
+42305,gastrectomy,surgical removal of all or part of the stomach
+42306,gastric_artery arteria_gastrica,the arteries that supply the walls of the stomach
+42307,gastric_digestion,the process of breaking down proteins by the action of the gastric juice in the stomach
+42308,gastric_juice gastric_acid,digestive secretions of the stomach glands consisting chiefly of hydrochloric acid and mucin and the enzymes pepsin and rennin and lipase
+42309,gastric_lavage,washing out the stomach with sterile water or a saltwater solution; removes blood or poisons; "when the doctor ordered a gastric lavage the hospital pumped out my stomach"
+42310,gastric_smear,alimentary tract smear of material obtained from the stomach
+42311,gastric_ulcer,a peptic ulcer of the stomach
+42312,gastric_vein vena_gastrica,one of several veins draining the stomach walls
+42313,gastrin,polypeptide hormone secreted by the mucous lining of the stomach; when peptides and amino acids are present in the small intestine the secretion of gastric acid is stimulated
+42314,gastritis,inflammation of the lining of the stomach; nausea and loss of appetite and discomfort after eating
+42315,gastrocnemius gastrocnemius_muscle,the muscle in the back part of the leg that forms the greater part of the calf; responsible for the plantar flexion of the foot
+42316,gastroenteritis stomach_flu intestinal_flu,inflammation of the stomach and intestines; can be caused by Salmonella enteritidis
+42317,gastroenterologist,a physician who specializes in diseases of the gastrointestinal tract
+42318,gastroenterology,the branch of medicine that studies the gastrointestinal tract and its diseases
+42319,gastroenterostomy,surgical creation of an opening between the stomach wall and the small intestines; performed when the normal opening has been eliminated
+42320,gastroesophageal_reflux esophageal_reflux oesophageal_reflux,reflux of stomach contents into the esophagus
+42321,gastrogavage,feeding a nutrient solution into the stomach through a tube through a surgically created opening
+42322,gastrointestinal_hormone GI_hormones,hormones that affect gastrointestinal functioning
+42323,gastromy,surgical incision into the stomach
+42324,gastronomy,a particular style of cookery (as of a region); "New England gastronomy"
+42325,gastronomy,the art and practice of choosing and preparing and eating good food
+42326,gastroomental_vein gastroepiploic_vein vena_gastroomentalis,one of two veins serving the great curvature of the stomach
+42327,gastropod univalve,a class of mollusks typically having a one-piece coiled shell and flattened muscular foot with a head bearing stalked eyes
+42328,gastroscope,a type of endoscope for visually examining the stomach
+42329,gastroscopy,visual examination of the stomach by means of a gastroscope inserted through the esophagus
+42330,gastrostomy,surgical creation of an opening through the abdominal wall into the stomach (as for gastrogavage)
+42331,gastrula,double-walled stage of the embryo resulting from invagination of the blastula; the outer layer of cells is the ectoderm and the inner layer differentiates into the mesoderm and endoderm
+42332,gastrulation,the process in which a gastrula develops from a blastula by the inward migration of cells
+42333,gasworks,the workplace where coal gas is manufactured
+42334,gat rod,a gangster's pistol
+42335,gate,total admission receipts at a sports event
+42336,gate,passageway (as in an air terminal) where passengers can embark or disembark
+42337,gate,a movable barrier in a fence or wall
+42338,gate logic_gate,a computer circuit with several inputs but only one output that can be activated by particular combinations of inputs
+42339,gateau,any of various rich and elaborate cakes
+42340,gatecrasher crasher unwelcome_guest,someone who gets in (to a party) without an invitation or without paying
+42341,gatehouse,a house built at a gateway; usually the gatekeeper's residence
+42342,gatekeeper,someone who controls access to something; "there are too many gatekeepers between the field officers and the chief"
+42343,gateleg_table,a drop-leaf table with the drop-leaves supported by hinged legs
+42344,gatepost,either of two posts that bound a gate
+42345,gateway,an entrance that can be closed by a gate
+42346,gateway_drug,a habit-forming drug that is not addictive but its use may lead to the use of other addictive drugs; "one college athlete recently called beer a gateway drug for young people"
+42347,gather gathering,sewing consisting of small folds or puckers made by pulling tight a thread in a line of stitching
+42348,gather gathering,the act of gathering something
+42349,gathered_skirt,a skirt whose fabric is drawn together around the waist
+42350,gatherer,a person who gathers; "they were a society of hunters and gatherers"
+42351,gathering assemblage,a group of persons together in one place
+42352,gathering_place,a favorite haunt where people gather
+42353,gaucho,a cowboy of the South American pampas
+42354,gaudery pomp,cheap or pretentious or vain display
+42355,gaudy,(Britain) a celebratory reunion feast or entertainment held a college
+42356,gauge,the distance between the rails of a railway or between the wheels of a train
+42357,gauge,the thickness of wire
+42358,gauge gage,a measuring instrument for measuring and indicating a quantity such as the thickness of wire or the amount of rain etc.
+42359,gauge standard_of_measurement,accepted or approved instance or example of a quantity or quality against which others are judged or measured or compared
+42360,gauge_boson,a particle that mediates the interaction of two elementary particles
+42361,gauntlet gantlet,to offer or accept a challenge; "threw down the gauntlet"; "took up the gauntlet"
+42362,gauntlet gantlet,a glove with long sleeve
+42363,gauntlet gantlet,a form of punishment in which a person is forced to run between two lines of men facing each other and armed with clubs or whips to beat the victim
+42364,gauntlet gantlet metal_glove,a glove of armored leather; protects the hand
+42365,gaur Bibos_gaurus,wild ox of mountainous areas of eastern India
+42366,gauss,a unit of magnetic flux density equal to 1 maxwell per square centimeter
+42367,gauze gauze_bandage,(medicine) bleached cotton cloth of plain weave used for bandages and dressings
+42368,gauze netting veiling,a net of transparent fabric with a loose open weave
+42369,gavel,a small mallet used by a presiding officer or a judge
+42370,gavial Gavialis_gangeticus,large fish-eating Indian crocodilian with a long slender snout
+42371,gaviiform_seabird,seabirds of the order Gaviiformes
+42372,gavotte,music composed in quadruple time for dancing the gavotte
+42373,gavotte,an old formal French dance in quadruple time
+42374,gawker,a spectator who stares stupidly without intelligent awareness
+42375,gawkiness ungainliness,the carriage of someone whose movements and posture are extremely ungainly and inelegant
+42376,gay_liberation_movement gay_lib,the movement aimed at liberating homosexuals from legal or social or economic oppression
+42377,gayal mithan Bibos_frontalis,ox of southeast Asia sometimes considered a domesticated breed of the gaur
+42378,gazania,any plant of the genus Gazania valued for their showy daisy flowers
+42379,gaze regard,a long fixed look; "he fixed his paternal gaze on me"
+42380,gazebo summerhouse,a small roofed building affording shade and rest
+42381,gazelle,small swift graceful antelope of Africa and Asia having lustrous eyes
+42382,gazette,a newspaper or official journal
+42383,gazetteer,a journalist who writes for a gazette
+42384,gazetteer,a geographical dictionary (as at the back of an atlas)
+42385,gazpacho,a soup made with chopped tomatoes and onions and cucumbers and peppers and herbs; served cold
+42386,gean mazzard mazzard_cherry,wild or seedling sweet cherry used as stock for grafting
+42387,gear gear_mechanism,a mechanism for transmitting motion for some specific purpose (as the steering gear of a vehicle)
+42388,gear gear_wheel geared_wheel cogwheel,a toothed wheel that engages another toothed mechanism in order to change the speed or direction of transmitted motion
+42389,gear paraphernalia appurtenance,equipment consisting of miscellaneous articles needed for a particular operation or sport etc.
+42390,gearbox gear_box gear_case,the shell (metal casing) in which a train of gears is sealed
+42391,gearing gear geartrain power_train train,wheelwork consisting of a connected set of rotating gears by which force is transmitted or motion or torque is changed; "the fool got his tie caught in the geartrain"
+42392,gearset,a set of gears
+42393,gearshift gearstick shifter gear_lever,a mechanical device for engaging and disengaging gears; "in Britain they call a gearshift a gear lever"
+42394,gebang_palm Corypha_utan Corypha_gebanga,large-leaved palm of Malay to Philippines and northern Australia; leaves used for thatching or plaiting into containers
+42395,gecko,any of various small chiefly tropical and usually nocturnal insectivorous terrestrial lizards typically with immovable eyelids; completely harmless
+42396,gee-gee,a word for horse used by children or in adult slang
+42397,geebung,any of numerous shrubs and small trees having hard narrow leaves and long-lasting yellow or white flowers followed by small edible but insipid fruits
+42398,geek,a carnival performer who does disgusting acts
+42399,geezer,a man who is (usually) old and/or eccentric
+42400,gefilte_fish fish_ball,well-seasoned balls of ground fish and eggs and crushed crumbs simmered in fish stock
+42401,geisha geisha_girl,a Japanese woman trained to entertain men with conversation and singing and dancing
+42402,gel colloidal_gel,a colloid in a more solid form than a sol
+42403,gel hair_gel,jellylike substance used in hair styling
+42404,gelatin gel,a thin translucent membrane used over stage lights for color effects
+42405,gelatin gelatine,a colorless water-soluble glutinous protein obtained from animal tissues such as bone and skin
+42406,gelatin jelly,an edible jelly (sweet or pungent) made with gelatin and used as a dessert or salad base or a coating for foods
+42407,gelatin_dessert,jellied dessert made with gelatin and fruit juice or water
+42408,gelatinousness glutinosity glutinousness,the property of having a viscosity like jelly
+42409,gelding,castrated male horse
+42410,gelechiid gelechiid_moth,small slender-winged moths whose larvae are agricultural pests
+42411,gelignite gelly,a type of dynamite in which the nitroglycerin is absorbed in a base of wood pulp and sodium or potassium nitrate
+42412,gem gemstone stone,a crystalline rock that can be cut and polished for jewelry; "he had the gem set in a ring for his wife"; "she had jewels made of all the rarest stones"
+42413,gem treasure,art highly prized for its beauty or perfection
+42414,gem_cutter,one who cuts and shapes precious stones
+42415,gemfibrozil Lopid,medication (trade name Lopid) used to lower the levels of triglyceride in the blood
+42416,geminate,a doubled or long consonant; "the `n' in `thinness' is a geminate"
+42417,gemination,the doubling of a word or phrase (as for rhetorical effect)
+42418,gemma,small asexual reproductive structure in e.g. liverworts and mosses that detaches from the parent and develops into a new individual
+42419,gemmule,the physically discrete element that Darwin proposed as responsible for heredity
+42420,gempylid,snake mackerels; elongated marine fishes with oily flesh; resembles mackerels; found worldwide
+42421,gemsbok gemsbuck Oryx_gazella,large South African oryx with a broad black band along its flanks
+42422,gen,informal term for information; "give me the gen on your new line of computers"
+42423,gendarme,a French policeman
+42424,gendarmerie gendarmery,French police force; a group of gendarmes or gendarmes collectively
+42425,gender grammatical_gender,a grammatical category in inflected languages governing the agreement between nouns and pronouns and adjectives; in some languages it is quite arbitrary but in Indo-European languages it is usually based on sex or animateness
+42426,gender_agreement,agreement in grammatical gender between words in the same construction
+42427,gender_identity,your identity as it is experienced with regard to your individuality as male or female; awareness normally begin in infancy and is reinforced during adolescence
+42428,gender_role,the overt expression of attitudes that indicate to others the degree of your maleness or femaleness; "your gender role is the public expression of your gender identity"
+42429,gene cistron factor,(genetics) a segment of DNA that is involved in producing a polypeptide chain; it can include regions preceding and following the coding DNA as well as introns between the exons; it is considered a unit of heredity; "genes were formerly called factors"
+42430,gene_chip DNA_chip,a microchip that holds DNA probes that form half of the DNA double helix and can recognize DNA from samples being tested
+42431,gene_expression,conversion of the information encoded in a gene first into messenger RNA and then to a protein
+42432,genealogist,an expert in genealogy
+42433,genealogy,the study or investigation of ancestry and family history
+42434,genealogy family_tree,successive generations of kin
+42435,general,a fact about the whole (as opposed to particular); "he discussed the general but neglected the particular"
+42436,general full_general,a general officer of the highest rank
+42437,general superior_general,the head of a religious order or congregation
+42438,general-purpose_bomb GP_bomb,a large bomb (500 to 2,000 pounds that is 50% explosive) whose explosion creates a blast and whose metal casing creates some fragmentation effect
+42439,general_anesthesia general_anaesthesia,a state of total unconsciousness resulting from anesthetic drugs (as for a major surgical operation)
+42440,general_anesthetic general_anaesthetic,an anesthetic that anesthetizes the entire body and causes loss of consciousness
+42441,general_delivery poste_restante,the part of a post office that handles mail for persons who call for it
+42442,general_election,a national or state election; candidates are chosen in all constituencies
+42443,general_ledger,the ledger that contains all of the financial accounts of a business; contains offsetting debit and credit accounts (including control accounts)
+42444,general_lien,a lien on all the property owned by a debtor and not just a specific property
+42445,general_manager,the highest ranking manager
+42446,general_officer,officers in the Army or Air Force or Marines above the rank of colonel
+42447,general_practitioner GP,a physician who is not a specialist but treats all illnesses
+42448,general_relativity general_theory_of_relativity general_relativity_theory Einstein's_general_theory_of_relativity,a generalization of special relativity to include gravity (based on the principle of equivalence)
+42449,general_staff,military officers assigned to assist a senior officer in planning military policy
+42450,general_verdict,an ordinary verdict declaring which party prevails without any special findings of fact
+42451,generality,the quality of being general or widespread or having general applicability
+42452,generalization generalisation generality,an idea or conclusion having general application; "he spoke in broad generalities"
+42453,generalization generalisation induction inductive_reasoning,reasoning from detailed facts to general principles
+42454,generalization generalisation stimulus_generalization stimulus_generalisation,(psychology) transfer of a response learned to one stimulus to a similar stimulus
+42455,generalized_anxiety_disorder GAD anxiety_reaction,an anxiety disorder characterized by chronic free-floating anxiety and such symptoms as tension or sweating or trembling or lightheadedness or irritability etc that has lasted for more than six months
+42456,generally_accepted_accounting_principles GAAP,a collection of rules and procedures and conventions that define accepted accounting practice; includes broad guidelines as well as detailed procedures
+42457,generalship,the leadership ability of a military general
+42458,generalship generalcy,the office and authority of a general
+42459,generation,a stage of technological development or innovation; "the third generation of computers"
+42460,generation,the normal time between successive generations; "they had to wait a generation for that prejudice to fade"
+42461,generation,group of genetically related organisms constituting a single step in the line of descent
+42462,generation,the production of heat or electricity; "dams were built for the generation of electricity"
+42463,generation multiplication propagation,the act of producing offspring or multiplying by such production
+42464,generation_X gen_X,the generation following the baby boom (especially Americans and Canadians born in the 1960s and 1970s)
+42465,generation_gap,a difference between the views of young people and their parents
+42466,generative_grammar,(linguistics) a type of grammar that describes syntax in terms of a set of logical rules that can generate all and only the infinite number of grammatical sentences in a language and assigns them all the correct structural description
+42467,generator,an electronic device for producing a signal voltage
+42468,generator,an apparatus that produces a vapor or gas
+42469,generator,engine that converts mechanical energy into electrical energy by electromagnetic induction
+42470,generator source author,someone who originates or causes or initiates something; "he was the generator of several complaints"
+42471,generic,any product that can be sold without a brand name
+42472,generic generic_wine,wine that does not meet the minimum qualifications and standards for use of a designation by appellation of origin (where the grapes are grown) or by varietal content; may only be labeled by proprietary (made-up) name, by general color (such as `vin rouge', `vino rosso', `rotwein', `red wine', etc.), or by general class (as `vin ordinaire', `vin de table', `vino da tavola', `tafelwein', `table wine', etc.)
+42473,generic_drug,when the patent protection for a brand-name drug expires generic versions of the drug can be offered for sale if the FDA agrees; "generic drugs are usually cheaper than brand-name drugs"
+42474,generic_noun,a noun that does not specify either masculine or feminine gender
+42475,generosity generousness,the trait of being willing to give your money or time
+42476,generosity unselfishness,acting generously
+42477,genesis generation,a coming into being
+42478,genet Genetta_genetta,agile Old World viverrine having a spotted coat and long ringed tail
+42479,genetic_code,the ordering of nucleotides in DNA molecules that carries the genetic information in living cells
+42480,genetic_counseling,guidance for prospective parents on the likelihood of genetic disorders in their future children
+42481,genetic_disease genetic_disorder genetic_abnormality genetic_defect congenital_disease inherited_disease inherited_disorder hereditary_disease hereditary_condition,a disease or disorder that is inherited genetically
+42482,genetic_engineering gene-splicing recombinant_DNA_technology,the technology of preparing recombinant DNA in vitro by cutting up DNA molecules and splicing together fragments from more than one organism
+42483,genetic_map,graphical representation of the arrangement of genes on a chromosome
+42484,genetic_marker,a specific gene that produces a recognizable trait and can be used in family or population studies
+42485,genetic_profiling genetic_fingerprinting,the procedure of analyzing the DNA in samples of a person's body tissue or body fluid for the purpose of identification
+42486,genetic_screening,analyzing a group of people to determine genetic susceptibility to a particular disease; "genetic screening of infants for phenylketonuria"
+42487,geneticism,the belief that all human characteristics are determined genetically
+42488,geneticist,a biologist who specializes in genetics
+42489,genetics genetic_science,the branch of biology that studies heredity and variation in organisms
+42490,geneva Holland_gin Hollands,gin made in the Netherlands
+42491,genicular_vein vena_genus,veins that drain blood from structures around the knee; empty into the popliteal vein
+42492,geniculate_body,one of four small oval masses that protrude slightly from the underside of the thalamus and function as synaptic centers on the way to the cerebral cortex
+42493,genie jinni jinnee djinni djinny djinn,(Islam) an invisible spirit mentioned in the Koran and believed by Muslims to inhabit the earth and influence mankind by appearing in the form of humans or animals
+42494,genip Spanish_lime,round one-inch Caribbean fruit with green leathery skin and sweet juicy translucent pulp; eaten like grapes
+42495,genipa,any tree of the genus Genipa bearing yellow flowers and edible fruit with a thick rind
+42496,genipap genipap_fruit,a succulent orange-sized tropical fruit with a thick rind
+42497,genipap_fruit jagua marmalade_box Genipa_Americana,tree of the West Indies and northern South America bearing succulent edible orange-sized fruit
+42498,genital_herpes herpes_genitalis,an infection caused by herpes simplex virus type 2 (HSV-2) that is usually transmitted by sexual contact; marked by recurrent attacks of painful eruptions on the skin and mucous membranes of the genital area
+42499,genital_personality,(psychoanalysis) the mature personality which is not dominated by infantile pleasure drives
+42500,genital_stage genital_phase,(psychoanalysis) the fifth sexual and social stage in a person's development occurring during adolescence; interest focuses on sexual activity
+42501,genital_torture,blunt or penetrating trauma or rape (vaginal or anal)
+42502,genital_wart venereal_wart condyloma_acuminatum verruca_acuminata,a small benign wart on or around the genitals and anus
+42503,genitalia genital_organ genitals private_parts privates crotch,external sex organ
+42504,genitive genitive_case possessive possessive_case,the case expressing ownership
+42505,genitor,a natural father or mother
+42506,genius mastermind brain brainiac Einstein,someone who has exceptional intellectual ability and originality; "Mozart was a child genius"; "he's smart but he's no Einstein"
+42507,genius wizardry,exceptional creative ability
+42508,genius_loci,the special atmosphere of a place
+42509,genius_loci,the guardian spirit of a place
+42510,genlisea,rootless carnivorous swamp plants having at the base of the stem a rosette of foliage and leaves consisting of slender tubes swollen in the middle to form traps; each tube passes into two long spirally twisted arms with stiff hairs
+42511,genocide race_murder racial_extermination,systematic killing of a racial or cultural group
+42512,genoise,rich and delicate Italian sponge cake
+42513,genome,the ordering of genes in a haploid set of chromosomes of a particular organism; the full DNA sequence of an organism; "the human genome contains approximately three billion chemical base pairs"
+42514,genomics,the branch of genetics that studies organisms in terms of their genomes (their full DNA sequences)
+42515,genotype,a group of organisms sharing a specific genetic constitution
+42516,genotype genetic_constitution,the particular alleles at specified loci present in an organism
+42517,genre,a kind of literary or artistic work
+42518,genre,a class of art (or artistic endeavor) having a characteristic form or technique
+42519,genre_painter,a painter of scenes from everyday life
+42520,genre_painting,a genre depicting everyday life
+42521,gent,informal abbreviation of `gentleman'
+42522,gentamicin Garamycin,an antibiotic (trade name Garamycin) that is derived from an actinomycete; used in treating infections of the urinary tract
+42523,gentian,any of various plants of the family Gentianaceae especially the genera Gentiana and Gentianella and Gentianopsis
+42524,gentian_violet crystal_violet,a green crystal (violet in water) used as a dye or stain or bactericide or fungicide or anthelmintic or burn treatment
+42525,gentianella Gentiana_acaulis,low-growing alpine plant cultivated for its dark glossy green leaves in basal rosettes and showy solitary bell-shaped blue flowers
+42526,gentile,a person who is not a member of one's own religion; used in this sense by Mormons and Hindus
+42527,gentile,a Christian; "Christians refer to themselves as gentiles"
+42528,gentile non-Jew goy,a Christian as contrasted with a Jew
+42529,gentle_breeze,wind moving 8-12 knots; 3 on the Beaufort scale
+42530,gentlefolk,people of good family and breeding and high social status
+42531,gentleman,a man of refinement
+42532,gentleman-at-arms,one of 40 gentlemen who attend the British sovereign on state occasions
+42533,gentlemen's_agreement,a personal agreement based on honor and not legally binding
+42534,gentleness softness mildness,acting in a manner that is gentle and mild and even-tempered; "his fingers have learned gentleness"; "suddenly her gigantic power melted into softness for the baby"; "even in the pulpit there are moments when mildness of manner is not enough"
+42535,gentrification,the restoration of run-down urban areas by the middle class (resulting in the displacement of low-income residents)
+42536,gentry aristocracy,the most powerful members of a society
+42537,genuflection genuflexion,the act of bending the knees in worship or reverence
+42538,genuineness,the state of being genuine
+42539,genus,(biology) taxonomic group containing one or more species
+42540,genus,a general kind of something; "ignore the genus communism"
+42541,genus_Abelia,chiefly east Asian shrubs
+42542,genus_Acacia,large genus of shrubs and trees and some woody vines of Central and South America, Africa, Australia and Polynesia: wattle; mimosa
+42543,genus_Acanthus,bear's breeches
+42544,genus_Achillea,perennial often aromatic and sometimes mat-forming herbs of north temperate regions: yarrow; milfoil
+42545,genus_Achimenes,genus of tropical perennial American herbs
+42546,genus_Actinomyces,type genus of the family Actinomycetaceae
+42547,genus_Addax,genus of antelopes of northern African deserts
+42548,genus_Aegyptopithecus,a genus of Hominoidea
+42549,genus_Aepyornis,type genus of the Aepyornidae: elephant birds
+42550,genus_Aerides,epiphytic orchids of tropical Asia having stiff leaves and fragrant white flowers in arching racemes
+42551,genus_Aeschynanthus,large genus of East Indian ornamental woody epiphytic plants
+42552,genus_Afropavo,Congo peafowl
+42553,genus_Agama,type genus of the Agamidae
+42554,genus_Agapanthus,small genus of South African evergreen or deciduous plants; sometimes placed in the family or subfamily Alliaceae
+42555,genus_Agave,type genus of the Agavaceae; in some classifications considered a genus of Amaryllidaceae
+42556,genus_Ageratum,genus of tropical American herbs grown for their flowers
+42557,genus_Agrimonia,genus of herbs found chiefly in north temperate regions having pinnate leaves and yellow flowers followed by bristly fruit
+42558,genus_Ailanthus,small genus of east Asian and Chinese trees with odd-pinnate leaves and long twisted samaras
+42559,genus_Albizia genus_Albizzia,large genus of unarmed trees and shrubs of Old World tropics
+42560,genus_Albuca,genus of bulbous plants of South Africa; sometimes placed in subfamily Hyacinthaceae
+42561,genus_Allamanda,genus of tropical American woody vines
+42562,genus_Alligator,type genus of the Alligatoridae
+42563,genus_Allosaurus genus_Antrodemus,carnivorous dinosaur of North America; late Jurassic
+42564,genus_Alocasia,tropical Asiatic herbs similar to Colocasia but distinguished by a large sterile spadix
+42565,genus_Aloe,large genus of chiefly African liliaceous plants; in some systems placed in family Aloeaceae
+42566,genus_Alstroemeria,genus of showy South American herbs with leafy stems; sometimes placed in family Alstroemeriaceae or in family Amaryllidaceae
+42567,genus_Althaea,hollyhocks; in some classification systems synonymous with genus Alcea
+42568,genus_Amaryllis,type genus of the Amaryllidaceae; bulbous flowering plants of southern Africa
+42569,genus_Ambrosia,comprising the ragweeds; in some classification considered the type genus of a separate family Ambrosiaceae
+42570,genus_Ammobium,small genus of Australian herbs grown for their flowers
+42571,genus_Amoeba,protozoan inhabiting moist soils or bottom vegetation in fresh or salt water
+42572,genus_Amorpha,American herbs or shrubs usually growing in dry sunny habitats on prairies and hillsides
+42573,genus_Amorphophallus,genus of large tropical east Asian cormous aroids: devil's tongue; snake palm
+42574,genus_Amphioxus,type genus of the Amphioxidae
+42575,genus_Amphiuma,congo snakes
+42576,genus_Anatotitan,genus of large duck-billed dinosaurs; late Cretaceous
+42577,genus_Anchusa,rough and hairy Old World herbs
+42578,genus_Andrena,a solitary burrowing short-tongued bee
+42579,genus_Andromeda,low-growing shrubs of northern regions of northern hemisphere
+42580,genus_Andryala,a genus of hardy hairy latex-producing perennials of Mediterranean area
+42581,genus_Anemone,perennial herbs with tuberous roots and beautiful flowers; of north and south temperate regions
+42582,genus_Angelica,biennial or perennial herbs of the northern hemisphere; have a taproot
+42583,genus_Angiopteris,one species: tree fern
+42584,genus_Angrecum Angraecum genus_Angraecum,genus of tropical Old World epiphytic orchids with showy flowers sometimes grotesque
+42585,genus_Anhinga,type genus of the Anhingidae
+42586,genus_Ankylosaurus,armored herbivorous dinosaurs of the Cretaceous
+42587,genus_Anoa,a genus of mammals of the family Bovidae
+42588,genus_Anomalops,type genus of the family Anomalopidae
+42589,genus_Anomalopteryx,small moas
+42590,genus_Anthurium,large genus of often epiphytic evergreen tropical American plants often cultivated as houseplants
+42591,genus_Apatosaurus genus_Brontosaurus,large quadrupedal herbivorous dinosaurs with very long neck and tail; late Jurassic
+42592,genus_Appendicularia,a genus of chordates in the class Larvacea
+42593,genus_Apteryx,type genus of the Apterygidae: kiwis
+42594,genus_Aquilegia,columbine
+42595,genus_Aralia,type genus of Araliaceae; large widely distributed genus of shrubs and trees and vines: spikenard; Hercules'-club
+42596,genus_Araucaria,a genus of the araucaria family
+42597,genus_Arbutus,large evergreen shrubs and trees of southern Europe and western North America: strawberry tree; madrona
+42598,genus_Arcella,type genus of the Arcellidae
+42599,genus_Archaeopteryx genus_Archeopteryx,a genus of fossil birds
+42600,genus_Archaeornis,a genus of fossil bird
+42601,genus_Architeuthis,giant squid
+42602,genus_Areca,a monocotyledonous genus of palm trees
+42603,genus_Arethusa,genus of bog orchids of North America and Japan
+42604,genus_Argemone,prickly poppies
+42605,genus_Argentinosaurus,enormous dinosaur of the middle Cretaceous found in Argentina
+42606,genus_Arnica,large genus of herbs of north temperate and Arctic regions
+42607,genus_Artemisia,usually aromatic shrubs or herbs of north temperate regions and South Africa and western South America: wormwood; sagebrush; mugwort; tarragon
+42608,genus_Arum,type genus of the Araceae: tuberous perennial herbs of Europe and Asia with usually heart-shaped leaves
+42609,genus_Asparagus,large genus of Old World perennial herbs with erect or spreading or climbing stems and small scalelike leaves and inconspicuous flowers; sometimes placed in family Asparagaceae
+42610,genus_Aspidistra,genus of eastern Asiatic herbs; sometimes placed in the family Convallariaceae
+42611,genus_Aster,large genus of herbs widely cultivated for their daisylike flowers
+42612,genus_Astilbe,chiefly Asiatic perennials: spirea
+42613,genus_Astrantia,a genus of Eurasian herbs of the family Umbelliferae with aromatic roots and palmate leaves and showy flowers
+42614,genus_Australopithecus Australopithecus,extinct genus of African hominid
+42615,genus_Ayapana,genus of tropical American herbs sometimes included in genus Eupatorium
+42616,genus_Babesia genus_Piroplasma,type genus of the family Babesiidae
+42617,genus_Bacillus,type genus of the Bacillaceae; includes many saprophytes important in decay of organic matter and a number of parasites
+42618,genus_Banksia,important genus of Australian evergreen shrubs or trees with alternate leathery leaves and yellowish flowers
+42619,genus_Barosaurus,huge quadrupedal herbivorous dinosaur; late Jurassic
+42620,genus_Begonia,large genus of tropical succulent plants widely cultivated
+42621,genus_Bergenia,genus of perennial spring-blooming rhizomatous herbs with thick evergreen leaves; eastern Asia
+42622,genus_Beroe,coextensive with the class Nuda
+42623,genus_Bison,sometimes considered a subgenus of genus Bos: American buffalo
+42624,genus_Bletia,genus of tropical American terrestrial orchids with large purple or pink flowers
+42625,genus_Bocconia,tropical American trees or shrubs closely related to genus Macleaya
+42626,genus_Borrelia,small flexible parasitic spirochetes having three to five wavy spirals
+42627,genus_Bougainvillea Bougainvillaea genus_Bougainvillaea,ornamental tropical woody vines
+42628,genus_Brassavola,genus of tropical American epiphytic or lithophytic rhizomatous orchids
+42629,genus_Brodiaea,genus of western United States bulbous plants with basal leaves and variously colored flowers; sometimes placed in family Alliaceae
+42630,genus_Browallia,small genus of tropical South American annuals
+42631,genus_Bryanthus,a genus allied to and once included in genus Phyllodoce
+42632,genus_Bryonia,climbing perennial herbs: bryony
+42633,genus_Buckleya,small genus of Asiatic and American parasitic shrubs
+42634,genus_Buddleia,shrubs or trees of warm regions
+42635,genus_Bufo,type genus of the Bufonidae; common toads of New and Old Worlds
+42636,genus_Cabassous,solely the tatouay
+42637,genus_Caiman,caimans
+42638,genus_Caladenia,terrestrial orchids of Australia to New Caledonia
+42639,genus_Caladium,small genus of tropical South American tuberous perennials with large variously colored leaves
+42640,genus_Calamus,distinctive often spiny-stemmed palms found as climbers in tropical and subtropical forest
+42641,genus_Calanthe,large and widely distributed genus of terrestrial orchids
+42642,genus_Calceolaria,large genus of tropical American herbs and shrubs with showy cymose flowers
+42643,genus_Calendula,marigold
+42644,genus_Calliandra,genus of pinnate-leaved shrubs and small trees of tropical and subtropical North and South America and India and West Africa
+42645,genus_Calosoma,genus of large predaceous ground beetles that feed on injurious caterpillars
+42646,genus_Calypso,one species found throughout much of northern North America and Eurasia
+42647,genus_Camellia,tropical Asiatic evergreen shrubs or small trees
+42648,genus_Campanula,large genus of herbs grown for their blossoms: bellflowers
+42649,genus_Candida,a genus of yeastlike imperfect fungi; sometimes included in genus Monilia of the family Moniliaceae
+42650,genus_Canella,one species
+42651,genus_Canna,type and sole genus of the Cannaceae: perennial lily-like herbs of New World tropics
+42652,genus_Cannabis,hemp: genus of coarse annuals native to central Asia and widely naturalized in north temperate regions; in some classifications included in the family Moraceae
+42653,genus_Capsicum Capsicum,chiefly tropical perennial shrubby plants having many-seeded fruits: sweet and hot peppers
+42654,genus_Caragana,large genus of Asiatic deciduous shrubs or small trees
+42655,genus_Carissa,Old World genus of tropical evergreen usually spiny shrubs
+42656,genus_Carpenteria,one species; sometimes placed in family Saxifragaceae
+42657,genus_Cassia Cassia,some genus Cassia species often classified as members of the genus Senna or genus Chamaecrista
+42658,genus_Casuarina,genus of trees and shrubs widely naturalized in southern United States and West Indies; coextensive with the family Casuarinaceae and order Casuarinales
+42659,genus_Catalpa,a dicotyledonous genus of plants belonging to the family Bignoniaceae; has large flowers (white or mottled) and long terete pods
+42660,genus_Catananche,genus of Mediterranean herbs: cupid's dart
+42661,genus_Cathaya,one species; related to Pseudotsuga and Larix
+42662,genus_Cattleya,large and highly valued genus of beautiful tropical American epiphytic or lithophytic orchids; the typical orchids; known in many varieties
+42663,genus_Cerastes Aspis genus_Aspis,horned vipers
+42664,genus_Ceratodus,type genus of the Ceratodontidae: extinct genus of lungfishes
+42665,genus_Ceratosaurus,primitive saurischian carnivorous dinosaurs
+42666,genus_Ceratozamia,small genus of Mexican cycads; sometimes classified in family Cycadaceae
+42667,genus_Chaenactis,genus of flowering herbs of western United States
+42668,genus_Chaetodon,type genus of the Chaetodontidae
+42669,genus_Chimaera,type genus of the Chimaeridae
+42670,genus_Chinchilla,type genus of the Chinchillidae
+42671,genus_Chiton,a genus of Polyplacophora
+42672,genus_Chlamydia,type genus of the family Chlamydiaceae: disease-causing parasites
+42673,genus_Chlorella,nonmotile unicellular green algae potentially important as source of high-grade protein and B-complex vitamins
+42674,genus_Chlorophyllum,a genus of fungus belonging to the family Lepiotaceae
+42675,genus_Christella,medium to large terrestrial ferns of tropical forests of Old World to Americas
+42676,genus_Chrysanthemum,in some classifications many plants usually assigned to the genus Chrysanthemum have been divided among other genera: e.g. Argyranthemum; Dendranthema; Leucanthemum; Tanacetum
+42677,genus_Chunga,a genus of Cariamidae
+42678,genus_Cicada,type genus of the Cicadidae: cicadas
+42679,genus_Cinchona genus_Chinchona,large genus of trees of Andean region of South America having medicinal bark
+42680,genus_Citrus,orange; lemon; lime; etc.
+42681,genus_Clematis,large genus of deciduous or evergreen woody vines or erect herbs
+42682,genus_Cleome Cleome,tropical and subtropical annual or perennial herbs or low shrubs
+42683,genus_Clianthus,genus of semi-prostrate Australasian shrubs or vines
+42684,genus_Clintonia,sometimes placed in family Convallariaceae
+42685,genus_Clostridium,anaerobic or micro-aerophilic rod-shaped or spindle-shaped saprophytes; nearly cosmopolitan in soil, animal intestines, and dung
+42686,genus_Clusia,tropical American aromatic trees or shrubs; often epiphytic; some stranglers
+42687,genus_Coccus,type genus of the Coccidae
+42688,genus_Coelogyne,large diverse genus of tropical Asiatic epiphytic orchids
+42689,genus_Coelophysis,late Triassic carnivorous saurischian dinosaurs
+42690,genus_Coleus,genus of Old World tropical plants cultivated for their variegated leaves; various plants sometimes placed in genera Plectranthus or Solenostemon
+42691,genus_Colobus,a genus of Cercopithecidae
+42692,genus_Columnea,genus of tropical American subshrubs and lianas
+42693,genus_Combretum,type genus of the Combretaceae: tropical and subtropical small shrubs and trees
+42694,genus_Commelina,type genus of the Commelinaceae; large genus of herbs of branching or creeping habit: day flower; widow's tears
+42695,genus_Compsognathus,a reptile genus of Theropoda
+42696,genus_Convolvulus,genus of mostly climbing or scrambling herbs and shrubs: bindweed
+42697,genus_Coreopsis,genus of American plants widely cultivated for their flowers
+42698,genus_Coronilla,genus of Old World shrubs and herbs
+42699,genus_Corozo,a monocotyledonous genus of tropical American palm trees
+42700,genus_Corynebacterium,the type genus of the family Corynebacteriaceae which is widely distributed in nature; the best known are parasites and pathogens of humans and domestic animals
+42701,genus_Coryphantha,mainly globose cacti of southwestern United States and Mexico covered with many nodules; superficially resembling and formerly included in genus Mammillaria
+42702,genus_Corythosaurus,genus of duck-billed dinosaurs of late Cretaceous
+42703,genus_Coscoroba,a genus of Anatidae
+42704,genus_Cosmos,genus of tropical American plants cultivated for their colorful flowers
+42705,genus_Costia,a genus of flagellate protoctist
+42706,genus_Cotinga,type genus of the Cotingidae: cotingas
+42707,genus_Cotoneaster,genus of deciduous or evergreen Old World shrubs widely cultivated
+42708,genus_Crocus,a monocotyledonous genus of the family Iridaceae
+42709,genus_Crotalaria,large genus of herbs with simple leaves and racemes of yellow flowers; mainly of tropical Africa
+42710,genus_Croton,tropical shrubs and herbs; source of croton oil
+42711,genus_Cryptocoryne,water trumpet; aquatic herbs having broad leaves and long slender spathes; often used as aquarium plants
+42712,genus_Cyclamen,genus of widely cultivated flowering Eurasian herbs with centrally depressed rounded tubers and rounded heart-shaped leaves
+42713,genus_Cyclops,copepod water fleas
+42714,genus_Cymbidium,genus of tropical epiphytic or terrestrial Old World orchids; one of the most popular orchid genera
+42715,genus_Cynancum,genus of perennial tropical African lianas
+42716,genus_Cyrilla,one species: trees and shrubs having flowers with acute or twisted petals and wingless fruit
+42717,genus_Dahlia,genus of perennial tuberous plants of Mexico and Central America
+42718,genus_Daphne,usually evergreen Eurasian shrubs
+42719,genus_Daphnia,water fleas
+42720,genus_Davallia,Old World tropical fern; in some classification systems placed directly in family Polypodiaceae
+42721,genus_Deinocheirus,a reptile genus of Ornithomimida
+42722,genus_Deinonychus,advanced bipedal carnivorous dinosaur
+42723,genus_Delphinium,large genus of chiefly perennial erect branching herbs of north temperate regions some poisonous
+42724,genus_Dendrobium,large genus and variable genus of chiefly epiphytic or lithophytic orchids of tropical and subtropical Asia and Australasia
+42725,genus_Derris,genus of Old World tropical shrubs and woody vines
+42726,genus_Deutzia,genus of ornamental mostly deciduous shrubs native to Asia and Central America; widespread in cultivation; sometimes placed in family Saxifragaceae
+42727,genus_Diapensia,type genus of Diapensiaceae
+42728,genus_Diapheromera,a genus of Phasmidae
+42729,genus_Dicamptodon,type genus of the Dicamptodontidae
+42730,genus_Dichondra,genus of chiefly tropical prostrate perennial herbs with creeping stems that root at the nodes
+42731,genus_Dictostylium,genus of slime molds that grow on dung and decaying vegetation
+42732,genus_Difflugia,genus of protozoans related to ameba
+42733,genus_Digitalis,genus of Eurasian herbs having alternate leaves and racemes of showy bell-shaped flowers
+42734,genus_Dillenia,East Indian and Australian shrubs and trees having panicles of large white or yellow flowers
+42735,genus_Dimetrodon,a reptile genus of Pelycosauria
+42736,genus_Diomedea,type of the Diomedeidae
+42737,genus_Dioon,small genus of arborescent cycads of Mexico and Central America; sometimes classified in family Cycadaceae
+42738,genus_Diplococcus,a genus of bacteria
+42739,genus_Diplodocus,a reptile genus of the suborder Sauropoda
+42740,genus_Disa,genus of showy tropical African terrestrial orchids
+42741,genus_Discina,a genus of fungi of the family Helvellaceae with a cup-shaped or saucer-shaped fruiting body and ornamented spores
+42742,genus_Doliolum,type genus of the Doliolidae
+42743,genus_Dombeya,genus of African shrubs or small trees
+42744,genus_Doodia Doodia,in some classification systems placed in family Polypodiaceae; small terrestrial colony-forming ferns of Australasia
+42745,genus_Draba,large genus of low tufted herbs of temperate and Arctic regions
+42746,genus_Dracaena,Old World tropical plants with branches ending in tufts of sword-shaped leaves; in some classifications considered a genus of Liliaceae
+42747,genus_Dracontium,small genus of tropical American cormous herbs
+42748,genus_Drosophila,a genus of Drosophilidae
+42749,genus_Drypis,one species
+42750,genus_Dugong,type genus of the Dugongidae comprising only the dugongs
+42751,genus_Echinocactus,globular or cylindrical cacti; southwestern United States to Brazil
+42752,genus_Echinococcus,tapeworms
+42753,genus_Edaphosaurus,type genus of the Edaphosauridae
+42754,genus_Edmontosaurus,duck-billed dinosaurs of Canada
+42755,genus_Eimeria,type genus of the family Eimeriidae; includes serious pathogens
+42756,genus_Elsholtzia,genus of Asiatic and African aromatic herbs
+42757,genus_Encephalartos,genus of arborescent African cycads; sometimes classified in family Cycadaceae
+42758,genus_Engelmannia,one species: North American herbs that resemble sunflowers
+42759,genus_Eoraptor,primitive theropod found in Argentina; early Triassic
+42760,genus_Epacris,type genus of the Epacridaceae: Australian heath
+42761,genus_Ephedra,type and sole genus of Ephedraceae: tropical and subtropical evergreen shrubby or creeping plants native to dry and inhospitable regions
+42762,genus_Epiphyllum,small genus of tropical American (mainly Central America) cacti
+42763,genus_Episcia,genus of tropical American herbs having soft hairy foliage
+42764,genus_Eptatretus,a genus of fossil fish of the family Myxinidae
+42765,genus_Erechtites,coarse herbs with whitish discoid flower heads and silky pappus
+42766,genus_Erica,large genus of low much-branched woody evergreens ranging from prostrate subshrubs to trees: true heaths
+42767,genus_Eriogonum,North American herbs of the buckwheat family
+42768,genus_Erwinia,a genus of bacteria
+42769,genus_Erythrina,genus of attractive tropical shrubs or trees with usually red flowers
+42770,genus_Escherichia,a genus of bacteria
+42771,genus_Eucalyptus,tall trees native to the Australian region; source of timber and medicinal oils from the aromatic leaves
+42772,genus_Euglena,type genus of the family Euglenaceae: green algae with a single flagellum
+42773,genus_Feijoa,small South American shrubs or trees
+42774,genus_Filago,genus of small woolly herbs
+42775,genus_Forestiera,genus of often spiny American shrubs and trees
+42776,genus_Forsythia,forsythia
+42777,genus_Fothergilla Fothergilla,small genus of deciduous shrubs of the southeastern United States
+42778,genus_Freesia,cormous perennial herbs; native to South Africa
+42779,genus_Fuchsia,large genus of decorative tropical shrubs with pendulous tetramerous flowers
+42780,genus_Fucus,type genus of the family Fucaceae: cartilaginous brown algae
+42781,genus_Fusarium,a form genus of mostly plant parasites some of which cause dry rot; in humans a species can cause inflammation of cornea leading to blindness
+42782,genus_Gaillardia,genus of western American hairy herbs with showy flowers
+42783,genus_Galago,bush babies
+42784,genus_Galax,evergreen herbs of southeastern United States
+42785,genus_Galictis,alternative name for the genus Grison
+42786,genus_Gardenia,large genus of attractive Old World tropical shrubs and small trees
+42787,genus_Gastrolobium,genus of Australian evergreen shrubs poisonous to livestock: poison bush
+42788,genus_Gazania,genus of tomentose tropical African herbs with milky sap
+42789,genus_Genipa,tropical American evergreen trees or shrubs bearing yellow flowers and succulent edible fruit with a thick rind
+42790,genus_Genlisea,small genus of carnivorous plants of tropical African swamps
+42791,genus_Geranium,genus of mostly North American geraniums: cranesbills
+42792,genus_Gerardia,genus of annual or perennial herbs with showy pink or purple or yellow flowers; plants often assigned to genera Aureolaria or Agalinis
+42793,genus_Gesneria,large genus of tropical American herbs having showy tubular flowers
+42794,genus_Giardia,flagellates parasitic in intestines of vertebrates
+42795,genus_Ginkgo,sole surviving genus of the Ginkgoaceae
+42796,genus_Gladiolus,gladiolas
+42797,genus_Gliricidia,small genus of low-branching profusely flowering trees of tropical America
+42798,genus_Globigerina,type genus of the family Globigerinidae
+42799,genus_Gloriosa,sometimes placed in family Colchicaceae; one species: glory lily
+42800,genus_Glossina,type genus of the Glossinidae: tsetse flies
+42801,genus_Gloxinia,small genus of tropical American herbs with leafy stems and axillary flowers
+42802,genus_Gnetum,type genus of the Gnetaceae; small trees or shrubs usually with climbing jointed stems and terminal spikes of flowers with orange-red seeds clustered in rough cones
+42803,genus_Gorilla,gorillas
+42804,genus_Grampus,grampus
+42805,genus_Grevillea,large genus of Australian shrubs and trees having usually showy orange or red flowers
+42806,genus_Grison,a genus of Mustelidae
+42807,genus_Gyromitra,a genus of fungi of the family Helvellaceae with a fertile portion that is tan to brown
+42808,genus_Halogeton,a caryophyllaceous genus of the family Chenopodiaceae
+42809,genus_Hamelia,evergreen tropical American shrubs or small trees
+42810,genus_Harpullia,genus of tropical Asiatic and African trees
+42811,genus_Helianthemum,widely distributed evergreen or semi-evergreen shrublets; America; Europe and North Africa to Asia Minor and central Asia
+42812,genus_Helianthus,genus of tall erect or branched American annual or perennial herbs with showy flowers: sunflowers
+42813,genus_Heliophila,genus of South African flowering herbs and subshrubs
+42814,genus_Heliopsis,oxeye
+42815,genus_Helvella,type genus of the Helvellaceae
+42816,genus_Hepatica,small genus of perennial herbs of north temperate regions; allied to genus Anemone
+42817,genus_Herrerasaurus,primitive theropod found in Argentina; early Triassic
+42818,genus_Hibiscus,large genus of tropical and subtropical herbs and shrubs and trees often grown as ornamentals for their profusion of large flowers in a variety of colors
+42819,genus_Hippeastrum,bulbous flowering plants of tropical America
+42820,genus_Hippopotamus,type genus of the Hippopotamidae
+42821,genus_Homo,type genus of the family Hominidae
+42822,genus_Hovea,genus of Australian evergreen shrubs
+42823,genus_Hoya,large genus of climbing shrubs of Australia and Asia and Polynesia
+42824,genus_Hyacinthus,sometimes placed in family Hyacinthaceae as the type genus
+42825,genus_Hyaena,type genus of the Hyaenidae
+42826,genus_Hydra,hydras
+42827,genus_Hydrangea,type genus of Hydrangeaceae; large genus of shrubs and some trees and vines with white or pink or blue flower clusters; sometimes placed in family Saxifragaceae
+42828,genus_Hydrilla,one species
+42829,genus_Ibero-mesornis,a genus of fossil bird of the subclass Archaeornithes
+42830,genus_Ibis,ibises
+42831,genus_Ichthyosaurus,type genus of the Ichthyosauridae
+42832,genus_Ichthyostega,second earliest fossil amphibian ever found; of the Devonian; found in Greenland
+42833,genus_Idesia,one species
+42834,genus_Iguana,type genus of the Iguanidae
+42835,genus_Iguanodon,type genus of the Iguanodontidae
+42836,genus_Impatiens,annual or perennial herbs with stems more or less succulent; cosmopolitan except for South America, Australia, and New Zealand
+42837,genus_Indri,type genus of the Indriidae
+42838,genus_Inga,genus of tropical trees or shrubs
+42839,genus_Inula,genus of Old World herbs or subshrubs: elecampane
+42840,genus_Iris,large genus of perennials that develop from bulbs or rhizomes
+42841,genus_Iva,small genus of American herbs or shrubs; in some classifications placed in a separate family Ambrosiaceae
+42842,genus_Jabiru,jabirus
+42843,genus_Junco,American finches
+42844,genus_Kalmia,erect evergreen shrubs: mountain laurel
+42845,genus_Keteleeria,a genus of keteleeria
+42846,genus_Klebsiella,a genus of bacteria
+42847,genus_Kniphofia,genus of showy clump-forming African herbs with grasslike leaves; sometimes placed in family Aloeaceae
+42848,genus_Kohleria,genus of tropical American shrubs
+42849,genus_Krigia,small herbs closely related to chicory: dwarf dandelions
+42850,genus_Lactobacillus,type genus of the family Lactobacillaceae
+42851,genus_Laelia,large genus of mostly epiphytic or lithophytic Central and South American orchids of various sizes
+42852,genus_Lansium,a dicotyledonous genus of the family Meliaceae
+42853,genus_Lecanopteris,epiphytic ferns of southeastern Asia to New Guinea
+42854,genus_Lecanora,type genus of Lecanoraceae; crustaceous lichens
+42855,genus_Leipoa,mallee fowl
+42856,genus_Lemur,type genus of the Lemuridae
+42857,genus_Lepidobotrys,a genus of dicotyledonous trees belonging to the family Lepidobotryaceae
+42858,genus_Lepiota,agarics with white spores that includes several edible and poisonous mushrooms: parasol mushrooms
+42859,genus_Leptospira,very slender aerobic spirochetes; free-living or parasitic in mammals
+42860,genus_Lespedeza,genus of shrubs or herbs of tropical Asia and Australia and the eastern United States
+42861,genus_Leucocytozoon genus_Leucocytozoan,a genus of protoctist
+42862,genus_Leucothoe,American and Asiatic deciduous and evergreen shrubs
+42863,genus_Liparis,genus of terrestrial and epiphytic orchids; pantropical to temperate
+42864,genus_Liquidambar Liquidambar,sweet gum
+42865,genus_Listeria,a genus of aerobic motile bacteria of the family Corynebacteriaceae containing small Gram-positive rods
+42866,genus_Litchi,Chinese trees
+42867,genus_Lithops,genus of stemless South African succulents
+42868,genus_Loasa,genus of tropical American prickly herbs or subshrubs
+42869,genus_Lobelia,in some classifications considered the type genus of a separate family Lobeliaceae
+42870,genus_Loligo,squids
+42871,genus_Lomatia,small genus of low-growing evergreens of Chile and Australia; some yield dyes
+42872,genus_Loris,type genus of the Lorisidae
+42873,genus_Luffa,dishcloth gourds
+42874,genus_Lychnis,genus of plants strongly resembling those of genus Silene: catchfly
+42875,genus_Lynx,lynxes
+42876,genus_Macadamia,trees or shrubs; Madagascar to Australia
+42877,genus_Macrotus,leafnose bats
+42878,genus_Macrozamia,genus of large evergreen Australian cycads; sometimes classified in family Cycadaceae
+42879,genus_Magnolia,shrubs or trees of North America or Asia having entire evergreen or deciduous leaves; among most ancient of angiosperm genera
+42880,genus_Malope,small genus of chiefly European herbs
+42881,genus_Mammillaria,large genus of cacti characterized chiefly by nipple-shaped protuberances or tubercles on their surface
+42882,genus_Manta,a genus of Mobulidae
+42883,genus_Mantis,type genus of the Mantidae: mantises
+42884,genus_Maranta,herbs of tropical America
+42885,genus_Martynia,in some classifications includes the unicorn plants
+42886,genus_Masdevallia,large genus of tropical American mostly epiphytic orchids whose flowers have sepals fused at the base forming a tube; includes orchids sometimes placed in genera Dracula and Dryadella and Scaphosepalum
+42887,genus_Maxillaria,large genus of tropical American epiphytic orchids with persistent leathery leaves and single-flowered scapes
+42888,genus_Megalosaurus,type genus of the Megalosauridae
+42889,genus_Melilotus,Old World herbs: the sweet clovers
+42890,genus_Mesohippus,a genus of Equidae
+42891,genus_Metasequoia,genus of deciduous conifers comprising both living and fossil forms; 1 extant species: dawn redwood of China; variously classified as member of Pinaceae or Taxodiaceae
+42892,genus_Millettia,genus of trees and shrubs of the Old World tropics
+42893,genus_Mimosa,genus of spiny woody shrubs or trees; named for their apparent imitation of animal sensitivity to light and heat and movement
+42894,genus_Mola,type genus of the Molidae
+42895,genus_Moloch,genus of Australian desert lizard
+42896,genus_Monarda,wild bergamot, horsemint, beebalm
+42897,genus_Monilia,genus of parasitic yeastlike imperfect fungi having spherical or oval conidia in branched chains; some species usually placed in other genera especially genus Candida
+42898,genus_Mononychus,authorities disagree over whether to classify the genus as bird or dinosaur
+42899,genus_Monstera,tropical American climbing plant with deeply incised leaves
+42900,genus_Montezuma,one species: medium-sized evergreen tree of Puerto Rico or Mexico
+42901,genus_Mucor,type genus of the Mucoraceae; genus of molds having cylindrical or pear-shaped sporangia not limited in location to points where rhizoids develop
+42902,genus_Mucuna Stizolobium genus_Stizolobium,genus of tropical herbs and woody vines having trifoliate leaves and showy flowers in axillary clusters
+42903,genus_Mutisia,genus of South American shrubs or lianas having large flower heads with feathery pappuses
+42904,genus_Mycobacterium,nonmotile Gram-positive aerobic bacteria
+42905,genus_Mycoplasma,type and sole genus of the family Mycoplasmataceae
+42906,genus_Mylodon,type genus of the Mylodontidae; sometimes included in family Megatheriidae
+42907,genus_Nanomia,a genus of Siphonophora
+42908,genus_Narcissus,Old World perennial bulbous herbs
+42909,genus_Nautilus,type genus and sole recent representative of the family Nautilidae
+42910,genus_Nemophila,genus of ornamental chiefly California herbs: baby blue-eyes
+42911,genus_Nephthytis,small genus of tropical western African creeping or twining herbs
+42912,genus_Nerita,type genus of the Neritidae
+42913,genus_Neritina,a genus of Neritidae
+42914,genus_Nierembergia,genus of tropical American erect or creeping herbs with solitary flowers
+42915,genus_Nigella,erect annual Eurasian herbs
+42916,genus_Noctiluca,a genus of protoctist
+42917,genus_Nostoc,type genus of the family Nostocaceae: freshwater blue-green algae
+42918,genus_Nothosaurus,a genus of Nothosauria
+42919,genus_Notornis,a genus of Rallidae
+42920,genus_Octopus,type genus of the family Octopodidae
+42921,genus_Odontoglossum,large and important genus of tropical American mostly epiphytic orchids; some of the most widely grown species are often placed in other genera
+42922,genus_Ommastrephes,a genus of Decapoda
+42923,genus_Oncidium,large genus of showy epiphytic or lithophytic or terrestrial orchids of tropical and subtropical America
+42924,genus_Orchis,type genus of the orchid family; hardy terrestrial orchids of the temperate the northern hemisphere
+42925,genus_Origanum,a genus of aromatic mints of the family Labiatae
+42926,genus_Oryx,African antelopes: oryxes
+42927,genus_Osmunda,type genus of the Osmundaceae
+42928,genus_Othonna,genus of western African herbs or shrubs
+42929,genus_Oxalis,type genus of the Oxalidaceae; large genus of plants having leaves that resemble clover and variously colored flowers usually clustered in umbels
+42930,genus_Pachysandra,evergreen perennial procumbent subshrubs or herbs
+42931,genus_Palometa,a genus of Stromateidae
+42932,genus_Pandanus,type genus of the Pandanaceae (as screw pines)
+42933,genus_Paramecium,freshwater ciliate with an oval body and long deep oral groove
+42934,genus_Parnassia,genus of bog herbs of Arctic and northern temperate regions
+42935,genus_Paspalum,a genus of perennial grasses of warm regions
+42936,genus_Pavonia,genus of tropical hairy shrubs or herbs of tropics and subtropics especially South America
+42937,genus_Pecopteris,genus of Carboniferous fossil ferns
+42938,genus_Pecten,type genus of the family Pectinidae: sea and bay scallops
+42939,genus_Peperomia,large genus of small tropical usually succulent herbs
+42940,genus_Peripatus,type genus of Peripatidae; onychophorans of chiefly New World tropical regions
+42941,genus_Petunia Petunia,annual or perennial herbs or shrubs of tropical South America
+42942,genus_Phacelia,American herbs with usually pinnatifid leaves and blue or purple or white flowers in scorpioid cymes
+42943,genus_Phaius,genus of Asiatic and Australian terrestrial orchids
+42944,genus_Phalanger,type genus of the family Phalangeridae: cuscuses
+42945,genus_Phenacomys,North American voles
+42946,genus_Philadelphus,mock orange: type and sole genus of the subfamily Philadelphaceae; sometimes placed in family Saxifragaceae
+42947,genus_Philodendron,any of several tropical American climbing plants with smooth shiny evergreen leaves
+42948,genus_Phlomis,large genus of Old World aromatic herbs or subshrubs or shrubs having often woolly leaves
+42949,genus_Phlox,herbaceous to shrubby evergreen or deciduous annuals or perennials, diffuse (spreading) or caespitose (tufted or matted); from Alaska and western Canada to Mexico
+42950,genus_Physa,type genus of the Physidae; freshwater air-breathing snails
+42951,genus_Physostegia,genus of North American perennial herbs
+42952,genus_Pisanosaurus,primitive ornithischian dinosaur found in Argentina; early Triassic
+42953,genus_Pistia,one species: water lettuce
+42954,genus_Pitta,type genus of the Pittidae; a large genus of birds of southern Asia and Australia and adjacent islands
+42955,genus_Plasmodium,type genus of the family Plasmodiidae
+42956,genus_Plectranthus,large genus of ornamental flowering plants; includes some plants often placed in the genus Coleus
+42957,genus_Plesiosaurus,a reptile genus of suborder Plesiosauria
+42958,genus_Pleurothallis,large genus of epiphytic or lithophytic orchids of tropical America
+42959,genus_Plumbago,shrubs and herbs and woody vines of warm regions: leadwort
+42960,genus_Pogonia,small but widely distributed genus of orchids closely related to genus Cleistes;: of damp or boggy areas of north temperate zone
+42961,genus_Polemonium,type genus of the Polemoniaceae
+42962,genus_Portulaca,genus of mainly tropical fleshy or trailing herbs
+42963,genus_Potamogale,type genus of the family Potamogalidae: otter shrews
+42964,genus_Primula,very large and important genus of plants of temperate Europe and Asia having showy flowers
+42965,genus_Proconsul,genus of extinct primitive African primates of the Miocene epoch; sometimes considered a subgenus of Dryopithecus
+42966,genus_Protea,type genus of Proteaceae; tropical African shrubs
+42967,genus_Protoavis,extinct primitive birds of the Triassic period; 70 million years before archaeopteryx
+42968,genus_Protoceratops,small horned dinosaurs
+42969,genus_Protohippus,a genus of Equidae
+42970,genus_Psilophyton,type genus of the Psilophytaceae: genus of small wiry herbaceous Paleozoic plants with underground rhizomes and apical sporangia
+42971,genus_Psittacosaurus,most primitive genus of horned dinosaurs; early Cretaceous
+42972,genus_Pteropogon,genus of Australian and South African herbs including some from genus Helipterum
+42973,genus_Pyracantha,Eurasian evergreen thorny shrubs bearing red or orange-red berries
+42974,genus_Pyrola,short-stemmed perennial herbs of cool or temperate regions: wintergreen; shinleaf
+42975,genus_Pyrrhuloxia,large showy finches related to cardinals
+42976,genus_Pythium,destructive root-parasitic fungi
+42977,genus_Python,Old World boas
+42978,genus_Quassia,tropical trees and shrubs with pinnate leaves and large scarlet flowers; bark is medicinal
+42979,genus_Rauwolfia genus_Rauvolfia,pantropical genus of somewhat poisonous shrubs and small trees
+42980,genus_Ravenala,woody tropical plants with tall trunks; sometimes placed in family Musaceae
+42981,genus_Regnellidium,one species of aquatic or semiaquatic fern
+42982,genus_Reseda,Old World genus of herbs having racemose flowers: mignonette; dyer's rocket
+42983,genus_Rhea,type genus of the Rheidae; large tall flightless South American birds similar to but smaller than ostriches
+42984,genus_Rhinoceros,type genus of the Rhinocerotidae
+42985,genus_Rhizoctinia form_genus_Rhizoctinia,form genus of imperfect fungi some species of which are now placed in genera Pellicularia and Corticium because their perfect stages have been found
+42986,genus_Rhizopus,a genus of rot-causing fungi having columnar hemispherical aerial sporangia anchored to the substrate by rhizoids
+42987,genus_Rhodanthe,genus of xerophytic herbs and shrubs of South Africa and Australia; sometimes included in genus Helipterum
+42988,genus_Rhododendron,large genus of evergreen shrubs native to cooler regions of the northern hemisphere having showy flowers
+42989,genus_Rickettsia,can cause typhus and Rocky Mountain spotted fever in humans
+42990,genus_Rivulus,killifish
+42991,genus_Roccella,chiefly fruticose maritime rock-inhabiting lichens
+42992,genus_Roridula,insectivorous undershrubs of South Africa; in some classifications placed in the family Droseraceae
+42993,genus_Sabbatia,genus of smooth slender North American herbs with showy flowers
+42994,genus_Sagitta,chief genus of Chaetognatha including the largest arrowworms
+42995,genus_Saiga,Eurasian antelopes: saigas
+42996,genus_Salmonella,a genus of bacteria
+42997,genus_Salpa,type (perhaps sole) genus of the Salpidae
+42998,genus_Salpiglossis,small genus of herbs of the southern Andes having large showy flowers
+42999,genus_Salvia,large genus of shrubs and subshrubs of the mint family varying greatly in habit: sage
+43000,genus_Sansevieria,Old World tropical herbaceous perennial of the agave family; in some classifications considered a genus of Liliaceae
+43001,genus_Sargassum,a genus of protoctist
+43002,genus_Sassafras,a genus of sassafras
+43003,genus_Scabiosa,annual or perennial herbs or subshrubs; mainly Mediterranean
+43004,genus_Scarabaeus,type genus of the Scarabaeidae
+43005,genus_Schizanthus,Chilean herbs with orchid-like flowers
+43006,genus_Schizopetalon,small genus of South American herbs grown for its flowers
+43007,genus_Sciara,type genus of the Sciaridae: fungus gnat
+43008,genus_Scilla,sometimes placed in subfamily Hyacinthaceae
+43009,genus_Sclerotinia,large genus of ascomycetous fungi including various destructive plant pathogens
+43010,genus_Scorzonera,genus of narrow-leaved European herbs
+43011,genus_Sedum,large genus of rock plants having thick fleshy leaves
+43012,genus_Senna,genus of shrubs and trees and herbs many of which are often classified as members of the genus Cassia
+43013,genus_Sequoia,redwoods; until recently considered a genus of a separate family Taxodiaceae
+43014,genus_Serratia Serratia,a genus of motile peritrichous bacteria that contain small Gram-negative rod
+43015,genus_Sesbania,small genus of tropical and subtropical leguminous herbs or shrubs or trees
+43016,genus_Shigella,a genus of bacteria
+43017,genus_Shortia,evergreen perennial herbs of North America and eastern Asia: oconee bells
+43018,genus_Silene,large widely distributed genus of plants having mostly showy flowers of various colors: campion; catchfly
+43019,genus_Sinornis,a genus of fossil birds
+43020,genus_Siren,a genus of Sirenidae
+43021,genus_Sisymbrium,genus of Old World annual or biennial or perennial herbs with racemose flowers; many are considered to be weeds
+43022,genus_Sivapithecus,extinct primates; lower Pliocene
+43023,genus_Sobralia,genus of tropical American orchids
+43024,genus_Sorghum Sorghum,annual or perennial tropical and subtropical cereal grasses: sorghum
+43025,genus_Spadella,marine worms resembling the sagittas but with a broader body and only one pair of lateral fins
+43026,genus_Spathiphyllum,evergreen rhizomatous perennials of tropical America and Philippines and Indonesia
+43027,genus_Sphagnum,a large genus constituting the order Sphagnales: atypical mosses of temperate bogs with leaves that can hold much water
+43028,genus_Spirillum,a genus of bacteria
+43029,genus_Spirogyra,a genus of protoctist
+43030,genus_Spirula,genus of small cephalopods with many-chambered spiral shells resembling those of the extinct belemnites
+43031,genus_Squilla,type genus of the family Squillidae
+43032,genus_Stanhopea,genus of tropical American epiphytic orchids
+43033,genus_Stapelia,genus of foul-smelling plants resembling cacti; found from Africa to East India
+43034,genus_Staphylococcus,includes many pathogenic species
+43035,genus_Staurikosaurus,primitive ornithischian dinosaur found in Brazil
+43036,genus_Stegosaurus,quadrupedal armored herbivore of the Jurassic and Cretaceous
+43037,genus_Stelis,genus of small caespitose orchids of tropical America
+43038,genus_Stenopterygius,a reptile genus of Ichthyosauridae
+43039,genus_Stentor,trumpet-shaped protozoa with a ciliated spiral feeding funnel
+43040,genus_Stephanotis,genus of Old World tropical woody vines
+43041,genus_Sterculia,type genus of the Sterculiaceae: deciduous or evergreen trees of Old and New World tropics and subtropics
+43042,genus_Stevia,genus of shrubs and herbs of tropical and warm Americas
+43043,genus_Streptocarpus,large genus of usually stemless African or Asian herbs: Cape primrose
+43044,genus_Streptococcus,a genus of bacteria
+43045,genus_Streptomyces,type genus of the family Streptomycetaceae
+43046,genus_Strophanthus,genus of tropical Asiatic and African shrubs and woody vines and small trees
+43047,genus_Struthiomimus,small toothless saurischian dinosaurs; later Cretaceous period in Canada
+43048,genus_Styracosaurus,genus of horned dinosaurs
+43049,genus_Styrax,deciduous or evergreen shrubs and small trees
+43050,genus_Suksdorfia,small genus of rhizomatous herbs of northwestern America and South America
+43051,genus_Taenia,type genus of the family Taeniidae: tapeworms
+43052,genus_Tamandua,lesser anteater
+43053,genus_Tarpon,tarpons
+43054,genus_Tenrec,type genus of the family Tenrecidae: tenrecs
+43055,genus_Teredo,type genus of the family Teredinidae
+43056,genus_Tetrahymena,protozoa having four membranous ciliary organelles
+43057,genus_Thiobacillus,a genus of bacteria
+43058,genus_Thrips,type genus of the Thripidae
+43059,genus_Thyrsopteris,one species
+43060,genus_Tithonia,genus of robust herbs of Mexico and Central America: Mexican sunflower
+43061,genus_Tortrix,type genus of the Tortricidae
+43062,genus_Trachodon,a reptile genus of the suborder Euronithopoda
+43063,genus_Tragopan,a genus of Phasianidae
+43064,genus_Treponema,type genus of Treponemataceae: anaerobic spirochetes with an undulating rigid body; parasitic in warm-blooded animals
+43065,genus_Triceratops,genus of herbivorous horned dinosaurs
+43066,genus_Trichodesmium,a genus of blue-green algae
+43067,genus_Trichomonas,flagellates parasitic in alimentary or genitourinary tracts of vertebrates and invertebrates including humans
+43068,genus_Trillium,deciduous perennial herbs; sometimes placed in family Liliaceae
+43069,genus_Trogon,type genus of the Trogonidae
+43070,genus_Turreae,genus of trees and shrubs of tropical Africa and Asia and Australia
+43071,genus_Tyrannosaurus,includes a single species
+43072,genus_Ursinia,genus of South African herbs and shrubs cultivated as ornamentals
+43073,genus_Utahraptor,advanced bipedal carnivorous dinosaur
+43074,genus_Vanda,genus of showy epiphytic orchids of Himalayas to Malaysia
+43075,genus_Vanilla,large genus of tropical climbing orchids; Old and New Worlds
+43076,genus_Velociraptor,advanced carnivorous theropod
+43077,genus_Verbena,type genus of the Verbenaceae; genus of herbaceous perennials and subshrubs
+43078,genus_Vernonia,genus of New World tropical herbs or shrubs with terminal cymose heads of tubular flowers
+43079,genus_Veronica,widespread genus of herbs with pink or white or blue or purple flowers: speedwell
+43080,genus_Verticillium,genus of imperfect fungi having conidia borne singly at the apex of whorled branchlets; cause wilt diseases
+43081,genus_Vibrio,a genus of bacteria
+43082,genus_Vireo,type genus of the Vireonidae
+43083,genus_Vorticella,ciliated protozoans that have a goblet-shaped body with a retractile stalk
+43084,genus_Weigela,east Asian flowering shrubs
+43085,genus_Welwitschia genus_Welwitchia,type and sole genus of Welwitschiaceae
+43086,genus_Wisteria,Asiatic deciduous woody vine having large drooping racemes of white or bluish or purple or pinkish flowers and velvety pods; widely grown as an ornamental
+43087,genus_Woodsia,genus of small to medium-sized usually rock-inhabiting ferns of temperate and cold regions; in some classification systems placed in Polypodiaceae
+43088,genus_Wyethia,coarse leafy perennial plants resembling sunflowers found especially in the western United States
+43089,genus_Xeranthemum,genus of annual densely hairy herbs of Mediterranean to southwestern Asia
+43090,genus_Xylosma,genus of tropical American and Asiatic spiny evergreen trees and shrubs
+43091,genus_Yucca,tropical American plants with stiff lancelike leaves and spikes of white blossoms; sometimes considered a genus of Amaryllidaceae
+43092,genus_Zamia,genus of small evergreen tropical and subtropical American cycads
+43093,genus_Zinnia,genus of annual or perennial plants of tropical America having solitary heads of brightly colored flowers
+43094,genus_Zoysia Zoisia genus_Zoisia,lawn grasses native to southeastern Asia and New Zealand; grown especially in warm regions
+43095,geocentric_parallax diurnal_parallax,the parallax of a celestial body using two points on the surface of the earth as the earth rotates
+43096,geochemistry,the chemistry of the earth's crust
+43097,geode,(mineralogy) a hollow rock or nodule with the cavity usually lined with crystals
+43098,geodesic geodesic_line,(mathematics) the shortest line between two points on a mathematically defined surface (as a straight line on a plane or an arc of a great circle on a sphere)
+43099,geodesic_dome,a lightweight dome constructed of interlocking polygons; invented by R. Buckminster Fuller
+43100,geodesy,the branch of geology that studies the shape of the earth and the determination of the exact position of geographical points
+43101,geoduck,a large edible clam found burrowing deeply in sandy mud along the Pacific coast of North America; weighs up to six pounds; has siphons that can extend to several feet and cannot be withdrawn into the shell
+43102,geographer,an expert on geography
+43103,geographic_point geographical_point,a point on the surface of the Earth
+43104,geographical_area geographic_area geographical_region geographic_region,a demarcated area of the Earth
+43105,geographical_indication GI,(law) a name or sign used on certain products which corresponds to a specific geographical location or origin
+43106,geography geographics,study of the earth's surface; includes people's responses to topography and climate and soil and vegetation
+43107,geological_formation formation,(geology) the geological features of the earth
+43108,geological_horizon,a layer of rock with a particular composition (especially of fossils); for dating the stratum
+43109,geological_phenomenon,a natural phenomenon involving the structure or composition of the earth
+43110,geological_process geologic_process,(geology) a natural process whereby geological features are modified
+43111,geological_time geologic_time,the time of the physical formation and development of the earth (especially prior to human history)
+43112,geologist,a specialist in geology
+43113,geology,a science that deals with the history of the earth as recorded in rocks
+43114,geomancer,one who practices geomancy
+43115,geomancy,divination by means of signs connected with the earth (as points taken at random or the arrangement of particles thrown down at random or from the configuration of a region and its relation to another)
+43116,geometer geometrician,a mathematician specializing in geometry
+43117,geometric_mean,the mean of n numbers expressed as the n-th root of their product
+43118,geometric_pace,a modern version of the Roman pace now taken to be 5 feet
+43119,geometric_progression,(mathematics) a progression in which each term is multiplied by a constant in order to obtain the next term; "1-4-16-64-256- is the start of a geometric progression"
+43120,geometric_series,a geometric progression written as a sum
+43121,geometrid geometrid_moth,slender-bodied broad-winged moth whose larvae are called measuring worms
+43122,geometry,the pure mathematics of points and lines and curves and surfaces
+43123,geometry_teacher,someone who teaches geometry
+43124,geophagy geophagia,eating earth, clay, chalk; occurs in some primitive tribes, sometimes in cases of nutritional deficiency or obsessive behavior
+43125,geophysicist,a geologist who uses physical principles to study the properties of the earth
+43126,geophysics geophysical_science,geology that uses physical principles to study properties of the earth
+43127,geophyte,a perennial plant that propagates by underground bulbs or tubers or corms
+43128,geopolitics,the study of the effects of economic geography on the powers of the state
+43129,geordie,the nonstandard dialect of natives of Newcastle-upon-Tyne
+43130,georgette,a thin silk dress material
+43131,geostationary_orbit,a geosynchronous orbit that is fixed with respect to a position on the Earth
+43132,geostrategy,the branch of geopolitics dealing with strategy
+43133,geosynchronous_orbit,a circular orbit around the Earth having a period of 24 hours
+43134,geothermal_energy,energy derived from the heat in the interior of the earth
+43135,geotropism,an orienting response to gravity
+43136,geranium,any of numerous plants of the family Geraniaceae
+43137,gerardia,any plant of the genus Gerardia
+43138,gerbil gerbille,small Old World burrowing desert rodent with long soft pale fur and hind legs adapted for leaping
+43139,gerenuk Litocranius_walleri,slender East African antelope with slim neck and backward-curving horns
+43140,geriatrics gerontology,the branch of medical science that deals with diseases and problems specific to old people
+43141,germ,a small apparently simple structure (as a fertilized egg) from which new tissue can develop into a complete organism
+43142,germ_layer,(embryology) any of the 3 layers of cells differentiated in embryos following gastrulation
+43143,germ_plasm plasm,the protoplasm of the germ cells that contains chromosomes and genes
+43144,germ_pore,a pore in the outer wall of a spore or pollen grain through which the germ tube or pollen tube makes its exit on germination
+43145,germ_theory,(medicine) the theory that all contagious diseases are caused by microorganisms
+43146,germ_tube,(botany) a slender tubular outgrowth from a spore in germination
+43147,germ_warfare bacteriological_warfare,the use of harmful bacteria as a weapon
+43148,germander,any of various plants of the genus Teucrium
+43149,germander_speedwell bird's_eye Veronica_chamaedrys,Old World plant with axillary racemes of blue-and-white flowers
+43150,germaneness,pertinence by virtue of a close relation to the matter at hand
+43151,germanite,a rare reddish-grey mineral consisting of a copper iron germanium sulfide
+43152,germanium Ge atomic_number_32,a brittle grey crystalline element that is a semiconducting metalloid (resembling silicon) used in transistors; occurs in germanite and argyrodite
+43153,germination,the origin of some development; "the germination of their discontent"
+43154,germination sprouting,the process whereby seeds or spores sprout and begin to grow
+43155,gerontocracy,a political system governed by old men
+43156,gerontologist geriatrician,a specialist in gerontology
+43157,gerrymander,an act of gerrymandering (dividing a voting area so as to give your own party an unfair advantage)
+43158,gerund,a noun formed from a verb (such as the `-ing' form of an English verb when used as a noun)
+43159,gesneria,any plant of the genus Gesneria
+43160,gesneriad,any of numerous tropical or subtropical small shrubs or treelets or epiphytic vines of the family Gesneriaceae: African violet; Cape primroses; gloxinia
+43161,gesso,gypsum or plaster of Paris spread on a surface to make it suitable for painting or gilding (or a surface so prepared)
+43162,gestalt,a configuration or pattern of elements so unified as a whole that it cannot be described merely as a sum of its parts
+43163,gestation,the conception and development of an idea or plan
+43164,gestation gestation_period,the period during which an embryo develops (about 266 days in humans)
+43165,gesticulation,a deliberate and vigorous gesture or motion
+43166,gesture,something done as an indication of intention; "a political gesture"; "a gesture of defiance"
+43167,gesture,motion of hands or body to emphasize or help to express a thought or feeling
+43168,gesture motion,the use of movements (especially of the hands) to communicate familiar or prearranged signals
+43169,get,a return on a shot that seemed impossible to reach and would normally have resulted in a point for the opponent
+43170,get-well_card,a card expressing get-well wishes
+43171,getaway lam,a rapid escape (as by criminals); "the thieves made a clean getaway"; "after the expose he had to take it on the lam"
+43172,geyser,a spring that discharges hot water and steam
+43173,gharry,a horse-drawn carriage in India
+43174,ghastliness grimness gruesomeness luridness,the quality of being ghastly
+43175,ghat,stairway in India leading down to a landing on the water
+43176,ghatti ghatti_gum,an Indian gum from the dhawa tree; used as a substitute for gum arabic
+43177,ghee,clarified butter used in Indian cookery
+43178,gherkin,any of various small cucumbers pickled whole
+43179,gherkin,small prickly cucumber
+43180,ghetto,any segregated mode of living or working that results from bias or stereotyping; "the relative security of the gay ghetto"; "no escape from the ghetto of the typing pool"
+43181,ghetto,formerly the restricted quarter of many European cities in which Jews were required to live; "the Warsaw ghetto"
+43182,ghetto,a poor densely populated city district occupied by a minority ethnic group linked together by economic hardship and social restrictions
+43183,ghetto_blaster boom_box,a portable stereo
+43184,ghillie gillie,a shoe without a tongue and with decorative lacing up the instep
+43185,ghost,the visible disembodied soul of a dead person
+43186,ghost shade spook wraith specter spectre,a mental representation of some haunting experience; "he looked like he had seen a ghost"; "it aroused specters from his past"
+43187,ghost_dance,a religious dance of Native Americans looking for communication with the dead
+43188,ghost_town,a deserted settlement (especially in western United States)
+43189,ghost_word,a word form that has entered the language through the perpetuation of an error
+43190,ghostwriter ghost,a writer who gives the credit of authorship to someone else
+43191,ghoul,an evil spirit or ghost
+43192,ghrelin,a gastrointestinal hormone produced by epithelial cells lining the fundus of the stomach; appears to be a stimulant for appetite and feeding, but is also a strong stimulant of growth hormone secretion from the anterior pituitary
+43193,giant,an imaginary figure of superhuman size and strength; appears in folklore and fairy tales
+43194,giant,an unusually large enterprise; "Walton built a retail giant"
+43195,giant,any creature of exceptional size
+43196,giant goliath behemoth monster colossus,someone or something that is abnormally large and powerful
+43197,giant hulk heavyweight whale,a very large person; impressive in size or qualities
+43198,giant_armadillo tatou tatu Priodontes_giganteus,about three feet long exclusive of tail
+43199,giant_bamboo kyo-chiku Dendrocalamus_giganteus,immense tropical southeast Asian bamboo with tough hollow culms that resemble tree trunks
+43200,giant_buttercup Laccopetalum_giganteum,spectacular perennial native of wet montane grasslands of Peru; formerly included in genus Ranunculus
+43201,giant_cane cane_reed Arundinaria_gigantea,tall grass of southern United States growing in thickets
+43202,giant_chinkapin golden_chinkapin Chrysolepis_chrysophylla Castanea_chrysophylla Castanopsis_chrysophylla,small ornamental evergreen tree of Pacific Coast whose glossy yellow-green leaves are yellow beneath; bears edible nuts
+43203,giant_clam Tridacna_gigas,a large clam inhabiting reefs in the southern Pacific and weighing up to 500 pounds
+43204,giant_cockroach,large tropical American cockroaches
+43205,giant_conch Strombus_gigas,a large variety of conch
+43206,giant_coreopsis Coreopsis_gigantea,large treelike shrub having feathery leaves and clusters of large yellow flower heads; coastal southern California
+43207,giant_crab Macrocheira_kaempferi,very large deep-water Japanese crab
+43208,giant_eland Taurotragus_derbianus,large dark striped eland of western equatorial Africa
+43209,giant_foxtail,two species of coarse annual foxtails that are naturalized weeds in United States
+43210,giant_hornet Vespa_crabro,European hornet introduced into the United States
+43211,giant_hyssop,any of a number of aromatic plants of the genus Agastache
+43212,giant_kangaroo great_grey_kangaroo Macropus_giganteus,very large greyish-brown Australian kangaroo formerly abundant in open wooded areas
+43213,giant_moa Dinornis_giganteus,the largest moa; about 12 feet high
+43214,giant_northwest_shipworm Bankia_setaceae,giant shipworm of the Pacific coast of North America
+43215,giant_panda panda panda_bear coon_bear Ailuropoda_melanoleuca,large black-and-white herbivorous mammal of bamboo forests of China and Tibet; in some classifications considered a member of the bear family or of a separate family Ailuropodidae
+43216,giant_petrel giant_fulmar Macronectes_giganteus,large brownish petrel chiefly of Antarctic seas
+43217,giant_puffball Calvatia_gigantea,huge edible puffball up to 2 feet diameter and 25 pounds in weight
+43218,giant_red_paintbrush Castilleja_miniata,wildflower of western North America having ragged clusters of crimson or scarlet flowers
+43219,giant_reed Arundo_donax,large rhizomatous perennial grasses found by riversides and in ditches having jointed stems and large grey-white feathery panicles
+43220,giant_ryegrass Elymus_condensatus Leymus_condensatus,stout perennial grass of western North America
+43221,giant_salamander Megalobatrachus_maximus,large (up to more than three feet) edible salamander of Asia
+43222,giant_schnauzer,a large schnauzer
+43223,giant_scrambling_fern Diplopterygium_longissimum,large scrambling fern forming large patches to 18 feet high; Pacific region and China
+43224,giant_sequoia big_tree Sierra_redwood Sequoiadendron_giganteum Sequoia_gigantea Sequoia_Wellingtonia,extremely lofty evergreen of southern end of western foothills of Sierra Nevada in California; largest living organism
+43225,giant_silkworm_moth silkworm_moth,any silkworm moth of the family Saturniidae
+43226,giant_star giant,a very bright star of large diameter and low density (relative to the Sun)
+43227,giant_star_grass Cynodon_plectostachyum,perennial grass having stems 3 to 4 feet high; used especially in Africa and India for pasture and hay
+43228,giant_sunflower tall_sunflower Indian_potato Helianthus_giganteus,very tall American perennial of central and the eastern United States to Canada having edible tuberous roots
+43229,giant_taro Alocasia_macrorrhiza,large evergreen with extremely large erect or spreading leaves; cultivated widely in tropics for its edible rhizome and shoots; used in wet warm regions as a stately ornamental
+43230,giant_timber_bamboo madake ku-chiku Phyllostachys_bambusoides,large bamboo having thick-walled culms; native of China and perhaps Japan; widely grown elsewhere
+43231,giant_tortoise,very large tortoises of the Galapagos and Seychelles islands
+43232,giant_water_bug,large water bug with piercing and sucking mouthparts; feeds on young fishes
+43233,giantess,a female giant
+43234,giantism gigantism overgrowth,excessive size; usually caused by excessive secretion of growth hormone from the pituitary gland
+43235,giardia,a suspected cause of diarrhea in humans
+43236,giardiasis,infection of the intestines with protozoa found in contaminated food and water; characterized by diarrhea and nausea and flatulence and abdominal discomfort
+43237,gib,a castrated tomcat
+43238,gibberellic_acid,a crystalline acid associated with gibberellin
+43239,gibberellin,a plant hormone isolated from a fungus; used in promoting plant growth
+43240,gibberish gibber,unintelligible talking
+43241,gibbon Hylobates_lar,smallest and most perfectly anthropoid arboreal ape having long arms and no tail; of southern Asia and East Indies
+43242,gibbsite,white crystalline mineral consisting of aluminum hydroxide; a constituent of bauxite and a source of alumina
+43243,gibibit Gibit,a unit of information equal to 1024 mebibits or 2^30 (1,073,741,824) bits
+43244,giblet giblets,edible viscera of a fowl
+43245,giddiness silliness,an impulsive scatterbrained manner
+43246,gidgee stinking_wattle Acacia_cambegei,scrubby Australian acacia having extremely foul-smelling blossoms
+43247,gift,something acquired without compensation
+43248,gift_horse,a gift (usually of inferior quality) that should be accepted uncritically; "it wasn't much, but don't look a gift horse in the mouth"
+43249,gift_shop novelty_shop,a shop that sells miscellaneous articles appropriate as gifts
+43250,gift_tax,a tax imposed on transfers of property by gift during the lifetime of the giver
+43251,gift_wrap,attractive wrapping paper suitable for wrapping gifts
+43252,gift_wrapping,ornamental wrapping for gifts
+43253,gig,a cluster of hooks (without barbs) that is drawn through a school of fish to hook their bodies; used when fish are not biting
+43254,gig,long and light rowing boat; especially for racing
+43255,gig,tender that is a light ship's boat; often for personal use of captain
+43256,gig,small two-wheeled horse-drawn carriage; with two seats and no hood
+43257,gig,a booking for musicians; "they played a gig in New Jersey"
+43258,gigabit Gbit Gb,a unit of information equal to 1000 megabits or 10^9 (1,000,000,000) bits
+43259,gigabyte G GB,a unit of information equal to 1000 megabytes or 10^9 (1,000,000,000) bytes
+43260,gigabyte gibibyte G GB GiB,a unit of information equal to 1024 mebibytes or 2^30 (1,073,741,824) bytes
+43261,gigahertz GHz gigacycle_per_second gigacycle Gc,1,000,000,000 periods per second
+43262,gigantism giantism,excessive largeness of stature
+43263,giggle,a foolish or nervous laugh
+43264,gigolo,a man who has sex with and is supported by a woman
+43265,gilbert Gb Gi,a unit of magnetomotive force equal to 0.7958 ampere-turns
+43266,gilded_flicker Colaptes_chrysoides,southwestern United States bird like the yellow-shafted flicker but lacking the red neck
+43267,gilder,someone whose occupation is to apply an overlay of gold or gilt
+43268,gildhall,the meeting place of a medieval guild
+43269,gilding_metal,a brass that is rich in copper; used to make articles that were to be gilded
+43270,gilgai_soil,soil in the melon holes of Australia
+43271,gill,a British imperial capacity unit (liquid or dry) equal to 5 fluid ounces or 142.066 cubic centimeters
+43272,gill,a United States liquid unit equal to 4 fluid ounces
+43273,gill branchia,respiratory organ of aquatic animals that breathe oxygen dissolved in water
+43274,gill lamella,any of the radiating leaflike spore-producing structures on the underside of the cap of a mushroom or similar fungus
+43275,gill_arch branchial_arch gill_bar,one of the bony or cartilaginous arches on each side of the pharynx that support the gills of fishes and aquatic amphibians
+43276,gill_fungus,a basidiomycete with gills
+43277,gill_net,a flat fishnet suspended vertically in the water to entangle fish by their gills
+43278,gill_slit branchial_cleft gill_cleft,one of a series of slit openings in the pharynxes of fishes and aquatic amphibians through which water passes
+43279,gillie,a young male attendant on a Scottish Highlander chief
+43280,gilt gilding,a coating of gold or of something that looks like gold
+43281,gimbal,an appliance that allows an object (such as a ship's compass) to remain horizontal even as its support tips
+43282,gimel,the 3rd letter of the Hebrew alphabet
+43283,gimlet,a cocktail made of gin or vodka and lime juice
+43284,gimmickry,a collection of gimmicks
+43285,gin,strong liquor flavored with juniper berries
+43286,gin gin_rummy knock_rummy,a form of rummy in which a player can go out if the cards remaining in their hand total less than 10 points
+43287,gin_and_it,a cocktail made of gin and sweet vermouth
+43288,gin_and_tonic,gin and quinine water
+43289,gin_rickey,a rickey made with gin
+43290,gin_sling,a sling made with gin
+43291,ginger,perennial plants having thick branching aromatic rhizomes and leafy reedlike stems
+43292,ginger gingerroot,pungent rhizome of the common ginger plant; used fresh as a seasoning especially in Asian cookery
+43293,ginger powdered_ginger,dried ground gingerroot
+43294,ginger_ale ginger_pop,ginger-flavored carbonated drink
+43295,ginger_beer,carbonated slightly alcoholic drink flavored with fermented ginger
+43296,gingerbread,cake flavored with ginger
+43297,gingerbread_man,gingerbread cut in the shape of a person
+43298,gingerol,derived from ginger; source of the hotness of ginger
+43299,gingersnap ginger_snap snap ginger_nut,a crisp round cookie flavored with ginger
+43300,gingham,a clothing fabric in a plaid weave
+43301,gingiva gum,the tissue (covered by mucous membrane) of the jaws that surrounds the bases of the teeth
+43302,gingivitis,inflammation of the gums
+43303,ginkgo gingko maidenhair_tree Ginkgo_biloba,deciduous dioecious Chinese tree having fan-shaped leaves and fleshy yellow seeds; exists almost exclusively in cultivation especially as an ornamental street tree
+43304,ginseng,aromatic root of ginseng plants
+43305,ginseng nin-sin Panax_ginseng Panax_schinseng Panax_pseudoginseng,Chinese herb with palmately compound leaves and small greenish flowers and forked aromatic roots believed to have medicinal powers
+43306,gipsywort gypsywort Lycopus_europaeus,hairy Eurasian herb with two-lipped white flowers
+43307,giraffe camelopard Giraffa_camelopardalis,tallest living quadruped; having a spotted coat and small horns and very long neck and legs; of savannahs of tropical Africa
+43308,girandole girandola,an ornate candle holder; often with a mirror
+43309,girder,a beam made usually of steel; a main support in a structure
+43310,girdle,an encircling or ringlike structure
+43311,girdle cincture sash waistband waistcloth,a band of material around the waist that strengthens a skirt or trousers
+43312,girl,a friendly informal reference to a grown woman; "Mrs. Smith was just one of the girls"
+43313,girl miss missy young_lady young_woman fille,a young female; "a young lady of 18"
+43314,girl_Friday,a female assistant who has a range of duties
+43315,girl_wonder,an extremely talented young female person
+43316,girlfriend,any female friend; "Mary and her girlfriend organized the party"
+43317,girlfriend girl lady_friend,a girl or young woman with whom a man is romantically involved; "his girlfriend kicked him out"
+43318,girlhood maidenhood maidhood,the childhood of a girl
+43319,girlishness,being characteristic of a girl
+43320,giro,a British financial system in which a bank or a post office transfers money from one account to another when they receive authorization to do so
+43321,giro giro_cheque,a check given by the British government to someone who is unemployed; it can be cashed either at a bank or at the post office
+43322,giro_account,an account at a post office that can be used in similar ways to an account at a bank
+43323,girth,the distance around a person's body
+43324,gitana,a Spanish female Gypsy
+43325,gitano,a Spanish male Gypsy
+43326,give spring springiness,the elasticity of something that can be stretched and returns to its original length
+43327,give-and-go,a basketball maneuver; one offensive player passes the ball to another, then runs toward the basket to take a return pass
+43328,giveaway,a gift of public land or resources for the private gain of a limited group
+43329,giveaway,an unintentional disclosure
+43330,given presumption precondition,an assumption that is taken for granted
+43331,givenness,the quality of being granted as a supposition; of being acknowledged or assumed
+43332,giver,someone who devotes himself completely; "there are no greater givers than those who give themselves"
+43333,giving,the imparting of news or promises etc.; "he gave us the news and made a great show of the giving"; "giving his word of honor seemed to come too easily"
+43334,giving,disposing of property by voluntary transfer without receiving value in return; "the alumni followed a program of annual giving"
+43335,giving gift,the act of giving
+43336,giving_up yielding surrender,a verbal act of admitting defeat
+43337,gizzard ventriculus gastric_mill,thick-walled muscular pouch below the crop in many birds and reptiles for grinding food
+43338,glabella mesophyron,a smooth prominence of the frontal bone between and above the eyebrows; the most forward projecting point of the forehead in the midline at the level of the supraorbital ridges
+43339,glacial_boulder,a boulder that has been carried by a glacier to a place far distant from its place of origin
+43340,glaciation,the condition of being covered with glaciers or masses of ice; the result of glacial action; "Agassiz recognized marks of glaciation all over northern Europe"
+43341,glaciation,the process of covering the earth with glaciers or masses of ice
+43342,glacier,a slowly moving mass of ice
+43343,glacier_lily snow_lily Erythronium_grandiflorum,dogtooth violet of western North America having bright yellow flowers
+43344,glad_hand,a warm welcome; may be insincere
+43345,glade_mallow Napaea_dioica,tall coarse American herb having palmate leaves and numerous small white dioecious flowers; found wild in most alluvial soils of eastern and central United States
+43346,gladiator,(ancient Rome) a professional combatant or a captive who entertained the public by engaging in mortal combat
+43347,gladiolus corpus_sternum,the large central part of the breastbone
+43348,gladiolus gladiola glad sword_lily,any of numerous plants of the genus Gladiolus native chiefly to tropical and South Africa having sword-shaped leaves and one-sided spikes of brightly colored funnel-shaped flowers; widely cultivated
+43349,gladness gladfulness gladsomeness,experiencing joy and pleasure
+43350,glamor glamour,alluring beauty or charm (often with sex-appeal)
+43351,glamorization glamorisation glamourization glamourisation,the act of glamorizing; making something or someone more beautiful (often in a superficial way)
+43352,glance glimpse coup_d'oeil,a quick look
+43353,gland secretory_organ secretor secreter,any of various organs that synthesize substances needed by the body and release it through ducts or directly into the bloodstream
+43354,glanders,a destructive and contagious bacterial disease of horses that can be transmitted to humans
+43355,glandular_disease gland_disease glandular_disorder adenosis,a disorder of the glands of the body
+43356,glans,a small rounded structure; especially that at the end of the penis or clitoris
+43357,glans_clitoridis,small mass of erectile tissue at the end of the body of the clitoris
+43358,glans_penis,the conical mass of erectile tissue that forms the head of the penis
+43359,glare blaze brilliance,a light within the field of vision that is brighter than the brightness to which the eyes are adapted; "a glare of sunlight"
+43360,glare glower,an angry stare
+43361,glasnost,a policy of the Soviet government allowing freer discussion of social problems
+43362,glass,a brittle transparent solid with irregular atomic structure
+43363,glass,glassware collectively; "She collected old glass"
+43364,glass drinking_glass,a container made of glass for holding liquids while drinking
+43365,glass glassful,the quantity a glass will hold
+43366,glass_ceiling,a ceiling based on attitudinal or organizational bias in the work force that prevents minorities and women from advancing to leadership positions
+43367,glass_cutter,a tool for cutting glass
+43368,glass_cutter glass-cutter,someone who cuts or grinds designs on glass
+43369,glass_cutter glass-cutter glassworker glazier glazer,someone who cuts flat glass to size
+43370,glass_eye,prosthesis consisting of an artificial eye made of glass
+43371,glass_lizard glass_snake joint_snake,snakelike lizard of Europe and Asia and North America with vestigial hind limbs and the ability to regenerate its long fragile tail
+43372,glass_sponge,a siliceous sponge (with glassy spicules) of the class Hyalospongiae
+43373,glass_wool,glass fibers spun and massed into bundles resembling wool
+43374,glassblower,someone skilled in blowing bottles from molten glass
+43375,glasses_case,a case for carrying spectacles
+43376,glassmaker,someone who makes glass
+43377,glassware glasswork,an article of tableware made of glass
+43378,glassworks,a workplace where glass is made
+43379,glasswort samphire Salicornia_europaea,fleshy maritime plant having fleshy stems with rudimentary scalelike leaves and small spikes of minute flowers; formerly used in making glass
+43380,glaucoma,an eye disease that damages the optic nerve and impairs vision (sometimes progressing to blindness); "contrary to popular belief, glaucoma is not always caused by elevated intraocular pressure"
+43381,glauconite,a green mineral consisting of hydrated silicate of potassium or iron or magnesium or aluminum; found in greensand
+43382,glaze,any of various thin shiny (savory or sweet) coatings applied to foods
+43383,glaze,a glossy finish on a fabric
+43384,glaze,a coating for ceramics, metal, etc.
+43385,gleam gleaming glimmer,a flash of light (especially reflected light)
+43386,gleam gleaming glow lambency,an appearance of reflected light
+43387,gleaner,someone who picks up grain left in the field by the harvesters
+43388,gleaner,someone who gathers something in small pieces (e.g. information) slowly and carefully
+43389,gleba,fleshy spore-bearing inner mass of e.g. a puffball or stinkhorn
+43390,glebe,plot of land belonging to an English parish church or an ecclesiastical office
+43391,glebe_house,a parsonage (especially one provided for the holder of a benefice)
+43392,glee_club,a club organized to sing together
+43393,gleet,a thin morbid discharge as from a wound or especially chronic gonorrhea
+43394,glen,a narrow secluded valley (in the mountains)
+43395,glenoid_fossa glenoid_cavity,the concavity in the head of the scapula that receives the head of the humerus to form the shoulder joint
+43396,glenoid_fossa mandibular_fossa,a deep concavity in the temporal bone at the root of the zygomatic arch that receives the condyle of the mandible
+43397,glibness slickness,a kind of fluent easy superficiality; "the glibness of a high-pressure salesman"
+43398,glide gliding sailplaning soaring sailing,the activity of flying a glider
+43399,glider sailplane,aircraft supported only by the dynamic action of air against its surfaces
+43400,gliding_joint articulatio_plana,a freely moving joint in which the articulations allow only gliding motions
+43401,glimpse,a vague indication; "he caught only a glimpse of the professor's meaning"
+43402,glimpse,a brief or incomplete view; "from the window he could catch a glimpse of the lake"
+43403,glint,a spatially localized brightness
+43404,glioblastoma spongioblastoma,a fast-growing malignant brain tumor composed of spongioblasts; nearly always fatal
+43405,glioma,a tumor of the brain consisting of neuroglia
+43406,glipizide Glucotrol,an oral antidiabetic drug (trade name Glucotrol) that stimulates the release of insulin from the pancreas
+43407,gliricidia,any of several small deciduous trees valued for their dark wood and dense racemes of nectar-rich pink flowers grown in great profusion on arching branches; roots and bark and leaves and seeds are poisonous
+43408,glissade,(ballet) a gliding or sliding step in ballet
+43409,glissando,a rapid series of ascending or descending notes on the musical scale
+43410,glitter glister glisten scintillation sparkle,the quality of shining with a bright reflected light
+43411,glitter sparkle coruscation,the occurrence of a small flash or spark
+43412,gloat gloating glee,malicious satisfaction
+43413,global_aphasia total_aphasia,loss of all ability to communicate
+43414,global_warming,an increase in the average temperature of the earth's atmosphere (especially a sustained increase that causes climatic changes)
+43415,globalization globalisation,growth to a global or worldwide scale; "the globalization of the communication industry"
+43416,globe,a sphere on which a map (especially of the earth) is represented
+43417,globe_amaranth bachelor's_button Gomphrena_globosa,tropical American herb having rose to red or purple flowers that can be dried without losing color
+43418,globe_lily fairy_lantern,any of several plants of the genus Calochortus having egg-shaped flowers
+43419,globe_mallow false_mallow,genus of coarse herbs and subshrubs of arid North and South America having pink or scarlet flowers and globose fruits
+43420,globe_pepper,round sweet pepper
+43421,globe_thistle,any of various plants of the genus Echinops having prickly leaves and dense globose heads of bluish flowers
+43422,globeflower globe_flower,any of several plants of the genus Trollius having globose yellow flowers
+43423,globetrotter world_traveler,someone who travels widely and often
+43424,globigerina,marine protozoan having a rounded shell with spiny processes
+43425,globin hematohiston haematohiston,a colorless protein obtained by removing heme from hemoglobin; the oxygen carrying compound in red blood cells
+43426,globule,a small globe or ball
+43427,globulin,a family of proteins found in blood and milk and muscle and in plant seed
+43428,glochidium glochid,a barbed spine or bristle (often tufted on cacti)
+43429,glockenspiel orchestral_bells,a percussion instrument consisting of a set of graduated metal bars mounted on a frame and played with small hammers
+43430,glogg,Scandinavian punch made of claret and aquavit with spices and raisins and orange peel and sugar
+43431,glomerule,a compacted or sessile cyme
+43432,glomerulonephritis,nephritis marked by inflammation of the glomeruli of the kidney; characterized by decreased production of urine and by the presence of blood and protein in the urine and by edema
+43433,glomerulus,a small intertwined group of capillaries in the malpighian body; it filters the blood during urine formation
+43434,gloom gloominess glumness,an atmosphere of depression and melancholy; "gloom pervaded the office"
+43435,gloom gloominess somberness sombreness,a feeling of melancholy apprehension
+43436,gloom somberness sombreness,a state of partial or total darkness; "he struck a match to dispel the gloom"
+43437,gloominess lugubriousness sadness,the quality of excessive mournfulness and uncheerfulness
+43438,glop,any gummy shapeless matter; usually unpleasant
+43439,glorification,the act of glorifying (as in worship); "the glorification of God"
+43440,gloriosa glory_lily climbing_lily creeping_lily Gloriosa_superba,any plant of the genus Gloriosa of tropical Africa and Asia; a perennial herb climbing by means of tendrils at leaf tips having showy yellow to red or purple flowers; all parts are poisonous
+43441,glory glorification,a state of high honor; "he valued glory above life itself"
+43442,glory resplendence resplendency,brilliant radiant beauty; "the glory of the sunrise"
+43443,glory_hole lazaretto,a small locker at the stern of a boat or between decks of a ship
+43444,glory_pea clianthus,any of various shrubs or vines of the genus Clianthus having compound leaves and pea-like red flowers in drooping racemes
+43445,gloss rubric,an explanation or definition of an obscure word in a text
+43446,glossalgia glossodynia,pain in the tongue
+43447,glossarist,a scholiast who writes glosses or glossaries
+43448,glossary gloss,an alphabetical list of technical terms in some specialized field of knowledge; usually published as an appendix to a text on that field
+43449,glossitis,inflammation of the tongue
+43450,glossolalia,repetitive nonmeaningful speech (especially that associated with a trance state or religious fervor)
+43451,glossopharyngeal_nerve nervus_glossopharyngeus ninth_cranial_nerve,sensory nerve to the pharynx and back of the tongue; motor fibers innervate muscles that elevate the pharynx and larynx; includes parasympathetic fibers to the otic ganglion
+43452,glossoptosis,abnormal downward or back placement of the tongue
+43453,glossy,a photograph that is printed on smooth shiny paper
+43454,glossy_snake Arizona_elegans,nocturnal burrowing snake of western United States with shiny tan scales
+43455,glottal_stop glottal_plosive glottal_catch,a stop consonant articulated by releasing pressure at the glottis; as in the sudden onset of a vowel
+43456,glottis,the vocal apparatus of the larynx; the true vocal folds and the space between them where the voice tone is generated
+43457,glottochronology,the determination of how long ago different languages evolved from a common source language; "he mapped the glottochronology of the Romance languages"
+43458,glove,handwear: covers the hand and wrist
+43459,glove_anesthesia,a mental disorder involving loss of sensitivity in the hand and wrist; "since no combination of nerves serve this area a glove anesthesia is clearly psychogenic in origin"
+43460,glove_compartment,compartment on the dashboard of a car
+43461,glove_leather,leather suitable for making gloves
+43462,glow,a steady even light without flames
+43463,glow,a feeling of considerable warmth; "the glow of new love"; "a glow of regret"
+43464,glow_lamp,a gas-discharge tube with a hot cathode; used in stroboscopes
+43465,glow_tube,a gas-discharge tube consisting of a cold cathode and a diode in a tube filled with gas; the color of the glow depends on the particular gas
+43466,glowworm,the luminous larva or wingless grub-like female of a firefly
+43467,gloxinia,any of several plants of the genera Gloxinia or Sinningia (greenhouse gloxinias) having showy bell-shaped flowers
+43468,glucagon,a hormone secreted by the pancreas; stimulates increases in blood sugar levels in the blood (thus opposing the action of insulin)
+43469,glucocorticoid,a steroid hormone that is produced by the adrenal cortex of animals; affects functioning of gonads and has anti-inflammatory activity
+43470,glucosamine,an amino derivative of glucose that is a component of many polysaccharides
+43471,glucose,a monosaccharide sugar that has several forms; an important source of physiological energy
+43472,glucose_tolerance_test,test of the body's ability to metabolize carbohydrates; used in the diagnosis of hypoglycemia and diabetes mellitus
+43473,glucoside,a glycoside derived from glucose
+43474,glucosuria,the presence of abnormally high levels of glucose in the urine
+43475,glue gum mucilage,cement consisting of a sticky substance that is used as an adhesive
+43476,glume,small dry membranous bract found in inflorescences of Gramineae and Cyperaceae
+43477,gluon,a gauge boson that mediates strong interaction among quarks
+43478,glut oversupply surfeit,the quality of being so overabundant that prices fall
+43479,glutamate,a salt or ester of glutamic acid
+43480,glutamic_acid glutaminic_acid,an amino acid occurring in proteins; important in the nitrogen metabolism of plants; used in monosodium glutamate to enhance the flavor of meats
+43481,glutamic_oxalacetic_transaminase glutamic_oxaloacetic_transaminase,an enzyme involved in transamination
+43482,glutamine,a crystalline amino acid occurring in proteins; important in protein metabolism
+43483,glutathione_peroxidase,an enzyme in the body that is a powerful scavenger of free radicals
+43484,gluteal_artery arteria_glutes,branches of the internal iliac artery that supply the hip joint and gluteal region
+43485,gluteal_vein vena_gluteus,veins draining the gluteal muscles on either side of the body
+43486,glutelin,a simple protein found in the seeds of cereals
+43487,gluten,a protein substance that remains when starch is removed from cereal grains; gives cohesiveness to dough
+43488,gluten-free_diet,diet prescribed to treat celiac disease; eliminates such foods as wheat and rye and oats and beans and cabbage and turnips and cucumbers that are rich in gluten
+43489,gluten_bread,bread made with gluten flour
+43490,glutethimide Doriden,sedative (trade name Doriden) used to treat some sleep disorders
+43491,gluteus gluteus_muscle gluteal_muscle glute,any one of three large skeletal muscles that form the buttock and move the thigh
+43492,gluteus_maximus,the outermost of the three gluteal muscles
+43493,gluteus_medius,the middle of the three gluteal muscles
+43494,gluteus_minimus,the innermost of the three gluteal muscles
+43495,glutton Gulo_gulo wolverine,musteline mammal of northern Eurasia
+43496,glutton gourmand gourmandizer trencherman,a person who is devoted to eating and drinking to excess
+43497,gluttony,habitual eating to excess
+43498,gluttony overeating gula,eating to excess (personified as one of the deadly sins)
+43499,glyburide DiaBeta Micronase,an oral antidiabetic drug (trade names DiaBeta and Micronase) that stimulates the release of insulin from the pancreas
+43500,glyceraldehyde glyceric_aldehyde,a sweet crystalline aldehyde formed by the breakdown of sugars
+43501,glyceric_acid,a syrupy acid obtained by oxidation of glycerol or glyceraldehyde
+43502,glyceride acylglycerol,an ester of glycerol and fatty acids that occurs naturally as fats and fatty oils; "fresh fats contain glycerides of fatty acids and very little free acid"
+43503,glycerin_jelly,a mixture of glycerin and gelatin that is used in histology for mounting specimens
+43504,glycerinated_gelatin,a gelatinous preparation made from gelatin and glycerin and water; used as a base for ointments and suppositories
+43505,glycerite glycerole,a medicine made by mixing a substance in glycerin
+43506,glycerogelatin glycerogel,a medicated skin preparation made from glycerin and glycerinated gelatin
+43507,glycerol glycerin glycerine,a sweet syrupy trihydroxy alcohol obtained by saponification of fats and oils
+43508,glyceryl,a trivalent radical derived from glycerol by removing the three hydroxyl radicals
+43509,glyceryl_ester,an ester of glycerol
+43510,glycine,the simplest amino acid found in proteins and the principal amino acid in sugar cane
+43511,glycogen animal_starch,one form in which body fuel is stored; stored primarily in the liver and broken down into glucose when needed by the body
+43512,glycogenesis,the formation in animals of glycogen from glucose
+43513,glycogenesis,the conversion of glucose to glycogen when the glucose in the blood exceeds the demand
+43514,glycolic_acid glycollic_acid hydroxyacetic_acid,a translucent crystalline compound found in sugar cane and sugar beets and unripe grapes
+43515,glycolysis,a metabolic process that breaks down carbohydrates and sugars through a series of reactions to either pyruvic acid or lactic acid and releases energy for the body in the form of ATP
+43516,glycoprotein,a conjugated protein having a carbohydrate component
+43517,glycoside,a group of compounds derived from monosaccharides
+43518,glycosuria,the presence of abnormally high levels of sugar in the urine
+43519,glyph,glyptic art in the form of a symbolic figure carved or incised in relief
+43520,glyptic_art glyptography,carvings or engravings (especially on precious stones)
+43521,glyptics lithoglyptics,the art of engraving on precious stones
+43522,glyptography,carving or engraving (especially on stones)
+43523,gnat,any of various small biting flies: midges; biting midges; black flies; sand flies
+43524,gnat,(British usage) mosquito
+43525,gnatcatcher,very small North American and South American warblers
+43526,gnathion,the most inferior point of the mandible in the midline
+43527,gnathostome,a vertebrate animal possessing true jaws
+43528,gneiss,a laminated metamorphic rock similar to granite
+43529,gnetum Gnetum_gnemon,small tropical tree with tiered branches and divaricate branchlets having broad glossy dark green leaves; exploited for its edible young leaves and seeds that provide a fine flour
+43530,gnocchi,(Italian) a small dumpling made of potato or flour or semolina that is boiled or baked and is usually served with a sauce or with grated cheese
+43531,gnome,a short pithy saying expressing a general truth
+43532,gnome dwarf,a legendary creature resembling a tiny old man; lives in the depths of the earth and guards buried treasure
+43533,gnomon,indicator provided by the stationary arm whose shadow indicates the time on the sundial
+43534,gnosis,intuitive knowledge of spiritual truths; said to have been possessed by ancient Gnostics
+43535,gnu wildebeest,large African antelope having a head with horns like an ox and a long tufted tail
+43536,go go_game,a board game for two players who place counters on a grid; the object is to surround and so capture the opponent's counters
+43537,go spell tour turn,a time period for working (after which you will be relieved by someone else); "it's my go"; "a spell of work"
+43538,go-getter whizz-kid whiz-kid ball_of_fire,someone whose career progresses rapidly
+43539,go-kart,a small low motor vehicle with four wheels and an open framework; used for racing
+43540,go-slow,a form of protest by workers in which they deliberately slow down in order to cause problem from their employers
+43541,go_board,a board used for playing go
+43542,goa_bean,Old World tropical bean
+43543,goad goading prod prodding urging spur spurring,a verbalization that encourages you to attempt something; "the ceaseless prodding got on his nerves"
+43544,goal,game equipment consisting of the place toward which players of a game try to advance a ball or puck in order to score points
+43545,goal,a successful attempt at scoring; "the winning goal came with less than a minute left to play"
+43546,goal end,the state of affairs that a plan is intended to achieve and that (when achieved) terminates behavior intended to achieve it; "the ends justify the means"
+43547,goal-kick,(rugby) an attempt to kick a goal
+43548,goal-kick,(association football) a kick by the defending side after the attacking side sends the ball over the goal-line
+43549,goal_line,a line marking each end of the playing field or pitch; where the goals stand
+43550,goalkeeper goalie goaltender netkeeper,the defensive position on an ice hockey or soccer or lacrosse team who stands in front of the goal and tries to prevent opposing players from scoring
+43551,goalkeeper goalie goaltender netkeeper netminder,the soccer or hockey player assigned to protect the goal
+43552,goalmouth,(sports) the area immediately in front of the goal
+43553,goalpost,one of a pair of posts (usually joined by a crossbar) that are set up as a goal at each end of a playing field
+43554,goat caprine_animal,any of numerous agile ruminants related to sheep but having a beard and straight horns
+43555,goat's_rue goat_rue Galega_officinalis,tall bushy European perennial grown for its pinnate foliage and slender spikes of blue flowers; sometimes used medicinally
+43556,goat_antelope,bovid related to goats but having antelope-like features: mountain goats; gorals; serows; chamois; gnu goats
+43557,goat_cheese chevre,made from goats' milk
+43558,goat_grass Aegilops_triuncalis,European grass naturalized as a weed in North America; sharp-pointed seeds cause injury when eaten by livestock
+43559,goat_herder goatherd,a person who tends a flock of goats
+43560,goat_willow florist's_willow pussy_willow Salix_caprea,much-branched Old World willow having large catkins and relatively large broad leaves
+43561,goatee,a small chin beard trimmed to a point; named for its resemblance to a goat's beard
+43562,goatfish red_mullet surmullet Mullus_surmuletus,brightly colored tropical fishes with chin barbels
+43563,goats'_milk,the milk of a goat
+43564,goatsfoot goat's_foot Oxalis_caprina,short-stemmed South African plant with bluish flowers
+43565,goatskin,the hide of a goat
+43566,goatsucker nightjar caprimulgid,mainly crepuscular or nocturnal nonpasserine birds with mottled greyish-brown plumage and large eyes; feed on insects
+43567,gob,a lump of slimy stuff; "a gob of phlegm"
+43568,gobbet,a lump or chunk of raw meat
+43569,gobble,the characteristic sound made by a turkey cock
+43570,gobbledygook,incomprehensible or pompous jargon of specialists
+43571,gobbler,a hasty eater who swallows large mouthfuls
+43572,goblet,a drinking glass with a base and stem
+43573,goblet_cell,an epithelial cell that secretes mucous
+43574,goblin hob hobgoblin,(folklore) a small grotesque supernatural creature that makes trouble for human beings
+43575,goby gudgeon,small spiny-finned fish of coastal or brackish waters having a large head and elongated tapering body having the ventral fins modified as a sucker
+43576,god,a man of such superior qualities that he seems like a deity to other people; "he was a god among men"
+43577,godchild,an infant who is sponsored by an adult (the godparent) at baptism
+43578,goddaughter,a female godchild
+43579,goddess,a female deity
+43580,godfather,any man who serves as a sponsor for a child at baptism
+43581,godfather,someone having a relation analogous to that of a male sponsor to his godchild
+43582,godliness,piety by virtue of being a godly person
+43583,godmother,any woman who serves as a sponsor for a child at baptism
+43584,godown,(in India and Malaysia) a warehouse
+43585,godparent,a person who sponsors someone (the godchild) at baptism
+43586,godson,a male godchild
+43587,godwit,large wading bird that resembles a curlew; has a long slightly upturned bill
+43588,goethite gothite,a red or yellow or brown mineral; an oxide of iron that is a common constituent of rust
+43589,gofer,an employee whose duties include running errands
+43590,goffer gauffer,an ornamental frill made by pressing pleats
+43591,goffer gauffer goffering_iron gauffering_iron,an iron used to press pleats and ridges
+43592,goffer gopher,a zealously energetic person (especially a salesman)
+43593,goggles,(plural) tight-fitting spectacles worn to protect the eyes
+43594,going sledding,advancing toward a goal; "persuading him was easy going"; "the proposal faces tough sledding"
+43595,going-out-of-business_sale,a sale of all the tangible assets of a business that is about to close; "during the Great Depression going-out-of-business sales were very common"
+43596,going-over,a careful and thorough inspection
+43597,going_ashore,debarkation from a boat or ship
+43598,goiter goitre struma thyromegaly,abnormally enlarged thyroid gland; can result from underproduction or overproduction of hormone or from a deficiency of iodine in the diet
+43599,goitrogen,any substance (such as thiouracil) that induces the formation of a goiter
+43600,gold,coins made of gold
+43601,gold,great wealth; "Whilst that for which all virtue now is sold, and almost every vice--almighty gold"--Ben Jonson
+43602,gold,something likened to the metal in brightness or preciousness or superiority etc.; "the child was as good as gold"; "she has a heart of gold"
+43603,gold Au atomic_number_79,a soft yellow malleable ductile (trivalent and univalent) metallic element; occurs mainly as nuggets in rocks and alluvial deposits; does not react with most chemicals but is attacked by chlorine and aqua regia
+43604,gold-crowned_kinglet Regulus_satrata,American golden-crested kinglet
+43605,gold-tail_moth Euproctis_chrysorrhoea,white furry-bodied European moth with a yellow tail tuft
+43606,gold_coast,a rich neighborhood noted for expensive homes and luxurious living; usually along a coastal area; "Chicago's gold coast is along Lake Michigan"
+43607,gold_digger,a woman who associates with or marries a rich man in order to get valuables from him through gifts or a divorce settlement
+43608,gold_dust,the particles and flakes (and sometimes small nuggets) of gold obtained in placer mining
+43609,gold_fern Pityrogramma_chrysophylla,fern of West Indies and South America having fronds with bright golden-yellow undersides
+43610,gold_fever,greed and the contagious excitement of a gold rush
+43611,gold_foil,foil made of gold
+43612,gold_leaf,a very thin form of gold foil
+43613,gold_medal,a trophy made of gold (or having the appearance of gold) that is usually awarded for winning first place in a competition
+43614,gold_miner gold_digger gold_panner,a miner who digs or pans for gold in a gold field
+43615,gold_of_pleasure Camelina_sativa,annual European false flax having small white flowers; cultivated since Neolithic times as a source of fiber and for its oil-rich seeds; widely naturalized in North America
+43616,gold_plate,tableware that is plated with gold
+43617,gold_plate,a thin plating of gold on something
+43618,gold_rush,a large migration of people to a newly discovered gold field
+43619,gold_standard,a monetary standard under which the basic unit of currency is defined by a stated quantity of gold
+43620,gold_standard,a paragon of excellence; "academic education is the gold standard against which other educational activity is pejoratively judged"
+43621,goldbeater gold-beater,an artisan who beats gold into gold leaf
+43622,goldbrick,a soldier who performs his duties without proper care or effort
+43623,goldbrick,a brick-shaped block that looks like gold but is not
+43624,goldbrick,anything that is supposed to be valuable but turns out to be worthless
+43625,goldbrick goof-off ne'er-do-well good-for-nothing no-account good-for-naught,an idle worthless person
+43626,goldcrest golden-crested_kinglet Regulus_regulus,European kinglet with a black-bordered yellow crown patch
+43627,golden-beard_penstemon Penstemon_barbatus,plant of southwestern United States having long open clusters of scarlet flowers with yellow hairs on lower lip
+43628,golden_age,a time period when some activity or skill was at its peak; "it was the golden age of cinema"
+43629,golden_age,any period (sometimes imaginary) of great peace and prosperity and happiness
+43630,golden_algae,algae having the pigments chlorophyll and carotene and xanthophyll
+43631,golden_aster,any of several shrubby herbs or subshrubs of the genus Chrysopsis having bright golden-yellow flower heads that resemble asters; throughout much of United States and into Canada
+43632,golden_barrel_cactus Echinocactus_grusonii,large cactus of east central Mexico having golden to pale yellow flowers and spines
+43633,golden_calf,(Old Testament) an idol made by Aaron for the Israelites to worship; destroyed by Moses; it is now used to refer to anything worshipped undeservedly
+43634,golden_calla,any of several callas of the genus Zantedeschia having yellow spathes
+43635,golden_clematis Clematis_tangutica,Chinese clematis with serrate leaves and large yellow flowers
+43636,golden_club Orontium_aquaticum,aquatic plant of the southeastern United States having blue-green leaves and a spadix resembling a club covered with tiny yellow flowers
+43637,golden_cup Mexican_tulip_poppy Hunnemania_fumariifolia,native of Mexican highlands grown for its glossy clear yellow flowers and blue-grey finely dissected foliage
+43638,golden_eagle Aquila_chrysaetos,large eagle of mountainous regions of the northern hemisphere having a golden-brown head and neck
+43639,golden_fern Pityrogramma_calomelanos_aureoflava,tropical American fern having fronds with light golden undersides
+43640,golden_fern leather_fern Acrostichum_aureum,stout tropical swamp fern (especially tropical America) having large fronds with golden yellow sporangia covering the undersides
+43641,golden_fig Florida_strangler_fig strangler_fig wild_fig Ficus_aurea,a strangler tree native to southern Florida and West Indies; begins as an epiphyte eventually developing many thick aerial roots and covering enormous areas
+43642,golden_glow double_gold hortensia Rudbeckia_laciniata_hortensia,very tall branching herb with showy much-doubled yellow flower heads
+43643,golden_groundsel golden_ragwort Packera_aurea Senecio_aureus,weedy herb of the eastern United States to Texas having golden-yellow flowers; sometimes becomes invasive; sometimes placed in genus Senecio
+43644,golden_hamster Syrian_hamster Mesocricetus_auratus,small light-colored hamster often kept as a pet
+43645,golden_handshake,a lucrative severance agreement offered to an employee (usually as an incentive to retire)
+43646,golden_larch Pseudolarix_amabilis,Chinese deciduous conifer resembling a larch with golden yellow leaves
+43647,golden_mean,the middle between extremes
+43648,golden_mole,mole of southern Africa having iridescent guard hairs mixed with the underfur
+43649,golden_oriole Oriolus_oriolus,bright yellow songbird with black wings
+43650,golden_parachute,giving top executives lucrative benefits that must be paid by the acquirer if they are discharged after a takeover
+43651,golden_pheasant Chrysolophus_pictus,brightly colored crested pheasant of mountains of western and central Asia
+43652,golden_plover,plovers of Europe and America having the backs marked with golden-yellow spots
+43653,golden_polypody serpent_fern rabbit's-foot_fern Phlebodium_aureum Polypodium_aureum,tropical American fern with brown scaly rhizomes cultivated for its large deeply lobed deep bluish-green fronds; sometimes placed in genus Polypodium
+43654,golden_pothos pothos ivy_arum Epipremnum_aureum Scindapsus_aureus,evergreen liana widely cultivated for its variegated foliage
+43655,golden_retriever,an English breed having a long silky golden coat
+43656,golden_rule,any important rule; "the golden rule of teaching is to be clear"
+43657,golden_saxifrage golden_spleen,any of various low aquatic herbs of the genus Chrysosplenium
+43658,golden_section golden_mean,the proportional relation between two divisions of line or two dimension of a plane figure such that short : long :: long : (short + long)
+43659,golden_shiner Notemigonus_crysoleucas,shiner of eastern North America having golden glints; sometimes also called `bream'
+43660,golden_shower_tree drumstick_tree purging_cassia pudding_pipe_tree canafistola canafistula Cassia_fistula,deciduous or semi-evergreen tree having scented sepia to yellow flowers in drooping racemes and pods whose pulp is used medicinally; tropical Asia and Central and South America and Australia
+43661,golden_star golden_stars Bloomeria_crocea,California plant having grasslike leaves and showy orange flowers
+43662,golden_thistle,any of several spiny Mediterranean herbs of the genus Scolymus having yellow flower heads
+43663,golden_wattle Acacia_pycnantha,shrubby Australian tree having clusters of fragrant golden yellow flowers; widely cultivated as an ornamental
+43664,golden_wedding_anniversary,the 50th wedding anniversary
+43665,golden_willow Salix_alba_vitellina Salix_vitellina,European willow having greyish leaves and yellow-orange twigs used in basketry
+43666,golden_yarrow Eriophyllum_lanatum,greyish woolly leafy perennial with branched stems ending in leafless stalks bearing golden-yellow flower heads; dry areas western North America
+43667,golden_years,the time of life after retirement from active work
+43668,goldenbush,a plant of the genus Haplopappus
+43669,goldenbush,any of various much-branched yellow-flowered shrubs of the genus Chrysothamnus; western North America
+43670,goldeneye golden-eyed_fly,a variety of green lacewing
+43671,goldeneye whistler Bucephela_clangula,large-headed swift-flying diving duck of Arctic regions
+43672,goldenrod,any of numerous chiefly summer-blooming and fall-blooming North American plants especially of the genus Solidago
+43673,goldenseal golden_seal yellow_root turmeric_root Hydrastis_Canadensis,perennial herb of northeastern United States having a thick knotted yellow rootstock and large rounded leaves
+43674,goldfield,a district where gold is mined
+43675,goldfields Lasthenia_chrysostoma,small slender woolly annual with very narrow opposite leaves and branches bearing solitary golden-yellow flower heads; southwestern Oregon to Baja California and Arizona; often cultivated
+43676,goldfinch Carduelis_carduelis,small European finch having a crimson face and yellow-and-black wings
+43677,goldfish Carassius_auratus,small golden or orange-red freshwater fishes of Eurasia used as pond or aquarium fishes
+43678,goldfish_bowl fish_bowl fishbowl,a state of affairs in which you have no privacy; "the president lives in a goldfish bowl"
+43679,goldilocks goldilocks_aster Aster_linosyris Linosyris_vulgaris,early-flowering perennial of southern and southeastern Europe with flower heads resembling those of goldenrod
+43680,goldmine gold_mine,a good source of something that is desired
+43681,goldmine gold_mine,a mine where gold ore is found
+43682,goldsmith goldworker gold-worker,an artisan who makes jewelry and other objects out of gold
+43683,goldstone,aventurine spangled densely with fine gold-colored particles
+43684,goldthread golden_thread Coptis_groenlandica Coptis_trifolia_groenlandica,low-growing perennial of North America woodlands having trifoliate leaves and yellow rootstock and white flowers
+43685,golem,(Jewish folklore) an artificially created human being that is given life by supernatural means
+43686,golf golf_game,a game played on a large open course with 9 or 18 holes; the object is use as few strokes as possible in playing all the holes
+43687,golf-club_head club_head club-head clubhead,(golf) the head of the club which strikes the ball
+43688,golf_bag,golf equipment consisting of a bag for carrying golf clubs and balls
+43689,golf_ball,a small hard ball used in playing golf; dimpled to reduce wind resistance
+43690,golf_club,a club of people to play golf
+43691,golf_club golf-club golfclub club,golf equipment used by a golfer to hit a golf ball
+43692,golf_course links_course,course consisting of a large landscaped area for playing golf
+43693,golf_equipment,sports equipment used in playing golf
+43694,golf_glove,a glove worn by golfers to give a firm grip on the handle of the golf club
+43695,golf_lesson,a lesson in playing golf
+43696,golf_pro professional_golfer,someone who earns a living by playing or teaching golf
+43697,golf_range driving_range,a practice range for practicing golf shots
+43698,golf_stroke golf_shot swing,the act of swinging a golf club at a golf ball and (usually) hitting it
+43699,golf_widow,a wife who is left alone much of the time because her husband is playing golf
+43700,golfcart golf_cart,a small motor vehicle in which golfers can ride between shots
+43701,golfer golf_player linksman,someone who plays the game of golf
+43702,golfing,playing golf; "he goes south every winter for the golfing"
+43703,goliard,a wandering scholar in medieval Europe; famed for intemperance and riotous behavior and the composition of satirical and ribald Latin songs
+43704,goliath_frog Rana_goliath,largest living frog; up to a foot and weighing up to 10 lbs; Africa
+43705,golliwog golliwogg,a grotesque black doll
+43706,gomphothere,extinct elephants of Central American and South America; of the Miocene and Pleistocene
+43707,gonad sex_gland,a gland in which gametes (sex cells) are produced
+43708,gonadotropin gonadotrophin gonadotropic_hormone gonadotrophic_hormone,hormone secreted by the anterior pituitary gland and placenta; stimulates the gonads and controls reproductive activity
+43709,goncalo_alves Astronium_fraxinifolium,tall tropical American timber tree especially abundant in eastern Brazil; yields hard strong durable zebrawood with straight grain and dark strips on a pinkish to yellowish ground; widely used for veneer and furniture and heavy construction
+43710,gondang_wax fig_wax,a hard cream-colored wax obtained from a Javanese fig tree
+43711,gondola,long narrow flat-bottomed boat propelled by sculling; traditionally used on canals of Venice
+43712,gondola_car gondola,a low flat-bottomed freight car with fixed sides but no roof
+43713,gondolier gondoliere,a (Venetian) boatman who propels a gondola
+43714,goner toast,a person in desperate straits; someone doomed; "I'm a goner if this plan doesn't work"; "one mistake and you're toast"
+43715,gong tam-tam,a percussion instrument consisting of a metal plate that is struck with a softheaded drumstick
+43716,gonif goniff ganef ganof,(Yiddish) a thief or dishonest person or scoundrel (often used as a general term of abuse)
+43717,goniometer,direction finder that determines the angular direction of incoming radio signals
+43718,gonion,the craniometric point on either side at the apex of the lower jaw
+43719,gonioscopy,an examination of the front part of the eye to check the angle where the iris meets the cornea; it is used to distinguish between open-angle glaucoma and closed-angle glaucoma
+43720,gonococcus Neisseria_gonorrhoeae,the pus-producing bacterium that causes gonorrhea
+43721,gonorrhea gonorrhoea clap,a common venereal disease caused by the bacterium Neisseria gonorrhoeae; symptoms are painful urination and pain around the urethra
+43722,good,benefit; "for your own good"; "what's the good of worrying?"
+43723,good goodness,that which is pleasing or valuable or useful; "weigh the good against the bad"; "among the highest goods of all are happiness and self-realization"
+43724,good goodness,moral excellence or admirableness; "there is much good to be found in people"
+43725,good-king-henry allgood fat_hen wild_spinach Chenopodium_bonus-henricus,European plant naturalized in North America; often collected from the wild as a potherb
+43726,good-temperedness good-humoredness good-humouredness good-naturedness,a cheerful willingness to be obliging
+43727,good_Samaritan,a person who voluntarily offers help or sympathy in times of trouble
+43728,good_afternoon afternoon,a conventional expression of greeting or farewell
+43729,good_authority,testimony by someone who should know; "I have it on good authority"
+43730,good_continuation continuation law_of_continuation,a Gestalt principle of organization holding that there is an innate tendency to perceive a line as continuing its established direction
+43731,good_egg,(old-fashioned slang) a good person
+43732,good_faith straightness,having honest intentions; "he acted in good faith"; "doubt was expressed as to the good faith of the immigrants"
+43733,good_form,behavior that conforms to social conventions of the time; "it is not good form to brag about winning"
+43734,good_fortune luckiness good_luck,an auspicious state resulting from favorable outcomes
+43735,good_guy,any person who is on your side
+43736,good_health healthiness,the state of being vigorous and free from bodily or mental disease
+43737,good_humor good_humour good_temper amiability,a cheerful and agreeable mood
+43738,good_luck fluke good_fortune,a stroke of luck
+43739,good_morning morning,a conventional expression of greeting or farewell
+43740,good_nature,a cheerful, obliging disposition
+43741,good_night,a conventional expression of farewell
+43742,good_old_boy good_ole_boy good_ol'_boy,a white male Southerner with an unpretentious convivial manner and conservative or intolerant attitudes and a strong sense of fellowship with and loyalty to other members of his peer group
+43743,good_part,a place of especial strength
+43744,good_person,a person who is good to other people
+43745,good_time blast,a highly pleasurable or exciting experience; "we had a good time at the party"; "celebrating after the game was a blast"
+43746,good_weather,weather suitable for outdoor activities
+43747,good_will goodwill,(accounting) an intangible asset valued according to the advantage or reputation a business has acquired (over and above its tangible assets)
+43748,good_will goodwill,the friendly hope that something will succeed
+43749,good_word,good news
+43750,goody-goody,a person who behaves extremely well in order to please a superior
+43751,googly wrong_'un bosie bosie_ball,a cricket ball bowled as if to break one way that actually breaks in the opposite way
+43752,googol,a cardinal number represented as 1 followed by 100 zeros (ten raised to the power of a hundred)
+43753,googolplex,a cardinal number represented as 1 followed by a googol of zeros (ten raised to the power of a googol)
+43754,goosander Mergus_merganser,common merganser of Europe and North America
+43755,goose,flesh of a goose (domestic or wild)
+43756,goose,web-footed long-necked typically gregarious migratory aquatic birds usually larger and less aquatic than ducks
+43757,goose_barnacle gooseneck_barnacle Lepas_fascicularis,stalked barnacle that attaches to ship bottoms or floating timbers
+43758,goose_down,down of the goose
+43759,goose_grass Texas_millet Panicum_Texanum,annual weedy grass used for hay
+43760,goose_grease,grease derived from geese
+43761,goose_liver,liver of a goose used as meat
+43762,goose_step,a manner of marching with legs straight and swinging high
+43763,gooseberry,currant-like berry used primarily in jams and jellies
+43764,gooseberry gooseberry_bush Ribes_uva-crispa Ribes_grossularia,spiny Eurasian shrub having greenish purple-tinged flowers and ovoid yellow-green or red-purple berries
+43765,goosefish angler anglerfish angler_fish monkfish lotte allmouth Lophius_Americanus,fishes having large mouths with a wormlike filament attached for luring prey
+43766,goosefoot,any of various weeds of the genus Chenopodium having small greenish flowers
+43767,gooseneck,something in a thin curved form (like the neck of a goose)
+43768,gooseneck_loosestrife Lysimachia_clethroides_Duby,a variety of the loosestrife herb
+43769,gopher pocket_gopher pouched_rat,burrowing rodent of the family Geomyidae having large external cheek pouches; of Central America and southwestern North America
+43770,gopher_hole,a hole in the ground made by gophers
+43771,gopher_snake Pituophis_melanoleucus,bull snake of western North America that invades rodent burrows
+43772,gopher_tortoise gopher_turtle gopher Gopherus_polypemus,burrowing edible land tortoise of southeastern North America
+43773,goral Naemorhedus_goral,small goat antelope with small conical horns; of southern Asian mountains
+43774,gore,coagulated blood from a wound
+43775,gore panel,a piece of cloth that is generally triangular or tapering; used in making garments or umbrellas or sails
+43776,gorge,a deep ravine (usually with a river running through it)
+43777,gorgerin necking,the molding at the top of a column
+43778,gorget,armor plate that protects the neck
+43779,gorgonian gorgonian_coral,corals having a horny or calcareous branching skeleton
+43780,gorgonzola,Italian blue cheese
+43781,gorilla Gorilla_gorilla,largest anthropoid ape; terrestrial and vegetarian; of forests of central west Africa
+43782,gorse furze whin Irish_gorse Ulex_europaeus,very spiny and dense evergreen shrub with fragrant golden-yellow flowers; common throughout western Europe
+43783,goshawk Accipiter_gentilis,large hawk of Eurasia and North America used in falconry
+43784,gosling,young goose
+43785,gospel,a doctrine that is believed to be of great importance; "Newton's writings were gospel for those who followed"
+43786,gospel gospel_singing,folk music consisting of a genre of a cappella music originating with Black slaves in the United States and featuring call and response; influential on the development of other genres of popular music (especially soul)
+43787,gospel gospel_truth,an unquestionable truth; "his word was gospel"
+43788,gossamer,a gauze fabric with an extremely fine texture
+43789,gossip comment scuttlebutt,a report (often malicious) about the behavior of other people; "the divorce caused much gossip"
+43790,gossip gossiper gossipmonger rumormonger rumourmonger newsmonger,a person given to gossiping and divulging personal information about others
+43791,gossip_columnist,a journalist who writes a column of gossip about celebrities
+43792,gossiping gossipmongering,a conversation that spreads personal information about other people
+43793,gouache,an opaque watercolor prepared with gum
+43794,gouache,a watercolor executed with opaque watercolors mixed with gum
+43795,gouge,and edge tool with a blade like a trough for cutting channels or grooves
+43796,gouge,the act of gouging
+43797,gouger,an attacker who gouges out the antagonist's eye
+43798,goulash Hungarian_goulash gulyas,a rich meat stew highly seasoned with paprika
+43799,gourd,any of numerous inedible fruits with hard rinds
+43800,gourd calabash,bottle made from the dried shell of a bottle gourd
+43801,gourd gourd_vine,any vine of the family Cucurbitaceae that bears fruits with hard rinds
+43802,gourde,the basic unit of money in Haiti
+43803,gourmandism,the disposition and habits of a gourmand
+43804,gout gouty_arthritis urarthritis,a painful inflammation of the big toe and foot caused by defects in uric acid metabolism resulting in deposits of the acid and its salts in the blood and joints
+43805,governed,the body of people who are citizens of a particular government; "governments derive their just powers from the consent of the governed"--Declaration of Independence
+43806,governess,a woman entrusted with the care and supervision of a child (especially in a private home)
+43807,governing_board,a board that manages the affairs of an institution
+43808,government,(government) the system or form by which a community or other political unit is governed; "tyrannical government"
+43809,government authorities regime,the organization that is the governing authority of a political unit; "the government reduced taxes"; "the matter was referred to higher authorities"
+43810,government governing governance government_activity administration,the act of governing; exercising authority; "regulations for the governing of state prisons"; "he had considerable experience of government"
+43811,government-in-exile,a temporary government moved to or formed in a foreign land by exiles who hope to rule when their country is liberated
+43812,government_agent,a representative or official of a government or administrative department of a government
+43813,government_bond,a bond that is an IOU of the United States Treasury; considered the safest security in the investment world
+43814,government_building,a building that houses a branch of government
+43815,government_department,a department of government
+43816,government_income government_revenue,income available to the government
+43817,government_office,an office where government employees work
+43818,government_officials officialdom,people elected or appointed to administer a government
+43819,government_security agency_security,a security issued by United States government agencies or the Farm Credit System
+43820,governor,the head of a state government
+43821,governor regulator,a control that maintains a steady speed in a machine (as by controlling the supply of fuel)
+43822,governor's_plum governor_plum Madagascar_plum ramontchi batoko_palm Flacourtia_indica,small shrubby tree of Madagascar cultivated in tropical regions as a hedge plant and for its deep red acid fruits resembling small plums
+43823,governor's_race campaign_for_governor,a race for election to the governorship
+43824,governor_general,a governor of high rank
+43825,governorship,the office of governor
+43826,gowen_cypress Cupressus_goveniana,small sometimes shrubby tree native to California; often used as an ornamental; in some classification systems includes the pygmy cypress and the Santa Cruz cypress
+43827,gown,the members of a university as distinguished from the other residents of the town in which the university is located; "the relations between town and gown are always sensitive"
+43828,gown,a woman's dress, usually with a close-fitting bodice and a long flared skirt, often worn on formal occasions
+43829,gown robe,outerwear consisting of a long flowing garment used for official or ceremonial occasions
+43830,gown surgical_gown scrubs,protective garment worn by surgeons during operations
+43831,grab,a mechanical device for gripping an object
+43832,grab_bag,an assortment of miscellaneous items
+43833,grab_bag,a container from which a person draws a wrapped item at random without knowing the contents
+43834,grab_bar,a bar attached parallel to a wall to provide a handgrip for steadying yourself
+43835,grab_sample,a single sample or measurement taken at a specific time or over as short a period as feasible
+43836,grabber,an unpleasant person who grabs inconsiderately
+43837,grace blessing thanksgiving,a short prayer of thanks before a meal; "their youngest son said grace"
+43838,grace good_will goodwill,a disposition to kindness and compassion; "the victor's grace in treating the vanquished"
+43839,grace grace_of_God free_grace,(Christian theology) the free and unmerited favor or beneficence of God; "God's grace is manifested in the salvation of sinners"; "there but for the grace of God go I"
+43840,grace grace_period,a period of time past the deadline for fulfilling an obligation during which a penalty that would be imposed for being late is waived, especially an extended period granted as a special favor; "The payment had originally been due on April 1 but we had a grace period which expired in June."
+43841,grace gracility,elegance and beauty of movement or expression; "a beautiful figure which she used in subtle movements of unparalleled grace"
+43842,grace saving_grace state_of_grace,(Christian theology) a state of sanctification by God; the state of one who is under such divine influence; "the conception of grace developed alongside the conception of sin"; "it was debated whether saving grace could be obtained outside the membership of the church"; "the Virgin lived in a state of grace"
+43843,grace_cup,cup to be passed around for the final toast after a meal
+43844,grace_note appoggiatura acciaccatura,an embellishing note usually written in smaller size
+43845,gracefulness,beautiful carriage
+43846,gracelessness ungracefulness,an unpleasant lack of grace in carriage or form or movement or expression
+43847,gracilariid gracilariid_moth,small dull or metallic-colored tineoid moths whose larvae mine in plant leaves
+43848,graciousness,excellence of manners or social conduct
+43849,grackle crow_blackbird,long-tailed American blackbird having iridescent black plumage
+43850,grad grade,one-hundredth of a right angle
+43851,gradable_opposition,an opposition that is capable of being graded
+43852,gradation graduation,the act of arranging in grades
+43853,gradation step,relative position in a graded series; "always a step behind"; "subtle gradations in color"; "keep in step with the fashions"
+43854,grade,the gradient of a slope or road or other surface; "the road had a steep grade"
+43855,grade,a variety of cattle produced by crossbreeding with a superior breed
+43856,grade gradation,a degree of ablaut
+43857,grade ground_level,the height of the ground on which something stands; "the base of the tower was below grade"
+43858,grade level tier,a relative position or degree of value in a graded group; "lumber of the highest grade"
+43859,grade_point,a numerical value assigned to a letter grade received in a course taken at a college or university multiplied by the number of credit hours awarded for the course
+43860,grade_point_average GPA,a measure of a student's academic achievement at a college or university; calculated by dividing the total number of grade points received by the total number attempted
+43861,grade_school grammar_school elementary_school primary_school,a school for young children; usually the first 6 or 8 grades
+43862,grade_separation,a crossing that uses an underpass or overpass
+43863,grader,a judge who assigns grades to something
+43864,gradient,a graded change in the magnitude of some physical quantity or dimension
+43865,gradient slope,the property possessed by a line or surface that departs from the horizontal; "a five-degree gradient"
+43866,grading leveling,changing the ground level to a smooth horizontal or gently sloping surface
+43867,gradual,(Roman Catholic Church) an antiphon (usually from the Book of Psalms) immediately after the epistle at Mass
+43868,graduality gradualness,the quality of being gradual or of coming about by gradual stages
+43869,gradualness gentleness,the property possessed by a slope that is very gradual
+43870,graduate,a measuring instrument for measuring fluid volume; a glass container (cup or cylinder or flask) whose sides are marked with or divided into amounts
+43871,graduate_nurse trained_nurse,someone who has completed the course of study (including hospital practice) at a nurses training school
+43872,graduate_school grad_school,a school in a university offering study leading to degrees beyond the bachelor's degree
+43873,graduate_student grad_student postgraduate,a student who continues studies after graduation
+43874,graduated_cylinder,a cylindrical graduate
+43875,graduating_class,the body of students who graduate together this year
+43876,graduation,a line (as on a vessel or ruler) that marks a measurement; "the ruler had 16 graduations per inch"
+43877,graduation,the successful completion of a program of study
+43878,graffito graffiti,a rude decoration inscribed on rocks or walls
+43879,graft grafting,the act of grafting something onto something else
+43880,graft transplant,(surgery) tissue or organ transplanted from a donor to a recipient; in some cases the patient can be both donor and recipient
+43881,graham_bread,bread made of graham (whole wheat) flour
+43882,graham_cracker,semisweet whole-wheat cracker
+43883,grail,the object of any prolonged endeavor
+43884,grail Holy_Grail Sangraal,(legend) chalice used by Christ at the Last Supper
+43885,grain,the side of leather from which the hair has been removed
+43886,grain,1/60 dram; equals an avoirdupois grain or 64.799 milligrams
+43887,grain,1/7000 pound; equals a troy grain or 64.799 milligrams
+43888,grain,a cereal grass; "wheat is a grain that is grown in Kansas"
+43889,grain,a relatively small granular particle of a substance; "a grain of sand"; "a grain of sugar"
+43890,grain,the smallest possible unit of anything; "there was a grain of truth in what he said"; "he does not have a grain of sense"
+43891,grain,the direction, texture, or pattern of fibers found in wood or leather or stone or in a woven fabric; "saw the board across the grain"
+43892,grain caryopsis,dry seed-like fruit produced by the cereal grasses: e.g. wheat, barley, Indian corn
+43893,grain food_grain cereal,foodstuff prepared from the starchy grains of cereal grasses
+43894,grain metric_grain,a weight unit used for pearls or diamonds: 50 mg or 1/4 carat
+43895,grain_merchant,a merchant who deals in food grains
+43896,grain_moth,moth whose larvae feed on grain
+43897,grain_sorghum,any of several sorghums cultivated primarily for grain
+43898,grainfield grain_field,a field where grain is grown
+43899,graining woodgraining,a texture like that of wood
+43900,grains_of_paradise Guinea_grains Guinea_pepper melagueta_pepper Aframomum_melegueta,West African plant bearing pungent peppery seeds
+43901,grainy_club,a variety of grainy club mushrooms
+43902,gram gramme gm g,a metric unit of weight equal to one thousandth of a kilogram
+43903,gram_atom gram-atomic_weight,the quantity of an element whose weight in grams is numerically equal to the atomic weight of the element
+43904,gram_molecule mole mol,the molecular weight of a substance expressed in grams; the basic unit of amount of substance adopted under the Systeme International d'Unites
+43905,grama grama_grass gramma gramma_grass,pasture grass of plains of South America and western North America
+43906,gramicidin,an antibiotic produced by a soil bacterium; used chiefly as an antiseptic in treating local infections produced by Gram-positive bacteria
+43907,gramineous_plant graminaceous_plant,cosmopolitan herbaceous or woody plants with hollow jointed stems and long narrow leaves
+43908,grammar,the branch of linguistics that deals with syntax and morphology (and sometimes also deals with semantics)
+43909,grammar_school,a secondary school emphasizing Latin and Greek in preparation for college
+43910,grammarian syntactician,a linguist who specializes in the study of grammar and syntax
+43911,grammatical_category syntactic_category,(grammar) a category of words having the same grammatical properties
+43912,grammatical_meaning,the meaning of a word that depends on its role in a sentence; varies with inflectional form
+43913,grammatical_relation,a linguistic relation established by grammar
+43914,grammatical_rule rule_of_grammar,a linguistic rule for the syntax of grammatical utterances
+43915,gramophone acoustic_gramophone,an antique record player; the sound of the vibrating needle is amplified acoustically
+43916,grampus Grampus_griseus,slaty-grey blunt-nosed dolphin common in northern seas
+43917,granadilla,the egg-shaped edible fruit of tropical American vines related to passionflowers
+43918,granadilla giant_granadilla Passiflora_quadrangularis,tropical American passionflower yielding the large granadilla fruit
+43919,granadilla purple_granadillo Passiflora_edulis,Brazilian passionflower cultivated for its deep purple fruit
+43920,granadilla sweet_granadilla Passiflora_ligularis,considered best for fruit
+43921,granadilla_tree granadillo Brya_ebenus,West Indian tree yielding a fine grade of green ebony
+43922,granadilla_wood,dark red hardwood derived from the cocobolo and used in making musical instruments e.g. clarinets
+43923,granary garner,a storehouse for threshed grain or animal feed
+43924,grand_circle,a gymnastic exercise performed on the horizontal bar by swinging around it with the body fully extended
+43925,grand_dragon,a high ranking person in the Ku Klux Klan
+43926,grand_duchess,the wife of a grand duke or a woman holding that rank in her own right
+43927,grand_duchy,the domain controlled by a grand duke or grand duchess
+43928,grand_duke,a prince who rules a territory
+43929,grand_jury,a jury to inquire into accusations of crime and to evaluate the grounds for indictments
+43930,grand_larceny grand_theft,larceny of property having a value greater than some amount (the amount varies by locale)
+43931,grand_mal generalized_seizure epilepsia_major,a seizure during which the patient becomes unconscious and has convulsions over the entire body
+43932,grand_mal_epilepsy grand_mal generalized_epilepsy epilepsia_major,epilepsy in which the attacks involve loss of consciousness and tonic spasms of the musculature followed by generalized jerking
+43933,grand_mufti,the chief mufti of a district
+43934,grand_opera,opera in which all the text is sung
+43935,grand_piano grand,a piano with the strings on a horizontal harp-shaped frame; usually supported by three legs
+43936,grand_slam,winning all of the tricks in a hand of bridge
+43937,grand_total,the sum of the sums of several groups of numbers
+43938,grand_tour,an extended cultural tour of Europe taken by wealthy young Englishmen (especially in the 18th century) as part of their education
+43939,grand_tour,a sightseeing tour of a building or institution
+43940,grandchild,a child of your son or daughter
+43941,granddaughter,a female grandchild
+43942,grande_dame,a middle-aged or elderly woman who is stylish and highly respected
+43943,grandee,a nobleman of highest rank in Spain or Portugal
+43944,grandfather gramps granddad grandad granddaddy grandpa,the father of your father or mother
+43945,grandfather_clause,an exemption based on circumstances existing prior to the adoption of some policy; used to enfranchise illiterate whites in south after the American Civil War
+43946,grandfather_clock longcase_clock,a pendulum clock enclosed in a tall narrow case
+43947,grandiosity magniloquence ornateness grandiloquence rhetoric,high-flown style; excessive use of verbal ornamentation; "the grandiosity of his prose"; "an excessive ornateness of language"
+43948,grandma grandmother granny grannie gran nan nanna,the mother of your father or mother
+43949,grandmaster,a player of exceptional or world class skill in chess or bridge
+43950,grandparent,a parent of your father or mother
+43951,grandson,a male grandchild
+43952,grandstand,the audience at a stadium or racetrack
+43953,grandstand covered_stand,a stand at a racecourse or stadium consisting of tiers with rows of individual seats that are under a protective roof
+43954,grandstander,someone who performs with an eye to the applause from spectators in the grandstand
+43955,grange,an outlying farm
+43956,granite,plutonic igneous rock having visibly crystalline texture; generally composed of feldspar and mica and quartz
+43957,granite,something having the quality of granite (unyielding firmness); "a man of granite"
+43958,graniteware,a kind of stone-grey enamelware
+43959,granny,an old woman
+43960,granny's_bonnets Aquilegia_vulgaris,common European columbine having variously colored (white or blue to purple or red) short-spurred flowers; naturalized in United States
+43961,granny_knot granny,a reef knot crossed the wrong way and therefore insecure
+43962,granola,cereal made of especially rolled oats with dried fruits and nuts and honey or brown sugar
+43963,granola_bar,cookie bar made of granola
+43964,grant,any monetary aid
+43965,grant,a right or privilege that has been granted
+43966,grant assignment,(law) a transfer of property by deed of conveyance
+43967,grant subsidization subsidisation,the act of providing a subsidy
+43968,grant-in-aid,a grant to a person or school for some educational project
+43969,grant-in-aid,a grant from a central government to a local government
+43970,grantee,a recipient of a grant
+43971,granter,a person who grants or gives something
+43972,grantor,a person who makes a grant in legal form; "conveyed from grantor to grantee"
+43973,granular_pearlite globular_pearlite,if steel or iron cool very slowly the cementite may occur in globules instead of in layers
+43974,granulated_sugar,sugar in the form of small grains
+43975,granulation,the act of forming something into granules or grains; "the granulation of medicines"
+43976,granulation granulation_tissue,new connective tissue and tiny blood vessels that form on the surfaces of a wound during the healing process
+43977,granule,a tiny grain
+43978,granulocyte,a leukocyte that has granules in its cytoplasm
+43979,granuloma,a tumor composed of granulation tissue resulting from injury or inflammation or infection
+43980,granuloma_inguinale granuloma_venereum,a venereal disease caused by a bacterium of the genus Calymmatobacterium; characterized by a pimply rash of the skin in the genital and groin region
+43981,granville_wilt,a bacterial wilt of tobacco plants
+43982,grape,any of various juicy fruit of the genus Vitis with green or purple skins; grow in clusters
+43983,grape grapevine grape_vine,any of numerous woody vines of genus Vitis bearing clusters of edible berries
+43984,grape-leaf_begonia maple-leaf_begonia Begonia_dregei,tuberous or semi-tuberous South African begonia having shallowly lobed ovate leaves and small white flowers
+43985,grape_arbor grape_arbour,an arbor where grapes are grown
+43986,grape_fern,a fern of the genus Botrychium having a fertile frond bearing small grapelike clusters of spore cases
+43987,grape_hyacinth,any of various early flowering spring hyacinths native to Eurasia having dense spikes of rounded blue flowers resembling bunches of small grapes
+43988,grape_jelly,jelly made from grape juice
+43989,grape_juice,the juice of grapes
+43990,grape_louse grape_phylloxera Phylloxera_vitifoleae,destructive to various grape plants
+43991,grapefruit,large yellow fruit with somewhat acid juicy pulp; usual serving consists of a half
+43992,grapefruit Citrus_paradisi,citrus tree bearing large round edible fruit having a thick yellow rind and juicy somewhat acid pulp
+43993,grapefruit_juice,the juice of grapefruits
+43994,grapefruit_peel,strips of grapefruit peel cooked in sugar syrup and coated with sugar
+43995,grapeshot grape,a cluster of small projectiles fired together from a cannon to produce a hail of shot
+43996,grapevine pipeline word_of_mouth,gossip spread by spoken communication; "the news of their affair was spread by word of mouth"
+43997,graph graphical_record graphical_recording,a visual representation of the relations between certain quantities, represented as points, plotted with reference to a set of axes
+43998,graph_paper,paper that has lines to permit drawing graphs
+43999,graphic computer_graphic,an image that is generated by a computer
+44000,graphic_art,the arts of drawing or painting or printmaking
+44001,graphic_design,visual communication by a skillful combination of text and pictures in advertisements, magazines, books, etc.
+44002,graphic_designer designer,someone who specializes in graphic design
+44003,graphical_user_interface GUI,a user interface based on graphics (icons and pictures and menus) instead of text; uses a mouse as well as a keyboard as an input device
+44004,graphics,the drawings and photographs in the layout of a book
+44005,graphite black_lead plumbago,used as a lubricant and as a moderator in nuclear reactors
+44006,graphologist handwriting_expert,a specialist in inferring character from handwriting
+44007,graphology,the study of handwriting (especially as an indicator of the writer's character or disposition)
+44008,grapnel grapnel_anchor,a light anchor for small boats
+44009,grapnel grapple grappler grappling_hook grappling_iron,a tool consisting of several hooks for grasping and holding; often thrown with a rope
+44010,grappa,Italian brandy made from residue of grapes after pressing
+44011,grasping,understanding with difficulty; "the lecture was beyond his most strenuous graspings"
+44012,grasping taking_hold seizing prehension,the act of gripping something firmly with the hands (or the tentacles)
+44013,grass,narrow-leaved green herbage: grown as lawns; used as pasture for grazing animals; cut and dried as hay
+44014,grass-leaved_golden_aster,a variety of golden aster
+44015,grass_fern ribbon_fern Vittaria_lineata,epiphytic fern found in lowland forests of tropical America
+44016,grass_frog Rana_temporaria,a common semiterrestrial European frog
+44017,grass_pea Indian_pea khesari Lathyrus_sativus,European annual grown for forage; seeds used for food in India and for stock elsewhere
+44018,grass_pink Calopogon_pulchellum Calopogon_tuberosum,an orchid
+44019,grass_poly hyssop_loosestrife Lythrum_hyssopifolia,annual with small solitary pink flowers; originally of Europe but widely naturalized in moist areas
+44020,grass_roots,the essential foundation or source; "the problem was attacked at the grass roots"
+44021,grass_roots,the common people at a local level (as distinguished from the centers of political activity)
+44022,grass_skirt,a skirt made of long blades of grass
+44023,grass_snake ring_snake ringed_snake Natrix_natrix,harmless European snake with a bright yellow collar; common in England
+44024,grass_tree Australian_grass_tree,any of several Australian evergreen perennials having short thick woody stems crowned by a tuft of grasslike foliage and yielding acaroid resins
+44025,grass_vetch grass_vetchling Lathyrus_nissolia,annual European vetch with red flowers
+44026,grass_widower divorced_man,a man who is divorced from (or separated from) his wife
+44027,grassfinch grass_finch,usually brightly-colored Australian weaverbirds; often kept as cage birds
+44028,grassfire prairie_fire,an uncontrolled fire in a grassy area
+44029,grasshopper,a cocktail made of creme de menthe and cream (sometimes with creme de cacao)
+44030,grasshopper hopper,terrestrial plant-eating insect with hind legs adapted for leaping
+44031,grasshopper_mouse,insectivorous mouse of western North America
+44032,grassland,land where grass or grasslike vegetation grows and is the dominant form of plant life
+44033,grassy_death_camas Zigadenus_venenosus Zigadenus_venenosus_gramineus,plant of western North America to Mexico; poisonous especially to grazing animals
+44034,grate,a harsh rasping sound made by scraping something
+44035,grate grating,a barrier that has parallel or crossed bars blocking a passage but admitting air
+44036,grate grating,a frame of iron bars to hold a fire
+44037,grated_cheese,hard or semihard cheese grated
+44038,gratefulness thankfulness appreciativeness,warm friendly feelings of gratitude
+44039,grater,utensil with sharp perforations for shredding foods (as vegetables or cheese)
+44040,gratification,the act or an instance of satisfying
+44041,gratification satisfaction,state of being gratified or satisfied; "dull repetitious work gives no gratification"; "to my immense gratification he arrived on time"
+44042,gratitude,a feeling of thankfulness and appreciation; "he was overwhelmed with gratitude for their help"
+44043,gratuity,an award (as for meritorious service) given without claim or obligation
+44044,gratuity tip pourboire baksheesh bakshish bakshis backsheesh,a relatively small amount of money given for services rendered (as by a waiter)
+44045,grave,death of a person; "he went to his grave without forgiving me"; "from cradle to grave"
+44046,grave tomb,a place for the burial of a corpse (especially beneath the ground and marked by a tombstone); "he put flowers on his mother's grave"
+44047,grave_accent grave,a mark (`) placed above a vowel to indicate pronunciation
+44048,gravedigger,a person who earns a living by digging graves
+44049,gravel crushed_rock,rock fragments and pebbles
+44050,gravel_pit,a quarry for gravel
+44051,gravelweed Verbesina_helianthoides,perennial herb with yellow flowers; southern and south central United States
+44052,graveness gravity sobriety soberness somberness sombreness,a manner that is serious and solemn
+44053,graver graving_tool pointel pointrel,a tool used by an engraver
+44054,graverobber,someone who steals valuables from graves or crypts
+44055,graverobber ghoul body_snatcher,someone who takes bodies from graves and sells them for anatomical dissection
+44056,gravestone headstone tombstone,a stone that is used to mark a grave
+44057,graveyard_watch middle_watch midwatch night_watch,a watch during the night (as from midnight to 8 a.m.)
+44058,gravida,the number of the pregnancy that a woman is in; "in her third pregnancy a woman is said to be gravida three"
+44059,gravida,a pregnant woman
+44060,gravidity gravidness gravidation,technical terms for pregnancy
+44061,gravimeter gravity_meter,a measuring instrument for measuring variations in the gravitational field of the earth
+44062,gravimetric_analysis,quantitative analysis by weight
+44063,gravitation,movement downward resulting from gravitational attraction; "irrigation by gravitation rather than by pumps"
+44064,gravitation,a figurative movement toward some attraction; "the gravitation of the middle class to the suburbs"
+44065,gravitational_collapse,the implosion of a star resulting from its own gravity; the result is a smaller and denser celestial object
+44066,gravitational_constant universal_gravitational_constant constant_of_gravitation G,(physics) the universal constant relating force to mass and distance in Newton's law of gravitation
+44067,gravitational_field,a field of force surrounding a body of finite mass
+44068,gravitational_interaction,a weak interaction between particles that results from their mass; mediated by gravitons
+44069,gravitational_mass,(physics) the mass of a body as measured by its gravitational attraction for other bodies
+44070,graviton,a gauge boson that mediates the (extremely weak) gravitational interactions between particles
+44071,gravity gravitation gravitational_attraction gravitational_force,(physics) the force of attraction between all masses in the universe; especially the attraction of the earth's mass for bodies near its surface; "the more remote the body the less the gravity"; "the gravitation between two bodies is proportional to the product of their masses and inversely proportional to the square of the distance between them"; "gravitation cannot be held responsible for people falling in love"--Albert Einstein
+44072,gravity solemnity,a solemn and dignified feeling
+44073,gravity-assist,(spaceflight) a trajectory that passes close to a planetary body in order to gain energy from its gravitational field
+44074,gravity_gradient,a gradient in the gravitational forces acting on different parts of a nonspherical object; "the gravity gradient of the moon causes the ocean tides on Earth"
+44075,gravity_wave gravitation_wave,(physics) a wave that is hypothesized to propagate gravity and to travel at the speed of light
+44076,gravure,a printing plate used in the process of gravure
+44077,gravure,the act of intaglio printing
+44078,gravure photogravure heliogravure,an intaglio print produced by gravure
+44079,gravy,a sauce made by adding stock, flour, or other ingredients to the juice and fat that drips from cooking meats
+44080,gravy pan_gravy,the seasoned but not thickened juices that drip from cooking meats; often a little water is added
+44081,gravy_boat gravy_holder sauceboat boat,a dish (often boat-shaped) for serving gravy or sauce
+44082,gray Gy,the SI unit of energy absorbed from ionizing radiation; equal to the absorption of one joule of radiation energy by one kilogram of matter; one gray equals 100 rad
+44083,gray grayness grey greyness,a neutral achromatic color midway between white and black
+44084,graze,a superficial abrasion
+44085,graze grazing,the act of grazing
+44086,grazier,a rancher who grazes cattle or sheep for market
+44087,grazing shaving skimming,the act of brushing against while passing
+44088,grazing_fire,fire approximately parallel to the ground; the center of the cone of fire does rise above 1 meter from the ground
+44089,grease lubricating_oil,a thick fatty oil (especially one used to lubricate machinery)
+44090,grease_gun gun,a hand-operated pump that resembles a pistol; forces grease into parts of a machine
+44091,greasepaint,a greasy substance used as makeup by actors
+44092,greaseproof_paper,paper that is impermeable to oil or grease; used in cooking
+44093,greaser wetback taco,(ethnic slur) offensive term for a person of Mexican descent
+44094,greasewood black_greasewood Sarcobatus_vermiculatus,low hardy much-branched spiny shrub common in alkaline soils of western America
+44095,greasiness oiliness oleaginousness,consisting of or covered with oil
+44096,greasy_spoon,a small restaurant specializing in short-order fried foods
+44097,great,a person who has achieved distinction and honor in some field; "he is one of the greats of American music"
+44098,great-aunt grandaunt,an aunt of your father or mother
+44099,great-nephew grandnephew,a son of your niece or nephew
+44100,great-niece grandniece,a daughter of your niece or nephew
+44101,great-uncle granduncle,an uncle of your father or mother
+44102,great_Solomon's-seal Polygonatum_biflorum Polygonatum_commutatum,North American perennial herb with smooth foliage and drooping tubular greenish flowers
+44103,great_St_John's_wort Hypericum_ascyron Hypericum_pyramidatum,perennial shrub having large star-shaped yellow flowers in narrowly pyramidal cymes
+44104,great_ape pongid,any of the large anthropoid apes of the family Pongidae
+44105,great_auk Pinguinus_impennis,large flightless auk of rocky islands off northern Atlantic coasts; extinct
+44106,great_barracuda Sphyraena_barracuda,large (up to 6 ft) greyish-brown barracuda highly regarded as a food and sport fish; may be dangerous to swimmers
+44107,great_blue_heron Ardea_herodius,large American heron having bluish-grey plumage
+44108,great_bowerbird Chlamydera_nuchalis,large bowerbird of northern Australia
+44109,great_burdock greater_burdock cocklebur Arctium_lappa,burdock having heart-shaped leaves found in open woodland, hedgerows and rough grassland of Europe (except extreme N) and Asia Minor; sometimes cultivated for medicinal and culinary use
+44110,great_bustard Otis_tarda,largest European land bird
+44111,great_care,more attention and consideration than is normally bestowed by prudent persons; "the pilot exercised great care in landing"
+44112,great_cerebral_vein vena_cerebri_magna,a cerebral vein formed by the two internal cerebral veins and continuing into the sinus rectus
+44113,great_circle,a circular line on the surface of a sphere formed by intersecting it with a plane passing through the center
+44114,great_crested_grebe Podiceps_cristatus,large Old World grebe with black ear tufts
+44115,great_duckweed water_flaxseed Spirodela_polyrrhiza,cosmopolitan except South America and New Zealand and some oceanic islands
+44116,great_grandchild,a child of your grandson or granddaughter
+44117,great_granddaughter,a daughter of your grandson or granddaughter
+44118,great_grandfather,a father of your grandparent
+44119,great_grandmother,a mother of your grandparent
+44120,great_grandparent,a parent of your grandparent
+44121,great_grandson,a son of your grandson or granddaughter
+44122,great_grey_owl great_gray_owl Strix_nebulosa,large dish-faced owl of northern North America and western Eurasia
+44123,great_gross 1728,a cardinal number equal to one dozen gross
+44124,great_hall,the principal hall in a castle or mansion; can be used for dining or entertainment
+44125,great_horned_owl Bubo_virginianus,brown North American horned owl
+44126,great_knapweed greater_knapweed Centaurea_scabiosa,tall European perennial having purple flower heads
+44127,great_lobelia blue_cardinal_flower Lobelia_siphilitica,tall erect and very leafy perennial herb of eastern North America having dense spikes of blue flowers
+44128,great_millet kaffir kafir_corn kaffir_corn Sorghum_bicolor,important for human and animal food; growth habit and stem form similar to Indian corn but having sawtooth-edged leaves
+44129,great_plains_paintbrush Castilleja_sessiliflora,hairy plant with pinkish flowers; Great Plains to northern Mexico
+44130,great_ragweed Ambrosia_trifida,a coarse annual with some leaves deeply and palmately three-cleft or five-cleft
+44131,great_seal,the principal seal of a government, symbolizing authority or sovereignty
+44132,great_skua Catharacta_skua,large brown skua of the northern Atlantic
+44133,great_snipe woodcock_snipe Gallinago_media,Old World snipe larger and darker than the whole snipe
+44134,great_white_heron Ardea_occidentalis,large white heron of Florida and the Florida Keys
+44135,great_white_heron Casmerodius_albus,widely distributed Old World white egret
+44136,great_white_shark white_shark man-eater man-eating_shark Carcharodon_carcharias,large aggressive shark widespread in warm seas; known to attack humans
+44137,great_year Platonic_year,time required for one complete cycle of the precession of the equinoxes, about 25,800 years
+44138,great_yellow_gentian Gentiana_lutea,robust European perennial having clusters of yellow flowers
+44139,great_yellowcress Rorippa_amphibia Nasturtium_amphibium,perennial herb found on streams and riversides throughout Europe except extreme north and Mediterranean; sometimes placed in genus Nasturtium
+44140,greatcoat overcoat topcoat,a heavy coat worn over clothes in winter
+44141,greater_butterfly_orchid Platanthera_chlorantha Habenaria_chlorantha,south European orchid with dark green flowers that are larger and less fragrant than Platanthera bifolia; sometimes placed in genus Habenaria
+44142,greater_kudu Tragelaphus_strepsiceros,a variety of kudu
+44143,greater_masterwort Astrantia_major,European herb with aromatic roots and leaves in a basal tuft and showy compound umbels of white to rosy flowers
+44144,greater_omentum gastrocolic_omentum caul,part of the peritoneum attached to the stomach and to the colon and covering the intestines
+44145,greater_pichiciego Burmeisteria_retusa,of southern South America
+44146,greater_prairie_chicken Tympanuchus_cupido,the most common variety of prairie chicken
+44147,greater_scaup Aythya_marila,large scaup of North America having a greenish iridescence on the head of the male
+44148,greater_spearwort Ranunculus_lingua,semiaquatic European crowfoot with leaves shaped like spears
+44149,greater_water_parsnip Sium_latifolium,large stout white-flowered perennial found wild in shallow fresh water; Europe
+44150,greater_whitethroat whitethroat Sylvia_communis,greyish-brown Old World warbler with a white throat and underparts
+44151,greater_yellowlegs Tringa_melanoleuca,a variety of yellowlegs
+44152,greatest_common_divisor greatest_common_factor highest_common_factor,the largest integer that divides without remainder into a set of integers
+44153,greatness illustriousness,the property possessed by something or someone of outstanding importance or eminence
+44154,greave jambeau,armor plate that protects legs below the knee
+44155,greaves crackling,the residue that remains after animal fat has been rendered
+44156,grebe,small compact-bodied almost completely aquatic bird that builds floating nests; similar to loons but smaller and with lobate rather than webbed feet
+44157,greed,excessive desire to acquire or possess more (especially more material wealth) than one needs or deserves
+44158,greediness hoggishness piggishness,an excessive desire for food
+44159,greediness voraciousness rapaciousness,an excessive desire for wealth (usually in large amounts); "the greediness of lawyers"
+44160,green greenness viridity,green color or pigment; resembling the color of growing grass
+44161,green putting_green putting_surface,an area of closely cropped grass surrounding the hole on a golf course; "the ball rolled across the green and into the bunker"
+44162,green-tailed_towhee Chlorura_chlorura,towhee of the Rocky Mountains
+44163,green_June_beetle figeater,large greenish June beetle of southern United States
+44164,green_adder's_mouth Malaxis-unifolia Malaxis_ophioglossoides,North American orchid having a solitary leaf and flowers with threadlike petals
+44165,green_alder Alnus_veridis,shrub of mountainous areas of Europe
+44166,green_alder Alnus_veridis_crispa Alnus_crispa,North American shrub with light green leaves and winged nuts
+44167,green_algae chlorophyte,algae that are clear green in color; often growing on wet ricks or damp wood or the surface of stagnant water
+44168,green_arrow_arum tuckahoe Peltandra_virginica,perennial herb of the eastern United States having arrowhead-shaped leaves and an elongate pointed spathe and green berries
+44169,green_ash Fraxinus_pennsylvanica_subintegerrima,a variety of red ash having glossy branchlets and lower leaf surfaces
+44170,green_bean,a common bean plant cultivated for its slender green edible pods
+44171,green_bean,immature bean pod eaten as a vegetable
+44172,green_bristlegrass green_foxtail rough_bristlegrass bottle-grass bottle_grass Setaria_viridis,European foxtail naturalized in North America; often a troublesome weed
+44173,green_card,a card that identifies the bearer as an alien with permanent resident status in the United States; "he was surprised to discover that green cards are no longer green"
+44174,green_douglas_fir douglas_spruce douglas_pine douglas_hemlock Oregon_fir Oregon_pine Pseudotsuga_menziesii,lofty douglas fir of northwestern North America having short needles and egg-shaped cones
+44175,green_dragon Arisaema_dracontium,early spring-flowering plant of eastern North America resembling the related jack-in-the-pulpit but having digitate leaves, slender greenish yellow spathe and elongated spadix
+44176,green_frog spring_frog Rana_clamitans,similar to bullfrog; found in or near marshes and ponds; of United States and Canada
+44177,green_gentian Frasera_speciosa Swertia_speciosa,tall herb with panicles of white flowers flushed with green; northwestern United States; sometimes placed in genus Swertia
+44178,green_gland,one of a pair of glands (believed to have excretory functions) in some crustaceans near the base of the large antennae
+44179,green_gold,a gold alloy (at least 14 karat gold with silver or silver and cadmium) that has a green appearance
+44180,green_hellebore Helleborus_viridis,deciduous plant with large deep green pedate leaves and nodding saucer-shaped green flowers
+44181,green_lacewing chrysopid stink_fly,pale green unpleasant-smelling lacewing fly having carnivorous larvae
+44182,green_light,permission to proceed with a project or to take action; "the gave the green light for construction to begin"
+44183,green_light go-ahead,a signal to proceed
+44184,green_lizard Lacerta_viridis,a common Eurasian lizard about a foot long
+44185,green_mamba,green phase of the black mamba
+44186,green_manure,a growing crop that is plowed under to enrich soil
+44187,green_mayonnaise sauce_verte,mayonnaise with tarragon or dill and chopped watercress and spinach or cucumber
+44188,green_monkey African_green_monkey Cercopithecus_aethiops_sabaeus,common savannah monkey with greenish-grey back and yellow tail
+44189,green_mushroom_pimple,a variety of mushroom pimple
+44190,green_olive,olives picked green and pickled in brine; infrequently stuffed with e.g. pimento
+44191,green_onion spring_onion scallion,a young onion before the bulb has enlarged; eaten in salads
+44192,green_paper,a preliminary report of government proposals that is published in order to stimulate discussion
+44193,green_pea garden_pea,fresh pea
+44194,green_pea_soup potage_St._Germain,made of fresh green peas and stock with shredded lettuce onion and celery
+44195,green_peach_aphid,yellowish green aphid that is especially destructive to peaches
+44196,green_peafowl Pavo_muticus,peafowl of southeast Asia
+44197,green_pepper,a sweet pepper that becomes red when ripe
+44198,green_revolution,the introduction of pesticides and high-yield grains and better management during the 1960s and 1970s which greatly increased agricultural productivity
+44199,green_salad,tossed salad composed primarily of salad greens
+44200,green_smut false_smut,disease of rice; grains covered by a green powder consisting of conidia
+44201,green_smut_fungus Ustilaginoidea_virens,fungus causing green smut in rice
+44202,green_snake,any of numerous African colubrid snakes
+44203,green_snake grass_snake,either of two North American chiefly insectivorous snakes that are green in color
+44204,green_soybean,seeds shelled and cooked as lima beans
+44205,green_spleenwort Asplenium_viride,a small fern with slim green fronds; widely distributed in cool parts of northern hemisphere
+44206,green_tea,tea leaves that have been steamed and dried without fermenting
+44207,green_thumb green_fingers,a special ability to make plants grow
+44208,green_turtle Chelonia_mydas,large tropical turtle with greenish flesh used for turtle soup
+44209,green_woodpecker Picus_viridis,woodpecker of Europe and western Asia
+44210,greenbelt greenway,a belt of parks or rural land surrounding a town or city
+44211,greenbottle greenbottle_fly,blowfly with brilliant coppery green body
+44212,greenery verdure,green foliage
+44213,greeneye,bottom-dwellers having large eyes with metallic green luster
+44214,greenfly,greenish aphid; pest on garden and crop plants
+44215,greengage greengage_plum,sweet green or greenish-yellow variety of plum
+44216,greengrocer,a grocer who sells fresh fruits and vegetables
+44217,greengrocery,groceries sold by a greengrocer
+44218,greengrocery,a greengrocer's grocery store
+44219,greenhouse glasshouse,a building with glass walls and roof; for the cultivation and exhibition of plants under controlled conditions
+44220,greenhouse_effect greenhouse_warming,warming that results when solar radiation is trapped by the atmosphere; caused by atmospheric gases that allow sunshine to pass through but absorb heat that is radiated back from the warmed surface of the earth
+44221,greenhouse_gas greenhouse_emission,a gas that contributes to the greenhouse effect by absorbing infrared radiation
+44222,greenhouse_whitefly Trialeurodes_vaporariorum,whitefly that inhabits greenhouses
+44223,greenish_blue aqua aquamarine turquoise cobalt_blue peacock_blue,a shade of blue tinged with green
+44224,greenish_yellow,a shade of yellow tinged with green
+44225,greenishness,the property of being somewhat green
+44226,greenling,food fish of the northern Pacific
+44227,greenmail,(corporation) the practice of purchasing enough shares in a firm to threaten a takeover and thereby forcing the owners to buy those shares back at a premium in order to stay in business
+44228,greenness,the state of not being ripe
+44229,greenness verdancy verdure,the lush appearance of flourishing vegetation
+44230,greenockite cadmium_sulphide,ore of cadmium; a rare yellowish mineral consisting of cadmium sulphide in crystalline form
+44231,greenroom,a backstage room in a theater where performers rest or have visitors
+44232,greens green leafy_vegetable,any of various leafy plants or their leaves and stems eaten as vegetables
+44233,greensand,an olive-green sandstone containing glauconite
+44234,greenshank Tringa_nebularia,large European sandpiper with greenish legs
+44235,greenskeeper,someone responsible for the maintenance of a golf course
+44236,greenstick_fracture,a partial fracture of a bone (usually in children); the bone is bent but broken on only one side
+44237,greenwing green-winged_teal Anas_crecca,common teal of Eurasia and North America
+44238,greenwood,woodlands in full leaf; "the greenwood was Robin Hood's home"
+44239,greeter saluter welcomer,a person who greets; "the newcomers were met by smiling greeters"
+44240,greeting salutation,(usually plural) an acknowledgment or expression of good will (especially on meeting)
+44241,greeting_card,a card sent to express personal greetings
+44242,gregarine,vermiform protozoans parasitic in insects and other invertebrates
+44243,gregariousness,the quality of being gregarious--having a dislike of being alone
+44244,greisen,a granitic rock composed of quartz and mica
+44245,grenade,a small explosive bomb thrown by hand or fired from a missile
+44246,grenadier grenade_thrower,an infantryman equipped with grenades
+44247,grenadier rattail rattail_fish,deep-sea fish with a large head and body and long tapering tail
+44248,grenadine,thin syrup made from pomegranate juice; used in mixed drinks
+44249,grevillea,any shrub or tree of the genus Grevillea
+44250,grevy's_zebra Equus_grevyi,zebra with less continuous stripes
+44251,grey gray,any organization or party whose uniforms or badges are grey; "the Confederate army was a vast grey"
+44252,grey gray,clothing that is a grey color; "he was dressed in grey"
+44253,grey gray,horse of a light gray or whitish color
+44254,grey_alder gray_alder Alnus_incana,native to Europe but introduced in America
+44255,grey_area gray_area,an intermediate area; a topic that is not clearly one thing or the other
+44256,grey_birch gray_birch American_grey_birch American_gray_birch Betula_populifolia,medium-sized birch of eastern North America having white or pale grey bark and valueless wood; occurs often as a second-growth forest tree
+44257,grey_flounder gray_flounder Etropus_rimosus,flounder found from North Carolina to Florida and the eastern Gulf of Mexico
+44258,grey_fox gray_fox Urocyon_cinereoargenteus,dark grey American fox; from Central America through southern United States
+44259,grey_goldenrod gray_goldenrod Solidago_nemoralis,a dyer's weed of Canada and the eastern United States having yellow flowers sometimes used in dyeing
+44260,grey_kingbird gray_kingbird petchary Tyrannus_domenicensis_domenicensis,a kingbird that breeds in the southeastern United States and winters in tropical America; similar to but larger than the eastern kingbird
+44261,grey_lemming gray_lemming red-backed_lemming,Old World lemming
+44262,grey_market gray_market,an unofficial market in which goods are bought and sold at prices lower than the official price set by a regulatory agency
+44263,grey_matter gray_matter grey_substance gray_substance substantia_grisea,greyish nervous tissue containing cell bodies as well as fibers; forms the cerebral cortex consisting of unmyelinated neurons
+44264,grey_polypody gray_polypody resurrection_fern Polypodium_polypodioides,fern growing on rocks or tree trunks and having fronds greyish and scurfy below; Americas and South Africa
+44265,grey_poplar gray_poplar Populus_canescens,large rapidly growing poplar with faintly lobed dentate leaves grey on the lower surface; native to Europe but introduced and naturalized elsewhere
+44266,grey_skate gray_skate Raja_batis,common European skate used as food
+44267,grey_snapper gray_snapper mangrove_snapper Lutjanus_griseus,found in shallow waters off the coast of Florida
+44268,grey_sole gray_sole,greyish-white flesh of a flatfish
+44269,grey_whale gray_whale devilfish Eschrichtius_gibbosus Eschrichtius_robustus,medium-sized greyish-black whale of the northern Pacific
+44270,grey_willow gray_willow Salix_cinerea,Eurasian shrubby willow with whitish tomentose twigs
+44271,greyback grayback Limnodromus_griseus,a dowitcher with a grey back
+44272,greyhen grayhen grey_hen gray_hen heath_hen,female black grouse
+44273,greyhound,a tall slender dog of an ancient breed noted for swiftness and keen sight; used as a racing dog
+44274,greyhound_racing,the sport of racing greyhounds
+44275,greylag graylag greylag_goose graylag_goose Anser_anser,common grey wild goose of Europe; ancestor of many domestic breeds
+44276,grid,a pattern of regularly spaced horizontal and vertical lines
+44277,grid control_grid,an electrode placed between the cathode and anode of a vacuum tube to control the flow of electrons through the tube
+44278,grid gridiron,a cooking utensil of parallel metal bars; used to grill fish or meat
+44279,grid storage-battery_grid,a perforated or corrugated metal plate used in a storage battery as a conductor and support for the active material
+44280,grid_metal,a kind of hard lead that is used for grids in storage batteries
+44281,griddle,cooking utensil consisting of a flat heated surface (as on top of a stove) on which food is cooked
+44282,gridlock,a traffic jam so bad that no movement is possible
+44283,grief heartache heartbreak brokenheartedness,intense sorrow caused by loss of a loved one (especially by death)
+44284,grief sorrow,something that causes great unhappiness; "her death was a great grief to John"
+44285,grievance,an allegation that something imposes an illegal obligation or denies some legal right or causes injustice
+44286,grievance,a complaint about a (real or imaginary) wrong that causes resentment and is grounds for action
+44287,griffon Brussels_griffon Belgian_griffon,breed of various very small compact wiry-coated dogs of Belgian origin having a short bearded muzzle
+44288,griffon wire-haired_pointing_griffon,breed of medium-sized long-headed dogs with downy undercoat and harsh wiry outer coat; originated in Holland but largely developed in France
+44289,griffon_vulture griffon Gyps_fulvus,large vulture of southern Europe and northern Africa having pale plumage with black wings
+44290,grigri gres-gris greegree,an African amulet
+44291,grill grille grillwork,a framework of metal bars used as a partition or a grate; "he cooked hamburgers on the grill"
+44292,grille radiator_grille,grating that admits cooling air to car's radiator
+44293,grillroom grill,a restaurant where food is cooked on a grill
+44294,grimace face,a contorted facial expression; "she made a grimace at the prospect"
+44295,griminess grubbiness,the state of being grimy
+44296,grimoire,a manual of black magic (for invoking spirits and demons)
+44297,grind,the grade of particle fineness to which a substance is ground; "a coarse grind of coffee"
+44298,grind mill pulverization pulverisation,the act of grinding to a powder or dust
+44299,grinder,a machine tool that polishes metal
+44300,grinding,material resulting from the process of grinding; "vegetable grindings clogged the drain"
+44301,grinding,a harsh and strident sound (as of the grinding of gears)
+44302,grinding abrasion attrition detrition,the wearing down of rock particles by friction due to water or wind or ice
+44303,grinding_wheel emery_wheel,a wheel composed of abrasive material; used for grinding
+44304,grindstone,a revolving stone shaped like a disk; used to grind or sharpen or polish edge tools
+44305,gringo,a Latin American (disparaging) term for foreigners (especially Americans and Englishmen)
+44306,grinner,a person who grins
+44307,griot,a storyteller in West Africa; perpetuates the oral traditions of a family or village
+44308,grip,worker who moves the camera around while a film or television show is being made
+44309,grip grasp,an intellectual hold or understanding; "a good grip on French history"; "they kept a firm grip on the two top priorities"; "he was in the grip of a powerful emotion"; "a terrible power had her in its grasp"
+44310,grip traction adhesive_friction,the friction between a body and the surface on which it moves (as between an automobile tire and the road)
+44311,gripe kick beef bitch squawk,informal terms for objecting; "I have a gripe about the service here"
+44312,gripsack,a small suitcase
+44313,grisaille,chiaroscuro painting or stained glass etc., in shades of grey imitating the effect of relief
+44314,griseofulvin Fulvicin,a kind of penicillin (a fungicidal antibiotic with the trade name Fulvicin) produced by molds of the genus Penicillium
+44315,grison Grison_vittatus Galictis_vittatus,carnivore of Central America and South America resembling a weasel with a greyish-white back and dark underparts
+44316,grissino,a long slender crusty breadstick
+44317,grist,grain intended to be or that has been ground
+44318,gristmill,a mill for grinding grain (especially the customer's own grain)
+44319,grit gritrock gritstone,a hard coarse-grained siliceous sandstone
+44320,grits hominy_grits,coarsely ground hulled corn boiled as a breakfast dish in the southern United States
+44321,grivet Cercopithecus_aethiops,white and olive green East African monkey with long white tufts of hair beside the face
+44322,grizzle,a grey wig
+44323,grizzly grizzly_bear silvertip silver-tip Ursus_horribilis Ursus_arctos_horribilis,powerful brownish-yellow bear of the uplands of western North America
+44324,groan moan,an utterance expressing pain or disapproval
+44325,groaner,a person who groans
+44326,groats,the hulled and crushed grain of various cereals
+44327,grocer,a retail merchant who sells foodstuffs (and some household supplies)
+44328,grocery foodstuff,(usually plural) consumer goods sold by a grocer
+44329,grocery_bag,a sack for holding customer's groceries
+44330,grocery_boy,a delivery boy for groceries
+44331,grocery_list,a list of groceries to be purchased
+44332,grocery_list shopping_list,a list of heterogenous items that someone wants; "the union came to the table with a whole grocery list of demands"
+44333,grocery_store grocery food_market market,a marketplace where groceries are sold; "the grocery store included a meat market"
+44334,groenendael,black-coated sheepdog with a heavily plumed tail
+44335,grog,rum cut with water
+44336,grogginess,a dazed and staggering state caused by alcohol
+44337,grogginess,a groggy state resulting from weariness
+44338,grogginess stupor stupefaction semiconsciousness,marginal consciousness; "his grogginess was caused as much by exhaustion as by the blows"; "someone stole his wallet while he was in a drunken stupor"
+44339,grogram,a coarse fabric of silk mixed with wool or mohair and often stiffened with gum
+44340,groin,a curved edge formed by two intersecting vaults
+44341,groin inguen,the crease at the junction of the inner part of the thigh with the trunk together with the adjacent region and often including the external genitals
+44342,groined_vault,two barrel vaults intersecting at right angles
+44343,gromwell Lithospermum_officinale,European perennial branching plant; occurs in hedgerows and at the edge of woodlands
+44344,groom bridegroom,a man participant in his own marriage ceremony
+44345,groom bridegroom,a man who has recently been married
+44346,groomsman,a male attendant of the bridegroom at a wedding
+44347,groove channel,a long narrow furrow cut either by a natural process (such as erosion) or by a tool (as e.g. a groove in a phonograph record)
+44348,groove vallecula,(anatomy) any furrow or channel on a bodily structure or part
+44349,groover,a device that makes grooves by cutting or punching
+44350,grooving rifling,the cutting of spiral grooves on the inside of the barrel of a firearm
+44351,grope,the act of groping; and instance of groping
+44352,gros_point,a needlepoint stitch covering two horizontal and two vertical threads
+44353,gros_point,needlepoint embroidery done with large stitches
+44354,grosbeak grossbeak,any of various finches of Europe or America having a massive and powerful bill
+44355,groschen,100 groschen equal 1 schilling in Austria
+44356,grosgrain,a silk or silklike fabric with crosswise ribs
+44357,gross 144,twelve dozen
+44358,gross revenue receipts,the entire amount of income before any deductions are made
+44359,gross_anatomy macroscopic_anatomy,the study of the structure of the body and its parts without the use of a microscope
+44360,gross_domestic_product GDP,the measure of an economy adopted by the United States in 1991; the total market values of goods and services produced by workers and capital within a nation's borders during a given period (usually 1 year)
+44361,gross_estate,the total valuation of the estate's assets at the time of the person's death
+44362,gross_national_product GNP,former measure of the United States economy; the total market value of goods and services produced by all citizens and capital during a given period (usually 1 yr)
+44363,gross_profit gross_profit_margin margin,(finance) the net sales minus the cost of goods and services sold
+44364,gross_sales gross_revenue sales,income (at invoice values) received for goods and services over some given period of time
+44365,grosz,100 groszy equal 1 zloty in Poland
+44366,grotesque,art characterized by an incongruous mixture of parts of humans and animals interwoven with plants
+44367,grotesqueness grotesquery grotesquerie,ludicrous or incongruous unnaturalness or distortion
+44368,grotto grot,a small cave (usually with attractive features)
+44369,grouch grump crank churl crosspatch,a bad-tempered person
+44370,ground,a position to be won or defended in battle (or as if in battle); "they gained ground step by step"; "they fought to regain the lost ground"
+44371,ground,a relatively homogeneous percept extending back of the figure on which attention is focused
+44372,ground,(art) the surface (as a wall or canvas) prepared to take the paint for a painting
+44373,ground earth,a connection between an electrical device and a large conducting body, such as the earth (which is taken to be at zero voltage)
+44374,ground-controlled_approach GCA,aircraft landing in bad weather in which the pilot is talked down by ground control using precision approach radar
+44375,ground-shaker seismosaur,huge herbivorous dinosaur of the Cretaceous found in western North America
+44376,ground_attack,an attack by ground troops
+44377,ground_bait,bait scattered on the water to attract fish
+44378,ground_bass,a short melody in the bass that is constantly repeated
+44379,ground_beef hamburger,beef that has been ground
+44380,ground_beetle carabid_beetle,predacious shining black or metallic terrestrial beetle that destroys many injurious insects
+44381,ground_cable,a mooring cable; runs from a buoy to a mooring anchor
+44382,ground_cedar dwarf_juniper Juniperus_communis_depressa,a procumbent variety of the common juniper
+44383,ground_cedar staghorn_moss Lycopodium_complanatum,a variety of club moss
+44384,ground_cherry husk_tomato,any of numerous cosmopolitan annual or perennial herbs of the genus Physalis bearing edible fleshy berries enclosed in a bladderlike husk; some cultivated for their flowers
+44385,ground_control,a communication system for sending continuous radio messages to an airplane pilot who is making a ground-controlled approach to landing
+44386,ground_crew ground-service_crew,the crew of technicians and mechanics who service aircraft on the ground
+44387,ground_effect,apparent increase in aerodynamic lift experienced by an aircraft flying close to the ground
+44388,ground_fir princess_pine tree_clubmoss Lycopodium_obscurum,a variety of club moss
+44389,ground_fire,a forest fire that burns the humus; may not appear on the surface
+44390,ground_floor,becoming part of a venture at the beginning (regarded as position of advantage); "he got in on the ground floor"
+44391,ground_floor first_floor ground_level,the floor of a building that is at or nearest to the level of the ground around the building
+44392,ground_glass,particulate glass made by grinding and used as an abrasive
+44393,ground_glass,glass that diffuses light due to a rough surface produced by abrasion or etching
+44394,ground_ivy alehoof field_balm gill-over-the-ground runaway_robin Glechoma_hederaceae Nepeta_hederaceae,trailing European aromatic plant of the mint family having rounded leaves and small purplish flowers often grown in hanging baskets; naturalized in North America; sometimes placed in genus Nepeta
+44395,ground_loop,a sharp uncontrollable turn made by an airplane while moving along the ground
+44396,ground_pine Christmas_green,any of several club mosses having long creeping stems and erect branches
+44397,ground_pine yellow_bugle Ajuga_chamaepitys,low-growing annual with yellow flowers dotted red; faintly aromatic of pine resin; Europe, British Isles and North Africa
+44398,ground_pink fringed_pink moss_pink Linanthus_dianthiflorus,low wiry-stemmed branching herb or southern California having fringed pink flowers
+44399,ground_plan,a floor plan for the ground level of a building
+44400,ground_rattler massasauga Sistrurus_miliaris,small pygmy rattlesnake
+44401,ground_rent,payment for the right to occupy and improve a piece of land
+44402,ground_roller,Madagascan roller with terrestrial and crepuscular habits that feeds on e.g. insects and worms
+44403,ground_rose Rosa_spithamaea,low-growing bristly shrub of southern Oregon and California with creeping rootstocks and usually corymbose flowers
+44404,ground_rule,(baseball) a special rule (as in baseball) dealing with situations that arise due to the nature of the playing grounds
+44405,ground_sloth megathere,gigantic extinct terrestrial sloth-like mammal of the Pliocene and Pleistocene in America
+44406,ground_snake Sonora_semiannulata,small shy brightly-ringed terrestrial snake of arid or semiarid areas of western North America
+44407,ground_squirrel gopher spermophile,any of various terrestrial burrowing rodents of Old and New Worlds; often destroy crops
+44408,ground_state,(physics) the lowest energy state of an atom or other particle
+44409,ground_stroke,a tennis return made by hitting the ball after it has bounced once
+44410,ground_swell,an obvious change of public opinion or political sentiment that occurs without leadership or overt expression; "there was a ground swell of antiwar sentiment"
+44411,ground_swell heavy_swell,a broad and deep undulation of the ocean
+44412,ground_water spring_water well_water,underground water that is held in the soil and in pervious rocks
+44413,ground_wave,a radio wave propagated on or near the earth's surface
+44414,ground_zero,the target of a projectile (as a bomb or missile)
+44415,ground_zero,the site of the World Trade Center before it was destroyed
+44416,ground_zero,the point of detonation (or above or below) of a nuclear weapon
+44417,groundbreaking groundbreaking_ceremony,the ceremonial breaking of the ground to formally begin a construction project
+44418,groundcover ground_cover,low-growing plants planted in deep shade or on a steep slope where turf is difficult to grow
+44419,groundcover ground_cover,small plants other than saplings growing on a forest floor
+44420,grounder ground_ball groundball hopper,(baseball) a hit that travels along the ground
+44421,groundfish bottom_fish,fish that live on the sea bottom (particularly the commercially important gadoid fish like cod and haddock, or flatfish like flounder)
+44422,groundhog woodchuck Marmota_monax,reddish brown North American marmot
+44423,grounding earthing,fastening electrical equipment to earth
+44424,groundlessness idleness,the quality of lacking substance or value; "the groundlessness of their report was quickly recognized"
+44425,groundling,in Elizabethan theater: a playgoer in the cheap standing section
+44426,groundmass,(geology) the matrix of fine-grained crystalline material in which larger crystals are embedded
+44427,groundnut groundnut_vine Indian_potato potato_bean wild_bean Apios_americana Apios_tuberosa,a North American vine with fragrant blossoms and edible tubers; important food crop of Native Americans
+44428,groundnut potato_bean wild_bean,nutlike tuber; important food of Native Americans
+44429,grounds,dregs consisting of solid particles (especially of coffee) that form a residue; "it is a Middle Eastern custom to read your future in your coffee grounds"
+44430,grounds,a tract of land cleared for some special purposes (recreation or burial etc.)
+44431,groundsel Senecio_vulgaris,Eurasian weed with heads of small yellow flowers
+44432,groundsel_tree groundsel_bush consumption_weed cotton-seed_tree Baccharis_halimifolia,a shrub of salt marshes of eastern and south central North America and West Indies; fruit is surrounded with white plumelike hairy tufts
+44433,groundsheet ground_cloth,a waterproofed piece of cloth spread on the ground (as under a tent) to protect from moisture
+44434,groundsman groundskeeper groundkeeper,someone who maintains the grounds (of an estate or park or athletic field)
+44435,groundspeed,the speed of an aircraft relative to the ground
+44436,groundwork,preliminary preparation as a basis or foundation; "we are prepared today because of groundwork that was done ten years ago"
+44437,group grouping,any number of entities (members) considered as a unit
+44438,group mathematical_group,a set that is closed, associative, has an identity element and every element has an inverse
+44439,group radical chemical_group,(chemistry) two or more atoms bound together as a single unit and forming part of a molecule
+44440,group_action,action taken by a group of people
+44441,group_captain,a commissioned officer (especially one in the Royal Air Force) equivalent in rank to a colonel in the army
+44442,group_dynamics,the branch of social psychology that studies the psychodynamics of interaction in social groups
+44443,group_insurance,insurance that is purchased by a group (such as the employees of a company) usually at a reduced rate to individual members of the group
+44444,group_participation,participation by all members of a group
+44445,group_practice,(medicine) the practice of medicine by a group of physicians who share their premises and other resources
+44446,group_theory,the branch of mathematics dealing with groups
+44447,group_therapy group_psychotherapy,psychotherapy in which a small group of individuals meet with a therapist; interactions among the members are considered to be therapeutic
+44448,grouper,flesh of a saltwater fish similar to sea bass
+44449,grouper,usually solitary bottom sea basses of warm seas
+44450,groupie,an enthusiastic young fan (especially a young woman who follows rock groups around)
+44451,grouping,the activity of putting things together in groups
+44452,grouping pigeonholing,a system for classifying things into groups
+44453,groupthink,decision making by a group (especially in a manner that discourages creativity or individual responsibility)
+44454,groupware,software that can be used by a group of people who are working on the same information but may be distributed in space
+44455,grouse,flesh of any of various grouse of the family Tetraonidae; usually roasted; flesh too dry to broil
+44456,grouse,popular game bird having a plump body and feathered legs and feet
+44457,grouseberry grouse-berry grouse_whortleberry Vaccinium_scoparium,shrub of northwestern North America bearing red berries
+44458,grout,a thin mortar that can be poured and used to fill cracks in masonry or brickwork
+44459,grove,a small growth of trees without underbrush
+44460,grove woodlet orchard plantation,garden consisting of a small cultivated wood without undergrowth
+44461,growing,(electronics) the production of (semiconductor) crystals by slow crystallization from the molten state
+44462,growing_pains,pain in muscles or joints sometimes experienced by children and often attributed to rapid growth
+44463,growing_pains,emotional distress arising during adolescence
+44464,growing_pains,problems that arise in enlarging an enterprise (especially in the early stages)
+44465,growing_season,the season during which a crop grows best
+44466,growl growling,the sound of growling (as made by animals)
+44467,growler,a speaker whose voice sounds like a growl
+44468,growler,a small iceberg or ice floe just large enough to be hazardous for shipping
+44469,growling,a gruff or angry utterance (suggestive of the growling of an animal)
+44470,growth,(pathology) an abnormal proliferation of tissue (as in a tumor)
+44471,growth,a progression from simpler to more complex forms; "the growth of culture"
+44472,growth,something grown or growing; "a growth of hair"
+44473,growth,vegetation that has grown; "a growth of trees"; "the only growth was some salt grass"
+44474,growth growing maturation development ontogeny ontogenesis,(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level; "he proposed an indicator of osseous development in children"
+44475,growth_factor,a protein that is involved in cell differentiation and growth
+44476,growth_hormone-releasing_factor GHRF,a releasing factor that accelerates the secretion of growth hormone by the anterior pituitary body
+44477,growth_industry,an industry that is growing rapidly
+44478,growth_rate rate_of_growth,the rate of increase in size per unit time
+44479,growth_stock,stock of a corporation that has had faster than average gains in earnings and is expected to continue to
+44480,grub,a soft thick wormlike larva of certain beetles and other insects
+44481,grubby Myxocephalus_aenaeus,small sculpin of the coast of New England
+44482,grubstake,funds advanced to a prospector or to someone starting a business in return for a share of the profits
+44483,grudge score grievance,a resentment strong enough to justify retaliation; "holding a grudge"; "settling a score"
+44484,gruel,a thin porridge (usually oatmeal or cornmeal)
+44485,gruffness hoarseness huskiness,a throaty harshness
+44486,grugru gri-gri grugru_palm macamba Acrocomia_aculeata,tropical American feather palm having a swollen spiny trunk and edible nuts
+44487,grugru_nut,nut of Brazilian or West Indian palms
+44488,grumble grumbling murmur murmuring mutter muttering,a complaint uttered in a low and indistinct tone
+44489,grume,a thick viscous liquid
+44490,grunt,an unskilled or low-ranking soldier or other worker; "infantrymen in Vietnam were called grunts"; "he went from grunt to chairman in six years"
+44491,grunt,medium-sized tropical marine food fishes that utter grunting sounds when caught
+44492,grunt oink,the short low gruff noise of the kind made by hogs
+44493,grunter,a person who grunts
+44494,gryphon griffin griffon,winged monster with the head of an eagle and the body of a lion
+44495,guacamole,a dip made of mashed avocado mixed with chopped onions and other seasonings
+44496,guadalupe_fur_seal Arctocephalus_philippi,a fur seal of the Pacific coast of California and southward
+44497,guaiac_wood guaiacum_wood,heartwood of a palo santo; yields an aromatic oil used in perfumes
+44498,guaiacum,medicinal resin from the lignum vitae tree
+44499,guama Inga_laurina,tropical tree of Central America and West Indies and Puerto Rico having spikes of white flowers; used as shade for coffee plantations
+44500,guan,any of several large turkey-like game birds of the family Cracidae; native to jungles of tropical America; resembling the curassows and valued as food
+44501,guanabenz Wytensin,antihypertensive drug (trade name Wytensin) that reduces blood pressure by its effect on the central nervous system
+44502,guanaco Lama_guanicoe,wild llama
+44503,guanine G,a purine base found in DNA and RNA; pairs with cytosine
+44504,guano,the excrement of sea birds; used as fertilizer
+44505,guano_bat Mexican_freetail_bat Tadarida_brasiliensis,the common freetail bat of southern United States having short velvety fur; migrates southward for winter
+44506,guar cluster_bean Cyamopsis_tetragonolobus Cyamopsis_psoraloides,drought-tolerant herb grown for forage and for its seed which yield a gum used as a thickening agent or sizing material
+44507,guar_gum,a gum from seeds of the guar plant; used to thicken foods and as sizing for paper and cloth
+44508,guarani,the basic unit of money in Paraguay; equal to 100 centimos
+44509,guarantee,an unconditional commitment that something will happen or that something is true; "there is no guarantee that they are not lying"
+44510,guarantee guaranty,a collateral agreement to answer for the debt of another in case that person defaults
+44511,guarantee warrant warrantee warranty,a written assurance that some product or service will be provided or will meet certain specifications
+44512,guarantor surety warrantor warranter,one who provides a warrant or guarantee to another
+44513,guard,the person who plays the position of guard on a basketball team
+44514,guard,a person who keeps watch over something or someone
+44515,guard,the person who plays that position on a football team; "the left guard was injured on the play"
+44516,guard,a military unit serving to protect some place or person
+44517,guard,a posture of defence in boxing or fencing; "keep your guard up"
+44518,guard,(American football) a position on the line of scrimmage; "guards must be good blockers"
+44519,guard,a position on a basketball team
+44520,guard safety safety_device,a device designed to prevent injury or accidents
+44521,guard's_van,the car on a train that is occupied by the guard
+44522,guard_boat,a boat that is on guard duty (as in a harbor) around a fleet of warships
+44523,guard_duty guard sentry_duty sentry_go,the duty of serving as a sentry; "he was on guard that night"
+44524,guard_hair,coarse hairs that form the outer fur and protect the underfur of certain mammals
+44525,guard_ship,a warship (at anchor or under way) required to maintain a higher degree of readiness than others in its squadron
+44526,guardhouse,a military facility that serves as the headquarters for military police and in which military prisoners can be detained
+44527,guardian_spirit guardian_angel,an angel believed to have special affection for a particular individual
+44528,guardianship keeping safekeeping,the responsibility of a guardian or keeper; "he left his car in my keeping"
+44529,guardroom,a cell in which soldiers who are prisoners are confined
+44530,guardroom,a room used by soldiers on guard
+44531,guardsman,a soldier who is a member of a unit called `the guard' or `guards'
+44532,guava,tropical fruit having yellow skin and pink pulp; eaten fresh or used for e.g. jellies
+44533,guava strawberry_guava yellow_cattley_guava Psidium_littorale,small tropical shrubby tree bearing small yellowish fruit
+44534,guava true_guava guava_bush Psidium_guajava,small tropical American shrubby tree; widely cultivated in warm regions for its sweet globular yellow fruit
+44535,guayule Parthenium_argentatum,much-branched subshrub with silvery leaves and small white flowers of Texas and northern Mexico; cultivated as a source of rubber
+44536,gudgeon Gobio_gobio,small slender European freshwater fish often used as bait by anglers
+44537,guelder_rose European_cranberrybush European_cranberry_bush crampbark cranberry_tree Viburnum_opulus,deciduous thicket-forming Old World shrub with clusters of white flowers and small bright red berries
+44538,guenon guenon_monkey,small slender African monkey having long hind limbs and tail and long hair around the face
+44539,guerdon,a reward or payment
+44540,guereza Colobus_guereza,a colobus monkey with a reddish brown coat and white silky fringes down both sides of the body
+44541,gueridon,a small round table
+44542,guerrilla guerilla irregular insurgent,a member of an irregular armed force that fights a stronger force by sabotage and harassment
+44543,guerrilla_force guerilla_force,an irregular armed force that fights by sabotage and harassment; often rural and organized in large groups
+44544,guerrilla_theater street_theater,dramatization of a social issue; enacted outside in a park or on the street
+44545,guess conjecture supposition surmise surmisal speculation hypothesis,a message expressing an opinion based on incomplete evidence
+44546,guess guesswork guessing shot dead_reckoning,an estimate based on little or no information
+44547,guesser,a person who guesses
+44548,guessing_game,a game in which participants compete to identify some obscurely indicated thing
+44549,guesstimate guestimate,an estimate that combines reasoning with guessing
+44550,guest,a customer of a hotel or restaurant etc.
+44551,guest invitee,a visitor to whom hospitality is extended
+44552,guest_night,an evening when members of a club or college can bring their friends as guests
+44553,guest_of_honor,the person in whose honor a gathering is held
+44554,guest_worker guestworker,a person with temporary permission to work in another country; "a Moroccan guestworker in Canada was accused of aiding terrorists"
+44555,guesthouse,a house separate from the main house; for housing guests
+44556,guestroom,a bedroom that is kept for the use of guests
+44557,guffaw belly_laugh,a burst of deep loud hearty laughter
+44558,guidance counsel counseling counselling direction,something that provides direction or advice as to a decision or course of action
+44559,guidance steering,the act of guiding or showing the way
+44560,guidance_system guidance_device,a system of equipment for automatically guiding the path of a vehicle (especially a missile)
+44561,guide,someone who shows the way by leading or advising
+44562,guide,a structure or marking that serves to direct the motion or positioning of something
+44563,guide_dog,a dog trained to guide the blind
+44564,guide_rope,a rope used to guide the movement of the load of a crane
+44565,guide_word guideword catchword,a word printed at the top of the page of a dictionary or other reference book to indicate the first or last item on that page
+44566,guidebook guide,something that offers basic information or instruction
+44567,guided_missile,a rocket-propelled missile whose path can be controlled during flight either by radio signals or by internal homing devices
+44568,guided_missile_cruiser,a cruiser that carries guided missiles
+44569,guided_missile_frigate,a frigate that carries guided missiles
+44570,guideline,a light line that is used in lettering to help align the letters
+44571,guidepost guideline rule_of_thumb,a rule or principle that provides guidance to appropriate behavior
+44572,guild_socialism,a form of socialist theory advocating state ownership of industry but managements by guilds of workers
+44573,guilder gulden florin,the basic unit of money in Suriname; equal to 100 cents
+44574,guilder gulden florin Dutch_florin,formerly the basic unit of money in the Netherlands; equal to 100 cents
+44575,guildhall,the hall of a guild or corporation
+44576,guillemot,small black or brown speckled auks of northern seas
+44577,guilloche,an architectural decoration formed by two intersecting wavy bands
+44578,guillotine,instrument of execution that consists of a weighted blade between two vertical poles; used for beheading people
+44579,guilt guiltiness,the state of having committed an offense
+44580,guilt guilty_conscience guilt_feelings guilt_trip,remorse caused by feeling responsible for some offense
+44581,guilt_by_association,the attribution of guilt (without proof) to individuals because the people they associate with are guilty
+44582,guilt_pang,pangs of feeling guilty
+44583,guimpe,a piece of starched cloth covering the shoulders of a nun's habit
+44584,guimpe,a short blouse with sleeves that is worn under a jumper or pinafore dress
+44585,guinea,a former British gold coin worth 21 shillings
+44586,guinea_fowl guinea Numida_meleagris,a west African bird having dark plumage mottled with white; native to Africa but raised for food in many parts of the world
+44587,guinea_gold,22-karat gold from which guinea coins were made
+44588,guinea_gold_vine guinea_flower,any of several Australasian evergreen vines widely cultivated in warm regions for their large bright yellow single flowers
+44589,guinea_hen,flesh of a guinea fowl (especially of hens)
+44590,guinea_hen,female guinea fowl
+44591,guinea_pig Cavia_cobaya,stout-bodied nearly tailless domesticated cavy; often kept as a pet and widely used in research
+44592,guise pretense pretence pretext,an artful or simulated semblance; "under the guise of friendship he betrayed them"
+44593,guitar,a stringed instrument usually having six strings; played by strumming or plucking
+44594,guitar_pick,a plectrum used to pluck a guitar
+44595,guitarfish,primitive tropical bottom-dwelling ray with a guitar-shaped body
+44596,guitarist guitar_player,a musician who plays the guitar
+44597,gulag,a Russian prison camp for political prisoners
+44598,gulch flume,a narrow gorge with a stream running through it
+44599,gulf,an arm of a sea or ocean partly enclosed by land; larger than a bay
+44600,gulf,a deep wide chasm
+44601,gulf disconnect disconnection,an unbridgeable disparity (as from a failure of understanding); "he felt a gulf between himself and his former friends"; "there is a vast disconnect between public opinion and federal policy"
+44602,gulfweed sargassum sargasso Sargassum_bacciferum,brown algae with rounded bladders forming dense floating masses in tropical Atlantic waters as in the Sargasso Sea
+44603,gull seagull sea_gull,mostly white aquatic bird having long pointed wings and short legs
+44604,gully,deep ditch cut by running water (especially after a prolonged downpour)
+44605,gulp draft draught swig,a large and hurried swallow; "he finished it at a single gulp"
+44606,gulp gulping,a spasmodic reflex of the throat made as if in swallowing
+44607,gulper guzzler,a drinker who swallows large amounts greedily
+44608,gulping swilling guzzling,the drinking of large mouthfuls rapidly
+44609,gum,any of various substances (soluble in water) that exude from certain plants; they are gelatinous when moist but harden on drying
+44610,gum-lac,an inferior lac produced by lac insects in Madagascar
+44611,gum_arabic gum_acacia,gum from an acacia tree; used as a thickener (especially in candies and pharmaceuticals)
+44612,gum_ball,a ball of chewing gum with a coating of colored sugar
+44613,gum_butea butea_gum butea_kino Bengal_kino,dried juice of the dhak tree; used as an astringent
+44614,gum_resin,a mixture of resin and gum
+44615,gum_tree gum,any of various trees of the genera Eucalyptus or Liquidambar or Nyssa that are sources of gum
+44616,gumbo,a soup or stew thickened with okra pods
+44617,gumbo gumbo_soil,any of various fine-grained silty soils that become waxy and very sticky mud when saturated with water
+44618,gumbo okra,long mucilaginous green pods; may be simmered or sauteed but used especially in soups and stews
+44619,gumbo-limbo Bursera_simaruba,tropical American tree yielding a reddish resin used in cements and varnishes
+44620,gumboil,a boil or abscess on the gums
+44621,gumdrop,a jellied candy coated with sugar crystals
+44622,gumma,a small rubbery granuloma that is characteristic of an advanced stage of syphilis
+44623,gummed_label sticker paster,an adhesive label
+44624,gummite,a gummy orange mixture of uranium oxides and silicates occurring naturally in the hydration and oxidation of pitchblende
+44625,gummosis,pathological production of gummy exudates in citrus and various stone-fruit trees
+44626,gumweed gum_plant tarweed rosinweed,any of various western American plants of the genus Grindelia having resinous leaves and stems formerly used medicinally; often poisonous to livestock
+44627,gumwood gum,wood or lumber from any of various gum trees especially the sweet gum
+44628,gun,a weapon that discharges a missile at high velocity (especially from a metal tube or barrel)
+44629,gun,the discharge of a firearm as signal or as a salute in military ceremonies; "two runners started before the gun"; "a twenty gun salute"
+44630,gun_carriage,a framework on which a gun is mounted for firing
+44631,gun_case,a case for storing a gun
+44632,gun_control,efforts to regulate or control sales of guns
+44633,gun_deck,formerly any deck other than the weather deck having cannons from end to end
+44634,gun_emplacement weapons_emplacement,an emplacement for a gun
+44635,gun_enclosure gun_turret turret,a self-contained weapons platform housing guns and capable of rotation
+44636,gun_microphone shotgun_microphone gun_mike shotgun_mike,a highly directional microphone with a long barrel; can be directed from a distance
+44637,gun_muzzle muzzle,the open circular discharging end of a gun
+44638,gun_pendulum,a ballistic pendulum consisting of a suspended gun; the velocity of a projectile in the bore of a gun can be measured by the recoil when the gun is discharged
+44639,gun_room,military quarters of midshipmen and junior officers on a British warship
+44640,gun_smoke,smoke created by the firing of guns
+44641,gun_trigger trigger,lever that activates the firing mechanism of a gun
+44642,gunboat,a small shallow-draft boat carrying mounted guns; used by costal patrols
+44643,gunfight gunplay shootout,a fight involving shooting small arms with the intent to kill or frighten
+44644,gunfire gunshot,the act of shooting a gun; "the gunfire endangered innocent bystanders"; "they retreated in the face of withering enemy fire"
+44645,gunflint,the piece of flint that provides the igniting spark in a flintlock weapon
+44646,gunite,a mixture of cement and sand and water that is sprayed on a surface under pneumatic pressure
+44647,gunlock firing_mechanism,the action that ignites the charge in a firearm
+44648,gunman gun,a person who shoots a gun (as regards their ability)
+44649,gunman gunslinger hired_gun gun gun_for_hire triggerman hit_man hitman torpedo shooter,a professional killer who uses a gun
+44650,gunmetal,a type of bronze used for parts subject to wear or corrosion (especially corrosion by sea water)
+44651,gunnel bracketed_blenny,small eellike fishes common in shallow waters of the northern Atlantic
+44652,gunnery,guns collectively
+44653,gunnery_sergeant,a noncommissioned officer ranking above a staff sergeant in the marines
+44654,gunnysack gunny_sack burlap_bag,a bag made of burlap
+44655,gunpowder powder,a mixture of potassium nitrate, charcoal, and sulfur in a 75:15:10 ratio which is used in gunnery, time fuses, and fireworks
+44656,gunrunner arms-runner,a smuggler of guns
+44657,gunrunning,the smuggling of guns and ammunition into a country secretly and illegally
+44658,gunsight gun-sight,a sight used for aiming a gun
+44659,gunsmith,someone who makes or repairs guns
+44660,gunwale gunnel gun_rest,wale at the top of the side of boat; topmost planking of a wooden vessel
+44661,guppy rainbow_fish Lebistes_reticulatus,small freshwater fish of South America and the West Indies; often kept in aquariums
+44662,gurgle,the bubbling sound of water flowing from a bottle with a narrow neck
+44663,gurnard,bottom-dwelling coastal fishes with spiny armored heads and fingerlike pectoral fins used for crawling along the sea bottom
+44664,gurney,a metal stretcher with wheels
+44665,guru,a recognized leader in some field or of some movement; "a guru of genomics"
+44666,guru,a Hindu or Buddhist religious leader and spiritual teacher
+44667,gusher,an oil well with a strong natural flow so that pumping is not necessary
+44668,gusset gusset_plate,a metal plate used to strengthen a joist
+44669,gusset inset,a piece of material used to strengthen or enlarge a garment
+44670,gust blast blow,a strong current of air; "the tree was bent almost double by the gust"
+44671,gusto relish zest zestfulness,vigorous and enthusiastic enjoyment
+44672,gut,a narrow channel or strait
+44673,gut_issue hot-button_issue,an issue that elicits strong emotional reactions
+44674,gutlessness,the trait of lacking courage and determination; fearful of loss or injury
+44675,gutsiness pluck pluckiness,the trait of showing courage and determination in spite of possible loss or injury
+44676,gutta-percha,a whitish rubber derived from the coagulated milky latex of gutta-percha trees; used for insulation of electrical cables
+44677,gutta-percha_tree,one of several East Indian trees yielding gutta-percha
+44678,gutta-percha_tree Palaquium_gutta,one of several East Indian trees yielding gutta-percha
+44679,gutter,a worker who guts things (fish or buildings or cars etc.)
+44680,gutter,a tool for gutting fish
+44681,gutter sewer toilet,misfortune resulting in lost effort or money; "his career was in the gutter"; "all that work went down the sewer"; "pensions are in the toilet"
+44682,gutter trough,a channel along the eaves or on the roof; collects and carries away rainwater
+44683,gutter_press,press that engages in sensational journalism (especially concerning the private lives of public figures)
+44684,guttural guttural_consonant pharyngeal pharyngeal_consonant,a consonant articulated in the back of the mouth or throat
+44685,guvnor,(British slang) boss
+44686,guy cat hombre bozo sod,an informal term for a youth or man; "a nice guy"; "the guy's only doing it for some doll"; "the poor sod couldn't even buy a drink"
+44687,guy guy_cable guy_wire guy_rope,a cable, wire, or rope that is used to brace something (especially a tent)
+44688,guyot,a seamount of volcanic origin (especially in the Pacific Ocean)
+44689,guzzler,someone who drinks heavily (especially alcoholic beverages); "he's a beer guzzler every night"
+44690,gym_rat,someone who spends all leisure time playing sports or working out in a gymnasium or health spa
+44691,gym_shoe sneaker tennis_shoe,a canvas shoe with a pliable rubber sole
+44692,gym_suit,clothes prescribed for wear while participating in gymnastic exercise
+44693,gymkhana,a meet at which riders and horses display a range of skills and aptitudes
+44694,gymnasium gym,athletic facility equipped for sports or physical training
+44695,gymnast,an athlete who is skilled in gymnastics
+44696,gymnastic_apparatus exerciser,sports equipment used in gymnastic exercises
+44697,gymnastic_exercise,(gymnastics) an exercise designed to develop and display strength and agility and balance (usually performed with or on some gymnastic apparatus)
+44698,gymnastics gymnastic_exercise,a sport that involves exercises intended to display strength and balance and agility
+44699,gymnosophist,member of a Hindu sect practicing gymnosophy (especially nudism)
+44700,gymnosophy,the doctrine of a sect of Hindu philosophers who practiced nudity and asceticism and meditation
+44701,gymnosperm,plants of the class Gymnospermae having seeds not enclosed in an ovary
+44702,gymnosperm_family,a family of gymnosperms
+44703,gymnosperm_genus,a genus of gymnosperms
+44704,gymnospermous_tree,any tree of the division Gymnospermophyta
+44705,gymnospermous_yellowwood,any of various gymnospermous trees having yellow wood
+44706,gymslip,a sleeveless tunic worn by English girls as part of a school uniform
+44707,gynecocracy gynarchy,a political system governed by a woman
+44708,gynecologist gynaecologist woman's_doctor,a specialist in gynecology
+44709,gynecology gynaecology,the branch of medicine that deals with the diseases and hygiene of women
+44710,gynecomastia,excessive development of the breasts in males; usually the result of hormonal imbalance or treatment with certain drugs (including some antihypertensives)
+44711,gyneolatry gynaeolatry woman-worship,the worship of women
+44712,gynobase,the enlarged receptacle in which the pistil is borne
+44713,gynoecium,a female gametoecium
+44714,gynogenesis,female parthenogenesis in which the embryo contains only maternal chromosomes due to the failure of the sperm to fuse with the egg nucleus
+44715,gynophobia,a morbid fear of women
+44716,gynophore,the stalk of a pistil that raises it above the receptacle
+44717,gynostegium,the crown of the stamen in plants of the genus Asclepias
+44718,gyp gip,(sometimes offensive) an act of swindling or cheating
+44719,gypsum,a common white or colorless mineral (hydrated calcium sulphate) used to make cements and plasters (especially plaster of Paris)
+44720,gypsy gipsy,a person who resembles a Gypsy in leading an unconventional, nomadic way of life
+44721,gypsy_cab,a taxicab that cruises for customers although it is licensed only to respond to calls
+44722,gypsy_moth gipsy_moth Lymantria_dispar,European moth introduced into North America; a serious pest of shade trees
+44723,gyration whirling,the act of rotating in a circle or spiral
+44724,gyrfalcon gerfalcon Falco_rusticolus,large and rare Arctic falcon having white and dark color phases
+44725,gyro,a Greek sandwich: sliced roast lamb with onion and tomato stuffed into pita bread
+44726,gyrocompass,a compass that does not depend on magnetism but uses a gyroscope instead
+44727,gyromitra,any fungus of the genus Gyromitra
+44728,gyroscope gyro,rotating mechanism in the form of a universally mounted spinning wheel that offers resistance to turns in any direction
+44729,gyrostabilizer gyrostabiliser,a stabilizer consisting of a heavy gyroscope that spins on a vertical axis; reduces side-to-side rolling of a ship or plane
+44730,gyrus convolution,a convex fold or elevation in the surface of the brain
+44731,habanera,music composed in duple time for dancing the habanera
+44732,habanera,a Cuban dance in duple time
+44733,habeas_corpus,the civil right to obtain a writ of habeas corpus as protection against illegal imprisonment
+44734,habeas_corpus writ_of_habeas_corpus,a writ ordering a prisoner to be brought before a judge
+44735,haberdashery men's_furnishings,the drygoods sold by a haberdasher
+44736,habergeon,(Middle Ages) a light sleeveless coat of chain mail worn under the hauberk
+44737,habit,the general form or mode of growth (especially of a plant or crystal); "a shrub of spreading habit"
+44738,habit,a distinctive attire worn by a member of a religious order
+44739,habit riding_habit,attire that is typically worn by a horseback rider (especially a woman's attire)
+44740,habit use,(psychology) an automatic pattern of behavior in reaction to a specific situation; may be inherited or acquired through frequent repetition; "owls have nocturnal habits"; "she had a habit twirling the ends of her hair"; "long use had hardened him to it"
+44741,habit wont,an established custom; "it was their habit to dine at 7 every evening"
+44742,habitability habitableness,suitability for living in or on
+44743,habitat home_ground,the type of environment in which an organism or group normally lives or occurs; "a marine habitat"; "he felt safe on his home grounds"
+44744,habitation,the native habitat or home of an animal or plant
+44745,habitual_abortion,repeated spontaneous abortion (often for no known reason)
+44746,habituation,a general accommodation to unchanging environmental conditions
+44747,habitude,habitual mode of behavior
+44748,habitus,person's predisposition to be affected by something (as a disease); "the consumptive habitus"
+44749,hacek wedge,a diacritical mark (an inverted circumflex) placed above certain letters (such as the letter c) to indicate pronunciation
+44750,hacienda,a large estate in Spanish-speaking countries
+44751,hacienda,the main house on a ranch or large estate
+44752,hack,a tool (as a hoe or pick or mattock) used for breaking up the surface of the soil
+44753,hack,a horse kept for hire
+44754,hack,a saddle horse used for transportation rather than sport etc.
+44755,hack drudge hacker,one who works hard at boring tasks
+44756,hack hack_writer literary_hack,a mediocre and disdained writer
+44757,hack jade nag plug,an old or over-worked horse
+44758,hackberry nettle_tree,any of various trees of the genus Celtis having inconspicuous flowers and small berrylike fruits
+44759,hacker,someone who plays golf poorly
+44760,hacker,a programmer for whom computing is its own reward; may enjoy the challenge of breaking into other computers but does no harm; "true hackers subscribe to a code of ethics and look down upon crackers"
+44761,hackle,long slender feather on the necks of e.g. turkeys and pheasants
+44762,hackney,a compact breed of harness horse
+44763,hackney hackney_carriage hackney_coach,a carriage for hire
+44764,hacksaw hack_saw metal_saw,saw used with one hand for cutting metal
+44765,hackwork,professional work done according to formula
+44766,haddock,lean white flesh of fish similar to but smaller than cod; usually baked or poached or as fillets sauteed or fried
+44767,haddock Melanogrammus_aeglefinus,important food fish on both sides of the Atlantic; related to cod but usually smaller
+44768,hadron,any elementary particle that interacts strongly with other particles
+44769,hadrosaur hadrosaurus duck-billed_dinosaur,any of numerous large bipedal ornithischian dinosaurs having a horny duck-like bill and webbed feet; may have been partly aquatic
+44770,haemoproteid,related to malaria parasite and having a phase in the viscera of various birds
+44771,haemosporidian,minute protozoans parasitic at some stage of the life cycle in blood cells of vertebrates including many pathogens
+44772,hafnium Hf atomic_number_72,a grey tetravalent metallic element that resembles zirconium chemically and is found in zirconium minerals; used in filaments for its ready emission of electrons
+44773,haft helve,the handle of a weapon or tool
+44774,hag beldam beldame witch crone,an ugly evil-looking old woman
+44775,hagberry,small cherry much liked by birds
+44776,hagberry_tree European_bird_cherry common_bird_cherry Prunus_padus,small European cherry tree closely resembling the American chokecherry
+44777,hagfish hag slime_eels,eellike cyclostome having a tongue with horny teeth in a round mouth surrounded by eight tentacles; feeds on dead or trapped fishes by boring into their bodies
+44778,haggis,made of sheep's or calf's viscera minced with oatmeal and suet and onions and boiled in the animal's stomach
+44779,haggle haggling wrangle wrangling,an instance of intense argument (as in bargaining)
+44780,haggler,an intense bargainer
+44781,hagiographer hagiographist hagiologist,the author of a worshipful or idealizing biography
+44782,hagiography,a biography that idealizes or idolizes the person (especially a person who is a saint)
+44783,hagiolatry hierolatry,the worship of saints
+44784,hagiology,literature narrating the lives (and legends) of the saints
+44785,haik haick,an outer garment consisting of a large piece of white cloth; worn by men and women in northern Africa
+44786,haiku,an epigrammatic Japanese verse form of three short lines
+44787,hail,precipitation of ice pellets when there are strong rising air currents
+44788,hail,many objects thrown forcefully through the air; "a hail of pebbles"; "a hail of bullets"
+44789,hail,enthusiastic greeting
+44790,hailstone,small pellet of ice that falls during a hailstorm
+44791,hailstorm,a storm during which hail falls
+44792,hair,a covering for the body (or parts of it) consisting of a dense growth of threadlike structures (as on the human head); helps to prevent heat loss; "he combed his hair"; "each hair consists of layers of dead keratinized cells"
+44793,hair,a filamentous projection or process on an organism
+44794,hair fuzz tomentum,filamentous hairlike growth on a plant; "peach fuzz"
+44795,hair pilus,any of the cylindrical filaments characteristically growing from the epidermis of a mammal; "there is a hair in my soup"
+44796,hair's-breadth hairsbreadth hair whisker,a very small distance or space; "they escaped by a hair's-breadth"; "they lost the election by a whisker"
+44797,hair-raiser chiller,excitation that makes your hair stand up or that chills your bones; "the movie was an old-fashioned hair-raiser"
+44798,hair_care haircare hairdressing,care for the hair: the activity of washing or cutting or curling or arranging the hair
+44799,hair_cell,a sensory epithelial cell present in the organ of Corti
+44800,hair_coloring,coloring of the hair; "her hair-coloring was unusual: a very pale gold"
+44801,hair_coloring,the act of dyeing or tinting one's hair
+44802,hair_dye hair_coloring tint,a dye for coloring the hair
+44803,hair_follicle,a small tubular cavity containing the root of a hair; small muscles and sebaceous glands are associated with them
+44804,hair_of_the_dog,an alcoholic drink supposed to cure a hangover
+44805,hair_shirt,an uncomfortable shirt made of coarse animal hair; worn next to the skin as a penance
+44806,hair_slide,a decorative hinged clip that girls and women put in their hair to hold it in place
+44807,hair_space,(printing) the narrowest of the spaces used to separate words or letters
+44808,hair_spray,toiletry consisting of a commercial preparation that is sprayed on the hair to hold it in place
+44809,hair_stroke,a very fine line in writing or printing
+44810,hair_trigger,a gun trigger that responds with little pressure
+44811,hairball hair_ball trichobezoar,a compact mass of hair that forms in the alimentary canal (especially in the stomach of animals as a result of licking fur)
+44812,hairbrush,a brush used to groom a person's hair
+44813,haircloth hair,cloth woven from horsehair or camelhair; used for upholstery or stiffening in garments
+44814,haircut,the style in which hair has been cut
+44815,haircut,the act of cutting the hair
+44816,hairdo hairstyle hair_style coiffure coif,the arrangement of the hair (especially a woman's hair)
+44817,hairdresser hairstylist stylist styler,someone who cuts or beautifies hair
+44818,hairdressing hair_tonic hair_oil hair_grease,a toiletry for the hair
+44819,hairiness pilosity,the quality of having hair
+44820,hairlessness,the quality of not having hair
+44821,hairlessness depilation,the condition of being void of hair
+44822,hairline,a very thin line
+44823,hairline,the natural margin formed by hair on the head
+44824,hairline_fracture capillary_fracture,a fracture without separation of the fragments and the line of the break being very thin
+44825,hairnet,a small net that some women wear over their hair to keep it in place
+44826,hairpiece false_hair postiche,a covering or bunch of human or artificial hair used for disguise or adornment
+44827,hairpin,a double pronged pin used to hold women's hair in place
+44828,hairpin_bend,a U-shaped bend in a road
+44829,hairsplitter,a disputant who makes unreasonably fine distinctions
+44830,hairsplitting word-splitting,making too fine distinctions of little importance; "they didn't take his hairsplitting seriously"
+44831,hairspring,a fine spiral spring that regulates the movement of the balance wheel in a timepiece
+44832,hairstreak hairstreak_butterfly,small butterflies having striped markings under the wings
+44833,hairweaving,the act of interweaving a hairpiece with your own hair
+44834,hairy-legged_vampire_bat Diphylla_ecaudata,similar in size and habits to Desmodus rotundus; of tropical America including southern California and Texas
+44835,hairy_darling_pea Swainsona_greyana Swainsona_grandiflora,shrubby perennial of southern Australia having downy or woolly stems and undersides of leaves and racemes of red to pink flowers
+44836,hairy_golden_aster prairie_golden_aster Heterotheca_villosa Chrysopsis_villosa,hairy perennial with yellow flower heads in branched clusters; found almost everywhere in dry places from Canada to west central and western United States; sometimes placed in genus Chrysopsis
+44837,hairy_honeysuckle Lonicera_hirsuta,twining deciduous shrub with hairy leaves and spikes of yellow-orange flowers; northeastern America
+44838,hairy_root,a phase of crown gall (especially in apples) during which there is abnormal development of fine fibrous roots
+44839,hairy_spurge Euphorbia_hirsuta,much-branched hirsute weed native to northeastern North America
+44840,hairy_tongue furry_tongue black_tongue,a benign side effect of some antibiotics; dark overgrowth of the papillae of the tongue
+44841,hairy_vetch hairy_tare Vicia_villosa,European vetch much cultivated as forage and cover crops
+44842,hairy_willowherb codlins-and-cream Epilobium_hirsutum,plant of Europe and Asia having purplish-red flowers and hairy stems and leaves; introduced into North America
+44843,hairy_wood_mint Blephilia_hirsuta,a variety of wood mint
+44844,hajj haj hadj,the fifth pillar of Islam is a pilgrimage to Mecca during the month of Dhu al-Hijja; at least once in a lifetime a Muslim is expected to make a religious journey to Mecca and the Kaaba; "for a Muslim the hajj is the ultimate act of worship"
+44845,hajji,a general term used by foreign soldiers to refer to the Iraqi people; "to American soldiers, the hajji are the alien people from whom the enemy emerges"
+44846,hajji hadji haji,an Arabic term of respect for someone who has made the pilgrimage to Mecca
+44847,hake,the lean flesh of a fish similar to cod
+44848,hake,any of several marine food fishes related to cod
+44849,hakim,a Muslim ruler or governor or judge
+44850,hakim hakeem,a Muslim physician
+44851,halal,(Islam) meat from animals that have been slaughtered in the prescribed way according to the shariah
+44852,halberd,a pike fitted with an ax head
+44853,halberdier,a guard who carries a halberd (as a symbol of his duty)
+44854,halcyon,a mythical bird said to breed at the time of the winter solstice in a nest floating on the sea and to have the power of calming the winds and waves
+44855,haler heller,100 halers equal 1 koruna Slovakia
+44856,haler heller,100 halers equal 1 koruna in Czech Republic
+44857,half,one of two divisions into which some games or performances are divided: the two divisions are separated by an interval
+44858,half-and-half,half milk and half light cream; contains 10% to 18% butterfat
+44859,half-and-half_dressing,half mayonnaise and half vinaigrette seasoned with minced garlic and mashed anchovies and grated Parmesan cheese; especially good for combination salads
+44860,half-breed,an offensive term for an offspring of parents of different racial group (especially of Caucasian and American Indian ancestry)
+44861,half-caste,an offensive term for the offspring of parents of different racial groups or cultures
+44862,half-century,a period of 50 years
+44863,half-cock,confusion resulting from lack of preparation
+44864,half-holiday,a day on which half is free from work or duty
+44865,half-hour 30_minutes,a half of an hour
+44866,half-intensity,half the maximum intensity
+44867,half-length,a portrait showing the body from only the waist up
+44868,half-light,a greyish light (as at dawn or dusk or in dim interiors)
+44869,half-mast half-staff,a position some distance below the top of a mast to which a flag is lowered in mourning or to signal distress
+44870,half-moon,the time at which the Moon is at first or last quarter when half its face is illuminated
+44871,half-moon lunula lunule,the crescent-shaped area at the base of the human fingernail
+44872,half-pay,reduced wage paid to someone who is not working full time
+44873,half-term,a short vacation about halfway through a school term; "he came to visit at half-term"
+44874,half-truth,a partially true statement intended to deceive or mislead
+44875,half_binding,book binding in which the spine and part of the sides are bound in one material and the rest in another
+44876,half_blood,one of siblings who have only one parent in common
+44877,half_cross_stitch,a single cross stitch at a diagonal
+44878,half_crown,an English coin worth half a crown
+44879,half_dollar fifty-cent_piece,a United States coin worth half of a dollar
+44880,half_eagle,a former gold coin in United States worth 5 dollars
+44881,half_gainer,a dive in which the diver throws the feet forward and up to complete a half backward somersault and enters the water facing the diving board
+44882,half_hatchet,a hatchet with a half axe head
+44883,half_hitch,a knot used to fasten a rope temporarily to an object; usually tied double
+44884,half_life half-life,the time required for something to fall to half its initial value (in particular, the time for half the atoms in a radioactive substance to disintegrate)
+44885,half_mile 880_yards,a unit of length equal to half of 1 mile
+44886,half_nelson,a wrestling hold in which the holder puts an arm under the opponent's arm and exerts pressure on the back of the neck
+44887,half_note minim,a musical note having the time value of half a whole note
+44888,half_page,something that covers (the top or bottom) half of a page
+44889,half_pound,8 ounces avoirdupois
+44890,half_rest,a musical rest having the time value of half a whole rest or equal in duration to two beats in common time
+44891,half_sister half-sister stepsister,a sister who has only one parent in common with you
+44892,half_sole,shoe sole extending from the shank to the toe
+44893,half_title bastard_title,a first page of some books displaying only the title of the book
+44894,half_track,a motor vehicle propelled by half tracks; frequently used by the military
+44895,half_track,a track that goes around only rear wheels
+44896,half_volley,a tennis return made by hitting the ball immediately after it bounces
+44897,halfback,(football) the running back who plays the offensive halfback position
+44898,halfback,(American football) an offensive back usually positioned behind the quarterback and to the side of the fullback
+44899,halfbeak,tropical and subtropical marine and freshwater fishes having an elongated body and long protruding lower jaw
+44900,halfpenny ha'penny,an English coin worth half a penny
+44901,halfpennyworth ha'p'orth,the amount that can be bought for a halfpenny
+44902,halftime,an intermission between the first and second half of a game
+44903,halftone,a print obtained from photoengraving
+44904,halftone halftone_engraving photoengraving,an engraving used to reproduce an illustration
+44905,halibut,lean flesh of very large flatfish of Atlantic or Pacific
+44906,halibut holibut,marine food fish of the northern Atlantic or northern Pacific; the largest flatfish and one of the largest teleost fishes
+44907,halibut-liver_oil,a fatty oil from halibut livers that is used as a source of vitamin A
+44908,halide,a salt of any halogen acid
+44909,halite rock_salt,naturally occurring crystalline sodium chloride
+44910,halitosis,offensive breath
+44911,halitus exhalation,exhaled breath
+44912,hall,a large building used by a college or university for teaching or research; "halls of learning"
+44913,hall,a large room for gatherings or entertainment; "lecture hall"; "pool hall"
+44914,hall,a large building for meetings or entertainment
+44915,hall_of_residence,a university dormitory
+44916,hall_pass,written permission from a teacher for a student to be out the classroom and in the halls of the school
+44917,hallelujah,a shout or song of praise to God
+44918,hallmark trademark earmark stylemark,a distinctive characteristic or attribute
+44919,halloo,a shout to attract attention; "he gave a great halloo but no one heard him"
+44920,hallstand,a piece of furniture where coats and hats and umbrellas can be hung; usually has a mirror
+44921,hallucination,illusory perception; a common symptom of severe mental disorder
+44922,hallucination,an object perceived during a hallucinatory episode; "he refused to believe that the angel was a hallucination"
+44923,hallucinogen hallucinogenic_drug psychedelic_drug psychodelic_drug,a psychoactive drug that induces hallucinations or altered sensory experiences
+44924,hallucinosis,a mental state in which the person has continual hallucinations
+44925,hallway hall,an interior passage or corridor onto which rooms open; "the elevators were at the end of the hall"
+44926,halma,a board game in which players try to move their pieces into their opponent's bases
+44927,halo,a circle of light around the sun or moon
+44928,halo_blight,a blight affecting the leaves of oats and other grasses
+44929,halo_blight halo_spot bean_blight,a blight of bean plants
+44930,halobacteria halobacterium halobacter,halophiles in saline environments such as the Dead Sea or salt flats
+44931,halocarbon,one of various compounds of carbon and any of the halogens
+44932,haloform,compounds with the formula CHX3, where X is a halogen atom
+44933,halogen,any of five related nonmetallic elements (fluorine or chlorine or bromine or iodine or astatine) that are all monovalent and readily form negative ions
+44934,halogeton Halogeton_glomeratus,a coarse annual herb introduced into North America from Siberia; dangerous to sheep and cattle on western rangelands because of its high oxalate content
+44935,halon,a compound in which the hydrogen atoms of a hydrocarbon have been replaced by bromine and other halogen atoms; very stable; used in fire extinguishers although it is thought to release bromine that depletes the ozone layer
+44936,haloperidol Haldol,tranquilizer (trade name Haldol) used to treat some psychotic disorders and Tourette's syndrome
+44937,halophile halophil,archaebacteria requiring a salt-rich environment for growth and survival
+44938,halophyte,plant growing naturally in very salty soil
+44939,halothane,a nonflammable inhalation anesthetic that produces general anesthesia; used along with analgesics and muscle relaxants for many types of surgical procedures
+44940,halter,a woman's top that fastens behind the back and neck leaving the back and arms uncovered
+44941,halter hackamore,rope or canvas headgear for a horse, with a rope for leading
+44942,halter haltere balancer,either of the rudimentary hind wings of dipterous insects; used for maintaining equilibrium during flight
+44943,halyard halliard,a rope for raising or lowering a sail or flag
+44944,ham,a licensed amateur radio operator
+44945,ham ham_actor,an unskilled actor who overacts
+44946,ham jambon gammon,meat cut from the thigh of a hog (usually smoked)
+44947,ham_and_eggs,eggs (scrambled or fried) served with ham
+44948,ham_hock,a small cut of meat from the leg just above the foot
+44949,ham_sandwich,a sandwich made with a filling of sliced ham
+44950,hamadryad,the nymph or spirit of a particular tree
+44951,hamadryad king_cobra Ophiophagus_hannah Naja_hannah,large cobra of southeastern Asia and the East Indies; the largest venomous snake; sometimes placed in genus Naja
+44952,hamamelid_dicot_family,family of mostly woody dicotyledonous flowering plants with flowers often unisexual and often borne in catkins
+44953,hamamelid_dicot_genus,genus of mostly woody relatively primitive dicotyledonous flowering plants with flowers often unisexual and often borne in catkins
+44954,hamartoma,a focal growth that resembles a neoplasm but results from faulty development in an organ
+44955,hamate hamate_bone unciform_bone os_hamatum,the wrist bone in line with the 4th and 5th fingers
+44956,hamburger beefburger burger,a sandwich consisting of a fried cake of minced beef served on a bun, often with other ingredients
+44957,hamburger_bun hamburger_roll,a round bun shaped to hold a hamburger patty
+44958,hame,stable gear consisting of either of two curved supports that are attached to the collar of a draft horse and that hold the traces
+44959,hamelia,any of several flowering tropical or subtropical shrubs of the genus Hamelia
+44960,hamlet crossroads,a community of people smaller than a village
+44961,hammer,a heavy metal sphere attached to a flexible wire; used in the hammer throw
+44962,hammer,a striker that is covered in felt and that causes the piano strings to vibrate
+44963,hammer,a hand tool with a heavy rigid head and a handle; used to deliver an impulsive force by striking
+44964,hammer cock,the part of a gunlock that strikes the percussion cap when the trigger is pulled
+44965,hammer pound hammering pounding,the act of pounding (delivering repeated heavy blows); "the sudden hammer of fists caught him off guard"; "the pounding of feet on the hallway"
+44966,hammer power_hammer,a power tool for drilling rocks
+44967,hammer_and_sickle,the emblem on the flag of the Soviet Union
+44968,hammer_throw,an athletic competition in which a heavy metal ball that is attached to a flexible wire is hurled as far as possible
+44969,hammerhead,the striking part of a hammer
+44970,hammerhead hammerhead_shark,medium-sized live-bearing shark with eyes at either end of a flattened hammer-shaped head; worldwide in warm waters; can be dangerous
+44971,hammerlock,a wrestling hold in which the opponent's arm is twisted up behind his back
+44972,hammertoe,a deformed toe which is bent in a clawlike arch
+44973,hamming overacting,poor acting by a ham actor
+44974,hammock sack,a hanging bed of canvas or rope netting (usually suspended between two trees); swings easily
+44975,hamper,a basket usually with a cover
+44976,hamster,short-tailed Old World burrowing rodent with large cheek pouches
+44977,hamstring hamstring_tendon,one of the tendons at the back of the knee
+44978,hand,a unit of length equal to 4 inches; used in measuring horses; "the horse stood 20 hands"
+44979,hand,a member of the crew of a ship; "all hands on deck"
+44980,hand,a position given by its location to the side of an object; "objections were voiced on every hand"
+44981,hand,a round of applause to signify approval; "give the little lady a great big hand"
+44982,hand,one of two sides of an issue; "on the one hand..., but on the other hand..."
+44983,hand,ability; "he wanted to try his hand at singing"
+44984,hand,a rotating pointer on the face of a timepiece; "the big hand counts the minutes"
+44985,hand,terminal part of the forelimb in certain vertebrates (e.g. apes or kangaroos); "the kangaroo's forearms seem undeveloped but the powerful five-fingered hands are skilled at feinting and clouting"- Springfield (Mass.) Union
+44986,hand deal,the cards held in a card game by a given player at any given time; "I didn't hold a good hand all evening"; "he kept trying to see my hand"
+44987,hand helping_hand,physical assistance; "give me a hand with the chores"
+44988,hand manus mitt paw,the (prehensile) extremity of the superior limb; "he had the hands of a surgeon"; "he extended his mitt"
+44989,hand-held_computer hand-held_microcomputer,a portable battery-powered computer small enough to be carried in your pocket
+44990,hand-me-down,outgrown garment passed down from one person to another
+44991,hand_ax hand_axe,a stone tool with a cutting edge; the stone is held in the hand and used for chopping
+44992,hand_blower blow_dryer blow_drier hair_dryer hair_drier,a hand-held electric blower that can blow warm air onto the hair; used for styling hair
+44993,hand_brake emergency emergency_brake parking_brake,a brake operated by hand; usually operates by mechanical linkage
+44994,hand_calculator pocket_calculator,a calculator small enough to hold in the hand or carry in a pocket
+44995,hand_cheese,any cheese originally molded by hand
+44996,hand_cream,moisturizing cream for the hands
+44997,hand_drill handheld_drill,a small portable drill held and operated by hand
+44998,hand_fern Doryopteris_pedata,tropical American fern with coarsely lobed to palmatifid fronds
+44999,hand_glass hand_mirror,a mirror intended to be held in the hand
+45000,hand_glass simple_microscope magnifying_glass,light microscope consisting of a single convex lens that is used to produce an enlarged image; "the magnifying glass was invented by Roger Bacon in 1250"
+45001,hand_grenade,a grenade designed to be thrown by hand
+45002,hand_lotion,lotion used to soften the hands
+45003,hand_luggage,luggage that is light enough to be carried by hand
+45004,hand_mower,a lawn mower that is operated by hand
+45005,hand_pump,a pump worked by hand
+45006,hand_puppet glove_puppet glove_doll,a puppet with a cloth body and hollow head; fits over the hand
+45007,hand_shovel,a shovel that is operated by hand
+45008,hand_throttle,a hand-operated lever that controls the throttle valve
+45009,hand_tool,a tool used with workers' hands
+45010,hand_towel face_towel,a small towel used to dry the hands or face
+45011,hand_truck truck,a handcart that has a frame with two low wheels and a ledge at the bottom and handles at the top; used to move crates or other heavy objects
+45012,handball,a small rubber ball used in playing the game of handball
+45013,handball,a game played in a walled court or against a single wall by two or four players who strike a rubber ball with their hands
+45014,handball_court,the court on which handball is played
+45015,handbarrow,a rectangular frame with handles at both ends; carried by two people
+45016,handbell,a bell that is held in the hand
+45017,handbook enchiridion vade_mecum,a concise reference book providing specific information about a subject or location
+45018,handbow,a bow drawn by hand as distinguished from a crossbow
+45019,handbreadth handsbreadth,any unit of length based on the breadth of the human hand
+45020,handcar,a small railroad car propelled by hand or by a small motor
+45021,handcart pushcart cart go-cart,wheeled vehicle that can be pushed by a person; may have one or two or four wheels; "he used a handcart to carry the rocks away"; "their pushcart was piled high with groceries"
+45022,handclap,a clap of the hands to indicate approval
+45023,handcuff cuff handlock manacle,shackle that consists of a metal loop that can be locked around the wrist; usually used in pairs
+45024,handedness laterality,the property of using one hand more than the other
+45025,handful fistful,the quantity that can be held in the hand
+45026,handful smattering,a small number or amount; "only a handful of responses were received"
+45027,handhold,an appendage to hold onto
+45028,handicap,advantage given to a competitor to equalize chances of winning
+45029,handicapped_person,a person who has some condition that markedly restricts their ability to function physically or mentally or socially
+45030,handicraft,a craft that requires skillful hands
+45031,handicraft handcraft handiwork handwork,a work produced by hand labor
+45032,handiness,skillfulness with the hands; "he can do any sort of work requiring handiness and dexterity"
+45033,handiness accessibility availability availableness,the quality of being at hand when needed
+45034,handkerchief hankie hanky hankey,a square piece of cloth used for wiping the eyes or nose or as a costume accessory
+45035,handle grip handgrip hold,the appendage to an object that is designed to be held in order to use or move it; "he grabbed the hammer by the handle"; "it was an old briefcase but it still had a good grip"
+45036,handlebar,the shaped bar used to steer a bicycle
+45037,handler,an agent who handles something or someone; "the senator's campaign handlers"
+45038,handline hand_line,a fishing line managed principally by hand
+45039,handling,manual (or mechanical) carrying or moving or delivering or working with something
+45040,handling manipulation,the action of touching with the hands (or the skillful use of the hands) or by the use of mechanical means
+45041,handling_cost handling_charge,the cost of handling (especially the cost of packaging and mailing an order)
+45042,handloom,a loom powered by hand
+45043,handmaid handmaiden,a personal maid or female attendant
+45044,handmaid handmaiden servant,in a subordinate position; "theology should be the handmaiden of ethics"; "the state cannot be a servant of the church"
+45045,handoff,(American football) a play in which one player hands the ball to a teammate
+45046,handout,giving money or food or clothing to a needy person
+45047,handout press_release release,an announcement distributed to members of the press in order to supplement or replace an oral presentation
+45048,handover,act of relinquishing property or authority etc; "the handover of occupied territory"
+45049,handrest,a support for the hand
+45050,hands custody,(with `in') guardianship over; in divorce cases it is the right to house and care for and discipline a child; "my fate is in your hands"; "too much power in the president's hands"; "your guests are now in my custody"; "the mother was awarded custody of the children"
+45051,handsaw hand_saw carpenter's_saw,a saw used with one hand for cutting wood
+45052,handsaw_fish,a soft-finned fish of the genus Alepisaurus
+45053,handset French_telephone,telephone set with the mouthpiece and earpiece mounted on a single handle
+45054,handshake shake handshaking handclasp,grasping and shaking a person's hand (as to acknowledge an introduction or to agree on a contract)
+45055,handsomeness good_looks,the quality of having regular well-defined features (especially of a man)
+45056,handspike,a metal bar (or length of pipe) used as a lever
+45057,handspring,an acrobatic feat in which a person goes from a standing position to a handstand and back again
+45058,handstamp rubber_stamp,a stamp (usually made of rubber) for imprinting a mark or design by hand
+45059,handstand,the act of supporting yourself by your hands alone in an upside down position
+45060,handwear hand_wear,clothing for the hands
+45061,handwheel,a wheel worked by hand
+45062,handwheel,control consisting of a wheel whose rim serves as the handle by which a part is operated
+45063,handwriting,the activity of writing by hand; "handwriting can be slow and painful for one with arthritis"
+45064,handwriting hand script,something written by hand; "she recognized his handwriting"; "his hand was illegible"
+45065,handyman jack_of_all_trades odd-job_man,a man skilled in various odd jobs and other small tasks
+45066,hang,the way a garment hangs; "he adjusted the hang of his coat"
+45067,hang,a gymnastic exercise performed on the rings or horizontal bar or parallel bars when the gymnast's weight is supported by the arms
+45068,hang-up,an emotional preoccupation
+45069,hang-up hitch rub snag,an unforeseen obstacle
+45070,hang_glider,a rider of a hang glider
+45071,hang_glider,a glider resembling a large kite; the rider hangs from it while descending from a height
+45072,hang_gliding,gliding in a hang glider
+45073,hangar_queen,an airplane with a bad maintenance record
+45074,hanger,a worker who hangs something
+45075,hanger,anything from which something can be hung
+45076,hanging,a form of capital punishment; victim is suspended by the neck from a gallows or gibbet until dead; "in those days the hanging of criminals was a public entertainment"
+45077,hanging wall_hanging,decoration that is hung (as a tapestry) on a wall or over a window; "the cold castle walls were covered with hangings"
+45078,hanging_chad,a chad that is incompletely removed and hanging by one corner
+45079,hanging_fly,any of various mecopterous insects of the family Bittacidae
+45080,hanging_wall,the upper wall of an inclined fault
+45081,hangman,an executioner who hangs the condemned person
+45082,hangman's_rope hangman's_halter halter hemp hempen_necktie,a rope that is used by a hangman to execute persons who have been condemned to death by hanging
+45083,hangnail agnail,a loose narrow strip of skin near the base of a fingernail; tearing it produces a painful sore that is easily infected
+45084,hangover holdover,something that has survived from the past; "a holdover from the sixties"; "hangovers from the 19th century"
+45085,hangover katzenjammer,disagreeable aftereffects from the use of drugs (especially alcohol)
+45086,hank,a coil of rope or wool or yarn
+45087,hank_panky,illicit sexual intercourse
+45088,hankering yen,a yearning for something or to do something
+45089,hansom hansom_cab,a two-wheeled horse-drawn covered carriage with the driver's seat above and behind the passengers
+45090,hao,10 hao equal 1 dong in Vietnam
+45091,hap,an accidental happening; "he recorded all the little haps and mishaps of his life"
+45092,haploid,(genetics) an organism or cell having only one complete set of chromosomes
+45093,haploidy,the condition of being haploid
+45094,haplosporidian,parasite in invertebrates and lower vertebrates of no known economic importance
+45095,haplotype,(genetics) a combination of alleles (for different genes) that are located closely together on the same chromosome and that tend to be inherited together
+45096,happening occurrence occurrent natural_event,an event that happens
+45097,happiness,emotions experienced when in a state of well-being
+45098,happiness felicity,state of well-being characterized by emotions ranging from contentment to intense joy
+45099,happy_hour,the time of day when a bar sells alcoholic drinks at a reduced price
+45100,haptoglobin,a protein in plasma that binds free hemoglobin and removes it (as from wounds)
+45101,harakiri hara-kiri harikari seppuku,ritual suicide by self-disembowelment on a sword; practiced by samurai in the traditional Japanese society
+45102,harangue rant ranting,a loud bombastic declamation expressed with strong emotion
+45103,haranguer,a public speaker who delivers a loud or forceful or angry speech
+45104,harasser,a persistent tormentor
+45105,harasser harrier,a persistent attacker; "the harassers were not members of the regular army"
+45106,harassing_fire,fire designed to disturb the rest of enemy troops and to curtail movement and to lower enemy morale
+45107,harassment molestation,the act of tormenting by continued persistent attacks and criticism
+45108,harassment torment,a feeling of intense annoyance caused by being tormented; "so great was his harassment that he wanted to destroy his tormentors"
+45109,harbinger forerunner predecessor herald precursor,something that precedes and indicates the approach of something or someone
+45110,harbor harbour,a place of refuge and comfort and security
+45111,harbor_patrol,patrol of officers who police a harbor area
+45112,harbor_porpoise herring_hog Phocoena_phocoena,the common porpoise of the northern Atlantic and Pacific
+45113,harbor_seal common_seal Phoca_vitulina,small spotted seal of coastal waters of the northern hemisphere
+45114,harborage harbourage,(nautical) a place of refuge (as for a ship)
+45115,hard-boiled_egg hard-cooked_egg,an egg boiled gently until both the white and the yolk solidify
+45116,hard-shell_crab,edible crab that has not recently molted and so has a hard shell
+45117,hard_beech Nothofagus_truncata,tall New Zealand tree yielding very hard wood
+45118,hard_candy,candy that is brittle; "you can break a tooth on that hard candy"
+45119,hard_cheese,bad luck
+45120,hard_cider,alcoholic drink from fermented cider; `cider' and `cyder' are European (especially British) usages for the fermented beverage
+45121,hard_copy,(computer science) matter that is held in a computer and is typed or printed on paper; "he ran off a hard copy of the report"
+45122,hard_core,the most dedicated and intensely loyal nucleus of a group or movement
+45123,hard_currency,a currency that is not likely to depreciate suddenly in value; "the countries agreed to conduct their bilateral trade in hard currency, replacing previous barter arrangements"; "Germany once had a solid economy, good fiscal and monetary policies, and a hard currency"
+45124,hard_disc hard_disk fixed_disk,a rigid magnetic disk mounted permanently in a drive unit
+45125,hard_drug,a narcotic that is considered relatively strong and likely to cause addiction
+45126,hard_fern,any of several ferns of the genus Blechnum
+45127,hard_hat tin_hat safety_hat,a lightweight protective helmet (plastic or metal) worn by construction workers
+45128,hard_lead,unrefined lead that is hard because of the impurities it contains
+45129,hard_lead antimonial_lead,a lead alloy that contains about 5% antimony
+45130,hard_line,a firm and uncompromising stance or position; "the governor took a hard line on drugs"
+45131,hard_news,news that deals with serious topics or events
+45132,hard_palate,the bony part of the roof of the mouth
+45133,hard_right,the extreme right wing
+45134,hard_roll Vienna_roll,yeast-raised roll with a hard crust
+45135,hard_rubber vulcanite ebonite,a hard nonresilient rubber formed by vulcanizing natural rubber
+45136,hard_rush Juncus_inflexus,tall rush of temperate regions
+45137,hard_sauce,butter and sugar creamed together with brandy or other flavoring and served with rich puddings
+45138,hard_sell,forceful and insistent advertising
+45139,hard_shoulder,a paved strip beside a motorway (for stopping in emergencies)
+45140,hard_solder,solder that contains copper; melts at a relatively high temperature; used for brazing
+45141,hard_steel,steel with more than 0.3% carbon
+45142,hard_tick ixodid,ticks having a hard shield on the back and mouth parts that project from the head
+45143,hard_time,a term served in a maximum security prison
+45144,hard_time rough_sledding,a difficulty that can be overcome with effort; "we had a hard time getting here"; "analysts predicted rough sledding for handset makers"
+45145,hard_times,a time of difficulty
+45146,hard_water,water that contains mineral salts (as calcium and magnesium ions) that limit the formation of lather with soap
+45147,hardback hardcover,a book with cardboard or cloth or leather covers
+45148,hardbake,a British sweet made with molasses and butter and almonds
+45149,hardball,a no-nonsense attitude in business or politics; "they play hardball in the Senate"
+45150,hardball,baseball as distinguished from softball
+45151,hardening,abnormal hardening or thickening of tissue
+45152,hardening,the act of making something harder (firmer or tighter or more compact)
+45153,hardening solidifying solidification set curing,the process of becoming hard or solid by cooling or drying or crystallization; "the hardening of concrete"; "he tested the set of the glue"
+45154,hardinggrass Harding_grass toowomba_canary_grass Phalaris_aquatica Phalaris_tuberosa,perennial grass of Australia and South Africa; introduced in North America as forage grass
+45155,hardliner,a conservative who is uncompromising
+45156,hardness,the property of being rigid and resistant to pressure; not easily scratched; measured on Mohs scale
+45157,hardness,a quality of water that contains dissolved mineral salts that prevent soap from lathering; "the costs of reducing hardness depend on the relative amounts of calcium and magnesium compounds that are present"
+45158,hardness ruggedness,the quality of being difficult to do; "he assigned a series of problems of increasing hardness"; "the ruggedness of his exams caused half the class to fail"
+45159,hardship,something that causes or entails suffering; "I cannot think it a hardship that more indulgence is allowed to men than to women"- James Boswell; "the many hardships of frontier life"
+45160,hardstem_bulrush hardstemmed_bulrush Scirpus_acutus,widely distributed North American sedge having rigid olive green stems
+45161,hardtack,a mountain mahogany
+45162,hardtack pilot_biscuit pilot_bread sea_biscuit ship_biscuit,very hard unsalted biscuit or bread; a former ship's staple
+45163,hardtop,a car that resembles a convertible but has a fixed rigid top
+45164,hardware,major items of military weaponry (as tanks or missile)
+45165,hardware computer_hardware,(computer science) the mechanical, magnetic, electronic, and electrical components making up a computer system
+45166,hardware ironware,instrumentalities (tools or implements) made of metal
+45167,hardware_error,error resulting from a malfunction of some physical component of the computer
+45168,hardware_store ironmonger ironmonger's_shop,a store selling hardware; "in Great Britain they used to call a hardware store an ironmonger's shop"
+45169,hardwood,the wood of broad-leaved dicotyledonous trees (as distinguished from the wood of conifers)
+45170,hare,swift timid long-eared mammal larger than a rabbit having a divided upper lip and long hind legs; young born furred and with open eyes
+45171,hare's-foot_bristle_fern Trichomanes_boschianum,a variety of bristle fern
+45172,hare's-foot_fern,either of two ferns of the genus Davallia having a soft grey hairy rootstock
+45173,hare_wallaby kangaroo_hare,small Australian wallaby that resembles a hare and has persistent teeth
+45174,harebell bluebell Campanula_rotundifolia,perennial of northern hemisphere with slender stems and bell-shaped blue flowers
+45175,harem hareem seraglio serail,living quarters reserved for wives and concubines and female relatives in a Muslim household
+45176,haricot,a French variety of green bean plant bearing light-colored beans
+45177,haricot_vert haricots_verts French_bean,very small and slender green bean
+45178,harlequin,a clown or buffoon (after the Harlequin character in the commedia dell'arte)
+45179,harlequin_opal,a reddish opal with small patches of brilliant color
+45180,harmattan,a dusty wind from the Sahara that blows toward the western coast of Africa during the winter
+45181,harmfulness injuriousness,destructiveness that causes harm or injury
+45182,harmfulness noisomeness noxiousness,the quality of being noxious
+45183,harmonic,a tone that is a component of a complex sound
+45184,harmonic,any of a series of musical tones whose frequencies are integral multiples of the frequency of a fundamental
+45185,harmonic_mean,the mean of n numbers expressed as the reciprocal of the arithmetic mean of the reciprocals of the numbers
+45186,harmonic_motion,a periodic motion in which the displacement is either symmetrical about a point or is the sum of such motions
+45187,harmonic_progression,(mathematics) a progression of terms whose reciprocals form an arithmetic progression
+45188,harmonica mouth_organ harp mouth_harp,a small rectangular free-reed instrument having a row of free reeds set back in air holes and played by blowing into the desired hole
+45189,harmonics,the study of musical sound
+45190,harmonium organ reed_organ,a free-reeded instrument with a piano keyboard in which air is forced through the reeds by bellows
+45191,harmonization harmonisation,a piece of harmonized music
+45192,harmonization harmonisation,singing in harmony
+45193,harmonizer harmoniser,a musician who sings or plays in harmony
+45194,harmonizer harmoniser,a mediator who brings one thing into harmonious agreement with another
+45195,harmony,an agreeable sound property
+45196,harmony concord concordance,a harmonious state of things in general and of their properties (as of colors and sounds); congruity of parts with one another and with the whole
+45197,harmony concord concordance,agreement of opinions
+45198,harmony harmoniousness,compatibility in opinion and action
+45199,harmony musical_harmony,the structure of music with respect to the composition and progression of chords
+45200,harness,a support consisting of an arrangement of straps for holding something to the body (especially one supporting a person suspended from a parachute)
+45201,harness,stable gear consisting of an arrangement of leather straps fitted to a draft animal so that it can be attached to and pull a cart
+45202,harness_horse,horse used for pulling vehicles
+45203,harness_race harness_racing,a horse race between people riding in sulkies behind horses that are trotting or pacing
+45204,harnessed_antelope,any of several antelopes of the genus Tragelaphus having striped markings resembling a harness
+45205,harp,a pair of curved vertical supports for a lampshade
+45206,harp,a chordophone that has a triangular frame consisting of a sounding board and a pillar and a curved neck; the strings stretched between the neck and the soundbox are plucked with the fingers
+45207,harp_seal Pagophilus_groenlandicus,common Arctic seal; the young are all white
+45208,harpist harper,someone who plays the harp
+45209,harpoon,a spear with a shaft and barbed point for throwing; used for catching large fish or whales; a strong line is attached to it
+45210,harpoon_gun,a cannon or similar gun that fires harpoons
+45211,harpoon_line,a strong rope for making the catch fast to the harpooner's boat
+45212,harpoon_log,a cylindrical log with a device that registers distance
+45213,harpooner harpooneer,someone who launches harpoons
+45214,harpsichord cembalo,a clavier with strings that are plucked by plectra mounted on pivots
+45215,harpsichordist,someone who plays the harpsichord
+45216,harpulla Harpullia_cupanioides,fast-growing tree of India and East Indies yielding a wood used especially for building
+45217,harpullia,any of various tree of the genus Harpullia
+45218,harpy harpy_bat tube-nosed_bat tube-nosed_fruit_bat,any of various fruit bats of the genus Nyctimene distinguished by nostrils drawn out into diverging tubes
+45219,harpy harpy_eagle Harpia_harpyja,large black-and-white crested eagle of tropical America
+45220,harridan,a scolding (even vicious) old woman
+45221,harrier,a hound that resembles a foxhound but is smaller; used to hunt rabbits
+45222,harrier,hawks that hunt over meadows and marshes and prey on small terrestrial animals
+45223,harrier_eagle short-toed_eagle,any of numerous large Old World hawks intermediate in some respects between typical hawks and typical eagles
+45224,harrow,a cultivator that pulverizes or smooths the soil
+45225,harshness abrasiveness scratchiness,the roughness of a substance that causes abrasions
+45226,harshness roughness,the quality of being harsh or rough or grating to the senses
+45227,hart stag,a male deer, especially an adult male red deer
+45228,hart's-tongue hart's-tongue_fern Asplenium_scolopendrium Phyllitis_scolopendrium,Eurasian fern with simple lanceolate fronds
+45229,hart's-tongue hart's-tongue_fern Olfersia_cervina Polybotrya_cervina Polybotria_cervina,tropical American terrestrial fern with leathery lanceolate fronds; sometimes placed in genus Polybotrya
+45230,hartebeest,a large African antelope with lyre-shaped horns that curve backward
+45231,harvest,the consequence of an effort or activity; "they gathered a harvest of examples"; "a harvest of love"
+45232,harvest harvest_time,the season for gathering crops
+45233,harvest harvesting harvest_home,the gathering of a ripened crop
+45234,harvest-lice Agrimonia_eupatoria,erect perennial Old World herb of dry grassy habitats
+45235,harvest_mite chigger jigger redbug,larval mite that sucks the blood of vertebrates including human beings causing intense irritation
+45236,harvest_moon,the full moon nearest the September equinox
+45237,harvest_mouse Micromyx_minutus,small reddish-brown Eurasian mouse inhabiting e.g. cornfields
+45238,harvester reaper,someone who helps to gather the harvest
+45239,harvester reaper,farm machine that gathers a food crop from the fields
+45240,harvestfish Paprilus_alepidotus,butterfish up to a foot long of Atlantic waters from Chesapeake Bay to Argentina
+45241,harvestman daddy_longlegs Phalangium_opilio,spiderlike arachnid with a small rounded body and very long thin legs
+45242,has-been back-number,someone who is no longer popular
+45243,hash,chopped meat mixed with potatoes and browned
+45244,hash_head,a user of hashish
+45245,hash_house,an inexpensive restaurant
+45246,hashish hasheesh haschisch hash,purified resinous extract of the hemp plant; used as a hallucinogen
+45247,haslet,heart and liver and other edible viscera especially of hogs; usually chopped and formed into a loaf and braised
+45248,hasp,a fastener for a door or lid; a hinged metal plate is fitted over a staple and is locked with a pin or padlock
+45249,hassium Hs element_108 atomic_number_108,a radioactive transuranic element
+45250,hassle scuffle tussle dogfight rough-and-tumble,disorderly fighting
+45251,hassock,a cushion for kneeling on (as when praying in church)
+45252,hastate_leaf,a leaf shaped like a spearhead with flaring pointed lobes at the base
+45253,haste hastiness hurry hurriedness precipitation,overly eager speed (and possible carelessness); "he soon regretted his haste"
+45254,haste hurry rush rushing,the act of moving hurriedly and in a careless manner; "in his haste to leave he forgot his book"
+45255,hastiness,hasty impulsiveness
+45256,hasty_defense hasty_defence,a defense organized while in contact with the enemy or when time is limited
+45257,hasty_pudding,sweetened porridge made of tapioca or flour or oatmeal cooked quickly in milk or water
+45258,hasty_pudding,cornmeal mush served with sweetening (maple syrup or brown sugar)
+45259,hat,an informal term for a person's role; "he took off his politician's hat and talked frankly"
+45260,hat chapeau lid,headdress that protects the head from bad weather; has shaped crown and usually a brim
+45261,hat_trick,(sports) three consecutive scores by one player or three scores in one game (as in cricket or ice hockey etc.)
+45262,hatband,a band around the crown of a hat just above the brim
+45263,hatbox,a round piece of luggage for carrying hats
+45264,hatch,a movable barrier covering a hatchway
+45265,hatch hatching,the production of young from an egg
+45266,hatch hatching crosshatch hachure,shading consisting of multiple crossing lines
+45267,hatchback,a car having a hatchback door
+45268,hatchback hatchback_door liftgate hatch,a sloping rear car door that is lifted to open
+45269,hatchel heckle,a comb for separating flax fibers
+45270,hatchery,a place where eggs are hatched under artificial conditions (especially fish eggs); "the park authorities operated a trout hatchery"
+45271,hatchet,a small ax with a short handle used with one hand (usually to chop wood)
+45272,hatchet_man enforcer,one whose job it is to execute unpleasant tasks for a superior
+45273,hatchet_man iceman,a professional killer
+45274,hatchling,any recently hatched animal (especially birds)
+45275,hatchway opening scuttle,an entrance equipped with a hatch; especially a passageway between decks of a ship
+45276,hate hatred,the emotion of intense dislike; a feeling of dislike so strong that it demands action
+45277,hate_mail,mail that expresses the writer's dislike or hatred (usually in offensive language)
+45278,hatefulness obnoxiousness objectionableness,the quality of being hateful
+45279,hatemonger,one who arouses hatred for others
+45280,hater,a person who hates
+45281,hatful,as many or as much as a hat will hold
+45282,hatha_yoga,yogic exercises (popular in the West) that combine difficult postures (which force the mind to withdraw from the outside world) with controlled breathing
+45283,hatmaker hatter milliner modiste,someone who makes and sells hats
+45284,hatpin,a long sturdy pin used by women to secure a hat to their hair
+45285,hauberk byrnie,a long (usually sleeveless) tunic of chain mail formerly worn as defensive armor
+45286,hauler haulier,a haulage contractor
+45287,hauling trucking truckage,the activity of transporting goods by truck
+45288,haulm halm,stems of beans and peas and potatoes and grasses collectively as used for thatching and bedding
+45289,haunch,the hip and buttock and upper thigh in human beings
+45290,haunch,the loin and leg of a quadruped
+45291,haunt hangout resort repair stamping_ground,a frequently visited place
+45292,hausmannite,a mineral consisting of manganese tetroxide; a source of manganese
+45293,haustorium,a root-like attachment in parasitic plants that penetrates and obtains food from the host
+45294,haute_couture high_fashion high_style,trend-setting fashions
+45295,haute_cuisine,(French) an elaborate and skillful manner of preparing food
+45296,havelock,a cloth covering for a service cap with a flap extending over the back of the neck to protect the neck from direct rays of the sun
+45297,haven oasis,a shelter serving as a place of safety or sanctuary
+45298,havoc mayhem,violent and needless disturbance
+45299,haw,the nictitating membrane of a horse
+45300,hawala,an underground banking system based on trust whereby money can be made available internationally without actually moving it or leaving a record of the transaction; "terrorists make extensive use of hawala"
+45301,hawfinch Coccothraustes_coccothraustes,a common large finch of Eurasia
+45302,hawk,diurnal bird of prey typically having short rounded wings and a long tail
+45303,hawk war_hawk,an advocate of an aggressive policy on foreign relations
+45304,hawk's-beard hawk's-beards,any of various plants of the genus Crepis having loose heads of yellow flowers on top of a long branched leafy stem; northern hemisphere
+45305,hawk_nose,a nose curved downward like the beak of a hawk
+45306,hawk_owl Surnia_ulula,grey-and-white diurnal hawk-like owl of northern parts of the northern hemisphere
+45307,hawkbit,any of various common wildflowers of the genus Leontodon; of temperate Eurasia to Mediterranean regions
+45308,hawkishness,any political orientation favoring aggressive policies
+45309,hawkmoth hawk_moth sphingid sphinx_moth hummingbird_moth,any of various moths with long narrow forewings capable of powerful flight and hovering over flowers to feed
+45310,hawksbill_turtle hawksbill hawkbill tortoiseshell_turtle Eretmochelys_imbricata,pugnacious tropical sea turtle with a hawk-like beak; source of food and the best tortoiseshell
+45311,hawkweed,any of various plants of the genus Pilosella
+45312,hawkweed,any of numerous often hairy plants of the genus Hieracium having yellow or orange flowers that resemble the dandelion
+45313,hawse hawsehole hawsepipe,the hole that an anchor rope passes through
+45314,hawser,large heavy rope for nautical use
+45315,hawser_bend,a knot uniting the ends of two lines
+45316,hawthorn haw,a spring-flowering shrub or small tree of the genus Crataegus
+45317,hay,grass mowed and cured for use as fodder
+45318,hay-scented hay-scented_fern scented_fern boulder_fern Dennstaedtia_punctilobula,fern of eastern North America with pale green fronds and an aroma like hay
+45319,hay_bale,a bale of hay
+45320,hay_fever pollinosis,a seasonal rhinitis resulting from an allergic reaction to pollen
+45321,haycock,a small cone-shaped pile of hay that has been left in the field until it is dry enough to carry to the hayrick
+45322,hayfield meadow,a field where grass or alfalfa are grown to be made into hay
+45323,hayfork,a long-handled fork for turning or lifting hay
+45324,haying,the harvesting of hay
+45325,haying haying_time,the season for cutting and drying and storing grass as fodder
+45326,hayloft haymow mow,a loft in a barn where hay is stored
+45327,haymaker hay_conditioner,a farm machine that treats hay to cause more rapid and even drying
+45328,haymaker knockout_punch KO_punch Sunday_punch,a hard punch that renders the opponent unable to continue boxing
+45329,haymaking,taking full advantage of an opportunity while it lasts
+45330,haymaking,cutting grass and curing it to make hay
+45331,haymow,a mass of hay piled up in a barn for preservation
+45332,hayrack,a rack that holds hay for feeding livestock
+45333,hayrack hayrig,a frame attached to a wagon to increase the amount of hay it can carry
+45334,haystack hayrick rick,a stack of hay
+45335,haywire,wire for tying up bales of hay
+45336,hazard,an obstacle on a golf course
+45337,hazard jeopardy peril risk endangerment,a source of danger; a possibility of incurring loss or misfortune; "drinking alcohol is a health hazard"
+45338,hazard_insurance,insurance that provides protection against certain risks such as storms or fires
+45339,hazardousness perilousness,the state of being dangerous
+45340,haze,atmospheric moisture or dust or smoke that causes reduced visibility
+45341,hazel,the fine-grained wood of a hazelnut tree (genus Corylus) and the hazel tree (Australian genus Pomaderris)
+45342,hazel,a shade of brown that is yellowish or reddish; it is a greenish shade of brown when used to describe the color of someone's eyes
+45343,hazel hazel_tree Pomaderris_apetala,Australian tree grown especially for ornament and its fine-grained wood and bearing edible nuts
+45344,hazel_mouse Muscardinus_avellanarius,a variety of dormouse
+45345,hazelnut filbert cobnut cob,nut of any of several trees of the genus Corylus
+45346,hazelnut hazel hazelnut_tree,any of several shrubs or small trees of the genus Corylus bearing edible nuts enclosed in a leafy husk
+45347,haziness,vagueness attributable to being not clearly defined
+45348,haziness mistiness steaminess vaporousness vapourousness,cloudiness resulting from haze or mist or vapor
+45349,he,the 5th letter of the Hebrew alphabet
+45350,head,the tip of an abscess (where the pus accumulates)
+45351,head,the length or height based on the size of a human or animal head; "he is two heads taller than his little sister"; "his horse won by a head"
+45352,head,the pressure exerted by a fluid; "a head of steam"
+45353,head,an individual person; "tickets are $5 per head"
+45354,head,a user of (usually soft) drugs; "the office was full of secret heads"
+45355,head,a rounded compact mass; "the head of a comet"
+45356,head,the foam or froth that accumulates at the top when you pour an effervescent liquid into a container; "the beer had a large head of foam"
+45357,head,the top of something; "the head of the stairs"; "the head of the page"; "the head of the list"
+45358,head,the front of a military formation or procession; "the head of the column advanced boldly"; "they were at the head of the attack"
+45359,head,the rounded end of a bone that fits into a rounded cavity in another bone to form a joint; "the head of the humerus"
+45360,head,that part of a skeletal muscle that is away from the bone that it moves
+45361,head,(usually plural) the obverse side of a coin that usually bears the representation of a person's head; "call heads or tails!"
+45362,head,the striking part of a tool; "the head of the hammer"
+45363,head,(nautical) a toilet on board a boat or ship
+45364,head,a projection out from one end; "the head of the nail"; "a pinhead is the head of a pin"
+45365,head,a single domestic animal; "200 head of cattle"
+45366,head caput,the upper part of the human body or the front part of the body in animals; contains the face and brains; "he stuck his head out the window"
+45367,head chief top_dog,a person who is in charge; "the head of the whole operation"
+45368,head head_word,(grammar) the word in a grammatical constituent that plays the same grammatical role as the whole constituent
+45369,head_blight,a blight of the heads of cereals
+45370,head_cabbage,any of several varieties of cabbage having a large compact globular head; may be steamed or boiled or stir-fried or used raw in coleslaw
+45371,head_cabbage head_cabbage_plant Brassica_oleracea_capitata,any of various cultivated cabbage plants having a short thick stalk and large compact head of edible usually green leaves
+45372,head_cold,a common cold affecting the nasal passages and resulting in congestion and sneezing and headache
+45373,head_count headcount,number of people in a particular group
+45374,head_covering veil,a garment that covers the head and face
+45375,head_crash,(computer science) a crash of a read/write head in a hard disk drive (usually caused by contact of the head with the surface of the magnetic disk)
+45376,head_gasket,a gasket to seal a cylinder head
+45377,head_gate,a gate upstream from a lock or canal that is used to control the flow of water at the upper end
+45378,head_lettuce Lactuca_sativa_capitata,distinguished by leaves arranged in a dense rosette that develop into a compact ball
+45379,head_linesman,a football official in charge of recording yardage gained or lost
+45380,head_louse Pediculus_capitis,infests the head and body of humans
+45381,head_nurse,the person in charge of nursing in a medical institution
+45382,head_of_household,the head of a household or family or tribe
+45383,head_of_state chief_of_state,the chief public representative of a country who may also be the head of government
+45384,head_register head_voice head_tone,the higher ranges of the voice in speaking or singing; the vibrations of sung notes are felt in the head
+45385,head_sea,a sea in which the waves are running directly against the course of the ship
+45386,head_shop,a shop specializing in articles of interest to drug users; "he bought some roach clips and hashish pipes at the head shop"
+45387,head_smut Sphacelotheca_reiliana,smut fungus attacking heads of corn or sorghum and causing a covered smut
+45388,headache head_ache cephalalgia,pain in the head caused by dilation of cerebral arteries or muscle contractions or a reaction to drugs
+45389,headband,a band worn around or over the head; "the earphones were held in place by a headband"
+45390,headboard,a vertical board or panel forming the head of a bedstead
+45391,headcheese,sausage or jellied loaf made of chopped parts of the head meat and sometimes feet and tongue of a calf or pig
+45392,headdress headgear,clothing for the head
+45393,header,a framing member crossing and supporting the ends of joists, studs, or rafters so as to transfer their weight to parallel joists, studs, or rafters
+45394,header,a machine that cuts the heads off grain and moves them into a wagon
+45395,header,(soccer) the act of hitting the ball with your head
+45396,header,a headlong jump (or fall); "he took a header into the shrubbery"
+45397,header coping cope,brick that is laid sideways at the top of a wall
+45398,header lintel,horizontal beam used as a finishing piece over a door or window
+45399,headfast,a mooring line that secures the bow of a boat or ship to a wharf
+45400,headful,the quantity of information that a head will hold; "he has a headful of baseball statistics"
+45401,headful,a covering over the surface of your head; "a headful of tight curls"; "a headful of lice"
+45402,headgear,the hoist at the pithead of a mine
+45403,headgear,stable gear consisting of any part of a harness that fits about the horse's head
+45404,headhunter,a recruiter of personnel (especially for corporations)
+45405,headhunter head-shrinker,a savage who cuts off and preserves the heads of enemies as trophies
+45406,heading header head,a line of text serving to indicate what the passage below it is about; "the heading seemed to have little to do with the text"
+45407,headlight headlamp,a powerful light with reflector; attached to the front of an automobile or locomotive
+45408,headline newspaper_headline,the heading or caption of a newspaper article
+45409,headliner star,a performer who receives prominent billing
+45410,headlinese,using the abbreviated style of headline writers
+45411,headlock,a wrestling hold in which the opponent's head is locked between the crook of your elbow and the side of your body
+45412,headman tribal_chief chieftain chief,the head of a tribe or clan
+45413,headmaster schoolmaster master,presiding officer of a school
+45414,headmastership,the position of headmaster
+45415,headmistress,a woman headmaster
+45416,headmistressship,the position of headmistress
+45417,headpiece,a protective helmet for the head
+45418,headpin kingpin,the front bowling pin in the triangular arrangement of ten pins
+45419,headquarters,(plural) a military unit consisting of a commander and the headquarters staff
+45420,headquarters HQ military_headquarters,the military installation from which a commander performs the functions of command; "the general's headquarters were a couple of large tents"
+45421,headquarters central_office main_office home_office home_base,(usually plural) the office that serves as the administrative center of an enterprise; "many companies have their headquarters in New York"
+45422,headquarters_staff,military staff stationed at headquarters
+45423,headrace,a waterway that feeds water to a mill or water wheel or turbine
+45424,headrest,a rest for the head
+45425,headrest head_restraint,a cushion attached to the top of the back of an automobile's seat to prevent whiplash
+45426,headroom dynamic_headroom,the capacity of a system to reproduce loud sounds without distortion
+45427,headroom headway clearance,vertical space available to allow easy passage under something
+45428,heads-up,a warning message; "he sent a heads-up to the District Attorney"
+45429,headsail,any sail set forward of the foremast of a vessel
+45430,headscarf,a kerchief worn over the head and tied under the chin
+45431,headset,receiver consisting of a pair of headphones
+45432,headshake headshaking,the act of turning your head left and right to signify denial or disbelief or bemusement; "I could tell from their headshakes that they didn't believe me"
+45433,headship,the position of headmaster or headmistress
+45434,headship,the position of head
+45435,headshot,a photograph of a person's head
+45436,headshot,an attempt to put the soccer ball into the net by using the head
+45437,headshot,a shot aimed at a person's head
+45438,headsman headman,an executioner who beheads the condemned person
+45439,headspace,the volume left at the top of a filled container (bottle or jar or tin) before sealing
+45440,headstall headpiece,the band that is the part of a bridle that fits around a horse's head
+45441,headstand,an acrobatic feat in which a person balances on the head (usually with the help of the hands)
+45442,headstock,the stationary support in a machine or power tool that supports and drives a revolving part (as a chuck or the spindle on a lathe)
+45443,headstream,a stream that forms the source of a river
+45444,headwater,the source of a river; "the headwaters of the Nile"
+45445,headway head,forward movement; "the ship made little headway against the gale"
+45446,headwind,wind blowing opposite to the path of a ship or aircraft
+45447,headword,a word placed at the beginning of a line or paragraph (as in a dictionary entry)
+45448,headword head_word,a content word that can be qualified by a modifier
+45449,healing,the natural process by which the body repairs itself
+45450,health,the general condition of body and mind; "his delicate health"; "in poor health"
+45451,health wellness,a healthy state of wellbeing free from disease; "physicians should be held responsible for the health of their patients"
+45452,health_care,social insurance for the ill and injured
+45453,health_food,any natural or prepared food popularly believed to promote good health
+45454,health_hazard,hazard to the health of those exposed to it
+45455,health_insurance,insurance against loss due to ill health
+45456,health_maintenance_organization HMO,group insurance that entitles members to services of participating hospitals and clinics and physicians
+45457,health_profession,the body of individuals whose work helps to maintain the health of their clients
+45458,health_professional primary_care_provider PCP health_care_provider caregiver,a person who helps in identifying or preventing or treating illness or disability
+45459,health_spa spa health_club,a place of business with equipment and facilities for exercising and improving physical fitness
+45460,healthcare health_care,the preservation of mental and physical health by preventing or treating illness through services offered by the health profession
+45461,healthcare_delivery health_care_delivery care_delivery,the provision of health care
+45462,healthfulness,the quality of promoting good health
+45463,hearer listener auditor attender,someone who listens attentively
+45464,hearing,a session (of a committee or grand jury) in which witnesses are called and testimony is taken; "the investigative committee will hold hearings in Chicago"
+45465,hearing,(law) a proceeding (usually by a court) where evidence is taken for the purpose of determining an issue of fact and reaching a decision based on that evidence
+45466,hearing audience,an opportunity to state your case and be heard; "they condemned him without a hearing"; "he saw that he had lost his audience"
+45467,hearing audition auditory_sense sense_of_hearing auditory_modality,the ability to hear; the auditory faculty; "his hearing was impaired"
+45468,hearing_aid deaf-aid,an electronic device that amplifies sound and is worn to compensate for poor hearing
+45469,hearing_aid ear_trumpet,a conical acoustic device formerly used to direct sound to the ear of a hearing-impaired person
+45470,hearing_dog,dog trained to assist the deaf by signaling the occurrence of certain sounds
+45471,hearing_examiner hearing_officer,an official appointed by a government agency to conduct an investigation or administrative hearing so that the agency can exercise its statutory powers
+45472,hearing_impairment hearing_disorder,impairment of the sense of hearing
+45473,hearsay_evidence,evidence based on what someone has told the witness and not of direct knowledge
+45474,hearsay_rule,a rule that declares not admissible as evidence any statement other than that by a witness
+45475,hearse,a vehicle for carrying a coffin to a church or a cemetery; formerly drawn by horses but now usually a motor vehicle
+45476,heart,a plane figure with rounded sides curving inward at the top and intersecting at the bottom; conventionally used on playing cards and valentines; "he drew a heart and called it a valentine"
+45477,heart,a firm rather dry variety meat (usually beef or veal); "a five-pound beef heart will serve six"
+45478,heart,a playing card in the major suit that has one or more red hearts on it; "he led the queen of hearts"; "hearts were trumps"
+45479,heart bosom,the locus of feelings and intuitions; "in your heart you know it is true"; "her story would melt your bosom"
+45480,heart mettle nerve spunk,the courage to carry on; "he kept fighting on pure spunk"; "you haven't got the heart for baseball"
+45481,heart pump ticker,the hollow muscular organ located behind the sternum and between the lungs; its rhythmic contractions move the blood through the body; "he stood still, his heart thumping wildly"
+45482,heart spirit,an inclination or tendency of a certain kind; "he had a change of heart"
+45483,heart-leaved_aster Aster_cordifolius,perennial wood aster of eastern North America
+45484,heart-lung_machine,a pump to maintain circulation during heart surgery; diverts blood from the heart and oxygenates it and then pumps it through the body
+45485,heart-to-heart,an intimate talk in private; "he took me aside for a little heart-to-heart"
+45486,heart_attack,a sudden severe instance of abnormal heart function
+45487,heart_block Adams-Stokes_syndrome Stokes-Adams_syndrome atrioventricular_block,recurrent sudden attacks of unconsciousness caused by impaired conduction of the impulse that regulates the heartbeat
+45488,heart_cherry oxheart oxheart_cherry,any of several cultivated sweet cherries having sweet juicy heart-shaped fruits
+45489,heart_cherry oxheart oxheart_cherry,large heart-shaped sweet cherry with soft flesh
+45490,heart_disease cardiopathy,a disease of the heart
+45491,heart_failure coronary_failure,inability of the heart to pump enough blood to sustain normal bodily functions
+45492,heart_murmur cardiac_murmur murmur,an abnormal sound of the heart; sometimes a sign of abnormal function of the heart valves
+45493,heart_surgery,any surgical procedure involving the heart
+45494,heart_urchin,sea urchin having a heart-shaped body in a rigid spiny shell
+45495,heart_valve,an implant that replaces a natural cardiac valve
+45496,heart_valve cardiac_valve,a valve to control one-way flow of blood
+45497,heartbeat,an animating or vital unifying force; "New York is the commercial heartbeat of America"
+45498,heartbreaker,a charming person who is irresponsible in emotional relationships
+45499,heartbreaker,a narrow defeat or a defeat at the last minute
+45500,heartburn pyrosis,a painful burning sensation in the chest caused by gastroesophageal reflux (backflow from the stomach irritating the esophagus); symptomatic of an ulcer or a diaphragmatic hernia or other disorder
+45501,heartburning,intense resentment; "his promotion caused much heartburning among his rivals"
+45502,hearth fireside,an area near a fireplace (usually paved and extending out into a room); "they sat on the hearth and warmed themselves before the fire"
+45503,hearth fireside,home symbolized as a part of the fireplace; "driven from hearth and home"; "fighting in defense of their firesides"
+45504,hearth_money Peter's_pence,an annual contribution made by Roman Catholics to support the papal see
+45505,hearthrug,a rug spread out in front of a fireplace
+45506,hearthstone,a stone that forms a hearth
+45507,heartiness wholeheartedness,the quality of hearty sincerity
+45508,heartland,the central region of a country or continent; especially a region that is important to a country or to a culture
+45509,heartleaf heart-leaf Asarum_shuttleworthii,wild ginger having persistent heart-shaped pungent leaves; West Virginia to Alabama
+45510,heartleaf heart-leaf Asarum_virginicum,evergreen low-growing perennial having mottled green and silvery-grey heart-shaped pungent leaves; Virginia to South Carolina
+45511,heartleaf_arnica Arnica_cordifolia,wildflower with heart-shaped leaves and broad yellow flower heads; of alpine areas west of the Rockies from Alaska to southern California
+45512,heartleaf_manzanita Arctostaphylos_andersonii,erect California shrub having leaves with heart-shaped lobes at the base
+45513,heartlessness coldheartedness hardheartedness,an absence of concern for the welfare of others
+45514,heartrot,any plant disease in which the central part of a plant rots (especially in trees)
+45515,hearts Black_Maria,a form of whist in which players avoid winning tricks containing hearts or the queen of spades
+45516,heartseed Cardiospermum_grandiflorum,herbaceous vine of tropical America and Africa
+45517,heartstrings,your deepest feelings of love and compassion; "many adoption cases tug at the heartstrings"
+45518,heartthrob,an object of infatuation
+45519,heartwood duramen,the older inactive central wood of a tree or woody plant; usually darker and denser than the surrounding sapwood
+45520,heat,a preliminary race in which the winner advances to a more important race
+45521,heat heat_energy,a form of energy that is transferred by a difference in temperature
+45522,heat warmth,the sensation caused by heat energy
+45523,heat warmth passion,the trait of being intensely emotional
+45524,heat-seeking_missile,a missile with a guidance system that directs it toward targets emitting infrared radiation (as the emissions of a jet engine)
+45525,heat_content total_heat enthalpy H,(thermodynamics) a thermodynamic quantity equal to the internal energy of a system plus the product of its volume and pressure; "enthalpy is the amount of energy in a system capable of doing mechanical work"
+45526,heat_dissipation,dissipation of heat
+45527,heat_engine,any engine that makes use of heat to do work
+45528,heat_exchanger,device that transfers heat from one liquid to another without allowing them to mix
+45529,heat_exhaustion heat_prostration,a condition marked by dizziness and nausea and weakness caused by depletion of body fluids and electrolytes
+45530,heat_flash,a flash of intense heat (as released by an atomic explosion)
+45531,heat_lamp infrared_lamp,electric heater consisting of a high-power incandescent lamp that emits infrared radiation; "the bathroom could be warmed by an infrared lamp"
+45532,heat_lightning,bright flashes of light near the horizon without thunder (especially on hot evenings); usually attributed to distant lightning that is reflected by clouds
+45533,heat_of_condensation,heat liberated by a unit mass of gas at its boiling point as it condenses into a liquid; "the heat of condensation is equal to the heat of vaporization"
+45534,heat_of_dissociation,the heat required for a fluid substance to break up into simpler constituents
+45535,heat_of_formation,the heat evolved or absorbed during the formation of one mole of a substance from its component elements
+45536,heat_of_fusion,heat absorbed by a unit mass of a solid at its melting point in order to convert the solid into a liquid at the same temperature; "the heat of fusion is equal to the heat of solidification"
+45537,heat_of_solidification,heat liberated by a unit mass of liquid at its freezing point when it solidifies
+45538,heat_of_solution,the heat evolved or absorbed when one mole of a substance is dissolved in a large volume of a solvent
+45539,heat_of_sublimation,heat absorbed by a unit mass of material when it changes from a solid to a gaseous state
+45540,heat_of_vaporization heat_of_vaporisation,heat absorbed by a unit mass of a material at its boiling point in order to convert the material into a gas at the same temperature
+45541,heat_pump,apparatus that extracts heat from a liquid that is at a higher temperature than its surroundings; can be used to transfer heat from a reservoir outside in order to heat a building
+45542,heat_ray,a ray that produces a thermal effect
+45543,heat_shield,a protective covering that protects a spacecraft from overheating on reentry
+45544,heat_sink,a metal conductor specially designed to conduct (and radiate) heat
+45545,heat_wave,a wave of unusually hot weather
+45546,heater warmer,device that heats water or supplies warmth to a room
+45547,heath,a low evergreen shrub of the family Ericaceae; has small bell-shaped pink or purple flowers
+45548,heath heathland,a tract of level wasteland; uncultivated land with sandy soil and scrubby vegetation
+45549,heath_aster Aster_arenosus,common North American perennial with heathlike foliage and small white flower heads
+45550,heath_aster Aster_ericoides,common much-branched North American perennial with heathlike foliage and small starry white flowers
+45551,heath_hen Tympanuchus_cupido_cupido,extinct prairie chicken
+45552,heath_pea earth-nut_pea earthnut_pea tuberous_vetch Lathyrus_tuberosus,European herb bearing small tubers used for food and in Scotland to flavor whiskey
+45553,heathen pagan gentile infidel,a person who does not acknowledge your god
+45554,heather ling Scots_heather broom Calluna_vulgaris,common Old World heath represented by many varieties; low evergreen grown widely in the northern hemisphere
+45555,heather_mixture heather,interwoven yarns of mixed colors producing muted greyish shades with flecks of color
+45556,heating warming,the process of becoming warmer; a rising temperature
+45557,heating_element,the component of a heater or range that transforms fuel or electricity into heat
+45558,heating_pad hot_pad,heater consisting of electrical heating elements contained in a flexible pad
+45559,heating_system heating_plant heating heat,utility to warm a building; "the heating system wasn't working"; "they have radiant heating"
+45560,heatstroke heat_hyperpyrexia,collapse caused by exposure to excessive heat
+45561,heaume,a large medieval helmet supported on the shoulders
+45562,heave,(geology) a horizontal dislocation
+45563,heave heaving,an upward movement (especially a rhythmical rising and falling); "the heaving of waves on a rough sea"
+45564,heave heaving,the act of lifting something with great effort
+45565,heave heaving,throwing something heavy (with great effort); "he gave it a mighty heave"; "he was not good at heaving passes"
+45566,heave retch,an involuntary spasm of ineffectual vomiting; "a bad case of the heaves"
+45567,heaver,a workman who heaves freight or bulk goods (especially at a dockyard)
+45568,heaver,a bar used as a lever (as in twisting rope)
+45569,heaves broken_wind,a chronic emphysema of the horse that causes difficult expiration and heaving of the flanks
+45570,heavier-than-air_craft,a non-buoyant aircraft that requires a source of power to hold it aloft and to propel it
+45571,heaviness,persisting sadness; "nothing lifted the heaviness of her heart after her loss"
+45572,heaviness weightiness,the property of being comparatively great in weight; "the heaviness of lead"
+45573,heavy,an actor who plays villainous roles
+45574,heavy,a serious (or tragic) role in a play
+45575,heavy_cream,contains more than 36% butterfat
+45576,heavy_hitter,an influential person who works hard to promote the causes they are interested in
+45577,heavy_lifting,difficult work; "the boss hoped the plan would succeed but he wasn't willing to do the heavy lifting"
+45578,heavy_metal,a metal of relatively high density (specific gravity greater than about 5) or of high relative atomic weight (especially one that is poisonous like mercury or lead)
+45579,heavy_metal heavy_metal_music,loud and harsh sounding rock music with a strong beat; lyrics usually involve violent or fantastic imagery
+45580,heavy_spar barite barytes barium_sulphate,a white or colorless mineral (BaSO4); the main source of barium
+45581,heavy_water deuterium_oxide,water containing a substantial proportion of deuterium atoms, used in nuclear reactors
+45582,heavyheartedness,a feeling of dispirited melancholy
+45583,heavyweight,an amateur boxer who weighs no more than 201 pounds
+45584,heavyweight,a wrestler who weighs more than 214 pounds
+45585,heavyweight,a professional boxer who weighs more than 190 pounds
+45586,hebephrenia hebephrenic_schizophrenia disorganized_schizophrenia disorganized_type_schizophrenia,a form of schizophrenia characterized by severe disintegration of personality including erratic speech and childish mannerisms and bizarre behavior; usually becomes evident during puberty; the most common diagnostic category in mental institutions
+45587,hebetude,mental lethargy or dullness
+45588,hecatomb,a great sacrifice; an ancient Greek or Roman sacrifice of 100 oxen
+45589,heckelphone basset_oboe,an oboe pitched an octave below the ordinary oboe
+45590,heckler badgerer,someone who tries to embarrass you with gibes and questions and objections
+45591,heckling barracking,shouting to interrupt a speech with which you disagree
+45592,hectare,(abbreviated `ha') a unit of surface area equal to 100 ares (or 10,000 square meters)
+45593,hectogram hg,100 grams
+45594,hectograph heliotype,duplicator consisting of a gelatin plate from which ink can be taken to make a copy
+45595,hectoliter hectolitre hl,a metric unit of volume or capacity equal to 100 liters
+45596,hectometer hectometre hm,a metric unit of length equal to 100 meters
+45597,hedge hedgerow,a fence formed by a row of closely planted shrubs or bushes
+45598,hedge hedging,any technique designed to reduce or eliminate financial risk; for example, taking two positions that will offset each other if prices change
+45599,hedge hedging,an intentionally noncommittal or ambiguous statement; "when you say `maybe' you are just hedging"
+45600,hedge_bindweed wild_morning-glory Calystegia_sepium Convolvulus_sepium,common Eurasian and American wild climber with pink flowers; sometimes placed in genus Convolvulus
+45601,hedge_fund hedgefund,a flexible investment company for a small number of large investors (usually the minimum investment is $1 million); can use high-risk techniques (not allowed for mutual funds) such as short-selling and heavy leveraging
+45602,hedge_maple field_maple Acer_campestre,shrubby Eurasian maple often used as a hedge
+45603,hedge_mustard Sisymbrium_officinale,stiffly branching Old World annual with pale yellow flowers; widely naturalized in North America; formerly used medicinally
+45604,hedge_nettle Stachys_palustris,perennial herb with an odorless rhizome widespread in moist places in northern hemisphere
+45605,hedge_nettle dead_nettle Stachys_sylvatica,foul-smelling perennial Eurasiatic herb with a green creeping rhizome
+45606,hedge_sparrow sparrow dunnock Prunella_modularis,small brownish European songbird
+45607,hedge_thorn natal_plum Carissa_bispinosa,South African shrub having forked spines and plumlike fruit; frequently used as hedging
+45608,hedge_trimmer,a garden tool for trimming hedges
+45609,hedge_violet wood_violet Viola_sylvatica Viola_reichenbachiana,common European violet that grows in woods and hedgerows
+45610,hedgehog Erinaceus_europaeus Erinaceus_europeaeus,small nocturnal Old World mammal covered with both hair and protective spines
+45611,hedgehog_cactus,cactus of the genus Echinocactus having stout sharp spines
+45612,hedgehog_cereus,cactus of the genus Echinocereus
+45613,hedger,someone who counterbalances one transaction (as a bet) against another in order to protect against loss
+45614,hedger,a gardener who takes care of and trims hedges
+45615,hedger equivocator tergiversator,a respondent who avoids giving a clear direct answer
+45616,hedonism,the pursuit of pleasure as a matter of ethical principle
+45617,hedonism,an ethical system that evaluates the pursuit of pleasure as the highest good
+45618,hedonist pagan pleasure_seeker,someone motivated by desires for sensual pleasures
+45619,hee-haw horselaugh ha-ha haw-haw,a loud laugh that sounds like a horse neighing
+45620,heedlessness mindlessness rashness,the trait of acting rashly and without prudence
+45621,heel,one of the crusty ends of a loaf of bread
+45622,heel,the back part of the human foot
+45623,heel,the lower end of a ship's mast
+45624,heel,(golf) the part of the clubhead where it joins the shaft
+45625,heel,the bottom of a shoe or boot; the back part of a shoe or boot that touches the ground and provides elevation
+45626,heelbone calcaneus os_tarsi_fibulare,the largest tarsal bone; forms the human heel
+45627,heft heftiness massiveness ponderousness ponderosity,the property of being large in mass
+45628,hegari,Sudanese sorghums having white seeds; one variety grown in southwestern United States
+45629,hegemon,a leading or paramount power
+45630,hegemony,the dominance or leadership of one social group or nation over others; "the hegemony of a single member state is not incompatible with a genuine confederation"; "to say they have priority is not to say they have complete hegemony"; "the consolidation of the United States' hegemony over a new international economic system"
+45631,heifer,young cow
+45632,height tallness,the vertical dimension of extension; distance from the base of something to the top
+45633,heir inheritor heritor,a person who is entitled by law or by the terms of a will to inherit the estate of another
+45634,heir-at-law,the person legally entitled to inherit the property of someone who dies intestate
+45635,heir_apparent,an heir whose right to an inheritance cannot be defeated if that person outlives the ancestor
+45636,heir_presumptive,a person who expects to inherit but whose right can be defeated by the birth of a nearer relative
+45637,heiress inheritress inheritrix,a female heir
+45638,heirloom,(law) any property that is considered by law or custom as inseparable from an inheritance is inherited with that inheritance
+45639,heirloom,something that has been in a family for generations
+45640,heist rip-off,the act of stealing
+45641,helianthemum sunrose sun_rose,any plant of the genus Helianthemum; vigorous plants of stony alpine meadows and dry scrub regions
+45642,helicon bombardon,a tuba that coils over the shoulder of the musician
+45643,helicopter chopper whirlybird eggbeater,an aircraft without wings that obtains its lift from the rotation of overhead blades
+45644,heliocentric_parallax annual_parallax,the parallax of a celestial body using two points in the earth's orbit around the sun as the baseline
+45645,heliogram,a message transmitted by means of the sun's rays
+45646,heliograph,an apparatus for sending telegraphic messages by using a mirror to turn the sun's rays off and on
+45647,heliolatry sun-worship,the worship of the sun
+45648,heliometer,an instrument used to measure the angular separation of two stars that are too far apart to be included in the field of view of an ordinary telescope
+45649,heliopause,the boundary marking the edge of the sun's influence; the boundary (roughly 100 AU from the sun) between the interplanetary medium and the interstellar medium; where the solar wind from the sun and the radiation from other stars meet
+45650,heliophila,any of various South African herbs and subshrubs cultivated for long showy racemes of bright blue flowers with white eyes
+45651,heliopsis oxeye,any North American shrubby perennial herb of the genus Heliopsis having large yellow daisylike flowers
+45652,heliosphere,the region inside the heliopause containing the sun and solar system
+45653,heliotherapy insolation,therapeutic exposure to sunlight
+45654,heliothis_moth Heliothis_zia,medium-sized moth whose larvae are corn earworms
+45655,heliotropism,an orienting response to the sun
+45656,heliozoan,protozoa with spherical bodies and stiff radiating pseudopods
+45657,heliport,an airport for helicopters
+45658,helium He atomic_number_2,a very light colorless element that is one of the six inert gasses; the most difficult gas to liquefy; occurs in economically extractable amounts in certain natural gases (as those found in Texas and Kansas)
+45659,helium_group,the series of inert gases
+45660,helix spiral,a curve that lies on the surface of a cylinder or cone and cuts the element at a constant angle
+45661,helix_angle,the constant angle at which a helix cuts the elements of a cylinder or cone
+45662,hell blaze,a cause of difficulty and suffering; "war is hell"; "go to blazes"
+45663,hell blaze,noisy and unrestrained mischief; "raising blazes"
+45664,hell hell_on_earth hellhole snake_pit the_pits inferno,any place of pain and turmoil; "the hell of battle"; "the inferno of the engine room"; "when you're alone Christmas is the pits"
+45665,hell-kite hell-rooster gamecock,someone who is a very fierce fighter
+45666,hell_to_pay,dire consequences; "when the pig ran away there was hell to pay"
+45667,hellbender mud_puppy Cryptobranchus_alleganiensis,large salamander of North American rivers and streams
+45668,hellebore,any plant of the Eurasian genus Helleborus
+45669,hellebore false_hellebore,perennial herbs of the lily family having thick toxic rhizomes
+45670,helleborine,any of various orchids of the genus Epipactis
+45671,helleborine,any of several orchids of the genus Cephalanthera
+45672,hellfire red_region,a place of eternal fire envisaged as punishment for the damned
+45673,hellgrammiate dobson,large brown aquatic larva of the dobsonfly; used as fishing bait
+45674,hellhound,a very evil man
+45675,hellion heller devil,a rowdy or mischievous person (usually a young man); "he chased the young hellions out of his yard"
+45676,hello hullo hi howdy how-do-you-do,an expression of greeting; "every morning they exchanged polite hellos"
+45677,helm,steering mechanism for a vessel; a mechanical device by which a vessel is steered
+45678,helm,(figurative) a position of leadership; "the President is at the helm of the Ship of State"
+45679,helmet,armor plate that protects the head
+45680,helmet,a protective headgear made of hard material to resist blows
+45681,helmet_orchid greenhood,any of numerous orchids of the genus Pterostylis having leaves in a basal rosette and green flowers often striped purple or brown or red with the dorsal sepal incurved to form a hood
+45682,helmetflower helmet_orchid,any of several orchids of the genus Coryanthes having racemes of a few musky-scented waxy flowers with a helmet-shaped lip process
+45683,helminth parasitic_worm,worm that is parasitic on the intestines of vertebrates especially roundworms and tapeworms and flukes
+45684,helminthiasis,infestation of the body with parasitic worms
+45685,helmsman steersman steerer,the person who steers a ship
+45686,help_desk helpdesk,a service that provides information and assistance to the users of a computer network
+45687,helper_T_cell helper_cell CD4_T_cell CD4_cell,T cell with CD4 receptor that recognizes antigens on the surface of a virus-infected cell and secretes lymphokines that stimulate B cells and killer T cells; helper T cells are infected and killed by the AIDS virus
+45688,helpfulness,the property of providing useful assistance
+45689,helping portion serving,an individual quantity of food or drink taken as part of a meal; "the helpings were all small"; "his portion was larger than hers"; "there's enough for two servings each"
+45690,helplessness,the state of needing help from something
+45691,helplessness,a feeling of being unable to manage
+45692,helplessness weakness impuissance,powerlessness revealed by an inability to act; "in spite of their weakness the group remains active"
+45693,helpmate helpmeet,a helpful partner
+45694,helvella,any fungus of the genus Helvella having the ascocarps stalked or pleated or often in folds
+45695,hem,the edge of a piece of cloth; especially the finished edge that has been doubled under and stitched down; "the hem of her dress was stained"; "let down the hem"; "he stitched weights into the curtain's hem"; "it seeped along the hem of his jacket"
+45696,hem ahem,the utterance of a sound similar to clearing the throat; intended to get attention, express hesitancy, fill a pause, hide embarrassment, warn a friend, etc.
+45697,hemagglutination haemagglutination,agglutination of red blood cells
+45698,hemal_arch haemal_arch,a structure arising ventrally from a vertebral centrum and enclosing the caudal blood vessels
+45699,hemangioma haemangioma,benign angioma consisting of a mass of blood vessels; some appear as birthmarks
+45700,hematemesis haematemesis,vomiting blood
+45701,hematinic haematinic,a medicine that increases the hemoglobin content of the blood; used to treat iron-deficiency anemia
+45702,hematite haematite,the principal form of iron ore; consists of ferric oxide in crystalline form; occurs in a red earthy form
+45703,hematocele haematocele hematocoele haematocoele,swelling caused by blood collecting in a body cavity (especially a swelling of the membrane covering the testis)
+45704,hematochezia haematochezia,passage of stools containing blood (as from diverticulosis or colon cancer or peptic ulcer)
+45705,hematochrome,a reddish coloring material found in some algae
+45706,hematocolpometra haematocolpometra,accumulation of blood in the vagina and uterus
+45707,hematocolpos haematocolpos,accumulation of menstrual blood in the vagina (usually due to an imperforate hymen)
+45708,hematocrit haematocrit,a measuring instrument to determine (usually by centrifugation) the relative amounts of corpuscles and plasma in the blood
+45709,hematocrit haematocrit packed_cell_volume,the ratio of the volume occupied by packed red blood cells to the volume of the whole blood as measured by a hematocrit
+45710,hematocytopenia haematocytopenia,an abnormally low number of red blood cells in the blood
+45711,hematocyturia haematocyturia,the presence of red blood cells in the urine
+45712,hematologist haematologist,a doctor who specializes in diseases of the blood and blood-forming organs
+45713,hematology haematology,the branch of medicine that deals with diseases of the blood and blood-forming organs
+45714,hematoma haematoma,a localized swelling filled with blood
+45715,hematopoeitic_stem_cell,blood forming stem cells in the bone marrow; T cells and B cells arise from these stem cells
+45716,hematopoiesis haematopoiesis hemopoiesis haemopoiesis hemogenesis haemogenesis hematogenesis haematogenesis sanguification,the formation of blood cells in the living body (especially in the bone marrow)
+45717,hematuria haematuria,the presence of blood in the urine; often a symptom of urinary tract disease
+45718,heme haem hematin haemitin protoheme,a complex red organic pigment containing iron and other atoms to which oxygen binds
+45719,hemeralopia day_blindness,inability to see clearly in bright light
+45720,hemiacetal,an organic compound usually formed as an intermediate product in the preparation of acetals from aldehydes or ketones
+45721,hemianopia hemianopsia,blindness in one half of the visual field of one or both eyes
+45722,hemianopic_scotoma,a scotoma involving half of the visual field
+45723,hemiepiphyte semiepiphyte,a plant that is an epiphyte for part of its life
+45724,hemimetamorphosis hemimetabolism hemimetaboly,incomplete or partial metamorphosis in insects
+45725,hemimorphite calamine,a white mineral; a common ore of zinc
+45726,hemin protohemin,a reddish-brown chloride of heme; produced from hemoglobin in laboratory tests for the presence of blood
+45727,hemiparasite semiparasite,a parasitic plant that contains some chlorophyll and therefore is capable of photosynthesis
+45728,hemiplegia unilateral_paralysis,paralysis of one side of the body
+45729,hemiplegic,a person who has hemiplegia (is paralyzed on one side of the body)
+45730,hemipterous_insect bug hemipteran hemipteron,insects with sucking mouthparts and forewings thickened and leathery at the base; usually show incomplete metamorphosis
+45731,hemisphere,half of a sphere
+45732,hemisphere,half of the terrestrial globe
+45733,hemisphere cerebral_hemisphere,either half of the cerebrum
+45734,hemizygos_vein hemizygous_vein vena_hemizygos,a continuation of the left ascending lumbar vein; crosses the midline at the 8th vertebra and empties into the azygos vein
+45735,hemline,the line formed by the lower edge of a skirt or coat
+45736,hemlock,poisonous drug derived from an Eurasian plant of the genus Conium; "Socrates refused to flee and died by drinking hemlock"
+45737,hemlock,soft coarse splintery wood of a hemlock tree especially the western hemlock
+45738,hemlock hemlock_tree,an evergreen tree
+45739,hemlock poison_hemlock poison_parsley California_fern Nebraska_fern winter_fern Conium_maculatum,large branching biennial herb native to Eurasia and Africa and adventive in North America having large fernlike leaves and white flowers; usually found in damp habitats; all parts extremely poisonous
+45740,hemming-stitch,a stitch used in sewing hems on skirts and dresses
+45741,hemochromatosis iron-storage_disease iron_overload bronzed_diabetes,pathology in which iron accumulates in the tissues; characterized by bronzed skin and enlarged liver and diabetes mellitus and abnormalities of the pancreas and the joints
+45742,hemodialysis haemodialysis,dialysis of the blood to remove toxic substances or metabolic wastes from the bloodstream; used in the case of kidney failure
+45743,hemodynamics,the branch of physiology that studies the circulation of the blood and the forces involved
+45744,hemoglobin haemoglobin Hb,a hemoprotein composed of globin and heme that gives red blood cells their characteristic color; function primarily to transport oxygen from the lungs to the body tissues; "fish have simpler hemoglobin than mammals"
+45745,hemoglobinemia haemoglobinemia,presence of excessive hemoglobin in the blood plasma
+45746,hemoglobinopathy haemoglobinopathy,a blood disease characterized by the presence of abnormal hemoglobins in the blood
+45747,hemoglobinuria haemoglobinuria,presence of hemoglobin in the urine
+45748,hemolysin haemolysin erythrolysin erythrocytolysin,any substance that can cause lysis (destruction) of erythrocytes (red blood cells) and the release of their hemoglobin
+45749,hemolysis haemolysis hematolysis haematolysis,lysis of erythrocytes with the release of hemoglobin
+45750,hemolytic_anemia haemolytic_anaemia,anemia resulting from destruction of erythrocytes
+45751,hemophilia haemophilia bleeder's_disease,congenital tendency to uncontrolled bleeding; usually affects males and is transmitted from mother to son
+45752,hemophilia_A haemophilia_A classical_hemophilia classical_haemophilia,hemophilia caused by a congenital deficiency of factor VIII; occurs almost exclusively in men
+45753,hemophilia_B haemophilia_B Christmas_disease,a clotting disorder similar to hemophilia A but caused by a congenital deficiency of factor IX
+45754,hemophiliac haemophiliac bleeder hemophile haemophile,someone who has hemophilia and is subject to uncontrollable bleeding
+45755,hemoprotein haemoprotein,a conjugated protein linked to a compound of iron and porphyrin
+45756,hemoptysis haemoptysis,coughing up blood from the respiratory tract; usually indicates a severe infection of the bronchi or lungs
+45757,hemorrhagic_cyst blood_cyst hematocyst,a cyst containing blood
+45758,hemorrhagic_fever haemorrhagic_fever viral_hemorrhagic_fever viral_haemorrhagic_fever VHF,a group of illnesses caused by a viral infection (usually restricted to a specific geographic area); fever and gastrointestinal symptoms are followed by capillary hemorrhage
+45759,hemorrhagic_septicemia pasteurellosis,an acute infectious disease characterized by pneumonia and blood infection
+45760,hemorrhagic_stroke haemorrhagic_stroke,stroke caused by the rupture of a blood vessel in the brain
+45761,hemorrhoid haemorrhoid piles,venous swelling external or internal to the anal sphincter
+45762,hemorrhoidal_vein rectal_vein vena_rectalis,any of several veins draining the walls of the anal canal and rectum
+45763,hemorrhoidectomy haemorrhoidectomy,surgical procedure for tying hemorrhoids and excising them
+45764,hemosiderin haemosiderin,a granular brown substance composed of ferric oxide; left from the breakdown of hemoglobin; can be a sign of disturbed iron metabolism
+45765,hemosiderosis haemosiderosis,abnormal deposit of hemosiderin; often a symptom of thalassemia or hemochromatosis
+45766,hemostasis haemostasis hemostasia haemostasia,surgical procedure of stopping the flow of blood (as with a hemostat)
+45767,hemostat haemostat,a surgical instrument that stops bleeding by clamping the blood vessel
+45768,hemothorax haemothorax,accumulation of blood in the pleural cavity (the space between the lungs and the walls of the chest)
+45769,hemp,a plant fiber
+45770,hemp_agrimony Eupatorium_cannabinum,coarse European herb with palmately divided leaves and clusters of small reddish-purple flower heads
+45771,hemp_nettle dead_nettle Galeopsis_tetrahit,coarse bristly Eurasian plant with white or reddish flowers and foliage resembling that of a nettle; common as a weed in United States
+45772,hemstitch,embroidery similar to drawnwork
+45773,hemstitch hemstitching,a stitch in which parallel threads are drawn and exposed threads are caught together in groups
+45774,hen,flesh of an older chicken suitable for stewing
+45775,hen,adult female bird
+45776,hen,female of certain aquatic animals e.g. octopus or lobster
+45777,hen biddy,adult female chicken
+45778,hen-of-the-woods hen_of_the_woods Polyporus_frondosus Grifola_frondosa,large greyish-brown edible fungus forming a mass of overlapping caps that somewhat resembles a hen at the base of trees
+45779,hen_party,a party for women only
+45780,henbane black_henbane stinking_nightshade Hyoscyamus_niger,poisonous fetid Old World herb having sticky hairy leaves and yellow-brown flowers; yields hyoscyamine and scopolamine
+45781,henbit Lamium_amplexicaule,Eurasian plant having toothed leaves and small two-lipped white or purplish-red flowers
+45782,hendiadys,use of two conjoined nouns instead of a noun and modifier
+45783,henna,a reddish brown dye used especially on hair
+45784,henroost,a roost for hens at night
+45785,henry H,a unit of inductance in which an induced electromotive force of one volt is produced when the current is varied at the rate of one ampere per second
+45786,hepadnavirus,a group of animal DNA viruses including viruses of ducks and woodchucks and squirrels and others as well as the virus causing hepatitis B in humans
+45787,heparin Lipo-Hepin Liquaemin,a polysaccharide produced in basophils (especially in the lung and liver) and that inhibits the activity of thrombin in coagulation of the blood; it (trade names Lipo-Hepin and Liquaemin) is used as an anticoagulant in the treatment of thrombosis and in heart surgery
+45788,hepatic_artery arteria_hepatica,arteries that supply the liver
+45789,hepatic_coma,coma that can occur in severe cases of liver disease
+45790,hepatic_duct,the duct that drains bile from the liver
+45791,hepatic_lobe,any of the five lobes forming the liver
+45792,hepatic_tanager Piranga_flava_hepatica,common tanager of southwestern United States and Mexico
+45793,hepatic_vein vena_hepatica,a vein that drains the liver; empties into the vena cava
+45794,hepatica Marchantia_polymorpha,a common liverwort
+45795,hepatica liverleaf,any of several plants of the genus Hepatica having three-lobed leaves and white or pinkish flowers in early spring; of moist and mossy subalpine woodland areas of north temperate regions
+45796,hepatitis,inflammation of the liver caused by a virus or a toxin
+45797,hepatitis_A infectious_hepatitis,an acute but benign form of viral hepatitis caused by an RNA virus that does not persist in the blood serum and is usually transmitted by ingesting food or drink that is contaminated with fecal matter
+45798,hepatitis_A_virus,the virus causing hepatitis A
+45799,hepatitis_B serum_hepatitis,an acute (sometimes fatal) form of viral hepatitis caused by a DNA virus that tends to persist in the blood serum and is transmitted by sexual contact or by transfusion or by ingestion of contaminated blood or other bodily fluids
+45800,hepatitis_C,a viral hepatitis clinically indistinguishable from hepatitis B but caused by a single-stranded RNA virus; usually transmitted by parenteral means (as injection of an illicit drug or blood transfusion or exposure to blood or blood products)
+45801,hepatitis_delta delta_hepatitis,a severe form of hepatitis
+45802,hepatojugular_reflux,a venous reflux occurring in congestive heart failure
+45803,hepatolenticular_degeneration Wilson's_disease,a rare inherited disorder of copper metabolism; copper accumulates in the liver and then in the red blood cells and brain
+45804,hepatoma malignant_hepatoma hepatocarcinoma hepatocellular_carcinoma,carcinoma of the liver
+45805,hepatomegaly megalohepatia,abnormal enlargement of the liver
+45806,hepatotoxin,any toxin that affects the liver
+45807,heptagon,a seven-sided polygon
+45808,heptane,a colorless volatile highly flammable liquid obtained from petroleum and used as an anesthetic or a solvent or in determining octane ratings
+45809,herald trumpeter,(formal) a person who announces important news; "the chieftain had a herald who announced his arrival with a trumpet"
+45810,heraldry,the study and classification of armorial bearings and the tracing of genealogies
+45811,heraldry,emblem indicating the right of a person to bear arms
+45812,herb,aromatic potherb used in cookery for its savory qualities
+45813,herb herbaceous_plant,a plant lacking a permanent woody stem; many are flowering garden plants or potherbs; some having medicinal properties; some are pests
+45814,herb_Paris Paris_quadrifolia,European herb with yellow-green flowers resembling and closely related to the trilliums; reputed to be poisonous
+45815,herb_bennet cloveroot clover-root wood_avens Geum_urbanum,hairy Eurasian plant with small yellow flowers and an astringent root formerly used medicinally
+45816,herb_garden,a garden for growing herbs
+45817,herb_mercury herbs_mercury boys-and-girls Mercurialis_annua,Eurafrican annual naturalized in America as a weed; formerly dried for use as a purgative, diuretic or antisyphilitic
+45818,herb_robert herbs_robert herb_roberts Geranium_robertianum,a sticky low herb with small reddish-purple flowers; widespread in the northern hemisphere
+45819,herb_tea herbal_tea herbal,tea-like drink made of leaves of various herbs
+45820,herba_impia Filago_germanica,(literally an undutiful herb) a variety of cotton rose
+45821,herbage pasturage,succulent herbaceous vegetation of pasture land
+45822,herbal_medicine,a medicine made from plants and used to prevent or treat disease or promote health
+45823,herbal_medicine,the use of medicinal herbs to prevent or treat disease or promote health
+45824,herbalist herb_doctor,a therapist who heals by the use of herbs
+45825,herbarium,a collection of dried plants that are mounted and systematically classified for study
+45826,herbicide weedkiller weed_killer,a chemical agent that destroys plants or inhibits their growth
+45827,herbivore,any animal that feeds chiefly on grass and other plants; "horses are herbivores"; "the sauropod dinosaurs were apparently herbivores"
+45828,herd,a group of wild mammals of one species that remain together: antelope or elephants or seals or whales or zebra
+45829,herd,a group of cattle or sheep or other domestic mammals all of the same kind that are herded by humans
+45830,herder herdsman drover,someone who drives a herd
+45831,here,the present location; this place; "where do we go from here?"
+45832,here_and_now present_moment moment,at this time; "the disappointments of the here and now"; "she is studying at the moment"
+45833,hereditament,any property (real or personal or mixed) that can be inherited
+45834,hereditarianism,the philosophical doctrine that heredity is more important than environment in determining intellectual growth
+45835,hereditary_cerebellar_ataxia,nervous disorder of late childhood and early adulthood; characterized by ataxic gait and hesitating or explosive speech and nystagmus
+45836,heredity,the biological process whereby genetic factors are transmitted from one generation to the next
+45837,heredity genetic_endowment,the total of inherited attributes
+45838,hereness,the state of being here in this place
+45839,heresy unorthodoxy,a belief that rejects the orthodox tenets of a religion
+45840,heretic,a person who holds unorthodox opinions in any field (not merely religion)
+45841,heretic misbeliever religious_outcast,a person who holds religious beliefs in conflict with the dogma of the Roman Catholic Church
+45842,heritage,practices that are handed down from the past by tradition; "a heritage of freedom"
+45843,herm,a statue consisting of a squared stone pillar with a carved head (usually a bearded Hermes) on top; used in ancient Greece as a boundary marker or signpost
+45844,hermaphrodite intersex gynandromorph androgyne epicene epicene_person,one having both male and female sexual characteristics and organs; at birth an unambiguous assignment of male or female cannot be made
+45845,hermaphroditism hermaphrodism,congenital condition in which external genitalia and internal sex organs have both male and female characteristics
+45846,hermeneutics,the branch of theology that deals with principles of exegesis
+45847,hermit recluse solitary solitudinarian troglodyte,one who lives in solitude
+45848,hermit_crab,small soft-bodied marine crustaceans living in cast-off shells of gastropods
+45849,hermit_thrush Hylocichla_guttata,North American thrush noted for its complex and appealing song
+45850,hermitage,the abode of a hermit
+45851,hernia herniation,rupture in smooth muscle tissue through which a bodily structure protrudes
+45852,herniated_disc ruptured_intervertebral_disc slipped_disc,a painful rupture of the fibrocartilage of the disc between spinal vertebrae; occurs most often in the lumbar region
+45853,hero,a man distinguished by exceptional courage and nobility and strength; "RAF pilots were the heroes of the Battle of Britain"
+45854,hero,(classical mythology) a being of great strength and courage celebrated for bold exploits; often the offspring of a mortal and a god
+45855,hero,the principal character in a play or movie or novel or poem
+45856,hero_worship,admiration for great men (or their memory)
+45857,hero_worshiper hero_worshipper,someone who worships heroes
+45858,heroic_couplet,a couplet consisting of two rhymed lines of iambic pentameter and written in an elevated style
+45859,heroic_poetry epic_poetry,poetry celebrating the deeds of some hero
+45860,heroic_stanza,a quatrain consisting of two heroic couplets written in an elevated style; the rhyme scheme is abab
+45861,heroic_verse heroic_meter heroic,a verse form suited to the treatment of heroic or elevated themes; dactylic hexameter or iambic pentameter
+45862,heroics,ostentatious or vainglorious or extravagant or melodramatic conduct; "heroics are for those epic films they make in Hollywood"
+45863,heroin diacetylmorphine,a narcotic that is considered a hard drug; a highly addictive morphine derivative; intravenous injection provides the fastest and most intense rush
+45864,heroin_addict,someone addicted to heroin
+45865,heroin_addiction,an addiction to heroin
+45866,heroine,a woman possessing heroic qualities or a woman who has performed heroic deeds
+45867,heroine,the main good female character in a work of fiction
+45868,heroism gallantry valor valour valorousness valiance valiancy,the qualities of a hero or heroine; exceptional or heroic courage when facing danger (especially in battle); "he showed great heroism in battle"; "he received a medal for valor"
+45869,heron,grey or white wading bird with long neck and long legs and (usually) long bill
+45870,heronry,a breeding ground for herons; a heron rookery
+45871,herpangia,a viral infection (usually in children) marked by sore throat and fever and papules in the mouth and throat and headache and abdominal pain; usually subsides in a short time
+45872,herpes,viral diseases causing eruptions of the skin or mucous membrane
+45873,herpes herpes_virus,any of the animal viruses that cause painful blisters on the skin
+45874,herpes_simplex,an infection caused by the herpes simplex virus; affects the skin and nervous system; produces small temporary (but sometimes painful) blisters on the skin and mucous membranes
+45875,herpes_simplex herpes_simplex_virus,a herpes virus that affects the skin and nervous system
+45876,herpes_simplex_1 HS1 HSV-1 HSV-I,a herpes virus that causes oral herpes
+45877,herpes_simplex_2 HS2 HSV-2 HSV-II,a herpes virus that can cause genital herpes
+45878,herpes_simplex_encephalitis herpes_encephalitis acute_inclusion_body_encephalitis,common form of acute encephalitis caused by herpes simplex 1; usually affects the temporal and frontal lobes
+45879,herpes_varicella_zoster herpes_varicella_zoster_virus,a herpes virus that causes chickenpox and shingles
+45880,herpes_zoster herpes_zoster_virus,a herpes virus that causes shingles
+45881,herpes_zoster zoster shingles,eruptions along a nerve path often accompanied by severe neuralgia
+45882,herpetologist,a zoologist who studies reptiles and amphibians
+45883,herpetology,the branch of zoology concerned with reptiles and amphibians
+45884,herrerasaur herrerasaurus,a kind of theropod dinosaur found in Argentina
+45885,herring,valuable flesh of fatty fish from shallow waters of northern Atlantic or Pacific; usually salted or pickled
+45886,herring Clupea_harangus,commercially important food fish of northern waters of both Atlantic and Pacific
+45887,herring_gull Larus_argentatus,large gull of the northern hemisphere
+45888,herring_salad,based on pickled herring
+45889,herringbone,a twilled fabric with a herringbone pattern
+45890,herringbone herringbone_pattern,a pattern of columns of short parallel lines with all the lines in one column sloping one way and lines in adjacent columns sloping the other way; it is used in weaving, masonry, parquetry, embroidery
+45891,hertz Hz cycle_per_second cycles/second cps cycle,the unit of frequency; one hertz has a periodic interval of one second (named for Heinrich Rudolph Hertz)
+45892,hesitance hesitancy,a feeling of diffidence and indecision about doing something
+45893,hesitation vacillation wavering,indecision in speech or action
+45894,hesitation waver falter faltering,the act of pausing uncertainly; "there was a hesitation in his speech"
+45895,heterocercal_fin,a tail fin with unequal lobes in which the vertebral column turns upward into the larger lobe as in sharks
+45896,heterocyclic_compound heterocyclic heterocycle,a compound containing a heterocyclic ring
+45897,heterocyclic_ring heterocycle,a ring of atoms of more than one kind; especially a ring of carbon atoms containing at least one atom that is not carbon
+45898,heterodactyl_foot,a bird's foot having the first and second toes of each foot directed backward and the third and fourth forward
+45899,heterodyne_receiver superheterodyne_receiver superhet,a radio receiver that combines a locally generated frequency with the carrier frequency to produce a supersonic signal that is demodulated and amplified
+45900,heterogeneity heterogeneousness,the quality of being diverse and not comparable in kind
+45901,heterograft xenograft,tissue from an animal of one species used as a temporary graft (as in cases of severe burns) on an individual of another species
+45902,heterology,(biology) the lack of correspondence of apparently similar body parts
+45903,heterometabolism heterometaboly,development of insects with incomplete metamorphosis in which no pupal stage precedes maturity
+45904,heteronym,two words are heteronyms if they are spelled the same way but differ in pronunciation; "the word `bow' is an example of a heteronym"
+45905,heterophil_antibody heterophile_antibody Forssman_antibody,an antibody found in the blood of someone suffering from infectious mononucleosis
+45906,heterophil_test,a blood test to detect heterophil antibodies that agglutinate sheep red blood cells; positive result indicates infectious mononucleosis
+45907,heteroploid,(genetics) an organism or cell having a chromosome number that is not an even multiple of the haploid chromosome number for that species
+45908,heteroploidy,the condition of being heteroploid
+45909,heteropterous_insect,true bugs: insects whose forewings are membranous but have leathery tips
+45910,heterosexism,discrimination in favor of heterosexual and against homosexual people
+45911,heterosexual heterosexual_person straight_person straight,a person having a sexual orientation to persons of the opposite sex
+45912,heterosexuality heterosexualism straightness,a sexual attraction to (or sexual relations with) persons of the opposite sex
+45913,heterosis hybrid_vigor,(genetics) the tendency of a crossbred organism to have qualities superior to those of either parent
+45914,heterospory,the development of both microspores and megaspores
+45915,heterostracan,extinct jawless fish with the anterior part of the body covered with bony plates; of the Silurian and Devonian
+45916,heterotroph,an organism that depends on complex organic substances for nutrition
+45917,heterozygosity,the state of being heterozygous; having two different alleles of the same gene
+45918,heterozygote,(genetics) an organism having two different alleles of a particular gene and so giving rise to varying offspring
+45919,heth,the 8th letter of the Hebrew alphabet
+45920,heulandite,a group of minerals of the zeolite family consisting of a hydrous aluminum silicate of sodium and calcium
+45921,heuristic heuristic_rule heuristic_program,a commonsense rule (or set of rules) intended to increase the probability of solving some problem
+45922,hewer,a person who hews
+45923,hex jinx curse whammy,an evil spell; "a witch put a curse on his whole family"; "he put the whammy on me"
+45924,hex_nut,a nut with a hexagonal shape
+45925,hexachlorophene,antibacterial substance that is a water-soluble powder used in antiseptic soaps and toothpaste
+45926,hexadecimal_digit,a digit from 0 to 15 in hexadecimal notation
+45927,hexadecimal_notation sexadecimal_notation,any notation that uses 16 different characters
+45928,hexadecimal_number_system sexadecimal_number_system hexadecimal_system,a positional system of numeration that uses hexadecimal digits and a radix of sixteen
+45929,hexagon,a six-sided polygon
+45930,hexagram,a regular polygon formed by extending each of the sides of a regular hexagon to form two equilateral triangles
+45931,hexahedron,any polyhedron having six plane faces
+45932,hexameter,a verse line having six metrical feet
+45933,hexane,a colorless flammable liquid alkane derived from petroleum and used as a solvent
+45934,hexanedioic_acid adipic_acid,a carboxylic acid used in the manufacture of nylon
+45935,hexapod,an animal having six feet
+45936,hexestrol,estrogen compound used to treat menstrual irregularities and menopausal symptoms and to prevent pregnancy
+45937,hexose,a monosaccharide that contains six carbon atoms per molecule
+45938,hi-fi high_fidelity_sound_system,equipment for the reproduction of sound with high fidelity
+45939,hiatus,a missing piece (as a gap in a manuscript)
+45940,hiatus_hernia hiatal_hernia diaphragmatic_hernia,hernia resulting from the protrusion of part of the stomach through the diaphragm
+45941,hiba_arborvitae Thujopsis_dolobrata,slow-growing medium-large Japanese evergreen used as an ornamental
+45942,hibachi,a portable brazier that burns charcoal and has a grill for cooking
+45943,hibernation,the torpid or resting state in which some animals pass the winter
+45944,hibernation,cessation from or slowing of activity during the winter; especially slowing of metabolism in some animals
+45945,hibernation,the act of retiring into inactivity; "he emerged from his hibernation to make his first appearance in several years"
+45946,hibiscus,any plant of the genus Hibiscus
+45947,hiccup hiccough singultus,(usually plural) the state of having reflex spasms of the diaphragm accompanied by a rapid closure of the glottis producing an audible sound; sometimes a symptom of indigestion; "how do you cure the hiccups?"
+45948,hiccup_nut hiccough_nut Combretum_bracteosum,ornamental African shrub or climber with red flowers
+45949,hickey love_bite,a temporary red mark on a person's skin resulting from kissing or sucking by their lover
+45950,hickory,valuable tough heavy hardwood from various hickory trees
+45951,hickory hickory_tree,American hardwood tree bearing edible nuts
+45952,hickory_nut,small hard-shelled nut of North American hickory trees especially the shagbark hickories
+45953,hidden_reserve,reserves that do not show up on the balance sheet (as by understating values)
+45954,hidden_tax,a tax paid unwittingly by the consumer (such as ad valorem taxes)
+45955,hiddenite,a green transparent form of the mineral spodumene used as a gemstone
+45956,hiddenness covertness,the state of being covert and hidden
+45957,hide fell,the dressed skin of an animal (especially a large animal)
+45958,hide pelt skin,body covering of a living animal
+45959,hide-and-seek hide_and_go_seek,a game in which a child covers his eyes while the other players hide then tries to find them
+45960,hideaway retreat,an area where you can be alone
+45961,hideousness,dreadful ugliness; horrible repulsiveness
+45962,hideout hideaway den,a hiding place; usually a remote place used by outlaws
+45963,hiding,the state of being hidden; "he went into hiding"
+45964,hiding_place,a place suitable for hiding something (such as yourself)
+45965,hierarch,a person who holds a high position in a hierarchy
+45966,hierarchical_classification_system,a classification system where entries are arranged based on some hierarchical structure
+45967,hierarchical_menu cascading_menu submenu,a secondary menu that appears while you are holding the cursor over an item on the primary menu
+45968,hierarchical_structure hierarchical_data_structure,a structure of data having several levels arranged in a treelike structure
+45969,hierarchy,a series of ordered groupings of people or things within a system; "put honesty first in her hierarchy of values"
+45970,hierarchy power_structure pecking_order,the organization of people at different ranks in an administrative body
+45971,hieratic hieratic_script,a cursive form of Egyptian hieroglyphics; used especially by the priests
+45972,hierocracy,a ruling body composed of clergy
+45973,hieroglyph hieroglyphic,writing that resembles hieroglyphics (usually by being illegible)
+45974,hieroglyph hieroglyphic,a writing system using picture symbols; used in ancient Egypt
+45975,high,an air mass of higher than normal pressure; "the east coast benefits from a Bermuda high"
+45976,high,a state of sustained elation; "I'm on a permanent high these days"
+45977,high,a state of altered consciousness induced by alcohol or narcotics; "they took drugs to get a high on"
+45978,high,a lofty level or position or degree; "summer temperatures reached an all-time high"
+45979,high heights,a high place; "they stood on high and observed the countryside"; "he doesn't like heights"
+45980,high-angle_fire,fire from a cannon that is fired at an elevation greater than that for the maximum range
+45981,high-angle_gun,a cannon that can be fired at a high elevation for relatively short ranges
+45982,high-bush_blueberry tall_bilberry swamp_blueberry Vaccinium_corymbosum,high-growing deciduous shrub of eastern North America bearing edible blueish to blackish berries with a distinct bloom; source of most cultivated blueberries
+45983,high-definition_television HDTV,a television system that has more than the usual number of lines per frame so its pictures show more detail
+45984,high-density_lipoprotein HDL alpha-lipoprotein,a lipoprotein that transports cholesterol in the blood; composed of a high proportion of protein and relatively little cholesterol; high levels are thought to be associated with decreased risk of coronary heart disease and atherosclerosis
+45985,high-five,a gesture of greeting or elation; one person's upraised palm slaps the upraised palm of another person
+45986,high-hat_cymbal high_hat,cymbals that are operated by a foot pedal
+45987,high-level_formatting,(computer science) the format for the root directory and the file allocation tables and other basic configurations
+45988,high-level_language,a problem-oriented language requiring little knowledge of the computer on which it will be run
+45989,high-level_radioactive_waste,radioactive waste that left in a nuclear reactor after the nuclear fuel has been consumed
+45990,high-low,poker in which the high and low hands split the pot
+45991,high-mindedness idealism noble-mindedness,elevated ideals or conduct; the quality of believing that ideals should be pursued
+45992,high-muck-a-muck pooh-bah,an arrogant or conceited person of importance
+45993,high-pass_filter,a filter that passes frequencies above a certain value and attenuates frequencies below that value
+45994,high-protein_diet,a diet high in plant and animal proteins; used to treat malnutrition or to increase muscle mass
+45995,high-rise tower_block,tower consisting of a multistoried building of offices or apartments; "`tower block' is the British term for `high-rise'"
+45996,high-speed_steel hot-work_steel,an alloy steel that remains hard at a red heat; used to make metal-cutting tools
+45997,high-spiritedness,exuberant liveliness
+45998,high-vitamin_diet vitamin-deficiency_diet,a diet designed to patients with vitamin deficiencies
+45999,high-warp_loom,a handloom in which the warp is carried vertically; for weaving tapestry
+46000,high-water_mark,a line marking the highest level reached
+46001,high_altar,the main altar in a church
+46002,high_beam,the beam of a car's headlights that provides distant illumination
+46003,high_blood_pressure hypertension,a common disorder in which blood pressure remains abnormally high (a reading of 140/90 mm Hg or greater)
+46004,high_brass,brass with 35% zinc
+46005,high_colonic,an enema that injects large amounts of fluid high into the colon for cleansing purposes
+46006,high_comedy,a sophisticated comedy; often satirizing genteel society
+46007,high_command supreme_headquarters,the highest leaders in an organization (e.g. the commander-in-chief and senior officers of the military)
+46008,high_commissioner,a senior diplomat from one country to another who is assigned ambassadorial rank
+46009,high_country,an area lying above the piedmont but below the timberline
+46010,high_explosive,a powerful chemical explosive that produces gas at a very high rate
+46011,high_fidelity hi-fi,the reproduction of sound with little or no distortion
+46012,high_finance,large and complex financial transactions (often used with the implication that those individuals or institutions who engage in them are unethical)
+46013,high_frequency HF,3 to 30 megahertz
+46014,high_gear high,a forward gear with a gear ratio that gives the greatest vehicle velocity for a given engine speed
+46015,high_ground,a position of superiority over opponents or competitors
+46016,high_horse,an attitude of arrogant superiority; "get off your high horse and admit you are wrong"
+46017,high_jump,a competition that involves jumping as high as possible over a horizontal bar
+46018,high_jump,the act of jumping as high as possible over a horizontal bar
+46019,high_pitch high_frequency,a pitch that is perceived as above other pitches
+46020,high_point,the most enjoyable part of a given experience; "the trumpet solo was the high point of the concert"
+46021,high_priest,a preeminent authority or major proponent of a movement or doctrine; "he's the high priest of contemporary jazz"
+46022,high_profile,a position attracting much attention and publicity
+46023,high_roller,a gambler who wagers large sums
+46024,high_sea international_waters,the open seas of the world outside the territorial waters of any nation
+46025,high_season peak_season,the season when travel is most active and rates are highest; "they traveled to Europe in high season"
+46026,high_sign,a silent signal of warning or recognition; "she started to speak but he gave her the high sign"
+46027,high_status,a position of superior status
+46028,high_table,a dining table in a dining-hall raised on a platform; seats are reserved for distinguished persons
+46029,high_tea,substantial early evening meal including tea
+46030,high_technology high_tech,highly advanced technological development (especially in electronics)
+46031,high_tide high_water highwater,the tide when the water is highest
+46032,high_time,the latest possible moment; "it is high time you went to work"
+46033,high_wind,a very strong wind; "rain and high winds covered the region"
+46034,high_wire,a tightrope very high above the ground
+46035,highball,a mixed drink made of alcoholic liquor mixed with water or a carbonated beverage and served in a tall glass
+46036,highball_glass,a tall glass for serving highballs
+46037,highbinder,a corrupt politician
+46038,highboard,a high diving board
+46039,highboy tallboy,a tall chest of drawers divided into two sections and supported on four legs
+46040,highbrow,a person of intellectual or erudite tastes
+46041,highchair feeding_chair,a chair for feeding a very young child; has four long legs and a footrest and a detachable tray
+46042,higher_cognitive_process,cognitive processes that presuppose the availability of knowledge and put it to use
+46043,higher_criticism,the scientific study of biblical writings to determine their origin and meaning
+46044,higher_education,education provided by a college or university
+46045,higher_law,a principle that takes precedent over the laws of society
+46046,highflier highflyer,a person of great ability and ambition
+46047,highjacker highwayman hijacker road_agent,a holdup man who stops a vehicle and steals from it
+46048,highjacker hijacker,someone who uses force to take over a vehicle (especially an airplane) in order to reach an alternative destination
+46049,highjacking hijacking,robbery of a traveller or vehicle in transit or seizing control of a vehicle by the use of force
+46050,highland upland,elevated (e.g., mountainous) land
+46051,highland_fling,a vigorous Scottish reel
+46052,highlight high_spot,the most interesting or memorable part; "the highlight of the tour was our visit to the Vatican"
+46053,highlight highlighting,an area of lightness in a picture
+46054,highlighter,a cosmetic used to highlight the eyes or cheekbones
+46055,highlighter,a fluorescent marker used to mark important passages in a text
+46056,highness,a high degree (of amount or force etc.); "responsible for the highness of the rates"
+46057,highness loftiness,the quality of being high or lofty
+46058,highroad trunk_road,a highway
+46059,highway main_road,a major road for any form of motor transport
+46060,highway_engineer,a civil engineer who specializes in the design and construction of roads and highways
+46061,highway_robbery,an exorbitant price; "what they are asking for gas these days is highway robbery"
+46062,highway_robbery,robbery of travellers on or near a public road
+46063,highway_system,a transportation system consisting of roads for motor transport
+46064,hijab,a headscarf worn by Muslim women; conceals the hair and neck and usually has a face veil that covers the face
+46065,hijab,the custom in some Islamic societies of women dressing modestly outside the home; "she observes the hijab and does not wear tight clothing"
+46066,hijack highjack,seizure of a vehicle in transit either to rob it or divert it to an alternate destination
+46067,hike hiking tramp,a long walk usually for exercise or pleasure; "she enjoys a hike in her spare time"
+46068,hiker tramp tramper,a foot traveler; someone who goes on an extended walk (for pleasure)
+46069,hilarity mirth mirthfulness glee gleefulness,great merriment
+46070,hill,a local and well-defined elevation of the land; "they loved to roam the hills of West Virginia"
+46071,hill_myna Indian_grackle grackle Gracula_religiosa,glossy black Asiatic starling often taught to mimic speech
+46072,hillbilly bushwhacker,a disparaging term for an unsophisticated person
+46073,hillbilly_music,country music originating in mountainous regions of southern United States
+46074,hilliness,the quality of being hilly; "the hilliness of West Virginia"
+46075,hillside,the side or slope of a hill
+46076,hilltop brow,the peak of a hill; "the sun set behind the brow of distant hills"
+46077,hilt,the handle of a sword or dagger
+46078,hilum,the scar on certain seeds marking its point of attachment to the funicle
+46079,hilus hilum,(anatomy) a depression or fissure where vessels or nerves or ducts enter a bodily organ; "the hilus of the kidney"
+46080,hin,ancient Hebrew unit of liquid measure = 1.5 gallons
+46081,hind,any of several mostly spotted fishes that resemble groupers
+46082,hind,a female deer, especially an adult female red deer
+46083,hind_leg,the back limb of a quadruped
+46084,hind_limb hindlimb,a posterior appendage such as a leg or the homologous structure in other animals
+46085,hindbrain rhombencephalon,the posterior portion of the brain including cerebellum and brainstem
+46086,hindfoot,a rear foot of a quadruped
+46087,hindgut,the caudal part of the alimentary canal in vertebrate embryos
+46088,hindquarter,the back half of a side of meat
+46089,hindquarters croup croupe rump,the part of an animal that corresponds to the human buttocks
+46090,hindrance hinderance deterrent impediment balk baulk check handicap,something immaterial that interferes with or delays action or progress
+46091,hindrance hinderance hitch preventive preventative encumbrance incumbrance interference,any obstruction that impedes or is burdensome
+46092,hindrance hinderance interference,the act of hindering or obstructing or impeding
+46093,hindshank,a cut of meat from the upper part of a rear leg
+46094,hindsight,understanding the nature of an event after it has happened; "hindsight is always better than foresight"
+46095,hinge,a circumstance upon which subsequent events depend; "his absence is the hinge of our plan"
+46096,hinge flexible_joint,a joint that holds two parts together so that one can swing relative to the other
+46097,hinge_joint ginglymus ginglymoid_joint,a freely moving joint in which the bones are so articulated as to allow extensive movement in one plane
+46098,hinging_post swinging_post,the gatepost on which the gate is hung
+46099,hinny,hybrid offspring of a male horse and a female donkey or ass; usually sterile; "a hinny has a gentler disposition than a mule"
+46100,hint clue,a slight indication
+46101,hint intimation breath,an indirect suggestion; "not a breath of scandal ever touched her"
+46102,hip,(architecture) the exterior angle formed by the junction of a sloping side and a sloping end of a roof
+46103,hip,either side of the body below the waist and above the thigh
+46104,hip hip_joint coxa articulatio_coxae,the ball-and-socket joint between the head of the femur and the acetabulum
+46105,hip rose_hip rosehip,the fruit of a rose plant
+46106,hip-hop,an urban youth culture associated with rap music and the fashions of African-American residents of the inner city
+46107,hip_boot thigh_boot,a very high boot; used especially for fishing
+46108,hip_pad,protective garment consisting of a pad worn by football and hockey players
+46109,hip_pocket,a pocket in rear of trousers
+46110,hip_roof hipped_roof,a roof having sloping ends as well as sloping sides
+46111,hip_socket,the socket part of the ball-and-socket joint between the head of the femur and the innominate bone
+46112,hip_tile hipped_tile,a tile shaped so as to cover the hip of a hip roof
+46113,hipbone innominate_bone,large flaring bone forming one half of the pelvis; made up of the ilium and ischium and pubis
+46114,hipflask pocket_flask,a flask that holds spirits
+46115,hipline,the line formed by measuring the hip at its greatest part
+46116,hipline,the line formed by the lower edge of hip-length garment
+46117,hippeastrum Hippeastrum_puniceum,amaryllis of tropical America often cultivated as a houseplant for its showy white to red flowers
+46118,hippie hippy hipster flower_child,someone who rejects the established culture; advocates extreme liberalism in politics and lifestyle
+46119,hippocampus,a complex neural structure (shaped like a sea horse) consisting of grey matter and located on the floor of each lateral ventricle; intimately involved in motivation and emotion as part of the limbic system; has a central role in the formation of memories
+46120,hippodrome,a stadium for horse shows or horse races
+46121,hippopotamus hippo river_horse Hippopotamus_amphibius,massive thick-skinned herbivorous animal living in or around rivers of tropical Africa
+46122,hire,a newly hired employee; "the new hires need special training"
+46123,hire,the act of hiring something or someone; "he signed up for a week's car hire"
+46124,hire-purchase never-never,installment plan; "we bought a car on the never-never"
+46125,hired_hand hand hired_man,a hired laborer on a farm or ranch; "the hired hand fixed the railing"; "a ranch hand"
+46126,hired_help,employee hired for domestic or farm work (often used in the singular to refer to several employees collectively)
+46127,hireling pensionary,a person who works only for money
+46128,hiring_freeze,a freeze on hiring
+46129,hiring_hall,a union-operated placement office where jobs are allotted to applicants according to seniority or rotation
+46130,hirsuteness hirsutism,excessive hairiness
+46131,hispid_pocket_mouse Perognathus_hispidus,large stiff-haired rodent of shortgrass prairies of United States
+46132,hiss hissing hushing fizzle sibilation,a fricative sound (especially as an expression of disapproval); "the performers could not be heard over the hissing of the audience"
+46133,hisser,someone who communicates disapproval by hissing
+46134,histaminase,enzyme that acts as a catalyst in converting histidine to histamine
+46135,histamine,amine formed from histidine that stimulates gastric secretions and dilates blood vessels; released by the human immune system during allergic reactions
+46136,histamine_blocker,a medicine used to treat the gastric effects of histamine in cases of peptic ulcers and gastritis and gastroesophageal reflux; works by blocking the effects of histamine on the receptor site known as H2
+46137,histamine_headache cluster_headache,a painful recurring headache associated with the release of histamine from cells
+46138,histidine,an essential amino acid found in proteins that is important for the growth and repair of tissue
+46139,histiocyte,a macrophage that is found in connective tissue
+46140,histiocytosis,a blood disease characterized by an abnormal multiplication of macrophages
+46141,histocompatibility,condition in which the cells of one tissue can survive in the presence of cells of another tissue; "a successful graft or transplant requires a high degree of histocompatibility"
+46142,histocompatibility_complex,a family of fifty or more genes on the sixth human chromosome that code for proteins on the surfaces of cells and that play a role in the immune response
+46143,histogram,a bar chart representing a frequency distribution; heights of the bars represent observed frequencies
+46144,histoincompatibility,incompatibility in which one person's tissue cannot be transplanted to another person
+46145,histologist,anatomist who specializes in the microscopic study of animal tissues
+46146,histology,the branch of biology that studies the microscopic structure of animal or plant tissues
+46147,histone,a simple protein containing mainly basic amino acids; present in cell nuclei in association with nucleic acids
+46148,historian historiographer,a person who is an authority on history and who studies it and writes about it
+46149,historic_period age,an era of history having some distinctive feature; "we live in a litigious age"
+46150,historical_document historical_paper historical_record,writing having historical value (as opposed to fiction or myth etc.)
+46151,historical_linguistics diachronic_linguistics diachrony,the study of linguistic change; "the synchrony and diachrony of language"
+46152,historical_present,the use of the present tense to describe past actions or states
+46153,historical_school,a school of 19th century German economists and legal philosophers who tried to explain modern economic systems in evolutionary or historical terms
+46154,historicalness,the state of having in fact existed in the past
+46155,historicalness,significance owing to its history
+46156,historicism,a theory that social and cultural events are determined by history
+46157,historiography,a body of historical literature
+46158,historiography,the writing of history
+46159,history,the continuum of events occurring in succession leading from the past to the present and even into the future; "all of human history"
+46160,history,the aggregate of past events; "a critical time in the school's history"
+46161,history,all that is remembered of the past as preserved in writing; a body of knowledge; "the dawn of recorded history"; "from the beginning of history"
+46162,history,the discipline that records and interprets past events involving human beings; "he teaches Medieval history"; "history takes the long view"
+46163,history account chronicle story,a record or narrative description of past events; "a history of France"; "he gave an inaccurate account of the plot to kill the president"; "the story of exposure to lead"
+46164,history_department department_of_history,the academic department responsible for teaching history
+46165,history_lesson,a lesson in the facts of history
+46166,histrionics,a deliberate display of emotion for effect
+46167,hit,a dose of a narcotic drug
+46168,hit,a murder carried out by an underworld syndicate; "it has all the earmarks of a Mafia hit"
+46169,hit,a connection made via the internet to another website; "WordNet gets many hits from users worldwide"
+46170,hit,(baseball) a successful stroke in an athletic contest (especially in baseball); "he came all the way around on Williams' hit"
+46171,hit hitting striking,the act of contacting one thing with another; "repeated hitting raised a large bruise"; "after three misses she finally got a hit"
+46172,hit smash smasher strike bang,a conspicuous success; "that song was his first hit and marked the beginning of his career"; "that new Broadway show is a real smasher"; "the party went with a bang"
+46173,hit_list,a list of victims to be eliminated (as by murder)
+46174,hit_parade,a collection of the best or most popular people or items of a given kind
+46175,hit_parade,a ranked list of the songs that are most popular at a given time
+46176,hit_squad,a team of assassins
+46177,hitch,a connection between a vehicle and the load that it pulls
+46178,hitch,a knot that can be undone by pulling against the strain that holds it; a temporary knot
+46179,hitch hobble limp,the uneven manner of walking that results from an injured leg
+46180,hitchhiker,a person who travels by getting free rides from passing vehicles
+46181,hitching_post,a fixed post with a ring to which a horse can be hitched to prevent it from straying
+46182,hitchrack hitching_bar,a fixed horizontal rail to which a horse can be hitched to prevent it from straying
+46183,hitter striker,someone who hits; "a hard hitter"; "a fine striker of the ball"; "blacksmiths are good hitters"
+46184,hive,a teeming multitude
+46185,hoard cache stash,a secret store of valuables or money
+46186,hoarder,a person who accumulates things and hides them away for future use
+46187,hoariness,great age (especially grey or white with age)
+46188,hoary_alison hoary_alyssum Berteroa_incana,tall European annual with downy grey-green foliage and dense heads of small white flowers followed by hairy pods; naturalized in North America; sometimes a troublesome weed
+46189,hoary_golden_bush Hazardia_cana,western American shrubs having white felted foliage and yellow flowers that become red-purple
+46190,hoary_marmot whistler whistling_marmot Marmota_caligata,large North American mountain marmot
+46191,hoary_pea,a plant of the genus Tephrosia having pinnate leaves and white or purplish flowers and flat hairy pods
+46192,hoary_plantain Plantago_media,widely distributed Old World perennial naturalized in North America having finely hairy leaves and inconspicuous white fragrant flowers
+46193,hoary_plantain Plantago_virginica,North American annual or biennial with long soft hairs on the leaves
+46194,hoary_puccoon Indian_paint Lithospermum_canescens,perennial North American plant with greyish hairy foliage yielding a red or yellow pigment
+46195,hoary_willow sage_willow Salix_candida,North American shrub with whitish canescent leaves
+46196,hoatzin hoactzin stinkbird Opisthocomus_hoazin,crested ill-smelling South American bird whose young have claws on the first and second digits of the wings
+46197,hob,a hard steel edge tool used to cut gears
+46198,hob,a shelf beside an open fire where something can be kept warm
+46199,hobbit,an imaginary being similar to a person but smaller and with hairy feet; invented by J.R.R. Tolkien
+46200,hobble_skirt,a long skirt very narrow below the knees, worn between 1910 and 1914
+46201,hobbledehoy,an awkward bad-mannered adolescent boy
+46202,hobbler limper,someone who has a limp and walks with a hobbling gait
+46203,hobby Falco_subbuteo,small Old World falcon formerly trained and flown at small birds
+46204,hobby hobbyhorse rocking_horse,a child's plaything consisting of an imitation horse mounted on rockers; the child straddles it and pretends to ride
+46205,hobbyhorse,a topic to which one constantly reverts; "don't get him started on his hobbyhorse"
+46206,hobbyism,a devotion to hobbies
+46207,hobbyist,a person who pursues an activity in their spare time for pleasure
+46208,hobnail,a short nail with a thick head; used to protect the soles of boots
+46209,hobo migrant_worker,a worker who moves around and works temporarily in different places
+46210,hobo_camp jungle,a place where hoboes camp
+46211,hock hock-joint,tarsal joint of the hind leg of hoofed mammals; corresponds to the human ankle
+46212,hockey_clinic,a meeting at which hockey players receive special evaluation and instruction
+46213,hockey_coach,a coach of hockey players
+46214,hockey_league,a league of hockey teams
+46215,hockey_player ice-hockey_player,an athlete who plays hockey
+46216,hockey_season,the season when hockey is played
+46217,hockey_skate,an ice skate worn for playing hockey; has a short blade and a strong boot to protect the feet and ankles
+46218,hockey_stick,sports implement consisting of a curved or angled stick used by hockey players to move the puck
+46219,hockey_team,a team that plays ice hockey
+46220,hod,an open box attached to a long pole handle; bricks or mortar are carried on the shoulder
+46221,hod_carrier hodman,a laborer who carries supplies to masons or bricklayers
+46222,hodoscope,(physics) scientific instrument that traces the path of a charged particle
+46223,hoe,a tool with a flat blade attached at right angles to a long handle
+46224,hoe_handle,the handle of a hoe
+46225,hoecake,thin usually unleavened johnnycake made of cornmeal; originally baked on the blade of a hoe over an open fire (southern)
+46226,hog hogget hogg,a sheep up to the age of one year; one yet to be sheared
+46227,hog pig,a person regarded as greedy and pig-like
+46228,hog pig grunter squealer Sus_scrofa,domestic swine
+46229,hog-nosed_skunk hognosed_skunk badger_skunk rooter_skunk Conepatus_leuconotus,large naked-muzzled skunk with white back and tail; of southwestern North America and Mexico
+46230,hog_badger hog-nosed_badger sand_badger Arctonyx_collaris,southeast Asian badger with a snout like a pig
+46231,hog_cholera,highly infectious virus disease of swine
+46232,hog_peanut wild_peanut Amphicarpaea_bracteata Amphicarpa_bracteata,vine widely distributed in eastern North America producing racemes of purple to maroon flowers and abundant (usually subterranean) edible one-seeded pods resembling peanuts
+46233,hog_plum wild_plum,fruit of the wild plum of southern United States
+46234,hog_plum yellow_mombin,yellow oval tropical fruit
+46235,hog_plum yellow_mombin yellow_mombin_tree Spondias_mombin,tropical American tree having edible yellow fruit
+46236,hog_sucker hog_molly Hypentelium_nigricans,widely distributed in warm clear shallow streams
+46237,hogan,a Navajo lodge covered with earth; traditionally built with the entrance facing east
+46238,hogback horseback,a narrow ridge of hills
+46239,hogchoker Trinectes_maculatus,useless as food; in coastal streams from Maine to Texas and Panama
+46240,hogfish hog_snapper Lachnolaimus_maximus,large wrasse of western Atlantic; head of male resembles a pig's snout
+46241,hognose_bat Choeronycteris_mexicana,small-eared Mexican bat with a long slender nose
+46242,hognose_snake puff_adder sand_viper,harmless North American snake with upturned nose; may spread its head and neck or play dead when disturbed
+46243,hogshead,a British unit of capacity for alcoholic beverages
+46244,hogshead,a large cask especially one holding 63 gals
+46245,hoist,lifting device for raising heavy or cumbersome objects
+46246,hoister,an operator of a hoist
+46247,hold,power by which something or someone is affected or dominated; "he has a hold over them"
+46248,hold,a stronghold
+46249,hold keep,a cell in a jail or prison
+46250,hold-down,a limitation or constraint; "taxpayers want a hold-down on government spending"
+46251,holder,a person who holds something; "they held two hostages"; "he holds the trophy"; "she holds a United States passport"
+46252,holder,a holding device; "a towel holder"; "a cigarette holder"; "an umbrella holder"
+46253,holder bearer,the person who is in possession of a check or note or bond or document of title that is endorsed to him or to whoever holds it; "the bond was marked `payable to bearer'"
+46254,holding_cell,a jail in a courthouse where accused persons can be confined during a trial
+46255,holding_company,a company with controlling shares in other companies
+46256,holding_device,a device for holding something
+46257,holding_pattern,a state of inaction with no progress and no change; "you should go into a holding pattern until he gets over his disappointment"
+46258,holding_pattern,the flight path (usually circular) maintained by an aircraft that is awaiting permission to land
+46259,holding_pen holding_paddock holding_yard,a pen where livestock is temporarily confined
+46260,holdout,a negotiator who hopes to gain concessions by refusing to come to terms; "their star pitcher was a holdout for six weeks"
+46261,holdout,a refusal by a negotiator to come to terms in the hope of obtaining a better deal
+46262,holdout,the act of hiding playing cards in a gambling game so they are available for personal use later
+46263,holdover hangover,an official who remains in office after his term
+46264,holdup_man stickup_man,an armed thief
+46265,hole,a fault; "he shot holes in my argument"
+46266,hole,an unoccupied space
+46267,hole,an opening into or through something
+46268,hole,an opening deliberately made in or through something
+46269,hole golf_hole,one playing period (from tee to green) on a golf course; "he played 18 holes"
+46270,hole hollow,a depression hollowed out of solid matter
+46271,hole-in-the-wall,a small unpretentious out-of-the-way place; "his office was a hole-in-the-wall"
+46272,hole_card,any assets that are concealed until they can be used advantageously
+46273,hole_card,(poker) a playing card dealt face down and not revealed until the showdown
+46274,holiday,a day on which work is suspended by law or custom; "no mail is delivered on federal holidays"; "it's a good thing that New Year's was a holiday because everyone had a hangover"
+46275,holiday_season,a time when many people take holidays
+46276,holiness sanctity sanctitude,the quality of being holy
+46277,holism holistic_theory,the theory that the parts of any whole cannot exist and cannot be understood except in their relation to the whole; "holism holds that the whole is greater than the sum of its parts"; "holistic theory has been applied to ecology and language and mental states"
+46278,holistic_medicine,medical care of the whole person considered as subject to personal and social as well as organic factors; "holistic medicine treats the mind as well as the body"
+46279,hollandaise,eggs and butter with lemon juice
+46280,hollow,a cavity or space in something; "hunger had caused the hollows in their cheeks"
+46281,hollow holler,a small valley between mountains; "he built himself a cabin in a hollow high up in the Appalachians"
+46282,hollowness,the state of being hollow: having an empty space within
+46283,hollowness,the property of having a sunken area
+46284,hollowware holloware,silverware serving dishes
+46285,holly,any tree or shrub of the genus Ilex having red berries and shiny evergreen leaves with prickly edges
+46286,holly-leaved_cherry holly-leaf_cherry evergreen_cherry islay Prunus_ilicifolia,California evergreen wild plum with spiny leathery leaves and white flowers
+46287,holly_fern,any of various ferns of the genus Polystichum having fronds with texture and gloss like holly
+46288,holly_fern Cyrtomium_aculeatum Polystichum_aculeatum,tropical Old World fern having glossy fronds suggestive of holly; sometimes placed in genus Polystichum
+46289,hollyhock,any of various tall plants of the genus Alcea; native to the Middle East but widely naturalized and cultivated for its very large variously colored flowers
+46290,holm_oak,hard wood of the holm oak tree
+46291,holm_oak holm_tree holly-leaved_oak evergreen_oak Quercus_ilex,evergreen oak of southern Europe having leaves somewhat resembling those of holly; yields a hard wood
+46292,holmium Ho atomic_number_67,a trivalent metallic element of the rare earth group; occurs together with yttrium; forms highly magnetic compounds
+46293,holocaust,an act of mass destruction and loss of life (especially in war or by fire); "a nuclear holocaust"
+46294,holocephalan holocephalian,fish with high compressed head and a body tapering off into a long tail
+46295,hologram holograph,the intermediate photograph (or photographic record) that contains information for reproducing a three-dimensional image by holography
+46296,holography,the branch of optics that deals with the use of coherent light from a laser in order to make a hologram that can then be used to create a three-dimensional image
+46297,holometabola metabola,insects that undergo complete metamorphosis
+46298,holometabolism holometaboly,complete metamorphosis in insects
+46299,holonym whole_name,a word that names the whole of which a given word is a part; "`hat' is a holonym for `brim' and `crown'"
+46300,holonymy whole_to_part_relation,the semantic relation that holds between a whole and its parts
+46301,holophyte,an organism that produces its own food by photosynthesis
+46302,holster,a belt with loops or slots for carrying small hand tools
+46303,holster,a sheath (usually leather) for carrying a handgun
+46304,holy_day_of_obligation,a day when Catholics must attend Mass and refrain from servile work, and Episcopalians must take Communion
+46305,holy_of_holies,(figurative) something regarded as sacred or inviolable; "every politician fears to touch that holy of holies, the Social Security System"
+46306,holy_of_holies sanctum_sanctorum,(Judaism) sanctuary comprised of the innermost chamber of the Tabernacle in the temple of Solomon where the Ark of the Covenant was kept
+46307,holy_order,the sacrament of ordination
+46308,holy_place sanctum holy,a sacred place of pilgrimage
+46309,holy_water,water that has been blessed by a priest for use in symbolic purification
+46310,holystone,a soft sandstone used for scrubbing the decks of a ship
+46311,home,an environment offering affection and security; "home is where the heart is"; "he grew up in a good Christian home"; "there's no place like home"
+46312,home,place where something began and flourished; "the United States is the home of basketball"
+46313,home,the country or state or city where you live; "Canadian tariffs enabled United States lumber companies to raise prices at home"; "his home is New Jersey"
+46314,home nursing_home rest_home,an institution where people are cared for; "a home for the elderly"
+46315,home place,where you live at a particular time; "deliver the package to my home"; "he doesn't have a home to go to"; "your place or mine?"
+46316,home-farm,a farm that supplies the needs of a large estate of establishment
+46317,home_appliance household_appliance,an appliance that does a particular job in the home
+46318,home_away_from_home home_from_home,a place where you are just as comfortable and content as if you were home
+46319,home_banking,banking in which transactions are conducted by means of electronic communication (via telephone or computer)
+46320,home_brew homebrew,an alcoholic beverage (especially beer) made at home
+46321,home_buyer,someone buying a house
+46322,home_computer,a computer intended for use in the home
+46323,home_court,(basketball) the court where the host team plays its home games
+46324,home_economics home_ec domestic_science household_arts,theory and practice of homemaking
+46325,home_folk,folks from your own home town
+46326,home_fries home-fried_potatoes,sliced pieces of potato fried in a pan until brown and crisp
+46327,home_front,the civilian population (and their activities) of a country at war
+46328,home_game,a game played at home
+46329,home_guard,a volunteer unit formed to defend the homeland while the regular army is fighting elsewhere
+46330,home_help,a person hired to help in another's home (especially one employed by a local authority to help the infirm with domestic work)
+46331,home_invasion,burglary of a dwelling while the residents are at home
+46332,home_loan home_equity_credit home_equity_loan equity_credit_line,a loan secured by equity value in the borrower's home
+46333,home_movie,a film made at home by an amateur photographer
+46334,home_page homepage,the opening page of a web site
+46335,home_plate home_base home plate,(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score; "he ruled that the runner failed to touch home"
+46336,home_port,the port from which a ship originates of where it is registered
+46337,home_range home_territory,the area in which an animal normally ranges
+46338,home_room homeroom,a classroom in which all students in a particular grade (or in a division of a grade) meet at certain times under the supervision of a teacher who takes attendance and does other administrative business
+46339,home_rule,self-government in local matters by a city or county that is part of a national government
+46340,home_stand,a series of successive games played at a team's home field or court
+46341,home_study,a course of study carried out at home rather than in a classroom
+46342,home_theater home_theatre,television and video equipment designed to reproduce in the home the experience of being in a movie theater
+46343,home_truth,an important truth that is unpleasant to acknowledge (as about yourself)
+46344,homebound,people who are confined to their homes
+46345,homeboy,a fellow male member of a youth gang
+46346,homeboy,a male friend from your neighborhood or hometown
+46347,homebuilder home-builder housebuilder house-builder,someone who builds houses as a business
+46348,homecoming,an annual school or university reunion for graduates
+46349,homecourt_advantage,the advantage of playing on your home court in front of fans who are rooting for you
+46350,homefolk,the people of your home locality (especially your own family); "he wrote his homefolk every day"
+46351,homegirl,a fellow female member of a youth gang
+46352,homeless,poor people who unfortunately do not have a home to live in; "the homeless became a problem in the large cities"
+46353,homeless homeless_person,someone unfortunate without housing; "a homeless was found murdered in Central Park"
+46354,homelessness,the state or condition of having no home (especially the state of living in the streets)
+46355,homeliness plainness,an appearance that is not attractive or beautiful; "fine clothes could not conceal the girl's homeliness"
+46356,homemaking,the management of a household
+46357,homeobox homeobox_gene,one of various similar homeotic genes that are involved in bodily segmentation during embryonic development
+46358,homeopath homoeopath,a practitioner of homeopathy
+46359,homeopathy homoeopathy,a method of treating disease with small amounts of remedies that, in large amounts in healthy people, produce symptoms similar to those being treated
+46360,homeostasis,(physiology) metabolic equilibrium actively maintained by several complex biological mechanisms that operate via the autonomic nervous system to offset disrupting changes
+46361,homeotherm homoiotherm homotherm,an animal that has a body temperature that is relatively constant and independent of the environmental temperature
+46362,homeotic_gene,one the genes that are involved in embryologic development
+46363,homeowner householder,someone who owns a home
+46364,homer home_run,a base hit on which the batter scores a run
+46365,homer kor,an ancient Hebrew unit of capacity equal to 10 baths or 10 ephahs
+46366,homesickness,a longing to return home
+46367,homespun,a rough loosely woven fabric originally made with yarn that was spun at home
+46368,homestead,the home and adjacent grounds occupied by a family
+46369,homestead,land acquired from the United States public lands by filing a record and living on and cultivating it under the homestead law
+46370,homestead,dwelling that is usually a farmhouse and adjoining land
+46371,homestead_law,a law conferring privileges on owners of homesteads
+46372,homestretch,the end of an enterprise; "they were on the homestretch when the computer crashed"
+46373,homestretch,the straight stretch of a racetrack leading to the finish line
+46374,hometown,the town (or city) where you grew up or where you have your principal residence; "he never went back to his hometown again"
+46375,homework prep preparation,preparatory school work done outside school (especially at home)
+46376,homework_problem,a problem that students are assigned to do outside of class
+46377,homicide,the killing of a human being by another human being
+46378,homiletics,the branch of theology that deals with sermons and homilies
+46379,homiletics,the art of preaching
+46380,homily preachment,a sermon on a moral or religious topic
+46381,homing_device,the mechanism in a guided missile that guides it toward its objective
+46382,homing_pigeon homer,pigeon trained to return home
+46383,homing_torpedo,a torpedo that is guided to its target (as by the sound of a ship's engines)
+46384,hominid,a primate of the family Hominidae
+46385,hominoid,a primate of the superfamily Hominoidea
+46386,hominy,hulled corn with the bran and germ removed
+46387,homo man human_being human,any living or extinct member of the family Hominidae characterized by superior intelligence, articulate speech, and erect carriage
+46388,homocercal_fin,symmetrical tail fin extending beyond the end of the vertebral column as in most bony fishes
+46389,homogenate,material that has been homogenized (especially tissue that has been ground and mixed); "liver homogenate"
+46390,homogeneity,the quality of being of uniform throughout in composition or structure
+46391,homogeneity homogeneousness,the quality of being similar or comparable in kind or nature; "there is a remarkable homogeneity between the two companies"
+46392,homogeneous_polynomial,a polynomial consisting of terms all of the same degree
+46393,homogenization homogenisation,the act of making something homogeneous or uniform in composition; "the homogenization of cream"; "the network's homogenization of political news"
+46394,homogenized_milk,milk with the fat particles broken up and dispersed uniformly so the cream will not rise
+46395,homogeny,(biology) similarity because of common evolution
+46396,homograft allograft,tissue or organ transplanted from a donor of the same species but different genetic makeup; recipient's immune system must be suppressed to prevent rejection of the graft
+46397,homograph,two words are homographs if they are spelled the same way but differ in meaning (e.g. fair)
+46398,homology,the quality of being similar or corresponding in position or value or structure or function
+46399,homolosine_projection,an equal-area projection map of the globe; oceans are distorted in order to minimize the distortion of the continents
+46400,homomorphism homomorphy,similarity of form
+46401,homonym,two words are homonyms if they are pronounced and spelled the same way but have different meanings
+46402,homonymy,the relation between two words that are spelled the same way but differ in meaning or the relation between two words that are pronounced the same way but differ in meaning
+46403,homophobe,a person who hates or fears homosexual people
+46404,homophobia,prejudice against (fear or dislike of) homosexual people and homosexuality
+46405,homophone,two words are homophones if they are pronounced the same way but differ in meaning or spelling or both (e.g. bare and bear)
+46406,homophony,the same pronunciation for words of different origins
+46407,homophony,part music with one dominant voice (in a homophonic style)
+46408,homopterous_insect homopteran,insects having membranous forewings and hind wings
+46409,homosexual homophile homo gay,someone who is sexually attracted to persons of the same sex
+46410,homosexuality homosexualism homoeroticism queerness gayness,a sexual attraction to (or sexual relations with) persons of the same sex
+46411,homospory,the development of a single kind of asexual spores
+46412,homozygosity,the state of being homozygous; having two identical alleles of the same gene
+46413,homozygote,(genetics) an organism having two identical alleles of a particular gene and so breeding true for the particular characteristic
+46414,homunculus,a tiny fully formed individual that (according to the discredited theory of preformation) is supposed to be present in the sperm cell
+46415,hone,a whetstone made of fine gritstone; used for sharpening razors
+46416,honest_woman,a wife who has married a man with whom she has been living for some time (especially if she is pregnant at the time); "he made an honest woman of her"
+46417,honesty honestness,the quality of being honest
+46418,honesty silver_dollar money_plant satin_flower satinpod Lunaria_annua,southeastern European plant cultivated for its fragrant purplish flowers and round flat papery silver-white seedpods that are used for indoor decoration
+46419,honey,a sweet yellow liquid produced by bees
+46420,honey_bell honeybells Hermannia_verticillata Mahernia_verticillata,African shrub having decumbent stems and slender yellow honey-scented flowers either solitary or in pairs
+46421,honey_bun sticky_bun caramel_bun schnecken,rolled dough spread with sugar and nuts then sliced and baked in muffin tins with honey or sugar and butter in the bottom
+46422,honey_buzzard Pernis_apivorus,Old World hawk that feeds on bee larvae and small rodents and reptiles
+46423,honey_cake,a spicy cake partially sweetened with honey
+46424,honey_crisp,a crisp candy made with honey
+46425,honey_eater honeysucker,Australasian bird with tongue and bill adapted for extracting nectar
+46426,honey_guide,small bird of tropical Africa and Asia; feeds on beeswax and honey and larvae
+46427,honey_locust Gleditsia_triacanthos,tall usually spiny North American tree having small greenish-white flowers in drooping racemes followed by long twisting seed pods; yields very hard durable reddish-brown wood; introduced to temperate Old World
+46428,honey_mesquite Western_honey_mesquite Prosopis_glandulosa,thorny deep-rooted drought-resistant shrub native to southwestern United States and Mexico bearing pods rich in sugar and important as livestock feed; tends to form extensive thickets
+46429,honey_mushroom honey_fungus Armillariella_mellea,a honey-colored edible mushroom commonly associated with the roots of trees in late summer and fall; do not eat raw
+46430,honey_plant,a plant that furnishes nectar suitable for making honey
+46431,honeybee Apis_mellifera,social bee often domesticated for the honey it produces
+46432,honeycomb,a structure of small hexagonal cells constructed from beeswax by bees and used to store honey and larvae
+46433,honeycomb,a framework of hexagonal cells resembling the honeycomb built by bees
+46434,honeycomb_tripe,lining of the reticulum (or second stomach) of a ruminant used as food
+46435,honeycreeper,small bright-colored tropical American songbird with a curved bill for sucking nectar
+46436,honeycreeper Hawaiian_honeycreeper,small to medium-sized finches of the Hawaiian islands
+46437,honeydew honeydew_melon,the fruit of a variety of winter melon vine; a large smooth greenish-white melon with pale green flesh
+46438,honeyflower honey-flower Protea_mellifera,Australian shrub whose flowers yield honey copiously
+46439,honeyflower honey-flower mountain_devil Lambertia_formosa,erect bushy shrub of eastern Australia having terminal clusters of red flowers yielding much nectar
+46440,honeymoon,the early (usually calm and harmonious) period of a relationship; business or political
+46441,honeymoon,a holiday taken by a newly married couple
+46442,honeymoon_resort,a resort that caters to newlyweds; "Niagra Falls is a well-known honeymoon resort"
+46443,honeypot king_protea Protea_cynaroides,South African shrub whose flowers when open are cup-shaped resembling artichokes
+46444,honeysuckle,shrub or vine of the genus Lonicera
+46445,honeysuckle Australian_honeysuckle coast_banksia Banksia_integrifolia,shrubby tree with silky foliage and spikes of cylindrical yellow nectarous flowers
+46446,honk,the cry of a goose (or any sound resembling this)
+46447,honker,a driver who causes his car's horn to make a loud honking sound; "the honker was fined for disturbing the peace"
+46448,honker Canada_goose Canadian_goose Branta_canadensis,common greyish-brown wild goose of North America with a loud, trumpeting call
+46449,honkytonk dive,a cheap disreputable nightclub or dance hall
+46450,honor honour,the quality of being honorable and having a good name; "a man of honor"
+46451,honor honour laurels,the state of being honored
+46452,honor honour purity pureness,a woman's virtue or chastity
+46453,honor_guard guard_of_honor,an escort for a distinguished guest or for the casket at a military funeral
+46454,honor_killing,an ancient tradition still sometimes observed; a male member of the family kills a female relative for tarnishing the family image
+46455,honor_system,a system of conduct in which participants are trusted not to take unfair advantage of others; "the students are on the honor system"
+46456,honorable_discharge,a discharge from the armed forces with a commendable record
+46457,honorableness honourableness,the quality of deserving honor or respect; characterized by honor
+46458,honorarium,a fee paid for a nominally free service
+46459,honorary_degree honoris_causa,a degree conferred to honor the recipient
+46460,honoree,a recipient of honors in recognition of noteworthy accomplishments
+46461,honorific,an expression of respect; "the Japanese use many honorifics"
+46462,honoring observance,conformity with law or custom or practice etc.
+46463,honours honours_degree,a university degree with honors
+46464,hooch hootch,an illicitly distilled (and usually inferior) alcoholic liquor
+46465,hood,(slang) a neighborhood
+46466,hood,(falconry) a leather covering for a hawk's head
+46467,hood,the folding roof of a carriage
+46468,hood,a headdress that protects the head and face
+46469,hood,(zoology) an expandable part or marking that resembles a hood on the head or neck of an animal
+46470,hood bonnet cowl cowling,protective covering consisting of a metal part that covers the engine; "there are powerful engines under the hoods of new cars"; "the mechanic removed the cowling in order to repair the plane's engine"
+46471,hood cap,a protective covering that is part of a plant
+46472,hood exhaust_hood,metal covering leading to a vent that exhausts smoke or fumes
+46473,hood hoodlum goon punk thug tough toughie strong-armer,an aggressive and violent young criminal
+46474,hood lens_hood,a tubular attachment used to keep stray light out of the lens of a camera
+46475,hood_latch,a catch that holds the hood of a car shut
+46476,hood_ornament,an ornament on the front of the hood of a car emblematic of the manufacturer
+46477,hooded_ladies'_tresses Spiranthes_romanzoffiana,orchid having dense clusters of gently spiraling creamy white flowers with 2 upper petals forming a hood; western North America
+46478,hooded_merganser hooded_sheldrake Lophodytes_cucullatus,small North American duck with a high circular crest on the male's head
+46479,hooded_pitcher_plant Sarracenia_minor,yellow-flowered pitcher plant of southeastern United States having trumpet-shaped leaves with the orifice covered with an arched hood
+46480,hooded_seal bladdernose Cystophora_cristata,medium-sized blackish-grey seal with large inflatable sac on the head; of Arctic and northern Atlantic waters
+46481,hooded_skunk Mephitis_macroura,of Mexico and southernmost parts of southwestern United States
+46482,hoodoo,(geology) a column of weathered and unusually shaped rock; "a tall sandstone hoodoo"
+46483,hoodoo,a practitioner of voodoo
+46484,hoodoo,something believed to bring bad luck
+46485,hoof,the horny covering of the end of the foot in ungulate mammals
+46486,hoof,the foot of an ungulate mammal
+46487,hoofer stepper,a professional dancer
+46488,hoofprint hoof_mark hoof-mark,a visible impression on a surface made by the hoof of an animal
+46489,hook,a catch for locking a door
+46490,hook,a curved or bent implement for suspending or pulling something
+46491,hook,a short swinging punch delivered from the side with the elbow bent
+46492,hook claw,a mechanical device that is curved or bent to suspend or hold or pull something
+46493,hook crotchet,a sharp curve or crook; a shape resembling a hook
+46494,hook draw hooking,a golf shot that curves to the left for a right-handed golfer; "he took lessons to cure his hooking"
+46495,hook_and_eye,a kind of fastener used on clothing
+46496,hook_shot hook,a basketball shot made over the head with the hand that is farther from the basket
+46497,hook_wrench hook_spanner,a wrench with a hook that fits over a nut or bolt head
+46498,hookah narghile nargileh sheesha shisha chicha calean kalian water_pipe hubble-bubble hubbly-bubbly,an oriental tobacco pipe with a long flexible tube connected to a container where the smoke is cooled by passing through water; "a bipolar world with the hookah and Turkish coffee versus hamburgers and Coca Cola"
+46499,hooker,a golfer whose shots typically curve left (for right-handed golfers)
+46500,hooker,(rugby) the player in the middle of the front row of the scrum who tries to capture the ball with the foot
+46501,hooks meat_hooks maulers,large strong hand (as of a fighter); "wait till I get my hooks on him"
+46502,hookup,a device providing a connection between a power source and a user; "some campsites have electrical hookups for trailers"
+46503,hookup assemblage,a system of components assembled together for a particular purpose
+46504,hookworm,parasitic bloodsucking roundworms having hooked mouth parts to fasten to the intestinal wall of human and other hosts
+46505,hookworm hookworm_disease,infestation of the intestines by hookworms which enter the body (usually) through the skin
+46506,hoop,a light curved skeleton to spread out a skirt
+46507,hoop ring,a rigid circular band of metal or wood or other material used for holding or fastening or hanging or pulling; "there was still a rusty iron hoop for tying a horse"
+46508,hoop_pine Moreton_Bay_pine Araucaria_cunninghamii,pine of Australia and New Guinea; yields a valuable light even-textured wood
+46509,hoop_snake,any of various harmless North American snakes that were formerly believed to take tail in mouth and roll along like a hoop
+46510,hoopoe hoopoo,any of several crested Old World birds with a slender downward-curved bill
+46511,hoopskirt crinoline,a skirt stiffened with hoops
+46512,hoosegow hoosgow,slang for a jail
+46513,hoot,a loud raucous cry (as of an owl)
+46514,hoot_owl,any owl that hoots as distinct from screeching
+46515,hop,the act of hopping; jumping upward or forward (especially on one foot)
+46516,hop hops,twining perennials having cordate leaves and flowers arranged in conelike spikes; the dried flowers of this plant are used in brewing to add the characteristic bitter taste to beer
+46517,hop record_hop,an informal dance where popular music is played
+46518,hop-picker hopper,a machine used for picking hops
+46519,hop_clover shamrock lesser_yellow_trefoil Trifolium_dubium,clover native to Ireland with yellowish flowers; often considered the true or original shamrock
+46520,hop_garden hop_field,a garden where hops are grown
+46521,hop_hornbeam,any of several trees resembling hornbeams with fruiting clusters resembling hops
+46522,hop_pole,a tall pole to support the wires on which the hop plant is trained
+46523,hope,someone (or something) on which expectations are centered; "he was their best hope for a victory"
+46524,hope,the general feeling that some desire will be fulfilled; "in spite of his troubles he never gave up hope"
+46525,hope,a specific instance of feeling hopeful; "it revived their hope of winning the pennant"
+46526,hope,one of the three Christian virtues
+46527,hope_chest wedding_chest,chest for storage of clothing (trousseau) and household goods in anticipation of marriage
+46528,hopefulness,full of hope
+46529,hopefulness,the feeling you have when you have hope
+46530,hopelessness,the despair you feel when you have abandoned hope of comfort or success
+46531,hoper,a person who hopes; "only an avid hoper could expect the team to win now"
+46532,hopper,someone who hops; "at hopscotch, the best hoppers are the children"
+46533,hopper,funnel-shaped receptacle; contents pass by gravity into a receptacle below
+46534,hopsacking hopsack,a loosely woven coarse fabric of cotton or linen; used in clothing
+46535,hopscotch,a game in which a child tosses a stone into an area drawn on the ground and then hops through it and back to regain the stone
+46536,horde,a nomadic community
+46537,horde host legion,a vast multitude
+46538,horehound,any of various aromatic herbs of the genus Marrubium
+46539,horehound,a candy that is flavored with an extract of the horehound plant
+46540,horizon,a specific layer or stratum of soil or subsoil in a vertical cross section of land
+46541,horizon apparent_horizon visible_horizon sensible_horizon skyline,the line at which the sky and Earth appear to meet
+46542,horizon celestial_horizon,the great circle on the celestial sphere whose plane passes through the sensible horizon and the center of the Earth
+46543,horizon view purview,the range of interest or activity that can be anticipated; "It is beyond the horizon of present knowledge"
+46544,horizontal,something that is oriented horizontally
+46545,horizontal_bar high_bar,gymnastic apparatus consisting of a bar supported in a horizontal position by uprights at both ends
+46546,horizontal_integration horizontal_combination,absorption into a single firm of several firms involved in the same level of production and sharing resources at that level
+46547,horizontal_parallax,the maximum parallax observed when the celestial body is at the horizon
+46548,horizontal_section,a mechanical drawing of an object as if made by a plane cutting through it horizontally
+46549,horizontal_stabilizer horizontal_stabiliser tailplane,the horizontal airfoil of an aircraft's tail assembly that is fixed and to which the elevator is hinged
+46550,horizontal_surface level,a flat surface at right angles to a plumb line; "park the car on the level"
+46551,horizontal_tail,the horizontal stabilizer and elevator in the tail assembly of an aircraft
+46552,horizontality,the quality of being parallel to the horizon; "houses with a pronounced horizontality"
+46553,hormone endocrine internal_secretion,the secretion of an endocrine gland that is transmitted by the blood to the tissue on which it has a specific effect
+46554,hormone_replacement_therapy hormone-replacement_therapy HRT,hormones (estrogen and progestin) are given to postmenopausal women; believed to protect them from heart disease and osteoporosis
+46555,horn,the material (mostly keratin) that covers the horns of ungulates and forms hooves and claws and nails
+46556,horn,a noise made by the driver of an automobile to give warning
+46557,horn,a device having the shape of a horn; "horns at the ends of a new moon"; "the horn of an anvil"; "the cleat had two horns"
+46558,horn,a noisemaker (as at parties or games) that makes a loud noise when you blow through it
+46559,horn,an alarm device that makes a loud warning sound
+46560,horn,any hard protuberance from the head of an organism that is similar to or suggestive of a horn
+46561,horn,one of the bony outgrowths on the heads of certain ungulates
+46562,horn saddle_horn,a high pommel of a Western saddle (usually metal covered with leather)
+46563,horn_button,a button that you press to activate the horn of an automobile
+46564,horn_fly Haematobia_irritans,small black European fly introduced into North America; sucks blood from cattle especially at the base of the horn
+46565,horn_of_plenty cornucopia,a goat's horn filled with grain and flowers and fruit symbolizing prosperity
+46566,horn_poppy horned_poppy yellow_horned_poppy sea_poppy Glaucium_flavum,yellow-flowered Eurasian glaucous herb naturalized in along sandy shores in eastern North America
+46567,hornbeam,any of several trees or shrubs of the genus Carpinus
+46568,hornbill,bird of tropical Africa and Asia having a very large bill surmounted by a bony protuberance; related to kingfishers
+46569,hornblende,a green to black mineral of the amphibole group; consists of silicates of calcium and sodium and magnesium and iron
+46570,hornbook,a primer that provides instruction in the rudiments or basic skills of a branch of knowledge
+46571,horned_chameleon Chamaeleo_oweni,a kind of chameleon
+46572,horned_lizard horned_toad horny_frog,insectivorous lizard with hornlike spines on the head and spiny scales on the body; of western North America
+46573,horned_owl,large owls having prominent ear tufts
+46574,horned_pondweed Zannichellia_palustris,found in still or slow-moving fresh or brackish water; useful to oxygenate cool water ponds and aquaria
+46575,horned_pout hornpout pout Ameiurus_Melas,catfish common in eastern United States
+46576,horned_puffin Fratercula_corniculata,northern Pacific puffin
+46577,horned_screamer Anhima_cornuta,screamer having a hornlike process projecting from the forehead
+46578,horned_violet tufted_pansy Viola_cornuta,European viola with an unusually long corolla spur
+46579,horned_viper cerastes sand_viper horned_asp Cerastes_cornutus,highly venomous viper of northern Africa and southwestern Asia having a horny spine above each eye
+46580,horned_whiff Citharichthys_cornutus,a whiff found in waters from the Bahamas and northern Gulf of Mexico to Brazil
+46581,hornet,large stinging paper wasp
+46582,hornet's_nest hornets'_nest,a highly contentious or hazardous situation; "talk of invading Iraq stirred up a political hornets' nest"
+46583,hornfels hornstone,a fine-grained metamorphic rock formed by the action of heat on clay rocks
+46584,horniness hotness hot_pants,a state of sexual arousal
+46585,hornist,a musician who plays a horn (especially a French horn)
+46586,hornpipe,music for dancing the hornpipe
+46587,hornpipe,a British solo dance performed by sailors
+46588,hornpipe pibgorn stockhorn,an ancient (now obsolete) single-reed woodwind; usually made of bone
+46589,hornwort,any aquatic plant of the genus Ceratophyllum; forms submerged masses in ponds and slow-flowing streams
+46590,hornwort,liverworts with slender hornlike capsules
+46591,horny_structure unguis,any rigid body structure composed primarily of keratin
+46592,horology,the art of designing and making clocks
+46593,horoscope,a prediction of someone's future based on the relative positions of the planets
+46594,horoscope,a diagram of the positions of the planets and signs of the zodiac at a particular time and place
+46595,horoscopy,the drawing up and interpretation of horoscopes
+46596,horror,intense and profound fear
+46597,horror,something that inspires horror; something horrible; "the painting that others found so beautiful was a horror to him"
+46598,hors_d'oeuvre,a dish served as an appetizer before the main meal
+46599,horse Equus_caballus,solid-hoofed herbivorous quadruped domesticated since prehistoric times
+46600,horse gymnastic_horse,a padded gymnastic apparatus on legs
+46601,horse's_foot,the hoof of a horse
+46602,horse-drawn_vehicle,a wheeled vehicle drawn by one or more horses
+46603,horse-trail,a trail for horses
+46604,horse_balm horseweed stoneroot stone-root richweed stone_root Collinsonia_canadensis,erect perennial strong-scented with serrate pointed leaves and a loose panicle of yellowish flowers; the eastern United States
+46605,horse_botfly Gasterophilus_intestinalis,parasitic chiefly on horses
+46606,horse_breeding,breeding horses
+46607,horse_cart horse-cart,heavy cart; drawn by a horse; used for farm work
+46608,horse_cassia Cassia_roxburghii Cassia_marginata,East Indian tree having long pods containing a black cathartic pulp used as a horse medicine
+46609,horse_cavalry,an army unit mounted on horseback
+46610,horse_chestnut buckeye Aesculus_hippocastanum,tree having palmate leaves and large clusters of white to red flowers followed by brown shiny inedible seeds
+46611,horse_doctor,a veterinarian who treats horses
+46612,horse_gram horse_grain poor_man's_pulse Macrotyloma_uniflorum Dolichos_biflorus,twining herb of Old World tropics cultivated in India for food and fodder; sometimes placed in genus Dolichos
+46613,horse_latitude,either of two belts or regions near 30 degrees north or 30 degrees south; characterized by calms and light-baffling winds
+46614,horse_mackerel jack_mackerel Spanish_mackerel saurel Trachurus_symmetricus,a California food fish
+46615,horse_mackerel saurel Trachurus_trachurus,large elongated compressed food fish of the Atlantic waters of Europe
+46616,horse_manure,horse excreta used as fertilizer
+46617,horse_mushroom Agaricus_arvensis,coarse edible mushroom with a hollow stem and a broad white cap
+46618,horse_nettle ball_nettle bull_nettle ball_nightshade Solanum_carolinense,coarse prickly weed having pale yellow flowers and yellow berrylike fruit; common throughout southern and eastern United States
+46619,horse_pistol horse-pistol,a large pistol (usually in a holster) formerly carried by horsemen
+46620,horse_race,a contest of speed between horses; usually held for the purpose of betting
+46621,horse_racing,the sport of racing horses
+46622,horse_tick horsefly Hippobosca_equina,winged fly parasitic on horses
+46623,horse_trade horse_trading,the swapping of horses (accompanied by much bargaining)
+46624,horse_trader,a hard bargainer
+46625,horse_trading,negotiation accompanied by mutual concessions and shrewd bargaining
+46626,horse_wrangler wrangler,a cowboy who takes care of the saddle horses
+46627,horseback,the back of a horse
+46628,horsebox,a conveyance (railroad car or trailer) for transporting racehorses
+46629,horsecar,an early form of streetcar that was drawn by horses
+46630,horsecloth,a cloth for the trapping of a horse
+46631,horsefly cleg clegg horse_fly,large swift fly the female of which sucks blood of various animals
+46632,horsehair,hair taken from the mane or tail of a horse
+46633,horsehair,a fabric made from fibers taken from the mane or tail of horses; used for upholstery
+46634,horsehair_lichen horsetail_lichen,any of several lichens of the genus Alectoria having a thallus consisting of filaments resembling hair
+46635,horsehair_wig,a wig made of horsehair; "the English judiciary wear their traditional horsehair wigs"
+46636,horsehide,leather from the hide of a horse
+46637,horseleech,any of several large freshwater leeches
+46638,horseless_carriage,an early term for an automobile; "when automobiles first replaced horse-drawn carriages they were called horseless carriages"
+46639,horseman equestrian horseback_rider,a man skilled in equitation
+46640,horseman horse_fancier,a person who breeds and cares for horses
+46641,horsemanship,skill in handling and riding horses
+46642,horsemeat horseflesh,the flesh of horses as food
+46643,horsemint Mentha_longifolia,a coarse Old World wild water mint having long leaves and spikelike clusters of flowers; naturalized in the eastern United States
+46644,horsemint Monarda_punctata,tall erect perennial or annual having lanceolate leaves and heads of purple-spotted creamy flowers; many subspecies grown from eastern to southwestern United States and in Mexico
+46645,horseplay,rowdy or boisterous play
+46646,horsepond,a pond for watering horses
+46647,horsepower HP H.P.,a unit of power equal to 746 watts
+46648,horsepower-hour,a unit of work equal to the work done by one horsepower in one hour
+46649,horseradish,grated horseradish root
+46650,horseradish horse_radish red_cole Armoracia_rusticana,coarse Eurasian plant cultivated for its thick white pungent root
+46651,horseradish horseradish_root,the root of the horseradish plant; it is grated or ground and used for seasoning
+46652,horseradish_peroxidase,an enzyme used in immunohistochemistry to label antigens and their antibodies
+46653,horseradish_sauce sauce_Albert,creamy white sauce with horseradish and mustard
+46654,horseshoe,game equipment consisting of an open ring of iron used in playing horseshoes
+46655,horseshoe shoe,U-shaped plate nailed to underside of horse's hoof
+46656,horseshoe_bat,any of numerous bats of the family Hipposideridae of northwest Africa or Philippines or Australia having a horseshoe-shaped leaf on the nose
+46657,horseshoe_bat,a bat of the family Rhinolophidae having a horseshoe-shaped leaf on the nose
+46658,horseshoe_crab king_crab Limulus_polyphemus Xiphosurus_polyphemus,large marine arthropod of the Atlantic coast of North America having a domed carapace that is shaped like a horseshoe and a stiff pointed tail; a living fossil related to the wood louse
+46659,horseshoe_vetch Hippocrepis_comosa,European woody perennial with yellow umbellate flowers followed by flattened pods that separate into horseshoe-shaped joints
+46660,horseshoe_whipsnake Coluber_hippocrepis,slender fast-moving Eurasian snake
+46661,horseshow,a competitive exhibition of horses
+46662,horsetail,perennial rushlike flowerless herbs with jointed hollow stems and narrow toothlike leaves that spread by creeping rhizomes; tend to become weedy; common in northern hemisphere; some in Africa and South America
+46663,horseweed Canadian_fleabane fleabane Conyza_canadensis Erigeron_canadensis,common North American weed with linear leaves and small discoid heads of yellowish flowers; widely naturalized throughout temperate regions; sometimes placed in genus Erigeron
+46664,horsewhip,a whip for controlling horses
+46665,horsewhipping,the act of whipping with a horsewhip; "that villain needs a good horsewhipping"
+46666,horsewoman,a woman horseman
+46667,horst,a ridge of the earth's crust that has been forced upward between two faults and so is higher than the surrounding land
+46668,horsy_set horsey_set,a set of people sharing a devotion to horses and horseback riding and horse racing
+46669,hortensia Hydrangea_macrophylla_hortensis,deciduous shrub bearing roundheaded flower clusters opening green and aging to pink or blue
+46670,horticulturist plantsman,an expert in the science of cultivating plants (fruit or flowers or vegetables or ornamental plants)
+46671,hosanna,a cry of praise or adoration (to God)
+46672,hose,man's close-fitting garment of the 16th and 17th centuries covering the legs and reaching up to the waist; worn with a doublet
+46673,hose hosepipe,a flexible pipe for conveying a liquid or gas
+46674,hosier,a tradesman who sells hosiery and (in England) knitwear
+46675,hosiery hose,socks and stockings and tights collectively (the British include underwear)
+46676,hospice,a lodging for travelers (especially one kept by a monastic order)
+46677,hospice,a program of medical and emotional care for the terminally ill
+46678,hospitableness,having a disposition that welcomes guests and is fond of entertaining
+46679,hospital,a medical institution where sick or injured people are given medical or surgical care
+46680,hospital infirmary,a health facility where patients receive treatment
+46681,hospital_bed,a single bed with a frame in three sections so the head or middle or foot can be raised as required
+46682,hospital_chaplain,a chaplain in a hospital
+46683,hospital_occupancy,occupancy rate for hospitals
+46684,hospital_room,a room in a hospital for the care of patients
+46685,hospital_ship,a ship built to serve as a hospital; used for wounded in wartime
+46686,hospital_train,a military train built to transport wounded troops to a hospital
+46687,hospitalization,a period of time when you are confined to a hospital; "now they try to shorten the patient's hospitalization"
+46688,hospitalization,the condition of being treated as a patient in a hospital; "he hoped to avoid the expense of hospitalization"
+46689,hospitalization hospitalisation hospital_care,placing in medical care in a hospital
+46690,hospitalization_insurance hospitalization,insurance that pays all or part of a patient's hospital expense
+46691,host,(medicine) recipient of transplanted tissue or organ from a donor
+46692,host,a person who invites guests to a social event (such as a party in his or her own home) and who is responsible for them while they are there
+46693,host,any organization that provides resources and facilities for a function or event; "Atlanta was chosen to be host for the Olympic Games"
+46694,host,an animal or plant that nourishes and supports a parasite; it does not benefit and is often harmed by the association
+46695,host innkeeper boniface,the owner or manager of an inn
+46696,host legion,archaic terms for army
+46697,hostage surety,a prisoner who is held by one party to insure that another party will meet specified terms
+46698,hostel hostelry inn lodge auberge,a hotel providing overnight lodging for travelers
+46699,hostel youth_hostel student_lodging,inexpensive supervised lodging (especially for youths on bicycling trips)
+46700,hosteller,a traveler who lodges in hostels; "a youth hosteller"
+46701,hostess,a woman host
+46702,hostess,a woman innkeeper
+46703,hostile,troops belonging to the enemy's military forces; "the platoon ran into a pack of hostiles"
+46704,hostile_fire,fire that injures or kills an enemy
+46705,hostile_takeover,a takeover that is resisted by the management of the target company
+46706,hostilities belligerency,fighting; acts of overt warfare; "the outbreak of hostilities"
+46707,hostility enmity antagonism,a state of deep-seated ill-will
+46708,hostility enmity ill_will,the feeling of a hostile person; "he could no longer contain his hostility"
+46709,hostility ill_will,a hostile (very unfriendly) disposition; "he could not conceal his hostility"
+46710,hot-air_balloon,balloon for travel through the air in a basket suspended below a large bag of heated air
+46711,hot-fudge_sauce fudge_sauce,thick chocolate sauce served hot
+46712,hot-rock_penstemon Penstemon_deustus,stems in clumps with cream-colored flowers; found from Washington to Wyoming and southward to California and Utah
+46713,hot-water_bottle hot-water_bag,a stoppered receptacle (usually made of rubber) that is to be filled with hot water and used for warming a bed or parts of the body
+46714,hot_air,air that has been heated and tends to rise
+46715,hot_cereal,a cereal that is served hot
+46716,hot_flash flush,sudden brief sensation of heat (associated with menopause and some mental disorders)
+46717,hot_jazz,jazz that is emotionally charged and intense and marked by strong rhythms and improvisation
+46718,hot_line,a direct telephone line between two officials
+46719,hot_medium,a medium that usually, but not always, provides complete involvement together without considerable stimulus; includes radio, film, photography
+46720,hot_pants,skin-tight very short pants worn by young women as an outer garment
+46721,hot_pepper,any of various pungent capsicum fruits
+46722,hot_plate hotplate,a portable electric appliance for heating or cooking or keeping food warm
+46723,hot_pot hotpot,a stew of meat and potatoes cooked in a tightly covered pot
+46724,hot_potato,a difficult situation; "he dropped the topic like a hot potato"
+46725,hot_rod hot-rod,a car modified to increase its speed and acceleration
+46726,hot_sauce,a pungent peppery sauce
+46727,hot_seat,a difficult position where you are subjected to stress and criticism
+46728,hot_spell,a spell of hot weather
+46729,hot_spot hotspot,a point of relatively intense heat or radiation
+46730,hot_spot hotspot,a lively entertainment spot
+46731,hot_spot hotspot trouble_spot flashpoint,a place of political unrest and potential violence; "the United States cannot police all of the world's hot spots"
+46732,hot_spring thermal_spring,a natural spring of water at a temperature of 70 F or above
+46733,hot_stock hot_issue,newly issued stock that is in great public demand
+46734,hot_stuff,the quality of being popular; "skiing is hot stuff in New Hampshire"
+46735,hot_stuff voluptuousness,the quality of being attractive and exciting (especially sexually exciting); "he thought she was really hot stuff"
+46736,hot_toddy toddy,a mixed drink made of liquor and water with sugar and spices and served hot
+46737,hot_tub,a very large tub (large enough for more than one bather) filled with hot water
+46738,hot_war,actual fighting between the warring parties
+46739,hot_water,a dangerous or distressing predicament; "his views on race got him into political hot water"
+46740,hot_weather,a period of unusually high temperatures
+46741,hotbed,a situation that is ideal for rapid development (especially of something bad); "it was a hotbed of vice"
+46742,hotbed,a bed of earth covered with glass and heated by rotting manure to promote the growth of plants
+46743,hotbox,a journal bearing (as of a railroad car) that has overheated
+46744,hotchpotch,a stew (or thick soup) made with meat and vegetables
+46745,hotdog hot_dog,someone who performs dangerous stunts to attract attention to himself
+46746,hotdog hot_dog red_hot,a frankfurter served hot on a bun
+46747,hotel,a building where travelers can pay for lodging and meals and other services
+46748,hotel-casino casino-hotel,a business establishment that combines a casino and a hotel
+46749,hotel-casino casino-hotel,a building that houses both a hotel and a casino
+46750,hotel_bill,statement of charges for staying in a hotel
+46751,hotel_detective house_detective house_dick,a private detective employed by a hotel or retail store
+46752,hotel_occupancy,occupancy rate for hotels
+46753,hotel_plan meal_plan,a plan and a room rate for providing a room and meals to guests at a hotel
+46754,hotel_room,a bedroom (usually with bath) in a hotel
+46755,hotelier hotelkeeper hotel_manager hotelman hosteller,an owner or manager of hotels
+46756,hotfoot,a practical joke that involves inserting a match surreptitiously between the sole and upper of the victim's shoe and then lighting it
+46757,hotness heat high_temperature,the presence of heat
+46758,hotness pepperiness,a hot spiciness
+46759,hotspur,a rash or impetuous person
+46760,hound hound_dog,any of several breeds of dog used for hunting typically having large drooping ears
+46761,hound's-tongue Cynoglossum_officinale,biennial shrub of Europe and western Asia having coarse tongue-shaped leaves and dark reddish-purple flowers
+46762,hound's-tongue Cynoglossum_virginaticum,perennial shrub of North America having coarse tongue-shaped leaves and pale-blue to purple flowers
+46763,houndstooth_check hound's-tooth_check dogstooth_check dogs-tooth_check dog's-tooth_check,textile with a pattern of small broken or jagged checks
+46764,hour,a special and memorable period; "it was their finest hour"
+46765,hour hr 60_minutes,a period of time equal to 1/24th of a day; "the job will take more than an hour"
+46766,hour minute,distance measured by the time taken to cover it; "we live an hour from the airport"; "its just 10 minutes away"
+46767,hour time_of_day,clock time; "the hour is getting late"
+46768,hour_angle,the angular distance along the celestial equator from the observer's meridian to the hour circle of a given celestial body
+46769,hour_angle HA,(astronomy) the angular distance of a celestial point measured westward along the celestial equator from the zenith crossing; the right ascension for an observer at a particular location and time of day
+46770,hour_circle,a great circle on the celestial sphere that passes through both celestial poles
+46771,hour_hand little_hand,the shorter hand of a clock that points to the hours
+46772,hourglass,a sandglass that runs for sixty minutes
+46773,houri,(Islam) one of the dark-eyed virgins of perfect beauty believed to live with the blessed in Paradise
+46774,hours,a period of time assigned for work; "they work long hours"
+46775,hours,an indefinite period of time; "they talked for hours"
+46776,house,the management of a gambling house or casino; "the house gets a percentage of every bet"
+46777,house,the members of a religious community living together
+46778,house,the audience gathered together in a theatre or cinema; "the house applauded"; "he counted the house"
+46779,house,an official assembly having legislative powers; "a bicameral legislature has two houses"
+46780,house,aristocratic family line; "the House of York"
+46781,house,a building in which something is sheltered or located; "they had a large carriage house"
+46782,house,a dwelling that serves as living quarters for one or more families; "he has a house on Cape Cod"; "she felt she had to get out of the house"
+46783,house,play in which children take the roles of father or mother or children and pretend to interact like adults; "the children were playing house"
+46784,house-raising,construction by a group of neighbors
+46785,house_arrest,confinement to your own home
+46786,house_centipede Scutigera_coleoptrata,long-legged centipede common in damp places as e.g. cellars
+46787,house_finch linnet Carpodacus_mexicanus,small finch originally of the western United States and Mexico
+46788,house_guest houseguest,a guest entertained in your house
+46789,house_husband househusband,a husband who keeps house while his wife earns the family income
+46790,house_martin Delichon_urbica,common small European martin that builds nests under the eaves of houses
+46791,house_mouse Mus_musculus,brownish-grey Old World mouse now a common household pest worldwide
+46792,house_of_cards bubble,a speculative scheme that depends on unstable factors that the planner cannot control; "his proposal was nothing but a house of cards"; "a real estate bubble"
+46793,house_of_cards cardhouse card-house cardcastle,an unstable construction with playing cards; "he built three levels of his cardcastle before it collapsed"
+46794,house_of_correction,(formerly) a jail or other place of detention for persons convicted of minor offences
+46795,house_organ,a periodical published by a business firm for its employees and customers
+46796,house_paint housepaint,paint used to cover the exterior woodwork of a house
+46797,house_painter,a painter of houses a similar buildings
+46798,house_party,a party lasting over one or more nights at a large house
+46799,house_physician resident resident_physician,a physician (especially an intern) who lives in a hospital and cares for hospitalized patients under the supervision of the medical staff of the hospital; "the resident was receiving special clinical training at the hospital"
+46800,house_sitter,a custodian who lives in and cares for a house while the regular occupant is away (usually without an exchange of money)
+46801,house_wren Troglodytes_aedon,common American wren that nests around houses
+46802,houseboat,a barge that is designed and equipped for use as a dwelling
+46803,housebreaker cat_burglar,a burglar who unlawfully breaks into and enters another person's house
+46804,housebreaking break-in breaking_and_entering,trespassing for an unlawful purpose; illegal entrance into premises with criminal intent
+46805,housecleaning,(figurative) the act of reforming by the removal of unwanted personnel or practices or conditions; "more housecleaning is in store at other accounting firms"; "many employees were discharged in a general housecleaning by the new owners"
+46806,housecleaning,the act of cleaning the rooms and furnishings of a house; "efficient housecleaning should proceed one room at a time"
+46807,housecraft,skill in domestic management
+46808,housedog,a dog trained to guard a house
+46809,housefather,a man in charge of children in an institution
+46810,housefly house_fly Musca_domestica,common fly that frequents human habitations and spreads many diseases
+46811,houseful,as many as a house will accommodate; "they entertained a houseful of guests"
+46812,housekeeper,a servant who is employed to perform domestic task in a household
+46813,houselights,lights that illuminate the audience's part of a theater or other auditorium
+46814,housemaid's_knee,swelling of the bursa in the knee (due to trauma or excessive kneeling)
+46815,housemaster,teacher in charge of a school boardinghouse
+46816,housemate,someone who resides in the same house with you
+46817,housemother,a woman employed as a chaperon in a residence for young people
+46818,houseplant,any of a variety of plants grown indoors for decorative purposes
+46819,houseroom,space for accommodation in a house; "I wouldn't give that table houseroom"
+46820,housetop,the roof of a house; "shout it from the housetops"
+46821,housewarming,a party of people assembled to celebrate moving into a new home
+46822,housewife homemaker lady_of_the_house woman_of_the_house,a wife who manages a household while her husband earns the family income
+46823,housewifery,the work of a housewife
+46824,housework housekeeping,the work of cleaning and running a house
+46825,housewrecker housebreaker,a wrecker of houses; "in England a housewrecker is called a housebreaker"
+46826,housing,a protective cover designed to contain or support a mechanical component
+46827,housing lodging living_accommodations,structures collectively in which people are housed
+46828,housing_commissioner,a commissioner in charge of public housing
+46829,housing_development,a residential area of similar dwellings built by property developers and usually under a single management; "they live in the new housing development"
+46830,housing_estate,a residential area where the houses were all planned and built at the same time
+46831,housing_project public_housing,a housing development that is publicly funded and administered for low-income families
+46832,housing_start,the act of starting to construct a house
+46833,hovea purple_pea,any of several attractive evergreen shrubs of Australia grown for their glossy deep green foliage and flowers in rich blues and intense violets
+46834,hovel hut hutch shack shanty,small crude shelter used as a dwelling
+46835,hovercraft ground-effect_machine,a craft capable of moving over water or land on a cushion of air created by jet engines
+46836,how-do-you-do how-d'ye-do,an awkward situation; "that's a fine how-d'ye-do"
+46837,howdah houdah,a (usually canopied) seat for riding on the back of a camel or elephant
+46838,howl,the long plaintive cry of a hound or a wolf
+46839,howl,a loud sustained noise resembling the cry of a hound; "the howl of the wind made him restless"
+46840,howl howling ululation,a long loud emotional utterance; "he gave a howl of pain"; "howls of laughter"; "their howling had no effect"
+46841,howler,a glaring blunder
+46842,howler_monkey howler,monkey of tropical South American forests having a loud howling cry
+46843,hoya,any plant of the genus Hoya having fleshy leaves and usually nectariferous flowers
+46844,hoydenism tomboyishness,masculinity in women (especially in girls and young women)
+46845,hryvnia,the basic unit of money in Ukraine
+46846,huarache huaraches,a sandal with flat heels and an upper of woven leather straps
+46847,hub,a center of activity or interest or commerce or transportation; a focal point around which events revolve; "the playground is the hub of parental supervision"; "the airport is the economic hub of the area"
+46848,hub,the central part of a car wheel (or fan or propeller etc) through which the shaft or axle passes
+46849,hub-and-spoke hub-and-spoke_system,a system of air transportation in which local airports offer air transportation to a central airport where long-distance flights are available
+46850,hubbard_squash,large football-shaped winter squash with a warty grey-green rind
+46851,hubbard_squash Cucurbita_maxima,any of several winter squash plants producing large greyish-green football-shaped fruit with a rough warty rind
+46852,hubbub uproar brouhaha katzenjammer,loud confused noise from many sources
+46853,hubcap,cap that fits over the hub of a wheel
+46854,hubris,overbearing pride or presumption
+46855,huck huckaback,toweling consisting of coarse absorbent cotton or linen fabric
+46856,huckleberry,any of various dark-fruited as distinguished from blue-fruited blueberries
+46857,huckleberry,any of several shrubs of the genus Gaylussacia bearing small berries resembling blueberries
+46858,huckleberry,blue-black berry similar to blueberries and bilberries of the eastern United States
+46859,huckleberry_oak Quercus_vaccinifolia,a low spreading or prostrate shrub of southwestern United States with small acorns and leaves resembling those of the huckleberry
+46860,huckster,a person who writes radio or tv advertisements
+46861,huckster cheap-jack,a seller of shoddy goods
+46862,huddle,a disorganized and densely packed crowd; "a huddle of frightened women"
+46863,huddle powwow,(informal) a quick private conference
+46864,huddler,a member of a huddle
+46865,huddler,a person who crouches; "low huddlers against the wind"
+46866,hudson_seal,muskrat fur dressed to simulate sealskin
+46867,hudud hudood,Islamic laws stating the limits ordained by Allah and including the deterrent punishments for serious crimes
+46868,hue chromaticity,the quality of a color as determined by its dominant wavelength
+46869,huff miff seeing_red,a state of irritation or annoyance
+46870,huffiness,a passing state of anger and resentment
+46871,hug clinch squeeze,a tight or amorous embrace; "come here and give me a big hug"
+46872,hug-me-tight,a woman's fitted jacket
+46873,hugger,a person who hugs
+46874,hugger-mugger,a state of confusion; "he engaged in the hugger-mugger of international finance"
+46875,huisache cassie mimosa_bush sweet_wattle sweet_acacia scented_wattle flame_tree Acacia_farnesiana,tropical American thorny shrub or small tree; fragrant yellow flowers used in making perfumery
+46876,huitre oyster,edible body of any of numerous oysters
+46877,hula hula-hula Hawaiian_dancing,a Polynesian rain dance performed by a woman
+46878,hula-hoop,plaything consisting of a tubular plastic hoop for swinging around the hips
+46879,hulk,a ship that has been wrecked and abandoned
+46880,hull,dry outer covering of a fruit or seed or nut
+46881,hull,persistent enlarged calyx at base of e.g. a strawberry or raspberry
+46882,hull,the frame or body of ship
+46883,hum humming,a humming noise; "the hum of distant traffic"
+46884,human_T-cell_leukemia_virus-1 HTLV-1,retrovirus causing T-cell leukemia
+46885,human_body physical_body material_body soma build figure physique anatomy shape bod chassis frame form flesh,alternative names for the body of a human being; "Leonardo studied the human body"; "he has a strong physique"; "the spirit is willing but the flesh is weak"
+46886,human_botfly Dermatobia_hominis,large tropical American fly; parasitic on humans and other mammals
+46887,human_chorionic_gonadotropin human_chorionic_gonadotrophin HCG,hormone produced early in pregnancy by the placenta; detection in the urine and serum is the basis for one kind of pregnancy test
+46888,human_head,the head of a human being
+46889,human_immunodeficiency_virus HIV,the virus that causes acquired immune deficiency syndrome (AIDS); it replicates in and kills the helper T cells
+46890,human_nature,the shared psychological attributes of humankind that are assumed to be shared by all human beings; "a great observer of human nature"
+46891,human_papilloma_virus,any of a group of papovaviruses associated with genital or oral carcinomas or a group associated with benign genital tumors
+46892,human_process,a process in which human beings are involved
+46893,human_reproductive_cloning,the reproductive cloning of a sentient human being; generally considered ethically unacceptable
+46894,human_right,(law) any basic right or freedom to which all human beings are entitled and in whose exercise a government may not interfere (including rights to life and liberty as well as freedom of thought and expression and equality before the law)
+46895,human_waste,the body wastes of human beings
+46896,humaneness,the quality of compassion or consideration for others (people or animals)
+46897,humanism,the cultural movement of the Renaissance; based on classical studies
+46898,humanism secular_humanism,the doctrine emphasizing a person's capacity for self-realization through reason; rejects religion and the supernatural
+46899,humanist,a classical scholar or student of the liberal arts
+46900,humanist humanitarian,an advocate of the principles of humanism; someone concerned with the interests and welfare of humans
+46901,humanistic_discipline humanities liberal_arts arts,studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills); "the college of arts and sciences"
+46902,humanitarian do-gooder improver,someone devoted to the promotion of human welfare and to social reforms
+46903,humanitarianism humanism,the doctrine that people's duty is to promote human welfare
+46904,humanity,the quality of being humane
+46905,humanization humanisation,the act of making more human
+46906,humanness humanity manhood,the quality of being human; "he feared the speedy decline of all manhood"
+46907,humate,material that is high in humic acids
+46908,humbleness unimportance obscureness lowliness,the state of being humble and unimportant
+46909,humbug snake_oil,communication (written or spoken) intended to deceive
+46910,humdinger,someone of remarkable excellence; "a humdinger of a secretary"
+46911,humectant,any substance that is added to another substance to keep it moist
+46912,humeral_veil veil,a vestment worn by a priest at High Mass in the Roman Catholic Church; a silk shawl
+46913,humerus,bone extending from the shoulder to the elbow
+46914,humic_acid,a dark brown humic substance that is soluble in water only at pH values greater than 2; "the half-life of humic acid is measured in centuries"
+46915,humic_shale,shale that is rich in humic acids
+46916,humic_substance,an organic residue of decaying organic matter
+46917,humidifier,an appliance designed to add moisture to the air in a building; "The humidifier assures the appropriate moisture level for our paintings"
+46918,humidity humidness,wetness in the atmosphere
+46919,humification,the process of the formation of humus from plant remains
+46920,humiliation,state of disgrace or loss of self-respect
+46921,humiliation abasement,depriving one of self-esteem
+46922,humiliation mortification,an instance in which you are caused to lose your prestige or self-respect; "he had to undergo one humiliation after another"
+46923,humility humbleness,a humble feeling; "he was filled with humility at the sight of the Pope"
+46924,humility humbleness,a disposition to be humble; a lack of false pride; "not everyone regards humility as a virtue"
+46925,humin,a black humic substance that is not soluble in water
+46926,hummer,a singer who produces a tune without opening the lips or forming words
+46927,humming,the act of singing with closed lips
+46928,humming_top,a top that makes a humming noise as it spins
+46929,hummingbird,tiny American bird having brilliant iridescent plumage and long slender bills; wings are specialized for vibrating flight
+46930,hummus humus hommos hoummos humous,a thick spread made from mashed chickpeas, tahini, lemon juice and garlic; used especially as a dip for pita; originated in the Middle East
+46931,humor humour,(Middle Ages) one of the four fluids in the body whose balance was believed to determine your emotional and physical state; "the humors are blood and phlegm and yellow and black bile"
+46932,humor humour,the quality of being funny; "I fail to see the humor in it"
+46933,humor humour sense_of_humor sense_of_humour,the trait of appreciating (and being able to express) the humorous; "she didn't appreciate my humor"; "you can't survive in the army without a sense of humor"
+46934,humoral_immune_response,an immune response (chiefly against bacterial invasion) that is mediated by B cells
+46935,humorist humourist,someone who acts speaks or writes in an amusing way
+46936,humpback humpback_whale Megaptera_novaeangliae,large whalebone whale with long flippers noted for arching or humping its back as it dives
+46937,humpback hunchback crookback,a person whose back is hunched because of abnormal curvature of the upper spine
+46938,humus,partially decomposed organic matter; the organic component of soil
+46939,hunch,the act of bending yourself into a humped position
+46940,hundred 100 C century one_C,ten 10s
+46941,hundred_dollar_bill c-note,a United States bill worth 100 dollars
+46942,hundred_thousand 100000 lakh,the cardinal number that is the fifth power of ten
+46943,hundredth,position 100 in a countable series of things
+46944,hundredweight cwt long_hundredweight,a British unit of weight equivalent to 112 pounds
+46945,hundredweight cwt short_hundredweight centner cental quintal,a United States unit of weight equivalent to 100 pounds
+46946,hundredweight metric_hundredweight doppelzentner centner,a unit of weight equal to 100 kilograms
+46947,hung_jury,a jury that is unable to agree on a verdict (the result is a mistrial)
+46948,hunger hungriness,a physiological need for food; the consequence of food deprivation
+46949,hunger hungriness thirst thirstiness,strong desire for something (not food or drink); "a thirst for knowledge"; "hunger for affection"
+46950,hunger_march,a march of protest or demonstration by the unemployed
+46951,hunger_marcher,an unemployed person who participates in a hunger march
+46952,hunger_strike,a voluntary fast undertaken as a means of protest
+46953,hunk,a well-built sexually attractive man
+46954,hunk lump,a large piece of something without definite shape; "a hunk of bread"; "a lump of coal"
+46955,hunt,an instance of searching for something; "the hunt for submarines"
+46956,hunt hunt_club,an association of huntsmen who hunt for sport
+46957,hunt hunting,the work of finding and killing or capturing animals for food or pelts
+46958,hunt hunting,the pursuit and killing or capture of wild animals regarded as a sport
+46959,hunted_person,a person who is hunted
+46960,hunter,a person who searches for something; "a treasure hunter"
+46961,hunter hunting_watch,a watch with a hinged metal lid to protect the crystal
+46962,hunter huntsman,someone who hunts game
+46963,hunter's_sauce sauce_chausseur,brown sauce and tomato puree with onions and mushrooms and dry white wine
+46964,hunter-gatherer,a member of a hunting and gathering society
+46965,hunting_and_gathering_tribe hunting_and_gathering_society,group that supports itself by hunting and fishing and by gathering wild fruits and vegetables; usually nomadic
+46966,hunting_dog,a dog used in hunting game
+46967,hunting_ground,a place where opportunities abound
+46968,hunting_ground,an area in which game is hunted
+46969,hunting_guide,guide to people hunting in unfamiliar territory
+46970,hunting_knife,a large sharp knife with a handle shaped to fit the grip
+46971,hunting_license hunting_licence hunting_permit game_license,a license authorizing the bearer to kill a certain type of animal during a specified period of time
+46972,hunting_season,the season during which it is legal to kill a particular species
+46973,huntress,a woman hunter
+46974,huntsman's_horn huntsman's_horns yellow_trumpet yellow_pitcher_plant trumpets Sarracenia_flava,pitcher plant of southeastern United States having erect yellow trumpet-shaped pitchers with wide mouths and erect lids
+46975,huon_pine Lagarostrobus_franklinii Dacrydium_franklinii,Tasmanian timber tree with yellow aromatic wavy-grained wood used for carving and ship building; sometimes placed in genus Dacrydium
+46976,hurdle,an obstacle that you are expected to overcome; "the last hurdle before graduation"
+46977,hurdle,a light movable barrier that competitors must leap over in certain races
+46978,hurdler,an athlete who runs the hurdles
+46979,hurdles hurdling hurdle_race,a footrace in which contestants must negotiate a series of hurdles
+46980,hurdy_gurdy hurdy-gurdy wheel_fiddle,a stringed instrument that produces sounds by means of a wheel that rubs against the strings
+46981,hurl cast,a violent throw
+46982,hurling,a traditional Irish game resembling hockey; played by two teams of 15 players each
+46983,hurrah hooray,a victory cheer; "let's give the team a big hurrah"
+46984,hurricane,a severe tropical cyclone usually with heavy rains and winds moving at 63-136 knots (12 on the Beaufort scale)
+46985,hurricane_deck hurricane_roof promenade_deck awning_deck,a deck at the top of a passenger ship
+46986,hurricane_lamp hurricane_lantern tornado_lantern storm_lantern storm_lamp,an oil lamp with a glass chimney and perforated metal lid to protect the flame from high winds; candlestick with a glass chimney
+46987,hurry haste,a condition of urgency making it necessary to hurry; "in a hurry to lock the door"
+46988,husband hubby married_man,a married man; a woman's partner in marriage
+46989,hush stillness still,(poetic) tranquil silence; "the still of the night"
+46990,hush_money,a bribe paid to someone to insure that something is kept secret
+46991,hush_puppy hushpuppy,deep-fried cornbread ball (southern)
+46992,husk,outer membranous covering of some fruits or seeds
+46993,huskiness ruggedness toughness,the property of being big and strong
+46994,husking_bee cornhusking,a social gathering for the purpose of husking corn
+46995,hussar,a member of a European light cavalry unit; renowned for elegant dress
+46996,hustings,the activities involved in political campaigning (especially speech making)
+46997,hustler wheeler_dealer operator,a shrewd or unscrupulous person who knows how to circumvent difficulties
+46998,hut army_hut field_hut,temporary military shelter
+46999,hutch,a cage (usually made of wood and wire mesh) for small animals
+47000,hutment,an encampment of huts (chiefly military)
+47001,hyacinth,any of numerous bulbous perennial herbs
+47002,hyacinth jacinth,a red transparent variety of zircon used as a gemstone
+47003,hyacinth_bean bonavist Indian_bean Egyptian_bean Lablab_purpureus Dolichos_lablab,perennial twining vine of Old World tropics having trifoliate leaves and racemes of fragrant purple pea-like flowers followed by maroon pods of edible seeds; grown as an ornamental and as a vegetable on the Indian subcontinent; sometimes placed in genus Dolichos
+47004,hyaline hyalin,a glassy translucent substance that occurs in hyaline cartilage or in certain skin conditions
+47005,hyaline_cartilage,translucent cartilage that is common in joints and the respiratory passages; forms most of the fetal skeleton
+47006,hyalinization hyalinisation,the state of being hyaline or having become hyaline; "the patient's arterioles showed marked hyalinization"
+47007,hyaloid_membrane hyaloid,the transparent membrane enveloping the vitreous humor of the eye and separating it from the retina
+47008,hyaloplasm ground_substance,the clear nongranular portion of the cytoplasm of a cell
+47009,hyaluronic_acid,a viscous mucopolysaccharide found in the connective tissue space and the synovial fluid of movable joints and the humors of the eye; a cementing and protective substance
+47010,hyaluronidase spreading_factor Hyazyme,an enzyme (trade name Hyazyme) that splits hyaluronic acid and so lowers its viscosity and increases the permeability of connective tissue and the absorption of fluids
+47011,hybrid,a composite of mixed origin; "the vice-presidency is a hybrid of administrative and legislative offices"
+47012,hybrid crossbreed cross,(genetics) an organism that is the offspring of genetically dissimilar parents or stock; especially offspring produced by breeding plants or animals of different varieties or breeds or species; "a mule is a cross between a horse and a donkey"
+47013,hybrid_petunia Petunia_hybrida,hybrids of Petunia axillaris and Petunia integrifolia: a complex group of petunias having single or double flowers in colors from white to purple
+47014,hybrid_tuberous_begonia Begonia_tuberhybrida,any of numerous hybrid begonias having tuberous roots and variously colored flowers
+47015,hybridization hybridisation crossbreeding crossing cross interbreeding hybridizing,(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids
+47016,hybridoma,a hybrid cell resulting from the fusion of a lymphocyte and a tumor cell; used to culture a specific monoclonal antibody
+47017,hydantoin,any of a group of anticonvulsant drugs used in treating epilepsy
+47018,hydathode water_pore water_stoma,a pore that exudes water on the surface or margin of a leaf of higher plants
+47019,hydatid,cyst filled with liquid; forms as a result of infestation by tapeworm larvae (as in echinococcosis)
+47020,hydatid_mole hydatidiform_mole molar_pregnancy,an abnormality during pregnancy; chorionic villi around the fetus degenerate and form clusters of fluid-filled sacs; usually associated with the death of the fetus
+47021,hydnocarpus_oil,oil from seeds of trees of the genus Hydnocarpus especially Hydnocarpus wightiana (Hydnocarpus laurifolia)
+47022,hydra,trouble that cannot be overcome by a single effort because of its many aspects or its persistent and pervasive quality; "we may be facing a hydra that defies any easy solution"
+47023,hydra,small tubular solitary freshwater hydrozoan polyp
+47024,hydralazine Apresoline,an antihypertensive drug (trade name Apresoline) that dilates blood vessels; used (often with a diuretic) to treat hypertension and congestive heart failure
+47025,hydramnios,an abnormality of pregnancy; accumulation of excess amniotic fluid
+47026,hydrangea,any of various deciduous or evergreen shrubs of the genus Hydrangea
+47027,hydrant,a discharge pipe with a valve and spout at which water may be drawn from the mains of waterworks
+47028,hydrarthrosis,inflammation and swelling of a movable joint because of excess synovial fluid
+47029,hydrate,any compound that contains water of crystallization
+47030,hydration,the process of combining with water; usually reversible
+47031,hydraulic_brake hydraulic_brakes,brake system in which a brake pedal moves a piston in the master cylinder; brake fluid then applies great force to the brake pads or shoes
+47032,hydraulic_cement Portland_cement,a cement that hardens under water; made by heating limestone and clay in a kiln and pulverizing the result
+47033,hydraulic_engineering,the branch of civil engineering dealing with the use and control of water in motion
+47034,hydraulic_press,press in which a force applied by a piston to a small area is transmitted through water to another piston having a large area
+47035,hydraulic_pump hydraulic_ram,a water pump that uses the kinetic energy of flowing water to force a small fraction of that water to a reservoir at a higher level
+47036,hydraulic_system,a mechanism operated by the resistance offered or the pressure transmitted when a liquid is forced through a small opening or tube
+47037,hydraulic_transmission hydraulic_transmission_system,a transmission that depends on a hydraulic system
+47038,hydrazine,a colorless fuming corrosive liquid; a powerful reducing agent; used chiefly in rocket fuels
+47039,hydrazo_group hydrazo_radical,the bivalent group -HNNH- derived from hydrazine
+47040,hydrazoic_acid azoimide hydrogen_azide HN,a colorless explosive liquid that is volatile and poisonous and foul-smelling
+47041,hydrazoite,a salt of hydrazoic acid
+47042,hydremia,blood disorder in which there is excess fluid volume compared with the cell volume of the blood
+47043,hydride,any binary compound formed by the union of hydrogen and other elements
+47044,hydrilla Hydrilla_verticillata,submersed plant with whorled lanceolate leaves and solitary axillary flowers; Old World plant naturalized in southern United States and clogging Florida's waterways
+47045,hydriodic_acid,(HI) a colorless or yellow aqueous solution of hydrogen iodide; "hydriodic acid is a strong acid"
+47046,hydrobromic_acid,an aqueous solution of hydrogen bromide that is a strong liquid acid
+47047,hydrocarbon,an organic compound containing only carbon and hydrogen
+47048,hydrocele,disorder in which serous fluid accumulates in a body sac (especially in the scrotum)
+47049,hydrocephalus hydrocephaly,an abnormal condition in which cerebrospinal fluid collects in the ventricles of the brain; in infants it can cause abnormally rapid growth of the head and bulging fontanelles and a small face; in adults the symptoms are primarily neurological
+47050,hydrochloric_acid chlorohydric_acid,an aqueous solution of hydrogen chloride; a strongly corrosive acid
+47051,hydrochloride,a complex consisting of an organic base in association with hydrogen chloride
+47052,hydrochlorofluorocarbon HCFC,a fluorocarbon that is replacing chlorofluorocarbon as a refrigerant and propellant in aerosol cans; considered to be somewhat less destructive to the atmosphere
+47053,hydrochlorothiazide Microzide Esidrix HydroDIURIL,a diuretic drug (trade name Microzide, Esidrix, and HydroDIURIL) used in the treatment of hypertension
+47054,hydrocolloid,a substance that forms a gel with water
+47055,hydrocortisone cortisol Hydrocortone Cortef,an adrenal-cortex hormone (trade names Hydrocortone or Cortef) that is active in carbohydrate and protein metabolism
+47056,hydrocracking,the process whereby hydrocarbon molecules of petroleum are broken down into kerosene and gasolene by the addition of hydrogen under high pressure in the presence of a catalyst
+47057,hydrocyanic_acid prussic_acid,a solution of hydrogen cyanide in water; weak solutions are used in fumigating and in the synthesis of organic compounds
+47058,hydrodynamics hydrokinetics,study of fluids in motion
+47059,hydroelectric_turbine,turbine consisting of a large and efficient version of a water wheel used to drive an electric generator
+47060,hydroelectricity,electricity produced by water power
+47061,hydroflumethiazide,diuretic used to treat hypertension and edema
+47062,hydrofluoric_acid,a weak poisonous liquid acid; formed by solution of hydrogen fluoride in water
+47063,hydrofluorocarbon HFC,a fluorocarbon emitted as a by-product of industrial manufacturing
+47064,hydrofoil foil,a device consisting of a flat or curved piece (as a metal plate) so that its surface reacts to the water it is passing through; "the fins of a fish act as hydrofoils"
+47065,hydrofoil hydroplane,a speedboat that is equipped with winglike structures that lift it so that it skims the water at high speeds; "the museum houses a replica of the jet hydroplane that broke the record"
+47066,hydrogel,a colloidal gel in which water is the dispersion medium
+47067,hydrogen H atomic_number_1,a nonmetallic univalent element that is normally a colorless and odorless highly flammable diatomic gas; the simplest and lightest and most abundant element in the universe
+47068,hydrogen_atom,an atom of hydrogen
+47069,hydrogen_bomb H-bomb fusion_bomb thermonuclear_bomb,a nuclear weapon that releases atomic energy by union of light (hydrogen) nuclei at high temperatures to form helium
+47070,hydrogen_bond,a chemical bond consisting of a hydrogen atom between two electronegative atoms (e.g., oxygen or nitrogen) with one side be a covalent bond and the other being an ionic bond
+47071,hydrogen_bromide,a colorless gas that yields hydrobromic acid in solution with water
+47072,hydrogen_chloride,a colorless corrosive gas (HCl)
+47073,hydrogen_cyanide,a highly poisonous gas or volatile liquid that smells like bitter almonds; becomes a gas at around 90 degree Fahrenheit and is most dangerous when inhaled; the anhydride of hydrocyanic acid; used in manufacturing
+47074,hydrogen_fluoride,a colorless poisonous corrosive liquid made by the action of sulphuric acid on calcium fluoride; solutions in water are hydrofluoric acid
+47075,hydrogen_iodide,a colorless gas that yields hydroiodic acid in aqueous solution
+47076,hydrogen_ion,a positively charged atom of hydrogen; that is to say, a normal hydrogen atomic nucleus
+47077,hydrogen_ion_concentration,the number of moles of hydrogen ions per cubic decimeter
+47078,hydrogen_peroxide peroxide,a viscous liquid with strong oxidizing properties; a powerful bleaching agent; also used (in aqueous solutions) as a mild disinfectant and (in strong concentrations) as an oxidant in rocket fuels
+47079,hydrogen_sulfide,a sulfide having the unpleasant smell of rotten eggs
+47080,hydrogenation,a chemical process that adds hydrogen atoms to an unsaturated oil; "food producers use hydrogenation to keep fat from becoming rancid"
+47081,hydrography,the science of the measurement and description and mapping of the surface waters of the earth with special reference to navigation
+47082,hydroiodic_acid,an acid formed by aqueous solution of hydrogen iodide
+47083,hydrologist,a geologist skilled in hydrology
+47084,hydrology,the branch of geology that studies water on the earth and in the atmosphere: its distribution and uses and conservation
+47085,hydrolysate,a product of hydrolysis
+47086,hydrolysis,a chemical reaction in which water reacts with a compound to produce other compounds; involves the splitting of a bond and the addition of the hydrogen cation and the hydroxide anion from the water
+47087,hydromancer,one who practices hydromancy
+47088,hydromancy,divination by water (as by patterns seen in the ebb and flow of the tides)
+47089,hydromel,honey diluted in water; becomes mead when fermented
+47090,hydrometer gravimeter,a measuring instrument for determining the specific gravity of a liquid or solid
+47091,hydrometry gravimetry,the measurement of specific gravity
+47092,hydromorphone_hydrochloride hydromorphone Dilaudid,a narcotic analgesic (trade name Dilaudid) used to treat moderate to severe pain
+47093,hydronephrosis,accumulation of urine in the kidney because of an obstruction in the ureter
+47094,hydropathy hydrotherapy,the internal and external use of water in the treatment of disease
+47095,hydrophobia,a symptom of rabies in humans consisting of an aversion to swallowing liquids
+47096,hydrophobia,a morbid fear of water
+47097,hydrophobicity,the property of being water-repellent; tending to repel and not absorb water
+47098,hydroplane_racing,racing in high-speed motor boats
+47099,hydroponics aquiculture tank_farming,a technique of growing plants (without soil) in water containing dissolved nutrients
+47100,hydrosphere,the watery layer of the earth's surface; includes water vapor
+47101,hydrostatic_head,the pressure at a given point in a liquid measured in terms of the vertical height of a column of the liquid needed to produce the same pressure
+47102,hydrostatics,study of the mechanical properties of fluids that are not in motion
+47103,hydrothorax,accumulation of fluid in the pleural cavity (the space between the lungs and the walls of the chest) often resulting from disease of the heart or kidneys
+47104,hydroxide,a chemical compound containing the hydroxyl group
+47105,hydroxide hydrated_oxide,a compound of an oxide with water
+47106,hydroxide_ion hydroxyl_ion,the anion OH having one oxygen and one hydrogen atom
+47107,hydroxy_acid,any acid that has hydroxyl groups in addition to the hydroxyl group in the acid itself
+47108,hydroxybenzoic_acid,a crystalline derivative of benzoic acid
+47109,hydroxybutyric_acid oxybutyric_acid,hydroxy derivative of butyric acid
+47110,hydroxychloroquine Plaquenil,anti-inflammatory drug (trade name Plaquenil) used in the treatment of rheumatoid arthritis and malaria and lupus erythematosus
+47111,hydroxyl hydroxyl_group hydroxyl_radical,the monovalent group -OH in such compounds as bases and some acids and alcohols
+47112,hydroxymethyl,a methyl with hydroxide replacing the hydrogen atoms
+47113,hydroxyproline,a crystalline amino acid obtained from gelatin or collagen
+47114,hydroxyzine_hydrochloride hydroxyzine Atarax Vistaril,a drug (trade names Atarax and Vistaril) used as a tranquilizer to treat anxiety and motion sickness
+47115,hydrozoan hydroid,colonial coelenterates having the polyp phase dominant
+47116,hyena hyaena,doglike nocturnal mammal of Africa and southern Asia that feeds chiefly on carrion
+47117,hygiene,a condition promoting sanitary practices; "personal hygiene"
+47118,hygiene hygienics,the science concerned with the prevention of illness and maintenance of health
+47119,hygienist,a medical specialist in hygiene
+47120,hygrodeik,a wet and dry bulb hygrometer
+47121,hygrometer,measuring instrument for measuring the relative humidity of the atmosphere
+47122,hygrophyte,a plant that grows in a moist habitat
+47123,hygroscope,hygrometer that shows variations in the relative humidity of the atmosphere
+47124,hymen maidenhead virginal_membrane,a fold of tissue that partly covers the entrance to the vagina of a virgin
+47125,hymeneal,a wedding hymn
+47126,hymenium,spore-bearing layer of cells in certain fungi containing asci or basidia
+47127,hymenopterous_insect hymenopteran hymenopteron hymenopter,insects having two pairs of membranous wings and an ovipositor specialized for stinging or piercing
+47128,hymn anthem,a song of praise (to God or to a saint or to a nation)
+47129,hymnal hymnbook hymnary,a songbook containing a collection of hymns
+47130,hyoid hyoid_bone os_hyoideum,a U-shaped bone at the base of the tongue that supports the tongue muscles
+47131,hyoscyamine,a poisonous crystalline alkaloid (isometric with atropine but more potent); used to treat excess motility of the gastrointestinal tract
+47132,hypallage,reversal of the syntactic relation of two words (as in `her beauty's face')
+47133,hypanthium floral_cup calyx_tube,the cuplike or ringlike or tubular structure of a flower which bears the sepals and stamens and calyx (as in Rosaceae)
+47134,hyper-eutectoid_steel,a steel that contains more than 0.9% carbon
+47135,hyperacidity,excessive acidity
+47136,hyperactivity,a condition characterized by excessive restlessness and movement
+47137,hyperacusis hyperacusia auditory_hyperesthesia,abnormal acuteness of hearing due to increased irritability of the sensory neural mechanism; characterized by intolerance for ordinary sound levels
+47138,hyperbaric_chamber,a large chamber in which the oxygen pressure is above normal for the atmosphere; used in treating breathing disorders or carbon monoxide poisoning
+47139,hyperbaton,reversal of normal word order (as in `cheese I love')
+47140,hyperbetalipoproteinemia,a genetic disorder characterized by high levels of beta-lipoproteins and cholesterol; can lead to atherosclerosis at an early age
+47141,hyperbilirubinemia,abnormally high amounts of bile pigment (bilirubin) in the blood
+47142,hyperbilirubinemia_of_the_newborn neonatal_hyperbilirubinemia,a common disorder that is usually due to immaturity of the liver; usually subsides spontaneously
+47143,hyperbola,an open curve formed by a plane that cuts the base of a right circular cone
+47144,hyperbole exaggeration,extravagant exaggeration
+47145,hyperbolic_geometry,(mathematics) a non-Euclidean geometry in which the parallel axiom is replaced by the assumption that through any point in a plane there are two or more lines that do not intersect a given line in the plane; "Karl Gauss pioneered hyperbolic geometry"
+47146,hyperboloid,a quadric surface generated by rotating a hyperbola around its main axis
+47147,hypercalcemia hypercalcaemia,the presence of abnormally high levels of calcium in the blood; usually the result of excessive bone resorption in hyperparathyroidism or Paget's disease
+47148,hypercalciuria hypercalcinuria,the presence of abnormally high levels of calcium in the urine; usually the result of excessive bone resorption in hyperparathyroidism or osteoporosis
+47149,hypercapnia hypercarbia,the physical condition of having the presence of an abnormally high level of carbon dioxide in the circulating blood
+47150,hypercatalectic,(prosody) a line of poetry having an extra syllable or syllables at the end of the last metrical foot
+47151,hypercellularity,the state of having abnormally many cells
+47152,hypercholesterolemia hypercholesteremia,the presence of an abnormal amount of cholesterol in the cells and plasma of the blood; associated with the risk of atherosclerosis
+47153,hyperchromic_anemia hyperchromic_anaemia,anemia characterized by an increase in the concentration of corpuscular hemoglobin
+47154,hypercoaster,a roller coaster that goes up 200 feet or higher and can catapult riders from 0 to 70 mph in 4 seconds by motors originally designed to launch rockets
+47155,hyperemesis,severe and excessive vomiting
+47156,hyperemesis_gravidarum,hyperemesis during pregnancy; if severe it can result in damage to the brain and liver and kidney
+47157,hyperemia hyperaemia,increased blood in an organ or other body part
+47158,hyperextension,greater than normal extension
+47159,hyperfocal_distance,the distance in front of a lens that is focused at infinity beyond which all objects are well defined and clear
+47160,hyperglycemia hyperglycaemia,abnormally high blood sugar usually associated with diabetes
+47161,hyperhidrosis hyperidrosis polyhidrosis,excessive and profuse perspiration
+47162,hypericism,a severe dermatitis of herbivorous domestic animals attributable to photosensitivity from eating Saint John's wort
+47163,hyperkalemia,higher than normal levels of potassium in the circulating blood; associated with kidney failure or sometimes with the use of diuretic drugs
+47164,hyperlink,a link from a hypertext file to another location or file; typically activated by clicking on a highlighted word or icon at a particular location on the screen
+47165,hyperlipoproteinemia,any of various disorders of lipoprotein and cholesterol metabolism that result in high levels of lipoprotein and cholesterol in the circulating blood
+47166,hypermarket,a huge supermarket (usually built on the outskirts of a town)
+47167,hypermastigote,flagellate symbiotic in the intestines of e.g. termites
+47168,hypermedia hypermedia_system interactive_multimedia interactive_multimedia_system,a multimedia system in which related items of information are connected and can be presented together
+47169,hypermotility,excessive movement; especially excessive motility of the gastrointestinal tract
+47170,hypernatremia,excessive amounts of sodium in the blood; possibly indicating diabetes insipidus
+47171,hypernym superordinate superordinate_word,a word that is more generic than a given word
+47172,hypernymy superordination,the semantic relation of being superordinate or belonging to a higher rank or class
+47173,hyperon,any baryon that is not a nucleon; unstable particle with mass greater than a neutron
+47174,hyperope,a person with hyperopia; a farsighted person
+47175,hyperopia hypermetropia hypermetropy farsightedness longsightedness,abnormal condition in which vision for distant objects is better than for near objects
+47176,hyperparathyroidism,excessive secretion of parathyroid hormone resulting in abnormally high levels of calcium in the blood; can affect many systems of the body (especially causing bone resorption and osteoporosis)
+47177,hyperpigmentation,unusual darkening of the skin
+47178,hyperpituitarism,excessive activity of the pituitary gland (especially overactivity of the anterior lobe which leads to excess secretion of growth hormone)
+47179,hyperplasia,abnormal increase in number of cells
+47180,hyperpnea,energetic (deep and rapid) respiration that occurs normally after exercise or abnormally with fever or various disorders
+47181,hyperpyrexia,extremely high fever (especially in children)
+47182,hypersecretion,excessive secretion
+47183,hypersensitivity,pathological sensitivity
+47184,hypersensitivity,extreme sensitivity
+47185,hypersensitivity_reaction,an inappropriate and excessive reaction to an allergen (as pollen or dust or animal hair or certain foods); severity ranges from mild allergy to severe systemic reactions leading to anaphylactic shock
+47186,hypersomnia,an inability to stay awake
+47187,hypersplenism,enlarged spleen and a decrease in one or more types of blood cells; associated with many disorders
+47188,hypertensive,a person who has abnormally high blood pressure
+47189,hypertext,machine-readable text that is not sequential but is organized so that related items of information are connected; "Let me introduce the word hypertext to mean a body of written or pictorial material interconnected in such a complex way that it could not conveniently be presented or represented on paper"--Ted Nelson
+47190,hypertext_markup_language hypertext_mark-up_language HTML,a set of tags and rules (conforming to SGML) for using them in developing hypertext documents
+47191,hypertext_system,a database management system that allows strings of text (`objects') to be processed as a complex network of nodes that are linked together in an arbitrary way
+47192,hypertext_transfer_protocol HTTP,a protocol (utilizing TCP) to transfer hypertext requests and information between servers and browsers
+47193,hyperthermia hyperthermy,abnormally high body temperature; sometimes induced (as in treating some forms of cancer)
+47194,hyperthyroidism thyrotoxicosis,an overactive thyroid gland; pathologically excessive production of thyroid hormones or the condition resulting from excessive production of thyroid hormones
+47195,hypertonia hypertonus hypertonicity,(of muscular tissue) the state of being hypertonic
+47196,hypertonicity,(of a solution) the extent to which a solution has a higher osmotic pressure than some other
+47197,hypertrophic_cardiomyopathy,a disorder in which the heart muscle is so strong that it does not relax enough to fill with the heart with blood and so has reduced pumping ability
+47198,hypertrophy,abnormal enlargement of a body part or organ
+47199,hypervelocity,excessive velocity; "the meteorites struck the earth with hypervelocity impacts"
+47200,hyperventilation,an increased depth and rate of breathing greater than demanded by the body needs; can cause dizziness and tingling of the fingers and toes and chest pain if continued
+47201,hypervitaminosis,an abnormal condition resulting from taking vitamins excessively; can be serious for vitamins A or D or K
+47202,hypervolemia hypervolaemia,a blood disorder consisting of an increase in the volume of circulating blood
+47203,hypha,any of the threadlike filaments forming the mycelium of a fungus
+47204,hyphema,bleeding into the interior chamber of the eye
+47205,hyphen dash,a punctuation mark (-) used between parts of a compound word or between the syllables of a word when the word is divided at the end of a line of text
+47206,hyphenation,connecting syllables and words by hyphens
+47207,hypnagogue,an agent that induces drowsiness or sleep
+47208,hypnoanalysis,the use of hypnosis in conjunction with psychoanalysis
+47209,hypnogenesis,the induction of sleep or hypnosis
+47210,hypnophobia,a morbid fear of falling asleep
+47211,hypnosis,a state that resembles sleep but that is induced by suggestion
+47212,hypnotherapy,the use of hypnosis in psychotherapy
+47213,hypnotic_trance,a trance induced by the use of hypnosis; the person accepts the suggestions of the hypnotist
+47214,hypnotism mesmerism suggestion,the act of inducing hypnosis
+47215,hypnotist hypnotizer hypnotiser mesmerist mesmerizer,a person who induces hypnosis
+47216,hypo sodium_thiosulphate sodium_thiosulfate,a compound used as a fixing agent in photographic developing
+47217,hypo-eutectoid_steel,a steel that contains less that 0.9% carbon
+47218,hypobasidium,special cell constituting the base of the basidium in various fungi especially of the order Tremellales
+47219,hypobetalipoproteinemia,a hereditary disorder characterized by low levels of beta-lipoproteins and lipids and cholesterol
+47220,hypocalcemia hypocalcaemia,abnormally low level of calcium in the blood; associated with hypoparathyroidism or kidney malfunction or vitamin D deficiency
+47221,hypocapnia acapnia,a state in which the level of carbon dioxide in the blood is lower than normal; can result from deep or rapid breathing
+47222,hypocellularity,the state of having abnormally few cells
+47223,hypochlorite,any salt or ester of hypochlorous acid
+47224,hypochlorous_acid,a weak unstable acid known only in solution and in its salts; used as a bleaching agent and as an oxidizing agent
+47225,hypochondria hypochondriasis,chronic and abnormal anxiety about imaginary symptoms and ailments
+47226,hypochondriac,a patient with imaginary symptoms and ailments
+47227,hypochondrium,the upper region of the abdomen just below the lowest ribs on either side of the epigastrium
+47228,hypochromic_anemia hypochromic_anaemia,anemia characterized by a decrease in the concentration of corpuscular hemoglobin
+47229,hypocrisy,insincerity by virtue of pretending to have qualities or beliefs that you do not really have
+47230,hypocrisy lip_service,an expression of agreement that is not supported by real conviction
+47231,hypocrite dissembler dissimulator phony phoney pretender,a person who professes beliefs and opinions that he or she does not hold in order to conceal his or her real feelings or motives
+47232,hypocycloid,a line generated by a point on a circle that rolls around inside another circle
+47233,hypodermic_needle,a hollow needle
+47234,hypodermic_syringe hypodermic hypo,a piston syringe that is fitted with a hypodermic needle for giving injections
+47235,hypodermis,layer of cells that secretes the chitinous cuticle in e.g. arthropods
+47236,hypoesthesia hypesthesia,impairment of tactile sensitivity; decrease of sensitivity
+47237,hypogammaglobulinemia,an abnormally low concentration of gamma globulin in the blood and increased risk of infection
+47238,hypogastric_plexus plexus_hypogastricus,a plexus of nerves serving the pelvic viscera
+47239,hypogastric_vein internal_iliac_vein,a vein that unites with the external iliac vein to form the common iliac vein
+47240,hypoglossal hypoglossal_nerve nervus_hypoglosus twelfth_cranial_nerve,supplies intrinsic muscles of the tongue and other tongue muscles
+47241,hypoglycemia hypoglycaemia,abnormally low blood sugar usually resulting from excessive insulin or a poor diet
+47242,hypoglycemic_agent hypoglycaemic_agent,any of various agents that decrease the level of glucose in the blood and are used in the treatment of diabetes mellitus
+47243,hypogonadism,incompetence of the gonads (especially in the male with low testosterone); results in deficient development of secondary sex characteristics and (in prepubertal males) a body with long legs and a short trunk
+47244,hypokalemia,abnormally low level of potassium in the circulating blood leading to weakness and heart abnormalities; associated with adrenal tumors or starvation or taking diuretics
+47245,hypolipoproteinemia,any of various disorders of lipoprotein and cholesterol metabolism that result in low levels of lipoprotein and cholesterol in the circulating blood
+47246,hyponatremia,abnormally low level of sodium in the blood; associated with dehydration
+47247,hyponitrous_acid,an explosive white crystalline weak acid (H2N2O2)
+47248,hyponym subordinate subordinate_word,a word that is more specific than a given word
+47249,hyponymy subordination,the semantic relation of being subordinate or belonging to a lower rank or class
+47250,hypoparathyroidism,inadequate secretion of parathyroid hormone resulting in abnormally low levels of calcium in the blood
+47251,hypophosphoric_acid,a crystalline tetrabasic acid (H4P2O6)
+47252,hypophosphorous_acid phosphorous_acid orthophosphorous_acid,a clear or yellow monobasic acid (H3PO2)
+47253,hypophyseal_stalk,the funnel-shaped stalk connecting the pituitary gland to the hypothalamus
+47254,hypophysectomy,surgical removal of the pituitary gland
+47255,hypopigmentation,unusual lack of skin color
+47256,hypoplasia,underdevelopment of an organ because of a decrease in the number of cells
+47257,hypoplastic_anemia hypoplastic_anaemia,anemia resulting from inadequately functioning bone marrow; can develop into aplastic anemia
+47258,hypopnea,slow or shallow breathing
+47259,hypoproteinemia,abnormally low level of protein in the blood; can indicate inadequate diet or intestinal or renal disorders
+47260,hyposmia,lessened sensitivity to odors
+47261,hypospadias,an abnormal condition in males in which the urethra opens on the under surface of the penis
+47262,hypostasis,the accumulation of blood in an organ
+47263,hypostasis,(metaphysics) essential nature or underlying reality
+47264,hypostasis epistasis,the suppression of a gene by the effect of an unrelated gene
+47265,hypostasis hypostasis_of_Christ,any of the three persons of the Godhead constituting the Trinity especially the person of Christ in which divine and human natures are united
+47266,hypostatization hypostatisation reification,regarding something abstract as a material thing
+47267,hypotension,abnormally low blood pressure
+47268,hypotensive,a person who has abnormally low blood pressure
+47269,hypotenuse,the side of a right triangle opposite the right angle
+47270,hypothalamus,a basal part of the diencephalon governing autonomic nervous system
+47271,hypothermia,subnormal body temperature
+47272,hypothesis,a proposal intended to explain certain facts or observations
+47273,hypothesis possibility theory,a tentative insight into the natural world; a concept that is not yet verified but that if true would explain certain facts or phenomena; "a scientific hypothesis that survives experimental testing becomes a scientific theory"; "he proposed a fresh theory of alkalis that later was accepted in chemical practices"
+47274,hypothetical,a hypothetical possibility, circumstance, statement, proposal, situation, etc.; "consider the following, just as a hypothetical"
+47275,hypothetical_creature,a creature that has not been observed but is hypothesized to exist
+47276,hypothetical_imperative,a principle stating the action required to attain a desired goal
+47277,hypothrombinemia,a low level of prothrombin (factor II) in the circulating blood; results in long clotting time and poor clot formation and sometimes excessive bleeding; can result from vitamin K deficiency
+47278,hypothyroidism,an underactive thyroid gland; a glandular disorder resulting from insufficient production of thyroid hormones
+47279,hypotonia hypotonus hypotonicity,(of muscular tissue) the state of being hypotonic
+47280,hypotonicity,(of a solution) the extent to which a solution has a lower osmotic pressure than some other
+47281,hypovolemia hypovolaemia,a blood disorder consisting of a decrease in the volume of circulating blood
+47282,hypovolemic_shock,shock caused by severe blood or fluid loss
+47283,hypoxia,oxygen deficiency causing a very strong drive to correct the deficiency
+47284,hypoxic_hypoxia,hypoxia resulting from defective oxygenation of the blood in the lungs
+47285,hypozeugma,use of a series of subjects with a single predicate
+47286,hypozeuxis,use of a series of parallel clauses (as in `I came, I saw, I conquered')
+47287,hypsography,the scientific study of the earth's configuration above sea level (emphasizing the measurement of land altitudes relative to sea level)
+47288,hypsometer,an altimeter that uses the boiling point of water to determine land elevation
+47289,hypsometry hypsography,measurement of the elevation of land above sea level
+47290,hyrax coney cony dassie das,any of several small ungulate mammals of Africa and Asia with rodent-like incisors and feet with hooflike toes
+47291,hyson,a Chinese green tea with twisted leaves
+47292,hyssop,bitter leaves used sparingly in salads; dried flowers used in soups and tisanes
+47293,hyssop Hyssopus_officinalis,a European mint with aromatic and pungent leaves used in perfumery and as a seasoning in cookery; often cultivated as a remedy for bruises; yields hyssop oil
+47294,hyssop_oil,used chiefly in liqueurs
+47295,hysterectomy,surgical removal of the uterus
+47296,hysteresis,the lagging of an effect behind its cause; especially the phenomenon in which the magnetic induction of a ferromagnetic material lags behind the changing magnetic field
+47297,hysteria,excessive or uncontrollable fear
+47298,hysteria hysterical_neurosis,neurotic disorder characterized by violent emotional outbreaks and disturbances of sensory and motor functions
+47299,hysteric,a person suffering from hysteria
+47300,hysterics,an attack of hysteria
+47301,hysterocatalepsy,hysteria with cataleptic symptoms
+47302,hysteron_proteron,reversal of normal order of two words or sentences etc. (as in `bred and born')
+47303,hysteron_proteron,the logical fallacy of using as a true premise a proposition that is yet to be proved
+47304,hysterosalpingogram,X ray of the uterus and Fallopian tubes; usually done in diagnosing infertility (to see if there any blockages)
+47305,hysteroscopy,visual examination of the uterus and uterine lining using an endoscope inserted through the vagina
+47306,hysterotomy,surgical incision into the uterus (as in cesarean section)
+47307,iPod,(trademark) a pocket-sized device used to play music files
+47308,iamb iambus,a metrical unit with unstressed-stressed syllables
+47309,iambic,a verse line consisting of iambs
+47310,ibex Capra_ibex,wild goat of mountain areas of Eurasia and northern Africa having large recurved horns
+47311,ibis,wading birds of warm regions having long slender down-curved bills
+47312,ibolium_privet ibota_privet Ligustrum_ibolium,fast-growing and tightly branched hybrid of Ligustrum ovalifolium and Ligustrum obtusifolium
+47313,ibuprofen isobutylphenyl_propionic_acid Advil Motrin Nuprin,a nonsteroidal anti-inflammatory and analgesic medicine (trade names Advil and Motrin and Nuprin) used to relieve the pain of arthritis and as an antipyretic; "daily use of ibuprofen can irritate the stomach"
+47314,ice,the frozen part of a body of water
+47315,ice frappe,a frozen dessert with fruit flavoring (especially one containing no milk)
+47316,ice sparkler,diamonds; "look at the ice on that dame!"
+47317,ice water_ice,water frozen in the solid state; "Americans like ice in their drinks"
+47318,ice-cream_bean Inga_edulis,ornamental evergreen tree with masses of white flowers; tropical and subtropical America
+47319,ice-cream_cake icebox_cake,ice cream molded to look like a cake
+47320,ice-cream_cone,ice cream in a crisp conical wafer
+47321,ice-cream_soda ice-cream_float float,a drink with ice cream floating in it
+47322,ice-cream_sundae sundae,ice cream served with a topping
+47323,ice-skater,someone who engages in ice skating
+47324,ice_age glacial_period glacial_epoch,any period of time during which glaciers covered a large part of the earth's surface; "the most recent ice age was during the Pleistocene"
+47325,ice_ax ice_axe piolet,an ax used by mountain climbers for cutting footholds in ice
+47326,ice_bear polar_bear Ursus_Maritimus Thalarctos_maritimus,white bear of Arctic regions
+47327,ice_cream icecream,frozen dessert containing cream and sugar and flavoring
+47328,ice_crystal snow_mist diamond_dust poudrin ice_needle frost_snow frost_mist,small crystals of ice
+47329,ice_cube,a small cube of artificial ice; used for cooling drinks
+47330,ice_field,a large flat mass of ice (larger than an ice floe) floating at sea
+47331,ice_floe floe,a flat mass of ice (smaller than an ice field) floating at sea
+47332,ice_fog pogonip,a dense winter fog containing ice particles
+47333,ice_hockey hockey hockey_game,a game played on an ice rink by two opposing teams of six skaters each who try to knock a flat round puck into the opponents' goal with angled hockey sticks
+47334,ice_hockey_rink ice-hockey_rink,an ice rink for playing ice hockey
+47335,ice_lolly lolly lollipop popsicle,ice cream or water ice on a small wooden stick; "in England a popsicle is called an ice lolly"
+47336,ice_machine,an electric refrigerator to supply ice cubes
+47337,ice_maker,an appliance included in some electric refrigerators for making ice cubes
+47338,ice_mass,a large mass of ice
+47339,ice_milk,similar to ice cream but made of milk
+47340,ice_pack ice_bag,a waterproof bag filled with ice: applied to the body (especially the head) to cool or reduce swelling
+47341,ice_plant icicle_plant Mesembryanthemum_crystallinum,Old World annual widely naturalized in warm regions having white flowers and fleshy foliage covered with hairs that resemble ice
+47342,ice_rink ice-skating_rink ice,a rink with a floor of ice for ice hockey or ice skating; "the crowd applauded when she skated out onto the ice"
+47343,ice_show,any entertainment performed by ice skaters
+47344,ice_skate,skate consisting of a boot with a steel blade fitted to the sole
+47345,ice_skating,skating on ice
+47346,ice_storm silver_storm,a storm with freezing rain that leaves everything glazed with ice
+47347,ice_tea iced_tea,strong tea served over ice
+47348,ice_tongs,tongs for lifting blocks of ice
+47349,ice_wagon ice-wagon,(formerly) a horse-drawn wagon that delivered ice door to door
+47350,ice_water,water served ice-cold or with ice
+47351,iceberg berg,a large mass of ice floating at sea; usually broken off of a polar glacier
+47352,iceboat ice_yacht scooter,a sailing vessel with runners and a cross-shaped frame; suitable for traveling over ice
+47353,icebreaker,a beginning that relaxes a tense or formal atmosphere; "he told jokes as an icebreaker"
+47354,icebreaker iceboat,a ship with a reinforced bow to break up ice and keep channels open for navigation
+47355,icecap ice_cap,a mass of ice and snow that permanently covers a large area of land (e.g., the polar regions or a mountain peak)
+47356,iced-tea_spoon,a teaspoon with a long handle
+47357,iced_coffee ice_coffee,a strong sweetened coffee served over ice with cream
+47358,icefall,a steep part of a glacier resembling a frozen waterfall
+47359,icehouse,a house for storing ice
+47360,iceman,someone who cuts and delivers ice
+47361,icepick ice_pick,pick consisting of a steel rod with a sharp point; used for breaking up blocks of ice
+47362,icetray,a tray for making cubes of ice in a refrigerator
+47363,ichneumon Herpestes_ichneumon,northern African mongoose; in ancient times thought to devour crocodile eggs
+47364,ichneumon_fly,hymenopterous insect that resembles a wasp and whose larvae are parasitic on caterpillars and other insect larvae
+47365,ichor,(Greek mythology) the rarified fluid said to flow in the veins of the Gods
+47366,ichthyolatry fish-worship,the worship of fish
+47367,ichthyologist,a zoologist who studies fishes
+47368,ichthyology,the branch of zoology that studies fishes
+47369,ichthyosaur,any of several marine reptiles of the Mesozoic having a body like a porpoise with dorsal and tail fins and paddle-shaped limbs
+47370,ichthyosaurus,ichthyosaurs of the Jurassic
+47371,ichthyosis,any of several congenital diseases in which the skin is dry and scaly like a fish
+47372,icicle,ice resembling a pendent spear, formed by the freezing of dripping water
+47373,icing icing_the_puck,(ice hockey) the act of shooting the puck from within your own defensive area the length of the rink beyond the opponent's goal
+47374,icing_sugar,finely powdered sugar used to make icing
+47375,icon,(computer science) a graphic symbol (usually a simple picture) that denotes a program or a command or a data file or a concept in a graphical user interface
+47376,icon ikon,a conventional religious painting in oil on a small wooden panel; venerated in the Eastern Church
+47377,iconoclasm,the orientation of an iconoclast
+47378,iconoclast,someone who attacks cherished ideas or traditional institutions
+47379,iconoclast image_breaker,a destroyer of images used in religious worship
+47380,iconography,the images and symbolic representations that are traditionally associated with a person or a subject; "religious iconography"; "the propagandistic iconography of a despot"
+47381,iconolatry,the worship of sacred images
+47382,iconology,the branch of art history that studies visual images and their symbolic meaning (especially in social or political terms)
+47383,iconoscope,the first practical television-camera for picture pickup; invented in 1923 by Vladimir Kosma Zworykin
+47384,icosahedron,any polyhedron having twenty plane faces
+47385,ictodosaur,intermediate in form between the therapsids and most primitive true mammals
+47386,id,(psychoanalysis) primitive instincts and energies underlying all psychic activity
+47387,idea,a personal view; "he has an idea that we don't like him"
+47388,idea thought,the content of cognition; the main thing you are thinking about; "it was not a good idea"; "the thought never entered my mind"
+47389,ideal,the idea of something that is perfect; something that one hopes to attain
+47390,ideal paragon nonpareil saint apotheosis nonesuch nonsuch,model of excellence or perfection of a kind; one having no equal
+47391,ideal_gas perfect_gas,a hypothetical gas with molecules of negligible size that exert no intermolecular forces
+47392,idealism,(philosophy) the philosophical theory that ideas are the only reality
+47393,idealism,impracticality by virtue of thinking of things in their ideal form rather than as they really are
+47394,idealist dreamer,someone guided more by ideals than by practical considerations
+47395,ideality,the quality of being ideal
+47396,idealization idealisation,(psychiatry) a defense mechanism that splits something you are ambivalent about into two representations--one good and one bad
+47397,idealization idealisation,something that exists only as an idea
+47398,idealization idealisation glorification,a portrayal of something as ideal; "the idealization of rural life was very misleading"
+47399,ideation,the process of forming and relating ideas
+47400,identical_twin monozygotic_twin monozygous_twin,either of two twins developed from the same fertilized ovum (having the same genetic material)
+47401,identification,the condition of having the identity (of a person or object) established; "the thief's identification was followed quickly by his arrest"; "identification of the gun was an important clue"
+47402,identification,evidence of identity; something that identifies a person or thing
+47403,identification,the attribution to yourself (consciously or unconsciously) of the characteristics of another person (or group of persons)
+47404,identification_particle,a tiny particle of material that can be added to a product to indicate the source of manufacture
+47405,identifier,a symbol that establishes the identity of the one bearing it
+47406,identity,the individual characteristics by which a thing or person is recognized or known; "geneticists only recently discovered the identity of the gene that causes it"; "it was too dark to determine his identity"; "she guessed the identity of his lover"
+47407,identity identicalness indistinguishability,exact sameness; "they shared an identity of interests"
+47408,identity identity_element identity_operator,an operator that leaves unchanged the element on which it operates; "the identity under numerical multiplication is 1"
+47409,identity personal_identity individuality,the distinct personality of an individual regarded as a persisting entity; "you can lose your identity when you join the army"
+47410,identity_crisis,distress and disorientation (especially in adolescence) resulting from conflicting pressures and uncertainty about one's self and one's role in society
+47411,identity_matrix unit_matrix,a scalar matrix in which all of the diagonal elements are unity
+47412,identity_theft,the co-option of another person's personal information (e.g., name, Social Security number, credit card number, passport) without that person's knowledge and the fraudulent use of such knowledge
+47413,ideogram ideograph,a graphic character that indicates the meaning of a thing without indicating the sounds used to say it; "Chinese characters are ideograms"
+47414,ideography,the use of ideograms in writing
+47415,ideological_barrier,a barrier to cooperation or interaction resulting from conflicting ideologies
+47416,ideologist ideologue,an advocate of some ideology
+47417,ideology,imaginary or visionary theorization
+47418,ides,in the Roman calendar: the 15th of March or May or July or October or the 13th of any other month
+47419,idesia Idesia_polycarpa,deciduous roundheaded Asiatic tree widely grown in mild climates as an ornamental for its heart-shaped leaves and fragrant yellow-green flowers followed by hanging clusters of fleshy orange-red berries
+47420,idiocy amentia,extreme mental retardation
+47421,idiolatry autolatry self-worship,the worship of yourself
+47422,idiolect,the language or speech of one individual at a particular period in life
+47423,idiom idiomatic_expression phrasal_idiom set_phrase phrase,an expression whose meanings cannot be inferred from the meanings of the words that make it up
+47424,idiopathic_disease idiopathic_disorder idiopathy,any disease arising from internal dysfunctions of unknown cause
+47425,idiosyncrasy foible mannerism,a behavioral attribute that is distinctive and peculiar to an individual
+47426,idiot imbecile cretin moron changeling half-wit retard,a person of subnormal intelligence
+47427,idiot_light,a colored warning light on an instrument panel (as for low oil pressure)
+47428,idiot_savant,person who is mentally retarded in general but who displays remarkable aptitude in some limited field (usually involving memory)
+47429,idle,the state of an engine or other mechanism that is idling; "the car engine was running at idle"
+47430,idle_pulley idler_pulley idle_wheel,a pulley on a shaft that presses against a guide belt to guide or tighten it
+47431,idleness idling loafing,having no employment
+47432,idler loafer do-nothing layabout bum,person who does no work; "a lazy bum"
+47433,idol graven_image god,a material effigy that is worshipped; "thou shalt not make unto thee any graven image"; "money was his god"
+47434,idol matinee_idol,someone who is adored blindly and excessively
+47435,idolater idolizer idoliser idol_worshiper,a person who worships idols
+47436,idolatress,a woman idolater
+47437,idolatry idol_worship,the worship of idols; the worship of physical objects or images as gods
+47438,idolization idolisation,the act of worshiping blindly and to excess
+47439,idolizer idoliser,a lover blind with admiration and devotion
+47440,idyll,an episode of such pastoral or romantic charm as to qualify as the subject of a poetic idyll
+47441,igloo iglu,an Eskimo hut; usually built of blocks (of sod or snow) in the shape of a dome
+47442,igneous_rock,rock formed by the solidification of molten magma
+47443,igniter ignitor lighter,a substance used to ignite or kindle a fire
+47444,ignition,the process of initiating combustion or catching fire
+47445,ignition firing lighting kindling inflammation,the act of setting something on fire
+47446,ignition ignition_system,the mechanism that ignites the fuel in an internal-combustion engine
+47447,ignition_coil,an induction coil that converts current from a battery into the high-voltage current required by spark plugs
+47448,ignition_key,a key that operates the ignition switch of an automotive engine
+47449,ignition_switch,switch that operates a solenoid that closes a circuit to operate the starter
+47450,ignobleness ignobility,the quality of being ignoble
+47451,ignoramus know_nothing uneducated_person,an ignorant person
+47452,ignorance,the lack of knowledge or education
+47453,ignorantness nescience unknowing unknowingness,ignorance (especially of orthodox beliefs)
+47454,ignoratio_elenchi,the logical fallacy of supposing that an argument proving an irrelevant point has proved the point at issue
+47455,iguanid iguanid_lizard,lizards of the New World and Madagascar and some Pacific islands; typically having a long tail and bright throat patch in males
+47456,iguanodon,massive herbivorous bipedal dinosaur with a long heavy tail; common in Europe and northern Africa; early Cretaceous period
+47457,ijtihad,the endeavor of a Moslem scholar to derive a rule of divine law from the Koran and Hadith without relying on the views of other scholars; by the end of the 10th century theologians decided that debate on such matters would be closed and Muslim theology and law were frozen; "some reform-minded Islamic scholars believe that reopening ijtihad is a prerequisite for the survival of Islam"
+47458,ilama,whitish tropical fruit with a pinkish tinge related to custard apples; grown in the southern United States
+47459,ilama ilama_tree Annona_diversifolia,tropical American tree grown in southern United States having a whitish pink-tinged fruit
+47460,ilang-ilang,oil distilled from flowers of the ilang-ilang tree; used in perfumery
+47461,ilang-ilang ylang-ylang Cananga_odorata,evergreen Asian tree with aromatic greenish-yellow flowers yielding a volatile oil; widely grown in the tropics as an ornamental
+47462,ileal_artery intestinal_artery arteria_ileum,branch of the superior mesenteric artery that supplies the ileum
+47463,ileitis,inflammation of the ileum
+47464,ileocecal_valve,valve between the ileum of the small intestine and the cecum of the large intestine; prevents material from flowing back from the large to the small intestine
+47465,ileocolic_artery arteria_ileocolica,an artery that originates from the superior mesenteric artery and supplies the terminal part of the ileum and the cecum and the vermiform appendix and the ascending colon
+47466,ileocolic_vein vena_ileocolica,a vein that drains the end of the ileum and the appendix and the cecum and the lower part of the ascending colon
+47467,ileostomy,surgical procedure that creates an opening from the ileum through the abdominal wall to function as an anus; performed in cases of cancer of the colon or ulcerative colitis
+47468,ileum,the part of the small intestine between the jejunum and the cecum
+47469,iliac_artery arteria_iliaca,one of the large arteries supplying blood to the pelvis and legs
+47470,iliac_vein vena_iliaca,one of three veins draining the pelvic area
+47471,iliolumbar_artery arteria_iliolumbalis,an artery that originates in the internal iliac artery and supplies the pelvic muscles and bones
+47472,iliolumbar_vein vena_iliolumbalis,a branch of the internal iliac vein
+47473,ilium,the upper and widest of the three bones making up the hipbone
+47474,ill-being,lack of prosperity or happiness or health
+47475,ill_health unhealthiness health_problem,a state in which you are unable to function normally and without pain
+47476,ill_humor ill_humour distemper,an angry and disagreeable mood
+47477,ill_nature,a disagreeable, irritable, or malevolent disposition
+47478,illegal_possession,possession of controlled substances
+47479,illegality,unlawfulness by virtue of violating some legal statute
+47480,illegibility,the quality of writing (print or handwriting) that cannot be deciphered
+47481,illegitimacy,unlawfulness by virtue of not being authorized by or in accordance with law
+47482,illiberality,a disposition not to be liberal (generous) with money
+47483,illicitness,the quality of not conforming strictly to law
+47484,illiteracy,ignorance resulting from not reading
+47485,illiteracy analphabetism,an inability to read
+47486,illiterate illiterate_person nonreader,a person unable to read
+47487,illness unwellness malady sickness,impairment of normal physiological function affecting part or all of an organism
+47488,illogicality illogicalness illogic inconsequence,invalid or incorrect reasoning
+47489,illuminance illumination,the luminous flux incident on a unit area
+47490,illuminant,something that can serve as a source of light
+47491,illumination,the degree of visibility of your environment
+47492,illumination_unit,a measure of illumination
+47493,illusion fantasy phantasy fancy,something many people believe that is false; "they have the illusion that I am very wealthy"
+47494,illusion semblance,an erroneous mental representation
+47495,illustration,artwork that helps make something clear or attractive
+47496,illustration,a visual representation (a picture or diagram) that is used make some subject more pleasing or easier to understand
+47497,illustrator,an artist who makes illustrations (for books or magazines or advertisements etc.)
+47498,ilmenite,a weakly magnetic black mineral found in metamorphic and plutonic rocks; an iron titanium oxide in crystalline form; a source of titanium
+47499,image,the general impression that something (a person or organization or product) presents to the public; "although her popular image was contrived it served to inspire music and pageantry"; "the company tried to project an altruistic image"
+47500,image mental_image,an iconic mental representation; "her imagination forced images upon her too awful to contemplate"
+47501,image range range_of_a_function,(mathematics) the set of values of the dependent variable for which a function is defined; "the image of f(x) = x^2 is the set of all non-negative real numbers if the domain of the function is the set of all real numbers"
+47502,image_compression,the compression of graphics for storage or transmission
+47503,imaginary_being imaginary_creature,a creature of the imagination; a person that exists only in legends or myths or fiction
+47504,imaginary_part imaginary_part_of_a_complex_number,the part of a complex number that has the square root of -1 as a factor
+47505,imaginary_place mythical_place fictitious_place,a place that exists only in imagination; a place said to exist in fictional or religious writings
+47506,imagination imaginativeness vision,the formation of a mental image of something that is not perceived as real and is not present to the senses; "popular imagination created a world of demons"; "imagination reveals what the world could be"
+47507,imagination imaging imagery mental_imagery,the ability to form mental images of things or events; "he could still hear her in his imagination"
+47508,imagination_image thought-image,a mental image produced by the imagination
+47509,imaginative_comparison,the kind of mental comparison that is expressed in similes or metaphors or allegories
+47510,imaging tomography,(medicine) obtaining pictures of the interior of the body
+47511,imagism,a movement by American and English poets early in the 20th century in reaction to Victorian sentimentality; used common speech in free verse with clear concrete imagery
+47512,imago,(psychoanalysis) an idealized image of someone (usually a parent) formed in childhood
+47513,imago,an adult insect produced after metamorphosis
+47514,imam imaum,(Islam) the man who leads prayers in a mosque; for Shiites an imam is a recognized authority on Islamic theology and law and a spiritual guide
+47515,imaret,a hostel for pilgrims in Turkey
+47516,imbalance instability unbalance,a lack of balance or state of disequilibrium; "a hormonal imbalance"
+47517,imbecility,retardation more severe than a moron but not as severe as an idiot
+47518,imbibition,(chemistry) the absorption of a liquid by a solid or gel
+47519,imbrication overlapping lapping,covering with a design in which one element covers a part of another (as with tiles or shingles)
+47520,imbroglio,a very embarrassing misunderstanding
+47521,imbroglio embroilment,an intricate and confusing interpersonal or political situation
+47522,imidazole iminazole glyoxaline,an organic base C3H4N2; a histamine inhibitor
+47523,imide,any of a class of organic compounds that contain the divalent radical -CONHCO-
+47524,imipramine impramine_hydrochloride Imavate Tofranil,a tricyclic antidepressant (trade names Imavate and Tofranil) used to treat clinical depression
+47525,imitation,the doctrine that representations of nature or human behavior should be accurate imitations
+47526,imitation,something copied or derived from an original
+47527,imitation,copying (or trying to copy) the actions of someone else
+47528,imitative_electronic_deception electronic_imitative_deception,the introduction of electromagnetic energy into enemy systems that imitates enemy emissions
+47529,immanence immanency,the state of being within or not going beyond a given domain
+47530,immateriality,complete irrelevance requiring no further consideration
+47531,immateriality incorporeality,the quality of not being physical; not consisting of matter
+47532,immaturity immatureness,not having reached maturity
+47533,immediacy immediate_apprehension,immediate intuitive awareness
+47534,immediacy immediateness,lack of an intervening or mediating agency; "the immediacy of television coverage"
+47535,immediacy immediateness instantaneousness instancy,the quickness of action or occurrence; "the immediacy of their response"; "the instancy of modern communication"
+47536,immediate_allergy atopy atopic_allergy type_I_allergic_reaction,an allergic reaction that becomes apparent in a sensitized person only minutes after contact
+47537,immediate_constituent,a constituent of a sentence at the first step in an analysis: e.g., subject and predicate
+47538,immersion,a form of baptism in which part or all of a person's body is submerged
+47539,immersion_heater,a heating element that is immersed in the liquid that is to be heated (as in a hot-water tank)
+47540,immigrant,a person who comes to a country where they were not born in order to settle there
+47541,immigrant_class,recent immigrants who are lumped together as a class by their low socioeconomic status in spite of different cultural backgrounds
+47542,immigration,the body of immigrants arriving during a specified interval; "the increased immigration strengthened the colony"
+47543,immigration in-migration,migration into a place (especially migration to a country of which you are not a native in order to settle there)
+47544,imminence imminency imminentness impendence impendency forthcomingness,the state of being imminent and liable to happen soon
+47545,imminent_abortion threatened_abortion,the appearance of symptoms that signal the impending loss of the products of conception
+47546,immobility,the quality of not moving
+47547,immobilization immobilisation,fixation (as by a plaster cast) of a body part in order to promote proper healing; "immobilization of the injured knee was necessary"
+47548,immobilization immobilisation immobilizing,the act of limiting movement or making incapable of movement; "the storm caused complete immobilization of the rescue team"
+47549,immoderation immoderateness,the quality of being excessive and lacking in moderation
+47550,immodesty,the trait of being vain and conceited
+47551,immolation,killing or offering as a sacrifice
+47552,immorality,the quality of not being in accord with standards of right or good conduct; "the immorality of basing the defense of the West on the threat of mutual assured destruction"
+47553,immortal,a person (such as an author) of enduring fame; "Shakespeare is one of the immortals"
+47554,immortality,perpetual life after death
+47555,immortality,the quality or state of being immortal
+47556,immortelle Xeranthemum_annuum,mostly widely cultivated species of everlasting flowers having usually purple flowers; southern Europe to Iran; naturalized elsewhere
+47557,immotility,lacking an ability to move
+47558,immovability immovableness,not capable of being moved or rearranged
+47559,immovable_bandage,a bandage of cloth impregnated with a substance (e.g., plaster of Paris) that hardens soon after it is applied
+47560,immune,a person who is immune to a particular infection
+47561,immune_response immune_reaction immunologic_response,a bodily defense reaction that recognizes an invading substance (an antigen: such as a virus or fungus or bacteria or transplanted organ) and produces antibodies specific against that antigen
+47562,immune_system,a system (including the thymus and bone marrow and lymphoid tissues) that protects the body from foreign substances and pathogenic organisms by producing the immune response
+47563,immunity,the quality of being unaffected by something; "immunity to criticism"
+47564,immunity resistance,(medicine) the condition in which an organism can resist disease
+47565,immunization immunisation,the act of making immune (especially by inoculation)
+47566,immunoassay immunochemical_assay,identification of a substance (especially a protein) by its action as an antigen; "PSA in the blood can be measured with an immunochemical assay"
+47567,immunochemistry chemoimmunology,the field of chemistry concerned with chemical processes in immunology (such as chemical studies of antigens and antibodies)
+47568,immunocompetence,the ability to develop an immune response following exposure to an antigen
+47569,immunodeficiency,immunological disorder in which some part of the body's immune system is inadequate and resistance to infectious diseases is reduced
+47570,immunoelectrophoresis,electrophoresis to separate antigens and antibodies
+47571,immunofluorescence,(immunology) a technique that uses antibodies linked to a fluorescent dye in order to study antigens in a sample of tissue
+47572,immunogen immunizing_agent,any substance or organism that provokes an immune response (produces immunity) when introduced into the body
+47573,immunogenicity,the property of eliciting an immune response
+47574,immunoglobulin Ig immune_serum_globulin immune_gamma_globulin immune_globulin,a class of proteins produced in lymph tissue in vertebrates and that function as antibodies in the immune response
+47575,immunoglobulin_A IgA,one of the most common of the five major classes of immunoglobulins; the chief antibody in the membranes of the gastrointestinal and respiratory tracts
+47576,immunoglobulin_D IgD,one of the five major classes of immunoglobulins; present in blood serum in small amounts
+47577,immunoglobulin_E IgE,one of the five major classes of immunoglobulins; present primarily in the skin and mucous membranes
+47578,immunoglobulin_G IgG,one of the five major classes of immunoglobulins; the main antibody defense against bacteria
+47579,immunoglobulin_M IgM,one of the five major classes of immunoglobulins; involved in fighting blood infections and in triggering production of immunoglobulin G
+47580,immunohistochemistry,an assay that shows specific antigens in tissues by the use of markers that are either fluorescent dyes or enzymes (such as horseradish peroxidase)
+47581,immunological_disorder,a disorder of the immune system
+47582,immunologist,a medical scientist who specializes in immunology
+47583,immunology,the branch of medical science that studies the body's immune system
+47584,immunopathology,the branch of immunology that deals with pathologies of the immune system
+47585,immunosuppressant immunosuppressor immunosuppressive_drug immunosuppressive immune_suppressant_drug,a drug that lowers the body's normal immune response
+47586,immunosuppression,lowering the body's normal immune response to invasion by foreign substances; can be deliberate (as in lowering the immune response to prevent rejection of a transplanted organ) or incidental (as a side effect of radiotherapy or chemotherapy for cancer)
+47587,immunotherapy,therapy designed to produce immunity to a disease or to enhance resistance by the immune system
+47588,immutability immutableness fixity,the quality of being incapable of mutation; "Darwin challenged the fixity of species"
+47589,imp scamp monkey rascal rapscallion scalawag scallywag,one who is playfully mischievous
+47590,impact,the striking of one body against another
+47591,impact wallop,a forceful consequence; a strong effect; "the book had an important impact on my thinking"; "the book packs a wallop"
+47592,impact_printer,a printer that prints by mechanical impacts
+47593,impacted_fracture,fracture in which one broken end is wedged into the other broken end
+47594,impaction,the condition of being pressed closely together and firmly fixed
+47595,impaction,a disorder in which feces are impacted in the lower colon
+47596,impaction impacted_tooth,a disorder in which a tooth is so crowded in its socket that it cannot erupt normally
+47597,impairer,an agent that impairs; "crops can be great impairers of the soil"
+47598,impairment,damage that results in a reduction of strength or quality
+47599,impala Aepyceros_melampus,African antelope with ridged curved horns; moves with enormous leaps
+47600,impala_lily mock_azalia desert_rose kudu_lily Adenium_obesum Adenium_multiflorum,South African shrub having a swollen succulent stem and bearing showy pink and white flowers after the leaves fall; popular as an ornamental in tropics
+47601,impalement,the act of piercing with a sharpened stake as a form of punishment or torture
+47602,impartiality nonpartisanship,an inclination to weigh both views or opinions equally
+47603,impasto,painting that applies the pigment thickly so that brush or palette knife marks are visible
+47604,impatience,a restless desire for change and excitement
+47605,impatience,a dislike of anything that causes delay
+47606,impeachability indictability,the state of being liable to impeachment
+47607,impeachment,a formal document charging a public official with misconduct in office
+47608,impeccability,the quality of being exempt from sin or incapable of sinning
+47609,impecuniousness pennilessness penuriousness,a state of lacking money
+47610,impedimenta,the baggage and equipment carried by an army
+47611,impeller,the blade of a rotor (as in the compressor of a jet engine)
+47612,impenetrability impenetrableness,incomprehensibility by virtue of being too dense to understand
+47613,impenetrability imperviousness,the quality of being impenetrable (by people or light or missiles etc.)
+47614,impenitence impenitency,the trait of refusing to repent
+47615,imperative,some duty that is essential and urgent
+47616,imperative_mood imperative jussive_mood imperative_form,a mood that expresses an intention to influence the listener's behavior
+47617,imperativeness insistence insistency press pressure,the state of demanding notice or attention; "the insistence of their hunger"; "the press of business matters"
+47618,imperativeness instancy,the quality of being insistent; "he pressed his demand with considerable instancy"
+47619,imperceptibility,the property of being imperceptible by the mind or the senses
+47620,imperfectibility,the capability of becoming imperfect
+47621,imperfection imperfectness,the state or an instance of being imperfect
+47622,imperfective imperfective_aspect,aspect without regard to the beginning or completion of the action of the verb
+47623,imperforate_anus,a congenital defect of the anus; there is partial or complete obstruction of the anal opening
+47624,imperforate_hymen,hymen that is completely closed so that menstrual blood cannot flow out
+47625,imperial,a piece of luggage carried on top of a coach
+47626,imperial imperial_beard,a small tufted beard worn by Emperor Napoleon III
+47627,imperial_Japanese_morning_glory Ipomoea_imperialis,hybrid from Ipomoea nil
+47628,imperial_decree,a decree issued by a sovereign ruler
+47629,imperial_mammoth imperial_elephant Archidiskidon_imperator,largest known mammoth; of America
+47630,imperial_moth Eacles_imperialis,large American moth having yellow wings with purplish or brownish markings; larvae feed on e.g. maple and pine trees
+47631,imperialism,a policy of extending your rule over foreign countries
+47632,imperialism,a political orientation that advocates imperial interests
+47633,imperialism,any instance of aggressive extension of authority
+47634,imperialist,a believer in imperialism
+47635,imperiousness domineeringness overbearingness,the trait of being imperious and overbearing
+47636,imperishability imperishableness imperishingness,the property of being resistant to decay; "he advertised the imperishability of the product"
+47637,imperium,supreme authority; absolute dominion
+47638,impermanence impermanency,the property of not existing for indefinitely long durations
+47639,impermeability impermeableness,the property of something that cannot be pervaded by a liquid
+47640,impermissibility,inadmissibility as a consequence of not being permitted
+47641,impersonation personation,imitating the mannerisms of another person
+47642,impersonator imitator,someone who (fraudulently) assumes the appearance of another
+47643,impertinence perkiness pertness sauciness archness,inappropriate playfulness
+47644,impetigo,a very contagious infection of the skin; common in children; localized redness develops into small blisters that gradually crust and erode
+47645,impetuousness impetuosity,rash impulsiveness
+47646,impiety impiousness,unrighteousness by virtue of lacking respect for a god
+47647,impingement encroachment impact,influencing strongly; "they resented the impingement of American values on European culture"
+47648,impingement impaction,a sharp collision produced by striking or dashing against something
+47649,impishness mischievousness puckishness whimsicality,the trait of behaving like an imp
+47650,implant,a prosthesis placed permanently in tissue
+47651,implantation,the act of planting or setting in the ground
+47652,implantation,a surgical procedure that places something in the human body; "the implantation of radioactive pellets in the prostate gland"
+47653,implantation nidation,(embryology) the organic process whereby a fertilized egg becomes implanted in the lining of the uterus of placental mammals
+47654,implausibility implausibleness,the quality of provoking disbelief
+47655,implement,instrumentation (a piece of equipment or tool) used to effect an end
+47656,implementation effectuation,the act of implementing (providing a practical means for accomplishing something); carrying into effect
+47657,implication,a relation implicated by virtue of involvement or close connection (especially an incriminating involvement); "he was suspected of implication in several robberies"
+47658,implication,an accusation that brings into intimate and usually incriminating connection
+47659,implication logical_implication conditional_relation,a logical relation between propositions p and q of the form `if p then q'; if p is true then q cannot be false
+47660,implicitness,inexplicitness as a consequence of being implied or indirect
+47661,implied_trust,a trust inferred by operation of law
+47662,implosion,a sudden inward collapse; "the implosion of a light bulb"
+47663,implosion,the initial occluded phase of a stop consonant
+47664,implosion_therapy flooding,a technique used in behavior therapy; client is flooded with experiences of a particular kind until becoming either averse to them or numbed to them
+47665,impoliteness,a discourteous manner that ignores accepted social usage
+47666,imponderable,a factor whose effects cannot be accurately assessed; "human behavior depends on many imponderables"
+47667,import importation,commodities (goods or services) bought from a foreign country
+47668,import importee,an imported person brought from a foreign country; "the lead role was played by an import from Sweden"; "they are descendants of indentured importees"
+47669,import_credit,credit opened by an importer at a bank in his own country upon which an exporter may draw
+47670,import_duty,a duty imposed on imports
+47671,importance,the quality of being important and worthy of note; "the importance of a well-balanced diet"
+47672,importance grandness,a prominent status; "a person of importance"
+47673,important_person influential_person personage,a person whose actions and opinions strongly influence the course of events
+47674,importer,someone whose business involves importing goods from outside (especially from a foreign country)
+47675,importing importation,the commercial activity of buying and bringing in goods from a foreign country
+47676,importunity urgency urging,insistent solicitation and entreaty; "his importunity left me no alternative but to agree"
+47677,imposition,an uncalled-for burden; "he listened but resented the imposition"
+47678,imposition infliction,the act of imposing something (as a tax or an embargo)
+47679,impossibility impossible_action,an alternative that is not available
+47680,impossibility impossibleness,incapability of existing or occurring
+47681,impossible,something that cannot be done; "his assignment verged on the impossible"
+47682,imposter impostor pretender fake faker fraud sham shammer pseudo pseud role_player,a person who makes deceitful pretenses
+47683,imposture impersonation,pretending to be another person
+47684,impotence impotency,an inability (usually of the male animal) to copulate
+47685,impoundment impounding internment poundage,placing private property in the custody of an officer of the law
+47686,impracticability impracticableness,the quality of not being usable
+47687,impracticality,concerned with theoretical possibilities rather than actual use
+47688,imprecation,a slanderous accusation
+47689,imprecation malediction,the act of calling down a curse that invokes evil (and usually serves as an insult); "he suffered the imprecations of the mob"
+47690,impreciseness imprecision,the quality of lacking precision
+47691,impregnation,material with which something is impregnated; "the impregnation, whatever it was, had turned the rock blue"
+47692,impregnation saturation,the process of totally saturating something with a substance; "the impregnation of wood with preservative"; "the saturation of cotton with ether"
+47693,impress impressment,the act of coercing someone into government service
+47694,impression,(dentistry) an imprint of the teeth and gums in wax or plaster; "the dentist took an impression for use in preparing an inlay"
+47695,impression,an impressionistic portrayal of a person; "he did a funny impression of a politician"
+47696,impression,the act of pressing one thing on or into the surface of another; "he watched the impression of the seal on the hot wax"
+47697,impression effect,an outward appearance; "he made a good impression"; "I wanted to create an impression of success"; "she retained that bold effect in her reproductions of the original painting"
+47698,impression feeling belief notion opinion,a vague idea in which some confidence is placed; "his impression of her was favorable"; "what are your feelings about the crisis?"; "it strengthened my belief in his sincerity"; "I had a feeling that she was lying"
+47699,impression printing,all the copies of a work printed at one time; "they ran off an initial printing of 2000 copies"
+47700,impressionist,a painter who follows the theories of Impressionism
+47701,impressiveness,the quality of making a strong or vivid impression on the mind
+47702,impressiveness grandness magnificence richness,splendid or imposing in size or appearance; "the grandness of the architecture"; "impressed by the richness of the flora"
+47703,imprint,an identification of a publisher; a publisher's name along with the date and address and edition that is printed at the bottom of the title page; "the book was published under a distinguished imprint"
+47704,imprint,a distinctive influence; "English stills bears the imprint of the Norman invasion"
+47705,imprint,a device produced by pressure on a surface
+47706,imprint embossment,an impression produced by pressure or printing
+47707,imprinting,a learning process in early life whereby species specific patterns of behavior are established
+47708,imprisonment,putting someone in prison or in jail as lawful punishment
+47709,imprisonment internment,the act of confining someone in a prison (or as if in a prison)
+47710,improbability improbableness,the quality of being improbable; "impossibility should never be confused with improbability"; "the improbability of such rare coincidences"
+47711,impromptu,a short musical passage that seems to have been made spontaneously without advance preparation
+47712,impromptu,an extemporaneous speech or remark; "a witty impromptu must not sound premeditated"
+47713,improper_fraction,a fraction whose numerator is larger than the denominator
+47714,impropriety,the condition of being improper
+47715,impropriety improperness,an improper demeanor
+47716,improvement,the act of improving something; "their improvements increased the value of the property"
+47717,improvement betterment advance,a change for the better; progress in development
+47718,improvement melioration,a condition superior to an earlier condition; "the new school represents a great improvement"
+47719,improvidence shortsightedness,a lack of prudence and care by someone in the management of resources
+47720,improvisation,a creation spoken or written or composed extemporaneously (without prior preparation)
+47721,improvisation temporary_expedient,an unplanned expedient
+47722,improvised_explosive_device I.E.D. IED,an explosive device that is improvised
+47723,imprudence,a lack of caution in practical affairs
+47724,impudence cheek impertinence,an impudent statement
+47725,impulse impulsion impetus,the act of applying force suddenly; "the impulse knocked him over"
+47726,impulse_turbine,a turbine that is driven by jets direct against the blades
+47727,impulsiveness,the trait of acting suddenly on impulse without reflection
+47728,impunity,exemption from punishment or loss
+47729,impurity dross,worthless or dangerous material that should be removed; "there were impurities in the water"
+47730,impurity impureness,the condition of being impure
+47731,imputation,a statement attributing something dishonest (especially a criminal offense); "he denied the imputation"
+47732,imputation,the attribution to a source or cause; "the imputation that my success was due to nepotism meant that I was not taken seriously"
+47733,in-basket in-tray,a wood or metal receptacle placed on your desk to hold your incoming material
+47734,in-fighting,conflict between members of the same organization (usually concealed from outsiders)
+47735,in-fighting,boxing at close quarters
+47736,in-joke,a joke that is appreciated only by members of some particular group of people
+47737,in-law relative-in-law,a relative by marriage
+47738,in-line_skate,a shoe with a line of rollers fixed to the sole
+47739,in_time,in the correct rhythm; "the dancers moved in time with the music"
+47740,inability,lack of ability (especially mental ability) to do something
+47741,inability unfitness,lacking the power to perform
+47742,inaccessibility unavailability,the quality of not being available when needed
+47743,inaccuracy,the quality of being inaccurate and having errors
+47744,inaction inactivity inactiveness,the state of being inactive
+47745,inactivation,the process of rendering inactive; "the gene inactivation system"; "thermal inactivation of serum samples"
+47746,inactiveness inactivity inertia,a disposition to remain inactive or inert; "he had to overcome his inertia and get back to work"
+47747,inactivity,being inactive; being less active
+47748,inadequacy inadequateness,unsatisfactoriness by virtue of being inadequate
+47749,inadmissibility,unacceptability as a consequence of not being admissible
+47750,inadvisability,the quality of being ill-advised
+47751,inamorata,a woman with whom you are in love or have an intimate relationship
+47752,inamorato,a man with whom you are in love or have an intimate relationship
+47753,inanimateness lifelessness,not having life
+47754,inanition,exhaustion resulting from lack of food
+47755,inanition lassitude lethargy slackness,weakness characterized by a lack of vitality or energy
+47756,inanity senselessness mindlessness vacuity pointlessness,total lack of meaning or ideas
+47757,inapplicability,irrelevance by virtue of being inapplicable to the matter at hand
+47758,inappropriateness unworthiness,the quality of being not particularly suitable or befitting; "he retracted nothing that he had said about the inappropriateness of either a corporeal God or a God who is a person"; "his praise released from her loud protestations of her unworthiness"
+47759,inappropriateness wrongness,inappropriate conduct
+47760,inaptitude,a lack of aptitude
+47761,inaptness inappositeness,inappropriateness; "greater inaptness of expression would be hard to imagine"
+47762,inattention,lack of attention
+47763,inattentiveness,the trait of not being considerate and thoughtful of others
+47764,inattentiveness heedlessness,a lack of attentiveness (as to children or helpless people)
+47765,inaudibility inaudibleness,the quality of not being perceptible by the ear
+47766,inaugural_address inaugural,an address delivered at an inaugural ceremony (especially by a United States president)
+47767,inauguration inaugural,the ceremonial induction into a position; "the new president obviously enjoyed his inauguration"
+47768,inauguration startup,the act of starting a new operation or practice; "he opposed the inauguration of fluoridation"; "the startup of the new factory was delayed by strikes"
+47769,inauspiciousness unpropitiousness,the quality of suggesting an unsuccessful result
+47770,inborn_error_of_metabolism,any of a number of diseases in which an inherited defect (usually a missing or inadequate enzyme) results in an abnormality of metabolism
+47771,inbreeding,the act of mating closely related individuals
+47772,incandescence,light from heat
+47773,incandescence glow,the phenomenon of light emission by a body as its temperature is raised
+47774,incantation conjuration,a ritual recitation of words or sounds believed to have a magical effect
+47775,incapability incapableness,lack of potential for development
+47776,incapability incapableness,the quality of not being capable -- physically or intellectually or legally
+47777,incapacity,lack of intellectual power
+47778,incapacity,lack of physical or natural qualifications
+47779,incarnation,time passed in a particular bodily form; "he believes that his life will be better in his next incarnation"
+47780,incaution incautiousness,the trait of forgetting or ignoring possible danger
+47781,incendiary_bomb incendiary firebomb,a bomb that is designed to start fires; is most effective against flammable targets (such as fuel)
+47782,incense,a substance that produces a fragrant odor when burned
+47783,incense,the pleasing scent produced when incense is burned; "incense filled the room"
+47784,incense_cedar,any of several attractive trees of southwestern South America and New Zealand and New Caledonia having glossy evergreen leaves and scented wood
+47785,incense_cedar red_cedar Calocedrus_decurrens Libocedrus_decurrens,tall tree of the Pacific coast of North America having foliage like cypress and cinnamon-red bark
+47786,incense_tree,any of various tropical trees of the family Burseraceae yielding fragrant gums or resins that are burned as incense
+47787,incense_wood,fragrant wood of two incense trees of the genus Protium
+47788,incentive inducement motivator,a positive motivational influence
+47789,incentive_option incentive_stock_option,an option granted to corporate executives if the company achieves certain financial goals
+47790,incentive_program incentive_scheme,a formal scheme for inducing someone (as employees) to do something
+47791,incest,sexual intercourse between persons too closely related to marry (as between a parent and a child)
+47792,inch in,a unit of length equal to one twelfth of a foot
+47793,inchoative inchoative_aspect,aspect with regard to the beginning of the action of the verb
+47794,incidence,the striking of a light beam on a surface; "he measured the angle of incidence of the reflected light"
+47795,incidence relative_incidence,the relative frequency of occurrence of something
+47796,incident,a public disturbance; "the police investigated an incident at the bus station"
+47797,incident,a single distinct event
+47798,incidental,an item that is incidental
+47799,incidental_expense incidental minor_expense,(frequently plural) an expense not budgeted or not specified; "he requested reimbursement of $7 for incidental expenses"
+47800,incidental_music,music composed to accompany the action of a drama or to fill intervals between scenes
+47801,incineration,the act of burning something completely; reducing it to ashes
+47802,incinerator,a furnace for incinerating (especially to dispose of refuse)
+47803,incipiency incipience,beginning to exist or to be apparent; "he placed the incipience of democratic faith at around 1850"; "it is designed to arrest monopolies in their incipiency"
+47804,incision scratch prick slit dent,a depression scratched or carved into a surface
+47805,incision section surgical_incision,the cutting of or into body tissues or organs (especially by a surgeon as part of an operation)
+47806,incisiveness trenchancy,keenness and forcefulness of thought or expression or intellect
+47807,incisor,a tooth for cutting or gnawing; located in the front of the mouth in both jaws
+47808,incisure incisura,(anatomy) a notch or small hollow
+47809,incitation incitement,an act of urging on or spurring on or rousing to action or instigating; "the incitement of mutiny"
+47810,incitement incitation provocation,something that incites or provokes; a means of arousing or stirring to action
+47811,incivility,deliberate discourtesy
+47812,inclination,that toward which you are inclined to feel a liking; "her inclination is for classical music"
+47813,inclination angle_of_inclination,(geometry) the angle formed by the x-axis and a given line (measured counterclockwise from the positive half of the x-axis)
+47814,inclination disposition tendency,an attitude of mind especially one that favors one alternative over others; "he had an inclination to give up too easily"; "a tendency to be too strict"
+47815,inclination inclination_of_an_orbit,(astronomy) the angle between the plane of the orbit and the plane of the ecliptic stated in degrees
+47816,inclination inclining,the act of inclining; bending forward; "an inclination of his head indicated his agreement"
+47817,incline_bench_press,a bench press performed on an inclined bench
+47818,inclined_fault,a geological fault in which one side is above the other
+47819,inclined_plane,a simple machine for elevating objects; consists of plane surface that makes an acute angle with the horizontal
+47820,inclinometer,an instrument showing the angle that an aircraft makes with the horizon
+47821,inclinometer dip_circle,a measuring instrument for measuring the angle of magnetic dip (as from an airplane)
+47822,inclusion,the state of being included
+47823,inclusion,the act of including
+47824,inclusion comprehension,the relation of comprising something; "he admired the inclusion of so many ideas in such a short work"
+47825,inclusion_body cellular_inclusion inclusion,any small intracellular body found within another (characteristic of certain diseases); "an inclusion in the cytoplasm of the cell"
+47826,inclusion_body_myositis,myositis characterized by weakness of limb muscles (especially the thighs and wrists and fingers); sometimes involves swallowing muscles; onset after 50 and slowly progressive; seen more often in men than in women
+47827,incognizance,a lack of knowledge or recognition
+47828,incoherence incoherency,lack of cohesion or clarity or organization
+47829,incoherence incoherency unintelligibility,nonsense that is simply incoherent and unintelligible
+47830,income,the financial gain (earned or unearned) accruing over a given period of time
+47831,income_bracket tax_bracket income_tax_bracket,a category of taxpayers based on the amount of their income
+47832,income_statement earnings_report operating_statement profit-and-loss_statement,a financial statement that gives operating results for a specific period
+47833,income_tax,a personal tax levied on annual income
+47834,incommutability,the quality of being not interchangeable
+47835,incompatibility,(immunology) the degree to which the body's immune system will try to reject foreign material (as transfused blood or transplanted tissue)
+47836,incompatibility,the quality of being unable to exist or work in congenial combination
+47837,incompatibility mutual_exclusiveness inconsistency repugnance,the relation between propositions that cannot both be true at the same time
+47838,incompetence,inability of a part or organ to function properly
+47839,incompetence incompetency,lack of physical or intellectual ability or qualifications
+47840,incompetent incompetent_person,someone who is not competent to take effective action
+47841,incompetent_cervix,(obstetrics) uterine cervix that becomes dilated before term and without labor often resulting in miscarriage or premature birth
+47842,incomplete_abortion partial_abortion,termination of pregnancy without expulsion of all of the products of conception
+47843,incomplete_fracture,fracture that does not go across the entire width of the bone
+47844,incompleteness rawness,the state of being crude and incomplete and imperfect; "the study was criticized for incompleteness of data but it stimulated further research"; "the rawness of his diary made it unpublishable"
+47845,incomprehensibility,the quality of being incomprehensible
+47846,incomprehension,an inability to understand; "his incomprehension of the consequences"
+47847,incompressibility,the property of being incompressible
+47848,inconceivability inconceivableness,the state of being impossible to conceive
+47849,inconclusiveness,the quality of being inconclusive
+47850,incongruity incongruousness,the quality of disagreeing; being unsuitable and inappropriate
+47851,inconsequence,having no important effects or influence
+47852,inconsideration inconsiderateness thoughtlessness,the quality of failing to be considerate of others
+47853,inconsistency,the quality of being inconsistent and lacking a harmonious uniformity among things or parts
+47854,inconspicuousness,the quality of being not easily seen
+47855,inconstancy changefulness,the quality of being changeable and variable
+47856,incontinence incontinency,involuntary urination or defecation
+47857,incontrovertibility incontrovertibleness positivity positiveness,the quality of being undeniable and not worth arguing about
+47858,inconvenience,the quality of not being useful or convenient
+47859,inconvenience incommodiousness,an inconvenient discomfort
+47860,inconvertibility,the quality of not being exchangeable; "the inconvertibility of their currency made international trade impossible"
+47861,incoordination,a lack of coordination of movements
+47862,incorporation,consolidating two or more things; union in (or into) one body
+47863,incorporation,including by incorporating
+47864,incorrectness,lack of conformity to social expectations
+47865,incorrectness wrongness,the quality of not conforming to fact or truth
+47866,incorruptibility,the incapability of being corrupted
+47867,incorruptness incorruption,characterized by integrity or probity
+47868,increase,a change resulting in an increase; "the increase is scheduled for next month"
+47869,increase increment,the amount by which something increases; "they proposed an increase of 15 percent in the fare"
+47870,increase increment growth,a process of becoming larger or longer or more numerous or more important; "the increase in unemployment"; "the growth of population"
+47871,increase step-up,the act of increasing something; "he gave me an increase in salary"
+47872,incredibility incredibleness,the quality of being incredible
+47873,incredulity disbelief skepticism mental_rejection,doubt about the truth of something
+47874,incrimination inculpation blame,an accusation that you are responsible for some lapse or misdeed; "his incrimination was based on my testimony"; "the police laid the blame on the driver"
+47875,incrustation encrustation,the formation of a crust
+47876,incrustation encrustation,a decorative coating of contrasting material that is applied to a surface as an inlay or overlay
+47877,incubation,(pathology) the phase in the development of an infection between the time a pathogen enters the body and the time the first symptoms appear
+47878,incubation,maintaining something at the most favorable temperature for its development
+47879,incubation_period,the period between infection and the appearance of symptoms of the disease
+47880,incubator brooder,apparatus consisting of a box designed to maintain a constant temperature by the use of a thermostat; used for chicks or premature infants
+47881,incubus,someone who depresses or worries others
+47882,incubus,a male demon believed to lie on sleeping persons and to have sexual intercourse with sleeping women
+47883,inculcation ingraining instilling,teaching or impressing upon the mind by frequent instruction or repetition
+47884,incumbency,a duty that is incumbent upon you
+47885,incumbency,the office of an incumbent
+47886,incumbent officeholder,the official who holds an office
+47887,incurability,incapability of being altered in disposition or habits; "the incurability of his optimism"
+47888,incurability incurableness,incapability of being cured or healed
+47889,incurable,a person whose disease is incurable
+47890,incurrence,the act of incurring (making yourself subject to something undesirable)
+47891,incurring,acquiring or coming into something (usually undesirable); "incurring debts is easier than paying them"
+47892,incursion,the mistake of incurring liability or blame
+47893,incursion,the act of entering some territory or domain (often in large numbers); "the incursion of television into the American living room"
+47894,incurvation,the action of creating a curved shape
+47895,incus anvil,the ossicle between the malleus and the stapes
+47896,indaba,a council at which indigenous peoples of southern Africa meet to discuss some important question
+47897,indapamide Lozal,diuretic (trade name Lozal) used in the treatment of hypertension
+47898,indebtedness liability financial_obligation,an obligation to pay money to another party
+47899,indecency,the quality of being indecent
+47900,indecency impropriety,an indecent or improper act
+47901,indecent_exposure public_nudity,vulgar and offensive nakedness in a public place
+47902,indecision indecisiveness irresolution,doubt concerning two or more possible alternatives or courses of action; "his indecision was only momentary but the opportunity was lost"
+47903,indecisiveness indecision,the trait of irresolution; a lack of firmness of character or purpose; "the king's incurable indecisiveness caused turmoil in his court"
+47904,indecorum indecorousness,a lack of decorum
+47905,indefatigability indefatigableness tirelessness,tireless determination
+47906,indefinite_article,a determiner (as `a' or `some' in English) that indicates nonspecific reference
+47907,indefinite_integral,the set of functions F(x) + C, where C is any real number, such that F(x) is the integral of f(x)
+47908,indefinite_quantity,an estimated quantity
+47909,indefiniteness indeterminateness indefinity indetermination indeterminacy,the quality of being vague and poorly defined
+47910,indelible_ink,ink that cannot be erased or washed away
+47911,indelicacy,the trait of being indelicate and offensive
+47912,indelicacy,an impolite act or expression
+47913,indemnification,an act of compensation for actual loss or damage or for trouble and annoyance
+47914,indemnity,legal exemption from liability for damages
+47915,indemnity insurance,protection against future loss
+47916,indene,a colorless liquid hydrocarbon extracted from petroleum or coal tar and used in making synthetic resins
+47917,indent,an order for goods to be exported or imported
+47918,indentation,the act of cutting into an edge with toothlike notches or angular incisions
+47919,indentation indention indent indenture,the space left between the margin and the start of an indented line
+47920,indentation indenture,a concave cut into a surface or edge (as in a coastline)
+47921,indenture,formal agreement between the issuer of bonds and the bondholders as to terms of the debt
+47922,indenture,a contract binding one party into the service of another for a specified term
+47923,independence,the successful ending of the American Revolution; "they maintained close relations with England even after independence"
+47924,independence independency,freedom from control or influence of another or others
+47925,independent_agency,an agency of the United States government that is created by an act of Congress and is independent of the executive departments
+47926,independent_variable experimental_variable,(statistics) a variable whose values are independent of changes in the values of other variables
+47927,indestructibility,the strength to resist destruction
+47928,index,a numerical scale used to compare variables with one another or with some reference number
+47929,index,an alphabetical listing of names and topics along with page numbers where they are discussed
+47930,index index_finger forefinger,the finger next to the thumb
+47931,index index_number indicant indicator,a number or ratio (a value on a scale of measurement) derived from a series of observed facts; can reveal relative changes as a function of time
+47932,index_case,the earliest documented case of a disease that is included in an epidemiological study
+47933,index_fossil guide_fossil,a fossil known to have lived in a particular geologic age that can be used to date the rock layer in which it is found
+47934,index_fund,a mutual fund whose assets are stocks on a given list
+47935,index_fund,a mutual fund that invests in the stocks that are the basis of a well-known stock or bond index
+47936,index_register,(computer science) a register used to determine the address of an operand
+47937,indexation,a system of economic regulation: wages and interest are tied to the cost-of-living index in order to reduce the effects of inflation
+47938,indexer,someone who provides an index
+47939,indexing,the act of classifying and providing an index in order to make items easier to retrieve
+47940,india_paper,a thin tough opaque paper used in fine books
+47941,indication,(medicine) a reason to prescribe a drug or perform a procedure; "the presence of bacterial infection was an indication for the use of antibiotics"
+47942,indication,something (as a course of action) that is indicated as expedient or necessary; "there were indications that it was time to leave"
+47943,indication denotation,the act of indicating or pointing out by name
+47944,indication indicant,something that serves to indicate or suggest; "an indication of foul play"; "indications of strain"; "symptoms are the prime indicants of disease"
+47945,indicative_mood indicative declarative_mood declarative common_mood fact_mood,a mood (grammatically unmarked) that represents the act or state as an objective fact
+47946,indicator,(chemistry) a substance that changes color to indicate the presence of some ion or substance; can be used to indicate the completion of a chemical reaction or (in medicine) to test for a particular reaction
+47947,indicator,a signal for attracting attention
+47948,indicator,a device for showing the operating condition of some system
+47949,indiction,a 15-year cycle used as a chronological unit in ancient Rome and adopted in some medieval kingdoms
+47950,indictment,an accusation of wrongdoing; "the book is an indictment of modern philosophy"
+47951,indictment bill_of_indictment,a formal document written for a prosecuting attorney charging a person with some offense
+47952,indie,a pop group not affiliated with a major record company
+47953,indie,an independent film company not associated with an established studio
+47954,indifference,unbiased impartial unconcern
+47955,indigence need penury pauperism pauperization,a state of extreme poverty or destitution; "their indigence appalled him"; "a general state of need exists among the homeless"
+47956,indigenous_language,a language that originated in a specified place and was not brought to that place from elsewhere
+47957,indigenousness autochthony endemism,nativeness by virtue of originating or occurring naturally (as in a particular place)
+47958,indigestibility indigestibleness,the property of being difficult to digest
+47959,indigestion dyspepsia stomach_upset upset_stomach,a disorder of digestive function characterized by discomfort or heartburn or nausea
+47960,indignation outrage,a feeling of righteous anger
+47961,indignity,an affront to one's dignity or self-esteem
+47962,indigo,a blue-violet color
+47963,indigo indigo_plant Indigofera_tinctoria,deciduous subshrub of southeastern Asia having pinnate leaves and clusters of red or purple flowers; a source of indigo dye
+47964,indigo_broom horsefly_weed rattle_weed Baptisia_tinctoria,much-branched erect herb with bright yellow flowers; distributed from Massachusetts to Florida
+47965,indigo_bunting indigo_finch indigo_bird Passerina_cyanea,small deep blue North American bunting
+47966,indigo_snake gopher_snake Drymarchon_corais,large dark-blue nonvenomous snake that invades burrows; found in southern North America and Mexico
+47967,indinavir Crixivan,a protease inhibitor (trade name Crixivan) used for treating HIV
+47968,indirect_antonym,antonyms whose opposition is mediated (e.g., the antonymy of `wet' and `parched' is mediated by the similarity of `parched' to `dry')
+47969,indirect_discourse,a report of a discourse in which deictic terms are modified appropriately (e.g., "he said `I am a fool'" would be modified to "he said he is a fool")
+47970,indirect_fire,fire delivered on a target that is not itself used as the point of aim for the weapons
+47971,indirect_immunofluorescence,a method of using fluorescence microscopy to detect the presence of an antigen indirectly
+47972,indirect_lighting,a concealed lighting fixture
+47973,indirect_object,the object that is the recipient or beneficiary of the action of the verb
+47974,indirect_tax,a tax levied on goods or services rather than on persons or organizations
+47975,indirect_transmission,a transmission mechanism in which the infectious agent is transferred to the person by a fomite of vector
+47976,indirection,indirect procedure or action; "he tried to find out by indirection"
+47977,indirection,deceitful action that is not straightforward; "he could see through the indirections of diplomats"
+47978,indirectness,having the characteristic of lacking a true course toward a goal
+47979,indiscipline undiscipline,the trait of lacking discipline
+47980,indiscretion injudiciousness,the trait of being injudicious
+47981,indiscretion peccadillo,a petty misdeed
+47982,indispensability indispensableness vitalness,the quality possessed by something that you cannot possibly do without
+47983,indisposition,a slight illness
+47984,indisputability indubitability unquestionability unquestionableness,the quality of being beyond question or dispute or doubt
+47985,indistinctness softness blurriness fogginess fuzziness,the quality of being indistinct and without sharp outlines
+47986,indium In atomic_number_49,a rare soft silvery metallic element; occurs in small quantities in sphalerite
+47987,individual,a single organism
+47988,individual_retirement_account IRA,a retirement plan that allows you to contribute a limited yearly sum toward your retirement; taxes on the interest earned in the account are deferred
+47989,individualism,a belief in the importance of the individual and the virtue of self-reliance and personal independence
+47990,individualism laissez_faire,the doctrine that government should not interfere in commercial affairs
+47991,individualist,a person who pursues independent thought or action
+47992,individuality individualism individuation,the quality of being individual; "so absorbed by the movement that she lost all sense of individuality"
+47993,individualization individualisation individuation,discriminating the individual from the generic group or species
+47994,indoctrination,teaching someone to accept doctrines uncritically
+47995,indoleacetic_acid IAA,a plant hormone promoting elongation of stems and roots
+47996,indolebutyric_acid,a synthetic plant hormone promoting elongation of stems and roots
+47997,indolence laziness,inactivity resulting from a dislike of work
+47998,indomethacin Indocin,a nonsteroidal anti-inflammatory drug (trade name Indocin)
+47999,indomitability invincibility,the property being difficult or impossible to defeat
+48000,indri indris Indri_indri Indri_brevicaudatus,large short-tailed lemur of Madagascar having thick silky fur in black and white and fawn
+48001,induced_abortion,a deliberate termination of pregnancy
+48002,inducement inducing,act of bringing about a desired result; "inducement of sleep"
+48003,inducer,an agent capable of activating specific genes
+48004,inductance_unit,a measure of the property of an electric circuit by which an electromotive force is induced in it
+48005,inductee,a person inducted into an organization or social group; "Ty Cobb and Babe Ruth were 1936 inductees in the National Baseball Hall of Fame"
+48006,induction,the act of bringing about something (especially at an early time); "the induction of an anesthetic state"
+48007,induction inductance,an electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current
+48008,induction_coil,a coil for producing a high voltage from a low-voltage source
+48009,induction_heating,the heating of a conducting material caused by an electric current induced in it
+48010,induction_of_labor,(obstetrics) inducing the childbirth process artificially by administering oxytocin or by puncturing the amniotic sac
+48011,inductor inductance,an electrical device (typically a conducting coil) that introduces inductance into a circuit
+48012,indulgence,the remission by the pope of the temporal punishment in purgatory that is still due for sins even after absolution; "in the Middle Ages the unrestricted sale of indulgences by pardoners became a widespread abuse"
+48013,indulgence indulging pampering humoring,the act of indulging or gratifying a desire
+48014,indulgence lenience leniency,a disposition to yield to the wishes of someone; "too much indulgence spoils a child"
+48015,indulgence self-indulgence,an inability to resist the gratification of whims and desires
+48016,indumentum indument,a covering of fine hairs (or sometimes scales) as on a leaf or insect
+48017,indurated_clay,hardened clay
+48018,indusium,a membrane enclosing and protecting the developing spores especially that covering the sori of a fern
+48019,industrial_air_pollution,pollution resulting from an industrial plant discharging pollutants into the atmosphere
+48020,industrial_arts,a course in the methods of using tools and machinery as taught in secondary schools and technical schools
+48021,industrial_bank industrial_loan_company,a finance company that makes small loans to industrial workers
+48022,industrial_engineering industrial_management,the branch of engineering that deals with the creation and management of systems that integrate people and materials and energy in productive ways
+48023,industrial_park,a tract of land at a distance from city center that is designed for a cluster of businesses and factories
+48024,industrial_process,a systematic series of mechanical or chemical operations that produce or manufacture something
+48025,industrial_union vertical_union,a labor union that admits all workers in a given industry irrespective of their craft
+48026,industrial_watercourse,a canal that is operated by one or more industries
+48027,industrialism,an economic system built on large industries rather than on agriculture or craftsmanship
+48028,industrialist,someone who manages or has significant financial interest in an industrial enterprise
+48029,industrialization industrialisation industrial_enterprise,the development of industry on an extensive scale
+48030,industry,the people or companies engaged in a particular kind of commercial enterprise; "each industry has its own trade publications"
+48031,industry manufacture,the organized action of making of goods and services for sale; "American industry is making increased use of computers to control production"
+48032,industry_analyst,an analyst of conditions affecting a particular industry
+48033,indweller,activation by an inner spirit or force or principle; "the Holy Spirit is the indweller of the church and its members"
+48034,ineffectiveness ineffectualness ineffectuality,lacking the power to be effective
+48035,inefficacy inefficaciousness,a lack of efficacy
+48036,inefficiency,unskillfulness resulting from a lack of efficiency
+48037,inelasticity,the lack of elasticity
+48038,inelegance,the quality of lacking refinement and good taste
+48039,ineligibility,the quality or state of being ineligible
+48040,ineluctability unavoidability,the quality of being impossible to avoid or evade
+48041,inequality,lack of equality; "the growing inequality between rich and poor"
+48042,inerrancy,(Christianity) exemption from error; "biblical inerrancy"
+48043,inertia,(physics) the tendency of a body to maintain its state of rest or uniform motion unless acted upon by an external force
+48044,inertial_guidance inertial_navigation,a method of controlling the flight of a missile by devices that respond to inertial forces
+48045,inertial_guidance_system inertial_navigation_system,a system to control a plane or spacecraft; uses inertial forces
+48046,inertial_mass,(physics) the mass of a body as determined by the second law of motion from the acceleration of the body when it is subjected to a force that is not due to gravity
+48047,inertial_reference_frame inertial_frame,a coordinate system in which Newton's first law of motion is valid
+48048,inertness,immobility by virtue of being inert
+48049,inessential nonessential,anything that is not essential; "they discarded all their inessentials"
+48050,inessentiality,not of basic importance
+48051,inevitability inevitableness,the quality of being unavoidable
+48052,inevitable,an unavoidable event; "don't argue with the inevitable"
+48053,inexactness inexactitude,the quality of being inexact
+48054,inexpedience inexpediency,the quality of being unsuited to the end in view
+48055,inexpensiveness,the quality of being affordable
+48056,inexperience rawness,lack of experience and the knowledge and understanding derived from experience; "procedural inexperience created difficulties"; "their poor behavior was due to the rawness of the troops"
+48057,inexplicitness,unclearness by virtue of not being explicit
+48058,infallibility,the quality of never making an error
+48059,infamy,evil fame or public reputation
+48060,infamy opprobrium,a state of extreme dishonor; "a date which will live in infamy"- F.D.Roosevelt; "the name was a by-word of scorn and opprobrium throughout the city"
+48061,infancy babyhood,the earliest state of immaturity
+48062,infancy babyhood early_childhood,the early stage of growth or development
+48063,infant_deathrate infant_mortality infant_mortality_rate,the death rate during the first year of life
+48064,infant_feeding,feeding an infant
+48065,infant_school,British school for children aged 5-7
+48066,infanticide,a person who murders an infant
+48067,infanticide,murdering an infant
+48068,infantile_autism,a rare but serious syndrome of childhood characterized by withdrawal and lack of social responsiveness or interest in others and serious linguistic deficits; "there is considerable dispute among specialists concerning infantile autism"
+48069,infantilism,an abnormal condition in which an older child or adult retains infantile characteristics
+48070,infantilism,infantile behavior in mature persons
+48071,infantry foot,an army unit consisting of soldiers who fight on foot; "there came ten thousand horsemen and as many fully-armed foot"
+48072,infantryman marcher foot_soldier footslogger,fights on foot with small arms
+48073,infarct infarction,localized necrosis resulting from obstruction of the blood supply
+48074,infatuation,a foolish and usually extravagant passion or love or admiration
+48075,infatuation,an object of extravagant short-lived passion
+48076,infeasibility unfeasibility,the quality of not being doable
+48077,infection,the pathological state resulting from the invasion of the body by pathogenic microorganisms
+48078,infection,(phonetics) the alteration of a speech sound under the influence of a neighboring sound
+48079,infection,(medicine) the invasion of the body by pathogenic microorganisms and their multiplication which can lead to tissue damage and disease
+48080,infection,moral corruption or contamination; "ambitious men are led astray by an infection that is almost unavoidable"
+48081,infection,(international law) illegality that taints or contaminates a ship or cargo rendering it liable to seizure
+48082,infection contagion transmission,an incident in which an infectious disease is transmitted
+48083,infectious_agent infective_agent,an agent capable of producing infection
+48084,infectious_disease,a disease transmitted only by a specific kind of contact
+48085,infectious_mononucleosis mononucleosis mono glandular_fever kissing_disease,an acute disease characterized by fever and swollen lymph nodes and an abnormal increase of mononuclear leucocytes or monocytes in the bloodstream; not highly contagious; some believe it can be transmitted by kissing
+48086,infelicity,inappropriate and unpleasing manner or style (especially manner or style of expression)
+48087,inference illation,the reasoning involved in drawing a conclusion or making a logical judgment on the basis of circumstantial evidence and prior conclusions rather than on the basis of direct observation
+48088,inferior,one of lesser rank or station or quality
+48089,inferior_alveolar_artery arteria_alveolaris_inferior,the alveolar artery that goes through the mandibular canal to supply the lower teeth
+48090,inferior_cerebellar_artery,the inferior branch of the cerebellar artery
+48091,inferior_cerebral_vein venae_cerebrum_inferior,veins that drain the undersurface of the cerebral hemispheres and empty into the cavernous and transverse sinuses
+48092,inferior_colliculus,an essential auditory center in the midbrain
+48093,inferior_conjunction,(astronomy) the alignment of the Earth and a planet on the same side of the sun
+48094,inferior_court lower_court,any court whose decisions can be appealed to a higher court
+48095,inferior_epigastric_vein vena_epigastrica_inferior,empties into the external iliac vein
+48096,inferior_labial_artery arteria_labialis_inferior,an artery that is a branch of the facial artery that supplies the lower lip
+48097,inferior_labial_vein vena_labialis_inferior,a tributary of the facial vein that drains the lower lip
+48098,inferior_mesenteric_artery,arises near the lower end of the aorta and supplies the large intestine
+48099,inferior_ophthalmic_vein,a vein that drains a venous network in the floor and medial wall of the eye socket
+48100,inferior_planet,any of the planets whose orbit lies inside the earth's orbit
+48101,inferior_pulmonary_vein vena_pulmanalis_inferior,either of two pulmonary veins (left and right) returning blood from the inferior lobes of the lungs
+48102,inferior_rectus_muscle inferior_rectus rectus_inferior,the ocular muscle whose contraction turns the eyeball down and medially
+48103,inferior_thalamostriate_vein striate_vein,tributaries to the basal vein
+48104,inferior_thyroid_vein,any of several veins on each side that drain the thyroid gland and empty into the innominate vein
+48105,inferior_vena_cava postcava,receives blood from lower limbs and abdominal organs and empties into the posterior part of the right atrium of the heart; formed from the union of the two iliac veins
+48106,inferiority low_quality,an inferior quality
+48107,inferiority lower_status lower_rank,the state of being inferior
+48108,inferiority unfavorable_position,the quality of being a competitive disadvantage
+48109,inferiority_complex,a sense of personal inferiority arising from conflict between the desire to be noticed and the fear of being humiliated
+48110,infernal,an inhabitant of Hell; "his roar made the infernals quake"
+48111,infestation,the state of being invaded or overrun by parasites
+48112,infestation plague,a swarm of insects that attack plants; "a plague of grasshoppers"
+48113,infidelity unfaithfulness,the quality of being unfaithful
+48114,infielder,(baseball) a person who plays a position in the infield
+48115,infiltration,a process in which individuals (or small groups) penetrate an area (especially the military penetration of enemy positions without detection)
+48116,infiltrator,someone who takes up a position surreptitiously for the purpose of espionage
+48117,infiltrator,an intruder (as troops) with hostile intent
+48118,infiniteness infinitude unboundedness boundlessness limitlessness,the quality of being infinite; without bound or limit
+48119,infinitesimal,(mathematics) a variable that has zero as its limit
+48120,infinitive,the uninflected form of the verb
+48121,infinitude,an infinite quantity
+48122,infirmity frailty debility feebleness frailness valetudinarianism,the state of being weak in health or body (especially from old age)
+48123,infix,an affix that is inserted inside the word
+48124,infix_notation,a notation for forming mathematical expressions using parentheses and governed by rules of operator precedence; operators are dispersed among the operands
+48125,inflammation inflaming,arousal to violent emotion
+48126,inflammation redness rubor,a response of body tissues to injury or irritation; characterized by pain and swelling and redness and heat
+48127,inflammatory_disease,a disease characterized by inflammation
+48128,inflater inflator,an air pump operated by hand to inflate something (as a tire)
+48129,inflation,(cosmology) a brief exponential expansion of the universe (faster than the speed of light) postulated to have occurred shortly after the big bang
+48130,inflation,the act of filling something with air
+48131,inflation rising_prices,a general and progressive increase in prices; "in inflation everything gets more valuable except money"
+48132,inflation_rate rate_of_inflation,the rate of change of prices (as indicated by a price index) calculated on a monthly or annual basis
+48133,inflation_therapy,therapy in which water or oxygen or a drug is introduced into the respiratory tract with inhaled air
+48134,inflationary_spiral,an episode of inflation in which prices and wages increase at an increasing rate and currency rapidly loses value
+48135,inflection flection flexion,deviation from a straight or normal course
+48136,inflection inflexion,a change in the form of a word (usually by adding a suffix) to indicate a change in its grammatical function
+48137,inflectional_ending inflectional_suffix,an inflection that is added at the end of a root word
+48138,inflectional_morphology accidence,the part of grammar that deals with the inflections of words
+48139,inflexibility inflexibleness,a lack of physical flexibility
+48140,inflexibility rigidity rigidness,the quality of being rigid and rigorously severe
+48141,infliction,an act causing pain or damage
+48142,infliximab Remicade,a monoclonal antibody (trade name Remicade) used to treat Crohn's disease and rheumatoid arthritis; administered by infusion; use and dosage must be determined by a physician
+48143,infliximab Remicade,an anti-TNF compound (trade name Remicade) consisting of an antibody directed against TNF; it is given intravenously at one-month to three-month intervals; used in treatment of regional enteritis and rheumatoid arthritis
+48144,inflorescence,the flowering part of a plant or arrangement of flowers on a stalk
+48145,inflow influx,the process of flowing in
+48146,influence,the effect of one thing (or person) on another; "the influence of mechanical action"
+48147,influence,one having power to influence another; "she was the most important influence in my life"; "he was a bad influence on the children"
+48148,influence,a cognitive factor that tends to have an effect on what you do; "her wishes had a great influence on his thinking"
+48149,influence,a power to affect persons or events especially power based on prestige etc; "used her parents' influence to get the job"
+48150,influence,causing something without any direct or apparent effort
+48151,influenza flu grippe,an acute febrile highly contagious viral disease
+48152,infomercial informercial,a television commercial presented in the form of a short documentary
+48153,informality,a manner that does not take forms and ceremonies seriously
+48154,informant source,a person who supplies information
+48155,information,formal accusation of a crime
+48156,information,knowledge acquired through study or experience or instruction
+48157,information info,a message received and understood
+48158,information selective_information entropy,(communication theory) a numerical measure of the uncertainty of an outcome; "the signal contained thousands of bits of information"
+48159,information_age,a period beginning in the last quarter of the 20th century when information became easily accessible through publications and through the manipulation of information by computers and computer networks
+48160,information_bulletin,a bulletin containing the latest information
+48161,information_gathering,the act of collecting information
+48162,information_measure,a system of measurement of information based on the probabilities of the events that convey information
+48163,information_return,a return that provides information to the tax collector but does not compute the tax liability
+48164,information_science informatics information_processing IP,the sciences concerned with gathering, manipulating, storing, retrieving, and classifying recorded information
+48165,information_technology IT,the branch of engineering that deals with the use of computers and telecommunications to retrieve and store and transmit information
+48166,information_theory,(computer science) a statistical theory dealing with the limits and efficiency of information processing
+48167,information_warfare IW,the use of information or information technology during a time of crisis or conflict to achieve or promote specific objectives over a specific adversary or adversaries; "not everyone agrees that information warfare is limited to the realm of traditional warfare"
+48168,informed_consent,consent by a patient to undergo a medical or surgical treatment or to participate in an experiment after the patient understands the risks involved
+48169,informer betrayer rat squealer blabber,one who reveals confidential information in return for money
+48170,informer's_privilege,the right of the government to refuse to reveal the identity of an informer
+48171,informing making_known,a speech act that conveys information
+48172,informing ratting,to furnish incriminating evidence to an officer of the law (usually in return for favors)
+48173,infraorbital_artery arteria_infraorbitalis,an artery that originates from the maxillary artery and supplies structures below the orbit (from lower eyelid to upper lip)
+48174,infrared infrared_frequency,the infrared region of the electromagnetic spectrum; electromagnetic wave frequencies below the visible range; "they could sense radiation in the infrared"
+48175,infrared infrared_light infrared_radiation infrared_emission,electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves
+48176,infrared_ray,a ray of infrared radiation; produces a thermal effect (as from an infrared lamp)
+48177,infrared_spectrum,the spectrum of infrared radiation
+48178,infrared_therapy,the use of infrared radiation (as by infrared lamps or heating pads or hot water bottles) to relieve pain and increase circulation to a particular area of the body
+48179,infrastructure base,the stock of basic facilities and capital equipment needed for the functioning of a country or area; "the industrial base of Japan"
+48180,infrastructure substructure,the basic structure or features of a system or organization
+48181,infructescence,the fruiting stage of the inflorescence
+48182,infundibulum,any of various funnel-shaped parts of the body (but especially the hypophyseal stalk)
+48183,infuriation enragement,a feeling of intense anger
+48184,infusion,the process of extracting certain active properties (as a drug from a plant) by steeping or soaking (usually in water)
+48185,infusion,(medicine) the passive introduction of a substance (a fluid or drug or electrolyte) into a vein or between tissues (as by gravitational force)
+48186,infusion,the act of infusing or introducing a certain modifying element or quality; "the team's continued success is attributable to a steady infusion of new talent"
+48187,infusion extract,a solution obtained by steeping or soaking a substance (usually in water)
+48188,infusorian,any member of the subclass Infusoria
+48189,inga,any tree or shrub of the genus Inga having pinnate leaves and showy usually white flowers; cultivated as ornamentals
+48190,ingenue,an actress who specializes in playing the role of an artless innocent young girl
+48191,ingenue,an artless innocent young girl (especially as portrayed on the stage)
+48192,ingenue,the role of an innocent artless young woman in a play
+48193,ingenuity ingeniousness cleverness,the property of being ingenious; "a plot of great ingenuity"; "the cleverness of its design"
+48194,ingenuousness,openly straightforward or frank
+48195,ingesta,solid and liquid nourishment taken into the body through the mouth
+48196,ingot,metal that is cast in the shape of a block for convenient handling
+48197,ingot_iron,iron of high purity
+48198,ingrate thankless_wretch ungrateful_person,a person who shows no gratitude
+48199,ingratiation insinuation,the act of gaining acceptance or affection for yourself by persuasive and subtle blandishments; "she refused to use insinuation in order to gain favor"
+48200,ingratitude ungratefulness,a lack of gratitude
+48201,ingredient,a component of a mixture or compound
+48202,ingredient fixings,food that is a component of a mixture in cooking; "the recipe lists all the fixings for a salad"
+48203,ingress immersion,(astronomy) the disappearance of a celestial body prior to an eclipse
+48204,ingrown_hair,a hair that does not emerge from the follicle but remains embedded in the skin (usually causing inflammation)
+48205,ingrown_toenail onyxis,toenail having its free tip or edges embedded in the surrounding flesh
+48206,ingrowth,something that grows inward
+48207,inguinal_canal canalis_inguinalis,oblique passage through the lower abdominal wall; in males it is the passage through which the testes descend into the scrotum and it contains the spermatic cord; in females it transmits the round ligament of the uterus
+48208,inguinal_hernia,hernia in which a loop of intestine enters the inguinal canal; the most common type of hernia in males
+48209,inhabitancy inhabitation habitation,the act of dwelling in or living permanently in a place (said of both animals and men); "he studied the creation and inhabitation and demise of the colony"
+48210,inhabitant habitant dweller denizen indweller,a person who inhabits a particular place
+48211,inhalant,something that is inhaled
+48212,inhalant inhalation,a medication to be taken by inhaling it
+48213,inhalation inspiration aspiration intake breathing_in,the act of inhaling; the drawing in of air (or other gases) as in breathing
+48214,inhalation_anesthesia,general anesthesia achieved by administration of an inhalation anesthetic
+48215,inhalation_anesthetic inhalation_anaesthetic inhalation_general_anesthetic inhalation_general_anaesthetic,a gas that produces general anesthesia when inhaled
+48216,inhaler inhalator,a dispenser that produces a chemical vapor to be inhaled in order to relieve nasal congestion
+48217,inherence inherency,the state of inhering; the state of being a fixed characteristic; "the inherence of polysemy in human language"
+48218,inheritance hereditary_pattern,(genetics) attributes acquired via biological heredity from the parents
+48219,inheritance heritage,that which is inherited; a title or property or estate that passes by law to the heir on the death of the owner
+48220,inheritance heritage,any attribute or immaterial possession that is inherited from ancestors; "my only inheritance was my mother's blessing"; "the world's heritage of knowledge"
+48221,inheritance heritage,hereditary succession to a title or an office or property
+48222,inheritance_tax estate_tax death_tax death_duty,a tax on the estate of the deceased person
+48223,inherited_wealth,wealth that is inherited rather than earned
+48224,inhibition,(physiology) the process whereby nerves can retard or prevent the functioning of an organ or part; "the inhibition of the heart by the vagus nerve"
+48225,inhibition,the quality of being inhibited
+48226,inhibition suppression,(psychology) the conscious exclusion of unacceptable thoughts or desires
+48227,inhibitor,a substance that retards or stops an activity
+48228,inhomogeneity,the quality of being inhomogeneous
+48229,inhospitableness,the environmental condition in a region that lacks a favorable climate or terrain for life or growth
+48230,inhospitableness,having an unfriendly and inhospitable disposition
+48231,inhospitality,unkind and inconsiderate welcome; "he was taken aback by such inhospitality"
+48232,inhumaneness inhumanity,the quality of lacking compassion or consideration for others
+48233,inion,the craniometric point that is the most prominent point at the back of the head (at the occipital protuberance)
+48234,initial,the first letter of a word (especially a person's name); "he refused to put the initials FRS after his name"
+48235,initial_public_offering IPO initial_offering,a corporation's first offer to sell stock to the public
+48236,initialism,an abbreviation formed from the initial letters of the several words in the name and pronounced separately; "HTML is an initialism for HyperText Markup Language"
+48237,initiate enlightened,people who have been introduced to the mysteries of some field or activity; "it is very familiar to the initiate"
+48238,initiate learned_person pundit savant,someone who has been admitted to membership in a scholarly field
+48239,initiation founding foundation institution origination creation innovation introduction instauration,the act of starting something for the first time; introducing something new; "she looked forward to her initiation as an adult"; "the foundation of a new scientific society"
+48240,initiation induction installation,a formal entry into an organization or position or office; "his initiation into the club"; "he was ordered to report for induction into the army"; "he gave a speech as part of his installation into the hall of fame"
+48241,injection,the forceful insertion of a substance under pressure
+48242,injection injectant,any solution that is injected (as into the skin)
+48243,injection shot,the act of putting a liquid into the body by means of a syringe; "the nurse gave him a flu shot"
+48244,injector,a contrivance for injecting (e.g., water into the boiler of a steam engine or particles into an accelerator etc.)
+48245,injudiciousness indiscreetness,lacking good judgment
+48246,injunction,a formal command or admonition
+48247,injunction enjoining enjoinment cease_and_desist_order,(law) a judicial remedy issued in order to prohibit a party from doing or continuing to do a certain activity; "injunction were formerly obtained by writ but now by a judicial order"
+48248,injury,an act that causes someone or something to receive physical damage
+48249,injury,wrongdoing that violates another's rights and is unjustly inflicted
+48250,injury accidental_injury,an accident that results in physical damage or hurt
+48251,injury hurt harm trauma,any physical damage to the body caused by violence or accident or fracture etc.
+48252,injustice unfairness iniquity shabbiness,an unjust act
+48253,injustice unjustness,the practice of being unjust or unfair
+48254,ink,a liquid used for printing or writing or drawing
+48255,ink,dark protective fluid ejected into the water by cuttlefish and other cephalopods
+48256,ink-jet_printer,a printer that produces characters by projecting electrically charged droplets of ink
+48257,ink_bottle inkpot,a bottle of ink
+48258,ink_cartridge,a cartridge that contains ink and can be replaced
+48259,ink_eraser,an eraser that removes ink marks
+48260,inkberry gallberry gall-berry evergreen_winterberry Ilex_glabra,evergreen holly of eastern North America with oblong leathery leaves and small black berries
+48261,inkblot,a blot made with ink
+48262,inkle,a linen tape used for trimming as a decoration
+48263,inkling intimation glimmering glimmer,a slight suggestion or vague understanding; "he had no inkling what was about to happen"
+48264,inkstand,a tray or stand for writing implements and containers for ink
+48265,inkwell inkstand,a small well holding writing ink into which a pen can be dipped
+48266,inky_cap inky-cap_mushroom Coprinus_atramentarius,having a cap that melts into an inky fluid after spores have matured
+48267,inland_bill,a bill of exchange that is both drawn and made payable in the same country
+48268,inlay,(dentistry) a filling consisting of a solid substance (as gold or porcelain) fitted to a cavity in a tooth and cemented into place
+48269,inlay,a decoration made by fitting pieces of wood into prepared slots in a surface
+48270,inlet recess,an arm off of a larger body of water (often between rocky headlands)
+48271,inlet_manifold,manifold that carries vaporized fuel from the carburetor to the inlet valves of the cylinders
+48272,inmate,one of several resident of a dwelling (especially someone confined to a prison or hospital)
+48273,innateness,the quality of being innate
+48274,inner_city,the older and more populated and (usually) poorer central section of a city
+48275,inner_ear internal_ear labyrinth,a complex system of interconnecting cavities; concerned with hearing and equilibrium
+48276,inner_resource,a resource provided by the mind or one's personal capabilities; "to have an inner resource against loneliness"
+48277,inner_tube,an inflatable rubber tube that fits inside the casing of a pneumatic tire
+48278,innervation,the distribution of nerve fibers to an organ or body region
+48279,inning frame,(baseball) one of nine divisions of play during which each team has a turn at bat
+48280,innings,the batting turn of a cricket player or team
+48281,innocence,a state or condition of being innocent of a specific crime or offense; "the trial established his innocence"
+48282,innocency,an innocent quality or thing or act; "the innocencies of childhood"
+48283,innocent inexperienced_person,a person who lacks knowledge of evil
+48284,innominate_artery,a large artery arising from the arch of the aorta and divides into the right subclavian artery and the right common carotid artery; supplies the right side of the neck and head and the right shoulder and arm
+48285,innovativeness,originality by virtue of introducing new ideas
+48286,innumerableness countlessness,a number beyond counting
+48287,inoculant inoculum,a substance (a virus or toxin or immune serum) that is introduced into the body to produce or increase immunity to a particular disease
+48288,inoculating vaccinating,the act of protecting against disease by introducing a vaccine into the body to induce immunity; "doctors examined the recruits but nurses did the inoculating"
+48289,inoculation vaccination,taking a vaccine as a precaution against contracting a disease
+48290,inoculator vaccinator,a medical practitioner who inoculates people against diseases
+48291,inopportuneness untimeliness,the quality of occurring at an inconvenient time
+48292,inorganic_chemistry,the chemistry of compounds that do not contain hydrocarbon radicals
+48293,inorganic_compound,any compound that does not contain carbon
+48294,inosine,a nucleoside that is formed by the deamination of adenosine; used in kidney transplantation to provide a temporary source of sugar
+48295,inositol,an optically inactive alcohol that is a component of the vitamin B complex
+48296,inpatient inmate,a patient who is residing in the hospital where he is being treated
+48297,inpouring inpour inrush,an inflow; "an inpouring of spiritual comfort"
+48298,input,a component of production; something that goes into the production of output
+48299,input_file input_data,(computer science) a computer file that contains data that serve as input to a device or program
+48300,input_program,a utility program that organizes the input to a computer
+48301,input_routine,a routine that writes from an external source to an internal store
+48302,input_signal input,signal going into an electronic system
+48303,inquest,an inquiry into the cause of an unexpected death
+48304,inquirer enquirer questioner querier asker,someone who asks a question
+48305,inquiry enquiry,a systematic investigation of a matter of public interest
+48306,inquiry enquiry research,a search for knowledge; "their pottery deserves more research than it has received"
+48307,inquiry_agent,a private detective
+48308,inquisition,a severe interrogation (often violating the rights or privacy of individuals)
+48309,inquisitor interrogator,a questioner who is excessively harsh
+48310,inroad,an invasion or hostile attack
+48311,inroad,an encroachment or intrusion; "they made inroads in the United States market"
+48312,insalubrity insalubriousness,the quality of being insalubrious and debilitating
+48313,insanity,relatively permanent disorder of the mind
+48314,insanity_plea plea_of_insanity,(criminal law) a plea in which the defendant claims innocence due to mental incompetence at the time
+48315,inscription,the activity of inscribing (especially carving or engraving) letters or words
+48316,inscription lettering,letters inscribed (especially words engraved or carved) on something
+48317,inscrutability,the quality of being impossible to investigate; "the inscrutability of the future"
+48318,insect,small air-breathing arthropod
+48319,insecticide insect_powder,a chemical used to kill insects
+48320,insectifuge insect_repellent insect_repellant,a chemical substance that repels insects
+48321,insectivore,small insect-eating mainly nocturnal terrestrial or fossorial mammals
+48322,insectivore,any organism that feeds mainly on insects
+48323,insecureness,the state of being exposed to risk or anxiety
+48324,insecurity,the state of being subject to danger or injury
+48325,insecurity,the anxiety you experience when you feel vulnerable and insecure
+48326,insemination,the act of sowing (of seeds in the ground or, figuratively, of germs in the body or ideas in the mind, etc.)
+48327,insemination,the introduction of semen into the genital tract of a female
+48328,insensibility,a lack of sensibility
+48329,insensitivity insensitiveness,the inability to respond to affective changes in your interpersonal environment
+48330,insentience,lacking consciousness or ability to perceive sensations
+48331,insert,a folded section placed between the leaves of another publication
+48332,insert inset,an artifact that is inserted or is to be inserted
+48333,insertion introduction intromission,the act of putting one thing into another
+48334,insertional_mutagenesis,(genetics) a mutation caused by the insertion of exogenous DNA into a genome
+48335,inset,a small picture inserted within the bounds or a larger one
+48336,inside interior,the region that is inside of something
+48337,inside interior,the inner or enclosed surface of something
+48338,inside_caliper,caliper for measuring inside dimensions (the size of a cavity or hole); points on its legs curve outward
+48339,inside_clinch,a clinch with the end of the line inside the loop
+48340,inside_job,some transgression committed with the assistance of someone trusted by the victim; "the police decided that the crime was an inside job"
+48341,inside_loop,a loop consisting of a climb followed by inverted flight followed by a dive that returns to horizontal flight
+48342,inside_track,the inner side of a curved racecourse
+48343,inside_track,a favorable position in a competition; "the boss's son had the inside track for that job"
+48344,insider,an officer of a corporation or others who have access to private information about the corporation's operations
+48345,insider_information,important information about the plans or condition of a corporation that has not been released to the public; use for personal profit is illegal
+48346,insider_trading,buying or selling corporate stock by a corporate officer or other insider on the basis of information that has not been made public and is supposed to remain confidential
+48347,insidiousness,subtle and cumulative harmfulness (especially of a disease)
+48348,insidiousness,the quality of being designed to entrap
+48349,insight brainstorm brainwave,the clear (and often sudden) understanding of a complex situation
+48350,insight perceptiveness perceptivity,a feeling of understanding
+48351,insight sixth_sense,grasping the inner nature of things intuitively
+48352,insightfulness acumen,shrewdness shown by keen insight
+48353,insignia,a badge worn to show official position
+48354,insignia_of_rank,an insignia worn on a military uniform
+48355,insignificance,the quality of having little or no significance
+48356,insincerity falseness hollowness,the quality of not being open or truthful; deceitful or hypocritical
+48357,insinuation innuendo,an indirect (and usually malicious) implication
+48358,insistence insistency,the act of insisting on something; "insistence on grammatical correctness is a conservative position"
+48359,insistence insisting,continual and persistent demands
+48360,insolation,incident solar radiation
+48361,insole innersole,the inner sole of a shoe or boot where the foot rests
+48362,insolence,an offensive disrespectful impudent act
+48363,insolubility,the quality of being insoluble and difficult to dissolve in liquid
+48364,insolvency,the lack of financial resources
+48365,insomnia,an inability to sleep; chronic sleeplessness
+48366,insomniac sleepless_person,someone who cannot sleep
+48367,inspection review,a formal or official examination; "the platoon stood ready for review"; "we had to wait for the inspection before we could use the elevator"
+48368,inspector,a high ranking police officer
+48369,inspector_general,a military officer responsible for investigations
+48370,inspectorate,a body of inspectors
+48371,inspectorship,the office of inspector
+48372,inspiration,arousal of the mind to special unusual activity or creativity
+48373,inspiration,a sudden intuition as part of solving a problem
+48374,inspiration brainchild,a product of your creative thinking and work; "he had little respect for the inspirations of other artists"; "after years of work his brainchild was a tangible reality"
+48375,inspiration stirring,arousing to a particular emotion or action
+48376,inspissation,the process of thickening by dehydration
+48377,instability,an unstable order
+48378,instability,unreliability attributable to being unstable
+48379,instability unstableness,the quality or attribute of being unstable and irresolute
+48380,installation installing installment instalment,the act of installing something (as equipment); "the telephone installation took only a few minutes"
+48381,installation_charge,the charge for installing something
+48382,installment,a payment of part of a debt; usually paid at regular intervals
+48383,installment instalment,a part of a published serial
+48384,installment_credit installment_loan,a loan repaid with interest in equal periodic payments
+48385,installment_debt,debt to be paid by installments
+48386,installment_plan installment_buying time_plan,a system for paying for goods by installments
+48387,instant_coffee,dehydrated coffee that can be made into a drink by adding hot water; "the advantages of instant coffee are speed of preparation and long shelf life"
+48388,instantiation,a representation of an idea in the form of an instance of it; "how many instantiations were found?"
+48389,instar,an insect or other arthropod between molts
+48390,instep,the arch of the foot
+48391,instep,the part of a shoe or stocking that covers the arch of the foot
+48392,instigator initiator,a person who initiates a course of action
+48393,instigator provoker inciter instigant firebrand,someone who deliberately foments trouble; "she was the instigator of their quarrel"
+48394,instillation,a liquid that is instilled drop by drop
+48395,instillation instillment instilment,the introduction of a liquid (by pouring or injection) drop by drop
+48396,instillator,medical apparatus that puts a liquid into a cavity drop by drop
+48397,instinct inherent_aptitude,inborn pattern of behavior often responsive to specific stimuli; "the spawning instinct in salmon"; "altruistic instincts in social animals"
+48398,institute,an association organized to promote art or science or education
+48399,institution,a custom that for a long time has been an important feature of some group or society; "the institution of marriage"; "the institution of slavery"; "he had become an institution in the theater"
+48400,institution,an establishment consisting of a building or complex of buildings where an organization for the promotion of some cause is situated
+48401,institution establishment,an organization founded and united for a specific purpose
+48402,instroke,the stroke of an engine piston moving away from the crankshaft
+48403,instruction command statement program_line,(computer science) a line of code written as part of a computer program
+48404,instruction_book,a book of directions for using or operating some piece of equipment
+48405,instruction_manual instructions book_of_instructions operating_instructions,a manual usually accompanying a technical device and explaining how to install or operate it
+48406,instructorship,the position of instructor
+48407,instructress,a woman instructor
+48408,instrument,a device that requires skill for proper use
+48409,instrument pawn cat's-paw,a person used by another to gain an end
+48410,instrument tool,the means whereby some act is accomplished; "my greed was the instrument of my destruction"; "science has given us new tools to fight disease"
+48411,instrument_flying,navigation of an airplane solely by instruments
+48412,instrument_landing,an aircraft landing made entirely by means of instruments
+48413,instrument_of_execution,an instrument designed and used to take the life of a condemned person
+48414,instrument_of_punishment,an instrument designed and used to punish a condemned person
+48415,instrument_of_torture,an instrument of punishment designed and used to inflict torture on the condemned person
+48416,instrumental_conditioning,operant conditioning that pairs a response with a reinforcement in discrete trials; reinforcement occurs only after the response is given
+48417,instrumental_music,music intended to be performed by a musical instrument or group of instruments
+48418,instrumental_music,music produced by playing a musical instrument
+48419,instrumental_role instrument,the semantic role of the entity (usually inanimate) that the agent uses to perform an action or start a process
+48420,instrumentalism,a system of pragmatic philosophy that considers idea to be instruments that should guide our actions and their value is measured by their success
+48421,instrumentality,a subsidiary organ of government created for a special purpose; "are the judicial instrumentalities of local governments adequate?"; "he studied the French instrumentalities for law enforcement"
+48422,instrumentality,the quality of being instrumental for some purpose
+48423,instrumentality instrumentation,an artifact (or system of artifacts) that is instrumental in accomplishing some end
+48424,instrumentation,the instruments called for in a musical score or arrangement for a band or orchestra
+48425,instrumentation,the act of providing or using the instruments needed for some implementation
+48426,insubordination,defiance of authority
+48427,insubordination rebelliousness,an insubordinate act
+48428,insubstantiality,lack of solid substance and strength
+48429,insubstantiality,lacking substance or reality
+48430,insufficiency,(pathology) inability of a bodily part or organ to function normally
+48431,insufficiency inadequacy,a lack of competence; "pointed out the insufficiencies in my report"; "juvenile offenses often reflect an inadequacy in the parents"
+48432,insufficiency inadequacy deficiency,lack of an adequate quantity or number; "the inadequacy of unemployment benefits"
+48433,insufflation,(medicine) blowing air or medicated powder into the lungs (or into some other body cavity)
+48434,insufflation,an act of blowing or breathing on or into something
+48435,insulant insulation,insulating material that reduces or prevents the transmission of heat or sound or electricity
+48436,insulation,the act of protecting something by surrounding it with material that reduces or prevents the transmission of sound or heat or electricity
+48437,insulation insularity insularism detachment,the state of being isolated or detached; "the insulation of England was preserved by the English Channel"
+48438,insulator dielectric nonconductor,a material such as glass or porcelain with negligible electrical or thermal conductivity
+48439,insulin,hormone secreted by the isles of Langerhans in the pancreas; regulates storage of glycogen in the liver and accelerates oxidation of sugar in cells
+48440,insulin_shock insulin_reaction,hypoglycemia produced by excessive insulin in the system causing coma
+48441,insulin_shock insulin_shock_therapy insulin_shock_treatment,the administration of sufficient insulin to induce convulsions and coma
+48442,insult affront,a deliberately offensive act or something producing the effect of deliberate disrespect; "turning his back on me was a deliberate insult"
+48443,insurability,the quality of being insurable; the conditions under which an insurance company will issue insurance to an applicant (based on standards set by the insurance company)
+48444,insurable_interest,an interest in a person or thing that will support the issuance of an insurance policy; an interest in the survival of the insured or in the preservation of the thing that is insured
+48445,insurance,promise of reimbursement in the case of loss; paid to people or companies so concerned about hazards that they have made prepayments to an insurance company
+48446,insurance_broker insurance_agent general_agent underwriter,an agent who sells insurance
+48447,insurance_claim,demand for payment in accordance with an insurance policy
+48448,insurance_company insurance_firm insurer insurance_underwriter underwriter,a financial institution that sells insurance
+48449,insured insured_person,a person whose interests are protected by an insurance policy; a person who contracts for an insurance policy that indemnifies him against loss of property or life or health etc.
+48450,insurgency insurgence,an organized rebellion aimed at overthrowing a constituted government through the use of subversion and armed conflict
+48451,insurgent insurrectionist freedom_fighter rebel,a person who takes part in an armed rebellion against the constituted authority (especially in the hope of improving conditions)
+48452,insurrectionism,the principle of revolt against constituted authority
+48453,intactness,the state of being unimpaired
+48454,intaglio diaglyph,glyptic art consisting of a sunken or depressed engraving or carving on a stone or gem (as opposed to cameo)
+48455,intaglio_printing intaglio gravure,a printing process that uses an etched or engraved plate; the plate is smeared with ink and wiped clean, then the ink left in the recesses makes the print
+48456,intake inlet,an opening through which fluid is admitted to a tube or container
+48457,intake_manifold,a manifold consisting of a pipe to carry fuel to each cylinder in an internal-combustion engine
+48458,intake_valve,a valve that controls the flow of fluid through an intake
+48459,intangibility intangibleness impalpability,the quality of being intangible and not perceptible by touch
+48460,intangible intangible_asset,assets that are saleable though not material or physical
+48461,integer whole_number,any of the natural numbers (positive or negative) or zero; "an integer is a number that is not a fraction"
+48462,integral,the result of a mathematical integration; F(x) is the integral of f(x) if dF/dx = f(x)
+48463,integral_calculus,the part of calculus that deals with integration and its application in the solution of differential equations and in determining areas or volumes etc.
+48464,integrated_circuit microcircuit,a microelectronic computer circuit incorporated into a chip or semiconductor; a whole system rather than a single component
+48465,integrated_data_processing IDP,automatic data processing in which data acquisition and other stages or processing are integrated into a coherent system
+48466,integrated_logistic_support,the pooling of specific resources by subscribing nations for the support of some joint operation
+48467,integration,an operation used in the calculus whereby the integral of a function is determined
+48468,integration integrating desegregation,the action of incorporating a racial or religious group into a community
+48469,integrator planimeter,a measuring instrument for measuring the area of an irregular plane figure
+48470,integrity,moral soundness; "he expects to find in us the common honesty and integrity of men of business"; "they admired his scrupulous professional integrity"
+48471,integrity unity wholeness,an undivided or unbroken completeness or totality with nothing wanting; "the integrity of the nervous system is required for normal development"; "he took measures to insure the territorial unity of Croatia"
+48472,integument,an outer protective covering such as the skin of an animal or a cuticle or seed coat or rind or shell
+48473,integumentary_system,the skin and its appendages
+48474,intellectual intellect,a person who uses the mind creatively
+48475,intellectual_property,intangible property that is the result of creativity (such as patents or trademarks or copyrights)
+48476,intellectualization intellectualisation,(psychiatry) a defense mechanism that uses reasoning to block out emotional stress and conflict
+48477,intelligence,the ability to comprehend; to understand and profit from experience
+48478,intelligence intelligence_activity intelligence_operation,the operation of gathering information about an enemy
+48479,intelligence intelligence_information,secret information about an enemy (or potential enemy); "we sent out planes to gather intelligence on their radar coverage"
+48480,intelligence intelligence_service intelligence_agency,a unit responsible for gathering and interpreting information about an enemy
+48481,intelligence_analyst,a government analyst of information about an enemy or potential enemy
+48482,intelligence_cell,a terrorist cell whose members are trained to perform reconnaissance and surveillance
+48483,intelligence_quotient IQ I.Q.,a measure of a person's intelligence as indicated by an intelligence test; the ratio of a person's mental age to their chronological age (multiplied by 100)
+48484,intelligence_test IQ_test,a psychometric test of intelligence; "they used to think that intelligence is what an intelligence test tests"
+48485,intelligentsia clerisy,an educated and intellectual elite
+48486,intelligibility,the quality of language that is comprehensible
+48487,intemperance,the quality of being intemperate
+48488,intemperance intemperateness,consumption of alcoholic drinks
+48489,intemperance intemperateness self-indulgence,excess in action and immoderate indulgence of bodily appetites, especially in passion or indulgence; "the intemperance of their language"
+48490,intensification,the act of increasing the contrast of (a photographic film)
+48491,intensification,action that makes something stronger or more extreme
+48492,intensifier intensive,a modifier that has little meaning except to intensify the meaning it modifies; "`up' in `finished up' is an intensifier"; "`honestly' in `I honestly don't know' is an intensifier"
+48493,intension connotation,what you must know in order to determine the reference of an expression
+48494,intensity intensiveness,high level or degree; the property of being intense
+48495,intensity strength intensity_level,the amount of energy transmitted (as by acoustic or electromagnetic radiation); "he adjusted the intensity of the sound"; "they measured the station's signal strength"
+48496,intensive_care,close monitoring and constant medical care of patients with life-threatening conditions
+48497,intensive_care_unit ICU,a hospital unit staffed and equipped to provide intensive care
+48498,intent purport spirit,the intended meaning of a communication
+48499,intention,(usually plural) the goal with respect to a marriage proposal; "his intentions are entirely honorable"
+48500,intention,an act of intending; a volition that you intend to carry out; "my intention changed once I saw her"
+48501,intentionality,expressive of intentions
+48502,intentness engrossment,the quality of being intent and concentrated; "the intentness of his gaze"
+48503,inter-service_support,action by one military service to provide logistic (or administrative) support to another military service
+48504,interaction,a mutual or reciprocal action; interacting
+48505,interaction fundamental_interaction,(physics) the transfer of energy between elementary particles or between an elementary particle and a field or between fields; mediated by gauge bosons
+48506,interbank_loan,a loan from one bank to another
+48507,intercapitular_vein vena_intercapitalis,veins connecting the dorsal and palmar veins of the hand or the dorsal and plantar veins of the foot
+48508,intercept,the point at which a line intersects a coordinate axis
+48509,interception,the act of intercepting; preventing something from proceeding or arriving; "he resorted to the interception of his daughter's letters"; "he claimed that the interception of one missile by another would be impossible"
+48510,interception,(American football) the act of catching a football by a player on the opposing team
+48511,interceptor,a fast maneuverable fighter plane designed to intercept enemy aircraft
+48512,intercession,a prayer to God on behalf of another person
+48513,interchange,a junction of highways on different levels that permits traffic to move from one to another without crossing traffic streams
+48514,interchange reciprocation give-and-take,mutual interaction; the activity of reciprocating or exchanging (especially information)
+48515,intercommunication,mutual communication; communication with each other; "they intercepted intercommunication between enemy ships"
+48516,intercommunication_system intercom,a communication system linking different rooms within a building or ship etc
+48517,intercommunion,participation in Holy Communion by members of more than one church (eg Catholic and Orthodox)
+48518,interconnection,(computer science) the act of interconnecting (wires or computers or theories etc.)
+48519,interconnection interconnectedness,a state of being connected reciprocally; "an interconnection between the two buildings"
+48520,intercontinental_ballistic_missile ICBM,a ballistic missile that is capable of traveling from one continent to another
+48521,intercostal intercostal_muscle musculus_intercostalis,muscles between the ribs; they contract during inspiration
+48522,intercostal_artery arteria_intercostalis,several arteries and supplying the intercostal spaces of the rib cage
+48523,intercostal_vein vena_intercostalis,several veins draining the intercostal spaces of the rib cage
+48524,intercourse social_intercourse,communication between individuals
+48525,interdepartmental_support interagency_support,provision of logistic (or administrative) support by one or more of the military services to one or more departments or agencies of the United States government
+48526,interdict,an ecclesiastical censure by the Roman Catholic Church withdrawing certain sacraments and Christian burial from a person or all persons in a particular district
+48527,interdict interdiction,a court order prohibiting a party from doing a certain activity
+48528,interdiction,authoritative prohibition
+48529,interdiction_fire,fire directed to an area to prevent the enemy from using that area
+48530,interest,a fixed charge for borrowing money; usually a percentage of the amount borrowed; "how much interest do you pay on your mortgage?"
+48531,interest interest_group,(usually plural) a social group whose members control some field of activity and who have common aims; "the iron interests stepped up production"
+48532,interest interestingness,the power of attracting or holding one's attention (because it is unusual or exciting etc.); "they said nothing of great interest"; "primary colors can add interest to a room"
+48533,interest involvement,a sense of concern with and curiosity about someone or something; "an interest in music"
+48534,interest stake,(law) a right or legal share of something; a financial involvement with something; "they have interests all over the world"; "a stake in the company's future"
+48535,interest_expense,interest paid on loans
+48536,interest_rate rate_of_interest,the percentage of a sum of money charged for its use
+48537,interestedness,the state of being interested
+48538,interface,the overlap where two theories or phenomena affect each other or have links with each other; "the interface between chemistry and biology"
+48539,interface,(chemistry) a surface forming a common boundary between two things (two objects or liquids or chemical phases)
+48540,interface port,(computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals)
+48541,interface user_interface,(computer science) a program that controls a display for the user (usually on a computer monitor) and that allows the user to interact with the system
+48542,interfacial_tension interfacial_surface_tension,surface tension at the surface separating two non-miscible liquids
+48543,interference,(American football) blocking a player's path with your body; "he ran interference for the quarterback"
+48544,interferometer,any measuring instrument that uses interference patterns to make accurate measurements of waves
+48545,interferon,an antiviral protein produced by cells that have been invaded by a virus; inhibits replication of the virus
+48546,intergalactic_space,the space between galaxies; "the Milky Way travels through intergalactic space"
+48547,interim meantime meanwhile lag,the time between one event, process, or period and another; "meanwhile the socialists are running the government"
+48548,interim_overhaul,an overhaul between the regular times for overhauling
+48549,interior_angle internal_angle,the angle inside two adjacent sides of a polygon
+48550,interior_decoration decor,decoration consisting of the layout and furnishings of a livable interior
+48551,interior_decoration interior_decorating,the trade or act of decorating the interior of a building or room, especially with regard to color combination, paint, fabrics, carpeting, etc.
+48552,interior_decorator house_decorator room_decorator decorator,a person who specializes in interior decoration
+48553,interior_design,the art of designing the interior decoration for a house, office, or other architectural space
+48554,interior_designer designer,a person who specializes in interior design
+48555,interior_door,a door that closes off rooms within a building
+48556,interior_live_oak Quercus_wislizenii Quercus_wizlizenii,a small shrubby evergreen tree of western North America similar to the coast live oak but occurring chiefly in foothills of mountain ranges removed from the coast; an important part of the chaparral
+48557,interior_monologue,a literary genre that presents a fictional character's sequence of thoughts in the form of a monologue
+48558,interjection interposition interpolation interpellation,the action of interjecting or interposing an action or remark that interrupts
+48559,interlayer,a layer placed between other layers
+48560,interleaf,a blank leaf inserted between the leaves of a book
+48561,interleukin,any of several lymphokines that promote macrophages and killer T cells and B cells and other components of the immune system
+48562,interlock ignition_interlock,a device that prevents an automotive engine from starting; "car theives know how to bypass the ignition interlock"
+48563,interlocutor conversational_partner,a person who takes part in a conversation
+48564,interlocutor middleman,the performer in the middle of a minstrel line who engages the others in talk
+48565,interlude,an intervening period or episode
+48566,interlude intermezzo entr'acte,a brief show (music or dance etc) inserted between the sections of a longer performance
+48567,intermaxillary_suture sutura_intermaxillaris,the suture between the two maxillae of the upper jawbone
+48568,intermediate,a substance formed during a chemical process before the desired product is obtained
+48569,intermediate_host,a host that is used by a parasite in the course of its life cycle
+48570,intermediate_temporal_artery arteria_temporalis_intermedia,temporal artery that goes to the middle part of the cerebral cortex of the temporal lobe
+48571,intermediate_vector_boson,a gauge boson that mediates weak interactions between particles
+48572,intermediate_wheatgrass Agropyron_intermedium Elymus_hispidus,Asiatic grass introduced into United States rangelands for pasture and fodder
+48573,intermezzo,a short movement coming between the major sections of a symphony
+48574,intermezzo,a short piece of instrumental music composed for performance between acts of a drama or opera
+48575,intermission,the act of suspending activity temporarily
+48576,intermittence intermittency,the quality of being intermittent; subject to interruption or periodic stopping
+48577,intermittent_claudication,lameness due to pain in leg muscles because the blood supply is inadequate; pain subsides with rest
+48578,intern interne houseman medical_intern,an advanced student or graduate in medicine gaining supervised practical experience (`houseman' is a British term)
+48579,internal-combustion_engine ICE,a heat engine in which combustion occurs inside the engine rather than in a separate furnace; heat expands a gas that either moves a piston or turns a gas turbine
+48580,internal_auditor,an auditor who is an employee of the company whose records are audited and who provides information to the management and board of directors
+48581,internal_carotid_artery,the branch of the carotid artery that supplies blood to the brain and eyes and internal parts of the head
+48582,internal_cerebral_vein vena_cerebrum_internus,two paired veins passing caudally near the midline and uniting to form the great cerebral vein
+48583,internal_combustion,the combustion of fuel inside a cylinder (as in an internal-combustion engine)
+48584,internal_control,an accounting procedure or system designed to promote efficiency or assure the implementation of a policy or safeguard assets or avoid fraud and error etc.
+48585,internal_drive,a drive mounted inside of a computer
+48586,internal_iliac_artery hypogastric_artery,the inner branch of the common iliac artery on either side of the body; divides into several branches that supply blood to the pelvic and gluteal areas
+48587,internal_jugular_vein,a continuation of the sigmoid sinus of the dura mater; joins the subclavian vein to form the brachiocephalic vein
+48588,internal_maxillary_artery,the maxillary artery that supplies deep structure of the face and some of the meninges
+48589,internal_medicine general_medicine,the branch of medicine that deals with the diagnosis and (nonsurgical) treatment of diseases of the internal organs (especially in adults)
+48590,internal_organ viscus,a main organ that is situated inside the body
+48591,internal_revenue,government revenue from domestic sources (excluding customs)
+48592,internal_rhyme,a rhyme between words in the same line
+48593,internalization internalisation incorporation,learning (of values or attitudes etc.) that is incorporated within yourself
+48594,internasal_suture sutura_internasalis,the suture between the two nasal bones
+48595,international_candle,a former international unit of luminous intensity; now replaced by the candela
+48596,international_flight,a flight that takes off in one country and lands in another
+48597,international_intelligence_agency,an intelligence agency outside the United States
+48598,international_law law_of_nations,the body of laws governing relations between nations
+48599,international_law_enforcement_agency,an international administrative unit responsible for law enforcement
+48600,international_terrorism,terrorism practiced in a foreign country by terrorists who are not native to that country
+48601,internationalism,the doctrine that nations should cooperate because their common interests are more important than their differences
+48602,internationalist,an advocate of internationalism
+48603,internationalist,a member of a socialist or communist international
+48604,internationality internationalism,quality of being international in scope; "he applauded the internationality of scientific terminology"
+48605,internationalization internationalisation,the act of bringing something under international control
+48606,internee,a person who is interned; "the internees were enemy aliens and suspected terrorists"
+48607,internet net cyberspace,a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange
+48608,internist,a specialist in internal medicine
+48609,internment,confinement during wartime
+48610,internode,a segment of a stem between two nodes
+48611,internship,the position of a medical intern
+48612,internuncio,(Roman Catholic Church) a diplomatic representative of the Pope ranking below a nuncio
+48613,interoception,sensitivity to stimuli originating inside of the body
+48614,interoceptor enteroceptor,any receptor that responds to stimuli inside the body
+48615,interoperability,(computer science) the ability to exchange and use information (usually in a large heterogeneous network made up of several local area networks)
+48616,interpellation,(parliament) a parliamentary procedure of demanding that a government official explain some act or policy
+48617,interpenetration,the action of penetrating between or among
+48618,interpenetration permeation,mutual penetration; diffusion of each through the other
+48619,interphalangeal_joint,any of the joints between the phalanges of the fingers or toes
+48620,interphone,a telephonic intercommunication system linking different rooms in a building or ship etc
+48621,interplanetary_dust,microscopic particles in the interplanetary medium
+48622,interplanetary_gas,a rarefied flow of gas and charged particles (plasma) that stream from the sun and form the solar wind
+48623,interplanetary_medium,interplanetary space including forms of energy and gas and dust
+48624,interplanetary_space,the part of outer space within the solar system
+48625,interplay,reciprocal action and reaction
+48626,interpolation,(mathematics) calculation of the value of a function between the values already known
+48627,interpolation insertion,a message (spoken or written) that is introduced or inserted; "with the help of his friend's interpolations his story was eventually told"; "with many insertions in the margins"
+48628,interposition intervention,the act or fact of interposing one thing between or among others
+48629,interpretation,an explanation that results from interpreting something; "the report included his interpretation of the forensic evidence"
+48630,interpretation interpreting rendition rendering,an explanation of something that is not immediately obvious; "the edict was subject to many interpretations"; "he annoyed us with his interpreting of parables"; "often imitations are extended to provide a more accurate rendition of the child's intended meaning"
+48631,interpretation reading version,a mental representation of the meaning or significance of something
+48632,interpreter,someone who uses art to represent something; "his paintings reveal a sensitive interpreter of nature"; "she was famous as an interpreter of Shakespearean roles"
+48633,interpreter interpretive_program,(computer science) a program that translates and executes source language statements one line at a time
+48634,interpreter translator,someone who mediates between speakers of different languages
+48635,interpretive_dance interpretive_dancing interpretative_dance interpretative_dancing,a form of modern dance in which the dancer's movements depict an emotion or tell a story
+48636,interreflection,reciprocal reflection between two reflecting surfaces; "there was interreflection between the two surfaces of the lens"
+48637,interregnum,the time between two reigns, governments, etc.
+48638,interrelation interrelationship interrelatedness,mutual or reciprocal relation or relatedness; "interrelationships of animal structure and function"
+48639,interrogation,a transmission that will trigger an answering transmission from a transponder
+48640,interrogation examination interrogatory,formal systematic questioning
+48641,interrogative_mood interrogative,some linguists consider interrogative sentences to constitute a mood
+48642,interrupt,a signal that temporarily stops the execution of a program so that another procedure can be carried out
+48643,interrupted_fern Osmunda_clatonia,North American fern having tall erect pinnate fronds and a few sporogenous pinnae at or near the center of the fertile fronds
+48644,interrupter,a device for automatically interrupting an electric current
+48645,interruption break,some abrupt occurrence that interrupts an ongoing activity; "the telephone is an annoying interruption"; "there was a break in the action when a player was hurt"
+48646,intersection,a point or set of points common to two or more geometric configurations
+48647,intersection,the act of intersecting (as joining by causing your path to intersect your target's path)
+48648,intersection crossroad crossway crossing carrefour,a junction where one street or road crosses another
+48649,intersection intersection_point point_of_intersection,a point where lines intersect
+48650,intersection product Cartesian_product,the set of elements common to two or more sets; "the set of red hats is the intersection of the set of hats and the set of red things"
+48651,interspersion interspersal,the act of combining one thing at intervals among other things; "the interspersion of illustrations in the text"
+48652,interstate interstate_highway,one of the system of highways linking major cities in the 48 contiguous states of the United States
+48653,interstellar_medium,interstellar space including streams of protons moving from the stars
+48654,interstellar_space,the space between stars
+48655,interstice,a small structural space between tissues or parts of an organ; "the interstices of a network"
+48656,interstice,small opening between things
+48657,interstitial_fluid,liquid found between the cells of the body that provides much of the liquid environment of the body
+48658,interstitial_pneumonia,chronic lung disease affecting the interstitial tissue of the lungs
+48659,interstitial_tissue,tissue between the cells of a structure or part in plant or animal
+48660,intertrigo,chafing between two skin surfaces that are in contact (as in the armpit or under the breasts or between the thighs)
+48661,interval,a set containing all points (or all real numbers) between two given endpoints
+48662,interval musical_interval,the difference in pitch between two notes
+48663,interval separation,the distance between things; "fragile items require separation and cushioning"
+48664,intervenor,(law) a party who interposes in a pending proceeding
+48665,intervention,(law) a proceeding that permits a person to enter into a lawsuit already in progress; admission of person not an original party to the suit so that person can protect some right or interest that is allegedly affected by the proceedings; "the purpose of intervention is to prevent unnecessary duplication of lawsuits"
+48666,intervention intercession,the act of intervening (as to mediate a dispute, etc.); "it occurs without human intervention"
+48667,intervention interference,a policy of intervening in the affairs of other countries
+48668,interventricular_foramen foramen_of_Monro Monro's_foramen,the small opening (on both the right and left sides) that connects the third ventricle in the diencephalon with the lateral ventricle in the cerebral hemisphere
+48669,intervertebral_disc intervertebral_disk,a fibrocartilaginous disc serving as a cushion between all of the vertebrae of the spinal column (except between the first two)
+48670,intervertebral_vein vena_intervertebralis,one of several veins accompanying spinal nerves
+48671,interview,the questioning of a person (or a conversation in which information is elicited); often conducted by journalists; "my interviews with teenagers revealed a weakening of religious bonds"
+48672,interviewee,a person who is interviewed
+48673,interviewer,a person who conducts an interview
+48674,intestacy,the situation of being or dying without a legally valid will
+48675,intestinal_bypass,surgical operation that shortens the small intestine; used in treating obesity
+48676,intestinal_flora,harmless microorganisms (as Escherichia coli) that inhabit the intestinal tract and are essential for its normal functioning
+48677,intestinal_juice,secretions by glands lining the walls of the intestines
+48678,intestinal_obstruction ileus,blockage of the intestine (especially the ileum) that prevents the contents of the intestine from passing to the lower bowel
+48679,intestine bowel gut,the part of the alimentary canal between the stomach and the anus
+48680,inti,the basic unit of money in Peru
+48681,intifada intifadah,an uprising by Palestinian Arabs (in both the Gaza Strip and the West Bank) against Israel in the late 1980s and again in 2000; "the first intifada ended when Israel granted limited autonomy to the Palestine National Authority in 1993"
+48682,intima,the innermost membrane of an organ (especially the inner lining of an artery or vein or lymphatic vessel)
+48683,intimidation,the feeling of discouragement in the face of someone's superior fame or wealth or status etc.
+48684,intimidation,the feeling of being intimidated; being made to feel afraid or timid
+48685,intolerance,unwillingness to recognize and respect differences in opinions or beliefs
+48686,intolerance,impatience with annoyances; "his intolerance of interruptions"
+48687,intonation,singing by a soloist of the opening piece of plainsong
+48688,intonation,the production of musical tones (by voice or instrument); especially the exactitude of the pitch relations
+48689,intonation chanting,the act of singing in a monotonous tone
+48690,intonation modulation pitch_contour,rise and fall of the voice pitch
+48691,intonation_pattern,intonations characteristic of questions and requests and statements
+48692,intoxicant,a drug that can produce a state of intoxication
+48693,intoxication,excitement and elation beyond the bounds of sobriety; "the intoxication of wealth and power"
+48694,intracapsular_surgery,cataract surgery in which the entire lens is removed
+48695,intracellular_fluid,liquid contained inside the cell membranes (usually containing dissolved solutes)
+48696,intracranial_aneurysm,an aneurysm of a cranial artery
+48697,intractability intractableness,the trait of being hard to influence or control
+48698,intradermal_injection,an injection into the skin
+48699,intradermal_test subcutaneous_test,a form of skin test in which the suspected allergen is injected into the skin
+48700,intrados,the interior curve of an arch
+48701,intramuscular_injection,an injection into a muscle
+48702,intranet,a restricted computer network; a private network created using World Wide Web software
+48703,intransigency intransigence,the trait of being intransigent; stubbornly refusing to compromise
+48704,intransitive_verb intransitive_verb_form intransitive,a verb (or verb construction) that does not take an object
+48705,intransitivity intransitiveness,the grammatical relation created by an intransitive verb
+48706,intraocular_lens,an artificial lens that is implanted into the eye of someone to replace a damaged natural lens or someone who has had a cataract removed
+48707,intraocular_pressure IOP,pressure exerted by the fluids inside the eyeball; regulated by resistance to the outward flow of aqueous humor; "glaucoma can result from increased intraocular pressure"
+48708,intrauterine_device IUD,contraceptive device consisting of a piece of bent plastic or metal that is inserted through the vagina into the uterus
+48709,intravasation,entry of foreign matter into a blood vessel
+48710,intravenous_anesthetic,an anesthetic that produces anesthesia when injected into the circulatory system
+48711,intravenous_drip,slow continuous drip introducing solutions intravenously (a drop at a time)
+48712,intravenous_feeding IV,administration of nutrients through a vein
+48713,intravenous_injection,an injection into a vein
+48714,intravenous_pyelogram IVP,X-ray picture of the kidneys and ureters after injection of a radiopaque dye
+48715,intravenous_pyelography IVP,performing pyelography with intravenous injection of a contrast medium
+48716,intrigue,a clandestine love affair
+48717,intrigue machination,a crafty and involved plot to achieve your (usually sinister) ends
+48718,intrinsic_factor,a substance produced by the mucosa of the stomach and intestines that is essential for the absorption of vitamin B12; "lack of intrinsic factor can result in pernicious anemia"
+48719,intrinsic_fraud,fraud (as by use of forged documents or false claims or perjury) that misleads a court or jury and induces a finding for the one perpetrating the fraud
+48720,intro,a brief introductory passage to a piece of popular music
+48721,introduction,a new proposal; "they resisted the introduction of impractical alternatives"
+48722,introduction,a basic or elementary instructional text
+48723,introduction,the first section of a communication
+48724,introduction debut first_appearance launching unveiling entry,the act of beginning something new; "they looked forward to the debut of their new product line"
+48725,introit,a composition of vocal music that is appropriate for opening church services
+48726,introitus,entrance or opening to a hollow organ or tube (especially the vaginal opening); "the introitus of the vagina"
+48727,introject,(psychoanalysis) parental figures (and their values) that you introjected as a child; the voice of conscience is usually a parent's voice internalized
+48728,introjection,(psychoanalysis) the internalization of the parent figures and their values; leads to the formation of the superego
+48729,introjection,(psychology) unconscious internalization of aspects of the world (especially aspects of persons) within the self in such a way that the internalized representation takes over the psychological functions of the external objects
+48730,intron noncoding_DNA,sequence of a eukaryotic gene's DNA that is not translated into a protein
+48731,introspection self-contemplation self-examination,the contemplation of your own thoughts and desires and conduct
+48732,introspectiveness,thoughtfulness about your own situation and feelings
+48733,introversion,(psychology) an introverted disposition; concern with one's own thoughts and feelings
+48734,introvert,(psychology) a person who tends to shrink from social contacts and to become preoccupied with their own thoughts
+48735,intruder interloper trespasser,someone who intrudes on the privacy or property of another without permission
+48736,intrusion,the forcing of molten rock into fissures or between strata of an earlier rock formation
+48737,intrusion,rock produced by an intrusive process
+48738,intrusion,entrance by force or without permission or welcome
+48739,intrusiveness meddlesomeness officiousness,aggressiveness as evidenced by intruding; by advancing yourself or your ideas without invitation
+48740,intuition,instinctive knowing (without the use of rational processes)
+48741,intuition hunch suspicion,an impression that something might be the case; "he had an intuition that something had gone wrong"
+48742,intuitionism,(philosophy) the doctrine that knowledge is acquired primarily by intuition
+48743,intumescence intumescency,swelling up with blood or other fluids (as with congestion)
+48744,intumescence intumescency swelling,the increase in volume of certain substances when they are heated (often accompanied by release of water)
+48745,intussusception,(biology) growth in the surface area of a cell by the deposit of new particles between existing particles in the cell wall
+48746,inula,any plant of the genus Inula
+48747,inulin,used to manufacture fructose and in assessing kidney function
+48748,inutility uselessness unusefulness,the quality of having no practical use
+48749,invader encroacher,someone who enters by force in order to conquer
+48750,invagination introversion,the condition of being folded inward or sheathed
+48751,invagination introversion intussusception infolding,the folding in of an outer layer so as to form a pocket in the surface; "the invagination of the blastula"
+48752,invalid shut-in,someone who is incapacitated by a chronic illness or injury
+48753,invalidator voider nullifier,an official who can invalidate or nullify; "my bank check was voided and I wanted to know who the invalidator was"
+48754,invalidism,chronic ill health
+48755,invalidity invalidness,illogicality as a consequence of having a conclusion that does not follow from the premisses
+48756,invaluableness preciousness pricelessness valuableness,the positive quality of being precious and beyond value
+48757,invariability invariableness invariance,the quality of being resistant to variation
+48758,invariance,the nature of a quantity or property or function that remains unchanged when a given transformation is applied to it; "the invariance of the configuration under translation"
+48759,invariant,a feature (quantity or property or function) that remains unchanged when a particular transformation is applied to it
+48760,invasion,(pathology) the spread of pathogenic microorganisms or malignant cells to new sites in the body; "the tumor's invasion of surrounding structures"
+48761,invasion,the act of invading; the act of an army that invades for conquest or plunder
+48762,invasion encroachment intrusion,any entry into an area not previously occupied; "an invasion of tourists"; "an invasion of locusts"
+48763,invasion_of_privacy,the wrongful intrusion by individuals or the government into private affairs with which the public has no concern
+48764,invention,the act of inventing
+48765,invention innovation,a creation (a new device or process) resulting from study and experimentation
+48766,invention innovation excogitation conception design,the creation of something in the mind
+48767,inventiveness ingeniousness ingenuity cleverness,the power of creative imagination
+48768,inventor discoverer artificer,someone who is the first to think of or make something
+48769,inventory,(accounting) the value of a firm's current assets including raw materials and work in progress and finished goods
+48770,inventory inventorying stocktaking stock-taking,making an itemized list of merchandise or supplies on hand; "an inventory may be necessary to see if anything is missing"; "they held an inventory every month"
+48771,inventory stock_list,a detailed list of all the items in stock
+48772,inventory_accounting,accounting that controls and evaluates inventory
+48773,inventory_control,supervision of the supply and storage and accessibility of items in order to insure an adequate supply without excessive oversupply
+48774,inventory_item,an item listed in an inventory
+48775,inverse opposite,something inverted in sequence or character or effect; "when the direct approach failed he tried the inverse"
+48776,inverse_function,a function obtained by expressing the dependent variable of one function as the independent variable of another; f and g are inverse functions if f(x)=y and g(y)=x
+48777,inversion,abnormal condition in which an organ is turned inward or inside out (as when the upper part of the uterus is pulled into the cervical canal after childbirth)
+48778,inversion,a chemical process in which the direction of optical rotation of a substance is reversed from dextrorotatory to levorotary or vice versa
+48779,inversion,the layer of air near the earth is cooler than an overlying layer
+48780,inversion,(genetics) a kind of mutation in which the order of the genes in a section of a chromosome is reversed
+48781,inversion,(counterpoint) a variation of a melody or part in which ascending intervals are replaced by descending intervals and vice versa
+48782,inversion eversion everting,the act of turning inside out
+48783,inversion sexual_inversion,a term formerly used to mean taking on the gender role of the opposite sex
+48784,inversion upending,turning upside down; setting on end
+48785,invert_sugar,a mixture of equal parts of glucose and fructose resulting from the hydrolysis of sucrose; found naturally in fruits; sweeter than glucose
+48786,invertase saccharase sucrase,an enzyme that catalyzes the hydrolysis of sucrose into glucose and fructose
+48787,invertebrate,any animal lacking a backbone or notochord; the term is not used as a scientific classification
+48788,inverted_hang,a hang performed on the rings with the body upside down
+48789,inverted_pleat,a box pleat reversed so that the fullness is turned inward
+48790,inverter,an electrical converter that converts direct current into alternating current
+48791,investigation investigating,the work of inquiring into something thoroughly and systematically
+48792,investigator,someone who investigates
+48793,investing investment,the act of investing; laying out money or capital in an enterprise with the expectation of profit
+48794,investment,the commitment of something other than money (time, energy, or effort) to a project with the expectation of some worthwhile result; "this job calls for the investment of some hard thinking"; "he made an emotional investment in the work"
+48795,investment,outer layer or covering of an organ or part or organism
+48796,investment,the act of putting on robes or vestments
+48797,investment investiture,the ceremonial act of clothing someone in the insignia of an office; the formal promotion of a person to an office or rank
+48798,investment investment_funds,money that is invested with an expectation of profit
+48799,investment_adviser investment_advisor,someone who advises others how to invest their money
+48800,investment_banker underwriter,a banker who deals chiefly in underwriting new securities
+48801,investment_company investment_trust investment_firm fund,a financial institution that sells shares to individuals and invests in securities issued by other companies
+48802,investment_letter,a letter of intent saying that a letter security is being bought for investment and not for resale; avoids need for SEC registration
+48803,investor,someone who commits capital in order to gain financial returns
+48804,investors_club,a club of small investors who buy and sell securities jointly
+48805,invigilation,keeping watch over examination candidates to prevent cheating
+48806,invigilator,someone who watches examination candidates to prevent cheating
+48807,invisibility invisibleness,the quality of not being perceivable by the eye
+48808,invisible_balance,the difference in value over a period of time of a country's imports and exports of services and payments of property incomes
+48809,invitation,a request (spoken or written) to participate or be present or take part in something; "an invitation to lunch"; "she threw the invitation away"
+48810,invitation,a tempting allurement; "she was an invitation to trouble"
+48811,invite,a colloquial expression for invitation; "he didn't get no invite to the party"
+48812,invocation,an incantation used in conjuring or summoning a devil
+48813,invocation,the act of appealing for help
+48814,invocation supplication,a prayer asking God's help as part of a religious service
+48815,involucre,a highly conspicuous bract or bract pair or ring of bracts at the base of an inflorescence
+48816,involution,reduction in size of an organ or part (as in the return of the uterus to normal size after childbirth)
+48817,involution,a long and intricate and complicated grammatical construction
+48818,involution enfolding,the action of enfolding something
+48819,involutional_depression,a major depressive episode associated with the climacteric
+48820,involvement,a connection of inclusion or containment; "he escaped involvement in the accident"; "there was additional involvement of the liver and spleen"
+48821,invulnerability,the property of being invulnerable; the property of being incapable of being hurt (physically or emotionally)
+48822,invulnerability impregnability,having the strength to withstand attack
+48823,inwardness,preoccupation especially with one's attitudes and ethical or ideological values; "the sensitiveness of James's characters, their seeming inwardness"; "inwardness is what an Englishman quite simply has, painlessly, as a birthright"
+48824,inwardness,the quality or state of being inward or internal; "the inwardness of the body's organs"
+48825,inwardness internality,preoccupation with what concerns human inner nature (especially ethical or ideological values); "Socrates' inwardness, integrity, and inquisitiveness"- H.R.Finch
+48826,io_moth Automeris_io,large yellow American moth having a large eyelike spot on each hind wing; the larvae have stinging spines
+48827,iodic_acid,a soluble crystalline acid; used as a reagent and disinfectant
+48828,iodide,a salt or ester of hydriodic acid
+48829,iodination,the substitution or addition of iodine atoms in organic compounds
+48830,iodine iodin I atomic_number_53,a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks)
+48831,iodine-125,light radioactive isotope of iodine with a half-life of 60 days; used as a tracer in thyroid studies and as a treatment for hyperthyroidism
+48832,iodine-131,heavy radioactive isotope of iodine with a half-life of 8 days; used in a sodium salt to diagnose thyroid disease and to treat goiter
+48833,iodoamino_acid,an amino acid with iodine added
+48834,iodochlorhydroxyquin Clioquinol,drug used to treat certain fungal infection (as athlete's foot)
+48835,iodocompound,a compound containing the covalent iodine radical
+48836,iodoform tri-iodomethane,sweet smelling yellow solid haloform CHI3
+48837,iodoform triiodomethane,a yellowish crystalline solid with a penetrating odor; sometimes used as an antiseptic dressing
+48838,iodoprotein iodinated_protein,a protein that contains iodine
+48839,iodopsin,a violet photopigment in the retinal cones of the eyes of most vertebrates; plays a role in daylight vision
+48840,iodothyronine,thyronine with iodine added
+48841,iodotyrosine,tyrosine with iodine added
+48842,ion,a particle that is electrically charged (positive or negative); an atom or molecule or group that has lost or gained one or more electrons
+48843,ion_beam ionic_beam,a beam of ions moving in the same direction at the same speed
+48844,ion_engine,a type of reaction-propulsion engine to propel rockets in space; a stream of positive ions is accelerated to a high velocity by an electric field
+48845,ion_exchange,a process in which ions are exchanged between a solution and an insoluble (usually resinous) solid; widely used in industrial processing
+48846,ion_pump,a vacuum pump that removes gas by ionizing the atoms or molecules and adsorbing them on a metal surface
+48847,ionic_bond electrovalent_bond electrostatic_bond,a chemical bond in which one atom loses an electron to form a positive ion and the other atom gains an electron to form a negative ion
+48848,ionic_charge,the charge on an ion is equal to a constant charge e multiplied by an integer from 1 to 15
+48849,ionization ionisation,the condition of being dissociated into ions (as by heat or radiation or chemical reaction or electrical discharge); "the ionization of a gas"
+48850,ionization ionisation,the process of ionizing; the formation of ions by separating atoms or molecules or radicals or by adding or subtracting electrons from atoms by strong electric fields in a gas
+48851,ionization_chamber ionization_tube,a measuring instrument that measures the amount of ionizing radiation
+48852,ionizing_radiation,high-energy radiation capable of producing ionization in substances through which it passes
+48853,ionosphere,the outer region of the Earth's atmosphere; contains a high concentration of free electrons
+48854,ionospheric_wave,a sky wave that is reflected by the ionosphere
+48855,iontophoresis ionic_medication iontotherapy electromotive_drug_administration EMDA,therapy that uses a local electric current to introduce the ions of a medicine into the tissues
+48856,iota,the 9th letter of the Greek alphabet
+48857,ipecac,a medicinal drug used to evoke vomiting (especially in cases of drug overdose or poisoning)
+48858,ipratropium_bromide Atrovent,an inhaled bronchodilator (trade name Atrovent)
+48859,iproclozide,an antidepressant drug that acts as a monoamine oxidase inhibitor
+48860,ipse_dixit ipsedixitism,an unsupported dogmatic assertion
+48861,irascibility short_temper spleen quick_temper,a feeling of resentful anger
+48862,iridaceous_plant,any bulbous plant of the family Iridaceae
+48863,iridectomy,an eye operation that treats closed-angle glaucoma by surgical removal of part of the iris of the eye
+48864,iridium Ir atomic_number_77,a heavy brittle metallic element of the platinum group; used in alloys; occurs in natural alloys with platinum or osmium
+48865,iridocyclitis,inflammation of the iris and ciliary body of the eye
+48866,iridokeratitis,inflammation of the iris and cornea of the eye
+48867,iridoncus,swelling of the iris of the eye
+48868,iridotomy,a surgical procedure that makes an incision in the iris of the eye in order to enlarge the pupil or to treat closed-angle glaucoma
+48869,iris,muscular diaphragm that controls the size of the pupil which in turn controls the amount of light that enters the eye; it forms the colored portion of the eye
+48870,iris flag fleur-de-lis sword_lily,plants with sword-shaped leaves and erect stalks bearing bright-colored flowers composed of three petals and three drooping sepals
+48871,iris iris_diaphragm,diaphragm consisting of thin overlapping plates that can be adjusted to change the diameter of a central opening
+48872,iris_scanning,biometric identification by scanning the iris of the eye; "the structure of the iris is very distinctive"
+48873,iritis,inflammation of the iris
+48874,iron,a golf club that has a relatively narrow metal head
+48875,iron Fe atomic_number_26,a heavy ductile magnetic metallic element; is silver-white in pure form but readily rusts; used in construction and tools and armament; plays a role in the transport of oxygen by the blood
+48876,iron branding_iron,implement used to brand live stock
+48877,iron smoothing_iron,home appliance consisting of a flat metal base that is heated and used to smooth cloth
+48878,iron-grey iron-gray,the color of freshly broken cast iron
+48879,iron_age,(classical mythology) the last and worst age of the world
+48880,iron_blue Prussian_blue,any of various blue pigments
+48881,iron_blue steel_grey steel_gray Davy's_grey Davy's_gray,slightly purplish or bluish dark grey
+48882,iron_cage,a cage from which there is no escape
+48883,iron_curtain,an impenetrable barrier to communication or information especially as imposed by rigid censorship and secrecy; used by Winston Churchill in 1946 to describe the demarcation between democratic and communist countries
+48884,iron_deficiency_anemia iron_deficiency_anaemia,a form of anemia due to lack of iron in the diet or to iron loss as a result of chronic bleeding
+48885,iron_disulfide,a compound containing two atoms of sulfur combined with iron
+48886,iron_filing,a fragment of iron rubbed off by the use of a file
+48887,iron_fist,rigorous or ruthless control; "she rules the office with an iron fist"; "it takes an iron fist to contain the dissenting factions"
+48888,iron_foundry,a foundry where cast iron is produced
+48889,iron_horse,(c. 1840) an early term for a locomotive
+48890,iron_lung,respirator that produces alternations in air pressure in a chamber surrounding a patient's chest to force air into and out of the lungs thus providing artificial respiration
+48891,iron_maiden,instrument of torture consisting of a hollow iron frame shaped like the human body and lined with spikes to impale the victim
+48892,iron_man ironman,a strong man of exceptional physical endurance
+48893,iron_mold iron_mould,a spot caused the staining with rust or ink
+48894,iron_ore,an ore from which iron can be extracted
+48895,iron_perchloride,a highly toxic chemical used to engrave metal plates and electronic circuits
+48896,iron_putty,a cement resembling putty; made by mixing ferric oxide and boiled linseed oil; is acid resistant
+48897,iron_trap,a trap from which there is no escape
+48898,iron_tree iron-tree ironwood ironwood_tree,a small slow-growing deciduous tree of northern Iran having a low domed shape
+48899,ironclad,a wooden warship of the 19th century that is plated with iron or steel armor
+48900,ironing,garments (clothes or linens) that are to be (or have been) ironed; "there was a basketful of ironing to do"
+48901,ironing,the work of using heat to smooth washed clothes in order to remove any wrinkles
+48902,ironing_board,narrow padded board on collapsible supports; used for ironing clothes
+48903,ironmonger hardwareman,someone who sells hardware; "in England they call a hardwareman an ironmonger"
+48904,ironmongery,the merchandise that is sold in an ironmonger's shop
+48905,irons chains,metal shackles; for hands or legs
+48906,ironside,a man of great strength or bravery
+48907,ironweed vernonia,any of various plants of the genus Vernonia of tropical and warm regions of especially North America that take their name from their loose heads of purple to rose flowers that quickly take on a rusty hue
+48908,ironwood,exceptionally tough or hard wood of any of a number of ironwood trees
+48909,ironwork,work made of iron (gratings or rails or railings etc); "the houses had much ornamental ironwork"
+48910,ironworker,a person who makes articles of iron
+48911,ironworks,the workplace where iron is smelted or where iron goods are made
+48912,irony,a trope that involves incongruity between what is expected and what occurs
+48913,irony,incongruity between what might be expected and what actually occurs; "the irony of Ireland's copying the nation she most hated"
+48914,irradiation,the condition of being exposed to radiation
+48915,irradiation,(physiology) the spread of sensory neural impulses in the cortex
+48916,irradiation,the apparent enlargement of a bright object when viewed against a dark background
+48917,irradiation,(Pavolvian conditioning) the elicitation of a conditioned response by stimulation similar but not identical to the original stimulus
+48918,irrational_hostility,extreme prejudice
+48919,irrational_impulse,a strong spontaneous and irrational motivation; "his first impulse was to denounce them"; "the urge to find out got him into trouble"
+48920,irrational_motive,a motivation that is inconsistent with reason or logic
+48921,irrational_number irrational,a real number that cannot be expressed as a rational number
+48922,irrationality unreason,the state of being irrational; lacking powers of understanding
+48923,irredenta irridenta,a region that is related ethnically or historically to one country but is controlled politically by another
+48924,irredentism irridentism,the doctrine that irredenta should be controlled by the country to which they are ethnically or historically related
+48925,irredentist irridentist,an advocate of irredentism
+48926,irregular second,merchandise that has imperfections; usually sold at a reduced price without the brand name
+48927,irregularity geometrical_irregularity,an irregular asymmetry in shape; an irregular spatial pattern
+48928,irregularity unregularity,not characterized by a fixed principle or rate; at irregular intervals
+48929,irrelevance irrelevancy,the lack of a relation of something to the matter at hand
+48930,irreligionist,someone who is indifferent or hostile to religion
+48931,irreligiousness irreligion,the quality of not being devout
+48932,irreplaceableness,the quality of being irreplaceable
+48933,irrepressibility buoyancy,irrepressible liveliness and good spirit; "I admired his buoyancy and persistent good humor"
+48934,irreproducibility,the quality of being unreproducible; "he could not explain the irreproducibility of the results of his experiment"
+48935,irresistibility irresistibleness,the quality of being overpowering and impossible to resist
+48936,irresoluteness irresolution,the trait of being irresolute; lacking firmness of purpose
+48937,irresponsibility irresponsibleness,a form of untrustworthiness; the trait of lacking a sense of responsibility and not feeling accountable for your actions
+48938,irreverence,an irreverent mental attitude
+48939,irreverence violation,a disrespectful act
+48940,irreversibility,the quality of being irreversible (once done it cannot be changed)
+48941,irreversible_process,any process that is not reversible
+48942,irrigation,supplying dry land with water by means of ditches etc
+48943,irrigation,(medicine) cleaning a wound or body organ by flushing or washing out with water or a medicated solution
+48944,irrigation_ditch,a ditch to supply dry land with water artificially
+48945,irritability crossness fretfulness fussiness peevishness petulance choler,an irritable petulant feeling
+48946,irritable_bowel_syndrome spastic_colon mucous_colitis,recurrent abdominal pain and diarrhea (often alternating with periods of constipation); often associated with emotional stress
+48947,irritant thorn,something that causes irritation and annoyance; "he's a thorn in my flesh"
+48948,irritation,(pathology) abnormal sensitivity to stimulation; "any food produced irritation of the stomach"
+48949,irritation annoyance vexation botheration,the psychological state of being irritated or annoyed
+48950,irruption,a sudden sharp increase in the relative numbers of a population
+48951,irruption,a sudden violent entrance; a bursting in; "the recent irruption of bad manners"
+48952,ischemia ischaemia,local anemia in a given body part sometimes resulting from vasoconstriction or thrombosis or embolism
+48953,ischemic_anoxia stagnant_anoxia,anoxia resulting from slow peripheral circulation (such as follows congestive cardiac failure)
+48954,ischemic_hypoxia stagnant_hypoxia,hypoxia resulting from slow peripheral circulation (such as follows congestive cardiac failure)
+48955,ischemic_stroke ischaemic_stroke,the most common kind of stroke; caused by an interruption in the flow of blood to the brain (as from a clot blocking a blood vessel)
+48956,ischium ischial_bone os_ischii,one of the three sections of the hipbone; situated below the ilium
+48957,island,a land mass (smaller than a continent) that is surrounded by water
+48958,island,a zone or area resembling an island
+48959,islander island-dweller,an inhabitant of an island
+48960,islands_of_Langerhans isles_of_Langerhans islets_of_Langerhans,cell clusters in the pancreas that form the endocrine part of that organ; secrete insulin and other hormones
+48961,isle islet,a small island
+48962,isoagglutination,agglutination of an agglutinogen of one individual by a serum from another individual of the same species
+48963,isoagglutinin,an antibody produced by one individual that causes agglutination of red blood cells in other individuals of the same species
+48964,isoagglutinogen,an antigen capable of causing the production of (or reacting with) an isoagglutinin
+48965,isoantibody alloantibody,an antibody that occurs naturally against foreign tissues from a person of the same species
+48966,isobar,(meteorology)an isogram connecting points having equal barometric pressure at a given time
+48967,isobutylene,used also in making gasoline components
+48968,isocarboxazid Marplan,a monoamine oxidase inhibitor (trade name Marplan) that is used to treat clinical depression
+48969,isochrone,an isogram connecting points at which something occurs or arrives at the same time
+48970,isoclinic_line isoclinal,an isogram connecting points of equal magnetic inclination
+48971,isocyanate,a salt or ester of isocyanic acid
+48972,isocyanic_acid,an acid known only in the form of its esters
+48973,isoflurane,a widely used inhalation anesthetic
+48974,isogamete,either of a pair of conjugating gametes of the same size and structure
+48975,isogamy,(biology) reproduction by the union or fusion of gametes of the same size and structure
+48976,isogon,an equiangular polygon
+48977,isogonic_line isogonal_line isogone,an imaginary line connecting points on the Earth's surface where the magnetic declination is the same
+48978,isogram isopleth isarithm,a line drawn on a map connecting points having the same numerical value of some variable
+48979,isohel,an isogram connecting points receiving equal amounts of sunshine
+48980,isolation,a state of separation between persons or groups
+48981,isolation,(psychiatry) a defense mechanism in which memory of an unacceptable act or impulse is separated from the emotion originally associated with it
+48982,isolation,a feeling of being disliked and alone
+48983,isolation,a country's withdrawal from international politics; "he opposed a policy of American isolation"
+48984,isolation closing_off,the act of isolating something; setting something apart from others
+48985,isolationism,a policy of nonparticipation in international economic and political relations
+48986,isolationist,an advocate of isolationism in international affairs
+48987,isoleucine,an essential amino acid found in proteins; isomeric with leucine
+48988,isomer,a compound that exists in forms having different arrangements of atoms but the same molecular weight
+48989,isomerase,an enzyme that catalyzes its substrate to an isomeric form
+48990,isomerism,the state of being an isomer; the complex of chemical and physical phenomena characteristic of isomers
+48991,isomerization isomerisation,the conversion of a compound into an isomer of itself
+48992,isometric_line isometric,a line connecting isometric points
+48993,isometrics isometric_exercise,muscle-building exercises (or a system of musclebuilding exercises) involving muscular contractions against resistance without movement (the muscles contracts but the length of the muscle does not change)
+48994,isometropia,equality of refractive power in the two eyes
+48995,isometry,the growth rates in different parts of a growing organism are the same
+48996,isometry,a one-to-one mapping of one metric space into another metric space that preserves the distances between each pair of points; "the isometries of the cube"
+48997,isometry,equality of elevation above sea level
+48998,isometry,equality of measure (e.g., equality of height above sea level or equality of loudness etc.)
+48999,isomorphism isomorphy,(biology) similarity or identity of form or shape or structure
+49000,isoniazid INH Nydrazid,antibacterial drug (trade name Nydrazid) used to treat tuberculosis
+49001,isopod,any of various small terrestrial or aquatic crustaceans with seven pairs of legs adapted for crawling
+49002,isopropyl_alcohol isopropanol,alcohol used as antifreeze or a solvent
+49003,isoproterenol Isuprel,drug (trade name Isuprel) used to treat bronchial asthma and to stimulate the heart
+49004,isosceles_triangle,a triangle with two equal sides
+49005,isosorbide Isordil,drug (trade name Isordil) used to treat angina pectoris and congestive heart failure
+49006,isostasy,(geology) a general equilibrium of the forces tending to elevate or depress the earth's crust
+49007,isotherm,(meteorology) an isogram connecting points having the same temperature at a given time
+49008,isothiocyanate,a family of compounds derived from horseradish and radishes and onions and mustards; source of the hotness of those plants and preparations
+49009,isotonic_exercise,exercise in which opposing muscles contract and there is controlled movement (tension is constant while the lengths of the muscles change); "the classic isotonic exercise is lifting free weights"
+49010,isotonic_solution isosmotic_solution,a solution having the same osmotic pressure as blood
+49011,isotope,one of two or more atoms with the same atomic number but with different numbers of neutrons
+49012,isotropy symmetry,(physics) the property of being isotropic; having the same value when measured in different directions
+49013,issue,an important question that is in dispute and must be settled; "the issue could be settled by requiring public education for everyone"; "politicians never discuss the real issues"
+49014,issue issuing issuance,the act of providing an item for general use or for official purposes (usually in quantity); "a new issue of stamps"; "the last issue of penicillin was over a month ago"
+49015,issue military_issue government_issue,supplies (as food or clothing or ammunition) issued by the government
+49016,issue number,one of a series published periodically; "she found an old issue of the magazine in her dentist's waiting room"
+49017,issue publication,the act of issuing printed materials
+49018,issuer,an institution that issues something (securities or publications or currency etc.)
+49019,isthmus,a relatively narrow strip of land (with water on both sides) connecting two larger land areas
+49020,isthmus band,a cord-like tissue connecting two larger parts of an anatomical structure
+49021,itaconic_acid,a crystalline carboxylic acid; occurs in some fermentations of sugars
+49022,italic,a typeface with letters slanting upward to the right
+49023,italic,a style of handwriting with the letters slanting to the right
+49024,itch itchiness itching,an irritating cutaneous sensation that produces a desire to scratch
+49025,itch_mite sarcoptid,whitish mites that attack the skin of humans and other animals; "itch mites cause scabies"
+49026,item,a whole individual unit; especially when included in a list or collection; "they reduced the price on many items"
+49027,item point,a distinct part that can be specified separately in a group of things that could be enumerated on a list; "he noticed an item in the New York Times"; "she had several items on her shopping list"; "the main point on the agenda was taken up first"
+49028,iteration,doing or saying again; a repeated performance
+49029,iteration loop,(computer science) a single execution of a set of instructions that are to be repeated; "the solution took hundreds of iterations"
+49030,iteration looping,(computer science) executing the same set of instructions a given number of times or until a specified result is obtained; "the solution is obtained by iteration"
+49031,iterative iterative_aspect,the aspect of the verb that expresses the repetition of an action
+49032,itinerant gypsy gipsy,a laborer who moves from place to place as demanded by employment; "itinerant traders"
+49033,itineration,journeying from place to place preaching or lecturing; a preaching tour or lecturing tour
+49034,itraconazole Sporanox,an oral antifungal drug (trade name Sporanox) taken for cases of fungal nail disease
+49035,ivory tusk,a hard smooth ivory colored dentine that makes up most of the tusks of elephants and walruses
+49036,ivory_black,a black pigment made from grinding burnt ivory in oil
+49037,ivory_gull Pagophila_eburnea,white Arctic gull; migrates as far south as England and New Brunswick
+49038,ivory_nut vegetable_ivory apple_nut,nutlike seed of a South American palm; the hard white shell takes a high polish and is used for e.g. buttons
+49039,ivory_palm ivory-nut_palm ivory_plant Phytelephas_macrocarpa,a stemless palm tree of Brazil and Peru bearing ivory nuts
+49040,ivory_tower,a state of mind that is discussed as if it were a place; "he lived in the ivory tower of speculation"; "they viewed universities as ivory towers"
+49041,ivory_tree conessi kurchi kurchee Holarrhena_pubescens Holarrhena_antidysenterica,tropical Asian tree with hard white wood and bark formerly used as a remedy for dysentery and diarrhea
+49042,ivorybill ivory-billed_woodpecker Campephilus_principalis,large black-and-white woodpecker of southern United States and Cuba having an ivory bill; nearly extinct
+49043,ivy common_ivy English_ivy Hedera_helix,Old World vine with lobed evergreen leaves and black berrylike fruits
+49044,ivy_geranium ivy-leaved_geranium hanging_geranium Pelargonium_peltatum,a commonly cultivated trailing South American plant with peltate leaves and rosy flowers
+49045,izar,a voluminous cotton outer garment (usually white) traditionally worn by Muslim women of northern Africa and the Middle East; covers the entire body
+49046,jab,a quick short straight punch
+49047,jab jabbing poke poking thrust thrusting,a sharp hand gesture (resembling a blow); "he warned me with a jab with his finger"; "he made a thrusting motion with his fist"
+49048,jabber jabbering gabble,rapid and indistinct speech
+49049,jabberwocky,nonsensical language (according to Lewis Carroll)
+49050,jabiru Jabiru_mycteria,large white stork of warm regions of the world especially America
+49051,jabot,a ruffle on the front of a woman's blouse or a man's shirt
+49052,jaboticaba,tough-skinned purple grapelike tropical fruit grown in Brazil
+49053,jaboticaba jaboticaba_tree Myrciaria_cauliflora,small evergreen tropical tree native to Brazil and West Indies but introduced into southern United States; grown in Brazil for its edible tough-skinned purple grapelike fruit that grows all along the branches
+49054,jacamar,tropical American insectivorous bird having a long sharp bill and iridescent green or bronze plumage
+49055,jack,a small ball at which players aim in lawn bowling
+49056,jack,an electrical device consisting of a connector socket designed for the insertion of a plug
+49057,jack,small flag indicating a ship's nationality
+49058,jack,tool for exerting pressure or lifting
+49059,jack,any of several fast-swimming predacious fishes of tropical to warm temperate seas
+49060,jack doodly-squat diddly-squat diddlysquat diddly-shit diddlyshit diddly diddley squat shit,a small worthless amount; "you don't know jack"
+49061,jack jackass,male donkey
+49062,jack jackstones,game equipment consisting of one of several small six-pointed metal pieces that are picked up while bouncing a ball in the game of jacks
+49063,jack knave,one of four face cards in a deck bearing a picture of a young prince
+49064,jack-in-the-box,plaything consisting of a toy clown that jumps out of a box when the lid is opened
+49065,jack-in-the-pulpit Indian_turnip wake-robin Arisaema_triphyllum Arisaema_atrorubens,common American spring-flowering woodland herb having sheathing leaves and an upright club-shaped spadix with overarching green and purple spathe producing scarlet berries
+49066,jack-o'-lantern,lantern carved from a pumpkin
+49067,jack-o-lantern_fungus jack-o-lantern jack-a-lantern Omphalotus_illudens,a large poisonous agaric with orange caps and narrow clustered stalks; the gills are luminescent
+49068,jack_bean wonder_bean giant_stock_bean Canavalia_ensiformis,annual semi-erect bushy plant of tropical South America bearing long pods with white seeds grown especially for forage
+49069,jack_oak northern_pin_oak Quercus_ellipsoidalis,small to medium deciduous oak of east central North America; leaves have sharply pointed lobes
+49070,jack_pine Pinus_banksiana,slender medium-sized two-needled pine of eastern North America; with yellow-green needles and scaly grey to red-brown fissured bark
+49071,jack_plane,a carpenter's plane for rough finishing
+49072,jackal Canis_aureus,Old World nocturnal canine mammal closely related to the dog; smaller than a wolf; sometimes hunts in a pack but usually singly or as a member of a pair
+49073,jackass_bat spotted_bat Euderma_maculata,a large bat of the southwestern United States having spots and enormous ears
+49074,jackass_penguin Spheniscus_demersus,small penguin of South America and southern Africa with a braying call
+49075,jackdaw daw Corvus_monedula,common black-and-grey Eurasian bird noted for thievery
+49076,jacket,the outer skin of a potato
+49077,jacket,the tough metal shell casing for certain kinds of ammunition
+49078,jacket,an outer wrapping or casing; "phonograph records were sold in cardboard jackets"
+49079,jacket,a short coat
+49080,jacket_potato,a baked potato served with the jacket on
+49081,jackfruit jackfruit_tree Artocarpus_heterophyllus,East Indian tree cultivated for its immense edible fruit and seeds
+49082,jackfruit jak jack,immense East Indian fruit resembling breadfruit; it contains an edible pulp and nutritious seeds that are commonly roasted
+49083,jacking_off jerking_off hand_job wank,slang for masturbation
+49084,jackknife,a dive in which the diver bends to touch the ankles before straightening out
+49085,jackknife-fish Equetus_lanceolatus,black-and-white drumfish with an erect elongated dorsal fin
+49086,jacklight,a light used as a lure in hunting or fishing at night
+49087,jackpot,any outstanding award
+49088,jackrabbit,large hare of western North America
+49089,jacks jackstones knucklebones,a game in which jackstones are thrown and picked up in various groups between bounces of a small rubber ball
+49090,jackscrew screw_jack,screw-operated jack
+49091,jacksmelt Atherinopsis_californiensis,a relatively large silversides of the Pacific coast of North America (known to reach 18 inches in length)
+49092,jacksnipe half_snipe Limnocryptes_minima,a small short-billed Old World snipe
+49093,jackstraw spillikin,a thin strip of wood used in playing the game of jackstraws
+49094,jackstraws spillikins,a game in which players try to pick each jackstraw (or spillikin) off of a pile without moving any of the others
+49095,jaconet,a lightweight cotton cloth with a smooth and slightly stiff finish; used for clothing and bandages
+49096,jacquard,a highly figured fabric woven on a Jacquard loom
+49097,jactitation,(law) a false boast that can harm others; especially a false claim to be married to someone (formerly actionable at law)
+49098,jactitation jactation,(pathology) extremely restless tossing and twitching usually by a person with a severe illness
+49099,jade jadestone,a semiprecious gemstone that takes a high polish; is usually green but sometimes whitish; consists of jadeite or nephrite
+49100,jade_green jade,a light green color varying from bluish green to yellowish green
+49101,jade_vine emerald_creeper Strongylodon_macrobotrys,vigorous Philippine evergreen twining liana; grown for spectacular festoons of green flowers that resemble lobster claws
+49102,jadeite,a hard green mineral consisting of sodium aluminum silicate in monoclinic crystalline form; a source of jade; found principally in Burma
+49103,jaeger,rapacious seabird that pursues weaker birds to make them drop their prey
+49104,jag,a sharp projection on an edge or surface; "he clutched a jag of the rock"
+49105,jag,a slit in a garment that exposes material of a different color underneath; used in Renaissance clothing
+49106,jag,a bout of drinking or drug taking
+49107,jag dag,a flap along the edge of a garment; used in medieval clothing
+49108,jaggedness,something irregular like a bump or crack in a smooth surface
+49109,jaggery jagghery jaggary,unrefined brown sugar made from palm sap
+49110,jaguar panther Panthera_onca Felis_onca,a large spotted feline of tropical America similar to the leopard; in some classifications considered a member of the genus Felis
+49111,jaguarundi jaguarundi_cat jaguarondi eyra Felis_yagouaroundi,long-bodied long-tailed tropical American wildcat
+49112,jai_alai pelota,a Basque or Spanish game played in a court with a ball and a wickerwork racket
+49113,jail jailhouse gaol clink slammer poky pokey,a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)
+49114,jail_bird jailbird gaolbird,a criminal who has been jailed repeatedly
+49115,jail_delivery,the use of force to liberate prisoners
+49116,jalapeno jalapeno_pepper,hot green or red pepper of southwestern United States and Mexico
+49117,jalousie,a shutter made of angled slats
+49118,jam,preserve of crushed fruit
+49119,jam_session,an impromptu jazz concert
+49120,jamais_vu,the experience of being unfamiliar with a person or situation that is actually very familiar; associated with certain types of epilepsy
+49121,jamb,upright consisting of a vertical side member of a door or window frame
+49122,jambalaya,spicy Creole dish of rice and ham, sausage, chicken, or shellfish with tomatoes, peppers, onions, and celery
+49123,jammer,a transmitter used to broadcast electronic jamming
+49124,jamming electronic_jamming jam,deliberate radiation or reflection of electromagnetic energy for the purpose of disrupting enemy use of electronic devices or systems
+49125,jampan,a kind of sedan chair used in India
+49126,jampot jamjar,a jar for holding jellies or preserves
+49127,janissary,a loyal supporter; "every politician has a following of janissaries"
+49128,janitor,someone employed to clean and maintain a building
+49129,japan,lacquerware decorated and varnished in the Japanese manner with a glossy durable black lacquer
+49130,japan,lacquer with a durable glossy black finish, originally from the orient
+49131,japanese_clover japan_clover jap_clover Lespedeza_striata,an annual of tropical Asia naturalized in United States
+49132,japonica Camellia_japonica,greenhouse shrub with glossy green leaves and showy fragrant rose-like flowers; cultivated in many varieties
+49133,japonica maule's_quince Chaenomeles_japonica,deciduous thorny shrub native to Japan having red blossoms
+49134,jar,a vessel (usually cylindrical) with a wide mouth and without handles
+49135,jar jarful,the quantity contained in a jar; "he drank a jar of beer"
+49136,jargon,specialized technical terminology characteristic of a particular subject
+49137,jargoon jargon,a colorless (or pale yellow or smoky) variety of zircon
+49138,jasmine,any of several shrubs and vines of the genus Jasminum chiefly native to Asia
+49139,jasper,an opaque form of quartz; red or yellow or brown or dark green in color; used for ornamentation or as a gemstone
+49140,jassid,a variety of leafhopper
+49141,jati,(Hinduism) a Hindu caste or distinctive social group of which there are thousands throughout India; a special characteristic is often the exclusive occupation of its male members (such as barber or potter)
+49142,jaundice icterus,yellowing of the skin and the whites of the eyes caused by an accumulation of bile pigment (bilirubin) in the blood; can be a symptom of gallstones or liver infection or anemia
+49143,jaundice_of_the_newborn physiological_jaundice_of_the_newborn icterus_neonatorum,yellowish appearance in newborn infants; usually subsides spontaneously
+49144,jauntiness nattiness dapperness rakishness,stylishness as evidenced by a smart appearance
+49145,jaunting_car jaunty_car,an open two-wheeled one-horse cart formerly widely used in Ireland
+49146,javelin,an athletic competition in which a javelin is thrown as far as possible
+49147,javelin,a spear thrown as a weapon or in competitive field events
+49148,jaw,the bones of the skull that frame the mouth and serve to open it; the bones that hold the teeth
+49149,jaw,the part of the skull of a vertebrate that frames the mouth and holds the teeth
+49150,jaw,holding device consisting of one or both of the opposing parts of a tool that close to hold an object
+49151,jawan,(India) a private soldier or male constable
+49152,jawbreaker,a large round hard candy
+49153,jawbreaker,a word that is hard to pronounce
+49154,jawfish,small large-mouthed tropical marine fishes common along sandy bottoms; males brood egg balls in their mouths; popular aquarium fishes
+49155,jawless_vertebrate jawless_fish agnathan,eel-shaped vertebrate without jaws or paired appendages including the cyclostomes and some extinct forms
+49156,jay,crested largely blue bird
+49157,jaywalker,a reckless pedestrian who crosses a street illegally
+49158,jazz,a genre of popular music that originated in New Orleans around 1900 and developed through increasingly complex styles
+49159,jazz,a style of dance music popular in the 1920s; similar to New Orleans jazz but played by large bands
+49160,jazz_band jazz_group combo,a small band of jazz musicians
+49161,jazz_festival,a festival that features performances by jazz artists
+49162,jazz_musician jazzman,a musician who plays or composes jazz music
+49163,je_ne_sais_quoi,something indescribable
+49164,jealousy,zealous vigilance; "cherish their official political freedom with fierce jealousy"-Paul Blanshard
+49165,jealousy green-eyed_monster,a feeling of jealous envy (especially of a rival)
+49166,jeans blue_jeans denim,(used in the plural) close-fitting trousers of heavy denim for manual work or casual wear
+49167,jeep landrover,a car suitable for traveling over rough terrain
+49168,jeer jeering mockery scoff scoffing,showing your contempt by derision
+49169,jejunal_artery intestinal_artery,an artery that is a branch of the superior mesenteric artery that supplies the jejunum
+49170,jejunitis,inflammation of the jejunum of the small intestine
+49171,jejunity jejuneness,quality of inadequate nutritive value
+49172,jejunity jejuneness tameness vapidity vapidness,the quality of being vapid and unsophisticated
+49173,jejunoileitis,inflammation of the jejunum and the ileum of the small intestine
+49174,jejunostomy,surgical creation of an opening between the jejunum and the anterior abdominal wall; will allow artificial feeding
+49175,jejunum,the part of the small intestine between the duodenum and the ileum
+49176,jellaba,a loose cloak with a hood; worn in the Middle East and northern Africa
+49177,jello Jell-O,fruit-flavored dessert (trade mark Jell-O) made from a commercially prepared gelatin powder
+49178,jelly,any substance having the consistency of jelly or gelatin
+49179,jelly,a preserve made of the jelled juice of fruit
+49180,jelly_bean jelly_egg,sugar-glazed jellied candy
+49181,jelly_fungus,any fungus of the order Tremellales or Auriculariales whose fruiting body is jellylike in consistency when fresh
+49182,jellyfish,any of numerous usually marine and free-swimming coelenterates that constitute the sexually reproductive forms of hydrozoans and scyphozoans
+49183,jellyroll Swiss_roll,thin sheet of sponge cake spread with jelly and then rolled up to make a cylindrical cake
+49184,jennet jenny jenny_ass,female donkey
+49185,jerboa,mouselike jumping rodent
+49186,jerboa_kangaroo kangaroo_jerboa,brush-tailed rat kangaroo
+49187,jerboa_rat,large Australian rat with hind legs adapted for leaping
+49188,jeremiad,a long and mournful complaint; "a jeremiad against any form of government"
+49189,jerk,(mechanics) the rate of change of acceleration
+49190,jerk,raising a weight from shoulder height to above the head by straightening the arms
+49191,jerk dork,a dull stupid fatuous person
+49192,jerk jerking jolt saccade,an abrupt spasmodic movement
+49193,jerkin,a tight sleeveless and collarless jacket (often made of leather) worn by men in former times
+49194,jerky jerked_meat jerk,meat (especially beef) cut in strips and dried in the sun
+49195,jeroboam double-magnum,a large wine bottle (holds 4/5 of a gallon)
+49196,jerry-builder,someone who builds cheap buildings out of poor materials on speculation for a quick profit
+49197,jerry-building,construction of inferior buildings for a quick profit
+49198,jersey,a slightly elastic machine-knit fabric
+49199,jersey T-shirt tee_shirt,a close-fitting pullover shirt
+49200,jest joke jocularity,activity characterized by good humor
+49201,jester fool motley_fool,a professional clown employed to entertain a king or nobleman in the Middle Ages
+49202,jet,a hard black form of lignite that takes a brilliant polish and is used in jewelry or ornamentation
+49203,jet blue_jet reverse_lightning,atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward
+49204,jet jet_plane jet-propelled_plane,an airplane powered by one or more jet engines
+49205,jet squirt spurt spirt,the occurrence of a sudden discharge (as of liquid)
+49206,jet_bridge,an extendible bridge for loading passengers onto large commercial airplanes; provides protected access to the plane from the gate
+49207,jet_engine,a gas turbine produces a stream of hot gas that propels a jet plane by reaction propulsion
+49208,jet_lag,fatigue and sleep disturbance resulting from disruption of the body's normal circadian rhythm as a result of jet travel
+49209,jet_propulsion,propulsion by means of the discharge of a jet of fluid toward the rear
+49210,jet_set,a set of rich and fashionable people who travel widely for pleasure
+49211,jet_stream,a high-speed high-altitude airstream blowing from west to east near the top of the troposphere; has important effects of the formation of weather fronts
+49212,jetliner,a large jet plane that carries passengers
+49213,jetsam,the part of a ship's equipment or cargo that is thrown overboard to lighten the load in a storm
+49214,jeu_d'esprit,a witty comment or writing
+49215,jew's_harp jews'_harp mouth_bow,a small lyre-shaped musical instrument that is placed between the teeth and played by twanging a wire tongue while changing the shape of the mouth cavity
+49216,jewel gem,a person who is as brilliant and precious as a piece of jewelry
+49217,jewel gem precious_stone,a precious or semiprecious stone incorporated into a piece of jewelry
+49218,jewel_orchid,any of several delicate Asiatic orchids grown especially for their velvety leaves with metallic white or gold veining
+49219,jeweler jeweller,someone in the business of selling jewelry
+49220,jeweler's_glass,an optical instrument used by jewelers; has one or more lenses and is used to view features not readily seen
+49221,jewelled_headdress jeweled_headdress,a headdress adorned with jewels
+49222,jewelry jewellery,an adornment (as a bracelet or ring or necklace) made of precious metals and set with gems (or imitation gems)
+49223,jewelry_dealer jewelry_store,a firm that sells and buys jewelry
+49224,jewelry_maker jeweler jeweller,someone who makes jewelry
+49225,jewels-of-opar Talinum_paniculatum,erect plant with tuberous roots and terminal panicles of red to yellow flowers; southwestern North America to Central America; widely introduced elsewhere
+49226,jewelweed lady's_earrings orange_balsam celandine touch-me-not Impatiens_capensis,North American annual plant with usually yellow or orange flowers; grows chiefly on wet rather acid soil
+49227,jewfish Mycteroperca_bonaci,large dark grouper with a thick head and rough scales
+49228,jezebel,a shameless impudent scheming woman
+49229,jiao,10 jiao equal 1 yuan in China
+49230,jib,any triangular fore-and-aft sail (set forward of the foremast)
+49231,jibboom,a spar that extends the bowsprit
+49232,jig,a fisherman's lure with one or more hooks that is jerked up and down in the water
+49233,jig,a device that holds a piece of machine work and guides the tools operating on it
+49234,jig,any of various old rustic dances involving kicking and leaping
+49235,jig gigue,music in three-four time for dancing a jig
+49236,jiggermast jigger,any small mast on a sailing vessel; especially the mizzenmast of a yawl
+49237,jigsaw scroll_saw fretsaw,fine-toothed power saw with a narrow blade; used to cut curved outlines
+49238,jigsaw_puzzle,a puzzle that requires you to reassemble a picture that has been mounted on a stiff base and cut into interlocking pieces
+49239,jihad jehad,a holy struggle or striving by a Muslim for a moral or spiritual or political goal
+49240,jilt,a woman who jilts a lover
+49241,jim_crow,a crowbar fitted with a claw for pulling nails
+49242,jimdandy jimhickey crackerjack,someone excellent of their kind; "he's a jimdandy of a soldier"
+49243,jimdandy jimhickey crackerjack,something excellent of its kind; "the bike was a jimdandy"
+49244,jimmies sprinkles,bits of sweet chocolate used as a topping on e.g. ice cream
+49245,jimmy jemmy,a short crowbar; "in Britain they call a jimmy and jemmy"
+49246,jimsonweed jimson_weed Jamestown_weed common_thorn_apple apple_of_Peru Datura_stramonium,intensely poisonous tall coarse annual tropical weed having rank-smelling foliage, large white or violet trumpet-shaped flowers and prickly fruits
+49247,jingle jangle,a metallic sound; "the jingle of coins"; "the jangle of spurs"
+49248,jinks high_jinks hijinks high_jinx,noisy and mischievous merrymaking
+49249,jinrikisha ricksha rickshaw,a small two-wheeled cart for one passenger; pulled by one person
+49250,jiqui Malpighia_obovata,Cuban timber tree with hard wood very resistant to moisture
+49251,jird,gerbil of northern Africa
+49252,jitter,small rapid variations in a waveform resulting from fluctuations in the voltage supply or mechanical vibrations or other sources
+49253,jitter,a small irregular movement
+49254,jitterbug,a jerky American dance that was popular in the 1940s
+49255,jitteriness jumpiness nervousness restiveness,the anxious feeling you have when you have the jitters
+49256,jitters heebie-jeebies screaming_meemies,extreme nervousness
+49257,job,(computer science) a program application that may consist of several steps but is a single logical unit
+49258,job,an object worked on; a result produced by working; "he held the job in his left hand and worked on it with his right"
+49259,job,a workplace; as in the expression `on the job'
+49260,job,the responsibility to do something; "it is their job to print the truth"
+49261,job,the performance of a piece of work; "she did an outstanding job as Ophelia"; "he gave it up as a bad job"
+49262,job,a damaging piece of work; "dry rot did the job of destroying the barn"; "the barber did a real job on my hair"
+49263,job task chore,a specific piece of work required to be done as a duty or for a specific fee; "estimates of the city's loss on that job ranged as high as a million dollars"; "the job of repairing the engine took several hours"; "the endless task of classifying the samples"; "the farmer's morning chores"
+49264,job-control_language,a problem-oriented language used to describe job requirements to an operating system
+49265,job-oriented_terminal,a terminal designed for a particular application
+49266,job_action,a temporary action by workers to protest management decision or to make demands
+49267,job_application,an application for a job
+49268,job_candidate,an applicant who is being considered for a job
+49269,job_control,a program that is called to prepare each job to be run
+49270,job_description,description of the responsibilities associated with a given job
+49271,job_interview employment_interview,an interview to determine whether an applicant is suitable for a position of employment
+49272,job_lot,a miscellaneous collection of things sold together
+49273,jobber middleman wholesaler,someone who buys large quantities of goods and resells to merchants rather than to the ultimate customers
+49274,jobbery,corruptness among public officials
+49275,jobcentre,a government office in a town where information about available jobs is displayed and where unemployment benefits are administered
+49276,jobholder,an employee who holds a regular job
+49277,jockey,an operator of some vehicle or machine or apparatus; "he's a truck jockey"; "a computer jockey"; "a disc jockey"
+49278,jockey,someone employed to ride horses in horse races
+49279,jockey_club,a club to promote and regulate horse racing
+49280,jocoseness jocosity merriness humorousness,the trait of merry joking
+49281,jocosity jocularity,fun characterized by humor
+49282,jocundity jocularity,a feeling facetious merriment
+49283,jodhpur jodhpur_boot jodhpur_shoe,a short riding boot that fastens with a buckle at the side
+49284,jodhpurs jodhpur_breeches riding_breeches,(used in the plural) flared trousers ending at the calves; worn with riding boots
+49285,jog,a sharp change in direction; "there was a jog in the road"
+49286,jog trot lope,a slow pace of running
+49287,jog_trot,an easy gait of a horse; midway between a walk and a trot
+49288,jogger,someone who runs a steady slow pace (usually for exercise)
+49289,jogging,running at a jog trot as a form of cardiopulmonary exercise
+49290,joggle jiggle,a slight irregular shaking motion
+49291,johnnycake johnny_cake journey_cake,cornbread usually cooked pancake-style on a griddle (chiefly New England)
+49292,joie_de_vivre,a keen enjoyment of living
+49293,joiner,a person who likes to join groups
+49294,joiner,a woodworker whose work involves making things by joining pieces of wood
+49295,joinery,fine woodwork done by a joiner
+49296,joining connection connexion,the act of bringing two things into contact (especially for communication); "the joining of hands around the table"; "there was a connection via the internet"
+49297,joint,a disreputable place of entertainment
+49298,joint,junction by which parts or objects are joined together
+49299,joint articulation articulatio,(anatomy) the point of connection between two bones or elements of a skeleton (especially if it allows motion)
+49300,joint marijuana_cigarette reefer stick spliff,marijuana leaves rolled into a cigarette for smoking
+49301,joint-stock_company,a company (usually unincorporated) which has the capital of its members pooled in a common fund; transferable shares represent ownership interest; shareholders are legally liable for all debts of the company
+49302,joint_probability,the probability of two events occurring together
+49303,joint_resolution,a resolution passed by both houses of Congress which becomes legally binding when signed by the Chief Executive (or passed over the Chief Executive's veto)
+49304,joint_return,a return filed by a husband and wife
+49305,joint_venture,a venture by a partnership or conglomerate designed to share risk or expertise; "a joint venture between the film companies to produce TV shows"
+49306,jointed_charlock wild_radish wild_rape runch Raphanus_raphanistrum,Eurasian weed having yellow or mauve or white flowers and podlike fruits
+49307,jointed_rush Juncus_articulatus,rush of Australia
+49308,jointer jointer_plane jointing_plane long_plane,a long carpenter's plane used to shape the edges of boards so they will fit together
+49309,jointure legal_jointure,(law) an estate secured to a prospective wife as a marriage settlement in lieu of a dower
+49310,joist,beam used to support floors or roofs
+49311,joke,a triviality not to be taken seriously; "I regarded his campaign for mayor as a joke"
+49312,joke gag laugh jest jape,a humorous anecdote or remark intended to provoke laughter; "he told a very funny joke"; "he knows a million gags"; "thanks for the laugh"; "he laughed unpleasantly at his own jest"; "even a schoolboy's jape is supposed to have some ascertainable point"
+49313,joker,an inconspicuous clause in a document or bill that affects its meaning in a way that is not immediately apparent; "when I demanded my money he showed me the joker in the contract"
+49314,joker,a playing card that is usually printed with a picture of a jester
+49315,joker jokester,a person who enjoys telling or playing jokes
+49316,joker turkey,a person who does something thoughtless or annoying; "some joker is blocking the driveway"
+49317,jollity jolliness joviality,feeling jolly and jovial and full of good humor
+49318,jolly,a happy party
+49319,jolly_boat jolly,a yawl used by a ship's sailors for general work
+49320,jolt jar jounce shock,a sudden jarring impact; "the door closed with a jolt"; "all the jars and jolts were smoothed out by the shock absorbers"
+49321,jonah jinx,a person believed to bring bad luck to those around him
+49322,jonquil,often used colloquially for any yellow daffodil
+49323,jonquil Narcissus_jonquilla,widely cultivated ornamental plant native to southern Europe but naturalized elsewhere having fragrant yellow or white clustered flowers
+49324,jordan_almond,variety of large almond from Malaga, Spain; used in confectionery
+49325,jorum,a large drinking bowl
+49326,joss,a Chinese god worshipped in the form of an idol
+49327,joss_house,a Chinese temple or shrine for idol worship
+49328,joss_stick,a slender stick of incense burned before a joss by the Chinese
+49329,jostle jostling,the act of jostling (forcing your way by pushing)
+49330,jotter,a small notebook for rough notes
+49331,jotting jot,a brief (and hurriedly handwritten) note
+49332,joule J watt_second,a unit of electrical energy equal to the work done when a current of one ampere passes through a resistance of one ohm for one second
+49333,journal,a periodical dedicated to a particular subject; "he reads the medical journals"
+49334,journal,a record book as a physical object
+49335,journal,the part of the axle contained by a bearing
+49336,journal_bearing,the bearing of a journal
+49337,journal_box,metal housing for a journal bearing
+49338,journalese,the style in which newspapers are written
+49339,journalism,the profession of reporting or photographing or editing news stories for one of the media
+49340,journalism news_media,newspapers and magazines collectively
+49341,journalist,a writer for newspapers and magazines
+49342,journalist's_privilege,the right of a journalist to refuse to divulge sources of confidential information
+49343,journey journeying,the act of traveling from one place to another
+49344,joust tilt,a combat between two mounted knights tilting against each other with blunted lances
+49345,jowl,a fullness and looseness of the flesh of the lower cheek and jaw (characteristic of aging)
+49346,joy delight pleasure,something or someone that provides a source of happiness; "a joy to behold"; "the pleasure of his company"; "the new car is a delight"
+49347,joy joyousness joyfulness,the emotion of great happiness
+49348,joylessness,a feeling of dismal cheerlessness
+49349,joyride,a ride in a car taken solely for pleasure; "they took their girlfriends for joyrides in stolen cars"
+49350,joystick,a manual control consisting of a vertical handle that can move freely in two directions; used as an input device to computers or to devices controlled by computers
+49351,jubilee,a special anniversary (or the celebration of it)
+49352,judas,a one-way peephole in a door
+49353,judge justice jurist,a public official authorized to decide questions brought before a court of justice
+49354,judge_advocate,an officer assigned to the judge advocate general
+49355,judge_advocate,a staff officer serving as legal adviser to a military commander
+49356,judge_advocate_general,the senior legal advisor to a branch of the military
+49357,judgeship judicature,the position of judge
+49358,judgment judgement assessment,the act of judging or assessing a person or situation or event; "they criticized my judgment of the contestants"
+49359,judgment judgement judging,the cognitive process of reaching a decision or drawing conclusions
+49360,judgment judgement judicial_decision,(law) the determination by a court of competent jurisdiction on matters submitted to it
+49361,judgment judgement mind,an opinion formed by judging something; "he was reluctant to make his judgment known"; "she changed her mind"
+49362,judgment judgement sound_judgment sound_judgement perspicacity,the capacity to assess situations or circumstances shrewdly and to draw sound conclusions
+49363,judgment_in_personam judgement_in_personam personal_judgment personal_judgement,a judgment rendered against an individual (or corporation) for the payment of money damages
+49364,judgment_in_rem judgement_in_rem,a judgment pronounced on the status of some particular subject or property or thing (as opposed to one pronounced on persons)
+49365,judgment_lien,lien on a debtor's property that is granted to a creditor by court judgment; lien may be enforced by having the sheriff seize the property and hold a sheriff's sale
+49366,judgment_of_dismissal judgement_of_dismissal dismissal,a judgment disposing of the matter without a trial
+49367,judgment_on_the_merits judgement_on_the_merits,judgment rendered through analysis and adjudication of the factual issues presented
+49368,judicial_branch,the branch of the United States government responsible for the administration of justice
+49369,judicial_review,review by a court of law of actions of a government official or entity or of some other legally appointed person or body or the review by an appellate court of the decision of a trial court
+49370,judicial_torture,torture that is sanctioned by the state and executed by duly accredited officials; "the English renounced judicial torture in 1640"
+49371,judiciary bench,persons who administer justice
+49372,judiciary judicature judicatory judicial_system,the system of law courts that administer justice and constitute the judicial branch of government
+49373,judiciousness,good judgment
+49374,judiciousness sagacity sagaciousness,the trait of forming opinions by distinguishing and evaluating
+49375,judo,a sport adapted from jujitsu (using principles of not resisting) and similar to wrestling; developed in Japan
+49376,jug,a large bottle with a narrow mouth
+49377,jug jugful,the quantity contained in a jug
+49378,jug_band,a musical group that uses jugs and washboards and kazoos and other improvised instruments
+49379,jug_wine,inexpensive wine sold in large bottles or jugs
+49380,jugale jugal_point,the craniometric point at the union of the frontal and temporal processes of the zygomatic bone
+49381,juggernaut steamroller,a massive inexorable force that seems to crush everything in its way
+49382,juggle juggling,the act of rearranging things to give a misleading impression
+49383,juggle juggling,throwing and catching several objects simultaneously
+49384,juggler,a performer who juggles objects and performs tricks of manual dexterity
+49385,jugglery,artful trickery designed to achieve an end; "the senator's tax program was mere jugglery"
+49386,jugglery,the performance of a juggler
+49387,jugular,a vital part that is vulnerable to attack; "he always goes for the jugular"
+49388,jugular_vein vena_jugularis jugular,veins in the neck that return blood from the head
+49389,juice,energetic vitality; "her creative juices were flowing"
+49390,juice,electric current; "when the wiring was finished they turned on the juice"
+49391,juice,the liquid part that can be extracted from plant or animal tissue by squeezing or cooking
+49392,juice succus,any of several liquids of the body; "digestive juices"
+49393,juju,the power associated with a juju
+49394,juju voodoo hoodoo fetish fetich,a charm superstitiously believed to embody magical powers
+49395,jujube,chewy fruit-flavored jellied candy (sometimes medicated to soothe a sore throat)
+49396,jujube Chinese_date Chinese_jujube,dark red plumlike fruit of Old World buckthorn trees
+49397,jujube jujube_bush Christ's-thorn Jerusalem_thorn Ziziphus_jujuba,spiny tree having dark red edible fruits
+49398,jujutsu jujitsu jiujitsu,a method of self-defense without weapons that was developed in China and Japan; holds and blows are supplemented by clever use of the attacker's own weight and strength
+49399,juke fake,(football) a deceptive move made by a football player
+49400,juke jook juke_joint jook_joint juke_house jook_house,a small roadside establishment in the southeastern United States where you can eat and drink and dance to music provided by a jukebox
+49401,jukebox nickelodeon,a cabinet containing an automatic record player; records are played by inserting a coin
+49402,julep mint_julep,bourbon and sugar and mint over crushed ice
+49403,julienne,a clear soup garnished with julienne vegetables
+49404,julienne julienne_vegetable,a vegetable cut into thin strips (usually used as a garnish)
+49405,jumble jumbal,small flat ring-shaped cake or cookie
+49406,jumbojet jumbo_jet,a very large jet plane
+49407,jumby_bead jumbie_bead Ormosia_coarctata,West Indian tree similar to Ormosia monosperma but larger and having smaller leaflets and smaller seeds
+49408,jump,(film) an abrupt transition from one scene to another
+49409,jump jumping,the act of jumping; propelling yourself off the ground; "he advanced in a series of jumps"; "the jumping was unexpected"
+49410,jump leap,a sudden and decisive increase; "a jump in attendance"
+49411,jump parachuting,descent with a parachute; "he had done a lot of parachuting in the army"
+49412,jump_ball,(basketball) the way play begins or resumes when possession is disputed; an official tosses the ball up between two players who jump in an effort to tap it to a teammate
+49413,jump_cut,an immediate transition from one scene to another
+49414,jump_rope,a child's game or a cardiopulmonary exercise in which the player jumps over a swinging rope
+49415,jump_rope skip_rope skipping_rope,a length of rope (usually with handles on each end) that is swung around while someone jumps over it
+49416,jump_seat,a folding seat in an automobile
+49417,jump_suit,one-piece uniform worn by parachutists
+49418,jump_suit jumpsuit,one-piece garment fashioned after a parachutist's uniform
+49419,jumper,a person who jumps; "as the jumper neared the ground he lost control"; "the jumper's parachute opened"
+49420,jumper,an athlete who competes at jumping; "he is one hell of a jumper"
+49421,jumper,a coverall worn by children
+49422,jumper,a small connector used to make temporary electrical connections
+49423,jumper,a loose jacket or blouse worn by workmen
+49424,jumper jump_shot,(basketball) a player releases the basketball at the high point of a jump
+49425,jumper pinafore pinny,a sleeveless dress resembling an apron; worn over other clothing
+49426,jumper_cable jumper_lead lead booster_cable,a jumper that consists of a short piece of wire; "it was a tangle of jumper cables and clip leads"
+49427,jumping,the act of participating in an athletic competition in which you must jump
+49428,jumping-off_place point_of_departure,a place from which an enterprise or expedition is launched; "one day when I was at a suitable jumping-off place I decided to see if I could find him"; "my point of departure was San Francisco"
+49429,jumping_bean jumping_seed Mexican_jumping_bean,seed of Mexican shrubs of the genus Sebastiana containing the larva of a moth whose movements cause the bean to jerk or tumble
+49430,jumping_bristletail machilid,wingless insect living in dark moist places as under dead tree trunks; they make erratic leaps when disturbed
+49431,jumping_jack,plaything consisting of a toy figure with movable joints that can be made to dance by pulling strings
+49432,jumping_mouse,any of several primitive mouselike rodents with long hind legs and no cheek pouches; of woodlands of Eurasia and North America
+49433,jumping_orchid Catasetum_macrocarpum,orchid having both male and female flowers in the same raceme; when a sensitive projection at the base of the column of the male flower is touched the pollen is suddenly ejected
+49434,jumping_plant_louse psylla psyllid,small active cicada-like insect with hind legs adapted for leaping; feeds on plant juices
+49435,jumping_up_and_down,jumping in one spot (as in excitement); "the wailing and jumping up and down exhausted him"
+49436,jumpstart jump-start,starting an automobile engine that has a weak battery by means of jumper cables to another car; "my battery was dead so I had to get a jumpstart from my neighbor"
+49437,junco snowbird,small North American finch seen chiefly in winter
+49438,junction,the place where two or more things come together
+49439,junction adjunction,an act of joining or adjoining things
+49440,junction conjunction,something that joins or connects
+49441,junction conjunction conjugation colligation,the state of being joined together
+49442,junction_barrier barrier_strip,a junction unit for connecting 2 cables without the need for plugs
+49443,juncture critical_point crossroads,a crisis situation or point in time when a critical decision must be made; "at that juncture he had no idea what to do"; "he must be made to realize that the company stands at a critical point"
+49444,juncture occasion,an event that occurs at a critical time; "at such junctures he always had an impulse to leave"; "it was needed only on special occasions"
+49445,juneberry_holly,a holly shrub
+49446,jungle,a location marked by an intense competition and struggle for survival
+49447,jungle,an impenetrable equatorial forest
+49448,jungle_cat Felis_chaus,small Asiatic wildcat
+49449,jungle_cock,male jungle fowl
+49450,jungle_fever,severe form of malaria occurring in tropical regions
+49451,jungle_fowl gallina,small Asiatic wild bird; believed to be ancestral to domestic fowl
+49452,jungle_gym,a structure of vertical and horizontal rods where children can climb and play
+49453,jungle_hen,female jungle fowl
+49454,jungle_rot,skin disorder induced by a tropical climate
+49455,junior,term of address for a disrespectful and annoying male; "look here, junior, it's none of your business"
+49456,junior,a third-year undergraduate
+49457,junior,the younger of two persons; "she is two years my junior"
+49458,junior_class,penultimate class in high school or college
+49459,junior_college,a college that offers only the first two years terminating in an associate degree
+49460,junior_featherweight,weighs no more than 122 pounds
+49461,junior_high_school junior_high,a secondary school usually including 7th and 8th grades
+49462,junior_lightweight,weighs no more than 130 pounds
+49463,junior_middleweight,weighs no more than 154 pounds
+49464,junior_school,British school for children aged 7-11
+49465,junior_status,in a junior position
+49466,junior_varsity JV,a college or university team that competes at a level below the varsity team
+49467,junior_welterweight,weighs no more than 140 pounds
+49468,juniper,coniferous shrub or small tree with berrylike cones
+49469,juniper_berries,berrylike cone of a common juniper; used in making gin
+49470,juniper_berry,berrylike fruit of a plant of the genus Juniperus especially the berrylike cone of the common juniper
+49471,juniperic_acid,a crystalline acid found in the exudations of some conifers
+49472,junk,any of various Chinese boats with a high poop and lugsails
+49473,junk_DNA,stretches of DNA that do not code for genes; "most of the genome consists of junk DNA"
+49474,junk_bond high-yield_bond,a (speculative) bond with a credit rating of BB or lower; issued for leveraged buyouts and other takeovers by companies with questionable credit
+49475,junk_food,food that tastes good but is high in calories having little nutritional value
+49476,junk_mail,third-class mail consisting of advertising and often addressed to `resident' or `occupant'
+49477,junk_shop,a shop that sells cheap secondhand goods
+49478,junket,dessert made of sweetened milk coagulated with rennet
+49479,junket,a trip taken by an official at public expense
+49480,junketing,taking an excursion for pleasure
+49481,junkyard,a field where junk is collected and stored for resale
+49482,jupati jupaty jupati_palm Raffia_taedigera,a tall Brazilian feather palm with a terminal crown of very large leathery pinnatisect leaves rising from long strong stems used for structural purposes
+49483,jurisdiction,in law; the territory within which power can be exercised
+49484,jurisprudence law legal_philosophy,the branch of philosophy concerned with the law and the principles that lead courts to make the decisions they do
+49485,jurist legal_expert,a legal scholar versed in civil law or the law of nations
+49486,juror juryman jurywoman,someone who serves (or waits to be called to serve) on a jury
+49487,jury,a body of citizens sworn to give a true verdict according to the evidence presented in a court of law
+49488,jury panel,a committee appointed to judge a competition
+49489,jury_box,an enclosure within a courtroom for the jury
+49490,jury_duty,the civic duty to serve on a jury
+49491,jury_mast,a temporary mast to replace one that has broken off
+49492,jury_system,a legal system for determining the facts at issue in a law suit
+49493,jus_sanguinis,the principle that a person's nationality at birth is the same as that of his natural parents
+49494,jus_soli,the principle that a person's nationality at birth is determined by the place of birth
+49495,just-noticeable_difference jnd,(psychophysics) the difference between two stimuli that (under properly controlled experimental conditions) is detected as often as it is undetected
+49496,just_deserts comeuppance comeupance poetic_jstice,an outcome (good or bad) that is well deserved and fitting
+49497,justice,judgment involved in the determination of rights and the assignment of rewards and punishments
+49498,justice justness,the quality of being just or fair
+49499,justice_of_the_peace,a local magistrate with limited powers
+49500,justiciar justiciary,formerly a high judicial officer
+49501,justiciary,the jurisdiction of a justiciar
+49502,justification,a statement in explanation of some action or belief
+49503,justification,something (such as a fact or circumstance) that shows an action to be reasonable or necessary; "he considered misrule a justification for revolution"
+49504,justification,the act of defending or explaining or making excuses for by reasoning; "the justification of barbarous means by holy ends"- H.J.Muller
+49505,justness rightness nicety,conformity with some esthetic standard of correctness or propriety; "it was performed with justness and beauty"
+49506,jute,a plant fiber used in making rope or sacks
+49507,juvenescence,the process of growing into a youth
+49508,juvenile juvenile_person,a young person, not fully developed
+49509,juvenile_body,the body of a young person
+49510,juvenile_court,a court having jurisdiction over dependent and delinquent children
+49511,juvenile_wart,a small benign growth on the faces of hands of children
+49512,juxtaposition,a side-by-side position
+49513,juxtaposition apposition collocation,the act of positioning close together (or side by side); "it is the result of the juxtaposition of contrasting colors"
+49514,kabbalism cabalism,adherence to some extreme traditional theological concept or interpretation
+49515,kabob kebab shish_kebab,cubes of meat marinated and cooked on a skewer usually with vegetables
+49516,kachina,a masked dancer during a Pueblo religious ceremony who is thought to embody some particular spirit
+49517,kachina,a deified spirit of the Pueblo people
+49518,kachina,a carved doll wearing the costume of a particular Pueblo spirit; usually presented to a child as a gift
+49519,kaffir kafir caffer caffre,an offensive and insulting term for any Black African
+49520,kaffir_boom Cape_kafferboom Erythrina_caffra,small semi-evergreen broad-spreading tree of eastern South Africa with orange-scarlet flowers and small coral-red seeds; yields a light soft wood used for fence posts or shingles
+49521,kaffir_boom Transvaal_kafferboom Erythrina_lysistemon,small semi-evergreen tree of South Africa having dense clusters of clear scarlet flowers and red seeds
+49522,kaffir_bread Encephalartos_caffer,South African cycad; the farinaceous pith of the fruit used as food
+49523,kaffir_cat caffer_cat Felis_ocreata,widely distributed wildcat of Africa and Asia Minor
+49524,kaffiyeh,an Arab headdress consisting of a square piece of cloth folded into a triangle and fastened over the crown by an agal
+49525,kahikatea New_Zealand_Dacryberry New_Zealand_white_pine Dacrycarpus_dacrydioides Podocarpus_dacrydioides,New Zealand evergreen valued for its light easily worked wood
+49526,kai_apple,South African fruit smelling and tasting like apricots; used for pickles and preserves
+49527,kainite,a white mineral consisting of magnesium sulphate and potassium chloride; a source of potassium salts; used as a fertilizer
+49528,kaiser_roll,rounded raised poppy-seed roll made of a square piece of dough by folding the corners in to the center
+49529,kaki Himantopus_novae-zelandiae,blackish stilt of New Zealand sometimes considered a color phase of the white-headed stilt
+49530,kakke_disease,the endemic form of beriberi
+49531,kalansuwa,a cap that is wrapped around by a turban and worn by Muslim religious elders
+49532,kale kail cole,coarse curly-leafed cabbage
+49533,kale kail cole borecole colewort Brassica_oleracea_acephala,a hardy cabbage with coarse curly leaves that do not form a head
+49534,kaleidoscope,a complex pattern of constantly changing colors and shapes
+49535,kaleidoscope,an optical toy in a tube; it produces symmetrical patterns as bits of colored glass are reflected by mirrors
+49536,kalemia,the presence of excess potassium in the circulating blood
+49537,kaliuresis kaluresis,the presence of excess potassium in the urine
+49538,kalmia,any plant of the genus Kalmia
+49539,kalumpang Java_olives Sterculia_foetida,large tree of Old World tropics having foul-smelling orange-red blossoms followed by red pods enclosing oil-rich seeds sometimes used as food
+49540,kameez,a long tunic worn by many people from the Indian subcontinent (usually with a salwar or churidars)
+49541,kamikaze,a pilot trained and willing to cause a suicidal crash
+49542,kamikaze,a fighter plane used for suicide missions by Japanese pilots in World War II
+49543,kampong campong,a native village in Malaysia
+49544,kanamycin Kantrex,antibiotic (trade name Kantrex) used to treat severe infections
+49545,kanchil Tragulus_kanchil,small chevrotain of southeastern Asia
+49546,kangaroo,any of several herbivorous leaping marsupials of Australia and New Guinea having large powerful hind legs and a long thick tail
+49547,kangaroo_apple poroporo Solanum_aviculare,Australian annual sometimes cultivated for its racemes of purple flowers and edible yellow egg-shaped fruit
+49548,kangaroo_court,an irregular unauthorized court
+49549,kangaroo_mouse,leaping rodent of Australian desert areas
+49550,kangaroo_mouse dwarf_pocket_rat,small silky-haired pouched rodent; similar to but smaller than kangaroo rats
+49551,kangaroo_paw kangaroo's_paw kangaroo's-foot kangaroo-foot_plant Australian_sword_lily Anigozanthus_manglesii,sedgelike spring-flowering herb having clustered flowers covered with woolly hairs; Australia
+49552,kangaroo_rat desert_rat Dipodomys_phillipsii,any of various leaping rodents of desert regions of North America and Mexico; largest members of the family Heteromyidae
+49553,kanzu,(Swahili) a long garment (usually white) with long sleeves; worn by men in East Africa
+49554,kaoliang,sorghums of China and Manchuria having small white or brown grains (used for food) and dry pithy stalks (used for fodder, fuel and thatching)
+49555,kaolinite,a mineral consisting of aluminum silicate; main source of kaolin
+49556,kaon kappa-meson k-meson K_particle,an unstable meson produced as the result of a high-energy particle collision
+49557,kapeika,100 kapeikas equal 1 rubel in Belarus
+49558,kaph,the 11th letter of the Hebrew alphabet
+49559,kapok ceiba_tree silk-cotton_tree white_silk-cotton_tree Bombay_ceiba God_tree Ceiba_pentandra,massive tropical tree with deep ridges on its massive trunk and bearing large pods of seeds covered with silky floss; source of the silky kapok fiber
+49560,kapok silk_cotton vegetable_silk,a plant fiber from the kapok tree; used for stuffing and insulation
+49561,kappa,the 10th letter of the Greek alphabet
+49562,kapuka Griselinia_littoralis,small New Zealand broadleaf evergreen tree often cultivated in warm regions as an ornamental
+49563,karaoke,singing popular songs accompanied by a recording of an orchestra (usually in bars or nightclubs)
+49564,karat carat kt,the unit of measurement for the proportion of gold in an alloy; 18-karat gold is 75% gold; 24-karat gold is pure gold
+49565,karate,a traditional Japanese system of unarmed combat; sharp blows and kicks are given to pressure-sensitive points on the body of the opponent
+49566,karma,(Hinduism and Buddhism) the effects of a person's actions that determine his destiny in his next incarnation
+49567,karyokinesis,organic process consisting of the division of the nucleus of a cell during mitosis or meiosis
+49568,karyolymph,a clear liquid in the cell nucleus in which the nucleolus and chromatin and other structures are dispersed
+49569,karyolysis,disintegration and dissolution of a cell nucleus when a cell dies
+49570,karyotype,the appearance of the chromosomal makeup of a somatic cell in an individual or species (including the number and arrangement and size and structure of the chromosomes)
+49571,kasbah casbah,an older or native quarter of many cities in northern Africa; the quarter in which the citadel is located
+49572,kasha,boiled or baked buckwheat
+49573,kat khat qat quat cat Arabian_tea African_tea,the leaves of the shrub Catha edulis which are chewed like tobacco or used to make tea; has the effect of a euphoric stimulant; "in Yemen kat is used daily by 85% of adults"
+49574,katabatic_wind catabatic_wind,a wind caused by the downward motion of cold air
+49575,katamorphism,metamorphism that occurs at or near the earth's surface; breaks down complex minerals into simpler ones
+49576,katharobe,an organism that lives in an oxygenated medium lacking organic matter
+49577,katharometer,measures thermal conductivity
+49578,katsura_tree Cercidiphyllum_japonicum,rapidly growing deciduous tree of low mountainsides of China and Japan; grown as an ornamental for its dark blue-green candy-scented foliage that becomes yellow to scarlet in autumn
+49579,katydid,large green long-horned grasshopper of North America; males produce shrill sounds by rubbing together special organs on the forewings
+49580,kauri,white close-grained wood of a tree of the genus Agathis especially Agathis australis
+49581,kauri kauri_copal kauri_resin kauri_gum,resin of the kauri trees of New Zealand; found usually as a fossil; also collected for making varnishes and linoleum
+49582,kauri kaury Agathis_australis,tall timber tree of New Zealand having white straight-grained wood
+49583,kauri_pine dammar_pine,any of various trees of the genus Agathis; yield dammar resin
+49584,kava kavakava,an alcoholic drink made from the aromatic roots of the kava shrub
+49585,kawaka Libocedrus_plumosa,New Zealand timber tree resembling the cypress
+49586,kayak,a small canoe consisting of a light frame made watertight with animal skins; used by Eskimos
+49587,kazoo,a toy wind instrument that has a membrane that makes a sound when you hum into the mouthpiece
+49588,kea Nestor_notabilis,large brownish-green New Zealand parrot
+49589,kedgeree,a dish of rice and hard-boiled eggs and cooked flaked fish
+49590,keel,a projection or ridge that suggests a keel
+49591,keel,the median ridge on the breastbone of birds that fly
+49592,keel,one of the main longitudinal beams (or plates) of the hull of a vessel; can extend vertically into the water to provide lateral stability
+49593,keelboat,river boat with a shallow draught and a keel but no sails; used to carry freight; moved by rowing or punting or towing
+49594,keeled_garlic Allium_carinatum,Eurasian bulbous plant
+49595,keelson,a longitudinal beam connected to the keel of ship to strengthen it
+49596,keen,a funeral lament sung with loud wailing
+49597,keep donjon dungeon,the main tower within the walls of a medieval castle or fortress
+49598,keeper,someone in charge of other people; "am I my brother's keeper?"
+49599,keeping,conformity or harmony; "his behavior was not in keeping with the occasion"
+49600,keepsake souvenir token relic,something of sentimental value
+49601,keeshond,a spitz-like dog having a shaggy greyish coat and tightly curled tail originating in Holland
+49602,keg,small cask or barrel
+49603,keg kegful,the quantity contained in a keg
+49604,kei_apple kei_apple_bush Dovyalis_caffra,vigorous South African spiny shrub grown for its round yellow juicy edible fruits
+49605,keloid cheloid,raised pinkish scar tissue at the site of an injury; results from excessive tissue repair
+49606,kelp,large brown seaweeds having fluted leathery fronds
+49607,kelp_greenling Hexagrammos_decagrammus,common food and sport fish of western coast of North America
+49608,kelpie,an Australian sheepdog with pointed ears
+49609,kelpy kelpie,(Scottish folklore) water spirit in the form of a horse that likes to drown its riders
+49610,kelvin K,the basic unit of thermodynamic temperature adopted under the Systeme International d'Unites
+49611,kenaf deccan_hemp,fiber from an East Indian plant Hibiscus cannabinus
+49612,kenaf kanaf deccan_hemp bimli bimli_hemp Indian_hemp Bombay_hemp Hibiscus_cannabinus,valuable fiber plant of East Indies now widespread in cultivation
+49613,kennel doghouse dog_house,outbuilding that serves as a shelter for a dog
+49614,kenning,conventional metaphoric name for something, used especially in Old English and Old Norse poetry
+49615,kenosis,the concept of emptying one's own will and receive God's will, in Catholicism
+49616,kepi peaked_cap service_cap yachting_cap,a cap with a flat circular top and a visor
+49617,keratalgia,pain in the cornea
+49618,keratectasia,abnormal bulging of the cornea of the eye
+49619,keratin ceratin,a fibrous scleroprotein that occurs in the outer layer of the skin and in horny tissues such as hair, feathers, nails, and hooves
+49620,keratinization keratinisation,organic process by which keratin is deposited in cells and the cells become horny (as in nails and hair)
+49621,keratitis,inflammation of the cornea causing watery painful eyes and blurred vision
+49622,keratoacanthoma,skin tumor that grows rapidly (especially in older people) and resembles a carcinoma but does not spread; it usually disappears spontaneously, often leaving a scar
+49623,keratocele,hernia of the cornea
+49624,keratoconjunctivitis,inflammation of the cornea and conjunctiva
+49625,keratoconus,abnormal cone-shaped protrusion of the cornea of the eye; can be treated by epikeratophakia
+49626,keratoderma keratodermia,any skin disorder consisting of a growth that appears horny
+49627,keratohyalin,hyaline in the large granules of the stratum granulosum
+49628,keratoiritis,inflammation of the cornea and the iris of the eye
+49629,keratomalacia,softening and drying and ulceration of the cornea resulting from vitamin A deficiency; symptom of cystic fibrosis or sprue
+49630,keratomycosis,fungal infection of the cornea
+49631,keratonosis,any abnormal condition of the outer skin (epidermis)
+49632,keratonosus,any disease of the cornea
+49633,keratoplasty corneal_graft corneal_transplant,a surgical procedure in which part or all of a damaged or diseased cornea is replaced by healthy corneal tissue from a donor
+49634,keratoscleritis,inflammation of the cornea and sclera of the eye
+49635,keratoscope,medical instrument to examine the cornea in order to detect irregularities in its anterior surface
+49636,keratoscopy,examination of the cornea with a keratoscope to detect irregularities in its anterior surface
+49637,keratosis,a skin condition marked by an overgrowth of layers of horny skin
+49638,keratosis_blennorrhagica keratoderma_blennorrhagica,skin disease characterized by a scaly rash on the palms and soles; associated with Reiter's syndrome
+49639,keratosis_follicularis Darier's_disease,a rare hereditary condition marked by dark crusted patches (sometimes containing pus)
+49640,keratosis_pilaris,keratosis characterized by hard conical elevations in the openings of sebaceous glands (especially of arms and thighs)
+49641,keratotomy,surgical incision into the cornea
+49642,kerb_crawler,someone who drives slowly along the curb seeking sex from prostitutes or other women
+49643,kerchief,a square scarf that is folded into a triangle and worn over the head or about the neck
+49644,kerion,ringworm infection of the hair follicles of the scalp and beard that usually results in a swelling that is covered with pustules and oozes fluid
+49645,kern,the part of a metal type that projects beyond its body
+49646,kernel,a single whole grain of a cereal; "a kernel of corn"
+49647,kernel meat,the inner and usually edible part of a seed or grain or nut or fruit stone; "black walnut kernels are difficult to get out of the shell"
+49648,kernel substance core center centre essence gist heart heart_and_soul inwardness marrow meat nub pith sum nitty-gritty,the choicest or most essential or most vital part of some idea or experience; "the gist of the prosecutor's argument"; "the heart and soul of the Republican Party"; "the nub of the story"
+49649,kernicterus,an abnormal accumulation of bile pigment in the brain and other nerve tissue; causes yellow staining and tissue damage
+49650,kernite,a light soft mineral consisting of hydrated sodium borate in crystalline form; an important source of boron
+49651,kerosene kerosine lamp_oil coal_oil,a flammable hydrocarbon oil used as fuel in lamps and heaters
+49652,kerygma kerugma,preaching the gospel of Christ in the manner of the early church
+49653,kestrel Falco_tinnunculus,small Old World falcon that hovers in the air against a wind
+49654,ketamine ketamine_hydrochloride Ketalar,a general anesthetic and tranquilizer (not a barbiturate) that is administered intravenously or intramuscularly; used mainly by veterinarians or for minor surgery with geriatric or pediatric patients; taken in large doses it causes hallucinations similar to those associated with the use of PCP
+49655,ketch,a sailing vessel with two masts; the mizzen is forward of the rudderpost
+49656,keteleeria,Asiatic conifers resembling firs
+49657,ketembilla kitembilla kitambilla,maroon-purple gooseberry-like fruit of India having tart-sweet purple pulp used especially for preserves
+49658,ketembilla kitembilla kitambilla ketembilla_tree Ceylon_gooseberry Dovyalis_hebecarpa,a small shrubby spiny tree cultivated for its maroon-purple fruit with sweet purple pulp tasting like gooseberries; Sri Lanka and India
+49659,ketoacidosis diabetic_acidosis,acidosis with an accumulation of ketone bodies; occurs primarily in diabetes mellitus
+49660,ketohexose,a monosaccharide having six carbon atoms and a ketone group
+49661,ketone,any of a class of organic compounds having a carbonyl group linked to a carbon atom in each of two hydrocarbon radicals
+49662,ketone_body acetone_body,a ketone that is an intermediate product of the breakdown of fats in the body; any of three compounds (acetoacetic acid, acetone, and/or beta-hydroxybutyric acid) found in excess in blood and urine of persons with metabolic disorders
+49663,ketone_group,a group having the characteristic properties of ketones
+49664,ketonemia ketosis acetonemia,an abnormal increase of ketone bodies in the blood as in diabetes mellitus
+49665,ketonuria ketoaciduria acetonuria,excessive amounts of ketone bodies in the urine as in diabetes mellitus or starvation
+49666,ketoprofen Orudis Orudis_KT Oruvail,nonsteroidal anti-inflammatory drug (trade names Orudis or Orudis KT or Oruvail)
+49667,ketorolac Torodal,nonsteroidal anti-inflammatory (trade name Torodal) that is given only orally
+49668,ketorolac_tromethamine Acular Toradol,nonsteroidal anti-inflammatory drug (trade names Acular and Toradol) that is administered only intramuscularly
+49669,ketose,any monosaccharide sugar that contains a ketone group or its hemiacetal
+49670,ketosteroid,a steroid containing a ketone group
+49671,kettle boiler,a metal pot for stewing or boiling; usually has a lid
+49672,kettle kettledrum tympanum tympani timpani,a large hemispherical brass or copper percussion instrument with a drumhead that can be tuned by adjusting the tension on it
+49673,kettle kettleful,the quantity a kettle will hold
+49674,kettle_hole kettle,(geology) a hollow (typically filled by a lake) that results from the melting of a mass of ice trapped in glacial deposits
+49675,keurboom Virgilia_capensis Virgilia_oroboides,tree with odd-pinnate leaves and racemes of fragrant pink to purple flowers
+49676,keurboom Virgilia_divaricata,fast-growing roundheaded tree with fragrant white to deep rose flowers; planted as an ornamental
+49677,key,a kilogram of a narcotic drug; "they were carrying two keys of heroin"
+49678,key,a list of answers to a test; "some students had stolen the key to the final exam"
+49679,key,a list of words or phrases that explain symbols or abbreviations
+49680,key,a generic term for any device whose possession entitles the holder to a means of access; "a safe-deposit box usually requires two keys to open it"
+49681,key,something crucial for explaining; "the key to development is economic integration"
+49682,key,pitch of the voice; "he spoke in a low key"
+49683,key,a lever (as in a keyboard) that actuates a mechanism when depressed
+49684,key,metal device shaped in such a way that when it is inserted into the appropriate lock the lock's mechanism can be rotated
+49685,key cay Florida_key,a coral reef off the southern coast of Florida
+49686,key paint,(basketball) a space (including the foul line) in front of the basket at each end of a basketball court; usually painted a different color from the rest of the court; "he hit a jump shot from the top of the key"; "he dominates play in the paint"
+49687,key tonality,any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music
+49688,key_lime,small yellow-green limes of southern Florida
+49689,key_palm silvertop_palmetto silver_thatch Thrinax_microcarpa Thrinax_morrisii Thrinax_keyensis,small stocky fan palm of southern Florida and Cuba
+49690,key_ring,a circular ring of metal for holding keys
+49691,key_signature signature,the sharps or flats that follow the clef and indicate the key
+49692,key_word,a word that is used as a pattern to decode an encrypted message
+49693,key_word,a significant word used in indexing or cataloging
+49694,keyboard,device consisting of a set of keys on a piano or organ or typewriter or typesetting machine or computer or the like
+49695,keyboard,holder consisting of an arrangement of hooks on which keys or locks can be hung
+49696,keyboard_buffer,a buffer that keeps track of key strokes until the computer is ready to respond to them
+49697,keyboard_instrument,a musical instrument that is played by means of a keyboard
+49698,keyboardist,a musician who plays a keyboard instrument
+49699,keycard,a plastic card that has a magnetically coded strip that is scanned in order to operate a mechanism
+49700,keyhole,the hole where a key is inserted
+49701,keyhole_limpet Fissurella_apertura Diodora_apertura,marine limpet having a conical shell with an opening at the apex
+49702,keyhole_saw,a handsaw with a long narrow blade for cutting short radius curves; similar to a compass saw
+49703,keynote,the principal theme in a speech or literary work
+49704,keynote,a fundamental or central idea
+49705,keynote_speech keynote_address,a speech setting forth the keynote
+49706,keystone key headstone,the central building block at the top of an arch or vault
+49707,keystroke key_stroke,the stroke of a key; one depression of a key on a keyboard; "the number of keystrokes was used as a measure of work"
+49708,khadi khaddar,a coarse homespun cotton cloth made in India
+49709,khaki,a sturdy twilled cloth of a yellowish brown color used especially for military uniforms
+49710,khakis,a military uniform made of khaki fabric
+49711,khamsin,an oppressively hot southerly wind from the Sahara that blows across Egypt in the spring
+49712,khan,a title given to rulers or other important people in Asian countries
+49713,khanate,the realm of a khan
+49714,khanate,the position of a khan
+49715,khimar,a headscarf worn by observant Muslim women that hangs down to just above the waist
+49716,khoum,5 khoums equal 1 ouguiya in Mauritania
+49717,khukuri,a curved steel knife with a razor-sharp edge used in combat by the Gurkhas; has cultural and religious significance in Nepal
+49718,kia_quen,a form of foot torture used by the Chinese in which the victim's foot was placed between three pieces of bamboo and systematically squeezed
+49719,kiang Equus_kiang,wild ass of Tibet and Mongolia
+49720,kibble,coarsely ground grain in the form of pellets (as for pet food)
+49721,kibble,an iron bucket used for hoisting in wells or mining
+49722,kibbutz,a collective farm or settlement owned by its members in modern Israel; children are reared collectively
+49723,kibbutznik,a member of a kibbutz
+49724,kibe,ulcerated chilblain on the heel
+49725,kibibit kibit,a unit of information equal to 1024 bits
+49726,kibitzer,(Yiddish) a meddler who offers unwanted advice to others
+49727,kick,the sudden stimulation provided by strong drink (or certain drugs); "a sidecar is a smooth drink but it has a powerful kick"
+49728,kick boot kicking,the act of delivering a blow with the foot; "he gave the ball a powerful kick"; "the team's kicking was excellent"
+49729,kick kicking,a rhythmic thrusting movement of the legs as in swimming or calisthenics; "the kick must be synchronized with the arm movements"; "the swimmer's kicking left a wake behind him"
+49730,kick_in_the_butt,punishment inflicted by kicking the victim in the behind
+49731,kick_pleat,pleat in back of a straight skirt to allow ease in walking
+49732,kick_starter kick_start,a starter (as on a motorcycle) that is activated with the foot and the weight of the body
+49733,kick_turn,a standing turn made in skiing; one ski is raised to the vertical and pivoted backward to become parallel with the other ski but headed in the opposite direction and then the other ski is aligned with the first
+49734,kick_up,raising the feet backward with the hands on the ground; a first movement in doing a handstand
+49735,kickback,a commercial bribe paid by a seller to a purchasing agent in order to induce the agent to enter into the transaction
+49736,kicker,a player who kicks the football
+49737,kickoff,(football) a kick from the center of the field to start a football game or to resume it after a score
+49738,kickoff send-off start-off,a start given to contestants; "I was there with my parents at the kickoff"
+49739,kicksorter pulse_height_analyzer,scientific instrument consisting of an electronic circuit that permits only voltage pulses of predetermined height to pass
+49740,kickstand,a swiveling metal rod attached to a bicycle or motorcycle or other two-wheeled vehicle; the rod lies horizontally when not in use but can be kicked into a vertical position as a support to hold the vehicle upright when it is not being ridden
+49741,kid,young goat
+49742,kid kidskin,soft smooth leather from the hide of a young goat; "kid gloves"
+49743,kid_glove suede_glove,a glove made of fine soft leather (as kidskin)
+49744,kiddy kiddie,informal term for a young child
+49745,kidnapper kidnaper abductor snatcher,someone who unlawfully seizes and detains a victim (usually for ransom)
+49746,kidnapping snatch,(law) the unlawful act of capturing and carrying away a person against their will and holding them in false imprisonment
+49747,kidney,either of two bean-shaped excretory organs that filter wastes (especially urea) from the blood and excrete them and water in urine; "urine passes out of the kidney through ureters to the bladder"
+49748,kidney_bean,large dark red bean; usually dried
+49749,kidney_bean frijol frijole,the common bean plant grown for the beans rather than the pods (especially a variety with large red kidney-shaped beans)
+49750,kidney_disease renal_disorder nephropathy nephrosis,a disease affecting the kidneys
+49751,kidney_fern Trichomanes_reniforme,large fern of New Zealand having kidney-shaped fronds
+49752,kidney_pie,like steak and kidney pie but without steak
+49753,kidney_stone urinary_calculus nephrolith renal_calculus,a calculus formed in the kidney
+49754,kidney_vetch Anthyllis_vulneraria,perennial Eurasian herb having heads of red or yellow flowers and common in meadows and pastures; formerly used medicinally for kidney disorders
+49755,kieserite,a white mineral consisting of hydrous magnesium sulfate often found in salt mines
+49756,kike hymie sheeny yid,(ethnic slur) offensive term for a Jew
+49757,kilderkin,an obsolete British unit of capacity equal to 18 Imperial gallons
+49758,kill,the body of an animal, or bodies of animals, killed by a person or another animal
+49759,kill,the destruction of an enemy plane or ship or tank or missile; "the pilot reported two kills during the mission"
+49760,kill_zone killing_zone,an area where a battle has occurred with many fatalities
+49761,killdeer kildeer killdeer_plover Charadrius_vociferus,American plover of inland waters and fields having a distinctive cry
+49762,killer,a difficulty that is hard to deal with; "that exam was a real killer"
+49763,killer slayer,someone who causes the death of a person or animal
+49764,killer_T_cell killer_cell cytotoxic_T_cell CD8_T_cell CD8_cell,T cell with CD8 receptor that recognizes antigens on the surface of a virus-infected cell and binds to the infected cell and kill it
+49765,killer_bee,an investment banker who devises strategies to make a target company less attractive for takeover
+49766,killer_whale killer orca grampus sea_wolf Orcinus_orca,predatory black-and-white toothed whale with large dorsal fin; common in cold seas
+49767,killifish,small mostly marine warm-water carp-like schooling fishes; used as bait or aquarium fishes or in mosquito control
+49768,killing cleanup,a very large profit
+49769,killing kill putting_to_death,the act of terminating a life
+49770,killing violent_death,an event that causes someone to die
+49771,killing_field,(usually plural) an area where many people have died (usually by massacre or genocide during war or violent civil disturbance)
+49772,kiln,a furnace for firing or burning or drying such things as porcelain or bricks
+49773,kilobit kbit kb,a unit of information equal to 1000 bits
+49774,kilobyte K KB kB,a unit of information equal to 1000 bytes
+49775,kilobyte kibibyte K KB kB KiB,a unit of information equal to 1024 bytes
+49776,kilogram kg kilo,one thousand grams; the basic unit of mass adopted under the Systeme International d'Unites; "a kilogram is approximately 2.2 pounds"
+49777,kilogram-meter,a unit of work equal to the work done by a one kilogram force operating through a distance of one meter
+49778,kilohertz kHz kilocycle_per_second kilocycle kc,one thousand periods per second
+49779,kiloliter kilolitre cubic_meter cubic_metre,a metric unit of volume or capacity equal to 1000 liters
+49780,kilometer kilometre km klick,a metric unit of length equal to 1000 meters (or 0.621371 miles)
+49781,kilometers_per_hour kilometres_per_hour kph km/h,the ratio of the distance traveled (in kilometers) to the time spent traveling (in hours)
+49782,kiloton,one thousand tons
+49783,kiloton,a measure of explosive power (of an atomic weapon) equal to that of 1000 tons of TNT
+49784,kilovolt kV,a unit of potential equal to a thousand volts
+49785,kilovolt-ampere,a unit of electrical power equal to 1000 volt-amperes
+49786,kilowatt kW,a unit of power equal to 1000 watts
+49787,kilowatt_hour kW-hr Board_of_Trade_unit B.T.U.,a unit of energy equal to the work done by a power of 1000 watts operating for one hour
+49788,kilt,a knee-length pleated tartan skirt worn by men as part of the traditional dress in the Highlands of northern Scotland
+49789,kilter kelter,in working order; "out of kilter"; "in good kilter"
+49790,kimberlite,a rare type of peridotite that sometimes contains diamonds; found in South Africa and Siberia
+49791,kimono,a loose robe; imitated from robes originally worn by Japanese
+49792,kin kin_group kinship_group kindred clan tribe,group of people related by blood or marriage
+49793,kin kinsperson family,a person having kinship with another or others; "he's kin"; "he's family"
+49794,kina,the basic unit of money in Papua New Guinea
+49795,kinanesthesia,inability to sense movement
+49796,kinase,an enzyme that catalyzes the conversion of a proenzyme to an active enzyme
+49797,kind sort form variety,a category of things distinguished by some common characteristic or quality; "sculpture is a form of art"; "what kinds of desserts are there?"
+49798,kindergarten,a preschool for children age 4 to 6 to prepare them for primary school
+49799,kindheartedness kind-heartedness,sympathy arising from a kind heart
+49800,kindliness helpfulness,friendliness evidence by a kindly and helpful disposition
+49801,kindling tinder touchwood spunk punk,material for starting a fire
+49802,kindness,the quality of being warmhearted and considerate and humane and sympathetic
+49803,kindness benignity,a kind act
+49804,kinematics,the branch of mechanics concerned with motion without reference to force or mass
+49805,kinescope picture_tube television_tube,a cathode-ray tube in a television receiver; translates the received signal into a picture on a luminescent screen
+49806,kinesiology,the branch of physiology that studies the mechanics and anatomy in relation to human movement
+49807,kinesis,a movement that is a response to a stimulus but is not oriented with respect to the source of stimulation
+49808,kinesthesia kinaesthesia feeling_of_movement,the perception of body position and movement and muscular tensions etc
+49809,kinesthesis kinaesthesis kinesthesia kinaesthesia kinesthetics muscle_sense sense_of_movement,the ability to feel movements of the limbs and body
+49810,kinetic_energy K.E.,the mechanical energy that a body has by virtue of its motion
+49811,kinetic_theory kinetic_theory_of_gases,(physics) a theory that gases consist of small particles in random motion
+49812,kinetic_theory_of_heat,a theory that the temperature of a body increases when kinetic energy increases
+49813,king,preeminence in a particular category or group or field; "the lion is the king of beasts"
+49814,king,a checker that has been moved to the opponent's first row where it is promoted to a piece that is free to move either forward or backward
+49815,king,one of the four playing cards in a deck bearing the picture of a king
+49816,king,(chess) the weakest but the most important piece
+49817,king male_monarch Rex,a male sovereign; ruler of a kingdom
+49818,king queen world-beater,a competitor who holds a preeminent position
+49819,king's_ransom,a very large treasure
+49820,king's_spear yellow_asphodel Asphodeline_lutea,asphodel with leafy stem and fragrant yellow flowers
+49821,king_crab Alaska_crab Alaskan_king_crab Alaska_king_crab Paralithodes_camtschatica,large edible crab of northern Pacific waters especially along the coasts of Alaska and Japan
+49822,king_devil yellow_hawkweed Hieracium_praealtum,European hawkweed introduced into northeastern United States; locally troublesome weeds
+49823,king_mackerel cavalla cero Scomberomorus_cavalla,large mackerel with long pointed snout; important food and game fish of the eastern Atlantic coast southward to Brazil
+49824,king_penguin Aptenodytes_patagonica,large penguin on islands bordering the Antarctic Circle
+49825,king_post,post connecting the crossbeam to the apex of a triangular truss
+49826,king_snake kingsnake,any of numerous nonvenomous North American constrictors; feed on other snakes and small mammals
+49827,king_vulture Sarcorhamphus_papa,large black-and-white vulture of South America and Central America; have colorful wattles and wartlike protuberances on head and neck
+49828,king_whiting Menticirrhus_americanus,whiting of the southeastern coast of North America
+49829,kingbird Tyrannus_tyrannus,large American flycatcher
+49830,kingbolt kingpin swivel_pin,bolt that provides a steering joint in a motor vehicle
+49831,kingdom,a country with a king as head of state
+49832,kingdom,a monarchy with a king or queen as head of state
+49833,kingdom,the highest taxonomic group into which organisms are grouped; one of five biological categories: Monera or Protoctista or Plantae or Fungi or Animalia
+49834,kingdom,a basic group of natural objects
+49835,kingdom land realm,a domain in which something is dominant; "the untroubled kingdom of reason"; "a land of make-believe"; "the rise of the realm of cotton in the south"
+49836,kingdom realm,the domain ruled by a king or queen
+49837,kingdom_come,the next world; "he nearly blew us to kingdom come"
+49838,kingdom_come,the end of time; "you can wet the bed till kingdom come, for all I care"
+49839,kingfish,the lean flesh of any of several fish caught off the Atlantic coast of the United States
+49840,kingfish,any of several food and game fishes of the drum family indigenous to warm Atlantic waters of the North American coast
+49841,kingfish Seriola_grandis,large game fish of Australia and New Zealand
+49842,kingfisher,nonpasserine large-headed bird with a short tail and long sharp bill; usually crested and bright-colored; feed mostly on fish
+49843,kingfisher_daisy Felicia_bergeriana,softly hairy South African herb having flowers with bright blue rays
+49844,kinglet,small birds resembling warblers but having some of the habits of titmice
+49845,kingmaker,an important person who can bring leaders to power through the exercise of political influence; "the Earl of Warwick was the first kingmaker"
+49846,kingpin top_banana bigwig,the most important person in a group or undertaking
+49847,kingship,the dignity or rank or position of a king
+49848,kingwood,handsome violet-streaked wood of the kingwood tree; used especially in cabinetwork
+49849,kingwood kingwood_tree Dalbergia_cearensis,Brazilian tree yielding a handsome cabinet wood
+49850,kinin cytokinin,any of a class of plant hormones that promote cell division and delay the senescence of leaves
+49851,kink,a person with unusual sexual tastes
+49852,kink,an eccentric idea
+49853,kink,a difficulty or flaw in a plan or operation; "there are still a few kinks to iron out"
+49854,kink twist twirl,a sharp bend in a line produced when a line having a loop is pulled tight
+49855,kinkajou honey_bear potto Potos_flavus Potos_caudivolvulus,arboreal fruit-eating mammal of tropical America with a long prehensile tail
+49856,kino Pterocarpus_marsupium,East Indian tree yielding a resin or extract often used medicinally and in e.g. tanning
+49857,kino gum_kino kino_gum,a gum obtained from various tropical plants; used as an astringent and in tanning
+49858,kinship family_relationship relationship,(anthropology) relatedness or connection by blood or marriage or adoption
+49859,kinship_system,(anthropology) the system of social relationships that constitute kinship in a particular culture, including the terminology that is used and the reciprocal obligations that are entailed
+49860,kinsman,a male relative
+49861,kinswoman,a female relative
+49862,kip,sleep; "roused him from his kip"
+49863,kip,the basic unit of money in Laos
+49864,kip upstart,a gymnastic exercise performed starting from a position with the legs over the upper body and moving to an erect position by arching the back and swinging the legs out and down while forcing the chest upright
+49865,kipper kippered_herring,salted and smoked herring
+49866,kippered_salmon,salted and smoked salmon
+49867,kirk,a Scottish church
+49868,kirpan,a ceremonial four-inch curved dagger that Sikh men and women are obliged to wear at all times
+49869,kirsch,from fermented juice of black morello cherries
+49870,kirtle,a garment resembling a tunic that was worn by men in the Middle Ages
+49871,kirtle,a long dress worn by women
+49872,kishke stuffed_derma,(Judaism) roasted fowl intestines with a seasoned filling of matzo meal and suet
+49873,kismet kismat,(Islam) the will of Allah
+49874,kiss,a cookie made of egg whites and sugar
+49875,kiss,a light glancing touch; "there was a brief kiss of their hands in passing"
+49876,kiss buss osculation,the act of caressing with the lips (or an instance thereof)
+49877,kiss candy_kiss,any of several bite-sized candies
+49878,kiss_of_death,something that is ruinous; "if this were known it would be the kiss of death for my political career"
+49879,kisser osculator,someone who kisses
+49880,kissing_cousin kissing_kin,a more or less distant relative; familiar enough to be greeted with a kiss
+49881,kit,a case for containing a set of articles
+49882,kit,young of any of various fur-bearing animals; "a fox kit"
+49883,kit outfit,gear consisting of a set of articles or tools for a specified purpose
+49884,kit_fox Vulpes_macrotis,small grey fox of southwestern United States; may be a subspecies of Vulpes velox
+49885,kit_fox prairie_fox Vulpes_velox,small grey fox of the plains of western North America
+49886,kitbag kit_bag,a knapsack (usually for a soldier)
+49887,kitchen,a room equipped for preparing meals
+49888,kitchen_appliance,a home appliance used in preparing food
+49889,kitchen_cabinet brain_trust,an inner circle of unofficial advisors to the head of a government
+49890,kitchen_garden vegetable_garden vegetable_patch,a small garden where vegetables are grown
+49891,kitchen_help,help hired to work in the kitchen
+49892,kitchen_island,an unattached counter in a kitchen that permits access from all sides
+49893,kitchen_match,a wooden friction match that will light on any granular surface; useful to light wood or gas stoves
+49894,kitchen_police KP,an enlisted person who is assigned to assist the cooks
+49895,kitchen_sink,a sink in a kitchen
+49896,kitchen_table,a table in the kitchen
+49897,kitchen_utensil,a utensil used in preparing food
+49898,kitchenette,small kitchen
+49899,kitchenware,hardware utensils for use in a kitchen
+49900,kite,a bank check that has been fraudulently altered to increase its face value
+49901,kite,a bank check drawn on insufficient funds at another bank in order to take advantage of the float
+49902,kite,plaything consisting of a light frame covered with tissue paper; flown in wind at end of a string
+49903,kite,any of several small graceful hawks of the family Accipitridae having long pointed wings and feeding on insects and small animals
+49904,kite_balloon,a barrage balloon with lobes at one end that keep it headed into the wind
+49905,kite_tail,a bob on a kite to provide balance
+49906,kith,your friends and acquaintances; "all his kith and kin"
+49907,kitsch,excessively garish or sentimental art; usually considered in bad taste
+49908,kittee,a form of torture used by American Indians in which sensitive parts of the body were squeezed between two boards until the victim could bear no more
+49909,kitten kitty,young domestic cat
+49910,kitten-tails,a plant of the genus Besseya having fluffy spikes of flowers
+49911,kittiwake,small pearl-grey gull of northern regions; nests on cliffs and has a rudimentary hind toe
+49912,kitty kitty-cat puss pussy pussycat,informal terms referring to a domestic cat
+49913,kiwi apteryx,nocturnal flightless bird of New Zealand having a long neck and stout legs; only surviving representative of the order Apterygiformes
+49914,kiwi kiwi_fruit Chinese_gooseberry,fuzzy brown egg-shaped fruit with slightly tart green flesh
+49915,klammath_weed Hypericum_perforatum,yellow-flowered perennial common in fields and waste places but a weed in rangelands
+49916,klavern,a local unit of the Ku Klux Klan
+49917,klaxon claxon,a kind of loud horn formerly used on motor vehicles
+49918,klebsiella,a genus of nonmotile rod-shaped Gram-negative enterobacteria; some cause respiratory and other infections
+49919,kleptomania,an irresistible impulse to steal in the absence of any economic motive
+49920,kleptomaniac,someone with an irrational urge to steal in the absence of an economic motive
+49921,klieg_light,carbon arc lamp that emits an intense light used in producing films
+49922,klondike,a form of solitaire that begins with seven piles of cards with the top cards facing up; descending sequences of cards of alternating colors are built on these piles; as aces become available they are placed above the seven piles; the object is to build sequences in suit from ace to king as the remaining cards are dealt out one at a time
+49923,kludge,a badly assembled collection of parts hastily assembled to serve some particular purpose (often used to refer to computing systems or software that has been badly put together)
+49924,klutz,(Yiddish) a clumsy dolt
+49925,klystron,an electron tube used to generate or amplify electromagnetic radiation in the microwave region by velocity modulation
+49926,knacker,someone who buys old buildings or ships and breaks them up to recover the materials in them
+49927,knacker,someone who buys up old horses for slaughter
+49928,knackwurst knockwurst,short thick highly seasoned sausage
+49929,knapweed,any of various plants of the genus Centaurea having purple thistlelike flowers
+49930,knawel knawe Scleranthus_annuus,widely distributed low-growing Eurasian herb having narrow leaves and inconspicuous green flowers
+49931,knee,the part of a trouser leg that provides the cloth covering for the knee
+49932,knee knee_joint human_knee articulatio_genus genu,hinge joint in the human leg connecting the tibia and fibula with the femur and protected in front by the patella
+49933,knee-high knee-hi,a sock or stocking that reaches up to just below the knees
+49934,knee_bend squat squatting,exercising by repeatedly assuming a crouching position with the knees bent; strengthens the leg muscles
+49935,knee_brace,a brace worn to strengthen the knee
+49936,knee_jerk knee-jerk_reflex patellar_reflex,a reflex extension of the leg resulting from a sharp tap on the patellar tendon
+49937,knee_pad,protective garment consisting of a pad worn by football or baseball or hockey players
+49938,knee_piece,armor plate that protects the knee
+49939,kneel kneeling,supporting yourself on your knees
+49940,kneeler,a person in a kneeling position
+49941,kneeler,a board (sometimes cushioned) for someone to kneel on
+49942,knell,the sound of a bell rung slowly to announce a death or a funeral or the end of something
+49943,knickknack novelty,a small inexpensive mass-produced article
+49944,knife,a weapon with a handle and blade with a sharp point
+49945,knife,edge tool used as a cutting instrument; has a pointed blade with a sharp edge and a handle
+49946,knife-edge,a narrow boundary; "he lived on a knife-edge between genius and insanity"
+49947,knife_blade,the blade of a knife
+49948,knife_edge cutting_edge,the sharp cutting side of the blade of a knife
+49949,knife_fight snickersnee cut-and-thrust,fighting with knives
+49950,knife_pleat,a single pleat turned in one direction
+49951,knight,originally a person of noble birth trained to arms and chivalry; today in Great Britain a person honored by the sovereign for personal merit
+49952,knight horse,a chessman shaped to resemble the head of a horse; can move two squares horizontally and one vertically (or vice versa)
+49953,knight's_service,land tenure by service to the lord as a knight
+49954,knight-errant,a wandering knight travelling in search of adventure
+49955,knight_bachelor bachelor-at-arms bachelor,a knight of the lowest order; could display only a pennon
+49956,knight_banneret knight_of_the_square_flag banneret,a knight honored for valor; entitled to display a square banner and to hold higher command
+49957,knight_errantry,(Middle Ages) the code of conduct observed by a knight errant who is wandering in search of deeds of chivalry
+49958,knight_errantry quixotism,quixotic (romantic and impractical) behavior
+49959,knighthood,aristocrats holding the rank of knight
+49960,kniphofia tritoma flame_flower flame-flower flameflower,a plant of the genus Kniphofia having long grasslike leaves and tall scapes of red or yellow drooping flowers
+49961,knish,(Yiddish) a baked or fried turnover filled with potato or meat or cheese; often eaten as a snack
+49962,knit,a fabric made by knitting
+49963,knit knit_stitch plain plain_stitch,a basic knitting stitch made by putting the needle through the front of the stitch from the lefthand side
+49964,knit knitting knitwork,needlework created by interlacing yarn in a series of connected loops using straight eyeless needles or by machine
+49965,knitter,someone who makes garments (or fabrics) by intertwining yarn or thread
+49966,knitting,creating knitted wear
+49967,knitting_machine,a textile machine that makes knitted fabrics
+49968,knitting_needle,needle consisting of a slender rod with pointed ends; usually used in pairs
+49969,knitting_stitch,a stitch taken in knitting
+49970,knitwear,knitted clothing
+49971,knob,a round handle
+49972,knob boss,a circular rounded projection or protuberance
+49973,knob pommel,an ornament in the shape of a ball on the hilt of a sword or dagger
+49974,knobble,a small knob
+49975,knobcone_pine Pinus_attenuata,medium-sized three-needled pine of the Pacific coast of the United States having a prominent knob on each scale of the cone
+49976,knobkerrie knobkerry,a short wooden club with a heavy knob on one end; used by aborigines in southern Africa
+49977,knock,a bad experience; "the school of hard knocks"
+49978,knock bash bang smash belt,a vigorous blow; "the sudden knock floored him"; "he took a bash right in his face"; "he got a bang on the head"
+49979,knock belt rap whack whang,the act of hitting vigorously; "he gave the table a whack"
+49980,knock knocking,the sound of knocking (as on a door or in an engine or bearing); "the knocking grew louder"
+49981,knock roast,negative criticism
+49982,knock-knee genu_valgum tibia_valga,an inward slant of the thigh
+49983,knock-on_effect,a secondary or incidental effect
+49984,knock_on,(rugby) knocking the ball forward while trying to catch it (a foul)
+49985,knockabout,a sloop with a simplified rig and no bowsprit
+49986,knockdown,a blow that knocks the opponent off his feet
+49987,knocker,(Yiddish) a big shot who knows it and acts that way; a boastful immoderate person
+49988,knocker,a person who knocks (as seeking to gain admittance); "open the door and see who the knocker is"
+49989,knocker doorknocker rapper,a device (usually metal and ornamental) attached by a hinge to a door
+49990,knockoff clone,an unauthorized copy or imitation
+49991,knockout KO kayo,a blow that renders the opponent unconscious
+49992,knockout_drops,chloral hydrate in combination with alcohol; usually administered surreptitiously to make the drinker unconscious
+49993,knoll mound hillock hummock hammock,a small natural hill
+49994,knot,(of ships and wind) a unit of speed equal to one nautical mile per hour or about 1.15 statute miles per hour
+49995,knot,a hard cross-grained round piece of wood in a board where a branch emerged; "the saw buckled when it hit a knot"
+49996,knot,a tight cluster of people or things; "a small knot of women listened to his sermon"; "the bird had a knot of feathers forming a crest"
+49997,knot,any of various fastenings formed by looping and tying a rope (or cord) upon itself or to another rope or to another object
+49998,knot gnarl,something twisted and tight and swollen; "their muscles stood out in knots"; "the old man's fists were two great gnarls"; "his stomach was in knots"
+49999,knot greyback grayback Calidris_canutus,a sandpiper that breeds in the Arctic and winters in the southern hemisphere
+50000,knotgrass Paspalum_distichum,low-growing weedy grass with spikelets along the leaf stems
+50001,knothole,a hole in a board where a knot came out
+50002,knotty_pine,pine lumber with many knots; used especially for paneling and furniture
+50003,knout,a whip with a lash of leather thongs twisted with wire; used for flogging prisoners
+50004,know,the fact of being aware of information that is known to few people; "he is always in the know"
+50005,know-how,the (technical) knowledge and skill required to do something
+50006,know-it-all know-all,someone who thinks he knows everything and refuses to accept advice or information from others
+50007,knower apprehender,a person who knows or apprehends
+50008,knowing,a clear and certain mental apprehension
+50009,knowingness,shrewdness demonstrated by knowledge
+50010,knowledge_domain knowledge_base domain,the content of a particular field of knowledge
+50011,knowledgeability knowledgeableness initiation,wisdom as evidenced by the possession of knowledge; "his knowledgeability impressed me"; "his dullness was due to lack of initiation"
+50012,knuckle knuckle_joint metacarpophalangeal_joint,a joint of a finger when the fist is closed
+50013,knuckle_joint hinge_joint,a joint allowing movement in one plane only
+50014,knuckleball knuckler,a baseball pitch thrown with little speed or spin
+50015,koala koala_bear kangaroo_bear native_bear Phascolarctos_cinereus,sluggish tailless Australian arboreal marsupial with grey furry ears and coat; feeds on eucalyptus leaves and bark
+50016,koan,a paradoxical anecdote or a riddle that has no solution; used in Zen Buddhism to show the inadequacy of logical reasoning
+50017,kob Kobus_kob,an orange-brown antelope of southeast Africa
+50018,kobo,100 kobos equal 1 naira in Nigeria
+50019,kohl,a cosmetic preparation used by women in Egypt and Arabia to darken the edges of their eyelids
+50020,kohleria,shrubby herb cultivated for their soft velvety foliage and showy scarlet flowers
+50021,kohlrabi Brassica_oleracea_gongylodes,plant cultivated for its enlarged fleshy turnip-shaped edible stem
+50022,kohlrabi turnip_cabbage,fleshy turnip-shaped edible stem of the kohlrabi plant
+50023,koinonia,Christian fellowship or communion with God or with fellow Christians; said in particular of the early Christian community
+50024,kokoi_venom,a potent neurotoxin found in a particular frog
+50025,kola kola_nut kola_nut_tree goora_nut Cola_acuminata,tree bearing large brown nuts containing e.g. caffeine; source of cola extract
+50026,kola_nut cola_nut,bitter brown seed containing caffein; source of cola extract
+50027,kolkhoz,a collective farm owned by the communist state
+50028,kolkhoznik,a member of a kolkhoz
+50029,komondor,Hungarian breed of large powerful shaggy-coated white dog; used also as guard dog
+50030,konini tree_fuchsia native_fuchsia Fuchsia_excorticata,erect deciduous shrub or tree to 10 feet with maroon flowers; New Zealand
+50031,kook odd_fellow odd_fish queer_bird queer_duck odd_man_out,someone regarded as eccentric or crazy and standing out from a group
+50032,kookaburra laughing_jackass Dacelo_gigas,Australian kingfisher having a loud cackling cry
+50033,kopek kopeck copeck,100 kopecks equal 1 ruble in Russia
+50034,kopiyka,100 kopiykas equal 1 hryvnia in Ukraine
+50035,kopje koppie,a small hill rising up from the African veld
+50036,koruna,the basic unit of money in Slovakia
+50037,koruna,the basic unit of money in Czech Republic
+50038,kos coss,(in India) a unit of length having different values in different localities
+50039,kosher,food that fulfills the requirements of Jewish dietary law
+50040,koto,Japanese stringed instrument that resembles a zither; has a rectangular wooden sounding board and usually 13 silk strings that are plucked with the fingers
+50041,koto_player,a musician who plays the koto
+50042,koumiss kumis,an alcoholic beverage made from fermented mare's milk; made originally by nomads of central Asia
+50043,kowhai Sophora_tetraptera,shrub or small tree of New Zealand and Chile having pendulous racemes of tubular golden-yellow flowers; yields a hard strong wood
+50044,kowtow kotow,a former Chinese custom of touching the ground with the forehead as a sign of respect or submission
+50045,kraal,a village of huts for native Africans in southern Africa; usually surrounded by a stockade
+50046,kraal,a pen for livestock in southern Africa
+50047,kraft kraft_paper,strong wrapping paper made from pulp processed with a sulfur solution
+50048,krait,brightly colored venomous but nonaggressive snake of southeastern Asia and Malay peninsula
+50049,kraurosis,atrophy and shriveling of the skin or mucous membrane
+50050,kraurosis_vulvae,kraurosis of the vulva; often a precancerous lesion
+50051,kremlin,citadel of a Russian town
+50052,krigia,any small branched yellow-flowered North American herb of the genus Krigia
+50053,krill,shrimp-like planktonic crustaceans; major source of food for e.g. baleen whales
+50054,kris creese crease,a Malayan dagger with a wavy blade
+50055,kroon,the basic unit of money in Estonia
+50056,krubi titan_arum Amorphophallus_titanum,malodorous tropical plant having a spathe that resembles the corolla of a morning glory and attains a diameter of several feet
+50057,krummhorn crumhorn cromorne,a Renaissance woodwind with a double reed and a curving tube (crooked horn)
+50058,krypton Kr atomic_number_36,a colorless element that is one of the six inert gasses; occurs in trace amounts in air
+50059,kudu koodoo koudou,either of two spiral-horned antelopes of the African bush
+50060,kudzu kudzu_vine Pueraria_lobata,fast-growing vine from eastern Asia having tuberous starchy roots and hairy trifoliate leaves and racemes of purple flowers followed by long hairy pods containing many seeds; grown for fodder and forage and root starch; widespread in the southern United States
+50061,kummel,liqueur flavored with caraway seed or cumin
+50062,kumquat,small oval citrus fruit with thin sweet rind and very acid pulp
+50063,kumquat cumquat kumquat_tree,any of several trees or shrubs of the genus Fortunella bearing small orange-colored edible fruits with thick sweet-flavored skin and sour pulp
+50064,kung_fu,a Chinese martial art
+50065,kunzite,a pinkish lilac crystal form of the mineral spodumene that is used as a gemstone
+50066,kurrajong currajong Brachychiton_populneus,widely distributed tree of eastern Australia yielding a tough durable fiber and soft light attractively grained wood; foliage is an important emergency food for cattle
+50067,kurta,a loose collarless shirt worn by many people on the Indian subcontinent (usually with a salwar or churidars or pyjama)
+50068,kuru,a progressive disease of the central nervous system marked by increasing lack of coordination and advancing to paralysis and death within a year of the appearance of symptoms; thought to have been transmitted by cannibalistic consumption of diseased brain tissue since the disease virtually disappeared when cannibalism was abandoned
+50069,kurus piaster piastre,100 kurus equal 1 lira in Turkey
+50070,kuvasz,long-established Hungarian breed of tall light-footed but sturdy white dog; used also as a hunting dog
+50071,kvass,fermented beverage resembling beer but made from rye or barley
+50072,kvetch,(Yiddish) a constant complainer
+50073,kvetch,(Yiddish) a nagging complaint
+50074,kwanza,the basic unit of money in Angola
+50075,kwashiorkor,severe malnutrition in children resulting from a diet excessively high in carbohydrates and low in protein
+50076,kwela,a kind of danceable music popular among black South Africans; includes a whistle among its instruments
+50077,kyanite cyanite,a grey or greenish-blue mineral consisting of aluminum silicate in crystalline form; occurs in metaphoric rock, used as a refractory
+50078,kyat,the basic unit of money in Myanmar
+50079,kylie kiley,an Australian boomerang; one side flat and the other convex
+50080,kylix cylix,a shallow drinking cup with two handles; used in ancient Greece
+50081,kymograph cymograph,scientific instrument consisting of a rotating drum holding paper on which a stylus traces a continuous record (as of breathing or blood pressure)
+50082,kyphosis humpback hunchback,an abnormal backward curve to the vertebral column
+50083,la lah,the syllable naming the sixth (submediant) note of a major or minor scale in solmization
+50084,laager lager,a camp defended by a circular formation of wagons
+50085,lab laboratory research_lab research_laboratory science_lab science_laboratory,a workplace for the conduct of scientific research
+50086,lab_bench laboratory_bench,a workbench in a laboratory
+50087,lab_coat laboratory_coat,a light coat worn to protect clothing from substances used while working in a laboratory
+50088,labdanum gum_labdanum,a dark brown to greenish oleoresin that has a fragrant odor and is used as a fixative in perfumes; obtained as a juice from certain rockroses
+50089,labdanum ladanum,a soft blackish-brown resinous exudate from various rockroses used in perfumes especially as a fixative
+50090,label,a radioactive isotope that is used in a compound in order to trace the mechanism of a chemical reaction
+50091,label,an identifying or descriptive marker that is attached to an object
+50092,label,a brief description given for purposes of identification; "the label modern is applied to many different kinds of architecture"
+50093,label recording_label,trade name of a company that produces musical recordings; "the artists and repertoire department of a recording label is responsible for finding new talent"
+50094,labetalol labetalol_hydrochloride Trandate Normodyne,antihypertensive drug (trade names Trandate and Normodyne) that blocks alpha and beta-adrenergic receptors of the sympathetic nervous system (leading to a decrease in blood pressure)
+50095,labia_majora,the two outer folds of the vulva
+50096,labia_minora,the two inner folds of the vulva
+50097,labial_artery arteria_labialis,an artery that is a branch of the facial artery that supplies the lips of the mouth
+50098,labial_consonant labial,a consonant whose articulation involves movement of the lips
+50099,labial_stop,a stop consonant that is produced with the lips
+50100,labial_vein vena_labialis,veins draining the lips of the vulva
+50101,labial_vein vena_labialis,a vein draining the lips of the mouth
+50102,labiodental_consonant labiodental,a consonant whose articulation involves the lips and teeth
+50103,labium,a liplike structure that bounds a bodily orifice (especially any of the four labiate folds of a woman's vulva)
+50104,labor labour toil,productive work (especially physical work done for wages); "his labor did not require a great deal of skill"
+50105,labor labour working_class proletariat,a social class comprising those who do manual labor or work for wages; "there is a shortage of skilled labor in this field"
+50106,labor_camp labour_camp,a penal institution for political prisoners who are used as forced labor
+50107,labor_coach birthing_coach doula monitrice,an assistant (often the father of the soon-to-be-born child) who provides support for a woman in labor by encouraging her to use techniques learned in childbirth-preparation classes
+50108,labor_contract labor_agreement collective_agreement,contract between labor and management governing wages and benefits and working conditions
+50109,labor_force labor_pool,the source of trained people from which workers can be hired
+50110,labor_leader,a leader of a labor movement
+50111,labor_market,the market in which workers compete for jobs and employers compete for workers
+50112,labor_movement trade_union_movement labor,an organized attempt by workers to improve their status by united action (particularly via labor unions) or the leaders of this movement
+50113,labor_of_love labour_of_love,productive work performed voluntarily without material reward or compensation
+50114,labor_pain,pain and discomfort associated with contractions of the uterus during labor
+50115,labor_party labour_party,a left-of-center political party formed to represent the interest of ordinary working people
+50116,labor_resources,resources of available manpower
+50117,laborer manual_laborer labourer jack,someone who works with their hands; someone engaged in manual labor
+50118,laboriousness operoseness toilsomeness,the quality of requiring extended effort
+50119,labyrinthine_artery artery_of_the_labyrinth internal_auditory_artery,an artery that is a branch of the basilar artery that supplies the labyrinth
+50120,labyrinthine_vein internal_auditory_vein,veins that drain the inner ear
+50121,labyrinthitis otitis_interna,inflammation of the inner ear; can cause vertigo and vomiting
+50122,labyrinthodont,an amphibian of the superorder Labyrinthodontia
+50123,lac,resinlike substance secreted by certain lac insects; used in e.g. varnishes and sealing wax
+50124,lac_dye,scarlet dye like cochineal; extracted with alkali from stick lac
+50125,lace,a delicate decorative fabric woven in an open web of symmetrical patterns
+50126,lace lacing,a cord that is drawn through eyelets or around hooks in order to draw together two edges (as of a shoe or garment)
+50127,lace-flower_vine Alsobia_dianthiflora Episcia_dianthiflora,low-growing creeping perennial of Central America having deeply fringed white flowers; sometimes placed in genus Episcia
+50128,lace_bug,small bug having body and wings covered with a lacy network of raised lines
+50129,lace_fern Cheilanthes_gracillima,small tufted fern of northwestern America
+50130,lace_making tatting,the act or art of making handmade lace
+50131,lacebark ribbonwood houhere Hoheria_populnea,small tree or shrub of New Zealand having a profusion of axillary clusters of honey-scented paper-white flowers and whose bark is used for cordage
+50132,lacer,a workman who laces shoes or footballs or books (during binding)
+50133,laceration,a torn ragged wound
+50134,laceration,the act of lacerating
+50135,lacertid_lizard lacertid,Old World terrestrial lizard
+50136,lacewing lacewing_fly,any of two families of insects with gauzy wings (Chrysopidae and Hemerobiidae); larvae feed on insect pests such as aphids
+50137,lacework,work consisting of (or resembling) lace fabric
+50138,lacing,a small amount of liquor added to a food or beverage
+50139,lack deficiency want,the state of needing something that is absent or unavailable; "there is a serious lack of insight into the problem"; "water is the critical deficiency in desert regions"; "for want of a nail the shoe was lost"
+50140,lackey flunky flunkey,a male servant (especially a footman)
+50141,laconism laconicism,terseness of expression
+50142,lacquer,a black resinous substance obtained from certain trees and used as a natural varnish
+50143,lacquer,a hard glossy coating
+50144,lacquerware,a decorative work made of wood and covered with lacquer and often inlaid with ivory or precious metals
+50145,lacrimal_apparatus,the structures that secrete and drain tears from the eye
+50146,lacrimal_artery arteria_lacrimalis,an artery that originates from the ophthalmic artery and supplies the lacrimal gland and rectal eye muscles and the upper eyelid and the forehead
+50147,lacrimal_bone,small fragile bone making up part of the front inner walls of each eye socket and providing room for the passage of the lacrimal ducts
+50148,lacrimal_duct lachrymal_duct tear_duct,any of several small ducts that carry tears from the lacrimal glands
+50149,lacrimal_gland lachrymal_gland tear_gland,any of the glands in the eyes that secrete tears
+50150,lacrimal_sac tear_sac dacryocyst,either of the two dilated ends of the lacrimal ducts at the nasal ends of the eyes that fill with tears secreted by the lacrimal glands
+50151,lacrimal_secretion lachrymal_secretion,saline fluid secreted by lacrimal glands; lubricates the surface of the eyeball
+50152,lacrimal_vein vena_lacrimalis,drains the lacrimal gland; empties into the superior ophthalmic vein
+50153,lacrimation lachrymation tearing watering,shedding tears
+50154,lacrosse,a game invented by American Indians; now played by two teams who use long-handled rackets to catch and carry and throw the ball toward the opponents' goal
+50155,lacrosse_ball,ball used in playing lacrosse
+50156,lacrosse_player,an athlete who plays lacrosse
+50157,lactalbumin,albumin occurring in milk
+50158,lactase Lactaid,any of a group of enzymes (trade name Lactaid) that hydrolyze lactose to glucose and galactose
+50159,lactate,a salt or ester of lactic acid
+50160,lactation,the period following birth during which milk is secreted; "lactation normally continues until weaning"
+50161,lactation,the production and secretion of milk by the mammary glands
+50162,lacteal,any of the lymphatic vessels that convey chyle from the small intestine to the thoracic duct
+50163,lactic_acid,a clear odorless hygroscopic syrupy carboxylic acid found in sour milk and in many fruits
+50164,lactiferous_duct,ducts of the mammary gland that carry milk to the nipple
+50165,lactifuge,any agent that reduces milk secretion (as given to a woman who is not breast feeding)
+50166,lactobacillus,a Gram-positive rod-shaped bacterium that produces lactic acid (especially in milk)
+50167,lactogen,any agent that enhances milk production
+50168,lactose milk_sugar,a sugar comprising one glucose molecule linked to a galactose molecule; occurs only in milk; "cow's milk contains about 4.7% lactose"
+50169,lactose_intolerance lactase_deficiency milk_intolerance,congenital disorder consisting of an inability to digest milk and milk products; absence or deficiency of lactase results in an inability to hydrolyze lactose
+50170,lactosuria,presence of lactose in the urine; can occur during pregnancy or lactation
+50171,lacuna blank,a blank gap or missing part
+50172,ladder,ascending stages by which somebody or something can progress; "he climbed the career ladder"
+50173,ladder,steps consisting of two parallel members connected by rungs; for climbing up or down
+50174,ladder-back,the backrest of a chair that consists of two uprights with connecting slats
+50175,ladder-back ladder-back_chair,a chair with a ladder-back
+50176,ladder_truck aerial_ladder_truck,a fire engine carrying ladders
+50177,ladies'_room powder_room,a woman's restroom in a public (or semipublic) building
+50178,ladies'_tobacco lady's_tobacco Antennaria_plantaginifolia,North American perennial propagated by means of runners
+50179,ladies'_tresses lady's_tresses,an orchid of the genus Spiranthes having slender often twisted spikes of white flowers
+50180,ladle,a spoon-shaped vessel with a long handle; frequently used to transfer liquids from one container to another
+50181,lady,a polite name for any woman; "a nice lady at the library helped me"
+50182,lady's-eardrop ladies'-eardrop lady's-eardrops ladies'-eardrops Fuchsia_coccinea,erect or climbing shrub of Brazil with deep pink to red flowers
+50183,lady's_maid,a maid who is a lady's personal attendant
+50184,lady's_slipper lady's-slipper lady-slipper lady_slipper ladies'_slipper slipper_orchid,any of several chiefly American wildflowers having an inflated pouchlike lip; difficult or impossible to cultivate in the garden
+50185,lady's_smock cuckooflower cuckoo_flower meadow_cress Cardamine_pratensis,a bitter cress of Europe and America
+50186,lady-in-waiting,a lady appointed to attend to a queen or princess
+50187,lady-of-the-night Brunfelsia_americana,West Indian shrub with fragrant showy yellowish-white flowers
+50188,lady_chapel,a small chapel in a church; dedicated to the Virgin Mary
+50189,lady_fern Athyrium_filix-femina,most widely grown fern of the genus Athyrium for its delicate foliage
+50190,lady_palm,any of several small palms of the genus Rhapis; cultivated as houseplants
+50191,lady_tulip candlestick_tulip Tulipa_clusiana,Eurasian tulip with small flowers blotched at the base
+50192,ladybug ladybeetle lady_beetle ladybird ladybird_beetle,small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests
+50193,ladyfinger,small finger-shaped sponge cake
+50194,ladyfish tenpounder Elops_saurus,game fish resembling the tarpon but smaller
+50195,ladylikeness,behavior befitting a lady
+50196,ladylove dulcinea,a woman who is a man's sweetheart
+50197,laelia,any of various spectacular plants of the genus Laelia having showy flowers in many colors
+50198,laetrile,a substance derived from amygdalin; publicized as an antineoplastic drug although there is no supporting evidence
+50199,lag_screw lag_bolt,a heavy woodscrew with a square or hexagonal head that is driven in with a wrench
+50200,lagan lagend ligan,goods (or wreckage) on the sea bed that is attached to a buoy so that it can be recovered
+50201,lager lager_beer,a general term for beer made with bottom fermenting yeast (usually by decoction mashing); originally it was brewed in March or April and matured until September
+50202,lagerphone,an Australian percussion instrument used for playing bush music; a long stick with bottle caps nailed loosely to it; played by hitting it with a stick or banging it on the ground
+50203,lagging,insulation used to wrap around pipes or boilers or laid in attics to prevent loss of heat
+50204,lagniappe,a small gift (especially one given by a merchant to a customer who makes a purchase)
+50205,lagomorph gnawing_mammal,relative large gnawing animals; distinguished from rodents by having two pairs of upper incisors specialized for gnawing
+50206,lagoon laguna lagune,a body of water cut off from a larger body by a reef of sand or coral
+50207,lagophthalmos,abnormal condition in which an eye cannot close completely
+50208,lahar,an avalanche of volcanic water and mud down the slopes of a volcano
+50209,laid_paper,writing paper having a watermark of fine lines running across the grain
+50210,lair den,the habitation of wild animals
+50211,laird,a landowner
+50212,laity temporalty,in Christianity, members of a religious community that do not have the priestly responsibilities of ordained clergy
+50213,lake,a purplish red pigment prepared from lac or cochineal
+50214,lake,any of numerous bright translucent organic pigments
+50215,lake,a body of (usually fresh) water surrounded by land
+50216,lake_bed lake_bottom,the bottom of a lake
+50217,lake_dwelling pile_dwelling,dwelling built on piles in or near a lake; specifically in prehistoric villages
+50218,lake_herring cisco,cold-water fish caught in Lake Superior and northward
+50219,lake_poets,English poets at the beginning of the 19th century who lived in the Lake District and were inspired by it
+50220,lake_trout,flesh of large trout of northern lakes
+50221,lake_trout salmon_trout Salvelinus_namaycush,large fork-tailed trout of lakes of Canada and the northern United States
+50222,lake_whitefish Coregonus_clupeaformis,found in the Great Lakes and north to Alaska
+50223,lakefront,land bordering a lake
+50224,lakeside lakeshore,the shore of a lake
+50225,lallation,defective articulation of the `l' phoneme or the phoneme `r' is pronounced as `l'
+50226,lally lally_column,support column consisting of a steel cylinder filled with concrete
+50227,lama,a Tibetan or Mongolian priest of Lamaism
+50228,lamasery,a monastery for lamas
+50229,lamb,a person easily deceived or cheated (especially in financial matters)
+50230,lamb,the flesh of a young domestic sheep eaten as food
+50231,lamb,young sheep
+50232,lamb dear,a sweet innocent mild-mannered person (especially a child)
+50233,lamb's-quarter pigweed wild_spinach,leaves collected from the wild
+50234,lamb's-quarters pigweed wild_spinach Chenopodium_album,common weedy European plant introduced into North America; often used as a potherb
+50235,lamb_chop lamb-chop lambchop,chop cut from a lamb
+50236,lamb_curry,curry made with lamb
+50237,lamb_roast roast_lamb,a cut of lamb suitable for roasting
+50238,lamb_succory dwarf_nipplewort Arnoseris_minima,small European herb with small yellow flowers
+50239,lambda,the 11th letter of the Greek alphabet
+50240,lambda,the craniometric point at the junction of the sagittal and lamboid sutures of the skull
+50241,lambda_particle lambda_hyperon,an electrically neutral baryon with isotopic spin 1
+50242,lambdacism,speech defect involving excessive use or unusual pronunciation of the phoneme `l'
+50243,lambert L,a cgs unit of illumination equal to the brightness of a perfectly diffusing surface that emits or reflects one lumen per square centimeter
+50244,lambkin,a very young lamb
+50245,lamboid_suture sutura_lamboidea,the suture between the occipital and parietal bones
+50246,lambrequin,a scarf that covers a knight's helmet
+50247,lambrequin,short and decorative hanging for a shelf edge or top of a window casing
+50248,lambskin,the skin of a lamb with the wool still on
+50249,lame,a fabric interwoven with threads of metal; "she wore a gold lame dress"
+50250,lame_duck,an elected official still in office but not slated to continue
+50251,lamedh,the 12th letter of the Hebrew alphabet
+50252,lamella,a thin membrane that is one of the calcified layers that form bones
+50253,lamella,thin plate
+50254,lamellar_mixture,a mixture in which substances occur in distinct layers
+50255,lamellate_placentation,with ovules on thin extensions of the placentae into a compound ovary
+50256,lamellicorn_beetle,beetle having antennae with hard platelike terminal segments
+50257,lameness,an imperfection or defectiveness; "a stylist noted for the lameness of his plots"
+50258,lameness limping gimp gimpiness gameness claudication,disability of walking due to crippling of the legs or feet
+50259,lament lamentation plaint wail,a cry of sorrow and grief; "their pitiful laments could be heard throughout the ward"
+50260,lamentation mourning,the passionate and demonstrative activity of expressing grief
+50261,lamina,a thin plate or layer (especially of bone or mineral)
+50262,lamina_arcus_vertebrae,lamina of the vertebral arch; the flattened posterior part of the vertebral arch from which the spinous process extends
+50263,laminar_flow,nonturbulent streamline flow in parallel layers (laminae)
+50264,laminar_flow_clean_room,a clean room free of all extraneous particles; used in fabricating microprocessors
+50265,laminate,a sheet of material made by bonding two or more sheets or layers
+50266,lamination,a layered structure
+50267,lamination,bonding thin sheets together
+50268,laminator,a person who makes laminates (especially plastic laminates)
+50269,laminectomy,surgical removal of the bony arches on one or more vertebrae
+50270,laminitis founder,inflammation of the laminated tissue that attaches the hoof to the foot of a horse
+50271,lamivudine 3TC,a nucleoside reverse transcriptase inhibitor that is very effective in combination with zidovudine in treating AIDS and HIV
+50272,lamp,a piece of furniture holding one or more electric light bulbs
+50273,lamp,an artificial source of visible illumination
+50274,lamp_chimney chimney,a glass flue surrounding the wick of an oil lamp
+50275,lamp_house lamphouse lamp_housing,housing that holds a lamp (as in a movie projector)
+50276,lamplight,light from a lamp
+50277,lamplighter,(when gas was used for streetlights) a person who lights and extinguishes streetlights
+50278,lampoon_artist,a cartoonist who draws parodies or satirical renditions of cultural or social or political situations
+50279,lamppost,a metal post supporting an outdoor lamp (such as a streetlight)
+50280,lamprey lamprey_eel lamper_eel,primitive eellike freshwater or anadromous cyclostome having round sucking mouth with a rasping tongue
+50281,lampshade lamp_shade shade,a protective ornamental covering for a lamp, used to screen a light bulb from direct view
+50282,lanai,a veranda or roofed patio often furnished and used as a living room
+50283,lance_corporal,an enlisted man in the marine corps ranking above a private first class and below a corporal
+50284,lancelet amphioxus,small translucent lancet-shaped burrowing marine animal; primitive forerunner of the vertebrates
+50285,lanceolate_leaf,a leaf shaped like a lance head; tapering to a point at each end
+50286,lanceolate_spleenwort Asplenium_billotii,a spleenwort of western Europe
+50287,lancer,(formerly) a cavalryman armed with a lance
+50288,lancers,a quadrille for 8 or 16 couples
+50289,lancet lance,a surgical knife with a pointed double-edged blade; used for punctures and small incisions
+50290,lancet_arch lancet,an acutely pointed Gothic arch, like a lance
+50291,lancet_window,a narrow window having a lancet arch and without tracery
+50292,lancetfish lancet_fish wolffish,large elongate scaleless oceanic fishes with sharp teeth and a long dorsal fin that resembles a sail
+50293,lancewood,durable straight-grained wood of the lacewood tree; used for building and cabinetwork and tools
+50294,lancewood lancewood_tree Oxandra_lanceolata,source of most of the lancewood of commerce
+50295,land,the land on which real estate is located; "he built the house on land leased from the city"
+50296,land dry_land earth ground solid_ground terra_firma,the solid part of the earth's surface; "the plane turned away from the sea and moved back over land"; "the earth shook for several minutes"; "he dropped the logs on the ground"
+50297,land ground soil,material in the top layer of the surface of the earth in which plants can grow (especially with reference to its quality or use); "the land had never been plowed"; "good agricultural soil"
+50298,land-office_business,very large and profitable volume of commercial activity
+50299,land_agent,a person who administers a landed estate
+50300,land_development,making an area of land more useful
+50301,land_grant,a grant of public land (as to a railway or college)
+50302,land_line landline,a telephone line that travels over terrestrial circuits; "a land line can be wire or fiber optics or microwave"
+50303,land_mine ground-emplaced_mine booby_trap,an explosive mine hidden underground; explodes when stepped on or driven over
+50304,land_office,a government office where business relating to public lands is transacted
+50305,land_reform,a redistribution of agricultural land (especially by government action)
+50306,land_resources,natural resources in the form of arable land
+50307,landau,a four-wheel covered carriage with a roof divided into two parts (front and back) that can be let down separately
+50308,landed_gentry squirearchy,the gentry who own land (considered as a class)
+50309,lander,a space vehicle that is designed to land on the moon or another planet
+50310,landfall,the seacoast first sighted on a voyage (or flight over water)
+50311,landfall,the first sighting of land from the sea after a voyage (or flight over water)
+50312,landfill,a low area that has been filled in
+50313,landgrave,a count who had jurisdiction over a large territory in medieval Germany
+50314,landholding,ownership of land; the state or fact of owning land
+50315,landholding,a holding in the form of land
+50316,landing,an intermediate platform in a staircase
+50317,landing,the act of coming down to the earth (or other surface); "the plane made a smooth landing"; "his landing on his feet was catlike"
+50318,landing,the act of coming to land after a voyage
+50319,landing landing_place,structure providing a place where boats can land people or goods
+50320,landing_approach,the approach to a landing field by an airplane
+50321,landing_craft,naval craft designed for putting ashore troops and equipment
+50322,landing_flap,a flap on the underside of the wing that is lowered to slow the plane for landing
+50323,landing_gear,an undercarriage that supports the weight of the plane when it is on the ground
+50324,landing_net,a bag-shaped fishnet on a long handle to take a captured fish from the water
+50325,landing_party,a part of a ship's company organized for special duties ashore
+50326,landing_skid,one of two parts of the landing gear of a helicopter
+50327,landing_stage,platform from which passengers and cargo can be (un)loaded
+50328,landlady,a landlord who is a woman
+50329,landler,music in triple time for dancing the landler
+50330,landler,a moderately slow Austrian country dance in triple time; involves spinning and clapping
+50331,landlocked_salmon lake_salmon,Atlantic salmon confined to lakes of New England and southeastern Canada
+50332,landlord,a landowner who leases to others
+50333,landlord's_lien,lien on a tenant's property for the satisfaction of unpaid rent or property damage; the landlord is given the status of a preferred creditor with regard to the tenant's property
+50334,landlubber landsman landman,a person who lives and works on land
+50335,landlubber lubber landsman,an inexperienced sailor; a sailor on the first voyage
+50336,landmark,the position of a prominent or well-known object in a particular landscape; "the church steeple provided a convenient landmark"
+50337,landmark,a mark showing the boundary of a piece of land
+50338,landmark,an anatomical structure used as a point of origin in locating other anatomical structures (as in surgery) or as point from which measurements can be taken
+50339,landmark turning_point watershed,an event marking a unique or important historical change of course or one on which important developments depend; "the agreement was a watershed in the history of both nations"
+50340,landmass land_mass,a large continuous extent of land
+50341,landowner landholder property_owner,a holder or proprietor of land
+50342,landscape,an expanse of scenery that can be seen in a single view
+50343,landscape,an extensive mental viewpoint; "the political landscape looks bleak without a change of administration"; "we changed the landscape for solving the problem of payroll inequity"
+50344,landscape,painting depicting an expanse of natural scenery
+50345,landscape landscape_painting,a genre of art dealing with the depiction of natural scenery
+50346,landscape_architect landscape_gardener landscaper landscapist,someone who arranges features of the landscape or garden attractively
+50347,landscape_architecture,the art, planning, design, management, preservation and rehabilitation of the land and the design of large man-made constructs
+50348,landscaping,a garden laid out for esthetic effect; "they spent a great deal of money on the landscaping"
+50349,landscaping landscape_gardening,working as a landscape gardener
+50350,landscapist,someone who paints landscapes
+50351,landside,component consisting of a side piece opposite the moldboard
+50352,landslide,an overwhelming electoral victory; "Roosevelt defeated Hoover in a landslide"
+50353,landslide landslip,a slide of a large mass of dirt and rock down a mountain or cliff
+50354,lane,a well-defined track or path; for e.g. swimmers or lines of traffic
+50355,lane,a narrow way or road
+50356,langbeinite,a mineral consisting of potassium magnesium double sulphate; used as a fertilizer
+50357,langlaufer,a cross-country skier
+50358,langley,unit of solar radiation
+50359,language linguistic_communication,a systematic means of communicating by the use of sounds or conventional symbols; "he taught foreign languages"; "the language introduced is standard throughout the text"; "the speed with which a program can be executed depends on the language in which it is written"
+50360,language speech,the mental faculty or power of vocal communication; "language sets homo sapiens apart from all other animals"
+50361,language_area language_zone,a large cortical area (in the left hemisphere in most people) containing all the centers associated with language
+50362,language_barrier,barrier to communication resulting from speaking different languages
+50363,language_learning,learning to use a language
+50364,language_lesson,a period of instruction learning a language
+50365,language_requirement,a requirement that a student know certain languages
+50366,language_school,a school for teaching foreign languages
+50367,language_system,a system of linguistic units or elements used in a particular language
+50368,language_teaching,teaching people to speak and understand a foreign language
+50369,language_unit linguistic_unit,one of the natural units into which linguistic messages can be analyzed
+50370,languisher,a person who languishes
+50371,languor,oppressively still air; "the afternoon was hot, quiet, and heavy with languor"; "Summer shows all the languor of a hot, breezeless day as the dancer lazily brushes her hand over her brow"
+50372,languor dreaminess,a relaxed comfortable feeling
+50373,languor lassitude listlessness,a feeling of lack of interest or energy
+50374,languor lethargy sluggishness phlegm flatness,inactivity; showing an unusual lack of energy; "the general appearance of sluggishness alarmed his friends"
+50375,langur,slender long-tailed monkey of Asia
+50376,lankiness,a tall and thin physique
+50377,lanolin,an emollient containing wool fat (a fatty substance obtained from the wool of sheep)
+50378,lanolin wool_fat wool_grease,a yellow viscous animal oil extracted from wool; a mixture of fatty acids and esters; used in some ointments and cosmetics
+50379,lanseh lansa lansat lanset,East Indian tart yellow berrylike fruit
+50380,lanseh_tree langsat langset Lansium_domesticum,East Indian tree bearing an edible yellow berry
+50381,lansoprazole Prevacid,antacid (trade name Prevacid) that suppresses acid secretion in the stomach
+50382,lantana,a flowering shrub
+50383,lantern,light in a transparent protective case
+50384,lantern_fly lantern-fly,large brightly marked tropical insect with a process like a snout that was formerly thought to emit light
+50385,lantern_jaw,a long thin lower jaw
+50386,lantern_pinion lantern_wheel,a small pinion having cylindrical bars instead of teeth, used chiefly in inexpensive clocks
+50387,lanternfish,small fish having rows of luminous organs along each side; some surface at night
+50388,lanthanide_series,the rare-earth elements with atomic numbers 57 through 71; having properties similar to lanthanum
+50389,lanthanum La atomic_number_57,a white soft metallic element that tarnishes readily; occurs in rare earth minerals and is usually classified as a rare earth
+50390,lanugo,the fine downy hair covering a human fetus; normally shed during the ninth month of gestation
+50391,lanyard laniard,a cord with an attached hook that is used to fire certain types of cannon
+50392,lanyard laniard,a cord worn around the neck to hold a knife or whistle
+50393,lanyard laniard,(nautical) a line used for extending or fastening rigging on ships
+50394,lap,an area of control or responsibility; "the job fell right in my lap"
+50395,lap,the upper side of the thighs of a seated person; "he picked up the little girl and plopped her down in his lap"
+50396,lap circle circuit,movement once around a course; "he drove an extra lap just for insurance"
+50397,lap lap_covering,the part of a piece of clothing that covers the thighs; "his lap was covered with food stains"
+50398,lap overlap,a flap that lies over another part; "the lap of the shingles should be at least ten inches"
+50399,lap_joint splice,joint made by overlapping two ends and joining them together
+50400,lap_of_luxury,in conditions of wealth and comfort; "he was raised in the lap of luxury"
+50401,lap_of_the_gods,beyond human control or responsibility; "there is nothing more I can do; it's in the lap of the gods now"
+50402,laparocele,hernia through the abdomen
+50403,laparoscope,a slender endoscope inserted through an incision in the abdominal wall in order to examine the abdominal organs or to perform minor surgery
+50404,laparoscopic_cholecystectomy lap_choly,removal of the gall bladder through small punctures in the abdomen to permit the insertion of a laparoscope and surgical instruments
+50405,laparoscopy,laparotomy performed with a laparoscope that makes a small incision to examine the abdominal cavity (especially the ovaries and Fallopian tubes)
+50406,laparotomy,surgical incision into the abdominal wall; often done to examine abdominal organs
+50407,lapboard,writing board used on the lap as a table or desk
+50408,lapdog,a dog small and tame enough to be held in the lap
+50409,lapel,lap at the front of a coat; continuation of the coat collar
+50410,lapful,the quantity that can be held in the lap
+50411,lapidary lapidarist,an expert on precious stones and the art of cutting and engraving them
+50412,lapidary lapidist,a skilled worker who cuts and engraves precious stones
+50413,lapin,castrated male rabbit
+50414,lapin rabbit,the fur of a rabbit
+50415,lapis_lazuli lazuli,an azure blue semiprecious stone
+50416,lappet,a small lap on a garment or headdress
+50417,lappet lappet_moth,medium-sized hairy moths; larvae are lappet caterpillars
+50418,lappet_caterpillar,larva of a lappet moth
+50419,lapse,a break or intermission in the occurrence of something; "a lapse of three weeks between letters"
+50420,laptop laptop_computer,a portable computer small enough to use in your lap
+50421,lapwing green_plover peewit pewit,large crested Old World plover having wattles and spurs
+50422,larboard port,the left side of a ship or aircraft to someone who is aboard and facing the bow or nose
+50423,larcenist larcener,a person who commits larceny
+50424,larceny theft thievery thieving stealing,the act of taking something from someone unlawfully; "the thieving is awful at Kennedy International"
+50425,larch,wood of a larch tree
+50426,larch larch_tree,any of numerous conifers of the genus Larix all having deciduous needlelike leaves
+50427,lard,soft white semisolid fat obtained by rendering the fatty tissue of the hog
+50428,lard_oil,oil consisting chiefly of olein that is expressed from lard and used especially as a lubricant, cutting oil or illuminant
+50429,larder,a supply of food especially for a household
+50430,large,a garment size for a large person
+50431,large-flowered_calamint Calamintha_grandiflora Clinopodium_grandiflorum Satureja_grandiflora,aromatic herb with large pink flowers; southern and southeastern Europe; Anatolia; northern Iran
+50432,large-flowered_fiddleneck Amsinckia_grandiflora,annual of the western United States having large coiled flower spikes; a threatened species
+50433,large-leaved_aster Aster_macrophyllus,tufted perennial wood aster of North America; naturalized in Europe
+50434,large-leaved_magnolia large-leaved_cucumber_tree great-leaved_macrophylla Magnolia_macrophylla,large deciduous shrub or tree of southeastern United States having huge leaves in dense false whorls and large creamy flowers tinged purple toward the base
+50435,large_cap,a corporation with a large capitalization; "he works for a large cap"
+50436,large_civet Viverra_zibetha,common civet of India and southeast Asia
+50437,large_crabgrass hairy_finger_grass Digitaria_sanguinalis,a European forage grass grown for hay; a naturalized weed in United States
+50438,large_indefinite_quantity large_indefinite_amount,an indefinite quantity that is above the average in size or magnitude
+50439,large_integer,an integer equal to or greater than ten
+50440,large_intestine,beginning with the cecum and ending with the rectum; includes the cecum and the colon and the rectum; extracts moisture from food residues which are later excreted as feces
+50441,large_periwinkle Vinca_major,plant having variegated foliage and used for window boxes
+50442,large_person,a person of greater than average size
+50443,large_poodle,the largest breed of poodle
+50444,large_white Pieris_brassicae,Old World form of cabbage butterfly
+50445,large_white_petunia Petunia_axillaris,annual herb having large nocturnally fragrant white flowers
+50446,large_yellow_lady's_slipper Cypripedium_calceolus_pubescens,plant of eastern and central North America having slightly fragrant purple-marked greenish-yellow flowers
+50447,largeleaf_holly,a holly tree
+50448,largemouth largemouth_bass largemouthed_bass largemouth_black_bass largemouthed_black_bass Micropterus_salmoides,a large black bass; the angle of the jaw falls behind the eye
+50449,largemouth_bass,flesh of largemouth bass
+50450,largeness bigness,the property of having a relatively great size
+50451,largeness extensiveness,large or extensive in breadth or importance or comprehensiveness; "the might have repercussions of unimaginable largeness"; "the very extensiveness of his power was a temptation to abuse it"
+50452,largess largesse,a gift or money given (as for service or out of benevolence); usually given ostentatiously
+50453,larghetto,(music) a composition or passage played in a slow tempo slightly faster than largo but slower than adagio
+50454,largo,(music) a composition or passage that is to be performed in a slow and dignified manner
+50455,lari,the basic unit of money in Georgia
+50456,larid,long-winged web-footed aquatic bird of the gull family
+50457,lark,any of numerous predominantly Old World birds noted for their singing
+50458,larkspur,any of numerous cultivated plants of the genus Delphinium
+50459,larva,the immature free-living form of most invertebrates and amphibians and fish which at hatching from the egg is fundamentally unlike its parent and must metamorphose
+50460,larvacean,any member of the class Larvacea
+50461,larvacide,an insecticide that kills the larvae of insects
+50462,larvicide,a chemical used to kill larval pests
+50463,laryngeal_artery arteria_laryngea,either of two arteries that supply blood to the larynx
+50464,laryngeal_vein vena_laryngea,one of two veins draining the larynx
+50465,laryngectomy,surgical removal of part or all of the larynx (usually to treat cancer of the larynx)
+50466,laryngismus,laryngeal spasm caused by the sudden contraction of laryngeal muscles
+50467,laryngitis,inflammation of the mucous membrane of the larynx; characterized by hoarseness or loss of voice and coughing
+50468,laryngopharyngitis,inflammation of the larynx and pharynx
+50469,laryngopharynx,the lower part of the pharynx
+50470,laryngoscope,a medical instrument for examining the larynx
+50471,laryngospasm,a closure of the larynx that blocks the passage of air to the lungs
+50472,laryngostenosis,abnormal narrowing of the larynx
+50473,laryngotracheobronchitis,inflammation of the larynx and trachea and bronchial passageways
+50474,larynx voice_box,a cartilaginous structure at the top of the trachea; contains elastic vocal cords that are the source of the vocal tone in speech
+50475,lasagna lasagne,baked dish of layers of lasagna pasta with sauce and cheese and meat or vegetables
+50476,lasagna lasagne,very wide flat strips of pasta
+50477,lascar,an East Indian sailor
+50478,laser optical_maser,an acronym for light amplification by stimulated emission of radiation; an optical device that produces an intense monochromatic beam of coherent light
+50479,laser-assisted_in_situ_keratomileusis LASIK,a refractive surgery procedure that reshapes the cornea
+50480,laser-assisted_subepithelial_keratomileusis LASEK E-LASIK,a refractive surgery procedure that reshapes the cornea
+50481,laser-guided_bomb LGB,a smart bomb that seeks the laser light reflected off of the target and uses it to correct its descent; "laser-guided bombs cannot be used in cloudy weather"
+50482,laser_beam,a beam of light generated by a laser
+50483,laser_printer,electrostatic printer that focuses a laser beam to form images that are transferred to paper electrostatically
+50484,laser_trabecular_surgery,eye surgery that makes many tiny laser burns in an area that will increase the drainage of aqueous humor
+50485,lash thong,leather strip that forms the flexible part of a whip
+50486,lash-up contrivance,any improvised arrangement for temporary use
+50487,lasher,a driver who urges the animals on with lashes of a whip
+50488,lashing,rope that is used for fastening something to something else; "the boats were held together by lashings"
+50489,lasiocampid lasiocampid_moth,medium-sized stout-bodied neutral-colored moths with comb-like antennae
+50490,lass lassie young_girl jeune_fille,a girl or young woman who is unmarried
+50491,lasso lariat riata reata,a long noosed rope used to catch animals
+50492,last,the last or lowest in an ordering or series; "he was the last to leave"; "he finished an inglorious last"
+50493,last,a unit of weight equal to 4,000 pounds
+50494,last,a unit of capacity for grain equal to 80 bushels
+50495,last,a person's dying act; the final thing a person can do; "he breathed his last"
+50496,last shoemaker's_last cobbler's_last,holding device shaped like a human foot that is used to fashion or repair shoes
+50497,last_gasp,the point of death or exhaustion or completion; "the last gasp of the cold war"
+50498,last_in_first_out LIFO,inventory accounting in which the most recently acquired items are assumed to be the first sold
+50499,last_laugh,ultimate success achieved after a near failure (inspired by the saying `he laughs best who laughs last'); "we had the last laugh after the votes were counted"
+50500,last_mile,the last walk of a condemned person to the execution place
+50501,last_quarter,the last fourth of the Moon's period of revolution around the Earth
+50502,last_respects,the act of expressing respect for someone who has died; "he paid his last respects by standing quietly at the graveside"
+50503,last_rites,rites performed in connection with a death or burial
+50504,last_straw,the final irritation that stretches your patience beyond the limit
+50505,last_word,the final statement in a verbal argument; "she always gets the last word"
+50506,last_word,an authoritative statement; "my doctor has the last word on the medicines I take"
+50507,lastingness durability enduringness strength,permanence by virtue of the power to resist stress or force; "they advertised the durability of their products"
+50508,latakia,aromatic Turkish tobacco
+50509,latanier latanier_palm,fan palms of the southern United States and the Caribbean region
+50510,latch,catch for fastening a door or gate; a bar that can be lowered or slid into a groove
+50511,latch door_latch,spring-loaded doorlock that can only be opened from the outside with a key
+50512,latchet,a leather strap or thong used to attach a sandal or shoe to the foot
+50513,latchkey,key for raising or drawing back a latch or opening an outside door
+50514,latchkey_child,a school-age child who is home without adult supervision for part of the day (especially after school until a parent returns home from work)
+50515,latchstring,opener consisting of a string that can be passed through a hole in a door for raising the latch from outside
+50516,late-night_hour,the latter part of night
+50517,late_blight,blight in which symptoms appear late in the growing season especially a disease of solanaceous plants caused by the fungus Phytophthora infestans
+50518,late_purple_aster,a variety of aster
+50519,latecomer,someone who arrives late
+50520,lateen lateen_sail,a triangular fore-and-aft sail used especially in the Mediterranean
+50521,lateen-rig,the rig on a lateen-rigged sailing vessel
+50522,latency,the state of being not yet evident or active
+50523,latency_stage latency_phase latency_period,(psychoanalysis) the fourth period (from about age 5 or 6 until puberty) during which sexual interests are supposed to be sublimated into other activities
+50524,lateness,quality of coming late or later in time
+50525,latent_content,(psychoanalysis) hidden meaning of a fantasy or dream
+50526,latent_diabetes chemical_diabetes,a mild form of diabetes mellitus in which there are no overt symptoms but there are abnormal responses to some diagnostic procedures
+50527,latent_heat heat_of_transformation,heat absorbed or radiated during a change of phase at a constant temperature and pressure
+50528,latent_hostility tension,feelings of hostility that are not manifest; "he could sense her latent hostility to him"; "the diplomats' first concern was to reduce international tensions"
+50529,latent_period,the time that elapses before the presence of a disease is manifested by symptoms
+50530,lateral_condyle,a condyle on the outer side of the lower extremity of the femur
+50531,lateral_epicondyle,epicondyle near the lateral condyle of the femur
+50532,lateral_geniculate_body corpus_geniculatum_laterale lateral_geniculate,a neural structure that serves as a processing station on the way from the retina to the occipital lobe of the cerebral cortex
+50533,lateral_line lateral_line_organ,sense organs of fish and amphibians; believed to detect pressure changes in the water
+50534,lateral_pass lateral,a pass to a receiver upfield from the passer
+50535,lateral_thinking,a heuristic for solving problems; you try to look at the problem from many angles instead of tackling it head-on
+50536,lateral_ventricle,either of two horseshoe-shaped ventricles one in each cerebral hemisphere; they communicate with the third ventricle via the foramen of Monro
+50537,laterality dominance,superior development of one side of the body
+50538,lateralization lateralisation laterality,localization of function on either the right or left sides of the brain
+50539,laterite,a red soil produced by rock decay; contains insoluble deposits of ferric and aluminum oxides
+50540,latest,the most recent news or development; "have you heard the latest?"
+50541,latex,a milky exudate from certain plants that coagulates on exposure to air
+50542,latex_paint latex rubber-base_paint,a water-base paint that has a latex binder
+50543,lath,a narrow thin strip of wood used as backing for plaster or to make latticework
+50544,lath_and_plaster,a building material consisting of thin strips of wood that provide a foundation for a coat of plaster
+50545,lathe,machine tool for shaping metal or wood; the workpiece turns about a horizontal axis against a fixed tool
+50546,lather,a workman who puts up laths
+50547,lather,the foam resulting from excessive sweating (as on a horse)
+50548,lathi lathee,club consisting of a heavy stick (often bamboo) bound with iron; used by police in India
+50549,laticifer,a plant duct containing latex
+50550,latissimus_dorsi lat,a broad flat muscle on either side of the back
+50551,latitude,freedom from normal restraints in conduct; "the new freedom in movies and novels"; "allowed his children considerable latitude in how they spent their money"
+50552,latitude,the angular distance between an imaginary line around a heavenly body parallel to its equator and the equator itself
+50553,latitude,scope for freedom of e.g. action or thought; freedom from restriction
+50554,latitude line_of_latitude parallel_of_latitude parallel,an imaginary line around the Earth parallel to the equator
+50555,latitudinarian,a person who is broad-minded and tolerant (especially in standards of religious belief and conduct)
+50556,latrine,a public toilet in a military area
+50557,lats,the basic unit of money in Latvia
+50558,latten,brass (or a yellow alloy resembling brass) that was hammered into thin sheets; formerly used for church utensils
+50559,latter,the second of two or the second mentioned of two; "Tom and Dick were both heroes but only the latter is remembered today"
+50560,lattice,an arrangement of points or particles or objects in a regular periodic pattern in 2 or 3 dimensions
+50561,lattice latticework fretwork,framework consisting of an ornamental design made of strips of wood or metal
+50562,laudanum tincture_of_opium,narcotic consisting of an alcohol solution of opium or any preparation in which opium is the main ingredient
+50563,laudator lauder extoller,someone who communicates high praise
+50564,laugh,a facial expression characteristic of a person laughing; "his face wrinkled in a silent laugh of derision"
+50565,laugh laughter,the sound of laughing
+50566,laugh_track,prerecorded laughter added to the soundtrack of a radio or television show
+50567,laugher,a person who is laughing or who laughs easily
+50568,laughing_gull blackcap pewit pewit_gull Larus_ridibundus,small black-headed European gull
+50569,laughing_owl laughing_jackass Sceloglaux_albifacies,almost extinct owl of New Zealand
+50570,laughter,the activity of laughing; the manifestation of joy or mirth or scorn; "he enjoyed the laughter of the crowd"
+50571,launch,a motorboat with an open deck or a half deck
+50572,launcher rocket_launcher,armament in the form of a device capable of launching a rocket
+50573,launching,the act of moving a newly built vessel into the water for the first time
+50574,launching launch,the act of propelling with force
+50575,launching_pad launchpad launch_pad launch_area pad,a platform from which rockets or space craft are launched
+50576,launching_site,a place for launching pads
+50577,launderette Laundromat,a self-service laundry (service mark Laundromat) where coin-operated washing machines are available to individual customers
+50578,laundering,washing clothes and bed linens
+50579,laundry,workplace where clothes are washed and ironed
+50580,laundry wash washing washables,garments or white goods that can be cleaned by laundering
+50581,laundry_cart,handcart for moving a load of laundry
+50582,laundry_detergent,any of various detergents designed for use in a washing machine for clothing
+50583,laundry_truck,van that picks up and delivers laundry; "a laundry truck stops by every week"
+50584,laureate,someone honored for great achievements; figuratively someone crowned with a laurel wreath
+50585,laurel,any of various aromatic trees of the laurel family
+50586,laurel laurel_wreath bay_wreath,(antiquity) a wreath of laurel foliage worn on the head as an emblem of victory
+50587,laurel-tree red_bay Persea_borbonia,small tree of southern United States having dark red heartwood
+50588,laurel_oak pin_oak Quercus_laurifolia,large nearly semi-evergreen oak of southeastern United States; thrives in damp soil
+50589,laurel_sumac Malosma_laurina Rhus_laurina,small aromatic evergreen shrub of California having paniculate leaves and whitish berries; in some classifications included in genus Rhus
+50590,laurelwood lancewood_tree Calophyllum_candidissimum,tropical American tree; valued for its hard durable wood
+50591,lauric_acid dodecanoic_acid,a crystalline fatty acid occurring as glycerides in natural fats and oils (especially coconut oil and palm-kernel oil)
+50592,lauryl_alcohol 1-dodecanol,a colorless insoluble solid alcohol used to make detergents and pharmaceuticals
+50593,lava,rock that in its molten form (as magma) issues from volcanos; lava is what magma is called when it reaches the surface
+50594,lavage,washing out a hollow organ (especially the stomach) by flushing with water
+50595,lavalava,a skirt consisting of a rectangle of calico or printed cotton; worn by Polynesians (especially Samoans)
+50596,lavaliere lavalier lavalliere,jeweled pendant worn on a chain around the neck
+50597,lavender,any of various Old World aromatic shrubs or subshrubs with usually mauve or blue flowers; widely cultivated
+50598,lavender,a pale purple color
+50599,lavender_cotton Santolina_chamaecyparissus,branching aromatic Mediterranean shrub with woolly stems and leaves and yellow flowers
+50600,laver,(Old Testament) large basin used by a priest in an ancient Jewish temple to perform ritual ablutions
+50601,lavishness luxury sumptuosity sumptuousness,the quality possessed by something that is excessively expensive
+50602,law,legal document setting forth rules governing a particular kind of activity; "there is a law against kidnapping"
+50603,law jurisprudence,the collection of rules imposed by authority; "civilization presupposes respect for the law"; "the great problem for jurisprudence to allow freedom while enforcing order"
+50604,law law_of_nature,a generalization that describes recurring facts or events in nature; "the laws of thermodynamics"
+50605,law natural_law,a rule or body of rules of conduct inherent in human nature and essential to or binding upon human society
+50606,law practice_of_law,the learned profession that is mastered by graduate study in a law school and that is responsible for the judicial system; "he studied law at Yale"
+50607,law_agent,a solicitor in Scotland
+50608,law_degree,degree conferred on someone who successfully completes law school
+50609,law_enforcement,ensuring obedience to the laws
+50610,law_enforcement_agency,an agency responsible for insuring obedience to the laws
+50611,law_firm,a firm of lawyers
+50612,law_of_averages,a law affirming that in the long run probabilities will determine performance
+50613,law_of_constant_proportion law_of_definite_proportions,(chemistry) law stating that every pure substance always contains the same elements combined in the same proportions by weight
+50614,law_of_diminishing_returns,a law affirming that to continue after a certain level of performance has been reached will result in a decline in effectiveness
+50615,law_of_effect,(psychology) the principle that behaviors are selected by their consequences; behavior having good consequences tends to be repeated whereas behavior that leads to bad consequences is not repeated
+50616,law_of_equivalent_proportions law_of_reciprocal_proportions,(chemistry) law stating that the proportions in which two elements separately combine with a third element are also the proportions in which they combine together
+50617,law_of_gravitation Newton's_law_of_gravitation,(physics) the law that states any two bodies attract each other with a force that is directly proportional to the product of their masses and inversely proportional to the square of the distance between them
+50618,law_of_independent_assortment,each member of a pair of homologous chromosomes separates independently of the members of other pairs so the results are random
+50619,law_of_mass_action,(chemistry) the law that states the following principle: the rate of a chemical reaction is directly proportional to the molecular concentrations of the reacting substances
+50620,law_of_multiple_proportions Dalton's_law,(chemistry) law stating that when two elements can combine to form more than one compound the amounts of one of them that combines with a fixed amount of the other will exhibit a simple multiple relation
+50621,law_of_segregation,members of a pair of homologous chromosomes separate during the formation of gametes and are distributed to different gametes so that every gamete receives only one member of the pair
+50622,law_of_the_land,a phrase used in the Magna Carta to refer to the then established law of the kingdom (as distinct from Roman or civil law); today it refers to fundamental principles of justice commensurate with due process; "the United States Constitution declares itself to be `the supreme law of the land'"
+50623,law_of_thermodynamics,(physics) a law governing the relations between states of energy in a closed system
+50624,law_practice,the practice of law
+50625,law_school school_of_law,a graduate school offering study leading to a law degree
+50626,law_student,a student in law school
+50627,lawfulness,the quality of conforming to law
+50628,lawgiver lawmaker,a maker of laws; someone who gives a code of laws
+50629,lawlessness outlawry,illegality as a consequence of unlawful acts; defiance of the law
+50630,lawman law_officer peace_officer,an officer of the law
+50631,lawn,a field of cultivated and mowed grass
+50632,lawn_bowling bowls,a bowling game played on a level lawn with biased wooden balls that are rolled at a jack
+50633,lawn_chair garden_chair,chair left outside for use on a lawn or in a garden
+50634,lawn_furniture,furniture intended for use on a lawn or in a garden
+50635,lawn_mower mower,garden tool for mowing grass on lawns
+50636,lawrencium Lr atomic_number_103,a radioactive transuranic element synthesized from californium
+50637,lawsuit suit case cause causa,a comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy; "the family brought suit against the landlord"
+50638,lawyer attorney,a professional person authorized to practice law; conducts lawsuits or gives legal advice
+50639,lawyer-client_relation attorney-client_relation,the responsibility of a lawyer to act in the best interests of the client
+50640,lawyer_cane Calamus_australis,tall scrambling spiny palm of northeastern Queensland, Australia
+50641,lawyerbush lawyer_bush bush_lawyer Rubus_cissoides Rubus_australis,stout-stemmed trailing shrub of New Zealand that scrambles over other growth
+50642,laxative,a mild cathartic
+50643,laxness laxity,the condition of being physiologically lax; "baths can help the laxness of the bowels"
+50644,laxness laxity remissness slackness,the quality of being lax and neglectful
+50645,lay-up layup,a basketball shot made with one hand from a position under or beside the basket (and usually banked off the backboard)
+50646,lay_figure,dummy in the form of an artist's jointed model of the human body
+50647,lay_reader,a layman who is authorized by the bishop to read parts of the service in an Anglican or Episcopal church
+50648,lay_witness,any witness who does not testify as an expert witness
+50649,layer,a relatively thin sheetlike expanse or region lying over or under another
+50650,layer,a hen that lays eggs
+50651,layer,thin structure composed of a single thickness of cells
+50652,layer bed,single thickness of usually some homogeneous substance; "slices of hard-boiled egg on a bed of spinach"
+50653,layer_cake,cake having layers held together by a sweet filling and usually covered with frosting
+50654,layette,kit consisting of a complete outfit (clothing and accessories) for a new baby
+50655,laying egg_laying,the production of eggs (especially in birds)
+50656,laying_on,the act of contacting something with your hand; "peonies can be blighted by the laying on of a finger"
+50657,laying_on_of_hands,the application of a faith healer's hands to the patient's body
+50658,laying_on_of_hands,laying hands on a person's head to invoke spiritual blessing in Christian ordination
+50659,laying_waste ruin ruining ruination wrecking,destruction achieved by causing something to be wrecked or ruined
+50660,layman layperson secular,someone who is not a clergyman or a professional person
+50661,layoff,the act of laying off an employee or a work force
+50662,layout,a plan or design of something that is laid out
+50663,layout,the act of laying out (as by making plans for something)
+50664,lazaretto lazaret lazarette lazar_house pesthouse,hospital for persons with infectious diseases (especially leprosy)
+50665,laziness,relaxed and easy activity; "the laziness of the day helped her to relax"
+50666,lazy_daisy_stitch,long chain stitches arranged in flower patterns
+50667,lazybones,a lazy person
+50668,le_Carre John_le_Carre David_John_Moore_Cornwell,English writer of novels of espionage (born in 1931)
+50669,le_Chatelier Henry_le_Chatelier,French chemist who formulated Le Chatelier's principle (1850-1936)
+50670,lea,a unit of length of thread or yarn
+50671,leach leaching,the process of leaching
+50672,lead,the angle between the direction a gun is aimed and the position of a moving target (correcting for the flight time of the missile)
+50673,lead,(sports) the score by which a team or individual is winning
+50674,lead,(baseball) the position taken by a base runner preparing to advance to the next base; "he took a long lead off first"
+50675,lead,an advantage held by a competitor in a race; "he took the lead at the last turn"
+50676,lead,a position of being the initiator of something and an example that others will follow (especially in the phrase `take the lead'); "he takes the lead in any group"; "we were just waiting for someone to take the lead"; "they didn't follow our lead"
+50677,lead,the playing of a card to start a trick in bridge; "the lead was in the dummy"
+50678,lead Pb atomic_number_82,a soft heavy toxic malleable metallic element; bluish white when freshly cut but tarnishes readily to dull grey; "the children were playing with lead soldiers"
+50679,lead lead-in lede,the introductory section of a story; "it was an amusing lead-in to a very serious matter"
+50680,lead lead_story,a news story of major importance
+50681,lead leading,thin strip of metal used to separate lines of type in printing
+50682,lead pencil_lead,mixture of graphite with clay in different degrees of hardness; the marking substance in a pencil
+50683,lead track trail,evidence pointing to a possible solution; "the police are following a promising lead"; "the trail led straight to the perpetrator"
+50684,lead-acid_battery lead-acid_accumulator,a battery with lead electrodes with dilute sulphuric acid as the electrolyte; each cell generates about 2 volts
+50685,lead-in,wire connecting an antenna to a receiver or a transmitter to a transmission line
+50686,lead_acetate sugar_of_lead,a poisonous white solid (Pb[CH3CO]2) used in dyeing cotton and in making enamels and varnishes
+50687,lead_arsenate,a poisonous white solid (Pb3[AsO4]2) used as an insecticide
+50688,lead_bank agent_bank,a bank named by a lending syndicate of several banks to protect their interests
+50689,lead_chromate,a poisonous chromate of lead used as a pigment in paint
+50690,lead_colic painter's_colic,symptom of chronic lead poisoning and associated with obstinate constipation
+50691,lead_glass,glass containing lead oxide; has a high refractive index
+50692,lead_line sounding_line,(nautical) plumb line for determining depth
+50693,lead_ore,ore containing lead
+50694,lead_pencil,pencil that has graphite as the marking substance
+50695,lead_poisoning plumbism saturnism,toxic condition produced by the absorption of excessive lead into the system
+50696,lead_sheet,a sheet containing the words and melody for a song (and some indication of harmony) written in simple form
+50697,lead_time,the time interval between the initiation and the completion of a production process; "the lead times for many publications can vary tremendously"; "planning is an area where lead time can be reduced"
+50698,lead_tree white_popinac Leucaena_glauca Leucaena_leucocephala,low scrubby tree of tropical and subtropical North America having white flowers tinged with yellow resembling mimosa and long flattened pods
+50699,leaded_bronze,bronze to which 1-4% lead is added
+50700,leaded_gasoline leaded_petrol,gasoline treated with a lead compound to reduce motor knocks; "combustion of leaded gasoline released lead into the air where it could cause lead poisoning"
+50701,leader,a person who rules or guides or inspires others
+50702,leadership,the status of a leader; "they challenged his leadership of the union"
+50703,leadership,the ability to lead; "he believed that leadership can be taught"
+50704,leadership leaders,the body of people who lead a group; "the national leadership adopted his plan"
+50705,leadership leading,the activity of leading; "his leadership inspired the team"
+50706,leading_astray leading_off,the act of enticing others into sinful ways
+50707,leading_edge,forward edge of an airfoil
+50708,leading_indicator,one of 11 indicators for different sections of the economy; used by the Department of Commerce to predict economic trends in the near future
+50709,leading_lady,actress who plays the leading female role
+50710,leading_man,actor who plays the leading male role
+50711,leading_question,a question phrased in such a way as to suggest the desired answer; a lawyer may ask leading questions on cross-examination
+50712,leading_rein,rein to direct the horse's head left or right
+50713,leadplant lead_plant Amorpha_canescens,shrub of sandy woodlands and stream banks of western United States having hoary pinnate flowers and dull-colored racemose flowers; thought to indicate the presence of lead ore
+50714,leadwort Plumbago_europaea,a plant of the genus Plumbago with blue flowers
+50715,leaf,hinged or detachable flat section (as of a table or door)
+50716,leaf folio,a sheet of any written or printed material (especially in a manuscript or book)
+50717,leaf leafage foliage,the main organ of photosynthesis and transpiration in higher plants
+50718,leaf-cutting_bee leaf-cutter leaf-cutter_bee,bee that cuts rounded pieces from leaves and flowers to line its nest
+50719,leaf-footed_bug leaf-foot_bug,large sap-sucking bug with leaflike expansions on the legs
+50720,leaf-nosed_snake,any of various pale blotched snakes with a blunt snout of southwestern North America
+50721,leaf_beetle chrysomelid,brightly colored beetle that feeds on plant leaves; larvae infest roots and stems
+50722,leaf_blight,any blight causing a browning and falling of the leaves of a plant
+50723,leaf_bud,a bud from which leaves (but not flowers) develop
+50724,leaf_bug plant_bug,small bright-colored insect that feeds on plant juices
+50725,leaf_disease,any plant disease localized in the foliage
+50726,leaf_fat leaf_lard,fat lining the abdomen and kidneys in hogs which is used to make lard
+50727,leaf_lettuce Lactuca_sativa_crispa,distinguished by leaves having curled or incised leaves forming a loose rosette that does not develop into a compact head
+50728,leaf_lettuce loose-leaf_lettuce,lettuce with loosely curled leaves that do not form a compact head
+50729,leaf_miner leaf-miner,any of various small moths or dipterous flies whose larvae burrow into and feed on leaf tissue especially of the family Gracilariidae
+50730,leaf_mold leaf_mould leaf_soil,soil composed mainly of decaying leaves
+50731,leaf_roller leaf-roller,moth whose larvae form nests by rolling and tying leaves with spun silk
+50732,leaf_scorch,plant disease causing a burned or scorched appearance of the foliage
+50733,leaf_shape leaf_form,any of the various shape that leaves of plants can assume
+50734,leaf_spring,long narrow spring consisting of several layers of metal springs bracketed together
+50735,leafhopper,small leaping insect that sucks the juices of plants
+50736,leaflet,part of a compound leaf
+50737,leafnose_bat leaf-nosed_bat,bat having a leaflike flap at the end of the nose; especially of the families Phyllostomatidae and Rhinolophidae and Hipposideridae
+50738,leafy_liverwort scale_moss,moss-like liverwort with tiny scalelike leaves; usually epiphytic
+50739,leafy_spurge wolf's_milk Euphorbia_esula,tall European perennial naturalized and troublesome as a weed in eastern North America
+50740,league,an obsolete unit of distance of variable length (usually 3 miles)
+50741,league,an association of states or organizations or individuals for common action
+50742,league conference,an association of sports teams that organizes matches for its members
+50743,leak,soft watery rot in fruits and vegetables caused by fungi
+50744,leak,an accidental hole that allows something (fluid or light etc.) to enter or escape; "one of the tires developed a leak"
+50745,leak news_leak,unauthorized (especially deliberate) disclosure of confidential information
+50746,leak wetting making_water passing_water,a euphemism for urination; "he had to take a leak"
+50747,leak_fungus ring_rot_fungus Rhizopus_stolonifer,fungus causing soft watery rot in fruits and vegetables and rings of dry rot around roots of sweet potatoes
+50748,leaker,a surreptitious informant; "the president wanted to know who the leakers were"
+50749,leakiness,the condition of permitting leaks or leakage; "the leakiness of the roof"; "the heart valve's leakiness"; "the leakiness of the boat made it dangerous to use"
+50750,lean-to,rough shelter whose roof has only one slope
+50751,lean-to_tent,tent that is attached to the side of a building
+50752,leaner,(horseshoes) the throw of a horseshoe so as to lean against (but not encircle) the stake
+50753,leaning,the act of deviating from a vertical position
+50754,leaning propensity tendency,an inclination to do something; "he felt leanings toward frivolity"
+50755,leanness thinness spareness,the property of having little body fat
+50756,leap,the distance leaped (or to be leaped); "a leap of 10 feet"
+50757,leap jump saltation,an abrupt transition; "a successful leap from college to the major leagues"
+50758,leap leaping spring saltation bound bounce,a light, self-propelled movement upwards or forwards
+50759,leap_day bissextile_day February_29,the name of the day that is added during a leap year
+50760,leap_second,a second (as measured by an atomic clock) added to or subtracted from Greenwich Mean Time in order to compensate for slowing in the Earth's rotation
+50761,leap_year intercalary_year 366_days bissextile_year,a calendar year with an extra day added in February
+50762,leapfrog,advancing as if in the child's game, by leaping over obstacles or competitors; "the company still believes the chip is a leapfrog in integration and will pay huge dividends"
+50763,leapfrog,a game in which one child bends down and another leaps over
+50764,learned_profession,one of the three professions traditionally believed to require advanced learning and high principles
+50765,learned_reaction learned_response,a reaction that has been acquired by learning
+50766,learner scholar assimilator,someone (especially a child) who learns (as from a teacher) or takes up knowledge or beliefs
+50767,learner's_dictionary school_dictionary,a dictionary specially written for those learning a foreign language
+50768,learner's_permit,a document authorizing the bearer to learn to drive an automobile
+50769,learning acquisition,the cognitive process of acquiring skill or knowledge; "the child's acquisition of language"
+50770,learning_curve,a graph showing the rate of learning (especially a graph showing the amount recalled as a function of the number of attempts to recall)
+50771,learning_disorder learning_disability,a disorder found in children of normal intelligence who have difficulties in learning specific skills
+50772,lease,a contract granting use or occupation of property during a specified time for a specified payment
+50773,lease rental letting,property that is leased or rented out or let
+50774,lease term_of_a_contract,the period of time during which a contract conveying property to a person is in effect
+50775,leasehold,land or property held under a lease
+50776,leaseholder lessee,a tenant who holds a lease
+50777,leash tether lead,restraint consisting of a rope (or light chain) used to restrain an animal
+50778,least,something that is of no importance; "it is the least I can do"; "that is the least of my concerns"
+50779,least_bittern Ixobrychus_exilis,small American bittern
+50780,least_effort least_resistance,the least effortful way to do something
+50781,least_sandpiper stint Erolia_minutilla,smallest American sandpiper
+50782,least_shrew Cryptotis_parva,small brown shrew of grassy regions of eastern United States
+50783,least_squares method_of_least_squares,a method of fitting a curve to data points so as to minimize the sum of the squares of the distances of the points from the curve
+50784,leather,an animal skin made smooth and flexible by removing the hair and then tanning
+50785,leather_carp,scaleless domestic carp
+50786,leather_fern leatherleaf_fern ten-day_fern Rumohra_adiantiformis Polystichum_adiantiformis,widely distributed fern of tropical southern hemisphere having leathery pinnatifid fronds
+50787,leather_flower Clematis_versicolor,woody vine of the southern United States having purple or blue flowers with leathery recurved sepals
+50788,leather_flower vase-fine vase_vine Clematis_viorna,scandent subshrub of southeastern United States having large red-purple bell-shaped flowers with leathery recurved sepals
+50789,leather_strip,implement consisting of a strip of leather
+50790,leatherback_turtle leatherback leathery_turtle Dermochelys_coriacea,wide-ranging marine turtle with flexible leathery carapace; largest living turtle
+50791,leatherette imitation_leather,fabric made to look like leather
+50792,leatherjacket,tough-skinned larva of certain crane flies
+50793,leatherjacket leatherfish,any of several brightly colored tropical filefishes
+50794,leatherjacket leatherjack,any of several New World tropical fishes having tiny embedded scales
+50795,leatherleaf Chamaedaphne_calyculata,north temperate bog shrub with evergreen leathery leaves and small white cylindrical flowers
+50796,leatherleaf leathery_polypody coast_polypody Polypodium_scouleri,stiff leathery-leaved fern of western North America having ovate fronds parted to the midrib
+50797,leatherleaf_saxifrage Leptarrhena_pyrolifolia,plant with basal leathery elliptic leaves and erect leafless flower stalks each bearing a dense roundish cluster of tiny white flowers; moist places of northwestern North America to Oregon and Idaho
+50798,leatherwood moosewood moose-wood wicopy ropebark Dirca_palustris,deciduous shrub of eastern North America having tough flexible branches and pliable bark and small yellow flowers
+50799,leatherwork,work made of leather
+50800,leathery_grape_fern Botrychium_multifidum,European fern with leathery and sparsely hairy fronds
+50801,leave,permission to do something; "she was granted leave to speak"
+50802,leave leave_of_absence,the period of time during which you are absent from work or duty; "a ten day's leave to visit his mother"
+50803,leaven leavening,a substance used to produce fermentation in dough or a liquid
+50804,leaven leavening,an influence that works subtly to lighten or modify something; "his sermons benefited from a leavening of humor"
+50805,lecanopteris,any of several bizarre ferns of the genus Lecanopteris having swollen hollow rhizomes that provide homes for symbiotic ants
+50806,lecanora,any lichen of the genus Lecanora; some used in dyeing; some used for food
+50807,lecherousness lust lustfulness,a strong sexual desire
+50808,lechery,unrestrained indulgence in sexual activity
+50809,lechwe Kobus_leche,tawny-colored African antelope inhabiting wet grassy plains; a threatened species
+50810,lecithin,a yellow phospholipid essential for the metabolism of fats; found in egg yolk and in many plant and animal cells; used commercially as an emulsifier
+50811,lectern reading_desk,desk or stand with a slanted top used to hold a text at the proper height for a lecturer
+50812,lectin,any of several plant glycoproteins that act like specific antibodies but are not antibodies in that they are not evoked by an antigenic stimulus
+50813,lector lecturer reader,a public lecturer at certain universities
+50814,lector reader,someone who reads the lessons in a church service; someone ordained in a minor order of the Roman Catholic Church
+50815,lecture lecturing,teaching by giving a discourse on some subject (typically to a class)
+50816,lecture public_lecture talk,a speech that is open to the public; "he attended a lecture on telecommunications"
+50817,lecture speech talking_to,a lengthy rebuke; "a good lecture was my father's idea of discipline"; "the teacher gave him a talking to"
+50818,lecture_demonstration,presentation of an example of what the lecturer is discoursing about
+50819,lecture_room,classroom where lectures are given
+50820,lecturer,someone who lectures professionally
+50821,lectureship,the post of lecturer
+50822,lederhosen,leather shorts often worn with suspenders; worn especially by men and boys in Bavaria
+50823,ledge shelf,a projecting ridge on a mountain or submerged under water
+50824,ledger leger account_book book_of_account book,a record in which commercial accounts are recorded; "they got a subpoena to examine our books"
+50825,ledger_board,top rail of a fence or balustrade
+50826,ledger_line leger_line,a short line; a notation for extending the range above or below the staff
+50827,ledger_paper,a durable writing paper used in record books and business ledgers
+50828,lee lee_side leeward,the side of something that is sheltered from the wind
+50829,leech bloodsucker hirudinean,carnivorous or bloodsucking aquatic or terrestrial worms typically having a sucker at each end
+50830,leech parasite sponge sponger,a follower who hangs around a host (without benefit to the host) in hope of gain or advantage
+50831,leek,related to onions; white cylindrical bulb and flat dark-green leaves
+50832,leek scallion Allium_porrum,plant having a large slender white bulb and flat overlapping dark green leaves; used in cooking; believed derived from the wild Allium ampeloprasum
+50833,leer,a suggestive or sneering look or grin
+50834,lees,the sediment from fermentation of an alcoholic beverage
+50835,leeward,the direction in which the wind is blowing
+50836,leeward_tide lee_tide,a tide that runs in the same direction as the wind is blowing; "a leeward tide is dangerous for small boats"
+50837,leeway,(of a ship or plane) sideways drift
+50838,leflunomide Arava,an anti-TNF compound (trade name Arava) that is given orally; can slow the progression of rheumatoid arthritis by slowing the proliferation of white blood cells which reduces inflammation in the synovium
+50839,left,location near or direction toward the left side; i.e. the side to the north when a person or object faces east; "she stood on the left"
+50840,left,a turn toward the side of the body that is on the north when the person is facing east; "take a left at the corner"
+50841,left left_hand,the hand that is on the left side of the body; "jab with your left"
+50842,left left_wing,those who support varying degrees of social or political or economic change designed to promote the public welfare
+50843,left-handed_pitcher left-hander left_hander lefthander lefty southpaw,a baseball pitcher who throws the ball with the left hand
+50844,left-handedness,the status of being born of a morganatic marriage
+50845,left-handedness sinistrality,preference for using the left hand
+50846,left-hander lefty southpaw,a person who uses the left hand with greater skill than the right; "their pitcher was a southpaw"
+50847,left_atrium left_atrium_of_the_heart atrium_sinistrum,the left upper chamber of the heart that receives blood from the pulmonary veins
+50848,left_coronary_artery,arises from the left aortic sinus; supplies the left side of the heart
+50849,left_field leftfield,the fielding position of the player on a baseball team who is expected to field balls in the left third of the outfield (looking from home plate)
+50850,left_field leftfield left,the piece of ground in the outfield on the catcher's left; "the batter flied out to left"
+50851,left_fielder,the person who plays left field
+50852,left_gastric_artery arteria_gastrica_sinistra,a branch of the celiac artery that supplies the lesser curvature of the stomach and the abdominal part of the esophagus
+50853,left_gastric_vein vena_gastrica_sinistra,arises from a union of veins from the gastric cardia; runs in the lesser omentum; empties into the portal vein
+50854,left_hemisphere left_brain,the cerebral hemisphere to the left of the corpus callosum that controls the right half of the body
+50855,left_ventricle,the chamber on the left side of the heart that receives arterial blood from the left atrium and pumps it into the aorta
+50856,lefteye_flounder lefteyed_flounder,flatfishes with both eyes on the left side of the head
+50857,leftism,the ideology of the political left; belief in or support of the tenets of the political left
+50858,leftover remnant,a small part or portion that remains after the main part no longer exists
+50859,leftovers,food remaining from a previous meal; "he had leftovers for dinner last night"
+50860,leg,the limb of an animal used for food
+50861,leg,a structure in animals that is similar to a human leg and used for locomotion
+50862,leg,a human limb; commonly used to refer to a whole limb but technically only the part of the limb between the knee and ankle
+50863,leg,one of the supports for a piece of furniture
+50864,leg,a cloth covering consisting of the part of a pair of trousers that covers a person's leg
+50865,leg,(nautical) the distance traveled by a sailing vessel on a single tack
+50866,leg-pull leg-pulling,as a joke: trying to make somebody believe something that is not true
+50867,leg_bone,a bone of the leg
+50868,leg_curl leg_curling,an exercise designed to strengthen the flexor muscles of the leg
+50869,leg_exercise,exercise designed to strengthen the leg muscles
+50870,leg_extensor,an exercise designed to strengthen the extensor muscles of the leg
+50871,leg_of_lamb gigot,lamb leg suitable for roasting
+50872,legal_action action action_at_law,a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong
+50873,legal_blindness,vision that is 20/200 or worse in both eyes (20/200 vision is the ability to see at 20 feet what a normal eye can see at 200 feet)
+50874,legal_code,a code of laws adopted by a state or nation; "a code of laws"
+50875,legal_document legal_instrument official_document instrument,(law) a document that states some contractual relationship or grants some right
+50876,legal_duty,acts which the law requires be done or forborne
+50877,legal_fee,a fee paid for legal service
+50878,legal_holiday national_holiday public_holiday,authorized by law and limiting work or official business
+50879,legal_power jurisdiction,(law) the right and power to interpret and apply the law; "courts having jurisdiction in this district"
+50880,legal_principle judicial_principle judicial_doctrine,(law) a principle underlying the formulation of jurisprudence
+50881,legal_profession bar legal_community,the body of individuals qualified to practice law in a particular jurisdiction; "he was admitted to the bar in New Jersey"
+50882,legal_relation,a professional relation that is regulated by law (as between a lawyer and a client)
+50883,legal_representation,personal representation that has legal status; "an person who has been declared incompetent should have legal representation"
+50884,legal_representative,a personal representative with legal standing (as by power of attorney or the executor of a will)
+50885,legal_right,a right based in law
+50886,legal_separation judicial_separation,a judicial decree regulating the rights and responsibilities of a married couple living apart
+50887,legal_separation separation,(law) the cessation of cohabitation of man and wife (either by mutual agreement or under a court order)
+50888,legal_status,a status defined by law
+50889,legal_system,a system for interpreting and enforcing the laws
+50890,legalese,a style that uses the abstruse technical vocabulary of the law
+50891,legalism,strict conformity to the letter of the law rather than its spirit
+50892,legality,lawfulness by virtue of conformity to a legal statute
+50893,legalization legalisation legitimation,the act of making lawful
+50894,legate official_emissary,a member of a legation
+50895,legatee,someone to whom a legacy is bequeathed
+50896,legation foreign_mission,a permanent diplomatic mission headed by a minister
+50897,legation legateship,the post or office of legate
+50898,legend fable,a story about mythical or supernatural beings or events
+50899,legendary_creature,a monster that is unverifiable but popularly accepted as possibly factual
+50900,legging leging leg_covering,a garment covering the leg (usually extending from the knee to the ankle)
+50901,legibility readability,a quality of writing (print or handwriting) that can be easily read
+50902,legion,association of ex-servicemen; "the American Legion"
+50903,legion,a large military unit; "the French Foreign Legion"
+50904,legionnaire legionary,a soldier who is a member of a legion (especially the French Foreign Legion)
+50905,legislation legislating lawmaking,the act of making or enacting laws
+50906,legislation statute_law,law enacted by a legislative body
+50907,legislative_act statute,an act passed by a legislative body
+50908,legislative_branch,the branch of the United States government that has the power of legislating
+50909,legislative_council,a unicameral legislature
+50910,legislator,someone who makes or enacts laws
+50911,legislatorship,the office of legislator
+50912,legislature legislative_assembly legislative_body general_assembly law-makers,persons who make or amend or repeal laws
+50913,legitimacy,lawfulness by virtue of being authorized or in accordance with law
+50914,legitimation,the act of rendering a person legitimate; "he has filial rights because he obtained letters of legitimation from the king"; "his parents' subsequent marriage resulted in his legitimation"
+50915,legless_lizard,degenerate wormlike burrowing lizard of California closely related to alligator lizards
+50916,legs,staying power; "that old Broadway play really has legs"
+50917,legume,the fruit or seed of any of various bean or pea plants consisting of a case that splits along both sides when ripe and having the seeds attach to one side of the case
+50918,legume,the seedpod of a leguminous plant (such as peas or beans or lentils)
+50919,legume leguminous_plant,an erect or climbing bean or pea plant of the family Leguminosae
+50920,leiomyoma,benign tumor of smooth muscle (usually in the uterus or digestive tract)
+50921,leiomyosarcoma,sarcoma of smooth muscle; occurs most often digestive tract or uterus or bladder or prostate
+50922,leishmaniasis leishmaniosis kala_azar,sores resulting from a tropical infection by protozoa of the genus Leishmania which are spread by sandflies
+50923,leister,a spear with three or more prongs; used for spearing fish (especially salmon)
+50924,leisure,freedom to choose a pastime or enjoyable activity; "he lacked the leisure for golf"
+50925,leisure leisure_time,time available for ease and relaxation; "his job left him little leisure"
+50926,leisure_wear,informal clothing designed to be worn when you are relaxing
+50927,leisureliness,slowness by virtue of being leisurely
+50928,leitmotiv leitmotif,a melodic phrase that accompanies the reappearance of a person or situation (as in Wagner's operas)
+50929,lek,the basic unit of money in Albania
+50930,lekvar,a sweet filling made of prunes or apricots
+50931,lemma,a subsidiary proposition that is assumed to be true in order to prove another proposition
+50932,lemma,the heading that indicates the subject of an annotation or a literary composition or a dictionary entry
+50933,lemma flowering_glume,the lower and stouter of the two glumes immediately enclosing the floret in most Gramineae
+50934,lemming,any of various short-tailed furry-footed rodents of circumpolar distribution
+50935,lemniscate,any of several plane algebraic curves in the shape of a figure eight
+50936,lemniscus fillet,a bundle of sensory nerve fibers going to the thalamus
+50937,lemon,yellow oval fruit with juicy acidic flesh
+50938,lemon,a distinctive tart flavor characteristic of lemons
+50939,lemon lemon_tree Citrus_limon,a small evergreen tree that originated in Asia but is widely cultivated for its fruit
+50940,lemon stinker,an artifact (especially an automobile) that is defective or unsatisfactory
+50941,lemon-scented_gum Eucalyptus_citriodora Eucalyptus_maculata_citriodora,similar to but smaller than the spotted gum and having lemon-scented leaves
+50942,lemon_balm,lemony leaves used for a tisane or in soups or fruit punches
+50943,lemon_balm garden_balm sweet_balm bee_balm beebalm Melissa_officinalis,bushy perennial Old World mint having small white or yellowish flowers and fragrant lemon-flavored leaves; a garden escapee in northern Europe and North America
+50944,lemon_curd lemon_cheese,a conserve with a thick consistency; made with lemons and butter and eggs and sugar
+50945,lemon_drop,a hard candy with lemon flavor and a yellow color and (usually) the shape of a lemon
+50946,lemon_extract,a flavoring made from (or imitating) lemons
+50947,lemon_geranium Pelargonium_limoneum,a common garden geranium with lemon-scented foliage
+50948,lemon_grove,a grove of lemon trees
+50949,lemon_juice,usually freshly squeezed juice of lemons
+50950,lemon_lily Hemerocallis_lilio-asphodelus Hemerocallis_flava,a day lily with yellow flowers
+50951,lemon_meringue_pie,pie containing lemon custard and topped with meringue
+50952,lemon_mint horsemint Monarda_citriodora,an annual horsemint of central and western United States and northern Mexico
+50953,lemon_oil,fragrant yellow oil obtained from the lemon peel
+50954,lemon_peel,strips of lemon peel cooked in sugar and coated with sugar
+50955,lemon_peel lemon_rind,the rind of a lemon
+50956,lemon_shark Negaprion_brevirostris,common shallow-water schooling shark of the Atlantic from North Carolina to Brazil and off west Africa; dangerous
+50957,lemon_sole English_sole,highly valued almost pure white flesh
+50958,lemon_sole Microstomus_kitt,European flatfish highly valued as food
+50959,lemon_sole Solea_lascaris,small European sole
+50960,lemon_sole winter_flounder,flesh of American flounder; important in the winter
+50961,lemon_zest,tiny bits of lemon peel
+50962,lemonade,sweetened beverage of diluted lemon juice
+50963,lemonade_mix,a commercial mix for making lemonade
+50964,lemongrass lemon_grass,a tropical grass native to India and Sri Lanka
+50965,lemongrass lemon_grass lemongrass_oil,an aromatic oil that smells like lemon and is widely used in Asian cooking and in perfumes and medicines
+50966,lemonwood,hard tough elastic wood of the lemonwood tree; used for making bows and fishing rods
+50967,lemonwood lemon-wood lemonwood_tree lemon-wood_tree Psychotria_capensis,South African evergreen having hard tough wood
+50968,lempira,the basic unit of money in Honduras; equal to 100 centavos
+50969,lemur,large-eyed arboreal prosimian having foxy faces and long furry tails
+50970,lend-lease lease-lend,the transfer of goods and services to an ally to aid in a common cause; "lend-lease during World War II was extremely generous"
+50971,lender loaner,someone who lends money or gives credit in business matters
+50972,lending loaning,disposing of money or property with the expectation that the same thing (or an equivalent) will be returned
+50973,lending_institution,a financial institution that makes loans
+50974,lending_library circulating_library,library that provides books for use outside the building
+50975,length,the property of being the extent of something from beginning to end; "the editor limited the length of my article to 500 words"
+50976,length,the linear extent in space from one end to the other; the longest dimension of something that is fixed in place; "the length of the table was 5 feet"
+50977,length,a section of something that is long and narrow; "a length of timber"; "a length of tubing"
+50978,lengthiness prolongation continuation protraction,the consequence of being lengthened in duration
+50979,lenience leniency,lightening a penalty or excusing from a chore by judges or parents or teachers
+50980,lenience leniency mildness lenity,mercifulness as a consequence of being lenient or tolerant
+50981,lenitive,remedy that eases pain and discomfort
+50982,lens,(metaphor) a channel through which something can be seen or understood; "the writer is the lens through which history can be seen"
+50983,lens crystalline_lens lens_of_the_eye,biconvex transparent body situated behind the iris in the eye; its role (along with the cornea) is to focus light on the retina
+50984,lens electron_lens,electronic equipment that uses a magnetic or electric field in order to focus a beam of electrons
+50985,lens lense lens_system,a transparent optical device used to converge or diverge transmitted light and to form images
+50986,lens_cap lens_cover,cap used to keep lens free of dust when not in use
+50987,lens_capsule,a tenuous mesoblastic membrane surrounding the lens of the eye
+50988,lens_cortex cortex,the tissue that surrounds the lens nucleus
+50989,lens_implant interocular_lens_implant IOL,a clear plastic lens that is implanted in the eye; usually done when the natural lens has been removed in a cataract operation
+50990,lens_nucleus nucleus,the central structure of the lens that is surrounded by the cortex
+50991,lenten_rose black_hellebore Helleborus_orientalis,slightly hairy perennial having deep green leathery leaves and flowers that are ultimately purplish-green
+50992,lenticel,one of many raised pores on the stems of woody plants that allow the interchange of gas between the atmosphere and the interior tissue
+50993,lenticular_nucleus lentiform_nucleus,a basal ganglion shaped like a lens and including the outer reddish putamen and the inner pale yellow pallidum
+50994,lentil,the fruit or seed of a lentil plant
+50995,lentil,round flat seed of the lentil plant used for food
+50996,lentil lentil_plant Lens_culinaris,widely cultivated Eurasian annual herb grown for its edible flattened seeds that are cooked like peas and also ground into meal and for its leafy stalks that are used as fodder
+50997,lentil_soup,made of stock and lentils with onions carrots and celery
+50998,leone,the basic unit of money in Sierra Leone; equal to 100 cents
+50999,leopard,the pelt of a leopard
+51000,leopard Panthera_pardus,large feline of African and Asian forests usually having a tawny coat with black spots
+51001,leopard's-bane leopardbane,any of several herbs of the genus Doronicum having alternate often clasping stem leaves cultivated for their long stalks of yellow flower heads
+51002,leopard_cat Felis_bengalensis,small spotted wildcat of southern Asia and Malaysia
+51003,leopard_frog spring_frog Rana_pipiens,common North American green or brownish frog having white-edged dark oval spots
+51004,leopard_lily panther_lily Lilium_pardalinum,lily of western United States having orange-red to crimson maroon-spotted flowers
+51005,leopard_lizard,any of several large lizards with many dark spots; of western United States and northern Mexico
+51006,leopard_plant,any of various plants of temperate Eurasia; grown for their yellow flowers and handsome foliage
+51007,leopardess,female leopard
+51008,leotard unitard body_suit cat_suit,a tight-fitting garment of stretchy material that covers the body from the shoulders to the thighs (and may have long sleeves or legs reaching down to the ankles); worn by ballet dancers and acrobats for practice or performance
+51009,leper,a pariah who is avoided by others
+51010,leper lazar,a person afflicted with leprosy
+51011,lepidobotrys,African tree often classified in other families; similar to the Costa Rican caracolito in wood structure as well as in fruit and flowers and leaves and seeds
+51012,lepidocrocite,a red to reddish brown mineral consisting of iron oxide hydroxide; often found in iron ores together with goethite
+51013,lepidolite,a mineral of the mica group; an important source of lithium
+51014,lepidomelane,a mica that is a biotite containing iron
+51015,lepidophobia,a morbid fear of snakes
+51016,lepidopterist lepidopterologist butterfly_collector,an entomologist who specializes in the collection and study of butterflies and moths
+51017,lepidopterology lepidoptery,the branch of entomology dealing with Lepidoptera
+51018,lepidopterous_insect lepidopteron lepidopteran,insect that in the adult state has four wings more or less covered with tiny scales
+51019,lepiota,any fungus of the genus Lepiota
+51020,leporid leporid_mammal,rabbits and hares
+51021,leprechaun,a mischievous elf in Irish folklore
+51022,lepromatous_leprosy,a very serious form of leprosy characterized by lesions that spread over much of the body and affecting many systems of the body
+51023,leprosy Hansen's_disease,chronic granulomatous communicable disease occurring in tropical and subtropical regions; characterized by inflamed nodules beneath the skin and wasting of body parts; caused by the bacillus Mycobacterium leprae
+51024,leprosy_bacillus Mycobacterium_leprae,cause of leprosy
+51025,leptocephalus,slender transparent larva of eels and certain fishes
+51026,leptodactylid_frog leptodactylid,toothed frogs: terrestrial or aquatic or arboreal
+51027,leptomeninges,the two innermost layers of the meninges; cerebrospinal fluid circulates between these innermost layers
+51028,leptomeningitis,inflammation of the leptomeninges
+51029,lepton,100 lepta equal 1 drachma in Greece
+51030,lepton,an elementary particle that participates in weak interactions; has a baryon number of 0
+51031,leptospira,important pathogens causing Weil's disease or canicola fever
+51032,leptosporangium,a sporangium formed from a single epidermal cell; characteristic of the Filicales or of almost all modern ferns
+51033,leptotene,the first stage of the prophase of meiosis
+51034,leresis,rambling talkativeness (especially in the aged)
+51035,lerot,dormouse of southern Europe and northern Africa
+51036,lesbian tribade gay_woman,a female homosexual
+51037,lesbianism sapphism,female homosexuality
+51038,lesion,any localized abnormal structural change in a bodily part
+51039,lesser_ape,gibbons and siamangs
+51040,lesser_bullrush narrow-leaf_cattail narrow-leaved_reedmace soft_flag Typha_angustifolia,reed maces of America, Europe, North Africa, Asia
+51041,lesser_butterfly_orchid Platanthera_bifolia Habenaria_bifolia,south European orchid having fragrant greenish-white flowers; sometimes placed in genus Habenaria
+51042,lesser_calamint field_balm Calamintha_nepeta Calamintha_nepeta_glantulosa Satureja_nepeta Satureja_calamintha_glandulosa,low-growing strongly aromatic perennial herb of southern Europe to Great Britain; naturalized in United States
+51043,lesser_celandine pilewort Ranunculus_ficaria,perennial herb native to Europe but naturalized elsewhere having heart-shaped leaves and yellow flowers resembling buttercups; its tuberous roots have been used as a poultice to relieve piles
+51044,lesser_centaury Centaurium_minus,common European glabrous annual centaury with flowers in dense cymes
+51045,lesser_galangal Alpinia_officinarum Alpinia_officinalis,Chinese perennial with pyramidal racemes of white flowers and pungent aromatic roots used medicinally and as flavoring
+51046,lesser_knapweed black_knapweed hardheads Centaurea_nigra,a weedy perennial with tough wiry stems and purple flowers; native to Europe but widely naturalized
+51047,lesser_kudu Tragelaphus_imberbis,a smaller variety of kudu
+51048,lesser_omentum,a part of the peritoneum attached to the stomach and liver and supporting the hepatic vessels
+51049,lesser_panda red_panda panda bear_cat cat_bear Ailurus_fulgens,reddish-brown Old World raccoon-like carnivore; in some classifications considered unrelated to the giant pandas
+51050,lesser_prairie_chicken Tympanuchus_pallidicinctus,a smaller prairie chicken of western Texas
+51051,lesser_rorqual piked_whale minke_whale Balaenoptera_acutorostrata,small finback of coastal waters of Atlantic and Pacific
+51052,lesser_scaup lesser_scaup_duck lake_duck Aythya_affinis,common scaup of North America; males have purplish heads
+51053,lesser_spearwort Ranunculus_flammula,semiaquatic Eurasian perennial crowfoot with leaves shaped like spears; naturalized in New Zealand
+51054,lesser_twayblade Listera_cordata,orchid having two triangular leaves and a short lax raceme of green to rust-colored flowers with the lip flushed mauve; Europe and Asia and North America and Greenland
+51055,lesser_whitethroat whitethroat Sylvia_curruca,Old World warbler similar to the greater whitethroat but smaller
+51056,lesser_wintergreen Pyrola_minor,the common wintergreen having many-flowered racemes of pink-tinged white flowers; Europe and North America
+51057,lesser_yellowlegs Tringa_flavipes,a variety of yellowlegs
+51058,lesson,a unit of instruction; "he took driving lessons"
+51059,lesson,a task assigned for individual study; "he did the lesson for today"
+51060,lessor lease_giver,someone who grants a lease
+51061,let net_ball,a serve that strikes the net before falling into the receiver's court; the ball must be served again
+51062,lethal_agent,an agent capable of causing death
+51063,lethal_dose,the size dose that will cause death
+51064,lethal_gene,any gene that has an effect that causes the death of the organism at any stage of life
+51065,lethargy lassitude sluggishness,a state of comatose torpor (as found in sleeping sickness)
+51066,letter,owner who lets another person use something (housing usually) for hire
+51067,letter,a strictly literal interpretation (as distinct from the intention); "he followed instructions to the letter"; "he obeyed the letter of the law"
+51068,letter letter_of_the_alphabet alphabetic_character,the conventional characters of the alphabet used to represent speech; "his grandmother taught him his letters"
+51069,letter missive,a written message addressed to a person or organization; "mailed an indignant letter to the editor"
+51070,letter varsity_letter,an award earned by participation in a school sport; "he won letters in three sports"
+51071,letter_bomb parcel_bomb package_bomb,a thin explosive device inside an envelope or package and detonated when opened
+51072,letter_bond,a bond that has not been registered with the Securities and Exchange Commission and cannot be sold to the general public
+51073,letter_case,case for carrying letters
+51074,letter_of_credit,a document issued by a bank that guarantees the payment of a customer's draft; substitutes the bank's credit for the customer's credit
+51075,letter_of_intent,any letter expressing an intention to take (or forgo) some action
+51076,letter_of_marque letters_of_marque letter_of_mark_and_reprisal,a license to a private citizen to seize property of another nation
+51077,letter_opener paper_knife paperknife,dull knife used to cut open the envelopes in which letters are mailed or to slit uncut pages of books
+51078,letter_paper,writing paper for use in writing correspondence
+51079,letter_security,a stock or bond that is not registered with the Securities and Exchange Commission and cannot be sold in the public market
+51080,letter_stock,stock that has not been registered with the Securities and Exchange Commission and cannot be sold to the general public
+51081,letter_telegram,a cheaper form of telegram that is sent abroad for delivery the next day
+51082,lettercard,a postcard that folds so the message is inside
+51083,letterer,a painter of letters
+51084,letterhead,a sheet of stationery with name and address of the organization printed at the top
+51085,letterman,an athlete who has earned a letter in a school sport
+51086,letters,scholarly attainment; "he is a man of letters"
+51087,letters,the literary culture; "this book shows American letters at its best"
+51088,letters_of_administration,legal document naming someone to administer an estate when no executor has been named
+51089,letters_testamentary,a legal document from a probate court or court officer informing you of your appointment as executor of a will and empowering you to discharge those responsibilities
+51090,letterset_printing,image is transferred from a relief type plate to a roller
+51091,lettuce,any of various plants of the genus Lactuca
+51092,lettuce,leaves of any of various plants of Lactuca sativa
+51093,letup lull,a pause during which things are calm or activities are diminished; "there was never a letup in the noise"
+51094,leu,the basic unit of money in Moldova
+51095,leu,the basic unit of money in Romania
+51096,leucine,a white crystalline amino acid occurring in proteins that is essential for nutrition; obtained by the hydrolysis of most dietary proteins
+51097,leucocytozoan leucocytozoon,parasitic in birds
+51098,leucothoe,any plant of the genus Leucothoe; grown for their beautiful white flowers; glossy foliage contains a poisonous substance similar to that found in genus Kalmia
+51099,leukemia leukaemia leucaemia cancer_of_the_blood,malignant neoplasm of blood-forming tissues; characterized by abnormal proliferation of leukocytes; one of the four major types of cancer
+51100,leukocyte leucocyte white_blood_cell white_cell white_blood_corpuscle white_corpuscle WBC,blood cells that engulf and digest bacteria and fungi; an important part of the body's defense system
+51101,leukocytosis leucocytosis,an abnormal increase in the number of white blood cells in the blood as a result of infection (as in leukemia)
+51102,leukoderma,a congenital skin condition characterized by spots or bands of unpigmented skin
+51103,leukoencephalitis,inflammation of the white matter of the brain
+51104,leukoma leucoma,eye disease consisting of an opaque white spot on the cornea
+51105,leukopenia leucopenia,an abnormal lowering of the white blood cell count
+51106,leukorrhea leucorrhea,discharge of white mucous material from the vagina; often an indication of infection
+51107,lev,the basic unit of money in Bulgaria
+51108,levallorphan Lorfan,drug (trade name Lorfan) that is related to morphine but that counteracts the respiratory depression produced by morphine poisoning but without affecting its analgesic effects
+51109,levanter,an easterly wind in the western Mediterranean area
+51110,levator,a muscle that serves to lift some body part (as the eyelid or lip)
+51111,levee,a formal reception of visitors or guests (as at a royal court)
+51112,levee,a pier that provides a landing place on a river
+51113,levee,an embankment that is built in order to prevent a river from overflowing
+51114,level,height above ground; "the water reached ankle level"; "the pictures were at the same level"
+51115,level layer stratum,an abstract place usually conceived as having depth; "a good actor communicates on several levels"; "a simile has at least two layers of meaning"; "the mind functions on many strata simultaneously"
+51116,level spirit_level,indicator that establishes the horizontal when a bubble is centered in a tube of liquid
+51117,level_crossing grade_crossing,intersection of a railway and a road on the same level; barriers close road when trains pass
+51118,leveler leveller,a radical who advocates the abolition of social distinctions
+51119,lever,a simple machine that gives a mechanical advantage when given a fulcrum
+51120,lever,a rigid bar pivoted about a fulcrum
+51121,lever lever_tumbler,a flat metal tumbler in a lever lock
+51122,lever_hang,a hang performed on the rings with the body stationary in a horizontal position
+51123,lever_lock,a lock whose tumblers are levers that must be raised to a given position so that the bolt can move
+51124,leverage,strategic advantage; power to act effectively; "relatively small groups can sometimes exert immense political leverage"
+51125,leverage leveraging,investing with borrowed money as a way to amplify potential gains (at the risk of greater losses)
+51126,leverage purchase,the mechanical advantage gained by being in a position to use a lever
+51127,leveraged_buyout,a buyout using borrowed money; the target company's assets are usually security for the loan; "a leveraged buyout by upper management can be used to combat hostile takeover bids"
+51128,leveret,a young hare especially one in its first year
+51129,leviathan,the largest or most massive thing of its kind; "it was a leviathan among redwoods"; "they were assigned the leviathan of textbooks"
+51130,leviathan,monstrous sea creature symbolizing evil in the Old Testament
+51131,levirate,the biblical institution whereby a man must marry the widow of his childless brother in order to maintain the brother's line
+51132,levitation,the phenomenon of a person or thing rising into the air by apparently supernatural means
+51133,levitation,movement upward in virtue of lightness
+51134,levitation,the act of raising (a body) from the ground by presumably spiritualistic means
+51135,levity,feeling an inappropriate lack of seriousness
+51136,levity,a manner lacking seriousness
+51137,levorotation counterclockwise_rotation,rotation to the left
+51138,levy,a charge imposed and collected
+51139,levy levy_en_masse,the act of drafting into military service
+51140,lexeme,a minimal unit (as a word or stem) in the lexicon of a language; `go' and `went' and `gone' and `going' are all members of the English lexeme `go'
+51141,lexical_database,a database of information about words
+51142,lexical_disambiguation,disambiguation of the sense of a polysemantic word
+51143,lexical_entry dictionary_entry,the entry in a dictionary of information about a word
+51144,lexical_meaning,the meaning of a content word that depends on the nonlinguistic concepts it is used to express
+51145,lexical_semantics,the branch of semantics that studies the meanings and relations of words
+51146,lexicalization lexicalisation,the process of making a word to express a concept
+51147,lexicalized_concept,a concept that is expressed by a word (in some particular language)
+51148,lexicographer lexicologist,a compiler or writer of a dictionary; a student of the lexical component of language
+51149,lexicography,the act of writing dictionaries
+51150,lexicology,the branch of linguistics that studies the lexical component of language
+51151,lexicostatistics,a statistical technique used in glottochronology; used to estimate how long ago different languages evolved from a common source language
+51152,lexis,all of the words in a language; all word forms having meaning or grammatical function
+51153,li,Chinese distance measure; approximately 0.5 kilometers
+51154,liabilities,anything that is owed to someone else
+51155,liability,the state of being legally obliged and responsible
+51156,liability,the quality of being something that holds you back
+51157,liability_insurance,insurance that provides protection from claims arising from injuries or damage to other people or property
+51158,liaison link contact inter-group_communication,a channel for communication between groups; "he provided a liaison with the guerrillas"
+51159,liana,a woody climbing usually tropical plant
+51160,liar prevaricator,a person who has lied or who lies repeatedly
+51161,libation,(facetious) a serving of an alcoholic beverage
+51162,libation,a serving (of wine) poured out in honor of a deity
+51163,libation,the act of pouring a liquid offering (especially wine) as a religious ceremony
+51164,libel,a false and malicious publication printed for the purpose of defaming a living person
+51165,libel,the written statement of a plaintiff explaining the cause of action (the defamation) and any relief he seeks
+51166,liberal,a person who favors an economic theory of laissez-faire and self-regulating markets
+51167,liberal liberalist progressive,a person who favors a political philosophy of progress and reform and the protection of civil liberties
+51168,liberalism,a political orientation that favors social progress by reform and by changing laws rather than by revolution
+51169,liberalism,an economic theory advocating free competition and a self-regulating market
+51170,liberality liberalness,an inclination to favor progress and individual freedom
+51171,liberality liberalness,the trait of being generous in behavior and temperament
+51172,liberalization liberalisation relaxation,the act of making less strict
+51173,liberation,the attempt to achieve equal rights or status; "she worked for women's liberation"
+51174,liberation release freeing,the act of liberating someone or something
+51175,liberation_theology,a form of Christian theology (developed by South American Roman Catholics) that emphasizes social and political liberation as the anticipation of ultimate salvation
+51176,liberator,someone who releases people from captivity or bondage
+51177,libertarian,an advocate of libertarianism
+51178,libertarian,someone who believes the doctrine of free will
+51179,libertarianism,an ideological belief in freedom of thought, speech and action
+51180,libertine debauchee rounder,a dissolute person; usually a man who is morally unrestrained
+51181,liberty,personal freedom from servitude or confinement or oppression
+51182,liberty,freedom of choice; "liberty of opinion"; "liberty of worship"; "liberty--perfect liberty--to think or feel or do just as one pleases"; "at liberty to choose whatever occupation one wishes"
+51183,liberty_cap,close-fitting conical cap worn as a symbol of liberty during the French Revolution and in the U.S. before 1800
+51184,libidinal_energy,(psychoanalysis) psychic energy produced by the libido
+51185,libido,(psychoanalysis) a Freudian term for sexual urge or desire
+51186,librarian bibliothec,a professional person trained in library science and engaged in library services
+51187,librarianship,the position of librarian
+51188,library,a collection of literary documents or records kept for reference or borrowing
+51189,library,a building that houses a collection of books and other materials
+51190,library,a room where books are kept; "they had brandy in the library"
+51191,library depository_library,a depository built to contain books and other materials for reading and study
+51192,library program_library subroutine_library,(computing) a collection of standard programs and subroutines that are stored and available for immediate use
+51193,library_card borrower's_card,a card certifying the bearer's right to use the library
+51194,library_catalog library_catalogue,an enumeration of all the resources of a library
+51195,library_fine,fine imposed by a library on books that overdue when returned
+51196,library_program,a program in a program library
+51197,library_routine,a debugged routine that is maintained in a program library
+51198,library_science,the study of the principles and practices of library administration
+51199,libration,(astronomy) a real or apparent slow oscillation of a moon or satellite; "the libration of the moon"
+51200,librettist,author of words to be set to music in an opera or operetta
+51201,libretto,the words of an opera or musical play
+51202,license licence,excessive freedom; lack of due restraint; "when liberty becomes license dictatorship is near"- Will Durant; "the intolerable license with which the newspapers break...the rules of decorum"- Edmund Burke
+51203,license licence,freedom to deviate deliberately from normally applicable rules or practices (especially in behavior or speech)
+51204,license licence permit,a legal document giving official permission to do something
+51205,license permission permit,the act of giving a formal (usually written) authorization
+51206,license_number registration_number,the number on the license plate that identifies the car that bears it
+51207,license_plate numberplate,a plate mounted on the front and back of car and bearing the car's registration number
+51208,licensed_practical_nurse LPN practical_nurse,a nurse who has enough training to be licensed by a state to provide routine care for the sick
+51209,licensee,someone to whom a license is granted
+51210,licenser,an official who can issue a license or give authoritative permission (especially one who licenses publications)
+51211,licensing_agreement,contract giving someone the legal right to use a patent or trademark
+51212,licensing_fee license_fee license_tax,a fee paid to the government for the privilege of being licensed to do something (as selling liquor or practicing medicine)
+51213,licentiate,holds a license (degree) from a (European) university
+51214,licentiousness wantonness,the quality of being lewd and lascivious
+51215,lichen,any of several eruptive skin diseases characterized by hard thick lesions grouped together and resembling lichens growing on rocks
+51216,lichen,any thallophytic plant of the division Lichenes; occur as crusty patches or bushy growths on tree trunks or rocks or bare ground etc.
+51217,lichen_planus lichen_ruber_planus,an eruption of shiny flat-topped purplish (usually itchy) papules on the wrist and forearms and thighs
+51218,lichtenoid_eczema chronic_eczema eczema_hypertrophicum,eczema characterized by thickening of the skin with accentuated skin lines
+51219,licitness,the quality of strictly conforming to law
+51220,lick lap,touching with the tongue; "the dog's laps were warm and wet"
+51221,licorice liquorice,a black candy flavored with the dried root of the licorice plant
+51222,licorice liquorice Glycyrrhiza_glabra,deep-rooted coarse-textured plant native to the Mediterranean region having blue flowers and pinnately compound leaves; widely cultivated in Europe for its long thick sweet roots
+51223,licorice_fern Polypodium_glycyrrhiza,fern having rootstock of a sweetish flavor
+51224,licorice_root,root of licorice used in flavoring e.g. candy and liqueurs and medicines
+51225,lid,a movable top or cover (hinged or separate) for closing the opening at the top of a box, chest, jar, pan, etc.; "he raised the piano lid"
+51226,lidar,a measuring system that detects and locates objects on the same principle as radar but uses light from a laser; a potential technology for detecting air turbulence that can affect aircraft
+51227,lido,a recreational facility including a swimming pool for water sports
+51228,lido_deck,an open deck including a swimming pool
+51229,lie,position or manner in which something is situated
+51230,lie prevarication,a statement that deviates from or perverts the truth
+51231,lie-abed slugabed,a person who stays in bed until a relatively late hour
+51232,lie-in,a long stay in bed in the morning
+51233,lie_detector,a polygraph that records bodily changes sometimes associated with lying
+51234,liebfraumilch,a sweetened Rhenish wine (especially one from Hesse in western Germany)
+51235,lied,a German art song of the 19th century for voice and piano
+51236,lieder_singer,a singer of lieder
+51237,liege liege_lord,a feudal lord entitled to allegiance and service
+51238,lien,the right to take another's property if an obligation is not discharged
+51239,lienal_artery splenic_artery arteria_lienalis,an artery that originates from the celiac trunk and supplies blood to the spleen
+51240,lieutenancy,the position of a lieutenant
+51241,lieutenant,an officer holding a commissioned rank in the United States Navy or the United States Coast Guard; below lieutenant commander and above lieutenant junior grade
+51242,lieutenant,a commissioned military officer
+51243,lieutenant police_lieutenant,an officer in a police force
+51244,lieutenant_colonel light_colonel,a commissioned officer in the United States Army or Air Force or Marines holding a rank above major and below colonel
+51245,lieutenant_commander,a commissioned officer in the Navy ranking above a lieutenant and below a commander
+51246,lieutenant_general,a general officer ranking above a major general and below a full general
+51247,lieutenant_governor,an elected official serving as deputy to the governor of a state of the United States
+51248,lieutenant_junior_grade lieutenant_JG,an officer holding a commissioned rank in the United States Navy or United States Coast Guard; below lieutenant and above ensign
+51249,life,the period from the present until death; "he appointed himself emperor for life"
+51250,life,the period between birth and the present time; "I have known him all his life"
+51251,life,a characteristic state or mode of living; "social life"; "city life"; "real life"
+51252,life,the course of existence of an individual; the actions and events that occur in living; "he hoped for a new life in Australia"; "he wanted to live his own life without interference from others"; "get a life!" "he is trying to rebuild his life"
+51253,life,the organic phenomenon that distinguishes living organisms from nonliving ones; "there is no life on the moon"
+51254,life,a living person; "his heroism saved a life"
+51255,life,a motive for living; "pottery was his life"
+51256,life,living things collectively; "the oceans are teeming with life"
+51257,life lifetime life-time lifespan,the period during which something is functional (as between birth and death); "the battery had a short life"; "he lived a long and happy life"
+51258,life living,the experience of being alive; the course of human events and activities; "he could no longer cope with the complexities of life"
+51259,life-support_system life_support,equipment that makes life possible in otherwise deadly environmental conditions; "the astronauts relied on their life-support systems"
+51260,life-support_system life_support,medical equipment that assists or replaces important bodily functions and so enables a patient to live who otherwise might not survive; "the patient is on life support"
+51261,life_buoy lifesaver life_belt life_ring,a life preserver in the form of a ring of buoyant material
+51262,life_class,an art class using a live human model
+51263,life_cycle,the course of developmental changes in an organism from fertilized zygote to maturity when another zygote can be produced
+51264,life_cycle,a series of stages through which an organism passes between recurrences of a primary stage
+51265,life_estate estate_for_life,(law) an estate whose duration is limited to the life of the person holding it
+51266,life_expectancy,an expected time to live as calculated on the basis of statistical probabilities
+51267,life_force vital_force vitality elan_vital,(biology) a hypothetical force (not physical or chemical) once thought by Henri Bergson to cause the evolution and development of organisms
+51268,life_form,the characteristic bodily form of a mature organism
+51269,life_imprisonment,a sentence of imprisonment until death
+51270,life_insurance life_assurance,insurance paid to named beneficiaries when the insured person dies; "in England they call life insurance life assurance"
+51271,life_jacket life_vest cork_jacket,life preserver consisting of a sleeveless jacket of buoyant or inflatable design
+51272,life_mask,a cast taken from the face of a living person
+51273,life_office,life assurance office
+51274,life_peer,a British peer whose title lapses at death
+51275,life_preserver preserver flotation_device,rescue equipment consisting of a buoyant belt or jacket to keep a person from drowning
+51276,life_raft Carling_float,a raft to use if a ship must be abandoned in an emergency
+51277,life_science bioscience,any of the branches of natural science dealing with the structure and behavior of living organisms
+51278,life_sentence life,a prison term lasting as long as the prisoner lives; "he got life for killing the guard"
+51279,life_style life-style lifestyle modus_vivendi,a manner of living that reflects the person's values and attitudes
+51280,life_tenant,a tenant whose legal right to retain possession of buildings or lands lasts as long as they (or some other person) live
+51281,lifeblood,the blood considered as the seat of vitality
+51282,lifeblood,an essential or life-giving force; "water is the lifeblood of India"
+51283,lifeboat,a strong sea boat designed to rescue people from a sinking ship
+51284,lifeguard lifesaver,an attendant employed at a beach or pool to protect swimmers from accidents
+51285,lifeline,support that enables people to survive or to continue doing something (often by providing an essential connection); "the airlift provided a lifeline for Berlin"; "she offered me a lifeline in my time of grief"
+51286,lifeline,line that raises or lowers a deep-sea diver
+51287,lifeline,line thrown from a vessel that people can cling to in order to save themselves from drowning
+51288,lifer,a prisoner serving a term of life imprisonment
+51289,lifesaving,saving the lives of drowning persons; "he took a course in lifesaving"
+51290,lifework,the principal work of your career
+51291,lift,a device worn in a shoe or boot to make the wearer look taller or to correct a shortened leg
+51292,lift,one of the layers forming the heel of a shoe or boot
+51293,lift,the act of giving temporary assistance
+51294,lift,a ride in a car; "he gave me a lift home"
+51295,lift raise heave,the act of raising something; "he responded with a lift of his eyebrow"; "fireman learn several different raises for getting ladders up"
+51296,lift rise,a wave that lifts the surface of the water or ground
+51297,lift_pump,pump used to lift rather than force a liquid up
+51298,lifting_device,a device for lifting heavy loads
+51299,liftoff,the initial ascent of a rocket from its launching pad
+51300,ligament,a sheet or band of tough fibrous tissue connecting bones or cartilages or supporting muscles or organs
+51301,ligament,any connection or unifying bond
+51302,ligand,a substance (an atom or molecule or radical or ion) that forms a complex around a central atom
+51303,ligation,(surgery) tying a duct or blood vessel with a ligature (as to prevent bleeding during surgery)
+51304,ligature,(music) a group of notes connected by a slur
+51305,ligature,character consisting of two or more letters combined into one
+51306,ligature,a metal band used to attach a reed to the mouthpiece of a clarinet or saxophone
+51307,ligature,thread used by surgeons to bind a vessel (as to constrict the flow of blood)
+51308,liger,offspring of a male lion and a female tiger
+51309,light,a person regarded very fondly; "the light of my life"
+51310,light,an illuminated area; "he stepped into the light"
+51311,light,a visual warning signal; "they saw the light of the beacon"; "there was a light at every corner"
+51312,light,a particular perspective or aspect of a situation; "although he saw it in a different light, he still did not understand"
+51313,light,mental understanding as an enlightening experience; "he finally saw the light"; "can you shed light on this problem?"
+51314,light,public awareness; "it brought the scandal to light"
+51315,light illumination,a condition of spiritual awareness; divine illumination; "follow God's light"
+51316,light light_source,any device serving as a source of illumination; "he stopped the car and turned off the lights"
+51317,light lighting,having abundant light or illumination; "they played as long as it was light"; "as long as the lighting was good"
+51318,light lightness,the visual effect of illumination on objects or scenes as created in pictures; "he could paint the lightest light and the darkest dark"
+51319,light visible_light visible_radiation,(physics) electromagnetic radiation that can produce a visual sensation; "the light was filtered through a soft glass window"
+51320,light-emitting_diode LED,diode such that light emitted at a p-n junction is proportional to the bias current; color depends on the material used
+51321,light-o'-love light-of-love,a woman inconstant in love
+51322,light_adaptation,the process of adjusting the eyes to relatively high levels of illumination; the pupil constricts and the cones system is operative
+51323,light_air,wind moving 1-3 knots; 1 on the Beaufort scale
+51324,light_arm,a rifle or pistol
+51325,light_beer,lager with reduced alcohol content
+51326,light_breeze,wind moving 4-7 knots; 2 on the Beaufort scale
+51327,light_brown,a brown that is light but unsaturated
+51328,light_bulb lightbulb bulb incandescent_lamp electric_light electric-light_bulb,electric lamp consisting of a transparent or translucent glass housing containing a wire filament (usually tungsten) that emits light when heated by electricity
+51329,light_circuit lighting_circuit,wiring that provides power to electric lights
+51330,light_cream coffee_cream single_cream,cream that has at least 18% butterfat; "in England they call light cream `single cream'"
+51331,light_diet,diet prescribed for bedridden or convalescent people; does not include fried or highly seasoned foods
+51332,light_filter diffusing_screen,a transparent filter that reduces the light (or some wavelengths of the light) passing through it
+51333,light_flyweight,an amateur boxer who weighs no more than 106 pounds
+51334,light_heavyweight,an amateur boxer who weighs no more than 179 pounds
+51335,light_heavyweight,a wrestler who weighs 192-214 pounds
+51336,light_heavyweight cruiserweight,a professional boxer who weighs between 169 and 175 pounds
+51337,light_hour,the distance light travels in a vacuum in one hour; approximately one billion kilometers
+51338,light_machine_gun,a submachine gun not greater than .30 millimeter
+51339,light_meter exposure_meter photometer,photographic equipment that measures the intensity of light
+51340,light_microscope,microscope consisting of an optical instrument that magnifies the image of an object
+51341,light_middleweight,an amateur boxer who weighs no more than 156 pounds
+51342,light_minute,the distance light travels in a vacuum in one minute; approximately 18 million kilometers
+51343,light_pen electronic_stylus,(computer science) a pointer that when pointed at a computer display senses whether or not the spot is illuminated
+51344,light_reaction,the first stage of photosynthesis during which energy from light is used for the production of ATP
+51345,light_reflex pupillary_reflex miosis myosis,reflex contraction of the sphincter muscle of the iris in response to a bright light (or certain drugs) causing the pupil to become smaller
+51346,light_second,the distance light travels in a vacuum in one second; approximately 300,000 kilometers
+51347,light_show,a display of colored lights moving in shifting patterns
+51348,light_time,distance measured in terms of the speed of light (or radio waves); "the light time from Jupiter to the sun is approximately 43 minutes"
+51349,light_unit,a measure of the visible electromagnetic radiation
+51350,light_welterweight,an amateur boxer who weighs no more than 140 pounds
+51351,light_year light-year,the distance that light travels in a vacuum in 1 year; 5.88 trillion miles or 9.46 trillion kilometers
+51352,lightening,descent of the uterus into the pelvic cavity that occurs late in pregnancy; the fetus is said to have dropped
+51353,lighter light igniter ignitor,a device for lighting or igniting fuel or charges or fires; "do you have a light?"
+51354,lighter-than-air_craft,aircraft supported by its own buoyancy
+51355,lighterage,the fee charged for carrying goods in lighters
+51356,lighterage,the transportation of goods on a lighter
+51357,lighterman bargeman bargee,someone who operates a barge
+51358,lightheadedness,a frivolous lack of prudence
+51359,lighthouse_keeper,the keeper of a lighthouse
+51360,lighting,apparatus for supplying artificial light effects for the stage or a film
+51361,lighting,the craft of providing artificial light; "an interior decorator must understand lighting"
+51362,lighting_fixture,a fixture providing artificial light
+51363,lighting_industry,an industry devoted to manufacturing and selling and installing lighting
+51364,lightness,having a light color
+51365,lightness weightlessness,the property of being comparatively small in weight; "the lightness of balsa wood"
+51366,lightning,abrupt electric discharge from cloud to cloud or from cloud to earth accompanied by the emission of light
+51367,lightning,the flash of light that accompanies an electric discharge in the atmosphere (or something resembling such a flash); can scintillate for a second or more
+51368,lightning_rod,someone who is a frequent target of negative reactions and serves to distract attention from another
+51369,lightning_rod lightning_conductor,a metallic conductor that is attached to a high point and leads to the ground; protects the building from destruction by lightning
+51370,lights-out,a prescribed bedtime
+51371,lightship,a ship equipped like a lighthouse and anchored where a permanent lighthouse would be impracticable
+51372,lightsomeness lightness,the trait of being lighthearted and frivolous
+51373,lightweight,an amateur boxer who weighs no more than 132 pounds
+51374,lightweight,a wrestler who weighs 139-154 pounds
+51375,lightweight,a professional boxer who weighs between 131 and 135 pounds
+51376,lightwood Acacia_melanoxylon,tall Australian acacia yielding highly valued black timber
+51377,ligne,a linear unit (1/40 inch) used to measure diameter of buttons
+51378,lignin,a complex polymer; the chief constituent of wood other than carbohydrates; binds to cellulose fibers to harden and strengthen cell walls of plants
+51379,lignite brown_coal wood_coal,intermediate between peat and bituminous coal
+51380,lignosae,a category in some early taxonomies
+51381,lignum,woody tissue
+51382,lignum_vitae Guaiacum_officinale,small evergreen tree of Caribbean and southern Central America to northern South America; a source of lignum vitae wood, hardest of commercial timbers, and a medicinal resin
+51383,lignum_vitae guaiac guaiacum,hard greenish-brown wood of the lignum vitae tree and other trees of the genus Guaiacum
+51384,ligule,(botany) any appendage to a plant that is shaped like a strap
+51385,like ilk,a kind of person; "We'll not see his like again"; "I can't tolerate people of his ilk"
+51386,like the_like the_likes_of,a similar kind; "dogs, foxes, and the like"; "we don't want the likes of you around here"
+51387,likelihood likeliness,the probability of a specified outcome
+51388,likeness alikeness similitude,similarity in appearance or character or nature between persons or things; "man created God in his own likeness"
+51389,likeness semblance,picture consisting of a graphic image of a person or thing
+51390,likening,the act of comparing similarities
+51391,liking,a feeling of pleasure and enjoyment; "I've always had a liking for reading"; "she developed a liking for gin"
+51392,likuta,100 makuta equal 1 zaire in Zaire
+51393,lilac,any of various plants of the genus Syringa having large panicles of usually fragrant flowers
+51394,lilangeni,the basic unit of money in Swaziland; equal to 100 cents
+51395,liliaceous_plant,plant growing from a bulb or corm or rhizome or tuber
+51396,liliid_monocot_family,family of monocotyledonous plants of the subclass Liliidae; mostly herbs usually with petaloid sepals and petals and compound pistils
+51397,liliid_monocot_genus,genus of monocotyledonous plants comprising mostly herbs having usually petaloid sepals and petals and compound pistils
+51398,lilliputian,a very small person (resembling a Lilliputian)
+51399,lilt swing,a jaunty rhythm in music
+51400,lily,any liliaceous plant of the genus Lilium having showy pendulous flowers
+51401,lily_of_the_valley May_lily Convallaria_majalis,low-growing perennial plant having usually two large oblong lanceolate leaves and a raceme of small fragrant nodding bell-shaped flowers followed by scarlet berries
+51402,lily_pad,floating leaves of a water lily
+51403,lilyturf lily_turf Liriope_muscari,Asiatic perennial tufted herb with grasslike evergreen foliage and clusters of dark mauve grapelike flowers; grown as ground cover
+51404,lima_bean,broad flat beans simmered gently; never eaten raw
+51405,lima_bean lima_bean_plant Phaseolus_limensis,bush or tall-growing bean plant having large flat edible seeds
+51406,liman,a long narrow lagoon near the mouth of a river
+51407,limb,(astronomy) the circumferential edge of the apparent disc of the sun or the moon or a planet
+51408,limb,one of the jointed appendages of an animal used for locomotion or grasping: arm; leg; wing; flipper
+51409,limb,either of the two halves of a bow from handle to tip; "the upper limb of the bow"
+51410,limb,the graduated arc that is attached to an instrument for measuring angles; "the limb of the sextant"
+51411,limb tree_branch,any of the main branches arising from the trunk or a bough of a tree
+51412,limb-girdle_muscular_dystrophy,an autosomal recessive form of muscular dystrophy that appears anywhere from late childhood to middle age; characterized by progressive muscular weakness beginning either in the shoulder or pelvic girdle; usually progresses slowly with cardiopulmonary complications in the later stages
+51413,limber,a two-wheeled horse-drawn vehicle used to pull a field gun or caisson
+51414,limber_pine Pinus_flexilis,western North American pine with long needles and very flexible limbs and dark-grey furrowed bark
+51415,limbers,a channel or gutter on either side of a ship's keelson; carries bilge water into the pump well
+51416,limbic_system visceral_brain limbic_brain,a system of functionally related neural structures in the brain that are involved in emotional behavior
+51417,limbo,an imaginary place for lost or neglected things
+51418,limbo,(theology) in Roman Catholicism, the place of unbaptized but innocent or righteous souls (such as infants and virtuous individuals)
+51419,limbus,a border or edge of any of various body parts distinguished by color or structure
+51420,lime,the green acidic fruit of any of various lime trees
+51421,lime lime_tree Citrus_aurantifolia,any of various related trees bearing limes
+51422,lime_juice,usually freshly squeezed juice of limes
+51423,limeade,sweetened beverage of lime juice and water
+51424,limekiln,a kiln used to reduce naturally occurring forms of calcium carbonate to lime
+51425,limelight calcium_light,a lamp consisting of a flame directed at a cylinder of lime with a lens to concentrate the light; formerly used for stage lighting
+51426,limelight spotlight glare public_eye,a focus of public attention; "he enjoyed being in the limelight"; "when Congress investigates it brings the full glare of publicity to the agency"
+51427,limerick,a humorous verse form of 5 anapestic lines with a rhyme scheme aabba
+51428,limestone,a sedimentary rock consisting mainly of calcium that was deposited by the remains of marine animals
+51429,limestone_fern northern_oak_fern Gymnocarpium_robertianum,yellow-green fern of rocky areas of northern hemisphere
+51430,limestone_salamander Hydromantes_brunus,similar to Shasta salamander; lives in cliff crevices and taluses
+51431,limewater,solution of calcium hydroxide in water used as an antacid
+51432,limey John_Bull,a man of English descent
+51433,limit,as far as something can go
+51434,limit bound boundary,the greatest possible degree of something; "what he did was beyond the bounds of acceptable behavior"; "to the limit of his ability"
+51435,limit demarcation demarcation_line,the boundary of a specific area
+51436,limit limit_point point_of_accumulation,the mathematical value toward which a function goes as the independent variable approaches infinity
+51437,limit limitation,the greatest amount of something that is possible or allowed; "there are limits on the amount you can bet"; "it is growing rapidly with no limitation in sight"
+51438,limitation,(law) a time period after which suits cannot be brought; "statute of limitations"
+51439,limitation,the quality of being limited or restricted; "it is a good plan but it has serious limitations"
+51440,limitation restriction,an act of limiting or restricting (as by regulation)
+51441,limited_audit,an audit of limited scope (limited in time span or confined to particular accounts etc.)
+51442,limited_company Ltd. Ld.,a company that is organized to give its owners limited liability
+51443,limited_edition,an edition that is restricted to a specific number of copies
+51444,limited_liability,the liability of a firm's owners for no more than the capital they have invested in the firm
+51445,limited_war,a war whose objective is less than the unconditional defeat of the enemy
+51446,limiter clipper,(electronics) a nonlinear electronic circuit whose output is limited in amplitude; used to limit the instantaneous amplitude of a waveform (to clip off the peaks of a waveform); "a limiter introduces amplitude distortion"
+51447,limnologist,a specialist in the study of freshwater ponds and lakes
+51448,limnology,the scientific study of bodies of fresh water for their biological and physical and geological properties
+51449,limonene,a liquid terpene with a lemon odor; found in lemons and oranges and other essential oils
+51450,limonite,a widely occurring iron oxide ore; a mixture of goethite and hematite and lepidocrocite
+51451,limousine limo,large luxurious car; usually driven by a chauffeur
+51452,limpa,a rye bread made with molasses or brown sugar
+51453,limpet,mollusk with a low conical shell
+51454,limpet,any of various usually marine gastropods with low conical shells; found clinging to rocks in littoral areas
+51455,limpkin Aramus_pictus,wading bird of Florida, Cuba and Jamaica having a drooping bill and a distinctive wailing call
+51456,linage lineage,the number of lines in a piece of printed material
+51457,linage lineage,a rate of payment for written material that is measured according to the number of lines submitted
+51458,linalool,a colorless fragrant liquid found in many essential oils
+51459,linchpin lynchpin,pin inserted through an axletree to hold a wheel on
+51460,lincomycin Lincocin,antibiotic (trade name Lincocin) obtained from a streptomyces bacterium and used in the treatment of certain penicillin-resistant infections
+51461,lindane,a white crystalline powder used as an agricultural insecticide
+51462,linden linden_tree basswood lime lime_tree,any of various deciduous trees of the genus Tilia with heart-shaped leaves and drooping cymose clusters of yellowish often fragrant flowers; several yield valuable timber
+51463,lindy lindy_hop,an energetic American dance that was popular in the 1930s (probably named for the aviator Charles Lindbergh)
+51464,line,a length (straight or curved) without breadth or thickness; the trace of a moving point
+51465,line,a single frequency (or very narrow band) of radiation in a spectrum
+51466,line,a fortified position (especially one marking the most forward position of troops); "they attacked the enemy's line"
+51467,line,in games or sports; a mark indicating positions or bounds of the playing area
+51468,line,a spatial location defined by a real or imaginary unidimensional extent
+51469,line,a formation of people or things one beside another; "the line of soldiers advanced with their bayonets fixed"; "they were arrayed in line of battle"; "the cast stood in line for the curtain call"
+51470,line,a formation of people or things one behind another; "the line stretched clear around the corner"; "you must wait in a long line at the checkout counter"
+51471,line,persuasive but insincere talk that is usually intended to deceive or impress; "`let me show you my etchings' is a rather worn line"; "he has a smooth line but I didn't fall for it"; "that salesman must have practiced his fast line of talk"
+51472,line,text consisting of a row of words written across a page or computer screen; "the letter consisted of three short lines"; "there are six lines in every stanza"
+51473,line,a mark that is long relative to its width; "He drew a line on the chart"
+51474,line,a commercial organization serving as a common carrier
+51475,line,something (as a cord or rope) that is long and thin and flexible; "a washing line"
+51476,line,acting in conformity; "in line with"; "he got out of line"; "toe the line"
+51477,line dividing_line demarcation contrast,a conceptual separation or distinction; "there is a narrow line between sanity and insanity"
+51478,line product_line line_of_products line_of_merchandise business_line line_of_business,a particular kind of product or merchandise; "a nice line of shoes"
+51479,line railway_line rail_line,the road consisting of railroad track and roadbed
+51480,line-drive_double line_double,a double resulting from a line drive
+51481,line-drive_single line_single,a single resulting from a line drive
+51482,line-drive_triple line_triple,a triple resulting from a line drive
+51483,line_coach,an assistant football coach in charge of the linemen
+51484,line_feed,the operation that prepares for the next character to be printed or displayed on the next line
+51485,line_item,an item in an appropriation bill; "Some governors can veto line items in their state budgets"
+51486,line_judge,football official who assists the referee by keeping track of the official time during the game
+51487,line_management,administration of the activities contributing directly to an organization's output
+51488,line_of_battle,a line formed by troops or ships prepared to deliver or receive an attack
+51489,line_of_defense line_of_defence,any organization whose responsibility it is to defend against something; "police are the major line of defense against crime"
+51490,line_of_defense line_of_defence,defensive structure consisting of a barrier that can be employed for defense against attack
+51491,line_of_duty,all that is normally required in some area of responsibility
+51492,line_of_fate line_of_destiny line_of_Saturn,a crease on the palm; palmists say it indicates how successful you will be
+51493,line_of_fire,the path of a missile discharged from a firearm
+51494,line_of_flight,the path along which a freely moving object travels through the air
+51495,line_of_force field_line,an imaginary line in a field of force; direction of the line at any point is the direction of the force at that point
+51496,line_of_heart heart_line love_line mensal_line,a crease on the palm; palmists say it indicates your emotional nature
+51497,line_of_inquiry line_of_questioning,an ordering of questions so as to develop a particular argument
+51498,line_of_least_resistance path_of_least_resistance,the easiest way; "In marrying him she simply took the path of least resistance"
+51499,line_of_life life_line lifeline,a crease on the palm; its length is said by palmists to indicate how long you will live
+51500,line_of_march,the route along which a column advances
+51501,line_of_march,the arrangement of people in a line for marching
+51502,line_of_poetry line_of_verse,a single line of words in a poem
+51503,line_of_sight line_of_vision,an imaginary straight line along which an observer looks
+51504,line_of_succession,the order in which individuals are expected to succeed one another in some official position
+51505,line_of_thought,a particular way of thinking that is characteristic of some individual or group
+51506,line_officer,a commissioned officer with combat units (not a staff officer or a supply officer)
+51507,line_organization line_organisation,the organizational structure of activities contributing directly to the organization's output
+51508,line_personnel,personnel having direct job performance responsibilities
+51509,line_printer line-at-a-time_printer,printer that serves as an output device on a computer; prints a whole line of characters at a time
+51510,line_score,a summary of the scoring in a game (usually in tabular form)
+51511,line_spectrum,a spectrum in which energy is concentrated at particular wavelengths; produced by excited atoms and ions as they fall back to a lower energy level
+51512,line_squall,a squall advancing along a front that forms a definite line
+51513,line_storm equinoctial_storm,a violent rainstorm near the time of an equinox
+51514,line_worker,an employee who works on an assembly line
+51515,lineage line line_of_descent descent bloodline blood_line blood pedigree ancestry origin parentage stemma stock,the descendants of one individual; "his entire lineage has been warriors"
+51516,linear_accelerator linac,ions are accelerated along a linear path by voltage differences on electrodes along the path
+51517,linear_algebra,the part of algebra that deals with the theory of linear equations and linear transformation
+51518,linear_equation,a polynomial equation of the first degree
+51519,linear_leaf elongate_leaf,a long slender leaf
+51520,linear_operator,an operator that obeys the distributive law: A(f+g) = Af + Ag (where f and g are functions)
+51521,linear_programming,a mathematical technique used in economics; finds the maximum or minimum of linear functions in many variables subject to constraints
+51522,linear_regression rectilinear_regression,the relation between variables when the regression equation is linear: e.g., y = ax + b
+51523,linear_unit linear_measure,a unit of measurement of length
+51524,lineation,the act of marking or outlining with lines
+51525,linebacker line_backer,a defensive football player who takes a position close behind the linemen
+51526,linebacker line_backer,(American football) the position of a defensive football player who plays close behind the line of scrimmage
+51527,linecut line_block line_engraving,engraving consisting of a block that has been etched or engraved
+51528,linecut line_engraving,a print obtained from a line drawing
+51529,lined_snake Tropidoclonion_lineatum,secretive snake of city dumps and parks as well as prairies and open woods; feeds on earthworms; of central United States
+51530,lineman,the surveyor who marks positions with a range pole
+51531,lineman,one of the players on the line of scrimmage
+51532,lineman,(American football) the position of a player on a football team who is stationed on the line of scrimmage
+51533,linemen,the football players who line up on the line of scrimmage
+51534,linen,a fabric woven with fibers from the flax plant
+51535,linen,white goods or clothing made with linen cloth
+51536,linen linen_paper,a high-quality paper made of linen fibers or with a linen finish
+51537,linendraper,a retail dealer in yard goods
+51538,liner line_drive,(baseball) a hit that flies straight out from the batter; "the batter hit a liner to the shortstop"
+51539,liner lining,a piece of cloth that is used as the inside surface of a garment
+51540,liner ocean_liner,a large commercial ship (especially one that carries passengers on a regular schedule)
+51541,linesman,official (in tennis, soccer, football, etc.) who assists the referee in some way (especially by watching for out of bounds or offside)
+51542,lineup,the schedule of programs for a particular period; "the network's fall lineup"
+51543,lineup police_lineup identity_parade,a line of persons arranged by police for inspection or identification
+51544,ling,American hakes
+51545,ling Molva_molva,elongated marine food fish of Greenland and northern Europe; often salted and dried
+51546,ling ling_ko Trapa_bicornis,water chestnut whose spiny fruit has two rather than 4 prongs
+51547,lingam,the Hindu phallic symbol of Siva
+51548,lingcod,the lean flesh of a fish caught off the Pacific coast of the United States
+51549,lingcod Ophiodon_elongatus,food fish of the northern Pacific related to greenlings
+51550,lingerie intimate_apparel,women's underwear and nightclothes
+51551,lingonberry mountain_cranberry cowberry lowbush_cranberry,tart red berries similar to American cranberries but smaller
+51552,lingua_franca interlanguage koine,a common language used by speakers of different languages; "Koine is a dialect of ancient Greek that was the lingua franca of the empire of Alexander the Great and was widely spoken throughout the eastern Mediterranean area in Roman times"
+51553,lingual,a consonant that is produced with the tongue and other speech organs
+51554,lingual_artery arteria_lingualis,an artery originating from the external carotid artery and supplying the under side of the tongue
+51555,lingual_vein vena_lingualis,a vein that receives blood from the tongue and the floor of the mouth and empties into the internal jugular or the facial vein
+51556,linguica,a highly seasoned Portuguese pork sausage flavored with garlic and onions
+51557,linguine linguini,pasta in long slender flat strips
+51558,linguist linguistic_scientist,a specialist in linguistics
+51559,linguist polyglot,a person who speaks more than one language
+51560,linguistic_competence,(linguistics) a speaker's implicit, internalized knowledge of the rules of their language (contrasted with linguistic performance)
+51561,linguistic_performance,(linguistics) a speaker's actual use of language in real situations; what the speaker actually says, including grammatical errors and other non-linguistic features such as hesitations and other disfluencies (contrasted with linguistic competence)
+51562,linguistic_process,a process involved in human language
+51563,linguistic_process language,the cognitive processes involved in producing and understanding linguistic communication; "he didn't have the language to express his feelings"
+51564,linguistic_profiling,using speech characteristics or dialect to identify a speaker's race or religion or social class
+51565,linguistic_relation,a relation between linguistic forms or constituents
+51566,linguistics,the scientific study of language
+51567,linguistics philology,the humanistic study of language and literature
+51568,linguistics_department department_of_linguistics,the academic department responsible for teaching and research in linguistics
+51569,liniment embrocation,a medicinal liquid that is rubbed into the skin to relieve muscular stiffness and pain
+51570,linin,an obsolete term for the network of viscous material in the cell nucleus on which the chromatin granules were thought to be suspended
+51571,lining,the act of attaching an inside lining (to a garment or curtain etc.)
+51572,lining facing,providing something with a surface of a different material
+51573,lining liner,a protective covering that protects an inside surface
+51574,link,a unit of length equal to 1/100 of a chain
+51575,link,(computing) an instruction that connects one part of a program or an element on a list to another program or list
+51576,link data_link,an interconnecting circuit between two or more locations for the purpose of transmitting and receiving data
+51577,link linkup tie tie-in,a fastener that serves to join or connect; "the walls are held together with metal links placed in the wet mortar during construction"
+51578,link nexus,the means of connection between things linked in series
+51579,linkage,an associative relation
+51580,linkage,a mechanical system of rods or springs or pivots that transmits power or motion
+51581,linkage,the act of linking things together
+51582,linkage gene_linkage,(genetics) traits that tend to be inherited together as a consequence of an association between their genes; all of the genes of a given chromosome are linked (where one goes they all go)
+51583,linkage_editor,an editor program that creates one module from several by resolving cross-references among the modules
+51584,linkage_group linked_genes,any pair of genes that tend to be transmitted together; "the genes of Drosophila fall into four linkage groups"
+51585,linkboy linkman,(formerly) an attendant hired to carry a torch for pedestrians in dark streets
+51586,links golf_links,a golf course that is built on sandy ground near a shore
+51587,linnet lintwhite Carduelis_cannabina,small Old World finch whose male has a red breast and forehead
+51588,linocut,a print that is made from a design carved in relief into a block of linoleum
+51589,linocut,a design carved in relief into a block of linoleum
+51590,linoleic_acid linolic_acid,a liquid polyunsaturated fatty acid abundant in plant fats and oils; a fatty acid essential for nutrition; used to make soap
+51591,linolenic_acid,a liquid polyunsaturated fatty acid that occurs in some plant oils; an essential fatty acid
+51592,linoleum lino,a floor covering
+51593,linoleum_knife linoleum_cutter,a knife having a short stiff blade with a curved point used for cutting linoleum
+51594,linseed flaxseed,the seed of flax used as a source of oil
+51595,linseed_oil flaxseed_oil,a drying oil extracted from flax seed and used in making such things as oil paints
+51596,linsey-woolsey,a rough fabric of linen warp and wool or cotton woof
+51597,linstock,a stick about a meter long with a point on one end (to stick in the ground) and a forked head on the other end (to hold a lighted match); formerly used to fire cannons
+51598,lint,fine ravellings of cotton or linen fibers
+51599,lint,cotton or linen fabric with the nap raised on one side; used to dress wounds
+51600,linuron,a herbicide that kills weeds without harming vegetables
+51601,lion king_of_beasts Panthera_leo,large gregarious predatory feline of Africa and India having a tawny coat with a shaggy mane in the male
+51602,lion social_lion,a celebrity who is lionized (much sought after)
+51603,lion's-ear Leonotis_nepetaefolia Leonotis_nepetifolia,pantropical herb having whorls of striking lipped flowers; naturalized in United States
+51604,lion's_foot gall_of_the_earth Nabalus_serpentarius Prenanthes_serpentaria,common perennial herb widely distributed in the southern and eastern United States having drooping clusters of pinkish flowers and thick basal leaves suggesting a lion's foot in shape; sometimes placed in genus Prenanthes
+51605,lion-hunter,someone who tries to attract social lions as guests
+51606,lion-hunter,someone who hunts lions
+51607,lion-jaw_forceps,a type of forceps
+51608,lion_cub,a young lion
+51609,lioness,a female lion
+51610,lionet,a small or young lion
+51611,lionfish,brightly striped fish of the tropical Pacific having elongated spiny fins
+51612,lip,(botany) either of the two parts of a bilabiate corolla or calyx
+51613,lip,either of two fleshy folds of tissue that surround the mouth and play a role in speaking
+51614,lip,either the outer margin or the inner margin of the aperture of a gastropod's shell
+51615,lip-gloss,makeup that makes the lips shiny
+51616,lip_balm,a balm applied to the lips
+51617,lip_fern lipfern,any of various terrestrial ferns of the genus Cheilanthes; cosmopolitan in arid and semiarid temperate or tropical regions
+51618,lip_reader,someone who can understand spoken words by watching the movements of a speaker's lips
+51619,lip_synchronization lip_synchronisation lip_synch lip_sync,combining audio and video recording in such a way that the sound is perfectly synchronized with the action that produced it; especially synchronizing the movements of a speaker's lips with the sound of his speech
+51620,liparis,an orchid of the genus Liparis having few leaves and usually fairly small yellow-green or dull purple flowers in terminal racemes
+51621,lipase,an enzyme secreted in the digestive tract that catalyzes the breakdown of fats into individual fatty acids that can be absorbed into the bloodstream
+51622,lipectomy selective_lipectomy,plastic surgery involving the breakdown and removal of fatty tissue
+51623,lipemia lipaemia lipidemia lipidaemia lipoidemia lipoidaemia hyperlipemia hyperlipaemia hyperlipidemia hyperlipidaemia hyperlipoidemia hyperlipoidaemia,presence of excess lipids in the blood
+51624,lipid lipide lipoid,an oily organic compound insoluble in water but soluble in organic solvents; essential structural component of living cells (along with proteins and carbohydrates)
+51625,lipid-lowering_medicine lipid-lowering_medication statin_drug statin,a medicine that lowers blood cholesterol levels by inhibiting HMG-CoA reductase
+51626,lipidosis,a disorder of lipid metabolism; abnormal levels of certain fats accumulate in the body
+51627,lipogram,a text that excludes a particular letter or particular letters of the alphabet
+51628,lipoma adipose_tumor,a tumor consisting of fatty tissue
+51629,lipomatosis,pathology in which fat accumulates in lipomas in the body
+51630,lipoprotein,a conjugated protein having a lipid component; the principal means for transporting lipids in the blood
+51631,liposarcoma,sarcoma of fat cells
+51632,liposomal_delivery_vector,a transducing vector that uses liposomes to carry the gene of interest
+51633,liposome,an artificially made microscopic vesicle into which nucleic acids can be packaged; used in molecular biology as a transducing vector
+51634,liposuction suction_lipectomy,lipectomy (especially for cosmetic purposes) in which excess fatty tissue is removed from under the skin by suction
+51635,lipreading,perceiving what a person is saying by observing the movements of the lips
+51636,lipstick lip_rouge,makeup that is used to color the lips
+51637,lipstick_plant Aeschynanthus_radicans,epiphyte or creeping on rocks; Malaysian plant having somewhat fleshy leaves and bright red flowers
+51638,liquefaction,the conversion of a solid or a gas into a liquid
+51639,liquefied_petroleum_gas bottled_gas,hydrocarbon gases, usually propane or butane, kept under pressure
+51640,liqueur cordial,strong highly flavored sweet liquor usually drunk after a meal
+51641,liqueur_glass,a small glass for serving a small amount of liqueur (typically after dinner)
+51642,liquid,a substance that is liquid at room temperature and pressure
+51643,liquid,fluid matter having no fixed shape but a fixed volume
+51644,liquid,a frictionless continuant that is not a nasal consonant (especially `l' and `r')
+51645,liquid liquidness liquidity liquid_state,the state in which a substance exhibits a characteristic readiness to flow with little or no tendency to disperse and relatively high incompressibility
+51646,liquid_air,air in a liquid state
+51647,liquid_assets current_assets quick_assets,assets in the form of cash (or easily convertible into cash)
+51648,liquid_bleach,a solution containing bleaching agents; used for laundry
+51649,liquid_body_substance bodily_fluid body_fluid humor humour,the liquid parts of the body
+51650,liquid_crystal,a liquid exhibiting properties of a crystal that are not shown by ordinary liquids
+51651,liquid_crystal_display LCD,a digital display that uses liquid crystal cells that change reflectivity in an applied electric field; used for portable computer displays and watches etc.
+51652,liquid_detergent,a detergent in liquid form
+51653,liquid_diet,a diet of foods that can be served in liquid or strained form (plus custards or puddings); prescribed after certain kinds of surgery
+51654,liquid_metal_reactor,a nuclear reactor using liquid metal as a coolant
+51655,liquid_nitrogen,nitrogen in a liquid state
+51656,liquid_oxygen LOX,a bluish translucent magnetic liquid obtained by compressing gaseous oxygen and then cooling it below its boiling point; used as an oxidizer in rocket propellants
+51657,liquid_soap,soap in liquid form
+51658,liquid_unit liquid_measure,a unit of capacity for liquids (for measuring the volumes of liquids or their containers)
+51659,liquidambar,any tree of the genus Liquidambar
+51660,liquidation settlement,termination of a business operation by using its assets to discharge its liabilities
+51661,liquidator receiver,(law) a person (usually appointed by a court of law) who liquidates assets or preserves them for the benefit of affected parties
+51662,liquidity,being in cash or easily convertible to cash; debt paying ability
+51663,liquor,a liquid substance that is a solution (or emulsion or suspension) used or obtained in an industrial process; "waste liquors"
+51664,liquor pot_liquor pot_likker,the liquid in which vegetables or meat have be cooked
+51665,liquor spirits booze hard_drink hard_liquor John_Barleycorn strong_drink,an alcoholic beverage that is distilled rather than fermented
+51666,liquor_license liquor_licence,a license authorizing the holder to sell alcoholic beverages
+51667,lira Italian_lira,formerly the basic unit of money in Italy; equal to 100 centesimi
+51668,lira Maltese_lira,the basic unit of money on Malta; equal to 100 cents
+51669,lira Turkish_lira,the basic unit of money in Turkey
+51670,lis_pendens,a pending lawsuit
+51671,lisinopril Prinival Zestril,an ACE inhibiting drug (trade names Prinival or Zestril) administered as an antihypertensive and after heart attacks
+51672,lisle,a fabric woven with lisle thread
+51673,lisle lisle_thread,a strong tightly twisted cotton thread (usually made of long-staple cotton)
+51674,lisp,a speech defect that involves pronouncing `s' like voiceless `th' and `z' like voiced `th'
+51675,lisper,a speaker who lisps
+51676,lissomeness litheness suppleness,the gracefulness of a person or animal that is flexible and supple
+51677,list listing,a database containing an ordered array of items (names or topics)
+51678,list_price,the selling price of something as stated in a catalogue or price list; often subject to discounts; "I got it at 30% off the list price"
+51679,list_processing,processing data that is given in the form of chained lists
+51680,list_system scrutin_de_liste scrutin_de_liste_system,based on the principle of proportional representation; voters choose between party lists, the number elected from each list being determined by the percentage cast for each list out of the total vote
+51681,listed_security,a security that has been accepted for trading by one of the organized and registered securities exchanges in the US
+51682,listening hearing,the act of hearing attentively; "you can learn a lot by just listening"; "they make good music--you should give them a hearing"
+51683,listening_watch continuous_receiver_watch,a watch established for the reception of traffic of interest to the unit maintaining the watch
+51684,lister,assessor who makes out the tax lists
+51685,lister lister_plow lister_plough middlebreaker middle_buster,moldboard plow with a double moldboard designed to move dirt to either side of a central furrow
+51686,listeria,any species of the genus Listeria
+51687,listeriosis listeria_meningitis,an infectious disease of animals and humans (especially newborn or immunosuppressed persons) caused by the bacterium Listeria monocytogenes; in sheep and cattle the infection frequently involves the central nervous system and causes various neurological symptoms
+51688,listing itemization itemisation,the act of making a list of items
+51689,listlessness torpidity torpidness torpor,inactivity resulting from lethargy and lack of vigor or energy
+51690,litany,any long and tedious address or recital; "the patient recited a litany of complaints"; "a litany of failures"
+51691,litas,the basic unit of money in Lithuania
+51692,litchi lichee litchi_tree Litchi_chinensis Nephelium_litchi,Chinese tree cultivated especially in Philippines and India for its edible fruit; sometimes placed in genus Nephelium
+51693,litchi litchi_nut litchee lichi leechee lichee lychee,Chinese fruit having a thin brittle shell enclosing a sweet jellylike pulp and a single seed; often dried
+51694,liter litre l cubic_decimeter cubic_decimetre,a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)
+51695,literacy,the ability to read and write
+51696,literal_interpretation,an interpretation based on the exact wording
+51697,literalism,a disposition to interpret statements in their literal sense
+51698,literalism,the doctrine of realistic (literal) portrayal in art or literature
+51699,literalness,adhereing to the concrete construal of something
+51700,literary_agent,an agent who represents an author in dealings with publishers
+51701,literary_composition literary_work,imaginative or creative writing
+51702,literary_critic,a critic of literature
+51703,literary_criticism lit_crit,the informed analysis and evaluation of literature
+51704,literary_review,a review devoted to literary criticism
+51705,literary_study,the humanistic study of literature
+51706,literate literate_person,a person who can read and write
+51707,literati,the literary intelligentsia
+51708,literature,published writings in a particular style on a particular subject; "the technical literature"; "one aspect of Waterloo has not yet been treated in the literature"
+51709,literature,creative writing of recognized artistic value
+51710,literature,the profession or art of a writer; "her place in literature is secure"
+51711,literature lit,the humanistic study of a body of literature; "he took a course in Russian lit"
+51712,lithia_water,mineral water containing lithium salts
+51713,lithiasis,the formation of stones (calculi) in an internal organ
+51714,lithium Li atomic_number_3,a soft silver-white univalent element of the alkali metal group; the lightest metal known; occurs in several minerals
+51715,lithium_carbonate Lithane Lithonate Eskalith,a white powder (LiCO3) used in manufacturing glass and ceramics and as a drug; the drug (trade names Lithane or Lithonate or Eskalith) is used to treat some forms of depression and manic episodes of manic-depressive disorder
+51716,lithograph,a print produced by lithography
+51717,lithograph lithograph_machine,duplicator that prints by lithography; a flat surface (of stone or metal) is treated to absorb or repel ink in the desired pattern
+51718,lithographer,a printmaker who uses lithography
+51719,lithography,a method of planographic printing from a metal or stone surface
+51720,lithography,the act of making a lithographic print
+51721,lithomancer,one who practices lithomancy
+51722,lithomancy,divination by means of stones or stone talismans
+51723,lithophyte lithophytic_plant,plant that grows on rocks or stony soil and derives nourishment from the atmosphere
+51724,lithops living_stone stoneface stone-face stone_plant stone_life_face flowering_stone,any plant of the genus Lithops native to Africa having solitary yellow or white flowers and thick leaves that resemble stones
+51725,lithosphere geosphere,the solid part of the earth consisting of the crust and outer mantle
+51726,lithotomy,surgical removal of a stone (calculus)
+51727,lithotomy_position,a position lying on your back with knees bent and thighs apart; assumed for vaginal or rectal examination
+51728,lithuresis,passing small stones with the urine
+51729,litigant litigator,(law) a party to a lawsuit; someone involved in litigation; "plaintiffs and defendants are both litigants"
+51730,litigation judicial_proceeding,a legal proceeding in a court; a judicial contest to determine and enforce legal rights
+51731,litigiousness,a quarrelsome disposition to engage in or carry on lawsuits; "charges of litigiousness and widespread perjury"
+51732,litmus litmus_test,a coloring material (obtained from lichens) that turns red in acid solutions and blue in alkaline solutions; used as a very rough acid-base indicator
+51733,litmus_paper,unsized paper treated with litmus for use as an acid-base indicator
+51734,litmus_test,a test that relies on a single indicator; "her litmus test for good breeding is whether you split infinitives"
+51735,litotes meiosis,understatement for rhetorical effect (especially when expressing an affirmative by negating its contrary); "saying `I was not a little upset' when you mean `I was very upset' is an example of litotes"
+51736,litter,rubbish carelessly dropped or left about (especially in public places)
+51737,litter,the offspring at one birth of a multiparous mammal
+51738,litter,conveyance consisting of a chair or bed carried on two poles by bearers
+51739,litterbin litter_basket litter-basket,bin (usually in or outside a public building) into which the public can put rubbish
+51740,litterer litterbug litter_lout,a person who litters public places with refuse
+51741,little,a small amount or duration; "he accepted the little they gave him"
+51742,little-head_snakeweed Gutierrezia_microcephala,similar to Gutierrezia sarothrae but with flower heads having fewer rays and disk flowers
+51743,little-league_team,a team that plays in a little league
+51744,little_auk dovekie Plautus_alle,small short-billed auk abundant in Arctic regions
+51745,little_barley Hordeum_pusillum,annual barley native to western North America and widespread in southern United States and tropical America
+51746,little_black_ant Monomorium_minimum,tiny glossy black ant; nests outdoors but invades houses for food
+51747,little_blue_heron Egretta_caerulea,small bluish-grey heron of the western hemisphere
+51748,little_brother,a younger brother; "my little brother just had his 50th birthday"
+51749,little_brown_bat little_brown_myotis Myotis_leucifugus,the small common North American bat; widely distributed
+51750,little_chief_hare Ochotona_princeps,North American pika
+51751,little_egret Egretta_garzetta,Old World egret
+51752,little_finger pinkie pinky,the finger farthest from the thumb
+51753,little_golden_zinnia Zinnia_grandiflora,subshrub having short leafy stems and numerous small flower heads with nearly round yellow-orange rays; Arizona south to Mexico and east to Kansas
+51754,little_league,a commercially sponsored baseball league for players between 8 and 12 years of age
+51755,little_leaguer,a player between 8 and 12 years of age who is a member of a little-league team
+51756,little_owl Athene_noctua,small European owl
+51757,little_potato rosette russet_scab stem_canker,rhizoctinia disease of potatoes
+51758,little_sister,a younger sister
+51759,little_skate Raja_erinacea,most plentiful skate in North American inshore waters in summer; to 21 inches
+51760,little_slam small_slam,winning all but one of the tricks in a hand of bridge
+51761,little_theater little_theatre,a small theater for experimental drama or collegiate or community groups
+51762,little_toe,the fifth smallest outermost toe
+51763,littleneck littleneck_clam,a quahog when young and small; usually eaten raw; an important food popular in New York
+51764,littleneck littleneck_clam,a young quahog
+51765,littoral litoral littoral_zone sands,the region of the shore of a lake or sea or ocean
+51766,liturgics liturgiology,the study of liturgies
+51767,liturgist,an authority on liturgies
+51768,liturgy,a rite or body of rites prescribed for public worship
+51769,live_axle driving_axle,the axle of a self-propelled vehicle that provides the driving power
+51770,live_birth,the birth of a living fetus (regardless of the length of gestation)
+51771,live_body,the body of a living animal or person
+51772,live_load superload,a variable load on a structure (e.g. a bridge) such as moving traffic
+51773,live_oak,any of several American evergreen oaks
+51774,live_steam,steam coming from a boiler at full pressure
+51775,liveborn_infant,infant who shows signs of life after birth
+51776,livedo,skin disorder characterized by patchy bluish discolorations on the skin
+51777,liveliness animation,general activity and motion
+51778,liveliness life spirit sprightliness,animation and energy in action or expression; "it was a heavy play and the actors tried in vain to give life to it"
+51779,liver,a person who has a special life style; "a high liver"
+51780,liver,someone who lives in a place; "a liver in cities"
+51781,liver,liver of an animal used as meat
+51782,liver,large and complicated reddish-brown glandular organ located in the upper right portion of the abdominal cavity; secretes bile and functions in metabolism of protein and carbohydrate and fat; synthesizes substances involved in the clotting of the blood; synthesizes vitamin A; detoxifies poisonous substances and breaks down worn-out erythrocytes
+51783,liver-spotted_dalmatian,a brown-spotted dalmatian
+51784,liver_cancer cancer_of_the_liver,malignant neoplastic disease of the liver usually occurring as a metastasis from another cancer; symptoms include loss of appetite and weakness and bloating and jaundice and upper abdominal discomfort
+51785,liver_chestnut,a solid dark brown horse
+51786,liver_disease,a disease affecting the liver
+51787,liver_fluke Fasciola_hepatica,flatworm parasitic in liver and bile ducts of domestic animals and humans
+51788,liver_pudding liver_sausage liverwurst,sausage containing ground liver
+51789,liver_spot,a type of skin disease that causes brown spots on the skin
+51790,liverwort hepatic,any of numerous small green nonvascular plants of the class Hepaticopsida growing in wet places and resembling green seaweeds or leafy mosses
+51791,livery,uniform worn by some menservants and chauffeurs
+51792,livery,the care (feeding and stabling) of horses for pay
+51793,livery_company,one of the chartered companies of London originating with the craft guilds
+51794,livery_stable,stable where horses and vehicles are kept for hire
+51795,liveryman,a worker in a livery stable
+51796,livestock stock farm_animal,any animals kept for use or profit
+51797,lividity,a state of fury so great the face becomes discolored
+51798,lividness lividity luridness paleness pallidness pallor wanness achromasia,unnatural lack of color in the skin (as from bruising or sickness or emotional distress)
+51799,living,people who are still living; "save your pity for the living"
+51800,living_arrangement,an arrangement to allow people (or ideas) to coexist
+51801,living_death,a state of constant misery
+51802,living_granite living_rock stone_mimicry_plant,highly succulent stemless clump-forming plants with grey-green leaves similar in texture to lumps of granite; South Africa
+51803,living_quarters quarters,housing available for people to live in; "he found quarters for his family"; "I visited his bachelor quarters"
+51804,living_rock Ariocarpus_fissuratus,usually unbranched usually spineless cactus covered with warty tubercles and having magenta flowers and white or green fruit; resembles the related mescal; northeastern Mexico and southwestern United States
+51805,living_room living-room sitting_room front_room parlor parlour,a room in a private house or establishment where people can sit and talk and relax
+51806,living_space lebensraum,space sought for occupation by a nation whose population is expanding
+51807,living_thing animate_thing,a living (or once living) entity
+51808,living_trust inter_vivos_trust,a trust created and operating during the grantor's lifetime
+51809,living_wage,a wage sufficient for a worker and family to subsist comfortably
+51810,living_will,a document written by someone still legally capable requesting that he should be allowed to die if subsequently severely disabled or suffering terminal illness; "after he discovered he had AIDS he drew up a living will"
+51811,livingroom_suite livingroom_set living-room_suite living-room_set living_room_suite living_room_set,a suite of furniture for the living room
+51812,livingstone_daisy Dorotheanthus_bellidiformis,low-growing showy succulent annual of South Africa having white or pink or red or orange flowers and spatulate leaves covered in papillae that resemble small crystals
+51813,liza Mugil_liza,similar to the striped mullet and takes its place in the Caribbean region
+51814,lizard,relatively long-bodied reptile with usually two pairs of legs and a tapering tail
+51815,lizard's-tail swamp_lily water_dragon Saururus_cernuus,North American herbaceous perennial of wet places having slender curled racemes of small white flowers
+51816,lizard_orchid Himantoglossum_hircinum,an orchid of the genus Himantoglossum
+51817,lizardfish snakefish snake-fish,tropical fishes with large mouths in lizard-like heads; found worldwide
+51818,llama,wild or domesticated South American cud-chewing animal related to camels but smaller and lacking a hump
+51819,llano,an extensive grassy and nearly treeless plain (especially in Latin America)
+51820,loach,slender freshwater fishes of Eurasia and Africa resembling catfishes
+51821,load,an amount of alcohol sufficient to intoxicate; "he got a load on and started a brawl"
+51822,load,the power output of a generator or power plant
+51823,load,electrical device to which electrical power is delivered
+51824,load loading,a quantity that can be processed or transported at one time; "the system broke down under excessive loads"
+51825,load loading burden,weight to be borne or conveyed
+51826,load-shedding,cutting off the electric current on certain lines when the demand becomes greater than the supply
+51827,load_factor,(aeronautics) the ratio of an external load to the weight of the aircraft (measured in g)
+51828,load_line Plimsoll_line Plimsoll_mark Plimsoll,waterlines to show the level the water should reach when the ship is properly loaded
+51829,loader,an attendant who loads guns for someone shooting game
+51830,loading,the ratio of the gross weight of an airplane to some factor determining its lift
+51831,loading,the labor of putting a load of something on or in a vehicle or ship or container etc.; "the loading took 2 hours"
+51832,loading_zone loading_area,a stop where carriers can be loaded and unloaded
+51833,loaf,a quantity of food (other than bread) formed in a particular shape; "meat loaf"; "sugar loaf"; "a loaf of cheese"
+51834,loaf_of_bread loaf,a shaped mass of baked bread that is usually sliced before eating
+51835,loam,a rich soil consisting of a mixture of sand and clay and decaying organic materials
+51836,loan,the temporary provision of money (usually at interest)
+51837,loan_application,an application to borrow money
+51838,loan_approval,formal authorization to get a loan (usually from a bank)
+51839,loan_collection,a number of pictures loaned by their owners for exhibition
+51840,loan_office,an office where loans are negotiated and repaid
+51841,loanblend loan-blend hybrid,a word that is composed of parts from different languages (e.g., `monolingual' has a Greek prefix and a Latin root)
+51842,loaner,a car that is lent as a replacement for one that is under repair
+51843,loanword loan,a word borrowed from another language; e.g. `blitz' is a German word borrowed into modern English
+51844,loasa,any of various perennial South American plants of the genus Loasa having stinging hairs and showy white or yellow or reddish-orange flowers
+51845,loathsomeness repulsiveness sliminess vileness lousiness wickedness,the quality of being disgusting to the senses or emotions; "the vileness of his language surprised us"
+51846,lob,an easy return of a tennis ball in a high arc
+51847,lob,the act of propelling something (as a ball or shell etc.) in a high arc
+51848,lobar_pneumonia,pneumonia affecting one or more lobes of the lung; commonly due to streptococcal infection
+51849,lobate_foot,a bird's foot having separate toes each with membranous flaps along the sides
+51850,lobby,the people who support some common cause or business or principle or sectional interest
+51851,lobbying_expense,expenses incurred in promoting or evaluating legislation; "many lobbying expenses are deductible by a taxpayer"
+51852,lobbyism,the practice of lobbying; the activities of a lobbyist
+51853,lobbyist,someone who is employed to persuade legislators to vote for legislation that favors the lobbyist's employer
+51854,lobe,(botany) a part into which a leaf is divided
+51855,lobe,the enhanced response of an antenna in a given direction as indicated by a loop in its radiation pattern
+51856,lobe,(anatomy) a somewhat rounded subdivision of a bodily organ or part; "ear lobe"
+51857,lobe,a rounded projection that is part of a larger structure
+51858,lobe_of_the_lung,any of the three lobes of the right lung or the two lobes of the left lung
+51859,lobectomy,surgical removal of a lobe from any organ of the body (as the lung or brain)
+51860,lobed_leaf,a leaf having deeply indented margins
+51861,lobed_spleenwort Asplenium_pinnatifidum,a spleenwort of eastern and southern United States
+51862,lobelia,any plant or flower of the genus Lobelia
+51863,loblolly,thick gruel
+51864,loblolly_pine frankincense_pine Pinus_taeda,tall spreading three-needled pine of southeastern United States having reddish-brown fissured bark and a full bushy upper head
+51865,lobotomy leukotomy leucotomy prefrontal_lobotomy prefrontal_leukotomy prefrontal_leucotomy frontal_lobotomy,surgical interruption of nerve tracts to and from the frontal lobe of the brain; often results in marked cognitive and personality changes
+51866,lobscouse lobscuse scouse,a stew of meat and vegetables and hardtack that is eaten by sailors
+51867,lobster,flesh of a lobster
+51868,lobster,any of several edible marine crustaceans of the families Homaridae and Nephropsidae and Palinuridae
+51869,lobster_Newburg lobster_a_la_Newburg,lobster in Newburg sauce served on buttered toast or rice
+51870,lobster_butter,butter blended with chopped lobster or seasoned with essence from lobster shells
+51871,lobster_pot,trap for catching lobsters
+51872,lobster_stew,diced lobster meat in milk or cream
+51873,lobster_tail,lobster tail meat; usually from spiny rock lobsters
+51874,lobster_tart,a pastry shell filled with cooked lobster
+51875,lobster_thermidor,diced lobster mixed with Mornay sauce placed back in the shell and sprinkled with grated cheese and browned
+51876,lobsterman,a person whose occupation is catching lobsters
+51877,lobularity,the property of having lobules
+51878,lobule,a small lobe or subdivision of a lobe
+51879,local,public transport consisting of a bus or train that stops at all stations or stops; "the local seemed to take forever to get to New York"
+51880,local_anesthesia local_anaesthesia,loss of sensation in a small area of the body (as when a local anesthetic is injected for a tooth extraction)
+51881,local_anesthetic local_anaesthetic local topical_anesthetic topical_anaesthetic,anesthetic that numbs a particular area of the body
+51882,local_area_network LAN,a local computer network for communication between computers; especially a network connecting computers and word processors and other electronic office equipment to create a communication system between offices
+51883,local_authority,an administrative unit of local government
+51884,local_call,a telephone call made within a local calling area
+51885,local_department department_of_local_government,a permanent department created to perform the work of a local government
+51886,local_government,the government of a local area
+51887,local_option,freedom of a local government to determine by popular vote the applicability of a controversial law in their jurisdiction
+51888,local_oscillator heterodyne_oscillator,an oscillator whose output heterodynes with the incoming radio signal to produce sum and difference tones
+51889,local_road local_street,a street that is primarily used to gain access to the property bordering it
+51890,localism,a phrase or pronunciation that is peculiar to a particular locality
+51891,localization localisation location locating fix,a determination of the place where something is; "he got a good fix on the target"
+51892,localization_of_function localisation_of_function localization_principle localisation_principle localization localisation,(physiology) the principle that specific functions have relatively circumscribed locations in some particular part or organ of the body
+51893,location,a workplace away from a studio at which some or all of a movie may be made; "they shot the film on location in Nevada"
+51894,location,a point or extent in space
+51895,locative_role locative,the semantic role of the noun phrase that designates the place of the state or action denoted by the verb
+51896,locator locater,a person who fixes the boundaries of land claims
+51897,loch,a long narrow inlet of the sea in Scotland (especially when it is nearly landlocked)
+51898,loch,Scottish word for a lake
+51899,lochia,substance discharged from the vagina (cellular debris and mucus and blood) that gradually decreases in amount during the weeks following childbirth
+51900,lock,a mechanism that detonates the charge of a gun
+51901,lock,a fastener fitted to a door or drawer to keep it firmly closed
+51902,lock,any wrestling hold in which some part of the opponent's body is twisted or pressured
+51903,lock curl ringlet whorl,a strand or cluster of hair
+51904,lock ignition_lock,a restraint incorporated into the ignition switch to prevent the use of a vehicle by persons who do not have the key
+51905,lock lock_chamber,enclosure consisting of a section of canal that can be closed to control the water level; used to raise or lower vessels that pass through it
+51906,lock-gate,a gate that can be locked
+51907,lock-up_option,an option to buy the crown jewels offered to a white knight in order to forestall a hostile takeover
+51908,lockage,a fee charged for passage through a lock in a canal or waterway
+51909,lockage,a system of locks in a canal or waterway
+51910,lockage,passage through a lock in a canal or waterway
+51911,lockdown,the act of confining prisoners to their cells (usually to regain control during a riot)
+51912,locker,a fastener that locks or closes
+51913,locker_room,a room (as at an athletic facility or workplace) where you can change clothes and which contains lockers for the temporary storage of your clothing and personal possessions
+51914,locket,a small ornamental case; usually contains a picture or a lock of hair and is worn on a necklace
+51915,locking lockup,the act of locking something up to protect it
+51916,locking_pliers,pliers that can be locked in place
+51917,lockmaster lockman lockkeeper,a worker in charge of a lock (on a canal)
+51918,locknut safety_nut,supplementary nut that is screwed down on a primary nut to prevent it from loosening
+51919,lockout,a management action resisting employee's demands; employees are barred from entering the workplace until they agree to terms
+51920,lockring lock_ring lock_washer,washer that prevents a nut from loosening
+51921,locksmith,someone who makes or repairs locks
+51922,lockstep,a standard procedure that is followed mindlessly; "the union's support had been in lockstep for years"
+51923,lockstep,a manner of marching in file in which each person's leg moves with and behind the corresponding leg of the person ahead; "the prisoner's ankles were so chained together that they could only march in lockstep"
+51924,lockstitch,machine stitch in which the top thread interlocks with the bobbin thread
+51925,lockup,jail in a local police station
+51926,loco_disease locoism,a disease of livestock caused by locoweed poisoning; characterized by weakness and lack of coordination and trembling and partial paralysis
+51927,locomotion motive_power motivity,the power or ability to move
+51928,locomotion travel,self-propelled movement
+51929,locomotive engine locomotive_engine railway_locomotive,a wheeled vehicle consisting of a self-propelled engine that is used to draw trains along railway tracks
+51930,locoweed crazyweed crazy_weed,any of several leguminous plants of western North America causing locoism in livestock
+51931,locule loculus,a small cavity or space within an organ or in a plant or animal
+51932,locum_tenens locum,someone (physician or clergyman) who substitutes temporarily for another member of the same profession
+51933,locus,the specific site of a particular gene on its chromosome
+51934,locus,the set of all points or lines that satisfy or are determined by specific conditions; "the locus of points equidistant from a given point is a circle"
+51935,locus_classicus,an authoritative and often-quoted passage
+51936,locus_of_infection,the specific site in the body where an infection originates
+51937,locust,hardwood from any of various locust trees
+51938,locust,migratory grasshoppers of warm regions having short antennae
+51939,locust_tree locust,any of various hardwood trees of the family Leguminosae
+51940,loddon_pondweed Potamogeton_nodosus Potamogeton_americanus,pondweed with floating leaves; of northern United States and Europe
+51941,lode load,a deposit of valuable ore occurring within definite boundaries separating it from surrounding rocks
+51942,lodestar loadstar,guiding star; a star that is used as a reference point in navigation or astronomy
+51943,lodestar loadstar,something that serves as a model or guide
+51944,lodestone loadstone,a permanent magnet consisting of magnetite that possess polarity and has the power to attract as well as to be attracted magnetically
+51945,lodge,small house at the entrance to the grounds of a country mansion; usually occupied by a gatekeeper or gardener
+51946,lodge hunting_lodge,a small (rustic) house used as a temporary shelter
+51947,lodge indian_lodge,any of various Native American dwellings
+51948,lodger boarder roomer,a tenant in someone's house
+51949,lodging,the act of lodging
+51950,lodging_house rooming_house,a house where rooms are rented
+51951,lodgment lodgement,bringing a charge or accusation against someone
+51952,lodgment lodgement lodging,the state or quality of being lodged or fixed even temporarily; "the lodgment of the balloon in the tree"
+51953,loess,a fine-grained unstratified accumulation of clay and silt deposited by the wind
+51954,loft,(golf) the backward slant on the head of some golf clubs that is designed to drive the ball high in the air
+51955,loft,floor consisting of a large unpartitioned space over a factory or warehouse or other commercial space
+51956,loft attic garret,floor consisting of open space at the top of a house just below roof; often used for storage
+51957,loft pigeon_loft,a raised shelter in which pigeons are kept
+51958,loft_bombing toss_bombing,a bombing run in which the bomber approaches the target at a low altitude and pulls up just before releasing the bomb
+51959,log,a segment of the trunk of a tree when stripped of branches
+51960,log,a written record of messages sent or received; "they kept a log of all transmission by the radio station"; "an email log"
+51961,log,a written record of events on a voyage (of a ship or plane)
+51962,log,measuring instrument that consists of a float that trails from a ship by a knotted line in order to measure the ship's speed through the water
+51963,log_cabin,a cabin built with logs
+51964,log_line,a knotted cord that runs out from a reel to a piece of wood that is attached to it
+51965,loganberry,large red variety of the dewberry
+51966,loganberry Rubus_loganobaccus Rubus_ursinus_loganobaccus,red-fruited bramble native from Oregon to Baja California
+51967,logarithm log,the exponent required to produce a given number
+51968,logarithmic_scale,scale on which actual distances from the origin are proportional to the logarithms of the corresponding scale numbers
+51969,logbook,a book in which the log is written
+51970,loge,balcony consisting of the forward section of a theater mezzanine
+51971,loggerhead loggerhead_turtle Caretta_caretta,very large carnivorous sea turtle; wide-ranging in warm open seas
+51972,loggerhead_shrike Lanius_lucovicianus,a common shrike of southeastern United States having black bands around the eyes
+51973,loggia,a roofed arcade or gallery with open sides stretching along the front or side of a building; often at an upper level
+51974,logging,the work of cutting down trees for timber
+51975,logic,the branch of philosophy that analyzes inference
+51976,logic,the system of operations performed by a computer that underlies the machine's representation of logical operations
+51977,logic,the principles that guide reasoning within a given field or situation; "economic logic requires it"; "by the logic of war"
+51978,logic,reasoned and reasonable judgment; "it made a certain kind of logic"
+51979,logic logical_system system_of_logic,a system of reasoning
+51980,logic_bomb slag_code,a set of instructions inserted into a program that are designed to execute (or `explode') if a particular condition is satisfied; when exploded it may delete or corrupt data, or print a spurious message, or have other harmful effects; "a disgruntled employee planted a logic bomb"
+51981,logic_diagram logical_diagram,a graphical representation of a program using formal logic
+51982,logic_element,an electronic device that performs an elementary logic operation
+51983,logic_operation logical_operation,an operation that follows the rules of symbolic logic
+51984,logic_programming logic_programing,creating a program that enables the computer to reason logically
+51985,logical_fallacy,a fallacy in logical argumentation
+51986,logical_positivist,someone who maintains that any statement that cannot be verified empirically is meaningless
+51987,logical_proof,proof of a logical theorem
+51988,logical_relation,a relation between propositions
+51989,logical_topology,the way the network works; "a network that looks like a star can have the logical topology of a bus"
+51990,logicality logicalness,correct and valid reasoning
+51991,logician logistician,a person skilled at symbolic logic
+51992,logicism,(philosophy) the philosophical theory that all of mathematics can be derived from formal logic
+51993,loginess logginess,a dull and listless state resulting from weariness
+51994,logion,a saying of Jesus that is regarded as authentic although it is not recorded in the Gospels
+51995,logistic_assessment,a judgment of the logistic support required for some particular military operation
+51996,logistic_support logistic_assistance,assistance between and within military commands
+51997,logistics,handling an operation that involves providing labor and materials be supplied as needed
+51998,logjam,any stoppage attributable to unusual activity; "the legislation ran into a logjam"
+51999,logjam,an immovable mass of logs blocking a river
+52000,logo logotype,a company emblem or device
+52001,logogram logograph,a single written symbol that represents an entire word or phrase without indicating its pronunciation; "7 is a logogram that is pronounced `seven' in English and `nanatsu' in Japanese"
+52002,logomach logomachist,someone given to disputes over words
+52003,logomachy,argument about words or the meaning of words
+52004,logorrhea logomania,pathologically excessive (and often incoherent) talking
+52005,logrolling,act of exchanging favors for mutual gain; especially trading of influence or votes among legislators to gain passage of certain projects
+52006,logwood,very hard brown to brownish-red heartwood of a logwood tree; used in preparing a purplish red dye
+52007,logwood logwood_tree campeachy bloodwood_tree Haematoxylum_campechianum,spiny shrub or small tree of Central America and West Indies having bipinnate leaves and racemes of small bright yellow flowers and yielding a hard brown or brownish-red heartwood used in preparing a black dye
+52008,loin,a cut of meat taken from the side and back of an animal between the ribs and the rump
+52009,loin lumbus,either side of the backbone between the hipbone and the ribs in humans as well as quadrupeds
+52010,loin_of_lamb,meat from a loin of lamb
+52011,loins,the region of the hips and groin and lower abdomen
+52012,loir Glis_glis,large European dormouse
+52013,loiterer lingerer,someone who lingers aimlessly in or about a place
+52014,loligo,somewhat flattened cylindrical squid
+52015,lollipop sucker all-day_sucker,hard candy on a stick
+52016,lollipop_lady lollipop_woman,a woman hired to help children cross a road safely near a school
+52017,lomatia,any of various ornamental evergreens of the genus Lomatia having attractive fragrant flowers
+52018,loment,seedpods that are constricted between the seeds and that break apart when mature into single-seeded segments
+52019,lomustine,an antineoplastic drug often used to treat brain tumors or Hodgkin's disease
+52020,loneliness solitariness,the state of being alone in solitary isolation
+52021,loner lone_wolf lone_hand,a person who avoids the company or assistance of others
+52022,long-billed_marsh_wren Cistothorus_palustris,American wren that inhabits tall reed beds
+52023,long-clawed_prawn river_prawn Palaemon_australis,large (a foot or more) edible freshwater prawn common in Australian rivers
+52024,long-eared_bat,any of various Old or New World bats having very long ears
+52025,long-eared_owl Asio_otus,slender European owl of coniferous forests with long ear tufts
+52026,long-head_coneflower prairie_coneflower Ratibida_columnifera,plant similar to the Mexican hat coneflower; from British Columbia to New Mexico
+52027,long-horned_beetle longicorn longicorn_beetle,long-bodied beetle having very long antennae
+52028,long-horned_grasshopper tettigoniid,grasshoppers with long threadlike antennae and well-developed stridulating organs on the forewings of the male
+52029,long-spurred_violet Viola_rostrata,violet of eastern North America having lilac-purple flowers with a long slender spur
+52030,long-staple_cotton,cotton with relatively long fibers
+52031,long-sufferance long-suffering,patient endurance of pain or unhappiness
+52032,long-tailed_porcupine Trichys_lipura,porcupine of Borneo and Sumatra having short spines and a long tail
+52033,long-term_memory LTM,your general store of remembered information
+52034,long_beech_fern narrow_beech_fern northern_beech_fern Phegopteris_connectilis Dryopteris_phegopteris Thelypteris_phegopteris,beech fern of North America and Eurasia
+52035,long_bone os_longum,in limbs of vertebrate animals: a long cylindrical bone that contains marrow
+52036,long_chain long-chain_molecule,(chemistry) a relatively long chain of atoms in a molecule
+52037,long_distance long-distance_call trunk_call,a telephone call made outside the local calling area; "I talked to her by long distance"
+52038,long_division,the operation of division in which the sequence of steps are indicated in detail
+52039,long_fly,a gymnastic exercise involving a long leap from a vaulting horse
+52040,long_haul,a journey over a long distance; "it's a long haul from New York to Los Angeles"
+52041,long_hundred great_hundred 120,the cardinal number that is the product of ten and twelve
+52042,long_iron,an iron with a long shaft and a steep face; for hitting long low shots
+52043,long_johns,warm underwear with long legs
+52044,long_jump broad_jump,a competition that involves jumping as far as possible from a running start
+52045,long_measure,a measure of length
+52046,long_pepper Piper_longum,slender tropical climber of the eastern Himalayas
+52047,long_run long_haul,a period of time sufficient for factors to work themselves out; "in the long run we will win"; "in the long run we will all be dead"; "he performed well over the long haul"
+52048,long_saphenous_vein great_saphenous_vein,the longest vein in the body; runs from foot to the groin where it joins the femoral vein
+52049,long_shot,a contestant that is unlikely to win
+52050,long_shot,a venture that involves great risk but promises great rewards
+52051,long_sleeve,a sleeve extending from shoulder to wrist
+52052,long_suit,in a hand, the suit having the most cards
+52053,long_time age years,a prolonged period of time; "we've known each other for ages"; "I haven't been there for years and years"
+52054,long_tom,a long swivel cannon formerly used by the navy
+52055,long_ton ton gross_ton,a British unit of weight equivalent to 2240 pounds
+52056,long_trousers long_pants,trousers reaching to the foot
+52057,long_underwear union_suit,an undergarment with shirt and drawers in one piece
+52058,long_wave,a radio wave with a wavelength longer than a kilometer (a frequency below 300 kilohertz)
+52059,longan lungen longanberry Dimocarpus_longan Euphorbia_litchi Nephelium_longana,tree of southeastern Asia to Australia grown primarily for its sweet edible fruit resembling litchi nuts; sometimes placed in genera Euphorbia or Nephelium
+52060,longanberry dragon's_eye,Asian fruit similar to litchi
+52061,longboat,the largest boat carried by a merchant sailing vessel
+52062,longbow,a powerful wooden bow drawn by hand; usually 5-6 feet long; used in medieval England
+52063,longbowman,a medieval English archer who used a longbow
+52064,longer thirster yearner,a person with a strong desire for something; "a longer for money"; "a thirster after blood"; "a yearner for knowledge"
+52065,longevity length_of_service,duration of service; "her longevity as a star"; "had unusual longevity in the company"
+52066,longevity seniority,the property of being long-lived
+52067,longfin_mako Isurus_paucus,similar to shortfin mako but darker blue
+52068,longhand running_hand cursive cursive_script,rapid handwriting in which letters are set down in full and are cursively connected within words without lifting the writing implement from the paper
+52069,longheaded_thimbleweed Anemone_riparia,thimbleweed of northern North America
+52070,longhorn Texas_longhorn,long-horned beef cattle formerly common in southwestern United States
+52071,longing yearning hungriness,prolonged unfulfilled desire or need
+52072,longitude,the angular distance between a point on any meridian and the prime meridian at Greenwich
+52073,longleaf_pine pitch_pine southern_yellow_pine Georgia_pine Pinus_palustris,large three-needled pine of southeastern United States having very long needles and gnarled twisted limbs; bark is red-brown deeply ridged; an important timber tree
+52074,longness,the property of being of long spatial extent; "one gene causes shortness and the other causes longness"
+52075,longness,duration as an extension
+52076,longshot,a photograph taken from a distance
+52077,longtail_weasel long-tailed_weasel Mustela_frenata,the common American weasel distinguished by large size and black-tipped tail
+52078,longueur,a period of dullness or boredom (especially in a work of literature or performing art)
+52079,longways longways_dance,country dancing performed with couples in two long lines facing each other
+52080,longwool,a domestic long-wool sheep
+52081,loofa loofah luffa loufah_sponge,the dried fibrous part of the fruit of a plant of the genus Luffa; used as a washing sponge or strainer
+52082,loofah vegetable_sponge Luffa_cylindrica,the loofah climber that has cylindrical fruit
+52083,look,physical appearance; "I don't like the looks of this place"
+52084,look looking looking_at,the act of directing the eyes toward something and perceiving it visually; "he went out to have a look"; "his look was fixed on her eyes"; "he gave it a good looking at"; "his camera does his looking for him"
+52085,lookdown lookdown_fish Selene_vomer,similar to moonfish but with eyes high on the truncated forehead
+52086,looking looking_for,the act of searching visually
+52087,looking-glass_plant Heritiera_littoralis,small tree of coastal regions of Old World tropics whose leaves are silvery beneath
+52088,looking_glass glass,a mirror; usually a ladies' dressing mirror
+52089,looking_glass_tree Heritiera_macrophylla,large evergreen tree of India and Burma whose leaves are silvery beneath
+52090,lookout lookout_man sentinel sentry watch spotter scout picket,a person employed to keep watch for some anticipated event
+52091,lookout observation_post,an elevated post affording a wide view
+52092,lookout observation_tower lookout_station observatory,a structure commanding a wide view of its surroundings
+52093,lookout outlook,the act of looking out
+52094,loom,a textile machine for weaving yarn into a textile
+52095,loon,a worthless lazy fellow
+52096,loon diver,large somewhat primitive fish-eating diving bird of the northern hemisphere having webbed feet placed far back; related to the grebes
+52097,loop,anything with a round or oval shape (formed by a curve that is closed and does not intersect itself)
+52098,loop,an inner circle of advisors (especially under President Reagan); "he's no longer in the loop"
+52099,loop,the basic pattern of the human fingerprint
+52100,loop,a computer program that performs a series of instructions repeatedly until some specified condition is satisfied
+52101,loop,an intrauterine device in the shape of a loop
+52102,loop loop-the-loop,a flight maneuver; aircraft flies a complete circle in the vertical plane
+52103,loop-line,a railway branch line that branches from the trunk line and then rejoins it later on
+52104,loop_gain,(telecommunication) the gain of a feedback amplifier or system as a function of how much output is fed back to the input; "if the loop gain is too great the system may go into oscillation"
+52105,loop_knot,any of various knots used to make a fixed loop in a rope
+52106,loop_topology loop,the topology of a network whose components are serially connected in such a way that the last component is connected to the first component
+52107,loophole,an ambiguity (especially one in the text of a law or contract) that makes it possible to evade a difficulty or obligation
+52108,loophole,a small hole in a fortified wall; for observation or discharging weapons
+52109,looping_ill,an acute viral disease of the nervous system in sheep; can be transmitted by Ixodes ricinus
+52110,loose_cannon,a person who is expected to perform a particular task but who is out of control and dangerous
+52111,loose_end unfinished_business,work that is left incomplete
+52112,loose_sentence,a complex sentence in which the main clause comes first and the subordinate clause follows
+52113,loose_smut,disease of grains; the entire head is a dusty mass of spores
+52114,loose_smut,a smut fungus of the genus Ustilago causing a smut disease of grains in which the entire head is transformed into a dusty mass of spores
+52115,looseness,freedom from restraint; "the flexibility and looseness of the materials from which mythology is made"
+52116,looseness,a lack of strict accuracy; laxity of practice; "misunderstandings can often be traced to a looseness of expression"
+52117,looseness,the quality of movability by virtue of being free from attachment or other restraints
+52118,looseness play,movement or space for movement; "there was too much play in the steering wheel"
+52119,loosening laxation,the act of making something less tight
+52120,loosestrife,any of numerous herbs and subshrubs of the genus Lythrum
+52121,loosestrife,any of various herbs and subshrubs of the genus Lysimachia
+52122,loot booty pillage plunder prize swag dirty_money,goods or money obtained illegally
+52123,looting robbery,plundering during riots or in wartime
+52124,lopsidedness skewness,an oblique or slanting asymmetry
+52125,loquat Japanese_plum,yellow olive-sized semitropical fruit with a large free stone and relatively little flesh; used for jellies
+52126,loquat loquat_tree Japanese_medlar Japanese_plum Eriobotrya_japonica,evergreen tree of warm regions having fuzzy yellow olive-sized fruit with a large free stone; native to China and Japan
+52127,lorazepam Ativan,tranquilizer (trade name Ativan) used to treat anxiety and tension and insomnia
+52128,lorchel,a large fungus of the family Helvellaceae
+52129,lordolatry,the worship of a lord because of his rank or title
+52130,lordosis hollow-back,an abnormal inward (forward) curvature of the vertebral column
+52131,lordship,the authority of a lord
+52132,lore traditional_knowledge,knowledge gained through tradition or anecdote; "early peoples passed on plant and animal lore through legend"
+52133,lorgnette,eyeglasses that are held to the eyes with a long handle
+52134,lorica,a hard protective sheath (as secreted by certain protoctists, for example)
+52135,lorikeet,any of various small lories
+52136,lorry,a large low horse-drawn wagon without sides
+52137,lorry camion,a large truck designed to carry heavy loads; usually without sides
+52138,lory,small brightly colored Australasian parrots having a brush-tipped tongue for feeding on nectar and soft fruits
+52139,loser,a gambler who loses a bet
+52140,loser also-ran,a contestant who loses the contest
+52141,losing_streak,a streak of losses
+52142,losings losses,something lost (especially money lost at gambling)
+52143,loss,gradual decline in amount or activity; "weight loss"; "a serious loss of business"
+52144,loss,something that is lost; "the car was a total loss"; "loss of livestock left the rancher bankrupt"
+52145,loss,the experience of losing a loved one; "he sympathized on the loss of their grandfather"
+52146,loss,the act of losing someone or something; "everyone expected him to win so his loss was a shock"
+52147,loss deprivation,the disadvantage that results from losing something; "his loss of credibility led to his resignation"; "losing him is no great deprivation"
+52148,loss red_ink red,the amount by which the cost of a business exceeds its revenue; "the company operated at a loss last year"; "the company operated in the red last year"
+52149,loss_of_consciousness,the occurrence of a loss of the ability to perceive and respond
+52150,loss_ratio,the ratio of the annual claims paid by an insurance company to the premiums received
+52151,lost-and-found,repository in a public building where lost articles can be kept until their owners reclaim them
+52152,lost_cause,a defeated cause or a cause for which defeat is inevitable
+52153,lot,a parcel of land having fixed boundaries; "he bought a lot on the lake"
+52154,lota,a globular water bottle used in Asia
+52155,loti,the basic unit of money in Lesotho
+52156,lotion,any of various cosmetic preparations that are applied to the skin
+52157,lotion application,liquid preparation having a soothing or antiseptic or medicinal action when applied to the skin; "a lotion for dry skin"
+52158,lottery,something that is regarded as a chance event; "the election was just a lottery to them"
+52159,lottery drawing,players buy (or are given) chances and prizes are distributed by casting lots
+52160,lotto bingo beano keno,a game in which numbered balls are drawn at random and players cover the corresponding numbers on their cards
+52161,lotus Indian_lotus sacred_lotus Nelumbo_nucifera,native to eastern Asia; widely cultivated for its large pink or white flowers
+52162,lotus white_lotus Egyptian_water_lily white_lily Nymphaea_lotus,white Egyptian lotus: water lily of Egypt to southeastern Africa; held sacred by the Egyptians
+52163,lotus-eater stargazer,someone indifferent to the busy world; "in the Odyssey Homer tells of lotus-eaters who live in dreamy indolence"
+52164,lotus_position,a sitting position with the legs crossed; used in yoga
+52165,lotus_tree Ziziphus_lotus,shrubby deciduous tree of the Mediterranean region
+52166,lotusland lotus_land,an idyllic realm of contentment and self-indulgence
+52167,loudmouth blusterer,a person who causes trouble by speaking indiscreetly
+52168,loudspeaker speaker speaker_unit loudspeaker_system speaker_system,electro-acoustic transducer that converts electrical signals into sounds loud enough to be heard at a distance
+52169,lough,a long narrow (nearly landlocked) cove in Ireland
+52170,lough,Irish word for a lake
+52171,louis_d'or,a former French gold coin
+52172,lounge waiting_room waiting_area,a room (as in a hotel or airport) with seating where people can wait
+52173,lounge_lizard lizard,a man who idles about in the lounges of hotels and bars in search of women who would support him
+52174,lounger,an article of clothing designed for comfort and leisure wear
+52175,loungewear,clothing suitable for relaxation
+52176,lounging_jacket smoking_jacket,a man's soft jacket usually with a tie belt; worn at home
+52177,lounging_pajama lounging_pyjama,pajamas worn while lounging
+52178,loupe jeweler's_loupe,small magnifying glass (usually set in an eyepiece) used by jewelers and horologists
+52179,louse sucking_louse,wingless usually flattened bloodsucking insect parasitic on warm-blooded animals
+52180,louse_fly hippoboscid,bloodsucking dipterous fly parasitic on birds and mammals
+52181,lout clod stumblebum goon oaf lubber lummox lump gawk,an awkward stupid person
+52182,louvar Luvarus_imperialis,large silvery fish found worldwide in warm seas but nowhere common; resembles a whale and feeds on plankton
+52183,louver louvre fin,one of a set of parallel slats in a door or window to admit air and reject rain
+52184,louvered_window jalousie,a window with glass louvers
+52185,lovage,stalks eaten like celery or candied like angelica; seeds used for flavoring or pickled like capers
+52186,lovage Levisticum_officinale,herb native to southern Europe; cultivated for its edible stalks and foliage and seeds
+52187,lovastatin Mevacor,an oral drug (trade name Mevacor) to reduce blood cholesterol levels; used when dietary changes have proved inadequate
+52188,love,a score of zero in tennis or squash; "it was 40 love"
+52189,love,a strong positive emotion of regard and affection; "his love for his work"; "children need a lot of love"
+52190,love passion,any object of warm affection or devotion; "the theater was her first love"; "he has a passion for cock fighting"
+52191,love sexual_love erotic_love,a deep feeling of sexual desire and attraction; "their love left them indifferent to their surroundings"; "she was his first love"
+52192,love-in-a-mist Nigella_damascena,European garden plant having finely cut leaves and white or pale blue flowers
+52193,love-in-a-mist running_pop wild_water_lemon Passiflora_foetida,tropical American passion flower with finely dissected bracts; stems malodorous when crushed
+52194,love-in-winter western_prince's_pine Chimaphila_umbellata Chimaphila_corymbosa,Eurasian herb with white or pinkish flowers in a terminal corymb
+52195,love-lies-bleeding velvet_flower tassel_flower Amaranthus_caudatus,young leaves widely used as leaf vegetables; seeds used as cereal
+52196,love-token,keepsake given as a token of love
+52197,love_affair romance,a relationship between two lovers
+52198,love_feast,a social gathering intended to create goodwill among the participants
+52199,love_grass bay_grass,any of various grasses of the genus Eragrostis; specially useful for forage and for the prevention of erosion
+52200,love_knot lovers'_knot lover's_knot true_lovers'_knot true_lover's_knot,a stylized or decorative knot used as an emblem of love
+52201,love_letter billet_doux,a personal letter to a loved one expressing affection
+52202,love_lyric,the lyric of a love song
+52203,love_match,a marriage for love's sake; not an arranged marriage
+52204,love_seat loveseat tete-a-tete vis-a-vis,small sofa that seats two people
+52205,love_song love-song,a song about love or expressing love for another person
+52206,love_story romance,a story dealing with love
+52207,love_vine Cuscuta_gronovii,leafless parasitic vine with dense clusters of small white bell-shaped flowers on orange-yellow stems that twine around clover or flax
+52208,lovebird,small African parrot noted for showing affection for their mates
+52209,loved_one,a person who you love, usually a member of your family
+52210,lover,a significant other to whom you are not related by marriage
+52211,lover,a person who loves someone or is loved by someone
+52212,lovesickness,a pining for a loved one
+52213,loving-kindness,tender kindness motivated by a feeling of affection
+52214,loving_cup,a large drinking vessel (usually with two handles) that people drink out of in turn at a banquet
+52215,lovingness caring,a loving feeling
+52216,low,a low level or position or degree; "the stock market fell to a new low"
+52217,low depression,an air mass of lower pressure; often brings precipitation; "a low moved in over night bringing sleet and snow"
+52218,low-birth-weight_baby low-birth-weight_infant,an infant born weighing less than 5.5 pounds (2500 grams) regardless of gestational age; "a low-birth-weight infant is at risk for developing lack of oxygen during labor"
+52219,low-bush_blueberry low_blueberry Vaccinium_angustifolium Vaccinium_pennsylvanicum,low-growing deciduous shrub of northeastern North America having flowers in compact racemes and bearing sweet dark blue berries
+52220,low-calorie_diet,a diet that is low on calories
+52221,low-density_lipoprotein LDL beta-lipoprotein,a lipoprotein that transports cholesterol in the blood; composed of moderate amount of protein and a large amount of cholesterol; high levels are thought to be associated with increased risk of coronary heart disease and atherosclerosis
+52222,low-fat_diet,a diet containing limited amounts of fat and stressing foods high in carbohydrates; used in treatment of some gallbladder conditions
+52223,low-fat_milk,milk from which some of the cream has been removed
+52224,low-level_formatting initialization initialisation,(computer science) the format of sectors on the surface of a hard disk drive so that the operating system can access them and setting a starting position
+52225,low-level_radioactive_waste,(medicine) radioactive waste consisting of objects that have been briefly exposed to radioactivity (as in certain medical tests)
+52226,low-pass_filter,a filter that passes frequencies below a certain value and attenuates frequencies above that value
+52227,low-sodium_diet low-salt_diet salt-free_diet,a diet that limits the intake of salt (sodium chloride); often used in treating hypertension or edema or certain other disorders
+52228,low-warp-loom,a handloom in which the warp is carried horizontally; for weaving tapestry
+52229,low-water_mark,a line marking the lowest level reached
+52230,low_St_Andrew's_cross Hypericum_hypericoides,low shrubby plant having yellow flowers with four petals arranged in a cross; Bermuda and southeastern United States to West Indies and eastern Mexico
+52231,low_beam,the beam of a car's headlights that provides illumination for a short distance
+52232,low_blow,unscrupulous abuse
+52233,low_brass,brass with 30% (or less) zinc
+52234,low_comedy,a comedy characterized by slapstick and burlesque
+52235,low_explosive,an explosive with a low rate of combustion
+52236,low_frequency LF,30 to 300 kilohertz
+52237,low_gallberry_holly,an evergreen shrub
+52238,low_pitch low_frequency,a pitch that is perceived as below other pitches
+52239,low_profile,a state of low visibility in which public notice is avoided; "he was never one to keep a low profile"
+52240,low_spirits,a state of mild depression
+52241,low_status lowness lowliness,a position of inferior status; low in station or rank or fortune or estimation
+52242,low_tide low_water,the lowest (farthest) ebb of the tide
+52243,lowboy,a low chest or table with drawers and supported on four legs
+52244,lower_berth lower,the lower of two berths
+52245,lower_bound,(mathematics) a number equal to or less than any other number in a given set
+52246,lower_class underclass,the social class lowest in the social hierarchy
+52247,lower_criticism,the study of existing manuscripts of the Scriptures in order to determine the original text
+52248,lower_deck third_deck,the deck below the main deck
+52249,lower_jaw mandible mandibula mandibular_bone submaxilla lower_jawbone jawbone jowl,the jaw in vertebrates that is hinged to open the mouth
+52250,lower_limit,the limit on the lower (or southernmost) side of something
+52251,lower_mantle,the deeper part of the mantle
+52252,lower_respiratory_infection,infection of the lower respiratory tract
+52253,lower_respiratory_tract,the bronchi and lungs
+52254,lower_respiratory_tract_smear bronchoscopic_smear sputum_smear,any of several cytologic smears obtained from different parts of the lower respiratory tract; used for cytologic study of cancer and other diseases of the lungs
+52255,lowerclassman underclassman,an undergraduate who is not yet a senior
+52256,lowering,the act of causing to become less
+52257,lowering letting_down,the act of causing something to move to a lower level
+52258,lowest_common_multiple least_common_multiple lcm,the smallest multiple that is exactly divisible by every member of a set of numbers; "the least common multiple of 12 and 18 is 36"
+52259,lowland,low level country
+52260,lowland_burrowing_treefrog northern_casque-headed_frog Pternohyla_fodiens,terrestrial burrowing nocturnal frog of grassy terrain and scrub forests having very hard upper surface of head; of the United States southwest
+52261,lowland_fir lowland_white_fir giant_fir grand_fir Abies_grandis,lofty fir of the Pacific coast of northwestern America having long curving branches and deep green leaves
+52262,lowness,the quality of being low; lacking height; "he was suddenly aware of the lowness of the ceiling"
+52263,lowness,a low or small degree of any quality (amount or force or temperature etc.); "he took advantage of the lowness of interest rates"
+52264,lox,brine-cured salmon that is lightly smoked
+52265,loxapine Loxitane,a tranquilizer (trade name Loxitane) used to treat schizophrenia
+52266,loyalist stalwart,a person who is loyal to their allegiance (especially in times of revolt)
+52267,loyalty,feelings of allegiance
+52268,loyalty trueness,the quality of being loyal
+52269,lozenge,a small aromatic or medicated candy
+52270,luau,an elaborate Hawaiian feast or party (especially one accompanied by traditional foods and entertainment)
+52271,lubber's_hole,hole in a platform on a mast through which a sailor can climb without going out on the shrouds
+52272,lubber's_line lubber_line lubber's_mark lubber's_point,a fixed line on a ship's compass indicating its heading
+52273,lubricant lubricator lubricating_substance lube,a substance capable of reducing friction by making surfaces smooth or slippery
+52274,lubricating_system force-feed_lubricating_system force_feed pressure-feed_lubricating_system pressure_feed,mechanical system of lubricating internal combustion engines in which a pump forces oil into the engine bearings
+52275,lubrication,the condition of having been made smooth or slippery by the application of a lubricant
+52276,lubrication,an application of a lubricant to something
+52277,lucidity,a lucid state of mind; not confused
+52278,luciferin,pigment occurring in luminescent organisms (as fireflies); emits heatless light when undergoing oxidation
+52279,luck fortune,an unknown and unpredictable phenomenon that leads to a favorable outcome; "it was my good luck to be there"; "they say luck is a lady"; "it was as if fortune guided his hand"
+52280,luck fortune chance hazard,an unknown and unpredictable phenomenon that causes an event to result one way rather than another; "bad luck caused his downfall"; "we ran into each other by pure chance"
+52281,lucky_dip,a game in which prizes (e.g., candies or coins) are concealed in a container and for a small sum a player can draw one out at random
+52282,lucky_dip,a selection or decision purely at random; "their system of hiring people seemed to be a sort of lucky dip"
+52283,lucubration,a solemn literary work that is the product of laborious cogitation
+52284,lucubration,laborious cogitation
+52285,ludo,a simple board game in which players move counters according to the throw of dice
+52286,luff,(nautical) the forward edge of a fore-and-aft sail that is next to the mast
+52287,luff,the act of sailing close to the wind
+52288,luffa dishcloth_gourd sponge_gourd rag_gourd strainer_vine,any of several tropical annual climbers having large yellow flowers and edible young fruits; grown commercially for the mature fruit's dried fibrous interior that is used as a sponge
+52289,lug,a projecting piece that is used to lift or support or turn something
+52290,lug_wrench,a wrench with jaws that have projecting lugs to engage the object that is to be rotated
+52291,luge,a racing sled for one or two people
+52292,luger slider,someone who races the luge
+52293,luggage_carrier,carrier (as behind a bicycle seat) for luggage
+52294,luggage_compartment automobile_trunk trunk boot,compartment in an automobile that carries luggage or shopping or tools; "he put his golf bag in the trunk"
+52295,luggage_rack roof_rack,carrier for holding luggage above the seats of a train or on top of a car
+52296,lugger,small fishing boat rigged with one or more lugsails
+52297,luging,riding a light one-man toboggan
+52298,lugsail lug,a sail with four corners that is hoisted from a yard that is oblique to the mast
+52299,lugworm lug lobworm,marine worms having a row of tufted gills along each side of the back; often used for fishing bait
+52300,lukewarmness tepidity tepidness,a warmness resembling the temperature of the skin
+52301,lull quiet,a period of calm weather; "there was a lull in the storm"
+52302,lullaby cradlesong,the act of singing a quiet song to lull a child to sleep
+52303,lullaby cradlesong berceuse,a quiet song intended to lull a child to sleep
+52304,lumbago lumbar_pain,backache affecting the lumbar region or lower back; can be caused by muscle strain or arthritis or vascular insufficiency or a ruptured intervertebral disc
+52305,lumbar_artery arteria_lumbalis,one of four or five pairs of arteries that originate in the abdominal aorta and supply the lumbar vertebrae and the back muscles and abdominal wall
+52306,lumbar_nerve,any of five pairs of spinal nerves emerging from the lumbar section of the spinal cord
+52307,lumbar_plexus plexus_lumbalis,a lymphatic plexus located along the lower portion of the aorta and iliac vessels
+52308,lumbar_plexus plexus_lumbalis,a plexus of nerves formed by the ventral branches of the first four lumbar nerves
+52309,lumbar_puncture spinal_puncture spinal_tap,removal by centesis of fluid from the subarachnoid space of the lumbar region of the spinal cord for diagnostic or therapeutic purposes
+52310,lumbar_vein vena_lumbalis,veins that drain the posterior body wall and the lumbar vertebral venous plexuses
+52311,lumbar_vertebra,one of 5 vertebrae in the human vertebral column; lumbar vertebrae extend from the twelfth thoracic vertebra down to the sacral vertebrae
+52312,lumber timber,the wood of trees cut and prepared for use as building material
+52313,lumber_room,a storeroom in a house where odds and ends can be stored (especially furniture)
+52314,lumbering,the trade of cutting or preparing or selling timber
+52315,lumberjack lumber_jacket,a short warm outer jacket
+52316,lumberman lumberjack logger feller faller,a person who fells trees
+52317,lumbermill sawmill,a mill for dressing logs and lumber
+52318,lumberyard,a workplace where lumber is stocked for sale
+52319,lumbosacral_plexus,a nerve plexus formed by the ventral divisions of the coccygeal and sacral and lumbar nerves; supplies the lower limbs and perineum and coccygeal area
+52320,lumen,a cavity or passage in a tubular organ; "the lumen of the intestine"
+52321,lumen lm,a unit of luminous flux equal to the amount of light given out through a solid angle of 1 steradian by a point source of 1 candela intensity radiating uniformly in all directions
+52322,luminance_unit,a measure of luminance
+52323,luminary leading_light guiding_light notable notability,a celebrity who is an inspiration to others; "he was host to a large gathering of luminaries"
+52324,luminescence,light not due to incandescence; occurs at low temperatures
+52325,luminescence glow,light from nonthermal sources
+52326,luminism,an artistic movement in the United States that was derived from the Hudson River school; active from 1850 to 1870; painted realistic landscapes in a style that pictured atmospheric light and the use of aerial perspective
+52327,luminosity brightness brightness_level luminance luminousness light,the quality of being luminous; emitting or reflecting light; "its luminosity is measured relative to that of our sun"
+52328,luminous_energy,the energy associated with visible light
+52329,luminous_flux,the rate of flow of light energy
+52330,luminous_flux_unit,a measure of luminous flux per unit area
+52331,luminous_intensity_unit candlepower_unit,a measure of luminous intensity
+52332,lumma,100 lumma equal 1 dram in Armenia
+52333,lump_sugar,refined sugar molded into rectangular shapes convenient as single servings
+52334,lump_sum,a complete payment consisting of a single sum of money
+52335,lumpectomy,surgical removal of a tumor without removing much of the surrounding tissue or lymph nodes; performed in some cases of breast cancer
+52336,lumpenproletariat,(Marxism) the unorganized lower levels of the proletariat who are not interested in revolutionary advancement
+52337,lumper,a taxonomist who classifies organisms into large groups on the basis of major characteristics
+52338,lumpfish Cyclopterus_lumpus,clumsy soft thick-bodied northern Atlantic fish with pelvic fins fused into a sucker; edible roe used for caviar
+52339,lumpsucker,any of several very small lumpfishes
+52340,luna_moth Actias_luna,large pale-green American moth with long-tailed hind wings and a yellow crescent-shaped mark on each forewing
+52341,lunacy madness insaneness,obsolete terms for legal insanity
+52342,lunar_calendar,a calendar based on lunar cycles
+52343,lunar_caustic,silver nitrate fused into sticks and formerly used as a caustic
+52344,lunar_crater,a crater on the Earth's Moon
+52345,lunar_day,the period of time taken for the moon to make one full rotation on its axis (about 27.3 sidereal days)
+52346,lunar_eclipse,the earth interrupts light shining on the moon
+52347,lunar_excursion_module lunar_module LEM,a spacecraft that carries astronauts from the command module to the surface of the moon and back
+52348,lunar_latitude,an imaginary line around the moon parallel to its equator
+52349,lunar_month moon lunation synodic_month,the period between successive new moons (29.531 days)
+52350,lunar_year,a period of 12 lunar months
+52351,lunate_bone semilunar_bone os_lunatum,one of the eight small wrist bones
+52352,lunatic madman maniac,an insane person
+52353,lunatic_fringe,a political unit with extreme and fanatical views
+52354,lunch luncheon tiffin dejeuner,a midday meal
+52355,lunch_meat luncheon_meat,any of various sausages or molded loaf meats sliced and served cold
+52356,luncheon_meeting lunch_meeting,a meeting for lunch; usually to conduct business while eating
+52357,luncher,someone who is eating lunch
+52358,lunching,the act of eating lunch
+52359,lunchroom,a restaurant (in a facility) where lunch can be purchased
+52360,lunchtime lunch_period,the customary or habitual hour for eating lunch; "he observed a regular lunchtime"
+52361,lunette,temporary fortification like a detached bastion
+52362,lunette fenestella,oval or circular opening; to allow light into a dome or vault
+52363,lung,either of two saclike respiratory organs in the chest of vertebrates; serves to remove carbon dioxide and provide oxygen to the blood
+52364,lung-power,the ability to speak loudly
+52365,lung_cancer,carcinoma of the lungs; one of the commonest forms of cancer
+52366,lunge straight_thrust passado,(fencing) an attacking thrust made with one foot forward and the back leg straight and with the sword arm outstretched forward
+52367,lunger,someone who moves forward suddenly (as in fencing)
+52368,lungfish,air-breathing fish having an elongated body and fleshy paired fins; certain species construct mucus-lined mud coverings in which to survive drought
+52369,lungi lungyi longyi,a long piece of brightly colored cloth (cotton or silk) used as clothing (a skirt or loincloth or sash etc.) in India and Pakistan and Burma
+52370,lungless_salamander plethodont,mostly terrestrial salamanders that breathe through their thin moist skin; lay eggs in moist places on land; rarely enter water
+52371,lunisolar_calendar,a calendar based on both lunar and solar cycles
+52372,lunitidal_interval,interval between the moon's transit of a particular meridian and the next high tide at that meridian
+52373,lunula,a crescent-shaped metal ornament of the Bronze Age
+52374,lupine lupin,any plant of the genus Lupinus; bearing erect spikes of usually purplish-blue flowers
+52375,lupus,any of several forms of ulcerative skin disease
+52376,lupus_erythematosus LE,a chronic inflammatory collagen disease affecting connective tissue (skin or joints)
+52377,lupus_vulgaris,tuberculosis of the skin; appears first on the face and heals slowly leaving deep scars
+52378,lurch,a decisive defeat in a game (especially in cribbage)
+52379,lurch lunge,the act of moving forward suddenly
+52380,lurch pitch pitching,abrupt up-and-down motion (as caused by a ship or other conveyance); "the pitching and tossing was quite exciting"
+52381,lurch stumble stagger,an unsteady uneven gait
+52382,lure enticement come-on,qualities that attract by seeming to promise some kind of reward
+52383,lurker skulker lurcher,someone waiting in concealment
+52384,lurking_place,a place suitable for lurking
+52385,lust luxuria,self-indulgent sexual desire (personified as one of the deadly sins)
+52386,luster lustre,a surface coating for ceramics or porcelain
+52387,luster lustre brilliancy splendor splendour,a quality that outshines the usual
+52388,lusterware,pottery with a metallic sheen produced by adding metallic oxides to the glaze
+52389,lustrum,a period of five years
+52390,lustrum,a ceremonial purification of the Roman population every five years following the census
+52391,lute,chordophone consisting of a plucked instrument having a pear-shaped body, a usually bent neck, and a fretted fingerboard
+52392,lute luting,a substance for packing a joint or coating a porous surface to make it impervious to gas or liquid
+52393,lutefisk lutfisk,dried cod soaked in a lye solution before boiling to give it a gelatinous consistency
+52394,luteinizing_hormone LH interstitial_cell-stimulating_hormone ICSH,a gonadotropic hormone that is secreted by the anterior pituitary; stimulates ovulation in female mammals and stimulates androgen release in male mammals
+52395,lutetium lutecium Lu atomic_number_71,a trivalent metallic element of the rare earth group; usually occurs in association with yttrium
+52396,luthier,a craftsman who makes stringed instruments (as lutes or guitars or violins)
+52397,lutist lutanist lutenist,a musician who plays the lute
+52398,lux lx,a unit of illumination equal to 1 lumen per square meter; 0.0929 foot candle
+52399,luxation,displacement or misalignment of a joint or organ
+52400,luxuriance lushness voluptuousness,the property of being lush and abundant and a pleasure to the senses
+52401,luxuriation,an activity that affords excessive pleasure and enjoyment
+52402,luxury,something that is an indulgence rather than a necessity
+52403,luxury luxuriousness opulence sumptuousness,wealth as evidenced by sumptuous living
+52404,luxury_liner express_luxury_liner,a liner equipped for sumptuous living
+52405,lwei,100 lwei equal 1 kwanza in Angola
+52406,lycaenid lycaenid_butterfly,any of various butterflies of the family Lycaenidae
+52407,lycanthropy,(folklore) the magical ability of a person to assume the characteristics of a wolf
+52408,lyceum,a public hall for lectures and concerts
+52409,lychgate lichgate,a roofed gate to a churchyard, formerly used as a temporary shelter for the bier during funerals
+52410,lychnis catchfly,mostly perennial herbs with sticky stems that catch insects; widespread in north temperate zone
+52411,lycopene,carotenoid that makes tomatoes red; may lower the risk of prostate cancer
+52412,lye,a strong solution of sodium or potassium hydroxide
+52413,lye_hominy,hominy prepared by bleaching in lye
+52414,lygaeid lygaeid_bug,a true bug: usually bright-colored; pest of cultivated crops and some fruit trees
+52415,lygus_bug,vector of viral plant diseases
+52416,lying prevarication fabrication,the deliberate act of deviating from the truth
+52417,lymantriid tussock_moth,dull-colored moth whose larvae have tufts of hair on the body and feed on the leaves of many deciduous trees
+52418,lyme_grass,a grass of the genus Elymus
+52419,lymph,a thin coagulable fluid (similar to plasma but) containing white blood cells (lymphocytes) and chyle; is conveyed to the blood stream by lymphatic vessels
+52420,lymph_node lymph_gland node,the source of lymph and lymphocytes
+52421,lymph_vessel lymphatic_vessel,a vascular duct that carries lymph which is eventually added to the venous blood circulation
+52422,lymphadenitis,inflammation of lymph nodes
+52423,lymphadenoma,an abnormally enlarged lymph node
+52424,lymphadenopathy,chronic abnormal enlargement of the lymph nodes (usually associated with disease)
+52425,lymphangiectasia lymphangiectasis,dilatation of a lymph vessel
+52426,lymphangiogram,an angiogram of the lymph nodes and lymph vessels made after the injection of a radiopaque substance
+52427,lymphangiography lymphography,roentgenographic examination of lymph nodes and lymph vessels after injection of a radiopaque contrast medium; produces a lymphangiogram
+52428,lymphangioma,benign angioma consisting of a mass of lymphatic vessels
+52429,lymphangitis,inflammation of a lymph vessel
+52430,lymphatic_system systema_lymphaticum,the interconnected system of spaces and vessels between body tissues and organs by which lymph circulates throughout the body
+52431,lymphatic_tissue lymphoid_tissue,tissue making up the lymphatic system
+52432,lymphedema,swelling (usually in the legs) caused by lymph accumulating in the tissues in the affected areas
+52433,lymphoblast,an immature lymphocyte
+52434,lymphoblastic_leukemia,a form of lymphocytic leukemia in which the abnormal cells in the circulating blood are almost totally lymphoblasts
+52435,lymphocyte lymph_cell,an agranulocytic leukocyte that normally makes up a quarter of the white blood cell count but increases in the presence of infection
+52436,lymphocytic_choriomeningitis,a form of viral meningitis caused by a virus carried by the common house mouse
+52437,lymphocytic_choriomeningitis_virus,the RNA virus that causes lymphocytic choriomeningitis; infects mice and monkeys and dogs and guinea pigs and human beings
+52438,lymphocytic_leukemia,leukemia characterized by enlargement of lymphoid tissues and lymphocytic cells in the circulating blood
+52439,lymphocytopenia lymphopenia,an abnormally small number of lymphocytes in the circulating blood
+52440,lymphocytosis,an abnormal increase in the number of lymphocytes in the circulating blood
+52441,lymphogranuloma,swelling of a lymph node
+52442,lymphogranuloma_venereum LGV lymphopathia_venereum,infectious disease caused by a species of chlamydia bacterium; transmitted by sexual contact; characterized by genital lesions and swelling of lymph nodes in the groin
+52443,lymphokine,a cytokine secreted by helper T cells in response to stimulation by antigens and that acts on other cells of the immune system (as by activating macrophages)
+52444,lymphoma,a neoplasm of lymph tissue that is usually malignant; one of the four major types of cancer
+52445,lymphopoiesis,the formation of lymphocytes in the bone marrow and lymph nodes and thymus and spleen
+52446,lymphuria,the presence of lymph in the urine
+52447,lynch_law,the practice of punishing people by hanging without due process of law
+52448,lynch_mob,a mob that kills a person for some presumed offense without legal authority
+52449,lynching,putting a person to death by mob action without due process of law
+52450,lynx,a text browser
+52451,lynx catamount,short-tailed wildcats with usually tufted ears; valued for their fur
+52452,lypressin,an antidiuretic and vasoconstrictor used to treat diabetes insipidus
+52453,lyrate_leaf,a simple leaf having curvature suggestive of a lyre
+52454,lyre,a harp used by ancient Greeks for accompaniment
+52455,lyre_snake,mildly venomous snake with a lyre-shaped mark on the head; found in rocky areas from southwestern United States to Central America
+52456,lyrebird,Australian bird that resembles a pheasant; the courting male displays long tail feathers in a lyre shape
+52457,lyric lyric_poem,a short poem of songlike quality
+52458,lyric words language,the text of a popular song or musical-comedy number; "his compositions always started with the lyrics"; "he wrote both words and music"; "the song uses colloquial language"
+52459,lyricality lyricism songfulness,the property of being suitable for singing
+52460,lyricism,unrestrained and exaggerated enthusiasm
+52461,lyricist lyrist,a person who writes the words for songs
+52462,lysergic_acid,a crystalline acid often used in medical research; obtained from ergotic alkaloids
+52463,lysergic_acid_diethylamide LSD,a powerful hallucinogenic drug manufactured from lysergic acid
+52464,lysin,any substance (such as an antibody) or agent that can cause lysis
+52465,lysine,an essential amino acid found in proteins; occurs especially in gelatin and casein
+52466,lysine_intolerance,a disorder in which a lack of certain enzymes makes it impossible to digest the amino acid lysine
+52467,lysinemia,an inborn error of metabolism in which the lack of certain enzymes leads to an inability to metabolize the amino acid lysine; characterized by muscular weakness and mental retardation
+52468,lysis,recuperation in which the symptoms of an acute disease gradually subside
+52469,lysis,(biochemistry) dissolution or destruction of cells such as blood cells or bacteria
+52470,lysogenization lysogenisation,the process by which a bacterium acquires a phage that becomes integrated into its genome
+52471,lysogeny lysogenicity,the condition of a host bacterium that has incorporated a phage into its own genetic material; "when a phage infects a bacterium it can either destroy its host or be incorporated in the host genome in a state of lysogeny"
+52472,lysosome,an organelle found in the cytoplasm of most cells (especially in leukocytes and liver and kidney cells)
+52473,lysozyme muramidase,an enzyme found in saliva and sweat and tears that destroys the cell walls of certain bacteria
+52474,lyssavirus,a neurotropic non-arbovirus of the family Rhabdoviridae that causes rabies
+52475,ma mama mamma mom momma mommy mammy mum mummy,informal terms for a mother
+52476,maar,a flat-bottomed volcanic crater that was formed by an explosion; often filled with water
+52477,macadam,broken stone used in macadamized roadways
+52478,macadamia macadamia_tree,any tree of the genus Macadamia
+52479,macadamia_nut,nutlike seed with sweet and crisp white meat
+52480,macadamia_nut macadamia_nut_tree Macadamia_ternifolia,small Australian tree with racemes of pink flowers; widely cultivated (especially in Hawaii) for its sweet edible nuts
+52481,macaque,short-tailed monkey of rocky regions of Asia and Africa
+52482,macaroni,a British dandy in the 18th century who affected Continental mannerisms; "Yankee Doodle stuck a feather in his cap and called it macaroni"
+52483,macaroni,pasta in the form of slender tubes
+52484,macaroni_and_cheese,macaroni prepared in a cheese sauce
+52485,macaroni_salad,having macaroni as the base
+52486,macaroon,chewy cookie usually containing almond paste
+52487,macaw,long-tailed brilliantly colored parrot of Central America and South America; among the largest and showiest of parrots
+52488,mace,spice made from the dried fleshy covering of the nutmeg seed
+52489,mace,a ceremonial staff carried as a symbol of office or authority
+52490,macebearer mace macer,an official who carries a mace of office
+52491,macedoine,mixed diced fruits or vegetables; hot or cold
+52492,maceration,softening due to soaking or steeping
+52493,machete matchet panga,a large heavy knife used in Central and South America as a weapon or for cutting vegetation
+52494,machicolation,a projecting parapet supported by corbels on a medieval castle; has openings through which stones or boiling water could be dropped on an enemy
+52495,machine,an efficient person; "the boxer was a magnificent fighting machine"
+52496,machine,an intricate organization that accomplishes its goals efficiently; "the war machine"
+52497,machine,any mechanical or electrical device that transmits or modifies energy to perform or assist in the performance of human tasks
+52498,machine political_machine,a group that controls the activities of a political party; "he was endorsed by the Democratic machine"
+52499,machine simple_machine,a device for overcoming resistance at one point by applying force at some other point
+52500,machine-displayable_text,electronic text that is stored and used in the form of a digital image
+52501,machine-readable_text,electronic text that is stored as strings of characters and that can be displayed in a variety of formats
+52502,machine_bolt,a bolt with a square or hexagonal head on one end and a threaded shaft on the other end; tightened with a wrench; used to connect metal parts
+52503,machine_code machine_language,a set of instructions coded so that the computer can use it directly without further translation
+52504,machine_gun,a rapidly firing automatic gun (often mounted)
+52505,machine_politician ward-heeler political_hack hack,a politician who belongs to a small clique that controls a political party for private rather than public ends
+52506,machine_readable_dictionary MRD electronic_dictionary,a machine-readable version of a standard dictionary; organized alphabetically
+52507,machine_screw,a screw used either with a nut or with a tapped hole; slotted head can be driven by a screwdriver
+52508,machine_shop,workshop where metal is cut and shaped etc., by machine tools
+52509,machine_stitch sewing-machine_stitch,a sewing stitch made by a sewing machine, sometimes using more than one thread
+52510,machine_tool,a powered machine for cutting or shaping or finishing metals or other materials
+52511,machine_translation MT,the use of computers to translate from one language to another
+52512,machinery,a system of means and activities whereby a social institution functions; "the complex machinery of negotiation"; "the machinery of command labored and brought forth an order"
+52513,machinery,machines or machine systems collectively
+52514,machinist mechanic shop_mechanic,a craftsman skilled in operating machine tools
+52515,machinist's_vise metalworking_vise,a vise with two parallel iron jaws and a wide opening below
+52516,machismo,exaggerated masculinity
+52517,machmeter,speedometer for measuring the speed of an aircraft relative to the speed of sound
+52518,macho,a male exhibiting or characterized by machismo
+52519,macintosh mackintosh mac mack,a waterproof raincoat made of rubberized fabric
+52520,mackerel,flesh of very important usually small (to 18 in) fatty Atlantic fish
+52521,mackerel,any of various fishes of the family Scombridae
+52522,mackerel_scad mackerel_shad Decapterus_macarellus,small silvery fish; Nova Scotia to Brazil
+52523,mackerel_shark,fierce pelagic and oceanic sharks
+52524,mackerel_sky,a sky filled with rows of cirrocumulus or small altocumulus clouds
+52525,mackinaw,a heavy woolen cloth heavily napped and felted, often with a plaid design
+52526,mackinaw Mackinaw_blanket,a thick plaid blanket formerly used in the northwestern United States
+52527,mackinaw Mackinaw_boat,a flat-bottomed boat used on upper Great Lakes
+52528,mackinaw Mackinaw_coat,a short plaid coat made of made of thick woolen material
+52529,mackintosh macintosh,a lightweight waterproof (usually rubberized) fabric
+52530,mackle,a printed impression that is blurred or doubled
+52531,macon maconnais,fine Burgundy wine usually white and dry
+52532,macrame,a relatively coarse lace; made by weaving and knotting cords
+52533,macrencephaly,an abnormally large braincase
+52534,macro macro_instruction,a single computer instruction that results in a series of instructions in machine language
+52535,macrobiotic_diet,a diet consisting chiefly of beans and whole grains
+52536,macrobiotics,the theory of promoting health and longevity by means of diet (especially whole beans and grains)
+52537,macrocephaly megacephaly megalocephaly,an abnormally large head; differs from hydrocephalus because there is no increased intracranial pressure and the overgrowth is symmetrical
+52538,macrocytic_anemia macrocytic_anaemia,anemia in which the average size of erythrocytes is larger than normal
+52539,macrocytosis,the presence of macrocytes in the blood
+52540,macroeconomics,the branch of economics that studies the overall working of a national economy
+52541,macroeconomist macroeconomic_expert,an economist who specializes in macroeconomics
+52542,macroevolution,evolution on a large scale extending over geologic era and resulting in the formation of new taxonomic groups
+52543,macroglossia,a congenital disorder characterized by an abnormally large tongue; often seen in cases of Down's syndrome
+52544,macromolecule supermolecule,any very large complex molecule; found only in plants and animals
+52545,macron,a diacritical mark (-) placed above a vowel to indicate a long sound
+52546,macrophage,a large phagocyte; some are fixed and other circulate in the blood stream
+52547,macrotus Macrotus_californicus,large-eared greyish bat of southern California and northwestern Mexico
+52548,macrozamia,any treelike cycad of the genus Macrozamia having erect trunks and pinnate leaves and large cones with sometimes edible nuts; Australia
+52549,macula macula_lutea macular_area yellow_spot,a small yellowish central area of the retina that is rich in cones and that mediates clear detailed vision
+52550,macular_degeneration,eye disease caused by degeneration of the cells of the macula lutea and results in blurred vision; can cause blindness
+52551,macular_edema,an eye disease caused by a swelling of the macula resulting from leakage and accumulation of fluid
+52552,macule macula,a patch of skin that is discolored but not usually elevated; caused by various diseases
+52553,macumba,(Brazil) followers of a religious cult of African origin
+52554,macumba,popular dance music of Brazil; derived from the practices of the macumba religious cult
+52555,macumba,a Brazilian religious cult of African origin; combines voodoo elements with singing and chanting and dancing
+52556,macushla,(an Irish term of address expressing affection) darling
+52557,madam brothel_keeper,a woman who runs a house of prostitution
+52558,madame,title used for a married Frenchwoman
+52559,madder Rubia_tinctorum,Eurasian herb having small yellow flowers and red roots formerly an important source of the dye alizarin
+52560,madderwort rubiaceous_plant,any of numerous trees or shrubs or vines of the family Rubiaceae
+52561,madia_oil,used as a substitute for olive oil
+52562,madness rabidity rabidness,unrestrained excitement or enthusiasm; "poetry is a sort of divine madness"
+52563,madras,a light patterned cotton cloth
+52564,madrasa madrasah,Muslim schools in Bangladesh and Pakistan; "the Pakistan government decided to close down madrasas that provided military training for their students"; "many madrasas in Bangladesh are supported with money from Saudi Arabia"
+52565,madrigal,an unaccompanied partsong for 2 or 3 voices; follows a strict poetic form
+52566,madrigalist,a singer of madrigals
+52567,madrilene,a tomato-flavored consomme; often served chilled
+52568,madrona madrono manzanita Arbutus_menziesii,evergreen tree of the Pacific coast of North America having glossy leathery leaves and orange-red edible berries; wood used for furniture and bark for tanning
+52569,madwoman,a woman lunatic
+52570,maenad,an unnaturally frenzied or distraught woman
+52571,maenad,(Greek mythology) a woman participant in the orgiastic rites of Dionysus
+52572,maestro master,an artist of consummate skill; "a master of the violin"; "one of the old masters"
+52573,mafia maffia,any tightly knit group of trusted associates
+52574,mafioso,a member of the Sicilian Mafia
+52575,mafioso,a member of the Mafia crime syndicate in the United States
+52576,magazine,product consisting of a paperback periodic publication as a physical object; "tripped over a pile of magazines"
+52577,magazine cartridge,a light-tight supply chamber holding the film and supplying it for exposure as required
+52578,magazine mag,a periodic publication containing pictures and stories and articles of interest to those who purchase it or subscribe to it; "it takes several years before a magazine starts to break even or make money"
+52579,magazine magazine_publisher,a business firm that publishes magazines; "he works for a magazine"
+52580,magazine powder_store powder_magazine,a storehouse (as a compartment on a warship) where weapons and ammunition are stored
+52581,magazine_article,an article published in a magazine
+52582,magazine_rack,a rack for displaying magazines
+52583,magdalen,a reformed prostitute
+52584,magenta,a primary subtractive color for light; a dark purple-red color; the dye for magenta was discovered in 1859, the year of the battle of Magenta
+52585,maggot,the larva of the housefly and blowfly commonly found in decaying organic matter
+52586,magic thaumaturgy,any art that invokes supernatural powers
+52587,magic_bullet,a remedy (drug or therapy or preventive) that cures or prevents a disease; "there is no magic bullet against cancer"
+52588,magic_lantern,an early form of slide projector
+52589,magic_number,the atomic number of an extra stable strongly bound atomic nucleus: 2, 8, 20, 28, 50, 82 or 126
+52590,magic_realism,a literary or artistic genre in which realistic narrative or meticulously realistic painting are combined with surreal elements of fantasy or dreams
+52591,magic_square,a square matrix of n rows and columns; the first n^2 integers are arranged in the cells of the matrix in such a way that the sum of any row or column or diagonal is the same
+52592,magic_trick conjuring_trick trick magic legerdemain conjuration thaumaturgy illusion deception,an illusory feat; considered magical by naive observers
+52593,magical_ability magical_power,an ability to perform magic
+52594,magician prestidigitator conjurer conjuror illusionist,someone who performs magic tricks to amuse an audience
+52595,magistracy magistrature,the position of magistrate
+52596,magistrate,a lay judge or civil authority who administers the law (especially one who conducts a court dealing with minor offenses)
+52597,magma,molten rock in the earth's crust
+52598,magnesite,a white mineral consisting of magnesium carbonate; a source of magnesium
+52599,magnesium Mg atomic_number_12,a light silver-white ductile bivalent metallic element; in pure form it burns with brilliant white flame; occurs naturally only in combination (as in magnesite and dolomite and carnallite and spinel and olivine)
+52600,magnesium_bicarbonate,a bicarbonate that is a major cause of hard water
+52601,magnesium_carbonate,a very white crystalline salt that occurs naturally as magnesite or as dolomite
+52602,magnesium_hydroxide,a white crystalline powder used chiefly in medicines
+52603,magnesium_nitride,a nitride containing nitrogen and magnesium
+52604,magnesium_sulfate,a salt of magnesium
+52605,magnet,(physics) a device that attracts iron and produces a magnetic field
+52606,magnetic_bottle,container consisting of any configuration of magnetic fields used to contain a plasma during controlled thermonuclear reactions
+52607,magnetic_bubble_memory,a nonvolatile storage device that holds information in the form of bubbles on a thin film of magnetic silicate; no longer used in most computers
+52608,magnetic_compass,compass based on an indicator (as a magnetic needle) that points to the magnetic north
+52609,magnetic_core_memory core_memory,(computer science) a computer memory consisting of an array of magnetic cores; now superseded by semiconductor memories
+52610,magnetic_declination magnetic_variation variation,the angle (at a particular location) between magnetic north and true north
+52611,magnetic_dipole,a dipole with opposing magnetic poles
+52612,magnetic_dipole_moment,(physics) a current loop gives rise to a magnetic field characteristic of a magnetic dipole; "An orbiting electron in an atom will have a magnetic dipole moment"
+52613,magnetic_disk magnetic_disc disk disc,(computer science) a memory device consisting of a flat disk covered with a magnetic coating on which information is stored
+52614,magnetic_field magnetic_flux flux,the lines of force surrounding a permanent magnet or a moving charged particle
+52615,magnetic_field_strength magnetic_intensity magnetic_induction magnetic_flux_density,the amount of magnetic flux in a unit area perpendicular to the direction of magnetic flow
+52616,magnetic_flux,a measure of the strength of a magnetic field over a given area
+52617,magnetic_head,an electromagnet (as on a tape recorder) that converts electrical variations into magnetic variations that can be stored on a surface and later retrieved
+52618,magnetic_ink,an ink that contains particles of a magnetic substance whose presence can be detected by magnetic sensors
+52619,magnetic_levitation maglev,high-speed rail technology; train is suspended on a magnetic cushion above a magnetized track and so travels free of friction
+52620,magnetic_line_of_force,a line of force in a magnetic field
+52621,magnetic_meridian,an imaginary line passing through both magnetic poles of the Earth
+52622,magnetic_mine,(nautical) a marine mine that is detonated by a mechanism that responds to magnetic material (as the steel hull of a ship)
+52623,magnetic_moment moment_of_a_magnet,the torque exerted on a magnet or dipole when it is placed in a magnetic field
+52624,magnetic_monopole,a hypothetical particle with a single magnetic pole instead of the usual two
+52625,magnetic_needle,a slender magnet suspended in a magnetic compass on a mounting with little friction; used to indicate the direction of the earth's magnetic pole
+52626,magnetic_pole,either of two points where the lines of force of the Earth's magnetic field are vertical
+52627,magnetic_recorder,recorder consisting of equipment for making records on magnetic media
+52628,magnetic_resonance,resonance of electrons or atoms or molecules or nuclei to radiation frequencies as a result of space quantization in a magnetic field
+52629,magnetic_resonance_imaging MRI,the use of nuclear magnetic resonance of protons to produce proton density images
+52630,magnetic_storage_medium magnetic_medium magnetic_storage,any storage medium in which different patterns of magnetization are used to represent stored bits or bytes of information; "the hard disk in you computer is magnetic storage"
+52631,magnetic_storm,a sudden disturbance of the earth's magnetic field; caused by emission of particles from the sun
+52632,magnetic_stripe,a short strip of magnetic tape attached to a credit card or debit card; it contains data that will tell a reading device who you are and what your account number is, etc.
+52633,magnetic_tape mag_tape tape,memory device consisting of a long thin plastic strip coated with iron oxide; used to record audio or video signals or to store computer information; "he took along a dozen tapes to record the interview"
+52634,magnetism magnetic_attraction magnetic_force,attraction for iron; associated with electric currents as well as magnets; characterized by fields of force
+52635,magnetism magnetics,the branch of science that studies magnetism
+52636,magnetite magnetic_iron-ore,an oxide of iron that is strongly attracted by magnets
+52637,magnetization magnetisation,the extent or degree to which something is magnetized
+52638,magnetization magnetisation,the physical property of being magnetic
+52639,magnetization magnetisation magnetic_induction,the process that makes a substance magnetic (temporarily or permanently)
+52640,magneto magnetoelectric_machine,a small dynamo with a secondary winding that produces a high voltage enabling a spark to jump between the poles of a spark plug in a gasoline engine
+52641,magnetograph,a scientific instrument that registers magnetic variations (especially variations of the earth's magnetic field)
+52642,magnetohydrodynamics,the study of the interaction of magnetic fields and electrically conducting fluids (as plasma or molten metal)
+52643,magnetometer gaussmeter,a meter to compare strengths of magnetic fields
+52644,magnetomotive_force,the force that produces magnetic flux
+52645,magnetomotive_force_unit,a unit of measurement of magnetomotive force
+52646,magneton,a unit of magnetic moment of a molecular or atomic or subatomic particle
+52647,magnetosphere,the magnetic field of a planet; the volume around the planet in which charged particles are subject more to the planet's magnetic field than to the solar magnetic field
+52648,magnetron,a diode vacuum tube in which the flow of electrons from a central cathode to a cylindrical anode is controlled by crossed magnetic and electric fields; used mainly in microwave oscillators
+52649,magnification,the ratio of the size of an image to the size of the object
+52650,magnification,the act of expanding something in apparent size
+52651,magnificence brilliance splendor splendour grandeur grandness,the quality of being magnificent or splendid or grand; "for magnificence and personal service there is the Queen's hotel"; "his `Hamlet' lacks the brilliance that one expects"; "it is the university that gives the scene its stately splendor"; "an imaginative mix of old-fashioned grandeur and colorful art"; "advertisers capitalize on the grandness and elegance it brings to their products"
+52652,magnifico,a person of distinguished rank or appearance
+52653,magnifier,a scientific instrument that magnifies an image
+52654,magnitude,relative importance; "a problem of the first magnitude"
+52655,magnitude,the property of relative size or extent (whether large or small); "they tried to predict the magnitude of the explosion"; "about the magnitude of a small pea"
+52656,magnitude_relation quantitative_relation,a relation between magnitudes
+52657,magnolia,dried bark of various magnolias; used in folk medicine
+52658,magnolia,any shrub or tree of the genus Magnolia; valued for their longevity and exquisite fragrant blooms
+52659,magnoliid_dicot_family,family of dicotyledonous flowering plants regarded as among the most primitive of extant angiosperms
+52660,magnoliid_dicot_genus,genus of dicotyledonous flowering plants regarded as among the most primitive of extant angiosperms
+52661,magnum,a large wine bottle for liquor or wine
+52662,magnum_opus,a great work of art or literature
+52663,magnus_hitch,a rolling hitch similar to a clove hitch
+52664,magpie,long-tailed black-and-white crow that utters a raucous chattering call
+52665,magpie scavenger pack_rat,someone who collects things that have been discarded by others
+52666,maguey Agave_atrovirens,Mexican plant used especially for making pulque which is the source of the colorless Mexican liquor, mescal
+52667,maguey cantala Agave_cantala,Philippine plant yielding a hard fibre used in making coarse twine
+52668,magus,a magician or sorcerer of ancient times
+52669,magus,a member of the Zoroastrian priesthood of the ancient Persians
+52670,maharaja maharajah,a great raja; a Hindu prince or king in India ranking above a raja
+52671,maharani maharanee,a great rani; a princess in India or the wife of a maharaja
+52672,mahatma,(Hinduism) term of respect for a brahmin sage
+52673,mahoe majagua mahagua balibago purau Hibiscus_tiliaceus,shrubby tree widely distributed along tropical shores; yields a light tough wood used for canoe outriggers and a fiber used for cordage and caulk; often cultivated for ornament
+52674,mahogany,wood of any of various mahogany trees; much used for cabinetwork and furniture
+52675,mahogany mahogany_tree,any of various tropical timber trees of the family Meliaceae especially the genus Swietinia valued for their hard yellowish- to reddish-brown wood that is readily worked and takes a high polish
+52676,mahout,the driver and keeper of an elephant
+52677,mahuang Ephedra_sinica,Chinese ephedra yielding ephedrine
+52678,maid maiden,an unmarried girl (especially a virgin)
+52679,maid maidservant housemaid amah,a female domestic
+52680,maiden_aunt,an unmarried aunt
+52681,maiden_blue-eyed_Mary Collinsia_parviflora,small widely branching western plant with tiny blue-and-white flowers; British Columbia to Ontario and south to California and Colorado
+52682,maiden_flight,the first flight of its kind; "the Stealth bomber made its maiden flight in 1989"
+52683,maiden_name,a woman's surname before marriage
+52684,maiden_over maiden,(cricket) an over in which no runs are scored
+52685,maiden_pink Dianthus_deltoides,low-growing loosely mat-forming Eurasian pink with a single pale pink flower with a crimson center
+52686,maiden_voyage,the first voyage of its kind; "in 1912 the ocean liner Titanic sank on its maiden voyage"
+52687,maidenhair maidenhair_fern,any of various small to large terrestrial ferns of the genus Adiantum having delicate palmately branched fronds
+52688,maidenhair_spleenwort Asplenium_trichomanes,small rock-inhabiting fern of northern temperate zone and Hawaii with pinnate fronds
+52689,maidenliness,behavior befitting a young maiden
+52690,maigre maiger Sciaena_aquila,large European marine food fish
+52691,mail,the bags of letters and packages that are transported by the postal service
+52692,mail,a conveyance that transports the letters and packages that are conveyed by the postal system
+52693,mail mail_service postal_service post,the system whereby messages are transmitted via the post office; "the mail handles billions of items every day"; "he works for the United States mail service"; "in England they call mail `the post'"
+52694,mail post,any particular collection of letters or packages that is delivered; "your mail is on the table"; "is there any post for me?"; "she was opening her post"
+52695,mail-order_buying catalog_buying,buying goods to be shipped through the mail
+52696,mail_call,a call of names of those receiving mail
+52697,mail_car,a railway car in which mail is transported and sorted
+52698,mail_fraud,use of the mails to defraud someone
+52699,mail_order,a purchase negotiated by mail
+52700,mail_slot,a slot (usually in a door) through which mail can be delivered
+52701,mail_train,a train that carries mail
+52702,mailbag mail_pouch,pouch used in the shipment of mail
+52703,mailbag postbag,letter carrier's shoulder bag; "in Britain they call a mailbag a postbag"
+52704,mailboat mail_boat packet packet_boat,a boat for carrying mail
+52705,mailbox letter_box,a private box for delivery of mail
+52706,maildrop,a drop where mail can be deposited
+52707,mailer,a person who mails something
+52708,mailer,an advertisement that is sent by mail
+52709,mailer,a container for something to be mailed
+52710,mailing,mail sent by a sender at one time; "the candidate sent out three large mailings"
+52711,mailing posting,the transmission of a letter; "the postmark indicates the time of mailing"
+52712,mailing_address,the address where a person or organization can be communicated with
+52713,mailing_list,a list of names and addresses to which advertising material is mailed
+52714,maillot,tights for dancers or gymnasts
+52715,maillot tank_suit,a woman's one-piece bathing suit
+52716,mailman postman mail_carrier letter_carrier carrier,a man who delivers the mail
+52717,mailsorter,a sorter for sorting mail according to the address
+52718,main,a principal pipe in a system that distributes water or gas or electricity or that collects sewage
+52719,main briny,any very large body of (salt) water
+52720,main-topmast,the topmast next above the mainmast
+52721,main-topsail,a topsail set on the mainmast
+52722,main_clause independent_clause,a clause in a complex sentence that can stand alone as a complete sentence
+52723,main_course,a square mainsail
+52724,main_deck second_deck,the uppermost sheltered deck that runs the entire length of a large vessel
+52725,main_diagonal principal_diagonal,the diagonal of a square matrix running from the upper left entry to the lower right entry
+52726,main_drag,the main street of a town or city
+52727,main_line,the principal route of a transportation system
+52728,main_rotor,rotor consisting of large rotating airfoils on a single-rotor helicopter that produce the lift to support the helicopter in the air
+52729,main_street high_street,street that serves as a principal thoroughfare for traffic in a town
+52730,main_yard,yard for a square mainsail
+52731,mainframe mainframe_computer,a large digital computer serving 100-400 users and occupying a special air-conditioned room
+52732,mainland,the main land mass of a country or continent; as distinguished from an island or peninsula
+52733,mainmast,the chief mast of a sailing vessel with two or more masts
+52734,mainsail,the lowermost sail on the mainmast
+52735,mainspring,the most important spring in a mechanical device (especially a clock or watch); as it uncoils it drives the mechanism
+52736,mainstay,the forestay that braces the mainmast
+52737,mainstream,the prevailing current of thought; "his thinking was in the American mainstream"
+52738,maintenance,means of maintenance of a family or group
+52739,maintenance criminal_maintenance,the unauthorized interference in a legal action by a person having no interest in it (as by helping one party with money or otherwise to continue the action) so as to obstruct justice or promote unnecessary litigation or unsettle the peace of the community; "unlike champerty, criminal maintenance does not necessarily involve personal profit"
+52740,maisonette maisonnette,a self-contained apartment (usually on two floors) in a larger house and with its own entrance from the outside
+52741,maisonette maisonnette,a small house
+52742,majolica maiolica,highly decorated earthenware with a glaze of tin oxide
+52743,major,a university student who is studying a particular field as the principal subject; "she is a linguistics major"
+52744,major,a commissioned military officer in the United States Army or Air Force or Marines; below lieutenant colonel and above captain
+52745,major,the principal field of study of a student at a university; "her major is linguistics"
+52746,major-domo seneschal,the chief steward or butler of a great household
+52747,major-general,a general officer ranking above a brigadier general and below a lieutenant general
+52748,major-league_team major-league_club,a team that plays in a major league
+52749,major_axis,the longest axis of an ellipse or ellipsoid; passes through the two foci
+52750,major_depressive_episode,(psychiatry) a state of depression with all the classic symptoms (anhedonia and lethargy and sleep disturbance and despondency and morbid thoughts and feelings of worthlessness and sometimes attempted suicide) but with no known organic dysfunction
+52751,major_fast_day,one of two major fast days on the Jewish calendar
+52752,major_form_class,any of the major parts of speech of traditional grammar
+52753,major_key major_mode,a key whose harmony is based on the major scale
+52754,major_league big_league majors,the most important league in any sport (especially baseball)
+52755,major_leaguer big_leaguer,a member of a major-league baseball team
+52756,major_lobe,the maximum lobe in the radiation pattern which is intended to be along the forward axis and which gives the effect of a beam
+52757,major_premise major_premiss,the premise of a syllogism that contains the major term (which is the predicate of the conclusion)
+52758,major_scale major_diatonic_scale,a diatonic scale with notes separated by whole tones except for the 3rd and 4th and 7th and 8th
+52759,major_suit,(bridge) a suit of superior scoring value, either spades or hearts
+52760,major_surgery,any surgical procedure that involves anesthesia or respiratory assistance
+52761,major_term,the term in a syllogism that is the predicate of the conclusion
+52762,major_tranquilizer major_tranquillizer major_tranquilliser antipsychotic_drug antipsychotic_agent antipsychotic neuroleptic_drug neuroleptic_agent neuroleptic,tranquilizer used to treat psychotic conditions when a calming effect is desired
+52763,majority absolute_majority,(elections) more than half of the votes
+52764,majority bulk,the property resulting from being or relating to the greater in number of two parts; the main part; "the majority of his customers prefer it"; "the bulk of the work is finished"
+52765,majority legal_age,the age at which persons are considered competent to manage their own affairs
+52766,majority_leader,leader of the majority party in a legislature
+52767,majority_operation,a threshold operation in which each operand is 0 or 1; output is 1 if and only if more than half the operands have the value 1
+52768,majority_opinion,the opinion joined by a majority of the court (generally known simply as `the opinion')
+52769,majority_rule democracy,the doctrine that the numerical majority of an organized group can make decisions binding on the whole group
+52770,make-believe pretend,the enactment of a pretense; "it was just pretend"
+52771,makeover,an overall beauty treatment (involving a person's hair style and cosmetics and clothing) intended to change or improve a person's appearance
+52772,makeover,a complete reconstruction and renovation of something; "the blighted neighborhood underwent a total makeover"
+52773,maker shaper,a person who makes things
+52774,makeready,final preparation and adjustments
+52775,makeshift stopgap make-do,something contrived to meet an urgent need or emergency
+52776,makeup make-up,an event that is substituted for a previously cancelled event; "he missed the test and had to take a makeup"; "the two teams played a makeup one week later"
+52777,makeup make-up war_paint,cosmetics applied to the face to improve or change your appearance
+52778,makeweight,a weight added to the scale to reach a required weight
+52779,makeweight filler,anything added to fill out a whole; "some of the items in the collection are mere makeweights"
+52780,making,(usually plural) the components needed for making or doing something; "the recipe listed all the makings for a chocolate cake"
+52781,mako mako_shark,powerful mackerel shark of the Atlantic and Pacific
+52782,makomako New_Zealand_wine_berry wineberry Aristotelia_serrata Aristotelia_racemosa,graceful deciduous shrub or small tree having attractive foliage and small red berries that turn black at maturity and are used for making wine
+52783,malabsorption,abnormal absorption of nutrients from the digestive tract
+52784,malabsorption_syndrome,a pattern of symptoms including loss of appetite and bloating and weight loss and muscle pain and steatorrhea; associated with celiac disease and sprue and cystic fibrosis
+52785,malacca,stem of the rattan palm used for making canes and umbrella handles
+52786,malacca malacca_cane,a cane made from the stem of a rattan palm
+52787,malachite,a green or blue mineral used as an ore of copper and for making ornamental objects
+52788,malacia,a state of abnormal softening of tissue
+52789,malacologist,a zoologist specializing in the study of mollusks
+52790,malacology,the branch of zoology that studies the structure and behavior of mollusks
+52791,malacostracan_crustacean,a major subclass of crustaceans
+52792,maladjustment,the condition of being unable to adapt properly to your environment with resulting emotional instability
+52793,malady,any unwholesome or desperate condition; "what maladies afflict our nation?"
+52794,malahini,a newcomer to Hawaii
+52795,malaise unease uneasiness,physical discomfort (as mild sickness or depression)
+52796,malamute malemute Alaskan_malamute,breed of sled dog developed in Alaska
+52797,malapropism malaprop,the unintentional misuse of a word by confusion with one that sounds similar
+52798,malaria,an infective disease caused by sporozoan parasites that are transmitted through the bite of an infected Anopheles mosquito; marked by paroxysms of chills and fever
+52799,malarial_mosquito malaria_mosquito,transmits the malaria parasite
+52800,malathion_poisoning,a toxic condition caused by inhaling or ingesting the insecticide Malathion
+52801,malcontent,a person who is discontented or disgusted
+52802,male,an animal that produces gametes (spermatozoa) that can fertilize female gametes (ova)
+52803,male male_person,a person who belongs to the sex that cannot have babies
+52804,male-patterned_baldness male_pattern_baldness,loss of hair on the crown of the head
+52805,male_aristocrat,a man who is an aristocrat
+52806,male_body,the body of a male human being
+52807,male_bonding,the formation of a close personal relationship between men; "the rituals known as male bonding do not necessarily involve drinking beer together"
+52808,male_chauvinism chauvinism antifeminism,activity indicative of belief in the superiority of men over women
+52809,male_chauvinist sexist,a man with a chauvinistic belief in the inferiority of women
+52810,male_chest,the chest of a man
+52811,male_child boy,a youthful male person; "the baby was a boy"; "she made the boy brush his teeth every night"; "most soldiers are only boys in uniform"
+52812,male_fern Dryopteris_filix-mas,fern of North America and Europe whose rhizomes and stalks yield an oleoresin used to expel tapeworms
+52813,male_genitalia male_genitals male_genital_organ family_jewels,external male sex organs
+52814,male_horse,the male of species Equus caballus
+52815,male_hypogonadism eunuchoidism,the state of being a eunuch (either because of lacking testicles or because they failed to develop)
+52816,male_internal_reproductive_organ,the reproductive organs of a man
+52817,male_offspring man-child,a child who is male
+52818,male_orchis early_purple_orchid Orchis_mascula,Eurasian orchid with showy pink or purple flowers in a loose spike
+52819,male_orgasm,an orgasm accompanied by the sensation of ejaculation of semen
+52820,male_reproductive_gland,the reproductive organs of a man
+52821,male_reproductive_system,the reproductive system of males
+52822,male_sibling,a sibling who is male
+52823,maleate,a salt or ester of maleic acid; used as a nontricyclic antidepressant drug for psychomotor activation
+52824,maleberry male_berry privet_andromeda he-huckleberry Lyonia_ligustrina,deciduous much-branched shrub with dense downy panicles of small bell-shaped white flowers
+52825,maleficence,doing or causing evil
+52826,maleficence mischief balefulness,the quality or nature of being harmful or evil
+52827,maleic_acid,a colorless crystalline compound found in unripe fruit (such as apples or tomatoes or cherries) and used mainly to make polyester resins
+52828,maleness masculinity,the properties characteristic of the male sex
+52829,maleo Macrocephalon_maleo,Celebes megapode that lays eggs in holes in sandy beaches
+52830,malevolence malevolency malice,the quality of threatening evil
+52831,malevolence malignity,wishing evil to others
+52832,malevolent_program,a computer program designed to have undesirable or harmful effects
+52833,malfeasance,wrongful conduct by a public official
+52834,malfeasant,one guilty of malfeasance
+52835,malformation miscreation,something abnormal or anomalous
+52836,malfunction,a failure to function normally
+52837,malheur_wire_lettuce Stephanomeria_malheurensis,a small plant of Oregon resembling mustard; a threatened species
+52838,malice maliciousness spite spitefulness venom,feeling a need to see others suffer
+52839,malignancy malignance,(medicine) a malignant state; progressive and resistant to treatment and tending to cause death
+52840,malignant_hypertension,severe hypertension that runs a rapid course and damages the inner linings of the blood vessels and the heart and spleen and kidneys and brain; "malignant hypertension is the most lethal form of hypertension"
+52841,malignant_hyperthermia,hereditary condition in which certain anesthetics (e.g., halothane) cause high body temperatures and muscle rigidity
+52842,malignant_tumor malignant_neoplasm metastatic_tumor,a tumor that is malignant and tends to spread to other parts of the body
+52843,malignity malignancy malignance,quality of being disposed to evil; intense ill will
+52844,malik,the leader of a town or community in some parts of Asia Minor and the Indian subcontinent; "maliks rule the hinterland of Afghanistan under the protection of warlords"
+52845,malingerer skulker shammer,someone shirking their duty by feigning illness or incapacity
+52846,malingering skulking,evading duty or work by pretending to be incapacitated; "they developed a test to detect malingering"
+52847,malinois,fawn-colored short-haired sheepdog
+52848,mallard Anas_platyrhynchos,wild dabbling duck from which domestic ducks are descended; widely distributed
+52849,malleability plasticity,the property of being physically malleable; the property of something that can be worked or hammered or shaped without breaking
+52850,mallee,any of several low-growing Australian eucalypts
+52851,mallee_fowl leipoa lowan Leipoa_ocellata,Australian mound bird; incubates eggs naturally in sandy mounds
+52852,mallee_hen,adult female mallee fowl
+52853,mallet,a sports implement with a long handle and a head like a hammer; used in sports (polo or croquet) to hit a ball
+52854,mallet beetle,a tool resembling a hammer but with a large head (usually wooden); used to drive wedges or ram down paving stones or for crushing or beating or flattening or smoothing
+52855,mallet hammer,a light drumstick with a rounded head that is used to strike such percussion instruments as chimes, kettledrums, marimbas, glockenspiels, etc.
+52856,malleus hammer,the ossicle attached to the eardrum
+52857,mallow,any of various plants of the family Malvaceae
+52858,malmsey,sweet Madeira wine
+52859,malnutrition,a state of poor nutrition; can result from insufficient or excessive or unbalanced diet or from inability to absorb foods
+52860,malocclusion,(dentistry) a condition in which the opposing teeth do not mesh normally
+52861,malodor malodour stench stink reek fetor foetor mephitis,a distinctive odor that is offensively unpleasant
+52862,malodorousness stinkiness foulness rankness fetidness,the attribute of having a strong offensive smell
+52863,malope Malope_trifida,western Mediterranean annual having deep purple-red flowers subtended by 3 large cordate bracts
+52864,malpighian_body malpighian_corpuscle renal_corpuscle,the capsule that contains Bowman's capsule and a glomerulus at the expanded end of a nephron
+52865,malposed_tooth,a tooth that has grown in a faulty position
+52866,malposition misplacement,faulty position
+52867,malpractice,professional wrongdoing that results in injury or damage; "the widow sued his surgeon for malpractice"
+52868,malpractice,a wrongful act that the actor had no right to do; improper professional conduct; "he charged them with electoral malpractices"
+52869,malpractice_insurance,insurance purchased by physicians and hospitals to cover the cost of being sued for malpractice; "obstetricians have to pay high rates for malpractice insurance"
+52870,malt,a cereal grain (usually barley) that is kiln-dried after having been germinated by soaking in water; used especially in brewing and distilling
+52871,malt malt_liquor,a lager of high alcohol content; by law it is considered too alcoholic to be sold as lager or beer
+52872,malted malt malted_milk,a milkshake made with malt powder
+52873,malted_milk,powder made of dried milk and malted cereals
+52874,maltha mineral_tar,a thick black tar intermediate between petroleum and asphalt
+52875,maltose malt_sugar,a white crystalline sugar formed during the digestion of starches
+52876,maltreatment ill-treatment ill-usage abuse,cruel or inhumane treatment; "the child showed signs of physical abuse"
+52877,maltster maltman,a maker of malt
+52878,malvasia,grape used to make malmsey wine
+52879,malversation,misconduct in public office
+52880,malware,malicious software, designed to break into a system
+52881,mamba,arboreal snake of central and southern Africa whose bite is often fatal
+52882,mambo,a Latin American dance similar in rhythm to the rumba
+52883,mamey mammee mammee_apple,globular or ovoid tropical fruit with thick russet leathery rind and juicy yellow or reddish flesh
+52884,mamillary_body mammillary_body corpus_mamillare,one of two small round structures on the undersurface of the brain that form the terminals of the anterior arches of the fornix
+52885,mammal mammalian,any warm-blooded vertebrate having the skin more or less covered with hair; young are born alive except for the small subclass of monotremes and nourished with milk
+52886,mammal_family,a family of mammals
+52887,mammal_genus,a genus of mammals
+52888,mammalogist,one skilled in the study of mammals
+52889,mammalogy,the branch of zoology that studies mammals
+52890,mammary_gland mamma,milk-secreting organ of female mammals
+52891,mammee_apple mammee mamey mammee_tree Mammea_americana,tropical American tree having edible fruit with a leathery rind
+52892,mammillaria,any cactus of the genus Mammillaria
+52893,mammogram,X-ray film of the soft tissue of the breast
+52894,mammography,a diagnostic procedure to detect breast tumors by the use of X rays
+52895,mammon,wealth regarded as an evil influence
+52896,mammoth,any of numerous extinct elephants widely distributed in the Pleistocene; extremely large with hairy coats and long upcurved tusks
+52897,mammothermography,the use of thermography to detect breast tumors (which appear as hot spots)
+52898,mammy,an offensive term for a Black nursemaid in the southern U.S.
+52899,mamo,black honeycreepers with yellow feathers around the tail; now extinct
+52900,man,a male subordinate; "the chief stationed two men outside the building"; "he awaited word from his man in Havana"
+52901,man,the generic use of the word to refer to any human being; "it was every man for himself"
+52902,man,an adult male person who has a manly character (virile and courageous competent); "the army will make a man of you"
+52903,man,a male person who plays a significant role (husband or lover or boyfriend) in the life of a particular woman; "she takes good care of her man"
+52904,man adult_male,an adult person who is male (as opposed to a woman); "there were two women and six men on the bus"
+52905,man piece,game equipment consisting of an object used in playing certain board games; "he taught me to set up the men on the chess board"; "he sacrificed a piece to get a strategic advantage"
+52906,man's_clothing,clothing that is designed for men to wear
+52907,man-at-arms,a heavily armed and mounted soldier in medieval times
+52908,man-made_fiber synthetic_fiber,fiber created from natural materials or by chemical processes
+52909,man-of-the-earth Ipomoea_leptophylla,a morning glory with long roots of western United States
+52910,man-of-war ship_of_the_line,a warship intended for combat
+52911,man-on-a-horse Tricholoma_flavovirens,an edible agaric with yellow gills and a viscid yellow cap that has a brownish center
+52912,man_hour person_hour,a time unit used in industry for measuring work
+52913,man_jack,a single individual; "every man jack"
+52914,man_of_action man_of_deeds,someone inclined to act first and think later
+52915,man_of_letters,a man devoted to literary or scholarly activities
+52916,man_of_means rich_man wealthy_man,a man who is wealthy
+52917,manageability manageableness,capable of being managed or controlled
+52918,managed_economy,a non-market economy in which government intervention is important in allocating goods and resources and determining prices
+52919,management,those in charge of running a business
+52920,management direction,the act of managing something; "he was given overall management of the program"; "is the direction of the economy a function of government?"
+52921,management_consultant,adviser to business about efficient management practices
+52922,management_consulting,a service industry that provides advice to those in charge of running a business
+52923,management_control,an internal control performed by one or more managers
+52924,management_personnel,personnel having overall planning and direction responsibilities
+52925,manageress,a woman manager
+52926,managership,the position of manager
+52927,managing_editor,the editor in charge of all editorial activities of a newspaper or magazine
+52928,manakin,any of numerous small bright-colored birds of Central America and South America having short bills and elaborate courtship behavior
+52929,manana,an indefinite time in the future
+52930,manat,the basic unit of money in Turkmenistan
+52931,manat,the basic unit of money in Azerbaijan
+52932,manatee Trichechus_manatus,sirenian mammal of tropical coastal waters of America; the flat tail is rounded
+52933,mandala,any of various geometric designs (usually circular) symbolizing the universe; used chiefly in Hinduism and Buddhism as an aid to meditation
+52934,mandamus writ_of_mandamus,an extraordinary writ commanding an official to perform a ministerial act that the law recognizes as an absolute duty and not a matter for the official's discretion; used only when all other judicial remedies fail
+52935,mandarin,a member of an elite intellectual or cultural group
+52936,mandarin,any high government official or bureaucrat
+52937,mandarin,a high public official of imperial China
+52938,mandarin mandarin_orange,a somewhat flat reddish-orange loose skinned citrus of China
+52939,mandarin mandarin_orange mandarin_orange_tree Citrus_reticulata,shrub or small tree having flattened globose fruit with very sweet aromatic pulp and thin yellow-orange to flame-orange rind that is loose and easily removed; native to southeastern Asia
+52940,mandarin_duck Aix_galericulata,showy crested Asiatic duck; often domesticated
+52941,mandatary mandatory,the recipient of a mandate
+52942,mandate,the commission that is given to a government and its policies through an electoral victory
+52943,mandate authorization authorisation,a document giving an official instruction or command
+52944,mandate mandatory,a territory surrendered by Turkey or Germany after World War I and put under the tutelage of some other European power until they are able to stand by themselves
+52945,mandator,an authority who issues a mandate
+52946,mandatory_injunction,injunction requiring the performance of some specific act
+52947,mandibular_joint temporomandibular_joint articulatio_temporomandibularis,the joint between the head of the lower jawbone and the temporal bone
+52948,mandibular_notch,small indentation in the middle of the lower jawbone
+52949,mandola,an early type of mandolin
+52950,mandolin,a stringed instrument related to the lute, usually played with a plectrum
+52951,mandrake devil's_apples Mandragora_officinarum,a plant of southern Europe and North Africa having purple flowers, yellow fruits and a forked root formerly thought to have magical powers
+52952,mandrake_root mandrake,the root of the mandrake plant; used medicinally or as a narcotic
+52953,mandrill Mandrillus_sphinx,baboon of west Africa with a bright red and blue muzzle and blue hindquarters
+52954,mane,long coarse hair growing from the crest of the animal's neck
+52955,mane head_of_hair,growth of hair covering the scalp of a human being
+52956,maneuver manoeuvre evasive_action,an action aimed at evading an opponent
+52957,maneuver manoeuvre play,a deliberate coordinated movement requiring dexterity and skill; "he made a great maneuver"; "the runner was out on a play by the shortstop"
+52958,maneuver manoeuvre simulated_military_operation,a military training exercise
+52959,maneuver manoeuvre tactical_maneuver tactical_manoeuvre,a move made to gain a tactical end
+52960,maneuverability manoeuvrability,the quality of being maneuverable
+52961,maneuverer manoeuvrer,a person skilled in maneuvering
+52962,manfulness manliness virility,the trait of being manly; having the characteristics of an adult male
+52963,manga,graphic novel that originated in Japan, usually intended for adults and characterized by highly stylized art
+52964,mangabey,large agile arboreal monkey with long limbs and tail and white upper eyelids
+52965,manganate,a salt of manganic acid containing manganese as its anion
+52966,manganese Mn atomic_number_25,a hard brittle grey polyvalent metallic element that resembles iron but is not magnetic; used in making steel; occurs in many minerals
+52967,manganese_bronze high-strength_brass,a brass with from 1-4% manganese to harden it
+52968,manganese_steel austenitic_manganese_steel,a steel with a relatively large component (10-14%) of manganese; highly resistant to wear and shock
+52969,manganese_tetroxide,an oxide of manganese found naturally as hausmannite
+52970,manganic_acid,a dibasic acid (H2MnO4) found only in solution and in manganate salts
+52971,manganite,a black mineral consisting of basic manganese oxide; a source of manganese
+52972,mange,a persistent and contagious disease of the skin causing inflammation and itching and loss of hair; affects domestic animals (and sometimes people)
+52973,mangel-wurzel,cultivated as feed for livestock
+52974,mangel-wurzel mangold-wurzel mangold Beta_vulgaris_vulgaris,beet with a large yellowish root; grown chiefly as cattle feed
+52975,manger trough,a container (usually in a barn or stable) from which cattle or horses feed
+52976,mangle,clothes dryer for drying and ironing laundry by passing it between two heavy heated rollers
+52977,manglietia genus_Manglietia,a genus of flowering tree of the family Magnoliaceae found from Malay to southern China
+52978,mango,large oval tropical fruit having smooth skin, juicy aromatic pulp, and a large hairy seed
+52979,mango mango_tree Mangifera_indica,large evergreen tropical tree cultivated for its large oval fruit
+52980,mangosteen,two- to three-inch tropical fruit with juicy flesh suggestive of both peaches and pineapples
+52981,mangosteen mangosteen_tree Garcinia_mangostana,East Indian tree with thick leathery leaves and edible fruit
+52982,mangrove Rhizophora_mangle,a tropical tree or shrub bearing fruit that germinates while still on the tree and having numerous prop roots that eventually form an impenetrable mass and are important in land building
+52983,manhattan,a cocktail made with whiskey and sweet vermouth with a dash of bitters
+52984,manhole,a hole (usually with a flush cover) through which a person can gain access to an underground structure
+52985,manhole_cover,a flush iron cover for a manhole (as in a street)
+52986,manhood,the state of being a man; manly qualities
+52987,manhood,the status of being a man
+52988,manhunt,an organized search (by police) for a person (charged with a crime)
+52989,mania manic_disorder,a mood disorder; an affective disorder in which the victim tends to respond excessively and sometimes violently
+52990,mania passion cacoethes,an irrational but irresistible motive for a belief or action
+52991,maniac,a person who has an obsession with or excessive enthusiasm for something
+52992,manic-depressive,a person afflicted with manic-depressive illness
+52993,manicotti,large pasta tubes stuffed with chopped meat or mild cheese and baked in tomato sauce
+52994,manicure,professional care for the hands and fingernails
+52995,manicure_set,a set of implements used to manicure
+52996,manicurist,a beautician who cleans and trims and polishes the fingernails
+52997,manifest,a customs document listing the contents put on a ship or plane
+52998,manifest_destiny,a policy of imperialism rationalized as inevitable (as if granted by God)
+52999,manifestation,a clear appearance; "a manifestation of great emotion"
+53000,manifestation,a manifest indication of the existence or presence or nature of some person or thing; "a manifestation of disease"
+53001,manifesto pronunciamento,a public declaration of intentions (as issued by a political party or government)
+53002,manifold,a set of points such as those of a closed surface or an analogue in three or more dimensions
+53003,manifold,a pipe that has several lateral outlets to or from other pipes
+53004,manifold_paper manifold,a lightweight paper used with carbon paper to make multiple copies; "an original and two manifolds"
+53005,manikin mannikin homunculus,a person who is very small but who is not otherwise deformed or abnormal
+53006,manila manila_paper manilla manilla_paper,a strong paper or thin cardboard with a smooth light brown finish made from e.g. Manila hemp
+53007,manila_tamarind camachile huamachil wild_tamarind Pithecellobium_dulce,common thorny tropical American tree having terminal racemes of yellow flowers followed by sickle-shaped or circinate edible pods and yielding good timber and a yellow dye and mucilaginous gum
+53008,manipulability,the quality of being controllable by skilled movements of the hands
+53009,manipulation use,exerting shrewd or devious influence especially for one's own advantage; "his manipulation of his friends was scandalous"
+53010,manipulative_electronic_deception electronic_manipulative_deception,actions to eliminate revealing telltale indicators that could be used by the enemy (or to convey misleading indicators)
+53011,manipulator,a person who handles things manually
+53012,maniraptor,advanced carnivorous theropod
+53013,manna,hardened sugary exudation of various trees
+53014,manna_ash flowering_ash Fraxinus_ornus,southern Mediterranean ash having fragrant white flowers in dense panicles and yielding manna
+53015,manna_grass sweet_grass,any of several moisture-loving grasses of the genus Glyceria having sweet flavor or odor
+53016,manna_gum Eucalyptus_viminalis,tall tree yielding a false manna
+53017,manna_lichen,any of several Old World partially crustaceous or shrubby lecanoras that roll up and are blown about over African and Arabian deserts and used as food by people and animals
+53018,mannequin manikin mannikin manakin fashion_model model,a woman who wears clothes to display fashions; "she was too fat to be a mannequin"
+53019,mannequin manikin mannikin manakin form,a life-size dummy used to display clothes
+53020,manner,a kind; "what manner of man are you?"
+53021,manner mode style way fashion,how something is done or how it happens; "her dignified manner"; "his rapid manner of talking"; "their nomadic mode of existence"; "in the characteristic New York style"; "a lonely way of life"; "in an abrasive fashion"
+53022,manner personal_manner,a way of acting or behaving
+53023,manner_of_speaking speech delivery,your characteristic style or manner of expressing yourself orally; "his manner of speaking was quite abrupt"; "her speech was barren of southernisms"; "I detected a slight accent in his speech"
+53024,manners,social deportment; "he has the manners of a pig"
+53025,mannitol Osmitrol,a diuretic (trade name Osmitrol) used to promote the excretion of urine
+53026,manometer,a pressure gauge for comparing pressures of a gas
+53027,manor,the landed estate of a lord (including the house on it)
+53028,manor manor_house,the mansion of a lord or wealthy person
+53029,manor_hall hall,the large room of a manor or castle
+53030,mansard mansard_roof,a hip roof having two slopes on each side
+53031,manse,the residence of a clergyman (especially a Presbyterian clergyman)
+53032,manservant,a man servant
+53033,mansion mansion_house manse hall residence,a large and imposing house
+53034,manslaughter,homicide without malice aforethought
+53035,manta,a blanket that is used as a cloak or shawl
+53036,manta manta_ray devilfish,extremely large pelagic tropical ray that feeds on plankton and small fishes; usually harmless but its size make it dangerous if harpooned
+53037,mantel mantelpiece mantle mantlepiece chimneypiece,shelf that projects from wall above fireplace
+53038,mantelet mantilla,short cape worn by women
+53039,mantelet mantlet,portable bulletproof shelter
+53040,manticore mantichora manticora mantiger,a mythical monster having the head of man (with horns) and the body of a lion and the tail of a scorpion
+53041,mantilla,a woman's silk or lace scarf
+53042,mantis mantid,predacious long-bodied large-eyed insect of warm regions; rests with forelimbs raised as in prayer
+53043,mantis_shrimp mantis_crab,tropical marine burrowing crustaceans with large grasping appendages
+53044,mantispid,insect that resembles a mantis; larvae are parasites in the nests of spiders and wasps
+53045,mantissa fixed-point_part,the positive fractional part of the representation of a logarithm; in the expression log 643 = 2.808 the mantissa is .808
+53046,mantle,the layer of the earth between the crust and the core
+53047,mantle,the cloak as a symbol of authority; "place the mantle of authority on younger shoulders"
+53048,mantle pallium,(zoology) a protective layer of epidermis in mollusks or brachiopods that secretes a substance forming the shell
+53049,mantled_ground_squirrel Citellus_lateralis,common black-striped reddish-brown ground squirrel of western North America; resembles a large chipmunk
+53050,mantra,a commonly repeated word or phrase; "she repeated `So pleased with how its going' at intervals like a mantra"
+53051,mantra,(Sanskrit) literally a `sacred utterance' in Vedism; one of a collection of orally transmitted poetic hymns
+53052,mantrap,a trap for catching trespassers
+53053,mantua,loose gown of the 17th and 18th centuries
+53054,manual,a small handbook
+53055,manual_alphabet finger_alphabet,an alphabet used by the deaf; letters are represented by finger positions
+53056,manual_labor manual_labour,labor done with the hands
+53057,manual_of_arms manual,(military) a prescribed drill in handling a rifle
+53058,manubrium,the upper part of the breastbone
+53059,manufacturer maker manufacturing_business,a business engaged in manufacturing some product
+53060,manufacturer producer,someone who manufactures something
+53061,manul Pallas's_cat Felis_manul,small wildcat of the mountains of Siberia and Tibet and Mongolia
+53062,manumission,the formal act of freeing from slavery; "he believed in the manumission of the slaves"
+53063,manure,any animal or plant material used to fertilize land especially animal excreta usually with litter material
+53064,manuscript holograph,handwritten book or document
+53065,manuscript ms,the form of a literary work submitted for publication
+53066,manzanita,chiefly evergreen shrubs of warm dry areas of western North America
+53067,map,a diagrammatic representation of the earth's surface (or part of it)
+53068,map-reader,a person who can read maps; "he is a good map-reader"
+53069,map_projection,a projection of the globe onto a flat map using a grid of lines of latitude and longitude
+53070,mapinguari,supposed human-sized sloth-like creature reportedly sighted by Indians in the Amazon rain forest
+53071,maple,wood of any of various maple trees; especially the hard close-grained wood of the sugar maple; used especially for furniture and flooring
+53072,maple,any of numerous trees or shrubs of the genus Acer bearing winged seeds in pairs; north temperate zone
+53073,maple-leaf,the emblem of Canada
+53074,maple_sugar,sugar made from the sap of the sugar maple tree
+53075,maple_syrup,made by concentrating sap from sugar maples
+53076,maple_syrup_urine_disease branched_chain_ketoaciduria,an inherited disorder of metabolism in which the urine has a odor characteristic of maple syrup; if untreated it can lead to mental retardation and death in early childhood
+53077,mapmaking cartography,the making of maps and charts
+53078,mapping chromosome_mapping,(genetics) the process of locating genes on a chromosome
+53079,maquiladora,an assembly plant in Mexico (near the United States border); parts are shipped into Mexico and the finished product is shipped back across the border
+53080,mara Dolichotis_patagonum,hare-like rodent of the pampas of Argentina
+53081,marabou,the downy feathers of marabou storks are used for trimming garments
+53082,marabou marabout marabou_stork Leptoptilus_crumeniferus,large African black-and-white carrion-eating stork; its downy underwing feathers are used to trim garments
+53083,maraca,a percussion instrument consisting of a hollow gourd containing pebbles or beans; often played in pairs
+53084,marang,tropical fruit from the Philippines having a mass of small seeds embedded in sweetish white pulp
+53085,marang marang_tree Artocarpus_odoratissima,Philippine tree similar to the breadfruit tree bearing edible fruit
+53086,maranta,any of numerous herbs of the genus Maranta having tuberous starchy roots and large sheathing leaves
+53087,marasca,small bitter fruit of the marasca cherry tree from whose juice maraschino liqueur is made
+53088,marasca marasca_cherry maraschino_cherry Prunus_cerasus_marasca,Dalmatian bitter wild cherry tree bearing fruit whose juice is made into maraschino liqueur
+53089,maraschino maraschino_cherry,cherry preserved in true or imitation maraschino liqueur
+53090,maraschino maraschino_liqueur,distilled from fermented juice of bitter wild marasca cherries
+53091,marasmus,extreme malnutrition and emaciation (especially in children); can result from inadequate intake of food or from malabsorption or metabolic disorders
+53092,marathon,a footrace of 26 miles 385 yards
+53093,marathon endurance_contest,any long and arduous undertaking
+53094,marathoner marathon_runner road_runner long-distance_runner,someone who participates in long-distance races (especially in marathons)
+53095,marauder predator vulture piranha,someone who attacks in search of booty
+53096,marble,a hard crystalline metamorphic rock that takes a high polish; used for sculpture and as building material
+53097,marble,a sculpture carved from marble
+53098,marble,a small ball of glass that is used in various games
+53099,marble_cake,made of light and dark batter very lightly blended
+53100,marbleization marbleisation marbleizing marbleising,a texture like that of marble
+53101,marbles,a children's game played with little balls made of a hard substance (as glass)
+53102,marblewood marble-wood,hard marbled wood
+53103,marblewood marble-wood Andaman_marble Diospyros_kurzii,large Asiatic tree having hard marbled zebrawood
+53104,marbling,the intermixture of fat and lean in a cut of meat
+53105,marc,made from residue of grapes or apples after pressing
+53106,marcel,a hairdo characterized by deep regular waves that are made by a heated curling iron
+53107,march,a procession of people walking together; "the march went up Fifth Avenue"
+53108,march,a steady advance; "the march of science"; "the march of time"
+53109,march marching,the act of marching; walking with regular steps (especially in a procession of some kind); "it was a long march"; "we heard the sound of marching"
+53110,marchand_de_vin mushroom_wine_sauce,brown sauce with mushrooms and red wine or Madeira
+53111,marcher,an inhabitant of a border district
+53112,marcher parader,walks with regular or stately step
+53113,marching_band,a band that marches (as in a parade) and plays music at the same time
+53114,marching_music march,genre of music written for marching; "Sousa wrote the best marches"
+53115,marching_order,equipage for marching; "the company was dressed in full marching order"
+53116,marching_orders,an order from a superior officer for troops to depart
+53117,marchioness,the wife or widow of a marquis
+53118,marchioness marquise,a noblewoman ranking below a duchess and above a countess
+53119,mare female_horse,female equine animal
+53120,mare maria,a dark region of considerable extent on the surface of the moon
+53121,mare's_tail,a long narrow flowing cirrus cloud
+53122,mare_clausum,(closed sea) a navigable body of water under the jurisdiction of a single nation
+53123,mare_liberum,(free sea) a navigable body of water to which all nations have equal access
+53124,mare_nostrum,(our sea) the Mediterranean to the ancient Romans
+53125,margaric_acid heptadecanoic_acid,a colorless crystalline synthetic fatty acid
+53126,margarin glycerol_trimargarate,a glyceryl ester of margaric acid
+53127,margarine margarin oleo oleomargarine marge,a spread made chiefly from vegetable oils and used as a substitute for butter
+53128,margarita,a cocktail made of tequila and triple sec with lime and lemon juice
+53129,margate Haemulon_album,a grunt with a red mouth that is found from Florida to Brazil
+53130,margay margay_cat Felis_wiedi,small spotted wildcat found from Texas to Brazil
+53131,margin,the blank space that surrounds the text on a page; "he jotted a note in the margin"
+53132,margin,an amount beyond the minimum necessary; "the margin of victory"
+53133,margin border perimeter,the boundary line or the area immediately inside the boundary
+53134,margin security_deposit,the amount of collateral a customer deposits with a broker when borrowing from the broker to buy securities
+53135,margin_account,an account with a securities brokerage in which the broker extends credit
+53136,margin_call call,a demand by a broker that a customer deposit enough to bring his margin up to the minimum requirement
+53137,margin_of_profit profit_margin gross_margin,the ratio gross profits divided by net sales
+53138,margin_of_safety safety_margin margin_of_error,the margin required in order to insure safety; "in engineering the margin of safety is the strength of the material minus the anticipated stress"
+53139,marginal_cost incremental_cost differential_cost,the increase or decrease in costs as a result of one more or one less unit of output
+53140,marginal_placentation ventral_placentation,with ovules borne on the wall along the ventral suture of a simple ovary
+53141,marginal_utility,(economics) the amount that utility increases with an increase of one unit of an economic good or service
+53142,marginal_wood_fern evergreen_wood_fern leatherleaf_wood_fern Dryopteris_marginalis,North American fern with evergreen fronds
+53143,marginalia,notes written in the margin
+53144,marginality,the property of being marginal or on the fringes
+53145,marginalization marginalisation,the social process of becoming or being made marginal (especially as a group within the larger society); "the marginalization of the underclass"; "the marginalization of literature"
+53146,margrave,the military governor of a frontier province in medieval Germany
+53147,margrave,a German nobleman ranking above a count (corresponding in rank to a British marquess)
+53148,marguerite marguerite_daisy Paris_daisy Chrysanthemum_frutescens Argyranthemum_frutescens,perennial subshrub of the Canary Islands having usually pale yellow daisylike flowers; often included in genus Chrysanthemum
+53149,mariachi,a group of street musicians in Mexico
+53150,marigold,any of various tropical American plants of the genus Tagetes widely cultivated for their showy yellow or orange flowers
+53151,marijuana marihuana ganja Cannabis_sativa,a strong-smelling plant whose dried leaves can be smoked for a pleasant effect or pain reduction
+53152,marimba xylophone,a percussion instrument with wooden bars tuned to produce a chromatic scale and with resonators; played with small mallets
+53153,marina,a fancy dock for small yachts and cabin cruisers
+53154,marinade,mixtures of vinegar or wine and oil with various spices and seasonings; used for soaking foods before cooking
+53155,marinara,sauce for pasta; contains tomatoes and garlic and herbs
+53156,marine,a soldier who serves both on shipboard and on land
+53157,marine_animal marine_creature sea_animal sea_creature,any of numerous animals inhabiting the sea including e.g. fishes and molluscs and many mammals
+53158,marine_archeology marine_archaeology underwater_archeology underwater_archaeology,the archeology of underwater sites
+53159,marine_engineer naval_engineer,a naval officer responsible for the operation and maintenance of the ship's engines
+53160,marine_glue,glue that is not water soluble
+53161,marine_iguana Amblyrhynchus_cristatus,shore-dwelling seaweed-eating lizard of the Galapagos Islands
+53162,marine_mussel mytilid,marine bivalve mollusk having a dark elongated shell; live attached to solid objects especially in intertidal zones
+53163,mariner seaman tar Jack-tar Jack old_salt seafarer gob sea_dog,a man who serves as a sailor
+53164,mariposa mariposa_tulip mariposa_lily,any of several plants of the genus Calochortus having tulip-shaped flowers with 3 sepals and 3 petals; southwestern United States and Mexico
+53165,marital_communications_privilege husband-wife_privilege,neither spouse can divulge confidential communications from the other while they were married
+53166,marital_relationship marital_bed,the relationship between wife and husband
+53167,marital_status,the condition of being married or unmarried
+53168,mariticide,the murder of a husband by his wife
+53169,maritime_law marine_law admiralty_law,the branch of international law that deals with territorial and international waters or with shipping or with ocean fishery etc.
+53170,marjoram oregano,pungent leaves used as seasoning with meats and fowl and in stews and soups and omelets
+53171,mark,a written or printed symbol (as for punctuation); "his answer was just a punctuation mark"
+53172,mark,the impression created by doing something unusual or extraordinary that people notice and remember; "it was in London that he made his mark"; "he left an indelible mark on the American theater"
+53173,mark German_mark Deutsche_Mark Deutschmark,formerly the basic unit of money in Germany
+53174,mark grade score,a number or letter indicating quality (especially of a student's performance); "she made good marks in algebra"; "grade A milk"; "what was your score on your homework?"
+53175,mark print,a visible indication made on a surface; "some previous reader had covered the pages with dozens of marks"; "paw prints were everywhere"
+53176,mark stigma brand stain,a symbol of disgrace or infamy; "And the Lord set a mark upon Cain"--Genesis
+53177,mark_of_Cain,the mark that God set upon Cain now refers to a person's sinful nature
+53178,marker,a writing implement for making a mark
+53179,marker,some conspicuous object used to distinguish or mark something; "the buoys were markers for the channel"
+53180,marker marking mark,a distinguishing symbol; "the owner's mark was on all the sheep"
+53181,market,the customers for a particular product or service; "before they publish any book they try to determine the size of the market for it"
+53182,market marketplace market_place,the world of commercial activity where goods and services are bought and sold; "without competition there would be no market"; "they were driven from the marketplace"
+53183,market securities_industry,the securities markets in the aggregate; "the market always frustrates the small investor"
+53184,market_analysis,marketing research that yields information about the marketplace
+53185,market_analyst,an analyst of conditions affecting a market (especially the stock market)
+53186,market_capitalization market_capitalisation,an estimation of the value of a business that is obtained by multiplying the number of shares outstanding by the current price of a share
+53187,market_cross,a cross-shaped monument set up in the marketplace of a town where public business is often conducted
+53188,market_day,a fixed day for holding a public market
+53189,market_economy free_enterprise private_enterprise laissez-faire_economy,an economy that relies chiefly on market forces to allocate goods and resources and to determine prices
+53190,market_forces,the interaction of supply and demand that shapes a market economy
+53191,market_garden,a garden where fruit and vegetables are grown for marketing
+53192,market_gardening,the growing of vegetables or flowers for market
+53193,market_letter,a newsletter written by an analyst of the stock market and sold to subscribers
+53194,market_order,an order to a broker to sell or buy stocks or commodities at the prevailing market price
+53195,market_penetration,the extent to which a product is recognized and bought by customers in a particular market
+53196,market_strategist,someone skilled in planning marketing campaigns
+53197,market_town,a (usually small) town where a public market is held at stated times
+53198,market_value market_price,the price at which buyers and sellers trade the item in an open marketplace
+53199,marketing,the commercial processes involved in promoting and selling and distributing a product or service; "most companies have a manager in charge of marketing"
+53200,marketing,shopping at a market; "does the weekly marketing at the supermarket"
+53201,marketing_cost,the cost of marketing (e.g., the cost of transferring title and moving goods to the customer)
+53202,marketing_research market_research,research that gathers and analyzes information about the moving of good or services from producer to consumer
+53203,marketplace market_place mart market,an area in a town where a public mercantile establishment is set up
+53204,markhor markhoor Capra_falconeri,large Himalayan goat with large spiraled horns
+53205,marking,a pattern of marks
+53206,marking,the act of making a visible mark on a surface
+53207,marking grading scoring,evaluation of performance by assigning a grade or score; "what he disliked about teaching was all the grading he had to do"
+53208,marking_ink,an indelible ink for marking clothes or linens etc.
+53209,markka Finnish_mark,formerly the basic unit of money in Finland
+53210,marksman sharpshooter crack_shot,someone skilled in shooting
+53211,marksmanship,skill in shooting
+53212,markup,the amount added to the cost to determine the asking price
+53213,markup,detailed stylistic instructions for typesetting something that is to be printed; manual markup is usually written on the copy (e.g. underlining words that are to be set in italics)
+53214,markup_language,a set of symbols and rules for their use when doing a markup of a document
+53215,marl,a loose and crumbling earthy deposit consisting mainly of calcite or dolomite; used as a fertilizer for soils deficient in lime
+53216,marlberry Ardisia_escallonoides Ardisia_paniculata,tropical American shrub or small tree with brown wood and dark berries
+53217,marlin,large long-jawed oceanic sport fishes; related to sailfishes and spearfishes; not completely cold-blooded i.e. able to warm their brains and eyes
+53218,marline,a small usually tarred line of 2 strands
+53219,marlinespike marlinspike marlingspike,a pointed iron hand tool that is used to separate strands of a rope or cable (as in splicing)
+53220,marlite marlstone,metamorphic rock with approximately the same composition as marl
+53221,marmalade,a preserve made of the pulp and rind of citrus fruits
+53222,marmalade_bush fire_bush fire-bush Streptosolen_jamesonii,evergreen South American shrub having showy trumpet-shaped orange flowers; grown as an ornamental or houseplant
+53223,marmalade_tree mammee sapote Pouteria_zapota Calocarpum_zapota,tropical American tree having wood like mahogany and sweet edible egg-shaped fruit; in some classifications placed in the genus Calocarpum
+53224,marmite,soup cooked in a large pot
+53225,marmite,a large pot especially one with legs used e.g. for cooking soup
+53226,marmoset,small soft-furred South American and Central American monkey with claws instead of nails
+53227,marmot,stocky coarse-furred burrowing rodent with a short bushy tail found throughout the northern hemisphere; hibernates in winter
+53228,marocain crepe_marocain,a dress crepe; similar to Canton crepe
+53229,maroon,a person who is stranded (as on an island); "when the tide came in I was a maroon out there"
+53230,maroon,a dark purplish-red to dark brownish-red color
+53231,maroon,an exploding firework used as a warning signal
+53232,marquee marquise,permanent canopy over an entrance of a hotel etc.
+53233,marquess,a British peer ranking below a duke and above an earl
+53234,marquetry marqueterie,inlaid veneers are fitted together to form a design or picture that is then used to ornament furniture
+53235,marquis marquess,nobleman (in various countries) ranking above a count
+53236,marriage,a close and intimate union; "the marriage of music and dance"; "a marriage of ideas"
+53237,marriage married_couple man_and_wife,two people who are married to each other; "his second marriage was happier than the first"; "a married couple without love"
+53238,marriage matrimony union spousal_relationship wedlock,the state of being a married couple voluntarily joined for life (or until divorce); "a long and happy marriage"; "God bless this union"
+53239,marriage wedding marriage_ceremony,the act of marrying; the nuptial ceremony; "their marriage was conducted in the chapel"
+53240,marriage_bed,the bed shared by a newly wed couple
+53241,marriage_brokerage marriage_mart,a business that arranges marriage contracts
+53242,marriage_contract marriage_settlement,a prenuptial agreement or contract
+53243,marriage_counseling,counseling on marital problems and disagreements
+53244,marriage_license marriage_licence wedding_license wedding_licence,a license authorizing two people to marry
+53245,marriage_of_convenience,a marriage for expediency rather than love
+53246,marriage_proposal proposal_of_marriage marriage_offer proposal,an offer of marriage
+53247,marriageability,eligibility for marriage
+53248,married,a person who is married; "we invited several young marrieds"
+53249,marrow bone_marrow,very tender and very nutritious tissue from marrowbones
+53250,marrow bone_marrow,the fatty network of connective tissue that fills the cavities of bones
+53251,marrow marrow_squash vegetable_marrow,any of various squash plants grown for their elongated fruit with smooth dark green skin and whitish flesh
+53252,marrow vegetable_marrow,large elongated squash with creamy to deep green skins
+53253,marrowbone,a bone containing edible marrow; used especially in flavoring soup
+53254,marrowfat_pea,a variety of large pea that is commonly processed and sold in cans
+53255,marseille,strong cotton fabric with a raised pattern; used for bedspreads
+53256,marsh marshland fen fenland,low-lying wet land with grassy vegetation; usually is a transition zone between land and water; "thousands of acres of marshland"; "the fens of eastern England"
+53257,marsh_St-John's_wort Hypericum_virginianum,perennial marsh herb with pink to mauve flowers; southeastern United States
+53258,marsh_andromeda common_bog_rosemary Andromeda_polifolia,erect to procumbent evergreen shrub having pendent clusters of white or pink flowers; of sphagnum peat bogs and other wet acidic areas in northern Europe
+53259,marsh_bellflower Campanula_aparinoides,bellflower common in marshes of eastern North America having lanceolate linear leaves and small whitish flowers
+53260,marsh_cress yellow_watercress Rorippa_islandica,annual or biennial cress growing in damp places sometimes used in salads or as a potherb; troublesome weed in some localities
+53261,marsh_elder iva,any of various coarse shrubby plants of the genus Iva with small greenish flowers; common in moist areas (as coastal salt marshes) of eastern and central North America
+53262,marsh_felwort Swertia_perennia,perennial of damp places in mountains of Eurasia and North America having dull-colored blue or violet flowers
+53263,marsh_fern Thelypteris_palustris Dryopteris_thelypteris,fern having pinnatifid fronds and growing in wet places; cosmopolitan in north temperate regions
+53264,marsh_gas,methane gas produced when vegetation decomposes in water
+53265,marsh_gentian calathian_violet Gentiana_pneumonanthe,perennial Eurasian gentian with sky-blue funnel-shaped flowers of damp open heaths
+53266,marsh_hare swamp_rabbit Sylvilagus_palustris,a wood rabbit of marshy coastal areas from North Carolina to Florida
+53267,marsh_harrier Circus_Aeruginosus,Old World harrier frequenting marshy regions
+53268,marsh_hawk northern_harrier hen_harrier Circus_cyaneus,common harrier of North America and Europe; nests in marshes and open land
+53269,marsh_horsetail Equisetum_palustre,scouring-rush horsetail widely distributed in wet or boggy areas of northern hemisphere
+53270,marsh_mallow white_mallow Althea_officinalis,European perennial plant naturalized in United States having triangular ovate leaves and lilac-pink flowers
+53271,marsh_marigold kingcup meadow_bright May_blob cowslip water_dragon Caltha_palustris,swamp plant of Europe and North America having bright yellow flowers resembling buttercups
+53272,marsh_orchid,any of several orchids of the genus Dactylorhiza having fingerlike tuberous roots; Europe and Mediterranean region
+53273,marsh_pea Lathyrus_palustris,scrambling perennial of damp or marshy areas of Eurasia and North America with purplish flowers
+53274,marsh_pink rose_pink bitter_floom American_centaury Sabbatia_stellaris Sabbatia_Angularis,any of several pink-flowered marsh plant of the eastern United States resembling a true centaury
+53275,marsh_plant bog_plant swamp_plant,a semiaquatic plant that grows in soft wet land; most are monocots: sedge, sphagnum, grasses, cattails, etc; possibly heath
+53276,marsh_wren,a wren of the genus Cistothorus that frequents marshes
+53277,marshal marshall,(in some countries) a military officer of highest rank
+53278,marshal marshall,a law officer having duties similar to those of a sheriff in carrying out the judgments of a court of law
+53279,marshalling_yard,a railway yard in which trains are assembled and goods are loaded
+53280,marshalship,the post of marshall
+53281,marshmallow,spongy confection made of gelatin and sugar and corn syrup and dusted with powdered sugar
+53282,marshmallow_fluff,a very sweet white spread resembling marshmallow candy
+53283,marsupial pouched_mammal,mammals of which the females have a pouch (the marsupium) containing the teats where the young are fed and carried
+53284,marsupium,an external abdominal pouch in most marsupials where newborn offspring are suckled
+53285,martello_tower,a circular masonry fort for coastal defence
+53286,marten marten_cat,agile slender-bodied arboreal mustelids somewhat larger than weasels
+53287,martensite,a solid solution of carbon in alpha-iron that is formed when steel is cooled so rapidly that the change from austenite to pearlite is suppressed; responsible for the hardness of quenched steel
+53288,martial_art,any of several Oriental arts of weaponless self-defense; usually practiced as a sport; "he had a black belt in the martial arts"
+53289,martial_law,the body of law imposed by the military over civilian affairs (usually in time of war or civil crisis); overrides civil law
+53290,martin,any of various swallows with squarish or slightly forked tail and long pointed wings; migrate around Martinmas
+53291,martinet disciplinarian moralist,someone who demands exact conformity to rules and forms
+53292,martingale,a harness strap that connects the nose piece to the girth; prevents the horse from throwing back its head
+53293,martini,a cocktail made of gin (or vodka) with dry vermouth
+53294,martynia Martynia_annua,sprawling annual or perennial herb of Central America and West Indies having creamy-white to red-purple bell-shaped flowers followed by unusual horned fruit
+53295,martyr,one who voluntarily suffers death as the penalty for refusing to renounce their religion
+53296,martyr sufferer,one who suffers for the sake of principle
+53297,martyrdom,death that is imposed because of the person's adherence of a religious faith or cause
+53298,marumi marumi_kumquat round_kumquat Fortunella_japonica,shrub bearing round-fruited kumquats
+53299,marupa Simarouba_amara,tree of the Amazon valley yielding a light brittle timber locally regarded as resistant to insect attack
+53300,marzipan marchpane,almond paste and egg whites
+53301,mascara,makeup that is used to darken and thicken the eye lashes
+53302,mascarene_grass Korean_velvet_grass Zoysia_tenuifolia,Asiatic creeping perennial grass; introduced in southern United States as a drought-resistant lawn grass
+53303,mascarpone,soft mild Italian cream cheese
+53304,mascot,a character, animal or object that is adopted by a team or group as a symbolic figure
+53305,masculine,a gender that refers chiefly (but not exclusively) to males or to objects classified as male
+53306,masculinity,the trait of behaving in ways considered typical for men
+53307,masculinization masculinisation virilization virilisation,the abnormal development of male sexual characteristics in a female (usually as the result of hormone therapies or adrenal malfunction)
+53308,masdevallia,any of numerous orchids of the genus Masdevallia; tufted evergreen often diminutive plants whose flowers in a remarkable range of colors usually resemble a tricorn with sepals fused at the base to form a tube
+53309,maser,an acronym for microwave amplification by stimulated emission of radiation; an amplifier that works on the same principle as a laser and emits coherent microwave radiation
+53310,mash,a mixture of mashed malt grains and hot water; used in brewing
+53311,mash,mixture of ground animal feeds
+53312,mashed_potato,potato that has been peeled and boiled and then mashed
+53313,masher,a kitchen utensil used for mashing (e.g. potatoes)
+53314,mashie five_iron,middle-distance iron
+53315,mashie_niblick seven_iron,iron with a lofted face for hitting high shots to the green
+53316,masjid musjid,(Islam) a Muslim place of worship
+53317,mask,a protective covering worn over the face
+53318,mask,a covering to disguise or conceal the face
+53319,mask,activity that tries to conceal something; "no mask could conceal his ignorance"; "they moved in under a mask of friendship"
+53320,masked_ball masquerade_ball fancy-dress_ball,a ball at which guests wear costumes and masks
+53321,masked_shrew Sorex_cinereus,commonest shrew of moist habitats in North America
+53322,masking,the blocking of one sensation resulting from the presence of another sensation; "he studied auditory masking by pure tones"
+53323,masking_piece masking,scenery used to block the audience's view of parts of the stage that should not be seen
+53324,masking_tape masking_paper,adhesive tape used to cover the part of a surface that should not be painted
+53325,masochism,sexual pleasure obtained from receiving punishment (physical or psychological)
+53326,masochist,someone who obtains pleasure from receiving punishment
+53327,mason stonemason,a craftsman who works with stone or brick
+53328,mason's_level,a level longer than a carpenter's level
+53329,mason_bee,any of numerous solitary bees that build nests of hardened mud and sand
+53330,mason_wasp,solitary wasp that constructs nests of hardened mud or clay for the young
+53331,mason_wasp,any of various solitary wasps that construct nests of hardened mud for their young
+53332,masonry,structure built of stone or brick by a mason
+53333,masonry,the craft of a mason
+53334,masquerade charade,making a false outward show; "a beggar's masquerade of wealth"
+53335,masquerade masquerade_party masque mask,a party of guests wearing costumes and masks
+53336,masquerader masker masquer,a participant in a masquerade
+53337,mass,a body of matter without definite shape; "a huge ice mass"
+53338,mass,an ill-structured collection of similar things (objects or people)
+53339,mass,the property of a body that causes it to have weight in a gravitational field
+53340,mass-action_principle mass_action,(neurology) the principle that the cortex of the brain operates as a coordinated system with large masses of neural tissue involved in all complex functioning
+53341,mass-energy_equivalence,(physics) the principle that a measured quantity of mass is equivalent (according to relativity theory) to a measured quantity of energy
+53342,mass_culture,the culture that is widely disseminated via the mass media
+53343,mass_defect mass_deficiency,the amount by which the mass of an atomic nucleus is less than the sum of the masses of its constituent particles
+53344,mass_energy,(physics) the mass of a body regarded relativistically as energy
+53345,mass_hysteria epidemic_hysertia,a condition in which a large group of people exhibit the same state of violent mental agitation
+53346,mass_murderer,a person who is responsible for the deaths of many victims in a single incident
+53347,mass_noun,a noun that does not form plurals
+53348,mass_number nucleon_number,the sum of the number of neutrons and protons in an atomic nucleus
+53349,mass_production,the production of large quantities of a standardized article (often using assembly line techniques)
+53350,mass_spectrograph,a mass spectrometer that produces a graphical representation of the mass spectrum
+53351,mass_spectrometer spectrometer,spectroscope for obtaining a mass spectrum by deflecting ions into a thin slit and measuring the ion current with an electrometer
+53352,mass_spectroscopy,the use of spectroscopy to determine the masses of small electrically charged particles
+53353,mass_spectrum,a distribution of ions as shown by a mass spectrograph or a mass spectrometer
+53354,mass_unit,a unit of measurement for mass
+53355,massage,kneading and rubbing parts of the body to increase circulation and promote relaxation
+53356,massage_parlor,a place where illicit sex is available under the guise of therapeutic massage
+53357,massage_parlor,a business establishment that offers therapeutic massage
+53358,massager,someone who rubs or kneads parts of the body to stimulate circulation and promote relaxation
+53359,massasauga massasauga_rattler Sistrurus_catenatus,pygmy rattlesnake found in moist areas from the Great Lakes to Mexico; feeds on mice and small amphibians
+53360,masse masse_shot,a shot in billiards made by hitting the cue ball with the cue held nearly vertically; the cue ball spins around another ball before hitting the object ball
+53361,masseter,a large muscle that raises the lower jaw and is used in chewing
+53362,masseur,a male massager
+53363,masseuse,a female massager
+53364,massicot massicotite,the mineral form of lead monoxide; in the form of yellow powder it is used as a pigment
+53365,massif,a block of the earth's crust bounded by faults and shifted to form peaks of a mountain range
+53366,mast,nuts of forest trees (as beechnuts and acorns) accumulated on the ground
+53367,mast,nuts of forest trees used as feed for swine
+53368,mast,any sturdy upright pole
+53369,mast,a vertical spar for supporting sails
+53370,mast_cell mastocyte labrocyte,a large connective tissue cell that contains histamine and heparin and serotonin which are released in allergic reactions or in response to injury or inflammation
+53371,mastaba mastabah,an ancient Egyptian mud-brick tomb with a rectangular base and sloping sides and flat roof; "the Egyptian pyramids developed from the mastaba"
+53372,mastalgia,pain in the breast
+53373,mastectomy,surgical removal of a breast to remove a malignant tumor
+53374,master,someone who holds a master's degree from academic institution
+53375,master,directs the work of others
+53376,master captain sea_captain skipper,an officer who is licensed to command a merchant ship
+53377,master master_copy original,an original creation (i.e., an audio recording) from which copies can be made
+53378,master professional,an authority qualified to teach apprentices
+53379,master's_degree,an academic degree higher than a bachelor's degree but lower than a doctor's degree
+53380,master-at-arms,the senior petty officer; responsible for discipline aboard ship
+53381,master_bedroom,the principal bedroom in a house; usually occupied by the head of the household
+53382,master_class,a class (especially in music) given to talented students by an expert
+53383,master_file main_file,(computer science) a computer file that is used as the authority in a given job and that is relatively permanent
+53384,master_of_ceremonies emcee host,a person who acts as host at formal occasions (makes an introductory speech and introduces other speakers)
+53385,master_plan,a long-term outline of a project or government function; "the zoning board adopted a master plan for the new development"
+53386,master_race Herrenvolk,a race that considers itself superior to all others and fitted to rule the others
+53387,master_sergeant,a senior noncommissioned officer in the Army or Marines
+53388,mastering,becoming proficient in the use of something; having mastery of; "his mastering the art of cooking took a long time"
+53389,mastering,the act of making a master recording from which copies can be made; "he received a bill for mastering the concert and making 100 copies"
+53390,masterpiece,an outstanding achievement
+53391,masterpiece chef-d'oeuvre,the most outstanding work of a creative artist or craftsman
+53392,mastership,the skill of a master
+53393,mastership,the position of master
+53394,masterstroke,an achievement demonstrating great skill or mastery
+53395,mastery subordination,the act of mastering or subordinating someone
+53396,masthead,the title of a newspaper or magazine; usually printed on the front page and on the editorial page
+53397,masthead,the head or top of a mast
+53398,masthead flag,a listing printed in all issues of a newspaper or magazine (usually on the editorial page) that gives the name of the publication and the names of the editorial staff, etc.
+53399,mastic,an aromatic exudate from the mastic tree; used chiefly in varnishes
+53400,mastic,a pasty cement used as an adhesive or filler
+53401,mastic mastic_tree lentisk Pistacia_lentiscus,an evergreen shrub of the Mediterranean region that is cultivated for its resin
+53402,mastiff,an old breed of powerful deep-chested smooth-coated dog used chiefly as a watchdog and guard dog
+53403,mastiff_bat,a soft-furred chocolate-brown bat with folded ears and small wings; often runs along the ground
+53404,mastitis,inflammation of a breast (or udder)
+53405,mastodon mastodont,extinct elephant-like mammal that flourished worldwide from Miocene through Pleistocene times; differ from mammoths in the form of the molar teeth
+53406,mastoid mastoid_process mastoid_bone mastoidal,process of the temporal bone behind the ear at the base of the skull
+53407,mastoidale,the craniometric point at the lowest point of the mastoid process
+53408,mastoidectomy,surgical removal of some or all of the mastoid process
+53409,mastoiditis,inflammation of the mastoid
+53410,mastopathy mazopathy,any pathology of the breast
+53411,mastopexy,plastic surgery to lift or reshape the breasts
+53412,masturbation onanism,manual stimulation of the genital organs (of yourself or another) for sexual pleasure
+53413,masturbator onanist,a person who practices masturbation
+53414,mat,a mass that is densely tangled or interwoven; "a mat of weeds and grass"
+53415,mat,a small pad of material that is used to protect surface from an object placed on it
+53416,mat,a thick flat pad used as a floor covering
+53417,mat gym_mat,sports equipment consisting of a piece of thick padding on the floor for gymnastic sports
+53418,mat matting,mounting consisting of a border or background for a picture
+53419,matador,the principal bullfighter who is appointed to make the final passes and kill the bull
+53420,matai black_pine Prumnopitys_taxifolia Podocarpus_spicata,conifer of Australia and New Zealand
+53421,match,the score needed to win a match
+53422,match,a formal contest in which two or more persons or teams compete
+53423,match,something that resembles or harmonizes with; "that tie makes a good match with your jacket"
+53424,match,a burning piece of wood or cardboard; "if you drop a match in there the whole place will explode"
+53425,match lucifer friction_match,lighter consisting of a thin piece of wood or cardboard tipped with combustible chemical; ignites with friction; "he always carries matches to light his pipe"; "as long you've a lucifer to light your fag"
+53426,match mate,an exact duplicate; "when a match is found an entry is made in the notebook"
+53427,match-up matchup,the pairing of people or things as for comparison or competition; "it was a good match-up but the home team won"; "we need a matchup of the best teachers with the neediest schools"
+53428,match_plane tonguing_and_grooving_plane,a plane having cutters designed to make the tongues and grooves on the edges of matchboards
+53429,match_play,golf scoring by holes won
+53430,match_point,(tennis) the final point needed to win a match (especially in tennis)
+53431,matchboard,a board that has a groove cut into one edge and a tongue cut into the other so they fit tightly together (as in a floor)
+53432,matchbook,a small folder of paper safety matches
+53433,matchbox,a box for holding matches
+53434,matching_funds,funds that will be supplied in an amount matching the funds available from other sources
+53435,matchlock,an early style of musket; a slow-burning wick would be lowered into a hole in the breech to ignite the charge
+53436,matchmaker matcher marriage_broker,someone who arranges (or tries to arrange) marriages for others
+53437,matchmaking,mediation in order to bring about a marriage between others
+53438,matchstick,a short thin stick of wood used in making matches
+53439,matchweed matchbush,any of several plants of the genus Gutierrezia having tiny flower heads that resemble the heads of matches
+53440,matchwood,wood suitable for making matchsticks
+53441,matchwood,fragments of wood; "it was smashed into matchwood"
+53442,matchwood splinters,wood in small pieces or splinters; "the vessel was beaten to matchwood on the rocks"
+53443,mate,the partner of an animal (especially a sexual partner); "he loved the mare and all her mates"; "camels hate leaving their mates"
+53444,mate,informal term for a friend of the same sex
+53445,mate,South American tea-like drink made from leaves of a South American holly called mate
+53446,mate Paraguay_tea Ilex_paraguariensis,South American holly; leaves used in making a drink like tea
+53447,mate fellow,one of a pair; "he lost the mate to his shoe"; "one eye was blue but its fellow was brown"
+53448,mate first_mate,the officer below the master on a commercial ship
+53449,matelote,highly seasoned soup or stew made of freshwater fishes (eel, carp, perch) with wine and stock
+53450,mater,an informal use of the Latin word for mother; sometimes used by British schoolboys or used facetiously
+53451,material,a person judged suitable for admission or employment; "he was university material"; "she was vice-presidential material"
+53452,material,information (data or ideas or observations) that can be used or reworked into a finished form; "the archives provided rich material for a definitive biography"
+53453,material,things needed for doing or making something; "writing materials"; "useful teaching materials"
+53454,material stuff,the tangible substance that goes into the makeup of a physical object; "coal is a hard black material"; "wheat is the stuff they use to make bread"
+53455,material_breach,a breach serious enough to destroy the value of the contract and to give a basis for an action for breach of contract
+53456,material_resource,assets in the form of material possessions
+53457,material_witness,a witness whose testimony is both relevant to the matter at issue and required in order to resolve the matter
+53458,materialism philistinism,a desire for wealth and material possessions with little interest in ethical or spiritual matters
+53459,materialism physicalism,(philosophy) the philosophical theory that matter is the only reality
+53460,materialist,someone with great regard for material possessions
+53461,materialist,someone who thinks that nothing exists but physical matter
+53462,materiality,relevance requiring careful consideration
+53463,materiality physicalness corporeality corporality,the quality of being physical; consisting of matter
+53464,materialization materialisation,the process of coming into being; becoming reality; "the materialization of her dream"
+53465,materialization materialisation manifestation,an appearance in bodily form (as of a disembodied spirit)
+53466,materials_handling,act of loading and unloading and moving goods within e.g. a factory especially using mechanical devices
+53467,materiel equipage,equipment and supplies of a military force
+53468,maternal-infant_bonding,the attachment that forms between an infant and its mother beginning at birth; "maternal-infant bonding influences the child's psychological and physical development"
+53469,maternalism,motherly care; behavior characteristic of a mother; the practice of acting as a mother does toward her children
+53470,maternity_hospital,a hospital that provides care for women during pregnancy and childbirth and for newborn infants
+53471,maternity_ward,a hospital ward that provides care for women during pregnancy and childbirth and for newborn infants
+53472,math_teacher mathematics_teacher,someone who teaches mathematics
+53473,mathematical_notation,a notation used by mathematicians
+53474,mathematical_process mathematical_operation operation,(mathematics) calculation by mathematical methods; "the problems at the end of the chapter demonstrated the mathematical processes involved in the derivation"; "they were learning the basic operations of arithmetic"
+53475,mathematical_proof,proof of a mathematical theorem
+53476,mathematical_relation,a relation between mathematical expressions (such as equality or inequality)
+53477,mathematical_space topological_space,(mathematics) any set of points that satisfy a set of postulates of some kind; "assume that the topological space is finite dimensional"
+53478,mathematical_statement,a statement of a mathematical relation
+53479,mathematical_symbol,a character that is used to indicates a mathematical relation or operation
+53480,mathematician,a person skilled in mathematics
+53481,mathematics math maths,a science (or group of related sciences) dealing with the logic of quantity and shape and arrangement
+53482,mathematics_department department_of_mathematics,the academic department responsible for teaching and research in mathematics
+53483,matilija_poppy California_tree_poppy Romneya_coulteri,tall branching subshrub of California and Mexico often cultivated for its silvery-blue foliage and large fragrant white flowers
+53484,matinee,a theatrical performance held during the daytime (especially in the afternoon)
+53485,matins morning_prayer,the first canonical hour; at daybreak
+53486,matriarch,a feisty older woman with a big bosom (as drawn in cartoons)
+53487,matriarch materfamilias,a female head of a family or tribe
+53488,matriarchy matriarchate,a form of social organization in which a female is the family head and title is traced through the female line
+53489,matricide,a person who murders their mother
+53490,matricide,the murder of your mother
+53491,matriculate,someone who has been admitted to a college or university
+53492,matriculation matric,admission to a group (especially a college or university)
+53493,matrilineage enation cognation,line of descent traced through the maternal side of the family
+53494,matrimonial_law,that branch of jurisprudence that studies the laws governing matrimony
+53495,matrimony,the ceremony or sacrament of marriage
+53496,matrimony_vine boxthorn,any of various shrubs or vines of the genus Lycium with showy flowers and bright berries
+53497,matrix,(geology) a mass of fine-grained rock in which fossils, crystals, or gems are embedded
+53498,matrix,an enclosure within which something originates or develops (from the Latin for womb)
+53499,matrix,(mathematics) a rectangular array of quantities or expressions set out by rows and columns; treated as a single element and manipulated according to rules
+53500,matrix,the formative tissue at the base of a nail
+53501,matrix,mold used in the production of phonograph records, type, or other relief surface
+53502,matrix intercellular_substance ground_substance,the body substance in which tissue cells are embedded
+53503,matrix_addition,the addition of matrices
+53504,matrix_algebra,the part of algebra that deals with the theory of matrices
+53505,matrix_inversion,determination of a matrix that when multiplied by the given matrix will yield a unit matrix
+53506,matrix_multiplication,the multiplication of matrices
+53507,matrix_operation,a mathematical operation involving matrices
+53508,matrix_transposition,the interchange of each row of a square matrix with the corresponding column
+53509,matron,a wardress in a prison
+53510,matron,a woman in charge of nursing in a medical institution
+53511,matron,a married woman (usually middle-aged with children) who is staid and dignified
+53512,matron_of_honor,a married woman serving as the attendant to the bride at a wedding
+53513,matronymic metronymic,a name derived from the name of your mother or a maternal ancestor
+53514,matsyendra,(Hinduism) a religious posture
+53515,matte,a mixture of sulfides that forms when sulfide metal ores are smelted
+53516,matter,written works (especially in books or magazines); "he always took some reading matter with him on the plane"
+53517,matter,a problem; "is anything the matter?"
+53518,matter,(used with negation) having consequence; "they were friends and it was no matter who won the games"
+53519,matter,that which has mass and occupies space; "physicists study both the nature of matter and the forces which govern it"
+53520,matter affair thing,a vaguely specified concern; "several matters to attend to"; "it is none of your affair"; "things are going well"
+53521,matter_of_fact,a matter that is an actual fact or is demonstrable as a fact
+53522,matting,a covering of coarse fabric (usually of straw or hemp)
+53523,mattock,a kind of pick that is used for digging; has a flat blade set at right angles to the handle
+53524,mattress,a large thick pad filled with resilient material and often incorporating coiled springs, used as a bed or part of a bed
+53525,mattress_cover,bedclothes that provide a cover for a mattress
+53526,mattress_pad,a protective pad over a mattress to protect it
+53527,maturation ripening maturement,coming to full development; becoming mature
+53528,maturity matureness,state of being mature; full development
+53529,maturity maturity_date due_date,the date on which an obligation must be repaid
+53530,matzo matzoh matzah unleavened_bread,brittle flat bread eaten at Passover
+53531,matzo_ball matzoh_ball matzah_ball,a Jewish dumpling made of matzo meal; usually served in soup
+53532,matzo_meal matzoh_meal matzah_meal,meal made from ground matzos
+53533,maul sledge sledgehammer,a heavy long-handled hammer used to drive stakes or wedges
+53534,mauler,a fighter who batters the opponent; "Jack Dempsey was called a mauler"
+53535,maulstick mahlstick,a long stick that a painter uses to support the hand holding the brush
+53536,maund,a unit of weight used in Asia; has different values in different countries; "the official maund in India is 82.6 pounds avoirdupois"
+53537,mausoleum,a large burial chamber, usually above ground
+53538,mauve,a moderate purple
+53539,maverick,an unbranded range animal (especially a stray calf); belongs to the first person who puts a brand on it
+53540,maverick rebel,someone who exhibits great independence in thought and action
+53541,mawkishness bathos,insincere pathos
+53542,mawkishness sentimentality drippiness mushiness soupiness sloppiness,falsely emotional in a maudlin way
+53543,maxi,a long skirt ending below the calf
+53544,maxillaria,any of numerous orchids of the genus Maxillaria often cultivated for their large brilliantly colored solitary flowers
+53545,maxillary_artery arteria_maxillaris,either of two arteries branching from the external carotid artery and supplying structure of the face
+53546,maxillary_sinus,one of a pair of sinuses forming a cavity in the maxilla
+53547,maxillary_vein vena_maxillaris,posterior continuation of the pterygoid plexus; joins the superficial temporal vein to form the retromandibular vein
+53548,maxim axiom,a saying that is widely accepted on its own merits
+53549,maximization,the mathematical process of finding the maximum value of a function
+53550,maximization maximisation maximation,the act of raising to the highest possible point or condition or position
+53551,maximum,the point on a curve where the tangent changes from positive on the left to negative on the right
+53552,maximum upper_limit,the largest possible quantity
+53553,maximum_and_minimum_thermometer,thermometer that records the highest and lowest temperatures reached during a period of time
+53554,maxwell Mx,a cgs unit of magnetic flux equal to the flux perpendicular to an area of 1 square centimeter in a magnetic field of 1 gauss
+53555,mayapple May_apple wild_mandrake Podophyllum_peltatum,North American herb with poisonous root stock and edible though insipid fruit
+53556,mayeng maple-leaved_bayur Pterospermum_acerifolium,Indian tree having fragrant nocturnal white flowers and yielding a reddish wood used for planking; often grown as an ornamental or shade tree
+53557,mayfly dayfly shadfly,slender insect with delicate membranous wings having an aquatic larval stage and terrestrial adult stage usually lasting less than two days
+53558,mayhaw summer_haw Crataegus_aestivalis,hawthorn of southern United States bearing a juicy, acidic, scarlet fruit that is often used in jellies or preserves
+53559,mayhem,the willful and unlawful crippling or mutilation of another person
+53560,mayonnaise mayo,egg yolks and oil and vinegar
+53561,mayor city_manager,the head of a city government
+53562,mayoralty,the position of mayor
+53563,mayoress,the wife of a mayor
+53564,mayoress,a woman mayor
+53565,maypole,a vertical pole or post decorated with streamers that can be held by dancers celebrating May Day
+53566,maypop Passiflora_incarnata,of southern United States; having an insipid berry the size of a hen egg
+53567,mayweed dog_fennel stinking_mayweed stinking_chamomile Anthemis_cotula,widespread rank-smelling weed having white-rayed flower heads with yellow discs
+53568,maze labyrinth,complex system of paths or tunnels in which it is easy to get lost
+53569,mazer,a large hardwood drinking bowl
+53570,mazurka,music composed for dancing the mazurka
+53571,mazurka,a Polish national dance in triple time
+53572,mea_culpa,an acknowledgment of your error or guilt
+53573,mead,made of fermented honey and water
+53574,meadow_buttercup tall_buttercup tall_crowfoot tall_field_buttercup Ranunculus_acris,perennial European buttercup with yellow spring flowers widely naturalized especially in eastern North America
+53575,meadow_clary Salvia_pratensis,tall perennial Old World salvia with violet-blue flowers; found in open grasslands
+53576,meadow_cranesbill Geranium_pratense,tall perennial cranesbill with paired violet-blue axillary flowers; native to northern parts of Old World and naturalized in North America
+53577,meadow_foxtail Alopecurus_pratensis,stout erect perennial grass of northern parts of Old World having silky flowering spikes; widely cultivated for pasture and hay; naturalized in North America
+53578,meadow_goldenrod Canadian_goldenrod Solidago_canadensis,large North American goldenrod having showy clusters of yellow flowers on arching branches; often a weed
+53579,meadow_jumping_mouse Zapus_hudsonius,widely distributed in northeastern and central United States and Canada
+53580,meadow_mushroom field_mushroom Agaricus_campestris,common edible mushroom found naturally in moist open soil; the cultivated mushroom of commerce
+53581,meadow_pipit Anthus_pratensis,a common pipit that is brown above and white below; widely distributed in northern and central Europe and in Asia
+53582,meadow_rue,any of various herbs of the genus Thalictrum; sometimes rhizomatous or tuberous perennials found in damp shady places and meadows or stream banks; have lacy foliage and clouds of small purple or yellow flowers
+53583,meadow_salsify goatsbeard shepherd's_clock Tragopogon_pratensis,weedy European annual with yellow flowers; naturalized in United States
+53584,meadow_saxifrage fair-maids-of-France Saxifraga_granulata,rosette-forming perennial having compact panicles of white flowers; Europe
+53585,meadow_spikemoss basket_spikemoss Selaginella_apoda,spikemoss forming dense mats; eastern North America
+53586,meadow_spittlebug Philaenus_spumarius,North American insect that severely damages grasses
+53587,meadow_vole meadow_mouse Microtus_pennsylvaticus,widely distributed in grasslands of northern United States and Canada
+53588,meadowgrass meadow_grass,any of various grasses that thrive in the presence of abundant moisture
+53589,meadowlark lark,North American songbirds having a yellow breast
+53590,meagerness meagreness leanness poorness scantiness scantness exiguity,the quality of being meager; "an exiguity of cloth that would only allow of miniature capes"-George Eliot
+53591,meal,any of the occasions for eating food that occur by custom or habit at more or less fixed times
+53592,meal,coarsely ground foodstuff; especially seeds of various cereal grasses or pulse
+53593,meal repast,the food served and eaten at one time
+53594,meal_ticket,a source of income or livelihood
+53595,meal_ticket luncheon_voucher,coupon redeemable at a restaurant and entitling the holder to a meal
+53596,mealie,an ear of corn
+53597,mealtime,the hour at which a meal is habitually or customarily eaten
+53598,mealworm,the larva of beetles of the family Tenebrionidae
+53599,mealybug mealy_bug,scalelike plant-eating insect coated with a powdery waxy secretion; destructive especially of fruit trees
+53600,mean mean_value,an average of n numbers computed by adding some function of the numbers and dividing by some function of n
+53601,mean_deviation mean_deviation_from_the_mean,the arithmetic mean of the absolute values of deviations from the mean of a distribution
+53602,mean_distance,the arithmetic mean of the maximum and minimum distances of a celestial body (satellite or secondary star) from its primary
+53603,mean_sun,a theoretical sun that moves along the celestial equator at a constant speed and completes its annual course in the same amount of time the real sun takes at variable speeds
+53604,mean_time mean_solar_time,(astronomy) time based on the motion of the mean sun (an imaginary sun moving uniformly along the celestial equator)
+53605,meander,a bend or curve, as in a stream or river
+53606,meanie meany unkind_person,a person of mean disposition
+53607,meaning significance signification import,the message that is intended or expressed or signified; "what is the meaning of this sentence"; "the significance of a red traffic light"; "the signification of Chinese characters"; "the import of his announcement was ambiguous"
+53608,meaning substance,the idea that is intended; "What is the meaning of this proverb?"
+53609,meaningfulness,the quality of having great value or significance
+53610,meaninglessness,the quality of having no value or significance; "he resented the meaninglessness of the tasks they assigned him"
+53611,meanness minginess niggardliness niggardness parsimony parsimoniousness tightness tightfistedness closeness,extreme stinginess
+53612,means,an instrumentality for accomplishing some end
+53613,means agency way,thing or person that acts to produce a particular effect or achieve an end; "a means of control"; "an example is the best agency of instruction"; "the true way to success"
+53614,means substance,considerable capital (wealth or income); "he is a man of means"
+53615,means_test,an inquiry into the financial position of someone applying for financial aid
+53616,measles rubeola morbilli,an acute and highly contagious viral disease marked by distinct red spots followed by a rash; occurs primarily in children
+53617,measure,a container of some standard capacity that is used to obtain fixed amounts of a substance
+53618,measure bar,musical notation for a repeating pattern of musical beats; "the orchestra omitted the last twelve bars of the song"
+53619,measure quantity amount,how much there is or how many there are of something that you can quantify
+53620,measure step,any maneuver made as part of progress toward a goal; "the situation called for strong measures"; "the police took steps to reduce crime"
+53621,measurement measuring measure mensuration,the act or process of assigning numbers to phenomena according to a rule; "the measurements were carefully done"; "his mental measurings proved remarkably accurate"
+53622,measurer,a person who makes measurements
+53623,measuring_cup,graduated cup used to measure liquid or granular ingredients
+53624,measuring_instrument measuring_system measuring_device,instrument that shows the extent or amount or quantity or degree of something
+53625,measuring_stick measure measuring_rod,measuring instrument having a sequence of marks at regular intervals; used as a reference in making measurements
+53626,measuring_unit measuring_block,a unit of measurement
+53627,measuring_worm inchworm looper,small hairless caterpillar having legs on only its front and rear segments; mostly larvae of moths of the family Geometridae
+53628,meat,the flesh of animals (including fishes and birds and snails) used as food
+53629,meat_and_potatoes,the fundamental part; "successful negotiation is the meat and potatoes of arbitration"
+53630,meat_counter,counter where meats are displayed for sale
+53631,meat_grinder,a mill for grinding meat
+53632,meat_grinder,any action resulting in injury or destruction; "the meat grinder of politics destroyed his reputation"; "allied forces crumbled before the Wehrmacht meat grinder"
+53633,meat_hook,a strong pointed hook from which the carcasses of animals are hung
+53634,meat_house,a small house (on a farm) where meat is stored
+53635,meat_loaf meatloaf,a baked loaf of ground meat
+53636,meat_packer packer,a wholesaler in the meat-packing business
+53637,meat_pie,pie made with meat or fowl enclosed in pastry or covered with pastry or biscuit dough
+53638,meat_safe,a safe for storing meat
+53639,meat_thermometer,a thermometer that is inserted into the center of a roast (with the top away from the heat source); used to measure how well done the meat is
+53640,meatball,ground meat formed into a ball and fried or simmered in broth
+53641,meatpacking meat_packing meat-packing_business,wholesale packaging of meat for future sale (including slaughtering and processing and distribution to retailers)
+53642,meatus,a natural body passageway
+53643,mebendazole,an anthelmintic used to treat hookworm and pinworm and roundworm infestations
+53644,mebibit Mibit,a unit of information equal to 1024 kibibits or 2^20 (1,048,576) bits
+53645,mecca,a place that attracts many visitors; "New York is a mecca for young artists"
+53646,mechanic's_lien,lien to secure payment for work and materials in erecting or repairing a building or other structure
+53647,mechanical_advantage,the ratio of the force exerted by a machine to the force applied to it
+53648,mechanical_device,mechanism consisting of a device that works on mechanical principles
+53649,mechanical_drawing,scale drawing of a machine or architectural plan etc,
+53650,mechanical_energy,energy in a mechanical form
+53651,mechanical_engineer,a person trained to design and construct machines
+53652,mechanical_engineering,the branch of engineering that deals with the design and construction and operation of machinery
+53653,mechanical_mixture,a mixture whose components can be separated by mechanical means
+53654,mechanical_phenomenon,a physical phenomenon associated with the equilibrium or motion of objects
+53655,mechanical_piano Pianola player_piano,a mechanically operated piano that uses a roll of perforated paper to activate the keys
+53656,mechanical_system,a system of elements that interact on mechanical principles
+53657,mechanics,the branch of physics concerned with the motion of bodies in a frame of reference
+53658,mechanism,a natural object resembling a machine in structure or function; "the mechanism of the ear"; "the mechanism of infection"
+53659,mechanism,(philosophy) the philosophical theory that all phenomena can be explained in terms of physical or biological causes
+53660,mechanism,device consisting of a piece of machinery; has moving parts that perform some function
+53661,mechanism chemical_mechanism,the atomic process that occurs during a chemical reaction; "he determined unique mechanisms for the photochemical reactions"
+53662,mechanism mechanics,the technical aspects of doing something; "a mechanism of social control"; "mechanisms of communication"; "the mechanics of prose style"
+53663,mechanist,a philosopher who subscribes to the doctrine of mechanism
+53664,mechanization mechanisation,the condition of having a highly technical implementation
+53665,mechanized_cavalry,an armored unit of a modern army equipped with motor vehicles
+53666,meclizine meclizine_hydrochloride Antivert,an antihistamine (trade name Antivert) used to treat or prevent motion sickness
+53667,meclofenamate meclofenamate_sodium Meclomen,a nonsteroidal anti-inflammatory (trade name Meclomen) used to treat arthritis
+53668,meconium,thick dark green mucoid material that is the first feces of a newborn child
+53669,mecopteran,any of various carnivorous insects of the order Mecoptera
+53670,medal_play stroke_play,golf scoring by total strokes taken
+53671,medalist medallist,someone who has won a medal
+53672,medalist medallist medal_winner,(golf) the winner at medal play of a tournament
+53673,medallion,any of various large ancient Greek coins
+53674,medallion,a circular helping of food (especially a boneless cut of meat); "medallions of veal"
+53675,medallion,an emblem indicating that a taxicab is registered
+53676,meddler,an officious annoying person who interferes with others
+53677,meddling tampering,the act of altering something secretly or improperly
+53678,media_consultant media_guru,someone who advises about the use of communication media
+53679,mediacy mediateness,the quality of being mediate
+53680,medial_condyle,a condyle on the inner side of the lower extremity of the femur
+53681,medial_geniculate_body corpus_geniculatum_mediale medial_geniculate,a neural structure that serves as the last of a series of processing centers along the auditory pathway from the cochlea to the temporal lobe of the cerebral cortex
+53682,medial_rectus_muscle medial_rectus rectus_medialis,the ocular muscle whose contraction turns the eyeball medially
+53683,median median_value,the number midway between the two middle numbers in a series containing an even or odd number of items
+53684,mediant,(music) the third note of a diatonic scale; midway between the tonic and the dominant
+53685,mediastinum,the part of the thoracic cavity between the lungs that contains the heart and aorta and esophagus and trachea and thymus
+53686,mediation,a negotiation to resolve differences that is conducted by some impartial party
+53687,mediation intermediation,the act of intervening for the purpose of bringing about a settlement
+53688,mediator go-between intermediator intermediary intercessor,a negotiator who acts as a link between parties
+53689,mediatrix,a woman who is a mediator
+53690,medic medick trefoil,any of several Old World herbs of the genus Medicago having small flowers and trifoliate compound leaves
+53691,medical_assistant,a person trained to assist medical professionals
+53692,medical_bill doctor's_bill,statement of charges for medical services
+53693,medical_building health_facility healthcare_facility,building where medicine is practiced
+53694,medical_care medical_aid,professional treatment for illness or injury
+53695,medical_center,the part of a city where medical facilities are centered
+53696,medical_diagnosis,identification of a disease from its symptoms
+53697,medical_evacuation medevac medivac,the evacuation of persons (usually by air transportation) to a place where they can receive medical care
+53698,medical_expense,amount spent for diagnosis or treatment or prevention of medical problems
+53699,medical_history medical_record anamnesis,the case history of a medical patient as recalled by the patient
+53700,medical_institution,an institution created for the practice of medicine
+53701,medical_instrument,instrument used in the practice of medicine
+53702,medical_officer medic,a medical practitioner in the armed forces
+53703,medical_practice,the practice of medicine
+53704,medical_practitioner medical_man,someone who practices medicine
+53705,medical_procedure,a procedure employed by medical or dental practitioners
+53706,medical_profession medical_community,the body of individuals who are qualified to practice medicine
+53707,medical_relation,the professional relation between a health care professional and a patient
+53708,medical_report,a report of the results of a medical examination of a patient
+53709,medical_school school_of_medicine,a graduate school offering study leading to a medical degree
+53710,medical_science,the science of dealing with the maintenance of health and the prevention and treatment of disease
+53711,medical_scientist,a scientist who studies disease processes
+53712,medical_student medico,a student in medical school
+53713,medicare_check medicare_payment,a check reimbursing an aged person for the expenses of health care
+53714,medication,the act of treating with medicines or remedies
+53715,medicinal_leech Hirudo_medicinalis,large European freshwater leech formerly used for bloodletting
+53716,medicine medical_specialty,the branches of medical science that deal with nonsurgical techniques
+53717,medicine medication medicament medicinal_drug,(medicine) something that treats or prevents or alleviates the symptoms of disease
+53718,medicine practice_of_medicine,the learned profession that is mastered by graduate training in a medical school and that is devoted to preventing or alleviating or curing diseases and injuries; "he studied medicine at Harvard"
+53719,medicine_ball,heavy ball used in physical training
+53720,medicine_chest medicine_cabinet,cabinet that holds medicines and toiletries
+53721,medicine_man,a Native American shaman
+53722,medina,the ancient quarter of many cities in northern Africa
+53723,meditation,(religion) contemplation of spiritual matters (usually on religious or philosophical subjects)
+53724,meditation speculation,continuous and profound contemplation or musing on a subject or series of subjects of a deep or abstruse nature; "the habit of meditation is the basis for all real knowledge"
+53725,mediterranean_anchovy Engraulis_encrasicholus,esteemed for its flavor; usually preserved or used for sauces and relishes
+53726,medium,a liquid with which pigment is mixed by a painter
+53727,medium,(biology) a substance in which specimens are preserved or displayed
+53728,medium,an intervening substance through which something is achieved; "the dissolving medium is called a solvent"
+53729,medium,a state that is intermediate between extremes; a middle position; "a happy medium"
+53730,medium,the surrounding environment; "fish require an aqueous medium"
+53731,medium,a means or instrumentality for storing or communicating information
+53732,medium,an intervening substance through which signals can travel as a means for communication
+53733,medium mass_medium,(usually plural) transmissions that are disseminated widely to the public
+53734,medium spiritualist sensitive,someone who serves as an intermediary between the living and the dead; "he consulted several mediums"
+53735,medium_frequency MF,300 to 3000 kilohertz
+53736,medium_of_exchange monetary_system,anything that is generally accepted as a standard of value and a measure of wealth in a particular country or region
+53737,medium_steel,steel with 0.15-0.3% carbon
+53738,medium_wave,a radio wave with a wavelength between 100 and 1000 meters (a frequency between 300 kilohertz and 3000 kilohertz)
+53739,medlar,a South African globular fruit with brown leathery skin and pithy flesh having a sweet-acid taste
+53740,medlar,crabapple-like fruit used for preserves
+53741,medlar medlar_tree Mespilus_germanica,small deciduous Eurasian tree cultivated for its fruit that resemble crab apples
+53742,medley potpourri pastiche,a musical composition consisting of a series of songs or other musical pieces from various sources
+53743,medroxyprogesterone Provera,a progestin compound (trade name Provera) used to treat menstrual disorders
+53744,medulla,the inner part of an organ or structure in plant or animal
+53745,medulla_oblongata medulla bulb,lower or hindmost part of the brain; continuous with spinal cord; (`bulb' is an old term for medulla oblongata); "the medulla oblongata is the most vital part of the brain because it contains centers controlling breathing and heart functioning"
+53746,medullary_sheath myelin_sheath,a layer of myelin encasing (and insulating) the axons of medullated nerve fibers
+53747,medullated_nerve_fiber myelinated_nerve_fiber,a nerve fiber encased in a sheath of myelin
+53748,medusa medusoid medusan,one of two forms that coelenterates take: it is the free-swimming sexual phase in the life cycle of a coelenterate; in this phase it has a gelatinous umbrella-shaped body and tentacles
+53749,medusa's_head Elymus_caput-medusae,weedy rye grass having long bristling awns
+53750,medusa's_head Euphorbia_medusae Euphorbia_caput-medusae,African dwarf succulent perennial shrub with numerous slender drooping branches
+53751,meed,a fitting reward
+53752,meekness subduedness,a disposition to be patient and long suffering
+53753,meekness submission,the feeling of patient, submissive humbleness
+53754,meerkat mierkat,a mongoose-like viverrine of South Africa having a face like a lemur and only four toes
+53755,meerschaum,a pipe having a bowl made of meerschaum
+53756,meerschaum sepiolite,a white clayey mineral
+53757,meet sports_meeting,a meeting at which a number of athletic contests are held
+53758,meeting coming_together congress,the social act of assembling for some common purpose; "his meeting with the salesmen was the high point of his day"; "the lovers met discreetly for the purposes of sexual congress"
+53759,meeting encounter,a casual or unexpected convergence; "he still remembers their meeting in Paris"; "there was a brief encounter in the hallway"
+53760,meeting get_together,a small informal social gathering; "there was an informal meeting in my living room"
+53761,meeting group_meeting,a formally arranged gathering; "next year the meeting will be in Chicago"; "the meeting elected a chairperson"
+53762,meeting_house honeysuckle Aquilegia_canadensis,columbine of eastern North America having long-spurred red flowers
+53763,mefenamic_acid Ponstel,a nonsteroidal anti-inflammatory and analgesic drug (trade name Ponstel) used to treat mild pain (especially menstrual cramps)
+53764,mefloquine mefloquine_hydrochloride Larium Mephaquine,an antimalarial drug (trade name Larium and Mephaquine) that is effective in cases that do not respond to chloroquine; said to produce harmful neuropsychiatric effects on some people
+53765,megabit Mbit Mb,a unit of information equal to 1000 kilobits or 10^6 (1,000,000) bits
+53766,megabyte M MB,a unit of information equal to 1000 kilobytes or 10^6 (1,000,000) bytes
+53767,megabyte mebibyte M MB MiB,a unit of information equal to 1024 kibibytes or 2^20 (1,048,576) bytes
+53768,megacolon,an abnormal enlargement of the colon; can be congenital (as in Hirschsprung's disease) or acquired (as when children refuse to defecate)
+53769,megadeath,the death of a million people; "they calibrate the effects of atom bombs in megadeaths"
+53770,megaflop MFLOP million_floating_point_operations_per_second,(computer science) a unit for measuring the speed of a computer system
+53771,megagametophyte,the female gametophyte produced by the megaspore of a plant that produces both microspore and megaspores
+53772,megahertz MHz megacycle_per_second megacycle Mc,one million periods per second
+53773,megakaryocyte,a large bone marrow cell; regarded as the source of blood platelets
+53774,megalith megalithic_structure,memorial consisting of a very large stone forming part of a prehistoric structure (especially in western Europe)
+53775,megaloblast,abnormally large red blood cell present in pernicious anemia and folic acid deficiency
+53776,megaloblastic_anemia megaloblastic_anaemia,anemia characterized by many large immature and dysfunctional red blood cells (megaloblasts) in the bone marrow; associated with pernicious anemia
+53777,megalocyte macrocyte,abnormally large red blood cell (associated with pernicious anemia)
+53778,megalomania,a psychological state characterized by delusions of grandeur
+53779,megalomaniac,a pathological egotist
+53780,megalopolis,a very large urban complex (usually involving several cities and towns)
+53781,megalosaur megalosaurus,gigantic carnivorous bipedal dinosaur of the Jurassic or early Cretaceous in Europe
+53782,megaphone,a cone-shaped acoustic device held to the mouth to intensify and direct the human voice
+53783,megapode mound_bird mound-bird mound_builder scrub_fowl,large-footed short-winged birds of Australasia; build mounds of decaying vegetation to incubate eggs
+53784,megasporangium macrosporangium,a plant structure that produces megaspores
+53785,megaspore macrospore,larger of the two types of spore produced in heterosporous plants; develops in ovule into a female gametophyte
+53786,megasporophyll,in non-flowering plants, a sporophyll that bears only megasporangia
+53787,megatherian megatheriid megatherian_mammal,a large extinct ground sloth
+53788,megaton,one million tons
+53789,megaton,a measure of explosive power (of an atomic weapon) equal to that of one million tons of TNT
+53790,megaton_bomb,a nuclear weapon with an explosive power equivalent to one million tons of TNT
+53791,megavitamin_therapy,therapy based on a theory that taking very large doses of vitamins will prevent or cure physical or psychological disorders
+53792,megawatt,a unit of power equal to one million watts
+53793,megestrol megestrol_acetate,a synthetic progestational compound used to treat endometrial carcinoma
+53794,megillah,(Yiddish) a long boring tediously detailed account; "he insisted on giving us the whole megillah"
+53795,megilp magilp,a medium for oil-paints; linseed oil mixed with mastic varnish or turpentine
+53796,megohm,a unit of resistance equal to one million ohms
+53797,meiosis miosis reduction_division,(genetics) cell division that produces reproductive cells in sexually reproducing organisms; the nucleus divides into four nuclei each containing half the chromosome number (leading to gametes in animals and spores in plants)
+53798,meitnerium Mt element_109 atomic_number_109,a radioactive transuranic element
+53799,melagra,rheumatic or myalgic pains in the arms or legs
+53800,melamine cyanuramide,a white crystalline organic base; used mainly in making melamine resins
+53801,melamine_resin,a thermosetting resin formed from melamine and an aldehyde; used in molded products, adhesives, and coatings
+53802,melancholia,extreme depression characterized by tearful sadness and irrational fears
+53803,melancholic melancholiac,someone subject to melancholia
+53804,melancholy,a constitutional tendency to be gloomy and depressed
+53805,melancholy,a feeling of thoughtful sadness
+53806,melancholy_thistle Cirsium_heterophylum Cirsium_helenioides,perennial stoloniferous thistle of northern Europe with lanceolate basal leaves and usually solitary heads of reddish-purple flowers
+53807,melanin,insoluble pigments that account for the color of e.g. skin and scales and feathers
+53808,melanoblast,an epidermal cell that is a precursor of a melanocyte
+53809,melanocyte,a cell in the basal layer of the epidermis that produces melanin under the control of the melanocyte-stimulating hormone
+53810,melanocyte-stimulating_hormone MSH,a hormone secreted by the anterior pituitary gland that controls the degree of pigmentation in melanocytes
+53811,melanoderma,abnormally dark skin caused by increased deposits of melatonin
+53812,melanoma malignant_melanoma,any of several malignant neoplasms (usually of the skin) consisting of melanocytes
+53813,melanosis melanism,a condition characterized by abnormal deposits of melanin (especially in the skin)
+53814,melatonin,hormone secreted by the pineal gland
+53815,melee scrimmage battle_royal,a noisy riotous fight
+53816,melena melaena,abnormally dark tarry feces containing blood (usually from gastrointestinal bleeding)
+53817,melilotus melilot sweet_clover,erect annual or biennial plant grown extensively especially for hay and soil improvement
+53818,melioration,the linguistic process in which over a period of time a word grows more positive in connotation or more elevated in meaning
+53819,meliorism,the belief that the world can be made better by human effort
+53820,mellowing,the process of becoming mellow
+53821,mellowness,a feeling of good humor and sympathy through maturity or intoxication or a relaxed state
+53822,mellowness,a taste (especially of fruit) that is ripe and of full flavor
+53823,mellowness,a soft shade of a color; "a mellowness of light and shade not attainable in marble"
+53824,mellowness,geniality, as through the effects of alcohol or marijuana
+53825,melodiousness tunefulness,the property of having a melody
+53826,melodrama,an extravagant comedy in which action is more salient than characterization
+53827,melody tonal_pattern,the perception of pleasant arrangements of musical notes
+53828,melolonthid_beetle,any of various beetles of the family (or subfamily) Melolonthidae
+53829,melon,any of numerous fruits of the gourd family having a hard rind and sweet juicy flesh
+53830,melon melon_vine,any of various fruit of cucurbitaceous vines including: muskmelons; watermelons; cantaloupes; cucumbers
+53831,melon_ball,a bite of melon cut as a sphere
+53832,melosa Chile_tarweed madia_oil_plant Madia_sativa,South American herb with sticky glandular foliage; source of madia oil
+53833,melphalan Alkeran,antineoplastic drug (trade name Alkeran) used to treat multiple myeloma and some other malignancies
+53834,meltdown,a disaster comparable to a nuclear meltdown; "there is little likelihood of a meltdown comparable to the American banking collapse in March 1933"
+53835,meltdown nuclear_meltdown,severe overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping
+53836,melter,a worker who melts substances (metal or wax etc.)
+53837,melting_pot,an environment in which many ideas and races are socially assimilated
+53838,meltwater,melted snow or ice
+53839,mem,the 13th letter of the Hebrew alphabet
+53840,member,anything that belongs to a set or class; "snakes are members of the class Reptilia"; "members of the opposite sex"
+53841,member,an organization that is a member of another organization (especially a state that belongs to a group of nations); "the library was a member of the interlibrary loan association"; "Canada is a member of the United Nations"
+53842,member fellow_member,one of the persons who compose a social group (especially individuals who have joined and participate in a group organization); "only members will be admitted"; "a member of the faculty"; "she was introduced to all the members of his family"
+53843,member_bank,a bank that is a member of the Federal Reserve System
+53844,membership,the state of being a member
+53845,membership rank,the body of members of an organization or group; "they polled their membership"; "they found dissension in their own ranks"; "he joined the ranks of the unemployed"
+53846,membership_card,a card certifying membership in an organization
+53847,membrane,a thin pliable sheet of material
+53848,membrane tissue_layer,a pliable sheet of tissue that covers or lines or connects the organs or cells of animals or plants
+53849,membrane_bone,any bone that develops within membranous tissue without previous cartilage formation; e.g. the clavicle and bones of the skull
+53850,membranous_labyrinth,the sensory structures of the inner ear including the labyrinthine receptors and the cochlea; contained within the bony labyrinth
+53851,meme,a cultural unit (an idea or value or pattern of behavior) that is passed from one person to another by non-genetic means (as by imitation); "memes are the cultural counterpart of genes"
+53852,memento souvenir,a reminder of past events
+53853,memento_mori,a reminder (as a death's head) of your mortality
+53854,memo memorandum memoranda,a written proposal or reminder
+53855,memoir,an account of the author's personal experiences
+53856,memoir,an essay on a scientific or scholarly topic
+53857,memorabilia,a record of things worth remembering
+53858,memorability,the quality of being worth remembering; "continuous change results in lack of memorability"; "true memorability of phrase"
+53859,memorial,a written statement of facts submitted in conjunction with a petition to an authority
+53860,memorial commemoration remembrance,a recognition of meritorious service
+53861,memorial monument,a structure erected to commemorate persons or events
+53862,memorization memorisation committal_to_memory,learning so as to be able to remember verbatim; "the actor's memorization of his lines"
+53863,memorizer memoriser,a person who learns by rote
+53864,memory,the area of cognitive psychology that studies memory processes; "he taught a graduate course on learning and memory"
+53865,memory,something that is remembered; "search as he would, the memory was lost"
+53866,memory computer_memory storage computer_storage store memory_board,an electronic memory device; "a memory and the CPU form the central part of a computer to which peripherals are attached"
+53867,memory remembering,the cognitive processes whereby past experience is remembered; "he can do it from memory"; "he enjoyed remembering his father"
+53868,memory retention retentiveness retentivity,the power of retaining and recalling past experience; "he had a good memory when he was younger"
+53869,memory_chip,a RAM microchip that can be plugged into a computer to provide additional memory
+53870,memory_device storage_device,a device that preserves information for retrieval
+53871,memory_image,a mental image of something previously experienced
+53872,memory_picture,a memory image that is similar to a visual perception
+53873,memsahib,a woman sahib
+53874,men's_room men's,a public toilet for men
+53875,menace,a threat or the act of threatening; "he spoke with desperate menace"
+53876,menace threat,something that is a source of danger; "earthquakes are a constant threat in Japan"
+53877,menage_a_trois,household for three; an arrangement where a married couple and a lover of one of them live together while sharing sexual relations
+53878,menagerie,a collection of live animals for study or display
+53879,menagerie zoo zoological_garden,the facility where wild animals are housed for exhibition
+53880,menarche,the first occurrence of menstruation in a woman
+53881,mend patch darn,sewing that repairs a worn or torn hole (especially in a garment); "her stockings had several mends"
+53882,mendacity,the tendency to be untruthful
+53883,mendelevium Md Mv atomic_number_101,a radioactive transuranic element synthesized by bombarding einsteinium with alpha particles (Md is the current symbol for mendelevium but Mv was formerly the symbol)
+53884,mender repairer fixer,a skilled worker who mends or repairs things
+53885,mending,garments that must be repaired
+53886,menhaden Brevoortia_tyrannis,shad-like North American marine fishes used for fish meal and oil and fertilizer
+53887,menhaden_oil,a fatty oil obtained from the menhaden fish and used in paint and ink and in treating leather
+53888,menhir standing_stone,a tall upright megalith; found primarily in England and northern France
+53889,menial,a domestic servant
+53890,meningeal_artery arteria_meningea,any of three arteries supplying the meninges of the brain and neighboring structures
+53891,meningeal_veins venae_meningeae,veins at accompany the meningeal arteries
+53892,meningioma,a tumor arising in the meninges which surround the brain and spinal cord; usually slow growing and sometimes malignant
+53893,meningism,symptoms that mimic those of meningitis but without inflammation of the meninges
+53894,meningitis,infectious disease characterized by inflammation of the meninges (the tissues that surround the brain or spinal cord) usually caused by a bacterial infection; symptoms include headache and stiff neck and fever and nausea
+53895,meningocele,a congenital anomaly of the central nervous system in which a sac protruding from the brain or the spinal meninges contains cerebrospinal fluid (but no nerve tissue)
+53896,meningoencephalitis cerebromeningitis encephalomeningitis,inflammation of the brain and spinal cord and their meninges
+53897,meninx meninges,a membrane (one of 3) that envelops the brain and spinal cord
+53898,meniscectomy,surgical removal of the meniscus of the knee
+53899,meniscus,(optics) a lens that is concave on one side and convex on the other
+53900,meniscus,(physics) the curved upper surface of a nonturbulent liquid in a vertical tube
+53901,meniscus semilunar_cartilage,(anatomy) a disk of cartilage that serves as a cushion between the ends of bones that meet at a joint
+53902,meno_mosso,played at reduced speed; less rapid
+53903,menopause climacteric change_of_life,the time in a woman's life in which the menstrual cycle ends
+53904,menorah,(Judaism) a candelabrum with nine branches; used during the Hanukkah festival
+53905,menorrhagia hypermenorrhea,abnormally heavy or prolonged menstruation; can be a symptom of uterine tumors and can lead to anemia if prolonged
+53906,menorrhea menstrual_blood menstrual_flow,flow of blood from the uterus; occurs at roughly monthly intervals during a woman's reproductive years
+53907,mens_rea malice_aforethought,(law) criminal intent; the thoughts and intentions behind a wrongful act (including knowledge that the act is illegal); often at issue in murder trials
+53908,mensch mensh,a decent responsible person with admirable characteristics
+53909,menstrual_cycle,a recurring cycle (beginning at menarche and ending at menopause) in which the endometrial lining of the uterus prepares for pregnancy; if pregnancy does not occur the lining is shed at menstruation; "the average menstrual cycle is 28 days"
+53910,menstrual_phase,the phase of the menstrual cycle during which the lining of the uterus is shed (the first day of menstrual flow is considered day 1 of the menstrual cycle)
+53911,menstruation menses menstruum catamenia period flow,the monthly discharge of blood from the uterus of nonpregnant women from puberty to menopause; "the women were sickly and subject to excessive menstruation"; "a woman does not take the gout unless her menses be stopped"--Hippocrates; "the semen begins to appear in males and to be emitted at the same time of life that the catamenia begin to flow in females"--Aristotle
+53912,menstruum,(archaic) a solvent
+53913,mental_abnormality,any abnormality of mental function
+53914,mental_age,the level of intellectual development as measured by an intelligence test
+53915,mental_anguish,sustained dull painful emotion
+53916,mental_disorder mental_disturbance disturbance psychological_disorder folie,(psychiatry) a psychological disorder of thought or emotion; a more neutral term than mental illness
+53917,mental_exhaustion brain-fag,exhaustion that affects mental keenness
+53918,mental_health,the psychological state of someone who is functioning at a satisfactory level of emotional and behavioral adjustment
+53919,mental_hospital psychiatric_hospital mental_institution institution mental_home insane_asylum asylum,a hospital for mentally incompetent or unbalanced person
+53920,mental_illness mental_disease psychopathy,any disease of the mind; the psychological state of someone who has emotional or behavioral problems serious enough to require psychiatric intervention
+53921,mental_measurement,a generic term used to cover any application of measurement techniques to the quantification of mental functions
+53922,mental_note,special attention with intent to remember; "he made a mental note to send her flowers"
+53923,mental_picture picture impression,a clear and telling mental image; "he described his mental picture of his assailant"; "he had no clear picture of himself or his world"; "the events left a permanent impression in his mind"
+53924,mental_quickness quickness quick-wittedness,intelligence as revealed by an ability to give correct responses without delay
+53925,mental_reservation reservation arriere_pensee,an unstated doubt that prevents you from accepting something wholeheartedly
+53926,mental_soundness mental_balance,the healthy psychological state of someone with good judgment
+53927,mentalism,(philosophy) a doctrine that mind is the true reality and that objects exist only as aspects of the mind's awareness
+53928,mentality outlook mindset mind-set,a habitual or characteristic mental attitude that determines how you will interpret and respond to situations
+53929,mentally_retarded retarded developmentally_challenged,people collectively who are mentally retarded; "he started a school for the retarded"
+53930,menthol,a crystalline compound that has the cool and minty taste and odor that occurs naturally in peppermint oil; used as a flavoring and in medicine to relieve itching, pain, and nasal congestion
+53931,menthol,a lotion containing menthol which gives it the smell of mint
+53932,mentholated_salve,a salve containing menthol
+53933,mention honorable_mention,an official recognition of merit; "although he didn't win the prize he did get special mention"
+53934,mention reference,a remark that calls attention to something or someone; "she made frequent mention of her promotion"; "there was no mention of it"; "the speaker made several references to his wife"
+53935,mentioner,a speaker who refers to something briefly or incidentally
+53936,mentor wise_man,a wise and trusted guide and advisor
+53937,mentum,a projection like a chin formed by the sepals and base of the column in some orchids
+53938,mentum,a projection below the mouth of certain mollusks that resembles a chin
+53939,menu,the dishes making up a meal
+53940,menu bill_of_fare card carte_du_jour carte,a list of dishes available at a restaurant; "the menu was in French"
+53941,menu computer_menu,(computer science) a list of options available to a computer user
+53942,menu fare,an agenda of things to do; "they worked rapidly down the menu of reports"
+53943,meow mew miaou miaow miaul,the sound made by a cat (or any sound resembling this)
+53944,meperidine meperidine_hydrochloride Demerol,a synthetic narcotic drug (trade name Demerol) used to treat pain
+53945,mephenytoin Mesantoin,a toxic anticonvulsant drug (trade name Mesantoin) used in the treatment of epilepsy when less toxic anticonvulsants have been ineffective
+53946,mephitis,a poisonous or foul smelling gas emitted from the earth
+53947,mephobarbital Mebaral,a long-acting crystalline barbiturate (trade name Mebaral) used as a sedative and as an anticonvulsant in the treatment of epilepsy
+53948,meprobamate Miltown Equanil Meprin,a sedative and tranquilizer (trade name Miltown and Equanil and Meprin) used to treat muscle tension and anxiety
+53949,meralgia,pain in the thigh
+53950,merbromine Mercurochrome,a mercurial compound applied topically as an antiseptic; Mercurochrome is the trademark
+53951,mercantile_agency commercial_agency,an organization that provides businesses with credit ratings of other firms; "Dun & Bradstreet is the largest mercantile agency in the United States"
+53952,mercantile_establishment retail_store sales_outlet outlet,a place of business for retailing goods
+53953,mercantile_law commercial_law law_merchant,the body of rules applied to commercial transactions; derived from the practices of traders rather than from jurisprudence
+53954,mercantilism mercantile_system,an economic system (Europe in 18th century) to increase a nation's wealth by government regulation of all of the nation's commercial interests
+53955,mercaptopurine Purinethol,a drug (trade name Purinethol) that interferes with the metabolism of purine and is used to treat acute lymphocytic leukemia
+53956,mercenary soldier_of_fortune,a person hired to fight for another country than their own
+53957,mercer,a dealer in textiles (especially silks)
+53958,merchandise ware product,commodities offered for sale; "good business depends on having good merchandise"; "that store offers a variety of products"
+53959,merchant merchandiser,a businessperson engaged in retail trade
+53960,merchant_bank acquirer,a credit card processing bank; merchants receive credit for credit card receipts less a processing fee
+53961,merchant_marine,the crew of a merchant vessel
+53962,merchantability,the state of being fit for market; ready to be bought or sold
+53963,mercifulness mercy,the feeling that motivates compassion
+53964,mercifulness mercy,a disposition to be kind and forgiving; "in those days a wife had to depend on the mercifulness of her husband"
+53965,mercilessness unmercifulness,inhumaneness evidenced by an unwillingness to be kind or forgiving
+53966,mercurial_ointment,an ointment containing mercury
+53967,mercuric_chloride mercury_chloride bichloride_of_mercury corrosive_sublimate,a white poisonous soluble crystalline sublimate of mercury; used as a pesticide or antiseptic or wood preservative
+53968,mercury,temperature measured by a mercury thermometer; "the mercury was falling rapidly"
+53969,mercury quicksilver hydrargyrum Hg atomic_number_80,a heavy silvery toxic univalent and bivalent metallic element; the only metal that is liquid at ordinary temperatures
+53970,mercury-vapor_lamp,ultraviolet lamp that emits a strong bluish light (rich in ultraviolet radiation) as electric current passes through mercury vapor
+53971,mercury_barometer,barometer that shows pressure by the height of a column of mercury
+53972,mercury_cell,a primary cell consisting of a zinc anode and a cathode of mercury oxide and an electrolyte of potassium hydroxide
+53973,mercury_fulminate fulminate_of_mercury fulminating_mercury,a fulminate that when dry explodes violently if struck or heated; used in detonators and blasting caps and percussion caps
+53974,mercury_poisoning,a toxic condition caused by ingesting or inhaling mercury; acute mercury poisoning causes a metallic taste and vomiting and diarrhea and kidney problems that may lead to death
+53975,mercury_thermometer mercury-in-glass_thermometer,thermometer consisting of mercury contained in a bulb at the bottom of a graduated sealed glass capillary tube marked in degrees Celsius or Fahrenheit; mercury expands with a rise in temperature causing a thin thread of mercury to rise in the tube
+53976,mercy,something for which to be thankful; "it was a mercy we got out alive"
+53977,mercy,alleviation of distress; showing great kindness toward the distressed; "distributing food and clothing to the flood victims was an act of mercy"
+53978,mercy_seat,the throne of God
+53979,mercy_seat,the golden covering of the ark of the covenant
+53980,mere,a small pond of standing water
+53981,merestone meerestone mearstone,an old term for a landmark that consisted of a pile of stones surmounted by an upright slab
+53982,merganser fish_duck sawbill sheldrake,large crested fish-eating diving duck having a slender hooked bill with serrated edges
+53983,merger_agreement acquisition_agreement,contract governing the merger of two or more companies
+53984,merging meeting coming_together,the act of joining together as one; "the merging of the two groups occurred quickly"; "there was no meeting of minds"
+53985,mericarp,a carpel with one seed; one of a pair split apart at maturity
+53986,meridian line_of_longitude,an imaginary great circle on the surface of the earth passing through the north and south poles at right angles to the equator; "all points on the same meridian have the same longitude"
+53987,meringue,sweet topping especially for pies made of beaten egg whites and sugar
+53988,meringue_kiss,a kiss made of sugar and egg white and baked slowly
+53989,merino merino_sheep,white sheep originating in Spain and producing a heavy fleece of exceptional quality
+53990,meristem,undifferentiated tissue from which new cells are formed, as at the tip of a stem or root
+53991,merit virtue,any admirable quality or attribute; "work of great merit"
+53992,merit_badge,a badge award to Boy Scouts in recognition of special projects
+53993,merit_pay,extra pay awarded to an employee on the basis of merit (especially to school teachers)
+53994,merit_system,the system of employing and promoting civil servants on the basis of ability
+53995,meritocracy,a form of social system in which power goes to those with superior intellects
+53996,meritocracy,the belief that rulers should be chosen for their superior abilities and not because of their wealth or birth
+53997,merlon,a solid section between two crenels in a crenelated battlement
+53998,mermaid,half woman and half fish; lives in the sea
+53999,merman,half man and half fish; lives in the sea
+54000,meromelia,congenital absence of part of an arm or leg
+54001,meronym part_name,a word that names a part of a larger whole; "`brim' and `crown' are meronyms of `hat'"
+54002,meronymy part_to_whole_relation,the semantic relation that holds between a part and the whole
+54003,merozoite,a cell that arises from the asexual division of a parent sporozoan during its life cycle
+54004,merry-go-round,a never-ending cycle of activities and events (especially when they seem to have little purpose); "if we lose the election the whole legislative merry-go-round will have to start over"
+54005,merrymaking conviviality jollification,a boisterous celebration; a merry festivity
+54006,mesa table,flat tableland with steep edges; "the tribe was relatively safe on the mesa but they had to descend into the valley for water"
+54007,mesalliance,a marriage with a person of inferior social status
+54008,mescal,a colorless Mexican liquor distilled from fermented juices of certain desert plants of the genus Agavaceae (especially the century plant)
+54009,mescal mezcal peyote Lophophora_williamsii,a small spineless globe-shaped cactus; source of mescal buttons
+54010,mescal_bean coral_bean frijolito frijolillo Sophora_secundiflora,shrub or small tree having pinnate leaves poisonous to livestock and dense racemes of intensely fragrant blue flowers and red beans
+54011,mescal_button sacred_mushroom magic_mushroom,the button-shaped top of the mescal cactus; a source of psilocybin
+54012,mescaline peyote,the hallucinatory alkaloid that is the active agent in mescal buttons
+54013,mesenchyme,mesodermal tissue that forms connective tissue and blood and smooth muscles
+54014,mesenteric_artery arteria_mesenterica,one of two branches of the aorta that pass between the two layers of the mesentery to the intestines
+54015,mesenteric_plexus plexus_mesentericus,a plexus of autonomic nerves
+54016,mesenteric_vein vena_mesenterica,a tributary of the portal vein passing from the intestine between the two layers of mesentery
+54017,mesentery,a double layer of peritoneum that attaches to the back wall of the abdominal cavity and supports the small intestines
+54018,mesh,the number of openings per linear inch of a screen; measures size of particles; "a 100 mesh screen"; "100 mesh powdered cellulose"
+54019,mesh meshing interlock interlocking,the act of interlocking or meshing; "an interlocking of arms by the police held the crowd in check"
+54020,mesh_topology mesh,the topology of a network whose components are all connected directly to every other component
+54021,meshugaas mishegaas mishegoss,(Yiddish) craziness; senseless behavior or activity
+54022,meshuggeneh meshuggener,(Yiddish) a crazy fool
+54023,mesne_lord,a feudal lord who was lord to his own tenants on land held from a superior lord
+54024,mesocarp,the middle layer of a pericarp
+54025,mesocolon,mesentery that holds the lower colon to the dorsal abdominal wall
+54026,mesoderm mesoblast,the middle germ layer that develops into muscle and bone and cartilage and blood and connective tissue
+54027,mesohippus,North American three-toed Oligocene animal; probably not directly ancestral to modern horses
+54028,mesomorph,a person with a well-developed muscular body
+54029,meson mesotron,an elementary particle responsible for the forces in the atomic nucleus; a hadron with a baryon number of 0
+54030,mesophyte mesophytic_plant,land plant growing in surroundings having an average supply of water; compare xerophyte and hydrophyte
+54031,mesosphere,the atmospheric layer between the stratosphere and the thermosphere
+54032,mesothelioma,a form of carcinoma of the mesothelium lining lungs or abdomen or heart; usually associated with exposure to asbestos dust
+54033,mesothelium,epithelium originating in the embryonic mesoderm; lines the primordial body cavity
+54034,mesquite mesquit,any of several small spiny trees or shrubs of the genus Prosopis having small flowers in axillary cylindrical spikes followed by large pods rich in sugar
+54035,mesquite_gum,a gum obtained from mesquite pods; resembles gum arabic
+54036,mess,soft semiliquid food; "a mess of porridge"
+54037,mess,a meal eaten in a mess hall by service personnel
+54038,mess mess_hall,a (large) military dining room where service personnel eat or relax
+54039,mess messiness muss mussiness,a state of confusion and disorderliness; "the house was a mess"; "she smoothed the mussiness of the bed"
+54040,mess_jacket monkey_jacket shell_jacket,waist-length jacket tapering to a point at the back; worn by officers in the mess for formal dinners
+54041,mess_kit,kit containing a metal dish and eating utensils; used by soldiers and campers
+54042,mess_of_pottage,anything of trivial value; "Esau sold his birthright to Jacob for a mess of pottage"
+54043,message,a communication (usually brief) that is written or spoken or signaled; "he sent a three-word message"
+54044,message content subject_matter substance,what a communication that is about something is about
+54045,message_pad writing_pad,a pad of paper on which messages can be written
+54046,messaging electronic_messaging,the sending and processing of e-mail by computer
+54047,messenger courier,a person who carries a message
+54048,messenger_RNA mRNA template_RNA informational_RNA,the template for protein synthesis; the form of RNA that carries information from DNA in the nucleus to the ribosome sites of protein synthesis in the cell
+54049,messenger_boy errand_boy,a boy who earns money by running errands
+54050,messiah christ,any expected deliverer
+54051,messiahship,the position of messiah
+54052,messmate,(nautical) an associate with whom you share meals in the same mess (as on a ship)
+54053,messuage,(law) a dwelling house and its adjacent buildings and the adjacent land used by the household
+54054,mestiza,a woman of mixed racial ancestry (especially mixed European and Native American ancestry)
+54055,mestizo,a person of mixed racial ancestry (especially mixed European and Native American ancestry)
+54056,mestranol,a synthetic form of estrogen used in combination with a progestin in oral contraceptives
+54057,metabolic_acidosis,acidosis and bicarbonate concentration in the body fluids resulting either from the accumulation of acids or the abnormal loss of bases from the body (as in diarrhea or renal disease)
+54058,metabolic_alkalosis,alkalosis resulting from hydrogen-ion loss or excessive intake of alkaline substances
+54059,metabolic_disorder,a disorder or defect of metabolism
+54060,metabolic_rate,rate of metabolism; the amount of energy expended in a give period
+54061,metabolism metabolic_process,the organic processes (in a cell or organism) that are necessary for life
+54062,metabolite,any substance involved in metabolism (either as a product of metabolism or as necessary for metabolism)
+54063,metacarpal metacarpal_bone,any bone of the hand between the wrist and fingers
+54064,metacarpal_artery arteria_metacarpea,dorsal and palmar arteries of the hand
+54065,metacarpal_vein vena_metacarpus,dorsal and palmar veins of the hand
+54066,metacarpus,the part of the hand between the carpus and phalanges
+54067,metacenter metacentre,(shipbuilding) the point of intersection between two vertical lines, one line through the center of buoyancy of the hull of a ship in equilibrium and the other line through the center of buoyancy of the hull when the ship is inclined to one side; the distance of this intersection above the center of gravity is an indication of the stability of the ship
+54068,metacentric_chromosome,a chromosome having two equal arms because the centromere is in median position
+54069,metadata,data about data; "a library catalog is metadata because it describes publications"
+54070,metagenesis digenesis,alternation of sexual and asexual generations
+54071,metaknowledge,knowledge about knowledge
+54072,metal_detector,detector that gives a signal when it detects the presence of metal; used to detect the presence of stray bits of metal in food products or to find buried metal
+54073,metal_filing,a fragment of metal rubbed off by the use of a file
+54074,metal_screw,screw made of metal
+54075,metal_wood,golf wood with a metal head instead of the traditional wooden head
+54076,metalanguage,a language that can be used to describe languages
+54077,metalepsis,substituting metonymy of one figurative sense for another
+54078,metalhead,a fan of heavy metal music
+54079,metallic,a fabric made of a yarn that is partly or entirely of metal
+54080,metallic,a yarn made partly or entirely of metal
+54081,metallic_bond,a chemical bond in which electrons are shared over many nuclei and electronic conduction occurs
+54082,metallic_element metal,any of several chemical elements that are usually shiny solids that conduct heat or electricity and can be formed into sheets etc.
+54083,metallized_dye,acid dye in which the negative ion contains a chelated metal atom
+54084,metallurgist metallurgical_engineer,an engineer trained in the extraction and refining and alloying and fabrication of metals
+54085,metallurgy,the science and technology of metals
+54086,metalware,household articles made of metal (especially for use at table)
+54087,metalwork,the metal parts of something; "there were bullet holes in the metalwork"
+54088,metalworking metalwork,the activity of making things out of metal in a skillful manner
+54089,metamathematics,the logical analysis of mathematical reasoning
+54090,metamere somite,one of a series of similar body segments into which some animals are divided longitudinally
+54091,metamorphic_rock,rock altered by pressure and heat
+54092,metamorphism,change in the structure of rock by natural agencies such as pressure or heat or introduction of new chemical substances
+54093,metamorphopsia,a defect of vision in which objects appear to be distorted; usually due to a defect in the retina
+54094,metamorphosis,a complete change of physical form or substance especially as by magic or witchcraft
+54095,metamorphosis metabolism,the marked and rapid transformation of a larva into an adult that occurs in some animals
+54096,metaphase,the second stage of meiosis
+54097,metaphase,the second stage of mitosis
+54098,metaphor,a figure of speech in which an expression is used to refer to something that it does not literally denote in order to suggest a similarity
+54099,metaphosphoric_acid,a glassy solid acid ([HPO3]n) often used as a dehydrating agent
+54100,metaphysics,the philosophical study of being and knowing
+54101,metaphysis,the growing part of a long bone between the diaphysis and the epiphysis
+54102,metaplastic_anemia metaplastic_anaemia,pernicious anemia in which the various formed elements in the blood are changed
+54103,metaproterenol Alupent,a bronchodilator (trade name Alupent) used to treat asthma and emphysema and other lung conditions; available in oral or inhalant forms; side effects include tachycardia and shakiness
+54104,metarule,a rule that describes how other rules should be used (as in AI)
+54105,metasequoia dawn_redwood Metasequoia_glyptostrodoides,large fast-growing Chinese monoecious tree having flat bright-green deciduous leaves and small globular cones; commonly cultivated in United States as an ornamental; known as a fossil before being discovered in China
+54106,metastability,the quality of a physical system that persists in its existing equilibrium when undisturbed (or only slightly disturbed) but able to pass to a more stable equilibrium when sufficiently disturbed
+54107,metastasis,the spreading of a disease (especially cancer) to another part of the body
+54108,metatarsal,any bone of the foot between the ankle and the toes
+54109,metatarsal_arch,the short lateral arch formed by the heads of the metatarsals
+54110,metatarsal_artery arteria_metatarsea,dorsal and plantar arteries to the metatarsal region of the foot
+54111,metatarsal_vein vena_metatarsus,dorsal and plantar branches of veins serving the metatarsal region of the foot
+54112,metatarsus,the skeleton of the human foot between the toes and the tarsus; the corresponding part of the foot in birds or of the hind foot in quadrupeds
+54113,metatherian,primitive pouched mammals found mainly in Australia and the Americas
+54114,metathesis,a linguistic process of transposition of sounds or syllables within a word or words within a sentence
+54115,metazoan,any animal of the subkingdom Metazoa; all animals except protozoans and sponges
+54116,metempsychosis rebirth,after death the soul begins a new cycle of existence in another human body
+54117,metencephalon,the part of the hindbrain that develops into the pons and the cerebellum
+54118,meteor shooting_star,a streak of light in the sky at night that results when a meteoroid hits the earth's atmosphere and air friction causes the meteoroid to melt or vaporize or explode
+54119,meteor_shower meteor_stream,a transient shower of meteors when a meteor swarm enters the earth's atmosphere
+54120,meteor_swarm,a group of meteoroids with similar paths
+54121,meteorite,stony or metallic object that is the remains of a meteoroid that has reached the earth's surface
+54122,meteoroid meteor,(astronomy) any of the small solid extraterrestrial bodies that hits the earth's atmosphere
+54123,meteorological_balloon,a small unmanned balloon set aloft to observe atmospheric conditions
+54124,meteorological_conditions,the prevailing environmental conditions as they influence the prediction of weather
+54125,meteorological_observation_post weather_station,one of a network of observation posts where meteorological data is recorded
+54126,meteorologist,a specialist who studies processes in the earth's atmosphere that cause weather conditions
+54127,meteorology,the earth science dealing with phenomena of the atmosphere (especially weather)
+54128,meteorology weather_forecasting,predicting what the weather will be
+54129,meteortropism,an effect of climate on biological processes (as the effect on joint pains etc.)
+54130,meter,any of various measuring instruments for measuring a quantity
+54131,meter metre m,the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)
+54132,meter metre measure beat cadence,(prosody) the accent in a metrical foot of verse
+54133,meter metre time,rhythm as given by division into parts of equal duration
+54134,meter_maid,policewoman who is assigned to write parking tickets
+54135,meterstick metrestick,a rule one meter long (usually marked off in centimeters and millimeters)
+54136,metformin Glucophage,an antidiabetic drug (trade name Glucophage) prescribed to treat type II diabetes
+54137,methacholine Mecholyl,parasympathomimetic drug (trademark Mecholyl) that stimulates secretions and smooth muscle activity
+54138,methacrylic_acid 2-methylpropenoic_acid,an unsaturated acid (C4H6O2) used to make resins and plastics
+54139,methadone methadone_hydrochloride methadon dolophine_hydrochloride fixer synthetic_heroin,synthetic narcotic drug similar to morphine but less habit-forming; used in narcotic detoxification and maintenance of heroin addiction
+54140,methamphetamine methamphetamine_hydrochloride Methedrine meth deoxyephedrine chalk chicken_feed crank glass ice shabu trash,an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant
+54141,methane,a colorless odorless gas used as a fuel
+54142,methane_series alkane_series alkane paraffin_series paraffin,a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)
+54143,methanogen,archaebacteria found in anaerobic environments such as animal intestinal tracts or sediments or sewage and capable of producing methane; a source of natural gas
+54144,methanol methyl_alcohol wood_alcohol wood_spirit,a light volatile flammable poisonous liquid alcohol; used as an antifreeze and solvent and fuel and as a denaturant for ethyl alcohol
+54145,methapyrilene,antihistamine used to treat allergic responses (as rhinitis or dermatitis or pruritus)
+54146,methaqualone Quaalude,sedative-hypnotic drug (trade name Quaalude) that is a drug of abuse
+54147,metharbital Gemonil,anticonvulsant drug (trade name Gemonil) used in the treatment of epilepsy
+54148,metheglin,spiced or medicated mead
+54149,methenamine Mandelamine Urex,antibacterial agent (trade names Mandelamine and Urex) that is contained in many products that are used to treat urinary infections
+54150,methicillin,antibiotic drug of the penicillin family used in the treatment of certain staphylococcal infections
+54151,methionine,a crystalline amino acid containing sulfur; found in most proteins and essential for nutrition
+54152,methocarbamol Robaxin,muscle relaxant for skeletal muscles (trade name Robaxin) used to treat spasms
+54153,method,a way of doing something, especially a systematic way; implies an orderly logical arrangement (usually in steps)
+54154,method_acting method,an acting technique introduced by Stanislavsky in which the actor recalls emotions or reactions from his or her own life and uses them to identify with the character being portrayed
+54155,method_of_choice,the best method to achieve a desired result
+54156,methodology,the system of methods followed in a particular discipline
+54157,methodology methodological_analysis,the branch of philosophy that analyzes the principles and procedures of inquiry in a particular discipline
+54158,methotrexate methotrexate_sodium amethopterin,toxic antimetabolite that limits cellular reproduction by acting as an antagonist to folic acid; used to treat certain cancers and psoriasis and rheumatoid arthritis
+54159,methyl methyl_group methyl_radical,the univalent radical CH3- derived from methane
+54160,methyl_bromide,a poisonous gas or liquid (CH3Br) used to fumigate rodents, worms, etc.
+54161,methyl_orange,an azo dye used as an acid-base indicator; used for titrations involving weak bases
+54162,methyl_salicylate birch_oil sweet-birch_oil,a liquid ester with a strong odor of wintergreen; applied externally for minor muscle and joint pain
+54163,methylated_spirit,ethyl alcohol denatured with methyl alcohol to prevent its use as an alcoholic beverage
+54164,methyldopa alpha_methyl_dopa Aldomet,antihypertensive drug (trade name Aldomet) used in the treatment of high blood pressure
+54165,methylene_blue methylthionine_chloride,a dark green dye used as a stain, an antiseptic, a chemical indicator, and an antidote in cyanide poisoning
+54166,methylene_chloride dichloromethane,a nonflammable liquid used as a solvent and paint remover and refrigerant
+54167,methylene_group methylene_radical methylene,the bivalent radical CH2 derived from methane
+54168,methylenedioxymethamphetamine MDMA,a stimulant drug that is chemically related to mescaline and amphetamine and is used illicitly for its euphoric and hallucinogenic effects; it was formerly used in psychotherapy but in 1985 it was declared illegal in the United States; "MDMA is often used at parties because it enables partygoers to remain active for long periods of time"
+54169,methylphenidate Ritalin,central nervous system stimulant (trade name Ritalin) used in the treatment of narcolepsy in adults and attention deficit disorder in children
+54170,methyltestosterone,an androgenic compound contained in drugs that are used to treat testosterone deficiency and female breast cancer and to stimulate growth and weight gain
+54171,metic,an alien who paid a fee to reside in an ancient Greek city
+54172,metical,the basic unit of money in Mozambique; equal to 100 centavos
+54173,meticulousness meticulosity punctiliousness scrupulousness,strict attention to minute details
+54174,metier medium,an occupation for which you are especially well suited; "in law he found his true metier"
+54175,metonym,a word that denotes one thing but refers to a related thing; "Washington is a metonym for the United States government"; "plastic is a metonym for credit card"
+54176,metonymy,substituting the name of an attribute or feature for the name of the thing itself (as in `they counted heads')
+54177,metopion,the craniometric point midway between the frontal eminences of the skull
+54178,metoprolol Lopressor,beta blocker (trade name Lopressor) used in treating hypertension and angina and arrhythmia and acute myocardial infarction; has adverse side effects (depression and exacerbation of congestive heart failure etc.)
+54179,metralgia,pain in the uterus
+54180,metrazol_shock metrazol_shock_therapy metrazol_shock_treatment,the administration of sufficient Metrazol to induce convulsions and coma
+54181,metric_capacity_unit,a capacity unit defined in metric terms
+54182,metric_function metric,a function of a topological space that gives, for any two points in the space, a value equal to the distance between them
+54183,metric_linear_unit,a linear unit of distance in metric terms
+54184,metric_space,a set of points such that for every pair of points there is a nonnegative real number called their distance that is symmetric and satisfies the triangle inequality
+54185,metric_system,a decimal system of weights and measures based on the meter and the kilogram and the second
+54186,metric_ton MT tonne t,a unit of weight equivalent to 1000 kilograms
+54187,metric_unit metric,a decimal unit of measurement of the metric system (based on meters and kilograms and seconds); "convert all the measurements to metric units"; "it is easier to work in metric"
+54188,metric_weight_unit weight_unit,a decimal unit of weight based on the gram
+54189,metrical_foot foot metrical_unit,(prosody) a group of 2 or 3 syllables forming the basic unit of poetic rhythm
+54190,metrification,writing a metrical composition (or the metrical structure of a composition)
+54191,metrification metrication,the act of changing from imperial units of measurement to metric units: meters, grams, seconds
+54192,metritis endometritis,inflammation of the lining of the uterus (of the endometrium)
+54193,metro tube underground subway_system subway,an electric railway operating below the surface of the ground (usually in a city); "in Paris the subway system is called the `metro' and in London it is called the `tube' or the `underground'"
+54194,metrology,the scientific study of measurement
+54195,metronidazole Flagyl,antiprotozoal medication (trade name Flagyl) used to treat trichomoniasis and giardiasis
+54196,metronome,clicking pendulum indicates the exact tempo of a piece of music
+54197,metropolitan,in the Eastern Orthodox Church this title is given to a position between bishop and patriarch; equivalent to archbishop in western Christianity
+54198,metropolitan,a person who lives in a metropolis
+54199,metroptosis descensus_uteri,prolapse of the uterus
+54200,metrorrhagia,bleeding from the uterus that is not due to menstruation; usually indicative of disease (as cervical cancer)
+54201,mettlesomeness,courageous high-spiritedness
+54202,mew mew_gull sea_mew Larus_canus,the common gull of Eurasia and northeastern North America
+54203,mews,street lined with buildings that were originally private stables but have been remodeled as dwellings; "she lives in a Chelsea mews"
+54204,mexiletine Mexitil,antiarrhythmic drug (trade name Mexitil) used to treat ventricular arrhythmias
+54205,mezereon February_daphne Daphne_mezereum,small European deciduous shrub with fragrant lilac-colored flowers followed by red berries on highly toxic twigs
+54206,mezereum,the dried bark of the shrub mezereon
+54207,mezuzah mezuza,religious texts from Deuteronomy inscribed on parchment and rolled up in a case that is attached to the doorframe of many Jewish households in accordance with Jewish law
+54208,mezzanine first_balcony,first or lowest balcony
+54209,mezzanine mezzanine_floor entresol,intermediate floor just above the ground floor
+54210,mezzo-relievo mezzo-rilievo half-relief,a sculptural relief between low relief and high relief
+54211,mezzo-soprano mezzo,a soprano with a voice between soprano and contralto
+54212,mezzo-soprano mezzo,the female singing voice between contralto and soprano
+54213,mezzotint,print produced by an engraving that has been scraped to represent light or shade
+54214,mho siemens reciprocal_ohm S,a unit of conductance equal to the reciprocal of an ohm
+54215,mi,the syllable naming the third (mediant) note of any major scale in solmization
+54216,miasma miasm,an unwholesome atmosphere; "the novel spun a miasma of death and decay"
+54217,miasma miasm,unhealthy vapors rising from the ground or other sources; "the miasma of the marshes"; "a miasma of cigar smoke"
+54218,mica isinglass,any of various minerals consisting of hydrous silicates of aluminum or potassium etc. that crystallize in forms that allow perfect cleavage into very thin leaves; used as dielectrics because of their resistance to electricity
+54219,micelle,an electrically charged particle built up from polymeric molecules or ions and occurring in certain colloidal electrolytic solutions like soaps and detergents
+54220,miconazole Monistat,an antifungal agent usually administered in the form of a nitrate (trade name Monistat)
+54221,microbalance,balance for weighing very small objects
+54222,microbe bug germ,a minute life form (especially a disease-causing bacterium); the term is not in technical use
+54223,microbiologist,a specialist in microbiology
+54224,microbiology,the branch of biology that studies microorganisms and their effects on humans
+54225,microbrachia,abnormally small arms
+54226,microbrewery,a small brewery; consumption of the product is mainly elsewhere
+54227,microcephaly microcephalus nanocephaly,an abnormally small head and underdeveloped brain
+54228,microcosm,a miniature model of something
+54229,microcosmic_salt,a white salt present in urine and used to test for metal oxides
+54230,microcyte,an abnormally small red blood cell (less than 5 microns in diameter)
+54231,microcytic_anemia microcytic_anaemia,anemia in which the average size of erythrocytes is smaller than normal
+54232,microcytosis,a blood disorder characterized by the presence of microcytes (abnormally small red blood cells) in the blood; often associated with anemia
+54233,microdot,photograph reduced to the size of a dot (usually for purposes of security)
+54234,microeconomics,the branch of economics that studies the economy of consumers or households or individual firms
+54235,microeconomist microeconomic_expert,an economist who specializes in microeconomics
+54236,microelectronics,the branch of electronics that deals with miniature components
+54237,microevolution,evolution resulting from small specific genetic changes that can lead to a new subspecies
+54238,microfarad,a unit of capacitance equal to one millionth of a farad
+54239,microfiche,small sheet of microfilm on which many pages of material have been photographed; a magnification system is used to read the material
+54240,microfilm,film on which materials are photographed at greatly reduced size; useful for storage; a magnification system is used to read the material
+54241,microflora,microscopic plants; bacteria are often considered to be microflora
+54242,microfossil,a fossil that must be studied microscopically
+54243,microgametophyte,the male gametophyte produced by a microspore
+54244,microgauss,a unit of magnetic flux density equal to one millionth of a gauss
+54245,microglia,neuroglial tissue of mesodermal origin that can become phagocytic
+54246,microgliacyte,a cell of the microglia that may become phagocytic and collect waste products of nerve tissue
+54247,microgram mcg,one millionth (1/1,000,000) gram
+54248,micrometeorite micrometeoroid micrometeor,a meteorite or meteoroid so small that it drifts down to earth without becoming intensely heated in the atmosphere
+54249,micrometer micrometer_gauge micrometer_caliper,caliper for measuring small distances
+54250,micrometry,measuring with a micrometer
+54251,micron micrometer,a metric unit of length equal to one millionth of a meter
+54252,micronutrient,a substance needed only in small amounts for normal body function (e.g., vitamins or minerals)
+54253,microorganism micro-organism,any organism of microscopic size
+54254,micropaleontology,the paleontology of microfossils
+54255,micropenis microphallus,an abnormally small penis
+54256,microphage,a neutrophil that ingests small things (as bacteria)
+54257,microphone mike mic,device for converting sound waves into electrical energy
+54258,microphoning,the transduction of sound waves into electrical waves (by a microphone)
+54259,microphotometer,special kind of densitometer that measures density variations over a very small area
+54260,microprocessor,integrated circuit semiconductor chip that performs the bulk of the processing and controls the parts of a system; "a microprocessor functions as the central processing unit of a microcomputer"; "a disk drive contains a microprocessor to handle the internal functions of the drive"
+54261,micropyle,minute opening in the wall of an ovule through which the pollen tube enters
+54262,microradian,a unit of angular distance equal to one thousandth of a milliradian
+54263,microscope,magnifier of the image of small objects; "the invention of the microscope led to the discovery of the cell"
+54264,microscopic_anatomy,the study of microscopic structures of tissues and organs
+54265,microscopic_field,the areas that is visible through a microscope
+54266,microscopist,a scientist who specializes in research with the use of microscopes
+54267,microscopy,research with the use of microscopes
+54268,microsecond,one millionth (10^-6) of a second; one thousandth of a millisecond
+54269,microsome,a tiny granule in the cytoplasm that is where protein synthesis takes place under the direction of mRNA
+54270,microsporangium,a plant structure that produces microspores
+54271,microspore,smaller of the two types of spore produced in heterosporous plants; develops in the pollen sac into a male gametophyte
+54272,microsporidian,parasite of arthropods and fishes that invade and destroy host cells
+54273,microsporophyll,in non-flowering plants, a sporophyll that bears only microsporangia
+54274,microsurgery,surgery using operating microscopes and miniaturized precision instruments to perform intricate procedures on very small structures
+54275,microtome,scientific instrument that cuts thin slices of something for microscopic examination
+54276,microtubule,a microscopically small tubule
+54277,microvolt,a unit of potential equal to one millionth of a volt
+54278,microwave,a short electromagnetic wave (longer than infrared but shorter than radio waves); used for radar and microwave ovens and for transmitting telephone, facsimile, video and data
+54279,microwave microwave_oven,kitchen appliance that cooks food by passing an electromagnetic wave through it; heat results from the absorption of energy by the water molecules in the food
+54280,microwave_bomb E-bomb,a bomb that explodes in midair and releases a massive burst of electromagnetic energy sufficient to disable computers and telecommunications without killing people or damaging buildings
+54281,microwave_diathermy_machine,diathermy machine that uses microwave radiation as the source of heat
+54282,microwave_linear_accelerator,linear accelerator that uses microwaves
+54283,microwave_spectroscopy,the use of spectroscopy to study atomic or molecular resonances in the microwave spectrum
+54284,microwave_spectrum,the part of the electromagnetic spectrum corresponding to microwaves
+54285,micturition urination,the discharge of urine
+54286,micturition_reflex,relaxation of the urethral sphincter in response to increased pressure in the bladder
+54287,mid-April,the middle part of April
+54288,mid-August,the middle part of August
+54289,mid-December,the middle part of December
+54290,mid-February,the middle part of February
+54291,mid-January,the middle part of January
+54292,mid-July,the middle part of July
+54293,mid-June,the middle part of June
+54294,mid-March,the middle part of March
+54295,mid-May,the middle part of May
+54296,mid-November,the middle part of November
+54297,mid-October,the middle part of October
+54298,mid-September,the middle part of September
+54299,mid-calf,the middle of the calf; half way between the knee and ankle
+54300,mid-off,the fielding position in cricket closest to the bowler on the off side
+54301,mid-on,the fielding position in cricket closest to the bowler on the on side
+54302,mid-water,the water that is well below the surface but also well above the bottom; "many marine fishes inhabit the mid-waters"
+54303,midafternoon,the middle part of the afternoon
+54304,midair,some point in the air; above ground level; "the planes collided in midair"
+54305,midazolam Versed,an injectable form of benzodiazepine (trade name Versed) useful for sedation and for reducing pain during uncomfortable medical procedures
+54306,midbrain mesencephalon,the middle portion of the brain
+54307,middle,time between the beginning and the end of a temporal period; "the middle of the war"; "rain during the middle of April"
+54308,middle,an intermediate part or section; "A whole is that which has beginning, middle, and end"- Aristotle
+54309,middle midriff midsection,the middle area of the human torso (usually in front); "young American women believe that a bare midriff is fashionable"
+54310,middle-aged_man,a man who is roughly between 45 and 65 years old
+54311,middle_C,the note designated by the first ledger line below the treble staff; 261.63 hertz
+54312,middle_age,the time of life between youth and old age (e.g., between 40 and 60 years of age)
+54313,middle_cerebral_artery,one of two branches of the internal carotid artery; divides into three branches
+54314,middle_cerebral_vein vena_cerebri_media,either of two cerebral veins
+54315,middle_class bourgeoisie,the social class between the lower and upper classes
+54316,middle_distance,the part of a scene between the foreground and the background
+54317,middle_ear tympanic_cavity tympanum,the main cavity of the ear; between the eardrum and the inner ear
+54318,middle_finger,the second finger; between the index finger and the ring finger
+54319,middle_meningeal_artery,branch of the maxillary artery; its branches supply meninges
+54320,middle_name,a name between your first name and your surname
+54321,middle_temporal_vein,arises near the eye; joins the superficial temporal veins to form the retromandibular vein
+54322,middle_term,the term in a syllogism that is common to both premises and excluded from the conclusion
+54323,middle_thyroid_vein,a vein on each side that drains the lateral part of the thyroid and empties into the internal jugular vein
+54324,middlebrow,someone who is neither a highbrow nor a lowbrow
+54325,middleweight,an amateur boxer who weighs no more than 165 pounds
+54326,middleweight,a wrestler who weighs 172-192 pounds
+54327,middleweight,a professional boxer who weighs between 155 and 160 pounds
+54328,middling,any commodity of intermediate quality or size (especially when coarse particles of ground wheat are mixed with bran)
+54329,middy middy_blouse,blouse with a sailor collar
+54330,midfield,(sports) the middle part of a playing field (as in football or lacrosse)
+54331,midge,minute two-winged mosquito-like fly lacking biting mouthparts; appear in dancing swarms especially near water
+54332,midgrass,any of various grasses of moderate height which covered the undisturbed prairie in the United States; includes most of the forage grasses of the temperate zone
+54333,midinette,a Parisian salesgirl
+54334,midiron two_iron,long iron with a nearly vertical face
+54335,midland,the interior part of a country
+54336,midnight,12 o'clock at night; the middle of the night; "young children should not be allowed to stay up until midnight"
+54337,midnight_sun,the sun visible at midnight (inside the Arctic or Antarctic Circles)
+54338,midplane midline,the median plane of the body (or some part of the body)
+54339,midrib midvein,the vein in the center of a leaf
+54340,midshipman,a temporary rank held by young naval officers in training
+54341,midst thick,the location of something surrounded by other things; "in the midst of the crowd"
+54342,midstream,the middle of a stream
+54343,midterm,the middle of the gestation period
+54344,midterm,middle of an academic term or a political term in office
+54345,midterm_examination midterm_exam midterm,an examination administered in the middle of an academic term
+54346,midway,the place at a fair or carnival where sideshows and similar amusements are located
+54347,midweek,the middle of a week
+54348,midwife accoucheuse,a woman skilled in aiding the delivery of babies
+54349,midwife_toad Alytes_cisternasi,similar in habit to Alytes obstetricians
+54350,midwifery,assisting women at childbirth
+54351,midwinter,the middle of winter
+54352,might mightiness power,physical strength
+54353,might-have-been,an event that could have occurred but never did
+54354,mignonette sweet_reseda Reseda_odorata,Mediterranean woody annual widely cultivated for its dense terminal spikelike clusters greenish or yellowish white flowers having an intense spicy fragrance
+54355,migraine megrim sick_headache hemicrania,a severe recurring vascular headache; occurs more frequently in women than men
+54356,migrant migrator,traveler who moves from one region or country to another
+54357,migrant_shrike Lanius_ludovicianus_migrans,a shrike of central North America; winters in Texas and the southern Mississippi valley
+54358,migration,a group of people migrating together (especially in some given time period)
+54359,migration,(chemistry) the nonrandom movement of an atom or radical from one place to another within a molecule
+54360,migration,the periodic passage of groups of animals (especially birds or fishes) from one region to another for feeding or breeding
+54361,migration,the movement of persons from one country or locality to another
+54362,migration_route flyway,the geographic route along which birds customarily migrate
+54363,migrator,an animal (especially birds and fish) that travels between different habitats at particular times of the year
+54364,migratory_grasshopper,serious pest of grain-growing and range areas of central and western United States
+54365,migratory_locust Locusta_migratoria,Old World locust that travels in vast swarms stripping large areas of vegetation
+54366,migratory_quail Coturnix_coturnix Coturnix_communis,the typical Old World quail
+54367,mihrab,(Islam) a design in the shape of niche in a Muslim prayer rug; during worship the niche must be pointed toward Mecca
+54368,mihrab,(Islam) a niche in the wall of a mosque that indicates the direction of Mecca
+54369,mikado tenno,the emperor of Japan; when regarded as a religious leader the emperor is called tenno
+54370,mikvah,(Hebrew) a ritual purification and cleansing bath that Orthodox Jews take on certain occasions (as before Sabbath or after menstruation)
+54371,mil,a Cypriot monetary unit equal to one thousandth of a pound
+54372,mil,a unit of length equal to one thousandth of an inch; used to specify thickness (e.g., of sheets or wire)
+54373,mil,an angular unit used in artillery; equal to 1/6400 of a complete revolution
+54374,mild_silver_protein Argyrol,antiseptic consisting of a compound of protein and silver (trade name Argyrol)
+54375,mild_steel low-carbon_steel soft-cast_steel,steel with less than 0.15% carbon
+54376,mildew,a fungus that produces a superficial (usually white) growth on organic matter
+54377,mildew mold mould,the process of becoming mildewed
+54378,mildness clemency,good weather with comfortable temperatures
+54379,mile,a large distance; "he missed by a mile"
+54380,mile,a footrace extending one mile; "he holds the record in the mile"
+54381,mile Roman_mile,an ancient Roman unit of length equivalent to 1620 yards
+54382,mile mil Swedish_mile,a Swedish unit of length equivalent to 10 km
+54383,mile statute_mile stat_mi land_mile international_mile mi,a unit of length equal to 1,760 yards or 5,280 feet; exactly 1609.344 meters
+54384,mileage,a travel allowance at a given rate per mile traveled
+54385,mileage fuel_consumption_rate gasoline_mileage gas_mileage,the ratio of the number of miles traveled to the number of gallons of gasoline burned
+54386,mileage milage,distance measured in miles
+54387,miler,(used only in combinations) the length of something in miles; "the race was a 30-miler"
+54388,miler,a runner in a one-mile race
+54389,miles_gloriosus,a braggart soldier (a stock figure in comedy)
+54390,miles_per_gallon,the distance traveled in a vehicle powered by one gallon of gasoline or diesel fuel
+54391,miles_per_hour mph,a speedometer reading for the momentary rate of travel
+54392,miles_per_hour mph,the ratio of the distance traveled (in miles) to the time spent traveling (in hours)
+54393,milestone,a significant event in your life (or in a project)
+54394,milestone milepost,stone post at side of a road to show distances
+54395,miliary_tuberculosis,acute tuberculosis characterized by the appearance of tiny tubercles on one or more organs of the body (presumably resulting from tubercle bacilli being spread in the bloodstream)
+54396,milieu surroundings,the environmental condition
+54397,militainment,entertainment with military themes in which the Department of Defense is celebrated
+54398,militant activist,a militant reformer
+54399,militarism,a political orientation of a people or a government to maintain a strong military force and to be prepared to use it aggressively to defend or promote national interests
+54400,militarist warmonger,a person who advocates war or warlike policies
+54401,military armed_forces armed_services military_machine war_machine,the military forces of a nation; "their military is the largest in the region"; "the military machine is the same one we faced in 1991 but now it is weaker"
+54402,military-industrial_complex,a country's military establishment and the industries that produce arms and other military equipment; "we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex"--Dwight David Eisenhower
+54403,military_academy,an academy for training military officers
+54404,military_action action,a military engagement; "he saw action in Korea"
+54405,military_adviser military_advisor,a military officer who serves as an adviser to the troops of an allied nation
+54406,military_attache,an attache who is a specialist in military matters
+54407,military_capability military_strength strength military_posture posture,capability in terms of personnel and materiel that affect the capacity to fight a war; "we faced an army of great strength"; "politicians have neglected our military posture"
+54408,military_censorship,all types of censorship conducted by personnel of the armed forces
+54409,military_ceremony,a formal ceremony performed by military personnel
+54410,military_ceremony,a military custom performed in observance of some event or anniversary
+54411,military_chaplain padre Holy_Joe sky_pilot,a chaplain in one of the military services
+54412,military_court,a judicial court of commissioned officers for the discipline and punishment of military personnel
+54413,military_drill,training in marching and the use of weapons
+54414,military_formation,a formation of troops
+54415,military_government stratocracy,government by the military and an army
+54416,military_governor,the head of a government established by the military (as in a defeated country)
+54417,military_hospital,hospital for soldiers and other military personnel
+54418,military_installation,any facility servicing military forces
+54419,military_intelligence,information about the armed forces of another country that is useful in planning and conducting military policy or military operations
+54420,military_intelligence military_intelligence_agency,an agency of the armed forces that obtains and analyzes and uses information of strategic or tactical military value
+54421,military_junta junta,a group of military officers who rule a country after seizing power
+54422,military_law,the body of laws and rules of conduct administered by military courts for the discipline, trial, and punishment of military personnel
+54423,military_leader,a leader of military forces
+54424,military_march military_music martial_music,brisk marching music suitable for troops marching in a military parade
+54425,military_officer officer,any person in the armed services who holds a position of authority or command; "an officer is responsible for the lives of his men"
+54426,military_pace,the length of a single step in marching (taken to be 30 inches for quick time or 36 inches for double time)
+54427,military_personnel soldiery troops,soldiers collectively
+54428,military_police MP,a military corps that enforces discipline and guards prisoners
+54429,military_policeman MP,a member of the military police who polices soldiers and guards prisoners
+54430,military_position position,a point occupied by troops for tactical reasons
+54431,military_post post,military installation at which a body of troops is stationed; "this military post provides an important source of income for the town nearby"; "there is an officer's club on the post"
+54432,military_quarters,living quarters for personnel on a military post
+54433,military_rank military_rating paygrade rating,rank in a military organization
+54434,military_reserve reserve,armed forces that are not on active duty but can be called in an emergency
+54435,military_science,the discipline dealing with the principles of warfare
+54436,military_service,land tenure by service in the lord's army
+54437,military_service armed_service service,a force that is a branch of the armed forces
+54438,military_training,training soldiers in military procedures
+54439,military_uniform,prescribed identifying uniform for soldiers
+54440,military_unit military_force military_group force,a unit that is part of some military service; "he sent Caesar a force of six thousand men"
+54441,military_vehicle,vehicle used by the armed forces
+54442,militia,the entire body of physically fit civilians eligible by law for military service; "their troops were untrained militia"; "Congress shall have power to provide for calling forth the militia"--United States Constitution
+54443,militia reserves,civilians trained as soldiers but not part of the regular army
+54444,militiaman,a member of the militia; serves only during emergencies
+54445,milk,any of several nutritive milklike liquids
+54446,milk,a white nutritious liquid secreted by mammals and used as food by human beings
+54447,milk,produced by mammary glands of female mammals for feeding their young
+54448,milk_bar,snack bar that sells milk drinks and light refreshments (such as ice cream)
+54449,milk_can,large can for transporting milk
+54450,milk_chocolate,chocolate made from chocolate liquor with sugar and cocoa butter and powdered milk solids and vanilla and (usually) lecithin; the most common form of chocolate for eating; used in chocolate candy and baking and coatings
+54451,milk_float,a van (typically powered by electricity) with an open side that is used to deliver milk to houses
+54452,milk_leg white_leg phlegmasia_alba_dolens,painful thrombosis of the femoral vein in the leg following childbirth
+54453,milk_of_magnesia,purgative consisting of a milky white liquid suspension of magnesium hydroxide; used as a laxative and (in smaller doses) as an antacid
+54454,milk_punch,a punch made of spirits and milk and sugar and spices
+54455,milk_sickness,caused by consuming milk from cattle suffering from trembles
+54456,milk_snake house_snake milk_adder checkered_adder Lampropeltis_triangulum,nonvenomous tan and brown king snake with an arrow-shaped occipital spot; southeastern ones have red stripes like coral snakes
+54457,milk_thistle lady's_thistle Our_Lady's_mild_thistle holy_thistle blessed_thistle Silybum_marianum,tall Old World biennial thistle with large clasping white-blotched leaves and purple flower heads; naturalized in California and South America
+54458,milk_vetch milk-vetch,any of various plants of the genus Astragalus
+54459,milk_wagon milkwagon,wagon for delivering milk
+54460,milkcap Lactarius_delicioso,edible mushroom
+54461,milking_machine,machine consisting of a suction apparatus for milking cows mechanically
+54462,milking_shorthorn,breed evolved from shorthorn beef cattle
+54463,milking_stool,low three-legged stool with a half round seat; used to sit on while milking a cow
+54464,milkman,someone who delivers milk
+54465,milkshake milk_shake shake,frothy drink of milk and flavoring and sometimes fruit or ice cream
+54466,milkweed Sonchus_oleraceus,annual Eurasian sow thistle with soft spiny leaves and rayed yellow flower heads
+54467,milkweed silkweed,any of numerous plants of the genus Asclepias having milky juice and pods that split open releasing seeds with downy tufts
+54468,milkwort,any of various plants of the genus Polygala
+54469,mill grinder milling_machinery,machinery that processes materials by grinding or crushing
+54470,mill-girl,a girl who works in a mill
+54471,mill-hand factory_worker,a workman in a mill or factory
+54472,mill_agent,the responsible official at a mill that is under absentee ownership
+54473,millboard,stout pasteboard used to bind books
+54474,milldam,dam to make a millpond to provide power for a water mill
+54475,millenarian millenarist chiliast,a person who believes in the coming of the millennium (a time of great peace and prosperity)
+54476,millenarianism millenarism millenniumism chiliasm,belief in the Christian doctrine of the millennium mentioned in the Book of Revelations
+54477,millenary,a sum or aggregate of one thousand (especially one thousand years)
+54478,millennium,(New Testament) in Revelations it is foretold that those faithful to Jesus will reign with Jesus over the earth for a thousand years; the meaning of these words have been much debated; some denominations (e.g. Jehovah's Witnesses) expect it to be a thousand years of justice and peace and happiness
+54479,millennium millenary,the 1000th anniversary (or the celebration of it)
+54480,millennium millenary,a span of 1000 years
+54481,miller,someone who works in a mill (especially a grain mill)
+54482,miller milling_machine,machine tool in which metal that is secured to a carriage is fed against rotating cutters that shape it
+54483,miller's-thumb,small freshwater sculpin of Europe and North America
+54484,millerite,a yellow mineral consisting of nickel sulfide; a minor source of nickel
+54485,millet,any of various small-grained annual cereal and forage grasses of the genera Panicum, Echinochloa, Setaria, Sorghum, and Eleusine
+54486,millet,small seed of any of various annual cereal grasses especially Setaria italica
+54487,millettia,any of several tropical trees or shrubs yielding showy streaked dark reddish or chocolate-colored wood
+54488,milliammeter,a sensitive ammeter graduated in milliamperes
+54489,milliampere mA,one thousandth of an ampere
+54490,milliard,a billion; "in England they call one thousand million a milliard"
+54491,millibar,a unit of atmospheric pressure equal to one thousandth of a bar; "atmospheric pressure at sea level is 1013 millibars"
+54492,millicurie,a unit of radioactivity equal to one thousandth of a curie
+54493,millidegree,a unit of temperature equal to one-thousandth of a degree
+54494,milliequivalent meq,one-thousandth of an equivalent
+54495,millifarad,a unit of capacitance equal to one thousandth of a farad
+54496,milligram mg,one thousandth (1/1,000) gram
+54497,millihenry,a unit of inductance equal to one thousandth of a henry
+54498,milliliter millilitre mil ml cubic_centimeter cubic_centimetre cc,a metric unit of volume equal to one thousandth of a liter
+54499,millime,1,000 millimes equal 1 dinar in Tunisia
+54500,millimeter millimetre mm,a metric unit of length equal to one thousandth of a meter
+54501,milline,an advertising measure; one agate line appearing in one million copies of a publication
+54502,millinery hat_shop,shop selling women's hats
+54503,millinery woman's_hat,hats for women; the wares sold by a milliner
+54504,milling,corrugated edge of a coin
+54505,million 1000000 one_thousand_thousand meg,the number that is represented as a one followed by 6 zeros
+54506,million billion trillion zillion jillion gazillion bazillion,a very large indefinite number (usually hyperbole); "there were millions of flies"
+54507,millionaire,a person whose material wealth is valued at more than a million dollars
+54508,millionairess,a woman millionaire
+54509,millionth,position 1,000,000 in a countable series of things
+54510,millipede millepede milliped,any of numerous herbivorous nonpoisonous arthropods having a cylindrical body of 20 to 100 or more segments most with two pairs of legs
+54511,milliradian,a unit of angular distance equal to one thousandth of a radian
+54512,millisecond msec,one thousandth (10^-3) of a second
+54513,millivolt mV,a unit of potential equal to one thousandth of a volt
+54514,millivoltmeter,sensitive voltmeter that can measure voltage in millivolts
+54515,milliwatt,a unit of power equal to one thousandth of a watt
+54516,millpond,a pond formed by damming a stream to provide a head of water to turn a mill wheel
+54517,millrace millrun,a channel for the water current that turns a millwheel
+54518,millstone,any load that is difficult to carry
+54519,millstone,one of a pair of heavy flat disk-shaped stones that are rotated against one another to grind the grain
+54520,millwheel mill_wheel,water wheel that is used to drive machinery in a mill
+54521,millwork,woodwork that has been machined at a mill
+54522,millwright,a workman who designs or erects mills and milling machinery
+54523,milo milo_maize,small drought-resistant sorghums having large yellow or whitish grains
+54524,milord,a term of address for an English lord
+54525,milt,seminal fluid produced by male fish
+54526,milt soft_roe,fish sperm or sperm-filled reproductive gland; having a creamy texture
+54527,mime mimer mummer pantomimer pantomimist,an actor who communicates entirely by gesture and facial expression
+54528,mime pantomime dumb_show,a performance using gestures and body movements without words
+54529,mimeograph mimeo mimeograph_machine Roneo Roneograph,a rotary duplicator that uses a stencil through which ink is pressed (trade mark Roneo)
+54530,mimesis,any disease that shows symptoms characteristic of another disease
+54531,mimesis,the representation of another person's words in a speech
+54532,mimesis,the imitative representation of nature and human behavior in art and literature
+54533,mimic mimicker,someone who mimics (especially an actor or actress)
+54534,mimicry,the resemblance of an animal species to another species or to natural objects; provides concealment and protection from predators
+54535,mimosa,any of various tropical shrubs or trees of the genus Mimosa having usually yellow flowers and compound leaves
+54536,mimosa buck's_fizz,a mixed drink containing champagne and orange juice
+54537,minaret,slender tower with balconies
+54538,mince,food chopped into small bits; "a mince of mushrooms"
+54539,mince_pie,pie containing mincemeat
+54540,mincemeat,spiced mixture of chopped raisins and apples and other ingredients with or without meat
+54541,mincer mincing_machine,a kitchen utensil that cuts or chops food (especially meat) into small pieces
+54542,mind,recall or remembrance; "it came to mind"
+54543,mind,attention; "don't pay him any mind"
+54544,mind head brain psyche nous,that which is responsible for one's thoughts, feelings, and conscious brain functions; the seat of the faculty of reason; "his mind wandered"; "I couldn't get his words out of my head"
+54545,mind idea,your intention; what you intend to do; "he had in mind to see his old teacher"; "the idea of the game is to capture all the pieces"
+54546,mind intellect,knowledge and intellectual ability; "he reads to improve his mind"; "he has a keen intellect"
+54547,mind's_eye,the imaging of remembered or invented scenes; "I could see her clearly in my mind's eye"
+54548,mind_game,any game designed to exercise the intellect
+54549,mind_game,deliberate actions of calculated psychological manipulation intended to intimidate or confuse (usually for competitive advantage); "football players try to play mind games with the opposition"; "the jeweler's mind game is to convince lovers that the size of a gemstone reflects the depth of their feelings"
+54550,mind_reader telepathist thought-reader,a magician who seems to discern the thoughts of another person (usually by clever signals from an accomplice)
+54551,minder,someone (usually in totalitarian countries) who is assigned to watch over foreign visitors; "I turned around and there, a few hundred feet away, was our government minder, Li Wong Su, huffing and puffing toward us"
+54552,mindfulness heedfulness,the trait of staying aware of (paying close attention to) your responsibilities
+54553,mine,excavation in the earth from which ores and minerals are extracted
+54554,mine,explosive device that explodes on contact; designed to destroy vehicles or ships or to kill or maim personnel
+54555,mine_detector,detector consisting of an electromagnetic device; used to locate explosive mines
+54556,mine_disposal,the disposal of explosive mines
+54557,mine_field,a tract of land containing explosive mines
+54558,mine_pig,pig iron made entirely from ore
+54559,minefield,a region in which explosives mines have been placed
+54560,minelayer,ship equipped for laying marine mines
+54561,miner mineworker,laborer who works in a mine
+54562,mineral,solid homogeneous inorganic substances occurring in nature having a definite chemical composition
+54563,mineral_deficiency,lack of a mineral micronutrient that is essential for normal nutrition or metabolism
+54564,mineral_extraction mineral_processing mineral_dressing ore_processing ore_dressing beneficiation,crushing and separating ore into valuable substances or waste by any of a variety of techniques
+54565,mineral_kingdom,all inorganic objects; contrasts with animal and plant kingdoms
+54566,mineral_oil,a distillate of petroleum (especially one used medicinally as a laxative or stool softener)
+54567,mineral_resources,natural resources in the form of minerals
+54568,mineral_water,water naturally or artificially impregnated with mineral salts or gasses; often effervescent; often used therapeutically
+54569,mineral_wool rock_wool,a light fibrous material used as an insulator
+54570,mineralocorticoid,hormone that is one of the steroids of the adrenal cortex that influences the metabolism of sodium and potassium
+54571,mineralogist,a scientist trained in mineralogy
+54572,mineralogy,the branch of geology that studies minerals: their structure and properties and the ways of distinguishing them
+54573,mineshaft,excavation consisting of a vertical or sloping passageway for finding or mining ore or for ventilating a mine
+54574,minesweeper,ship equipped to detect and then destroy or neutralize or remove marine mines
+54575,minesweeping,the activity of detecting and disposing of marine mines
+54576,ming_tree,an artificial plant resembling a bonsai
+54577,ming_tree,a dwarfed evergreen conifer or shrub shaped to have flat-topped asymmetrical branches and grown in a container
+54578,minge,vulgar term for a woman's pubic hair or genitals
+54579,mingling,the action of people mingling and coming into contact; "all the random mingling and idle talk made him hate literary parties"
+54580,miniature illumination,painting or drawing included in a book (especially in illuminated medieval manuscripts)
+54581,miniature toy,a copy that reproduces a person or thing in greatly reduced size
+54582,miniature_fan_palm bamboo_palm fern_rhapis Rhapis_excelsa,small graceful palm with reedlike stems and leaf bases clothed with loose coarse fibers
+54583,miniature_golf,a novelty version of golf played with golf balls and putters on a miniature course featuring many obstacles
+54584,miniature_pinscher,small German version of a Doberman pinscher
+54585,miniature_poodle,a breed of small poodles
+54586,miniature_schnauzer,a small schnauzer
+54587,miniaturist,someone who paints tiny pictures in great detail
+54588,miniaturization miniaturisation,act of making on a greatly reduced scale
+54589,minibar cellaret,sideboard with compartments for holding bottles
+54590,minibike motorbike,small motorcycle with a low frame and small wheels and elevated handlebars
+54591,minibus,a light bus (4 to 10 passengers)
+54592,minicab,a minicar used as a taxicab
+54593,minicar,a car that is even smaller than a subcompact car
+54594,minicomputer,a digital computer of medium size
+54595,minim,a British imperial capacity measure (liquid or dry) equal to 1/60th fluid dram or 0.059194 cubic centimeters
+54596,minim,a United States liquid unit equal to 1/60 fluidram
+54597,minimalism minimal_art reductivism,an art movement in sculpture and painting that began in the 1950s and emphasized extreme simplification of form and color
+54598,minimalist,a conservative who advocates only minor reforms in government or politics
+54599,minimalist,a practitioner or advocate of artistic minimalism
+54600,minimally_invasive_coronary_bypass_surgery,heart surgery in which a coronary bypass is performed on the beating heart by the use of small instruments and cameras threaded through small incisions
+54601,minimization minimisation,the act of reducing something to the least possible amount or degree or position
+54602,minimum,the point on a curve where the tangent changes from negative on the left to positive on the right
+54603,minimum lower_limit,the smallest possible quantity
+54604,minimum_wage,the lowest wage that an employer is allowed to pay; determined by contract or by law
+54605,minimus,the fifth digit; the little finger or little toe
+54606,mining excavation,the act of extracting ores or coal etc from the earth
+54607,mining minelaying,laying explosive mines in concealed places to destroy enemy personnel and equipment
+54608,mining_company,a company that owns and manages mines
+54609,mining_engineer,an engineer concerned with the construction and operation of mines
+54610,mining_geology,the branch of economic geology that deals with the applications of geology to mining
+54611,minion,a servile or fawning dependant
+54612,miniskirt mini,a very short skirt
+54613,minister,the job of a head of a government department
+54614,minister diplomatic_minister,a diplomat representing one government to another; ranks below ambassador
+54615,minister government_minister,a person appointed to a high office in the government; "Minister of Finance"
+54616,ministrant,someone who serves as a minister
+54617,ministry,a government department under the direction of a minister of state
+54618,ministry,religious ministers collectively (especially Presbyterian)
+54619,ministry,building where the business of a government ministry is transacted
+54620,ministry,the work of a minister of religion; "he is studying for the ministry"
+54621,minisub minisubmarine,submersible vessel for one or two persons; for naval operations or underwater exploration
+54622,minivan,a small box-shaped passenger van; usually has removable seats; used as a family car
+54623,miniver,trimming on ceremonial robes consisting of white or light grey fur
+54624,mink,the expensive fur of a mink
+54625,mink,slender-bodied semiaquatic mammal having partially webbed feet; valued for its fur
+54626,mink mink_coat,fur coat made from the soft lustrous fur of minks
+54627,minniebush minnie_bush Menziesia_pilosa,low shrub of the eastern United States with downy twigs
+54628,minnow Phoxinus_phoxinus,very small European freshwater fish common in gravelly streams
+54629,minocycline Minocin,tetracycline antibiotic (trade name Minocin) used to treat a variety of bacterial and rickettsial infections
+54630,minor-league_team minor-league_club,a team that plays in a minor league
+54631,minor_axis,the shorter or shortest axis of an ellipse or ellipsoid
+54632,minor_fast_day,one of five minor fast days on the Jewish calendar
+54633,minor_key minor_mode,a key based on the minor scale
+54634,minor_league minors bush_league,a league of teams that do not belong to a major league (especially baseball)
+54635,minor_leaguer bush_leaguer,a player on a minor-league baseball team
+54636,minor_planet planetoid,any of numerous small celestial bodies that move around the sun
+54637,minor_premise minor_premiss subsumption,the premise of a syllogism that contains the minor term (which is the subject of the conclusion)
+54638,minor_scale minor_diatonic_scale,a diatonic scale with notes separated by whole tones except for the 2nd and 3rd and 5th and 6th
+54639,minor_suit,( bridge) a suit of inferior scoring value, either diamonds or clubs
+54640,minor_surgery,any surgical procedure that does not involve anesthesia or respiratory assistance
+54641,minor_term,the term in a syllogism that is the subject of the conclusion
+54642,minor_tranquilizer minor_tranquillizer minor_tranquilliser antianxiety_drug anxiolytic anxiolytic_drug,a tranquilizer used to relieve anxiety and reduce tension and irritability
+54643,minority,a group of people who differ racially or politically from a larger group of which it is a part
+54644,minority,being or relating to the smaller in number of two parts; "when the vote was taken they were in the minority"; "he held a minority position"
+54645,minority nonage,any age prior to the legal age
+54646,minority_leader,leader of the minority party in a legislature
+54647,minoxidil Loniten Rogaine,a vasodilator (trade name Loniten) used to treat severe hypertension; one side effect is hirsutism so it is also sold (trade name Rogaine) as a treatment for male-patterned baldness
+54648,minster,any of certain cathedrals and large churches; originally connected to a monastery
+54649,minstrel,a performer in a minstrel show
+54650,minstrel_show,a troupe of performers in blackface typically giving a comic program of negro songs and jokes
+54651,minstrel_show,a variety show in which the performers are made up in blackface
+54652,minstrelsy,a troupe of minstrels
+54653,minstrelsy,ballads sung by minstrels
+54654,minstrelsy,the art of a minstrel
+54655,mint,any north temperate plant of the genus Mentha with aromatic leaves and small mauve flowers
+54656,mint,any member of the mint family of plants
+54657,mint,the leaves of a mint plant used fresh or candied
+54658,mint,a plant where money is coined by authority of the government
+54659,mint mint_candy,a candy that is flavored with a mint oil
+54660,mint_sauce,sweetened diluted vinegar with chopped mint leaves
+54661,mintage,fee paid to a mint by the government for minting a coin
+54662,mintage,act or process of minting coins
+54663,mintmark,a mark on a coin that identifies the mint where it was produced
+54664,minuend,the number from which the subtrahend is subtracted
+54665,minuet,a stately piece of music composed for dancing the minuet; often incorporated into a sonata or suite
+54666,minuet,a stately court dance in the 17th century
+54667,minus_sign,a sign indicating the operation of subtraction
+54668,minuscule,a small cursive script developed from uncial between the 7th and 9th centuries and used in medieval manuscripts
+54669,minute,a short note; "the secretary keeps the minutes of the meeting"
+54670,minute arcminute minute_of_arc,a unit of angular distance equal to a 60th of a degree
+54671,minute min,a unit of time equal to 60 seconds or 1/60th of an hour; "he ran a 4 minute mile"
+54672,minute_book,a book in which minutes have been written
+54673,minute_gun,(military) gun that is discharged once every minute (usually as part of a military funeral)
+54674,minute_hand big_hand,points to the minutes
+54675,minute_steak,a thin steak that can be cooked quickly
+54676,minuteness,great precision; painstaking attention to details; "he examined the essay with the greatest minuteness"
+54677,minutes proceedings transactions,a written account of what transpired at a meeting
+54678,minutia,a small or minor detail; "he had memorized the many minutiae of the legal code"
+54679,minyan,the quorum required by Jewish law to be present for public worship (at least ten males over thirteen years of age)
+54680,miotic_drug myotic_drug miotic myotic,a drug that causes miosis (constriction of the pupil of the eye)
+54681,miotic_eyedrop,a treatment for glaucoma; the eyedrops increase the outflow of aqueous humor by constricting the pupil
+54682,miracle,any amazing or wonderful occurrence
+54683,miracle,a marvellous event manifesting a supernatural act of a divine agent
+54684,miracle_man miracle_worker,a person who claims or is alleged to perform miracles
+54685,miracle_play,a medieval play representing episodes from the life of a saint or martyr
+54686,miraculous_food manna manna_from_heaven,(Old Testament) food that God gave the Israelites during the Exodus
+54687,mirage,an optical illusion in which atmospheric refraction by a layer of hot air distorts or inverts reflections of distant objects
+54688,mirage,something illusory and unattainable
+54689,mire,a difficulty or embarrassment that is hard to extricate yourself from; "the country is still trying to climb out of the mire left by its previous president"; "caught in the mire of poverty"
+54690,mire quagmire quag morass slack,a soft wet area of low-lying land that sinks underfoot
+54691,mirid_bug mirid capsid,a variety of leaf bug
+54692,miro black_pine Prumnopitys_ferruginea Podocarpus_ferruginea,New Zealand conifer used for lumber; the dark wood is used for interior carpentry
+54693,mirror,a faithful depiction or reflection; "the best mirror is an old friend"
+54694,mirror,polished surface that forms images by reflecting light
+54695,mirror_carp,domestic carp with some large shining scales
+54696,mirror_image reflection reflexion,a likeness in which left and right are reversed
+54697,misalignment,the spatial property of things that are not properly aligned
+54698,misalliance,an unsuitable alliance (especially with regard to marriage)
+54699,misanthrope misanthropist,someone who dislikes people in general
+54700,misanthropy,hatred of mankind
+54701,misanthropy,a disposition to dislike and mistrust other people
+54702,misapplication,wrong use or application
+54703,misappropriation,wrongful borrowing; "his explanation was a misappropriation of sociological theory"
+54704,misbehavior misbehaviour misdeed,improper or wicked or immoral behavior
+54705,miscalculation misreckoning misestimation,a mistake in calculating
+54706,miscarriage abortion,failure of a plan
+54707,miscegenation crossbreeding interbreeding,reproduction by parents of different races (especially by white and non-white persons)
+54708,misch_metal,a pyrophoric alloy made from a mixture of rare-earth metals
+54709,mischief mischief-making mischievousness deviltry devilry devilment rascality roguery roguishness shenanigan,reckless or malicious behavior that causes discomfort or annoyance in others
+54710,misconception,an incorrect conception
+54711,misconduct,bad or dishonest management by persons supposed to act on another's behalf
+54712,misconstrual misconstruction,a kind of misinterpretation resulting from putting a wrong construction on words or actions (often deliberately)
+54713,misconstruction,an ungrammatical constituent
+54714,miscount,an inaccurate count
+54715,miscue,a faulty shot in billiards; the cue tip slips off the cue ball
+54716,misdeal,an incorrect deal
+54717,misdemeanor misdemeanour infraction violation infringement,a crime less serious than a felony
+54718,misdirection,an incorrect charge to a jury given by a judge
+54719,misdirection,incorrect directions or instructions
+54720,mise_en_scene stage_setting setting,arrangement of scenery and properties to represent the place where a play or movie is enacted
+54721,miser,a stingy hoarder of money and possessions (often living miserably)
+54722,miserliness,total lack of generosity with money
+54723,misery,a feeling of intense unhappiness; "she was exhausted by her misery and grief"
+54724,misery wretchedness miserableness,a state of ill-being due to affliction or misfortune; "the misery and wretchedness of those slums is intolerable"
+54725,misfeasance,doing a proper act in a wrongful or injurious manner
+54726,misfire dud,an explosion that fails to occur
+54727,misfit,someone unable to adapt to their circumstances
+54728,misfortune bad_luck,unnecessary and unforeseen trouble resulting from an unfortunate event
+54729,misfortune bad_luck tough_luck ill_luck,an unfortunate state resulting from unfavorable outcomes
+54730,misgiving mistrust distrust suspicion,doubt about someone's honesty
+54731,misgovernment misrule,government that is inefficient or dishonest
+54732,mishap misadventure mischance,an instance of misfortune
+54733,mishpocha mishpachah,(Yiddish) the entire family network of relatives by blood or marriage (and sometimes close friends); "she invited the whole mishpocha"
+54734,misinformation,information that is incorrect
+54735,misinterpretation misunderstanding mistaking,putting the wrong interpretation on; "his misinterpretation of the question caused his error"; "there was no mistaking her meaning"
+54736,misleader,someone who leads astray (often deliberately)
+54737,mismanagement misdirection,management that is careless or inefficient; "he accomplished little due to the mismanagement of his energies"
+54738,mismatch,a bad or unsuitable match
+54739,misnomer,an incorrect or unsuitable name
+54740,miso,a thick paste made from fermented soybeans and barley or rice malt; used in Japanese cooking to make soups or sauces
+54741,misocainea,hatred of new ideas
+54742,misogamist,a person who hates marriage
+54743,misogamy,hatred of marriage
+54744,misogynist woman_hater,a misanthrope who dislikes women in particular
+54745,misogyny misogynism,hatred of women
+54746,misology,hatred of reasoning
+54747,misoneism,hatred of change or innovation
+54748,misopedia,hatred of children
+54749,misprint erratum typographical_error typo literal_error literal,a mistake in printed matter resulting from mechanical failures of some kind
+54750,mispronunciation,incorrect pronunciation
+54751,misquotation misquote,an incorrect quotation
+54752,misreading,misinterpretation caused by inaccurate reading
+54753,misrepresentation deceit deception,a misleading falsehood
+54754,miss misfire,a failure to hit (or meet or find etc)
+54755,missal,(Roman Catholic Church) a book containing all the prayers and responses needed to celebrate Mass throughout the year
+54756,missel_thrush mistle_thrush mistletoe_thrush Turdus_viscivorus,large European thrush that feeds on mistletoe berries
+54757,missile,a rocket carrying a warhead of conventional or nuclear explosives; may be ballistic or directed by remote control
+54758,missile_defense_system missile_defence_system,naval weaponry providing a defense system
+54759,missing_link ape-man,hypothetical organism formerly thought to be intermediate between apes and human beings
+54760,mission charge commission,a special assignment that is given to a person or group; "a confidential mission to London"; "his charge was deliver a message"
+54761,mission military_mission,an operation that is assigned by a higher headquarters; "the planes were on a bombing mission"
+54762,mission missionary_post missionary_station foreign_mission,an organization of missionaries in a foreign land sent to carry on religious work
+54763,mission missionary_work,the organized work of a religious missionary
+54764,mission_bells black_fritillary Fritillaria_biflora,herb of southwestern United States having dark purple bell-shaped flowers mottled with green
+54765,mission_bells rice-grain_fritillary Fritillaria_affinis Fritillaria_lanceolata Fritillaria_mutica,herb of northwestern America having green-and-purple bell-shaped flowers
+54766,mission_impossible,an extremely dangerous or difficult mission
+54767,missionary,someone who attempts to convert others to a particular doctrine or program
+54768,missionary missioner,someone sent on a mission--especially a religious or charitable mission to a foreign country
+54769,missionary_position,a position for sexual intercourse; a man and woman lie facing each other with the man on top; so-called because missionaries thought it the proper position for primitive peoples
+54770,misspelling,a spelling that is incorrect
+54771,misstatement,a statement that contains a mistake
+54772,missus missis,informal term of address for someone's wife
+54773,mist,a thin fog with condensation near the ground
+54774,mistake error fault,a wrong action attributable to bad judgment or ignorance or inattention; "he made a bad mistake"; "she was quick to point out my errors"; "I could understand his English in spite of his grammatical faults"
+54775,mistake misunderstanding misapprehension,an understanding of something that is not correct; "he wasn't going to admit his mistake"; "make no mistake about his intentions"; "there must be some misunderstanding--I don't have a sister"
+54776,mistflower mist-flower ageratum Conoclinium_coelestinum Eupatorium_coelestinum,rhizomatous plant of central and southeastern United States and West Indies having large showy heads of clear blue flowers; sometimes placed in genus Eupatorium
+54777,mistletoe Loranthus_europaeus,shrub of central and southeastern Europe; partially parasitic on beeches, chestnuts and oaks
+54778,mistletoe Viscum_album Old_World_mistletoe,Old World parasitic shrub having branching greenish stems with leathery leaves and waxy white glutinous berries; the traditional mistletoe of Christmas
+54779,mistletoe false_mistletoe,American plants closely resembling Old World mistletoe
+54780,mistletoe_cactus,a plant of the genus Rhipsalis
+54781,mistletoe_fig mistletoe_rubber_plant Ficus_diversifolia Ficus_deltoidea,shrub or small tree often grown as a houseplant having foliage like mistletoe
+54782,mistral,a strong north wind that blows in France during the winter
+54783,mistranslation,an incorrect translation
+54784,mistreatment,the practice of treating (someone or something) badly; "he should be punished for his mistreatment of his mother"
+54785,mistress,a woman master who directs the work of others
+54786,mistress kept_woman fancy_woman,an adulterous woman; a woman who has an ongoing extramarital sexual relationship with a man
+54787,mistrial,a trial that is invalid or inconclusive
+54788,misuse abuse,improper or excessive use; "alcohol abuse"; "the abuse of public funds"
+54789,mite,any of numerous very small to minute arachnids often infesting animals or plants or stored foods
+54790,miter mitre,the surface of a beveled end of a piece where a miter joint is made; "he covered the miter with glue before making the joint"
+54791,miter mitre,a liturgical headdress worn by bishops on formal occasions
+54792,miter_box mitre_box,hand tool for guiding handsaws in making crosscuts or miter joints
+54793,miter_joint mitre_joint miter mitre,joint that forms a corner; usually both sides are bevelled at a 45-degree angle to form a 90-degree corner
+54794,miterwort mitrewort bishop's_cap,any of various rhizomatous perennial herbs of the genus Mitella having a capsule resembling a bishop's miter
+54795,mithramycin Mithracin,an antineoplastic drug (trade name Mithracin) used to treat cancer of the testes
+54796,mitigating_circumstance,(law) a circumstance that does not exonerate a person but which reduces the penalty associated with the offense
+54797,mitochondrion chondriosome,an organelle containing enzymes responsible for producing energy
+54798,mitogen,an agent that triggers mitosis
+54799,mitomycin Mutamycin,a complex of antibiotic substances obtained from a streptomyces bacterium; one form (trade name Mutamycin) shows promise as an anticancer drug
+54800,mitosis,cell division in which the nucleus divides into nuclei containing the same number of chromosomes
+54801,mitral_stenosis mitral_valve_stenosis,obstruction or narrowing of the mitral valve (as by scarring from rheumatic fever)
+54802,mitral_valve bicuspid_valve left_atrioventricular_valve,valve with two cusps; situated between the left atrium and the left ventricle
+54803,mitral_valve_prolapse,cardiopathy resulting from the mitral valve not regulating the flow of blood between the left atrium and left ventricle of the heart
+54804,mittelschmerz,pain in the area of the ovary that is felt at the time of ovulation (usually midway through the menstrual cycle)
+54805,mitten,glove that encases the thumb separately and the other four fingers together
+54806,mitzvah mitsvah,(Judaism) a precept or commandment of the Jewish law
+54807,mitzvah mitsvah,(Judaism) a good deed performed out of religious duty
+54808,mix commixture admixture mixture intermixture mixing,the act of mixing together; "paste made by a mix of flour and water"; "the mixing of sound channels in the recording studio"
+54809,mix mixture,an event that combines things in a mixture; "a gradual mixture of cultures"
+54810,mix premix,a commercially prepared mixture of dry ingredients
+54811,mixed-blood,a person whose ancestors belonged to two or more racial groups
+54812,mixed_bud,a bud yielding both leaves and flowers
+54813,mixed_drink,made of two or more ingredients
+54814,mixed_economy,an economic system that combines private and state enterprises
+54815,mixed_farming,growing crops and feed and livestock all on the same farm
+54816,mixed_marriage,marriage of two people from different races or different religions or different cultures; "the families of both partners in a mixed marriage often disapprove"
+54817,mixed_metaphor,a combination of two or more metaphors that together produce a ridiculous effect
+54818,mixed_nuisance,a nuisance that is both a public nuisance and a private nuisance at the same time
+54819,mixer,club soda or fruit juice used to mix with alcohol
+54820,mixer,electronic equipment that mixes two or more input signals to give a single output signal
+54821,mixer,a kitchen utensil that is used for mixing foods
+54822,mixing_bowl,bowl used with an electric mixer
+54823,mixing_faucet,single faucet for separate hot and cold water pipes
+54824,mixology,skill in preparing mixed drinks
+54825,mixture,(chemistry) a substance consisting of two or more substances mixed together (not in fixed proportions and not with chemical bonding)
+54826,mizzen mizen,fore-and-aft sail set on the mizzenmast
+54827,mizzenmast mizenmast mizzen mizen,third mast from the bow in a vessel having three or more masts; the after and shorter mast of a yawl, ketch, or dandy
+54828,mnemonic,a device (such as a rhyme or acronym) used to aid recall
+54829,mnemonics,a method or system for improving the memory
+54830,mnemonist,an expert in the use of mnemonics; someone able to perform unusual feats of memory
+54831,moa,extinct flightless bird of New Zealand
+54832,moat fosse,ditch dug as a fortification and usually filled with water
+54833,mob rabble rout,a disorderly crowd of people
+54834,mobcap,large high frilly cap with a full crown; formerly worn indoors by women
+54835,mobile,sculpture suspended in midair whose delicately balanced parts can be set in motion by air currents
+54836,mobile_home manufactured_home,a large house trailer that can be connected to utilities and can be parked in one place and used as permanent housing
+54837,mobility,the quality of moving freely
+54838,mobilization mobilisation,act of marshaling and organizing and making ready for use or action; "mobilization of the country's economic resources"
+54839,mobilization mobilisation militarization militarisation,act of assembling and putting into readiness for war or other emergency: "mobilization of the troops"
+54840,mobocracy ochlocracy,a political system in which a mob is the source of control; government by the masses
+54841,moccasin mocassin,soft leather shoe; originally worn by Native Americans
+54842,moccasin_flower nerveroot Cypripedium_acaule,once common rose pink woodland orchid of eastern North America
+54843,mocha,soft suede glove leather from goatskin
+54844,mocha,a flavoring made from coffee mixed with chocolate
+54845,mocha,a dark brown color
+54846,mocha mocha_coffee,a superior dark coffee made from beans from Arabia
+54847,mock,the act of mocking or ridiculing; "they made a mock of him"
+54848,mock-heroic,a satirical imitation of heroic verse
+54849,mock-up,full-scale working model of something built for study or testing or display
+54850,mock_orange syringa Philadelphus_coronarius,large hardy shrub with showy and strongly fragrant creamy-white flowers in short terminal racemes
+54851,mock_privet,evergreen shrub with white flowers and olivelike fruits
+54852,mock_turtle_soup,soup made from a calf's head or other meat in imitation of green turtle soup
+54853,mockernut mockernut_hickory black_hickory white-heart_hickory big-bud_hickory Carya_tomentosa,smooth-barked North American hickory with 7 to 9 leaflets bearing a hard-shelled edible nut
+54854,mockingbird mocker Mimus_polyglotktos,long-tailed grey-and-white songbird of the southern United States able to mimic songs of other birds
+54855,mod,a British teenager or young adult in the 1960s; noted for their clothes consciousness and opposition to the rockers
+54856,mod_con,modern convenience; the appliances and conveniences characteristic of a modern house
+54857,modal_auxiliary_verb modal_auxiliary modal_verb modal,an auxiliary verb (such as `can' or `will') that is used to express modality
+54858,modal_logic,the logical study of necessity and possibility
+54859,modal_logic,a system of logic whose formal properties resemble certain moral and epistemological concepts
+54860,modality,a method of therapy that involves physical or electrical therapeutic treatment
+54861,modality mode,a classification of propositions on the basis of whether they claim necessity or possibility or impossibility
+54862,modality sense_modality sensory_system,a particular sense
+54863,mode,a particular functioning condition or arrangement; "switched from keyboard to voice mode"
+54864,mode modal_value,the most frequent value of a random variable
+54865,mode musical_mode,any of various fixed orders of the various diatonic notes within an octave
+54866,model,a type of product; "his car was an old model"
+54867,model example,a representative form or pattern; "I profited from his example"
+54868,model modelling modeling,the act of representing something (usually on a smaller scale)
+54869,model poser,a person who poses for a photographer or painter or sculptor; "the president didn't have time to be a model so the artist worked from photos"
+54870,model role_model,someone worthy of imitation; "every child needs a role model"
+54871,model simulation,representation of something (sometimes on a smaller scale)
+54872,model theoretical_account framework,a hypothetical description of a complex entity or process; "the computer program was based on a model of the circulatory and respiratory systems"
+54873,modeler modeller,a person who creates models
+54874,modeling modelling molding moulding,a preliminary sculpture in wax or clay from which a finished work can be copied
+54875,modem,(from a combination of MOdulate and DEModulate) electronic equipment consisting of a device used to connect computers by a telephone line
+54876,moderate_breeze,wind moving 13-18 knots; 4 on the Beaufort scale
+54877,moderate_gale near_gale,wind moving 32-38 knots; 7 on the Beaufort scale
+54878,moderation mitigation,the action of lessening in severity or intensity; "the object being control or moderation of economic depressions"
+54879,moderation moderateness,quality of being moderate and avoiding extremes
+54880,moderationism,the policy of being moderate or acting with moderation
+54881,moderationist,a moderate drinker (as opposed to a total abstainer)
+54882,moderator,any substance used to slow down neutrons in nuclear reactors
+54883,moderator,in the Presbyterian church, the officer who presides over a synod or general assembly
+54884,moderator,someone who presides over a forum or debate
+54885,moderator,someone who mediates disputes and attempts to avoid violence
+54886,moderatorship,the position of moderator
+54887,modern,a contemporary person
+54888,modern modern_font Bodoni Bodoni_font,a typeface (based on an 18th century design by Gianbattista Bodoni) distinguished by regular shape and hairline serifs and heavy downstrokes
+54889,modern_ballet,a style of ballet that admits a wider variety of movements
+54890,modern_dance,a style of theatrical dancing that is not as restricted as classical ballet; movements are expressive of feelings
+54891,modern_era,the present or recent times
+54892,modern_jazz new_jazz neo_jazz,any of various styles of jazz that appeared after 1940
+54893,modern_times present_times modern_world contemporary_world,the circumstances and ideas of the present age; "in modern times like these"
+54894,modernism,genre of art and literature that makes a self-conscious break with previous genres
+54895,modernism,practices typical of contemporary life or thought
+54896,modernist,an artist who makes a deliberate break with previous styles
+54897,modernity modernness modernism contemporaneity contemporaneousness,the quality of being current or of the present; "a shopping mall would instill a spirit of modernity into this village"
+54898,modernization,a modernized version (as of a play)
+54899,modernization modernisation,making modern in appearance or behavior; "the modernization of Nigeria will be a long process"
+54900,modesty modestness,freedom from vanity or conceit
+54901,modesty reserve,formality and propriety of manner
+54902,modicum,a small or moderate or token amount; "England still expects a modicum of eccentricity in its artists"- Ian Jack
+54903,modification,slightly modified copy; not an exact copy; "a modification of last year's model"
+54904,modification qualifying limiting,the grammatical relation that exists when a word qualifies the meaning of the phrase
+54905,modified_American_plan,a hotel plan that includes breakfast and dinner (but not lunch)
+54906,modified_radical_mastectomy,removal of a breast and the pectoralis minor and some lymph nodes in the adjacent armpit
+54907,modifier,a moderator who makes less extreme or uncompromising
+54908,modifier modifier_gene,a gene that modifies the effect produced by another gene
+54909,modifier qualifier,a content word that qualifies the meaning of a noun or verb
+54910,modillion,(architecture) one of a set of ornamental brackets under a cornice
+54911,modiolus,the central conical bony pillar of the cochlea
+54912,mods,a youth subculture that began in London in the early 1960s; a working-class movement with highly stylized dress and short hair; listened to rhythm and blues music and travelled on motor scooters
+54913,modulation,(electronics) the transmission of a signal by using it to vary a carrier wave; changing the carrier's amplitude or frequency or phase
+54914,modulation,the act of modifying or adjusting according to due measure and proportion (as with regard to artistic effect)
+54915,modulation inflection,a manner of speaking in which the loudness or pitch or tone of the voice is modified
+54916,module,detachable compartment of a spacecraft
+54917,module,computer circuit consisting of an assembly of electronic components (as of computer hardware)
+54918,module,a self-contained component (unit or item) that is used in combination with other components
+54919,modulus,an integer that can be divided without remainder into the difference between two other integers; "2 is a modulus of 5 and 9"
+54920,modulus,the absolute value of a complex number
+54921,modulus,(physics) a coefficient that expresses how much of a specified property is possessed by a specified substance
+54922,modulus_of_rigidity,the coefficient of elasticity for a shearing force
+54923,modus_vivendi,a temporary accommodation of a disagreement between parties pending a permanent settlement
+54924,mogul,a bump on a ski slope
+54925,mohair,fabric made with yarn made from the silky hair of the Angora goat
+54926,mohawk mohawk_haircut,haircut in which the head is shaved except for a band of hair down the middle of the scalp
+54927,moiety,one of two basic subdivisions of a tribe
+54928,moiety mediety,one of two (approximately) equal parts
+54929,moire watered-silk,silk fabric with a wavy surface pattern
+54930,moistening dampening,the act of making something slightly wet
+54931,moisture wet,wetness caused by water; "drops of wet gleamed on the window"
+54932,mojarra,small silvery schooling fishes with protrusible mouths found in warm coastal waters
+54933,mojo,a magic power or magic spell
+54934,moke,British informal for donkey
+54935,moksa,(Hinduism) release from the cycle of rebirth
+54936,molality molal_concentration,concentration measured by the number of moles of solute per kilogram of solvent
+54937,molar grinder,grinding tooth with a broad crown; located behind the premolars
+54938,molarity molar_concentration M,concentration measured by the number of moles of solute per liter of solution
+54939,molasses,thick dark syrup produced by boiling down juice from sugar cane; especially during sugar refining
+54940,molasses_cookie,very spicy cookies sweetened partially with molasses
+54941,molasses_kiss,a candy kiss that resembles toffee
+54942,molasses_taffy,taffy made of molasses
+54943,mold mould,loose soil rich in organic matter
+54944,mold mould,a fungus that produces a superficial growth on various kinds of damp or decaying organic matter
+54945,mold mould,a dish or dessert that is formed in or on a mold; "a lobster mold"; "a gelatin dessert made in a mold"
+54946,mold mould,a distinctive nature, character, or type; "a leader in the mold of her predecessors"
+54947,mold mould cast,container into which liquid is poured to create a given shape when it hardens
+54948,mold mould molding moulding modeling clay_sculpture,sculpture produced by molding
+54949,moldboard mouldboard,wedge formed by the curved part of a steel plow blade that turns the furrow
+54950,moldboard_plow mouldboard_plough,plow that has a moldboard
+54951,molded_salad,salad of meats or vegetables in gelatin
+54952,molding casting,the act of creating something by casting it in a mold
+54953,molding moulding,a decorative strip used for ornamentation or finishing
+54954,molding moulding border,a decorative recessed or relieved surface on an edge
+54955,mole,spicy sauce often containing chocolate
+54956,mole,a small congenital pigmented spot on the skin
+54957,mole,small velvety-furred burrowing mammal having small eyes and fossorial forefeet
+54958,mole_cricket,digs in moist soil and feeds on plant roots
+54959,mole_rat,African rodent resembling a mole in habits and appearance
+54960,mole_rat,furry short-limbed tailless rodent resembling a true mole in habits and appearance; of eastern Europe and Middle East
+54961,mole_salamander Ambystoma_talpoideum,brownish-black burrowing salamander of southeastern United States
+54962,molecular_biologist,a biologist who studies the structure and activity of macromolecules essential to life
+54963,molecular_biology,the branch of biology that studies the structure and activity of macromolecules essential to life (and especially with their genetic role)
+54964,molecular_formula,a chemical formula based on analysis and molecular weight
+54965,molecular_genetics,the branch of genetics concerned with the structure and activity of genetic material at the molecular level
+54966,molecular_weight relative_molecular_mass,(chemistry) the sum of the relative atomic masses of the constituent atoms of a molecule
+54967,molecule,(physics and chemistry) the simplest structural unit of an element or compound
+54968,molehill,a mound of earth made by moles while burrowing
+54969,moleskin,a durable cotton fabric with a velvety nap
+54970,molestation,the act of subjecting someone to unwanted or improper sexual advances or activity (especially women or children)
+54971,molester,someone who subjects others to unwanted or improper sexual activities
+54972,molindone Moban,antipsychotic drug (trade name Moban) used in the treatment of schizophrenia
+54973,moll gun_moll gangster's_moll,the girlfriend of a gangster
+54974,mollie molly,popular aquarium fish
+54975,mollification,a state of being appeased or ameliorated or tempered
+54976,molluscum,any skin disease characterized by soft pulpy nodules
+54977,molluscum_contagiosum,a virus disease of the skin marked by round white swellings; transmitted from person to person (most often in children or in adults with impaired immune function)
+54978,mollusk mollusc shellfish,invertebrate having a soft unsegmented body usually enclosed in a shell
+54979,mollusk_family,a family of mollusks
+54980,mollusk_genus,a genus of mollusks
+54981,mollycoddle,a pampered darling; an effeminate man
+54982,moloch,any lizard of the genus Moloch
+54983,molt molting moult moulting ecdysis,periodic shedding of the cuticle in arthropods or the outer skin in reptiles
+54984,molter moulter,an animal (especially birds and arthropods and reptiles) that periodically shed their outer layer (feathers or cuticle or skin or hair)
+54985,molucca_balm bells_of_Ireland Molucella_laevis,aromatic annual with a tall stems of small whitish flowers enclosed in a greatly enlarged saucer-shaped or bell-shaped calyx
+54986,molybdenite,a mineral resembling graphite that is valued as the chief source of molybdenum and its compounds
+54987,molybdenum Mo atomic_number_42,a polyvalent metallic element that resembles chromium and tungsten in its properties; used to strengthen and harden steel
+54988,molybdenum_steel,steel containing 10-15% molybdenum; properties are similar to tungsten steel
+54989,mombin,purplish tropical fruit
+54990,mombin mombin_tree jocote Spondias_purpurea,common tropical American shrub or small tree with purplish fruit
+54991,moment,a turning force produced by an object acting at a distance (or a measure of that force)
+54992,moment,the n-th moment of a distribution is the expected value of the n-th power of the deviations from a fixed value
+54993,moment minute second instant,a particular point in time; "the moment he arrived the party began"
+54994,moment mo minute second bit,an indefinitely short time; "wait just a moment"; "in a mo"; "it only takes a minute"; "in just a bit"
+54995,moment_magnitude_scale,a logarithmic scale of 1 to 10 (a successor to the Richter scale) that enables seismologists to compare the energy released by different earthquakes on the basis of the area of the geological fault that ruptured in the quake
+54996,moment_of_a_couple,given two equal and opposite forces, the product of the force and the distance between them
+54997,moment_of_inertia,the tendency of a body to resist angular acceleration
+54998,moment_of_truth,the moment in a bullfight when the matador kills the bull
+54999,moment_of_truth,a crucial moment on which much depends
+55000,momentousness,utmost importance
+55001,momentum,the product of a body's mass and its velocity; "the momentum of the particles was deduced from meteoritic velocities"
+55002,momentum impulse,an impelling force or strength; "the car's momentum carried it off the road"
+55003,momism overprotection overshielding,excessive protection
+55004,monad,(chemistry) an atom having a valence of one
+55005,monad,(biology) a single-celled microorganism (especially a flagellate protozoan)
+55006,monad monas,a singular metaphysical entity from which material properties are said to derive
+55007,monadic_operation unary_operation,an operation with exactly one operand
+55008,monal monaul,brilliantly colored pheasant of southern Asia
+55009,monandry,the state of having only one husband at a time
+55010,monarch monarch_butterfly milkweed_butterfly Danaus_plexippus,large migratory American butterfly having deep orange wings with black and white markings; the larvae feed on milkweed
+55011,monarchism,a belief in and advocacy of monarchy as a political system
+55012,monarchist royalist,an advocate of the principles of monarchy
+55013,monarchy,an autocracy governed by a monarch who usually inherits the authority
+55014,monarda wild_bergamot,any of various aromatic herbs of the genus Monarda
+55015,monastery,the residence of a religious community
+55016,monastic_habit,a long loose habit worn by monks in a monastery
+55017,monasticism,asceticism as a form of religious life; usually conducted in a community under a common rule and characterized by celibacy and poverty and obedience
+55018,monazite,a reddish-brown mineral containing rare earth metals; an important source of thorium and cerium
+55019,moneran moneron,organisms that typically reproduce by asexual budding or fission and whose nutritional mode is absorption or photosynthesis or chemosynthesis
+55020,monetarism,an economic theory holding that variations in unemployment and the rate of inflation are usually caused by changes in the supply of money
+55021,monetarist,an advocate of the theory that economic fluctuations are caused by increases or decreases in the supply of money
+55022,monetary_unit,a unit of money
+55023,monetary_value price cost,the property of having material worth (often indicated by the amount of money something would bring if sold); "the fluctuating monetary value of gold and silver"; "he puts a high price on his services"; "he couldn't calculate the cost of the collection"
+55024,monetization monetisation,establishing something (e.g. gold or silver) as the legal tender of a country
+55025,money,the official currency issued by a government or national bank; "he changed his money into francs"
+55026,money,the most common medium of exchange; functions as legal tender; "we tried to collect the money he owed us"
+55027,money,wealth reckoned in terms of money; "all his money is in real estate"
+55028,money_belt,belt with a concealed section for holding money
+55029,money_cowrie Cypraea_moneta,cowrie whose shell is used for money in parts of the southern Pacific and in parts of Africa
+55030,money_handler money_dealer,a person who receives or invests or pays out money
+55031,money_laundering,concealing the source of illegally gotten money
+55032,money_market,a market for short-term debt instruments
+55033,money_order postal_order,a written order for the payment of a sum to a named individual; obtainable and payable at a post office
+55034,money_supply,the total stock of money in the economy; currency held by the public plus money in accounts in banks
+55035,moneybag,a drawstring bag for holding money
+55036,moneygrubber,someone whose main interest in life is moneymaking
+55037,moneymaker,someone who is successful in accumulating wealth
+55038,moneymaker money-spinner cash_cow,a project that generates a continuous flow of money
+55039,moneymaking,the act of making money (and accumulating wealth)
+55040,moneywort creeping_Jenny creeping_Charlie Lysimachia_nummularia,a loosestrife vine
+55041,mongo,100 mongo equal 1 tugrik in Mongolia
+55042,mongolism mongolianism Down's_syndrome Down_syndrome trisomy_21,a congenital disorder caused by having an extra 21st chromosome; results in a flat face and short stature and mental retardation
+55043,mongoloid,a person suffering from Down syndrome (no longer used technically in this sense, now considered offensive)
+55044,mongoose,agile grizzled Old World viverrine; preys on snakes and rodents
+55045,monic_polynomial,a polynomial in one variable
+55046,monilia,any of the yeastlike imperfect fungi of the genus Monilia
+55047,monism,the doctrine that reality consists of a single basic substance or element
+55048,monition process_of_monition,a summons issued after the filing of a libel or claim directing all parties concerned to show cause why the judgment asked for should not be granted
+55049,monitor,electronic equipment that is used to check the quality or content of electronic transmissions
+55050,monitor,a piece of electronic equipment that keeps track of the operation of a system continuously and warns of trouble
+55051,monitor monitor_lizard varan,any of various large tropical carnivorous lizards of Africa and Asia and Australia; fabled to warn of crocodiles
+55052,monitor monitoring_device,display produced by a device that takes signals and displays them on a television screen or a computer monitor
+55053,monitor_program monitoring_program,a program that observes and regulates and controls or verifies the operations of a data-processing system
+55054,monitoring,the act of observing something (and sometimes keeping a record of it); "the monitoring of enemy communications plays an important role in war times"
+55055,monk monastic,a male religious living in a cloister and devoting himself to contemplation and prayer and work
+55056,monk's_cloth,a heavy cloth in basket weave
+55057,monkey,any of various long-tailed primates (excluding the prosimians)
+55058,monkey-wrench monkey_wrench,adjustable wrench that has one fixed and one adjustable jaw
+55059,monkey_bridge,a high narrow platform above a deck or in an engine room or boiler room
+55060,monkey_business,mischievous or deceitful behavior
+55061,monkey_ladder,a light ladder to the monkey bridge on a ship
+55062,monkey_puzzle chile_pine Araucaria_araucana,large Chilean evergreen conifer having intertwined branches and bearing edible nuts
+55063,monkfish,flesh of a large-headed anglerfish of the Atlantic waters of North America
+55064,monkshood helmetflower helmet_flower Aconitum_napellus,a poisonous herb native to northern Europe having hooded blue-purple flowers; the dried leaves and roots yield aconite
+55065,mono-iodotyrosine,tyrosine with one iodine atom added
+55066,monoamine,a molecule containing one amine group (especially one that is a neurotransmitter)
+55067,monoamine_neurotransmitter,a monoamine that is functionally important in neural transmission
+55068,monoamine_oxidase MAO,an enzyme that catalyzes the oxidation of many body compounds (e.g., epinephrine and norepinephrine and serotonin)
+55069,monoamine_oxidase_inhibitor MAOI,any of a group of antidepressant drugs that inhibit the action of monoamine oxidase in the brain and so allow monoamines to accumulate
+55070,monobasic_acid,an acid containing only one replaceable hydrogen atom per molecule
+55071,monoblast,a large immature monocyte normally found in bone marrow
+55072,monocarp monocarpic_plant monocarpous_plant,a plant that bears fruit once and dies
+55073,monochromacy monochromatism monochromatic_vision monochromia monochromasy,complete color blindness; colors can be differentiated only on the basis of brightness
+55074,monochromat,a person who is completely color-blind
+55075,monochrome,painting done in a range of tones of a single color
+55076,monocle eyeglass,lens for correcting defective vision in one eye; held in place by facial muscles
+55077,monocline,a geological formation in which all strata are inclined in the same direction
+55078,monoclonal_antibody monoclonal,any of a class of antibodies produced in the laboratory by a single clone of cells or a cell line and consisting of identical antibody molecules
+55079,monocot monocotyledon liliopsid endogen,a monocotyledonous flowering plant; the stem grows by deposits on its inside
+55080,monocot_family liliopsid_family,family of flowering plants having a single cotyledon (embryonic leaf) in the seed
+55081,monocot_genus liliopsid_genus,genus of flowering plants having a single cotyledon (embryonic leaf) in the seed
+55082,monocular_vision,vision with only one eye
+55083,monoculture,the cultivation of a single crop (on a farm or area or country)
+55084,monocyte,a type of granular leukocyte that functions in the ingestion of bacteria
+55085,monocytic_leukemia monocytic_leukaemia monoblastic_leukemia monoblastic_leukaemia histiocytic_leukemia histiocytic_leukaemia,leukemia characterized by the proliferation of monocytes and monoblasts in the blood
+55086,monocytosis,increase in the number of monocytes in the blood; symptom of monocytic leukemia
+55087,monofocal_lens_implant monofocal_IOL,a lens with a single focus that is used after cataract surgery to provide clear distance vision
+55088,monogamist monogynist,someone who practices monogamy (one spouse at a time)
+55089,monogamy monogamousness,the practice or state of having only one spouse at a time
+55090,monogenesis sporulation,asexual reproduction by the production and release of spores
+55091,monogenic_disorder monogenic_disease,an inherited disease controlled by a single pair of genes
+55092,monogram,a graphic symbol consisting of 2 or more letters combined (usually your initials); printed on stationery or embroidered on clothing
+55093,monograph,a detailed and documented treatise on a particular subject
+55094,monogyny,having only one wife at a time
+55095,monohybrid,a hybrid produced by crossing parents that are homozygous except for a single gene locus that has two alleles (as in Mendel's experiments with garden peas)
+55096,monohybrid_cross,hybridization using a single trait with two alleles (as in Mendel's experiments with garden peas)
+55097,monohydrate,a hydrate that contains one molecule of water per molecule of the compound
+55098,monolatry,the worship of a single god but without claiming that it is the only god
+55099,monolingual,a person who knows only one language
+55100,monolith,a single great stone (often in the form of a column or obelisk)
+55101,monologist,an entertainer who performs alone
+55102,monologue,a long utterance by one person (especially one that prevents others from participating in the conversation)
+55103,monologue,a (usually long) dramatic speech by a single actor
+55104,monomania possession,a mania restricted to one thing or idea
+55105,monomaniac,a person suffering from monomania
+55106,monomer,a simple compound whose molecules can join together to form polymers
+55107,mononeuropathy,any neuropathy of a single nerve trunk
+55108,mononuclear_phagocyte_system MPS system_of_macrophages,a widely distributed system of free and fixed macrophages derived from bone marrow
+55109,monophony monophonic_music monody,music consisting of a single vocal part (usually with accompaniment)
+55110,monoplane,an airplane with a single wing
+55111,monoplane_flying_fish two-wing_flying_fish,having only pectoral fins enlarged
+55112,monoplegia,paralysis of a single limb
+55113,monopolist monopolizer monopoliser,someone who monopolizes the means of producing or selling something
+55114,monopolization monopolisation,domination (of a market or commodity) to the exclusion of others
+55115,monopoly,(economics) a market in which there are many buyers but only one seller; "a monopoly on silver"; "when you have a monopoly you can ask any price you like"
+55116,monopoly,exclusive control or possession of something; "They have no monopoly on intelligence"
+55117,monopoly_board,a board used for playing monopoly
+55118,monopsony,(economics) a market in which goods or services are offered by several sellers but there is only one buyer
+55119,monorail,a railway having a single track
+55120,monorchism monorchidism,failure of one testes to descend into the scrotum
+55121,monosaccharide monosaccharose simple_sugar,a sugar (like sucrose or fructose) that does not hydrolyse to give other sugars; the simplest group of carbohydrates
+55122,monosemy,having a single meaning (absence of ambiguity) usually of individual words or phrases
+55123,monosodium_glutamate MSG,white crystalline compound used as a food additive to enhance flavor; often used in Chinese cooking; "food manufacturers sometimes list MSG simply as `artificial flavors' in ingredient lists"
+55124,monosomy,chromosomal abnormality consisting of the absence of one chromosome from the normal diploid number
+55125,monostotic_fibrous_dysplasia,fibrous dysplasia of bone confined to a single bone
+55126,monosyllable monosyllabic_word,a word or utterance of one syllable
+55127,monotheism,belief in a single God
+55128,monotheist,a believer in one god
+55129,monotone,a single tone repeated with different words or different rhythms (especially in rendering liturgical texts)
+55130,monotone drone droning,an unchanging intonation
+55131,monotony,constancy of tone or pitch or inflection
+55132,monotony humdrum sameness,the quality of wearisome constancy, routine, and lack of variety; "he had never grown accustomed to the monotony of his work"; "he was sick of the humdrum of his fellow prisoners"; "he hated the sameness of the food the college served"
+55133,monotreme egg-laying_mammal,the most primitive mammals comprising the only extant members of the subclass Prototheria
+55134,monotype,(biology) a taxonomic group with a single member (a single species or genus)
+55135,monotype,the sole print made by pressing paper against a painted or inked glass or metal plate
+55136,monotype,a typesetting machine operated from a keyboard that sets separate characters
+55137,monounsaturated_fatty_acid,an unsaturated fatty acid whose carbon chain has one double or triple valence bond per molecule; found chiefly in olive oil and chicken and almonds
+55138,monoxide,an oxide containing just one atom of oxygen in the molecule
+55139,mons mons_veneris mons_pubis,a mound of fatty tissue covering the pubic area in women
+55140,monsoon,rainy season in southern Asia when the southwestern monsoon blows, bringing heavy rains
+55141,monsoon,any wind that changes direction with the seasons
+55142,monsoon,a seasonal wind in southern Asia; blows from the southwest (bringing rain) in summer and from the northeast in winter
+55143,monster,an imaginary creature usually having various human and animal parts
+55144,monster fiend devil demon ogre,a cruel wicked and inhuman person
+55145,monster teras,(medicine) a grossly malformed and usually nonviable fetus
+55146,monstera,any plant of the genus Monstera; often grown as houseplants
+55147,monstrance ostensorium,(Roman Catholic Church) a vessel (usually of gold or silver) in which the consecrated Host is exposed for adoration
+55148,monstrosity,something hideous or frightful; "they regarded the atom bomb as a monstrosity"
+55149,montan_wax,a hard wax obtained from lignite
+55150,monte four-card_monte three-card_monte,a gambling card game of Spanish origin; 3 or 4 cards are dealt face up and players bet that one of them will be matched before the others as the cards are dealt from the pack one at a time
+55151,month,a time unit of approximately 30 days; "he was given a month to pay the bill"
+55152,month_of_Sundays,a time perceived as long; "I hadn't seen him in a month of Sundays"
+55153,monthly,a periodical that is published every month (or 12 issues per year)
+55154,monument,an important site that is marked and preserved as public property
+55155,moo,the sound made by a cow or bull
+55156,moo_goo_gai_pan,a Cantonese dish of chicken and sauteed vegetables
+55157,moocher mooch cadger scrounger,someone who mooches or cadges (tries to get something free)
+55158,mood mode modality,verb inflections that express how the action or state is conceived by the speaker
+55159,moodiness,a sullen gloomy feeling
+55160,moodiness,having temperamental and changeable moods
+55161,moon,any object resembling a moon; "he made a moon lamp that he used as a night light"; "the clock had a moon that showed various phases"
+55162,moon,any natural satellite of a planet; "Jupiter has sixteen moons"
+55163,moon-worship selenolatry,the worship of the moon
+55164,moon_blindness mooneye,recurrent eye inflammation in horses; sometimes resulting in blindness
+55165,moon_carrot stone_parsley,any plant of the genus Seseli having dense umbels of small white or pink flowers and finely divided foliage
+55166,moon_shell moonshell,marine gastropods having smooth rounded shells that form short spires
+55167,moon_shot,the launching of a spacecraft to the moon
+55168,moon_trefoil Medicago_arborea,evergreen shrub of southern European highlands having downy foliage and a succession of yellow flowers throughout the summer followed by curious snail-shaped pods
+55169,moonbeam moon_ray moon-ray,a ray of moonlight
+55170,moonfish Atlantic_moonfish horsefish horsehead horse-head dollarfish Selene_setapinnis,any of several silvery marine fishes with very flat bodies
+55171,moonflower belle_de_nuit Ipomoea_alba,pantropical climber having white fragrant nocturnal flowers
+55172,moonlight moonshine Moon,the light of the Moon; "moonlight is the smuggler's enemy"; "the Moon was bright enough to read by"
+55173,moonlighter,a person who holds a second job (usually after hours)
+55174,moonseed,plant of the family Menispermaceae having red or black fruit with crescent- or ring-shaped seeds
+55175,moonshine bootleg corn_liquor,whiskey illegally distilled from a corn mash
+55176,moonstone,a transparent or translucent gemstone with a pearly luster; some specimens are orthoclase feldspar and others are plagioclase feldspar
+55177,moonwalk,a kind of dance step in which the dancer seems to be sliding on the spot; "Michael Jackson perfected the moonwalk in the 1980s"
+55178,moonwalk,an exploratory walk by an astronaut on the surface of the moon
+55179,moonwort common_moonwort Botrychium_lunaria,of America and Eurasia and Australia
+55180,moor moorland,open land usually with peaty soil covered with heather and bracken and moss
+55181,moorage,a fee for mooring
+55182,moorcock,male red grouse
+55183,moorhen,female red grouse
+55184,moorhen Gallinula_chloropus,black gallinule that inhabits ponds and lakes
+55185,mooring moorage berth slip,a place where a craft can be made fast
+55186,mooring mooring_line,(nautical) a line that holds an object (especially a boat) in place
+55187,mooring_anchor,an anchor used to hold a mooring buoy or a channel marker in place
+55188,mooring_tower mooring_mast,a tower for mooring airships
+55189,moosewood moose-wood striped_maple striped_dogwood goosefoot_maple Acer_pennsylvanicum,maple of eastern North America with striped bark and large two-lobed leaves clear yellow in autumn
+55190,moot,a hypothetical case that law students argue as an exercise; "he organized the weekly moot"
+55191,moot_court,a mock court where law students argue hypothetical cases
+55192,mop_handle,the handle of a mop
+55193,moped,a motorbike that can be pedaled or driven by a low-powered gasoline engine
+55194,mopper,a worker who uses a mop to clean a surface
+55195,moppet,a little girl (usually one you are fond of)
+55196,moquette,a thick velvety synthetic fabric used for carpets and soft upholstery
+55197,moraine,accumulated earth and stones deposited by a glacier
+55198,moral lesson,the significance of a story or event; "the moral of the story is to love thy neighbor"
+55199,moral_certainty,certainty based on an inner conviction; "she believed in the importance of moral absolutes and moral certainty"; "the prosecutor had a moral certainty that the prisoner was guilty"
+55200,moral_force dynamic,an efficient incentive; "they hoped it would act as a spiritual dynamic on all churches"
+55201,moral_hazard,(economics) the lack of any incentive to guard against a risk when you are protected against it (as by insurance); "insurance companies are exposed to a moral hazard if the insured party is not honest"
+55202,moral_obligation,an obligation arising out of considerations of right and wrong; "he did it out of a feeling of moral obligation"
+55203,moral_principle,the principle that conduct should be moral
+55204,morale,a state of individual psychological well-being based upon a sense of confidence and usefulness and purpose
+55205,morale_builder,something or someone who influences by building or strengthening morale
+55206,morale_building morale_booster,anything that serves to increase morale; "the sight of flowers every morning was my morale builder"
+55207,moralism,a moral maxim
+55208,moralism,judgments about another person's morality; "he could not stand her hectoring moralism"
+55209,moralist,a philosopher who specializes in morals and moral problems
+55210,morality,concern with the distinction between good and evil or right and wrong; right or good conduct
+55211,morality_play,an allegorical play popular in the 15th and 16th centuries; characters personified virtues and vices
+55212,moralization moralisation,the act of making moral (or more moral); "for years she worked toward the moralization of English literature"
+55213,moralizing moralization moralisation,indulgence in moral pronouncements; the exposition (often superficially) of a particular moral code; "his constant moralizing drove me mad"
+55214,moratorium,a legally authorized postponement before some obligation must be discharged
+55215,moratorium,suspension of an ongoing activity
+55216,moray moray_eel,family of brightly colored voracious eels of warm coastal waters; generally nonaggressive to humans but larger species are dangerous if provoked
+55217,morbidity,the relative incidence of a particular disease
+55218,morbidity morbidness,an abnormally gloomy or unhealthy state of mind; "his fear of being alone verges on morbidity"
+55219,morceau,a short literary or musical composition
+55220,mordacity,a disposition to biting
+55221,mordant,a substance used to treat leather or other materials before dyeing; aids in dyeing process
+55222,moreen,a heavy fabric of wool (or wool and cotton) used mostly in upholstery or for curtains
+55223,morel,any of various edible mushrooms of the genus Morchella having a brownish spongelike cap
+55224,morello,cultivated sour cherry with dark-colored skin and juice
+55225,morello Prunus_cerasus_austera,any of several cultivated sour cherry trees bearing fruit with dark skin and juice
+55226,mores,(sociology) the conventions that embody the fundamental values of a group
+55227,morganite,a kind of pink beryl used as a gemstone
+55228,morgen,a South African unit of measure equal to about 2 acres
+55229,morgue mortuary dead_room,a building (or room) where dead bodies are kept before burial or cremation
+55230,morion cabasset,a metal helmet worn by common soldiers in the 16th century
+55231,mormon_cricket Anabrus_simplex,large dark wingless cricket-like katydid of arid parts of western United States
+55232,morning morn morning_time forenoon,the time period between dawn and noon; "I spent the morning running errands"
+55233,morning-after_pill,a large dose of estrogen taken orally within 24 to 72 hours after intercourse; prevents implantation of a fertilized ovum and so acts as a contraceptive; commonly used after rape or incest
+55234,morning_dress,formal attire for men during the daytime
+55235,morning_dress,a woman's informal dress for housework
+55236,morning_glory,any of various twining vines having funnel-shaped flowers that close late in the day
+55237,morning_room,a sitting room used during the daylight hours
+55238,morning_sickness,nausea early in the day; a characteristic symptom in the early months of pregnancy
+55239,morning_star daystar Phosphorus Lucifer,a planet (usually Venus) seen just before sunrise in the eastern sky
+55240,morocco,a soft pebble-grained leather made from goatskin; used for shoes and book bindings etc.
+55241,moronity mental_deficiency,mild mental retardation
+55242,moroseness glumness sullenness,a gloomy ill-tempered feeling
+55243,morosoph,a learned fool
+55244,morphallaxis,regeneration on a reduced scale of a body part; observed especially in invertebrates such as certain lobsters
+55245,morphea,localized scleroderma
+55246,morpheme,minimal meaningful language unit; it cannot be divided into smaller meaningful units
+55247,morphine morphia,an alkaloid narcotic drug extracted from opium; a powerful, habit-forming narcotic used to relieve pain
+55248,morphogenesis,differentiation and growth of the structure of an organism (or a part of an organism)
+55249,morphological_rule rule_of_morphology,a linguistic rule for the formation of words
+55250,morphology,studies of the rules for forming admissible words
+55251,morphology,the branch of biology that deals with the structure of animals and plants
+55252,morphology geomorphology,the branch of geology that studies the characteristics and configuration and evolution of rocks and land forms
+55253,morphology sound_structure syllable_structure word_structure,the admissible arrangement of sounds in words
+55254,morphophoneme,(linguistics) the phonemes (or strings of phonemes) that constitute the various allomorphs of a morpheme
+55255,morphophonemic_system,the morphophonemics of a particular language
+55256,morphophonemics,the study of the phonological realization of the allomorphs of the morphemes of a language
+55257,morris_dance morris_dancing,any of various English folk dances performed by dancers in costume
+55258,morris_dancer,someone who does a morris dance
+55259,morrow,the next day; "whenever he arrives she leaves on the morrow"
+55260,morsel,a small quantity of anything; "a morsel of paper was all he needed"
+55261,morsel bit bite,a small amount of solid food; a mouthful; "all they had left was a bit of bread"
+55262,mortal_enemy,an enemy who wants to kill you
+55263,mortal_sin deadly_sin,an unpardonable sin entailing a total loss of grace; "theologians list seven mortal sins"
+55264,mortality,the quality or state of being mortal
+55265,mortality_table,an actuarial table indicating life expectancy and probability of death as a function or age and sex and occupation etc
+55266,mortar,used as a bond in masonry or for covering a wall
+55267,mortar,a bowl-shaped vessel in which substances can be ground and mixed with a pestle
+55268,mortar howitzer trench_mortar,a muzzle-loading high-angle gun with a short barrel that fires shells at high elevations for a short range
+55269,mortar_fire,artillery fire delivered by a mortar
+55270,mortarboard,an academic cap with a flat square with a tassel on top
+55271,mortarboard hawk,a square board with a handle underneath; used by masons to hold or carry mortar
+55272,mortgage,a conditional conveyance of property as security for the repayment of a loan
+55273,mortgage-backed_security,a security created when a group of mortgages are gathered together and bonds are sold to other institutions or the public; investors receive a portion of the interest payments on the mortgages as well as the principal payments; usually guaranteed by the government
+55274,mortgage_application,an application for a mortgage loan
+55275,mortgage_deed,deed embodying a mortgage
+55276,mortgagee mortgage_holder,the person who accepts a mortgage; "the bank became our mortgagee when it accepted our mortgage on our new home"
+55277,mortgagor mortgager,the person who gives a mortgage in return for money to be repaid; "we became mortgagors when the bank accepted our mortgage and loaned us the money to buy our new home"
+55278,mortician undertaker funeral_undertaker funeral_director,one whose business is the management of funerals
+55279,mortification,(Christianity) the act of mortifying the lusts of the flesh by self-denial and privation (especially by bodily pain or discomfort inflicted on yourself)
+55280,mortise mortice,a square hole made to receive a tenon and so to form a joint
+55281,mortise_joint mortise-and-tenon_joint,a joint made by inserting tenon on one piece into mortise holes in the other
+55282,mortmain dead_hand,real property held inalienably (as by an ecclesiastical corporation)
+55283,morula,a solid mass of blastomeres that forms when the zygote splits; develops into the blastula
+55284,mosaic,viral disease in solanaceous plants (tomatoes, potatoes, tobacco) resulting in mottling and often shriveling of the leaves
+55285,mosaic,a pattern resembling a mosaic
+55286,mosaic,transducer formed by the light-sensitive surface on a television camera tube
+55287,mosaic,art consisting of a design made of small pieces of colored stone or glass
+55288,mosaic arial_mosaic photomosaic,arrangement of aerial photographs forming a composite picture
+55289,mosaic_culture,a highly diverse culture; "the city's mosaic culture results in great diversity in the arts"
+55290,mosaic_gold stannic_sulfide,a yellow pigment sometimes suspended in lacquer
+55291,mosaicism,the condition in which an organism has two or more cell populations that differ in genetic makeup
+55292,moshav,a cooperative Israeli village or settlement comprised of small farms
+55293,mosque,(Islam) a Muslim place of worship that usually has a minaret
+55294,mosquito,two-winged insect whose female has a long proboscis to pierce the skin and suck the blood of humans and animals
+55295,mosquito_bite,a sting inflicted by a mosquito
+55296,mosquito_fern floating_fern Carolina_pond_fern Azolla_caroliniana,small free-floating aquatic fern from the eastern United States to tropical America; naturalized in western and southern Europe
+55297,mosquito_net,a fine net or screen (especially around beds) to protect against mosquitos
+55298,mosquitofish Gambusia_affinis,silvery topminnow with rows of black spots of tropical North America and West Indies; important in mosquito control
+55299,moss,tiny leafy-stemmed flowerless plants
+55300,moss-trooper,a marauder and plunderer (originally operating in the bogs between England and Scotland)
+55301,moss_agate,an agate resembling moss with brown, black, or green markings
+55302,moss_campion Silene_acaulis,tuft- or mat-forming dwarf perennial of Arctic regions of western and central Europe and North America
+55303,moss_family,a family of mosses
+55304,moss_genus,a genus of mosses
+55305,moss_pink mountain_phlox moss_phlox dwarf_phlox Phlox_subulata,low tufted perennial phlox with needlelike evergreen leaves and pink or white flowers; native to United States and widely cultivated as a ground cover
+55306,mossback,an extremely old-fashioned conservative
+55307,mossy_saxifrage Saxifraga_hypnoides,tufted or mat-forming perennial of mountains of Europe; cultivated for its white flowers
+55308,most_valuable_player MVP,the player judged to be the most important to the sport
+55309,mostaccioli,pasta somewhat resembling little moustaches
+55310,mot_juste,the appropriate word or expression
+55311,motel,a motor hotel
+55312,motel_room,a sleeping room in a motel
+55313,motet,an unaccompanied choral composition with sacred lyrics; intended to be sung as part of a church service; originated in the 13th century
+55314,moth,typically crepuscular or nocturnal insect having a stout body and feathery or hairlike antennae
+55315,moth_bean Vigna_aconitifolia Phaseolus_aconitifolius,East Indian legume having hairy foliage and small yellow flowers followed by cylindrical pods; used especially in India for food and forage and as a soil conditioner; sometimes placed in genus Phaseolus
+55316,moth_miller miller,any of various moths that have powdery wings
+55317,moth_mullein Verbascum_blattaria,European mullein with smooth leaves and large yellow or purplish flowers; naturalized as a weed in North America
+55318,moth_orchid moth_plant,any of various orchids of the genus Phalaenopsis having often drooping glossy broad obovate or oval leaves usually dark green flushed purple or mottled grey and silver
+55319,mothball camphor_ball,a small sphere of camphor or naphthalene used to keep moths away from stored clothing
+55320,mother,a stringy slimy substance consisting of yeast cells and bacteria; forms during fermentation and is added to cider or wine to produce vinegar
+55321,mother,a term of address for an elderly woman
+55322,mother,a term of address for a mother superior
+55323,mother,a condition that is the inspiration for an activity or situation; "necessity is the mother of invention"
+55324,mother female_parent,a woman who has given birth to a child (also used as a term of address to your mother); "the mother of three children"
+55325,mother's_boy mamma's_boy mama's_boy,a boy excessively attached to his mother; lacking normal masculine interests
+55326,mother's_daughter,a daughter who is favored by and similar to her mother
+55327,mother's_milk,milk secreted by a woman who has recently given birth
+55328,mother's_son,a male person; "every mother's son who could walk was there"
+55329,mother-in-law,the mother of your spouse
+55330,mother-in-law's_tongue snake_plant Sansevieria_trifasciata,stemless plant having narrow rigid leaves often cultivated as a houseplant
+55331,mother-of-pearl nacre,the iridescent internal layer of a mollusk shell
+55332,mother_cell,cell from which another cell of an organism (usually of a different sort) develops; "a sperm cell develops from a sperm mother cell"
+55333,mother_figure,a woman who evokes the feelings usually reserved for a mother
+55334,mother_hen,a person who cares for the needs of others (especially in an overprotective or interfering way)
+55335,mother_hen,a hen with chicks
+55336,mother_lode champion_lode,the main vein of ore in a deposit
+55337,mother_tongue maternal_language first_language,one's native language; the language learned by children and passed from one generation to the next
+55338,motherhood maternity,the kinship relation between an offspring and the mother
+55339,motherliness maternalism maternal_quality maternity,the quality of having or showing the tenderness and warmth and affection of or befitting a mother; "the girl's motherliness made her invaluable in caring for the children"
+55340,motherwort Leonurus_cardiaca,bitter Old World herb of hedgerows and woodland margins having toothed leaves and white or pale pink flowers
+55341,motif motive,a theme that is repeated or elaborated in a piece of music
+55342,motif motive,a design or figure that consists of recurring shapes or colors, as in architecture or decoration
+55343,motile,one whose prevailing mental imagery takes the form of inner feelings of action
+55344,motilin,a gastrointestinal hormone that apparently participates in controlling smooth muscle contractions in the stomach and small intestine
+55345,motility,ability to move spontaneously and independently
+55346,motion,a state of change; "they were in a state of steady motion"
+55347,motion movement move,the act of changing location from one place to another; "police controlled the motion of the crowd"; "the movement of people from the farms to the cities"; "his move put him directly in my path"
+55348,motion movement move motility,a change of position that does not entail a change of location; "the reflex motion of his eyebrows revealed his surprise"; "movement is a sign of life"; "an impatient move of his hand"; "gastrointestinal motility"
+55349,motion question,a formal proposal for action made to a deliberative assembly for discussion and vote; "he made a motion to adjourn"; "she called for the question"
+55350,motion-picture_camera movie_camera cine-camera,a camera that takes a sequence of photographs that can give the illusion of motion when viewed in rapid succession
+55351,motion-picture_film movie_film cine-film,photographic film several hundred feet long and wound on a spool; to be used in a movie camera
+55352,motion_sickness kinetosis,the state of being dizzy or nauseated because of the motions that occur while traveling in or on a moving vehicle
+55353,motionlessness stillness lifelessness,a state of no motion or movement; "the utter motionlessness of a marble statue"
+55354,motivation,the condition of being motivated; "his motivation was at a high level"
+55355,motivation motivating,the act of motivating; providing incentive
+55356,motivation motive need,the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior; "we did not understand his motivation"; "he acted with the best of motives"
+55357,motley,a garment made of motley (especially a court jester's costume)
+55358,motley,a multicolored woolen fabric woven of mixed threads in 14th to 17th century England
+55359,motmot momot,tropical American bird resembling a blue jay and having greenish and bluish plumage
+55360,motor,a nonspecific agent that imparts motion; "happiness is the aim of all men and the motor of all action"
+55361,motor,machine that converts other forms of energy into mechanical energy and so imparts motion
+55362,motor_aphasia Broca's_aphasia ataxic_aphasia expressive_aphasia nonfluent_aphasia,aphasia in which expression by speech or writing is severely impaired
+55363,motor_area motor_region motor_cortex Rolando's_area excitable_area,the cortical area that influences motor movements
+55364,motor_control,control of muscles
+55365,motor_fiber efferent_fiber,a nerve fiber that carries impulses toward the muscles or glands
+55366,motor_hotel motor_inn motor_lodge tourist_court court,a hotel for motorists; provides direct access from rooms to parking area
+55367,motor_memory muscle_memory,your memory for motor skills
+55368,motor_nerve efferent_nerve efferent,a nerve that conveys impulses toward or to muscles or glands
+55369,motor_neuron efferent_neuron motor_nerve_fiber motoneuron,a neuron conducting impulses outwards from the brain or spinal cord
+55370,motor_oil,oil used to lubricate the moving parts of a motor
+55371,motor_pool,a fleet of military vehicles controlled by a single agency and available for use as needed
+55372,motor_scooter scooter,a wheeled vehicle with small wheels and a low-powered gasoline engine geared to the rear wheel
+55373,motor_vehicle automotive_vehicle,a self-propelled wheeled vehicle that does not run on rails
+55374,motorboat powerboat,a boat propelled by an internal-combustion engine
+55375,motorcade,a procession of people traveling in motor cars
+55376,motorcycle bike,a motor vehicle with two wheels and a strong frame
+55377,motorcycle_cop motorcycle_policeman speed_cop,a policeman who rides a motorcycle (and who checks the speeds of motorists)
+55378,motorcycling,riding a motorcycle; "motorcycling is a dangerous sport"
+55379,motorcyclist,a traveler who rides a motorcycle
+55380,motoring,the act of driving an automobile
+55381,motorist automobilist,someone who drives (or travels in) an automobile
+55382,motorization motorisation,the act of motorizing (equiping with motors or with motor vehicles)
+55383,motorized_wheelchair,a wheelchair propelled by a motor
+55384,motorman,the operator of streetcar
+55385,motormouth,someone who talks incessantly; "I wish that motormouth would shut up"
+55386,mottle,an irregular arrangement of patches of color; "it was not dull grey as distance had suggested, but a mottle of khaki and black and olive-green"
+55387,mottling,the act of coloring with areas of different shades
+55388,motto slogan catchword shibboleth,a favorite saying of a sect or political group
+55389,mouflon moufflon Ovis_musimon,wild mountain sheep of Corsica and Sardinia
+55390,moulin glacier_mill,a chute through which supraglacial water enters a glacier, boring either to the bedrock or to the depth of common crevasse formation; "the icy river plunged, roaring, into the moulin's blue depths"
+55391,mound hill,structure consisting of an artificial heap or bank usually of earth or stones; "they built small mounds to hide behind"
+55392,mound hill pitcher's_mound,(baseball) the slight elevation on which the pitcher stands
+55393,mount setting,a mounting consisting of a piece of metal (as in a ring or other jewelry) that holds a gem in place; "the diamond was in a plain gold mount"
+55394,mountain mount,a land mass that projects well above its surroundings; higher than a hill
+55395,mountain_ash,any of various trees of the genus Sorbus
+55396,mountain_ash Eucalyptus_regnans,tree having wood similar to the alpine ash; tallest tree in Australia and tallest hardwood in the world
+55397,mountain_ash Fraxinus_texensis,low-growing ash of Texas
+55398,mountain_avens Dryas_octopetala,creeping evergreen shrub with large white flowers; widely distributed in northern portions of Eurasia and North America
+55399,mountain_beaver sewellel Aplodontia_rufa,bulky nocturnal burrowing rodent of uplands of the Pacific coast of North America; the most primitive living rodent
+55400,mountain_bike all-terrain_bike off-roader,a bicycle with a sturdy frame and fat tires; originally designed for riding in mountainous country
+55401,mountain_bladder_fern Cystopteris_montana,fern of rocky mountainous areas of hemisphere
+55402,mountain_chinchilla mountain_viscacha,a rodent native to the mountains of Chile and Peru and now bred in captivity
+55403,mountain_climbing mountaineering,the activity of climbing a mountain
+55404,mountain_devil spiny_lizard Moloch_horridus,desert lizard that feeds on ants
+55405,mountain_ebony orchid_tree Bauhinia_variegata,small East Indian tree having orchid-like flowers and hard dark wood
+55406,mountain_everlasting,a variety of cat's foot
+55407,mountain_fern Oreopteris_limbosperma Dryopteris_oreopteris,common European mountain fern having fragrant lemon or balsam scented fronds
+55408,mountain_four_o'clock Mirabilis_oblongifolia,leafy wildflower with lavender-pink flowers that open in the evening and remain through cool part of the next day; found in open woods or brush in mountains of southern Colorado to Arizona and into Mexico
+55409,mountain_goat Rocky_Mountain_goat Oreamnos_americanus,sure-footed mammal of mountainous northwestern North America
+55410,mountain_gorilla Gorilla_gorilla_beringei,gorilla of Kivu highlands
+55411,mountain_heath Phyllodoce_caerulea Bryanthus_taxifolius,small shrub with tiny evergreen leaves and pink or purple flowers; Alpine summits and high ground in Asia and Europe and United States
+55412,mountain_hemlock black_hemlock Tsuga_mertensiana,large evergreen of western United States; wood much harder than Canadian hemlock
+55413,mountain_hollyhock Iliamna_ruvularis Iliamna_acerifolia,perennial of northwestern United States and western Canada resembling a hollyhock and having white or pink flowers
+55414,mountain_lady's_slipper Cypripedium_montanum,leafy plant having a few stems in a clump with 1 white and dull purple flower in each upper leaf axil; Alaska to northern California and Wyoming
+55415,mountain_laurel wood_laurel American_laurel calico_bush Kalmia_latifolia,a North American evergreen shrub having glossy leaves and white or rose-colored flowers
+55416,mountain_lily Lilium_auratum,Japanese lily with golden rays
+55417,mountain_lily Mount_Cook_lily Ranunculus_lyalii,showy white-flowered perennial of New Zealand
+55418,mountain_male_fern Dryopteris_oreades,a fern of the genus Dryopteris
+55419,mountain_maple mountain_alder Acer_spicatum,small shrubby maple of eastern North America; scarlet in autumn
+55420,mountain_mint,any of a number of perennial herbs of the genus Pycnanthemum; eastern North America and California
+55421,mountain_nyala Tragelaphus_buxtoni,shaggy antelope of mountains of Ethiopia
+55422,mountain_paca,rodent of mountains of western South America
+55423,mountain_peak,the summit of a mountain
+55424,mountain_pride Penstemon_newberryi,mat-forming plant with deep pink flowers on short erect leafy stems; rocky places at high elevations from Oregon to California
+55425,mountain_quail mountain_partridge Oreortyx_picta_palmeri,California partridge; slightly larger than the California quail
+55426,mountain_rice silkgrass silk_grass Indian_millet Oryzopsis_hymenoides,valuable forage grass of dry upland areas and plains of western North America to northern Mexico
+55427,mountain_rimu Lepidothamnus_laxifolius Dacridium_laxifolius,low-growing to prostrate shrub with slender trailing branches; New Zealand
+55428,mountain_rose Rosa_pendulina,European alpine rose with crimson flowers
+55429,mountain_sandwort mountain_starwort mountain_daisy Arenaria_groenlandica,boreal or alpine sandwort
+55430,mountain_sheep,any wild sheep inhabiting mountainous regions
+55431,mountain_sickness,nausea and shortness of breath experienced by mountain climbers above ten thousand feet
+55432,mountain_skink Eumeces_callicephalus,frequents oak and pine habitats in rocky mountainous areas of United States southwest and Mexico
+55433,mountain_spleenwort Asplenium_montanum,a spleenwort of eastern North America
+55434,mountain_swamp_gum Eucalyptus_camphora,medium-sized swamp gum of New South Wales and Victoria
+55435,mountain_tent,a lightweight tent with a floor; flaps close with a zipper
+55436,mountain_trail,a trail through mountainous country
+55437,mountain_zebra Equus_zebra_zebra,narrow-striped nearly extinct zebra of southern Africa
+55438,mountaineer mountain_climber,someone who climbs mountains
+55439,mountainside versant,the side or slope of a mountain; "conifer forests cover the eastern versant"
+55440,mountebank charlatan,a flamboyant deceiver; one who attracts customers with tricks or jokes
+55441,mounter,a skilled worker who mounts pictures or jewels etc.
+55442,mounter climber,someone who ascends on foot; "a solitary mounter of the staircase"
+55443,mounting,framework used for support or display
+55444,mourner griever sorrower lamenter,a person who is feeling grief (as grieving over someone who has died)
+55445,mournfulness sorrowfulness ruthfulness,a state of gloomy sorrow
+55446,mourning bereavement,state of sorrow over the death or departure of a loved one
+55447,mourning_cloak mourning_cloak_butterfly Camberwell_beauty Nymphalis_antiopa,of temperate regions; having dark purple wings with yellow borders
+55448,mourning_dove Zenaidura_macroura,wild dove of the United States having a mournful call
+55449,mourning_ring,a ring worn as a memorial to a dead person
+55450,mouse,person who is quiet or timid
+55451,mouse,any of numerous small rodents typically resembling diminutive rats having pointed snouts and small ears on elongated bodies with slender usually hairless tails
+55452,mouse computer_mouse,a hand-operated electronic device that controls the coordinates of a cursor on your computer screen as you move it around on a pad; on the bottom of the device is a ball that rolls on the surface of the pad; "a mouse takes much more room than a trackball"
+55453,mouse-ear_chickweed mouse_eared_chickweed mouse_ear clammy_chickweed chickweed,any of various plants related to the common chickweed
+55454,mouse-ear_hawkweed Pilosella_officinarum Hieracium_pilocella,European hawkweed having soft hairy leaves; sometimes placed in genus Hieracium
+55455,mouse-eared_bat,a carnivorous bat with ears like a mouse
+55456,mouse-tooth_forceps,a type of forceps
+55457,mouse_button,a push button on the mouse
+55458,mouse_nest mouse's_nest,where mice bear and raise their young
+55459,mousepad mouse_mat,a small portable pad that provides traction for the ball of a computer mouse
+55460,mouser,a cat proficient at mousing
+55461,mousetrap,a trap for catching mice
+55462,mousetrap trap_play,(American football) a play in which a defensive player is allowed to cross the line of scrimmage and then blocked off as the runner goes through the place the lineman vacated
+55463,moussaka,casserole of eggplant and ground lamb with onion and tomatoes bound with white sauce and beaten eggs
+55464,mousse,a rich, frothy, creamy dessert made with whipped egg whites and heavy cream
+55465,mousse,a light creamy dish made from fish or meat and set with gelatin
+55466,mousse hair_mousse,toiletry consisting of an aerosol foam used in hair styling
+55467,mousseline_de_sole,a gauze-like fabric of silk or rayon
+55468,mouth,a person conceived as a consumer of food; "he has four mouths to feed"
+55469,mouth,an opening that resembles a mouth (as of a cave or a gorge); "he rode into the mouth of the canyon"; "they built a fire at the mouth of the cave"
+55470,mouth,the point where a stream issues into a larger body of water; "New York is at the mouth of the Hudson"
+55471,mouth,the externally visible part of the oral cavity on the face and the system of organs surrounding the opening; "she wiped lipstick from her mouth"
+55472,mouth,the opening of a jar or bottle; "the jar had a wide mouth"
+55473,mouth oral_cavity oral_fissure rima_oris,the opening through which food is taken in and vocalizations emerge; "he stuffed his mouth with candy"
+55474,mouth_hole,a hole (as in a ski mask) for the mouth
+55475,mouthbreeder,any of various fishes that carry their eggs and their young in their mouths
+55476,mouthful,the quantity that can be held in the mouth
+55477,mouthpart,any part of the mouth of an insect or other arthropod especially one adapted to a specific way of feeding
+55478,mouthpiece,a part that goes over or into the mouth of a person; "the mouthpiece of a respirator"
+55479,mouthpiece,an acoustic device; the part of a telephone into which a person speaks
+55480,mouthpiece,the tube of a pipe or cigarette holder that a smoker holds in the mouth
+55481,mouthpiece embouchure,the aperture of a wind instrument into which the player blows directly
+55482,mouthpiece gumshield,(especially boxing) equipment that protects an athlete's mouth
+55483,mouthpiece mouth,a spokesperson (as a lawyer)
+55484,mouton mutton,meat from a mature domestic sheep
+55485,movability movableness,the quality of being movable; capable of being moved or rearranged
+55486,movable_barrier,a barrier that can be moved to allow passage
+55487,movable_feast moveable_feast,a religious holiday that falls on different dates in different years
+55488,move,(game) a player's turn to take some action permitted by the rules of the game
+55489,move,the act of deciding to do something; "he didn't make a move to help"; "his first move was to hire a lawyer"
+55490,move relocation,the act of changing your residence or place of business; "they say that three moves equal one fire"
+55491,movement,a major self-contained part of a symphony or sonata; "the second movement is slow and melodic"
+55492,movement,the driving and regulating parts of a mechanism (as of a watch or clock); "it was an expensive watch with a diamond movement"
+55493,movement,the act of changing the location of something; "the movement of cargo onto the vessel"
+55494,movement motion,a natural event that involves a change in the position or location of something
+55495,movement social_movement front,a group of people with a common ideology who try together to achieve certain general goals; "he was a charter member of the movement"; "politicians have to respect a mass movement"; "he led the national liberation front"
+55496,mover,workman employed by a moving company; "the movers were very careful with the grand piano"
+55497,mover,someone who moves
+55498,mover public_mover moving_company removal_firm removal_company,a company that moves the possessions of a family or business from one site to another
+55499,movie film picture moving_picture moving-picture_show motion_picture motion-picture_show picture_show pic flick,a form of entertainment that enacts a story by sound and a sequence of images giving the illusion of continuous movement; "they went to a movie every Saturday night"; "the film was shot on location"
+55500,movie_projector cine_projector film_projector,projects successive frames from a reel of film to create moving pictures
+55501,moviegoer motion-picture_fan,someone who goes to see movies
+55502,moviemaking movie_making film_making,the production of movies
+55503,moving-coil_galvanometer,a galvanometer that is operated by the force exerted by an electric current flowing in a movable coil suspended in a magnetic field
+55504,moving_expense,the cost of moving your residence from one location to another
+55505,moving_van,a van used for moving home or office furniture
+55506,mozzarella,mild white Italian cheese
+55507,mrem millirem,a dosage of ionizing radiation equivalent to one thousandth (1/1000) of a rem
+55508,msasa Brachystegia_speciformis,small shrubby African tree having compound leaves and racemes of small fragrant green flowers
+55509,mu,the 12th letter of the Greek alphabet
+55510,much,a great amount or extent; "they did much for humanity"
+55511,muchness,greatness of quantity or measure or extent
+55512,mucic_acid,a solid acid (C6H10O8) found in milk or sugar
+55513,mucilage,a gelatinous substance secreted by plants
+55514,mucin,a nitrogenous substance found in mucous secretions; a lubricant that protects body surfaces
+55515,muckraker mudslinger,one who spreads real or alleged scandal about another (usually for political advantage)
+55516,muckraking,the exposure of scandal (especially about public figures)
+55517,mucocutaneous_leishmaniasis New_World_leishmaniasis American_leishmaniasis leishmaniasis_americana nasopharyngeal_leishmaniasis,a form of leishmaniasis endemic in Mexico and Central American and South America; sores are limited to the skin and mucosa
+55518,mucoid,any of several glycoproteins similar to mucin
+55519,mucopolysaccharide,complex polysaccharides containing an amino group; occur chiefly as components of connective tissue
+55520,mucopolysaccharidosis,any of a group of genetic disorders involving a defect in the metabolism of mucopolysaccharides resulting in greater than normal levels of mucopolysaccharides in tissues
+55521,mucor,any mold of the genus Mucor
+55522,mucous_membrane mucosa,mucus-secreting membrane lining all body cavities or passages that communicate with the exterior
+55523,mucuna,any of several erect or climbing woody plants of the genus Mucuna; widespread in tropics of both hemispheres
+55524,mucus mucous_secretion,protective secretion of the mucous membranes; in the gut it lubricates the passage of food and protects the epithelial cells; in the nose and throat and lungs it can make it difficult for bacteria to penetrate the body through the epithelium
+55525,mud,slanderous remarks or charges
+55526,mud clay,water soaked soil; soft wet earth
+55527,mud_bath,a bath in warm mud (as for treating rheumatism)
+55528,mud_brick,a brick made from baked mud
+55529,mud_dauber,wasp that constructs mud cells on a solid base in which females place eggs laid in paralyzed insect larvae
+55530,mud_flat,a tract of low muddy land near an estuary; covered at high tide and exposed at low tide
+55531,mud_midget bogmat Wolffiella_gladiata,having narrow flat sickle-shaped submerged fronds; North America
+55532,mud_pie,a mass of mud that a child has molded into the shape of pie
+55533,mud_puddle,a puddle of mud; "the children loved a mud puddle"
+55534,mud_puppy Necturus_maculosus,aquatic North American salamander with red feathery external gills
+55535,mud_stain,a stain produced by mud
+55536,mud_turtle,bottom-dwelling freshwater turtle inhabiting muddy rivers of North America and Central America
+55537,mudder,a racehorse that runs well on a muddy racetrack
+55538,mudguard splash_guard splash-guard,a curved piece above the wheel of a bicycle or motorcycle to protect the rider from water or mud thrown up by the wheels
+55539,mudhif,a reed hut in the marshlands of Iraq; rare since the marshes were drained
+55540,mudra,ritual hand movement in Hindu religious dancing
+55541,mudskipper mudspringer,found in tropical coastal regions of Africa and Asia; able to move on land on strong pectoral fins
+55542,mudslide,a landslide of mud
+55543,muesli,mixture of untoasted dry cereals and fruits
+55544,muezzin muazzin muadhdhin,the Muslim official of a mosque who summons the faithful to prayer from a minaret five times a day
+55545,muff,a warm tubular covering for the hands
+55546,muffin gem,a sweet quick bread baked in a cup-shaped pan
+55547,muffin_man,formerly an itinerant peddler of muffins
+55548,muffle,a kiln with an inner chamber for firing things at a low temperature
+55549,muffler,a scarf worn around the neck
+55550,mufti,a jurist who interprets Muslim religious law
+55551,mufti,civilian dress worn by a person who is entitled to wear a military uniform
+55552,mug,with handle and usually cylindrical
+55553,mug mugful,the quantity that can be held in a mug
+55554,mug's_game,a futile or unprofitable endeavor
+55555,mug_file mug_book,a file of mug shots (pictures of criminals that are kept on file by the police)
+55556,mug_shot mugshot,a photograph of someone's face (especially one made for police records)
+55557,muggee,a victim of a mugging; "the law seems to give more protection to the mugger than to the muggee"
+55558,mugger,a robber who takes property by threatening or performing violence on the person who is robbed (usually on the street)
+55559,mugginess,a state of warm humidity
+55560,mugging,assault with intent to rob
+55561,mugwort,any of several weedy composite plants of the genus Artemisia
+55562,mugwump independent fencesitter,a neutral or uncommitted person (especially in politics)
+55563,muishond,southern African weasel
+55564,mujahid,a Muslim engaged in what he considers to be a jihad
+55565,mujahidin mujahedin mujahedeen mujahadeen mujahadin mujahideen mujahadein,a military force of Muslim guerilla warriors engaged in a jihad; "some call the mujahidin international warriors but others just call them terrorists"
+55566,mujtihad,an Islamic scholar who engages in ijtihad, the effort to derive rules of divine law from Muslim sacred texts
+55567,mukataa,an Arabic word for headquarters or administrative center; "Arafat was holed up in the mukataa of his West Bank compound"
+55568,mulatto,an offspring of a black and a white parent
+55569,mulberry,sweet usually dark purple blackberry-like fruit of any of several mulberry trees of the genus Morus
+55570,mulberry mulberry_tree,any of several trees of the genus Morus having edible fruit that resembles the blackberry
+55571,mulch,a protective covering of rotting vegetable matter spread to reduce evaporation and soil erosion
+55572,mule,hybrid offspring of a male donkey and a female horse; usually sterile
+55573,mule scuff,a slipper that has no fitting around the heel
+55574,mule's_ears Wyethia_amplexicaulis,balsamic-resinous herb with clumps of lanceolate leaves and stout leafy stems ending in large deep yellow flowers on long stalks; northwestern United States
+55575,mule_deer burro_deer Odocoileus_hemionus,long-eared deer of western North America with two-pronged antlers
+55576,mule_fat Baccharis_viminea,California shrub with slender leafy shoots that are important browse for mule deer
+55577,muleteer mule_skinner mule_driver skinner,a worker who drives mules
+55578,mull,a term used in Scottish names of promontories; "the Mull of Kintyre"
+55579,mulled_cider,sweet cider heated with spices and citrus fruit
+55580,mulled_wine,wine heated with sugar and spices and often citrus fruit
+55581,mullein flannel_leaf velvet_plant,any of various plants of the genus Verbascum having large usually woolly leaves and terminal spikes of yellow or white or purplish flowers
+55582,mullein_pink rose_campion gardener's_delight dusty_miller Lychnis_coronaria,an old cottage garden plant of southeastern Europe widely cultivated for its attractive white woolly foliage and showy crimson flowers
+55583,muller,a vessel in which wine is mulled
+55584,mullet,bottom dwelling marine warm water fishes with two barbels on the chin
+55585,mullet grey_mullet gray_mullet,highly valued lean flesh of marine or freshwater mullet
+55586,mullet grey_mullet gray_mullet,freshwater or coastal food fishes a spindle-shaped body; found worldwide
+55587,mulligan_stew mulligan Irish_burgoo,Irish version of burgoo
+55588,mulligatawny,a soup of eastern India that is flavored with curry; prepared with a meat or chicken base
+55589,mullion,a nonstructural vertical strip between the casements or panes of a window (or the panels of a screen)
+55590,mulloway jewfish Sciaena_antarctica,large important food fish of Australia; almost indistinguishable from the maigre
+55591,multi-billionaire,a very rich person whose material wealth is valued at many billions of dollars
+55592,multibank_holding_company,a bank holding company owning several banks
+55593,multichannel_recorder,a recorder with two or more channels; makes continuous records of two or more signals simultaneously
+55594,multicollinearity,a case of multiple regression in which the predictor variables are themselves highly correlated
+55595,multiculturalism,the doctrine that several different cultures (rather than one national culture) can coexist peacefully and equitably in a single country
+55596,multidimensional_language,a programming language whose expressions are assembled in more than one dimension
+55597,multiengine_airplane multiengine_plane,a plane with two or more engines
+55598,multiflora multiflora_rose Japanese_rose baby_rose Rosa_multiflora,vigorously growing rose having clusters of numerous small flowers; used for hedges and as grafting stock
+55599,multifocal_lens_implant multifocal_IOL,a type of lens implant that contains several rings with a common center and adjusts for near or far vision; the eye is in focus for near and far vision simultaneously
+55600,multimedia multimedia_system,transmission that combine media of communication (text and graphics and sound etc.)
+55601,multiple,the product of a quantity by an integer; "36 is a multiple of 9"
+55602,multiple_correlation_coefficient,an estimate of the combined influence of two or more variables on the observed (dependent) variable
+55603,multiple_mononeuropathy,pathology of several individual nerve trunks
+55604,multiple_myeloma,myeloma that develops in several places at the same time
+55605,multiple_regression multiple_correlation,a statistical technique that predicts values of one variable on the basis of two or more other variables
+55606,multiple_sclerosis MS disseminated_sclerosis disseminated_multiple_sclerosis,a chronic progressive nervous disorder involving loss of myelin sheath around certain nerve fibers
+55607,multiple_star,a system of three or more stars associated by gravity
+55608,multiple_voting,the act of voting in more than one place by the same person at the same election (illegal in U.S.)
+55609,multiplex,communicates two or more signals over a common channel
+55610,multiplex,a movie theater than has several different auditoriums in the same building
+55611,multiplex_operation,an operation in which two or more activities are interleaved
+55612,multiplexer,a device that can interleave two or more activities
+55613,multiplicand,the number that is multiplied by the multiplier
+55614,multiplication,a multiplicative increase; "repeated copying leads to a multiplication of errors"; "this multiplication of cells is a natural correlate of growth"
+55615,multiplication times,an arithmetic operation that is the inverse of division; the product of two numbers is computed; "the multiplication of four by three gives twelve"; "four times three equals twelve"
+55616,multiplicative_inverse reciprocal,(mathematics) one of a pair of numbers whose product is 1: the reciprocal of 2/3 is 3/2; the multiplicative inverse of 7 is 1/7
+55617,multiplicity,the property of being multiple
+55618,multiplier multiplier_factor,the number by which a multiplicand is multiplied
+55619,multiprocessing parallel_processing,simultaneous processing by two or more processing units
+55620,multiprocessor,a computer that uses two or more processing units under integrated control
+55621,multiprogramming concurrent_execution,the execution of two or more computer programs by a single computer
+55622,multistage,occurring in more than one stage
+55623,multistage_rocket step_rocket,a rocket having two or more rocket engines (each with its own fuel) that are fired in succession and jettisoned when the fuel is exhausted
+55624,multitude masses mass hoi_polloi people the_great_unwashed,the common people generally; "separate the warriors from the mass"; "power to the people"
+55625,multitude throng concourse,a large gathering of people
+55626,multitudinousness,a very large number (especially of people)
+55627,multivariate_analysis,a generic term for any statistical technique used to analyze data from more than one variable
+55628,multiversity,a university system having several separate campuses and colleges and research centers
+55629,multivitamin multivitamin_pill,a pill or tablet containing several vitamins
+55630,mum,secrecy; "mum's the word"
+55631,mumble,a soft indistinct utterance
+55632,mumblety-peg mumble-the-peg,a game in which players throw or flip a jackknife in various ways so that the knife sticks in the ground
+55633,mumbling,indistinct enunciation
+55634,mumbling gumming,ineffectual chewing (as if without teeth)
+55635,mumbo_jumbo,language or ritual causing, or intending to cause, confusion
+55636,mummery flummery,meaningless ceremonies and flattery
+55637,mummichog Fundulus_heteroclitus,silver-and-black killifish of saltwater marshes along the Atlantic coast of the United States
+55638,mummification,a condition resembling that of a mummy; "bureaucratic mummification in red tape"
+55639,mummification,embalmment and drying a dead body and wrapping it as a mummy
+55640,mummy,a body embalmed and dried and wrapped for burial (as in ancient Egypt)
+55641,mumps epidemic_parotitis,an acute contagious viral disease characterized by fever and by swelling of the parotid glands
+55642,mumpsimus,a traditional notion that is obstinately held although it is unreasonable; "he still holds to the old mumpsimus that a woman's place is in the kitchen"
+55643,munch,a large bite; "he tried to talk between munches on the sandwich"
+55644,muncher,a chewer who makes a munching noise
+55645,mung mung_bean green_gram golden_gram moong mash_bean munggo monggo green_soy green_bean,seed of the mung bean plant; used for food
+55646,mung mung_bean mung_bean_plant Vigna_radiata Phaseolus_aureus,erect bushy annual widely cultivated in warm regions of India and Indonesia and United States for forage and especially its edible seeds; chief source of bean sprouts used in Chinese cookery; sometimes placed in genus Phaseolus
+55647,mung_bean mung green_bean green_gram golden_gram moong mash_bean munggo monggo green_soy,seed of the mung bean plant used for food
+55648,municipal_bond,a bond issued by a state or local government
+55649,municipal_government,the government of a municipality
+55650,municipal_note,a municipal debt instrument with a maturity of less than 2 years
+55651,municipality,an urban district having corporate status and powers of self-government
+55652,municipality,people living in a town or city having local self-government
+55653,munificence largess largesse magnanimity openhandedness,liberality in bestowing gifts; extremely liberal and generous of spirit
+55654,muniments,deeds and other documentary evidence of title to land
+55655,munition ordnance ordnance_store,military supplies
+55656,munitions_industry arms_industry,an industry that manufacturers weapons of war
+55657,munj munja Saccharum_bengalense Saccharum_munja,tough Asiatic grass whose culms are used for ropes and baskets
+55658,muntjac barking_deer,small Asian deer with small antlers and a cry like a bark
+55659,muon negative_muon mu-meson,an elementary particle with a negative charge and a half-life of 2 microsecond; decays to electron and neutrino and antineutrino
+55660,mural wall_painting,a painting that is applied to a wall surface
+55661,muralist,a painter of murals
+55662,murder slaying execution,unlawful premeditated killing of a human being by a human being
+55663,murder_charge murder_indictment,an indictment charging someone with murder
+55664,murder_conviction,conviction for murder
+55665,murder_mystery,a narrative about a murder and how the murderer is discovered
+55666,murder_suspect,someone suspected of committing murder
+55667,murderee,a victim who is murdered
+55668,murderer liquidator manslayer,a criminal who commits homicide (who performs the unlawful premeditated killing of another human being)
+55669,murderess,a woman murderer
+55670,murderousness,a bloodthirsty hatred arousing murderous impulses
+55671,murderousness,cruelty evidence by a capability to commit murder
+55672,muriatic_acid,a former name for hydrochloric acid
+55673,murine,a rodent that is a member of the family Muridae
+55674,murine_typhus rat_typhus urban_typhus endemic_typhus,acute infection caused by rickettsia and transmitted by the bite of an infected flea; characterized by fever and chills and muscle aches and a rash
+55675,murmur_vowel murmur,a schwa that is incidental to the pronunciation of a consonant
+55676,murrain,any disease of domestic animals that resembles a plague
+55677,murre,black-and-white diving bird of northern seas
+55678,musca_volitans muscae_volitantes floater spots,spots before the eyes caused by opaque cell fragments in the vitreous humor and lens; "floaters seem to drift through the field of vision"
+55679,muscadine Vitis_rotundifolia,native grape of southeastern United States; origin of many cultivated varieties
+55680,muscadine bullace_grape,dull-purple grape of southern United States
+55681,muscat muscatel muscadel muscadelle,wine from muscat grapes
+55682,muscat muscatel muscat_grape,sweet aromatic grape used for raisins and wine
+55683,muscat muskat,any of several cultivated grapevines that produce sweet white grapes
+55684,muscle,authority or power or force (especially when used in a coercive way); "the senators used their muscle to get the party leader to resign"
+55685,muscle muscular_tissue,animal tissue consisting predominantly of contractile cells
+55686,muscle musculus,one of the contractile organs of the body
+55687,muscle_cell muscle_fiber muscle_fibre,an elongated contractile cell that forms the muscles of the body
+55688,muscle_relaxant,a drug that reduces muscle contractility by blocking the transmission of nerve impulses or by decreasing the excitability of the motor end plate or by other actions
+55689,muscleman muscle,a bully employed as a thug or bodyguard; "the drug lord had his muscleman to protect him"
+55690,muscovite,a colorless or pale brown mica with potassium
+55691,muscovy_duck musk_duck Cairina_moschata,large crested wild duck of Central America and South America; widely domesticated
+55692,muscular_dystrophy dystrophy,any of several hereditary diseases of the muscular system characterized by weakness and wasting of skeletal muscles
+55693,muscular_structure musculature muscle_system,the muscular system of an organism
+55694,muscular_tonus muscle_tone,normal tonicity of the muscles; "exercise improves muscle tone"
+55695,muscularity,the physiological state of having or consisting of muscle
+55696,musculophrenic_artery arteria_musculophrenica,an artery that supplies the abdomen and intercostal muscles
+55697,musculophrenic_vein vena_musculophrenica,veins that drain the upper abdominal wall and the lower intercostal spaces and the abdomen
+55698,musculoskeletal_system,the system of muscles and tendons and ligaments and bones and joints and associated tissues that move the body and maintain its form
+55699,musculus_abductor_digiti_minimi_manus,the abductor muscle of the little finger
+55700,musculus_abductor_digiti_minimi_pedis,the abductor muscles of the little toe
+55701,musculus_abductor_hallucis,the abductor muscle of the great toe
+55702,musculus_abductor_pollicis,the abductor muscle of the thumb
+55703,musculus_adductor_brevis,the short adductor muscle of the thigh
+55704,musculus_adductor_hallucis,the adductor muscle of the great toe
+55705,musculus_adductor_longus,the long adductor muscle of the thigh
+55706,musculus_adductor_magnus great_adductor_muscle,the muscle that adducts and extends the thigh
+55707,musculus_articularis_cubiti,a small branch of the triceps that inserts into the capsule of the elbow joint
+55708,musculus_articularis_genus,the articular muscle of the knee
+55709,musculus_biceps_femoris femoral_biceps,the biceps muscle of the thigh; it flexes the knee and rotates the leg laterally
+55710,musculus_sphincter_ani_externus,an external ring of striated muscle surrounding the anus
+55711,musculus_sphincter_ani_internus,an internal ring of smooth muscle formed by circular fibers of the rectum
+55712,musculus_sphincter_ductus_choledochi,the smooth muscle sphincter of the common bile duct
+55713,musculus_sphincter_ductus_pancreatici,the smooth muscle sphincter of the main pancreatic duct
+55714,muse,the source of an artist's inspiration; "Euterpe was his muse"
+55715,muser muller ponderer ruminator,a reflective thinker characterized by quiet contemplation
+55716,musette shepherd's_pipe,a small bagpipe formerly popular in France
+55717,musette_pipe,a small simple oboe
+55718,museum,a depository for collecting and displaying objects having scientific or historical or artistic value
+55719,mush,a journey by dogsled
+55720,mush cornmeal_mush,cornmeal boiled in water
+55721,musher,a traveler who drives (or travels with) a dog team
+55722,mushiness pulpiness,a mushy pulpy softness
+55723,mushroom,common name for an edible agaric (contrasting with the inedible toadstool)
+55724,mushroom,mushrooms and related fleshy fungi (including toadstools, puffballs, morels, coral fungi, etc.)
+55725,mushroom,any of various fleshy fungi of the subdivision Basidiomycota consisting of a cap at the end of a stem arising from an underground mycelium
+55726,mushroom,fleshy body of any of numerous edible fungi
+55727,mushroom mushroom_cloud mushroom-shaped_cloud,a large cloud of rubble and dust shaped like a mushroom and rising into the sky after an explosion (especially of a nuclear bomb)
+55728,mushroom_anchor,an anchor used for semipermanent moorings; has a bowl-shaped head that will dig in however it falls
+55729,mushroom_coral,flattened disk-shaped stony coral (usually solitary and unattached)
+55730,mushroom_pimple,any of various fungi of the family Hypocreaceae
+55731,mushroom_poisoning,toxic condition caused by eating certain species of mushrooms (especially Amanita species)
+55732,mushroom_sauce,brown sauce and sauteed mushrooms
+55733,mushy_peas,marrowfat peas that have been soaked overnight and then boiled; served with fish and chips
+55734,music,an artistic form of auditory communication incorporating instrumental or vocal tones in a structured and continuous manner
+55735,music,(music) the sounds produced by singers or musical instruments (or reproductions of such sounds)
+55736,music,musical activity (singing or whistling etc.); "his music was his central interest"
+55737,music euphony,any agreeable (pleasing and harmonious) sounds; "he fell asleep to the music of the wind chimes"
+55738,music medicine,punishment for one's actions; "you have to face the music"; "take your medicine"
+55739,music_box musical_box,produces music by means of pins on a revolving cylinder that strike the tuned teeth of a comb-like metal plate
+55740,music_critic,a critic of musical performances
+55741,music_department department_of_music,the academic department responsible for teaching music and music appreciation
+55742,music_genre musical_genre genre musical_style,an expressive style of music
+55743,music_hall vaudeville_theater vaudeville_theatre,a theater in which vaudeville is staged
+55744,music_lesson,a lesson in performing music
+55745,music_of_the_spheres,an inaudible music that Pythagoras thought was produced by the celestial
+55746,music_paper score_paper,paper with lines appropriate for writing music
+55747,music_school,a school specializing in music
+55748,music_school school_of_music,a school for the study of music
+55749,music_stand music_rack,a light stand for holding sheets of printed music
+55750,music_stool piano_stool,a stool for piano players; usually adjustable in height
+55751,music_teacher,someone who teaches music
+55752,musical musical_comedy musical_theater,a play or film whose action and dialogue is interspersed with singing and dancing
+55753,musical_arrangement arrangement,a piece of music that has been adapted for performance by a particular set of voices or instruments
+55754,musical_chairs,a rearrangement that has no practical effect or significance; "the company is looking for stability after years of musical chairs with directors"; "shareholders don't want the company playing musical chairs with their investment"
+55755,musical_chairs going_to_Jerusalem,a child's game in which players march to music around a group of chairs that contains one chair less than the number of players; when the music abruptly stops the players scramble to sit and the player who does not find a chair is eliminated; then a chair is removed and the march resumes until only the winner is seated
+55756,musical_composition opus composition piece piece_of_music,a musical work that has been created; "the composition is written in four movements"
+55757,musical_drama,opera in which the musical and dramatic elements are equally important; the music is appropriate to the action
+55758,musical_instrument instrument,any of various devices or contrivances that can be used to produce musical tones or sounds
+55759,musical_instrument_digital_interface MIDI,a standard protocol for communication between electronic musical instruments and computers
+55760,musical_notation,(music) notation used by musicians
+55761,musical_organization musical_organisation musical_group,an organization of musicians who perform together
+55762,musical_perception,the auditory perception of musical sounds
+55763,musical_performance,the act of performing music
+55764,musical_soiree soiree_musicale,a soiree assembled for the purpose of listening to music
+55765,musical_time,(music) the beat of musical rhythm
+55766,musicality musicalness,the property of sounding like music
+55767,musician,artist who composes or conducts music as a profession
+55768,musician instrumentalist player,someone who plays a musical instrument (as a profession)
+55769,musicianship,artistry in performing music
+55770,musicogenic_epilepsy,reflex epilepsy induced by music
+55771,musicologist,a student of musicology
+55772,musicology,the scholarly and scientific study of music
+55773,musk,an odorous glandular secretion from the male musk deer; used as a perfume fixative
+55774,musk,the scent of a greasy glandular secretion from the male musk deer
+55775,musk_clover muskus_grass white-stemmed_filaree Erodium_moschatum,low annual European herb naturalized in America; similar to alfilaria
+55776,musk_deer Moschus_moschiferus,small heavy-limbed upland deer of central Asia; male secretes valued musk
+55777,musk_kangaroo Hypsiprymnodon_moschatus,small kangaroo of northeastern Australia
+55778,musk_mallow mus_rose Malva_moschata,erect Old World perennial with faintly musk-scented foliage and white or pink flowers; adventive in United States
+55779,musk_ox musk_sheep Ovibos_moschatus,large shaggy-coated bovid mammal of Canada and Greenland; intermediate in size and anatomy between an ox and a sheep
+55780,musk_rose Rosa_moschata,rose native to Mediterranean region having curved or climbing branches and loose clusters of musky-scented flowers
+55781,musk_thistle nodding_thistle Carduus_nutans,Eurasian perennial naturalized in eastern North America having very spiny white cottony foliage and nodding musky crimson flower heads; valuable source of nectar
+55782,musk_turtle stinkpot,small freshwater turtle having a strong musky odor
+55783,muskellunge,flesh of very large North American pike; a game fish
+55784,muskellunge Esox_masquinongy,large (60 to 80 pounds) sport fish of North America
+55785,musket,a muzzle-loading shoulder gun with a long barrel; formerly used by infantrymen
+55786,musket_ball ball,a solid projectile that is shot by a musket; "they had to carry a ramrod as well as powder and ball"
+55787,musketeer,a foot soldier armed with a musket
+55788,musketry,musketeers and their muskets collectively
+55789,musketry,the technique of using small arms (especially in battle)
+55790,muskiness,having the olfactory properties of musk
+55791,muskmelon sweet_melon,the fruit of a muskmelon vine; any of several sweet melons related to cucumbers
+55792,muskrat muskrat_fur,the brown fur of a muskrat
+55793,muskrat musquash Ondatra_zibethica,beaver-like aquatic rodent of North America with dark glossy brown fur
+55794,muskwood Olearia_argophylla,musk-scented shrub or tree of southern and southeastern Australia having creamy-yellow flower heads
+55795,muslin,plain-woven cotton fabric
+55796,musnud,a seat with a cushion that is used as a throne by Indian princes
+55797,musophobia,a morbid fear of mice
+55798,mussel,black marine bivalves usually steamed in wine
+55799,mussel,marine or freshwater bivalve mollusk that lives attached to rocks etc.
+55800,must,a necessary or essential thing; "seat belts are an absolute must"
+55801,must,grape juice before or during fermentation
+55802,mustache moustache,an unshaved growth of hair on the upper lip; "he looked younger after he shaved off his mustache"
+55803,mustache_cup moustache_cup,a drinking cup with a bar inside the rim to keep a man's mustache out of the drink
+55804,mustachio moustachio handle-bars,a large bushy moustache (with hair growing sometimes down the sides of the mouth)
+55805,mustang,small hardy range horse of the western plains descended from horses brought by the Spanish
+55806,mustang_mint Monardella_lanceolata,fragrant California annual herb having lanceolate leaves and clusters of rose-purple flowers
+55807,mustard,any of several cruciferous plants of the genus Brassica
+55808,mustard mustard_greens leaf_mustard Indian_mustard,leaves eaten as cooked greens
+55809,mustard table_mustard,pungent powder or paste prepared from ground mustard seeds
+55810,mustard_gas mustard_agent blistering_agent dichloroethyl_sulfide sulfur_mustard,a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote
+55811,mustard_oil,oil obtained from mustard seeds and used in making soap
+55812,mustard_plaster sinapism,a plaster containing powdered black mustard; applied to the skin as a counterirritant or rubefacient
+55813,mustard_sauce,sauce of prepared mustard thinned with vinegar and vegetable oil with sugar and seasonings
+55814,mustard_seed,black or white seeds ground to make mustard pastes or powders
+55815,musteline_mammal mustelid musteline,fissiped fur-bearing carnivorous mammals
+55816,muster,a gathering of military personnel for duty; "he was thrown in the brig for missing muster"
+55817,muster_call,a call of the names of personnel at a military assembly
+55818,muster_roll,a list of names of officers and men in a military unit or ship's company
+55819,musth,an annual phase of heightened sexual excitement in the males of certain large mammals (especially elephants); is associated with discharge from a gland between the eye and ear; "the frenzied elephant was in musth"
+55820,mustiness must moldiness,the quality of smelling or tasting old or stale or mouldy
+55821,mutability mutableness,the quality of being capable of mutation
+55822,mutagen,any agent (physical or environmental) that can induce a genetic mutation or can increase the rate of mutation
+55823,mutagenesis,an event capable of causing a mutation
+55824,mutant,an animal that has undergone mutation
+55825,mutant mutation variation sport,(biology) an organism that has characteristics resulting from chromosomal alteration
+55826,mutant_gene,a gene that has changed so that the normal transmission and expression of a trait is affected
+55827,mutation,a change or alteration in form or qualities
+55828,mutation genetic_mutation chromosomal_mutation,(genetics) any event that changes genetic structure; any alteration in the inherited nucleic acid sequence of the genotype of an organism
+55829,mutchkin,a Scottish unit of liquid measure equal to 0.9 United States pint
+55830,mute,a device used to soften the tone of a musical instrument
+55831,mute deaf-mute deaf-and-dumb_person,a deaf person who is unable to speak
+55832,mute_swan Cygnus_olor,soundless Eurasian swan; commonly domesticated
+55833,muteness silence,a refusal to speak when expected; "his silence about my contribution was surprising"
+55834,mutilation,an injury that causes disfigurement or that deprives you of a limb or other important body part
+55835,mutilator maimer mangler,a person who mutilates or destroys or disfigures or cripples
+55836,mutineer,someone who is openly rebellious and refuses to obey authorities (especially seamen or soldiers)
+55837,mutiny,open rebellion against constituted authority (especially by seamen or soldiers against their officers)
+55838,mutisia,any of various plants of the genus Mutisia
+55839,mutism muteness,the condition of being unable or unwilling to speak; "her muteness was a consequence of her deafness"
+55840,muton,the smallest unit of DNA where a mutation can occur
+55841,mutter muttering murmur murmuring murmuration mussitation,a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech
+55842,mutterer mumbler murmurer,a person who speaks softly and indistinctly
+55843,mutton_chop,chop cut from a mature sheep
+55844,mutton_snapper muttonfish Lutjanus_analis,similar to and often marketed as `red snapper'
+55845,mutton_tallow,tallow from the body of a mature sheep
+55846,mutual_aid international_logistic_support,arrangements made between nations to assist each other
+55847,mutual_fund,the pooled money that is invested in assets
+55848,mutual_fund mutual_fund_company open-end_fund open-end_investment_company,a regulated investment company with a pool of assets that regularly sells and redeems its shares
+55849,mutual_induction,generation of electromotive forces in each other by two adjacent circuits
+55850,mutual_opposition polarity,a relation between two opposite attributes or tendencies; "he viewed it as a balanced polarity between good and evil"
+55851,mutual_resemblance,symmetrical resemblance
+55852,mutual_savings_bank MSB,a state-chartered savings bank owned by its depositors and managed by a board of trustees
+55853,mutual_understanding mutual_affection,sympathy of each person for the other
+55854,mutuality interdependence interdependency,a reciprocal relation between interdependent entities (objects or individuals or groups)
+55855,mutuality mutualness,a reciprocality of sentiments; "the mutuality of their affection was obvious"
+55856,muzhik moujik mujik muzjik,a Russian peasant (especially prior to 1917)
+55857,muzzle,a leather or wire restraint that fits over an animal's snout (especially a dog's nose and jaws) and prevents it from eating or biting
+55858,muzzle,forward projecting part of the head of certain animals; includes the jaws and nose
+55859,muzzle_loader,an obsolete firearm that was loaded through the muzzle
+55860,muzzle_velocity,the velocity of a projectile as it leaves the muzzle of a gun
+55861,muzzler,someone who muzzles animals
+55862,myalgia myodynia,pain in a muscle or group of muscles
+55863,myasthenia,any muscular weakness
+55864,myasthenia_gravis myasthenia,a chronic progressive disease characterized by chronic fatigue and muscular weakness (especially in the face and neck); caused by a deficiency of acetylcholine at the neuromuscular junctions
+55865,mycelium,the vegetative part of a fungus consisting of a mass of branching threadlike hyphae
+55866,mycobacteria mycobacterium,rod-shaped bacteria some saprophytic or causing diseases
+55867,mycologist,a botanist who specializes in the study of fungi
+55868,mycology,the branch of botany that studies fungi and fungus-caused diseases
+55869,mycomycin,a highly unsaturated antibiotic acid obtained from an actinomycete
+55870,mycophagist mycophage,a person or animal who eats fungi (especially mushrooms)
+55871,mycophagy,the practice of eating fungi (especially mushrooms collected in the wild)
+55872,mycoplasma,any of a group of small parasitic bacteria that lack cell walls and can survive without oxygen; can cause pneumonia and urinary tract infection
+55873,mycotoxin,a toxin produced by a fungus
+55874,mydriasis,reflex pupillary dilation as a muscle pulls the iris outward; occurs in response to a decrease in light or certain drugs
+55875,mydriatic mydriatic_drug,a drug that causes the pupil of the eye to dilate; used to aid eye examinations
+55876,myelatelia,any developmental defect of the spinal cord
+55877,myelencephalon,the posterior part of the hindbrain in developing vertebrates; forms the medulla oblongata in adults
+55878,myelin myeline medulla,a white fatty substance that forms a medullary sheath around the axis cylinder of some nerve fibers
+55879,myelinization myelinisation,the development of a myelin sheath around a nerve fiber
+55880,myelitis,inflammation of the spinal cord
+55881,myeloblast,a precursor of leukocytes that normally occurs only in bone marrow
+55882,myeloblastic_leukemia,a malignant neoplasm of blood-forming tissues; characterized by numerous myeloblasts in the blood stream
+55883,myelocyte,an immature leukocyte normally found in bone marrow
+55884,myelocytic_leukemia granulocytic_leukemia,a malignant neoplasm of blood-forming tissues; marked by proliferation of myelocytes and their presence in the blood
+55885,myelofibrosis,fibrosis of the bone marrow
+55886,myelogram,X-ray film of the spinal cord and spinal nerve roots and subarachnoid space
+55887,myelography,roentgenography of the spinal cord to detect possible lesions (usually after injection of a contrast medium into the subarachnoid space)
+55888,myeloma,a tumor of the bone marrow (usually malignant) composed of cells normally found in bone marrow
+55889,myelomeningocele,a congenital defect of the central nervous system in which a sac containing part of the spinal cord and its meninges protrude through a gap in the vertebral column; frequently accompanied by hydrocephalus and mental retardation
+55890,myenteric_plexus plexus_myentericus,a plexus of unmyelinated fibers and postganglionic autonomic cell bodies in the muscular coat of the esophagus and stomach and intestines
+55891,myiasis,infestation of the body by the larvae of flies (usually through a wound or other opening) or any disease resulting from such infestation
+55892,mylodon,large (bear-sized) extinct edentate mammal of the Pleistocene in South America
+55893,mylodontid,a variety of extinct edentate
+55894,myna mynah mina minah myna_bird mynah_bird,tropical Asian starlings
+55895,myocardial_infarction myocardial_infarct MI,destruction of heart tissue resulting from obstruction of the blood supply to the heart muscle
+55896,myocardial_inflammation myocarditis,inflammation of the myocardium (the muscular tissue of the heart)
+55897,myocardium,the middle muscular layer of the heart wall
+55898,myoclonus,a clonic spasm of a muscle or muscle group
+55899,myoclonus_epilepsy Lafora's_disease,epilepsy characterized by clonus of muscle groups and progressive mental deterioration and genetic origin
+55900,myofibril myofibrilla sarcostyle,one of many contractile filaments that make up a striated muscle fiber
+55901,myoglobin,a hemoprotein that receives oxygen from hemoglobin and stores it in the tissues until needed
+55902,myoglobinuria,the presence of myoglobin in the urine
+55903,myogram,a graphical recording of muscle activity
+55904,myology,the branch of physiology that studies muscles
+55905,myoma,a benign tumor composed of muscle tissue
+55906,myometritis,inflammation of the myometrium
+55907,myometrium,the smooth muscle forming the wall of the uterus
+55908,myonecrosis,localized death of muscle cell fibers
+55909,myopathy,any pathology of the muscles that is not attributable to nerve dysfunction
+55910,myope,a person with myopia; a nearsighted person
+55911,myopia nearsightedness shortsightedness,(ophthalmology) eyesight abnormality resulting from the eye's faulty refractive ability; distant objects appear blurred
+55912,myosarcoma,sarcoma of muscle tissue
+55913,myosin,the commonest protein in muscle; a globulin that combines with actin to form actomyosin
+55914,myositis,inflammation of muscle tissue
+55915,myotomy,surgical incision or division of a muscle
+55916,myotonia,abnormally long muscular contractions; slow relaxation of a muscle after a contraction
+55917,myotonia_congenita Thomsen's_disease,a mild, rare, congenital form of myotonia characterized by muscle stiffness
+55918,myotonic_muscular_dystrophy myotonic_dystrophy myotonia_atrophica Steinert's_disease,a severe form of muscular dystrophy marked by generalized weakness and muscular wasting that affects the face and feet and hands and neck; difficult speech and difficulty with the hands that spreads to the arms and shoulders and legs and hips; the onset can be any time from birth to middle age and the progression is slow; inheritance is autosomal dominant
+55919,myriad,a large indefinite number; "he faced a myriad of details"
+55920,myriagram myg,one ten thousandth of a centner
+55921,myriameter myriametre mym,a metric unit of length equal to 10,000 meters
+55922,myriapod,general term for any terrestrial arthropod having an elongated body composed of many similar segments: e.g. centipedes and millipedes
+55923,myringectomy,surgical removal of the eardrum
+55924,myringoplasty,surgical repair of a perforated eardrum with a tissue graft
+55925,myringotomy,surgical incision into the eardrum (to relieve pressure or release pus from the middle ear)
+55926,myristic_acid tetradecanoic_acid,a saturated fatty acid occurring naturally in animal and vegetable fats
+55927,myrmecophile,an organism such as an insect that habitually shares the nest of a species of ant
+55928,myrmecophyte,plant that affords shelter or food to ants that live in symbiotic relations with it
+55929,myrmidon,a follower who carries out orders without question
+55930,myrrh gum_myrrh sweet_cicely,aromatic resin that is burned as incense and used in perfume
+55931,myrrh_tree Commiphora_myrrha,tree of eastern Africa and Asia yielding myrrh
+55932,myrtaceous_tree,trees and shrubs
+55933,myrtle,any evergreen shrub or tree of the genus Myrtus
+55934,myrtle Vinca_minor,widely cultivated as a groundcover for its dark green shiny leaves and usually blue-violet flowers
+55935,myrtle_beech Nothofagus_cuninghamii,large evergreen tree of Tasmania
+55936,myrtle_oak seaside_scrub_oak Quercus_myrtifolia,small evergreen shrub or tree of southeastern United States; often forms almost impenetrable thickets in sandy coastal areas
+55937,myrtle_warbler myrtle_bird Dendroica_coronata,similar to Audubon's warbler
+55938,mysoandry,hatred for men or boys
+55939,mysophilia,abnormal attraction to filth
+55940,mysophobia,a morbid fear of dirt or contamination
+55941,mystery enigma secret closed_book,something that baffles understanding and cannot be explained; "how it got out is a mystery"; "it remains one of nature's secrets"
+55942,mystery mystery_story whodunit,a story about a crime (usually murder) presented as a novel or play or movie
+55943,mystery_play,a medieval play representing episodes from the life of Christ
+55944,mystic religious_mystic,someone who believes in the existence of realities beyond human comprehension
+55945,mysticism,obscure or irrational thought
+55946,mysticism religious_mysticism,a religion based on mystical communion with an ultimate reality
+55947,mystification,something designed to mystify or bewilder
+55948,mystification obfuscation,the activity of obscuring people's understanding, leaving them baffled or bewildered
+55949,mystique,an aura of heightened value or interest or meaning surrounding a person or thing
+55950,myth,a traditional story accepted as history; serves to explain the world view of a people
+55951,mythical_being,an imaginary being of myth or fable
+55952,mythical_monster mythical_creature,a monster renowned in folklore and myth
+55953,mythologist,an expert on mythology
+55954,mythologization mythologisation,the restatement of a message as a myth
+55955,mythology,myths collectively; the body of stories associated with a culture or institution or person
+55956,mythology,the study of myths
+55957,myxedema myxoedema,hypothyroidism marked by dry skin and swellings around lips and nose as well as mental deterioration
+55958,myxobacteria myxobacterium myxobacter gliding_bacteria slime_bacteria,bacteria that form colonies in self-produced slime; inhabit moist soils or decaying plant matter or animal waste
+55959,myxoma,a benign tumor of connective tissue containing jellylike material
+55960,myxoma_virus,a poxvirus closely related to smallpox virus; causes benign gelatinous tumors in humans
+55961,myxomatosis,a viral disease (usually fatal) of rabbits
+55962,myxosporidian,mostly parasitic in fishes and including various serious pathogens
+55963,myxovirus,any of a group of RNA viruses including those that cause influenza and mumps
+55964,n-type_semiconductor,a semiconductor in which electrical conduction is due chiefly to the movement of electrons
+55965,nabob,a wealthy man (especially one who made his fortune in the Orient)
+55966,naboom cactus_euphorbia Euphorbia_ingens,small tree of dry open parts of southern Africa having erect angled branches suggesting candelabra
+55967,nabothian_cyst nabothian_follicle,a cyst that forms in the nabothian glands of the uterine cervix
+55968,nabothian_gland,one of many small glands of the uterine cervix that secrete mucus
+55969,nabumetone Relafen,a nonsteroidal anti-inflammatory drug (trade name Relafen)
+55970,nacelle,a streamlined enclosure for an aircraft engine
+55971,nacho,a tortilla chip topped with cheese and chili-pepper and broiled
+55972,nacreous_cloud mother-of-pearl_cloud,a luminous iridescent cloud at a high altitude that may be seen when the sun is a few degrees below the horizon
+55973,nadir,the point below the observer that is directly opposite the zenith on the imaginary sphere against which celestial bodies appear to be projected
+55974,nadir low-water_mark,an extreme state of adversity; the lowest point of anything
+55975,nadolol Corgard,a beta-adrenergic blocking agent (trade name Corgard) that is used to treat hypertension and angina
+55976,nafcillin Nafcil,a penicillinase-resistant form of penicillin (trade name Nafcil) used (usually in the form of its sodium salt) to treat infections caused by penicillin-resistant strains of staphylococci
+55977,nagami nagami_kumquat oval_kumquat Fortunella_margarita,shrub bearing oval-fruited kumquats
+55978,nagi Nageia_nagi,medium-sized tree having glossy lanceolate leaves; southern China to Taiwan and southern Japan
+55979,naiad,(Greek mythology) a nymph of lakes and springs and rivers and fountains
+55980,naiad water_nymph,submerged aquatic plant having narrow leaves and small flowers; of fresh or brackish water
+55981,naif,a naive or inexperienced person
+55982,nail,a former unit of length for cloth equal to 1/16 of a yard
+55983,nail,horny plate covering and protecting part of the dorsal surface of the digits
+55984,nail,a thin pointed piece of metal that is hammered into materials as a fastener
+55985,nail-tailed_wallaby nail-tailed_kangaroo,small wallabies with a horny nail on the tip of the tail
+55986,nail_hole,a hole left after a nail is removed
+55987,nail_polish nail_enamel nail_varnish,a cosmetic lacquer that dries quickly and that is applied to the nails to color them or make them shiny
+55988,nail_pulling nail_removal,a form of torture in which the fingernails or toenails are removed
+55989,nailbrush,a brush used to clean a person's fingernails
+55990,nailer,a worker who attaches something by nailing it
+55991,nailfile,a small flat file for shaping the nails
+55992,nailhead,something resembling the head of a nail that is used as an ornamental device
+55993,nailhead,flattened boss on the end of nail opposite to the point
+55994,nainsook,a soft lightweight muslin used especially for babies
+55995,naira,the basic unit of money in Nigeria
+55996,naivete naivety naiveness,lack of sophistication or worldliness
+55997,naked_eye,the eye unaided by any optical instrument that alters the power of vision or alters the apparent size or distance of objects; "it is not safe to look directly at the sun with the naked eye"
+55998,naked_mole_rat,fetal-looking colonial rodent of East Africa; neither mole nor rat; they feed on tubers and have a social structure similar to that of honeybees and termites
+55999,naked_option,a put or call option for which the seller or buyer has no underlying security position
+56000,nakedness nudity nudeness,the state of being without clothing or covering of any kind
+56001,nakedwood,any of several small to medium-sized trees of Florida and West Indies with thin scaly bark and heavy dark heartwood
+56002,nakedwood Eugenia_dicrana,tree of extreme southern Florida and West Indies having thin scaly bark and aromatic fruits and seeds and yielding hard heavy close-grained zebrawood
+56003,nalidixic_acid NegGram,antibacterial agent used especially to treat genitourinary infections
+56004,nalorphine Nalline,a narcotic antagonist (trade name Nalline) that counteracts the effects of narcotics (especially the effects of poisoning by morphine)
+56005,naloxone Narcan,a potent narcotic antagonist (trade name Narcan) especially effective with morphine
+56006,naltrexone,an oral antagonist against the action of opiates
+56007,namby-pamby,an insipid weakling who is foolishly sentimental
+56008,name,a person's reputation; "he wanted to protect his good name"
+56009,name,a language unit by which a person or thing is known; "his name really is George Washington"; "those are two names for the same thing"
+56010,name,by the sanction or authority of; "halt in the name of the law"
+56011,name epithet,a defamatory or abusive word or phrase
+56012,name figure public_figure,a well-known or notable person; "they studied all the great names in the history of France"; "she is an important figure in modern music"
+56013,name gens,family based on male descent; "he had no sons and there was no one to carry on his name"
+56014,name-dropping,the practice of casually mentioning important people in order to impress your listener; "the hard thing about name-dropping is to avoid being too obvious about it"
+56015,name_calling names,verbal abuse; a crude substitute for argument; "sticks and stones may break my bones but names can never hurt me"
+56016,name_day,the feast day of a saint whose name one bears
+56017,name_dropper,someone who pretends that famous people are his/her friends
+56018,name_tag,a tag showing the name of the person who wears it
+56019,nameko viscid_mushroom Pholiota_nameko,one of the most important fungi cultivated in Japan
+56020,nameplate,a plate bearing a name
+56021,namer,a person who gives a name or names; "the owner is usually the namer of a boat"
+56022,namesake,a person with the same name as another
+56023,naming,the verbal act of naming; "the part he failed was the naming of state capitals"
+56024,nan,your grandmother
+56025,nan naan,leavened bread baked in a clay oven in India; usually shaped like a teardrop
+56026,nandrolone Durabolin Kabolin,an androgen (trade names Durabolin or Kabolin) that is used to treat testosterone deficiency or breast cancer or osteoporosis
+56027,nankeen,a durable fabric formerly loomed by hand in China from natural cotton having a yellowish color
+56028,nanny nanny-goat she-goat,female goat
+56029,nanny nursemaid nurse,a woman who is the custodian of children
+56030,nanogram ng,one billionth (1/1,000,000,000) gram
+56031,nanometer nanometre nm millimicron micromillimeter micromillimetre,a metric unit of length equal to one billionth of a meter
+56032,nanomia,small creatures resembling pieces of fuzzy rope; each with a cluster of swimming bells serving as the head and long elastic tentacles for drawing in prey
+56033,nanophthalmos,condition in which both eyes are abnormally small but otherwise normal
+56034,nanosecond,one billionth (10^-9) of a second; one thousandth of a microsecond
+56035,nanotechnology,the branch of engineering that deals with things smaller than 100 nanometers (especially with the manipulation of individual molecules)
+56036,nanovolt,a unit of potential equal to one billionth of a volt
+56037,nap,a soft or fuzzy surface texture
+56038,nap catnap light_sleep short_sleep forty_winks snooze,sleeping for a short period of time (usually not in bed)
+56039,napalm,gasoline jelled with aluminum soaps; highly incendiary liquid used in fire bombs and flamethrowers
+56040,nape scruff nucha,the back side of the neck
+56041,naphazoline Privine Sudafed,vasoconstrictor (trade names Privine and Sudafed) used in nasal sprays to treat symptoms of nasal congestion and in eyedrops to treat eye irritation
+56042,naphtha,any of various volatile flammable liquid hydrocarbon mixtures; used chiefly as solvents
+56043,naphthalene,a white crystalline strong-smelling hydrocarbon made from coal tar or petroleum and used in organic synthesis and as a fumigant in mothballs
+56044,naphthalene_poisoning,toxic condition resulting from inhaling or ingesting naphthalene
+56045,naphthol,either of two phenols derived from naphthalene
+56046,napkin table_napkin serviette,a small piece of table linen that is used to wipe the mouth and to cover the lap in order to protect clothing
+56047,napkin_ring,a circular band used to hold a particular person's napkin
+56048,napoleon,a rectangular piece of pastry with thin flaky layers and filled with custard cream
+56049,naprapath,a therapist who practices naprapathy
+56050,naprapathy,a drugless method of treatment based on the belief that disease symptoms arise from problems with ligaments and connective tissues
+56051,naproxen Naprosyn,a nonsteroidal anti-inflammatory drug (trade name Naprosyn) used in the treatment of arthritis and musculoskeletal inflammation and moderate pain
+56052,naproxen_sodium Aleve Anaprox Aflaxen,a nonsteroidal anti-inflammatory drug (trademarks Aleve and Anaprox and Aflaxen) that fights pain and inflammation
+56053,napu Tragulus_Javanicus,chevrotain somewhat larger than the kanchil; found in India and Malaya
+56054,naranjilla Solanum_quitoense,small perennial shrub cultivated in uplands of South America for its edible bright orange fruits resembling tomatoes or oranges
+56055,narc nark narcotics_agent,a lawman concerned with narcotics violations
+56056,narcissist narcist,someone in love with themselves
+56057,narcissistic_personality,personality marked by self-love and self-absorption; unrealistic views about your own qualities and little regard for others
+56058,narcissus,bulbous plant having erect linear leaves and showy yellow or white flowers either solitary or in clusters
+56059,narco-state,an area that has been taken over and is controlled and corrupted by drug cartels and where law enforcement is effectively nonexistent; "this Mexican town has become a narco-state that ships 100 pounds of cocaine to the United States every day"
+56060,narcolepsy,a sleep disorder characterized by sudden and uncontrollable episodes of deep sleep; "he believes that narcolepsy is attributable to an inability to suppress REM sleep during waking"
+56061,narcoleptic,a person who has narcolepsy
+56062,narcoleptic,a soporific drug that produces an uncontrollable desire to sleep
+56063,narcosis,unconsciousness induced by narcotics or anesthesia
+56064,narcoterrorism,the financing of terrorist activities by participation in the drug trade
+56065,narcotic,a drug that produces numbness or stupor; often taken for pleasure or to reduce pain; extensive use can lead to addiction
+56066,narcotic_antagonist,an antagonist used to counteract the effects of narcotics (especially to counteract the depression of respiration)
+56067,nard spikenard,an aromatic ointment used in antiquity
+56068,nardoo nardo common_nardoo Marsilea_drummondii,Australian clover fern
+56069,naris,any of the openings to the nasal cavities that allow air to flow through the cavities to the pharynx
+56070,nark copper's_nark,an informer or spy working for the police
+56071,narration,(rhetoric) the second section of an oration in which the facts are set forth
+56072,narration recital yarn,the act of giving an account describing incidents or a course of events; "his narration was hesitant"
+56073,narrative narration story tale,a message that tells the particulars of an act or occurrence or course of events; presented in writing or drama or cinema or as a radio or television program; "his narrative was interesting"; "Disney's stories entertain adults as well as children"
+56074,narrator storyteller teller,someone who tells a story
+56075,narrow,a narrow strait connecting two bodies of water
+56076,narrow-leaf_penstemon Penstemon_linarioides,plant having small narrow leaves and blue-violet flowers in long open clusters; Utah and Colorado to New Mexico and Arizona
+56077,narrow-leaved_flame_flower Talinum_augustissimum,similar to Talinum aurantiacum but with narrower leaves and yellow-orange flowers; southwestern United States
+56078,narrow-leaved_water_plantain,a variety of water plantain
+56079,narrow-leaved_white-topped_aster,a variety of white-topped aster
+56080,narrow-mindedness narrowness,an inclination to criticize opposing opinions or shocking behavior
+56081,narrow_gauge,a railroad track (or its width) narrower than the standard 56.5 inches
+56082,narrow_goldenrod Solidago_spathulata,western American goldenrod with long narrow clusters of small yellow flowers
+56083,narrow_margin narrowness slimness,a small margin; "the president was not humbled by his narrow margin of victory"; "the landslide he had in the electoral college obscured the narrowness of a victory based on just 43% of the popular vote"
+56084,narrow_wale,corduroy with narrow ribs
+56085,narrowbody_aircraft narrow-body_aircraft narrow-body,a commercial airliner with a single aisle
+56086,narrowing,a decrease in width
+56087,narrowing,an instance of becoming narrow
+56088,narrowing,the act of making something narrower
+56089,narrowness,a restriction of range or scope; "the problem with achievement tests is the narrowness they impose on students"; "the attraction of the book is precisely its narrowness of focus"; "frustrated by the narrowness of people's horizons"
+56090,narrowness,the property of being narrow; having little width; "the narrowness of the road"
+56091,narthex,portico at the west end of an early Christian basilica or church
+56092,narthex,a vestibule leading to the nave of a church
+56093,narwhal narwal narwhale Monodon_monoceros,small Arctic whale the male having a long spiral ivory tusk
+56094,nasal nasal_bone os_nasale,an elongated rectangular bone that forms the bridge of the nose
+56095,nasal_canthus,the inner corner of the eye
+56096,nasal_cavity,either of the two cavities lying between the floor of the cranium and the roof of the mouth and extending from the face to the pharynx
+56097,nasal_concha,one of several turbinate bones in the nasal cavity
+56098,nasal_consonant nasal,a consonant produced through the nose with the mouth closed
+56099,nasal_decongestant,a decongestant that provides temporary relief of nasal symptoms of the common cold and rhinitis and upper respiratory infections
+56100,nasal_meatus,the passages in the nasal cavity formed by the projections of the nasal conchae
+56101,nasal_septum,a partition of bone and cartilage between the nasal cavities
+56102,nasality,a quality of the voice that is produced by nasal resonators
+56103,nasalization nasalisation,the act of nasalizing; the utterance of sounds modulated by the nasal resonators
+56104,nasion,the craniometric point at the bridge of the nose where the frontal and nasal bones of the skull meet
+56105,nasofrontal_vein vena_nasofrontalis,a vein located in the anterior medial part of the orbit; connects the superior ophthalmic with the angular vein
+56106,nasogastric_feeding,feeding consisting of delivering liquid nutrients through a tube passing through the nose and into the stomach
+56107,nasolacrimal_duct,a duct that carries tears from the lacrimal sac to the nasal cavity
+56108,nasopharynx,cavity forming the upper part of the pharynx
+56109,nasotracheal_tube,a tube inserted into the trachea through the nose and pharynx; used to deliver oxygen
+56110,nastiness,the quality of being highly unpleasant; "I flinched at the nastiness of his wound"
+56111,nasturtium,any tropical American plant of the genus Tropaeolum having pungent juice and long-spurred yellow to red flowers
+56112,nasturtium,flowers and seeds and leaves all used as flavorings
+56113,natal_plum amatungulu Carissa_macrocarpa Carissa_grandiflora,very large closely branched South African shrub having forked bright green spines and shiny leaves
+56114,nation,a federation of tribes (especially Native American tribes); "the Shawnee nation"
+56115,nation land country,the people who live in a nation or country; "a statement that sums up the nation's mood"; "the news was announced to the nation"; "the whole country worshipped him"
+56116,national subject,a person who owes allegiance to that nation; "a monarch has a duty to his subjects"
+56117,national_anthem,a song formally adopted as the anthem for a nation
+56118,national_bank,a commercial bank chartered by the federal government
+56119,national_capital,the capital city of a nation
+56120,national_censorship,censorship under civil authority of communications entering or leaving or crossing the borders of the United States or its territories or possessions
+56121,national_debt,the debt of the national government (as distinguished from the debts of individuals and businesses and political subdivisions)
+56122,national_debt_ceiling,a limit set by Congress beyond which the national debt cannot rise; periodically raised by Congress
+56123,national_flag ensign,an emblem flown as a symbol of nationality
+56124,national_income,the total value of all income in a nation (wages and profits and interest and rents and pension payments) during a given period (usually 1 yr)
+56125,national_insurance,social insurance program in Britain; based on contributions from employers and employees; provides payments to unemployed and sick and retired people as well as medical services
+56126,national_monument,memorial consisting of a structure or natural landmark of historic interest; set aside by national government for preservation and public enjoyment
+56127,national_park,a tract of land declared by the national government to be public property
+56128,national_service,compulsory service in the military during peacetime
+56129,nationalism,the aspiration for national independence felt by people under foreign domination
+56130,nationalism,the doctrine that nations should act independently (rather than collectively) to attain their goals
+56131,nationalism,the doctrine that your national culture and interests are superior to any other
+56132,nationalist,an advocate of national independence of or a strong national government
+56133,nationalist_leader,the leader of a nationalist movement
+56134,nationality,the status of belonging to a particular nation by birth or naturalization
+56135,nationality,people having common origins or traditions and often comprising a nation; "immigrants of the same nationality often seek each other out"; "such images define their sense of nationality"
+56136,nationalization nationalisation,the action of forming or becoming a nation
+56137,nationalization nationalisation,the action of rendering national in character
+56138,nationalization nationalisation communization communisation,changing something from private to state ownership or control
+56139,nationhood,the state of being a nation
+56140,native,a person born in a particular place or country; "he is a native of Brazil"
+56141,native,indigenous plants and animals
+56142,native indigen indigene aborigine aboriginal,an indigenous person who was born in a particular place; "the art of the natives of the northwest coast"; "the Canadian government scrapped plans to tax the grants to aboriginal college students"
+56143,native_beech flindosa flindosy Flindersia_australis,tall Australian timber tree yielding tough hard wood used for staves etc
+56144,native_cat Dasyurus_viverrinus,carnivorous arboreal cat-like marsupials of Australia and Tasmania
+56145,native_cranberry groundberry ground-berry cranberry_heath Astroloma_humifusum Styphelia_humifusum,small prostrate or ascending shrub having scarlet flowers and succulent fruit resembling cranberries; sometimes placed in genus Styphelia
+56146,native_language,the language that a person has spoken from earliest childhood
+56147,native_orange Capparis_mitchellii,small Australian tree bearing edible dark purple fruit
+56148,native_pear woody_pear Xylomelum_pyriforme,tree bearing pear-shaped fruit with a thick woody epicarp
+56149,native_pomegranate Capparis_arborea,small Australian tree bearing edible fruit resembling the pomegranate
+56150,native_speaker,a speaker of a particular language who has spoken that language since earliest childhood; "native speakers of French"
+56151,nativeness,the quality of belonging to or being connected with a certain place or region by virtue of birth or origin
+56152,nativism,the policy of perpetuating native cultures (in opposition to acculturation)
+56153,nativism,(philosophy) the philosophical theory that some ideas are innate
+56154,nativist,a philosopher who subscribes to nativism
+56155,natriuresis,the presence of abnormally large amounts of sodium in the urine
+56156,natrolite,a group of minerals of the zeolite family consisting of a hydrous silicate of sodium and aluminum
+56157,natterjack Bufo_calamita,common brownish-yellow short-legged toad of western Europe; runs rather than hops
+56158,natural,someone regarded as certain to succeed; "he's a natural for the job"
+56159,natural,(craps) a first roll of 7 or 11 that immediately wins the stake
+56160,natural cancel,a notation cancelling a previous sharp or flat
+56161,natural_ability,ability that is inherited
+56162,natural_childbirth,labor and childbirth without medical intervention; no drugs are given to relieve pain or aid the birth process; "natural childbirth is considered the safest for the baby"
+56163,natural_depression depression,a sunken or depressed geological formation
+56164,natural_elevation elevation,a raised or elevated geological formation
+56165,natural_family_planning,any of several methods of family planning that do not involve sterilization or contraceptive devices or drugs; coitus is avoided during the fertile time of a woman's menstrual cycle
+56166,natural_fiber natural_fibre,fiber derived from plants or animals
+56167,natural_gas gas,a fossil fuel in the gaseous state; used for cooking and heating homes
+56168,natural_glass,magma of any composition that cooled very rapidly
+56169,natural_history,the scientific study of plants or animals (more observational than experimental) usually published in popular magazines rather than in academic journals
+56170,natural_immunity innate_immunity,immunity to disease that occurs as part of an individual's natural biologic makeup
+56171,natural_language tongue,a human written or spoken language used by a community; opposed to e.g. a computer language
+56172,natural_language_processing NLP human_language_technology,the branch of information science that deals with natural language information
+56173,natural_language_processor natural_language_processing_application,an application program that deals with natural language text
+56174,natural_logarithm Napierian_logarithm,a logarithm to the base e
+56175,natural_number,the number 1 and any other number obtained by adding 1 to it repeatedly
+56176,natural_object,an object occurring naturally; not made by man
+56177,natural_order,the physical universe considered as an orderly system subject to natural (not human or supernatural) laws
+56178,natural_phenomenon,all phenomena that are not artificial
+56179,natural_process natural_action action activity,a process existing in or produced by nature (rather than by the intent of human beings); "the action of natural forces"; "volcanic activity"
+56180,natural_resin,a plant exudate
+56181,natural_resource natural_resources,resources (actual and potential) supplied by nature
+56182,natural_science,the sciences involved in the study of the physical world and its phenomena
+56183,natural_shape,a shape created by natural forces; not man-made
+56184,natural_theology,a theology that holds that knowledge of God can be acquired by human reason without the aid of divine revelation
+56185,natural_virtue,(scholasticism) one of the four virtues (prudence, justice, fortitude, and temperance) derived from nature
+56186,naturalism,(philosophy) the doctrine that the world can be understood in scientific terms without recourse to spiritual or supernatural explanations
+56187,naturalism realism,an artistic movement in 19th century France; artists and writers strove for detailed realistic and factual description
+56188,naturalist,an advocate of the doctrine that the world can be understood in scientific terms
+56189,naturalist natural_scientist,a biologist knowledgeable about natural history (especially botany and zoology)
+56190,naturalization naturalisation,the quality of being brought into conformity with nature
+56191,naturalization naturalisation,the proceeding whereby a foreigner is granted citizenship
+56192,naturalization naturalisation,the introduction of animals or plants to places where they flourish but are not indigenous
+56193,naturalization naturalisation,changing the pronunciation of a borrowed word to agree with the borrowers' phonology; "the naturalization in English of many Italian words"
+56194,naturalness,the quality of being natural or based on natural principles; "he accepted the naturalness of death"; "the spontaneous naturalness of his manner"
+56195,naturalness,the likeness of a representation to the thing represented; "engineers strove to increase the naturalness of recorded music"
+56196,nature,a causal agent creating and controlling things in the universe; "the laws of nature"; "nature has seen to it that men are stronger than women"
+56197,nature,the natural physical world including plants and animals and landscapes etc.; "they tried to preserve nature as they found it"
+56198,nature,a particular type of thing; "problems of this type are very difficult to solve"; "he's interested in trains and things of that nature"; "matters of a personal nature"
+56199,nature,the essential qualities or characteristics by which something is recognized; "it is the nature of fire to burn"; "the true nature of jealousy"
+56200,nature,the complex of emotional and intellectual attributes that determine a person's characteristic actions and reactions; "it is his nature to help others"
+56201,nature_study,the study of animals and plants in the natural world (usually at an elementary level)
+56202,nature_worship,a system of religion that deifies and worships natural forces and phenomena
+56203,naturopath,a therapist who practices naturopathy
+56204,naturopathy,a method of treating disease using food and exercise and heat to assist the natural healing process
+56205,naught,complete failure; "all my efforts led to naught"
+56206,naughtiness mischievousness badness,an attribute of mischievous children
+56207,naumachy naumachia,a naval spectacle; a mock sea battle put on by the ancient Romans
+56208,nausea,disgust so strong it makes you feel sick
+56209,nausea sickness,the state that precedes vomiting
+56210,nautch nauch nautch_dance,an intricate traditional dance in India performed by professional dancing girls
+56211,nautch_girl,a professional dancing girl in India
+56212,nautical_chain,a nautical unit of length (15 ft)
+56213,nautical_linear_unit,a linear unit of distance used in navigation
+56214,nautical_mile mile mi naut_mi international_nautical_mile air_mile,a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude
+56215,nautical_mile naut_mi mile mi geographical_mile Admiralty_mile,a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile
+56216,nautilus nuclear_submarine nuclear-powered_submarine,a submarine that is propelled by nuclear power
+56217,naval_academy,an academy for training naval officers
+56218,naval_attache,a military attache who is a commissioned or warrant officer in a navy
+56219,naval_battle,a pitched battle between naval fleets
+56220,naval_blockade,the interdiction of a nation's lines of communication at sea by the use of naval power
+56221,naval_brass Admiralty_brass Admiralty_Metal Tobin_bronze,alpha-beta brass containing tin; resistant to sea water; Admiralty Metal is a trademark
+56222,naval_campaign,an operation conducted primarily by naval forces in order to gain or extend or maintain control of the sea
+56223,naval_chart navigational_chart pilot_chart,a chart for a navigator showing the prevailing meteorological and hydrographic and navigational conditions
+56224,naval_commander,naval officer in command of a fleet of warships
+56225,naval_engineering,the branch of engineering that deals with the design and construction and operation of ships
+56226,naval_equipment,equipment for a navy
+56227,naval_gun,naval weaponry consisting of a large gun carried on a warship
+56228,naval_installation shore_station,military installation servicing naval forces
+56229,naval_missile,naval weaponry consisting of a missile carried on a warship
+56230,naval_officer,an officer in the navy
+56231,naval_radar,naval equipment consisting of a shipboard radar
+56232,naval_tactical_data_system,a shipboard system for collecting and displaying tactical data
+56233,naval_unit,a military unit that is part of a navy
+56234,naval_weaponry,weaponry for warships
+56235,nave,the central area of a church
+56236,navel navel_point,the center point or middle of something; "the Incas believed that Cuzco was the navel of the universe"
+56237,navel umbilicus bellybutton belly_button omphalos omphalus,a scar where the umbilical cord was attached; "you were not supposed to show your navel on television"; "they argued whether or not Adam had a navel"; "she had a tattoo just above her bellybutton"
+56238,navel_orange,seedless orange enclosing a small secondary fruit at the apex
+56239,navigability,the quality of being suitable for the passage of a ship or aircraft
+56240,navigation,ship traffic; "the channel will be open to navigation as soon as the ice melts"
+56241,navigation pilotage piloting,the guidance of ships or airplanes from place to place
+56242,navigation_light,light on an airplane that indicates the plane's position and orientation; red light on the left (port) wing tip and green light on the right (starboard) wing tip
+56243,navigational_instrument,an instrument used for navigating
+56244,navigational_system,a system that provides information useful in determining the position and course of a ship or aircraft
+56245,navigator,the member of an aircrew who is responsible for the aircraft's course
+56246,navigator,in earlier times, a person who explored by ship
+56247,navy naval_forces,an organization of military vessels belonging to a country and available for sea warfare
+56248,navy_base,base of operations for a naval fleet
+56249,navy_bean pea_bean white_bean,white-seeded bean; usually dried
+56250,navy_yard naval_shipyard,a military shipyard
+56251,nawab nabob,a governor in India during the Mogul empire
+56252,nay,a negative; "the nays have it"
+56253,naysayer,someone with an aggressively negative attitude
+56254,naysaying,the act of saying no to a request
+56255,nazi,derogatory term for a person who is fanatically dedicated to, or seeks to control, some activity, practice, etc.
+56256,neap_tide neap,a less than average tide occurring at the first and third quarters of the moon
+56257,near-death_experience,the experience of being close to death but surviving
+56258,near_beer,drink that resembles beer but with less than 1/2 percent alcohol
+56259,near_miss,an accidental collision that is narrowly avoided
+56260,near_thing,something that barely avoids failure or disaster
+56261,near_vision,vision for objects 2 feet or closer to the viewer
+56262,nearness closeness,the spatial property resulting from a relatively small distance; "the sudden closeness of the dock sent him into action"
+56263,nearside,the side of a vehicle nearest the kerb
+56264,neat's-foot_oil,a pale yellow oil made from the feet and legs of cattle; used as a dressing for leather
+56265,neatness spruceness,the state of being neat and smart and trim
+56266,nebbish nebbech,(Yiddish) a timid unfortunate simpleton
+56267,nebuchadnezzar,a very large wine bottle holding the equivalent of 20 normal bottles of wine; used especially for display
+56268,nebula,a medicinal liquid preparation intended for use in an atomizer
+56269,nebula,cloudiness of the urine
+56270,nebula,an immense cloud of gas (mainly hydrogen) and dust in interstellar space
+56271,nebula,(pathology) a faint cloudy spot on the cornea
+56272,nebular_hypothesis,(cosmology) the theory that the solar system evolved from a hot gaseous nebula
+56273,nebule,a small cloud
+56274,necessitarian,someone who does not believe the doctrine of free will
+56275,necessity,the condition of being essential or indispensable
+56276,necessity essential requirement requisite necessary,anything indispensable; "food and shelter are necessities of life"; "the essentials of the good life"; "allow farmers to buy their requirements under favorable conditions"; "a place where the requisites of water fuel and fodder can be obtained"
+56277,neck,a narrow elongated projecting strip of land
+56278,neck,a cut of meat from the neck of an animal
+56279,neck,a narrow part of an artifact that resembles a neck in position or form; "the banjo had a long neck"; "the bottle had a wide neck"
+56280,neck cervix,the part of an organism (human or animal) that connects the head to the rest of the body; "he admired her long graceful neck"; "the horse won by a neck"
+56281,neck neck_opening,an opening in a garment for the neck of the wearer; a part of the garment near the wearer's neck
+56282,neck_brace,a brace worn to steady the neck
+56283,neck_exercise,exercise designed to strengthen the neck muscles
+56284,neck_sweetbread throat_sweetbread,edible thymus gland of an animal
+56285,neckband,a band around the collar of a garment
+56286,neckcloth stock,an ornamental white cravat
+56287,necker,a lover who necks
+56288,neckerchief,a kerchief worn around the neck
+56289,necklace,jewelry consisting of a cord or chain (often bearing gems) worn about the neck as an ornament (especially by women)
+56290,necklace_tree,a tree of the genus Ormosia having seeds used as beads
+56291,necklet,decoration worn about the neck (fur piece or tight necklace) as an ornament
+56292,neckline,the line formed by the edge of a garment around the neck
+56293,neckpiece,an article of apparel worn about the neck
+56294,necktie tie,neckwear consisting of a long narrow piece of material worn (mostly by men) under a collar and tied in knot at the front; "he stood in front of the mirror tightening his necktie"; "he wore a vest and tie"
+56295,neckwear,articles of clothing worn about the neck
+56296,necrobiosis cell_death,(physiology) the normal degeneration and death of living cells (as in various epithelial cells)
+56297,necrobiosis_lipoidica necrobiosis_lipoidica_diabeticorum,skin disease marked by thin shiny patches (especially on the legs); often associated with diabetes mellitus
+56298,necrology,a list of people who died recently
+56299,necrolysis,disintegration and dissolution of dead tissue
+56300,necromancer,one who practices divination by conjuring up the dead
+56301,necromancy,conjuring up the dead, especially for prophesying
+56302,necrophagia necrophagy,feeding on corpses or carrion
+56303,necrophilia necrophilism necromania,an irresistible sexual attraction to dead bodies
+56304,necrosis mortification gangrene sphacelus,the localized death of living cells (as from infection or the interruption of blood supply)
+56305,necrotizing_enteritis,enteritis characterized by bloody diarrhea and severe abdominal pain
+56306,necrotizing_enterocolitis NEC,an acute inflammatory disease occurring in the intestines of premature infants; necrosis of intestinal tissue may follow
+56307,nectar,a sweet liquid secretion that is attractive to pollinators
+56308,nectar,fruit juice especially when undiluted
+56309,nectarine,a variety or mutation of the peach that has a smooth skin
+56310,nectarine nectarine_tree Prunus_persica_nectarina,variety or mutation of the peach bearing fruit with smooth skin and (usually) yellow flesh
+56311,nectary honey_gland,a gland (often a protuberance or depression) that secretes nectar
+56312,need demand,a condition requiring relief; "she satisfied his need for affection"; "God has no need of men to accomplish His work"; "there is a demand for jobs"
+56313,need want,anything that is necessary but lacking; "he had sufficient means to meet his simple needs"; "I tried to supply his wants"
+56314,neediness,the quality of needing attention and affection and reassurance to a marked degree; "he recognized her neediness but had no time to respond to it"
+56315,needle,a slender pointer for indicating the reading on the scale of a measuring instrument
+56316,needle,a sharp pointed implement (usually steel)
+56317,needle_biopsy,biopsy of deep tissue that is obtained through a hollow needle
+56318,needle_blight needle_cast leaf_cast,a disease of conifers causing the needles to fall
+56319,needle_spike_rush needle_rush slender_spike_rush hair_grass Eleocharis_acicularis,fine-leaved aquatic spike rush; popular as aerator for aquariums
+56320,needlebush needle-bush needle_bush Hakea_lissosperma,shrub with pungent rigid needle-shaped leaves and white flowers; eastern Australia
+56321,needlefish gar billfish,elongate European surface-dwelling predacious fishes with long toothed jaws; abundant in coastal waters
+56322,needlenose_pliers,small pliers with long thin jaws for fine work
+56323,needlepoint needlepoint_embroidery,embroidery consisting of allover embroidered canvas resembling tapestry
+56324,needlewood needle-wood needle_wood Hakea_leucoptera,large bushy shrub with pungent pointed leaves and creamy white flowers; central and eastern Australia
+56325,needlework needlecraft,a creation created or assembled by needle and thread
+56326,needlework needlecraft,work (such as sewing or embroidery) that is done with a needle
+56327,needleworker,someone who does work (as sewing or embroidery) with a needle
+56328,needy,needy people collectively; "they try to help the needy"
+56329,neem neem_tree nim_tree margosa arishth Azadirachta_indica Melia_Azadirachta,large semi-evergreen tree of the East Indies; trunk exudes a tenacious gum; bitter bark used as a tonic; seeds yield an aromatic oil; sometimes placed in genus Melia
+56330,neem_cake,residue after oil is pressed from neem seeds
+56331,neem_seed,seed of neem trees; source of pesticides and fertilizer and medicinal products
+56332,neencephalon neoencephalon,the part of the brain having the most recent phylogenetic origin; the cerebral cortex and related parts
+56333,nefariousness wickedness vileness ugliness,the quality of being wicked
+56334,nefazodone Serzone,an antidepressant drug (trade name Serzone)
+56335,negation,a negative statement; a statement that is a refusal or denial of some other statement
+56336,negation,the speech act of negating
+56337,negation,(logic) a proposition that is true if and only if another proposition is false
+56338,negative,a reply of denial; "he answered in the negative"
+56339,negative,a piece of photographic film showing an image with light and shade or colors reversed
+56340,negative_charge,having a surplus of electrons; having a lower electric potential
+56341,negative_chemotaxis,movement away from a chemical stimulus
+56342,negative_correlation indirect_correlation,a correlation in which large values of one variable are associated with small values of the other; the correlation coefficient is between 0 and -1
+56343,negative_feedback,feedback in opposite phase with (decreasing) the input
+56344,negative_identification,evidence proving that you are not who you say you are not; evidence establishing that you are not among a group of people already known to the system; recognition by the system leads to rejection; "a system for negative identification can prevent the use of multiple identities by a single person"
+56345,negative_magnetic_pole negative_pole south-seeking_pole,the pole of a magnet that points toward the south when the magnet is suspended freely
+56346,negative_pole,the terminal of a battery that is connected to the negative plate
+56347,negative_reinforcing_stimulus negative_reinforcer,a reinforcing stimulus whose removal serves to decrease the likelihood of the response that produced it
+56348,negative_stimulus,a stimulus with undesirable consequences
+56349,negativist,someone who refuses to do what is asked or does the opposite of what is asked
+56350,negativity negativeness,the character of the negative electric pole
+56351,negativity negativeness,an amount less than zero
+56352,negativity negativeness negativism,characterized by habitual skepticism and a disagreeable tendency to deny or oppose or resist suggestions or commands
+56353,neglect disuse,the state of something that has been unused and neglected; "the house was in a terrible state of neglect"
+56354,neglect_of_duty,(law) breach of a duty
+56355,neglecter,a person who is neglectful and gives little attention or respect to people or responsibilities; "he tried vainly to impress his neglecters"
+56356,negligee neglige peignoir wrapper housecoat,a loose dressing gown for women
+56357,negligence carelessness neglect nonperformance,failure to act with the prudence that a reasonable person would exercise under the same circumstances
+56358,negligence neglect neglectfulness,the trait of neglecting responsibilities and lacking concern
+56359,negotiable_instrument,an unconditional order or promise to pay an amount of money
+56360,negotiation,the activity or business of negotiating an agreement; coming to terms
+56361,negotiation dialogue talks,a discussion intended to produce an agreement; "the buyout negotiation lasted several days"; "they disagreed but kept an open dialogue"; "talks between Israelis and Palestinians"
+56362,negotiator negotiant treater,someone who negotiates (confers with others in order to reach a settlement)
+56363,negotiatress negotiatrix,a woman negotiator
+56364,negro_peach Sarcocephalus_latifolius Sarcocephalus_esculentus,a stout spreading or semi-climbing tropical shrub with round brownish-red warty fruit; Africa
+56365,negro_vine Vincetoxicum_hirsutum Vincetoxicum_negrum,twining vine with hairy foliage and dark purplish-brown flowers
+56366,negus,wine and hot water with sugar and lemon juice and nutmeg
+56367,neigh nicker whicker whinny,the characteristic sounds made by a horse
+56368,neighbor neighbour,a person who lives (or is located) near another
+56369,neighbor neighbour,a nearby object of the same kind; "Fort Worth is a neighbor of Dallas"; "what is the closest neighbor to the Earth?"
+56370,neighborhood,an area within a city or town that has some distinctive features (especially one forming a community); "an ethnic neighborhood"
+56371,neighborhood neighbourhood,people living near one another; "it is a friendly neighborhood"; "my neighborhood voted for Bush"
+56372,neighborliness neighbourliness good-neighborliness good-neighbourliness,a disposition to be friendly and helpful to neighbors
+56373,nekton,the aggregate of actively swimming animals in a body of water ranging from microscopic organisms to whales
+56374,nelfinavir Viracept,a protease inhibitor (trade name Viracept) used in treating HIV usually in combination with other drugs
+56375,nelson,any of several wrestling holds in which an arm is passed under the opponent's arm from behind and the hand exerts pressure on the back of the neck
+56376,nematode nematode_worm roundworm,unsegmented worms with elongated rounded body pointed at both ends; mostly free-living but some are parasitic
+56377,nemophila,any plant of the genus Nemophila
+56378,neo-Darwinism,a modern Darwinian theory that explains new species in terms of genetic mutations
+56379,neoclassicism,revival of a classical style (in art or literature or architecture or music) but from a new perspective or with a new motivation
+56380,neoclassicist,an advocate of neoclassicism
+56381,neocolonialism,control by a powerful country of its former colonies (or other less developed countries) by economic pressures
+56382,neoconservatism,an approach to politics or theology that represents a return to a traditional point of view (in contrast to more liberal or radical schools of thought of the 1960s)
+56383,neoconservative neocon,a conservative who subscribes to neoconservatism
+56384,neodymium Nd atomic_number_60,a yellow trivalent metallic element of the rare earth group; occurs in monazite and bastnasite in association with cerium and lanthanum and praseodymium
+56385,neoexpressionism,an art movement based on expressionism; developed in 1980s in Europe and United States; crudely drawn garish paintings
+56386,neoliberal,a liberal who subscribes to neoliberalism
+56387,neoliberalism,a political orientation originating in the 1960s; blends liberal political views with an emphasis on economic growth
+56388,neolith,a stone tool from the Neolithic Age
+56389,neologism neology coinage,a newly invented word or phrase
+56390,neologism neology coinage,the act of inventing a word or phrase
+56391,neologist,a lexicographer of new words and expressions
+56392,neomycin fradicin Neobiotic,an antibiotic obtained from an actinomycete and used (as a sulphate under the trade name Neobiotic) as an intestinal antiseptic in surgery
+56393,neon Ne atomic_number_10,a colorless odorless gaseous element that give a red glow in a vacuum tube; one of the six inert gasses; occurs in the air in small amounts
+56394,neon_lamp neon_induction_lamp neon_tube,a lamp consisting of a small gas-discharge tube containing neon at low pressure; luminescence is produced by the action of currents at high frequencies that are wrapped a few turns around the tube
+56395,neonatal_death,death of a liveborn infant within the first 28 days of life
+56396,neonatal_intensive_care_unit NICU,an intensive care unit designed with special equipment to care for premature or seriously ill newborn
+56397,neonatal_mortality neonatal_mortality_rate,the death rate during the first 28 days of life
+56398,neonatal_period,the first 28 days of life
+56399,neonate newborn,a baby from birth to four weeks
+56400,neonatology,that branch of pediatric medicine concerned with the newborn; the diagnosis and treatment of neonates
+56401,neopallium neocortex,the cortical part of the neencephalon
+56402,neophobia,a morbid fear of novelty
+56403,neophyte,a plant that is found in an area where it had not been recorded previously
+56404,neoplasia,the pathological process that results in the formation and growth of a tumor
+56405,neoplastic_cell,a cell that is part of tumor
+56406,neoprene,a synthetic rubber that is resistant to oils and aging; used in waterproof products
+56407,neoromanticism,an art movement based on a revival of Romanticism in art and literature
+56408,neostigmine Prostigmin,a cholinergic drug (trade name Prostigmin) used to treat some ophthalmic conditions and to treat myasthenia gravis
+56409,neoteny,an evolutionary trend to be born earlier so that development is cut off at an earlier stage and juvenile characteristics are retained in adults of the species
+56410,neotony,the state resulting when juvenile characteristics are retained by the adults of a species
+56411,nepheline nephelite,a whitish mineral consisting of sodium aluminum silicate or potassium aluminum silicate in crystalline form; used in the manufacture of ceramics and enamels
+56412,nephelinite,an igneous rock consisting of nepheline and pyroxene
+56413,nephew,a son of your brother or sister
+56414,nephology,the branch of meteorology that studies clouds and cloud formation
+56415,nephoscope,a measuring instrument that uses a grid for measuring the altitude, direction, and velocity of movement of clouds
+56416,nephralgia,pain in the kidney (usually felt in the loins)
+56417,nephrectomy,surgical removal of a kidney
+56418,nephrite,an amphibole mineral consisting of calcium magnesium silicate in monoclinic crystalline form; a source of jade that is less valuable than from jadeite; once believed to cure kidney disorders
+56419,nephritis Bright's_disease,an inflammation of the kidney
+56420,nephrocalcinosis,renal lithiasis in which calcium deposits form in the renal parenchyma and result in reduced kidney function and blood in the urine
+56421,nephrogenic_diabetes_insipidus,diabetes insipidus caused by a failure of the kidney to respond to normal levels of vasopressin
+56422,nephrolithiasis renal_lithiasis,the presence of kidney stones (calculi) in the kidney
+56423,nephrology,the branch of medicine concerned with the kidney - its development and anatomy and physiology and disorders
+56424,nephron uriniferous_tubule,any of the small tubules that are the excretory units of the vertebrate kidney
+56425,nephroptosis nephroptosia,prolapse of the kidney
+56426,nephrosclerosis nephroangiosclerosis,kidney disease that is usually associated with hypertension; sclerosis of the renal arterioles reduces blood flow that can lead to kidney failure and heart failure
+56427,nephrotic_syndrome nephrosis,a syndrome characterized by edema and large amounts of protein in the urine and usually increased blood cholesterol; usually associated with glomerulonephritis or with a complication of various systemic diseases
+56428,nephrotomy,incision into a kidney (usually to remove a kidney stone)
+56429,nephrotoxin,any toxin that affects the kidneys
+56430,nephthytis,any plant of the genus Nephthytis
+56431,nepotism,favoritism shown to relatives or close friends by those in power (as by giving them jobs)
+56432,nepotist,a powerful person who shows favoritism to relatives or close friends
+56433,neptunium Np atomic_number_93,a radioactive transuranic metallic element; found in trace amounts in uranium ores; a by-product of the production of plutonium
+56434,nerd,an intelligent but single-minded expert in a particular technical field or profession
+56435,nerita,a neritid gastropod having a short smooth or spirally ridged shell with thick usually toothed outer lip and toothed operculum
+56436,neritic_zone,the ocean waters from the low tide mark to a depth of about 100 fathoms
+56437,neritid neritid_gastropod,operculate seasnail of coastal waters with a short spiral shell
+56438,neritina,ornately marked and brightly colored snails of brackish waters
+56439,neroli_oil,an odoriferous yellow oil found in orange flowers and used in perfumery and as a flavoring
+56440,nerve nervus,any bundle of nerve fibers running to various organs and tissues of the body
+56441,nerve_cell neuron,a cell that is specialized to conduct nerve impulses
+56442,nerve_center nerve_centre,a center that provides information and control; "the nerve center of the diamond industry is in Amsterdam"
+56443,nerve_compression,harmful pressure on a nerve (especially in nerves that pass over rigid prominences); causes nerve damage and muscle weakness
+56444,nerve_ending nerve_end,the terminal structure of an axon that does not end at a synapse
+56445,nerve_entrapment,repeated and long-term nerve compression (usually in nerves near joints that are subject to inflammation or swelling)
+56446,nerve_fiber nerve_fibre,a threadlike extension of a nerve cell
+56447,nerve_gas nerve_agent,a toxic gas that is inhaled or absorbed through the skin and has harmful effects on the nervous and respiratory system
+56448,nerve_growth_factor NGF,a protein that is involved in the growth of peripheral nerve cells
+56449,nerve_impulse nervous_impulse neural_impulse impulse,the electrical discharge that travels along a nerve fiber; "they demonstrated the transmission of impulses from the cortex to the hypothalamus"
+56450,nerve_pathway tract nerve_tract pathway,a bundle of myelinated nerve fibers following a path through the brain
+56451,nerve_plexus,a network of intersecting nerves
+56452,nerves,control of your emotions; "this kind of tension is not good for my nerves"
+56453,nervous_breakdown,a severe or incapacitating emotional disorder
+56454,nervous_disorder neurological_disorder neurological_disease,a disorder of the nervous system
+56455,nervous_exhaustion nervous_prostration,an emotional disorder that leaves you exhausted and unable to work
+56456,nervous_system systema_nervosum,the sensory and control apparatus consisting of a network of nerve cells
+56457,nervous_tissue nerve_tissue,tissue composed of neurons
+56458,nervousness,a sensitive or highly strung temperament
+56459,nervousness nerves,an uneasy psychological state; "he suffered an attack of nerves"
+56460,nest,a structure in which animals lay eggs or give birth to their young
+56461,nest,a cosy or secluded retreat
+56462,nest,a gang of people (criminals or spies or terrorists) assembled in one locality; "a nest of thieves"
+56463,nest,furniture pieces made to fit close together
+56464,nest,a kind of gun emplacement; "a machine-gun nest"; "a nest of snipers"
+56465,nest_egg,device consisting of an artificial egg left in a nest to induce hens to lay their eggs in it
+56466,nester,a bird that has built (or is building) a nest
+56467,nesting_place,a place suitable for nesting
+56468,nestling baby_bird,young bird not yet fledged
+56469,net,a goal lined with netting (as in soccer or hockey)
+56470,net,game equipment consisting of a strip of netting dividing the playing area in tennis or badminton
+56471,net,a trap made of netting to catch fish or birds or insects
+56472,net network mesh meshing meshwork,an open fabric of string or rope or wire woven together at regular intervals
+56473,net_estate,the estate remaining after debts and funeral expenses and administrative expenses have been deducted from the gross estate; the estate then left to be distributed (and subject to federal and state inheritance taxes)
+56474,net_income net net_profit lucre profit profits earnings,the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)
+56475,net_melon netted_melon nutmeg_melon,the fruit of a variety of muskmelon vine; a melon with netlike markings and deep green flesh
+56476,net_melon netted_melon nutmeg_melon Cucumis_melo_reticulatus,a muskmelon vine with fruit that has a thin reticulated rind and sweet green flesh
+56477,net_sales,gross sales reduced by customer discounts, returns, freight out, and allowances
+56478,netball,a team game that resembles basketball; a soccer ball is to be thrown so that it passes through a ring on the top of a post
+56479,netting,creating nets
+56480,nettle,any of numerous plants having stinging hairs that cause skin irritation on contact (especially of the genus Urtica or family Urticaceae)
+56481,nettle-leaved_goosefoot nettleleaf_goosefoot Chenopodium_murale,European annual with coarsely dentate leaves; widespread in United States and southern Canada
+56482,network,a system of intersecting lines or channels; "a railroad network"; "a network of canals"
+56483,network,(broadcasting) a communication system consisting of a group of broadcasting stations that all transmit the same programs; "the networks compete to broadcast important sports events"
+56484,network electronic_network,(electronics) a system of interconnected electronic components or circuits
+56485,network web,an interconnected system of things or people; "he owned a network of shops"; "retirement meant dropping out of a whole network of people who had been part of my life"; "tangled in a web of cloth"
+56486,network_architecture,specification of design principles (including data formats and procedures) for creating a network configuration of data processors
+56487,network_army,a group of like-minded people united by the internet; a new kind of social or political of business group that may exert broad influence on a shared concern; "a network army of software programmers contribute free software to those who want it"
+56488,network_programming,the schedule of programs to be broadcast on a network
+56489,neural_arch vertebral_arch,a structure arising dorsally from a vertebral centrum and enclosing the spinal cord
+56490,neural_network neural_net,computer architecture in which processors are connected in a manner suggestive of connections between neurons; can learn by trial and error
+56491,neural_network neural_net,any network of neurons or nuclei that function together to perform some function in the body
+56492,neural_structure,a structure that is part of the nervous system
+56493,neural_tube,a tube of ectodermal tissue in the embryo from which the brain and spinal cord develop
+56494,neuralgia neuralgy,acute spasmodic pain along the course of one or more nerves
+56495,neurasthenia,nervous breakdown (not in technical use)
+56496,neurasthenic,a person suffering a nervous breakdown
+56497,neurectomy,surgical removal of all or part of a nerve
+56498,neurinoma,tumor (usually benign) of the sheath surrounding a nerve
+56499,neuritis,inflammation of a nerve accompanied by pain and sometimes loss of function
+56500,neuroanatomy,the anatomy of the nervous system
+56501,neurobiologist,a specialist in neurobiology
+56502,neurobiology,the branch of biology that deals with the anatomy and physiology and pathology of the nervous system
+56503,neuroblast,a cell from which a nerve cell develops
+56504,neuroblastoma,malignant tumor containing embryonic nerve cells; usually metastasizes quickly
+56505,neurochemical,any organic substance that occurs in neural activity
+56506,neurodermatitis,dermatitis in which localized areas (especially the forearms or back of the neck or outer part of the ankle) itch persistently; cause is unknown
+56507,neuroepithelioma,malignant tumor of the neuroepithelium
+56508,neuroepithelium,epithelium associated with special sense organs and containing sensory nerve endings
+56509,neuroethics,the study of ethical implications of treatments for neurological diseases
+56510,neurofibroma neurilemoma,tumor of the fibrous covering of a peripheral nerve
+56511,neurofibromatosis von_Recklinghausen's_disease,autosomal dominant disease characterized by numerous neurofibromas and by spots on the skin and often by developmental abnormalities
+56512,neurogenesis,the development of nerve tissues
+56513,neurogenic_bladder,a urinary bladder disorder caused by a lesion in the nervous system
+56514,neuroglia glia,sustentacular tissue that surrounds and supports neurons in the central nervous system; glial and neural cells together compose the tissue of the central nervous system
+56515,neurogliacyte neuroglial_cell glial_cell,a cell of the neuroglia
+56516,neurohormone,a hormone that is released by nerve impulses (e.g., norepinephrine or vasopressin)
+56517,neurolemma neurilemma,thin membranous sheath around a nerve fiber
+56518,neurolinguist,someone trained in neuroscience and linguistics who studies brain processes during language production and reception
+56519,neurolinguistics,the branch of linguistics that studies the relation between language and the structure and function of the nervous system
+56520,neurologist brain_doctor,a medical specialist in the nervous system and the disorders affecting it
+56521,neurology,the branch of medical science that deals with the nervous system
+56522,neurology clinical_neurology,(neurology) the branch of medicine that deals with the nervous system and its disorders
+56523,neuroma,any tumor derived from cells of the nervous system
+56524,neuromarketing neuro-marketing,marketing based on studies of consumers' sensorimotor, cognitive, and affective responses
+56525,neuromuscular_blocking_agent,a substance that interferes with the neural transmission between motor neurons and skeletal muscles
+56526,neuromuscular_junction myoneural_junction,the junction between a nerve fiber and the muscle it supplies
+56527,neuropathy,any pathology of the peripheral nerves
+56528,neurophysiology,the branch of neuroscience that studies the physiology of the nervous system
+56529,neuropil neuropile,the complex network of unmyelinated axones, dendrites, and glial branches that form the bulk of the central nervous system's grey matter and in which nerve cell bodies are embedded
+56530,neuroplasty,plastic surgery of the nerves
+56531,neuropsychiatry,the branch of medicine dealing with mental disorders attributable to diseases of the nervous system
+56532,neuropteron neuropteran neuropterous_insect,insect having biting mouthparts and four large membranous wings with netlike veins
+56533,neurosarcoma malignant_neuroma,a malignant neoplasm of nerve tissue and fibrous tissue and connective tissue
+56534,neuroscience,the scientific study of the nervous system
+56535,neuroscientist,a neurobiologist who specializes in the study of the brain
+56536,neurosis neuroticism psychoneurosis,a mental or personality disturbance not attributable to any known neurological or organic dysfunction
+56537,neurosurgeon brain_surgeon,someone who does surgery on the nervous system (especially the brain)
+56538,neurosurgery,any surgery that involves the nervous system (brain or spinal cord or peripheral nerves)
+56539,neurosyphilis,syphilis of the central nervous system
+56540,neurotic psychoneurotic mental_case,a person suffering from neurosis
+56541,neurotic_depression,a term used for any state of depression that is not psychotic
+56542,neurotoxin neurolysin,any toxin that affects neural tissues
+56543,neurotransmitter,a neurochemical that transmits nerve impulses across a synapse
+56544,neurotropism,an affinity for neural tissues
+56545,neuter,a gender that refers chiefly (but not exclusively) to inanimate objects (neither masculine nor feminine)
+56546,neutering fixing altering,the sterilization of an animal; "they took him to the vet for neutering"
+56547,neutral,one who does not side with any party in a war or dispute
+56548,neutral_spirits ethyl_alcohol,nonflavored alcohol of 95 percent or 190 proof used for blending with straight whiskies and in making gin and liqueurs
+56549,neutralism,a policy of neutrality or nonalignment in international affairs
+56550,neutralist,an advocate of neutrality in international affairs
+56551,neutrality,pH value of 7
+56552,neutrality,nonparticipation in a dispute or war
+56553,neutralization neutralisation,(euphemism) the removal of a threat by killing or destroying it (especially in a covert operation or military operation)
+56554,neutralization neutralisation,action intended to keep a country politically neutral or exclude it from a possible war; "the neutralization of Belgium"
+56555,neutralization neutralisation counteraction,action intended to nullify the effects of some previous action
+56556,neutralization neutralisation neutralization_reaction neutralisation_reaction,a chemical reaction in which an acid and a base interact with the formation of a salt; with strong acids and bases the essential reaction is the combination of hydrogen ions with hydroxyl ions to form water
+56557,neutralization_fire,fire that is delivered in order to render the target ineffective or unusable
+56558,neutrino,an elementary, electrically neutral particle with a very small mass
+56559,neutron,an elementary particle with 0 charge and mass about equal to a proton; enters into the structure of the atomic nucleus
+56560,neutron_bomb,atom bomb that produces lethal neutrons with less blast
+56561,neutron_flux,the rate of flow of neutrons; the number of neutrons passing through a unit area in unit time
+56562,neutron_radiation,radiation of neutrons (as by a neutron bomb)
+56563,neutron_star,a star that has collapsed under its own gravity; it is composed of neutrons
+56564,neutropenia,leukopenia in which the decrease is primarily in number of neutrophils (the chief phagocytic leukocyte)
+56565,neutrophil neutrophile,the chief phagocytic leukocyte; stains with either basic or acid dyes
+56566,neve,the upper part of a glacier (beyond the limit of perpetual snow) where the snow turns to ice
+56567,never-never_land dreamland dreamworld,a pleasing country existing only in dreams or imagination
+56568,nevirapine Viramune,a non-nucleoside reverse transcriptase inhibitor (trade name Viramune) used to treat AIDS and HIV
+56569,nevoid_elephantiasis pachyderma,thickening of the skin (usually unilateral on an extremity) caused by congenital enlargement of lymph vessel and lymph vessel obstruction
+56570,new_caledonian_pine Araucaria_columnaris,very tall evergreen of New Caledonia and the New Hebrides similar to norfolk island pine
+56571,new_criticism,literary criticism based on close analysis of the text
+56572,new_deal,a reapportioning of something
+56573,new_edition,a publication (such as a book) that has been modified or updated and offered again for sale
+56574,new_line,the operation that prepares for the next character to be printed or displayed as the first character on the next line
+56575,new_moon new_phase_of_the_moon,the time at which the Moon appears as a narrow waxing crescent
+56576,new_penny,a coin used in Great Britain since 1971 worth one hundredth of a pound
+56577,new_town,a planned urban community created in a rural or undeveloped area and designed to be self-sufficient with its own housing and education and commerce and recreation
+56578,newcomer,a recent arrival; "he's a newcomer to Boston"
+56579,newcomer fledgling fledgeling starter neophyte freshman newbie entrant,any new participant in some activity
+56580,newel,the central pillar of a circular staircase
+56581,newel_post newel,the post at the top or bottom of a flight of stairs; it supports the handrail
+56582,newlywed honeymooner,someone recently married
+56583,newmarket,a long close-fitting coat worn for riding in the 19th century
+56584,newness,the quality of being new; the opposite of oldness
+56585,news,information reported in a newspaper or news magazine; "the news of my death was greatly exaggerated"
+56586,news,informal information of any kind that is not previously known to someone; "it was news to me"
+56587,news intelligence tidings word,information about recent and important events; "they awaited news of the outcome"
+56588,news_agency press_agency wire_service press_association news_organization news_organisation,an agency to collects news reports for newspapers and distributes it electronically
+56589,news_article news_story newspaper_article,an article reporting news
+56590,news_bulletin newsflash flash newsbreak,a short news announcement concerning some on-going news story
+56591,news_event,a newsworthy event
+56592,news_item,an item in a newspaper
+56593,news_magazine,a magazine devoted to reports of current events; usually published weekly
+56594,news_photography,photography of newsworthy events
+56595,news_program news_show news,a program devoted to current events, often using interviews and commentary; "we watch the 7 o'clock news every night"
+56596,newsagent newsdealer newsvendor newsstand_operator,someone who sells newspapers
+56597,newscast,a broadcast of news or commentary on the news
+56598,newscaster,someone who broadcasts the news
+56599,newsletter newssheet,report or open letter giving informal or confidential news of interest to a special group
+56600,newspaper newsprint,cheap paper made from wood pulp and used for printing newspapers; "they used bales of newspaper every day"
+56601,newspaper paper,a daily or weekly publication on folded sheets; contains news and articles and advertisements; "he read his newspaper at breakfast"
+56602,newspaper paper,the physical object that is the product of a newspaper publisher; "when it began to rain he covered his head with a newspaper"
+56603,newspaper paper newspaper_publisher,a business firm that publishes newspapers; "Murdoch owns many newspapers"
+56604,newspaper_ad newspaper_advertisement,a printed advertisement that is published in a newspaper
+56605,newspaper_columnist,a columnist who writes for newspapers
+56606,newspaper_critic,a critic who writes a column for the newspapers
+56607,newspaper_editor,the editor of a newspaper
+56608,newspapering,journalism practiced for the newspapers
+56609,newspeak,deliberately ambiguous and contradictory language used to mislead and manipulate the public; "the welfare state brought its own newspeak"
+56610,newsreader news_reader,someone who reads out broadcast news bulletin
+56611,newsreel,a short film and commentary about current events
+56612,newsroom,the staff of a newspaper or the news department of a periodical; "every newspaper editor is criticized by the newsroom"
+56613,newsroom,an office in which news is processed by a newspaper or news agency or television or radio station
+56614,newsroom,a reading room (in a library or club) where newspapers and other periodicals can be read
+56615,newsstand,a stall where newspapers and other periodicals are sold
+56616,newswoman,a female newsperson
+56617,newsworthiness news,the quality of being sufficiently interesting to be reported in news bulletins; "the judge conceded the newsworthiness of the trial"; "he is no longer news in the fashion world"
+56618,newt triton,small usually bright-colored semiaquatic salamanders of North America and Europe and northern Asia
+56619,newton N,a unit of force equal to the force that imparts an acceleration of 1 m/sec/sec to a mass of 1 kilogram; equal to 100,000 dynes
+56620,next_friend,(law) a person who acts on behalf of an infant or disabled person
+56621,next_of_kin,the person who is (or persons who are) most closely related to a given person
+56622,nexus,a connected series or group
+56623,ngultrum,the basic unit of money in Bhutan
+56624,ngwee,100 ngwee equal 1 kwacha in Zambia
+56625,niacin nicotinic_acid,a B vitamin essential for the normal function of the nervous system and the gastrointestinal tract
+56626,nib pen_nib,the writing point of a pen
+56627,nibble,gentle biting
+56628,nibbler,a biter who takes dainty repeated bites
+56629,niblick nine_iron,an iron with considerable loft
+56630,nicad nickel-cadmium_accumulator,a rechargeable battery with a nickel cathode and a cadmium anode; often used in emergency systems because of its low discharge rate when not in use
+56631,niceness,the quality of nice
+56632,niche,a position particularly well suited to the person who occupies it; "he found his niche in the academic world"
+56633,niche ecological_niche,(ecology) the status of an organism within its environment and community (affecting its survival as a species)
+56634,nick,(British slang) a prison; "he's in the nick"
+56635,nickel,a United States coin worth one twentieth of a dollar
+56636,nickel Ni atomic_number_28,a hard malleable ductile silvery metallic element that is resistant to corrosion; used in alloys; occurs in pentlandite and smaltite and garnierite and millerite
+56637,nickel nickel_note,five dollars worth of a drug; "a nickel bag of drugs"; "a nickel deck of heroin"
+56638,nickel-base_alloy nickel_alloy,an alloy whose main constituent is nickel
+56639,nickel-iron_battery nickel-iron_accumulator,a storage battery having a nickel oxide cathode and an iron anode with an electrolyte of potassium hydroxide; each cell gives about 1.2 volts
+56640,nickel_bronze,a bronze containing up to 30% nickel
+56641,nickel_silver German_silver,a silver-white alloy containing copper and zinc and nickel
+56642,nickel_steel,an alloy steel containing nickel
+56643,nickname,a descriptive name for a place or thing; "the nickname for the U.S. Constitution is `Old Ironsides'"
+56644,nickname moniker cognomen sobriquet soubriquet byname,a familiar name for a person (often a shortened version of a person's given name); "Joe's mother would not use his nickname and always called him Joseph"; "Henry's nickname was Slim"
+56645,nicotinamide_adenine_dinucleotide NAD,a coenzyme present in most living cells and derived from the B vitamin nicotinic acid; serves as a reductant in various metabolic processes
+56646,nicotinamide_adenine_dinucleotide_phosphate NADP,a coenzyme similar to NAD and present in most living cells but serves as a reductant in different metabolic processes
+56647,nicotine,an alkaloid poison that occurs in tobacco; used in medicine and as an insecticide
+56648,nicotine_addiction,an addiction to nicotine
+56649,nicotine_poisoning,toxic condition caused by the ingestion or inhalation of large amounts of nicotine
+56650,nictitating_membrane third_eyelid,a protective fold of skin in the eyes of reptiles and birds and some mammals
+56651,nidus,a nest in which spiders or insects deposit their eggs
+56652,niece,a daughter of your brother or sister
+56653,nifedipine Procardia,calcium blocker (trade name Procardia); appears to increase the risk of recurrent heart attacks
+56654,niff pong,an unpleasant smell
+56655,nigella,any plant of the genus Nigella
+56656,niggard skinflint scrooge churl,a selfish person who is unwilling to give or spend
+56657,night,a shortening of nightfall; "they worked from morning to night"
+56658,night,a period of ignorance or backwardness or gloom
+56659,night,the period spent sleeping; "I had a restless night"
+56660,night,the time between sunset and midnight; "he watched television every night"
+56661,night,the dark part of the diurnal cycle considered a time unit; "three nights later he collapsed"
+56662,night,darkness; "it vanished into the night"
+56663,night nighttime dark,the time after sunset and before sunrise while it is dark outside
+56664,night-blooming_cereus,any of several night-blooming cacti of the genus Selenicereus
+56665,night-blooming_cereus,any of several cacti of the genus Hylocereus
+56666,night-blooming_cereus,any of several cacti of the genus Cereus
+56667,night-light,light (as a candle or small bulb) that burns in a bedroom at night (as for children or invalids)
+56668,night-line,a fishing line with baited hooks left in the water to catch fish over night
+56669,night-stop,a break in a journey for the night
+56670,night_bell,a doorbell to be used at night
+56671,night_bird,any bird associated with night: owl; nightingale; nighthawk; etc
+56672,night_court,a criminal court (in large cities) that sits at night
+56673,night_game,a game played under artificial illumination at night
+56674,night_heron night_raven,nocturnal or crepuscular herons
+56675,night_jasmine night_jessamine Cestrum_nocturnum,West Indian evergreen shrub having clusters of funnel-shaped yellow-white flowers that are fragrant by night
+56676,night_latch,doorlock operated by a knob on the inside and a key on the outside
+56677,night_letter,a cheaper form of telegram sent for delivery the next day
+56678,night_lizard,small secretive nocturnal lizard of southwestern North America and Cuba; bear live young
+56679,night_owl nighthawk nightbird,a person who likes to be active late at night
+56680,night_porter,a porter on duty during the night
+56681,night_raven,any bird that cries at night
+56682,night_rider nightrider,member of a secret mounted band in United States South after the American Civil War; committed acts of intimidation and revenge
+56683,night_school,a school that holds classes in the evenings for students who cannot attend during the day
+56684,night_shift graveyard_shift,the work shift during the night (as midnight to 8 a.m.)
+56685,night_shift graveyard_shift,workers who work during the night (as midnight to 8 a.m.)
+56686,night_snake Hypsiglena_torquata,nocturnal prowler of western United States and Mexico
+56687,night_soil,human excreta used as fertilizer
+56688,night_terror,an emotional episode (usually in young children) in which the person awakens in terror with feelings of anxiety and fear but is unable to remember any incident that might have provoked those feelings
+56689,night_vision night-sight scotopic_vision twilight_vision,the ability to see in reduced illumination (as in moonlight)
+56690,night_watchman,a watchman who works during the night
+56691,nightcap,an alcoholic drink taken at bedtime; often alcoholic
+56692,nightcap,a cloth cap worn in bed
+56693,nightcap,the final game of a double header
+56694,nightgown gown nightie night-robe nightdress,lingerie consisting of a loose dress designed to be worn in bed by women
+56695,nighthawk bullbat mosquito_hawk,mainly nocturnal North American goatsucker
+56696,nightingale Luscinia_megarhynchos,European songbird noted for its melodious nocturnal song
+56697,nightlife night_life,the entertainment available to people seeking nighttime diversion; "a futile search for intelligent nightlife"
+56698,nightlife night_life,the activity of people seeking nighttime diversion (as at the theater, a nightclub, etc.); "in the summer the nightlife shifts to the dance clubs"
+56699,nightmare,a terrifying or deeply upsetting dream
+56700,nightmare incubus,a situation resembling a terrifying dream
+56701,nightshade,any of numerous shrubs or herbs or vines of the genus Solanum; most are poisonous though many bear edible fruit
+56702,nightshirt,nightclothes worn by men
+56703,nightwear sleepwear nightclothes,garments designed to be worn in bed
+56704,nightwork,work to be done at night
+56705,nihil,(Latin) nil; nothing (as used by a sheriff after an unsuccessful effort to serve a writ); "nihil habet"
+56706,nihil_obstat,the phrase used by the official censor of the Roman Catholic Church to say that a publication has been examined and contains nothing offensive to the church
+56707,nihil_obstat,authoritative approval
+56708,nihilism,complete denial of all established authority and institutions
+56709,nihilism,a revolutionary doctrine that advocates destruction of the social system for its own sake
+56710,nihilist,someone who rejects all theories of morality or religious belief
+56711,nihilistic_delusion nihilism,the delusion that things (or everything, including the self) do not exist; a sense that everything is unreal
+56712,nilgai nylghai nylghau blue_bull Boselaphus_tragocamelus,large Indian antelope; male is blue-grey with white markings; female is brownish with no horns
+56713,nim,game in which matchsticks are arranged in rows and players alternately remove one or more of them; in some versions the object is to take the last remaining matchstick on the table and in other versions the object is to avoid taking the last remaining matchstick on the table
+56714,nimbleness mental_dexterity,intelligence as revealed by quickness and alertness of mind; "nimbleness of wit and imagination"
+56715,nimblewill nimble_Will Muhlenbergia_schreberi,slender branching American grass of some value for grazing in central United States
+56716,nimbus nimbus_cloud rain_cloud,a dark grey cloud bearing rain
+56717,nincompoop poop ninny,a stupid foolish person
+56718,nine 9 IX niner Nina_from_Carolina ennead,the cardinal number that is the sum of eight and one
+56719,nine-spot nine,one of four playing cards in a deck with nine pips on the face
+56720,ninepence,a coin worth nine pennies
+56721,ninepin skittle skittle_pin,a bowling pin of the type used in playing ninepins or (in England) skittles
+56722,ninepin_ball skittle_ball,ball used to knock down ninepins
+56723,ninepins skittles,a bowling game that is played by rolling a bowling ball down a bowling alley at a target of nine wooden pins
+56724,nineteen 19 XIX,the cardinal number that is the sum of eighteen and one
+56725,nineteenth,position 19 in a countable series of things
+56726,nineties 1890s,the decade from 1890 to 1899
+56727,nineties 1990s,the decade from 1990 to 1999
+56728,nineties mid-nineties,the time of life between 90 and 100
+56729,ninetieth,position 90 in a countable series of things
+56730,ninety 90 XC,the cardinal number that is the product of ten and nine
+56731,ninja,a member of the ninja who were trained in martial arts and hired for espionage or sabotage or assassinations; a person skilled in ninjutsu
+56732,ninja,a class of 14th century Japanese who were trained in martial arts and were hired for espionage and assassinations
+56733,ninjutsu ninjitsu,the traditional Japanese method of espionage; involves stealthy movements and the use of camouflage
+56734,ninon,a fine strong sheer silky fabric made of silk or rayon or nylon
+56735,ninth,position nine in a countable series of things; "going into the ninth they were a run ahead"
+56736,niobite columbite,a black mineral that is an ore of niobium and tantalum
+56737,niobium Nb atomic_number_41,a soft grey ductile metallic element used in alloys; occurs in niobite; formerly called columbium
+56738,nip pinch,a small sharp bite or snip
+56739,nip piquance piquancy piquantness tang tanginess zest,a tart spicy quality
+56740,nip shot,a small drink of liquor; "he poured a shot of whiskey"
+56741,nipa,made from sap of the Australasian nipa palm
+56742,nipa_palm Nipa_fruticans,any creeping semiaquatic feather palm of the genus Nipa found in mangrove swamps and tidal estuaries; its sap is used for a liquor; leaves are used for thatch; fruit has edible seeds
+56743,nipple,a flexible cap on a baby's feeding bottle or pacifier
+56744,nipple mammilla mamilla pap teat tit,the small projection of a mammary gland
+56745,nipple_shield,a rubber or plastic shield to protect the nipples of nursing women
+56746,niqaabi,an observant Muslim woman who covers her face and hands when in public or in the presence of any man outside her immediate family
+56747,niqab,a face veil covering the lower part of the face (up to the eyes) worn by observant Muslim women
+56748,nirvana enlightenment,(Hinduism and Buddhism) the beatitude that transcends the cycle of reincarnation; characterized by the extinction of desire and suffering and individual consciousness
+56749,nit,a luminance unit equal to 1 candle per square meter measured perpendicular to the rays from the source
+56750,nit,egg or young of an insect parasitic on mammals especially a sucking louse; often attached to a hair or item of clothing
+56751,nitpicker,someone who makes small and unjustified criticisms
+56752,nitrate,any compound containing the nitrate group (such as a salt or ester of nitric acid)
+56753,nitrate_bacterium nitric_bacterium,any of the nitrobacteria that oxidize nitrites into nitrates
+56754,nitrazepam,a hypnotic and sedative drug of the benzodiazepine type
+56755,nitric_acid aqua_fortis,acid used especially in the production of fertilizers and explosives and rocket fuels
+56756,nitric_bacteria nitrobacteria,soil bacteria that convert nitrites to nitrates
+56757,nitric_oxide,a poisonous red-brown gas (NO)
+56758,nitride,a compound containing nitrogen and a more electropositive element (such as phosphorus or a metal)
+56759,nitrification,the chemical process in which a nitro group is added to an organic compound (or substituted for another group in an organic compound)
+56760,nitrification,the oxidation of ammonium compounds in dead organic material into nitrates and nitrites by soil bacteria (making nitrogen available to plants)
+56761,nitrile nitril cyanide,any of a class of organic compounds containing the cyano radical -CN
+56762,nitrite,the radical -NO2 or any compound containing it (such as a salt or ester of nitrous acid)
+56763,nitrite_bacterium nitrous_bacterium,any of the nitrobacteria that oxidize ammonia into nitrites
+56764,nitro_group,the group -NO3
+56765,nitrobacterium,any of the bacteria in the soil that take part in the nitrogen cycle; they oxidize ammonium compounds into nitrites or oxidize nitrites into nitrates
+56766,nitrobenzene,a poisonous oily water-soluble liquid used as a solvent and in the manufacture of aniline
+56767,nitrocalcite,the mineral form of calcium nitrate
+56768,nitrochloromethane,gaseous form of chloropicrin used as tear gas
+56769,nitrofuran,derivative of furan used to inhibit bacterial growth
+56770,nitrofurantoin Macrodantin,derivative of nitrofuran used as an antibacterial medicine (trade name Macrodantin) effective against a broad range of Gram-positive and Gram-negative bacteria; used to treat infections of the urinary tract
+56771,nitrogen N atomic_number_7,a common nonmetallic element that is normally a colorless odorless tasteless inert diatomic gas; constitutes 78 percent of the atmosphere by volume; a constituent of all living tissues
+56772,nitrogen_balance,the balance between the amount of nitrogen taken in (to the soil or the body) and the amount given off (lost or excreted)
+56773,nitrogen_cycle,the circulation of nitrogen; nitrates from the soil are absorbed by plants which are eaten by animals that die and decay returning the nitrogen back to the soil
+56774,nitrogen_dioxide,a highly poisonous brown gas (NO2)
+56775,nitrogen_fixation,the assimilation of atmospheric nitrogen by soil bacteria and its release for plant use on the death of the bacteria
+56776,nitrogen_mustard,a toxic compound resembling mustard gas in structure; important in cancer treatment
+56777,nitrogen_narcosis,confused or stuporous state caused by high levels of dissolved nitrogen in the blood; "deep-sea divers can suffer nitrogen narcosis from breathing air under high pressure"
+56778,nitrogen_oxide,any of several oxides of nitrogen formed by the action of nitric acid on oxidizable materials; present in car exhausts
+56779,nitrogen_trichloride Agene,a yellow pungent volatile oil (trade name Agene) formerly used for bleaching and aging flour
+56780,nitrogenase,an enzyme of nitrogen-fixing microorganisms that catalyzes the conversion of nitrogen to ammonia
+56781,nitroglycerin nitroglycerine trinitroglycerin glyceryl_trinitrate Nitrospan Nitrostat,a heavy yellow poisonous oily explosive liquid obtained by nitrating glycerol; used in making explosives and medically as a vasodilator (trade names Nitrospan and Nitrostat)
+56782,nitrosobacteria nitrous_bacteria,soil bacteria that oxidize ammonia to nitrites
+56783,nitrous_acid,an unstable inorganic acid known only in solution and as nitrite salts
+56784,nitrous_oxide laughing_gas,inhalation anesthetic used as an anesthetic in dentistry and surgery
+56785,nitta_tree,any of several Old World tropical trees of the genus Parkia having heads of red or yellow flowers followed by pods usually containing edible seeds and pulp
+56786,no,a negative; "his no was loud and clear"
+56787,no-brainer,anything that requires little thought
+56788,no-go_area,an area that is dangerous or impossible to enter or to which entry is forbidden
+56789,no-goal,a nonexistent goal; "he lived without a reason progressing toward no-goal"
+56790,no-hit_game no-hitter,a game in which a pitcher allows the opposing team no hits
+56791,no-par-value_stock no-par_stock,stock with no par value specified in the corporate charter or on the stock certificate
+56792,no-parking_zone,a space where automobiles are not allowed to park
+56793,no-show,a guest who fails to notify a hotel or restaurant when canceling a reservation
+56794,no-show nonattender truant,someone who shirks duty
+56795,no-trump,a version of contract bridge in which no suit is designated as trump for the duration of the hand
+56796,no-win_situation,a situation in which a favorable outcome is impossible; you are bound to lose whatever you do
+56797,no_ball,unlawfully delivered ball in cricket; "the umpire called it a no ball"
+56798,no_fault_insurance no_fault_automobile_insurance,a system of automobile insurance where a party who is injured in an automobile accident recovers damages up to a specific amount against his own insurance company regardless of who was responsible for the accident; "the amount of litigation resulting from minor accidents is reduced by no fault insurance"
+56799,no_man's_land,land that is unowned and uninhabited (and usually undesirable)
+56800,no_man's_land,an unoccupied area between the front lines of opposing armies
+56801,nobelium No atomic_number_102,a radioactive transuranic element synthesized by bombarding curium with carbon ions; 7 isotopes are known
+56802,nobility aristocracy,a privileged class holding hereditary titles
+56803,nobility nobleness magnanimousness grandeur,the quality of elevation of mind and exaltation of character or ideals or conduct
+56804,nobility noblesse,the state of being of noble birth
+56805,noble_cane,sugarcanes representing the highest development of the species; characterized by large juicy stalks with soft rinds and high sugar content
+56806,noble_gas inert_gas argonon,any of the chemically inert gaseous elements of the helium group in the periodic table
+56807,noble_metal,any metal that is resistant to corrosion or oxidation
+56808,noblesse,members of the nobility (especially of the French nobility)
+56809,noblesse_oblige,the obligation of those of high rank to be honorable and generous (often used ironically)
+56810,noctiluca Noctiluca_miliaris,large bioluminescent marine protozoan
+56811,noctuid_moth noctuid owlet_moth,usually dull-colored medium-sized nocturnal moth; the usually smooth-bodied larvae are destructive agricultural pests
+56812,nocturia nycturia,excessive urination at night; especially common in older men
+56813,nocturnal_emission,ejaculation during sleep (usually during a dream)
+56814,nocturne notturno,a pensive lyrical piece of music (especially for the piano)
+56815,nod,a sign of assent or salutation or command
+56816,nod,the act of nodding the head
+56817,nodding_groundsel Senecio_bigelovii,plant with erect leafy stems bearing clusters of rayless yellow flower heads on bent individual stalks; moist regions of southwestern United States
+56818,nodding_onion nodding_wild_onion lady's_leek Allium_cernuum,widely distributed North American wild onion with white to rose flowers
+56819,noddle,an informal British expression for head or mind; "use your noddle"
+56820,node,a connecting point at which several lines come together
+56821,node,(physics) the point of minimum displacement in a periodic system
+56822,node,(astronomy) a point where an orbit crosses a plane
+56823,node,any bulge or swelling of an anatomical structure or part
+56824,node client guest,(computer science) any computer that is hooked up to a computer network
+56825,node knob thickening,any thickened enlargement
+56826,node leaf_node,(botany) the small swelling that is the part of a plant stem from which one or more leaves emerge
+56827,nodule,(mineralogy) a small rounded lump of mineral substance (usually harder than the surrounding rock or sediment)
+56828,nodule,a small node
+56829,nodule tubercle,small rounded wartlike protuberance on a plant
+56830,nog,a wooden block built into a masonry wall so that joinery structure can be nailed to it
+56831,nogging,rough brick masonry used to fill in the gaps in a wooden frame
+56832,noise,sound of any kind (especially unintelligible or dissonant sound); "he enjoyed the street noises"; "they heard indistinct noises of people talking"; "during the firework display that ended the gala the noise reached 98 decibels"
+56833,noise,a loud outcry of protest or complaint; "the announcement of the election recount caused a lot of noise"; "whatever it was he didn't like it and he was going to let them know by making as loud a noise as he could"
+56834,noise,incomprehensibility resulting from irrelevant information or meaningless facts or remarks; "all the noise in his speech concealed the fact that he didn't have anything to say"
+56835,noise dissonance racket,the auditory experience of sound that lacks musical quality; sound that is a disagreeable auditory experience; "modern music is just noise to me"
+56836,noise interference disturbance,electrical or acoustic activity that can disturb communication
+56837,noise_conditions,the condition of being noisy (as in a communication channel)
+56838,noise_level background_level,the amplitude level of the undesired background noise
+56839,noise_pollution sound_pollution,annoying and potentially harmful environmental noise
+56840,noiselessness,the property of making no noise
+56841,noisemaker,a device (such as a clapper or bell or horn) used to make a loud noise at a celebration
+56842,noisiness racketiness,the auditory effect characterized by loud and constant noise
+56843,noli-me-tangere,a cancerous ulcer of soft tissue and bone
+56844,nolle_prosequi nol_pros,an entry in the court record to the effect that the plaintiff or prosecutor will not proceed
+56845,nolo_contendere non_vult,(law) an answer of `no contest' by a defendant who does not admit guilt but that subjects him to conviction
+56846,noma,acute ulceration of the mucous membranes of the mouth or genitals; often seen in undernourished children
+56847,nomad,a member of a people who have no permanent home but move about according to the seasons
+56848,nombril,the center point on a shield
+56849,nomenklatura,the system of patronage in communist countries; controlled by committees in the Communist Party
+56850,nomia genus_Nomia,a genus of bee; some are important pollinators of legumes
+56851,nominal_aphasia anomic_aphasia anomia amnesic_aphasia amnestic_aphasia,inability to name objects or to recognize written or spoken names of objects
+56852,nominal_damages,(law) a trivial sum (usually $1.00) awarded as recognition that a legal injury was sustained (as for technical violations of a contract)
+56853,nominalism,(philosophy) the doctrine that the various objects labeled by the same term have nothing in common but their name
+56854,nominalist,a philosopher who has adopted the doctrine of nominalism
+56855,nominating_speech nominating_address nomination,an address (usually at a political convention) proposing the name of a candidate to run for election; "the nomination was brief and to the point"
+56856,nomination,the condition of having been proposed as a suitable candidate for appointment or election; "there was keen competition for the nomination"; "his nomination was hotly protested"
+56857,nomination,the act of officially naming a candidate; "the Republican nomination for Governor"
+56858,nominative nominative_case subject_case,the category of nouns serving as the grammatical subject of a verb
+56859,nominator,someone who proposes a candidate for appointment or election
+56860,nomogram nomograph,a graphic representation of numerical relations
+56861,non-Catholic,a religious person who is not a Catholic
+56862,non-Euclidean_geometry,(mathematics) geometry based on axioms different from Euclid's; "non-Euclidean geometries discard or replace one or more of the Euclidean axioms"
+56863,non-cash_expense,an expense (such as depreciation) that is not paid for in cash
+56864,non-dedicated_file_server,(computer science) a file server that can be used simultaneously as a workstation
+56865,non-discrimination,fairness in treating people without prejudice
+56866,non-engagement nonparticipation non-involvement,withdrawing from the activities of a group
+56867,non-flowering_plant,a plant that does not bear flowers
+56868,non-market_economy,an economy that is not a market economy
+56869,non-nucleoside_reverse_transcriptase_inhibitor NNRTI,an antiviral drug used against HIV; binds directly to reverse transcriptase and prevents RNA conversion to DNA; often used in combination with other drugs
+56870,non-resistant passive_resister,a reformer who believes in passive resistance
+56871,non-standard_speech,speech that differs from the usual accepted, easily recognizable speech of native adult members of a speech community
+56872,non-volatile_storage nonvolatile_storage,computer storage that is not lost when the power is turned off
+56873,non_prosequitur non_pros,a judgment entered in favor of the defendant when the plaintiff has not continued his action (e.g., has not appeared in court)
+56874,non_sequitur,a reply that has no relevance to what preceded it
+56875,non_sequitur,(logic) a conclusion that does not follow from the premises
+56876,nonabsorbency,the property of not being absorbent
+56877,nonacceptance turndown,the act of refusing an offer; "the turndown was polite but very firm"
+56878,nonaccomplishment nonachievement,an act that does not achieve its intended goal
+56879,nonagenarian,someone whose age is in the nineties
+56880,nonaggression,a policy of not initiating hostilities; "they signed a nonaggression pact"
+56881,nonagon,a nine-sided polygon
+56882,nonalignment nonalinement,people (or countries) who are not aligned with other people (or countries) in a pact or treaty
+56883,nonallele,genes that are not competitors at the same locus
+56884,nonappearance,failure to appear (especially as at court)
+56885,nonattendance,the failure to attend
+56886,nonbeing,the state of not being
+56887,nonbeliever,someone who refuses to believe (as in a divinity)
+56888,nonbiodegradable_pollution,pollution that accumulates in the environment and may appear in the food chain
+56889,noncallable_bond,a bond containing a provision that the holder cannot redeem the security before a specific date (usually at maturity)
+56890,noncandidate,someone who has announced they are not a candidate; especially a politician who has announced that he or she is not a candidate for some political office
+56891,nonce_word hapax_legomenon,a word with a special meaning used for a special occasion
+56892,nonchalance unconcern indifference,the trait of remaining calm and seeming not to care; a casual lack of concern
+56893,noncombatant,a member of the armed forces who does not participate in combat (e.g. a chaplain or surgeon)
+56894,noncommissioned_officer noncom enlisted_officer,a military officer appointed from enlisted personnel
+56895,nonconformism,the practice of nonconformity
+56896,nonconformist recusant,someone who refuses to conform to established standards of conduct
+56897,nonconformity,lack of harmony or correspondence
+56898,nonconformity,unorthodoxy as a consequence of not conforming to expected standards or values
+56899,nonconformity nonconformance,failure to conform to accepted standards of behavior
+56900,nonconformity nonconformism nonconformance,a lack of orthodoxy in thoughts or beliefs
+56901,nondepository_financial_institution,a financial institution that funds their investment activities from the sale of securities or insurance
+56902,nondescript,a person is not easily classified and not very interesting
+56903,nondevelopment,failure of normal development to occur
+56904,nondiscretionary_trust fixed_investment_trust,an investment trust that can buy only those securities listed when the trust was organized
+56905,nondisjunction,meiosis in which there is a failure of paired homologous chromosomes to separate; results in an abnormal number of chromosomes in the daughter cells
+56906,nondriver,a person who is not a driver
+56907,none,a canonical hour that is the ninth hour of the day counting from sunrise
+56908,none,a service in the Roman Catholic Church formerly read or chanted at 3 PM (the ninth hour counting from sunrise) but now somewhat earlier
+56909,nonequivalence,not interchangeable
+56910,nones,the fifth of the seven canonical hours; about 3 p.m.
+56911,nonevent,an anticipated event that turns out to be far less significant than was expected
+56912,nonexistence nonentity,the state of not existing
+56913,nonfat_dry_milk,dehydrated skimmed milk
+56914,nonfeasance,a failure to act when under an obligation to do so; a refusal (without sufficient excuse) to do that which it is your legal duty to do
+56915,nonfiction nonfictional_prose,prose writing that is not fictional
+56916,nongonococcal_urethritis NGU,sexually transmitted urethritis (usually caused by chlamydia)
+56917,nongovernmental_organization NGO,an organization that is not part of the local or state or federal government
+56918,nonintervention noninterference,a foreign policy of staying out of other countries' disputes
+56919,nonlinear_distortion amplitude_distortion,distortion that occurs when the output signal does not have a linear relation to the input signal
+56920,nonlinear_system,a system whose performance cannot be described by equations of the first degree
+56921,nonmember,a person who is not a member
+56922,nonmetal,a chemical element lacking typical metallic properties
+56923,nonobservance,a lack of conformity with law or custom or practice etc.
+56924,nonoccurrence,absence by virtue of not occurring
+56925,nonparametric_statistic distribution_free_statistic,a statistic computed without knowledge of the form or the parameters of the distribution from which observations are drawn
+56926,nonparametric_statistics,the branch of statistics dealing with variables without making assumptions about the form or the parameters of their distribution
+56927,nonpareil,colored beads of sugar used as a topping on e.g. candies and cookies
+56928,nonpareil,a flat disk of chocolate covered with beads of colored sugar
+56929,nonparticipant,a person who does not participate
+56930,nonpartisan nonpartizan,a person who is nonpartisan
+56931,nonpasserine_bird,chiefly arboreal birds especially of the order Coraciiformes
+56932,nonpayment default nonremittal,loss resulting from failure of a debt to be paid
+56933,nonperson unperson,a person regarded as nonexistent and having no rights; a person whose existence is systematically ignored (especially for ideological or political reasons); "the former senator is treated as a nonperson by this administration"; "George Orwell predicted that political dissidents would be treated as unpersons"
+56934,nonprofit_organization nonprofit not-for-profit,an organization chartered for other than profit-making activities
+56935,nonproliferation non-proliferation,the prevention of something increasing or spreading (especially the prevention of an increase in the number of countries possessing nuclear weapons); "they protested that the nonproliferation treaty was just a plot to maintain the hegemony of those who already had nuclear weapons"; "nuclear disarmament and nonproliferation are closely related goals"
+56936,nonreader,a student who is very slow in learning to read
+56937,nonreligious_person,a person who does not manifest devotion to a deity
+56938,nonresident,someone who does not live in a particular place; "described by an admiring nonresident as a green and pleasant land"
+56939,nonresistance,group refusal to resort to violence even in defense against violence
+56940,nonrestrictive_clause descriptive_clause,a subordinate clause that does not limit or restrict the meaning of the noun phrase it modifies
+56941,nonsense bunk nonsensicality meaninglessness hokum,a message that seems to convey no meaning
+56942,nonsingular_matrix,a square matrix whose determinant is not zero
+56943,nonsmoker,a person who does not smoke tobacco
+56944,nonsmoker nonsmoking_car,a passenger car for passengers who want to avoid tobacco smoke
+56945,nonsocial_infection cross_infection,an infection that is acquired at a hospital or other healthcare facility
+56946,nonsolid_color nonsolid_colour dithered_color dithered_colour,a color produced by a pattern of differently colored dots that together simulate the desired color
+56947,nonspecific_urethritis NSU,inflammation of the urethra of unknown cause
+56948,nonstarter,a horse that fails to run in a race for which it has been entered
+56949,nonsteroid nonsteroidal,an organic compound that does no contain a steroid
+56950,nonsteroidal_anti-inflammatory nonsteroidal_anti-inflammatory_drug NSAID,an anti-inflammatory drug that does not contain steroids; "NSAIDs inhibit the activity of both Cox-1 and Cox-2 enzymes"
+56951,nonstop_flight nonstop,a flight made without intermediate stops between source and destination; "how many nonstops are there to Dallas?"
+56952,nonthrombocytopenic_purpura,purpura resulting from a defect in the capillaries caused by bacteria or drugs
+56953,nontricyclic nontricyclic_drug nontricyclic_antidepressant nontricyclic_antidepressant_drug,a class of antidepressant drugs that are not tricyclic drugs and do not act by inhibiting MAO
+56954,nonuniformity,the quality of being diverse and interesting
+56955,nonvascular_organism,organisms without vascular tissue: e.g. algae, lichens, fungi, mosses
+56956,nonverbal_intelligence,intelligence that is manifested in the performance of tasks requiring little or no use of language
+56957,nonworker,a person who does nothing
+56958,noodle,a ribbonlike strip of pasta
+56959,nook,a sheltered and secluded place
+56960,nook_and_cranny nooks_and_crannies,something remote; "he explored every nook and cranny of science"
+56961,noon twelve_noon high_noon midday noonday noontide,the middle of the day
+56962,noose running_noose slip_noose,a loop formed in a cord or rope by means of a slipknot; it binds tighter as the cord or rope is pulled
+56963,nopal,any of several cacti of the genus Nopalea resembling prickly pears
+56964,nopal Opuntia_lindheimeri,cactus having yellow flowers and purple fruits
+56965,noradrenaline norepinephrine,a catecholamine precursor of epinephrine that is secreted by the adrenal medulla and also released at synapses
+56966,norethindrone norethindrone_acetate norethandrolone Norlutin,a synthetic progestational hormone (trade name Norlutin) used in oral contraceptives and to treat endometriosis
+56967,norethynodrel,a progesterone derivative used in oral contraceptives and in the control of menstruation and the treatment of abnormal uterine bleeding
+56968,norfolk_island_pine Araucaria_heterophylla Araucaria_excelsa,evergreen of Australia and Norfolk Island in the South Pacific
+56969,norgestrel,synthetic progestin used in oral contraceptives
+56970,noria,a water wheel with buckets attached to the rim; used to raise water for transfer to an irrigation channel
+56971,norm,a standard or model or pattern regarded as typical; "the current middle-class norm of two children per family"
+56972,normal_curve bell-shaped_curve Gaussian_curve Gaussian_shape,a symmetrical curve representing the normal distribution
+56973,normal_distribution Gaussian_distribution,a theoretical distribution with finite mean and variance
+56974,normal_fault gravity_fault common_fault,an inclined fault in which the hanging wall appears to have slipped downward relative to the footwall
+56975,normal_school teachers_college,a two-year school for training elementary teachers
+56976,normal_tension_glaucoma,glaucoma that results from damage to the optic nerve although the intraocular pressure is normal
+56977,normality,conformity with the norm
+56978,normality N,(of a solution) concentration expressed in gram equivalents of solute per liter
+56979,normality normalcy,being within certain limits that define the range of normal functioning
+56980,normality normalcy,expectedness as a consequence of being usual or regular or common
+56981,normalizer normaliser,a person who normalizes
+56982,normothermia,normal body temperature
+56983,north,the direction corresponding to the northward cardinal compass point
+56984,north,a location in the northern part of a country, region, or city
+56985,north due_north northward N,the cardinal compass point that is at 0 or 360 degrees
+56986,north magnetic_north compass_north,the direction in which a compass needle points
+56987,north-south_direction,in a direction parallel with lines of longitude
+56988,north_by_east NbE,the compass point that is one point east (clockwise) of due north
+56989,north_by_west NbW,the compass point that is one point west of due north
+56990,north_celestial_pole,the celestial pole above the northern hemisphere; near Polaris
+56991,north_island_edelweiss Leucogenes_leontopodium,perennial herb closely resembling European edelweiss; New Zealand
+56992,north_northeast nor'-nor'-east NNE,the compass point that is midway between north and northeast
+56993,north_northwest nor'-nor'-west NNW,the compass point that is midway between north and northwest
+56994,north_side,the side that is on the north
+56995,north_wind northerly norther boreas,a wind that blows from the north
+56996,northeast,the direction corresponding to the northeastward compass point
+56997,northeast,a location in the northeastern part of a country, region, or city
+56998,northeast nor'-east northeastward NE,the compass point midway between north and east; at 45 degrees
+56999,northeast_by_east NEbE,the compass point that is one point east of northeast
+57000,northeast_by_north NEbN,the compass point that is one point north of northeast
+57001,northeaster noreaster,a storm blowing from the northeast
+57002,northern_Europe,the northernmost countries of Europe
+57003,northern_Jacob's_ladder Polemonium_boreale,perennial erect herb with white flowers; circumboreal
+57004,northern_bobwhite Colinus_virginianus,a favorite game bird of eastern and central United States
+57005,northern_bog_lemming Synaptomys_borealis,of wet alpine and subalpine meadows of Canada and Alaska
+57006,northern_cricket_frog Acris_crepitans,a cricket frog of eastern and central United States
+57007,northern_dune_tansy Tanacetum_douglasii,lightly hairy rhizomatous perennial having aromatic feathery leaves and stems bearing open clusters of small buttonlike yellow flowers; sand dunes of Pacific coast of North America
+57008,northern_flying_squirrel Glaucomys_sabrinus,large flying squirrel; chiefly of Canada
+57009,northern_hemisphere,the hemisphere that is to the north of the equator
+57010,northern_holly_fern Polystichum_lonchitis,evergreen European fern widely cultivated
+57011,northern_oriole Icterus_galbula,a kind of New World oriole
+57012,northern_phalarope Lobipes_lobatus,breeds in Arctic regions of Old and New Worlds; large flocks often seen far out at sea
+57013,northern_pike Esox_lucius,voracious piscivorous pike of waters of northern hemisphere
+57014,northern_pocket_gopher Thomomys_talpoides,greyish to brown gopher of western and central United States
+57015,northern_red_oak Quercus_rubra Quercus_borealis,large symmetrical deciduous tree with rounded crown widely distributed in eastern North America; has large leaves with triangular spiny tipped lobes and coarse-grained wood less durable than that of white oaks
+57016,northern_sea_robin Prionotus_carolinus,large searobin; found from Nova Scotia to Florida
+57017,northern_shrike Lanius_borealis,a butcherbird of northern North America
+57018,northern_snakehead,a voracious freshwater fish that is native to northeastern China; can use fin to walk and can survive out of water for three days; a threat to American populations of fish
+57019,northern_whiting Menticirrhus_saxatilis,whiting of the east coast of United States; closely resembles king whiting
+57020,northernness,the property of being to the north
+57021,northland,any region lying in or toward the north
+57022,northwest,the direction corresponding to the northwestward compass point
+57023,northwest,a location in the northwestern part of a country, region, or city
+57024,northwest nor'-west northwestward NW,the compass point midway between north and west; at 315 degrees
+57025,northwest_by_north NWbN,the compass point that is one point north of northwest
+57026,northwest_by_west NWbW,the compass point that is one point west of northwest
+57027,northwest_wind northwester,a wind from the northwest
+57028,nortriptyline Pamelor,a tricyclic antidepressant drug (trade name Pamelor) used along with psychotherapy to treat dysthymic depression; may interact dangerously if taken with other drugs
+57029,nose,a small distance; "my horse lost the race by a nose"
+57030,nose,a symbol of inquisitiveness; "keep your nose out of it"
+57031,nose,the sense of smell (especially in animals); "the hound has a good nose"
+57032,nose,a natural skill; "he has a nose for good deals"
+57033,nose,the front or forward projection of a tool or weapon; "he ducked under the nose of the gun"
+57034,nose,a front that resembles a human nose (especially the front of an aircraft); "the nose of the rocket heated up on reentry"
+57035,nose olfactory_organ,the organ of smell and entrance to the respiratory tract; the prominent part of the face of man or other mammals; "he has a cold in the nose"
+57036,nose_cone ogive,front consisting of the conical head of a missile or rocket that protects the payload from heat during its passage through the atmosphere
+57037,nose_flute,a flute that is played by blowing through the nostrils (used in some Asian countries)
+57038,nose_job rhinoplasty,cosmetic surgery to improve the appearance of your nose
+57039,nose_ring,a ring worn on the nose as an ornament or on the nose of an animal to control it
+57040,nosebag feedbag,a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head
+57041,noseband nosepiece,a strap that is the part of a bridle that goes over the animal's nose
+57042,nosebleed epistaxis,bleeding from the nose
+57043,nosedive,a sudden sharp drop or rapid decline; "the stock took a nosedive"
+57044,nosepiece,armor plate that protects the nose
+57045,nosewheel,a wheel located under the nose of an airplane that is part of the plane's landing gear
+57046,nosh,(Yiddish) a snack or light meal
+57047,nosh-up,a large satisfying meal
+57048,nosher snacker,someone who eats lightly or eats snacks between meals
+57049,nosiness prying snoopiness,offensive inquisitiveness
+57050,nosology diagnostics,the branch of medical science dealing with the classification of disease
+57051,nostalgia,longing for something past
+57052,nostoc,found in moist places as rounded jellylike colonies
+57053,nostril anterior_naris,either one of the two external openings to the nasal cavity in the nose
+57054,nostrum,patent medicine whose efficacy is questionable
+57055,nota_bene NB N.B.,a Latin phrase (or its abbreviation) used to indicate that special attention should be paid to something; "the margins of his book were generously supplied with pencilled NBs"
+57056,notary notary_public,someone legally empowered to witness signatures and certify a document's validity and to take depositions
+57057,notation,the activity of representing something by a special system of marks or characters
+57058,notation notational_system,a technical system of symbols used to represent special things
+57059,notch,a V-shaped indentation; "mandibular notch"
+57060,notch,a V-shaped or U-shaped indentation carved or scratched into a surface; "there were four notches in the handle of his revolver"
+57061,notch nick snick,a small cut
+57062,note,a tone of voice that shows what the speaker is feeling; "there was a note of uncertainty in his voice"
+57063,note,a brief written record; "he made a note of the appointment"
+57064,note,a characteristic emotional quality; "it ended on a sour note"; "there was a note of gaiety in her manner"; "he detected a note of sarcasm"
+57065,note annotation notation,a comment or instruction (usually added); "his notes were appended at the end of the article"; "he added a short notation to the address on the envelope"
+57066,note musical_note tone,a notation representing the pitch and duration of a musical sound; "the singer held the note too long"
+57067,note promissory_note note_of_hand,a promise to pay a specified amount on demand or at a certain time; "I had to co-sign his note at the bank"
+57068,note short_letter line billet,a short personal letter; "drop me a line when you get there"
+57069,note_payable,a note promising to pay a certain amount of money at a certain time
+57070,note_receivable,your right in a promissory note in which the maker promises to pay a certain amount of money at a certain time
+57071,notebook,a book with blank pages for recording notes or memoranda
+57072,notebook notebook_computer,a small compact portable computer
+57073,notebook_entry,an entry in a notebook
+57074,notepad,a pad of paper for keeping notes
+57075,notepaper,writing paper intended for writing short notes or letters
+57076,nothing nil nix nada null aught cipher cypher goose_egg naught zero zilch zip zippo,a quantity of no importance; "it looked like nothing I had ever seen before"; "reduced to nil all the work we had done"; "we racked up a pathetic goose egg"; "it was all for naught"; "I didn't hear zilch about it"
+57077,nothingness void nullity nihility,the state of nonexistence
+57078,nothings,inconsequential conversation; "they traded a few nothings as they parted"
+57079,nothosaur,extinct marine reptile with longer more slender limbs than plesiosaurs and less completely modified for swimming
+57080,notice,advance notification (usually written) of the intention to withdraw from an arrangement of contract; "we received a notice to vacate the premises"; "he gave notice two months before he moved"
+57081,notice,an announcement containing information about an event; "you didn't give me enough notice"; "an obituary notice"; "a notice of sale"
+57082,notice,a short critical review; "the play received good notices"
+57083,notice,polite or favorable attention; "his hard work soon attracted the teacher's notice"
+57084,notice observation observance,the act of noticing or paying attention; "he escaped the notice of the police"
+57085,noticer,someone who takes notice; "a careful noticer of details"
+57086,noticer,someone who gives formal notice
+57087,notification notice,a request for payment; "the notification stated the grace period and the penalties for defaulting"
+57088,notion,a general inclusive concept
+57089,notion,(usually plural) small personal articles or clothing or sewing items; "buttons and needles are notions"
+57090,notion whim whimsy whimsey,an odd or fanciful or capricious idea; "the theatrical notion of disguise is associated with disaster in his stories"; "he had a whimsy about flying to the moon"; "whimsy can be humorous to someone with time to enjoy it"
+57091,notions_counter,counter where notions are sold
+57092,notochord,a flexible rodlike structure that forms the supporting axis of the body in the lowest chordates and lowest vertebrates and in embryos of higher vertebrates
+57093,notoriety ill_fame,the state of being known for some unfavorable act or quality
+57094,notornis takahe Notornis_mantelli,flightless New Zealand birds similar to gallinules
+57095,nougat,nuts or fruit pieces in a sugar paste
+57096,nougat_bar,a bar of nougat candy often dipped in chocolate
+57097,noumenon thing-in-itself,the intellectual conception of a thing as it is in itself, not as it is known through perception
+57098,noun,a content word that can be used to refer to a person, place, thing, quality, or action
+57099,noun,the word class that can serve as the subject or object of a verb, the object of a preposition, or in apposition
+57100,noun_phrase nominal_phrase nominal,a phrase that can function as the subject or object of a verb
+57101,nourishment,the act of nourishing; "her nourishment of the orphans saved many lives"
+57102,nous,common sense; "she has great social nous"
+57103,nouvelle_cuisine,a school of French cooking that uses light sauces and tries to bring out the natural flavors of foods instead of making heavy use of butter and cream
+57104,nova,a star that ejects some of its material in the form of a cloud and becomes more luminous in the process
+57105,novation,(law) the replacement of one obligation by another by mutual agreement of both parties; usually the replacement of one of the original parties to a contract with the consent of the remaining party
+57106,novel,an extended fictional work in prose; usually in the form of a story
+57107,novel,a printed and bound book that is an extended work of fiction; "his bookcases were filled with nothing but novels"; "he burned all the novels"
+57108,novelette novella,a short novel
+57109,novelist,one who writes novels
+57110,novelization novelisation,converting something into the form of a novel
+57111,novelty freshness,originality by virtue of being new and surprising
+57112,novena,a Roman Catholic devotion consisting of prayers on nine consecutive days
+57113,novice beginner tyro tiro initiate,someone new to a field or activity
+57114,novillada,a bullfight in which the bulls are less than four years old
+57115,novillero,a bullfighter who is required to fight bulls less than four years of age
+57116,novitiate novice,someone who has entered a religious order but has not taken final vows
+57117,novitiate noviciate,the period during which you are a novice (especially in a religious order)
+57118,novobiocin,an antibiotic obtained from an actinomycete and used to treat infections by Gram-positive bacteria
+57119,now,the momentary present; "Now is a good time to do it"; "it worked up to right now"
+57120,nowhere,an insignificant place; "he came out of nowhere"
+57121,nozzle nose,a projecting spout from which a fluid is discharged
+57122,nu,the 13th letter of the Greek alphabet
+57123,nuance nicety shade subtlety refinement,a subtle difference in meaning or opinion or attitude; "without understanding the finer nuances you can't enjoy the humor"; "don't argue about shades of meaning"
+57124,nub nubble,a small lump or protuberance
+57125,nub stub,a small piece; "a nub of coal"; "a stub of a pencil"
+57126,nubbin,a small nub (especially an undeveloped fruit or ear of corn)
+57127,nucellus,central part of a plant ovule; contains the embryo sac
+57128,nuclear-powered_ship,ship whose motive power comes from the energy of a nuclear reactor
+57129,nuclear_RNA nRNA,ribonucleic acid found in the nucleolus of the cell
+57130,nuclear_cataract,a cataract that affects the nucleus of the lens
+57131,nuclear_chemist radiochemist,a chemist who specializes in nuclear chemistry
+57132,nuclear_club,the nations possessing nuclear weapons
+57133,nuclear_deterrence,the military doctrine that an enemy will be deterred from using nuclear weapons as long as he can be destroyed as a consequence; "when two nations both resort to nuclear deterrence the consequence could be mutual destruction"
+57134,nuclear_engineering,the branch of engineering concerned with the design and construction and operation of nuclear reactors
+57135,nuclear_explosion atomic_explosion,the explosion of an atomic bomb
+57136,nuclear_family conjugal_family,a family consisting of parents and their children and grandparents of a marital partner
+57137,nuclear_fuel,fuel (such as uranium) that can be used in nuclear reactors as a source of electricity
+57138,nuclear_magnetic_resonance NMR proton_magnetic_resonance,resonance of protons to radiation in a magnetic field
+57139,nuclear_medicine,the branch of medicine that uses radioactive materials either to image a patient's body or to destroy diseased cells
+57140,nuclear_physicist,a physicist who specializes in nuclear physics
+57141,nuclear_physics atomic_physics nucleonics,the branch of physics that studies the internal structure of atomic nuclei
+57142,nuclear_propulsion,the use of a nuclear reactor either to produce electricity to power an engine (as in a nuclear submarine) or to directly heat a propellant (as in nuclear rockets)
+57143,nuclear_reaction,(physics) a process that alters the energy or structure or composition of atomic nuclei
+57144,nuclear_reactor reactor,(physics) any of several kinds of apparatus that maintain and control a nuclear reaction for the production of energy or artificial elements
+57145,nuclear_resonance,the resonance absorption of a gamma ray by a nucleus identical to the nucleus that emitted the gamma ray
+57146,nuclear_rocket,a rocket engine in which a nuclear reactor is used to heat a propellant
+57147,nuclear_terrorism,the use of a nuclear device by a terrorist organization to cause massive devastation or the use (or threat of use) of fissionable radioactive materials; "assaults on nuclear power plants is one form of nuclear terrorism"
+57148,nuclear_weapon atomic_weapon,a weapon of mass destruction whose explosive power derives from a nuclear reaction
+57149,nuclear_winter,a long period of darkness and extreme cold that scientists predict would follow a full-scale nuclear war; a layer of dust and smoke in the atmosphere would cover the earth and block the rays of the sun; most living organisms would perish
+57150,nuclease,general term for enzymes that catalyze the hydrolysis of nucleic acid by cleaving chains of nucleotides into smaller units
+57151,nucleic_acid,(biochemistry) any of various macromolecules composed of nucleotide chains that are vital constituents of all living cells
+57152,nucleolus nucleole,a small round body of protein in a cell nucleus; such organelles contain RNA and are involved in protein synthesis
+57153,nucleolus_organizer nucleolus_organiser nucleolar_organizer nucleolar_organiser,the particular part of a chromosome that is associated with a nucleolus after nuclear division
+57154,nucleon,a constituent (proton or neutron) of an atomic nucleus
+57155,nucleoplasm karyoplasm,the protoplasm that constitutes the nucleus of a cell
+57156,nucleoprotein,any of several substances found in the nuclei of all living cells; consists of a protein bound to a nucleic acid
+57157,nucleoside,a glycoside formed by partial hydrolysis of a nucleic acid
+57158,nucleoside_reverse_transcriptase_inhibitor NRTI,an antiviral drug used against HIV; is incorporated into the DNA of the virus and stops the building process; results in incomplete DNA that cannot create a new virus; often used in combination with other drugs
+57159,nucleosynthesis,(astronomy) the cosmic synthesis of atoms more complex than the hydrogen atom
+57160,nucleotide base,a phosphoric ester of a nucleoside; the basic structural unit of nucleic acids (DNA or RNA)
+57161,nucleus,(astronomy) the center of the head of a comet; consists of small solid particles of ice and frozen gas that vaporizes on approaching the sun to form the coma and tail
+57162,nucleus,the positively charged dense center of an atom
+57163,nucleus,any histologically identifiable mass of neural cell bodies in the brain or spinal cord
+57164,nucleus cell_nucleus karyon,a part of the cell containing DNA and RNA and responsible for growth and reproduction
+57165,nude,without clothing (especially in the phrase `in the nude'); "they swam in the nude"
+57166,nude nude_painting,a painting of a naked human figure
+57167,nude nude_person,a naked person
+57168,nude nude_sculpture nude_statue,a statue of a naked human figure
+57169,nude_dancing,erotic dancing with little or no clothing
+57170,nude_mouse,a mouse with a genetic defect that prevents them from growing hair and also prevents them from immunologically rejecting human cells and tissues; widely used in preclinical trials
+57171,nudge jog,a slight push or shake
+57172,nudger,someone who nudges; someone who gives a gentle push; "he needs a regular nudger to keep him awake"
+57173,nudism naturism,going without clothes as a social practice
+57174,nudist naturist,a person who practices nudity for reasons of health or religion
+57175,nudnik nudnick,(Yiddish) someone who is a boring pest
+57176,nugget,a solid lump of a precious metal (especially gold) as found in the earth
+57177,nuisance,(law) a broad legal concept including anything that disturbs the reasonable use of your property or endangers life and health or is offensive
+57178,null_set,a set that is empty; a set with no members
+57179,null_space,a space that contains no points; and empty space
+57180,nullah,a ravine or gully in southern Asia
+57181,nullification,the states'-rights doctrine that a state can refuse to recognize or to enforce a federal law passed by the United States Congress
+57182,nullification override,the act of nullifying; making null and void; counteracting or overriding the effect or force of something
+57183,nullifier,an advocate of nullification; someone who believes that a state can resist federal laws
+57184,nullipara,(obstetrics) a woman who has never give birth to a child
+57185,nullity,something that is null (especially an enactment that has no legal validity)
+57186,numbat banded_anteater anteater Myrmecobius_fasciatus,small Australian marsupial having long snout and strong claws for feeding on termites; nearly extinct
+57187,number,a concept of quantity involving zero and units; "every number has a unique position in the sequence"
+57188,number,a select company of people; "I hope to become one of their number before I die"
+57189,number,a numbered item in a series; "take the number 2 to the main square, then change to the number 5"
+57190,number,a numeral or string of numerals that is used for identification and may be attached to accounts, memberships, etc.; "she refused to give them her Social Security number"
+57191,number,the grammatical category for the forms of nouns and pronouns and verbs that are used depending on the number of entities involved (singular or dual or plural); "in English the subject and the verb must agree in number"
+57192,number,a clothing measurement; "a number 13 shoe"
+57193,number,an item of clothing; "she preferred the black nylon number"; "this sweater is an all-wool number"
+57194,number figure,the property possessed by a sum or total or indefinite quantity of units or individuals; "the number of parameters is small"; "the figure was about a thousand"
+57195,number_agreement,agreement in number between words in the same grammatical construction (e.g., between adjectives and the nouns they modify)
+57196,number_cruncher,someone able to perform complex and lengthy calculations
+57197,number_cruncher,a computer capable of performing a large number of mathematical operations per second
+57198,number_crunching,performing complex and lengthy numerical calculations
+57199,number_one,a reference to yourself or myself etc.; `take care of number one' means to put your own interests first
+57200,number_theorist,a mathematician specializing in number theory
+57201,numbers_pool numbers_game numbers_racket numbers,an illegal daily lottery
+57202,numbness,partial or total lack of sensation in a part of the body; a symptom of nerve damage or dysfunction
+57203,numdah numdah_rug nammad,an embroidered rug made from a coarse Indian felt
+57204,numen,a spirit believed to inhabit an object or preside over a place (especially in ancient Roman religion)
+57205,numeracy,skill with numbers and mathematics
+57206,numeral number,a symbol used to represent a number; "he learned to write the numerals before he went to school"
+57207,numeration,naming numbers
+57208,numeration_system number_system number_representation_system system_of_numeration,any notation for the representation of numbers
+57209,numerator,the dividend of a fraction
+57210,numerical_analysis,(mathematics) the branch of mathematics that studies algorithms for approximating solutions to problems in the infinitesimal calculus
+57211,numerical_quantity,a quantity expressed as a number
+57212,numerologist,a believer in numerology
+57213,numerology,the study of the supposed occult influence of numbers on human affairs
+57214,numerousness numerosity multiplicity,a large number
+57215,numismatics numismatology coin_collecting coin_collection,the collection and study of money (and coins in particular)
+57216,numismatist numismatologist coin_collector,a collector and student of money (and coins in particular)
+57217,nummulite,large fossil protozoan of the Tertiary period
+57218,nun,a woman religious
+57219,nun,the 14th letter of the Hebrew alphabet
+57220,nun's_habit,a long loose habit worn by nuns in a convent
+57221,nuncio papal_nuncio,(Roman Catholic Church) a diplomatic representative of the Pope having ambassadorial status
+57222,nunnery,the convent of a community of nuns
+57223,nurse,one skilled in caring for young children or the sick (usually under the supervision of a physician)
+57224,nurse-midwife,a registered nurse who has received special training as a midwife
+57225,nurse-patient_relation,the responsibility of a nurse to act in the best interests of the patient
+57226,nurse_log,a large decomposing tree trunk that has fallen, usually in a forest; the decaying wood provides moisture and nutrients for a variety of insects and plants
+57227,nurse_practitioner NP nurse_clinician,a registered nurse who has received special training and can perform many of the duties of a physician
+57228,nurse_shark Ginglymostoma_cirratum,small bottom-dwelling shark of warm shallow waters on both coasts of North America and South America and from southeast Asia to Australia
+57229,nurser,a person who treats something carefully; "a great nurser of pennies"
+57230,nursery baby's_room,a child's room for a baby
+57231,nursery_rhyme,a tale in rhymed verse for children
+57232,nursery_school,a small preschool for small children
+57233,nursing,the profession of a nurse
+57234,nursing,the work of caring for the sick or injured or infirm
+57235,nursing breast_feeding,nourishing at the breast
+57236,nursing_aide nurse's_aide,someone who assists a nurse in tasks that require little formal training
+57237,nursing_care,care by a skilled nurse
+57238,nursing_school school_of_nursing,a school for training nurses
+57239,nursling nurseling suckling,an infant considered in relation to its nurse
+57240,nurturance,physical and emotional care and nourishment
+57241,nut,usually large hard-shelled seed
+57242,nut,a small (usually square or hexagonal) metal block with internal screw thread to be fitted onto a bolt
+57243,nut-leaved_screw_tree Helicteres_isora,East Indian shrub often cultivated for its hairy leaves and orange-red flowers
+57244,nut_and_bolt,a fastener made by screwing a nut onto a threaded bolt
+57245,nut_bar,paste of nuts and sugar on a pastry base cut into bars
+57246,nut_bread,bread containing chopped nuts
+57247,nut_butter,ground nuts blended with a little butter
+57248,nut_pine,any of several pinons bearing edible nutlike seeds
+57249,nut_tree,tree bearing edible nuts
+57250,nutation,uncontrolled nodding
+57251,nutcracker,a compound lever used to crack nuts open
+57252,nutcracker,speckled birds that feed on nuts
+57253,nutgrass nut_grass nutsedge nut_sedge Cyperus_rotundus,a widely distributed perennial sedge having small edible nutlike tubers
+57254,nuthatch nutcracker,any of various small short-tailed songbirds with strong feet and a sharp beak that feed on small nuts and insects
+57255,nutlet,a small nut
+57256,nutmeg,hard aromatic seed of the nutmeg tree used as spice when grated or ground
+57257,nutmeg nutmeg_tree Myristica_fragrans,East Indian tree widely cultivated in the tropics for its aromatic seed; source of two spices: nutmeg and mace
+57258,nutmeg_hickory Carya_myristicaeformis Carya_myristiciformis,hickory of southern United States and Mexico having hard nutmeg-shaped nuts
+57259,nutrient,any substance (such as a chemical element or inorganic compound) that can be taken in by a green plant and used in organic synthesis
+57260,nutrient_artery arteria_nutricia,an artery that supplies the medullary cavity of the long bone
+57261,nutriment nourishment nutrition sustenance aliment alimentation victuals,a source of materials to nourish the body
+57262,nutrition,(physiology) the organic process of nourishing or being nourished; the processes by which an organism assimilates food and uses it for growth and maintenance
+57263,nutrition,the scientific study of food and drink (especially in humans)
+57264,nutritionist,a specialist in the study of nutrition
+57265,nutritiousness nutritiveness,the quality of being nourishing and promoting healthy growth
+57266,nuts_and_bolts,detailed practical information about how something works or how something can be accomplished
+57267,nutshell,the shell around the kernel of a nut
+57268,nutter wacko whacko,a person who is regarded as eccentric or mad
+57269,nux_vomica,a medicine made from the seeds of an Asiatic tree; contains strychnine and brucine; formerly used as a stimulant
+57270,nyala Tragelaphus_angasi,spiral-horned South African antelope with a fringe of white hairs along back and neck
+57271,nybble nibble,a small byte
+57272,nyctalopia night_blindness moon_blindness,inability to see clearly in dim light; due to a deficiency of vitamin A or to a retinal disorder
+57273,nyctophobia,a morbid fear of night or darkness
+57274,nylon,a thermoplastic polyamide; a family of strong resilient synthetic fibers
+57275,nylon,a synthetic fabric
+57276,nylons nylon_stocking rayons rayon_stocking silk_stocking,women's stockings made from a sheer material (nylon or rayon or silk)
+57277,nymph,(classical mythology) a minor nature goddess usually depicted as a beautiful maiden; "the ancient Greeks believed that nymphs inhabited forests and bodies of water"
+57278,nymph,a larva of an insect with incomplete metamorphosis (as the dragonfly or mayfly)
+57279,nymph houri,a voluptuously beautiful young woman
+57280,nymphalid nymphalid_butterfly brush-footed_butterfly four-footed_butterfly,medium to large butterflies found worldwide typically having brightly colored wings and much-reduced nonfunctional forelegs carried folded on the breast
+57281,nymphet,a sexually attractive young woman
+57282,nympholepsy,a frenzy of emotion; as for something unattainable
+57283,nympholept,a person seized by nympholepsy
+57284,nymphomania,abnormally intense sexual desire in women
+57285,nymphomaniac nympho,a woman with abnormal sexual desires
+57286,nystagmus,involuntary movements of the eyeballs; its presence or absence is used to diagnose a variety of neurological and visual disorders
+57287,nystatin Mycostatin Nystan,an antifungal and antibiotic (trade names Mycostatin and Nystan) discovered in New York State; derived from soil fungi actinomycetes
+57288,oak,the hard durable wood of any oak; used especially for furniture and flooring
+57289,oak oak_tree,a deciduous tree of the genus Quercus; has acorns and lobed leaves; "great oaks grow from little acorns"
+57290,oak-leaved_goosefoot oakleaf_goosefoot Chenopodium_glaucum,annual European plant with spikes of greenish flowers and leaves that are white and hairy on the underside; common as a weed in North America
+57291,oak_apple,oak gall caused by larvae of a cynipid wasp
+57292,oak_blight,a black plant louse that lives on oaks and dogwoods
+57293,oak_chestnut,a tree of the genus Castanopsis
+57294,oak_fern Gymnocarpium_dryopteris Thelypteris_dryopteris,bright blue-green fern widely distributed especially in damp acid woodlands of temperate northern hemisphere
+57295,oakum,loose hemp or jute fiber obtained by unravelling old ropes; when impregnated with tar it was used to caulk seams and pack joints in wooden ships
+57296,oar,an implement used to propel or steer a boat
+57297,oarfish king_of_the_herring ribbonfish Regalecus_glesne,thin deep-water tropical fish 20 to 30 feet long having a red dorsal fin
+57298,oarsman rower,someone who rows a boat
+57299,oarsmanship,skill as an oarsman
+57300,oarswoman,a woman oarsman
+57301,oasis,a fertile tract in a desert (where the water table approaches the surface)
+57302,oast,a kiln for drying hops
+57303,oast_house,a building containing an oast (a kiln for drying hops); usually has a conical or pyramidal roof
+57304,oat,annual grass of Europe and North Africa; grains used as food and fodder (referred to primarily in the plural: `oats')
+57305,oat,seed of the annual grass Avena sativa (spoken of primarily in the plural as `oats')
+57306,oat_cell_carcinoma small_cell_carcinoma,highly malignant carcinoma composed of small round or egg-shaped cells with little cytoplasm; lung cancers are frequently oat cell carcinomas
+57307,oatcake,thin flat unleavened cake of baked oatmeal
+57308,oath,a solemn promise, usually invoking a divine witness, regarding your future acts or behavior; "they took an oath of allegiance"
+57309,oath swearing,a commitment to tell the truth (especially in a court of law); to lie under oath is to become subject to prosecution for perjury
+57310,oatmeal burgoo,porridge made of rolled oats
+57311,oatmeal rolled_oats,meal made from rolled or ground oats
+57312,oatmeal_cookie,cookies containing rolled oats
+57313,obbligato obligato,a persistent but subordinate motif
+57314,obbligato obligato,a part of the score that must be performed without change or omission
+57315,obeah obi,(West Indies) followers of a religious system involving witchcraft and sorcery
+57316,obeah obi,a religious belief of African origin involving witchcraft and sorcery; practiced in parts of the West Indies and tropical Americas
+57317,obeche,the wood of an African obeche tree; used especially for veneering
+57318,obeche obechi arere samba Triplochiton_scleroxcylon,large west African tree having large palmately lobed leaves and axillary cymose panicles of small white flowers and one-winged seeds; yields soft white to pale yellow wood
+57319,obedience,the trait of being willing to obey
+57320,obedience obeisance,the act of obeying; dutiful or submissive behavior with respect to another person
+57321,obedience respect,behavior intended to please your parents; "their children were never very strong on obedience"; "he went to law school out of respect for his father's wishes"
+57322,obelion,the craniometric point on the sagittal suture near the lamboid suture
+57323,obelisk,a stone pillar having a rectangular cross section tapering towards a pyramidal top
+57324,obfuscation,darkening or obscuring the sight of something
+57325,obidoxime_chloride,a chloride used as an antidote for nerve gases such as sarin or VX
+57326,obiism,belief in a kind of sorcery that originated in Africa and is practiced in the West Indies
+57327,obiter_dictum dictum,an opinion voiced by a judge on a point of law not directly bearing on the case in question and therefore not binding
+57328,obiter_dictum passing_comment,an incidental remark
+57329,obituary obit necrology,a notice of someone's death; usually includes a short biography
+57330,object,(grammar) a constituent that is acted upon; "the object of the verb"
+57331,object,(computing) a discrete item that provides a description of virtually anything known to a computer; "in object-oriented programming, objects include data and define its status, its methods of operation and how it interacts with other objects"
+57332,object,the focus of cognitions or feelings; "objects of thought"; "the object of my affection"
+57333,object physical_object,a tangible and visible entity; an entity that can cast a shadow; "it was full of rackets, balls and other objects"
+57334,object-oriented_database,a database in which the operations carried out on information items (data objects) are considered part of their definition
+57335,object-oriented_database_management_system,a database management system designed to manage an object-oriented database
+57336,object-oriented_programming object-oriented_programing,creating a program that can use and support objects
+57337,object-oriented_programming_language object-oriented_programing_language,(computer science) a programming language that enables the programmer to associate a set of procedures with each type of data structure; "C++ is an object-oriented programming language that is an extension of C"
+57338,object_ball,the billiard ball that is intended to be the first ball struck by the cue ball
+57339,object_code,the machine-language output of a compiler that is ready for execution on a particular computer
+57340,object_language target_language,a computer language into which something written in another computer language is to be translated
+57341,object_language target_language,the language into which a text written in another language is to be translated
+57342,object_program target_program,a fully compiled or assembled program ready to be loaded into the computer
+57343,object_recognition,the visual perception of familiar objects
+57344,objectification,a concrete representation of an abstract idea or principle
+57345,objectification,the act of representing an abstraction as a physical thing
+57346,objection,the speech act of objecting
+57347,objection,(law) a procedure whereby a party to a suit says that a particular line of questioning or a particular witness or a piece of evidence or other matter is improper and should not be continued and asks the court to rule on its impropriety or illegality
+57348,objective objective_lens object_lens object_glass,the lens or system of lenses in a telescope or microscope that is nearest the object being viewed
+57349,objectivity objectiveness,judgment based on observable phenomena and uninfluenced by emotions or personal prejudices
+57350,objet_d'art art_object piece,a work of art of some artistic value; "this store sells only objets d'art"; "it is not known who created this piece"
+57351,oblanceolate_leaf,a leaf having a rounded apex and tapering base
+57352,oblate,a lay person dedicated to religious work or the religious life
+57353,oblateness ellipticity,the property possessed by a round shape that is flattened at the poles; "the oblateness of the planet"
+57354,oblation offering,the act of contributing to the funds of a church or charity; "oblations for aid to the poor"
+57355,obligate_anaerobe,an organism that cannot grow in the presence of oxygen
+57356,obligation,the state of being obligated to do or pay something; "he is under an obligation to finish the job"
+57357,obligation,a legal agreement specifying a payment or action and the penalty for failure to comply
+57358,obligation indebtedness,a personal relation in which one is indebted for a service or favor
+57359,obliger accommodator,someone who performs a service or does a favor
+57360,oblique oblique_case,any grammatical case other than the nominative
+57361,oblique_angle,an angle that is not a right angle or a multiple of a right angle
+57362,oblique_bandage,a bandage in which successive turns proceed obliquely up or down a limb
+57363,oblique_triangle,a triangle that contains no right angle
+57364,oblique_vein_of_the_left_atrium vena_obliqua_atrii_sinistri,a tributary of the coronary sinus; on the posterior wall of the left atrium
+57365,obliqueness,the property of being neither parallel nor perpendicular, but at a slanting angle
+57366,obliterator,an eliminator that does away with all traces
+57367,oblivion limbo,the state of being disregarded or forgotten
+57368,obliviousness oblivion,total forgetfulness; "he sought the great oblivion of sleep"
+57369,oblong,a plane figure that deviates from a square or circle due to elongation
+57370,oblong_leaf,a simple leaf that is rounded at each end with parallel sides
+57371,obloquy opprobrium,state of disgrace resulting from public abuse
+57372,oboe hautboy hautbois,a slender double-reed instrument; a woodwind with a conical bore and a double-reed mouthpiece
+57373,oboe_d'amore,an oboe pitched a minor third lower than the ordinary oboe; used to perform baroque music
+57374,oboe_da_caccia,an alto oboe; precursor of the English horn
+57375,oboist,a musician who plays the oboe
+57376,obolus,a Greek unit of weight equal to one tenth of a gram
+57377,obovate_leaf,an egg-shaped leaf with the narrower end at the base
+57378,obscenity,an obscene act
+57379,obscenity lewdness bawdiness salaciousness salacity,the trait of behaving in an obscene manner
+57380,obscenity smut vulgarism filth dirty_word,an offensive or indecent word or phrase
+57381,obscurantism,a policy of opposition to enlightenment or the spread of knowledge
+57382,obscurantism,a deliberate act intended to make something obscure
+57383,obscurantist,a person who is deliberately vague
+57384,obscureness obscurity abstruseness reconditeness,the quality of being unclear or abstruse and hard to understand
+57385,obscurity,an obscure and unimportant standing; not well known; "he worked in obscurity for many years"
+57386,obscurity obscureness,the state of being indistinct or indefinite for lack of adequate illumination
+57387,obsequiousness servility subservience,abject or cringing submissiveness
+57388,observation,facts learned by observing; "he reported his observations to the mayor"
+57389,observation,the act of making and recording a measurement
+57390,observation observance watching,the act of observing; taking a patient look
+57391,observation reflection reflexion,a remark expressing careful consideration
+57392,observation_dome,lookout consisting of a dome-shaped observatory
+57393,observation_station,a station set up for making observations of something
+57394,observatory,a building designed and equipped to observe astronomical phenomena
+57395,observed_fire,fire for which the point of impact (the burst) can be seen by an observer; fire can be adjusted on the basis of the observations
+57396,observer commentator,an expert who observes and comments on something
+57397,observer's_meridian,a meridian that passes through the observer's zenith
+57398,obsession fixation,an unhealthy and compulsive preoccupation with something or someone
+57399,obsessive,a person who has obsessions
+57400,obsessive-compulsive,a person with obsessive-compulsive characteristics
+57401,obsessive-compulsive_disorder,an anxiety disorder characterized by recurrent and persistent thoughts and feelings and repetitive, ritualized behaviors
+57402,obsessive-compulsive_personality,personality characterized by a strong need to repeat certain acts or rituals
+57403,obsessiveness obsessivity,extreme compulsiveness
+57404,obsidian,acid or granitic glass formed by the rapid cooling of lava without crystallization; usually dark, but transparent in thin pieces
+57405,obsolescence,the process of becoming obsolete; falling into disuse or becoming out of date; "a policy of planned obsolescence"
+57406,obsoleteness superannuation,the property of being out of date and not current
+57407,obstacle,an obstruction that stands in the way (and must be removed or surmounted or circumvented)
+57408,obstacle obstruction,something immaterial that stands in the way and must be circumvented or surmounted; "lack of imagination is an obstacle to one's advancement"; "the poverty of a district is an obstacle to good education"; "the filibuster was a major obstruction to the success of their plan"
+57409,obstacle_race,a race in which competitors must negotiate obstacles
+57410,obstetrical_toad midwife_toad Alytes_obstetricans,European toad whose male carries the fertilized eggs wrapped around its hind legs until they hatch
+57411,obstetrician accoucheur,a physician specializing in obstetrics
+57412,obstetrics OB tocology midwifery,the branch of medicine dealing with childbirth and care of the mother
+57413,obstipation,severe constipation resulting from an obstruction in the intestines
+57414,obstreperousness,noisy defiance
+57415,obstruction,the act of obstructing; "obstruction of justice"
+57416,obstruction,getting in someone's way
+57417,obstruction blockage,the physical condition of blocking or filling a passage with an obstruction
+57418,obstruction obstructor obstructer impediment impedimenta,any structure that makes progress difficult
+57419,obstruction_of_justice,impeding those who seek justice in a court (as by trying to influence or intimidate any juror or witness or officer of the court); can result in a finding of contempt of court
+57420,obstructionism,deliberate interference
+57421,obstructionist obstructor obstructer resister thwarter,someone who systematically obstructs some action that others want to take
+57422,obstructive_shock,shock caused by obstruction of blood flow
+57423,obstruent,a consonant that is produced with a partial or complete blockage of the airflow from the lungs through the nose or mouth
+57424,obtainment obtention,the act of obtaining
+57425,obtrusiveness,an unwelcome conspicuousness
+57426,obturator,a prosthesis used to close an opening (as to close an opening of the hard palate in cases of cleft palate)
+57427,obturator_vein vena_obturatoria,a vein formed by the union of tributaries that drain the hip joints and thigh muscles; empties into the internal iliac vein
+57428,obtuse_angle,an angle between 90 and 180 degrees
+57429,obtuse_leaf,a simple leaf having a rounded or blunt tip
+57430,obtuse_triangle obtuse-angled_triangle,a triangle that contains an obtuse interior angle
+57431,obtuseness,the quality of lacking a sharp edge or point
+57432,obverse,the more conspicuous of two alternatives or cases or sides; "the obverse of this issue"
+57433,obverse,the side of a coin or medal bearing the principal stamp or design
+57434,obviation forestalling preclusion,the act of preventing something by anticipating and disposing of it effectively
+57435,obviousness noticeability noticeableness patency,the property of being easy to see and understand
+57436,oca oka Oxalis_tuberosa Oxalis_crenata,South American wood sorrel cultivated for its edible tubers
+57437,ocarina sweet_potato,egg-shaped terra cotta wind instrument with a mouthpiece and finger holes
+57438,occasion,the time of a particular event; "on the occasion of his 60th birthday"
+57439,occasion,an opportunity to do something; "there was never an occasion for her to demonstrate her skill"
+57440,occasion,reason; "there was no occasion for complaint"
+57441,occasions,something you have to do; "he minded his own specialized occasions"
+57442,occidentalism,the quality or customs or mannerisms characteristic of Western civilizations
+57443,occipital_bone,a saucer-shaped membrane bone that forms the back of the skull
+57444,occipital_gyrus,any of the convolutions of the outer surface of the occipital lobe of the cerebrum
+57445,occipital_lobe occipital_cortex,that part of the cerebral cortex in either hemisphere of the brain lying in the back of the head
+57446,occipital_protuberance,prominence on the outer surface of the occipital bone
+57447,occipital_vein vena_occipitalis,a vein that drains the occipital region
+57448,occipitomastoid_suture,the suture between the occipital and the temporal bones; a continuation of the lamboid suture
+57449,occiput,back part of the head or skull
+57450,occluded_front occlusion,(meteorology) a composite front when colder air surrounds a mass of warm air and forces it aloft
+57451,occlusion,closure or blockage (as of a blood vessel)
+57452,occlusion,(dentistry) the normal spatial relation of the teeth when the jaws are closed
+57453,occult occult_arts,supernatural practices and techniques; "he is a student of the occult"
+57454,occultism,the study of the supernatural
+57455,occultism,a belief in supernatural powers and the possibility of bringing them under human control
+57456,occultist,a believer in occultism; someone versed in the occult arts
+57457,occupancy tenancy,an act of being a tenant or occupant
+57458,occupancy_rate,the percentage of all rental units (as in hotels) are occupied or rented at a given time
+57459,occupation,the period of time during which a place or position or nation is occupied; "during the German occupation of Paris"
+57460,occupation,any activity that occupies a person's attention; "he missed the bell in his occupation with the computer game"
+57461,occupation business job line_of_work line,the principal activity in your life that you do to earn money; "he's not in my line of business"
+57462,occupation military_control,the control of a country by military forces of a foreign power
+57463,occupation occupancy moving_in,the act of occupying or taking possession of a building; "occupation of a building without a certificate of occupancy is illegal"
+57464,occupation_license occupation_licence,a license to pursue a particular occupation
+57465,occupational_disease industrial_disease,disease or disability resulting from conditions of employment (usually from long exposure to a noxious substance or from continuous repetition of certain acts)
+57466,occupational_group vocation,a body of people doing the same kind of work
+57467,occupational_hazard,any condition of a job that can result in illness or injury
+57468,occupational_safety_and_health_act federal_job_safety_law,a law passed by the United States Congress that created the Occupational Safety and Health Administration to prevent employees from being injured or contracting diseases in the course of their employment
+57469,occupational_therapy,therapy based on engagement in meaningful activities of daily life, especially to enable or encourage participation in such activities in spite of impairments or limitations in physical or mental functions
+57470,occupier,a member of a military force who is residing in a conquered foreign country
+57471,occurrence,an instance of something occurring; "a disease of frequent occurrence"; "the occurrence (or presence) of life on other planets"
+57472,ocean,a large body of water constituting a principal part of the hydrosphere
+57473,ocean sea,anything apparently limitless in quantity or volume
+57474,ocean_current,the steady flow of surface ocean water in a prevailing direction
+57475,ocean_floor sea_floor ocean_bottom seabed sea_bottom Davy_Jones's_locker Davy_Jones,the bottom of a sea or ocean
+57476,ocean_pout Macrozoarces_americanus,common along northeastern coast of North America
+57477,ocean_sunfish sunfish mola headfish,among the largest bony fish; pelagic fish having an oval compressed body with high dorsal and anal fins and caudal fin reduced to a rudder-like lobe; worldwide in warm waters
+57478,ocean_trip voyage,an act of traveling by water
+57479,oceanfront,land bordering an ocean
+57480,oceanographer,a scientist who studies physical and biological aspects of the seas
+57481,oceanography oceanology,the branch of science dealing with physical and biological aspects of the oceans
+57482,ocellated_turkey Agriocharis_ocellata,wild turkey of Central America and northern South America
+57483,ocelot panther_cat Felis_pardalis,nocturnal wildcat of Central America and South America having a dark-spotted buff-brown coat
+57484,ocher ochre,any of various earths containing silica and alumina and ferric oxide; used as a pigment
+57485,ocher ochre,a moderate yellow-orange to orange color
+57486,ochronosis,an accumulation of dark pigment in cartilage and other connective tissue; usually a symptom of alkaptonuria or phenol poisoning
+57487,oconee_bells Shortia_galacifolia,plant of southeastern United States having solitary white funnel-shaped flowers flushed with pink and large glossy green leaves that turn bronze-red in fall
+57488,ocotillo coachwhip Jacob's_staff vine_cactus Fouquieria_splendens,desert shrub of southwestern United States and Mexico having slender naked spiny branches that after the rainy season put forth foliage and clusters of red flowers
+57489,octagon,an eight-sided polygon
+57490,octahedron,any polyhedron having eight plane faces
+57491,octal_digit,a digit from 0 to 7 in octal notation
+57492,octal_notation,any mathematical notation that uses 8 different characters (usually the digits 0 to 7)
+57493,octal_numeration_system octal_number_system,a positional system of numeration that uses octal digits and a radix of eight
+57494,octameter,a verse line having eight metrical feet
+57495,octane,any isomeric saturated hydrocarbon found in petroleum and used as a fuel and solvent
+57496,octane_number octane_rating,a measure of the antiknock properties of gasoline
+57497,octant,a measuring instrument for measuring angles to a celestial body; similar to a sextant but with 45 degree calibration
+57498,octave,a feast day and the seven days following it
+57499,octave,a rhythmic group of eight lines of verse
+57500,octave musical_octave,a musical interval of eight tones
+57501,octavo eightvo 8vo,the size of a book whose pages are made by folding a sheet of paper three times to form eight leaves
+57502,octet octette,eight performers or singers who perform together
+57503,octet octette,a set of eight similar things considered as a unit
+57504,octet octette,a musical composition written for eight performers
+57505,octet octette eightsome,eight people considered as a unit
+57506,octillion,the number that is represented as a one followed by 27 zeros
+57507,octogenarian,someone whose age is in the eighties
+57508,octopod,a cephalopod with eight arms but lacking an internal shell
+57509,octopus,tentacles of octopus prepared as food
+57510,octopus devilfish,bottom-living cephalopod having a soft oval body with eight long tentacles
+57511,octoroon,an offspring of a quadroon and a white parent; a person who is one-eighth black
+57512,octosyllable,a verse line having eight syllables or a poem of octosyllabic lines
+57513,octroi,a tax on various goods brought into a town
+57514,ocular_muscle eye_muscle,one of the small muscles of the eye that serve to rotate the eyeball
+57515,oculism,the craft of an oculist
+57516,oculomotor oculomotor_nerve nervus_oculomotorius third_cranial_nerve,supplies extrinsic muscles of the eye
+57517,oculopharyngeal_muscular_dystrophy,a form of muscular dystrophy that usually begins between early adulthood and middle age and first affects muscles of the eyelid and throat; progresses slowly with swallowing problems common as the disease progresses; inheritance is autosomal dominant
+57518,oculus_dexter OD,the right eye
+57519,oculus_sinister OS,the left eye
+57520,odalisque,a woman slave in a harem
+57521,odd-leg_caliper,caliper having the points on its legs both curve in the same direction
+57522,odd-pinnate_leaf,a pinnate leaf with a single leaflet at the apex
+57523,odd-toed_ungulate perissodactyl perissodactyl_mammal,placental mammals having hooves with an odd number of toes on each foot
+57524,oddity oddness,eccentricity that is not easily explained
+57525,oddity queerness quirk quirkiness crotchet,a strange attitude or habit
+57526,oddness,the parity of odd numbers (not divisible by two)
+57527,odds,the likelihood of a thing occurring rather than not occurring
+57528,odds betting_odds,the ratio by which one better's wager is greater than that of another; "he offered odds of two to one"
+57529,odds-maker handicapper,someone who sets the betting odds based on calculations of the outcome of a contest (especially a horse race)
+57530,odds_and_ends oddments melange farrago ragbag mishmash mingle-mangle hodgepodge hotchpotch gallimaufry omnium-gatherum,a motley assortment of things
+57531,ode,a lyric poem with complex stanza forms
+57532,odist,a poet who writes odes
+57533,odium,state of disgrace resulting from detestable behavior
+57534,odometer hodometer mileometer milometer,a meter that shows mileage traversed
+57535,odonate,large primitive predatory aquatic insect having two pairs of membranous wings
+57536,odontoglossum,any of numerous and diverse orchids of the genus Odontoglossum having racemes of few to many showy usually large flowers in many colors
+57537,odontoid_process,a toothlike process at the back of 2nd vertebra of the neck
+57538,odynophagia,severe pain on swallowing due to a disorder of the esophagus
+57539,odyssey,a long wandering and eventful journey
+57540,oeil_de_boeuf,a circular or oval window; 17th or 18th century French architecture
+57541,oenomel,wine mixed with honey
+57542,oersted,the magnetic field strength 1 cm from a unit magnetic pole
+57543,oeuvre work body_of_work,the total output of a writer or artist (or a substantial part of it); "he studied the entire Wagnerian oeuvre"; "Picasso's work can be divided into periods"
+57544,off-Broadway,low-budget theaters located outside the Broadway area in Manhattan
+57545,off-day,a day when things go poorly; "I guess this is one of my off-days"
+57546,off-line_equipment auxiliary_equipment,electronic equipment not in direct communication (or under the control of) the central processing unit
+57547,off-season,the season when travel is least active and rates are lowest
+57548,off_year,a year in which productivity is low or inferior
+57549,off_year,a year in which no major political elections are held
+57550,offal,viscera and trimmings of a butchered animal often considered inedible by humans
+57551,offense offence,the team that has the ball (or puck) and is trying to score
+57552,offense offence,a transgression that constitutes a violation of what is judged to be right
+57553,offense offence offensive,the action of attacking an enemy
+57554,offensiveness odiousness distastefulness,the quality of being offensive
+57555,offer offering,the verbal act of offering; "a generous offer of assistance"
+57556,offer offering,something offered (as a proposal or bid); "noteworthy new offerings for investors included several index funds"
+57557,offer_price,(stock market) the price at which a broker is willing to sell a certain security
+57558,offerer offeror,someone who presents something to another for acceptance or rejection
+57559,offering,money contributed to a religious organization
+57560,offertory,the offerings of the congregation at a religious service
+57561,office,a religious rite or service prescribed by ecclesiastical authorities; "the offices of the mass"
+57562,office business_office,place of business where professional or clerical duties are performed; "he rented an office in the new building"
+57563,office office_staff,professional or clerical workers in an office; "the whole office was late the morning of the blizzard"
+57564,office power,(of a government or government official) holding an office means being in power; "being in office already gives a candidate a great advantage"; "during his first year in office"; "during his first year in power"; "the power of the president"
+57565,office-bearer,the person who holds an office
+57566,office_boy,a young man who is employed to do odd jobs in a business office
+57567,office_building office_block,a building containing offices where work is done
+57568,office_furniture,furniture intended for use in an office
+57569,officeholder officer,someone who is appointed or elected to an office and who holds a position of trust; "he is an officer of the court"; "the club elected its officers for the coming year"
+57570,officer ship's_officer,a person authorized to serve in a position of authority on a vessel; "he is the officer in charge of the ship's engines"
+57571,officer's_mess,a mess for the exclusive use of officers
+57572,official,someone who administers the rules of a game or sport; "the golfer asked for an official who could give him a ruling"
+57573,official functionary,a worker who holds or is invested with an office
+57574,official_immunity,personal immunity accorded to a public official from liability to anyone injured by actions that are the consequence of exerting official authority
+57575,officialese,the style of writing characteristic of some government officials: formal and obscure
+57576,officiant,a clergyman who officiates at a religious ceremony or service
+57577,officiation,the performance of a religious or ceremonial or public duty
+57578,offing,the near or foreseeable future; "there was a wedding in the offing"
+57579,offing,the part of the sea that can be seen from the shore and is beyond the anchoring area; "there was a ship in the offing"
+57580,offprint reprint separate,a separately printed article that originally appeared in a larger publication
+57581,offset offset_printing,a plate makes an inked impression on a rubber-blanketed cylinder, which in turn transfers it to the paper
+57582,offset_lithography,offset printing by lithography
+57583,offside,(sport) the mistake of occupying an illegal position on the playing field (in football, soccer, ice hockey, field hockey, etc.)
+57584,offspring materialization materialisation,something that comes into existence as a result; "industrialism prepared the way for acceptance of the French Revolution's various socialistic offspring"; "this skyscraper is the solid materialization of his efforts"
+57585,offspring progeny issue,the immediate descendants of a person; "she was the mother of many offspring"; "he died without issue"
+57586,ogee cyma_reversa,a molding that (in section) has the shape of an S with the convex part above and the concave part below
+57587,ogee_arch keel_arch,a pointed arch having an S-shape on both sides
+57588,ogler,a viewer who gives a flirtatious or lewd look at another person
+57589,ogre,(folklore) a giant who likes to eat human beings
+57590,ogress,(folklore) a female ogre
+57591,ohm,a unit of electrical resistance equal to the resistance between two points on a conductor when a potential difference of one volt between them produces a current of one ampere
+57592,ohmage,the ohmic resistance of a conductor
+57593,ohmmeter,a meter for measuring electrical resistance in ohms
+57594,oil,a slippery or viscous liquid or liquefiable substance not miscible with water
+57595,oil oil_color oil_colour,oil paint containing pigment that is used by an artist
+57596,oil-hardened_steel,steel that is quenched in oil
+57597,oil-industry_analyst,an analyst of the oil industry
+57598,oil-water_interface,an interface forming the boundary between the non-miscible liquids oil and water
+57599,oil_beetle,any of various beetles that exude an oily substance from the leg joints that deters enemies
+57600,oil_burner oil_furnace,a furnace that burns oil
+57601,oil_cake,mass of e.g. linseed or cottonseed or soybean from which the oil has been pressed; used as food for livestock
+57602,oil_cartel,a cartel of companies or nations formed to control the production and distribution of oil
+57603,oil_change,replacing dirty oil with clean
+57604,oil_company,a company that sells oil
+57605,oil_conservation,the conservation of petroleum resources
+57606,oil_filter,a filter that removes impurities from the oil used to lubricate an internal-combustion engine
+57607,oil_future petroleum_future,petroleum bought or sold at an agreed price for delivery at a specified future date
+57608,oil_gland,a gland that secretes oil
+57609,oil_heater oilstove kerosene_heater kerosine_heater,heater that burns oil (as kerosine) for heating or cooking
+57610,oil_industry refining_industry oil_business,an industry that produces and delivers oil and oil products
+57611,oil_lamp kerosene_lamp kerosine_lamp,a lamp that burns oil (as kerosine) for light
+57612,oil_meal,ground oil cake
+57613,oil_paint,paint in which a drying oil is the vehicle
+57614,oil_painter,a painter who uses oil paints
+57615,oil_painting,a picture painted with oil paints
+57616,oil_painting,the art or method of painting with oil paints
+57617,oil_palm,pinnate-leaved palms of the genus Elaeis having dense clusters of crowded flowers and bright red fruit and yielding high quality palm oils
+57618,oil_pipeline,a pipeline used to transport oil
+57619,oil_pressure,pressure that keeps oil on the moving parts of an internal-combustion engine
+57620,oil_pump,a pump that keeps a supply of oil on moving parts
+57621,oil_refinery petroleum_refinery,a refinery for petroleum
+57622,oil_shale,shale from which oil can be obtained by heating
+57623,oil_slick,a thin film of oil floating on top of water (especially crude oil spilled from a ship)
+57624,oil_stain,a stain produced by oil
+57625,oil_tanker oiler tanker tank_ship,a cargo ship designed to carry crude oil in bulk
+57626,oil_tycoon,a powerful person in the oil business
+57627,oil_well oiler,a well that yields or has yielded oil
+57628,oilbird guacharo Steatornis_caripensis,nocturnal fruit-eating bird of South America that has fatty young yielding an oil that is used instead of butter
+57629,oilcan,a can with a long nozzle to apply oil to machinery
+57630,oilcloth,cloth treated on one side with a drying oil or synthetic resin
+57631,oiler,a worker who oils engines or machinery
+57632,oilfield,a region rich in petroleum deposits (especially one with producing oil wells)
+57633,oilfish Ruvettus_pretiosus,very large deep-water snake mackerel
+57634,oilman,a person who owns or operates oil wells
+57635,oilman,a worker who produces or sells petroleum
+57636,oilpaper,paper that has been made translucent and waterproof by soaking in oil
+57637,oilseed oil-rich_seed,any of several seeds that yield oil
+57638,oilskin slicker,a macintosh made from cotton fabric treated with oil and pigment to make it waterproof
+57639,oilstone,a whetstone for use with oil
+57640,ointment unction unguent balm salve,semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation
+57641,oka,a Turkish unit of weight equal to about 2.75 pounds
+57642,oka,a Turkish liquid unit equal to 1.3 pints
+57643,okapi Okapia_johnstoni,similar to the giraffe but smaller with much shorter neck and stripe on the legs
+57644,okra,long green edible beaked pods of the okra plant
+57645,okra gumbo okra_plant lady's-finger Abelmoschus_esculentus Hibiscus_esculentus,tall coarse annual of Old World tropics widely cultivated in southern United States and West Indies for its long mucilaginous green pods used as basis for soups and stews; sometimes placed in genus Hibiscus
+57646,ola olla,leaf or strip from a leaf of the talipot palm used in India for writing paper
+57647,old,past times (especially in the phrase `in days of old')
+57648,old-age_insurance,insurance paid to the elderly
+57649,old-age_pension retirement_pension retirement_check retirement_benefit retirement_fund superannuation,a monthly payment made to someone who is retired from work
+57650,old-age_pensioner,an old person who receives an old-age pension
+57651,old-fashionedness,the property of being no longer fashionable
+57652,old-man-of-the-woods Strobilomyces_floccopus,edible mild-tasting mushroom found in coniferous woodlands of eastern North America
+57653,old-timer oldtimer gaffer old_geezer antique,an elderly man
+57654,old_age years age eld geezerhood,a late time of life; "old age is not for sissies"; "he's showing his years"; "age hasn't slowed him down at all"; "a beard white with eld"; "on the brink of geezerhood"
+57655,old_boy,a former male pupil of a school
+57656,old_boy,a vivacious elderly man
+57657,old_boy old_man,a familiar term of address for a man
+57658,old_boy_network,an exclusive informal network linking members of a social class or profession or organization in order to provide connections and information and favors (especially in business or politics); "professional women have developed an old boy network of their own"
+57659,old_country,the country of origin of an immigrant
+57660,old_fashioned,a cocktail made of whiskey and bitters and sugar with fruit slices
+57661,old_gold,a dark yellow
+57662,old_growth virgin_forest,forest or woodland having a mature or overly mature ecosystem more or less uninfluenced by human activity
+57663,old_guard,a faction that is unwilling to accept new ideas
+57664,old_lady,your own wife; "meet my old lady"
+57665,old_maid,the loser in a game of old maid
+57666,old_maid,a card game using a pack of cards from which one queen has been removed; players match cards and the player holding the unmatched queen at the end of the game is the loser (or `old maid')
+57667,old_man,(slang) boss
+57668,old_man,an informal term for your father
+57669,old_man greybeard graybeard Methuselah,a man who is very old
+57670,old_man_of_the_mountain alpine_sunflower Tetraneuris_grandiflora Hymenoxys_grandiflora,whitish hairy plant with featherlike leaves and a few stout stems each bearing an especially handsome solitary large yellow flower head; mountainous regions north central United States
+57671,old_master,a great European painter prior to 19th century
+57672,old_rose,a greyish-pink color
+57673,old_school,a class of people favoring traditional ideas
+57674,old_school_tie,necktie indicating the school the wearer attended
+57675,old_squaw oldwife Clangula_hyemalis,a common long-tailed sea duck of the northern parts of the United States
+57676,old_style old_style_font,a typeface (based on an 18th century design) distinguished by irregularity and slanted ascender serifs and little contrast between light and heavy strokes
+57677,old_wives'_tale,a bit of lore passed on by word of mouth
+57678,old_woman,a woman who is old
+57679,oldie golden_oldie,a song that was formerly popular
+57680,oldness,the opposite of youngness
+57681,oldness,the quality of being old; the opposite of newness
+57682,oldster old_person senior_citizen golden_ager,an elderly person
+57683,oleander rose_bay Nerium_oleander,an ornamental but poisonous flowering shrub having narrow evergreen leaves and clusters of fragrant white to pink or red flowers: native to East Indies but widely cultivated in warm regions
+57684,oleander_fern Oleandra_neriiformis Oleandra_mollis,tropical fern having leathery fronds resembling oleander; found from Asia to Polynesia
+57685,oleaster,any of several shrubs of the genus Elaeagnus having silver-white twigs and yellow flowers followed by olivelike fruits
+57686,olecranon olecranon_process,process of the ulna that forms the outer bump of the elbow and fits into the fossa of the humerus when the arm is extended
+57687,oleic_acid,a colorless oily liquid occurring as a glyceride; it is the major fatty acid in olive oil and canola oil; used in making soap and cosmetics and ointments and lubricating oils
+57688,oleo_oil,obtained from beef fat; used in making margarine and soap and in lubrication
+57689,oleoresin,a naturally occurring mixture of a resin and an essential oil; obtained from certain plants
+57690,oleoresin_capiscum,an oleoresin extracted from the capsicum pepper plant
+57691,olfactory_bulb,one of two enlargements at the terminus of the olfactory nerve at the base of the brain just above the nasal cavities
+57692,olfactory_nerve nervii_olfactorii first_cranial_nerve,a collective term for numerous olfactory filaments in the nasal mucosa
+57693,olfactory_property smell aroma odor odour scent,any property detected by the olfactory system
+57694,oligarch,one of the rulers in an oligarchy
+57695,oligarchy,a political system governed by a few people; "one of his cardinal convictions was that Britain was not run as a democracy but as an oligarchy"; "the big cities were notoriously in the hands of the oligarchy of local businessmen"
+57696,oligochaete oligochaete_worm,hermaphroditic terrestrial and aquatic annelids having bristles borne singly along the length of the body
+57697,oligodactyly,congenital condition in which some fingers or toes are missing
+57698,oligodendrocyte,a cell of the oligodendroglia
+57699,oligodendroglia oligodendria,tissue consisting of glial cells with sheetlike processes that form the myelin sheath of nerve fibers
+57700,oligodontia,congenital condition in which some of the teeth are missing
+57701,oligomenorrhea,abnormally light or infrequent menstruation
+57702,oligonucleotide oligo,(biochemistry) a polynucleotide whose molecules contain relatively few nucleotides
+57703,oligopoly,(economics) a market in which control over the supply of a commodity is in the hands of a small number of producers and each one can influence prices and affect competitors
+57704,oligosaccharide,any of the carbohydrates that yield only a few monosaccharide molecules on complete hydrolysis
+57705,oligospermia,insufficient spermatozoa in the semen
+57706,oliguria,abnormally small production of urine; can be a symptom of kidney disease or obstruction of the urinary tract or edema or an imbalance of fluids and electrolytes in the body
+57707,oliguria,production of an abnormally small amount of urine
+57708,olive,small ovoid fruit of the European olive tree; important food and source of oil
+57709,olive,hard yellow often variegated wood of an olive tree; used in cabinetwork
+57710,olive,one-seeded fruit of the European olive tree usually pickled and used as a relish
+57711,olive,a yellow-green color of low brightness and saturation
+57712,olive European_olive_tree Olea_europaea,evergreen tree cultivated in the Mediterranean region since antiquity and now elsewhere; has edible shiny black fruits
+57713,olive-tree_agaric Pleurotus_phosphoreus,red luminescent mushroom of Europe
+57714,olive_brown,a shade of brown tinged with green
+57715,olive_drab,a cloth of an olive-brown color used for military uniforms
+57716,olive_drab drab,a dull greyish to yellowish or light olive brown
+57717,olive_drab olive-drab_uniform,military uniform of the United States Army; made from cloth of a dull olive color
+57718,olive_green olive-green,a color that is lighter and greener than olive
+57719,olive_oil,oil from olives
+57720,olive_tree,a tree of the genus Olea cultivated for its fruit
+57721,olivenite,rare green to black mineral consisting of hydrated copper arsenate that is found in copper deposits
+57722,olivine,a mineral consisting of magnesium iron silicate; a source of magnesium
+57723,olla_podrida Spanish_burgoo,Spanish version of burgoo
+57724,olm Proteus_anguinus,European aquatic salamander with permanent external gills that lives in caves
+57725,ology,an informal word (abstracted from words with this ending) for some unidentified branch of knowledge
+57726,olympic_salamander Rhyacotriton_olympicus,small large-eyed semiaquatic salamander of the United States Northwest
+57727,ombu bella_sombra Phytolacca_dioica,fast-growing herbaceous evergreen tree of South America having a broad trunk with high water content and dark green oval leaves
+57728,ombudsman,a government appointee who investigates complaints by private persons against the government
+57729,omega,the last (24th) letter of the Greek alphabet
+57730,omega Z,the ending of a series or sequence; "the Alpha and the Omega, the first and the last, the beginning and the end"--Revelation
+57731,omega-3_fatty_acid omega-3,a polyunsaturated fatty acid whose carbon chain has its first double valence bond three carbons from the beginning
+57732,omega-6_fatty_acid omega-6,a polyunsaturated fatty acid whose carbon chain has its first double valence bond six carbons from the beginning
+57733,omelet omelette,beaten eggs or an egg mixture cooked until just set; may be folded around e.g. ham or cheese or jelly
+57734,omelet_pan omelette_pan,pan for cooking omelets
+57735,omen portent presage prognostic prognostication prodigy,a sign of something about to happen; "he looked for an omen before going into battle"
+57736,omentum,a fold of peritoneum supporting the viscera
+57737,omeprazole Prilosec,antacid (trade name Prilosec) that suppresses acid secretion in the stomach
+57738,omerta,a code of silence practiced by the Mafia; a refusal to give evidence to the police about criminal activities
+57739,omicron,the 15th letter of the Greek alphabet
+57740,omission,something that has been omitted; "she searched the table for omissions"
+57741,omission,neglecting to do something; leaving out or passing over something
+57742,omission deletion,any process whereby sounds or words are left out of spoken words or phrases
+57743,omission skip,a mistake resulting from neglect
+57744,ommastrephes,extremely active cylindrical squid with short strong arms and large rhombic terminal fins
+57745,ommatidium,any of the numerous small cone-shaped eyes that make up the compound eyes of some arthropods
+57746,omnibus,an anthology of articles on a related subject or an anthology of the works of a single author
+57747,omnidirectional_antenna nondirectional_antenna,an antenna that sends or receives signals equally in all directions
+57748,omnipotence,the state of being omnipotent; having unlimited power
+57749,omnirange omnidirectional_range omnidirectional_radio_range,a navigational system consisting of a network of radio beacons that provide aircraft with information about exact position and bearing
+57750,omniscience,the state of being omniscient; having infinite knowledge
+57751,omnivore,a person who eats all kinds of foods
+57752,omnivore,an animal that feeds on both animal and vegetable substances
+57753,omophagia,the eating of raw food
+57754,omphaloskepsis navel-gazing,literally, the contemplation of one's navel, which is an idiom usually meaning complacent self-absorption
+57755,on-license,a license to sell liquor for consumption on the premises
+57756,on_the_road on_tour,travelling about; "they took the show on the road"; "they lost all their games on the road"
+57757,onager Equus_hemionus,Asiatic wild ass
+57758,once-over look-over,a swift cursory examination or inspection; "I gave him the once-over"
+57759,onchocerciasis river_blindness,infestation with slender threadlike roundworms (filaria) deposited under the skin by the bite of black fleas; when the eyes are involved it can result in blindness; common in Africa and tropical America
+57760,oncidium dancing_lady_orchid butterfly_plant butterfly_orchid,any orchid of the genus Oncidium: characterized by slender branching sprays of small yellow and brown flowers; often grown as houseplants
+57761,oncogene transforming_gene,a gene that disposes normal cells to change into cancerous tumor cells
+57762,oncologist,a specialist in oncology
+57763,oncology,the branch of medicine concerned with the study and treatment of tumors
+57764,one,a single person or thing; "he is the best one"; "this is the one I ordered"
+57765,one 1 I ace single unity,the smallest whole number or a numeral representing this number; "he has the one but will need a two and three to go with it"; "they had lunch at one"
+57766,one-and-one,a foul shot that must be made in order to earn the right to a second foul shot
+57767,one-billionth billionth,one part in a billion equal parts
+57768,one-dimensional_language,a programming language whose expressions are represented by strings of characters
+57769,one-dimensionality linearity,the property of having one dimension
+57770,one-eighth eighth,one part in eight equal parts
+57771,one-fifth fifth fifth_part twenty_percent,one part in five equal parts
+57772,one-flowered_wintergreen one-flowered_pyrola Moneses_uniflora Pyrola_uniflora,delicate evergreen dwarf herb of north temperate regions having a solitary white terminal flower; sometimes placed in genus Pyrola
+57773,one-fourth fourth one-quarter quarter fourth_part twenty-five_percent quartern,one of four equal parts; "a quarter of a pound"
+57774,one-half half,one of two equal parts of a divisible whole; "half a loaf"; "half an hour"; "a century and one half"
+57775,one-hitter 1-hitter,a game in which a pitcher allows the opposing team only one hit
+57776,one-hundred-millionth,one part in a hundred million equal parts
+57777,one-hundred-thousandth,one part in a hundred thousand equal parts
+57778,one-hundredth hundredth one_percent,one part in a hundred equal parts
+57779,one-liner,a one-line joke
+57780,one-millionth millionth,one part in a million equal parts
+57781,one-night_stand,a brief sexual encounter lasting only for a single night; "he ran through a series of loveless one-night stands"
+57782,one-night_stand,a performance in one place on one night only
+57783,one-ninth ninth,one part in nine equal parts
+57784,one-off,a happening that occurs only once and is not repeated
+57785,one-quadrillionth quadrillionth,one part in a quadrillion equal parts
+57786,one-quintillionth quintillionth,one part in a quintillion equal parts
+57787,one-seventh seventh,one part in seven equal parts
+57788,one-sixteenth sixteenth sixteenth_part,one part in sixteen equal parts
+57789,one-sixth sixth,one part in six equal parts
+57790,one-sixtieth sixtieth,one part in sixty equal parts
+57791,one-sixty-fourth sixty-fourth,one part in sixty-four equal parts
+57792,one-spot,a domino or die whose upward face shows one pip
+57793,one-step,an early ballroom dance; precursor to the fox-trot
+57794,one-ten-thousandth ten-thousandth,one part in ten thousand equal parts
+57795,one-tenth tenth tenth_part ten_percent,a tenth part; one part in ten equal parts
+57796,one-third third tierce,one of three equal parts of a divisible whole; "it contains approximately a third of the minimum daily requirement"
+57797,one-thirty-second thirty-second thirty-second_part,one part in thirty-two equal parts
+57798,one-thousandth thousandth,one part in a thousand equal parts
+57799,one-trillionth trillionth,one part in a trillion equal parts
+57800,one-twelfth twelfth twelfth_part duodecimal,one part in twelve equal parts
+57801,one-upmanship,the practice of keeping one jump ahead of a friend or competitor
+57802,one-way_light_time OWLT,the elapsed time it takes for light (or radio signals) to travel between the Earth and a celestial object
+57803,one-way_street,unilateral interaction; "cooperation cannot be a one-way street"
+57804,one-way_street,a street on which vehicular traffic is allowed to move in only one direction
+57805,one_of_the_boys,a man who has been socially accepted into a group of other men; "he quickly became one of the boys"
+57806,oneiromancer,someone who divines through the interpretation of dreams
+57807,oneiromancy,divination through the interpretation of dreams
+57808,oneness unity,the quality of being united into one
+57809,onion,the bulb of an onion plant
+57810,onion,an aromatic flavorful vegetable
+57811,onion onion_plant Allium_cepa,bulbous plant having hollow leaves cultivated worldwide for its rounded edible bulb
+57812,onion_bagel,bagel flavored with onion
+57813,onion_bread,bread containing finely minced onions
+57814,onion_butter,butter blended with minced onion
+57815,onion_dome,a dome that is shaped like a bulb; characteristic of Russian and Byzantine church architecture
+57816,onion_mildew Peronospora_destructor,fungus causing a downy mildew on onions
+57817,onion_roll,yeast-raised roll flavored with onion
+57818,onion_salt,ground dried onion and salt
+57819,onion_smut Urocystis_cepulae,smut fungus causing blackish blisters on scales and leaves of onions; especially destructive to seedlings
+57820,onion_stem Lepiota_cepaestipes,a white agaric that tends to cluster and has a club-shaped base
+57821,onion_thrips onion_louse Thrips_tobaci,injurious to onion plants and sometimes tobacco
+57822,onion_yellow-dwarf_virus,the virus that produces stunting and yellowing of the leaves of onion plants
+57823,onion_yellow_dwarf,the yellow dwarf disease of onion plants
+57824,onionskin flimsy,a thin strong lightweight translucent paper used especially for making carbon copies
+57825,onlooker looker-on,someone who looks on
+57826,onomancer,one who practices onomancy
+57827,onomancy,divination by the letters of a name
+57828,onomasticon,a list of proper nouns naming persons or places
+57829,onomastics,the branch of lexicology that studies the forms and origins of proper names
+57830,onomatomania,obsession with a particular word which the person uses repeatedly or which intrudes into consciousness
+57831,onomatopoeia,using words that imitate the sound they denote
+57832,onrush,a forceful forward rush or flow; "from the bow she stared at the mesmerising onrush of the sea where it split and foamed"; "the explosion interrupted the wild onrush of her thoughts"
+57833,onset oncoming,the beginning or early stages; "the onset of pneumonia"
+57834,onslaught,a sudden and severe onset of trouble
+57835,ontology,(computer science) a rigorous and exhaustive organization of some knowledge domain that is usually hierarchical and contains all the relevant entities and their relations
+57836,ontology,the metaphysical study of the nature of being and existence
+57837,onycholysis,separation of a nail from its normal attachment to the nail bed
+57838,onychophoran velvet_worm peripatus,any of numerous velvety-skinned wormlike carnivorous animals common in tropical forests having characteristics of both arthropods and annelid worms
+57839,onychosis,any disease or disorder of the nails
+57840,onyx,a chalcedony with alternating black and white bands; used in making cameos
+57841,oocyte,a female gametocyte that develops into an ovum after two meiotic divisions
+57842,oogenesis,development of ova
+57843,oology,the branch of zoology that studies eggs (especially birds' eggs and their size, shape, coloration, and number)
+57844,oolong,Chinese tea leaves that have been partially fermented before being dried
+57845,oophorectomy ovariectomy,surgical removal of one of both ovaries
+57846,oophoritis,inflammation of one or both ovaries
+57847,oophorosalpingectomy,surgical removal of one or both ovaries and the corresponding Fallopian tubes
+57848,oosphere,a gamete; used especially of lower plants
+57849,oospore,a thick-walled sexual spore that develops from a fertilized oosphere in some algae and fungi
+57850,ootid,mature ovum after penetration by sperm but before the formation of a zygote
+57851,ooze_leather,a very soft leather made from the skins of calves and having a suede finish on the flesh side
+57852,op_art,a style of abstractionism popular in the 1960s; produces dramatic visual effects with colors and contrasts that are difficult for the eye to resolve
+57853,opacification,the process of becoming cloudy or opaque
+57854,opacity,the phenomenon of not permitting the passage of electromagnetic radiation
+57855,opacity opaqueness,incomprehensibility resulting from obscurity of meaning
+57856,opacity opaqueness,the quality of being opaque to a degree; the degree to which something reduces the passage of light
+57857,opah moonfish Lampris_regius,large elliptical brightly colored deep-sea fish of Atlantic and Pacific and Mediterranean
+57858,opal,a translucent mineral consisting of hydrated silica of variable color; some varieties are used as gemstones
+57859,opal_glass milk_glass,a milky white translucent or opaque glass
+57860,opalescence iridescence,the visual property of something having a milky brightness and a play of colors from the surface
+57861,opaque_gem,a gemstone that is opaque
+57862,open,a tournament in which both professionals and amateurs may play
+57863,open clear,a clear or unobstructed space or expanse of land or water; "finally broke out of the forest into the open"
+57864,open surface,information that has become public; "all the reports were out in the open"; "the facts had been brought to the surface"
+57865,open-air_market open-air_marketplace market_square,a public marketplace where food and merchandise is sold
+57866,open-door_policy open_door,the policy of granting equal trade opportunities to all countries
+57867,open-end_credit revolving_credit charge_account_credit,a consumer credit line that can be used up to a certain limit or paid down at any time
+57868,open-end_wrench tappet_wrench,a wrench having parallel jaws at fixed separation (often on both ends of the handle)
+57869,open-face_sandwich open_sandwich,sandwich without a covering slice of bread
+57870,open-heart_surgery,heart surgery in which the rib cage is spread open, the heart is stopped and blood is detoured through a heart-lung machine while a heart valve or coronary artery is surgically repaired
+57871,open-hearth_furnace,a furnace for making steel in which the steel is placed on a shallow hearth and flames of burning gas and hot air play over it
+57872,open-hearth_process,a process for making steel using an open-hearth furnace
+57873,open_account,an unpaid credit order
+57874,open_chain,a chain of atoms in a molecule whose ends are not joined to form a ring
+57875,open_circuit,an incomplete electrical circuit in which no current flows
+57876,open_door,freedom of access; "he maintained an open door for all employees"
+57877,open_frame break,any frame in which a bowler fails to make a strike or spare; "the break in the eighth frame cost him the match"
+57878,open_house,an informal party of people with hospitality for all comers
+57879,open_interval unbounded_interval,an interval that does not include its endpoints
+57880,open_letter,a letter of protest; addressed to one person but intended for the general public
+57881,open_marriage,a marriage in which each partner is free to enter into extraneous sexual relationships without guilt or jealousy from the other
+57882,open_order,a military formation leaving enough space between ranks to allow an inspecting officer to pass
+57883,open_primary,a primary in which any registered voter can vote (but must vote for candidates of only one party)
+57884,open_secret,something that is supposed to be secret but is generally known; "their love affair was an open secret"
+57885,open_sesame,a magical command; used by Ali Baba
+57886,open_sesame,any very successful means of achieving a result
+57887,open_shop,a company whose workers are hired without regard to their membership in a labor union
+57888,open_sight,rear gunsight having an open notch instead of a peephole or telescope
+57889,open_society,a society that allows its members considerable freedom (as in a democracy); "America's open society has made it an easy target for terrorists"
+57890,open_weave,a weave in which warp threads never come together, leaving interstices in the fabric
+57891,openbill,stork with a grooved bill whose upper and lower parts touch only at the base and tip
+57892,opener,the first event in a series; "she played Chopin for her opener"; "the season's opener was a game against the Yankees"
+57893,opener,a hand tool used for opening sealed containers (bottles or cans)
+57894,opening,opportunity especially for employment or promotion; "there is an opening in the sales department"
+57895,opening,a ceremony accompanying the start of some enterprise
+57896,opening,the initial part of the introduction; "the opening established the basic theme"
+57897,opening,a vacant or unobstructed space that is man-made; "they left a small opening for the cat at the bottom of the door"
+57898,opening,becoming open or being made open; "the opening of his arms was the sign I was waiting for"
+57899,opening,the act of opening something; "the ray of light revealed his cautious opening of the door"
+57900,opening chess_opening,a recognized sequence of moves at the beginning of a game of chess; "he memorized all the important chess openings"
+57901,opening gap,an open or empty space in or between things; "there was a small opening between the trees"; "the explosion made a gap in the wall"
+57902,opening opening_night curtain_raising,the first performance (as of a theatrical production); "the opening received good critical reviews"
+57903,opening_line,the first line of a piece of writing (as a newspaper story)
+57904,openness,without obstructions to passage or view; "the openness of the prairies"
+57905,openness nakedness,characterized by an attitude of ready accessibility (especially about one's actions or purposes); without concealment; not secretive
+57906,openside_plane rabbet_plane,a woodworking plane designed to cut rabbets
+57907,openwork,ornamental work (such as embroidery or latticework) having a pattern of openings
+57908,opepe Nauclea_diderrichii Sarcocephalus_diderrichii,large African forest tree yielding a strong hard yellow to golden brown lumber; sometimes placed in genus Sarcocephalus
+57909,opera,a drama set to music; consists of singing with orchestral accompaniment and an orchestral overture and interludes
+57910,opera opera_house,a building where musical dramas are performed
+57911,opera_cloak opera_hood,a large cloak worn over evening clothes
+57912,opera_company,a company that produces operas
+57913,opera_star operatic_star,singer of lead role in an opera
+57914,operagoer,a patron of the opera
+57915,operand,a quantity upon which a mathematical operation is performed
+57916,operant_conditioning,conditioning in which an operant response is brought under stimulus control by virtue of presenting reinforcement contingent upon the occurrence of the operant response
+57917,operating_budget,a budget for current expenses as distinct from financial transactions or permanent improvements
+57918,operating_capability performance_capability,the capability of a technological system to perform as intended
+57919,operating_capital,capital available for the operations of a firm (e.g. manufacturing or transportation) as distinct from financial transactions and long-term improvements
+57920,operating_expense operating_cost overhead budget_items,the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes
+57921,operating_microscope,binocular microscope used in surgery to provide a clear view of small and inaccessible parts of the body (as in microsurgery)
+57922,operating_procedure,a procedure for operating something or for dealing with a given situation
+57923,operating_room OR operating_theater operating_theatre surgery,a room in a hospital equipped for the performance of surgical operations; "great care is taken to keep the operating rooms aseptic"
+57924,operating_system OS,(computer science) software that controls the execution of computer programs and may provide various services
+57925,operating_table,table on which the patient lies during a surgical operation
+57926,operation,the state of being in effect or being operative; "that rule is no longer in operation"
+57927,operation,(computer science) data processing in which the result is completely specified by a rule (especially the processing that results from a single instruction); "it can perform millions of operations per second"
+57928,operation,a business especially one run on a large scale; "a large-scale farming operation"; "a multinational operation"; "they paid taxes on every stage of the operation"; "they had to consolidate their operations"
+57929,operation,a planned activity involving many people performing various actions; "they organized a rescue operation"; "the biggest police operation in French history"; "running a restaurant is quite an operation"; "consolidate the companies various operations"
+57930,operation,the activity of operating something (a machine or business etc.); "her smooth operation of the vehicle gave us a surprisingly comfortable ride"
+57931,operation functioning performance,process or manner of functioning or operating; "the power of its engine determines its operation"; "the plane's operation in high winds"; "they compared the cooking performance of each oven"; "the jet's performance conformed to high standards"
+57932,operation military_operation,activity by a military or naval force (as a maneuver or campaign); "it was a joint operation of the navy and air force"
+57933,operation procedure,a process or series of acts especially of a practical or mechanical nature involved in a particular form of work; "the operations in building a house"; "certain machine tool operations"
+57934,operation surgery surgical_operation surgical_procedure surgical_process,a medical procedure involving an incision with instruments; performed to repair damage or arrest disease in a living body; "they will schedule the operation as soon as an operating room is available"; "he died while undergoing surgery"
+57935,operation_code order_code,the portion of a set of operation descriptions that specifies the operation to be performed; the set of operations in a computer
+57936,operational_cell,a terrorist cell that performs clandestine activities
+57937,operational_damage operational_casualty,loss of military equipment in field operations
+57938,operationalism,(philosophy) the doctrine that the meaning of a proposition consists of the operations involved in proving or applying it
+57939,operations trading_operations,financial transactions at a brokerage; having to do with the execution of trades and keeping customer records
+57940,operations_research,research designed to determine most efficient way to do something
+57941,operative_field,the area that is open during surgery
+57942,operator,(mathematics) a symbol or function representing a mathematical operation
+57943,operator,a speculator who trades aggressively on stock or commodity markets
+57944,operator,someone who owns or operates a business; "who is the operator of this franchise?"
+57945,operator manipulator,an agent that operates some apparatus or machine; "the operator of the switchboard"
+57946,operator_gene,a gene that activates the production of messenger RNA by adjacent structural genes
+57947,operculum,a hard flap serving as a cover for (a) the gill slits in fishes or (b) the opening of the shell in certain gastropods when the body is retracted
+57948,operetta light_opera,a short amusing opera
+57949,operon,a segment of DNA containing adjacent genes including structural genes and an operator gene and a regulatory gene
+57950,ophidism,poisoning by snake venom
+57951,ophiolatry serpent-worship,the worship of snakes
+57952,ophryon,the craniometric point in the midline of the forehead immediately above the orbits
+57953,ophthalmectomy,surgical removal of an eye
+57954,ophthalmia ophthalmitis,severe conjunctivitis
+57955,ophthalmia_neonatorum,ophthalmia in newborns; contracted while passing through the birth canal; usually prevented with silver nitrate drops
+57956,ophthalmic_artery arteria_ophthalmica,a branch of the internal carotid artery that supplies the eye and neighboring structures
+57957,ophthalmic_vein vena_ophthalmica,either of two veins that serve the eye; empties into the cavernous sinus
+57958,ophthalmologist eye_doctor oculist,a medical doctor specializing in the diagnosis and treatment of diseases of the eye
+57959,ophthalmology,the branch of medicine concerned with the eye and its diseases
+57960,ophthalmoplegia,paralysis of the motor nerves of the eye
+57961,ophthalmoscope,medical instrument for examining the retina of the eye
+57962,ophthalmoscopy,examination of the interior of an eye using an ophthalmoscope
+57963,opiate,a narcotic drug that contains opium or an opium derivative
+57964,opinion legal_opinion judgment judgement,the legal document stating the reasons for a judicial decision; "opinions are usually written by a single judge"
+57965,opinion ruling,the reason for a court's judgment (as opposed to the decision itself)
+57966,opinion sentiment persuasion view thought,a personal belief or judgment that is not founded on proof or certainty; "my opinion differs from yours"; "I am not of your persuasion"; "what are your thoughts on Haiti?"
+57967,opinion view,a message expressing a belief about something; the expression of a belief that is held with confidence but not substantiated by positive knowledge or proof; "his opinions appeared frequently on the editorial page"
+57968,opisthorchiasis,infestation with flukes obtained from eating raw fish; common in eastern Asia
+57969,opisthotonos,severe spasm in which the back arches and the head bends back and heels flex toward the back
+57970,opium,an addictive narcotic extracted from seed capsules of the opium poppy
+57971,opium_addict opium_taker,someone addicted to opium
+57972,opium_den,a building where opium is sold and used
+57973,opium_poppy Papaver_somniferum,southwestern Asian herb with greyish leaves and white or reddish flowers; source of opium
+57974,opopanax,an odorous gum resin formerly used in medicines
+57975,opossum possum,nocturnal arboreal marsupial having a naked prehensile tail found from southern North America to northern South America
+57976,opossum_rat,terrestrial marsupials of southern South America that resemble shrews
+57977,opossum_shrimp,shrimp-like crustaceans whose females carry eggs and young in a pouch between the legs
+57978,opportuneness patness timeliness,timely convenience
+57979,opportunism self-interest self-seeking expedience,taking advantage of opportunities without regard for the consequences for others
+57980,opportunist self-seeker,a person who places expediency above principle
+57981,opportunistic_infection,any infection caused by a microorganism that does not normally cause disease in humans; occurs in persons with abnormally functioning immune systems (as AIDS patients or transplant patients receiving immunosuppressive drugs)
+57982,opportunity chance,a possibility due to a favorable combination of circumstances; "the holiday gave us the opportunity to visit Washington"; "now is your chance"
+57983,opportunity_cost,cost in terms of foregoing alternatives
+57984,opposition,a direction opposite to another
+57985,opposition,a body of people united in opposing something
+57986,opposition opponent opposite,a contestant that you are matched against
+57987,opposition oppositeness,the relation between opposed entities
+57988,oppression,the state of being kept down by unjust use of force or authority: "after years of oppression they finally revolted"
+57989,oppression oppressiveness,a feeling of being oppressed
+57990,oppression subjugation,the act of subjugating by cruelty; "the tyrant's oppression of the people"
+57991,oppressor,a person of authority who subjects others to undue pressures
+57992,opsin,retinal protein formed by the action of light on rhodopsin
+57993,opsonin,an antibody in blood serum that attaches to invading microorganisms and other antigens to make them more susceptible to the action of phagocytes
+57994,opsonization opsonisation,process whereby opsonins make an invading microorganism more susceptible to phagocytosis
+57995,optative_mood optative,a mood (as in Greek or Sanskrit) that expresses a wish or hope; expressed in English by modal verbs
+57996,optic_axis,in a doubly refracting crystal, the line in the direction of which no double refraction occurs; "a crystal may have either one or two optic axes"
+57997,optic_chiasma optic_chiasm chiasma_opticum,the crossing of the optic nerves from the two eyes at the base of the brain
+57998,optic_cup eyecup,(embryology) a two-walled cuplike depression that develops into the pigmented and sensory layers of the retina
+57999,optic_nerve nervus_opticus second_cranial_nerve optic_tract,the cranial nerve that serves the retina
+58000,optic_radiation radiatio_optica,a nerve pathway from the lateral geniculate body to the visual cortex
+58001,optical_bench,apparatus for observation and measurement of optical phenomena
+58002,optical_crown crown_glass optical_crown_glass,optical glass of low dispersion and low refractive index
+58003,optical_density transmission_density photographic_density absorbance,(physics) a measure of the extent to which a substance transmits light or other electromagnetic radiation
+58004,optical_device,a device for producing or controlling light
+58005,optical_disk optical_disc,a disk coated with plastic that can store digital data as tiny pits etched in the surface; is read with a laser that scans the surface
+58006,optical_fiber glass_fiber optical_fibre glass_fibre,a very thin fiber made of glass that functions as a waveguide for light; used in bundles to transmit images
+58007,optical_flint flint_glass,optical glass of high dispersion and high refractive index
+58008,optical_glass,clear homogeneous glass of known refractive index; used to make lenses
+58009,optical_illusion,an optical phenomenon that results in a false or deceptive visual impression
+58010,optical_instrument,an instrument designed to aid vision
+58011,optical_opacity,opacity to light
+58012,optical_phenomenon,a physical phenomenon related to or involving light
+58013,optical_pyrometer pyroscope,a pyrometer that uses the color of the light emitted by a hot object
+58014,optical_telescope,an astronomical telescope designed to collect and record light from cosmic sources
+58015,optician lens_maker,a worker who makes glasses for remedying defects of vision
+58016,optics,the branch of physics that studies the physical properties of light
+58017,optics,optical properties; "the optics of a telescope"
+58018,optimism,the optimistic feeling that all is going to turn out well
+58019,optimism,a general disposition to expect the best in all things
+58020,optimist,a person disposed to take a favorable view of things
+58021,optimization optimisation,the act of rendering optimal; "the simultaneous optimization of growth and profitability"; "in an optimization problem we seek values of the variables that lead to an optimal value of the function that is to be optimized"; "to promote the optimization and diversification of agricultural products"
+58022,optimum,most favorable conditions or greatest degree or amount possible under given circumstances
+58023,option,the right to buy or sell property at an agreed price; the right is purchased and if it is not exercised by a stated date the money is forfeited
+58024,option alternative choice,one of a number of things from which only one can be chosen; "what option did I have?"; "there is no other alternative"; "my only choice is to refuse"
+58025,optometrist oculist,a person skilled in testing for defects of vision in order to prescribe corrective glasses
+58026,optometry,the practice of an optometrist
+58027,orach orache,any of various herbaceous plants of the genus Atriplex that thrive in deserts and salt marshes
+58028,oracle,a prophecy (usually obscure or allegorical) revealed by a priest or priestess; believed to be infallible
+58029,oracle,a shrine where an oracular god is consulted
+58030,oral oral_exam oral_examination viva_voce viva,an examination conducted by spoken communication
+58031,oral_cancer,malignant neoplasm of the lips of mouth; most common in men over the age of 60
+58032,oral_contraception,contraception achieved by taking oral contraceptive pills
+58033,oral_contract,an agreement that is not in writing and is not signed by the parties but is a real existing contract that lacks only the formal requirement of a memorandum to render it enforceable in litigation
+58034,oral_herpes herpes_labialis cold_sore fever_blister,caused by herpes simplex virus type 1 (HSV-1)
+58035,oral_personality,(psychoanalysis) a personality characterized either by generous optimism or aggressive and ambitious selfishness; formed in early childhood by fixation during the oral stage of development
+58036,oral_sex head,oral stimulation of the genitals; "they say he gives good head"
+58037,oral_smear,alimentary tract smear of material obtained from the mouth
+58038,oral_stage oral_phase,(psychoanalysis) the first sexual and social stage of an infant's development; the mouth is the focus of the libido and satisfaction comes from suckling and chewing and biting
+58039,orange,any pigment producing the orange color
+58040,orange,round yellow to orange fruit of any of several citrus trees
+58041,orange orange_tree,any citrus tree bearing oranges
+58042,orange orangeness,orange color or pigment; any of a range of colors between red and yellow
+58043,orange-blossom_orchid Sarcochilus_falcatus,diminutive Australian orchid with loose racemes of fragrant white flowers with purple and orange markings on the lip
+58044,orange_bat orange_horseshoe_bat Rhinonicteris_aurantius,a common bat of northwestern Australia having orange or yellow fur
+58045,orange_daisy orange_fleabane Erigeron_aurantiacus,mat-forming herb of Turkestan with nearly double orange-yellow flowers
+58046,orange_grass nitweed pineweed pine-weed Hypericum_gentianoides,annual wiry-stemmed North American weed with minute scalelike leaves and small yellow flowers
+58047,orange_grove,grove of orange trees
+58048,orange_hawkweed Pilosella_aurantiaca Hieracium_aurantiacum,European hawkweed having flower heads with bright orange-red rays; a troublesome weed especially as naturalized in northeastern North America; sometimes placed in genus Hieracium
+58049,orange_juice,bottled or freshly squeezed juice of oranges
+58050,orange_liqueur,liqueur flavored with orange
+58051,orange_marmalade,marmalade made from oranges
+58052,orange_milkwort yellow_milkwort candyweed yellow_bachelor's_button Polygala_lutea,bog plant of pine barrens of southeastern United States having spikes of irregular yellow-orange flowers
+58053,orange_mushroom_pimple,a variety of mushroom pimple
+58054,orange_peel,strips of orange peel cooked in sugar and coated with sugar
+58055,orange_peel orange_rind,the rind of an orange
+58056,orange_pekoe pekoe,a superior grade of black tea; grown in India and Sri Lanka and Java
+58057,orange_sneezeweed owlclaws Helenium_hoopesii,stout perennial herb of western United States having flower heads with drooping orange-yellow rays; causes spewing sickness in sheep
+58058,orange_soda,orange-flavored carbonated drink
+58059,orange_toast,buttered toast with sugar and grated orange rind and a little orange juice
+58060,orange_tortrix tortrix Argyrotaenia_citrana,California moth whose larvae live in especially oranges
+58061,orange_yellow saffron,a shade of yellow tinged with orange
+58062,orange_zest,tiny bits of orange peel
+58063,orangeade,sweetened beverage of diluted orange juice
+58064,orangery,a place where oranges are grown; a plantation of orange trees in warm climes or a greenhouse in cooler areas
+58065,orangewood,fine-grained wood of an orange tree; used in fine woodwork
+58066,orangutan orang orangutang Pongo_pygmaeus,large long-armed ape of Borneo and Sumatra having arboreal habits
+58067,oration,an instance of oratory; "he delivered an oration on the decline of family values"
+58068,orator speechmaker rhetorician public_speaker speechifier,a person who delivers a speech or oration
+58069,oratory,addressing an audience formally (usually a long and rhetorical address and often pompous); "he loved the sound of his own oratory"
+58070,orb-weaving_spider,a spider that spins a circular (or near circular) web
+58071,orb_web,a circular spider web
+58072,orbiculate_leaf,circular or nearly circular leaf
+58073,orbit celestial_orbit,the (usually elliptical) path described by one celestial body in its revolution about another; "he plotted the orbit of the moon"
+58074,orbit electron_orbit,the path of an electron around the nucleus of an atom
+58075,orbit_period,the time it takes to complete one full orbit around a celestial body; "the orbit period depends on the altitude of the satellite"
+58076,orbital_plane,(astronomy) the plane on which a body is orbiting
+58077,orbital_rotation orbital_motion,motion of an object in an orbit around a fixed point; "satellites in orbital rotation"
+58078,orbitale orbital_point,the craniometric point at the lowest point on the lower edge of the orbit
+58079,orchard_grass cocksfoot cockspur Dactylis_glomerata,widely grown stout Old World hay and pasture grass
+58080,orchard_oriole Icterus_spurius,the male is chestnut-and-black
+58081,orchestra,a musical organization consisting of a group of instrumentalists including string players
+58082,orchestra,seating on the main floor in a theater
+58083,orchestra_pit pit,lowered area in front of a stage where an orchestra accompanies the performers
+58084,orchestration,an arrangement of a piece of music for performance by an orchestra or band
+58085,orchestration,an arrangement of events that attempts to achieve a maximum effect; "the skillful orchestration of his political campaign"
+58086,orchestration instrumentation,the act of arranging a piece of music for an orchestra and assigning parts to the different musical instruments
+58087,orchestrator,an arranger who writes for orchestras
+58088,orchid orchidaceous_plant,any of numerous plants of the orchid family usually having flowers of unusual shapes and beautiful colors
+58089,orchidalgia,pain in the testes
+58090,orchidectomy orchiectomy,surgical removal of one or both testicles
+58091,orchil archil cudbear,a purplish dye obtained from orchil lichens
+58092,orchiopexy,operation to bring an undescended testicle into the scrotum
+58093,orchis,any of various deciduous terrestrial orchids having fleshy tubers and flowers in erect terminal racemes
+58094,orchitis,inflammation of one or both testes; characterized by pain and swelling
+58095,orchotomy,surgical incision into the testis to obtain material for analysis (as in cases of abnormally low sperm count)
+58096,ordainer,a cleric who ordains; a cleric who admits someone to holy orders
+58097,ordeal,a severe or trying experience
+58098,ordeal trial_by_ordeal,a primitive method of determining a person's guilt or innocence by subjecting the accused person to dangerous or painful tests believed to be under divine control; escape was usually taken as a sign of innocence
+58099,order,established customary state (especially of society); "order ruled in the streets"; "law and order"
+58100,order,(biology) taxonomic group containing one or more families
+58101,order,a request for something to be made, supplied, or served; "I gave the waiter my order"; "the company's products were in such demand that they got more orders than their call center could handle"
+58102,order,(often plural) a command given by a superior (e.g., a military or law enforcement officer) that must be obeyed; "the British ships dropped anchor and waited for orders from London"
+58103,order,(architecture) one of original three styles of Greek architecture distinguished by the type of column and entablature used or a style developed from the original three by the Romans
+58104,order monastic_order,a group of person living under a religious rule; "the order of Saint Benedict"
+58105,order order_of_magnitude,a degree in a continuum of size or quantity; "it was on the order of a mile"; "an explosion of a low order of magnitude"
+58106,order ordering,the act of putting things in a sequential arrangement; "there were mistakes in the ordering of items on the list"
+58107,order purchase_order,a commercial document used to request someone to supply something in return for payment and providing specifications and quantities; "IBM received an order for a hundred computers"
+58108,order rules_of_order parliamentary_law parliamentary_procedure,a body of rules followed by an assembly
+58109,order_Myxobacteria Myxobacterales order_Myxobacterales Myxobacteriales order_Myxobacteriales,an order of higher bacteria
+58110,order_arms,a position in the manual of arms; the rifle is held vertically on the right side with the butt on the ground; often used as a command
+58111,order_book,a book in which customers' orders are entered; usually makes multiple copies of the order
+58112,order_form,a form to use when placing an order
+58113,order_of_magnitude magnitude,a number assigned to the ratio of two quantities; two quantities are of the same order of magnitude if one is less than 10 times as large as the other; the number of magnitudes that the quantities differ is specified to within a power of 10
+58114,order_of_the_day,the order of business for an assembly on a given day
+58115,order_paper order_book,a printed copy of the order of the day
+58116,orderer,someone who places an order to buy
+58117,orderer systematizer systematiser systemizer systemiser systematist,an organizer who puts things in order; "Aristotle was a great orderer of ideas"
+58118,ordering order ordination,logical or comprehensible arrangement of separate elements; "we shall consider these questions in the inverse order of their presentation"
+58119,orderliness methodicalness,the quality of appreciating method and system
+58120,orderliness order,a condition of regular or proper arrangement; "he put his desk in order"; "the machine is now in working order"
+58121,orderly,a soldier who serves as an attendant to a superior officer; "the orderly laid out the general's uniform"
+58122,orderly hospital_attendant,a male hospital attendant who has general duties that do not involve the medical treatment of patients
+58123,orderly_sergeant,the first sergeant of a company; duties formerly included the conveyance of orders
+58124,ordinal_number ordinal no.,the number designating place in an ordered sequence
+58125,ordinance,a statute enacted by a city government
+58126,ordinand,a person being ordained
+58127,ordinariness mundaneness mundanity,the quality of being commonplace and ordinary
+58128,ordinary,the expected or commonplace condition or situation; "not out of the ordinary"
+58129,ordinary,a clergyman appointed to prepare condemned prisoners for death
+58130,ordinary,a judge of a probate court
+58131,ordinary,(heraldry) any of several conventional figures used on shields
+58132,ordinary ordinary_bicycle,an early bicycle with a very large front wheel and small back wheel
+58133,ordinary_annuity,an annuity paid in a series of more or less equal payments at the end of equally spaced periods
+58134,ordinate,the value of a coordinate on the vertical axis
+58135,ordination,the status of being ordained to a sacred office
+58136,ordination ordinance,the act of ordaining; the act of conferring (or receiving) holy orders; "the rabbi's family was present for his ordination"
+58137,ore,a mineral that contains metal that is valuable enough to be mined
+58138,ore,a monetary subunit in Denmark and Norway and Sweden; 100 ore equal 1 krona
+58139,ore_bed,a stratum of ore
+58140,oregano marjoram pot_marjoram wild_marjoram winter_sweet Origanum_vulgare,aromatic Eurasian perennial
+58141,oreo oreo_cookie,chocolate cookie with white cream filling
+58142,organ,a government agency or instrument devoted to the performance of some specific function; "The Census Bureau is an organ of the Commerce Department"
+58143,organ,a periodical that is published by a special interest group; "the organ of the communist party"
+58144,organ,a fully differentiated structural and functional unit in an animal that is specialized for some particular function
+58145,organ pipe_organ,wind instrument whose sound is produced by means of pipes arranged in sets supplied with air from a bellows and controlled from a large complex musical keyboard
+58146,organ-grinder,a street musician who plays a hand organ or hurdy-gurdy
+58147,organ_donor,someone from whom an organ is taken for transplantation
+58148,organ_loft,a gallery occupied by a church organ
+58149,organ_of_Corti,the hearing organ of the inner ear; contains receptors that respond to sound waves
+58150,organ_of_hearing,the part of the ear that is responsible for sensations of sound
+58151,organ_pipe pipe pipework,the flues and stops on a pipe organ
+58152,organ_stop,a graduated set of organ pipes of like tone quality
+58153,organdy organdie,a sheer stiff muslin
+58154,organelle cell_organelle cell_organ,a specialized part of a cell; analogous to an organ; "the first organelle to be identified was the nucleus"
+58155,organic organic_fertilizer organic_fertiliser,a fertilizer that is derived from animal or vegetable matter
+58156,organic_brain_syndrome,mental abnormality resulting from disturbance of the structure or function of the brain
+58157,organic_chemistry,the chemistry of compounds containing carbon (originally defined as the chemistry of substances produced by living organisms but now extended to substances synthesized artificially)
+58158,organic_compound,any compound of carbon and another element or a radical
+58159,organic_disorder,disorder caused by a detectable physiological or structural change in an organ
+58160,organic_light-emitting_diode OLED,a self-luminous diode (it glows when an electrical field is applied to the electrodes) that does not require backlighting or diffusers
+58161,organic_phenomenon,(biology) a natural phenomenon involving living plants and animals
+58162,organic_process biological_process,a process occurring in living organisms
+58163,organicism,theory that the total organization of an organism rather than the functioning of individual organs is the determinant of life processes
+58164,organification,the process of organ formation
+58165,organism,a system considered analogous in structure or function to a living body; "the social organism"
+58166,organism being,a living thing that has (or can develop) the ability to act or function independently
+58167,organist,a person who plays an organ
+58168,organization organisation,a group of people who work together
+58169,organization organisation,the act of organizing a business or an activity related to a business; "he was brought in to supervise the organization of a new department"
+58170,organization organisation,the activity or result of distributing or disposing persons or things properly or methodically; "his organization of the work force was very efficient"
+58171,organization organisation system,an ordered manner; orderliness by virtue of being methodical and well organized; "his compulsive organization was not an endearing quality"; "we can't do it unless we establish some system around here"
+58172,organization_chart,a chart showing the lines of responsibility between departments of a large organization
+58173,organization_expense,the cost (over a period of five years) of organizing a new corporation or partnership
+58174,organization_man,an employee who sacrifices his own individuality for the good of an organization
+58175,organized_crime gangland gangdom,underworld organizations
+58176,organized_labor,employees who are represented by a labor union
+58177,organizer organiser arranger,a person who brings order and organization to an enterprise; "she was the organizer of the meeting"
+58178,organizer organiser labor_organizer,someone who enlists workers to join a union
+58179,organon,a system of principles for philosophic or scientific investigations; an instrument for acquiring knowledge
+58180,organophosphate,an insecticide that interferes with an insect's nervous system
+58181,organophosphate_nerve_agent,any of a series of nerve agents containing organophosphate compounds first synthesized by German chemists in 1936; in World War II the Germans tested them in concentration camps but not on the battlefield; Iraq is alleged to have used them against Iran and against the Kurds
+58182,organza,a fabric made of silk or a silklike fabric that resembles organdy
+58183,orgasm climax sexual_climax coming,the moment of most intense pleasure in sexual intercourse
+58184,orgy,secret rite in the cults of ancient Greek or Roman deities involving singing and dancing and drinking and sexual activity
+58185,orgy binge splurge,any act of immoderate indulgence; "an orgy of shopping"; "an emotional binge"; "a splurge of spending"
+58186,orgy debauch debauchery saturnalia riot bacchanal bacchanalia drunken_revelry,a wild gathering involving excessive drinking and promiscuity
+58187,oriel oriel_window,a projecting bay window corbeled or cantilevered out from a wall
+58188,oriental_cherry Japanese_cherry Japanese_flowering_cherry Prunus_serrulata,ornamental tree with inedible fruits widely cultivated in many varieties for its white blossoms
+58189,oriental_cockroach oriental_roach Asiatic_cockroach blackbeetle Blatta_orientalis,dark brown cockroach originally from orient now nearly cosmopolitan in distribution
+58190,oriental_plane Platanus_orientalis,large tree of southeastern Europe to Asia Minor
+58191,oriental_poppy Papaver_orientale,commonly cultivated Asiatic perennial poppy having stiff heavily haired leaves and bright scarlet or pink to orange flowers
+58192,oriental_spruce Picea_orientalis,evergreen tree of the Caucasus and Asia Minor used as an ornamental having pendulous branchlets
+58193,orientalism,the quality or customs or mannerisms characteristic of Asian civilizations; "orientalisms can be found in Mozart's operas"
+58194,orientalist,a specialist in oriental subjects
+58195,orientation,position or alignment relative to points of the compass or other specific directions
+58196,orientation,an integrated set of attitudes and beliefs
+58197,orientation,a person's awareness of self with regard to position and time and place and personal relationships
+58198,orientation,the act of orienting
+58199,orientation_course orientation,a course introducing a new situation or environment
+58200,orifice opening porta,an aperture or hole that opens into a bodily cavity; "the orifice into the aorta from the lower left chamber of the heart"
+58201,oriflamme,an inspiring symbol or ideal that serves as a rallying point in a struggle
+58202,oriflamme,a red or orange-red flag used as a standard by early French kings
+58203,origami,the Japanese art of folding paper into shapes representing objects (e.g., flowers or birds)
+58204,origanum,any of various fragrant aromatic herbs of the genus Origanum used as seasonings
+58205,origin,the source of something's existence or from which it derives or is derived; "the rumor had its origin in idle gossip"; "vegetable origins"; "mineral origin"; "origin in sensation"
+58206,origin,the point of intersection of coordinate axes; where the values of the coordinates are all zero
+58207,origin descent extraction,properties attributable to your ancestry; "he comes from good origins"
+58208,origin origination inception,an event that is a beginning; a first part or stage of subsequent events
+58209,original archetype pilot,something that serves as a model or a basis for making copies; "this painting is a copy of the original"
+58210,original_sin,a sin said to be inherited by all descendants of Adam; "Adam and Eve committed the original sin when they ate the forbidden fruit in the Garden of Eden"
+58211,originalism,the belief that the United States Constitution should be interpreted in the way the authors originally intended it
+58212,originality,the ability to think and act independently
+58213,originality,the quality of being new and original (not derived from something else)
+58214,origination_fee,a fee charged to a borrower (especially for a mortgage loan) to cover the costs of initiating the loan
+58215,originator conceiver mastermind,someone who creates new things
+58216,orinasal_phone orinasal,a speech sound produced with both the oral and nasal passages open (as French nasal vowels)
+58217,orlop_deck orlop fourth_deck,the fourth or lowest deck
+58218,ormer sea-ear Haliotis_tuberculata,an abalone found near the Channel Islands
+58219,ormolu,brass that looks like gold; used to decorate furniture
+58220,ornamental,any plant grown for its beauty or ornamental value
+58221,ornamentalism,the practice of ornamental display
+58222,ornamentation,the state of being ornamented
+58223,ornamentation embellishment,the act of adding extraneous decorations to something
+58224,ornateness elaborateness,an ornate appearance; being elaborately (even excessively) decorated
+58225,ornithine,an amino acid that does not occur in proteins but is important in the formation of urea
+58226,ornithischian ornithischian_dinosaur,herbivorous dinosaur with a pelvis like that of a bird
+58227,ornithologist bird_watcher,a zoologist who studies birds
+58228,ornithology,the branch of zoology that studies birds
+58229,ornithomimid,lightly built medium-sized dinosaur having extremely long limbs and necks with small heads and big brains and large eyes
+58230,ornithopod ornithopod_dinosaur,bipedal herbivorous dinosaur
+58231,orogeny,the process of mountain formation (especially by the upward displacement of the earth's crust)
+58232,oroide oreide,alloy of copper and tin and zinc; used in imitation gold jewelry
+58233,orology orography,the science of mountains
+58234,oropharynx,cavity formed by the pharynx at the back of the mouth
+58235,orphan,someone or something who lacks support or care or supervision
+58236,orphan,a child who has lost both parents
+58237,orphan,the first line of a paragraph that is set as the last line of a page or column
+58238,orphan,a young animal without a mother
+58239,orphan_site,a toxic waste area where the polluter could not be identified or the polluter refused to take action or pay for the cleanup
+58240,orphanage orphanhood,the condition of being a child without living parents; "his early orphanage shaped his character as an adult"
+58241,orphanage orphans'_asylum,a public institution for the care of orphans
+58242,orphenadrine Norflex,a skeletal muscle relaxant (trade name Norflex) used to treat severe muscle strain and Parkinsonism
+58243,orphrey,a richly embroidered edging on an ecclesiastical vestment
+58244,orpiment,a yellow mineral occurring in conjunction with realgar; an ore of arsenic
+58245,orpine orpin livelong live-forever Sedum_telephium,perennial northern temperate plant with toothed leaves and heads of small purplish-white flowers
+58246,orrery,planetarium consisting of an apparatus that illustrates the relative positions and motions of bodies in the solar system by rotation and revolution of balls moved by wheelwork; sometimes incorporated in a clock
+58247,orrisroot orris,fragrant rootstock of various irises especially Florentine iris; used in perfumes and medicines
+58248,orthicon image_orthicon,a now obsolete picture pickup tube in a television camera; electrons emitted from a photoemissive surface in proportion to the intensity of the incident light are focused onto the target causing secondary emission of electrons
+58249,orthochorea,a form of chorea in which spasms occur mainly when the patient is erect
+58250,orthochromatic_film,a photographic film sensitive to green and blue and violet light
+58251,orthoclase,a white or colored monoclinic feldspar
+58252,orthodontic_treatment,dental treatment that corrects irregularities of the teeth or of the relation of the teeth to surrounding anatomy; treatment is usually by braces or mechanical aids; "orthodontic treatment of facial abnormalities"
+58253,orthodontics orthodontia orthodonture dental_orthopedics dental_orthopaedics,the branch of dentistry dealing with the prevention or correction of irregularities of the teeth
+58254,orthodontist,a dentist specializing in the prevention or correction of irregularities of the teeth
+58255,orthodox_sleep nonrapid_eye_movement_sleep NREM_sleep nonrapid_eye_movement NREM,a recurring sleep state during which rapid eye movements do not occur and dreaming does not occur; accounts for about 75% of normal sleep time
+58256,orthodoxy,a belief or orientation agreeing with conventional standards
+58257,orthodoxy,the quality of being orthodox (especially in religion)
+58258,orthoepist,a practitioner of orthoepy (especially one of the 17th or 18th century scholars who proposed to reform English spelling so it would reflect pronunciation more closely)
+58259,orthoepy,a term formerly used for the part of phonology that dealt with the `correct' pronunciation of words and its relation to `correct' orthography
+58260,orthogonality,the quality of lying or intersecting at right angles
+58261,orthogonality perpendicularity orthogonal_opposition,the relation of opposition between things at right angles
+58262,orthography writing_system,a method of representing the sounds of a language by written or printed symbols
+58263,orthomyxovirus,a group of viruses including those causing influenza
+58264,orthopedics orthopaedics,the branch of medical science concerned with disorders or deformities of the spine and joints
+58265,orthopedist orthopaedist,a specialist in correcting deformities of the skeletal system (especially in children)
+58266,orthopnea,form of dyspnea in which the person can breathe comfortably only when standing or sitting erect; associated with asthma and emphysema and angina pectoris
+58267,orthopter ornithopter,heavier-than-air craft that is propelled by the flapping of wings
+58268,orthopterous_insect orthopteron orthopteran,any of various insects having leathery forewings and membranous hind wings and chewing mouthparts
+58269,orthoptics,treatment of defects of binocular vision (such as strabismus and amblyopia) by nonsurgical measures (especially by exercises to strengthen the eye muscles)
+58270,orthoptist,a specialist in orthoptics
+58271,orthoscope,an ophthalmoscope with a layer of water to neutralize the refraction of the cornea
+58272,orthostatic_hypotension postural_hypotension,low blood pressure occurring in some people when they stand up
+58273,orthotropous_ovule,a completely straight ovule with the micropyle at the apex
+58274,ortolan ortolan_bunting Emberiza_hortulana,brownish Old World bunting often eaten as a delicacy
+58275,ortygan,any of several East Indian birds
+58276,oryx pasang,large African antelope with long straight nearly upright horns
+58277,orzo,pasta shaped like pearls of barley; frequently prepared with lamb in Greek cuisine
+58278,os,a mouth or mouthlike opening
+58279,osage_orange bow_wood mock_orange Maclura_pomifera,small shrubby deciduous yellowwood tree of south central United States having spines, glossy dark green leaves and an inedible fruit that resembles an orange; its hard orange-colored wood used for bows by Native Americans; frequently planted as boundary hedge
+58280,oscheocele oscheocoele,swelling of the scrotum
+58281,oscillation,the process of oscillating between states
+58282,oscillation vibration,(physics) a regular periodic variation in value about a mean
+58283,oscillator,generator that produces sonic oscillations or alternating current
+58284,oscillogram,the recording produced by an oscillograph
+58285,oscillograph,a device for making a record of the wave forms of fluctuating voltages or currents
+58286,oscilloscope scope cathode-ray_oscilloscope CRO,electronic equipment that provides visual images of varying electrical quantities
+58287,oscine oscine_bird,passerine bird having specialized vocal apparatus
+58288,oscitancy oscitance,drowsiness and dullness manifested by yawning
+58289,osculation,(mathematics) a contact of two curves (or two surfaces) at which they have a common tangent
+58290,osier,flexible twig of a willow tree
+58291,osier,any of various willows having pliable twigs used in basketry and furniture
+58292,osmiridium iridosmine,a hard and corrosion resistant mineral that is a natural alloy of osmium and iridium (usually containing small amounts of rhodium and platinum); used in needles and pen nibs etc.
+58293,osmium Os atomic_number_76,a hard brittle blue-grey or blue-black metallic element that is one of the platinum metals; the heaviest metal known
+58294,osmoreceptor,sensory end organ that responds to changes in osmotic pressure
+58295,osmosis,(biology, chemistry) diffusion of molecules through a semipermeable membrane from a place of higher concentration to a place of lower concentration until the concentration on both sides is equal
+58296,osmotic_pressure,(physical chemistry) the pressure exerted by a solution necessary to prevent osmosis into that solution when it is separated from the pure solvent by a semipermeable membrane
+58297,osprey fish_hawk fish_eagle sea_eagle Pandion_haliaetus,large harmless hawk found worldwide that feeds on fish and builds a bulky nest often occupied for years
+58298,ossicle bonelet ossiculum,a small bone; especially one in the middle ear
+58299,ossification,the calcification of soft tissue into a bonelike material
+58300,ossification,the process of becoming rigidly fixed in a conventional pattern of thought or behavior
+58301,ossification,the developmental process of bone formation
+58302,ossification conformity,hardened conventionality
+58303,osso_buco,sliced veal knuckle or shin bone cooked with olive oil and wine and tomatoes and served with rice or vegetables
+58304,ossuary,any receptacle for the burial of human bones
+58305,osteitis,inflammation of a bone as a consequence of infection or trauma or degeneration
+58306,ostensive_definition,a definition that points out or exhibits instances of the term defined
+58307,ostentation,pretentious or showy or vulgar display
+58308,ostentation fanfare flash,a gaudy outward display
+58309,ostentation ostentatiousness pomposity pompousness pretentiousness puffiness splashiness inflation,lack of elegance as a consequence of being pompous and puffed up with vanity
+58310,osteoarthritis degenerative_arthritis degenerative_joint_disease,chronic breakdown of cartilage in the joints; the most common form of arthritis occurring usually after middle age
+58311,osteoblast bone-forming_cell,a cell from which bone develops
+58312,osteoblastoma,benign tumor of bone and fibrous tissue; occurs in the vertebrae or femur or tibia or arm bones (especially in young adults)
+58313,osteochondroma,benign tumor containing both bone and cartilage; usually occurs near the end of a long bone
+58314,osteoclasis,treatment of a skeletal deformity by intentionally fracturing a bone
+58315,osteoclast,cell that functions in the breakdown and resorption of bone tissue
+58316,osteocyte,mature bone cell
+58317,osteodystrophy,defective bone development; usually attributable to renal disease or to disturbances in calcium and phosphorus metabolism
+58318,osteogenesis_imperfecta,autosomal dominant disorder of connective tissue characterized by brittle bones that fracture easily
+58319,osteologist osteologer,an anatomist who is skilled is osteology
+58320,osteology,the branch of anatomy that studies the bones of the vertebrate skeleton
+58321,osteolysis,lysis of bone caused by disease or infection or inadequate blood supply
+58322,osteoma,a slow growing benign tumor of consisting of bone tissue; usually on the skull or mandible
+58323,osteomalacia,abnormal softening of bones caused by deficiencies of phosphorus or calcium or vitamin D
+58324,osteomyelitis,an inflammation of bone and bone marrow (usually caused by bacterial infection)
+58325,osteopath osteopathist,a therapist who manipulates the skeleton and muscles
+58326,osteopathy,therapy based on the assumption that restoring health is best accomplished by manipulating the skeleton and muscles
+58327,osteopetrosis Albers-Schonberg_disease marble_bones_disease,an inherited disorder characterized by an increase in bone density; in severe forms the bone marrow cavity may be obliterated
+58328,osteophyte,small abnormal bony outgrowth
+58329,osteoporosis,abnormal loss of bony tissue resulting in fragile porous bones attributable to a lack of calcium; most common in postmenopausal women
+58330,osteosarcoma osteogenic_sarcoma,malignant bone tumor; most common in children and young adults where it tends to affect the femur
+58331,osteosclerosis,abnormal hardening or eburnation of bone
+58332,osteostracan cephalaspid,extinct jawless fish of the Devonian with armored head
+58333,osteotomy,surgical sectioning of bone
+58334,ostinato,a musical phrase repeated over and over during a composition
+58335,ostiole,a small pore especially one in the reproductive bodies of certain algae and fungi through which spores pass
+58336,ostomy,surgical procedure that creates an artificial opening for the elimination of bodily wastes
+58337,ostracism,the act of excluding someone from society by general consent
+58338,ostracoderm,extinct fish-like jawless vertebrate having a heavily armored body; of the Paleozoic
+58339,ostrich,a person who refuses to face reality or recognize the truth (a reference to the popular notion that the ostrich hides from danger by burying its head in the sand)
+58340,ostrich Struthio_camelus,fast-running African flightless bird with two-toed feet; largest living bird
+58341,ostrich_fern shuttlecock_fern fiddlehead Matteuccia_struthiopteris Pteretis_struthiopteris Onoclea_struthiopteris,tall fern of northern temperate regions having graceful arched fronds and sporophylls resembling ostrich plumes
+58342,otherness distinctness separateness,the quality of being not alike; being distinct or different from that otherwise experienced or known
+58343,otherworld,an abstract spiritual world beyond earthly reality
+58344,othonna,a South African plant of the genus Othonna having smooth often fleshy leaves and heads of yellow flowers
+58345,otic_ganglion otoganglion,an autonomic ganglion whose postganglionic fibers are distributed to the parotid gland
+58346,otitis,inflammation of the ear
+58347,otitis_externa,inflammation of the external ear (including auricle and ear canal)
+58348,otitis_media,inflammation of the middle ear; common in children
+58349,otology,the branch of medicine concerned with the ear
+58350,otoplasty,reconstructive surgery of the auricle of the external ear
+58351,otorrhea,discharge from the external ear
+58352,otosclerosis,hereditary disorder in which ossification of the labyrinth of the inner ear causes tinnitus and eventual deafness
+58353,otoscope auriscope auroscope,medical instrument consisting of a magnifying lens and light; used for examining the external ear (the auditory meatus and especially the tympanic membrane)
+58354,ottava_rima,a stanza of eight lines of heroic verse with the rhyme scheme abababcc
+58355,otter,the fur of an otter
+58356,otter,freshwater carnivorous mammal having webbed and clawed feet and dark brown fur
+58357,otter_shrew potamogale Potamogale_velox,amphibious African insectivorous mammal that resembles an otter
+58358,otterhound otter_hound,hardy British hound having long pendulous ears and a thick coarse shaggy coat with an oily undercoat; bred for hunting otters
+58359,ottoman pouf pouffe puff hassock,thick cushion used as a seat
+58360,oubliette,a dungeon with the only entrance or exit being a trap door in the ceiling
+58361,ouguiya,the basic unit of money in Mauritania
+58362,ounce oz.,a unit of weight equal to one sixteenth of a pound or 16 drams or 28.349 grams
+58363,ounce troy_ounce apothecaries'_ounce,a unit of apothecary weight equal to 480 grains or one twelfth of a troy pound
+58364,ouster,a wrongful dispossession
+58365,ouster ejector,a person who ousts or supplants someone else
+58366,ouster ousting,the act of ejecting someone or forcing them out
+58367,out,(baseball) a failure by a batter or runner to reach a base safely in baseball; "you only get 3 outs per inning"
+58368,out-and-outer,someone who is excellent at something
+58369,out-basket out-tray,a wood or metal receptacle placed on your desk to hold your outgoing material
+58370,out-of-body_experience,the dissociative experience of observing yourself from an external perspective as though your mind or soul had left and was observing your body
+58371,out-of-court_settlement,resolution of a dispute prior to the rendering of a final decision by the trial court
+58372,outage,the amount of something (as whiskey or oil) lost in storage or transportation
+58373,outage,a temporary suspension of operation (as of computers); "there will be a network outage from 8 to 10 a.m."
+58374,outback,the bush country of the interior of Australia
+58375,outboard_motor outboard,internal-combustion engine that mounts at stern of small boat
+58376,outboard_motorboat outboard,a motorboat with an outboard motor
+58377,outbreak eruption irruption,a sudden violent spontaneous occurrence (usually of some undesirable condition); "the outbreak of hostilities"
+58378,outbuilding,a building that is subordinate to and separate from a main building
+58379,outburst burst flare-up,a sudden intense happening; "an outburst of heavy rain"; "a burst of lightning"
+58380,outburst tumultuous_disturbance,a sudden violent disturbance
+58381,outcast castaway pariah Ishmael,a person who is rejected (from society or home)
+58382,outcaste,a person belonging to no caste
+58383,outcrop outcropping rock_outcrop,the part of a rock formation that appears above the surface of the surrounding land
+58384,outdoor_game,an athletic game that is played outdoors
+58385,outdoor_sport field_sport,a sport that is played outdoors
+58386,outdoors out-of-doors open_air open,where the air is unconfined; "he wanted to get outdoors a little"; "the concert was held in the open air"; "camping in the open"
+58387,outdoorsman,a person who spends time outdoors (e.g., hunting or fishing)
+58388,outdoorswoman,a woman who spends time outdoors (e.g., hunting and fishing)
+58389,outer_planet,(astronomy) a major planet whose orbit is outside the asteroid belt (Jupiter, Saturn, Uranus, Neptune, Pluto)
+58390,outer_space space,any location outside the Earth's atmosphere; "the astronauts walked in outer space without a tether"; "the first major milestone in space exploration was in 1957, when the USSR's Sputnik 1 orbited the Earth"
+58391,outercourse,sexual stimulation without vaginal penetration; "since pregnancy cannot happen if sperm are kept out of the vagina, outercourse is one method of birth control"
+58392,outerwear overclothes,clothing for use outdoors
+58393,outfall,the outlet of a river or drain or other source of water
+58394,outfield,the area of a baseball playing field beyond the lines connecting the bases
+58395,outfielder,(baseball) a person who plays in the outfield
+58396,outfielder,a fielder in cricket who is stationed in the outfield
+58397,outfit,any cohesive unit such as a military company
+58398,outfit getup rig turnout,a set of clothing (with accessories); "his getup was exceedingly elegant"
+58399,outfitter,someone who sells men's clothes
+58400,outfitter,a shop that provides equipment for some specific purpose; "an outfitter provided everything needed for the safari"
+58401,outfitting,the act of renovating and fitting out a ship
+58402,outflow effluence efflux,the process of flowing out
+58403,outgo spending expenditure outlay,money paid out; an amount spent
+58404,outgrowth branch offshoot offset,a natural consequence of development
+58405,outhouse privy earth-closet jakes,a small outbuilding with a bench having holes through which a user can defecate
+58406,outlandishness bizarreness weirdness,strikingly out of the ordinary
+58407,outlet_box,(electricity) receptacle consisting of the metal box designed for connections to a wiring system
+58408,outlier,a person who lives away from his place of work
+58409,outlier,an extreme deviation from the mean
+58410,outline lineation,the line that appears to bound an object
+58411,outline schema scheme,a schematic or preliminary plan
+58412,outline synopsis abstract precis,a sketchy summary of the main points of an argument or theory
+58413,outpatient,a patient who does not reside in the hospital where he is being treated
+58414,outport,a subsidiary port built in deeper water than the original port (but usually farther from the center of trade)
+58415,outpost,a military post stationed at a distance from the main body of troops
+58416,output outturn turnout,what is produced in a given time period
+58417,output yield,production of a certain amount
+58418,output yield production,the quantity of something (as a commodity) that is created (usually within a given period of time); "production was up in the second quarter"
+58419,output-to-input_ratio,the output power of a transducer divided by the input power
+58420,output_contract,a contract in which you promise to deliver your entire output to the other party who promises to accept it
+58421,output_device,electronic or electromechanical equipment connected to a computer and used to transfer data out of the computer in the form of text, images, sounds, or other media
+58422,output_file,(computer science) a computer file that contains data that are the output of a device or program
+58423,output_program,a utility program that organizes the output of a computer
+58424,output_routine,a routine that controls an output device
+58425,output_signal output,signal that comes out of an electronic system
+58426,outrage,a wantonly cruel act
+58427,outrageousness enormity,the quality of being outrageous
+58428,outreach,the act of reaching out; "the outreach toward truth of the human spirit"
+58429,outrider,an escort who rides ahead (as a member of the vanguard)
+58430,outrigger,a stabilizer for a canoe; spars attach to a shaped log or float parallel to the hull
+58431,outrigger_canoe,a seagoing canoe (as in South Pacific) with an outrigger to prevent it from upsetting
+58432,outside exterior,the region that is outside of something
+58433,outside exterior,the outer side or surface of something
+58434,outside_caliper,caliper for measuring outside dimensions; points on its legs curve inward
+58435,outside_clinch,a clinch with the end of the line outside the loop
+58436,outside_loop,a loop consisting of a dive followed by inverted flight followed by a climb that returns to horizontal flight
+58437,outside_mirror,car mirror that reflects the view at side and behind car
+58438,outsider,a contestant (human or animal) not considered to have a good chance to win
+58439,outsider_art self-taught_art vernacular_art naive_art primitive_art,a genre of art and outdoor constructions made by untrained artists who do not recognize themselves as artists
+58440,outsize,an unusual garment size (especially one that is very large)
+58441,outskirt fringe,a part of the city far removed from the center; "they built a factory on the outskirts of the city"
+58442,outskirts,outlying areas (as of a city or town); "they lived on the outskirts of Houston"; "they mingled in the outskirts of the crowd"
+58443,outsole,the outer sole of a shoe or boot that is the bottom of the shoe and makes contact with the ground
+58444,outstation outpost,a station in a remote or sparsely populated location
+58445,outstroke,the stroke of an engine piston moving toward the crankshaft
+58446,outtake,a scene that is filmed but is not used in the final editing of the film
+58447,outthrust,an outcropping of rock that extends outward
+58448,outwardness,concern with outward things or material objects as opposed to the mind and spirit; "what is the origin of the outwardness of our sensations of sound, smell, or taste"; "an abstract conception with feelings of reality and spatial outwardness attached to it"
+58449,outwardness,a concern with or responsiveness to outward things (especially material objects as opposed to ideal concepts); "hearty showmanship and all-round outwardness"
+58450,outwardness externality,the quality or state of being outside or directed toward or relating to the outside or exterior; "the outwardness of the world"
+58451,outwork,subsidiary defensive structure lying outside the main fortified area; "the outworks of the castle"
+58452,ouzo,a Greek liquor flavored with anise
+58453,ovarian_artery arteria_ovarica,the artery that branches from the aorta and supplies blood to the ovaries
+58454,ovarian_cyst,a cystic tumor (usually benign) of the ovary
+58455,ovarian_pregnancy,ectopic pregnancy in the ovary
+58456,ovarian_vein vena_ovarica,one of the veins that drain the ovaries; the right opens into the inferior vena cava; the left opens into the left renal vein
+58457,ovaritis,inflammation of the ovaries
+58458,ovary,the organ that bears the ovules of a flower
+58459,ovary,(vertebrates) one of usually two organs that produce ova and secrete estrogen and progesterone
+58460,ovate_leaf,an egg-shaped leaf with the broader end at the base
+58461,ovation standing_ovation,enthusiastic recognition (especially one accompanied by loud applause)
+58462,oven,kitchen appliance used for baking or roasting
+58463,oven_thermometer,a thermometer that registers the temperature inside an oven
+58464,ovenbird,small brownish South American birds that build oven-shaped clay nests
+58465,ovenbird Seiurus_aurocapillus,American warbler; builds a dome-shaped nest on the ground
+58466,ovenware,heat-resistant dishware in which food can be cooked as well as served
+58467,over,(cricket) the division of play during which six balls are bowled at the batsman by one player from the other team from the same end of the pitch
+58468,over-the-counter_drug over-the-counter_medicine,a drug that is sold without a prescription
+58469,over-the-counter_market OTC_market,a stock exchange where securities transactions are made via telephone and computer rather than on the floor of an exchange
+58470,over-the-shoulder_bombing,a special case of loft bombing in which the bomb is released past the vertical so it is tossed back to the target
+58471,over_the_counter_stock OTC_stock unlisted_stock,stock that is not listed and traded on an organized exchange
+58472,overabundance overmuch overmuchness superabundance,a quantity that is more than what is appropriate; "four-year-olds have an overabundance of energy"; "we received an inundation of email"
+58473,overachievement,better than expected performance (better than might have been predicted from intelligence tests)
+58474,overachiever,a student who attains higher standards than the IQ indicated
+58475,overactivity,excessive activity; "overactivity of the sebaceous glands causes the skin to become oily"
+58476,overage,a surplus or excess of money or merchandise that is actually on hand and that exceeds expectations
+58477,overall,(usually plural) work clothing consisting of denim trousers (usually with a bib and shoulder straps)
+58478,overall boilersuit boilers_suit,a loose protective coverall or smock worn over ordinary clothing for dirty work
+58479,overanxiety,excessive anxiety
+58480,overbid,a bid that is higher than preceding bids
+58481,overbid overcall,(bridge) a bid that is higher than your opponent's bid (especially when your partner has not bid at all and your bid exceeds the value of your hand)
+58482,overbite,(dentistry) malocclusion in which the upper teeth extend abnormally far over the lower teeth
+58483,overburden,the surface soil that must be moved away to get at coal seams and mineral deposits
+58484,overcapitalization overcapitalisation,(business) too much capitalization (the sale of more stock than the business warrants)
+58485,overcast,a cast that falls beyond the intended spot
+58486,overcast overcasting,a long whipstitch or overhand stitch overlying an edge to prevent raveling
+58487,overcharge,a price that is too high
+58488,overcoat overcoating,an additional protective coating (as of paint or varnish)
+58489,overcompensation,(psychiatry) an attempt to overcome a real or imagined defect or unwanted trait by overly exaggerating its opposite
+58490,overcompensation,excessive compensation
+58491,overcredulity,too much credulity
+58492,overcup_oak Quercus_lyrata,medium-large deciduous timber tree of central and southern United States; acorns deeply immersed in the cup and mature in first year
+58493,overdraft,a draft in excess of the credit balance
+58494,overdraft_credit check_overdraft_credit,credit provided by a bank in honoring a customer's overdrafts
+58495,overdrive,the state of high or excessive activity or productivity or concentration; "Troops are ready to go into overdrive as soon as the signal is given"; "Melissa's brain was in overdrive"
+58496,overdrive,a high gear used at high speeds to maintain the driving speed with less output power
+58497,overemphasis,too much emphasis
+58498,overestimate overestimation overrating overreckoning,a calculation that results in an estimate that is too high
+58499,overestimate overestimation overvaluation overappraisal,an appraisal that is too high
+58500,overexertion,excessive exertion; so much exertion that discomfort or injury results
+58501,overexploitation overuse overutilization overutilisation,exploitation to the point of diminishing returns
+58502,overexposure,the act of exposing film to too much light or for too long a time
+58503,overexposure,the act of exposing someone excessively to an influencing experience; "an overexposure to violence on television"
+58504,overfeeding,excessive feeding
+58505,overflight,a flight by an aircraft over a particular area (especially over an area in foreign territory)
+58506,overflow runoff overspill,the occurrence of surplus liquid (as water) exceeding the limit or capacity
+58507,overflow_incontinence,urinary incontinence that occurs when the bladder is so full that it continually leaks urine; often attributable to a blocked urethra (e.g., due to prostate enlargement) or weak bladder muscles or nerve damage
+58508,overgarment outer_garment,a garment worn over other garments
+58509,overgrowth,a profusion of growth on or over something else
+58510,overhand_knot,a simple small knot (often used as part of other knots)
+58511,overhand_pitch,a baseball pitch in which the hand moves above the shoulder
+58512,overhand_stitch,a stitch passing over an edge vertically
+58513,overhang,projection that extends beyond or hangs over something else
+58514,overhaul inspection_and_repair service,periodic maintenance on a car or machine; "it was time for an overhaul on the tractor"
+58515,overhead,(nautical) the top surface of an enclosed space on a ship
+58516,overhead smash,a hard return hitting the tennis ball above your head
+58517,overhead_projector,a projector operated by a speaker; projects the image over the speaker's head
+58518,overheating,excessive heating
+58519,overindulgence excess,excessive indulgence; "the child was spoiled by overindulgence"
+58520,overkill,the capability to obliterate a target with more weapons (especially nuclear weapons) than are required
+58521,overkill,any effort that seems to go farther than would be necessary to achieve its goal
+58522,overlap,the property of partial coincidence in time
+58523,overlap convergence intersection,a representation of common ground between theories or phenomena; "there was no overlap between their proposals"
+58524,overlay,a layer of decorative material (such as gold leaf or wood veneer) applied over a surface
+58525,overlip,the upper lip
+58526,overload,an electrical load that exceeds the available electrical power
+58527,overload overburden,an excessive burden
+58528,overlook,a high place affording a good view
+58529,overlord master lord,a person who has general authority over others
+58530,overlordship,the position of overlord
+58531,overmantel,a shelf over a mantelpiece
+58532,overnighter,a guest who stays overnight
+58533,overnighter overnight_bag overnight_case,a small traveling bag to carry clothing and accessories for staying overnight
+58534,overpass flyover,bridge formed by the upper level of a crossing of two highways at different levels
+58535,overpayment,a payment larger than needed or expected
+58536,overpayment,the act of paying too much
+58537,overplus plethora superfluity embarrassment,extreme excess; "an embarrassment of riches"
+58538,overpopulation,too much population
+58539,overpressure,a transient air pressure greater than the surrounding atmospheric pressure; "the overpressure of the blast kills by lethal concussion"
+58540,overprint surprint,something added by overprinting
+58541,overproduction overrun,too much production or more than expected
+58542,overreaction,an excessive reaction; a reaction with inappropriate emotional behavior
+58543,override,a manually operated device to correct the operation of an automatic device
+58544,overseer superintendent,a person who directs and manages an organization
+58545,oversensitiveness,sensitivity leading to easy irritation or upset
+58546,overshoe,footwear that protects your shoes from water or snow or cold
+58547,overshoot wave-off go-around,an approach that fails and gives way to another attempt
+58548,oversight inadvertence,an unintentional omission resulting from failure to notice something
+58549,oversight lapse,a mistake resulting from inattention
+58550,oversimplification simplism,a simplification that goes too far (to the point of misrepresentation)
+58551,oversimplification simplism,an act of excessive simplification; the act of making something seem simpler than it really is
+58552,overskirt,an outer skirt worn over another skirt
+58553,overspill,the relocation of people from overcrowded cities; they are accommodated in new houses or apartments in smaller towns
+58554,overstrain,too much strain
+58555,overt_operation,the collection of intelligence openly without concealment
+58556,overthrow,the termination of a ruler or institution (especially by force)
+58557,overtime,work done in addition to regular working hours
+58558,overtime extra_time,playing time beyond regulation, to break a tie
+58559,overtime_period,a period of overtime play to resolve a tie; e.g. basketball
+58560,overtolerance,too much permissiveness
+58561,overtone,(usually plural) an ulterior implicit meaning or quality; "overtones of despair"
+58562,overtone partial partial_tone,a harmonic with a frequency that is a multiple of the fundamental frequency
+58563,overture,orchestral music played at the beginning of an opera or oratorio
+58564,overture advance approach feeler,a tentative suggestion designed to elicit the reactions of others; "she rejected his advances"
+58565,overturn upset,an improbable and unexpected victory; "the biggest upset since David beat Goliath"
+58566,overvaluation,too high a value or price assigned to something
+58567,overview,a general summary of a subject; "the treasurer gave a brief overview of the financial consequences"
+58568,overwork overworking,the act of working too much or too long; "he became ill from overwork"
+58569,ovipositor,egg-laying tubular structure at the end of the abdomen in many female insects and some fishes
+58570,oviraptorid,advanced carnivorous theropod
+58571,ovoid,an egg-shaped object
+58572,ovolo thumb quarter_round,a convex molding having a cross section in the form of a quarter of a circle or of an ellipse
+58573,ovotestis,hermaphroditic gonad that contains both testicular and ovarian tissue
+58574,ovulation,the expulsion of an ovum from the ovary (usually midway in the menstrual cycle)
+58575,ovulation_method_of_family_planning ovulation_method,natural family planning in which the fertile period is inferred from changes in the character and quantity of cervical mucus; ovulation is marked by an increase in mucus that becomes sticky and then clearer and slippery
+58576,ovule,a small body that contains the female germ cell of a plant; develops into a seed after fertilization
+58577,ovule,a small or immature ovum
+58578,ovum egg_cell,the female reproductive cell; the female gamete
+58579,owl bird_of_Minerva bird_of_night hooter,nocturnal bird of prey with hawk-like beak and claws and large head with front-facing eyes
+58580,owlet,young owl
+58581,own_goal,(soccer) a goal that results when a player inadvertently knocks the ball into the goal he is defending; "the own goal cost them the game"
+58582,owner possessor,a person who owns something; "they are searching for the owner of the car"; "who is the owner of that friendly smile?"
+58583,owner proprietor,(law) someone who owns (is legal possessor of) a business; "he is the owner of a chain of restaurants"
+58584,owner-driver,a motorist who owns the car that he/she drives
+58585,owner-occupier,an occupant who owns the home that he/she lives in
+58586,ownership,the state or fact of being an owner
+58587,ownership,the relation of an owner to the thing possessed; possession with the right to transfer possession to others
+58588,ox,an adult castrated bull of the genus Bos; especially Bos taurus
+58589,ox wild_ox,any of various wild bovines especially of the genera Bos or closely related Bibos
+58590,oxacillin,a form of penicillin resistant to penicillinase and effective against penicillin-resistant staphylococci
+58591,oxalacetate oxaloacetate,a salt or ester of oxalacetic acid
+58592,oxalacetic_acid oxaloacetic_acid,an acid formed by oxidation of maleic acid (as in metabolism of fats and carbohydrates)
+58593,oxalate,a salt or ester of oxalic acid
+58594,oxalic_acid ethanedioic_acid,a toxic colorless crystalline organic acid found in oxalis and other plants; used as a bleach and rust remover and in chemical analysis
+58595,oxalis sorrel wood_sorrel,any plant or flower of the genus Oxalis
+58596,oxaprozin Daypro,a nonsteroidal anti-inflammatory drug (trade name Daypro)
+58597,oxazepam Serax,a tranquilizing drug (trade name Serax) used to treat anxiety and insomnia and alcohol withdrawal
+58598,oxblood_red,a dark brownish-red color
+58599,oxbow,the land inside an oxbow bend in a river
+58600,oxbow,a U-shaped curve in a stream
+58601,oxbow,a wooden framework bent in the shape of a U; its upper ends are attached to the horizontal yoke and the loop goes around the neck of an ox
+58602,oxbow_lake,a crescent-shaped lake (often temporary) that is formed when a meander of a river is cut off from the main channel
+58603,oxcart,a cart that is drawn by an ox
+58604,oxeye,Eurasian perennial herbs having daisylike flowers with yellow rays and dark centers
+58605,oxeye,an oval or round dormer window
+58606,oxeye_daisy Leucanthemum_maximum Chrysanthemum_maximum,similar to oxeye daisy
+58607,oxeye_daisy ox-eyed_daisy marguerite moon_daisy white_daisy Leucanthemum_vulgare Chrysanthemum_leucanthemum,tall leafy-stemmed Eurasian perennial with white flowers; widely naturalized; often placed in genus Chrysanthemum
+58608,oxford,a low shoe laced over the instep
+58609,oxidant oxidizer oxidiser oxidizing_agent,a substance that oxidizes another substance
+58610,oxidase,any of the enzymes that catalyze biological oxidation
+58611,oxidation oxidization oxidisation,the process of oxidizing; the addition of oxygen to a compound with a loss of electrons; always occurs accompanied by reduction
+58612,oxidation-reduction oxidoreduction redox,a reversible chemical reaction in which one reaction is an oxidation and the reverse is a reduction
+58613,oxidation-reduction_indicator,an indicator that shows a reversible color change between oxidized and reduced forms
+58614,oxidation_number oxidation_state,the degree of oxidation of an atom or ion or molecule; for simple atoms or ions the oxidation number is equal to the ionic charge; "the oxidation number of hydrogen is +1 and of oxygen is -2"
+58615,oxidative_phosphorylation,an enzymatic process in cell metabolism that synthesizes ATP from ADP
+58616,oxide,any compound of oxygen with another element or a radical
+58617,oxidized_LDL_cholesterol,LDL cholesterol that has been bombarded by free radicals; it is thought to cause atherosclerosis
+58618,oxidoreductase,an enzyme that catalyzes oxidation-reduction
+58619,oxime,any compound containing the group -C=NOH
+58620,oximeter,a measuring instrument that measures the oxygen in arterial blood
+58621,oxlip paigle Primula_elatior,Eurasian primrose with yellow flowers clustered in a one-sided umbel
+58622,oxtail,the skinned tail of cattle; used especially for soups
+58623,oxtail_soup,a soup made from the skinned tail of an ox
+58624,oxtant,a unit of angular distance equal to half a quadrant
+58625,oxtongue bristly_oxtongue bitterweed bugloss Picris_echioides,widespread European weed with spiny tongue-shaped leaves and yellow flowers; naturalized in United States
+58626,oxyacetylene,a mixture of oxygen and acetylene; used to create high temperatures for cutting or welding metals
+58627,oxyacetylene_torch,a blowtorch that burns oxyacetylene
+58628,oxyacid oxygen_acid,any acid that contains oxygen
+58629,oxycephaly acrocephaly,a congenital abnormality of the skull; the top of the skull assumes a cone shape
+58630,oxygen O atomic_number_8,a nonmetallic bivalent element that is normally a colorless odorless tasteless nonflammable diatomic gas; constitutes 21 percent of the atmosphere by volume; the most abundant element in the earth's crust
+58631,oxygen_debt,a cumulative deficit of oxygen resulting from intense exercise; the deficit must be made up when the body returns to rest
+58632,oxygen_deficit,temporary oxygen shortage in cells resulting from strenuous exercise
+58633,oxygen_mask,a breathing device that is placed over the mouth and nose; supplies oxygen from an attached storage tank
+58634,oxygenase,an oxidoreductase that catalyzes the incorporation of molecular oxygen
+58635,oxygenation,the process of providing or combining or treating with oxygen; "the oxygenation of the blood"
+58636,oxyhemoglobin oxyhaemoglobin,the bright red hemoglobin that is a combination of hemoglobin and oxygen from the lungs; "oxyhemoglobin transports oxygen to the cells of the body"
+58637,oxymoron,conjoining contradictory terms (as in `deafening silence')
+58638,oxyopia,unusually acute vision
+58639,oxyphenbutazone Tandearil,an anti-inflammatory drug (trade name Tandearil) used to treat arthritis and bursitis
+58640,oxyphencyclimine Daricon,an anticholinergic drug (trade name Daricon) used in treating peptic ulcers
+58641,oxytetracycline hydroxytetracycline oxytetracycline_hydrochloride Terramycin,a yellow crystalline antibiotic (trademark Terramycin) obtained from a soil actinomycete; used to treat various bacterial and rickettsial infections
+58642,oxytocic oxytocic_drug,a drug that induces labor by stimulating contractions of the muscles of the uterus
+58643,oxytocin Pitocin,hormone secreted by the posterior pituitary gland (trade name Pitocin); stimulates contractions of the uterus and ejection of milk
+58644,oxytone,word having stress or an acute accent on the last syllable
+58645,oyabun,a Japanese supervisor
+58646,oyster,a small muscle on each side of the back of a fowl
+58647,oyster,marine mollusks having a rough irregular shell; found on the sea bed mostly in coastal waters
+58648,oyster_bar,a bar (as in a restaurant) that specializes in oysters prepared in different ways
+58649,oyster_bed oyster_bank oyster_park,a workplace where oysters are bred and grown
+58650,oyster_crab Pinnotheres_ostreum,tiny soft-bodied crab living within the mantle cavity of oysters
+58651,oyster_cracker,a small dry usually round cracker
+58652,oyster_fish oyster-fish oysterfish,a variety of toadfish
+58653,oyster_mushroom oyster_fungus oyster_agaric Pleurotus_ostreatus,edible agaric with a soft greyish cap growing in shelving masses on dead wood
+58654,oyster_plant vegetable_oyster,long white salsify
+58655,oyster_shell,a shell of an oyster
+58656,oyster_stew,oysters in cream
+58657,oyster_stuffing oyster_dressing,stuffing made with oysters
+58658,oystercatcher oyster_catcher,black-and-white shorebird with stout legs and bill; feed on oysters etc.
+58659,oysters_Rockefeller,oysters spread with butter and spinach and seasonings and baked on the half shell
+58660,ozena ozaena,a chronic disease of the nose characterized by a foul-smelling nasal discharge and atrophy of nasal structures
+58661,ozone,a colorless gas (O3) soluble in alkalis and cold water; a strong oxidizing agent; can be produced by electric discharge in oxygen or by the action of ultraviolet radiation on oxygen in the stratosphere (where it acts as a screen for ultraviolet radiation)
+58662,ozone_hole,an area of the ozone layer (near the poles) that is seasonally depleted of ozone
+58663,ozone_layer ozonosphere,a layer in the stratosphere (at approximately 20 miles) that contains a concentration of ozone sufficient to block most ultraviolet radiation from the sun
+58664,ozone_sickness,illness that can occur to persons exposed to ozone in high-altitude aircraft; characterized by sleepiness and headache and chest pains and itchiness
+58665,ozonide,any of a class of unstable chemical compounds resulting from the addition of ozone to a double bond in an unsaturated compound
+58666,p-n-p_transistor,a junction transistor having an n-type semiconductor between a p-type semiconductor that serves as an emitter and a p-type semiconductor that serves as a collector
+58667,p-n_junction,the junction between a p-type semiconductor and an n-type semiconductor; "a p-n junction has marked rectifying characteristics"
+58668,p-type_semiconductor,a semiconductor in which electrical conduction is due chiefly to the movement of positive holes
+58669,pH pH_scale,(from potential of Hydrogen) the logarithm of the reciprocal of hydrogen-ion concentration in gram atoms per liter; provides a measure on a scale from 0 to 14 of the acidity or alkalinity of a solution (where 7 is neutral and greater than 7 is more basic and less than 7 is more acidic)
+58670,pa'anga,the basic unit of money in Tonga
+58671,pabulum,insipid intellectual nourishment
+58672,pac-man_strategy,the target company defends itself by threatening to take over its acquirer
+58673,paca Cuniculus_paca,large burrowing rodent of South America and Central America; highly esteemed as food
+58674,pace gait,the rate of moving (especially walking or running)
+58675,pace rate,the relative speed of progress or change; "he lived at a fast pace"; "he works at a great rate"; "the pace of events accelerated"
+58676,pace stride tread,a step in walking or running
+58677,pace_car,a high-performance car that leads a parade of competing cars through the pace lap and then pulls off the course
+58678,pace_lap,the first lap of a car race that prepares the cars for a fast start
+58679,pacemaker artificial_pacemaker,an implanted electronic device that takes over the function of the natural cardiac pacemaker
+58680,pacemaker cardiac_pacemaker sinoatrial_node SA_node,a specialized bit of heart tissue that controls the heartbeat
+58681,pacer,a horse trained to a special gait in which both feet on one side leave the ground together
+58682,pacer pacemaker pacesetter,a horse used to set the pace in racing
+58683,pacesetter pacemaker,a leading instance in its field; "the new policy will be a pacesetter in community relations"
+58684,pachinko,a Japanese pinball game played on a vertical board
+58685,pachisi parchesi parchisi,an ancient board game resembling backgammon; played on a cross-shaped board
+58686,pachuco,a Mexican-American teenager who belongs to a neighborhood gang and who dresses in showy clothes
+58687,pachycephalosaur pachycephalosaurus,bipedal herbivore having 10 inches of bone atop its head; largest boneheaded dinosaur ever found
+58688,pachycheilia,an abnormal thickness of the lips
+58689,pachyderm,any of various nonruminant hoofed mammals having very thick skin: elephant; rhinoceros; hippopotamus
+58690,pachysandra,any plant of the genus Pachysandra; low-growing evergreen herbs or subshrubs having dentate leaves and used as ground cover
+58691,pachytene,the third stage of the prophase of meiosis
+58692,pacification counterinsurgency,actions taken by a government to defeat insurgency
+58693,pacification mollification,the act of appeasing someone or causing someone to be more favorably inclined; "a wonderful skill in the pacification of crying infants"; "his unsuccessful mollification of the mob"
+58694,pacifier,anything that serves to pacify
+58695,pacifism pacificism,the belief that all international disputes can be settled by arbitration
+58696,pacifism pacificism passivism,the doctrine that all violence is unjustifiable
+58697,pacifist pacificist disarmer,someone opposed to violence as a means of settling disputes
+58698,pacing,walking with slow regular strides
+58699,pack,a group of hunting animals
+58700,pack,a complete collection of similar things
+58701,pack,a sheet or blanket (either dry or wet) to wrap around the body for its therapeutic effect
+58702,pack,a bundle (especially one carried on the back)
+58703,pack,a convenient package or parcel (as of cigarettes or film)
+58704,pack face_pack,a cream that cleanses and tones the skin
+58705,pack_animal sumpter,an animal (such as a mule or burro or horse) used to carry loads
+58706,pack_ice ice_pack,a large expanse of floating ice
+58707,pack_of_cards deck_of_cards deck,a pack of 52 playing cards
+58708,pack_riding,riding with a pack
+58709,package bundle packet parcel,a collection of things wrapped or boxed together
+58710,package parcel,a wrapped container
+58711,package_store liquor_store off-licence,a store that sells alcoholic beverages for consumption elsewhere
+58712,package_tour package_holiday,a tour arranged by a travel agent; transportation and food and lodging are all provided at an inclusive price
+58713,packaged_goods,groceries that are packaged for sale
+58714,packaging,material used to make packages
+58715,packaging,the business of packing; "his business is packaging for transport"
+58716,packaging_company packaging_concern,a company that packages goods for sale or shipment or storage
+58717,packed_cells,a preparation of blood cells separated from the liquid plasma; "packed cells are given to severely anemic patients in order to avoid overloading the circulatory system with too much fluid"
+58718,packer bagger boxer,a workman employed to pack things into containers
+58719,packet,(computer science) a message or message fragment
+58720,packet,a small package or bundle
+58721,packhorse,a workhorse used as a pack animal
+58722,packing backpacking,carrying something in a pack on the back; "the backpacking of oxygen is essential for astronauts"
+58723,packing boxing,the enclosure of something in a package or box
+58724,packing_box packing_case,a large crate in which goods are packed for shipment or storage
+58725,packing_material packing wadding,any material used especially to protect something
+58726,packing_needle,a large needle used to sew up canvas packages
+58727,packinghouse,a building where foodstuffs are processed and packed; "they came from an apple packinghouse"
+58728,packinghouse packing_plant,a plant where livestock are slaughtered and processed and packed as meat products
+58729,packrat,a collector of miscellaneous useless objects
+58730,packrat pack_rat trade_rat bushytail_woodrat Neotoma_cinerea,any of several bushy-tailed rodents of the genus Neotoma of western North America; hoards food and other objects
+58731,packsaddle,a saddle for pack animals to which loads can be attached
+58732,packthread,a strong three-ply twine used to sew or tie packages
+58733,pad,the large floating leaf of an aquatic plant (as the water lily)
+58734,pad,a flat mass of soft material used for protection, stuffing, or comfort
+58735,pad,the fleshy cushion-like underside of an animal's foot or of a human's finger
+58736,pad inkpad inking_pad stamp_pad,a block of absorbent material saturated with ink; used to transfer ink evenly to a rubber stamp
+58737,pad pad_of_paper tablet,a number of sheets of paper fastened together along one edge
+58738,padauk padouk amboyna Pterocarpus_indicus,tree native to southeastern Asia having reddish wood with a mottled or striped black grain
+58739,padding cushioning,artifact consisting of soft or resilient material used to fill or give shape or protect or add comfort
+58740,paddle,small wooden bat with a flat surface; used for hitting balls in various games
+58741,paddle,a blade of a paddle wheel or water wheel
+58742,paddle,an instrument of punishment consisting of a flat board
+58743,paddle boat_paddle,a short light oar used without an oarlock to propel a canoe or small boat
+58744,paddle_box paddle-box,a wooden covering for the upper part of a paddlewheel
+58745,paddle_steamer paddle-wheeler,a steam vessel propelled by paddle wheels
+58746,paddlefish duckbill Polyodon_spathula,primitive fish of the Mississippi valley having a long paddle-shaped snout
+58747,paddlewheel paddle_wheel,a large wheel fitted with paddles and driven by an engine in order to propel a boat
+58748,paddock,pen where racehorses are saddled and paraded before a race
+58749,paddy,rice in the husk either gathered or still in the field
+58750,paddy paddy_field rice_paddy,an irrigated or flooded field where rice is grown
+58751,pademelon paddymelon,small reddish-brown wallabies of scrubby areas of Australia and New Guinea
+58752,padlock,a detachable lock; has a hinged shackle that can be passed through the staple of a hasp or the links in a chain and then snapped shut
+58753,padrone,an owner or proprietor of an inn in Italy
+58754,padrone,an employer who exploits Italian immigrants in the U.S.
+58755,paean pean,(ancient Greece) a hymn of praise (especially one sung in ancient Greece to invoke or thank a deity)
+58756,paella,saffron-flavored dish made of rice with shellfish and chicken
+58757,pagan,a person who follows a polytheistic or pre-Christian religion (not a Christian or Muslim or Jew)
+58758,paganism pagan_religion heathenism,any of various religions other than Christianity or Judaism or Islamism
+58759,page,a youthful attendant at official functions or ceremonies such as legislative functions and weddings
+58760,page,one side of one leaf (of a book or magazine or newspaper or letter etc.) or the written or pictorial matter it contains
+58761,page pageboy,a boy who is employed to run errands
+58762,page varlet,in medieval times a youth acting as a knight's attendant as the first stage in training for knighthood
+58763,page_printer page-at-a-time_printer,a printer that prints one page at a time
+58764,pageant pageantry,a rich and spectacular ceremony
+58765,pageant pageantry,an elaborate representation of scenes from history etc; usually involves a parade with rich costumes
+58766,pageboy,a smooth hair style with the ends of the hair curled inward
+58767,pagination folio page_number paging,the system of numbering pages
+58768,paging,calling out the name of a person (especially by a loudspeaker system); "the public address system in the hospital was used for paging"
+58769,pagoda,an Asian temple; usually a pyramidal tower with an upward curving roof
+58770,pagoda_tree temple_tree Plumeria_acutifolia,frangipani of India having an erect habit and conical form; grown in temple gardens
+58771,pahautea Libocedrus_bidwillii mountain_pine,evergreen tree of New Zealand resembling the kawaka
+58772,pahoehoe,freely flowing lava
+58773,paid_vacation,a vacation from work by an employee with pay granted
+58774,pail pailful,the quantity contained in a pail
+58775,paillasse palliasse,mattress consisting of a thin pad filled with straw or sawdust
+58776,pain hurting,a symptom of some physical hurt or disorder; "the patient developed severe pain and distension"
+58777,pain pain_in_the_neck nuisance,a bothersome annoying person; "that kid is a terrible pain"
+58778,pain pain_sensation painful_sensation,a somatic sensation of acute discomfort; "as the intensity increased the sensation changed from tickle to pain"
+58779,pain painfulness,emotional distress; a fundamental feeling that people try to avoid; "the pain of loneliness"
+58780,pain_threshold,the lowest intensity of stimulation at which pain is experienced; "some people have much higher pain thresholds than do other people"
+58781,pain_unit,a unit measuring the intensity of pain
+58782,painfulness distressingness,the quality of being painful; "she feared the painfulness of childbirth"
+58783,paint pigment,a substance used as a coating to protect or decorate a surface (especially a mixture of pigment suspended in a liquid); dries to form a hard coating; "artists use `paint' and `pigment' interchangeably"
+58784,paint_roller,a roller that has an absorbent surface used for spreading paint
+58785,paintball,a capsule filled with water-soluble dye used as a projectile in playing the game of paintball
+58786,paintball,a game that simulates military combat; players on one team try to eliminate players on the opposing team by shooting capsules of paint at them
+58787,paintball_gun,an air gun used in the game of paintball; designed to simulate a semiautomatic
+58788,paintbox,a box containing a collection of cubes or tubes of artists' paint
+58789,paintbrush,a brush used as an applicator (to apply paint)
+58790,painted_beauty Vanessa_virginiensis,American butterfly having dark brown wings with white and golden orange spots
+58791,painted_daisy pyrethrum Tanacetum_coccineum Chrysanthemum_coccineum,spring-flowering garden perennial of Asiatic origin having finely divided aromatic leaves and white to pink-purple flowers; source of an insecticide; sometimes placed in genus Chrysanthemum
+58792,painted_greenling convict_fish convictfish Oxylebius_pictus,greenling with whitish body marked with black bands
+58793,painted_nettle Joseph's_coat Coleus_blumei Solenostemon_blumei Solenostemon_scutellarioides,perennial aromatic herb of southeastern Asia having large usually bright-colored or blotched leaves and spikes of blue-violet flowers; sometimes placed in genus Solenostemon
+58794,painted_sandgrouse Pterocles_indicus,sandgrouse of India
+58795,painted_tongue Salpiglossis_sinuata,Chilean herb having velvety funnel-shaped yellowish or violet flowers with long tonguelike styles at the corolla throat
+58796,painted_turtle painted_terrapin painted_tortoise Chrysemys_picta,freshwater turtles having bright yellow and red markings; common in the eastern United States
+58797,painter,a worker who is employed to cover objects with paint
+58798,painter,an artist who paints
+58799,painter,a line that is attached to the bow of a boat and used for tying up (as when docking or towing)
+58800,painting,creating a picture with paints; "he studied painting and sculpture for many years"
+58801,painting,the act of applying paint to a surface; "you can finish the job of painting faster with a roller than with a brush"
+58802,painting house_painting,the occupation of a house painter; "house painting was the only craft he knew"
+58803,painting picture,graphic art consisting of an artistic composition made by applying paints to a surface; "a small painting by Picasso"; "he bought the painting as an investment"; "his pictures hang in the Louvre"
+58804,pair,two people considered as a unit
+58805,pair,a poker hand with 2 cards of the same value
+58806,pair brace,a set of two similar things considered as a unit
+58807,pair_production pair_creation pair_formation,the transformation of a gamma-ray photon into an electron and a positron when the photon passes close to an atomic nucleus
+58808,pairing,the act of grouping things or people in pairs
+58809,paisa,a fractional monetary unit in Bangladesh and India and Nepal and Pakistan
+58810,paisley,a soft wool fabric with a colorful swirled pattern of curved shapes
+58811,pajama pyjama,a pair of loose trousers tied by a drawstring around the waist; worn by men and women in some Asian countries
+58812,pajama pyjama pj's jammies,(usually plural) loose-fitting nightclothes worn for sleeping or lounging; have a jacket top and trousers
+58813,palace,the governing group of a kingdom; "the palace issued an order binding on all subjects"
+58814,palace,a large ornate exhibition hall
+58815,palace,official residence of an exalted person (as a sovereign)
+58816,palace castle,a large and stately mansion
+58817,palanquin palankeen,a closed litter carried on the shoulders of four bearers
+58818,palatability palatableness,the property of being acceptable to the mouth
+58819,palatability palatableness,acceptability to the mind or feelings; "the pursuit of electoral palatability"
+58820,palatal,a semivowel produced with the tongue near the palate (like the initial sound in the English word `yeast')
+58821,palate roof_of_the_mouth,the upper surface of the mouth that separates the oral and nasal cavities
+58822,palatinate,a territory under the jurisdiction of a count palatine
+58823,palatine,any of various important officials in ancient Rome
+58824,palatine palatine_bone os_palatinum,either of two irregularly shaped bones that form the back of the hard palate and helps to form the nasal cavity and the floor of the orbits
+58825,palatine palsgrave,(Middle Ages) the lord of a palatinate who exercised sovereign powers over his lands
+58826,palatine_artery arteria_palatina,one of several arteries supplying the face
+58827,palatine_raphe,the seam at the middle of the hard palate
+58828,palatine_vein vena_palatina,a vein that drains the region of the palate and empties into the facial vein
+58829,palatopharyngoplasty PPP uvulopalatopharyngoplasty UPPP,surgical resection of unnecessary palatal and oropharyngeal tissue to open the airway; intended to cure extreme cases of snoring (with or without sleep apnea)
+58830,palaver hot_air empty_words empty_talk rhetoric,loud and confused and empty talk; "mere rhetoric"
+58831,pale_ale,an amber colored ale brewed with pale malts; similar to bitter but drier and lighter
+58832,pale_chrysanthemum_aphid,important pest of chrysanthemums
+58833,pale_violet striped_violet cream_violet Viola_striata,leafy-stemmed violet of eastern North America having large white or creamy flowers faintly marked with purple
+58834,pale_yellow straw wheat,a variable yellow tint; dull yellow, often diluted with white
+58835,paleencephalon paleoencephalon palaeencephalon,the more primitive parts of the brain phylogenetically; most structures other than the cerebral cortex
+58836,paleness blondness fairness,the property of having a naturally light complexion
+58837,paleness pallidity,being deficient in color
+58838,paleoanthropology palaeoanthropology human_paleontology human_palaeontology,the scientific study of human fossils
+58839,paleobiology palaeobiology,a branch of paleontology that deals with the origin and growth and structure of fossil animals and plants as living organisms
+58840,paleobotany palaeobotany,the study of fossil plants
+58841,paleocerebellum,the anterior lobe of the cerebellum which was one of the earliest parts of the hindbrain to develop in mammals
+58842,paleoclimatology palaeoclimatology,the study of the climate of past ages
+58843,paleodendrology palaeodendrology,the branch of paleobotany that studies fossil trees
+58844,paleoecology palaeoecology,the branch of ecology that studies ancient ecology
+58845,paleoethnography palaeoethnography,the ethnography of paleolithic humans
+58846,paleogeography palaeogeography,the study of the geography of ancient times or ancient epochs
+58847,paleogeology palaeogeology,the study of geologic features once at the surface of the earth but now buried beneath rocks
+58848,paleographer paleographist,an archeologist skilled in paleography
+58849,paleography,the study of ancient forms of writing (and the deciphering of them)
+58850,paleolith,a stone tool from the Paleolithic age
+58851,paleology palaeology,the study of (especially prehistoric) antiquities
+58852,paleomammalogy,the paleobiology of ancient mammals
+58853,paleontologist palaeontologist fossilist,a specialist in paleontology
+58854,paleontology palaeontology fossilology,the earth science that studies fossil organisms and related remains
+58855,paleopathology palaeopathology,the study of disease of former times (as inferred from fossil evidence)
+58856,paleornithology palaeornithology,the paleobiology of birds
+58857,paleozoology palaeozoology,the study of fossil animals
+58858,palestra palaestra,a public place in ancient Greece or Rome devoted to the training of wrestlers and other athletes
+58859,paletiology palaetiology,the explanation of past events in terms of scientific causes (as geological causes)
+58860,palette pallet,the range of colour characteristic of a particular artist or painting or school of art
+58861,palette pallet,board that provides a flat surface on which artists mix paints and the range of colors used
+58862,palette_knife,a spatula used by artists for mixing or applying or scraping off oil paints
+58863,palfrey,especially a light saddle horse for a woman
+58864,palilalia,a pathological condition in which a word is rapidly and involuntarily repeated
+58865,palimony,support paid by one half of an unmarried partnership after the relationship ends
+58866,palimpsest,a manuscript (usually written on papyrus or parchment) on which more than one text has been written with the earlier writing incompletely erased and still visible
+58867,palindrome,a word or phrase that reads the same backward as forward
+58868,palingenesis recapitulation,emergence during embryonic development of various characters or structures that appeared during the evolutionary history of the strain or species
+58869,palisade,fortification consisting of a strong fence made of stakes driven into the ground
+58870,pall shroud cerement winding-sheet winding-clothes,burial garment in which a corpse is wrapped
+58871,pall-mall,a 17th century game; a wooden ball was driven along an alley with a mallet
+58872,palladium Pd atomic_number_46,a silver-white metallic element of the platinum group that resembles platinum; occurs in some copper and nickel ores; does not tarnish at ordinary temperatures and is used (alloyed with gold) in jewelry
+58873,pallas's_sandgrouse Syrrhaptes_paradoxus,Eurasiatic sandgrouse with a black patch on the belly
+58874,pallasite,a meteorite composed principally of olivine and metallic iron
+58875,pallbearer bearer,one of the mourners carrying the coffin at a funeral
+58876,pallet,a portable platform for storing or moving goods that are stacked on it
+58877,pallet,a hand tool with a flat blade used by potters for mixing and shaping clay
+58878,pallet,a mattress filled with straw or a pad made of quilts; used as a bed
+58879,pallette palette,one of the rounded armor plates at the armpits of a suit of armor
+58880,palliation,easing the severity of a pain or a disease without removing the cause
+58881,palliative alleviant alleviator,remedy that alleviates pain without curing
+58882,pallid_bat cave_bat Antrozous_pallidus,drab yellowish big-eared bat that lives in caves
+58883,pallidum globus_pallidus paleostriatum,the inner pale yellow part of the lenticular nucleus
+58884,pallium,(Roman Catholic Church) vestment consisting of a band encircling the shoulders with two lappets hanging in front and back
+58885,pallium,cloak or mantle worn by men in ancient Rome
+58886,pallone,an Italian game similar to tennis
+58887,palm,a linear unit based on the length or width of the human hand
+58888,palm palm_tree,any plant of the family Palmae having an unbranched trunk crowned by large pinnate or palmate leaves
+58889,palm thenar,the inner surface of the hand from the wrist to the base of the fingers
+58890,palm_cat palm_civet,spotted or striped arboreal civet of southeast Asia and East Indies
+58891,palm_nut palm_kernel,seed of any oil palm
+58892,palm_oil,oil from nuts of oil palms especially the African oil palm
+58893,palmate_leaf,a leaf resembling an open hand; having lobes radiating from a common point
+58894,palmature,an abnormality in which the fingers are webbed
+58895,palmetto,any of several low-growing palms with fan-shaped leaves
+58896,palmist palmister chiromancer,fortuneteller who predicts your future by the lines on your palms
+58897,palmistry palm_reading chiromancy chirology,telling fortunes by lines on the palm of the hand
+58898,palmitic_acid hexadecanoic_acid,a saturated fatty acid that is the major fat in meat and dairy products
+58899,palmitin,an ester of glycerol and palmitic acid
+58900,palmyra palmyra_palm toddy_palm wine_palm lontar longar_palm Borassus_flabellifer,tall fan palm of Africa and India and Malaysia yielding a hard wood and sweet sap that is a source of palm wine and sugar; leaves used for thatching and weaving
+58901,palo_santo Bulnesia_sarmienti,South American tree of dry interior regions of Argentina and Paraguay having resinous heartwood used for incense
+58902,palo_verde Parkinsonia_florida Cercidium_floridum,densely branched spiny tree of southwestern United States having showy yellow flowers and blue-green bark; sometimes placed in genus Cercidium
+58903,palometa California_pompano Palometa_simillima,smaller than Florida pompano; common in West Indies
+58904,palomino,a horse of light tan or golden color with cream-colored or white mane and tail
+58905,paloverde,a thorny shrub of the genus Cercidium that grows in dry parts of the southwestern United States and adjacent Mexico; has smooth light green bark and racemes of yellow flowers and small leaves
+58906,palpation tactual_exploration,a method of examination in which the examiner feels the size or shape or firmness or location of something (of body parts when the examiner is a health professional)
+58907,palpebra_conjunctiva conjunctival_layer_of_eyelids tunica_conjunctiva_palpebrarum,the part of the conjunctiva lining the posterior surface of the eyelids; continuous with the bulbar conjunctiva
+58908,palpebration,repeated blinking or winking (especially if uncontrolled and persistent)
+58909,palpitation,a rapid and irregular heart beat
+58910,palsy,a condition marked by uncontrollable tremor
+58911,paltriness sorriness,worthlessness due to insignificance
+58912,pampas,the vast grassy plains of northern Argentina
+58913,pampas_grass Cortaderia_selloana,tall perennial grass of pampas of South America having silvery plumes and growing in large dense clumps
+58914,pamperer spoiler coddler mollycoddler,someone who pampers or spoils by excessive indulgence
+58915,pamphleteer,a writer of pamphlets (usually taking a partisan stand on public issues)
+58916,pan,shallow container made of metal
+58917,pan cooking_pan,cooking utensil consisting of a wide metal vessel
+58918,panacea nostrum catholicon cure-all,hypothetical remedy for all ills or diseases; once sought by the alchemists
+58919,panache,a feathered plume on a helmet
+58920,panatela panetela panetella,a long slender cigar
+58921,pancake battercake flannel_cake flannel-cake flapcake flapjack griddlecake hotcake hot_cake,a flat cake of thin batter fried on both sides on a griddle
+58922,pancake_batter,batter for making pancakes
+58923,pancake_turner,turner for serving or turning pancakes
+58924,pancarditis,inflammation of the entire heart (the epicardium and the myocardium and the endocardium)
+58925,panchayat panchayet punchayet,a village council in India or southern Pakistan
+58926,panchromatic_film,photographic film sensitive to light of all colors (including red)
+58927,pancreas,a large elongated exocrine gland located behind the stomach; secretes pancreatic juice and insulin
+58928,pancreatectomy,surgical removal of part or all of the pancreas
+58929,pancreatic_artery arteria_pancreatica,a branch of the splenic artery that supplies the pancreas
+58930,pancreatic_cancer,cancer of the pancreas
+58931,pancreatic_duct,a duct connecting the pancreas with the intestine
+58932,pancreatic_juice,a fluid secreted into the duodenum by the pancreas; important for breaking down starches and proteins and fats
+58933,pancreatic_vein venae_pancreatica,veins draining the pancreas and emptying into the superior mesenteric and splenic veins
+58934,pancreatin,extract from the pancreas of animals that contains pancreatic enzymes; used to treat pancreatitis and other conditions involving insufficient pancreatic secretions
+58935,pancreatitis,inflammation of the pancreas; usually marked by abdominal pain
+58936,pancytopenia,an abnormal deficiency in all blood cells (red blood cells and white blood cells and platelets); usually associated with bone marrow tumor or with aplastic anemia
+58937,panda_car,a police cruiser
+58938,pandanus,fiber from leaves of the pandanus tree; used for woven articles (such as mats)
+58939,pandanus screw_pine,any of various Old World tropical palmlike trees having huge prop roots and edible conelike fruits and leaves like pineapple leaves
+58940,pandeism,the belief that God created the universe and its phenomena by becoming the universe, thereafter the sole manifestation of God
+58941,pandemic,an epidemic that is geographically widespread; occurring throughout a region or even throughout the world
+58942,panderer,a person who serves or caters to the vulgar passions or plans of others (especially in order to make money)
+58943,pandiculation,yawning and stretching (as when first waking up)
+58944,pandurate_leaf panduriform_leaf,a fiddle-shaped leaf
+58945,pane pane_of_glass window_glass,sheet glass cut in shapes for windows or doors
+58946,panel,a group of people gathered for a special purpose as to plan or discuss an issue or judge a contest etc
+58947,panel,a soft pad placed under a saddle
+58948,panel,sheet that forms a distinct (usually flat and rectangular) section or component of something
+58949,panel venire,(law) a group of people summoned for jury service (from whom a jury will be chosen)
+58950,panel_discussion,discussion of a subject of public interest by a group of persons forming a panel usually before an audience
+58951,panel_heating,heating system consisting of wall or floor or baseboard or ceiling panels containing electric conductors or heating pipes
+58952,panel_light,a light to illuminate an instrument panel
+58953,paneling panelling pane,a panel or section of panels in a wall or door
+58954,panelist panellist,a member of a panel
+58955,panencephalitis,diffuse inflammation of the entire brain
+58956,panenthesism,the belief that God is in part of the universe and its phenomena and also transcends the universe and intervenes in its operations
+58957,panfish,any of numerous small food fishes; especially those caught with hook and line and not available on the market
+58958,pang,a sharp spasm of pain
+58959,pang stab twinge,a sudden sharp feeling; "pangs of regret"; "she felt a stab of excitement"; "twinges of conscience"
+58960,pang sting,a mental pain or distress; "a pang of conscience"
+58961,pangolin scaly_anteater anteater,toothless mammal of southern Africa and Asia having a body covered with horny scales and a long snout for feeding on ants and termites
+58962,panhandle,a relatively narrow strip of land projecting from some larger area; "Wheeling is located in the northern panhandle of West Virginia"
+58963,panhandle,the handle of a pan
+58964,panhandler,a beggar who approaches strangers asking for money
+58965,panic scare,sudden mass fear and anxiety over anticipated events; "panic in the stock market"; "a war scare"; "a bomb scare led them to evacuate the building"
+58966,panic terror affright,an overwhelming feeling of fear and anxiety
+58967,panic_button,a button to push in order to summon help in case of an emergency; "the circuit is operated by a panic button"; "when he saw that I was angry he hit the panic button"
+58968,panic_disorder,an anxiety disorder characterized by unpredictable panic attacks; the attacks are usually severe but brief
+58969,panic_grass,any grass of the genus Panicum; grown for grain and fodder
+58970,panicle,compound raceme or branched cluster of flowers
+58971,panicled_aster,a variety of aster
+58972,pannier,either of a pair of bags or boxes hung over the rear wheel of a vehicle (as a bicycle)
+58973,pannier,a large basket (usually one of a pair) carried by a beast of burden or on by a person
+58974,pannier,set of small hoops used to add fullness over the hips
+58975,pannikin,a small pan or cup (usually of tin)
+58976,panoply,a complete and impressive array
+58977,panopticon,an area where everything is visible
+58978,panopticon,a circular prison with cells distributed around a central surveillance station; proposed by Jeremy Bentham in 1791
+58979,panorama cyclorama diorama,a picture (or series of pictures) representing a continuous scene
+58980,panoramic_sight,gunsight (a telescopic device for an artillery piece) that can be rotated horizontally in a full circle
+58981,panpipe pandean_pipe syrinx,a primitive wind instrument consisting of several parallel pipes bound together
+58982,pansexual,a person who participates in (or is open to) sexual activities of many kinds
+58983,pansinusitis,inflammation of all of the paranasal sinuses
+58984,pansy Viola_tricolor_hortensis,large-flowered garden plant derived chiefly from the wild pansy of Europe and having velvety petals of various colors
+58985,pansy_orchid,any of various orchids of the genus Miltonia having solitary or loosely racemose showy broadly spreading flowers
+58986,pant,the noise made by a short puff of steam (as from an engine)
+58987,pant_leg trouser_leg,the leg of a pair of trousers
+58988,pantaloon,trousers worn in former times
+58989,pantechnicon,a large moving van (especially one used for moving furniture)
+58990,pantheism,(rare) worship that admits or tolerates all gods
+58991,pantheism,the doctrine or belief that God is the universe and its phenomena (taken or conceived of as a whole) or the doctrine that regards the universe as a manifestation of God
+58992,pantheist,someone who believes that God and the universe are the same
+58993,pantheon,all the gods of a religion
+58994,pantheon,a monument commemorating a nation's dead heroes
+58995,pantheon,(antiquity) a temple to all the gods
+58996,panther,a leopard in the black color phase
+58997,pantie panty scanty step-in,short underpants for women or children (usually used in the plural)
+58998,pantile,a roofing tile with a S-shape; laid so that curves overlap
+58999,panting heaving,breathing heavily (as after exertion)
+59000,panting trousering,any fabric used to make trousers
+59001,panto,an abbreviation of pantomime
+59002,pantograph,mechanical device used to copy a figure or plan on a different scale
+59003,pantothenic_acid pantothen,a vitamin of the vitamin B complex that performs an important role in the oxidation of fats and carbohydrates and certain amino acids; occurs in many foods
+59004,pantry larder buttery,a small storeroom for storing foods or wines
+59005,pants_suit pantsuit,a pair of pants and a matching jacket worn by women
+59006,panty_girdle,a woman's undergarment that combines a girdle and panties
+59007,pantyhose,a woman's tights consisting of underpants and stockings
+59008,panzer,an armored vehicle or tank
+59009,pap pablum,worthless or oversimplified ideas
+59010,papacy pontificate,the government of the Roman Catholic Church
+59011,papain,a proteolytic enzyme obtained from the unripe papaya; used as a meat tenderizer
+59012,papal_cross,a cross with three crossbars
+59013,papal_infallibility,belief of the Roman Catholic Church that God protects the pope from error when he speaks about faith or morality
+59014,paparazzo,a freelance photographer who pursues celebrities trying to take candid photographs of them to sell to newspapers or magazines
+59015,papaverine Kavrin,an alkaloid medicine (trade name Kavrin) obtained from opium; used to relax smooth muscles; it is nonaddictive
+59016,papaw pawpaw,fruit with yellow flesh; related to custard apples
+59017,papaya,large oval melon-like tropical fruit with yellowish flesh
+59018,papaya papaia pawpaw papaya_tree melon_tree Carica_papaya,tropical American shrub or small tree having huge deeply palmately cleft leaves and large oblong yellow fruit
+59019,papaya_juice,juice from papayas
+59020,paper,a material made of cellulose pulp derived mainly from wood or rags or certain grasses
+59021,paper,a scholarly article describing the results of observations or stating hypotheses; "he has written many scientific papers"
+59022,paper,a medium for written communication; "the notion of an office running without paper is absurd"
+59023,paper-pusher,a clerk or bureaucrat who does paperwork
+59024,paper_chain,a chain made of loops of colored paper; used to decorate a room
+59025,paper_chase hare_and_hounds,an outdoor game; one group of players (the hares) start off on a long run scattering bits of paper (the scent) and pursuers (the hounds) try to catch them before they reach a designated spot
+59026,paper_chromatography,chromatography that uses selective adsorption on a strip of paper
+59027,paper_clip paperclip gem_clip,a wire or plastic clip for holding sheets of paper together; "the paper clip was invented in 1900"
+59028,paper_cutter,a cutting implement for cutting sheets of paper to the desired size
+59029,paper_doll,a piece of paper cut or folded into the shape of a human being
+59030,paper_electrophoresis carrier_electrophoresis,electrophoresis carried out on filter paper
+59031,paper_fastener,a fastener for holding a sheet of paper in place
+59032,paper_feed,a device for inserting sheets of paper into a printer or typewriter; "the job was delayed because the paper feed was clogged"
+59033,paper_flower Bougainvillea_glabra,Brazilian vine that tends to flower continuously
+59034,paper_loss,an unrealized loss on an investment calculated by subtracting the current market price from the investor's cost
+59035,paper_mill,a mill where paper is manufactured
+59036,paper_money folding_money paper_currency,currency issued by a government or central bank and consisting of printed paper that can circulate as a substitute for specie
+59037,paper_mulberry Broussonetia_papyrifera,shrubby Asiatic tree having bark (tapa) that resembles cloth; grown as a shade tree in Europe and America; male flowers are pendulous catkins and female are urn-shaped followed by small orange-red aggregate berries
+59038,paper_nautilus nautilus Argonaut Argonauta_argo,cephalopod mollusk of warm seas whose females have delicate papery spiral shells
+59039,paper_plate,a disposable plate made of cardboard
+59040,paper_profit,an unrealized gain on an investment calculated by subtracting the investor's cost from the current market price
+59041,paper_route,the job of delivering newspapers regularly
+59042,paper_route paper_round,the route taken when delivering newspapers every day
+59043,paper_tape,a long narrow strip of paper
+59044,paper_tiger,the nature of a person or organization that appears powerful but is actually powerless and ineffectual; "he reminded Mao that the paper tiger had nuclear teeth"
+59045,paper_towel,a disposable towel made of absorbent paper
+59046,paper_toweling,absorbent paper used as toweling
+59047,paper_trail,the written evidence of someone's activities; "this paper trail consisted mainly of electronically stored information"
+59048,paper_wasp,any of several social wasps that construct nests of a substance like paper
+59049,paper_white Narcissus_papyraceus,a daffodil having star-shaped white blossoms; often grown indoors to bloom in the winter
+59050,paperback_book paper-back_book paperback softback_book softback soft-cover_book soft-cover,a book with paper covers
+59051,paperboard poster_board posterboard,a cardboard suitable for making posters
+59052,paperboy,a boy who sells or delivers newspapers
+59053,paperhanger,someone who passes bad checks or counterfeit paper money
+59054,paperhanger paperer,one whose occupation is decorating walls with wallpaper
+59055,papering paperhanging,the application of wallpaper
+59056,papermaking,the craft of making paper
+59057,paperweight,a weight used to hold down a stack of papers
+59058,paperwork,work that involves handling papers: forms or letters or reports etc.
+59059,papier-mache paper-mache,a substance made from paper pulp that can be molded when wet and painted when dry
+59060,papilla,(botany) a tiny outgrowth on the surface of a petal or leaf
+59061,papilla,a small nipple-shaped protuberance concerned with taste, touch, or smell; "the papillae of the tongue"
+59062,papilla,a small projection of tissue at the base of a hair or tooth or feather
+59063,papillary_muscle,any of several muscles associated with the atrioventricular valves; "the papillary muscles contract during systole to prevent regurgitation of blood into the atria"
+59064,papilledema,swelling of the optic disc (where the optic nerve enters the eyeball); usually associated with an increase in intraocular pressure
+59065,papilloma villoma papillary_tumor papillary_tumour,a benign epithelial tumor forming a rounded mass
+59066,papillon,small slender toy spaniel with erect ears and a black-spotted brown to white coat
+59067,papist,an offensive term for Roman Catholics; originally, a Roman Catholic who was a strong advocate of the papacy
+59068,papoose pappoose,an American Indian infant
+59069,papovavirus,any of a group of animal viruses associated with or causing papillomas or polyomas
+59070,pappus,calyx composed of scales or bristles or featherlike hairs in plants of the Compositae such as thistles and dandelions
+59071,paprika,a mild powdered seasoning made from dried pimientos
+59072,papule,a small inflamed elevation of skin that is nonsuppurative (as in chicken pox)
+59073,papulovesicle vesicopapule,a papule that changes into a blister
+59074,papyrus,paper made from the papyrus plant by cutting it in strips and pressing it flat; used by ancient Egyptians and Greeks and Romans
+59075,papyrus,a document written on papyrus
+59076,papyrus Egyptian_paper_reed Egyptian_paper_rush paper_rush paper_plant Cyperus_papyrus,tall sedge of the Nile valley yielding fiber that served many purposes in historic times
+59077,par,(golf) the standard number of strokes set for each hole on a golf course, or for the entire course; "a par-5 hole"; "par for this course is 72"
+59078,par_value face_value nominal_value,the value of a security that is set by the company issuing it; unrelated to market value
+59079,para,100 para equal 1 dinar in Yugoslavia
+59080,para_aminobenzoic_acid PABA,a metabolic acid found in yeast and liver cells; used to make dyes and drugs and sun blockers
+59081,parable,(New Testament) any of the stories told by Jesus to convey his religious message; "the parable of the prodigal son"
+59082,parabola,a plane curve formed by the intersection of a right circular cone and a plane parallel to an element of the curve
+59083,parabolic_mirror,a parabolic reflector for light radiation
+59084,parabolic_reflector paraboloid_reflector,a concave reflector used to produce a parallel beam when the source is placed at its focus or to focus an incoming parallel beam
+59085,paraboloid,a surface having parabolic sections parallel to a single coordinate axis and elliptic sections perpendicular to that axis
+59086,paracentral_scotoma,a scotoma that is adjacent to the fixation point
+59087,paracervical_block,regional anesthesia resulting from the injection of a local anesthetic on each side of the cervix; used during labor and childbirth
+59088,parachute chute,rescue equipment consisting of a device that fills with air and retards your fall
+59089,parachutist parachuter parachute_jumper,a person who jumps from aircraft using a parachute
+59090,paracosm,a prolonged fantasy world invented by children; can have a definite geography and language and history
+59091,parade,an extended (often showy) succession of persons or things; "a parade of strollers on the mall"; "a parade of witnesses"
+59092,parade,a ceremonial procession including people marching
+59093,parade,a visible display; "she made a parade of her sorrows"
+59094,parade_ground,an area for holding parades
+59095,paradiddle roll drum_roll,the sound of a drum (especially a snare drum) beaten rapidly and continuously
+59096,paradigm,systematic arrangement of all the inflected forms of a word
+59097,paradigm,the generally accepted perspective of a particular discipline at a given time; "he framed the problem within the psychoanalytic paradigm"
+59098,paradise_tree bitterwood Simarouba_glauca,medium to large tree of tropical North and South America having odd-pinnate leaves and long panicles of small pale yellow flowers followed by scarlet fruits
+59099,paradox,(logic) a statement that contradicts itself; "`I always lie' is a paradox because if it is true it must be false"
+59100,paradoxical_sleep rapid_eye_movement_sleep REM_sleep rapid_eye_movement REM,a recurring sleep state during which dreaming occurs; a state of rapidly shifting eye movements during sleep
+59101,paraduodenal_smear duodenal_smear,alimentary tract smear of material obtained from the duodenum
+59102,paraffin paraffin_oil,(British usage) kerosine
+59103,paraffin paraffin_wax,from crude petroleum; used for candles and for preservative or waterproof coatings
+59104,parafovea,area of the retina immediately surrounding the fovea
+59105,paragon idol perfection beau_ideal,an ideal instance; a perfect embodiment of a concept
+59106,paragonite,a colorless or pale brown mica with sodium
+59107,paragraph,one of several distinct subdivisions of a text intended to separate ideas; the beginning is usually marked by a new indented line
+59108,paragrapher,a writer of paragraphs (as for publication on the editorial page of a newspaper)
+59109,parainfluenza_virus,a virus that causes upper respiratory infection (including the common cold and bronchiolitis); most often in children
+59110,parakeet parrakeet parroket paraquet paroquet parroquet,any of numerous small slender long-tailed parrots
+59111,paralanguage paralinguistic_communication,the use of manner of speaking to communicate particular meanings
+59112,paraldehyde ethanal_trimer,a colorless liquid (a cyclic trimer of acetaldehyde) that is used as a sedative and a solvent
+59113,paralegal legal_assistant,a person with specialized training who assists lawyers
+59114,paralepsis paraleipsis paralipsis preterition,suggesting by deliberately concise treatment that much of significance is omitted
+59115,parallax,the apparent displacement of an object as seen from two different points that are not on a line with the object
+59116,parallel,(mathematics) one of a set of parallel geometric figures (parallel lines or planes); "parallels never meet"
+59117,parallel-veined_leaf,a leaf whose veins run in parallel from the stem
+59118,parallel_bars bars,gymnastic apparatus consisting of two parallel wooden rods supported on uprights
+59119,parallel_circuit shunt_circuit,a closed circuit in which the current divides into two or more paths before recombining to complete the circuit
+59120,parallel_interface parallel_port,an interface between a computer and a printer where the computer sends multiple bits of information to the printer simultaneously
+59121,parallel_operation simultaneous_operation,the simultaneous execution of two or more operations
+59122,parallelepiped parallelopiped parallelepipedon parallelopipedon,a prism whose bases are parallelograms
+59123,parallelism correspondence,similarity by virtue of corresponding
+59124,parallelogram,a quadrilateral whose opposite sides are both parallel and equal in length
+59125,paralogism,an unintentionally invalid argument
+59126,paralysis palsy,loss of the ability to move a body part
+59127,paralysis_agitans Parkinsonism Parkinson's_disease Parkinson's_syndrome Parkinson's shaking_palsy,a degenerative disorder of the central nervous system characterized by tremor and impaired muscular coordination
+59128,paralytic,a person suffering from paralysis
+59129,paralytic_abasia,abasia related to paralysis of the leg muscles
+59130,paramagnet,magnet made of a substance whose magnetization is proportional to the strength of the magnetic field applied to it
+59131,paramagnetism,materials like aluminum or platinum become magnetized in a magnetic field but it disappears when the field is removed
+59132,paramecium paramecia,any member of the genus Paramecium
+59133,paramedic paramedical,a person trained to assist medical professionals and to give emergency medical treatment
+59134,parameter,any factor that defines a system and determines (or limits) its performance
+59135,parameter,a quantity (such as the mean or variance) that characterizes a statistical population and that can be estimated by calculations from sample data
+59136,parameter parametric_quantity,a constant in the equation of a curve that can be varied to yield a family of similar curves
+59137,parametric_statistic,any statistic computed by procedures that assume the data were drawn from a particular distribution
+59138,parametritis,inflammation of connective tissue adjacent to the uterus
+59139,paramilitary paramilitary_force paramilitary_unit paramilitary_organization paramilitary_organisation,a group of civilians organized in a military fashion (especially to operate in place of or to assist regular army troops)
+59140,paramnesia,(psychiatry) a disorder of memory in which dreams or fantasies are confused with reality
+59141,paramount_issue,an issue whose settlement is more important than anything else; and issue that must be settled before anything else can be settled
+59142,paramountcy,the state of being paramount; the highest rank or authority
+59143,paramyxovirus,a group of viruses including those causing mumps and measles
+59144,paranasal_sinus sinus_paranasales nasal_sinus,any of the paired sinuses in the bones of the face adjacent to the nasal cavity that are lined with mucous membrane that is continuous with the lining of the nasal cavities
+59145,parang,a stout straight knife used in Malaysia and Indonesia
+59146,paranoia,a psychological disorder characterized by delusions of persecution or grandeur
+59147,paranoid paranoiac,a person afflicted with paranoia
+59148,paranoid_schizophrenia paranoic_type_schizophrenia paraphrenic_schizophrenia paraphrenia,a form of schizophrenia characterized by delusions (of persecution or grandeur or jealousy); symptoms may include anger and anxiety and aloofness and doubts about gender identity; unlike other types of schizophrenia the patients are usually presentable and (if delusions are not acted on) may function in an apparently normal manner
+59149,paraparesis,a slight paralysis or weakness of both legs
+59150,parapet,a low wall along the edge of a roof or balcony
+59151,parapet breastwork,fortification consisting of a low wall
+59152,paraph,a flourish added after or under your signature (originally to protect against forgery)
+59153,paraphilia,abnormal sexual activity
+59154,paraphrase paraphrasis,rewording for the purpose of clarification
+59155,paraphysis,a sterile simple or branched filament or hair borne among sporangia; may be pointed or clubbed
+59156,paraplegia,paralysis of the lower half of the body (most often as a result of trauma)
+59157,paraplegic,a person who has paraplegia (is paralyzed from the waist down)
+59158,parapodium,one of a pair of fleshy appendages of a polychete annelid that functions in locomotion and breathing
+59159,paraprofessional,a trained worker who is not a member of a profession but who assists a professional
+59160,parapsychologist,someone who studies the evidence for such psychological phenomena as psychokinesis and telepathy and clairvoyance
+59161,paraquat,a poisonous yellow solid used in solution as a herbicide
+59162,paraquat_poisoning,poisoning caused by ingestion of paraquat; characterized by progressive damage to the esophagus and liver and kidneys
+59163,parasail,parachute that will lift a person up into the air when it is towed by a motorboat or a car
+59164,parasailing paragliding,gliding in a parasail
+59165,parasite,an animal or plant that lives in or on a host (another animal or plant); it obtains nourishment from the host without benefiting or killing the host
+59166,parasite_yew Parasitaxus_ustus,rare and endangered monoecious parasitic conifer of New Caledonia; parasitic on Falcatifolium taxoides
+59167,parasitemia parasitaemia,a condition in which parasites are present in the blood
+59168,parasitic_jaeger arctic_skua Stercorarius_parasiticus,a variety of jaeger
+59169,parasitic_plant,plant living on another plant and obtaining organic nutriment from it
+59170,parasitism,the relation between two different kinds of organisms in which one receives benefits from the other by causing damage to it (usually not fatal damage)
+59171,parasol sunshade,a handheld collapsible source of shade
+59172,parasol_mushroom Lepiota_procera,edible long-stalked mushroom with white flesh and gills and spores; found in open woodlands in autumn
+59173,parasympathetic_nervous_system parasympathetic,originates in the brain stem and lower part of the spinal cord; opposes physiological effects of the sympathetic nervous system: stimulates digestive secretions; slows the heart; constricts the pupils; dilates blood vessels
+59174,parathion,a colorless and odorless toxic oil used as an insecticide
+59175,parathion_poisoning,a toxic condition resulting from inhalation or ingestion of the insecticide parathion; characterized by nausea and abdominal pains and headache and convulsions and sweating
+59176,parathyroid_gland parathyroid,any one of four endocrine glands situated above or within the thyroid gland
+59177,parathyroid_hormone parathormone,hormone synthesized and released into the blood stream by the parathyroid glands; regulates phosphorus and calcium in the body and functions in neuromuscular excitation and blood clotting
+59178,paratrooper para,a soldier in the paratroops
+59179,paratroops,infantry trained and equipped to parachute
+59180,paratyphoid paratyphoid_fever,any of a variety of infectious intestinal diseases resembling typhoid fever
+59181,paraumbilical_vein vena_paraumbilicalis,small veins arising in skin around the navel; terminate as accessory portal veins
+59182,parcel portion share,the allotment of some amount by dividing something; "death gets more than its share of attention from theologians"
+59183,parcel_post,postal service that handles packages
+59184,parcellation,the division into parcels; "the increasing parcellation of land with every generation"
+59185,parchment,a superior paper resembling sheepskin
+59186,parchment sheepskin lambskin,skin of a sheep or goat prepared for writing on
+59187,pardon amnesty,a warrant granting release from punishment for an offense
+59188,pardoner,a medieval cleric who raised money for the church by selling papal indulgences
+59189,pardoner forgiver excuser,a person who pardons or forgives or excuses a fault or offense
+59190,paregmenon,juxtaposing words having a common derivation (as in `sense and sensibility')
+59191,paregoric camphorated_tincture_of_opium,medicine used to treat diarrhea
+59192,parenchyma,the primary tissue of higher plants composed of thin-walled cells that remain capable of cell division even when mature; constitutes the greater part of leaves, roots, the pulp of fruits, and the pith of stems
+59193,parenchyma,animal tissue that constitutes the essential part of an organ as contrasted with e.g. connective tissue and blood vessels
+59194,parent,a father or mother; one who begets or one who gives birth to or nurtures and raises a child; a relative who plays the role of guardian
+59195,parent,an organism (plant or animal) from which younger ones are obtained
+59196,parentage birth,the kinship relation of an offspring to the parents
+59197,parental_quality,a quality appropriate to a parent
+59198,parenthesis,either of two punctuation marks (or) used to enclose textual material
+59199,parenthesis-free_notation,a notation for forming mathematical expressions that does not use parentheses to delimit components
+59200,parenthetical_expression parenthetical,an expression in parentheses; "his writing was full of parentheticals"
+59201,parenthood parentage,the state of being a parent; "to everyone's surprise, parenthood reformed the man"
+59202,parer,a manicurist who trims the fingernails
+59203,parer paring_knife,a small sharp knife used in paring fruits or vegetables
+59204,paresis,a slight or partial paralysis
+59205,paresthesia paraesthesia,abnormal skin sensations (as tingling or tickling or itching or burning) usually associated with peripheral nerve damage
+59206,paretic,a person afflicted with paresis (partial paralysis)
+59207,parfait,layers of ice cream and syrup and whipped cream
+59208,parfait_glass,a tall slender glass with a short stem in which parfait is served
+59209,parget pargeting pargetting,plaster used to coat outer walls and line chimneys
+59210,pargeting pargetting,ornamental plastering
+59211,pargeting pargetting pargetry,ornamental plasterwork
+59212,parhelion mock_sun sundog,a bright spot on the parhelic circle; caused by diffraction by ice crystals; "two or more parhelia are usually seen at once"
+59213,pari-mutuel_machine totalizer totaliser totalizator totalisator,computer that registers bets and divides the total amount bet among those who won
+59214,pariah_dog pye-dog pie-dog,ownerless half-wild mongrel dog common around Asian villages especially India
+59215,parietal_bone,either of two skull bones between the frontal and occipital bones and forming the top and sides of the cranium
+59216,parietal_gyrus,any of the convolutions of the outer surface of the parietal lobe of the cerebrum
+59217,parietal_lobe parietal_cortex,that part of the cerebral cortex in either hemisphere of the brain lying below the crown of the head
+59218,parietal_pericardium,the tough outermost layer of the pericardium that is attached to the diaphragm and the sternum
+59219,parietal_placentation,where ovules develop on the wall or slight outgrowths of the wall forming broken partitions within a compound ovary
+59220,parietal_pleura,pleura that lines the inner chest walls and covers the diaphragm
+59221,parieto-occipital_sulcus parieto-occipital_fissure,a sulcus near the posterior end of each hemisphere that separates the parietal lobes and the occipital lobes in both hemispheres
+59222,parietomastoid_suture,the suture between the parietal and the temporal bones
+59223,parimutuel,betting where winners share the total amount wagered
+59224,paring,(usually plural) a part of a fruit or vegetable that is pared or cut off; especially the skin or peel; "she could peel an apple with a single long paring"
+59225,paring sliver shaving,a thin fragment or slice (especially of wood) that has been shaved from something
+59226,parish,the local subdivision of a diocese committed to one pastor
+59227,parish,a local church community
+59228,parishioner,a member of a parish
+59229,parisology,the use of ambiguous words
+59230,parity,(mathematics) a relation between a pair of integers: if both integers are odd or both are even they have the same parity; if one is odd and the other is even they have different parity; "parity is often used to check the integrity of transmitted data"
+59231,parity,functional equality
+59232,parity conservation_of_parity space-reflection_symmetry mirror_symmetry,(physics) parity is conserved in a universe in which the laws of physics are the same in a right-handed system of coordinates as in a left-handed system
+59233,parity para,(obstetrics) the number of liveborn children a woman has delivered; "the parity of the mother must be considered"; "a bipara is a woman who has given birth to two children"
+59234,parity_bit parity check_bit,(computer science) a bit that is used in an error detection procedure in which a 0 or 1 is added to each group of bits so that it will have either an odd number of 1's or an even number of 1's; e.g., if the parity is odd then any group of bits that arrives with an even number of 1's must contain an error
+59235,parity_check redundancy_check odd-even_check,a system of checking for errors in computer functioning
+59236,park,a gear position that acts as a parking brake; "the put the car in park and got out"
+59237,park commons common green,a piece of open land for recreational use in an urban area; "they went for a walk in the park"
+59238,park parkland,a large area of land preserved in its natural state as public property; "there are laws that protect the wildlife in this park"
+59239,park_bench,a bench in a public park
+59240,park_commissioner,a commissioner in charge of public parks
+59241,parka windbreaker windcheater anorak,a kind of heavy jacket (`windcheater' is a British term)
+59242,parking,space in which vehicles can be parked; "there is plenty of parking behind the store"
+59243,parking,the act of maneuvering a vehicle into a location where it can be left temporarily
+59244,parking_lot car_park park parking_area,a lot where cars are parked
+59245,parking_meter,a coin-operated timer located next to a parking space; depositing money into it entitles you to park your car there for a specified length of time
+59246,parking_space parking_zone,a space where an automobile can be parked
+59247,parking_ticket,a ticket issued for parking in a restricted place
+59248,parlance idiom,a manner of speaking that is natural to native speakers of a language
+59249,parlay,a series of wagers in which the winnings from one wager are used as a stake for the subsequent wagers
+59250,parley,a negotiation between enemies
+59251,parliament,a legislative assembly in certain countries
+59252,parliamentarian,an expert in parliamentary rules and procedures
+59253,parliamentary_agent,a person who is employed to look after the affairs of businesses that are affected by legislation of the British Parliament
+59254,parliamentary_democracy,a democracy having a parliament
+59255,parliamentary_monarchy,a monarchy having a parliament
+59256,parlor parlour,reception room in an inn or club where visitors can be received
+59257,parlor_car parlour_car drawing-room_car palace_car chair_car,a passenger car for day travel; you pay extra fare for individual chairs
+59258,parlor_game parlour_game,a game suitable for playing in a parlor
+59259,parlormaid parlourmaid,a maid in a private home whose duties are to care for the parlor and the table and to answer the door
+59260,parnassia grass-of-Parnassus,any of various usually evergreen bog plants of the genus Parnassia having broad smooth basal leaves and a single pale flower resembling a buttercup
+59261,parochialism,a limitation of views or interests like that defined by a local parish
+59262,parodist lampooner,mimics literary or musical style for comic effect
+59263,parody lampoon spoof sendup send-up mockery takeoff burlesque travesty pasquinade put-on,a composition that imitates or misrepresents somebody's style, usually in a humorous way
+59264,parody mockery takeoff,humorous or satirical mimicry
+59265,parol_evidence_rule,a rule that oral evidence cannot be used to contradict the terms of a written contract
+59266,parole,(law) a conditional release from imprisonment that entitles the person to serve the remainder of the sentence outside the prison as long as the terms of release are complied with
+59267,parole word word_of_honor,a promise; "he gave his word"
+59268,paronychia,infection in the tissues adjacent to a nail on a finger or toe
+59269,paronym,a word that strongly resembles another word in spelling
+59270,parotid_gland,a large salivary gland that produces 50% of daytime saliva; in human beings it is located in front of and below each ear
+59271,parotid_vein,parotid branches of the facial vein; they drain part of the parotid gland and empty into the retromandibular vein
+59272,parotitis,inflammation of one or both parotid glands
+59273,paroxetime Paxil,a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade name Paxil)
+59274,paroxysm fit convulsion,a sudden uncontrollable attack; "a paroxysm of giggling"; "a fit of coughing"; "convulsions of laughter"
+59275,paroxysmal_trepidant_abasia,abasia related to spasticity of the legs
+59276,paroxytone,word having stress or acute accent on the next to last syllable
+59277,parquet,seating on the main floor between the orchestra and the parquet circle
+59278,parquet parquet_floor,a floor made of parquetry
+59279,parquet_circle parterre,seating at the rear of the main floor (beneath the balconies)
+59280,parquetry parqueterie,a patterned wood inlay used to cover a floor
+59281,parr,a young salmon up to 2 years old
+59282,parr,the young of various fishes
+59283,parricide,someone who kills his or her parent
+59284,parricide,the murder of your own father or mother
+59285,parrot,a copycat who does not understand the words or acts being imitated
+59286,parrot,usually brightly colored zygodactyl tropical birds with short hooked beaks and the ability to mimic sounds
+59287,parrot's_beak parrot's_bill Clianthus_puniceus,evergreen shrub with scarlet to white clawlike or beaklike flowers; New Zealand
+59288,parrotfish polly_fish pollyfish,gaudy tropical fishes with parrotlike beaks formed by fusion of teeth
+59289,parry,(fencing) blocking a lunge or deflecting it with a circular motion of the sword
+59290,pars_distilis pars_anterior,the anterior part of the anterior pituitary
+59291,pars_intermedia,a thin piece of tissue that has become part of the posterior pituitary
+59292,parsec secpar,a unit of astronomical length based on the distance from Earth at which stellar parallax is 1 second of arc; equivalent to 3.262 light years
+59293,parser,a computer program that divides code up into functional components; "compilers must parse source code in order to translate it into object code"
+59294,parsimony parsimoniousness thrift penny-pinching,extreme care in spending money; reluctance to spend money unnecessarily
+59295,parsley,aromatic herb with flat or crinkly leaves that are cut finely and used to garnish food
+59296,parsley Petroselinum_crispum,annual or perennial herb with aromatic leaves
+59297,parsley_haw parsley-leaved_thorn Crataegus_apiifolia Crataegus_marshallii,southern United States hawthorn with pinnately lobed leaves
+59298,parsnip,the whitish root of cultivated parsnip
+59299,parsnip,whitish edible root; eaten cooked
+59300,parsnip Pastinaca_sativa,a strong-scented plant cultivated for its edible root
+59301,parson's_nose pope's_nose,the tail of a dressed fowl
+59302,parsonage vicarage rectory,an official residence provided by a church for its parson or vicar or rector
+59303,part,that which concerns a person with regard to a particular role or situation; "it requires vigilance on our part"; "they resisted every effort on his part"
+59304,part parting,a line of scalp that can be seen when sections of hair are combed in opposite directions; "his part was right in the middle"
+59305,part piece,a portion of a natural object; "they analyzed the river into three parts"; "he needed a piece of granite"
+59306,part portion,something less than the whole of a human artifact; "the rear part of the house"; "glue the two parts together"
+59307,part portion component_part component constituent,something determined in relation to something that includes it; "he wanted to feel a part of something bigger than himself"; "I read a portion of the manuscript"; "the smaller component is hard to reach"; "the animal constituent of plankton"
+59308,part section division,one of the portions into which something is regarded as divided and which together constitute a whole; "the written part of the exam"; "the finance section of the company"; "the BBC's engineering division"
+59309,part voice,the melody carried by a particular voice or instrument in polyphonic music; "he tried to sing the tenor part"
+59310,part-of-speech_tagger pos_tagger,a tagging program whose labels indicate a word's part of speech
+59311,part-owner,a person who owns something in common with others
+59312,part-singing,singing with three or more voice parts
+59313,part-timer,someone who works less than the customary or standard time
+59314,part_music,vocal music for several voices in independent parts (usually performed without accompaniment)
+59315,part_of_speech form_class word_class,one of the traditional categories of words intended to reflect their functions in a grammatical context
+59316,partaker sharer,someone who has or gives or receives a part or a share
+59317,parted_leaf,a leaf having margins incised almost to the base so as to create distinct divisions or lobes
+59318,parterre,an ornamental flower garden; beds and paths are arranged to form a pattern
+59319,parthenocarpy,(botany) the development of a fruit without fertilization or seeds
+59320,parthenogenesis parthenogeny,process in which an unfertilized egg develops into a new individual; common among insects and some other arthropods
+59321,parthenogenesis parthenogeny virgin_birth,human conception without fertilization by a man
+59322,parthenote,a cell resulting from parthenogenesis
+59323,partial_breach,a breach that does not destroy the value of the contract but can give rise to a claim for damages
+59324,partial_correlation,a correlation between two variables when the effects of one or more related variables are removed
+59325,partial_denture,a denture replacing one or more teeth in a dental arch
+59326,partial_derivative partial,the derivative of a function of two or more variables with respect to a single variable while the other variables are considered to be constant
+59327,partial_differential_equation,a differential equation involving a functions of more than one variable
+59328,partial_eclipse,an eclipse in which the eclipsed body is only partially obscured
+59329,partial_veil,membrane of the young sporophore of various mushrooms extending from the margin of the cap to the stem and is ruptured by growth; represented in mature mushroom by an annulus around the stem and sometimes a cortina on the margin of the cap
+59330,partial_verdict,(criminal law) a finding that the defendant is guilty of some charges but innocent of others
+59331,partiality partisanship,an inclination to favor one group or view or opinion over alternatives
+59332,partialness,the state of being only a part; not total; incomplete
+59333,participant player,someone who takes part in an activity; "he was a major player in setting up the corporation"
+59334,participation involvement,the condition of sharing in common with others (as fellows or partners etc.)
+59335,participation_loan loan_participation participation_financing,a loan that is shared by a group of banks that join to make a loan too big for any one of them alone
+59336,participle participial,a non-finite form of the verb; in English it is used adjectivally and to form compound tenses
+59337,particle,a function word that can be used in English to form phrasal verbs
+59338,particle subatomic_particle,a body having finite mass and internal structure but negligible dimensions
+59339,particle_beam,a collimated flow of particles (atoms or electrons or molecules)
+59340,particle_detector,a chamber in which particles can be made visible
+59341,particle_physics high-energy_physics high_energy_physics,the branch of physics that studies subatomic particles and their interactions
+59342,particolored_buckeye,a buckeye marked by different colors or tints
+59343,particular particular_proposition,(logic) a proposition that asserts something about some (but not all) members of a class
+59344,particular specific,a fact about some part (as opposed to general); "he always reasons from the particular to the general"
+59345,particularism,a focus on something particular
+59346,particularity specialness,the quality of being particular and pertaining to a specific case or instance; "the particularity of human situations"
+59347,particularization particularisation detailing,an individualized description of a particular instance
+59348,particulate particulate_matter,a small discrete mass of solid or liquid matter that remains individually dispersed in gas or liquid emissions (usually considered to be an atmospheric pollutant)
+59349,partisan partizan,a pike with a long tapering double-edged blade with lateral projections; 16th and 17th centuries
+59350,partisan zealot drumbeater,a fervent and even militant proponent of something
+59351,partita,one of the variations contained in a partita
+59352,partita,(music) an instrumental suite common in the 18th century
+59353,partition,(computer science) the part of a hard disk that is dedicated to a particular operating system or application and accessed as a single unit
+59354,partition,(anatomy) a structure that separates areas in an organism
+59355,partition divider,a vertical structure that divides or separates (as a wall divides one room from another)
+59356,partitionist,an advocate of partitioning a country
+59357,partitive,word (such a `some' or `less') that is used to indicate a part as distinct from a whole
+59358,partner,a person who is a member of a partnership
+59359,partner_relation,the responsibility of partners to act in one another's best interests
+59360,partnership,a cooperative relationship between people or groups who agree to share responsibility for achieving some specific goal; "effective language learning is a partnership between school, teacher and student"; "the action teams worked in partnership with the government"
+59361,partnership,the members of a business venture created by contract
+59362,partnership,a contract between two or more persons who agree to pool talent and money and share profits or losses
+59363,partnership_certificate,a certificate showing the interests of all parties in a business partnership
+59364,partridge,flesh of either quail or grouse
+59365,partridge,small Old World gallinaceous game birds
+59366,partridge_pea sensitive_pea wild_sensitive_plant Chamaecrista_fasciculata Cassia_fasciculata,tropical American plant having leaflets somewhat sensitive to the touch; sometimes placed in genus Cassia
+59367,partridgeberry boxberry twinberry Mitchella_repens,creeping woody plant of eastern North America with shiny evergreen leaves and scarlet berries
+59368,parts,the local environment; "he hasn't been seen around these parts in years"
+59369,parts_bin,a bin for holding spare parts
+59370,parts_catalog parts_catalogue,a list advertising parts for machinery along with prices
+59371,parts_department,the division of a business (e.g. a service garage) that sells replacement parts
+59372,parts_inventory,an inventory of replacement parts
+59373,partsong,a song with two or more voice parts
+59374,parturiency labor labour confinement lying-in travail childbed,concluding state of pregnancy; from the onset of contractions to the birth of a child; "she was in labor for six hours"
+59375,parturition birth giving_birth birthing,the process of giving birth
+59376,party,a person involved in legal proceedings; "the party of the first part"
+59377,party,a group of people gathered together for pleasure; "she joined the party after dinner"
+59378,party,an occasion on which people can assemble for social interaction and entertainment; "he planned a party to celebrate Bastille Day"
+59379,party company,a band of people associated temporarily in some activity; "they organized a party to search for food"; "the company of cooks walked into the kitchen"
+59380,party political_party,an organization to gain political power; "in 1992 Perot tried to organize a third party at the national level"
+59381,party_boss political_boss boss,a leader in a political party who controls votes and dictates appointments; "party bosses have a reputation for corruption"
+59382,party_favor party_favour favor favour,souvenir consisting of a small gift given to a guest at a party
+59383,party_game,a game to amuse guests at a party
+59384,party_girl,an attractive young woman hired to attend parties and entertain men
+59385,party_line,the policy of a political group; "He won in a vote along party lines"
+59386,party_line,a telephone line serving two or more subscribers
+59387,party_man party_liner,a member of a political party who follows strictly the party line
+59388,party_spirit,devotion to a political party
+59389,party_to_the_action party_to_the_transaction,a party of people taking a role in legal proceedings
+59390,party_wall,a wall erected on the line between two properties and shared by both owners
+59391,partygoer,someone who is attending a party; "the hall was crowded with an overflow of partygoers"
+59392,parula_warbler northern_parula Parula_americana,small grey-blue wood warbler with yellow throat and breast; of eastern North America
+59393,parvis,a courtyard or portico in front of a building (especially a cathedral)
+59394,parvovirus parvo,any of a group of viruses containing DNA in an icosahedral protein shell and causing disease in dogs and cattle; not known to be associated with any human disease
+59395,pas,(ballet) a step in dancing (especially in classical ballet)
+59396,pas_de_deux duet,(ballet) a dance for two people (usually a ballerina and a danseur noble)
+59397,pas_de_quatre,(ballet) a dance for four people
+59398,pas_de_trois,(ballet) a dance for three people
+59399,pas_seul variation,(ballet) a solo dance or dance figure
+59400,pascal Pa,a unit of pressure equal to one newton per square meter
+59401,pascal_celery Paschal_celery,any of several types of commercially grown celery having green stalks
+59402,pasha pacha,a civil or military authority in Turkey or Egypt
+59403,paso_doble,music in march time composed for dancing the paso doble; often played at bull fights
+59404,paso_doble,a ballroom dance in fast duple time
+59405,pasqueflower pasque_flower,any plant of the genus Pulsatilla; sometimes included in genus Anemone
+59406,pass,(military) a written leave of absence; "he had a pass for three days"
+59407,pass,one complete cycle of operations (as by a computer); "it was not possible to complete the computation in a single pass"
+59408,pass,a complimentary ticket; "the star got passes for his family"
+59409,pass,a flight or run by an aircraft over a target; "the plane turned to make a second pass"
+59410,pass head straits,a difficult juncture; "a pretty pass"; "matters came to a head yesterday"
+59411,pass laissez_passer,a document indicating permission to do something without restrictions; "the media representatives had special passes"
+59412,pass liberty_chit,a permit to enter or leave a military installation; "he had to show his pass in order to get out"
+59413,pass mountain_pass notch,the location in a range of mountains of a geological formation that is lower than the surrounding peaks; "we got through the pass before it started to snow"
+59414,pass passing_play passing_game passing,(American football) a play that involves one player throwing the ball to a teammate; "the coach sent in a passing play on third and long"
+59415,pass passport,any authorization to pass or go somewhere; "the pass to visit had a strict time limit"
+59416,pass strait straits,a bad or difficult situation or state of affairs
+59417,pass toss flip,(sports) the act of throwing the ball to another member of your team; "the pass was fumbled"
+59418,pass-through,an opening that resembles a window between two rooms (especially a shelved opening between a kitchen and dining room that is used to pass dishes)
+59419,passage,a section of text; particularly a section of medium length
+59420,passage,a way through or along which someone or something may pass
+59421,passage handing_over,the act of passing something to another person
+59422,passage musical_passage,a short section of a musical composition
+59423,passage passageway,a path or channel or duct through or along which something may pass; "the nasal passages"
+59424,passage passing,a bodily reaction of changing from one place or stage to another; "the passage of air from the lungs"; "the passing of flatus"
+59425,passage transit,a journey usually by ship; "the outward passage took 10 days"
+59426,passage transition,the act of passing from one state or place to the next
+59427,passageway,a passage between rooms or between buildings
+59428,passbook_savings_account,a savings account in which deposits and withdrawals are recorded in the depositor's passbook
+59429,passe-partout,a mounting for a picture using gummed tape
+59430,passed_ball,a pitch that the catcher should have caught but did not; allows a base runner to advance a base
+59431,passenger rider,a traveler riding in a vehicle (a boat or bus or car or plane or train etc) who is not operating it
+59432,passenger_car coach carriage,a railcar where passengers ride
+59433,passenger_pigeon Ectopistes_migratorius,gregarious North American migratory pigeon now extinct
+59434,passenger_ship,a ship built to carry passengers
+59435,passenger_train,a train that carries passengers
+59436,passenger_van,a van that carries passengers
+59437,passer,a person who passes as a member of a different ethnic or racial group
+59438,passer,a student who passes an examination
+59439,passer forward_passer,(football) a ball carrier who tries to gain ground by throwing a forward pass
+59440,passerby passer-by passer,a person who passes by casually or by chance
+59441,passerine passeriform_bird,perching birds mostly small and living near the ground with feet having 4 toes arranged to allow for gripping the perch; most are songbirds; hatchlings are helpless
+59442,passing,the end of something; "the passing of winter"
+59443,passing loss departure exit expiration going release,euphemistic expressions for death; "thousands mourned his passing"
+59444,passing overtaking,going by something that is moving in order to get in front of it; "she drove but well but her reckless passing of every car on the road frightened me"
+59445,passing pass qualifying,success in satisfying a test or requirement; "his future depended on his passing that test"; "he got a pass in introductory chemistry"
+59446,passing passage,the motion of one object relative to another; "stellar passings can perturb the orbits of comets"
+59447,passing_note passing_tone,a nonharmonic note inserted for transition between harmonic notes
+59448,passing_shot,a tennis return that passes an opponent who has approached the net
+59449,passion,a feeling of strong sexual desire
+59450,passion passionateness,a strong feeling or emotion
+59451,passion_fruit,egg-shaped tropical fruit of certain passionflower vines; used for sherbets and confectionery and drinks
+59452,passionflower passionflower_vine,any of various chiefly tropical American vines some bearing edible fruit
+59453,passive_air_defense,air defense by the use of deception or dispersion or protective construction
+59454,passive_immunity,an impermanent form of acquired immunity in which antibodies against a disease are acquired naturally (as through the placenta to an unborn child) or artificially (as by injection of antiserum)
+59455,passive_matrix_display,a type of LCD display used for some portable computers; parallel wires run both vertically and horizontally and pixels are turned on when the wires intersecting at that pixel are both energized; "passive matrix displays are generally inferior to active matrix displays"
+59456,passive_resistance nonviolent_resistance nonviolence,peaceful resistance to a government by fasting or refusing to cooperate
+59457,passive_source,an informant who is not assigned to obtain specific intelligence but who routinely passes on whatever information he or she has
+59458,passive_transport,transport of a substance across a cell membrane by diffusion; expenditure of energy is not required
+59459,passive_trust,a trust in which the trustee performs no active duties
+59460,passive_voice passive,the voice used to indicate that the grammatical subject of the verb is the recipient (not the source) of the action denoted by the verb; "`The ball was thrown by the boy' uses the passive voice"; "`The ball was thrown' is an abbreviated passive"
+59461,passivity passiveness,submission to others or to outside influences
+59462,passivity passiveness,the trait of remaining inactive; a lack of initiative
+59463,passkey passe-partout master_key master,key that secures entrance everywhere
+59464,passport,a document issued by a country to a citizen allowing that person to travel abroad and re-enter the home country
+59465,password watchword word parole countersign,a secret word or phrase known only to a restricted group; "he forgot the password"
+59466,past,a earlier period in someone's life (especially one that they have reason to keep secret); "reporters dug into the candidate's past"
+59467,past past_tense,a verb tense that expresses actions or states in the past
+59468,past past_times yesteryear,the time that has elapsed; "forget the past"
+59469,past_master,someone who was formerly a master
+59470,past_master,someone who has long and thorough experience in a given activity
+59471,past_participle perfect_participle,a participle that expresses completed action
+59472,past_perfect past_perfect_tense pluperfect pluperfect_tense,a perfective tense used to express action completed in the past; "`I had finished' is an example of the past perfect"
+59473,past_progressive past_progressive_tense,a progressive tense used to describe on-going action in the past; "`I had been running' is an example of the past progressive"
+59474,pasta,a dish that contains pasta as its main ingredient
+59475,pasta alimentary_paste,shaped and dried dough made from flour and water and sometimes egg
+59476,pasta_salad,a salad having any of various pastas as the base
+59477,paste,a hard, brilliant lead glass that is used in making artificial jewelry
+59478,paste,any mixture of a soft and malleable consistency
+59479,paste library_paste,an adhesive made from water and flour or starch; used on paper and paperboard
+59480,paste-up,a composition of flat objects pasted on a board or other backing; "they showed him a paste-up of the book jacket"
+59481,pasteboard,stiff cardboard made by pasting together layers of paper
+59482,pastel,any of various pale or light colors
+59483,paster,a workman who pastes
+59484,pastern fetter_bone,the part between the fetlock and the hoof
+59485,pasteurization pasteurisation,partial sterilization of foods at a temperature that destroys harmful microorganisms without major changes in the chemistry of the food
+59486,pasteurized_milk,milk that has been exposed briefly to high temperatures to destroy microorganisms and prevent fermentation
+59487,pastiche,a work of art that imitates the style of some previous work
+59488,pastime interest pursuit,a diversion that occupies one's time and thoughts (usually pleasantly); "sailing is her favorite pastime"; "his main pastime is gambling"; "he counts reading among his interests"; "they criticized the boy for his limited pursuits"
+59489,pastis,similar to absinthe but containing no wormwood
+59490,pastness,the quality of being past
+59491,pastoral,a letter from a pastor to the congregation
+59492,pastoral,a literary work idealizing the rural life (especially the life of shepherds)
+59493,pastorale pastoral idyll idyl,a musical composition that evokes rural life
+59494,pastorate,pastors collectively
+59495,pastorship pastorate,the position of pastor
+59496,pastrami,highly seasoned cut of smoked beef
+59497,pastry,any of various baked foods made of dough or batter
+59498,pastry pastry_dough,a dough of flour and water and shortening
+59499,pastry_cart,a serving cart for displaying pastry desserts to restaurant patrons
+59500,pastry_cook,a chef who specializes in pastry
+59501,pasture pastureland grazing_land lea ley,a field covered with grass or herbage and suitable for grazing by livestock
+59502,pasty,small meat pie or turnover
+59503,pasty,(usually used in the plural) one of a pair of adhesive patches worn to cover the nipples of exotic dancers and striptease performers
+59504,pat rap tap,the sound made by a gentle blow
+59505,pataca,the basic unit of money in Macao
+59506,patas hussar_monkey Erythrocebus_patas,reddish long-tailed monkey of west Africa
+59507,patch,a short set of commands to correct a bug in a computer program
+59508,patch,a piece of cloth used as decoration or to mend or cover a hole
+59509,patch_pocket,a flat pocket sewn to the outside of a garment
+59510,patch_test,a test to determine allergic sensitivity by applying small pads soaked with allergen to the unbroken skin
+59511,patchcord,a length of wire that has a plug at each end; used to make connections at a patchboard
+59512,patchiness,unevenness in quality or performance
+59513,patching,the act of mending a hole in a garment by sewing a patch over it
+59514,patchouli patchouly pachouli,a heavy perfume made from the patchouli plant
+59515,patchouli patchouly pachouli Pogostemon_cablin,small East Indian shrubby mint; fragrant oil from its leaves is used in perfumes
+59516,patchwork,sewing consisting of pieces of different materials sewn together in a pattern
+59517,patchwork hodgepodge jumble,a theory or argument made up of miscellaneous or incongruous ideas
+59518,patchwork patchwork_quilt,a quilt made by sewing patches of different materials together
+59519,pate,liver or meat or fowl finely minced or ground and variously seasoned
+59520,pate poll crown,the top of the head
+59521,patella kneecap kneepan,a small flat triangular bone in front of the knee that protects the knee joint
+59522,patency,the openness (lack of obstruction) of a bodily passage or duct
+59523,patent letters_patent,an official document granting a right or privilege
+59524,patent patent_of_invention,a document granting an inventor sole rights to an invention
+59525,patent_application,an application for sole rights to an invention
+59526,patent_ductus_arteriosus,a ductus arteriosus that failed to close at birth; may require surgical correction
+59527,patent_infringement,violation of the rights secured by a patent
+59528,patent_law,that branch of jurisprudence that studies the laws governing patents
+59529,patent_leather,leather with a hard glossy surface
+59530,patent_log screw_log taffrail_log,a cigar-shaped log with rotary fins that measure the ship's speed
+59531,patent_medicine,medicine that is protected by a patent and available without a doctor's prescription
+59532,patent_right,the right granted by a patent; especially the exclusive right to an invention
+59533,patent_system,a legal system for protecting the rights of inventors
+59534,patentee,the inventor to whom a patent is issued
+59535,pater,an informal use of the Latin word for father; sometimes used by British schoolboys or used facetiously
+59536,paternalism,the attitude (of a person or a government) that subordinates should be controlled in a fatherly way for their own good
+59537,paternity,the state of being a father; "tests were conducted to determine paternity"
+59538,paternity_suit bastardy_proceeding,a lawsuit filed to determine the father of a child born out of wedlock (and to provide for the support of the child once paternity is determined)
+59539,paternity_test,a test based on blood groups to determine whether a particular man could be the biological father of a particular child; negative results prove he was not the father but positive results show only that he could be
+59540,paternoster,a type of lift having a chain of open compartments that move continually in an endless loop so that (agile) passengers can step on or off at each floor
+59541,path,a way especially designed for a particular use
+59542,path route itinerary,an established line of travel or access
+59543,path track course,a line or route along which something travels or moves; "the hurricane demolished houses in its path"; "the track of an animal"; "the course of the river"
+59544,pathetic_fallacy,the fallacy of attributing human feelings to inanimate objects; `the friendly sun' is an example of the pathetic fallacy
+59545,pathogen,any disease-producing agent (especially a virus or bacterium or other microorganism)
+59546,pathogenesis,the origination and development of a disease
+59547,pathologic_process pathological_process,an organic process occurring as a consequence of disease
+59548,pathological_state,a physical condition that is caused by disease
+59549,pathology,any deviation from a healthy or normal condition
+59550,pathology,the branch of medical science that studies the causes and nature and effects of diseases
+59551,pathos,a style that has the power to evoke feelings
+59552,pathos poignancy,a quality that arouses emotions (especially pity or sorrow); "the film captured all the pathos of their situation"
+59553,pathway footpath,a trodden path
+59554,patience forbearance longanimity,good-natured tolerance of delay or incompetence
+59555,patient,a person who requires medical care; "the number of emergency patients has grown rapidly"
+59556,patina,an acquired change in the appearance of something (other than metal or wood); "a patina of frost"; "a patina of good breeding"
+59557,patina,a gloss or sheen on wooden furniture produced by age, polishing, or handling
+59558,patina,a fine coating of oxide (produced by oxidation over a long period of time) on the surface of a metal (particularly copper)
+59559,patio terrace,usually paved outdoor area adjoining a residence
+59560,patisserie,a bakery specializing in French pastry
+59561,patka,a scarf worn by Sikh men
+59562,patois,a regional dialect of a language (especially French); usually considered substandard
+59563,patrial,a person who has the right to be considered legally a British citizen (by virtue of the birth of a parent or grandparent)
+59564,patriarch,title for the heads of the Eastern Orthodox Churches (in Istanbul and Alexandria and Moscow and Jerusalem)
+59565,patriarch,any of the early biblical characters regarded as fathers of the human race
+59566,patriarch,a man who is older and higher in rank than yourself
+59567,patriarch paterfamilias,the male head of family or tribe
+59568,patriarchal_cross,a cross with two crossbars
+59569,patriarchate,the jurisdiction of a patriarch
+59570,patriarchy patriarchate,a form of social organization in which a male is the family head and title is traced through the male line
+59571,patrician,a person of refined upbringing and manners
+59572,patricide,a person who murders their father
+59573,patricide,the murder of your father
+59574,patrilineage agnation,line of descent traced through the paternal side of the family
+59575,patrimony,a church endowment
+59576,patriot nationalist,one who loves and defends his or her country
+59577,patriotism nationalism,love of country and willingness to sacrifice for it; "they rode the same wave of popular patriotism"; "British nationalism was in the air and patriotic sentiments ran high"
+59578,patristics patrology,the writings of the early Church Fathers
+59579,patristics patrology,the study of the lives, writings, and doctrines of the Church Fathers
+59580,patrol,a group that goes through a region at regular intervals for the purpose of security
+59581,patrol,a detachment used for security or reconnaissance
+59582,patrol,the activity of going around or through an area at regular intervals for security purposes
+59583,patrol_boat patrol_ship,a vessel assigned to patrol an area
+59584,patroller,someone on patrol duty; an individual or a member of a group that patrols an area
+59585,patron,the proprietor of an inn
+59586,patron frequenter,a regular customer
+59587,patron sponsor supporter,someone who supports or champions something
+59588,patron_saint,a saint who is considered to be a defender of some group or nation
+59589,patronage,(politics) granting favors or giving contracts or making appointments to office in return for political support
+59590,patroness patronne,a woman who is a patron or the wife of a patron
+59591,patronymic patronym,a family name derived from name of your father or a paternal ancestor (especially with an affix (such as -son in English or O'- in Irish) added to the name of your father or a paternal ancestor)
+59592,patter,a quick succession of light rapid sounds; "the patter of mice"; "the patter of tiny feet"
+59593,pattern,a model considered worthy of imitation; "the American constitution has provided a pattern for many republics"
+59594,patternmaker,someone who makes patterns (as for sewing or carpentry or metalworking)
+59595,patty,small pie or pasty
+59596,patty,round flat candy
+59597,patty cake,small flat mass of chopped food
+59598,patty-pan,a pan for cooking patties or pasties
+59599,patty_shell bouchee,shell of puff paste
+59600,pattypan_squash,round greenish-white squash having one face flattened with a scalloped edge
+59601,patzer,a poor chess player
+59602,pauper,a person who is very poor
+59603,pauperization pauperisation impoverishment,the act of making someone poor
+59604,pause,temporary inactivity
+59605,pause intermission break interruption suspension,a time interval during which there is a temporary cessation of something
+59606,pavage,a tax toward paving streets
+59607,pavane pavan,music composed for dancing the pavane
+59608,pavane pavan,a stately court dance of the 16th and 17th centuries
+59609,pave,a setting with precious stones so closely set that no metal shows
+59610,paved_surface,a level horizontal surface covered with paving material
+59611,pavement paving,the paved surface of a thoroughfare
+59612,pavement_artist,someone who draws on the pavement with colored chalks (hoping that passers-by will give them money)
+59613,pavilion marquee,large and often sumptuous tent
+59614,paving pavage,the act of applying paving materials to an area
+59615,paving pavement paving_material,material used to pave an area
+59616,paving_stone,a stone used for paving
+59617,pavior paviour paving_machine,a machine for laying pavement
+59618,pavis pavise,(Middle Ages) a large heavy oblong shield protecting the whole body; originally carried but sometimes set up in permanent position
+59619,pavlova,a dessert consisting of a meringue base or cup filled with fruit and whipped cream
+59620,pavonia,any of various evergreen plants of the genus Pavonia having white or yellow or purple flowers
+59621,paw,a clawed foot of an animal especially a quadruped
+59622,pawer,a person who handles or caresses in a clumsy or overfamiliar manner
+59623,pawl detent click dog,a hinged catch that fits into a notch of a ratchet to move a wheel forward or prevent it from moving backward
+59624,pawn,an article deposited as security
+59625,pawn,(chess) the least powerful piece; moves only forward and captures only to the side; it can be promoted to a more powerful piece if it reaches the 8th rank
+59626,pawn,borrowing and leaving an article as security for repayment of the loan
+59627,pawn_ticket,a pawnbroker's receipt for articles taken as security
+59628,pawnbroker,a person who lends money at interest in exchange for personal property that is deposited as security
+59629,pawnbroker's_shop pawnshop loan_office,a shop where loans are made with personal property as security
+59630,pawpaw papaw papaw_tree Asimina_triloba,small tree native to the eastern United States having oblong leaves and fleshy fruit
+59631,pax kiss_of_peace,(Roman Catholic Church) a greeting signifying Christian love for those assisting at the Eucharist
+59632,pay-phone pay-station,a coin-operated telephone
+59633,pay_cut salary_cut,the act of reducing a salary
+59634,pay_dirt,ore that yields a substantial profit to the miner
+59635,pay_dirt,a profitable success; "the inventor worked for years before hitting pay dirt"
+59636,pay_envelope pay_packet,wages enclosed in an envelope for distribution to the wage earner
+59637,pay_rate rate_of_pay,amount of money received per unit time; "women's pay rate is lower than men's"
+59638,payables,money that you currently expect to pay on notes and accounts
+59639,payback,financial return or reward (especially returns equal to the initial investment)
+59640,paycheck payroll_check,a check issued in payment of wages or salary
+59641,payday,the day on which you receive pay for your work
+59642,payee,a person to whom money is paid
+59643,payer remunerator,a person who pays money for something
+59644,paymaster,a person in charge of paying wages
+59645,payment,a sum of money paid or a claim discharged
+59646,payment defrayal defrayment,the act of paying money
+59647,payment_rate rate_of_payment repayment_rate installment_rate,the amount of money paid out per unit time
+59648,paynim,a heathen; a person who is not a Christian (especially a Muslim)
+59649,payoff final_payment,the final payment of a debt
+59650,payola,a bribe given to a disc jockey to induce him to promote a particular record
+59651,payroll payroll_department,the department that determines the amounts of wage or salary due to each employee
+59652,payroll paysheet,the total amount of money paid in wages; "the company had a large payroll"
+59653,payroll paysheet,a list of employees and their salaries; "the company had a long payroll"
+59654,payslip,a slip of paper included with your pay that records how much money you have earned and how much tax or insurance etc. has been taken out
+59655,pe,the 17th letter of the Hebrew alphabet
+59656,pea,the fruit or seed of a pea plant
+59657,pea,seed of a pea plant used for food
+59658,pea pea_plant,a leguminous plant of the genus Pisum with small white flowers and long green pods containing edible green seeds
+59659,pea_crab,tiny soft-bodied crab living commensally in the mantles of certain bivalve mollusks
+59660,pea_flour,meal made from dried peas
+59661,pea_jacket peacoat,a sailor's heavy woolen double-breasted jacket
+59662,pea_pod peasecod,husk of a pea; edible in some garden peas
+59663,pea_shooter,a straight narrow tube through which pellets (as dried peas) can be blown at a target
+59664,pea_soup,a thick soup made of dried peas (usually made into a puree)
+59665,pea_soup pea-souper,a heavy thick yellow fog
+59666,pea_tree caragana,any plant of the genus Caragana having even-pinnate leaves and mostly yellow flowers followed by seeds in a linear pod
+59667,pea_weevil Bruchus_pisorum,larvae live in and feed on seeds of the pea plant
+59668,peace,the state prevailing during the absence of war
+59669,peace,harmonious relations; freedom from disputes; "the roommates lived in peace together"
+59670,peace peace_treaty pacification,a treaty to cease hostilities; "peace came on November 11th"
+59671,peace peacefulness peace_of_mind repose serenity heartsease ataraxis,the absence of mental stress or anxiety
+59672,peace public_security,the general security of public places; "he was arrested for disturbing the peace"
+59673,peace_advocacy,any policy that advocates maintaining peaceful international relations
+59674,peace_initiative,opening move in negotiating a peace treaty
+59675,peace_march,a protest march against (a particular) war and in favor of peace
+59676,peace_offering olive_branch,something offered to an adversary in the hope of obtaining peace
+59677,peace_process,any social process undertaken by governments who want their citizens to believe they are trying to avoid armed hostilities
+59678,peaceableness peacefulness,a state that is calm and tranquil
+59679,peacekeeper,a member of a military force that is assigned (often with international sanction) to preserve peace in a trouble area
+59680,peacekeeper,someone who keeps peace; "she's the peacekeeper in that family"
+59681,peacekeeper,the pistol of a law officer in the old West
+59682,peacekeeping peacekeeping_mission peacekeeping_operation,the activity of keeping the peace by military forces (especially when international military forces enforce a truce between hostile groups or nations)
+59683,peacetime,a period of time during which there is no war
+59684,peach,downy juicy fruit with sweet yellowish or whitish flesh
+59685,peach peach_tree Prunus_persica,cultivated in temperate regions
+59686,peach_bells peach_bell willow_bell Campanula_persicifolia,perennial European bellflower with racemose white or blue flowers
+59687,peach_blight,a disease of trees bearing drupes
+59688,peach_ice_cream,ice cream flavored with fresh peaches
+59689,peach_melba,ice cream and peaches with a liqueur
+59690,peach_orchard,a grove of peach trees
+59691,peach_pit,the stone seed of a peach
+59692,peach_sauce,for Chinese dishes: peach preserves and chutney
+59693,peachick pea-chick,a young peafowl
+59694,peachleaf_willow peach-leaved_willow almond-leaves_willow Salix_amygdaloides,willow of the western United States with leaves like those of peach or almond trees
+59695,peacock,male peafowl; having a crested head and very large fanlike tail marked with iridescent eyes or spots
+59696,peacock peacock_butterfly Inachis_io,European butterfly having reddish-brown wings each marked with a purple eyespot
+59697,peacock-throne,the golden throne of former kings of Delhi; stolen by the Persians in 1739 and subsequently lost; symbol of the former Shah of Iran
+59698,peafowl bird_of_Juno,very large terrestrial southeast Asian pheasant often raised as an ornamental bird
+59699,peahen,female peafowl
+59700,peak crown crest top tip summit,the top or extreme point of something (usually a mountain or hill); "the view from the peak was magnificent"; "they clambered to the tip of Monadnock"; "the region is a few molecules wide at the summit"
+59701,peal pealing roll rolling,a deep prolonged sound (as of thunder or large bells)
+59702,peanut,underground pod of the peanut vine
+59703,peanut,a young child who is small for his age
+59704,peanut earthnut goober goober_pea groundnut monkey_nut,pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms
+59705,peanut peanut_vine Arachis_hypogaea,widely cultivated American plant cultivated in tropical and warm regions; showy yellow flowers on stalks that bend over to the soil so that seed pods ripen underground
+59706,peanut_bar,bar of peanuts in taffy
+59707,peanut_brittle,brittle containing peanuts
+59708,peanut_butter,a spread made from ground peanuts
+59709,peanut_gallery,(figurative) people whose criticisms are regarded as irrelevant or insignificant (resembling uneducated people who throw peanuts on the stage to express displeasure with a performance); "he ignored complaints from the peanut gallery"
+59710,peanut_oil groundnut_oil,an oil from peanuts; used in cooking and making soap
+59711,peanut_worm sipunculid,small unsegmented marine worm that when disturbed retracts its anterior portion into the body giving the appearance of a peanut
+59712,peanuts,an insignificant sum of money; a trifling amount; "her salary is peanuts compared to his"
+59713,pear,sweet juicy gritty-textured fruit available in many varieties
+59714,pear pear_tree Pyrus_communis,Old World tree having sweet gritty-textured juicy fruit; widely cultivated in many varieties
+59715,pearl,a smooth lustrous round structure inside the shell of a clam or oyster; much valued as a jewel
+59716,pearl_ash,an impure form of potassium carbonate
+59717,pearl_barley,barley ground into small round pellets
+59718,pearl_diver pearler,a diver who searches for molluscs containing pearls
+59719,pearl_fishery,a fishery where they fish for pearl oysters
+59720,pearl_hominy,hominy prepared by milling to pellets of medium size
+59721,pearl_millet bulrush_millet cattail_millet Pennisetum_glaucum Pennisetum_Americanum,tall grass having cattail like spikes; grown in Africa and Asia for its grain and in the United States chiefly for forage; sometimes used in making beer
+59722,pearl_oyster Pinctada_margaritifera,tropical marine bivalve found chiefly off eastern Asia and Pacific coast of North America and Central America; a major source of pearls
+59723,pearl_sago,sago ground into small round grains
+59724,pearlfish pearl-fish,found living within the alimentary canals of e.g. sea cucumbers or between the shells of pearl oysters in or near shallow seagrass beds
+59725,pearlite,a lamellar mixture of cementite and ferrite formed during the cooling of austenite; a constituent of steel and cast iron
+59726,pearlwort pearlweed pearl-weed,any of various low-growing plants of the genus Sagina having small spherical flowers resembling pearls
+59727,pearly-shelled_mussel,the pearly lining of the dark shells is a source of mother-of-pearl
+59728,pearly_everlasting cottonweed Anaphalis_margaritacea,an American everlasting having foliage with soft wooly hairs and corymbose heads with pearly white bracts
+59729,pearly_razorfish Hemipteronatus_novacula,a kind of razor fish
+59730,peasant,one of a (chiefly European) class of agricultural laborers
+59731,peasant barbarian boor churl Goth tyke tike,a crude uncouth ill-bred person lacking culture or refinement
+59732,peasant provincial bucolic,a country person
+59733,peasanthood,the state of being a peasant; "the same homely dress she wore in the days of her peasanthood"
+59734,peasantry,the class of peasants
+59735,pease_pudding,a pudding made with strained split peas mixed with egg
+59736,peat,partially carbonized vegetable matter saturated with water; can be used as a fuel when dried
+59737,peavey peavy cant_dog dog_hook,a stout lever with a sharp spike; used for handling logs
+59738,peba nine-banded_armadillo Texas_armadillo Dasypus_novemcinctus,having nine hinged bands of bony plates; ranges from Texas to Paraguay
+59739,pebble,a small smooth rounded rock
+59740,pebibit Pibit,a unit of information equal to 1024 tebibits or 2^50 bits
+59741,pecan,wood of a pecan tree
+59742,pecan,smooth brown oval nut of south central United States
+59743,pecan pecan_tree Carya_illinoensis Carya_illinoinsis,tree of southern United States and Mexico cultivated for its nuts
+59744,pecan_pie,pie made of pecans and sugar and corn syrup and butter and eggs
+59745,peccary musk_hog,nocturnal gregarious pig-like wild animals of North America and South America
+59746,peck,a British imperial capacity measure (liquid or dry) equal to 2 gallons
+59747,peck,a United States dry measure equal to 8 quarts or 537.605 cubic inches
+59748,pecopteris,Carboniferous fossil fern characterized by a regular arrangement of the leaflets resembling a comb
+59749,pectic_acid,a complex acid that occurs in ripe fruit and some vegetables
+59750,pectin,any of various water-soluble colloidal carbohydrates that occur in ripe fruit and vegetables; used in making fruit jellies and jams
+59751,pectoral pectoral_medallion,an adornment worn on the chest or breast
+59752,pectoral pectoral_muscle pectoralis musculus_pectoralis pecs,either of two large muscles of the chest
+59753,pectoral_fin,either of a pair of fins situated just behind the head in fishes that help control the direction of movement
+59754,pectoral_girdle,a skeletal support to which the forelimbs of vertebrates are attached
+59755,pectoral_sandpiper jacksnipe Calidris_melanotos,American sandpiper that inflates its chest when courting
+59756,pectoral_vein vena_pectoralis,veins that drain the pectoral muscles and empty into the subclavian vein
+59757,pectoralis_major musculus_pectoralis_major greater_pectoral_muscle,a skeletal muscle that adducts and rotates the arm
+59758,pectoralis_minor musculus_pectoralis_minor smaller_pectoral_muscle,a skeletal muscle that draws down the scapula or raises the ribs
+59759,peculiar_velocity,velocity with respect to the local standard of rest
+59760,peculiarity distinctive_feature distinguishing_characteristic,an odd or unusual characteristic
+59761,peculiarity specialness specialty speciality distinctiveness,a distinguishing trait
+59762,pedal treadle foot_pedal foot_lever,a lever that is operated with the foot
+59763,pedal_point pedal,a sustained bass note
+59764,pedal_pushers toreador_pants,(used in the plural) snug trousers ending at the calves; worn by women and girls
+59765,pedaler pedaller,a person who rides a pedal-driven vehicle (as a bicycle)
+59766,pedant bookworm scholastic,a person who pays more attention to formal rules and book learning than they merit
+59767,pedantry,an ostentatious and inappropriate display of learning
+59768,pedate_leaf,a leaf having the radiating lobes each deeply cleft or divided
+59769,peddler pedlar packman hawker pitchman,someone who travels about selling his wares (as on the streets or at carnivals)
+59770,pederast paederast child_molester,a man who has sex (usually sodomy) with a boy as the passive partner
+59771,pederasty paederasty,sexual relations between a man and a boy (usually anal intercourse with the boy as a passive partner)
+59772,pedestal,a position of great esteem (and supposed superiority); "they put him on a pedestal"
+59773,pedestal plinth footstall,an architectural support or base (as for a column or statue)
+59774,pedestal_table,a table supported by a single central column
+59775,pedestrian walker footer,a person who travels by foot
+59776,pedestrian_crossing zebra_crossing,street crossing where pedestrians have right of way; often marked in some way (especially with diagonal stripes)
+59777,pedestrian_traffic foot_traffic,people coming and going on foot
+59778,pediatrics paediatrics pediatric_medicine pedology,the branch of medicine concerned with the treatment of infants and children
+59779,pedicab cycle_rickshaw,a tricycle (usually propelled by pedalling); used in the Orient for transporting passengers for hire; "boys who once pulled rickshaws now pedal pedicabs"
+59780,pedicel pedicle,a small stalk bearing a single flower of an inflorescence; an ultimate division of a common peduncle
+59781,pediculicide,a chemical agent that kills lice
+59782,pediculosis lousiness,infestation with lice (Pediculus humanus) resulting in severe itching
+59783,pediculosis_capitis head_lice,infestation of the scalp with lice
+59784,pediculosis_corporis,infestation of body skin with lice
+59785,pediculosis_pubis crabs,infestation of the pubic hair by crab lice
+59786,pedicure,professional care for the feet and toenails
+59787,pedigree,line of descent of a purebred animal
+59788,pedigree bloodline,ancestry of a purebred animal
+59789,pediment,a triangular gable between a horizontal entablature and a sloping roof
+59790,pedodontist,a dentist who specializes in the care of children's teeth
+59791,pedometer,measuring instrument for recording the number of steps taken in walking
+59792,pedophile paedophile,an adult who is sexually attracted to children
+59793,pedophilia paedophilia,a sexual attraction to children
+59794,peduncle,the thin process of tissue that attaches a polyp to the body
+59795,peduncle,stalk bearing an inflorescence or solitary flower
+59796,peduncle cerebral_peduncle,a bundle of myelinated neurons joining different parts of the brain
+59797,pedunculated_polyp,a polyp with a stalk or peduncle
+59798,peeing pee pissing piss,informal terms for urination; "he took a pee"
+59799,peek peep,a secret look
+59800,peekaboo bopeep,a game played with young children; you hide your face and suddenly reveal it as you say boo!
+59801,peel skin,the rind of a fruit or vegetable
+59802,peeler,a worker who peels the skins from fruits and vegetables
+59803,peeler,a device for peeling vegetables or fruits; "she invented a potato peeler"
+59804,peen,the part of a hammerhead opposite the flat striking surface (may have various shapes)
+59805,peep_sight,rear gunsight having an adjustable eyepiece with a small aperture through which the front sight and the target are aligned
+59806,peeper,an informal term referring to the eye
+59807,peeper,an animal that makes short high-pitched sounds
+59808,peephole spyhole eyehole,a hole (in a door or an oven etc) through which you can peep
+59809,peepshow,a short pornographic film shown in a small coin-operated booth
+59810,peepshow raree-show,an exhibition of pictures or objects viewed through a small hole or magnifying glass
+59811,peer,a nobleman (duke or marquis or earl or viscount or baron) who is a member of the British peerage
+59812,peer equal match compeer,a person who is of equal standing with another in a group
+59813,peer_group,contemporaries of the same status
+59814,peer_of_the_realm,a peer who is entitled to sit in the House of Lords
+59815,peerage baronage,the peers of a kingdom considered as a group
+59816,peeve,an annoyed or irritated mood
+59817,peg,regulator that can be turned to regulate the pitch of the strings of a stringed instrument
+59818,peg nog,a wooden pin pushed or driven into a surface
+59819,peg pin,small markers inserted into a surface to mark scores or define locations etc.
+59820,peg pin thole tholepin rowlock oarlock,a holder attached to the gunwale of a boat that holds the oar in place and acts as a fulcrum for rowing
+59821,peg wooden_leg leg pegleg,a prosthesis that replaces a missing leg
+59822,peg_top,a pear-shaped top made of wood with a metal center pin
+59823,pegboard,a board perforated with regularly spaced holes into which pegs can be fitted
+59824,pegmatite,a form of igneous rock consisting of extremely coarse granite resulting from the crystallization of magma rich in rare elements
+59825,pelagic_bird oceanic_bird,bird of the open seas
+59826,pelecaniform_seabird,large fish-eating seabird with four-toed webbed feet
+59827,pelican,large long-winged warm-water seabird having a large bill with a distensible pouch for fish
+59828,pelican_crossing,an acronym for pedestrian light control; a pedestrian crossing with traffic lights that are controlled by pedestrians
+59829,pelisse,a sleeveless cape that is lined or trimmed with fur
+59830,pellagra Alpine_scurvy mal_de_la_rosa mal_rosso maidism mayidism Saint_Ignatius'_itch,a disease caused by deficiency of niacin or tryptophan (or by a defect in the metabolic conversion of tryptophan to niacin); characterized by gastrointestinal disturbances and erythema and nervous or mental disorders; may be caused by malnutrition or alcoholism or other nutritional impairments
+59831,pellet,a small sphere
+59832,pellicle,thin protective membrane in some protozoa
+59833,pellitory pellitory-of-Spain Anacyclus_pyrethrum,a small Mediterranean plant containing a volatile oil once used to relieve toothache
+59834,pellitory-of-the-wall wall_pellitory pellitory Parietaria_difussa,herb that grows in crevices having long narrow leaves and small pink apetalous flowers
+59835,pellucidness pellucidity limpidity,passing light without diffusion or distortion
+59836,peltate_leaf,a shield-shaped leaf; as a nasturtium leaf
+59837,pelter,a thrower of missiles; "the police were too busy to chase the pelters"
+59838,peludo poyou Euphractus_sexcinctus,Argentine armadillo with six movable bands and hairy underparts
+59839,pelvic_cavity,the space bounded by the bones of the pelvis and containing the pelvic viscera
+59840,pelvic_fin ventral_fin,either of a pair of fins attached to the pelvic girdle in fishes that help control the direction of movement; correspond to hind limbs of a land vertebrate
+59841,pelvic_inflammatory_disease PID,inflammation of the female pelvic organs (especially the Fallopian tubes) caused by infection by any of several microorganisms (chiefly gonococci and chlamydia); symptoms are abdominal pain and fever and foul-smelling vaginal discharge
+59842,pelvimeter,measuring instrument for performing pelvimetry
+59843,pelvimetry,measurement of the dimensions of the bony birth canal (to determine whether vaginal birth is possible)
+59844,pelvis pelvic_girdle pelvic_arch hip,the structure of the vertebrate skeleton supporting the lower limbs in humans and the hind limbs or corresponding parts in other vertebrates
+59845,pelvis renal_pelvis,a structure shaped like a funnel in the outlet of the kidney into which urine is discharged before passing into the ureter
+59846,pelycosaur,large primitive reptile having a tall spinal sail; of the Permian or late Paleozoic in Europe and North America
+59847,pemmican pemican,lean dried meat pounded fine and mixed with melted fat; used especially by North American Indians
+59848,pemphigus,a skin disease characterized by large thin-walled blisters (bullae) arising from normal skin or mucous membrane
+59849,pen,an enclosure for confining livestock
+59850,pen,a writing implement with a point from which ink flows
+59851,pen,female swan
+59852,pen-and-ink,a drawing executed with pen and ink
+59853,pen_name nom_de_plume,an author's pseudonym
+59854,pen_pal pen-friend,a person you come to know by frequent friendly correspondence
+59855,penal_code,the legal code governing crimes and their punishment
+59856,penal_colony,a penal institution where prisoners are exiled (often located on an island from which escape is difficult or impossible)
+59857,penal_institution penal_facility,an institution where persons are confined for punishment and to protect the public
+59858,penalty,a payment required for not fulfilling a contract
+59859,penalty,the disadvantage or painful consequences of an action or condition; "neglected his health and paid the penalty"
+59860,penalty,(games) a handicap or disadvantage that is imposed on a competitor (or a team) for an infraction of the rules of the game
+59861,penalty_box,(ice hockey) an enclosed bench to the side of an ice-hockey rink for players who are serving time penalties
+59862,penance,a Catholic sacrament; repentance and confession and atonement and absolution
+59863,penance self-mortification self-abasement,voluntary self-punishment in order to atone for some wrongdoing
+59864,pencil,graphite (or a similar substance) used in such a way as to be a medium of communication; "the words were scribbled in pencil"; "this artist's favorite medium is pencil"
+59865,pencil,a figure formed by a set of straight lines or light rays meeting at a point
+59866,pencil,a cosmetic in a long thin stick; designed to be applied to a particular part of the face; "an eyebrow pencil"
+59867,pencil,a thin cylindrical pointed writing implement; a rod of marking substance encased in wood
+59868,pencil_box pencil_case,a box for holding pencils
+59869,pencil_cedar,wood of a pencil cedar tree; used for making pencils
+59870,pencil_cedar pencil_cedar_tree,any of several junipers with wood suitable for making pencils
+59871,pencil_sharpener,a rotary implement for sharpening the point on pencils
+59872,pendant pendent,an adornment that hangs from a piece of jewelry (necklace or earring)
+59873,pendant_earring drop_earring eardrop,an earring with a pendant ornament
+59874,pendragon,the supreme war chief of the ancient Britons
+59875,pendulum,an apparatus consisting of an object mounted so that it swings freely under the influence of gravity
+59876,pendulum_clock,a clock regulated by a pendulum
+59877,pendulum_watch,(18th century) a watch with a balance wheel having a fake pendulum attached to it
+59878,peneplain peneplane,a more or less level land surface representing an advanced stage of erosion undisturbed by crustal movements
+59879,penetrability perviousness,the quality of being penetrable (by people or light or missiles etc.)
+59880,penetralium,the innermost parts
+59881,penetrating_trauma penetrating_injury,injury incurred when an object (as a knife or bullet or shrapnel) penetrates into the body
+59882,penetration,the ability to make way into or through something; "the greater penetration of the new projectiles will result in greater injuries"
+59883,penetration,the depth to which something penetrates (especially the depth reached by a projectile that hits a target)
+59884,penetration,the act (by a man) of inserting his penis into the vagina of a woman
+59885,penetration,the act of entering into or through something; "the penetration of upper management by women"
+59886,penetration incursion,an attack that penetrates into enemy territory
+59887,penetration insight,clear or deep perception of a situation
+59888,penetration_bomb,a bomb with about 30% explosive and a casing designed to penetrate hardened targets before the explosive detonates
+59889,penetrator,an intruder who passes into or through (often by overcoming resistance)
+59890,pengo,formerly the basic unit of money in Hungary until it was replaced by the forint in 1946
+59891,penguin,short-legged flightless birds of cold southern especially Antarctic regions having webbed feet and wings modified as flippers
+59892,penicillamine Cuprimine,a drug (trade name Cuprimine) used to treat heavy metal poisoning and Wilson's disease and severe arthritis
+59893,penicillin,any of various antibiotics obtained from Penicillium molds (or produced synthetically) and used in the treatment of various infections and diseases
+59894,penicillin-resistant_bacteria,bacteria that are unaffected by penicillin
+59895,penicillin_F,the first form of penicillin that was isolated in Great Britain
+59896,penicillin_G benzylpenicillin,the penicillin that constitutes the principal component of many commercial antibiotics
+59897,penicillin_O,a penicillin that is similar in antibiotic action to penicillin G but is obtained differently
+59898,penicillin_V phenoxymethyl_penicillin,a crystalline penicillin similar in action to penicillin G but more resistant to the action of gastric acids
+59899,penicillin_V_potassium Ledercillin_VK,a form of penicillin V (trade name Ledercillin VK)
+59900,penicillinase beta-lactamase,enzyme produced by certain bacteria that inactivates penicillin and results in resistance to that antibiotic
+59901,penicillinase-resistant_antibiotic,a form of penicillin that is not rendered inactive by penicillinase
+59902,penile_implant,an implant that creates an artificial erection
+59903,peninsula,a large mass of land projecting into a body of water
+59904,penis phallus member,the male sex organ (`member' is a euphemism)
+59905,penis_envy,(psychoanalysis) a female's presumed envy of the male's penis; said to explain femininity
+59906,penitent,(Roman Catholic Church) a person who repents for wrongdoing (a Roman Catholic may be admitted to penance under the direction of a confessor)
+59907,penitentiary pen,a correctional institution for those convicted of major crimes
+59908,penknife,a small pocketknife; originally used to cut quill pens
+59909,penlight,a small flashlight resembling a fountain pen
+59910,pennant,a flag longer than it is wide (and often tapering)
+59911,pennant crown,the award given to the champion
+59912,pennant pennon streamer waft,a long flag; often tapering
+59913,penne,pasta in short tubes with diagonally cut ends
+59914,penni,100 pennia formerly equaled 1 markka in Finland
+59915,pennon pinion,wing of a bird
+59916,pennoncel penoncel pennoncelle,a small pennant borne on a lance
+59917,penny,a fractional monetary unit of Ireland and the United Kingdom; equal to one hundredth of a pound
+59918,penny cent centime,a coin worth one-hundredth of the value of the basic unit
+59919,penny_ante,a business deal on a trivial scale
+59920,penny_ante penny_ante_poker,poker played for small stakes
+59921,penny_arcade,an arcade with coin-operated devices for entertainment
+59922,penny_pincher,someone who is excessively careful with money (who pinches every penny before letting go of it)
+59923,penny_stock,a stock selling for less that $1/share
+59924,pennycress,any of several plants of the genus Thlaspi
+59925,pennyroyal American_pennyroyal Hedeoma_pulegioides,erect hairy branching American herb having purple-blue flowers; yields an essential oil used as an insect repellent and sometimes in folk medicine
+59926,pennyroyal Mentha_pulegium,Eurasian perennial mint have small lilac-blue flowers and ovate leaves; yields an aromatic oil
+59927,pennyroyal_oil,oil from European pennyroyal having an odor like mint; used chiefly in soaps
+59928,pennyroyal_oil hedeoma_oil,aromatic oil from American pennyroyal
+59929,pennyweight,a unit of apothecary weight equal to 24 grains
+59930,pennywhistle tin_whistle whistle,an inexpensive fipple flute
+59931,pennyworth penn'orth,the amount that can be bought for a penny
+59932,penologist,a person who studies the theory and practice of prison management
+59933,penology poenology,the branch of criminology concerned with prison management and prisoner rehabilitation
+59934,penpusher pencil_pusher,a clerk who does boring paperwork
+59935,pension,a regular payment to a person that is intended to allow them to subsist without working
+59936,pension_fund,a financial institution that collects regular contributions from employers to provide retirement income for employees
+59937,pension_fund superannuation_fund,a fund reserved to pay workers' pensions when they retire from service
+59938,pension_plan pension_account retirement_plan retirement_savings_plan retirement_savings_account retirement_account retirement_program,a plan for setting aside money to be spent after retirement
+59939,pensioner pensionary,the beneficiary of a pension fund
+59940,pensiveness brooding,persistent morbid meditation on a problem
+59941,pensiveness meditativeness contemplativeness,deep serious thoughtfulness
+59942,pentacle pentagram pentangle,a star with 5 points; formed by 5 straight lines between the vertices of a pentagon and enclosing another pentagon
+59943,pentaerythritol Peritrate,a coronary vasodilator (trade name Peritrate) used to treat angina pectoris
+59944,pentagon,a five-sided polygon
+59945,pentahedron,any polyhedron having five plane faces
+59946,pentail pen-tail pen-tailed_tree_shrew,brown tree shrew having a naked tail bilaterally fringed with long stiff hairs on the distal third; of Malaysia
+59947,pentameter,a verse line having five metrical feet
+59948,pentathlete,an athlete who competes in a pentathlon
+59949,pentathlon,an athletic contest consisting of five different events
+59950,pentatonic_scale pentatone,a gapped scale with five notes; usually the fourth and seventh notes of the diatonic scale are omitted
+59951,pentazocine Talwin,analgesic drug (trade name Talwin) that is less addictive than morphine
+59952,pentecostalism,the principles and practices of Pentecostal religious groups; characterized by religious excitement and talking in tongues
+59953,penthouse,an apartment located on the top floors of a building
+59954,pentimento,the reappearance in a painting of an underlying image that had been painted over (usually when the later painting becomes transparent with age)
+59955,pentlandite,a mineral (iron and nickel sulphide) that is the chief ore of nickel
+59956,pentobarbital_sodium pentobarbital Nembutal yellow_jacket,a barbiturate (trade name Nembutal) used as a sedative and hypnotic and antispasmodic
+59957,pentode,a thermionic tube having five electrodes
+59958,pentose,any monosaccharide sugar containing five atoms of carbon per molecule
+59959,pentoxide,an oxide containing five atoms of oxygen in the molecule
+59960,pentoxifylline Trental,a drug (trade name Trental) used to treat claudication; believed to increase the flexibility of red blood cells so they can flow through the blood vessels to the legs and feet
+59961,pentylenetetrazol pentamethylenetetrazol Metrazol,a drug used as a circulatory and respiratory stimulant; larger doses cause convulsions in shock therapy; Metrazol is a trademark
+59962,penuche penoche panoche panocha,fudge made with brown sugar and butter and milk and nuts
+59963,penult penultima penultimate,the next to last syllable in a word
+59964,penumbra,a fringe region of partial shadow around an umbra
+59965,penuriousness,a disposition to be niggardly with money
+59966,peonage,the condition of a peon
+59967,peonage,the practice of making a debtor work for his creditor until the debt is discharged
+59968,peony paeony,any of numerous plants widely cultivated for their showy single or double red or pink or white flowers
+59969,people,members of a family line; "his people have been farmers for generations"; "are your people still alive?"
+59970,people,(plural) any group of human beings (men or women or children) collectively; "old people"; "there were at least 200 people in the audience"
+59971,peoples,the human beings of a particular nation or community or ethnic group; "the indigenous peoples of Australia"
+59972,pep peppiness ginger,liveliness and energy; "this tonic is guaranteed to give you more pep"
+59973,pep_rally,a rally (especially of students) before a game
+59974,pep_talk,a speech of exhortation attempting to instill enthusiasm and determination in a team or staff
+59975,peperomia,any of various plants of the genus Peperomia; grown primarily for their often succulent foliage
+59976,peplos peplus peplum,a garment worn by women in ancient Greece; cloth caught at the shoulders and draped in folds to the waist
+59977,peplum,a flared ruffle attached to the waistline of a dress or jacket or blouse
+59978,pepper,sweet and hot varieties of fruits of plants of the genus Capsicum
+59979,pepper common_pepper black_pepper white_pepper Madagascar_pepper Piper_nigrum,climber having dark red berries (peppercorns) when fully ripe; southern India and Sri Lanka; naturalized in northern Burma and Assam
+59980,pepper peppercorn,pungent seasoning from the berry of the common pepper plant of East India; use whole or ground
+59981,pepper-and-salt,a fabric woven with flecks of light and dark
+59982,pepper_mill pepper_grinder,a mill for grinding pepper
+59983,pepper_pot Philadelphia_pepper_pot,a soup made with vegetables and tripe and seasoned with peppercorns; often contains dumplings
+59984,pepper_sauce Poivrade,for venison: brown sauce with sauteed vegetables and trimmings and marinade and plenty of pepper
+59985,pepper_shaker pepper_box pepper_pot,a shaker with a perforated top for sprinkling ground pepper
+59986,pepper_shrub Pseudowintera_colorata Wintera_colorata,evergreen shrub or small tree whose foliage is conspicuously blotched with red and yellow and having small black fruits
+59987,pepper_spray,a nonlethal aerosol spray made with the pepper derivative oleoresin capiscum; used to cause temporary blindness and incapacitate an attacker; also used as a bear deterrent
+59988,pepper_steak,strips of steak sauteed with green peppers and onions
+59989,pepper_tree Kirkia_wilmsii,small African deciduous tree with spreading crown having leaves clustered toward ends of branches and clusters of creamy flowers resembling lilacs
+59990,pepper_tree molle Peruvian_mastic_tree Schinus_molle,small Peruvian evergreen with broad rounded head and slender pendant branches with attractive clusters of greenish flowers followed by clusters of rose-pink fruits
+59991,peppercorn_rent,very low or nominal rent
+59992,peppermint Mentha_piperita,herb with downy leaves and small purple or white flowers that yields a pungent oil used as a flavoring
+59993,peppermint peppermint_candy,a candy flavored with peppermint oil
+59994,peppermint_oil,oil from the peppermint plant used as flavoring
+59995,peppermint_patty,a patty flavored with peppermint
+59996,pepperoni,a pork and beef sausage (or a thin slice of this sausage)
+59997,pepperoni_pizza,tomato and cheese pizza with pepperoni
+59998,pepsin,an enzyme produced in the stomach that splits proteins into peptones
+59999,pepsinogen,precursor of pepsin; stored in the stomach walls and converted to pepsin by hydrochloric acid in the stomach
+60000,peptic_ulcer peptic_ulceration,an ulcer of the mucous membrane lining of the alimentary tract
+60001,peptide,amide combining the amino group of one amino acid with the carboxyl group of another; usually obtained by partial hydrolysis of protein
+60002,peptide_bond peptide_linkage,the primary linkage of all protein structures; the chemical bond between the carboxyl groups and amino groups that unites a peptide
+60003,peptization peptisation,the process of converting to a sol; bringing to a colloidal solution
+60004,peptone,any of various water-soluble compounds that form by hydrolysis in the digestion of proteins to amino acids
+60005,per_capita_income,the total national income divided by the number of people in the nation
+60006,per_diem,a daily allowance for living expenses (especially while traveling in connection with your job)
+60007,peradventure,doubt or uncertainty as to whether something is the case; "this proves beyond peradventure that he is innocent"
+60008,perambulation,a walk around a territory (a parish or manor or forest etc.) in order to officially assert and record its boundaries
+60009,perboric_acid,a form of boric acid
+60010,percale,a fine closely woven cotton fabric
+60011,perceiver percipient observer beholder,a person who becomes aware (of things or events) through the senses
+60012,percent_sign percentage_sign,a sign (`%') used to indicate that the number preceding it should be understood as a proportion multiplied by 100
+60013,percentage percent per_centum pct,a proportion in relation to a whole (which is usually the amount per hundred)
+60014,percentile centile,(statistics) any of the 99 numbered points that divide an ordered set of scores into 100 parts each of which contains one-hundredth of the total
+60015,percept perception perceptual_experience,the representation of what is perceived; basic component in the formation of a concept
+60016,perceptibility,the property of being perceptible by the mind or the senses
+60017,perception,a way of conceiving something; "Luther had a new perception of the Bible"
+60018,perception,knowledge gained by perceiving; "a man admired for the depth of his perception"
+60019,perception,the process of perceiving
+60020,perceptiveness,the quality of insight and sympathetic understanding
+60021,perch,an elevated place serving as a seat
+60022,perch,any of numerous fishes of America and Europe
+60023,perch,support consisting of a branch or rod that serves as a resting place (especially for a bird)
+60024,perch,spiny-finned freshwater food and game fishes
+60025,perch,any of numerous spiny-finned fishes of various families of the order Perciformes
+60026,perch rod pole,a linear measure of 16.5 feet
+60027,perch rod pole,a square rod of land
+60028,percher,a person situated on a perch
+60029,perchlorate,a salt of perchloric acid
+60030,perchloric_acid,a powerful oxidizing agent; forms perchlorates
+60031,perchloride,a chloride containing an unusually high proportion of chlorine
+60032,percoid_fish percoid percoidean,any of numerous spiny-finned fishes of the order Perciformes
+60033,percolate,the product of percolation
+60034,percolation,the act of making coffee in a percolator
+60035,percolation,the filtration of a liquid for extraction or purification
+60036,percolation infiltration,the slow passage of a liquid through a filtering medium; "the percolation of rainwater through the soil"; "the infiltration of seawater through the lava"
+60037,percolator,a coffeepot in which boiling water ascends through a central tube and filters back down through a basket of ground coffee beans
+60038,percussion,the act of playing a percussion instrument
+60039,percussion,the act of exploding a percussion cap
+60040,percussion pleximetry,tapping a part of the body for diagnostic purposes
+60041,percussion_cap,a detonator that explodes when struck
+60042,percussion_instrument percussive_instrument,a musical instrument in which the sound is produced by one object striking another
+60043,percussion_section percussion rhythm_section,the section of a band or orchestra that plays percussion instruments
+60044,percussionist,a musician who plays percussion instruments
+60045,perdurability,the property of being extremely durable
+60046,pere_david's_deer elaphure Elaphurus_davidianus,large Chinese deer surviving only in domesticated herds
+60047,peregrination,traveling or wandering around
+60048,peregrine peregrine_falcon Falco_peregrinus,a widely distributed falcon formerly used in falconry
+60049,perennation,the process of living through a number of years (as a perennial plant)
+60050,perennial,(botany) a plant lasting for three seasons or more
+60051,perennial_ryegrass English_ryegrass Lolium_perenne,European perennial grass widely cultivated for pasture and hay and as a lawn grass
+60052,perennial_salt_marsh_aster,a variety of aster
+60053,perestroika,an economic policy adopted in the former Soviet Union; intended to increase automation and labor efficiency but it led eventually to the end of central planning in the Russian economy
+60054,perfect_game,a game in which a pitcher does not allow any opposing player to reach base
+60055,perfecter,a skilled worker who perfects something; "although not the inventor he must be recognized as the perfecter of this technique"
+60056,perfectibility,the capability of becoming perfect; "he believes in the ultimate perfectibility of man"
+60057,perfection,the act of making something perfect
+60058,perfection flawlessness ne_plus_ultra,the state of being without a flaw or defect
+60059,perfectionism,a disposition to feel that anything less than perfect is unacceptable; "his perfectionism seemed excessive to his students"
+60060,perfectionist,a person who is displeased by anything that does not meet very high standards
+60061,perfective perfective_aspect,the aspect of a verb that expresses a completed action
+60062,perfective perfective_tense perfect perfect_tense,a tense of verbs used in describing action that has been completed (sometimes regarded as perfective aspect)
+60063,perfidy perfidiousness treachery,betrayal of a trust
+60064,perfluorocarbon PFC,a powerful greenhouse gas emitted during the production of aluminum
+60065,perfoliate_leaf,a leaf with the base united around--and apparently pierced by--the stem
+60066,perforated_eardrum,an eardrum with a hole or tear in it; can interfere with normal hearing and cause other ear problems
+60067,perforating_vein vena_perforantis,veins that accompany the perforating arteries; drain leg muscles; empty into the deep femoral vein
+60068,perforation,a hole made in something; "a perforation of the eardrum"
+60069,perforation,a line of small holes for tearing at a particular place
+60070,perforation,the act of punching a hole (especially a row of holes as for ease of separation)
+60071,performance,the act of presenting a play or a piece of music or other entertainment; "we congratulated him on his performance at the rehearsal"; "an inspired performance of Mozart's C minor concerto"
+60072,performance,any recognized accomplishment; "they admired his performance under stress"; "when Roger Maris powered four home runs in one game his performance merits awe"
+60073,performance execution carrying_out carrying_into_action,the act of performing; of doing something successfully; using knowledge as distinguished from merely possessing it; "they criticised his performance as mayor"; "experience generally improves performance"
+60074,performance public_presentation,a dramatic or musical entertainment; "they listened to ten different performances"; "the play ran for 100 performances"; "the frequent performances of the symphony testify to its popularity"
+60075,performance_bond surety_bond,a bond given to protect the recipient against loss in case the terms of a contract are not filled; a surety company assumes liability for nonperformance
+60076,performer performing_artist,an entertainer who performs a dramatic or musical work for an audience
+60077,performing_arts,arts or skills that require public performance
+60078,perfume essence,a toiletry that emits and diffuses a fragrant odor
+60079,perfumer,a person who makes (and sells) perfumes
+60080,perfumery,perfumes in general
+60081,perfumery,store where perfumes are sold
+60082,perfumery,an establishment where perfumes are made
+60083,perfumery,the art of making perfumes
+60084,perfusion,pumping a liquid into an organ or tissue (especially by way of blood vessels)
+60085,peri,a beautiful and graceful girl
+60086,peri,(Persian folklore) a supernatural being descended from fallen angels and excluded from paradise until penance is done
+60087,perianth chlamys floral_envelope perigone perigonium,collective term for the outer parts of a flower consisting of the calyx and corolla and enclosing the stamens and pistils
+60088,periapsis point_of_periapsis,(astronomy) the point in an orbit closest to the body being orbited
+60089,periarterial_plexus plexus_periarterialis,an autonomic plexus that accompanies an artery
+60090,periarteritis,inflammation of the outer coat of an artery
+60091,periarteritis_nodosa polyarteritis_nodosa,a progressive disease of connective tissue that is characterized by nodules along arteries; nodules may block the artery and result in inadequate circulation to the particular area
+60092,pericardial_cavity pericardial_space,the space between the layers of the pericardium that contains fluid that lubricates the membrane surfaces and allows easy heart movement
+60093,pericardial_sac,the membrane surrounding the heart
+60094,pericardial_vein vena_pericardiaca,several small veins from the pericardium
+60095,pericarditis,inflammation of the pericardium
+60096,pericardium,a serous membrane with two layers that surrounds the heart
+60097,pericarp seed_vessel,the ripened and variously modified walls of a plant ovary
+60098,pericementoclasia,pus pocket formation around a tooth
+60099,periclase magnesia magnesium_oxide,a white solid mineral that occurs naturally as periclase; a source of magnesium
+60100,peridinian,flagellate with a thick test composed of plates
+60101,peridium,outer layer of the spore-bearing organ in many fungi
+60102,peridot,a pale green variety of chrysolite; used as a gemstone
+60103,peridotite,a dark coarse-grained igneous rock consisting principally of olivine
+60104,perigee,periapsis in Earth orbit; the point in its orbit where a satellite is nearest to the Earth
+60105,perigon round_angle,an angle of 360 degrees
+60106,perihelion,periapsis in solar orbit; the point in the orbit of a planet or comet where it is nearest to the sun
+60107,perijove,periapsis in orbit around Jupiter
+60108,perilymph,the bodily fluid that fills the space between the bony labyrinth and the membranous labyrinth of the inner ear
+60109,perimeter,a line enclosing a plane areas
+60110,perimysium,the sheath of connective tissue that covers a bundle of muscle fibers
+60111,perinatologist,an obstetrician specializing in perinatology
+60112,perinatology,the branch of obstetrics concerned with the anatomy and physiology and diagnosis and treatment of disorders of the mother and the fetus or newborn baby during late pregnancy and childbirth and the puerperium
+60113,perineal_artery arteria_perinealis,a branch of the internal pudendal artery that supplies superficial structures of the perineum
+60114,perineotomy,surgical incision into the perineum
+60115,perineum,the general region between the anus and the genital organs
+60116,perineurium,the sheath of connective tissue that covers a bundle of nerve fibers
+60117,period,the interval taken to complete one cycle of a regularly repeating phenomenon
+60118,period,(ice hockey) one of three divisions into which play is divided in hockey games
+60119,period,the end or completion of something; "death put a period to his endeavors"; "a change soon put a period to my tranquility"
+60120,period geological_period,a unit of geological time during which a system of rocks formed; "ganoid fishes swarmed during the earlier geological periods"
+60121,period point full_stop stop full_point,a punctuation mark (.) placed at the end of a declarative sentence to indicate a full stop or after abbreviations; "in England they call a period a stop"
+60122,period_piece,any work of art whose special value lies in its evocation of a historical period
+60123,periodic_acid,any acid of iodine that contains oxygen
+60124,periodic_apnea_of_the_newborn,irregular breathing of newborns; periods of rapid breathing followed by apnea; believed to be associated with sudden infant death syndrome
+60125,periodic_breathing Cheyne-Stokes_respiration,abnormal respiration in which periods of shallow and deep breathing alternate
+60126,periodic_event recurrent_event,an event that recurs at intervals
+60127,periodic_law Mendeleev's_law,(chemistry) the principle that chemical properties of the elements are periodic functions of their atomic numbers
+60128,periodic_motion periodic_movement,motion that recurs over and over and the period of time required for each recurrence remains the same
+60129,periodic_sentence,a complex sentence in which the main clause comes last and is preceded by the subordinate clause
+60130,periodic_table,(chemistry) a tabular arrangement of the chemical elements according to atomic number as based on the periodic law
+60131,periodical,a publication that appears at fixed intervals
+60132,periodontal_disease periodontitis,a disease that attacks the gum and bone and around the teeth
+60133,periodontics periodontia,the branch of dentistry dealing with diseases of the gums and other structures around the teeth
+60134,periodontist,a dentist specializing in diseases of the gums and other structure surrounding the teeth
+60135,periosteum,a dense fibrous membrane covering the surface of bones (except at their extremities) and serving as an attachment for tendons and muscles; contains nerves and blood vessels that nourish the enclosed bone
+60136,peripatetic,a person who walks from place to place
+60137,peripeteia peripetia peripety,a sudden and unexpected change of fortune or reverse of circumstances (especially in a literary work); "a peripeteia swiftly turns a routine sequence of events into a story worth telling"
+60138,peripheral computer_peripheral peripheral_device,electronic equipment external to the circuit board that contains the CPU of a computer; "disk drives and printers are important peripherals"
+60139,peripheral_nervous_system systema_nervosum_periphericum,the section of the nervous system lying outside the brain and spinal cord
+60140,peripheral_vision,vision at the edges of the visual field using only the periphery of the retina
+60141,periphery fringe outer_boundary,the outside boundary or surface of something
+60142,periscope,an optical instrument that provides a view of an otherwise obstructed field
+60143,periselene perilune,periapsis in orbit around the moon
+60144,perishability perishableness,unsatisfactoriness by virtue of being subject to decay or spoilage or destruction
+60145,perishable spoilable,food that will decay rapidly if not refrigerated
+60146,perisher,bounder
+60147,perisperm,the nutritive tissue outside the sac containing the embryo in some seeds
+60148,peristalsis vermiculation,the process of wavelike muscle contractions of the alimentary tract that moves food along
+60149,peristome,(botany) fringe of toothlike appendages surrounding the mouth of a moss capsule
+60150,peristome,region around the mouth in various invertebrates
+60151,peristyle,a colonnade surrounding a building or enclosing a court
+60152,perithecium,flask-shaped ascocarp
+60153,perithelium,tissue layer around small blood vessels
+60154,peritoneal_cavity greater_peritoneal_sac,the interior of the peritoneum; a potential space between layers of the peritoneum
+60155,peritoneum,a transparent membrane that lines the abdominal cavity in mammals and covers most of the viscera
+60156,peritonitis peritoneal_inflammation,inflammation of the peritoneum
+60157,periwig peruke,a wig for men that was fashionable in the 17th and 18th centuries
+60158,periwinkle,chiefly trailing poisonous plants with blue flowers
+60159,periwinkle rose_periwinkle Madagascar_periwinkle old_maid Cape_periwinkle red_periwinkle cayenne_jasmine Catharanthus_roseus Vinca_rosea,commonly cultivated Old World woody herb having large pinkish to red flowers
+60160,periwinkle winkle,small edible marine snail; steamed in wine or baked
+60161,periwinkle winkle,edible marine gastropod
+60162,periwinkle_plant_derivative,an antineoplastic drug used to treat some forms of cancer
+60163,perjurer false_witness,a person who deliberately gives false testimony
+60164,perjury bearing_false_witness lying_under_oath,criminal offense of making false statements under oath
+60165,permafrost,ground that is permanently frozen
+60166,permanence permanency,the property of being able to exist for an indefinite duration
+60167,permanent_injunction final_injunction,injunction issued on completion of a trial
+60168,permanent_magnet static_magnet,a magnet that retains its magnetism after being removed from a magnetic field
+60169,permanent_press durable_press,a fabric that has been chemically processed to resist wrinkles and hold its shape
+60170,permanent_tooth adult_tooth,any of the 32 teeth that replace the deciduous teeth of early childhood and (with luck) can last until old age
+60171,permanent_wave permanent perm,a series of waves in the hair made by applying heat and chemicals
+60172,permanganate,a dark purple salt of permanganic acid; in water solution it is used as a disinfectant and antiseptic
+60173,permanganic_acid,an unstable purple acid (HMnO4) known only in solution or of permanganate salts
+60174,permeability permeableness,the property of something that can be pervaded by a liquid (as by osmosis or diffusion)
+60175,permeation pervasion suffusion,the process of permeating or infusing something with a substance
+60176,permissibility,admissibility as a consequence of being permitted
+60177,permission,approval to do something; "he asked permission to leave"
+60178,permissiveness tolerance,a disposition to allow freedom of choice and behavior
+60179,permit Trachinotus_falcatus,large game fish; found in waters of the West Indies
+60180,permutability permutableness transposability,ability to change sequence
+60181,permutation,the act of changing the arrangement of a given number of elements
+60182,permutation,complete change in character or condition; "the permutations...taking place in the physical world"- Henry Miller
+60183,permutation,act of changing the lineal order of objects in a group
+60184,pernicious_anemia pernicious_anaemia malignant_anemia malignant_anaemia,a chronic progressive anemia of older adults; thought to result from a lack of intrinsic factor (a substance secreted by the stomach that is responsible for the absorption of vitamin B12)
+60185,perniciousness toxicity,grave harmfulness or deadliness
+60186,pernyi_moth Antheraea_pernyi,a Chinese moth that produces a brownish silk
+60187,peroneal_vein fibular_vein vena_peroneus,accompany the peroneal arteries; arising in the heel and running up the back of the leg to join the posterior tibial veins of the popliteal vein
+60188,peroneus,muscle of the lower leg that is involved in moving the foot
+60189,peroration,a flowery and highly rhetorical oration
+60190,peroration,(rhetoric) the concluding section of an oration; "he summarized his main points in his peroration"
+60191,peroxidase,any of a group of enzymes (occurring especially in plant cells) that catalyze the oxidation of a compound by a peroxide
+60192,peroxide,an inorganic compound containing the divalent ion -O-O-
+60193,peroxide_blond peroxide_blonde,a blond whose hair is bleached with peroxide
+60194,perpendicular,a straight line at right angles to another line
+60195,perpendicular,an extremely steep face
+60196,perpendicular perpendicular_style English-Gothic English-Gothic_architecture,a Gothic style in 14th and 15th century England; characterized by vertical lines and a four-centered (Tudor) arch and fan vaulting
+60197,perpendicularity,the quality of being at right angles to a given line or plane (especially the plane of the horizon)
+60198,perpetration commission committal,the act of committing a crime
+60199,perpetrator culprit,someone who perpetrates wrongdoing
+60200,perpetual_calendar,a chart or mechanical device that indicates the days of the week corresponding to any given date over a long period of years
+60201,perpetual_motion,motion that continues indefinitely without any external source of energy; impossible in practice because of friction
+60202,perpetual_motion_machine,a machine that can continue to do work indefinitely without drawing energy from some external source; impossible under the law of conservation of energy
+60203,perpetual_warrant,a warrant with no expiration date
+60204,perpetuity sempiternity,the property of being perpetual (seemingly ceaseless)
+60205,perphenazine Triavil,tranquilizer and antidepressant (trade name Triavil) sometimes used as an antiemetic for adults
+60206,perplexity,trouble or confusion resulting from complexity
+60207,perry,a fermented and often effervescent beverage made from juice of pears; similar in taste to hard cider
+60208,persecution,the act of persecuting (especially on the basis of race or religion)
+60209,perseverance persistence perseveration,the act of persisting or persevering; continuing or repeating behavior; "his perseveration continued to the point where it was no longer appropriate"
+60210,perseveration,the tendency for a memory or idea to persist or recur without any apparent stimulus for it
+60211,persiflage,light teasing
+60212,persimmon,orange fruit resembling a plum; edible when fully ripe
+60213,persimmon persimmon_tree,any of several tropical trees of the genus Diospyros
+60214,person,a grammatical category used in the classification of pronouns, possessive determiners, and verb forms according to whether they indicate the speaker, the addressee, or a third party; "stop talking about yourself in the third person"
+60215,person,a human body (usually including the clothing); "a weapon was hidden on his person"
+60216,person individual someone somebody mortal soul,a human being; "there was too much for one person to do"
+60217,person_agreement,agreement in person between pronouns and verbs
+60218,person_of_color person_of_colour,(formal) any non-European non-white person
+60219,persona image,(Jungian psychology) a personal facade that one presents to the world; "a public image is as fragile as Humpty Dumpty"
+60220,persona_grata,a diplomat who is acceptable to the government to which he is sent
+60221,persona_non_grata,a diplomat who is unacceptable to the government to which he is sent
+60222,personableness,the complex of attributes that make a person socially attractive
+60223,personage,another word for person; a person not meriting identification; "a strange personage appeared at the door"
+60224,personal,a short newspaper article about a particular person or group
+60225,personal_business personal_matters affairs,matters of personal concern; "get his affairs in order"
+60226,personal_care,care for someone who is disabled or is otherwise unable to care for themselves; can including bathing and cooking and managing bodily functions
+60227,personal_check personal_cheque,a check drawn against funds deposited in your personal checking account
+60228,personal_computer PC microcomputer,a small digital computer based on a microprocessor and designed to be used by one person at a time
+60229,personal_digital_assistant PDA personal_organizer personal_organiser organizer organiser,a lightweight consumer electronic device that looks like a hand-held computer but instead performs specific tasks; can serve as a diary or a personal database or a telephone or an alarm clock etc.
+60230,personal_equation,variability attributable to individual differences
+60231,personal_expense,the cost of personal or family living; "some personal expenses are tax deductible"
+60232,personal_foul,a foul that involves unnecessarily rough contact (as in basketball or football)
+60233,personal_identification_number PIN PIN_number,a number you choose and use to gain access to various accounts
+60234,personal_income,the income received by a single individual
+60235,personal_letter,a letter dealing with personal affairs
+60236,personal_loan consumer_loan,a loan that establishes consumer credit that is granted for personal use; usually unsecured and based on the borrower's integrity and ability to pay
+60237,personal_pronoun,a pronoun expressing a distinction of person
+60238,personal_property personal_estate personalty private_property,movable property (as distinguished from real estate)
+60239,personal_relation personal_relationship,a relation between persons
+60240,personal_representative,a person who manages the affairs of another
+60241,personality,a person of considerable prominence; "she is a Hollywood personality"
+60242,personality,the complex of all the attributes--behavioral, temperamental, emotional and mental--that characterize a unique individual; "their different reactions reflected their very different personalities"; "it is his nature to help others"
+60243,personality_disorder,inflexible and maladaptive patterns of behavior
+60244,personality_inventory personality_assessment,a questionnaire that is supposed to yield a description of a person's personality traits; "a personality inventory is a direct test of personality, as contrasted with a projective test"
+60245,personality_test,any test that is intended to assess personality
+60246,personhood,being a person; "finding her own personhood as a campus activist"
+60247,personification,a person who represents an abstract quality; "she is the personification of optimism"
+60248,personification incarnation,the act of attributing human characteristics to abstract ideas etc.
+60249,personification prosopopoeia,representing an abstract quality or idea as a person or creature
+60250,personnel_carrier,a military vehicle (usually armored) for transporting military personnel and their equipment
+60251,personnel_casualty loss,military personnel lost by death or capture
+60252,personnel_department personnel_office personnel staff_office,the department responsible for hiring and training and placing employees and for setting policies for personnel management
+60253,perspective linear_perspective,the appearance of things relative to one another as determined by their distance from the viewer
+60254,perspicuity perspicuousness plainness,clarity as a consequence of being perspicuous
+60255,perspiration sweat sudor,salty fluid secreted by sweat glands; "sweat poured off his brow"
+60256,perspiration sweating diaphoresis sudation hidrosis,the process of the sweat glands of the skin secreting a salty fluid; "perspiration is a homeostatic process"
+60257,perspirer sweater,a person who perspires
+60258,persuader inducer,someone who tries to persuade or induce or lead on
+60259,persuasion suasion,the act of persuading (or attempting to persuade); communication intended to induce belief or action
+60260,persuasiveness strength,the power to induce the taking of a course of action or the embracing of a point of view by means of argument or entreaty; "the strength of his argument settled the matter"
+60261,pertainym,meaning relating to or pertaining to
+60262,pertness,quality of being lively and confident; "there was a pertness about her that attracted him"
+60263,perturbation,(physics) a secondary influence on a system that causes it to deviate slightly
+60264,perturbation disturbance,activity that is a malfunction, intrusion, or interruption; "the term `distress' connotes some degree of perturbation and emotional upset"; "he looked around for the source of the disturbance"; "there was a disturbance of neural function"
+60265,perturbation fluster,a disposition that is confused or nervous and upset
+60266,perusal perusing poring_over studying,reading carefully with intent to remember
+60267,pervaporation,the concentration of a colloidal solution whose colloid will not pass through a semipermeable membrane; solution is placed in a bag of the membrane and the solvent is evaporated off
+60268,pervasiveness,the quality of filling or spreading throughout; "the pervasiveness of the odor of cabbage in tenement hallways"
+60269,perversion,a curve that reverses the direction of something; "the tendrils of the plant exhibited perversion"; "perversion also shows up in kinky telephone cords"
+60270,perversion,the action of perverting something (turning it to a wrong use); "it was a perversion of justice"
+60271,perversion sexual_perversion,an aberrant sexual practice
+60272,perversity perverseness,deliberately deviating from what is good; "there will always be a few people who, through macho perversity, gain satisfaction from bullying and terrorism"
+60273,pervert deviant deviate degenerate,a person whose behavior deviates from what is acceptable especially in sexual behavior
+60274,pesantran pesantren,a Muslim school in Indonesia operated by religious leaders; produces young militants skilled in jihad
+60275,peseta Spanish_peseta,formerly the basic unit of money in Spain; equal to 100 centimos
+60276,pesewa,100 pesewas equal 1 cedi in Ghana
+60277,peshmerga,a member of a Kurdish guerilla organization that fights for a free Kurdish state
+60278,pessimism,the feeling that things will turn out badly
+60279,pessimism,a general disposition to look on the dark side and to expect the worst in all things
+60280,pessimist,a person who expects the worst
+60281,pest,any unwanted and destructive insect or other animal that attacks food or crops or livestock etc.; "he sprayed the garden to get rid of pests"; "many pests have developed resistance to the common pesticides"
+60282,pest blighter cuss pesterer gadfly,a persistently annoying person
+60283,pesthole,a breeding ground for epidemic disease
+60284,pesticide,a chemical used to kill pests (as rodents or insects)
+60285,pesticide_poisoning,toxic condition resulting from ingesting or inhaling a pesticide
+60286,pestilence canker,a pernicious and malign influence that is hard to get rid of; "racism is a pestilence at the heart of the nation"; "according to him, I was the canker in their midst"
+60287,pestle,a club-shaped hand tool for grinding and mixing substances in a mortar
+60288,pestle muller pounder,a heavy tool of stone or iron (usually with a flat base and a handle) that is used to grind and mix material (as grain or drugs or pigments) against a slab of stone
+60289,pesto,a sauce typically served with pasta; contains crushed basil leaves and garlic and pine nuts and Parmesan cheese in olive oil
+60290,pet,a fit of petulance or sulkiness (especially at what is felt to be a slight)
+60291,pet,a domesticated animal kept for companionship or amusement
+60292,pet_name hypocorism,a name of endearment (especially one using a diminutive suffix); "`Billy' is a hypocorism for `William'"
+60293,pet_peeve,an opportunity for complaint that is seldom missed; "grammatical mistakes are his pet peeve"
+60294,pet_shop,a shop where pet animals can be purchased
+60295,pet_sitter critter_sitter,someone left in charge of pets while their owners are away from home
+60296,pet_sitting,the work of a pet sitter; caring for pets in their own home while their owners are away from home
+60297,petabit Pbit Pb,a unit of information equal to 1000 terabits or 10^15 bits
+60298,petabyte PB,a unit of information equal to 1000 terabytes or 10^15 bytes
+60299,petabyte pebibyte PB PiB,a unit of information equal to 1024 tebibytes or 2^50 bytes
+60300,petal flower_petal,part of the perianth that is usually brightly colored
+60301,petard,an explosive device used to break down a gate or wall
+60302,petcock,regulator consisting of a small cock or faucet or valve for letting out air or releasing compression or draining
+60303,petechia,a minute red or purple spot on the surface of the skin as the result of tiny hemorrhages of blood vessels in the skin (as in typhoid fever)
+60304,petfood pet-food pet_food,food prepared for animal pets
+60305,petiole leafstalk,the slender stem that supports the blade of a leaf
+60306,petiolule,the stalk of a leaflet
+60307,petit_bourgeois,a member of the lower middle class
+60308,petit_bourgeois petite_bourgeoisie petty_bourgeoisie,lower middle class (shopkeepers and clerical staff etc.)
+60309,petit_four,small (individual) frosted and ornamented cake
+60310,petit_juror petty_juror,a member of a petit jury
+60311,petit_jury petty_jury,a jury of 12 to determine the facts and decide the issue in civil or criminal proceedings
+60312,petit_larceny petty_larceny petty,larceny of property having a value less than some amount (the amount varies by locale)
+60313,petit_mal epilepsia_minor,a seizure of short duration characterized by momentary unconsciousness and local muscle spasms or twitching; "the girl was frightened by her first petit mal"
+60314,petit_mal_epilepsy petit_mal epilepsia_minor,epilepsy characterized by paroxysmal attacks of brief clouding of consciousness (and possibly other abnormalities); "she has been suffering from petit mal since childhood"
+60315,petit_point,needlepoint done with small stitches
+60316,petit_point tent_stitch,a small diagonal needlepoint stitch
+60317,petite,a garment size for short or slender women
+60318,petite_marmite minestrone vegetable_soup,soup made with a variety of vegetables
+60319,petitio_principii petitio,the logical fallacy of assuming the conclusion in the premises; begging the question
+60320,petitioner suppliant supplicant requester,one praying humbly for something; "a suppliant for her favors"
+60321,petrel,relatively small long-winged tube-nosed bird that flies far from land
+60322,petrifaction,a rock created by petrifaction; an organic object infiltrated with mineral matter and preserved in its original form
+60323,petrifaction petrification,the process of turning some plant material into stone by infiltration with water carrying mineral particles without changing the original shape
+60324,petrissage,massage of the skin which is gently lifted and squeezed
+60325,petrochemical,any compound obtained from petroleum or natural gas
+60326,petroglyph,a carving or line drawing on rock (especially one made by prehistoric people)
+60327,petrolatum petroleum_jelly mineral_jelly,a semisolid mixture of hydrocarbons obtained from petroleum; used in medicinal ointments and for lubrication
+60328,petrolatum_gauze,gauze saturated with petrolatum
+60329,petroleum crude_oil crude rock_oil fossil_oil oil,a dark oil consisting mainly of hydrocarbons
+60330,petroleum_geologist oil_geologist,a specialist in petroleum geology
+60331,petroleum_geology,the branch of economic geology that deals with the occurrence and exploitation of oil and gas fields
+60332,petrology lithology,the branch of geology that studies rocks: their origin and formation and mineral composition and classification
+60333,petter fondler,a lover who gently fondles and caresses the loved one; "they are heavy petters"
+60334,petticoat half-slip underskirt,undergarment worn under a skirt
+60335,pettiness,narrowness of mind or ideas or views
+60336,pettiness littleness smallness,lack of generosity in trifling matters
+60337,pettiness triviality slightness puniness,the quality of being unimportant and petty or frivolous
+60338,petting_zoo,a collection of docile animals for children to pet and feed
+60339,petty_apartheid,racial segregation enforced primarily in public transportation and hotels and restaurants and other public places
+60340,petty_cash,a small fund of cash that a firm keeps for the payment of incidental expenses
+60341,petty_officer PO P.O.,a noncommissioned officer in the Navy or Coast Guard with a rank comparable to sergeant in the Army
+60342,petty_spurge devil's_milk Euphorbia_peplus,an Old World spurge introduced as a weed in the eastern United States
+60343,petunia,any of numerous tropical herbs having fluted funnel-shaped flowers
+60344,pew church_bench,long bench with backs; used in church by the congregation
+60345,pewee peewee peewit pewit wood_pewee Contopus_virens,small olive-colored woodland flycatchers of eastern North America
+60346,pewter,any of various alloys of tin with small amounts of other metals (especially lead)
+60347,pfannkuchen german_pancake,puffy mildly sweet lemon-flavored egg mixture sprinkled with confectioners' sugar and served with jam or a wine or fruit sauce
+60348,pfennig,100 pfennigs formerly equaled 1 Deutsche Mark in Germany
+60349,phacoemulsification,extracapsular surgery for cataracts in which ultrasonic sound breaks the cortex and nucleus of the lens into small fragments that are then vacuumed away through a small tube
+60350,phagocyte scavenger_cell,a cell that engulfs and digests debris and invading microorganisms
+60351,phagocytosis,process in which phagocytes engulf and digest microorganisms and cellular debris; an important defense against infection
+60352,phaius,an orchid of the genus Phaius having large plicate leaves and racemes of showy flowers
+60353,phalanger opossum possum,small furry Australian arboreal marsupials having long usually prehensile tails
+60354,phalangitis,inflammation of a finger or toe
+60355,phalanx,any closely ranked crowd of people
+60356,phalanx,a body of troops in close array
+60357,phalanx,any of the bones of the fingers or toes
+60358,phalarope,small sandpiper-like shorebird having lobate toes and being good swimmers; breed in the Arctic and winter in the tropics
+60359,phallic_stage phallic_phase,(psychoanalysis) the third stage in a child's development when awareness of and manipulation of the genitals is supposed to be a primary source of pleasure
+60360,phalloplasty,reconstructive surgery on the penis to repair congenital abnormality or injury
+60361,phalsa Grewia_asiatica,drought-resistant Asiatic treelike shrub bearing pleasantly acid small red edible fruits commonly used in sherbets
+60362,phaneromania,an irresistible desire to pick at superficial body parts (as in obsessive nail-biting)
+60363,phantasmagoria,a constantly changing medley of real or imagined images (as in a dream)
+60364,phantom_limb,the illusion that a limb still exists after it has been amputated
+60365,phantom_limb_pain,pain felt by an amputee that seems to be located in the missing limb
+60366,phantom_limb_syndrome,syndrome consisting of discomfort or pain in a limb that has been amputated
+60367,phantom_orchid snow_orchid Eburophyton_austinae,waxy white nearly leafless plant with stems in clusters and racemes of white flowers; northwestern United States to northern California and east to Idaho
+60368,pharaoh_ant pharaoh's_ant Monomorium_pharaonis,small red ant of warm regions; a common household pest
+60369,pharisee,a self-righteous or sanctimonious person
+60370,pharmaceutical pharmaceutic,drug or medicine that is prepared or dispensed in pharmacies and used in medical treatment
+60371,pharmacist druggist chemist apothecary pill_pusher pill_roller,a health professional trained in the art of preparing and dispensing drugs
+60372,pharmacogenetics,the branch of genetics that studies the genetically determined variations in responses to drugs in humans or laboratory organisms
+60373,pharmacokinetics,the study of the action of drugs in the body: method and rate of excretion; duration of effect; etc.
+60374,pharmacologist pharmaceutical_chemist,someone trained in the science of drugs (their composition and uses and effects)
+60375,pharmacology pharmacological_medicine materia_medica,the science or study of drugs: their preparation and properties and uses and effects
+60376,pharmacopoeia,a collection or stock of drugs
+60377,pharmacy pharmaceutics,the art and science of preparing and dispensing drugs and medicines,
+60378,pharyngeal_recess,a small recess in the wall of the pharynx
+60379,pharyngeal_reflex gag_reflex,normal reflex consisting of retching; may be produced by touching the soft palate in the back of the mouth
+60380,pharyngeal_tonsil adenoid Luschka's_tonsil third_tonsil tonsilla_pharyngealis tonsilla_adenoidea,a collection of lymphatic tissue in the throat behind the uvula (on the posterior wall and roof of the nasopharynx); "hypertrophy of the pharyngeal tonsils is called adenoids"; "enlarged adenoids may restrict the breathing of children"
+60381,pharyngeal_vein vena_pharyngeus,veins from the pharyngeal plexus that empty into the internal jugular vein
+60382,phase,(astronomy) the particular appearance of a body's state of illumination (especially one of the recurring shapes of the part of Earth's moon that is illuminated by the sun); "the full phase of the moon"
+60383,phase form,(physical chemistry) a distinct state of matter in a system; matter that is identical in chemical composition and physical state and separated from other material by the phase boundary; "the reaction occurs in the liquid phase of the system"
+60384,phase phase_angle,a particular point in the time of a cycle; measured from some arbitrary zero and expressed as an angle
+60385,phase stage,any distinct time period in a sequence of events; "we are in a transitional stage in which many former ideas must be revised or rejected"
+60386,phase-out,the act or instance of a planned discontinuation
+60387,phase_III_clinical_trial phase_III,a large clinical trial of a treatment or drug that in phase I and phase II has been shown to be efficacious with tolerable side effects; after successful conclusion of these clinical trials it will receive formal approval from the FDA
+60388,phase_II_clinical_trial phase_II,a clinical trial on more persons than in phase I; intended to evaluate the efficacy of a treatment for the condition it is intended to treat; possible side effects are monitored
+60389,phase_IV_clinical_trial phase_IV,sometimes the FDA approves a drug for general use but requires the manufacturer to continue to monitor its effects; during this phase the drug may be tried on slightly different patient populations than those studied in earlier trials
+60390,phase_I_clinical_trial phase_I,a clinical trial on a few persons to determine the safety of a new drug or invasive medical device; for drugs, dosage or toxicity limits should be obtained
+60391,phase_change phase_transition state_change physical_change,a change from one state (solid or liquid or gas) to another without a change in chemical composition
+60392,phase_modulation PM,modulation of the phase of the carrier wave
+60393,phase_of_cell_division,a stage in meiosis or mitosis
+60394,phase_of_the_moon,a time when the Moon presents a particular recurring appearance
+60395,phase_space,(physics) an ideal space in which the coordinate dimensions represent the variables that are required to describe a system or substance; "a multidimensional phase space"
+60396,phasianid,a kind of game bird in the family Phasianidae
+60397,phasmid phasmid_insect,large cylindrical or flattened mostly tropical insects with long strong legs that feed on plants; walking sticks and leaf insects
+60398,phatic_speech phatic_communication,conversational speech used to communicate sociability more than information
+60399,pheasant,flesh of a pheasant; usually braised
+60400,pheasant,large long-tailed gallinaceous bird native to the Old World but introduced elsewhere
+60401,pheasant's-eye Adonis_annua,Eurasian herb cultivated for its deep red flowers with dark centers
+60402,pheasant_coucal pheasant_cuckoo Centropus_phasianinus,Australian bird with a tail like a pheasant
+60403,pheasant_under_glass,a dish of roast pheasant served in a manner characteristic of expensive restaurants
+60404,phellem cork,(botany) outer tissue of bark; a protective layer of dead cells
+60405,phenacomys,any of several vole-like terrestrial or arboreal rodents of cold forested regions of Canada and western United States
+60406,phenazopyridine Pyridium,analgesic (trade name Pyridium) used to treat urinary tract infections
+60407,phencyclidine phencyclidine_hydrochloride PCP angel_dust,a drug used as an anesthetic by veterinarians; illicitly taken (originally in the form of powder or `dust') for its effects as a hallucinogen
+60408,phenelzine Nardil,monoamine oxidase inhibitor (trade name Nardil) used to treat clinical depression
+60409,pheniramine,an antihistamine used in preparations to treat allergies and respiratory infections; used to treat rhinitis and skin rashes and pruritus
+60410,pheno-safranine,a purplish red water-soluble dye used in microscopy
+60411,phenol,any of a class of weakly acidic organic compounds; molecule contains one or more hydroxyl groups
+60412,phenolic_plastic phenolic_urea,a plastic consisting of phenolic resins
+60413,phenolic_resin phenolic phenoplast,a thermosetting resin
+60414,phenolphthalein,a laxative used in many preparations under various trade names; also used as an acid-base indicator in titrations involving weak acids and strong bases because it is brilliant red at high alkalinity and colorless below pH 8
+60415,phenomenology,a philosophical doctrine proposed by Edmund Husserl based on the study of human experience in which considerations of objective reality are not taken into account
+60416,phenomenon,a remarkable development
+60417,phenomenon,any state or process known through the senses rather than by intuition or reasoning
+60418,phenothiazine thiodiphenylamine,a compound used primarily in veterinary medicine to rid farm animals of internal parasites
+60419,phenotype,what an organism looks like as a consequence of the interaction of its genotype and the environment
+60420,phensuximide Milontin,anticonvulsant (trade name Milontin) used to treat petit mal
+60421,phentolamine Vasomax,a virility drug (trade name Vasomax) to treat erectile dysfunction in men
+60422,phenylalanine,an essential amino acid found in proteins and needed for growth of children and for protein metabolism in children and adults; abundant in milk and eggs; it is normally converted to tyrosine in the human body
+60423,phenylbutazone Butazolidin,anti-inflammatory drug (trade name Butazolidin)
+60424,phenylephrine,a powerful vasoconstrictor used to dilate the pupils and relieve nasal congestion
+60425,phenylketonuria PKU,a genetic disorder of metabolism; lack of the enzyme needed to turn phenylalanine into tyrosine results in an accumulation of phenylalanine in the body fluids which causes various degrees of mental deficiency
+60426,phenylpropanolamine,an adrenergic drug used in many preparations to relieve allergic reactions or respiratory infections; "drugs containing phenylpropanolamine are being recalled"
+60427,phenyltoloxamine,antihistamine included in some preparations used to treat coughing and nasal congestion
+60428,pheochromocytoma phaeochromocytoma,a vascular tumor of the adrenal gland; hypersecretion of epinephrine results in intermittent or sustained hypertension
+60429,pheromone,a chemical substance secreted externally by some animals (especially insects) that influences the physiology or behavior of other animals of the same species
+60430,phi,the 21st letter of the Greek alphabet
+60431,phi_coefficient phi_correlation fourfold_point_correlation,an index of the relation between any two sets of scores that can both be represented on ordered binary dimensions (e.g., male-female)
+60432,phial vial ampule ampul ampoule,a small bottle that contains a drug (especially a sealed sterile container for injection by needle)
+60433,philadelphus,any of various chiefly deciduous ornamental shrubs of the genus Philadelphus having white sweet-scented flowers, single or in clusters; widely grown in temperate regions
+60434,philanthropic_foundation,a foundation that provides funds for science or art or education or religion or relief from disease etc.
+60435,philanthropist altruist,someone who makes charitable donations intended to increase human well-being
+60436,philanthropy philanthropic_gift,voluntary promotion of human welfare
+60437,philatelist stamp_collector,a collector and student of postage stamps
+60438,philately stamp_collecting stamp_collection,the collection and study of postage stamps
+60439,philhellene philhellenist Graecophile,an admirer of Greece and everything Greek
+60440,philhellenism,admiration for Greece and the Greeks and Greek customs
+60441,philistine anti-intellectual lowbrow,a person who is uninterested in intellectual pursuits
+60442,phillipsite,a group of white or reddish crystalline minerals of the zeolite family consisting of a hydrous silicate of calcium and potassium and aluminum
+60443,philodendron,often grown as a houseplant
+60444,philogyny,admiration for women
+60445,philologist philologue,a humanist specializing in classical scholarship
+60446,philomath,a lover of learning
+60447,philosopher,a wise person who is calm and rational; someone who lives a life of reason with equanimity
+60448,philosopher,a specialist in philosophy
+60449,philosopher's_stone philosophers'_stone elixir,hypothetical substance that the alchemists believed to be capable of changing base metals into gold
+60450,philosophical_doctrine philosophical_theory,a doctrine accepted by adherents to a philosophy
+60451,philosophizer philosophiser,someone who considers situations from a philosophical point of view
+60452,philosophizing,the exposition (often superficially) of a particular philosophy
+60453,philosophy,the rational investigation of questions about existence and knowledge and ethics
+60454,philosophy,any personal belief about how to live or how to deal with a situation; "self-indulgence was his only philosophy"; "my father's philosophy of child-rearing was to let mother do it"
+60455,philosophy_department department_of_philosophy,the academic department responsible for teaching philosophy
+60456,philter philtre love-potion love-philter love-philtre,a drink credited with magical power; can make the one who takes it love the one who gave it
+60457,phimosis,an abnormal tightness of the foreskin preventing retraction over the glans
+60458,phlebectomy,surgical removal or all or part of a vein; sometimes done in cases of severe varicose veins
+60459,phlebitis,inflammation of a vein (usually in the legs)
+60460,phlebothrombosis venous_thrombosis,thrombosis of a vein without prior inflammation of the vein; associated with sluggish blood flow (as in prolonged bedrest or pregnancy or surgery) or with rapid coagulation of the blood
+60461,phlebotomist,someone who practices phlebotomy
+60462,phlegm sputum,expectorated matter; saliva mixed with discharges from the respiratory passages; in ancient and medieval physiology it was believed to cause sluggishness
+60463,phloem bast,(botany) tissue that conducts synthesized food substances (e.g., from leaves) to parts where needed; consists primarily of sieve tubes
+60464,phlogiston,a hypothetical substance once believed to be present in all combustible materials and to be released during burning
+60465,phlogopite,a brown form of mica consisting of hydrous silicate of potassium and magnesium and aluminum
+60466,phlomis,any of various plants of the genus Phlomis; grown primarily for their dense whorls of lipped flowers and attractive foliage
+60467,phlox,any polemoniaceous plant of the genus Phlox; chiefly North American; cultivated for their clusters of flowers
+60468,phobia phobic_disorder phobic_neurosis,an anxiety disorder characterized by extreme and irrational fear of simple things or social situations; "phobic disorder is a general term for all phobias"
+60469,phobophobia,a morbid fear of developing a phobia
+60470,phocomelia seal_limbs,an abnormality of development in which the upper part of an arm or leg is missing so the hands or feet are attached to the body like stumps; rare condition that results from taking thalidomide during pregnancy
+60471,phoebe phoebe_bird Sayornis_phoebe,small dun-colored North American flycatcher
+60472,phoenicophorium genus_Phoenicophorium,latanier palm
+60473,phoenix,a legendary Arabian bird said to periodically burn itself to death and emerge from the ashes as a new phoenix; according to most versions only one phoenix lived at a time and it renewed itself every 500 years
+60474,phoenix genus_Phoenix,a large monocotyledonous genus of pinnate-leaved palms found in Asia and Africa
+60475,phon,a unit of subjective loudness
+60476,phone speech_sound sound,(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language
+60477,phone-in,a program in which the audience participates by telephone
+60478,phone_bill telephone_bill,statement of charges for telephone service
+60479,phone_message telephone_message,a message transmitted by telephone
+60480,phone_number telephone_number number,the number is used in calling a particular telephone; "he has an unlisted number"
+60481,phonebook phone_book telephone_book telephone_directory,a directory containing an alphabetical list of telephone subscribers and their telephone numbers
+60482,phoneme,(linguistics) one of a small set of speech sounds that are distinguished by the speakers of a particular language
+60483,phonemic_system,the system of phonemes recognized in a language
+60484,phonetic_alphabet sound_alphabet,an alphabet of characters intended to represent specific sounds of speech
+60485,phonetic_symbol,a written character used in phonetic transcription of represent a particular speech sound
+60486,phonetic_transcription,a transcription intended to represent each distinct speech sound with a separate symbol
+60487,phonetician,a specialist in phonetics
+60488,phonetics,the branch of acoustics concerned with speech processes including its production and perception and acoustic analysis
+60489,phonics,teaching reading by training beginners to associate letters with their sound values
+60490,phonogram,any written symbol standing for a sound or syllable or morpheme or word
+60491,phonograph_album record_album,an album for holding phonograph records
+60492,phonograph_needle needle,a stylus that formerly made sound by following a groove in a phonograph record
+60493,phonograph_record phonograph_recording record disk disc platter,sound recording consisting of a disk with a continuous groove; used to reproduce music by rotating while a phonograph needle tracks in the groove
+60494,phonological_system phonologic_system,the system of phones used in a particular language
+60495,phonologist,a specialist in phonology
+60496,phonology phonemics,the study of the sound system of a given language and the analysis and classification of its phonemes
+60497,phonophobia acousticophobia,a morbid fear of sounds including your own voice
+60498,phoronid,hermaphrodite wormlike animal living in mud of the sea bottom
+60499,phosgene,a colorless poisonous gas that smells like new-mown hay; used in chemical warfare
+60500,phosphatase,any of a group of enzymes that act as a catalyst in the hydrolysis of organic phosphates
+60501,phosphate,carbonated drink with fruit syrup and a little phosphoric acid
+60502,phosphate orthophosphate inorganic_phosphate,a salt of phosphoric acid
+60503,phosphate_buffer_solution PBS,a solution containing a phosphate buffer
+60504,phosphine,a colorless gas with a strong fishy smell; used as a pesticide
+60505,phosphocreatine creatine_phosphate creatine_phosphoric_acid,an organic compound of creatine and phosphoric acid; found in the muscles of vertebrates where its hydrolysis releases energy for muscular contraction
+60506,phospholipid,any of various compounds composed of fatty acids and phosphoric acid and a nitrogenous base; an important constituent of membranes
+60507,phosphoprotein,containing chemically bound phosphoric acid
+60508,phosphor,a synthetic substance that is fluorescent or phosphorescent; used to coat the screens of cathode ray tubes
+60509,phosphor_bronze,a corrosion-resistant bronze containing phosphorus; used in bearings and gears
+60510,phosphorescence,a fluorescence that persists after the bombarding radiation has ceased
+60511,phosphoric_acid orthophosphoric_acid,an acid used in fertilizers and soaps: H3PO4
+60512,phosphorus P atomic_number_15,a multivalent nonmetallic element of the nitrogen family that occurs commonly in inorganic phosphate rocks and as organic phosphates in all living cells; is highly reactive and occurs in several allotropic forms
+60513,phot,a unit of illumination equal to 1 lumen per square centimeter; 10,000 phots equal 1 lux
+60514,photalgia photophobia,pain in the eye resulting from exposure to bright light (often associated with albinism)
+60515,photo-offset_printing photo-offset,a method of offset printing using photomechanical plates
+60516,photo_credit,a note acknowledging the source of a published photograph
+60517,photo_finish,in general, any very close finish; in particular, a finish of a race in which the contestants are so close together that the winner must be determined from a photograph taken at the instant of finishing
+60518,photo_opportunity photo_op,an occasion that lends itself to (or is deliberately arranged for) taking photographs that provide favorable publicity for those who are photographed
+60519,photocathode,a cathode that emits electrons when illuminated
+60520,photochemical_exchange,an exchange produced by the chemical action of radiant energy (especially light)
+60521,photochemical_reaction,a chemical reaction produced by the action of light
+60522,photochemistry,branch of chemistry that deals with the chemical action of light
+60523,photocoagulation,surgical procedure that uses an intense laser beam to destroy diseased retinal tissue or to make a scar that will hold the retina in cases of detached retina
+60524,photocoagulator,surgical instrument containing a laser for use in photocoagulation
+60525,photoconductivity photoconduction,change in the electrical conductivity of a substance as a result of absorbing electromagnetic radiation
+60526,photocopier,a copier that uses photographic methods of making copies
+60527,photocopy,a photographic copy of written or printed or graphic work
+60528,photoelectric_cell photoconductive_cell photocell electric_eye magic_eye,a transducer used to detect and measure light and other radiations
+60529,photoelectric_emission,the release or absorption of quanta above a certain energy level
+60530,photoelectricity,electricity generated by light or affected by light
+60531,photoelectron,an electron that is emitted from an atom or molecule by an incident photon
+60532,photoemission,an emission of photoelectrons (especially from a metallic surface)
+60533,photogenic_epilepsy,reflex epilepsy induced by a flickering light
+60534,photograph photo exposure picture pic,a representation of a person or scene in the form of a print or transparent slide or in digital format
+60535,photograph_album,an album for photographs
+60536,photographer lensman,someone who takes photographs professionally
+60537,photographer's_model,a model who poses for photographers
+60538,photographic_equipment,equipment used by a photographer
+60539,photographic_paper photographic_material,light-sensitive paper on which photograph can be printed
+60540,photographic_print print,a printed picture produced from a photographic negative
+60541,photography,the process of producing images of objects on photosensitive surfaces
+60542,photography,the occupation of taking and printing photographs or making movies
+60543,photography picture_taking,the act of taking and printing photographs
+60544,photogravure,printing from an intaglio plate prepared by photographic methods
+60545,photogravure rotogravure,using photography to produce a plate for printing
+60546,photojournalism,journalism that presents a story primarily through the use of pictures
+60547,photojournalist,a journalist who presents a story primarily through the use of photographs
+60548,photolithograph,a lithograph produced by photographically produced plates
+60549,photolithography,a planographic printing process using plates made from a photographic image
+60550,photomechanics,the technique of using photomechanical methods to make photographs into plates for printing
+60551,photomechanics photoplate_making,the process whereby printing surfaces (plates or cylinders) are produced by photographic methods; "photomechanics revolutionized the practice of printing"
+60552,photometer,measuring instrument for measuring the luminous intensity of a source by comparing it (visually or photoelectrically) with a standard source
+60553,photometrist photometrician,someone who practices photometry
+60554,photometry,measurement of the properties of light (especially luminous intensity)
+60555,photomicrograph,a photograph taken with the help of a microscope
+60556,photomontage,a montage that uses photographic images
+60557,photon,a quantum of electromagnetic radiation; an elementary particle that is its own antiparticle
+60558,photophobia,a morbid fear of light
+60559,photopigment,a special pigment found in the rods and cones of the retina
+60560,photoretinitis,damage to the retina resulting from exposure of the eye to the sun without adequate protection
+60561,photosensitivity radiosensitivity,sensitivity to the action of radiant energy
+60562,photosphere,the intensely luminous surface of a star (especially the sun)
+60563,photostat,a photocopy made on a Photostat machine
+60564,photosynthesis,synthesis of compounds with the aid of radiant energy (especially in plants)
+60565,phototherapy,the use of strong light to treat acne or hyperbilirubinemia of the newborn
+60566,phototrophic_bacteria phototropic_bacteria,green and purple bacteria; energy for growth is derived from sunlight; carbon is derived from carbon dioxide or organic carbon
+60567,phototropism,an orienting response to light
+60568,phragmocone phragmacone,the thin conical chambered internal shell (either straight or curved) of a belemnite
+60569,phrasal_verb,an English verb followed by one or more particles where the combination behaves as a syntactic and semantic unit; "`turn out' is a phrasal verb in the question `how many turned out to vote?'"
+60570,phrase,an expression consisting of one or more words forming a grammatical constituent of a sentence
+60571,phrase,dance movements that are linked in a single choreographic sequence
+60572,phrase musical_phrase,a short musical passage
+60573,phrase_book,a book containing common expressions in a foreign language along with their translations
+60574,phrasing,the grouping of musical phrases in a melodic line
+60575,phrenic_nerve nervus_phrenicus,one of a pair of nerves that arises from cervical spinal roots and passes down the thorax to innervate the diaphragm and control breathing
+60576,phrenic_vein vena_phrenica,either of two veins that drain the diaphragm
+60577,phrenologist craniologist,someone who claims to be able to read your character from the shape of your skull
+60578,phrenology,a now abandoned study of the shape of skull as indicative of the strengths of different faculties
+60579,phrontistery,an establishment for study and learning (sometimes including modern universities)
+60580,phthalic_acid,a colorless acid used to make dyes and perfumes
+60581,phthalic_anhydride,a white cyclic anhydride
+60582,phycobilin,water-soluble proteinaceous pigments found in red algae and cyanobacteria
+60583,phycocyanin,blue pigment in algae
+60584,phycoerythrin,red pigment in red algae
+60585,phycology algology,the branch of botany that studies algae
+60586,phycomycosis,any fungal infection caused by fungi of the Phycomycetes group
+60587,phylactery tefillin,(Judaism) either of two small leather cases containing texts from the Hebrew Scriptures (known collectively as tefillin); traditionally worn (on the forehead and the left arm) by Jewish men during morning prayer
+60588,phyle,a tribe of ancient Athenians
+60589,phyllo,tissue thin sheets of pastry used especially in Greek dishes
+60590,phyllode,an expanded petiole taking on the function of a leaf blade
+60591,phylum,(linguistics) a large group of languages that are historically related
+60592,phylum,(biology) the major taxonomic group of animals and plants; contains classes
+60593,physa,any member of the genus Physa
+60594,physic_nut Jatropha_curcus,small tropical American tree yielding purple dye and a tanning extract and bearing physic nuts containing a purgative oil that is poisonous in large quantities
+60595,physical_ability,the ability to perform some physical act; contrasting with mental ability
+60596,physical_anthropology,the branch of anthropology dealing with the genesis and variation of human beings
+60597,physical_chemistry,the branch of chemistry dealing with the physical properties of chemical substances
+60598,physical_condition physiological_state physiological_condition,the condition or state of the body or bodily functions
+60599,physical_education,training in the development of and care for the human body; stresses athletics; includes hygiene
+60600,physical_entity,an entity that has physical existence
+60601,physical_geography physiography,the study of physical features of the earth's surface
+60602,physical_pendulum compound_pendulum,pendulum consisting of an actual object allowed to rotate freely around a horizontal axis
+60603,physical_phenomenon,a natural phenomenon involving the physical properties of matter and energy
+60604,physical_property,any property used to characterize matter and energy and their interactions
+60605,physical_rehabilitation physical_restoration therapeutic_rehabilitation,providing help for disabled persons; the removal or reduction of disabilities
+60606,physical_therapist physiotherapist,therapist who treats injury or dysfunction with exercises and other physical treatments of the disorder
+60607,physical_therapy physiotherapy physiatrics,therapy that uses physical agents: exercise and massage and other modalities
+60608,physical_topology,the appearance of the network; "the physical topologies of local area networks include the bus, the ring and the star"
+60609,physician-assisted_suicide,assisted suicide where the assistant is a physician
+60610,physician-patient_privilege,the right of a physician to refuse to divulge confidential information from a patient without the consent of the patient
+60611,physicist,a scientist trained in physics
+60612,physics natural_philosophy,the science of matter and energy and their interactions; "his favorite subject was physics"
+60613,physics physical_science,the physical properties, phenomena, and laws of something; "he studied the physics of radiation"
+60614,physics_department department_of_physics,the academic department responsible for teaching and research in physics
+60615,physics_lab physics_laboratory,a laboratory for research in physics
+60616,physiological_nystagmus,small involuntary tremors of the eyeballs; when it is eliminated by stabilizing the image on the retina, visual perception fades rapidly from fatigue of the retinal receptors
+60617,physiological_property,a property having to do with the functioning of the body
+60618,physiological_psychology neuropsychology psychophysiology,the branch of psychology that is concerned with the physiological bases of psychological processes
+60619,physiological_sphincter,a sphincter that is not recognizable at autopsy because its resting arrangement cannot be distinguished from adjacent tissue
+60620,physiologist,a biologist specializing in physiology
+60621,physiology,the branch of the biological sciences dealing with the functioning of organisms
+60622,physiology,processes and functions of an organism
+60623,physique build body-build habitus,constitution of the human body
+60624,physostegia,any of various plants of the genus Physostegia having sessile linear to oblong leaves and showy white or rose or lavender flowers
+60625,physostigmine,used in treatment of Alzheimer's disease and glaucoma
+60626,phytelephas genus_Phytelephas,small genus of South American feather palms
+60627,phytochemical,a chemical substance obtained from plants that is biologically active but not nutritive
+60628,phytochemist,a chemist who specializes in the chemistry of plants
+60629,phytochemistry,the branch of organic chemistry dealing with the chemistry of plants
+60630,phytohormone plant_hormone growth_regulator,(botany) a plant product that acts like a hormone
+60631,phytoplankton,photosynthetic or plant constituent of plankton; mainly unicellular algae
+60632,phytotherapy herbal_therapy botanical_medicine,the use of plants or plant extracts for medicinal purposes (especially plants that are not part of the normal diet)
+60633,pi,the ratio of the circumference to the diameter of a circle; approximately equal to 3.14159265358979323846...
+60634,pi,the 16th letter of the Greek alphabet
+60635,pia Indian_arrowroot Tacca_leontopetaloides Tacca_pinnatifida,perennial herb of East Indies to Polynesia and Australia; cultivated for its large edible root yielding Otaheite arrowroot starch
+60636,pia_mater,the highly vascular innermost of the 3 meninges
+60637,piaffe,a cadenced trot executed by the horse in one spot
+60638,pianism,performance by or technique of a pianist; "a program of pianism"
+60639,pianist piano_player,a person who plays the piano
+60640,piano pianissimo,(music) low loudness
+60641,piano pianoforte forte-piano,a keyboard instrument that is played by depressing keys that cause hammers to strike tuned strings and produce sounds
+60642,piano_accordion,an accordion with a right-hand keyboard
+60643,piano_action,action consisting of a system of levers that move a felt hammer to strike the strings when a key is depressed
+60644,piano_keyboard fingerboard clavier,a bank of keys on a musical instrument
+60645,piano_lesson,a lesson in playing the piano
+60646,piano_maker,a person who makes pianos
+60647,piano_music,sheet music to be played on a piano
+60648,piano_music,the sound of music produced by a piano; "he thought he heard piano music next door"
+60649,piano_sonata,a sonata for piano
+60650,piano_teacher,someone who teaches students to play the piano
+60651,piano_wire,thin steel wire of high tensile strength
+60652,piassava_palm pissaba_palm Bahia_piassava bahia_coquilla Attalea_funifera,Brazilian palm yielding fibers used in making ropes, mats, and brushes
+60653,piaster piastre,a fractional monetary unit in Egypt and Lebanon and Sudan and Syria
+60654,pibroch,martial music with variations; to be played by bagpipes
+60655,pica,an eating disorder, frequent in children, in which non-nutritional objects are eaten persistently
+60656,picador,the horseman who pricks the bull with a lance early in the bullfight to goad the bull and to make it keep its head low
+60657,piccalilli,relish of chopped pickled cucumbers and green peppers and onion
+60658,piccolo,a small flute; pitched an octave above the standard flute
+60659,pichi Fabiana_imbricata,Peruvian shrub with small pink to lavender tubular flowers; leaves yield a tonic and diuretic
+60660,pichiciago pichiciego fairy_armadillo chlamyphore Chlamyphorus_truncatus,very small Argentine armadillo with pale silky hair and pink plates on head and neck
+60661,piciform_bird,any of numerous nonpasserine insectivorous climbing birds usually having strong bills for boring wood
+60662,pick,a thin sharp implement used for removing unwanted material; "he used a pick to clean the dirt out of the cracks"
+60663,pick,a basketball maneuver; obstructing an opponent with one's body; "he was called for setting an illegal pick"
+60664,pick pickax pickaxe,a heavy iron tool with a wooden handle and a curved head that is pointed on both ends; "they used picks and sledges to break the rocks"
+60665,pick plectrum plectron,a small thin device (of metal or plastic or ivory) used to pluck a stringed instrument
+60666,pick-off,a baseball play in which a base runner is caught off base and tagged out
+60667,pickaback_plant piggyback_plant youth-on-age Tolmiea_menziesii,vigorous perennial herb with flowers in erect racemes and having young plants develop at the junction of a leaf blade and the leafstalk
+60668,pickaninny piccaninny picaninny,(ethnic slur) offensive term for a Black child
+60669,pickelhaube,a spiked helmet worn by German soldiers
+60670,picker,someone who gathers crops or fruits etc.
+60671,picker chooser selector,a person who chooses or selects out
+60672,pickerel,flesh of young or small pike
+60673,pickerel,any of several North American species of small pike
+60674,pickerel_frog Rana_palustris,a meadow frog of eastern North America
+60675,pickerelweed pickerel_weed wampee Pontederia_cordata,American plant having spikes of blue flowers and growing in shallow water of streams and ponds
+60676,picket,a protester posted by a labor organization outside a place of work
+60677,picket,a detachment of troops guarding an army from surprise attack
+60678,picket,a vehicle performing sentinel duty
+60679,picket pale,a wooden strip forming part of a fence
+60680,picket piquet,a form of military punishment used by the British in the late 17th century in which a soldier was forced to stand on one foot on a pointed stake
+60681,picket_boat,a boat serving as a picket
+60682,picket_fence paling,a fence made of upright pickets
+60683,picket_line,a line of people acting as pickets
+60684,picket_ship,a ship serving as a picket
+60685,picking,the act of picking (crops or fruit or hops etc.)
+60686,picking pick,the quantity of a crop that is harvested; "he sent the first picking of berries to the market"; "it was the biggest peach pick in years"
+60687,pickings taking,the act of someone who picks up or takes something; "the pickings were easy"; "clothing could be had for the taking"
+60688,pickle,vegetables (especially cucumbers) preserved in brine or vinegar
+60689,pickle_barrel,a barrel holding vinegar in which cucumbers are pickled
+60690,pickle_relish,relish of chopped (usually sweet) pickles
+60691,pickled_herring,herring preserved in a pickling liquid (usually brine or vinegar)
+60692,pickpocket cutpurse dip,a thief who steals from the pockets or purses of others in public places
+60693,pickup,a casual acquaintance; often made in hope of sexual relationships
+60694,pickup,a warrant to take someone into custody; "put out a pickup on that man"
+60695,pickup,the act or process of picking up or collecting from various places; "garbage pickup is on Mondays and Thursdays"
+60696,pickup,the act of taking aboard passengers or freight
+60697,pickup getaway,the attribute of being capable of rapid acceleration; "his car has a lot of pickup"
+60698,pickup pick-me-up,anything with restorative powers; "she needed the pickup that coffee always gave her"
+60699,pickup pickup_truck,a light truck with an open body and low sides and a tailboard
+60700,picnic,any informal meal eaten outside or on an excursion
+60701,picnic_area picnic_ground,a tract of land set aside for picnicking
+60702,picnic_ham picnic_shoulder,shoulder of a hog usually smoked
+60703,picnicker picknicker,a person who is picnicking
+60704,picofarad,a unit of capacitance equal to one trillionth of a farad
+60705,picometer picometre micromicron,a metric unit of length equal to one trillionth of a meter
+60706,picornavirus,a group of single-strand RNA viruses with a protein coat
+60707,picosecond,one trillionth (10^-12) of a second; one thousandth of a nanosecond
+60708,picot,an edging of small loops, as on lace or ribbon
+60709,picovolt,a unit of potential equal to one trillionth of a volt
+60710,picric_acid,a yellow toxic highly explosive strong acid; used in high explosives and as a dye and in chemical reactions
+60711,pictograph,a graphic character used in picture writing
+60712,pictorial,a periodical (magazine or newspaper) containing many pictures
+60713,pictorial_representation picturing,visual representation as by photography or painting
+60714,picture,a typical example of some state or quality; "the very picture of a modern general"; "she was the picture of despair"
+60715,picture image icon ikon,a visual representation (of an object or scene or person or abstraction) produced on a surface; "they showed us the pictures of their wedding"; "a movie is a series of images projected so rapidly that the eye integrates them"
+60716,picture pictorial_matter,illustrations used to decorate or explain a text; "the dictionary had many pictures"
+60717,picture scene,a situation treated as an observable object; "the political picture is favorable"; "the religious scene in England has changed in the last century"
+60718,picture_book,a book consisting chiefly of pictures
+60719,picture_frame,a framework in which a picture is mounted
+60720,picture_hat,a woman's dressy hat with a wide brim
+60721,picture_plane,the plane that is in the foreground of a drawing or painting; coextensive with but different from the objective surface of the work
+60722,picture_postcard,a postcard with a picture on one side
+60723,picture_rail,rail fixed to a wall for hanging pictures
+60724,picture_window,a large window with a single pane (usually overlooking a view)
+60725,picture_writing,a writing system using pictographs
+60726,picturesqueness,the quality of being strikingly expressive or vivid
+60727,picturesqueness,visually vivid and pleasing
+60728,picturing envisioning,visual imagery
+60729,picul,a unit of weight used in some parts of Asia; approximately equal to 133 pounds (the load a grown man can carry)
+60730,piculet,small woodpeckers of South America and Africa and East Indies having soft rounded tail feathers
+60731,piddock,marine bivalve that bores into rock or clay or wood by means of saw-like shells
+60732,pidgin,an artificial language used for trade between speakers of different languages
+60733,pie,dish baked in pastry-lined pan often with a pastry top
+60734,pie_chart,a circular chart divided into triangular areas proportional to the percentages of the whole
+60735,pie_crust pie_shell,pastry used to hold pie fillings
+60736,pie_plant garden_rhubarb Rheum_cultorum Rheum_rhabarbarum Rheum_rhaponticum,long cultivated hybrid of Rheum palmatum; stems often cooked in pies or as sauce or preserves
+60737,piece,an artistic or literary composition; "he wrote an interesting piece on Iran"; "the children acted out a comic piece to amuse the guests"
+60738,piece,a distance; "it is down the road a piece"
+60739,piece,a separate part of a whole; "an important piece of the evidence"
+60740,piece bit,an instance of some kind; "it was a nice piece of work"; "he had a bit of good luck"
+60741,piece part,an item that is an instance of some type; "he designed a new piece of equipment"; "she bought a lovely piece of china"; "my dog swallowed a Lego part"
+60742,piece slice,a serving that has been cut from a larger portion; "a piece of pie"; "a slice of bread"
+60743,piece_de_resistance,the most important dish of a meal
+60744,piece_of_cloth piece_of_material,a separate part consisting of fabric
+60745,piece_of_eight,an old silver Spanish coin; worth 8 reales
+60746,piece_of_leather,a separate part consisting of leather
+60747,piecework,work paid for according to the quantity produced
+60748,pied-a-terre,lodging for occasional or secondary use; "they bought a pied-a-terre in London"
+60749,pied-billed_grebe Podilymbus_podiceps,American grebe having a black-banded whitish bill
+60750,pied_lemming,North American lemming having a white winter coat and some claws much enlarged
+60751,pied_piper,a leader who entices people to follow (especially to their doom)
+60752,piedmont,a gentle slope leading from the base of a mountain to a region of flat land
+60753,pieplant rhubarb,long pinkish sour leafstalks usually eaten cooked and sweetened
+60754,pier,(architecture) a vertical supporting structure (as a portion of wall between two doors or windows)
+60755,pier,a support for two adjacent bridge spans
+60756,pier wharf wharfage dock,a platform built out from the shore into the water and supported by piles; provides access to ships and boats
+60757,pier_arch,an arch supported on piers
+60758,pier_glass pier_mirror,a large mirror between two windows
+60759,pier_table,a low table set below a pier glass
+60760,pierid pierid_butterfly,any of numerous pale-colored butterflies having three pairs of well-developed legs
+60761,pieta,a representation of the Virgin Mary mourning over the dead body of Jesus
+60762,piety piousness,righteousness by virtue of being pious
+60763,piezoelectric_crystal,a crystal that can be used as a transducer
+60764,piezoelectricity piezoelectric_effect piezo_effect,electricity produced by mechanical pressure on certain crystals (notably quartz or Rochelle salt); alternatively, electrostatic stress produces a change in the linear dimensions of the crystal
+60765,piezometer,a measuring instrument for measuring high pressures
+60766,pig,a crude block of metal (lead or iron) poured from a smelting furnace
+60767,pig's_ears Cantharellus_clavatus,an edible agaric with a brown fruiting body that is often compound
+60768,pig_bed pig,mold consisting of a bed of sand in which pig iron is cast
+60769,pig_iron,crude iron tapped from a blast furnace
+60770,pig_lead,lead that is cast in pigs
+60771,pigeon,wild and domesticated birds having a heavy body and short legs
+60772,pigeon_breast chicken_breast,abnormal protrusion of the breastbone caused by rickets
+60773,pigeon_droppings,droppings of pigeons
+60774,pigeon_guillemot Cepphus_columba,northern Pacific guillemot
+60775,pigeon_hawk merlin Falco_columbarius,small falcon of Europe and America having dark plumage with black-barred tail; used in falconry
+60776,pigeon_pea pigeon-pea_plant cajan_pea catjang_pea red_gram dhal dahl Cajanus_cajan,tropical woody herb with showy yellow flowers and flat pods; much cultivated in the tropics
+60777,pigeon_toes,disability in which the toes are turned inward; often associated with knock-knee
+60778,pigeonhole,a specific (often simplistic) category
+60779,pigfish giant_pigfish Achoerodus_gouldii,found around the Great Barrier Reef
+60780,pigfish hogfish Orthopristis_chrysopterus,found from Long Island southward
+60781,piggery pig_farm,a farm where pigs are raised or kept
+60782,piggy_bank penny_bank,a child's coin bank (often shaped like a pig)
+60783,piggyback,the act of carrying something piggyback
+60784,piglet piggy shoat shote,a young pig
+60785,pigment,any substance whose presence in plant or animal tissues produces a characteristic color
+60786,pigment,dry coloring material (especially a powder to be mixed with a liquid to produce paint, etc.)
+60787,pigmentation,the deposition of pigment in animals or plants or human beings
+60788,pigmentation,coloration of living tissues by pigment
+60789,pigmy_talinum Talinum_brevifolium,low plant with crowded narrow succulent leaves and fairly large deep pink axillary flowers that seem to sit on the ground; southwestern United States
+60790,pignut pignut_hickory brown_hickory black_hickory Carya_glabra,an American hickory tree having bitter nuts
+60791,pigs'_feet pigs'_knuckles,feet or knuckles of hogs used as food; pickled or stewed or jellied
+60792,pigs_in_blankets,small frankfurters wrapped in biscuit dough and baked
+60793,pigskin,leather from the skin of swine
+60794,pigsticking,the sport of hunting wild boar with spears
+60795,pigtail,a plait of braided hair
+60796,pigweed Amaranthus_hypochondriacus,leaves sometimes used as potherbs; seeds used as cereal; southern United States to Central America; India and China
+60797,pika mouse_hare rock_rabbit coney cony,small short-eared burrowing mammal of rocky uplands of Asia and western North America
+60798,pike,highly valued northern freshwater fish with lean flesh
+60799,pike,a sharp point (as on the end of a spear)
+60800,pike,medieval weapon consisting of a spearhead attached to a long pole or pikestaff; superseded by the bayonet
+60801,pike,any of several elongate long-snouted freshwater game and food fishes widely distributed in cooler parts of the northern hemisphere
+60802,pike-perch pike_perch,any of several pike-like fishes of the perch family
+60803,pikeblenny,tropical American fishes; males are aggressively defensive of their territory
+60804,piked_reverse_hang,a reverse hang performed on the rings
+60805,pikestaff,the staff of a pike
+60806,pilaf pilaff pilau pilaw,rice cooked in well-seasoned broth with onions or celery and usually poultry or game or shellfish and sometimes tomatoes
+60807,pilaster,a rectangular column that usually projects about a third of its width from the wall to which it is attached
+60808,pilchard sardine Sardina_pilchardus,small fishes found in great schools along coasts of Europe; smaller and rounder than herring
+60809,pile bundle big_bucks megabucks big_money,a large sum of money (especially as pay or profit); "she made a bundle selling real estate"; "they sank megabucks into their new house"
+60810,pile heap mound agglomerate cumulation cumulus,a collection of objects laid on top of each other
+60811,pile nap,the yarn (as in a rug or velvet or corduroy) that stands up from the weave; "for uniform color and texture tailors cut velvet with the pile running the same direction"
+60812,pile spile piling stilt,a column of wood or steel or concrete that is driven into the ground to provide support for a structure
+60813,pile_driver,a machine that drives piling into the ground
+60814,pileup,multiple collisions of vehicles
+60815,pilferage,the act of stealing small amounts or small articles
+60816,pilgrim,someone who journeys to a sacred place as an act of religious devotion
+60817,pilgrim,someone who journeys in foreign lands
+60818,pilgrimage pilgrim's_journey,a journey to a sacred place
+60819,pill,a unpleasant or tiresome person
+60820,pill,something unpleasant or offensive that must be tolerated or endured; "his competitor's success was a bitter pill to take"
+60821,pill,something that resembles a tablet of medicine in shape or size
+60822,pill birth_control_pill contraceptive_pill oral_contraceptive_pill oral_contraceptive anovulatory_drug anovulant,a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception
+60823,pill lozenge tablet tab,a dose of medicine in the form of a small pellet
+60824,pill_bottle,a small bottle for holding pills
+60825,pill_bug,small terrestrial isopod with a convex segmented body that can roll up into a ball
+60826,pill_head,a consumer of amphetamine pills
+60827,pillar,a fundamental principle or practice; "science eroded the pillars of superstition"
+60828,pillar mainstay,a prominent supporter; "he is a pillar of the community"
+60829,pillar_box,a red pillar-shaped letter box
+60830,pillar_of_Islam,(Islam) one of the five religious obligations accepted by all Muslims
+60831,pillbox,a small case for holding pills
+60832,pillbox,a small enclosed gun emplacement (usually of fortified concrete)
+60833,pillbox toque turban,a small round woman's hat
+60834,pillion,a seat behind the rider of a horse or motorbike etc.
+60835,pillory,a wooden instrument of punishment on a post with holes for the wrists and neck; offenders were locked in and so exposed to public scorn
+60836,pillow,a cushion to support the head of a sleeping person
+60837,pillow_block,a cast-iron or steel block for supporting a journal or bearing
+60838,pillow_fight,a child's game of fighting with pillows
+60839,pillow_lace bobbin_lace,a handmade lace worked on a pillow with threads wound on bobbins; the pattern is marked out on the pillow by pins
+60840,pillow_lava,lava that hardened in rounded shapes suggestive of pillows; believed to result from underwater eruptions
+60841,pillow_sham,bed linen consisting of a decorative cover for a pillow
+60842,pillow_talk,intimate conversation between lovers (typically occurring in bed)
+60843,pillwort Pilularia_globulifera,European water fern found around margins of bodies of water or in wet acid soil having small globose sporocarps
+60844,pilocarpine,cholinergic alkaloid used in eyedrops to treat glaucoma
+60845,pilomotor_reflex gooseflesh goose_bump goosebump goose_pimple goose_skin horripilation,reflex erection of hairs of the skin in response to cold or emotional stress or skin irritation
+60846,pilot,a person qualified to guide ships through difficult waters going into or out of a harbor
+60847,pilot airplane_pilot,someone who is licensed to operate an aircraft in flight
+60848,pilot_balloon,meteorological balloon used to observe air currents
+60849,pilot_bit,a small bit that drills a first hole to guide a larger drill
+60850,pilot_boat,a boat to carry pilots to and from large ships
+60851,pilot_burner pilot_light pilot,small auxiliary gas burner that provides a flame to ignite a larger gas burner
+60852,pilot_cloth,a thick blue cloth used to make overcoats and coats for sailors etc
+60853,pilot_engine,a locomotive that precedes a train to check the track
+60854,pilot_experiment,a preliminary experiment whose outcome can lead to a more extensive experiment
+60855,pilot_light pilot_lamp indicator_lamp,indicator consisting of a light to indicate whether power is on or a motor is in operation
+60856,pilot_program pilot_film pilot,a program exemplifying a contemplated series; intended to attract sponsors
+60857,pilot_project pilot_program,activity planned as a test or trial; "they funded a pilot project in six states"
+60858,pilot_whale black_whale common_blackfish blackfish Globicephala_melaena,small dark-colored whale of the Atlantic coast of the United States; the largest male acts as pilot or leader for the school
+60859,pilotfish Naucrates_ductor,small pelagic fish often accompanying sharks or mantas
+60860,pilothouse wheelhouse,an enclosed compartment from which a vessel can be navigated
+60861,piloting pilotage,the occupation of a pilot
+60862,pilus,hairlike structure especially on the surface of a cell or microorganism
+60863,pimento pimiento,fully ripened sweet red pepper; usually cooked
+60864,pimento_butter,butter blended with mashed pimento
+60865,pimozide,the most commonly used diphenylbutyl piperidine
+60866,pimp procurer panderer pander pandar fancy_man ponce,someone who procures customers for whores (in England they call a pimp a ponce)
+60867,pimpernel,any of several plants of the genus Anagallis
+60868,pimple hickey zit,a small inflamed elevation of the skin; a pustule or papule; common symptom in acne
+60869,pin,a piece of jewelry that is pinned onto the wearer's garment
+60870,pin,a small slender (often pointed) piece of wood or metal used to support or fasten or attach things
+60871,pin flag,flagpole used to mark the position of the hole on a golf green
+60872,pin peg stick,informal terms for the leg; "fever left him weak on his sticks"
+60873,pin pin_tumbler,cylindrical tumblers consisting of two parts that are held in place by springs; when they are aligned with a key the bolt can be thrown
+60874,pin-tailed_sandgrouse pin-tailed_grouse Pterocles_alchata,sandgrouse of Europe and Africa having elongated middle tail feathers
+60875,pin_bone,part of the sirloin between the flat bone and the porterhouse
+60876,pin_cherry Prunus_pensylvanica,small shrubby North American wild cherry with small bright red acid fruit
+60877,pin_curl,a curl of hair made by dampening a strand of hair and curling it and holding the curl with a clip or bobby pin
+60878,pin_oak swamp_oak Quercus_palustris,fast-growing medium to large pyramidal deciduous tree of northeastern United States and southeastern Canada having deeply pinnatifid leaves that turn bright red in autumn; thrives in damp soil
+60879,pin_wrench,a wrench that has a projecting pin that fits into a socket on the object to be turned
+60880,pina_cloth,a fine cloth made from pineapple fibers
+60881,pina_colada,a mixed drink made of pineapple juice and coconut cream and rum
+60882,pinata,plaything consisting of a container filled with toys and candy; suspended from a height for blindfolded children to break with sticks
+60883,pinball pinball_game,a game played on a sloping board; the object is to propel marbles against pins or into pockets
+60884,pinball_machine pin_table,game equipment on which pinball is played; "in Britain they call a pinball machine a pin table"
+60885,pince-nez,spectacles clipped to the nose by a spring
+60886,pincer pair_of_pincers tweezer pair_of_tweezers,a hand tool for holding consisting of a compound lever for grasping
+60887,pinch,a painful or straitened circumstance; "the pinch of the recession"
+60888,pinch,an injury resulting from getting some body part squeezed
+60889,pinch tweak,a squeeze with the fingers
+60890,pinch_bar,a lever with a pointed projection that serves as a fulcrum; used to roll heavy wheels
+60891,pinch_hitter,(baseball) a substitute for the regular batter
+60892,pinchbeck,an alloy of copper and zinc that is used in cheap jewelry to imitate gold
+60893,pinche Leontocebus_oedipus,South American tamarin with a tufted head
+60894,pinchgut,a niggardly person who starves himself (and others)
+60895,pincurl_clip,a variety of clip for holding pin curls
+60896,pincushion,a small stiff cushion into which pins are stuck ready for use
+60897,pindolol Visken,an oral beta blocker (trade name Visken) used in treating hypertension
+60898,pine,straight-grained durable and often resinous white to yellowish timber of any of numerous trees of the genus Pinus
+60899,pine pine_tree true_pine,a coniferous tree
+60900,pine-barren_sandwort longroot Arenaria_caroliniana,deep-rooted perennial of southeastern United States
+60901,pine-tar_rag,baseball equipment consisting of a rag soaked with pine tar; used on the handle of a baseball bat to give a batter a firm grip
+60902,pine_fern Anemia_adiantifolia,fern of Florida and West Indies and Central America with rhizome densely clad in grown hairs
+60903,pine_grosbeak Pinicola_enucleator,large grosbeak of coniferous forests of Old and New Worlds
+60904,pine_hyacinth Clematis_baldwinii Viorna_baldwinii,erect clematis of Florida having pink to purple flowers
+60905,pine_knot,a joint of pine wood used for fuel
+60906,pine_leaf_aphid Pineus_pinifoliae,a variety of adelgid
+60907,pine_marten Martes_martes,dark brown marten of northern Eurasian coniferous forests
+60908,pine_nut pignolia pinon_nut,edible seed of any of several nut pines especially some pinons of southwestern North America
+60909,pine_sawyer,large beetle whose larvae bore holes in pine trees
+60910,pine_siskin pine_finch Spinus_pinus,small finch of North American coniferous forests
+60911,pine_snake,any of several bull snakes of eastern and southeastern United States found chiefly in pine woods; now threatened
+60912,pine_spittlebug,North American insect that attacks pines
+60913,pine_tar,a dark viscous substance obtained from the destructive distillation of pine wood
+60914,pine_vole pine_mouse Pitymys_pinetorum,short-tailed glossy-furred burrowing vole of the eastern United States
+60915,pineal_gland pineal_body epiphysis_cerebri epiphysis,a small endocrine gland in the brain; situated beneath the back part of the corpus callosum; secretes melatonin
+60916,pinealoma,tumor of the pineal gland
+60917,pineapple ananas,large sweet fleshy tropical fruit with a terminal tuft of stiff leaves; widely cultivated
+60918,pineapple pineapple_plant Ananas_comosus,a tropical American plant bearing a large fleshy edible fruit with a terminal tuft of stiff leaves; widely cultivated in the tropics
+60919,pineapple_juice,the juice of pineapples (usually bottled or canned)
+60920,pineapple_weed rayless_chamomile Matricaria_matricarioides,annual aromatic weed of Pacific coastal areas (United States and northeastern Asia) having bristle-pointed leaves and rayless yellow flowers
+60921,pinecone,the seed-producing cone of a pine tree
+60922,pinesap false_beachdrops Monotropa_hypopithys,fleshy tawny or reddish saprophytic herb resembling the Indian pipe and growing in woodland humus of eastern North America; in some classifications placed in a separate genus Hypopitys
+60923,pinetum,an area planted with pine trees or related conifers
+60924,pinfish sailor's-choice squirrelfish Lagodon_rhomboides,similar to sea bream; small spiny-finned fish found in bays along the southeastern coast of the United States
+60925,pinfold,a pen where stray animals are confined
+60926,ping,a sharp high-pitched resonant sound (as of a sonar echo or a bullet striking metal)
+60927,ping-pong_ball,light hollow ball used in playing table tennis
+60928,pinger,a pulse generator used for echo sounding in sonar
+60929,pinguecula,a slightly elevated elastic tissue deposit in the conjunctiva that may extend to the cornea but does not cover it
+60930,pinhead,the head of a pin
+60931,pinhole,a small puncture that might have been made by a pin
+60932,pining,a feeling of deep longing
+60933,pinion,a gear with a small number of teeth designed to mesh with a larger wheel or rack
+60934,pinite,grey or green or brown mineral similar to mica and containing aluminum and potassium sulphates
+60935,pink,a light shade of red
+60936,pink garden_pink,any of various flowers of plants of the genus Dianthus cultivated for their fragrant flowers
+60937,pink-and-white_everlasting pink_paper_daisy Acroclinium_roseum,flower of southwestern Australia having bright pink daisylike papery flowers; grown for drying
+60938,pink_bollworm Gelechia_gossypiella,larvae of a gelechiid moth introduced from Asia; feeds on the seeds of cotton bolls
+60939,pink_calla Zantedeschia_rehmanii,calla having a rose-colored spathe
+60940,pink_cockatoo Kakatoe_leadbeateri,white Australian cockatoo with roseate tinged plumage
+60941,pink_disease,serious bark disease of many tropical crop trees (coffee, citrus, rubber); branches have a covering of pink hyphae
+60942,pink_disease_fungus Corticium_salmonicolor,fungus causing pink disease in citrus and coffee and rubber trees etc
+60943,pink_elephants,any visual hallucination arising from heavy drinking
+60944,pink_fivecorner Styphelia_triflora,heathlike shrub of southwestern Australia grown for its sharply scented foliage and pink flowers followed by pentagonal fruit
+60945,pink_lady,a cocktail made of gin and brandy with lemon juice and grenadine shaken with an egg white and ice
+60946,pink_shower pink_shower_tree horse_cassia Cassia_grandis,tropical American semi-evergreen tree having erect racemes of pink or rose-colored flowers; used as an ornamental
+60947,pinkness,the quality of being pink
+60948,pinko pink,a person with mildly leftist political views
+60949,pinkroot,a fungal disease of onions
+60950,pinna pinnule,division of a usually pinnately divided leaf
+60951,pinnacle,a lofty peak
+60952,pinnacle,(architecture) a slender upright spire at the top of a buttress of tower
+60953,pinnate_leaf,a leaf resembling a feather; having the leaflets on each side of a common axis
+60954,pinner,a woman's cap with two long flaps pinned on
+60955,pinning,a mutual promise of a couple not to date anyone else; on college campuses it was once signaled by the giving of a fraternity pin
+60956,pinniped_mammal pinniped pinnatiped,aquatic carnivorous mammal having a streamlined body specialized for swimming with limbs modified as flippers
+60957,pinochle pinocle penuchle bezique,a card game played with a pack of forty-eight cards (two of each suit for high cards); play resembles whist
+60958,pinocytosis,process by which certain cells can engulf and incorporate droplets of fluid
+60959,pinole,meal made of finely ground corn mixed with sugar and spices
+60960,pinon pinyon,any of several low-growing pines of western North America
+60961,pinon_pine Mexican_nut_pine Pinus_cembroides,a small two-needled or three-needled pinon of Mexico and southern Texas
+60962,pinpoint,a very brief moment; "they were strangers sharing a pinpoint of time together"
+60963,pinpoint,the sharp point of a pin
+60964,pinprick,a minor annoyance
+60965,pinprick,small puncture (as if made by a pin)
+60966,pins_and_needles,a sharp tingling sensation from lack of circulation
+60967,pinscher,any of three breeds of dogs whose ears and tail are usually cropped
+60968,pinstripe,a suit made from a fabric with very thin stripes
+60969,pinstripe,a fabric with very thin stripes
+60970,pinstripe,a very thin stripe (especially a white stripe on a dark fabric)
+60971,pint,a British imperial capacity measure (liquid or dry) equal to 4 gills or 568.26 cubic centimeters
+60972,pint,a United States liquid unit equal to 16 fluid ounces; two pints equal one quart
+60973,pint dry_pint,a United States dry unit equal to 0.5 quart or 33.6 cubic inches
+60974,pintail pin-tailed_duck Anas_acuta,long-necked river duck of the Old and New Worlds having elongated central tail feathers
+60975,pintle,a pin or bolt forming the pivot of a hinge
+60976,pinto,a spotted or calico horse or pony
+60977,pinto_bean,mottled or spotted bean of southwestern United States; usually dried
+60978,pinwheel,a wheel that has numerous pins that are set at right angles to its rim; "he spun the pinwheel and it stopped with the pointer on `Go'"
+60979,pinwheel Aeonium_haworthii,perennial subshrub of Tenerife having leaves in rosettes resembling pinwheels
+60980,pinwheel pinwheel_wind_collector,a toy consisting of vanes of colored paper or plastic that is pinned to a stick and spins when it is pointed into the wind
+60981,pinwheel_roll,pinwheel-shaped rolls spread with cinnamon and sugar and filled with e.g. jam before baking
+60982,pinworm threadworm Enterobius_vermicularis,small threadlike worm infesting human intestines and rectum especially in children
+60983,pion pi-meson,a meson involved in holding the nucleus together; produced as the result of high-energy particle collision
+60984,pioneer,one of the first colonists or settlers in a new territory; "they went west as pioneers with only the possessions they could carry with them"
+60985,pioneer innovator trailblazer groundbreaker,someone who helps to open up a new line of research or technology or art
+60986,pip,a disease of poultry
+60987,pip,a minor nonspecific ailment
+60988,pip,a small hard seed found in some fruits
+60989,pip-squeak squirt small_fry,someone who is small and insignificant
+60990,pipage,a fee charged for the use of pipes
+60991,pipal pipal_tree pipul peepul sacred_fig bo_tree Ficus_religiosa,fig tree of India noted for great size and longevity; lacks the prop roots of the banyan; regarded as sacred by Buddhists
+60992,pipe,a tubular wind instrument
+60993,pipe pipage piping,a long tube made of metal or plastic that is used to carry water or oil or gas etc.
+60994,pipe tobacco_pipe,a tube with a small bowl at one end; used for smoking tobacco
+60995,pipe tube,a hollow cylindrical shape
+60996,pipe_bomb,a small homemade bomb usually contained in a metal pipe
+60997,pipe_cleaner,cleaning implement consisting of a flexible tufted wire that is used to clean a pipe stem
+60998,pipe_cutter,a hand tool for cutting pipe
+60999,pipe_dream dream,a fantastic but vain hope (from fantasies induced by the opium pipe); "I have this pipe dream about being emperor of the universe"
+61000,pipe_major,the chief piper in a band of bagpipes
+61001,pipe_rack,a rack for holding a smoker's pipes
+61002,pipe_smoker,a smoker who uses a pipe
+61003,pipe_vise pipe_clamp,a clamp for holding pipe that is to be cut or threaded
+61004,pipe_wrench tube_wrench,adjustable wrench for gripping and turning a pipe; has two serrated jaws that are adjusted to grip the pipe
+61005,pipeclay terra_alba,fine white clay used in making tobacco pipes and pottery and in whitening leather
+61006,pipefish needlefish,fish with long tubular snout and slim body covered with bony plates
+61007,pipefitting pipe_fitting,fitting consisting of threaded pieces of pipe for joining pipes together
+61008,pipeful,the quantity of tobacco that can be smoked in a pipe at one time
+61009,pipeline line,a pipe used to transport liquids or gases; "a pipeline runs from the wells to the seaport"
+61010,pipeline_company,a company that operates oil pipelines for the oil industry
+61011,piper bagpiper,someone who plays the bagpipe
+61012,piperacillin Pipracil,a synthetic type of penicillin antibiotic (trade name Pipracil) used for moderate to severe infections
+61013,piperazine,vermifuge used to treat infestations by roundworms or pinworms
+61014,piperin piperine,derived from pepper (especially black pepper); source of the hotness of black and white pepper
+61015,piperocaine piperocaine_hydrochloride Metycaine,a compound used in the form of its hydrochloride as a local or spinal anesthetic
+61016,pipestem_clematis Clematis_lasiantha,clematis of California
+61017,pipet pipette,measuring instrument consisting of a graduated glass tube used to measure or transfer precise volumes of a liquid by drawing the liquid up into the tube
+61018,pipewort Eriocaulon_aquaticum,aquatic perennial of North America and Ireland and Hebrides having translucent green leaves in a basal spiral and dense buttonlike racemes of minute white flowers
+61019,piping,a thin strip of covered cord used to edge hems
+61020,piping,playing a pipe or the bagpipes
+61021,piping_crow piping_crow-shrike Gymnorhina_tibicen,crow-sized black-and-white bird; a good mimic often caged
+61022,piping_guan,a kind of guan
+61023,piping_plover Charadrius_melodus,small plover of eastern North America
+61024,pipistrelle pipistrel Pipistrellus_pipistrellus,small European brown bat
+61025,pipit titlark lark,a songbird that lives mainly on the ground in open country; has streaky brown plumage
+61026,pipsissewa prince's_pine,any of several plants of the genus Chimaphila
+61027,piquancy piquance piquantness,the quality of being agreeably stimulating or mentally exciting
+61028,pique,tightly woven fabric with raised cords
+61029,pique temper irritation,a sudden outburst of anger; "his temper sparked like damp firewood"
+61030,piquet,a card game for two players using a reduced pack of 32 cards
+61031,piracy buccaneering,hijacking on the high seas or in similar contexts; taking a ship or plane away from the control of those who are legally entitled to it; "air piracy"
+61032,piranha pirana caribe,small voraciously carnivorous freshwater fishes of South America that attack and destroy living animals
+61033,pirate buccaneer sea_robber sea_rover,someone who robs at sea or plunders the land from the sea without having a commission from any sovereign nation
+61034,pirate pirate_ship,a ship that is manned by pirates
+61035,pirogi piroshki pirozhki,small fruit or meat turnover baked or fried
+61036,piroplasm,minute parasite of red blood cells of mammals transmitted by a tick and causing diseases of domestic animals
+61037,pirouette,(ballet) a rapid spin of the body (especially on the toes as in ballet)
+61038,piroxicam Feldene,a nonsteroidal anti-inflammatory drug (trade name Feldene) used to treat arthritis and other inflammatory conditions
+61039,pis_aller last_resort,an expedient adopted only in desperation; "`pis aller' is French for `worst going'"
+61040,pisang_wax,a wax obtained from the leaves of a plantain
+61041,pisanosaur pisanosaurus,primitive dinosaur found in Argentina
+61042,pisha_paysha,(Yiddish) a card game for two players one of whom is usually a child; the deck is place face down with one card face upward; players draw from the deck alternately hoping to build up or down from the open card; the player with the fewest cards when the deck is exhausted is the winner
+61043,pisiform pisiform_bone os_pisiforme,a small wrist bone that articulates only with the triquetral
+61044,piss-up,vulgar expression for a bout of heavy drinking
+61045,pisser,a very disagreeable difficulty
+61046,pisser urinator,a person who urinates
+61047,pistachio Pistacia_vera pistachio_tree,small tree of southern Europe and Asia Minor bearing small hard-shelled nuts
+61048,pistachio pistachio_nut,nut of Mediterranean trees having an edible green kernel
+61049,piste,a flat rectangular area for fencing bouts
+61050,piste,a ski run densely packed with snow
+61051,pistia water_lettuce water_cabbage Pistia_stratiotes Pistia_stratoites,pantropical floating plant forming a rosette of wedge-shaped leaves; a widespread weed in rivers and lakes
+61052,pistil,the female ovule-bearing part of a flower composed of ovary and style and stigma
+61053,pistillode,a sterile vestigial pistil remaining in a staminate flower
+61054,pistol handgun side_arm shooting_iron,a firearm that is held and fired with one hand
+61055,pistol_grip,a handle (as of a gun or saw) shaped like the butt of a pistol
+61056,pistoleer,someone armed with a pistol (especially a soldier so armed)
+61057,piston plunger,mechanical device that has a plunging or thrusting motion
+61058,piston_ring,seal consisting of a split metal ring that seals the gap between a piston and the cylinder wall
+61059,piston_rod,connecting rod that moves or is moved by a piston
+61060,pit,an enclosure in which animals are made to fight
+61061,pit,(commodity exchange) the part of the floor of a commodity exchange where trading in a particular commodity is carried on
+61062,pit,(auto racing) an area at the side of a racetrack where the race cars are serviced and refueled
+61063,pit cavity,a sizeable hole (usually in the ground); "they dug a pit to bury the body"
+61064,pit fossa,a concavity in a surface (especially an anatomical depression)
+61065,pit pitfall,a trap in the form of a concealed hole
+61066,pit quarry stone_pit,a surface excavation for extracting stone or slate; "a British term for `quarry' is `stone pit'"
+61067,pit_of_the_stomach epigastric_fossa,a slight depression in the midline just below the sternum (where a blow can affect the solar plexus)
+61068,pit_stop,a stop during an automobile trip for rest and refreshment
+61069,pit_stop,a brief stop at a pit during an automobile race to take on fuel or service the car
+61070,pit_viper,New World vipers with hollow fangs and a heat-sensitive pit on each side of the head
+61071,pita pocket_bread,usually small round bread that can open into a pocket for filling
+61072,pitahaya,highly colored edible fruit of pitahaya cactus having bright red juice; often as large as a peach
+61073,pitahaya_cactus pitahaya Acanthocereus_tetragonus Acanthocereus_pentagonus,cactus of the southwestern United States and northern Mexico having edible juicy fruit
+61074,pitch,a vendor's position (especially on the sidewalk); "he was employed to see that his paper's news pitches were not trespassed upon by rival vendors"
+61075,pitch,the property of sound that varies with variation in the frequency of vibration
+61076,pitch,the action or manner of throwing something; "his pitch fell short and his hat landed on the floor"
+61077,pitch auction_pitch,an all-fours game in which the first card led is a trump
+61078,pitch delivery,(baseball) the act of throwing a baseball by a pitcher to a batter
+61079,pitch pitch_shot,a high approach shot in golf
+61080,pitch rake slant,degree of deviation from a horizontal plane; "the roof had a steep pitch"
+61081,pitch soccer_field,a sports field with predetermined dimensions for playing soccer
+61082,pitch tar,any of various dark heavy viscid substances obtained as a residue
+61083,pitch_apple strangler_fig Clusia_rosea Clusia_major,a common tropical American clusia having solitary white or rose flowers
+61084,pitch_pine northern_pitch_pine Pinus_rigida,large three-needled pine of the eastern United States and southeastern Canada; closely related to the pond pine
+61085,pitch_pipe,a small pipe sounding a tone of standard frequency; used to establish the starting pitch for unaccompanied singing
+61086,pitched_battle,a fierce battle fought in close combat between troops in predetermined positions at a chosen time and place
+61087,pitcher,(botany) a leaf that that is modified in such a way as to resemble a pitcher or ewer
+61088,pitcher ewer,an open vessel with a handle and a spout for pouring
+61089,pitcher hurler twirler,(baseball) the person who does the pitching; "our pitcher has a sore arm"
+61090,pitcher mound,the position on a baseball team of the player who throws the ball for a batter to try to hit; "he has played every position except pitcher"; "they have a southpaw on the mound"
+61091,pitcher pitcherful,the quantity contained in a pitcher
+61092,pitcher_plant,any of several insectivorous herbs of the order Sarraceniales
+61093,pitcher_sage Lepechinia_calycina Sphacele_calycina,California plant with woolly stems and leaves and large white flowers
+61094,pitcher_sage Salvia_spathacea,California erect and sparsely branched perennial
+61095,pitchfork,a long-handled hand tool with sharp widely spaced prongs for lifting and pitching hay
+61096,pitching,(baseball) playing the position of pitcher on a baseball team
+61097,pitching_change,replacing a pitcher in baseball
+61098,pitching_coach,an assistant baseball coach in charge of pitchers
+61099,pitching_wedge,a wedge used to loft the golf ball over obstacles
+61100,pitchman,an aggressive salesman who uses a fast line of talk to sell something
+61101,pitchstone,dark acid granitic glass
+61102,pitfall booby_trap,an unforeseen or unexpected or surprising difficulty
+61103,pith,soft spongelike central cylinder of the stems of most flowering plants
+61104,pith_hat pith_helmet sun_helmet topee topi,a lightweight hat worn in tropical countries for protection from the sun
+61105,pithead,the entrance to a coal mine
+61106,pitilessness ruthlessness,mercilessness characterized by a lack of pity
+61107,piton,a metal spike with a hole for a rope; mountaineers drive it into ice or rock to use as a hold
+61108,pitprop sprag,a wooden prop used to support the roof of a mine
+61109,pitsaw,a large two-handed saw formerly used to cut logs into planks; one man stood above the log and the other in a pit below
+61110,pitta,any bird of the genus Pitta; brilliantly colored chiefly terrestrial birds with short wings and tail and stout bills
+61111,pittance,an inadequate payment; "they work all day for a mere pittance"
+61112,pitter-patter,a series of rapid tapping sounds; "she missed the pitter-patter of little feet around the house"
+61113,pitting roughness indentation,the formation of small pits in a surface as a consequence of corrosion
+61114,pituitary pituitary_gland pituitary_body hypophysis,the master gland of the endocrine system; located at the base of the brain
+61115,pituitary_dwarf hypophysial_dwarf Levi-Lorrain_dwarf,a dwarf whose condition is caused by a deficiency of growth hormones, rather than by genetic factors (as in the case of the achondroplastic dwarf)
+61116,pity shame,an unfortunate development; "it's a pity he couldn't do it"
+61117,pityriasis,any of several skin disorders characterized by shedding dry flakes of skin
+61118,pityriasis_alba,common form of pityriasis (usually in children or young adults) characterized by round patches of depigmentation
+61119,pityriasis_rosea,pityriasis in which an itchy rash develops over the trunk and extremities
+61120,pivot,the act of turning on (or as if on) a pivot; "the golfer went to the driving range to practice his pivot"
+61121,pivot pin,axis consisting of a short shaft that supports something that turns
+61122,pivot pivot_man,the person in a rank around whom the others wheel and maneuver
+61123,pivot_joint rotary_joint rotatory_joint articulatio_trochoidea,a freely moving joint in which movement is limited to rotation; "the articulation of the radius and ulna in the arm is a pivot joint"
+61124,pivot_shot,a one-handed basketball shot made while whirling on the pivot foot
+61125,pivoting_window,a window that opens by pivoting either horizontally or vertically
+61126,pixel pel picture_element,(computer science) the smallest discrete component of an image or picture on a CRT screen (usually a colored dot); "the greater the number of pixels per inch the greater the resolution"
+61127,pizza pizza_pie,Italian open pie made of thin bread dough spread with a spiced mixture of e.g. tomato sauce and cheese
+61128,pizzeria pizza_shop pizza_parlor,a shop where pizzas are made and sold
+61129,pizzicato,a note or passage that is played pizzicato
+61130,placation conciliation propitiation,the act of placating and overcoming distrust and animosity
+61131,place,proper or appropriate position or location; "a woman's place is no longer in the kitchen"
+61132,place,a general vicinity; "He comes from a place near Chicago"
+61133,place,the passage that is being read; "he lost his place on the page"
+61134,place,an abstract mental location; "he has a special place in my thoughts"; "a place in my heart"; "a political system with no place for the less prominent groups"
+61135,place position,an item on a list or in a sequence; "in the second place"; "moved from third to fifth position"
+61136,place property,any area set aside for a particular purpose; "who owns this place?"; "the president was concerned about the property across from the White House"
+61137,place shoes,a particular situation; "If you were in my place what would you do?"
+61138,place station,proper or designated social situation; "he overstepped his place"; "the responsibilities of a man in his station"; "married above her station"
+61139,place-kicker placekicker,(football) a kicker who makes a place kick for a goal
+61140,place_bet,a bet that a horse will finish a race no worse than second
+61141,place_kick place-kicking,(sports) a kick in which the ball is placed on the ground before kicking
+61142,place_mat,a mat serving as table linen for an individual place setting
+61143,place_name toponym,the name by which a geographical place is known
+61144,place_of_business business_establishment,an establishment (a factory or an assembly plant or retail store or warehouse etc.) where business is conducted, goods are made or stored or processed or where services are rendered
+61145,place_of_worship house_of_prayer house_of_God house_of_worship,any building where congregations gather for prayer
+61146,place_setting setting,a table service for one person; "a place setting of sterling flatware"
+61147,placebo,an innocuous or inert medication; given as a pacifier or to the control group in experiments on the efficacy of a drug
+61148,placebo,(Roman Catholic Church) vespers of the office for the dead
+61149,placebo_effect,any effect that seems to be a consequence of administering a placebo; the change is usually beneficial and is assumed result from the person's faith in the treatment or preconceptions about what the experimental drug was supposed to do; pharmacologists were the first to talk about placebo effects but now the idea has been generalized to many situations having nothing to do with drugs
+61150,placeholder,a symbol in a logical or mathematical expression that can be replaced by the name of any member of specified set
+61151,placeman placeseeker,a disparaging term for an appointee
+61152,placement,contact established between applicants and prospective employees; "the agency provided placement services"
+61153,placement arrangement,the spatial property of the way in which something is placed; "the arrangement of the furniture"; "the placement of the chairs"
+61154,placement location locating position positioning emplacement,the act of putting something in a certain place
+61155,placement_office placement_center,an office that finds suitable employment for applicants
+61156,placenta,that part of the ovary of a flowering plant where the ovules form
+61157,placenta,the vascular structure in the uterus of most mammals providing oxygen and nutrients for and transferring wastes from the developing fetus
+61158,placenta_previa,pregnancy in which the placenta is implanted in the lower part of the uterus (instead of the upper part); can cause bleeding late in pregnancy; delivery by cesarean section may be necessary
+61159,placental placental_mammal eutherian eutherian_mammal,mammals having a placenta; all mammals except monotremes and marsupials
+61160,placentation,the formation of the placenta in the uterus
+61161,placentation,arrangement of the ovules in the placenta and of the placentas in the ovary
+61162,placer,an alluvial deposit that contains particles of some valuable mineral
+61163,placer_miner,a miner who extracts minerals from a placer by washing or dredging
+61164,placer_mining,mining valuable minerals from a placer by washing or dredging
+61165,placidity placidness,a feeling of calmness; a quiet and undisturbed feeling
+61166,placket,a piece of cloth sewn under an opening
+61167,placoderm,fish-like vertebrate with bony plates on head and upper body; dominant in seas and rivers during the Devonian; considered the earliest vertebrate with jaws
+61168,plagal_cadence amen_cadence,a cadence (frequently ending church music) in which the chord of the subdominant precedes the chord of the tonic
+61169,plage,the beach at a seaside resort
+61170,plagiarism,a piece of writing that has been copied from someone else and is presented as being your own work
+61171,plagiarism plagiarization plagiarisation piracy,the act of plagiarizing; taking someone's words or ideas as if they were your own
+61172,plagiarist plagiarizer plagiariser literary_pirate pirate,someone who uses another person's words or ideas as if they were his own
+61173,plagiocephaly,congenital malformation of the skull in which the main axis of the skull is oblique
+61174,plagioclase oligoclase,any of a series of triclinic feldspars that form rocks
+61175,plague,any large scale calamity (especially when thought to be sent by God)
+61176,plague,an annoyance; "those children are a damn plague"
+61177,plague pestilence pest,any epidemic disease with a high death rate
+61178,plague pestilence pest pestis,a serious (sometimes fatal) infection of rodents caused by Yersinia pestis and accidentally transmitted to humans by the bite of a flea that has bitten an infected animal
+61179,plague_spot,a spot on the skin characteristic of the plague
+61180,plaice,flesh of large European flatfish
+61181,plaice Pleuronectes_platessa,large European food fish
+61182,plain field champaign,extensive tract of level open land; "they emerged from the woods onto a vast open plain"; "he longed for the fields of his youth"
+61183,plain_flour,flour that does not contain a raising agent
+61184,plain_sailing clear_sailing easy_going,easy unobstructed progress; "after we solved that problem the rest was plain sailing"
+61185,plain_turkey Choriotis_australis,popular Australian game bird
+61186,plain_wanderer Pedionomus_torquatus,small Australian bird related to the button quail; classified as wading bird but inhabits plains
+61187,plain_weave taffeta_weave,a basic style of weave in which the weft and warp threads intertwine alternately to produce a checkerboard effect
+61188,plainclothesman,a detective who wears civilian clothes on duty
+61189,plainness,the state of being unmixed with other material; "the plainness of vanilla ice cream"
+61190,plainness,the appearance of being plain and unpretentious
+61191,plains_lemon_monarda Monarda_pectinata,annual of southern United States
+61192,plains_pocket_gopher Geomys_bursarius,gopher of chiefly grasslands of central North America
+61193,plains_pocket_mouse Perognathus_flavescens,small rodent of open areas of United States plains states
+61194,plains_spadefoot Scaphiopus_bombifrons,this spadefoot toad lives in plains and hills and river bottoms in areas of low rainfall east of the Rocky Mountains
+61195,plainsman,an inhabitant of a plains region (especially the Great Plains of North America)
+61196,plainsong plainchant,(Roman Catholic Church) a liturgical chant consisting of a single, unaccompanied melodic line
+61197,plaint,(United Kingdom) a written statement of the grounds of complaint made to court of law asking for the grievance to be redressed
+61198,plaintiff complainant,a person who brings an action in a court of law
+61199,plaintiveness,expressing sorrowfulness
+61200,plaiter,someone who plaits (hair or fabric etc.)
+61201,plan architectural_plan,scale drawing of a structure; "the plans for City Hall were on file"
+61202,plan program programme,a series of steps to be carried out or goals to be accomplished; "they drew up a six-step plan"; "they discussed plans for a new bond issue"
+61203,plan_of_action,a plan for actively doing something
+61204,planarian planaria,free-swimming mostly freshwater flatworms; popular in laboratory studies for the ability to regenerate lost parts
+61205,planation,the process of erosion whereby a level surface is produced
+61206,planchet coin_blank,a flat metal disk ready for stamping as a coin
+61207,planchette,a triangular board supported on casters; when lightly touched with the fingertips it is supposed to spell out supernatural (or unconscious) messages
+61208,plane,a level of existence or development; "he lived on a worldly plane"
+61209,plane carpenter's_plane woodworking_plane,a carpenter's hand tool with an adjustable blade for smoothing or shaping wood; "the cabinetmaker used a plane for the finish work"
+61210,plane planer planing_machine,a power tool for smoothing or shaping wood
+61211,plane sheet,(mathematics) an unbounded two-dimensional shape; "we will refer to the plane of the graph as the X-Y plane"; "any line joining two points on a plane lies wholly on that plane"
+61212,plane_angle,an angle formed by two straight lines (in the same plane)
+61213,plane_figure two-dimensional_figure,a two-dimensional shape
+61214,plane_geometry,the geometry of 2-dimensional figures
+61215,plane_seat,a seat on a commercial airliner
+61216,plane_table,surveying instrument consisting of a drawing board and a ruler that are mounted on a tripod; used to sight and map topographical details
+61217,plane_ticket airplane_ticket,a ticket good for a trip on an airplane
+61218,plane_tree sycamore platan,any of several trees of the genus Platanus having thin pale bark that scales off in small plates and lobed leaves and ball-shaped heads of fruits
+61219,planet,any celestial body (other than comets or satellites) that revolves around a star
+61220,planet major_planet,(astronomy) any of the nine large celestial bodies in the solar system that revolve around the sun and shine by reflected light; Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune, and Pluto in order of their proximity to the sun; viewed from the constellation Hercules, all the planets rotate around the sun in a counterclockwise direction
+61221,planetarium,a building housing an instrument for projecting the positions of the planets onto a domed ceiling
+61222,planetarium,an optical device for projecting images of celestial bodies and other astronomical phenomena onto the inner surface of a hemispherical dome
+61223,planetarium,an apparatus or model for representing the solar systems
+61224,planetary_gear epicyclic_gear planet_wheel planet_gear,an outer gear that revolves about a central sun gear of an epicyclic train
+61225,planetary_nebula,a nebula that was once thought to be a star with its planets but is now thought to be a very hot star surrounded by an expanding envelope of ionized gases that emit a fluorescent glow because of intense radiation from the star
+61226,planetesimal,one of many small solid celestial bodies thought to have existed at an early stage in the development of the solar system
+61227,planetesimal_hypothesis,(cosmology) the theory that the solar system was formed by the gravitational accumulation of planetesimals
+61228,plangency resonance reverberance ringing sonorousness sonority vibrancy,having the character of a loud deep sound; the quality of being resonant
+61229,plank,an endorsed policy in the platform of a political party
+61230,plank-bed,a bed of boards (without a mattress)
+61231,planking,planks collectively; a quantity of planks
+61232,planking,(nautical) a covering or flooring constructed of planks (as on a ship)
+61233,planking,the work of covering an area with planks
+61234,plankton,the aggregate of small plant and animal organisms that float or drift in great numbers in fresh or salt water
+61235,planktonic_algae,unicellular algae
+61236,planned_community,a residential district that is planned for a certain class of residents
+61237,planner,a notebook for recording appointments and things to be done, etc.
+61238,planner contriver deviser,a person who makes plans
+61239,planning,an act of formulating a program for a definite course of action; "the planning was more fun than the trip itself"
+61240,planning,the act or process of drawing up plans or layouts for some project or enterprise
+61241,planning preparation provision,the cognitive process of thinking about what you will do in the event of something happening; "his planning for retirement was hindered by several uncertainties"
+61242,planning_commission,a commission delegated to propose plans for future activities and developments
+61243,planographic_printing planography,the process of printing from a surface on which the printing areas are not raised but are ink-receptive (as opposed to ink repellent)
+61244,plant,an actor situated in the audience whose acting is rehearsed but seems spontaneous to the audience
+61245,plant,something planted secretly for discovery by another; "the police used a plant to trick the thieves"; "he claimed that the evidence against him was a plant"
+61246,plant flora plant_life,(botany) a living organism lacking the power of locomotion
+61247,plant works industrial_plant,buildings for carrying on industrial labor; "they built a large plant to manufacture automobiles"
+61248,plant_cell,a cell that is a structural and functional unit of a plant
+61249,plant_closing,act of shutting down operation of a plant
+61250,plant_department building_department,the division of a business responsible for building and maintaining the physical plant
+61251,plant_disease,a disease that affects plants
+61252,plant_family,a family of plants
+61253,plant_fiber plant_fibre,fiber derived from plants
+61254,plant_genus,a genus of plants
+61255,plant_hopper planthopper,related to the leafhoppers and spittlebugs but rarely damages cultivated plants
+61256,plant_louse louse,any of several small insects especially aphids that feed by sucking the juices from plants
+61257,plant_material plant_substance,material derived from plants
+61258,plant_order,the order of plants
+61259,plant_organ,a functional and structural unit of a plant or fungus
+61260,plant_part plant_structure,any part of a plant or fungus
+61261,plant_process enation,a natural projection or outgrowth from a plant body or organ
+61262,plant_product,a product made from plant material
+61263,plant_tissue,the tissue of a plant
+61264,plant_toxin phytotoxin,any substance produced by plants that is similar in its properties to extracellular bacterial toxin
+61265,plant_virus,a plant pathogen that is a virus consisting of a single strand of RNA
+61266,plantain,any of numerous plants of the genus Plantago; mostly small roadside or dooryard weeds with elliptic leaves and small spikes of very small flowers; seeds of some used medicinally
+61267,plantain,starchy banana-like fruit; eaten (always cooked) as a staple vegetable throughout the tropics
+61268,plantain plantain_tree Musa_paradisiaca,a banana tree bearing hanging clusters of edible angular greenish starchy fruits; tropics and subtropics
+61269,plantain-leaved_pussytoes,a variety of pussytoes
+61270,plantain_lily day_lily,any of numerous perennials having mounds of sumptuous broad ribbed leaves and clusters of white, blue, or lilac flowers; used as ground cover
+61271,plantar_reflex,flexion of the toes when the sole of the foot is stroked firmly on the outer side from the heel to the front in persons over the age of 2 years; under 2 years the results should be extension of the toes (Babinski reflex)
+61272,plantar_wart,a wart occurring on the sole of the foot; "pressure causes plantar warts to develop a painful callus around the soft center"
+61273,plantation,an estate where cash crops are grown on a large scale (especially in tropical areas)
+61274,planter,a worker who puts or sets seeds or seedlings into the ground
+61275,planter,a decorative pot for house plants
+61276,planter plantation_owner,the owner or manager of a plantation
+61277,planter's_punch,a cocktail made of rum and lime or lemon juice with sugar and sometimes bitters
+61278,plantigrade_mammal plantigrade,an animal that walks with the entire sole of the foot touching the ground as e.g. bears and human beings
+61279,planting,a collection of plants (trees or shrubs or flowers) in a particular area; "the landscape architect suggested a small planting in the northwest corner"
+61280,planting,the act of fixing firmly in place; "he ordered the planting of policemen outside every doorway"
+61281,planting,putting seeds or young plants in the ground to grow; "the planting of corn is hard work"
+61282,plantlet,a young plant or a small plant
+61283,plantlike_flagellate,unicellular organisms having many characteristics of typical algae
+61284,planula,the flat ciliated free-swimming larva of hydrozoan coelenterates
+61285,plaque,(pathology) a small abnormal patch on or inside the body
+61286,plasma,a green slightly translucent variety of chalcedony used as a gemstone
+61287,plasma,(physical chemistry) a fourth state of matter distinct from solid or liquid or gas and present in stars and fusion reactors; a gas becomes a plasma when it is heated until the atoms lose all their electrons, leaving a highly electrified collection of nuclei and free electrons; "particles in space exist in the form of a plasma"
+61288,plasma plasm blood_plasma,the colorless watery fluid of the blood and lymph that contains no cells, but in which the blood cells (erythrocytes, leukocytes, and thrombocytes) are suspended
+61289,plasma_cell plasmacyte,a cell that develops from a B lymphocyte in reaction to a specific antigen; found in bone marrow and sometimes in the blood
+61290,plasma_physics,the branch of physics concerned with matter in its plasma phase
+61291,plasma_protein,any of the proteins in blood plasma
+61292,plasma_thromboplastin_antecedent factor_XI,coagulation factor whose deficiency results in a hemorrhagic tendency
+61293,plasmablast,the precursor of a plasma cell
+61294,plasmacytoma,neoplasm of plasma cells (usually in bone marrow)
+61295,plasmapheresis,plasma is separated from whole blood and the rest is returned to the donor
+61296,plasmid plasmid_DNA,a small cellular inclusion consisting of a ring of DNA that is not in a chromosome but is capable of autonomous replication
+61297,plasmin fibrinolysin,an enzyme that dissolves the fibrin of blood clots
+61298,plasminogen,an inactive form of plasmin that occurs in plasma and is converted to plasmin by organic solvents
+61299,plasminogen_activator urokinase,protease produced in the kidney that converts plasminogen to plasmin and so initiates fibrinolysis
+61300,plasmodium,multinucleate sheet of cytoplasm characteristic of some stages of such organisms as slime molds
+61301,plasmodium Plasmodium_vivax malaria_parasite,parasitic protozoan of the genus Plasmodium that causes malaria in humans
+61302,plaster,a mixture of lime or gypsum with sand and water; hardens into a smooth solid; used to cover walls and ceilings
+61303,plaster adhesive_plaster sticking_plaster,adhesive tape used in dressing wounds
+61304,plaster plasterwork,a surface of hardened plaster (as on a wall or ceiling); "there were cracks in the plaster"
+61305,plaster_of_Paris plaster,any of several gypsum cements; a white powder (a form of calcium sulphate) that forms a paste when mixed with water and hardens into a solid; used in making molds and sculptures and casts for broken limbs
+61306,plaster_saint,a person (considered to be) without human failings; "he's no plaster saint"
+61307,plasterboard gypsum_board,wallboard with a gypsum plaster core bonded to layers of paper or fiberboard; used instead of plaster or wallboard to make interior walls
+61308,plasterer,a worker skilled in applying plaster
+61309,plastering daubing,the application of plaster
+61310,plastering_trowel,a trowel used to spread and smooth plaster
+61311,plastic,generic name for certain synthetic or semisynthetic materials that can be molded or extruded into objects or films or filaments or used for making e.g. coatings and adhesives
+61312,plastic_art,the arts of shaping or modeling; carving and sculpture
+61313,plastic_bag,a bag made of thin plastic material
+61314,plastic_bomb,a bomb made of plastic explosive
+61315,plastic_explosive plastique,an explosive material that is easily molded around the object it is intended to destroy
+61316,plastic_laminate,a laminate made by bonding plastic layers
+61317,plastic_surgery reconstructive_surgery anaplasty,surgery concerned with therapeutic or cosmetic reformation of tissue
+61318,plastic_wrap,wrapping consisting of a very thin transparent sheet of plastic
+61319,plasticizer plasticiser,a substance added to plastics or other materials to make them more pliable
+61320,plastics_industry,an industry that manufactures plastic articles
+61321,plastid,any of various small particles in the cytoplasm of the cells of plants and some animals containing pigments or starch or oil or protein
+61322,plastination,a process involving fixation and dehydration and forced impregnation and hardening of biological tissues; water and lipids are replaced by curable polymers (silicone or epoxy or polyester) that are subsequently hardened; "the plastination of specimens is valuable for research and teaching"
+61323,plastron,the ornamental front of a woman's bodice or shirt
+61324,plastron,the front of man's dress shirt
+61325,plastron,a metal breastplate that was worn under a coat of mail
+61326,plastron,a large pad worn by a fencer to protect the chest
+61327,plastron,(zoology) the part of a turtle's shell forming its underside
+61328,plat,a map showing planned or actual features of an area (streets and building lots etc.)
+61329,plate,the thin under portion of the forequarter
+61330,plate,a main course served on a plate; "a vegetable plate"; "the blue plate special"
+61331,plate,any flat platelike body structure or part
+61332,plate,the positively charged electrode in a vacuum tube
+61333,plate,a full-page illustration (usually on slick paper)
+61334,plate,structural member consisting of a horizontal beam that provides bearing and anchorage
+61335,plate,a sheet of metal or wood or glass or plastic
+61336,plate,dish on which food is served or from which food is eaten
+61337,plate collection_plate,a shallow receptacle for collection in church
+61338,plate crustal_plate,a rigid layer of the Earth's crust that is believed to drift slowly
+61339,plate photographic_plate,a flat sheet of metal or glass on which a photographic image can be recorded
+61340,plate plateful,the quantity contained in a plate
+61341,plate scale shell,a metal sheathing of uniform thickness (such as the shield attached to an artillery piece to protect the gunners)
+61342,plate_glass sheet_glass,glass formed into large thin sheets
+61343,plate_iron,a plate of iron
+61344,plate_rack,a rack for holding plates to dry after they have been washed
+61345,plate_rail,rail or narrow shelf fixed to a wall to display plates
+61346,plateau_striped_whiptail Cnemidophorus_velox,having distinct longitudinal stripes: of Colorado Plateau from Arizona to western Colorado
+61347,platelayer tracklayer,a workman who lays and repairs railroad tracks
+61348,platelet blood_platelet thrombocyte,tiny bits of protoplasm found in vertebrate blood; essential for blood clotting
+61349,plateletpheresis,platelets are separated from whole blood and the rest is returned to the donor
+61350,platen,work table of a machine tool
+61351,platen,the flat plate of a printing press that presses the paper against the type
+61352,platen,the roller on a typewriter against which the keys strike
+61353,plater,a skilled worker who coats articles with a film of metal (usually silver or gold)
+61354,platform,the combination of a particular computer and a particular operating system
+61355,platform,a raised horizontal surface; "the speaker mounted the platform"
+61356,platform political_platform political_program program,a document stating the aims and principles of a political party; "their candidate simply ignored the party platform"; "they won the election even though they offered no positive program"
+61357,platform weapons_platform,any military structure or vehicle bearing weapons
+61358,platform_bed,a bed without springs
+61359,platform_rocker,rocking chair on a stationary base
+61360,plating,the application of a thin coat of metal (as by electrolysis)
+61361,plating metal_plating,a thin coating of metal deposited on a surface
+61362,platinum Pt atomic_number_78,a heavy precious metallic element; grey-white and resistant to corroding; occurs in some nickel and copper ores and is also found native in some deposits
+61363,platinum_black,a fine black powder of platinum; used as a catalyst in chemical reactions
+61364,platinum_blond platinum_blonde,a blond whose hair is a pale silvery (often artificially colored) blond
+61365,platitude cliche banality commonplace bromide,a trite or obvious remark
+61366,platitudinarian,a bore who makes excessive use of platitudes
+61367,platoon,a group of persons who are engaged in a common activity; "platoons of tourists poured out of the busses"; "the defensive platoon of the football team"
+61368,platoon,a team of policemen working under the military platoon system
+61369,platoon,a military unit that is a subdivision of a company; usually has a headquarters and two or more squads; usually commanded by a lieutenant
+61370,platter,a large shallow dish used for serving food
+61371,platy Platypoecilus_maculatus,small stocky Mexican fish; popular aquarium fish
+61372,platyctenean,ctenophore have long tentacles and flattened body
+61373,platypus duckbill duckbilled_platypus duck-billed_platypus Ornithorhynchus_anatinus,small densely furred aquatic monotreme of Australia and Tasmania having a broad bill and tail and webbed feet; only species in the family Ornithorhynchidae
+61374,platysma,either of two broad muscles located on either side of the neck and innervated by the facial nerve; extends from lower jaw to clavicle and is involved in moving the mouth and jaw
+61375,plausibility plausibleness,apparent validity
+61376,play,a state in which action is feasible; "the ball was still in play"; "insiders said the company's stock was in play"
+61377,play,a theatrical performance of a drama; "the play lasted two hours"
+61378,play,utilization or exercise; "the play of the imagination"
+61379,play,a preset plan of action in team sports; "the coach drew up the plays for her team"
+61380,play child's_play,activity by children that is guided more by imagination than by fixed rules; "Freud believed in the utility of play to a small child"
+61381,play drama dramatic_play,a dramatic work intended for performance by actors on a stage; "he wrote several plays but only one was produced on Broadway"
+61382,play frolic romp gambol caper,gay or light-hearted recreational activity for diversion or amusement; "it was all done in play"; "their frolic in the surf threatened to become ugly"
+61383,play swordplay,the act using a sword (or other weapon) vigorously and skillfully
+61384,play_reading,performance of a play by a group of readers
+61385,play_therapy,form of psychotherapy for children that uses play situations for diagnosis or treatment
+61386,playback,electronic equipment comprising the part of a tape recorder that reproduces the recorded material
+61387,playback,the act of reproducing recorded sound; "he was allowed to hear the playback of his testimony"
+61388,playbill,a theatrical program; "he couldn't find her name on the playbill"
+61389,playbook,a notebook containing descriptions and diagrams of the plays that a team has practiced (especially an American football team)
+61390,playbook,a book containing the scripts of one or more dramatic plays; "the 1963 playbook leaves out the whole first scene"
+61391,playbook,a scheme or set of strategies for conducting a business campaign or a political campaign; "they borrowed a page from the playbook of the opposition"
+61392,playbox play-box,a box for a child's toys and personal things (especially at a boarding school)
+61393,playboy man-about-town Corinthian,a man devoted to the pursuit of pleasure
+61394,player,a person who pursues a number of different social and sexual partners simultaneously
+61395,player participant,a person who participates in or is skilled at some game
+61396,playfulness fun,a disposition to find (or make) causes for amusement; "her playfulness surprised me"; "he was fun to be with"
+61397,playgoer theatergoer theatregoer,someone who attends the theater
+61398,playground,yard consisting of an outdoor area for children's play
+61399,playhouse wendy_house,plaything consisting of a small model of a house that children can play inside of
+61400,playing,the act of playing a musical instrument
+61401,playing,the action of taking part in a game or sport or other recreation
+61402,playing_card,one of a pack of cards that are used to play card games
+61403,playing_field,the circumstances under which competition occurs; "the government's objective is to insure a genuinely level playing field for American industry and commerce in Europe"
+61404,playing_field athletic_field playing_area field,a piece of land prepared for playing a game; "the home crowd cheered when Princeton took the field"
+61405,playing_period period_of_play play,(in games or plays or other performances) the time during which play proceeds; "rain stopped play in the 4th inning"
+61406,playlet,a short play
+61407,playlist play_list,a list of musical selections for performance or for broadcast by radio
+61408,playmaker,a player in a team sport who leads attacks or maneuvers in such a way that a teammate can score
+61409,playmate playfellow,a companion at play
+61410,playoff,any final competition to determine a championship
+61411,playoff_game,one game in the series of games constituting a playoff
+61412,playpen pen,a portable enclosure in which babies may be left to play
+61413,playschool play_group,a small informal nursery group meeting for half-day sessions
+61414,playsuit,a sports outfit for women or children; usually consists of shorts and a blouse
+61415,plaything toy,an artifact designed to be played with
+61416,playtime playday,time for play or diversion
+61417,plaza mall center shopping_mall shopping_center shopping_centre,mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace; "a good plaza should have a movie house"; "they spent their weekends at the local malls"
+61418,plaza place piazza,a public square with room for pedestrians; "they met at Elm Plaza"; "Grosvenor Place"
+61419,plea,(law) a defendant's answer by a factual matter (as distinguished from a demurrer)
+61420,plea,an answer indicating why a suit should be dismissed
+61421,plea_bargain plea_bargaining,(criminal law) a negotiation in which the defendant agrees to enter a plea of guilty to a lesser charge and the prosecutor agrees to drop a more serious charge; "his admission was part of a plea bargain with the prosecutor"; "plea bargaining helps to stop the courts becoming congested"
+61422,pleading,(law) a statement in legal and logical form stating something on behalf of a party to a legal proceeding
+61423,pleasance,a pleasant and secluded part of a garden; usually attached to a mansion
+61424,pleasantness,the feeling caused by agreeable stimuli; one pole of a continuum of states of feeling
+61425,pleasantness sweetness,the quality of giving pleasure; "he was charmed by the sweetness of her manner"; "the pleasantness of a cool breeze on a hot summer day"
+61426,pleasantry,an agreeable or amusing remark; "they exchange pleasantries"
+61427,pleaser,a pleasing entertainer; "he is quite the crowd pleaser"
+61428,pleasing,the act of one who pleases
+61429,pleasingness,the quality of giving pleasure to the senses; "the liveliness and pleasingness of dark eyes"- T.N. Carver
+61430,pleasure,a formal expression; "he serves at the pleasure of the President"
+61431,pleasure,an activity that affords enjoyment; "he puts duty before pleasure"
+61432,pleasure,sexual gratification; "he took his pleasure of her"
+61433,pleasure pleasance,a fundamental feeling that is hard to define but that people desire to experience; "he was tingling with pleasure"
+61434,pleasure_principle pleasure-pain_principle pleasure-unpleasure_principle,(psychoanalysis) the governing principle of the id; the principle that an infant seeks gratification and fails to distinguish fantasy from reality
+61435,pleat plait,any of various types of fold formed by doubling fabric back upon itself and then pressing or stitching into shape
+61436,plebeian pleb,one of the common people
+61437,plebiscite,a vote by the electorate determining public opinion on a question of national importance
+61438,plectognath plectognath_fish,tropical marine fishes having the teeth fused into a beak and thick skin covered with bony plates or spines
+61439,plectranthus,any of various ornamental plants of the genus Plectranthus
+61440,pledge,a deposit of personal property as security for a debt; "his saxophone was in pledge"
+61441,pledge,someone accepted for membership but not yet fully admitted to the group
+61442,pledge toast,a drink in honor of or to the health of a person or event
+61443,pledge_taker,a volunteer who records (usually by telephone) contributions pledged in a fund drive
+61444,pledgee,someone to whom a pledge is made or someone with whom something is deposited as a pledge
+61445,pledger,someone who makes or gives a pledge
+61446,plenipotentiary,a diplomat who is fully authorized to represent his or her government
+61447,plenty plentifulness plenteousness plenitude plentitude,a full supply; "there was plenty of food for everyone"
+61448,plenum,a meeting of a legislative body at which all members are present; "the plenum will vote on all tax increases"
+61449,plenum,an enclosed space in which the air pressure is higher than outside
+61450,pleochroism,the phenomenon of different colors appearing when certain crystals are viewed from different directions
+61451,pleomorphic_rhabdomyosarcoma pleomorphic_rhabdosarcoma,form of rhabdomyosarcoma that affects limb muscles of older adults
+61452,pleomorphism,(biology) the appearance of two or more distinctly different forms in the life cycle of some organisms
+61453,pleonasm,using more words than necessary; "a tiny little child"
+61454,plesiosaur plesiosaurus,extinct marine reptile with a small head on a long neck a short tail and four paddle-shaped limbs; of the Jurassic and Cretaceous
+61455,plethysmograph,a measuring instrument for measuring changes in volume of a part or organ or whole body (usually resulting from fluctuations in the amount of blood it contains)
+61456,pleura,the thin serous membrane around the lungs and inner walls of the chest
+61457,pleural_cavity,the cavity in the thorax that contains the lungs and heart
+61458,pleural_space,the small potential space between the parietal and visceral layers of the pleura
+61459,pleurisy,inflammation of the pleura of the lungs (especially the parietal layer)
+61460,pleurocarp pleurocarpous_moss,a moss having the archegonium or antheridium on a short side branch rather than the main stalk
+61461,pleurodont,an animal having teeth fused with the inner surface of the alveolar ridge without sockets
+61462,pleurodynia pleuralgia costalgia,pain in the chest caused by inflammation of the muscles between the ribs
+61463,pleuropneumonia,pleurisy and pneumonia
+61464,pleuropneumonialike_organism PPLO,a mycoplasma resistant to antibiotics that causes a kind of pneumonia in humans
+61465,pleurothallis,any of numerous small tufted orchids of the genus Pleurothallis having leathery to fleshy leaves and racemes of 1 to many small flowers
+61466,pleximeter plessimeter,a small thin metal plate held against the body and struck with a plexor in percussive examinations
+61467,plexor plessor percussor,(medicine) a small hammer with a rubber head used in percussive examinations of the chest and in testing reflexes
+61468,plexus rete,a network of intersecting blood vessels or intersecting nerves or intersecting lymph vessels
+61469,plexus_dentalis,a plexus of nerves serving the teeth
+61470,pliability pliancy pliantness suppleness,adaptability of mind or character; "he was valued for his reliability and pliability"; "he increased the leanness and suppleness of the organization"
+61471,pliancy pliantness suppleness,the property of being pliant and flexible
+61472,plication pleating,the act of folding in parallel folds
+61473,plier plyer,someone who plies a trade
+61474,pliers pair_of_pliers plyers,a gripping hand tool with two hinged arms and (usually) serrated jaws
+61475,plight troth,a solemn pledge of fidelity
+61476,plimsoll,a light gym shoe with a rubber sole and a canvas top
+61477,ploce,(rhetoric) repetition to gain special emphasis or extend meaning
+61478,plodder slogger,someone who works slowly and monotonously for long hours
+61479,plodder slowpoke stick-in-the-mud slowcoach,someone who moves slowly; "in England they call a slowpoke a slowcoach"
+61480,plodding plod,the act of walking with a slow heavy gait; "I could recognize his plod anywhere"
+61481,plonk,a cheap wine of inferior quality
+61482,plonk,the noise of something dropping (as into liquid)
+61483,plop,the noise of a rounded object dropping into a liquid without a splash
+61484,plosion explosion,the terminal forced release of pressure built up during the occlusive phase of a stop consonant
+61485,plot,a chart or graph showing the movements or progress of an object
+61486,plot,the story that is told in a novel or play or movie etc.; "the characters were well drawn but the plot was banal"
+61487,plot plot_of_land plot_of_ground patch,a small area of ground covered by specific vegetation; "a bean plot"; "a cabbage patch"; "a briar patch"
+61488,plot secret_plan game,a secret scheme to do something (especially something underhand or illegal); "they concocted a plot to discredit the governor"; "I saw through his little game from the start"
+61489,plot_element,a component or element of the plot of a story
+61490,plotter,an instrument (usually driven by a computer) for drawing graphs or pictures
+61491,plotter mapper,a clerk who marks data on a chart
+61492,ploughman's_lunch,a meal consisting of a sandwich of bread and cheese and a salad
+61493,plover,any of numerous chiefly shorebirds of relatively compact build having straight bills and large pointed wings; closely related to the sandpipers
+61494,plow plough,a farm tool having one or more heavy blades to break the soil and cut a furrow prior to sowing
+61495,plow_horse plough_horse,a horse used to pull a plow
+61496,plowboy ploughboy,a boy who leads the animals that draw a plow
+61497,plowing ploughing,tilling the land with a plow; "he hired someone to do the plowing for him"
+61498,plowman ploughman plower,a man who plows
+61499,plowshare ploughshare share,a sharp steel wedge that cuts loose the top layer of soil
+61500,plowwright ploughwright,a workman who makes and repairs plows
+61501,ploy gambit stratagem,a maneuver in a game or conversation
+61502,pluck,the act of pulling and releasing a taut cord
+61503,plug male_plug,an electrical device with two or three pins that is inserted in a socket to make an electrical connection
+61504,plug stopper stopple,blockage consisting of an object designed to fill a hole tightly
+61505,plug-in add-on,a software module that extends or enhances the capabilities of an existing application
+61506,plug_fuse,a fuse with a thread that screws into a socket
+61507,plughole,a hole into which a plug fits (especially a hole where water drains away)
+61508,plum,any of numerous varieties of small to medium-sized round or oval fruit having a smooth skin and a single pit
+61509,plum,a highly desirable position or assignment; "a political plum"
+61510,plum plum_tree,any of several trees producing edible oval fruit having a smooth skin and a single hard stone
+61511,plum-fruited_yew Prumnopitys_andina Prumnopitys_elegans,South American evergreen tree or shrub
+61512,plum-yew,any of several evergreen trees and shrubs of eastern Asia resembling yew and having large seeds enclosed in a fleshy envelope; sometimes cultivated as ornamentals
+61513,plum_pudding Christmas_pudding,a rich steamed or boiled pudding that resembles cake
+61514,plum_sauce,for Chinese dishes: plum preserves and chutney
+61515,plum_tomato,an Italian variety of cherry tomato that is shaped like a plum
+61516,plum_tomato,a kind of cherry tomato that is frequently used in cooking rather than eaten raw
+61517,plumb_bob plumb plummet,the metal bob of a plumb line
+61518,plumb_level,a carpenter's level with a plumb line at right angles to it
+61519,plumb_line perpendicular,a cord from which a metal weight is suspended pointing directly to the earth's center of gravity; used to determine the vertical from a given point
+61520,plumb_rule,a plumb line attached to a narrow board
+61521,plumbago,any plumbaginaceous plant of the genus Plumbago
+61522,plumber pipe_fitter,a craftsman who installs and repairs pipes and fixtures and appliances
+61523,plumber's_snake snake auger,a long flexible steel coil for dislodging stoppages in curved pipes
+61524,plumbing plumbery,the occupation of a plumber (installing and repairing pipes and fixtures for water or gas or sewage in a building)
+61525,plumbing plumbing_system,utility consisting of the pipes and fixtures for the distribution of water or gas in a building and for the disposal of sewage
+61526,plumbing_fixture,a fixture for the distribution and use of water in a building
+61527,plumcot,hybrid between plum and apricot
+61528,plumcot plumcot_tree,hybrid produced by crossing Prunus domestica and Prunus armeniaca
+61529,plume,anything that resembles a feather in shape or lightness; "a plume of smoke"; "grass with large plumes"
+61530,plume,a feather or cluster of feathers worn as an ornament
+61531,plume_grass,a reedlike grass of the genus Erianthus having large plumes
+61532,plume_poppy bocconia Macleaya_cordata,herb of China and Japan widely cultivated for its plumelike panicles of creamy white flowers
+61533,plume_thistle plumed_thistle,any of numerous biennial to perennial herbs with handsome purple or yellow or occasionally white flower heads
+61534,plumed_scorpionfish Scorpaena_grandicornis,a kind of scorpionfish
+61535,plumed_tussock toe_toe toetoe Cortaderia_richardii Arundo_richardii,tall grass of New Zealand grown for plumelike flower heads
+61536,plump,the sound of a sudden heavy fall
+61537,plumpness embonpoint roundness,the bodily property of being well rounded
+61538,plumule,down feather of young birds; persists in some adult birds
+61539,plunderage,the act of plundering (especially the embezzlement of goods on shipboard)
+61540,plunderer pillager looter spoiler despoiler raider freebooter,someone who takes spoils or plunder (as in war)
+61541,plundering pillage pillaging,the act of stealing valuable things from a place; "the plundering of the Parthenon"; "his plundering of the great authors"
+61542,plunge,a steep and rapid fall
+61543,plunger plumber's_helper,hand tool consisting of a stick with a rubber suction cup at one end; used to clean clogged drains
+61544,plunk,a hollow twanging sound
+61545,plunk plunker,(baseball) hitting a baseball so that it drops suddenly
+61546,plural plural_form,the form of a word that is used to denote more than one
+61547,pluralism,a social organization in which diversity of racial or religious or ethnic or cultural groups is tolerated
+61548,pluralism,the doctrine that reality consists of several basic substances or elements
+61549,pluralism,the practice of one person holding more than one benefice at a time
+61550,pluralist,a cleric who holds more than one benefice at a time
+61551,pluralist,a philosopher who believes that no single explanation can account for all the phenomena of nature
+61552,pluralist,someone who believes that distinct ethnic or cultural or religious groups can exist together in society
+61553,plurality,the state of being plural; "to mark plurality, one language may add an extra syllable to the word whereas another may simply change the vowel in the existing final syllable"
+61554,plurality relative_majority,(in an election with more than 2 options) the number of votes for the candidate or party receiving the greatest number (but less that half of the votes)
+61555,pluralization pluralisation,the act of pluralizing or attributing plurality to
+61556,plus_fours,men's baggy knickers hanging below the knees; formerly worn for sports (especially golf)
+61557,plus_sign,a sign indicating the operation of addition
+61558,plush,a fabric with a nap that is longer and softer than velvet
+61559,plutocracy,a political system governed by the wealthy people
+61560,plutocrat,someone who exercises power by virtue of wealth
+61561,plutonium Pu atomic_number_94,a solid silvery grey radioactive transuranic element whose atoms can be split when bombarded with neutrons; found in minute quantities in uranium ores but is usually synthesized in nuclear reactors; 13 isotopes are known with the most important being plutonium 239
+61562,plutonium_239,a highly fissionable isotope of plutonium that is used in atomic weapons and as a reactor fuel; produced by irradiating uranium 238 with slow electrons
+61563,plutonium_trigger plutonium_pit,a steel or beryllium sphere containing plutonium 239 that triggers nuclear fission when compressed by explosives
+61564,ply,one of the strands twisted together to make yarn or rope or thread; often used in combination; "three-ply cord"; "four-ply yarn"
+61565,ply,(usually in combinations) one of several layers of cloth or paper or wood as in plywood
+61566,plywood plyboard,a laminate made of thin layers of wood
+61567,pneumatic_drill,a power drill powered by compressed air
+61568,pneumatic_tire pneumatic_tyre,a tire made of reinforced rubber and filled with compressed air; used on motor vehicles and bicycles etc
+61569,pneumatics,the branch of mechanics that deals with the mechanical properties of gases
+61570,pneumatophore,an air-filled root (submerged or exposed) that can function as a respiratory organ of a marsh or swamp plant
+61571,pneumococcal_pneumonia,pneumonia caused by bacteria of the genus pneumococcus
+61572,pneumococcal_vaccine Pneumovax,vaccine (trade name Pneumovax) effective against the 23 most common strains of pneumococcus
+61573,pneumococcus Diplococcus_pneumoniae,bacterium causing pneumonia in mice and humans
+61574,pneumoconiosis pneumonoconiosis,chronic respiratory disease caused by inhaling metallic or mineral particles
+61575,pneumocytosis pneumocystis_pneumonia pneumocystis_carinii_pneumonia interstitial_plasma_cell_pneumonia,pneumonia occurring in infants or in persons with impaired immune systems (as AIDS victims)
+61576,pneumonectomy,surgical removal of a lung (usually to treat lung cancer)
+61577,pneumonia,respiratory disease characterized by inflammation of the lung parenchyma (excluding the bronchi) with congestion caused by viruses or bacteria or irritants
+61578,pneumonic_plague pulmonic_plague plague_pneumonia,a rapidly progressive and frequently fatal form of the plague that can spread through the air from person to person; characterized by lung involvement with chill, bloody expectoration and high fever
+61579,pneumonitis,inflammation of the lungs; caused by a virus or an allergic reaction
+61580,pneumothorax,abnormal presence of air in the pleural cavity resulting in the collapse of the lung; may be spontaneous (due to injury to the chest) or induced (as a treatment for tuberculosis)
+61581,poached_egg dropped_egg,egg cooked in gently boiling water
+61582,poacher,someone who hunts or fishes illegally on the property of another
+61583,poacher,a cooking vessel designed to poach food (such as fish or eggs)
+61584,poacher sea_poacher sea_poker,small slender fish (to 8 inches) with body covered by bony plates; chiefly of deeper northern Pacific waters
+61585,poaching,cooking in simmering liquid
+61586,pochard Aythya_ferina,heavy-bodied Old World diving duck having a grey-and-black body and reddish head
+61587,pock,a pustule in an eruptive disease
+61588,pocket,(bowling) the space between the headpin and the pins behind it on the right or left; "the ball hit the pocket and gave him a perfect strike"
+61589,pocket,a supply of money; "they dipped into the taxpayers' pockets"
+61590,pocket,a small isolated group of people; "they were concentrated in pockets inside the city"; "the battle was won except for cleaning up pockets of resistance"
+61591,pocket,an opening at the corner or on the side of a billiard table into which billiard balls are struck
+61592,pocket,a small pouch inside a garment for carrying small articles
+61593,pocket-handkerchief,a handkerchief that is carried in a pocket
+61594,pocket_battleship,a small battleship built to conform with treaty limitations on tonnage and armament (from 1925 to 1930)
+61595,pocket_borough,a sparsely populated borough in which all or most of the land is owned by a single family
+61596,pocket_dictionary little_dictionary,a dictionary that is small enough to carry in your pocket
+61597,pocket_flap,a flap that covers the access to a pocket
+61598,pocket_money pin_money spending_money,cash for day-to-day spending on incidental expenses
+61599,pocket_mouse,any of various small nocturnal burrowing desert rodents with cheek pouches and long hind legs and tail
+61600,pocket_rat,any of various rodents with cheek pouches
+61601,pocket_veto,indirect veto of legislation by refusing to sign it
+61602,pocket_watch,a watch that is carried in a small watch pocket
+61603,pocketbook,your personal financial means; "that car is too expensive for my pocketbook"
+61604,pocketbook pocket_book pocket_edition,pocket-sized paperback book
+61605,pocketbook_issue bread-and-butter_issue,an issue whose settlement will affect financial resources
+61606,pocketcomb pocket_comb,a small comb suitable for carrying in a pocket
+61607,pocketed_bat pocketed_freetail_bat Tadirida_femorosacca,small brown bat of California and northern Mexico
+61608,pocketful,the quantity a pocket will hold
+61609,pocketknife pocket_knife,a knife with a blade that folds into the handle; suitable for carrying in the pocket
+61610,pockmark,a scar or pit on the skin that is left by a pustule of smallpox or acne or other eruptive disease
+61611,pod,a group of aquatic mammals
+61612,pod cod seedcase,the vessel that contains the seeds of a plant (not the seeds themselves)
+61613,pod fuel_pod,a detachable container of fuel on an airplane
+61614,pod seedpod,a several-seeded dehiscent fruit as e.g. of a leguminous plant
+61615,podalgia,foot pain
+61616,podetium,an organ or body resembling a stalk; especially the outgrowth of the thallus of certain lichens on which the ascocarp is borne
+61617,podiatry chiropody,the branch of medicine concerned with the feet
+61618,podicipitiform_seabird,aquatic birds related to the loons
+61619,podocarp,any evergreen in the southern hemisphere of the genus Podocarpus having a pulpy fruit with one hard seed
+61620,podzol podzol_soil podsol podsol_soil podsolic_soil,a soil that develops in temperate to cold moist climates under coniferous or heath vegetation; an organic mat over a grey leached layer
+61621,poem verse_form,a composition written in metrical feet forming rhythmical lines
+61622,poet,a writer of poems (the term is usually reserved for writers of good poetry)
+61623,poet_laureate,a poet who is unofficially regarded as holding an honorary position in a particular group or region; "she is the poet laureate of all lyricists"; "he is the poet laureate of Arkansas"
+61624,poet_laureate,the poet officially appointed to the royal household in Great Britain; "the poet laureate is expected to provide poems for great national occasions"
+61625,poetess,a woman poet
+61626,poetic_license,license used by a writer or artist to heighten the effect of their work
+61627,poetic_rhythm rhythmic_pattern prosody,(prosody) a system of versification
+61628,poetics,study of poetic works
+61629,poetry,any communication resembling poetry in beauty or the evocation of feeling
+61630,poetry poesy verse,literature in metrical form
+61631,pogge armed_bullhead Agonus_cataphractus,northern Atlantic sea poacher
+61632,pogo_stick,plaything consisting of a pole with foot rests and a strong spring; propelled by jumping
+61633,pogonia,any hardy bog orchid of the genus Pogonia: terrestrial orchids having slender rootstocks and erect stems bearing one or a few leaves and a solitary terminal flower
+61634,pogonion,the craniometric point that is the most forward-projecting point on the anterior surface of the chin
+61635,pogrom,organized persecution of an ethnic group (especially Jews)
+61636,poi,Hawaiian dish of taro root pounded to a paste and often allowed to ferment
+61637,poignance poignancy,a state of deeply felt distress or sorrow; "a moment of extraordinary poignancy"
+61638,poikilotherm ectotherm,an animal whose body temperature varies with the temperature of its surroundings; any animal except birds and mammals
+61639,poilu,a French soldier (especially in World War I)
+61640,poinsettia Christmas_star Christmas_flower lobster_plant Mexican_flameleaf painted_leaf Euphorbia_pulcherrima,tropical American plant having poisonous milk and showy tapering usually scarlet petallike leaves surrounding small yellow flowers
+61641,point,a style in speech or writing that arrests attention and has a penetrating or convincing quality or effect
+61642,point,a linear unit used to measure the size of type; approximately 1/72 inch
+61643,point,the unit of counting in scoring a game or contest; "he scored 20 points in the first half"; "a touchdown counts 6 points"
+61644,point,one percent of the total principal of a loan; it is paid at the time the loan is made and is independent of the interest on the loan
+61645,point,a promontory extending out into a large body of water; "they sailed south around the point"
+61646,point,the precise location of something; a spatially limited location; "she walked to a point where she could survey the whole street"
+61647,point,a brief version of the essential meaning of something; "get to the point"; "he missed the point of the joke"; "life has lost its point"
+61648,point,the object of an activity; "what is the point of discussing it?"
+61649,point,a geometric element that has position but no extension; "a point is defined by its coordinates"
+61650,point,a distinguishing or individuating characteristic; "he knows my bad points as well as my good points"
+61651,point,sharp end; "he stuck the point of the knife into a tree"; "he broke the point of his pencil"
+61652,point dot,a very small circular shape; "a row of points"; "draw lines between the dots"
+61653,point gunpoint,the gun muzzle's direction; "he held me up at the point of a gun"
+61654,point head,a V-shaped mark at one end of an arrow pointer; "the point of the arrow was due north"
+61655,point point_in_time,an instant of time; "at that point I had to leave"
+61656,point pointedness,the property of a shape that tapers to a sharp tip
+61657,point power_point,a wall socket
+61658,point spot,an outstanding characteristic; "his acting was one of the high points of the movie"
+61659,point tip peak,a V shape; "the cannibal's teeth were filed to sharp points"
+61660,point-and-shoot_camera,a lightweight photographic camera with an autofocus
+61661,point_after point_after_touchdown extra_point,in American football a point awarded for a successful place kick following a touchdown
+61662,point_duty,the control of traffic by a policeman stationed at an intersection
+61663,point_lace needlepoint,lace worked with a needle in a buttonhole stitch on a paper pattern
+61664,point_man,someone who is the forefront of an important enterprise; "he is the president's point man on economic issues"
+61665,point_man,a soldier who goes ahead of a patrol
+61666,point_mutation gene_mutation,(genetics) a mutation due to an intramolecular reorganization of a gene
+61667,point_of_honor,a concern that seriously reflects on your honor
+61668,point_of_order,a question as to whether the current proceedings are allowed by parliamentary procedure
+61669,point_of_view,the spatial property of the position from which something is observed
+61670,point_of_view viewpoint stand standpoint,a mental position from which things are viewed; "we should consider this problem from the viewpoint of the Russians"; "teaching history gave him a special point of view toward current events"
+61671,point_source,a concentrated source (especially of radiation or pollution) that is spatially constricted
+61672,point_system,a system of graduating sizes of type in multiples of the point
+61673,point_system,a system of writing or printing using patterns of raised dots that can be read by touch
+61674,point_system,a system of evaluation based on awarding points according to rules
+61675,point_woman,a woman who is the forefront of an important enterprise
+61676,pointed-leaf_maple Acer_argutum,small shrubby Japanese plant with leaves having 5 to 7 acuminate lobes; yellow in autumn
+61677,pointed_arch,an arch with a pointed apex; characteristic of Gothic architecture
+61678,pointedness,the quality of being obviously directed at a particular person or thing; "the pointedness of his sarcasm was unmistakable"
+61679,pointer,an indicator as on a dial
+61680,pointer Spanish_pointer,a strong slender smooth-haired dog of Spanish origin having a white coat with brown or black patches; scents out and points to game
+61681,pointillism,a school of painters who used a technique of painting with tiny dots of pure colors that would blend in the viewer's eye; developed by Georges Seurat and his followers late in 19th century France
+61682,pointillism,a genre of painting characterized by the application of paint in dots and small strokes; developed by Georges Seurat and his followers in late 19th century France
+61683,pointillist,a painter who uses the technique of pointillism
+61684,pointing_out,indication by demonstration
+61685,pointing_trowel,a trowel used to fill and finish masonry joints with mortar or cement
+61686,pointsman,a policeman stationed at an intersection to direct traffic
+61687,poise,a state of being balanced in a stable equilibrium
+61688,poise,a cgs unit of dynamic viscosity equal to one dyne-second per square centimeter; the viscosity of a fluid in which a force of one dyne per square centimeter maintains a velocity of 1 centimeter per second
+61689,poison,anything that harms or destroys; "the poison of fascism"
+61690,poison toxicant poisonous_substance,any substance that causes injury or illness or death of a living organism
+61691,poison_ash poison_dogwood poison_sumac Toxicodendron_vernix Rhus_vernix,smooth American swamp shrub with pinnate leaves and greenish flowers followed by greenish white berries; yields an irritating oil
+61692,poison_bush poison_pea gastrolobium,any of various Australian evergreen shrubs of the genus Gastrolobium having whorled compound leaves poisonous to livestock and showy yellow to deep reddish-orange flowers followed by two-seeded pods
+61693,poison_camas Zigadenus_nuttalli,a common perennial death camas; Tennessee to Kansas to Texas
+61694,poison_gas,a gas that is poisonous to breath or contact; used in chemical warfare
+61695,poison_ivy,dermatitis resulting from contact with the poison ivy plant; "my poison ivy is drying up"
+61696,poison_ivy markweed poison_mercury poison_oak Toxicodendron_radicans Rhus_radicans,climbing plant common in eastern and central United States with ternate leaves and greenish flowers followed by white berries; yields an irritating oil that causes a rash on contact
+61697,poison_milkweed horsetail_milkweed Asclepias_subverticillata,milkweed of southwestern United States and Mexico; poisonous to livestock
+61698,poison_oak,dermatitis resulting from contact with a poison oak plant
+61699,poison_pill,the target company defends itself by making its stock less attractive to an acquirer
+61700,poison_sumac,dermatitis resulting from contact with a poison sumac plant
+61701,poisoner,someone who kills with poison
+61702,poisoning,the act of giving poison to a person or animal with the intent to kill
+61703,poisoning toxic_condition intoxication,the physiological state produced by a poison or other toxic substance
+61704,poisonous_parasol Lepiota_morgani,an agaric regarded as poisonous
+61705,poisonous_plant,a plant that when touched or ingested in sufficient quantity can be harmful or fatal to an organism
+61706,poke pigeon_berry garget scoke Phytolacca_americana,tall coarse perennial American herb having small white flowers followed by blackish-red berries on long drooping racemes; young fleshy stems are edible; berries and root are poisonous
+61707,poke_check,knocking the puck away by jabbing at it with the hockey stick
+61708,poke_milkweed Asclepias_exaltata,milkweed of the eastern United States with leaves resembling those of pokeweed
+61709,poker poker_game,any of various card games in which players bet that they hold the highest-ranking hand
+61710,poker stove_poker fire_hook salamander,fire iron consisting of a metal rod with a handle; used to stir a fire
+61711,poker_alumroot poker_heuchera Heuchera_cylindrica,plant with leathery heart-shaped leaf blades clustered at base of long stalks with greenish-white flowers clustered along the upper part; western North America
+61712,poker_face,a face without any interpretable expression (as that of a good poker player)
+61713,poker_hand,the 5 cards held in a game of poker
+61714,poker_plant Kniphofia_uvaria,clump-forming plant of South Africa with spikes of scarlet flowers
+61715,pokeweed,perennial of the genus Phytolacca
+61716,polack,a person of Polish descent
+61717,polar_body,a small cell containing little cytoplasm that is produced along with the oocyte and later discarded
+61718,polar_circle,a line of latitude at the north or south poles
+61719,polar_coordinate,either of two values that locate a point on a plane by its distance from a fixed pole and its angle from a fixed line passing through the pole
+61720,polar_glacier,a glacier near the Arctic or Antarctic poles
+61721,polar_hare Arctic_hare Lepus_arcticus,a large hare of northern North America; it is almost completely white in winter
+61722,polar_opposition,an opposition that can be graded between two extremes or poles
+61723,polarimeter polariscope,an optical device used to measure the rotation of the plane of vibration of polarized light
+61724,polarity sign,having an indicated pole (as the distinction between positive and negative electric charges); "he got the polarity of the battery reversed"; "charges of opposite sign"
+61725,polarization polarisation,the condition of having or giving polarity
+61726,polarization polarisation,the phenomenon in which waves of light or other radiation are restricted in direction of vibration
+61727,polarography,an electrochemical method of chemical analysis
+61728,polder,low-lying land that has been reclaimed and is protected by dikes (especially in the Netherlands)
+61729,pole,one of two antipodal points where the Earth's axis of rotation intersects the Earth's surface
+61730,pole,one of two divergent or mutually exclusive opinions; "they are at opposite poles"; "they are poles apart"
+61731,pole,a long fiberglass sports implement used for pole vaulting
+61732,pole,a long (usually round) rod of wood or metal or plastic
+61733,pole celestial_pole,one of two points of intersection of the Earth's axis and the celestial sphere
+61734,pole magnetic_pole,one of the two ends of a magnet where the magnetism seems to be concentrated
+61735,pole_bean,a climbing bean plant that will climb a wall or tree or trellis
+61736,pole_horse,the horse having a starting position next to the inside rail in a harness race
+61737,pole_horse poler,a draft horse harnessed alongside the shaft or pole of a vehicle
+61738,pole_position,the most favorable position at the start of a race
+61739,pole_vault pole_vaulting pole_jump pole_jumping,a competition that involves jumping over a high crossbar with the aid of a long pole
+61740,poleax poleaxe,an ax used to slaughter cattle; has a hammer opposite the blade
+61741,poleax poleaxe,a battle ax used in the Middle Ages; a long handled ax and a pick
+61742,polecat fitch foulmart foumart Mustela_putorius,dark brown mustelid of woodlands of Eurasia that gives off an unpleasant odor when threatened
+61743,polemic,a controversy (especially over a belief or dogma)
+61744,polemicist polemist polemic,a writer who argues in opposition to others (especially in theology)
+61745,polemics,the branch of Christian theology devoted to the refutation of errors
+61746,polemonium,any plant of the genus Polemonium; most are low-growing often foul-smelling plants of temperate to Arctic regions
+61747,polenta,a thick mush made of cornmeal boiled in stock or water
+61748,police police_force constabulary law,the force of policemen and officers; "the law came looking for him"
+61749,police_academy,an academy for training police officers
+61750,police_action,a local military action without declaration of war; against violators of international peace and order
+61751,police_boat,a boat used by harbor police
+61752,police_commissioner,a civil commissioner appointed to supervise the duties and discipline of the police
+61753,police_court,a court that has power to prosecute for minor offenses and to bind over for trial in a superior court anyone accused of serious offenses
+61754,police_department,the department of local government concerned with enforcing the law and preventing crime
+61755,police_dog,any dog trained to assist police especially in tracking
+61756,police_matron policewoman,a woman policeman
+61757,police_precinct,a precinct in which law enforcement is the responsibility of particular police force
+61758,police_sergeant sergeant,a lawman with the rank of sergeant
+61759,police_squad squad,a small squad of policemen trained to deal with a particular kind of crime
+61760,police_state,a country that maintains repressive control over the people by means of police (especially secret police)
+61761,police_station police_headquarters station_house,a station that serves as headquarters for police in a particular district; serves as a place from which policemen are dispatched and to which arrested persons are brought
+61762,police_van police_wagon paddy_wagon patrol_wagon wagon black_Maria,van used by police to transport prisoners
+61763,police_work police_investigation,the investigation of criminal activities
+61764,policeman police_officer officer,a member of a police force; "it was an accident, officer"
+61765,policeman_bird black-necked_stork jabiru Xenorhyncus_asiaticus,large mostly white Australian stork
+61766,policy,a line of argument rationalizing the course of action of a government; "they debated the policy or impolicy of the proposed legislation"
+61767,policy,a plan of action adopted by an individual or social group; "it was a policy of retribution"; "a politician keeps changing his policies"
+61768,policy insurance_policy insurance,written contract or certificate of insurance; "you should have read the small print on your policy"
+61769,policy_maker,someone who sets the plan pursued by a government or business etc.; "policy makers often make the right decision for the wrong reason"
+61770,policyholder,a person who holds an insurance policy; usually, the client in whose name an insurance policy is written
+61771,poliomyelitis polio infantile_paralysis acute_anterior_poliomyelitis,an acute viral disease marked by inflammation of nerve cells of the brain stem and spinal cord
+61772,poliosis,loss of color from the hair
+61773,poliovirus,the virus causing poliomyelitis
+61774,poliovirus_vaccine,vaccine prepared from poliovirus to provide immunity to poliomyelitis
+61775,polish,a preparation used in polishing
+61776,polish gloss glossiness burnish,the property of being smooth and shiny
+61777,polish refinement culture cultivation finish,a highly developed state of perfection; having a flawless or impeccable quality; "they performed with great polish"; "I admired the exquisite refinement of his prose"; "almost an inspiration which gives to all work that finish which is almost art"--Joseph Conrad
+61778,politburo,the chief executive and political committee of the Communist Party
+61779,politeness civility,the act of showing regard for others
+61780,politeness niceness,a courteous manner that respects accepted social usage
+61781,political_action_committee PAC,committee formed by a special-interest group to raise money for their favorite political candidates
+61782,political_arena political_sphere,a sphere of intense political activity
+61783,political_campaign campaign run,a race between candidates for elective office; "I managed his campaign for governor"; "he is raising money for a Senate run"
+61784,political_contribution political_donation,a contribution made to a politician or a political campaign or a political party
+61785,political_correctness political_correctitude,avoidance of expressions or actions that can be perceived to exclude or marginalize or insult people who are socially disadvantaged or discriminated against
+61786,political_dissident,a dissenter from political orthodoxy
+61787,political_incorrectness,the use of expressions or actions that can be perceived to exclude or marginalize or insult groups who are socially disadvantaged or discriminated against
+61788,political_movement,a group of people working together to achieve a political goal
+61789,political_orientation ideology political_theory,an orientation that characterizes the thinking of a group or nation
+61790,political_prisoner,someone who is imprisoned because of their political views
+61791,political_scientist,a social scientist specializing in the study of government
+61792,political_system form_of_government,the members of a social organization who are in power
+61793,political_unit political_entity,a unit with political responsibilities
+61794,politician,a schemer who tries to gain advantage in an organization in sly or underhanded ways
+61795,politician,a leader engaged in civil administration
+61796,politician politico pol political_leader,a person active in party politics
+61797,politics,the activities and affairs involved in managing a state or a government; "unemployment dominated the politics of the inter-war years"; "government agencies multiplied beyond the control of representative politics"
+61798,politics,the profession devoted to governing and to political affairs
+61799,politics political_relation,social relations involving intrigue to gain authority or power; "office politics is often counterproductive"
+61800,politics political_science government,the study of government of states and other political units
+61801,politics political_sympathies,the opinion you hold with respect to political questions
+61802,polity,a politically organized unit
+61803,polity,shrewd or crafty management of public affairs; "we was innocent of stratagems and polity"
+61804,polka,music performed for dancing the polka
+61805,polka,a Bohemian dance with 3 steps and a hop in fast time
+61806,polka_dot,design consisting of a pattern of regularly spaced circular spots
+61807,poll,the part of the head between the ears
+61808,poll,the counting of votes (as in an election)
+61809,poll opinion_poll public_opinion_poll canvass,an inquiry into public opinion conducted by interviewing a random sample of people
+61810,poll poll_parrot,a tame parrot
+61811,poll_tax,a tax of a fixed amount per person and payable as a requirement for the right to vote
+61812,pollack pollock,lean white flesh of North Atlantic fish; similar to codfish
+61813,pollack pollock Pollachius_pollachius,important food and game fish of northern seas (especially the northern Atlantic); related to cod
+61814,pollard,a tree with limbs cut back to promote a more bushy growth of foliage
+61815,pollard,a usually horned animal that has either shed its horns or had them removed
+61816,pollen,the fine spores that contain male gametes and that are borne by an anther in a flowering plant
+61817,pollen_count,the number of pollen grains (usually ragweed) in a standard volume of air over a twenty-four hour period and a specified time and place
+61818,pollen_tube,(botany) a slender tubular outgrowth from a pollen grain when deposited on the stigma for a flower; it penetrates the style and conveys the male gametes to the ovule
+61819,pollination pollenation,transfer of pollen from the anther to the stigma of a plant
+61820,pollinator,an insect that carries pollen from one flower to another
+61821,polling_booth,a temporary booth in a polling place which people enter to cast their votes
+61822,polling_day election_day,the day appointed for an election; in the United States it is the 1st Tuesday after the 1st Monday in November
+61823,polling_place polling_station,a place where voters go to cast their votes in an election
+61824,pollinium,a coherent mass of pollen grains (as in orchids)
+61825,polls,the place where people vote
+61826,pollster poll_taker headcounter canvasser,someone who conducts surveys of public opinion; "a pollster conducts public opinion polls"; "a headcounter counts heads"
+61827,pollucite,a rare mineral that is an important source of cesium
+61828,pollutant,waste matter that contaminates the water or air or soil
+61829,polluter defiler,a person or organization that causes pollution of the environment
+61830,pollution,undesirable state of the natural environment being contaminated with harmful substances as a consequence of human activities
+61831,polo,a game similar to field hockey but played on horseback using long-handled mallets and a wooden ball
+61832,polo_ball,wooden ball that is struck with mallets in playing polo
+61833,polo_mallet polo_stick,a mallet used to strike the ball in polo
+61834,polo_pony,a small agile horse specially bred and trained for playing polo
+61835,polo_shirt sport_shirt,a shirt with short sleeves designed for comfort and casual wear
+61836,polonaise,a woman's dress with a tight bodice and an overskirt drawn back to reveal a colorful underskirt
+61837,polonium Po atomic_number_84,a radioactive metallic element that is similar to tellurium and bismuth; occurs in uranium ores but can be produced by bombarding bismuth with neutrons in a nuclear reactor
+61838,polony,another name for Bologna sausage
+61839,poltergeist,a ghost that announces its presence with rapping and the creation of disorder
+61840,poltroon craven recreant,an abject coward
+61841,poltroonery,abject pusillanimity
+61842,polyamide polymeric_amide,a polymer containing repeated amide groups
+61843,polyandrist,a woman with two or more husbands
+61844,polyandry,polygamy in which a woman has more than one husband at a time
+61845,polyanthus Primula_polyantha,florists' primroses; considered a complex hybrid derived from oxlip, cowslip, and common primrose
+61846,polyarteritis,inflammation of several arteries
+61847,polybutylene polybutene,a polymer of butylene; used in lubricants and synthetic rubber
+61848,polychaete polychete polychaete_worm polychete_worm,chiefly marine annelids possessing both sexes and having paired appendages (parapodia) bearing bristles
+61849,polychrome,a piece of work composed of or decorated in many colors
+61850,polyconic_projection,a conic projection of a map having distances between meridians equal to those distances on a globe
+61851,polycystic_kidney_disease PKD,kidney disease characterized by enlarged kidneys containing many cysts; often leads to kidney failure
+61852,polycythemia,a disorder characterized by an abnormal increase in the number of red blood cells in the blood
+61853,polydactyly hyperdactyly,birth defect characterized by the presence of more than the normal number of fingers or toes
+61854,polydipsia,excessive thirst (as in cases of diabetes or kidney dysfunction)
+61855,polyelectrolyte,an electrolyte of high molecular weight
+61856,polyester,any of numerous synthetic resins; they are light and strong and weather resistant
+61857,polyester,a complex ester used for making fibers or resins or plastics or as a plasticizer
+61858,polyester,any of a large class of synthetic fabrics
+61859,polyester_fiber,a quick-drying resilient synthetic fiber consisting primarily of polyester
+61860,polyethylene polythene,a lightweight thermoplastic; used especially in packaging and insulation
+61861,polyfoam polyurethane_foam,a foam made by adding water to polyurethane plastics
+61862,polygamist,someone who is married to two or more people at the same time
+61863,polygamy,the condition or practice of having more than one spouse at a time
+61864,polygene,a gene that by itself has little effect on the phenotype but which can act together with others to produce observable variations
+61865,polygenic_disorder polygenic_disease,an inherited disease controlled by several genes at once
+61866,polygon polygonal_shape,a closed plane figure bounded by straight sides
+61867,polygraph,a medical instrument that records several physiological processes simultaneously (e.g., pulse rate and blood pressure and respiration and perspiration)
+61868,polygynist,a man with two or more wives
+61869,polygyny,polygamy in which a man has more than one wife at a time
+61870,polyhedral_angle,the space enclosed by three or more planes that intersect in a vertex
+61871,polyhedron,a solid figure bounded by plane polygons or faces
+61872,polymastigote,flagellates with several flagella
+61873,polymath,a person of great and varied learning
+61874,polymer,a naturally occurring or synthetic compound consisting of large molecules made up of a linked series of repeated simple monomers
+61875,polymerase,an enzyme that catalyzes the formation of new DNA and RNA from an existing strand of DNA or RNA
+61876,polymerization polymerisation,a chemical process that combines several monomers to form a polymer or polymeric compound
+61877,polymethyl_methacrylate,a transparent plastic used as a substitute for glass
+61878,polymorph,an organism that can assume more than one adult form as in the castes of ants or termites
+61879,polymorphism,(genetics) the genetic variation within a population that natural selection can operate on
+61880,polymorphism,(biology) the existence of two or more forms of individuals within the same animal species (independent of sex differences)
+61881,polymorphism pleomorphism,(chemistry) the existence of different kinds of crystal of the same chemical compound
+61882,polymyositis,myositis characterized by weakness of limb and neck muscles and much muscle pain and swelling; progression and severity vary among individuals
+61883,polymyxin,any of several toxic antibiotics obtained from a particular soil bacterium
+61884,polyneuritis multiple_neuritis,inflammation of many or all of the peripheral nerves (as in leprosy)
+61885,polynomial multinomial,a mathematical function that is the sum of a number of terms
+61886,polynucleotide,(biochemistry) a linear polymer whose molecule is composed of many nucleotide units constituting a section of a nucleic acid molecule
+61887,polynya,a stretch of open water surrounded by ice (especially in Arctic seas)
+61888,polyoma polyoma_virus,a virus the can initiate various kinds of tumors in mice
+61889,polyp,one of two forms that coelenterates take (e.g. a hydra or coral): usually sedentary with a hollow cylindrical body usually with a ring of tentacles around the mouth; "in some species of coelenterate, polyps are a phase in the life cycle that alternates with a medusoid phase"
+61890,polyp polypus,a small vascular growth on the surface of a mucous membrane
+61891,polypectomy,surgical removal of a polyp
+61892,polypeptide,a peptide containing 10 to more than 100 amino acids
+61893,polyphemus_moth Antheraea_polyphemus,very large yellowish-brown American silkworm moth with large eyespots on hind wings; larvae feed on fruit and shade trees
+61894,polyphone polyphonic_letter,a letter that has two or more pronunciations; "`c' is a polyphone because it is pronounced like `k' in `car' but like `s' in `cell'"
+61895,polyphonic_prose,a rhythmical prose employing the poetic devices of alliteration and assonance
+61896,polyphony polyphonic_music concerted_music,music arranged in parts for several voices or instruments
+61897,polyphosphate,a salt or ester of polyphosphoric acid
+61898,polyphosphoric_acid,a series of oxyacids of phosphorus
+61899,polyploid,(genetics) an organism or cell having more than twice the haploid number of chromosomes
+61900,polyploidy,the condition of being polyploid
+61901,polypody,any of numerous ferns of the genus Polypodium
+61902,polypore pore_fungus pore_mushroom,woody pore fungi; any fungus of the family Polyporaceae or family Boletaceae having the spore-bearing surface within tubes or pores; the fruiting bodies are usually woody at maturity and persistent
+61903,polypropenonitrile Acrilan,acrylic resin used to make a strong soft crease-resistant fabric (trade name Acrilan)
+61904,polypropylene polypropene,a polymer of propylene used as a thermoplastic molding material
+61905,polyptoton,repetition of a word in a different case or inflection in the same sentence; "My own heart's heart"
+61906,polysaccharide polyose,any of a class of carbohydrates whose molecules contain chains of monosaccharide molecules
+61907,polysemant polysemantic_word polysemous_word,a word having more than one meaning
+61908,polysemy lexical_ambiguity,the ambiguity of an individual word or phrase that can be used (in different contexts) to express two or more different meanings
+61909,polysomy,congenital defect of having one or more extra chromosomes in somatic cells
+61910,polystyrene,a polymer of styrene; a rigid transparent thermoplastic; "expanded polystyrene looks like a rigid white foam and is used as packing or insulation"
+61911,polysyllable polysyllabic_word,a word of more than three syllables
+61912,polysyndeton,using several conjunctions in close succession, especially where some might be omitted (as in `he ran and jumped and laughed for joy')
+61913,polytechnic_institute polytechnic engineering_school,a technical school offering instruction in many industrial arts and applied sciences
+61914,polytheism,belief in multiple Gods
+61915,polytheist,one who believes in a plurality of gods
+61916,polytonality polytonalism,music that uses two or more different keys at the same time
+61917,polyunsaturated_fat,a class of fats having long carbon chains with many double bonds unsaturated with hydrogen atoms; used in some margarines; supposedly associated with low blood cholesterol
+61918,polyunsaturated_fatty_acid,an unsaturated fatty acid whose carbon chain has more than one double or triple valence bond per molecule; found chiefly in fish and corn and soybean oil and safflower oil
+61919,polyurethane polyurethan,any of various polymers containing the urethane radical; a wide variety of synthetic forms are made and used as adhesives or plastics or paints or rubber
+61920,polyuria,renal disorder characterized by the production of large volumes of pale dilute urine; often associated with diabetes
+61921,polyvalence polyvalency,(toxicology) the state of being capable of counteracting more than one toxin or antigen or kind of microorganism
+61922,polyvalence polyvalency multivalence multivalency,(chemistry) the state of having a valence greater than two
+61923,polyvinyl-formaldehyde,a polymer of vinyl formaldehyde
+61924,polyvinyl_acetate PVA,a vinyl polymer used especially in paints or adhesives
+61925,polyvinyl_chloride PVC,a polymer of vinyl chloride used instead of rubber in electric cables
+61926,pomade pomatum,hairdressing consisting of a perfumed oil or ointment
+61927,pome false_fruit,a fleshy fruit (apple or pear or related fruits) having seed chambers and an outer fleshy part
+61928,pomegranate,large globular fruit having many seeds with juicy red pulp in a tough brownish-red rind
+61929,pomegranate pomegranate_tree Punica_granatum,shrub or small tree native to southwestern Asia having large red many-seeded fruit
+61930,pomelo pomelo_tree pummelo shaddock Citrus_maxima Citrus_grandis Citrus_decumana,southeastern Asian tree producing large fruits resembling grapefruits
+61931,pomelo shaddock,large pear-shaped fruit similar to grapefruit but with coarse dry pulp
+61932,pomfret Brama_raii,deep-bodied sooty-black pelagic spiny-finned fish of the northern Atlantic and northern Pacific; valued for food
+61933,pommel,a handgrip that a gymnast uses when performing exercises on a pommel horse
+61934,pommel saddlebow,handgrip formed by the raised front part of a saddle
+61935,pommel_horse side_horse,a gymnastic horse with a cylindrical body covered with leather and two upright handles (pommels) near the center; held upright by two steel supports, one at each end
+61936,pommy pom,a disparaging term for a British person
+61937,pomologist,someone versed in pomology or someone who cultivates fruit trees
+61938,pomology,the branch of botany that studies and cultivates fruits
+61939,pomp eclat,ceremonial elegance and splendor; "entered with much eclat in a coach drawn by eight white horses"
+61940,pompadour,a hair style in which the front hair is swept up from the forehead
+61941,pompano,flesh of pompano; warm-water fatty fish
+61942,pompano,any of several deep-bodied food fishes of western Atlantic and Gulf of Mexico
+61943,pompon black_margate Anisotremus_surinamensis,dusky grey food fish found from Louisiana and Florida southward
+61944,pompon pom-pom,decoration consisting of a ball of tufted wool or silk; usually worn on a hat
+61945,ponce,a man who is effeminate in his manner and fussy in the way he dresses
+61946,poncho,a blanket-like cloak with a hole in the center for the head
+61947,pond pool,a small lake; "the pond was too small for sailing"
+61948,pond-scum_parasite,an aquatic fungus of genus Synchytriaceae that is parasitic on pond scum
+61949,pond_apple,ovoid yellow fruit with very fragrant peach-colored flesh; related to custard apples
+61950,pond_apple pond-apple_tree Annona_glabra,small evergreen tree of tropical America with edible fruit; used chiefly as grafting stock
+61951,pond_cypress bald_cypress Taxodium_ascendens,smaller than and often included in the closely related Taxodium distichum
+61952,pond_pine Pinus_serotina,large three-needled pine of sandy swamps of southeastern United States; needles longer than those of the northern pitch pine
+61953,pond_scum,free-floating freshwater green algae
+61954,ponderosa ponderosa_pine western_yellow_pine bull_pine Pinus_ponderosa,common and widely distributed tall timber pine of western North America having dark green needles in bunches of 2 to 5 and thick bark with dark brown plates when mature
+61955,ponderousness heaviness,an oppressive quality that is laborious and solemn and lacks grace or fluency; "a book so serious that it sometimes subsided into ponderousness"; "his lectures tend to heaviness and repetition"
+61956,pondweed,any of several submerged or floating freshwater perennial aquatic weeds belonging to the family Potamogetonaceae
+61957,pongee,a soft thin cloth woven from raw silk (or an imitation)
+61958,poniard bodkin,a dagger with a slender blade
+61959,pons pons_Varolii,a band of nerve fibers linking the medulla oblongata and the cerebellum with the midbrain
+61960,pons_asinorum,a problem that severely tests the ability of an inexperienced person
+61961,pontifex,a member of the highest council of priests in ancient Rome
+61962,pontifical,the vestments and other insignia of a pontiff (especially a bishop)
+61963,pontoon,(nautical) a floating structure (as a flat-bottomed boat) that serves as a dock or to support a bridge
+61964,pontoon,a float supporting a seaplane
+61965,pontoon_bridge bateau_bridge floating_bridge,a temporary bridge built over a series of pontoons
+61966,pony,an informal term for a racehorse; "he liked to bet on the ponies"
+61967,pony,any of various breeds of small gentle horses usually less than five feet high at the shoulder
+61968,pony,a range horse of the western United States
+61969,pony trot crib,a literal translation used in studying a foreign language (often used illicitly)
+61970,pony-trekking,a sport in which people ride across country on ponies
+61971,pony_cart ponycart donkey_cart tub-cart,a cart with an underslung axle and two seats
+61972,pony_express,express mail carried by relays of riders on horseback; especially between Missouri and California around 1860
+61973,ponytail,a hair style that draws the hair back so that it hangs down in back of the head like a pony's tail
+61974,pooch doggie doggy barker bow-wow,informal terms for dogs
+61975,pood,a Russian unit of weight equal to approximately 36 pounds
+61976,poodle poodle_dog,an intelligent dog with a heavy curly solid-colored coat that is usually clipped; an old breed sometimes trained as sporting dogs or as performing dogs
+61977,pool,any communal combination of funds; "everyone contributed to the pool"
+61978,pool,an organization of people or resources that can be shared; "a car pool"; "a secretarial pool"; "when he was first hired he was assigned to the pool"
+61979,pool,an excavation that is (usually) filled with water
+61980,pool kitty,the combined stakes of the betters
+61981,pool pocket_billiards,any of various games played on a pool table having 6 pockets
+61982,pool puddle,a small body of standing water (rainwater) or other liquid; "there were puddles of muddy water in the road after the rain"; "the body lay in a pool of blood"
+61983,pool puddle,something resembling a pool of liquid; "he stood in a pool of light"; "his chair sat in a puddle of books and magazines"
+61984,pool_ball,ball used in playing pool
+61985,pool_player,someone who shoots pool
+61986,pool_table billiard_table snooker_table,game equipment consisting of a heavy table on which pool is played
+61987,pooler,someone who shares in and contributes to a general fund for use by all
+61988,pooling_of_interest,an accounting method used in the merging of companies; the balance sheets are added together item by item; this method is tax-free
+61989,poolroom,a room with pool tables where pool is played
+61990,poon,wood of any poon tree; used for masts and spars
+61991,poon,any of several East Indian trees of the genus Calophyllum having shiny leathery leaves and lightweight hard wood
+61992,poop_deck,an exposed partial weather deck on the stern superstructure of a ship
+61993,poor_box alms_box mite_box,box for collecting alms, especially one in a church
+61994,poor_devil wretch,someone you feel sorry for
+61995,poor_law,a law providing support for the poor
+61996,poor_people poor,people without possessions or wealth (considered as a group); "the urban poor need assistance"
+61997,poor_person have-not,a person with few or no possessions
+61998,poor_rates,a local tax for the relief of the poor
+61999,poorhouse,an establishment maintained at public expense in order to provide housing for the poor and homeless
+62000,poorness,less than adequate; "the relative poorness of New England farmland"
+62001,poorness,the quality of being poorly made or maintained; "she was unrecognizable because of the poorness of the photography"
+62002,poorwill Phalaenoptilus_nuttallii,goatsucker of western North America
+62003,pop popping,a sharp explosive sound as from a gunshot or drawing a cork
+62004,pop soda soda_pop soda_water tonic,a sweet drink containing carbonated water and flavoring; "in New England they call sodas tonics"
+62005,pop-up_book pop-up,a book (usually for children) that contains one or more pages such that a three-dimensional structure rises up when a page is opened
+62006,pop_bottle soda_bottle,a bottle for holding soft drinks
+62007,pop_fly pop-fly pop-up,a short high fly ball
+62008,pop_group,a group that plays pop music
+62009,pop_music pop,music of general appeal to teenagers; a bland watered-down version of rock'n'roll with more rhythm and harmony and an emphasis on romantic love
+62010,pop_quiz,a quiz given without prior warning
+62011,pop_tent,a small tent that is easy to carry and quick to set up
+62012,popcorn,small kernels of corn exploded by heat
+62013,popcorn Zea_mays_everta,corn having small ears and kernels that burst when exposed to dry heat
+62014,popcorn_ball,popcorn combined with a thick sugar or molasses or caramel syrup and formed into balls
+62015,pope Catholic_Pope Roman_Catholic_Pope pontiff Holy_Father Vicar_of_Christ Bishop_of_Rome,the head of the Roman Catholic Church
+62016,popery papism,offensive terms for the practices and rituals of the Roman Catholic Church
+62017,popgun,plaything consisting of a toy gun that makes a popping sound
+62018,popinjay,a vain and talkative person (chatters like a parrot)
+62019,popinjay,an archaic term for a parrot
+62020,poplar,soft light-colored non-durable wood of the poplar
+62021,poplar poplar_tree,any of numerous trees of north temperate regions having light soft wood and flowers borne in catkins
+62022,poplin,a ribbed fabric used in clothing and upholstery
+62023,popliteal_artery arteria_poplitea,a continuation of the femoral artery that branches to supply the legs and feet
+62024,popliteal_vein vena_poplitea,a vein arising in the knee and ascending to become the femoral vein
+62025,popover,light hollow muffin made of a puff batter (individual Yorkshire pudding) baked in a deep muffin cup
+62026,popper,a container of stimulant drug (amyl nitrate or butyl nitrite)
+62027,popper,a container for cooking popcorn
+62028,poppet poppet_valve,a mushroom-shaped valve that rises perpendicularly from its seat; commonly used in internal-combustion engines
+62029,poppy,annual or biennial or perennial herbs having showy flowers
+62030,poppy_mallow,a plant of the genus Callirhoe having palmately cleft leaves and white to red or purple flowers borne throughout the summer
+62031,poppy_seed,small grey seed of a poppy flower; used whole or ground in baked items
+62032,populace public world,people in general considered as a whole; "he is a hero in the eyes of the public"
+62033,popular_front,a leftist coalition organized against a common opponent
+62034,popular_music popular_music_genre,any genre of music having wide appeal (but usually only for a short time)
+62035,popularism,music adapted to the understanding and taste of the majority
+62036,popularity,the quality of being widely admired or accepted or sought after; "his charm soon won him affection and popularity"; "the universal popularity of American movies"
+62037,popularity_contest,competition (real or figurative) for popular support
+62038,popularization popularisation,an interpretation that easily understandable and acceptable
+62039,popularization popularisation vulgarization vulgarisation,the act of making something attractive to the general public
+62040,popularizer populariser vulgarizer vulgariser,someone who makes something attractive to the general public
+62041,population,the number of inhabitants (either the total number or the number of a particular race or class) in a given place (country or city etc.); "people come and go, but the population of this town has remained approximately constant for the past decade"; "the African-American population of Salt Lake City has been increasing"
+62042,population,the people who inhabit a territory or state; "the population seemed to be well fed and clothed"
+62043,population,a group of organisms of the same species inhabiting a given area; "they hired hunters to keep down the deer population"
+62044,population,the act of populating (causing to live in a place); "he deplored the population of colonies with convicted criminals"
+62045,population universe,(statistics) the entire aggregation of items from which samples can be drawn; "it is an estimate of the mean of the population"
+62046,population_control,control over the growth of population; a government program
+62047,population_growth,increase in the number of people who inhabit a territory or state
+62048,population_profile,a chart showing the number of people as a function of their ages
+62049,population_shift,a change in the relative numbers of the different groups of individuals making up a population
+62050,populism,the political doctrine that supports the rights and powers of the common people in their struggle with the privileged elite
+62051,populist,someone who advocates the rights of the common people over those of the elite
+62052,porbeagle Lamna_nasus,voracious pointed-nose shark of northern Atlantic and Pacific
+62053,porcelain,ceramic ware made of a more or less translucent ceramic
+62054,porch,a structure attached to the exterior of a building often forming a covered entrance
+62055,porcupine hedgehog,relatively large rodents with sharp erectile bristles mingled with the fur
+62056,porcupine_ball porcupines,meat patties rolled in rice and simmered in a tomato sauce
+62057,porcupinefish porcupine_fish Diodon_hystrix,spines become erect when the body is inflated; worldwide in warm waters
+62058,pore,any tiny hole admitting passage of a liquid (fluid or gas)
+62059,pore,any small opening in the skin or outer surface of an animal
+62060,porgy,important deep-bodied food and sport fish of warm and tropical coastal waters; found worldwide
+62061,porgy scup,lean flesh of fish found in warm waters of southern Atlantic coast of the United States
+62062,pork porc,meat from a domestic hog or pig
+62063,pork-and-veal_goulash,made with sauerkraut and caraway seeds and served with sour cream
+62064,pork-barreling,acquisition of government money for benefits to a specific locale; "keeps his hold on his constituents through unashamed pork-barreling"
+62065,pork_and_beans,dried beans cooked with pork and tomato sauce
+62066,pork_barrel pork,a legislative appropriation designed to ingratiate legislators with their constituents
+62067,pork_belly,side of fresh pork
+62068,pork_butcher,a vendor of pork and products made from pork
+62069,pork_loin,meat from a loin of pork
+62070,pork_pie,small pie filled with minced seasoned pork
+62071,pork_roast roast_pork,cut of pork suitable for roasting
+62072,pork_sausage,sausage containing pork
+62073,pork_tenderloin,pork loin muscle
+62074,porkchop,chop cut from a hog
+62075,porker,a pig fattened to provide meat
+62076,porkfish pork-fish Anisotremus_virginicus,black and gold grunt found from Bermuda to Caribbean to Brazil
+62077,porkholt,made of lamb or pork
+62078,porkpie porkpie_hat,man's hat with a low, flat crown and a snap brim
+62079,pornographer porn_merchant,someone who presents shows or sells writing or pictures that are sexually explicit in violation of the community mores
+62080,pornography porno porn erotica smut,creative activity (writing or pictures or films etc.) of no literary or artistic value other than to stimulate sexual desire
+62081,porosity porousness,the property of being porous; being able to absorb fluids
+62082,porphyria,a genetic abnormality of metabolism causing abdominal pains and mental confusion
+62083,porphyrin,any of various pigments distributed widely in living tissues
+62084,porphyry porphyritic_rock,any igneous rock with crystals embedded in a finer groundmass of minerals
+62085,porpoise,any of several small gregarious cetacean mammals having a blunt snout and many teeth
+62086,porpoise_oil,a yellow fatty oil obtained from porpoises and used as a fine lubricant
+62087,porridge,soft food made by boiling oatmeal or other meal or legumes in water or milk until thick
+62088,porringer,a shallow metal bowl (usually with a handle); "the child was eating pottage from a porringer"
+62089,port,a place (seaport or airport) where people and merchandise can enter or leave a country
+62090,port embrasure porthole,an opening (in a wall or ship or armored vehicle) for firing through
+62091,port port_wine,sweet dark-red dessert wine originally from Portugal
+62092,port-access_coronary_bypass_surgery,heart surgery in which a coronary bypass is performed by the use of small instruments and tiny cameras threaded through small incisions while the heart is stopped and blood is pumped through a heart-lung machine
+62093,port-wine_stain nevus_flammeus,a flat birthmark varying from pink to purple
+62094,port_of_call,any port where a ship stops except its home port
+62095,port_of_entry point_of_entry,a port in the United States where customs officials are stationed to oversee the entry and exit of people and merchandise
+62096,porta_hepatis,opening for major blood vessels to enter and leave the liver
+62097,portability,the quality of being light enough to be carried
+62098,portable,a small light typewriter; usually with a case in which it can be carried
+62099,portable_circular_saw portable_saw,a circular saw that is portable and is operated with a hand grip
+62100,portable_computer,a personal computer that can easily be carried by hand
+62101,portacaval_shunt,shunt that is created surgically between the portal vein and the inferior vena cava so that blood from the abdominal organs can bypass the liver
+62102,portage,the cost of carrying or transporting
+62103,portage,overland track between navigable waterways
+62104,portage,carrying boats and supplies overland
+62105,portal,a grand and imposing entrance (often extended metaphorically); "the portals of the cathedral"; "the portals of heaven"; "the portals of success"
+62106,portal_hypertension,increase in blood pressure in the veins of the portal system caused by obstruction in the liver (often associated with alcoholic cirrhosis), causing enlargement of the spleen and collateral veins
+62107,portal_site portal,a site that the owner positions as an entrance to other sites on the internet; "a portal typically has search engines and free email and chat rooms etc."
+62108,portal_system,system of veins that carry blood from the abdominal organs to the liver
+62109,portal_vein hepatic_portal_vein portal vena_portae,a short vein that carries blood into the liver
+62110,portcullis,gate consisting of an iron or wooden grating that hangs in the entry to a castle or fortified town; can be lowered to prevent passage
+62111,porte-cochere,a carriage entrance passing through a building to an enclosed courtyard
+62112,porte-cochere,canopy extending out from a building entrance to shelter those getting in and out of vehicles
+62113,porter,a person employed to carry luggage and supplies
+62114,porter Pullman_porter,a railroad employee who assists passengers (especially on sleeping cars)
+62115,porter porter's_beer,a very dark sweet ale brewed from roasted unmalted barley
+62116,porterage,the charge for carrying burdens by porters
+62117,porterage,the transportation of burdens by porters
+62118,porterhouse porterhouse_steak,large steak from the thick end of the short loin containing a T-shaped bone and large piece of tenderloin
+62119,portfolio,a set of pieces of creative work collected to be shown to potential customers or employers; "the artist had put together a portfolio of his work"; "every actor has a portfolio of photographs"
+62120,portfolio,a list of the financial assets held by an individual or a bank or other financial institution; "they were disappointed by the poor returns on their stock portfolio"
+62121,portfolio,a large, flat, thin case for carrying loose papers or drawings or maps; usually leather; "he remembered her because she was carrying a large portfolio"
+62122,portfolio,the role of the head of a government department; "he holds the portfolio for foreign affairs"
+62123,porthole,a window in a ship or airplane
+62124,portia_tree bendy_tree seaside_mahoe Thespesia_populnea,pantropical tree of usually seacoasts sometimes cultivated as an ornamental for its rounded heart-shaped leaves and showy yellow and purple flowers; yields valuable pink to dark red close-grained wood and oil from its seeds
+62125,portico,a porch or entrance to a building consisting of a covered and often columned area
+62126,portiere,a heavy curtain hung across a doorway
+62127,portmanteau Gladstone Gladstone_bag,a large travelling bag made of stiff leather
+62128,portrait portrayal,any likeness of a person, in any medium; "the photographer made excellent portraits"
+62129,portrait_camera,a camera with a portrait lens
+62130,portrait_lens,a compound camera lens with a relatively high aperture
+62131,portraitist portrait_painter portrayer limner,a painter or drawer of portraits
+62132,portraiture,the activity of making portraits
+62133,portrayal characterization enactment personation,acting the part of a character on stage; dramatically representing the character by speech and action and gesture
+62134,portrayal portraiture portrait,a word picture of a person's appearance and character
+62135,portulaca,a plant of the genus Portulaca having pink or red or purple or white ephemeral flowers
+62136,portwatcher port_watcher,a watchman on a wharf
+62137,pose,a posture assumed by models for photographic or artistic purposes
+62138,poser stumper toughie sticker,a particularly difficult or baffling question or problem
+62139,poseur poser,a person who habitually pretends to be something he is not
+62140,poseuse,a woman poseur
+62141,position,the appropriate or customary location; "the cars were in position"
+62142,position,(in team sports) the role assigned to an individual player; "what position does he play?"
+62143,position,the act of positing; an assumption taken as a postulate or axiom
+62144,position place,the particular portion of space occupied by something; "he put the lamp back in its place"
+62145,position post berth office spot billet place situation,a job in an organization; "he occupied a post in the treasury"
+62146,position posture attitude,the arrangement of the body and its limbs; "he assumed an attitude of surrender"
+62147,position spatial_relation,the spatial property of a place where or way in which something is situated; "the position of the hands on the clock"; "he specified the spatial relations of every piece of furniture on the stage"
+62148,position stance posture,a rationalized mental attitude
+62149,position view perspective,a way of regarding situations or topics etc.; "consider what follows from the positivist view"
+62150,position_effect,(genetics) the effect on the expression of a gene that is produced by changing its location in a chromosome
+62151,position_paper,a report that explains or justifies or recommends some particular policy
+62152,positional_notation positional_representation_system,a numeration system in which a real number is represented by an ordered set of characters where the value of a character depends on its position
+62153,positive,a film showing a photographic image whose tones correspond to those of the original subject
+62154,positive positive_degree,the primary form of an adjective or adverb; denotes a quality without qualification, comparison, or relation to increase or diminution
+62155,positive_charge,having a deficiency of electrons; having a higher electric potential
+62156,positive_chemotaxis,movement toward a chemical stimulus
+62157,positive_correlation direct_correlation,a correlation in which large values of one variable are associated with large values of the other and small with small; the correlation coefficient is between 0 and +1
+62158,positive_feedback regeneration,feedback in phase with (augmenting) the input
+62159,positive_identification,evidence proving that you are who you say you are; evidence establishing that you are among the group of people already known to the system; recognition by the system leads to acceptance; "a system for positive identification can prevent the use of a single identity by several people"
+62160,positive_pole,the terminal of a battery that is connected to the positive plate
+62161,positive_pole positive_magnetic_pole north-seeking_pole,the pole of a magnet that points toward the north when the magnet is suspended freely
+62162,positive_reinforcing_stimulus positive_reinforcer,a reinforcing stimulus that serves to increase the likelihood of the response that produces it
+62163,positive_stimulus,a stimulus with desirable consequences
+62164,positivism logical_positivism,the form of empiricism that bases all knowledge on perceptual experience (not on intuition or revelation)
+62165,positivist rationalist,someone who emphasizes observable facts and excludes metaphysical speculation about origins or ultimate causes
+62166,positivity positiveness,the character of the positive electric pole
+62167,positivity positiveness,an amount greater than zero
+62168,positivity positiveness positivism,a quality or state characterized by certainty or acceptance or affirmation and dogmatic assertiveness
+62169,positron antielectron,an elementary particle with positive charge; interaction of a positron and an electron results in annihilation
+62170,positron_emission_tomography PET,using a computerized radiographic technique to examine the metabolic activity in various tissues (especially in the brain)
+62171,positron_emission_tomography_scanner PET_scanner,a tomograph that produces cross-sectional X-rays of metabolic processes in the body
+62172,posology,the pharmacological determination of appropriate doses of drugs and medicines
+62173,posse posse_comitatus,a temporary police force
+62174,posseman,an able-bodied man serving as a member of a posse
+62175,possession,being controlled by passion or the supernatural
+62176,possession,a territory that is controlled by a ruling state
+62177,possession,(sport) the act of controlling the ball (or puck); "they took possession of the ball on their own goal line"
+62178,possession,anything owned or possessed
+62179,possession ownership,the act of having and controlling property
+62180,possessiveness,excessive desire to possess or dominate
+62181,posset,sweet spiced hot milk curdled with ale or beer
+62182,possibility,a future prospect or potential; "this room has great possibilities"
+62183,possibility possible_action opening,a possible alternative; "bankruptcy is always a possibility"
+62184,possibility possibleness,capability of existing or happening or being true; "there is a possibility that his sense of smell has been impaired"
+62185,possible,an applicant who might be suitable
+62186,possible,something that can be done; "politics is the art of the possible"
+62187,post,an upright consisting of a piece of timber or metal fixed firmly in an upright position; "he set a row of posts in the ground and strung barbwire between them"
+62188,post,the delivery and collection of letters and packages; "it came by the first post"; "if you hurry you'll catch the post"
+62189,post stake,a pole or stake set up to mark something (as the start or end of a race track); "a pair of posts marked the goal"; "the corner of the lot was indicated by a stake"
+62190,post station,the position where someone (as a guard or sentry) stands or is assigned to stand; "a soldier manned the entrance post"; "a sentry station"
+62191,post-maturity post-menopause,the state in which women have stopped ovulating
+62192,post-obit_bond,a bond made by a reversioner to secure a loan; payable out of his reversion
+62193,post-office_box_number PO_box_number PO_Box_No box_number,the number of a letter box at the post office where mail is collected
+62194,post-rotational_nystagmus,nystagmus caused by suddenly stopping the rapid rotation of the body; large slow movements of the eyeballs are in the direction opposite to the direction of rotation
+62195,post_and_lintel,a structure consisting of vertical beams (posts) supporting a horizontal beam (lintel)
+62196,post_chaise,closed horse-drawn carriage with four wheels; formerly used to transport passengers and mail
+62197,post_exchange PX,a commissary on a United States Army post
+62198,post_hoc post_hoc_ergo_propter_hoc,the logical fallacy of believing that temporal succession implies a causal relation
+62199,post_horn,wind instrument used by postilions of the 18th and 19th centuries
+62200,post_horse post-horse poster,a horse kept at an inn or post house for use by mail carriers or for rent to travelers
+62201,post_oak box_white_oak brash_oak iron_oak Quercus_stellata,small deciduous tree of eastern and central United States having dark green lyrate pinnatifid leaves and tough moisture-resistant wood used especially for fence posts
+62202,post_office,a children's game in which kisses are exchanged for pretended letters
+62203,post_office local_post_office,a local branch where postal services are available
+62204,post_road,a road over which mail is carried
+62205,postage,the charge for mailing something
+62206,postage postage_stamp stamp,a small adhesive token stuck on a letter or package to indicate that that postal fees have been paid
+62207,postage_meter,meter for bulk mailings that imprints correct prepaid postage on pieces of mail and records the total charge
+62208,postal_clerk mail_clerk,a clerk in a post office
+62209,postbox mailbox letter_box,public box for deposit of mail
+62210,postcard post_card postal_card mailing-card,a card for sending messages by post without an envelope
+62211,postcentral_gyrus,the convolution of parietal lobe that is bounded in front by the central sulcus
+62212,postdiluvian,anything living after Noah's flood
+62213,postdoc post_doc,a scholar or researcher who is involved in academic study beyond the level of a doctoral degree
+62214,postdoctoral postdoc post_doc,a grant that funds postdoctoral study or research
+62215,poste_restante,a notation written on mail that is to be held at the post office until called for (not in the United States or Canada)
+62216,poster posting placard notice bill card,a sign posted in a public place as an advertisement; "a poster advertised the coming attractions"
+62217,poster_boy,a male poster child
+62218,poster_child,a child afflicted by some disease or deformity whose picture is used on posters to raise money for charitable purposes; "she was the poster child for muscular dystrophy"
+62219,poster_girl,a female poster child
+62220,posterior_cardinal_vein,a major drainage channel from the caudal part of the body
+62221,posterior_cerebral_artery,arises from the basilar artery; divides into three branches
+62222,posterior_meningeal_artery,branch of the ascending pharyngeal artery that supplies the dura mater of the posterior cranial fossa
+62223,posterior_naris,either one of the two posterior openings at the back of the nasal cavity leading to the nasopharynx
+62224,posterior_pituitary posterior_pituitary_gland neurohypophysis pars_nervosa,the posterior lobe of the pituitary body; primarily glandular in nature
+62225,posterior_serratus_muscle serratus_posterior musculus_serratus_posterior,skeletal muscle that draws the rib cage backward and downward
+62226,posterior_subcapsular_cataract,a cataract in the rear of the lens capsule
+62227,posterior_synechia,adhesion between the iris and the lens
+62228,posterior_temporal_artery arteria_temporalis_posterior,temporal artery that supplies the posterior part of the cortex of the temporal lobe
+62229,posterior_vein_of_the_left_ventricle vena_posterior_ventriculi_sinistri,arises near the apex of the heart and empties into the coronary sinus
+62230,posteriority,the quality of being toward the back or toward the rear end
+62231,posteriority subsequentness subsequence,following in time
+62232,posterity,all future generations
+62233,postern,a small gate in the rear of a fort or castle
+62234,postfix_notation suffix_notation reverse_Polish_notation,a parenthesis-free notation for forming mathematical expressions in which each operator follows its operands
+62235,posthitis,inflammation of the foreskin of the penis; usually caused by bacterial infection
+62236,posthole post_hole,a hole dug in the ground to hold a fence post
+62237,posthole_digger post-hole_digger,a shovel used to sink postholes
+62238,posthouse post_house,an inn for exchanging post horses and accommodating riders
+62239,posthumous_birth,birth of a child after the father has died
+62240,posthumous_birth,birth of a child by Caesarean section after the death of the mother
+62241,posthypnotic_amnesia,selective amnesia after being in a hypnotic state of events occurring during hypnosis or of information designated by the hypnotist
+62242,posthypnotic_suggestion,a suggestion that is made to a person who is hypnotized that specifies an action he will perform (usually in response to a cue) after he has awakened
+62243,postilion postillion,someone who rides the near horse of a pair in order to guide the horses pulling a carriage (especially a carriage without a coachman)
+62244,posting,(bookkeeping) a listing on the company's records; "the posting was made in the cash account"
+62245,postlude,a voluntary played at the end of a religious service
+62246,postmark,a cancellation mark stamped on mail by postal officials; indicates the post office and date of mailing
+62247,postmaster,the person in charge of a post office
+62248,postmaster_general,the official in charge of the national postal service
+62249,postmature_infant,infant born after 42 weeks of gestation; usually shows signs of placental insufficiency
+62250,postmistress,a woman postmaster
+62251,postmodernism,genre of art and literature and especially architecture in reaction against principles and practices of established modernism
+62252,postmortem post-mortem,discussion of an event after it has occurred
+62253,postnasal_drip,chronic secretion of mucus from the rear of the nasal cavity into the nasopharynx
+62254,postponement deferment deferral,act of putting off to a future time
+62255,postposition,(linguistics) the placing of one linguistic element after another (as placing a modifier after the word that it modifies in a sentence or placing an affix after the base to which it is attached)
+62256,postscript PS,a note appended to a letter after the signature
+62257,posttraumatic_epilepsy traumatic_epilepsy,a convulsive epileptic state caused by a head injury
+62258,posttraumatic_stress_disorder PTSD,an anxiety disorder associated with serious traumatic events and characterized by such symptoms as survivor guilt, reliving the trauma in dreams, numbness and lack of involvement with reality, or recurrent thoughts and images
+62259,postulant,one submitting a request or application especially one seeking admission into a religious order
+62260,postulate posit,(logic) a proposition that is accepted as true in order to provide a basis for logical reasoning
+62261,postulation predication,(logic) a declaration of something self-evident; something that can be assumed as the basis for argument
+62262,postulator,(Roman Catholic Church) someone who proposes or pleads for a candidate for beatification or canonization
+62263,postulator,someone who assumes or takes something for granted as the basis of an argument
+62264,posturer,someone who behaves in a manner calculated to impress or mislead others
+62265,posturing,adopting a vain conceited posture
+62266,pot,metal or earthenware cooking vessel that is usually round and deep; often has a handle and lid
+62267,pot flowerpot,a container in which plants are cultivated
+62268,pot grass green_goddess dope weed gage sess sens smoke skunk locoweed Mary_Jane,street names for marijuana
+62269,pot jackpot kitty,the cumulative amount involved in a game (such as poker)
+62270,pot potbelly bay_window corporation tummy,slang for a paunch
+62271,pot potful,the quantity contained in a pot
+62272,pot-au-feu,traditional French stew of vegetables and beef
+62273,pot_farm,a plot of ground where marijuana is grown and harvested (often hidden in a national forest)
+62274,pot_metal,cast iron used for making cooking wares
+62275,pot_metal,an alloy of copper and lead used especially for making large pots
+62276,pot_plant,a plant suitable for growing in a flowerpot (especially indoors)
+62277,pot_roast,cut of beef suitable for simmering in liquid in a closed pot
+62278,potage pottage,thick (often creamy) soup
+62279,potash caustic_potash potassium_hydroxide,a potassium compound often used in agriculture and industry
+62280,potassium K atomic_number_19,a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite
+62281,potassium-argon_dating,geological dating that relies on the proportions of radioactive potassium in a rock sample and its decay product, argon
+62282,potassium_bicarbonate potassium_acid_carbonate potassium_hydrogen_carbonate,a crystalline salt (KHCO3) that is used in baking powder and as an antacid
+62283,potassium_bromide,a white crystalline salt (KBr) used as a sedative and in photography
+62284,potassium_carbonate,a white salt (K2CO3) that is basic in solution; used to make glass and cleansing agents
+62285,potassium_chlorate,a white salt (KClO3) used in matches, fireworks, and explosives; also used as a disinfectant and bleaching agent
+62286,potassium_chloride potassium_muriate potash_muriate K-Dur_20 Kaochlor K-lor Klorvess K-lyte,salt of potassium (KCl) (trade names K-Dur 20, Kaochlor and K-lor and Klorvess and K-lyte); taken in tablet form to treat potassium deficiency
+62287,potassium_cyanide,a poisonous salt (KCN) used in electroplating and in photography
+62288,potassium_dichromate,an orange-red salt used in making dyes and in photography
+62289,potassium_ferrocyanide yellow_prussiate_of_potash,a cyanide compound that is prepared by the reaction of potassium cyanide with ferrous salts; commonly used by gardeners
+62290,potassium_iodide,a crystalline salt in organic synthesis and in making photographic emulsions and in iodized table salt
+62291,potassium_nitrate saltpeter saltpetre niter nitre,(KNO3) used especially as a fertilizer and explosive
+62292,potassium_permanganate permanganate_of_potash,a poisonous salt that forms dark purple crystals and is purple-red when dissolved in water; used as an oxidizing and bleaching agent and as a disinfectant and antiseptic
+62293,potation,the act of drinking (especially an alcoholic drink)
+62294,potato white_potato Irish_potato murphy spud tater,an edible tuber native to South America; a staple food of Ireland
+62295,potato white_potato white_potato_vine Solanum_tuberosum,annual native to South America having underground stolons bearing edible starchy tubers; widely cultivated as a garden vegetable; vines are poisonous
+62296,potato_blight potato_mold potato_disease potato_mildew potato_murrain,a blight of potatoes
+62297,potato_fern Marattia_salicina,large Australasian evergreen fern with an edible rhizome sometimes used as a vegetable by indigenous people
+62298,potato_fern Solanopteris_bifrons,small epiphytic fern of South America with tuberous swellings along rhizomes
+62299,potato_fungus Pellicularia_filamentosa Rhizoctinia_solani,fungus causing a disease in potatoes characterized by black scurfy spots on the tubers
+62300,potato_mosaic,a disease of the leaves of potato plants
+62301,potato_moth potato_tuber_moth splitworm Phthorimaea_operculella,greyish-brown moth whose larva is the potato tuberworm
+62302,potato_pancake latke,made of grated potato and egg with a little flour
+62303,potato_race,a novelty race in which competitors move potatoes from one place to another one at a time
+62304,potato_salad,any of various salads having chopped potatoes as the base
+62305,potato_scab_bacteria Streptomyces_scabies,cause of a potato disease characterized by brownish corky tissue
+62306,potato_skin potato_peel potato_peelings,crisp fried potato peeling
+62307,potato_tree Brazilian_potato_tree Solanum_wrightii Solanum_macranthum,South American shrub or small tree widely cultivated in the tropics; not a true potato
+62308,potato_tree Solanum_crispum,hardy climbing shrub of Chile grown as an ornamental for its fragrant flowers; not a true potato
+62309,potato_tuberworm Phthorimaea_operculella,larva of potato moth; mines in leaves and stems of e.g. potatoes and tobacco
+62310,potato_vine Solanum_jasmoides,copiously branched vine of Brazil having deciduous leaves and white flowers tinged with blue
+62311,potato_vine giant_potato_creeper Solanum_wendlandii,vine of Costa Rica sparsely armed with hooklike spines and having large lilac-blue flowers
+62312,potato_wart,fungous disease causing dark warty spongy excrescences in the eyes of potato tubers
+62313,potato_wart_fungus Synchytrium_endobioticum,fungus causing potato wart disease in potato tubers
+62314,potato_yellow-dwarf_virus,the virus that produces stunting and yellowing of the leaves of potato plants
+62315,potbelly potbelly_stove,a bulbous stove in which wood or coal is burned
+62316,potboiler,a literary composition of poor quality that was written quickly to make money (to boil the pot)
+62317,potboy potman,a worker in an inn or public house who serves customers and does various chores
+62318,poteen,unlawfully distilled Irish whiskey
+62319,potency effectiveness strength,capacity to produce strong physiological or chemical effects; "the toxin's potency"; "the strength of the drinks"
+62320,potency potence,the state of being potent; a male's capacity to have sexual intercourse
+62321,potential potentiality potency,the inherent capacity for coming into being
+62322,potential_divider voltage_divider,resistors connected in series across a voltage source; used to obtain a desired fraction of the voltage
+62323,potential_energy P.E.,the mechanical energy that a body has by virtue of its position; stored energy
+62324,potential_unit,a measure of the potential energy of a unit charge at a given point in a circuit relative to a reference point (ground)
+62325,potentiation,(medicine) the synergistic effect of two drugs given simultaneously
+62326,potentiometer,a measuring instrument for measuring direct current electromotive forces
+62327,potentiometer pot,a resistor with three terminals, the third being an adjustable center terminal; used to adjust voltages in radios and TV sets
+62328,pothead,someone who smokes marijuana habitually
+62329,potherb,any of various herbaceous plants whose leaves or stems or flowers are cooked and used for food or seasoning
+62330,potholder,an insulated pad for holding hot pots
+62331,pothole chuckhole,a pit or hole produced by wear or weathering (especially in a road surface)
+62332,potholer spelunker speleologist spelaeologist,a person who explores caves
+62333,pothook,an S-shaped hook to suspend a pot over a fire
+62334,pothos,any of various tropical lianas of the genus Scindapsus
+62335,pothunter,a nonprofessional archeologist
+62336,pothunter,someone who participates in contests in order to collect trophies
+62337,pothunter,someone who hunts for food (not for sport)
+62338,potion,a medicinal or magical or poisonous beverage
+62339,potlatch,a ceremonial feast held by some Indians of the northwestern coast of North America (as in celebrating a marriage or a new accession) in which the host gives gifts to tribesmen and others to display his superior wealth (sometimes, formerly, to his own impoverishment)
+62340,potluck,whatever happens to be available especially when offered to an unexpected guest or when brought by guests and shared by all; "having arrived unannounced we had to take potluck"; "a potluck supper"
+62341,potoroo,Australian rat kangaroos
+62342,potpie,deep-dish meat and vegetable pie or a meat stew with dumplings
+62343,potpourri,a jar of mixed flower petals and spices used as perfume
+62344,potsherd,a shard of pottery
+62345,potshot,criticism aimed at an easy target and made without careful consideration; "reporters took potshots at the mayor"
+62346,potshot,a shot taken at an easy or casual target (as by a pothunter)
+62347,pottage,a stew of vegetables and (sometimes) meat
+62348,potter thrower ceramicist ceramist,a craftsman who shapes pottery on a potter's wheel and bakes them it a kiln
+62349,potter's_clay potter's_earth,clay that does not contain any iron; used in making pottery or for modeling
+62350,potter's_field,a cemetery for unknown or indigent people
+62351,potter's_wheel,a horizontal rotating wheel holding the clay being shaped by a potter; "the potter's wheel was invented in Asia Minor around 6500 BC"
+62352,potter_bee,solitary bee that builds nests of mud or pebbles cemented together and attached to a plant
+62353,potter_wasp,any of various solitary wasps that construct vase-shaped cells of mud for their eggs
+62354,pottery,a workshop where clayware is made
+62355,pottery,the craft of making earthenware
+62356,pottery clayware,ceramic ware made from clay and baked in a kiln
+62357,pottle,a pot that holds 2 quarts
+62358,potto kinkajou Perodicticus_potto,a kind of lemur
+62359,potty_seat potty_chair,toilet consisting of a small seat used by young children
+62360,pouch,a small or medium size container for holding or carrying things
+62361,pouch pocket,(anatomy) saclike structure in any of various animals (as a marsupial or gopher or pelican)
+62362,pouch sac sack pocket,an enclosed space; "the trapped miners found a pocket of air"
+62363,pouched_mole marsupial_mole Notoryctus_typhlops,small burrowing Australian marsupial that resembles a mole
+62364,pouched_mouse marsupial_mouse marsupial_rat,any of numerous small sharp-nosed insectivorous marsupials superficially resembling mice or rats
+62365,poulette,allemande sauce with chopped parsley
+62366,poultice cataplasm plaster,a medical dressing consisting of a soft heated mass of meal or clay that is spread on a cloth and applied to the skin to treat inflamed areas or improve circulation etc.
+62367,poultry,flesh of chickens or turkeys or ducks or geese raised for food
+62368,poultryman poulterer,a dealer in poultry and poultry products
+62369,pounce,the act of pouncing
+62370,pound,a unit of apothecary weight equal to 12 ounces troy
+62371,pound dog_pound,a public enclosure for stray or unlicensed dogs; "unlicensed dogs will be taken to the pound"
+62372,pound lb,16 ounces avoirdupois; "he got a hernia when he tried to lift 100 pounds"
+62373,pound lbf.,a nontechnical unit of force equal to the mass of 1 pound with an acceleration of free fall equal to 32 feet/sec/sec
+62374,pound pound_sign,a symbol for a unit of currency (especially for the pound sterling in Great Britain)
+62375,pound_cake,rich loaf cake made of a pound each of butter and sugar and flour
+62376,pound_net,trap consisting of an arrangement of nets directing fish into an enclosure
+62377,poundage,a charge based on weight measured in pounds
+62378,poundage,a fee charged for the recovery of impounded animals
+62379,poundage,weight expressed in pounds
+62380,poundal pdl,a unit of force equal to the force that imparts an acceleration of 1 foot/sec/sec to a mass of 1 pound; equal to 0.1382 newtons
+62381,pounder,(used only in combination) something weighing a given number of pounds; "the fisherman caught a 10-pounder"; "their linemen are all 300-pounders"
+62382,pounding buffeting,repeated heavy blows
+62383,pounds_per_square_inch psi,a unit of pressure
+62384,pousse-cafe,small drink served after dinner (especially several liqueurs poured carefully so as to remain in separate layers)
+62385,pout moue wry_face,a disdainful grimace
+62386,pouter_pigeon pouter,one of a breed of pigeon that enlarge their crop until their breast is puffed out
+62387,poverty poorness impoverishment,the state of having little or no money and few or no material possessions
+62388,poverty_line poverty_level,a level of personal income defining the state of poverty
+62389,poverty_trap,a situation in which an increase in income results in a loss of benefits so that you are no better off
+62390,powder,any of various cosmetic or medical preparations dispensed in the form of a pulverized powder
+62391,powder pulverization pulverisation,a solid substance in the form of tiny loose particles; a solid that has been pulverized
+62392,powder-post_termite Cryptotermes_brevis,extremely destructive dry-wood termite of warm regions
+62393,powder_and_shot,ammunition consisting of gunpowder and bullets for muskets
+62394,powder_blue,a pale blue color with grey in it
+62395,powder_horn powder_flask,container for carrying gunpowder; made of the hollow horn of an animal
+62396,powder_keg,a potentially explosive state
+62397,powder_keg,keg (usually made of metal) for gunpowder or blasting powder
+62398,powder_metallurgy,the metallurgy of powdered metals; how to produce solid metal objects from powdered metal by compaction and sintering
+62399,powder_monkey,someone who carries explosives (as from the magazine to the guns on board a warship)
+62400,powder_photography powder_method powder_technique,a process for identifying minerals or crystals; a small rod is coated with a powdered form of the substance and subjected to suitably modified X-rays; the pattern of diffracted rings is used for identification
+62401,powdered_milk dry_milk dried_milk milk_powder,dehydrated milk
+62402,powdered_mustard dry_mustard,a substance such that one to three tablespoons dissolved in a glass of warm water is a homemade emetic
+62403,powdered_sugar,sugar granulated into a fine powder
+62404,powderer,someone who applies or scatters powder
+62405,powderpuff puff,a soft spherical object made from fluffy fibers; for applying powder to the skin
+62406,powdery_mildew,any of various fungi of the genus Erysiphe producing powdery conidia on the host surface
+62407,power,(physics) the rate of doing work; measured in watts (= joules/second)
+62408,power force,one possessing or exercising power or influence or authority; "the mysterious presence of an evil power"; "may the force be with you"; "the forces of evil"
+62409,power powerfulness,possession of controlling influence; "the deterrent power of nuclear weapons"; "the power of his love saved her"; "his powerfulness was concealed by a gentle facade"
+62410,power_brake,a brake on an automobile that magnifies a small force applied to the brake pedal into a proportionately larger force applied to slow or stop the vehicle
+62411,power_breakfast,a meeting of influential people to conduct business while eating breakfast
+62412,power_broker powerbroker,a person who is important by virtue of the people or votes they control; "a power broker who does you a favor will expect you to return it"
+62413,power_company power_service electric_company light_company,a public utility that provides electricity
+62414,power_cord,a cord to conduct power to an electrical appliance
+62415,power_couple,a couple both of whom have high-powered careers or are politically influential
+62416,power_dive,a dive of an airplane that is accelerated both by gravity and by the power of the engine
+62417,power_drill,a power tool for drilling holes into hard materials
+62418,power_hunger status_seeking,a drive to acquire power
+62419,power_line power_cable,cable used to distribute electricity
+62420,power_loading,the ratio of the weight of an airplane to its engine power
+62421,power_loom,a loom operated mechanically
+62422,power_module,module that provides power to operate other modules
+62423,power_mower motor_mower,a lawn mower powered by a gasoline motor
+62424,power_of_appointment,authority given (in a will or deed) by a donor to a donee to appoint the beneficiaries of the donor's property
+62425,power_of_attorney,a legal instrument authorizing someone to act as the grantor's agent
+62426,power_outage power_failure,equipment failure resulting when the supply of power fails; "the ice storm caused a power outage"
+62427,power_pack,a device for converting a power supply to a voltage required by particular equipment
+62428,power_play,a play in which there is a concentration of players in one location on the field of play; "they used a power play to return the kickoff"
+62429,power_play,(ice hockey) a play in which one team has a numerical advantage over the other as a result of penalties; "the team was unable to capitalize on the power play"
+62430,power_play squeeze_play squeeze,an aggressive attempt to compel acquiescence by the concentration or manipulation of power; "she laughed at this sexual power play and walked away"
+62431,power_politics gunboat_diplomacy,diplomacy in which the nations threaten to use force in order to obtain their objectives
+62432,power_saw saw sawing_machine,a power tool for cutting wood
+62433,power_series,the sum of terms containing successively higher integral powers of a variable
+62434,power_shovel excavator digger shovel,a machine for excavating
+62435,power_station power_plant powerhouse,an electrical generating station
+62436,power_steering power-assisted_steering,automotive steering where engineer power amplifies the torque applied to the steering wheel
+62437,power_system power_grid grid,a system of high tension cables by which electrical power is distributed throughout a region
+62438,power_takeoff PTO,a device that transfers power from an engine (as in a tractor or other motor vehicle) to another piece of equipment (as to a pump or jackhammer)
+62439,power_tool,a tool driven by a motor
+62440,power_trip,(slang) a self-aggrandizing action undertaken simply for the pleasure of exercising control over other people
+62441,power_unit,a measure of electric power
+62442,power_user,(computing) a computer user who needs the fastest and most powerful computers available
+62443,power_walking,a form of cardiopulmonary exercise consisting of rapid walking accompanied by vigorous swinging of the arms
+62444,power_worker power-station_worker,a worker at a power station
+62445,powerhouse,a team considered to be the best of its class
+62446,powerhouse human_dynamo ball_of_fire fireball,a highly energetic and indefatigable person
+62447,powerlessness impotence impotency,the quality of lacking strength or power; being weak and feeble
+62448,powwow,a council of or with Native Americans
+62449,pox,a contagious disease characterized by purulent skin eruptions that may leave pock marks
+62450,poxvirus,any of a group of viruses that can cause pox diseases in vertebrates
+62451,practicability practicableness,the quality of being usable
+62452,practical_joke,a prank or trick played on a person (especially one intended to make the victim appear foolish)
+62453,practicality,concerned with actual use rather than theoretical possibilities
+62454,practice,knowledge of how something is usually done; "it is not the local practice to wear shorts to dinner"
+62455,practice,the exercise of a profession; "the practice of the law"; "I took over his practice when he retired"
+62456,practice pattern,a customary way of operation or behavior; "it is their practice to give annual raises"; "they changed their dietary pattern"
+62457,practice praxis,translating an idea into action; "a hard theory to put into practice"; "differences between theory and praxis of communism"
+62458,practice_range,a place for practicing golf shots
+62459,practitioner practician,someone who practices a learned profession
+62460,praenomen,the first name of a citizen of ancient Rome
+62461,praetor pretor,an annually elected magistrate of the ancient Roman Republic
+62462,praetorium pretorium,the tent of an ancient Roman general
+62463,praetorship,the office of praetor
+62464,pragmatic_sanction pragmatic,an imperial decree that becomes part of the fundamental law of the land
+62465,pragmatics,the study of language use
+62466,pragmatism,(philosophy) the doctrine that practical consequences are the criteria of knowledge and meaning and value
+62467,pragmatist,an adherent of philosophical pragmatism
+62468,pragmatist,a person who takes a practical approach to problems and is concerned primarily with the success or failure of her actions
+62469,prairia_Sabbatia Texas_star Sabbatia_campestris,prairie herb with solitary lilac-colored flowers
+62470,prairie,a treeless grassy plain
+62471,prairie_aster Aster_turbinellis,violet-flowered perennial aster of central United States having solitary heads
+62472,prairie_bird's-foot_trefoil compass_plant prairie_lotus prairie_trefoil Lotus_americanus,North American annual with red or rose-colored flowers
+62473,prairie_chicken prairie_grouse prairie_fowl,brown mottled North American grouse of western prairies
+62474,prairie_coneflower Ratibida_tagetes,coneflower of central to southwestern United States
+62475,prairie_cordgrass freshwater_cordgrass slough_grass Spartina_pectinmata,North American cordgrass having leaves with dry membranous margins and glumes with long awns
+62476,prairie_dog prairie_marmot,any of several rodents of North American prairies living in large complex burrows having a barking cry
+62477,prairie_gentian tulip_gentian bluebell Eustoma_grandiflorum,one of the most handsome prairie wildflowers having large erect bell-shaped bluish flowers; of moist places in prairies and fields from eastern Colorado and Nebraska south to New Mexico and Texas
+62478,prairie_gourd,small hard green-and-white inedible fruit of the prairie gourd plant
+62479,prairie_gourd prairie_gourd_vine Missouri_gourd wild_pumpkin buffalo_gourd calabazilla Cucurbita_foetidissima,perennial vine of dry parts of central and southwestern United States and Mexico having small hard mottled green inedible fruit
+62480,prairie_mallow red_false_mallow Sphaeralcea_coccinea Malvastrum_coccineum,false mallow of western United States having racemose red flowers; sometimes placed in genus Malvastrum
+62481,prairie_mimosa prickle-weed Desmanthus_ilinoensis,perennial herb of North American prairies having dense heads of small white flowers
+62482,prairie_orchid prairie_white-fringed_orchis Habenaria_leucophaea,orchid of boggy or wet lands of north central United States having racemes of very fragrant creamy or greenish white flowers
+62483,prairie_rattlesnake prairie_rattler Western_rattlesnake Crotalus_viridis,widely distributed between the Mississippi and the Rockies
+62484,prairie_rocket,any of several North American plants of the genus Erysimum having large yellow flowers
+62485,prairie_rocket,any of several western American plants of the genus Cheiranthus having large yellow flowers
+62486,prairie_smoke purple_avens Geum_triflorum,North American perennial with hairy basal pinnate leaves and purple flowers and plume-tipped fruits
+62487,prairie_soil,a type of soil occurring under grasses in temperate climates
+62488,prairie_star Lithophragma_parviflorum,plant with mostly basal leaves and slender open racemes of white or pale pink flowers; prairies and open forest of northwestern United States to British Columbia and Alberta
+62489,prairie_sunflower Helianthus_petiolaris,similar to the common sunflower with slender usually branching stems common in central United States
+62490,prairie_vole Microtus_ochrogaster,typical vole of the extended prairie region of central United States and southern Canada
+62491,prairie_wake-robin prairie_trillium Trillium_recurvatum,trillium of central United States having dark purple sessile flowers
+62492,prairie_white-fringed_orchid Platanthera_leucophea,of central North America; a threatened species
+62493,prairie_willow Salix_humilis,slender shrubby willow of dry areas of North America
+62494,praise,offering words of homage as an act of worship; "they sang a hymn of praise to God"
+62495,praise congratulations kudos extolment,an expression of approval and commendation; "he always appreciated praise for his work"
+62496,praiseworthiness laudability laudableness,the quality of being worthy of praise
+62497,praisworthiness,the property of deserving praise
+62498,praline,cookie-sized candy made of brown sugar and butter and pecans
+62499,prancer,a mettlesome or fiery horse
+62500,prang,a crash involving a car or plane
+62501,prankishness rascality roguishness,the trait of indulging in disreputable pranks
+62502,prankster cut-up trickster tricker hoaxer practical_joker,someone who plays practical jokes on others
+62503,praseodymium Pr atomic_number_59,a soft yellowish-white trivalent metallic element of the rare earth group; can be recovered from bastnasite or monazite by an ion-exchange process
+62504,prate prattle idle_talk blether chin_music,idle or foolish and irrelevant talk
+62505,pratfall,a fall onto your buttocks
+62506,pratincole glareole,Old World shorebird with long pointed wings and short legs; closely related to the coursers
+62507,prattler,someone who speaks in a childish way
+62508,pravastatin Pravachol,an oral drug (trade name Pravachol) administered to reduce blood cholesterol levels; recommended after nonfatal heart attacks
+62509,prawn,shrimp-like decapod crustacean having two pairs of pincers; most are edible
+62510,prawn shrimp,any of various edible decapod crustaceans
+62511,praya,colonial siphonophore of up to 130 ft long
+62512,prayer,a fixed text used in praying
+62513,prayer petition orison,reverent petition to a deity
+62514,prayer supplicant,someone who prays to God
+62515,prayer supplication,the act of communicating with a deity (especially as a petition or in adoration or contrition or thanksgiving); "the priest sank to his knees in prayer"
+62516,prayer_book prayerbook,a book containing prayers
+62517,prayer_meeting prayer_service,a service at which people sing hymns and pray together
+62518,prayer_rug prayer_mat,a small rug used by Muslims during their devotions
+62519,prayer_shawl tallith tallis,(Judaism) a shawl with a ritually knotted fringe at each corner; worn by Jews at morning prayer
+62520,prayer_wheel,a cylinder with prayers written on it; each revolution counts as uttering the prayers; used especially by Buddhists in Tibet
+62521,praying_mantis praying_mantid Mantis_religioso,the common mantis
+62522,prazosin Minipress,antihypertensive drug (trade name Minipress)
+62523,pre-Socratic,any philosopher who lived before Socrates
+62524,pre-emptive_strike,a surprise attack that is launched in order to prevent the enemy from doing it to you
+62525,preacher preacher_man sermonizer sermoniser,someone whose occupation is preaching the gospel
+62526,preachification,moralization delivered tediously in a preachy manner
+62527,preamble,a preliminary introduction to a statute or constitution (usually explaining its purpose)
+62528,prearrangement,something arranged in advance
+62529,prebend,the stipend assigned by a cathedral to a canon
+62530,prebendary,a canon who receives a prebend for serving the church
+62531,precariousness,extreme dangerousness
+62532,precaution,the trait of practicing caution in advance
+62533,precaution safeguard guard,a precautionary measure warding off impending danger or damage or injury etc.; "he put an ice pack on the injury as a precaution"; "an insurance policy is a good safeguard"; "we let our guard down"
+62534,precedence precedency priority,status established in order of importance or urgency; "...its precedence as the world's leading manufacturer of pharmaceuticals"; "national independence takes priority over class struggle"
+62535,precedent,a subject mentioned earlier (preceding in time)
+62536,precedent case_in_point,an example that is used to justify similar occurrences at a later time
+62537,precentorship,the position of precentor
+62538,precentral_gyrus,the convolution of the frontal lobe that is bounded in back by the central sulcus and that contains the motor area
+62539,preceptor don,teacher at a university or college (especially at Cambridge or Oxford)
+62540,preceptorship,the position of preceptor
+62541,precession,the motion of a spinning body (as a top) in which it wobbles so that the axis of rotation sweeps out a cone
+62542,precession precedence precedency,the act of preceding in time or order or rank (as in a ceremony)
+62543,precession_of_the_equinoxes,a slow westward shift of the equinoxes along the plane of the ecliptic caused by precession of the Earth's axis of rotation
+62544,prechlorination,chlorination prior to another chemical process
+62545,precinct,a district of a city or town marked out for administrative purposes
+62546,preciosity preciousness,the quality of being fastidious or excessively refined
+62547,precious_metal,any of the less common and valuable metals often used to make coins or jewelry
+62548,precipice,a very steep cliff
+62549,precipitant,an agent that causes a precipitate to form
+62550,precipitate,a precipitated solid substance in suspension or after settling or filtering
+62551,precipitation,the quantity of water falling to earth at a specific place within a specified period of time; "the storm brought several inches of precipitation"
+62552,precipitation,the process of forming a chemical precipitate
+62553,precipitation,the act of casting down or falling headlong from a height
+62554,precipitation,an unexpected acceleration or hastening; "he is responsible for the precipitation of his own demise"
+62555,precipitation downfall,the falling to earth of any form of water (rain or snow or hail or sleet or mist)
+62556,precipitator electrostatic_precipitator Cottrell_precipitator,removes dust particles from gases by electrostatic precipitation
+62557,precipitin,an antibody that causes precipitation when it unites with its antigen
+62558,preciseness clearcutness,clarity as a consequence of precision
+62559,preciseness precision,the quality of being reproducible in amount or performance; "he handled it with the preciseness of an automaton"; "note the meticulous precision of his measurements"
+62560,precision_cookie,a cookie that is saved permanently on your hard drive
+62561,preclinical_trial preclinical_test preclinical_phase,a laboratory test of a new drug or a new invasive medical device on animal subjects; conducted to gather evidence justifying a clinical trial
+62562,precocious_dentition,teething at an earlier age than expected
+62563,precociousness precocity,intelligence achieved far ahead of normal developmental schedules
+62564,precognition foreknowledge,knowledge of an event before it occurs
+62565,preconception prepossession parti_pris preconceived_opinion preconceived_idea preconceived_notion,an opinion formed beforehand without adequate evidence; "he did not even try to confirm his preconceptions"
+62566,precondition,a condition that is a prerequisite
+62567,precordium,the external surface of the body overlying the heart and stomach
+62568,precursor,a substance from which another substance is formed (especially by a metabolic reaction)
+62569,precursor forerunner,a person who goes before or announces the coming of another
+62570,predation,the act of preying by a predator who kills and eats the prey
+62571,predator predatory_animal,any animal that lives by preying on other animals
+62572,predecessor,one who precedes you in time (as in holding a position or office)
+62573,predestinarianism,the belief or doctrine of predestinarians
+62574,predestination,previous determination as if by destiny or fate
+62575,predestination foreordination preordination predetermination,(theology) being determined in advance; especially the doctrine (usually associated with Calvin) that God has foreordained every event throughout eternity (including the final salvation of mankind)
+62576,predetermination,a mental determination or resolve in advance; an antecedent intention to do something; "he entered the argument with a predetermination to prove me wrong"
+62577,predetermination,the act of determining or ordaining in advance what is to take place
+62578,predicament quandary plight,a situation from which extrication is difficult especially an unpleasant or trying one; "finds himself in a most awkward predicament"; "the woeful plight of homeless people"
+62579,predicate,(logic) what is predicated of the subject of a proposition; the second term in a proposition is predicated of the first term by means of the copula; "`Socrates is a man' predicates manhood of Socrates"
+62580,predicate verb_phrase,one of the two main constituents of a sentence; the predicate contains the verb and its complements
+62581,predicate_calculus functional_calculus,a system of symbolic logic that represents individuals and predicates and quantification over individuals (as well as the relations between propositions)
+62582,predicator,an expression that predicates
+62583,predictability,the quality of being predictable
+62584,prediction anticipation prevision,the act of predicting (as by reasoning about the future)
+62585,prediction foretelling forecasting prognostication,a statement made about the future
+62586,predictor,information that supports a probabilistic estimate of future events; "the weekly bulletin contains several predictors of mutual fund performance"
+62587,predictor,a computer for controlling antiaircraft fire that computes the position of an aircraft at the instant of a shell's arrival
+62588,predictor_variable,a variable that can be used to predict the value of another variable (as in statistical regression)
+62589,predilection preference orientation,a predisposition in favor of something; "a predilection for expensive cars"; "his sexual preferences"; "showed a Marxist orientation"
+62590,predisposition,an inclination beforehand to interpret statements in a particular way
+62591,predisposition,a disposition in advance to react in a particular way
+62592,prednisolone Pediapred Prelone,a glucocorticoid (trade names Pediapred or Prelone) used to treat inflammatory conditions
+62593,prednisone Orasone Deltasone Liquid_Pred Meticorten,a dehydrogenated analogue of cortisol (trade names Orasone or Deltasone or Liquid Pred or Meticorten); used as an anti-inflammatory drug in the treatment of arthritis and as an immunosuppressant
+62594,predominance predomination prepotency,the state of being predominant over others
+62595,predomination predominance,the quality of being more noticeable than anything else; "the predomination of blues gave the painting a quiet tone"
+62596,preeclampsia pre-eclampsia,abnormal state of pregnancy characterized by hypertension and fluid retention and albuminuria; can lead to eclampsia if untreated
+62597,preemployment_training_program,a training program to prepare you for employment
+62598,preemption pre-emption,the judicial principle asserting the supremacy of federal over state legislation on the same subject
+62599,preemption pre-emption,the right of a government to seize or appropriate something (as property)
+62600,preemption pre-emption,the right to purchase something in advance of others
+62601,preemption pre-emption,a prior appropriation of something; "the preemption of bandwidth by commercial interests"
+62602,preemptive_bid pre-empt preempt,a high bid that is intended to prevent the opposing players from bidding
+62603,preemptive_right,the right granting to shareholders the first opportunity to buy a new issue of stock; provides protection against dilution of the shareholder's ownership interest
+62604,preemptor pre-emptor,someone who acquires land by preemption
+62605,preemptor pre-emptor,a bidder in bridge who makes a preemptive bid
+62606,preexistence,existing in a former state or previous to something else
+62607,prefab,a prefabricated structure
+62608,prefabrication,the manufacture of sections of a building at the factory so they can be easily and rapidly assembled at the building site
+62609,prefect,a chief officer or chief magistrate; "the prefect of Paris police"
+62610,prefecture,the district administered by a prefect (as in France or Japan or the Roman Empire)
+62611,prefecture,the office of prefect
+62612,preference,grant of favor or advantage to one over another (especially to a country or countries in matters of international trade, such as levying duties)
+62613,preference druthers,the right or chance to choose; "given my druthers, I'd eat cake"
+62614,preference penchant predilection taste,a strong liking; "my own preference is for good literature"; "the Irish have a penchant for blarney"
+62615,preferment,the act of making accusations; "preferment of charges"
+62616,preferment,the act of preferring; "the preferment went to the younger candidate"
+62617,preferred_stock preferred_shares preference_shares,stock whose holders are guaranteed priority in the payment of dividends but whose holders have no voting rights
+62618,prefiguration,an example that prefigures or foreshadows what is to come
+62619,prefiguration foreshadowing adumbration,the act of providing vague advance indications; representing beforehand
+62620,prefix,an affix that is added in front of the word
+62621,prefix_notation Lukasiewicz_notation Polish_notation,a parenthesis-free notation for forming mathematical expressions in which each operator precedes its operands
+62622,prefixation,formation of a word by means of a prefix
+62623,preformation theory_of_preformation,a theory (popular in the 18th century and now discredited) that an individual develops by simple enlargement of a tiny fully formed organism (a homunculus) that exists in the germ cell
+62624,prefrontal_lobe prefrontal_cortex,the anterior part of the frontal lobe
+62625,pregnancy gestation maternity,the state of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus
+62626,pregnancy_test,a physiological test to determine whether a woman is pregnant
+62627,pregnanediol,a compound found in women's urine during certain phases of the menstrual cycle and in the urine of pregnant women
+62628,prehensor,the anterior pair of legs of a centipede that are modified to seize prey and inject venom from the toxicognaths
+62629,prehistory prehistoric_culture,the time during the development of human culture before the appearance of the written word
+62630,prejudgment prejudgement,a judgment reached before the evidence is available
+62631,prelacy prelature,prelates collectively
+62632,prelacy prelature,the office or station of a prelate
+62633,preliminary overture prelude,something that serves as a preceding event or introduces what follows; "training is a necessary preliminary to employment"; "drinks were the overture to dinner"
+62634,preliminary prelim,a minor match preceding the main event
+62635,preliminary_examination preliminary_exam prelim,an examination taken by graduate students to determine their fitness to continue
+62636,preliminary_prospectus red_herring,a first draft of a prospectus; must be clearly marked to indicate that parts may be changed in the final prospectus; "because some portions of the cover page are printed in red ink a preliminary prospectus is sometimes called a red herring"
+62637,prelude,music that precedes a fugue or introduces an act in an opera
+62638,premature_baby preterm_baby premature_infant preterm_infant preemie premie,an infant that is born prior to 37 weeks of gestation
+62639,premature_ejaculation,ejaculation during the early stages of sexual excitement or soon after the insertion of the penis into the vagina
+62640,premature_labor premature_labour,labor beginning prior to the 37th week of gestation
+62641,premature_ventricular_contraction PVC,irregularity of cardiac rhythm; recurrent occurrences can be a precursor of ventricular fibrillation
+62642,prematureness prematurity,the state of being premature
+62643,premeditation,(law) thought and intention to commit a crime well in advance of the crime; goes to show criminal intent
+62644,premeditation forethought,planning or plotting in advance of acting
+62645,premenstrual_syndrome PMS,a syndrome that occurs in many women from 2 to 14 days before the onset of menstruation
+62646,premiere,the first public performance of a play or movie
+62647,premiership,the office of premier
+62648,premise premiss assumption,a statement that is assumed to be true and from which a conclusion can be drawn; "on the assumption that he has been injured we can infer that he will not play"
+62649,premises,land and the buildings on it; "bread is baked on the premises"; "the were evicted from the premises"
+62650,premium,the amount that something in scarce supply is valued above its nominal value; "they paid a premium for access to water"
+62651,premium,a prize, bonus, or award given as an inducement to purchase products, enter competitions initiated by business interests, etc.; "they encouraged customers with a premium for loyal patronage"
+62652,premium insurance_premium,payment for insurance
+62653,premolar bicuspid,a tooth having two cusps or points; located between the incisors and the molars
+62654,prenatal_diagnosis,any of the diagnostic procedures used to determine whether a fetus has a genetic abnormality
+62655,preoccupancy preoccupation,the act of taking occupancy before someone else does
+62656,preoccupation,an idea that preoccupies the mind and holds the attention
+62657,preoccupation preoccupancy absorption engrossment,the mental state of being preoccupied by something
+62658,preparation,(music) a note that produces a dissonant chord is first heard in a consonant chord; "the resolution of one dissonance is often the preparation for another dissonance"
+62659,preparation readying,the activity of putting or setting in order in advance of some act or purpose; "preparations for the ceremony had begun"
+62660,preparation_fire,fire delivered on a target in preparation for an assault
+62661,preparatory_school prep_school,a private secondary school
+62662,prepayment,payment in advance
+62663,preponderance,superiority in power or influence; "the preponderance of good over evil"; "the preponderance of wealth and power"
+62664,preponderance,exceeding in heaviness; having greater weight; "the least preponderance in either pan will unbalance the scale"
+62665,preponderance prevalence,a superiority in numbers or amount; "a preponderance of evidence against the defendant"
+62666,preposition,(linguistics) the placing of one linguistic element before another (as placing a modifier before the word it modifies in a sentence or placing an affix before the base to which it is attached)
+62667,preposition,a function word that combines with a noun or pronoun or noun phrase to form a prepositional phrase that can have an adverbial or adjectival relation to some other word
+62668,prepositional_object object_of_a_preposition,the object governed by a preposition
+62669,prepositional_phrase,a phrase beginning with a preposition
+62670,prepossession,the condition of being prepossessed; "the king's prepossession in my favor is very valuable"
+62671,prepuberty,a period of two years immediately prior to the onset of puberty when growth and changes leading to sexual maturity occur
+62672,prepuce foreskin,a fold of skin covering the tip of the clitoris
+62673,prepuce foreskin,a fold of skin covering the tip of the penis
+62674,prepyloric_vein vena_pylorica,a tributary of the right gastric vein
+62675,prerequisite requirement,something that is required in advance; "Latin was a prerequisite for admission"
+62676,prerogative privilege perquisite exclusive_right,a right reserved exclusively by a particular person or group (especially a hereditary or official right); "suffrage was the prerogative of white adult males"
+62677,presage,a foreboding about what is about to happen
+62678,presbyope,a person with presbyopia; someone who is farsighted resulting from the progressive loss with aging of the elasticity of the crystalline lens
+62679,presbyopia farsightedness,a reduced ability to focus on near objects caused by loss of elasticity of the crystalline lens after age 45
+62680,presbyter,an elder in the Presbyterian Church
+62681,presbytery,building reserved for the officiating clergy
+62682,preschool,an educational institution for children too young for elementary school
+62683,preschooler kindergartner kindergartener,a child who attends a preschool or kindergarten
+62684,prescience prevision,the power to foresee the future
+62685,prescription,directions prescribed beforehand; the action of prescribing authoritative rules or directions; "I tried to follow her prescription for success"
+62686,prescription,written instructions for an optician on the lenses for a given person
+62687,prescription,written instructions from a physician or dentist to a druggist concerning the form and dosage of a drug to be issued to a given patient
+62688,prescription_drug prescription prescription_medicine ethical_drug,a drug that is available only with written instructions from a doctor or dentist to a pharmacist; "he told the doctor that he had been taking his prescription regularly"
+62689,prescriptive_grammar,a grammar that is produced by prescriptive linguistics
+62690,prescriptive_linguistics,an account of how a language should be used instead of how it is actually used; a prescription for the `correct' phonology and morphology and syntax and semantics
+62691,prescriptivism,(ethics) a doctrine holding that moral statements prescribe appropriate attitudes and behavior
+62692,prescriptivism,(linguistics) a doctrine supporting or promoting prescriptive linguistics
+62693,preseason,a period prior to the beginning of the regular season which is devoted to training and preparation
+62694,presence,the state of being present; current existence; "he tested for the presence of radon"
+62695,presence,an invisible spiritual being felt to be nearby
+62696,presence,the impression that something is present; "he felt the presence of an evil force"
+62697,presence,the act of being present
+62698,presence front,the immediate proximity of someone or something; "she blushed in his presence"; "he sensed the presence of danger"; "he was well behaved in front of company"
+62699,presence_chamber,room in which a monarch or other great person receives guests, assemblies, etc.
+62700,presence_of_mind,self-control in a crisis; ability to say or do the right thing in an emergency
+62701,presenile_dementia,dementia with onset before the age of 65
+62702,present,something presented as a gift; "his tie was a present from his wife"
+62703,present nowadays,the period of time that is happening now; any continuous stretch of time including the moment of speech; "that is enough for the present"; "he lives in the present with no thought of tomorrow"
+62704,present present_tense,a verb tense that expresses actions or states at the time of speaking
+62705,present_participle,a participle expressing present action; in English is formed by adding -ing
+62706,present_perfect present_perfect_tense,a perfective tense used to express action completed in the present; "`I have finished' is an example of the present perfect"
+62707,present_progressive present_progressive_tense,a tense used to express action that is on-going at the time of utterance
+62708,presentation,the act of presenting a proposal
+62709,presentation,the act of making something publicly available; presenting news or other information by broadcasting or printing it; "he prepared his presentation carefully in advance"
+62710,presentation,(obstetrics) position of the fetus in the uterus relative to the birth canal; "Cesarean sections are sometimes the result of abnormal presentations"
+62711,presentation,the activity of formally presenting something (as a prize or reward); "she gave the trophy but he made the presentation"
+62712,presentation introduction intro,formally making a person known to another or to the public
+62713,presentation presentment demonstration,a show or display; the act of presenting something to sight or view; "the presentation of new data"; "he gave the customer a demonstration"
+62714,presenter,someone who presents a message of some sort (as a petition or an address or a check or a memorial etc.)
+62715,presenter sponsor,an advocate who presents a person (as for an award or a degree or an introduction etc.)
+62716,presentism,the doctrine that the Scripture prophecies of the Apocalypse (as in the Book of Revelations) are presently in the course of being fulfilled
+62717,presentist,a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) are being fulfilled at the present time
+62718,presentment,a document that must be accepted and paid by another person
+62719,presentment notification,an accusation of crime made by a grand jury on its own initiative
+62720,presentness nowness,the quality of being the present; "a study of the pastness of the present and...of the presentness of the past"- R.E.Spiller
+62721,preservation,the condition of being (well or ill) preserved
+62722,preservation,a process that saves organic substances from decay
+62723,preservation saving,the activity of protecting something from loss or danger
+62724,preservationist,someone who advocates the preservation of historical sites or endangered species or natural areas
+62725,preservative,a chemical compound that is added to protect against decay or decomposition
+62726,preserve,a domain that seems to be specially reserved for someone; "medicine is no longer a male preserve"
+62727,preserve,a reservation where animals are protected
+62728,preserver,a cook who preserves fruits or meat
+62729,preserver,someone who keeps safe from harm or danger
+62730,presidency presidential_term administration,the tenure of a president; "things were quiet during the Eisenhower administration"
+62731,presidency presidentship,the office and function of president; "Andrew Jackson expanded the power of the presidency beyond what was customary before his time"
+62732,president,an executive officer of a firm or corporation
+62733,president,the chief executive of a republic
+62734,president chairman chairwoman chair chairperson,the officer who presides at the meetings of an organization; "address your remarks to the chairperson"
+62735,president prexy,the head administrative officer of a college or university
+62736,presiding_officer,the leader of a group meeting
+62737,presidio,a fortress established in the southwestern United States by the Spanish in order to protect their missions and other holdings; "Tucson was first settled as a walled presidio"
+62738,presidium praesidium,a permanent executive committee in socialist countries that has all the powers of some larger legislative body and that acts for it when it is not in session
+62739,press,clamp to prevent wooden rackets from warping when not in use
+62740,press mechanical_press,any machine that exerts pressure to form or shape or cut materials or extract liquids or compress solids
+62741,press military_press,a weightlift in which the barbell is lifted to shoulder height and then smoothly lifted overhead
+62742,press pressure pressing,the act of pressing; the exertion of pressure; "he gave the button a press"; "he used pressure to stop the bleeding"; "at the pressing of a button"
+62743,press printing_press,a machine used for printing
+62744,press public_press,the print media responsible for gathering and publishing news in the form of newspapers or magazines
+62745,press_agent publicity_man public_relations_man PR_man,someone employed to arrange publicity (for a firm or a public figure)
+62746,press_box,box reserved for reporters (as at a sports event)
+62747,press_conference news_conference,a conference at which press and tv reporters ask questions of a politician or other celebrity
+62748,press_corps,a group of journalists representing different publications who all cover the same topics; "the White House press corps"
+62749,press_gallery,an area (sometimes in a balcony) set aside for reporters (especially in a legislative hall)
+62750,press_gang,a detachment empowered to force civilians to serve in the army or navy
+62751,press_lord,a powerful newspaper proprietor
+62752,press_of_sail press_of_canvas,the greatest amount of sail that a ship can carry safely
+62753,press_photographer,a photographer who works for a newspaper
+62754,pressing,a metal or plastic part that is made by a mechanical press
+62755,pressure,an oppressive condition of physical or mental or social or economic distress
+62756,pressure,a force that compels; "the public brought pressure to bear on the government"
+62757,pressure pressure_level force_per_unit_area,the force applied to a unit area of surface; measured in pascals (SI unit) or in dynes (cgs unit); "the compressed gas exerts an increased pressure"
+62758,pressure pressure_sensation,the somatic sensation that results from applying force to an area of skin; "the sensitivity of his skin to pressure and temperature was normal"
+62759,pressure_cabin,cabin consisting of the pressurized section of an aircraft or spacecraft
+62760,pressure_cooker,autoclave for cooking at temperatures above the boiling point of water
+62761,pressure_dome,a dome-shaped building that is pressurized
+62762,pressure_gauge pressure_gage,gauge for measuring and indicating fluid pressure
+62763,pressure_point,any of several points on the body where the pulse can be felt and where pressure on an underlying artery will control bleeding from that artery at a more distal point
+62764,pressure_point,where problems or difficulties are likely to occur; "a key pressure point in the controversy was the building permit"
+62765,pressure_point,an area on the skin that is highly sensitive to pressure; "you must know the pressure points in order to administer shiatsu"
+62766,pressure_suit,protective garment consisting of an inflatable suit for space or high altitude flying
+62767,pressure_unit,a unit measuring force per unit area
+62768,pressurized_water_reactor PWR,a nuclear reactor that uses water as a coolant and moderator; the steam produced can drive a steam turbine
+62769,prestidigitation sleight_of_hand,manual dexterity in the execution of tricks
+62770,prestige prestigiousness,a high standing achieved through success or influence or wealth etc.; "he wanted to achieve power and prestige"
+62771,presumption,(law) an inference of the truth of a fact from other facts proved or admitted or judicially noticed
+62772,presumption,a kind of discourtesy in the form of an act of presuming; "his presumption was intolerable"
+62773,presumption presumptuousness effrontery assumption,audacious (even arrogant) behavior that you have no right to; "he despised them for their presumptuousness"
+62774,presupposition,the act of presupposing; a supposition made prior to having knowledge (as for the purpose of argument)
+62775,preteen preteenager,a preadolescent boy or girl (usually between 9 and 12 years of age); "little league is intended for the preteens"
+62776,pretense pretence feigning dissembling,pretending with intention to deceive
+62777,pretense pretence make-believe,imaginative intellectual play
+62778,pretense pretence pretending simulation feigning,the act of giving a false appearance; "his conformity was only pretending"
+62779,pretension,the advancing of a claim; "his pretension to the crown"; "the town still puts forward pretensions as a famous resort"
+62780,pretension pretense pretence,a false or unsupportable quality
+62781,pretentiousness pretension largeness,the quality of being pretentious (behaving or speaking in such a manner as to create a false appearance of great importance or worth)
+62782,preterist,a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) have already been fulfilled
+62783,preterit preterite,a term formerly used to refer to the simple past tense
+62784,pretermission,letting pass without notice
+62785,pretext stalking-horse,something serving to conceal plans; a fictitious reason that is concocted in order to conceal the real reason
+62786,pretrial pretrial_conference,(law) a conference held before the trial begins to bring the parties together to outline discovery proceedings and to define the issues to be tried; more useful in civil than in criminal cases
+62787,prettiness cuteness,the quality of being appealing in a delicate or graceful way (of a girl or young woman)
+62788,pretzel,glazed and salted cracker typically in the shape of a loose knot
+62789,prevailing_party,the party in a lawsuit who obtains a judgment in their own favor
+62790,prevailing_westerly westerly,the winds from the west that occur in the temperate zones of the Earth
+62791,prevailing_wind,the predominant wind direction; "the prevailing wind is from the southwest"
+62792,prevalence,(epidemiology) the ratio (for a given time period) of the number of occurrences of a disease or event to the number of units at risk in the population
+62793,prevalence,the quality of prevailing generally; being widespread; "he was surprised by the prevalence of optimism about the future"
+62794,prevention bar,the act of preventing; "there was no bar against leaving"; "money was allocated to study the cause and prevention of influenza"
+62795,preventive preventative prophylactic,remedy that prevents or slows the course of an illness or disease; "the doctor recommended several preventatives"
+62796,preventive_medicine,the branch of medicine concerned with preventing disease; "the medical establishment doesn't profit from preventive medicine"
+62797,preventive_strike preventive_attack,a strike that is carried out in order to deter expected aggression by hostile forces
+62798,preview,a screening for a select audience in advance of release for the general public
+62799,preview prevue trailer,an advertisement consisting of short scenes from a motion picture that will appear in the near future
+62800,previous_question,a motion calling for an immediate vote on the main question under discussion by a deliberative assembly
+62801,prevision,a prophetic vision (as in a dream)
+62802,prevision foresight farsightedness prospicience,seeing ahead; knowing in advance; foreseeing
+62803,prey quarry,animal hunted or caught for food
+62804,prey quarry target fair_game,a person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence; "he fell prey to muggers"; "everyone was fair game"; "the target of a manhunt"
+62805,priapism,condition in which the penis is continually erect; usually painful and seldom with sexual arousal
+62806,price,cost of bribing someone; "they say that every politician has a price"
+62807,price,a monetary reward for helping to catch a criminal; "the cattle thief has a price on his head"
+62808,price,the high value or worth of something; "her price is far above rubies"
+62809,price cost toll,value measured by what must be given or done or undergone to obtain something; "the cost in human life was enormous"; "the price of success is hard work"; "what price glory?"
+62810,price terms damage,the amount of money needed to purchase something; "the price of gasoline"; "he got his new car on excellent terms"; "how much is the damage?"
+62811,price-fixing,control (by agreement among producers or by government) of the price of a commodity in interstate commerce
+62812,price-to-earnings_ratio P/E_ratio,(stock market) the price of a stock divided by its earnings
+62813,price_bracket,a category of merchandise based on their price
+62814,price_control,restriction on maximum prices that is established and maintained by the government (as during periods of war or inflation)
+62815,price_cutting price_cut,cutting the price of merchandise to one lower than the usual or advertised price
+62816,price_floor,floor below which prices are not allowed to fall; "the government used price supports to maintain the price floor"
+62817,price_freeze,a freeze of prices at a given level
+62818,price_gouging,pricing above the market price when no alternative retailer is available
+62819,price_increase,increase in price
+62820,price_index price_level,an index that traces the relative changes in the price of an individual good (or a market basket of goods) over time
+62821,price_list,a listing of prices for different goods or services
+62822,price_support,a government subsidy used to maintain prices at a certain level
+62823,price_tag,a tag showing the price of the article it is attached to
+62824,price_war price_competition,intense competition in which competitors cut retail prices to gain business
+62825,pricing,the evaluation of something in terms of its price
+62826,pricing_system,a system for setting prices on goods or services
+62827,prick pricking,the act of puncturing with a small point; "he gave the balloon a small prick"
+62828,pricket,a sharp metal spike to hold a candle
+62829,pricket,male deer in his second year
+62830,prickle_cell,a cell in the germinal layer of the skin (the prickle-cell layer); has many spines and radiating processes
+62831,prickleback,small elongate fishes of shallow northern seas; a long dorsal fin consists entirely of spines
+62832,prickliness bristliness spininess thorniness,the quality of being covered with prickly thorns or spines
+62833,prickling tingle tingling,a somatic sensation as from many tiny stings
+62834,prickly-edged_leaf,a leaf having prickly margins
+62835,prickly_ash,any of a number of trees or shrubs of the genus Zanthoxylum having spiny branches
+62836,prickly_ash Orites_excelsa,Australian tree having alternate simple leaves (when young they are pinnate with prickly toothed margins) and slender axillary spikes of white flowers
+62837,prickly_heat heat_rash miliaria,obstruction of the sweat ducts during high heat and humidity
+62838,prickly_lettuce horse_thistle Lactuca_serriola Lactuca_scariola,European annual wild lettuce having prickly stems; a troublesome weed in parts of United States
+62839,prickly_pear,round or pear-shaped spiny fruit of any of various prickly pear cacti
+62840,prickly_pear prickly_pear_cactus,cacti having spiny flat joints and oval fruit that is edible in some species; often used as food for stock
+62841,prickly_poppy Papaver_argemone,annual Old World poppy with orange-red flowers and bristly fruit
+62842,prickly_poppy argemone white_thistle devil's_fig,any plant of the genus Argemone having large white or yellow flowers and prickly leaves and stems and pods; chiefly of tropical America
+62843,pride,a group of lions
+62844,pride,satisfaction with your (or another's) achievements; "he takes pride in his son's success"
+62845,pride,the trait of being spurred on by a dislike of falling below your standards
+62846,pride pridefulness,a feeling of self-respect and personal worth
+62847,pride superbia,unreasonable and inordinate self-esteem (personified as one of the deadly sins)
+62848,pride_of_California Lathyrus_splendens,shrubby California perennial having large pink or violet flowers; cultivated as an ornamental
+62849,pride_of_barbados paradise_flower flamboyant_tree Caesalpinia_pulcherrima Poinciana_pulcherrima,tropical shrub or small tree having showy yellow to orange-red flowers; sometimes placed in genus Poinciana
+62850,pride_of_place,the first or highest or most important or most ostentatious place
+62851,prie-dieu,low bench for kneeling on
+62852,priest,a clergyman in Christian churches who has the authority to perform or administer various religious rites; one of the Holy Orders
+62853,priest non-Christian_priest,a person who performs religious duties and ceremonies in a non-Christian religion
+62854,priest-penitent_privilege,the right of a clergyman to refuse to divulge confidential information received from a person during confession or similar exchanges
+62855,priestcraft,a derogatory reference to priests who use their influence to control secular or political affairs
+62856,priestcraft,the skills involved in the work of a priest
+62857,priestess,a woman priest
+62858,priesthood,the body of ordained religious practitioners
+62859,priggishness primness,exaggerated and arrogant properness
+62860,prima_ballerina,a leading female ballet dancer
+62861,prima_donna,a vain and temperamental person
+62862,prima_donna diva,a distinguished female operatic singer; a female operatic star
+62863,primacy,the state of being first in importance
+62864,primality,the property of being a prime number
+62865,primaquine,synthetic antimalarial drug
+62866,primary,(astronomy) a celestial body (especially a star) relative to other objects in orbit around it
+62867,primary primary_election,a preliminary election where delegates or nominees are chosen
+62868,primary primary_feather primary_quill,one of the main flight feathers projecting along the outer edge of a bird's wing
+62869,primary_amenorrhea,delay of menarche beyond age 18
+62870,primary_care,the medical care received on first contact with the medical system (before being referred elsewhere)
+62871,primary_care_physician,the physician who provides primary care; "the primary care physician acts as a gatekeeper to the medical system"
+62872,primary_censorship,armed forces censorship performed by personnel of a military unit on the personal communications of persons assigned to that unit
+62873,primary_coil primary_winding primary,coil forming the part of an electrical circuit such that changing current in it induces a current in a neighboring circuit; "current through the primary coil induces current in the secondary coil"
+62874,primary_color primary_colour,any of three colors from which all others can be obtained by mixing
+62875,primary_color_for_light primary_colour_for_light,any of three primary colors of light from which all colors can be obtained by additive mixing; "the primary colors for light are red, blue, and green"
+62876,primary_color_for_pigments primary_colour_for_pigments,any of three pigments from which all colors can be obtained by mixing; "the primary colors for pigments are red, blue, and yellow"
+62877,primary_dentition,dentition of deciduous teeth
+62878,primary_dysmenorrhea,painful menstruation that is intrinsic to menstruation and not the result of a disease
+62879,primary_health_care,health care that is provided by a health care professional in the first contact of a patient with the health care system
+62880,primary_sex_characteristic primary_sexual_characteristic primary_sex_character,the genetically determined sex characteristics bound up with reproduction (genitals and organs of reproduction)
+62881,primary_subtractive_color_for_light primary_subtractive_colour_for_light,any of the three colors that give the primary colors for light after subtraction from white light; "the primary subtractive colors for light are magenta, cyan, and yellow"
+62882,primary_syphilis,the first stage; characterized by a chancre at the site of infection
+62883,primary_tooth deciduous_tooth baby_tooth milk_tooth,one of the first temporary teeth of a young mammal (one of 20 in children)
+62884,primate,any placental mammal of the order Primates; has good eyesight and flexible hands and feet
+62885,primateship,the office of primate
+62886,primatology,the branch of zoology that studies primates
+62887,prime,the second canonical hour; about 6 a.m.
+62888,prime prime_of_life,the time of maturity when power and vigor are greatest
+62889,prime prime_quantity,a natural number that has exactly two distinct natural number divisors: 1 and itself
+62890,prime_factor,the prime factors of a quantity are all of the prime quantities that will exactly divide the given quantity
+62891,prime_interest_rate,the interest rate on short-term loans that banks charge their commercial customers with high credit ratings
+62892,prime_meridian,meridian at zero degree longitude from which east and west are reckoned (usually the Greenwich longitude in England)
+62893,prime_number,an integer that has no integral factors but itself and 1
+62894,prime_time,the hours between 7 and 11 p.m. when the largest tv audience is available
+62895,primer,an introductory textbook
+62896,primidone Mysoline,an anticonvulsant (trade name Mysoline) used to treat grand mal seizures and essential tremor
+62897,primigravida gravida_I,(obstetrics) a woman who is pregnant for the first time
+62898,priming,the act of making something ready
+62899,primipara para_I,(obstetrics) woman who has been delivered of a child for the first time
+62900,primitive,a mathematical expression from which another expression is derived
+62901,primitive,a word serving as the basis for inflected or derived forms; "`pick' is the primitive from which `picket' is derived"
+62902,primitive primitive_person,a person who belongs to an early stage of civilization
+62903,primitivism,a genre characteristic of (or imitative of) primitive artists or children
+62904,primness prudishness prudery Grundyism,excessive or affected modesty
+62905,primo,the principal part of a duet (especially a piano duet)
+62906,primogeniture,right of inheritance belongs exclusively to the eldest son
+62907,primordial_dwarf hypoplastic_dwarf true_dwarf normal_dwarf,an achondroplastic dwarf whose small size is the result of a genetic defect; body parts and mental and sexual development are normal
+62908,primordium anlage,an organ in its earliest stage of development; the foundation for subsequent development
+62909,primping,careful or finicky grooming; "the primping alone took more than an hour"
+62910,primrose primula,any of numerous short-stemmed plants of the genus Primula having tufted basal leaves and showy flowers clustered in umbels or heads
+62911,primrose_jasmine Jasminum_mesnyi,evergreen rambling yellow-flowered shrub of western China
+62912,primrose_path,a life of ease and pleasure
+62913,primus,the presiding bishop of the Episcopal Church of Scotland
+62914,prince,a male member of a royal family other than the sovereign (especially the son of a sovereign)
+62915,prince's-feather gentleman's-cane prince's-plume red_amaranth purple_amaranth Amaranthus_cruentus Amaranthus_hybridus_hypochondriacus Amaranthus_hybridus_erythrostachys,tall showy tropical American annual having hairy stems and long spikes of usually red flowers above leaves deeply flushed with purple; seeds often used as cereal
+62916,prince's-feather princess_feather kiss-me-over-the-garden-gate prince's-plume Polygonum_orientale,annual with broadly ovate leaves and slender drooping spikes of crimson flowers; southeastern Asia and Australia; naturalized in North America
+62917,prince_charming,a suitor who fulfills the dreams of his beloved
+62918,prince_consort,a prince who is the husband of a reigning female sovereign
+62919,princedom,the dignity or rank or position of a prince
+62920,princeling,a petty or insignificant prince who rules some unimportant principality
+62921,princeling,a young prince
+62922,princess,a female member of a royal family other than the queen (especially the daughter of a sovereign)
+62923,princess_royal,the eldest daughter of a British sovereign
+62924,princewood Spanish_elm Cordia_gerascanthus,tropical American timber tree
+62925,principal,the original amount of a debt on which interest is calculated
+62926,principal,(criminal law) any person involved in a criminal offense, regardless of whether the person profits from such involvement
+62927,principal corpus principal_sum,capital as contrasted with the income derived from it
+62928,principal dealer,the major party to a financial transaction at a stock exchange; buys and sells for his own account
+62929,principal school_principal head_teacher head,the educator who has executive authority for a school; "she sent unruly pupils to see the principal"
+62930,principal_axis optic_axis,a line that passes through the center of curvature of a lens so that light is neither reflected nor refracted; "in a normal eye the optic axis is the direction in which objects are seen most distinctly"
+62931,principal_investigator PI,the scientist in charge of an experiment or research project
+62932,principality princedom,territory ruled by a prince
+62933,principalship,the post of principal
+62934,principle,a rule or standard especially of good behavior; "a man of principle"; "he will not violate his principles"
+62935,principle,a basic truth or law or assumption; "the principles of democracy"
+62936,principle precept,rule of personal conduct
+62937,principle rule,a basic generalization that is accepted as true and that can be used as a basis for reasoning or conduct; "their principles of composition characterized all their works"
+62938,principle rule,a rule or law concerning a natural phenomenon or the function of a complex system; "the principle of the conservation of mass"; "the principle of jet propulsion"; "the right-hand rule for inductive fields"
+62939,principle_of_equivalence,(physics) the principle that an observer has no way of distinguishing whether his laboratory is in a uniform gravitational field or is in an accelerated frame of reference
+62940,principle_of_liquid_displacement,(hydrostatics) the volume of a body immersed in a fluid is equal to the volume of the displaced fluid
+62941,principle_of_relativity,(physics) a universal law that states that the laws of mechanics are not affected by a uniform rectilinear motion of the system of coordinates to which they are referred
+62942,principle_of_superposition Huygens'_principle_of_superposition,the displacement of any point due to the superposition of wave systems is equal to the sum of the displacements of the individual waves at that point; "the principle of superposition is the basis of the wave theory of light"
+62943,principle_of_superposition superposition_principle superposition,(geology) the principle that in a series of stratified sedimentary rocks the lowest stratum is the oldest
+62944,print,the text appearing in a book, newspaper, or other printed publication; "I want to see it in print"
+62945,print,availability in printed form; "we've got to get that story into print"; "his book is no longer in print"
+62946,print,a copy of a movie on film (especially a particular version of it)
+62947,print,a fabric with a dyed pattern pressed onto it (usually by engraved rollers)
+62948,print,a picture or design printed from an engraving
+62949,print_buffer,a buffer that stores data until the printer is ready
+62950,print_media,a medium that disseminates printed matter
+62951,print_run press_run,the period that presses run to produce an issue of a newspaper
+62952,print_seller,someone who sells etchings and engravings etc.
+62953,print_shop printing_shop,a workplace where printing is done
+62954,printed_circuit,computer circuit consisting of an electronic sub-assembly; copper conductors are laminated on an insulating board or card and circuit components are inserted into holes and dip soldered
+62955,printer,(computer science) an output device that prints the results of data processing
+62956,printer pressman,someone whose occupation is printing
+62957,printer printing_machine,a machine that prints
+62958,printer's_devil,an apprentice in a printing establishment
+62959,printer's_ink printing_ink,a semisolid quick drying ink made especially for use in printing
+62960,printer_cable,a cable between a computer and a printer
+62961,printing,text handwritten in the style of printed matter
+62962,printing,the business of producing printed material for sale or distribution
+62963,printing printing_process,reproduction by applying ink to paper as for publication
+62964,printing_concern printing_business printing_company,a company that does commercial printing
+62965,printing_operation,an operation that controls the printing or display of information
+62966,printing_unit,a unit of measurement for printing
+62967,printmaker graphic_artist,an artist who designs and makes prints
+62968,printmaking,artistic design and manufacture of prints as woodcuts or silkscreens
+62969,printout,the output of a computer in printed form
+62970,prion,(microbiology) an infectious protein particle similar to a virus but lacking nucleic acid; thought to be the agent responsible for scrapie and other degenerative diseases of the nervous system
+62971,prior,the head of a religious order; in an abbey the prior is next below the abbot
+62972,priority antecedence antecedency anteriority precedence precedency,preceding in time
+62973,priority_processing,data processing in which the operations performed are determined by a system of priorities
+62974,priorship,the office of prior
+62975,priory,religious residence in a monastery governed by a prior or a convent governed by a prioress
+62976,prism,a polyhedron with two congruent and parallel faces (the bases) and whose lateral faces are parallelograms
+62977,prism optical_prism,optical device having a triangular shape and made of glass or quartz; used to deviate a beam or invert an image
+62978,prismatoid,a polyhedron whose vertices all lie in one or the other of two parallel planes; the faces that lie in those planes are the bases of the prismatoid
+62979,prismoid,a prismatoid whose bases are polygons having the same number of sides and whose other faces are trapezoids or parallelograms
+62980,prison prison_house,a prisonlike situation; a place of seeming confinement
+62981,prison prison_house,a correctional institution where persons are confined while on trial or for punishment
+62982,prison_camp internment_camp prisoner_of_war_camp POW_camp,a camp for prisoners of war
+62983,prison_chaplain,a chaplain in a prison
+62984,prison_guard jailer jailor gaoler screw turnkey,someone who guards prisoners
+62985,prison_term sentence time,the period of time a prisoner is imprisoned; "he served a prison term of 15 months"; "his sentence was 5 to 10 years"; "he is doing time in the county jail"
+62986,prisoner captive,a person who is confined; especially a prisoner of war
+62987,prisoner's_base,a children's game; two teams capture opposing players by tagging them and taking them to their own base
+62988,prisoner_of_war POW,a person who surrenders to (or is taken by) the enemy in time of war
+62989,prisoner_of_war_censorship,military censorship of communication to and from prisoners of war and civilian internees held by the armed forces
+62990,privacy privateness seclusion,the quality of being secluded from the presence or view of others
+62991,privacy privateness secrecy concealment,the condition of being concealed or hidden
+62992,private buck_private common_soldier,an enlisted man of the lowest rank in the Army or Marines; "our prisoner was just a private and knew nothing of value"
+62993,private_citizen,a citizen who does not hold any official or public position
+62994,private_detective PI private_eye private_investigator operative shamus sherlock,someone who can be employed as a detective to collect information
+62995,private_foundation,a charity that does not receive a major part of its support from the public
+62996,private_line,a telephone line serving a single subscriber
+62997,private_nuisance,a nuisance that interferes with your interest in and private use and enjoyment of your land
+62998,private_practice,the practice of a profession independently and not as an employee; "he teaches at the medical school but his fortune came from private practice"; "lawyers in private practice are in business and must make a profit to survive"
+62999,private_school,a school established and controlled privately and supported by endowment and tuition
+63000,private_treaty,a sale of property at a price agreed on by the seller and buyer without an intervening agency
+63001,privateer,a privately owned warship commissioned to prey on the commercial shipping or warships of an enemy nation
+63002,privateer privateersman,an officer or crew member of a privateer
+63003,privation deprivation,act of depriving someone of food or money or rights; "nutritional privation"; "deprivation of civil rights"
+63004,privation want deprivation neediness,a state of extreme poverty
+63005,privet,any of various Old World shrubs having smooth entire leaves and terminal panicles of small white flowers followed by small black berries; many used for hedges
+63006,privet_hedge,hedge of privet plants
+63007,privilege,(law) the right to refuse to divulge information obtained in a confidential relationship
+63008,privilege,a special advantage or immunity or benefit not enjoyed by all
+63009,privilege_of_the_floor,the right to be admitted onto the floor of a legislative assembly while it is in session
+63010,privy_council,an advisory council to a ruler (especially to the British Crown)
+63011,privy_purse,allowance for a monarch's personal expenses
+63012,prix_fixe,a menu listing fixed meals at fixed prices
+63013,prize award,something given for victory or superiority in a contest or competition or for winning a lottery; "the prize was a free trip to Europe"
+63014,prize_money,any money given as a prize
+63015,prize_winner lottery_winner,the winner of a lottery
+63016,prizefight prize_fight,a boxing match between professional boxers for a cash prize
+63017,prizefighter gladiator,a professional boxer
+63018,pro,an argument in favor of a proposal
+63019,pro-choice_faction,those who argue that the decision to have an induced abortion should be made by the mother
+63020,pro-life_faction,those who argue that induced abortion is killing and should be prohibited
+63021,pro-lifer,an advocate of full legal protection for embryos and fetuses; someone opposed to legalized induced abortion
+63022,proaccelerin prothrombin_accelerator accelerator_factor factor_V,a coagulation factor
+63023,probabilism,a Roman Catholic system of casuistry that when expert opinions differ an actor can follow any solidly probable opinion that he wishes even though some different opinion might be more probable
+63024,probabilism,(philosophy) the doctrine that (since certainty is unattainable) probability is a sufficient basis for belief and action
+63025,probability,the quality of being probable; a probable event or the most probable event; "for a while mutiny seemed a probability"; "going by past experience there was a high probability that the visitors were lost"
+63026,probability chance,a measure of how likely it is that some event will occur; a number expressing the ratio of favorable cases to the whole number of cases possible; "the probability that an unbiased coin will fall with the head up is 0.5"; "if that phone call is for me, chances are it's my wife"
+63027,probability_theorist,a mathematician who specializes in probability theory
+63028,probability_theory theory_of_probability,the branch of applied mathematics that deals with probabilities
+63029,probable,an applicant likely to be chosen
+63030,probable_cause,(law) evidence sufficient to warrant an arrest or search and seizure; "a magistrate determined that there was probable cause to search the house"
+63031,probate,the act of proving that an instrument purporting to be a will was signed and executed in accord with legal requirements
+63032,probate probate_will,a judicial certificate saying that a will is genuine and conferring on the executors the power to administer the estate
+63033,probate_court,a court having jurisdiction over the probate of wills and the administration of estates
+63034,probation,a trial period during which your character and abilities are tested to see whether you are suitable for work or for membership
+63035,probation,a trial period during which an offender has time to redeem himself or herself
+63036,probation,(law) a way of dealing with offenders without imprisoning them; a defendant found guilty of a crime is released by the court without imprisonment subject to conditions imposed by the court; "probation is part of the sentencing process"
+63037,probation_officer,the officer of the court who supervises probationers
+63038,probationer parolee,someone released on probation or on parole
+63039,probationer student_nurse,a nurse in training who is undergoing a trial period
+63040,probe,a flexible slender surgical instrument with a blunt end that is used to explore wounds or body cavities
+63041,probe,an exploratory action or expedition
+63042,probe,an investigation conducted using a flexible surgical instrument to explore an injury or a body cavity
+63043,probe investigation,an inquiry into unfamiliar or questionable activities; "there was a congressional probe into the scandal"
+63044,probenecid,a uricosuric drug that reduces the level of uric acid in the blood; used to treat gout
+63045,probiotic probiotic_bacterium probiotic_microflora probiotic_flora,a beneficial bacterium found in the intestinal tract of healthy mammals; often considered to be a plant
+63046,probity,complete and confirmed integrity; having strong moral principles; "in a world where financial probity may not be widespread"; "he enjoys an exaggerated reputation for probity"
+63047,problem,a question raised for consideration or solution; "our homework consisted of ten problems to solve"
+63048,problem job,a state of difficulty that needs to be resolved; "she and her husband are having problems"; "it is always a job to contact him"; "urban problems such as traffic congestion and smog"
+63049,problem_solver solver convergent_thinker,a thinker who focuses on the problem as stated and tries to synthesize information and knowledge to achieve a solution
+63050,problem_solving,the area of cognitive psychology that studies the processes involved in solving problems
+63051,problem_solving,the thought processes involved in solving a problem
+63052,proboscidean proboscidian,massive herbivorous mammals having tusks and a long trunk
+63053,proboscis,the human nose (especially when it is large)
+63054,proboscis trunk,a long flexible snout as of an elephant
+63055,proboscis_monkey Nasalis_larvatus,Borneo monkey having a long bulbous nose
+63056,procaine Ethocaine,a white crystalline powder (trade name Ethocaine) administered near nerves as a local anesthetic in dentistry and medicine
+63057,procaine_hydrochloride novocaine Novocain,procaine administered as a hydrochloride (trade name Novocain)
+63058,procarbazine,an antineoplastic drug used to treat Hodgkin's disease
+63059,procedure,a mode of conducting legal and parliamentary proceedings
+63060,procedure process,a particular course of action intended to achieve a result; "the procedure of obtaining a driver's license"; "it was a process of trial and error"
+63061,proceeding legal_proceeding proceedings,(law) the institution of a sequence of steps by which legal judgments are invoked
+63062,procellariiform_seabird,large long-winged bird with hooked bill and tubular nostrils that wanders the open seas
+63063,process cognitive_process mental_process operation cognitive_operation,(psychology) the performance of some composite cognitive activity; an operation that affects mental contents; "the process of thinking"; "the cognitive operation of remembering"
+63064,process outgrowth appendage,a natural prolongation or projection from a part of an organism either animal or plant; "a bony process"
+63065,process physical_process,a sustained phenomenon or one marked by gradual changes through a series of states; "events now in process"; "the process of calcification begins later for boys than for girls"
+63066,process unconscious_process,a mental process that you are not directly aware of; "the process of denial"
+63067,process-server,someone who personally delivers a process (a writ compelling attendance in court) or court papers to the defendant
+63068,process_cheese processed_cheese,made by blending several lots of cheese
+63069,process_printing,a method of printing colored reproductions from halftone plates
+63070,processing,preparing or putting through a prescribed procedure; "the processing of newly arrived immigrants"; "the processing of ore to obtain minerals"
+63071,processing_time,the time it takes to complete a prescribed procedure; "they increased output by decreasing processing time"
+63072,procession,the group action of a collection of people or animals or vehicles moving ahead in more or less regular formation; "processions were forbidden"
+63073,processional prosodion,religious music used in a procession
+63074,processional_march recessional_march,a march to be played for processions
+63075,processor,someone who processes things (foods or photographs or applicants etc.)
+63076,processor,a business engaged in processing agricultural products and preparing them for market
+63077,prochlorperazine,antipsychotic and antiemetic drug used to treat schizophrenia and to combat nausea and vomiting
+63078,proclamation promulgation,the formal act of proclaiming; giving public notice; "his promulgation of the policy proved to be premature"
+63079,proclivity propensity leaning,a natural inclination; "he has a proclivity for exaggeration"
+63080,proconsul,an official in a modern colony who has considerable administrative power
+63081,proconsul,a provincial governor of consular rank in the Roman Republic and Roman Empire
+63082,proconsul,an anthropoid ape of the genus Proconsul
+63083,proconsulship proconsulate,the position of proconsul
+63084,proconvertin cothromboplastin stable_factor factor_VII,a coagulation factor formed in the kidney under the influence of vitamin K
+63085,procrastination cunctation shillyshally,the act of procrastinating; putting off or delaying or defering an action to a later time
+63086,procrastinator postponer cunctator,someone who postpones work (especially out of laziness or habitual carelessness)
+63087,procrustean_standard procrustean_rule procrustean_bed,a standard that is enforced uniformly without regard to individuality
+63088,proctalgia,pain in the rectum
+63089,proctitis,inflammation of the rectum; marked by bloody stools and a frequent urge to defecate; frequently associated with Crohn's disease or ulcerative colitis
+63090,proctologist,a doctor specializing in diseases of the rectum and anus
+63091,proctology,the branch of medicine dealing with the diagnosis and treatment of disorders of the colon or rectum or anus
+63092,proctoplasty rectoplasty,reconstructive surgery of the anus or rectum
+63093,proctor monitor,someone who supervises (an examination)
+63094,proctorship,the position of proctor
+63095,proctoscope,an endoscope for examining the rectum
+63096,proctoscopy,visual examination of the rectum and the end of the colon by means of a proctoscope
+63097,procurator,(ancient Rome) someone employed by the Roman Emperor to manage finance and taxes
+63098,procurement procurance procural,the act of getting possession of something; "he was responsible for the procurement of materials and supplies"
+63099,procurer securer,someone who obtains or acquires; "the procurer of opera tickets"
+63100,procuress,a woman pimp
+63101,procursive_epilepsy,epilepsy in which a seizure is induced by whirling or running
+63102,procyclidine Kemadrin,drug (trade name Kemadrin) used to reduce tremors in Parkinsonism
+63103,procyonid,plantigrade carnivorous mammals
+63104,prod goad,a pointed instrument that is used to prod into a state of motion
+63105,prodigal profligate squanderer,a recklessly extravagant consumer
+63106,prodigy,an unusually gifted or intelligent (young) person; someone whose talents excite wonder and admiration; "she is a chess prodigy"
+63107,prodigy,an impressive or wonderful example of a particular quality; "the Marines are expected to perform prodigies of valor"
+63108,prodrome prodroma,an early symptom that a disease is developing or that an attack is about to occur
+63109,produce green_goods green_groceries garden_truck,fresh fruits and vegetable grown for the market
+63110,producer,someone who finds financing for and supervises the making and presentation of a show (play or film or program or similar work)
+63111,producer,something that produces; "Maine is a leading producer of potatoes"; "this microorganism is a producer of disease"
+63112,producer_gas air_gas,a gas made of carbon monoxide and hydrogen and nitrogen; made by passing air over hot coke
+63113,producer_price_index wholesale_price_index,an index of changes in wholesale prices
+63114,product,a chemical substance formed as a result of a chemical reaction; "a product of lime and nitric acid"
+63115,product,a consequence of someone's efforts or of a particular set of circumstances; "skill is the product of hours of practice"; "his reaction was the product of hunger and fatigue"
+63116,product mathematical_product,a quantity obtained by multiplication; "the product of 2 and 3 is 6"
+63117,product production,an artifact that has been created by someone or some process; "they improve their product every year"; "they export most of their agricultural production"
+63118,product-moment_correlation_coefficient Pearson_product-moment_correlation_coefficient,the most commonly used method of computing a correlation coefficient between variables that are linearly related
+63119,product_development,improving an existing product or developing new kinds of products
+63120,product_introduction,the introduction (usually by an advertising campaign) of a new product or product line
+63121,product_research,marketing research that yields information about desired characteristics of the product or service
+63122,production,a display that is exaggerated or unduly complicated; "she tends to make a big production out of nothing"
+63123,production,a presentation for the stage or screen or radio or television; "have you seen the new production of Hamlet?"
+63124,production,(economics) manufacturing or mining or growing something (usually in large quantities) for sale; "he introduced more efficient methods of production"
+63125,production,the creation of value or wealth by producing goods and services
+63126,production,the act or process of producing something; "Shakespeare's production of poetry was enormous"; "the production of white blood cells"
+63127,production,(law) the act of exhibiting in a court of law; "the appellate court demanded the production of all documents"
+63128,production_cost,combined costs of raw material and labor incurred in producing goods
+63129,production_line assembly_line line,mechanical system in a factory whereby an article is conveyed through sites at which successive operations are performed on it
+63130,production_order,an order that initiates the manufacturing process
+63131,productiveness productivity,the quality of being productive or having the power to produce
+63132,productivity,(economics) the ratio of the quantity and quality of units produced to the labor per unit of time
+63133,proenzyme zymogen,any of a group of compounds that are inactive precursors of enzymes and require some change (such as the hydrolysis of a fragment that masks an active enzyme) to become active
+63134,profanation,degradation of something worthy of respect; cheapening
+63135,profanation desecration blasphemy sacrilege,blasphemous behavior; the act of depriving something of its sacred character; "desecration of the Holy Sabbath"
+63136,profaneness,an attitude of irreverence or contempt for a divinity
+63137,profaneness unsanctification,unholiness by virtue of being profane
+63138,profanity,vulgar or irreverent speech or action
+63139,profession,the body of people in a learned occupation; "the news spread rapidly through the medical profession"; "they formed a community of scientists"
+63140,profession,affirmation of acceptance of some religion or faith; "a profession of Christianity"
+63141,profession,an occupation requiring special education (especially in the liberal arts or sciences)
+63142,profession professing,an open avowal (true or false) of some belief or opinion; "a profession of disagreement"
+63143,professional pro,an athlete who plays for pay
+63144,professional professional_person,a person engaged in one of the learned professions
+63145,professional_association,an association of practitioners of a given profession
+63146,professional_baseball,playing baseball for money
+63147,professional_basketball,playing basketball for money
+63148,professional_boxing,boxing for money
+63149,professional_football,football played for pay
+63150,professional_golf,playing golf for money
+63151,professional_organization professional_organisation,an organization of and for professional people
+63152,professional_relation,the relation that exists when one person requests and is granted professional help from a qualified source
+63153,professional_tennis,playing tennis for money
+63154,professional_wrestling,wrestling for money
+63155,professionalism,the expertness characteristic of a professional person
+63156,professionalization professionalisation,the social process whereby people come to engage in an activity for pay or as a means of livelihood; "the professionalization of American sports"; "the professionalization of warfare"
+63157,professor prof,someone who is a member of the faculty at a college or university
+63158,professorship chair,the position of professor; "he was awarded an endowed chair in economics"
+63159,proficiency,the quality of having great facility and competence
+63160,proficiency technique,skillfulness in the command of fundamentals deriving from practice and familiarity; "practice greatly improves proficiency"
+63161,profile,an outline of something (especially a human face as seen from one side)
+63162,profile,a vertical section of the Earth's crust showing the different horizons or layers
+63163,profile,an analysis (often in graphical form) representing the extent to which something exhibits various characteristics; "a biochemical profile of blood"; "a psychological profile of serial killers"
+63164,profile,biographical sketch
+63165,profiling,recording a person's behavior and analyzing psychological characteristics in order to predict or assess their ability in a certain sphere or to identify a particular group of people
+63166,profit gain,the advantageous quality of being beneficial
+63167,profit_and_loss profit_and_loss_account,an account compiled at the end of an accounting period to show gross and net profit or loss
+63168,profit_sharing,a system in which employees receive a share of the net profits of the business
+63169,profit_taker,someone who sells stock shares at a profit
+63170,profitableness profitability gainfulness lucrativeness,the quality of affording gain or benefit or profit
+63171,profiteer,someone who makes excessive profit (especially on goods in short supply)
+63172,profiterole,a small hollow pastry that is typically filled with cream and covered with chocolate
+63173,profligacy dissipation dissolution licentiousness looseness,dissolute indulgence in sensual pleasure
+63174,profoundness,extremeness of degree; "the profoundness of his ignorance"
+63175,profundity profoundness,intellectual depth; penetrating knowledge; keen insight; etc; "the depth of my feeling"; "the profoundness of the silence"
+63176,profusion profuseness richness cornucopia,the property of being extremely abundant; "the profusion of detail"; "the idiomatic richness of English"
+63177,progenitor primogenitor,an ancestor in the direct line
+63178,progeria,a rare abnormality marked by premature aging (grey hair and wrinkled skin and stooped posture) in a child
+63179,progesterone Lipo-Lutin,a steroid hormone (trade name Lipo-Lutin) produced in the ovary; prepares and maintains the uterus for pregnancy
+63180,progestin progestogen,any of a group of steroid hormones that have the effect of progesterone
+63181,prognathism,the condition of being prognathous; the condition of having a projecting jaw
+63182,prognosis forecast,a prediction about how something (as the weather) will develop
+63183,prognosis prospect medical_prognosis,a prediction of the course of a disease
+63184,program programme,an announcement of the events that will occur as part of a theatrical or sporting event; "you can't tell the players without a program"
+63185,program programme,a system of projects or services intended to meet a public need; "he proposed an elaborate program of public works"; "working mothers rely on the day care program"
+63186,program programme,a performance (or series of performances) at a public presentation; "the program lasted more than two hours"
+63187,program programme computer_program computer_programme,(computer science) a sequence of instructions that a computer can interpret and execute; "the program required several hundred lines of code"
+63188,program_music programme_music,musical compositions intended to evoke images or remind the listener of events
+63189,program_trading,a trading technique involving large blocks of stock with trades triggered by computer programs
+63190,programma,an edict that has been publicly posted
+63191,programmer computer_programmer coder software_engineer,a person who designs and writes and tests computer programs
+63192,programming programing computer_programming computer_programing,creating a sequence of instructions to enable the computer to do something
+63193,programming_language programing_language,(computer science) a language designed for programming computers
+63194,progress progression advance,a movement forward; "he listened for the progress of the troops"
+63195,progress progression procession advance advancement forward_motion onward_motion,the act of moving forward (as toward a goal)
+63196,progress_report,a report of work accomplished during a specified time period
+63197,progression patterned_advance,a series with a definite pattern of advance
+63198,progressive progressive_tense imperfect imperfect_tense continuous_tense,a tense of verbs used in describing action that is on-going
+63199,progressive_aspect,the aspect of a verb that expresses its on-going action
+63200,progressive_rock art_rock,a style of rock music that emerged in the 1970s; associated with attempts to combine rock with jazz and other forms; intended for listening and not dancing
+63201,progressive_tax graduated_tax,any tax in which the rate increases as the amount subject to taxation increases
+63202,progressive_vaccinia vaccinia_gangrenosa,a severe or even fatal form of vaccinia that occurs mainly in persons with an immunological deficiency; characterized by progressive enlargement of the initial lesion
+63203,progressiveness progressivity,advancement toward better conditions or policies or methods
+63204,progressivism,the political orientation of those who favor progress toward better conditions in government and society
+63205,progymnosperm,an ancestral fossil type from which modern gymnosperms are thought to have derived
+63206,prohibition,refusal to approve or assent to
+63207,prohibition,a law forbidding the sale of alcoholic beverages; "in 1920 the 18th amendment to the Constitution established prohibition in the US"
+63208,prohibition ban proscription,a decree that prohibits something
+63209,prohibition inhibition forbiddance,the action of prohibiting or inhibiting or forbidding (or an instance thereof); "they were restrained by a prohibition in their charter"; "a medical inhibition of alcoholic beverages"; "he ignored his parents' forbiddance"
+63210,prohibition prohibition_era,the period from 1920 to 1933 when the sale of alcoholic beverages was prohibited in the United States by a constitutional amendment
+63211,project projection,a planned undertaking
+63212,projectile missile,a weapon that is forcibly thrown or projected at a targets but is not self-propelled
+63213,projection,any solid convex shape that juts out from something
+63214,projection,(psychiatry) a defense mechanism by which your own traits and emotions are attributed to someone else
+63215,projection,the projection of an image from a film onto a screen
+63216,projection,a prediction made by extrapolating from past observations
+63217,projection,the representation of a figure or solid on a plane as it would look from a particular direction
+63218,projection,any structure that branches out from a central support
+63219,projection acoustic_projection sound_projection,the acoustic phenomenon that gives sound a penetrating quality; "our ukuleles have been designed to have superior sound and projection"; "a prime ingredient of public speaking is projection of the voice"
+63220,projectionist,the person who operates the projector in a movie house
+63221,projective_geometry descriptive_geometry,the geometry of properties that remain invariant under projection
+63222,projective_test projective_device projective_technique,any personality test designed to yield information about someone's personality on the basis of their unrestricted response to ambiguous objects or situations
+63223,projector,an optical device for projecting a beam of light
+63224,projector,an optical instrument that projects an enlarged image onto a screen
+63225,prokaryote procaryote,a unicellular organism having cells lacking membrane-bound nuclei; bacteria are the prime example but also included are blue-green algae and actinomycetes and mycoplasma
+63226,prolactin lactogenic_hormone luteotropin,gonadotropic hormone secreted by the anterior pituitary; in females it stimulates growth of the mammary glands and lactation after parturition
+63227,prolamine,a simple protein found in plants
+63228,prolapse prolapsus descensus,the slipping or falling out of place of an organ (as the uterus)
+63229,prolate_cycloid,a cycloid generated by a point outside the rolling circle
+63230,prolegomenon,a preliminary discussion inserted at the beginning of a book or treatise
+63231,prolepsis,anticipating and answering objections in advance
+63232,proletarian prole worker,a member of the working class (not necessarily employed); "workers of the world--unite!"
+63233,proliferation,a rapid increase in number (especially a rapid increase in the number of deadly weapons); "the proliferation of nuclear weapons"
+63234,proliferation,growth by the rapid multiplication of parts
+63235,proline,an amino acid that is found in many proteins (especially collagen)
+63236,prolixity prolixness windiness long-windedness wordiness,boring verbosity
+63237,prologue,an introduction to a play
+63238,prolongation protraction perpetuation lengthening,the act of prolonging something; "there was an indefinite prolongation of the peace talks"
+63239,prolonge,a rope fitted with a hook and used for towing a gun carriage
+63240,prolonge_knot sailor's_breastplate,a knot in the rope used to drag a gun carriage
+63241,prolonged_interrogation,a form of psychological torture inflicted by questioning the victim for hours
+63242,promenade,a square dance figure; couples march counterclockwise in a circle
+63243,promenade,a march of all the guests at the opening of a formal dance
+63244,promenade mall,a public area set aside as a pedestrian walk
+63245,promenade prom,a formal ball held for a school class toward the end of the academic year
+63246,promethazine Phenergan,antihistamine (trade name Phenergan) used to treat allergies; also an antiemetic used to treat motion sickness
+63247,promethium Pm atomic_number_61,a soft silvery metallic element of the rare earth group having no stable isotope; was discovered in radioactive form as a fission product of uranium
+63248,prominence,the state of being prominent: widely known or eminent
+63249,prominence,relative importance
+63250,promiscuity promiscuousness sleeping_around,indulging in promiscuous (casual and indiscriminate) sexual relations
+63251,promise,a verbal commitment by one person to another agreeing to do (or not to do) something in the future
+63252,promise hope,grounds for feeling hopeful about the future; "there is little or no promise that he will recover"
+63253,promisee,a person to whom a promise is made
+63254,promiser promisor,a person who makes a promise
+63255,promontory headland head foreland,a natural elevation (especially a rocky one that juts out into the sea)
+63256,promoter booster plugger,someone who is an active supporter and advocate
+63257,promotion,act of raising in rank or position
+63258,promotion furtherance advancement,encouragement of the progress or growth or acceptance of something
+63259,promotion promo publicity promotional_material packaging,a message issued in behalf of some product or cause or idea or person or institution; "the packaging of new ideas"
+63260,promotion_system,a system for advancing participants to higher-status positions
+63261,promotional_expense,the cost of promoting a product
+63262,prompt command_prompt,(computer science) a symbol that appears on the computer screen to indicate that the computer is ready to receive a command
+63263,prompt prompting,a cue given to a performer (usually the beginning of the next line to be spoken); "the audience could hear his prompting"
+63264,prompt_box prompter's_box,a booth projecting above the floor in the front of a stage where the prompter sits; opens toward the performers on stage
+63265,promptbook prompt_copy,the copy of the playscript used by the prompter
+63266,prompter autocue,a device that displays words for people to read
+63267,prompter theater_prompter,someone who assists a performer by providing the next words of a forgotten speech
+63268,promptness promptitude,the characteristic of doing things without delay
+63269,promulgation,the official announcement of a new law or ordinance whereby the law or ordinance is put into effect
+63270,promulgator,(law) one who promulgates laws (announces a law as a way of putting it into execution)
+63271,promycelium,the basidium of various fungi
+63272,pronation,rotation of the hands and forearms so that the palms face downward
+63273,pronator,a muscle that produces or assists in pronation
+63274,proneness,being disposed to do something; "accident proneness"
+63275,prong,a pointed projection
+63276,pronghorn prongbuck pronghorn_antelope American_antelope Antilocapra_americana,fleet antelope-like ruminant of western North American plains with small branched horns
+63277,pronominal_phrase pronominal,a phrase that functions as a pronoun
+63278,pronoun,a function word that is used in place of a noun or noun phrase
+63279,pronouncement dictum say-so,an authoritative declaration
+63280,pronucleus,the nucleus of the ovum or sperm after fertilization but before they fuse to form the nucleus of the zygote
+63281,pronunciation,the manner in which someone utters a word; "they are always correcting my pronunciation"
+63282,pronunciation orthoepy,the way a word or a language is customarily spoken; "the pronunciation of Chinese is difficult for foreigners"; "that is the correct pronunciation"
+63283,proof,a measure of alcoholic strength expressed as an integer twice the percentage of alcohol present (by volume)
+63284,proof,a formal series of statements showing that if one thing is true something else necessarily follows from it
+63285,proof,a trial photographic print from a negative
+63286,proof cogent_evidence,any factual evidence that helps to establish the truth of something; "if you have any proof for what you say, now is the time to produce it"
+63287,proof test_copy trial_impression,(printing) an impression made to check for errors
+63288,proof_spirit,a mixture containing half alcohol by volume at 60 degrees Fahrenheit
+63289,proofreader reader,someone who reads proof in order to find errors and mark corrections
+63290,prop,a support placed beneath or against something to keep it from shaking or falling
+63291,prop_root,a root that grows from and supports the stem above the ground in plants such as mangroves
+63292,propaedeutic propaedeutics,a course that provides an introduction to an art or science (or to more advanced study generally)
+63293,propaganda,information that is spread for the purpose of promoting some cause
+63294,propagandist,a person who disseminates messages calculated to assist some cause or some government
+63295,propagation,the movement of a wave through a medium
+63296,propagation extension,the spreading of something (a belief or practice) into new regions
+63297,propagator,someone who propagates plants (as under glass)
+63298,propagator disseminator,someone who spreads the news
+63299,propanal propionaldehyde,a colorless liquid aldehyde
+63300,propane,colorless gas found in natural gas and petroleum; used as a fuel
+63301,propanol propyl_alcohol,a clear colorless volatile liquid (alcohol) used as a solvent and antiseptic
+63302,propanolol Inderal,the first beta blocker (trade name Inderal) used in treating hypertension and angina pectoris and essential tremor
+63303,proparoxytone,word having stress or acute accent on the antepenult
+63304,propellant propellent,any substance that propels
+63305,propellant_explosive impulse_explosive,an explosive that is used to propel projectiles from guns or to propel rockets and missiles or to launch torpedos and depth charges
+63306,propeller propellor,a mechanical device that rotates to push against air or water
+63307,propeller_plane,an airplane that is driven by a propeller
+63308,propenal acrolein,a pungent colorless unsaturated liquid aldehyde made from propene
+63309,propenoate acrylate,a salt or ester of propenoic acid
+63310,propenoic_acid acrylic_acid,an unsaturated liquid carboxylic acid used in the manufacture of acrylic resins
+63311,propenonitrile acrylonitrile vinyl_cyanide,a colorless liquid unsaturated nitrile made from propene
+63312,proper_fraction,a fraction with a numerator smaller than the denominator
+63313,proper_noun proper_name,a noun that denotes a particular thing; usually capitalized
+63314,property,a basic or essential attribute shared by all members of a class; "a study of the physical properties of atomic particles"
+63315,property attribute dimension,a construct whereby objects or individuals can be distinguished; "self-confidence is not an endearing property"
+63316,property belongings holding,something owned; any tangible or intangible possession that is owned by someone; "that hat is my property"; "he is a man of property"
+63317,property prop,any movable articles or objects used on the set of a play or movie; "before every scene he ran down his checklist of props"
+63318,property_line,the boundary line between two pieces of property
+63319,property_man propman property_master,member of the stage crew in charge of properties
+63320,property_right,the legal right of ownership
+63321,property_settlement,(matrimonial law) the division of property owned or acquired by marriage partners during their marriage
+63322,property_tax land_tax,a capital tax on property imposed by municipalities; based on the estimated value of the property
+63323,prophase,the first stage of meiosis
+63324,prophase,the first stage of mitosis
+63325,prophecy divination,a prediction uttered under divine inspiration
+63326,prophecy prognostication vaticination,knowledge of the future (usually said to be obtained from a divine source)
+63327,prophet,someone who speaks by divine inspiration; someone who is an interpreter of the will of God
+63328,prophet prophesier oracle seer vaticinator,an authoritative person who divines the future
+63329,prophetess,a woman prophet
+63330,prophylaxis,the prevention of disease
+63331,prophyll,a plant structure resembling a leaf
+63332,propionic_acid propanoic_acid,a liquid fatty acid found in milk and sweat and in fuel distillates
+63333,propjet turboprop turbo-propeller_plane,an airplane with an external propeller that is driven by a turbojet engine
+63334,proportion,the quotient obtained when the magnitude of a part is divided by the magnitude of the whole
+63335,proportion dimension,magnitude or extent; "a building of vast proportions"
+63336,proportion proportionality balance,harmonious arrangement or relation of parts or elements within a whole (as in a design); "in all perfectly beautiful objects there is found the opposition of one part to another and a reciprocal balance"- John Ruskin
+63337,proportion ratio,the relation between things (or parts of things) with respect to their comparative quantity, magnitude, or degree; "an inordinate proportion of the book is given over to quotations"; "a dry martini has a large proportion of gin"
+63338,proportional,one of the quantities in a mathematical proportion
+63339,proportional_counter_tube proportional_counter,counter tube whose output pulse is proportional to number of ions produced
+63340,proportional_font,any font whose different characters have different widths
+63341,proportional_representation,representation of all parties in proportion to their popular vote
+63342,proportional_tax,any tax in which the rate is constant as the amount subject to taxation increases
+63343,proportionality,a ratio of two quantities that is constant
+63344,proposal,something proposed (such as a plan or assumption)
+63345,proposal proposition,the act of making a proposal; "they listened to her proposal"
+63346,proposer mover,(parliamentary procedure) someone who makes a formal motion
+63347,proposition,an offer for a private bargain (especially a request for sexual favors)
+63348,proposition,(logic) a statement that affirms or denies something and is either true or false
+63349,proposition,a task to be dealt with; "securing adequate funding is a time-consuming proposition"
+63350,propositional_logic propositional_calculus,a branch of symbolic logic dealing with propositions as units and with their combinations and the connectives that relate them
+63351,propositus,the person immediately affected by or concerned with an action
+63352,propoxyphene propoxyphene_hydrochloride Darvon,a mildly narcotic analgesic drug (trade name Darvon) related to methadone but less addictive
+63353,proprietary_colony,a colony given to a proprietor to govern (in 17th century)
+63354,proprietorship proprietary,an unincorporated business owned by a single person who is responsible for its liabilities and entitled to its profits
+63355,proprietorship_certificate,a certificate showing who is responsible in an individually owned business
+63356,proprietress,a woman proprietor
+63357,propriety properness correctitude,correct or appropriate behavior
+63358,proprioception,the ability to sense the position and location and orientation and movement of the body and its parts
+63359,proprioceptor,special nerve endings in the muscles and tendons and other organs that respond to stimuli regarding the position and movement of the body
+63360,proprionamide propanamide,the amide of propionic acid (C2H5CONH2)
+63361,props,proper respect; "I have to give my props to the governor for the way he handled the problem"
+63362,propulsion,a propelling force
+63363,propulsion actuation,the act of propelling
+63364,propulsion_system,a system that provides a propelling or driving force
+63365,propyl propyl_group propyl_radical,the monovalent organic group C3H7- obtained from propane
+63366,propylene propene,a flammable gas obtained by cracking petroleum; used in organic synthesis
+63367,propylene_glycol propanediol,a sweet colorless, viscous, hygroscopic liquid used as an antifreeze and in brake fluid and also as a humectant in cosmetics and personal care items although it can be absorbed through the skin with harmful effects
+63368,propylthiouracil,a crystalline compound used as an antithyroid drug in the treatment of goiter
+63369,proration,the proportional limitation of production or distribution of something (e.g. crude oil or natural gas) to some fractional part of the total capacity of each producer
+63370,prorogation,discontinuation of the meeting (of a legislative body) without dissolving it
+63371,proscenium apron forestage,the part of a modern theater stage between the curtain and the orchestra (i.e., in front of the curtain)
+63372,proscenium proscenium_wall,the wall that separates the stage from the auditorium in a modern theater
+63373,proscenium_arch,the arch over the opening in the proscenium wall
+63374,prosciutto,Italian salt-cured ham usually sliced paper thin
+63375,prose,matter of fact, commonplace, or dull expression
+63376,prose,ordinary writing as distinguished from verse
+63377,prose_poem,prose that resembles poetry
+63378,prosecution,the lawyers acting for the state to put the case against the defendant
+63379,prosecution criminal_prosecution,the institution and conduct of legal proceedings against a defendant for criminal behavior
+63380,prosecutor public_prosecutor prosecuting_officer prosecuting_attorney,a government official who conducts criminal prosecutions on behalf of the state
+63381,proselyte,a new convert; especially a gentile converted to Judaism
+63382,proselytism,the practice of proselytizing
+63383,proselytism,the state of being a proselyte; spiritual rebirth resulting from the zeal of crusading advocacy of the gospel
+63384,prosimian,primitive primates having large ears and eyes and characterized by nocturnal habits
+63385,prosiness prosaicness,commonplaceness as a consequence of being humdrum and not exciting
+63386,prosody inflection,the patterns of stress and intonation in a language
+63387,prosody metrics,the study of poetic meter and the art of versification
+63388,prospect chance,the possibility of future success; "his prospects as a writer are excellent"
+63389,prospector,someone who explores an area for mineral deposits
+63390,prospectus,a formal written offer to sell securities (filed with the SEC) that sets forth a plan for a (proposed) business enterprise; "a prospectus should contain the facts that an investor needs to make an informed decision"
+63391,prosperity,an economic state of growth with rising profits and full employment
+63392,prosperity successfulness,the condition of prospering; having good fortune
+63393,prostaglandin,a potent substance that acts like a hormone and is found in many bodily tissues (and especially in semen); produced in response to trauma and may affect blood pressure and metabolism and smooth muscle activity
+63394,prostate_cancer prostatic_adenocarcinoma,cancer of the prostate gland
+63395,prostate_gland prostate,a firm partly muscular chestnut sized gland in males at the neck of the urethra; produces a viscid secretion that is the fluid part of semen
+63396,prostate_specific_antigen PSA,a protein manufactured exclusively by the prostate gland; PSA is produced for the ejaculate where it liquifies the semen and allows sperm cells to swim freely; elevated levels of PSA in blood serum are associated with benign prostatic hyperplasia and prostate cancer
+63397,prostatectomy,surgical removal of part or all of the prostate gland
+63398,prostatitis,inflammation of the prostate gland characterized by perineal pain and irregular urination and (if severe) chills and fever
+63399,prosthesis prosthetic_device,corrective consisting of a replacement for a part of the body
+63400,prosthetics,the branch of medicine dealing with the production and use of artificial body parts
+63401,prosthetist,an expert in prosthetics
+63402,prosthion prostheon alveolar_point,craniometric point that is the most anterior point in the midline on the alveolar process of the maxilla
+63403,prosthodontics prosthodontia,the branch of dentistry dealing with the replacement of teeth and related mouth or jaw structures by artificial devices
+63404,prosthodontist,a dentist who is expert in prosthodontics
+63405,prostitute cocotte whore harlot bawd tart cyprian fancy_woman working_girl sporting_lady lady_of_pleasure woman_of_the_street,a woman who engages in sexual intercourse for money
+63406,prostitution harlotry whoredom,offering sexual intercourse for pay
+63407,prostration,abject submission; the emotional equivalent of prostrating your body
+63408,prostration,the act of assuming a prostrate position
+63409,protactinium protoactinium Pa atomic_number_91,a short-lived radioactive metallic element formed from uranium and disintegrating into actinium and then into lead
+63410,protagonist agonist,the principal character in a work of fiction
+63411,protamine,a simple protein found in fish sperm; rich in arginine; simpler in composition than globulin or albumin; counteracts the anticoagulant effect of heparin
+63412,protanopia red-blindness,dichromacy characterized by lowered sensitivity to long wavelengths of light resulting in an inability to distinguish red and purplish blue
+63413,protea,any tropical African shrub of the genus Protea having alternate rigid leaves and dense colorful flower heads resembling cones
+63414,protease peptidase proteinase proteolytic_enzyme,any enzyme that catalyzes the splitting of proteins into smaller peptide fractions and amino acids by a process known as proteolysis
+63415,protease_inhibitor PI,an antiviral drug used against HIV; interrupts HIV replication by binding and blocking HIV protease; often used in combination with other drugs
+63416,protection,the activity of protecting someone or something; "the witnesses demanded police protection"
+63417,protection shelter,the condition of being protected; "they were huddled together for protection"; "he enjoyed a sense of peace and protection in his new home"
+63418,protection trade_protection,the imposition of duties or quotas on imports in order to protect domestic industry against foreign competition; "he made trade protection a plank in the party platform"
+63419,protection tribute,payment extorted by gangsters on threat of violence; "every store in the neighborhood had to pay him protection"
+63420,protectionism,the policy of imposing duties or quotas on imports in order to protect home industries from overseas competition
+63421,protectionist,an advocate of protectionism
+63422,protective_coloration,coloration making an organism less visible or attractive to predators
+63423,protective_covering,the tough natural covering of some organisms
+63424,protective_covering protective_cover protection,a covering that is intend to protect from damage or injury; "they had no protection from the fallout"; "wax provided protection for the floors"
+63425,protective_fold,a flap of tissue that protects what it covers
+63426,protective_garment,clothing that is intended to protect the wearer from injury
+63427,protective_tariff,a tariff imposed to protect domestic firms from import competition
+63428,protectiveness,a feeling of protective affection
+63429,protectiveness,the quality of providing protection; "statistical evidence for the protectiveness of vaccination"
+63430,protectorate associated_state,a state or territory partly controlled by (but not a possession of) a stronger state but autonomous in internal affairs; protectorates are established by treaty
+63431,protectorship,the position of protector
+63432,protege,a person who receives support and protection from an influential patron who furthers the protege's career
+63433,protegee,a woman protege
+63434,protein,any of a large group of nitrogenous organic compounds that are essential constituents of living cells; consist of polymers of amino acids; essential in the diet of animals for growth and for repair of tissues; can be obtained from meat and eggs and milk and legumes; "a diet high in protein"
+63435,protein_folding folding,the process whereby a protein molecule assumes its intricate three-dimensional shape; "understanding protein folding is the next step in deciphering the genetic code"
+63436,protein_molecule,any large molecule containing chains of amino acids linked by peptide bonds
+63437,proteolysis,the hydrolysis of proteins into peptides and amino acids by cleavage of their peptide bonds
+63438,proteome,the full complement of proteins produced by a particular genome
+63439,proteomics,the branch of genetics that studies the full set of proteins encoded by a genome
+63440,proteosome_vaccine proteosome,a form of vaccine that can be administered by an inhaler
+63441,protest,the act of making a strong public expression of disagreement and disapproval; "he shouted his protests at the umpire"; "a shower of protest was heard from the rear of the hall"
+63442,protest objection dissent,the act of protesting; a public (often organized) manifestation of dissent
+63443,protest protestation,a formal and solemn declaration of objection; "they finished the game under protest to the league president"; "the senator rose to register his protest"; "the many protestations did not stay the execution"
+63444,protest_march,occasion when you can express opposition by marching (usually on some government institution) without a license
+63445,protestation,a strong declaration of protest
+63446,prothalamion prothalamium,a song in celebration of a marriage
+63447,prothorax,the anterior part of an insect's thorax; bears the first pair of legs
+63448,prothrombin factor_II,a protein in blood plasma that is the inactive precursor of thrombin
+63449,prothrombinase factor_X,coagulation factor that is converted to an enzyme that converts prothrombin to thrombin in a reaction that depends on calcium ions and other coagulation factors
+63450,protist protistan,free-living or colonial organisms with diverse nutritional and reproductive modes
+63451,proto-oncogene,a normal gene that has the potential to become an oncogene
+63452,protoarcheology protoarchaeology,the study of prehistoric human artifacts and human fossils
+63453,protoavis,most primitive avian type known; extinct bird of the Triassic having bird-like jaw and hollow limbs and breastbone with dinosaur-like tail and hind limbs
+63454,protoceratops,small horned dinosaur
+63455,protocol,forms of ceremony and etiquette observed by diplomats and heads of state
+63456,protocol,code of correct conduct; "safety protocols"; "academic protocol"
+63457,protocol communications_protocol,(computer science) rules determining the format and transmission of data
+63458,protoctist,any of the unicellular protists
+63459,protoctist_family,any of the families of Protoctista
+63460,protoctist_genus,any genus of Protoctista
+63461,protoctist_order,the order of protoctists
+63462,protohippus,Pliocene horse approaching donkeys in size
+63463,protohistory protoanthropology,the study humans prior to the invention of writing
+63464,protology,the study of origins and first things; "To Christians, protology refers to God's fundamental purpose for humanity"
+63465,proton,a stable particle with positive charge equal to the negative charge of an electron
+63466,proton_accelerator,a collider that collides beams of protons and antiprotons
+63467,protoplasm living_substance,the substance of a living cell (including cytoplasm and nucleus)
+63468,protoplasmic_astrocyte,a kind of astrocyte found in the grey matter
+63469,prototherian,primitive oviparous mammals found only in Australia and Tasmania and New Guinea
+63470,prototype paradigm epitome image,a standard or typical example; "he is the prototype of good breeding"; "he provided America with an image of the good father"
+63471,protozoal_infection,any infection caused by a protozoan
+63472,protozoan protozoon,any of diverse minute acellular or unicellular organisms usually nonphotosynthetic
+63473,protozoologist,a zoologist who studies protozoans
+63474,protozoology,the branch of zoology that studies protozoans
+63475,protractor,drafting instrument used to draw or measure angles
+63476,protriptyline,tricyclic antidepressant used to treat clinical depression
+63477,protrusion projection jut jutting,the act of projecting out from something
+63478,protuberance,the condition of being protuberant; the condition of bulging out; "the protuberance of his belly"
+63479,proturan telsontail,any of several minute primitive wingless and eyeless insects having a cone-shaped head; inhabit damp soil or decaying organic matter
+63480,proud_flesh,the swollen tissue around a healing wound or ulcer
+63481,proverb adage saw byword,a condensed but memorable saying embodying some important fact of experience that is taken as true by many people
+63482,providence,a manifestation of God's foresightful care for his creatures
+63483,providence,the prudence and care exercised by someone in the management of resources
+63484,providence,the guardianship and control exercised by a deity; "divine providence"
+63485,provider,someone who provides the means for subsistence
+63486,province responsibility,the proper sphere or extent of your activities; "it was his province to take care of himself"
+63487,provincial,(Roman Catholic Church) an official in charge of an ecclesiastical province acting under the superior general of a religious order; "the general of the Jesuits receives monthly reports from the provincials"
+63488,provincial_capital,the capital city of a province
+63489,provincialism,a lack of sophistication
+63490,proving_ground,a workplace for testing new equipment or ideas
+63491,provirus,cDNA copy of the RNA genome of a retrovirus; the genetic material of a virus as incorporated into and able to replicate with the genome of a host cell
+63492,provision,a store or supply of something (especially of food or clothing or arms)
+63493,provision proviso,a stipulated condition; "he accepted subject to one provision"
+63494,provision supply supplying,the activity of supplying or providing something
+63495,provitamin,vitamin precursor; a substance that is converted into a vitamin in animal tissues
+63496,provitamin_A carotene carotin,an orange isomer of an unsaturated hydrocarbon found in many plants; is converted into vitamin A in the liver
+63497,provocation incitement,needed encouragement; "the result was a provocation of vigorous investigation"
+63498,provost,a high-ranking university administrator
+63499,provost_court,a military court for trying people charged with minor offenses in an occupied area
+63500,provost_guard,a detachment under the command of a provost marshall
+63501,provost_marshal,the supervisor of the military police
+63502,prowl,the act of prowling (walking about in a stealthy manner)
+63503,prowler sneak stalker,someone who prowls or sneaks about; usually with unlawful intentions
+63504,proxemics,the study of spatial distances between individuals in different cultures and situations
+63505,proximity,the region close around a person or thing
+63506,proximity law_of_proximity,a Gestalt principle of organization holding that (other things being equal) objects or events that are near to one another (in space or time) are perceived as belonging together as a unit
+63507,proximity propinquity,the property of being close together
+63508,proxy,a power of attorney document given by shareholders of a corporation authorizing a specific vote on their behalf at a corporate meeting
+63509,proxy placeholder procurator,a person authorized to act for another
+63510,proxy_fight,a measure used by an acquirer to gain control of a takeover target; acquirer tries to persuade other shareholders that the management of the target should be replaced
+63511,proxy_war,a war instigated by a major power that does not itself participate
+63512,prude puritan,a person excessively concerned about propriety and decorum
+63513,prudence,discretion in practical affairs
+63514,prune,dried plum
+63515,prune_cake,moist cake containing prunes that have been made into a puree
+63516,prune_whip,dessert made of prune puree and whipped cream
+63517,pruner pruning_hook lopper,a long-handled pruning saw with a curved blade at the end and sometimes a clipper; used to prune small trees
+63518,pruner trimmer,a worker who thins out and trims trees and shrubs; "untouched by the pruner's axe"
+63519,pruning,something that has been pruned off of a plant
+63520,pruning,the act of trimming a plant
+63521,pruning_knife,a knife with a curved or hooked blade
+63522,pruning_saw,a handsaw used for pruning trees
+63523,pruning_shears,shears with strong blades used for light pruning of woody plants
+63524,pruno,a liquor concocted from a mixture of ingredients (such as prunes and raisins and milk and sugar) that can be fermented to produce alcohol; made by prison inmates
+63525,prurience pruriency lasciviousness carnality lubricity,feeling morbid sexual desire or a propensity to lewdness
+63526,prurigo,chronic inflammatory disease of the skin characterized by blister capped papules and intense itching
+63527,pruritus,an intense itching sensation that can have various causes (as by allergies or infection or lymphoma or jaundice etc.)
+63528,pruritus_ani,chronic itching of the skin around the anus
+63529,pruritus_vulvae,persistent itching of the external female genitalia
+63530,psalm,any sacred song used to praise the deity
+63531,psalmist,a composer of sacred songs; "David is called The Psalmist because he is believed to be the author of the Book of Psalms"
+63532,psalmody hymnody,the act of singing psalms or hymns
+63533,psalterium omasum third_stomach,the third compartment of the stomach of a ruminant
+63534,psaltery,an ancient stringed instrument similar to the lyre or zither but having a trapezoidal sounding board under the strings
+63535,psammoma sand_tumor,a tumor derived from fibrous tissue of the meninges or choroid plexus or certain other structures associated with the brain; characterized by sandlike particles
+63536,psephologist,a sociologist who studies election trends
+63537,psephology,the branch of sociology that studies election trends (as by opinion polls)
+63538,pseudobulb,a solid bulblike enlargement of the stem of some orchids
+63539,pseudoephedrine,poisonous crystalline alkaloid occurring with ephedrine and isomorphic with it
+63540,pseudohallucination,an image vivid enough to be a hallucination but recognized as unreal
+63541,pseudohermaphrodite,someone having external genitalia of one sex and internal sex organs of the other sex; not a true hermaphrodite because there is no ambiguity in the sex of the external genitalia and hence no question about gender at birth
+63542,pseudohermaphroditism,congenital condition in which a person has external genitalia of one sex and internal sex organs of the other sex
+63543,pseudomonad,bacteria usually producing greenish fluorescent water-soluble pigment; some pathogenic for plants and animals
+63544,pseudonym anonym nom_de_guerre,a fictitious name used when the person performs a particular social role
+63545,pseudophloem,false phloem
+63546,pseudopod pseudopodium,temporary outgrowth used by some microorganisms as an organ of feeding or locomotion
+63547,pseudoscience,an activity resembling science but based on fallacious assumptions
+63548,psi,the 23rd letter of the Greek alphabet
+63549,psilocybin psilocin,a hallucinogenic compound obtained from a mushroom
+63550,psilomelane,a mineral consisting of hydrated basic oxide of manganese and barium; a source of manganese
+63551,psilophyte,any plant of the order Psilophytales: a savannah plant
+63552,psilophyton,any plant or fossil of the genus Psilophyton
+63553,psilosis,falling out of hair
+63554,psittacosaur psittacosaurus,primitive dinosaur actually lacking horns and having only the beginning of a frill; long hind limbs and short forelimbs; may have been bipedal
+63555,psittacosis parrot_disease,infectious disease of birds
+63556,psittacosis parrot_fever ornithosis,an atypical pneumonia caused by a rickettsia microorganism and transmitted to humans from infected birds
+63557,psoas,either of two muscles of the abdomen and pelvis that flex the trunk and rotate the thigh
+63558,psocid,small winged insect living on the bark and leaves of trees and feeding on e.g. fungi and decaying plant matter
+63559,psocopterous_insect,small soft-bodied insect with chewing mouthparts and either no wings or two pairs
+63560,psoriasis,a chronic skin disease characterized by dry red patches covered with scales; occurs especially on the scalp and ears and genitalia and the skin over bony prominences
+63561,psoriatic_arthritis,a form of rheumatoid arthritis usually affecting fingers and toes and associated with psoriasis
+63562,psychedelia,the subculture of users of psychedelic drugs
+63563,psychedelic_rock acid_rock,a musical style that emerged in the 1960s; rock music inspired by or related to drug-induced experience
+63564,psychiatrist head-shrinker shrink,a physician who specializes in psychiatry
+63565,psychiatry psychopathology psychological_medicine,the branch of medicine dealing with the diagnosis and treatment of mental disorders
+63566,psychic,a person apparently sensitive to things beyond the natural range of perception
+63567,psychic_communication psychical_communication anomalous_communication,communication by paranormal means
+63568,psychic_energy mental_energy,an actuating force or factor
+63569,psychic_phenomena psychic_phenomenon parapsychology,phenomena that appear to contradict physical laws and suggest the possibility of causation by mental processes
+63570,psychoactive_drug mind-altering_drug consciousness-altering_drug psychoactive_substance,a drug that can produce mood changes and distorted perceptions
+63571,psychoanalysis analysis depth_psychology,a set of techniques for exploring underlying motives and a method of treating various mental disorders; based on the theories of Sigmund Freud; "his physician recommended psychoanalysis"
+63572,psychoanalytic_process,a process that is assumed to occur in psychoanalytic theory
+63573,psychobabble,using language loaded with psychological terminology
+63574,psychodid,a fly of the family Psychodidae
+63575,psychodynamics,the interrelation of conscious and unconscious processes and emotions that determine personality and motivation
+63576,psychodynamics,the branch of social psychology that deals with the processes and emotions that determine psychology and motivation
+63577,psychogenesis,the development in the life of an individual of some disorder that is caused by psychological rather than physiological factors
+63578,psychogenesis,a general term for the origin and development of almost any aspect of the mind
+63579,psycholinguist,a person (usually a psychologist but sometimes a linguist) who studies the psychological basis of human language
+63580,psycholinguistics,the branch of cognitive psychology that studies the psychological basis of linguistic competence and performance
+63581,psychological_feature,a feature of the mental life of a living organism
+63582,psychological_moment,the most appropriate time for achieving a desired effect
+63583,psychological_operation psyop,military actions designed to influence the perceptions and attitudes of individuals, groups, and foreign governments
+63584,psychological_state psychological_condition mental_state mental_condition,(psychology) a mental condition in which the qualities of a state are relatively constant even though the state itself may be dynamic; "a manic state"
+63585,psychological_warfare war_of_nerves,the use of psychological tactics to destroy the opponents' morale
+63586,psychologist,a scientist trained in psychology
+63587,psychology psychological_science,the science of mental life
+63588,psychology_department department_of_psychology,the academic department responsible for teaching and research in psychology
+63589,psychometry psychometrics psychometrika,any branch of psychology concerned with psychological measurements
+63590,psychomotor_development,progressive acquisition of skills involving both mental and motor activities
+63591,psychomotor_epilepsy temporal_lobe_epilepsy,epilepsy characterized clinically by impairment of consciousness and amnesia for the episode; often involves purposeful movements of the arms and legs and sometimes hallucinations
+63592,psychopharmacology,the study of drugs that affect the mind
+63593,psychophysicist,a psychologist trained in psychophysics
+63594,psychophysics,the branch of psychology concerned with quantitative relations between physical stimuli and their psychological effects
+63595,psychopomp,a conductor of souls to the afterworld; "Hermes was their psychopomp"
+63596,psychosexual_development,(psychoanalysis) the process during which personality and sexual behavior mature through a series of stages: first oral stage and then anal stage and then phallic stage and then latency stage and finally genital stage
+63597,psychosexuality,the mental representation of sexual activities
+63598,psychosis,any severe mental disorder in which contact with reality is lost or highly distorted
+63599,psychosomatic_disorder,a mental disorder that causes somatic symptoms
+63600,psychosurgery,brain surgery on human patients intended to relieve severe and otherwise intractable mental or behavioral problems
+63601,psychotherapist clinical_psychologist,a therapist who deals with mental and emotional disorders
+63602,psychotherapy,the treatment of mental or emotional problems by psychological means
+63603,psychotherapy psychotherapeutics mental_hygiene,the branch of psychiatry concerned with psychological methods
+63604,psychotherapy_group,a meeting of people for psychotherapeutic purposes
+63605,psychotic psychotic_person psycho,a person afflicted with psychosis
+63606,psychotic_depression,a state of depression so severe that the person loses contact with reality and suffers a variety of functional impairments
+63607,psychotropic_agent,a chemical substance that can influence human consciousness
+63608,psychrometer,a hygrometer consisting of a dry-bulb thermometer and a wet-bulb thermometer; their difference indicates the dryness of the surrounding air
+63609,ptarmigan,large Arctic and subarctic grouse with feathered feet and usually white winter plumage
+63610,pteridologist,an expert in the study of ferns
+63611,pteridology,the branch of botany that studies ferns
+63612,pteridophyte nonflowering_plant,plants having vascular tissue and reproducing by spores
+63613,pterion,the craniometric point in the region of the sphenoid fontanelle
+63614,pterodactyl,extinct flying reptile
+63615,pteropogon Pteropogon_humboltianum,southern Australian plant having feathery hairs surrounding the fruit
+63616,pterosaur flying_reptile,an extinct reptile of the Jurassic and Cretaceous having a bird-like beak and membranous wings supported by the very long fourth digit of each forelimb
+63617,pterygium,either of two thickened triangular layers of conjunctiva extending from the nasal edge of the eye to the cornea; it arises from irritation of the pinguecula
+63618,pterygoid_muscle,muscle descending from the sphenoid bone to the lower jaw
+63619,pterygoid_plexus,a plexus of veins draining the region of the pterygoid muscles and draining into the internal maxillary and anterior facial veins
+63620,pterygoid_process,two bony processes descending from the body of the sphenoid bone
+63621,ptomaine ptomain,any of various amines (such as putrescine or cadaverine) formed by the action of putrefactive bacteria
+63622,ptomaine ptomaine_poisoning,a term for food poisoning that is no longer in scientific use; food poisoning was once thought to be caused by ingesting ptomaines
+63623,ptosis,drooping of the upper eyelid caused by muscle paralysis and weakness
+63624,ptyalin,an amylase secreted in saliva
+63625,ptyalism,excessive flow of saliva
+63626,ptyalith,calculus in a salivary gland
+63627,pub_crawl,a tour of bars or public houses (usually taking one drink at each stop)
+63628,puberty pubescence,the time of life when sex glands become functional
+63629,pubes pubic_region loins,the lower part of the abdomen just above the external genital organs
+63630,pubic_hair bush crotch_hair,hair growing in the pubic area
+63631,pubis pubic_bone os_pubis,one of the three sections of the hipbone; together these two bones form the front of the pelvis
+63632,public,a body of people sharing some common interest; "the reading public"
+63633,public-relations_campaign,an advertising campaign intended to improve public relations
+63634,public_address_system P.A._system PA_system P.A. PA,an electronic amplification system used as a communication system in public areas
+63635,public_charity,a charity that is deemed to receive the major part of its support from the public (rather than from a small group of individuals)
+63636,public_debt,the total of the nation's debts: debts of local and state and national governments; an indicator of how much public spending is financed by borrowing instead of taxation
+63637,public_defender,a lawyer who represents indigent defendants at public expense
+63638,public_discussion ventilation,free and open discussion of (or debate on) some question of public interest; "such a proposal deserves thorough public discussion"
+63639,public_domain,property rights that are held by the public at large
+63640,public_easement,any easement enjoyed by the public in general (as the public's right to use public streets)
+63641,public_house pub saloon pothouse gin_mill taphouse,tavern consisting of a building with a bar and public rooms; often provides light meals
+63642,public_knowledge general_knowledge,knowledge that is available to anyone
+63643,public_law,a law affecting the public at large
+63644,public_library,a nonprofit library maintained for public use
+63645,public_nuisance common_nuisance,a nuisance that unreasonably interferes with a right that is common to the general public; "a public nuisance offends the public at large"
+63646,public_office,a position concerning the people as a whole
+63647,public_opinion popular_opinion opinion vox_populi,a belief or sentiment shared by most people; the voice of the people; "he asked for a poll of public opinion"
+63648,public_property,property owned by a government
+63649,public_relations PR,a promotion intended to create goodwill for a person or institution
+63650,public_relations_person,a person employed to establish and promote a favorable relationship with the public
+63651,public_school,private independent secondary school in Great Britain supported by endowment and tuition
+63652,public_school,a tuition free school in the United States supported by taxes and controlled by a school board
+63653,public_servant,someone who holds a government position (either by election or appointment)
+63654,public_service,employment within a government system (especially in the civil service)
+63655,public_speaking speechmaking speaking oral_presentation,delivering an address to a public audience; "people came to see the candidates and hear the speechmaking"
+63656,public_square square,an open area at the meeting of two or more streets
+63657,public_toilet comfort_station public_convenience convenience public_lavatory restroom toilet_facility wash_room,a toilet that is available to the public
+63658,public_transit,a public transportation system for moving passengers
+63659,public_transport,conveyance for passengers or mail or freight
+63660,public_treasury trough till,a treasury for government funds
+63661,public_works,structures (such as highways or schools or bridges or docks) constructed at government expense for public use
+63662,publican tavern_keeper,the keeper of a public house
+63663,publication,a copy of a printed work offered for distribution
+63664,publication,the communication of something to the public; making information generally known
+63665,publication publishing,the business of issuing printed matter for sale or distribution
+63666,publicist publicizer publiciser,someone who publicizes
+63667,publicity,the quality of being open to public view; "the publicity of the court room"
+63668,publisher,a person engaged in publishing periodicals or books or music
+63669,publisher newspaper_publisher,the proprietor of a newspaper
+63670,publisher publishing_house publishing_firm publishing_company,a firm in the publishing business
+63671,publishing_conglomerate publishing_empire,a conglomerate of publishing companies
+63672,puccoon Lithospermum_caroliniense,perennial plant of eastern North America having hairy foliage yielding a red or yellow pigment
+63673,puce,a color varying from dark purplish brown to dark red
+63674,puck hockey_puck,a vulcanized rubber disk 3 inches in diameter that is used instead of a ball in ice hockey
+63675,pucker ruck,an irregular fold in an otherwise even surface (as in cloth)
+63676,pudding,any of various soft thick unsweetened baked dishes; "corn pudding"
+63677,pudding,any of various soft sweet desserts thickened usually with flour and baked or boiled or steamed
+63678,pudding pud,(British) the dessert course of a meal (`pud' is used informally)
+63679,pudding_face pudding-face,a large fat human face
+63680,pudding_stone conglomerate,a composite rock made up of particles of varying size
+63681,puddingwife pudding-wife Halicoeres_radiatus,bluish and bronze wrasse; found from Florida keys to Brazil
+63682,puddle,a mixture of wet clay and sand that can be used to line a pond and that is impervious to water when dry
+63683,puddler,a worker who turns pig iron into wrought iron by puddling
+63684,pudendal_artery arteria_pudenda,arteries supplying the external genital organs of humans
+63685,pudendal_block,regional anesthesia resulting from the use of a local anesthetic to deaden the pudendal nerves in the region of the vulva and labia majora; used to ease discomfort during childbirth
+63686,pudendal_cleft urogenital_cleft rima_pudendi rima_vulvae pudendal_cleavage pudendal_slit vulvar_slit,the fissure between the labia majora
+63687,pudendal_vein venae_pudendum,vein of the pudendum
+63688,pudendum,human external genital organs collectively especially of a female
+63689,pudge,a short fat person
+63690,pueblo,a communal village built by Indians in the southwestern United States
+63691,puerpera,a woman in childbirth or shortly thereafter
+63692,puerperal_fever childbed_fever,serious form of septicemia contracted by a woman during childbirth or abortion (usually attributable to unsanitary conditions); formerly widespread but now uncommon
+63693,puerperium,time period following childbirth when the mother's uterus shrinks and the other functional and anatomic changes of pregnancy are resolved; "a perinatologist cared for her during the puerperium"
+63694,puff,a light inflated pastry or puff shell
+63695,puff,exaggerated praise (as for promotional purposes)
+63696,puff drag pull,a slow inhalation (as of tobacco smoke); "he took a puff on his pipe"; "he took a drag on his cigarette and expelled the smoke slowly"
+63697,puff puff_of_air whiff,a short light gust of air
+63698,puff_adder Bitis_arietans,large African viper that inflates its body when alarmed
+63699,puff_batter pouf_paste pate_a_choux,batter for making light hollow cases to hold various fillings
+63700,puff_paste pate_feuillete,dough used for very light flaky rich pastries
+63701,puffball true_puffball,any of various fungi of the family Lycoperdaceae whose round fruiting body discharges a cloud of spores when mature
+63702,puffbird,brownish tropical American bird having a large head with fluffed out feathers
+63703,puffed_rice,puffy rice kernels
+63704,puffed_wheat,puffy wheat berries
+63705,puffer pufferfish blowfish globefish,any of numerous marine fishes whose elongated spiny body can inflate itself with water or air to form a globe; several species contain a potent nerve poison; closely related to spiny puffers
+63706,puffery,a flattering commendation (especially when used for promotional purposes)
+63707,puffin,any of two genera of northern seabirds having short necks and brightly colored compressed bills
+63708,puffing,blowing tobacco smoke out into the air; "they smoked up the room with their ceaseless puffing"
+63709,puffing huffing snorting,an act of forcible exhalation
+63710,pug pug-dog,small compact smooth-coated breed of Asiatic origin having a tightly curled tail and broad flat wrinkled muzzle
+63711,pug_nose,a short nose; flattened and turned up at the end
+63712,puissance,power to influence or coerce; "the puissance of the labor vote"
+63713,puka Griselinia_lucida,South American shrub or small tree having long shining evergreen leaves and panicles of green or yellow flowers
+63714,puka Meryta_sinclairii,small roundheaded New Zealand tree having large resinous leaves and panicles of green-white flowers
+63715,puku Adenota_vardoni,an African antelope closely related to the waterbuck
+63716,pul,100 puls equal 1 afghani in Afghanistan
+63717,pula,the basic unit of money in Botswana
+63718,pulasan pulassan,fruit of an East Indian tree similar to the rambutan but sweeter
+63719,pulasan pulassan pulasan_tree Nephelium_mutabile,East Indian fruit tree bearing fruit similar to but sweeter than that of the rambutan
+63720,pulchritude,physical beauty (especially of a woman)
+63721,pull,the force used in pulling; "the pull of the moon"; "the pull of the current"
+63722,pull,a device used for pulling something; "he grabbed the pull and opened the drawer"
+63723,pull,a sustained effort; "it was a long pull but we made it"
+63724,pull clout,special advantage or influence; "the chairman's nephew has a lot of pull"
+63725,pull pulling,the act of pulling; applying force to move something toward or with you; "the pull up the hill had him breathing harder"; "his strenuous pulling strained his back"
+63726,pull-in pull-up,a roadside cafe especially for lorry drivers
+63727,pull-off rest_area rest_stop layby lay-by,designated paved area beside a main road where cars can stop temporarily
+63728,pull-through,cleaning implement consisting of an oily rag attached by a cord to a weight; is pulled through the barrel of a rifle or handgun to clean it
+63729,pull-up chin-up,an arm exercise performed by pulling yourself up on a horizontal bar until your chin is level with the bar
+63730,pull_chain,a chain (usually with a handle at the end) that is pulled in order to operate some mechanism (e.g. to flush a toilet)
+63731,pullback,(military) the act of pulling back (especially an orderly withdrawal of troops); "the pullback is expected to be over 25,000 troops"
+63732,pullback tieback,a device (as a decorative loop of cord or fabric) for holding or drawing something back; "the draperies were drawn to the sides by pullbacks"
+63733,puller,someone who applies force so as to cause motion toward herself or himself
+63734,puller tugger dragger,someone who pulls or tugs or drags in an effort to move something
+63735,pullet,young hen usually less than a year old
+63736,pulley pulley-block pulley_block block,a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope
+63737,pullorum_disease bacillary_white_diarrhea bacillary_white_diarrhoea,a serious bacterial disease of young chickens
+63738,pullover slipover,a sweater that is put on by pulling it over the head
+63739,pullulation,a rapid and abundant increase
+63740,pullulation gemmation,asexual reproduction in which a local growth on the surface or in the body of the parent becomes a separate individual
+63741,pulmonary_anthrax inhalation_anthrax anthrax_pneumonia ragpicker's_disease ragsorter's_disease woolsorter's_pneumonia woolsorter's_disease,a form of anthrax infection acquired by inhalation of dust containing Bacillus anthracis; initial symptoms (chill and cough and dyspnea and rapid pulse) are followed by extreme cardiovascular collapse
+63742,pulmonary_artery arteria_pulmonalis,one of two arteries (branches of the pulmonary trunk) that carry venous blood from the heart to the lungs
+63743,pulmonary_circulation,circulation of blood between the heart and the lungs
+63744,pulmonary_congestion,congestion in the lungs
+63745,pulmonary_embolism,blockage of the pulmonary artery by foreign matter or by a blood clot
+63746,pulmonary_plexis plexus_pulmonalis,one of two autonomic nerve plexuses in each lung
+63747,pulmonary_reserve,the additional volume of air that the lungs can inhale and exhale when breathing to the limit of capacity in times of stress
+63748,pulmonary_stenosis,abnormal narrowing of the opening into the pulmonary artery from the right ventricle
+63749,pulmonary_trunk truncus_pulmonalis,the artery that carries venous blood from the right ventricle of the heart and divides into the right and left pulmonary arteries
+63750,pulmonary_tuberculosis consumption phthisis wasting_disease white_plague,involving the lungs with progressive wasting of the body
+63751,pulmonary_valve,a semilunar valve between the right ventricle and the pulmonary artery; prevents blood from flowing from the artery back into the heart
+63752,pulmonary_vein vena_pulmonalis,any of four veins that carry arterial blood from the lungs to the left atrium of the heart
+63753,pulp,a mixture of cellulose fibers
+63754,pulp,the soft inner part of a tooth
+63755,pulp flesh,a soft moist part of a fruit
+63756,pulp mush,any soft or soggy mass; "he pounded it to a pulp"
+63757,pulp pulp_magazine,an inexpensive magazine printed on poor quality paper
+63758,pulp_cavity,the central cavity of a tooth containing the pulp (including the root canal)
+63759,pulpwood,softwood used to make paper
+63760,pulque,fermented Mexican drink from juice of various agave plants especially the maguey
+63761,pulsar,a degenerate neutron star; small and extremely dense; rotates very fast and emits regular pulses of polarized radiation
+63762,pulsation,a periodically recurring phenomenon that alternately increases and decreases some quantity
+63763,pulsation pulsing pulse impulse,(electronics) a sharp transient wave in the normal electrical state (or a series of such transients); "the pulsations seemed to be coming from a star"
+63764,pulse,edible seeds of various pod-bearing plants (peas or beans or lentils etc.)
+63765,pulse pulsation heartbeat beat,the rhythmic contraction and expansion of the arteries with each beat of the heart; "he could feel the beat of her heart"
+63766,pulse pulse_rate heart_rate,the rate at which the heart beats; usually measured to obtain a quick evaluation of a person's health
+63767,pulse-time_modulation,modulation of the time between successive pulses
+63768,pulse_counter,an electronic counter that counts the number of electric pulses
+63769,pulse_generator,a generator of single or multiple voltage pulses; usually adjustable for pulse rate
+63770,pulse_modulation,modulation that imposes a signal on a train of pulses
+63771,pulse_timing_circuit,a circuit that times pulses
+63772,pulverization pulverisation,annihilation by pulverizing something
+63773,pumice pumice_stone,a light glass formed on the surface of some lavas; used as an abrasive
+63774,pump,a low-cut shoe without fastenings
+63775,pump,a mechanical device that moves fluid or gas by pressure or suction
+63776,pump-and-dump_scheme,an illegal scheme for making money by manipulating stock prices; the schemer persuades other people to buy the stock and then sells it himself as soon as the price of the stock rises
+63777,pump-type_pliers,a type of pliers
+63778,pump_action slide_action,action mechanism in a modern rifle or shotgun; a back and forward motion of a sliding lever ejects the empty shell case and cocks the firearm and loads a new round
+63779,pump_house pumping_station,a house where pumps (e.g. to irrigate) are installed and operated
+63780,pump_priming,introducing water into a pump to improve the seal and start the water flowing
+63781,pump_room,a pump house at a spa where medicinal waters are pumped and where patrons gather
+63782,pump_well,an enclosure in the middle of a ship's hold that protects the ship's pumps
+63783,pumpkin,usually large pulpy deep-yellow round fruit of the squash family maturing in late summer or early autumn
+63784,pumpkin pumpkin_vine autumn_pumpkin Cucurbita_pepo,a coarse vine widely cultivated for its large pulpy round orange fruit with firm orange skin and numerous seeds; subspecies of Cucurbita pepo include the summer squashes and a few autumn squashes
+63785,pumpkin_ash Fraxinus_tomentosa,timber tree of central and southeastern United States having hairy branchlets and a swollen trunk base
+63786,pumpkin_pie,pie made of mashed pumpkin and milk and eggs and sugar
+63787,pumpkin_seed,the edible seed of a pumpkin
+63788,pumpkinseed Lepomis_gibbosus,small brilliantly colored North American sunfish
+63789,pun punning wordplay paronomasia,a humorous play on words; "I do it for the pun of it"; "his constant punning irritated her"
+63790,punch,an iced mixed drink usually containing alcohol and prepared for multiple servings; normally served in a punch bowl
+63791,punch clout poke lick biff slug,(boxing) a blow with the fist; "I gave him a clout on his nose"
+63792,punch puncher,a tool for making holes or indentations
+63793,punch-up,a fistfight; "the quarrel ended in a punch-up"
+63794,punch_bowl,a large bowl for serving beverages; usually with a ladle
+63795,punch_line laugh_line gag_line tag_line,the point of a joke or humorous story
+63796,punch_pliers,punch consisting of pliers for perforating paper or leather
+63797,punch_press,a power driven press used to shape metal parts
+63798,punchboard,a small board full of holes; each hole contains a slip of paper with symbols printed on it; a gambler pays a small sum for the privilege of pushing out a slip in the hope of obtaining one that entitles him to a prize
+63799,punched_card punch_card Hollerith_card,a card on which data can be recorded in the form of punched holes
+63800,puncher,someone who delivers punches
+63801,punching_bag,a person on whom another person vents their anger; "he resigned because his boss used him as a punching bag"
+63802,punching_bag punch_bag punching_ball punchball,an inflated ball or bag that is suspended and punched for training in boxing
+63803,punctilio,a fine point of etiquette or petty formality
+63804,punctilio,strict observance of formalities
+63805,punctuality promptness,the quality or habit of adhering to an appointed time
+63806,punctuated_equilibrium theory_of_punctuated_equilibrium,a theory of evolution holding that evolutionary change in the fossil record came in fits and starts rather than in a steady process of slow change
+63807,punctuation,something that makes repeated and regular interruptions or divisions
+63808,punctuation,the use of certain marks to clarify meaning of written material by grouping words grammatically into sentences and clauses and phrases
+63809,punctuation punctuation_mark,the marks used to clarify meaning by indicating separation of words into sentences and clauses and phrases
+63810,punctum,(anatomy) a point or small area
+63811,puncture,loss of air pressure in a tire when a hole is made by some sharp object
+63812,puncture,a small hole made by a sharp object
+63813,puncture,the act of puncturing or perforating
+63814,pung,a one-horse sleigh consisting of a box on runners
+63815,pungapung telingo_potato elephant_yam Amorphophallus_paeonifolius Amorphophallus_campanulatus,putrid-smelling aroid of southeastern Asia (especially the Philippines) grown for its edible tuber
+63816,pungency bite,wit having a sharp and caustic quality; "he commented with typical pungency"; "the bite of satire"
+63817,pungency bite sharpness raciness,a strong odor or taste property; "the pungency of mustard"; "the sulfurous bite of garlic"; "the sharpness of strange spices"; "the raciness of the wine"
+63818,puniness runtiness stuntedness,smallness of stature
+63819,punishment penalty penalization penalisation,the act of punishing
+63820,punitive_damages exemplary_damages smart_money,(law) compensation in excess of actual damages (a form of punishment awarded in cases of malicious or willful misconduct)
+63821,punk,substance that smolders when ignited; used to light fuses (especially fireworks)
+63822,punk_rock punk,rock music with deliberately offensive lyrics expressing anger and social alienation; in part a reaction against progressive rock
+63823,punk_rocker punk,a teenager or young adult who is a performer (or enthusiast) of punk rock and a member of the punk youth subculture
+63824,punkah,a large fan consisting of a frame covered with canvas that is suspended from the ceiling; used in India for circulating air in a room
+63825,punkie punky punkey no-see-um biting_midge,minute two-winged insect that sucks the blood of mammals and birds and other insects
+63826,punks,a youth subculture closely associated with punk rock music in the late 1970s; in part a reaction to the hippy subculture; dress was optional but intended to shock (plastic garbage bags or old school uniforms) and hair was dyed in bright colors (in Mohican haircuts or sometimes spiked in bright plumes)
+63827,punnet,a small light basket used as a measure for fruits
+63828,punster,someone overly fond of making puns
+63829,punt,an open flat-bottomed boat used in shallow waters and propelled by a long pole
+63830,punt punting,(football) a kick in which the football is dropped from the hands and kicked before it touches the ground; "the punt traveled 50 yards"; "punting is an important part of the game"
+63831,punter,someone who propels a boat with a pole
+63832,punter,(football) a person who kicks the football by dropping it from the hands and contacting it with the foot before it hits the ground
+63833,pup whelp,young of any of various canines such as a dog or wolf
+63834,pup_tent shelter_tent,a wedge-shaped tent; usually without a floor or windows
+63835,pupa,an insect in the inactive stage of development (when it is not feeding) intermediate between larva and adult
+63836,pupil,the contractile aperture in the center of the iris of the eye; resembles a large black dot
+63837,pupillary_sphincter musculus_sphincter_pupillae,a ring of smooth muscle surrounding the iris
+63838,puppet,a doll with a hollow head of a person or animal and a cloth body; intended to fit over the hand and be manipulated with the fingers
+63839,puppet marionette,a small figure of a person operated from above with strings by a puppeteer
+63840,puppet_government puppet_state pupet_regime,a government that is appointed by and whose affairs are directed by an outside authority that may impose hardships on those governed
+63841,puppet_ruler puppet_leader,a leader or ruler who is chosen by a despot to head a government
+63842,puppet_show puppet_play,a show in which the actors are puppets
+63843,puppeteer,one who operates puppets or marionettes
+63844,puppetry,the art of making puppets and presenting puppet shows
+63845,puppetry,a stilted dramatic performance (as if by puppets)
+63846,puppy,a young dog
+63847,puppy pup,an inexperienced young person
+63848,puppy_fat,fat on the body of a baby or child; disappears at adolescence
+63849,puppy_love calf_love crush infatuation,temporary love of an adolescent
+63850,purchase,something acquired by purchase
+63851,purchase,a means of exerting influence or gaining advantage; "he could get no purchase on the situation"
+63852,purchase,the acquisition of something for payment; "they closed the purchase with a handshake"
+63853,purchase_contract purchase_agreement,a contract stating the terms of a purchase
+63854,purchase_price,the price at which something is actually purchased
+63855,purchasing_agent,an agent who purchases goods or services for another
+63856,purchasing_department,the division of a business that is responsible for purchases
+63857,purdah,a screen used in India to separate women from men or strangers
+63858,purdah sex_segregation,the traditional Hindu or Muslim system of keeping women secluded
+63859,pure_absence simple_absence,an absence seizure without other complications; followed by 3-per-sec brainwave spikes
+63860,pure_imaginary_number,an imaginary number of the form a+bi where a is 0
+63861,pure_mathematics,the branches of mathematics that study and develop the principles of mathematics for their own sake rather than for their immediate usefulness
+63862,puree,food prepared by cooking and straining or processed in a blender
+63863,purgative cathartic physic aperient,a purging medicine; stimulates evacuation of the bowels
+63864,purgatory,a temporary condition of torment or suffering; "a purgatory of drug abuse"
+63865,purgatory,(theology) in Roman Catholic theology the place where those who have died in a state of grace undergo limited torment to expiate their sins
+63866,purge,an abrupt or sudden removal of a person or group from an organization or place; "he died in a purge by Stalin"
+63867,purge purging,an act of removing by cleansing; ridding of sediment or other undesired elements
+63868,purge purging purgation,the act of clearing yourself (or another) from some stigma or charge
+63869,purification,the act of cleaning by getting rid of impurities
+63870,purification,the act of purging of sin or guilt; moral or spiritual cleansing; "purification through repentance"
+63871,purification purgation,a ceremonial cleansing from defilement or uncleanness by the performance of appropriate rites
+63872,purifier,an apparatus for removing impurities
+63873,purine,any of several bases that are derivatives of purine
+63874,purine,a colorless crystalline organic base containing nitrogen; the parent compound of various biologically important substances
+63875,purism,scrupulous or exaggerated insistence on purity or correctness (especially in language); "linguistic purisms"
+63876,purist,someone who insists on great precision and correctness (especially in the use of words)
+63877,puritan,someone who adheres to strict religious principles; someone opposed to sensual pleasures
+63878,purity pureness,being undiluted or unmixed with extraneous material
+63879,purity pureness sinlessness innocence whiteness,the state of being unsullied by sin or moral wrong; lacking a knowledge of evil
+63880,purl,gold or silver wire thread
+63881,purl purl_stitch,a basic knitting stitch made by putting the needle through the front of the stich from the righthand side
+63882,purloo chicken_purloo poilu,thick stew made of rice and chicken and small game; southern U.S.
+63883,purple purpleness,a purple color or pigment
+63884,purple the_purple,(in ancient Rome) position of imperial status; "he was born to the purple"
+63885,purple the_purple,(Roman Catholic Church) official dress of a cardinal; so named after the Tyrial purple color of the robes
+63886,purple-fringed_orchid purple-fringed_orchis Habenaria_fimbriata,North American orchid similar to Habenaria psycodes with larger paler flowers
+63887,purple-fringed_orchid purple-fringed_orchis Habenaria_psycodes,North American orchid with clusters of fragrant purple fringed flowers
+63888,purple-stemmed_aster,a variety of aster
+63889,purple_anise Illicium_floridanum,small shrubby tree with purple flowers; found in wet soils of southeastern United States
+63890,purple_apricot black_apricot Prunus_dasycarpa,small hybrid apricot of Asia and Asia Minor having purplish twigs and white flowers following by inferior purple fruit
+63891,purple_bacteria,free-living Gram-negative pink to purplish-brown bacteria containing bacteriochlorophyll
+63892,purple_chinese_houses innocense Collinsia_bicolor Collinsia_heterophylla,white and lavender to pale-blue flowers grow in perfect rings of widely spaced bands around the stems forming a kind of pagoda; California
+63893,purple_clematis purple_virgin's_bower mountain_clematis Clematis_verticillaris,climber of northeastern North America having waxy purplish-blue flowers
+63894,purple_cress Cardamine_douglasii,small perennial herb of cooler regions of North America with racemose purple flowers
+63895,purple_emperor Apatura_iris,large European butterfly the male of which has wings shaded with purple
+63896,purple_finch Carpodacus_purpureus,North American finch having a raspberry-red head and breast and rump
+63897,purple_fringeless_orchid purple_fringeless_orchis Habenaria_peramoena,orchid of northeastern and alpine eastern North America closely related to the purple fringed orchids but having rosy-purple or violet flowers with denticulate leaf divisions
+63898,purple_gallinule,gallinules with showy purplish plumage
+63899,purple_grackle Quiscalus_quiscula,eastern United States grackle
+63900,purple_heather Brewer's_mountain_heather Phyllodoce_breweri,semi-prostrate evergreen herb of western United States
+63901,purple_locoweed purple_loco Oxytropis_lambertii,tufted locoweed of southwestern United States having purple or pink to white flowers
+63902,purple_loosestrife spiked_loosestrife Lythrum_salicaria,marsh herb with a long spike of purple flowers; originally of Europe but now rampant in eastern United States
+63903,purple_martin Progne_subis,large North American martin of which the male is blue-black
+63904,purple_milk_vetch Astragalus_danicus,perennial of southern and western Europe having dense racemes of purple or violet flowers
+63905,purple_mullein Verbascum_phoeniceum,Eurasian mullein with showy purple or pink flowers
+63906,purple_onion red_onion,flat mild onion having purplish tunics; used as garnish on hamburgers and salads
+63907,purple_passage,a passage full of ornate and flowery language
+63908,purple_poppy_mallow Callirhoe_involucrata,hairy perennial of central United States having round deeply lobed leaves and loose panicles of large crimson-purple or cherry-red flowers
+63909,purple_rock_brake Pellaea_atropurpurea,very short shallowly creeping North American fern usually growing on cliffs or walls and having dark glossy leaf axes
+63910,purple_sage chaparral_sage Salvia_leucophylla,silvery-leaved California herb with purple flowers
+63911,purple_sanicle Sanicula_bipinnatifida,sanicle of northwestern United States and British Columbia having yellow or red or purple flowers
+63912,purple_saxifrage Saxifraga_oppositifolia,plants forming dense cushions with bright reddish-lavender flowers; rocky areas of Europe and Asia and western North America
+63913,purple_silkweed Asclepias_purpurascens,perennial of eastern North America having pink-purple flowers
+63914,purple_trillium red_trillium birthroot Trillium_erectum,trillium of eastern North America having malodorous pink to purple flowers and an astringent root used in folk medicine especially to ease childbirth
+63915,purple_willow red_willow red_osier basket_willow purple_osier Salix_purpurea,Eurasian osier having reddish or purple twigs and bark rich in tannin
+63916,purplish_blue royal_blue,a shade of blue tinged with purple
+63917,purplish_red purplish-red,a red with a tinge of purple
+63918,purpose intent intention aim design,an anticipated outcome that is intended or that guides your planned actions; "his intent was to provide a new translation"; "good intentions are not enough"; "it was created with the conscious aim of answering immediate needs"; "he made no secret of his designs"
+63919,purposefulness sense_of_purpose,the quality of having a definite purpose
+63920,purposelessness aimlessness,the quality of lacking any definite purpose
+63921,purpura peliosis,any of several blood diseases causing subcutaneous bleeding
+63922,purr,a low vibrating sound typical of a contented cat
+63923,purse,a sum of money spoken of as the contents of a money purse; "he made the contribution out of his own purse"; "he and his wife shared a common purse"
+63924,purse,a sum of money offered as a prize; "the purse barely covered the winner's expenses"
+63925,purse,a small bag for carrying money
+63926,purse_seine,a seine designed to be set by two boats around a school of fish and then closed at the bottom by means of a line
+63927,purse_string,a drawstring used to close the mouth of a purse
+63928,purse_strings,financial resources or support; "who controls the purse strings in this family?"
+63929,purser,an officer aboard a ship who keeps accounts and attends to the passengers' welfare
+63930,purslane,a plant of the family Portulacaceae having fleshy succulent obovate leaves often grown as a potherb or salad herb; a weed in some areas
+63931,purslane_speedwell Veronica_peregrina,North American annual with small white flowers widely naturalized as a weed in South America and Europe
+63932,pursuance prosecution,the continuance of something begun with a view to its completion
+63933,pursued chased,a person who is being chased; "the film jumped back and forth from the pursuer to the pursued"
+63934,pursuer,a person who pursues some plan or goal; "a pursuer of truth"
+63935,pursuer chaser,a person who is pursuing and trying to overtake or capture; "always before he had been able to outwit his pursuers"
+63936,pursuit chase pursual following,the act of pursuing in an effort to overtake or capture; "the culprit started to run and the cop took off in pursuit"
+63937,pursuit pursuance quest,a search for an alternative that meets cognitive criteria; "the pursuit of love"; "life is more than the pursuance of fame"; "a quest for wealth"
+63938,purulence purulency,symptom of being purulent (containing or forming pus)
+63939,purulent_pleurisy,a collection of pus in the lung cavity
+63940,purveyance,the act of supplying something
+63941,purveyor,someone who supplies provisions (especially food)
+63942,pus purulence suppuration ichor sanies festering,a fluid product of inflammation
+63943,pus-forming_bacteria,bacteria that produce pus
+63944,push,an effort to advance; "the army made a push toward the sea"
+63945,push pushing,the act of applying force in order to move something away; "he gave the door a hard push"; "the pushing is good exercise"
+63946,push thrust,the force used in pushing; "the push of the water on the walls of the tank"; "the thrust of the jet engines"
+63947,push-bike,a bicycle that must be pedaled
+63948,push-button_radio,a radio receiver that can be tuned by pressing buttons
+63949,push-down_list push-down_stack stack,a list in which the next item to be removed is the item most recently stored (LIFO)
+63950,push-down_queue,a queue in which the last item to go in is the first item to come out (LIFO)
+63951,push-down_storage push-down_store stack,a storage device that handles data so that the next item to be retrieved is the item most recently stored (LIFO)
+63952,push_broom,a wide broom that is pushed ahead of the sweeper
+63953,push_button push button,an electrical switch operated by pressing; "the elevator was operated by push buttons"; "the push beside the bed operated a buzzer at the desk"
+63954,pushball,a game using a leather ball six feet in diameter; the two side try to push it across the opponents' goal
+63955,pusher drug_peddler peddler drug_dealer drug_trafficker,an unlicensed dealer in illegal drugs
+63956,pusher shover,someone who pushes
+63957,pusher thruster,one who intrudes or pushes himself forward
+63958,pusher zori,a sandal attached to the foot by a thong over the toes
+63959,pushover,someone who is easily taken advantage of
+63960,pushup press-up,an arm exercise performed lying face to the floor and pushing the body up and down with the arms
+63961,pusillanimity pusillanimousness,contemptible fearfulness
+63962,pussy-paw pussy-paws pussy's-paw Spraguea_umbellatum Calyptridium_umbellatum,pink clusters of densely packed flowers on prostrate stems resemble upturned pads of cats' feet; grow in coniferous forests of western North America
+63963,pussy_willow Salix_discolor,small willow of eastern North America having greyish leaves and silky catkins that come before the leaves
+63964,pussycat,a person who is regarded as easygoing and agreeable
+63965,pustule,a small inflamed elevation of skin containing pus; a blister filled with pus
+63966,put-down squelch squelcher takedown,a crushing remark
+63967,put-put,a small gasoline engine (as on motor boat)
+63968,put_option,an option to sell
+63969,put_option put,the option to sell a given stock (or stock index or commodity future) at a given price before a given date
+63970,putamen,the outer reddish part of the lenticular nucleus
+63971,putoff,a pretext for delay or inaction
+63972,putout,an out resulting from a fielding play (not a strikeout); "the first baseman made 15 putouts"
+63973,putrefaction rot,a state of decay usually accompanied by an offensive odor
+63974,putrescence putridness rottenness corruption,in a state of progressive putrefaction
+63975,putrescence rottenness,the quality of rotting and becoming putrid
+63976,putrescine,a colorless crystalline ptomaine with a foul odor that is produced in decaying animal matter
+63977,putridity,the state of being putrid
+63978,putt putting,hitting a golf ball that is on the green using a putter; "his putting let him down today; he didn't sink a single putt over three feet"
+63979,puttee,a strip of cloth wound around the leg to form legging; used by soldiers in World War I
+63980,putter,a golfer who is putting
+63981,putter putting_iron,the iron normally used on the putting green
+63982,putterer potterer,a person who putters about
+63983,putty,a dough-like mixture of whiting and boiled linseed oil; used especially to patch woodwork or secure panes of glass
+63984,putty_knife,a spatula used to mix or apply putty
+63985,puttyroot adam-and-eve Aplectrum_hyemale,North American orchid bearing a single leaf and yellowish-brown flowers
+63986,putz,(Yiddish) a fool; an idiot
+63987,puzzle,a game that tests your ingenuity
+63988,puzzle puzzler mystifier teaser,a particularly baffling problem that is said to have a correct solution; "he loved to solve chessmate puzzles"; "that's a real puzzler"
+63989,pya,100 pyas equal 1 kyat in Myanmar
+63990,pycnidium,flask-shaped asexual structure containing conidia
+63991,pycnodysostosis,a form of dwarfism accompanied by fragile bones and bad teeth
+63992,pycnosis pyknosis,a degenerative state of the cell nucleus
+63993,pyelitis,inflammation of the renal pelvis
+63994,pyelogram,an X ray of the kidneys and ureters
+63995,pyelography,roentgenography of the kidney and ureters (usually after injection with a radiopaque dye)
+63996,pyelonephritis,inflammation of the kidney and its pelvis caused by bacterial infection
+63997,pyemia pyaemia,septicemia caused by pus-forming bacteria being released from an abscess
+63998,pygmy pigmy,an unusually small individual
+63999,pygmy_chimpanzee bonobo Pan_paniscus,small chimpanzee of swamp forests in Zaire; a threatened species
+64000,pygmy_cypress Cupressus_pigmaea Cupressus_goveniana_pigmaea,rare small cypress native to northern California; sometimes considered the same species as gowen cypress
+64001,pygmy_marmoset Cebuella_pygmaea,the smallest monkey; of tropical forests of the Amazon
+64002,pygmy_mouse Baiomys_taylori,very small dark greyish brown mouse resembling a house mouse; of Texas and Mexico
+64003,pygmy_sperm_whale Kogia_breviceps,small sperm whale of warm waters of both coasts of North America
+64004,pyinma,relatively hard durable timber from the Queen's crape myrtle; light reddish brown, smooth and lustrous
+64005,pylon,a tower for guiding pilots or marking the turning point in a race
+64006,pylon power_pylon,a large vertical steel tower supporting high-tension power lines; "power pylons are a favorite target for terrorists"
+64007,pyloric_sphincter pyloric_valve musculus_sphincter_pylori,the sphincter muscle of the pylorus that separates the stomach from the duodenum
+64008,pyloric_stenosis,narrowing of the pyloric sphincter that blocks the passage of food from the stomach into the duodenum
+64009,pyloric_vein right_gastric_vein vena_gastrica-dextra,receives veins from the upper surfaces of the stomach and empties into the portal vein
+64010,pylorus,a small circular opening between the stomach and the duodenum
+64011,pyocyanase,a yellow-green mixture of antibiotics obtained from the bacillus of green pus
+64012,pyocyanin,a toxic blue crystalline antibiotic found in green pus
+64013,pyorrhea pyorrhoea,discharge of pus
+64014,pyorrhea pyorrhoea pyorrhea_alveolaris Riggs'_disease,chronic periodontitis; purulent inflammation of the teeth sockets
+64015,pyralid pyralid_moth,usually tropical slender-bodied long-legged moth whose larvae are crop pests
+64016,pyramid,a polyhedron having a polygonal base and triangular sides with a common vertex
+64017,pyramid,(stock market) a series of transactions in which the speculator increases his holdings by using the rising market value of those holdings as margin for further purchases
+64018,pyramid_bugle Ajuga_pyramidalis,European evergreen carpeting perennial
+64019,pyramid_scheme,a fraudulent scheme in which people are recruited to make payments to the person who recruited them while expecting to receive payments from the persons they recruit; when the number of new recruits fails to sustain the hierarchical payment structure the scheme collapses with most of the participants losing the money they put in
+64020,pyramidal_tent,a large tent shaped like a pyramid; can hold half a dozen people
+64021,pyramidal_tract pyramidal_motor_system corticospinal_tract,any of the important motor nerves on each side of the central nervous system that run from the sensorimotor areas of the cortex through the brainstem to motor neurons of the cranial nerve nuclei and the ventral root of the spinal cord
+64022,pyramiding,a fraudulent business practice involving some form of pyramid scheme e.g., the chain of distribution is artificially expanded by an excessive number of distributors selling to other distributors at progressively higher wholesale prices until retail prices are unnecessarily inflated
+64023,pyre funeral_pyre,wood heaped for burning a dead body as a funeral rite
+64024,pyrene,a pale yellow crystalline hydrocarbon C16H10 extracted from coal tar
+64025,pyrene,the small hard nutlet of a drupe or drupelet; the seed and the hard endocarp that surrounds it
+64026,pyrethrum,made of dried flower heads of pyrethrum plants
+64027,pyrethrum Dalmatian_pyrethrum Dalmatia_pyrethrum Tanacetum_cinerariifolium Chrysanthemum_cinerariifolium,white-flowered pyrethrum of Balkan area whose pinnate leaves are white and silky-hairy below; source of an insecticide; sometimes placed in genus Chrysanthemum
+64028,pyridine,a toxic colorless flammable liquid organic base with a disagreeable odor; usually derived from coal
+64029,pyriform_area piriform_area pyriform_lobe piriform_lobe,pear-shaped neural structure on either side of the brain in the rhinencephalon
+64030,pyrilamine,antihistamine used to treat rhinitis and pruritus
+64031,pyrimidine,any of several basic compounds derived from pyrimidine
+64032,pyrimidine,a heterocyclic organic compound with a penetrating odor
+64033,pyrite iron_pyrite fool's_gold,a common mineral (iron disulfide) that has a pale yellow color
+64034,pyrites,any of various metallic-looking sulfides (of which pyrite is the commonest)
+64035,pyrocellulose,nitrocellulose containing less nitrogen than guncotton; used in making smokeless powder
+64036,pyrochemical_process pyrochemistry,processes for chemical reactions at high temperatures
+64037,pyroelectricity,generation of an electric charge on certain crystals (such as tourmaline) as a result of a change in temperature
+64038,pyrogallol pyrogallic_acid,a toxic white lustrous crystalline phenol used to treat certain skin diseases and as a photographic developer
+64039,pyrogen,any substance characterized by its great flammability
+64040,pyrogen pyrectic,any substance that can cause a rise in body temperature
+64041,pyrograph,a design produced by pyrography
+64042,pyrographer,an artist who practices pyrography
+64043,pyrography,the act of producing drawings on wood or leather by using heated tools or a fine flame
+64044,pyrolatry fire-worship,the worship of fire
+64045,pyroligneous_acid wood_vinegar,a red-brown liquid formed in distillation of wood which contains acetic acid, methanol, acetone, wood oils, and tars
+64046,pyrolusite,a mineral consisting of manganese dioxide; an important source of manganese
+64047,pyrolysis,transformation of a substance produced by the action of heat
+64048,pyromancer,one who practices pyromancy
+64049,pyromancy,divination by fire or flames
+64050,pyromania,an uncontrollable desire to set fire to things
+64051,pyromaniac,a person with a mania for setting things on fire
+64052,pyrometer,a thermometer designed to measure high temperatures
+64053,pyrometric_cone,a pyrometer consisting of a series of cones that melt at different temperatures
+64054,pyromorphite green_lead_ore,a mineral consisting of lead chloride and phosphate; a minor source of lead
+64055,pyrope,a deep red garnet used as a gemstone
+64056,pyrophobia,a morbid fear of fire
+64057,pyrophoric_alloy,an alloy that emits sparks when struck or scratched with steel; used in lighter flints
+64058,pyrophosphate,a salt or ester of pyrophosphoric acid
+64059,pyrophosphoric_acid,a solid acid formed by reactions of orthophosphoric acid
+64060,pyrophyllite,a white or greenish aluminum silicate mineral (resembles talc)
+64061,pyrostat,a thermostat that operates at very high temperatures
+64062,pyrotechnics,(music) brilliance of display (as in the performance of music)
+64063,pyrotechnics pyrotechny,the craft of making fireworks
+64064,pyroxene,any of a group of crystalline silicate mineral common in igneous and metamorphic rocks
+64065,pyroxylin pyroxyline,highly flammable nitrocellulose used in making collodion and plastics and lacquers
+64066,pyrrhic,an ancient Greek dance imitating the motions of warfare
+64067,pyrrhic dibrach,a metrical unit with unstressed-unstressed syllables
+64068,pyrrhotite pyrrhotine magnetic_pyrites,a brownish iron sulfide mineral (FeS) having weak magnetic properties
+64069,pyrrhuloxia Pyrrhuloxia_sinuata,crested grey-and-red bird of southwest United States and Mexico
+64070,pyruvic_acid,a colorless acid formed as an important intermediate in metabolism or fermentation
+64071,pythium,any fungus of the genus Pythium
+64072,python,a soothsaying spirit or a person who is possessed by such a spirit
+64073,python,large Old World boas
+64074,pythoness,a witch with powers of divination
+64075,pyuria,presence of white blood cells in the urine; symptom of urinary tract infection
+64076,pyx pix,any receptacle in which wafers for the Eucharist are kept
+64077,pyx pix pyx_chest pix_chest,a chest in which coins from the mint are held to await assay
+64078,pyxidium pyxis,fruit of such plants as the plantain; a capsule whose upper part falls off when the seeds are released
+64079,pyxie pixie pixy Pyxidanthera_barbulata,creeping evergreen shrub having narrow overlapping leaves and early white star-shaped flowers; of the pine barrens of New Jersey and the Carolinas
+64080,pyxis,a small box used by ancient Greeks to hold medicines
+64081,qadi,an Islamic judge
+64082,qepiq,100 qepiq equal 1 manat in Azerbaijan
+64083,qi chi ch'i ki,the circulating life energy that in Chinese philosophy is thought to be inherent in all things; in traditional Chinese medicine the balance of negative and positive forms in the body is believed to be essential for good health
+64084,qibla,the direction of the Kaaba toward which Muslims turn for their daily prayers
+64085,qindarka qintar,100 qindarka equal 1 lek in Albania
+64086,qoph,the 19th letter of the Hebrew alphabet
+64087,quack,an untrained person who pretends to be a physician and who dispenses medical advice
+64088,quack,the harsh sound of a duck
+64089,quack-quack,child's word for a duck
+64090,quackery empiricism,medical practice and advice based on observation and experience in ignorance of scientific findings
+64091,quad quadrangle,a rectangular area surrounded on all sides by buildings
+64092,quad space,(printing) a block of type without a raised letter; used for spacing between words or sentences
+64093,quadrangular_prism,a prism whose bases are quadrangles
+64094,quadrant,any of the four areas into which a plane is divided by two orthogonal coordinate axes
+64095,quadrant,the area enclosed by two perpendicular radii of a circle
+64096,quadrant,a measuring instrument for measuring altitude of heavenly bodies
+64097,quadrant quarter-circle,a quarter of the circumference of a circle
+64098,quadrantanopia,blindness in one fourth of the visual field
+64099,quadraphony quadraphonic_system quadriphonic_system,a stereophonic sound recording or reproducing system using four separate channels
+64100,quadrate,a cubelike object
+64101,quadrate,a square-shaped object
+64102,quadratic quadratic_polynomial,a polynomial of the second degree
+64103,quadratic_equation quadratic,an equation in which the highest power of an unknown quantity is a square
+64104,quadratics,a branch of algebra dealing with quadratic equations
+64105,quadrature,the construction of a square having the same area as some other figure
+64106,quadrennium,a period of four years
+64107,quadric quadric_surface,a curve or surface whose equation (in Cartesian coordinates) is of the second degree
+64108,quadriceps quadriceps_femoris musculus_quadriceps_femoris quad,a muscle of the thigh that extends the leg
+64109,quadrilateral quadrangle tetragon,a four-sided polygon
+64110,quadrille,music for dancing the quadrille
+64111,quadrille,a square dance of 5 or more figures for 4 or more couples
+64112,quadrillion,the number that is represented as a one followed by 24 zeros; "in England they call a septillion a quadrillion"
+64113,quadrillion,the number that is represented as a one followed by 15 zeros
+64114,quadripara,(obstetrics) woman who has given birth to a viable infant in each of four pregnancies
+64115,quadriplegia,paralysis of both arms and both legs
+64116,quadriplegic,a person who is paralyzed in both arms and both legs
+64117,quadrivium,(Middle Ages) a higher division of the curriculum in a medieval university involving arithmetic and music and geometry and astronomy
+64118,quadroon,an offspring of a mulatto and a white parent; a person who is one-quarter black
+64119,quadrumvirate,a group of four men
+64120,quadruped,an animal especially a mammal having four limbs specialized for walking
+64121,quadruple,a quantity that is four times as great as another
+64122,quadruplet quad,one of four children born at the same time from the same pregnancy
+64123,quadruplicate,any four copies; any of four things that correspond to one another exactly; "it was signed in quadruplicate"
+64124,quadrupling,increase by a factor of four
+64125,quaestor,any of several public officials of ancient Rome (usually in charge of finance and administration)
+64126,quaff,a hearty draft
+64127,quaffer,a person who drinks heartily
+64128,quagga Equus_quagga,mammal of South Africa that resembled a zebra; extinct since late 19th century
+64129,quahaug quahog hard-shell_clam round_clam,Atlantic coast round clams with hard shells; large clams usually used for chowders or other clam dishes
+64130,quahog quahaug hard-shell_clam hard_clam round_clam Venus_mercenaria Mercenaria_mercenaria,an edible American clam; the heavy shells were used as money by some American Indians
+64131,quail,flesh of quail; suitable for roasting or broiling if young; otherwise must be braised
+64132,quail,small gallinaceous game birds
+64133,quail_bush quail_brush white_thistle Atriplex_lentiformis,spiny shrub with silvery-scurfy foliage of alkaline plains of southwestern United States and Mexico
+64134,quaintness,the quality of being quaint and old-fashioned; "she liked the old cottage; its quaintness was appealing"
+64135,quaintness,strangeness as a consequence of being old fashioned; "some words in her dialect had a charming quaintness"
+64136,quaker trembler,one who quakes and trembles with (or as with) fear
+64137,quaking_aspen European_quaking_aspen Populus_tremula,Old World aspen with a broad much-branched crown; northwestern Europe and Siberia to North Africa
+64138,qualification,the act of modifying or changing the strength of some idea; "his new position involves a qualification of his party's platform"
+64139,qualification making,an attribute that must be met or complied with and that fits a person for something; "her qualifications for the job are excellent"; "one of the qualifications for admission is an academic degree"; "she has the makings of fine musician"
+64140,qualifier,a contestant who meets certain requirements and so qualifies to take part in the next stage of competition; "the tournament was won by a late qualifier"
+64141,quality,high social status; "a man of quality"
+64142,quality,an essential and distinguishing attribute of something or someone; "the quality of mercy is not strained"--Shakespeare
+64143,quality caliber calibre,a degree or grade of excellence or worth; "the quality of students has risen"; "an executive of low caliber"
+64144,quality character lineament,a characteristic property that defines the apparent individual nature of something; "each town has a quality all its own"; "the radical character of our demands"
+64145,quality_control,maintenance of standards of quality of manufactured goods
+64146,quality_of_life,your personal satisfaction (or dissatisfaction) with the cultural or intellectual conditions under which you live (as distinct from material comfort); "the new art museum is expected to improve the quality of life"
+64147,quandong blue_fig,the fruit of the Brisbane quandong tree
+64148,quandong quandang quandong_tree Eucarya_acuminata Fusanus_acuminatus,Australian tree with edible flesh and edible nutlike seed
+64149,quandong quandang quantong native_peach,red Australian fruit; used for dessert or in jam
+64150,quandong quandong_tree Brisbane_quandong silver_quandong_tree blue_fig Elaeocarpus_grandis,Australian tree having hard white timber and glossy green leaves with white flowers followed by one-seeded glossy blue fruit
+64151,quandong_nut,edible nutlike seed of the quandong fruit
+64152,quango quasi-NGO,a quasi nongovernmental organization; an organization that is financed by the government yet acts independently of the government
+64153,quantic,a homogeneous polynomial having at least two variables
+64154,quantifiability measurability,the quality of being measurable
+64155,quantification,a limitation imposed on the variables of a proposition (as by the quantifiers `some' or `all' or `no')
+64156,quantification,the act of discovering or expressing the quantity of something
+64157,quantifier,(grammar) a word that expresses a quantity (as `fifteen' or `many')
+64158,quantifier logical_quantifier,(logic) a word (such as `some' or `all' or `no') that binds the variables in a logical proposition
+64159,quantitative_analysis quantitative_chemical_analysis,chemical analysis to determine the amounts of each element in the substance
+64160,quantity,the concept that something has a magnitude and can be represented in mathematical expressions by a constant or a variable
+64161,quantity,an adequate or large amount; "he had a quantity of ammunition"
+64162,quantization quantisation,the act of dividing into quanta or expressing in terms of quantum theory
+64163,quantum,a discrete amount of something that is analogous to the quantities in quantum theory
+64164,quantum,(physics) the smallest discrete quantity of some physical property that a system can possess (according to quantum theory)
+64165,quantum_chromodynamics QCD,a theory of strong interactions between elementary particles (including the interaction that binds protons and neutrons in the nucleus); it assumes that strongly interacting particles (hadrons) are made of quarks and that gluons bind the quarks together
+64166,quantum_electrodynamics QED,a relativistic quantum theory of the electromagnetic interactions of photons and electrons and muons
+64167,quantum_field_theory,the branch of quantum physics that is concerned with the theory of fields; it was motivated by the question of how an atom radiates light as its electrons jump from excited states
+64168,quantum_jump,(physics) an abrupt transition of an electron or atom or molecule from one quantum state to another with the emission or absorption of a quantum
+64169,quantum_leap quantum_jump,a sudden large increase or advance; "this may not insure success but it will represent a quantum leap from last summer"
+64170,quantum_mechanics,the branch of quantum physics that accounts for matter at the atomic level; an extension of statistical mechanics based on quantum theory (especially the Pauli exclusion principle)
+64171,quantum_physics,the branch of physics based on quantum theory
+64172,quantum_theory,(physics) a physical theory that certain properties occur only in discrete amounts (quanta)
+64173,quarantine,enforced isolation of patients suffering from a contagious disease in order to prevent the spread of disease
+64174,quarantine,isolation to prevent the spread of infectious disease
+64175,quark,(physics) hypothetical truly fundamental particle in mesons and baryons; there are supposed to be six flavors of quarks (and their antiquarks), which come in pairs; each has an electric charge of +2/3 or -1/3; "quarks have not been observed directly but theoretical predictions based on their existence have been confirmed experimentally"
+64176,quark_cheese quark,fresh unripened cheese of a smooth texture made from pasteurized milk, a starter, and rennet
+64177,quarrel,an arrow that is shot from a crossbow; has a head with four edges
+64178,quarrel wrangle row words run-in dustup,an angry dispute; "they had a quarrel"; "they had words"
+64179,quarreler quarreller,a disputant who quarrels
+64180,quarrelsomeness contentiousness,an inclination to be quarrelsome and contentious
+64181,quarrying,the extraction of building stone or slate from an open surface quarry
+64182,quarryman quarrier,a man who works in a quarry
+64183,quart,a British imperial capacity measure (liquid or dry) equal to 2 pints or 1.136 liters
+64184,quart,a United States liquid unit equal to 32 fluid ounces; four quarts equal one gallon
+64185,quart dry_quart,a United States dry unit equal to 2 pints or 67.2 cubic inches
+64186,quartan,a malarial fever that recurs every fourth day
+64187,quarter,(football, professional basketball) one of four divisions into which some games are divided; "both teams scored in the first quarter"
+64188,quarter,a unit of time equal to 15 minutes or a quarter of an hour; "it's a quarter til 4"; "a quarter after 4 o'clock"
+64189,quarter,one of four periods into which the school year is divided; "the fall quarter ends at Christmas"
+64190,quarter,a fourth part of a year; three months; "unemployment fell during the last quarter"
+64191,quarter,one of the four major division of the compass; "the wind is coming from that quarter"
+64192,quarter,a quarter of a hundredweight (25 pounds)
+64193,quarter,a quarter of a hundredweight (28 pounds)
+64194,quarter,a United States or Canadian coin worth one fourth of a dollar; "he fed four quarters into the slot machine"
+64195,quarter,an unspecified person; "he dropped a word in the right quarter"
+64196,quarter,a district of a city having some distinguishing character; "the Latin Quarter"
+64197,quarter,piece of leather that comprises the part of a shoe or boot covering the heel and joining the vamp
+64198,quarter,clemency or mercy shown to a defeated opponent; "he surrendered but asked for quarter"
+64199,quarter-century,a period of 25 years
+64200,quarter-hour 15_minutes,a quarter of an hour
+64201,quarter_crack,a crack on the inside of a horse's forefoot
+64202,quarter_day,a Christian holy day; one of four specified days when certain payments are due
+64203,quarter_horse,a small powerful horse originally bred for sprinting in quarter-mile races in Virginia
+64204,quarter_mile 440_yards,a unit of length equal to a quarter of 1 mile
+64205,quarter_note crotchet,a musical note having the time value of a quarter of a whole note
+64206,quarter_plate,a photographic plate measuring 3.25 inches by 4.25 inches
+64207,quarter_pound,4 ounces avoirdupois
+64208,quarter_rest,a musical rest having one-fourth the time value of a whole rest
+64209,quarter_section,a land unit equal to a quarter of a section (160 acres) and measuring 1/2 mile on a side
+64210,quarter_sessions,a local court with criminal jurisdiction and sometimes administrative functions
+64211,quarter_stock,stock with a par value of $25/share
+64212,quarter_tone quarter-tone,half of a semitone
+64213,quarterback signal_caller field_general,(football) the person who plays quarterback
+64214,quarterback signal_caller field_general,(American football) the position of the football player in the backfield who directs the offensive play of his team; "quarterback is the most important position on the team"
+64215,quarterdeck,the stern area of a ship's upper deck
+64216,quarterfinal,one of the four competitions in an elimination tournament whose winners go on to play in the semifinals
+64217,quartering,a coat of arms that occupies one quarter of an escutcheon; combining four coats of arms on one shield usually represented intermarriages
+64218,quartering,living accommodations (especially those assigned to military personnel)
+64219,quartering,dividing into four equal parts
+64220,quarterlight,car window consisting of a small pivoted glass vent in the door of a car
+64221,quarterly,a periodical that is published every quarter (or four issues per year)
+64222,quartermaster,an army officer who provides clothing and subsistence for troops
+64223,quartermaster_general,a staff officer in charge of supplies for a whole army
+64224,quarterstaff,a long stout staff used as a weapon
+64225,quartet quartette,four performers or singers who perform together
+64226,quartet quartette,a musical composition for four performers
+64227,quartet quartette foursome,four people considered as a unit; "he joined a barbershop quartet"; "the foursome teed off before 9 a.m."
+64228,quartet quartette quadruplet quadruple,a set of four similar things considered as a unit
+64229,quartile,(statistics) any of three points that divide an ordered distribution into four parts each containing one quarter of the scores
+64230,quarto 4to,the size of a book whose pages are made by folding a sheet of paper twice to form four leaves
+64231,quartz,a hard glossy mineral consisting of silicon dioxide in crystal form; present in most rocks (especially sandstone and granite); yellow sand is quartz with iron oxide impurities
+64232,quartz_battery quartz_mill,a stamp mill for stamping quartz
+64233,quartz_crystal,a thin plate or small rod of quartz cut along certain lines and ground so that it can produce an electric signal at a constant frequency; used in crystal oscillators
+64234,quartz_glass quartz vitreous_silica lechatelierite crystal,colorless glass made of almost pure silica
+64235,quartz_lamp,a mercury-vapor lamp that is enclosed in a quartz container instead of a glass container
+64236,quartzite,hard metamorphic rock consisting essentially of interlocking quartz crystals
+64237,quasar quasi-stellar_radio_source,a starlike object that may send out radio waves and other forms of energy; many have large red shifts
+64238,quasi_contract,a contract created by law for reasons of justice without any expression of assent
+64239,quasiparticle,a quantum of energy (in a crystal lattice or other system) that has position and momentum and can in some respects be regarded as a particle
+64240,quassia,a bitter compound used as an insecticide and tonic and vermifuge; extracted from the wood and bark of trees of the genera Quassia and Picrasma
+64241,quassia bitterwood Quassia_amara,handsome South American shrub or small tree having bright scarlet flowers and yielding a valuable fine-grained yellowish wood; yields the bitter drug quassia from its wood and bark
+64242,quatercentennial quatercentenary,the 400th anniversary (or the celebration of it)
+64243,quaternary_ammonium_compound,a compound derived from ammonium with hydrogen atoms replaced by organic groups; used as surface-active agents, disinfectants, and in drugs
+64244,quatrain,a stanza of four lines
+64245,quattrocento,the 15th century in Italian art and literature
+64246,quaver,a tremulous sound
+64247,quay,wharf usually built parallel to the shoreline
+64248,queasiness squeamishness qualm,a mild state of nausea
+64249,queen,something personified as a woman who is considered the best or most important of her kind; "Paris is the queen of cities"; "the queen of ocean liners"
+64250,queen,the wife or widow of a king
+64251,queen,one of four face cards in a deck bearing a picture of a queen
+64252,queen,(chess) the most powerful piece
+64253,queen,the only fertile female in a colony of social insects such as bees and ants and termites; its function is to lay eggs
+64254,queen queen_mole_rat,an especially large mole rat and the only member of a colony of naked mole rats to bear offspring which are sired by only a few males
+64255,queen queen_regnant female_monarch,a female sovereign ruler
+64256,queen's_cup bride's_bonnet Clintonia_uniflora,plant with 1 or 2 white starlike flowers on short leafless stalks; Alaska to California and east to Oregon and Montana
+64257,queen_bee,fertile egg-laying female bee
+64258,queen_consort,the wife of a reigning king
+64259,queen_dowager,the widow of a king
+64260,queen_mother,a queen dowager who is mother of the reigning sovereign
+64261,queen_of_the_night Selenicereus_grandiflorus,tropical American climbing cactus having triangular branches; often cultivated for its large showy night-blooming flowers followed by yellow red-streaked fruits
+64262,queen_post,vertical tie post in a roof truss
+64263,queen_regent,a queen who serves as ruler when the king cannot
+64264,queen_triggerfish Bessy_cerca oldwench oldwife Balistes_vetula,tropical Atlantic fish
+64265,quellung quellung_reaction,the swelling of the capsule surrounding a microorganism after reaction with an antibody; the basis of certain tests for identifying microorganisms; "pneumococcus quellung"
+64266,quenched_steel,steel that has been hardened by immersing it in water or oil to cool it
+64267,quercitron,a yellow dye made from the bark of the quercitron oak tree
+64268,quern,a primitive stone mill for grinding corn by hand
+64269,querulousness,the quality of being given to complaining
+64270,quesadilla,a tortilla that is filled with cheese and heated
+64271,quest seeking,the act of searching for something; "a quest for diamonds"
+64272,question,an informal reference to a marriage proposal; "he was ready to pop the question"
+64273,question head,the subject matter at issue; "the question of disease merits serious discussion"; "under the head of minor Roman poets"
+64274,question inquiry enquiry query interrogation,an instance of questioning; "there was a question about my training"; "we made inquiries of all those who were present"
+64275,question interrogation interrogative interrogative_sentence,a sentence of inquiry that asks for a reply; "he asked a direct question"; "he had trouble phrasing his interrogations"
+64276,question_mark interrogation_point,a punctuation mark (?) placed at the end of a sentence to indicate a question
+64277,question_master quizmaster,the host or chairman of a radio or tv quiz show or panel game
+64278,question_of_fact matter_of_fact,a disputed factual contention that is generally left for a jury to decide
+64279,question_of_law matter_of_law,a disputed legal contention that is generally left for a judge to decide
+64280,question_time,a period during a parliamentary session when members of British Parliament may ask questions of the ministers
+64281,questioning inquiring,a request for information
+64282,questionnaire,a form containing a set of questions; submitted to people to gain statistical information
+64283,quetzal,the basic unit of money in Guatemala; equal to 100 centavos
+64284,quetzal quetzal_bird,large trogon of Central America and South America having golden-green and scarlet plumage
+64285,queue,(information processing) an ordered list of tasks to be performed or messages to be transmitted
+64286,queue,a braid of hair at the back of the head
+64287,queue waiting_line,a line of people or vehicles waiting for something
+64288,quibble quiddity cavil,an evasion of the point of an argument by raising irrelevant distinctions or objections
+64289,quibbler caviller caviler pettifogger,a disputant who quibbles; someone who raises annoying petty objections
+64290,quiche,a tart filled with rich unsweetened custard; often contains other ingredients (as cheese or ham or seafood or vegetables)
+64291,quiche_Lorraine,quiche made with cheese and bacon
+64292,quick,any area of the body that is highly sensitive to pain (as the flesh underneath the skin or a fingernail or toenail)
+64293,quick_bread,breads made with a leavening agent that permits immediate baking
+64294,quick_march,marching at quick time
+64295,quick_study sponge,someone able to acquire new knowledge and skills rapidly and easily; "she soaks up foreign languages like a sponge"
+64296,quick_time,a normal marching pace of 120 steps per minute
+64297,quickener invigorator enlivener,an agent that gives or restores life or vigor; "the soul is the quickener of the body"
+64298,quickening,the stage of pregnancy at which the mother first feels the movements of the fetus
+64299,quickening,the process of showing signs of life; "the quickening of seed that will become ripe grain"
+64300,quicksand,a treacherous situation that tends to entrap and destroy
+64301,quicksand,a pit filled with loose wet sand into which objects are sucked down
+64302,quickset,cuttings of plants set in the ground to grow as hawthorn for hedges or vines; "a quickset of a vine planted in a vineyard"
+64303,quickstep,military march accompanying quick time
+64304,quickstep,a ballroom dance with both quick and slow steps
+64305,quid_pro_quo quid,something for something; that which a party receives (or is promised) in return for something he does or gives or promises
+64306,quiddity haecceity,the essence that makes something the kind of thing it is and makes it different from any other
+64307,quiescence quiescency dormancy sleeping,quiet and inactive restfulness
+64308,quietism,a form of religious mysticism requiring withdrawal from all human effort and passive contemplation of God
+64309,quietist,a religious mystic who follows quietism
+64310,quietness soundlessness,the property of making no sound
+64311,quiff,a prominent forelock (especially one brushed upward from the forehead)
+64312,quill,a stiff hollow protective spine on a porcupine or hedgehog
+64313,quill calamus shaft,the hollow spine of a feather
+64314,quill quill_pen,pen made from a bird's feather
+64315,quillwort,any of several spore-bearing aquatic or marsh plants having short rhizomes and leaves resembling quills; worldwide except Polynesia
+64316,quilt comforter comfort puff,bedding made of two layers of cloth filled with stuffing and stitched together
+64317,quilted_bedspread,a bedspread constructed like a thin quilt
+64318,quilting,stitching through layers of fabric and a filling so as to create a design
+64319,quilting,a material used for making a quilt, or a quilted fabric
+64320,quilting_bee,a gathering to make quilts
+64321,quinacrine quinacrine_hydrochloride mepacrine Atabrine,a drug (trade name Atabrine) used to treat certain worm infestations and once used to treat malaria
+64322,quince,aromatic acid-tasting pear-shaped fruit used in preserves
+64323,quince quince_bush Cydonia_oblonga,small Asian tree with pinkish flowers and pear-shaped fruit; widely cultivated
+64324,quincentennial quincentenary,the 500th anniversary (or the celebration of it)
+64325,quinidine Quinidex Quinora,cardiac drug (trade names Quinidex and Quinora) used to treat certain heart arrhythmias
+64326,quinine,a bitter alkaloid extracted from chinchona bark; used in malaria therapy
+64327,quinone benzoquinone,any of a class of aromatic yellow compounds including several that are biologically important as coenzymes or acceptors or vitamins; used in making dyes
+64328,quinquefoliate_leaf,a compound leaf having five leaflets
+64329,quinquennium,a period of five years
+64330,quinsy peritonsillar_abscess,a painful pus filled inflammation of the tonsils and surrounding tissues; usually a complication of tonsillitis
+64331,quintal,a unit of weight equal to 100 kilograms
+64332,quintessence,the purest and most concentrated essence of something
+64333,quintessence,the most typical example or representative of a type
+64334,quintessence ether,the fifth and highest element after air and earth and fire and water; was believed to be the substance composing all heavenly bodies
+64335,quintet quintette,five performers or singers who perform together
+64336,quintet quintette,a musical composition for five performers
+64337,quintet quintette fivesome,five people considered as a unit
+64338,quintet quintette quintuplet quintuple,a set of five similar things considered as a unit
+64339,quintillion,the number that is represented as a one followed by 18 zeros
+64340,quintipara,(obstetrics) woman who has given birth to a viable infant in each of five pregnancies
+64341,quintuplet quint quin,one of five children born at the same time from the same pregnancy
+64342,quintupling,increasing by a factor of five
+64343,quipu,calculator consisting of a cord with attached cords; used by ancient Peruvians for calculating and keeping records
+64344,quira,any of several tropical American trees some yielding economically important timber
+64345,quire,a quantity of paper; 24 or 25 sheets
+64346,quirk,a narrow groove beside a beading
+64347,quirk_bead bead_and_quirk,beading formed with a narrow groove separating it from the surface it decorates
+64348,quirk_molding quirk_moulding,a molding having a small groove in it
+64349,quirt,whip with a leather thong at the end
+64350,quitclaim,act of transferring a title or right or claim to another
+64351,quitclaim quitclaim_deed,document transferring title or right or claim to another
+64352,quittance,a document or receipt certifying release from an obligation or debt
+64353,quitter,a person who gives up too easily
+64354,quiver,case for holding arrows
+64355,quiz,an examination consisting of a few short questions
+64356,quiz_program,a game show in which contestants answer questions
+64357,quo_warranto,a hearing to determine by what authority someone has an office or franchise or liberty
+64358,quodlibet,an issue that is presented for formal disputation
+64359,quoin coign coigne,expandable metal or wooden wedge used by printers to lock up a form within a chase
+64360,quoin coign coigne,the keystone of an arch
+64361,quoit,game equipment consisting of a ring of iron or circle of rope used in playing the game of quoits
+64362,quoits horseshoes,a game in which iron rings (or open iron rings) are thrown at a stake in the ground in the hope of encircling it
+64363,quorum,a gathering of the minimal number of members of an organization to conduct business
+64364,quota,a prescribed number; "all the salesmen met their quota for the month"
+64365,quota,a proportional share assigned to each participant
+64366,quota,a limitation on imports; "the quota for Japanese imports was negotiated"
+64367,quotability,the quality of being worthy of being quoted
+64368,quotation,a statement of the current market price of a security or commodity
+64369,quotation,the practice of quoting from books or plays etc.; "since he lacks originality he must rely on quotation"
+64370,quotation quote citation,a passage or expression that is quoted or cited
+64371,quotation_mark quote inverted_comma,a punctuation mark used to attribute the enclosed text to someone else
+64372,quoter,a communicator (speaker or writer) who uses quotations
+64373,quotient,the ratio of two quantities to be divided
+64374,quotient,the number obtained by division
+64375,quotient_verdict,an improper and unacceptable kind of compromise verdict
+64376,qurush,20 qurush equal 1 riyal in Saudi Arabia
+64377,rabato rebato,a wired or starched collar of intricate lace; worn in 17th century
+64378,rabbet rebate,a rectangular groove made to hold two pieces together
+64379,rabbet_joint,a joint formed by fitting together two rabbeted boards
+64380,rabbi,spiritual leader of a Jewish congregation; qualified to expound and apply Jewish law
+64381,rabbinate,rabbis collectively
+64382,rabbinate,the office or function of a rabbi
+64383,rabbit coney cony,any of various burrowing animals of the family Leporidae having long ears and short tails; some domesticated and raised for pets or food
+64384,rabbit hare,flesh of any of various rabbits or hares (wild or domesticated) eaten as food
+64385,rabbit-eared_bandicoot rabbit_bandicoot bilby Macrotis_lagotis,bandicoot with leathery ears like a rabbit
+64386,rabbit_brush rabbit_bush Chrysothamnus_nauseosus,pleasantly aromatic shrub having erect slender flexible hairy branches and dense clusters of small yellow flowers covering vast areas of western alkali plains and affording a retreat for jackrabbits; source of a yellow dye used by the Navajo
+64387,rabbit_burrow rabbit_hole,a hole in the ground as a nest made by wild rabbits
+64388,rabbit_ears,an indoor TV antenna; consists of two extendible rods that form a V
+64389,rabbit_ears,the long ears of a rabbit
+64390,rabbit_hutch,a hutch for rabbits
+64391,rabbit_punch,a short chopping blow to the back of the neck
+64392,rabbiteye_blueberry rabbit-eye_blueberry rabbiteye Vaccinium_ashei,shrub of southeastern United States grown commercially especially for canning industry
+64393,rabbitfish Chimaera_monstrosa,large European chimaera
+64394,rabbitweed rabbit-weed snakeweed broom_snakeweed broom_snakeroot turpentine_weed Gutierrezia_sarothrae,low-growing sticky subshrub of southwestern United States having narrow linear leaves on many slender branches and hundreds of tiny yellow flower heads
+64395,rabbitwood buffalo_nut Pyrularia_pubera,shrub of southeastern United States parasitic on roots of hemlocks having sparse spikes of greenish flowers and pulpy drupes
+64396,rabble riffraff ragtag ragtag_and_bobtail,disparaging terms for the common people
+64397,rabies hydrophobia lyssa madness,an acute viral disease of the nervous system of warm-blooded animals (usually transmitted by the bite of a rabid animal); rabies is fatal if the virus reaches the brain
+64398,raccoon,the fur of the North American racoon
+64399,raccoon racoon,an omnivorous nocturnal mammal native to North America and Central America
+64400,raccoon_dog Nyctereutes_procyonides,small wild dog of eastern Asia having facial markings like those of a raccoon
+64401,race,people who are believed to belong to the same genetic stock; "some biologists doubt that there are important genetic differences between races of human beings"
+64402,race,any competition; "the race for the presidency"
+64403,race,a contest of speed; "the race is to the swift"
+64404,race_meeting,a regular occasion on which a number of horse races are held on the same track; "the Epsom race meeting was an important social event"
+64405,race_problem,a social and political problem caused by conflict between races occupying the same or adjacent regions
+64406,race_riot,a riot caused by hatred for one another of members of different races in the same community
+64407,raceabout,a small sloop having the keep of a knockabout but with finer lines and carrying more sail
+64408,racecard,a program for a race meeting; lists the races and the names of the horses
+64409,racehorse race_horse bangtail,a horse bred for racing
+64410,raceme,usually elongate cluster of flowers along the main stem in which the flowers at the base open first
+64411,racemic_acid,the optically inactive form of tartaric acid that is often found in grape juice
+64412,racer,an animal that races
+64413,racer,slender fast-moving North American snakes
+64414,racer race_car racing_car,a fast car that competes in races
+64415,racer race_driver automobile_driver,someone who drives racing cars at high speeds
+64416,racerunner race_runner six-lined_racerunner Cnemidophorus_sexlineatus,very swift lizard of eastern and central United States
+64417,racetrack racecourse raceway track,a course over which races are run
+64418,racetrack_tout,someone who offers advice about betting on horses (either to influence the odds or in the hope of sharing some of the winnings)
+64419,raceway race,a canal for a current of water
+64420,rachis,axis of a compound leaf or compound inflorescence
+64421,rachitis,inflammation of the vertebral column
+64422,racial_immunity,natural immunity shared by all members of a particular race
+64423,racial_profiling,a form of racism consisting of the (alleged) policy of policemen who stop and search vehicles driven by persons belonging to particular racial groups
+64424,racial_segregation,segregation by race
+64425,racing,the sport of engaging in contests of speed
+64426,racing_boat,a boat propelled by oarsmen and designed for racing
+64427,racing_circuit circuit,a racetrack for automobile races
+64428,racing_gig,a light narrow racing boat for two or more oarsmen
+64429,racing_skiff single_shell,a shell for a single oarsman
+64430,racing_start,the start of a race
+64431,racism,the prejudice that members of one race are intrinsically superior to members of other races
+64432,racism racialism racial_discrimination,discriminatory or abusive behavior towards members of another race
+64433,racist racialist,a person with a prejudiced belief that one racial group is superior to others
+64434,rack,rib section of a forequarter of veal or pork or especially lamb or mutton
+64435,rack,framework for holding objects
+64436,rack,a form of torture in which pain is inflicted by stretching the body
+64437,rack single-foot,a rapid gait of a horse in which each foot strikes the ground separately
+64438,rack stand,a support for displaying various articles; "the newspapers were arranged on a rack"
+64439,rack wheel,an instrument of torture that stretches or disjoints or mutilates victims
+64440,rack_and_pinion,a wheel gear (the pinion) meshes with a toothed rack; converts rotary to reciprocating motion (and vice versa)
+64441,rack_of_lamb crown_roast,a roast of the rib section of lamb
+64442,rack_rent,an extortionate rent
+64443,racker,an attendant who puts pool or billiard balls into a rack
+64444,racket,a loud and disturbing noise
+64445,racket fraudulent_scheme illegitimate_enterprise,an illegal enterprise (such as extortion or fraud or drug peddling or prostitution) carried on for profit
+64446,racket racquet,a sports implement (usually consisting of a handle and an oval frame with a tightly interlaced network of strings) used to strike a ball (or shuttlecock) in various games
+64447,racket_club,club for players of racket sports
+64448,racketeer,someone who commits crimes for profit (especially one who obtains money by fraud or extortion)
+64449,racketeering,engaging in a racket
+64450,racquetball,the ball used in playing the game of racquetball
+64451,racquetball,a game played on a handball court with short-handled rackets
+64452,rad,a unit of absorbed ionizing radiation equal to 100 ergs per gram of irradiated material
+64453,radar microwave_radar radio_detection_and_ranging radiolocation,measuring instrument in which the echo of a pulse of microwave radiation is used to detect and locate distant objects
+64454,radar_beacon racon,a device that, on receiving radar signals, transmits coded signals in response to help navigators determine their position
+64455,radar_echo,an electronic signal that has been reflected back to the radar antenna; contains information about the location and distance of the reflecting object
+64456,radar_fire,gunfire aimed a target that is being tracked by radar
+64457,radial radial_tire radial-ply_tire,pneumatic tire that has radial-ply casing
+64458,radial_artery arteria_radialis,branch of the brachial artery beginning below the elbow and extending down the forearm around the wrist and into the palm
+64459,radial_asymmetry,the absence of symmetry about an axis
+64460,radial_engine rotary_engine,an internal-combustion engine having cylinders arranged radially around a central crankcase
+64461,radial_keratotomy,radial pattern of incisions in the cornea that cause the cornea to bulge; performed to correct myopia
+64462,radial_nerve nervus_radialis musculospiral_nerve,largest branch of the brachial plexus; extends down the humerus to the lateral epicondyle where it divides into one branch that goes to the skin on the back of the hand and another that goes to the underlying extensor muscles
+64463,radial_pulse,pulse of the radial artery (felt in the wrist)
+64464,radial_symmetry,the property of symmetry about an axis; "the starfish illustrates radial symmetry"
+64465,radial_vein vena_radialis,superficial veins ascending the radial side of the forearm; combines with the ulnar veins to form the brachial vein
+64466,radial_velocity,velocity along the line of sight toward or away from the observer
+64467,radian rad,the unit of plane angle adopted under the Systeme International d'Unites; equal to the angle at the center of a circle subtended by an arc equal in length to the radius (approximately 57.295 degrees)
+64468,radiance,an attractive combination of good health and happiness; "the radiance of her countenance"
+64469,radiance glow glowing,the amount of electromagnetic radiation leaving or arriving at a point on a surface
+64470,radiance radiancy shine effulgence refulgence refulgency,the quality of being bright and sending out rays of light
+64471,radiant_energy,energy that is transmitted in the form of (electromagnetic) radiation; energy that exists in the absence of matter
+64472,radiant_flux,the rate of flow of radiant energy (electromagnetic waves)
+64473,radiant_heating,heating a building by radiation from panels containing hot water or electrical heaters
+64474,radiation,energy that is radiated or transmitted in the form of rays or waves or particles
+64475,radiation,the spread of a group of organisms into new habitats
+64476,radiation,a radial arrangement of nerve fibers connecting different parts of the brain
+64477,radiation,the act of spreading outward from a central source
+64478,radiation radioactivity,the spontaneous emission of a stream of particles or electromagnetic rays in nuclear decay
+64479,radiation_field,a field that represents the energy lost from the radiator to space
+64480,radiation_pattern radiation_diagram pattern,graphical representation (in polar or Cartesian coordinates) of the spatial distribution of radiation from an antenna as a function of angle
+64481,radiation_pressure corpuscular-radiation_pressure,the minute pressure exerted on a surface normal to the direction of propagation of a wave
+64482,radiation_pyrometer,a pyrometer for estimating the temperature of distant sources of heat; radiation is focussed on a thermojunction connected in circuit with a galvanometer
+64483,radiation_sickness radiation_syndrome radiation,syndrome resulting from exposure to ionizing radiation (e.g., exposure to radioactive chemicals or to nuclear explosions); low doses cause diarrhea and nausea and vomiting and sometimes loss of hair; greater exposure can cause sterility and cataracts and some forms of cancer and other diseases; severe exposure can cause death within hours; "he was suffering from radiation"
+64484,radiator,any object that radiates energy
+64485,radiator,heater consisting of a series of pipes for circulating steam or hot water to heat rooms or buildings
+64486,radiator,a mechanism consisting of a metal honeycomb through which hot fluids circulate; heat is transferred from the fluid through the honeycomb to the airstream that is created either by the motion of the vehicle or by a fan
+64487,radiator_cap,cap on the opening in the top of a radiator through which a coolant liquid can be added
+64488,radiator_hose,a flexible hose between the radiator and the engine block
+64489,radical,(mathematics) a quantity expressed as the root of another quantity
+64490,radical,a person who has radical ideas or opinions
+64491,radical,a character conveying the lexical meaning of a logogram
+64492,radical_chic,an affectation of radical left-wing views and the fashionable dress and lifestyle that goes with them
+64493,radical_hysterectomy panhysterectomy,surgical removal of the uterus and the ovaries and oviducts and cervix and related lymph nodes
+64494,radical_mastectomy,removal of a breast and the underlying muscles (pectoralis major and pectoralis minor) and lymph nodes in the adjacent armpit
+64495,radical_sign,a sign indicating the extraction of a root
+64496,radicalism,the political orientation of those who favor revolutionary change in government and society
+64497,radicchio,prized variety of chicory having globose heads of red leaves
+64498,radicle,(anatomy) a small structure resembling a rootlet (such as a fibril of a nerve)
+64499,radiculitis,inflammation of the radicle of a nerve
+64500,radio radiocommunication wireless,medium for communication
+64501,radio wireless,a communication system based on broadcasting electromagnetic waves
+64502,radio-phonograph radio-gramophone,electronic equipment consisting of a combination of a radio receiver and a record player
+64503,radio_announcer,an announcer whose voice is broadcast on radio
+64504,radio_antenna radio_aerial,omnidirectional antenna comprising the part of a radio receiver by means of which radio signals are received
+64505,radio_astronomy,the branch of astronomy that detects and studies the radio waves emitted by celestial bodies
+64506,radio_beacon,a characteristic signal emitted by a transmitter used for navigation
+64507,radio_beacon beacon,a radio station that broadcasts a directional signal for navigational purposes
+64508,radio_beam beam,a signal transmitted along a narrow path; guides airplane pilots in darkness or bad weather
+64509,radio_brightness,the strength of a radio wave picked up by a radio telescope
+64510,radio_broadcast,a broadcast via radio
+64511,radio_chassis,a chassis for a radio receiver
+64512,radio_compass,a direction finder that gives a bearing by determining the direction of incoming radio signals
+64513,radio_frequency,an electromagnetic wave frequency between audio and infrared
+64514,radio_interferometer,radio telescope that uses interference patterns from two antennas instead of a parabolic antenna
+64515,radio_link link,a two-way radio communication system (usually microwave); part of a more extensive telecommunication network
+64516,radio_news,a radio broadcast of news
+64517,radio_noise,static at radio wavelengths
+64518,radio_observation,an observation made with a radio telescope
+64519,radio_operator,someone who operates a radio transmitter
+64520,radio_receiver receiving_set radio_set radio tuner wireless,an electronic receiver that detects and demodulates and amplifies transmitted signals
+64521,radio_signal,a radio wave used to transmit and receive messages
+64522,radio_source,an object that radiates radio waves
+64523,radio_spectrum radio-frequency_spectrum,the entire spectrum of electromagnetic frequencies used for communications; includes frequencies used for radio and radar and television
+64524,radio_station,station for the production and transmission of AM or FM radio broadcasts
+64525,radio_telescope radio_reflector,astronomical telescope that picks up electromagnetic radiations in the radio-frequency range from extraterrestrial sources
+64526,radio_transmitter,transmitter that is the part of a radio system that transmits signals
+64527,radio_wave radio_emission radio_radiation,an electromagnetic wave with a wavelength between 0.5 cm to 30,000 m
+64528,radioactive_dating,measurement of the amount of radioactive material (usually carbon 14) that an object contains; can be used to estimate the age of the object
+64529,radioactive_iodine_excretion_test,radioactive iodine test that measures the amount of radioactive iodine excreted in the urine
+64530,radioactive_iodine_test,test of thyroid function in which the patient is given an oral dose of radioactive iodine-131
+64531,radioactive_iodine_uptake_test RAIU,radioactive iodine test that measures the amount of radioactive iodine taken up by the thyroid gland
+64532,radioactive_material,material that is radioactive
+64533,radioactive_waste,useless radioactive materials that are left after some laboratory or commercial process is completed
+64534,radioactivity_unit,a measure of radioactivity
+64535,radiobiologist,a biologist who studies the effects of radiation on living organisms
+64536,radiobiology,the branch of biology that studies the effects of radiation on living organisms
+64537,radiocarbon carbon_14,a radioactive isotope of carbon
+64538,radiocarbon_dating carbon_dating carbon-14_dating,a chemical analysis used to determine the age of organic materials based on their content of the radioisotope carbon 14; believed to be reliable up to 40,000 years
+64539,radiochemistry nuclear_chemistry,the chemistry of radioactive substances
+64540,radiochlorine,a radioactive isotope of chlorine
+64541,radiogram,a message transmitted by wireless telegraphy
+64542,radiogram radiograph shadowgraph skiagraph skiagram,a photographic image produced on a radiosensitive surface by radiation other than visible light (especially by X-rays or gamma rays)
+64543,radiographer,a person who makes radiographs
+64544,radiography,photography that uses other kinds of radiation than visible light
+64545,radiography skiagraphy,the process of making a radiograph; producing an image on a radiosensitive surface by radiation other than visible light
+64546,radioimmunoassay,immunoassay of a substance that has been radioactively labeled
+64547,radioisotope,a radioactive isotope of an element; produced either naturally or artificially
+64548,radiolarian,protozoa with amoeba-like bodies and radiating filamentous pseudopods
+64549,radiologic_technologist,a scientist trained in radiological technology
+64550,radiologist radiotherapist,a medical specialist who uses radioactive substances and X-rays in the treatment of disease
+64551,radiology,the branch of medical science dealing with the medical use of X-rays or other penetrating radiation
+64552,radiolysis,molecular disintegration resulting from radiation
+64553,radiometer,meter to detect and measure radiant energy (electromagnetic or acoustic)
+64554,radiomicrometer,radiometer that is extremely sensitive
+64555,radiopacity radio-opacity,opacity to X-rays or other radiation
+64556,radiopaque_dye,dye that does not allow the passage of X rays or other radiation; used to outline certain organs during X-ray examination
+64557,radiopharmaceutical,pharmaceutical consisting of a radioactive compound used in radiation therapy
+64558,radiophotograph radiophoto,a photograph transmitted by radio waves
+64559,radiophotography,transmission of photographs by radio waves
+64560,radioprotection,protection against harmful effects of radiation
+64561,radioscopy radiology,(radiology) examination of the inner structure of opaque objects using X rays or other penetrating radiation
+64562,radiotelegraph radiotelegraphy wireless_telegraph wireless_telegraphy,the use of radio to send telegraphic messages (usually by Morse code)
+64563,radiotelegraph radiotelegraphy wireless_telegraphy,telegraphy that uses transmission by radio rather than by wire
+64564,radiotelephone radiophone wireless_telephone,a telephone that communicates by radio waves rather than along cables
+64565,radiotelephone radiotelephony wireless_telephone,telephony that uses transmission by radio rather than by wire
+64566,radiotherapy radiation_therapy radiation actinotherapy irradiation,(medicine) the treatment of disease (especially cancer) by exposure to a radioactive substance
+64567,radiotherapy_equipment,equipment used to treat diseases with x-rays or radioactivity
+64568,radish,pungent edible root of any of various cultivated radish plants
+64569,radish,pungent fleshy edible root
+64570,radish Raphanus_sativus,Eurasian plant widely cultivated for its edible pungent root usually eaten raw
+64571,radish daikon Japanese_radish Raphanus_sativus_longipinnatus,radish of Japan with a long hard durable root eaten raw or cooked
+64572,radish_plant radish,a cruciferous plant of the genus Raphanus having a pungent edible root
+64573,radium Ra atomic_number_88,an intensely radioactive metallic element that occurs in minute amounts in uranium ores
+64574,radium_therapy Curietherapy,the use of radium in radiation therapy
+64575,radius,a straight line from the center to the perimeter of a circle (or from the center to the surface of a sphere)
+64576,radius,a circular region whose area is indicated by the length of its radius; "they located it within a radius of 2 miles"
+64577,radius,the outer and slightly shorter of the two bones of the human forearm
+64578,radius r,the length of a line segment between the center and circumference of a circle or sphere
+64579,radius_of_curvature,the radius of the circle of curvature; the absolute value of the reciprocal of the curvature of a curve at a given point
+64580,radius_vector,a line connecting a satellite to the center of the body around which it is rotating
+64581,radius_vector,a line connecting a point in space to the origin of a polar coordinate system
+64582,radome radar_dome,a housing for a radar antenna; transparent to radio waves
+64583,radon Rn atomic_number_86,a radioactive gaseous element formed by the disintegration of radium; the heaviest of the inert gasses; occurs naturally (especially in areas over granite) and is considered a hazard to health
+64584,raffia,fiber of a raffia palm used as light cordage and in making hats and baskets
+64585,raffia raphia,leaf fibers of the raffia palm tree; used to make baskets and mats etc.
+64586,raffia_palm Raffia_farinifera Raffia_ruffia,a large feather palm of Africa and Madagascar having very long pinnatisect fronds yielding a strong commercially important fiber from its leafstalks
+64587,raffinose,a trisaccharide that occurs in sugar beets and cotton seeds and certain cereals
+64588,raffle,a lottery in which the prizes are goods rather than money
+64589,raft,a flat float (usually made of logs or planks) that can be used for transport or as a platform for swimmers
+64590,raft_foundation raft mat,a foundation (usually on soft ground) consisting of an extended layer of reinforced concrete
+64591,rafter balk baulk,one of several parallel sloping beams that support a roof
+64592,raftsman raftman rafter,someone who travels by raft
+64593,rag,a boisterous practical joke (especially by college students)
+64594,rag rag_week,a week at British universities during which side-shows and processions of floats are organized to raise money for charities
+64595,rag shred tag tag_end tatter,a small piece of cloth or paper
+64596,rag_day,a day on which university students hold a rag
+64597,rag_doll,a cloth doll that is stuffed and (usually) painted
+64598,rag_paper,paper made partly or wholly from rags
+64599,ragamuffin tatterdemalion,a dirty shabbily clothed urchin
+64600,ragbag,a bag in which rags are kept
+64601,rage,a state of extreme anger; "she fell into a rage and refused to answer"
+64602,rage,violent state of the elements; "the sea hurled itself in thundering rage against the rocks"
+64603,rage passion,something that is desired intensely; "his rage for fame destroyed him"
+64604,ragged_orchid ragged_orchis ragged-fringed_orchid green_fringed_orchis Habenaria_lacera,fringed orchid of the eastern United States having a greenish flower with the lip deeply lacerated
+64605,ragged_robin cuckoo_flower Lychnis_flos-cuculi Lychins_floscuculi,common perennial native to Europe and western Asia having usually pink flowers with ragged petals
+64606,raggedness,shabbiness by virtue of being in rags
+64607,raglan,a garment (coat or sweater) that has raglan sleeves
+64608,raglan_sleeve,a sleeve that extends in one piece to the neckline of a coat or sweater with seams from the armhole to the neck
+64609,ragout,well-seasoned stew of meat and vegetables
+64610,ragpicker,an unskilled person who picks up rags from trash cans and public dumps as a means of livelihood
+64611,ragsorter,a worker who sorts rags and old clothing for new uses (as in papermaking)
+64612,ragtime rag,music with a syncopated melody (usually for the piano)
+64613,ragweed ambrosia bitterweed,any of numerous chiefly North American weedy plants constituting the genus Ambrosia that produce highly allergenic pollen responsible for much hay fever and asthma
+64614,ragweed_pollen,pollen of the ragweed plant is a common allergen
+64615,ragwort tansy_ragwort ragweed benweed Senecio_jacobaea,widespread European weed having yellow daisylike flowers; sometimes an obnoxious weed and toxic to cattle if consumed in quantity
+64616,raid,an attempt by speculators to defraud investors
+64617,raider,a corporate investor who intends to take over a company by buying a controlling interest in its stock and installing new management
+64618,rail,short for railway; "he traveled by rail"; "he was concerned with rail safety"
+64619,rail,a horizontal bar (usually of wood or metal)
+64620,rail,any of numerous widely distributed small wading birds of the family Rallidae having short wings and very long toes for running on soft mud
+64621,rail-splitter splitter,a laborer who splits logs to build split-rail fences
+64622,rail_fence split-rail_fence,a fence (usually made of split logs laid across each other at an angle)
+64623,rail_technology railroading,the activity of designing and constructing and operating railroads
+64624,railbird,a fan of racing who watches races from the outer rail of the track
+64625,railhead,the end of the completed track on an unfinished railway
+64626,railhead,a railroad depot in a theater of operations where military supplies are unloaded for distribution
+64627,railing,material for making rails or rails collectively
+64628,railing rail,a barrier consisting of a horizontal bar and supports
+64629,railroad_bed,a bed on which railroad track is laid
+64630,railroad_flat,an apartment whose rooms are all in a line with doors between them
+64631,railroad_ticket train_ticket,a ticket good for a ride on a railroad train
+64632,railroad_track railroad railway,a line of track providing a runway for wheels; "he walked along the railroad track"
+64633,railroad_tunnel,a tunnel through which the railroad track runs
+64634,railroad_vine beach_morning_glory Ipomoea_pes-caprae,a prostrate perennial of coastal sand dunes Florida to Texas
+64635,railway railroad railroad_line railway_line railway_system,line that is the commercial organization responsible for operating a system of transportation for trains that pull passengers or freight
+64636,railway_junction,a junction where two or more railway lines meet or cross
+64637,railway_station railroad_station railroad_terminal train_station train_depot,terminal where trains load or unload passengers or goods
+64638,rain pelting,anything happening rapidly or in quick successive; "a rain of bullets"; "a pelting of insults"
+64639,rain rainfall,water falling in drops from vapor condensed in the atmosphere
+64640,rain rainwater,drops of fresh water that fall as precipitation from clouds
+64641,rain-wash,the washing away of soil or other loose material by rain
+64642,rain_barrel,a barrel used as a cistern to hold rainwater
+64643,rain_check,a promise that an unaccepted offer will be renewed in the future
+64644,rain_check,a ticket stub entitling the holder to admission to a future event if the scheduled event was cancelled due to rain
+64645,rain_dance,a ritual dance intended to bring rain
+64646,rain_date,an alternative date set for some outdoor event in case it rains on the appointed date; "the rain date for the picnic will be the following Sunday"
+64647,rain_forest rainforest,a forest with heavy annual rainfall
+64648,rain_gauge rain_gage pluviometer udometer,gauge consisting of an instrument to measure the quantity of precipitation
+64649,rain_shadow,an area that has little precipitation because some barrier causes the winds to lose their moisture before reaching it
+64650,rain_stick,a percussion instrument that is made from a dried cactus branch that is hollowed out and filled with small pebbles and capped at both ends; makes the sound of falling rain when tilted; origin was in Chile where tribesmen used it in ceremonies to bring rain
+64651,rain_tree saman monkeypod monkey_pod zaman zamang Albizia_saman,large ornamental tropical American tree with bipinnate leaves and globose clusters of flowers with crimson stamens and seed pods that are eaten by cattle
+64652,rainbow,an arc of colored light in the sky caused by refraction of the sun's rays by rain
+64653,rainbow,an illusory hope; "chasing rainbows"
+64654,rainbow_cactus,a stout cylindrical cactus of the southwest United States and adjacent Mexico
+64655,rainbow_lorikeet Trichoglossus_moluccanus,a kind of lorikeet
+64656,rainbow_runner Elagatis_bipinnulata,streamlined cigar-shaped jack; good game fish
+64657,rainbow_seaperch rainbow_perch Hipsurus_caryi,Pacific coast fish
+64658,rainbow_shower Cassia_javonica,deciduous ornamental hybrid of southeastern Asia and Hawaii having racemes of flowers ranging in color from cream-colored to orange and red
+64659,rainbow_smelt Osmerus_mordax,important marine and landlocked food fish of eastern North America and Alaska
+64660,rainbow_trout,flesh of Pacific trout that migrate from salt to fresh water
+64661,rainbow_trout Salmo_gairdneri,found in Pacific coastal waters and streams from lower California to Alaska
+64662,raincoat waterproof,a water-resistant coat
+64663,raindrop,a drop of rain
+64664,rainmaker,executive who is very successful in bringing in business to his company or firm
+64665,rainmaker,American Indian medicine man who attempt to make it rain
+64666,rainmaking,activity intended to produce rain
+64667,rainstorm,a storm with rain
+64668,rainy_day,a (future) time of financial need; "I am saving for a rainy day"
+64669,rainy_season,one of the two seasons in tropical climates
+64670,raise,increasing the size of a bet (as in poker); "I'll see your raise and double it"
+64671,raise rise wage_hike hike wage_increase salary_increase,the amount a salary is increased; "he got a 3% raise"; "he got a wage hike"
+64672,raised_doughnut,a doughnut made light with yeast rather than baking powder
+64673,raiser,a bridge partner who increases the partner's bid
+64674,raisin,dried grape
+64675,raisin-nut_cookie,cookie filled with a paste of raisins and nuts
+64676,raisin_bran,bran flakes with raisins
+64677,raisin_bread,bread containing raisins
+64678,raisin_cookie,cookie containing raisins
+64679,raisin_moth Cadra_figulilella,moth whose larvae attack dried fruits and cereal products
+64680,raising rearing nurture,the properties acquired as a consequence of the way you were treated as a child
+64681,raising_hell hell_raising,making trouble just for the fun of it
+64682,raison_d'etre,reason for being
+64683,raison_d'etre,the purpose that justifies a thing's existence
+64684,raita,an Indian side dish of yogurt and chopped cucumbers and spices
+64685,raj,British dominion over India (1757-1947)
+64686,raja rajah,a prince or king in India
+64687,rajanya,the second highest of the four varnas: the noble or warrior category
+64688,rake,a long-handled tool with a row of teeth at its head; used to move leaves or loosen soil
+64689,rake rakehell profligate rip blood roue,a dissolute man in fashionable society
+64690,rake-off vigorish,a percentage (of winnings or loot or profit) taken by an operator or gangster
+64691,rake_handle,the handle of a rake
+64692,rakishness,the quality of a rake
+64693,rally,a marked recovery of strength or spirits during an illness
+64694,rally,an automobile race run over public roads
+64695,rally exchange,(sports) an unbroken sequence of several successive strokes; "after a short rally Connors won the point"
+64696,rally mass_meeting,a large gathering of people intended to arouse enthusiasm
+64697,rally rallying,the feat of mustering strength for a renewed effort; "he singled to start a rally in the 9th inning"; "he feared the rallying of their troops for a counterattack"
+64698,rallying,the act of mobilizing for a common purpose; "the bell was a signal for the rallying of the whole neighborhood"
+64699,rallying_point,a point or principle on which scattered or opposing groups can come together
+64700,ram,a tool for driving or forcing something by impact
+64701,ram tup,uncastrated adult male sheep; "a British term is `tup'"
+64702,ram's-head ram's-head_lady's_slipper Cypripedium_arietinum,orchid of northern North America having a brownish-green flower and red-and-white lip suggestive of a ram's head
+64703,ramble meander,an aimless amble on a winding course
+64704,rambler,a person who takes long walks in the country
+64705,rambler,a person whose speech or writing is not well organized
+64706,rambutan rambotan,pleasantly acid bright red oval Malayan fruit covered with soft spines
+64707,rambutan rambotan rambutan_tree Nephelium_lappaceum,Malayan tree bearing spiny red fruit
+64708,ramekin ramequin,a cheese dish made with egg and bread crumbs that is baked and served in individual fireproof dishes
+64709,ramekin ramequin,a small fireproof dish used for baking and serving individual portions
+64710,ramie ramee Chinese_silk_plant China_grass Boehmeria_nivea,tall perennial herb of tropical Asia with dark green leaves; cultivated for the fiber from its woody stems that resembles flax
+64711,ramification,an arrangement of branching parts
+64712,ramipril Altace,an ACE inhibitor (trade name Altace) used to treat high blood pressure or in some patients who have had a heart attack
+64713,ramjet ramjet_engine atherodyde athodyd flying_drainpipe,a simple type of jet engine; must be launched at high speed
+64714,rammer,a tool for driving something with force
+64715,ramp,a movable staircase that passengers use to board or leave an aircraft
+64716,ramp incline,an inclined surface connecting two levels
+64717,ramp wild_leek Allium_tricoccum,North American perennial having a slender bulb and whitish flowers
+64718,rampage violent_disorder,violently angry and destructive behavior
+64719,rampant_arch,an arch whose support is higher on one side than on the other
+64720,rampart bulwark wall,an embankment built around a space for defensive purposes; "they stormed the ramparts of the city"; "they blew the trumpet and the walls came tumbling down"
+64721,rampion rampion_bellflower Campanula_rapunculus,bellflower of Europe and Asia and North Africa having bluish flowers and an edible tuberous root used with the leaves in salad
+64722,ramrod,a harshly demanding overseer
+64723,ramrod,a rod used to clean the barrel of a firearm
+64724,ramrod,a rod used to ram the charge into a muzzle-loading firearm
+64725,ramus,the posterior part of the mandible that is more or less vertical
+64726,ranch spread cattle_ranch cattle_farm,farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)
+64727,ranch_hand,a hired hand on a ranch
+64728,ranch_house,a one story house with a low pitched roof
+64729,rancher,a person who owns or operates a ranch
+64730,ranching,farming for the raising of livestock (particularly cattle)
+64731,rancidity,the state of being rancid; having a rancid scent or flavor (as of old cooking oil)
+64732,rancidness,the property of being rancid
+64733,rand,the basic unit of money in South Africa; equal to 100 cents
+64734,random-access_memory random_access_memory random_memory RAM read/write_memory,the most common computer memory which can be used by programs to perform necessary tasks while the computer is on; an integrated circuit memory chip allows information to be stored or accessed in any order and all storage locations are equally accessible
+64735,random_number_generator,a routine designed to yield a random number
+64736,random_sample,a sample in which every element in the population has an equal chance of being selected
+64737,random_sample,a sample grabbed at random
+64738,random_sampling,the selection of a random sample; each element of the population has an equal chance of being selected
+64739,random_variable variate variant stochastic_variable chance_variable,a variable quantity that is random
+64740,random_walk,a stochastic process consisting of a sequence of changes each of whose characteristics (as magnitude or direction) is determined by chance
+64741,randomization randomisation,a deliberately haphazard arrangement of observations so as to simulate chance
+64742,randomness entropy S,(thermodynamics) a thermodynamic quantity representing the amount of energy in a system that is no longer available for doing mechanical work; "entropy increases as matter and energy in the universe degrade to an ultimate state of inert uniformity"
+64743,randomness haphazardness stochasticity noise,the quality of lacking any predictable order or plan
+64744,range,a large tract of grassy open land on which livestock can graze; "they used to drive the cattle across the open range every spring"; "he dreamed of a home on the range"
+64745,range,a variety of different things or activities; "he answered a range of questions"; "he was impressed by the range and diversity of the collection"
+64746,range,a place for shooting (firing or driving) projectiles of various kinds; "the army maintains a missile range in the desert"; "any good golf club will have a range where you can practice"
+64747,range mountain_range range_of_mountains chain mountain_chain chain_of_mountains,a series of hills or mountains; "the valley was between two ranges of hills"; "the plains lay just beyond the mountain range"
+64748,range reach,the limits within which something can be effective; "range of motion"; "he was beyond the reach of their fire"
+64749,range_animal,any animal that lives and grazes in the grassy open land of western North America (especially horses, cattle, sheep)
+64750,range_hood,exhaust hood over a kitchen range
+64751,range_pole ranging_pole flagpole,surveying instrument consisting of a straight rod painted in bands of alternate red and white each one foot wide; used for sightings by surveyors
+64752,rangefinder range_finder,a measuring instrument (acoustic or optical or electronic) for finding the distance of an object
+64753,rangeland,land suitable for grazing livestock
+64754,rangpur rangpur_lime lemanderin Citrus_limonia,hybrid between mandarin orange and lemon having very acid fruit with orange peel
+64755,rani ranee,(the feminine of raja) a Hindu princess or the wife of a raja
+64756,ranitidine Zantac,a histamine blocker and antacid (trade name Zantac) used to treat peptic ulcers and gastritis and esophageal reflux
+64757,rank,relative status; "his salary was determined by his rank and seniority"
+64758,rank,a row or line of people (especially soldiers or police) standing abreast of one another; "the entrance was guarded by ranks of policemen"
+64759,rank-order_correlation_coefficient rank-order_correlation rank-difference_correlation_coefficient rank-difference_correlation,the most commonly used method of computing a correlation coefficient between the ranks of scores on two variables
+64760,rank_and_file,people who constitute the main body of any group
+64761,rank_and_file rank,the ordinary members of an organization (such as the enlisted soldiers of an army); "the strike was supported by the union rank and file"; "he rose from the ranks to become a colonel"
+64762,rank_order,an arrangement according to rank
+64763,ranker,a commissioned officer who has been promoted from enlisted status
+64764,ranker,an enlisted soldier who serves in the ranks of the armed forces
+64765,ranking,position on a scale in relation to others in status or rank or achievement
+64766,ransacking rummage,a thorough search for something (often causing disorder or confusion); "he gave the attic a good rummage but couldn't find his skis"
+64767,ransom,payment for the release of someone
+64768,ransom,the act of freeing from captivity or punishment
+64769,ransom ransom_money,money demanded for the return of a captured person
+64770,ranter raver,someone who rants and raves; speaks in a violent or loud manner
+64771,ranula,a cyst on the underside of the tongue
+64772,rap,voluble conversation
+64773,rap rap_music hip-hop,genre of African-American music of the 1980s and 1990s in which rhyming lyrics are chanted to a musical accompaniment; several forms of rap have emerged
+64774,rap strike tap,a gentle blow
+64775,rap_group,a gathering of people holding a rap session
+64776,rap_session,conversation in a situation where feelings can be expressed and criticized or supported
+64777,rape colza Brassica_napus,Eurasian plant cultivated for its seed and as a forage crop
+64778,rape rapine,the act of despoiling a country in warfare
+64779,rape violation assault ravishment,the crime of forcing a person to submit to sexual intercourse against his or her will
+64780,rape_conviction,conviction for rape
+64781,rape_oil rapeseed_oil colza_oil,edible light yellow to brown oil from rapeseed used also as a lubricant or illuminant
+64782,rape_suspect,someone who is suspected of committing rape
+64783,raper rapist,someone who forces another to have sexual intercourse
+64784,rapeseed,seed of rape plants; source of an edible oil
+64785,raphe rhaphe,a ridge that forms a seam between two parts
+64786,rapid,a part of a river where the current is very fast
+64787,rapid_climb rapid_growth zoom,a rapid rise
+64788,rapid_transit mass_rapid_transit,an urban public transit system using underground or elevated trains
+64789,rapier tuck,a straight sword with a narrow blade and two edges
+64790,rappee,strong snuff made from dark coarse tobacco
+64791,rappel abseil,(mountaineering) a descent of a vertical cliff or wall made by using a doubled rope that is fixed to a higher point and wrapped around the body
+64792,rapper,someone who performs rap music
+64793,rapport resonance,a relationship of mutual understanding or trust and agreement between people
+64794,rapporteur,a recorder appointed by a committee to prepare reports of the meetings
+64795,raptus_hemorrhagicus,seizure caused by a sudden profuse hemorrhage
+64796,rare_bird rara_avis,a rare or unique person
+64797,rare_earth rare-earth_element lanthanoid lanthanide lanthanon,any element of the lanthanide series (atomic numbers 57 through 71)
+64798,raree-show,a street show
+64799,rarefaction,a decrease in the density of something; "a sound wave causes periodic rarefactions in its medium"
+64800,rariora,(plural) rare collector's items
+64801,rarity rareness infrequency,noteworthy scarcity
+64802,rarity tenuity low_density,a rarified quality; "the tenuity of the upper atmosphere"
+64803,rascality shiftiness slipperiness trickiness,the quality of being a slippery rascal
+64804,rash blizzard,a series of unexpected and unpleasant occurrences; "a rash of bank robberies"; "a blizzard of lawsuits"
+64805,rash roseola efflorescence skin_rash,any red eruption of the skin
+64806,rasp rasping,uttering in an irritated tone
+64807,rasp wood_file,a coarse file with sharp pointed projections
+64808,raspberry,red or black edible aggregate berries usually smaller than the related blackberries
+64809,raspberry raspberry_bush,woody brambles bearing usually red but sometimes black or yellow fruits that separate from the receptacle when ripe and are rounder and smaller than blackberries
+64810,raster,the rectangular formation of parallel scanning lines that guide the electron beam on a television screen or a computer monitor
+64811,rat,a pad (usually made of hair) worn as part of a woman's coiffure
+64812,rat,any of various long-tailed rodents similar to but larger than a mouse
+64813,rat-a-tat-tat rat-a-tat rat-tat,a series of short sharp taps (as made by strokes on a drum or knocks on a door)
+64814,rat-catcher disinfestation_officer,a workman employed to destroy or drive away vermin
+64815,rat-tail_file,a thin round file shaped like the tail of a rat
+64816,rat_cheese store_cheese,informal names for American cheddar
+64817,rat_kangaroo kangaroo_rat,any of several rabbit-sized ratlike Australian kangaroos
+64818,rat_race,an exhausting routine that leaves no time for relaxation
+64819,rat_snake,any of various nonvenomous rodent-eating snakes of North America and Asia
+64820,rat_terrier ratter,any of several breeds of terrier developed to catch rats
+64821,ratability,the quality of being capable of being rated or estimated
+64822,ratability rateability,the state of being liable to assessment or taxation
+64823,ratables rateables,property that provides tax income for local governments
+64824,ratafia ratafee,sweet liqueur made from wine and brandy flavored with plum or peach or apricot kernels and bitter almonds
+64825,ratafia ratafia_biscuit,macaroon flavored with ratafia liqueur
+64826,ratatouille,a vegetable stew; usually made with tomatoes, eggplant, zucchini, peppers, onion, and seasonings
+64827,ratbite_fever,either of two infectious diseases transmitted to humans by the bite of a rat or mouse; characterized by fever and headache and nausea and skin eruptions
+64828,ratbite_fever_bacterium Spirillum_minus,a bacterium causing ratbite fever
+64829,ratchet rachet ratch,mechanical device consisting of a toothed wheel or rack engaged with a pawl that permits it to move in only one direction
+64830,ratchet_wheel,toothed wheel held in place by a pawl or detent and turned by a lever
+64831,rate,a magnitude or frequency relative to a time unit; "they traveled at a rate of 55 miles per hour"; "the rate of change was faster than expected"
+64832,rate,a quantity or amount or measure considered as a proportion of another quantity or amount or measure; "the literacy rate"; "the retention rate"; "the dropout rate"
+64833,rate charge_per_unit,amount of a charge or payment relative to some basis; "a 10-minute phone call at that rate would cost $5"
+64834,rate_of_depreciation depreciation_rate,the rate at which the value of property is reduced; used to calculate tax deduction
+64835,rate_of_exchange exchange_rate,the charge for exchanging currency of one country for currency of another
+64836,rate_of_return,the amount returned per unit of time expressed as a percentage of the cost
+64837,ratel honey_badger Mellivora_capensis,nocturnal badger-like carnivore of wooded regions of Africa and southern Asia
+64838,ratepayer,a person who pays local rates (especially a householder)
+64839,rates,a local tax on property (usually used in the plural)
+64840,rathole,a hole (as in the wall of a building) made by rats
+64841,rathole,a small dirty uncomfortable room
+64842,rathskeller,a tavern below street level featuring beer; originally a German restaurant in the basement of city hall
+64843,ratification confirmation,making something valid by formally ratifying or confirming it; "the ratification of the treaty"; "confirmation of the appointment"
+64844,rating,standing or position on a scale
+64845,rating_system scoring_system,a system of classifying according to quality or merit or amount
+64846,ratio,the relative magnitudes of two quantities (usually expressed as a quotient)
+64847,ratiocination,logical and methodical reasoning
+64848,ration,a fixed portion that is allotted (especially in times of scarcity)
+64849,ration,the food allowance for one day (especially for service personnel); "the rations should be nutritionally balanced"
+64850,ration_card,a card certifying the bearer's right to purchase rationed goods
+64851,rational_motive,a motive that can be defended by reasoning or logical argument
+64852,rational_number rational,an integer or a fraction
+64853,rationale principle,(law) an explanation of the fundamental reasons (especially an explanation of the working of some device in terms of laws of nature); "the rationale for capital punishment"; "the principles of internal-combustion engines"
+64854,rationalism,the theological doctrine that human reason rather than divine revelation establishes religious truth
+64855,rationalism,(philosophy) the doctrine that knowledge is acquired by reason without resort to experience
+64856,rationalism freethinking,the doctrine that reason is the right basis for regulating conduct
+64857,rationality rationalness,the quality of being consistent with or based on logic
+64858,rationality reason reasonableness,the state of having good sense and sound judgment; "his rationality may have been impaired"; "he had to rely less on reason than on rousing their emotions"
+64859,rationalization rationalisation,(psychiatry) a defense mechanism by which your true motivation is concealed by explaining your actions and feelings in a way that is not threatening
+64860,rationalization rationalisation,the cognitive process of making something seem consistent with or based on reason
+64861,rationalization rationalisation,(mathematics) the simplification of an expression or equation by eliminating radicals without changing the value of the expression or the roots of the equation
+64862,rationalization rationalisation,the organization of a business according to scientific principles of management in order to increase efficiency
+64863,rationing,the act of rationing; "during the war the government imposed rationing of food and gasoline"
+64864,ratite ratite_bird flightless_bird,flightless birds having flat breastbones lacking a keel for attachment of flight muscles: ostriches; cassowaries; emus; moas; rheas; kiwis; elephant birds
+64865,ratline ratlin,(nautical) a small horizontal rope between the shrouds of a sailing ship; they form a ladder for climbing aloft
+64866,rattail_cactus rat's-tail_cactus Aporocactus_flagelliformis,commonly cultivated tropical American cactus having slender creeping stems and very large showy crimson flowers that bloom for several days
+64867,rattan ratan,a switch made from the stems of the rattan palms
+64868,rattan rattan_cane,the stem of various climbing palms of the genus Calamus and related genera used to make wickerwork and furniture and canes
+64869,rattan rattan_palm Calamus_rotang,climbing palm of Sri Lanka and southern India remarkable for the great length of the stems which are used for malacca canes
+64870,rattle,a baby's toy that makes percussive noises when shaken
+64871,rattle,loosely connected horny sections at the end of a rattlesnake's tail
+64872,rattle rattling rale,a rapid series of short loud sounds (as might be heard with a stethoscope in some types of respiratory disorders); "the death rattle"
+64873,rattlesnake rattler,pit viper with horny segments at the end of the tail that rattle when shaken
+64874,rattlesnake_fern Botrychium_virginianum,American fern whose clustered sporangia resemble a snake's rattle
+64875,rattlesnake_master rattlesnake's_master button_snakeroot Eryngium_yuccifolium,coarse prickly perennial eryngo of United States thought to cure rattlesnake bite
+64876,rattlesnake_orchid,any of various orchids of the genus Pholidota having numerous white to brown flowers in spiraling racemes clothed in slightly inflated bracts and resembling a rattlesnake's tail
+64877,rattlesnake_plantain helleborine,any of several small temperate and tropical orchids having mottled or striped leaves and spikes of small yellowish-white flowers in a twisted raceme
+64878,rattlesnake_root,a plant of the genus Nabalus
+64879,rattlesnake_root Prenanthes_purpurea,herb of central and southern Europe having purple florets
+64880,rattlesnake_weed Hieracium_venosum,a hawkweed with a rosette of purple-veined basal leaves; Canada to northern Georgia and Kentucky
+64881,rattrap,a difficult entangling situation
+64882,rattrap,filthy run-down dilapidated housing
+64883,rattrap,a trap for catching rats
+64884,rauli_beech Nothofagus_procera,large Chilean timber tree yielding coarse lumber
+64885,rauwolfia,any of several alkaloids extracted from the shrub Rauwolfia serpentina
+64886,rauwolfia rauvolfia,any shrub or small tree of the genus Rauwolfia having leaves in whorls and cymose flowers; yield substances used medicinally especially as emetics or purgatives or antihypertensives
+64887,ravage depredation,(usually plural) a destructive action; "the ravages of time"; "the depredations of age and disease"
+64888,ravaging devastation,plundering with excessive damage and destruction
+64889,rave,a dance party that lasts all night and electronically synthesized music is played; "raves are very popular in Berlin"
+64890,rave,an extravagantly enthusiastic review; "he gave it a rave"
+64891,rave-up,a raucous gathering
+64892,ravehook,a hooked hand tool used to prepare the seams of a boat for oakum
+64893,raveling ravelling,a bit of fiber that has become separated from woven fabric
+64894,raven Corvus_corax,large black bird with a straight bill and long wedge-shaped tail
+64895,raver,a participant in a rave dancing party
+64896,ravigote ravigotte,veloute sauce seasoned with chopped chervil, chives, tarragon, shallots and capers
+64897,ravine,a deep narrow steep-sided valley (especially one formed by running water)
+64898,raving,declaiming wildly; "the raving of maniacs"
+64899,ravioli cappelletti,small circular or square cases of dough with savory fillings
+64900,raw altogether birthday_suit,informal terms for nakedness; "in the raw"; "in the altogether"; "in his birthday suit"
+64901,raw_beauty,beauty that is stark and powerfully impressive
+64902,raw_data,unanalyzed data; data not yet subjected to analysis
+64903,raw_deal,unfair treatment
+64904,raw_material staple,material suitable for manufacture or use or finishing
+64905,raw_meat,uncooked meat
+64906,raw_milk,unpasteurized milk
+64907,raw_recruit,an inexperienced and untrained recruit
+64908,raw_sienna,a yellowish-brown pigment made from untreated sienna
+64909,raw_talent,powerfully impressive talent
+64910,raw_umber,greenish brown pigment
+64911,raw_vegetable rabbit_food,an uncooked vegetable
+64912,raw_weather,unpleasantly cold and damp weather
+64913,raw_wood,wood that is not finished or painted
+64914,raw_wool,wool in its natural condition; not refined or processed
+64915,raw_wound,a wound that exposes subcutaneous tissue
+64916,rawhide,untanned hide especially of cattle; cut in strips it is used for whips and ropes
+64917,rawness,a chilly dampness; "the rawness of the midnight air"
+64918,ray,(mathematics) a straight line extending from a point
+64919,ray,a branch of an umbel or an umbelliform inflorescence
+64920,ray,any of the stiff bony spines in the fin of a fish
+64921,ray,cartilaginous fishes having horizontally flattened bodies and enlarged winglike pectoral fins with gills on the underside; most swim by moving the pectoral fins
+64922,ray_flower ray_floret,small flower with a flat strap-shaped corolla usually occupying the peripheral rings of a composite flower
+64923,rayon,a synthetic silklike fabric
+64924,razbliuto,the sentimental feeling you have about someone you once loved but no longer do
+64925,razing leveling tearing_down demolishing,complete destruction of a building
+64926,razing wrecking,the event of a structure being completely demolished and leveled
+64927,razor,edge tool used in shaving
+64928,razor_clam jackknife_clam knife-handle,marine clam having a long narrow curved thin shell
+64929,razor_edge,an edge that is as sharp as the cutting side of a razor
+64930,razor_fish razor-fish,any of several small wrasses with compressed sharp-edged heads of the West Indies and Mediterranean
+64931,razorback razorback_hog razorbacked_hog,a mongrel hog with a thin body and long legs and a ridged back; a wild or semi-wild descendant of improved breeds; found chiefly in the southeastern United States
+64932,razorbill razor-billed_auk Alca_torda,black-and-white northern Atlantic auk having a compressed sharp-edged bill
+64933,razorblade,a blade that has very sharp edge
+64934,razzle-dazzle razzle razzmatazz razmataz,any exciting and complex play intended to confuse (dazzle) the opponent
+64935,re ray,the syllable naming the second (supertonic) note of any major scale in solmization
+64936,re-creation,the act of creating again
+64937,re-echo,the echo of an echo
+64938,re-establishment,restoration to a previous state; "regular exercise resulted in the re-establishment of his endurance"
+64939,re-formation regeneration,forming again (especially with improvements or removal of defects); renewing and reconstituting
+64940,re-introduction,a proposal of something previously rejected; "they avoided a re-introduction of the old terminology"
+64941,reach reaching stretch,the act of physically reaching or thrusting out
+64942,reactance,opposition to the flow of electric current resulting from inductance and capacitance (rather than resistance)
+64943,reactant,a chemical substance that is present at the start of a chemical reaction
+64944,reaction,(mechanics) the equal and opposite force that is produced when any force is applied to a body; "every action has an equal and opposite reaction"
+64945,reaction,a response that reveals a person's feelings or attitude; "he was pleased by the audience's reaction to his performance"; "John feared his mother's reaction when she saw the broken lamp"
+64946,reaction,extreme conservatism in political or social matters; "the forces of reaction carried the election"
+64947,reaction,an idea evoked by some experience; "his reaction to the news was to start planning what to do"
+64948,reaction,doing something in opposition to another way of doing it that you don't like; "his style of painting was a reaction against cubism"
+64949,reaction response,a bodily process occurring due to the effect of some antecedent stimulus or agent; "a bad reaction to the medicine"; "his responses have slowed with age"
+64950,reaction-propulsion_engine reaction_engine,a jet or rocket engine based on a form of aerodynamic propulsion in which the vehicle emits a high-speed stream
+64951,reaction_formation,(psychiatry) a defense mechanism in which a person unconsciously develops attitudes and behavior that are the opposite of unacceptable repressed desires and impulses and serve to conceal them; "his strict morality is just a reaction formation to hide his sexual drive"
+64952,reaction_propulsion,propulsion that results from the ejection at high velocity of a mass of gas to which the vehicle reacts with an equal and opposite momentum
+64953,reaction_time response_time latency latent_period,the time that elapses between a stimulus and the response to it
+64954,reaction_turbine,a turbine with blades arranged to develop torque from gradual decrease of steam pressure from inlet to exhaust
+64955,reactionary ultraconservative extreme_right-winger,an extreme conservative; an opponent of progress or liberalism
+64956,reactionism,the political orientation of reactionaries
+64957,reactivity,ready susceptibility to chemical change
+64958,reactor,an electrical device used to introduce reactance into a circuit
+64959,read,something that is read; "the article was a very good read"
+64960,read-only_file,(computer science) a file that you can read but cannot change
+64961,read-only_memory ROM read-only_storage fixed_storage,(computer science) memory whose contents can be accessed and read but cannot be changed
+64962,read-only_memory_chip,a memory chip providing read-only memory
+64963,read/write_head head,(computer science) a tiny electromagnetic coil and metal pole used to write and read magnetic patterns on a disk
+64964,readability,the quality of written language that makes it easy to read and understand
+64965,reader,a person who can read; a literate person
+64966,reader,a person who enjoys reading
+64967,reader,one of a series of texts for students learning to read
+64968,readership,the audience reached by written communications (books or magazines or newspapers etc.)
+64969,readiness eagerness zeal forwardness,prompt willingness; "readiness to continue discussions"; "they showed no eagerness to spread the gospel"; "they disliked his zeal in demonstrating his superiority"; "he tried to explain his forwardness in battle"
+64970,readiness preparedness preparation,the state of having been made ready or prepared for use or action (especially military action); "putting them in readiness"; "their preparation was more than adequate"
+64971,reading,a particular interpretation or performance; "on that reading it was an insult"; "he was famous for his reading of Mozart"
+64972,reading,the cognitive process of understanding a written linguistic message; "his main reading was detective stories"; "suggestions for further reading"
+64973,reading meter_reading,the act of measuring with meters or similar instruments; "he has a job meter reading for the gas company"
+64974,reading meter_reading indication,a datum about some physical state that is presented to a user by a meter or similar instrument; "he could not believe the meter reading"; "the barometer gave clear indications of an approaching storm"
+64975,reading reading_material,written material intended to be read; "the teacher assigned new readings"; "he bought some reading material at the airport"
+64976,reading_assignment,the reading of a passage assigned by the teacher
+64977,reading_clinic,a clinic for people with reading disabilities
+64978,reading_lamp,a lamp that provides light for reading
+64979,reading_program,a program designed to teach literacy skills
+64980,reading_room,a room set aside for reading
+64981,reading_teacher,someone who teaches students to read
+64982,readjustment,the act of adjusting again (to changed circumstances)
+64983,readmission,the act of admitting someone again; "the surgery was performed on his readmission to the clinic"
+64984,readout read-out,the output of a computer in readable form
+64985,readout read-out,the information displayed or recorded on an electronic device
+64986,readout read-out,an electronic device the displays information in a visual form
+64987,ready,poised for action; "their guns were at the ready"
+64988,ready-made,a manufactured artifact (as a garment or piece of furniture) that is made in advance and available for purchase; "their apartment was furnished with ready-mades"
+64989,ready-mix,a commercial preparation containing most of the ingredients for a dish
+64990,ready-to-wear,ready-made clothing; "she couldn't find anything in ready-to-wear that she liked"
+64991,ready_cash cold_cash ready_money,money in the form of cash that is readily available; "his wife was always a good source of ready cash"; "he paid cold cash for the TV set"
+64992,reaffiliation,affiliation anew
+64993,reagent,a chemical agent for use in chemical reactions
+64994,reagin,an immunoglobulin E that is formed as an antibody against allergens (such as pollen); attaches to cell membranes causing the release of histamine and other substances responsible for the local inflammation characteristic of an allergy
+64995,real,the basic unit of money in Brazil; equal to 100 centavos
+64996,real,an old small silver Spanish coin
+64997,real-estate_business,the business of selling real estate
+64998,real-time_processing real-time_operation,data processing fast enough to keep up with an outside process
+64999,real_McCoy real_thing real_stuff,informal usage attributing authenticity
+65000,real_estate_broker real_estate_agent estate_agent land_agent house_agent,a person who is authorized to act as an agent for the sale of land; "in England they call a real estate agent a land agent"
+65001,real_estate_loan mortgage_loan,a loan on real estate that is usually secured by a mortgage
+65002,real_gross_national_product real_GNP,a version of the GNP that has been adjusted for the effects of inflation
+65003,real_matrix,a matrix whose elements are all real numbers
+65004,real_number real,any rational or irrational number
+65005,real_presence,(Christianity) the Christian doctrine that the body of Christ is actually present in the Eucharist
+65006,real_property real_estate realty immovable,property consisting of houses and land
+65007,real_storage,the main memory in a virtual memory system
+65008,real_time,the actual time that it takes a process to occur; "information is updated in real time"
+65009,real_time,(computer science) the time it takes for a process under computer control to occur
+65010,real_world real_life,the practical world as opposed to the academic world; "a good consultant must have a lot of experience in the real world"
+65011,realgar,a rare soft orange mineral consisting of arsenic sulphide; an important ore of arsenic
+65012,realism naive_realism,(philosophy) the philosophical doctrine that physical objects continue to exist when not perceived
+65013,realism pragmatism,the attribute of accepting the facts of life and favoring practicality and literal truth
+65014,realist,a person who accepts the world as it literally is and deals with it accordingly
+65015,realist,a painter who represents the world realistically and not in an idealized or romantic style
+65016,realist,a philosopher who believes that universals are real and exist independently of anyone thinking of them
+65017,reality,the state of the world as it really is rather than as you might want it to be; "businessmen have to face harsh realities"
+65018,reality,the quality possessed by something that is real
+65019,reality realness realism,the state of being actual or real; "the reality of his situation slowly dawned on him"
+65020,reality_check,an occasion on which one is reminded of the nature of things in the real world; "this program is intended as a reality check for CEOs"; "after all those elaborate productions, I felt in need of a reality check"
+65021,reality_principle,(psychoanalysis) the governing principle of the ego; the principle that as a child grows it becomes aware of the real environment and the need to accommodate to it
+65022,realization realisation,a musical composition that has been completed or enriched by someone other than the composer
+65023,realization realisation,a sale in order to obtain money (as a sale of stock or a sale of the estate of a bankrupt person) or the money so obtained
+65024,realization realisation,the completion or enrichment of a piece of music left sparsely notated by a composer
+65025,realization realisation actualization actualisation,making real or giving the appearance of reality
+65026,realization realisation fruition,something that is made real or concrete; "the victory was the realization of a whole year's work"
+65027,realization realisation recognition,coming to understand something clearly and distinctly; "a growing realization of the risk involved"; "a sudden recognition of the problem he faced"; "increasing recognition that diabetes frequently coexists with other chronic diseases"
+65028,reallocation,a share that has been allocated again
+65029,reallotment reapportionment reallocation,a new apportionment (especially a new apportionment of congressional seats in the United States on the basis of census results)
+65030,realpolitik practical_politics,politics based on practical rather than moral or ideological considerations
+65031,ream,a large quantity of written matter; "he wrote reams and reams"
+65032,ream,a quantity of paper; 480 or 500 sheets; one ream equals 20 quires
+65033,reamer,a drill that is used to shape or enlarge holes
+65034,reamer juicer juice_reamer,a squeezer with a conical ridged center that is used for squeezing juice from citrus fruit
+65035,reappearance,the event of something appearing again; "the reappearance of Halley's comet"
+65036,reappearance return,the act of someone appearing again; "his reappearance as Hamlet has been long awaited"
+65037,reappraisal revaluation review reassessment,a new appraisal or evaluation
+65038,rear,the back of a military formation or procession; "infantrymen were in the rear"
+65039,rear back,the side that goes last or is not normally seen; "he wrote the date on the back of the photograph"
+65040,rear backside back_end,the side of an object that is opposite its front; "his room was toward the rear of the hotel"
+65041,rear_admiral,an admiral junior to a vice admiral
+65042,rear_window,car window that allows vision out of the back of the car
+65043,rearguard,a detachment assigned to protect the rear of a (retreating) military body
+65044,rearmament,the act of arming again; "he opposed the rearmament of Japan after World War II"
+65045,rearrangement,changing an arrangement
+65046,rearview_mirror,car mirror that reflects the view out of the rear window
+65047,rearward,direction toward the rear; "his outfit marched to the rearward of the tank divisions"
+65048,reason,an explanation of the cause of some phenomenon; "the reason a steady state was never reached was that the back pressure built up too slowly"
+65049,reason,a fact that logically justifies some premise or conclusion; "there is reason to believe he is lying"
+65050,reason ground,a rational motive for a belief or action; "the reason that war was declared"; "the grounds for their declaration"
+65051,reason understanding intellect,the capacity for rational thought or inference or discrimination; "we are told that man is endowed with reason and capable of distinguishing good from evil"
+65052,reasonableness,goodness of reason and judgment; "the judiciary is built on the reasonableness of judges"
+65053,reasonableness,moderation in expectations; "without greater reasonableness by both parties we will never settle this matter!"
+65054,reasonableness moderateness modestness,the property of being moderate in price or expenditures; "the store is famous for the reasonableness of its prices"; "the modestness of the living standards here becomes obvious immediately"
+65055,reasonableness tenability tenableness,the quality of being plausible or acceptable to a reasonable person; "he questioned the tenability of my claims"
+65056,reasoner ratiocinator,someone who reasons logically
+65057,reasoning logical_thinking abstract_thought,thinking that is coherent and logical
+65058,reassembly refabrication,assembling again
+65059,reassertion reaffirmation,renewed affirmation
+65060,reassignment,assignment to a different duty
+65061,reassurance,the act of reassuring; restoring someone's confidence
+65062,rebate discount,a refund of some fraction of the amount paid
+65063,rebellion,refusal to accept some authority or code or convention; "each generation must have its own rebellion"; "his body was in rebellion against fatigue"
+65064,rebellion insurrection revolt rising uprising,organized opposition to authority; a conflict in which one faction tries to wrest control from another
+65065,rebirth Renaissance Renascence,the revival of learning and culture
+65066,rebound,a reaction to a crisis or setback or frustration; "he is still on the rebound from his wife's death"
+65067,rebound,the act of securing possession of the rebounding basketball after a missed shot
+65068,rebound_tenderness,pain felt when a hand pressing on the abdomen is suddenly released; a symptom of peritoneal inflammation
+65069,reboxetine Edronax,an antidepressant drug that blocks the reuptake of norepinephrine
+65070,rebozo,a long woolen or linen scarf covering the head and shoulders (also used as a sling for holding a baby); traditionally worn by Latin-American women
+65071,rebroadcast,a broadcast that repeated at a later time
+65072,rebuff slight,a deliberate discourteous act (usually as an expression of anger or disapproval)
+65073,rebuff snub repulse,an instance of driving away or warding off
+65074,rebuilding,building again
+65075,rebuke reproof reproval reprehension reprimand,an act or expression of criticism and censure; "he had to take the rebuke with a smile on his face"
+65076,reburying reburial,the act of burying again
+65077,rebus,a puzzle where you decode a message consisting of pictures representing syllables and words
+65078,rebuttal,the speech act of refuting by offering a contrary contention or argument
+65079,rebutter disprover refuter confuter,a debater who refutes or disproves by offering contrary evidence or argument
+65080,rebutter rebuttal,(law) a pleading by the defendant in reply to a plaintiff's surrejoinder
+65081,recalculation,the act of calculating again (usually to eliminate errors or to include additional data); "recalculation yielded a much larger value"
+65082,recall,a call to return; "the recall of our ambassador"
+65083,recall,a bugle call that signals troops to return
+65084,recall,the act of removing an official by petition
+65085,recall callback,a request by the manufacturer of a defective product to return the product (as for replacement or repair)
+65086,recall recollection reminiscence,the process of remembering (especially the process of recovering information by mental effort); "he has total recall of the episode"
+65087,recapitulation,(music) the section of a composition or movement (especially in sonata form) in which musical themes that were introduced earlier are repeated
+65088,recapitulation,(music) the repetition of themes introduced earlier (especially when one is composing the final part of a movement)
+65089,recapitulation recap review,a summary at the end that repeats the substance of a longer discussion
+65090,recapture,a legal seizure by the government of profits beyond a fixed amount
+65091,recapture retaking,the act of taking something back
+65092,recce recco reccy,reconnaissance (by shortening)
+65093,receding fadeout,a slow or gradual disappearance
+65094,receding recession,the act of becoming more distant
+65095,receipt,an acknowledgment (usually tangible) that payment has been made
+65096,receivables,money that you currently expect to receive from notes or accounts
+65097,receiver,the tennis player who receives the serve
+65098,receiver pass_receiver pass_catcher,a football player who catches (or is supposed to catch) a forward pass
+65099,receiver receiving_system,set that receives radio or tv signals
+65100,receiver-creditor_relation,the responsibility of receiver or trustee in bankruptcy to act in the best interests of the creditor
+65101,receivership,the state of property that is in the hands of a receiver; "the business is in receivership"
+65102,receivership,a court action that places property under the control of a receiver during litigation so that it can be preserved for the benefit of all
+65103,receivership,the office of a receiver
+65104,recency recentness,a time immediately before the present
+65105,recency recentness,the property of having happened or appeared not long ago
+65106,receptacle,enlarged tip of a stem that bears the floral parts
+65107,receptacle,an electrical (or electronic) fitting that is connected to a source of power and equipped to receive an insert
+65108,receptacle,a container that is used to put or keep things in
+65109,reception,a formal party of people; as after a wedding
+65110,reception,quality or fidelity of a received broadcast
+65111,reception,(American football) the act of catching a pass in football; "the tight end made a great reception on the 20 yard line"
+65112,reception receipt,the act of receiving
+65113,reception response,the manner in which something is greeted; "she did not expect the cold reception she received from her superiors"
+65114,reception_desk,a counter (as in a hotel) where guests are received
+65115,reception_line,a line of people (hosts and guests of honor) who welcome the guests at a reception party
+65116,reception_room,a room for receiving and entertaining visitors (as in a private house or hotel)
+65117,receptionist,a secretary whose main duty is to answer the telephone and receive visitors
+65118,receptiveness receptivity openness,willingness or readiness to receive (especially impressions or ideas); "he was testing the government's receptiveness to reform"; "this receptiveness is the key feature in oestral behavior, enabling natural mating to occur"; "their receptivity to the proposal"
+65119,receptor,a cellular structure that is postulated to exist in order to mediate between a chemical agent that acts on nervous tissue and the physiological response
+65120,recess niche,an enclosure that is set back or indented
+65121,recess recession niche corner,a small concavity
+65122,recession,the state of the economy declines; a widespread decline in the GDP and employment and trade lasting from six months to a year
+65123,recession ceding_back,the act of ceding back
+65124,recession recessional,the withdrawal of the clergy and choir from the chancel to the vestry at the end of a church service
+65125,recessional,a hymn that is sung at the end of a service as the clergy and choir withdraw
+65126,recessive_allele recessive,an allele that produces its characteristic phenotype only when its paired allele is identical
+65127,recessive_gene,gene that produces its characteristic phenotype only when its allele is identical; "the recessive gene for blue eyes"
+65128,rechauffe,warmed leftovers
+65129,recidivism,habitual relapse into crime
+65130,recidivist backslider reversionist,someone who lapses into previous undesirable patterns of behavior
+65131,recidivist repeater habitual_criminal,someone who is repeatedly arrested for criminal behavior (especially for the same criminal behavior)
+65132,recipe formula,directions for making something
+65133,recipient receiver,a person who receives something
+65134,recipient_role recipient,the semantic role of the animate entity that is passively involved in the happening denoted by the verb in the clause
+65135,reciprocal,something (a term or expression or concept) that has an inverse relation to something else; "risk is the reciprocal of safety"
+65136,reciprocal_cross reciprocal,hybridization involving a pair of crosses that reverse the sexes associated with each genotype
+65137,reciprocal_inhibition reciprocal-inhibition_therapy,a method of behavior therapy based on the inhibition of one response by the occurrence of another response that is mutually incompatible with it; a relaxation response might be conditioned to a stimulus that previously evoked anxiety
+65138,reciprocal_pronoun,a pronoun or pronominal phrase (as `each other') that expresses a mutual action or relationship between the individuals indicated in the plural subject; "The sentence `They cared for each other' contains a reciprocal pronoun"
+65139,reciprocality reciprocity,a relation of mutual dependence or action or influence
+65140,reciprocating_engine,an internal-combustion engine in which the crankshaft is turned by pistons moving up and down in cylinders
+65141,reciprocation,the act of making or doing something in return
+65142,reciprocation,alternating back-and-forth movement
+65143,reciprocity,mutual exchange of commercial or other privileges
+65144,recirculation,circulation again
+65145,recission rescission,(law) the act of rescinding; the cancellation of a contract and the return of the parties to the positions they would have had if the contract had not been made; "recission may be brought about by decree or by mutual consent"
+65146,recital,a detailed statement giving facts and figures; "his wife gave a recital of his infidelities"
+65147,recital,a detailed account or description of something; "he was forced to listen to a recital of his many shortcomings"
+65148,recital,performance of music or dance especially by soloists
+65149,recitalist,a musician who gives recitals
+65150,recitation,written matter that is recited from memory
+65151,recitation recital reading,a public instance of reciting or repeating (from memory) something prepared in advance; "the program included songs and recitations of well-loved poems"
+65152,recitative,a vocal passage of narrative text that a singer delivers with natural rhythms of speech
+65153,reciter,someone who recites from memory
+65154,recklessness foolhardiness rashness,the trait of giving little thought to danger
+65155,reckoner ready_reckoner,a handbook of tables used to facilitate computation
+65156,reckoning tally,a bill for an amount due
+65157,reclamation,the recovery of useful substances from waste products
+65158,reclamation reformation,rescuing from error and returning to a rightful course; "the reclamation of delinquent children"
+65159,reclamation renewal rehabilitation,the conversion of wasteland into land suitable for use of habitation or cultivation
+65160,reclassification,classifying something again (usually in a new category)
+65161,recliner reclining_chair lounger,an armchair whose back can be lowered and foot can be raised to allow the sitter to recline in it
+65162,reclining,the act of assuming or maintaining a reclining position
+65163,reclusiveness,a disposition to prefer seclusion or isolation
+65164,recoding,converting from one code to another
+65165,recognition,(biology) the ability of one molecule to attach to another molecule that has a complementary shape; "molecular recognition drives all of biology, for instance, hormone and receptor or antibody-antigen interactions or the organization of molecules into larger biologically active entities"
+65166,recognition,the explicit and formal acknowledgement of a government or of the national independence of a country; "territorial disputes were resolved in Guatemala's recognition of Belize in 1991"
+65167,recognition,an acceptance (as of a claim) as true and valid; "the recognition of the Rio Grande as a boundary between Mexico and the United States"
+65168,recognition,designation by the chair granting a person the right to speak in a deliberative body; "he was unable to make his motion because he couldn't get recognition by the chairman"
+65169,recognition acknowledgment acknowledgement,the state or quality of being recognized or acknowledged; "the partners were delighted with the recognition of their work"; "she seems to avoid much in the way of recognition or acknowledgement of feminist work prior to her own"
+65170,recognition credit,approval; "give her recognition for trying"; "he was given credit for his work"; "give her credit for trying"
+65171,recognition identification,the process of recognizing something or someone by remembering; "a politician whose recall of names was as remarkable as his recognition of faces"; "experimental psychologists measure the elapsed time from the onset of the stimulus to its recognition by the observer"
+65172,recognizance recognisance,(law) a security entered into before a court with a condition to perform some act required by law; on failure to perform that act a sum is forfeited
+65173,recoil kick,the backward jerk of a gun when it is fired
+65174,recoil repercussion rebound backlash,a movement back from an impact
+65175,recollection,something recalled to the mind
+65176,recombinant,a cell or organism in which genetic recombination has occurred
+65177,recombinant_deoxyribonucleic_acid recombinant_DNA,genetically engineered DNA made by recombining fragments of DNA from different organisms
+65178,recombinant_human_insulin Humulin,a form of insulin (trade name Humulin) made from recombinant DNA that is identical to human insulin; used to treat diabetics who are allergic to preparations made from beef or pork insulin
+65179,recombinant_protein,a protein derived from recombinant DNA
+65180,recombination,(physics) a combining of charges or transfer of electrons in a gas that results in the neutralization of ions; important for ions arising from the passage of high-energy particles
+65181,recombination,(genetics) a combining of genes or characters different from what they were in the parents
+65182,recommendation,something (as a course of action) that is recommended as advisable
+65183,recommendation passport,any quality or characteristic that gains a person a favorable reception or acceptance or admission; "her pleasant personality is already a recommendation"; "his wealth was not a passport into the exclusive circles of society"
+65184,recommendation testimonial good_word,something that recommends (or expresses commendation of) a person or thing as worthy or desirable
+65185,recompense,payment or reward (as for service rendered)
+65186,recompense compensation,the act of compensating for service or loss or injury
+65187,reconciliation balancing,getting two things to correspond; "the reconciliation of his checkbook and the bank statement"
+65188,reconciliation rapprochement,the reestablishing of cordial relations
+65189,reconditeness abstruseness abstrusity profoundness profundity,wisdom that is recondite and abstruse and profound; "the anthropologist was impressed by the reconditeness of the native proverbs"
+65190,reconnaissance reconnaissance_mission,the act of reconnoitring (especially to gain information about an enemy or potential enemy); "an exchange of fire occurred on a reconnaissance mission"
+65191,reconnaissance_by_fire,a method of reconnaissance in which fire is placed on a suspected enemy position in order to cause the enemy to disclose his presence by moving or returning fire
+65192,reconnaissance_in_force,an offensive operation designed to discover or test the enemy's strength (or to obtain other information)
+65193,reconnaissance_plane,a military airplane used to gain information about an enemy
+65194,reconnaissance_vehicle scout_car,fast armored military vehicle with four-wheel drive and open top
+65195,reconsideration,a consideration of a topic (as in a meeting) with a view to changing an earlier decision
+65196,reconsideration second_thought afterthought rethink,thinking again about a choice previously made; "he had second thoughts about his purchase"
+65197,reconstruction,an interpretation formed by piecing together bits of evidence
+65198,reconstruction,the activity of constructing something again
+65199,reconstruction reconstructive_memory,recall that is hypothesized to work by storing abstract features which are then used to construct the memory during recall
+65200,record,the number of wins versus losses and ties a team has had; "at 9-0 they have the best record in their league"
+65201,record,a document that can serve as legal evidence of a transaction; "they could find no record of the purchase"
+65202,record,anything (such as a document or a phonograph record or a photograph) providing permanent evidence of or information about past events; "the film provided a valuable record of stage techniques"
+65203,record,an extreme attainment; the best (or worst) performance ever attested (as in a sport); "he tied the Olympic record"; "coffee production last year broke all previous records"; "Chicago set the homicide record"
+65204,record record_book book,a compilation of the known facts regarding something or someone; "Al Smith used to say, `Let's look at the record'"; "his name is in all the record books"
+65205,record track_record,the sum of recognized accomplishments; "the lawyer has a good record"; "the track record shows that he will be a good president"
+65206,record-breaker record-holder,someone who breaks a record
+65207,record_changer auto-changer changer,an automatic mechanical device on a record player that causes new records to be played without manual intervention
+65208,record_company,a company that makes and sells musical recordings
+65209,record_jacket,the jacket for a phonograph record
+65210,record_player phonograph,machine in which rotating records cause a stylus to vibrate and the vibrations are amplified acoustically or electronically
+65211,record_sleeve record_cover,a sleeve for storing a phonograph record
+65212,recorder,a barrister or solicitor who serves as part-time judge in towns or boroughs
+65213,recorder recording_equipment recording_machine,equipment for making records
+65214,recorder_player,someone who plays the recorder
+65215,recording,a storage device on which information (sounds or images) have been recorded
+65216,recording,a signal that encodes something (e.g., picture or sound) that has been recorded
+65217,recording transcription,the act of making a record (especially an audio record); "she watched the recording from a sound-proof booth"
+65218,recording_studio,studio where tapes and records are recorded
+65219,recording_system,audio system for recoding sound
+65220,recount,an additional (usually a second) count; especially of the votes in a close election
+65221,recourse refuge resort,something or someone turned to for assistance or security; "his only recourse was the police"; "took refuge in lying"
+65222,recourse resort refuge,act of turning to for assistance; "have recourse to the courts"; "an appeal to his uncle was his last resort"
+65223,recovery,return to an original state; "the recovery of the forest after the fire was surprisingly rapid"
+65224,recovery retrieval,the act of regaining or saving something lost (or in danger of becoming lost)
+65225,recovery_room,a hospital room for the care of patients immediately after surgery
+65226,recreation_room rec_room,a room equipped for informal entertaining
+65227,recreational_drug,a narcotic drug that is used only occasionally and is claimed to be nonaddictive
+65228,recreational_facility recreation_facility,a public facility for recreation
+65229,recreational_vehicle RV R.V.,a motorized wheeled vehicle used for camping or other recreational activities
+65230,recrimination,mutual accusations
+65231,recrudescence,a return of something after a period of abatement; "a recrudescence of racism"; "a recrudescence of the symptoms"
+65232,recruit enlistee,any new member or supporter (as in the armed forces)
+65233,recruit military_recruit,a recently enlisted soldier
+65234,recruiter,someone who supplies members or employees
+65235,recruiter,an official who enlists personnel for military service
+65236,recruiting-sergeant,a sergeant deputized to enlist recruits
+65237,recruitment enlisting,the act of getting recruits; enlisting people for the army (or for a job or a cause etc.)
+65238,rectal_artery arteria_rectalis,one of the arteries supplying the rectal area
+65239,rectangle,a parallelogram with four right angles
+65240,rectangularity oblongness,the property of being shaped like a rectangle
+65241,rectification,(chemistry) the process of refinement or purification of a substance by distillation
+65242,rectification,the conversion of alternating current to direct current
+65243,rectification,determination of the length of a curve; finding a straight line equal in length to a given curve
+65244,rectifier,a person who corrects or sets right; "a rectifier of prejudices"
+65245,rectifier,electrical device that transforms alternating into direct current
+65246,recto,right-hand page
+65247,rectocele proctocele,protrusion or herniation of the rectum into the vagina; can occur if pelvic muscles are weakened by childbirth
+65248,rectorship rectorate,the office or station of a rector
+65249,rectum,the terminal section of the alimentary canal; from the sigmoid flexure to the anus
+65250,rectus,any of various straight muscles
+65251,recurrence return,happening again (especially at regular intervals); "the return of spring"
+65252,recursion,(mathematics) an expression such that each term is generated by repeating a particular mathematical operation
+65253,recursive_definition,(mathematics) a definition of a function from which values of the function can be calculated in a finite number of steps
+65254,recursive_routine,a routine that can call itself
+65255,recusancy,refusal to submit to established authority; originally the refusal of Roman Catholics to attend services of the Church of England
+65256,recusation,(law) an objection grounded on the judge's relationship to one of the parties
+65257,recusation recusal,(law) the disqualification of a judge or jury by reason of prejudice or conflict of interest; a judge can be recused by objections of either party or judges can disqualify themselves
+65258,recycling,used or abandoned materials for use in creating new products; "Every Monday, we put our recycling out on the curb for pick-up"
+65259,recycling,the act of processing used or abandoned materials for use in creating new products
+65260,recycling_bin,a bin for depositing things to be recycled
+65261,recycling_plant,a plant for reprocessing used or abandoned materials
+65262,red redness,red color or pigment; the chromatic color resembling the hue of blood
+65263,red-backed_mouse redback_vole,any of several voles of mountainous regions of Eurasia and America
+65264,red-backed_sandpiper dunlin Erolia_alpina,small common sandpiper that breeds in northern or Arctic regions and winters in southern United States or Mediterranean regions
+65265,red-bellied_snake Storeria_occipitamaculata,harmless woodland snake of southeastern United States
+65266,red-bellied_terrapin red-bellied_turtle redbelly Pseudemys_rubriventris,freshwater turtle of Chesapeake Bay tributaries having red markings on the lower shell
+65267,red-breasted_merganser Mergus_serrator,widely distributed merganser of America and Europe
+65268,red-breasted_nuthatch Sitta_canadensis,bluish-grey nuthatch with reddish breast; of northern coniferous forests
+65269,red-breasted_sapsucker Sphyrapicus_varius_ruber,western North American sapsucker
+65270,red-breasted_snipe Limnodromus_scolopaceus,a dowitcher with a red breast
+65271,red-eyed_vireo Vireo_olivaceous,of northern North America having red irises and an olive-grey body with white underparts
+65272,red-flowered_silky_oak Grevillea_banksii,tall shrub with cylindrical racemes of red flowers and pinnatifid leaves silky and grey beneath; eastern Australia
+65273,red-green_dichromacy red-green_color_blindness red-green_colour_blindness,confusion of red and green
+65274,red-hot_poker Kniphofia_praecox,widely cultivated hybrid poker plant
+65275,red-lead_putty,a cement resembling putty; made by mixing white and red lead in boiled linseed oil; used as luting on pipe fittings
+65276,red-legged_partridge Alectoris_ruffa,common western European partridge with red legs
+65277,red-letter_day,a memorably happy or noteworthy day (from the custom of marking holy days in red on church calendars)
+65278,red-light_district,a district with many brothels
+65279,red-necked_grebe Podiceps_grisegena,large stocky grebe of circumpolar regions having a dark neck
+65280,red-shafted_flicker Colaptes_caper_collaris,western United States bird with red undersurface to wings and tail
+65281,red-shouldered_hawk Buteo_lineatus,North American hawk with reddish brown shoulders
+65282,red-skinned_onion Allium_haematochiton,onion with white to deep red tunic; California
+65283,red-spotted_purple Limenitis_astyanax,similar to the banded purple but with red spots on underwing surfaces
+65284,red-winged_blackbird redwing Agelaius_phoeniceus,North American blackbird with scarlet patches on the wings
+65285,red_Clintonia Andrew's_clintonia Clintonia_andrewsiana,plant with nearly leafless stalk topped by a cluster of red or reddish lavender flowers; California to Oregon
+65286,red_admiral Vanessa_atalanta,of temperate Europe and Asia; having black wings with red and white markings
+65287,red_alder Oregon_alder Alnus_rubra,large tree of Pacific coast of North America having hard red wood much used for furniture
+65288,red_alert,the highest level of alert when an attack by the enemy seems imminent (or more generally a state of alert resulting from imminent danger)
+65289,red_algae,marine algae in which the chlorophyll is masked by a red or purplish pigment; source of agar and carrageenan
+65290,red_angel's_trumpet Brugmansia_sanguinea Datura_sanguinea,arborescent South American shrub having very large orange-red flowers
+65291,red_ash downy_ash Fraxinus_pennsylvanica,smallish American tree with velvety branchlets and lower leaf surfaces
+65292,red_baneberry redberry red-berry snakeberry Actaea_rubra,North American perennial herb with alternately compound leaves and racemes of small white flowers followed by bright red oval poisonous berries
+65293,red_bat Lasiurus_borealis,North American bat of a brick or rusty red color with hairs tipped with white
+65294,red_beech brown_oak booyong crow's_foot stave_wood silky_elm Heritiera_trifoliolata Terrietia_trifoliolata,large tree of Australasia
+65295,red_blood_cell RBC erythrocyte,a mature blood cell that contains hemoglobin to carry oxygen to the bodily tissues; a biconcave disc that has no nucleus
+65296,red_brass guinea_gold,brass with enough copper to give it a reddish tint; used for plumbing pipe and other brass hardware and in cheap jewelry
+65297,red_bryony wild_hop Bryonia_dioica,bryony having fleshy roots pale green flowers and very small red berries; Europe; North Africa; western Asia
+65298,red_buckeye,a shrub buckeye of southern United States
+65299,red_cabbage,cabbage plant with a compact head of reddish purple leaves
+65300,red_cabbage,compact head of purplish-red leaves
+65301,red_campion red_bird's_eye Silene_dioica Lychnis_dioica,biennial European catchfly having red or pink flowers; sometimes placed in genus Lychnis
+65302,red_carpet,a strip of red carpeting laid down for dignitaries to walk on
+65303,red_cedar,fragrant reddish wood of any of various red cedar trees
+65304,red_clay,clay whose redness results from iron oxide
+65305,red_clover purple_clover Trifolium_pratense,erect to decumbent short-lived perennial having red-purple to pink flowers; the most commonly grown forage clover
+65306,red_coral,corals of especially the Mediterranean having pink or red color used for ornaments and jewelry
+65307,red_currant,small red berries used primarily in jams and jellies
+65308,red_currant garden_current Ribes_rubrum,cultivated European current bearing small edible red berries
+65309,red_deer elk American_elk wapiti Cervus_elaphus,common deer of temperate Europe and Asia
+65310,red_drum channel_bass redfish Sciaenops_ocellatus,large edible fish found off coast of United States from Massachusetts to Mexico
+65311,red_dwarf red_dwarf_star,a small, old, relatively cool star; approximately 100 times the mass of Jupiter
+65312,red_eft Notophthalmus_viridescens,red terrestrial form of a common North American newt
+65313,red_fire,combustible material (usually salts of lithium or strontium) that burns bright red; used in flares and fireworks
+65314,red_flag,a flag that serves as a warning signal; "we didn't swim at the beach because the red flag was up"
+65315,red_flag,the emblem of socialist revolution
+65316,red_flag,something that irritates or demands immediate action; "doing that is like waving a red flag in front of a bull"
+65317,red_fox Celosia_argentea,weedy annual with spikes of silver-white flowers
+65318,red_fox Vulpes_fulva,New World fox; often considered the same species as the Old World fox
+65319,red_fox Vulpes_vulpes,the common Old World fox; having reddish-brown fur; commonly considered a single circumpolar species
+65320,red_giant red_giant_star,a large, old, luminous star; has a relatively low surface temperature and a diameter large relative to the sun
+65321,red_ginger Alpinia_purpurata,an ornamental ginger native to Pacific islands
+65322,red_goatfish Mullus_auratus,body bright scarlet with 2 yellow to reddish strips on side
+65323,red_goosefoot French_spinach Chenopodium_rubrum,common Eurasian weed; naturalized in United States
+65324,red_grouse moorfowl moorbird moor-bird moorgame Lagopus_scoticus,reddish-brown grouse of upland moors of Great Britain
+65325,red_gum marri Eucalyptus_calophylla,very large red gum tree
+65326,red_gum peppermint peppermint_gum Eucalyptus_amygdalina,red gum tree of Tasmania
+65327,red_haw Crataegus_pedicellata Crataegus_coccinea,American red-fruited hawthorn with dense corymbs of pink-red flowers
+65328,red_haw downy_haw Crataegus_mollis Crataegus_coccinea_mollis,American red-fruited hawthorn with stems and leaves densely covered with short woolly hairs
+65329,red_helleborine Cephalanthera_rubra,orchid of Mediterranean and Asia having a lax spike of bright rose-pink flowers
+65330,red_herring,any diversion intended to distract attention from the main issue
+65331,red_herring smoked_herring,a dried and smoked herring having a reddish color
+65332,red_jungle_fowl Gallus_gallus,a jungle fowl of southeastern Asia that is considered ancestral to the domestic fowl
+65333,red_kauri Agathis_lanceolata,New Zealand tree with glossy leaves and scaly reddish-brown bark
+65334,red_lauan,hard heavy red wood of the red lauan tree; often sold as Philippine mahogany
+65335,red_lauan red_lauan_tree Shorea_teysmanniana,valuable Philippine timber tree
+65336,red_laver laver,edible red seaweeds
+65337,red_lead minium,a reddish oxide of lead (Pb3O4) used as a pigment in paints and in glass and ceramics
+65338,red_light,the signal to stop
+65339,red_light warning_light,a cautionary sign of danger
+65340,red_line,a line that is colored red and that bisects an ice hockey rink
+65341,red_maids redmaids Calandrinia_ciliata,succulent carpet-forming plant having small brilliant reddish-pink flowers; southwestern United States
+65342,red_maple scarlet_maple swamp_maple Acer_rubrum,maple of eastern and central America; five-lobed leaves turn scarlet and yellow in autumn
+65343,red_marrow red_bone_marrow,bone marrow of children and some adult bones that is required for the formation of red blood cells
+65344,red_meat,meat that is dark in color before cooking (as beef, venison, lamb, mutton)
+65345,red_morning-glory star_ipomoea Ipomoea_coccinea,annual herb having scarlet flowers; the eastern United States
+65346,red_mulberry Morus_rubra,North American mulberry having dark purple edible fruit
+65347,red_oak,any of numerous American oaks having 4 stamens in each floret, acorns requiring two years to mature and leaf veins usually extending beyond the leaf margin to form points or bristles
+65348,red_osier red_osier_dogwood red_dogwood American_dogwood redbrush Cornus_stolonifera,common North American shrub with reddish purple twigs and white flowers
+65349,red_phalarope Phalaropus_fulicarius,phalarope of northern oceans and lakes
+65350,red_pine Canadian_red_pine Pinus_resinosa,pine of eastern North America having long needles in bunches of two and reddish bark
+65351,red_poll,hornless short-haired breed of beef and dairy cattle
+65352,red_porgy Pagrus_pagrus,food fish of the Mediterranean and Atlantic coasts of Europe and America
+65353,red_raspberry,any of several raspberries bearing red fruit
+65354,red_rockfish,red flesh of large food fish of Pacific coast
+65355,red_rockfish Sebastodes_ruberrimus,a large fish of the Pacific coast of North America
+65356,red_salmon sockeye sockeye_salmon,fatty red flesh of salmon of Pacific coast and rivers
+65357,red_sandalwood red_sanders red_sanderswood red_saunders Pterocarpus_santalinus,tree of India and East Indies yielding a hard fragrant timber prized for cabinetwork and dark red heartwood used as a dyewood
+65358,red_scare,a period of general fear of communists
+65359,red_shift redshift,(astronomy) a shift in the spectra of very distant galaxies toward longer wavelengths (toward the red end of the spectrum); generally interpreted as evidence that the universe is expanding
+65360,red_shrubby_penstemon redwood_penstemon,low branching dark green shrub with bunches of brick-red flowers at ends of branches; coastal ranges and foothills of northern California
+65361,red_silk-cotton_tree simal Bombax_ceiba Bombax_malabarica,East Indian silk cotton tree yielding fibers inferior to kapok
+65362,red_silk_cotton,a plant fiber from the red silk-cotton tree of eastern India; inferior to kapok
+65363,red_siskin Carduelis_cucullata,South American species of scarlet finch with black head and wings and tail
+65364,red_snapper,highly esteemed reddish lean flesh of snapper from Atlantic coast and Gulf of Mexico
+65365,red_snapper Lutjanus_blackfordi,an esteemed food fish with pinkish red head and body; common in the Atlantic coastal waters of North America and the Gulf of Mexico
+65366,red_spider red_spider_mite Panonychus_ulmi,small web-spinning mite; a serious orchard pest
+65367,red_spruce eastern_spruce yellow_spruce Picea_rubens,medium-sized spruce of eastern North America; chief lumber spruce of the area; source of pulpwood
+65368,red_squirrel cat_squirrel Sciurus_vulgaris,common reddish-brown squirrel of Europe and parts of Asia
+65369,red_tide,seawater that is discolored by large numbers of certain dinoflagellates that produce saxitoxin
+65370,red_trillium toadshade sessile_trillium Trillium_sessile,trillium of northeastern United States with sessile leaves and red or purple flowers having a pungent odor
+65371,red_underwing Catocala_nupta,moth having dull forewings and red-marked hind wings
+65372,red_valerian French_honeysuckle Centranthus_ruber,European herb with small fragrant crimson or white spurred flowers
+65373,red_water,a disease of cattle; characterized by hematuria
+65374,red_wine,wine having a red color derived from skins of dark-colored grapes
+65375,red_wolf maned_wolf Canis_rufus Canis_niger,reddish-grey wolf of southwestern North America
+65376,redact redactor reviser rewriter rewrite_man,someone who puts text into appropriate form for publication
+65377,redaction,the act of putting something in writing
+65378,redberry red-berry Rhamnus_croceus,small spiny evergreen shrub of western United States and Mexico with minute flowers and bright red berries
+65379,redbone,a speedy red or red-and-tan American hound
+65380,redbrick_university,(British informal) a provincial British university of relatively recent founding; distinguished from Oxford University and Cambridge University
+65381,redbud Cercis_canadensis,small shrubby tree of eastern North America similar to the Judas tree having usually pink flowers; found in damp sheltered underwood
+65382,redcap,a member of the military police in Britain
+65383,redcap,a porter who helps passengers with their baggage at a railroad station
+65384,redcoat lobsterback,British soldier; so-called because of his red coat (especially during the American Revolution)
+65385,reddish_brown sepia burnt_sienna Venetian_red mahogany,a shade of brown with a tinge of red
+65386,reddish_orange,an orange color closer to red than to yellow
+65387,reddish_purple royal_purple,a shade of purple tinged with red
+65388,rededication,a new dedication; "the rededication of the Temple of Jerusalem"
+65389,redeemer,someone who redeems or buys back (promissory notes or merchandise or commercial paper etc.)
+65390,redefinition,the act of giving a new definition; "words like `conservative' require periodic redefinition"; "she provided a redefinition of his duties"
+65391,redemption,repayment of the principal amount of a debt or security at or before maturity (as when a corporation repurchases its own stock)
+65392,redemption repurchase buyback,the act of purchasing back something previously sold
+65393,redemption salvation,(theology) the act of delivering from sin or saving from evil
+65394,redeployment redisposition,the withdrawal and redistribution of forces in an attempt to use them more effectively
+65395,redeposition,deposition from one deposit to another
+65396,redetermination,determining again
+65397,redevelopment_authority,a public administrative unit given responsibility for the renovation of blighted urban areas
+65398,redeye redeye_flight,a night flight from which the passengers emerge with eyes red from lack of sleep; "he took the redeye in order to get home the next morning"
+65399,redfin_pickerel barred_pickerel Esox_americanus,small but gamy pickerel of Atlantic coastal states
+65400,redfish,male salmon that has recently spawned
+65401,redfish rosefish ocean_perch,North Atlantic rockfish
+65402,redhead Aythya_americana,North American diving duck with a grey-and-black body and reddish-brown head
+65403,redhead redheader red-header carrottop,someone who has red hair
+65404,redheaded_woodpecker redhead Melanerpes_erythrocephalus,black-and-white North American woodpecker having a red head and neck
+65405,redhorse redhorse_sucker,North American sucker with reddish fins
+65406,redirect_examination reexamination,(law) questioning of a witness by the party that called the witness after that witness has been subject to cross-examination
+65407,rediscovery,the act of discovering again
+65408,redistribution,distributing again; "the revolution resulted in a redistribution of wealth"
+65409,redneck cracker,a poor White person in the southern United States
+65410,redoubt,(military) a temporary or supplementary fortification; typically square or polygonal without flanking defenses
+65411,redoubt,an entrenched stronghold or refuge
+65412,redpoll Carduelis_flammea,small siskin-like finch with a red crown and a rosy breast and rump
+65413,redpoll Carduelis_hornemanni,small siskin-like finch with a red crown
+65414,redraft,a draft for the amount of a dishonored draft plus the costs and charges of drafting again
+65415,redress remedy remediation,act of correcting an error or a fault or an evil
+65416,redshank Tringa_totanus,a common Old World wading bird with long red legs
+65417,redstart redtail,European songbird with a reddish breast and tail; related to Old World robins
+65418,redstem_storksbill alfilaria alfileria filaree filaria clocks pin_grass pin_clover Erodium_cicutarium,European weed naturalized in southwestern United States and Mexico having reddish decumbent stems with small fernlike leaves and small deep reddish-lavender flowers followed by slender fruits that stick straight up; often grown for forage
+65419,redtail red-tailed_hawk Buteo_jamaicensis,dark brown American hawk species having a reddish-brown tail
+65420,reduced_instruction_set_computing reduced_instruction_set_computer RISC,(computer science) a kind of computer architecture that has a relatively small set of computer instructions that it can perform
+65421,reducer,pipefitting that joins two pipes of different diameter
+65422,reducing,loss of excess weight (as by dieting); becoming slimmer; "a doctor supervised her reducing"
+65423,reducing_agent reducer reductant,a substance capable of bringing about the reduction of another substance as it itself is oxidized; used in photography to lessen the density of a negative or print by oxidizing some of the loose silver
+65424,reducing_diet obesity_diet,a diet designed to help you lose weight (especially fat)
+65425,reductase,an enzyme that catalyses the biochemical reduction of some specified substance
+65426,reductio_ad_absurdum reductio,(reduction to the absurd) a disproof by showing that the consequences of the proposition are absurd; or a proof of a proposition by showing that its negation leads to a contradiction
+65427,reduction reducing,any process in which electrons are added to an atom or ion (as by removing oxygen or adding hydrogen); always occurs accompanied by oxidation of the reducing agent
+65428,reduction simplification,the act of reducing complexity
+65429,reduction_gear,gearing that reduces an input speed to a slower output speed
+65430,reductionism,a theory that all complex systems can be completely understood in terms of their components
+65431,reductionism,the analysis of complex things into simpler constituents
+65432,redundancy,repetition of messages to reduce the probability of errors in transmission
+65433,redundancy,(electronics) a system design that duplicates components to provide alternatives in case one component fails
+65434,redundancy,repetition of an act needlessly
+65435,redundancy redundance,the attribute of being superfluous and unneeded; "the use of industrial robots created redundancy among workers"
+65436,reduplication,the syllable added in a reduplicated word form
+65437,reduplication,a word formed by or containing a repeated syllable or speech sound (usually at the beginning of the word)
+65438,reduplication reiteration,the act of repeating over and again (or an instance thereof)
+65439,redwing Turdus_iliacus,small European thrush having reddish flanks
+65440,redwood,the soft reddish wood of either of two species of sequoia trees
+65441,reed,tall woody perennial grasses with hollow slender stems especially of the genera Arundo and Phragmites
+65442,reed vibrating_reed,a vibrator consisting of a thin strip of stiff material that vibrates to produce a tone when air streams over it; "the clarinetist fitted a new reed onto his mouthpiece"
+65443,reed_bunting Emberiza_schoeniclus,European bunting inhabiting marshy areas
+65444,reed_canary_grass gardener's_garters lady's_laces ribbon_grass Phalaris_arundinacea,perennial grass of marshy meadows and ditches having broad leaves; Europe and North America
+65445,reed_grass,any of various tall perennial grasses of the genus Calamagrostis having feathery plumes; natives of marshland fens and wet woodlands of temperate northern hemisphere
+65446,reed_meadow_grass Glyceria_grandis,a pasture grass of moist places throughout North America
+65447,reed_pipe,organ pipe with a vibrating reed
+65448,reed_rhapis slender_lady_palm Rhapis_humilis,Chinese lady palm with more slender stems and finer sheath fibers than Rhapis excelsa
+65449,reed_section,the section of a band or orchestra that plays reed instruments
+65450,reed_stop,an organ stop with the tone of a reed instrument
+65451,reef,a submerged ridge of rock or coral near the surface of the water
+65452,reef,one of several strips across a sail that can be taken in or rolled up to lessen the area of the sail that is exposed to the wind
+65453,reef_knot flat_knot,a square knot used in a reef line
+65454,reef_squirrelfish Holocentrus_coruscus,on reefs from Bermuda and Florida to northern South America
+65455,reel,music composed for dancing a reel
+65456,reel,a roll of photographic film holding a series of frames to be projected by a movie projector
+65457,reel,winder consisting of a revolving spool with a handle; attached to a fishing rod
+65458,reel Scottish_reel,a lively dance of Scottish Highlanders; marked by circular moves and gliding steps
+65459,reelection,election again; "he did not run for reelection"
+65460,reeler,a dancer of reels
+65461,reenactment,performing a role in an event that occurred at an earlier time; "the reenactment of the battle of Princeton"
+65462,reenactor,a person who enacts a role in an event that occurred earlier
+65463,reenlistment,a renewed enlistment
+65464,reentrant_angle reentering_angle,an interior angle of a polygon that is greater than 180 degrees
+65465,reentrant_polygon reentering_polygon,a polygon with one or more reentrant angles
+65466,reentry,the act of entering again
+65467,reevaluation,the evaluation of something a second time (or more)
+65468,reeve,female ruff
+65469,refection,a light meal or repast
+65470,refectory,a communal dining-hall (usually in a monastery)
+65471,refectory_table,a long narrow dining table supported by a stretcher between two trestles
+65472,referee,an attorney appointed by a court to investigate and report on a case
+65473,referee ref,(sports) the chief official (as in boxing or American football) who is expected to ensure fair play
+65474,reference,the relation between a word or phrase and the object or idea it refers to; "he argued that reference is a consequence of conditioned reflexes"
+65475,reference consultation,the act of referring or consulting; "reference to an encyclopedia produced the answer"
+65476,reference denotation extension,the most direct or specific meaning of a word or expression; the class of objects that an expression refers to; "the extension of `satellite of Mars' is the set containing only Demos and Phobos"
+65477,reference source,a publication (or a passage from a publication) that is referred to; "he carried an armful of references back to his desk"; "he spent hours looking for the source of that quotation"
+65478,reference_book reference reference_work book_of_facts,a book to which you can refer for authoritative facts; "he contributed articles to the basic reference work on that topic"
+65479,reference_grid,a pattern of horizontal and vertical lines that provide coordinates for locating points on an image or a map
+65480,reference_manual,a manual containing information organized in a summary manner
+65481,reference_point point_of_reference reference,an indicator that orients you generally; "it is used as a reference for comparing the heating and the electrical energy involved"
+65482,referendum,a legislative act is referred for final approval to a popular vote by the electorate
+65483,referent,something referred to; the object of a reference
+65484,referent,the first term in a proposition; the term to which other terms relate
+65485,referent,something that refers; a term that refers to another term
+65486,referral,a person whose case has been referred to a specialist or professional group; "the patient is a referral from Dr. Bones"
+65487,referral,a recommendation to consult the (professional) person or group to whom one has been referred; "the insurance company says that you need a written referral from your physician before seeing a specialist"
+65488,referral,the act of referring (as forwarding an applicant for employment or referring a matter to an appropriate agency)
+65489,referred_pain,pain that is felt at a place in the body different from the injured or diseased part where the pain would be expected; "angina pectoris can cause referred pain in the left shoulder"; "pain in the right shoulder can be referred pain from gallbladder disease"
+65490,refill,a prescription drug that is provided again; "he got a refill of his prescription"; "the prescription specified only one refill"
+65491,refill,a commercial product that refills a container with its appropriate contents; "he got a refill for his ball-point pen"; "he got a refill for his notebook"
+65492,refilling replenishment replacement renewal,filling again by supplying what has been used up
+65493,refinement civilization civilisation,the quality of excellence in thought and manners and taste; "a man of intellectual refinement"; "he is remembered for his generosity and civilization"
+65494,refinement elaboration,the result of improving something; "he described a refinement of this technique"
+65495,refiner,one whose work is to refine a specific thing; "he was a sugar refiner"
+65496,refinery,an industrial plant for purifying a crude substance
+65497,refining refinement purification,the process of removing impurities (as from oil or metals or sugar etc.)
+65498,refinisher renovator restorer preserver,a skilled worker who is employed to restore or refinish buildings or antique furniture
+65499,refit,outfitting a ship again (by repairing or replacing parts)
+65500,reflation,inflation of currency after a period of deflation; restore the system to a previous state
+65501,reflecting_telescope reflector,optical telescope consisting of a large concave mirror that produces an image that is magnified by the eyepiece; "Isaac Newton invented the reflecting telescope in 1668"
+65502,reflection,(mathematics) a transformation in which the direction of one axis is reversed
+65503,reflection reflexion,the phenomenon of a propagating wave (light or sound) being thrown back from a surface
+65504,reflection reflexion,the image of something as reflected by a mirror (or other reflective material); "he studied his reflection in the mirror"
+65505,reflection reflexion reflectivity,the ability to reflect beams or rays
+65506,reflectiveness reflectivity,the capability of quiet thought or contemplation
+65507,reflectometer,a meter that measures the reflectance of a surface
+65508,reflector,device that reflects radiation
+65509,reflex reflex_response reflex_action instinctive_reflex innate_reflex inborn_reflex unconditioned_reflex physiological_reaction,an automatic instinctive unlearned reaction to a stimulus
+65510,reflex_angle,an angle greater than 180 degrees (but less than 360)
+65511,reflex_arc,the neural path of a reflex
+65512,reflex_camera,camera that allows the photographer to view and focus the exact scene being photographed
+65513,reflex_epilepsy,a form of epilepsy in which attacks are induced by peripheral stimulation
+65514,reflexive_pronoun reflexive,a personal pronoun compounded with -self to show the agent's action affects the agent
+65515,reflexive_verb,a verb whose agent performs an action that is directed at the agent; "the sentence `he washed' has a reflexive verb"; "`perjure' is a reflexive verb because you cannot perjure anyone but yourself"
+65516,reflexivity reflexiveness,the coreferential relation between a reflexive pronoun and its antecedent
+65517,reflexivity reflexiveness,(logic and mathematics) a relation such that it holds between an element and itself
+65518,reflexology,the study of reflex action as it relates to the behavior of organisms
+65519,reflexology,massage to relieve tension by finger pressure; based on the belief that there are reflex points on the feet, hands, and head that are connected to every part of the body
+65520,reflux,an abnormal backward flow of body fluids
+65521,reflux_condenser,condenser such that vapor over a boiling liquid is condensed and flows back into the vessel to prevent its contents from boiling dry
+65522,refocusing,focusing again
+65523,reforestation re-afforestation,the restoration (replanting) of a forest that had been reduced by fire or cutting
+65524,reform,a campaign aimed to correct abuses or malpractices; "the reforms he proposed were too radical for the politicians"
+65525,reform,self-improvement in behavior or morals by abandoning some vice; "the family rejoiced in the drunkard's reform"
+65526,reform,a change for the better as a result of correcting abuses; "justice was for sale before the reform of the law courts"
+65527,reform_movement,a movement intended to bring about social and humanitarian reforms
+65528,reformation,improvement (or an intended improvement) in the existing form or condition of institutions or practices etc.; intended to make a striking change for the better in social or political or religious affairs
+65529,reformatory reform_school training_school,correctional institution for the detention and discipline and training of young or first offenders
+65530,reformer,an apparatus that reforms the molecular structure of hydrocarbons to produce richer fuel; "a catalytic reformer"
+65531,reformer reformist crusader social_reformer meliorist,a disputant who advocates reform
+65532,reformism,a doctrine of reform
+65533,refracting_telescope,optical telescope that has a large convex lens that produces an image that is viewed through the eyepiece
+65534,refraction,the change in direction of a propagating wave (light or sound) when passing from one medium to another
+65535,refractive_index index_of_refraction,the ratio of the velocity of light in a vacuum to that in a medium
+65536,refractivity refractiveness,the physical property of a medium as determined by its index of refraction
+65537,refractometer,measuring instrument for measuring the refractive index of a substance
+65538,refractoriness unmanageableness recalcitrance recalcitrancy,the trait of being unmanageable
+65539,refractory_anemia refractory_anaemia,any of various anemic conditions that are not successfully treated by any means other than blood transfusions (and that are not associated with another primary disease)
+65540,refractory_period,(neurology) the time after a neuron fires or a muscle fiber contracts during which a stimulus will not evoke a response
+65541,refrain chorus,the part of a song where a soloist is joined by a group of singers
+65542,refresher,a fee (in addition to that marked on the brief) paid to counsel in a case that lasts more than one day
+65543,refresher,a drink that refreshes; "he stopped at the bar for a quick refresher"
+65544,refresher_course refresher,a course that reviews and updates a topic for those who have not kept abreast of developments
+65545,refreshment,snacks and drinks served as a light meal
+65546,refreshment recreation,activity that refreshes and recreates; activity that renews your health and spirits by enjoyment and relaxation; "time for rest and refreshment by the pool"; "days of joyous recreation with his friends"
+65547,refried_beans frijoles_refritos,dried beans cooked and mashed and then fried in lard with various seasonings
+65548,refrigerant,any substance used to provide cooling (as in a refrigerator)
+65549,refrigeration,deliberately lowering the body's temperature for therapeutic purposes; "refrigeration by immersing the patient's body in a cold bath"
+65550,refrigeration infrigidation,the process of cooling or freezing (e.g., food) for preservative purposes
+65551,refrigeration_system,a cooling system for chilling or freezing (usually for preservative purposes)
+65552,refrigerator icebox,white goods in which food can be stored at low temperatures
+65553,refrigerator_car,a freight car that is equipped with refrigeration system
+65554,refrigerator_cookie,dough formed into a roll and chilled in the refrigerator then sliced and baked
+65555,refuge sanctuary asylum,a shelter from danger or hardship
+65556,refugee,an exile who flees for safety
+65557,refund,money returned to a payer
+65558,refund repayment,the act of returning money received previously
+65559,refusal,the act of refusing
+65560,refusal,a message refusing to accept something that is offered
+65561,refutation defense defence,the speech act of answering an attack on your assertions; "his refutation of the charges was short and persuasive"; "in defense he said the other man started it"
+65562,regalia,paraphernalia indicative of royalty (or other high office)
+65563,regard respect,a feeling of friendship and esteem; "she mistook his manly regard for love"; "he inspires respect"
+65564,regard wish compliments,(usually plural) a polite expression of desire for someone's welfare; "give him my kind regards"; "my best wishes"
+65565,regatta,a meeting for boat races
+65566,regency,the period of time during which a regent governs
+65567,regency,the office of a regent
+65568,regeneration,(biology) growth anew of lost tissue or destroyed parts or organs
+65569,regeneration,the activity of spiritual or physical renewal
+65570,regent,someone who rules during the absence or incapacity or minority of the country's monarch
+65571,regent trustee,members of a governing board
+65572,reggae,popular music originating in the West Indies; repetitive bass riffs and regular chords played on the off beat by a guitar
+65573,regicide,someone who commits regicide; the killer of a king
+65574,regicide,the act of killing a king
+65575,regimen regime,(medicine) a systematic plan for therapy (often including diet)
+65576,regiment,army unit smaller than a division
+65577,regimentals,the military uniform and insignia of a regiment
+65578,regimentation,the imposition of order or discipline
+65579,region,a large indefinite location on the surface of the Earth; "penguins inhabit the polar regions"
+65580,region neighborhood,the approximate amount of something (usually used prepositionally as in `in the region of'); "it was going to take in the region of two or three months to finish the job"; "the price is in the neighborhood of $100"
+65581,region part,the extended spatial location of something; "the farming regions of France"; "religions in all parts of the world"; "regions of outer space"
+65582,region realm,a knowledge domain that you are interested in or are communicating about; "it was a limited realm of discourse"; "here we enter the region of opinion"; "the realm of the occult"
+65583,regional_anatomy topographic_anatomy topology,the study of anatomy based on regions or divisions of the body and emphasizing the relations between various structures (muscles and nerves and arteries etc.) in that region
+65584,regional_anesthesia regional_anaesthesia,loss of sensation in a region of the body produced by application of an anesthetic agent to all the nerves supplying that region (as when an epidural anesthetic is administered to the pelvic region during childbirth)
+65585,regional_enteritis regional_ileitis Crohn's_disease,a serious chronic and progressive inflammation of the ileum producing frequent bouts of diarrhea with abdominal pain and nausea and fever and weight loss
+65586,regionalism,a feature (as a pronunciation or expression or custom) that is characteristic of a particular region
+65587,regionalism,a foreign policy that defines the international interests of a country in terms of particular geographic areas
+65588,regionalism,loyalty to the interests of a particular region
+65589,register,a book in which names and transactions are listed
+65590,register,(music) the timbre that is characteristic of a certain range and manner of production of the human voice or of different pipe organ stops or of different musical instruments
+65591,register,(computer science) memory device that is the part of computer memory that has a specific address and that is used to hold information of a specific kind
+65592,register,an air passage (usually in the floor or a wall of a room) for admitting or excluding heated air from the room
+65593,register,a regulator (as a sliding plate) for regulating the flow of air into a furnace or other heating device
+65594,register registry,an official written record of names or events or transactions
+65595,register_language,a tone language that uses different voice registers
+65596,registered_bond,a bond whose owner is recorded on the books of the issuer; can be transferred to another owner only when endorsed by the registered owner
+65597,registered_mail registered_post,mail that is registered by the post office when sent in order to assure safe delivery
+65598,registered_nurse RN,a graduate nurse who has passed examinations for registration
+65599,registered_security,a security whose owner's name is recorded on the books of the issuer (or issuer's agent)
+65600,registrant,a person who is formally entered (along with others) in a register (and who obtains certain rights thereby)
+65601,registrar,a person employed to keep a record of the owners of stocks and bonds issued by the company
+65602,registrar,the administrator responsible for student records
+65603,registrar record-keeper recorder,someone responsible for keeping records
+65604,registration,a document certifying an act of registering
+65605,registration,(music) the sound property resulting from a combination of organ stops used to perform a particular piece of music; the technique of selecting and adjusting organ stops
+65606,registration enrollment,the body of people (such as students) who register or enroll at the same time
+65607,registration enrollment enrolment,the act of enrolling
+65608,registration_fire,fire delivered to obtain accurate data for subsequent effective engagement of targets
+65609,regnellidium Regnellidium_diphyllum,small latex-containing aquatic fern of southern Brazil
+65610,regosol,a type of soil consisting of unconsolidated material from freshly deposited alluvium or sand
+65611,regress reasoning_backward,the reasoning involved when you assume the conclusion is true and reason backward to the evidence
+65612,regression,(psychiatry) a defense mechanism in which you flee from reality by assuming a more infantile state
+65613,regression regress reversion retrogression retroversion,returning to a former state
+65614,regression simple_regression regression_toward_the_mean statistical_regression,the relation between selected values of x and observed values of y (from which the most probable value of y can be predicted for any value of x)
+65615,regression_analysis,the use of regression to make quantitative predictions of one variable from the values of another
+65616,regression_coefficient,when the regression line is linear (y = ax + b) the regression coefficient is the constant (a) that represents the rate of change of one variable (y) as a function of changes in the other (x); it is the slope of the regression line
+65617,regression_equation regression_of_y_on_x,the equation representing the relation between selected values of one variable (x) and observed values of the other (y); it permits the prediction of the most probable values of y
+65618,regression_line regression_curve,a smooth curve fitted to the set of paired data in regression analysis; for linear regression the curve is a straight line
+65619,regular,a soldier in the regular army
+65620,regular,a dependable follower (especially in party politics); "he is one of the party regulars"
+65621,regular,a garment size for persons of average height and weight
+65622,regular habitue fixture,a regular patron; "an habitue of the racetrack"; "a bum who is a Central Park fixture"
+65623,regular_dodecahedron,a dodecahedron with twelve regular pentagons as faces
+65624,regular_hexagon,a hexagon with six sides of equal length
+65625,regular_icosahedron,an icosahedron with twenty equilateral triangles as faces
+65626,regular_octahedron,an octahedron with eight equilateral triangles as faces
+65627,regular_payment,a payment made at regular times
+65628,regular_polygon,a polygon with all sides and all angles equal
+65629,regular_polyhedron regular_convex_solid regular_convex_polyhedron Platonic_body Platonic_solid ideal_solid,any one of five solids whose faces are congruent regular polygons and whose polyhedral angles are all congruent
+65630,regular_tetrahedron,a tetrahedron with four equilateral triangular faces
+65631,regularity,the quality of being characterized by a fixed principle or rate; "he was famous for the regularity of his habits"
+65632,regularity geometrical_regularity,a property of polygons: the property of having equal sides and equal angles
+65633,regularization regularisation,the condition of having been made regular (or more regular)
+65634,regulation,the state of being controlled or governed
+65635,regulation,(embryology) the ability of an early embryo to continue normal development after its structure has been somehow damaged or altered
+65636,regulation ordinance,an authoritative rule
+65637,regulation regularization regularisation,the act of bringing to uniformity; making regular
+65638,regulation regulating,the act of controlling or directing according to rule; "fiscal regulations are in the hands of politicians"
+65639,regulation_time,(sports) the normal prescribed duration of a game; "the game was finished in regulation time"
+65640,regulator,an official responsible for control and supervision of a particular activity or area of public interest
+65641,regulator,any of various controls or devices for regulating or controlling fluid flow, pressure, temperature, etc.
+65642,regulatory_agency regulatory_authority,a governmental agency that regulates businesses in the public interest
+65643,regulatory_gene regulator_gene,a gene that produces a repressor substance that inhibits an operator gene
+65644,regur regur_soil,a rich black loam of India
+65645,regurgitation,backflow of blood through a defective heart valve
+65646,regurgitation,recall after rote memorization; "he complained that school was just memorization and regurgitation"
+65647,rehabilitation,vindication of a person's character and the re-establishment of that person's reputation
+65648,rehabilitation,the treatment of physical disabilities by massage and electrotherapy and exercises
+65649,rehabilitation,the restoration of someone to a useful place in society
+65650,rehabilitation_program,a program for restoring someone to good health
+65651,reharmonization reharmonisation,a piece of music whose original harmony has been revised
+65652,rehash,old material that is slightly reworked and used again; "merely a dull rehash of his first novel"
+65653,rehearsal,(psychology) a form of practice; repetition of information (silently or aloud) in order to keep it in short-term memory
+65654,rehearsal dry_run,a practice session in preparation for a public performance (as of a play or speech or concert); "he missed too many rehearsals"; "a rehearsal will be held the day before the wedding"
+65655,reign,a period during which something or somebody is dominant or powerful; "he was helpless under the reign of his egotism"
+65656,reign,the period during which a monarch is sovereign; "during the reign of Henry VIII"
+65657,reign sovereignty,royal authority; the dominion of a monarch
+65658,reign_of_terror,any period of brutal suppression thought to resemble the Reign of Terror in France
+65659,reimbursement,compensation paid (to someone) for damages or losses or money already spent etc.; "he received reimbursement for his travel expenses"
+65660,reimposition,imposition again
+65661,rein,any means of control; "he took up the reins of government"
+65662,rein,one of a pair of long straps (usually connected to the bit or the headpiece) used to control a horse
+65663,rein_orchid rein_orchis,any of several American wildflowers with a kidney-shaped lip
+65664,reincarnation,embodiment in a new form (especially the reappearance or a person in another form); "his reincarnation as a lion"
+65665,reincarnation,the Hindu or Buddhist doctrine that a person may be reborn successively into one of five classes of living beings (god or human or animal or hungry ghost or denizen of Hell) depending on the person's own actions
+65666,reincarnation rebirth renascence,a second or new birth
+65667,reincarnationism,a doctrine that on the death of the body the soul migrates to or is born again in another body
+65668,reindeer_moss reindeer_lichen arctic_moss Cladonia_rangiferina,an erect greyish branching lichen of Arctic and even some north temperate regions constituting the chief food for reindeer and caribou and sometimes being eaten by humans
+65669,reinforced_concrete ferroconcrete,concrete with metal and/or mesh added to provide extra support against stresses
+65670,reinforcement reenforcement,information that makes more forcible or convincing; "his gestures provided eloquent reinforcement for his complaints"
+65671,reinforcing_stimulus reinforcer reinforcement,(psychology) a stimulus that strengthens or weakens the behavior that produced it
+65672,reinstatement,the condition of being reinstated; "her reinstatement to her former office followed quickly"
+65673,reinstatement,the act of restoring someone to a previous position; "we insisted on the reinstatement of the colonel"
+65674,reinsurance,sharing the risk by insurance companies; part or all of the insurer's risk is assumed by other companies in return for part of the premium paid by the insured; "reinsurance enables a client to get coverage that would be too great for any one company to assume"
+65675,reinterpretation,a new or different meaning
+65676,reinterpretation,a new or different interpretation
+65677,reintroduction,an act of renewed introduction
+65678,reissue reprint reprinting,a publication (such as a book) that is reprinted without changes or editing and offered again for sale
+65679,rejection,the state of being rejected
+65680,rejection,(medicine) an immunological response that refuses to accept substances or organisms that are recognized as foreign; "rejection of the transplanted liver"
+65681,rejection,the speech act of rejecting
+65682,rejection,the act of rejecting something; "his proposals were met with rejection"
+65683,rejoicing,a feeling of great happiness
+65684,rejoinder,(law) a pleading made by a defendant in response to the plaintiff's replication
+65685,rejoinder retort return riposte replication comeback counter,a quick reply to a question or remark (especially a witty or critical one); "it brought a sharp rejoinder from the teacher"
+65686,rejuvenation,the act of restoring to a more youthful condition
+65687,rejuvenation greening,the phenomenon of vitality and freshness being restored; "the annual rejuvenation of the landscape"
+65688,relapsing_fever recurrent_fever,marked by recurring high fever and transmitted by the bite of infected lice or ticks; characterized by episodes of high fever and chills and headache and muscle pain and nausea that recur every week or ten days for several months
+65689,relatedness,a particular manner of connectedness; "the relatedness of all living things"
+65690,relation,(usually plural) mutual dealings or connections among persons or groups; "international relations"
+65691,relation,an abstraction belonging to or characteristic of two entities or parts together
+65692,relation telling recounting,an act of narration; "he was the hero according to his own relation"; "his endless recounting of the incident eventually became unbearable"
+65693,relation_back relation,(law) the principle that an act done at a later time is deemed by law to have occurred at an earlier time; "his attorney argued for the relation back of the amended complaint to the time the initial complaint was filed"
+65694,relational_adjective classifying_adjective,an adjective that classifies its noun (e.g., `a nervous disease' or `a musical instrument')
+65695,relational_database,a database in which relations between information items are explicitly specified as accessible attributes; "in a relational database the data are organized as a number of differently sized tables"
+65696,relational_database_management_system,a database management system designed to manage a relational database
+65697,relations dealings,mutual dealings or connections or communications among persons or groups
+65698,relationship,a state involving mutual dealings between people or parties or countries
+65699,relationship,a state of connectedness between people (especially an emotional connection); "he didn't want his wife to know of the relationship"
+65700,relationship human_relationship,a relation between people; (`relationship' is often used where `relation' would serve, as in `the relationship between inflation and unemployment', but the preferred usage of `relationship' is for human relations or states of relatedness); "the relationship between mothers and their children"
+65701,relative congener congenator congeneric,an animal or plant that bears a relationship to another (as related by common descent or by membership in the same genus)
+65702,relative relation,a person related by blood or marriage; "police are searching for relatives of the deceased"; "he has distant relations back in New Jersey"
+65703,relative_clause,a clause introduced by a relative pronoun; "`who visits frequently' is a relative clause in the sentence `John, who visits frequently, is ill'"
+65704,relative_density,the ratio of the density of something to the density of a standard
+65705,relative_humidity,the ratio of the amount of water in the air at a given temperature to the maximum amount it could hold at that temperature; expressed as a percentage
+65706,relative_pronoun,a pronoun (as `that' or `which' or `who') that introduces a relative clause referring to some antecedent
+65707,relative_quantity,a quantity relative to some purpose
+65708,relativism,(philosophy) the philosophical doctrine that all criteria of judgment are relative to the individuals and situations involved
+65709,relativistic_mass,(physics) the mass of a body in motion relative to the observer: it is equal to the rest mass multiplied by a factor that is greater than 1 and that increases as the magnitude of the velocity increases
+65710,relativity,the quality of being relative and having significance only in relation to something else
+65711,relativity theory_of_relativity relativity_theory Einstein's_theory_of_relativity,(physics) the theory that space and time are relative concepts rather than absolute concepts
+65712,relatum,a term in a proposition that is related to the referent of the proposition
+65713,relaxant,a drug that relaxes and relieves tension
+65714,relaxation,(physiology) the gradual lengthening of inactive muscle or muscle fibers
+65715,relaxation loosening slackening,an occurrence of control or strength weakening; "the relaxation of requirements"; "the loosening of his grip"; "the slackening of the wind"
+65716,relaxation relaxation_behavior,(physics) the exponential return of a system to equilibrium after a disturbance
+65717,relaxation relaxation_method,a method of solving simultaneous equations by guessing a solution and then reducing the errors that result by successive approximations until all the errors are less than some specified amount
+65718,relaxation_time,the time constant of an exponential return of a system to equilibrium after a disturbance
+65719,relaxer,any agent that produces relaxation; "music is a good relaxer"
+65720,relaxin,hormone secreted by the corpus luteum during the last days of pregnancy; relaxes the pelvic ligaments and prepares the uterus for labor
+65721,relay,a crew of workers who relieve another crew
+65722,relay,a fresh team to relieve weary draft animals
+65723,relay,the act of passing something along from one person or group to another; "the relay was successful"
+65724,relay electrical_relay,electrical device such that current flowing through it in one circuit can switch on and off a current in a second circuit
+65725,relay relay_race,a race between teams; each member runs or swims part of the distance
+65726,release,a process that liberates or discharges something; "there was a sudden release of oxygen"; "the release of iodine from the thyroid gland"
+65727,release,merchandise issued for sale or public showing (especially a record or film); "a new release from the London Symphony Orchestra"
+65728,release button,a device that when pressed will release part of a mechanism
+65729,release outlet vent,activity that frees or expresses creative energy or emotion; "she had no other outlet for her feelings"; "he gave vent to his anger"
+65730,release tone_ending,(music) the act or manner of terminating a musical phrase or tone
+65731,release waiver discharge,a formal written statement of relinquishment
+65732,releasing_factor releasing_hormone RF,a substance produced by the hypothalamus that is capable of accelerating the secretion of a given hormone by the anterior pituitary gland
+65733,releasing_hormone RH releasing_factor hypothalamic_releasing_hormone hypothalamic_releasing_factor,any of several hormones produced in the hypothalamus and carried by a vein to the anterior pituitary gland where they stimulate the release of anterior pituitary hormones; each of these hormones causes the anterior pituitary to secrete a specific hormone
+65734,relegation,the act of assigning (someone or something) to a particular class or category
+65735,relegation,mild banishment; consignment to an inferior position; "he has been relegated to a post in Siberia"
+65736,relentlessness inexorability inexorableness,mercilessness characterized by an unwillingness to relent or let up; "the relentlessness or their pursuit"
+65737,relevance relevancy,the relation of something to the matter at hand
+65738,reliance,the state of relying on something
+65739,reliance trust,certainty based on past experience; "he wrote the paper with considerable reliance on the work of other scientists"; "he put more trust in his own two legs than in the gun"
+65740,relic,an antiquity that has survived from the distant past
+65741,relict,an organism or species surviving as a remnant of an otherwise extinct flora or fauna in an environment much changed from that in which it originated
+65742,relict,geological feature that is a remnant of a pre-existing formation after other parts have disappeared
+65743,relief,(law) redress awarded by a court; "was the relief supposed to be protection from future harm or compensation for past injury?"
+65744,relief,aid for the aged or indigent or handicapped; "he has been on relief for many years"
+65745,relief,the act of freeing a city or town that has been besieged; "he asked for troops for the relief of Atlanta"
+65746,relief alleviation assuagement,the feeling that comes when something burdensome is removed or reduced; "as he heard the news he was suddenly flooded with relief"
+65747,relief ease,the condition of being comfortable or relieved (especially after being relieved of distress); "he enjoyed his relief from responsibility"; "getting it off his conscience gave him some ease"
+65748,relief relievo rilievo embossment sculptural_relief,sculpture consisting of shapes carved on a surface so as to stand out from the surrounding background
+65749,relief succor succour ministration,assistance in time of difficulty; "the contributions provided some relief for the victims"
+65750,relief_printing letterpress,printing from a plate with raised characters
+65751,reliever allayer comforter,a person who reduces the intensity (e.g., of fears) and calms and pacifies; "a reliever of anxiety"; "an allayer of fears"
+65752,reliever relief_pitcher fireman,a pitcher who does not start the game
+65753,religion faith organized_religion,an institution to express belief in a divine power; "he was raised in the Baptist religion"; "a member of his own faith contradicted him"
+65754,religion faith religious_belief,a strong belief in a supernatural power or powers that control human destiny; "he lost his faith but not his morality"
+65755,religionism,exaggerated religious zealotry
+65756,religionist,a person addicted to religion or a religious zealot
+65757,religiosity religionism religiousism pietism,exaggerated or affected piety and religious zeal
+65758,religious,a member of a religious order who is bound by vows of poverty and chastity and obedience
+65759,religious_ceremony religious_ritual,a ceremony having religious meaning
+65760,religious_doctrine church_doctrine gospel creed,the written body of teachings of a religious group that are generally accepted by that group
+65761,religious_festival church_festival,a festival having religious significance
+65762,religious_holiday holy_day,a day specified for religious observance
+65763,religious_leader,leader of a religious order
+65764,religious_movement,a movement intended to bring about religious reforms
+65765,religious_music church_music,genre of music composed for performance as part of religious ceremonies
+65766,religious_orientation,an attitude toward religion or religious practices
+65767,religious_person,a person who manifests devotion to a deity
+65768,religious_residence cloister,residence that is a place of religious seclusion (such as a monastery)
+65769,religious_right,United States political faction that advocates social and political conservativism, school prayer, and federal aid for religious groups and schools
+65770,religious_school,a school run by a religious body
+65771,religious_song,religious music for singing
+65772,religious_trance ecstatic_state,a trance induced by intense religious devotion; does not show reduced bodily functions that are typical of other trances
+65773,religiousness,the quality of being extremely conscientious; "his care in observing the rules of good health amounted to a kind of religiousness"
+65774,relinquishment relinquishing,a verbal act of renouncing a claim or right or position etc.
+65775,relinquishment relinquishing,the act of giving up and abandoning a struggle or task etc.
+65776,reliquary,a container where religious relics are stored or displayed (especially relics of saints)
+65777,relish,spicy or savory condiment
+65778,relish flavor flavour sapidity savor savour smack nip tang,the taste experience when a savoury condiment is taken into the mouth
+65779,relistening rehearing,the act of hearing again
+65780,reliving re-experiencing,a recurrence of a prior experience; "the reliving of a strong emotion can be therapeutic"
+65781,relocatable_program,a program that can be located in different parts of memory at different times
+65782,reluctance,(physics) opposition to magnetic flux (analogous to electric resistance)
+65783,reluctance hesitancy hesitation disinclination indisposition,a certain degree of unwillingness; "a reluctance to commit himself"; "his hesitancy revealed his basic indisposition"; "after some hesitation he agreed"
+65784,reluctivity,(physics) the resistance of a material to the establishment of a magnetic field in it
+65785,rem,(roentgen equivalent man) the dosage of ionizing radiation that will cause the same amount of injury to human tissue as 1 roentgen of X-rays
+65786,remainder,the part of the dividend that is left over when the dividend is not evenly divisible by the divisor
+65787,remainder balance residual residue residuum rest,something left after other parts have been taken away; "there was no remainder"; "he threw away the rest"; "he took what he wanted and I got the balance"
+65788,remainder difference,the number that remains after subtraction; the number that when added to the subtrahend gives the minuend
+65789,remains,any object that is left unused or still extant; "I threw out the remains of my dinner"
+65790,remake remaking,creation that is created again or anew; "it is a remake of an old film"
+65791,remand,the act of sending an accused person back into custody to await trial (or the continuation of the trial)
+65792,remark,explicit notice; "it passed without remark"
+65793,remark comment input,a statement that expresses a personal opinion or belief or adds information; "from time to time she contributed a personal comment on his account"; "we would appreciate input from our users on how we can improve our software"
+65794,remarriage,the act of marrying again
+65795,remedy curative cure therapeutic,a medicine or therapy that cures disease or relieve pain
+65796,remembrance recollection anamnesis,the ability to recall past occurrences
+65797,remilitarization remilitarisation,the act of militarizing again
+65798,reminder,a message that helps you remember something; "he ignored his wife's reminders"
+65799,reminder,an experience that causes you to remember something
+65800,reminiscence,a mental impression retained and recalled from the past
+65801,remise,an expensive or high-class hackney
+65802,remise,(fencing) a second thrust made on the same lunge (as when your opponent fails to riposte)
+65803,remission remitment remit,(law) the act of remitting (especially the referral of a law case to another court)
+65804,remission remittal subsidence,an abatement in intensity or degree (as in the manifestations of a disease); "his cancer is in remission"
+65805,remit,the topic that a person, committee, or piece of research is expected to deal with or has authority to deal with; "they set up a group with a remit to suggest ways for strengthening family life"
+65806,remittance remittal remission remitment,a payment of money sent to a person in another place
+65807,remittance_man,an exile living on money sent from home
+65808,remora suckerfish sucking_fish,marine fishes with a flattened elongated body and a sucking disk on the head for attaching to large fish or moving objects
+65809,remote-control_bomb,a bomb that can be detonated by remote control
+65810,remote_control remote,a device that can be used to control a machine or apparatus from a distance; "he lost the remote for his TV"
+65811,remote_terminal link-attached_terminal remote_station link-attached_station,a terminal connected to a computer by a data link
+65812,remoulade_sauce,a mayonnaise sauce flavored with herbs and mustard and capers; served with e.g. salad and cold meat
+65813,remount,a fresh horse especially (formerly) to replace one killed or injured in battle
+65814,removable_disk,a hard disk that can be removed from the disk drive; removal prevents unauthorized use
+65815,removal,dismissal from office
+65816,removal remotion,the act of removing; "he had surgery for the removal of a malignancy"
+65817,remove,degree of figurative distance or separation; "just one remove from madness"; "it imitates at many removes a Shakespearean tragedy"
+65818,remover,a solvent that removes a substance (usually from a surface); "paint remover"; "rust remover"; "hair remover"
+65819,remover,someone who works for a company that moves furniture
+65820,remuda,the herd of horses from which those to be used the next day are chosen
+65821,remuneration,the act of paying for goods or services or to recompense for losses; "adequate remuneration for his work"
+65822,renal_artery arteria_renalis,an artery originating from the abdominal aorta and supplying the kidneys and adrenal glands and ureters
+65823,renal_colic,sharp pain in the lower back that radiates into the groin; associated with the passage of a renal calculus through the ureter
+65824,renal_cortex,the cortex of the kidney containing the glomeruli and the convoluted tubules
+65825,renal_failure kidney_failure,inability of the kidneys to excrete wastes and to help maintain the electrolyte balance
+65826,renal_insufficiency,insufficient excretion of wastes by the kidneys
+65827,renal_vein vena_renalis,veins that accompany renal arteries; open into the vena cava at the level of the 2nd lumbar vertebra
+65828,render,a substance similar to stucco but exclusively applied to masonry walls
+65829,rendering,a coat of stucco applied to a masonry wall
+65830,rendering,perspective drawing of an architect's design
+65831,rendering,giving in acknowledgment of obligation
+65832,rendezvous,a place where people meet; "he was waiting for them at the rendezvous"
+65833,rendezvous,a meeting planned at a certain time and place
+65834,rendition,handing over prisoners to the country in which a crime was committed
+65835,rendition rendering,a performance of a musical composition or a dramatic role etc.; "they heard a live rendition of three pieces by Schubert"
+65836,rendition rendering interpretation,the act of interpreting something as expressed in an artistic performance; "her rendition of Milton's verse was extraordinarily moving"
+65837,renegade,someone who rebels and becomes an outlaw
+65838,renewable_resource,any natural resource (as wood or solar energy) that can be replenished naturally with the passage of time
+65839,renewal,the act of renewing
+65840,reniform_leaf,a simple kidney-shaped leaf
+65841,renin,a proteolytic enzyme secreted by the kidneys; catalyzes the formation of angiotensin and thus affects blood pressure
+65842,rennet,a substance that curdles milk in making cheese and junket
+65843,rennin chymosin,an enzyme that occurs in gastric juice; causes milk to coagulate
+65844,renovation redevelopment overhaul,the act of improving by renewing and restoring; "they are pursuing a general program of renovation to the entire property"; "a major overhaul of the healthcare system was proposed"
+65845,renovation restoration refurbishment,the state of being restored to its former good condition; "the inn was a renovation of a Colonial house"
+65846,rensselaerite,a kind of soft talc; sometimes used as wood filler
+65847,rent,a payment or series of payments made by the lessee to an owner for use of some property, facility, equipment, or service
+65848,rent rip split,the act of rending or ripping or splitting something; "he gave the envelope a vigorous rip"
+65849,rent-rebate,a rebate on rent given by a local government authority
+65850,rent-roll,a register of rents; includes the names of tenants and the amount of rent they pay
+65851,rent_collector,a person who goes from house to house collecting rents for the owner
+65852,rent_seeking rent-seeking,(economics) the theory that a person or firm seeks to make money by manipulating the economic environment rather than by making a profit through production or trade
+65853,rental renting,the act of paying for the use of something (as an apartment or house or car)
+65854,rental_collection,a collection of books that can be rented by readers in return for a small daily fee
+65855,rental_income,income received from rental properties
+65856,renter,an owner of property who receives payment for its use by another person
+65857,rentier,someone whose income is from property rents or bond interest and other investments
+65858,renunciation forgoing forswearing,the act of renouncing; sacrificing or giving up or surrendering (a possession or right or title or privilege etc.)
+65859,renunciation renouncement,an act (spoken or written) declaring that something is surrendered or disowned
+65860,reorder,a repeated order for the same merchandise; "he's the one who sends out all the new orders and reorders"
+65861,reordering,a rearrangement in a different order
+65862,reorganization,an extensive alteration of the structure of a corporation or government; "after the takeover there was a thorough reorganization"; "the reorganization was prescribed by federal bankruptcy laws"
+65863,reorganization reorganisation shake-up shakeup,the imposition of a new organization; organizing differently (often involving extensive and drastic changes); "a committee was appointed to oversee the reorganization of the curriculum"; "top officials were forced out in the cabinet shakeup"
+65864,reorientation,a fresh orientation; a changed set of attitudes and beliefs
+65865,reovirus,any of a group of non-arboviruses including the rotavirus causing infant enteritis
+65866,rep,informal abbreviation of `representative'
+65867,rep repp,a fabric with prominent rounded crosswise ribs
+65868,repair,a formal way of referring to the condition of something; "the building was in good repair"
+65869,repair fix fixing fixture mend mending reparation,the act of putting something in working order again
+65870,repair_shop fix-it_shop,a shop specializing in repairs and maintenance
+65871,repairman maintenance_man service_man,a skilled worker whose job is to repair things
+65872,reparation,compensation (given or received) for an insult or injury; "an act for which there is no reparation"
+65873,reparation,(usually plural) compensation exacted from a defeated nation by the victors; "Germany was unable to pay the reparations demanded after World War I"
+65874,reparation amends,something done or paid in expiation of a wrong; "how can I make amends"
+65875,repartee,adroitness and cleverness in reply
+65876,repatriate,a person who has returned to the country of origin or whose citizenship has been restored
+65877,repatriation,the act of returning to the country of origin
+65878,repayment quittance,payment of a debt or obligation
+65879,repeat repetition,an event that repeats; "the events today were a repeat of yesterday's"
+65880,repeater,a person who repeats; "the audience consisted largely of repeaters who had seen the movie many times"
+65881,repeater,(electronics) electronic device that amplifies a signal before transmitting it again; "repeaters can be used in computer networks to extend cabling distances"
+65882,repeating_firearm repeater,a firearm that can fire several rounds without reloading
+65883,repechage,a race (especially in rowing) in which runners-up in the eliminating heats compete for a place in the final race
+65884,repellent repellant,a compound with which fabrics are treated to repel water
+65885,repellent repellant,a chemical substance that repels animals
+65886,repellent repellant,the power to repel; "she knew many repellents to his advances"
+65887,repentance penitence penance,remorse for your past conduct
+65888,repercussion reverberation,a remote or indirect consequence of some action; "his declaration had unforeseen repercussions"; "reverberations of the market crash were felt years later"
+65889,repertoire repertory,a collection of works (plays, songs, operas, ballets) that an artist or company can perform and do perform for short intervals on a regular schedule
+65890,repertory,a storehouse where a stock of things is kept
+65891,repertory repertoire,the entire range of skills or aptitudes or devices used in a particular field or occupation; "the repertory of the supposed feats of mesmerism"; "has a large repertory of dialects and characters"
+65892,repetition,the repeated use of the same word or word pattern as a rhetorical device
+65893,repetition repeating,the act of doing or performing again
+65894,repetitiveness repetitiousness,verboseness resulting from excessive repetitions
+65895,replaceability substitutability commutability,exchangeability by virtue of being replaceable
+65896,replacement replacing,the act of furnishing an equivalent person or thing in the place of another; "replacing the star will not be easy"
+65897,replacement_cost,current cost of replacing a fixed asset with a new one of equal effectiveness
+65898,replay instant_replay action_replay,the immediate rebroadcast of some action (especially sports action) that has been recorded on videotape
+65899,replay rematch,something (especially a game) that is played again
+65900,repletion satiety satiation,the state of being satisfactorily full and unable to take on more
+65901,repletion surfeit,eating until excessively full
+65902,replica replication reproduction,copy that is not the original; something that has been copied
+65903,replication,(genetics) the process whereby DNA makes a copy of itself before cell division
+65904,replication,(law) a pleading made by a plaintiff in reply to the defendant's plea or answer
+65905,replication,the repetition of an experiment in order to test the validity of its conclusion; "scientists will not believe an experimental result until they have seen at least one replication"
+65906,reply response,the speech act of continuing a conversational exchange; "he growled his reply"
+65907,report,a sharp explosive sound (especially the sound of a gun firing); "they heard a violent report followed by silence"
+65908,report account,the act of informing by verbal report; "he heard reports that they were causing trouble"; "by all accounts they were a happy couple"
+65909,report news_report story account write_up,a short account of the news; "the report of his speech"; "the story was on the 11 o'clock news"; "the account of his speech that was given on the evening news made the governor furious"
+65910,report study written_report,a written document describing the findings of some individual or group; "this accords with the recent study by Hill and Dale"
+65911,report_card report,a written evaluation of a student's scholarship and deportment; "his father signed his report card"
+65912,reporter newsman newsperson,a person who investigates and reports or edits news stories
+65913,reporting_weight,a person's body weight (as an athlete's) at the beginning of the season (when first reporting for practice)
+65914,repose quiet placidity serenity tranquillity tranquility,a disposition free from stress or emotion
+65915,repositing reposition storage warehousing,depositing in a warehouse; "they decided to reposition their furniture in a recommended repository in Brooklyn"; "my car is in storage"; "publishers reduced print runs to cut down the cost of warehousing"
+65916,repositioning,the act of placing in a new position
+65917,repository monument,a burial vault (usually for some famous person)
+65918,repository secretary,a person to whom a secret is entrusted
+65919,repossession,the action of regaining possession (especially the seizure of collateral securing a loan that is in default)
+65920,reprehensibility,being reprehensible; worthy of and deserving reprehension or reproof
+65921,representation,a body of legislators that serve in behalf of some constituency; "a Congressional vacancy occurred in the representation from California"
+65922,representation,a factual statement made by one party in order to induce another party to enter into a contract; "the sales contract contains several representations by the vendor"
+65923,representation,a statement of facts and reasons made in appealing or protesting; "certain representations were made concerning police brutality"
+65924,representation,the right of being represented by delegates who have a voice in some legislative body
+65925,representation,a creation that is a visual or tangible rendering of someone or something
+65926,representation,the act of representing; standing in for someone or some group and speaking with authority in their behalf
+65927,representation,an activity that stands as an equivalent of something or results in an equivalent
+65928,representation delegacy agency,the state of serving as an official and authorized delegate or agent
+65929,representation mental_representation internal_representation,a presentation to the mind in the form of an idea or image
+65930,representational_process,any basic cognitive process in which some entity comes to stand for or represent something else
+65931,representative,a person who represents others
+65932,repression,a state of forcible subjugation; "the long repression of Christian sects"
+65933,repression,(psychiatry) the classical defense mechanism that protects you from impulses or ideas that would cause anxiety by preventing them from becoming conscious
+65934,repression,the act of repressing; control by holding down; "his goal was the repression of insolence"
+65935,repressor represser,an agent that represses
+65936,repressor_gene,gene that prevents a nonallele from being transcribed
+65937,reprieve,a warrant granting postponement (usually to postpone the execution of the death sentence)
+65938,reprieve respite,a (temporary) relief from harm or discomfort
+65939,reprieve respite,the act of reprieving; postponing or remitting punishment
+65940,reprisal,a retaliatory action against an enemy in wartime
+65941,reproach,disgrace or shame; "he brought reproach upon his family"
+65942,reproach,a mild rebuke or criticism; "words of reproach"
+65943,reprobate miscreant,a person without moral scruples
+65944,reprobation,rejection by God; the state of being condemned to eternal misery in Hell
+65945,reprobation,severe disapproval
+65946,reproducer,an audio system that can reproduce and amplify signals to produce sound
+65947,reproducibility duplicability,the quality of being reproducible
+65948,reproduction,the process of generating offspring
+65949,reproduction procreation breeding facts_of_life,the sexual activity of conceiving and bearing offspring
+65950,reproduction replication,the act of making copies; "Gutenberg's reproduction of holy texts was far more efficient"
+65951,reproduction reproductive_memory,recall that is hypothesized to work by storing the original stimulus input and reproducing it during recall
+65952,reproduction_cost physical_value,cost of reproducing physical property minus various allowances (especially depreciation)
+65953,reproductive_cell germ_cell sex_cell,a spermatozoon or an ovum; a cell responsible for transmitting DNA to the next generation
+65954,reproductive_cloning,making a full living copy of an organism; requires a surrogate mother
+65955,reproductive_organ sex_organ,any organ involved in sexual reproduction
+65956,reproductive_structure,the parts of a plant involved in its reproduction
+65957,reproductive_system genital_system,organs and tissues involved in the production and maturation of gametes and in their union and subsequent development as offspring
+65958,reptile reptilian,any cold-blooded vertebrate of the class Reptilia including tortoises, turtles, snakes, lizards, alligators, crocodiles, and extinct forms
+65959,reptile_family,a family of reptiles
+65960,reptile_genus,a genus of reptiles
+65961,republic,a form of government whose head of state is not a monarch; "the head of state in a republic is usually a president"
+65962,republican,an advocate of a republic (usually in opposition to a monarchy)
+65963,republicanism,the political orientation of those who hold that a republic is the best form of government
+65964,republication,something that has been published again; a fresh publication (as of a literary work)
+65965,republication republishing,the act of publishing again
+65966,repudiation,refusal to acknowledge or pay a debt or honor a contract (especially by public authorities); "the repudiation of the debt by the city"
+65967,repudiation debunking,the exposure of falseness or pretensions; "the debunking of religion has been too successful"
+65968,repudiation renunciation,rejecting or disowning or disclaiming as invalid; "Congressional repudiation of the treaty that the President had negotiated"
+65969,repugnance repulsion revulsion horror,intense aversion
+65970,repulsion repulsive_force,the force by which bodies repel one another
+65971,repulsion standoff,the act of repulsing or repelling an attack; a successful defensive stand
+65972,reputation,notoriety for some particular characteristic; "his reputation for promiscuity"
+65973,reputation report,the general estimation that the public has for a person; "he acquired a reputation as an actor before he started writing"; "he was a person of bad report"
+65974,repute reputation,the state of being held in high esteem and honor
+65975,request asking,the verbal act of requesting
+65976,request petition postulation,a formal message requesting something that is submitted to an authority
+65977,requiem_shark,any of numerous sharks from small relatively harmless bottom-dwellers to large dangerous oceanic and coastal species
+65978,requiescat,a prayer for the repose of the soul of a dead person
+65979,required_course,a course that all students are required to take
+65980,requirement demand,required activity; "the requirements of his work affected his health"; "there were many demands on his time"
+65981,requirements_contract,a contract in which you agree to purchase all your requirements of a particular sort from one party
+65982,requisiteness,the state of being absolutely required
+65983,requisition,the act of requiring; an authoritative request or demand, especially by a military or public authority that takes something over (usually temporarily) for military or public use
+65984,requisition requisition_form,an official form on which a request in made; "first you have to fill out the requisition"
+65985,requital payment,an act of requiting; returning in kind
+65986,rerebrace upper_cannon,cannon that provides plate armor for the upper arm
+65987,rerun,a program that is broadcast again; "she likes to watch `I love Lucy' reruns"
+65988,res_gestae,rule of evidence that covers words that are so closely associated with an occurrence that the words are considered part of the occurrence and as such their report does not violate the hearsay rule
+65989,res_gestae,things done
+65990,res_ipsa_loquitur,a rule of evidence whereby the negligence of an alleged wrongdoer can be inferred from the fact that the accident happened
+65991,res_judicata res_adjudicata,a matter already settled in court; cannot be raised again
+65992,resale,the selling of something purchased
+65993,rescript,a reply by a Pope to an inquiry concerning a point of law or morality
+65994,rescue deliverance delivery saving,recovery or preservation from loss or danger; "work is the deliverance of mankind"; "a surgeon's job is the saving of lives"
+65995,rescue_equipment,equipment used to rescue passengers in case of emergency
+65996,rescue_operation,an operation organized to free from danger or confinement
+65997,rescue_party,a party of rescuers
+65998,rescuer recoverer saver,someone who saves something from danger or violence
+65999,research,systematic investigation to establish facts
+66000,research_center research_facility,a center where research is done
+66001,research_colloquium,a colloquium at which the results of (scientific) research are reported
+66002,research_director director_of_research,a supervisor in a research center
+66003,research_staff,a group of associated research workers in a university or library or laboratory
+66004,research_worker researcher investigator,a scientist who devotes himself to doing research
+66005,reseau,a net or mesh foundation for lace
+66006,reseau,a network of fine lines used by astronomers as a reference for measurements on star photographs
+66007,resection,surgical removal of part of a structure or organ
+66008,reseda,any plant of the genus Reseda
+66009,resemblance,similarity in appearance or external or superficial details
+66010,resentment bitterness gall rancor rancour,a feeling of deep and bitter anger and ill-will
+66011,reserpine Raudixin Rau-Sed Sandril Serpasil,antihypertensive consisting of an alkaloid extracted from the plant Rauwolfia serpentina (trade names Raudixin or Rau-Sed or Sandril or Serpasil)
+66012,reservation,the written record or promise of an arrangement by which accommodations are secured in advance
+66013,reservation,something reserved in advance (as a hotel accommodation or a seat on a plane etc.)
+66014,reservation,the act of keeping back or setting aside for some future occasion
+66015,reservation qualification,a statement that limits or restricts some claim; "he recommended her without any reservations"
+66016,reservation reserve,a district that is reserved for particular purpose
+66017,reserve,(medicine) potential capacity to respond in order to maintain vital functions
+66018,reserve backlog stockpile,something kept back or saved for future use or a special purpose
+66019,reserve reticence taciturnity,the trait of being uncommunicative; not volunteering anything more than necessary
+66020,reserve_account reserve_fund,funds taken out of earnings to provide for anticipated future payments
+66021,reserve_assets,capital held back from investment in order to meet probable or possible demands
+66022,reserve_clause,a clause that used to be part of the contract with a professional athlete extending the contract for a year beyond its expiration; "the reserve clause was used to bind players to a particular ball club"
+66023,reservist,a member of a military reserve
+66024,reservoir,a large or extra supply of something; "a reservoir of talent"
+66025,reservoir,tank used for collecting and storing a liquid (as water or oil)
+66026,reservoir artificial_lake man-made_lake,lake used to store water for community use
+66027,reservoir source,anything (a person or animal or plant or substance) in which an infectious agent normally lives and multiplies; "an infectious agent depends on a reservoir for its survival"
+66028,reset,device for resetting instruments or controls
+66029,reset_button,a push button that you press to activate the reset mechanism
+66030,resettlement relocation,the transportation of people (as a family or colony) to a new settlement (as after an upheaval of some kind)
+66031,resh,the 20th letter of the Hebrew alphabet
+66032,reshipment,the act of shipping again (especially by transferring to another ship)
+66033,reshuffle,a redistribution of something; "there was a reshuffle of cabinet officers"
+66034,reshuffle reshuffling,shuffling again; "the gambler demanded a reshuffle"
+66035,residence,the official house or establishment of an important person (as a sovereign or president); "he refused to live in the governor's residence"
+66036,residence abode,any address at which you dwell more than temporarily; "a person can have several residences"
+66037,residence_time,the period of time spent in a particular place
+66038,residency,the position of physician who is receiving special training in a hospital (usually after completing an internship)
+66039,residency residence abidance,the act of dwelling in a place
+66040,resident occupant occupier,someone who lives at a particular place for a prolonged period or who was born there
+66041,resident_commissioner,the representative of Puerto Rico in the United States House of Representatives
+66042,residential_district residential_area community,a district where people live; occupied primarily by private residences
+66043,residual,(often plural) a payment that is made to a performer or writer or director of a television show or commercial that is paid for every repeat showing; "he could retire on his residuals"
+66044,residual_oil resid,oil products that remain after petroleum has been distilled
+66045,residual_soil residual_clay,the soil that is remaining after the soluble elements have been dissolved
+66046,residue,matter that remains after something has been removed
+66047,resignation,the act of giving up (a claim or office or possession etc.)
+66048,resignation,a formal document giving notice of your intention to resign; "he submitted his resignation as of next month"
+66049,resignation surrender,acceptance of despair
+66050,resilience resiliency,an occurrence of rebounding or springing back
+66051,resilience resiliency,the physical property of a material that can return to its original shape or position after deformation that does not exceed its elastic limit
+66052,resin rosin,any of a class of solid or semisolid viscous substances obtained either as exudations from certain plants or prepared by polymerization of simple molecules
+66053,resinoid,a plastic containing resins
+66054,resistance,the capacity of an organism to defend itself against harmful environmental agents; "these trees are widely planted because of their resistance to salt and smog"
+66055,resistance,any mechanical force that tends to retard or oppose motion
+66056,resistance,the degree of unresponsiveness of a disease-causing microorganism to antibiotics or other drugs (as in penicillin-resistant bacteria)
+66057,resistance,(psychiatry) an unwillingness to bring repressed feelings into conscious awareness
+66058,resistance,group action in opposition to those in power
+66059,resistance,the military action of resisting the enemy's advance; "the enemy offered little resistance"
+66060,resistance opposition,the action of opposing something that you disapprove or disagree with; "he encountered a general feeling of resistance from many citizens"; "despite opposition from the newspapers he went ahead"
+66061,resistance_pyrometer,pyrometer that measures high temperatures by the resistance in a heated wire
+66062,resistance_thermometer platinum_thermometer,thermometer that measures temperature by changes in the resistance of a spiral of platinum wire
+66063,resistance_unit,the reciprocal of conductance
+66064,resisting_arrest,physical efforts to oppose a lawful arrest; the resistance is classified as assault and battery upon the person of the police officer attempting to make the arrest
+66065,resistor resistance,an electrical device that resists the flow of electrical current
+66066,resoluteness firmness firmness_of_purpose resolve resolution,the trait of being resolute; "his resoluteness carried him through the battle"; "it was his unshakeable resolution to finish the work"
+66067,resolution,(computer science) the number of pixels per square inch on a computer-generated display; the greater the resolution, the better the picture
+66068,resolution,the subsidence of swelling or other signs of inflammation (especially in a lung)
+66069,resolution,(music) a dissonant chord is followed by a consonant chord
+66070,resolution,a decision to do something or to behave in a certain manner; "he always wrote down his New Year's resolutions"
+66071,resolution declaration resolve,a formal expression by a meeting; agreed to by a vote
+66072,resolution resolving,analysis into clear-cut components
+66073,resolution solving,finding a solution to a problem
+66074,resolving_power resolution,the ability of a microscope or telescope to measure the angular separation of images that are close together
+66075,resonance,an excited state of a stable particle causing a sharp maximum in the probability of absorption of electromagnetic radiation
+66076,resonance,a vibration of large amplitude produced by a relatively small vibration near the same frequency of vibration as the natural frequency of the resonating system
+66077,resonance,the quality imparted to voiced speech sounds by the action of the resonating chambers of the throat and mouth and nasal cavities
+66078,resonator,any system that resonates
+66079,resonator cavity_resonator resonating_chamber,a hollow chamber whose dimensions allow the resonant oscillation of electromagnetic or acoustic waves
+66080,resonator resonant_circuit,an electrical circuit that combines capacitance and inductance in such a way that a periodic electric oscillation will reach maximum amplitude
+66081,resorcinol,a crystalline phenol obtained from various resins; used in ointments for acne and in dandruff shampoos
+66082,resorption reabsorption,the organic process in which the substance of some differentiated structure that has been produced by the body undergoes lysis and assimilation
+66083,resort resort_hotel holiday_resort,a hotel located in a resort area
+66084,resort_area playground vacation_spot,an area where many people go for recreation
+66085,resort_hotel spa,a fashionable hotel usually in a resort area
+66086,resource,available source of wealth; a new or reserve supply that can be drawn upon when needed
+66087,resource,a source of aid or support that may be drawn upon when needed; "the local library is a valuable resource"
+66088,resource resourcefulness imagination,the ability to deal resourcefully with unusual problems; "a man of resource"
+66089,resourcefulness,the quality of being able to cope with a difficult situation; "a man of great resourcefulness"
+66090,respect esteem regard,an attitude of admiration or esteem; "she lost all respect for him"
+66091,respect regard,(usually preceded by `in') a detail or point; "it differs in that respect"
+66092,respectability reputability,honorableness by virtue of being respectable and having a good reputation
+66093,respecter,a person who respects someone or something; usually used in the negative; "X is no respecter of Y"
+66094,respects,(often used with `pay') a formal expression of esteem; "he paid his respects to the mayor"
+66095,respiration,a single complete act of breathing in and out; "thirty respirations per minute"
+66096,respiration internal_respiration cellular_respiration,the metabolic processes whereby certain organisms obtain energy from organic molecules; processes that take place in the cells and tissues during which energy is released and carbon dioxide is produced and absorbed by the blood to be transported to the lungs
+66097,respirator inhalator,a breathing device for administering long-term artificial respiration
+66098,respiratory_acidosis carbon_dioxide_acidosis,acidosis resulting from reduced gas exchange in the lungs (as in emphysema or pneumonia); excess carbon dioxide combines with water to form carbonic acid which increases the acidity of the blood
+66099,respiratory_alkalosis,alkalosis resulting from increased gas exchange in the lungs (as in hyperventilation associated with extreme anxiety or aspirin intoxication or metabolic acidosis)
+66100,respiratory_center,the center in the medulla oblongata and pons that integrates sensory information about the level of oxygen and carbon dioxide in the blood and determines the signals to be sent to the respiratory muscles
+66101,respiratory_disease respiratory_illness respiratory_disorder,a disease affecting the respiratory system
+66102,respiratory_distress_syndrome respiratory_distress_syndrome_of_the_newborn hyaline_membrane_disease,an acute lung disease of the newborn (especially the premature newborn); lungs cannot expand because of a wetting agent is lacking; characterized by rapid shallow breathing and cyanosis and the formation of a glassy hyaline membrane over the alveoli
+66103,respiratory_organ,any organ involved in the process of respiration
+66104,respiratory_quotient,the ratio of the volume of carbon dioxide expired to the volume of oxygen consumed by an organism or cell in a given period of time
+66105,respiratory_rate rate_of_respiration,the rate at which a person inhales and exhales; usually measured to obtain a quick evaluation of a person's health
+66106,respiratory_syncytial_virus,a paramyxovirus that forms syncytia in tissue culture and that is responsible for severe respiratory diseases such as bronchiolitis and bronchial pneumonia (especially in children)
+66107,respiratory_system systema_respiratorium,the system for taking in oxygen and giving off carbon dioxide; in terrestrial animals this is accomplished by breathing
+66108,respiratory_tract airway,the passages through which air enters and leaves the body
+66109,respiratory_tract_infection respiratory_infection,any infection of the respiratory tract
+66110,respite recess break time_out,a pause from doing something (as work); "we took a 10-minute break"; "he took time out to recuperate"
+66111,respite rest relief rest_period,a pause for relaxation; "people actually accomplish more when they take time for short rests"
+66112,resplendent_quetzel resplendent_trogon Pharomacrus_mocino,very rare Central American bird; the national bird of Guatemala
+66113,respondent,the codefendant (especially in a divorce proceeding) who is accused of adultery with the corespondent
+66114,respondent responder answerer,someone who responds
+66115,response,a result; "this situation developed in response to events in Africa"
+66116,response,a phrase recited or sung by the congregation following a versicle by the priest or minister
+66117,response,the manner in which an electrical or mechanical device responds to an input signal or a range of input signals
+66118,responsibility responsibleness,a form of trustworthiness; the trait of being answerable to someone for something or being responsible for one's conduct; "he holds a position of great responsibility"
+66119,responsiveness,the quality of being responsive; reacting quickly; as a quality of people, it involves responding with emotion to people and events
+66120,responsiveness reactivity,responsive to stimulation
+66121,rest,a state of inaction; "a body will continue in a state of rest until acted upon"
+66122,rest,a musical notation indicating a silence of a specified duration
+66123,rest,a support on which things can be put; "the gun was steadied on a special rest"
+66124,rest ease repose relaxation,freedom from activity (work or strain or responsibility); "took his repose by the swimming pool"
+66125,rest eternal_rest sleep eternal_sleep quietus,euphemisms for death (based on an analogy between lying in a bed and in a tomb); "she was laid to rest beside her husband"; "they had to put their family pet to sleep"
+66126,rest-cure,rest as a medical treatment for stress or anxiety etc.
+66127,rest_day day_of_rest,a day set aside for rest
+66128,rest_energy,the energy equivalent to the mass of a particle at rest in an inertial frame of reference; equal to the rest mass times the square of the speed of light
+66129,rest_house,a building used for shelter by travelers (especially in areas where there are no hotels)
+66130,rest_mass,(physics) the mass of a body as measured when the body is at rest relative to an observer, an inherent property of the body
+66131,restatement,a revised statement
+66132,restaurant eating_house eating_place eatery,a building where people go to eat
+66133,restaurant_chain,a chain of restaurants
+66134,restaurateur restauranter,the proprietor of a restaurant
+66135,rester,a person who rests
+66136,restfulness,the attribute of being restful; "he longed for the restfulness of home"
+66137,restharrow rest-harrow Ononis_repens,European woody plant having pink flowers and unifoliate leaves and long tough roots; spreads by underground runners
+66138,restharrow rest-harrow Ononis_spinosa,Eurasian plant having loose racemes of pink or purple flowers and spiny stems and tough roots
+66139,resting_potential,the potential difference between the two sides of the membrane of a nerve cell when the cell is not conducting an impulse
+66140,resting_spore,a spore of certain algae or fungi that lies dormant; may germinate after a prolonged period
+66141,restitution,the act of restoring something to its original state
+66142,restitution return restoration regaining,getting something back again; "upon the restitution of the book to its rightful owner the child was given a tongue lashing"
+66143,restless_legs_syndrome restless_legs Ekbom_syndrome,feeling of uneasiness and restlessness in the legs after going to bed (sometimes causing insomnia); may be relieved temporarily by walking or moving the legs
+66144,restlessness,the quality of being ceaselessly moving or active; "the restlessness of the wind"
+66145,restlessness impatience,a lack of patience; irritation with anything that causes delay
+66146,restlessness uneasiness queasiness,inability to rest or relax or be still
+66147,restoration,some artifact that has been restored or reconstructed; "the restoration looked exactly like the original"
+66148,restoration,a model that represents the landscape of a former geological age or that represents and extinct animal etc.
+66149,restoration,the act of restoring something or someone to a satisfactory state
+66150,restrainer,a chemical that is added to a photographic developer in order to retard development and reduce the amount of fog on a film
+66151,restrainer controller,a person who directs and restrains
+66152,restraint,a rule or condition that limits freedom; "legal restraints"; "restraints imposed on imports"
+66153,restraint,the act of controlling by restraining someone or something; "the unlawful restraint of trade"
+66154,restraint constraint,a device that retards something's motion; "the car did not have proper restraints fitted"
+66155,restraint control,discipline in personal and social activities; "he was a model of polite restraint"; "she never lost control of herself"
+66156,restraint_of_trade,any act that tends to prevent free competition in business
+66157,restriction confinement,the act of keeping something within specified bounds (by force if necessary); "the restriction of the infection to a focal area"
+66158,restriction limitation,a principle that limits the extent of something; "I am willing to accept certain restrictions on my movements"
+66159,restriction_endonuclease restriction_nuclease restriction_enzyme,any of the enzymes that cut nucleic acid at specific restriction sites and produce restriction fragments; obtained from bacteria (where they cripple viral invaders); used in recombinant DNA technology
+66160,restriction_fragment,the fragment of DNA that is produced by cleaving DNA with a restriction enzyme
+66161,restriction_site,the specific sites at which a restriction enzyme will cleave DNA
+66162,restrictive_clause,a subordinate clause that limits or restricts the meaning of the noun phrase it modifies
+66163,restrictiveness,a grammatical qualification that makes the meaning more specific (`red hat' has a more specific meaning than `hat')
+66164,result resultant final_result outcome termination,something that results; "he listened for the results on the radio"
+66165,resultant end_point,the final point in a process
+66166,resultant_role result,the semantic role of the noun phrase whose referent exists only by virtue of the activity denoted by the verb in the clause
+66167,resulting_trust,a trust created by a court when it is judged that it was the intention of the parties to create a trust
+66168,resumption recommencement,beginning again
+66169,resurrection,a revival from inactivity and disuse; "it produced a resurrection of hope"
+66170,resurrection_plant rose_of_Jericho Selaginella_lepidophylla,densely tufted fern ally of southwestern United States to Peru; curls up in a tight ball when dry and expands and grows under moist conditions
+66171,resurvey,a new survey or study
+66172,resuscitation,the act of reviving a person and returning them to consciousness; "although he was apparently drowned, resuscitation was accomplished by artificial respiration"
+66173,resuscitator,a breathing apparatus used for resuscitation by forcing oxygen into the lungs of a person who has undergone asphyxia or arrest of respiration
+66174,resuspension,a renewed suspension of insoluble particles after they have been precipitated
+66175,retail,the selling of goods to consumers; usually in small quantities and not for resale
+66176,retail_chain,a chain of retail stores
+66177,retail_price_index,an index of changes in retail prices
+66178,retailer retail_merchant,a merchant who sells goods at retail
+66179,retailing,the activities involved in selling commodities directly to consumers
+66180,retained_object,an object in a passive construction
+66181,retainer,a dental appliance that holds teeth (or a prosthesis) in position after orthodontic treatment
+66182,retainer consideration,a fee charged in advance to retain the services of someone
+66183,retaining_wall,a wall that is built to resist lateral pressure (especially a wall built to prevent the advance of a mass of earth)
+66184,retake,a shot or scene that is photographed again
+66185,retaliation revenge,action taken in return for an injury or offense
+66186,retaliatory_eviction,an eviction in reprisal for the tenant's good-faith complaints against the landlord; illegal in many states
+66187,retardant retardent retardation,any agent that retards or delays or hinders; "flame-retardant"
+66188,retardation,the extent to which something is delayed or held back
+66189,retardation mental_retardation backwardness slowness subnormality,lack of normal development of intellectual capacities
+66190,retarded_depression,a state of clinical depression in which the individual is lethargic and slow to initiate action
+66191,rete_testis,network of tubules carrying sperm from the seminiferous tubules to the vasa efferentia
+66192,retem raetam juniper_bush juniper Retama_raetam Genista_raetam,desert shrub of Syria and Arabia having small white flowers; constitutes the juniper of the Old Testament; sometimes placed in genus Genista
+66193,retention keeping holding,the act of retaining something
+66194,retention_basin,a storage site similar to a detention basin but the water in storage is permanently obstructed from flowing downstream
+66195,retentiveness retentivity,the property of retaining possessions that have been acquired
+66196,retentiveness retentivity retention,the power of retaining liquid; "moisture retentivity of soil"
+66197,reticle reticule graticule,a network of fine lines, dots, cross hairs, or wires in the focal plane of the eyepiece of an optical instrument
+66198,reticular_activating_system RAS,the network in the reticular formation that serves an alerting or arousal function
+66199,reticular_formation RF,a complex neural network in the central core of the brainstem; monitors the state of the body and functions in such processes as arousal and sleep and attention and muscle tone
+66200,reticulated_python Python_reticulatus,of southeast Asia and East Indies; the largest snake in the world
+66201,reticulation,(photography) the formation of a network of cracks or wrinkles in a photographic emulsion
+66202,reticulation,an arrangement resembling a net or network; "the reticulation of a leaf"; "the reticulation of a photographic emulsion"
+66203,reticule,a woman's drawstring handbag; usually made of net or beading or brocade; used in 18th and 19th centuries
+66204,reticulocyte,an immature red blood cell containing a network of filaments or granules
+66205,reticuloendothelial_system RES,a widely distributed system consisting of all the cells able to ingest bacteria or colloidal particles etc, except for certain white blood cells
+66206,reticulum,any fine network (especially one in the body composed of cells or blood vessels)
+66207,reticulum second_stomach,the second compartment of the stomach of a ruminant
+66208,retina,the innermost light-sensitive membrane covering the back wall of the eyeball; it is continuous with the optic nerve
+66209,retinal_detachment detachment_of_the_retina detached_retina,visual impairment resulting from the retina becoming separated from the choroid in the back of the eye; treated by photocoagulation
+66210,retinal_scanning,biometric identification by scanning the retina of the eye; "identification by retinal scanning is complicated by eye movements"
+66211,retinene retinal,either of two yellow to red retinal pigments formed from rhodopsin by the action of light
+66212,retinitis,inflammation of the retina
+66213,retinoblastoma,malignant ocular tumor of retinal cells; usually occurs before the third year of life; composed of primitive small round retinal cells
+66214,retinopathy,a disease of the retina that can result in loss of vision
+66215,retiree retired_person,someone who has retired from active working
+66216,retirement,the state of being retired from one's business or occupation
+66217,retirement,withdrawal from your position or occupation
+66218,retirement retreat,withdrawal for prayer and study and meditation; "the religious retreat is a form of vacation activity"
+66219,retirement_community retirement_complex,a planned community for residents who have retired from an active working life
+66220,retort,a vessel where substances are distilled or decomposed by heat
+66221,retraction,the act of pulling or holding or drawing a part back; "the retraction of the landing gear"; "retraction of the foreskin"
+66222,retraction abjuration recantation,a disavowal or taking back of a previous assertion
+66223,retractor,surgical instrument that holds back the edges of a surgical incision
+66224,retraining,training for a new occupation
+66225,retread recap,a used automobile tire that has been remolded to give it new treads
+66226,retreat,a place of privacy; a place affording peace and quiet
+66227,retreat,(military) a signal to begin a withdrawal from a dangerous position
+66228,retreat,(military) a bugle call signaling the lowering of the flag at sunset
+66229,retreat,(military) withdrawal of troops to a more favorable position to escape the enemy's superior forces or after a defeat; "the disorderly retreat of French troops"
+66230,retreat,the act of withdrawing or going backward (especially to escape something hazardous or unpleasant)
+66231,retreatant,a participant in a religious retreat
+66232,retreated,people who have retreated; "he had only contempt for the retreated"
+66233,retrenchment,entrenchment consisting of an additional interior fortification to prolong the defense
+66234,retrenchment curtailment downsizing,the reduction of expenditures in order to become financially stable
+66235,retrial,a new trial in which issues already litigated and to which the court has already rendered a verdict or decision are reexamined by the same court; occurs when the initial trial is found to have been improper or unfair due to procedural errors
+66236,retribution,the act of correcting for your wrongdoing
+66237,retribution requital,a justly deserved penalty
+66238,retrieval,(computer science) the operation of accessing information from the computer's memory
+66239,retrieval,the cognitive operation of accessing information in memory; "my retrieval of people's names is very poor"
+66240,retriever,a dog with heavy water-resistant coat that can be trained to retrieve game
+66241,retro,a fashion reminiscent of the past
+66242,retrobulbar_neuritis,inflammation of the optic nerve behind the eye; common in multiple sclerosis
+66243,retrofit,a component or accessory added to something after it has been manufactured
+66244,retrofit,the act of adding a component or accessory to something that did not have it when it was manufactured; "the court ordered a retrofit on all automobiles"
+66245,retroflection retroflexion,an articulatory gesture made by turning the tip of the tongue back against the roof of the mouth
+66246,retroflection retroflexion,the act of bending backward
+66247,retrograde_amnesia,loss of memory for events immediately preceding a trauma
+66248,retromandibular_vein vena_retromandibularis posterior_facial_vein,posterior branch of the facial vein; formed by temporal veins in front of the ear
+66249,retronym,a word introduced because an existing term has become inadequate; "Nobody ever heard of analog clocks until digital clocks became common, so `analog clock' is a retronym"
+66250,retrorocket,a small rocket engine on a larger rocket or spacecraft that is fired to slow or alter its course
+66251,retrospect,contemplation of things past; "in retrospect"
+66252,retrospection,reference to things past; "the story begins with no introductory retrospections"
+66253,retrospection,memory for experiences that are past; "some psychologists tried to contrast retrospection and introspection"
+66254,retrospective,an exhibition of a representative selection of an artist's life work
+66255,retroversion,translation back into the original language; "the teacher translated Latin texts into English which he gave to his students for retroversion"
+66256,retroversion retroflection retroflexion,a turning or tilting backward of an organ or body part; "retroversion of the uterus"
+66257,retrovirus,any of a group of viruses that contain two single-strand linear RNA molecules per virion and reverse transcriptase (RNA to DNA); the virus transcribes its RNA into a cDNA provirus that is then incorporated into the host cell
+66258,retrovision,a vision of events in the distant past
+66259,retsina,Greek wine flavored with resin
+66260,return,a tennis stroke that sends the ball back to the other player; "he won the point on a cross-court return"
+66261,return,(American football) the act of running back the ball after a kickoff or punt or interception or fumble
+66262,return,the act of going back to a prior location; "they set out on their return to the base camp"
+66263,return coming_back,the occurrence of a change in direction back in the opposite direction
+66264,return homecoming,a coming to or returning home; "on his return from Australia we gave him a welcoming party"
+66265,return issue take takings proceeds yield payoff,the income or profit arising from such transactions as the sale of land or other property; "the average return was about 5%"
+66266,return paying_back getting_even,a reciprocal group action; "in return we gave them as good as we got"
+66267,return_address,the address of the sender of a letter or parcel indicating where it should be returned if it cannot be delivered
+66268,return_key return,the key on electric typewriters or computer keyboards that causes a carriage return and a line feed
+66269,return_on_invested_capital return_on_investment ROI,(corporate finance) the amount, expressed as a percentage, that is earned on a company's total capital calculated by dividing the total capital into earnings before interest, taxes, or dividends are paid
+66270,returning_officer,the official in each electorate who holds the election and returns the results
+66271,reunion,a party of former associates who have come together again
+66272,reunion reunification,the act of coming together again; "monetary unification precipitated the reunification of the German state in October 1990"
+66273,reuptake re-uptake,a process of using up or consuming again; "psychopharmacologists discovered that amine reuptake is a process that inactivates monoamine neurotransmitters"
+66274,reusable_program,a program that can be loaded once and executed repeatedly
+66275,reusable_routine,a routine that can be loaded once and executed repeatedly
+66276,revealed_religion,a religion founded primarily on the revelations of God to humankind
+66277,reveille,a signal to get up in the morning; in the military it is a bugle call at sunrise
+66278,reveille wake-up_signal,(military) signal to wake up
+66279,revel revelry,unrestrained merrymaking
+66280,revelation,an enlightening or astonishing disclosure
+66281,revelation divine_revelation,communication of knowledge to man by a divine or supernatural agency
+66282,reveler reveller merrymaker,a celebrant who shares in a noisy party; "the clubs attract revelers as young as thirteen"
+66283,revenant,a person who returns after a lengthy absence
+66284,revenant,someone who has returned from the dead
+66285,revenue_bond,a bond issued by an agency that is commissioned to finance public works; revenue from the public property is used to pay off the bond
+66286,revenue_sharing,distribution of part of the federal tax income to states and municipalities
+66287,revenue_stamp stamp,a small piece of adhesive paper that is put on an object to show that a government tax has been paid
+66288,revenue_tariff,a tariff imposed to raise revenue
+66289,revenuer,a government agent responsible for collecting revenue (especially one responsible for stopping bootlegging)
+66290,reverberatory_furnace,a furnace in which the material that is being treated is heated indirectly by flames that are directed at the roof and walls of the furnace
+66291,reverence,a reverent mental attitude
+66292,reverence,an act showing respect (especially a bow or curtsy)
+66293,reverie revery,an abstracted state of absorption
+66294,reverie revery daydream daydreaming oneirism air_castle castle_in_the_air castle_in_Spain,absentminded dreaming while awake
+66295,revers revere,a lapel on a woman's garment; turned back to show the reverse side
+66296,reversal,a judgment by a higher court that the judgment of a lower court was incorrect and should be set aside
+66297,reversal,a change from one state to the opposite state; "there was a reversal of autonomic function"
+66298,reversal change_of_mind flip-flop turnabout turnaround,a decision to reverse an earlier decision
+66299,reversal turn_around,turning in an opposite direction or position; "the reversal of the image in the lens"
+66300,reverse,(American football) a running play in which a back running in one direction hands the ball to a back running in the opposite direction
+66301,reverse contrary opposite,a relation of direct opposition; "we thought Sue was older than Bill but just the reverse was true"
+66302,reverse reversal setback blow black_eye,an unfortunate happening that hinders or impedes; something that is thwarting or frustrating
+66303,reverse reverse_gear,the gears by which the motion of a machine can be reversed
+66304,reverse verso,the side of a coin or medal that does not bear the principal design
+66305,reverse_hang,a hang with the arms extended in back
+66306,reverse_osmosis,(chemistry) a method of producing pure water; a solvent passes through a semipermeable membrane in a direction opposite to that for natural osmosis when it is subjected to a hydrostatic pressure greater than the osmotic pressure
+66307,reverse_split reverse_stock_split split_down,a decrease in the number of outstanding shares of a corporation without changing the shareholders' equity
+66308,reverse_transcriptase,a polymerase that catalyzes the formation of DNA using RNA as a template; found especially in retroviruses
+66309,reverse_transcriptase_inhibitor,an antiviral drug that inhibits the action of reverse transcriptase in retroviruses such as HIV
+66310,reversibility,the quality of being reversible in either direction
+66311,reversible,a garment (especially a coat) that can be worn inside out (with either side of the cloth showing)
+66312,reversible_process,any process in which a system can be made to pass through the same states in the reverse order when the process is reversed
+66313,reversing_thermometer,a thermometer that registers the temperature in deep waters
+66314,reversion,(law) an interest in an estate that reverts to the grantor (or his heirs) at the end of some period (e.g., the death of the grantee)
+66315,reversion,(genetics) a return to a normal phenotype (usually resulting from a second mutation)
+66316,reversion reverse reversal turnabout turnaround,turning in the opposite direction
+66317,reversionary_annuity survivorship_annuity,an annuity payable to one person in the event that someone else is unable to receive it
+66318,reversioner,(law) a party who is entitled to an estate in reversion
+66319,revetment,a barrier against explosives
+66320,revetment revetement stone_facing,a facing (usually masonry) that supports an embankment
+66321,review,a periodical that publishes critical essays on current affairs or literature or art
+66322,review,(law) a judicial reexamination of the proceedings of a court (especially by an appellate court)
+66323,review brushup,practice intended to polish performance or refresh the memory
+66324,review critique critical_review review_article,an essay or article that gives a critical evaluation (as of a book or play)
+66325,review limited_review,(accounting) a service (less exhaustive than an audit) that provides some assurance to interested parties as to the reliability of financial data
+66326,review_copy,a copy of a newly published book that is sent for review to a writer or periodical
+66327,reviewer referee reader,someone who reads manuscripts and judges their suitability for publication
+66328,reviewing_stand,a stand from which a parade or military force can be reviewed
+66329,revision alteration,the act of revising or altering (involving reconsideration and modification); "it would require a drastic revision of his opinion"
+66330,revision revisal revise rescript,the act of rewriting something
+66331,revisionism,any dangerous departure from the teachings of Marx
+66332,revisionism,a moderate evolutionary form of Marxism
+66333,revisionist,a Communist who tries to rewrite Marxism to justify a retreat from the revolutionary position
+66334,revival resurgence revitalization revitalisation revivification,bringing again into activity and prominence; "the revival of trade"; "a revival of a neglected play by Moliere"; "the Gothic revival in architecture"
+66335,revival revival_meeting,an evangelistic meeting intended to reawaken interest in religion
+66336,revivalism,an attempt to reawaken the evangelical faith
+66337,revocation,the act (by someone having the authority) of annulling something previously done; "the revocation of a law"
+66338,revocation annulment,the state of being cancelled or annulled
+66339,revoke renege,the mistake of not following suit when able to do so
+66340,revolution,a drastic and far-reaching change in ways of thinking and behaving; "the industrial revolution was also a cultural revolution"
+66341,revolution,the overthrow of a government by those who are governed
+66342,revolutionary_group,a political unit organized to promote revolution
+66343,revolutionism,a belief in the spread of revolutionary principles
+66344,revolutionist revolutionary subversive subverter,a radical supporter of political or social revolution
+66345,revolutions_per_minute rpm rev,rate of revolution of a motor; "the engine was doing 6000 revs"
+66346,revolver six-gun six-shooter,a pistol with a revolving cylinder (usually having six chambers for bullets)
+66347,revolving_charge_account,a charge account that does not have to be paid to zero balance
+66348,revolving_door,an organization or institution with a high rate of turnover of personnel or membership
+66349,revolving_door revolver,a door consisting of four orthogonal partitions that rotate about a central pivot; a door designed to equalize the air pressure in tall buildings
+66350,revolving_fund,a fund which, if borrowed or used, is intended to be replenished so it may be loaned or spent repeatedly
+66351,revue review,a variety show with topical sketches and songs and dancing and comedians
+66352,rewa-rewa New_Zealand_honeysuckle,slender elegant tree of New Zealand having racemes of red flowers and yielding valuable mottled red timber
+66353,reward,payment made in return for a service rendered
+66354,reward,the offer of money for helping to find a criminal or for returning lost property
+66355,reward reinforcement,an act performed to strengthen approved behavior
+66356,rewording recasting rephrasing,changing a particular word or phrase
+66357,rewrite revision rescript,something that has been written again; "the rewrite was much better"
+66358,rewriting revising,editing that involves writing something again
+66359,rex_begonia king_begonia painted-leaf_begonia beefsteak_geranium Begonia_rex,any of numerous usually rhizomatous hybrid begonias derived from an East Indian plant having rough-textured leaves patterned in silver and bronze and purple and red-brown with inconspicuous flowers
+66360,rhabdomyoma,benign tumor of striated muscle
+66361,rhabdomyosarcoma rhabdosarcoma,a highly malignant neoplasm derived from striated muscle
+66362,rhabdovirus,any of a group of arboviruses including those causing rabies
+66363,rhagades,cracks or fissures in the skin (especially around the mouth or anus)
+66364,rhapsody,an enthusiastic expression of emotion; "rhapsodies of joy"
+66365,rhapsody,(music) a free instrumental composition in one extended movement; typically emotional or exuberant in character
+66366,rhapsody,(in ancient Greece) an epic poem adapted for recitation
+66367,rhea Rhea_americana,larger of two tall fast-running flightless birds similar to ostriches but three-toed; found from Brazil to Patagonia
+66368,rhea nandu Pterocnemia_pennata,smaller of two tall fast-running flightless birds similar to ostriches but three-toed; found from Peru to Strait of Magellan
+66369,rhenium Re atomic_number_75,a rare heavy polyvalent metallic element that resembles manganese chemically and is used in some alloys; is obtained as a by-product in refining molybdenum
+66370,rheology,the branch of physics that studies the deformation and flow of matter
+66371,rheometer,an instrument for measuring the flow of liquids (especially arterial blood)
+66372,rheostat variable_resistor,resistor for regulating current
+66373,rhesus rhesus_monkey Macaca_mulatta,of southern Asia; used in medical research
+66374,rhesus_factor Rh_factor Rh,a blood group antigen possessed by Rh-positive people; if an Rh-negative person receives a blood transfusion from an Rh-positive person it can result in hemolysis and anemia
+66375,rhetoric,using language effectively to please or persuade
+66376,rhetoric,study of the technique and rules for using language effectively (especially in public speaking)
+66377,rhetorical_device,a use of language that creates a literary effect (but often without regard for literal significance)
+66378,rhetorical_question,a statement that is formulated as a question but that is not supposed to be answered; "he liked to make his points with rhetorical questions"
+66379,rheum,a watery discharge from the mucous membranes (especially from the eyes or nose)
+66380,rheumatic,a person suffering with rheumatism
+66381,rheumatic_aortitis,aortitis occurring in rheumatic fever
+66382,rheumatic_fever,a severe disease chiefly of children and characterized by painful inflammation of the joints and frequently damage to the heart valves
+66383,rheumatic_heart_disease,heart disease caused by recurrent episodes of rheumatic fever; characterized by changes in the myocardium or scarring of the heart valves that reduce the power of the heart to pump blood
+66384,rheumatism,any painful disorder of the joints or muscles or connective tissues
+66385,rheumatoid_arthritis atrophic_arthritis rheumatism,a chronic autoimmune disease with inflammation of the joints and marked deformities; something (possibly a virus) triggers an attack on the synovium by the immune system, which releases cytokines that stimulate an inflammatory reaction that can lead to the destruction of all components of the joint
+66386,rheumatoid_factor,autoantibody that is usually present in the serum of people with rheumatoid arthritis
+66387,rheumatologist,a physician specializing in rheumatic diseases
+66388,rheumatology,the branch of medicine dealing with the study and treatment of pathologies of the muscles or tendons or joints
+66389,rhinencephalon olfactory_brain,a center in the cerebral hemispheres that governs the sense of smell in lower animals; in humans it seems to mediate complex emotional behavior
+66390,rhinestone,an imitation diamond made from rock crystal or glass or paste
+66391,rhinion,the anterior tip at the end of the suture of the nasal bones
+66392,rhinitis coryza,an inflammation of the mucous membrane lining the nose (usually associated with nasal discharge)
+66393,rhinoceros rhino,massive powerful herbivorous odd-toed ungulate of southeast Asia and Africa having very thick skin and one or two horns on the snout
+66394,rhinoceros_beetle,any of various large chiefly tropical beetles having horns on the head; pest on coconuts
+66395,rhinolaryngology otorhinolaryngology otolaryngology,the medical specialty that deals with diseases of the ear, nose and throat
+66396,rhinopathy,any disease or malformation of the nose
+66397,rhinophyma hypertrophic_rosacea toper's_nose brandy_nose rum_nose rum-blossom potato_nose hammer_nose copper_nose,enlargement of the nose with dilation of follicles and redness and prominent vascularity of the skin; often associated with excessive consumption of alcohol
+66398,rhinorrhea,persistent watery mucus discharge from the nose (as in the common cold)
+66399,rhinoscope,medical instrument consisting of a mirror mounted at an angle on a rod; used to examine the nasal passages (through the nasopharynx)
+66400,rhinoscopy,examination of the nasal passages (either through the anterior nares or with a rhinoscope through the nasopharynx)
+66401,rhinosporidiosis,fungal infection of the nose; often acquired while swimming
+66402,rhinostenosis,narrowing of the passages in the nasal cavities
+66403,rhinotomy,surgical procedure in which an incision is made in the nose to drain accumulated pus
+66404,rhinotracheitis,a respiratory infection of the nose and throat in cattle
+66405,rhinovirus,any of a group of picornaviruses that are responsible for many upper respiratory infections
+66406,rhizoctinia,any fungus now or formerly belonging to the form genus Rhizoctinia
+66407,rhizoctinia_disease,disease caused by rhizoctinia or fungi of Pellicularia and Corticium
+66408,rhizoid,any of various slender filaments that function as roots in mosses and ferns and fungi etc
+66409,rhizomatous_begonia,any of numerous begonias having prominent shaggy creeping stems or rhizomes
+66410,rhizome rootstock rootstalk,a horizontal plant stem with shoots above and roots below serving as a reproductive structure
+66411,rhizomorph,a dense mass of hyphae forming a root-like structure characteristic of many fungi
+66412,rhizopod rhizopodan,protozoa characterized by a pseudopod
+66413,rhizopus,any of various rot causing fungi of the genus Rhizopus
+66414,rhizotomy,surgical procedure in which spinal nerve roots are cut; done (anterior roots) to relieve intractable pain or (posterior roots) to stop severe muscle spasms
+66415,rho,the 17th letter of the Greek alphabet
+66416,rhodium Rh atomic_number_45,a white hard metallic element that is one of the platinum group and is found in platinum ores; used in alloys with platinum
+66417,rhodochrosite,a mineral consisting of manganese carbonate; a source of manganese
+66418,rhododendron,any shrub of the genus Rhododendron: evergreen shrubs or small shrubby trees having leathery leaves and showy clusters of campanulate (bell-shaped) flowers
+66419,rhodolite,a red or pink variety of garnet used as a gemstone
+66420,rhodonite,a pink or red mineral consisting of crystalline manganese silicate; used as an ornamental stone
+66421,rhombohedron,a parallelepiped bounded by six similar faces (either rhombuses or parallelograms)
+66422,rhomboid,a parallelogram with adjacent sides of unequal lengths; an oblique-angled parallelogram with only the opposite sides equal
+66423,rhomboid rhomboid_muscle,any of several muscles of the upper back that help move the shoulder blade
+66424,rhomboid_minor_muscle lesser_rhomboid_muscle musculus_rhomboideus_minor,rhomboid muscle that draws the scapula toward the vertebral column and slightly upward
+66425,rhomboideus_major_muscle greater_rhomboid_muscle musculus_rhomboideus_major,rhomboid muscle that draws the scapula toward the spinal column
+66426,rhombus rhomb diamond,a parallelogram with four equal sides; an oblique-angled equilateral parallelogram
+66427,rhonchus,a sound like whistling or snoring that is heard with a stethoscope during expiration as air passes through obstructed channels
+66428,rhubarb rhubarb_plant,plants having long green or reddish acidic leafstalks growing in basal clumps; stems (and only the stems) are edible when cooked; leaves are poisonous
+66429,rhubarb_pie,pie containing diced rhubarb and much sugar
+66430,rhumb_line rhumb loxodrome,a line on a sphere that cuts all meridians at the same angle; the path taken by a ship or plane that maintains a constant compass direction
+66431,rhyme rime,correspondence in the sounds of two or more lines (especially final sounds)
+66432,rhyme_royal,a stanza form having seven lines of iambic pentameter; introduced by Chaucer
+66433,rhymer rhymester versifier poetizer poetiser,a writer who composes rhymes; a maker of poor verses (usually used as terms of contempt for minor or inferior poets)
+66434,rhyming_slang,slang that replaces words with rhyming words or expressions and then typically omits the rhyming component; "Cockney rhyming slang"
+66435,rhyolite,very acid volcanic rock
+66436,rhythm beat musical_rhythm,the basic rhythmic unit in a piece of music; "the piece has a fast rhythm"; "the conductor set the beat"
+66437,rhythm regular_recurrence,recurring at regular intervals
+66438,rhythm speech_rhythm,the arrangement of spoken words alternating stressed and unstressed elements; "the rhythm of Frost's poetry"
+66439,rhythm_and_blues R_and_B,a combination of blues and jazz that was developed in the United States by Black musicians; an important precursor of rock 'n' roll
+66440,rhythm_and_blues_musician,a performer (and sometimes composer) of rhythm and blues music
+66441,rhythm_method_of_birth_control rhythm_method rhythm calendar_method_of_birth_control calendar_method,natural family planning in which ovulation is assumed to occur 14 days before the onset of a period (the fertile period would be assumed to extend from day 10 through day 18 of her cycle)
+66442,rhythmicity,the rhythmic property imparted by the accents and relative durations of notes in a piece of music
+66443,rib,cut of meat including one or more ribs
+66444,rib,a teasing remark
+66445,rib,a riblike supporting or strengthening part of an animal or plant
+66446,rib,a projecting molding on the underside of a vault or ceiling; may be ornamental or structural
+66447,rib,support resembling the rib of an animal
+66448,rib costa,any of the 12 pairs of curved arches of bone extending from the spine to or toward the sternum in humans (and similar bones in most vertebrates)
+66449,rib_cage,the bony enclosing wall of the chest
+66450,rib_joint_pliers,a type of pliers
+66451,rib_roast standing_rib_roast,a cut of meat (beef or venison) including more than one rib and the meat located along the outside of the ribs
+66452,ribald,a ribald person; someone who uses vulgar and offensive language
+66453,ribaldry,ribald humor
+66454,riband ribband,a ribbon used as a decoration
+66455,ribavirin Virazole,an inhaled antiviral agent (trade name Virazole) that may be used to treat serious virus infections
+66456,ribbed_vault,vault that resembles a groined vault but has ribbed arches
+66457,ribbing,a framework of ribs
+66458,ribbon,notion consisting of a narrow strip of fine material used for trimming
+66459,ribbon thread,any long object resembling a thin line; "a mere ribbon of land"; "the lighted ribbon of traffic"; "from the air the road was a grey thread"; "a thread of smoke climbed upward"
+66460,ribbon typewriter_ribbon,a long strip of inked material for making characters on paper with a typewriter
+66461,ribbon-leaved_water_plantain,a variety of water plantain
+66462,ribbon_development,building complex in a continuous row along a road
+66463,ribbon_fern Ophioglossum_pendulum,epiphytic fern with straplike usually twisted fronds of tropical Asia and Polynesia and America
+66464,ribbon_fern spider_fern Pteris_serrulata,fern of North Africa and Azores and Canary Islands
+66465,ribbon_snake Thamnophis_sauritus,slender yellow-striped North American garter snake; prefers wet places
+66466,ribbon_tree ribbonwood Plagianthus_regius Plagianthus_betulinus,deciduous New Zealand tree whose inner bark yields a strong fiber that resembles flax and is called New Zealand cotton
+66467,ribbon_worm nemertean nemertine proboscis_worm,soft unsegmented marine worms that have a threadlike proboscis and the ability to stretch and contract
+66468,ribbonfish,marine fish having a long compressed ribbonlike body
+66469,ribier,dark reddish-purple table grape of California
+66470,ribonuclease ribonucleinase RNase,a transferase that catalyzes the hydrolysis of ribonucleic acid
+66471,ribonucleic_acid RNA,(biochemistry) a long linear polymer of nucleotides found in the nucleus but mainly in the cytoplasm of a cell where it is associated with microsomes; it transmits genetic information from DNA to the cytoplasm and controls certain chemical processes in the cell; "ribonucleic acid is the genetic material of some viruses"
+66472,ribose,a pentose sugar important as a component of ribonucleic acid
+66473,ribosome,an organelle in the cytoplasm of a living cell; they attach to mRNA and move down it one codon at a time and then stop until tRNA brings the required amino acid; when it reaches a stop codon it falls apart and releases the completed protein molecule for use by the cell; "the ribosome is the site of protein synthesis"
+66474,rice,annual or perennial rhizomatous marsh grasses; seed used for food; straw used for paper
+66475,rice,grains used as food either unpolished or more often polished
+66476,rice_paper,a thin delicate material resembling paper; made from the rice-paper tree
+66477,rice_rat Oryzomys_palustris,hardy agile rat of grassy marshes of Mexico and the southeastern United States
+66478,rice_weevil black_weevil Sitophylus_oryzae,brown weevil that infests stored grain especially rice
+66479,ricegrass rice_grass,any grass of the genus Oryzopsis
+66480,ricer,a kitchen utensil used for ricing soft foods by extruding them through small holes
+66481,rich_people rich,people who have possessions and wealth (considered as a group); "only the very rich benefit from this legislation"
+66482,rich_person wealthy_person have,a person who possesses great material wealth
+66483,richness,the quality of having high intrinsic value; "the richness of the mines and pastureland"; "the cut of her clothes and the richness of the fabric were distinctive"
+66484,richness,a strong deep vividness of hue; "the fire-light gave a richness of coloring to that side of the room"
+66485,richness rankness prolificacy fertility,the property of producing abundantly and sustaining vigorous and luxuriant growth; "he praised the richness of the soil"; "weeds lovely in their rankness"
+66486,richweed clearweed dead_nettle Pilea_pumilla,a plants of the genus Pilea having drooping green flower clusters and smooth translucent stems and leaves
+66487,ricin ricin_toxin,a toxic protein extracted from castor beans; used as a chemical reagent; can be used as a bioweapon; "one milligram of ricin can kill an adult"
+66488,ricinoleic_acid,an oily fatty acid found in castor oil and used in soap
+66489,rickets rachitis,childhood disease caused by deficiency of vitamin D and sunlight associated with impaired metabolism of calcium and phosphorus
+66490,rickettsia,any of a group of very small rod-shaped bacteria that live in biting arthropods (as ticks and mites) and cause disease in vertebrate hosts; they cause typhus and other febrile diseases in human beings
+66491,rickettsial_disease rickettsiosis,infectious disease caused by ticks or mites or body lice infected with rickettsial bacteria
+66492,rickettsialpox,mild infectious rickettsial disease caused by a bacterium of the genus Rickettsia transmitted to humans by the bite a mite that lives on rodents; characterized by chills and fever and headache and skin lesions that resemble chickenpox
+66493,rickey,a mixed drink made of sweetened lime juice and soda water usually with liquor
+66494,rickrack ricrac,a narrow zigzag ribbon used as trimming
+66495,ricochet carom,a glancing rebound
+66496,ricotta,soft Italian cheese like cottage cheese
+66497,rictus,a gaping grimace
+66498,riddle,a coarse sieve (as for gravel)
+66499,riddle conundrum enigma brain-teaser,a difficult problem
+66500,ride,a mechanical device that you ride for amusement or excitement
+66501,rider,a traveler who actively rides a vehicle (as a bicycle or motorcycle)
+66502,rider,a traveler who actively rides an animal (as a horse or camel)
+66503,rider,a clause that is appended to a legislative bill
+66504,rider_plate,a horizontal beam (or plate) connected to the top of a ship's vertical keel or to the keelson
+66505,ridge,any long raised strip
+66506,ridge,a long narrow natural elevation on the floor of the ocean
+66507,ridge,a long narrow natural elevation or striation
+66508,ridge,any long raised border or margin of a bone or tooth or membrane
+66509,ridge ridgeline,a long narrow range of hills
+66510,ridge ridgepole rooftree,a beam laid along the edge where two sloping sides of a roof meet at the top; provides an attachment for the upper ends of rafters
+66511,ridge_rope,either of a pair of lifelines running alongside the bowsprit of a ship
+66512,ridge_tile,a decorative tile that is bent in cross section; used to cover the ridge of a roof
+66513,ridgeling ridgling ridgel ridgil,a colt with undescended testicles
+66514,ridicule,language or behavior intended to mock or humiliate
+66515,riding horseback_riding,travel by being carried on horseback
+66516,riding horseback_riding equitation,the sport of sitting on the back of a horse while controlling its movements
+66517,riding_bitt,one of the large bitts used to secure the cable of a dropped anchor
+66518,riding_boot,a boot without laces that is worn for riding horses; part of a riding habit
+66519,riding_crop hunting_crop,a short whip with a thong at the end and a handle for opening gates
+66520,riding_master,someone who teaches horsemanship
+66521,riding_mower,a power mower you can ride on
+66522,riding_school,a school where horsemanship is taught and practiced
+66523,ridley,a marine turtle
+66524,riel,the basic unit of money in Cambodia; equal to 100 sen
+66525,rifampin Rifadin Rimactane,an antibacterial drug (trade names Rifadin and Rimactane) used to treat tuberculosis
+66526,riff,a jazz ostinato; usually provides a background for a solo improvisation
+66527,riffle,shuffling by splitting the pack and interweaving the two halves at their corners
+66528,rifle,a shoulder firearm with a long barrel and a rifled bore; "he lifted the rifle to his shoulder and fired"
+66529,rifle_ball,a bullet designed to be fired from a rifle; no longer made spherical in shape
+66530,rifle_butt,the butt end of a rifle
+66531,rifle_grenade,a grenade that is thrown from a launching device attached to the barrel of a rifle
+66532,rifle_range,a range where people can practice shooting rifles; "during the war they turned the bowling alleys into rifle ranges"
+66533,rifle_range rifle_shot,the distance that a rifle bullet will carry; "the target was out of rifle range"
+66534,riflebird Ptloris_paradisea,velvety black Australian bird of paradise with green and purple iridescence on head and tail
+66535,rifleman,someone skilled in the use of a rifle
+66536,rifleman,a soldier whose weapon is a rifle
+66537,rifleman_bird Acanthisitta_chloris,small green-and-bronze bird
+66538,rift,a gap between cloud masses; "the sun shone through a rift in the clouds"
+66539,rift,a narrow fissure in rock
+66540,rift_valley,a valley with steep sides; formed by a rift in the earth's crust
+66541,rig,gear (including necessary machinery) for a particular enterprise
+66542,rig rigging,formation of masts, spars, sails, etc., on a vessel
+66543,rigatoni,tubular pasta in short ribbed pieces
+66544,rigger,someone who rigs ships
+66545,rigger,a sailing vessel with a specified rig; "a square rigger"
+66546,rigger oil_rigger,someone who works on an oil rig
+66547,rigger rigger_brush,a long slender pointed sable brush used by artists
+66548,rigging tackle,gear consisting of ropes etc. supporting a ship's masts and sails
+66549,right,(frequently plural) the interest possessed by law or custom in some intangible thing; "mineral rights"; "film rights"
+66550,right,location near or direction toward the right side; i.e. the side to the south when a person or object faces east; "he stood on the right"
+66551,right,an abstract idea of that which is due to a person or governmental body by law or tradition or nature; "they are endowed by their Creator with certain unalienable Rights"; "Certain rights can never be granted to the government but must be kept in the hands of the people"- Eleanor Roosevelt; "a right is not something that somebody gives you; it is something that nobody can take away"
+66552,right,a turn toward the side of the body that is on the south when the person is facing east; "take a right at the corner"
+66553,right right_hand,the hand that is on the right side of the body; "he writes with his right hand but pitches with his left"; "hit him with quick rights to the body"
+66554,right right_wing,those who support political or social or economic conservatism; those who believe that things are better left unchanged
+66555,right rightfulness,anything in accord with principles of justice; "he feels he is in the right"; "the rightfulness of his claim"
+66556,right-hand_man chief_assistant man_Friday,the most helpful assistant
+66557,right-handed_pitcher right-hander,(baseball) a pitcher who throws with the right hand
+66558,right-handedness dextrality,preference for using the right hand
+66559,right-hander right_hander righthander,a person who uses the right hand more skillfully than the left
+66560,right_angle,the 90 degree angle between two perpendicular lines
+66561,right_ascension RA celestial_longitude,(astronomy) the equatorial coordinate specifying the angle, measured eastward along the celestial equator, from the vernal equinox to the intersection of the hour circle that passes through an object in the sky; usually expressed in hours and minutes and seconds; used with declination to specify positions on the celestial sphere; "one hour of right ascension equals fifteen degrees"
+66562,right_atrium right_atrium_of_the_heart atrium_dextrum,the right upper chamber of the heart that receives blood from the venae cavae and coronary sinus
+66563,right_coronary_artery,arises from the right aortic sinus; supplies the right side of the heart
+66564,right_field rightfield,the fielding position of the player on a baseball team who is expected to field balls in the right third of the outfield (looking from home plate)
+66565,right_field rightfield right,the piece of ground in the outfield on the catcher's right
+66566,right_fielder,the person who plays right field
+66567,right_gastric_artery ateria_gastrica_dextra,a branch of the hepatic artery that supplies the pyloric portion of the stomach on the lesser curvature
+66568,right_hemisphere right_brain,the cerebral hemisphere to the right of the corpus callosum that controls the left half of the body
+66569,right_of_action,the legal right to sue
+66570,right_of_election,in probate law: the legal right of a surviving spouse to elect to take either what the deceased spouse gave under the will or the share of the estate as set forth by statute
+66571,right_of_entry,the legal right to take possession of real estate in a peaceable manner
+66572,right_of_offset,(banking) the legal right of a bank to seize deposited funds to cover a loan that is in default
+66573,right_of_privacy,a legal right (not explicitly provided in the United States Constitution) to be left alone; the right to live life free from unwarranted publicity
+66574,right_of_re-entry,the legal right to resume possession (a right that was reserved when a former possession was parted with)
+66575,right_of_search,the right of a belligerent to stop neutral ships on the high seas in wartime and search them
+66576,right_of_way,the privilege of someone to pass over land belonging to someone else
+66577,right_of_way,the right of one vehicle or vessel to take precedence over another
+66578,right_of_way,the passage consisting of a path or strip of land over which someone has the legal right to pass
+66579,right_to_an_attorney,a civil right guaranteed by the 6th amendment to the US Constitution
+66580,right_to_confront_accusors,a right guaranteed by the 6th amendment to the US Constitution
+66581,right_to_due_process,a right guaranteed by the Fifth Amendment to the US Constitution; reaffirmed by the Fourteenth Amendment
+66582,right_to_liberty,the right to be free
+66583,right_to_life,the right to live
+66584,right_to_privacy,right to be free of unsanctioned intrusion
+66585,right_to_speedy_and_public_trial_by_jury,a civil right guaranteed by the 6th amendment to the US Constitution
+66586,right_to_the_pursuit_of_happiness,the right to try to find happiness
+66587,right_to_vote vote suffrage,a legal right guaranteed by the 15th amendment to the US Constitution; guaranteed to women by the 19th amendment; "American women got the vote in 1920"
+66588,right_triangle right-angled_triangle,a triangle with one right angle
+66589,right_ventricle,the chamber on the right side of the heart that receives venous blood from the right atrium and pumps it into the pulmonary trunk
+66590,right_whale,large Arctic whalebone whale; allegedly the `right' whale to hunt because of its valuable whalebone and oil
+66591,righteousness,adhering to moral principles
+66592,righteye_flounder righteyed_flounder,flounders with both eyes on the right side of the head
+66593,rightism,the ideology of the political right; belief in or support of the tenets of the political right
+66594,rightist right-winger,a member of a right wing political party
+66595,rightness,according with conscience or morality
+66596,rights_offering rights_issue,an offering of common stock to existing shareholders who hold subscription rights or pre-emptive rights that entitle them to buy newly issued shares at a discount from the price at which they will be offered to the public later; "the investment banker who handles a rights offering usually agrees to buy any shares not bought by shareholders"
+66597,rigidity rigidness,the physical property of being stiff and resisting bending
+66598,rigmarole rigamarole,a set of confused and meaningless statements
+66599,rigmarole rigamarole,a long and complicated and confusing procedure; "all that academic rigmarole was a waste of time"
+66600,rigor_mortis,temporary stiffness of joints and muscular rigidity occurring after death
+66601,rigor_mortis,muscular stiffening that begins 2 to 4 hours after death and lasts for about 4 days
+66602,rigout,a person's costume (especially if bizarre); "What a queer rigout!"
+66603,rijsttaffel rijstaffel rijstafel,dish originating in Indonesia; a wide variety of foods and sauces are served with rice
+66604,rill,a small channel (as one formed by soil erosion)
+66605,rim,the shape of a raised edge of a more or less circular object
+66606,rim,(basketball) the hoop from which the net is suspended; "the ball hit the rim and bounced off"
+66607,rim,the outer part of a wheel to which the tire is attached
+66608,rim_blight,a disease of tea plants
+66609,rima,a narrow elongated opening or fissure between two symmetrical parts
+66610,rima_glottidis rima_vocalis true_glottis glottis_vera,the space between the two true vocal folds
+66611,rima_vestibuli rima_respiratoria false_glottis glottis_spuria,the opening between the false vocal folds
+66612,rimu imou_pine red_pine Dacrydium_cupressinum,tall New Zealand timber tree
+66613,rind,the natural outer covering of food (usually removed before eating)
+66614,rinderpest cattle_plague,an acute infectious viral disease of cattle (usually fatal); characterized by fever and diarrhea and inflammation of mucous membranes
+66615,ring,a characteristic sound; "it has the ring of sincerity"
+66616,ring,a platform usually marked off by ropes in which contestants box or wrestle
+66617,ring band,jewelry consisting of a circlet of precious metal (often set with jewels) worn on the finger; "she had rings on every finger"; "he noted that she wore a wedding band"
+66618,ring halo annulus doughnut anchor_ring,a toroidal shape; "a ring of ships in the harbor"; "a halo of smoke"
+66619,ring ringing tintinnabulation,the sound of a bell ringing; "the distinctive ring of the church bell"; "the ringing of the telephone"; "the tintinnabulation that so voluminously swells from the ringing and the dinging of the bells"--E. A. Poe
+66620,ring-around-the-rosy ring-around-a-rosy ring-a-rosy,a children's game in which the players dance around in a circle and at a given signal all squat
+66621,ring-necked_parakeet Psittacula_krameri,African parakeet
+66622,ring-necked_pheasant Phasianus_colchicus,common pheasant having bright plumage and a white neck ring
+66623,ring_containment,a strategy of defense in cases of bioterrorism; vaccination only of people exposed and others who are in contact with them; "ring containment is a proven method of halting a smallpox epidemic"
+66624,ring_finger annualry,the third finger (especially of the left hand)
+66625,ring_girl,a young woman who holds up cards indicating the number of the next round at prize fights
+66626,ring_ouzel ring_blackbird ring_thrush Turdus_torquatus,European thrush common in rocky areas; the male has blackish plumage with a white band around the neck
+66627,ring_rot ring_disease tobacco_wilt,disease of tomatoes and potatoes and tobacco etc caused by the bacterium Pseudomonas solanacearum
+66628,ring_rot_bacteria Pseudomonas_solanacearum,causes brown rot in tomatoes and potatoes and tobacco etc
+66629,ring_vaccination,administering vaccine only to people in close contact with an isolated infected patient; prevents the spread of a highly infectious disease by surrounding the patient with a ring of immunization
+66630,ringdove Streptopelia_risoria,greyish Old World turtledove with a black band around the neck; often caged
+66631,ringer,a contestant entered in a competition under false pretenses
+66632,ringer,(horseshoes) the successful throw of a horseshoe or quoit so as to encircle a stake or peg
+66633,ringer dead_ringer clone,a person who is almost identical to another
+66634,ringgit,the basic unit of money in Malaysia; equal to 100 sen
+66635,ringhals rinkhals spitting_snake Hemachatus_haemachatus,highly venomous snake of southern Africa able to spit venom up to seven feet
+66636,ringing,the giving of a ring as a token of engagement
+66637,ringleader,a person who leads (especially in illicit activities)
+66638,ringlet,a small ring
+66639,ringlet ringlet_butterfly,any of various butterflies belonging to the family Satyridae
+66640,ringmaster,the person in charge of performances in a circus ring
+66641,ringneck_snake ring-necked_snake ring_snake,any of numerous small nonvenomous North American snakes with a yellow or orange ring around the neck
+66642,rings,gymnastic apparatus consisting of a pair of heavy metal circles (usually covered with leather) suspended by ropes; used for gymnastic exercises; "the rings require a strong upper body"
+66643,ringside ringside_seat,first row of seating; has an unobstructed view of a boxing or wrestling ring
+66644,ringtail,an immature golden eagle
+66645,ringworm_bush ringworm_shrub ringworm_cassia Senna_alata Cassia_alata,tropical shrub (especially of Americas) having yellow flowers and large leaves whose juice is used as a cure for ringworm and poisonous bites; sometimes placed in genus Cassia
+66646,rink skating_rink,building that contains a surface for ice skating or roller skating
+66647,rinse,a liquid preparation used on wet hair to give it a tint
+66648,rinse,the act of giving a light tint to the hair
+66649,rinse,washing lightly without soap
+66650,rinse rinsing,the removal of soap with clean water in the final stage of washing
+66651,riot public_violence,a public act of violence by an unruly mob
+66652,riot_act,a vigorous reprimand; "I read him the riot act"
+66653,riot_control riot_control_operation,the measures taken to control a riot
+66654,riot_gun,a firearm designed to disperse rioters rather than to inflict serious injury or death
+66655,rioter,troublemaker who participates in a violent disturbance of the peace; someone who rises up against the constituted authority
+66656,rioting riot,a state of disorder involving group violence
+66657,rip rent snag split tear,an opening made forcibly as by pulling apart; "there was a rip in his pants"; "she had snags in her stockings"
+66658,rip riptide tide_rip crosscurrent countercurrent,a stretch of turbulent water in a river or the sea caused by one current flowing into or across another current
+66659,riparian_forest,woodlands along the banks of stream or river
+66660,ripcord,a cord that is pulled to open the gasbag of a balloon wide enough to release gas and so causes the balloon to descend
+66661,ripcord,a cord that is pulled to open a parachute from its pack during a descent
+66662,ripeness,the state of being ripe
+66663,ripening aging ageing,acquiring desirable qualities by being left undisturbed for some time
+66664,riposte,(fencing) a counterattack made immediately after successfully parrying the opponents lunge
+66665,ripper,a murderer who slashes the victims with a knife; "Jack the Ripper was probably a madman"
+66666,ripping_bar,a steel lever with one end formed into a ripping chisel and the other a gooseneck with a claw for pulling nails
+66667,ripping_chisel,a long chisel with a slightly bent cutting end; used for heavy prying or cleaning mortises
+66668,ripple,(electronics) an oscillation of small amplitude imposed on top of a steady value
+66669,ripple rippling riffle wavelet,a small wave on the surface of a liquid
+66670,ripple_mark,one of a series of small ridges produced in sand by water currents or by wind
+66671,ripsaw splitsaw,a handsaw for cutting with the grain of the wood
+66672,riptide rip_current,a strong surface current flowing outwards from a shore
+66673,rise,a growth in strength or number or importance
+66674,rise ascent ascension ascending,the act of changing location in an upward direction
+66675,rise boost hike cost_increase,an increase in cost; "they asked for a 10% rise in rates"
+66676,rise rising ascent ascension,a movement upward; "they cheered the rise of the hot-air balloon"
+66677,riser,a person who rises (especially from bed); "he's usually a late riser"
+66678,riser,structural member consisting of the vertical part of a stair or step
+66679,riser riser_pipe riser_pipeline riser_main,a vertical pipe in a building
+66680,risibility,a disposition to laugh
+66681,rising_trot,the rider rises from the saddle every second stride
+66682,risk peril danger,a venture undertaken without regard to possible loss or injury; "he saw the rewards but not the risks of crime"; "there was a danger he would do the wrong thing"
+66683,risk risk_of_exposure,the probability of being exposed to an infectious agent
+66684,risk risk_of_infection,the probability of becoming infected given that exposure to an infectious agent has occurred
+66685,risk_arbitrage takeover_arbitrage,arbitrage involving risk; as in the simultaneous purchase of stock in a target company and sale of stock in its potential acquirer; if the takeover fails the arbitrageur may lose a great deal of money
+66686,riskiness peril,a state of danger involving risk
+66687,risklessness,safety as a consequence of entailing no risk
+66688,risotto Italian_rice,rice cooked with broth and sprinkled with grated cheese
+66689,rissole,minced cooked meat or fish coated in egg and breadcrumbs and fried in deep fat
+66690,rite religious_rite,an established ceremony prescribed by a religion; "the rite of baptism"
+66691,rite_of_passage,a ritual performed in some cultures at times when an individual changes status (as from adolescence to adulthood)
+66692,ritonavir Norvir,a protease inhibitor (trade name Norvir) used in treating HIV
+66693,ritual,the prescribed procedure for conducting religious ceremonies
+66694,ritual,stereotyped behavior
+66695,ritual rite,any customary observance or practice
+66696,ritual_dancing ritual_dance ceremonial_dance,a dance that is part of a religious ritual
+66697,ritualism,the study of religious or magical rites and ceremonies
+66698,ritualism,exaggerated emphasis on the importance of rites or ritualistic forms in worship
+66699,ritualist,an advocate of strict observance of ritualistic forms
+66700,ritualist,a social anthropologist who is expert on rites and ceremonies
+66701,ritz,ostentatious display of elegance; "they put on the ritz"
+66702,rival challenger competitor competition contender,the contestant you hope to defeat; "he had respect for his rivals"; "he wanted to know what the competition was doing"
+66703,river,a large natural stream of water (larger than a creek); "the river was navigable for 50 miles"
+66704,river_basin basin watershed drainage_basin catchment_area catchment_basin drainage_area,the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet; "flood control in the Missouri basin"
+66705,river_boat,a boat used on rivers or to ply a river
+66706,river_boulder,a boulder that has been carried by a river to a place remote from its place of origin
+66707,river_dolphin,any of several long-snouted usually freshwater dolphins of South America and southern Asia
+66708,river_limpet freshwater_limpet Ancylus_fluviatilis,minute conical gastropod superficially resembling a limpet but living and feeding on freshwater plants
+66709,river_otter Lutra_canadensis,sociable aquatic animal widely distributed along streams and lake borders in North America
+66710,river_prawn,large Australian prawn
+66711,river_red_gum river_gum Eucalyptus_camaldulensis Eucalyptus_rostrata,somewhat crooked red gum tree growing chiefly along rivers; has durable reddish lumber used in heavy construction
+66712,river_shad Alosa_chrysocloris,shad that spawns in streams of the Mississippi drainage; very similar to Alosa sapidissima
+66713,riverbank riverside,the bank of a river
+66714,riverbed river_bottom,a channel occupied (or formerly occupied) by a river
+66715,rivet,heavy pin having a head at one end and the other end being hammered flat after being passed through holes in the pieces that are fastened together
+66716,rivet_line,a line of rivets at a seam; "the fuselage cracked along the rivet line"
+66717,riveter rivetter,a worker who inserts and hammers rivets
+66718,riveting_machine riveter rivetter,a machine for driving rivets
+66719,rivulet rill run runnel streamlet,a small stream
+66720,rivulus,found in small streams of tropical America; often kept in aquariums; usually hermaphroditic
+66721,riyal-omani Omani_rial rial,the basic unit of money in Oman
+66722,roach,a roll of hair brushed back from the forehead
+66723,roach,the butt of a marijuana cigarette
+66724,roach Rutilus_rutilus,European freshwater food fish having a greenish back
+66725,roach_clip roach_holder,metal tweezers used by marijuana smokers to hold a roach
+66726,road,a way or means to achieve something; "the road to fame"
+66727,road route,an open way (generally public) for travel or transportation
+66728,road_builder,someone whose business is to build roads
+66729,road_construction,the construction of roads
+66730,road_gang,a gang of road workers
+66731,road_hog roadhog,a driver who obstructs others
+66732,road_map,a map showing roads (for automobile travel)
+66733,road_map guideline,a detailed plan or explanation to guide you in setting standards or determining a course of action; "the president said he had a road map for normalizing relations with Vietnam"
+66734,road_metal,broken rock used for repairing or making roads
+66735,road_rage,violence exhibited by drivers in traffic
+66736,road_sense,good judgment in avoiding trouble or accidents on the road
+66737,road_show,a show on tour
+66738,road_surface,the paved surface of a paved roadway
+66739,road_test,a test to insure that a vehicle is roadworthy
+66740,road_to_Damascus,a sudden turning point in a person's life (similar to the sudden conversion of the Apostle Paul on the road from Jerusalem to Damascus of arrest Christians)
+66741,roadbed,a bed supporting a road
+66742,roadblock barricade,a barrier set up by police to stop traffic on a street or road in order to catch a fugitive or inspect traffic etc.
+66743,roadbook,a guidebook describing the roads of a country; contains maps and (sometimes) a gazetteer
+66744,roadhouse,an inn (usually outside city limits on a main road) providing meals and liquor and dancing and (sometimes) gambling
+66745,roadkill,the dead body of an animal that has been killed on a road by a vehicle; "vultures usually feed on carrion or roadkill"
+66746,roadman road_mender,a workman who is employed to repair roads
+66747,roadrunner chaparral_cock Geococcyx_californianus,speedy largely terrestrial bird found from California and Mexico to Texas
+66748,roads roadstead,a partly sheltered anchorage
+66749,roadster runabout two-seater,an open automobile having a front seat and a rumble seat
+66750,roadway,a road (especially that part of a road) over which vehicles travel
+66751,roadworthiness,(of motor vehicles) the quality of being fit to drive on the open road
+66752,roan,a soft sheepskin leather that is colored and finished to resemble morocco; used in bookbinding
+66753,roan,a horse having a brownish coat thickly sprinkled with white or gray
+66754,roar,the sound made by a lion
+66755,roarer bawler bellower screamer screecher shouter yeller,someone who communicates vocally in a very loud voice
+66756,roast joint,a piece of meat roasted or for roasting and of a size for slicing into more than one portion
+66757,roaster,a harsh or humorous critic (sometimes intended as a facetious compliment); "the honoree gave his roasters as good as he got"
+66758,roaster,a cook who roasts food
+66759,roaster,flesh of a large young chicken over 3 1/2 lb suitable for roasting
+66760,roaster,a special cooking pan for roasting
+66761,roasting,cooking (meat) by dry heat in an oven (usually with fat added); "the slow roasting took several hours"
+66762,robalo,a kind of percoid fish
+66763,robber,a thief who steals from someone by threatening violence
+66764,robber_fly bee_killer,swift predatory fly having a strong body like a bee with the proboscis hardened for sucking juices of other insects captured on the wing
+66765,robber_frog,small terrestrial frog of tropical America
+66766,robbery,larceny by threat of violence
+66767,robbery_conviction,conviction for robbery
+66768,robbery_suspect,someone suspected of committing robbery
+66769,robe,any loose flowing garment
+66770,robin American_robin Turdus_migratorius,large American thrush having a rust-red breast and abdomen
+66771,robin redbreast robin_redbreast Old_World_robin Erithacus_rubecola,small Old World songbird with a reddish breast
+66772,robin's_plantain Erigeron_pulchellus,common perennial of eastern North America having flowers with usually violet-purple rays
+66773,roble Platymiscium_trinitatis,large tree of Trinidad and Guyana having odd-pinnate leaves and violet-scented axillary racemes of yellow flowers and long smooth pods; grown as a specimen in parks and large gardens
+66774,roble_beech Nothofagus_obliqua,tall deciduous South American tree
+66775,robotic_telesurgery,microsurgery in which the surgeon performs surgery by manipulating the hands of a robot
+66776,robotics,the area of AI concerned with the practical use of robots
+66777,robotics_equipment,equipment used in robotics
+66778,robusta_coffee Rio_Nunez_coffee Coffea_robusta Coffea_canephora,native to West Africa but grown in Java and elsewhere; resistant to coffee rust
+66779,robustness,the characteristic of being strong enough to withstand intellectual challenge; "the lack of robustness in the findings may be due to the small size of the sample"
+66780,robustness hardiness lustiness,the property of being strong and healthy in constitution
+66781,roc,mythical bird of prey having enormous size and strength
+66782,roccella Roccella_tinctoria,a source of the dye archil and of litmus
+66783,rock,(figurative) someone who is strong and stable and dependable; "he was her rock during the crisis"; "Thou art Peter, and upon this rock I will build my church"--Gospel According to Matthew
+66784,rock careen sway tilt,pitching dangerously to one side
+66785,rock stone,material consisting of the aggregate of minerals like those making up the Earth's crust; "that mountain is solid rock"; "stone is abundant in New England and there are many quarries"
+66786,rock stone,a lump or mass of hard consolidated mineral matter; "he threw a rock at me"
+66787,rock_'n'_roll rock'n'roll rock-and-roll rock_and_roll rock rock_music,a genre of popular music originating in the 1950s; a blend of black rhythm-and-blues with white country-and-western; "rock is a generic term for the range of styles that evolved out of rock'n'roll."
+66788,rock_bass rock_sunfish Ambloplites_rupestris,game and food fish of upper Mississippi and Great Lakes
+66789,rock_beauty Holocanthus_tricolor,gold and black butterflyfish found from West Indies to Brazil
+66790,rock_bit roller_bit,a drill bit that has hardened rotating rollers
+66791,rock_bottom,the absolute bottom
+66792,rock_brake,dwarf deciduous lithophytic ferns
+66793,rock_cake,a small cake with a hard surface said to resemble a rock
+66794,rock_candy,sugar in large hard clear crystals on a string
+66795,rock_candy rock,hard bright-colored stick candy (typically flavored with peppermint)
+66796,rock_climber cragsman,a climber of vertical rock faces
+66797,rock_climbing,the sport or pastime of scaling rock masses on mountain sides (especially with the help of ropes and special equipment)
+66798,rock_concert,a performance of rock music
+66799,rock_crab Cancer_irroratus,crab of eastern coast of North America
+66800,rock_cress rockcress,any of several rock-loving cresses of the genus Arabis
+66801,rock_crystal transparent_quartz,a clear quartz used in making electronic and optical equipment
+66802,rock_dove rock_pigeon Columba_livia,pale grey Eurasian pigeon having black-striped wings from which most domestic species are descended
+66803,rock_elm Ulmus_thomasii,tall widely distributed elm of eastern North America
+66804,rock_garden rockery,a garden featuring rocks; usually alpine plants
+66805,rock_geranium Heuchera_americana,plant with basal leaves mottled with white and flowers in lax panicles on erect stems
+66806,rock_group rock_band,a band of musicians who play rock'n'roll music
+66807,rock_gunnel butterfish Pholis_gunnellus,slippery scaleless food fish of the northern Atlantic coastal waters
+66808,rock_hind Epinephelus_adscensionis,found around rocky coasts or on reefs
+66809,rock_hopper crested_penguin,small penguin of the Falkland Islands and New Zealand
+66810,rock_hyrax rock_rabbit Procavia_capensis,hyrax that lives in rocky areas
+66811,rock_opera,an opera with rock music
+66812,rock_penstemon cliff_penstemon Penstemon_rupicola,one of the West's most beautiful wildflowers; large brilliant pink or rose flowers in many racemes above thick mats of stems and leaves; ledges and cliffs from Washington to California
+66813,rock_pink Talinum_calycinum,pink-flowered perennial of rocky regions of western United States
+66814,rock_plant,plant that grows on or among rocks or is suitable for a rock garden
+66815,rock_polypody rock_brake American_wall_fern Polypodium_virgianum,chiefly lithophytic or epiphytic fern of North America and east Asia
+66816,rock_purslane,a plant of the genus Calandrinia
+66817,rock_python rock_snake Python_sebae,very large python of tropical and southern Africa
+66818,rock_rattlesnake Crotalus_lepidus,mountain rock dweller of Mexico and most southern parts of United States southwest
+66819,rock_salmon,any of several coarse fishes (such as dogfish or wolffish) when used as food
+66820,rock_sandwort Arenaria_stricta,low perennial tufted plant of southeastern North America
+66821,rock_sea_bass rock_bass Centropristis_philadelphica,a kind of sea bass
+66822,rock_spikemoss dwarf_lycopod Selaginella_rupestris,tufted spikemoss forming loose spreading mats; eastern North America
+66823,rock_squirrel Citellus_variegatus,large grey ground squirrel of rocky areas of the southwestern United States
+66824,rock_star,a famous singer of rock music
+66825,rock_wallaby rock_kangaroo,slender long-legged Australian wallabies living in caves and rocky areas
+66826,rock_wren Salpinctes_obsoletus,wren inhabiting badlands and mesa country of western United States and Mexico
+66827,rock_wren Xenicus_gilviventris,short-tailed bird resembling a wren
+66828,rockabilly,a fusion of black music and country music that was popular in the 1950s; sometimes described as blues with a country beat
+66829,rocker,an attendant who rocks a child in a cradle
+66830,rocker,a teenager or young adult in the 1960s who wore leather jackets and rode motorcycles
+66831,rocker,an ice skate with a curved blade
+66832,rocker,a curved support that permits the supported object to rock to and fro
+66833,rocker cradle,a trough that can be rocked back and forth; used by gold miners to shake auriferous earth in water in order to separate the gold
+66834,rocker rock_'n'_roll_musician,a performer or composer or fan of rock music
+66835,rocker_arm valve_rocker,a lever pivoted at the center; used especially to push a valve down in an internal-combustion engine
+66836,rockers bikers,originally a British youth subculture that evolved out of the teddy boys in the 1960s; wore black leather jackets and jeans and boots; had greased hair and rode motorcycles and listened to rock'n'roll; were largely unskilled manual laborers
+66837,rocket projectile,any vehicle self-propelled by a rocket engine
+66838,rocket rocket_engine,a jet engine containing its own propellant and driven by reaction propulsion
+66839,rocket roquette garden_rocket rocket_salad arugula Eruca_sativa Eruca_vesicaria_sativa,erect European annual often grown as a salad crop to be harvested when young and tender
+66840,rocket skyrocket,propels bright light high in the sky, or used to propel a lifesaving line or harpoon
+66841,rocket_base,a military base for rocket missiles
+66842,rocket_engineer rocket_scientist,an engineer who builds and tests rockets
+66843,rocket_firing rocket_launching,the launching of a rocket or missile under its own power
+66844,rocket_fuel rocket_propellant rocket_propellent,an explosive charge that propels a rocket
+66845,rocket_larkspur Consolida_ambigua Delphinium_ajacis,commonly cultivated larkspur of southern Europe having unbranched spikelike racemes of blue or sometimes purplish or pinkish flowers; sometime placed in genus Delphinium
+66846,rocket_propulsion,reaction propulsion using stored oxygen for combustion; used where there is insufficient atmospheric oxygen
+66847,rocket_range,a firing range for rocket missiles
+66848,rocket_scientist,a clever thinker; "you do not have to be a rocket scientist to figure that out"
+66849,rocketry,the branch of engineering science that studies rocket design and operation
+66850,rockfish,the lean flesh of any of various valuable market fish caught among rocks
+66851,rockfish,marine food fish found among rocks along the northern coasts of Europe and America
+66852,rockiness,the quality of abounding in rocks and stones; "due to the rockiness of the land it was quickly dry even after a heavy rain"
+66853,rocking_chair rocker,a chair mounted on rockers
+66854,rockrose rock_rose,any of numerous varieties of helianthemums having small rose-like yellow or white or reddish flowers
+66855,rockrose rock_rose,small shrubs of scrub and dry woodland regions of southern Europe and North Africa; grown for their showy flowers and soft often downy and aromatic evergreen foliage
+66856,rockslide,a landslide of rocks
+66857,rockweed,coarse brown seaweed growing on rocks exposed at low tide
+66858,rococo,fanciful but graceful asymmetric ornamentation in art and architecture that originated in France in the 18th century
+66859,rod,a long thin implement made of metal or wood
+66860,rod,any rod-shaped bacterium
+66861,rod rod_cell retinal_rod,a visual receptor cell that is sensitive to dim light
+66862,rodent gnawer,relatively small placental mammals having a single pair of constantly growing incisor teeth specialized for gnawing
+66863,rodeo,an enclosure for cattle that have been rounded up
+66864,rodeo,an exhibition of cowboy skills
+66865,roe,eggs of female fish
+66866,roe,the egg mass or spawn of certain crustaceans such as the lobster
+66867,roe,the eggs or egg-laden ovary of a fish
+66868,roe hard_roe,fish eggs or egg-filled ovary; having a grainy texture
+66869,roe_deer Capreolus_capreolus,small graceful deer of Eurasian woodlands having small forked antlers
+66870,roebuck,male roe deer
+66871,roentgen R,a unit of radiation exposure; the dose of ionizing radiation that will produce 1 electrostatic unit of electricity in 1 cc of dry air
+66872,roentgenium Rg element_111 atomic_number_111,a radioactive transuranic element
+66873,roentgenogram X_ray X-ray X-ray_picture X-ray_photograph,a radiogram made by exposing photographic film to X rays; used in medical diagnosis
+66874,roentgenography X-ray_photography,radiography that uses X-rays to produce a roentgenogram
+66875,rofecoxib Vioxx,a Cox-2 inhibitor (trade name Vioxx) that relieves pain and inflammation without harming the digestive tract; voluntarily withdrawn from the market in 2004
+66876,rogation,a solemn supplication ceremony prescribed by the church
+66877,rogue knave rascal rapscallion scalawag scallywag varlet,a deceitful and unreliable scoundrel
+66878,rogue's_gallery,a collection of pictures of criminals
+66879,rogue_elephant,a wild and vicious elephant separated from the herd
+66880,rogue_state renegade_state rogue_nation,a state that does not respect other states in its international actions
+66881,roisterer,an especially noisy and unrestrained merrymaker
+66882,role,normal or customary activity of a person in a particular social setting; "what is your role on the team?"
+66883,roleplaying,acting a particular role (as in psychotherapy)
+66884,roll,photographic film rolled up inside a container to protect it from light
+66885,roll,anything rolled up in cylindrical form
+66886,roll,walking with a swaying gait
+66887,roll,a flight maneuver; aircraft rotates about its longitudinal axis without changing direction or losing altitude
+66888,roll bowl,the act of rolling something (as the ball in bowling)
+66889,roll roster,a list of names; "his name was struck off the rolls"
+66890,roll-on,a dispenser of a liquid cosmetic (such as a deodorant) having a revolving ball as an applicator
+66891,roll-on,a woman's foundation garment rolled on to the hips
+66892,roll-on_roll-off,a method of transport (as a ferry or train or plane) that vehicles roll onto at the beginning and roll off of at the destination
+66893,roll_call,calling out an official list of names
+66894,roll_film,photographic film wound on a spool
+66895,roll_of_tobacco smoke,tobacco leaves that have been made into a cylinder
+66896,rollback,reducing prices back to some earlier level
+66897,rollback push_back,the act of forcing the enemy to withdraw
+66898,rolled_biscuit,biscuit made from dough rolled and cut
+66899,roller,a small wheel without spokes (as on a roller skate)
+66900,roller,a cylinder that revolves
+66901,roller,Old World bird that tumbles or rolls in flight; related to kingfishers
+66902,roller,a grounder that rolls along the infield
+66903,roller roll rolling_wave,a long heavy sea wave as it advances towards the shore
+66904,roller tumbler tumbler_pigeon,pigeon that executes backward somersaults in flight or on the ground
+66905,roller-skater,someone who engages in roller skating
+66906,roller_bandage,bandage consisting of a strip of sterile fabric (of variable width) rolled into a cylinder to facilitate application
+66907,roller_blind,a window shade that rolls up out of the way
+66908,roller_coaster,anything characterized by abrupt and extreme changes (especially up and down); "the economy has been on a roller coaster all year"
+66909,roller_coaster big_dipper chute-the-chute,elevated railway in an amusement park (usually with sharp curves and steep inclines)
+66910,roller_skate,a shoe with pairs of rollers fixed to the sole
+66911,roller_skating,skating on wheels
+66912,roller_towel,a towel with the ends sewn together, hung on a roller
+66913,rollerblader,a skater who uses Rollerblades
+66914,rollerblading,skating using Rollerblades
+66915,rolling,the act of robbing a helpless person; "he was charged with rolling drunks in the park"
+66916,rolling_hitch,a hitch for fastening a line to a spar or another rope
+66917,rolling_mill,steel mill where metal is rolled into sheets and bars
+66918,rolling_pin,utensil consisting of a cylinder (usually of wood) with a handle at each end; used to roll out dough
+66919,rolling_stock,collection of wheeled vehicles owned by a railroad or motor carrier
+66920,rollmops,a pickled herring filet that has been rolled or wrapped around a pickle
+66921,rollover,the act of changing the institution that invests your pension plan without incurring a tax penalty
+66922,roly-poly roly-poly_pudding,pudding made of suet pastry spread with jam or fruit and rolled up and baked or steamed
+66923,roman roman_type roman_letters roman_print,a typeface used in ancient Roman inscriptions
+66924,roman_a_clef,a novel in which actual persons and events are disguised as fictional characters
+66925,roman_fleuve,a French novel in the form of a long chronicle of a family or other social group
+66926,romance,a novel dealing with idealized events remote from everyday life
+66927,romantic,a soulful or amorous idealist
+66928,romanticism,impractical romantic ideals and attitudes
+66929,romanticism romance,an exciting and mysterious quality (as of a heroic time or adventure)
+66930,romanticist romantic,an artist of the Romantic Movement or someone influenced by Romanticism
+66931,romper,a person who romps or frolics
+66932,romper romper_suit,a one-piece garment for children to wear at play; the lower part is shaped like bloomers
+66933,rondeau rondel,a French verse form of 10 or 13 lines running on two rhymes; the opening phrase is repeated as the refrain of the second and third stanzas
+66934,rondelet,a shorter form of rondeau
+66935,rondo rondeau,a musical form that is often the last movement of a sonata
+66936,rood_screen,a screen in a church; separates the nave from the choir or chancel
+66937,roof,the inner top surface of a covered area or hollow space; "the roof of the cave was very high"; "I could see the roof of the bear's mouth"
+66938,roof,protective covering on top of a motor vehicle
+66939,roof,a protective covering that covers or forms the top of a building
+66940,roof_garden,a garden on a flat roof of a building
+66941,roof_peak,the highest point of a roof
+66942,roofer,a craftsman who lays or repairs roofs
+66943,roofing,material used to construct a roof
+66944,roofing,the craft of a roofer
+66945,roofing_material,building material used in constructing roofs
+66946,roofing_paper tar_paper,a heavy paper impregnated with tar and used as part of a roof for waterproofing
+66947,rooftop,the top of a (usually flat) roof
+66948,rooibos Aspalathus_linearis Aspalathus_cedcarbergensis,South African shrub having flat acuminate leaves and yellow flowers; leaves are aromatic when dried and used to make an herbal tea
+66949,rook Corvus_frugilegus,common gregarious Old World bird about the size and color of the American crow
+66950,rookery,a breeding ground for gregarious birds (such as rooks)
+66951,room,opportunity for; "room for improvement"
+66952,room,the people who are present in a room; "the whole room was cheering"
+66953,room,an area within a building enclosed by walls and floor and ceiling; "the rooms were very small but they had a nice view"
+66954,room way elbow_room,space for movement; "room to pass"; "make way for"; "hardly enough elbow room to turn around"
+66955,room_clerk,a hotel clerk who is responsible for room assignments to guests
+66956,room_light,light that provides general illumination for a room
+66957,room_rate,the rate charged daily for a hotel room
+66958,room_temperature,the normal temperature of room in which people live
+66959,roomette,a small private compartment for one on a sleeping car
+66960,roomful,the quantity a room will hold
+66961,roommate roomie roomy,an associate who shares a room with you
+66962,roost,a shelter with perches for fowl or other birds
+66963,roost,a perch on which domestic fowl rest or sleep
+66964,root,a number that, when multiplied by itself some number of times, equals a given number
+66965,root,(botany) the usually underground organ that lacks buds or leaves or nodes; absorbs water and mineral salts; usually it anchors the plant to the ground
+66966,root,the embedded part of a bodily structure such as a tooth, nail, or hair
+66967,root root_word base stem theme radical,(linguistics) the form of a word after all affixes are removed; "thematic vowels are part of the stem"
+66968,root_beer,carbonated drink containing extracts of roots and herbs
+66969,root_beer_float,an ice-cream soda made with ice cream floating in root beer
+66970,root_canal,the passage in the root of a tooth through which its nerve and blood vessels enter the pulp cavity
+66971,root_cap,thimble-shaped mass of cells covering and protecting the growing tip of a root
+66972,root_cellar cellar,an excavation where root vegetables are stored
+66973,root_climber,a plant that climbs by its adventitious roots e.g. ivy
+66974,root_crop,crop grown for its enlarged roots: e.g. beets; potatoes; turnips
+66975,root_hair,thin hairlike outgrowth of an epidermal cell just behind the tip; absorbs nutrients from the soil
+66976,root_rot,disease characterized by root decay; caused by various fungi
+66977,root_vegetable,any of various fleshy edible underground roots or tubers
+66978,rootage,fixedness by or as if by roots; "strengthened by rootage in the firm soil of faith"
+66979,rootage root_system,a developed system of roots
+66980,rooting,the process of putting forth roots and beginning to grow
+66981,rooting_reflex,reflex consisting of head-turning and sucking movements elicited in a normal infant by gently stroking the side of the mouth or cheek
+66982,rootlet,small root or division of a root
+66983,roots,the condition of belonging to a particular place or group by virtue of social or ethnic or cultural lineage; "his roots in Texas go back a long way"; "he went back to Sweden to search for his roots"; "his music has African roots"
+66984,rootstock,root or part of a root used for plant propagation; especially that part of a grafted plant that supplies the roots
+66985,rope,a strong line
+66986,rope-a-dope,a boxing tactic: pretending to be trapped against the ropes while your opponent wears himself out throwing punches
+66987,rope_bridge,a bridge consisting of ropes
+66988,rope_burn,abrasion (usually on the hands) caused by friction from a rope
+66989,rope_ladder,a ladder with side pieces of rope
+66990,rope_tow,a ski tow offering only a moving rope to hold onto
+66991,rope_yarn,the strands out of which ropes are made
+66992,ropemaker rope-maker roper,a craftsman who makes ropes
+66993,roper,a decoy who lures customers into a gambling establishment (especially one with a fixed game)
+66994,roper,a cowboy who uses a lasso to rope cattle or horses
+66995,ropewalk rope_yard,workplace consisting of a long narrow path or shed where rope is made
+66996,ropewalker ropedancer,an acrobat who performs on a rope stretched at some height above the ground
+66997,roping,capturing cattle or horses with a lasso
+66998,roridula,either of 2 species of the genus Roridula; South African viscid perennial low-growing woody shrubs
+66999,rorqual razorback,any of several baleen whales of the family Balaenopteridae having longitudinal grooves on the throat and a small pointed dorsal fin
+67000,rosary prayer_beads,a string of beads used in counting prayers (especially by Catholics)
+67001,rose rosebush,any of many shrubs of the genus Rosa that bear roses
+67002,rose rosiness,a dusty pink color
+67003,rose-colored_starling rose-colored_pastor Pastor_sturnus Pastor_roseus,glossy black bird with pink back and abdomen; chiefly Asian
+67004,rose-root midsummer-men Sedum_rosea,Eurasian mountain plant with fleshy pink-tipped leaves and a cluster of yellow flowers
+67005,rose_apple,fragrant oval yellowish tropical fruit used in jellies and confections
+67006,rose_apple rose-apple_tree jambosa Eugenia_jambos,tropical tree of the East Indies cultivated for its edible fruit
+67007,rose_bed bed_of_roses,a flower bed in which roses are growing
+67008,rose_chafer rose_beetle Cetonia_aurata,a common metallic green European beetle: larvae feed on plant roots and adults on leaves and flowers of e.g. roses
+67009,rose_chafer rose_bug Macrodactylus_subspinosus,common North American beetle: larvae feed on roots and adults on leaves and flowers of e.g. rose bushes or apple trees or grape vines
+67010,rose_chestnut ironwood ironwood_tree Mesua_ferrea,handsome East Indian evergreen tree often planted as an ornamental for its fragrant white flowers that yield a perfume; source of very heavy hardwood used for railroad ties
+67011,rose_garden,a garden for growing roses
+67012,rose_geranium sweet-scented_geranium Pelargonium_graveolens,any of several southern African geraniums having fragrant three-lobed to five-lobed leaves and pink flowers
+67013,rose_globe_lily Calochortus_amoenus,globe lily with deep rose-pink or purple egg-shaped flowers on flexuous stems; western slopes of Sierra Nevada in San Joaquin Valley
+67014,rose_gum Eucalypt_grandis,very tall tree of Queensland and New South Wales
+67015,rose_mallow Alcea_rosea Althea_rosea,plant with terminal racemes of showy white to pink or purple flowers; the English cottage garden hollyhock
+67016,rose_mallow swamp_mallow common_rose_mallow swamp_rose_mallow Hibiscus_moscheutos,showy shrub of salt marshes of the eastern United States having large rose-colored flowers
+67017,rose_moss sun_plant Portulaca_grandiflora,widely cultivated in many varieties for its fleshy moss-like foliage and profusion of brightly colored flowers
+67018,rose_of_Jericho resurrection_plant Anastatica_hierochuntica,small grey Asiatic desert plant bearing minute white flowers that rolls up when dry and expands when moist
+67019,rose_of_Sharon Hibiscus_syriacus,Asiatic shrub or small shrubby tree having showy bell-shaped rose or purple or white flowers and usually three-lobed leaves; widely cultivated in temperate North America and Europe
+67020,rose_quartz,a translucent rose-red variety of quartz used for ornaments
+67021,rose_water,perfume consisting of water scented with oil of roses
+67022,rose_window rosette,circular window filled with tracery
+67023,roseate_spoonbill Ajaia_ajaja,tropical rose-colored New World spoonbill
+67024,rosebay Rhododendron_maxima,late-spring-blooming rhododendron of eastern North America having rosy to pink-purple flowers
+67025,rosebud,the bud of a rose
+67026,rosebud,(a literary reference to) a pretty young girl
+67027,rosebud_cherry winter_flowering_cherry Prunus_subhirtella,shrub or tree native to Japan cultivated as an ornamental for its rose-pink flowers
+67028,rosebud_orchid Cleistes_rosea Pogonia_rosea,orchid of central and northern South America having 1- to 3-blossomed racemes of large showy rose-colored flowers; sometimes placed in genus Pogonia
+67029,rosefish ocean_perch Sebastodes_marinus,large fish of northern Atlantic coasts of America and Europe
+67030,roselle rozelle sorrel red_sorrel Jamaica_sorrel Hibiscus_sabdariffa,East Indian sparsely prickly annual herb or perennial subshrub widely cultivated for its fleshy calyxes used in tarts and jelly and for its bast fiber
+67031,rosemaling,a Scandinavian style of carved or painted decoration (as on furniture or walls or dinnerware) consisting of floral motifs
+67032,rosemary,extremely pungent leaves used fresh or dried as seasoning for especially meats
+67033,rosemary Rosmarinus_officinalis,widely cultivated for its fragrant grey-green leaves used in cooking and in perfumery
+67034,rosette,a cluster of leaves growing in crowded circles from a common center or crown (usually at or close to the ground)
+67035,rosette,an ornament or pattern resembling a rose that is worn as a badge of office or as recognition of having won an honor
+67036,rosewood,hard dark reddish wood of a rosewood tree having a strongly marked grain; used in cabinetwork
+67037,rosewood rosewood_tree,any of those hardwood trees of the genus Dalbergia that yield rosewood--valuable cabinet woods of a dark red or purplish color streaked and variegated with black
+67038,rosid_dicot_family,a family of dicotyledonous plants
+67039,rosid_dicot_genus,a genus of dicotyledonous plants
+67040,rosilla Helenium_puberulum,a sneezeweed of southwestern United States especially southern California
+67041,rosin_bag,a bag filled with rosin; used by baseball pitchers to improve their grip on the ball
+67042,rosinweed Silphium_laciniatum,North American perennial having a resinous odor and yellow flowers
+67043,rosita Centaurium_calycosum,erect plant with small clusters of pink trumpet-shaped flowers of southwestern United States
+67044,rosy_boa Lichanura_trivirgata,boa of rocky desert of southwestern United States
+67045,rota,a roster of names showing the order in which people should perform certain duties
+67046,rotary_actuator positioner,(computer science) the actuator that moves a read/write head to the proper data track
+67047,rotary_engine,an internal-combustion engine in which power is transmitted directly to rotating components
+67048,rotary_press,a printing press for printing from a revolving cylinder
+67049,rotating_mechanism,a mechanism that rotates
+67050,rotating_shaft shaft,a revolving rod that transmits power or motion
+67051,rotation,(mathematics) a transformation in which the coordinate axes are rotated by a fixed angle about the origin
+67052,rotation,a planned recurrent sequence (of crops or personnel etc.); "crop rotation makes a balanced demand on the fertility of the soil"; "the manager had only four starting pitchers in his rotation"
+67053,rotation revolution gyration,a single complete turn (axial or orbital); "the plane made three rotations before it crashed"; "the revolution of the earth about the sun takes one year"
+67054,rotation rotary_motion,the act of rotating as if on an axis; "the rotation of the dancer kept time with the music"
+67055,rotational_latency latency,(computer science) the time it takes for a specific block of data on a data track to rotate around to the read/write head
+67056,rotational_nystagmus,nystagmus caused by the body rotating rapidly; large slow movements of the eyeballs are in the direction of rotation
+67057,rotator_cuff,a supporting structure of the shoulder consisting of the muscles and tendons that attach the arm to the shoulder joint and enable the arm to move
+67058,rotavirus,the reovirus causing infant enteritis
+67059,rote rote_learning,memorization by repetition
+67060,rotenone,a white crystalline insecticide that has low toxicity for mammals; is used in home gardens; extracted from the roots of derris and cube
+67061,rotgut,any alcoholic beverage of inferior quality
+67062,rotifer,minute aquatic multicellular organisms having a ciliated wheel-like organ for feeding and locomotion; constituents of freshwater plankton
+67063,rotisserie,an oven or broiler equipped with a rotating spit on which meat cooks as it turns
+67064,rotisserie,a restaurant that specializes in roasted and barbecued meats
+67065,rotl,a unit of weight used in some Moslem countries near the Mediterranean; varies between one and five pounds
+67066,rotogravure,printing by transferring an image from a photogravure plate to a cylinder in a rotary press
+67067,rotogravure,printed material (text and pictures) produced by an intaglio printing process in a rotary press
+67068,rotor,the revolving bar of a distributor
+67069,rotor,rotating mechanism consisting of an assembly of rotating airfoils; "there are horizontal rotors on a helicopter or compressor rotors in a jet engine"
+67070,rotor rotor_coil,the rotating armature of a motor or generator
+67071,rotor_blade rotary_wing,the long airfoil that rotates to provide the lift that supports a helicopter in the air
+67072,rotor_head rotor_shaft,the axis around which the major rotor of a helicopter turns
+67073,rotten_borough,an English parliamentary constituency with few electors
+67074,rottenstone tripoli,a weathered and decomposed siliceous limestone; in powdered form it is used in polishing
+67075,rotter dirty_dog rat skunk stinker stinkpot bum puke crumb lowlife scum_bag so-and-so git,a person who is deemed to be despicable or contemptible; "only a rotter would do that"; "kill the rat"; "throw the bum out"; "you cowardly little pukes!"; "the British call a contemptible person a `git'"
+67076,rotunda,a building having a circular plan and a dome
+67077,rotunda,a large circular room
+67078,rouge paint blusher,makeup consisting of a pink or red powder applied to the cheeks
+67079,rouge_et_noir trente-et-quarante,a card game in which two rows of cards are dealt and players can bet on the color of the cards or on which row will have a count nearer some number
+67080,rough,the part of a golf course bordering the fairway where the grass is not cut short
+67081,rough-leaved_aster,a variety of aster
+67082,rough-legged_hawk roughleg Buteo_lagopus,large hawk of the northern hemisphere that feeds chiefly on small rodents and is beneficial to farmers
+67083,rough-skinned_newt Taricha_granulosa,newt of humid coast from Alaska to southern California
+67084,rough-stemmed_goldenrod,a variety of goldenrod
+67085,rough_bindweed Smilax_aspera,creeping or climbing evergreen having spiny zigzag stems with shiny leaves and racemes of pale-green flowers; Canary Islands to southern Europe and Ethiopia and India
+67086,rough_cut,the first print of a movie after preliminary editing
+67087,rough_fish,any fish useless for food or sport or even as bait
+67088,rough_green_snake Opheodrys_aestivus,of southern and eastern United States
+67089,roughage fiber,coarse, indigestible plant food low in nutrients; its bulk stimulates intestinal peristalsis
+67090,roughcast,a coarse plaster for the surface of external walls
+67091,roughcast,a rough preliminary model
+67092,roughness,harsh or severe speech or behavior; "men associate the roughness of nonstandard working-class speech with masculinity"; "the roughness of her voice was a signal to keep quiet"
+67093,roughness raggedness,a texture of a surface or edge that is not smooth but is irregular and uneven
+67094,roughrider,a horseman skilled at breaking wild horses to the saddle
+67095,roughtail_stingray Dasyatis_centroura,one of the largest stingrays; found from Cape Cod to Cape Hatteras
+67096,roulade,a dish consisting of a slice of meat that is rolled around a filling and cooked
+67097,roulade,(music) an elaborate run of several notes sung to one syllable
+67098,rouleau,a roll of ribbon
+67099,rouleau,a roll of coins wrapped in paper
+67100,roulette,a gambling game in which players bet on which compartment of a revolving wheel a small ball will come to rest in
+67101,roulette line_roulette,a line generated by a point on one figure rolling around a second figure
+67102,roulette toothed_wheel,a wheel with teeth for making a row of perforations
+67103,roulette_ball,the ball used to play roulette
+67104,roulette_wheel wheel,game equipment consisting of a wheel with slots that is used for gambling; the wheel rotates horizontally and players bet on which slot the roulette ball will stop in
+67105,round,the course along which communications spread; "the story is going the rounds in Washington"
+67106,round,a cut of beef between the rump and the lower leg
+67107,round,an outburst of applause; "there was a round of applause"
+67108,round,(often plural) a series of professional calls (usually in a set order); "the doctor goes on his rounds first thing every morning"; "the postman's rounds"; "we enjoyed our round of the local bars"
+67109,round daily_round,the usual activities in your day; "the doctor made his rounds"
+67110,round round_of_drinks,a serving to each of a group (usually alcoholic); "he ordered a second round"
+67111,round troll,a partsong in which voices follow each other; one voice starts and others join in one after another until all are singing different parts of the song at the same time; "they enjoyed singing rounds"
+67112,round unit_of_ammunition one_shot,a charge of ammunition for a single shot
+67113,round-bottom_flask,a spherical flask with a narrow neck
+67114,round-headed_leek Allium_sphaerocephalum,Old World leek with a spherical bulb
+67115,round-leaved_rein_orchid Habenaria_orbiculata,orchid having a raceme of large greenish-white flowers on a single flower stalk growing between two elliptic or round basal leaves lying on the ground; from northern Oregon and Montana across Canada to the eastern United States
+67116,round-tailed_muskrat Florida_water_rat Neofiber_alleni,of Florida wetlands
+67117,round-the-clock_patrol,a continuous nonstop patrol
+67118,round-trip_light_time RTLT,the elapsed time it takes for a signal to travel from Earth to a spacecraft (or other body) and back to the starting point
+67119,round-trip_ticket return_ticket,a ticket to a place and back (usually over the same route)
+67120,round_arch,an arch formed in a continuous curve; characteristic of Roman architecture
+67121,round_bone,bones that are round in shape
+67122,round_dance ring_dance,a folk dance; dancers form a circle
+67123,round_dance round_dancing,a ballroom dance characterized by revolving movement
+67124,round_file,a file with a circular cross section; used to file the inside of holes
+67125,round_hand,a clearly written style of longhand with large round curves
+67126,round_ligament_of_the_uterus ligamentum_teres_uteri,ligament attached to the uterus on either side in front of and below the opening of the Fallopian tube and passing through the inguinal canal to the labia majora
+67127,round_of_golf round,the activity of playing 18 holes of golf; "a round of golf takes about 4 hours"
+67128,round_robin,a tournament in which every contestant plays every other contestant
+67129,round_robin,a letter signed by a number of people
+67130,round_scad cigarfish quiaquia Decapterus_punctatus,small fusiform fish of western Atlantic
+67131,round_shape,a shape that is curved and without sharp angles
+67132,round_steak,a lean cut of beef from between the rump and the shank
+67133,round_table roundtable round-table_conference,a meeting of peers for discussion and exchange of views; "a roundtable on the future of computing"
+67134,round_trip,a trip to some place and back again
+67135,round_whitefish Menominee_whitefish Prosopium_cylindraceum,a whitefish with a bronze back; of northern North America and Siberia
+67136,roundedness bulginess,the property possessed by a rounded convexity
+67137,roundel,English form of rondeau having three triplets with a refrain after the first and third
+67138,roundel,round piece of armor plate that protects the armpit
+67139,roundel,(heraldry) a charge in the shape of a filled circle; "a hollow roundel"
+67140,roundelay,a song in which a line or phrase is repeated as the refrain
+67141,rounder,a tool for rounding corners or edges
+67142,rounders,an English ball game similar to baseball
+67143,roundhead,a brachycephalic person
+67144,roundhouse,workplace consisting of a circular building for repairing locomotives
+67145,roundhouse,a hook delivered with an exaggerated swing
+67146,rounding rounding_error,(mathematics) a miscalculation that results from rounding off numbers to a convenient number of decimals; "the error in the calculation was attributable to rounding"; "taxes are rounded off to the nearest dollar but the rounding error is surprisingly small"
+67147,roundness,the quality of being round numbers; "he gave us the results in round numbers, but their roundness didn't affect the point he was making"
+67148,roundness,the property possessed by a line or surface that is curved and not angular
+67149,roundness rotundity,the fullness of a tone of voice; "there is a musky roundness to his wordiness"
+67150,roundsman,a workman employed to make rounds (to deliver goods or make inspections or so on)
+67151,roundup,a summary list; as in e.g. "a news roundup"
+67152,roundup,the activity of gathering livestock together so that they can be counted or branded or sold
+67153,roundup,the systematic gathering up of suspects by the police; "a mass roundup of suspects"
+67154,rout,an overwhelming defeat
+67155,routemarch,a long training march for troops
+67156,router,a worker who routes shipments for distribution and delivery
+67157,router,(computer science) a device that forwards data packets between computer networks
+67158,router,a power tool with a shaped cutter; used in carpentry for cutting grooves
+67159,router_plane,a woodworking plane with a narrow cutting head that will make grooves with smooth bottoms
+67160,routine modus_operandi,an unvarying or habitual method or procedure
+67161,routine subroutine subprogram procedure function,a set sequence of steps, part of larger computer program
+67162,roux,a mixture of fat and flour heated and used as a basis for sauces
+67163,rove_beetle,active beetle typically having predatory or scavenging habits
+67164,rover scouter,an adult member of the Boy Scouts movement
+67165,row,a long continuous strip (usually running horizontally); "a mackerel sky filled with rows of clouds"; "rows of barbed wire protected the trenches"
+67166,row,a linear array of numbers, letters, or symbols side by side
+67167,row,an arrangement of objects or people side by side in a line; "a row of chairs"
+67168,row,a continuous chronological succession without an interruption; "they won the championship three years in a row"
+67169,row_house town_house,a house that is one of a row of identical houses situated side by side and sharing common walls
+67170,row_of_bricks,a course of bricks place next to each other (usually in a straight line)
+67171,rowan rowan_tree European_mountain_ash Sorbus_aucuparia,Eurasian tree with orange-red berrylike fruits
+67172,rowanberry,decorative red berrylike fruit of a rowan tree
+67173,rowdiness rowdyism roughness disorderliness,rowdy behavior
+67174,rowel,a small spiked wheel at the end of a spur
+67175,rowing row,the act of rowing as a sport
+67176,rowing_boat,a rowboat
+67177,rowing_club,a club for rowers
+67178,rowlock_arch,an arch that is formed with more than one concentric row of voussoirs
+67179,royal,a sail set next above the topgallant on a royal mast
+67180,royal royal_stag,stag with antlers of 12 or more branches
+67181,royal_agaric Caesar's_agaric Amanita_caesarea,widely distributed edible mushroom resembling the fly agaric
+67182,royal_brace,a brace to secure the royal mast
+67183,royal_casino,a form of casino in which face cards have extra point values
+67184,royal_charter,a charter granted by the sovereign (especially in Great Britain)
+67185,royal_fern royal_osmund king_fern ditch_fern French_bracken Osmunda_regalis,large deeply rooted fern of worldwide distribution with upright bipinnate compound tufted fronds
+67186,royal_flush,a poker hand with the ace, king, queen, jack, and 10 all in the same suit
+67187,royal_jelly,a secretion of the pharyngeal glands of bees that is fed to very young larvae and to bees destined to be queens
+67188,royal_mast,topmast immediately above the topgallant mast
+67189,royal_palm Roystonea_regia,tall feather palm of southern Florida and Cuba
+67190,royal_poinciana flamboyant flame_tree peacock_flower Delonix_regia Poinciana_regia,showy tropical tree or shrub native to Madagascar; widely planted in tropical regions for its immense racemes of scarlet and orange flowers; sometimes placed in genus Poinciana
+67191,royal_road,an auspicious way or means to achieve something; "the royal road to success"
+67192,royal_tennis real_tennis court_tennis,an ancient form of tennis played in a four-walled court
+67193,royalism,adherence or attachment to a monarchy or to the principle of monarchal government
+67194,royalty,payment to the holder of a patent or copyright or resource for the right to use their property; "he received royalties on his book"
+67195,royalty royal_family royal_line royal_house,royal persons collectively; "the wedding was attended by royalty"
+67196,rub wipe,the act of rubbing or wiping; "he gave the hood a quick rub"
+67197,rub-a-dub rataplan drumbeat,the sound made by beating a drum
+67198,rub_up,a review that refreshes your memory; "I need a rub up on my Latin"
+67199,rubato,a flexible tempo; not strictly on the beat
+67200,rubber,a contest consisting of a series of successive matches between the same sides; "he won three out of five games to take the rubber"
+67201,rubber natural_rubber India_rubber gum_elastic caoutchouc,an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products
+67202,rubber synthetic_rubber,any of various synthetic elastic materials whose properties resemble natural rubber
+67203,rubber_band elastic_band elastic,a narrow band of elastic rubber used to hold things (such as papers) together
+67204,rubber_boa tow-headed_snake Charina_bottae,boa of grasslands and woodlands of western North America; looks and feels like rubber with tail and head of similar shape
+67205,rubber_boot gum_boot,a high boot made of rubber
+67206,rubber_bullet,a bullet made of hard rubber; designed for use in crowd control
+67207,rubber_cement,an adhesive made by dissolving unvulcanized rubber in a solvent like benzene or naphtha
+67208,rubber_eraser rubber pencil_eraser,an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil
+67209,rubber_stamp,routine authorization of an action without questions
+67210,rubberneck rubbernecker,a person who stares inquisitively
+67211,rubbing,representation consisting of a copy (as of an engraving) made by laying paper over something and rubbing it with charcoal
+67212,rubbing_alcohol,lotion consisting of a poisonous solution of isopropyl alcohol or denatured ethanol alcohol for external use
+67213,rubbish trash scrap,worthless material that is to be disposed of
+67214,rubdown,the act of rubbing down, usually for relaxation or medicinal purposes
+67215,rubefacient,a medicine for external application that produces redness of the skin
+67216,rubel,the basic unit of money in Belarus
+67217,rubella_panencephalitis,a rare loss of mental and physical skills in adolescents; associated with the rubella virus
+67218,rubicelle,a yellow or orange variety of ruby spinel
+67219,rubidium Rb atomic_number_37,a soft silvery metallic element of the alkali metal group; burns in air and reacts violently in water; occurs in carnallite and lepidolite and pollucite
+67220,rubidium-strontium_dating,geological dating based on the proportions of radioactive rubidium into its decay product strontium; radioactive rubidium has a half-life of 47,000,000,000 years
+67221,ruble,the basic unit of money in Tajikistan
+67222,ruble rouble,the basic unit of money in Russia
+67223,rubric,directions for the conduct of Christian church services (often printed in red in a prayer book)
+67224,rubric,an authoritative rule of conduct or procedure
+67225,rubric,a title or heading that is printed in red or in a special type
+67226,rubric,category name; "it is usually discussed under the rubric of `functional obesity'"
+67227,ruby,a transparent deep red variety of corundum; used as a gemstone and in lasers
+67228,ruby,a transparent piece of ruby that has been cut and polished and is valued as a precious gem
+67229,ruby-crowned_kinglet ruby-crowned_wren Regulus_calendula,American kinglet with a notable song and in the male a red crown patch
+67230,ruby_wood red_sandalwood,hard durable wood of red sandalwood trees (Pterocarpus santalinus); prized for cabinetwork
+67231,ruck herd,a crowd especially of ordinary or undistinguished persons or things; "his brilliance raised him above the ruck"; "the children resembled a fairy herd"
+67232,rudaceous_rock,a sedimentary rock formed of coarse-grained material
+67233,rudapithecus Dryopithecus_Rudapithecus_hungaricus,fossil hominoids from northern central Hungary; late Miocene
+67234,rudd Scardinius_erythrophthalmus,European freshwater fish resembling the roach
+67235,rudder,a hinged vertical airfoil mounted at the tail of an aircraft and used to make horizontal course changes
+67236,rudder,(nautical) steering mechanism consisting of a hinged vertical plate mounted at the stern of a vessel
+67237,rudder_blade,the vertical blade on a rudder
+67238,rudderfish banded_rudderfish Seriola_zonata,fish having the habit of following ships; found in North American and South American coastal waters
+67239,rudderpost rudderstock,a vertical post at the forward edge of a rudder that enables the rudder to pivot
+67240,ruddiness rosiness,a healthy reddish complexion
+67241,ruddle reddle raddle,a red iron ore used in dyeing and marking
+67242,ruddy_duck Oxyura_jamaicensis,reddish-brown stiff-tailed duck of North America and northern South America
+67243,ruddy_turnstone Arenaria_interpres,common Arctic turnstone that winters in South America and Australia
+67244,rudiment,the remains of a body part that was functional at an earlier stage of life; "Meckel's diverticulum is the rudiment of the embryonic yolk sac"
+67245,rudiments first_principles alphabet ABC ABC's ABCs,the elementary stages of any subject (usually plural); "he mastered only the rudiments of geometry"
+67246,rue,leaves sometimes used for flavoring fruit or claret cup but should be used with great caution: can cause irritation like poison ivy
+67247,rue,(French) a street or road in France
+67248,rue herb_of_grace Ruta_graveolens,European strong-scented perennial herb with grey-green bitter-tasting leaves; an irritant similar to poison ivy
+67249,rue_anemone Anemonella_thalictroides,woodland flower native to eastern North America having cup-shaped flowers reminiscent of anemone but more delicate
+67250,ruff Philomachus_pugnax,common Eurasian sandpiper; the male has an erectile neck ruff in breeding season
+67251,ruff trumping,(card games) the act of taking a trick with a trump when unable to follow suit
+67252,ruffed_grouse partridge Bonasa_umbellus,valued as a game bird in eastern United States and Canada
+67253,ruffianism,violent lawless behavior
+67254,rug carpet carpeting,floor covering consisting of a piece of thick heavy fabric (usually with nap or pile)
+67255,rug_merchant,a merchant who sells rugs
+67256,ruga,(anatomy) a fold or wrinkle or crease; "rugae of the stomach"
+67257,rugby rugby_football rugger,a form of football played with an oval ball
+67258,rugby_ball,inflated oval ball used in playing rugby
+67259,rugel's_plantain broad-leaved_plantain Plantago_rugelii,North American plantain having reddish leafstalks and broad leaves
+67260,rugged_individualism,individualism in social and economic affairs; belief not only in personal liberty and self-reliance but also in free competition
+67261,ruggedization ruggedisation,the act of making a piece of equipment rugged (strengthening to resist wear or abuse)
+67262,ruggedness,the quality of being topologically uneven; "the ruggedness of the mountains"
+67263,rugulah rugelach ruggelach,pastry made with a cream cheese dough and different fillings (as raisins and walnuts and cinnamon or chocolate and walnut and apricot preserves)
+67264,ruin,a ruined building; "they explored several Roman ruins"
+67265,ruin ruination,an irrecoverable state of devastation and destruction; "you have brought ruin on this entire family"
+67266,ruin ruination,an event that results in destruction
+67267,rule,the duration of a monarch's or government's power; "during the rule of Elizabeth"
+67268,rule,directions that define the way a game or sport is to be conducted; "he knew the rules of chess"
+67269,rule,any one of a systematic body of regulations defining the way of life of members of a religious order; "the rule of St. Dominic"
+67270,rule formula,(mathematics) a standard procedure for solving a class of mathematical problems; "he determined the upper bound with Descartes' rule of signs"; "he gave us a general formula for attacking polynomials"
+67271,rule linguistic_rule,(linguistics) a rule describing (or prescribing) a linguistic practice
+67272,rule prescript,prescribed guide for conduct or action
+67273,rule regulation,a principle or condition that customarily governs behavior; "it was his rule to take a walk before breakfast"; "short haircuts were the regulation"
+67274,rule ruler,measuring stick consisting of a strip of wood or metal or plastic with a straight edge that is used for drawing straight lines and measuring lengths
+67275,rule_of_evidence,(law) a rule of law whereby any alleged matter of fact that is submitted for investigation at a judicial trial is established or disproved
+67276,rule_of_law,a state of order in which events conform to the law
+67277,ruler swayer,a person who rules or commands; "swayer of the universe"
+67278,rulership,the position of ruler
+67279,ruling_class people_in_power,the class of people exerting power or authority
+67280,rum,liquor distilled from fermented molasses
+67281,rum_sling,a sling made with rum
+67282,rumba rhumba,syncopated music in duple time for dancing the rumba
+67283,rumba rhumba,a folk dance in duple time that originated in Cuba with Spanish and African elements; features complex footwork and violent movement
+67284,rumba rhumba,a ballroom dance based on the Cuban folk dance
+67285,rumble,a servant's seat (or luggage compartment) in the rear of a carriage
+67286,rumble gang_fight,a fight between rival gangs of adolescents
+67287,rumble rumbling grumble grumbling,a loud low dull continuous noise; "they heard the rumbling of thunder"
+67288,rumble_seat,a folding outside seat in the back of some early cars
+67289,rumen first_stomach,the first compartment of the stomach of a ruminant; here food is collected and returned to the mouth as cud for chewing
+67290,ruminant,any of various cud-chewing hoofed mammals having a stomach divided into four (occasionally three) compartments
+67291,rumination,(of ruminants) chewing (the cud); "ruminants have remarkable powers of rumination"
+67292,rumination,regurgitation of small amounts of food; seen in some infants after feeding
+67293,rummage,a jumble of things to be given away
+67294,rummage_sale jumble_sale,a sale of donated articles
+67295,rummer,a large drinking glass (ovoid bowl on a stem) for drinking toasts
+67296,rummy rum,a card game based on collecting sets and sequences; the winner is the first to meld all their cards
+67297,rumor rumour hearsay,gossip (usually a mixture of truth and untruth) passed around by word of mouth
+67298,rump,fleshy hindquarters; behind the loin and above the round
+67299,rump_roast,a cut of beef or veal from the fleshy hindquarters of the animal
+67300,rump_steak,a steak cut from the rump
+67301,rumpus_room playroom game_room,a recreation room for noisy activities (parties or children's play etc)
+67302,rumrunner,someone who illegally smuggles liquor across a border
+67303,run,the continuous period of time during which something (a machine or a factory) operates or continues in operation; "the assembly line was on a 12-hour run"
+67304,run,unrestricted freedom to use; "he has the run of the house"
+67305,run,the production achieved during a continuous period of operation (of a machine or factory etc.); "a daily run of 100,000 gallons of paint"
+67306,run,an unbroken chronological sequence; "the play had a long run on Broadway"; "the team enjoyed a brief run of victories"
+67307,run,a short trip; "take a run into town"
+67308,run,a regular trip; "the ship made its run in record time"
+67309,run ladder ravel,a row of unravelled stitches; "she got a run in her stocking"
+67310,run running,the act of running; traveling on foot at a fast pace; "he broke into a run"; "his daily run keeps him fit"
+67311,run running running_play running_game,(American football) a play in which a player attempts to carry the ball through or past the opposing team; "the defensive line braced to stop the run"; "the coach put great emphasis on running"
+67312,run tally,a score in baseball made by a runner touching all four bases safely; "the Yankees scored 3 runs in the bottom of the 9th"; "their first tally came in the 3rd inning"
+67313,run-on_sentence,an ungrammatical sentence in which two or more independent clauses are conjoined without a conjunction
+67314,run-through,an uninterrupted rehearsal
+67315,run-time,the time at which a (software or multimedia) program is run
+67316,run-time,(computer science) the length of time it takes to execute a software program
+67317,run-up,the approach run during which an athlete gathers speed
+67318,run_batted_in rbi,a run that is the result of the batter's performance; "he had more than 100 rbi last season"
+67319,runaway blowout romp laugher shoo-in walkaway,an easy victory
+67320,runcible_spoon,a fork-like spoon with a cutting edge; coined by Edward Lear
+67321,runcinate_leaf,a leaf having incised margins with the lobes or teeth curved toward the base; as a dandelion leaf
+67322,rundle spoke rung,one of the crosspieces that form the steps of a ladder
+67323,rune runic_letter,any character from an ancient Germanic alphabet used in Scandinavia from the 3rd century to the Middle Ages; "each rune had its own magical significance"
+67324,rung round stave,a crosspiece between the legs of a chair
+67325,runner,a trained athlete who competes in foot races
+67326,runner,someone who travels on foot by running
+67327,runner,a person who is employed to deliver messages or documents; "he sent a runner over with the contract"
+67328,runner,a long narrow carpet
+67329,runner,device consisting of the parts on which something can slide along
+67330,runner blue_runner Caranx_crysos,fish of western Atlantic: Cape Cod to Brazil
+67331,runner-up second_best,the competitor who finishes second
+67332,running,the state of being in operation; "a running engine"
+67333,running,the act of administering or being in charge of something; "he has responsibility for the running of two companies at the same time"
+67334,running_away,the act of leaving (without permission) the place you are expected to be
+67335,running_back,(football) a back on the offensive team (a fullback or halfback) who tries to advance the ball by carrying it on plays from the line of scrimmage
+67336,running_board,a narrow footboard serving as a step beneath the doors of some old cars
+67337,running_head running_headline,a heading printed at the top of every page (or every other page) of a book
+67338,running_mate,a nominee for the lesser of two closely related political offices
+67339,running_pine Lycopodium_clavitum,a variety of club moss
+67340,running_shoe,a light comfortable shoe designed for running
+67341,running_stitch,small, even, hand stitches run in and out
+67342,running_suit,a matching jacket and pants worn by joggers and made of fabric that absorbs perspiration
+67343,running_time,the length of time that a movie or tv show runs
+67344,running_title,the title (or a shortened title) of a book used as a running head
+67345,runoff,a final election to resolve an earlier election that did not produce a winner
+67346,runt shrimp peewee half-pint,disparaging terms for small people
+67347,runup run-up,a substantial increase over a relatively short period of time; "a runup in interest rates"; "market runups are followed by corrections"
+67348,runway,a chute down which logs can slide
+67349,runway,a narrow platform extending from the stage into the audience in a theater or nightclub etc.
+67350,runway,a strip of level paved surface where planes can take off and land
+67351,rupestral_plant rupestrine_plant rupicolous_plant saxicolous_plant,plants growing among rocks
+67352,rupiah,the basic unit of money in Indonesia; equal to 100 sen
+67353,rupture,state of being torn or burst open
+67354,rupture,the act of making a sudden noisy break
+67355,rupture breach break severance rift falling_out,a personal or social separation (as between opposing factions); "they hoped to avoid a break in relations"
+67356,rupturewort Hernaria_glabra,common prostrate Old World herb often used as a ground cover; formerly reputed to cure ruptures
+67357,rural_free_delivery RFD,free government delivery of mail in outlying country areas
+67358,ruralism rusticism,a rural idiom or expression
+67359,ruralist,an advocate of rural living
+67360,rurality ruralism,a rural characteristic or trait; "a place with the rurality of a turnip field"
+67361,ruse artifice,a deceptive maneuver (especially to avoid capture)
+67362,rush,grasslike plants growing in wet places and having cylindrical often hollow stems
+67363,rush,a sudden burst of activity; "come back after the rush"
+67364,rush rushing,(American football) an attempt to advance the ball by running into the line; "the linebackers were ready to stop a rush"
+67365,rush spate surge upsurge,a sudden forceful flow
+67366,rush_aster,a variety of aster
+67367,rush_grass rush-grass,grass having wiry stems and sheathed panicles
+67368,rush_hour,the times at the beginning and end of the working day when many people are traveling to or from work
+67369,rush_rose Helianthemum_scoparium,woody yellow-flowered perennial of southeastern United States
+67370,rusher,(football) a ball carrier who tries to gain ground by running with the ball
+67371,rusher,someone who migrates as part of a rush to a new gold field or a new territory
+67372,rusher,a person who rushes; someone in a hurry; someone who acts precipitously
+67373,rushlight rush_candle,a tallow candle with a rush stem as the wick
+67374,russet,a reddish brown homespun fabric
+67375,rust,a red or brown oxide coating on iron or steel caused by the action of oxygen and moisture
+67376,rust,a plant disease that produces a reddish-brown discoloration of leaves and stems; caused by various rust fungi
+67377,rust rust_fungus,any of various fungi causing rust disease in plants
+67378,rust rusting,the formation of reddish-brown ferric oxides on iron by low-temperature oxidation in the presence of water
+67379,rust_inhibitor,antioxidant that inhibits the formation of rust
+67380,rust_mite,any of several varieties of mite that burrow into plants and cause a reddish-brown discoloration on the leaves or fruit
+67381,rustic,an unsophisticated country person
+67382,rustication,the condition naturally attaching to life in the country
+67383,rustication,the construction of masonry or brickwork in a rustic manner
+67384,rustication,the action of retiring to and living in the country
+67385,rustication,temporary dismissal of a student from a university
+67386,rustication,banishment into the country
+67387,rusticity gaucherie,the quality of being rustic or gauche
+67388,rustiness,the condition of being coated or clogged with rust
+67389,rustiness,ineptitude or awkwardness as a consequence of age or lack of practice; "his rustiness showed when he was asked to speed up"
+67390,rustle rustling whisper whispering,a light noise, like the noise of silk clothing or leaves blowing in the wind
+67391,rustler cattle_thief,someone who steals livestock (especially cattle)
+67392,rustling,the stealing of cattle
+67393,rusty_blackbird rusty_grackle Euphagus_carilonus,North American blackbird whose bluish-black plumage is rusty-edged in the fall
+67394,rusty_woodsia fragrant_woodsia oblong_woodsia Woodsia_ilvensis,a common rock-inhabiting fern of northern temperate regions having rusty-brown stipes and lanceolate pinnate fronds
+67395,rut,a groove or furrow (especially one in soft earth caused by wheels)
+67396,rut groove,a settled and monotonous routine that is hard to escape; "they fell into a conversational rut"
+67397,rutabaga swede swedish_turnip yellow_turnip,the large yellow root of a rutabaga plant used as food
+67398,rutabaga turnip_cabbage swede Swedish_turnip rutabaga_plant Brassica_napus_napobrassica,a cruciferous plant with a thick bulbous edible yellow root
+67399,ruthenium Ru atomic_number_44,a rare polyvalent metallic element of the platinum group; it is found associated with platinum
+67400,rutherford,a unit strength of a radioactive source equal to one million disintegrations per second
+67401,rutherfordium Rf unnilquadium Unq element_104 atomic_number_104,a radioactive transuranic element which has been synthesized
+67402,rutile,a mineral consisting of titanium dioxide in crystalline form; occurs in metamorphic and plutonic rocks and is a major source of titanium
+67403,rya rya_rug,a shag rug made in Sweden
+67404,rydberg rydberg_constant rydberg_unit,a wave number characteristic of the wave spectrum of each element
+67405,rye,the seed of the cereal grass
+67406,rye Secale_cereale,hardy annual cereal grass widely cultivated in northern Europe where its grain is the chief ingredient of black bread and in North America for forage and soil improvement
+67407,rye rye_whiskey rye_whisky,whiskey distilled from rye or rye and malt
+67408,rye_bread,any of various breads made entirely or partly with rye flour
+67409,rye_ergot,a sclerotium or hardened mass of mycelium
+67410,rye_grass ryegrass,any of several annual or perennial Eurasian grasses
+67411,sabbat witches'_Sabbath,a midnight meeting of witches to practice witchcraft and sorcery; in the Middle Ages it was supposed to be a demonic orgy
+67412,sabbatia,any of various plants of the genus Sabbatia having usually pink cymose flowers; occur from acid bogs to brackish marshes
+67413,sabbatical sabbatical_leave,a leave usually taken every seventh year
+67414,sabbatical_year,a sabbatical leave lasting one year
+67415,saber sabre,a fencing sword with a v-shaped blade and a slightly curved handle
+67416,saber-toothed_tiger sabertooth,any of many extinct cats of the Old and New Worlds having long swordlike upper canine teeth; from the Oligocene through the Pleistocene
+67417,saber_rattling sabre_rattling,the ostentatious display of military power (with the implied threat that it might be used)
+67418,saber_saw jigsaw reciprocating_saw,a portable power saw with a reciprocating blade; can be used with a variety of blades depending on the application and kind of cut; generally have a plate that rides on the surface that is being cut
+67419,sabicu Lysiloma_sabicu,West Indian tree yielding a hard dark brown wood resembling mahogany in texture and value
+67420,sabicu sabicu_wood,the wood of the sabicu which resembles mahogany
+67421,sabin,a unit of acoustic absorption equivalent to the absorption by a square foot of a surface that absorbs all incident sound
+67422,sable,the expensive dark brown fur of the marten
+67423,sable,a scarf (or trimming) made of sable
+67424,sable Martes_zibellina,marten of northern Asian forests having luxuriant dark brown fur
+67425,sable sable_brush sable's_hair_pencil,an artist's brush made of sable hairs
+67426,sable_antelope Hippotragus_niger,large black East African antelope with sharp backward-curving horns
+67427,sable_coat,a fur coat made of sable furs
+67428,sabot wooden_shoe,a shoe carved from a single block of wood
+67429,sabotage,a deliberate act of destruction or disruption in which equipment is damaged
+67430,saboteur wrecker diversionist,someone who commits sabotage or deliberately causes wrecks
+67431,sabra,a native-born Israeli
+67432,sac,a structure resembling a bag in an animal
+67433,sac_fungus,any of various ascomycetous fungi in which the spores are formed in a sac or ascus
+67434,saccade,a rapid, jerky movement of the eyes between positions of rest
+67435,saccharic_acid,a white dicarboxylic acid formed from oxidation of sugar or starch
+67436,saccharin,a crystalline substance 500 times sweeter than sugar; used as a calorie-free sweetener
+67437,saccharinity,the excessive sweetness of saccharin
+67438,saccule sacculus,a small sac or pouch (especially the smaller chamber of the membranous labyrinth)
+67439,sacerdotalism,a belief that priests can act as mediators between human beings and God
+67440,sachem,a political leader (especially of Tammany Hall)
+67441,sachem sagamore,a chief of a North American tribe or confederation (especially an Algonquian chief)
+67442,sachet,a small soft bag containing perfumed powder; used to perfume items in a drawer or chest
+67443,sack,any of various light dry strong white wine from Spain and Canary Islands (including sherry)
+67444,sack,the plundering of a place by an army or mob; usually involves destruction and slaughter; "the sack of Rome"
+67445,sack poke paper_bag carrier_bag,a bag made of paper or plastic for holding customer's purchases
+67446,sack sackful,the quantity contained in a sack
+67447,sack sacque,a woman's full loose hiplength jacket
+67448,sack_coat,man's hiplength coat with a straight back; the jacket of a suit
+67449,sack_race,a novelty race in which competitors jump ahead with their feet confined in a sack
+67450,sackbut,a medieval musical instrument resembling a trombone
+67451,sackcloth,a garment made of coarse sacking; formerly worn as an indication of remorse
+67452,sackcloth,a coarse cloth resembling sacking
+67453,sackcloth_and_ashes,a display of extreme remorse or repentance or grief
+67454,sacking bagging,coarse fabric used for bags or sacks
+67455,sacral_nerve,any of five pairs of spinal nerves emerging from the sacral region of the spinal cord
+67456,sacral_plexus plexus_sacralis,a nerve plexus formed by the 4th and 5th lumbar and 1st, 2nd, 3rd sacral nerves; supplies the pelvic region and lower limbs
+67457,sacral_vein vena_sacralis,vein of the sacral region
+67458,sacral_vertebra,one of 5 vertebrae in the human spine that fuse in the adult to form the sacrum
+67459,sacrament,a formal religious ceremony conferring a specific grace on those who receive it; the two Protestant ceremonies are baptism and the Lord's Supper; in the Roman Catholic Church and the Eastern Orthodox Church there are seven traditional rites accepted as instituted by Jesus: baptism and confirmation and Holy Eucharist and penance and holy orders and matrimony and extreme unction
+67460,sacred_cow,a person unreasonably held to be immune to criticism
+67461,sacred_ibis Threskiornis_aethiopica,African ibis venerated by ancient Egyptians
+67462,sacred_text sacred_writing religious_writing religious_text,writing that is venerated for the worship of a deity
+67463,sacredness,the quality of being sacred
+67464,sacrifice,a loss entailed by giving up or selling something at less than its value; "he had to sell his car at a considerable sacrifice"
+67465,sacrifice,personnel that are sacrificed (e.g., surrendered or lost in order to gain an objective)
+67466,sacrifice,(baseball) an out that advances the base runners
+67467,sacrifice ritual_killing,the act of killing (an animal or person) in order to propitiate a deity
+67468,sacrifice_fly,a sacrifice made by hitting a long fly ball
+67469,sacrificer,a religious person who offers up a sacrifice
+67470,sacrilegiousness,profaneness by virtue of committing sacrilege
+67471,sacrum,wedge-shaped bone consisting of five fused vertebrae forming the posterior part of the pelvis; its base connects with the lowest lumbar vertebra and its tip with the coccyx
+67472,saddle,cut of meat (especially mutton or lamb) consisting of part of the backbone and both loins
+67473,saddle,a piece of leather across the instep of a shoe
+67474,saddle,a seat for the rider of a horse or other animal
+67475,saddle,posterior part of the back of a domestic fowl
+67476,saddle_blanket saddlecloth horse_blanket,stable gear consisting of a blanket placed under the saddle
+67477,saddle_block_anesthesia saddle_block_anaesthesia,the parts of a patient's body that would touch a saddle if the patient were sitting in one are anesthetized by injecting a local anesthetic into the spinal cord
+67478,saddle_hackle saddle_feather,a long narrow feather on the back (saddle) of a domestic fowl
+67479,saddle_horse riding_horse mount,a lightweight horse kept for riding only
+67480,saddle_of_lamb,backbone and both loins of a lamb
+67481,saddle_oxford saddle_shoe,an oxford with a saddle of contrasting color
+67482,saddle_oyster Anomia_ephippium,thin-shelled bivalve having the right valve deeply notched
+67483,saddle_seat,a chair seat that is slightly concave and sometimes has a thickened ridge in the center; "the saddle seat fitted his buttocks nicely"
+67484,saddle_soap leather_soap,a mild soap for cleansing and conditioning leather
+67485,saddle_sore,sore on a horseback rider chafed by a saddle
+67486,saddle_sore gall,an open sore on the back of a horse caused by ill-fitting or badly adjusted saddle
+67487,saddle_stitch,a decorative overcast or running stitch, especially in a contrasting color
+67488,saddleback saddle,a pass or ridge that slopes gently between two peaks (is shaped like a saddle)
+67489,saddlebag,a large bag (or pair of bags) hung over a saddle
+67490,saddlebill jabiru Ephippiorhynchus_senegalensis,large black-and-white stork of tropical Africa; its red bill has a black band around the middle
+67491,saddler,a maker and repairer and seller of equipment for horses
+67492,saddlery,workshop where a saddler works
+67493,sadhe,the 18th letter of the Hebrew alphabet
+67494,sadhu saddhu,(Hinduism) an ascetic holy man
+67495,sadism,sexual pleasure obtained by inflicting harm (physical or psychological) on others
+67496,sadist,someone who obtains pleasure from inflicting pain on others
+67497,sadness sorrow sorrowfulness,the state of being sad; "she tired of his perpetual sadness"
+67498,sadness unhappiness,emotions experienced when not in a state of well-being
+67499,sadomasochism,sadism and masochism combined in one person
+67500,sadomasochist,someone who enjoys both sadism and masochism
+67501,safari_park,an area of parkland where wild animals are kept and can be viewed by visitors driving through
+67502,safe,a ventilated or refrigerated cupboard for securing provisions from pests
+67503,safe,strongbox where valuables can be safely kept
+67504,safe-conduct safeguard,a document or escort providing safe passage through a region especially in time of war
+67505,safe-deposit safe-deposit_box safety-deposit safety_deposit_box deposit_box lockbox,a fireproof metal strongbox (usually in a bank) for storing valuables
+67506,safe_harbor,the target company defends itself by acquiring a company so onerously regulated that it makes the target less attractive; "the acquisition gave the company a safe harbor"
+67507,safe_house,a house used as a hiding place or refuge by members of certain organizations
+67508,safe_period,that time during a woman's menstrual cycle during which conception is least likely to occur (usually immediately before of after menstruation)
+67509,safe_sex,sexual activity (especially sexual intercourse) with the use of measures (such as latex condoms) to avoid the transmission of disease (especially AIDS)
+67510,safebreaker safecracker cracksman,a thief who breaks open safes to steal valuable contents
+67511,safehold,a refuge from attack
+67512,safeness,the quality of being safe
+67513,safety,the state of being certain that adverse effects will not be caused by some agent under defined conditions; "insure the safety of the children"; "the reciprocal of safety is risk"
+67514,safety,a score in American football; a player is tackled behind his own goal line
+67515,safety refuge,a safe place; "He ran to safety"
+67516,safety_arch,an undecorated arch that is included in order to strengthen or support a construction
+67517,safety_belt life_belt safety_harness,belt attaching you to some object as a restraint in order to prevent you from getting hurt
+67518,safety_bicycle safety_bike,bicycle that has two wheels of equal size; pedals are connected to the rear wheel by a multiplying gear
+67519,safety_blitz linebacker_blitzing blitz,(American football) defensive players try to break through the offensive line
+67520,safety_bolt safety_lock,a bolt that cannot be moved from outside the door or gate
+67521,safety_catch safety_lock,guard consisting of a locking device that prevents a weapon from being fired
+67522,safety_curtain,a fireproof theater curtain to be dropped in case of fire
+67523,safety_factor factor_of_safety,the ratio of the breaking stress of a structure to the estimated maximum stress in ordinary use
+67524,safety_feature,feature of an artifact that is added to insure a user's safety
+67525,safety_fuse,a slow-burning fuse consisting of a tube or cord filled or saturated with combustible matter; used to ignite detonators from a distance
+67526,safety_glass laminated_glass shatterproof_glass,glass made with plates of plastic or resin or other material between two sheets of glass to prevent shattering
+67527,safety_lamp Davy_lamp,an oil lamp that will not ignite flammable gases (methane)
+67528,safety_match book_matches,a paper match that strikes only on a specially prepared surface
+67529,safety_net,a guarantee of professional or financial security
+67530,safety_net,a large strong net to catch circus acrobats who fall or jump from a trapeze
+67531,safety_pin,a pin in the form of a clasp; has a guard so the point of the pin will not stick the user
+67532,safety_rail guardrail,a railing placed alongside a stairway or road for safety
+67533,safety_razor,a razor with a guard to prevent deep cuts in the skin
+67534,safety_squeeze_play safety_squeeze,the runner on third base waits to start home until the batter has bunted successfully
+67535,safety_valve relief_valve escape_valve escape_cock escape,a valve in a container in which pressure can build up (as a steam boiler); it opens automatically when the pressure reaches a dangerous level
+67536,safflower false_saffron Carthamus_tinctorius,thistlelike Eurasian plant widely grown for its red or orange flower heads and seeds that yield a valuable oil
+67537,safflower_oil,oil from safflower seeds used as food as well as in medicines and paints
+67538,safflower_oil,oil from seeds of the safflower plant
+67539,safflower_seed,seed of the safflower
+67540,saffron,dried pungent stigmas of the Old World saffron crocus
+67541,saffron saffron_crocus Crocus_sativus,Old World crocus having purple or white flowers with aromatic pungent orange stigmas used in flavoring food
+67542,safranine safranin saffranine,any of a class of chiefly red organic dyes
+67543,sag droop,a shape that sags; "there was a sag in the chair seat"
+67544,saga,a narrative telling the adventures of a hero or a family; originally (12th to 14th centuries) a story of the families that settled Iceland and their descendants but now any prose narrative that resembles such an account
+67545,sagacity sagaciousness judgment judgement discernment,the mental ability to understand and discriminate between relations
+67546,sage,a mentor in spiritual and philosophical topics who is renowned for profound wisdom
+67547,sage,aromatic fresh or dried grey-green leaves used widely as seasoning for meats and fowl and game etc
+67548,sage salvia,any of various plants of the genus Salvia; a cosmopolitan herb
+67549,sage_green,the color of sage leaves
+67550,sage_grouse sage_hen Centrocercus_urophasianus,large grouse of sagebrush regions of North America
+67551,sagebrush sage_brush,any of several North American composite subshrubs of the genera Artemis or Seriphidium
+67552,sagebrush_buttercup Ranunculus_glaberrimus,small early-flowering buttercup with shiny yellow flowers of western North America
+67553,sagebrush_lizard Sceloporus_graciosus,a ground dweller that prefers open ground and scattered low bushes; of United States west between Rocky and Sierra Nevada Mountains
+67554,sagebrush_mariposa_tulip Calochortus_macrocarpus,mariposa having loose clusters of one to three handsome lilac flowers resembling umbels atop stout erect stems; arid northwestern North America east of Cascade Mountains from southern British Columbia to northern California
+67555,sagitta,any arrowworm of the genus Sagitta
+67556,sagittal_suture interparietal_suture sutura_sagittalis,the suture uniting the two parietal bones
+67557,sagittate-leaf sagittiform_leaf,a leaf shaped like an arrow head
+67558,sago,powdery starch from certain sago palms; used in Asia as a food thickener and textile stiffener
+67559,sago_palm,any of various tropical Asian palm trees the trunks of which yield sago
+67560,sago_palm Cycas_revoluta,dwarf palmlike cycad of Japan that yields sago
+67561,saguaro sahuaro Carnegiea_gigantea,extremely large treelike cactus of desert regions of southwestern United States having a thick columnar sparsely branched trunk bearing white flowers and edible red pulpy fruit
+67562,sahib,formerly a term of respect for important white Europeans in colonial India; used after the name
+67563,saiga Saiga_tatarica,goat-like antelope of central Eurasia having a stubby nose like a proboscis
+67564,sail,any structure that resembles a sail
+67565,sail canvas canvass sheet,a large piece of fabric (usually canvas fabric) by means of which wind is used to propel a sailing vessel
+67566,sailboat sailing_boat,a small sailing vessel; usually with a single mast
+67567,sailcloth,a strong fabric (such as cotton canvas) used for making sails and tents
+67568,sailfish,a saltwater fish with lean flesh
+67569,sailfish,large pelagic game fish having an elongated upper jaw and long dorsal fin that resembles a sail
+67570,sailing,riding in a sailboat
+67571,sailing,the departure of a vessel from a port
+67572,sailing-race yacht_race,a race between crews of people in yachts
+67573,sailing_master navigator,the ship's officer in charge of navigation
+67574,sailing_vessel sailing_ship,a vessel that is powered by the wind; often having several masts
+67575,sailing_warship,a warship that was powered by sails and equipped with many heavy guns; not built after the middle of the 19th century
+67576,sailmaker,a maker of sails
+67577,sailor crewman,any member of a ship's crew
+67578,sailor's-choice sailors_choice Haemulon_parra,a grunt found from Florida to Brazil and Gulf of Mexico
+67579,sailor_cap,a cap worn by sailors
+67580,sailor_suit,a boy's ensemble; copied from a sailor's uniform
+67581,sainfoin sanfoin holy_clover esparcet Onobrychis_viciifolia Onobrychis_viciaefolia,Eurasian perennial herb having pale pink flowers and curved pods; naturalized in Britain and North America grasslands on calcareous soils; important forage crop and source of honey in Britain
+67582,saint,a person who has died and has been declared a saint by canonization
+67583,saint holy_man holy_person angel,person of exceptional holiness
+67584,saint's_day,a day commemorating a saint
+67585,sainthood,saints collectively
+67586,sainthood,the status and dignity of a saint
+67587,saintliness,the quality of resembling a saint
+67588,sake,the purpose of achieving or obtaining; "for the sake of argument"
+67589,sake interest,a reason for wanting something done; "for your sake"; "died for the sake of his country"; "in the interest of safety"; "in the common interest"
+67590,sake saki rice_beer,Japanese alcoholic beverage made from fermented rice; usually served hot
+67591,saki,small arboreal monkey of tropical South America with long hair and bushy nonprehensile tail
+67592,salaam,a deep bow; a Muslim form of salutation
+67593,salability salableness,the quality of being salable or marketable
+67594,salad,food mixtures either arranged on a plate or tossed and served with a moist dressing; usually consisting of or including greens
+67595,salad_bar,a bar where diners can assemble a salad to their own taste
+67596,salad_bowl,a large bowl for mixing and serving a salad
+67597,salad_burnet,leaves sometimes used for salad
+67598,salad_burnet burnet_bloodwort pimpernel Poterium_sanguisorba,European garden herb with purple-tinged flowers and leaves that are sometimes used for salads
+67599,salad_cream,a creamy salad dressing resembling mayonnaise
+67600,salad_fork,a fork intended for eating salads
+67601,salad_green salad_greens,greens suitable for eating uncooked as in salads
+67602,salad_nicoise,typically containing tomatoes and anchovies and garnished with black olives and capers
+67603,salad_oil,any of several edible vegetable oils that can be used in salad dressings
+67604,salad_plate salad_bowl,a plate or bowl for individual servings of salad
+67605,salai Boswellia_serrata,East Indian tree yielding a resin used medicinally and burned as incense
+67606,salal shallon Gaultheria_shallon,small evergreen shrub of Pacific coast of North America having edible dark purple grape-sized berries
+67607,salamander,reptilian creature supposed to live in fire
+67608,salamander,any of various typically terrestrial amphibians that resemble lizards and that return to water only to breed
+67609,salami,highly seasoned fatty sausage of pork and beef usually dried
+67610,salat salaat salah salaah,the second pillar of Islam is prayer; a prescribed liturgy performed five times a day (preferably in a mosque) and oriented toward Mecca
+67611,sale,the state of being purchasable; offered or exhibited for selling; "you'll find vitamin C for sale at most pharmacies"; "the new line of cars will soon be on sale"
+67612,sale,the general activity of selling; "they tried to boost sales"; "laws limit the sale of handguns"
+67613,sale,a particular instance of selling; "he has just made his first sale"; "they had to complete the sale before the banks closed"
+67614,sale cut-rate_sale sales_event,an occasion (usually brief) for buying at specially reduced prices; "they held a sale to reduce their inventory"; "I got some great bargains at their annual sale"
+67615,sale sales_agreement,an agreement (or contract) in which property is transferred from the seller (vendor) to the buyer (vendee) for a fixed price in money (paid or agreed to be paid by the buyer); "the salesman faxed the sales agreement to his home office"
+67616,sale_in_gross contract_of_hazard,a sale of a tract of land as a whole without a warranty as to the acreage
+67617,sales_campaign,an advertising campaign intended to promote sales
+67618,sales_department sales_division sales_force,the division of a business that is responsible for selling products or services
+67619,sales_finance_company,a finance company that buys (at a discount) the installment sales contracts of retail merchants
+67620,sales_incentive,remuneration offered to a salesperson for exceeding some predetermined sales goal
+67621,sales_promotion,promotion that supplements or coordinates advertising
+67622,sales_resistance,resistance by potential customers to aggressive selling practices
+67623,sales_staff,those in a business who are responsible for sales
+67624,sales_talk sales_pitch pitch,promotion by means of an argument and demonstration
+67625,sales_tax nuisance_tax,a tax based on the cost of the item purchased and collected directly from the buyer
+67626,salesclerk shop_clerk clerk shop_assistant,a salesperson in a store
+67627,salesgirl saleswoman saleslady,a woman salesperson
+67628,salesman,a man salesperson
+67629,salesmanship,skill in selling; skill in persuading people to buy; "he read a book on salesmanship but it didn't help"
+67630,salesperson sales_representative sales_rep,a person employed to represent a business and to sell its merchandise (as to customers in a store or to customers who are visited)
+67631,salicylate,a salt of salicylic acid (included in several commonly used drugs)
+67632,salicylate_poisoning,poisoning caused by the excessive ingestion of salicylates (usually aspirin)
+67633,salicylic_acid 2-hydroxybenzoic_acid,a white crystalline substance with a bitter aftertaste; used as a fungicide or in making aspirin or dyes or perfumes
+67634,salience saliency strikingness,the state of being salient
+67635,salient,(military) the part of the line of battle that projects closest to the enemy
+67636,salient_angle,an angle pointing outward; an interior angle of a polygon that is less than 180 degrees
+67637,saline_solution saline,an isotonic solution of sodium chloride and distilled water
+67638,salinometer,a hydrometer that determines the concentration of salt solutions by measuring their density
+67639,saliva spit spittle,a clear liquid secreted into the mouth by the salivary glands and mucous glands of the mouth; moistens the mouth and starts the digestion of starches
+67640,salivary_duct,a duct through which saliva passes from the salivary gland into the mouth
+67641,salivary_gland,any of three pairs of glands in the mouth and digestive system that secrete saliva for digestion
+67642,salivation,the secretion of saliva
+67643,sallet salade,a light medieval helmet with a slit for vision
+67644,sallow,any of several Old World shrubby broad-leaved willows having large catkins; some are important sources for tanbark and charcoal
+67645,sallowness,a sickly yellowish skin color
+67646,sally sallying_forth,a venture off the beaten path; "a sally into the wide world beyond his home"
+67647,salmagundi,cooked meats and eggs and vegetables usually arranged in rows around the plate and dressed with a salad dressing
+67648,salmi,ragout of game in a rich sauce
+67649,salmon,flesh of any of various marine or freshwater fish of the family Salmonidae
+67650,salmon,a pale pinkish orange color
+67651,salmon,any of various large food and game fishes of northern waters; usually migrate from salt to fresh water to spawn
+67652,salmon_loaf,fish loaf made with flaked salmon
+67653,salmon_oil,a fatty oil obtained from the wastes in canning salmon; used in making soap and dressing leather
+67654,salmonberry Rubus_spectabilis,large erect red-flowered raspberry of western North America having large pinkish-orange berries
+67655,salmonberry salmon_berry thimbleberry Rubus_parviflorus,white-flowered raspberry of western North America and northern Mexico with thimble-shaped orange berries
+67656,salmonella,rod-shaped Gram-negative enterobacteria; cause typhoid fever and food poisoning; can be used as a bioweapon
+67657,salmonellosis,a kind of food poisoning caused by eating foods contaminated with Salmonella typhimurium
+67658,salmonid,soft-finned fishes of cold and temperate waters
+67659,salol phenyl_salicylate,a white powder with a pleasant taste and odor; used to absorb light in sun tan lotions or as a preservative or an antiseptic or a coating for pills in which the medicine is intended for enteric release
+67660,salon,gallery where works of art can be displayed
+67661,salon,elegant sitting room where guests are received
+67662,salon beauty_salon beauty_parlor beauty_parlour beauty_shop,a shop where hairdressers and beauticians work
+67663,saloon_keeper,the proprietor of a saloon
+67664,salp salpa,minute floating marine tunicate having a transparent body with an opening at each end
+67665,salpiglossis,any plant of the genus Salpiglossis
+67666,salpingectomy,surgical removal of one or both Fallopian tubes
+67667,salpingitis,inflammation of a Fallopian tube (usually the result of infection spreading from the vagina or uterus) or of a Eustachian tube
+67668,salpinx,a tube in the uterus or the ear
+67669,salsa,spicy sauce of tomatoes and onions and chili peppers to accompany Mexican foods
+67670,salsify,either of two long roots eaten cooked
+67671,salsify oyster_plant,edible root of the salsify plant
+67672,salsify oyster_plant vegetable_oyster Tragopogon_porrifolius,Mediterranean biennial herb with long-stemmed heads of purple ray flowers and milky sap and long edible root; naturalized throughout United States
+67673,salsilla Bomarea_edulis,tropical vine having pink-and-yellow flowers spotted purple and edible roots sometimes boiled as a potato substitute; West Indies to northern South America
+67674,salsilla Bomarea_salsilla,tropical vine having umbels of small purple flowers and edible roots sometimes boiled as a potato substitute; Colombia
+67675,salt,a compound formed by replacing hydrogen in an acid by a metal (or a radical that acts like a metal)
+67676,salt saltiness salinity,the taste experience when common salt is taken into the mouth
+67677,salt table_salt common_salt,white crystalline form of especially sodium chloride used to season and preserve food
+67678,salt-rising_bread,white wheat bread raised by a salt-tolerant bacterium in a mixture of salt and either cornmeal or potato pulp
+67679,salt_cod,codfish preserved in salt; must be desalted and flaked by soaking in water and pounding; used in e.g. codfish cakes
+67680,salt_depletion,loss of salt from the body without replacement (loss by vomiting or profuse perspiration or urination or diarrhea) thus upsetting the electrolyte balance
+67681,salt_flat salt_plain,a flat expanse of salt left by the evaporation of a body of salt water
+67682,salt_lick lick,a salt deposit that animals regularly lick
+67683,salt_marsh,low-lying wet land that is frequently flooded with saltwater
+67684,salt_marsh_mallow Kosteletzya_virginica,subshrub of southeastern United States to New York
+67685,salt_mine,a mine where salt is dug
+67686,salt_pork,fat from the back and sides and belly of a hog carcass cured with salt
+67687,salt_reed_grass Spartina_cynosuroides,tall reedlike grass common in salt meadows
+67688,salt_rush Juncus_leseurii,rush of the Pacific coast of North America
+67689,salt_tree Halimodendron_halodendron Halimodendron_argenteum,spiny shrub of the Caspian salt plains and Siberia having elegant silvery, downy young foliage and mildly fragrant pink-purple blooms
+67690,saltation,(geology) the leaping movement of sand or soil particles as they are transported in a fluid medium over an uneven surface
+67691,saltation,(genetics) a mutation that drastically changes the phenotype of an organism or species
+67692,saltbox,a type of house built in New England; has two stories in front and one behind
+67693,saltbush,any of various shrubby plants of the genus Atriplex that thrive in dry alkaline soil
+67694,saltcellar,a small container for holding salt at the dining table
+67695,salter,someone who uses salt to preserve meat or fish or other foods
+67696,salter salt_merchant,someone who makes or deals in salt
+67697,saltine,a cracker sprinkled with salt before baking
+67698,saltiness,the property of containing salt (as a compound or in solution)
+67699,saltiness coarseness,language or humor that is down-to-earth; "the saltiness of their language was inappropriate"; "self-parody and saltiness riddled their core genre"
+67700,salting,the act of adding salt to food
+67701,saltpan,a shallow basin in a desert region; contains salt and gypsum that was deposited by an evaporated salt lake
+67702,saltshaker salt_shaker,a shaker with a perforated top for sprinkling salt
+67703,saltwater_fish,flesh of fish from the sea used as food
+67704,saltworks,a plant where salt is produced commercially
+67705,saltwort Batis_maritima,low-growing strong-smelling coastal shrub of warm parts of the New World having unisexual flowers in conelike spikes and thick succulent leaves
+67706,saltwort barilla glasswort kali kelpwort Salsola_kali Salsola_soda,bushy plant of Old World salt marshes and sea beaches having prickly leaves; burned to produce a crude soda ash
+67707,salubrity salubriousness,the quality of being salubrious and invigorating
+67708,salutation,word of greeting used to begin a letter
+67709,salutatorian salutatory_speaker,a graduating student with the second highest academic rank; may deliver the opening address at graduation exercises
+67710,salutatory_address salutatory_oration salutatory,an opening or welcoming statement (especially one delivered at graduation exercises)
+67711,salute,an act of greeting with friendly words and gestures like bowing or lifting the hat
+67712,salute military_greeting,a formal military gesture of respect
+67713,salute salutation,an act of honor or courteous recognition; "a musical salute to the composer on his birthday"
+67714,salvage,property or goods saved from damage or destruction
+67715,salvage,the act of saving goods or property that were in danger of damage or destruction
+67716,salvage,the act of rescuing a ship or its crew or its cargo from a shipwreck or a fire
+67717,salvager salvor,someone who salvages
+67718,salvation,the state of being saved or preserved from harm
+67719,salvation,a means of preserving from harm or unpleasantness; "tourism was their economic salvation"; "they turned to individualism as their salvation"
+67720,salvation,saving someone or something from harm or from an unpleasant situation; "the salvation of his party was the president's major concern"
+67721,salve,anything that remedies or heals or soothes; "he needed a salve for his conscience"
+67722,salver,a tray (or large plate) for serving food or drinks; usually made of silver
+67723,salvinorin,a hallucinogen obtained from Salvia divinorum
+67724,salvo,an outburst resembling the discharge of firearms or the release of bombs
+67725,salvo,a sudden outburst of cheers; "there was a salvo of approval"
+67726,salwar shalwar,a pair of light loose trousers with a tight fit around the ankles; worn by women from the Indian subcontinent (usually with a kameez)
+67727,samara key_fruit key,a winged often one-seed indehiscent fruit as of the ash or elm or maple
+67728,samarium Sm atomic_number_62,a grey lustrous metallic element of the rare earth group; is used in special alloys; occurs in monazite and bastnasite
+67729,samarskite,a complex black mineral occurring in pegmatites
+67730,samba,music composed for dancing the samba
+67731,samba,a lively ballroom dance from Brazil
+67732,samba,a form of canasta using three decks of cards and six jokers
+67733,sambar sambur Cervus_unicolor,a deer of southern Asia with antlers that have three tines
+67734,sambuca,an Italian liqueur made with elderberries and flavored with licorice
+67735,same-sex_marriage,two people of the same sex who live together as a family; "the legal status of same-sex marriages has been hotly debated"
+67736,samekh,the 15th letter of the Hebrew alphabet
+67737,sameness,the quality of being alike; "sameness of purpose kept them together"
+67738,samisen shamisen,a Japanese stringed instrument resembling a banjo with a long neck and three strings and a fretted fingerboard and a rectangular soundbox; played with a plectrum
+67739,samite,a heavy silk fabric (often woven with silver or gold threads); used to make clothing in the Middle Ages
+67740,samizdat underground_press,a system of clandestine printing and distribution of dissident or banned literature
+67741,samosa,small turnover of Indian origin filled with vegetables or meat and fried and served hot
+67742,samovar,a metal urn with a spigot at the base; used in Russia to boil water for tea
+67743,sampan,an Asian skiff usually propelled by two oars
+67744,sample,all or part of a natural object that is collected and preserved as an example of its class
+67745,sample,a small part of something intended as representative of the whole
+67746,sample_distribution sample sampling,items selected at random from a population and used to test hypotheses about the population
+67747,sampler,an assortment of various samples; "a candy sampler"; "a sampler of French poets"
+67748,sampler,a piece of embroidery demonstrating skill with various stitches
+67749,sampling,measurement at regular intervals of the amplitude of a varying waveform (in order to convert it to digital form)
+67750,sampling,(statistics) the selection of a suitable sample for study
+67751,sampling_frequency,(telecommunication) the frequency of sampling a continuously varying signal
+67752,sampling_rate,(telecommunication) the frequency of sampling per unit time
+67753,sampling_station sampler,an observation station that is set up to make sample observations of something
+67754,samsara,(Hinduism and Buddhism) the endless cycle of birth and suffering and death and rebirth
+67755,samurai,a Japanese warrior who was a member of the feudal military aristocracy
+67756,samurai,feudal Japanese military aristocracy
+67757,sanatorium sanatarium sanitarium,a hospital for recuperation or for the treatment of chronic diseases
+67758,sanctification,a religious ceremony in which something is made holy
+67759,sanctimoniousness sanctimony,the quality of being hypocritically devout
+67760,sanction,the act of final authorization; "it had the sanction of the church"
+67761,sanction,a mechanism of social control for enforcing a society's standards
+67762,sanction countenance endorsement indorsement warrant imprimatur,formal and explicit approval; "a Democrat usually gets the union's endorsement"
+67763,sanctuary,a consecrated place where sacred objects are kept
+67764,sanctum sanctum_sanctorum,a place of inviolable privacy; "he withdrew to his sanctum sanctorum, where the children could never go"
+67765,sand,a loose material consisting of grains of rock or coral
+67766,sand_blackberry Rubus_cuneifolius,stiff shrubby blackberry of the eastern United States (Connecticut to Florida)
+67767,sand_cat,a desert wildcat
+67768,sand_cherry Prunus_pumila Prunus_pumilla_susquehanae Prunus_susquehanae Prunus_cuneata,small straggling American cherry growing on sandy soil and having minute scarcely edible purplish-black fruit
+67769,sand_crack,a fissure in the wall of a horse's hoof often causing lameness
+67770,sand_cricket Jerusalem_cricket Stenopelmatus_fuscus,large wingless nocturnal grasshopper that burrows in loose soil along the Pacific coast of the United States
+67771,sand_dab,the lean flesh of a small flounder from the Pacific coast of North America
+67772,sand_dab,small food fishes of the Pacific coast of North America
+67773,sand_devil's_claw Proboscidea_arenaria Martynia_arenaria,alternatively placed in genus Martynia
+67774,sand_dollar,flattened disklike sea urchins that live on sandy bottoms
+67775,sand_dropseed Sporobolus_cryptandrus,erect smooth grass of sandy places in eastern North America
+67776,sand_fly sandfly Phlebotomus_papatasii,any of various small dipterous flies; bloodsucking females can transmit sandfly fever and leishmaniasis
+67777,sand_lance sand_launce sand_eel launce,very small silvery eellike schooling fishes that burrow into sandy beaches
+67778,sand_leek giant_garlic Spanish_garlic rocambole Allium_scorodoprasum,European leek cultivated and used like leeks
+67779,sand_lizard Lacerta_agilis,a common and widely distributed lizard of Europe and central Asia
+67780,sand_myrtle Leiophyllum_buxifolium,low-growing evergreen shrub of New Jersey to Florida grown for its many white star-shaped flowers and glossy foliage
+67781,sand_painting,a painting done by Amerindians (especially Navaho); made of fine colored sands on a neutral background
+67782,sand_rat,small nearly naked African mole rat of desert areas
+67783,sand_rat Meriones_longifrons,southern European gerbil
+67784,sand_sage silvery_wormwood Artemisia_filifolia,silver-haired shrub of central and southern United States and Mexico; a troublesome weed on rangelands
+67785,sand_sedge sand_reed Carex_arenaria,European maritime sedge naturalized along Atlantic coast of United States; rootstock has properties of sarsaparilla
+67786,sand_snake,small North American burrowing snake
+67787,sand_sole Psettichthys_melanostichus,a common flatfish of the Pacific coast of North America
+67788,sand_spurry sea_spurry Spergularia_rubra,prostrate weedy herb with tiny pink flowers; widespread throughout Europe and Asia on sand dunes and heath and coastal cliffs; naturalized in eastern North America
+67789,sand_stargazer,small pallid fishes of shoal tropical waters of North America and South America having eyes on stalks atop head; they burrow in sand to await prey
+67790,sand_tiger sand_shark Carcharias_taurus Odontaspis_taurus,shallow-water shark with sharp jagged teeth found on both sides of Atlantic; sometimes dangerous to swimmers
+67791,sand_verbena,any of various plants of the genus Abronia of western North America and Mexico having flowers resembling verbena
+67792,sand_wedge,a wedge used to get out of sand traps
+67793,sandal,a shoe consisting of a sole fastened by straps to the foot
+67794,sandalwood,close-grained fragrant yellowish heartwood of the true sandalwood; has insect repelling properties and is used for carving and cabinetwork
+67795,sandalwood_tree true_sandalwood Santalum_album,parasitic tree of Indonesia and Malaysia having fragrant close-grained yellowish heartwood with insect repelling properties and used, e.g., for making chests
+67796,sandarac citronwood,durable fragrant wood; used in building (as in the roof of the cathedral at Cordova, Spain)
+67797,sandarac sandarac_tree Tetraclinis_articulata Callitris_quadrivalvis,large coniferous evergreen tree of North Africa and Spain having flattened branches and scalelike leaves yielding a hard fragrant wood; bark yields a resin used in varnishes
+67798,sandarac sandarach,a brittle and faintly aromatic translucent resin used in varnishes
+67799,sandbag,a bag filled with sand; used as a weapon or to build walls or as ballast
+67800,sandbagger,someone who deceives you about his true nature or intent in order to take advantage of you
+67801,sandbank,a submerged bank of sand near a shore or in a river; can be exposed at low tide
+67802,sandbar sand_bar,a bar of sand
+67803,sandbar_shark Carcharhinus_plumbeus,most common grey shark along coasts of middle Atlantic states; sluggish and occasionally caught by fishermen
+67804,sandblast,a blast of wind laden with sand
+67805,sandblaster,a tool that throws out a blast of steam laden with sand; used to clean or grind hard surfaces
+67806,sandbox,mold consisting of a box with sand shaped to mold metal
+67807,sandbox sandpile sandpit,a plaything consisting of a pile of sand or a box filled with sand for children to play in
+67808,sandboy,a young peddler of sand; used now only to express great happiness in `happy as a sandboy'
+67809,sandbur sandspur field_sandbur Cenchrus_tribuloides,grass of the eastern United States and tropical America having spikelets enclosed in prickly burs
+67810,sanderling Crocethia_alba,small sandpiper that breeds in the Arctic and migrates southward along sandy coasts in most of world
+67811,sandfish,either of two small silvery scaleless fishes of the northern Pacific that burrow into sand
+67812,sandfly_fever pappataci_fever phlebotomus,a mild viral disease transmitted by the bite of the sand fly Phlebotomus papatasii
+67813,sandglass,timepiece in which the passage of time is indicated by the flow of sand from one transparent container to another through a narrow passage
+67814,sandgrouse sand_grouse,pigeon-like bird of arid regions of the Old World having long pointed wings and tail and precocial downy young
+67815,sandhi,the articulatory process whereby the pronunciation of a word or morpheme changes when it is followed immediately by another (especially in fluent speech)
+67816,sandiness,a texture resembling that of sand
+67817,sandlot,a vacant lot used by city boys to play games
+67818,sandman,an elf in fairy stories who sprinkles sand in children's eyes to make them sleepy
+67819,sandpiper,any of numerous usually small wading birds having a slender bill and piping call; closely related to the plovers
+67820,sandpit,a large pit in sandy ground from which sand is dug
+67821,sandstone,a sedimentary rock consisting of sand consolidated with some cement (clay or quartz etc.)
+67822,sandwich,two (or more) slices of bread with a filling between them
+67823,sandwich_board,signboard consisting of two hinged boards that hang front and back from the shoulders of a walker and are used to display advertisements
+67824,sandwich_plate,a serving consisting of a sandwich or sandwiches with garnishes
+67825,sandwichman,a person with advertising boards hanging from the shoulders
+67826,sandwort,low-growing chiefly perennial plant usually with small white flowers suitable for e.g. rock gardens
+67827,sandwort Moehringia_lateriflora,low-growing herb having clusters of small white four-petaled flowers
+67828,sandwort Moehringia_mucosa,loosely matted plant with moss-like foliage studded with tiny starry four-petaled white blossoms; mountains of central and southern Europe
+67829,sandy_mushroom Tricholoma_populinum,an edible agaric that fruits in great clusters (especially in sandy soil under cottonwood trees)
+67830,sangapenum gum_sangapenum,a variety of gum
+67831,sangaree sangria,sweetened red wine and orange or lemon juice with soda water
+67832,sangoma,a traditional Zulu healer and respected elder
+67833,sanguinary_ant Formica_sanguinea,slave-making ant widely distributed over the northern hemisphere
+67834,sanguine,a blood-red color
+67835,sanguinity sanguineness,feeling sanguine; optimistically cheerful and confident
+67836,sanicle snakeroot,a plant of the genus Sanicula having palmately compound leaves and unisexual flowers in panicled umbels followed by bristly fruit; reputed to have healing powers
+67837,sanitariness,the state of being conducive to health
+67838,sanitary_code health_code,set of standards established and enforced by government for health requirements as in plumbing etc
+67839,sanitary_condition,the state of sanitation (clean or dirty)
+67840,sanitary_landfill,a low area where waste is buried between layers of earth
+67841,sanitary_napkin sanitary_towel Kotex,a disposable absorbent pad (trade name Kotex); worn to absorb menstrual flow
+67842,sanitation,the state of being clean and conducive to health
+67843,sanitation sanitization sanitisation,making something sanitary (free of germs) as by sterilizing
+67844,sanitation_department,the department of local government responsible for collecting and disposing of garbage
+67845,sanity saneness,normal or sound powers of mind
+67846,sannup,a married male American Indian
+67847,sannyasi sannyasin sanyasi,a Hindu religious mendicant
+67848,sans_serif Helvetica,a typeface in which characters have no serifs
+67849,sansevieria bowstring_hemp,grown as a houseplant for its mottled fleshy sword-shaped leaves or as a source of fiber
+67850,santims,100 santimi equal 1 lats in Latvia
+67851,sap,a watery solution of sugars, salts, and minerals that circulates through the vascular system of a plant
+67852,saphenous_nerve nervus_saphenus,a branch of the femoral nerve that supplies cutaneous branches to the inner aspect of the leg and foot
+67853,saphenous_vein vena_saphena,either of two chief superficial veins of the leg that drain blood from the foot
+67854,sapidity sapidness,a pleasant flavor
+67855,sapiential_book wisdom_book wisdom_literature,any of the biblical books (Proverbs, Ecclesiastes, Song of Songs, Wisdom of Solomon, Ecclesiasticus) that are considered to contain wisdom
+67856,sapling,young tree
+67857,sapodilla sapodilla_plum sapota,tropical fruit with a rough brownish skin and very sweet brownish pulp
+67858,sapodilla sapodilla_tree Manilkara_zapota Achras_zapota,large tropical American evergreen yielding chicle gum and edible fruit; sometimes placed in genus Achras
+67859,saponification,a chemical reaction in which an ester is heated with an alkali (especially the alkaline hydrolysis of a fat or oil to make soap)
+67860,saponin,any of various plant glucosides that form soapy lathers when mixed and agitated with water; used in detergents and foaming agents and emulsifiers
+67861,sapote mammee marmalade_plum,brown oval fruit flesh makes excellent sherbet
+67862,sapper,a military engineer who does sapping (digging trenches or undermining fortifications)
+67863,sapphire,a precious transparent stone of rich blue corundum valued as a gemstone
+67864,sapphire,a transparent piece of sapphire that has been cut and polished and is valued as a precious gem
+67865,sapphirine,a rare light blue or green mineral; consists of aluminum and magnesium silicate and occurs as small grains in some metamorphic rocks
+67866,sapremia sapraemia,blood poisoning caused by putrefactive bacteria; results from eating putrefied matter
+67867,saprobe,an organism that lives in and derives its nourishment from organic matter in stagnant or foul water
+67868,saprolite,a deposit of clay and disintegrating rock that is found in its original place
+67869,sapropel,sludge (rich in organic matter) that accumulates at the bottom of lakes or oceans
+67870,saprophyte saprophytic_organism,an organism that feeds on dead organic matter especially a fungus or bacterium
+67871,sapsago,a hard green Swiss cheese made with skim-milk curd and flavored with clover
+67872,sapsucker,small American woodpecker that feeds on sap from e.g. apple and maple trees
+67873,sapwood,newly formed outer wood lying between the cambium and the heartwood of a tree or woody plant; usually light colored; active in water conduction
+67874,saquinavir Invirase,a weak protease inhibitor (trade name Invirase) used in treating HIV
+67875,saraband,music composed for dancing the saraband
+67876,saraband,a stately court dance of the 17th and 18th centuries; in slow time
+67877,saran,any of various thermoplastic resins used to make things
+67878,sarcasm irony satire caustic_remark,witty language used to convey insults or scorn; "he used sarcasm to upset his opponent"; "irony is wasted on the stupid"; "Satire is a sort of glass, wherein beholders do generally discover everybody's face but their own"--Jonathan Swift
+67879,sarcenet sarsenet,a fine soft silk fabric often used for linings
+67880,sarcodinian sarcodine,protozoa that move and capture food by forming pseudopods
+67881,sarcoidosis,a chronic disease of unknown cause marked by the formation of nodules in the lungs and liver and lymph glands and salivary glands
+67882,sarcolemma,an extensible membrane enclosing the contractile substance of a muscle fiber
+67883,sarcoma,a usually malignant tumor arising from connective tissue (bone or muscle etc.); one of the four major types of cancer
+67884,sarcomere,one of the segments into which a myofibril is divided
+67885,sarcophagus,a stone coffin (usually bearing sculpture or inscriptions)
+67886,sarcoplasm,the cytoplasm of a striated muscle fiber
+67887,sarcosine,a sweetish crystalline amino acid
+67888,sarcosome,a large mitochondrion in a striated muscle fiber
+67889,sarcosporidian sarcocystidean sarcocystieian,parasite of the muscles of vertebrates
+67890,sard sardine sardius,a deep orange-red variety of chalcedony
+67891,sardine,any of various small edible herring or related food fishes frequently canned
+67892,sardine pilchard,small fatty fish usually canned
+67893,sardine_oil,oil obtained from sardines and used chiefly as a lubricant and in soap
+67894,sardonyx,an onyx characterized by parallel layers of sard and a different colored mineral
+67895,sargassum_fish,small fantastically formed and colored fishes found among masses of sargassum
+67896,sari saree,a dress worn primarily by Hindu women; consists of several yards of light material that is draped around the body
+67897,sarin GB,a highly toxic chemical nerve agent that inhibits the activity of cholinesterase
+67898,sarong,a loose skirt consisting of brightly colored fabric wrapped around the body; worn by both women and men in the South Pacific
+67899,sarsaparilla,any of various prickly climbing plants of the tropical American genus Smilax having aromatic roots and heart-shaped leaves
+67900,sarsaparilla,carbonated drink flavored with an extract from sarsaparilla root or with birch oil and sassafras
+67901,sarsaparilla_root,dried root of any of various plants of the genus Smilax used as a flavoring agent
+67902,sartorius sartorius_muscle musculus_sartorius,a muscle in the thigh that helps to rotate the leg into the sitting position assumed by a tailor; the longest muscle in the human body
+67903,sash window_sash,a framework that holds the panes of a window in the window frame
+67904,sash_cord sash_line,a strong cord connecting a sash weight to a sliding sash
+67905,sash_fastener sash_lock window_lock,a lock attached to the sashes of a double hung window that can fix both in the shut position
+67906,sash_weight,a counterweight for a sliding sash
+67907,sash_window,a window with (usually two) sashes that slide vertically to let in air
+67908,sashay,a square dance figure; partners circle each other taking sideways steps
+67909,sashimi,very thinly sliced raw fish
+67910,saskatoon serviceberry shadberry juneberry,edible purple or red berries
+67911,sass sassing backtalk back_talk lip mouth,an impudent or insolent rejoinder; "don't give me any of your sass"
+67912,sassaby topi Damaliscus_lunatus,a large South African antelope; considered the swiftest hoofed mammal
+67913,sassafras,dried root bark of the sassafras tree
+67914,sassafras sassafras_tree Sassafras_albidum,yellowwood tree with brittle wood and aromatic leaves and bark; source of sassafras oil; widely distributed in eastern North America
+67915,sassafras_oil,oil from root bark of sassafras trees; used in perfumery and as a disinfectant
+67916,satang,100 satangs equal 1 baht in Thailand
+67917,satanophobia,an abnormal fear of Satan
+67918,satchel,luggage consisting of a small case with a flat bottom and (usually) a shoulder strap
+67919,sateen,a cotton fabric with a satiny finish
+67920,satellite,any celestial body orbiting around a planet or star
+67921,satellite artificial_satellite orbiter,man-made equipment that orbits around the earth or the moon
+67922,satellite planet,a person who follows or serves another
+67923,satellite_receiver,a receiver on a communications satellite
+67924,satellite_television satellite_TV,a television system in which the signal is transmitted to an orbiting satellite that receives the signal and amplifies it and transmits it back to earth
+67925,satellite_transmitter,a transmitter on a communications satellite
+67926,satiation,the act of achieving full gratification
+67927,satin,a smooth fabric of silk or rayon; has a glossy face and a dull back
+67928,satin_bowerbird satin_bird Ptilonorhynchus_violaceus,of southeast Australia; male is glossy violet blue; female is light grey-green
+67929,satin_stitch,flat stitches worked so closely as to resemble satin
+67930,satin_weave,a weave in which the filling and warp threads intersect in such a way as to give a smooth compact surface with no distinguishable twill line
+67931,satinet satinette,a fabric with a finish resembling satin but made partly or wholly from cotton or synthetic fiber
+67932,satinleaf satin_leaf caimitillo damson_plum Chrysophyllum_oliviforme,tropical American timber tree with dark hard heavy wood and small plumlike purple fruit
+67933,satinwood,hard yellowish wood of a satinwood tree having a satiny luster; used for fine cabinetwork and tools
+67934,satinwood West_Indian_satinwood Zanthoxylum_flavum,West Indian tree with smooth lustrous and slightly oily wood
+67935,satinwood satinwood_tree Chloroxylon_swietenia,East Indian tree with valuable hard lustrous yellowish wood
+67936,satirist ironist ridiculer,a humorist who uses ridicule and irony and sarcasm
+67937,satisfaction,(law) the payment of a debt or fulfillment of an obligation; "the full and final satisfaction of the claim"
+67938,satisfaction,the contentment one feels when one has fulfilled a desire, need, or expectation; "the chef tasted the sauce with great satisfaction"
+67939,satisfaction,act of fulfilling a desire or need or appetite; "the satisfaction of their demand for better services"
+67940,satisfactoriness,the quality of giving satisfaction sufficient to meet a demand or requirement
+67941,satisfier,any agent capable of producing satisfaction
+67942,satori,(Zen Buddhism) a state of sudden spiritual enlightenment
+67943,satrap,a governor of a province in ancient Persia
+67944,satsuma,medium-sized largely seedless mandarin orange with thin smooth skin
+67945,satsuma satsuma_tree,a variety of mandarin orange
+67946,saturated_fatty_acid,a fatty acid whose carbon chain cannot absorb any more hydrogen atoms; found chiefly in animal fats
+67947,saturation,a condition in which a quantity no longer responds to some external influence
+67948,saturation,the act of soaking thoroughly with a liquid
+67949,saturation chroma intensity vividness,chromatic purity: freedom from dilution with white and hence vivid in hue
+67950,saturation_point,(chemistry) the stage at which a substance will receive no more of another substance in solution or in a vapor
+67951,saturniid saturniid_moth,large brightly colored and usually tropical moth; larvae spin silken cocoons
+67952,satyr forest_god,one of a class of woodland deities; attendant on Bacchus; identified with Roman fauns
+67953,satyr lecher lech letch,man with strong sexual desires
+67954,satyr_orchid Coeloglossum_bracteatum,orchid with broad ovate leaves and long-bracted green very irregular flowers
+67955,satyr_play,an ancient Greek burlesque with a chorus of satyrs
+67956,satyriasis,abnormally intense sexual desire in men
+67957,sauce,flavorful relish or dressing or topping served as an accompaniment to food
+67958,sauce_Louis,mayonnaise and heavy cream combined with chopped green pepper and green onion seasoned with chili sauce and Worcestershire sauce and lemon juice
+67959,saucepan,a deep pan with a handle; used for stewing or boiling
+67960,saucepot,a cooking pot that has handles on either side and tight fitting lid; used for stewing or boiling
+67961,saucer,a small shallow dish for holding a cup at the table
+67962,saucer_magnolia Chinese_magnolia Magnolia_soulangiana,large deciduous shrub or small tree having large open rosy to purplish flowers; native to Asia; prized as an ornamental in eastern North America
+67963,sauerbraten,pot roast marinated several days in seasoned vinegar before cooking; usually served with potato dumplings
+67964,sauerkraut,shredded cabbage fermented in brine
+67965,sauna sweat_room,a Finnish steam bath; steam is produced by pouring water over heated rocks
+67966,saunter,a careless leisurely gait; "he walked with a kind of saunter as if he hadn't a care in the world"
+67967,saunterer stroller ambler,someone who walks at a leisurely pace
+67968,saurian,any of various reptiles of the suborder Sauria which includes lizards; in former classifications included also the crocodiles and dinosaurs
+67969,saurischian saurischian_dinosaur,herbivorous or carnivorous dinosaur having a three-pronged pelvis like that of a crocodile
+67970,sauropod sauropod_dinosaur,very large herbivorous dinosaur of the Jurassic and Cretaceous having a small head a long neck and tail and five-toed limbs; largest known land animal
+67971,saury billfish Scomberesox_saurus,slender long-beaked fish of temperate Atlantic waters
+67972,sausage,highly seasoned minced meat stuffed in casings
+67973,sausage_curl,a fat sausage-shaped curl
+67974,sausage_dog sausage_hound,informal term
+67975,sausage_meat,any meat that is minced and spiced and cooked as patties or used to fill sausages
+67976,sausage_pizza,tomato and cheese pizza with sausage
+67977,sausage_roll,sausage meat rolled and baked in pastry
+67978,saute,a dish of sauteed food
+67979,savage barbarian,a member of an uncivilized people
+67980,savageness savagery,the property of being untamed and ferocious; "the coastline is littered with testaments to the savageness of the waters"; "a craving for barbaric splendor, for savagery and color and the throb of drums"
+67981,savanna savannah,a flat grassland in tropical or subtropical regions
+67982,savarin,a sponge cake baked in a ring mold
+67983,save,(sports) the act of preventing the opposition from scoring; "the goalie made a brilliant save"; "the relief pitcher got credit for a save"
+67984,save-all,a receptacle for catching waste products for further use
+67985,save-all,a sail set to catch wind spilled from a larger sail
+67986,save-all,a net hung between ship and pier while loading a ship
+67987,saveloy,a ready-cooked and highly seasoned pork sausage
+67988,saver,someone who saves (especially money)
+67989,saving_grace,a redeeming quality or characteristic; "her love of music remains her one saving grace"; "her sense of humor has to be a saving grace"; "the saving grace for both developments is that they are creating jobs"
+67990,savings nest_egg,a fund of money put by as a reserve
+67991,savings_account,a bank account that accumulates interest
+67992,savings_account_trust savings_bank_trust trust_account trustee_account Totten_trust,a savings account deposited by someone who makes themselves the trustee for a beneficiary and who controls it during their lifetime; afterward the balance is payable to the previously named beneficiary
+67993,savings_and_loan savings_and_loan_association,a thrift institution that is required by law to make a certain percentage of its loans as home mortgages
+67994,savings_bank,a thrift institution in the northeastern United States; since deregulation in the 1980s they offer services competitive with many commercial banks
+67995,savings_bank coin_bank money_box bank,a container (usually with a slot in the top) for keeping money at home; "the coin bank was empty"
+67996,savings_bond,non-negotiable government bond; cannot be bought and sold once the original purchase is made
+67997,savior saviour rescuer deliverer,a person who rescues you from harm or danger
+67998,savoir-faire address,social skill
+67999,savory,any of several aromatic herbs or subshrubs of the genus Satureja having spikes of flowers attractive to bees
+68000,savory Micromeria_juliana,dwarf aromatic shrub of Mediterranean regions
+68001,savory savoury,either of two aromatic herbs of the mint family
+68002,savory savoury,an aromatic or spicy dish served at the end of dinner or as an hors d'oeuvre
+68003,savoy_cabbage,cabbage plant with a compact head of crinkled leaves
+68004,savoy_cabbage savoy,head of soft crinkly leaves
+68005,saw,hand tool having a toothed blade for cutting
+68006,saw_log,log large enough to be sawed into boards
+68007,saw_palmetto scrub_palmetto Serenoa_repens,small hardy clump-forming spiny palm of southern United States
+68008,saw_set,a tool used to bend each alternate sawtooth at a slight angle outward
+68009,sawdust,fine particles of wood made by sawing wood
+68010,sawdust_doll,a doll that is stuffed with sawdust
+68011,sawdust_saloon,a saloon whose floor is covered with sawdust
+68012,sawed-off_shotgun,a shotgun with short barrels
+68013,sawfish,primitive ray with sharp teeth on each edge of a long flattened snout
+68014,sawfly,insect whose female has a saw-like ovipositor for inserting eggs into the leaf or stem tissue of a host plant
+68015,sawhorse horse sawbuck buck,a framework for holding wood that is being sawed
+68016,sawm,the third pillar of Islam is fasting (primarily during the month of Ramadan); Muslims abstain from food and drink and gambling and all sensuous pleasures from sunrise to sunset during Ramadan
+68017,sawmill,a large sawing machine
+68018,sawpit,a pit over which lumber is positioned to be sawed by two men with a long two-handed saw
+68019,sawtooth,a serration on a saw blade
+68020,sawwort Serratula_tinctoria,European perennial whose serrate leaves yield a yellow dye
+68021,sawyer,one who is employed to saw wood
+68022,sawyer sawyer_beetle,any of several beetles whose larvae bore holes in dead or dying trees especially conifers
+68023,sax saxophone,a single-reed woodwind with a conical bore
+68024,saxhorn,any of a family of brass wind instruments that resemble a bugle with valves
+68025,saxifrage breakstone rockfoil,any of various plants of the genus Saxifraga
+68026,saxitoxin,a powerful neurotoxin produced by certain dinoflagellates found in red tides; it can accumulate in mollusks that feed on the dinoflagellates and cause food poisoning to humans
+68027,saxophonist saxist,a musician who plays the saxophone
+68028,say,the chance to speak; "let him have his say"
+68029,say-so,one chap's arbitrary assertion
+68030,saying expression locution,a word or phrase that particular people use in particular situations; "pardon the expression"
+68031,scab,the crustlike surface of a healing skin lesion
+68032,scab strikebreaker blackleg rat,someone who works (or provides workers) during a strike
+68033,scabbard,a sheath for a sword or dagger or bayonet
+68034,scabicide,a drug that destroys the itch mite that causes scabies
+68035,scabies itch,a contagious skin infection caused by the itch mite; characterized by persistent itching and skin irritation; "he has a bad case of the itch"
+68036,scabious scabiosa,any of various plants of the genus Scabiosa
+68037,scablands,(geology) flat elevated land with poor soil and little vegetation that is scarred by dry channels of glacial origin (especially in eastern Washington)
+68038,scad,any of a number of fishes of the family Carangidae
+68039,scaffold,a platform from which criminals are executed (hanged or beheaded)
+68040,scaffold,a temporary arrangement erected around a building for convenience of workers
+68041,scaffolding staging,a system of scaffolds
+68042,scalability,the quality of being scalable
+68043,scalage,estimation of the amount of lumber in a log
+68044,scalage,the act of scaling in weight or quantity or dimension
+68045,scalar,a variable quantity that cannot be resolved into components
+68046,scalar_field,a field of scalars
+68047,scalar_matrix,a diagonal matrix in which all of the diagonal elements are equal
+68048,scalar_product inner_product dot_product,a real number (a scalar) that is the product of two vectors
+68049,scalawag scallywag,a white Southerner who supported Reconstruction policies after the American Civil War (usually for self-interest)
+68050,scald,a burn cause by hot liquid or steam
+68051,scald,the act of burning with steam or hot water
+68052,scalded_milk,milk heated almost to boiling
+68053,scale,the ratio between the size of something and a representation of it; "the scale of the map"; "the scale of the model"
+68054,scale,relative magnitude; "they entertained on a grand scale"
+68055,scale,an indicator having a graduated sequence of marks
+68056,scale,a flattened rigid plate forming part of the body covering of many animals
+68057,scale musical_scale,(music) a series of notes differing in pitch according to a specific scheme (usually within an octave)
+68058,scale scale_leaf,a specialized leaf or bract that protects a bud or catkin
+68059,scale scale_of_measurement graduated_table ordered_series,an ordered reference standard; "judging on a scale of 1 to 10"
+68060,scale scurf exfoliation,a thin flake of dead epidermis shed from the surface of the skin
+68061,scale weighing_machine,a measuring instrument for weighing; shows amount of mass
+68062,scale_factor,a number used as a multiplier in scaling
+68063,scale_fern scaly_fern Asplenium_ceterach Ceterach_officinarum,small European fern with chaffy leathery fronds
+68064,scale_insect,small homopterous insect that usually lives and feeds on plants and secretes a protective waxy covering
+68065,scale_value,a value on some scale of measurement
+68066,scale_wax paraffin_scale,partly refined paraffin wax
+68067,scalene_triangle,a triangle with no two sides of equal length
+68068,scalenus scalene_muscle musculus_scalenus,any of four pairs of muscles extending from the cervical vertebrae to the second rib; involved in moving the neck and in breathing
+68069,scalenus_syndrome,discomfort and vascular symptoms and loss of sensation in a shoulder and arm; caused by a scalene muscle compressing the subclavian artery and part of the brachial plexus
+68070,scaler,an electronic pulse counter used to count pulses that occur too rapidly to be recorded individually
+68071,scaliness,the property of being scaly
+68072,scaling,act of measuring or arranging or adjusting according to a scale
+68073,scaling,ascent by or as if by a ladder
+68074,scaling grading,the act of arranging in a graduated series
+68075,scaling_ladder,a ladder used to scale walls (as in an attack)
+68076,scallop crenation crenature crenel crenelle,one of a series of rounded projections (or the notches between them) formed by curves along an edge (as the edge of a leaf or piece of cloth or the margin of a shell or a shriveled red blood cell observed in a hypertonic solution etc.)
+68077,scallop scollop escallop,edible muscle of mollusks having fan-shaped shells; served broiled or poached or in salads or cream sauces
+68078,scallop scollop escallop,edible marine bivalve having a fluted fan-shaped shell that swim by expelling water from the shell in a series of snapping motions
+68079,scallop_shell,a shell of a scallop
+68080,scallopine scallopini,sauteed cutlets (usually veal or poultry) that have been pounded thin and coated with flour
+68081,scalp,the skin that covers the top of the head; "they wanted to take his scalp as a trophy"
+68082,scalp_lock,a long tuft of hair left on top of the shaven head
+68083,scalpel,a thin straight surgical knife used in dissection and surgery
+68084,scalper,someone who buys something and resells it at a price far above the initial cost; "he got theater tickets through a scalper"
+68085,scaly_lentinus Lentinus_lepideus,a fungus with a scaly cap and white flesh and a ring on the stalk (with scales below the ring); odor reminiscent of licorice
+68086,scam cozenage,a fraudulent business scheme
+68087,scammony,resin from the root of Convolvulus scammonia
+68088,scammony Convolvulus_scammonia,twining plant of Asia Minor having cream-colored to purple flowers and long thick roots yielding a cathartic resin
+68089,scammony Ipomoea_orizabensis,tropical American morning glory
+68090,scamper scramble scurry,rushing about hastily in an undignified way
+68091,scampi,large shrimp sauteed in oil or butter and garlic
+68092,scan,the act of scanning; systematic examination of a prescribed region; "he made a thorough scan of the beach with his binoculars"
+68093,scan CAT_scan,an image produced by scanning; "he analyzed the brain scan"; "you could see the tumor in the CAT scan"
+68094,scandal dirt malicious_gossip,disgraceful gossip about the private lives of other people
+68095,scandal outrage,a disgraceful event
+68096,scandalization scandalisation,the condition of being shocked (as by improper behavior)
+68097,scandalization scandalisation outrage,the act of scandalizing
+68098,scandalmonger,a person who spreads malicious gossip
+68099,scandalmongering,spreading malicious gossip
+68100,scandalousness,disgracefulness that offends public morality
+68101,scandium Sc atomic_number_21,a white trivalent metallic element; sometimes classified in the rare earth group; occurs in the Scandinavian mineral thortveitite
+68102,scanner,someone who scans verse to determine the number and prosodic value of the syllables
+68103,scanner,a radar dish that rotates or oscillates in order to scan a broad area
+68104,scanner digital_scanner image_scanner,an electronic device that generates a digital representation of an image for data input to a computer
+68105,scanner electronic_scanner,a radio receiver that moves automatically across some selected range of frequencies looking for some signal or condition; "they used scanners to monitor police radio channels"
+68106,scanning,the process of translating photographs into a digital form that can be recognized by a computer
+68107,scanning,the act of systematically moving a finely focused beam of light or electrons over a surface in order to produce an image of it for analysis or transmission
+68108,scansion,analysis of verse into metrical patterns
+68109,scantling stud,an upright in house framing
+68110,scape flower_stalk,erect leafless flower stalk growing directly from the ground as in a tulip
+68111,scapegoat whipping_boy,someone who is punished for the errors of others
+68112,scapegrace black_sheep,a reckless and unprincipled reprobate
+68113,scaphocephaly,congenital malformation of the skull which is long and narrow; frequently accompanied by mental retardation
+68114,scaphoid_bone os_scaphoideum navicular,the largest wrist bone on the thumb side
+68115,scaphopod,burrowing marine mollusk
+68116,scapula shoulder_blade shoulder_bone,either of two flat triangular bones one on each side of the shoulder in human beings
+68117,scapular,a feather covering the shoulder of a bird
+68118,scapular scapulary,garment consisting of a long wide piece of woolen cloth worn over the shoulders with an opening for the head; part of a monastic habit
+68119,scar cicatrix cicatrice,a mark left (usually on the skin) by the healing of injured tissue
+68120,scar_tissue,the connective tissue that forms a scar; consists of fibroblasts in new scars and collagen fibers in old scars
+68121,scarab scarabaeus Scarabaeus_sacer,scarabaeid beetle considered divine by ancient Egyptians
+68122,scarabaeid_beetle scarabaeid scarabaean,any of numerous species of stout-bodied beetles having heads with horny spikes
+68123,scarcity scarceness,a small and inadequate amount
+68124,scare panic_attack,a sudden attack of fear
+68125,scare_quote,the use of quotation marks to indicate that it is not the authors preferred terminology
+68126,scarecrow straw_man strawman bird-scarer scarer,an effigy in the shape of a man to frighten birds away from seeds
+68127,scaremonger stirrer,a person who spreads frightening rumors and stirs up trouble
+68128,scarf,a garment worn around the head or neck or shoulders for warmth or decoration
+68129,scarf_joint scarf,a joint made by notching the ends of two pieces of timber or metal so that they will lock together end-to-end
+68130,scarlet vermilion orange_red,a variable color that is vivid red but sometimes with an orange tinge
+68131,scarlet_bugler Penstemon_centranthifolius,plant with bright red tubular flowers in long narrow clusters near tips of erect stems; coastal ranges from central California southward
+68132,scarlet_bush scarlet_hamelia coloradillo Hamelia_patens Hamelia_erecta,handsome shrub with showy orange to scarlet or crimson flowers; Florida and West Indies to Mexico and Brazil
+68133,scarlet_clematis Clematis_texensis,woody vine of Texas having showy solitary nodding scarlet flowers
+68134,scarlet_fever scarlatina,an acute communicable disease (usually in children) characterized by fever and a red rash
+68135,scarlet_fritillary Fritillaria_recurva,western United States herb with scarlet and yellow narrow bell-shaped flowers
+68136,scarlet_haw Crataegus_biltmoreana,common shrub or small tree of the eastern United States having few thorns and white flowers in corymbs followed by bright orange-red berries
+68137,scarlet_letter,the letter A in red; Puritans required adulterers to wear it
+68138,scarlet_lychnis maltese_cross Lychins_chalcedonica,Eurasian garden perennial having scarlet flowers in dense terminal heads
+68139,scarlet_musk_flower Nyctaginia_capitata,viscid branched perennial of the southwestern United States and northern Mexico having tuberous roots and deep red flowers
+68140,scarlet_oak Quercus_coccinea,medium-large deciduous tree with a thick trunk found in the eastern United States and southern Canada and having close-grained wood and deeply seven-lobed leaves turning scarlet in autumn
+68141,scarlet_pimpernel red_pimpernel poor_man's_weatherglass Anagallis_arvensis,herb with scarlet or white or purple blossoms that close at approach of rainy weather
+68142,scarlet_plume Euphorbia_fulgens,Mexican shrub often cultivated for its scarlet-bracted flowers
+68143,scarlet_runner running_postman Kennedia_prostrata,hairy trailing or prostrate western Australian vine with bright scarlet-pink flowers
+68144,scarlet_runner scarlet_runner_bean Dutch_case-knife_bean runner_bean Phaseolus_coccineus Phaseolus_multiflorus,tropical American bean with red flowers and mottled black beans similar to Phaseolus vulgaris but perennial; a preferred food bean in Great Britain
+68145,scarlet_runner scarlet_runner_bean runner_bean English_runner_bean,long bean pods usually sliced into half-inch lengths; a favorite in Britain
+68146,scarlet_tanager Piranga_olivacea redbird firebird,the male is bright red with black wings and tail
+68147,scarlet_wisteria_tree vegetable_hummingbird Sesbania_grandiflora,a softwood tree with lax racemes of usually red or pink flowers; tropical Australia and Asia; naturalized in southern Florida and West Indies
+68148,scat scat_singing,singing jazz; the singer substitutes nonsense syllables for the words of the song and tries to sound like a musical instrument
+68149,scatology,a preoccupation with obscenity (especially that dealing with excrement or excretory functions)
+68150,scatology,(medicine) the chemical analysis of excrement (for medical diagnosis or for paleontological purposes)
+68151,scatophagy,the eating of excrement or other filth
+68152,scatter scattering strewing,the act of scattering
+68153,scatter spread,a haphazard distribution in all directions
+68154,scatter_pin,small pin usually worn in groups of two or more
+68155,scatter_rug throw_rug,a small rug; several can be used in a room
+68156,scatterbrain forgetful_person,a flighty and disorganized person
+68157,scattering,the physical process in which particles are deflected haphazardly as a result of collisions
+68158,scattering sprinkle sprinkling,a light shower that falls in some locations and not others nearby
+68159,scattering sprinkling,a small number (of something) dispersed haphazardly; "the first scatterings of green"; "a sprinkling of grey at his temples"
+68160,scaup scaup_duck bluebill broadbill,diving ducks of North America having a bluish-grey bill
+68161,scauper scorper,a graver used to scoop out broad areas when engraving wood or metal
+68162,scavenger,a chemical agent that is added to a chemical mixture to counteract the effects of impurities
+68163,scavenger,any animal that feeds on refuse and other decaying organic matter
+68164,scenario,a setting for a work of art or literature; "the scenario is France during the Reign of Terror"
+68165,scenario,an outline or synopsis of a play (or, by extension, of a literary work)
+68166,scenario,a postulated sequence of possible events; "planners developed several scenarios in case of an attack"
+68167,scenarist,a writer of screenplays
+68168,scene,the place where some action occurs; "the police returned to the scene of the crime"
+68169,scene,an incident (real or imaginary); "their parting was a sad scene"
+68170,scene,a subdivision of an act of a play; "the first act has three scenes"
+68171,scene shot,a consecutive series of pictures that constitutes a unit of action in a film
+68172,scene view,graphic art consisting of the graphic or photographic representation of a visual percept; "he painted scenes from everyday life"; "figure 2 shows photographic and schematic views of the equipment"
+68173,scene-stealer,an actor who draws more attention than other actors in the same scene; "babies are natural scene-stealers"
+68174,scene_painter,a painter of theatrical scenery
+68175,scenery,the appearance of a place
+68176,scenery scene,the painted structures of a stage set that are intended to suggest a particular locale; "they worked all night painting the scenery"
+68177,sceneshifter shifter,a stagehand responsible for moving scenery
+68178,scenic_artist scene_painter,an artist specializing in scenic subjects
+68179,scenic_railway,small railway in an amusement park
+68180,scent,an odor left in passing by which a person or animal can be traced
+68181,scented_fern Mohria_caffrorum,sweetly scented African fern with narrow bipinnate fronds
+68182,scentless_camomile scentless_false_camomile scentless_mayweed scentless_hayweed corn_mayweed Tripleurospermum_inodorum Matricaria_inodorum,ubiquitous European annual weed with white flowers and finely divided leaves naturalized and sometimes cultivated in eastern North America; sometimes included in genus Matricaria
+68183,scepter sceptre,the imperial authority symbolized by a scepter
+68184,scepter sceptre verge wand,a ceremonial or emblematic staff
+68185,schedule,an ordered list of times at which things are planned to occur
+68186,schedule_feeding,feeding a baby or animal according to a fixed schedule (e.g., every 4 hours)
+68187,scheduled_fire,prearranged fire delivered at a predetermined time
+68188,scheduled_maintenance,maintenance at a regularly scheduled time
+68189,scheduler,computer hardware that arranges jobs to be done by the computer in an appropriate order
+68190,scheduling programming programing,setting an order and time for planned events
+68191,scheelite,a mineral used as an ore of tungsten
+68192,schema scheme,an internal representation of the world; an organization of concepts and actions that can be revised by new information about the world
+68193,schematic schematic_drawing,diagram of an electrical or mechanical system
+68194,schematization schematisation,the act of reducing to a scheme or formula
+68195,schematization schematisation diagramming,providing a chart or outline of a system
+68196,scheme strategy,an elaborate and systematic plan of action
+68197,schemer plotter,a planner who draws up a personal scheme of action
+68198,schemozzle shemozzle,(Yiddish) a confused situation or affair; a mess
+68199,scherzo,a fast movement (usually in triple time)
+68200,schilling Austrian_schilling,formerly the basic unit of money in Austria
+68201,schipperke,breed of small stocky black dogs originally used as watchdogs on boats in the Netherlands and Belgium
+68202,schism,the formal separation of a church into two churches or the withdrawal of one group over doctrinal differences
+68203,schism split,division of a group into opposing factions; "another schism like that and they will wind up in bankruptcy"
+68204,schist,any metamorphic rock that can be split into thin layers
+68205,schistosome blood_fluke,flatworms parasitic in the blood vessels of mammals
+68206,schistosome_dermatitis swimmer's_itch,a sensitization reaction to repeated invasion of the skin by cercariae of schistosomes
+68207,schistosomiasis bilharzia bilharziasis,an infestation with or a resulting infection caused by a parasite of the genus Schistosoma; common in the tropics and Far East; symptoms depend on the part of the body infected
+68208,schizocarp,a dry dehiscent fruit that at maturity splits into two or more parts each with a single seed
+68209,schizogony,asexual reproduction by multiple fission; characteristic of many sporozoan protozoans
+68210,schizopetalon Schizopetalon_walkeri,a dainty South American annual having deeply pinnatifid leaves and racemes of fringed almond-scented purple-white flowers
+68211,schizophrenia schizophrenic_disorder schizophrenic_psychosis dementia_praecox,any of several psychotic disorders characterized by distortions of reality and disturbances of thought and language and withdrawal from social contact
+68212,schizophrenic,someone who is afflicted with schizophrenia
+68213,schizothymia,resembling schizophrenia but remaining within the bounds of normality
+68214,schizotypal_personality schizoid,characterized by symptoms similar to but less severe than schizophrenia
+68215,schlemiel shlemiel,(Yiddish) a dolt who is a habitual bungler
+68216,schlep shlep,a tedious or difficult journey
+68217,schlepper shlepper schlep shlep,(Yiddish) an awkward and stupid person
+68218,schlimazel shlimazel,(Yiddish) a very unlucky or inept person who fails at everything
+68219,schlock shlock dreck,merchandise that is shoddy or inferior
+68220,schlockmeister shlockmeister,(slang) a merchant who deals in shoddy or inferior merchandise
+68221,schmaltz shmaltz schmalz,(Yiddish) excessive sentimentality in art or music
+68222,schmeer schmear shmear,(Yiddish) a batch of things that go together; "he bought the whole schmeer"
+68223,schmuck shmuck schmo shmo,(Yiddish) a jerk
+68224,schnapps schnaps,any of various strong liquors especially a Dutch spirit distilled from potatoes
+68225,schnauzer,old German breed of sturdy black or greyish wire-haired terriers having a blunt muzzle ranging in size from fairly small to very large; used as ratters and guard dogs or police dogs
+68226,schnitzel Wiener_schnitzel,deep-fried breaded veal cutlets
+68227,schnook shnook,(Yiddish) a gullible simpleton more to be pitied than despised; "don't be such an apologetic shnook"
+68228,schnorrer shnorrer,(Yiddish) a scrounger who takes advantage of the generosity of others
+68229,scholar,a student who holds a scholarship
+68230,scholar scholarly_person bookman student,a learned person (especially in the humanities); someone who by long study has gained mastery in one or more disciplines
+68231,scholarship,financial aid provided to a student on the basis of academic merit
+68232,scholasticism academicism academism,orthodoxy of a scholastic variety
+68233,scholiast,a scholar who writes explanatory notes on an author (especially an ancient commentator on a classical author)
+68234,scholium scholia,a marginal note written by a scholiast (a commentator on ancient or classical literature)
+68235,school,an educational institution's faculty and students; "the school keeps parents informed"; "the whole school turned out for the game"
+68236,school,an educational institution; "the school was founded in 1900"
+68237,school,a body of creative artists or writers or thinkers linked by a similar style or by similar teachers; "the Venetian school of painting"
+68238,school schoolhouse,a building where young people receive education; "the school was built in 1932"; "he walked to school every morning"
+68239,school schooling,the process of being formally educated at a school; "what will you do when you finish school?"
+68240,school schooltime school_day,the period of instruction in a school; the time period when school is in session; "stay after school"; "he didn't miss a single day of school"; "when the school day was done we would walk home together"
+68241,school shoal,a large group of fish; "a school of small glittering fish swam by"
+68242,school_assignment schoolwork,a school task performed by a student to satisfy the teacher
+68243,school_bell,a bell rung to announce beginning or ending of class
+68244,school_board board_of_education,a board in charge of local public schools
+68245,school_bus,a bus used to transport children to or from school
+68246,school_crossing,a pedestrian crossing where school children cross a street on the way to school
+68247,school_day,any day on which school is in session; "go to bed early because tomorrow is a school day"
+68248,school_district,a district whose public schools are administered together
+68249,school_newspaper school_paper,a newspaper written and published by students in a school
+68250,school_phobia,a child's sudden fear of attending school
+68251,school_ship training_ship,a ship used to train students as sailors
+68252,school_superintendent,the superintendent of a school system
+68253,school_system,establishment including the plant and equipment for providing education from kindergarten through high school
+68254,school_term academic_term academic_session session,the time during which a school holds classes; "they had to shorten the school term"
+68255,school_year academic_year,the period of time each year when the school is open and people are studying
+68256,schoolbag,a bag for carrying school books and supplies; "found just the right dictionary to fit into his schoolbag"
+68257,schoolboy,a boy attending school
+68258,schoolchild school-age_child pupil,a young person attending school (up through senior high school)
+68259,schooldays schooltime,the time of life when you are going to school
+68260,schoolfriend,a friend who attends the same school
+68261,schoolgirl,a girl attending school
+68262,schooling,the training of an animal (especially the training of a horse for dressage)
+68263,schooling,the act of teaching at school
+68264,schoolmarm schoolma'am schoolmistress mistress,a woman schoolteacher (especially one regarded as strict)
+68265,schoolmaster,any person (or institution) who acts as an educator
+68266,schoolmaster Lutjanus_apodus,food fish of warm Caribbean and Atlantic waters
+68267,schoolmate classmate schoolfellow class_fellow,an acquaintance that you go to school with
+68268,schoolteacher school_teacher,a teacher in a school below the college level
+68269,schoolyard,the yard associated with a school
+68270,schooner,a large beer glass
+68271,schooner,sailing vessel used in former times
+68272,schorl,black tourmaline
+68273,schottische,music performed for dancing the schottische
+68274,schottische,a German round dance resembling a slow polka
+68275,schrod scrod,flesh of young Atlantic cod weighing up to 2 pounds; also young haddock and pollock; often broiled
+68276,schwa shwa,a neutral middle vowel; occurs in unstressed syllables
+68277,sciaenid_fish sciaenid,widely distributed family of carnivorous percoid fishes having a large air bladder used to produce sound
+68278,sciatic_nerve nervus_ischiadicus,arises from the sacral plexus and passes about halfway down the thigh where it divides into the common peroneal and tibial nerves
+68279,sciatica,neuralgia along the sciatic nerve
+68280,science scientific_discipline,a particular branch of scientific knowledge; "the science of genetics"
+68281,science_fiction,literary fantasy involving the imagined impact of science on society
+68282,science_museum,a museum that collects and displays objects having scientific interest
+68283,science_teacher,someone who teaches science
+68284,scientific_fact,an observation that has been confirmed repeatedly and is accepted as true (although its truth is never final)
+68285,scientific_instrument,an instrument used by scientists
+68286,scientific_knowledge,knowledge accumulated by systematic study and organized by general principles; "mathematics is the basis for much scientific knowledge"
+68287,scientific_method,a method of investigation involving observation and theory to test scientific hypotheses
+68288,scientific_research research_project,research into questions posed by scientific theories and hypotheses
+68289,scientific_theory,a theory that explains scientific observations; "scientific theories must be falsifiable"
+68290,scientist,a person with advanced knowledge of one or more sciences
+68291,scilla squill,an Old World plant of the genus Scilla having narrow basal leaves and pink or blue or white racemose flowers
+68292,scimitar,a curved oriental saber; the edge is on the convex side of the blade
+68293,scintilla,a sparkling glittering particle
+68294,scintillating_scotoma flittering_scotoma,a localized area of diminished vision edged by shimmering colored lights; in many people it indicates the onset of migraine
+68295,scintillation,(physics) a flash of light that is produced in a phosphor when it absorbs a photon or ionizing particle
+68296,scintillation,a brilliant display of wit
+68297,scintillation,the twinkling of the stars caused when changes in the density of the earth's atmosphere produce uneven refraction of starlight
+68298,scintillation_counter,counter tube in which light flashes when exposed to ionizing radiation
+68299,sciolism,pretentious superficiality of knowledge
+68300,scion,a descendent or heir; "a scion of royal stock"
+68301,scire_facias,a judicial writ based on some record and requiring the party against whom it is brought to show cause why the record should not be enforced or annulled
+68302,scission,the act of dividing by cutting or splitting
+68303,scissors,a gymnastic exercise performed on the pommel horse when the gymnast moves his legs as the blades of scissors move
+68304,scissors pair_of_scissors,an edge tool having two crossed pivoting blades
+68305,scissors scissors_hold scissor_hold scissor_grip scissors_grip,a wrestling hold in which you wrap your legs around the opponents body or head and put your feet together and squeeze
+68306,scissors_kick,a kick used in the sidestroke; legs are brought together in a scissoring motion
+68307,scissortail scissortailed_flycatcher Muscivora-forficata,grey flycatcher of the southwestern United States and Mexico and Central America having a long forked tail and white breast and salmon and scarlet markings
+68308,sclaff,a poor golf stroke in which the club head hits the ground before hitting the ball
+68309,sclera sclerotic_coat,the whitish fibrous membrane (albuginea) that with the cornea forms the outer covering and protection of the eyeball
+68310,scleral_veins venae_sclerales,tributaries of the anterior ciliary veins that drain the sclera of the eye
+68311,scleredema,a skin disease marked by hard edema of the tissue usually beginning in the face
+68312,sclerite,hard plate or element of the exoskeleton of some arthropods
+68313,scleritis,inflammation of the sclera
+68314,scleroderma dermatosclerosis,an autoimmune disease that affects the blood vessels and connective tissue; fibrous connective tissue is deposited in the skin
+68315,sclerometer,a measuring instrument that measures the hardness of materials by penetrating them with a stylus that has a diamond point
+68316,scleroprotein albuminoid,a simple protein found in horny and cartilaginous tissues and in the lens of the eye
+68317,sclerosis induration,any pathological hardening or thickening of tissue
+68318,sclerotinia,any fungus of the genus Sclerotinia; some causing brown rot diseases in plants
+68319,sclerotium,compact usually dark-colored mass of hardened mycelium constituting a vegetative food-storage body in various true fungi; detaches when mature and can give rise to new growth
+68320,sclerotium_disease sclerotium_rot,plant disease cause by fungi of the genus Sclerotium; also one in which sclerotia are formed
+68321,sclerotomy,surgical incision of the sclerotic coat of the eye
+68322,scoffer flouter mocker jeerer,someone who jeers or mocks or treats something with contempt or calls out in derision
+68323,scoffer gorger,someone who eats food rapidly and greedily
+68324,scofflaw,one who habitually ignores the law and does not answer court summonses
+68325,scoinson_arch sconcheon_arch,an arch that supports part of the wall
+68326,scold scolder nag nagger common_scold,someone (especially a woman) who annoys people by constantly finding fault
+68327,scolion banquet_song,a song (sometimes improvised) sung by guests at a banquet
+68328,scoliosis,an abnormal lateral curve to the vertebral column
+68329,scolopendrium,a fern thought to resemble a millipede
+68330,scombroid scombroid_fish,important marine food and game fishes found in all tropical and temperate seas; some are at least partially endothermic and can thrive in colder waters
+68331,sconce,a shelter or screen providing protection from enemy fire or from the weather
+68332,sconce,a small fort or earthwork defending a ford, pass, or castle gate
+68333,sconce,a candle or flaming torch secured in a sconce
+68334,sconce,a decorative wall bracket for holding candles or other sources of light
+68335,scone,small biscuit (rich with cream and eggs) cut into diamonds or sticks and baked in an oven or (especially originally) on a griddle
+68336,scoop,a large ladle; "he used a scoop to serve the ice cream"
+68337,scoop pocket,a hollow concave shape made by removing something
+68338,scoop scoop_shovel,the shovel or bucket of a dredge or backhoe
+68339,scoop scoopful,the quantity a scoop will hold
+68340,scoop_shot,a basketball shot made with an underhand scooping motion
+68341,scooter,child's two-wheeled vehicle operated by foot
+68342,scope range reach orbit compass ambit,an area in which something acts or operates or has power or control: "the range of a supersonic jet"; "a piano has a greater range than the human voice"; "the ambit of municipal legislation"; "within the compass of this article"; "within the scope of an investigation"; "outside the reach of the law"; "in the political orbit of a world power"
+68343,scopolamine hyoscine,an alkaloid with anticholinergic effects that is used as a sedative and to treat nausea and to dilate the pupils in ophthalmic procedures; "transdermal scopolamine is used to treat motion sickness"; "someone sedated with scopolamine has difficulty lying"
+68344,scops_owl,any of several small owls having ear tufts and a whistling call
+68345,scorch,a plant disease that produces a browning or scorched appearance of plant tissues
+68346,scorch,a discoloration caused by heat
+68347,scorch singe,a surface burn
+68348,scorched-earth_policy,the target company defends itself by selling off its crown jewels
+68349,scorcher,an extremely hot day
+68350,scorcher screamer,a very hard hit ball
+68351,score,an amount due (as at a restaurant or bar); "add it to my score and I'll settle later"
+68352,score,a number that expresses the accomplishment of a team or an individual in a game or contest; "the score was 7 to 0"
+68353,score,a set of twenty members; "a score were sent out but only one returned"
+68354,score,the facts about an actual situation; "he didn't know the score"
+68355,score,the act of scoring in a game or sport; "the winning score came with less than a minute left to play"
+68356,score account,grounds; "don't do it on my account"; "the paper was rejected on account of its length"; "he tried to blame the victim but his success on that score was doubtful"
+68357,score musical_score,a written form of a musical composition; parts for different instruments appear on separate staves on large pages; "he studied the score of the sonata"
+68358,score scotch,a slight surface cut (especially a notch that is made to keep a tally)
+68359,scoreboard,a large board for displaying the score of a contest (and some other information)
+68360,scorekeeper scorer,an official who records the score during the progress of a game
+68361,scorer,a player who makes a score in a game or contest
+68362,scorer,a logger who marks trees to be felled
+68363,scorpaenid scorpaenid_fish,any of numerous carnivorous usually bottom-dwelling warm-water marine fishes found worldwide but most abundant in the Pacific
+68364,scorpaenoid scorpaenoid_fish,fishes having the head armored with bony plates
+68365,scorpioid_cyme,a cyme with flowers or branches alternating in opposite ranks
+68366,scorpion,arachnid of warm dry regions having a long segmented tail ending in a venomous stinger
+68367,scorpion_fly,any of various mecopterous insects of the family Panorpidae of the northern hemisphere having a long beak and long antennae; males have a tail like that of a scorpion except it is not venomous
+68368,scorpion_shell,any of numerous tropical marine snails that as adults have the outer lip of the aperture produced into a series of long curved spines
+68369,scorpionfish scorpion_fish sea_scorpion,marine fishes having a tapering body with an armored head and venomous spines
+68370,scorpionweed scorpion_weed phacelia,any plant of the genus Phacelia
+68371,scorzonera black_salsify,long black salsify
+68372,scot_and_lot,obligations of all kinds taken as a whole
+68373,scoter scooter,large black diving duck of northern parts of the northern hemisphere
+68374,scotoma,an isolated area of diminished vision within the visual field
+68375,scour,a place that is scoured (especially by running water)
+68376,scourer,someone who cleanses by scouring
+68377,scourer,someone who travels widely and energetically; "he was a scourer of the seven seas"
+68378,scourge flagellum,a whip used to inflict punishment (often used for pedantic humor)
+68379,scouring,moving over territory to search for something; "scouring the entire area revealed nothing"
+68380,scouring_pad,a small abrasive cleaning pad used for scouring pots and pans
+68381,scouring_rush rough_horsetail Equisetum_hyemale Equisetum_hyemale_robustum Equisetum_robustum,evergreen erect horsetail with rough-edged stems; formerly used for scouring utensils
+68382,scours,diarrhea in livestock
+68383,scout pathfinder guide,someone who can find paths through unexplored territory
+68384,scout talent_scout,someone employed to discover and recruit talented persons (especially in the worlds of entertainment or sports)
+68385,scouting exploratory_survey reconnoitering reconnoitring,exploring in order to gain information; "scouting in enemy territory is very dangerous"
+68386,scouting_trip,an expedition undertaken to gain information
+68387,scoutmaster,the leader of a troop of Scouts
+68388,scow,any of various flat-bottomed boats with sloping ends
+68389,scow,a barge carrying bulk materials in an open hold
+68390,scrag,lean end of the neck
+68391,scrag scrag_end,the lean end of a neck of veal
+68392,scramble scuffle,an unceremonious and disorganized struggle
+68393,scrambled_eggs,eggs beaten and cooked to a soft firm consistency while stirring
+68394,scrambler,a rapid mover; someone who scrambles; "their quarterback was a good scrambler"; "scramblers can often unnerve a better tennis player"
+68395,scrambler,electronic equipment that makes speech unintelligible during transmission and restores it at reception
+68396,scrap,a small piece of something that is left over after the rest has been used; "she jotted it on a scrap of paper"; "there was not a scrap left"
+68397,scrap_iron,iron to be melted again and reworked
+68398,scrap_metal,discarded metal suitable for reprocessing; "he finally sold the car for scrap metal"
+68399,scrapbook,an album into which clippings or notes or pictures can be pasted
+68400,scrape scraping,a deep bow with the foot drawn backwards (indicating excessive humility); "all that bowing and scraping did not impress him"
+68401,scrape scraping scratch scratching,a harsh noise made by scraping; "the scrape of violin bows distracted her"
+68402,scraper,any of various hand tools for scraping
+68403,scrapheap,pile of discarded metal
+68404,scrapie,a fatal disease of sheep characterized by chronic itching and loss of muscular control and progressive degeneration of the central nervous system
+68405,scraping,(usually plural) a fragment scraped off of something and collected; "they collected blood scrapings for analysis"
+68406,scrappiness,the trait of being scrappy and pugnacious
+68407,scrapple,scraps of meat (usually pork) boiled with cornmeal and shaped into loaves for slicing and frying
+68408,scratch,a competitor who has withdrawn from competition
+68409,scratch,(golf) a handicap of zero strokes; "a golfer who plays at scratch should be able to achieve par on a course"
+68410,scratch scrape scar mark,an indication of damage
+68411,scratch_pad scratch_paper scribbling_block,pad for preliminary or hasty writing or notes or sketches etc; "scribbling block" is a British term
+68412,scratch_race,a race in which all contestants start from scratch (on equal terms)
+68413,scratch_test,a test to determine allergic sensitivity to various substances by applying them to scratches in the skin
+68414,scratcher,a workman who uses a tool for scratching
+68415,scratcher,a person who scratches to relieve an itch
+68416,scratcher,a device used for scratching
+68417,scratchpad,(computer science) a high-speed internal memory used for temporary storage of preliminary information
+68418,scrawler scribbler,a writer whose handwriting is careless and hard to read
+68419,scrawniness scrubbiness,the property of being stunted and inferior in size or quality; "the scrawniness of sickly trees"
+68420,scream screaming shriek shrieking screech screeching,sharp piercing cry; "her screaming attracted the neighbors"
+68421,screamer,a sensational newspaper headline
+68422,screamer,gooselike aquatic bird of South America having a harsh trumpeting call
+68423,screech screeching shriek shrieking scream screaming,a high-pitched noise resembling a human cry; "he ducked at the screechings of shells"; "he heard the scream of the brakes"
+68424,screech_owl,any owl that has a screeching cry
+68425,screech_owl Otus_asio,small North American owl having hornlike tufts of feathers whose call sounds like a quavering whistle
+68426,screed,a long monotonous harangue
+68427,screed,a long piece of writing
+68428,screed,an accurately levelled strip of material placed on a wall or floor as guide for the even application of plaster or concrete
+68429,screen,partition consisting of a decorative frame or panel that serves to divide a space
+68430,screen,a protective covering consisting of netting; can be mounted in a frame; "they put screens in the windows for protection against insects"; "a metal screen protected the observers"
+68431,screen CRT_screen,the display that is electronically created on the surface of the large end of a cathode-ray tube
+68432,screen cover covert concealment,a covering that serves to conceal or shelter something; "a screen of trees afforded privacy"; "under cover of darkness"; "the brush provided a covert for game"; "the simplest concealment is to match perfectly the color of the background"
+68433,screen silver_screen projection_screen,a white or silvered surface where pictures can be projected for viewing
+68434,screen_actor movie_actor,an actor who plays a role in a film
+68435,screen_door,a door that consists of a frame holding metallic or plastic netting; used to allow ventilation and to keep insects from entering a building through the open door; "he heard the screen door slam as she left"
+68436,screen_font raster_font,the font that is displayed on a computer screen; "when the screen font resembles a printed font a document may look approximately the same on the screen as it will when printed"
+68437,screen_memory,an imagined memory of a childhood experience; hides another memory of distressing significance
+68438,screen_pass,a short forward pass in which the receiver is protected by a screen of blockers
+68439,screen_saver,(computer science) a moving design that appears on a computer screen when there has been no input for a specified period of time; "screen savers prevent the damage that occurs when the same areas of light and dark are displayed too long"
+68440,screen_test,a filmed audition of an actor or actress
+68441,screener,a guard at an airport who checks passengers or their luggage at a security checkpoint
+68442,screening,fabric of metal or plastic mesh
+68443,screening,testing objects or persons in order to identify those with particular characteristics
+68444,screening showing viewing,the display of a motion picture
+68445,screenplay,a script for a film including dialogue and descriptions of characters and sets
+68446,screenwriter film_writer,someone who writes screenplays
+68447,screw,a simple machine of the inclined-plane type consisting of a spirally threaded cylindrical rod that engages with a similarly threaded hole
+68448,screw,a fastener with a tapered threaded shank and a slotted head
+68449,screw screw_propeller,a propeller with several angled blades that rotates to push against water or air
+68450,screw_augur Spiranthes_cernua,an orchid of the genus Spiranthes having tall erect densely flowered spiraling clusters of creamy white vanilla-scented flowers; widely distributed especially in low damp places of eastern and central North America
+68451,screw_bean,spirally twisted sweet pod of screwbean mesquite that is used for fodder or ground into meal for feed
+68452,screw_bean screwbean tornillo screwbean_mesquite Prosopis_pubescens,shrub or small tree of southwestern United States and northwestern Mexico having spirally twisted pods
+68453,screw_eye,a woodscrew having its shank bent into a ring
+68454,screw_key,a wrench for turning a screw
+68455,screw_thread thread,the raised helical rib going around a screw
+68456,screw_tree,a tree or shrub of the genus Helicteres
+68457,screw_wrench,adjustable wrench that has one jaw that can be adjusted by turning a screw
+68458,screwball,a pitch with reverse spin that curves toward the side of the plate from which it was thrown
+68459,screwballer,(baseball) a pitcher who throws screwballs
+68460,screwdriver,a cocktail made with vodka and orange juice
+68461,screwdriver,a hand tool for driving screws; has a tip that fits into the head of a screw
+68462,screwtop,the top of a container that must be screwed off and on
+68463,screwup,the complete mismanagement or mishandling of a situation; "a typical bureaucratic screwup"
+68464,scribble scrabble doodle,an aimless drawing
+68465,scribble scratch scrawl cacography,poor handwriting
+68466,scribe scribbler penman,informal terms for journalists
+68467,scriber scribe scratch_awl,a sharp-pointed awl for marking wood or metal to be cut
+68468,scrim,a firm open-weave fabric used for a curtain in the theater
+68469,scrimmage,(American football) practice play between a football team's squads
+68470,scrimmage_line line_of_scrimmage,line parallel to the goal lines where football linesmen line up at the start of each play in American football; "the runner was tackled at the line of scrimmage"
+68471,scrimshanker,a shirker
+68472,scrimshaw,a carving (or engraving) on whalebone, whale ivory, walrus tusk, etc., usually by American whalers
+68473,scrip,a certificate whose value is recognized by the payer and payee; scrip is not currency but may be convertible into currency
+68474,script,a particular orthography or writing system
+68475,script book playscript,a written version of a play or other dramatic composition; used in preparing for a performance
+68476,scriptorium,a room in a monastery that is set aside for writing or copying manuscripts
+68477,scripture sacred_scripture,any writing that is regarded as sacred by a religious group
+68478,scriptwriter,someone who writes scripts for plays or movies or broadcast dramas
+68479,scrod schrod,young Atlantic cod or haddock especially one split and boned for cooking
+68480,scrofula struma king's_evil,a form of tuberculosis characterized by swellings of the lymphatic glands
+68481,scroll roll,a document that can be rolled up (as for storage)
+68482,scrotal_vein vena_scrotalis,veins passing from the scrotum to the pudendal veins
+68483,scrotum,the external pouch that contains the testes
+68484,scrub chaparral bush,dense vegetation consisting of stunted trees or bushes
+68485,scrub scrubbing scouring,the act of cleaning a surface by rubbing it with a brush and soap and water
+68486,scrub_beefwood beefwood Stenocarpus_salignus,tree or tall shrub with shiny leaves and umbels of fragrant creamy-white flowers; yields hard heavy reddish wood
+68487,scrub_brush scrubbing_brush scrubber,a brush with short stiff bristles for heavy cleaning
+68488,scrub_nurse,a nurse who helps a surgeon prepare for surgery
+68489,scrub_oak,any of various chiefly American small shrubby oaks often a dominant form on thin dry soils sometimes forming dense thickets
+68490,scrub_pine Virginia_pine Jersey_pine Pinus_virginiana,common small shrubby pine of the eastern United States having straggling often twisted or branches and short needles in bunches of 2
+68491,scrub_plane,a narrow woodworking plane used to cut away excess stock
+68492,scrubber,a worker who uses a scrub brush to clean a surface (usually a floor or deck)
+68493,scrubber,a purifier that removes impurities from a gas
+68494,scrubbird scrub-bird scrub_bird,small fast-running Australian bird resembling a wren and frequenting brush or scrub
+68495,scrubland,an uncultivated region covered with scrub vegetation
+68496,scrum scrummage,(rugby) the method of beginning play in which the forwards of each team crouch side by side with locked arms; play starts when the ball is thrown in between them and the two sides compete for possession
+68497,scrumpy,strong cider (as made in western England)
+68498,scrunch,a crunching noise
+68499,scruple,a unit of apothecary weight equal to 20 grains
+68500,scruple,an ethical or moral principle that inhibits action
+68501,scruple qualm misgiving,uneasiness about the fitness of an action
+68502,scrupulousness,conformity to high standards of ethics or excellence
+68503,scrutineer canvasser,someone who examines votes at an election
+68504,scrutinizer scrutiniser,a careful examiner; someone who inspects with great care
+68505,scrutiny,a prolonged intense look
+68506,scuba_diver,an underwater diver who uses scuba gear
+68507,scuba_diving,skin diving with scuba apparatus
+68508,scud scudding,the act of moving along swiftly (as before a gale)
+68509,scuff,the act of scuffing (scraping or dragging the feet)
+68510,scuffer,a lightweight flexible sandal with a sturdy sole; worn as play shoes by children and as sportswear by adults
+68511,scuffle scuffle_hoe Dutch_hoe,a hoe that is used by pushing rather than pulling
+68512,scull,a long oar that is mounted at the stern of a boat and moved left and right to propel the boat forward
+68513,scull,each of a pair of short oars that are used by a single oarsman
+68514,scull,a racing shell that is propelled by sculls
+68515,sculler,someone who sculls (moves a long oar pivoted on the back of the boat to propel the boat forward)
+68516,scullery,a small room (in large old British houses) next to the kitchen; where kitchen utensils are cleaned and kept and other rough household jobs are done
+68517,sculling,rowing by a single oarsman in a racing shell
+68518,scullion,a kitchen servant employed to do menial tasks (especially washing)
+68519,sculpin,any of numerous spiny large-headed usually scaleless scorpaenoid fishes with broad mouths
+68520,sculptor sculpturer carver statue_maker,an artist who creates sculptures
+68521,sculptress,a woman sculptor
+68522,sculpture,a three-dimensional work of plastic art
+68523,sculpture carving,creating figures or designs in three dimensions
+68524,scum,a film of impurities or vegetation that can form on the surface of a liquid
+68525,scumble,the application of very thin coat of color over the surface of a picture
+68526,scunner,a strong dislike; "they took a scunner against the United States"
+68527,scup,flesh of fish found in colder waters of northern Atlantic coast of the United States
+68528,scup northern_porgy northern_scup Stenotomus_chrysops,found in Atlantic coastal waters of North America from South Carolina to Maine; esteemed as a panfish
+68529,scup southern_porgy southern_scup Stenotomus_aculeatus,porgy of southern Atlantic coastal waters of North America
+68530,scupper,drain that allows water on the deck of a vessel to flow overboard
+68531,scuppernong,amber-green muscadine grape of southeastern United States
+68532,scurf,(botany) a covering that resembles scales or bran that covers some plant parts
+68533,scurrility billingsgate,foul-mouthed or obscene abuse
+68534,scurvy scorbutus,a condition caused by deficiency of ascorbic acid (vitamin C)
+68535,scurvy_grass common_scurvy_grass Cochlearia_officinalis,a widely distributed Arctic cress reputed to have value in treatment or prevention of scurvy; a concentrated source of vitamin C
+68536,scut,a short erect tail
+68537,scut_work shitwork,trivial, unrewarding, tedious, dirty, and disagreeable chores; "the hospital hired him to do scut work"
+68538,scute,large bony or horny plate as on an armadillo or turtle or the underside of a snake
+68539,scuttle coal_scuttle,container for coal; shaped to permit pouring the coal onto the fire
+68540,scyphozoan,any of various usually free-swimming marine coelenterates having a gelatinous medusoid stage as the dominant phase of its life cycle
+68541,scyphus,an ancient Greek drinking cup; two handles and footed base
+68542,scythe,an edge tool for cutting grass; has a long handle that must be held with both hands and a curved blade that moves parallel to the ground
+68543,sea,turbulent water with swells of considerable size; "heavy seas"
+68544,sea,a division of an ocean or a large body of salt water partially enclosed by land
+68545,sea-duty service_abroad shipboard_duty,naval service aboard a ship at sea
+68546,sea-level_pressure,the atmospheric pressure reduced by a formula to the pressure at sea level
+68547,sea-rocket Cakile_maritima,salt-tolerant seashore annual grown for its fragrant rose or violet flowers and fleshy grey-green foliage
+68548,sea_anchor drogue,restraint consisting of a canvas covered frame that floats behind a vessel; prevents drifting or maintains the heading into a wind
+68549,sea_anemone anemone,marine polyps that resemble flowers but have oral rings of tentacles; differ from corals in forming no hard skeleton
+68550,sea_aster sea_starwort Aster_tripolium,a common European aster that grows in salt marshes
+68551,sea_bass,any of various food and sport fishes of the Atlantic coast of the United States having an elongated body and long spiny dorsal fin
+68552,sea_bass bass,the lean flesh of a saltwater fish of the family Serranidae
+68553,sea_bathing,bathing in the sea or ocean
+68554,sea_boat,a boat that is seaworthy; that is adapted to the open seas
+68555,sea_bream bream,any of numerous marine percoid fishes especially (but not exclusively) of the family Sparidae
+68556,sea_breeze,a cooling breeze from the sea (during the daytime)
+68557,sea_catfish,any of numerous marine fishes most of which are mouthbreeders; not used for food
+68558,sea_change,a profound transformation
+68559,sea_chest,a sailor's storage chest for personal property
+68560,sea_chub,schooling fishes mostly of Indian and western Pacific oceans; two species in western Atlantic
+68561,sea_coal,pulverized bituminous coal; used as a foundry facing
+68562,sea_cow sirenian_mammal sirenian,any of two families of large herbivorous aquatic mammals with paddle-shaped tails and flipper-like forelimbs and no hind limbs
+68563,sea_cucumber holothurian,echinoderm having a flexible sausage-shaped body, tentacles surrounding the mouth and tube feet; free-living mud feeders
+68564,sea_dahlia Coreopsis_maritima,stout herb with flowers one to a stalk; ornamental developed from a Mexican wildflower
+68565,sea_duck,any of various large diving ducks found along the seacoast: eider; scoter; merganser
+68566,sea_eagle,any of various large eagles that usually feed on fish
+68567,sea_fan,corals having a treelike or fan-shaped horny skeleton
+68568,sea_feather,corals forming featherlike colonies
+68569,sea_god,a deity that personifies the sea and is usually believed to live in or to control the sea
+68570,sea_gooseberry,ctenophore having a rounded body with longitudinal rows of cilia
+68571,sea_green,the property of a moderate green color resembling the waters of the sea
+68572,sea_hare Aplysia_punctata,naked marine gastropod having a soft body with reduced internal shell and two pairs of ear-like tentacles
+68573,sea_holly sea_holm sea_eryngium Eryngium_maritimum,European evergreen eryngo with twisted spiny leaves naturalized on United States east coast; roots formerly used as an aphrodisiac
+68574,sea_island_cotton tree_cotton Gossypium_barbadense,small bushy tree grown on islands of the Caribbean and off the Atlantic coast of the southern United States; yields cotton with unusually long silky fibers
+68575,sea_kale sea_cole Crambe_maritima,perennial of coastal sands and shingles of northern Europe and Baltic and Black Seas having racemes of small white flowers and large fleshy blue-green leaves often used as potherbs
+68576,sea_king,a Viking pirate chief
+68577,sea_ladder sea_steps,(nautical) ladder to be lowered over a ship's side for coming aboard
+68578,sea_lamprey Petromyzon_marinus,large anadromous lamprey sometimes used as food; destructive of native fish fauna in the Great Lakes
+68579,sea_lavender marsh_rosemary statice,any of various plants of the genus Limonium of temperate salt marshes having spikes of white or mauve flowers
+68580,sea_lawyer,an argumentative and contentious seaman
+68581,sea_lettuce laver,seaweed with edible translucent crinkly green fronds
+68582,sea_level,level of the ocean's surface (especially that halfway between mean high and low tide); used as a standard in reckoning land elevation or sea depth
+68583,sea_lily,crinoid with delicate radiating arms and a stalked body attached to a hard surface
+68584,sea_lion,any of several large eared seals of the northern Pacific related to fur seals but lacking their valuable coat
+68585,sea_louse sea_slater,marine isopod crustacean
+68586,sea_lyme_grass European_dune_grass Elymus_arenarius Leymus_arenaria,a dune grass of the Pacific seacoast used as a sand binder
+68587,sea_mile mile,a former British unit of length once used in navigation; equivalent to 6,000 feet (1828.8 meters)
+68588,sea_milkwort sea_trifoly black_saltwort Glaux_maritima,a small fleshy herb common along North American seashores and in brackish marshes having pink or white flowers
+68589,sea_moss,any of various red algae having graceful rose to purple fronds (e.g. dulse or carrageen)
+68590,sea_mouse,any of several large worms having a broad flattened body with a mat of coarse hairs covering the back
+68591,sea_nymph,(Greek mythology) a water nymph who was the daughter of Oceanus or Nereus
+68592,sea_otter Enhydra_lutris,large marine otter of northern Pacific coasts having very thick dark brown fur
+68593,sea_pen,fleshy featherlike warm-water colonies
+68594,sea_power,a nation that possesses formidable naval strength
+68595,sea_power,naval strength
+68596,sea_raven Hemitripterus_americanus,large sculpin of western Atlantic; inflates itself when caught
+68597,sea_robin searobin,American gurnard; mostly found in bays and estuaries
+68598,sea_room,space for maneuver at sea
+68599,sea_scallop,muscle of large deep-water scallops
+68600,sea_scallop giant_scallop Pecten_magellanicus,a large scallop inhabiting deep waters of the Atlantic coast of North America
+68601,sea_serpent,huge creature of the sea resembling a snake or dragon
+68602,sea_slug nudibranch,any of various marine gastropods of the suborder Nudibranchia having a shell-less and often beautifully colored body
+68603,sea_snake,any of numerous venomous aquatic viviparous snakes having a fin-like tail; of warm littoral seas; feed on fish which they immobilize with quick-acting venom
+68604,sea_spider pycnogonid,any of various small spiderlike marine arthropods having small thin bodies and long slender legs
+68605,sea_spray,spray from ocean waves
+68606,sea_squill sea_onion squill Urginea_maritima,having dense spikes of small white flowers and yielding a bulb with medicinal properties
+68607,sea_squirt,ascidian that can contract its body and eject streams of water
+68608,sea_swallow Sterna_hirundo,common tern of Eurasia and America having white black and grey plumage
+68609,sea_tangle tang,any of various kelps especially of the genus Laminaria
+68610,sea_trout,any of several sciaenid fishes of North American coastal waters
+68611,sea_trout,silvery marine variety of brown trout that migrates to fresh water to spawn
+68612,sea_trout salmon_trout,flesh of marine trout that migrate from salt to fresh water
+68613,sea_turtle marine_turtle,any of various large turtles with limbs modified into flippers; widely distributed in warm seas
+68614,sea_urchin,shallow-water echinoderms having soft bodies enclosed in thin spiny globular shells
+68615,sea_wormwood Seriphidium_maritimum Artemisia_maritima,plants of western and northern European coasts
+68616,sea_wrack wrack,growth of marine vegetation especially of the large forms such as rockweeds and kelp
+68617,seabag,a cylindrical drawstring bag used by sailors to hold their clothing and other gear
+68618,seabeach_sandwort Arenaria_peploides,perennial succulent herb with small solitary axillary or terminal flowers
+68619,seabird sea_bird seafowl,a bird that frequents coastal waters and the open ocean: gulls; pelicans; gannets; cormorants; albatrosses; petrels; etc.
+68620,seaborgium Sg element_106 atomic_number_106,a transuranic element
+68621,seafaring navigation sailing,the work of a sailor
+68622,seafood,edible fish (broadly including freshwater fish) or shellfish or roe etc
+68623,seafood_Newburg,seafood in Newburg sauce served on toast or rice
+68624,seafront,the waterfront of a seaside town
+68625,seagrass,any of various seaweeds that grow underwater in shallow beds; "seagrass provides a protective environment in which young fish can develop"
+68626,seahorse sea_horse,small fish with horse-like heads bent sharply downward and curled tails; swim in upright position
+68627,seal,a stamp affixed to a document (as to attest to its authenticity or to seal it); "the warrant bore the sheriff's seal"
+68628,seal,a finishing coat applied to exclude moisture
+68629,seal,fastener that provides a tight and perfect closure
+68630,seal,any of numerous marine mammals that come on shore to breed; chiefly of cold regions
+68631,seal sealskin,the pelt or fur (especially the underfur) of a seal; "a coat of seal"
+68632,seal stamp,a device incised to make an impression; used to secure a closing or to authenticate documents
+68633,seal_bomb,a small explosive device (resembling a firecracker) that is used underwater in order to frighten mammals away from fishing grounds
+68634,seal_oil,a pale yellow to red-brown fatty oil obtained from seal blubber; used in making soap and dressing leather and as a lubricant
+68635,sealant sealer,a kind of sealing material that is used to form a hard coating on a porous surface (as a coat of paint or varnish used to size a surface)
+68636,sealed_instrument contract_under_seal special_contract,a contract that is signed and has the (wax) seal of the signer attached
+68637,sealer,an official who affixes a seal to a document
+68638,sealing_material,any substance used to seal joints or fill cracks in a porous surface
+68639,sealing_wax seal,fastener consisting of a resinous composition that is plastic when warm; used for sealing documents and parcels and letters
+68640,sealskin,a garment (as a jacket or coat or robe) made of sealskin
+68641,seam,joint consisting of a line formed by joining two pieces
+68642,seam bed,a stratum of ore or coal thick enough to be mined with profit; "he worked in the coal beds"
+68643,seamanship,skill in sailing
+68644,seamount,an underwater mountain rising above the ocean floor
+68645,seance sitting session,a meeting of spiritualists; "the seance was held in the medium's parlor"
+68646,seaplane hydroplane,an airplane that can land on or take off from water; "the designer of marine aircraft demonstrated his newest hydroplane"
+68647,seaport haven harbor harbour,a sheltered port where ships can take on or discharge cargo
+68648,seaquake submarine_earthquake,an earthquake at the sea bed
+68649,search,the examination of alternative hypotheses; "his search for a move that would avoid checkmate was unsuccessful"
+68650,search,boarding and inspecting a ship on the high seas; "right of search"
+68651,search,an investigation seeking answers; "a thorough search of the ledgers revealed nothing"; "the outcome justified the search"
+68652,search hunt hunting,the activity of looking thoroughly in order to find something or someone
+68653,search lookup,an operation that determines whether one or more of a set of items has a specified property; "they wrote a program to do a table lookup"
+68654,search_and_destroy_mission,an operation developed for United States troops in Vietnam; troops would move through a designated area destroying troops as they found them
+68655,search_and_rescue_mission,a rescue mission to search for survivors and to rescue them
+68656,search_engine,a computer program that retrieves documents or files or data from a database or from a computer network (especially from the internet)
+68657,search_mission,a mission to discover something
+68658,search_party,a party of people to search for someone
+68659,search_warrant,a warrant authorizing law enforcement officials to search for objects or people involved in the commission of a crime and to produce them in court; the warrant describes the locations where the officials may search
+68660,searcher,a customs official whose job is to search baggage or goods or vehicles for contraband or dutiable items
+68661,searcher searcher_beetle Calosoma_scrutator,large metallic blue-green beetle that preys on caterpillars; found in North America
+68662,searching_fire,fire distributed in depth by successive changes in the elevation of the gun
+68663,searchlight,a light source with reflectors that projects a beam of light in a particular direction
+68664,searing_iron,a hot iron used to destroy tissue
+68665,seascape,a view of the sea
+68666,seascape waterscape,a painting of the sea (as distinguished from a landscape)
+68667,seashell,the shell of a marine organism
+68668,seashore coast seacoast sea-coast,the shore of a sea or ocean
+68669,seashore_mallow,any of various plants of the genus Kosteletzya predominantly of coastal habitats; grown for their flowers that resemble hibiscus
+68670,seasickness mal_de_mer naupathia,motion sickness experienced while traveling on water
+68671,seaside seaboard,the shore of a sea or ocean regarded as a resort
+68672,seaside_alder Alnus_maritima,shrub or small tree of southeastern United States having soft light brown wood
+68673,seaside_centaury,a variety of centaury found at the seaside
+68674,seaside_daisy beach_aster Erigeron_glaucous,slightly succulent perennial with basal leaves and hairy sticky stems each bearing a solitary flower head with narrow pink or lavender rays; coastal bluffs Oregon to southern California
+68675,seaside_goldenrod beach_goldenrod Solidago_sempervirens,vigorous showy goldenrod common along eastern coast and Gulf Coast of North America
+68676,seasnail,any of several creeping marine gastropods with a spirally coiled shell: whelks; tritons; moon shells; neritids
+68677,season,a period of the year marked by special events or activities in some field; "he celebrated his 10th season with the ballet company"; "she always looked forward to the avocado season"
+68678,season,a recurrent time marked by major holidays; "it was the Christmas season"
+68679,season time_of_year,one of the natural periods into which the year is divided by the equinoxes and solstices or atmospheric conditions; "the regular sequence of the seasons"
+68680,seasonableness timeliness,being at the right time
+68681,seasonal_adjustment,a statistical adjustment made to accommodate predictable fluctuations as a function of the season of the year; "seasonal adjustments for housing starts must be made in mid-winter"
+68682,seasonal_worker seasonal,a worker who finds employment only in certain seasons
+68683,seasoned_salt,combination of salt and vegetable extracts and spices and monosodium glutamate
+68684,seasoner,a cook who uses seasonings; "the cook is a light seasoner"
+68685,seasoning,the act of adding a seasoning to food
+68686,seat,a center of authority (as a city from which authority is exercised)
+68687,seat,the location (metaphorically speaking) where something is based; "the brain is said to be the seat of reason"
+68688,seat,the legal right to sit as a member in a legislative or similar body; "he was elected to a seat in the Senate"
+68689,seat,a part of a machine that supports or guides another part
+68690,seat,the cloth covering for the buttocks; "the seat of his pants was worn through"
+68691,seat,furniture that is designed for sitting on; "there were not enough seats for all the guests"
+68692,seat,any support where you can sit (especially the part of a chair or bench etc. on which you sit); "he dusted off the seat before sitting down"
+68693,seat place,a space reserved for sitting (as in a theater or on a train or airplane); "he booked their seats in advance"; "he sat in someone else's place"
+68694,seat_belt seatbelt,a safety belt used in a car or plane to hold you in your seat in case of an accident
+68695,seat_cushion,a cushion that makes a seat more comfortable
+68696,seating,the service of ushering people to their seats
+68697,seating seats seating_room seating_area,an area that includes places where several people can sit; "there is seating for 40 students in this classroom"
+68698,seating_capacity,the number of people that can be seated in a vehicle or auditorium or stadium etc.
+68699,seaward,the direction toward the sea
+68700,seawater saltwater brine,water containing salts; "the water in the ocean is all saltwater"
+68701,seaway sea_lane ship_route trade_route,a lane at sea that is a regularly used route for vessels
+68702,seaweed,plant growing in the sea, especially marine algae
+68703,seaworthiness,fitness to traverse the seas
+68704,sebaceous_cyst pilar_cyst wen steatocystoma,a common cyst of the skin; filled with fatty matter (sebum) that is secreted by a sebaceous gland that has been blocked
+68705,sebaceous_gland sebaceous_follicle glandulae_sebaceae,a cutaneous gland that secretes sebum (usually into a hair follicle) for lubricating hair and skin
+68706,sebacic_acid decanedioic_acid,a dicarboxylic acid used to make resins
+68707,seborrhea,a condition in which overactivity of the sebaceous glands causes the skin to become oily
+68708,seborrheic_dermatitis seborrheic_eczema,a chronic skin disease associated with seborrhea and greasy scales on the scalp or eyelids or other parts of the skin
+68709,seborrheic_keratosis,a skin condition characterized by circumscribed wartlike lesions that can be itchy and covered with a greasy crust
+68710,sebum,the oily secretion of the sebaceous glands; with perspiration it moistens and protects the skin
+68711,secant,a straight line that intersects a curve at two or more points
+68712,secant sec,ratio of the hypotenuse to the adjacent side of a right-angled triangle
+68713,secateurs,small pruning shears with a spring that holds the handles open and a single blade that closes against a flat surface
+68714,secession sezession,an Austrian school of art and architecture parallel to the French art nouveau in the 1890s
+68715,secession withdrawal,formal separation from an alliance or federation
+68716,secessionism,a doctrine that maintains the right of secession
+68717,secessionist,an advocate of secessionism
+68718,seckel seckel_pear,small yellowish- to reddish-brown pear
+68719,seclusion,the act of secluding yourself from others
+68720,secobarbital_sodium secobarbital Seconal red_devil,barbiturate that is a white odorless slightly bitter powder (trade name Seconal) used as a sodium salt for sedation and to treat convulsions
+68721,second,following the first in an ordering or series; "he came in a close second"
+68722,second,the official attendant of a contestant in a duel or boxing match
+68723,second arcsecond,a 60th part of a minute of arc; "the treasure is 2 minutes and 45 seconds south of here"
+68724,second sec s,1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites
+68725,second secondment endorsement indorsement,a speech seconding a motion; "do I hear a second?"
+68726,second-degree_burn,burn causing blisters on the skin and superficial destruction of the dermis
+68727,second-hand_speech,overheard conversation (especially overheard cellphone conversation)
+68728,second-in-command,someone who relieves a commander
+68729,second-place_finish runner-up_finish,a finish in second place (as in a race)
+68730,second-rater mediocrity,a person of second-rate ability or value; "a team of aging second-raters"; "shone among the mediocrities who surrounded him"
+68731,second_balcony family_circle upper_balcony peanut_gallery,rearmost or uppermost area in the balcony containing the least expensive seats
+68732,second_base,the base that must be touched second by a base runner in baseball
+68733,second_base second,the fielding position of the player on a baseball team who is stationed near the second of the bases in the infield
+68734,second_baseman second_sacker,(baseball) the person who plays second base
+68735,second_class,not the highest rank in a classification
+68736,second_class,not the highest quality in a classification
+68737,second_cousin,a child of a first cousin of one's parent
+68738,second_estate Lords_Temporal,the nobility in France and the peerage in Britain
+68739,second_fiddle,a secondary role or function; "he hated to play second fiddle to anyone"
+68740,second_fiddle second_banana,someone who serves in a subordinate capacity or plays a secondary role
+68741,second_gear second,the gear that has the second lowest forward gear ratio in the gear box of a motor vehicle; "he had to shift down into second to make the hill"
+68742,second_growth,a second growth of trees covering an area where the original stand was destroyed by fire or cutting
+68743,second_half last_half,the second of two halves of play
+68744,second_hand,an intermediate person; used in the phrase `at second hand'; "he could learn at second hand from books"
+68745,second_hand,hand marking seconds on a timepiece
+68746,second_joint thigh,the upper joint of the leg of a fowl
+68747,second_law_of_motion Newton's_second_law_of_motion Newton's_second_law,the rate of change of momentum is proportional to the imposed force and goes in the direction of the force
+68748,second_law_of_thermodynamics,a law stating that mechanical work can be derived from a body only when that body interacts with another at a lower temperature; any spontaneous process results in an increase of entropy
+68749,second_lieutenant 2nd_lieutenant,a commissioned officer in the Army or Air Force or Marine Corps holding the lowest rank
+68750,second_moment,the expected value of the square of the deviations of a random variable from the point of origin
+68751,second_mortgage,a mortgage that is subordinate to a first mortgage
+68752,second_nature,acquired behavior that is practiced so long it seems innate
+68753,second_period,the second division into which the play of a game is divided
+68754,second_person,pronouns and verbs used to refer to the person addressed by the language in which they occur
+68755,second_reading,the second presentation of a bill in a legislature; to approve its general principles (Britain) or to discuss a committee's report and take a vote (US)
+68756,second_string,a squad of players that are available either individually or as a team to relieve or replace the players who started the game
+68757,second_trimester,time period extending from the 13th to the 27th week of gestation
+68758,second_wind,renewed energy or strength to continue an undertaking; "She had dinner and got a second wind to finish painting"; "the employers, initially taken by surprise at the pace of developments, regained their second wind"
+68759,second_wind,the return of relatively easy breathing after initial exhaustion during continuous exertion
+68760,secondary,the defensive football players who line up behind the linemen
+68761,secondary_amenorrhea,cessation of menstruation in a woman who had previously menstruated
+68762,secondary_censorship,armed forces censorship of the personal communications of officers or civilian employees or enlisted personnel not subject to primary censorship
+68763,secondary_coil secondary_winding secondary,coil such that current is induced in it by passing a current through the primary coil
+68764,secondary_dentition,dentition of permanent teeth
+68765,secondary_diagonal,the diagonal of a square matrix running from the lower left entry to the upper right entry
+68766,secondary_dysmenorrhea,painful menstruation that is caused by some specific disorder (as endometriosis)
+68767,secondary_education,education beyond the elementary grades; provided by a high school or college preparatory school
+68768,secondary_emission,the emission of electrons from a surface that is bombarded by higher energy primary electrons
+68769,secondary_hypertension,hypertension that is secondary to another disease
+68770,secondary_modern_school,a former British secondary school emphasizing practical rather than academic education
+68771,secondary_school lyceum lycee Gymnasium middle_school,a school for students intermediate between elementary school and college; usually grades 9 to 12
+68772,secondary_sex_characteristic secondary_sexual_characteristic secondary_sex_character,the genetically determined sex characteristics that are not functionally necessary for reproduction (pitch of the voice and body hair and musculature)
+68773,secondary_syphilis,the second stage; characterized by eruptions of the skin and mucous membrane
+68774,seconder,someone who endorses a motion or petition as a necessary preliminary to a discussion or vote
+68775,secondment,the detachment of a person from their regular organization for temporary assignment elsewhere
+68776,secondo,the second or lower part of a duet (especially a piano duet)
+68777,secrecy secretiveness silence,the trait of keeping things secret
+68778,secret,something that should remain hidden from others (especially information that is not to be passed on); "the combination to the safe was a secret"; "he tried to keep his drinking a secret"
+68779,secret arcanum,information known only to a special group; "the secret of Cajun cooking"
+68780,secret_agent intelligence_officer intelligence_agent operative,a person secretly employed in espionage for a government
+68781,secret_ballot,a vote in which each person's choice is secret but the totaled votes are public
+68782,secret_police,a police force that operates in secrecy (usually against persons suspected of treason or sedition)
+68783,secret_society,a society that conceals its activities from nonmembers
+68784,secretarial_school,a school where secretarial skills (typing and shorthand and filing etc) are taught
+68785,secretariat secretariate,an administrative unit responsible for maintaining records and other secretarial duties; especially for international organizations
+68786,secretary,a person who is head of an administrative department of government
+68787,secretary secretarial_assistant,an assistant who handles correspondence and clerical work for a boss or an organization
+68788,secretary writing_table escritoire secretaire,a desk used for writing
+68789,secretary_bird Sagittarius_serpentarius,large long-legged African bird of prey that feeds on reptiles
+68790,secretaryship,the position of secretary
+68791,secretase,a set of enzymes believed to snip pieces off a longer protein producing fragments of amyloid protein that bunch up and create amyloid protein plaques in brain tissue (the pathological hallmark of Alzheimer's)
+68792,secretin,a gastrointestinal hormone that stimulates the secretion of water and bicarbonate from the pancreas and bile ducts whenever the stomach empties too much acid into the small intestine
+68793,secretion,a functionally specialized substance (especially one that is not a waste) released from a gland or cell
+68794,secretion secernment,the organic process of synthesizing and releasing some substance
+68795,secretory_phase luteal_phase,the second half of the menstrual cycle after ovulation; the corpus luteum secretes progesterone which prepares the endometrium for the implantation of an embryo; if fertilization does not occur then menstrual flow begins
+68796,sect religious_sect religious_order,a subdivision of a larger religious group
+68797,sectarian sectary sectarist,a member of a sect; "most sectarians are intolerant of the views of any other sect"
+68798,sectarianism denominationalism,a narrow-minded adherence to a particular sect or party or denomination; "he condemned religious sectarianism"
+68799,section,a land unit equal to 1 square mile
+68800,section,a very thin slice (of tissue or mineral or other substance) for examination under a microscope; "sections from the left ventricle showed diseased tissue"
+68801,section,a distinct region or subdivision of a territorial or political area or community or group of people; "no section of the nation is more ardent than the South"; "there are three synagogues in the Jewish section"
+68802,section,a division of an orchestra containing all instruments of the same class
+68803,section,a small army unit usually having a special function
+68804,section,a small team of policemen working as part of a police platoon
+68805,section,a segment of a citrus fruit; "he ate a section of the orange"
+68806,section discussion_section,a small class of students who are part of a larger course but are taught separately; "a graduate student taught sections for the professor's lecture course"
+68807,section plane_section,(geometry) the area created by a plane cutting through a solid
+68808,section segment,one of several parts or pieces that fit with others to constitute a whole object; "a section of a fishing rod"; "metal sections were used below ground"; "finished the final segment of the road"
+68809,section subdivision,a self-contained part of a larger composition (written or musical); "he always turns first to the business section"; "the history of this work is discussed in the next section"
+68810,section_gang,a work crew assigned to a section of a railroad
+68811,section_hand,a laborer assigned to a section gang
+68812,section_man,someone who teaches a section of a large college course
+68813,sectional,a piece of furniture made up of sections that can be arranged individually or together
+68814,sectionalism provincialism localism,a partiality for some particular place
+68815,sector,a plane figure bounded by two radii and the included arc of a circle
+68816,sector,the minimum track length that can be assigned to store information; unless otherwise specified a sector of data consists of 512 bytes
+68817,sector,a portion of a military position
+68818,sector,a social group that forms part of the society or the economy; "the public sector"
+68819,sector,measuring instrument consisting of two graduated arms hinged at one end
+68820,sector sphere,a particular aspect of life or activity; "he was helpless in an important sector of his life"
+68821,secularism,a doctrine that rejects religion and religious considerations
+68822,secularist,an advocate of secularism; someone who believes that religion should be excluded from government and education
+68823,secularization secularisation,the activity of changing something (art or education or society or morality etc.) so it is no longer under the control or influence of religion
+68824,secularization secularisation,transfer of property from ecclesiastical to civil possession
+68825,secundigravida gravida_II,a woman who is pregnant for the second time
+68826,secured_bond,a bond that is back by collateral
+68827,secureness,the state of freedom from fear or danger
+68828,securities_law,the body of laws governing the issuance and selling of securities
+68829,security,the state of being free from danger or injury; "we support the armed services in the name of national security"
+68830,security,freedom from anxiety or fear; "the watch dog gave her a feeling of security"
+68831,security certificate,a formal declaration that documents a fact of relevance to finance and investment; the holder has a right to receive interest or dividends; "he held several valuable securities"
+68832,security protection,defense against financial failure; financial independence; "his pension gave him security in his old age"; "insurance provided protection against loss of wages due to illness"
+68833,security security_department,a department responsible for the security of the institution's property and workers; "the head of security was a former policeman"
+68834,security security_measures,measures taken as a precaution against theft or espionage or sabotage etc.; "military security has been stepped up since the recent uprising"
+68835,security surety,property that your creditor can claim in case you default on your obligation; "bankers are reluctant to lend without good security"
+68836,security surety,a guarantee that an obligation will be met
+68837,security_blanket,anything that an adult person uses to reduce anxiety
+68838,security_blanket,a blanket (or toy) that a child carries around in order to reduce anxiety
+68839,security_consultant,an adviser about alarm systems to prevent burglaries
+68840,security_director,head of a private security force working for a business or industry
+68841,security_force private_security_force,a privately employed group hired to protect the security of a business or industry
+68842,security_intelligence,intelligence on the identity and capability and intentions of hostile individuals or organizations that may be engaged in espionage or sabotage or subversion or terrorism
+68843,security_interest,any interest in a property that secures the payment of an obligation
+68844,security_staff,those in an organization responsible for preventing spying or theft
+68845,security_system,(computing) a system that enforces boundaries between computer networks
+68846,security_system security_measure security,an electrical device that sets off an alarm when someone tries to break in
+68847,sedan saloon,a car that is closed and that has front and rear seats and two or four doors
+68848,sedan sedan_chair,a closed litter for one passenger
+68849,sedateness staidness solemnity solemness,a trait of dignified seriousness
+68850,sedation,a state of reduced excitement or anxiety that is induced by the administrative of a sedative agent
+68851,sedation drugging,the administration of a sedative agent or drug
+68852,sedative sedative_drug depressant downer,a drug that reduces excitability and calms a person
+68853,sedative-hypnotic sedative-hypnotic_drug,a sedative that depresses activity of the central nervous system and reduces anxiety and induces sleep
+68854,sedge,grasslike or rushlike plant growing in wet places having solid stems, narrow grasslike leaves and spikelets of inconspicuous flowers
+68855,sedge_warbler sedge_bird sedge_wren reedbird Acrocephalus_schoenobaenus,small European warbler that breeds among reeds and wedges and winters in Africa
+68856,sedge_wren short-billed_marsh_wren Cistothorus_platensis,small American wren inhabiting wet sedgy meadows
+68857,sediment deposit,matter that has been deposited by some natural process
+68858,sedimentary_clay,clay soil formed by sedimentary deposits
+68859,sedimentary_rock,rock formed from consolidated clay sediments
+68860,sedition,an illegal action inciting resistance to lawful authority and tending to cause the disruption or overthrow of the government
+68861,seducer,a bad person who entices others into error or wrongdoing
+68862,seducer ladies'_man lady_killer,a man who takes advantage of women
+68863,seduction,enticing someone astray from right behavior
+68864,seduction conquest,an act of winning the love or sexual favor of someone
+68865,seductress,a woman who seduces
+68866,sedulity sedulousness,the quality of being constantly diligent and attentive
+68867,sedum,any of various plants of the genus Sedum
+68868,see,the seat within a bishop's diocese where his cathedral is located
+68869,seed,a small hard fruit
+68870,seed,a mature fertilized plant ovule consisting of an embryo and its food source and having a protective coat or testa
+68871,seed_beetle seed_weevil,a small beetle that infests the seeds of legumes
+68872,seed_catalog seed_catalogue,a list advertising seeds and their prices
+68873,seed_corn seed_grain,good quality seeds (as kernels of corn) that are reserved for planting
+68874,seed_fern pteridosperm,an extinct seed-producing fernlike plant of the order Cycadofilicales (or group Pteridospermae)
+68875,seed_lac,granular material obtained from stick lac by crushing and washing
+68876,seed_money,capital needed to set up a new business or enterprise
+68877,seed_oyster,a young oyster especially of a size for transplantation
+68878,seed_pearl,a small imperfect pearl
+68879,seed_shrimp mussel_shrimp ostracod,tiny marine and freshwater crustaceans with a shrimp-like body enclosed in a bivalve shell
+68880,seed_stock,a supply of seeds (or tubers) reserved for planting
+68881,seedbed,a bed where seedlings are grown before transplanting
+68882,seedcake seed_cake,a sweet cake flavored with sesame or caraway seeds and lemon
+68883,seeded_player seed,one of the outstanding players in a tournament
+68884,seeded_raisin,seeded grape that has been dried
+68885,seeder,a mechanical device that sows grass seed or grain evenly over the ground
+68886,seeder,a kitchen utensil that removes seeds from fruit
+68887,seeder cloud_seeder,a person who seeds clouds
+68888,seedless_raisin sultana,dried seedless grape
+68889,seedling,young plant or tree grown from a seed
+68890,seedsman seedman,a dealer in seeds
+68891,seedtime,any time of new development
+68892,seedtime,the time during which seeds should be planted
+68893,seek,the movement of a read/write head to a specific data track on a disk
+68894,seek_time,(computer science) the time it takes for a read/write head to move to a specific data track
+68895,seeker,a missile equipped with a device that is attracted toward some kind of emission (heat or light or sound or radio waves)
+68896,seeker searcher quester,someone making a search or inquiry; "they are seekers after truth"
+68897,seeking,an attempt to acquire or gain something
+68898,seemliness grace,a sense of propriety and consideration for others; "a place where the company of others must be accepted with good grace"
+68899,seepage ooze oozing,the process of seeping
+68900,seer,an observer who perceives visually; "an incurable seer of movies"
+68901,seersucker,a light puckered fabric (usually striped)
+68902,seesaw teeter teeter-totter teetertotter teeterboard tilting_board dandle_board,a plaything consisting of a board balanced on a fulcrum; the board is ridden up and down by children at either end
+68903,segment,one of the parts into which something naturally divides; "a segment of an orange"
+68904,segmental_arch,a shallow arch; an arch that is less than a semicircle
+68905,segno,(music) a notation written at the beginning or end of a passage that is to be repeated
+68906,sego_lily Calochortus_nuttallii,perennial plant having clusters of one to four showy white bell-shaped flowers atop erect unbranched stems; edible bulbs useful in times of scarcity; eastern Montana and western North Dakota south to northern Arizona and northwestern New Mexico
+68907,segregate,someone who is or has been segregated
+68908,segregation,(genetics) the separation of paired alleles during meiosis so that members of each pair of alleles appear in different gametes
+68909,segregation separatism,a social system that provides separate facilities for minority groups
+68910,segregation sequestration,the act of segregating or sequestering; "sequestration of the jury"
+68911,segregationism,a political orientation favoring political or racial segregation
+68912,segregator segregationist,someone who believes the racial groups should be kept apart
+68913,segue,the act of changing smoothly from one state or situation to another
+68914,sei_whale Balaenoptera_borealis,similar to but smaller than the finback whale
+68915,seiche,a wave on the surface of a lake or landlocked bay; caused by atmospheric or seismic disturbances
+68916,seidel,a glass for beer
+68917,seif_dune,a long and tall sand dune with a sharp crest; common in the Sahara
+68918,seigneury seigniory signory,the estate of a seigneur
+68919,seigniorage,charged by a government for coining bullion
+68920,seigniory seigneury feudal_lordship,the position and authority of a feudal lord
+68921,seine,a large fishnet that hangs vertically, with floats at the top and weights at the bottom
+68922,seismogram,the graphical record of an earth tremor made by using a seismograph
+68923,seismograph,a measuring instrument for detecting and measuring the intensity and direction and duration of movements of the ground (as an earthquake)
+68924,seismography,the measurement of tremors and shocks and undulatory movements of earthquakes
+68925,seismologist,a geophysicist who studies earthquakes and the mechanical characteristics of the Earth
+68926,seismology,the branch of geology that studies earthquakes
+68927,seizing,small stuff that is used for lashing two or more ropes together
+68928,seizure,the taking possession of something by legal process
+68929,seizure ictus raptus,a sudden occurrence (or recurrence) of a disease; "he suffered an epileptic seizure"
+68930,seizure-alert_dog,a dog that can alert or assist people with seizure disorders
+68931,select_committee,a parliamentary committee appointed for some special purpose
+68932,selection,an assortment of things from which a choice can be made; "the store carried a large selection of shoes"
+68933,selective-serotonin_reuptake_inhibitor SSRI,an antidepressant drug that acts by blocking the reuptake of serotonin so that more serotonin is available to act on receptors in the brain
+68934,selective_amnesia,amnesia about particular events that is very convenient for the person who cannot remember; "why do politicians always develop selective amnesia when questioned about their transgressions?"
+68935,selectivity,the property of being selective
+68936,selectman,an elected member of a board of officials who run New England towns
+68937,selector selector_switch,a switch that is used to select among alternatives
+68938,selectwoman,an elected member of a board of officials who run New England towns
+68939,selenic_acid,a strong acid (H2SeO4) analogous to sulfuric acid
+68940,selenium Se atomic_number_34,a toxic nonmetallic element related to sulfur and tellurium; occurs in several allotropic forms; a stable grey metallike allotrope conducts electricity better in the light than in the dark and is used in photocells; occurs in sulfide ores (as pyrite)
+68941,selenium_cell,a photoelectric cell that uses a strip of selenium
+68942,selenology,the branch of astronomy that deals with the moon
+68943,self,a person considered as a unique individual; "one's own self"
+68944,self ego,your consciousness of your own identity
+68945,self-absorption,preoccupation with yourself to the exclusion of everything else
+68946,self-accusation self-condemnation,an admission that you have failed to do or be something you know you should do or be
+68947,self-adapting_program,a program that can change its performance in response to its environment
+68948,self-aggrandizement self-aggrandisement ego_trip,an act undertaken to increase your own power and influence or to draw attention to your own importance
+68949,self-analysis,the application of psychotherapeutic principles to the analysis of your own personality
+68950,self-assertion,the act of putting forth your own opinions in a boastful or inconsiderate manner that implies you feel superior to others
+68951,self-assertion,the act of asserting yourself in an aggressive manner
+68952,self-awareness,awareness of your own individuality
+68953,self-consciousness,self-awareness plus the additional realization that others are similarly aware of you
+68954,self-consciousness uneasiness uncomfortableness,embarrassment deriving from the feeling that others are critically aware of you
+68955,self-contradiction,contradicting yourself
+68956,self-control self-possession possession willpower will_power self-command self-will,the trait of resolutely controlling your own behavior
+68957,self-criticism,criticism of yourself
+68958,self-deception self-deceit,a misconception that is favorable to the person who holds it
+68959,self-defense self-defence self-protection,the act of defending yourself
+68960,self-denial self-discipline self-control,the act of denying yourself; controlling your impulses
+68961,self-depreciation,a feeling of being of little worth
+68962,self-destruction,the act of destroying yourself; "his insistence was pure self-destruction"
+68963,self-determination,determination of one's own fate or course of action without compulsion
+68964,self-discipline self-denial,the trait of practicing self discipline
+68965,self-discovery,discovering your own individuality
+68966,self-disgust self-hatred,shame resulting from strong dislike of yourself or your actions
+68967,self-education self-cultivation,the process of educating yourself
+68968,self-esteem self-pride,a feeling of pride in yourself
+68969,self-expression,the expression of one's individuality (usually through creative activities)
+68970,self-feeder feeder,a machine that automatically provides a supply of some material; "the feeder discharged feed into a trough for the livestock"
+68971,self-fertilization self-fertilisation,fertilization by the union of male and female gametes from the same individual
+68972,self-flagellation,self-punishment inflicted by whipping
+68973,self-fulfillment self-realization self-realisation,the fulfillment of your capacities
+68974,self-government self-determination self-rule,government of a political unit by its own people
+68975,self-gratification head_trip,the act of satisfying your own desires and giving yourself pleasure
+68976,self-heal heal_all Prunella_vulgaris,decumbent blue-flowered European perennial thought to possess healing properties; naturalized throughout North America
+68977,self-help,the act of helping or improving yourself without relying on anyone else
+68978,self-hypnosis,hypnosis induced by yourself
+68979,self-improvement self-reformation,the act of improving yourself
+68980,self-incrimination,an accusation that incriminates yourself
+68981,self-induction,generation of an electromotive force (EMF) in a circuit by changing the current in that circuit; usually measured in henries
+68982,self-insurance,insuring yourself by setting aside money to cover possible losses rather than by purchasing an insurance policy
+68983,self-knowledge,an understanding of yourself and your goals and abilities
+68984,self-love narcism narcissism,an exceptional interest in and admiration for yourself; "self-love that shut out everyone else"
+68985,self-organization self-organisation,organizing yourself (especially organizing your own labor union)
+68986,self-pity,a feeling of sorrow (often self-indulgent) over your own sufferings
+68987,self-pollination,fertilization by transfer of pollen from the anthers to the stigma of the same flower
+68988,self-portrait,a portrait of yourself created by yourself
+68989,self-preservation,preservation of yourself from harm; a natural or instinctive tendency
+68990,self-propelled_vehicle,a wheeled vehicle that carries in itself a means of propulsion
+68991,self-punishment,punishment inflicted on yourself
+68992,self-registering_thermometer,a thermometer that records the temperature automatically
+68993,self-renewal,the act of renewing yourself (or itself)
+68994,self-report_personality_inventory self-report_inventory,a personality inventory in which a person is asked which of a list of traits and characteristics describe her or him or to indicate which behaviors and hypothetical choices he or she would make
+68995,self-reproach self-reproof,the act of blaming yourself
+68996,self-restraint temperateness,exhibiting restraint imposed on the self; "an effective temperateness in debate"
+68997,self-rising_flour self-raising_flour,a commercially prepared mixture of flour and salt and a leavening agent
+68998,self-service,the practice of serving yourself (as in a grocery or cafeteria)
+68999,self-starter,an energetic person with unusual initiative
+69000,self-starter,an electric starting motor that automatically starts an internal-combustion engine
+69001,self-stimulation self-abuse,manual stimulation of your own genital organ for sexual pleasure
+69002,self-torture self-torment,self-imposed distress
+69003,self_acceptance,an acceptance of yourself as you are, warts and all
+69004,selfish_person,a person who is unusually selfish
+69005,selfishness,stinginess resulting from a concern for your own welfare and a disregard of others
+69006,selflessness self-sacrifice,acting with less concern for yourself than for the success of the joint activity
+69007,selfsameness,the quality of being identical with itself
+69008,sell,the activity of persuading someone to buy; "it was a hard sell"
+69009,sell-by_date,a date stamped on perishable produce indicating the date by which it should be sold
+69010,seller marketer vender vendor trafficker,someone who promotes or exchanges goods or services for money
+69011,seller's_market sellers'_market,a market in which more people want to buy than want to sell
+69012,selling merchandising marketing,the exchange of goods for an agreed sum of money
+69013,selling_agent,someone who sells goods (on commission) for others
+69014,selling_point,a characteristic of something that is up for sale that makes it attractive to potential customers
+69015,selling_race,a horse race in which the winning horse must be put up for auction
+69016,selloff,a sale of a relatively large number of assets (stocks or bonds or commodities) at a low price typically done to dispose of them rather than as normal trade
+69017,sellout,someone who has sold out
+69018,sellout,an event for which all tickets are sold; "get your tickets for the concert early, it is sure to be a sellout"
+69019,sellout,the selling of an entire stock of something; "the latest Xbox game is so popular, shops are warning of a probable sellout before Christmas"
+69020,sellout,a betrayal of one's principles principles, country, cause, etc.
+69021,selsyn synchro,a system consisting of a generator and a motor so connected that the motor will assume the same relative position as the generator; the generator and the motor are synchronized
+69022,seltzer,naturally effervescent mineral water
+69023,selvage selvedge,border consisting of an ornamental fringe at either end of an oriental carpet
+69024,selvage selvedge,the edge of a fabric that is woven so that it will not ravel or fray
+69025,semantic_error run-time_error runtime_error,an error in logic or arithmetic that must be detected at run time
+69026,semantic_memory,your memory for meanings and general (impersonal) facts
+69027,semantic_relation,a relation between meanings
+69028,semantic_role participant_role,(linguistics) the underlying relation that a constituent has with the main verb in a clause
+69029,semanticist semiotician,a specialist in the study of meaning
+69030,semantics,the study of language meaning
+69031,semantics,the meaning of a word, phrase, sentence, or text; "a petty argument about semantics"
+69032,semaphore,an apparatus for visual signaling with lights or mechanically moving arms
+69033,semblance gloss color colour,an outward or token appearance or form that is deliberately misleading; "he hoped his claims would have a semblance of authenticity"; "he tried to give his falsehood the gloss of moral sanction"; "the situation soon took on a different color"
+69034,semen seed seminal_fluid ejaculate cum come,the thick white fluid containing spermatozoa that is ejaculated by the male genital tract
+69035,semester,one of two divisions of an academic year
+69036,semester,half a year; a period of 6 months
+69037,semester_hour credit_hour,a unit of academic credit; one hour a week for an academic semester
+69038,semi-abstraction,a semiabstract painting
+69039,semi-climber,a plant that tends to climb and on occasion can grow like a vine
+69040,semi-detached_house,a dwelling that is attached to something on only one side
+69041,semi-skimmed_milk,milk from which some of the cream has been removed
+69042,semiautomatic_firearm,an autoloader that fires only one shot at each pull of the trigger
+69043,semiautomatic_pistol semiautomatic,a pistol that is a semiautomatic firearm capable of loading and firing continuously
+69044,semicentennial semicentenary,the 50th anniversary (or the celebration of it)
+69045,semicircle hemicycle,a plane figure with the shape of half a circle
+69046,semicircular_canal,one of three tube loops filled with fluid and in planes nearly at right angles with one another; concerned with equilibrium
+69047,semicolon,a punctuation mark (`;') used to connect independent clauses; indicates a closer relation than does a period
+69048,semicoma,a mild comatose state; a coma from which the person can be roused by appropriate stimuli
+69049,semiconductor semiconducting_material,a substance as germanium or silicon whose electrical conductivity is intermediate between that of a metal and an insulator; its conductivity increases with temperature and in the presence of impurities
+69050,semiconductor_device semiconductor_unit semiconductor,a conductor made with semiconducting material
+69051,semidarkness,partial darkness
+69052,semidesert,a region much like a desert but usually located between a desert and the surrounding regions
+69053,semidiameter,the apparent radius of a celestial body when viewed as a disc from the earth
+69054,semifinal semi,one of the two competitions in the next to the last round of an elimination tournament
+69055,semifinalist,one of four competitors remaining in a tournament by elimination
+69056,semifluidity,a property midway between a solid and a liquid
+69057,semigloss,a paint that dries with a finish between glossy and flat
+69058,semilunar_valve,a heart valve with cusps shaped like half-moons; prevents blood from flowing back into the heart
+69059,semimajor_axis,one-half the major axis of an ellipse; the distance from the center of an ellipse to one end
+69060,semiminor_axis,one-half the minor axis of an ellipse
+69061,semimonthly,a periodical that is published twice each month (or 24 issues per year)
+69062,seminal_duct,the efferent duct of the testis in man
+69063,seminal_vesicle,either of a pair of glands located on either side of the male urinary bladder that open into the vas deferens and that secrete many components of semen during ejaculation
+69064,seminar,any meeting for an exchange of ideas
+69065,seminar,a course offered for a small group of advanced students
+69066,seminarian seminarist,a student at a seminary (especially a Roman Catholic seminary)
+69067,seminary,a theological school for training ministers or priests or rabbis
+69068,seminary,a private place of education for the young
+69069,seminiferous_tubule,any of the numerous long convoluted tubules in the testis which are the sites where spermatozoa mature
+69070,seminoma testicular_cancer,malignant tumor of the testis; usually occurring in older men
+69071,semiotics semiology,(philosophy) a philosophical theory of the functions of signs and symbols
+69072,semipermeable_membrane,a membrane (as a cell membrane) that allows some molecules to pass through but not others
+69073,semiprofessional semipro,an athlete who plays for pay on a part-time basis
+69074,semitone half_step,the musical interval between adjacent keys on a keyboard instrument
+69075,semitrailer semi,a trailer having wheels only in the rear; the front is supported by the towing vehicle
+69076,semitrance,a trancelike state in which the person can follow instructions but voluntary action is weak or absent
+69077,semivowel glide,a vowellike sound that serves as a consonant
+69078,semiweekly,a periodical that is published twice each week (or 104 issues per year)
+69079,semolina,milled product of durum wheat (or other hard wheat) used in pasta
+69080,sen,a fractional monetary unit of Japan and Indonesia and Cambodia; equal to one hundredth of a yen or rupiah or riel
+69081,senate,assembly possessing high legislative powers
+69082,senate_campaign senate_race,a race for election to the senate
+69083,senator,a member of a senate
+69084,senatorship,the office of senator
+69085,sendee,the intended recipient of a message
+69086,sender transmitter,someone who transmits a message; "return to sender"
+69087,sending,the act of causing something to go (especially messages)
+69088,sene,100 sene equal 1 tala in Western Samoa
+69089,senega,dried root of two plants of the genus Polygala containing an irritating saponin
+69090,senega Polygala_alba,perennial bushy herb of central and southern United States having white flowers with green centers and often purple crest; similar to Seneca snakeroot
+69091,senile_dementia senile_psychosis,dementia of the aged; results from degeneration of the brain in the absence of cerebrovascular disease
+69092,senility,the state of being senile
+69093,senior,an undergraduate student during the year preceding graduation
+69094,senior_chief_petty_officer SCPO,a senior noncommissioned officer in the Navy or Coast Guard with a rank comparable to master sergeant in the Army
+69095,senior_class,final grade or class in high school or college
+69096,senior_high_school senior_high high highschool high_school,a public secondary school usually including grades 9 through 12; "he goes to the neighborhood highschool"
+69097,senior_master_sergeant SMSgt,a senior noncommissioned officer in the Air Force with a rank comparable to master sergeant in the Army
+69098,senior_moment,a momentary lapse of memory (especially in older people)
+69099,senior_vice_president,the ranking vice president in a firm that has more than one
+69100,seniority senior_status higher_status higher_rank,higher rank than that of others especially by reason of longer service
+69101,seniti,100 seniti equal 1 pa'anga in Tonga
+69102,senna,any of various plants of the genus Senna having pinnately compound leaves and showy usually yellow flowers; many are used medicinally
+69103,sennit,flat braided cordage that is used on ships
+69104,sensation,a state of widespread public excitement and interest; "the news caused a sensation"
+69105,sensation,a general feeling of excitement and heightened interest; "anticipation produced in me a sensation somewhere between hope and fear"
+69106,sensation esthesis aesthesis sense_experience sense_impression sense_datum,an unelaborated elementary awareness of stimulation; "a sensation of touch"
+69107,sensationalism,subject matter that is calculated to excite and please vulgar tastes
+69108,sensationalism luridness,the journalistic use of subject matter that appeals to vulgar tastes; "the tabloids relied on sensationalism to maintain their circulation"
+69109,sensationalist ballyhoo_artist,someone who uses exaggerated or lurid material in order to gain public attention
+69110,sense,a natural appreciation or ability; "a keen musical sense"; "a good sense of timing"
+69111,sense,a general conscious awareness; "a sense of security"; "a sense of happiness"; "a sense of danger"; "a sense of self"
+69112,sense sensation sentience sentiency sensory_faculty,the faculty through which the external world is apprehended; "in the dark he had to depend on touch and on his senses of smell and hearing"
+69113,sense signified,the meaning of a word or expression; the way in which a word or expression or situation can be interpreted; "the dictionary gave several senses for the word"; "in the best sense charity is really a duty"; "the signifier is linked to the signified"
+69114,sense_of_direction,an awareness of your orientation in space
+69115,sense_of_responsibility,an awareness of your obligations
+69116,sense_of_shame sense_of_duty,a motivating awareness of ethical responsibility
+69117,sense_of_the_meeting,general agreement reached by an assembled group; "no vote was taken, but after each discussion the chair summed up the sense of the meeting"
+69118,sense_organ sensory_receptor receptor,an organ having nerve endings (in the skin or viscera or eye or ear or nose or mouth) that respond to stimulation
+69119,sense_tagger,a tagging program whose labels indicate the meanings of words or expressions
+69120,sensibility,refined sensitivity to pleasurable or painful impressions; "cruelty offended his sensibility"
+69121,sensibility esthesia aesthesia,mental responsiveness and awareness
+69122,sensibleness,the quality of showing good sense or practical judgment
+69123,sensing perception,becoming aware of something via the senses
+69124,sensitive_fern bead_fern Onoclea_sensibilis,beautiful spreading fern of eastern North America and eastern Asia naturalized in western Europe; pinnately divided fronds show a slight tendency to fold when touched; pinnules enclose groups of sori in beadlike lobes
+69125,sensitive_plant Mimosa_sensitiva,semi-climbing prickly evergreen shrub of tropical America having compound leaves sensitive to light and touch
+69126,sensitive_plant touch-me-not shame_plant live-and-die humble_plant action_plant Mimosa_pudica,prostrate or semi-erect subshrub of tropical America, and Australia; heavily armed with recurved thorns and having sensitive soft grey-green leaflets that fold and droop at night or when touched or cooled
+69127,sensitivity predisposition,susceptibility to a pathogen
+69128,sensitivity sensitiveness,sensitivity to emotional feelings (of self and others)
+69129,sensitivity sensitiveness,the ability to respond to physical stimuli or to register small physical amounts or differences; "a galvanometer of extreme sensitivity"; "the sensitiveness of Mimosa leaves does not depend on a change of growth"
+69130,sensitivity sensitiveness,the ability to respond to affective changes in your interpersonal environment
+69131,sensitivity sensitiveness sensibility,(physiology) responsiveness to external stimuli; the faculty of sensation; "sensitivity to pain"
+69132,sensitization sensitisation,the state of being sensitive (as to an antigen)
+69133,sensitization sensitisation,(psychology) the process of becoming highly sensitive to specific events or situations (especially emotional events or situations)
+69134,sensitizer sensitiser,(chemistry) a substance other than a catalyst that facilitates the start of a catalytic reaction
+69135,sensitizing sensitising sensitization sensitisation,rendering an organism sensitive to a serum by a series of injections
+69136,sensitometer,a measuring instrument for measuring the light sensitivity of film over a range of exposures
+69137,sensorimotor_area sensorimotor_region,an area of the cortex including the precentral gyrus and the postcentral gyrus and combining sensory and motor functions
+69138,sensorineural_hearing_loss nerve_deafness,hearing loss due to failure of the auditory nerve
+69139,sensorium,the areas of the brain that process and register incoming sensory information and make possible the conscious awareness of the world
+69140,sensory_activity,activity intended to achieve a particular sensory result
+69141,sensory_deprivation,a form of psychological torture inflicted by depriving the victim of all sensory input
+69142,sensory_epilepsy,focal epilepsy initiated by somatosensory phenomena
+69143,sensory_fiber afferent_fiber,a nerve fiber that carries impulses toward the central nervous system
+69144,sensory_nerve afferent_nerve afferent,a nerve that passes impulses from receptors toward or to the central nervous system
+69145,sensory_neuron afferent_neuron,a neuron conducting impulses inwards to the brain or spinal cord
+69146,sensory_system,the body's system of sense organs
+69147,sensualism sensationalism,(philosophy) the ethical doctrine that feeling is the only criterion for what is good
+69148,sensualist,a person who enjoys sensuality
+69149,sensuality sensualness sensualism,desire for sensual pleasures
+69150,sensuousness,a sensuous feeling
+69151,sent,100 senti equal 1 kroon in Estonia
+69152,sente,100 lisente equal 1 loti in Lesotho; one sente is worth one-hundredth of a loti
+69153,sentence,a string of words satisfying the grammatical rules of a language; "he always spoke in grammatical sentences"
+69154,sentence_stress,the distribution of stresses within a sentence
+69155,sentential_function,formal expression containing variables; becomes a sentence when variables are replaced by constants
+69156,sentience,the readiness to perceive sensations; elementary or undifferentiated consciousness; "gave sentience to slugs and newts"- Richard Eberhart
+69157,sentiment,tender, romantic, or nostalgic feeling or emotion
+69158,sentimentalism,the excessive expression of tender feelings, nostalgia, or sadness in any form
+69159,sentimentalism,a predilection for sentimentality
+69160,sentimentalist romanticist,someone who indulges in excessive sentimentality
+69161,sentimentality,extravagant or affected feeling or emotion
+69162,sentimentalization sentimentalisation romanticization romanticisation,the act of indulging in sentiment
+69163,sentry_box,a small shelter with an open front to protect a sentry from the weather
+69164,sepal,one of the green parts that form the calyx of a flower
+69165,separability,the capability of being separated
+69166,separate,a garment that can be purchased separately and worn in combinations with other garments
+69167,separateness,political independence; "seeking complete political separateness for Taiwan"
+69168,separation,the state of lacking unity
+69169,separation,the space where a division or parting occurs; "he hid in the separation between walls"
+69170,separation,the termination of employment (by resignation or dismissal)
+69171,separation,sorting one thing from others; "the separation of wheat from chaff"; "the separation of mail by postal zones"
+69172,separation,the social act of separating or parting company; "the separation of church and state"
+69173,separation,the act of dividing or disconnecting
+69174,separation breakup detachment,coming apart
+69175,separationism separatism,advocacy of a policy of strict separation of church and state
+69176,separatism,a disposition toward schism and secession from a larger group; the principles and practices of separatists; "separatism is a serious problem in Quebec"; "demands for some form of separatism on grounds of religion have been perceived as a threat to mainstream education"
+69177,separatist separationist,an advocate of secession or separation from a larger group (such as an established church or a national union)
+69178,sepia,rich brown pigment prepared from the ink of cuttlefishes
+69179,sepsis,the presence of pus-forming bacteria or their toxins in the blood or tissues
+69180,septal_defect,a congenital abnormality in the septum between the left and right sides of the heart
+69181,septation,the division or partitioning of a cavity into parts by a septum
+69182,septectomy,surgical removal of all or part of a septum (especially the nasal septum or atrial septum)
+69183,septet septette,seven performers or singers who perform together
+69184,septet septette,a set of seven similar things considered as a unit
+69185,septet septette,a musical composition written for seven performers
+69186,septet septette sevensome,seven people considered as a unit
+69187,septic_tank,large tank where solid matter or sewage is disintegrated by bacteria
+69188,septicemic_plague,an especially dangerous and generally fatal form of the plague in which infecting organisms invade the bloodstream; does not spread from person to person
+69189,septillion,the number that is represented as a one followed by 24 zeros
+69190,septuagenarian,someone whose age is in the seventies
+69191,septum,a partition or wall especially in an ovary
+69192,septum,(anatomy) a dividing partition between two tissues or cavities
+69193,sequel continuation,a part added to a book or play that continues and extends it
+69194,sequel subsequence,something that follows something else
+69195,sequela,any abnormality following or resulting from a disease or injury or treatment; "paralysis is one of the sequelae of poliomyelitis"
+69196,sequella,a secondary consequence
+69197,sequence,serial arrangement in which things follow in logical order or a recurrent pattern; "the sequence of names was alphabetical"; "he invented a technique to determine the sequence of base pairs in DNA"
+69198,sequence,several repetitions of a melodic phrase in different keys
+69199,sequence chronological_sequence succession successiveness chronological_succession,a following of one thing after another in time; "the doctor saw a sequence of patients"
+69200,sequence episode,film consisting of a succession of related shots that develop a given subject in a movie
+69201,sequencer,computer hardware that sorts data or programs into a predetermined sequence
+69202,sequencer sequenator,(chemistry) an apparatus that can determine the sequence of monomers in a polymer
+69203,sequestration,the action of forming a chelate or other stable compound with an ion or atom or molecule so that it is no longer available for reactions
+69204,sequestration,a writ that authorizes the seizure of property
+69205,sequestration requisition,seizing property that belongs to someone else and holding it until profits pay the demand for which it was seized
+69206,sequin spangle diamante,adornment consisting of a small piece of shiny material used to decorate clothing
+69207,sequoia redwood,either of two huge coniferous California trees that reach a height of 300 feet; sometimes placed in the Taxodiaceae
+69208,serape sarape,a long brightly colored shawl; worn mainly by Mexican men
+69209,seraph,an angel of the first order; usually portrayed as the winged head of a child
+69210,serenade,a song characteristically played outside the house of a woman
+69211,serendipity,good luck in making unexpected and fortunate discoveries
+69212,sereness,a withered dryness
+69213,serf helot villein,(Middle Ages) a person who is bound to the land and owned by the feudal lord
+69214,serfdom serfhood vassalage,the state of a serf
+69215,serge,a twilled woolen fabric
+69216,sergeant,any of several noncommissioned officer ranks in the Army or Air Force or Marines ranking above a corporal
+69217,sergeant_at_arms serjeant-at-arms,an officer (as of a legislature or court) who maintains order and executes commands
+69218,sergeant_major Abudefduf_saxatilis,large blue-grey black-striped damselfish; nearly worldwide
+69219,sergeant_major command_sergeant_major,a noncommissioned officer serving as chief administrative officer of a headquarters unit of the Army
+69220,serger,a sewing machine that overcasts the raw edges of a fabric with a V-shaped stitch
+69221,serial series,a serialized set of programs; "a comedy series"; "the Masterworks concert series"
+69222,serial_killer serial_murderer,someone who murders more than three victims one at a time in a relatively short interval
+69223,serial_monogamy,a succession of short monogamous relationships (as by someone who undergoes multiple divorces)
+69224,serial_operation sequential_operation consecutive_operation,the sequential execution of operations one after another
+69225,serial_port,an interface (commonly used for modems and mice and some printers) that transmits data a bit at a time
+69226,serial_processing,sequential processing by two or more processing units
+69227,serialism serial_music,20th century music that uses a definite order of notes as a thematic basis for a musical composition
+69228,serialization serialisation,publication in serial form
+69229,sericea_lespedeza Lespedeza_sericea Lespedeza_cuneata,perennial widely planted as for forage and as hay crop especially on poor land
+69230,sericulture,raising silkworms in order to obtain raw silk
+69231,sericulture,the production of raw silk by raising silkworms
+69232,sericulturist,a producer of raw silk
+69233,series,(electronics) connection of components in such a manner that current flows first through one and then through the other; "the voltage divider consisted of a series of fixed resistors"
+69234,series,a group of postage stamps having a common theme or a group of coins or currency selected as a group for study or collection; "the Post Office issued a series commemorating famous American entertainers"; "his coin collection included the complete series of Indian-head pennies"
+69235,series,similar things placed in order or happening one after another; "they were investigating a series of bank robberies"
+69236,series,(sports) several contests played successively by the same teams; "the visiting team swept the series"
+69237,series,(mathematics) the sum of a finite or infinite sequence of expressions
+69238,series serial serial_publication,a periodical that appears at scheduled times
+69239,series_circuit,a circuit having its parts connected serially
+69240,serif seriph,a short line at the end of the main strokes of a character
+69241,serigraphy,the act of making a print by the silkscreen method
+69242,serin,any of various brown and yellow finches of parts of Europe
+69243,serine,a sweetish crystalline amino acid involved in the synthesis by the body of cysteine
+69244,seriocomedy tragicomedy,a comedy with serious elements or overtones
+69245,seriousness distressfulness,the quality of arousing fear or distress; "he learned the seriousness of his illness"
+69246,seriousness earnestness serious-mindedness sincerity,the trait of being serious; "a lack of solemnity is not necessarily a lack of seriousness"- Robert Rice
+69247,serjeant-at-law serjeant sergeant-at-law sergeant,an English barrister of the highest rank
+69248,sermon discourse preaching,an address of a religious nature (usually delivered during a church service)
+69249,sermon preaching,a moralistic rebuke; "your preaching is wasted on him"
+69250,serologist,a medical scientist who specializes in serology
+69251,serology,the branch of medical science that deals with serums; especially with blood serums and disease
+69252,serotine European_brown_bat Eptesicus_serotinus,common brown bat of Europe
+69253,serotonin 5-hydroxytryptamine,a neurotransmitter involved in e.g. sleep and depression and memory
+69254,serous_membrane serosa,a thin membrane lining the closed cavities of the body; has two layers with a space between that is filled with serous fluid
+69255,serow,short-horned dark-coated goat antelope of mountain areas of southern and southeastern Asia
+69256,serpent,a firework that moves in serpentine manner when ignited
+69257,serpent,an obsolete bass cornet; resembles a snake
+69258,serranid_fish serranid,marine food sport fishes mainly of warm coastal waters
+69259,serrate_leaf,a leaf having a margin notched like a saw with teeth pointing toward the apex
+69260,serrated_wrack Fucus_serratus tang,brown algae seaweed with serrated edges
+69261,serration,the condition of being serrated; "the serrations of a city skyline"
+69262,serration,a row of notches; "the pliers had serrations to improve the grip"
+69263,serration,a single notch in a row of notches; "one of the serrations was broken off"
+69264,serratus serratus_muscles,any of several muscles of the trunk
+69265,serratus_posterior_inferior,a thin quadrilateral muscle at the junction of the thoracic and lumbar regions; acts to counteract the pull of the diaphragm on the ribs to which it is attached
+69266,serratus_posterior_superior,a thin quadrilateral muscle of the upper and dorsal part of the thorax; acts to elevate the upper ribs
+69267,sertraline Zoloft,a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade name Zoloft)
+69268,sertularian,feathery colony of long-branched stems bearing stalkless paired polyps
+69269,serum blood_serum,an amber, watery fluid, rich in proteins, that separates out when blood coagulates
+69270,serum_albumin,albumin occurring in blood serum; serves to maintain the somatic pressure of the blood
+69271,serum_globulin,globulins occurring in blood serum and containing most of the antibodies of the blood
+69272,serum_sickness serum_disease,a delayed allergic reaction to the injection of an antiserum caused by an antibody reaction to an antigen in the donor serum
+69273,serval Felis_serval,slender long-legged African wildcat having large untufted ears and tawny black-spotted coat
+69274,servant retainer,a person working in the service of another (especially in the household)
+69275,servant_girl serving_girl,a girl who is a servant
+69276,serve service,(sports) a stroke that puts the ball in play; "his powerful serves won the game"
+69277,server,(court games) the player who serves to start a point
+69278,server,utensil used in serving food or drink
+69279,server host,(computer science) a computer that provides client stations with access to files and printers as shared resources to a computer network
+69280,service,a company or agency that performs a public service; subject to government regulation
+69281,service,an act of help or assistance; "he did them a service"
+69282,service,employment in or work for another; "he retired after 30 years of service"
+69283,service,(law) the acts performed by an English feudal tenant for the benefit of his lord which formed the consideration for the property granted to him
+69284,service,work done by one person or group that benefits another; "budget separately for goods and services"
+69285,service,the performance of duties by a waiter or servant; "that restaurant has excellent service"
+69286,service religious_service divine_service,the act of public worship following prescribed rules; "the Sunday service"
+69287,service serving service_of_process,the act of delivering a writ or summons upon someone; "he accepted service of the subpoena"
+69288,service table_service,tableware consisting of a complete set of articles (silver or dishware) for use at table
+69289,service_agency service_bureau service_firm,a business that makes its facilities available to others for a fee; achieves economy of scale
+69290,service_area,place on a highway providing garage services and eating and toilet facilities
+69291,service_book,a book setting forth the forms of church service
+69292,service_break,a tennis game won on the opponent's service
+69293,service_call,a trip made by a repairman to visit the location of something in need of service
+69294,service_charge service_fee,a percentage of a bill (as at a hotel or restaurant) added in payment for service
+69295,service_club,a club of professional or business people organized for their coordination and active in public services
+69296,service_club,a recreational center for servicemen
+69297,service_contract,a contract for maintenance services
+69298,service_cutback,the act of reducing service
+69299,service_department,the division of a business that provides customer services
+69300,service_door service_entrance servant's_entrance,an entrance intended for the use of servants or for delivery of goods and removal of refuse
+69301,service_industry,an industry that provides services rather than tangible objects
+69302,service_line baseline,the back line bounding each end of a tennis or handball court; when serving the server must not step over this line
+69303,service_staff maintenance_staff,those in a business responsible for maintaining the physical plant
+69304,service_station,a station where gasoline and oil are sold and facilities are available for repairing or maintaining automobiles
+69305,service_stripe hashmark hash_mark,an insignia worn to indicate years of service
+69306,service_tree sorb_apple sorb_apple_tree Sorbus_domestica,medium-sized European tree resembling the rowan but bearing edible fruit
+69307,serviceability serviceableness usableness useableness usability,the quality of being able to provide good service
+69308,serviceman military_man man military_personnel,someone who serves in the armed forces; a member of a military force; "two men stood sentry duty"
+69309,services,performance of duties or provision of space and equipment helpful to others; "the mayor tried to maintain city services"; "the medical services are excellent"
+69310,servicing service,the act of mating by male animals; "the bull was worth good money in servicing fees"
+69311,serving_cart,a handcart for serving food
+69312,serving_dish,a dish used for serving food
+69313,servitor,someone who performs the duties of an attendant for someone else
+69314,servitude,state of subjection to an owner or master or forced labor imposed as punishment; "penal servitude"
+69315,servo servomechanism servosystem,control system that converts a small mechanical motion into one requiring much greater power; may include a negative feedback system
+69316,sesame benne benni benny Sesamum_indicum,East Indian annual erect herb; source of sesame seed or benniseed and sesame oil
+69317,sesame_oil,oil obtained from sesame seeds
+69318,sesame_seed benniseed,small oval seeds of the sesame plant
+69319,sesamoid_bone sesamoid os_sesamoideum,any of several small round bones formed in a tendon where it passes over a joint
+69320,sesbania,any of various plants of the genus Sesbania having pinnate leaves and large showy pea-like flowers
+69321,sesquicentennial,the 150th anniversary (or the celebration of it)
+69322,sesquipedalian sesquipedalia,a very long word (a foot and a half long)
+69323,sesquipedality,using long words
+69324,sessile_polyp,a relatively flat polyp
+69325,session,a meeting for execution of a group's functions; "it was the opening session of the legislature"
+69326,session,a meeting devoted to a particular activity; "a filming session"; "a gossip session"
+69327,session_cookie,a cookie that is stored temporarily and is destroyed when you close the link
+69328,sestet,a rhythmic group of six lines of verse
+69329,set,a unit of play in tennis or squash; "they played two sets of tennis after dinner"
+69330,set,(mathematics) an abstract collection of numbers or symbols; "the set of prime numbers is infinite"
+69331,set,a group of things of the same kind that belong together and are so used; "a set of books"; "a set of golf clubs"; "a set of teeth"
+69332,set,the descent of a heavenly body below the horizon; "before the set of sun"
+69333,set,any electronic equipment that receives or transmits radio or tv signals; "the early sets ran on storage batteries"
+69334,set,the act of putting something in position; "he gave a final set to his hat"
+69335,set circle band lot,an unofficial association of people or groups; "the smart set goes there"; "they were an angry lot"
+69336,set exercise_set,several exercises intended to be done in series; "he did four sets of the incline bench press"
+69337,set readiness,(psychology) being temporarily ready to respond in a particular way; "the subjects' set led them to solve problems the familiar way and to overlook the simpler solution"; "his instructions deliberately gave them the wrong set"
+69338,set-back setoff offset,structure where a wall or building narrows abruptly
+69339,set-to,a brief but vigorous fight
+69340,set_decoration,a decoration used as part of the set of a theatrical or movie production
+69341,set_gun spring_gun,a gun that is set to fire on any intruder that comes in contact with the wire that sets it off
+69342,set_piece,a piece of scenery intended to stand alone as part of the stage setting
+69343,set_point,(tennis) the final point needed to win a set in tennis
+69344,set_shot,a two-handed basketball shot from a stationary position
+69345,set_square,a try square with an adjustable sliding head
+69346,set_theory,the branch of pure mathematics that deals with the nature and relations of sets
+69347,seta,stalk of a moss capsule
+69348,seta,a stiff hair or bristle
+69349,setscrew,a screw that is used to adjust the tension on a spring
+69350,setscrew,a screw (often without a head) that fits into the boss or hub of a wheel or cam etc. and prevents motion of the part relative to the shaft on which it is mounted
+69351,settee,a small sofa
+69352,setter,a long-haired dog formerly trained to crouch on finding game but now to point
+69353,setting,the physical position of something; "he changed the setting on the thermostat"
+69354,setting background scope,the state of the environment in which a situation exists; "you can't do that in a university setting"
+69355,setting scene,the context and environment in which something is set; "the perfect setting for a ghost story"
+69356,settle settee,a long wooden bench with a back
+69357,settlement,an area where a group of families live together
+69358,settlement,a conclusive resolution of a matter and disposition of it
+69359,settlement resolution closure,something settled or resolved; the outcome of decision making; "they finally reached a settlement with the union"; "they never did achieve a final resolution of their differences"; "he needed to grieve before he could achieve a sense of closure"
+69360,settlement_house,a center in an underprivileged area that provides community services
+69361,settler,a negotiator who settles disputes
+69362,settler,a clerk in a betting shop who calculates the winnings
+69363,settler colonist,a person who settles in a new colony or moves into new country
+69364,settling subsiding subsidence,a gradual sinking to a lower level
+69365,settlor trustor,(law) a person who creates a trust by giving real or personal property in trust to a trustee for the benefit of a beneficiary; a person who gives such property is said to settle it on the trustee
+69366,setup,the way something is organized or arranged; "it takes time to learn the setup around here"
+69367,seven 7 VII sevener heptad septet septenary,the cardinal number that is the sum of six and one
+69368,seven-spot seven,one of four playing cards in a deck with seven pips on the face
+69369,seven-up old_sledge,a form of all fours in which a total of seven points is game
+69370,seven_seas,an informal expression for all of the oceans of the world; "the old salt had sailed the seven seas"
+69371,seventeen 17 XVII,the cardinal number that is the sum of sixteen and one
+69372,seventeen-year_locust periodical_cicada Magicicada_septendecim,North American cicada; appears in great numbers at infrequent intervals because the nymphs take 13 to 17 years to mature
+69373,seventeenth,position 17 in a countable series of things
+69374,seventh,position seven in a countable series of things
+69375,seventh,the musical interval between one note and another seven notes away from it
+69376,seventh_chord,a triad with a seventh added
+69377,seventies 1970s,the decade from 1970 to 1979
+69378,seventies mid-seventies,the time of life between 70 and 80
+69379,seventieth,position 70 in a countable series of things
+69380,seventy 70 LXX,the cardinal number that is the product of ten and seven
+69381,seventy-eight 78,a shellac based phonograph record that played at 78 revolutions per minute
+69382,seventy-eight 78 LXXVIII,the cardinal number that is the sum of seventy and eight
+69383,severable_contract,a contract which, in the event of a breach by one of the parties, can be considered as several independent agreements expressed in a single instrument
+69384,severalty,exclusive individual ownership
+69385,severance severing,the act of severing
+69386,severance_agreement,an agreement on the terms on which an employee will leave
+69387,severe_acute_respiratory_syndrome SARS,a respiratory disease of unknown etiology that apparently originated in mainland China in 2003; characterized by fever and coughing or difficulty breathing or hypoxia; can be fatal
+69388,severe_combined_immunodeficiency severe_combined_immunodeficiency_disease SCID,a congenital disease affecting T cells that can result from a mutation in any one of several different genes; children with it are susceptible to infectious disease; if untreated it is lethal within the first year or two of life
+69389,severity severeness harshness rigor rigour rigorousness rigourousness inclemency hardness stiffness,excessive sternness; "severity of character"; "the harshness of his punishment was inhuman"; "the rigors of boot camp"
+69390,sewage sewerage,waste matter carried away in sewers or drains
+69391,sewage_disposal,the disposal of sewage
+69392,sewage_disposal_plant disposal_plant,a plant for disposing of sewage
+69393,sewage_farm,a farm that is irrigated and fertilized with raw sewage
+69394,sewage_system sewer_system sewage_works,facility consisting of a system of sewers for carrying off liquid and solid sewage
+69395,sewer,someone who sews; "a sewer of fine gowns"
+69396,sewer sewerage cloaca,a waste pipe that carries away sewage or surface water
+69397,sewer_gas,foul-smelling gas that forms in sewers
+69398,sewer_main sewer_line,a main in a sewage system
+69399,sewer_rat,brown rat commonly found in sewers
+69400,sewing stitchery,needlework on which you are working with needle and thread; "she put her sewing back in the basket"
+69401,sewing stitching,joining or attaching by stitches
+69402,sewing-machine_operator,someone who sews by operating a sewing machine
+69403,sewing_basket,a workbasket in which sewing materials can be stored
+69404,sewing_kit,a kit of articles used in sewing
+69405,sewing_machine,a textile machine used as a home appliance for sewing
+69406,sewing_needle,a needle used in sewing to pull thread through cloth
+69407,sewing_room,a room set aside for sewing
+69408,sewing_stitch embroidery_stitch,a stitch made with thread and a threaded sewing needle through fabric or leather
+69409,sex,either of the two categories (male or female) into which most organisms are divided; "the war between the sexes"
+69410,sex gender sexuality,the properties that distinguish organisms on the basis of their reproductive roles; "she didn't want to know the sex of the foetus"
+69411,sex sexual_urge,all of the feelings resulting from the urge to gratify sexual impulses; "he wanted a better sex life"; "the film contained no sex or violence"
+69412,sex-change_operation transsexual_surgery,surgical procedures and hormonal treatments designed to alter a person's sexual characteristics so that the resemble those of the opposite sex
+69413,sex-linked_disorder,any disease or abnormality that is determined by the sex hormones; "hemophilia is determined by a gene defect on an X chromosome"
+69414,sex_appeal desirability desirableness oomph,attractiveness to the opposite sex
+69415,sex_change,a change in a person's physical sexual characteristics (as by surgery and hormone treatments)
+69416,sex_characteristic sexual_characteristic sex_character,those characteristics (both anatomical and psychological) that are strongly associated with one sex relative to the other
+69417,sex_chromatin,chromatin found only in female cells; "the presence or absence of sex chromatin in cells obtained by amniocentesis makes it possible to determine the sex of a fetus"
+69418,sex_chromosome,(genetics) a chromosome that determines the sex of an individual; "mammals normally have two sex chromosomes"
+69419,sex_drive,a physiological need for sexual activity; "testosterone is responsible for the male sex drive"
+69420,sex_kitten sexpot sex_bomb,a young woman who is thought to have sex appeal
+69421,sex_linkage,an association between genes in sex chromosomes that makes some characteristics appear more frequently in one sex than in the other
+69422,sex_manual,a manual containing instruction in sexual techniques; intended to enhance the reader's sexual life
+69423,sex_object,any person regarded simply as an object of sexual gratification
+69424,sex_offender,someone who has been convicted of a sex crime
+69425,sex_symbol,a person (especially a celebrity) who is well-known for their sexual attractiveness
+69426,sexagenarian,someone whose age is in the sixties
+69427,sexcapade,a sexual escapade; an illicit affair
+69428,sexism,discriminatory or abusive behavior towards members of the opposite sex
+69429,sexploitation,the commercial exploitation of sex or sexuality or explicit sexual material; "sexploitation by advertisers is notorious"
+69430,sext,the fourth of the seven canonical hours; about noon
+69431,sextant,a unit of angular distance equal to 60 degrees
+69432,sextant,a measuring instrument for measuring the angular distance between celestial objects; resembles an octant
+69433,sextet sextette sestet,six performers or singers who perform together
+69434,sextet sextette sestet,a set of six similar things considered as a unit
+69435,sextet sextette sestet,a musical composition written for six performers
+69436,sextet sextette sixsome,six people considered as a unit
+69437,sextillion,the number that is represented as a one followed by 21 zeros
+69438,sexton sacristan,an officer of the church who is in charge of sacred objects
+69439,sexual_activity sexual_practice sex sex_activity,activities associated with sexual intercourse; "they had sex in the back seat"
+69440,sexual_arousal,the arousal of sexual desires in preparation for sexual behavior
+69441,sexual_assault sexual_abuse sex_crime sex_offense,a statutory offense that provides that it is a crime to knowingly cause another person to engage in an unwanted sexual act by force or threat; "most states have replaced the common law definition of rape with statutes defining sexual assault"
+69442,sexual_attraction,attractiveness on the basis of sexual desire
+69443,sexual_conquest score,a seduction culminating in sexual intercourse; "calling his seduction of the girl a `score' was a typical example of male slang"
+69444,sexual_desire eros concupiscence physical_attraction,a desire for sexual intimacy
+69445,sexual_discrimination,discrimination (usually in employment) that excludes one sex (usually women) to the benefit of the other sex
+69446,sexual_harassment,unwelcome sexual behavior by a supervisor toward an employee
+69447,sexual_immorality,the evil ascribed to sexual acts that violate social conventions; "sexual immorality is the major reason for last year's record number of abortions"
+69448,sexual_intercourse intercourse sex_act copulation coitus coition sexual_congress sexual_relation relation carnal_knowledge,sexual activity between individuals, especially the insertion of a man's penis into a woman's vagina until orgasm and ejaculation occur
+69449,sexual_love lovemaking making_love love love_life,sexual activities (often including sexual intercourse) between two people; "his lovemaking disgusted her"; "he hadn't had any love in months"; "he has a very complicated love life"
+69450,sexual_pleasure,pleasure derived from sexual activities
+69451,sexual_relationship,a relationship involving sexual intimacy
+69452,sexual_reproduction amphimixis,reproduction involving the union or fusion of a male and a female gamete
+69453,sforzando,an accented chord
+69454,sforzando,(music) a notation written above a note and indicating that it is to be played with a strong initial attack
+69455,sgraffito,a ceramic or mural decoration made by scratching off a surface layer to reveal the ground
+69456,shabbiness seediness manginess sleaziness,a lack of elegance as a consequence of wearing threadbare or dirty clothing
+69457,shackle,a U-shaped bar; the open end can be passed through chain links and closed with a bar
+69458,shackle bond hamper trammel,a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)
+69459,shad,bony flesh of herring-like fish usually caught during their migration to fresh water for spawning; especially of Atlantic coast
+69460,shad,herring-like food fishes that migrate from the sea to fresh water to spawn
+69461,shad_roe,roe of shad; may be parboiled or baked or sauteed gently
+69462,shade,a position of relative inferiority; "an achievement that puts everything else in the shade"; "his brother's success left him in the shade"
+69463,shade,a representation of the effect of shadows in a picture or drawing (as by shading or darker pigment)
+69464,shade,protective covering that protects something from direct sunlight; "they used umbrellas as shades"; "as the sun moved he readjusted the shade"
+69465,shade shadiness shadowiness,relative darkness caused by light rays being intercepted by an opaque body; "it is much cooler in the shade"; "there's too much shadiness to take good photographs"
+69466,shade tint tincture tone,a quality of a given color that differs slightly from another color; "after several trials he mixed the shade of pink that she wanted"
+69467,shade_tree,a tree planted or valued chiefly for its shade from sunlight
+69468,shades,(plural) something that reminds you of someone or something; "aren't there shades of 1948 here?"
+69469,shadiness,questionable honesty or legality; "they acted with such obvious shadiness that they were instantly recognizable"; "the shadiness of their transactions"
+69470,shading,graded markings that indicate light or shaded areas in a drawing or painting
+69471,shading blending,a gradation involving small or imperceptible differences between grades
+69472,shadow,shade within clear boundaries
+69473,shadow,a dominating and pervasive presence; "he received little recognition working in the shadow of his father"
+69474,shadow,an inseparable companion; "the poor child was his mother's shadow"
+69475,shadow,a premonition of something adverse; "a shadow over his happiness"
+69476,shadow,refuge from danger or observation; "he felt secure in his father's shadow"
+69477,shadow_box,a shallow rectangular box with a transparent front used to protect and display small items (jewelry, coins, etc.)
+69478,shadow_cabinet,a group of senior members of the political party that is out of power; these members would probably assume corresponding positions as ministers in the British Cabinet if their party was elected
+69479,shadowboxing,sparring with an imaginary opponent (for exercise or training)
+69480,shadowing tailing,the act of following someone secretly
+69481,shaft,a line that forms the length of an arrow pointer
+69482,shaft,a vertical passageway through a building (as for an elevator)
+69483,shaft,a long vertical passage sunk into the earth, as for a mine or tunnel
+69484,shaft,a long rod or pole (especially the handle of an implement or the body of a weapon like a spear or arrow)
+69485,shaft scape,(architecture) upright consisting of the vertical part of a column
+69486,shag,a strong coarse tobacco that has been shredded
+69487,shag,a matted tangle of hair or fiber; "the dog's woolly shag"
+69488,shag,a fabric with long coarse nap; "he bought a shag rug"
+69489,shag,a lively dance step consisting of hopping on each foot in turn
+69490,shag_rug,a rug with long pile
+69491,shagbark shagbark_hickory shellbark shellbark_hickory Carya_ovata,North American hickory having loose grey shaggy bark and edible nuts
+69492,shagginess,unkemptness of hair
+69493,shagginess,roughness of nap produced by long woolly hairs
+69494,shaggy_dog_story,a long rambling joke whose humor derives from its pointlessness
+69495,shaggymane shaggy_cap shaggymane_mushroom Coprinus_comatus,common edible mushroom having an elongated shaggy white cap and black spores
+69496,shahadah,the first pillar of Islam is an affirmation of faith
+69497,shaheed,Arabic term for holy martyrs
+69498,shaitan shaytan,(Islam) a rebellious jinni who leads men astray
+69499,shakedown,initial adjustments to improve the functioning or the efficiency and to bring to a more satisfactory state; "the new industry's economic shakedown"
+69500,shakedown,a very thorough search of a person or a place; "a shakedown by the police uncovered the drugs"
+69501,shakedown,extortion of money (as by blackmail)
+69502,shakeout,an economic condition that results in the elimination of marginally financed participants in an industry; "they glutted the market in order to cause a shakeout of their competitors"
+69503,shaker,a container in which something can be shaken
+69504,shaker mover_and_shaker,a person who wields power and influence; "a shaker of traditional beliefs"; "movers and shakers in the business world"
+69505,shakiness,the quality of being unstable and insecure; "the shakiness of the present regime"
+69506,shaking,the act of causing something to move up and down (or back and forth) with quick movements
+69507,shaking shakiness trembling quiver quivering vibration palpitation,a shaky motion; "the shaking of his fingers as he lit his pipe"
+69508,shale,a sedimentary rock formed by the deposition of successive layers of clay
+69509,shale_oil,oil extracted from oil shale by heating
+69510,shallot,aggregate bulb of the multiplier onion
+69511,shallot,small mild-flavored onion-like or garlic-like clustered bulbs used for seasoning
+69512,shallot eschalot multiplier_onion Allium_cepa_aggregatum Allium_ascalonicum,type of onion plant producing small clustered mild-flavored bulbs used as seasoning
+69513,shallow_fording,fording at a shallow place
+69514,shallowness,the quality of lacking physical depth; "take into account the shallowness at that end of the pool before you dive"
+69515,shallu Sorghum_vulgare_rosburghii,sorghum having slender dry stalks and small hard grains; introduced into United States from India
+69516,shaman priest-doctor,in societies practicing shamanism: one acting as a medium between the visible and spirit worlds; practices sorcery for healing or divination
+69517,shamanism,any animistic religion similar to Asian shamanism (especially as practiced by certain Native American tribes)
+69518,shamanism Asian_shamanism,an animistic religion of northern Asia having the belief that the mediation between the visible and the spirit worlds is effected by shamans
+69519,shamble shambling shuffle shuffling,walking with a slow dragging motion without lifting your feet; "from his shambling I assumed he was very old"
+69520,shambles,a condition of great disorder
+69521,shame,a painful emotion resulting from an awareness of inadequacy or guilt
+69522,shame disgrace ignominy,a state of dishonor; "one mistake brought shame to all his family"; "suffered the ignominy of being sent to prison"
+69523,shamefacedness sheepishness,feeling embarrassed about yourself
+69524,shamefulness disgracefulness ignominiousness,unworthiness meriting public disgrace and dishonor
+69525,shamelessness brazenness,behavior marked by a bold defiance of the proprieties and lack of shame
+69526,shampoo,cleansing agent consisting of soaps or detergents used for washing the hair
+69527,shampoo,the act of washing your hair with shampoo
+69528,shamrock_pea Parochetus_communis,trailing trifoliate Asiatic and African herb having cobalt blue flowers
+69529,shandygaff shandy,a drink made of beer and lemonade
+69530,shanghaier seizer,a kidnapper who drugs men and takes them for compulsory service aboard a ship
+69531,shank,a cut of meat (beef or veal or mutton or lamb) from the upper part of the leg
+69532,shank,the part of the human leg between the knee and the ankle
+69533,shank,cylinder forming the part of a bolt between the thread and the head
+69534,shank,cylinder forming the part of a bit by which it is held in the drill
+69535,shank,a poor golf stroke in which the heel of the club hits the ball
+69536,shank stem,cylinder forming a long narrow part of something
+69537,shank waist,the narrow part of the shoe connecting the heel and the wide part of the sole
+69538,shank's_mare shanks'_mare shank's_pony shanks'_pony,you own legs; "I traveled on shank's mare"
+69539,shanny Blennius_pholis,European scaleless blenny
+69540,shantung,a heavy silk fabric with a rough surface (or a cotton imitation)
+69541,shantytown,a city district inhabited by people living in huts and shanties
+69542,shape embodiment,a concrete representation of an otherwise nebulous concept; "a circle was the embodiment of his concept of life"
+69543,shape form,the spatial arrangement of something as distinct from its substance; "geometry is the mathematical science of shape"
+69544,shape form configuration contour conformation,any spatial attributes (especially as defined by outline); "he could barely make out their shapes"
+69545,shape-up,a way of hiring longshoremen by the day; applicants gather around a union boss who selects those to be hired
+69546,shape_constancy,the tendency to perceive the shape of a rigid object as constant despite differences in the viewing angle (and consequent differences in the shape of the pattern projected on the retina of the eye)
+69547,shapelessness,an amorphous or indefinite shape; "a shapeless mass"
+69548,shapelessness,the quality of lacking an esthetically pleasing shape
+69549,shaper shaping_machine,a machine tool for shaping metal or wood
+69550,shaping defining,any process serving to define the shape of something
+69551,shaping_tool,a tool for shaping metal
+69552,shard sherd fragment,a broken piece of a brittle artifact
+69553,share,any of the equal portions into which the capital stock of a corporation is divided and ownership of which is evidenced by a stock certificate; "he bought 100 shares of IBM at the market price"
+69554,share portion part percentage,assets belonging to or due to or contributed by an individual person or group; "he wanted his share in cash"
+69555,sharecropper cropper sharecrop_farmer,small farmers and tenants
+69556,shareholding,a holding in the form of shares of corporations
+69557,shareware,software that is available free of charge; may be distributed for evaluation with a fee requested for additional features or a manual etc.
+69558,shariah shariah_law sharia sharia_law Islamic_law,the code of law derived from the Koran and from the teachings and example of Mohammed; "sharia is only applicable to Muslims"; "under Islamic law there is no separation of church and state"
+69559,sharing,using or enjoying something jointly with others
+69560,sharing,having in common; "the sharing of electrons creates molecules"
+69561,sharing share-out,a distribution in shares
+69562,shark,a person who is ruthless and greedy and dishonest
+69563,shark,a person who is unusually skilled in certain ways; "a card shark"
+69564,shark,any of numerous elongate mostly marine carnivorous fishes with heterocercal caudal fins and tough skin covered with small toothlike scales
+69565,shark_oil shark-liver_oil,a fatty yellow to brown oil obtained from the livers of sharks; used for dressing leather and as a source of vitamin A
+69566,shark_repellent porcupine_provision,a measure undertaken by a corporation to discourage unwanted takeover attempts
+69567,sharkskin,a smooth crisp fabric
+69568,sharksucker Echeneis_naucrates,remoras found attached to sharks
+69569,sharp,a musical notation indicating one half step higher than the note named
+69570,sharp,a long thin sewing needle with a sharp point
+69571,sharp-tailed_grouse sprigtail sprig_tail Pedioecetes_phasianellus,large grouse of prairies and open forests of western North America
+69572,sharp_tongue,a bitter or critical manner of speaking
+69573,sharpener,any implement that is used to make something (an edge or a point) sharper; "a knife sharpener"
+69574,sharpie,a shallow-draft sailboat with a sharp prow, flat bottom, and triangular sail; formerly used along the northern Atlantic coast of the United States
+69575,sharpness,the quality of being keenly and painfully felt; "the sharpness of her loss"
+69576,sharpness keenness,thinness of edge or fineness of point
+69577,sharpshooter,an athlete noted for accurate aim
+69578,sharpshooter,a fast schooner once used by New England fisherman for illegal fishing in Canadian waters
+69579,sharptail_mola Mola_lanceolata,caudal fin has a central projection
+69580,shasta_daisy Leucanthemum_superbum Chrysanthemum_maximum_maximum,hybrid garden flower derived from Chrysanthemum maximum and Chrysanthemum lacustre having large white flower heads resembling oxeye daisies; often placed in the genus Chrysanthemum
+69581,shave shaving,the act of removing hair with a razor
+69582,shaver,an adult male who shaves
+69583,shaver electric_shaver electric_razor,a razor powered by an electric motor
+69584,shaving-brush_tree Pseudobombax_ellipticum,tree of Mexico to Guatemala having densely hairy flowers with long narrow petals clustered at ends of branches before leaves appear
+69585,shaving_brush,a brush used to apply lather prior to shaving
+69586,shaving_cream shaving_soap,toiletry consisting of a preparation of soap and fatty acids that forms a rich lather for softening the beard before shaving
+69587,shaving_foam,toiletry consisting of a liquid preparation containing many small bubbles that soften the beard before shaving
+69588,shawl,cloak consisting of an oblong piece of cloth used to cover the head and shoulders
+69589,shawm,a medieval oboe
+69590,she-devil,a cruel woman
+69591,she-oak,any of several Australian trees of the genus Casuarina
+69592,shear,(physics) a deformation of an object in which parallel planes remain parallel but are shifted in a direction parallel to themselves; "the shear changed the quadrilateral into a parallelogram"
+69593,shear,a large edge tool that cuts sheet metal by passing a blade through it
+69594,shearer,a workman who uses shears to cut leather or metal or textiles
+69595,shearer,a skilled worker who shears the wool off of sheep or other animals
+69596,shearing,removing by cutting off or clipping
+69597,shears,large scissors with strong blades
+69598,shearwater,long-winged oceanic bird that in flight skims close to the waves
+69599,sheath,a protective covering (as for a knife or sword)
+69600,sheath case,an enveloping structure or covering enclosing an animal or plant organ or part
+69601,sheathing overlay overlayer,protective covering consisting, for example, of a layer of boards applied to the studs and joists of a building to strengthen it and serve as a foundation for a weatherproof exterior
+69602,shebang,an entire system; used in the phrase `the whole shebang'
+69603,shebeen,unlicensed drinking establishment
+69604,shed,an outbuilding with a single story; used for shelter or storage
+69605,shedder spiller,an attacker who sheds or spills blood; "a great hunter and spiller of blood"
+69606,shedding sloughing,the process whereby something is shed
+69607,sheep,a timid defenseless simpleton who is readily preyed upon
+69608,sheep,a docile and vulnerable person who would rather follow than make an independent decision; "his students followed him like sheep"
+69609,sheep,woolly usually horned ruminant mammal related to the goat
+69610,sheep-tick sheep_tick Ixodes_ricinus,parasitic on sheep and cattle as well as humans; can transmit looping ill in sheep (acute viral disease of the nervous system); a vector for Lyme disease spirochete
+69611,sheep_bell,a bell hung round the neck of a sheep so that the sheep can be easily located
+69612,sheep_botfly sheep_gadfly Oestrus_ovis,larvae are parasitic on sheep
+69613,sheep_dip,a liquid mixture containing pesticides in which sheep are dipped to kill parasites
+69614,sheep_fescue sheep's_fescue Festuca_ovina,cultivated for sheep pasturage in upland regions or used as a lawn grass
+69615,sheep_frog,mostly of Central America
+69616,sheep_ked sheep-tick sheep_tick Melophagus_Ovinus,wingless fly that is an external parasite on sheep and cattle
+69617,sheep_laurel pig_laurel lambkill Kalmia_angustifolia,North American dwarf shrub resembling mountain laurel but having narrower leaves and small red flowers; poisonous to young stock
+69618,sheep_plant vegetable_sheep Raoulia_lutescens Raoulia_australis,perennial prostrate mat-forming herb with hoary woolly foliage
+69619,sheep_sorrel sheep's_sorrel Rumex_acetosella,small plant having pleasantly acid-tasting arrow-shaped leaves; common in dry places
+69620,sheepherder shepherd sheepman,a herder of sheep (on an open range); someone who keeps the sheep together in a flock
+69621,sheepman,a man who raises (or tends) sheep
+69622,sheepshank,a knot for shortening a line
+69623,sheepshead Archosargus_probatocephalus,large (up to 20 lbs) food fish of the eastern coast of the United States and Mexico
+69624,sheepshead_porgy Calamus_penna,from Florida and Bahamas to Brazil
+69625,sheepshearing,the time or season when sheep are sheared
+69626,sheepshearing,a festival held at the time sheep are normally sheared
+69627,sheepshearing,act of shearing sheep
+69628,sheepskin fleece,tanned skin of a sheep with the fleece left on; used for clothing
+69629,sheepskin_coat afghan,a coat made of sheepskin
+69630,sheepwalk sheeprun,farm devoted to raising sheep
+69631,sheet,any broad thin expanse or surface; "a sheet of ice"
+69632,sheet bed_sheet,bed linen consisting of a large rectangular piece of cotton or linen cloth; used in pairs
+69633,sheet flat_solid,a flat artifact that is thin relative to its length and width
+69634,sheet piece_of_paper sheet_of_paper,paper used for writing or printing
+69635,sheet tack mainsheet weather_sheet shroud,(nautical) a line (rope or chain) that regulates the angle at which a sail is set in relation to the wind
+69636,sheet-metal_work,the craft of doing sheet metal work (as in ventilation systems)
+69637,sheet_anchor waist_anchor,spare anchor for use in emergency
+69638,sheet_bend becket_bend weaver's_knot weaver's_hitch,a hitch used for temporarily tying a rope to the middle of another rope (or to an eye)
+69639,sheet_iron,plate iron thinner than tank iron
+69640,sheet_lighting,lightning that appears as a broad sheet; due to reflections of more distant lightning and to diffusion by the clouds
+69641,sheet_metal,sheet of metal formed into a thin plate
+69642,sheet_music,a musical composition in printed or written form; "she turned the pages of the music as he played"
+69643,sheet_pile sheath_pile sheet_piling,a pile in a row of piles driven side by side to retain earth or prevent seepage
+69644,sheet_web,an irregular spider web woven in a single plane and looking like flattened hammocks
+69645,sheeting,fabric from which bed sheets are made
+69646,shegetz,an offensive term for non-Jewish young man; "why does she like all those shkotzim?"
+69647,sheik tribal_sheik sheikh tribal_sheikh Arab_chief,the leader of an Arab village or family
+69648,sheika sheikha,the wife of a sheik
+69649,sheikdom sheikhdom,the domain ruled by a sheik
+69650,shekel,the basic unit of money in Israel
+69651,sheldrake,Old World gooselike duck slightly larger than a mallard with variegated mostly black-and-white plumage and a red bill
+69652,shelduck,female sheldrake
+69653,shelf,a support that consists of a horizontal surface for holding objects
+69654,shelf_bracket,a bracket to support a shelf
+69655,shelf_ice ice_shelf,ice that is attached to land but projects out to sea
+69656,shelf_life,the length of time a packaged food or drug will last without deteriorating
+69657,shelfful,the amount that a shelf will hold; "he bought a shelfful of books"
+69658,shell,the material that forms the hard outer covering of many animals
+69659,shell,the hard usually fibrous outer layer of some fruits especially nuts
+69660,shell,a rigid covering that envelops an object; "the satellite is covered with a smooth shell of ice"
+69661,shell,ammunition consisting of a cylindrical metal casing containing an explosive charge and a projectile; fired from a large gun
+69662,shell,the hard largely calcareous covering of a mollusc or a brachiopod
+69663,shell case casing,the housing or outer covering of something; "the clock has a walnut case"
+69664,shell eggshell,the exterior covering of a bird's egg
+69665,shell racing_shell,a very light narrow racing boat
+69666,shell_bean,unripe beans removed from the pod before cooking
+69667,shell_bean shell_bean_plant,a bean plant grown primarily for its edible seed rather than its pod
+69668,shell_corporation shell_entity,a company that is incorporated but has no assets or operations
+69669,shell_game thimblerig,a swindling sleight-of-hand game; victim guesses which of three things a pellet is under
+69670,shell_plating,the plates covering the frame of a steel ship and corresponding to the planking of a wooden ship
+69671,shell_stitch,a crochet stitch
+69672,shellac,lac purified by heating and filtering; usually in thin orange or yellow flakes but sometimes bleached white
+69673,shellac shellac_varnish,a thin varnish made by dissolving lac in ethanol; used to finish wood
+69674,shellac_wax lac_wax,a hard wax separated from shellac by its insolubility in alcohol
+69675,sheller,a worker who removes shells (as of peas or oysters)
+69676,shellfire,shooting artillery shells
+69677,shellfish,meat of edible aquatic invertebrate with a shell (especially a mollusk or crustacean)
+69678,shellflower shall-flower shell_ginger Alpinia_Zerumbet Alpinia_speciosa Languas_speciosa,cultivated for its shining oblong leaves and arching clusters of white flowers with pink shading and crinkled yellow lips with variegated magenta stripes
+69679,shellflower shell-flower turtlehead snakehead snake-head Chelone_glabra,showy perennial of marshlands of eastern and central North America having waxy lanceolate leaves and flower with lower part creamy white and upper parts pale pink to deep purple
+69680,shelter,temporary housing for homeless or displaced persons
+69681,shelter,protective covering that provides protection from the weather
+69682,shelter,a structure that provides privacy and protection from danger
+69683,sheltered_workshop,a workshop that offers jobs to members of the physically or developmentally disabled population
+69684,shelver,a worker who puts things (as books) on shelves
+69685,shepherd,a clergyman who watches over a group of people
+69686,shepherd's_pie,pie of hash covered with mashed potatoes and browned in the oven
+69687,shepherd's_purse shepherd's_pouch Capsella_bursa-pastoris,white-flowered annual European herb bearing triangular notched pods; nearly cosmopolitan as an introduced weed
+69688,shepherd_dog sheepdog sheep_dog,any of various usually long-haired breeds of dog reared to herd and guard sheep
+69689,shepherdess,a woman shepherd
+69690,sherbert sherbet,a frozen dessert made primarily of fruit juice and sugar, but also containing milk or egg-white or gelatin
+69691,sheriff,the principal law-enforcement officer in a county
+69692,sheriff's_sale execution_sale judicial_sale forced_sale,a sale of property by the sheriff under authority of a court's writ of execution in order satisfy an unpaid obligation
+69693,sherry,dry to sweet amber wine from the Jerez region of southern Spain or similar wines produced elsewhere; usually drunk as an aperitif
+69694,shibboleth,a manner of speaking that is distinctive of a particular group of people
+69695,shield,a protective covering or structure
+69696,shield buckler,armor carried on the arm to intercept blows
+69697,shield_fern buckler_fern,any of various ferns of the genera Dryopteris or Polystichum or Lastreopsis having somewhat shield-shaped coverings on the sori
+69698,shielding,shield consisting of an arrangement of metal mesh or plates designed to protect electronic equipment from ambient electromagnetic interference
+69699,shielding,a shield of lead or concrete intended as a barrier to radiation emitted in nuclear decay
+69700,shielding,the act of shielding from harm
+69701,shift,a crew of workers who work for a specific period of time
+69702,shift displacement,an event in which something is displaced without rotation
+69703,shift shifting,the act of moving from one place to another; "his constant shifting disrupted the class"
+69704,shift work_shift duty_period,the time period during which you are at work
+69705,shift_key shift,the key on the typewriter keyboard that shifts from lower-case letters to upper-case letters
+69706,shift_register,(computer science) register in which all bits can be shifted one or more positions to the left or to the right
+69707,shiftiness,the quality of being changeable in direction; "the shiftiness of the wind caused the boat to veer unpredictably"
+69708,shiftlessness,a failure to be active as a consequence of lack of initiative or ambition
+69709,shiga_bacillus Shigella_dysentariae,a bacillus that causes dysentery
+69710,shigella,rod-shaped Gram-negative enterobacteria; some are pathogenic for warm-blooded animals; can be used as a bioweapon
+69711,shigellosis bacillary_dysentery,an acute infection of the intestine by shigella bacteria; characterized by diarrhea and fever and abdominal pains
+69712,shiitake shiitake_mushroom Chinese_black_mushroom golden_oak_mushroom Oriental_black_mushroom Lentinus_edodes,edible east Asian mushroom having a golden or dark brown to blackish cap and an inedible stipe
+69713,shiksa shikse,a derogatory term used by Jews to refer to non-Jewish women
+69714,shill,a decoy who acts as an enthusiastic customer in order to stimulate the participation of others
+69715,shillelagh shillalah,a cudgel made of hardwood (usually oak or blackthorn)
+69716,shilling,an English coin worth one twentieth of a pound
+69717,shim,a thin wedge of material (wood or metal or stone) for driving into crevices
+69718,shimmer play,a weak and tremulous light; "the shimmer of colors on iridescent feathers"; "the play of light on the water"
+69719,shimmy,an abnormal wobble in a motor vehicle (especially in the front wheels); "he could feel the shimmy in the steering wheel"
+69720,shimmy,lively dancing (usually to ragtime music) with much shaking of the shoulders and hips
+69721,shin,the 22nd letter of the Hebrew alphabet
+69722,shin,the front part of the human leg between the knee and the ankle
+69723,shin shin_bone,a cut of meat from the lower part of the leg
+69724,shin_guard shinpad,a stiff protective garment worn by hockey players or a catcher in baseball to protect the shins
+69725,shin_splints,painful inflammation of the muscles around the shins; frequent among runners
+69726,shindig shindy,a large and noisy party of people
+69727,shiner,something that shines (with emitted or reflected light)
+69728,shiner,any of numerous small silvery North American cyprinid fishes especially of the genus Notropis
+69729,shiner black_eye mouse,a swollen bruise caused by a blow to the eye
+69730,shingle,coarse beach gravel of small waterworn stones and pebbles (or a stretch of shore covered with such gravel)
+69731,shingle,a small signboard outside the office of a lawyer or doctor, e.g.
+69732,shingle shake,building material used as siding or roofing
+69733,shingle_oak laurel_oak Quercus_imbricaria,small deciduous tree of eastern and central United States having leaves that shine like laurel; wood is used in western states for shingles
+69734,shingle_tree Acrocarpus_fraxinifolius,East Indian timber tree with hard durable wood used especially for tea boxes
+69735,shingler,a worker who shingles roofs
+69736,shingling,(geology) sediment in which flat pebbles are uniformly tilted in the same direction
+69737,shingling,the laying on of shingles; "shingling is a craft very different from carpentry"
+69738,shininess sheen luster lustre,the visual property of something that shines with reflected light
+69739,shining polishing,the work of making something smooth and shiny by rubbing or waxing it; "the shining of shoes provided a meager living"; "every Sunday he gave his car a good polishing"
+69740,shining_clubmoss Lycopodium_lucidulum,a variety of club moss
+69741,shining_willow Salix_lucida,common North American shrub with shiny lanceolate leaves
+69742,shinny shinney,a simple version of hockey played by children on the streets (or on ice or on a field) using a ball or can as the puck
+69743,shinplaster,paper money of little value issued on insufficient security
+69744,ship,a vessel that carries passengers or freight
+69745,ship's_chandler,a dealer in sails and ropes and other supplies for sailing ships
+69746,ship's_company company,crew of a ship including the officers; the whole force or personnel of a ship
+69747,ship's_papers,official papers which a ship is legally required to have; related to ownership, cargo, etc.
+69748,ship-breaker,a contractor who buys old ships and breaks them up for scrap
+69749,ship-towed_long-range_acoustic_detection_system,a shipboard system consisting of an acoustic detection system that is towed behind the ship
+69750,ship_broker,an agent for the ship owner; obtains cargo and may arrange for its loading or discharge
+69751,ship_canal shipway,a canal large enough for seagoing vessels
+69752,ship_chandler,a dealer in equipment and supplies for ships
+69753,ship_money,an impost levied in England to provide money for ships for national defense
+69754,shipboard_system,a system designed to work as a coherent entity on board a naval ship
+69755,shipbuilder,a business that builds and repairs ships
+69756,shipbuilder ship_builder,a person who builds ships as a business
+69757,shipbuilding ship_building,the construction of ships
+69758,shipbuilding_industry,an industry that builds ships
+69759,shipmate,an associate on the same ship with you
+69760,shipowner,someone who owns a ship or a share in a ship
+69761,shipper,someone who ships goods
+69762,shipper,a company in the business of shipping freight
+69763,shipping cargo_ships merchant_marine merchant_vessels,conveyance provided by the ships belonging to one country or industry
+69764,shipping_agent,the agent of a shipowner
+69765,shipping_clerk,an employee who ships and receives goods
+69766,shipping_company,a company that provides shipping services
+69767,shipping_fever shipping_pneumonia,a deadly form of septicemia in cattle and sheep; involves high fever and pneumonia; contracted under conditions of exposure or exhaustion (as often happens when the animals are shipped to market)
+69768,shipping_office,the office of a shipping agent; an office where seamen are hired
+69769,shipping_room,a room where goods are packaged and shipped
+69770,shipside,the part of a wharf that is next to a ship
+69771,shipworm teredinid,wormlike marine bivalve that bores into wooden piers and ships by means of drill-like shells
+69772,shipwreck,an irretrievable loss; "that was the shipwreck of their romance"
+69773,shipwreck,a wrecked ship (or a part of one)
+69774,shipwreck wreck,an accident that destroys a ship at sea
+69775,shipwright shipbuilder ship_builder,a carpenter who helps build and launch wooden vessels
+69776,shipyard,a workplace where ships are built or repaired
+69777,shire,a former administrative district of England; equivalent to a county
+69778,shire shire_horse,British breed of large heavy draft horse
+69779,shirking slacking soldiering goofing_off goldbricking,the evasion of work or duty
+69780,shirred_egg baked_egg egg_en_cocotte,egg cooked individually in cream or butter in a small ramekin
+69781,shirring,baking shelled eggs
+69782,shirt,a garment worn on the upper half of the body
+69783,shirt_button,a button on a shirt
+69784,shirtdress,a dress that is tailored like a shirt and has buttons all the way down the front
+69785,shirtfront,the front of a shirt (usually the part not covered by a jacket); "he had spilled catsup on his shirtfront"
+69786,shirting,any of various fabrics used to make men's shirts
+69787,shirtmaker,a maker of shirts
+69788,shirtsleeve,the sleeve of a shirt
+69789,shirtsleeves,not wearing a jacket; "in your shirtsleeves" means you are not wearing anything over your shirt; "in hot weather they dined in their shirtsleeves"
+69790,shirttail,a brief addendum at the end of a newspaper article
+69791,shirttail,fabric forming the tail of a shirt
+69792,shirtwaist shirtwaister,a blouse with buttons down the front; "in Britain they call a shirtwaist a shirtwaister"
+69793,shit dump,a coarse term for defecation; "he took a shit"
+69794,shittah shittah_tree,source of a wood mentioned frequently in the Bible; probably a species of genus Acacia
+69795,shittimwood,wood of the shittah tree used to make the ark of the Hebrew Tabernacle
+69796,shiv,a knife used as a weapon
+69797,shiva shivah shibah,(Judaism) a period of seven days of mourning after the death of close relative; "the family is sitting shiva"
+69798,shivaree chivaree charivari callithump callathump belling,a noisy mock serenade (made by banging pans and kettles) to a newly married couple
+69799,shmegegge schmegegge,(Yiddish) baloney; hot air; nonsense
+69800,shmooze,(Yiddish) a warm heart-to-heart talk
+69801,shoal,a sandbank in a stretch of water that is visible at low tide
+69802,shoal shallow,a stretch of shallow water
+69803,shock,(pathology) bodily collapse or near collapse caused by inadequate oxygen delivery to the cells; characterized by reduced cardiac output and rapid heartbeat and circulatory insufficiency and pallor; "loss of blood is an important cause of shock"
+69804,shock,a pile of sheaves of grain set on end in a field to dry; stalks of Indian corn set up in a field; "corn is bound in small sheaves and several sheaves are set up together in shocks"; "whole fields of wheat in shock"
+69805,shock,a bushy thick mass (especially hair); "he had an unruly shock of black hair"
+69806,shock blow,an unpleasant or disappointing surprise; "it came as a shock to learn that he was injured"
+69807,shock impact,the violent interaction of individuals or groups entering into combat; "the armies met in the shock of battle"
+69808,shock seismic_disturbance,an instance of agitation of the earth's crust; "the first shock of the earthquake came shortly after noon while workers were at lunch"
+69809,shock_absorber shock cushion,a mechanical damper; absorbs energy of sudden impulses; "the old car needed a new set of shocks"
+69810,shock_therapy shock_treatment,treatment of certain psychotic states by the administration of shocks that are followed by convulsions
+69811,shock_troops,soldiers who are specially trained and armed to lead an assault
+69812,shock_wave blast_wave,a region of high pressure travelling through a gas at a high velocity; "the explosion created a shock wave"
+69813,shocker,a shockingly bad person
+69814,shocker,a sensational message (in a film or play or novel)
+69815,shoddiness trashiness,the quality of being cheaply imitative of something better
+69816,shoddy,reclaimed wool fiber
+69817,shoe,(card games) a case from which playing cards are dealt one at a time
+69818,shoe,footwear shaped to fit the foot (below the ankle) with a flexible upper of leather or plastic and a sole and heel of heavier material
+69819,shoe_bomb,an explosive device concealed inside the heel and sole of a shoe
+69820,shoe_industry,an industry that manufactures and sells shoes
+69821,shoe_leather,leather used to make shoes
+69822,shoe_polish blacking,a substance used to produce a shiny protective surface on footwear
+69823,shoe_shop shoe-shop shoe_store,a shop where shoes are sold
+69824,shoebill shoebird Balaeniceps_rex,large stork-like bird of the valley of the White Nile with a broad bill suggesting a wooden shoe
+69825,shoebox,a structure resembling a shoebox (as a rectangular building or a cramped room or compartment)
+69826,shoebox,an oblong rectangular (usually cardboard) box designed to hold a pair of shoes
+69827,shoeful,the amount that a shoe will hold; "he emptied out a shoeful of water"
+69828,shoehorn,a device used for easing the foot into a shoe
+69829,shoelace shoe_lace shoestring shoe_string,a lace used for fastening shoes
+69830,shoemaking shoe_repairing cobbling,the shoemaker's trade
+69831,shoeshine,a shiny finish put on shoes with polish and buffing; "his trousers had a sharp crease and you could see your reflection in his shoeshine"
+69832,shoeshine,the act of shining shoes; "he charged a dollar for a shoeshine"
+69833,shoestring shoe_string,a small amount of money; "he managed it on a shoestring"
+69834,shoestring_catch,(baseball) a running catch made near the ground
+69835,shoestring_fungus,any of several fungi of the genus Armillaria that form brown stringy rhizomorphs and cause destructive rot of the roots of some trees such as apples or maples
+69836,shoetree,a wooden or metal device that is inserted into a shoe to preserve its shape when it is not being worn
+69837,shofar shophar,an ancient musical horn made from the horn of a ram; used in ancient times by the Israelites to sound a warning or a summons; used in synagogues today on solemn occasions
+69838,shogi,a form of chess played on a board of 81 squares; each player has 20 pieces
+69839,shogun,a hereditary military dictator of Japan; the shoguns ruled Japan until the revolution of 1867-68
+69840,shoji,a translucent screen made of a wooden frame covered with rice paper
+69841,shoofly,an undercover police officer who investigates other policemen
+69842,shoofly,a child's rocking chair with the seat built between two flat sides that are shaped to resemble an animal (such as a swan or duck)
+69843,shoofly_pie,open pie filled with a mixture of sweet crumbs and molasses
+69844,shook,a disassembled barrel; the parts packed for storage or shipment
+69845,shoot,a new branch
+69846,shoot,the act of shooting at targets; "they hold a shoot every weekend during the summer"
+69847,shoot-'em-up,a movie featuring shooting and violence
+69848,shoot-down,murder by shooting someone down in cold blood
+69849,shooter,(sports) a player who drives or kicks a ball at the goal (or a basketball player who shoots at the basket)
+69850,shooter crap-shooter,a gambler who throws dice in the game of craps
+69851,shooting,killing someone by gunfire; "when the shooting stopped there were three dead bodies"
+69852,shooting shot,the act of firing a projectile; "his shooting was slow but accurate"
+69853,shooting_brake,another name for a station wagon
+69854,shooting_gallery,a building (usually abandoned) where drug addicts buy and use heroin
+69855,shooting_gallery shooting_range,an enclosed firing range with targets for rifle or handgun practice
+69856,shooting_lodge shooting_box,a small country house used by hunters during the shooting season
+69857,shooting_preserve,a preserve on which hunting is permitted during certain months of the year
+69858,shooting_script,the final detailed script for making a movie or TV program
+69859,shooting_stick,device that resembles a spiked walking stick but the top opens into a seat
+69860,shop store,a mercantile establishment for the retail sale of goods or services; "he bought it at a shop on Cape Cod"
+69861,shop_bell,a bell attached to the door of a small shop; warns the proprietor that a customer has entered the shop
+69862,shop_boy,a young male shop assistant
+69863,shop_class shop,a course of instruction in a trade (as carpentry or electricity); "I built a birdhouse in shop"
+69864,shop_floor,workplace consisting of the part of a factory housing the machines; "the productive work is done on the shop floor"
+69865,shop_girl,a young female shop assistant
+69866,shop_steward steward,a union member who is elected to represent fellow workers in negotiating with management
+69867,shop_talk,talk about your business that only others in the same business can understand
+69868,shopaholic,a compulsive shopper; "shopaholics can never resist a bargain"
+69869,shopfront storefront,the front side of a store facing the street; usually contains display windows
+69870,shopkeeper tradesman storekeeper market_keeper,a merchant who owns or manages a shop
+69871,shoplifting shrinkage,the act of stealing goods that are on display in a store; "shrinkage is the retail trade's euphemism for shoplifting"
+69872,shopper,a commercial agent who shops at the competitor's store in order to compare their prices and merchandise with those of the store that employs her
+69873,shopper,someone who visits stores in search of articles to buy
+69874,shopping,the commodities purchased from stores; "she loaded her shopping into the car"; "women carrying home shopping didn't give me a second glance"
+69875,shopping,searching for or buying goods or services; "went shopping for a reliable plumber"; "does her shopping at the mall rather than down town"
+69876,shopping_bag,a bag made of plastic or strong paper (often with handles); used to transport goods after shopping
+69877,shopping_basket,a handbasket used to carry goods while shopping
+69878,shopping_cart,a handcart that holds groceries or other goods while shopping
+69879,shopping_list,a list of items to be purchased
+69880,shore,the land along the edge of a body of water
+69881,shore shoring,a beam or timber that is propped against a structure to provide support
+69882,shore_boulder,a boulder found on a shore remote from its place of origin
+69883,shore_duty,naval service at land bases
+69884,shore_leave liberty,leave granted to a sailor or naval officer
+69885,shore_patrol,the military police of the navy
+69886,shore_pine lodgepole lodgepole_pine spruce_pine Pinus_contorta,shrubby two-needled pine of coastal northwestern United States; red to yellow-brown bark fissured into small squares
+69887,shorebird shore_bird limicoline_bird,any of numerous wading birds that frequent mostly seashores and estuaries
+69888,shoreline,a boundary line between land and water
+69889,shoring shoring_up propping_up,the act of propping up with shores
+69890,short,the location on a baseball field where the shortstop is stationed
+69891,short-horned_grasshopper acridid,grasshopper with short antennae
+69892,short-spurred_fragrant_orchid Gymnadenia_odoratissima,similar to Gymnadenia conopsea but with smaller flowers on shorter stems and having much shorter spurs
+69893,short-staple_cotton,cotton with relatively short fibers
+69894,short-tailed_shrew Blarina_brevicauda,North American shrew with tail less than half its body length
+69895,short-term_memory STM immediate_memory,what you can repeat immediately after perceiving it
+69896,short_account,a brokerage account of someone who sells short (sells securities he does not own)
+69897,short_account,the aggregate of short sales on an open market
+69898,short_bone os_breve,a bone that is of approximately equal dimension in all directions
+69899,short_circuit short,accidental contact between two points in an electric circuit that have a potential difference
+69900,short_covering,the purchase of securities or commodities by a short seller to close out a short sale
+69901,short_division,the operation of division in which the sequence of steps is performed without writing them out
+69902,short_gastric_artery arteria_gastrica_breves vasa_brevis,several small arteries branching off of the splenic artery and going to the greater curvature of the stomach
+69903,short_iron,an iron with a short shaft and pitched face; for hitting short high shots
+69904,short_line,a transportation system that operates over relatively short distances
+69905,short_list shortlist,a list of applicants winnowed from a longer list who have been deemed suitable and from which the successful person will be chosen
+69906,short_loin,the portion of the loin from which porterhouse steaks are cut
+69907,short_order,an order for food that can be prepared quickly
+69908,short_pants shorts trunks,(used in the plural) trousers that end at or above the knee
+69909,short_ribs,cut of beef containing rib ends near the sternum
+69910,short_sale short_selling,sale of securities or commodity futures not owned by the seller (who hopes to buy them back later at a lower price)
+69911,short_saphenous_vein,a vein running from the foot up the back of the leg to the knee
+69912,short_shrift summary_treatment,a brief and unsympathetic rejection; "they made short shrift of my request"
+69913,short_sleeve,a sleeve extending from the shoulder to the elbow
+69914,short_story,a prose narrative shorter than a novel
+69915,short_subject,a brief film; often shown prior to showing the feature
+69916,short_ton ton net_ton,a United States unit of weight equivalent to 2000 pounds
+69917,short_wave,a radio wave with a wavelength less than 100 meters (a frequency greater than 3 megahertz)
+69918,shortbread shortbread_cookie,very rich thick butter cookie
+69919,shortcake,very short biscuit dough baked as individual biscuits or a round loaf; served with sweetened fruit and usually whipped cream
+69920,shortcut cutoff crosscut,a route shorter than the usual one
+69921,shortener,any agent that shortens; "alcohol is a great shortener of life"
+69922,shortening,fat such as butter or lard used in baked goods
+69923,shortening,act of decreasing in length; "the dress needs shortening"
+69924,shortfin_mako Isurus_oxyrhincus,very swift active bluish shark found worldwide in warm waters; important game fish
+69925,shortgrass short-grass,any of various grasses that are short and can tolerate drought conditions; common on the dry upland plains just east of the Rocky Mountains
+69926,shorthand stenography tachygraphy,a method of writing rapidly using an abbreviated symbolic system
+69927,shortia,any plant of the genus Shortia; evergreen perennial herbs with smooth leathery basal leaves and showy white solitary flowers
+69928,shortleaf_pine short-leaf_pine shortleaf_yellow_pine Pinus_echinata,large pine of southern United States having short needles in bunches of 2-3 and red-brown bark when mature
+69929,shortness,the condition of being short of something; "there was no shortness of money"; "can cause shortness of breath"
+69930,shortness,the property of being of short spatial extent; "the shortness of the Channel crossing"
+69931,shortness,the property of being of short temporal extent; "the shortness of air travel time"
+69932,shortness,the property of being shorter than average stature
+69933,shortness truncation,the property of being truncated or short
+69934,shortness_of_breath SOB breathlessness,a dyspneic condition
+69935,shortstop,(baseball) the person who plays the shortstop position
+69936,shortstop short,the fielding position of the player on a baseball team who is stationed between second and third base
+69937,shortwave_diathermy_machine,a diathermy machine that uses short wave radiation as the source of heat
+69938,shot,sports equipment consisting of a heavy metal ball used in the shot put; "he trained at putting the shot"
+69939,shot,an explosive charge used in blasting
+69940,shot,a blow hard enough to cause injury; "he is still recovering from a shot to his leg"; "I caught him with a solid shot to the chin"
+69941,shot,an attempt to score in a game
+69942,shot crack,a chance to do something; "he wanted a shot at the champion"
+69943,shot pellet,a solid missile discharged from a firearm; "the shot buzzed past his ear"
+69944,shot shaft slam dig barb jibe gibe,an aggressive remark directed at a person like a missile and intended to have a telling effect; "his parting shot was `drop dead'"; "she threw shafts of sarcasm"; "she takes a dig at me every chance she gets"
+69945,shot shooter,a person who shoots (usually with respect to their ability to shoot); "he is a crack shot"; "a poor shooter"
+69946,shot stab,informal words for any attempt or effort; "he gave it his best shot"; "he took a stab at forecasting"
+69947,shot_glass jigger pony,a small glass adequate to hold a single swallow of whiskey
+69948,shot_hole,drill hole for a charge of an explosive
+69949,shot_metal,an alloy that is 98% lead and 2% arsenic; used in making small shot
+69950,shot_put,an athletic competition in which a heavy metal ball is hurled as far as possible
+69951,shot_putter,an athlete who competes in the shot put
+69952,shot_tower,tower of a kind once used to make shot; molten lead was poured through a sieve and dropped into water
+69953,shotgun scattergun,firearm that is a double-barreled smoothbore shoulder weapon for firing shot at short ranges
+69954,shotgun_shell,a shell containing lead shot; used in shotguns
+69955,shoulder,a cut of meat including the upper joint of the foreleg
+69956,shoulder,the part of the body between the neck and the upper arm
+69957,shoulder,the part of a garment that covers or fits over the shoulder; "an ornamental gold braid on the shoulder of his uniform"
+69958,shoulder berm,a narrow edge of land (usually unpaved) along the side of a road; "the car pulled off onto the shoulder"
+69959,shoulder shoulder_joint articulatio_humeri,a ball-and-socket joint between the head of the humerus and a cavity of the scapula
+69960,shoulder_bag,a large handbag that can be carried by a strap looped over the shoulder
+69961,shoulder_board shoulder_mark,epaulets that indicate rank
+69962,shoulder_flash,something worn on the shoulder of a military uniform as an emblem of a division etc.
+69963,shoulder_girdle pectoral_arch,the bony arch formed by the collarbones and shoulder blades in humans
+69964,shoulder_holster,a holster worn over your shoulder so a gun can be concealed under your jacket
+69965,shoulder_pad,protective garment consisting of a hard rounded pad worn by football players to protect their shoulders
+69966,shoulder_patch,patch worn on the shoulder of a military uniform to indicate rank
+69967,shouldered_arch,an arch consisting of a horizontal lintel supported at each end by corbels that project into the aperture
+69968,shove,the act of shoving (giving a push to someone or something); "he gave the door a shove"
+69969,shovel,a fire iron consisting of a small shovel used to scoop coals or ashes in a fireplace
+69970,shovel,a hand tool for lifting loose material; consists of a curved container or scoop and a handle
+69971,shovel shovelful spadeful,the quantity a shovel can hold
+69972,shovel_board shove-halfpenny shove-ha'penny,a game in which coins or discs are slid by hand across a board toward a mark
+69973,shovel_hat,a stiff broad-brimmed hat with the brim turned up at the sides and projecting in front; worn by some clergymen in Britain
+69974,shoveler shoveller,a worker who shovels; "a shoveler of coal"
+69975,shoveler shoveller broadbill Anas_clypeata,freshwater duck of the northern hemisphere having a broad flat bill
+69976,shovelhead bonnethead bonnet_shark Sphyrna_tiburo,small harmless hammerhead having a spade-shaped head; abundant in bays and estuaries
+69977,show,a social event involving a public performance or entertainment; "they wanted to see some of the shows on Broadway"
+69978,show,the act of publicly exhibiting or entertaining; "a remarkable show of skill"
+69979,show-stopper showstopper,something that is strikingly attractive or has great popular appeal; "she has a show-stopper of a smile"; "the brilliant orange flowers against the green foliage were a showstopper"
+69980,show-stopper showstopper stopper,an act so striking or impressive that the show must be delayed until the audience quiets down
+69981,show_bill show_card theatrical_poster,a poster advertising a show or play
+69982,show_time,the point in time at which an entertainment (a movie or television show etc.) is scheduled to begin
+69983,show_trial,a trial held for show; the guilt of the accused person has been decided in advance
+69984,showboat,a river steamboat on which theatrical performances could be given (especially on the Mississippi River)
+69985,showcase show_window,a setting in which something can be displayed to best effect; "it was a showcase for democracy in Africa"
+69986,shower,a party of friends assembled to present gifts (usually of a specified kind) to a person; "her friends organized a baby shower for her when she was expecting"
+69987,shower,a plumbing fixture that sprays water over you; "they installed a shower in the bathroom"
+69988,shower cascade,a sudden downpour (as of tears or sparks etc) likened to a rain shower; "a little shower of rose petals"; "a sudden cascade of sparks"
+69989,shower rain_shower,a brief period of precipitation; "the game was interrupted by a brief shower"
+69990,shower shower_bath,washing yourself by standing upright under water sprayed from a nozzle; "he took a shower after the game"
+69991,shower_cap,a tight cap worn to keep hair dry while showering
+69992,shower_curtain,a curtain that keeps water from splashing out of the shower area
+69993,shower_room,a room with several showers
+69994,shower_stall shower_bath,booth for washing yourself, usually in a bathroom
+69995,showerhead,a perforated nozzle that showers water on a bather
+69996,showjumping stadium_jumping,riding horses in competitions over set courses to demonstrate skill in jumping over obstacles
+69997,showman,a person skilled at making effective presentations
+69998,showman promoter impresario,a sponsor who books and stages public entertainments
+69999,showmanship,the ability to present something (especially theatrical shows) in an attractive manner
+70000,showplace,a place that is frequently exhibited and visited for its historical interest or natural beauty
+70001,showroom salesroom saleroom,an area where merchandise (such as cars) can be displayed; "in Britain a showroom is called a salesroom"
+70002,showy_daisy Erigeron_speciosus,plant having branching leafy stems each branch with an especially showy solitary flower head with many narrow pink or lavender or white rays; northwestern United States mountains
+70003,showy_goldenrod,a variety of goldenrod
+70004,showy_milkweed Asclepias_speciosa,milkweed of southern North America having large starry purple and pink flowers
+70005,showy_orchis purple_orchis purple-hooded_orchis Orchis_spectabilis,North American orchid having a spike of violet-purple flowers mixed with white; sepals and petals form a hood
+70006,showy_sunflower Helianthus_laetiflorus,tall rough-leaved perennial with a few large flower heads; central United States
+70007,shrapnel,shell containing lead pellets that explodes in flight
+70008,shred scintilla whit iota tittle smidgen smidgeon smidgin smidge,a tiny or scarcely detectable amount
+70009,shredder,a device that shreds documents (usually in order to prevent the wrong people from reading them)
+70010,shrew shrewmouse,small mouselike mammal with a long snout; related to moles
+70011,shrew termagant,a scolding nagging bad-tempered woman
+70012,shrew_mole,slender mole having a long snout and tail
+70013,shrewdness astuteness perspicacity perspicaciousness,intelligence manifested by being astute (as in business dealings)
+70014,shrewishness,a nature given to nagging or scolding
+70015,shrift,the act of being shriven
+70016,shrike,any of numerous Old World birds having a strong hooked bill that feed on smaller animals
+70017,shrilling,a continuing shrill noise; "the clash of swords and the shrilling of trumpets"--P. J. Searles
+70018,shrillness,the quality of being sharp or harsh to the senses; "the shrillness of her hair color"
+70019,shrillness stridence stridency,having the timbre of a loud high-pitched sound
+70020,shrimp,small slender-bodied chiefly marine decapod crustaceans with a long tail and single pair of pincers; many species are edible
+70021,shrimp_Newburg,shrimp in Newburg sauce usually served in a rice ring
+70022,shrimp_butter,butter blended with chopped shrimp or seasoned with essence from shrimp shells
+70023,shrimp_cocktail,a cocktail of cold cooked shrimp and a sauce
+70024,shrimper,a vessel engaged in shrimping
+70025,shrimpfish shrimp-fish,slender tropical shallow-water East Indian fish covered with transparent plates
+70026,shrine,a place of worship hallowed by association with some sacred thing or person
+70027,shrink-wrap,the clinging transparent plastic film that is used to shrinkwrap something
+70028,shrink-wrapped_software,software on CD-ROMs that are boxed and shrink-wrapped and sold in stores (implying a widely supported standard platform)
+70029,shrinkage,the amount by which something shrinks
+70030,shrinking,the act of becoming less
+70031,shrinking shrinkage,process or result of becoming less or smaller; "the material lost 2 inches per yard in shrinkage"
+70032,shroud,a line that suspends the harness from the canopy of a parachute
+70033,shrub bush,a low woody perennial plant usually having several major stems
+70034,shrubbery,an area where a number of shrubs are planted
+70035,shrubbery,a collection of shrubs growing together
+70036,shrubby_St_John's_wort Hypericum_prolificum Hypericum_spathulatum,stiff shrub having oblong entire leaves and dense cymes of yellow flowers
+70037,shrubby_penstemon lowbush_penstemon Penstemon_fruticosus,low bushy plant with large showy pale lavender or blue-violet flowers in narrow clusters at ends of stems
+70038,shrublet,dwarf shrub
+70039,shrug,a gesture involving the shoulders
+70040,shtik schtik shtick schtick,(Yiddish) a contrived and often used bit of business that a performer uses to steal attention; "play it straight with no shtik"
+70041,shtik schtik shtick schtick,(Yiddish) a prank or piece of clowning; "his shtik made us laugh"
+70042,shtik schtik shtick schtick,(Yiddish) a devious trick; a bit of cheating; "how did you ever fall for a shtik like that?"
+70043,shtik shtick schtik schtick,(Yiddish) a little; a piece; "give him a shtik cake"; "he's a shtik crazy"; "he played a shtik Beethoven"
+70044,shtikl shtickl schtikl schtickl,a really little shtik; "have a shtikl cake"
+70045,shucks,an expression of disappointment or irritation
+70046,shuffle shuffling make,the act of mixing cards haphazardly
+70047,shuffleboard shovelboard,a game in which players use long sticks to shove wooden disks onto the scoring area marked on a smooth surface
+70048,shuffler,the card player who shuffles the cards
+70049,shuffler,someone who walks without raising the feet
+70050,shufti,a quick look around (originally military slang); "take a shufti while you're out there"
+70051,shunt,a passage by which a bodily fluid (especially blood) is diverted from one channel to another; "an arteriovenus shunt"
+70052,shunt,implant consisting of a tube made of plastic or rubber; for draining fluids within the body
+70053,shunt electrical_shunt bypass,a conductor having low resistance in parallel with another device to divert a fraction of the current
+70054,shunter,a small locomotive used to move cars around but not to make trips
+70055,shuteye shut-eye,informal term for sleep
+70056,shutout skunk,a defeat in a game where one side fails to score
+70057,shutter,a mechanical device on a camera that opens and closes to control the time of a photographic exposure
+70058,shutter,a hinged blind for a window
+70059,shutterbug,a photography enthusiast
+70060,shutting closing,the act of closing something
+70061,shutting_post,the gatepost against which the gate closes
+70062,shuttle,public transport that consists of a bus or train or airplane that flies back and forth between two points
+70063,shuttle,bobbin that passes the weft thread between the warp threads
+70064,shuttle_bus,shuttle consisting of a bus that travels between two points
+70065,shuttle_diplomacy,international negotiations conducted by a mediator who frequently flies back and forth between the negotiating parties; "Kissinger's shuttle diplomacy in the Middle East"
+70066,shuttle_helicopter,a helicopter that shuttles back and forth
+70067,shuttlecock bird birdie shuttle,badminton equipment consisting of a ball of cork or rubber with a crown of feathers
+70068,shy,a quick throw; "he gave the ball a shy to the first baseman"
+70069,shy_person shrinking_violet,someone who shrinks from familiarity with others
+70070,shyness,a feeling of fear of embarrassment
+70071,shyster pettifogger,a person (especially a lawyer or politician) who uses unscrupulous or unethical methods
+70072,sial,the granitelike rocks that form the outermost layer of the earth's crust; rich in silicon and aluminum
+70073,sialadenitis,inflammation of the salivary glands
+70074,sialolith salivary_calculus,a stone formed in the salivary gland
+70075,siamang Hylobates_syndactylus Symphalangus_syndactylus,large black gibbon of Sumatra having the 2nd and 3rd toes partially united by a web
+70076,siamese siamese_connection,an inlet with two or more couplings to which a hose can be attached so that fire engines can pump water into the sprinkler system of a building
+70077,sibilant sibilant_consonant,a consonant characterized by a hissing sound (like s or sh)
+70078,sibilation assibilation,pronunciation with a sibilant (hissing or whistling) sound
+70079,sibling sib,a person's brother or sister
+70080,sibyl,a woman who tells fortunes
+70081,sibyl,(ancient Rome) a woman who was regarded as an oracle or prophet
+70082,sick,people who are sick; "they devote their lives to caring for the sick"
+70083,sick_bag sickbag,a bag provided on an airplane for passengers who are suffering from airsickness and need to vomit
+70084,sick_benefit sickness_benefit,money paid (by the government) to someone who is too ill to work
+70085,sick_call sick_parade,the daily military formation at which individuals report to the medical officer as sick
+70086,sick_headache,a headache accompanied by nausea
+70087,sick_joke,a joke in bad taste
+70088,sick_leave,a leave of absence from work because of illness
+70089,sick_list,a list of those who are ill (e.g. on a warship or in a regiment etc)
+70090,sick_pay,wages paid to an employee who is on sick leave
+70091,sick_person diseased_person sufferer,a person suffering from an illness
+70092,sickbay sick_berth,(nautical) a room for the treatment of the sick or injured (as on a ship)
+70093,sickbed,the bed on which a sick person lies
+70094,sickle reaping_hook reap_hook,an edge tool for cutting grass or crops; has a curved blade and a short handle
+70095,sickle-cell_anemia sickle-cell_anaemia sickle-cell_disease crescent-cell_anemia crescent-cell_anaemia drepanocytic_anemia drepanocytic_anaemia,a congenital form of anemia occurring mostly in blacks; characterized by abnormal blood cells having a crescent shape
+70096,sickle_alfalfa sickle_lucerne sickle_medick Medicago_falcata,European medic naturalized in North America having yellow flowers and sickle-shaped pods
+70097,sickle_cell,an abnormal red blood cell that has a crescent shape and an abnormal form of hemoglobin
+70098,sickle_feather,one of the long curved tail feathers of a rooster
+70099,sicklepod Arabis_Canadensis,North American rock cress having very long curved pods
+70100,sicklepod Senna_obtusifolia Cassia_tora,cosmopolitan tropical herb or subshrub with yellow flowers and slender curved pods; a weed; sometimes placed in genus Cassia
+70101,sickleweed_golden_aster,a variety of golden aster
+70102,sickness,defectiveness or unsoundness; "drugs have become a sickness they cannot cure"; "a great sickness of his judgment"
+70103,sickroom,a room to which a sick person is confined
+70104,side,a place within a region identified relative to a center or reference location; "they always sat on the right side of the church"; "he never left my side"
+70105,side,a line segment forming part of the perimeter of a plane figure; "the hypotenuse of a right triangle is always the longest side"
+70106,side,one of two or more contesting groups; "the Confederate side was prepared to attack"
+70107,side,a family line of descent; "he gets his brains from his father's side"
+70108,side,an aspect of something (as contrasted with some other implied aspect); "he was on the heavy side"; "he is on the purchasing side of the business"; "it brought out his better side"
+70109,side,either the left or right half of a body; "he had a pain in his side"
+70110,side,an extended outer surface of an object; "he turned the box over to examine the bottom side"; "they painted all four sides of the house"
+70111,side face,a surface forming part of the outside of an object; "he examined all sides of the crystal"; "dew dripped from the face of the leaf"; "they travelled across the face of the continent"
+70112,side position,an opinion that is held in opposition to another in an argument or dispute; "there are two sides to every question"
+70113,side side_of_meat,a lengthwise dressed half of an animal's carcass used for food
+70114,side-blotched_lizard sand_lizard Uta_stansburiana,one of the most abundant lizards in the arid western United States
+70115,side-glance side-look,a glance sideways; "she shot him an impatient side-glance"
+70116,side-wheeler,a paddle steamer having a paddle wheel on each side
+70117,side_chapel,a small chapel off the side aisle of a church
+70118,side_dish side_order entremets,a dish that is served with, but is subordinate to, a main course
+70119,side_door side_entrance,an exterior door at one side of a building
+70120,side_effect,a secondary and usually adverse effect of a drug or therapy; "severe headaches are one of the side effects of the drug"
+70121,side_effect fallout,any adverse and unwanted secondary effect; "a strategy to contain the fallout from the accounting scandal"
+70122,side_judge,a football official
+70123,side_of_beef,dressed half of a beef carcass
+70124,side_of_pork,dressed half of a hog carcass
+70125,side_pocket,a pocket on the side of a billiard table
+70126,side_road,a minor road branching off of a main road
+70127,side_street,a street intersecting a main street and terminating there
+70128,side_view,a view from the side of something
+70129,side_yard,the grounds at either side of a house
+70130,sidebar,(law) a courtroom conference between the lawyers and the judge that is held out of the jury's hearing
+70131,sidebar,a short news story presenting sidelights on a major story
+70132,sideboard,a removable board fitted on the side of a wagon to increase its capacity
+70133,sideboard,a board that forms part of the side of a bed or crib
+70134,sideburn burnside mutton_chop side-whiskers,facial hair that has grown down the side of a man's face in front of the ears (especially when the rest of the beard is shaved off)
+70135,sidecar,a cocktail made of orange liqueur with lemon juice and brandy
+70136,sidecar,conveyance consisting of a small carrier attached to the side of a motorcycle
+70137,sidelight running_light,light carried by a boat that indicates the boat's direction; vessels at night carry a red light on the port bow and a green light on the starboard bow
+70138,sideline,an auxiliary line of merchandise
+70139,sideline out_of_bounds,a line that marks the side boundary of a playing field
+70140,sidereal_day day,the time for one complete rotation of the earth relative to a particular star, about 4 minutes shorter than a mean solar day
+70141,sidereal_hour,1/24 of a sidereal day
+70142,sidereal_month,period between successive conjunctions with a star, 27.322 days
+70143,sidereal_time,measured by the diurnal motion of stars
+70144,sidereal_year,the time for the earth to make one complete revolution around the sun, relative to the fixed stars
+70145,siderite,a meteorite consisting principally of nickel and iron
+70146,siderite chalybite,iron ore in the form of ferrous carbonate
+70147,sideroblast,an erythroblast having granules of ferritin
+70148,sideroblastic_anemia sideroblastic_anaemia siderochrestic_anemia siderochrestic_anaemia,refractory anemia characterized by sideroblasts in the bone marrow
+70149,siderocyte,an abnormal red blood cell containing granules of iron not bound in hemoglobin
+70150,sideropenia,a deficiency of iron; results from inadequate iron in the diet or from hemorrhage
+70151,siderosis,fibrosis of the lung caused by iron dust; occurs among welders and other metal workers
+70152,sidesaddle,a saddle for a woman; rider sits with both feet on the same side of the horse
+70153,sideshow,a subordinate incident of little importance relative to the main event; "instruction is not an educational sideshow"
+70154,sideshow,a minor show that is part of a larger one (as at the circus)
+70155,sidesman,(Church of England) an assistant to the churchwarden; collects offerings of money in the church
+70156,sidestep,a step to one side (as in boxing or dancing)
+70157,sidestroke,a swimming stroke in which the arms move forward and backward while the legs do a scissors kick
+70158,sideswipe,a glancing blow from or on the side of something (especially motor vehicles)
+70159,sidewalk pavement,walk consisting of a paved area for pedestrians; usually beside a street or roadway
+70160,sidewall,the side of an automobile tire; "the car had white sidewalls"
+70161,sidewall,a wall that forms the side of a structure
+70162,sidewinder,air-to-air missile with infrared homing device
+70163,sidewinder horned_rattlesnake Crotalus_cerastes,small pale-colored desert rattlesnake of southwestern United States; body moves in an s-shaped curve
+70164,siding,material applied to the outside of a building to make it weatherproof
+70165,siding railroad_siding turnout sidetrack,a short stretch of railroad track used to store rolling stock or enable trains on the same line to pass
+70166,siege besieging beleaguering military_blockade,the action of an armed force that surrounds a fortified place and isolates it while continuing to attack
+70167,sienna,an earth color containing ferric oxides; used as a pigment
+70168,sierra,a range of mountains (usually with jagged peaks and irregular outline)
+70169,sierra Scomberomorus_sierra,a Spanish mackerel of western North America
+70170,siesta,a nap in the early afternoon (especially in hot countries)
+70171,sieva_bean butter_bean butter-bean_plant lima_bean Phaseolus_lunatus,bush bean plant cultivated especially in southern United States having small flat edible seeds
+70172,sieva_bean butter_bean butterbean civet_bean,small flat green bean similar to lima beans
+70173,sieve screen,a strainer for separating lumps from powdered material or grading particles
+70174,sieve_tube,tube formed by cells joined end-to-end through which nutrients flow in flowering plants and brown algae
+70175,sifter,a household sieve (as for flour)
+70176,sigeh,a Shiite tradition of temporary marriage permitted in Iran that allows a couple to specify the terms of their relationship; can last from a few minutes to 99 years; "sigeh legally wraps premarital sex in an Islamic cloak"
+70177,sigh,a sound like a person sighing; "she heard the sigh of the wind in the trees"
+70178,sigh suspiration,an utterance made by exhaling audibly
+70179,sight,anything that is seen; "he was a familiar sight on the television"; "they went to Paris to see the sights"
+70180,sight,a range of mental vision; "in his sight she could do no wrong"
+70181,sight,an instance of visual perception; "the sight of his wife brought him back to reality"; "the train was an unexpected sight"
+70182,sight ken,the range of vision; "out of sight of land"
+70183,sight vision visual_sense visual_modality,the ability to see; the visual faculty
+70184,sight_draft sight_bill,a draft payable on presentation
+70185,sight_gag visual_joke,a joke whose effect is achieved by visual means rather than by speech (as in a movie)
+70186,sight_setting,the adjustment of a gunsight for elevation and windage on a particular range under favorable light conditions
+70187,sighting,the act of observing; "several sightings of enemy troops were reported"
+70188,sightreader,a performer who reads without preparation or prior acquaintance (as in music)
+70189,sights,an optical instrument for aiding the eye in aiming, as on a firearm or surveying instrument
+70190,sightseeing rubber-necking,going about to look at places of interest
+70191,sightseer excursionist tripper rubberneck,a tourist who is visiting sights of interest
+70192,sigma,the 18th letter of the Greek alphabet
+70193,sigmoid_colon sigmoid_flexure,the s-shaped curve between the descending colon and the rectum
+70194,sigmoid_sinus sinus_sigmoideus,an S-shaped dural sinus on the temporal and occipital bones
+70195,sigmoid_vein vena_sigmoideus,tributaries of the inferior mesenteric vein; drains the sigmoid colon
+70196,sigmoidectomy,surgical removal of part or all of the sigmoid colon (usually to remove a malignant tumor)
+70197,sigmoidoscope flexible_sigmoidoscope,an endoscope (a flexible fiberoptic probe) for examining the sigmoid colon
+70198,sigmoidoscopy flexible_sigmoidoscopy,visual examination (with a sigmoidoscope) of the lower third of the colon in a search for polyps
+70199,sign,(medicine) any objective evidence of the presence of a disorder or disease; "there were no signs of asphyxiation"
+70200,sign,a fundamental linguistic unit linking a signifier to that which is signified; "The bond between the signifier and the signified is arbitrary"--de Saussure
+70201,sign,a gesture that is part of a sign language
+70202,sign,a character indicating a relation between quantities; "don't forget the minus sign"
+70203,sign,a public display of a message; "he posted signs in all the shop windows"
+70204,sign mark,a perceptible indication of something not immediately apparent (as a visible clue that something has happened); "he showed signs of strain"; "they welcomed the signs of spring"
+70205,sign_industry,an industry that produces signs
+70206,sign_language signing,language expressed by visible hand gestures
+70207,sign_manual,the signature of a sovereign on an official document
+70208,sign_of_the_cross,a gesture with the right hand moving to form a cross; used by Catholics as a profession of faith
+70209,sign_of_the_zodiac star_sign sign mansion house planetary_house,(astrology) one of 12 equal areas into which the zodiac is divided
+70210,sign_painter,someone who paints signs and billboards etc.
+70211,signage,signs collectively (especially commercial signs or posters); "there will be signage displayed at each post"
+70212,signal,an electric quantity (voltage or current or field strength) whose modulation represents coded information about the source from which it comes
+70213,signal,any incitement to action; "he awaited the signal to start"; "the victory was a signal for wild celebration"
+70214,signal signaling sign,any nonverbal action or gesture that encodes a message; "signals from the boat suddenly stopped"
+70215,signal-to-noise_ratio signal-to-noise signal/noise_ratio signal/noise S/N,the ratio of signal intensity to noise intensity
+70216,signal_box signal_tower,a building from which signals are sent to control the movements of railway trains
+70217,signal_detection detection,the detection that a signal is being received
+70218,signal_fire signal_light,a fire set as a signal
+70219,signal_level,the amplitude level of the desired signal
+70220,signaler signaller,someone who communicates by signals
+70221,signaling_device,a device used to send signals
+70222,signalization signalisation,a conspicuous indication
+70223,signalman,a railroad employee in charge of signals and point in a railroad yard
+70224,signals_intelligence SIGINT,intelligence information gathered from communications intelligence or electronics intelligence or telemetry intelligence
+70225,signature,your name written in your own handwriting
+70226,signature,a sheet with several pages printed on it; it folds to page size and is bound with other signatures to form a book
+70227,signature signature_tune theme_song,a melody used to identify a performer or a dance band or radio/tv program
+70228,signature_recognition,biometric identification by automatically scanning a person's signature and matching it electronically against a library of known signatures
+70229,signboard sign,structure displaying a board on which advertisements can be posted; "the highway was lined with signboards"
+70230,signer,someone who can use sign language to communicate
+70231,signer signatory,someone who signs and is bound by a document
+70232,signet,a seal (especially one used to mark documents officially)
+70233,signet_ring seal_ring,a ring bearing a signet
+70234,significance,the quality of being significant; "do not underestimate the significance of nuclear power"
+70235,significance import implication,a meaning that is not expressly stated but can be inferred; "the significance of his remark became clear only later"; "the expectation was spread both by word and by implication"
+70236,significant_digit significant_figure,any digit of a number that is known with certainty; any digit of a number beginning with the leftmost non-zero digit and ending with the rightmost non-zero digit (or a zero considered to be the exact value); "he calculated the answer to four significant figures"
+70237,signor signior,used as an Italian courtesy title; can be prefixed to the name or used separately
+70238,signora,an Italian title of address equivalent to Mrs. when used before a name
+70239,signore,an Italian title of respect for a man; equivalent to the English `sir'; used separately (not prefixed to his name)
+70240,signorina,an Italian courtesy title for an unmarried woman; equivalent to `Miss', it is either used alone or before a name
+70241,signpost guidepost,a post bearing a sign that gives directions or shows the way
+70242,silage ensilage,fodder harvested while green and kept succulent by partial fermentation as in a silo
+70243,sild,any of various young herrings (other than brislings) canned as sardines in Norway
+70244,sildenafil sildenafil_citrate Viagra,virility drug (trade name Viagra) used to treat erectile dysfunction in men
+70245,silence,the state of being silent (as when no one is speaking); "there was a shocked silence"; "he gestured for silence"
+70246,silence quiet,the absence of sound; "he needed silence in order to sleep"; "the street was quiet"
+70247,silencer,short tube attached to the muzzle of a gun that deadens the sound of firing
+70248,silencer muffler,a tubular acoustic device inserted in the exhaust system that is designed to reduce noise
+70249,silene campion catchfly,any plant of the genus Silene
+70250,silent_butler,a small receptacle with a handle and a hinged lid; used for collecting crumbs or ashes
+70251,silent_movie silent_picture silents,a movie without a soundtrack
+70252,silent_partner sleeping_partner,a partner (who usually provides capital) whose association with the enterprise is not public knowledge
+70253,silent_treatment,an aloof refusal to speak to someone you know
+70254,silenus,any of the minor woodland deities who were companions of Dionysus (similar to the satyrs)
+70255,silesia,a sturdy twill-weave cotton fabric; used for pockets and linings
+70256,silex,a pure form of finely ground silica
+70257,silhouette,an outline of a solid object (as cast by its shadow)
+70258,silhouette,a drawing of the outline of an object; filled in with some uniform color
+70259,silica silicon_oxide silicon_dioxide,a white or colorless vitreous insoluble solid (SiO2); various forms occur widely in the earth's crust as quartz or cristobalite or tridymite or lechatelierite
+70260,silica_gel,a porous form of silica that is highly absorbent
+70261,silicate,a salt or ester derived from silicic acid
+70262,silicic_acid,a jellylike substance (hydrated silica)
+70263,silicide,any of various compounds of silicon with a more electropositive element or radical
+70264,silicle,short broad silique occurring in some cruciferous plants
+70265,silicon Si atomic_number_14,a tetravalent nonmetallic element; next to oxygen it is the most abundant element in the earth's crust; occurs in clay and feldspar and granite and quartz and sand; used as a semiconductor in transistors
+70266,silicon_bronze,a bronze with 2-3% silicon that is resistant to corrosion
+70267,silicon_carbide,an extremely hard blue-black crystalline compound (SiC) used as an abrasive and a heat refractory material; crystals of silicon carbide can be used as semiconductors
+70268,silicone silicone_polymer,any of a large class of siloxanes that are unusually stable over a wide range of temperatures; used in lubricants and adhesives and coatings and synthetic rubber and electrical insulation
+70269,silicone_resin,a polymeric silicone compound
+70270,silicone_rubber,made from silicone elastomers; retains flexibility resilience and tensile strength over a wide temperature range
+70271,silicosis,a lung disease caused by inhaling particles of silica or quartz or slate
+70272,silique siliqua,narrow elongated seed capsule peculiar to the family Cruciferae
+70273,silk,animal fibers produced by silkworms and other larvae that spin cocoons and by most spiders
+70274,silk,a fabric made from the fine threads produced by certain insect larvae
+70275,silk_gland serictery sericterium,silk-producing gland of insects (especially of a silkworm) or spiders
+70276,silk_oak,any of several Australian timber trees having usually fernlike foliage and mottled wood used in cabinetry and veneering
+70277,silk_tree Albizia_julibrissin Albizzia_julibrissin,attractive domed or flat-topped Asiatic tree having bipinnate leaves and flowers with long silky stamens
+70278,silk_vine Periploca_graeca,deciduous climber for arches and fences having ill-scented but interesting flowers and poisonous yellow fruits; cultivated for its dark shining foliage; southeastern Europe to Asia Minor
+70279,silkiness sleekness,the smooth feel of silk fabric
+70280,silks,the brightly colored garments of a jockey; emblematic of the stable
+70281,silkscreen silk_screen_print serigraph,a print made using a stencil process in which an image or design is superimposed on a very fine mesh screen and printing ink is squeegeed onto the printing surface through the area of the screen that is not covered by the stencil
+70282,silkworm,the commercially bred hairless white caterpillar of the domestic silkworm moth which spins a cocoon that can be processed to yield silk fiber; the principal source of commercial silk
+70283,silkworm giant_silkworm wild_wilkworm,larva of a saturniid moth; spins a large amount of strong silk in constructing its cocoon
+70284,silkworm_seed,eggs of a silkworm
+70285,silky_anteater two-toed_anteater Cyclopes_didactylus,squirrel-sized South American toothless anteater with long silky golden fur
+70286,silky_cornel silky_dogwood Cornus_amomum,shrub of eastern North America having purplish stems and blue fruit
+70287,silky_dogwood Cornus_obliqua,shrub of eastern North America closely resembling silky cornel
+70288,silky_oak Grevillea_robusta,medium to tall fast-growing tree with orange flowers and feathery bipinnate leaves silky-hairy beneath; eastern Australia
+70289,silky_pocket_mouse Perognathus_flavus,small pale yellowish soft-furred rodent of southwestern United States and Mexico
+70290,silky_tamarin Leontocebus_rosalia,golden South American monkey with long soft hair forming a mane
+70291,silky_terrier Sydney_silky,Australian breed of toy dogs having a silky blue coat
+70292,silky_wisteria Wisteria_venusta,a wisteria of China having white flowers
+70293,sill,(geology) a flat (usually horizontal) mass of igneous rock between two layers of older sedimentary rock
+70294,sill,structural member consisting of a continuous horizontal timber forming the lowest member of a framework or supporting structure
+70295,silly,a word used for misbehaving children; "don't be a silly"
+70296,silly_season,a time usually late summer characterized by exaggerated news stories about frivolous matters for want of real news
+70297,silo,military installation consisting of an underground structure where ballistic missiles can be stored and fired
+70298,silo,a cylindrical tower used for storing silage
+70299,siloxane,any of a large class of compounds that have alternate silicon and oxygen atoms
+70300,silt,mud or clay or small rocks deposited by a river or lake
+70301,siltstone,a fine-grained sandstone of consolidated silt
+70302,silurid silurid_fish,Old World freshwater catfishes having naked skin and a long anal fin more or less merged with the eellike caudal fin
+70303,silva sylva,the forest trees growing in a country or region
+70304,silver,coins made of silver
+70305,silver Ag atomic_number_47,a soft white precious univalent metallic element having the highest electrical and thermal conductivity of any metal; occurs in argentite and in free form; used in coins and jewelry and tableware and photography
+70306,silver-bell_tree silverbell_tree snowdrop_tree opossum_wood Halesia_carolina Halesia_tetraptera,medium-sized tree of West Virginia to Florida and Texas
+70307,silver_age,(classical mythology) the second age of the world, characterized by opulence and irreligion; by extension, a period secondary in achievement to a golden age
+70308,silver_ash,any of various timber trees of the genus Flindersia
+70309,silver_beech Nothofagus_menziesii,New Zealand beech with usually pale silvery bark
+70310,silver_bell,any of various deciduous trees of the genus Halesia having white bell-shaped flowers
+70311,silver_birch common_birch European_white_birch Betula_pendula,European birch with silvery white peeling bark and markedly drooping branches
+70312,silver_bromide,a bromide that darkens when exposed to light; used in making photographic emulsions
+70313,silver_bullet,a simple guaranteed solution for a difficult problem; "no silver bullet can make the world safe from terrorism"
+70314,silver_certificate,formerly a bank note issued by the United States Treasury and redeemable in silver
+70315,silver_chloride,a chloride used chiefly in the manufacture of photographic emulsions
+70316,silver_cord,the emotional bond between a mother and her offspring
+70317,silver_dollar cartwheel,a dollar made of silver
+70318,silver_fern Pityrogramma_argentea,fern of southern tropical Africa having fronds with white undersides
+70319,silver_fern Pityrogramma_calomelanos,tropical American fern having fronds with white undersides
+70320,silver_fir,any of various true firs having leaves white or silvery white beneath
+70321,silver_fox,red fox in the color phase when its pelt is tipped with white
+70322,silver_grass,of Australia and New Zealand
+70323,silver_hake Merluccius_bilinearis whiting,found off Atlantic coast of North America
+70324,silver_iodide,an iodide that is used in photography, in seeding clouds to make rain, and in medicine
+70325,silver_jenny Eucinostomus_gula,silvery mojarra found along sandy shores of the western Atlantic
+70326,silver_jubilee,an anniversary celebrating the passage of 25 years
+70327,silver_lace_vine China_fleece_vine Russian_vine Polygonum_aubertii,twining perennial vine having racemes of fragrant greenish flowers; western China to Russia
+70328,silver_lime silver_linden Tilia_tomentosa,large tree native to eastern Europe and Asia Minor having leaves with white tomentum on the under side; widely cultivated as an ornamental
+70329,silver_lining bright_side,a consoling aspect of a difficult situation; "every cloud has a silver lining"; "look on the bright side of it"
+70330,silver_maple Acer_saccharinum,a common North American maple tree; five-lobed leaves are light green above and silvery white beneath; source of hard close-grained but brittle light-brown wood
+70331,silver_medal silver,a trophy made of silver (or having the appearance of silver) that is usually awarded for winning second place in a competition
+70332,silver_mine,a mine where silver ore is dug
+70333,silver_nitrate,a nitrate used in making photographic emulsions; also used in medicine as a cautery and as a topical antibacterial agent
+70334,silver_oak Grevillela_parallela,small slender tree with usually entire grey-green pendulous leaves and white or cream-colored flowers; northern Australia
+70335,silver_perch mademoiselle Bairdiella_chrysoura,small silvery drumfish often mistaken for white perch; found along coasts of United States from New York to Mexico
+70336,silver_plate,tableware that is plated with silver
+70337,silver_plate,a thin layer of silver deposited on something
+70338,silver_protein,a colloid preparation of protein (albumin or gelatin) and silver oxide; used in aqueous solution as an antibacterial agent
+70339,silver_quandong,pale easily worked timber from the quandong tree
+70340,silver_sage silver_sagebrush grey_sage gray_sage Seriphidium_canum Artemisia_cana,low much-branched perennial of western United States having silvery leaves; an important browse and shelter plant
+70341,silver_salmon coho_salmon coho cohoe,fatty pinkish flesh of small salmon caught in the Pacific and Great Lakes
+70342,silver_screen,the film industry
+70343,silver_solder,a solder that contains silver
+70344,silver_spoon old_money,the inherited wealth of established upper-class families; "he was born with a silver spoon in his mouth"; "she is the daughter of old money from Massachusetts"
+70345,silver_standard,a monetary standard under which the basic unit of currency is defined by a stated quantity of silver
+70346,silver_tree Leucadendron_argenteum,small South African tree with long silvery silky foliage
+70347,silver_tree Tarrietia_argyrodendron,Australian timber tree
+70348,silver_tree_fern sago_fern black_tree_fern Cyathea_medullaris,a showy tree fern of New Zealand and Australia having a crown of pinnated fronds with whitish undersides
+70349,silver_wattle mimosa Acacia_dealbata,evergreen Australasian tree having white or silvery bark and young leaves and yellow flowers
+70350,silver_wedding_anniversary,the 25th wedding anniversary
+70351,silver_whiting Menticirrhus_littoralis,a dull silvery whiting of southern Atlantic and Gulf Coasts of the United States
+70352,silver_willow silky_willow Salix_alba_sericea Salix_sericea,North American willow with greyish silky pubescent leaves that usually blacken in drying
+70353,silverback,an adult male gorilla with grey hairs across the back
+70354,silverberry silver_berry silverbush silver-bush Elaeagnus_commutata,deciduous unarmed North American shrub with silvery leaves and fruits
+70355,silverfish,a silvery variety of Carassius auratus
+70356,silverfish Lepisma_saccharina,silver-grey wingless insect found in houses feeding on book bindings and starched clothing
+70357,silverpoint,a drawing made on specially prepared paper with an instrument having a silver tip (15th and 16th centuries)
+70358,silverrod Solidago_bicolor,plant of eastern North America having creamy white flowers
+70359,silversides silverside,small fishes having a silver stripe along each side; abundant along the Atlantic coast of the United States
+70360,silversmith silverworker silver-worker,someone who makes or repairs articles of silver
+70361,silverspot,butterfly with silver spots on the underside of the hind wings
+70362,silversword Argyroxiphium_sandwicense,low-growing plant found only in volcanic craters on Hawaii having rosettes of narrow pointed silver-green leaves and clusters of profuse red-purple flowers on a tall stem
+70363,silvervine silver_vine Actinidia_polygama,ornamental vine of eastern Asia having yellow edible fruit and leaves with silver-white markings
+70364,silverware,tableware made of silver or silver plate or pewter or stainless steel
+70365,silverweed,any of various twining shrubs of the genus Argyreia having silvery leaves and showy purple flowers
+70366,silverweed goose-tansy goose_grass Potentilla_anserina,low-growing perennial having leaves silvery beneath; northern United States; Europe; Asia
+70367,silverwork,decorative work made of silver
+70368,silvery_spleenwort Deparia_acrostichoides Athyrium_thelypteroides,fern with elongate silvery outgrowths enclosing the developing spores
+70369,silvery_spleenwort glade_fern narrow-leaved_spleenwort Athyrium_pycnocarpon Diplazium_pycnocarpon,North American fern with narrow fronds on yellowish leafstalks
+70370,silvex,a herbicide that is effective in controlling woody plants but is toxic to animals
+70371,silviculture,the branch of forestry dealing with the development and care of forests
+70372,sima,rock that form the continuous lower layer of the earth's crust; rich in silicon and magnesium
+70373,simazine,a herbicide used to control weeds (especially among crops)
+70374,simian,an ape or monkey
+70375,similarity,the quality of being similar
+70376,similarity law_of_similarity,a Gestalt principle of organization holding that (other things being equal) parts of a stimulus field that are similar to each other tend to be perceived as belonging together as a unit
+70377,simile,a figure of speech that expresses a resemblance between things of different kinds (usually formed with `like' or `as')
+70378,simmer,temperature just below the boiling point; "the stew remained at a simmer for hours"
+70379,simnel,a crisp bread of fine white flour
+70380,simnel,a fruitcake (sometimes covered with almond paste) eaten at mid-Lent or Easter or Christmas
+70381,simony barratry,traffic in ecclesiastical offices or preferments
+70382,simoom simoon samiel,a violent hot sand-laden wind on the deserts of Arabia and North Africa
+70383,simper,a silly self-conscious smile
+70384,simperer,a smiler whose smile is silly and self-conscious and sometimes coy
+70385,simple,any herbaceous plant having medicinal properties
+70386,simple_closed_curve Jordan_curve,a closed curve that does not intersect itself
+70387,simple_eye stemma ocellus,an eye having a single lens
+70388,simple_fracture closed_fracture,an uncomplicated fracture in which the broken bones to not pierce the skin
+70389,simple_fruit bacca,an indehiscent fruit derived from a single ovary having one or many seeds within a fleshy wall or pericarp: e.g. grape; tomato; cranberry
+70390,simple_harmonic_motion,periodic motion in which the restoring force is proportional to the displacement
+70391,simple_interest,interest paid on the principal alone
+70392,simple_leaf,a leaf that is not divided into parts
+70393,simple_mastectomy,removal of a breast leaving the underlying muscles and the lymph nodes intact
+70394,simple_pendulum,a hypothetical pendulum suspended by a weightless frictionless thread of constant length
+70395,simple_phobia,any phobia (other than agoraphobia) associated with relatively simple well-defined stimuli
+70396,simple_pistil,consists of one carpel
+70397,simple_protein,a protein that yields only amino acids when hydrolyzed
+70398,simple_sentence,a sentence having no coordinate clauses or subordinate clauses
+70399,simpleton simple,a person lacking intelligence or common sense
+70400,simplicity simmpleness,absence of affectation or pretense
+70401,simplicity simpleness,the quality of being simple or uncompounded; "the simplicity of a crystal"
+70402,simplicity simpleness simple_mindedness,a lack of penetration or subtlety; "they took advantage of her simplicity"
+70403,simplification,an explanation that omits superfluous details and reduces complexity
+70404,simplification,elimination of superfluous details
+70405,simulacrum,an insubstantial or vague semblance
+70406,simulation,the act of imitating the behavior of some situation or some process by means of something suitably analogous (especially for the purpose of study or personnel training)
+70407,simulation computer_simulation,(computer science) the technique of representing the real world by a computer program; "a simulation should imitate the internal processes and not merely the results of the thing being simulated"
+70408,simulative_electronic_deception electronic_simulative_deception,actions to represent friendly notional or actual capabilities to mislead hostile forces
+70409,simulator,a machine that simulates an environment for the purpose of training or research
+70410,simulcast,a broadcast that is carried simultaneously by radio and television (or by FM and AM radio)
+70411,simultaneity simultaneousness,happening or existing or done at the same time
+70412,simultaneous_equations,a set of equations in two or more variables for which there are values that can satisfy all the equations simultaneously
+70413,simvastatin Zocor,an oral lipid-lowering medicine (trade name Zocor) administered to reduce blood cholesterol levels; recommended after heart attacks
+70414,sin,the 21st letter of the Hebrew alphabet
+70415,sin sinfulness wickedness,estrangement from god
+70416,sin sinning,an act that is regarded by theologians as a transgression of God's will
+70417,sincerity,the quality of being open and truthful; not deceitful or hypocritical; "his sincerity inspired belief"; "they demanded some proof of my sincerity"
+70418,sincerity unassumingness,a quality of naturalness and simplicity; "the simple sincerity of folk songs"
+70419,sinciput,the front part of the head or skull (including the forehead)
+70420,sine sin,ratio of the length of the side opposite the given angle to the length of the hypotenuse of a right-angled triangle
+70421,sine_curve sinusoid,the curve of y=sin x
+70422,sine_wave,a wave whose waveform resembles a sine curve
+70423,sinecure,a benefice to which no spiritual or pastoral duties are attached
+70424,sinecure,an office that involves minimal duties
+70425,singalong singsong,informal group singing of popular songs
+70426,singer vocalist vocalizer vocaliser,a person who sings
+70427,singing vocalizing,the act of singing vocal music
+70428,singing_voice,the musical quality of the voice while singing
+70429,single bingle,a base hit on which the batter stops safely at first base
+70430,single-breasted_jacket,a jacket having fronts that overlap only enough for a single row of buttons
+70431,single-breasted_suit,a suit having a single-breasted jacket
+70432,single-leaf single-leaf_pine single-leaf_pinyon Pinus_monophylla,pinon of southwestern United States having solitary needles and often many stems; important as a nut pine
+70433,single-mindedness,characterized by one unified purpose
+70434,single-reed_instrument single-reed_woodwind,a beating-reed instrument with a single reed (as a clarinet or saxophone)
+70435,single-rotor_helicopter,a helicopter having a single rotor
+70436,single-spacing,typing that does not leave lines blank
+70437,single_bed,a bed for one occupant
+70438,single_combat,a fight between two people; "in all armies there were officers who needed to prove their bravery by single combat"
+70439,single_crochet single_stitch,the basic crochet stitch
+70440,single_entry single-entry_bookkeeping,a simple bookkeeping system; transactions are entered in only one account
+70441,single_nucleotide_polymorphism SNP,(genetics) genetic variation in a DNA sequence that occurs when a single nucleotide in a genome is altered; SNPs are usually considered to be point mutations that have been evolutionarily successful enough to recur in a significant proportion of the population of a species
+70442,single_prop single-propeller_plane,a propeller plane with a single propeller
+70443,single_quote,a single quotation mark
+70444,single_supplement,a surcharge added to the cost per person when traveling alone
+70445,single_tax,a system of taxation in which a tax is levied on a single commodity (usually land)
+70446,singleness,the quality of concentrating on one central objective; "his singleness of purpose"
+70447,singleness straightforwardness,without hypocrisy; "the singleness of his motives could not be questioned"
+70448,singles,badminton played with one person on each side
+70449,singles,tennis played with one person on each side
+70450,singlestick fencing_stick backsword,a stick used instead of a sword for fencing
+70451,singlet vest undershirt,a collarless men's undergarment for the upper part of the body
+70452,singletary_pea Caley_pea rough_pea wild_winterpea Lathyrus_hirsutus,a weak-stemmed winter annual native to Mediterranean region for long established in southern United States; cultivated as a cover and pasture crop
+70453,singleton,a single object (as distinguished from a pair)
+70454,singleton,a set containing a single member
+70455,singleton,the playing card that is the only card in a suit held in a bridge hand as initially dealt
+70456,singsong,a regular and monotonous rising and falling intonation
+70457,singular singular_form,the form of a word that is used to denote a singleton
+70458,singular_matrix,a square matrix whose determinant is zero
+70459,singularity,strangeness by virtue of being remarkable or unusual
+70460,singularity uniqueness,the quality of being one of a kind; "that singularity distinguished him from all his companions"
+70461,sink,(technology) a process that acts to absorb or remove energy or a substance from a system; "the ocean is a sink for carbon dioxide"
+70462,sink,plumbing fixture consisting of a water basin fixed to a wall or floor and having a drainpipe
+70463,sinker,a weight that sinks (as to hold nets or fishing lines under water)
+70464,sinker,a pitch that curves downward rapidly as it approaches the plate
+70465,sinkhole sink swallow_hole,a depression in the ground communicating with a subterranean passage (especially in limestone) and formed by solution or by collapse of a cavern roof
+70466,sinking,a descent as through liquid (especially through water); "they still talk about the sinking of the Titanic"
+70467,sinking,a slow fall or decline (as for lack of strength); "after several hours of sinking an unexpected rally rescued the market"; "he could not control the sinking of his legs"
+70468,sinking sinking_feeling,a feeling caused by uneasiness or apprehension; "with a sinking heart"; "a sinking feeling in the pit of my stomach"
+70469,sinking_fund,a fund accumulated regularly in a separate account and used to redeem debt securities
+70470,sinking_spell,a temporary decline in health or value
+70471,sinner evildoer,a person who sins (without repenting)
+70472,sinopis sinopia sinoper,a red ocher formerly used as a pigment
+70473,sinuosity sinuousness,having curves; "he hated the sinuosity of mountain roads"
+70474,sinus,any of various air-filled cavities especially in the bones of the skull
+70475,sinus_headache,a headache resulting from congestion or infection in the paranasal sinuses
+70476,sinusitis,inflammation of one of the paranasal sinuses
+70477,sinusoid,tiny endothelium-lined passages for blood in the tissue of an organ
+70478,sinusoidal_projection Sanson-Flamsteed_projection,an equal-area map projection showing parallels and the equator as straight lines and other meridians as curved; used to map tropical latitudes
+70479,sip,a small drink
+70480,siphon syphon,a tube running from the liquid in a vessel to a lower level outside the vessel so that gravity forces the liquid through the tube
+70481,siphon syphon,a tubular organ in an aquatic animal (especially in mollusks) through which water can be taken in or expelled
+70482,siphonophore,a floating or swimming oceanic colony of polyps often transparent or showily colored
+70483,sipper,a drinker who sips
+70484,sir,term of address for a man
+70485,sirdar,an important person in India
+70486,sire,a title of address formerly used for a man of rank and authority
+70487,sire,male parent of an animal especially a domestic animal such as a horse
+70488,siren,a warning signal that is a loud wailing sound
+70489,siren,an acoustic device producing a loud often wailing sound as a signal or warning
+70490,siren,eellike aquatic North American salamander with small forelimbs and no hind limbs; have permanent external gills
+70491,siren_call siren_song,the enticing appeal of something alluring but potentially dangerous; "he succumbed to the siren call of the wilderness"
+70492,siris siris_tree Albizia_lebbeck Albizzia_lebbeck,large spreading Old World tree having large leaves and globose clusters of greenish-yellow flowers and long seed pods that clatter in the wind
+70493,sirloin,the portion of the loin (especially of beef) just in front of the rump
+70494,sirloin_steak,a cut of beef from the sirloin
+70495,sirloin_tip,a cut of beef from the upper end of the sirloin
+70496,sirrah,formerly a contemptuous term of address to an inferior man or boy; often used in anger
+70497,sisal Agave_sisalana,Mexican or West Indian plant with large fleshy leaves yielding a stiff fiber used in e.g. rope
+70498,sisal sisal_hemp,a plant fiber used for making rope
+70499,siskin Carduelis_spinus,small yellow-and-black Eurasian finch with a sharp beak
+70500,siskiyou_lewisia Lewisia_cotyledon,evergreen perennial having a dense basal rosette of long spatula-shaped leaves and panicles of pink or white-and-red-striped or pink-purple flowers; found on cliffs and in rock crevices in mountains of southwestern Oregon and northern California
+70501,sissoo sissu sisham Dalbergia_sissoo,East Indian tree whose leaves are used for fodder; yields a compact dark brown durable timber used in shipbuilding and making railroad ties
+70502,sissy pantywaist pansy milksop Milquetoast,a timid man or boy considered childish or unassertive
+70503,sister,a female person who is a fellow member of a sorority or labor union or other group; "none of her sisters would betray her"
+70504,sister sis,a female person who has the same parents as another person; "my sister married a musician"
+70505,sister-in-law,the sister of your spouse
+70506,sister_ship,a ship that is one of two or more similar ships built at the same time
+70507,sisterhood,a religious society of women who live together as sisters (especially an order of nuns)
+70508,sisterhood sistership,the kinship relation between a female offspring and the siblings
+70509,sisterhood sistership,an association or society of women who are linked together by a common religion or trade or interest
+70510,sit-down sit-down_strike,a strike in which workers refuse to leave the workplace until a settlement is reached
+70511,sit-in,a form of civil disobedience in which demonstrators occupy seats and refuse to move
+70512,sit-up,a stomach exercise in which a person sits up from a supine position without using the arms for leverage
+70513,sitar,a stringed instrument of India; has a long neck and movable frets; has 6 or 7 metal strings for playing and usually 13 resonating strings
+70514,sitar_player,a musician who plays the sitar
+70515,site land_site,the piece of land on which something is located (or is to be located); "a good site for the school"
+70516,site situation,physical position in relation to the surroundings; "the sites are determined by highly specific sequences of nucleotides"
+70517,site_visit,a visit in an official capacity to examine a site to determine its suitability for some enterprise
+70518,sitter,an organism (person or animal) that sits
+70519,sitting,a session as of a legislature or court
+70520,sitting,the act of assuming or maintaining a seated position; "he read the mystery at one sitting"
+70521,sitting posing,(photography) the act of assuming a certain position (as for a photograph or portrait); "he wanted his portrait painted but couldn't spare time for the sitting"
+70522,sitting_duck easy_mark,a defenseless victim
+70523,sitting_trot,the rider sits still in the saddle
+70524,situation,a complex or critical or unusual difficulty; "the dangerous situation developed suddenly"; "that's quite a situation"; "no human situation is simple"
+70525,situation position,a condition or position in which you find yourself; "the unpleasant situation (or position) of having to choose between two evils"; "found herself in a very fortunate situation"
+70526,situation state_of_affairs,the general state of things; the combination of circumstances at a given time; "the present international situation is dangerous"; "wondered how such a state of affairs had come about"; "eternal truths will be neither true nor eternal unless they have fresh meaning for every new social situation"- Franklin D.Roosevelt
+70527,situation_comedy sitcom,a humorous drama based on situations that might arise in day-to-day life
+70528,situation_comedy sitcom,a humorous television program based on situations that could arise in everyday life
+70529,sitz_bath hip_bath,a bathtub in which your buttocks and hips are immersed as if you were sitting in a chair and you bathe in a sitting position
+70530,six 6 VI sixer sise Captain_Hicks half_a_dozen sextet sestet sextuplet hexad,the cardinal number that is the sum of five and one
+70531,six-footer,a person who is at least six feet tall
+70532,six-pack six_pack sixpack,a carton containing six bottles or cans
+70533,six-spot six,a playing card or domino or die whose upward face shows six pips
+70534,sixpence tanner,a small coin of the United Kingdom worth six pennies; not minted since 1970
+70535,sixpenny_nail,a nail 2 inches long
+70536,sixteen 16 XVI,the cardinal number that is the sum of fifteen and one
+70537,sixteenth,position 16 in a countable series of things
+70538,sixteenth_note semiquaver,a musical note having the time value of a sixteenth of a whole note
+70539,sixth,position six in a countable series of things
+70540,sixth,the musical interval between one note and another six notes away from it
+70541,sixth-former,a student in the sixth form
+70542,sixties 1960s,the decade from 1960 to 1969
+70543,sixties mid-sixties,the time of life between 60 and 70
+70544,sixtieth,position 60 in a countable series of things
+70545,sixty 60 LX,the cardinal number that is the product of ten and six
+70546,sixty-fourth_note hemidemisemiquaver,a musical note having the time value of a sixty-fourth of a whole note
+70547,size,a large magnitude; "he blanched when he saw the size of the bill"; "the only city of any size in that area"
+70548,size,the physical magnitude of something (how big it is); "a wolf is about the size of a large dog"
+70549,size,the property resulting from being one of a series of graduated measurements (as of clothing); "he wears a size 13 shoe"
+70550,size size_of_it,the actual state of affairs; "that's the size of the situation"; "she hates me, that's about the size of it"
+70551,size sizing,any glutinous material used to fill pores in surfaces or to stiffen fabrics; "size gives body to a fabric"
+70552,size_constancy,the tendency to perceive the veridical size of a familiar object despite differences in their distance (and consequent differences in the size of the pattern projected on the retina of the eye)
+70553,size_stick,a mechanical measuring stick used by shoe fitters to measure the length and width of your foot
+70554,sizzle,a sizzling noise
+70555,skank,a rhythmic dance to reggae music performed by bending forward and extending the hands while bending the knees
+70556,skate,sports equipment that is worn on the feet to enable the wearer to glide along and to be propelled by the alternate actions of the legs
+70557,skate,large edible rays having a long snout and thick tail with pectoral fins continuous with the head; swim by undulating the edges of the pectoral fins
+70558,skateboard,a board with wheels that is ridden in a standing or crouching position and propelled by foot
+70559,skateboarder,someone who skates on a skateboard
+70560,skateboarding,the sport of skating on a skateboard
+70561,skater,someone who skates
+70562,skating,the sport of gliding on skates
+70563,skedaddle,a hasty flight
+70564,skeen_arch skene_arch scheme_arch diminished_arch,an arch whose height is less than half its width
+70565,skeet skeet_shooting trapshooting,the sport of shooting at clay pigeons that are hurled upward in such a way as to simulate the flight of a bird
+70566,skeg,a brace that extends from the rear of the keel to support the rudderpost
+70567,skein,coils of worsted yarn
+70568,skeletal_muscle striated_muscle,a muscle that is connected at either or both ends to a bone and so move parts of the skeleton; a muscle that is characterized by transverse stripes
+70569,skeletal_structure,any structure created by the skeleton of an organism
+70570,skeletal_system skeleton frame systema_skeletale,the hard structure (bones and cartilages) that provides a frame for the body of an animal
+70571,skeleton,something reduced to its minimal form; "the battalion was a mere skeleton of its former self"; "the bare skeleton of a novel"
+70572,skeleton skeletal_frame frame underframe,the internal supporting structure that gives an artifact its shape; "the building has a steel skeleton"
+70573,skeleton skeleton_in_the_closet skeleton_in_the_cupboard,a scandal that is kept secret; "there must be a skeleton somewhere in that family's closet"
+70574,skeleton_fork_fern Psilotum_nudum,pantropical epiphytic or terrestrial whisk fern with usually dull yellow branches and minute leaves; America; Japan; Australia
+70575,skeleton_key,a passkey with much of the bit filed away so that it can open different locks
+70576,skeleton_shrimp,small amphipod crustacean having a grotesque form suggestive of the praying mantis; found chiefly on seaweed
+70577,skep,a large round wicker basket (used on farms)
+70578,skep,a domed beehive made of twisted straw
+70579,skepful,the quantity a skep can hold
+70580,skeptic sceptic doubter,someone who habitually doubts accepted beliefs
+70581,sketch study,preliminary drawing for later elaboration; "he made several studies before starting to paint"
+70582,sketch survey resume,short descriptive summary (of events)
+70583,sketch vignette,a brief literary description
+70584,sketch_map,a map drawn from observation (rather than from exact measurements) and representing the main features of an area
+70585,sketchbook sketch_block sketch_pad,a book containing sheets of paper on which sketches can be drawn
+70586,sketcher,someone who draws sketches
+70587,sketcher,an implement for sketching
+70588,sketchiness,incompleteness of details
+70589,skew_arch,an arch whose jambs are not at right angles with the face
+70590,skewer,a long pin for holding meat in position while it is being roasted
+70591,ski,narrow wood or metal or plastic runners used in pairs for gliding over snow
+70592,ski-plane,an airplane equipped with skis so it can land on a snowfield
+70593,ski_binding binding,one of a pair of mechanical devices that are attached to a ski and that will grip a ski boot; the bindings should release in case of a fall
+70594,ski_boot,a stiff boot that is fastened to a ski with a ski binding
+70595,ski_cap stocking_cap toboggan_cap,a close-fitting woolen cap; often has a tapering tail with a tassel
+70596,ski_conditions,the amount and state of snow for skiing
+70597,ski_jump,a steep downward ramp from which skiers jump
+70598,ski_jumper,a skier who leaps through the air (especially on a ski jump)
+70599,ski_jumping,the act of performing a jump on skis from a high ramp overhanging a snow covered slope
+70600,ski_lodge,a hotel at a ski resort
+70601,ski_mask,a woolen face mask to protect the face from cold while skiing on snow
+70602,ski_parka ski_jacket,a parka to be worn while skiing
+70603,ski_pole,a pole with metal points used as an aid in skiing
+70604,ski_race skiing_race,a race between people wearing skis
+70605,ski_rack,a carrier for holding skis on top of a vehicle
+70606,ski_resort,a resort with lodging and facilities for skiing
+70607,ski_run ski_trail,trail or slope prepared for skiing
+70608,ski_slope,a snow-covered slope for skiing
+70609,ski_tow ski_lift lift,a powered conveyance that carries skiers up a hill
+70610,ski_wax,wax used on the bottom of skis
+70611,skibob,a vehicle resembling a bicycle but having skis instead of wheels; the rider wears short skis for balancing
+70612,skid,one of a pair of planks used to make a track for rolling or sliding objects
+70613,skid slip sideslip,an unexpected slide
+70614,skid_lid,a crash helmet
+70615,skid_road,the district of a town frequented by loggers
+70616,skid_road,a road made of logs on which freshly cut timber can be hauled
+70617,skid_row,a city district frequented by vagrants and alcoholics and addicts
+70618,skidder,a worker who uses a skid to move logs
+70619,skidder,a tractor used to haul logs over rough terrain
+70620,skidder slider slipper,a person who slips or slides because of loss of traction
+70621,skidpan,a paved surface on which cars can be made to skid so that drivers can practice controlling them
+70622,skier,someone who skis
+70623,skiff,any of various small boats propelled by oars or by sails or by a motor
+70624,skiffle,a style of popular music in the 1950s; based on American folk music and played on guitars and improvised percussion instruments
+70625,skiffle_group,a band of musicians who play skiffle
+70626,skiing,a sport in which participants must travel on skis
+70627,skill accomplishment acquirement acquisition attainment,an ability that has been acquired by training
+70628,skill science,ability to produce solutions in some problem domain; "the skill of a well-trained boxer"; "the sweet science of pugilism"
+70629,skilled_worker trained_worker skilled_workman,a worker who has acquired special skills
+70630,skillet_bread fry_bread,usually cooked in a skillet over an open fire: especially cornbread with ham bits and sometimes Irish soda bread
+70631,skillet_corn_bread,cornbread usually containing ham or bacon bits and cooked in a skillet
+70632,skillet_fish skilletfish Gobiesox_strumosus,clingfish with typical skillet shape
+70633,skillfulness,the state of being cognitively skillful
+70634,skilly,a thin porridge or soup (usually oatmeal and water flavored with meat)
+70635,skim,a thin layer covering the surface of a liquid; "there was a thin skim of oil on the water"
+70636,skim skimming,reading or glancing through quickly
+70637,skim_milk skimmed_milk,milk from which the cream has been skimmed
+70638,skimmer,a rapid superficial reader
+70639,skimmer,a cooking utensil used to skim fat from the surface of liquids
+70640,skimmer,gull-like seabird that flies along the surface of the water with an elongated lower mandible immersed to skim out food
+70641,skimming,the act of removing floating material from the surface of a liquid
+70642,skimming,failure to declare income in order to avoid paying taxes on it
+70643,skin,a person's skin regarded as their life; "he tried to save his skin"
+70644,skin,a bag serving as a container for liquids; it is made from the hide of an animal
+70645,skin,an outer surface (usually thin); "the skin of an airplane"
+70646,skin tegument cutis,a natural protective body covering and site of the sense of touch; "your skin is the largest organ of your body"
+70647,skin-diver aquanaut,an underwater swimmer equipped with a face mask and foot fins and either a snorkel or an air cylinder
+70648,skin_cancer,a malignant neoplasm of the skin
+70649,skin_care skincare,care for the skin
+70650,skin_cell,any of the cells making up the skin
+70651,skin_disease disease_of_the_skin skin_disorder,a disease affecting the skin
+70652,skin_diving skin-dive,underwater swimming without any more breathing equipment than a snorkel
+70653,skin_effect,the tendency of high-frequency alternating current to distribute near the surface of a conductor
+70654,skin_flick,a pornographic movie
+70655,skin_graft,a piece of skin taken from a donor area and surgically grafted at the site of an injury or burn
+70656,skin_test,any test to determine immunity or sensitivity to a disease by introducing small amounts on or into the skin
+70657,skinful,a quantity of alcoholic drink sufficient to make you drunk; "someone had to drive me home last night because I had a skinful"
+70658,skinhead skin,a member of any of several British or American groups consisting predominantly of young people who shave their heads; some engage in white supremacist and anti-immigrant activities and this leads to the perception that all skinheads are racist and violent
+70659,skinheads bootboys,a youth subculture that appeared first in England in the late 1960s as a working-class reaction to the hippies; hair was cropped close to the scalp; wore work-shirts and short jeans (supported by suspenders) and heavy red boots; involved in attacks against Asians and football hooliganism
+70660,skink scincid scincid_lizard,alert agile lizard with reduced limbs and an elongated body covered with shiny scales; more dependent on moisture than most lizards; found in tropical regions worldwide
+70661,skinner,a person who prepares or deals in animal skins
+70662,skinniness scrawniness,the bodily property of lacking flesh
+70663,skinny,confidential information about a topic or person; "he wanted the inside skinny on the new partner"
+70664,skinny-dip,a naked swim
+70665,skinny-dipper,a naked swimmer
+70666,skip,a gait in which steps and hops alternate
+70667,skip_distance,the shortest distance that permits radio signals (of a given frequency) to travel from the transmitter to the receiver by reflection from the ionosphere
+70668,skipjack Atlantic_bonito Sarda_sarda,medium-sized tuna-like food fish of warm Atlantic and Pacific waters; less valued than tuna
+70669,skipjack skipjack_tuna Euthynnus_pelamis,oceanic schooling tuna of considerable value in Pacific but less in Atlantic; reaches 75 pounds; very similar to if not the same as oceanic bonito
+70670,skipper,a student who fails to attend classes
+70671,skirl,the sound of (the chanter of) a bagpipe
+70672,skirmisher,someone who skirmishes (e.g., as a member of a scouting party)
+70673,skirret Sium_sisarum,an Asiatic herb cultivated in Europe for its sweet edible tuberous root
+70674,skirt,cloth covering that forms the part of a garment below the waist
+70675,skirt,a garment hanging from the waist; worn mainly by girls and women
+70676,skirt_of_tasses,armor plate that protects the body below the waist
+70677,skit,a short theatrical episode
+70678,skittishness restiveness,characterized by nervousness and quickness to take fright
+70679,skivvies,(used in the plural) men's underwear consisting of cotton undershirt and underpants
+70680,skivvy slavey,a female domestic servant who does all kinds of menial work
+70681,skua bonxie,gull-like jaeger of northern seas
+70682,skull,the bony skeleton of the head of vertebrates
+70683,skull_and_crossbones,emblem warning of danger or death
+70684,skull_session,a session (as of executives or advisors) to discuss policy or strategy or to solve problems or exchange ideas
+70685,skull_session skull_practice,teaching strategy to an athletic team
+70686,skullcap,rounded brimless cap fitting the crown of the head
+70687,skullcap helmetflower,a herbaceous plant of the genus Scutellaria which has a calyx that, when inverted, resembles a helmet with its visor raised
+70688,skunk polecat wood_pussy,American musteline mammal typically ejecting an intensely malodorous fluid when startled; in some classifications put in a separate subfamily Mephitinae
+70689,skunk_cabbage Lysichiton_americanum,clump-forming deciduous perennial swamp plant of western North America similar to Symplocarpus foetidus but having a yellow spathe
+70690,skunk_cabbage polecat_weed foetid_pothos Symplocarpus_foetidus,deciduous perennial low-growing fetid swamp plant of eastern North America having minute flowers enclosed in a mottled greenish or purple cowl-shaped spathe
+70691,skunkweed skunk-weed Polemonium_viscosum,tall herb of the Rocky Mountains having sticky leaves and an offensive smell
+70692,sky,the atmosphere and outer space as viewed from the earth
+70693,sky_burial,a traditional Tibetan funeral ritual in which the corpse is exposed to the open air to be eaten by sacred vultures
+70694,sky_glow,illumination of the night sky in urban areas
+70695,sky_wave,a radio wave that is reflected back to earth by the ionosphere or a communications satellite; permits transmission around the curve of the earth's surface
+70696,skybox,an elevated box for viewing events at a sports stadium
+70697,skycap,a porter who helps passengers with their baggage at an airport
+70698,skydiver,a person who jumps from a plane and performs various gymnastic maneuvers before pulling the parachute cord
+70699,skydiving,performing acrobatics in free fall before pulling the ripcord of a parachute
+70700,skyhook,helicopter carrying a reel of steel cable that can be used to lift and transport heavy objects
+70701,skyhook,a hook that is imagined to be suspended from the sky
+70702,skylark Alauda_arvensis,brown-speckled European lark noted for singing while hovering at a great height
+70703,skylight fanlight,a window in a roof to admit daylight
+70704,skyline,the outline of objects seen against the sky
+70705,skyrocket rocket,sends a firework display high into the sky
+70706,skysail,the sail above the royal on a square-rigger
+70707,skyscraper,a very tall building with many stories
+70708,skywalk,an elevated walkway between buildings (usually enclosed)
+70709,skywriting,writing formed in the sky by smoke released from an airplane
+70710,slab,block consisting of a thick piece of something
+70711,slack,dust consisting of a mixture of small coal fragments and coal dust and dirt that sifts out when coal is passed over a sieve
+70712,slack,a cord or rope or cable that is hanging loosely; "he took up the slack"
+70713,slack slack_water,a stretch of water without current or movement; "suddenly they were in a slack and the water was motionless"
+70714,slack slackness,the quality of being loose (not taut); "he hadn't counted on the slackness of the rope"
+70715,slack_suit,casual dress consisting of slacks and matching jacket
+70716,slack_water slack_tide,the occurrence of relatively still water at the turn of the (low) tide
+70717,slacker shirker,a person who shirks his work or duty (especially one who tries to evade military service in wartime)
+70718,slacks,(used in the plural) pants for casual wear
+70719,slag scoria dross,the scum formed by oxidation at the surface of molten metals
+70720,slagheap,pile of waste matter from coal mining etc
+70721,slain,people who have been slain (as in battle)
+70722,slalom,a downhill race over a winding course defined by upright poles
+70723,slam,the noise made by the forceful impact of two objects
+70724,slam,a forceful impact that makes a loud noise
+70725,slam sweep,winning all or all but one of the tricks in bridge
+70726,slam_dancing slam_dance,a form of dancing in which dancers slam into one another; normally performed to punk rock
+70727,slam_dunk,something that is a sure to occur; a foregone conclusion; "predicting his success was a slam dunk"
+70728,slam_dunk,a forceful dunk
+70729,slammer,a person who closes things violently; "she's a dramatic slammer of doors"
+70730,slander,words falsely spoken that damage the reputation of another
+70731,slang cant jargon lingo argot patois vernacular,a characteristic language of a particular group (as among thieves); "they don't speak our lingo"
+70732,slang slang_expression slang_term,informal language consisting of words and expressions that are not considered appropriate for formal occasions; often vituperative or vulgar; "their speech was full of slang expressions"
+70733,slanginess,casualness in use of language
+70734,slanguage,language characterized by excessive use of slang or cant
+70735,slant angle,a biased way of looking at or presenting something
+70736,slap smack,a blow from a flat object (as an open hand)
+70737,slapper spanker,a hitter who slaps (usually another person) with an open hand; "someone slapped me on the back and I turned to see who the slapper was"; "my father was the designated spanker in our family"
+70738,slapshot,a fast shot made with a short powerful swing of the hockey stick
+70739,slapstick,a boisterous comedy with chases and collisions and practical jokes
+70740,slapstick,acoustic device consisting of two paddles hinged together; used by an actor to make a loud noise without inflicting injury when striking someone
+70741,slash,an open tract of land in a forest that is strewn with debris from logging (or fire or wind)
+70742,slash gash,a strong sweeping cut made with a sharp instrument
+70743,slash_pocket,a pocket in a garment (usually below the waist) to which access is provided by a vertical or diagonal slit in the outside of the garment
+70744,slasher,someone who slashes another person
+70745,slasher,a weapon (a sword or dagger) used for slashing
+70746,slat spline,a thin strip (wood or metal)
+70747,slate,a fine-grained metamorphic rock that can be split into thin layers
+70748,slate,(formerly) a writing tablet made of slate
+70749,slate slating,thin layers of rock used for roofing
+70750,slate ticket,a list of candidates nominated by a political party to run for election to public offices
+70751,slate_club,a group of people who save money in a common fund for a specific purpose (usually distributed at Christmas)
+70752,slate_pencil,a pencil of soft slate (or soapstone) used for writing on a slate
+70753,slate_roof,a roof covered with slate
+70754,slating,a severely critical attack; "the reviewers gave his book a sound slating"
+70755,slating,the act of laying slates for a roof
+70756,slattern slut slovenly_woman trollop,a dirty untidy woman
+70757,slatternliness sluttishness,in the manner of a slattern
+70758,slaughter,the killing of animals (as for food)
+70759,slaughter massacre mass_murder carnage butchery,the savage and excessive killing of many people
+70760,slave,someone entirely dominated by some influence or person; "a slave to fashion"; "a slave to cocaine"; "his mother was his abject slave"
+70761,slave,a person who is owned by someone
+70762,slave striver hard_worker,someone who works as hard as a slave
+70763,slave-making_ant slave-maker,an ant that attacks colonies of other ant species and carries off the young to be reared as slave ants
+70764,slave_ant,any of various ants captured as larvae and enslaved by another species
+70765,slave_driver,a supervisor of slaves at work
+70766,slave_driver Simon_Legree,a cruel employer who demands excessive work from the employees
+70767,slave_market,a marketplace where slaves were auctioned off (especially in the southern United States before the American Civil War)
+70768,slave_ship,a ship used to transport slaves from their homes to places of bondage
+70769,slave_state,any of the southern states in which slavery was legal prior to the American Civil War
+70770,slave_trade slave_traffic,traffic in slaves; especially in Black Africans transported to America in the 16th to 19th centuries
+70771,slaveholder slave_owner slaver,someone who holds slaves
+70772,slaver slave_dealer slave_trader,a person engaged in slave trade
+70773,slavery,work done under harsh conditions for little or no pay
+70774,slavery slaveholding,the practice of owning slaves
+70775,sleaziness,morally dishonorable; "an embarrassing sleaziness that I hope will be corrected by the more ethical newspapers"
+70776,sled sledge sleigh,a vehicle mounted on runners and pulled by horses or dogs; for transportation over snow
+70777,sled_dog sledge_dog,a dog trained to draw a sled usually in a team
+70778,sledder,someone who rides a sled
+70779,sledding,the sport of riding on a sled or sleigh
+70780,sleekness,the quality of being well-groomed and neatly tailored; "the sleekness of his appearance reminded me of his financial successes"
+70781,sleep nap,a period of time spent sleeping; "he felt better after a little sleep"; "there wasn't time for a nap"
+70782,sleep slumber,a natural and periodic state of rest during which consciousness of the world is suspended; "he didn't get enough sleep last night"; "calm as a child in dreamless slumber"
+70783,sleep sopor,a torpid state resembling deep sleep
+70784,sleep-learning hypnopedia,teaching during sleep (as by using recordings to teach a foreign language to someone who is asleep)
+70785,sleep_apnea,apnea that occurs during sleep
+70786,sleep_deprivation,a form of psychological torture inflicted by depriving the victim of sleep
+70787,sleep_disorder,a disturbance of the normal sleep pattern
+70788,sleep_talking somniloquy somniloquism,uttering speech while asleep
+70789,sleep_terror_disorder pavor_nocturnus,a disorder of sleep characterized by a dream of terrifying dimensions far worse than a typical nightmare; they occur during NREM sleep
+70790,sleeper,a spy or saboteur or terrorist planted in an enemy country who lives there as a law-abiding citizen until activated by a prearranged signal
+70791,sleeper,an unexpected achiever of success; "the winner was a true sleeper--no one expected him to get it"
+70792,sleeper,pajamas with feet; worn by children
+70793,sleeper,a piece of furniture that can be opened up into a bed
+70794,sleeper,an unexpected hit; "that movie was the sleeper of the summer"
+70795,sleeper sleeper_goby,tropical fish that resembles a goby and rests quietly on the bottom in shallow water
+70796,sleeper slumberer,a rester who is sleeping
+70797,sleeper_cell,a cell of sleepers; "an al-Qaeda sleeper cell may have used Arizona as its base"
+70798,sleeper_nest,a nest of sleepers awaiting a prearranged signal; "sleeper nests of Islamic terrorists were capable of launching major attacks in Europe"
+70799,sleepiness drowsiness somnolence,a very sleepy state; "sleepiness causes many driving accidents"
+70800,sleeping,the state of being asleep
+70801,sleeping,the suspension of consciousness and decrease in metabolic rate
+70802,sleeping_bag,large padded bag designed to be slept in outdoors; usually rolls up like a bedroll
+70803,sleeping_beauty,a person who is sleeping soundly
+70804,sleeping_beauty,a potential takeover target that has not yet been put in play
+70805,sleeping_car sleeper wagon-lit,a passenger car that has berths for sleeping
+70806,sleeping_pill sleeping_tablet sleeping_capsule sleeping_draught,a soporific drug in the form of a pill (or tablet or capsule)
+70807,sleeping_sickness sleepy_sickness epidemic_encephalitis lethargic_encephalitis encephalitis_lethargica,an encephalitis that was epidemic between 1915 and 1926; symptoms include paralysis of the extrinsic eye muscle and extreme muscular weakness
+70808,sleepover,an occasion of spending a night away from home or having a guest spend the night in your home (especially as a party for children)
+70809,sleepwalker somnambulist noctambulist,someone who walks about in their sleep
+70810,sleepwalking somnambulism somnambulation noctambulism noctambulation,walking by a person who is asleep
+70811,sleepyhead,a sleepy person
+70812,sleet,partially melted snow (or a mixture of rain and snow)
+70813,sleeve,small case into which an object fits
+70814,sleeve arm,the part of a garment that is attached at the armhole and that provides a cloth covering for the arm
+70815,sleigh_bed,a bed with solid headboard and footboard that roll outward at the top
+70816,sleigh_bell cascabel,a bell attached to a sleigh, or to the harness of a horse that is pulling a sleigh
+70817,slender-tailed_meerkat Suricata_suricatta,a meerkat with a thin and elongated tail
+70818,slender_centaury,a slender variety of centaury
+70819,slender_knapweed,a variety of knapweed
+70820,slender_loris Loris_gracilis,slim-bodied lemur of southern India and Sri Lanka
+70821,slender_rush Juncus_tenuis,tufted wiry rush of wide distribution
+70822,slender_salamander worm_salamander,any of several small slim salamanders of the Pacific coast of the United States
+70823,slender_wheatgrass Agropyron_trachycaulum Agropyron_pauciflorum Elymus_trachycaulos,North American grass cultivated in western United States as excellent forage crop
+70824,slender_wild_oat Avena_barbata,oat of southern Europe and southwestern Asia
+70825,slenderness,the quality of being slight or inadequate; "he knew the slenderness of my wallet"; "the slenderness of the chances that anything would be done"; "the slenderness of the evidence"
+70826,slenderness slightness slimness,the property of an attractively thin person
+70827,sleuth sleuthhound,a detective who follows a trail
+70828,slice,a thin flat piece cut off of some object
+70829,slice,a spatula for spreading paint or ink
+70830,slice fade slicing,a golf shot that curves to the right for a right-handed golfer; "he took lessons to cure his slicing"
+70831,slice piece,a share of something; "a slice of the company's revenue"
+70832,slice_bar,iron bar used to loosen and rake clinkers out of furnaces
+70833,slicer,a golfer whose shots typically curve right (for right-handed golfers)
+70834,slicer,a machine for cutting; usually with a revolving blade
+70835,slicer,knife especially designed for slicing particular foods, as cheese
+70836,slicing,the act of cutting into slices
+70837,slick,a film of oil or garbage floating on top of water
+70838,slick,a trowel used to make a surface slick
+70839,slick slick_magazine glossy,a magazine printed on good quality paper
+70840,slicker,a person with good manners and stylish clothing
+70841,slickness slick slipperiness slip,a slippery smoothness; "he could feel the slickness of the tiller"
+70842,slide,(geology) the descent of a large mass of earth or rocks or snow etc.
+70843,slide glide coast,the act of moving smoothly along a surface while remaining in contact with it; "his slide didn't stop until the bottom of the hill"; "the children lined up for a coast down the snowy slope"
+70844,slide lantern_slide,a transparency mounted in a frame; viewed with a slide projector
+70845,slide microscope_slide,a small flat rectangular piece of glass on which specimens can be mounted for microscopic study
+70846,slide playground_slide sliding_board,plaything consisting of a sloping chute down which children can slide
+70847,slide_chart,a hand-held device, usually of paper, cardboard, or plastic, for conducting simple calculations or looking up information
+70848,slide_fastener zip zipper zip_fastener,a fastener for locking together two toothed edges by means of a sliding tab
+70849,slide_projector,projector that projects an enlarged image of a slide onto a screen
+70850,slide_rule slipstick,analog computer consisting of a handheld instrument used for rapid calculations; have been replaced by pocket calculators
+70851,slide_valve,valve that opens and closes a passageway by sliding over a port
+70852,slider,a fastball that curves slightly away from the side from which it was thrown
+70853,slider yellow-bellied_terrapin Pseudemys_scripta,freshwater turtle of United States and South America; frequently raised commercially; some young sold as pets
+70854,sliding_door,a door that opens by sliding instead of swinging
+70855,sliding_scale,a wage scale that fluctuates in response to the cost-of-living index
+70856,sliding_seat,rower's seat that slides fore and aft
+70857,sliding_window,a window that opens by sliding horizontally
+70858,slight_care,such care as a careless or inattentive person would exercise
+70859,slime_mold slime_mould,a naked mass of protoplasm having characteristics of both plants and animals; sometimes classified as protoctists
+70860,slime_mushroom,a mushroom of the genus Amanita
+70861,sliminess,a property resembling or being covered with slime
+70862,sling,a highball with liquor and water with sugar and lemon or lime juice
+70863,sling,a simple weapon consisting of a looped strap in which a projectile is whirled and then released
+70864,sling scarf_bandage triangular_bandage,bandage to support an injured forearm; consisting of a wide triangular piece of cloth hanging from around the neck
+70865,slingback sling,a shoe that has a strap that wraps around the heel
+70866,slinger,a person who uses a sling to throw something
+70867,slinger_ring,dispenser consisting of a tubular ring around the propeller hub of an airplane through which antifreeze solution is spread over the blades
+70868,slinging,throwing with a wide motion (as if with a sling)
+70869,slingshot sling catapult,a plaything consisting of a Y-shaped stick with elastic between the arms; used to propel small stones
+70870,slip,potter's clay that is thinned and used for coating or decorating ceramics
+70871,slip,a young and slender person; "he's a mere slip of a lad"
+70872,slip elusion eluding,the act of avoiding capture (especially by cunning)
+70873,slip sideslip,a flight maneuver; aircraft slides sideways in the air
+70874,slip slip-up miscue parapraxis,a minor inadvertent mistake usually observed in speech or writing or in small accidents or memory lapses etc.
+70875,slip slip_of_paper,a small sheet of paper; "a receipt slip"; "a withdrawal slip"
+70876,slip trip,an accidental misstep threatening (or causing) a fall; "he blamed his slip on the ice"; "the jolt caused many slips and a few spills"
+70877,slip-joint_pliers,pliers with a joint adjustable to two positions in order to increase the opening of the jaws
+70878,slip-on,an article of clothing (garment or shoe) that is easily slipped on or off
+70879,slip_clutch slip_friction_clutch,a friction clutch that will slip when the torque is too great
+70880,slip_coach slip_carriage,a railway car at the end of the train; it can be detached without stopping the train
+70881,slip_of_the_tongue,an accidental and usually trivial mistake in speaking
+70882,slip_ring,connection consisting of a metal ring on a rotating part of a machine; provides a continuous electrical connection through brushes on stationary contacts
+70883,slip_stitch,a loose stitch catching only a thread or two of fabric; designed to be invisible from the right side
+70884,slipcover,a removable fitted cloth covering for upholstered furniture
+70885,slipknot,a knot at the end of a cord or rope that can slip along the cord or rope around which it is made
+70886,slippage,decline from a standard level of performance or achievement
+70887,slippage,a decrease of transmitted power in a mechanical system caused by slipping
+70888,slippage,failing to hold or slipping out of place; "the knots allowed no slippage"
+70889,slipper carpet_slipper,low footwear that can be slipped on and off easily; usually worn indoors
+70890,slipper_spurge slipper_plant,any of several tropical American shrubby succulent plants resembling cacti but having foot-shaped bracts
+70891,slippery_dick Halicoeres_bivittatus,small wrasse of tropical Atlantic
+70892,slippery_elm red_elm Ulmus_rubra,North American elm having rough leaves that are red when opening; yields a hard wood
+70893,slipskin_grape,a grape whose skin slips readily from the pulp
+70894,slipstream airstream race backwash wash,the flow of air that is driven backwards by an aircraft propeller
+70895,slit,a narrow fissure
+70896,slit,a long narrow opening
+70897,slit_lamp,(ophthalmology) a lamp that emits a narrow but intense beam of light that enables an ophthalmologist, using a microscope, to view the retina and optic nerve
+70898,slit_trench,narrow trench for shelter in battle
+70899,slivovitz,a colorless plum brandy popular in the Balkans
+70900,slob sloven pig slovenly_person,a coarse obnoxious person
+70901,sloe,small sour dark purple fruit of especially the Allegheny plum bush
+70902,sloe_gin,gin flavored with sloes (fruit of the blackthorn)
+70903,sloganeer,someone who coins and uses slogans to promote a cause
+70904,sloganeering,persuasion by means of empty slogans
+70905,sloop,a sailing vessel with a single mast set about one third of the boat's length aft of the bow
+70906,sloop_of_war,a sailing or steam warship having cannons on only one deck
+70907,slop,(usually plural) waste water from a kitchen or bathroom or chamber pot that has to be emptied by hand; "she carried out the sink slops"
+70908,slop,(usually plural) weak or watery unappetizing food or drink; "he lived on the thin slops that food kitchens provided"
+70909,slop mire,deep soft mud in water or slush; "they waded through the slop"
+70910,slop slops swill pigswill pigwash,wet feed (especially for pigs) consisting of mostly kitchen waste mixed with water or skimmed or sour milk
+70911,slop_basin slop_bowl,a bowl into which the dregs of teacups and coffee cups are emptied at the table
+70912,slop_chest,commissary maintained aboard merchant ships to sell merchandise to the crew
+70913,slop_pail slop_jar,a large pail used to receive waste water from a washbasin or chamber pot
+70914,slope incline side,an elevated geological formation; "he climbed the steep slope"; "the house was built on the side of a mountain"
+70915,sloppiness slovenliness unkemptness,a lack of order and tidiness; not cared for
+70916,slops,cheap clothing (as formerly issued to sailors in Britain)
+70917,slopseller slop-seller,a dealer in cheap ready-made clothing
+70918,slopshop slopseller's_shop,a store that sells cheap ready-made clothing
+70919,slot,a position in a hierarchy or organization; "Bob Dylan occupied the top slot for several weeks"; "she beat some tough competition for the number one slot"
+70920,slot,the trail of an animal (especially a deer); "he followed the deer's slot over the soft turf to the edge of the trees"
+70921,slot,a position in a grammatical linguistic construction in which a variety of alternative units are interchangeable; "he developed a version of slot grammar"
+70922,slot,a small slit (as for inserting a coin or depositing mail); "he put a quarter in the slot"
+70923,slot expansion_slot,(computer) a socket in a microcomputer that will accept a plug-in circuit board; "the PC had three slots for additional memory"
+70924,slot one-armed_bandit,a slot machine that is used for gambling; "they spend hours and hours just playing the slots"
+70925,slot_machine coin_machine,a machine that is operated by the insertion of a coin in a slot
+70926,sloth laziness acedia,apathy and inactivity in the practice of virtue (personified as one of the deadly sins)
+70927,sloth slothfulness,a disinclination to work or exert yourself
+70928,sloth tree_sloth,any of several slow-moving arboreal mammals of South America and Central America; they hang from branches back downward and feed on leaves and fruits
+70929,sloth_bear Melursus_ursinus Ursus_ursinus,common coarse-haired long-snouted bear of south-central Asia
+70930,slouch,an incompetent person; usually used in negative constructions; "he's no slouch when it comes to baseball"
+70931,slouch,a stooping carriage in standing and walking
+70932,sloucher,a person who slouches; someone with a drooping carriage
+70933,slough,a hollow filled with mud
+70934,slough,a stagnant swamp (especially as part of a bayou)
+70935,slough,any outer covering that can be shed or cast off (such as the cast-off skin of a snake)
+70936,slough_of_despond,(formal) extreme depression
+70937,slovenliness,habitual uncleanliness
+70938,slow_lane,the traffic lane for vehicles that are moving slowly
+70939,slow_loris Nycticebus_tardigradua Nycticebus_pygmaeus,stocky lemur of southeastern Asia
+70940,slow_match,match or fuse made to burn slowly and evenly
+70941,slow_motion,a movie that apparently takes place at a slower than normal speed; achieved by taking the film at a faster rate
+70942,slow_virus,a virus that remains dormant in the body for a long time before symptoms appear; "kuru is caused by a slow virus"
+70943,slowdown lag retardation,the act of slowing down or falling behind
+70944,slowness deliberation deliberateness unhurriedness,a rate demonstrating an absence of haste or hurry
+70945,slub knot burl,soft lump or unevenness in a yarn; either an imperfection or created by design
+70946,sludge,the precipitate produced by sewage treatment
+70947,sludge slime goo goop gook guck gunk muck ooze,any thick, viscous matter
+70948,slug,a unit of mass equal to the mass that accelerates at 1 foot/sec/sec when acted upon by a force of 1 pound; approximately 14.5939 kilograms
+70949,slug,a counterfeit coin
+70950,slug,an amount of an alcoholic drink (usually liquor) that is poured or gulped; "he took a slug of hard liquor"
+70951,slug,any of various terrestrial gastropods having an elongated slimy body and no external shell
+70952,sluggard slug,an idle slothful person
+70953,slugger slogger,a boxer noted for an ability to deliver hard punches
+70954,sluggishness,the pace of things that move relatively slowly; "the sluggishness of the economy"; "the sluggishness of the compass in the Arctic cold"
+70955,sluice sluiceway penstock,conduit that carries a rapid flow of water controlled by a sluicegate
+70956,sluicegate sluice_valve floodgate penstock head_gate water_gate,regulator consisting of a valve or gate that controls the rate of water flow through a sluice
+70957,slum slum_area,a district of a city marked by poverty and inferior living conditions
+70958,slumber,a dormant or quiescent state
+70959,slumber_party,an overnight party of girls who dress in nightclothes and pass the night talking
+70960,slumgullion,a thin stew of meat and vegetables
+70961,slump slack drop-off falloff falling_off,a noticeable deterioration in performance or quality; "the team went into a slump"; "a gradual slack in output"; "a drop-off in attendance"; "a falloff in quality"
+70962,slur,(music) a curved line spanning notes that are to be played legato
+70963,slurry,a suspension of insoluble particles (as plaster of Paris or lime or clay etc.) usually in water
+70964,slush,partially melted snow
+70965,slush_fund,a fund for buying votes or bribing public officials
+70966,smack,a sailing ship (usually rigged like a sloop or cutter) used in fishing and sailing along the coast
+70967,smack smacking slap,the act of smacking something; a blow delivered with an open hand
+70968,smack smooch,an enthusiastic kiss
+70969,smacker,a loud kiss
+70970,smacker,a very powerful blow with the fist
+70971,small,the slender part of the back
+70972,small,a garment size for a small person
+70973,small-for-gestational-age_infant SGA_infant,an infant whose size and weight are considerably less than the average for babies of the same age
+70974,small-leaved_linden small-leaved_lime Tilia_cordata,large spreading European linden with small dark green leaves; often cultivated as an ornamental
+70975,small-particle_pollution,air pollution caused by fine particles of soot (as from power plants or diesel engines)
+70976,small_boat,a boat that is small
+70977,small_businessman,a businessman who runs a business employing less than 100 people
+70978,small_cane switch_cane Arundinaria_tecta,small cane of watery or moist areas in southern United States
+70979,small_cap,a corporation with a small capitalization; "this annual conference is a showcase for ambitious small caps"
+70980,small_capital small_cap,a character having the form of an upper-case letter but the same height as lower-case letters
+70981,small_change chickenfeed chump_change,a trifling sum of money
+70982,small_civet Viverricula_indica Viverricula_malaccensis,a common civet of southeast Asia
+70983,small_computer_system_interface SCSI,interface consisting of a standard port between a computer and its peripherals that is used in some computers
+70984,small_farmer,a farmer on a small farm
+70985,small_fortune,a large sum of money; "he made a small fortune in the commodities market"
+70986,small_hours,the hours just after midnight
+70987,small_indefinite_quantity small_indefinite_amount,an indefinite quantity that is below average size or magnitude
+70988,small_intestine,the longest part of the alimentary canal; where digestion is completed
+70989,small_letter lowercase lower-case_letter minuscule,the characters that were once kept in bottom half of a compositor's type case
+70990,small_person,a person of below average size
+70991,small_print fine_print,material printed in small type; "he needed his glasses in order to read the fine print"
+70992,small_ship,a ship that is small
+70993,small_stores,personal items conforming to regulations that are sold aboard ship or at a naval base and charged to the person's pay
+70994,small_stuff,any light rope used on shipboard
+70995,small_white Pieris_rapae,small widely distributed form
+70996,small_white_aster,a variety of aster
+70997,smalleye_hammerhead Sphyrna_tudes,fished for the hide and vitamin-rich liver
+70998,smallholder,a person owning or renting a smallholding
+70999,smallholding,a piece of land under 50 acres that is sold or let to someone for cultivation
+71000,smallmouth smallmouth_bass smallmouthed_bass smallmouth_black_bass smallmouthed_black_bass Micropterus_dolomieu,a variety of black bass; the angle of the jaw falls below the eye
+71001,smallmouth_bass,flesh of smallmouth bass
+71002,smallness,the property of being a relatively small amount; "he was attracted by the smallness of the taxes"
+71003,smallness littleness,the property of having a relatively small size
+71004,smallness littleness,the property of having relatively little strength or vigor; "the smallness of her voice"
+71005,smallpox variola variola_major,a highly contagious viral disease characterized by fever and weakness and skin eruption with pustules that form scabs that slough off leaving scars
+71006,smalltooth_sawfish Pristis_pectinatus,commonly found in tropical bays and estuaries; not aggressive
+71007,smaltite,a grey mineral consisting of cobalt arsenide and nickel; an important source of cobalt and nickel
+71008,smart smarting smartness,a kind of pain such as that caused by a wound or a burn or a sore
+71009,smart_bomb,a bomb that can be guided (by a laser beam or radio) to its target; "smart bombs have revolutionized aerial bombardment"
+71010,smart_card,a plastic card containing a microprocessor that enables the holder to perform operations requiring data that is stored in the microprocessor; typically used to perform financial transactions
+71011,smart_money,money bet or invested by experienced gamblers or investors (especially if they have inside information)
+71012,smart_money,people who are highly experienced or who have inside information; "the smart money said Truman would lose the election"
+71013,smarta,one of a group of brahmans who uphold nonsectarian orthodoxy according to the Vedanta school of Hinduism
+71014,smash smash-up,a serious collision (especially of motor vehicles)
+71015,smasher,a person who smashes something
+71016,smasher stunner knockout beauty ravisher sweetheart peach lulu looker mantrap dish,a very attractive or seductive looking woman
+71017,smashing shattering,the act of breaking something into small pieces
+71018,smattering,a slight or superficial understanding of a subject
+71019,smear cytologic_smear cytosmear,a thin tissue or blood sample spread on a glass slide and stained for cytologic examination and diagnosis under a microscope
+71020,smear vilification malignment,slanderous defamation
+71021,smear_word,an epithet that can be used to smear someone's reputation; "he used the smear word `communist' for everyone who disagreed with him"
+71022,smegma,a white secretion of the sebaceous glands of the foreskin
+71023,smell odor odour olfactory_sensation olfactory_perception,the sensation that results when olfactory receptors in the nose are stimulated by particular chemicals in gaseous form; "she loved the smell of roses"
+71024,smell sense_of_smell olfaction olfactory_modality,the faculty that enables us to distinguish scents
+71025,smell smelling,the act of perceiving the odor of something
+71026,smelling_bottle,a bottle containing smelling salts
+71027,smelling_salts,a pungent preparation of ammonium carbonate and perfume; sniffed as a stimulant to relieve faintness
+71028,smelt,small cold-water silvery fish; migrate between salt and fresh water
+71029,smelt,small trout-like silvery marine or freshwater food fishes of cold northern waters
+71030,smelter smeltery,an industrial plant for smelting
+71031,smew Mergus_albellus,smallest merganser and most expert diver; found in northern Eurasia
+71032,smilax Asparagus_asparagoides,fragile twining plant of South Africa with bright green flattened stems and glossy foliage popular as a floral decoration
+71033,smile smiling grin grinning,a facial expression characterized by turning up the corners of the mouth; usually shows pleasure or amusement
+71034,smiler,a person who smiles
+71035,smiley,an emoticon of a smiling face
+71036,smilo smilo_grass Oryzopsis_miliacea,perennial mountain rice native to Mediterranean region and introduced into North America
+71037,smirk,a smile expressing smugness or scorn instead of pleasure
+71038,smirker,a smiler whose smile is offensively self-satisfied
+71039,smith,someone who works at something specified
+71040,smith metalworker,someone who works metal (especially by hammering it when it is hot and malleable)
+71041,smithereens,a collection of small fragments considered as a whole; "Berlin was bombed to smithereens"; "his hopes were dashed to smithereens"; "I wanted to smash him to smithereens"; "the toilet bowl ws blown to smithereens"
+71042,smocking,embroidery consisting of ornamental needlework on a garment that is made by gathering the cloth tightly in stitches
+71043,smog smogginess,air pollution by a mixture of smoke and fog
+71044,smoke,an indication of some hidden activity; "with all that smoke there must be a fire somewhere"
+71045,smoke,something with no concrete substance; "his dreams all turned to smoke"; "it was just smoke and mirrors"
+71046,smoke fume,a cloud of fine particles suspended in a gas
+71047,smoke smoking,a hot vapor containing fine particles of carbon being produced by combustion; "the fire produced a tower of black smoke that could be seen for miles"
+71048,smoke smoking,the act of smoking tobacco or other substances; "he went outside for a smoke"; "smoking stinks"
+71049,smoke_bomb smoke_grenade,a bomb that gives off thick smoke when it explodes; used to make a smoke screen or to mark a position
+71050,smoke_bush,any of various shrubs of the genus Conospermum with panicles of mostly white woolly flowers
+71051,smoke_hole,a vent (as in a roof) for smoke to escape
+71052,smoke_screen smokescreen,(military) screen consisting of a cloud of smoke that obscures movements
+71053,smoke_screen smokescreen,an action intended to conceal or confuse or obscure; "requesting new powers of surveillance is just a smokescreen to hide their failures"
+71054,smoke_tree Dalea_spinosa,greyish-green shrub of desert regions of southwestern United States and Mexico having sparse foliage and terminal spikes of bluish violet flowers; locally important as source of a light-colored honey of excellent flavor
+71055,smoke_tree smoke_bush,any of several shrubs or shrubby trees of the genus Cotinus
+71056,smoked_eel,eel cured by smoking
+71057,smoked_mackerel,mackerel cured by smoking
+71058,smoked_salmon,salmon cured by smoking
+71059,smokehouse meat_house,a small house where smoke is used to cure meat or fish
+71060,smokeless_powder Ballistite,an explosive (trade name Ballistite) that burns with relatively little smoke; contains pyrocellulose and is used as a propellant
+71061,smoker smoking_car smoking_carriage smoking_compartment,a passenger car for passengers who wish to smoke
+71062,smoker tobacco_user,a person who smokes tobacco
+71063,smokestack stack,a large tall chimney through which combustion gases and smoke can be evacuated
+71064,smoking_gun,indisputable evidence (especially of a crime)
+71065,smoking_mixture,a blend of tobaccos to be smoked in a pipe
+71066,smoking_room,room in a hotel or club set apart for smokers
+71067,smooth,the act of smoothing; "he gave his hair a quick smooth"
+71068,smooth-haired_fox_terrier,a fox terrier with smooth hair
+71069,smooth-leaved_elm European_field_elm Ulmus_carpinifolia,European elm with lustrous smooth leaves used as an ornamental
+71070,smooth_alder hazel_alder Alnus_serrulata,common shrub of the eastern United States with smooth bark
+71071,smooth_aster,a variety of aster
+71072,smooth_crabgrass Digitaria_ischaemum,a weed
+71073,smooth_darling_pea Swainsona_galegifolia,erect or trailing perennial of eastern Australia having axillary racemes of blue to purple or red flowers
+71074,smooth_dogfish,small bottom-dwelling shark found along both Atlantic coasts
+71075,smooth_green_snake Opheodrys_vernalis,of western and central United States
+71076,smooth_hammerhead Sphyrna_zygaena,fished for the hides and vitamin-rich liver
+71077,smooth_lip_fern Alabama_lip_fern Cheilanthes_alabamensis,southeastern United States to northern Mexico and Jamaica
+71078,smooth_muscle,muscle tissue that does not appear striated under the microscope; has the form of thin layers or sheets
+71079,smooth_muscle involuntary_muscle,a muscle that contracts without conscious control and found in walls of internal organs such as stomach and intestine and bladder and blood vessels (excluding the heart)
+71080,smooth_muscle_cell,cells of the smooth muscles
+71081,smooth_plane smoothing_plane,a small plane for finish work
+71082,smooth_softshell Trionyx_muticus,river turtle of Mississippi basin; prefers running water
+71083,smooth_sumac scarlet_sumac vinegar_tree Rhus_glabra,common nonpoisonous shrub of eastern North America with waxy compound leaves and green paniculate flowers followed by red berries
+71084,smooth_winterberry_holly,a holly shrub
+71085,smooth_woodsia Woodsia_glabella,rock-inhabiting fern of Arctic and subarctic Europe to eastern Asia
+71086,smoothbark,any of several Australian eucalypts having the bark smooth except at or near the base of the trunk
+71087,smoothbore,a firearm that has no rifling
+71088,smoothhound smoothhound_shark Mustelus_mustelus,smooth dogfish of European coastal waters
+71089,smoothie,a thick smooth drink consisting of fresh fruit pureed with ice cream or yoghurt or milk
+71090,smoothie smoothy sweet_talker charmer,someone with an assured and ingratiating manner
+71091,smoothness,a texture without roughness; smooth to the touch; "admiring the slim smoothness of her thighs"; "some artists prefer the smoothness of a board"
+71092,smoothness,the quality of having a level and even surface; "the water was a glassy smoothness"; "the weather system of the Pacific is determined by the uninterrupted smoothness of the ocean"
+71093,smoothness,the quality of being free from errors or interruptions; "the five-speed manual gearbox is smoothness personified"
+71094,smorgasbord,an assortment of foods starting with herring or smoked eel or salmon etc with bread and butter; then cheeses and eggs and pickled vegetables and aspics; finally hot foods; served as a buffet meal
+71095,smother,a stifling cloud of smoke
+71096,smoulder smolder,a fire that burns with thick smoke but no flame; "the smoulder suddenly became a blaze"
+71097,smudge,a smoky fire to drive away insects
+71098,smudge spot blot daub smear smirch slur,a blemish made by dirt; "he had a smudge on his cheek"
+71099,smuggler runner contrabandist moon_curser moon-curser,someone who imports or exports without paying duties
+71100,smuggling,secretly importing prohibited goods or goods on which duty is due
+71101,smugness,an excessive feeling of self-satisfaction
+71102,smut,destructive diseases of plants (especially cereal grasses) caused by fungi that produce black powdery masses of spores
+71103,smut smut_fungus,any fungus of the order Ustilaginales
+71104,smut_grass blackseed carpet_grass Sporobolus_poiretii,grass native to West Indies but common in southern United States having tufted wiry stems often infested with a dark fungus
+71105,smuttiness dirtiness,obscenity in speech or writing
+71106,smuttiness sootiness,the state of being dirty with soot
+71107,snack_bar snack_counter buffet,usually inexpensive bar
+71108,snack_food,food for light meals or for eating between meals
+71109,snaffle snaffle_bit,a simple jointed bit for a horse; without a curb
+71110,snafu,an acronym often used by soldiers in World War II: situation normal all fucked up
+71111,snag,a sharp protuberance
+71112,snag,a dead tree that is still standing, usually in an undisturbed forest; "a snag can provide food and a habitat for insects and birds"
+71113,snail,freshwater or marine or terrestrial gastropod mollusk usually having an external enclosing spiral shell
+71114,snail_butter,for preparing snails: butter seasoned with shallots and garlic and parsley
+71115,snail_darter Percina_tanasi,a small snail-eating perch of the Tennessee River
+71116,snail_mail,any mail that is physically delivered by the postal service; "email is much faster than snail mail"
+71117,snailfish seasnail sea_snail Liparis_liparis,small tadpole-shaped cold-water fishes with pelvic fins forming a sucker; related to lumpfish
+71118,snailflower snail-flower snail_flower snail_bean corkscrew_flower Vigna_caracalla Phaseolus_caracalla,perennial tropical American vine cultivated for its racemes of showy yellow and purple flowers having the corolla keel coiled like a snail shell; sometimes placed in genus Phaseolus
+71119,snake,something long, thin, and flexible that resembles a snake
+71120,snake serpent ophidian,limbless scaly elongate reptile; some are venomous
+71121,snake snake_in_the_grass,a deceitful or treacherous person
+71122,snake's_head_fritillary guinea-hen_flower checkered_daffodil leper_lily Fritillaria_meleagris,Eurasian checkered lily with pendant flowers usually veined and checkered with purple or maroon on a pale ground and shaped like the bells carried by lepers in medieval times; widely grown as an ornamental
+71123,snake_charmer,a performer who uses movements and music to control snakes
+71124,snake_dance,a group advancing in a single-file serpentine path
+71125,snake_dance,a ceremonial dance (as by the Hopi) in which snakes are handled or invoked
+71126,snake_mackerel Gempylus_serpens,predatory tropical fishes with jutting jaws and strong teeth
+71127,snake_muishond Poecilogale_albinucha,small slender burrowing muishond with white top of the head
+71128,snake_oil,(medicine) any of various liquids sold as medicine (as by a travelling medicine show) but medically worthless
+71129,snake_polypody Microgramma-piloselloides,epiphytic ferns with long rhizomes; tropical America
+71130,snake_venom,venom secreted by certain snakes
+71131,snakebird anhinga darter,fish-eating bird of warm inland waters having a long flexible neck and slender sharp-pointed bill
+71132,snakebite,a bite inflicted by a (venomous) snake
+71133,snakeblenny Lumpenus_lumpretaeformis,found in Arctic and northern Atlantic waters
+71134,snakefly,predatory insect of western North America having a long necklike prothorax
+71135,snakes_and_ladders,a board game for children who use dice to move counters up ladders and down snakes
+71136,snakewood Rauwolfia_serpentina,East Indian climbing shrub with twisted limbs and roots resembling serpents
+71137,snap,a spell of cold weather; "a cold snap in the middle of May"
+71138,snap,the noise produced by the rapid movement of a finger from the tip to the base of the thumb on the same hand; "servants appeared at the snap of his fingers"
+71139,snap,a sudden breaking
+71140,snap,the act of snapping the fingers; movement of a finger from the tip to the base of the thumb on the same hand; "he gave his fingers a snap"
+71141,snap snap_fastener press_stud,a fastener used on clothing; fastens with a snapping sound; "children can manage snaps better than buttons"
+71142,snap-brim_hat,a hat with a snap brim
+71143,snap_bean snap,tender green beans without strings that easily snap into sections
+71144,snap_brim,a brim that can be turned up and down on opposite sides
+71145,snap_roll,a fast roll
+71146,snapdragon,a garden plant of the genus Antirrhinum having showy white or yellow or crimson flowers resembling the face of a dragon
+71147,snapper,flesh of any of various important food fishes of warm seas
+71148,snapper,any of several large sharp-toothed marine food and sport fishes of the family Lutjanidae of mainly tropical coastal waters
+71149,snapper Chrysophrys_auratus,Australian food fish having a pinkish body with blue spots
+71150,snapping_shrimp pistol_shrimp,small shrimp that makes a snapping noise with one of their enlarged chelae
+71151,snapping_turtle,large aggressive freshwater turtle with powerful jaws
+71152,snapshot snap shot,an informal photograph; usually made with a small hand-held camera; "my snapshots haven't been developed yet"; "he tried to get unposed shots of his friends"
+71153,snapshot_program,a trace program that produces output for selected conditions
+71154,snare,a surgical instrument consisting of wire hoop that can be drawn tight around the base of polyps or small tumors to sever them; used especially in body cavities
+71155,snare,strings stretched across the lower head of a snare drum; they make a rattling sound when the drum is hit
+71156,snare gin noose,a trap for birds or small mammals; often has a slip noose
+71157,snare_drum snare side_drum,a small drum with two heads and a snare stretched across the lower head
+71158,snarer,someone who sets snares for birds or small animals
+71159,snarl,a vicious angry growl
+71160,snarl,an angry vicious expression
+71161,snatch,a weightlift in which the barbell is lifted overhead in one rapid motion
+71162,snatch bit,a small fragment; "overheard snatches of their conversation"
+71163,snatch_block,a pulley-block that can be opened to receive the bight of a rope
+71164,snatcher,a thief who grabs and runs; "a purse snatcher"
+71165,sneak,a person who is regarded as underhanded and furtive and contemptible
+71166,sneak_preview,a preview to test audience reactions
+71167,sneak_thief pilferer snitcher,a thief who steals without using violence
+71168,sneer,a contemptuous or scornful remark
+71169,sneer leer,a facial expression of contempt or scorn; the upper lip curls
+71170,sneerer scorner,a person who expresses contempt by remarks or facial expression
+71171,sneeze sneezing sternutation,a symptom consisting of the involuntary expulsion of air from the nose
+71172,sneezer,a person who sneezes
+71173,sneezeweed,any of various plants of the genus Helenium characteristically causing sneezing
+71174,sneezeweed_yarrow sneezewort Achillea_ptarmica,Eurasian herb having loose heads of button-shaped white flowers and long grey-green leaves that cause sneezing when powdered
+71175,snick,a glancing contact with the ball off the edge of the cricket bat
+71176,snicker snort snigger,a disrespectful laugh
+71177,sniff snuff,sensing an odor by inhaling through the nose
+71178,sniffer,a person who sniffs
+71179,sniffler sniveler,a person who breathes audibly through a congested nose
+71180,snifter brandy_snifter brandy_glass,a globular glass with a small top; used for serving brandy
+71181,snip snippet snipping,a small piece of anything (especially a piece that has been snipped off)
+71182,snipe,Old or New World straight-billed game bird of the sandpiper family; of marshy areas; similar to the woodcocks
+71183,snipe,a gunshot from a concealed location
+71184,snipe_hunt,an elaborate practical joke in which the unsuspecting victim hunts a snipe and is typically left in the dark holding a bag and waiting for the snipe to run into it; "in the South a snipe hunt is practically a rite of passage"
+71185,snipefish bellows_fish,small bottom-dwelling fish of warm seas having a compressed body and a long snout with a toothless mouth
+71186,sniper,a marksman who shoots at people from a concealed place
+71187,sniper_rifle precision_rifle,an extremely powerful rifle developed for the military; capable of destroying light armored vehicles and aircraft more than a mile away
+71188,snips tinsnips,(plural) hand shears for cutting sheet metal
+71189,snit,a state of agitated irritation; "he was in a snit"
+71190,snivel sniveling,whining in a tearful manner
+71191,snob prig snot snoot,a person regarded as arrogant and annoying
+71192,snobbery snobbism snobbishness,the trait of condescending to those of lower social status
+71193,snogging,(British informal) cuddle and kiss
+71194,snood,an ornamental net in the shape of a bag that confines a woman's hair; pins or ties at the back of the head
+71195,snook,large tropical American food and game fishes of coastal and brackish waters; resemble pike
+71196,snooker,a form of pool played with 15 red balls and six balls of other colors and a cue ball
+71197,snoop snooper,a spy who makes uninvited inquiries into the private affairs of others
+71198,snootiness,the quality of being snooty; "he disliked his neighbors' snootiness"
+71199,snore,the rattling noise produced when snoring
+71200,snore snoring stertor,the act of snoring or producing a snoring sound
+71201,snorer,someone who snores while sleeping
+71202,snorkel,breathing device consisting of a bent tube fitting into a swimmer's mouth and extending above the surface; allows swimmer to breathe while face down in the water
+71203,snorkel schnorkel schnorchel snorkel_breather breather,air passage provided by a retractable device containing intake and exhaust pipes; permits a submarine to stay submerged for extended periods of time
+71204,snorkeling snorkel_diving,skin diving with a snorkel
+71205,snorter,someone who expresses contempt or indignation by uttering a snorting sound
+71206,snorter,something outstandingly difficult; "the problem was a real snorter"
+71207,snorter,something that is extraordinary or remarkable or prominent; "a snorter of a sermon"; "the storm wasn't long but it was a snorter"
+71208,snot,nasal mucus
+71209,snout neb,a long projecting or anterior elongation of an animal's head; especially the nose
+71210,snout rostrum,beaklike projection of the anterior part of the head of certain insects such as e.g. weevils
+71211,snout_beetle,small weevil having a prolonged snout; destructive to e.g. grains and nuts
+71212,snow,a layer of snowflakes (white crystals of frozen water) covering the ground
+71213,snow snowfall,precipitation falling from clouds in the form of ice crystals
+71214,snow-in-summer love-in-a-mist Cerastium_tomentosum,chickweed with hairy silver-grey leaves and rather large white flowers
+71215,snow-on-the-mountain snow-in-summer ghost_weed Euphorbia_marginata,annual spurge of western United States having showy white-bracted flower clusters and very poisonous milk
+71216,snow_bunting snowbird snowflake Plectrophenax_nivalis,white Arctic bunting
+71217,snow_goose,blue goose in the white color phase
+71218,snow_gum ghost_gum white_ash Eucalyptus_coriacea Eucalyptus_pauciflora,small to medium-sized tree of Australia and Tasmania having smooth white to light-grey bark shedding in patches or strips
+71219,snow_job,a long and elaborate misrepresentation
+71220,snow_leopard ounce Panthera_uncia,large feline of upland central Asia having long thick whitish fur
+71221,snow_line,the line on a mountain above which there is perpetual snow and ice
+71222,snow_mushroom Tremella_fuciformis,popular in China and Japan and Taiwan; gelatinous mushrooms; most are dried
+71223,snow_pea sugar_pea,variety of pea plant producing peas having thin flat edible pods
+71224,snow_pea sugar_pea,green peas with flat edible pods
+71225,snow_plant Sarcodes_sanguinea,a fleshy bright red saprophytic plant of the mountains of western North America that appears in early spring while snow is on the ground
+71226,snow_thrower snow_blower,a machine that removes snow by scooping it up and throwing it forcefully through a chute
+71227,snow_tire,an automobile pneumatic tire with deep tread to give traction in snow
+71228,snowball,ball of ice cream covered with coconut and usually chocolate sauce
+71229,snowball,ball of crushed ice with fruit syrup
+71230,snowball,snow pressed into a ball for throwing (playfully)
+71231,snowball sweet_sand_verbena Abronia_elliptica,plant having heads of fragrant white trumpet-shaped flowers; grows in sandy arid regions
+71232,snowbank snow_bank,a mound or heap of snow
+71233,snowbell Styrax_obassia,small tree native to Japan
+71234,snowberry common_snowberry waxberry Symphoricarpos_alba,deciduous shrub of western North America having spikes of pink flowers followed by round white berries
+71235,snowblindness snow-blindness,temporary blindness caused by exposure to sunlight reflected from snow or ice
+71236,snowboard,a board that resembles a broad ski or a small surfboard; used in a standing position to slide down snow-covered slopes
+71237,snowboarder,someone who slides down snow-covered slopes while standing on a snowboard
+71238,snowboarding,the act of sliding down a snow-covered slope while standing on a snowboard
+71239,snowcap,a covering of snow (as on a mountain peak)
+71240,snowdrift,a mass of snow heaped up by the wind
+71241,snowdrop_anemone snowdrop_windflower Anemone_sylvestris,Eurasian herb with solitary nodding fragrant white flowers
+71242,snowfield,a permanent wide expanse of snow
+71243,snowflake flake,a crystal of snow
+71244,snowman,a figure of a person made of packed snow
+71245,snowmobile,tracked vehicle for travel on snow having skis in front
+71246,snowplow snowplough,a vehicle used to push snow from roads
+71247,snowshoe,a device to help you walk on deep snow; a lightweight frame shaped like a racquet is strengthened with cross pieces and contains a network of thongs; one is worn on each foot
+71248,snowshoe_hare snowshoe_rabbit varying_hare Lepus_americanus,large large-footed North American hare; white in winter
+71249,snowsuit,a child's overgarment for cold weather
+71250,snowy_egret snowy_heron Egretta_thula,small New World egret
+71251,snowy_orchid Habenaria_nivea,slender fringed orchid of eastern North America having white flowers
+71252,snowy_tree_cricket Oecanthus_fultoni,pale yellowish tree cricket widely distributed in North America
+71253,snub cut cold_shoulder,a refusal to recognize someone you know; "the snub was clearly intentional"
+71254,snuff,the charred portion of a candlewick
+71255,snuff,a pinch of smokeless tobacco inhaled at a single time
+71256,snuff,finely powdered tobacco for sniffing up the nose
+71257,snuff-color snuff-colour,dark yellowish brown
+71258,snuffbox,a small ornamental box for carrying snuff in your pocket
+71259,snuffbox_fern meadow_fern Thelypteris_palustris_pubescens Dryopteris_thelypteris_pubescens,fern of northeastern North America
+71260,snuffer,a person who snuffs out candles
+71261,snuffer,a cone-shaped implement with a handle; for extinguishing candles
+71262,snuffer snuff_user,a person who uses snuff
+71263,snuffers,scissors for cropping and holding the snuff of a candlewick
+71264,snuffle sniffle snivel,the act of breathing heavily through the nose (as when the nose is congested)
+71265,snuffler,a person who breathes noisily (as through a nose blocked by mucus)
+71266,soak soakage soaking,the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid); "a good soak put life back in the wagon"
+71267,soak soaking,washing something by allowing it to soak
+71268,soap,money offered as a bribe
+71269,soap,a cleansing agent made from the salts of vegetable or animal fats
+71270,soap scoop max liquid_ecstasy grievous_bodily_harm goop Georgia_home_boy easy_lay,street names for gamma hydroxybutyrate
+71271,soap_bubble,a bubble formed by a thin soap film
+71272,soap_dish,a bathroom or kitchen fixture for holding a bar of soap
+71273,soap_dispenser,dispenser of liquid soap
+71274,soap_film,a film left on objects after they have been washed in soap
+71275,soap_flakes,soap that has been cut into flakes to make suds faster
+71276,soap_opera,a serialized program usually dealing with sentimentalized family matters that is broadcast on radio or television (frequently sponsored by a company advertising soap products)
+71277,soap_pad,a cleaning pad containing soap
+71278,soap_powder built-soap_powder washing_powder,soap in powdered form mixed with alkaline builders
+71279,soapberry soapberry_tree,a tree of the genus Sapindus whose fruit is rich in saponin
+71280,soapberry_vine,tendril-climbing vine
+71281,soapbox,a crate for packing soap
+71282,soapfish,fishes with slimy mucus-covered skin; found in the warm Atlantic coastal waters of America
+71283,soapiness,the quality of being soap or being covered with soap; "she could smell the soapiness of the doctor's hands"
+71284,soapstone soaprock soap-rock steatite,a soft heavy compact variety of talc having a soapy feel; used to make hearths and tabletops and ornaments
+71285,soapsuds suds lather,the froth produced by soaps or detergents
+71286,soapweed soap-weed soap_tree Yucca_elata,tall arborescent yucca of southwestern United States
+71287,soapwort hedge_pink bouncing_Bet bouncing_Bess Saponaria_officinalis,plant of European origin having pink or white flowers and leaves yielding a detergent when bruised
+71288,soapwort_gentian Gentiana_saponaria,erect perennial of wet woodlands of North America having leaves and flower buds resembling those of soapwort
+71289,soar zoom,the act of rising upward into the air
+71290,sob sobbing,convulsive gasp made while weeping
+71291,sob_sister,a journalist who specializes in sentimental stories
+71292,sob_story sob_stuff,a sentimental story (or drama) of personal distress; designed to arouse sympathy
+71293,soberness sobriety,the state of being sober and not intoxicated by alcohol
+71294,sobersides,a serious and sedate individual
+71295,sobralia,any of various showy orchids of the genus Sobralia having leafy stems and bright-colored solitary or racemose flowers similar to those of genus Cattleya
+71296,sobriety dryness,moderation in or abstinence from alcohol or other drugs
+71297,sobriety temperance,abstaining from excess
+71298,socage,land tenure by agricultural service or payment of rent; not burdened with military service
+71299,soccer association_football,a football game in which two teams of 11 players try to kick or head a ball into the opponents' goal
+71300,soccer_ball,an inflated ball used in playing soccer
+71301,soccer_player,an athlete who plays soccer
+71302,sociability sociableness,the relative tendency or disposition to be sociable or associate with one's fellows
+71303,sociable social mixer,a party of people assembled to promote sociability and communal activity
+71304,social_action,a social policy of reform (especially socioeconomic reform)
+71305,social_activity,activity considered appropriate on social occasions
+71306,social_anthropologist cultural_anthropologist,an anthropologist who studies such cultural phenomena as kinship systems
+71307,social_anthropology cultural_anthropology,the branch of anthropology that deals with human culture and society
+71308,social_climber climber,someone seeking social prominence by obsequious behavior
+71309,social_contract,an implicit agreement among people that results in the organization of society; individual surrenders liberty in return for protection
+71310,social_control,control exerted (actively or passively) by group action
+71311,social_dancing,dancing as part of a social occasion
+71312,social_democracy,the belief in a gradual transition from capitalism to socialism by democratic means
+71313,social_event,an event characteristic of persons forming groups
+71314,social_gathering social_affair,a gathering for the purpose of promoting fellowship
+71315,social_group,people sharing some social relation
+71316,social_insect,an insect that lives in a colony with other insects of the same species
+71317,social_insurance,government provision for unemployed, injured, or aged people; financed by contributions from employers and employees as well as by government revenue
+71318,social_organization social_organisation social_structure social_system structure,the people in a society considered as a system organized by a characteristic pattern of relationships; "the social organization of England and America is very different"; "sociologists have studied the changing structure of the family"
+71319,social_phobia,any phobia (other than agoraphobia) associated with situations in which you are subject to criticism by others (as fear of eating in public or public speaking etc)
+71320,social_policy,a policy of for dealing with social issues
+71321,social_process,a process involved in the formation of groups of persons
+71322,social_psychology,the branch of psychology that studies persons and their relationships with others and with groups and with society as a whole
+71323,social_relation,a relation between living organisms (especially between people)
+71324,social_science,the branch of science that studies society and the relationships of individual within a society
+71325,social_scientist,someone expert in the study of human society and its personal relationships
+71326,social_season,the season for major social events
+71327,social_secretary,a personal secretary who handles your social correspondence and appointments
+71328,social_station social_status social_rank rank,position in a social hierarchy; "the British are more aware of social status than Americans are"
+71329,social_welfare welfare public_assistance,governmental provision of economic assistance to persons in need; "she lives on welfare"
+71330,social_work,any of various services designed to aid the poor and aged and to increase the welfare of children
+71331,social_worker caseworker welfare_worker,someone employed to provide social services (especially to the disadvantaged)
+71332,socialism,a political theory advocating state ownership of industry
+71333,socialism socialist_economy,an economic system based on state ownership of capital
+71334,socialist,a political advocate of socialism
+71335,socialite,a socially prominent person
+71336,sociality,the tendency to associate with others and to form social groups; "mammals as a class are not strong on sociality"
+71337,socialization socialisation,the action of establishing on a socialist basis; "the socialization of medical services"
+71338,socialization socialisation acculturation enculturation,the adoption of the behavior patterns of the surrounding culture; "the socialization of children to the norms of their culture"
+71339,socialization socialisation socializing socialising,the act of meeting for social purposes; "there was too much socialization with the enlisted men"
+71340,socializer socialiser,a person who takes part in social activities
+71341,society,an extended social group having a distinctive cultural and economic organization
+71342,society high_society beau_monde smart_set bon_ton,the fashionable elite
+71343,sociobiologist,a biologist who studies the biological determinants of social behavior
+71344,sociobiology,the branch of biology that conducts comparative studies of the social organization of animals (including human beings) with regard to its evolutionary history
+71345,sociolinguist,a linguist who studies the social and cultural factors that influence linguistic communication
+71346,sociolinguistics,the study of language in relation to its sociocultural context
+71347,sociologist,a social scientist who studies the institutions and development of human society
+71348,sociology,the study and classification of human societies
+71349,sociology_department department_of_sociology,the academic department responsible for teaching and research in sociology
+71350,sociometry,the quantitative study of social relationships
+71351,sociopath psychopath,someone with a sociopathic personality; a person with an antisocial personality disorder (`psychopath' was once widely used but has now been superseded by `sociopath')
+71352,sock,hosiery consisting of a cloth covering for the foot; worn inside the shoe; reaches to between the ankle and the knee
+71353,socket,a bony hollow into which a structure fits
+71354,socket,receptacle where something (a pipe or probe or end of a bone) is inserted
+71355,socket,a receptacle into which an electric device can be inserted
+71356,socket_wrench,a wrench with a handle onto which sockets of different sizes can be fitted
+71357,sockeye sockeye_salmon red_salmon blueback_salmon Oncorhynchus_nerka,small salmon with red flesh; found in rivers and tributaries of the northern Pacific and valued as food; adults die after spawning
+71358,socle,a plain plinth that supports a wall
+71359,sod_house soddy adobe_house,a house built of sod or adobe laid in horizontal courses
+71360,soda_can,a can for holding soft drinks
+71361,soda_cracker,unsweetened cracker leavened slightly with soda and cream of tartar
+71362,soda_fountain,a counter where ice cream and sodas and sundaes are prepared and served
+71363,soda_fountain,an apparatus for dispensing soda water
+71364,soda_jerk soda_jerker,someone who works at a soda fountain
+71365,soda_lime,a mixture of sodium and calcium hydroxides; absorbs liquids and gases
+71366,soda_water carbonated_water club_soda seltzer sparkling_water,effervescent beverage artificially charged with carbon dioxide
+71367,sodalist,a member of a sodality
+71368,sodalite,a vitreous mineral consisting of sodium aluminum silicate and sodium chloride in crystalline form; occurs in igneous rocks
+71369,sodium Na atomic_number_11,a silvery soft waxy metallic element of the alkali metal group; occurs abundantly in natural compounds (especially in salt water); burns with a yellow flame and reacts violently in water; occurs in sea water and in the mineral halite (rock salt)
+71370,sodium-vapor_lamp sodium-vapour_lamp,lamp in which an electric current passed through a tube of sodium vapor makes a yellow light; used is street lighting
+71371,sodium_carbonate washing_soda sal_soda soda_ash soda,a sodium salt of carbonic acid; used in making soap powders and glass and paper
+71372,sodium_carboxymethyl_cellulose,a gummy substance that is a sodium salt of carboxymethyl cellulose; used as a thickening or emulsifying agent
+71373,sodium_chlorate,a colorless salt (NaClO3) used as a weed killer and an antiseptic
+71374,sodium_chloride common_salt,a white crystalline solid consisting mainly of sodium chloride (NaCl)
+71375,sodium_cyanide,a white poisonous salt (NaCN) used in electroplating
+71376,sodium_dichromate sodium_bichromate,a red-orange salt used as a mordant
+71377,sodium_fluoride,a colorless crystalline salt of sodium (NaF) used in fluoridation of water and to prevent tooth decay
+71378,sodium_hydride,a flammable grey crystalline binary compound (NaH)
+71379,sodium_hydroxide caustic_soda,a strongly alkaline caustic used in manufacturing soap and paper and aluminum and various sodium compounds
+71380,sodium_hypochlorite,an unstable salt (NaOCl) used as a bleaching agent and disinfectant
+71381,sodium_iodide,a crystalline salt used like potassium iodide
+71382,sodium_lauryl_sulphate sodium_lauryl_sulfate SLS,a caustic detergent useful for removing grease; although commonly included in personal care items (shampoos and toothpastes etc.) it can irritate skin and should not be swallowed
+71383,sodium_nitrate soda_niter,(NaNO3) used especially as a fertilizer and explosive
+71384,sodium_nitrite,nitrite used to preserve and color food especially in meat and fish products; implicated in the formation of suspected carcinogens
+71385,sodium_phosphate sodium_orthophosphate,phosphate of sodium; used as a laxative to cleanse the bowels
+71386,sodium_pyrophosphate tetrasodium_pyrophosphate,a sodium salt of pyrophosphoric acid used as a builder in soaps and detergents
+71387,sodium_salicylate,a crystalline salt used as an analgesic and antipyretic
+71388,sodium_sulphate sodium_sulfate,a solid white bitter salt used in manufacturing glass and paper and dyes and pharmaceuticals
+71389,sodium_thiopental phenobarbital phenobarbitone Luminal purple_heart,a long-acting barbiturate used as a sedative
+71390,sodium_tripolyphosphate,a sodium salt of triphosphoric acid used as a builder in soaps and detergents
+71391,sodoku spirillum_fever,the form of ratbite fever occurring in the Far East
+71392,sodom,any location known for vice and corruption
+71393,sodomite sodomist sod bugger,someone who engages in anal copulation (especially a male who engages in anal copulation with another male)
+71394,sodomy buggery anal_sex anal_intercourse,intercourse via the anus, committed by a man with a man or woman
+71395,sofa couch lounge,an upholstered seat for more than one person
+71396,soffit,the underside of a part of a building (such as an arch or overhang or beam etc.)
+71397,soft-coated_wheaten_terrier,Irish breed of medium-sized terrier with an abundant coat any shade of wheat and very hairy head and muzzle
+71398,soft-finned_fish malacopterygian,any fish of the superorder Malacopterygii
+71399,soft-shell_clam steamer steamer_clam long-neck_clam,a clam that is usually steamed in the shell
+71400,soft-shell_clam steamer steamer_clam long-neck_clam Mya_arenaria,an edible clam with thin oval-shaped shell found in coastal regions of the United States and Europe
+71401,soft-shell_crab soft-shelled_crab,freshly molted crab with new shell still tender and flexible
+71402,soft-shell_crab soft-shelled_crab,edible crab that has recently molted and not yet formed its new shell
+71403,soft-shelled_turtle pancake_turtle,voracious aquatic turtle with a flat flexible shell covered by a leathery skin; can inflict painful bites
+71404,soft-shoe soft-shoe_shuffle soft-shoe_dancing,tap dancing wearing shoes that have soft soles
+71405,soft_copy,(computer science) matter that is in a form that a computer can store or display it on a computer screen; "he sent them soft copy of the report"
+71406,soft_corn flour_corn squaw_corn Zea_mays_amylacea,corn having kernels almost entirely of soft starch
+71407,soft_diet pap spoon_food,a diet that does not require chewing; advised for those with intestinal disorders
+71408,soft_drink,nonalcoholic beverage (usually carbonated)
+71409,soft_drug,a drug of abuse that is considered relatively mild and not likely to cause addiction
+71410,soft_glass,glass having a relatively low softening point
+71411,soft_money,political contributions made in such a way as to avoid the United States regulations for federal election campaigns (as by contributions to a political action committee)
+71412,soft_news,news that does not deal with serious topics or events
+71413,soft_option,an easier alternative; "the instructor took the soft option and gave the boy a passing grade"
+71414,soft_palate velum,a muscular flap that closes off the nasopharynx during swallowing or speaking
+71415,soft_pedal,a pedal on a piano that moves the action closer to the strings and so soften the sound
+71416,soft_pretzel,a pretzel made of soft bread
+71417,soft_roll,yeast-raised roll with a soft crust
+71418,soft_rot,mushy or slimy decay of plants caused by bacteria or fungi
+71419,soft_scale,an insect active in all stages
+71420,soft_sell,suggestive or persuasive advertising
+71421,soft_shield_fern Polystichum_setiferum,European shield fern cultivated in many varieties
+71422,soft_soap green_soap,a soft (or liquid) soap made from vegetable oils; used in certain skin diseases
+71423,soft_solder,solder that melts at a relatively low temperature
+71424,soft_spot,a sentimental affection; "she had a soft spot for her youngest son"
+71425,soft_tick argasid,tick lacking a dorsal shield and having mouth parts on the under side of the head
+71426,soft_tree_fern Dicksonia_antarctica,of Australia and Tasmania; often cultivated; hardy in cool climates
+71427,soft_water,water that is not hard (does not contain mineral salts that interfere with the formation of lather with soap)
+71428,soft_wheat,wheat with soft starch kernels used in pastry and breakfast cereals
+71429,softball playground_ball,ball used in playing softball
+71430,softball softball_game,a game closely resembling baseball that is played on a smaller diamond and with a ball that is larger and softer
+71431,softener,a substance added to another to make it less hard
+71432,softening,the process of becoming softer; "refrigeration delayed the softening of the fruit"; "he observed the softening of iron by heat"
+71433,softheartedness tenderness,a feeling of concern for the welfare of someone (especially someone defenseless)
+71434,softness,a state of declining economic condition; "orders have recently picked up after a period of extreme softness"; "he attributes the disappointing results to softness in the economy"
+71435,softness,a sound property that is free from loudness or stridency; "and in softness almost beyond hearing"
+71436,softness,a visual property that is subdued and free from brilliance or glare; "the softness of the morning sky"
+71437,softness,the property of giving little resistance to pressure and being easily cut or molded
+71438,softness,a disposition to be lenient in judging others; "softness is not something permitted of good leaders"
+71439,software software_program computer_software software_system software_package package,(computer science) written programs or procedures or rules and associated documentation pertaining to the operation of a computer system and that are stored in read/write memory; "the market for software is expected to expand"
+71440,software_documentation documentation,program listings or technical manuals describing the operation and use of programs
+71441,software_error programming_error,error resulting from bad code in some program involved in producing the erroneous result
+71442,software_package software_product,merchandise consisting of a computer program that is offered for sale
+71443,softwood deal,wood that is easy to saw (from conifers such as pine or fir)
+71444,softy softie,a person who is weak and excessively sentimental
+71445,sogginess,a heavy wetness
+71446,soil dirt,the part of the earth's surface consisting of humus and disintegrated rock
+71447,soil_bank,land retired from crop cultivation and planted with soil-building crops; government subsidies are paid to farmers for their retired land
+71448,soil_conditioner,a chemical substance used to improve the structure of the soil and increase its porosity; "gypsum can be used as a soil conditioner"
+71449,soil_conservation,protection of soil against erosion or deterioration
+71450,soil_erosion,the washing away of soil by the flow of water
+71451,soil_horizon,a layer in a soil profile
+71452,soil_pipe,drain that conveys liquid waste from toilets, etc.
+71453,soil_profile,a vertical section of soil from the ground surface to the parent rock
+71454,soiling soilure dirtying,the act of soiling something
+71455,soiree,a party of people assembled in the evening (usually at a private house)
+71456,soixante-neuf sixty-nine,oral sex practiced simultaneously by two people
+71457,sojourn visit,a temporary stay (e.g., as a guest)
+71458,sojourner,a temporary resident
+71459,sol colloidal_solution colloidal_suspension,a colloid that has a continuous liquid phase in which a solid is suspended in a liquid
+71460,sol soh so,the syllable naming the fifth (dominant) note of any musical scale in solmization
+71461,solace solacement,comfort in disappointment or misery
+71462,solan solan_goose solant_goose Sula_bassana,very large white gannet with black wing tips
+71463,solanaceous_vegetable,any of several fruits of plants of the family Solanaceae; especially of the genera Solanum, Capsicum, and Lycopersicon
+71464,solar_array solar_battery solar_panel,electrical device consisting of a large array of connected solar cells
+71465,solar_calendar,a calendar based on solar cycles
+71466,solar_cell photovoltaic_cell,a cell that converts solar energy into electrical energy
+71467,solar_constant,the rate at which radiant solar energy is received at the outer layer of the earth's atmosphere
+71468,solar_dish solar_collector solar_furnace,a concave mirror that concentrates the rays of the sun; can produce high temperatures
+71469,solar_eclipse,the moon interrupts light from the sun
+71470,solar_energy solar_power,energy from the sun that is converted into thermal or electrical energy; "the amount of energy falling on the earth is given by the solar constant, but very little use has been made of solar energy"
+71471,solar_flare flare,a sudden eruption of intense high-energy radiation from the sun's surface; associated with sunspots and radio interference
+71472,solar_gravity,the gravity of the sun; "solar gravity creates extreme pressures and temperatures"
+71473,solar_halo parhelic_circle parhelic_ring,a luminous halo parallel to the horizon at the altitude of the sun; caused by ice crystals in the atmosphere
+71474,solar_heater,a heater that makes direct use of solar energy
+71475,solar_house,a house designed to use solar radiation for heating; usually has large areas of glass in front of heat-absorbing materials
+71476,solar_magnetic_field,the magnetic field of the sun
+71477,solar_month,one-twelfth of a solar or tropical year
+71478,solar_parallax,the angle subtended by the mean equatorial radius of the Earth at a distance of one astronomical unit
+71479,solar_physics,the branch of astronomy that deals with the sun
+71480,solar_plexus coeliac_plexus plexus_celiacus abdominal_nerve_plexus,a large plexus of sympathetic nerves in the abdomen behind the stomach
+71481,solar_prominence,large eruptions of luminous hydrogen gas that rise thousands of kilometers above the chromosphere
+71482,solar_radiation,radiation from the sun
+71483,solar_system,the sun with the celestial bodies that revolve around it in its gravitational field
+71484,solar_telescope,a telescope designed to make observations of the sun
+71485,solar_thermal_system,a system that converts sunlight into heat
+71486,solar_wind,a stream of protons moving radially from the sun
+71487,solar_year tropical_year astronomical_year equinoctial_year,the time for the earth to make one revolution around the sun, measured between two vernal equinoxes
+71488,solarization solarisation,exposure to the rays of the sun
+71489,solder,an alloy (usually of lead and tin) used when melted to join two metal surfaces
+71490,solderer,a worker who joins or mends with solder
+71491,soldering_flux,flux applied to surfaces that are to be joined by soldering; flux cleans the surfaces and results in a better bond
+71492,soldering_iron,a hand tool with a heatable tip; used to melt and apply solder
+71493,soldier,an enlisted man or woman who serves in an army; "the soldiers stood at attention"
+71494,soldier,a wingless sterile ant or termite having a large head and powerful jaws adapted for defending the colony
+71495,soldier_grainy_club,a variety of grainy club
+71496,soldierfish soldier-fish,the larger squirrelfishes
+71497,soldiering soldiership,skills that are required for the life of soldier
+71498,sole,the underside of the foot
+71499,sole,the underside of footwear or a golf club
+71500,sole,right-eyed flatfish; many are valued as food; most common in warm seas especially European
+71501,sole fillet_of_sole,lean flesh of any of several flatfish
+71502,solenogaster aplacophoran,deep-water wormlike mollusks lacking calcareous plates on the body but having fine slimy spicules on the covering mantle
+71503,solenoid,a coil of wire around an iron core; becomes a magnet when current passes through the coil
+71504,soleus soleus_muscle,a broad flat muscle in the calf of the leg under the gastrocnemius muscle
+71505,solfa_syllable,one of the names for notes of a musical scale in solmization
+71506,solfege solfeggio,a voice exercise; singing scales or runs to the same syllable
+71507,solferino purplish_pink,a pink dye that was discovered in 1859, the year a battle was fought at Solferino
+71508,solicitation,an entreaty addressed to someone of superior status; "a solicitation to the king for relief"
+71509,solicitation allurement,the act of enticing a person to do something wrong (as an offer of sex in return for money)
+71510,solicitation appeal collection ingathering,request for a sum of money; "an appeal to raise money for starving children"
+71511,solicitor,a British lawyer who gives legal advice and prepares legal documents
+71512,solicitor canvasser,a petitioner who solicits contributions or trade or votes
+71513,solicitor_general,a law officer appointed to assist an attorney general
+71514,solicitorship,the position of solicitor
+71515,solicitude solicitousness,a feeling of excessive concern
+71516,solid,matter that is solid at room temperature and pressure
+71517,solid,a three-dimensional shape
+71518,solid solidness solid_state,the state in which a substance has no tendency to flow under moderate stress; resists forces (such as compression) that tend to deform it; and retains a definite size and shape
+71519,solid-state_physics,the branch of physics that studies the properties of materials in the solid state: electrical conduction in crystals of semiconductors and metals; superconductivity; photoconductivity
+71520,solid_angle,an angle formed by three or more planes intersecting at a common point (the vertex)
+71521,solid_body_substance,the solid parts of the body
+71522,solid_figure three-dimensional_figure,a three-dimensional shape
+71523,solid_geometry,the geometry of 3-dimensional space
+71524,solid_solution primary_solid_solution,a homogeneous solid that can exist over a range of component chemicals; a constituent of alloys that is formed when atoms of an element are incorporated into the crystals of a metal
+71525,solidarity,a union of interests or purposes or sympathies among members of a group
+71526,solidity,state of having the interior filled with matter
+71527,solidity solidness,the consistency of a solid
+71528,solidity solidness,the quality of being solid and reliable financially or factually or morally; "the solidity of the evidence worked in his favor"; "the solidness of her faith gave her enduring hope"
+71529,solidus slash virgule diagonal stroke separatrix,a punctuation mark (/) used to separate related items of information
+71530,soliloquy,a (usually long) dramatic speech intended to give the illusion of unspoken reflections
+71531,soliloquy monologue,speech you make to yourself
+71532,solipsism,(philosophy) the philosophical theory that the self is all that you know to exist
+71533,solitaire,a gem (usually a diamond) in a setting by itself
+71534,solitaire,a dull grey North American thrush noted for its beautiful song
+71535,solitaire Pezophaps_solitaria,extinct flightless bird related to the dodo
+71536,solitaire patience,a card game played by one person
+71537,solitary_confinement solitary,confinement of a prisoner in isolation from other prisoners; "he was held in solitary"
+71538,solitary_pussytoes,a variety of pussytoes
+71539,solitary_vireo Vireo_solitarius,of eastern North America having a bluish-grey head and mostly green body
+71540,soliton soliton_wave solitary_wave,(physics) a quantum of energy or quasiparticle that can be propagated as a traveling wave in nonlinear systems and is neither preceded nor followed by another such disturbance; does not obey the superposition principle and does not dissipate; "soliton waves can travel long distances with little loss of energy or structure"
+71541,solitude,the state or situation of being alone
+71542,solitude,a solitary place
+71543,solitude purdah,a state of social isolation
+71544,solleret sabaton,armor plate that protects the foot; consists of mail with a solid toe and heel
+71545,solmization solfege solfeggio,singing using solfa syllables to denote the notes of the scale of C major
+71546,solmization solmisation,a system of naming the notes of a musical scale by syllables instead of letters
+71547,solo,a musical composition for one voice or instrument (with or without accompaniment)
+71548,solo,any activity that is performed alone without assistance
+71549,solo,a flight in which the aircraft pilot is unaccompanied
+71550,solo_homer solo_blast,a home run with no runners on base
+71551,soloist,a musician who performs a solo
+71552,solstice,either of the two times of the year when the sun is at its greatest distance from the celestial equator
+71553,solubility,the quantity of a particular substance that can dissolve in a particular solvent (yielding a saturated solution)
+71554,solubility,the quality of being soluble and easily dissolved in liquid
+71555,soluble_glass water_glass sodium_silicate,a viscous glass consisting of sodium silicate in solution; used as a cement or as a protective coating and to preserve eggs
+71556,solute,the dissolved matter in a solution; the component of a solution that changes its state
+71557,solution,a homogeneous mixture of two or more substances; frequently (but not necessarily) a liquid solution; "he used a solution of peroxide and water"
+71558,solution,a method for solving a problem; "the easy solution is to look it up in the handbook"
+71559,solution,the successful action of solving a problem; "the solution took three hours"
+71560,solution answer result resolution solvent,a statement that solves a problem or explains how to solve the problem; "they were trying to find a peaceful solution"; "the answers were in the back of the book"; "he computed the result to four decimal places"
+71561,solution root,the set of values that give a true statement when substituted into an equation
+71562,solvability solubility,the property (of a problem or difficulty) that makes it possible to solve
+71563,solvate,a compound formed by solvation (the combination of solvent molecules with molecules or ions of the solute)
+71564,solvating_agent,an agent that converts something into a solvate
+71565,solvation,a chemical process in which solvent molecules and molecules or ions of the solute combine to form a compound
+71566,solvency,the ability to meet maturing obligations as they come due
+71567,solvent dissolvent dissolver dissolving_agent resolvent,a liquid substance capable of dissolving other substances; "the solvent does not change its state in forming a solution"
+71568,som,the basic unit of money in Uzbekistan
+71569,som,the basic unit of money in Kyrgyzstan
+71570,soma haoma Sarcostemma_acidum,leafless East Indian vine; its sour milky juice formerly used to make an intoxicating drink
+71571,soman GD,a nerve agent easily absorbed into the body; a lethal cholinesterase inhibitor that is highly toxic when inhaled
+71572,somatic_cell vegetative_cell,any of the cells of a plant or animal except the reproductive cells; a cell that does not participate in the production of gametes; "somatic cells are produced from preexisting cells"
+71573,somatic_cell_nuclear_transplantation somatic_cell_nuclear_transfer SCNT nuclear_transplantation,moving a cell nucleus and its genetic material from one cell to another
+71574,somatic_delusion,a delusion concerning the body image or parts of the body
+71575,somatosense,any of the sensory systems that mediate sensations of pressure and tickle and warmth and cold and vibration and limb position and limb movement and pain
+71576,somatotropin somatotrophin somatotropic_hormone somatotrophic_hormone STH human_growth_hormone growth_hormone,a hormone produced by the anterior pituitary gland; promotes growth in humans
+71577,sombrero,a straw hat with a tall crown and broad brim; worn in American southwest and in Mexico
+71578,somersault somerset summersault summerset somersaulting flip,an acrobatic feat in which the feet roll over the head (either forward or backward) and return
+71579,somesthesia somaesthesia somatesthesia somatic_sensation,the perception of tactual or proprioceptive or gut sensations; "he relied on somesthesia to warn him of pressure changes"
+71580,somesthesia somesthesis somaesthesia somaesthesis somatesthesia somataesthesis somatosensory_system somatic_sensory_system somatic_sense,the faculty of bodily perception; sensory systems associated with the body; includes skin senses and proprioception and the internal organs
+71581,somewhere,an indefinite or unknown location; "they moved to somewhere in Spain"
+71582,sommelier wine_waiter wine_steward,a waiter who manages wine service in a hotel or restaurant
+71583,somniloquist,someone who talks while asleep
+71584,son boy,a male human offspring; "their son became a famous judge"; "his boy is taller than he is"
+71585,son-in-law,the husband of your daughter
+71586,sonant voiced_sound,a speech sound accompanied by sound from the vocal cords
+71587,sonar echo_sounder asdic,a measuring instrument that sends out an acoustic pulse in water and measures distances in terms of the time for the echo of the pulse to return; "sonar is an acronym for sound navigation ranging"; "asdic is an acronym for antisubmarine detection investigation committee"
+71588,sonata,a musical composition of 3 or 4 movements of contrasting forms
+71589,sonata_form,the form of a movement, which consists of exposition and development and recapitulation
+71590,sonatina,a short and simple sonata
+71591,sone,a unit of perceived loudness equal to the loudness of a 1000-hertz tone at 40 dB above threshold
+71592,song,a very small sum; "he bought it for a song"
+71593,song,a distinctive or characteristic sound; "the song of bullets was in the air"; "the song of the wind"; "the wheels sang their song as the train rocketed ahead"
+71594,song strain,the act of singing; "with a shout and a song they marched up to the gates"
+71595,song vocal,a short musical composition with words; "a successful musical must have at least three good songs"
+71596,song_and_dance,theatrical performance combining singing and dancing
+71597,song_sparrow Melospiza_melodia,small songbird common in North America
+71598,song_thrush mavis throstle Turdus_philomelos,common Old World thrush noted for its song
+71599,songbird songster,any bird having a musical call
+71600,songbook,a book containing a collection of songs
+71601,songster,a person who sings
+71602,songstress,a woman songster (especially of popular songs)
+71603,songwriter songster ballad_maker,a composer of words or music for popular songs
+71604,sonic_barrier sound_barrier,the increase in aerodynamic drag as an airplane approaches the speed of sound
+71605,sonic_boom,an explosive sound caused by the shock wave of an airplane traveling faster than the speed of sound; "a sonic boom follows an aircraft as a wake follows a ship"
+71606,sonic_depth_finder fathometer,depth finder for determining depth of water or a submerged object by means of ultrasound waves
+71607,sonnet,a verse form consisting of 14 lines with a fixed rhyme scheme
+71608,sonneteer,a poet who writes sonnets
+71609,sonogram echogram,an image of a structure that is produced by ultrasonography (reflections of high-frequency sound waves); used to observe fetal growth or to study bodily organs
+71610,sonograph,an instrument that uses the differential transmission and reflection of ultrasonic waves in order to provide an image of a bodily organ
+71611,sonography ultrasonography echography ultrasound,using the reflections of high-frequency sound waves to construct an image of a body organ (a sonogram); commonly used to observe fetal growth or study bodily organs
+71612,sooth,truth or reality; "in sooth"
+71613,soothing_syrup,medicine in the form of a syrup that has a calming effect
+71614,sop,a concession given to mollify or placate; "the offer was a sop to my feelings"
+71615,sop sops,piece of solid food for dipping in a liquid
+71616,sophism sophistry sophistication,a deliberately invalid argument displaying ingenuity in reasoning in the hope of deceiving someone
+71617,sophisticate man_of_the_world,a worldly-wise person
+71618,sophistication,being expert or having knowledge of some technical subject; "understanding affine transformations requires considerable mathematical sophistication"
+71619,sophistication,falsification by the use of sophistry; misleading by means of specious fallacies; "he practiced the art of sophistication upon reason"
+71620,sophistication worldliness mundaneness mundanity,the quality or character of being intellectually sophisticated and worldly through cultivation or experience or disillusionment
+71621,sophomore soph,a second-year undergraduate
+71622,sophomore_class,the second class in a four-year college or high school
+71623,soporific hypnotic,a drug that induces sleep
+71624,soprano,a female singer
+71625,soprano,the highest female voice; the voice of a boy before puberty
+71626,soprano treble,the pitch range of the highest female voice
+71627,soprano_clef,a clef that puts middle C on the bottom line of the staff
+71628,sorb sorb_apple,acid gritty-textured fruit
+71629,sorbate,a material that has been or is capable of being taken up by another substance by either absorption or adsorption
+71630,sorbent sorbent_material,a material that sorbs another substance; i.e. that has the capacity or tendency to take it up by either absorption or adsorption
+71631,sorbic_acid,a white crystalline carboxylic acid used as a preservative
+71632,sorcerer magician wizard necromancer thaumaturge thaumaturgist,one who practices magic or sorcery
+71633,sorceress,a woman sorcerer
+71634,sorcery black_magic black_art necromancy,the belief in magical spells that harness occult forces or evil spirits to produce unnatural effects in the world
+71635,sordidness squalor squalidness,sordid dirtiness
+71636,sore,an open skin infection
+71637,sore_throat pharyngitis raw_throat,inflammation of the fauces and pharynx
+71638,sorehead,someone who is peevish or disgruntled
+71639,sorghum,economically important Old World tropical cereal grass
+71640,sorghum sorghum_molasses,made from juice of sweet sorghum
+71641,sorgo sorgho sweet_sorghum sugar_sorghum,any of several sorghums cultivated as a source of syrup
+71642,sorority,a social club for female undergraduates
+71643,sorption,the process in which one substance takes up or holds another (by either absorption or adsorption)
+71644,sorrel,a horse of a brownish orange to light brown color
+71645,sorrel common_sorrel,large sour-tasting arrowhead-shaped leaves used in salads and sauces
+71646,sorrel_tree Hibiscus_heterophyllus,Australian tree with acid foliage
+71647,sorrel_tree sourwood titi Oxydendrum_arboreum,deciduous shrubby tree of eastern North America having deeply fissured bark and sprays of small fragrant white flowers and sour-tasting leaves
+71648,sorrow,an emotion of great sadness associated with loss or bereavement; "he tried to express his sorrow at her loss"
+71649,sorrow regret rue ruefulness,sadness associated with some wrong done or some disappointment; "he drank to drown his sorrows"; "he wrote a note expressing his regret"; "to his rue, the error cost him the game"
+71650,sort,a person of a particular character or nature; "what sort of person is he?"; "he's a good sort"
+71651,sort,an approximate definition or example; "she wore a sort of magenta dress"; "she served a creamy sort of dessert thing"
+71652,sort sorting,an operation that segregates items into groups according to a specified criterion; "the bottleneck in mail delivery is the process of sorting"
+71653,sort_program sorting_program,a utility program that sorts data items
+71654,sorter,a clerk who sorts things (as letters at the post office)
+71655,sorter,a machine for sorting things (such as punched cards or letters) into classes
+71656,sortie,(military) an operational flight by a single aircraft (as in a military operation)
+71657,sortie sally,a military action in which besieged troops burst forth from their position
+71658,sorting,grouping by class or kind or size
+71659,sorting_algorithm,an algorithm for sorting a list
+71660,sorus,a spore-producing structure in certain lichens and fungi
+71661,sorus,cluster of sporangia usually on underside of a fern frond
+71662,soteriology,the branch of Christian theology that deals with salvation as the effect of a divine agency
+71663,sottishness,stupefaction from drink
+71664,sottishness,lack of restraint in use of alcohol
+71665,sou,a former French coin of low denomination; often used of any small amount of money; "he hasn't a sou to his name"
+71666,sou'wester,waterproof hat with wide slanting brim longer in back than in front
+71667,souari souari_nut souari_tree Caryocar_nuciferum,large South American evergreen tree trifoliate leaves and drupes with nutlike seeds used as food and a source of cooking oil
+71668,souari_nut,a large nutlike seed of a South American tree
+71669,soubrette,a pert or flirtatious young girl
+71670,soubrette,a minor female role as a pert flirtatious lady's maid in a comedy
+71671,souchong soochong,a fine quality of black tea native to China
+71672,souffle,light fluffy dish of egg yolks and stiffly beaten egg whites mixed with e.g. cheese or fish or fruit
+71673,souk,an open-air market in an Arabian city
+71674,soul,a secular form of gospel that was a major Black musical genre in the 1960s and 1970s; "soul was politically significant during the Civil Rights movement"
+71675,soul,the human embodiment of something; "the soul of honor"
+71676,soul psyche,the immaterial part of a person; the actuating cause of an individual life
+71677,soul soulfulness,deep feeling or emotion
+71678,soul-searching self-analysis,a penetrating examination of your own beliefs and motives
+71679,soul_brother,a fellow Black man
+71680,soul_food,food traditionally eaten by African-Americans in the South
+71681,soul_kiss deep_kiss French_kiss,an openmouthed kiss in which your tongue is inserted into the other's mouth
+71682,soul_mate,someone for whom you have a deep affinity
+71683,soul_patch Attilio,a small patch of facial hair just below the lower lip and above the chin
+71684,sound,mechanical vibrations transmitted by an elastic medium; "falling trees make a sound in the forest even when no one is there to hear them"
+71685,sound,a large ocean inlet or deep bay; "the main body of the sound ran parallel to the coast"
+71686,sound,the sudden occurrence of an audible event; "the sound awakened them"
+71687,sound,the particular auditory effect produced by a given cause; "the sound of rain on the roof"; "the beautiful sound of music"
+71688,sound auditory_sensation,the subjective sensation of hearing something; "he strained to hear the faint sounds"
+71689,sound_bite,a very short speech; usually on radio or television
+71690,sound_bow,contact (the part of a bell) against which the clapper strikes
+71691,sound_camera,a movie camera that records sounds in synchrony with the visual images
+71692,sound_effect,an effect that imitates a sound called for in the script of a play
+71693,sound_film,motion-picture film with sound effects and dialogue recorded on it
+71694,sound_hole,a hole in a soundboard (as of a violin) designed to resonate with the tones
+71695,sound_law,a law describing sound changes in the history of a language
+71696,sound_pressure instantaneous_sound_pressure,the difference between the instantaneous pressure at a point in a sound field and the average pressure at that point
+71697,sound_property,an attribute of sound
+71698,sound_ranging,locating a source of sound (as an enemy gun) by measurements of the time the sound arrives at microphones in known positions
+71699,sound_recording audio_recording audio,a recording of acoustic signals
+71700,sound_reproduction,the reproduction of sound
+71701,sound_spectrograph,a spectrograph for acoustic spectra
+71702,sound_spectrum acoustic_spectrum,the distribution of energy as a function of frequency for a particular sound source
+71703,sound_truck,a truck equipped with a loudspeaker and used for advertising
+71704,sound_unit,any acoustic unit of measurement
+71705,sound_wave acoustic_wave,(acoustics) a wave that transmits sound
+71706,soundbox body,a resonating chamber in a musical instrument (as the body of a violin)
+71707,sounder,a device for making soundings
+71708,sounding,a measure of the depth of water taken with a sounding line
+71709,sounding,the act of measuring depth of water (usually with a sounding line)
+71710,sounding_board,a person whose reactions to something serve as an indication of its acceptability; "I would use newspapermen as a sounding board for such policies"
+71711,sounding_board soundboard,(music) resonator consisting of a thin board whose vibrations reinforce the sound of the instrument
+71712,sounding_lead,a metal bob at the end of a sounding line
+71713,sounding_rocket,a research rocket used to obtain information about the atmosphere at various altitudes
+71714,soundman,a technician in charge of amplifying sound or producing sound effects (as for a TV or radio broadcast)
+71715,soundness,a state or condition free from damage or decay
+71716,soundtrack,sound recording on a narrow strip of a motion picture film
+71717,soup,any composition having a consistency suggestive of soup
+71718,soup,an unfortunate situation; "we're in the soup now"
+71719,soup,liquid food especially of meat or fish or vegetable stock often containing pieces of solid food
+71720,soup-strainer toothbrush,slang for a mustache
+71721,soup_bowl,a bowl for serving soup
+71722,soup_du_jour,the soup that a restaurant is featuring on a given day
+71723,soup_kitchen,a place where food is dispensed to the needy
+71724,soup_ladle,a ladle for serving soup
+71725,soup_plate,a deep plate with a wide rim
+71726,soupfin_shark soupfin soup-fin Galeorhinus_zyopterus,Pacific shark valued for its fins (used by Chinese in soup) and liver (rich in vitamin A)
+71727,soupspoon soup_spoon,a spoon with a rounded bowl for eating soup
+71728,sour,a cocktail made of a liquor (especially whiskey or gin) mixed with lemon or lime juice and sugar
+71729,sour sourness tartness,the taste experience when vinegar or lemon juice is taken into the mouth
+71730,sour_bread sourdough_bread,made with a starter of a small amount of dough in which fermentation is active
+71731,sour_cherry,acid cherries used for pies and preserves
+71732,sour_cherry Eugenia_corynantha,Australian tree with sour red fruit
+71733,sour_cherry sour_cherry_tree Prunus_cerasus,rather small Eurasian tree producing red to black acid edible fruit
+71734,sour_cream soured_cream,artificially soured light cream
+71735,sour_dock garden_sorrel Rumex_acetosa,European sorrel with large slightly acidic sagittate leaves grown throughout north temperate zone for salad and spring greens
+71736,sour_gourd,acid-tasting Australian gourd-like fruit with a woody rind and large seeds
+71737,sour_gourd monkey_bread,African gourd-like fruit with edible pulp
+71738,sour_grapes,disparagement of something that is unattainable
+71739,sour_gum black_gum pepperidge Nyssa_sylvatica,columnar tree of eastern North America having horizontal limbs and small leaves that emerge late in spring and have brilliant color in early fall
+71740,sour_mash,a mash with optimum acidity for yeast fermentation; a mixture of old and new mash; used in distilling some whiskeys
+71741,sour_mash sour_mash_whiskey,any whiskey distilled from sour mash
+71742,sour_milk,milk that has turned sour
+71743,sour_orange Seville_orange bitter_orange bitter_orange_tree bigarade marmalade_orange Citrus_aurantium,any of various common orange trees yielding sour or bitter fruit; used as grafting stock
+71744,sour_salt,crystals of citric acid used as seasoning
+71745,sourball,round piece of tart hard candy
+71746,source,(technology) a process by which energy or a substance enters a system; "a heat source"; "a source of carbon dioxide"
+71747,source,a document (or organization) from which information is obtained; "the reporter had two sources for the story"
+71748,source,a facility where something is available
+71749,source seed germ,anything that provides inspiration for later work
+71750,source_book,a collection of historically important documents published together as a book
+71751,source_code,program instructions written as an ASCII text file; must be translated by a compiler or interpreter or assembler into the object code for a particular computer before execution
+71752,source_language,a language that is to be translated into another language
+71753,source_materials,publications from which information is obtained
+71754,source_of_illumination,any device serving as a source of visible electromagnetic radiation
+71755,source_program,a program written in a language from which statements are translated into machine language
+71756,sourdine,an organ stop resulting in a soft muted sound
+71757,sourdine sordino,a mute for a violin
+71758,sourdough,a leaven of dough in which fermentation is active; used by pioneers for making bread
+71759,sourdough,a settler or prospector (especially in western United States or northwest Canada and Alaska)
+71760,souring,the process of becoming sour
+71761,sourness sour acidity,the property of being acidic
+71762,sourpuss picklepuss gloomy_Gus pouter,someone with a habitually sullen or gloomy expression
+71763,soursop guanabana,large spiny tropical fruit with tart pulp related to custard apples
+71764,soursop prickly_custard_apple soursop_tree Annona_muricata,small tropical American tree bearing large succulent slightly acid fruit
+71765,souse,pork trimmings chopped and pickled and jelled
+71766,soutache,a narrow braid used as a decorative trimming
+71767,soutane,a long cassock with buttons down the front; worn by Roman Catholic priests
+71768,south,the direction corresponding to the southward cardinal compass point
+71769,south,a location in the southern part of a country, region, or city
+71770,south due_south southward S,the cardinal compass point that is at 180 degrees
+71771,south_by_east SbE,the compass point that is one point east of due south
+71772,south_by_west SbW,the compass point that is one point west of due south
+71773,south_celestial_pole,the celestial pole above the southern hemisphere
+71774,south_side,the side that is on the south
+71775,south_southeast sou'-sou'-east SSE,the compass point midway between south and southeast
+71776,south_southwest sou'-sou'-west SSW,the compass point midway between south and southwest
+71777,south_wind souther southerly,a wind from the south
+71778,southeast,the direction corresponding to the southeastward compass point
+71779,southeast,a location in the southeastern part of a country, region, or city
+71780,southeast sou'-east southeastward SE,the compass point midway between south and east; at 135 degrees
+71781,southeast_by_east SEbE,the compass point that is one point east of southeast
+71782,southeast_by_south SEbS,the compass point that is one point south of southeast
+71783,southeaster sou'easter,a strong wind from the southeast
+71784,southeastern_pocket_gopher Geomys_pinetis,gopher of Alabama and Georgia and Florida
+71785,southern_aster,a variety of aster
+71786,southern_beech evergreen_beech,any of various beeches of the southern hemisphere having small usually evergreen leaves
+71787,southern_blue_flag Iris_virginica,similar to blue flag; the eastern United States
+71788,southern_bog_lemming Synaptomys_cooperi,of low bogs and meadows of northeastern and central United States and southern Canada
+71789,southern_buckthorn shittimwood shittim mock_orange Bumelia_lycioides,shrubby thorny deciduous tree of southeastern United States with white flowers and small black drupaceous fruit
+71790,southern_cabbage_butterfly Pieris_protodice,common North American form of cabbage butterfly
+71791,southern_flounder Paralichthys_lethostigmus,flounder of southern United States
+71792,southern_flying_squirrel Glaucomys_volans,small large-eyed nocturnal flying squirrel of eastern United States
+71793,southern_harebell Campanula_divaricata,bellflower of southeastern United States (Maryland to Georgia) having pale blue flowers
+71794,southern_hemisphere,the hemisphere to the south of the equator
+71795,southern_live_oak Quercus_virginiana,medium-sized evergreen native to eastern North America to the east coast of Mexico; often cultivated as shade tree for it wide-spreading crown; extremely hard tough durable wood once used in shipbuilding
+71796,southern_magnolia evergreen_magnolia large-flowering_magnolia bull_bay Magnolia_grandiflora,evergreen tree of southern United States having large stiff glossy leaves and huge white sweet-smelling flowers
+71797,southern_red_cedar Juniperus_silicicola,juniper of swampy coastal regions of southeastern United States; similar to eastern red cedar
+71798,southern_red_oak swamp_red_oak turkey_oak Quercus_falcata,large round-topped deciduous tree with spreading branches having narrow falcate leaves with deeply sinuate lobes and wood similar to that of northern red oaks; New Jersey to Illinois and southward
+71799,southern_spadefoot Scaphiopus_multiplicatus,this spadefoot toad lives in the southwestern United States
+71800,southern_spatterdock Nuphar_sagittifolium,of flowing waters of the southeastern United States; may form obstructive mats in streams
+71801,southern_white_cedar coast_white_cedar Atlantic_white_cedar white_cypress white_cedar Chamaecyparis_thyoides,slow-growing medium-sized cedar of east coast of the United States; resembles American arborvitae
+71802,southernism,a locution or pronunciation peculiar to the southern United States
+71803,southernism,an attitude characteristic of Southerners (especially in the US)
+71804,southernness,the property of being to the south
+71805,southernwood Artemisia_abrotanum,shrubby European wormwood naturalized in North America; sometimes used in brewing beer
+71806,southland,any region lying in or toward the south
+71807,southwest,the direction corresponding to the southwestward compass point
+71808,southwest,a location in the southwestern part of a country, region, or city
+71809,southwest sou'-west southwestward SW,the compass point midway between south and west; at 225 degrees
+71810,southwest_by_south SWbS,the compass point that is one point south of southwest
+71811,southwest_by_west SWbW,the compass point that is one point west of southwest
+71812,southwester sou'wester,a strong wind from the southwest
+71813,southwestern_lip_fern Cheilanthes_eatonii,lip fern of Texas to Oklahoma and Colorado and Arizona and Mexico having tall erect tufted fronds
+71814,southwestern_toad Bufo_microscaphus,a uniformly warty stocky toad of washes and streams of semiarid southwestern United States
+71815,southwestern_white_pine Pinus_strobiformis,medium-size pine of northwestern Mexico; bark is dark brown and furrowed when mature
+71816,souvlaki souvlakia,made of lamb
+71817,sovereign crowned_head monarch,a nation's ruler or head of state usually by hereditary right
+71818,sovereign_immunity,an exemption that precludes bringing a suit against the sovereign government without the government's consent; "the doctrine of sovereign immunity originated with the maxim that the king can do no wrong"
+71819,sovereignty,government free from external control
+71820,sovereignty,the authority of a state to govern another state
+71821,soviet,an elected governmental council in a communist country (especially one that is a member of the Union of Soviet Socialist Republics)
+71822,sow,an adult female hog
+71823,sow_bug,terrestrial isopod having an oval segmented body (a shape like a sow)
+71824,sow_thistle milk_thistle,any of several Old World coarse prickly-leaved shrubs and subshrubs having milky juice and yellow flowers; widely naturalized; often noxious weeds in cultivated soil
+71825,sowbane red_goosefoot Chenopodium_hybridum,herb considered fatal to swine
+71826,sowbelly,salt pork from the belly of a hog carcass
+71827,sowbread Cyclamen_hederifolium Cyclamen_neopolitanum,common wild European cyclamen with pink flowers
+71828,sower,someone who sows
+71829,soy soya soybean soya_bean soybean_plant soja soja_bean Glycine_max,erect bushy hairy annual herb having trifoliate leaves and purple to pink flowers; extensively cultivated for food and forage and soil improvement but especially for its nutritious oil-rich seeds; native to Asia
+71830,soy soybean soya soya_bean,the most highly proteinaceous vegetable known; the fruit of the soybean plant is used in a variety of foods and as fodder (especially as a replacement for animal protein)
+71831,soy soybean soya_bean,a source of oil; used for forage and soil improvement and as food
+71832,soy_sauce soy,thin sauce made of fermented soy beans
+71833,soya_milk soybean_milk soymilk,a milk substitute containing soybean flour and water; used in some infant formulas and in making tofu
+71834,soybean_future,soybeans bought or sold at an agreed price for delivery at a specified future date
+71835,soybean_meal soybean_flour soy_flour,meal made from soybeans
+71836,soybean_oil soyabean_oil,oil from soya beans
+71837,space,an empty area (usually bounded in some way between things); "the architect left space in front of the building"; "they stopped at an open space in the jungle"; "the space between his teeth"
+71838,space,an area reserved for some particular purpose; "the laboratory's floor space"
+71839,space,one of the areas between or below or above the lines of a musical staff; "the spaces are the notes F-A-C-E"
+71840,space blank,a blank character used to separate successive words in writing or printing; "he said the space is the most important character in the alphabet"
+71841,space blank_space place,a blank area; "write your name in the space provided"
+71842,space infinite,the unlimited expanse in which everything is located; "they tested his ability to locate objects in space"; "the boundless regions of the infinite"
+71843,space-time space-time_continuum,the four-dimensional coordinate system (3 dimensions of space and 1 of time) in which physical events are located
+71844,space_age,the age beginning with the first space travel; from 1957 to the present
+71845,space_bar,the bar-shaped typewriter key that introduces spaces when used
+71846,space_cadet,someone who seems unable to respond appropriately to reality (as if under the influence of some narcotic drug)
+71847,space_capsule capsule,a spacecraft designed to transport people and support human life in outer space
+71848,space_heater,heater consisting of a self-contained (usually portable) unit to warm a room
+71849,space_helmet,a helmet worn by astronauts while in outer space
+71850,space_lattice crystal_lattice Bravais_lattice,a 3-dimensional geometric arrangement of the atoms or molecules or ions composing a crystal
+71851,space_medicine,the branch of medicine concerned with the effects of space flight on human beings
+71852,space_probe,a rocket-propelled guided missile that can escape the earth's atmosphere; makes observations of the solar system that cannot be made by terrestrial observation
+71853,space_program,a technological program intended to explore outer space
+71854,space_rocket,a rocket powerful enough to travel into outer space
+71855,space_shuttle,a reusable spacecraft with wings for a controlled descent through the Earth's atmosphere
+71856,space_station space_platform space_laboratory,a manned artificial satellite in a fixed orbit designed for scientific research
+71857,space_walk,any kind of physical activity outside a spacecraft by one of the crew
+71858,space_writer,a writer paid by the area of the copy
+71859,spacecraft ballistic_capsule space_vehicle,a craft capable of traveling in outer space; technically, a satellite around the sun
+71860,spacecraft_clock_time SCLK,the clock time given by a clock carried on board a spacecraft
+71861,spacecraft_event_time SCET,the coordinated universal time on board the spacecraft; "SCET = TRM + OWLT"
+71862,spaceflight space_travel spacefaring,a voyage outside the Earth's atmosphere
+71863,spacesuit,a pressure suit worn by astronauts while in outer space
+71864,spacewalker,an astronaut who is active outside a spacecraft in outer space
+71865,spacing,the time between occurrences of a repeating event; "some women do not control the spacing of their children"
+71866,spacing spatial_arrangement,the property possessed by an array of things that have space between them
+71867,spackle spackling_compound,powder (containing gypsum plaster and glue) that when mixed with water forms a plastic paste used to fill cracks and holes in plaster
+71868,spade,a playing card in the major suit that has one or more black figures on it; "she led a low spade"; "spades were trumps"
+71869,spade,a sturdy hand shovel that can be pushed into the earth with the foot
+71870,spade_bit,a thin bit with a center point and cutting edges on either side
+71871,spade_casino,a form of casino in which spades have the value of one point
+71872,spadefish angelfish Chaetodipterus_faber,deep-bodied disk-shaped food fish of warmer western Atlantic coastal waters
+71873,spadefoot spadefoot_toad,a burrowing toad of the northern hemisphere with a horny spade-like projection on each hind foot
+71874,spadework,dull or routine preliminary work preparing for an undertaking
+71875,spadix,the fleshy axis of a spike often surrounded by a spathe
+71876,spaghetti,spaghetti served with a tomato sauce
+71877,spaghetti,pasta in the form of long strings
+71878,spaghetti_Western,a low-budget Western movie produced by a European (especially an Italian) film company
+71879,spaghetti_and_meatballs,spaghetti with meatballs in a tomato sauce
+71880,spaghetti_junction,a complicated highway interchange with multiple overpasses
+71881,spaghetti_sauce pasta_sauce,any of numerous sauces for spaghetti or other kinds of pasta
+71882,spaghetti_squash,squash plant bearing oval fruit with smooth yellowish skin and tender stranded flesh resembling spaghetti
+71883,spaghetti_squash,medium-sized oval squash with flesh in the form of strings that resemble spaghetti
+71884,spaghettini,thin spaghetti
+71885,spall spawl,a fragment broken off from the edge or face of stone or ore and having at least one thin edge; "a truck bearing a mound of blue spalls"
+71886,spallation,(physics) a nuclear reaction in which a bombarded nucleus breaks up into many particles; "some astronomers believe that the solar system was formed by spallation when the sun was a very young star"
+71887,spam junk_e-mail,unwanted e-mail (usually of a commercial nature sent out in bulk)
+71888,spammer,someone who sends unwanted email (often in bulk)
+71889,span,the complete duration of something; "the job was finished in the span of an hour"
+71890,span,a unit of length based on the width of the expanded human hand (usually taken as 9 inches)
+71891,span,the distance or interval between two points
+71892,span_loading,the ratio of the weight of an airplane to its wingspan
+71893,spandex,an elastic synthetic fabric
+71894,spandrel spandril,an approximately triangular surface area between two adjacent arches and the horizontal plane above them
+71895,spaniel,any of several breeds of small to medium-sized gun dogs with a long silky coat and long frilled ears
+71896,spank,a slap with the flat of the hand
+71897,spanker,a fore-and-aft sail set on the aftermost lower mast (usually the mizzenmast) of a vessel
+71898,spanking,the act of slapping on the buttocks; "he gave the brat a good spanking"
+71899,spar,any of various nonmetallic minerals (calcite or feldspar) that are light in color and transparent or translucent and cleavable
+71900,spar,a stout rounded pole of wood or metal used to support rigging
+71901,spar sparring,making the motions of attack and defense with the fists and arms; a part of training for a boxer
+71902,spar_buoy,a buoy resembling a vertical log
+71903,spare,a score in tenpins; knocking down all ten after rolling two balls
+71904,spare_part spare,an extra component of a machine or other apparatus
+71905,spare_time free_time,time available for hobbies and other activities that you enjoy
+71906,spare_tire love_handle,excess fat around the waistline
+71907,sparer,someone who refrains from injuring or destroying
+71908,sparerib,a cut of pork ribs with much of the meat trimmed off
+71909,spareribs,cut of pork from the rib section with most of the meat trimmed off
+71910,sparge_pipe,a horizontal pipe having fine holes drilled throughout its length so as to deliver a spray of water
+71911,sparid sparid_fish,spiny-finned food fishes of warm waters having well-developed teeth
+71912,spark,a small but noticeable trace of some quality that might become stronger; "a spark of interest"; "a spark of decency"
+71913,spark,a small fragment of a burning substance thrown out by burning material or by friction
+71914,spark_advance lead,the timing of ignition relative to the position of the piston in an internal-combustion engine
+71915,spark_arrester,electrical device to reduce sparking when electrical contacts are opened or closed
+71916,spark_arrester sparker,a wire net to stop sparks from an open fireplace or smokestack
+71917,spark_chamber spark_counter,an instrument that detects ionizing radiation from elementary particles
+71918,spark_coil,an induction coil used to create sparks
+71919,spark_gap,a component of an ignition system; consists of two shaped electrodes and the space between them
+71920,spark_gap,the gap between two high-potential terminals
+71921,spark_lever,(on early automobiles) a lever mounted on the steering column and used to adjust the timing of the ignition
+71922,spark_plug sparking_plug plug,electrical device that fits into the cylinder head of an internal-combustion engine and ignites the gas by means of an electric spark
+71923,spark_transmitter,an early radio transmitter using a discharge across a spark gap as the source of its power
+71924,sparkle twinkle spark light,merriment expressed by a brightness or gleam or animation of countenance; "he had a sparkle in his eye"; "there's a perpetual twinkle in his eyes"
+71925,sparkle_metal,matte that has 74 percent copper
+71926,sparkler,a firework that burns slowly and throws out a shower of sparks
+71927,sparkling_wine,effervescent wine
+71928,sparkplug_wrench,a wrench for removing or tightening spark plugs into the cylinder head of an internal combustion engine
+71929,sparling European_smelt Osmerus_eperlanus,the common smelt of Europe
+71930,sparring,an argument in which the participants are trying to gain some advantage
+71931,sparring_match,a practice or exhibition boxing match
+71932,sparring_partner sparring_mate,a boxer who spars with another boxer who is training for an important fight
+71933,sparrow true_sparrow,any of several small dull-colored singing birds feeding on seeds or insects
+71934,sparrow_hawk Accipiter_nisus,small hawk of Eurasia and northern Africa
+71935,sparrow_hawk American_kestrel kestrel Falco_sparverius,small North American falcon
+71936,sparseness spareness sparsity thinness,the property of being scanty or scattered; lacking denseness
+71937,spasm,(pathology) sudden constriction of a hollow organ (as a blood vessel)
+71938,spasm cramp muscle_spasm,a painful and involuntary muscular contraction
+71939,spasmolysis,the relaxation or relief of muscle spasms
+71940,spastic,a person suffering from spastic paralysis
+71941,spastic_abasia,abasia due to spastic contractions of the leg muscles
+71942,spastic_bladder,a urinary bladder disorder resulting from spinal cord lesion or multiple sclerosis or trauma; absence of bladder sensation and incontinence and interrupted voiding of urine
+71943,spasticity,the quality of moving or acting in spasms
+71944,spat,a young oyster or other bivalve
+71945,spat gaiter,a cloth covering (a legging) that covers the instep and ankles
+71946,spatchcock,flesh of a chicken (or game bird) split down the back and grilled (usually immediately after being killed)
+71947,spathe,a conspicuous bract surrounding or subtending a spadix or other inflorescence
+71948,spathiphyllum peace_lily spathe_flower,any of various plants of the genus Spathiphyllum having a white or green spathe and a spike of fragrant flowers and often cultivated as an ornamental
+71949,spatial_property spatiality,any property relating to or occupying space
+71950,spatter spattering splash splashing splattering,the act of splashing a (liquid) substance on a surface
+71951,spatter spattering splatter splattering sputter splutter sputtering,the noise of something spattering or sputtering explosively; "he heard a spatter of gunfire"
+71952,spatterdock cow_lily yellow_pond_lily Nuphar_advena,common water lily of eastern and central North America, having broad leaves and globe-shaped yellow flowers; in sluggish fresh or slightly brackish water
+71953,spatula,a turner with a narrow flexible blade
+71954,spatula,a hand tool with a thin flexible blade used to mix or spread soft substances
+71955,spatulate_leaf,spatula-shaped leaf; having a broad rounded apex and narrow base
+71956,spavin,a swelling of the hock joint of a horse; resulting in lameness
+71957,spawn,the mass of eggs deposited by fish or amphibians or molluscs
+71958,spawner,a female fish at spawning time
+71959,spaying,neutering a female by removing the ovaries
+71960,speakeasy,(during prohibition) an illegal barroom
+71961,speaker talker utterer verbalizer verbaliser,someone who expresses in language; someone who talks (especially someone who delivers a public speech or someone especially garrulous); "the speaker at commencement"; "an utterer of useful maxims"
+71962,speaker_identification talker_identification,identification of a person from the sound of their voice
+71963,speakerphone,a telephone with a microphone and loudspeaker; can be used without picking up a handset; several people can participate in a call at the same time
+71964,speakership,the position of Speaker
+71965,speaking speech_production,the utterance of intelligible speech
+71966,speaking_trumpet,a trumpet-shaped acoustic device to intensify and direct the human voice; formerly held to the ear by a hard-of-hearing person
+71967,speaking_tube,a tube for conveying the sound of a voice from one room to another
+71968,spear gig fizgig fishgig lance,an implement with a shaft and barbed point used for catching fish
+71969,spear lance shaft,a long pointed rod used as a tool or weapon
+71970,spearfish,any of several large vigorous pelagic fishes resembling sailfishes but with first dorsal fin much reduced; worldwide but rare
+71971,spearhead,someone who leads or initiates an activity (attack or campaign etc.)
+71972,spearhead,the leading military unit in an attack
+71973,spearhead spearpoint spear-point,the head and sharpened point of a spear
+71974,spearmint Mentha_spicata,common garden herb having clusters of small purplish flowers and yielding an oil used as a flavoring
+71975,spearmint_oil,an aromatic oil obtained from the spearmint plant
+71976,spearnose_bat,New World bat with a pointed nose leaf; found from southern United States to Paraguay
+71977,special,a dish or meal given prominence in e.g. a restaurant
+71978,special,a special offering (usually temporary and at a reduced price) that is featured in advertising; "they are having a special on pork chops"
+71979,special,a television production that features a particular person or work or topic; "the last of a series of BBC specials on Iran is being shown tonight"
+71980,special_act,a legislative act that applies only to a particular person or particular district
+71981,special_agent,someone whose authority is limited to the special undertaking they have been instructed to perform
+71982,special_assessment,an additional tax levied on private property for public improvements that enhance the value of the property
+71983,special_court-martial,a court-martial to try soldiers for offenses less serious that than those committed in action; consists of at least three officers
+71984,special_delivery,mail that is delivered by a special carrier (for an additional charge)
+71985,special_drawing_rights paper_gold,reserve assets in the International Monetary Fund; designed to supplement reserves of gold and convertible currencies used to maintain stability in the foreign exchange market
+71986,special_education,education of physically or mentally handicapped children whose needs cannot be met in an ordinary classroom
+71987,special_effect,an effect used to produce scenes that cannot be achieved by normal techniques (especially on film)
+71988,special_interest special-interest_group special_interest_group advocacy_group lobby_group lobby pressure_group third_house,an interest group that tries to influence legislators or bureaucrats to act in their favor, typically through lobbying
+71989,special_jury blue_ribbon_jury,a jury whose members are selected for special knowledge for a case involving complicated issues
+71990,special_pleading,an argument that ignores all unfavorable evidence
+71991,special_pleading,(law) a pleading that alleges new facts in avoidance of the opposing allegations
+71992,special_relativity special_theory_of_relativity special_relativity_theory Einstein's_special_theory_of_relativity,a physical theory of relativity based on the assumption that the speed of light in a vacuum is a constant and the assumption that the laws of physics are invariant in all inertial systems
+71993,special_session,a session that is held in addition to the regular sessions
+71994,special_verdict,a verdict rendered on certain specific factual issues posed by the court without finding for one party or the other
+71995,specialism,the concentration of your efforts on a particular field of study or occupation
+71996,specialist medical_specialist,practices one branch of medicine
+71997,specialist specializer specialiser,an expert who is devoted to one occupation or branch of learning
+71998,specialization specialisation,the act of specializing; making something suitable for a special purpose
+71999,specialization specialisation differentiation,(biology) the structural adaptation of some body part for a particular function; "cell differentiation in the developing embryo"
+72000,specialization specialisation specialty speciality specialism,the special line of work you have adopted as your career; "his specialization is gastroenterology"
+72001,specialty_store,a store that sells only one kind of merchandise
+72002,speciation,the evolution of a biological species
+72003,species,(biology) taxonomic group whose members can interbreed
+72004,species,a specific kind of something; "a species of molecule"; "a species of villainy"
+72005,specific,a medicine that has a mitigating effect on a specific disease; "quinine is a specific for malaria"
+72006,specific_gravity,the density of a substance relative to the density of water
+72007,specific_heat,the heat required to raise the temperature of one gram of a substance one degree centigrade
+72008,specific_performance,the performance of a legal contract as specified by its terms
+72009,specification,naming explicitly
+72010,specification,(patent law) a document drawn up by the applicant for a patent of invention that provides an explicit and detailed description of the nature and use of an invention
+72011,specification spec,a detailed description of design criteria for a piece of work
+72012,specificity,the quality of being specific to a particular organism; "host specificity of a parasite"
+72013,specificity,the quality of being specific rather than general; "add a desirable note of specificity to the discussion"; "the specificity of the symptoms of the disease"
+72014,specifier,someone who draws up specifications giving details (as for obtaining a patent)
+72015,specimen,an example regarded as typical of its class
+72016,specimen,a bit of tissue or blood or urine that is taken for diagnostic purposes; "they collected a urine specimen for urinalysis"
+72017,specimen_bottle,a bottle for holding urine specimens
+72018,specious_argument,an argument that appears good at first view but is really fallacious
+72019,speciousness meretriciousness,an appearance of truth that is false or deceptive; seeming plausibility; "the speciousness of his argument"
+72020,speck pinpoint,a very small spot; "the plane was just a speck in the sky"
+72021,speckled_alder Alnus_rugosa,common shrub of Canada and northeastern United States having shoots scattered with rust-colored down
+72022,speckled_rattlesnake Crotalus_mitchellii,markings vary but usually harmonize with background; of southwestern Arizona and Baja California
+72023,spectacle,something or someone seen (especially a notable or unusual sight); "the tragic spectacle of cripples trying to escape"
+72024,spectacle,an elaborate and remarkable display on a lavish scale
+72025,spectacle,a blunder that makes you look ridiculous; used in the phrase `make a spectacle of' yourself
+72026,spectacled_caiman Caiman_sclerops,caiman with bony ridges about the eyes; found from southern Mexico to Argentina
+72027,spectacles specs eyeglasses glasses,(plural) optical instrument consisting of a frame that holds a pair of lenses for correcting defective vision
+72028,spectacular,a lavishly produced performance; "they put on a Christmas spectacular"
+72029,spectator witness viewer watcher looker,a close observer; someone who looks at something (such as an exhibition of some kind); "the spectators applauded the performance"; "television viewers"; "sky watchers discovered a new star"
+72030,spectator_pump spectator,a woman's pump with medium heel; usually in contrasting colors for toe and heel
+72031,spectator_sport,a sport that many people find entertaining to watch
+72032,spectinomycin,an antibiotic used to treat gonorrhea
+72033,spectrogram spectrograph,a photographic record of a spectrum
+72034,spectrograph,a spectroscope by which spectra can be photographed
+72035,spectrophotometer,a photometer for comparing two light radiations wavelength by wavelength
+72036,spectroscope prism_spectroscope,an optical instrument for spectrographic analysis
+72037,spectroscopy spectrometry spectroscopic_analysis spectrum_analysis spectrographic_analysis,the use of spectroscopes to analyze spectra
+72038,spectrum,an ordered array of the components of an emission or wave
+72039,spectrum,a broad range of related objects or values or qualities or ideas or activities
+72040,spectrum_line,an isolated component of a spectrum formed by radiation at a uniform frequency
+72041,speculation conjecture,a hypothesis that has been formed by speculating or conjecturing (usually with little hard evidence); "speculations about the outcome of the election"; "he dismissed it as mere conjecture"
+72042,speculation venture,an investment that is very risky but could yield great profits; "he knew the stock was a speculation when he bought it"
+72043,speculativeness,financial risk; "he rejected stocks that didn't pay dividends because of their speculativeness"
+72044,speculativeness,the quality of being a conclusion or opinion based on supposition and conjecture rather than on fact or investigation; "her work is highly contentious because of its speculativeness and lack of supporting evidence"
+72045,speculator,someone who makes conjectures without knowing the facts
+72046,speculator plunger,someone who risks losses for the possibility of considerable gains
+72047,speculum,a mirror (especially one made of polished metal) for use in an optical instrument
+72048,speculum,a medical instrument for dilating a bodily passage or cavity in order to examine the interior
+72049,speech,something spoken; "he could hear them uttering merry speeches"
+72050,speech,the exchange of spoken words; "they were perfectly comfortable together without speech"
+72051,speech speech_communication spoken_communication spoken_language language voice_communication oral_communication,(language) communication by word of mouth; "his speech was garbled"; "he uttered harsh language"; "he recorded the spoken language of the streets"
+72052,speech_act,the use of language to perform some act
+72053,speech_community,people sharing a given language or dialect
+72054,speech_day,an annual day in the schools when speeches are made and prizes are distributed
+72055,speech_disorder speech_defect defect_of_speech,a disorder of oral speech
+72056,speech_intelligibility,the intelligibility of speech (usually measured in the presence of noise or distortion)
+72057,speech_organ vocal_organ organ_of_speech,any of the organs involved in speech production
+72058,speech_perception,the auditory perception (and comprehension) of speech
+72059,speech_spectrum,the average sound spectrum for the human voice
+72060,speech_therapist,a therapist who treats speech defects and disorders
+72061,speech_therapy,any therapy intended to correct a disorder of speech
+72062,speechlessness,the property of being speechless
+72063,speechwriter,a writer who composes speeches for others to deliver
+72064,speed speeding hurrying,changing location rapidly
+72065,speed swiftness fastness,a rate (usually rapid) at which something happens; "the project advanced with gratifying speed"
+72066,speed velocity,distance travelled per unit time
+72067,speed-reading,reading at speeds significantly faster than normal
+72068,speed_bump,a hindrance to speeding created by a crosswise ridge in the surface of a roadway
+72069,speed_freak,addict who habitually uses stimulant drugs (especially amphetamines)
+72070,speed_limit,regulation establishing the top speed permitted on a given road
+72071,speed_of_light light_speed c,the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second
+72072,speed_skate racing_skate,an ice skate with a long blade; worn for racing
+72073,speed_skating,competitive skating on speed skates (usually around an oval course)
+72074,speed_trap,a trap arranged on a roadway for catching speeders
+72075,speedboat,a fast motorboat
+72076,speeder speed_demon,a driver who exceeds the safe speed limit
+72077,speeding_ticket,a ticket issued for driving above the speed limit
+72078,speedometer speed_indicator,a meter fixed to a vehicle that measures and displays its speed
+72079,speedskater speed_skater,an ice-skater who races competitively; usually around an oval course
+72080,speedway,road where high speed driving is allowed
+72081,speedway,a racetrack for racing automobiles or motorcycles
+72082,speleology spelaeology,the scientific study of caves
+72083,speleology spelaeology,the pastime of exploring caves
+72084,spell magic_spell magical_spell charm,a verbal formula believed to have magical force; "he whispered a spell as he moved his hands"; "inscribed around its base is a charm in Balinese"
+72085,spell-checker spelling_checker,an electronic dictionary in a word processor that can be used to catch misspelled words
+72086,spellbinder,an orator who can hold his listeners spellbound
+72087,speller,an introductory textbook to teach spelling
+72088,speller good_speller poor_speller,someone who spells words
+72089,spelling,forming words with letters according to the principles underlying accepted usage
+72090,spelling_bee spelldown spelling_contest,a contest in which you are eliminated if you fail to spell a word correctly
+72091,spelt Triticum_spelta Triticum_aestivum_spelta,hardy wheat grown mostly in Europe for livestock feed
+72092,spelter,impure zinc containing about three percent lead and other impurities (especially in the form of ingots)
+72093,spender disburser expender,someone who spends money to purchase goods or services
+72094,spending disbursement disbursal outlay,the act of spending or disbursing money
+72095,spending_cut,the act of reducing spending
+72096,spending_spree,a brief period of extravagant spending
+72097,spendthrift spend-all spender scattergood,someone who spends money prodigally
+72098,spendthrift_trust,a trust created to maintain a beneficiary but to be secure against the beneficiary's improvidence
+72099,sperm sperm_cell spermatozoon spermatozoan,the male reproductive cell; the male gamete; "a sperm is mostly a nucleus surrounded by little other cellular material"
+72100,sperm_bank,a depository for storing sperm
+72101,sperm_count,the number of sperm in an ejaculate; "the sperm count is used as an indicator of male fertility"
+72102,sperm_count,the act of estimating the number of spermatozoa in an ejaculate
+72103,sperm_oil,an animal oil found in the blubber of the sperm whale
+72104,sperm_whale cachalot black_whale Physeter_catodon,large whale with a large cavity in the head containing spermaceti and oil; also a source of ambergris
+72105,spermaceti,a white waxy substance from oil of the sperm whale
+72106,spermatic_cord,a structure resembling a cord that suspends the testis within the scrotum and contains the vas deferens and other vessels and nerves
+72107,spermatid,an immature gamete produced by a spermatocyte; develops into a spermatozoon
+72108,spermatocele,a swelling on the epididymis or the testis; usually contains spermatozoa
+72109,spermatocyte,a male gametocyte that develops into four spermatids
+72110,spermatogenesis,development of spermatozoa
+72111,spermatophyte phanerogam seed_plant,plant that reproduces by means of seeds not spores
+72112,spermicide spermatocide,a contraceptive agent that kills spermatozoa
+72113,sphagnum sphagnum_moss peat_moss bog_moss,any of various pale or ashy mosses of the genus Sphagnum whose decomposed remains form peat
+72114,sphecoid_wasp sphecoid,any of various solitary wasps
+72115,sphenion,the anterior tip of the parietal bone
+72116,sphenisciform_seabird,flightless cold-water seabirds: penguins
+72117,sphenoid_bone sphenoid os_sphenoidale,butterfly-shaped bone at the base of the skull
+72118,sphenoid_fontanelle sphenoid_fontanel sphenoidal_fontanelle sphenoidal_fontanel,the irregularly shaped area on either side of the cranium where the frontal bone and the anterior tip of the parietal bone and the temporal bone and the greater wing of the sphenoid bone meet; corresponds to the pterion when bones have ossified
+72119,sphere,a solid figure bounded by a spherical surface (including the space it encloses)
+72120,sphere,a three-dimensional closed surface such that every point on the surface is equidistant from the center
+72121,sphere,any spherically shaped artifact
+72122,sphere domain area orbit field arena,a particular environment or walk of life; "his social sphere is limited"; "it was a closed area of employment"; "he's out of my orbit"
+72123,sphere sphere_of_influence,the geographical area in which one nation is very influential
+72124,spherical_aberration,an optical aberration resulting in a distorted image
+72125,spherical_angle,an angle formed at the intersection of the arcs of two great circles
+72126,spherical_geometry,(mathematics) the geometry of figures on the surface of a sphere
+72127,spherical_polygon,a figure on the surface of a sphere bounded by arcs of 3 or more great circles
+72128,spherical_triangle,a spherical polygon formed by the arcs of 3 great circles
+72129,spherical_trigonometry,(mathematics) the trigonometry of spherical triangles
+72130,sphericity sphericalness globosity globularness rotundity rotundness,the roundness of a 3-dimensional object
+72131,spherocyte,an abnormal spherical red blood cell
+72132,spheroid ellipsoid_of_revolution,a shape that is generated by rotating an ellipse around one of its axes; "it looked like a sphere but on closer examination I saw it was really a spheroid"
+72133,spherometer,a measuring instrument for measuring the curvature of a surface
+72134,spherule,a small sphere
+72135,sphincter anatomical_sphincter sphincter_muscle,a ring of muscle that contracts to close an opening
+72136,sphinx,an inscrutable person who keeps his thoughts and intentions secret
+72137,sphinx,one of a number of large stone statues with the body of a lion and the head of a man that were built by the ancient Egyptians
+72138,sphygmomanometer,a pressure gauge for measuring blood pressure
+72139,spic spik spick,(ethnic slur) offensive term for persons of Latin American descent
+72140,spiccato spiccato_bowing,bowing in such a way that the bow bounces lightly off the strings
+72141,spice,aromatic substances of vegetable origin used as a preservative
+72142,spice,any of a variety of pungent aromatic vegetable substances used for flavoring food
+72143,spice_cake,cake flavored with spices
+72144,spice_cookie,cookie flavored with spices
+72145,spice_rack,a rack for displaying containers filled with spices
+72146,spice_tree,tree bearing aromatic bark or berries
+72147,spicebush California_allspice Calycanthus_occidentalis,straggling aromatic shrub of southwestern United States having fragrant brown flowers
+72148,spicebush spice_bush American_spicebush Benjamin_bush Lindera_benzoin Benzoin_odoriferum,deciduous shrub of the eastern United States having highly aromatic leaves and bark and yellow flowers followed by scarlet or yellow berries
+72149,spicemill,a mill for grinding spices
+72150,spiciness spice spicery,the property of being seasoned with spice and so highly flavored
+72151,spicule spiculum,small pointed structure serving as a skeletal element in various marine and freshwater invertebrates e.g. sponges and corals
+72152,spider,a skillet made of cast iron
+72153,spider,predatory arachnid with eight legs, two poison fangs, two feelers, and usually two silk-spinning organs at the back end of the body; they spin silk to make cocoons for eggs or traps for prey
+72154,spider wanderer,a computer program that prowls the internet looking for publicly accessible resources that can be added to a database; the database can then be searched with a search engine
+72155,spider_angioma spider_nevus vascular_spider,a dilation of superficial capillaries with a central red dot from which blood vessels radiate
+72156,spider_brake spider_fern Pteris_multifida,Asiatic fern introduced in America
+72157,spider_crab,any of numerous crabs with very long legs and small triangular bodies
+72158,spider_flower spider_plant Cleome_hassleriana,native to South America but naturalized in warm parts of United States; grown for its long-lasting spider-shaped white to pink-purple flowers
+72159,spider_mite tetranychid,web-spinning mite that attacks garden plants and fruit trees
+72160,spider_monkey Ateles_geoffroyi,arboreal monkey of tropical America with long slender legs and long prehensile tail
+72161,spider_orchid,any of several European orchids of the genus Ophrys
+72162,spider_orchid Brassia_lawrenceana,South American orchid with spiderlike pale-yellow to pale-green flowers
+72163,spider_orchid Brassia_verrucosa,Central American orchid having spiderlike flowers with prominent green warts
+72164,spider_web spider's_web,a web resembling the webs spun by spiders
+72165,spider_web spider's_web,a web spun by spiders to trap insect prey
+72166,spiderflower cleome,any of various often strong-smelling plants of the genus Cleome having showy spider-shaped flowers
+72167,spiderwort dayflower,any plant of the family Commelinaceae
+72168,spiegeleisen spiegel spiegel_iron,pig iron containing manganese; used as a deoxidizing agent and to raise the manganese content in making steel
+72169,spiel patter line_of_gab,plausible glib talk (especially useful to a salesperson)
+72170,spiff,attractiveness in appearance or dress or manner; "he gets by largely on pure spiff"
+72171,spike,(botany) an indeterminate inflorescence bearing sessile flowers on an unbranched axis
+72172,spike,a sharp rise followed by a sharp decline; "the seismograph showed a sharp spike in response to the temblor"
+72173,spike,a transient variation in voltage or current
+72174,spike,each of the sharp points on the soles of athletic shoes to prevent slipping (or the shoes themselves); "the second baseman sharpened his spikes before every game"; "golfers' spikes damage the putting greens"
+72175,spike,a sharp-pointed projection along the top of a fence or wall (or a dinosaur)
+72176,spike,a long, thin sharp-pointed implement (wood or metal); "one of the spikes impaled him"
+72177,spike,a large stout nail; "they used spikes to fasten the rails to a railroad tie"
+72178,spike,sports equipment consisting of a sharp point on the sole of a shoe worn by athletes; "spikes provide greater traction"
+72179,spike spindle,any holding device consisting of a rigid, sharp-pointed object; "the spike pierced the receipts and held them in order"
+72180,spike_heath Bruckenthalia_spiculifolia,small evergreen mat-forming shrub of southern Europe and Asia Minor having stiff stems and terminal clusters of small bell-shaped flowers
+72181,spike_heel spike stiletto_heel,a very high narrow heel on women's shoes
+72182,spike_lavender French_lavender Lavandula_latifolia,Mediterranean plant with pale purple flowers that yields spike lavender oil
+72183,spike_lavender_oil spike_oil,pale yellow essential oil obtained from spike lavender used in scenting soaps and cosmetics
+72184,spike_microphone spike_mike,a contact microphone for listening through walls
+72185,spike_rush,a sedge of the genus Eleocharis
+72186,spikemoss spike_moss little_club_moss,any of numerous fern allies of the genus Selaginella
+72187,spill,liquid that is spilled; "clean up the spills"
+72188,spill spillage release,the act of allowing a fluid to escape
+72189,spill tumble fall,a sudden drop from an upright position; "he had a nasty spill on the ice"
+72190,spillage,the amount that has spilled
+72191,spillover,(economics) any indirect effect of public expenditure
+72192,spillway spill wasteweir,a channel that carries excess water over or around a dam or other obstruction
+72193,spin,a swift whirling motion (usually of a missile)
+72194,spin,a short drive in a car; "he took the new car for a spin"
+72195,spin,a distinctive interpretation (especially as used by politicians to sway public opinion); "the campaign put a favorable spin on the story"
+72196,spin twirl twist twisting whirl,the act of rotating rapidly; "he gave the crank a spin"; "it broke off after much twisting"
+72197,spin_doctor spinmeister,a public relations person who tries to forestall negative publicity by publicizing a favorable interpretation of the words or actions of a company or political party or famous person; "his title is Director of Communications but he is just a spin doctor"
+72198,spin_dryer spin_drier,a clothes dryer that uses centrifugal motion to dry the clothes that are put into it
+72199,spin_the_bottle,a game in which a player spins a bottle and kisses the person that it points to when it stops spinning
+72200,spin_the_plate spin_the_platter,a game in which something round (as a plate) is spun on edge and the name of a player is called; the named player must catch the spinning object before it falls or pay a forfeit
+72201,spina_bifida rachischisis schistorrhachis,a not uncommon congenital defect in which a vertebra is malformed; unless several vertebrae are affected or there is myelomeningocele there are few symptoms; can be diagnosed by amniocentesis
+72202,spinach,dark green leaves; eaten cooked or raw in salads
+72203,spinach spinach_plant prickly-seeded_spinach Spinacia_oleracea,southwestern Asian plant widely cultivated for its succulent edible dark green leaves
+72204,spinach_blight,a disease of spinach plants
+72205,spinal_anesthesia spinal_anaesthesia spinal,anesthesia of the lower half of the body; caused by injury to the spinal cord or by injecting an anesthetic beneath the arachnoid membrane that surrounds the spinal cord
+72206,spinal_anesthetic spinal_anaesthetic,an anesthetic that is injected into the spine
+72207,spinal_canal vertebral_canal canalis_vertebralis,the canal in successive vertebrae through which the spinal cord passes
+72208,spinal_column vertebral_column spine backbone back rachis,the series of vertebrae forming the axis of the skeleton and protecting the spinal cord; "the fall broke his back"
+72209,spinal_cord medulla_spinalis,a major part of the central nervous system which conducts sensory and motor nerve impulses to and from the brain; a long tubelike structure extending from the base of the brain through the vertebral canal to the upper lumbar region
+72210,spinal_curvature,an abnormal curvature of the vertebral column
+72211,spinal_fluid cerebrospinal_fluid,clear liquid produced in the ventricles of the brain; fills and protects cavities in the brain and spinal cord
+72212,spinal_nerve nervus_spinalis,any of the 31 pairs of nerves emerging from each side of the spinal cord (each attached to the cord by two roots: ventral and dorsal)
+72213,spinal_nerve_root,one of two roots of the spinal nerves
+72214,spinal_nerve_roots,either of two roots of the spinal nerves
+72215,spinal_vein vena_spinalis,veins that drain the spinal cord
+72216,spindle,(biology) tiny fibers that are seen in cell division; the fibers radiate from two poles and meet at the equator in the middle; "chromosomes are distributed by spindles in mitosis and meiosis"
+72217,spindle,a piece of wood that has been turned on a lathe; used as a baluster, chair leg, etc.
+72218,spindle,a stick or pin used to twist the yarn in spinning
+72219,spindle mandrel mandril arbor,any of various rotating shafts that serve as axes for larger rotating parts
+72220,spindle_tree spindleberry spindleberry_tree,any shrubby trees or woody vines of the genus Euonymus having showy usually reddish berries
+72221,spindlelegs spindleshanks,a thin person with long thin legs
+72222,spindlelegs spindleshanks,long thin legs
+72223,spindrift spoondrift,spray blown up from the surface of the sea
+72224,spine,a sharp rigid animal process or appendage; as a porcupine quill or a ridge on a bone or a ray of a fish fin
+72225,spine backbone,the part of a book's cover that encloses the inner side of the book's pages and that faces outward when the book is shelved; "the title and author were printed on the spine of the book"
+72226,spine thorn prickle pricker sticker spikelet,a small sharp-pointed tip resembling a spike on a stem or leaf
+72227,spinel,a hard glassy mineral consisting of an oxide of magnesium and aluminum; occurs in various colors that are used as gemstones
+72228,spinel_ruby ruby_spinel,a spinel used as a gemstone (usually dark red)
+72229,spinelessness,the quality of lacking a strong character; an irresolute disposition
+72230,spinet,a small and compactly built upright piano
+72231,spinet,early model harpsichord with only one string per note
+72232,spinnability,the quality of being suitable for spinning or the capability of being spun (used of textile fibers)
+72233,spinnaker,a large and usually triangular headsail; carried by a yacht as a headsail when running before the wind
+72234,spinnbarkeit,the capacity of a viscous liquid (especially the cervical mucus) to be drawn out into a strand or blown up into a bubble
+72235,spinner,board game equipment that consists of a dial and an arrow that is spun to determine the next move in the game
+72236,spinner,fisherman's lure; revolves when drawn through the water
+72237,spinner spinster thread_maker,someone who spins (who twists fibers into threads)
+72238,spinney,a copse that shelters game
+72239,spinning,creating thread
+72240,spinning_frame,spinning machine that draws, twists, and winds yarn
+72241,spinning_jenny,an early spinning machine with multiple spindles
+72242,spinning_machine,a textile machine for spinning yarn and thread
+72243,spinning_rod,a fishing rod designed for casting a spinning lure
+72244,spinning_wheel,a small domestic spinning machine with a single spindle that is driven by hand or foot
+72245,spinocerebellar_disorder,any of several congenital disorders marked by degeneration of the cerebellum and spinal cord resulting in spasticity and ataxia
+72246,spinster old_maid,an elderly unmarried woman
+72247,spinsterhood,the state of being a spinster (usually an elderly unmarried woman)
+72248,spiny-finned_fish acanthopterygian,a teleost fish with fins that are supported by sharp inflexible rays
+72249,spiny_dogfish,small bottom-dwelling dogfishes
+72250,spiny_lizard,any of numerous lizards with overlapping ridged pointed scales; of North America and Central America
+72251,spiny_lobster langouste rock_lobster crawfish crayfish sea_crawfish,large edible marine crustacean having a spiny carapace but lacking the large pincers of true lobsters
+72252,spiny_lobster langouste rock_lobster crayfish,warm-water lobsters without claws; those from Australia and South Africa usually marketed as frozen tails; caught also in Florida and California
+72253,spiny_puffer,puffers having rigid or erectile spines
+72254,spiny_softshell Trionyx_spiniferus,river turtle of western United States with a warty shell; prefers quiet water
+72255,spiny_talinum Talinum_spinescens,low cushion-forming plant with rose to crimson-magenta flowers and leaf midribs that persist as spines when the leaves die; southwestern United States
+72256,spiracle,a breathing orifice
+72257,spiral,a plane curve traced by a point circling about the center but at increasing distances from the center
+72258,spiral,a continuously accelerating change in the economy
+72259,spiral,flying downward in a helical path with a large radius
+72260,spiral volute,ornament consisting of a curve on a plane that winds around a center with an increasing distance from the center
+72261,spiral_bandage,an oblique bandage in which successive turns overlap preceding turns
+72262,spiral_galaxy spiral_nebula,a galaxy having a spiral structure; arms containing younger stars spiral out from old stars at the center
+72263,spiral_ratchet_screwdriver ratchet_screwdriver,a screwdriver with a ratchet (so the blade turns in only one direction) and a spiral in the handle (so the blade rotates) with downward pressure on the handle
+72264,spiral_spring,a spring that is wound like a spiral
+72265,spirea spiraea,any rosaceous plant of the genus Spiraea; has sprays of small white or pink flowers
+72266,spirea spiraea Astilbe_japonica,a Japanese shrub that resembles members of the genus Spiraea; widely cultivated in many varieties for its dense panicles of flowers in many colors; often forced by florists for Easter blooming
+72267,spirillum,spirally twisted elongate rodlike bacteria usually living in stagnant water
+72268,spirillum spirilla,any flagellated aerobic bacteria having a spirally twisted rodlike form
+72269,spirit,the vital principle or animating force within living things
+72270,spirit,a fundamental emotional and activating principle determining one's character
+72271,spirit disembodied_spirit,any incorporeal supernatural being that can become visible (or audible) to human beings
+72272,spirit tone feel feeling flavor flavour look smell,the general atmosphere of a place or situation and the effect that it has on people; "the feel of the city excited him"; "a clergyman improved the tone of the meeting"; "it had the smell of treason"
+72273,spirit_gum,an adhesive solution made of gum and ether and used to attach false hair to skin
+72274,spirit_lamp,a lamp that burns a volatile liquid fuel such as alcohol
+72275,spirit_rapper,someone who claims to receive messages from the dead in the form of raps on a table
+72276,spirit_stove,a stove that burns a volatile liquid fuel such as alcohol
+72277,spirit_world,any imaginary place where spiritual beings (demons or fairies or angels or the like) abide; "science has emptied the spirit world of its former inhabitants"
+72278,spirits_of_ammonia sal_volatile,a solution of ammonium carbonate in ammonia water and alcohol
+72279,spirits_of_wine,rectified ethyl alcohol
+72280,spiritual Negro_spiritual,a kind of religious song originated by Blacks in the southern United States
+72281,spiritual_being supernatural_being,an incorporeal being believed to have powers to affect the course of human events
+72282,spiritual_bouquet,(Roman Catholic Church) a card indicating that the sender will perform certain devotional acts on behalf of another
+72283,spiritual_leader,a leader in religious or sacred affairs
+72284,spiritual_world spiritual_domain unseen,a belief that there is a realm controlled by a divine spirit
+72285,spiritualism,(theology) any doctrine that asserts the separate existence of God
+72286,spiritualism,the belief that the spirits of dead people can communicate with people who are still alive (especially via a medium)
+72287,spirituality spiritualism spiritism otherworldliness,concern with things of the spirit
+72288,spiritualization spiritualisation,the act of making something spiritual; infusing it with spiritual content
+72289,spiritualty spirituality church_property,property or income owned by a church
+72290,spirochete spirochaete,parasitic or free-living bacteria; many pathogenic to humans and other animals
+72291,spirogram,a recording of breathing made with a spirograph
+72292,spirograph,a measuring instrument for recording the depth and rapidity of breathing movements
+72293,spirogyra,freshwater algae consisting of minute filaments containing spiral chlorophyll bands
+72294,spirometer,a measuring instrument for measuring the vital capacity of the lungs
+72295,spirometry,the use of a spirometer to measure vital capacity
+72296,spironolactone Aldactone,a synthetic corticosteroid (trade name Aldactone) used to treat hypertension
+72297,spirula Spirula_peronii,a small tropical cephalopod of the genus Spirula having prominent eyes and short arms and a many-chambered shell coiled in a flat spiral
+72298,spit,a skewer for holding meat over a fire
+72299,spit spitting expectoration,the act of spitting (forcefully expelling saliva)
+72300,spit tongue,a narrow strip of land that juts out into the sea
+72301,spit_and_polish,careful attention to order and appearance (as in the military)
+72302,spit_curl kiss_curl,a spiral curl plastered on the forehead or cheek
+72303,spitball,a projectile made by chewing a piece of paper and shaping it into a sphere
+72304,spitball spitter,an illegal pitch in which a foreign substance (spit or Vaseline) is applied to the ball by the pitcher before he throws it
+72305,spitfire,a highly emotional and quick-tempered person (especially a girl or woman)
+72306,spitter expectorator,a person who spits (ejects saliva or phlegm from the mouth)
+72307,spitting_image,a perfect likeness or counterpart
+72308,spittle_insect spittlebug,small leaping herbivorous insect that lives in a mass of protective froth which it and its larvae secrete
+72309,spittoon cuspidor,a receptacle for spit (usually in a public place)
+72310,spitz,any of various stocky heavy-coated breeds of dogs native to northern regions having pointed muzzles and erect ears with a curled furry tail
+72311,spiv,a person without employment who makes money by various dubious schemes; goes about smartly dressed and having a good time
+72312,splanchnic_nerve,any of several nerves of the sympathetic part of the autonomic nervous system that innervate viscera and blood vessels
+72313,splash,a patch of bright color; "her red hat gave her outfit a splash of color"
+72314,splash plash,the sound like water splashing
+72315,splash splashing,the act of scattering water about haphazardly
+72316,splashboard splasher dashboard,protective covering consisting of a panel to protect people from the splashing water or mud etc.
+72317,splashdown,a landing of a spacecraft in the sea at the end of a space flight
+72318,splasher,a protective covering over or beside a wheel to protect the upper part of a vehicle from splashes of mud
+72319,splat,a single splash; "he heard a splat as it hit the floor"
+72320,splat,a slat of wood in the middle of the back of a straight chair
+72321,splay,an outward bevel around a door or window that makes it seem larger
+72322,spleen lien,a large dark-red oval organ on the left side of the body between the stomach and the diaphragm; produces cells involved in immune responses
+72323,spleenwort,any of various chiefly rock-inhabiting ferns of the genus Asplenium
+72324,splenectomy,surgical removal of the spleen
+72325,splenic_vein vena_lienalis,a vein formed by several small veins on the surface of the spleen; joins the superior mesenteric to form the portal vein
+72326,splenitis,inflammation of the spleen
+72327,splenius splenius_muscle,either of two flat muscles that extend from the upper vertebrae to the base of the skull and serve to rotate or flex or extend the head and neck
+72328,splenomegaly,an abnormal enlargement of the spleen
+72329,splice splicing,a junction where two things (as paper or film or magnetic tape) have been joined together; "the break was due to an imperfect splice"
+72330,splicer,a woodworker who joins pieces of wood with a splice
+72331,splicer,a worker who splices ropes together by interweaving strands
+72332,splicer,a mechanical device for joining two pieces of paper or film or magnetic tape
+72333,spline,a flexible strip (wood or rubber) used in drawing curved lines
+72334,splint,a thin sliver of wood; "he lit the fire with a burning splint"
+72335,splint,an orthopedic mechanical device used to immobilize and protect a part of the body (as a broken leg)
+72336,splint_bone,a rudimentary metacarpal or metatarsal bone on either side of the cannon bone in the leg of a horse or related animal
+72337,splinter sliver,a small thin sharp bit or wood or glass or metal; "he got a splinter in his finger"; "it broke into slivers"
+72338,splinter_group,a faction or sect that has broken away from its parent organization
+72339,split,a bottle containing half the usual amount
+72340,split,a promised or claimed share of loot or money; "he demanded his split before they disbanded"
+72341,split,a lengthwise crack in wood; "he inserted the wedge into a split in the log"
+72342,split,a dessert of sliced fruit and ice cream covered with whipped cream and cherries and nuts
+72343,split,(tenpin bowling) a divided formation of pins left standing after the first bowl; "he was winning until he got a split in the tenth frame"
+72344,split,extending the legs at right angles to the trunk (one in front and the other in back)
+72345,split stock_split split_up,an increase in the number of outstanding shares of a corporation without changing the shareholders' equity; "they announced a two-for-one split of the common stock"
+72346,split-brain_technique,brain surgery on animals in which the corpus callosum (and sometimes the optic chiasm) is severed so that communication between the cerebral hemispheres is interrupted
+72347,split-half_correlation chance-half_correlation,a correlation coefficient calculated between scores on two halves of a test; taken as an indication of the reliability of the test
+72348,split-pea,dried hulled pea; used in soup
+72349,split-pea_soup,made of stock and split peas with onions carrots and celery
+72350,split_decision,a boxing decision in which the judges are not unanimous
+72351,split_end,(football) an offensive end who lines up at a distance from the other linemen
+72352,split_infinitive,an infinitive with an adverb between `to' and the verb (e.g., `to boldly go')
+72353,split_personality multiple_personality,a relatively rare dissociative disorder in which the usual integrity of the personality breaks down and two or more independent personalities emerge
+72354,split_rail fence_rail,a rail that is split from a log
+72355,split_run,a print run of a newspaper during which some articles or advertisements are changed to produce a different edition
+72356,split_shift,a working shift divided into two periods of time with several hours in between
+72357,split_ticket,a ballot cast by a voter who votes for candidates from more than one party
+72358,splitsville,separation or breakup or divorce; "after 15 years together they are headed for splitsville"
+72359,splitter,a worker who splits fish and removes the backbone
+72360,splitter divider,a taxonomist who classifies organisms into many groups on the basis of relatively minor characteristics
+72361,splurge,an ostentatious display (of effort or extravagance etc.)
+72362,spodumene,a pyroxene mineral consisting of lithium aluminum silicate; a source of lithium
+72363,spoil,(usually plural) valuables taken by violence (especially in war); "to the victor belong the spoils of the enemy"
+72364,spoil spoiling spoilage,the act of spoiling something by causing damage to it; "her spoiling my dress was deliberate"
+72365,spoil spoliation spoilation despoilation despoilment despoliation,the act of stripping and taking by force
+72366,spoilage,the amount that has spoiled
+72367,spoilage spoiling,the process of becoming spoiled
+72368,spoiler,a candidate with no chance of winning but who may draw enough votes to prevent one of the leading candidates from winning
+72369,spoiler,an airfoil mounted on the rear of a car to reduce lift at high speeds
+72370,spoiler,a hinged airfoil on the upper surface of an aircraft wing that is raised to reduce lift and increase drag
+72371,spoils_system,the system of employing and promoting civil servants who are friends and supporters of the group in power
+72372,spoilsport killjoy wet_blanket party_pooper,someone who spoils the pleasure of others
+72373,spoke wheel_spoke radius,support consisting of a radial member of a wheel joining the hub to the rim
+72374,spokeshave,a small plane that has a handle on each side of its blade; used for shaping or smoothing cylindrical wooden surfaces (originally wheel spokes)
+72375,spokesman,a male spokesperson
+72376,spokesperson interpreter representative voice,an advocate who represents someone else's policy or purpose; "the meeting was attended by spokespersons for all the major organs of government"
+72377,spokeswoman,a female spokesperson
+72378,spoliation,(law) the intentional destruction of a document or an alteration of it that destroys its value as evidence
+72379,spondee,a metrical unit with stressed-stressed syllables
+72380,spondylarthritis,arthritis that affects one or more of the intervertebral joints in the spine
+72381,spondylitis,inflammation of a spinal joint; characterized by pain and stiffness
+72382,spondylolisthesis,a forward dislocation of one vertebra over the one beneath it producing pressure on spinal nerves
+72383,sponge,a porous mass of interlacing fibers that forms the internal skeleton of various marine animals and usable to absorb water or any porous rubber or cellulose product similarly used
+72384,sponge poriferan parazoan,primitive multicellular marine animal whose porous body is supported by a fibrous skeletal framework; usually occurs in sessile colonies
+72385,sponge_bath,you wash your body with a sponge or washcloth instead of in a bathtub
+72386,sponge_cake,a light porous cake made with eggs and flour and sugar without shortening
+72387,sponge_cloth,any soft porous fabric (especially in a loose honeycomb weave)
+72388,sponge_genus,a genus of Porifera
+72389,sponge_mop,a wet mop with a sponge as the absorbent
+72390,spongefly spongillafly,hairy-bodied insect whose larvae feed on freshwater sponges
+72391,sponger,a workman employed to collect sponges
+72392,sponginess,the porosity of a sponge
+72393,spongioblast,any of various columnar epithelial cells in the central nervous system that develop into neuroglia
+72394,sponsorship,the act of sponsoring (either officially or financially)
+72395,spontaneity spontaneousness,the quality of being spontaneous and coming from natural feelings without constraint; "the spontaneity of his laughter"
+72396,spontaneous_abortion miscarriage stillbirth,a natural loss of the products of conception
+72397,spontaneous_combustion,ignition of a substance (as oily rags) resulting from an internal oxidation process
+72398,spoon,formerly a golfing wood with an elevated face
+72399,spoon,a piece of cutlery with a shallow bowl-shaped container and a handle; used to stir or serve or take up food
+72400,spoon spoonful,as much as a spoon will hold; "he added two spoons of sugar"
+72401,spoon_bread batter_bread,soft bread made of cornmeal and sometimes rice or hominy; must be served with a spoon (chiefly southern)
+72402,spoonbill,wading birds having a long flat bill with a tip like a spoon
+72403,spoonerism,transposition of initial consonants in a pair of words
+72404,spoonfeeding,feeding someone (as a baby) from a spoon
+72405,spoonfeeding,teaching in an overly simplified way that discourages independent thought
+72406,spoor,the trail left by a person or an animal; what the hunter follows in pursuing game; "the hounds followed the fox's spoor"
+72407,sporangiophore,stalk bearing one or more sporangia
+72408,sporangium spore_case spore_sac,organ containing or producing spores
+72409,spore,a small usually single-celled asexual reproductive body produced by many nonflowering plants and fungi and some bacteria and protozoans and that are capable of developing into a new individual without sexual fusion; "a sexual spore is formed after the fusion of gametes"
+72410,spore_mother_cell,cell from which a spore develops
+72411,sporocarp spore_case,specialized leaf branch in certain aquatic ferns that encloses the sori or clusters of sporangia
+72412,sporophore,a spore-bearing branch or organ: the part of the thallus of a sporophyte that develops spores; in ferns and mosses and liverworts is practically equivalent to the sporophyte
+72413,sporophyll sporophyl,leaf in ferns and mosses that bears the sporangia
+72414,sporophyte,the spore-producing individual or phase in the life cycle of a plant having alternation of generations
+72415,sporotrichosis,a chronic fungal infection of the skin and lymph nodes
+72416,sporozoan,parasitic spore-forming protozoan
+72417,sporozoite,one of the minute active bodies into which sporozoans divide in one stage of their life cycle
+72418,sporran,a fur or leather pouch worn at the front of the kilt as part of the traditional dress of Scottish Highlanders
+72419,sport,a person known for the way she (or he) behaves when teased or defeated or subjected to trying circumstances; "a good sport"; "a poor sport"
+72420,sport,the occupation of athletes who compete for pay
+72421,sport athletics,an active diversion requiring physical exertion and competition
+72422,sport sportsman sportswoman,someone who engages in sports
+72423,sport summercater,(Maine colloquial) a temporary summer resident of Maine
+72424,sport_kite stunt_kite,a maneuverable kite controlled by two lines and flown with both hands
+72425,sport_utility sport_utility_vehicle S.U.V. SUV,a high-performance four-wheel drive car built on a truck chassis
+72426,sporting_dog gun_dog,a dog trained to work with sportsmen when they hunt with guns
+72427,sporting_goods,sports equipment sold as a commodity
+72428,sporting_life,active interest in gambling on sports events
+72429,sporting_man,someone who leads a merry existence; especially a gambler on the outcome of sporting events
+72430,sporting_man outdoor_man,someone who enjoys outdoor activities
+72431,sports_announcer sportscaster sports_commentator,an announcer who reads sports news or describes sporting events
+72432,sports_car sport_car,a small low car with a high-powered engine; usually seats two persons
+72433,sports_desk,the editorial department of a newspaper that edits the sports news
+72434,sports_editor,the newspaper editor responsible for sports news
+72435,sports_equipment,equipment needed to participate in a particular sport
+72436,sports_fan fan rooter,an enthusiastic devotee of sports
+72437,sports_implement,an implement used in a sport
+72438,sports_medicine,the branch of medicine concerned with the treatment of injuries or illness resulting from athletic activities
+72439,sports_page,any page in the sports section of a newspaper
+72440,sports_section,the section of a newspaper that reports on sports
+72441,sports_writer sportswriter,a journalist who writes about sports
+72442,sportscast,a broadcast of sports news or commentary
+72443,sportsmanship,fairness in following the rules of the game
+72444,sportswear athletic_wear activewear,attire worn for sport or for casual wear
+72445,spot,a short section or illustration (as between radio or tv programs or in a magazine) that is often used for advertising
+72446,spot,a section of an entertainment that is assigned to a specific performer or performance; "they changed his spot on the program"
+72447,spot,a playing card with a specified number of pips on it to indicate its value; "an eight-spot"
+72448,spot,a business establishment for entertainment; "night spot"
+72449,spot bit,a small piece or quantity of something; "a spot of tea"; "a bit of paper"; "a bit of lint"; "I gave him a bit of my mind"
+72450,spot pip,a mark on a die or on a playing card (shape depending on the suit)
+72451,spot speckle dapple patch fleck maculation,a small contrasting part of something; "a bald spot"; "a leopard's spots"; "a patch of clouds"; "patches of thin ice"; "a fleck of red"
+72452,spot-welder spot_welder,a welder who does spot welding
+72453,spot_check,a check on work performance or product quality made at random times without warning; "spot checks ensure a high level of performance by employees"
+72454,spot_jamming selective_jamming,electronic jamming of a specific channel or frequency
+72455,spot_market,a market in which a commodity is bought or sold for immediate delivery or delivery in the very near future
+72456,spot_pass,a pass to a designated spot on the field; the receiver should arrive at that spot the same time the ball does
+72457,spot_price cash_price,the current delivery price of a commodity traded in the spot market
+72458,spot_weld spot-weld,each of the welds made by welding at a separate point
+72459,spot_welding spot-welding,creating an overlapping joint by welding at small points
+72460,spotlessness immaculateness,the state of being spotlessly clean
+72461,spotlight spot,a lamp that produces a strong beam of light to illuminate a restricted area; used to focus attention of a stage performer
+72462,spotted_antbird Hylophylax_naevioides,a kind of antbird
+72463,spotted_coral_root Corallorhiza_maculata,common coral root having yellowish- or reddish- or purplish-brown leafless stems bearing loose racemes of similarly colored flowers with white purple-spotted lips; Guatemala to Canada
+72464,spotted_cowbane spotted_hemlock spotted_water_hemlock,tall biennial water hemlock of northeastern North America having purple-spotted stems and clusters of extremely poisonous tuberous roots resembling small sweet potatoes
+72465,spotted_crake Porzana_porzana,Eurasian rail of swamps and marshes
+72466,spotted_dick,a suet pudding containing currants
+72467,spotted_eagle_ray spotted_ray Aetobatus_narinari,ray with back covered with white or yellow spots; widely distributed in warm seas
+72468,spotted_fever,any of several severe febrile diseases characterized by skin rashes or spots on the skin
+72469,spotted_flycatcher Muscicapa_striata Muscicapa_grisola,common European woodland flycatcher with greyish-brown plumage
+72470,spotted_gum Eucalyptus_maculata,large gum tree with mottled bark
+72471,spotted_hyena laughing_hyena Crocuta_crocuta,African hyena noted for its distinctive howl
+72472,spotted_lynx Lynx_pardina,of southern Europe
+72473,spotted_owl Strix_occidentalis,a large owl of North America found in forests from British Columbia to central Mexico; has dark brown plumage and a heavily spotted chest
+72474,spotted_salamander Ambystoma_maculatum,glossy black North American salamander with yellow spots
+72475,spotted_salamander fire_salamander Salamandra_maculosa,European salamander having dark skin with usually yellow spots
+72476,spotted_sandpiper Actitis_macularia,common North American sandpiper
+72477,spotted_skunk little_spotted_skunk Spilogale_putorius,small skunk with a marbled black and white coat; of United States and Mexico
+72478,spotted_sunfish stumpknocker Lepomis_punctatus,inhabits streams from South Carolina to Florida; esteemed panfish
+72479,spotted_weakfish spotted_sea_trout spotted_squeateague Cynoscion_nebulosus,weakfish of southern Atlantic and Gulf Coasts of United States
+72480,spotter,a worker employed at a dry-cleaning establishment to remove spots
+72481,spotter,a worker employed to apply spots (as markers or identifiers)
+72482,spouse partner married_person mate better_half,a person's partner in marriage
+72483,spout,an opening that allows the passage of liquids or grain
+72484,spouter,an oil well that is spouting
+72485,spouter,a spouting whale
+72486,sprachgefuhl,an intuitive feeling for the natural idiom of a language; "Dubyuh has no sprachgefuhl"
+72487,sprag,a chock or bar wedged under a wheel or between the spokes to prevent a vehicle from rolling down an incline
+72488,sprain,a painful injury to a joint caused by a sudden wrenching of its ligaments
+72489,sprat brisling,small fatty European fish; usually smoked or canned like sardines
+72490,sprawl sprawling,an ungainly posture with arms and legs spread about
+72491,sprawler,a person who sprawls; "he is such a sprawler he needs a bed to himself"
+72492,spray,water in small drops in the atmosphere; blown from waves or thrown up by a waterfall
+72493,spray,a pesticide in suspension or solution; intended for spraying
+72494,spray,a jet of vapor
+72495,spray,flower arrangement consisting of a single branch or shoot bearing flowers and foliage
+72496,spray spraying,a quantity of small objects flying through the air; "a spray of bullets"
+72497,spray_gun,an applicator resembling a gun for applying liquid substances (as paint) in the form of a spray
+72498,spray_paint,paint applied with a spray gun
+72499,spray_painting,applying paint with a sprayer
+72500,sprayer,a worker who applies spray to a surface
+72501,spraying,the application of a liquid in the form of small particles ejected from a sprayer
+72502,spread,the expansion of a person's girth (especially at middle age); "she exercised to avoid that middle-aged spread"
+72503,spread paste,a tasty mixture to be spread on bread or crackers or used in preparing other dishes
+72504,spread spread_head spreadhead facing_pages,two facing pages of a book or other publication
+72505,spread spreading,process or result of distributing or extending over a wide expanse of space
+72506,spread spreading,act of extending over a wider scope or expanse of space or time
+72507,spread_eagle,an emblem (an eagle with wings and legs spread) on the obverse of the Great Seal of the United States
+72508,spread_eagle,a skating figure executed with the skates heel to heel in a straight line
+72509,spreader,a hand tool for spreading something; "he used his knife as a spreader"
+72510,spreading_fleabane Erigeron_divergens,well-branched plant with hairy leaves and stems each with a solitary flower head with narrow white or pink or lavender rays; western North America
+72511,spreading_pogonia funnel-crest_rosebud_orchid Cleistes_divaricata Pogonia_divaricata,orchid of northeastern United States with magenta-pink flowers having funnel-shaped lip; sometimes placed in genus Pogonia
+72512,spreadsheet,a screen-oriented interactive program enabling a user to lay out financial data on the screen
+72513,sprechgesang sprechstimme,a style of dramatic vocalization between singing and speaking
+72514,spree fling,a brief indulgence of your impulses
+72515,spree_killer,a serial killer whose murders occur within a brief period of time
+72516,sprig,an ornament that resembles a spray of leaves or flowers
+72517,spring,a point at which water issues forth
+72518,spring,a metal elastic device that returns to its shape or position when pushed or pulled or pressed; "the spring was broken"
+72519,spring fountain outflow outpouring natural_spring,a natural flow of ground water
+72520,spring springtime,the season of growth; "the emerging buds were a sure sign of spring"; "he will hold office until the spring of next year"
+72521,spring-cleaning,the activity of cleaning a house thoroughly at the end of winter
+72522,spring_balance spring_scale,a balance that measure weight by the tension on a helical spring
+72523,spring_beauty Clatonia_lanceolata,small slender plant having one pair of succulent leaves at the middle of the stem and a loose raceme of white or pink or rose bowl-shaped flowers and an edible corm
+72524,spring_break,a week or more of recess during the spring term at school
+72525,spring_cankerworm,variably colored looper; larva of Paleacrita vernata
+72526,spring_chicken,a young chicken having tender meat
+72527,spring_cress Cardamine_bulbosa,small white-flowered cress common in wet places in eastern North America
+72528,spring_mattress,a mattress containing springs in a rigid frame
+72529,spring_peeper Hyla_crucifer,a small brown tree toad having a shrill call heard near wetlands of eastern United States and Canada in early spring
+72530,spring_squill Scilla_verna sea_onion,European scilla with small blue or purple flowers
+72531,spring_training,preseason training during the spring
+72532,spring_vetch Vicia_sativa,herbaceous climbing plant valuable as fodder and for soil-building
+72533,spring_vetchling spring_vetch Lathyrus_vernus,bushy European perennial having nodding racemose violet-blue flowers
+72534,spring_water,water from a spring
+72535,springboard,a flexible board for jumping upward
+72536,springboard jumping-off_point point_of_departure,a beginning from which an enterprise is launched; "he uses other people's ideas as a springboard for his own"; "reality provides the jumping-off point for his illusions"; "the point of departure of international comparison cannot be an institution but must be the function it carries out"
+72537,springbok springbuck Antidorcas_marsupialis Antidorcas_euchore,a South African gazelle noted for springing lightly into the air
+72538,springer impost,the lowest stone in an arch -- from which it springs
+72539,springer springing_cow,a cow about to give birth
+72540,springer_spaniel springer,a large spaniel with wavy silky coat usually black or liver and white
+72541,springtide,a swelling rush of anything; "he rose on the springtide of prosperity"
+72542,springtide,a greater than average tide occurring during the new and full moons
+72543,sprinkle sprinkling sparge,the act of sprinkling or splashing water; "baptized with a sprinkling of holy water"; "a sparge of warm water over the malt"
+72544,sprinkler,mechanical device that attaches to a garden hose for watering lawn or garden
+72545,sprinkler_system,a system for extinguishing fires; water from a network of overhead pipes is released through nozzles that open automatically with the rise in temperature
+72546,sprinter,someone who runs a short distance at top speed
+72547,sprit,a light spar that crosses a fore-and-aft sail diagonally
+72548,sprites red_sprites,atmospheric electricity (lasting 10 msec) appearing as globular flashes of red (pink to blood-red) light rising to heights of 60 miles (sometimes seen together with elves)
+72549,spritsail,a fore-and-aft sail extended by a sprit
+72550,spritz,a quick squirt of some liquid (usually carbonated water)
+72551,spritzer,a mixed drink made of wine mixed with a sparkling water
+72552,sprocket,roller that has teeth on the rims to pull film or paper through
+72553,sprocket sprocket_wheel,thin wheel with teeth that engage with a chain
+72554,sprog,a new military recruit
+72555,sprog,a child
+72556,sprout,any new growth of a plant such as a new branch or a bud
+72557,sprout,a newly grown bud (especially from a germinating seed)
+72558,spruce,light soft moderately strong wood of spruce trees; used especially for timbers and millwork
+72559,spruce,any coniferous tree of the genus Picea
+72560,spruce_bark_beetle Dendroctonus_rufipennis,small beetle that likes to bore through the bark of spruce trees and eat the cambium which eventually kills the tree; "the spruce bark beetle is the major tree-killing insect pest of Alaska spruce forests"
+72561,spruce_beer,a brew made by fermenting molasses and other sugars with the sap of spruce trees (sometimes with malt)
+72562,spruce_gall_aphid Adelges_abietis,a variety of adelgid
+72563,spruce_grouse Canachites_canadensis,North American grouse that feeds on evergreen buds and needles
+72564,spruce_pine Pinus_glabra,large two-needled pine of southeastern United States with light soft wood
+72565,sprue tropical_sprue psilosis,a chronic disorder that occurs in tropical and non-tropical forms and in both children and adults; nutrients are not absorbed; symptoms include foul-smelling diarrhea and emaciation
+72566,sprung_rhythm,a poetic rhythm that imitates the rhythm of speech
+72567,spud stump_spud,a sharp hand shovel for digging out roots and weeds
+72568,spume,foam or froth on the sea
+72569,spun_yarn,(nautical) small stuff consisting of a lightweight rope made of several rope yarns loosely wound together
+72570,spur,tubular extension at the base of the corolla in some flowers
+72571,spur gad,a sharp prod fixed to a rider's heel and used to urge a horse onward; "cowboys know not to squat with their spurs on"
+72572,spur spine acantha,any sharply pointed projection
+72573,spur_blight,a disease of raspberries
+72574,spur_gear spur_wheel,gear wheels that mesh in the same plane
+72575,spurge,any of numerous plants of the genus Euphorbia; usually having milky often poisonous juice
+72576,spurge_laurel wood_laurel Daphne_laureola,bushy Eurasian shrub with glossy leathery oblong leaves and yellow-green flowers
+72577,spurge_nettle tread-softly devil_nettle pica-pica Cnidoscolus_urens Jatropha_urens Jatropha_stimulosus,a stinging herb of tropical America
+72578,spurious_correlation,a correlation between two variables (e.g., between the number of electric motors in the home and grades at school) that does not result from any direct relation between them (buying electric motors will not raise grades) but from their relation to other variables
+72579,spuriousness,state of lacking genuineness
+72580,spurner,a person who rejects (someone or something) with contempt; "she was known as a spurner of all suitors"; "he was no spurner of rules"
+72581,spurred_gentian,any of various plants of the genus Halenia having flowers with spurred lobes
+72582,sputnik,a Russian artificial satellite; "Sputnik was the first man-made satellite to orbit the earth"
+72583,sputter splutter,an utterance (of words) with spitting sounds (as in rage)
+72584,spy,a secret watcher; someone who secretly watches other people; "my spies tell me that you had a good time last night"
+72585,spy undercover_agent,(military) a secret agent hired by a state to obtain information about its enemies or by a business to obtain industrial secrets from competitors
+72586,spy_satellite,a satellite with sensors to detect nuclear explosions
+72587,spying,keeping a secret or furtive watch
+72588,spying undercover_work,the act of keeping a secret watch for intelligence purposes
+72589,spymaster,someone who directs clandestine intelligence activities
+72590,spyware,computer software that obtains information from a user's computer without the user's knowledge or consent
+72591,squab,a soft padded sofa
+72592,squab,an unfledged pigeon
+72593,squab dove,flesh of a pigeon suitable for roasting or braising; flesh of a dove (young squab) may be broiled
+72594,squabbler,someone who quarrels about a small matter
+72595,squad,a smallest army unit
+72596,squad_room,a room in a police station where members of the force assemble for roll call and duty assignments
+72597,squad_room,a room in a barracks where soldiers are billeted
+72598,squadron,a naval unit that is detached from the fleet for a particular task
+72599,squadron,a cavalry unit consisting of two or more troops and headquarters and supporting arms
+72600,squadron,an air force unit larger than a flight and smaller than a group
+72601,squall,sudden violent winds; often accompanied by precipitation
+72602,squall_line,a cold front along which squalls or thunderstorms are likely
+72603,squama,a protective structure resembling a scale
+72604,squamous_cell,an epithelial cell that is flat like a plate and form a single layer of epithelial tissue
+72605,squamule,a minute scale
+72606,squandering,spending resources lavishly and wastefully; "more wasteful than the squandering of time"
+72607,squandermania,prodigious squandering (usually by a government)
+72608,square,something approximating the shape of a square
+72609,square,any artifact having a shape similar to a plane geometric figure with four equal sides and four right angles; "a checkerboard has 64 squares"
+72610,square,a hand tool consisting of two straight arms at right angles; used to construct or test right angles; "the carpenter who built this room must have lost his square"
+72611,square foursquare,(geometry) a plane rectangle with four equal sides and four right angles; a four-sided regular polygon; "you can compute the area of a square if you know the length of its sides"
+72612,square lame,someone who doesn't understand what is going on
+72613,square second_power,the product of two equal terms; "nine is the second power of three"; "gravity is inversely proportional to the square of the distance"
+72614,square square_toes,a formal and conservative person with old-fashioned views
+72615,square-bashing,drill on a barracks square
+72616,square-dance_music,music performed for square dancing
+72617,square-rigger,a square-rigged sailing ship
+72618,square_dance square_dancing,American country dancing in which couples form squares
+72619,square_dancer,someone who does square dancing
+72620,square_foot sq_ft,a unit of area equal to one foot by one foot square
+72621,square_inch sq_in,a unit of area equal to one inch by one inch square
+72622,square_knot,a double knot made of two half hitches and used to join the ends of two cords
+72623,square_matrix,a matrix with the same number of rows and columns
+72624,square_meal,a substantial and nourishing meal; "he seldom got three square meals a day"
+72625,square_meter square_metre centare,a centare is 1/100th of an are
+72626,square_mile,an area of 640 acres
+72627,square_nut,nut with a square shape
+72628,square_one,the situation in which you begin an endeavor and to which you return if your efforts fail; "the police are now back at square one after having arrested and released 27 men"; "she has tried to diet but always ends up back at square one"
+72629,square_root,a number that when multiplied by itself equals a given number
+72630,square_sail,a four-sided sail set beneath a horizontal yard suspended at the middle from a mast
+72631,square_shooter straight_shooter straight_arrow,a frank and honest person
+72632,square_yard sq_yd,a unit of area equal to one yard by one yard square
+72633,squareness,the property of being shaped like a square
+72634,squaretail,sluggish square-tailed fish armored with tough bony scales; of deep warm waters
+72635,squash,edible fruit of a squash plant; eaten as a vegetable
+72636,squash squash_racquets squash_rackets,a game played in an enclosed court by two or four players who strike the ball with long-handled rackets
+72637,squash squash_vine,any of numerous annual trailing plants of the genus Cucurbita grown for their fleshy edible fruits
+72638,squash_ball,rubber ball used in playing squash
+72639,squash_bug Anasa_tristis,large black American bug that sucks sap of vines of the gourd family
+72640,squash_court,the indoor court in which squash is played
+72641,squash_pie,similar to pumpkin pie but made with winter squash instead of pumpkin
+72642,squash_racket squash_racquet bat,a small racket with a long handle used for playing squash
+72643,squat squatting,the act of assuming or maintaining a crouching position with the knees bent and the buttocks near the heels
+72644,squatness stubbiness,the property of being short and broad
+72645,squatter,someone who settles on land without right or title
+72646,squatter homesteader nester,someone who settles lawfully on government land with the intent to acquire title to it
+72647,squaw,derogatory terms for an American Indian woman
+72648,squaw_grass bear_grass Xerophyllum_tenax,plant of western North America having woody rhizomes and tufts of stiff grasslike basal leaves and spikes of creamy white flowers
+72649,squaw_man,derogatory term for a white man married to a North American Indian woman
+72650,squawbush squaw-bush skunkbush Rhus_trilobata,deciduous shrub of California with unpleasantly scented usually trifoliate leaves and edible fruit
+72651,squawk,the noise of squawking; "she awoke to the squawk of chickens"; "the squawk of car horns"
+72652,squawk_box squawker intercom_speaker,the loudspeaker on an intercom or public address system
+72653,squeak,a short high-pitched noise; "the squeak of shoes on powdery snow"
+72654,squeaker,any artifact that makes a squeaking sound when used; "those sneakers are squeakers"; "which hinge is the squeaker?"
+72655,squeal,a high-pitched howl
+72656,squeamishness,the trait of being excessively fastidious and easily shocked; "the program was withdrawn because of the squeamishness of some viewers"; "he refused to allow squeamishness to deter him from his duty"
+72657,squeegee,T-shaped cleaning implement with a rubber edge across the top; drawn across a surface to remove water (as in washing windows)
+72658,squeeze,a situation in which increased costs cannot be passed on to the customer; "increased expenses put a squeeze on profits"
+72659,squeeze,(slang) a person's girlfriend or boyfriend; "she was his main squeeze"
+72660,squeeze,the act of forcing yourself (or being forced) into or through a restricted space; "getting through that small opening was a tight squeeze"
+72661,squeeze squeezing,the act of gripping and pressing firmly; "he gave her cheek a playful squeeze"
+72662,squeeze wring,a twisting squeeze; "gave the wet cloth a wring"
+72663,squeeze_play,a baseball play in which a runner on third base tries to score as the batter bunts the pitch
+72664,squeezer,a kitchen utensil for squeezing juice from fruit
+72665,squelch_circuit squelch squelcher,an electric circuit that cuts off a receiver when the signal becomes weaker than the noise
+72666,squib,firework consisting of a tube filled with powder (as a broken firecracker) that burns with a fizzing noise
+72667,squid,widely distributed fast-moving ten-armed cephalopod mollusk having a long tapered body with triangular tail fins
+72668,squid calamari calamary,(Italian cuisine) squid prepared as food
+72669,squiggle,an illegible scrawl; "his signature was just a squiggle but only he could make that squiggle"
+72670,squiggle curlicue,a short twisting line
+72671,squill,bulb of the sea squill, which is sliced, dried, and used as an expectorant
+72672,squilla mantis_prawn,a kind of mantis shrimp
+72673,squinch,a small arch built across the interior angle of two walls (usually to support a spire)
+72674,squint,the act of squinting; looking with the eyes partly closed
+72675,squinter squint-eye,a person with strabismus
+72676,squire,young nobleman attendant on a knight
+72677,squire,an English country landowner
+72678,squire gallant,a man who attends or escorts a woman
+72679,squirrel,the fur of a squirrel
+72680,squirrel,a kind of arboreal rodent having a long bushy tail
+72681,squirrel's-foot_fern ball_fern Davalia_bullata Davalia_bullata_mariesii Davallia_Mariesii,feathery fern of tropical Asia and Malaysia
+72682,squirrel_cage,cage with a cylindrical framework that rotates as a small animal runs inside it
+72683,squirrel_corn Dicentra_canadensis,American plant with cream-colored flowers and tuberous roots resembling kernels of corn
+72684,squirrel_monkey Saimiri_sciureus,small long-tailed monkey of Central American and South America with greenish fur and black muzzle
+72685,squirrelfish,very small, brightly colored (especially red) nocturnal fishes of shallow waters or tropical reefs; they make sounds like a squirrel's bark
+72686,squirreltail_barley foxtail_barley squirreltail_grass Hordeum_jubatum,barley grown for its highly ornamental flower heads with delicate long silky awns; North America and northeastern Asia
+72687,squirting_cucumber exploding_cucumber touch-me-not Ecballium_elaterium,Mediterranean vine having oblong fruit that when ripe expels its seeds and juice violently when touched
+72688,squish,the noise of soft mud being walked on
+72689,stab thrust knife_thrust,a strong blow with a knife or other sharp pointed instrument; "one strong stab to the heart killed him"
+72690,stabber,someone who stabs another person
+72691,stabile,a sculpture having fixed units (usually constructed of sheet metal) and attached to a fixed support
+72692,stability,a stable order (especially of society)
+72693,stability stableness,the quality or attribute of being firm and steadfast
+72694,stabilization stabilisation,the act of making something (as a vessel or aircraft) less likely to overturn
+72695,stabilization stabilisation,the act of stabilizing something or making it more stable; "he worked for price stabilization for farm products"; "wage stabilization is necessary for industrial peace"; "stabilization means that the product can be handled under atmospheric conditions"
+72696,stabilizer,a chemical that is added to a solution or mixture or suspension to maintain it in a stable or unchanging state
+72697,stabilizer,airfoil consisting of a device for stabilizing an aircraft
+72698,stabilizer stabiliser,a device for making something stable
+72699,stabilizer_bar anti-sway_bar,a rigid metal bar between the front suspensions and between the rear suspensions of cars and trucks; serves to stabilize the chassis
+72700,stable stalls horse_barn,a farm building for housing horses or other livestock
+72701,stable_gear saddlery tack,gear for a horse
+72702,stableman stableboy groom hostler ostler,someone employed in a stable to take care of the horses
+72703,stablemate stable_companion,a horse stabled with another or one of several horses owned by the same person
+72704,stabling,accommodation for animals (especially for horses)
+72705,stachyose,a tetrasaccharide found in the tubers of the Chinese artichoke
+72706,stack,an orderly pile
+72707,stacked_heel,a heel made of many layers of leather
+72708,stacker,a laborer who builds up a stack or pile
+72709,stacks,storage space in a library consisting of an extensive arrangement of bookshelves where most of the books are stored
+72710,stacte,(Old Testament) one of several sweet-smelling spices used in incense
+72711,staddle,a base or platform on which hay or corn is stacked
+72712,stadium bowl arena sports_stadium,a large structure for open-air sports or entertainments
+72713,staff,building material consisting of plaster and hair; used to cover external surfaces of temporary structure (as at an exposition) or for decoration
+72714,staff,personnel who assist their superior in carrying out an assigned task; "the hospital has an excellent nursing staff"; "the general relied on his staff to make routine decisions"
+72715,staff,a rod carried as a symbol
+72716,staff,a strong rod or stick with a specialized utilitarian purpose; "he walked with the help of a wooden staff"
+72717,staff faculty,the body of teachers and administrators at a school; "the dean addressed the letter to the entire staff of the university"
+72718,staff stave,(music) the system of five horizontal lines on which the musical notes are written
+72719,staff_line,any of the 5 horizontal marks comprising a staff
+72720,staff_member staffer,an employee who is a member of a staff of workers (especially a member of the staff that works for the President of the United States)
+72721,staff_officer,a commissioned officer assigned to a military commander's staff
+72722,staff_sergeant,a noncommissioned officer ranking above corporal and below sergeant first class in the Army or Marines or above airman 1st class in the Air Force
+72723,staff_tree,any small tree or twining shrub of the genus Celastrus
+72724,stag,adult male deer
+72725,stag_beetle,a kind of lamellicorn beetle; the male has branched mandibles resembling antlers
+72726,stag_party smoker,a party for men only (or one considered suitable for men only)
+72727,stage,any scene regarded as a setting for exhibiting or doing something; "All the world's a stage"--Shakespeare; "it set the stage for peaceful negotiations"
+72728,stage,the theater as a profession (usually `the stage'); "an early movie simply showed a long kiss by two actors of the contemporary stage"
+72729,stage,a large platform on which people can stand and can be seen by an audience; "he clambered up onto the stage and got the actors to help him into the box"
+72730,stage leg,a section or portion of a journey or course; "then we embarked on the second stage of our Caribbean cruise"
+72731,stage microscope_stage,a small platform on a microscope where the specimen is mounted for examination
+72732,stage_crew,crew of workers who move scenery or handle properties in a theatrical production
+72733,stage_dancing choreography,a show involving artistic dancing
+72734,stage_direction,an instruction written as part of the script of a play
+72735,stage_director,someone who supervises the actors and directs the action in the production of a stage show
+72736,stage_door,an entrance to the backstage area of theater; used by performers and other theater personnel
+72737,stage_effect,a special effect created on the stage
+72738,stage_fright,fear that affects a person about to face an audience
+72739,stage_left left_stage,the part of the stage on the actor's left as the actor faces the audience
+72740,stage_manager stager,someone who supervises the physical aspects in the production of a show and who is in charge of the stage when the show is being performed
+72741,stage_name,the pseudonym of an actor
+72742,stage_right right_stage,the part of the stage on the actor's right as the actor faces the audience
+72743,stage_set set,representation consisting of the scenery and other properties used to identify the location of a dramatic production; "the sets were meticulously authentic"
+72744,stage_whisper,a loud whisper that can be overheard; on the stage it is heard by the audience but it supposed to be inaudible to the rest of the cast
+72745,stagecoach stage,a large coach-and-four formerly used to carry passengers and mail on regular routes between towns; "we went out of town together by stage about ten or twelve miles"
+72746,stagecraft,skill in writing or staging plays
+72747,stagehand stage_technician,an employee of a theater who performs work involved in putting on a theatrical production
+72748,stagflation,a period of slow economic growth and high unemployment (stagnation) while prices rise (inflation)
+72749,staggerbush stagger_bush Lyonia_mariana,deciduous shrub of coastal plain of the eastern United States having nodding pinkish-white flowers; poisonous to stock
+72750,staggered_board_of_directors,a board of directors a portion of whose members are elected each year instead of all members being elected annually
+72751,staggerer totterer reeler,someone who walks unsteadily as if about to fall
+72752,staggers blind_staggers,a disease of the central nervous system affecting especially horses and cattle; characterized by an unsteady swaying gait and frequent falling
+72753,staghorn_coral stag's-horn_coral,large branching coral resembling antlers
+72754,staghorn_fern,any of various tropical ferns of the genus Platycerium having large flat lobed fronds often resembling the antlers of a stag
+72755,staghorn_sumac velvet_sumac Virginian_sumac vinegar_tree Rhus_typhina,deciduous shrubby tree or eastern North America with compound leaves that turn brilliant red in fall and dense panicles of greenish yellow flowers followed by crimson acidic berries
+72756,staghound,a large heavy hound formerly used in hunting stags and other large game; similar to but larger than a foxhound
+72757,staginess theatricality,an artificial and mannered quality
+72758,staging,travel by stagecoach
+72759,staging,getting rid of a stage of a multistage rocket
+72760,staging_area,an area where troops and equipment in transit are assembled before a military operation
+72761,stagnation stagnancy,inactivity of liquids; being stagnant; standing still; without current or circulation
+72762,stagnation stagnancy doldrums,a state of inactivity (in business or art etc); "economic growth of less than 1% per year is considered to be economic stagnation"
+72763,stain,(microscopy) a dye or other coloring material that is used in microscopy to make structures visible
+72764,stain discoloration discolouration,a soiled or discolored appearance; "the wine left a dark stain"
+72765,stainability,(cytology) the capacity of cells or cell parts to stain specifically with certain dyes
+72766,stained-glass_window,a window made of stained glass
+72767,stained_glass,glass that has been colored in some way; used for church windows
+72768,stainer,a worker who stains (wood or fabric)
+72769,staining,(histology) the use of a dye to color specimens for microscopic study
+72770,staining spotting maculation,the act of spotting or staining something
+72771,stainless_steel stainless chromium_steel,steel containing chromium that makes it resistant to corrosion
+72772,stair-carpet,a strip of carpet for laying on stairs
+72773,stair-rod,a rod that holds a stair-carpet in the angle between two steps
+72774,stairhead,platform at the top of a staircase
+72775,stairs steps,a flight of stairs or a flight of steps
+72776,stairway staircase,a way of access (upward and downward) consisting of a set of steps
+72777,stairwell,a vertical well around which there is a stairway
+72778,stake,instrument of execution consisting of a vertical post that a victim is tied to for burning
+72779,stake,a strong wooden or metal post with a point at one end so it can be driven into the ground
+72780,stake stakes bet wager,the money risked on a gamble
+72781,stake_race,a horse race in which part of the prize is put up by the owners of the horses in the race
+72782,stakeholder,someone entrusted to hold the stakes for two or more persons betting against one another; must deliver the stakes to the winner
+72783,stakeout,surveillance of some place or some person by the police (as in anticipation of a crime)
+72784,stalactite,a cylinder of calcium carbonate hanging from the roof of a limestone cave
+72785,stalagmite,a cylinder of calcium carbonate projecting upward from the floor of a limestone cave
+72786,stalemate,drawing position in chess: any of a player's possible moves would place his king in check
+72787,staleness,having lost purity and freshness as a consequence of aging
+72788,stalk angry_walk,a stiff or threatening gait
+72789,stalk stalking,the act of following prey stealthily
+72790,stalk stalking still_hunt,a hunt for game carried on by following it stealthily or waiting in ambush
+72791,stalk stem,a slender or elongated structure that supports a plant or fungus or a plant part or plant organ
+72792,stalked_puffball,mushroom of the genus Tulostoma that resembles a puffball
+72793,stalked_puffball,a variety of Podaxaceae
+72794,stalker,someone who walks with long stiff strides
+72795,stalker,someone who stalks game
+72796,stalking-horse,a candidate put forward to divide the Opposition or to mask the true candidate
+72797,stalking-horse,screen consisting of a figure of a horse behind which a hunter hides while stalking game
+72798,stalking-horse,a horse behind which a hunter hides while stalking game
+72799,stall,a malfunction in the flight of an aircraft in which there is a sudden loss of lift that results in a downward plunge; "the plane went into a stall and I couldn't control it"
+72800,stall,seating in the forward part of the main level of a theater
+72801,stall,a compartment in a stable where a single animal is confined and fed
+72802,stall stalling,a tactic used to mislead or delay
+72803,stall stand sales_booth,a booth where articles are displayed for sale
+72804,stall_bar,a gymnastic apparatus used for strengthening exercises; uprights fastened to a wall and connected by horizontal rungs
+72805,stallion entire,uncastrated adult male horse
+72806,stamen,the male reproductive organ of a flower
+72807,stamina staying_power toughness,enduring strength and energy
+72808,stammel,a coarse woolen cloth formerly used for undergarments and usually dyed bright red
+72809,stammer stutter,a speech disorder involving hesitations and involuntary repetitions of certain sounds
+72810,stammerer stutterer,someone who speaks with involuntary pauses and repetitions
+72811,stamp,a type or class; "more men of his stamp are needed"
+72812,stamp,a block or die used to imprint a mark or design
+72813,stamp impression,a symbol that is the result of printing or engraving; "he put his stamp on the envelope"
+72814,stamp pestle,machine consisting of a heavy bar that moves vertically for pounding or crushing ores
+72815,stamp_album,an album for stamps
+72816,stamp_collection,a collection of stamps
+72817,stamp_dealer,a dealer in stamps (whose customers are stamp collectors)
+72818,stamp_mill stamping_mill,a mill in which ore is crushed with stamps
+72819,stamp_tax stamp_duty,a tax collected by requiring a stamp to be purchased and attached (usually on documents or publications)
+72820,stampede,a wild headlong rush of frightened animals (horses or cattle)
+72821,stampede,a headlong rush of people on a common impulse; "when he shouted `fire' there was a stampede to the exits"
+72822,stamper,a workman whose job is to form or cut out by applying a mold or die (either by hand or by operating a stamping machine)
+72823,stamper stomper tramper trampler,someone who walks with a heavy noisy gait or who stamps on the ground
+72824,stamping_machine stamper,a power tool that stamps; "a metal stamper"
+72825,stance,standing posture
+72826,stanchion,any vertical post or rod used as a support
+72827,stand,the position where a thing or person stands
+72828,stand,a growth of similar plants (usually trees) in a particular area; "they cut down a stand of trees"
+72829,stand,a small table for holding articles of various kinds; "a bedside stand"
+72830,stand,tiered seats consisting of a structure (often made of wood) where people can sit to watch an event (game or parade)
+72831,stand,a stop made by a touring musical or theatrical group to give a performance; "a one-night stand"
+72832,stand,a defensive effort; "the army made a final stand at the Rhone"
+72833,stand standstill tie-up,an interruption of normal activity
+72834,stand-in substitute relief reliever backup backup_man fill-in,someone who takes the place of another (as when things get dangerous or difficult); "the star had a stand-in for dangerous scenes"; "we need extra employees for summer fill-ins"
+72835,stand_oil,a thick oil comprised of linseed, tung, or soya oils which have been heated to over 300 C
+72836,standard,a board measure = 1980 board feet
+72837,standard,an upright pole or beam (especially one used as a support); "distance was marked by standards every mile"; "lamps supported on standards provided illumination"
+72838,standard banner,any distinctive flag
+72839,standard criterion measure touchstone,a basis for comparison; a reference point against which other things can be evaluated; "the schools comply with federal standards"; "they set the measure for all subsequent work"
+72840,standard monetary_standard,the value behind the money in a monetary system
+72841,standard-bearer,an outstanding leader of a political movement
+72842,standard_atmosphere atmosphere atm standard_pressure,a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade
+72843,standard_cell,a primary cell used as a standard of electromotive force
+72844,standard_deviation,the square root of the variance
+72845,standard_gauge,railroad track having the standard width of 56.5 inches
+72846,standard_generalized_markup_language SGML,(computer science) a standardized language for the descriptive markup of documents; a set of rules for using whatever markup vocabulary is adopted
+72847,standard_of_living living_standards standard_of_life,a level of material comfort in terms of goods and services available to someone or some group; "they enjoyed the highest standard of living in the country"; "the lower the standard of living the easier it is to introduce an autocratic production system"
+72848,standard_poodle,a breed or medium-sized poodles
+72849,standard_schnauzer,a medium-sized schnauzer
+72850,standard_temperature,exactly zero degrees centigrade
+72851,standard_transmission stick_shift,a transmission that is operated manually with a gear lever and a clutch pedal
+72852,standardization standardisation,the condition in which a standard has been successfully established; "standardization of nuts and bolts had saved industry millions of dollars"
+72853,standardization standardisation normalization normalisation,the imposition of standards or regulations; "a committee was appointed to recommend terminological standardization"
+72854,standardizer standardiser,a person who sets a standard for things to conform to
+72855,standby,something that can be relied on when needed
+72856,standdown stand-down,a suspension and relaxation from an alert state or a state of readiness
+72857,standdown stand-down,(military) a temporary stop of offensive military action
+72858,standee,someone who stands in a place where one might otherwise sit (as a spectator who uses standing room in a theater or a passenger on a crowded bus or train); "the allowed number of standees is posted"
+72859,standee,a lifesize cardboard cutout (usually of a celebrity); "he had his picture taken with a standee of the president"
+72860,stander,an organism (person or animal) that stands; "a crowd of sitters and standers"
+72861,standing,social or financial or professional status or reputation; "of equal standing"; "a member in good standing"
+72862,standing,an ordered listing of scores or results showing the relative positions of competitors (individuals or teams) in a sporting event
+72863,standing,the act of assuming or maintaining an erect upright position
+72864,standing_army,a permanent army of paid soldiers
+72865,standing_committee,a permanent committee
+72866,standing_operating_procedure standard_operating_procedure SOP standard_procedure,a prescribed procedure to be followed routinely; "rote memorization has been the educator's standard operating procedure for centuries"
+72867,standing_order,a rule of order permanently in force
+72868,standing_press,a large printing press that exerts pressure vertically
+72869,standing_room,room for passengers or spectators to stand; "there was standing room for thousands more people"
+72870,standing_wave stationary_wave,a wave (as a sound wave in a chamber or an electromagnetic wave in a transmission line) in which the ratio of its instantaneous amplitude at one point to that at any other point does not vary with time
+72871,standpipe,a vertical pipe
+72872,stanhope,a light open horse-drawn carriage with two or four wheels and one seat
+72873,stanhopea,any of various orchids of the genus Stanhopea having a single large leaf and loose racemes of large fragrant flowers of various colors; Mexico to Brazil
+72874,stannic_chloride,a colorless caustic liquid made by treating tin with chlorine
+72875,stannite tin_pyrites,a dark grey mineral with a metallic luster that is a source of tin
+72876,stannous_fluoride,a white powder that is used to fluoridate toothpaste
+72877,stanza,a fixed number of lines of verse forming a unit of a poem
+72878,stapedectomy,surgical removal of the stapes of the middle ear
+72879,stapelia carrion_flower starfish_flower,any of various plants of the genus Stapelia having succulent leafless toothed stems resembling cacti and large foul-smelling (often star-shaped) flowers
+72880,stapes stirrup,the stirrup-shaped ossicle that transmits sound from the incus to the cochlea
+72881,staphylococcal_enterotoxin,a soluble exotoxin produced by some strains of staphylococcus; a cause of food poisoning
+72882,staphylococcal_enterotoxin_B SEB,a form of staphylococcal enterotoxin that has been used as an incapacitating agent in biological warfare
+72883,staphylococcal_infection,an infection with staphylococcus bacteria; usually marked by abscess formation
+72884,staphylococcus staphylococci staph,spherical Gram-positive parasitic bacteria that tend to form irregular colonies; some cause boils or septicemia or infections
+72885,staple,a short U-shaped wire nail for securing cables
+72886,staple,paper fastener consisting of a short length of U-shaped wire that can fasten papers together
+72887,staple staple_fiber staple_fibre,a natural fiber (raw cotton, wool, hemp, flax) that can be twisted to form yarn; "staple fibers vary widely in length"
+72888,staple_gun staplegun tacker,a hand-held machine for driving staples home
+72889,stapler stapling_machine,a machine that inserts staples into sheets of paper in order to fasten them together
+72890,star,a plane figure with 5 or more points; often used as an emblem
+72891,star,any celestial body visible (as a point of light) from the Earth at night
+72892,star,(astronomy) a celestial body of hot gases that radiates energy derived from thermonuclear reactions in the interior
+72893,star principal lead,an actor who plays a principal role
+72894,star-duckweed Lemna_trisulca,cosmopolitan in temperate regions except North America
+72895,star-of-Bethlehem,any of several perennial plants of the genus Ornithogalum native to the Mediterranean and having star-shaped flowers
+72896,star-thistle caltrop Centauria_calcitrapa,Mediterranean annual or biennial herb having pinkish to purple flowers surrounded by spine-tipped scales; naturalized in America
+72897,star_anise Chinese_anise Illicium_verum,small tree of China and Vietnam bearing anise-scented star-shaped fruit used in food and medicinally as a carminative
+72898,star_anise Illicium_anisatum,small shrubby tree of Japan and Taiwan; flowers are not fragrant
+72899,star_apple caimito Chrysophyllum_cainito,evergreen tree of West Indies and Central America having edible purple fruit star-shaped in cross section and dark green leaves with golden silky undersides
+72900,star_begonia star-leaf_begonia Begonia_heracleifolia,rhizomatous begonia having leaves with pointed lobes suggestive of stars and pink flowers
+72901,star_chart,a chart showing the relative positions of the stars in a particular part of the sky
+72902,star_drill,a steel rock drill with a star-shaped point that is used for making holes in stones or masonry; it is operated by hitting the end with a hammer while rotating it between blows
+72903,star_grass,any plant of the genus Hypoxis having long grasslike leaves and yellow star-shaped flowers: Africa; Australia; southern Asia; North America
+72904,star_jasmine confederate_jasmine Trachelospermum_jasminoides,evergreen Chinese woody climber with shiny dark green leaves and intensely fragrant white flowers
+72905,star_magnolia Magnolia_stellata,deciduous shrubby magnolia from Japan having fragrant white starlike flowers blooming before leaves unfold; grown as an ornamental in United States
+72906,star_sapphire,a sapphire that when cut shows a starlike figure in reflected light because of its crystalline structure
+72907,star_saxifrage starry_saxifrage Saxifraga_stellaris,small often mat-forming alpine plant having small starlike white flowers; Europe
+72908,star_shell,an artillery shell containing an illuminant
+72909,star_topology star,the topology of a network whose components are connected to a hub
+72910,star_tulip elegant_cat's_ears Calochortus_elegans,small plant with slender bent stems bearing branched clusters of a few white star-shaped flowers with petals shaped like cat's ears; southeastern Washington and northeastern Oregon to Montana
+72911,starboard,the right side of a ship or aircraft to someone who is aboard and facing the bow or nose
+72912,starch,a commercial preparation of starch that is used to stiffen textile fabrics in laundering
+72913,starch amylum,a complex carbohydrate found chiefly in seeds, fruits, tubers, roots and stem pith of plants, notably in corn, potatoes, wheat, and rice; an important foodstuff and used otherwise especially in adhesives and as fillers and stiffeners for paper and textiles
+72914,starches,foodstuff rich in natural starch (especially potatoes, rice, bread)
+72915,stardom,the status of being acknowledged as a star; "stardom meant nothing to her"
+72916,stardust,a dreamy romantic or sentimental quality
+72917,stare,a fixed look with eyes open wide
+72918,starer,a viewer who gazes fixedly (often with hostility)
+72919,starets,a religious adviser (not necessarily a priest) in the Eastern Orthodox Church
+72920,starfish sea_star,echinoderms characterized by five arms extending from a central disk
+72921,starflower sleepy_dick summer_snowflake Ornithogalum_umbellatum,common Old World herb having grasslike leaves and clusters of star-shaped white flowers with green stripes; naturalized in the eastern United States
+72922,stargazer,heavy-bodied marine bottom-lurkers with eyes on flattened top of the head
+72923,stargazing,observation of the stars
+72924,starkness absoluteness utterness,the quality of being complete or utter or extreme; "the starkness of his contrast between justice and fairness was open to many objections"
+72925,starlet,a young (film) actress who is publicized as a future star
+72926,starlet,a small star
+72927,starlight,the light of the stars
+72928,starling,gregarious birds native to the Old World
+72929,starnose_mole star-nosed_mole Condylura_cristata,amphibious mole of eastern North America having pink fleshy tentacles around the nose
+72930,starship spaceship,a spacecraft designed to carry a crew into interstellar space (especially in science fiction)
+72931,start,the beginning of anything; "it was off to a good start"
+72932,start head_start,the advantage gained by beginning early (as in a race); "with an hour's start he will be hard to catch"
+72933,start starting,a turn to be a starter (in a game at the beginning); "he got his start because one of the regular pitchers was in the hospital"; "his starting meant that the coach thought he was one of their best linemen"
+72934,start starting_line scratch scratch_line,a line indicating the location of the start of a race or a game
+72935,starter,a contestant in a team sport who is in the game at the beginning
+72936,starter,a culture containing yeast or bacteria that is used to start the process of fermentation or souring in making butter or cheese or dough; "to make sourdough you need a starter"
+72937,starter dispatcher,the official who signals the beginning of a race or competition
+72938,starter starter_motor starting_motor,an electric motor for starting an engine
+72939,starting_block,block providing bracing for a runner's feet at start of a race
+72940,starting_buffer,buffer solution at the start of a reaction
+72941,starting_gate starting_stall,a movable barrier on the starting line of a race course
+72942,starting_pitcher,(baseball) a pitcher who starts in a baseball game
+72943,starting_post,a post marking the starting point of a race (especially a horse race)
+72944,starting_signal start,a signal to begin (as in a race); "the starting signal was a green light"; "the runners awaited the start"
+72945,startle jump start,a sudden involuntary movement; "he awoke with a start"
+72946,startle_reflex Moro_reflex,a normal reflex of young infants; a sudden loud noise causes the child to stretch out the arms and flex the legs
+72947,startle_response startle_reaction,a complicated involuntary reaction to a sudden unexpected stimulus (especially a loud noise); involves flexion of most skeletal muscles and a variety of visceral reactions
+72948,startup,the act of setting in operation; "repeated shutdowns and startups are expensive"
+72949,starvation famishment,a state of extreme hunger resulting from lack of essential nutrients over a prolonged period
+72950,starvation starving,the act of depriving of food or subjecting to famine; "the besiegers used starvation to induce surrender"; "they were charged with the starvation of children in their care"
+72951,starvation_acidosis,acidosis in which the acidity results from lack of food which leads to fat catabolism which in turn releases acidic ketone bodies
+72952,starved_aster calico_aster,a variety of aster
+72953,starveling,someone who is starving (or being starved)
+72954,stash_house,a house where weapons and supplies are hidden; "attacks on stash houses is the most frequently used method of counterterrorism"
+72955,stasis,an abnormal state in which the normal flow of a liquid (such as blood) is slowed or stopped
+72956,stasis,inactivity resulting from a static balance between opposing forces
+72957,state,a state of depression or agitation; "he was in such a state you just couldn't reason with him"
+72958,state,the group of people comprising the government of a sovereign state; "the state has lowered its income tax"
+72959,state,the way something is with respect to its main attributes; "the current state of knowledge"; "his state of health"; "in a weak financial state"
+72960,state nation country land commonwealth res_publica body_politic,a politically organized body of people under a single government; "the state has elected a new president"; "African nations"; "students who had come to the nation's capitol"; "the country's largest manufacturer"; "an industrialized land"
+72961,state province,the territory occupied by one of the constituent administrative districts of a nation; "his state is in the deep south"
+72962,state's_attorney state_attorney,a prosecuting attorney for a state
+72963,state's_evidence,evidence for the prosecution in criminal proceedings
+72964,state-sponsored_terrorism,terrorism practiced by a government against its own people or in support of international terrorism
+72965,state_bank,a bank chartered by a state rather than by the federal government
+72966,state_capital,the capital city of a political subdivision of a country
+72967,state_capitalism,an economic system that is primarily capitalistic but there is some degree of government ownership of the means of production
+72968,state_government,the government of a state in the United States
+72969,state_line state_boundary,the boundary between two states
+72970,state_of_matter state,(chemistry) the three traditional states of matter are solids (fixed shape and volume) and liquids (fixed volume and shaped by the container) and gases (filling the container); "the solid state of water is called ice"
+72971,state_of_mind frame_of_mind,a temporary psychological state
+72972,state_of_the_art,the highest degree of development of an art or technique at a particular time; "the state of the art in space travel"
+72973,state_prison,a prison maintained by a state of the U.S.
+72974,state_senator,a member of a state senate
+72975,state_socialism,an economic system in which the government owns most means of production but some degree of private capitalism is allowed
+72976,state_tax_lien,a lien on the property of a taxpayer that the tax collector can use upon default of payment of taxes
+72977,state_treasurer,the treasurer for a state government
+72978,stateliness,an elaborate manner of doing something; "she served coffee with great stateliness"
+72979,stateliness majesty loftiness,impressiveness in scale or proportion
+72980,stately_home,a mansion that is (or formerly was) occupied by an aristocratic family
+72981,statement,(music) the presentation of a musical theme; "the initial statement of the sonata"
+72982,statement,a nonverbal message; "a Cadillac makes a statement about who you are"; "his tantrums are a statement of his need for attention"
+72983,statement,a message that is stated or declared; a communication (oral or written) setting forth particulars or facts etc; "according to his statement he was in London on that day"
+72984,statement financial_statement,a document showing credits and debits
+72985,stater,any of the various silver or gold coins of ancient Greece
+72986,stater,a resident of a particular state or group of states; "Keystone stater"; "farm staters"
+72987,stateroom,a guest cabin
+72988,states'_rights,a doctrine that federal powers should be curtailed and returned to the individual states
+72989,states'_rights,the rights conceded to the states by the United States constitution
+72990,statesman solon national_leader,a man who is a respected leader in national or international affairs
+72991,statesmanship statecraft diplomacy,wisdom in the management of public affairs
+72992,stateswoman,a woman statesman
+72993,static,angry criticism; "they will probably give you a lot of static about your editorial"
+72994,static atmospherics atmospheric_static,a crackling or hissing noise caused by electrical interference
+72995,static_electricity,electricity produced by friction
+72996,static_line,a cord used instead of a ripcord to open a parachute; the cord is attached at one end to the aircraft and temporarily attached to the pack of a parachute at the other; it opens the parachute after the jumper is clear of the plane
+72997,static_tube,a measuring instrument used to measure static pressure in a stream of fluid
+72998,statics,the branch of mechanics concerned with forces in equilibrium
+72999,station,(nautical) the location to which a ship or fleet is assigned for duty
+73000,station,the frequency assigned to a broadcasting station
+73001,station,a facility equipped with special equipment and personnel for a particular purpose; "he started looking for a gas station"; "the train pulled into the station"
+73002,stationariness immobility fixedness,remaining in place
+73003,stationary_stochastic_process,a stochastic process in which the distribution of the random variables is the same for any value of the variable parameter
+73004,stationer stationery_seller,a merchant who sells writing materials and office supplies
+73005,stationery letter_paper,paper cut to an appropriate size for writing letters; usually with matching envelopes
+73006,stationmaster station_agent,the person in charge of a railway station
+73007,statistic,a datum that can be represented numerically
+73008,statistical_mechanics,the branch of physics that makes theoretical predictions about the behavior of macroscopic systems on the basis of statistical laws governing its component particles
+73009,statistical_method statistical_procedure,a method of analyzing or representing statistical data; a procedure for calculating a statistic
+73010,statistician actuary,someone versed in the collection and interpretation of numerical data (especially someone who uses statistics to calculate insurance premiums)
+73011,statistician mathematical_statistician,a mathematician who specializes in statistics
+73012,statistics,a branch of applied mathematics concerned with the collection and interpretation of quantitative data and the use of probability theory to estimate population parameters
+73013,stator stator_coil,mechanical device consisting of the stationary part of a motor or generator in or around which the rotor revolves
+73014,statuary,statues collectively
+73015,statue,a sculpture representing a human or animal
+73016,stature,high level of respect gained by impressive development or achievement; "a man of great stature"
+73017,stature height,(of a standing person) the distance from head to foot
+73018,status position,the relative position or standing of things or especially persons in a society; "he had the status of a minor"; "the novel attained the status of a classic"; "atheists do not enjoy a favorable position in American life"
+73019,status_asthmaticus,a prolonged and severe asthma attack that does not respond to standard treatment
+73020,status_epilepticus,a condition in which there are continuing attacks of epilepsy without intervals of consciousness; can lead to brain damage and death
+73021,status_quo,the existing state of affairs
+73022,statute_book,a record of the whole body of legislation in a given jurisdiction
+73023,statute_of_limitations,a statute prescribing the time period during which legal action can be taken
+73024,statutory_law,the body of laws created by legislative statutes
+73025,statutory_offense statutory_offence regulatory_offense regulatory_offence,crimes created by statutes and not by common law
+73026,statutory_rape carnal_abuse,sexual intercourse with a person (girl or boy) who has not reached the age of consent (even if both parties participate willingly)
+73027,staurikosaur staurikosaurus,primitive dinosaur found in Brazil
+73028,stave lag,one of several thin slats of wood forming the sides of a barrel or bucket
+73029,stay,a judicial order forbidding some action until an event occurs or the order is lifted; "the Supreme Court has the power to stay an injunction pending an appeal to the whole Court"
+73030,stay,a thin strip of metal or bone that is used to stiffen a garment (e.g. a corset)
+73031,stay,(nautical) brace consisting of a heavy rope or wire cable used as a support for a mast or spar
+73032,stay,continuing or remaining in a place or state; "they had a nice stay in Paris"; "a lengthy hospital stay"; "a four-month stay in bankruptcy court"
+73033,stay-at-home homebody,a person who seldom goes anywhere; one not given to wandering or travel
+73034,stay_of_execution,an order whereby a judgment is precluded from being executed for a specific period of time
+73035,stayer,a person or other animal having powers of endurance or perseverance; "the horse that won the race is a good stayer"
+73036,staysail,a fore-and-aft sail set on a stay (as between two masts)
+73037,stead position place lieu,the post or function properly or customarily occupied or served by another; "can you go in my stead?"; "took his place"; "in lieu of"
+73038,steadfastness,steadfast resolution
+73039,steadfastness staunchness,loyalty in the face of trouble and difficulty
+73040,steadiness,freedom from wavering or indecision; constancy of resolve or conduct; "He trusted her clear steadiness that she would do what she said"
+73041,steadiness,the quality of being steady--regular and unvarying
+73042,steadiness firmness,the quality of being steady or securely and immovably fixed in place
+73043,steady_state_theory continuous_creation_theory,(cosmology) the theory that the universe maintains a constant average density with matter created to fill the void left by galaxies that are receding from each other; "the steady state theory has been abandoned in favor of the big bang theory"
+73044,steak,a slice of meat cut from the fleshy part of an animal or large fish
+73045,steak_and_kidney_pie,steak with sauteed kidneys and onions cooked in wine and stock then covered with pastry and baked
+73046,steak_au_poivre peppered_steak pepper_steak,steak covered with crushed peppercorns pan-broiled and served with brandy-and-butter sauce
+73047,steak_knife,a sharp table knife used in eating steak
+73048,steak_sauce,pungent bottled sauce for steak
+73049,steak_tartare tartar_steak cannibal_mound,ground beef mixed with raw egg and e.g. onions and capers and anchovies; eaten raw
+73050,steakhouse chophouse,a restaurant that specializes in steaks
+73051,steal,a stolen base; an instance in which a base runner advances safely during the delivery of a pitch (without the help of a hit or walk or passed ball or wild pitch)
+73052,stealth stealing,avoiding detection by moving carefully
+73053,stealth_aircraft,an aircraft designed in accordance with technology that makes detection by radar difficult
+73054,stealth_bomber,a bomber that is difficult to detect by radar
+73055,stealth_fighter,a fighter that is difficult to detect by radar; is built for precise targeting and uses laser-guided bombs
+73056,steam,water at boiling temperature diffused in the atmosphere
+73057,steam_bath steam_room vapor_bath vapour_bath,a room that can be filled with steam in which people bathe; `vapour bath' is a British term
+73058,steam_chest,the chamber from which steam is distributed to a cylinder
+73059,steam_coal,coal suitable for use under steam boilers
+73060,steam_engine,external-combustion engine in which heat is used to raise steam which either turns a turbine or forces a piston to move up and down in a cylinder
+73061,steam_fitting,care (installation and maintenance) of equipment for ventilating or heating or refrigerating
+73062,steam_heat steam_heating,a heating system in which steam is generated in boilers and piped to radiators
+73063,steam_iron,a pressing iron that can emit steam
+73064,steam_line steam_pipe,a pipe conducting steam
+73065,steam_locomotive,a locomotive powered by a steam engine
+73066,steam_shovel,a power shovel that is driven by steam
+73067,steam_turbine,turbine in which steam strikes blades and makes them turn
+73068,steam_whistle,a whistle in which the sound is produced by steam; usually attached to a steam boiler
+73069,steamboat,a boat propelled by a steam engine
+73070,steamed_pudding,a pudding cooked by steaming
+73071,steamer,a cooking utensil that can be used to cook food by steaming it
+73072,steamer steamship,a ship powered by one or more steam engines
+73073,steamfitter,a craftsman who installs and maintains equipment for ventilating or heating or refrigerating
+73074,steamroller road_roller,vehicle equipped with heavy wide smooth rollers for compacting roads and pavements
+73075,steamship_company steamship_line,a line responsible for the operation of a fleet of steamships
+73076,stearic_acid octadecanoic_acid,a waxy saturated fatty acid; occurs widely as a glyceride in animal and vegetable fats
+73077,stearin,an ester of glycerol and stearic acid
+73078,steatopygia,an extreme accumulation of fat on the buttocks
+73079,steatorrhea,the presence of greater than normal amounts of fat in the feces which are frothy and foul smelling and floating; a symptom of disorders of fat metabolism and malabsorption syndrome
+73080,steed,(literary) a spirited horse for state of war
+73081,steel,an alloy of iron with small amounts of carbon; widely used in construction; mechanical properties can be varied over a wide range
+73082,steel,knife sharpener consisting of a ridged steel rod
+73083,steel-wool_pad,abrader consisting of a pad of steel wool used for polishing or smoothing
+73084,steel_arch_bridge,a steel bridge constructed in the form of an arch
+73085,steel_band,a band that plays instruments made from the heads of oil drums (Caribbean Islands)
+73086,steel_blue,a greyish blue color
+73087,steel_company,a company that makes and sells steel
+73088,steel_drum,a concave percussion instrument made from the metal top of an oil drum; has an array of flattened areas that produce different tones when struck (of Caribbean origin)
+73089,steel_engraving,an impression taken from an engraved steel plate
+73090,steel_engraving,engraving on a steel plate
+73091,steel_engraving,the act of engraving on a steel plate
+73092,steel_industry,the industry that makes steel and steel products
+73093,steel_mill steelworks steel_plant steel_factory,a factory where steel is made
+73094,steel_plate,a plate of steel
+73095,steel_production,making steel from pig iron
+73096,steel_trap,an acute intelligence (an analogy based on the well-known sharpness of steel traps); "he's as sharp as a steel trap"; "a mind like a steel trap"
+73097,steel_trap,a trap made of steel with a strong spring and sharp toothlike projections to hold the prey
+73098,steel_wool wire_wool,a mass of woven steel fibers used as an abrasive
+73099,steelmaker steelworker steelman,a worker engaged in making steel
+73100,steelyard lever_scale beam_scale,a portable balance consisting of a pivoted bar with arms of unequal length
+73101,steenbok steinbok Raphicerus_campestris,small plains antelope of southeastern Africa
+73102,steep,a steep place (as on a hill)
+73103,steeper,a vessel (usually a pot or vat) used for steeping
+73104,steeple spire,a tall tower that forms the superstructure of a building (usually a church or temple) and that tapers to a point at the top
+73105,steeplechase,a footrace of usually 3000 meters over a closed track with hurdles and a water jump
+73106,steeplechase,a horse race over an obstructed course
+73107,steeplechaser,a horse trained to run in steeplechases
+73108,steeplejack,someone who builds or maintains very tall structures
+73109,steer_roping,capturing a steer with a lasso
+73110,steerage,the cheapest accommodations on a passenger ship
+73111,steerageway,(nautical) the minimum rate of motion needed for a vessel to be maneuvered
+73112,steering guidance direction,the act of setting and holding a course; "a new council was installed under the direction of the king"
+73113,steering steerage,the act of steering a ship
+73114,steering_committee,a committee to arrange the order of business for some larger (legislative) body
+73115,steering_gear,a gear that couples the steering wheel to the steering linkage of a motor vehicle
+73116,steering_linkage,mechanism consisting of a system of rods and levers connected to the front wheels of a motor vehicle; the steering gear pushes it left or right which swivels the front wheels, causing the vehicle to turn
+73117,steering_system steering_mechanism,a mechanism by which something is steered (especially a motor vehicle)
+73118,steering_wheel wheel,a handwheel that is used for steering
+73119,stegosaur stegosaurus Stegosaur_stenops,herbivorous ornithischian dinosaur with a row of bony plates along its back and a spiked tail probably used as a weapon
+73120,stele,the usually cylindrical central vascular portion of the axis of a vascular plant
+73121,stele stela,an ancient upright stone slab bearing markings
+73122,stelis,any of various small tropical American orchids of the genus Stelis having long slender racemes of numerous small to minute flowers
+73123,stellar_parallax,the heliocentric parallax of a star
+73124,stellate_venule,a star-shaped group of venules in the renal cortex
+73125,stem,the tube of a tobacco pipe
+73126,stem-cell_research,research on stem cells and their use in medicine
+73127,stem-winder,a watch that is wound by turning a knob at the stem
+73128,stem_blight,a fungous blight attacking the stems of plants
+73129,stem_cell,an undifferentiated cell whose daughter cells may differentiate into other cell types (such as blood cells)
+73130,stem_turn stem,a turn made in skiing; the back of one ski is forced outward and the other ski is brought parallel to it
+73131,stem_vowel thematic_vowel,a vowel that ends a stem and precedes an inflection
+73132,stemless_carline_thistle Carlina_acaulis,stemless perennial having large flowers with white or purple-brown florets nestled in a rosette of long spiny leaves hairy beneath; of alpine regions of southern and eastern Europe
+73133,stemless_golden_weed Stenotus_acaulis Haplopappus_acaulis,dark green erect herb of northwestern United States and southwestern Canada having stiff leaves in dense tufts and yellow flower heads; sometimes placed in genus Haplopappus
+73134,stemless_hymenoxys Tetraneuris_acaulis Hymenoxys_acaulis,perennial having tufted basal leaves and short leafless stalks each bearing a solitary yellow flower head; dry hillsides and plains of west central North America
+73135,stemma,a tree diagram showing a reconstruction of the transmission of manuscripts of a literary work
+73136,stemmatology stemmatics,the humanistic discipline that attempts to reconstruct the transmission of a text (especially a text in manuscript form) on the basis of relations between the various surviving manuscripts (sometimes using cladistic analysis); "stemmatology also plays an important role in musicology"; "transcription errors are of decisive importance in stemmatics"
+73137,stemmer,a worker who makes or applies stems for artificial flowers
+73138,stemmer,a miner's tamping bar for ramming packing in over a blasting charge
+73139,stemmer,a device for removing stems from fruit (as from grapes or apples)
+73140,stemmer stemming_algorithm,an algorithm for removing inflectional and derivational endings in order to reduce word forms to a common stem
+73141,stencil,a sheet of material (metal, plastic, cardboard, waxed paper, silk, etc.) that has been perforated with a pattern (printing or a design); ink or paint can pass through the perforations to create the printed pattern on the surface below
+73142,stenograph,a shorthand character
+73143,stenograph,a machine for typewriting shorthand characters
+73144,stenographer amanuensis shorthand_typist,someone skilled in the transcription of speech (especially dictation)
+73145,stenography,the act or art of writing in shorthand
+73146,stenopterygius Stenopterygius_quadrisicissus,an ichthyosaur of the genus Stenopterygius
+73147,stenosis stricture,abnormal narrowing of a bodily canal or passageway
+73148,stent,a slender tube inserted inside a tubular body part (as a blood vessel) to provide support during and after surgical anastomosis
+73149,stentor,a speaker with an unusually loud voice
+73150,stentor,any of several trumpet-shaped ciliate protozoans that are members of the genus Stentor
+73151,step,a solid block joined to the beams in which the heel of a ship's mast or capstan is fixed
+73152,step,the act of changing location by raising the foot and setting it down; "he walked with unsteady steps"
+73153,step stair,support consisting of a place to rest the foot while ascending or descending a stairway; "he paused on the bottom step"
+73154,step stone's_throw,a short distance; "it's only a step to the drugstore"
+73155,step-down_transformer,a transformer that reduces voltage
+73156,step-up_transformer,a transformer that increases voltage
+73157,step_dancing hoofing,dancing in which the steps are more important than gestures or postures
+73158,step_ladder stepladder,a folding portable ladder hinged at the top
+73159,step_stool,a stool that has one or two steps that fold under the seat
+73160,stepbrother half-brother half_brother,a brother who has only one parent in common with you
+73161,stepchild,a child of your spouse by a former marriage
+73162,stepdaughter,a daughter of your spouse by a former marriage
+73163,stepfather,the husband of your mother by a subsequent marriage
+73164,stephanion,the craniometric point on the coronal suture above the acoustic meatus
+73165,stephanotis,any of various evergreen climbing shrubs of the genus Stephanotis having fragrant waxy flowers
+73166,stepmother,the wife of your father by a subsequent marriage
+73167,stepparent,the spouse of your parent by a subsequent marriage
+73168,steppe,extensive plain without trees (associated with eastern Russia and Siberia)
+73169,stepper high_stepper,a horse trained to lift its feet high off the ground while walking or trotting
+73170,stepper stepping_motor,a motor (especially an electric motor) that moves or rotates in small discrete steps
+73171,stepping_stone,a stone in a marsh or shallow water that can be stepped on in crossing
+73172,stepping_stone,any means of advancement; "the job was just a stepping stone on his way to fame and riches"
+73173,steprelationship,a family relationship by virtue of remarriage
+73174,steps,the course along which a person has walked or is walking in; "I followed in his steps"; "he retraced his steps"; "his steps turned toward home"
+73175,stepson,the son your spouse by a former marriage
+73176,steradian sr,the unit of solid angle adopted under the Systeme International d'Unites
+73177,sterculia,any tree of the genus Sterculia
+73178,sterculia_gum karaya_gum,exudate of an Asian tree; used for finishing textiles and to thicken foodstuffs and cosmetics
+73179,stereo stereophony stereo_system stereophonic_system,reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound
+73180,stereo stereoscopic_picture stereoscopic_photograph,two photographs taken from slightly different angles that appear three-dimensional when viewed together
+73181,stereoscope,an optical device for viewing stereoscopic photographs
+73182,stereoscopic_vision stereoscopy,three-dimensional vision produced by the fusion of two slightly different views of a scene on each retina
+73183,stereotype,a conventional or formulaic conception or image; "regional stereotypes have been part of America since its founding"
+73184,sterility infertility,the state of being unable to produce offspring; in a woman it is an inability to conceive; in a man it is an inability to impregnate
+73185,sterilization sterilisation,the act of making an organism barren or infertile (unable to reproduce)
+73186,sterilization sterilisation,the procedure of making some object free of live bacteria or other microorganisms (usually by heat or chemical means)
+73187,sterling,British money; especially the pound sterling as the basic monetary unit of the UK
+73188,sterling_area sterling_bloc scheduled_territories,the group of countries whose currencies are tied to the British pound sterling
+73189,sterling_silver,a silver alloy with no more than 7.5% copper
+73190,stern after_part quarter poop tail,the rear part of a ship
+73191,stern_chaser,a naval gun able to fire astern at a ship in chase
+73192,sternness,the quality (as of scenery) being grim and gloomy and forbidding; "the sternness of his surroundings made him uncomfortable"
+73193,sternness strictness,uncompromising resolution
+73194,sternocleidomastoid sternocleidomastoid_muscle sternocleido_mastoideus musculus_sternocleidomastoideus,one of two thick muscles running from the sternum and clavicle to the mastoid and occipital bone; turns head obliquely to the opposite side; when acting together they flex the neck and extend the head
+73195,sternocleidomastoid_vein vena_sternocleidomastoidea,drains the sternocleidomastoid muscle; empties into the internal jugular vein
+73196,sternpost,(nautical) the principal upright timber at the stern of a vessel
+73197,sternum breastbone,the flat bone that articulates with the clavicles and the first seven pairs of ribs
+73198,sternutator sternutatory,a chemical substance that causes sneezing and coughing and crying; "police used a sternutatory to subdue the mob"
+73199,sternwheeler,a paddle steamer having the paddle wheel in the stern
+73200,steroid,any of several fat-soluble organic compounds having as a basis 17 carbon atoms in four rings; many have important physiological effects
+73201,steroid_hormone steroid sex_hormone,any hormone affecting the development and growth of sex organs
+73202,sterol steroid_alcohol,any of a group of natural steroid alcohols derived from plants or animals; they are waxy insoluble substances
+73203,stethoscope,a medical instrument for listening to the sounds generated inside the body
+73204,stevedore loader longshoreman docker dockhand dock_worker dockworker dock-walloper lumper,a laborer who loads and unloads vessels in a port
+73205,stevia,any plant of the genus Stevia or the closely related genus Piqueria having glutinous foliage and white or purplish flowers; Central and South America
+73206,stevia,any plant of the genus Piqueria or the closely related genus Stevia
+73207,stew,food prepared by stewing especially meat or fish with vegetables
+73208,stew_meat,tough meat that needs stewing to be edible
+73209,steward,the ship's officer who is in charge of provisions and dining arrangements
+73210,steward,someone who manages property or other affairs for someone else
+73211,steward flight_attendant,an attendant on an airplane
+73212,stewardess air_hostess hostess,a woman steward on an airplane
+73213,stewardship,the position of steward
+73214,stewing,an extreme state of worry and agitation; "his stewing over the fight kept him awake most of the night"
+73215,stewing_pan stewpan,a saucepan used for stewing
+73216,sthene,a unit of force equal to 1000 newtons
+73217,stibnite,a soft grey mineral; the chief ore of antimony
+73218,stick,a small thin branch of a tree
+73219,stick,a rectangular quarter pound block of butter or margarine
+73220,stick,a long implement (usually made of wood) that is shaped so that hockey or polo players can hit a puck or ball
+73221,stick,a long thin implement resembling a length of wood; "cinnamon sticks"; "a stick of dynamite"
+73222,stick,an implement consisting of a length of wood; "he collected dry sticks for a campfire"; "the kid had a candied apple on a stick"
+73223,stick,threat of a penalty; "the policy so far is all stick and no carrot"
+73224,stick control_stick joystick,a lever used by a pilot to control the ailerons and elevators of an airplane
+73225,stick_cinnamon,dried rolled strips of cinnamon bark
+73226,stick_figure,drawing of a human or animal that represents the head by a circle and the rest of the body by straight lines
+73227,stick_horse,a child's plaything consisting on an imitation horse's head on one end of a stick
+73228,stick_lac,lac in its natural state as scraped off twigs and dried
+73229,stickball stickball_game,a form of baseball played in the streets with a rubber ball and broomstick handle
+73230,stickiness,the property of sticking to a surface
+73231,sticking_point,a point at which an impasse arises in progress toward an agreement or a goal
+73232,stickleback prickleback,small (2-4 inches) pugnacious mostly scaleless spiny-backed fishes of northern fresh and littoral waters having elaborate courtship; subjects of much research
+73233,stickler,someone who insists on something; "a stickler for promptness"
+73234,stickpin,a decorative pin that is worn in a necktie
+73235,sticks_and_stone,a general term for building materials
+73236,sticktight sticktight_flea Echidnophaga_gallinacea,parasitic on especially the heads of chickens
+73237,stickweed,any of several herbaceous plants having seeds that cling to clothing
+73238,sticky_aster Machaeranthera_bigelovii,wild aster having leafy stems and flower heads with narrow bright reddish-lavender or purple rays; western Colorado to Arizona
+73239,sticky_end,an end of DNA in which one strand of the double helix extends a few units beyond the other
+73240,sticky_geranium Geranium_viscosissimum,geranium of western North America having pinkish-purple flowers in open clusters
+73241,stiff,an ordinary man; "a lucky stiff"; "a working stiff"
+73242,stiff_aster Aster_linarifolius,wiry tufted perennial of the eastern United States with stiff erect rough stems, linear leaves and large violet flowers
+73243,stiff_upper_lip,self-restraint in the expression of emotion (especially fear or grief); "the British like to keep a stiff upper lip"
+73244,stiffener,material used for stiffening something
+73245,stiffening,the act of becoming stiff; "stiffening his shoulders, he prepared to advance"
+73246,stiffening rigidifying rigidification,the process of becoming stiff or rigid
+73247,stiffness,the physical property of being inflexible and hard to bend
+73248,stiffness,the property of moving with pain or difficulty; "he awoke with a painful stiffness in his neck"
+73249,stiffness,firm resoluteness in purpose or opinion or action; "a charming host without any touch of stiffness or pomposity"
+73250,stifle knee,joint between the femur and tibia in a quadruped; corresponds to the human knee
+73251,stifler smotherer,a person who stifles or smothers or suppresses; "he is a real conversation stifler"; "I see from all the yawn smotherers that it is time to stop"
+73252,stigma,the apical end of the style where deposited pollen enters the pistil
+73253,stigma,an external tracheal aperture in a terrestrial arthropod
+73254,stigma,a skin lesion that is a diagnostic sign of some disease
+73255,stigmata,marks resembling the wounds on the crucified body of Christ
+73256,stigmatic stigmatist,a person whose body is marked by religious stigmata (such as marks resembling the wounds of the crucified Christ)
+73257,stigmatism,the condition of having or being marked by stigmata
+73258,stigmatism,(optics) condition of an optical system (as a lens) in which light rays from a single point converge in a single focal point
+73259,stigmatism,normal eyesight
+73260,stigmatization stigmatisation branding,the act of stigmatizing
+73261,stile,an upright that is a member in a door or window frame
+73262,stiletto,a small dagger with a tapered blade
+73263,still,a static photograph (especially one taken from a movie and used for advertising purposes); "he wanted some stills for a magazine ad"
+73264,still,an apparatus used for the distillation of liquids; consists of a vessel in which a substance is vaporized by heat and a condenser where the vapor is condensed
+73265,still_life,a painting of inanimate objects such as fruit or flowers
+73266,stillborn_infant,infant who shows no signs of life after birth
+73267,stillness windlessness,calmness without winds
+73268,stillroom still_room,a pantry or storeroom connected with the kitchen (especially in a large house) for preparing tea and beverages and for storing liquors and preserves and tea etc
+73269,stilt,one of two stout poles with foot rests in the middle; used for walking high above the ground; "he was so tall I thought he was on stilts"
+73270,stilt Australian_stilt,long-legged three-toed wading bird of brackish marshes of Australia
+73271,stilt stiltbird longlegs long-legs stilt_plover Himantopus_stilt,long-legged three-toed black-and-white wading bird of inland ponds and marshes or brackish lagoons
+73272,stimulant stimulant_drug excitant,a drug that temporarily quickens some vital process
+73273,stimulation,(physiology) the effect of a stimulus (on nerves or organs etc.)
+73274,stimulation,the act of arousing an organism to action
+73275,stimulation stimulus stimulant input,any stimulating information or event; acts to arouse action
+73276,sting bite insect_bite,a painful wound caused by the thrust of an insect's stinger into skin
+73277,sting sting_operation,operation designed to catch a person committing a criminal act; "the police conducted a sting operation"
+73278,sting stinging,a kind of pain; something as sudden and painful as being stung; "the sting of death"; "he felt the stinging of nettles"
+73279,sting_operation,a complicated confidence game planned and executed with great care (especially an operation implemented by undercover agents to apprehend criminals)
+73280,stinger,a cocktail made of made of creme de menthe and brandy
+73281,stinger,a sharp organ of offense or defense (as of a wasp or stingray or scorpion) often connected with a poison gland
+73282,stinger,a sharp stinging blow
+73283,stinger cut,a remark capable of wounding mentally; "the unkindest cut of all"
+73284,stinginess,a lack of generosity; a general unwillingness to part with money
+73285,stinging_hair,a multicellular hair in plants like the stinging nettle that expels an irritating fluid
+73286,stinging_nettle Urtica_dioica,perennial Eurasian nettle established in North America having broad coarsely toothed leaves with copious stinging hairs
+73287,stingray,large venomous ray with large barbed spines near the base of a thin whiplike tail capable of inflicting severe wounds
+73288,stink_bell Fritillaria_agrestis,a malodorous California herb with bell-shaped flowers; a common weed in grainfields
+73289,stink_bomb stench_bomb,a small bomb designed to give off a foul odor when it explodes
+73290,stinker,anything that gives off an offensive odor (especially a cheap cigar)
+73291,stinkhorn carrion_fungus,any of various ill-smelling brown-capped fungi of the order Phallales; "the foul smell of the stinkhorn attracts insects that carry the spores away on their feet"
+73292,stinking_cedar stinking_yew Torrey_tree Torreya_taxifolia,rare small evergreen of northern Florida; its glossy green leaves have an unpleasant fetid smell when crushed
+73293,stinking_goosefoot Chenopodium_vulvaria,European goosefoot with strong-scented foliage; adventive in eastern North America
+73294,stinking_hellebore bear's_foot setterwort Helleborus_foetidus,digitate-leaved hellebore with an offensive odor and irritant qualities when taken internally
+73295,stinking_iris gladdon gladdon_iris stinking_gladwyn roast_beef_plant Iris_foetidissima,iris with purple flowers and foul-smelling leaves; southern and western Europe and North Africa
+73296,stinky_squid Pseudocolus_fusiformis,a stinkhorn of genus Pseudocolus; the fruiting body first resembles a small puffball that soon splits open to form a stalk with tapering arms that arch and taper to a common point
+73297,stint,an individual's prescribed share of work; "her stint as a lifeguard exhausted her"
+73298,stinter,an economizer who stints someone with something
+73299,stipe,supporting stalk or stem-like structure especially of a pistil or fern frond or supporting a mushroom cap
+73300,stipend,a sum of money allotted on a regular basis; usually for some specific purpose
+73301,stipendiary stipendiary_magistrate,(United Kingdom) a paid magistrate (appointed by the Home Secretary) dealing with police cases
+73302,stippler,a painter who stipples (creates a stippled effect)
+73303,stipulation judicial_admission,(law) an agreement or concession made by parties in a judicial proceeding (or by their attorneys) relating to the business before the court; must be in writing unless they are part of the court record; "a stipulation of fact was made in order to avoid delay"
+73304,stipulation specification,a restriction that is insisted upon as a condition for an agreement
+73305,stipulative_definition,a definition that is stipulated by someone and that is not a standard usage
+73306,stipule,a small leafy outgrowth at the base of a leaf or its stalk; usually occurring in pairs and soon shed
+73307,stir,emotional agitation and excitement
+73308,stir splash,a prominent or sensational but short-lived news event; "he made a great splash and then disappeared"
+73309,stirk,yearling heifer or bullock
+73310,stirrer,an implement used for stirring
+73311,stirring,agitating a liquid with an implement; "constant stirring prevents it from burning on the bottom of the pan"
+73312,stirrup stirrup_iron,support consisting of metal loops into which rider's feet go
+73313,stirrup_cup,a farewell drink (especially one offered to a horseman ready to depart); usually alcoholic
+73314,stirrup_pump,a hand-operated reciprocating pump; used in fighting fires
+73315,stitch,a sharp spasm of pain in the side resulting from running
+73316,stitch,a link or loop or knot made by an implement in knitting, crocheting, embroidery, or sewing
+73317,stitcher,a garmentmaker who performs the finishing steps
+73318,stitchwort greater_stitchwort starwort Stellaria_holostea,low-growing north temperate herb having small white star-shaped flowers; named for its alleged ability to ease sharp pains in the side
+73319,stoat,the ermine in its brown summer coat with black-tipped tail
+73320,stob,a short straight stick of wood
+73321,stochastic_process,a statistical process involving a number of random variables depending on a variable parameter (which is usually time)
+73322,stock,the reputation and popularity a person has; "his stock was so high he could have been elected mayor"
+73323,stock,the capital raised by a corporation through the issue of shares entitling holders to an ownership interest (equity); "he owns a controlling share of the company's stock"
+73324,stock,a plant or stem onto which a graft is made; especially a plant grown specifically to provide the root part of grafted plants
+73325,stock,lumber used in the construction of something; "they will cut round stock to 1-inch diameter"
+73326,stock,the handle end of some implements or tools; "he grabbed the cue by the stock"
+73327,stock caudex,persistent thickened stem of a herbaceous perennial plant
+73328,stock gillyflower,any of several Old World plants cultivated for their brightly colored flowers
+73329,stock gunstock,the handle of a handgun or the butt end of a rifle or shotgun or part of the support of a machine gun or artillery gun; "the rifle had been fitted with a special stock"
+73330,stock inventory,the merchandise that a shop has on hand; "they carried a vast inventory of hardware"; "they stopped selling in exact sizes in order to reduce inventory"
+73331,stock-in-trade,any equipment constantly used as part of a profession or occupation; "friendliness is the salesman's stock in trade"
+73332,stock-index_futures,a futures contract based on a stock index; a bet on the future price of the indexed group of stocks
+73333,stock_buyback,a corporation's purchase of its own outstanding stock; increases earnings/share so stock price rises (which can discourage a takeover attempt)
+73334,stock_car,a car kept in dealers' stock for regular sales
+73335,stock_car,a racing car with the basic chassis of a commercially available car
+73336,stock_certificate stock,a certificate documenting the shareholder's ownership in the corporation; "the value of his stocks doubled during the past year"
+73337,stock_company,a company whose capital is represented by stock
+73338,stock_company repertory_company repertory,a theatrical company that performs plays from a repertoire
+73339,stock_cube,a cube of dehydrated stock
+73340,stock_dividend,a dividend paid in stock rather than in cash
+73341,stock_exchange stock_market securities_market,an exchange where security trading is conducted by professional stockbrokers
+73342,stock_index stock_market_index,index based on a statistical compilation of the share prices of a number of representative stocks
+73343,stock_issue,(corporation law) the authorization and delivery of shares of stock for sale to the public or the shares thus offered at a particular time
+73344,stock_of_record,stock held by stockholders of record on a given date
+73345,stock_option,the right to buy or sell a stock at a specified price within a stated period
+73346,stock_option,a benefit given by a company to an employee in the form of an option to buy stock in the company at a discount or at a fixed price; "stock options are not much use as an incentive if the price at which they can be exercised is out of reach"
+73347,stock_photograph stock_image,an exisitng photograph licensed for a specific use
+73348,stock_power,a power of attorney document to transfer ownership of a registered security from the owner to another party
+73349,stock_purchase_plan,an organized plan for employees of a company to buy shares of its stock
+73350,stock_saddle Western_saddle,an ornamented saddle used by cowboys; has a high horn to hold the lariat
+73351,stock_symbol,the letters used to identify listed companies on the securities exchanges where they are traded
+73352,stock_trader,someone who buys and sells stock shares
+73353,stock_warrant,a written certificate that gives the holder the right to purchase shares of a stock for a specified price within a specified period of time
+73354,stockade,fortification consisting of a fence made of a line of stout posts set firmly for defense
+73355,stockbroker,an agent in the buying and selling of stocks and bonds
+73356,stockbroker_belt,a wealthy residential suburb
+73357,stockcar,boxcar with latticed sides; for transporting livestock
+73358,stocker,a domestic animal (especially a young steer or heifer) kept as stock until fattened or matured and suitable for a breeding establishment
+73359,stockfish,fish cured by being split and air-dried without salt
+73360,stockholder shareholder shareowner,someone who holds shares of stock in a corporation
+73361,stockholder_of_record,the stockholder whose name is registered on the books of the corporation as owning the shares at a particular time
+73362,stockholders_meeting,a meeting at which the management reports to the stockholders of a company
+73363,stockholding,ownership of stocks; the state or fact of holding stock; "prohibition of unrestricted intercorporate stockholding"- W.Z.Ripley
+73364,stockholding stockholdings,a specific number of stocks or shares owned; "sell holdings he has in corporations"
+73365,stockinet stockinette,knit used especially for infants' wear and undergarments
+73366,stockinette_stitch,knitting stitch having alternate rows of knit stitches and purl stitches, producing a fabric as for stockings
+73367,stocking,close-fitting hosiery to cover the foot and leg; come in matched pairs (usually used in the plural)
+73368,stocking,the activity of supplying a stock of something; "he supervised the stocking of the stream with trout"
+73369,stocking_filler stocking_stuffer,a small Christmas present included in the Christmas stocking
+73370,stockist,one (as a retailer or distributor) that stocks goods
+73371,stockjobber,one who deals only with brokers or other jobbers
+73372,stockman stock_raiser stock_farmer,farmer who breed or raises livestock
+73373,stockpile,a storage pile accumulated for future use
+73374,stockpiling,accumulating and storing a reserve supply; "the stockpiling of war materials"
+73375,stockpot,a pot used for preparing soup stock
+73376,stockroom stock_room,storeroom for storing goods and supplies used in a business
+73377,stocks,a frame that supports a boat while it is under construction
+73378,stocks,a frame for constraining an animal while it is receiving veterinary attention or while being shod
+73379,stocks,a former instrument of punishment consisting of a heavy timber frame with holes in which the feet (and sometimes the hands) of an offender could be locked
+73380,stocktake stock-take,an instance of stocktaking; "the auditor did not attend the stocktake or check the valuations"
+73381,stocktaker stock-taker,an employee whose job is to take inventory; "an outside stocktaker had to be hired"
+73382,stocktaking stock-taking,reappraisal of a situation or position or outlook
+73383,stockyard,enclosed yard where cattle, pigs, horses, or sheep are kept temporarily
+73384,stodge,heavy and filling (and usually starchy) food
+73385,stodginess stuffiness,dull and pompous gravity
+73386,stogy stogie,a cheap cigar
+73387,stoic unemotional_person,someone who is seemingly indifferent to emotions
+73388,stoichiometry,(chemistry) the relation between the quantities of substances that take part in a reaction or form a compound (typically a ratio of whole integers)
+73389,stoicism stolidity stolidness,an indifference to pleasure or pain
+73390,stokehold stokehole fireroom,(nautical) chamber or compartment in which the furnaces of a ship are stoked or fired
+73391,stoker,a mechanical device for stoking a furnace
+73392,stoker fireman,a laborer who tends fires (as on a coal-fired train or steamship)
+73393,stokes'_aster cornflower_aster Stokesia_laevis,erect perennial of southeastern United States having large heads of usually blue flowers
+73394,stole,a wide scarf worn about their shoulders by women
+73395,stolen_property,property that has been stolen
+73396,stolon runner offset,a horizontal branch from the base of plant that produces new plants from buds at its tips
+73397,stoma,a mouth or mouthlike opening (especially one created by surgery on the surface of the body to create an opening to an internal organ)
+73398,stoma stomate pore,a minute epidermal pore in a leaf or stem through which gases and water vapor can pass
+73399,stomach,an inclination or liking for things involving conflict or difficulty or unpleasantness; "he had no stomach for a fight"
+73400,stomach,an appetite for food; "exercise gave him a good stomach for dinner"
+73401,stomach tummy tum breadbasket,an enlarged and muscular saclike organ of the alimentary canal; the principal organ of digestion
+73402,stomach_exercise tummy_crunch,an exercise designed to strengthen the abdominal muscles
+73403,stomach_pump,a suction pump used to remove the contents of the stomach
+73404,stomach_sweetbread,edible pancreas of an animal
+73405,stomachache stomach_ache bellyache gastralgia,an ache localized in the stomach or abdominal region
+73406,stomacher,garment consisting of a V-shaped panel of stiff material worn over the chest and stomach in the 16th century
+73407,stomatitis,inflammation of the mucous membrane of the mouth
+73408,stomatopod stomatopod_crustacean,a kind of crustacean
+73409,stomp,a dance involving a rhythmical stamping step
+73410,stone,an avoirdupois unit used to measure the weight of a human body; equal to 14 pounds; "a heavy chap who must have weighed more than twenty stone"
+73411,stone,a lack of feeling or expression or movement; "he must have a heart of stone"; "her face was as hard as stone"
+73412,stone,building material consisting of a piece of rock hewn in a definite shape for a special purpose; "he wanted a special stone to mark the site"
+73413,stone pit endocarp,the hard inner (usually woody) layer of the pericarp of some fruits (as peaches or plums or cherries or olives) that contains the seed; "you should remove the stones from prunes before cooking"
+73414,stone_bass wreckfish Polyprion_americanus,brown fish of the Atlantic and Mediterranean found around rocks and shipwrecks
+73415,stone_bramble Rubus_saxatilis,European trailing bramble with red berrylike fruits
+73416,stone_breaker,someone who breaks up stone
+73417,stone_crab,pale flesh with delicate texture and flavor; found in Florida but now very rare
+73418,stone_crab Menippe_mercenaria,large edible crab of the southern coast of the United States (particularly Florida)
+73419,stone_curlew thick-knee Burhinus_oedicnemus,large-headed large-eyed crepuscular or nocturnal shorebird of the Old World and tropical America having a thickened knee joint
+73420,stone_marten beech_marten Martes_foina,Eurasian marten having a brown coat with pale breast and throat
+73421,stone_parsley Sison_amomum,a slender roadside herb of western Europe and Mediterranean areas that has foliage resembling parsley and has white flowers with aromatic seeds
+73422,stone_pine umbrella_pine European_nut_pine Pinus_pinea,medium-sized two-needled pine of southern Europe having a spreading crown; widely cultivated for its sweet seeds that resemble almonds
+73423,stone_wall,a fence built of rough stones; used to separate fields
+73424,stonechat Saxicola_torquata,common European chat with black plumage and a reddish-brown breast
+73425,stonecress stone_cress,any Old World herb of the genus Aethionema; native of sunny limestone habitats
+73426,stonecrop,any of various northern temperate plants of the genus Sedum having fleshy leaves and red or yellow or white flowers
+73427,stonecutter cutter,someone who cuts or carves stone
+73428,stonefish Synanceja_verrucosa,venomous tropical marine fish resembling a piece of rock
+73429,stonefly stone_fly plecopteran,primitive winged insect with a flattened body; used as bait by fishermen; aquatic gilled larvae are carnivorous and live beneath stones
+73430,stoner lapidator,an attacker who pelts the victim with stones (especially with intent to kill)
+73431,stonewaller,one who stonewalls or refuses to answer or cooperate; someone who delays by lengthy speeches etc.
+73432,stonewalling,stalling or delaying especially by refusing to answer questions or cooperate
+73433,stoneware,ceramic ware that is fired in high heat and vitrified and nonporous
+73434,stonework,masonry done with stone
+73435,stonewort,any of various submerged aquatic algae of the genus Chara having nodes with whorled filamentlike branches; usually encrusted with calcium carbonate deposits
+73436,stoning lapidation,the act of pelting with stones; punishment inflicted by throwing stones at the victim (even unto death)
+73437,stony_coral madrepore madriporian_coral,corals having calcareous skeletons aggregations of which form reefs and islands
+73438,stool,(forestry) the stump of a tree that has been felled or headed for the production of saplings
+73439,stool,a simple seat without a back or arms
+73440,stool_pigeon,a dummy pigeon used to decoy others
+73441,stoop,an inclination of the top half of the body forward and downward
+73442,stoop stoep,small porch or set of steps at the front entrance of a house
+73443,stooper,a person at a racetrack who searches for winning parimutuel tickets that have been carelessly discarded by others
+73444,stooper,a person who carries himself or herself with the head and shoulders habitually bent forward
+73445,stop,a spot where something halts or pauses; "his next stop is Atlanta"
+73446,stop,(music) a knob on an organ that is pulled to change the sound quality from the organ pipes; "the organist pulled out all the stops"
+73447,stop halt,the event of something ending; "it came to a stop at the bottom of the hill"
+73448,stop stopover layover,a brief stay in the course of a journey; "they made a stopover to visit their friends"
+73449,stop stoppage,the act of stopping something; "the third baseman made some remarkable stops"; "his stoppage of the flow resulted in a flood"
+73450,stop_bath short-stop short-stop_bath,an acid bath used to stop the action of a developer
+73451,stop_consonant stop occlusive plosive_consonant plosive_speech_sound plosive,a consonant produced by stopping the flow of air at some point and suddenly releasing it; "his stop consonants are too aspirated"
+73452,stop_order stop-loss_order,an order to a broker to sell (buy) when the price of a security falls (rises) to a designated level
+73453,stop_payment,a depositor's order to a bank to refuse payment on a check
+73454,stop_press,late news that is inserted into the newspaper at the last minute
+73455,stopcock cock turncock,faucet consisting of a rotating device for regulating flow of a liquid
+73456,stoplight brake_light,a red light on the rear of a motor vehicle that signals when the brakes are applied to slow or stop
+73457,stopover way_station,a stopping place on a journey; "there is a stopover to change planes in Chicago"
+73458,stopper,(bridge) a playing card with a value sufficiently high to insure taking a trick in a particular suit; "if my partner has a spade stopper I can bid no trump"
+73459,stopper_knot,a knot that prevents a rope from passing through a hole
+73460,stopping,the kind of playing that involves pressing the fingers on the strings of a stringed instrument to control the pitch; "the violinist's stopping was excellent"
+73461,stopping_point finale finis finish last conclusion close,the temporal end; the concluding time; "the stopping point of each round was signaled by a bell"; "the market was up at the finish"; "they were playing better at the close of the season"
+73462,stopwatch stop_watch,a timepiece that can be started or stopped for exact timing (as of a race)
+73463,storage,(computer science) the process of storing information in a computer memory or on a magnetic tape or disk
+73464,storage,the commercial enterprise of storing goods and materials
+73465,storage,the act of storing something
+73466,storage_battery accumulator,a voltaic battery that stores electric charge
+73467,storage_cell secondary_cell,a cell that can be recharged
+73468,storage_medium data-storage_medium,a medium for storing information
+73469,storage_ring,container consisting of a set of magnets set in a doughnut-shaped ring around which charged particles from an accelerator can be kept circulating until they are used
+73470,storage_space,the area in any structure that provides space for storage
+73471,storax,a vanilla-scented resin from various trees of the genus Styrax
+73472,store stock fund,a supply of something available for future use; "he brought back a large store of Cuban cigars"
+73473,store_detective,a private detective employed by a merchant to stop pilferage
+73474,stored_program,a program that is stored in the memory of the computer that executes it
+73475,storehouse depot entrepot storage store,a depository for goods; "storehouses were built close to the docks"
+73476,storeroom storage_room stowage,a room in which things are stored
+73477,stork,large mostly Old World wading birds typically having white-and-black plumage
+73478,storksbill heron's_bill,any of various plants of the genus Erodium
+73479,storm,a direct and violent assault on a stronghold
+73480,storm tempest,a violent commotion or disturbance; "the storms that had characterized their relationship had died away"; "it was only a tempest in a teapot"
+73481,storm violent_storm,a violent weather condition with winds 64-72 knots (11 on the Beaufort scale) and precipitation and thunder and lightning
+73482,storm_cellar cyclone_cellar tornado_cellar,an underground shelter where you can go until a storm passes
+73483,storm_center storm_centre,a center of trouble or disturbance
+73484,storm_center storm_centre,the central area or place of lowest barometric pressure within a storm
+73485,storm_cloud,a heavy dark cloud presaging rain or a storm
+73486,storm_cone,a canvas cone hoisted to warn of high winds
+73487,storm_door,an extra outer door for protection against severe weather or winter
+73488,storm_petrel,any of various small petrels having dark plumage with paler underparts
+73489,storm_signal,a signal announcing the approach of a storm (particularly a storm of marked violence)
+73490,storm_trooper,a member of the Nazi SA
+73491,storm_window storm_sash,a window outside an ordinary window to protect against severe weather or winter
+73492,storminess,the state of being stormy; "he dreaded the storminess of the North Atlantic in winter"
+73493,storminess,violent passion in speech or action; "frightened by the storminess of their argument"
+73494,stormy_petrel northern_storm_petrel Hydrobates_pelagicus,sooty black petrel with white markings; of the northern Atlantic and Mediterranean
+73495,story,a piece of fiction that narrates a chain of related events; "he writes stories for the magazines"
+73496,storybook,a book containing a collection of stories (usually for children)
+73497,storyline plot_line,the plot of a book or play or film
+73498,storyteller fibber fabricator,someone who tells lies
+73499,stotinka,100 stotinka equal 1 lev in Bulgaria
+73500,stoup,an archaic drinking vessel
+73501,stoup stoop,basin for holy water
+73502,stout,a strong very dark heavy-bodied ale made from pale malt and roasted unmalted barley and (often) caramel malt with hops
+73503,stout,a garment size for a large or heavy person
+73504,stoutheartedness,the trait of having a courageous spirit
+73505,stoutness stalwartness,the property of being strong and resolute
+73506,stove,any heating apparatus
+73507,stove kitchen_stove range kitchen_range cooking_stove,a kitchen appliance used for cooking food; "dinner was already on the stove"
+73508,stove_bolt,a small machine bolt
+73509,stovepipe,chimney consisting of a metal pipe of large diameter that is used to connect a stove to a flue
+73510,stovepipe_iron,plate iron that is thinner than tank iron
+73511,stovepiping,retrieval of information from unconnected databases; the situation that exists when it is necessary to climb out of one database in order to climb down into another; sometimes used for protection against wandering hackers
+73512,stover,the dried stalks and leaves of a field crop (especially corn) used as animal fodder after the grain has been harvested
+73513,stowage,the charge for stowing goods
+73514,stowage stowing,the act of packing or storing away
+73515,stowaway,a person who hides aboard a ship or plane in the hope of getting free passage
+73516,strabismus squint,abnormal alignment of one or both eyes
+73517,strabotomy,the surgical operation of cutting a muscle or tendon of the eye in order to correct strabismus
+73518,straddle,a noncommittal or equivocal position
+73519,straddle,a gymnastic exercise performed with a leg on either side of the parallel bars
+73520,straddle,the option to buy or sell a given stock (or stock index or commodity future) at a given price before a given date; consists of an equal number of put and call options
+73521,straddle span,the act of sitting or standing astride
+73522,strafe,an attack of machine-gun fire or cannon fire from a low flying airplane; "the next morning they carried out a strafe of enemy airfields"
+73523,strafer,a combat pilot who strafes the enemy
+73524,straggle,a wandering or disorderly grouping (of things or persons); "a straggle of outbuildings"; "a straggle of followers"
+73525,straggler strayer,someone who strays or falls behind
+73526,straight,a poker hand with 5 consecutive cards (regardless of suit)
+73527,straight-arm,(American football) the act of warding off a tackler by holding the arm fully extended with the hand against the opponent
+73528,straight-line_method straight-line_method_of_depreciation,(accounting) a method of calculating depreciation by taking an equal amount of the asset's cost as an expense for each year of the asset's useful life
+73529,straight_and_narrow strait_and_narrow,the way of proper and honest behavior; "he taught his children to keep strictly to the straight and narrow"
+73530,straight_angle,an angle of 180 degrees
+73531,straight_chain,an open chain of atoms with no side chains
+73532,straight_chair side_chair,a straight-backed chair without arms
+73533,straight_face,a serious facial expression giving no evidence of interest or amusement
+73534,straight_flush,a poker hand with consecutive cards in the same suit
+73535,straight_flute straight-fluted_drill,a rock drill with flutes that are straight
+73536,straight_hang,a hang performed on the rings or parallel bars with the body erect and the arms at the sides
+73537,straight_line,a line traced by a point traveling in a constant direction; a line of zero curvature; "the shortest distance between two points is a straight line"
+73538,straight_man second_banana,a performer who acts as stooge to a comedian
+73539,straight_pin,pin consisting of a short straight stiff piece of wire with a pointed end; used to fasten pieces of cloth or paper together
+73540,straight_poker,poker in which each player gets 5 cards face down and bets are made without drawing any further cards
+73541,straight_razor,a razor with a straight cutting edge enclosed in a case that forms a handle when the razor is opened for use
+73542,straight_sinus tentorial_sinus sinus_rectus,an unpaired sinus of the dura mater
+73543,straight_ticket,a ballot cast by a voter who votes for all the candidates of one party
+73544,straightaway straight,a straight segment of a roadway or racecourse
+73545,straightedge,hand tool consisting of a flat rigid rectangular bar (metal or wood) that can be used to draw straight lines (or test their straightness)
+73546,straightener,a device for straightening; "a hair straightener"
+73547,straightness,(of hair) lack of a tendency to curl
+73548,straightness,freedom from crooks or curves or bends or angles
+73549,strain,injury to a muscle (often caused by overuse); results in swelling and pain
+73550,strain,(physics) deformation of a physical body under the action of applied forces
+73551,strain mental_strain nervous_strain,(psychology) nervousness resulting from mental stress; "his responsibilities were a constant strain"; "the mental strain of staying alert hour after hour was too much for him"
+73552,strain straining,an intense or violent exertion
+73553,strain_gauge strain_gage,a gauge for measuring strain in a surface
+73554,strainer,a filter to retain larger pieces while smaller pieces and liquids pass through
+73555,strait sound,a narrow channel of the sea joining two larger bodies of water
+73556,straitjacket,anything immaterial that severely hinders or confines; "they defected because Russian dance was in a straitjacket"; "the government is operating in an economic straitjacket"
+73557,straitjacket straightjacket,a garment similar to a jacket that is used to bind the arms tightly against the body as a means of restraining a violent person
+73558,strand,a poetic term for a shore (as the area periodically covered and uncovered by the tides)
+73559,strand,a pattern forming a unity within a larger structural whole; "he tried to pick up the strands of his former life"; "I could hear several melodic strands simultaneously"
+73560,strand,line consisting of a complex of fibers or filaments that are twisted together to form a thread or a rope or a cable
+73561,strange_attractor chaotic_attractor,an attractor for which the approach to its final point in phase space is chaotic
+73562,strange_particle,an elementary particle with non-zero strangeness
+73563,strange_quark squark,a quark with an electric charge of -1/3 and a mass 988 times that of an electron and a strangeness of -1
+73564,strangeness,(physics) one of the six flavors of quark
+73565,stranger,an individual that one is not acquainted with
+73566,stranger alien unknown,anyone who does not belong in the environment in which they are found
+73567,stranglehold,a wrestling hold in which the arms are pressed against the opponent's windpipe
+73568,stranglehold chokehold throttlehold,complete power over a person or situation; "corporations have a stranglehold on the media"; "the president applied a chokehold to labor disputes that inconvenienced the public"
+73569,strangler strangler_tree,an epiphytic vine or tree whose aerial roots extend down the trunk of a supporting tree and coalesce around it eventually strangling the tree
+73570,strangulation,the condition of having respiration stopped by compression of the air passage
+73571,strangulation,(pathology) constriction of a body part so as to cut off the flow of blood or other fluid; "strangulation of the intestine"
+73572,strap,hanger consisting of a loop of leather suspended from the ceiling of a bus or train; passengers hold onto it
+73573,strap,an elongated leather strip (or a strip of similar material) for binding things together or holding something in position
+73574,strap,whip consisting of a strip of leather used in flogging
+73575,strap shoulder_strap,a band that goes over the shoulder and supports a garment or bag
+73576,strap_fern,fern with long narrow strap-shaped leaves
+73577,strap_hinge joint_hinge,a hinge with two long straps; one strap is fastened to the surface of a moving part (e.g., a door or lid) and the other is fastened to the adjacent stationary frame
+73578,straphanger,a commuter who uses public transportation
+73579,straphanger,a standing subway or bus passenger who grips a hanging strap for support
+73580,strapless,a woman's garment that exposes the shoulders and has no shoulder straps
+73581,strappado strapado,a form of torture in which the hands are tied behind a person's back and they are lifted off the ground by a rope tied to their wrists, then allowed to drop until their fall is checked with a jerk by the rope
+73582,strategic_buyout,an acquisition based on analysis of the benefits of consolidation in anticipation of increased earning power
+73583,strategic_intelligence,intelligence that is required for forming policy and military plans at national and international levels
+73584,strategic_warning,(military) a warning prior to the start of a threatening act
+73585,strategics,the science or art of strategy
+73586,strategist strategian,an expert in strategy (especially in warfare)
+73587,strategy,the branch of military science dealing with military command and the planning and conduct of a war
+73588,stratification,forming or depositing in layers
+73589,stratification,a layered configuration
+73590,stratification,the act or process or arranging persons into classes or social strata
+73591,stratification,the placing of seeds in damp sand or sawdust or peat moss in order to preserve them or promote germination
+73592,stratification social_stratification,the condition of being arranged in social strata or classes within a group
+73593,stratified_language,a language that cannot be used as its own metalanguage
+73594,stratified_sample representative_sample proportional_sample,the population is divided into strata and a random sample is taken from each stratum
+73595,stratified_sampling representative_sampling proportional_sampling,the population is divided into subpopulations (strata) and random samples are taken of each stratum
+73596,stratigraphy,the branch of geology that studies the arrangement and succession of strata
+73597,stratosphere,the atmospheric layer between the troposphere and the mesosphere
+73598,stratum,one of several parallel layers of material arranged one on top of another (such as a layer of tissue or cells in an organism or a layer of sedimentary rock)
+73599,stratum,a subpopulation divided into a stratified sampling
+73600,stratum_corneum corneum horny_layer,the outermost layer of the epidermis consisting of dead cells that slough off
+73601,stratum_germinativum stratum_basale malpighian_layer rete_Malpighii,the innermost layer of the epidermis
+73602,stratum_granulosum,the layer of epidermis just under the stratum corneum or (on the palms and soles) just under the stratum lucidum; contains cells (with visible granules) that die and move to the surface
+73603,stratum_lucidum,the layer of epidermis immediately under the stratum corneum in the skin of the palms and soles
+73604,stratus stratus_cloud,a large dark low cloud
+73605,straw,plant fiber used e.g. for making baskets and hats or as fodder
+73606,straw drinking_straw,a thin paper or plastic tube used to suck liquids into the mouth
+73607,straw_boss assistant_foreman,a member of a work gang who supervises the other workers
+73608,straw_man strawman,a weak or sham argument set up to be easily refuted
+73609,straw_mushroom Chinese_mushroom Volvariella_volvacea,small tropical and subtropical edible mushroom having a white cap and long stem; an expensive delicacy in China and other Asian countries where it is grown commercially
+73610,straw_vote straw_poll,an unofficial vote taken to determine opinion on some issue
+73611,straw_wine,sweet wine from grapes partially sun-dried on the vine or on straw mats
+73612,strawberry,any of various low perennial herbs with many runners and bearing white flowers followed by edible fruits having many small achenes scattered on the surface of an enlarged red pulpy berry
+73613,strawberry,sweet fleshy red fruit
+73614,strawberry strawberry_mark hemangioma_simplex,a soft red birthmark
+73615,strawberry_blite strawberry_pigweed Indian_paint Chenopodium_capitatum,European annual with clusters of greenish flowers followed by red pulpy berrylike fruit; naturalized North America
+73616,strawberry_bush wahoo Euonymus_americanus,upright deciduous plant with crimson pods and seeds; the eastern United States from New York to Florida and Texas
+73617,strawberry_daiquiri,daiquiri with crushed strawberries
+73618,strawberry_geranium strawberry_saxifrage mother-of-thousands Saxifraga_stolonifera Saxifraga_sarmentosam,eastern Asiatic saxifrage with racemes of small red-and-white flowers; spreads by numerous creeping stolons
+73619,strawberry_hemangioma strawberry_haemangioma,a congenital bright red superficial vascular tumor resembling a strawberry; tends to decrease in size during childhood
+73620,strawberry_ice_cream,ice cream flavored with fresh strawberries
+73621,strawberry_jam strawberry_preserves,made with strawberries
+73622,strawberry_tomato dwarf_cape_gooseberry Physalis_pruinosa,stout hairy annual of eastern North America with sweet yellow fruits
+73623,strawberry_tree Irish_strawberry Arbutus_unedo,small evergreen European shrubby tree bearing many-seeded scarlet berries that are edible but bland; of Ireland, southern Europe, Asia Minor
+73624,strawboard,a coarse yellow cardboard made of straw pulp
+73625,strawflower,any of various plants of the genus Helipterum
+73626,strawflower cornflower Uvularia_grandiflora,plant of southern and southeastern United States grown for its yellow flowers that can be dried
+73627,strawflower golden_everlasting yellow_paper_daisy Helichrysum_bracteatum,Australian plant naturalized in Spain having flowers of lemon yellow to deep gold; the frequent choice of those who love dried flowers
+73628,strawworm jointworm,larva of chalcid flies injurious to the straw of wheat and other grains
+73629,stray,an animal that has strayed (especially a domestic animal)
+73630,streak,a sudden flash (as of lightning)
+73631,streak,a distinctive characteristic; "he has a stubborn streak"; "a streak of wildness"
+73632,streak run,an unbroken series of events; "had a streak of bad luck"; "Nicklaus had a run of birdies"
+73633,streaker,someone who takes off all their clothes and runs naked through a public place
+73634,stream flow,something that resembles a flowing stream in moving continuously; "a stream of people emptied from the terminal"; "the museum had planned carefully for the flow of visitors"
+73635,stream flow current,dominant course (suggestive of running water) of successive events or ideas; "two streams of development run through American history"; "stream of consciousness"; "the flow of thought"; "the current of history"
+73636,stream watercourse,a natural body of running water flowing on or under the earth
+73637,stream_of_consciousness,a literary genre that reveals a character's thoughts and feeling as they develop by means of a long soliloquy
+73638,stream_of_consciousness,the continuous flow of ideas and feelings that constitute an individual's conscious experience
+73639,stream_orchid chatterbox giant_helleborine Epipactis_gigantea,orchid growing along streams or ponds of western North America having leafy stems and 1 greenish-brown and pinkish flower in the axil of each upper leaf
+73640,streambed creek_bed,a channel occupied (or formerly occupied) by a stream
+73641,streamer,light that streams; "streamers of flames"
+73642,streamer banner,a newspaper headline that runs across the full page
+73643,streamer_fly,an artificial fly that has wings extending back beyond the crook of the fishhook
+73644,streamline_flow,flow of a gas or liquid in which the velocity at any point is relatively steady
+73645,streamliner,a streamlined train
+73646,street,the streets of a city viewed as a depressed environment in which there is poverty and crime and prostitution and dereliction; "she tried to keep her children off the street"
+73647,street,a situation offering opportunities; "he worked both sides of the street"; "cooperation is a two-way street"
+73648,street,people living or working on the same street; "the whole street protested the absence of street lights"
+73649,street,the part of a thoroughfare between the sidewalks; the part of the thoroughfare on which vehicles travel; "be careful crossing the street"
+73650,street,a thoroughfare (usually including sidewalks) that is lined with buildings; "they walked the streets of the small town"; "he lives on Nassau Street"
+73651,street_address,the address where a person or organization can be found
+73652,street_arab gamin throwaway,(sometimes offensive) a homeless boy who has been abandoned and roams the streets
+73653,street_cleaner street_sweeper,a worker employed to clean streets (especially one employed by a municipal sanitation department)
+73654,street_clothes,ordinary clothing suitable for public appearances (as opposed to costumes or sports apparel or work clothes etc.)
+73655,street_credibility street_cred cred,credibility among young fashionable urban individuals
+73656,street_fighter,a contestant who is very aggressive and willing to use underhand methods
+73657,street_fighter tough,someone who learned to fight in the streets rather than being formally trained in the sport of boxing
+73658,street_name,an alternative name that a person chooses or is given (especially in inner city neighborhoods); "her street name is Bonbon"
+73659,street_name,slang for something (especially for an illegal drug); "`smack' is a street name for heroin"
+73660,street_name,the name of a brokerage firm in which stock is held on behalf of a customer; "all my stocks are held in street name"
+73661,street_name,the name of a street
+73662,street_sign,a sign visible from the street
+73663,street_smarts,a shrewd ability to survive in a dangerous urban environment
+73664,street_urchin guttersnipe,a child who spends most of his time in the streets especially in slum areas
+73665,streetcar tram tramcar trolley trolley_car,a wheeled vehicle that runs on rails and is propelled by electricity
+73666,streetlight street_lamp,a lamp supported on a lamppost; for illuminating a street
+73667,streetwalker street_girl hooker hustler floozy floozie slattern,a prostitute who attracts customers by walking the streets
+73668,strength,the condition of financial success; "the strength of the company's stock in recent weeks"
+73669,strength,the property of being physically or mentally strong; "fatigue sapped his strength"
+73670,strengthener reinforcement,a device designed to provide additional strength; "the cardboard backing was just a strengthener"; "he used gummed reinforcements to hold the page in his notebook"
+73671,strengthening,becoming stronger
+73672,strengthening,the act of increasing the strength of something
+73673,streptobacillus,any of various rod-shaped Gram-negative bacteria
+73674,streptocarpus,any of various plants of the genus Streptocarpus having leaves in a basal rosette and flowers like primroses
+73675,streptococcal_sore_throat strep_throat streptococcus_tonsilitis septic_sore_throat throat_infection,an infection of the oral pharynx and tonsils by streptococcus
+73676,streptococcus streptococci strep,spherical Gram-positive bacteria occurring in pairs or chains; cause e.g. scarlet fever and tonsillitis
+73677,streptodornase,an enzyme produced by some hemolytic strains of streptococcus that dissolves fibrinous secretions from infections; used medicinally (often in combination with streptokinase)
+73678,streptokinase,an enzyme produced by some strains of streptococcus that can liquefy blood clots by converting plasminogen to plasmin; used medicinally in some cases of myocardial infarction and pulmonary embolism
+73679,streptolysin,any of several hemolysins derived from strains of streptococcus
+73680,streptomyces,aerobic bacteria (some of which produce the antibiotic streptomycin)
+73681,streptomycin,an antibiotic produced by the actinomycete Streptomyces griseus and used to treat tuberculosis
+73682,streptothricin,a basic antibiotic derived from a soil actinomycete
+73683,stress,(physics) force that produces strain on a physical body; "the intensity of stress is expressed in units of force divided by units of area"
+73684,stress emphasis accent,the relative prominence of a syllable or musical note (especially with regard to stress or pitch); "he put the stress on the wrong syllable"
+73685,stress focus,special emphasis attached to something; "the stress was more on accuracy than on speed"
+73686,stress strain,difficulty that causes worry or emotional tension; "she endured the stresses and strains of life"; "he presided over the economy during the period of the greatest stress and danger"- R.J.Samuelson
+73687,stress_incontinence,urinary incontinence that occurs when involuntary pressure is put on the bladder by coughing or laughing or sneezing or lifting or straining
+73688,stress_mark,a mark indicating the stress on a syllable
+73689,stress_test,a test measuring how a system functions when subjected to controlled amounts of stress
+73690,stressor,any agent that causes stress to an organism
+73691,stretch,a large and unbroken expanse or distance; "a stretch of highway"; "a stretch of clear water"
+73692,stretch,a straightaway section of a racetrack
+73693,stretch,extension to or beyond the ordinary limit; "running at full stretch"; "by no stretch of the imagination"; "beyond any stretch of his understanding"
+73694,stretch stint,an unbroken period of time during which you do something; "there were stretches of boredom"; "he did a stretch in the federal penitentiary"
+73695,stretch stretchiness stretchability,the capacity for being stretched
+73696,stretch stretching,exercise designed to extend the limbs and muscles to their full extent
+73697,stretch_mark,a narrow band resulting from tension on the skin (as on abdominal skin after pregnancy)
+73698,stretch_pants,trousers made of a stretchy fabric
+73699,stretch_receptor,a receptor in a muscle that responds to stretching of the muscle tissue
+73700,stretch_reflex myotactic_reflex,reflex contraction of a muscle when an attached tendon is pulled; important in maintaining erect posture
+73701,stretcher,a wooden framework on which canvas is stretched and fixed for oil painting
+73702,stretcher,a mechanical device used to make something larger (as shoes or gloves) by stretching it
+73703,stretcher,a litter for transporting people who are ill or wounded or dead; usually consists of a sheet of canvas stretched between two poles
+73704,stretcher-bearer litter-bearer,one who helps carry a stretcher
+73705,stretcher_party,a party of people with stretchers to carry an injured person
+73706,stretching,act of expanding by lengthening or widening
+73707,streusel,pastry with a topping of streusel
+73708,streusel,a crumbly topping for a pastry
+73709,stria striation,any of a number of tiny parallel grooves such as: the scratches left by a glacier on rocks or the streaks or ridges in muscle tissue
+73710,striate_cortex striate_area first_visual_area area_17_of_Brodmann Brodmann's_area_17,the part of the occipital cortex that receives the fibers of the optic radiation from the lateral geniculate body and is the primary receptive area for vision
+73711,striated_muscle_cell striated_muscle_fiber,an elongated contractile cell in striated muscle tissue
+73712,striated_muscle_tissue,muscle tissue characterized by transverse stripes
+73713,strickle,an implement for sharpening scythes
+73714,strickle,a tool or rod used to level off grain or other granular material that is heaped in a measure
+73715,strickle,a tool used in a foundry to shape a mold in sand
+73716,strictness stringency,conscientious attention to rules and details
+73717,stricture,severe criticism
+73718,stride,significant progress (especially in the phrase `make strides'); "they made big strides in productivity"
+73719,strider,a person who walks rapidly with long steps; "he was such a strider that she couldn't keep up without running"
+73720,stridor,a whistling sound when breathing (usually heard on inspiration); indicates obstruction of the trachea or larynx
+73721,stridulation,a shrill grating or chirping noise made by some insects by rubbing body parts together
+73722,strife,bitter conflict; heated often violent dissension
+73723,strike,an attack that is intended to seize or inflict damage on or destroy an objective; "the strike was scheduled to begin at dawn"
+73724,strike,(baseball) a pitch that the batter swings at and misses, or that the batter hits into foul territory, or that the batter does not swing at but the umpire judges to be in the area over home plate and between the batter's knees and shoulders; "this pitcher throws more strikes than balls"
+73725,strike ten-strike,a score in tenpins: knocking down all ten with the first ball; "he finished with three strikes in the tenth frame"
+73726,strike work_stoppage,a group's refusal to work in protest against low pay or bad work conditions; "the strike lasted more than a month before it was settled"
+73727,strike-slip_fault,a geological fault in which one of the adjacent surfaces appears to have moved horizontally
+73728,strike_leader,someone who leads a strike
+73729,strike_pay,money paid to strikers from union funds
+73730,strike_zone,(baseball) the area over home plate between a batter's knees and shoulders through which a pitch must pass in order to be called a strike
+73731,strikebreaking,confrontational activities intended to break up a strike by workers
+73732,strikeout,an out resulting from the batter getting three strikes
+73733,striker,a forward on a soccer team
+73734,striker,someone receiving intensive training for a naval technical rating
+73735,striker,an employee on strike against an employer
+73736,striker,the part of a mechanical device that strikes something
+73737,string,a tough piece of fiber in vegetables, meat, or other food (especially the tough fibers connecting the two halves of a bean pod)
+73738,string,a linear sequence (as of characters, words, proteins, etc.)
+73739,string,a collection of objects threaded on a single strand
+73740,string,a tightly stretched cord of wire or gut, as a part of an instrument or a tennis racket
+73741,string cosmic_string,(cosmology) a hypothetical one-dimensional subatomic particle having a concentration of energy and the dynamic properties of a flexible loop
+73742,string train,a sequentially ordered set of things or events or ideas in which each successive member is related to the preceding; "a string of islands"; "train of mourners"; "a train of thought"
+73743,string twine,a lightweight cord
+73744,string_bean,green beans with strings that must be removed
+73745,string_cheese,cheese formed in long strings twisted together
+73746,string_of_words word_string linguistic_string,a linear sequence of words as spoken or written
+73747,string_orchestra,an orchestra playing only stringed instruments
+73748,string_quartet string_quartette,an instrumental quartet with 2 violins and a viola and a cello
+73749,string_section strings,the section of an orchestra that plays stringed instruments
+73750,string_theory,(particle physics) a theory that postulates that subatomic particles are one-dimensional strings
+73751,string_tie,a very narrow necktie usually tied in a bow
+73752,stringed_instrument,a musical instrument in which taut strings provide the source of sound
+73753,stringency tightness,a state occasioned by scarcity of money and a shortage of credit
+73754,stringer,a member of a squad on a team; "a first stringer"; "a second stringer"
+73755,stringer,a worker who strings; "a stringer of beads"
+73756,stringer,brace consisting of a longitudinal member to strengthen a fuselage or hull
+73757,stringer,a long horizontal timber to connect uprights
+73758,stringybark,any of several Australian eucalypts having fibrous inner bark
+73759,stringybark_pine Callitris_parlatorei,Australian cypress pine with fibrous inner bark
+73760,strip,a relatively long narrow piece of something; "he felt a flat strip of muscle"
+73761,strip,thin piece of wood or metal
+73762,strip slip,artifact consisting of a narrow flat piece of material
+73763,strip striptease strip_show,a form of erotic entertainment in which a dancer gradually undresses to music; "she did a strip right in front of everyone"
+73764,strip_alert,a state of readiness for domestic defense aircraft; "the Air Force will keep fighters on strip alert at bases around the country"
+73765,strip_cropping,cultivation of crops in strips following the contours of the land to minimize erosion
+73766,strip_lighting,light consisting of long tubes (instead of bulbs) that provide the illumination
+73767,strip_mall,a mercantile establishment consisting of a row of various stores and business and restaurants along a road or busy street; usually opening on a parking lot
+73768,strip_mine,an open mine (usually for coal) where the seams run close to the surface
+73769,strip_miner,a miner who does strip mining
+73770,strip_mining opencast_mining,the mining of ore or coal from an open mine
+73771,strip_poker,poker in which a player's losses are paid by removing an article of clothing
+73772,strip_search,searching someone for concealed weapons or illegal drugs by having them remove their clothes
+73773,strip_steak New_York_strip,steak from upper part of the short loin
+73774,stripe,a piece of braid, usually on the sleeve, indicating military rank or length of service
+73775,stripe,a kind or category; "businessmen of every stripe joined in opposition to the proposal"
+73776,stripe streak bar,a narrow marking of a different color or texture from the background; "a green toad with small black stripes or bars"; "may the Stars and Stripes forever wave"
+73777,stripe_blight,a disease of oats
+73778,striped_bass striper,caught along the Atlantic coast of the United States
+73779,striped_bass striper Roccus_saxatilis rockfish,marine food and game fish with dark longitudinal stripes; migrates upriver to spawn; sometimes placed in the genus Morone
+73780,striped_button_quail Turnix_sylvatica,a variety of button quail having stripes
+73781,striped_coral_root Corallorhiza_striata,nearly leafless wildflower with erect reddish-purple stems bearing racemes of pale pinkish and brownish-striped flowers; western Canada to Mexico
+73782,striped_drum Equetus_pulcher,a kind of drumfish
+73783,striped_gentian Gentiana_villosa,a perennial marsh gentian of eastern North America
+73784,striped_hyena Hyaena_hyaena,of northern Africa and Arabia and India
+73785,striped_killifish mayfish may_fish Fundulus_majalis,black-barred fish of bays and coastal marshes of the Atlantic and Gulf Coast of the United States
+73786,striped_marlin Makaira_mitsukurii,Pacific food and game fish marked with dark blue vertical stripes
+73787,striped_muishond Ictonyx_striata,ferret-sized muishond often tamed
+73788,striped_mullet Mugil_cephalus,most important commercial mullet in eastern United States
+73789,striped_skunk Mephitis_mephitis,most common and widespread North American skunk
+73790,striper,a serviceman who wears stripes on the uniform to indicate rank or years of service; "he's a four-striper"
+73791,striping,the act of marking with stripes
+73792,stripper,a chemical compound used to remove paint or varnish
+73793,stripper stemmer sprigger,a worker who strips the stems from moistened tobacco leaves and binds the leaves together into books
+73794,stripper striptease_artist striptease stripteaser exotic_dancer ecdysiast peeler,a performer who provides erotic entertainment by undressing to music
+73795,stripper_well stripper,an oil well whose production has declined to less than ten barrels a day
+73796,striving nisus pains strain,an effortful attempt to attain a goal
+73797,stroboscope strobe strobe_light,scientific instrument that provides a flashing light synchronized with the periodic movement of an object; can make moving object appear stationary
+73798,stroke,(golf) the unit of scoring in golf is the act of hitting the ball with a club; "Nicklaus won by three strokes"
+73799,stroke,the oarsman nearest the stern of the shell who sets the pace for the rest of the crew
+73800,stroke,a light touch
+73801,stroke,a mark made on a surface by a pen, pencil, or paintbrush; "she applied the paint in careful strokes"
+73802,stroke,any one of the repeated movements of the limbs and body used for locomotion in swimming or rowing
+73803,stroke,a single complete movement
+73804,stroke apoplexy cerebrovascular_accident CVA,a sudden loss of consciousness resulting when the rupture or occlusion of a blood vessel leads to oxygen lack in the brain
+73805,stroke shot,(sports) the act of swinging or striking at a ball with a club or racket or bat or cue or hand; "it took two strokes to get out of the bunker"; "a good shot requires good balance and tempo"; "he left me an almost impossible shot"
+73806,stroke stroking,a light touch with the hands
+73807,stroma,a mass of fungal tissue that has spore-bearing structures embedded in it or on it
+73808,stroma,the dense colorless framework of a chloroplast
+73809,stroma,the supporting tissue of an organ (as opposed to parenchyma)
+73810,strong_breeze,wind moving 25-31 knots; 6 on the Beaufort scale
+73811,strong_gale,wind moving 47-54 knots; 9 on the Beaufort scale
+73812,strong_interaction strong_force color_force,(physics) the interaction that binds protons and neutrons together in the nuclei of atoms; mediated by gluons
+73813,strong_suit,a long suit including high cards
+73814,strongbox deedbox,a strongly made box for holding money or valuables; can be locked
+73815,stronghold fastness,a strongly fortified defensive structure
+73816,strongman,a man who performs feats of strength at a fair or circus
+73817,strongman,a powerful political figure who rules by the exercise of force or violence; "he is determined to bring down the Iraqi strongman"
+73818,strongroom,a burglarproof and fireproof room in which valuables are kept
+73819,strontianite,a mineral consisting of strontium carbonate
+73820,strontium Sr atomic_number_38,a soft silver-white or yellowish metallic element of the alkali metal group; turns yellow in air; occurs in celestite and strontianite
+73821,strontium_90,a radioactive isotope of strontium (with the mass number 90) that is present in the fallout from nuclear explosions; can be assimilated like calcium into bones
+73822,strop,a leather strap used to sharpen razors
+73823,strophanthin,a bitter and very toxic glycoside derived from plants of the genus Strophanthus; in moderate doses it is a cardiac stimulant but in larger doses it is a powerful poison; used in Africa as an arrow poison
+73824,strophanthus,any of various shrubs or small trees of the genus Strophanthus having whorled leaves and showy flowers of various colors in dense and corymbose clusters; some have poisonous seeds
+73825,strophe,one section of a lyric poem or choral ode in classical Greek drama
+73826,structural_formula,an expanded molecular formula showing the arrangement of atoms within the molecule
+73827,structural_gene,a gene that controls the production of a specific protein or peptide
+73828,structural_genomics,the branch of genomics that determines the three-dimensional structures of proteins
+73829,structural_iron,iron that has been cast or worked in structural shapes
+73830,structural_member,support that is a constituent part of any structure or building
+73831,structural_steel,a strong steel that is rolled into shapes that are used in construction
+73832,structuralism structural_anthropology,an anthropological theory that there are unobservable social structures that generate observable social phenomena
+73833,structuralism structural_linguistics,linguistics defined as the analysis of formal structures in a text or discourse
+73834,structuralism structural_sociology,a sociological theory based on the premise that society comes before individuals
+73835,structure,the complex composition of knowledge as elements and their combinations; "his lectures have no structure"
+73836,structure,the manner of construction of something and the arrangement of its parts; "artists must study the structure of the human body"; "the structure of the benzene molecule"
+73837,structure anatomical_structure complex_body_part bodily_structure body_structure,a particular complex anatomical part of a living thing and its construction and arrangement; "he has good bone structure"
+73838,structure construction,a thing constructed; a complex entity constructed of many parts; "the structure consisted of a series of arches"; "she wore her hair in an amazing construction of whirls and ribbons"
+73839,strudel,thin sheet of filled dough rolled and baked
+73840,struggle,strenuous effort; "the struggle to get through the crowd exhausted her"
+73841,struggle battle,an energetic attempt to achieve something; "getting through the crowd was a real struggle"; "he fought a battle for recognition"
+73842,struggler,a person who struggles with difficulties or with great effort
+73843,strum,sound of strumming; "the strum of a guitar"
+73844,strut,brace consisting of a bar or rod used to resist longitudinal compression
+73845,strut prance swagger,a proud stiff pompous gait
+73846,struthiomimus,small light-boned toothless dinosaur resembling an ostrich in size and proportions
+73847,strychnine,an alkaloid plant toxin extracted chiefly from nux vomica; formerly used as a stimulant
+73848,stub,a short piece remaining on a trunk or stem where a branch is lost
+73849,stub check_stub counterfoil,the part of a check that is retained as a record
+73850,stub ticket_stub,a torn part of a ticket returned to the holder as a receipt
+73851,stub_nail,a short thick nail
+73852,stubble,short stiff hairs growing on a man's face when he has not shaved for a few days
+73853,stubbornness bullheadedness obstinacy obstinance pigheadedness self-will,resolute adherence to your own ideas or desires
+73854,stubbornness obstinacy obstinance mulishness,the trait of being difficult to handle or overcome
+73855,stucco,a plaster now made mostly from Portland cement and sand and lime; applied while soft to cover exterior walls or surfaces
+73856,stud he-man macho-man,a man who is virile and sexually active
+73857,stud rivet,ornament consisting of a circular rounded protuberance (as on a vault or shield or belt)
+73858,stud stud_poker,poker in which each player receives hole cards and the remainder are dealt face up; bets are placed after each card is dealt
+73859,stud studhorse,adult male horse kept for breeding
+73860,stud_farm,a farm where horses are bred
+73861,stud_finder,a small permanent magnet in a metal container; when the magnet clicks against the container it indicates that the magnet is directly over an iron nail that holds the wallboard to a stud
+73862,studbook,official record of the pedigree of purebred animals especially horses
+73863,student pupil educatee,a learner who is enrolled in an educational institution
+73864,student_center,a center for student activities at a college or university
+73865,student_lamp,a reading lamp with a flexible neck; used on a desk
+73866,student_teacher practice_teacher,a college student who is teaching under the supervision of a certified teacher in order to qualify for a degree in education
+73867,student_union,a building on a college campus dedicated to social and organizational activities of the student body
+73868,studentship,the position of student
+73869,studio,workplace consisting of a room or building where movies or television shows or radio programs are produced and recorded
+73870,studio,workplace for the teaching or practice of an art; "she ran a dance studio"; "the music department provided studios for their students"; "you don't need a studio to make a passport photograph"
+73871,studio_apartment studio,an apartment with a living space and a bathroom and a small kitchen
+73872,studio_couch day_bed,convertible consisting of an upholstered couch that can be converted into a double bed
+73873,studiousness,diligent study
+73874,study,someone who memorizes quickly and easily (as the lines for a part in a play); "he is a quick study"
+73875,study,a composition intended to develop one aspect of the performer's technique; "a study in spiccato bowing"
+73876,study,a state of deep mental absorption; "she is in a deep study"
+73877,study,a room used for reading and writing and studying; "he knocked lightly on the closed door of the study"
+73878,study work,applying the mind to learning and understanding a subject (especially by reading); "mastering a second language requires a lot of work"; "no schools offer graduate study in interior design"
+73879,study_hall,a period of time during the school day that is set aside for study
+73880,study_hall,a classroom reserved for study
+73881,stuff,information in some unspecified form; "it was stuff I had heard before"; "there's good stuff in that book"
+73882,stuff,a critically important or characteristic component; "suspense is the very stuff of narrative"
+73883,stuff,unspecified qualities required to do or be something; "the stuff of heros"; "you don't have the stuff to be a United States Marine"
+73884,stuff,miscellaneous unspecified objects; "the trunk was full of stuff"
+73885,stuff clobber,informal terms for personal possessions; "did you take all your clobber?"
+73886,stuff stuff_and_nonsense hooey poppycock,senseless talk; "don't give me that stuff"
+73887,stuffed_cabbage,parboiled head of cabbage scooped out and filled with a hash of chopped e.g. beef or ham and baked; served with tomato or cheese sauce
+73888,stuffed_mushroom,mushrooms stuffed with any of numerous mixtures of e.g. meats or nuts or seafood or spinach
+73889,stuffed_peppers,parboiled green peppers stuffed usually with rice and meat and baked briefly
+73890,stuffed_shirt,a bore who is extremely formal, pompous, and old-fashioned
+73891,stuffed_tomato cold_stuffed_tomato,tomato cases filled with various salad mixtures and served cold
+73892,stuffed_tomato hot_stuffed_tomato,tomato cases filled with various mixtures and baked briefly
+73893,stuffer,an advertising circular that is enclosed with other material and (usually) sent by mail
+73894,stuffiness,state of obstruction or stoppage or air in the nose or throat
+73895,stuffiness closeness,the quality of being close and poorly ventilated
+73896,stuffing,padding put in mattresses and cushions and upholstered furniture
+73897,stuffing dressing,a mixture of seasoned ingredients used to stuff meats and vegetables
+73898,stuffing_box packing_box,a small chamber in which packing is compressed around a reciprocating shaft or piston to form a seal
+73899,stuffing_nut packing_nut,a nut used to tighten a stuffing box
+73900,stultification befooling,derision of someone or something as foolish or absurd or inconsistent
+73901,stultification constipation impairment deadening,the act of making something futile and useless (as by routine)
+73902,stumblebum palooka,a second-rate prize fighter
+73903,stumbler tripper,a walker or runner who trips and almost falls
+73904,stumbling_block,any obstacle or impediment
+73905,stump,the part of a limb or tooth that remains after the rest is removed
+73906,stump,(cricket) any of three upright wooden posts that form the wicket
+73907,stump tree_stump,the base part of a tree that remains standing after the tree has been felled
+73908,stump_speech,political oratory
+73909,stumping,campaigning for something by making political speeches (stump speeches)
+73910,stun_gun stun_baton,a weapon designed to disable a victim temporarily by delivering a nonlethal high-voltage electric shock
+73911,stunner,an unexpected and amazing event; "the stunner was what happened on Saturday"
+73912,stunt,a creature (especially a whale) that has been prevented from attaining full growth
+73913,stunt,a difficult or unusual or dangerous feat; usually done to gain attention
+73914,stupa tope,a dome-shaped shrine erected by Buddhists
+73915,stupefaction,a feeling of stupefied astonishment
+73916,stupefaction,the action of stupefying; making dull or lethargic; "the professor was noted for his stupefaction of the students"
+73917,stupid stupid_person stupe dullard dolt pudding_head pudden-head poor_fish pillock,a person who is not very bright; "The economy, stupid!"
+73918,stupidity,a poor ability to understand or to profit from experience
+73919,stupidity betise folly foolishness imbecility,a stupid mistake
+73920,sturdiness,the state of being vigorous and robust
+73921,sturdiness,the property of something that is strongly built
+73922,sturdiness,resoluteness evidenced by strength of character; "sturdiness of moral principle"
+73923,sturgeon,large primitive fishes valued for their flesh and roe; widely distributed in the North Temperate Zone
+73924,sty pigsty pigpen,a pen for swine
+73925,sty stye hordeolum eye_infection,an infection of the sebaceous gland of the eyelid
+73926,style,(botany) the narrow elongated part of the pistil between the ovary and the stigma
+73927,style,editorial directions to be followed in spelling and punctuation and capitalization and typographical display
+73928,style,a particular kind (as to appearance); "this style of shoe is in demand"
+73929,style,a slender bristlelike or tubular process; "a cartilaginous style"
+73930,style_sheet,a sheet summarizing the editorial conventions to be followed in preparing text for publication
+73931,stylet,small needlelike appendage; especially the feeding organ of a tardigrade
+73932,stylist,an artist who is a master of a particular style
+73933,stylite,an early Christian ascetic who lived on top of high pillars
+73934,stylization stylisation,the act of stylizing; causing to conform to a particular style
+73935,styloid_process,extends from the base of the temporal bone
+73936,stylomastoid_vein vena_stylomastoidea,a vein that drains the tympanic cavity and empties into the retromandibular vein
+73937,stylopodium,an enlargement at the base of the style in some Umbelliferae
+73938,stylus,a sharp pointed device attached to the cartridge of a record player
+73939,stylus style,a pointed tool for writing or drawing or engraving; "he drew the design on the stencil with a steel stylus"
+73940,stymie stymy,a situation in golf where an opponent's ball blocks the line between your ball and the hole
+73941,stymie stymy,a thwarting and distressing situation
+73942,styracosaur styracosaurus,an unusual ceratopsian dinosaur having many large spikes around the edge of its bony frill and a long nose horn; late Cretaceous
+73943,styrax,any shrub or small tree of the genus Styrax having fragrant bell-shaped flowers that hang below the dark green foliage
+73944,styrene cinnamene phenylethylene vinylbenzene,a colorless oily liquid; the monomer for polystyrene
+73945,suavity suaveness blandness smoothness,the quality of being bland and gracious or ingratiating in manner
+73946,sub-assembly,a unit assembled separately but designed to fit with other units in a manufactured product
+73947,sub-interval,an interval that is included in another interval
+73948,sub-test,one of a battery of related tests
+73949,subacute_bacterial_endocarditis,a chronic bacterial infection of the endocardium and heart valves; symptoms develop slowly
+73950,subacute_sclerosing_panencephalitis SSPE inclusion_body_encephalitis subacute_inclusion_body_encephalitis sclerosing_leukoencephalitis subacute_sclerosing_leukoencephalitis Bosin's_disease Dawson's_encephalitis Van_Bogaert_encephalitis,a rare chronic progressive encephalitis caused by the measles virus and occurring primarily in children and young adults; death usually occurs within three years; characterized by primary measles infection before the age of two years
+73951,subalpine_larch Larix_lyallii,medium-sized larch of the Rocky Mountains; closely related to Larix occidentalis
+73952,subaltern,a British commissioned army officer below the rank of captain
+73953,subarachnoid_space,a space in the meninges beneath the arachnoid membrane and above the pia mater that contains the cerebrospinal fluid
+73954,subbase,the lowest molding of an architectural base or of a baseboard
+73955,subbing substituting,working as a substitute for someone who is ill or on leave of absence
+73956,subclass,(biology) a taxonomic category below a class and above an order
+73957,subclavian_artery arteria_subclavia,either of two arteries that supply blood to the neck and arms
+73958,subclavian_vein vena_subclavia,a continuation of the axillary vein; joins the internal jugular to form the brachiocephalic vein
+73959,subclinical_absence,a transient impairment of cortical function demonstrable only by 3-per-second brainwave spikes
+73960,subcommittee,a subset of committee members organized for a specific purpose
+73961,subcompact subcompact_car,a car smaller than a compact car
+73962,subconscious_mind subconscious,psychic activity just below the level of awareness
+73963,subconsciousness,a state of mind not immediately available to consciousness
+73964,subcontinent,a large and distinctive landmass (as India or Greenland) that is a distinct part of some continent
+73965,subcontract,a contract assigning to another party some obligations of a prior contract
+73966,subcontractor,someone who enters into a subcontract with the primary contractor
+73967,subculture,a social group within a national culture that has distinctive patterns of behavior and beliefs
+73968,subcutaneous_injection,an injection under the skin
+73969,subdata_base,a subset of data in a database that are used in a specific application
+73970,subdeacon,a clergyman an order below deacon; one of the Holy Orders in the unreformed western Christian church and the eastern Catholic Churches but now suppressed in the Roman Catholic Church
+73971,subdirectory,(computer science) a directory that is listed in another directory
+73972,subdivider,someone who divides parts into smaller parts (especially a divider of land into building sites)
+73973,subdivision,an area composed of subdivided lots
+73974,subdivision,the act of subdividing; division of something previously divided
+73975,subdominant,(music) the fourth note of the diatonic scale
+73976,subduction,a geological process in which one edge of a crustal plate is forced sideways and downward into the mantle below another plate
+73977,subduer surmounter overcomer,someone who overcomes and establishes ascendancy and control by force or persuasion
+73978,subeditor,an assistant editor
+73979,suberic_acid octanedioic_acid,a dicarboxylic acid found in cork
+73980,subfamily,(biology) a taxonomic category below a family
+73981,subfigure,a figure that is a part of another figure
+73982,subgenus,(biology) taxonomic group between a genus and a species
+73983,subgenus_Azalea Azaleastrum subgenus_Azaleastrum,group of evergreen or deciduous shrubs formerly considered a separate genus; now included in the genus Rhododendron
+73984,subgenus_Calliopsis,used in some classification systems for some plants of genus Coreopsis
+73985,subgroup,a distinct and often subordinate group within a group
+73986,subgroup,(mathematics) a subset (that is not empty) of a mathematical group
+73987,subheading subhead,a heading of a subdivision of a text
+73988,subject,(logic) the first term of a proposition
+73989,subject,(grammar) one of the two main constituents of a sentence; the grammatical constituent about which something is predicated
+73990,subject case guinea_pig,a person who is subjected to experimental or other observational procedures; someone who is an object of investigation; "the subjects for this investigation were selected randomly"; "the cases that we studied were drawn from two different communities"
+73991,subject content depicted_object,something (a person or object or scene) selected by an artist or photographer for graphic representation; "a moving picture of a train is more dramatic than a still picture of the same subject"
+73992,subject topic theme,the subject matter of a conversation or discussion; "he didn't want to discuss that subject"; "it was a very sensitive topic"; "his letters were always on the theme of love"
+73993,subjectivism,(philosophy) the doctrine that knowledge and value are dependent on and limited by your subjective experience
+73994,subjectivism,the quality of being subjective
+73995,subjectivist,a person who subscribes to subjectivism
+73996,subjectivity subjectiveness,judgment based on individual personal impressions and feelings and opinions rather than external facts
+73997,subjugation subjection,forced submission to control by others
+73998,subjugator,a conqueror who defeats and enslaves
+73999,subjunctive_mood subjunctive,a mood that represents an act or state (not as a fact but) as contingent or possible
+74000,subkingdom,(biology) a taxonomic group comprising a major division of a kingdom
+74001,sublease sublet,a lease from one lessee to another
+74002,sublieutenant,an officer ranking next below a lieutenant
+74003,sublimate,the product of vaporization of a solid
+74004,sublimation,(chemistry) a change directly from the solid to the gaseous state without becoming liquid
+74005,sublimation,(psychology) modifying the natural expression of an impulse or instinct (especially a sexual one) to one that is socially acceptable
+74006,sublimity,nobility in thought or feeling or style
+74007,sublingual_gland sublingual_salivary_gland,a small salivary gland that produces mucin (the viscous component of saliva); in human beings it is located on either side of the mouth under the tongue
+74008,sublingual_vein vena_sublingualis,a tributary of the lingual vein
+74009,subluxation,partial displacement of a joint or organ
+74010,submachine_gun,machine gun that is a portable automatic firearm
+74011,submarine pigboat sub U-boat,a submersible warship usually armed with torpedoes
+74012,submarine_ball submarine_pitch,a pitch thrown sidearm instead of overhead
+74013,submarine_torpedo,a torpedo designed to be launched from a submarine
+74014,submariner,a member of the crew of a submarine
+74015,submaxillary_gland submaxillary_salivary_gland submandibular_gland submandibular_salivary_gland mandibular_gland,a salivary gland inside the lower jaw on either side that produces most of the nocturnal saliva; discharges saliva into the mouth under the tongue
+74016,submediant,(music) the sixth note of a major or minor scale (or the third below the tonic)
+74017,submergence submerging submersion immersion,sinking until covered completely with water
+74018,submersible,an apparatus intended for use under water
+74019,submersible submersible_warship,a warship designed to operate under water
+74020,submersion immersion ducking dousing,the act of wetting something by submerging it
+74021,submission,the condition of having submitted to control by someone or something else; "the union was brought into submission"; "his submission to the will of God"
+74022,submission,a legal document summarizing an agreement between parties in a dispute to abide by the decision of an arbiter
+74023,submission,an agreement between parties in a dispute to abide by the decision of an arbiter
+74024,submission,(law) a contention presented by a lawyer to a judge or jury as part of the case he is arguing
+74025,submission compliance,the act of submitting; usually surrendering power to another
+74026,submission entry,something (manuscripts or architectural plans and models or estimates or works of art of all genres etc.) submitted for the judgment of others (as in a competition); "several of his submissions were rejected by publishers"; "what was the date of submission of your proposal?"
+74027,submissiveness,the trait of being willing to yield to the will of another person or a superior force etc.
+74028,submitter,someone who yields to the will of another person or force
+74029,submitter,someone who submits something (as an application for a job or a manuscript for publication etc.) for the judgment of others; "he was a prolific submitter of proposals"
+74030,submucosa,the connective tissue beneath mucous membrane
+74031,subnormal,a person of less than normal intelligence
+74032,subnormality,the state of being less than normal (especially with respect to intelligence)
+74033,suborder,(biology) taxonomic group that is a subdivision of an order
+74034,suborder_Ceratosaura,primitive saurischian dinosaurs
+74035,suborder_Pachycephalosaurus,boneheaded dinosaurs; late Cretaceous
+74036,subordinate subsidiary underling foot_soldier,an assistant subject to the authority or control of another
+74037,subordinate_clause dependent_clause,a clause in a complex sentence that cannot stand alone as a complete sentence and that functions within the sentence as a noun or adjective or adverb
+74038,subordinateness subsidiarity,secondary importance
+74039,subordinating_conjunction,the subordination that occurs when a conjunction makes one linguistic unit a constituent of another
+74040,subordinating_conjunction subordinate_conjunction,a conjunction (like `since' or `that' or `who') that introduces a dependent clause
+74041,subordination,the state of being subordinate to something
+74042,subordination,the grammatical relation of a modifying word or phrase to its head
+74043,subordination,the quality of obedient submissiveness
+74044,subornation,underhandedly or improperly inducing someone to do something improper or unlawful
+74045,subornation,perjured testimony that someone was persuaded to give
+74046,subornation_of_perjury,(law) inducing someone to make a false oath as part of a judicial proceeding; "to prove subordination of perjury you must prove the perjury and also prove that the perjured statement was procured by the accused suborner who knew that it would be false"
+74047,subpart,a part of a part
+74048,subphylum,(biology) a taxonomic group ranking between a phylum and a class
+74049,subpoena subpoena_ad_testificandum,a writ issued by court authority to compel the attendance of a witness at a judicial proceeding; disobedience may be punishable as a contempt of court
+74050,subpoena_duces_tecum,a writ issued by a court at the request of one of the parties to a suit; it requires a witness to bring to court or to a deposition any relevant documents under the witness's control
+74051,subpopulation,a population that is part of a larger population
+74052,subrogation,(law) the act of substituting of one creditor for another
+74053,subscriber contributor,someone who contributes (or promises to contribute) a sum of money
+74054,subscriber endorser indorser ratifier,someone who expresses strong approval
+74055,subscriber reader,someone who contracts to receive and pay for a service or a certain number of issues of a publication
+74056,subscript inferior,a character or symbol set or printed or written beneath or slightly below and to the side of another character
+74057,subscription,a payment for consecutive issues of a newspaper or magazine for a given period of time
+74058,subscription,agreement expressed by (or as if expressed by) signing your name
+74059,subscription,a pledged contribution
+74060,subscription,the act of signing your name; writing your signature (as on a document); "the deed was attested by the subscription of his signature"
+74061,subscription_right,the right of a shareholder in a company to subscribe to shares of a new issue of common stock before it is offered to the public
+74062,subscription_warrant,a warrant that expires on a stipulated date
+74063,subsection subdivision,a section of a section; a part of a part; i.e., a part of something already divided
+74064,subservience,the condition of being something that is useful in reaching an end or carrying out a plan; "all his actions were in subservience to the general plan"
+74065,subservience subservientness,in a subservient state
+74066,subset,a set whose members are members of another set; a set contained within another set
+74067,subshrub suffrutex,low-growing woody shrub or perennial with woody base
+74068,subsidiary_company subsidiary,a company that is completely controlled by another company
+74069,subsidiary_ledger,details of an account supporting the amount stated in the general ledger
+74070,subsidization subsidisation,money (or other benefits) obtained as a subsidy
+74071,subsidizer subsidiser,someone who assists or supports by giving a subsidy
+74072,subsidy,a grant paid by a government to an enterprise that benefits the public; "a subsidy for research in artificial intelligence"
+74073,subsistence,a means of surviving; "farming is a hard means of subsistence"
+74074,subsistence,the state of existing in reality; having substance
+74075,subsistence,minimal (or marginal) resources for subsisting; "social security provided only a bare subsistence"
+74076,subsistence_farming,farming that provides for the basic needs of the farmer without surpluses for marketing
+74077,subsoil undersoil,the layer of soil between the topsoil and bedrock
+74078,subspace,a space that is contained within another space
+74079,subspecies race,(biology) a taxonomic group that is a division of a species; usually arises as a consequence of geographical isolation within a species
+74080,substance,material of a particular kind or constitution; "the immune response recognizes invading substances"
+74081,substance,a particular kind or species of matter with uniform properties; "shigella is one of the most toxic substances known to man"
+74082,substance,the real physical matter of which a person or thing consists; "DNA is the substance of our genes"
+74083,substance_abuse drug_abuse habit,excessive use of drugs
+74084,substantia_nigra nucleus_niger locus_niger,a layer of deeply pigmented grey matter in the midbrain; associated with the striate body; is involved in metabolic disturbances associated with Parkinson's disease and with Huntington's disease
+74085,substantiality substantialness solidness,the quality of being substantial or having substance
+74086,substantive,any word or group of words functioning as a noun
+74087,substation,a subsidiary station where electricity is transformed for distribution by a low-voltage network
+74088,substitute replacement,a person or thing that takes or can take the place of another
+74089,substitute reserve second-stringer,an athlete who plays only when a starter on the team is replaced
+74090,substitution exchange commutation,the act of putting one thing or person in the place of another: "he sent Smith in for Jones but the substitution came too late to help"
+74091,substitution permutation transposition replacement switch,an event in which one thing is substituted for another; "the replacement of lost blood by a transfusion of donor blood"
+74092,substitution_class paradigm,the class of all items that can be substituted into the same position (or slot) in a grammatical sentence (are in paradigmatic relation with one another)
+74093,substrate,the substance that is acted upon by an enzyme or ferment
+74094,substrate substratum,a surface on which an organism grows or is attached; "the gardener talked about the proper substrate for acid-loving plants"
+74095,substrate substratum,any stratum or layer lying underneath another
+74096,substrate substratum,an indigenous language that contributes features to the language of an invading people who impose their language on the indigenous population; "the Celtic languages of Britain are a substrate for English"
+74097,substring,a string that is part of a longer string
+74098,subsumption,incorporating something under a more general category
+74099,subsystem,a system that is part of some larger system
+74100,subterfuge blind,something intended to misrepresent the true nature of an activity; "he wasn't sick--it was just a subterfuge"; "the holding company was just a blind"
+74101,subthalamic_nucleus,an oval mass of grey matter located in the caudal part of the subthalamus; associated with the striate body
+74102,subthalamus,the ventral part of the thalamus
+74103,subtilin,a polypeptide antibiotic (similar to bacitracin) obtained from a soil bacterium
+74104,subtitle,secondary or explanatory title
+74105,subtitle caption,translation of foreign dialogue of a movie or TV program; usually displayed at the bottom of the screen
+74106,subtlety niceness,the quality of being difficult to detect or analyze; "you had to admire the subtlety of the distinctions he drew"
+74107,subtonic leading_tone,(music) the seventh note of the diatonic scale
+74108,subtopia,monotonous urban sprawl of standardized buildings
+74109,subtotal,the sum of part of a group of numbers
+74110,subtracter,a person who subtracts numbers
+74111,subtracter,a machine that subtracts numbers
+74112,subtraction deduction,the act of subtracting (removing a part from the whole); "he complained about the subtraction of money from their paychecks"
+74113,subtraction minus,an arithmetic operation in which the difference between two numbers is calculated; "the subtraction of three from four leaves one"; "four minus three equals one"
+74114,subtrahend,the number to be subtracted from the minuend
+74115,subtreasury,a subordinate treasury or place of deposit
+74116,subtropics semitropics,regions adjacent to the tropics
+74117,suburb suburbia suburban_area,a residential district located on the outskirts of a city
+74118,suburbanite,a resident of a suburb
+74119,suburbia,suburbanites considered as a cultural class or subculture
+74120,subvention,grant of financial aid as from a government to an educational institution
+74121,subvention,the act or process of providing aid or help of any sort
+74122,subversion subversive_activity,the act of subverting; as overthrowing or destroying a legally constituted government
+74123,subvocalizer subvocaliser,someone who articulates speech without uttering sounds
+74124,subway_fare,the fare charged for riding a subway train
+74125,subway_station,a terminal where subways load and unload passengers
+74126,subway_token,a token that is used to pay for entry to the subway system
+74127,subway_train,a train that runs in a subway system
+74128,subwoofer,a loudspeaker that is designed to reproduce very low bass frequencies
+74129,succedaneum,(medicine) something that can be used as a substitute (especially any medicine that may be taken in place of another)
+74130,success,a state of prosperity or fame; "he is enjoying great success"; "he does not consider wealth synonymous with success"
+74131,success,an event that accomplishes its intended purpose; "let's call heads a success and tails a failure"; "the election was a remarkable success for the Whigs"
+74132,success,an attainment that is successful; "his success in the marathon was unexpected"; "his new play was a great success"
+74133,succession,a group of people or things arranged or following in order; "a succession of stalls offering soft drinks"; "a succession of failures"
+74134,succession ecological_succession,(ecology) the gradual and orderly process of change in an ecosystem brought about by the progressive replacement of one community by another until a stable climax is established
+74135,succession sequence,the action of following in order; "he played the trumps in sequence"
+74136,succession taking_over,acquisition of property by descent or by will
+74137,successor,a thing or person that immediately replaces something or someone
+74138,successor heir,a person who inherits some title or office
+74139,successor replacement,a person who follows next in order; "he was President Lincoln's successor"
+74140,succinic_acid,a dicarboxylic acid (C4H6O4) active in metabolic processes
+74141,succinylcholine,a muscle relaxant for striated muscle that is used as an adjunct to anesthesia during certain surgical procedures
+74142,succorer succourer,someone who gives help in times of need or distress or difficulty
+74143,succotash,fresh corn and lima beans with butter or cream
+74144,succubus succuba,a female demon believed to have sexual intercourse with sleeping men
+74145,succulence succulency juiciness,a juicy appetizingness
+74146,succulent,a plant adapted to arid conditions and characterized by fleshy water-storing tissues that act as water reservoirs
+74147,succussion,shaking a person to determine whether a large amount of liquid is present in a body cavity
+74148,sucker,a shoot arising from a plant's roots
+74149,sucker,a drinker who sucks (as at a nipple or through a straw)
+74150,sucker,flesh of any of numerous North American food fishes with toothless jaws
+74151,sucker,an organ specialized for sucking nourishment or for adhering to objects by suction
+74152,sucker,mostly North American freshwater fishes with a thick-lipped mouth for feeding by suction; related to carps
+74153,sucker_punch,an unexpected punch
+74154,sucking suck suction,the act of sucking
+74155,sucking_pig,an unweaned piglet
+74156,suckling,a young mammal that has not been weaned
+74157,suckling lactation,feeding an infant by giving suck at the breast
+74158,suckling_reflex,reflex behavior in newborn mammals; includes finding and grasping the nipple in the mouth and sucking on it and swallowing the milk
+74159,sucralfate Carafate,medicine consisting of a tablet (trade name Carafate) used to treat peptic ulcers; said to bind to the ulcer site and coat it
+74160,sucre,the basic unit of money in Ecuador; equal to 100 centavos
+74161,sucrose saccharose,a complex carbohydrate found in many plants and used as a sweetening agent
+74162,suction,a force over an area produced by a pressure difference
+74163,suction_cup,a cup-shaped device (made of rubber, glass, or plastic) that produces a partial vacuum; used to adhere or draw something to a surface
+74164,suction_curettage vacuum_aspiration,a method of induced abortion; prior to the 14th week of gestation the embryo and placenta are removed by applying suction to the dilated cervix
+74165,suction_pump,a pump for raising fluids by suction
+74166,suction_stop click,a stop consonant made by the suction of air into the mouth (as in Bantu)
+74167,sudatorium sudatory,a bathhouse for hot air baths or steam baths
+74168,sudden_death,(sports) overtime in which play is stopped as soon as one contestant scores; e.g. football and golf
+74169,sudden_infant_death_syndrome SIDS infant_death crib_death cot_death,sudden and unexpected death of an apparently healthy infant during sleep
+74170,sudoku,a number puzzle in which the numbers 1 through 9 must be placed into a grid of cells so that each row or column contains only one of each number
+74171,sudorific sudatory,a medicine that causes or increases sweating
+74172,sudra shudra,the lowest of the four varnas: the servants and workers of low status
+74173,suds,a dysphemism for beer (especially for lager that effervesces)
+74174,suede suede_leather,leather with a napped surface
+74175,suede_cloth suede,a fabric made to resemble suede leather
+74176,suer petitioner,someone who petitions a court for redress of a grievance or recovery of a right
+74177,suet,hard fat around the kidneys and loins in beef and sheep
+74178,suet_pudding,a sweet or savory pudding made with suet and steamed or boiled
+74179,sufferance,patient endurance especially of pain or distress
+74180,suffering hurt,feelings of mental or physical pain
+74181,suffering woe,misery resulting from affliction
+74182,sufficiency,sufficient resources to provide comfort and meet obligations; "her father questioned the young suitor's sufficiency"
+74183,sufficiency adequacy,the quality of being sufficient for the end in view; "he questioned the sufficiency of human intelligence"
+74184,suffix postfix,an affix that is added at the end of the word
+74185,suffixation,formation of a word by means of a suffix
+74186,suffocation asphyxiation,the condition of being deprived of oxygen (as by having breathing stopped); "asphyxiation is sometimes used as a form of torture"
+74187,suffocation asphyxiation,killing by depriving of oxygen
+74188,suffragan suffragan_bishop,an assistant or subordinate bishop of a diocese
+74189,suffragette,a woman advocate of women's right to vote (especially a militant advocate in the United Kingdom at the beginning of the 20th century)
+74190,suffragism,the belief that the right to vote should be extended (as to women)
+74191,suffragist,an advocate of the extension of voting rights (especially to women)
+74192,sugar refined_sugar,a white crystalline carbohydrate used as a sweetener and preservative
+74193,sugar-bush sugar_sumac Rhus_ovata,evergreen shrub of southeastern United States with spikes of reddish yellow flowers and glandular hairy fruits
+74194,sugar_beet,form of the common beet having a sweet white root from which sugar is obtained
+74195,sugar_beet,white-rooted beet grown as a source of sugar
+74196,sugar_bowl,a dish in which sugar is served
+74197,sugar_candy,made by boiling pure sugar until it hardens
+74198,sugar_cookie,cookies sprinkled with granulated sugar
+74199,sugar_daddy,a wealthy older man who gives a young person expensive gifts in return for friendship or intimacy
+74200,sugar_maple rock_maple Acer_saccharum,maple of eastern and central North America having three-lobed to five-lobed leaves and hard close-grained wood much used for cabinet work especially the curly-grained form; sap is chief source of maple syrup and maple sugar; many subspecies
+74201,sugar_palm gomuti gomuti_palm Arenga_pinnata,Malaysian feather palm with base densely clothed with fibers; yields a sweet sap used in wine and trunk pith yields sago
+74202,sugar_refinery,a refinery for sugar
+74203,sugar_snap_pea,green peas with edible pods that are very crisp and not flat
+74204,sugar_snap_pea snap_pea,variety of pea plant producing peas having crisp rounded edible pods
+74205,sugar_spoon sugar_shell,a spoon for serving sugar; often made in the shape of a seashell
+74206,sugar_syrup,sugar and water and sometimes corn syrup boiled together; used as sweetening especially in drinks
+74207,sugar_water,water sweetened with sugar
+74208,sugarberry Celtis_laevigata,deciduous shade tree with small black berries; southern United States; yields soft yellowish wood
+74209,sugarberry hackberry,small edible dark purple to black berry with large pits; southern United States
+74210,sugarcane sugar_cane,juicy canes whose sap is a source of molasses and commercial sugar; fresh canes are sometimes chewed for the juice
+74211,sugarcane sugar_cane Saccharum_officinarum,tall tropical southeast Asian grass having stout fibrous jointed stalks; sap is a chief source of sugar
+74212,sugariness,the sweetness of sugar
+74213,sugarloaf sugar_loaf loaf_sugar,a large conical loaf of concentrated refined sugar
+74214,sugarplum,any of various small sugary candies
+74215,suggester proposer,someone who advances a suggestion or proposal; "the suggester of this absurd strategy was a fool"
+74216,suggestibility,susceptibility or responsiveness to suggestion
+74217,suggestion,an idea that is suggested; "the picnic was her suggestion"
+74218,suggestion,the sequential mental process in which one thought leads to another by association
+74219,suggestion prompting,persuasion formulated as a suggestion
+74220,suggestion proposition proffer,a proposal offered for acceptance or rejection; "it was a suggestion we couldn't refuse"
+74221,suicide felo-de-se,a person who kills himself intentionally
+74222,suicide self-destruction self-annihilation,the act of killing yourself; "it is a crime to commit suicide"
+74223,suicide_bomber,a terrorist who blows himself up in order to kill or injure other people
+74224,suicide_bombing,a terrorist bombing carried out by someone who does not hope to survive it
+74225,suicide_mission martyr_operation sacrifice_operation,killing or injuring others while annihilating yourself; usually accomplished with a bomb
+74226,suicide_pact,an agreement by two or more people to commit suicide together at a given place and time; "the two lovers killed themselves in a suicide pact"
+74227,suicide_pill,a poison pill with potentially catastrophic implications for the company it is intended to protect
+74228,suicide_squeeze_play suicide_squeeze,the runner on third base starts home as the pitcher delivers the ball
+74229,suit,(slang) a businessman dressed in a business suit; "all the suits care about is the bottom line"
+74230,suit,a petition or appeal made to a person of superior status or rank
+74231,suit,playing card in any of four sets of 13 cards in a pack; each set has its own symbol and color; "a flush is five cards in the same suit"; "in bridge you must follow suit"; "what suit is trumps?"
+74232,suit suit_of_clothes,a set of garments (usually including a jacket and trousers or skirt) for outerwear all of the same fabric and color; "they buried him in his best suit"
+74233,suitability suitableness,the quality of having the properties that are right for a specific purpose; "an important requirement is suitability for long trips"
+74234,suite,a matching set of furniture
+74235,suite,a musical composition of several movements only loosely connected
+74236,suite rooms,apartment consisting of a series of connected rooms used as a living unit (as in a hotel)
+74237,suiting,a fabric used for suits
+74238,suitor suer wooer,a man who courts a woman; "a suer for the hand of the princess"
+74239,sukiyaki,thin beef strips (or chicken or pork) cooked briefly at the table with onions and greens and soy sauce
+74240,suksdorfia,any of several American plants of the genus Suksdorfia having orbicular to kidney-shaped somewhat succulent leaves and white or rose or violet flowers in terminal panicles
+74241,sulcus,(anatomy) any of the narrow grooves in an organ or tissue especially those that mark the convolutions on the surface of the brain
+74242,sulfa_drug sulfa sulpha sulfonamide,antibacterial consisting of any of several synthetic organic compounds capable of inhibiting the growth of bacteria that require PABA
+74243,sulfacetamide Sulamyd,a topical sulfonamide (trade name Sulamyd) used to treat eye infections
+74244,sulfadiazine,a sulfa drug used in treating meningitis and pneumonia and other infections
+74245,sulfamethazine sulfamezathine,a sulfa drug used like sulfadiazine and also in veterinary medicine
+74246,sulfamethoxazole Gantanol,a sulfonamide (trade name Gantanol) used to treat infections (especially infections of the urinary tract)
+74247,sulfanilamide,a white odorless crystalline sulfa drug; the parent compound of most of the sulfa drugs
+74248,sulfanilic_acid sulphanilic_acid,a crystalline acid made from aniline and used as a dye
+74249,sulfapyridine,sulfa drug derived from pyridine and sulfanilamide
+74250,sulfate sulphate,a salt or ester of sulphuric acid
+74251,sulfide sulphide,a compound of sulphur and some other element that is more electropositive
+74252,sulfisoxazole Gantrisin,a sulfonamide (trade name Gantrisin) used to treat infections of the urinary tract
+74253,sulfonate,a salt of sulphonic acid
+74254,sulfonic_acid sulphonic_acid,an acid derived from sulphuric acid
+74255,sulfonylurea,antidiabetic consisting of any of several drugs that reduce the level of glucose in the blood; used to treat diabetes mellitus
+74256,sulfur S sulphur atomic_number_16,an abundant tasteless odorless multivalent nonmetallic element; best known in yellow crystals; occurs in many sulphide and sulphate minerals and even in native form (especially in volcanic regions)
+74257,sulfur_dioxide sulphur_dioxide,a colorless toxic gas (SO2) that occurs in the gases from volcanoes; used in many manufacturing processes and present in industrial emissions; causes acid rain
+74258,sulfur_hexafluoride sulphur_hexafluoride,a colorless gas that is soluble in alcohol and ether; a powerful greenhouse gas widely used in the electrical utility industry
+74259,sulfur_oxide sulphur_oxide,any of several oxides of sulphur
+74260,sulfur_paintbrush Castilleja_sulphurea,plant of moist highland meadows having ragged clusters of pale yellow flowers
+74261,sulindac Clinoril,a nonsteroidal anti-inflammatory drug (trade name Clinoril)
+74262,sulk sulkiness,a mood or display of sullen aloofness or withdrawal; "stayed home in a sulk"
+74263,sulkiness huffishness,a feeling of sulky resentment
+74264,sulkiness sullenness moroseness sourness,a sullen moody resentful disposition
+74265,sulky,a light two-wheeled vehicle for one person; drawn by one horse
+74266,sulphur-crested_cockatoo Kakatoe_galerita Cacatua_galerita,white cockatoo with a yellow erectile crest
+74267,sulphur_butterfly sulfur_butterfly,any of numerous yellow or orange butterflies
+74268,sulphur_mine sulfur_mine,a mine where sulphur is dug from the ground
+74269,sultan grand_Turk,the ruler of a Muslim country (especially of the former Ottoman Empire)
+74270,sultana,pale yellow seedless grape used for raisins and wine
+74271,sultanate,country or territory ruled by a sultan
+74272,sultriness,oppressively hot and humid weather
+74273,sultriness,the quality of expressing or arousing sexual desire; "the sultriness of her look was unmistakable"; "the sultriness of lust was in the air"
+74274,sum amount total,a quantity obtained by the addition of a group of numbers
+74275,sum sum_of_money amount amount_of_money,a quantity of money; "he borrowed a large sum"; "the amount he had in cash was insufficient"
+74276,sum summation sum_total,the final aggregate; "the sum of all our troubles did not equal the misery they suffered"
+74277,sum total totality aggregate,the whole amount
+74278,sumac,wood of a sumac
+74279,sumac sumach shumac,a shrub or tree of the genus Rhus (usually limited to the non-poisonous members of the genus)
+74280,summarization summarisation,the act of preparing a summary (or an instance thereof); stating briefly and succinctly
+74281,summary sum-up,a brief statement that presents the main points in a concise form; "he gave a summary of the conclusions"
+74282,summary_judgment summary_judgement judgment_on_the_pleadings judgement_on_the_pleadings,a judgment rendered by the court prior to a verdict because no material issue of fact exists and one party or the other is entitled to a judgment as a matter of law
+74283,summation,(physiology) the process whereby multiple stimuli can produce a response (in a muscle or nerve or other part) that one stimulus alone does not produce
+74284,summation addition plus,the arithmetic operation of summing; calculating the sum of two or more numbers; "the summation of four and three gives seven"; "four plus three equals seven"
+74285,summation summing_up rundown,a concluding summary (as in presenting a case before a law court)
+74286,summer,the period of finest development, happiness, or beauty; "the golden summer of his life"
+74287,summer summertime,the warmest season of the year; in the northern hemisphere it extends from the summer solstice to the autumnal equinox; "they spent a lazy summer at the shore"
+74288,summer_cypress burning_bush fire_bush fire-bush belvedere Bassia_scoparia Kochia_scoparia,densely branched Eurasian plant; foliage turns purple-red in autumn
+74289,summer_flounder Paralichthys_dentatus,flounder of eastern coast of North America
+74290,summer_house,a country house (usually located in the country) that provides a cool place to live in the summer
+74291,summer_hyacinth cape_hyacinth Hyacinthus_candicans Galtonia_candicans,southern African herb with white bell-shaped flowers
+74292,summer_savory Satureja_hortensis Satureia_hortensis,erect annual herb with oval leaves and pink flowers; used to flavor e.g. meats or soups or salads; southeastern Europe and naturalized elsewhere
+74293,summer_savory summer_savoury,herb with delicately flavored leaves with many uses
+74294,summer_school,an academic session during the summer; usually for remedial or supplementary study
+74295,summer_solstice June_21 midsummer,June 21, when the sun is at its northernmost point
+74296,summer_squash,any of various fruits of the gourd family that mature during the summer; eaten while immature and before seeds and rind harden
+74297,summer_squash summer_squash_vine Cucurbita_pepo_melopepo,any of various usually bushy plants producing fruit that is eaten while immature and before the rind or seeds harden
+74298,summer_stock,theatrical productions performed by a stock company during the summer
+74299,summer_tanager summer_redbird Piranga_rubra,of middle and southern United States; male is deep rose-red the female mostly yellow
+74300,summercaters,(Maine colloquial) temporary summer residents of coastal Maine
+74301,summit summit_meeting,a meeting of heads of governments
+74302,summons,an order to appear in person at a given place and time
+74303,summons process,a writ issued by authority of law; usually compels the defendant's attendance in a civil suit; failure to appear results in a default judgment against the defendant
+74304,summum_bonum,the supreme good in which all moral values are included or from which they are derived
+74305,sumo,a Japanese form of wrestling; you lose if you are forced out of a small ring or if any part of your body (other than your feet) touches the ground
+74306,sumo_ring,the circular ring in which Sumo wrestlers compete
+74307,sumo_wrestler,a wrestler who participates in sumo (a Japanese form of wrestling); "sumo wrestlers are large heavy men"
+74308,sump,an oil reservoir in an internal combustion engine
+74309,sump,a well or other hole in which water has collected
+74310,sump_pump,a suction pump for removing liquid from a sump
+74311,sumpsimus,a correct expression that takes the place of a popular but incorrect expression; "he preferred his erroneous but pleasing mumpsimus to the correct sumpsimus"
+74312,sun,a person considered as a source of warmth or energy or glory etc
+74313,sun,any star around which a planetary system revolves
+74314,sun Sun,the star that is the source of light and heat for the planets in the solar system; "the sun contains 99.85% of the mass in the solar system"; "the Earth revolves around the Sun"
+74315,sun_bathing,immersing the body in sunlight
+74316,sun_dance,a ceremonial dance performed by Amerindians at the summer solstice
+74317,sun_deck,an unroofed deck
+74318,sun_gear,the central gear in an epicyclic train
+74319,sun_god,a god that personifies the sun or is otherwise associated with the sun
+74320,sun_parlor sun_parlour sun_porch sunporch sunroom sun_lounge solarium,a room enclosed largely with glass and affording exposure to the sun
+74321,sun_pitcher,any of several herbs of Guiana highlands having racemes of nodding white or pink flowers; trap and digest insects in pitcher-shaped leaves with spoon-shaped caps
+74322,sun_protection_factor SPF,the degree to which a sunscreen protects the skin from the direct rays of the sun
+74323,sun_spurge wartweed wartwort devil's_milk Euphorbia_helioscopia,not unattractive European weed whose flowers turn toward the sun
+74324,sun_tea,tea made by exposing tea leaves steeped in water to the direct rays of the sun; usually served with ice
+74325,sun_visor,a shade (sometimes of green mica) affixed above the windshield of an automobile
+74326,sun_worshiper,someone who worships the sun
+74327,sunbather,someone who basks in the sunshine in order to get a suntan
+74328,sunbeam sunray,a ray of sunlight
+74329,sunbonnet,a large bonnet that shades the face; worn by girls and women
+74330,sunburn erythema_solare,redness of the skin caused by exposure to the rays of the sun
+74331,sunburst,a sudden emergence of the sun from behind clouds
+74332,sunburst,a design consisting of a central disk resembling the sun and rays emanating from it
+74333,sunburst,a jeweled brooch with a pattern resembling the sun
+74334,sunburst_pleat sunray_pleat,knife pleat cut on the bias to produce a flared effect
+74335,sundew sundew_plant daily_dew,any of various bog plants of the genus Drosera having leaves covered with sticky hairs that trap and digest insects; cosmopolitan in distribution
+74336,sundial,timepiece that indicates the daylight hours by the shadow that the gnomon casts on a calibrated dial
+74337,sundowner,a tramp who habitually arrives at sundown
+74338,sundowner,a drink taken at sundown
+74339,sundress,a light loose sleeveless summer dress with a wide neckline and thin shoulder straps that expose the arms and shoulders
+74340,sundries,miscellaneous objects too numerous or too small to be specified
+74341,sundrops Oenothera_fruticosa,a day-flowering biennial or perennial of the genus Oenothera
+74342,sunfish,the lean flesh of any of numerous American perch-like fishes of the family Centrarchidae
+74343,sunfish centrarchid,small carnivorous freshwater percoid fishes of North America usually having a laterally compressed body and metallic luster: crappies; black bass; bluegills; pumpkinseed
+74344,sunflower helianthus,any plant of the genus Helianthus having large flower heads with dark disk florets and showy yellow rays
+74345,sunflower_oil sunflower-seed_oil,oil from sunflower seeds
+74346,sunflower_seed,edible seed of sunflowers; used as food and poultry feed and as a source of oil
+74347,sunglass,a convex lens that focuses the rays of the sun; used to start a fire
+74348,sunglasses dark_glasses shades,(plural) spectacles that are darkened or polarized to protect the eyes from the glare of the sun; "he was wearing a pair of mirrored shades"
+74349,sunhat sun_hat,a hat with a broad brim that protects the face from direct exposure to the sun
+74350,sunk_fence ha-ha haw-haw,a ditch with one side being a retaining wall; used to divide lands without defacing the landscape
+74351,sunken_arch fallen_arch,an instep flattened so the entire sole rests on the ground
+74352,sunken_garden,a garden set below the level of the ground surrounding it
+74353,sunlamp sun_lamp sunray_lamp sun-ray_lamp,a mercury-vapor lamp used in medical or cosmetic treatments
+74354,sunlight sunshine sun,the rays of the sun; "the shingles were weathered by the sun and wind"
+74355,sunniness,lightness created by sunlight
+74356,sunray Enceliopsis_nudicaulis,herb having a basal cluster of grey-green leaves and leafless stalks each with a solitary broad yellow flower head; desert areas Idaho to Arizona
+74357,sunray sun-ray,a ray of artificial ultraviolet light from a sunray lamp
+74358,sunrise,atmospheric phenomena accompanying the daily appearance of the sun
+74359,sunrise,the daily event of the sun rising above the horizon
+74360,sunrise_industry,a new industry that is expanding rapidly (especially telecommunications or electronics)
+74361,sunroof sunshine-roof,an automobile roof having a sliding or raisable panel; "`sunshine-roof' is a British term for `sunroof'"
+74362,sunscreen sunblock sun_blocker,a cream spread on the skin; contains a chemical (as PABA) to filter out ultraviolet light and so protect from sunburn
+74363,sunset,atmospheric phenomena accompanying the daily disappearance of the sun
+74364,sunset,the daily event of the sun sinking below the horizon
+74365,sunset sundown,the time in the evening at which the sun begins to fall below the horizon
+74366,sunspot macula,a cooler darker spot appearing periodically on the sun's photosphere; associated with a strong magnetic field
+74367,sunstone aventurine,a translucent quartz spangled with bits of mica or other minerals
+74368,sunstroke insolation thermic_fever siriasis,sudden prostration due to exposure to the sun or excessive heat
+74369,sunsuit,a child's garment consisting of a brief top and shorts
+74370,suntrap solar_trap,a terrace or garden oriented to take advantage of the sun while protected from cold winds
+74371,super_heavyweight,an amateur boxer who weighs more than 201 pounds
+74372,superannuation,the act of discharging someone because of age (especially to cause someone to retire from service on a pension)
+74373,superbug,a strain of bacteria that is resistant to all antibiotics
+74374,superbug Bemisia_tabaci poinsettia_strain,a strain of pest accidentally imported into Florida from the Middle East then spread to California where it is a very serious pest feeding on almost all vegetable crops and poinsettias
+74375,supercargo,an officer on a merchant ship in charge of the cargo and its sale and purchase
+74376,supercharger,compressor that forces increased oxygen into the cylinders of an internal-combustion engine
+74377,superclass,(biology) a taxonomic class below a phylum and above a class
+74378,superclass_Myriapoda,used in some classifications to encompass the millipedes (Diplopoda) and centipedes (Chilopoda); formerly a large taxon including also the Pauropoda and Symphyla; the term Myriapoda now usually used synonymously with Diplopoda and limited to the millipedes
+74379,supercomputer,a mainframe computer that is one of the most powerful available at a given time
+74380,superconducting_supercollider,a collider that operates at very low temperatures
+74381,superconductivity,the disappearance of electrical resistance at very low temperatures
+74382,superego,(psychoanalysis) that part of the unconscious mind that acts as a conscience
+74383,supererogation,an effort above and beyond the call of duty
+74384,superfamily,(biology) a taxonomic group ranking below an order but above a family
+74385,superfecta,a bet that you can pick the first four finishers in a race in the right order
+74386,superfecundation,fertilization of two or more ova released during the same menstrual cycle by sperm from separate acts of coitus (especially by different males)
+74387,superfetation,fertilization of a second ovum after a pregnancy has begun; results in two fetuses of different ages in the uterus at the same time; "superfetation is normal in some animal species"
+74388,superficial_epigastric_vein vena_epigastrica_superficialis,empties into the great saphenous vein
+74389,superficial_middle_cerebral_vein,a large vein along the line of the Sylvian fissure to the cavernous sinus
+74390,superficial_temporal_vein,join the middle temporal vein to empty into the retromandibular vein
+74391,superficiality,shallowness in terms of affecting only surface layers of something; "he ignored the wound because of its superficiality"
+74392,superficiality shallowness,lack of depth of knowledge or thought or feeling
+74393,superficies,the purely external aspect of a thing; superficial appearance; "the audience was held by the substance of the play rather than by the superficies of the production"-R.W.Speaight
+74394,superficies,outer surface of an area or a body
+74395,supergiant,an extremely bright star of very large diameter and low density
+74396,supergrass grass,a police informer who implicates many people
+74397,superhigh_frequency SHF,3 to 30 gigahertz
+74398,superhighway information_superhighway,an extensive electronic network (such as the internet) used for the rapid transfer of sound and video and graphics in digital form
+74399,superinfection,infection that occurs while you are being treated for another infection
+74400,superintendent super,a caretaker for an apartment house; represents the owner as janitor and rent collector
+74401,superior,the head of a religious community
+74402,superior higher-up superordinate,one of greater rank or station or quality
+74403,superior_alveolar_artery arteria_alveolaris_superior,the alveolar artery that supplies the upper teeth
+74404,superior_cerebellar_artery,the superior branch of the cerebellar artery
+74405,superior_cerebral_vein vena_cerebrum_superior,a cerebral vein that drains the dorsal convexity of the cerebral hemisphere and empties into the cavernous sinus
+74406,superior_colliculus,an essential visual center between the retina and the striate cortex
+74407,superior_conjunction,(astronomy) the alignment of the Earth and a planet on the opposite side of the sun
+74408,superior_court,any court that has jurisdiction above an inferior court
+74409,superior_epigastric_veins venae_epigastricae_superiores,veins that accompany the superior epigastric artery
+74410,superior_labial_artery arteria_labialis_superior,an artery that is a branch of the facial artery that supplies the upper lip
+74411,superior_labial_vein vena_labialis_superior,a tributary of the facial vein that drains the upper lip
+74412,superior_mesenteric_artery,originates from the upper part of the aorta that supplies the small intestines and the cecum and the colon
+74413,superior_ophthalmic_vein,a vein that begins at the inner angle of the eye socket and passes through the superior orbital fissure to empty into the cavernous sinus
+74414,superior_planet,any of the planets whose orbit lies outside the earth's orbit
+74415,superior_pulmonary_vein vena_pulmonalis_superior,either of two pulmonary veins (left and right) returning blood from the superior lobes of the lungs
+74416,superior_rectus_muscle superior_rectus rectus_superior,the ocular muscle whose contraction turns the eyeball upward and medially
+74417,superior_skill,more than ordinary ability
+74418,superior_thalamostriate_vein,a long vein that helps to form the internal cerebral vein
+74419,superior_thyroid_vein,a vein on each side that drains the upper part of the thyroid and empties into the internal jugular vein
+74420,superior_vena_cava precava,receives blood from the head and arms and chest and empties into the right atrium of the heart; formed from the azygos and both brachiocephalic veins
+74421,superiority,displaying a sense of being better than others; "he hated the white man's superiority and condescension"
+74422,superiority favorable_position favourable_position,the quality of being at a competitive advantage
+74423,superiority high_quality,the quality of being superior
+74424,superiority_complex,an exaggerated estimate of your own value and importance
+74425,superlative,an exaggerated expression (usually of praise); "the critics lavished superlatives on it"
+74426,superlative superlative_degree,the superlative form of an adjective or adverb; "`fastest' is the superlative of the adjective `fast'"; "`least famous' is the superlative degree of the adjective `famous'"; "`most surely' is the superlative of the adverb `surely'"
+74427,supermarket,a large self-service grocery store selling groceries and dairy products and household goods
+74428,supermarketer supermarketeer,an operator of a supermarket
+74429,supermodel,a fashion model who has attained the status of a celebrity
+74430,supermom,an informal term for a mother who can combine childcare and full-time employment
+74431,supernatant,the clear liquid that lies above a sediment or precipitate
+74432,supernatural occult,supernatural forces and events and beings collectively; "She doesn't believe in the supernatural"
+74433,supernaturalism,a belief in forces beyond ordinary human understanding
+74434,supernaturalism supernaturalness,the quality of being attributed to power that seems to violate or go beyond natural forces
+74435,supernova,a star that explodes and becomes extremely luminous in the process
+74436,supernumerary,a person serving no apparent function; "reducing staff is difficult because our employees include no supernumeraries"
+74437,supernumerary spear_carrier extra,a minor actor in crowd scenes
+74438,superorder,(biology) a taxonomic group ranking above an order and below a class or subclass
+74439,superoxide,a metallic oxide containing the univalent anion O2-
+74440,superoxide superoxide_anion,the univalent anion O2-; "much of the O2 supporting cellular respiration is reduced to the superoxide anion O2-"
+74441,superoxide_dismutase SOD,an enzyme that catalyzes the conversion of superoxide into hydrogen peroxide and oxygen; "oxygen free radicals are normally removed in our bodies by the superoxide dismutase enzymes"
+74442,superphylum,(biology) a taxonomic group ranking between a phylum and below a class or subclass
+74443,superposition,(geology) the deposition of one geological stratum on another
+74444,superposition,(geometry) the placement of one object ideally in the position of another one in order to show that the two coincide
+74445,superposition,the placement of one thing on top of another
+74446,superscript superior,a character or symbol set or printed or written above and immediately to one side of another character
+74447,superscription,an inscription written above something else
+74448,superscription,the activity of superscribing
+74449,supersedure supersession,act of replacing one person or thing by another especially one held to be superior
+74450,superstition superstitious_notion,an irrational belief arising from ignorance or fear
+74451,superstrate superstratum,any stratum or layer superimposed on another
+74452,superstrate superstratum,the language of a later invading people that is imposed on an indigenous population and contributes features to their language
+74453,superstring,a hypothetical particle that is the elementary particle in a theory of space-time
+74454,superstructure,structure consisting of the part of a ship above the main deck
+74455,supersymmetry,(physics) a theory that tries to link the four fundamental forces; "according to supersymmetry each force emerged separately during the big bang"
+74456,supertanker,the largest class of oil tankers
+74457,supertitle surtitle,translation of the words of a foreign opera (or choral work) projected on a screen above the stage
+74458,supertonic,(music) the second note of a diatonic scale
+74459,supertwister,the most powerful tornado which can create enormously devastating damage; "supertwisters are fortunately rare"
+74460,supervention,a following on in addition
+74461,supervision supervising superintendence oversight,management by overseeing the performance or operation of a person or group
+74462,supervisor,one who supervises or has charge and direction of
+74463,supervisory_program supervisor executive_program,a program that controls the execution of other programs
+74464,supervisory_routine executive_routine,a routine that coordinates the operation of subroutines
+74465,supervisory_software,specialized programs that reside permanently in the computer's main memory and control the processing of user's programs
+74466,supination,rotation of the hands and forearms so that the palms face upward
+74467,supinator,a muscle (especially in the forearm) that produces or assists in supination
+74468,supper,a social gathering where a light evening meal is served; "her suppers often included celebrities"
+74469,supper,a light evening meal; served in early evening if dinner is at midday or served late in the evening at bedtime
+74470,supper_club,usually a small luxurious nightclub
+74471,supping,ingestion of liquid food with a spoon or by drinking
+74472,supplanting displacement,act of taking the place of another especially using underhanded tactics
+74473,supplejack,walking stick made from the wood of an American tropical vine
+74474,supplement supplementation,a quantity added (e.g. to make up for a deficiency)
+74475,supplementary_benefit social_assistance national_assistance,benefits paid to bring incomes up to minimum levels established by law
+74476,supplementation subjunction subjoining,the act of supplementing
+74477,supplication plea,a humble request for help from someone in authority
+74478,supplier provider,someone whose business is to supply a particular service or commodity
+74479,supply,an amount of something available for use
+74480,supply,offering goods and services for sale
+74481,supply-side_economics,the school of economic theory that stresses the costs of production as a means of stimulating the economy; advocates policies that raise capital and labor output by increasing the incentive to produce
+74482,supply_chamber,a mechanical device for holding something and supplying it as needed
+74483,supply_closet,a closet for storing supplies
+74484,supply_line supply_route,a route over which supplies can be delivered
+74485,supply_officer,a commissioned officer responsible for logistics
+74486,support,something providing immaterial assistance to a person or cause or interest; "the policy found little public support"; "his faith was all the support he needed"; "the team enjoyed the support of their fans"
+74487,support,supporting structure that holds up or provides a foundation; "the statue stood on a marble support"
+74488,support,any device that bears the weight of another thing; "there was no place to attach supports for a shelf"
+74489,support,the activity of providing for or maintaining by supplying with money or necessities; "his support kept the family together"; "they gave him emotional support during difficult times"
+74490,support,aiding the cause or policy or interests of; "the president no longer has the support of his own party"; "they developed a scheme of mutual support"
+74491,support financial_support funding backing financial_backing,financial resources provided to make some project possible; "the foundation provided support for the experiment"
+74492,support keep livelihood living bread_and_butter sustenance,the financial means whereby one lives; "each child was expected to pay for their keep"; "he applied to the state for support"; "he could no longer earn his own livelihood"
+74493,support reinforcement reenforcement,a military operation (often involving new supplies of men and materiel) to strengthen a military force or aid in the performance of its mission; "they called for artillery support"
+74494,support supporting,the act of bearing the weight of or strengthening; "he leaned against the wall for support"
+74495,support_column,a column that supports a heavy weight
+74496,support_hose support_stocking,elasticized stocking intended to reduce pressure on the veins of the leg (as in case of varicose veins)
+74497,support_level,(stock market) the price at which a certain security becomes attractive to investors
+74498,support_payment,a payment made by one person for the support of another
+74499,support_system,a network of facilities and people who interact and remain in informal communication for mutual assistance; a network that enables you to live in a certain style
+74500,supporter protagonist champion admirer booster friend,a person who backs a politician or a team etc.; "all their supporters came out for the game"; "they are friends of the library"
+74501,supporting_fire,fire delivered by supporting units to protect or assist a unit in combat
+74502,supporting_structure,a structure that serves to support something
+74503,supporting_tower,a tower that serves to support something
+74504,supposition supposal,the cognitive process of supposing
+74505,suppository,a small plug of medication designed for insertion into the rectum or vagina where it melts
+74506,suppressant appetite_suppressant,a drug that suppresses appetite
+74507,suppression,the failure to develop some part or organ
+74508,suppression crushing quelling stifling,forceful prevention; putting down by power or authority; "the suppression of heresy"; "the quelling of the rebellion"; "the stifling of all dissent"
+74509,suppression curtailment,the act of withholding or withdrawing some book or writing from publication or circulation; "a suppression of the newspaper"
+74510,suppressive_fire,fire on or about a weapon system to degrade its performance below what is needed to fulfill its mission objectives
+74511,suppressor suppresser,someone who suppresses; "dictators are suppressors of free speech"
+74512,suppressor suppresser,an electrical device for suppressing unwanted currents
+74513,suppressor suppresser suppressor_gene suppresser_gene,a gene that suppresses the phenotypic expression of another gene (especially of a mutant gene)
+74514,supra_expressionism,a movement that tried to go beyond expressionism
+74515,suprainfection,secondary infection caused by an opportunistic infection
+74516,supraorbital_ridge supraorbital_torus superciliary_ridge superciliary_arch,a ridge on the frontal bone above the eye socket
+74517,supraorbital_vein vena_supraorbitalis,drains the front of the scalp; unites with the supratrochlear vein to form the angular vein
+74518,supratrochlear_vein vena_supratrochlearis,drains the front of the scalp; unites with the supraorbital vein to form the angular vein
+74519,supremacism,the belief that some particular group or race is superior to all others; "white supremacism"
+74520,supremacist,a person who advocates the supremacy of some particular group or racial group over all others
+74521,suprematism,a geometric abstractionist movement originated by Kazimir Malevich in Russia that influenced constructivism
+74522,suprematist,an artist of the school of suprematism
+74523,supreme_court state_supreme_court high_court,the highest court in most states of the United States
+74524,supremo,the most important person in an organization
+74525,sura,one of the sections (or chapters) in the Koran; "the Quran is divided in 114 suras"
+74526,surbase,the molding or border above the base of a structure (a pedestal or podium or wall)
+74527,surcharge,an additional charge (as for items previously omitted or as a penalty for failure to exercise common caution or common skill)
+74528,surcoat,a loose outer coat usually of rich material
+74529,surcoat,a tunic worn over a knight's armor
+74530,surd voiceless_consonant,a consonant produced without sound from the vocal cords
+74531,sureness,the quality of being steady and unfailing; "sureness of hand"
+74532,surety,something clearly established
+74533,surf breaker breakers,waves breaking on the shore
+74534,surf_casting surf_fishing,casting (artificial) bait far out into the ocean (up to 200 yards) with the waves breaking around you
+74535,surface,the extended two-dimensional outer boundary of a three-dimensional object; "they skimmed over the surface of the water"; "a brush small enough to clean every dental surface"; "the sun has no distinct surface"
+74536,surface,a superficial aspect as opposed to the real nature of something; "it was not what it appeared to be on the surface"
+74537,surface,the outer boundary of an artifact or a material layer constituting or resembling such a boundary; "there is a special cleaner for these surfaces"; "the cloth had a pattern of red dots on a white surface"
+74538,surface Earth's_surface,the outermost level of the land or sea; "earthquakes originate far below the surface"; "three quarters of the Earth's surface is covered by water"
+74539,surface-to-air_missile SAM,a guided missile fired from land or shipboard against an airborne target
+74540,surface-to-air_missile_system,the shipboard system that fires missiles at aircraft
+74541,surface_chemistry,the branch of chemistry that studies processes occurring at interfaces between phases (especially those between liquid and gas)
+74542,surface_fire,a forest fire that burns only the surface litter and undergrowth
+74543,surface_gauge surface_gage scribing_block,gauge consisting of a scriber mounted on an adjustable stand; used to test the accuracy of plane surfaces
+74544,surface_lift,a ski tow that pulls skiers up a slope without lifting them off the ground
+74545,surface_mail,mail that is sent by land or sea
+74546,surface_noise,noise produced by the friction of the stylus of a record player moving over the rotating record
+74547,surface_search_radar,a naval radar to search for surface targets
+74548,surface_ship,a warship that operates on the surface of the water
+74549,surface_tension,a phenomenon at the surface of a liquid caused by intermolecular forces
+74550,surfacing,emerging to the surface and becoming apparent
+74551,surfbird Aphriza_virgata,sandpiper-like shorebird of Pacific coasts of North America and South America
+74552,surfboard,a narrow buoyant board for riding surf
+74553,surfboat,a boat that can be launched or landed in heavy surf
+74554,surfeit excess overabundance,the state of being more than full
+74555,surfer surfboarder,someone who engages in surfboarding
+74556,surfing surfboarding surfriding,the sport of riding a surfboard toward the shore on the crest of a wave
+74557,surfperch surffish surf_fish,small to medium-sized shallow-water fishes of the Pacific coast of North America
+74558,surge upsurge,a sudden or abrupt strong increase; "stimulated a surge of speculation"; "an upsurge of emotion"; "an upsurge in violent crime"
+74559,surge_suppressor surge_protector spike_suppressor spike_arrester lightning_arrester,electrical device inserted in a power line to protect equipment from sudden fluctuations in current
+74560,surgeon operating_surgeon sawbones,a physician who specializes in surgery
+74561,surgeon's_knot,any of several knots used in tying stitches or ligatures
+74562,surgeonfish,brightly colored coral-reef fish with knifelike spines at the tail
+74563,surgery,the branch of medical science that treats disease or injury by operative procedures; "he is professor of surgery at the Harvard Medical School"
+74564,surgery,a room where a doctor or dentist can be consulted; "he read the warning in the doctor's surgery"
+74565,surgical_contraception,contraception by surgical sterilization
+74566,surgical_dressing,a loosely woven cotton dressing for incisions made during surgery
+74567,surgical_instrument,a medical instrument used in surgery
+74568,surgical_knife,a very sharp knife used in surgery
+74569,surgical_spirit,methylated spirit used in the practice of medicine (especially for cleansing the skin before injections or before surgery)
+74570,surgical_strike,an attack (usually without prior warning) intended to deal only with a specific target
+74571,suricate Suricata_tetradactyla,burrowing diurnal meerkat of southern Africa; often kept as a pet
+74572,surname family_name cognomen last_name,the name used to identify the members of a family (as distinguished from each member's given name)
+74573,surplice,a loose-fitting white ecclesiastical vestment with wide sleeves
+74574,surprise,the astonishment you feel when something totally unexpected happens to you
+74575,surprise,a sudden unexpected event
+74576,surprise surprisal,the act of surprising someone
+74577,surprise_attack coup_de_main,an attack without warning
+74578,surpriser,a captor who uses surprise to capture the victim
+74579,surrealism,a 20th century movement of artists and writers (developing out of dadaism) who used fantastic images and incongruous juxtapositions in order to represent unconscious thoughts and dreams
+74580,surrealist,an artist who is a member of the movement called surrealism
+74581,surrebutter surrebuttal,(law) a pleading by the plaintiff in reply to the defendant's rebutter
+74582,surrejoinder,(law) a pleading by the plaintiff in reply to the defendant's rejoinder
+74583,surrender,the delivery of a principal into lawful custody
+74584,surrenderer yielder,a person who yields or surrenders
+74585,surrey,a light four-wheeled horse-drawn carriage; has two or four seats
+74586,surrogate alternate replacement,someone who takes the place of another person
+74587,surrogate_mother,a woman who bears a child for a couple where the wife is unable to do so; "a surrogate mother is artificially inseminated with the father's semen and carries the fetus to term"
+74588,sursum_corda,(Roman Catholic Church) a Latin versicle meaning `lift up your hearts'
+74589,surtax supertax,an additional tax on certain kinds of income that has already been taxed
+74590,surtout,a man's overcoat in the style of a frock coat
+74591,surveillance,close observation of a person or group (usually by the police)
+74592,surveillance_of_disease,the ongoing systematic collection and analysis of data about an infectious disease that can lead to action being taken to control or prevent the disease
+74593,surveillance_system,a closed-circuit television system used to maintain close observation of a person or group
+74594,survey study,a detailed critical inspection
+74595,survey_mile,a U.S. unit of measure equal to 1609.347 meters; derived from the use of 39.37 inches as the conversion for one meter
+74596,surveying,the practice of measuring angles and distances on the ground so that they can be accurately plotted on a map; "he studied surveying at college"
+74597,surveying_instrument surveyor's_instrument,an instrument used by surveyors
+74598,surveyor,someone who conducts a statistical survey
+74599,surveyor,an engineer who determines the boundaries and elevations of land or structures
+74600,surveyor's_level,surveying instrument consisting basically of a small telescope with an attached spirit level rotating around a vertical axis; for measuring relative heights of land
+74601,survival,something that survives
+74602,survival endurance,a state of surviving; remaining alive
+74603,survival survival_of_the_fittest natural_selection selection,a natural process resulting in the evolution of organisms best adapted to the environment
+74604,survivalist,someone who tries to insure their personal survival or the survival of their group or nation
+74605,survivor,one who outlives another; "he left his farm to his survivors"
+74606,survivor,an animal that survives in spite of adversity; "only the fittest animals were survivors of the cold winters"
+74607,survivor subsister,one who lives through affliction; "the survivors of the fire were taken to a hospital"
+74608,survivor_guilt,a deep feeling of guilt often experienced by those who have survived some catastrophe that took the lives of many others; derives in part from a feeling that they did not do enough to save the others who perished and in part from feelings of being unworthy relative to those who died; "survivor guilt was first noted in those who survived the Holocaust"
+74609,survivors_insurance,insurance paid to surviving spouses
+74610,susceptibility susceptibleness,the state of being susceptible; easily affected
+74611,sushi,rice (with raw fish) wrapped in seaweed
+74612,sushi_bar,a bar where sushi is served
+74613,suslik souslik Citellus_citellus,rather large central Eurasian ground squirrel
+74614,suspect,someone who is under suspicion
+74615,suspended_animation,a temporary cessation of vital functions with loss of consciousness resembling death; usually resulting from asphyxia
+74616,suspense,apprehension about what is going to happen
+74617,suspense,excited anticipation of an approaching climax; "the play kept the audience in suspense"
+74618,suspense,an uncertain cognitive state; "the matter remained in suspense for several years"
+74619,suspense_account,an account used temporarily to carry doubtful receipts and disbursements or discrepancies pending their analysis and permanent classification
+74620,suspension,a mixture in which fine particles are suspended in a fluid where they are supported by buoyancy
+74621,suspension dangling hanging,the act of suspending something (hanging it from above so it moves freely); "there was a small ceremony for the hanging of the portrait"
+74622,suspension respite reprieve hiatus abatement,an interruption in the intensity or amount of something
+74623,suspension suspension_system,a mechanical system of springs or shock absorbers connecting the wheels and axles to the chassis of a wheeled vehicle
+74624,suspension temporary_removal,a temporary debarment (from a privilege or position etc)
+74625,suspension_bridge,a bridge that has a roadway supported by cables that are anchored at both ends
+74626,suspension_point,(usually plural) one of a series of points indicating that something has been omitted or that the sentence is incomplete
+74627,suspensory suspensory_bandage,a bandage of elastic fabric applied to uplift a dependant part (as the scrotum or a pendulous breast)
+74628,suspicion,the state of being suspected; "he tried to shield me from suspicion"
+74629,suspicion suspiciousness,being of a suspicious nature; "his suspiciousness destroyed his marriage"
+74630,sustainability,the property of being sustainable
+74631,sustaining_pedal loud_pedal,a pedal on a piano that lifts the dampers from the strings and so allows them to continue vibrating
+74632,sustaining_program,a program without a commercial sponsor
+74633,sustenance sustentation sustainment maintenance upkeep,the act of sustaining life by food or providing a means of subsistence; "they were in want of sustenance"; "fishing was their main sustainment"
+74634,susurration susurrus,the indistinct sound of people whispering; "a soft susurrus of conversation"
+74635,sutler victualer victualler provisioner,a supplier of victuals or supplies to an army
+74636,sutra,a rule or aphorism in Sanskrit literature or a group of aphoristic doctrinal summaries prepared for memorization
+74637,suttee,the act of a Hindu widow willingly cremating herself on the funeral pyre of her dead husband
+74638,suture,thread of catgut or silk or wire used by surgeons to stitch tissues together
+74639,suture surgical_seam,a seam used in surgery
+74640,suture sutura fibrous_joint,an immovable joint (especially between the bones of the skull)
+74641,suturing,surgical joining of two surfaces
+74642,suzerain,a state exercising a degree of dominion over a dependent state especially in its foreign affairs
+74643,suzerainty,the position or authority of a suzerain; "under the suzerainty of..."
+74644,suzerainty,the domain of a suzerain
+74645,svoboda,(Russia) freedom
+74646,swab,implement consisting of a small piece of cotton that is used to apply medication or cleanse a wound or obtain a specimen of a secretion
+74647,swab swob mop,cleaning implement consisting of absorbent material fastened to a handle; for cleaning floors
+74648,swabbing mopping,cleaning with a mop; "he gave it a good mopping"
+74649,swad,a bunch; "a thick swad of plants"
+74650,swaddling_clothes,restrictions placed on the immature
+74651,swaddling_clothes swaddling_bands,a garment (a gown or narrow strips of cloth) for an infant
+74652,swag,valuable goods
+74653,swag,a bundle containing the personal belongings of a swagman
+74654,swage_block,an iron block cut with holes and grooves to assist in cold working metal
+74655,swagger_stick,a short cane or stick covered with leather and carried by army officers
+74656,swaggerer,someone who walks in an arrogant manner
+74657,swagman swagger swaggie,an itinerant Australian laborer who carries his personal belongings in a bundle as he travels around in search of work
+74658,swale,a low area (especially a marshy area between ridges)
+74659,swallow,small long-winged songbird noted for swift graceful flight and the regularity of its migrations
+74660,swallow drink deglutition,the act of swallowing; "one swallow of the liquid was enough"; "he took a drink of his beer and smacked his lips"
+74661,swallow sup,a small amount of liquid food; "a sup of ale"
+74662,swallow-tailed_coat swallowtail morning_coat,a man's full-dress jacket with two long tapering tails at the back
+74663,swallow-tailed_kite swallow-tailed_hawk Elanoides_forficatus,graceful North American black-and-white kite
+74664,swami,a Hindu religious teacher; used as a title of respect
+74665,swamp,a situation fraught with difficulties and imponderables; "he was trapped in a medical swamp"
+74666,swamp swampland,low land that is seasonally flooded; has more woody plants than a marsh and better drainage than a bog
+74667,swamp_ash Fraxinus_caroliniana,small ash of swampy areas of southeastern United States
+74668,swamp_azalea swamp_honeysuckle white_honeysuckle Rhododendron_viscosum,shrub growing in swamps throughout the eastern United States and having small white to pinkish flowers resembling honeysuckle
+74669,swamp_birch water_birch mountain_birch Western_paper_birch Western_birch Betula_fontinalis,birch of western United States resembling the paper birch but having brownish bark
+74670,swamp_buggy marsh_buggy,an amphibious vehicle typically having four-wheel drive and a raised body
+74671,swamp_candles Lysimachia_terrestris,North American plant with spikes of yellow flowers, found in wet places
+74672,swamp_chestnut_oak Quercus_michauxii,medium to large deciduous tree of moist areas of southeastern United States similar to the basket oak
+74673,swamp_cottonwood black_cottonwood downy_poplar swamp_poplar Populus_heterophylla,North American poplar with large rounded scalloped leaves and brownish bark and wood
+74674,swamp_dewberry swamp_blackberry Rubus_hispidus,of eastern North America
+74675,swamp_fever leptospirosis,an infectious disease cause by leptospira and transmitted to humans from domestic animals; characterized by jaundice and fever
+74676,swamp_fly_honeysuckle,a variety of fly honeysuckle
+74677,swamp_gum Eucalypt_ovata,medium-sized tree of southern Australia
+74678,swamp_horsetail water_horsetail Equisetum_fluviatile,Eurasia; northern North America to Virginia
+74679,swamp_laurel bog_laurel bog_kalmia Kalmia_polifolia,laurel of bogs of northwestern United States having small purple flowers and pale leaves that are glaucous beneath
+74680,swamp_milkweed Asclepias_incarnata,densely branching perennial of the eastern United States with white to crimson or purple flowers
+74681,swamp_oak Viminaria_juncea Viminaria_denudata,Australian leafless shrub resembling broom and having small yellow flowers
+74682,swamp_pine,any of several pines that prefer or endure moist situations such as loblolly pine or longleaf pine
+74683,swamp_rabbit canecutter swamp_hare Sylvilagus_aquaticus,a wood rabbit of southeastern United States swamps and lowlands
+74684,swamp_sparrow Melospiza_georgiana,North American finch of marshy area
+74685,swamp_sunflower Helianthus_angustifolius,sunflower of eastern North America having narrow leaves and found in bogs
+74686,swamp_white_oak swamp_oak Quercus_bicolor,large deciduous oak of the eastern United States with a flaky bark and leaves that have fewer lobes than other white oaks; yields heavy strong wood used in construction; thrives in wet soil
+74687,swamp_willow black_willow Salix_nigra,North American shrubby willow having dark bark and linear leaves growing close to streams and lakes
+74688,swampy_beggar-ticks Bidens_connata,bur marigold of eastern and northern United States and Canada common in wet pastures and meadows
+74689,swan,stately heavy-bodied aquatic bird with very long neck and usually white plumage as adult
+74690,swan's_down,soft woolen fabric used especially for baby clothes
+74691,swan's_down,down of the swan
+74692,swan_dive swallow_dive,a dive in which the diver arches the back with arms outstretched before entering the water
+74693,swan_orchid swanflower swan-flower swanneck swan-neck,any of several orchids of the genus Cycnoches having slender arching columns of flowers suggesting the neck of a swan
+74694,swan_song last_hurrah,a final performance or effort (especially before retirement)
+74695,swap_space swap_file,the disk space that is set aside for virtual memory
+74696,swarm cloud,a group of many things in the air or on the ground; "a swarm of insects obscured the light"; "clouds of blossoms"; "it discharged a cloud of spores"
+74697,swash,the movement or sound of water; "the swash of waves on the beach"
+74698,swashbuckling,flamboyantly reckless and boastful behavior
+74699,swastika Hakenkreuz,the official emblem of the Nazi Party and the Third Reich; a cross with the arms bent at right angles in a clockwise direction
+74700,swat,a sharp blow
+74701,swatch,a sample piece of cloth
+74702,swath,the space created by the swing of a scythe or the cut of a mowing machine
+74703,swath belt,a path or strip (as cut by one course of mowing)
+74704,swathe wrapping,an enveloping bandage
+74705,swathing,cloth coverings wrapped around something (as a wound or a baby)
+74706,swatter flyswatter flyswat,an implement with a flat part (of mesh or plastic) and a long handle; used to kill insects
+74707,sway,controlling influence
+74708,swearer,someone who uses profanity
+74709,swearer,someone who takes a solemn oath
+74710,sweat,condensation of moisture on a cold surface; "the cold glasses were streaked with sweat"
+74711,sweat_bag,a porous bag (usually of canvas) that holds water and cools it by evaporation
+74712,sweat_duct,a small duct that conveys sweat from a sudoriferous gland to the surface of the skin
+74713,sweat_equity,interest in a building that a tenant earns by contributing to its renovation or maintenance
+74714,sweat_gland sudoriferous_gland,any of the glands in the skin that secrete perspiration
+74715,sweat_pants sweatpants,loose-fitting trousers with elastic cuffs; worn by athletes
+74716,sweat_suit sweatsuit sweats workout_suit,garment consisting of sweat pants and a sweatshirt
+74717,sweatband,a band of material tied around the forehead or wrist to absorb sweat
+74718,sweatband,a band of fabric or leather sewn inside the crown of a hat
+74719,sweatbox,small or narrow cell
+74720,sweatbox,a device that causes tobacco leaves or fruit or hides to sweat
+74721,sweater jumper,a crocheted or knitted garment covering the upper part of the body
+74722,sweater_girl,a girl with an attractive bust who wears tight sweaters
+74723,sweating_sickness,a disease of cattle (especially calves)
+74724,sweating_sickness miliary_fever,epidemic in the 15th and 16th centuries and characterized by profuse sweating and high mortality
+74725,sweatshirt,cotton knit pullover with long sleeves worn during athletic activity
+74726,sweatshop,factory where workers do piecework for poor pay and are prevented from forming unions; common in the clothing industry
+74727,sweep,a movement in an arc; "a sweep of his arm"
+74728,sweep expanse,a wide scope; "the sweep of the plains"
+74729,sweep sweep_oar,a long oar used in an open boat
+74730,sweep_hand sweep-second,a second hand that is mounted on the same center as the hour and minute hand and is read on the minutes
+74731,sweeper,an employee who sweeps (floors or streets etc.)
+74732,sweeper,little-known nocturnal fish of warm shallow seas with an oblong compressed body
+74733,sweeping,the act of cleaning with a broom
+74734,sweepstakes,a lottery in which the prize consists of the money paid by the participants
+74735,sweet confection,a food rich in sugar
+74736,sweet sweetness sugariness,the taste experience when sugar dissolves in the mouth
+74737,sweet-potato_ring_rot,disease of sweet potatoes in which roots are girdled by rings of dry rot
+74738,sweet-potato_whitefly,a variety of whitefly
+74739,sweet_William Dianthus_barbatus,Eurasian pink widely cultivated for its flat-topped dense clusters of varicolored flowers
+74740,sweet_alyssum sweet_alison Lobularia_maritima,perennial European plant having clusters of small fragrant usually white flowers; widely grown in gardens
+74741,sweet_bay swamp_bay swamp_laurel Magnolia_virginiana,shrub or small tree having rather small fragrant white flowers; abundant in southeastern United States
+74742,sweet_bells Leucothoe_racemosa,bushy deciduous shrub of the eastern United States with long racemes of pinkish flowers
+74743,sweet_birch cherry_birch black_birch Betula_lenta,common birch of the eastern United States having spicy brown bark yielding a volatile oil and hard dark wood used for furniture
+74744,sweet_buckeye,a tall and often cultivated buckeye of the central United States
+74745,sweet_calabash,apple-sized passion fruit of the West Indies
+74746,sweet_calabash Passiflora_maliformis,West Indian passionflower with edible apple-sized fruit
+74747,sweet_cassava Manihot_dulcis,South American plant with roots used as a vegetable and herbage used for stock feed
+74748,sweet_cherry Prunus_avium,large Eurasian tree producing small dark bitter fruit in the wild but edible sweet fruit under cultivation
+74749,sweet_cherry black_cherry,any of several fruits of cultivated cherry trees that have sweet flesh
+74750,sweet_cicely,fresh ferny leaves and green seeds used as garnish in salads and cold vegetables; dried seeds used in confectionery and liqueurs
+74751,sweet_cicely Myrrhis_odorata,European herb with soft ferny leaves and white flowers
+74752,sweet_cider,unfermented cider
+74753,sweet_coltsfoot Petasites_sagitattus,American sweet-scented herb
+74754,sweet_corn green_corn,corn that can be eaten as a vegetable while still young and soft
+74755,sweet_corn sugar_corn green_corn sweet_corn_plant Zea_mays_rugosa Zea_saccharata,a corn plant developed in order to have young ears that are sweet and suitable for eating
+74756,sweet_false_chamomile wild_chamomile German_chamomile Matricaria_recutita Matricaria_chamomilla,annual Eurasian herb similar in fragrance and medicinal uses to chamomile though taste is more bitter and effect is considered inferior
+74757,sweet_fern Comptonia_peregrina Comptonia_asplenifolia,deciduous shrub of eastern North America with sweet scented fernlike leaves and tiny white flowers
+74758,sweet_flag calamus sweet_calamus myrtle_flag flagroot Acorus_calamus,perennial marsh plant having swordlike leaves and aromatic roots
+74759,sweet_four_o'clock maravilla Mirabilis_longiflora,leafy wildflower having fragrant slender white or pale pink trumpet-shaped flowers; southwestern United States and northern Mexico
+74760,sweet_gale Scotch_gale Myrica_gale,bog shrub of north temperate zone having bitter-tasting fragrant leaves
+74761,sweet_gum liquidambar,aromatic exudate from the sweet gum tree
+74762,sweet_gum satin_walnut hazelwood red_gum,reddish-brown wood and lumber from heartwood of the sweet gum tree used to make furniture
+74763,sweet_gum sweet_gum_tree bilsted red_gum American_sweet_gum Liquidambar_styraciflua,a North American tree of the genus Liquidambar having prickly spherical fruit clusters and fragrant sap
+74764,sweet_lemon sweet_lime Citrus_limetta,lemon tree having fruit with a somewhat insipid sweetish pulp
+74765,sweet_marjoram knotted_marjoram Origanum_majorana Majorana_hortensis,aromatic European plant native to Mediterranean and Turkey; not widespread in Europe
+74766,sweet_melon muskmelon sweet_melon_vine Cucumis_melo,any of several varieties of vine whose fruit has a netted rind and edible flesh and a musky smell
+74767,sweet_nothings honeyed_words,inconsequential expressions of affection; "he whispered sweet nothings into her ear"
+74768,sweet_oil,mild vegetable oil when used as food; especially olive or edible rape oil
+74769,sweet_orange,orange with sweet juicy pulp; often has a thin skin
+74770,sweet_orange sweet_orange_tree Citrus_sinensis,probably native to southern China; widely cultivated as source of table and juice oranges
+74771,sweet_pea sweetpea Lathyrus_odoratus,climbing garden plant having fragrant pastel-colored flowers
+74772,sweet_pepper,large mild crisp thick-walled capsicum peppers usually bell-shaped or somewhat oblong; commonly used in salads
+74773,sweet_pepper bell_pepper pimento pimiento paprika sweet_pepper_plant Capsicum_annuum_grossum,plant bearing large mild thick-walled usually bell-shaped fruits; the principal salad peppers
+74774,sweet_pepperbush pepper_bush summer_sweet white_alder Clethra_alnifolia,shrub of eastern and southern coastal United States having beautiful racemes of spice-scented white flowers
+74775,sweet_pickle,pickle cured in brine and preserved in sugar and vinegar
+74776,sweet_potato,the edible tuberous root of the sweet potato vine which is grown widely in warm regions of the United States
+74777,sweet_potato sweet_potato_vine Ipomoea_batatas,pantropical vine widely cultivated in several varieties for its large sweet tuberous root with orange flesh
+74778,sweet_roll coffee_roll,any of numerous yeast-raised sweet rolls with our without raisins or nuts or spices or a glaze
+74779,sweet_sand_verbena Abronia_fragrans,taller than Abronia elliptica and having night-blooming flowers
+74780,sweet_scabious pincushion_flower mournful_widow Scabiosa_atropurpurea,Old World annual having fragrant purple to deep crimson flower heads; naturalized in United States
+74781,sweet_sultan Amberboa_moschata Centaurea_moschata,Asian plant widely grown for its sweetly fragrant pink flowers; sometimes placed in genus Centaurea
+74782,sweet_sultan Centaurea_imperialis,perennial of mountains of Iran and Iraq; cultivated for its fragrant rose-pink flowers
+74783,sweet_tooth,a strong appetite for sweet food
+74784,sweet_unicorn_plant Proboscidea_fragrans Martynia_fragrans,a herbaceous plant of the genus Proboscidea
+74785,sweet_vermouth Italian_vermouth,sweet dark amber variety
+74786,sweet_vetch Hedysarum_boreale,perennial of western United States having racemes of pink to purple flowers followed by flat pods that separate into nearly orbicular joints
+74787,sweet_violet garden_violet English_violet Viola_odorata,European violet typically having purple to white flowers; widely naturalized
+74788,sweet_white_violet white_violet woodland_white_violet Viola_blanda,short-stemmed violet of eastern North America having fragrant purple-veined white flowers
+74789,sweet_woodruff waldmeister,fragrant dark green leaves used to flavor May wine
+74790,sweet_woodruff waldmeister woodruff fragrant_bedstraw Galium_odoratum Asperula_odorata,Old World fragrant stoloniferous perennial having small white flowers and narrow leaves used as flavoring and in sachets; widely cultivated as a ground cover; in some classifications placed in genus Asperula
+74791,sweet_wormwood Artemisia_annua,wormwood of southeastern Europe to Iran
+74792,sweetbread sweetbreads,edible glands of an animal
+74793,sweetbrier sweetbriar brier briar eglantine Rosa_eglanteria,Eurasian rose with prickly stems and fragrant leaves and bright pink flowers followed by scarlet hips
+74794,sweetening,the act of adding a sweetener to food
+74795,sweetening sweetener,something added to foods to make them taste sweeter
+74796,sweetheart,any well-liked individual; "he's a sweetheart"
+74797,sweetheart sweetie steady truelove,a person loved by another person
+74798,sweetleaf Symplocus_tinctoria,small yellowwood tree of southern United States having small fragrant white flowers; leaves and bark yield a yellow dye
+74799,sweetmeat,a sweetened delicacy (as a preserve or pastry)
+74800,sweetness sweet,the property of tasting as if it contains sugar
+74801,sweetness_and_light,a mild reasonableness; "when he learned who I was he became all sweetness and light"
+74802,sweetsop annon sugar_apple,sweet pulpy tropical fruit with thick scaly rind and shiny black seeds
+74803,sweetsop sweetsop_tree Annona_squamosa,tropical American tree bearing sweet pulpy fruit with thick scaly rind and shiny black seeds
+74804,swell,a rounded elevation (especially one on an ocean floor)
+74805,swell,a crescendo followed by a decrescendo
+74806,swell crestless_wave,the undulating movement of the surface of the open sea
+74807,swelling puffiness lump,an abnormal protuberance or localized enlargement
+74808,swerve swerving veering,the act of turning aside suddenly
+74809,swift,a small bird that resembles a swallow and is noted for its rapid flight
+74810,swiftlet Collocalia_inexpectata,swift of eastern Asia; produces the edible bird's nest
+74811,swimmer,a trained athlete who participates in swimming meets; "he was an Olympic swimmer"
+74812,swimmer natator bather,a person who travels through the water by swimming; "he is not a good swimmer"
+74813,swimmeret pleopod,one of the paired abdominal appendages of certain aquatic crustaceans that function primarily for carrying the eggs in females and are usually adapted for swimming
+74814,swimming swim,the act of swimming; "it was the swimming they enjoyed most"; "they took a short swim in the pool"
+74815,swimming_crab,marine crab with some legs flattened and fringed for swimming
+74816,swimming_event,an athletic competition that involves swimming
+74817,swimming_hole,a small body of water (usually in a creek) that is deep enough to use for swimming
+74818,swimming_kick,a movement of the legs in swimming
+74819,swimming_meet swim_meet,a swimming competition between two or more teams
+74820,swimming_pool swimming_bath natatorium,pool that provides a facility for swimming; "`swimming bath' is a British term"
+74821,swimming_stroke,a method of moving the arms and legs to push against the water and propel the swimmer forward
+74822,swimming_trunks bathing_trunks,swimsuit worn by men while swimming
+74823,swimsuit swimwear bathing_suit swimming_costume bathing_costume,tight fitting garment worn for swimming
+74824,swindle cheat rig,the act of swindling by some fraudulent scheme; "that book is a fraud"
+74825,swindler defrauder chiseller chiseler gouger scammer grifter,a person who swindles you by means of deception or fraud
+74826,swine,stout-bodied short-legged omnivorous animals
+74827,swine_influenza swine_flu,an acute and highly contagious respiratory disease of swine caused by the orthomyxovirus thought to be the same virus that caused the 1918 influenza pandemic
+74828,swineherd pigman,a herder or swine
+74829,swing,a state of steady vigorous action that is characteristic of an activity; "the party went with a swing"; "it took time to get into the swing of things"
+74830,swing,mechanical device used as a plaything to support someone swinging back and forth
+74831,swing,a sweeping blow or stroke; "he took a wild swing at my head"
+74832,swing,a square dance figure; a pair of dancers join hands and dance around a point between them
+74833,swing swing_music jive,a style of jazz played by big bands popular in the 1930s; flowing rhythms but less complex than later styles of jazz
+74834,swing swinging vacillation,changing location by moving back and forth
+74835,swing_door swinging_door,a door that swings on a double hinge; opens in either direction
+74836,swing_voter floating_voter,a voter who has no allegiance to any political party and whose unpredictable decisions can swing the outcome of an election one way or the other
+74837,swinger,someone who swings sports implements
+74838,swinger tramp,a person who engages freely in promiscuous sex
+74839,swinging_chad,a chad that is incompletely removed and still attached at two corners
+74840,swipe,a sweeping stroke or blow
+74841,swish,a brushing or rustling sound
+74842,switch,hairpiece consisting of a tress of false hair; used by women to give shape to a coiffure
+74843,switch,railroad track having two movable rails and necessary connections; used to turn a train from one track to another or to store rolling stock
+74844,switch,a flexible implement used as an instrument of punishment
+74845,switch,a basketball maneuver; two defensive players shift assignments so that each guards the player usually guarded by the other
+74846,switch electric_switch electrical_switch,control consisting of a mechanical or electrical or electronic device for making or breaking or changing the connections in a circuit
+74847,switch switching shift,the act of changing one thing or position for another; "his switch on abortion cost him the election"
+74848,switch-hitter,slang term for a bisexual person
+74849,switch-hitter,a baseball player who can bat either right or left handed
+74850,switch_engine donkey_engine,a locomotive for switching rolling stock in a railroad yard
+74851,switch_grass Panicum_virgatum,grass of western America used for hay
+74852,switchblade switchblade_knife flick-knife flick_knife,a pocketknife with a blade that springs open at the press of a button
+74853,switchboard patchboard plugboard,telephone central where circuits are completed with patchcords
+74854,switcher whipper,a person who administers punishment by wielding a switch or whip
+74855,switcheroo,a sudden unexpected switch
+74856,switchman,a man who operates railroad switches
+74857,swivel,a coupling (as in a chain) that has one end that turns on a headed pin
+74858,swivel_chair,a chair that swivels on its base
+74859,swivet,a panic or extreme discomposure; "it threw her into a swivet"
+74860,swiz,British slang for a swindle
+74861,swizzle,any of various tall frothy mixed drinks made usually of rum and lime juice and sugar shaken with ice
+74862,swizzle_stick,a small stick used to stir mixed drinks
+74863,swoop,a very rapid raid
+74864,swoop,a swift descent through the air
+74865,swoop slide,(music) rapid sliding up or down the musical scale; "the violinist was indulgent with his swoops and slides"
+74866,swoosh whoosh,the noise produced by the sudden rush of a fluid (a gas or liquid)
+74867,sword blade brand steel,a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard
+74868,sword-cut,a scar from a cut made by a sword
+74869,sword_bean Canavalia_gladiata,twining tropical Old World plant bearing long pods usually with red or brown beans; long cultivated in Orient for food
+74870,sword_cane sword_stick,a cane concealing a sword or dagger
+74871,sword_dance sword_dancing,any of various dances by men who step nimbly over swords or flourish them in the air
+74872,sword_fern,any of several tropical ferns having more or less sword-shaped fronds including one from which the Boston fern developed
+74873,sword_grass,any of various grasses or sedges having sword-shaped leaves with sharp edges
+74874,sword_knot,an ornamental tassel on the hilt of a sword
+74875,sword_of_Damocles,a constant and imminent peril; "the possibility hangs over their heads like the sword of Damocles"
+74876,swordfish,flesh of swordfish usually served as steaks
+74877,swordfish Xiphias_gladius,large toothless marine food fish with a long swordlike upper jaw; not completely cold-blooded i.e. they are able to warm their brains and eyes: worldwide in warm waters but feed on cold ocean floor coming to surface at night
+74878,swordsmanship,skill in fencing
+74879,swordtail helleri topminnow Xyphophorus_helleri,freshwater fish of Central America having a long swordlike tail; popular aquarium fish
+74880,swot grind nerd wonk dweeb,an insignificant student who is ridiculed as being affected or boringly studious
+74881,swung_dash,a punctuation mark used in text to indicate the omission of a word
+74882,sycamore great_maple scottish_maple Acer_pseudoplatanus,Eurasian maple tree with pale grey bark that peels in flakes like that of a sycamore tree; leaves with five ovate lobes yellow in autumn
+74883,sycamore lacewood,variably colored and sometimes variegated hard tough elastic wood of a sycamore tree
+74884,sycamore sycamore_fig mulberry_fig Ficus_sycomorus,thick-branched wide-spreading tree of Africa and adjacent southwestern Asia often buttressed with branches rising from near the ground; produces cluster of edible but inferior figs on short leafless twigs; the biblical sycamore
+74885,syconium,the fleshy multiple fruit of the fig consisting of an enlarged hollow receptacle containing numerous fruitlets
+74886,sycophancy,fawning obsequiousness
+74887,sycophant toady crawler lackey ass-kisser,a person who tries to please someone in order to gain a personal advantage
+74888,syllabary syllabic_script,a writing system whose characters represent syllables
+74889,syllabication syllabification,forming or dividing words into syllables
+74890,syllabicity,the pattern of syllable formation in a particular language
+74891,syllable,a unit of spoken language larger than a phoneme; "the word `pocket' has two syllables"
+74892,syllabub sillabub,spiced hot milk with rum or wine
+74893,syllabub sillabub,sweetened cream beaten with wine or liquor
+74894,syllepsis,use of a word to govern two or more words though agreeing in number or case etc. with only one
+74895,syllogism,deductive reasoning in which a conclusion is derived from two premises
+74896,syllogist syllogizer syllogiser,logician skilled in syllogistic reasoning
+74897,sylph,a slender graceful young woman
+74898,sylph,an elemental being believed to inhabit the air
+74899,sylvan silvan,a spirit that lives in or frequents the woods
+74900,sylvanite graphic_tellurium,a silver-white mineral consisting of silver gold telluride; a source of gold in Australia and America
+74901,sylvite sylvine,a mineral consisting of native potassium chloride; an important ore of potassium that is found in sedimentary beds
+74902,symbiosis mutualism,the relation between two different species of organisms that are interdependent; each gains benefits from the other
+74903,symbol,an arbitrary sign (written or printed) that has acquired a conventional significance
+74904,symbol symbolization symbolisation symbolic_representation,something visible that by association or convention represents something else that is invisible; "the eagle is a symbol of the United States"
+74905,symbolatry symbololatry symbol-worship,the worship of symbols
+74906,symbolic_logic mathematical_logic formal_logic,any logical system that abstracts the form of statements away from their content in order to establish abstract criteria of consistency and validity
+74907,symbolic_logician,a person skilled at symbolic logic
+74908,symbolism,an artistic movement in the late 19th century that tried to express abstract or mystical ideas through the symbolic use of images
+74909,symbolism,a system of symbols and symbolic representations
+74910,symbolism symbolization symbolisation,the practice of investing things with symbolic meaning
+74911,symbolist,a member of an artistic movement that expressed ideas indirectly via symbols
+74912,symbolist symbolizer symboliser,someone skilled in the interpretation or representation of symbols
+74913,symbolization symbolisation,the use of symbols to convey meaning
+74914,symbolizing symbolising,the act of representing something with a symbol
+74915,symbology,the study or the use of symbols and symbolism
+74916,symmetry proportion,balance among the parts of something
+74917,symmetry symmetricalness correspondence balance,(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane
+74918,sympathectomy,surgical interruption of a nerve pathway in the sympathetic nervous system
+74919,sympathetic_nervous_system,originates in the thoracic regions of the spinal cord; opposes physiological effects of the parasympathetic: reduces digestive secretions; speeds the heart; contracts blood vessels
+74920,sympathetic_vibration,(physics) vibration produced by resonance
+74921,sympathizer sympathiser comforter,a person who commiserates with someone who has had misfortune
+74922,sympathizer sympathiser well-wisher,someone who shares your feelings or opinions and hopes that you will be successful
+74923,sympathy,a relation of affinity or harmony between people; whatever affects one correspondingly affects the other; "the two of them were in close sympathy"
+74924,sympathy fellow_feeling,sharing the feelings of others (especially feelings of sorrow or anguish)
+74925,sympathy understanding,an inclination to support or be loyal to or to agree with an opinion; "his sympathies were always with the underdog"; "I knew I could count on his understanding"
+74926,sympathy_card,a card expressing sympathy
+74927,sympathy_strike sympathetic_strike,a strike in support of other workers who are on strike; a strike not resulting from direct grievances against the workers' employer
+74928,sympatry,the occurrence of organisms in overlapping geographical areas, but without interbreeding
+74929,symphonic_poem tone_poem,an orchestral composition based on literature or folk tales
+74930,symphonist,a composer of symphonies
+74931,symphony symphonic_music,a long and complex sonata for symphony orchestra
+74932,symphony_orchestra symphony philharmonic,a large orchestra; can perform symphonies; "we heard the Vienna symphony"
+74933,symphysion,the most forward point of the alveolar process of the mandible
+74934,symphysis,an abnormal adhesion of two or more structures
+74935,symphysis,a growing together of parts or structures
+74936,symploce,repetition of a word or phrase at the beginning and another at the end of successive clauses, i.e., simultaneous use of anaphora and epistrophe
+74937,symposiast,someone who participates in a symposium
+74938,symposium,a meeting or conference for the public discussion of some topic especially one in which the participants form an audience and make presentations
+74939,symptom,(medicine) any sensation or change in bodily function that is experienced by a patient and is associated with a particular disease
+74940,symptom,anything that accompanies X and is regarded as an indication of X's existence
+74941,synagogue temple tabernacle,(Judaism) the place of worship for a Jewish congregation
+74942,synapse,the junction between two neurons (axon-to-dendrite) or between a neuron and a muscle; "nerve impulses cross a synapse through the action of neurotransmitters"
+74943,synapsid synapsid_reptile,extinct reptile having a single pair of lateral temporal openings in the skull
+74944,synapsis,the side by side pairing of homologous maternal and paternal chromosomes at the start of meiosis
+74945,syncategorem syncategoreme,a syncategorematic expression; a word that cannot be used alone as a term in a logical proposition; "logical quantifiers, adverbs, prepositions, and conjunctions are called syncategoremes"
+74946,synchrocyclotron,cyclotron that achieves relativistic velocities by modulating the frequency of the accelerating electric field
+74947,synchroflash,a device used in photography to synchronize the peak of a flash with the opening of the camera shutter
+74948,synchromesh,an automotive system for shifting gears in which the gears revolve at the same speed and so shift smoothly
+74949,synchronic_linguistics,the study of a language without reference to its historical context
+74950,synchronism synchrony synchronicity synchroneity synchronization synchronisation synchronizing,the relation that exists when things occur at the same time; "the drug produces an increased synchrony of the brain waves"
+74951,synchronization synchronisation synchronizing,coordinating by causing to indicate the same time; "the synchronization of their watches was an important preliminary"
+74952,synchronization synchronisation synchronizing synchronising,an adjustment that causes something to occur or recur in unison
+74953,synchronous_converter rotary rotary_converter,electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa
+74954,synchronous_motor,electric motor in which the speed of rotation is proportional to the frequency of the A.C. power
+74955,synchronous_operation,operations that are initiated predictably by a clock
+74956,synchroscope synchronoscope synchronizer synchroniser,an instrument that indicates whether two periodic motions are synchronous (especially an instrument that enables a pilot to synchronize the propellers of a plane that has two or more engines)
+74957,synchrotron,cyclotron in which the electric field is maintained at a constant frequency
+74958,syncopation,a musical rhythm accenting a normally weak beat
+74959,syncopation,music (especially dance music) that has a syncopated rhythm
+74960,syncopator,a musician who plays syncopated jazz music (usually in a dance band); "they called themselves the Dixie Syncopators"
+74961,syncope syncopation,(phonology) the loss of sounds from within a word (as in `fo'c'sle' for `forecastle')
+74962,syncretism,the union (or attempted fusion) of different systems of thought or belief (especially in religion or philosophy); "a syncretism of material and immaterial theories"
+74963,syncretism,the fusion of originally different inflected forms (resulting in a reduction in the use of inflections)
+74964,syncytium,a mass of cytoplasm containing several nuclei and enclosed in a membrane but no internal cell boundaries (as in muscle fibers)
+74965,syndactyly syndactylism,birth defect in which there is partial or total webbing connecting two or more fingers or toes
+74966,syndic,one appointed to represent a city or university or corporation in business transactions
+74967,syndicalism,a radical political movement that advocates bringing industry and government under the control of labor unions
+74968,syndicate,a news agency that sells features or articles or photographs etc. to newspapers for simultaneous publication
+74969,syndicate crime_syndicate mob family,a loose affiliation of gangsters in charge of organized criminal activities
+74970,syndication,organizing into or administering as a syndicate
+74971,syndication,selling (an article or cartoon) for publication in many magazines or newspapers at the same time; "he received a comfortable income from the syndication of his work"
+74972,syndicator,a businessman who forms a syndicate
+74973,syndrome,a pattern of symptoms indicative of some disease
+74974,syndrome,a complex of concurrent things; "every word has a syndrome of meanings"
+74975,synecdoche,substituting a more inclusive term for a less inclusive one or vice versa
+74976,synechia,adhesions between the iris and the lens or cornea resulting from trauma or eye surgery or as a complication of glaucoma or cataract; can lead to blindness
+74977,syneresis synaeresis,the contraction of two vowels into a diphthong
+74978,syneresis synaeresis,the separation of liquid from a gel that is caused by contraction (as in cheese making)
+74979,synergism,the theological doctrine that salvation results from the interaction of human will and divine grace
+74980,synergist,a drug that augments the activity of another drug
+74981,synergy synergism,the working together of two things (muscles or drugs for example) to produce an effect greater than the sum of their individual effects
+74982,synesthesia synaesthesia,a sensation that normally occurs in one sense modality occurs when another modality is stimulated
+74983,synesthetic_metaphor,a metaphor that exploits a similarity between experiences in different sense modalities
+74984,synizesis synezesis,the contraction of chromatin towards one side of the nucleus during the prophase of meiosis
+74985,synod,a council convened to discuss ecclesiastical business
+74986,synonym equivalent_word,two words that can be interchanged in a context are said to be synonymous relative to that context
+74987,synonymist,a student of synonyms
+74988,synonymy synonymity synonymousness,the semantic relation that holds between two words that can (in a given context) express the same meaning
+74989,synovia synovial_fluid,viscid lubricating fluid secreted by the membrane lining joints and tendon sheaths etc.
+74990,synovial_joint articulatio_synovialis diarthrosis,a joint so articulated as to move freely
+74991,synovial_membrane synovium,a thin membrane in synovial (freely moving) joints that lines the joint capsule and secretes synovial fluid
+74992,synovitis,inflammation of the synovial membrane that lines a synovial joint; results in pain and swelling
+74993,synset,a set of one or more synonyms
+74994,syntagma syntagm,a syntactic string of words that forms a part of some larger syntactic unit
+74995,syntax,a systematic orderly arrangement
+74996,syntax,studies of the rules for forming admissible sentences
+74997,syntax sentence_structure phrase_structure,the grammatical arrangement of words in sentences
+74998,syntax_checker,a program to check natural language syntax
+74999,syntax_error,an error of language resulting from code that does not conform to the syntax of the programming language; "syntax errors can be recognized at compilation time"; "a common syntax error is to omit a parenthesis"
+75000,syntax_language,a language used to describe the syntax of another language
+75001,synthesis,the process of producing a chemical compound (usually by the union of simpler chemical compounds)
+75002,synthesis synthetic_thinking,the combination of ideas into a complex whole
+75003,synthesist synthesizer synthesiser,an intellectual who synthesizes or uses synthetic methods
+75004,synthesizer synthesiser,(music) an electronic instrument (usually played with a keyboard) that generates and modifies sounds electronically and can imitate a variety of other musical instruments
+75005,synthetic synthetic_substance,a compound made artificially by chemical reactions
+75006,synthetic_cubism,the late phase of cubism
+75007,synthetic_resin,a resin having a polymeric structure; especially a resin in the raw state; used chiefly in plastics
+75008,synthetism,a genre of French painting characterized by bright flat shapes and symbolic treatments of abstract ideas
+75009,syphilis syph pox lues_venerea lues,a common venereal disease caused by the treponema pallidum spirochete; symptoms change through progressive stages; can be congenital (transmitted through the placenta)
+75010,syphilitic,a person suffering from syphilis
+75011,syringe,a medical instrument used to inject or withdraw fluids
+75012,syrinx,the vocal organ of a bird
+75013,syrup sirup,a thick sweet sticky liquid
+75014,system,(physical chemistry) a sample of matter in which substances in different phases are in equilibrium; "in a static system oil cannot be replaced by water on a surface"; "a system generating hydrogen peroxide"
+75015,system,a procedure or process for obtaining an objective; "they had to devise a system that did not depend on cooperation"
+75016,system,a group of physiologically or anatomically related organs or parts; "the body has a system of organs for digestion"
+75017,system,the living body considered as made up of interdependent components forming a unified whole; "exercise helped him get the alcohol out of his system"
+75018,system,instrumentality that combines interrelated interacting artifacts designed to work as a coherent entity; "he bought a new stereo system"; "the system consists of a motor and a small computer"
+75019,system scheme,a group of independent but interrelated elements comprising a unified whole; "a vast system of production and distribution and consumption keep the country going"
+75020,system system_of_rules,a complex of methods or rules governing behavior; "they have to operate under a system they oppose"; "that language has a complex system for indicating gender"
+75021,system_administrator,a person in charge of managing and maintaining a computer system of telecommunication system (as for a business or institution)
+75022,system_call supervisor_call_instruction,an instruction that interrupts the program being executed and passes control to the supervisor
+75023,system_clock,a time-of-day clock in a computer system
+75024,system_clock,an electronic device in a computer that issues a steady high-frequency signal that synchronizes all the internal components
+75025,system_command,a computer user's instruction (not part of a program) that calls for action by the computer's executive program
+75026,system_error,an instruction that is either not recognized by an operating system or is in violation of the procedural rules
+75027,system_of_measurement metric,a system of related measures that facilitates the quantification of some particular characteristic
+75028,system_of_weights weight,a system of units used to express the weight of something
+75029,system_of_weights_and_measures,system of measurement for length and weight and duration
+75030,system_program systems_program systems_software,a program (as an operating system or compiler or utility program) that controls some aspect of the operation of a computer
+75031,systematics,the science of systematic classification
+75032,systematism,the habitual practice of systematization and classification
+75033,systematization systematisation rationalization rationalisation,systematic organization; the act of organizing something according to a system or a rationale
+75034,systemic_circulation,circulation that supplies blood to all the body except to the lungs
+75035,systemic_lupus_erythematosus SLE disseminated_lupus_erythematosus,an inflammatory disease of connective tissue with variable features including fever and weakness and fatigability and joint pains and skin lesions on the face or neck or arms
+75036,systems_analysis,analysis of all aspects of a project along with ways to collect information about the operation of its parts
+75037,systems_analyst,a person skilled at systems analysis
+75038,systole,the contraction of the chambers of the heart (especially the ventricles) to drive blood into the aorta and pulmonary artery
+75039,systolic_murmur,a murmur heard during systole
+75040,systolic_pressure,the blood pressure (as measured by a sphygmomanometer) during the contraction of the left ventricle of the heart
+75041,syzygy,the straight line configuration of 3 celestial bodies (as the sun and earth and moon) in a gravitational system
+75042,t'ai_chi tai_chi t'ai_chi_chuan tai_chi_chuan taichi taichichuan,a Chinese system of slow meditative physical exercise designed for relaxation and balance and health
+75043,tab,a short strip of material attached to or projecting from something in order to facilitate opening or identifying or handling it; "pull the tab to open the can"; "files with a red tab will be stored separately"; "the collar has a tab with a button hole"; "the filing cards were organized by cards having indexed tabs"
+75044,tab_key tab,the key on a typewriter or a word processor that causes a tabulation
+75045,tabard,a short sleeveless outer tunic emblazoned with a coat of arms; worn by a knight over his armor or by a herald
+75046,tabasco red_pepper,very hot red peppers; usually long and thin; some very small
+75047,tabasco_pepper hot_pepper tabasco_plant Capsicum_frutescens,plant bearing very hot medium-sized oblong red peppers; grown principally in the Gulf Coast states for production of hot sauce
+75048,tabbouleh tabooli,a finely chopped salad with tomatoes and parsley and mint and scallions and bulgur wheat
+75049,tabby queen,female cat
+75050,tabby tabby_cat,a cat with a grey or tawny coat mottled with black
+75051,tabes,wasting of the body during a chronic disease
+75052,tabes_dorsalis locomotor_ataxia,syphilis of the spinal cord characterized by degeneration of sensory neurons and stabbing pains in the trunk and legs and unsteady gait and incontinence and impotence
+75053,tabi tabis,a sock with a separation for the big toe; worn with thong sandals by the Japanese
+75054,tablature,a musical notation indicating the fingering to be used
+75055,table,a company of people assembled at a table for a meal or game; "he entertained the whole table with his witty remarks"
+75056,table,a piece of furniture with tableware for a meal laid out on it; "I reserved a table at my favorite restaurant"
+75057,table,a piece of furniture having a smooth flat top that is usually supported by one or more vertical legs; "it was a sturdy table"
+75058,table tabular_array,a set of data arranged in rows and columns; "see table 1"
+75059,table-mountain_pine prickly_pine hickory_pine Pinus_pungens,a small two-needled upland pine of the eastern United States (Appalachians) having dark brown flaking bark and thorn-tipped cone scales
+75060,table-tennis_racquet table-tennis_bat pingpong_paddle,paddle used to play table tennis
+75061,table-tennis_table ping-pong_table pingpong_table,a table used for playing table tennis
+75062,table_d'hote,a menu offering a complete meal with limited choices at a fixed price
+75063,table_game,a game that is played on a table
+75064,table_knife,a knife used for eating at dining table
+75065,table_lamp,a lamp that sits on a table
+75066,table_linen napery,linens for the dining table
+75067,table_mat hot_pad,a pad for use under a hot dish to protect a table
+75068,table_rapping table_tapping spirit_rapping,alleged form of communication with spirits of the dead
+75069,table_saw,a circular saw mounted under a table or bench so that the blade of the saw projects up through a slot
+75070,table_talk,conversation during a meal
+75071,table_tennis Ping-Pong,a game (trademark Ping-Pong) resembling tennis but played on a table with paddles and a light hollow ball
+75072,table_tipping table_tilting table_turning table_lifting,manipulation of a table during a seance; attributed to spirits
+75073,table_wine,wine containing not more than 14 percent alcohol usually served with a meal
+75074,tableau,any dramatic scene
+75075,tableau tableau_vivant,a group of people attractively arranged (as if in a painting)
+75076,tablecloth,a covering spread over a dining table
+75077,tablefork,a fork for eating at a dining table
+75078,tableland plateau,a relatively flat highland
+75079,tablemate dining_companion,someone you dine with
+75080,tablespoon,a spoon larger than a dessert spoon; used for serving
+75081,tablespoon tablespoonful,as much as a tablespoon will hold
+75082,tablet,a slab of stone or wood suitable for bearing an inscription
+75083,tablet,a small flat compressed cake of some substance; "a tablet of soap"
+75084,tablet-armed_chair,a chair with an arm that has been widened for writing
+75085,tabletop,the top horizontal work surface of a table
+75086,tableware,articles for use at the table (dishes and silverware and glassware)
+75087,tabloid rag sheet,newspaper with half-size pages
+75088,taboo tabu,a prejudice (especially in Polynesia and other South Pacific islands) that prohibits the use or mention of something because of its sacred nature
+75089,taboo tabu,an inhibition or ban resulting from social custom or emotional aversion
+75090,tabor tabour,a small drum with one head of soft calfskin
+75091,tabor_pipe,a small fipple flute that is played with the left hand while the right hand is free to beat a tabor
+75092,taboret tabouret,a low stool in the shape of a drum
+75093,tabula_rasa,a young mind not yet affected by experience (according to John Locke)
+75094,tabulation,the act of putting into tabular form; "the tabulation of the results"
+75095,tabulation tabular_matter,information set out in tabular form
+75096,tabun GA,the first known nerve agent, synthesized by German chemists in 1936; a highly toxic combustible liquid that is soluble in organic solvents and is used as a nerve gas in chemical warfare
+75097,tachina_fly,bristly fly whose larvae live parasitically in caterpillars and other insects; important in control of noxious insects
+75098,tachistoscope t-scope,scientific instrument used by psychologists; presents visual stimuli for brief exposures
+75099,tachogram,a graphical record of speed and distance produced by a tachograph
+75100,tachograph,a tachometer that produces a graphical record of its readings; used to record the speed and duration of trips in a motor vehicle
+75101,tachometer tach,measuring instrument for indicating speed of rotation
+75102,tachycardia,abnormally rapid heartbeat (over 100 beats per minute)
+75103,tachylite,a basic or basalt glass
+75104,tachymeter tacheometer,a theodolite designed for rapid measurements
+75105,tack,the heading or position of a vessel relative to the trim of its sails
+75106,tack,a short nail with a sharp point and a large head
+75107,tack,sailing a zigzag course
+75108,tack tacking,(nautical) the act of changing tack
+75109,tack_hammer,a light hammer that is used to drive tacks
+75110,tacker,a worker who fastens things by tacking them (as with tacks or by spotwelding)
+75111,tackle,the person who plays that position on a football team; "the right tackle is a straight A student"
+75112,tackle,(American football) a position on the line of scrimmage; "it takes a big man to play tackle"
+75113,tackle,(American football) grasping an opposing player with the intention of stopping by throwing to the ground
+75114,tackler,a football player who tackles the ball carrier
+75115,taco,a tortilla rolled cupped around a filling
+75116,taco_sauce,spicy tomato-based sauce for tacos
+75117,taconite,a variety of chert containing magnetite and hematite; mined as a low-grade iron ore
+75118,tact tactfulness,consideration in dealing with others and avoiding giving offense
+75119,tactic tactics maneuver manoeuvre,a plan for attaining a particular goal
+75120,tactical_intelligence combat_intelligence,intelligence that is required for the planning and conduct of tactical operations
+75121,tactical_warning,(military) a warning after the initiation of a hostile act
+75122,tactician,a person who is skilled at planning tactics
+75123,tactics,the branch of military science dealing with detailed maneuvers to achieve objectives set by strategy
+75124,tactile_property feel,a property perceived by touch
+75125,tactlessness,the quality of lacking tact
+75126,tactual_sensation tactility touch_perception skin_perceptiveness,the faculty of perceiving (via the skin) pressure or heat or pain
+75127,tad shade,a slight amount or degree of difference; "a tad too expensive"; "not a tad of difference"; "the new model is a shade better than the old one"
+75128,tadalafil Cialis,virility drug (trade name Cialis) used to treat erectile dysfunction in men
+75129,tadpole polliwog pollywog,a larval frog or toad
+75130,tadpole_shrimp,a kind of branchiopod crustacean
+75131,tae_kwon_do taekwondo,a Korean martial art similar to karate
+75132,tael,a unit of weight used in east Asia approximately equal to 1.3 ounces
+75133,taenia,tapeworms parasitic in humans which uses the pig as its intermediate host
+75134,taenia tenia fillet,a narrow headband or strip of ribbon worn as a headband
+75135,taffeta,a crisp smooth lustrous fabric
+75136,taffrail,the railing around the stern of a ship
+75137,taffy,chewy candy of sugar or syrup boiled until thick and pulled until glossy
+75138,tag,a label associated with something for the purpose of identification; "semantic tags were attached in order to identify different meanings of the word"
+75139,tag,a game in which one child chases the others; the one who is caught becomes the next chaser
+75140,tag,(sports) the act of touching a player in a game (which changes their status in the game)
+75141,tag ticket,a label written or printed on paper, cardboard, or plastic that is attached to something to indicate its owner, nature, price, etc.
+75142,tagalong hanger-on,someone who persistently (and annoyingly) follows along
+75143,tagasaste Chamaecytisus_palmensis Cytesis_proliferus,shrub of Canary Islands having bristle-tipped oblanceolate leaves; used as cattle fodder
+75144,tagger,someone who assigns labels to the grammatical constituents of textual matter
+75145,tagger,someone who appends or joins one thing to another; "a theory that was simply added on by some anonymous tagger"
+75146,tagger tagging_program,a computer program that attaches labels to the grammatical constituents of textual matter
+75147,tagliatelle,pasta cut in narrow ribbons
+75148,taguan flying_marmot flying_cat Petaurista_petaurista,East Indian flying squirrel
+75149,tahini,a thick Middle Eastern paste made from ground sesame seeds
+75150,tahoka_daisy tansy_leaf_aster Machaeranthera_tanacetifolia,wild aster with fernlike leaves and flower heads with very narrow bright purple rays; Alberta to Texas and Mexico
+75151,tail,(usually plural) the reverse side of a coin that does not bear the representation of a person's head
+75152,tail,the posterior part of the body of a vertebrate especially when elongated and extending beyond the trunk or main part of the body
+75153,tail shadow shadower,a spy employed to follow someone and report their movements
+75154,tail tail_assembly empennage,the rear part of an aircraft
+75155,tail tail_end,any projection that resembles the tail of an animal
+75156,tail_feather,feather growing from the tail (uropygium) of a bird
+75157,tail_fin caudal_fin,the tail of fishes and some other aquatic vertebrates
+75158,tail_fin tailfin fin,one of a pair of decorations projecting above the rear fenders of an automobile
+75159,tail_gate,a gate downstream from a lock or canal that is used to control the flow of water at the lower end
+75160,tail_rotor anti-torque_rotor,rotor consisting of a rotating airfoil on the tail of a single-rotor helicopter; keeps the helicopter from spinning in the direction opposite to the rotation of the main rotor
+75161,tailback,(American football) the person who plays tailback
+75162,tailback,(American football) the position of the offensive back on a football team who lines up farthest from the line of scrimmage
+75163,tailed_frog bell_toad ribbed_toad tailed_toad Ascaphus_trui,western North American frog with a taillike copulatory organ
+75164,tailgate tailboard,a gate at the rear of a vehicle; can be lowered for loading
+75165,tailgater,a driver who follows too closely behind another motor vehicle
+75166,tailless_tenrec Tenrec_ecaudatus,prolific animal that feeds chiefly on earthworms
+75167,taillight tail_lamp rear_light rear_lamp,lamp (usually red) mounted at the rear of a motor vehicle
+75168,tailor seamster sartor,a person whose occupation is making and altering garments
+75169,tailor's_chalk,chalk used by tailors to make temporary marks on cloth
+75170,tailor's_tack,a loose, looped, sewing stitch used to transfer marking for darts, etc., from a pattern to material
+75171,tailor-made,custom-made clothing
+75172,tailorbird Orthotomus_sutorius,tropical Asian warbler that stitches leaves together to form and conceal its nest
+75173,tailoring,the occupation of a tailor
+75174,tailpiece,appendage added to extend the length of something
+75175,tailpipe,a pipe carrying fumes from the muffler to the rear of a car
+75176,tailrace,a watercourse that carries water away from a mill or water wheel or turbine
+75177,tailspin,loss of emotional control often resulting in emotional collapse
+75178,tailspin spin,rapid descent of an aircraft in a steep spiral
+75179,tailstock,support consisting of the movable part of a lathe that slides along the bed in alignment with the headstock and is locked into position to support the free end of the workpiece
+75180,tailwind,wind blowing in the same direction as the path of a ship or aircraft
+75181,taipan Oxyuranus_scutellatus,large highly venomous snake of northeastern Australia
+75182,taka,the basic unit of money in Bangladesh; equal to 100 paisa
+75183,take,the act of photographing a scene or part of a scene without interruption
+75184,take-home_pay,what is left of your pay after deductions for taxes and dues and insurance etc
+75185,take-in,the act of taking in as by fooling or cheating or swindling someone
+75186,take-up,any of various devices for reducing slack (as in a sewing machine) or taking up motion (as in a loom); "a take-up that winds photographic film on a spool"
+75187,take-up,the action of taking up as by tightening or absorption or reeling in
+75188,takeaway,a concession made by a labor union to a company that is trying to lower its expenditures
+75189,takeaway,the act of taking the ball or puck away from the team on the offense (as by the interception of a pass)
+75190,takedown,(amateur wrestling) being brought to the mat from a standing position; "a takedown counts two points"
+75191,takeoff,the initial ascent of an airplane as it becomes airborne
+75192,takeoff,a departure; especially of airplanes
+75193,takeout,(bridge) a bid that asks your partner to bid another suit
+75194,takeout takeout_food takeaway,prepared food that is intended to be eaten off of the premises; "in England they call takeout food `takeaway'"
+75195,takeover,a change by sale or merger in the controlling interest of a corporation
+75196,takeover_attempt,an attempt to take control of a corporation
+75197,takeover_bid,an offer to buy shares in order to take over the company
+75198,taker,one who accepts an offer
+75199,taker,one who takes a bet or wager
+75200,takin gnu_goat Budorcas_taxicolor,large heavily built goat antelope of eastern Himalayan area
+75201,tala,the basic unit of money in Western Samoa
+75202,talapoin Cercopithecus_talapoin,smallest guenon monkey; of swampy central and west African forests
+75203,talaria,a winged sandal (as worn by Hermes in Graeco-Roman art)
+75204,talc talcum,a fine grained mineral having a soft soapy feel and consisting of hydrated magnesium silicate; used in a variety of products including talcum powder
+75205,talcum talcum_powder,a toilet powder made of purified talc and usually scented; absorbs excess moisture
+75206,talent,a person who possesses unusual innate ability in some field or activity
+75207,talent_agent,an agent who represents performers
+75208,talentlessness,a lack of talent
+75209,talipes_calcaneus,talipes in which the toes are pointed upward and the person walks on the heel of the foot
+75210,talipes_equinus,talipes in which the toes are pointed downward
+75211,talipes_valgus,deformity of the foot in which the foot is twisted outward
+75212,talipot talipot_palm Corypha_umbraculifera,tall palm of southern India and Sri Lanka with gigantic leaves used as umbrellas and fans or cut into strips for writing paper
+75213,talk,discussion; (`talk about' is a less formal alternative for `discussion of'); "his poetry contains much talk about love and anger"
+75214,talk,the act of giving a talk to an audience; "I attended an interesting talk on local history"
+75215,talk talk_of_the_town,idle gossip or rumor; "there has been talk about you lately"
+75216,talk talking,an exchange of ideas via conversation; "let's have more work and less talk around here"
+75217,talk_show chat_show,a program during which well-known people discuss a topic or answer questions telephoned in by the audience; "in England they call a talk show a chat show"
+75218,talking_book,sound recording of someone reading a book; frequently used by blind people
+75219,talking_head,a talker on television who talks directly into the cameras and whose upper body is all that is shown on the screen
+75220,talking_picture talkie,a movie with synchronized speech and singing
+75221,talking_point,an especially persuasive point helping to support an argument or discussion
+75222,tall,a garment size for a tall person
+75223,tall_bellflower Campanula_americana,annual or perennial of eastern North America with long spikes of blue or white flowers
+75224,tall_cupflower Nierembergia_frutescens,shrubby Chilean herb having bluish-white tubular flowers used as an ornamental
+75225,tall_gallberry_holly,an evergreen shrub
+75226,tall_goldenrod,a variety of goldenrod
+75227,tall_mallow high_mallow cheese cheeseflower Malva_sylvestris,erect or decumbent Old World perennial with axillary clusters of rosy-purple flowers; introduced in United States
+75228,tall_oat_grass tall_meadow_grass evergreen_grass false_oat French_rye Arrhenatherum_elatius,coarse perennial Eurasian grass resembling oat; found on roadside verges and rough grassland and in hay meadows; introduced in North America for forage
+75229,tall_oil,an oil derived from wood pulp and used in making soaps or lubricants
+75230,tall_order large_order,a formidable task or requirement; "finishing in time was a tall order but we did it"
+75231,tall_tale,an improbable (unusual or incredible or fanciful) story
+75232,tall_yellow-eye Xyris_operculata,of Australia
+75233,tallgrass tall-grass,any of various grasses that are tall and that flourish with abundant moisture
+75234,tallness,the property of being taller than average stature
+75235,tallow,obtained from suet and used in making soap, candles and lubricants
+75236,tallow_oil,an animal oil obtained by pressing tallow; used as a lubricant
+75237,tallyman,one who sells goods on the installment plan
+75238,tallyman tally_clerk,one who keeps a tally of quantity or weight of goods produced or shipped or received
+75239,talon,a sharp hooked claw especially on a bird of prey
+75240,talus scree,a sloping mass of loose rocks at the base of a cliff
+75241,tam tam-o'-shanter tammy,a woolen cap of Scottish origin
+75242,tamal tamale,dough stuffed with a meat mixture and sometimes wrapped in corn husks and steamed
+75243,tamale_pie,a meat mixture covered with cornbread topping that resembles a Mexican dish
+75244,tamandua tamandu lesser_anteater Tamandua_tetradactyla,small toothless anteater with prehensile tail and four-clawed forelimbs; of tropical South America and Central America
+75245,tamarau tamarao Bubalus_mindorensis Anoa_mindorensis,small buffalo of Mindoro in the Philippines
+75246,tamarin lion_monkey lion_marmoset leoncita,small South American marmoset with silky fur and long nonprehensile tail
+75247,tamarind tamarind_tree tamarindo Tamarindus_indica,long-lived tropical evergreen tree with a spreading crown and feathery evergreen foliage and fragrant flowers yielding hard yellowish wood and long pods with edible chocolate-colored acidic pulp
+75248,tamarind tamarindo,large tropical seed pod with very tangy pulp that is eaten fresh or cooked with rice and fish or preserved for curries and chutneys
+75249,tamarisk,any shrub or small tree of the genus Tamarix having small scalelike or needle-shaped leaves and feathery racemes of small white or pinkish flowers; of mostly coastal areas with saline soil
+75250,tamarisk_gerbil Meriones_unguiculatus,a gerbil that is popular as a pet
+75251,tambala,100 tambala equal 1 kwacha in Malawi
+75252,tambour,a drum
+75253,tambour embroidery_frame embroidery_hoop,a frame made of two hoops; used for embroidering
+75254,tambourine,a shallow drum with a single drumhead and with metallic disks in the sides
+75255,tameness domestication,the attribute of having been domesticated
+75256,tamer,an animal trainer who tames wild animals
+75257,tammy,plain-woven (often glazed) fabric of wool or wool and cotton used especially formerly for linings and garments and curtains
+75258,tamp tamper tamping_bar,a tool for tamping (e.g., for tamping tobacco into a pipe bowl or a charge into a drill hole etc.)
+75259,tampion tompion,plug for the muzzle of a gun to keep out dust and moisture
+75260,tampon,plug of cotton or other absorbent material; inserted into wound or body cavity to absorb exuded fluids (especially blood)
+75261,tamponade tamponage,blockage or closure (as of a wound or body cavity) by (or as if by) a tampon (especially to stop bleeding)
+75262,tan suntan sunburn burn,a browning of the skin resulting from exposure to the rays of the sun
+75263,tan topaz,a light brown the color of topaz
+75264,tanager,any of numerous New World woodland birds having brightly colored males
+75265,tanbark,bark rich in tannin; bruised and cut in pieces to use for tanning; spent tanbark used as a ground covering
+75266,tanbark_oak Lithocarpus_densiflorus,evergreen tree of the Pacific coast area having large leathery leaves; yields tanbark
+75267,tandem,an arrangement of two or more objects or persons one behind another
+75268,tandem_trailer,trucking rig with two trailers in tandem
+75269,tandoor,a clay oven used in northern India and Pakistan
+75270,tanekaha Phyllocladus_trichomanoides,medium tall celery pine of New Zealand
+75271,tang sea_tang,any of various coarse seaweeds
+75272,tanga,100 tanga equal 1 Tajikistani ruble
+75273,tangelo tangelo_tree ugli_fruit Citrus_tangelo,hybrid between grapefruit and mandarin orange; cultivated especially in Florida
+75274,tangelo ugli ugli_fruit,large sweet juicy hybrid between tangerine and grapefruit having a thick wrinkled skin
+75275,tangency,the state of being tangent; having contact at a single point or along a line without crossing
+75276,tangent,a straight line or plane that touches a curve or curved surface at a point but does not intersect it at that point
+75277,tangent tan,ratio of the opposite to the adjacent side of a right-angled triangle
+75278,tangent_plane,the plane that contains all the lines tangent to a specific point on a surface
+75279,tangerine,any of various deep orange mandarins grown in the United States and southern Africa
+75280,tangerine,a reddish to vivid orange color
+75281,tangerine tangerine_tree,a variety of mandarin orange
+75282,tangibility tangibleness palpability,the quality of being perceivable by touch
+75283,tangible_possession material_possession,property or belongings that are tangible
+75284,tangle,a twisted and tangled mass that is highly interwoven; "they carved their way through the tangle of vines"
+75285,tangle snarl maze,something jumbled or confused; "a tangle of government regulations"
+75286,tangle_orchid,an orchid of the genus Plectorrhiza having tangled roots and long wiry stems bearing lax racemes of small fragrant green flowers
+75287,tanglebush desert_olive Forestiera_neomexicana,spiny branching deciduous shrub of southwestern United States having clusters of insignificant yellow-white flowers appearing before leaves followed by attractive black berrylike fruits
+75288,tango,music written in duple time for dancing the tango
+75289,tango,a ballroom dance of Latin-American origin
+75290,tangram,a Chinese puzzle consisting of a square divided into seven pieces that must be arranged to match particular designs
+75291,tank army_tank armored_combat_vehicle armoured_combat_vehicle,an enclosed armored military vehicle; has a cannon and moves on caterpillar treads
+75292,tank storage_tank,a large (usually metallic) vessel for holding gases or liquids
+75293,tank tankful,as much as a tank will hold
+75294,tank_car tank,a freight car that transports liquids or gases in bulk
+75295,tank_circuit,an oscillatory circuit
+75296,tank_destroyer,an armored vehicle equipped with an antitank gun and capable of high speeds
+75297,tank_engine tank_locomotive,a locomotive that carries its own fuel and water; no tender is needed
+75298,tank_farm,an area used exclusively for storing petroleum in large tanks
+75299,tank_furnace,furnace into one end of which a batch of measured raw materials is shoveled and from the other end molten glass is obtained
+75300,tank_iron,plate iron that is thinner than boilerplate but thicker than sheet iron or stovepipe iron
+75301,tank_shell,a shell fired by the cannon on a tank
+75302,tank_top,a tight-fitting sleeveless shirt with wide shoulder straps and low neck and no front opening; often worn over a shirt or blouse
+75303,tanka,a form of Japanese poetry; the 1st and 3rd lines have five syllables and the 2nd, 4th, and 5th have seven syllables
+75304,tanka,a Tibetan religious painting on fabric
+75305,tankage,the quantity contained in (or the capacity of) a tank or tanks
+75306,tankage,the charge for storing something in tanks
+75307,tankage,the act of storing in tanks
+75308,tankard,large drinking vessel with one handle
+75309,tanker tank_driver,a soldier who drives a tank
+75310,tanker_plane,an airplane constructed to transport chemicals that can be dropped in order to fight a forest fire
+75311,tanner,a craftsman who tans skins and hides
+75312,tannery,workplace where skins and hides are tanned
+75313,tannin tannic_acid,any of various complex phenolic substances of plant origin; used in tanning and in medicine
+75314,tanning,process in which skin pigmentation darkens as a result of exposure to ultraviolet light
+75315,tanning,making leather from rawhide
+75316,tannoy,a loudspeaker
+75317,tansy golden_buttons scented_fern Tanacetum_vulgare,common perennial aromatic herb native to Eurasia having buttonlike yellow flower heads and bitter-tasting pinnate leaves sometimes used medicinally
+75318,tansy-leaved_rocket Hugueninia_tanacetifolia Sisymbrium_tanacetifolia,perennial stellate and hairy herb with small yellow flowers of mountains of southern Europe; sometimes placed in genus Sisymbrium
+75319,tansy_mustard Descurainia_pinnata,North American herb with bitter-tasting pinnate leaves resembling those of tansy
+75320,tantalite,a mineral consisting of tantalum oxide of iron and manganese that occurs with niobite or in coarse granite; an ore of tantalum
+75321,tantalizer tantaliser,someone who tantalizes; a tormentor who offers something desirable but keeps it just out of reach
+75322,tantalum Ta atomic_number_73,a hard grey lustrous metallic element that is highly resistant to corrosion; occurs in niobite and fergusonite and tantalite
+75323,tantra,any of a fairly recent class of Hindu or Buddhist religious literature concerned with ritual acts of body and speech and mind
+75324,taoiseach,the prime minister of the Irish Republic
+75325,tap,a small metal plate that attaches to the toe or heel of a shoe (as in tap dancing)
+75326,tap,a tool for cutting female (internal) screw threads
+75327,tap pat dab,a light touch or stroke
+75328,tap spigot,a plug for a bunghole in a cask
+75329,tap_dancer tapper,a dancer who sounds out rhythms by using metal taps on the toes and heels of the shoes
+75330,tap_dancing tap_dance,a dance step tapped out audibly with the feet
+75331,tap_water,water directly from the spigot
+75332,tap_wrench,a wrench for turning a tap to create an internal screw thread
+75333,tapa tapa_bark tappa tappa_bark,the thin fibrous bark of the paper mulberry and Pipturus albidus
+75334,tapa tappa,a paperlike cloth made in the South Pacific by pounding tapa bark
+75335,tape,the finishing line for a foot race; "he broke the tape in record time"
+75336,tape,a long thin piece of cloth or paper as used for binding or fastening; "he used a piece of tape for a belt"; "he wrapped a tape around the package"
+75337,tape tape_recording taping,a recording made on magnetic tape; "the several recordings were combined on a master tape"
+75338,tape tapeline tape_measure,measuring instrument consisting of a narrow strip (cloth or metal) marked in inches or centimeters and used for measuring lengths; "the carpenter should have used his tape measure"
+75339,tape_cartridge,a cartridge containing magnetic tape; for use with audio or video recorders or computer systems
+75340,tape_deck,electronic equipment for making or playing magnetic tapes (but without amplifiers or speakers); a component in an audio system
+75341,tape_drive tape_transport transport,a mechanism that transports magnetic tape across the read/write heads of a tape playback/recorder
+75342,tape_grass eelgrass wild_celery Vallisneria_spiralis,submerged aquatic plant with ribbonlike leaves; Old World and Australia
+75343,tape_player,electronic equipment for playing back magnetic tapes
+75344,tape_recorder tape_machine,a magnetic recorder using magnetic tape
+75345,tapenade,a spread consisting of capers and black olives and anchovies made into a puree with olive oil
+75346,taper,a convex shape that narrows toward a point
+75347,taper,the property possessed by a shape that narrows toward a point (as a wedge or cone)
+75348,taper_file,a file with converging edges
+75349,tapering,the act of gradually lowering the size or amount; "the doctor prescribed the tapering of the dose"
+75350,tapestry,something that resembles a tapestry in its intricacy; "the tapestry of European history"
+75351,tapestry arras,a wall hanging of heavy handwoven fabric often with pictorial designs
+75352,tapestry tapis,a heavy textile with a woven design; used for curtains and upholstery
+75353,tapeworm cestode,ribbonlike flatworms that are parasitic in the intestines of humans and other vertebrates
+75354,tapeworm_infection,intestinal infection by a species of parasitic tapeworm; usually the result of eating inadequately cooked meat or fish
+75355,taphephobia,a morbid fear of being buried alive
+75356,tapioca,granular preparation of cassava starch used to thicken especially puddings
+75357,tapioca_pudding,sweet pudding thickened with tapioca
+75358,tapir,large inoffensive chiefly nocturnal ungulate of tropical America and southeast Asia having a heavy body and fleshy snout
+75359,tapotement,massage in which the body is tapped rhythmically with the fingers or with short rapid movements of the sides of the hand; used to loosen mucus on the chest walls of patients with bronchitis
+75360,tapper,a person who strikes a surface lightly and usually repeatedly; "finger tappers irritated her"
+75361,tapper,a worker who uses a tap to cut screw threads
+75362,tapper wiretapper phone_tapper,someone who wiretaps a telephone or telegraph wire
+75363,tappet,a lever that is moved in order to tap something else
+75364,tapping,the sound of light blow or knock; "he heard the tapping of the man's cane"
+75365,taproot,(botany) main root of a plant growing straight downward from the stem
+75366,taproot,something that provides an important central source for growth or development; "the taproot of his resentment"; "genius and insanity spring from the same taproot"
+75367,taps lights-out,(military) signal to turn the lights out
+75368,tapster tapper,a tavern keeper who taps kegs or casks
+75369,tar_pit,a natural accumulation of bitumens at the surface of the earth; often acts as a trap for animals whose bones are thus preserved
+75370,tarahumara_frog Rana_tarahumarae,Mexican frog found within a jump or two of water
+75371,tarantella,music composed in six-eight time for dancing the tarantella
+75372,tarantella tarantelle,a lively whirling Italian dance for two persons
+75373,tarantism,a nervous disorder characterized by an uncontrollable impulse to dance; popularly attributed to bite of the southern European tarantula or wolf spider
+75374,tarantula,large hairy tropical spider with fangs that can inflict painful but not highly venomous bites
+75375,tardigrade,an arthropod of the division Tardigrada
+75376,tardiness,the quality or habit of not adhering to a correct or usual or expected time
+75377,tardive_dyskinesia,involuntary rolling of the tongue and twitching of the face or trunk or limbs; often occurs in patients with Parkinsonism who are treated with phenothiazine
+75378,tare,an adjustment made for the weight of the packaging in order to determine the net weight of the goods
+75379,tare,any of several weedy vetches grown for forage
+75380,tare,the weight of a motor vehicle, railroad car, or aircraft without its fuel or cargo
+75381,tare,(chemical analysis) a counterweight used in chemical analysis; consists of an empty container that counterbalances the weight of the container holding chemicals
+75382,taret_organ,(endocrinology) organ most affected by a particular hormone
+75383,target butt,sports equipment consisting of an object set up for a marksman or archer to aim at
+75384,target mark,a reference point to shoot at; "his arrow hit the mark"
+75385,target target_area,the location of the target that is to be hit
+75386,target_acquisition_system,a shipboard system for the detection and identification and location of a target with enough detail to permit effective weapon employment
+75387,target_cell,any cell that has a specific receptor for an antigen or antibody or hormone or drug, or is the focus of contact by a virus or phagocyte or nerve fiber etc.
+75388,target_cell,an abnormal red blood cell with the appearance of a dark ring surrounding a dark center; associated with anemia
+75389,target_company takeover_target,a company that has been chosen as attractive for takeover by a potential acquirer
+75390,target_organ,(radiology) organ intended to receive the therapeutic dose of a radioactive substance
+75391,target_practice,practice in shooting at targets
+75392,tarmacadam tarmac,a paving material of tar and broken stone; mixed in a factory and shaped during paving
+75393,tarmacadam tarmac macadam,a paved surface having compressed layers of broken rocks held together with tar
+75394,tarn,a mountain lake (especially one formed by glaciers)
+75395,tarnish,discoloration of metal surface caused by oxidation
+75396,tarnished_plant_bug Lygus_lineolaris,widespread plant and fruit pest
+75397,taro cocoyam dasheen eddo,edible starchy tuberous root of taro plants
+75398,taro taro_plant dalo dasheen Colocasia_esculenta,herb of the Pacific islands grown throughout the tropics for its edible root and in temperate areas as an ornamental for its large glossy leaves
+75399,taro taro_root cocoyam dasheen edda,tropical starchy tuberous root
+75400,tarot_card tarot,any of a set of (usually 78) cards that include 22 cards representing virtues and vices and death and fortune etc.; used for playing card games and for divination by fortunetellers
+75401,tarpan Equus_caballus_gomelini,European wild horse extinct since the early 20th century
+75402,tarpaulin tarp,waterproofed canvas
+75403,tarpon Tarpon_atlanticus,large silvery game fish of warm Atlantic coastal waters especially off Florida
+75404,tarragon estragon,fresh leaves (or leaves preserved in vinegar) used as seasoning
+75405,tarragon estragon Artemisia_dracunculus,aromatic perennial of southeastern Russia
+75406,tarriance lingering,the act of tarrying
+75407,tarsal tarsal_bone,any bone of the tarsus
+75408,tarsier,nocturnal arboreal primate of Indonesia and the Philippines having huge eyes and digits ending in pads to facilitate climbing; the only primate that spurns all plant material as food living entirely on insects and small vertebrates
+75409,tarsitis,inflammation of the eyelid
+75410,tarsus,the part of the foot of a vertebrate between the metatarsus and the leg; in human beings the bones of the ankle and heel collectively
+75411,tart,a small open pie with a fruit filling
+75412,tart,a pastry cup with a filling of fruit or custard and no top crust
+75413,tartan plaid,a cloth having a crisscross design
+75414,tartar calculus tophus,an incrustation that forms on the teeth and gums
+75415,tartar_emetic antimony_potassium_tartrate,a poisonous colorless salt used as a mordant and in medicine
+75416,tartare_sauce tartar_sauce,mayonnaise with chopped pickles and sometimes capers and shallots and parsley and hard-cooked egg; sauce for seafood especially fried fish
+75417,tartaric_acid,an acid found in many fruits; used in soft drinks and confectionery and baking powder
+75418,tartlet,a small tart usually used as a canape
+75419,tartrate,a salt or ester of tartaric acid
+75420,tarweed,any of various resinous glandular plants of the genus Madia; of western North and South America
+75421,tarwood tar-wood Dacrydium_colensoi,New Zealand silver pine of conical habit with long slender flexuous branches; adapted to cold wet summers and high altitudes
+75422,tarwood tar-wood New_Zealand_mountain_pine Halocarpus_bidwilli Dacrydium_bidwilli,New Zealand shrub
+75423,task_force,a semipermanent unit created to carry out a continuing task
+75424,task_force,a temporary military unit formed to accomplish a particular objective
+75425,taskmaster,someone who imposes hard or continuous work
+75426,taskmistress,a woman taskmaster
+75427,tassel,adornment consisting of a bunch of cords fastened at one end
+75428,tassel_flower Emilia_coccinea Emilia_javanica Emilia_flammea Cacalia_javanica Cacalia_lutea,tropical African annual having scarlet tassel-shaped flower heads; sometimes placed in genus Cacalia
+75429,tassel_flower Emilia_sagitta,tropical Asiatic annual cultivated for its small tassel-shaped heads of scarlet flowers
+75430,tassel_hyacinth Muscari_comosum,large beautiful Mediterranean species having sterile bluish-violet flowers with fringed corollas forming a tuft above the fertile flowers
+75431,tasset tasse,one of two pieces of armor plate hanging from the fauld to protect the upper thighs
+75432,taste,a brief experience of something; "he got a taste of life on the wild side"; "she enjoyed her brief taste of independence"
+75433,taste appreciation discernment perceptiveness,delicate discrimination (especially of aesthetic values); "arrogance and lack of taste contributed to his rapid success"; "to ask at that particular time was the ultimate in bad taste"
+75434,taste gustation sense_of_taste gustatory_modality,the faculty of distinguishing sweet, sour, bitter, and salty properties in the mouth; "his cold deprived him of his sense of taste"
+75435,taste mouthful,a small amount eaten or drunk; "take a taste--you'll like it"
+75436,taste taste_sensation gustatory_sensation taste_perception gustatory_perception,the sensation that results when taste buds in the tongue and throat convey information about the chemical composition of a soluble stimulus; "the candy left him with a bad taste"; "the melon had a delicious taste"
+75437,taste tasting,a kind of sensing; distinguishing substances by means of the taste buds; "a wine tasting"
+75438,taste_cell gustatory_cell,an epithelial cell in a taste bud that activates sensory fibers of the facial nerve or the glossopharyngeal nerve or the vagus nerve
+75439,taste_property,a property appreciated via the sense of taste
+75440,tastebud taste_bud gustatory_organ,an oval sensory end organ on the surface of the tongue
+75441,tastefulness,elegance indicated by good taste
+75442,tastelessness,inelegance indicated by a lack of good taste
+75443,taster taste_tester taste-tester sampler,someone who samples food or drink for its quality
+75444,tastiness,a pleasing palatability
+75445,tasting,a small amount (especially of food or wine)
+75446,tasting savoring savouring relishing degustation,taking a small amount into the mouth to test its quality; "cooking was fine but it was the savoring that he enjoyed most"
+75447,tatouay cabassous Cabassous_unicinctus,naked-tailed armadillo of tropical South America
+75448,tatting,needlework consisting of handmade lace made by looping and knotting a single thread on a small shuttle
+75449,tattle singing telling,disclosing information or giving evidence about another
+75450,tattler,any of several long-legged shorebirds having a loud whistling cry
+75451,tattletale tattler taleteller talebearer telltale blabbermouth,someone who gossips indiscreetly
+75452,tattletale_grey tattletale_gray,a greyish white
+75453,tattoo,a drumbeat or bugle call that signals the military to return to their quarters
+75454,tattoo,a design on the skin made by tattooing
+75455,tattoo,the practice of making a design on the skin by pricking and staining
+75456,tau,the 19th letter of the Greek alphabet
+75457,tau_coefficient_of_correlation Kendall's_tau Kendall_rank_correlation,a nonparametric measure of the agreement between two rankings
+75458,tau_cross St._Anthony's_cross,cross resembling the Greek letter tau
+75459,tauon tau-minus_particle,a lepton of very great mass
+75460,taupe,a greyish brown
+75461,taurine,a colorless crystalline substance obtained from the bile of mammals
+75462,tautog blackfish Tautoga_onitis,large dark-colored food fish of the Atlantic coast of North America
+75463,tautology,(logic) a statement that is necessarily true; "the statement `he is brave or he is not brave' is a tautology"
+75464,tautology,useless repetition; "to say that something is `adequate enough' is a tautology"
+75465,tavern tap_house,a building with a bar that is licensed to sell alcoholic drinks
+75466,taw,the 23rd letter of the Hebrew alphabet
+75467,taw shooter,a large marble used for shooting in the game of marbles
+75468,tawniness,the quality or state of being the color of tanned leather; "the tawniness of his complexion"
+75469,tawny_eagle Aquila_rapax,brownish eagle of Africa and parts of Asia
+75470,tawny_owl Strix_aluco,reddish-brown European owl having a round head with black eyes
+75471,tawse,a leather strap for punishing children
+75472,tax taxation revenue_enhancement,charge against a citizen's person or property or activity for the support of government
+75473,tax-exempt_security tax-exempt,a security that is not subject to taxation
+75474,tax-increase tax_boost tax_hike,the amount by which taxes are increased; "a tax increase of 15 percent"
+75475,tax_advantage,an advantage bestowed by legislation that reduces a tax on some preferred activity
+75476,tax_assessment,the value set on taxable property
+75477,tax_assessor assessor,an official who evaluates property for the purpose of taxing it
+75478,tax_avoidance,the minimization of tax liability by lawful methods
+75479,tax_base,collective value of taxable assets
+75480,tax_benefit tax_break,a tax deduction that is granted in order to encourage a particular type of commercial activity
+75481,tax_bill,money owed for taxes
+75482,tax_collection,the collection of taxes
+75483,tax_collector taxman exciseman collector_of_internal_revenue internal_revenue_agent,someone who collects taxes for the government
+75484,tax_credit,a direct reduction in tax liability (not dependent on the taxpayer's tax bracket)
+75485,tax_cut,the act of reducing taxation; "the new administration's large tax cut was highly controversial"
+75486,tax_evasion,the deliberate failure to pay taxes (usually by making a false report)
+75487,tax_form,a form to use when paying your taxes
+75488,tax_haven,a country or independent region where taxes are low
+75489,tax_income taxation tax_revenue revenue,government income due to taxation
+75490,tax_law,the body of laws governing taxation
+75491,tax_liability,the amount of tax owed; calculated by applying the tax rate to the tax base
+75492,tax_lien,lien of which a tax collector may avail himself in default of taxes (analogous to a judgment lien)
+75493,tax_program tax_policy,a program for setting taxes
+75494,tax_rate,rate used to calculate tax liability
+75495,tax_return income_tax_return return,document giving the tax collector information about the taxpayer's tax liability; "his gross income was enough that he had to file a tax return"
+75496,tax_shelter shelter,a way of organizing business to reduce the taxes it must pay on current earnings
+75497,tax_system,a legal system for assessing and collecting taxes
+75498,tax_write-off tax_deduction deduction,a reduction in the gross amount on which a tax is calculated; reduces taxes by the percentage fixed for the taxpayer's income bracket
+75499,taxability,liability to taxation
+75500,taxation,the imposition of taxes; the practice of the government in levying taxes on the subjects of a state
+75501,taxer,a bureaucrat who levies taxes
+75502,taxi_dancer,a woman employed to dance with patrons who pay a fee for each dance
+75503,taxidermist animal_stuffer stuffer,a craftsman who stuffs and mounts the skins of animals for display
+75504,taxidermy,the art of mounting the skins of animals so that they have lifelike appearance
+75505,taxidriver taximan cabdriver cabman cabby hack_driver hack-driver livery_driver,someone who drives a taxi for a living
+75506,taximeter,a meter in a taxi that registers the fare (based on the length of the ride)
+75507,taxis,a locomotor response toward or away from an external stimulus by a motile (and usually simple) organism
+75508,taxis,the surgical procedure of manually restoring a displaced body part
+75509,taxiway taxi_strip,a paved surface in the form of a strip; used by planes taxiing to or from the runway at an airport
+75510,taxonomic_group taxonomic_category taxon,animal or plant group having natural relations
+75511,taxonomist taxonomer systematist,a biologist who specializes in the classification of organisms into groups on the basis of their structure and origin and behavior
+75512,taxonomy,a classification of organisms into groups based on similarities of structure or origin etc
+75513,taxonomy,(biology) study of the general principles of scientific classification
+75514,taxonomy,practice of classifying plants and animals according to their presumed natural relationships
+75515,taxpayer,someone who pays taxes
+75516,tayra taira Eira_barbara,long-tailed arboreal mustelid of Central America and South America
+75517,tea,a reception or party at which tea is served; "we met at the Dean's tea for newcomers"
+75518,tea,a beverage made by steeping tea leaves in water; "iced tea is a cooling drink"
+75519,tea Camellia_sinensis,a tropical evergreen shrub or small tree extensively cultivated in e.g. China and Japan and India; source of tea leaves; "tea has fragrant white flowers"
+75520,tea afternoon_tea teatime,a light midafternoon meal of tea and sandwiches or cakes; "an Englishman would interrupt a war to have his afternoon tea"
+75521,tea tea_leaf,dried leaves of the tea shrub; used to make tea; "the store shelves held many different kinds of tea"; "they threw the tea into Boston harbor"
+75522,tea-like_drink,a beverage that resembles tea but is not made from tea leaves
+75523,tea-strainer,a device to keep back tea leaves when pouring a cup of tea
+75524,tea_bag,a measured amount of tea in a bag for an individual serving of tea
+75525,tea_bag,small paper bag holding a measure of tea
+75526,tea_ball,a kitchen utensil consisting of a perforated metal ball for making tea
+75527,tea_bread,sweetened buns to be eaten with tea
+75528,tea_cart teacart tea_trolley tea_wagon,serving cart for serving tea or light refreshments
+75529,tea_ceremony chanoyu,an ancient ritual for preparing and serving and drinking tea
+75530,tea_chest,chest for storing or transporting tea
+75531,tea_cloth,a small tablecloth
+75532,tea_garden,a public garden where tea is served
+75533,tea_gown,a long loose-fitting gown formerly popular for wear at afternoon tea
+75534,tea_maker,a covered spoon with perforations
+75535,tea_napkin,a small napkin used when tea is served
+75536,tea_party,a party at which tea is served
+75537,tea_rose Rosa_odorata,any of several hybrid bush roses derived from a tea-scented Chinese rose with pink or yellow flowers
+75538,tea_service tea_set,a set of china or silverware for serving tea
+75539,tea_table,a small table for serving afternoon tea
+75540,tea_tortrix tortrix Homona_coffearia,small Indian moth infesting e.g. tea and coffee plants
+75541,tea_tray,a tray that accommodates a tea service
+75542,tea_urn,an urn in which tea is brewed and from which it is served
+75543,teaberry wintergreen checkerberry mountain_tea groundberry ground-berry creeping_wintergreen Gaultheria_procumbens,creeping shrub of eastern North America having white bell-shaped flowers followed by spicy red berrylike fruit and shiny aromatic leaves that yield wintergreen oil
+75544,teacake,any of various small cakes or cookies often served with tea
+75545,teacake tea_biscuit,flat semisweet cookie or biscuit usually served with tea
+75546,teach-in,an extended session (as on a college campus) for lectures and discussion on an important and usually controversial issue
+75547,teacher,a personified abstraction that teaches; "books were his teachers"; "experience is a demanding teacher"
+75548,teacher instructor,a person whose occupation is teaching
+75549,teacher's_pet,the teacher's favorite student
+75550,teacher-student_relation,the academic relation between teachers and their students
+75551,teachership,the position of teacher
+75552,teaching instruction pedagogy,the profession of a teacher; "he prepared for teaching while still in college"; "pedagogy is recognized as an important profession"
+75553,teaching precept commandment,a doctrine that is taught; "the teachings of religion"; "he believed all the Christian precepts"
+75554,teaching_aid,materials and equipment used in teaching
+75555,teaching_certificate teacher's_certificate,a certificate saying that the holder is qualified to teach in the public schools
+75556,teaching_fellow,a graduate student with teaching responsibilities
+75557,teaching_method pedagogics pedagogy,the principles and methods of instruction
+75558,teaching_reading,teaching beginners to read
+75559,teacup,a cup from which tea is drunk
+75560,teacup teacupful,as much as a teacup will hold
+75561,teak Tectona_grandis,tall East Indian timber tree now planted in western Africa and tropical America for its hard durable wood
+75562,teak teakwood,hard strong durable yellowish-brown wood of teak trees; resistant to insects and to warping; used for furniture and in shipbuilding
+75563,teakettle,kettle for boiling water to make tea
+75564,teal,any of various small short-necked dabbling river ducks of Europe and America
+75565,team,two or more draft animals that work together to pull something
+75566,team squad,a cooperative unit (especially in sports)
+75567,team_sport,a sport that involves competition between teams of players; "baseball is a team sport by golf is not"
+75568,team_teaching,a method of coordinated classroom teaching involving a team of teachers working together with a single group of students
+75569,teammate mate,a fellow member of a team; "it was his first start against his former teammates"
+75570,teamster,the driver of a team of horses doing hauling
+75571,teamster trucker truck_driver,someone who drives a truck as an occupation
+75572,teamwork,cooperative work done by a team (especially when it is effective); "it will take money, good planning and, above all, teamwork"
+75573,teapot,pot for brewing tea; usually has a spout and handle
+75574,tear,the act of tearing; "he took the manuscript in both hands and gave it a mighty tear"
+75575,tear teardrop,a drop of the clear salty saline solution secreted by the lacrimal glands; "his story brought tears to her eyes"
+75576,tear_gas teargas lacrimator lachrymator,a gas that makes the eyes fill with tears but does not damage them; used in dispersing crowds
+75577,tear_sheet,a sheet that can be easily torn out of a publication
+75578,tearaway,a reckless and impetuous person
+75579,teardrop,anything shaped like a falling drop (as a pendant gem on an earring)
+75580,tearjerker,an excessively sentimental narrative
+75581,tease teaser annoyer vexer,someone given to teasing (as by mocking or stirring curiosity)
+75582,tease teasing ribbing tantalization,the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances; "he ignored their teases"; "his ribbing was gentle but persistent"
+75583,teasel teazel teasle,any of several herbs of the genus Dipsacus native to the Old World having flower heads surrounded by spiny bracts
+75584,teaser,a worker who teases wool
+75585,teaser,an advertisement that offers something free in order to arouse customers' interest
+75586,teaser,an attention-getting opening presented at the start of a television show
+75587,teaser,a device for teasing wool; "a teaser is used to disentangle the fibers"
+75588,teashop teahouse tearoom tea_parlor tea_parlour,a restaurant where tea and light meals are available
+75589,teasing,playful vexation; "the parody was just a form of teasing"
+75590,teaspoon,a small spoon used for stirring tea or coffee; holds about one fluid dram
+75591,teaspoon teaspoonful,as much as a teaspoon will hold
+75592,tebibit Tibit,a unit of information equal to 1024 gibibits or 2^40 (1,099,511,627,776) bits
+75593,techie tekki,a technician who is highly proficient and enthusiastic about some technical field (especially computing)
+75594,technetium Tc atomic_number_43,a crystalline metallic element not found in nature; occurs as one of the fission products of uranium
+75595,technical,a pickup truck with a gun mounted on it
+75596,technical_analysis technical_analysis_of_stock_trends,(stock exchange) analysis of past price changes in the hope of forecasting future price changes
+75597,technical_foul technical,(basketball) a foul that can be assessed on a player or a coach or a team for unsportsmanlike conduct; does not usually involve physical contact during play
+75598,technical_knockout TKO,a knockout declared by the referee who judges one boxer unable to continue
+75599,technical_school tech,a school teaching mechanical and industrial arts and the applied sciences
+75600,technical_sergeant,a noncommissioned officer ranking below a master sergeant in the air force or marines
+75601,technicality,the state of being technical as in the use of technical terms or methods; "the judicial system suffered from too much technicality and formality"; "It is a tribute to the tribunals that the technicality at the heart of the appellate process in these tribunals can and does coexist with the relative informality in atmosphere and with procedural flexibility."
+75602,technicality,a specific detail in a set of rules or terms belonging to a particular field; "the resolution died on a technicality"; "the defendant was acquitted on a legal technicality"
+75603,technician,someone known for high skill in some intellectual or artistic technique
+75604,technician,someone whose occupation involves training in a specific technical process
+75605,technicolor,a trademarked method of making color motion pictures
+75606,technique,a practical method or art applied to some particular task
+75607,techno,a style of fast heavy electronic dance music usually without vocals
+75608,technobabble,technical jargon from computing and other high-tech subjects
+75609,technocracy,a form of government in which scientists and technical experts are in control; "technocracy was described as that society in which those who govern justify themselves by appeal to technical experts who justify themselves by appeal to scientific forms of knowledge"
+75610,technocrat,an expert who is a member of a highly skilled elite group
+75611,technocrat,an advocate of technocracy
+75612,technology,machinery and equipment developed from engineering or other applied sciences
+75613,technology,the application of the knowledge and usage of tools (such as machines or utensils) and techniques to control one's environment; "the mastery of fire was a huge advance in human technology"
+75614,technophile,a person who is enthusiastic about new technology
+75615,technophilia,enthusiasm for new technology
+75616,technophobe,a person who dislikes or avoids new technology
+75617,technophobia,dislike for new technology
+75618,tectonics plate_tectonics plate_tectonic_theory,the branch of geology studying the folding and faulting of the earth's crust
+75619,teddy teddy_bear,plaything consisting of a child's toy bear (usually plush and stuffed with soft materials)
+75620,teddy_boys,a British youth subculture that first appeared in the 1950s; mainly from unskilled backgrounds, they adopted a pseudo-Edwardian dress code and rock'n'roll music; proletarian and xenophobic, they were involved in race riots in the United Kingdom
+75621,tediousness tedium tiresomeness,dullness owing to length or slowness
+75622,tee football_tee,support holding a football on end and above the ground preparatory to the kickoff
+75623,tee golf_tee,a short peg put into the ground to hold a golf ball off the ground
+75624,tee teeing_ground,the starting place for each hole on a golf course; "they were waiting on the first tee"
+75625,tee_hinge T_hinge,a hinge that looks like the letter T when it is opened; similar to a strap hinge except that one strap has been replaced by half of a butt hinge that can be mortised flush into the stationary frame
+75626,teens,the time of life between the ages of 12 and 20
+75627,teens,all the numbers that end in -teen
+75628,teeoff,the act of hitting a golf ball from the teeing ground at the start of each hole
+75629,teething dentition odontiasis,the eruption through the gums of baby teeth
+75630,teetotaler teetotaller teetotalist,a total abstainer
+75631,teetotaling teetotalism,abstaining from alcohol
+75632,teff teff_grass Eragrostis_tef Eragrostic_abyssinica,an African grass economically important as a cereal grass (yielding white flour of good quality) as well as for forage and hay
+75633,teg,two-year-old sheep
+75634,teiid_lizard teiid,tropical New World lizard with a long tail and large rectangular scales on the belly and a long tail
+75635,teju,large (to 3 feet) blackish yellow-banded South American lizard; raid henhouses; used as food
+75636,tektite,thought to derive from meteorites
+75637,telecast,a television broadcast
+75638,telecaster,a television broadcaster
+75639,telecom_hotel telco_building,a building that houses telecommunications equipment; "the telecom hotels are prime targets for bombing"
+75640,telecommunication,(often plural) the branch of electrical engineering concerned with the technology of electronic communication at a distance
+75641,telecommunication telecom,(often plural) systems used in transmitting messages over a distance electronically
+75642,telecommunication_system telecom_system telecommunication_equipment telecom_equipment,a communication system for communicating at a distance
+75643,telecommuting teleworking,employment at home while communicating with the workplace by phone or fax or modem
+75644,teleconference teleconferencing,a conference of people who are in different locations that is made possible by the use of such telecommunications equipment as closed-circuit television
+75645,telefilm,a movie that is made to be shown on television
+75646,telegnosis,apparent knowledge of distant events without using sensory perceptions
+75647,telegram wire,a message transmitted by telegraph
+75648,telegraph telegraphy,apparatus used to communicate at a distance over a wire (usually in Morse code)
+75649,telegraph_form,a form to use when sending a telegram
+75650,telegraph_key,key consisting of a lever that sends a telegraph signal when it is depressed and the circuit is closed
+75651,telegraph_plant semaphore_plant Codariocalyx_motorius Desmodium_motorium Desmodium_gyrans,erect tropical Asian shrub whose small lateral leaflets rotate on their axes and jerk up and down under the influence of sunshine
+75652,telegrapher telegraphist telegraph_operator,someone who transmits messages by telegraph
+75653,telegraphese,language characterized by terseness and ellipsis as in telegrams
+75654,telegraphic_signal radiotelegraphic_signal,a signal transmitted by telegraphy
+75655,telegraphy,communicating at a distance by electric transmission over wire
+75656,telekinesis psychokinesis,the power to move something by thinking about it without the application of physical force
+75657,telemark,a turn made in skiing; the outside ski is placed ahead and turned gradually inwards
+75658,telemarketing teleselling telecommerce,the use of the telephone as an interactive medium for promotion and sales
+75659,telemeter,any scientific instrument for observing events at a distance and transmitting the information back to the observer
+75660,telemetry,automatic transmission and measurement of data from remote sources by wire or radio or other means
+75661,telemetry_intelligence TELINT,intelligence derived from the interception and processing and analysis of foreign telemetry
+75662,telencephalon,the anterior division of the forebrain; the cerebrum and related parts of the hypothalamus
+75663,teleologist,advocate of teleology
+75664,teleology,(philosophy) a doctrine explaining phenomena by their ends or purposes
+75665,teleost_fish teleost teleostan,a bony fish of the subclass Teleostei
+75666,telepathist thought-reader mental_telepathist mind_reader,someone with the power of communicating thoughts directly
+75667,telepathy thought_transference,apparent communication from one mind to another without using sensory perceptions
+75668,telephone phone telephone_set,electronic equipment that converts sound into electrical signals that can be transmitted over distances and then converts received signals back into sounds; "I talked to him on the telephone"
+75669,telephone telephony,transmitting speech at a distance
+75670,telephone_bell,electric bell that rings to signal a call
+75671,telephone_booth phone_booth call_box telephone_box telephone_kiosk,booth for using a telephone
+75672,telephone_company telephone_service phone_company phone_service telco,a public utility that provides telephone service
+75673,telephone_conversation,a conversation over the telephone
+75674,telephone_cord phone_cord,the telephone wire that connects to the handset
+75675,telephone_interview,an interview conducted over the telephone
+75676,telephone_jack phone_jack,a jack for plugging in a telephone
+75677,telephone_line phone_line telephone_circuit subscriber_line line,a telephone connection
+75678,telephone_operator telephonist switchboard_operator,someone who helps callers get the person they are calling
+75679,telephone_order,receiving orders via telephone
+75680,telephone_plug phone_plug,a plug for connecting a telephone
+75681,telephone_pole telegraph_pole telegraph_post,tall pole supporting telephone wires
+75682,telephone_receiver receiver,earphone that converts electrical signals into sounds
+75683,telephone_system phone_system,a communication system that transmits sound between distant points
+75684,telephone_unit,a unit of measurement for telephone use
+75685,telephone_wire telephone_line telegraph_wire telegraph_line,the wire that carries telegraph and telephone signals
+75686,telephoto_lens zoom_lens,a camera lens that magnifies the image
+75687,telephotograph,a photograph transmitted and reproduced over a distance
+75688,telephotograph telephoto,a photograph made with a telephoto lens
+75689,telephotography,transmission and reproduction of photographs and charts and pictures over a distance
+75690,telephotography,photography using a telephoto lens
+75691,teleportation,a hypothetical mode of instantaneous transportation; matter is dematerialized at one place and recreated at another
+75692,telerobotics,the area of robotics that is concerned with the control of robots from a distance
+75693,telescope scope,a magnifier of images of distant objects
+75694,telescopic_sight telescope_sight,gunsight consisting of a telescope on a firearm for use as a sight
+75695,telescopy,the art of making and using telescopes
+75696,telethermometer,a thermometer that registers the temperature at some distant point
+75697,teletypewriter teleprinter teletype_machine telex telex_machine,a character printer connected to a telegraph that operates like a typewriter
+75698,televangelism,evangelism at a distance by the use of television
+75699,televangelist,an evangelist who conducts services on television
+75700,television telecasting TV video,broadcasting visual images of stationary or moving objects; "she is a star of screen and video"; "Television is a medium because it is neither rare nor well done" - Ernie Kovacs
+75701,television television_system,a telecommunication system that transmits images of objects (stationary or moving) between distant points
+75702,television-camera_tube television_pickup_tube,a tube that rapidly scans an optical image and converts it into electronic signals
+75703,television_antenna tv-antenna,an omnidirectional antenna tuned to the broadcast frequencies assigned to television
+75704,television_camera tv_camera camera,television equipment consisting of a lens system that focuses an image on a photosensitive mosaic that is scanned by an electron beam
+75705,television_equipment video_equipment,electronic equipment that broadcasts or receives electromagnetic waves representing images and sound
+75706,television_monitor tv_monitor,monitor used in a studio for monitoring the program being broadcast
+75707,television_news,a television broadcast of news
+75708,television_program TV_program television_show TV_show,a program broadcast by television
+75709,television_receiver television television_set tv tv_set idiot_box boob_tube telly goggle_box,an electronic device that receives television signals and displays them on a screen; "the British call a tv set a telly"
+75710,television_reporter television_newscaster TV_reporter TV_newsman,someone who reports news stories via television
+75711,television_room tv_room,a room set aside for viewing television
+75712,television_star TV_star,a star in a television show
+75713,television_station TV_station,station for the production and transmission of television broadcasts
+75714,television_transmitter,transmitter that is part of a television system
+75715,teliospore,a chlamydospore that develops in the last stage of the life cycle of the rust fungus
+75716,teller cashier bank_clerk,an employee of a bank who receives and pays out money
+75717,teller vote_counter,an official appointed to count the votes (especially in legislative assembly)
+75718,telling apprisal notification,informing by words
+75719,tellurian earthling earthman worldling,an inhabitant of the earth
+75720,telluride,any binary compound of tellurium with other more electropositive elements
+75721,tellurium Te atomic_number_52,a brittle silver-white metalloid element that is related to selenium and sulfur; it is used in alloys and as a semiconductor; occurs mainly as tellurides in ores of copper and nickel and silver and gold
+75722,telocentric_chromosome,a chromosome like a straight rod with the centromere in terminal position
+75723,telomerase,an enzyme in eukaryotic cells that can add telomeres to the ends of chromosomes after they divide
+75724,telomere,either (free) end of a eukaryotic chromosome; "telomeres act as caps to keep the sticky ends of chromosomes from randomly clumping together"
+75725,telophase,the final stage of meiosis when the chromosomes move toward opposite ends of the nuclear spindle
+75726,telophase,the final stage of mitosis
+75727,telpher telfer,one of the conveyances (or cars) in a telpherage
+75728,telpherage telferage,a transportation system in which cars (telphers) are suspended from cables and operated on electricity
+75729,temazepam Restoril,a frequently prescribed benzodiazepine (trade name Restoril); takes effect slowly and lasts long enough to help those people who wake up frequently during the night
+75730,temp temporary temporary_worker,a worker (especially in an office) hired on a temporary basis
+75731,temper biliousness irritability peevishness pettishness snappishness surliness,a disposition to exhibit uncontrolled anger; "his temper was well known to all his employees"
+75732,temper mood humor humour,a characteristic (habitual or relatively temporary) state of feeling; "whether he praised or cursed me depended on his temper at the time"; "he was in a bad humor"
+75733,temper toughness,the elasticity and hardness of a metal object; its ability to absorb considerable energy before cracking
+75734,tempera poster_paint poster_color poster_colour,pigment mixed with water-soluble glutinous materials such as size and egg yolk
+75735,temperament,excessive emotionalism or irritability and excitability (especially when displayed openly)
+75736,temperament,an adjustment of the intervals (as in tuning a keyboard instrument) so that the scale can be used to play in different keys
+75737,temperance,the act of tempering
+75738,temperance moderation,the trait of avoiding excesses
+75739,temperate_rain_forest,a rain forest in a temperate area
+75740,temperature,the somatic sensation of cold or heat
+75741,temperature,the degree of hotness or coldness of a body or environment (corresponding to its molecular activity)
+75742,temperature_change,a process whereby the degree of hotness of a body (or medium) changes
+75743,temperature_gradient,change in temperature as a function of distance (especially altitude)
+75744,temperature_scale,a system of measuring temperature
+75745,temperature_unit,a unit of measurement for temperature
+75746,tempest,(literary) a violent wind; "a tempest swept over the island"
+75747,tempestuousness,a state of wild storminess
+75748,template templet guide,a model or standard for making comparisons
+75749,temple,the flat area on either side of the forehead; "the veins in his temple throbbed"
+75750,temple,an edifice devoted to special or exalted purposes
+75751,temple,place of worship consisting of an edifice for the worship of a deity
+75752,temple_orange,large sweet easily-peeled Florida fruit with deep orange rind
+75753,temple_orange temple_orange_tree tangor king_orange Citrus_nobilis,large citrus tree having large sweet deep orange fruit that is easily peeled; widely cultivated in Florida
+75754,tempo pace,the rate of some repeating event
+75755,tempo pacing,(music) the speed at which a composition is to be played
+75756,temporal_arrangement temporal_order,arrangement of events in time
+75757,temporal_arteritis,inflammation of the temporal arteries; characterized by headaches and difficulty chewing and (sometimes) visual impairment
+75758,temporal_artery,any of the three arteries on either side of the brain supplying the cortex of the temporal lobe
+75759,temporal_bone os_temporale,a thick bone forming the side of the human cranium and encasing the inner ear
+75760,temporal_canthus,the outer corner of the eye
+75761,temporal_gyrus,any of the convolutions of the outer surface of the temporal lobe of the cerebrum
+75762,temporal_lobe temporal_cortex,that part of the cerebral cortex in either hemisphere of the brain lying inside the temples of the head
+75763,temporal_property,a property relating to time
+75764,temporal_relation,a relation involving time
+75765,temporal_role temporal,the semantic role of the noun phrase that designates the time of the state or action denoted by the verb
+75766,temporal_vein vena_temporalis,any of several veins draining the temporal region
+75767,temporalis_muscle temporal_muscle temporalis musculus_temporalis,muscle extending from the temporal fossa to the coronoid process of the mandible; acts to raise the mandible and close the jaws
+75768,temporalty temporality,the worldly possessions of a church
+75769,temporariness,the property of lasting only a short time
+75770,temporary_hookup patch,a connection intended to be used for a limited time
+75771,temporary_injunction interlocutory_injunction,injunction issued during a trial to maintain the status quo or preserve the subject matter of the litigation until the trial is over
+75772,temporary_state,a state that continues for a limited time
+75773,temporizer temporiser,someone who temporizes; someone who tries to gain time or who waits for a favorable time
+75774,temptation,the desire to have or do something that you know you should avoid; "he felt the temptation and his will power weakened"
+75775,temptation enticement,something that seduces or has the quality to seduce
+75776,tempter,a person who tempts others; "Satan is the great tempter of mankind"
+75777,tempura,vegetables and seafood dipped in batter and deep-fried
+75778,ten 10 X tenner decade,the cardinal number that is the sum of nine and one; the base of the decimal system
+75779,ten-spined_stickleback Gasterosteus_pungitius,confined to rivers
+75780,ten-spot ten,one of four playing cards in a deck with ten pips on the face
+75781,ten_thousand 10000 myriad,the cardinal number that is the product of ten and one thousand
+75782,tenant,a holder of buildings or lands by any kind of title (as ownership or lease)
+75783,tenant,any occupant who dwells in a place
+75784,tenant renter,someone who pays rent to use land or a building or a car that is owned by someone else; "the landlord can evict a tenant who doesn't pay the rent"
+75785,tenant_farmer,a farmer who works land owned by someone else
+75786,tenantry,tenants of an estate considered as a group
+75787,tench Tinca_tinca,freshwater dace-like game fish of Europe and western Asia noted for ability to survive outside water
+75788,tendency inclination,a characteristic likelihood of or natural disposition toward a certain condition or character or effect; "the alkaline inclination of the local waters"; "fabric with a tendency to shrink"
+75789,tendency trend,a general direction in which something tends to move; "the shoreward tendency of the current"; "the trend of the stock market"
+75790,tendentiousness,an intentional and controversial bias
+75791,tender,car attached to a locomotive to carry fuel and water
+75792,tender legal_tender stamp,something that can be used as an official medium of payment
+75793,tender ship's_boat pinnace cutter,a boat for communication between ship and shore
+75794,tender supply_ship,ship that usually provides supplies to other ships
+75795,tender_loving_care TLC,considerate and solicitous care; "young children need lots of TLC"
+75796,tender_offer,an offer to buy shares in a corporation (usually above the market price) for cash or securities or both
+75797,tenderfoot,an inexperienced person (especially someone inexperienced in outdoor living)
+75798,tendergreen spinach_mustard Brassica_perviridis Brassica_rapa_perviridis,Asiatic plant cultivated for its swollen root crown and edible foliage
+75799,tenderization tenderisation,the act of making meat tender by pounding or marinating it
+75800,tenderizer tenderiser,a substance (as the plant enzyme papain) applied to meat to make it tender
+75801,tenderloin undercut,the tender meat of the loin muscle on each side of the vertebral column
+75802,tenderness,a tendency to express warm and affectionate feeling
+75803,tenderness soreness rawness,a pain that is felt (as when the area is touched); "the best results are generally obtained by inserting the needle into the point of maximum tenderness"; "after taking a cold, rawness of the larynx and trachea come on"
+75804,tenderness tenderheartedness,warm compassionate feelings
+75805,tendinitis tendonitis tenonitis,inflammation of a tendon
+75806,tendon sinew,a cord or band of inelastic tissue connecting a muscle with its bony attachment
+75807,tendril,slender stem-like structure by which some twining plants attach themselves to an object for support
+75808,tenement tenement_house,a run-down apartment house barely meeting minimal standards
+75809,tenement_district,a residential district occupied primarily with tenement houses
+75810,tenesmus,painful spasm of the anal sphincter along with an urgent desire to defecate without the significant production of feces; associated with irritable bowel syndrome
+75811,tenge,100 tenge equal 1 manat in Turkmenistan
+75812,tenge,the basic unit of money in Kazakhstan
+75813,tenner ten_dollar_bill,a United States bill worth 10 dollars
+75814,tennis lawn_tennis,a game played with rackets by two or four players who hit a ball back and forth over a net that divides the court
+75815,tennis_ball,ball about the size of a fist used in playing tennis
+75816,tennis_camp,a camp where tennis is taught
+75817,tennis_club,a club of people to play tennis
+75818,tennis_coach,a coach of tennis players
+75819,tennis_court,the court on which tennis is played
+75820,tennis_elbow lateral_epicondylitis lateral_humeral_epicondylitis,painful inflammation of the tendon at the outer border of the elbow resulting from overuse of lower arm muscles (as in twisting of the hand)
+75821,tennis_lesson,a lesson in playing tennis
+75822,tennis_match,a match between tennis players
+75823,tennis_player,an athlete who plays tennis
+75824,tennis_pro professional_tennis_player,someone who earns a living playing or teaching tennis
+75825,tennis_racket tennis_racquet,a racket used to play tennis
+75826,tennis_stroke tennis_shot,the act of hitting a tennis ball with a tennis racket
+75827,tenon,a projection at the end of a piece of wood that is shaped to fit into a mortise and form a mortise joint
+75828,tenor,an adult male with a tenor voice
+75829,tenor,a settled or prevailing or habitual course of a person's life; "nothing disturbed the even tenor of her ways"
+75830,tenor,the pitch range of the highest male voice
+75831,tenor strain,the general meaning or substance of an utterance; "although I disagreed with him I could follow the tenor of his argument"
+75832,tenor tenor_voice,the adult male singing voice above baritone
+75833,tenor_clef,a clef that puts middle C on the fourth line of the staff; used for writing music for bassoons or cellos or tenor horns
+75834,tenor_drum tom-tom,any of various drums with small heads
+75835,tenor_saxophonist tenorist,a musician who plays the tenor saxophone
+75836,tenoroon,a tenor bassoon; pitched a fifth higher than the ordinary bassoon
+75837,tenosynovitis tendosynovitis tendonous_synovitis,inflammation of a tendon and its enveloping sheath
+75838,tenpence,a decimal coin worth ten pennies
+75839,tenpenny_nail,a nail 3 inches long
+75840,tenpin,one of the bottle-shaped pins used in bowling
+75841,tenpins tenpin_bowling,bowling down an alley at a target of ten wooden pins
+75842,tenrec tendrac,small often spiny insectivorous mammal of Madagascar; resembles a hedgehog
+75843,tense,a grammatical category of verbs used to express distinctions of time
+75844,tense_system,a system of tenses used in a particular language
+75845,tensile_strength,the strength of material expressed as the greatest longitudinal stress it can bear without tearing apart
+75846,tensimeter,a manometer for measuring vapor pressure
+75847,tensiometer,a measuring instrument for measuring the moisture content of soil
+75848,tensiometer,a measuring instrument for measuring the tension in a wire or fiber or beam
+75849,tensiometer,a measuring instrument for measuring the surface tension of a liquid
+75850,tension,a balance between and interplay of opposing elements or tendencies (especially in art or literature); "there is a tension created between narrative time and movie time"; "there is a tension between these approaches to understanding history"
+75851,tension,(physics) a stress that produces an elongation of an elastic physical body; "the direction of maximum tension moves asymptotically toward the direction of the shear"
+75852,tension,the action of stretching something tight; "tension holds the belt in the pulleys"
+75853,tension tenseness stress,(psychology) a state of mental or emotional strain or suspense; "he suffered from fatigue and emotional tension"; "stress is a vasoconstrictor"
+75854,tension tensity tenseness tautness,the physical condition of being stretched or strained; "it places great tension on the leg muscles"; "he could feel the tenseness of her body"
+75855,tension_headache,a headache located at the back of the head; usually caused by body tension resulting from overwork or psychological stress
+75856,tensor,a generalization of the concept of a vector
+75857,tensor,any of several muscles that cause an attached structure to become tense or firm
+75858,tensor_tympani,a small muscle in the middle ear that tenses to protect the eardrum
+75859,tent,a web that resembles a tent or carpet
+75860,tent collapsible_shelter,a portable shelter (usually of canvas stretched over supporting poles and fastened to the ground with ropes and pegs); "he pitched his tent near the creek"
+75861,tent-caterpillar_moth Malacosoma_americana,moth whose larvae are tent caterpillars
+75862,tent-caterpillar_moth Malacosoma_disstria,moth whose gregarious larvae spin webs resembling carpets
+75863,tent-fly rainfly fly_sheet fly tent_flap,flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent
+75864,tent_caterpillar,the larvae of moths that build and live in communal silken webs in orchard and shade trees
+75865,tent_peg,a peg driven into the ground to hold a rope supporting a tent
+75866,tentacle,something that acts like a tentacle in its ability to grasp and hold; "caught in the tentacles of organized crime"
+75867,tentacle,any of various elongated tactile or prehensile flexible organs that occur on the head or near the mouth in many animals; used for feeling or grasping or locomotion
+75868,tenter,a framework with hooks used for stretching and drying cloth
+75869,tenterhook,one of a series of hooks used to hold cloth on a tenter
+75870,tenth,position ten in a countable series of things
+75871,tentmaker,someone who makes or repairs tents
+75872,tentorium,(anatomy) a fold of dura mater that covers the cerebellum and supports the occipital lobes of the cerebrum
+75873,tenure land_tenure,the right to hold property; part of an ancient hierarchical system of holding lands
+75874,tenure term_of_office incumbency,the term during which some position is held
+75875,tepal,an undifferentiated part of a perianth that cannot be distinguished as a sepal or a petal (as in lilies and tulips)
+75876,tepary_bean Phaseolus_acutifolius_latifolius,twining plant of southwestern United States and Mexico having roundish white or yellow or brown or black beans
+75877,tepee tipi teepee,a Native American tent; usually of conical shape
+75878,tepidness lukewarmness,lack of passion, force or animation
+75879,tequila,Mexican liquor made from fermented juices of an agave plant
+75880,terabit Tbit Tb,a unit of information equal to 1000 gigabits or 10^12 (1,000,000,000,000) bits
+75881,terabyte TB,a unit of information equal to 1000 gigabytes or 10^12 (1,000,000,000,000) bytes
+75882,terabyte tebibyte TB TiB,a unit of information equal to 1024 gibibytes or 2^40 (1,099,511,627,776) bytes
+75883,teraflop trillion_floating_point_operations_per_second,(computer science) a unit for measuring the speed of a computer system
+75884,terahertz THz,one trillion periods per second
+75885,teratogen,any agent that interferes with normal embryonic development: alcohol or thalidomide or X-rays or rubella are examples
+75886,teratogenesis,the development of defects in an embryo
+75887,teratology,the branch of biology concerned with the development of malformations or serious deviations from the normal type of organism
+75888,teratoma,a tumor consisting of a mixture of tissues not normally found at that site
+75889,terazosin Hytrin,antihypertensive drug (trade name Hytrin) used to treat high blood pressure
+75890,terbinafine Lamisil,an oral antifungal drug (trade name Lamisil) used to treat cases of fungal nail disease
+75891,terbium Tb atomic_number_65,a metallic element of the rare earth group; used in lasers; occurs in apatite and monazite and xenotime and ytterbite
+75892,terbium_metal,a separate group of related lanthanides, including terbium, europium, gadolinium, and sometimes dysprosium
+75893,terce tierce,the third canonical hour; about 9 a.m.
+75894,tercentennial tercentenary triennial,the 300th anniversary (or the celebration of it)
+75895,terebinth Pistacia_terebinthus,a Mediterranean tree yielding Chian turpentine
+75896,teredo,typical shipworm
+75897,teres teres_muscle,either of two muscles in the shoulder region that move the shoulders and arms
+75898,teres_major teres_major_muscle musculus_teres_major,teres muscle that moves the arm and rotates it medially
+75899,teres_minor teres_minor_muscle musculus_teres_minor,teres muscle that adducts the arm and rotates it laterally
+75900,teriyaki,beef or chicken or seafood marinated in spicy soy sauce and grilled or broiled
+75901,term,a limited period of time; "a prison term"; "he left school before the end of term"
+75902,term,one of the substantive phrases in a logical proposition; "the major term of a syllogism must occur twice"
+75903,term,a word or expression used for some particular thing; "he learned many medical terms"
+75904,term,any distinct quantity contained in a polynomial; "the general term of an algebraic equation of the n-th degree"
+75905,term full_term,the end of gestation or point at which birth is imminent; "a healthy baby born at full term"
+75906,term_infant,infant born at a gestational age between 37 and 42 completed weeks
+75907,term_insurance,low-cost insurance that is valid only for a stated period of time and has no cash surrender value or loan value; "term insurance is most often associated with life insurance policies"
+75908,term_paper,a composition intended to indicate a student's progress during a school term
+75909,termer,a person who serves a specified term; "there are not many fourth termers in the Senate"
+75910,terminable_interest,an interest in property that terminates under specific conditions
+75911,terminal,electronic equipment consisting of a device providing access to a computer; has a keyboard and display
+75912,terminal pole,a contact on an electrical device (such as a battery) at which electric current enters or leaves
+75913,terminal terminus depot,station where transport vehicles load or unload passengers or goods
+75914,terminal_emulation,(computer science) having a computer act exactly like a terminal
+75915,terminal_leave,final leave before discharge from military service
+75916,terminal_velocity,the constant maximum velocity reached by a body falling through the atmosphere under the attraction of gravity
+75917,termination ending conclusion,the act of ending something; "the termination of the agreement"
+75918,termination expiration expiry,a coming to an end of a contract period; "the expiry of his driver's license"
+75919,terminology nomenclature language,a system of words used to name things in a particular discipline; "legal terminology"; "biological nomenclature"; "the language of sociology"
+75920,terminus,either end of a railroad or bus route
+75921,terminus terminal_figure term,(architecture) a statue or a human bust or an animal carved out of the top of a square pillar; originally used as a boundary marker in ancient Rome
+75922,terminus_a_quo starting_point,earliest limiting point
+75923,terminus_ad_quem terminal_point limit,final or latest limiting point
+75924,termite white_ant,whitish soft-bodied ant-like social insect that feeds on wood
+75925,tern,small slender gull having narrow wings and a forked tail
+75926,terpene,an unsaturated hydrocarbon obtained from plants
+75927,terra_alba,finely pulverized gypsum used especially as a pigment
+75928,terra_cotta,a hard unglazed brownish-red earthenware
+75929,terra_sigillata Samian_ware,earthenware made from the reddish-brown clay found on the Aegean island of Lemnos
+75930,terrace,a row of houses built in a similar style and having common dividing walls (or the street on which they face); "Grosvenor Terrace"
+75931,terrace bench,a level shelf of land interrupting a declivity (with steep slopes above and below)
+75932,terraced_house,a house that is part of a terrace
+75933,terrain,a piece of ground having specific characteristics or military potential; "they decided to attack across the rocky terrain"
+75934,terrain_flight low_level_flight,flight at very low altitudes
+75935,terrain_intelligence,tactical intelligence on the natural and man-made characteristics of an area
+75936,terrapin,any of various edible North American web-footed turtles living in fresh or brackish water
+75937,terrarium,a vivarium in which selected living plants are kept and observed
+75938,terreplein,level space where heavy guns can be mounted behind the parapet at the top of a rampart
+75939,terrestrial_guidance,a method of controlling the flight of a missile by devices that respond to the strength and direction of the earth's gravitational field
+75940,terrestrial_planet,a planet having a compact rocky surface like the Earth's; the four innermost planets in the solar system
+75941,terrestrial_time TT terrestrial_dynamical_time TDT ephemeris_time,(astronomy) a measure of time defined by Earth's orbital motion; terrestrial time is mean solar time corrected for the irregularities of the Earth's motions
+75942,terrier,any of several usually small short-bodied breeds originally trained to hunt animals living underground
+75943,terrine,a pate or fancy meatloaf baked in an earthenware casserole
+75944,territorial,nonprofessional soldier member of a territorial military unit
+75945,territorial territorial_reserve,a territorial military unit
+75946,territorial_waters,the waters surrounding a nation and its territories over which that nation exercises sovereign jurisdiction
+75947,territoriality,the behavior of a male animal that defines and defends its territory
+75948,territorialization territorialisation,the act of organizing as a territory
+75949,territory,an area of knowledge or interest; "his questions covered a lot of territory"
+75950,territory soil,the geographical area under the jurisdiction of a sovereign state; "American troops were stationed on Japanese soil"
+75951,terror,the use of extreme fear in order to coerce people (especially for political reasons); "he used terror to make them confess"
+75952,terror brat little_terror holy_terror,a very troublesome child
+75953,terror scourge threat,a person who inspires fear or dread; "he was the terror of the neighborhood"
+75954,terrorism act_of_terrorism terrorist_act,the calculated use of violence (or the threat of violence) against civilians in order to attain goals that are political or religious or ideological in nature; this is done through intimidation or coercion or instilling fear
+75955,terrorist,a radical who employs terror as a political weapon; usually organizes with other terrorists in small cells; often uses religion as a cover for terrorist activities
+75956,terrorist_attack,a surprise attack involving the deliberate use of violence against civilians in the hope of attaining political or religious aims
+75957,terrorist_cell radical_cell,a cell of terrorists (usually 3 to 5 members); "to insure operational security the members of adjacent terrorist cells usually don't know each other or the identity of their leadership"
+75958,terrorist_organization terrorist_group foreign_terrorist_organization FTO,a political movement that uses terror as a weapon to achieve its goals
+75959,terrorization terrorisation,an act of terrorism
+75960,terrorization terrorisation frightening,the act of inspiring with fear
+75961,terry terry_cloth terrycloth,a pile fabric (usually cotton) with uncut loops on both sides; used to make bath towels and bath robes
+75962,terseness,a neatly short and concise expressive style
+75963,tertiary_syphilis,the third stage; characterized by involvement of internal organs especially the brain and spinal cord as well as the heart and liver
+75964,tertigravida gravida_III,a woman who is pregnant for the third time
+75965,tertium_quid,some third thing similar to two opposites but distinct from both
+75966,terza_rima,a verse form with a rhyme scheme: aba bcb cdc, etc.
+75967,tesla,a unit of magnetic flux density equal to one weber per square meter
+75968,tessella,a small tessera
+75969,tessellation,the careful juxtaposition of shapes in a pattern; "a tessellation of hexagons"
+75970,tessellation,the act of adorning with mosaic
+75971,tessera,a small square tile of stone or glass used in making mosaics
+75972,tesseract,the four-dimensional analogue of a cube
+75973,test,a hard outer covering as of some amoebas and sea urchins
+75974,test mental_test mental_testing psychometric_test,any standardized procedure for measuring sensitivity or memory or intelligence or aptitude or personality etc; "the test was standardized on a large sample of students"
+75975,test trial,the act of undergoing testing; "he survived the great test of battle"; "candidates must compete in a trial of skill"
+75976,test trial run,the act of testing something; "in the experimental trials the amount of carbon was measured separately"; "he called each flip of the coin a new trial"
+75977,test-tube_baby,a baby conceived by fertilization that occurs outside the mother's body; the woman's ova are removed and mixed with sperm in a culture medium - if fertilization occurs the blastocyte is implanted in the woman's uterus
+75978,test_ban,a ban on the testing of nuclear weapons that is mutually agreed to by countries that possess nuclear weapons
+75979,test_bed,a place equipped with instruments for testing (e.g. engines or machinery or computer programs etc.) under working conditions
+75980,test_case test_suit,a representative legal action whose outcome is likely to become a precedent
+75981,test_drive,test of the roadworthiness of a vehicle one is considering buying
+75982,test_driver,a driver who drives a motor vehicle to evaluate its performance
+75983,test_equipment,equipment required to perform a test
+75984,test_match match_game matched_game,an international championship match
+75985,test_paper,paper impregnated with an indicator for use in chemical tests
+75986,test_paper examination_paper exam_paper question_sheet,a written examination
+75987,test_pilot,a pilot hired to fly experimental airplanes through maneuvers designed to test them
+75988,test_range,a range for conducting tests
+75989,test_rocket research_rocket test_instrument_vehicle,a rocket fired for test purposes
+75990,test_room testing_room,a room in which tests are conducted
+75991,test_tube,glass tube closed at one end
+75992,testa episperm seed_coat,protective outer layer of seeds of flowering plants
+75993,testacean,any of various rhizopods of the order Testacea characterized by having a shell
+75994,testament,strong evidence for something; "his easy victory was a testament to his skill"
+75995,testament,a profession of belief; "he stated his political testament"
+75996,testamentary_trust,a trust that is created under a will and that becomes active after the grantor dies
+75997,testator testate,a person who makes a will
+75998,testatrix,a female testator
+75999,testcross test-cross,a cross between an organism whose genotype for a certain trait is unknown and an organism that is homozygous recessive for that trait so the unknown genotype can be determined from that of the offspring
+76000,testee examinee,someone who is tested (as by an intelligence test or an academic examination)
+76001,tester,a flat canopy (especially one over a four-poster bed)
+76002,testicular_artery internal_spermatic_artery arteria_testicularis,a branch of the aorta supplying the testicles
+76003,testicular_vein vena_testicularis,a vein from the testicles
+76004,testifier deponent deposer,a person who testifies or gives a deposition
+76005,testimony,a solemn statement made under oath
+76006,testimony,an assertion offering firsthand authentication of a fact; "according to his own testimony he can't do it"
+76007,testimony testimonial,something that serves as evidence; "his effort was testimony to his devotion"
+76008,testiness touchiness tetchiness,feeling easily irritated
+76009,testing,an examination of the characteristics of something; "there are laboratories for commercial testing"; "it involved testing thousands of children for smallpox"
+76010,testing,the act of subjecting to experimental test in order to determine how well something works; "they agreed to end the testing of atomic weapons"
+76011,testing_ground laboratory,a region resembling a laboratory inasmuch as it offers opportunities for observation and practice and experimentation; "the new nation is a testing ground for socioeconomic theories"; "Pakistan is a laboratory for studying the use of American troops to combat terrorism"
+76012,testis testicle orchis ball ballock bollock nut egg,one of the two male reproductive glands that produce spermatozoa and secrete androgens; "she kicked him in the balls and got away"
+76013,testosterone,a potent androgenic hormone produced chiefly by the testes; responsible for the development of male secondary sex characteristics
+76014,testudo,a movable protective covering that provided protection from above; used by Roman troops when approaching the walls of a besieged fortification
+76015,tetanus,a sustained muscular contraction resulting from a rapid series of nerve impulses
+76016,tetanus lockjaw,an acute and serious infection of the central nervous system caused by bacterial infection of open wounds; spasms of the jaw and laryngeal muscles may occur during the late stages
+76017,tetanus_antitoxin,antitoxin given for short-term immunization against tetanus in cases of possible exposure to the tetanus bacillus
+76018,tetanus_immunoglobulin tetanus_immune_globulin,sterile solution of globulins derived from the blood plasma of a person who has been immunized for tetanus; provides short-term immunization against tetanus in cases of possible exposure to the tetanus bacillus
+76019,tetany tetanilla intermittent_tetanus intermittent_cramp apyretic_tetanus,clinical neurological syndrome characterized by muscular twitching and cramps and (when severe) seizures; associated with calcium deficiency (hypoparathyroidism) or vitamin D deficiency or alkalosis
+76020,tetartanopia yellow-blindness,a form of dichromacy characterized by lowered sensitivity to yellow light; so rare that its existence has been questioned
+76021,tete-a-tete,a private conversation between two people
+76022,teth,the 9th letter of the Hebrew alphabet
+76023,tetherball,a game with two players who use rackets to strike a ball that is tethered to the top of a pole; the object is to wrap the string around the pole
+76024,tetra,brightly colored tropical freshwater fishes
+76025,tetrabasic_acid,an acid containing four replaceable hydrogen atoms per molecule
+76026,tetracaine,a crystalline compound used in the form of a hydrochloride as a local anesthetic
+76027,tetrachlorethylene tetrachloroethylene ethylene_tetrachloride carbon_dichloride,anthelmintic agent used against hookworm and other nematodes
+76028,tetrachloride,any compound that contains four chlorine atoms per molecule
+76029,tetrachoric_correlation_coefficient tetrachoric_correlation,a correlation coefficient computed for two normally distributed variables that are both expressed as a dichotomy
+76030,tetracycline Achromycin,an antibiotic (trade name Achromycin) derived from microorganisms of the genus Streptomyces and used broadly to treat infections
+76031,tetraethyl_lead lead_tetraethyl,a clear oily poisonous liquid added to gasoline to prevent knocking
+76032,tetrafluoroethylene,a flammable gaseous fluorocarbon used in making plastics (polytetrafluoroethylene resins)
+76033,tetragram,a word that is written with four letters in an alphabetic writing system
+76034,tetrahalide,any halide containing four halogen atoms in its molecules
+76035,tetrahedron,any polyhedron having four plane faces
+76036,tetrahydrocannabinol THC,psychoactive substance present in marijuana
+76037,tetrahymena,relative of the paramecium; often used in genetics research
+76038,tetralogy,a series of four related works (plays or operas or novels)
+76039,tetralogy_of_Fallot Fallot's_tetralogy Fallot's_syndrome,a congenital heart defect producing cyanosis; characterized by four symptoms: pulmonary stenosis and ventricular septal defect and malposition of the aorta over both ventricles and hypertrophy of the right ventricle
+76040,tetrameter,a verse line having four metrical feet
+76041,tetrapod,a vertebrate animal having four feet or legs or leglike appendages
+76042,tetrasaccharide,any of a variety of carbohydrates that yield four monosaccharide molecules on complete hydrolysis
+76043,tetraskelion tetraskele,a figure consisting of four stylized human arms or legs (or bent lines) radiating from a center
+76044,tetrasporangium,a sporangium containing four asexual spores
+76045,tetraspore,one of the four asexual spores produced within a sporangium
+76046,tetri,100 tetri equal 1 lari in Georgia
+76047,tetrode,a thermionic tube having four electrodes
+76048,tetrodotoxin,a powerful neurotoxin found in the ovaries of pufferfish
+76049,tetrose,any monosaccharide sugar containing four atoms of carbon per molecule
+76050,tetroxide,an oxide containing four atoms of oxygen in the molecule
+76051,tetryl nitramine,a yellow crystalline explosive solid that is used in detonators
+76052,text,a passage from the Bible that is used as the subject of a sermon; "the preacher chose a text from Psalms to introduce his sermon"
+76053,text,the main body of a written work (as distinct from illustrations or footnotes etc.); "pictures made the text easier to understand"
+76054,text textual_matter,the words of something written; "there were more than a thousand words of text"; "they handed out the printed text of the mayor's speech"; "he wants to reconstruct the original text"
+76055,text-matching,a computer program that looks for text that matches a given text; "Google uses text-matching to find web pages containing a particular text"
+76056,text_editor,(computer science) an application that can be used to create and view and edit text files
+76057,text_file document,(computer science) a computer file that contains text (and possibly formatting instructions) using seven-bit ASCII characters
+76058,textbook text text_edition schoolbook school_text,a book prepared for use in schools or colleges; "his economics textbook is in its tenth edition"; "the professor wrote the text that he assigned students to buy"
+76059,textile_machine,a machine for making textiles
+76060,textile_mill,a factory for making textiles
+76061,textile_screw_pine lauhala Pandanus_tectorius,Polynesian screw pine
+76062,textual_criticism,comparison of a particular text with related materials in order to establish authenticity
+76063,texture,the essential quality of something; "the texture of Neapolitan life"
+76064,texture,the musical pattern created by parts being played or sung together; "then another melodic line is added to the texture"
+76065,texture,the characteristic appearance of a surface having a tactile quality
+76066,texture,the feel of a surface or a fabric; "the wall had a smooth texture"
+76067,texture grain,the physical composition of something (especially with respect to the size and shape of the small constituents of a substance); "breadfruit has the same texture as bread"; "sand of a fine grain"; "fish with a delicate flavor and texture"; "a stone of coarse grain"
+76068,thalamostriate_vein,a vein serving the thalamus and corpus striatum
+76069,thalamus,large egg-shaped structures of grey matter that form the dorsal subdivision of the diencephalon
+76070,thalassemia thalassaemia Mediterranean_anemia Mediterranean_anaemia,an inherited form of anemia caused by faulty synthesis of hemoglobin
+76071,thalidomide,a sedative and hypnotic drug; withdrawn from sale after discovered to cause severe birth defects because it inhibits angiogenesis
+76072,thallium Tl atomic_number_81,a soft grey malleable metallic element that resembles tin but discolors on exposure to air; it is highly toxic and is used in rodent and insect poisons; occurs in zinc blende and some iron ores
+76073,thallophyte,any of a group of cryptogamic organisms consisting principally of a thallus and thus showing no differentiation into stem and root and leaf
+76074,thallus,a plant body without true stems or roots or leaves or vascular system; characteristic of the thallophytes
+76075,thalweg,the middle of the chief navigable channel of a waterway that forms the boundary line between states
+76076,thalweg,a line following the lowest points of a valley
+76077,thanatology,the branch of science that studies death (especially its social and psychological aspects)
+76078,thanatophobia,a morbid fear of death
+76079,thanatopsis,an essay expressing a view on the subject of death
+76080,thane,a feudal lord or baron
+76081,thane,a man ranking above an ordinary freeman and below a noble in Anglo-Saxon England (especially one who gave military service in exchange for land)
+76082,thaneship,the position of thane
+76083,thank_offering,an offering made as an expression of thanks
+76084,thank_you,a conversational expression of gratitude
+76085,thanks,an acknowledgment of appreciation
+76086,thanks,with the help of or owing to; "thanks to hard work it was a great success"
+76087,thatch,plant stalks used as roofing material
+76088,thatch,hair resembling thatched roofing material
+76089,thatch thatched_roof,a house roof made with a plant material (as straw)
+76090,thatch_palm thatch_tree silver_thatch broom_palm Thrinax_parviflora,small palm of southern Florida and West Indies closely resembling the silvertop palmetto
+76091,thatcher,someone skilled in making a roof from plant stalks or foliage
+76092,thaumatolatry miracle-worship,the worship of miracles
+76093,thaw,a relaxation or slackening of tensions or reserve; becoming less hostile; "the thaw between the United States and Russia has led to increased cooperation in world affairs"
+76094,thaw melt thawing melting,the process whereby heat changes something from a solid to a liquid; "the power failure caused a refrigerator melt that was a disaster"; "the thawing of a frozen turkey takes several hours"
+76095,thaw thawing warming,warm weather following a freeze; snow and ice melt; "they welcomed the spring thaw"
+76096,the_City,used to allude to the securities industry of Great Britain
+76097,the_Irish_Famine the_Great_Hunger the_Great_Starvation the_Great_Calamity,a famine in Ireland resulting from a potato blight; between 1846 and 1851 a million people starved to death and 1.6 million emigrated (most to America)
+76098,the_devil,something difficult or awkward to do or deal with; "it will be the devil to solve"
+76099,the_halt,(archaic) lame persons collectively; "the poor, and the maimed, and the halt, and the blind"--Luke 14:21
+76100,the_hots,intense sexual desire
+76101,the_shits the_trots,obscene terms for diarrhea
+76102,the_way_of_the_world the_ways_of_the_world,the manner in which people typically behave or things typically happen; "the ordinary reader is endowed with considerable wisdom and knowledge of the way of the world"; "she was well-versed in the ways of the world before she had taken the veil"; "he was amazingly innocent of the ways of the world"
+76103,theanthropism,(theology) the doctrine that Jesus was a union of the human and the divine
+76104,theater theatre house,a building where theatrical performances or motion-picture shows can be presented; "the house was full"
+76105,theater_company,a company that produces plays
+76106,theater_curtain theatre_curtain,a hanging cloth that conceals the stage from the view of the audience; rises or parts at the beginning and descends or closes between acts and at the end of a performance
+76107,theater_light,any of various lights used in a theater
+76108,theater_of_the_absurd,plays stressing the irrational or illogical aspects of life, usually to show that modern life is pointless; "Samuel Beckett and Eugene Ionesco have written plays for the theater of the absurd"
+76109,theater_of_war theatre_of_war,the entire land, sea, and air area that may become or is directly involved in war operations
+76110,theater_stage theatre_stage,a stage in a theater on which actors can perform
+76111,theater_ticket theatre_ticket,a ticket good for admission to a theater
+76112,theatrical_performance theatrical representation histrionics,a performance of a play
+76113,theatrical_producer,someone who produces theatrical performances
+76114,theatrical_production staging,the production of a drama on the stage
+76115,theatrical_season,the season when new plays are produced
+76116,thebe,100 thebe equal 1 pula in Botswana
+76117,theca,outer sheath of the pupa of certain insects
+76118,theca sac,a case or sheath especially a pollen sac or moss capsule
+76119,thecodont thecodont_reptile,presumably in the common ancestral line to dinosaurs and crocodiles and birds
+76120,theism,the doctrine or belief in the existence of a God or gods
+76121,theist,one who believes in the existence of a god or gods
+76122,thelarche,the start of breast development in a woman at the beginning of puberty
+76123,theme melodic_theme musical_theme idea,(music) melodic subject of a musical composition; "the theme is announced in the first measures"; "the accompanist picked up the idea and elaborated it"
+76124,theme motif,a unifying idea that is a recurrent element in literary or artistic work; "it was the usual `boy gets girl' theme"
+76125,theme_park,an amusement park that is organized around some theme (as the world of tomorrow)
+76126,theme_song,a melody that recurs and comes to represent a musical play or movie
+76127,then,that time; that moment; "we will arrive before then"; "we were friends from then on"
+76128,thenar,the fleshy area of the palm at the base of the thumb
+76129,theocracy,a political unit governed by a deity (or by officials thought to be divinely guided)
+76130,theocracy,the belief in government by divine guidance
+76131,theodicy,the branch of theology that defends God's goodness and justice in the face of the existence of evil
+76132,theodolite transit,a surveying instrument for measuring horizontal and vertical angles, consisting of a small telescope mounted on a tripod
+76133,theogony,the study of the origins and genealogy of the gods
+76134,theologian theologist theologizer theologiser,someone who is learned in theology or who speculates about theology
+76135,theological_doctrine,the doctrine of a religious group
+76136,theological_virtue supernatural_virtue,according to Christian ethics: one of the three virtues (faith, hope, and charity) created by God to round out the natural virtues
+76137,theology,the learned profession acquired by specialized courses in religion (usually taught at a college or seminary); "he studied theology at Oxford"
+76138,theology divinity,the rational and systematic study of religion and its influences and of the nature of religious truth
+76139,theology theological_system,a particular system or school of religious beliefs and teachings; "Jewish theology"; "Roman Catholic theology"
+76140,theophany,a visible (but not necessarily material) manifestation of a deity to a human person
+76141,theophylline Elixophyllin Slo-Bid Theobid,a colorless crystalline alkaloid derived from tea leaves or made synthetically; used in medicine as a bronchial dilator
+76142,theorem,a proposition deducible from basic postulates
+76143,theorem,an idea accepted as a demonstrable truth
+76144,theorist theoretician theorizer theoriser idealogue,someone who theorizes (especially in science or art)
+76145,theorization theorisation,the production or use of theories
+76146,theory,a well-substantiated explanation of some aspect of the natural world; an organized system of accepted knowledge that applies in a variety of circumstances to explain a specific set of phenomena; "theories can incorporate facts and laws and tested hypotheses"; "true in fact and theory"
+76147,theory,a belief that can guide behavior; "the architect has a theory that more is less"; "they killed him on the theory that dead men tell no tales"
+76148,theory_of_dissociation theory_of_electrolytic_dissociation Arrhenius_theory_of_dissociation,(chemistry) theory that describes aqueous solutions in terms of acids (which dissociate to give hydrogen ions) and bases (which dissociate to give hydroxyl ions); the product of an acid and a base is a salt and water
+76149,theory_of_evolution theory_of_organic_evolution evolutionism,(biology) a scientific theory of the origin of species of plants and animals
+76150,theory_of_gravitation theory_of_gravity gravitational_theory Newton's_theory_of_gravitation,(physics) the theory that any two particles of matter attract one another with a force directly proportional to the product of their masses and inversely proportional to the square of the distance between them
+76151,theory_of_indicators Ostwald's_theory_of_indicators,(chemistry) the theory that all indicators are either weak acids or weak bases in which the color of the ionized form is different from the color before dissociation
+76152,theory_of_inheritance,(biology) a theory of how characteristics of one generation are derived from earlier generations
+76153,theosophism,belief in theosophy
+76154,theosophist,a believer in theosophy
+76155,theosophy,a system of belief based on mystical insight into the nature of God and the soul
+76156,theoterrorism,terrorism for a religious purpose
+76157,therapeutic_abortion,a legally induced abortion for medical reasons (as when the mother's life is threatened)
+76158,therapeutic_cloning biomedical_cloning,nuclear transplantation of a patient's own cells to make an oocyte from which immune-compatible cells (especially stem cells) can be derived for transplant
+76159,therapeutics,branch of medicine concerned with the treatment of disease
+76160,therapist healer,a person skilled in a particular type of therapy
+76161,therapsid protomammal,probably warm-blooded; considered direct ancestor of mammals
+76162,therapy,(medicine) the act of caring for someone (as by medication or remedial training etc.); "the quarterback is undergoing treatment for a knee injury"; "he tried every treatment the doctors suggested"; "heat therapy gave the best relief"
+76163,there,a location other than here; that place; "you can take it from there"
+76164,theremin,an electronic musical instrument; melodies can be played by moving the right hand between two rods that serve as antennas to control pitch; the left hand controls phrasing
+76165,thereness,real existence; "things are really there...capture the thereness of them"--Charles Hopkinson
+76166,thereness,the state of being there--not here--in position
+76167,therm,a unit of heat equal to 100,000 British thermal units
+76168,thermal,rising current of warm air
+76169,thermal_barrier heat_barrier,a limit to high speed flight imposed by aerodynamic heating
+76170,thermal_equilibrium,a state in which all parts of a system are at the same temperature
+76171,thermal_pollution,harm to lakes and rivers resulting from the release of excessive waste heat into them
+76172,thermal_printer,a printer that produces characters by applying heat to special paper that is sensitive to heat
+76173,thermal_reactor,a nuclear reactor in which nuclear fissions are caused by neutrons that are slowed down by a moderator
+76174,thermalgesia,pain caused by heat
+76175,thermion,an electrically charged particle (electron or ion) emitted by a substance at a high temperature
+76176,thermionic_current,an electric current produced between two electrodes as a result of electrons emitted by thermionic emission
+76177,thermionic_emission thermal_emission,the emission of electrons from very hot substances
+76178,thermionics,the branch of electronics dealing with thermionic phenomena (especially thermionic vacuum tubes)
+76179,thermistor thermal_resistor,a semiconductor device made of materials whose resistance varies as a function of temperature; can be used to compensate for temperature variation in other components of a circuit
+76180,thermoacidophile,archaebacteria that thrive in strongly acidic environments at high temperatures
+76181,thermobaric_bomb fuel-air_bomb vacuum_bomb volume-detonation_bomb aerosol_bomb,a bomb that uses a fuel-air explosive; "a thermobaric bomb can create overpressures equal to an atomic bomb"
+76182,thermocautery,cautery (destruction of tissue) by heat
+76183,thermochemistry,the branch of chemistry that studies the relation between chemical action and the amount of heat absorbed or generated
+76184,thermocoagulation,congealing tissue by heat (as by electric current)
+76185,thermocouple thermocouple_junction,a kind of thermometer consisting of two wires of different metals that are joined at both ends; one junction is at the temperature to be measured and the other is held at a fixed lower temperature; the current generated in the circuit is proportional to the temperature difference
+76186,thermodynamics,the branch of physics concerned with the conversion of different forms of energy
+76187,thermoelectric_thermometer thermel electric_thermometer,a thermometer that uses thermoelectric current to measure temperature
+76188,thermoelectricity,electricity produced by heat (as in a thermocouple)
+76189,thermogram,a graphical record produced by a thermograph
+76190,thermograph,medical instrument that uses an infrared camera to reveal temperature variations on the surface of the body
+76191,thermograph thermometrograph,a thermometer that records temperature variations on a graph as a function of time
+76192,thermography,diagnostic technique using a thermograph to record the heat produced by different parts of the body; used to study blood flow and to detect tumors
+76193,thermogravimetry,the measurement of changes in weight as a function of changes in temperature used as a technique of chemically analyzing substances
+76194,thermohydrometer thermogravimeter,a hydrometer that includes a thermometer
+76195,thermojunction,a junction between two dissimilar metals across which a voltage appears
+76196,thermometer,measuring instrument for measuring temperature
+76197,thermometry,the measurement of temperature
+76198,thermonuclear_reaction,a nuclear fusion reaction taking place at very high temperatures (as in the sun)
+76199,thermonuclear_reactor fusion_reactor,a nuclear reactor that uses controlled nuclear fusion to generate energy
+76200,thermopile,a kind of thermometer for measuring heat radiation; consists of several thermocouple junctions in series
+76201,thermoplastic thermoplastic_resin,a material that softens when heated and hardens again when cooled
+76202,thermoreceptor,a sensory receptor that responds to heat and cold
+76203,thermos thermos_bottle thermos_flask,vacuum flask that preserves temperature of hot or cold drinks
+76204,thermosetting_compositions thermosetting_resin,a material that hardens when heated and cannot be remolded
+76205,thermosphere,the atmospheric layer between the mesosphere and the exosphere
+76206,thermostat thermoregulator,a regulator for automatically regulating temperature by starting or stopping the supply of heat
+76207,thermostatics thermodynamics_of_equilibrium,the aspect of thermodynamics concerned with thermal equilibrium
+76208,thermotherapy,the use of heat to treat a disease or disorder; heating pads or hot compresses or hot-water bottles are used to promote circulation in peripheral vascular disease or to relax tense muscles
+76209,thermotropism,an orienting response to warmth
+76210,theropod theropod_dinosaur bird-footed_dinosaur,any of numerous carnivorous dinosaurs of the Triassic to Cretaceous with short forelimbs that walked or ran on strong hind legs
+76211,thesaurus synonym_finder,a book containing a classified list of synonyms
+76212,thesis,an unproved statement put forward as a premise in an argument
+76213,theta,the 8th letter of the Greek alphabet
+76214,theta_rhythm theta_wave,the normal brainwave in the encephalogram of a person who is awake but relaxed and drowsy; occurs with low frequency and low amplitude
+76215,theurgy,the effect of supernatural or divine intervention in human affairs
+76216,theurgy,white magic performed with the help of beneficent spirits (as formerly practiced by Neoplatonists)
+76217,thiabendazole,an antifungal agent and anthelmintic
+76218,thiazide,any of a group of drugs commonly used as diuretics in the treatment of hypertension; they block the reabsorption of sodium in the kidneys
+76219,thiazine,a compound made up of a ring of four carbon atoms and one sulfur atom and one nitrogen atom
+76220,thick-billed_murre Uria_lomvia,a variety of murre
+76221,thick_skin,skin that is very thick (as an elephant or rhinoceros)
+76222,thickening inspissation,the act of thickening
+76223,thickening thickener,any material used to thicken; "starch is used in cooking as a thickening"
+76224,thickhead whistler,Australian and southeastern Asian birds with a melodious whistling call
+76225,thickness,indistinct articulation; "judging from the thickness of his speech he had been drinking heavily"
+76226,thickness,the dimension through an object as opposed to its length or width
+76227,thickness,resistance to flow
+76228,thickness heaviness,used of a line or mark
+76229,thief stealer,a criminal who takes property belonging to someone else with the intention of keeping it or selling it
+76230,thievishness larcenous,having a disposition to steal
+76231,thigh,the part of the leg between the hip and the knee
+76232,thigh_pad,protective garment consisting of a pad worn over the thighs by football players
+76233,thill,one of two shafts extending from the body of a cart or carriage on either side of the animal that pulls it
+76234,thimble,a small metal cap to protect the finger while sewing; can be used as a small container
+76235,thimble thimbleful,as much as a thimble will hold
+76236,thimbleweed Anemone_cylindrica,a common North American anemone with cylindrical fruit clusters resembling thimbles
+76237,thimerosal sodium_ethylmercurithiosalicylate Merthiolate,a light-colored crystalline powder (trade name Merthiolate) used as a surgical antiseptic
+76238,thin-shelled_mussel,mussel with thin fragile shells having only rudimentary hinge teeth
+76239,thin_air,nowhere to be found in a giant void; "it vanished into thin air"
+76240,thin_person skin_and_bones scrag,a person who is unusually thin and scrawny
+76241,thing,a special situation; "this thing has got to end"; "it is a remarkable thing"
+76242,thing,a persistent illogical feeling of desire or aversion; "he has a thing about seafood"; "she has a thing about him"
+76243,thing,an event; "a funny thing happened on the way to the..."
+76244,thing,a statement regarded as an object; "to say the same thing in other terms"; "how can you say such a thing?"
+76245,thing,a special objective; "the thing is to stay in bounds"
+76246,thing,a special abstraction; "a thing of the spirit"; "things of the heart"
+76247,thing,any attribute or quality considered as having its own existence; "the thing I like about her is ..."
+76248,thing,an entity that is not named specifically; "I couldn't tell what the thing was"
+76249,thing,an artifact; "how does this thing work?"
+76250,thing,an action; "how could you do such a thing?"
+76251,thing,a separate and self-contained entity
+76252,things,any movable possession (especially articles of clothing); "she packed her things and left"
+76253,think,an instance of deliberate thinking; "I need to give it a good think"
+76254,think_piece,an article in a newspaper or magazine or journal that represents opinions and ideas and discussion rather than bare facts
+76255,think_tank think_factory,a company that does research for hire and issues reports on the implications
+76256,thinker,someone who exercises the mind (usually in an effort to reach a decision)
+76257,thinker creative_thinker mind,an important intellectual; "the great minds of the 17th century"
+76258,thinking thought thought_process cerebration intellection mentation,the process of using your mind to consider something carefully; "thinking always made him frown"; "she paused for thought"
+76259,thinking_cap,a state in which one thinks
+76260,thinness,a consistency of low viscosity; "he disliked the thinness of the soup"
+76261,thinness tenuity slenderness,relatively small dimension through an object as opposed to its length or width; "the tenuity of a hair"; "the thinness of a rope"
+76262,thinning_shears,shears with one serrate blade; used for thinning hair
+76263,thiobacillus,small rod-shaped bacteria living in sewage or soil and oxidizing sulfur
+76264,thiobacteria sulphur_bacteria sulfur_bacteria,any bacterium of the genus Thiobacillus
+76265,thiocyanate,a salt of thiocyanic acid; formed when alkaline cyanides are fused with sulfur
+76266,thiocyanic_acid,an unstable acid that can be obtained by distilling a thiocyanate salt
+76267,thioguanine,an antineoplastic drug used to treat acute leukemias
+76268,thiopental thiopental_sodium thiopentobarbital_sodium Pentothal,barbiturate that is a hygroscopic powder (trade name Pentothal) that is a strong barbiturate that acts rapidly; induces a relaxed state when injected as a general anesthetic
+76269,thioridazine Mellaril,a tranquilizer (trade name Mellaril) used to treat schizophrenia and other psychotic disorders
+76270,thiotepa,an antineoplastic drug used to treat certain malignancies
+76271,thiothixene Navane,a tranquilizer (trade name Navane) used to treat schizophrenia
+76272,thiouracil,depresses the function of the thyroid gland
+76273,third,following the second position in an ordering or series; "a distant third"; "he answered the first question willingly, the second reluctantly, and the third with resentment"
+76274,third,the musical interval between one note and another three notes away from it; "a simple harmony written in major thirds"
+76275,third-class_mail third_class,mail consisting of printed matter qualifying for reduced postal rates
+76276,third-degree_burn,burn characterized by destruction of both epidermis and dermis
+76277,third-place_finish,a finish in third place (as in a race)
+76278,third-rater,one who is third-rate or distinctly inferior
+76279,third_base third,the base that must be touched third by a base runner in baseball; "he was cut down on a close play at third"
+76280,third_base third,the fielding position of the player on a baseball team who is stationed near the third of the bases in the infield (counting counterclockwise from home plate); "he is playing third"
+76281,third_baseman third_sacker,(baseball) the person who plays third base
+76282,third_degree,interrogation often accompanied by torture to extort information or a confession
+76283,third_dimension,the dimension whereby a solid object differs from a two-dimensional drawing of it
+76284,third_estate Commons,the common people
+76285,third_eye pineal_eye,a sensory structure capable of light reception located on the dorsal side of the diencephalon in various reptiles
+76286,third_gear third,the third from the lowest forward ratio gear in the gear box of a motor vehicle; "you shouldn't try to start in third gear"
+76287,third_law_of_motion Newton's_third_law_of_motion Newton's_third_law law_of_action_and_reaction,action and reaction are equal and opposite
+76288,third_law_of_thermodynamics,law stating that the entropy of a substance approaches zero as its temperature approaches absolute zero
+76289,third_party,someone other than the principals who are involved in a transaction
+76290,third_party,a political party organized in opposition to the major parties in a two-party system
+76291,third_person,pronouns and verbs that are used to refer to something other than the speaker or addressee of the language in which they occur
+76292,third_rail,a rail through which electric current is supplied to an electric locomotive
+76293,third_trimester,time period extending from the 28th week of gestation until delivery
+76294,third_ventricle,a narrow ventricle in the midplane below the corpus callosum; communicates with the fourth ventricle via the Sylvian aqueduct
+76295,thirst thirstiness,a physiological need to drink
+76296,thirteen 13 XIII baker's_dozen long_dozen,the cardinal number that is the sum of twelve and one
+76297,thirteenth,position 13 in a countable series of things
+76298,thirties 1930s,the decade from 1930 to 1939
+76299,thirties mid-thirties thirty-something,the time of life between 30 and 40
+76300,thirtieth,position 30 in a countable series of things
+76301,thirty 30 XXX,the cardinal number that is the product of ten and three
+76302,thirty-second_note demisemiquaver,a musical note having the time value of a thirty-second of a whole note
+76303,thistle,any of numerous plants of the family Compositae and especially of the genera Carduus and Cirsium and Onopordum having prickly-edged leaves
+76304,thistledown,pappus of a thistle consisting of silky featherlike hairs attached to the seed-like fruit of a thistle
+76305,thong,underpants resembling a G-string; worn by women especially under very tight pants; "she wore thongs in her quest for the callipygian ideal"
+76306,thong,a thin strip of leather; often used to lash things together
+76307,thoracic_actinomycosis,a serious form of actinomycosis that affects the chest
+76308,thoracic_aorta,a branch of the descending aorta; divides into the iliac arteries
+76309,thoracic_duct,the major duct of the lymphatic system
+76310,thoracic_medicine,the branch of medicine that deals with the diagnosis and treatment of diseases of the chest
+76311,thoracic_nerve,any of twelve pairs of spinal nerves emerging from the thoracic region of the spinal cord
+76312,thoracic_outlet_syndrome,tingling sensations in the fingers; caused by compression on a nerve supplying the arm
+76313,thoracic_vein vena_thoracica,veins that drain the thoracic walls
+76314,thoracic_vertebra dorsal_vertebra,one of 12 vertebrae in the human vertebral column; thoracic vertebrae extend from the seventh cervical vertebra down to the first lumbar vertebra
+76315,thoracocentesis thoracentesis,removal of fluid from the chest by centesis for diagnostic or therapeutic purposes
+76316,thoracoepigastric_vein vena_thoracoepigastrica,a vein arising from the region of the superficial epigastric vein and opening into the axillary vein or thoracic vein
+76317,thoracotomy,surgical incision into the chest walls opening up the pleural cavity
+76318,thorax,the middle region of the body of an arthropod between the head and the abdomen
+76319,thorax,part of an insect's body that bears the wings and legs
+76320,thorax chest pectus,the part of the human torso between the neck and the diaphragm or the corresponding part in other vertebrates
+76321,thorite,a radioactive mineral consisting of thorium silicate; it is a source of thorium that is found in coarse granite
+76322,thorium Th atomic_number_90,a soft silvery-white tetravalent radioactive metallic element; isotope 232 is used as a power source in nuclear reactors; occurs in thorite and in monazite sands
+76323,thorium-228 radiothorium,radioactive isotope of thorium with mass number 228
+76324,thorn,a Germanic character of runic origin
+76325,thorn_apple,any of several plants of the genus Datura
+76326,thornbill,any of various South American hummingbirds with a sharp pointed bill
+76327,thorny_amaranth Amaranthus_spinosus,erect annual of tropical central Asia and Africa having a pair of divergent spines at most leaf nodes
+76328,thorny_skate Raja_radiata,cold-water bottom fish with spines on the back; to 40 inches
+76329,thoroughbred,a well-bred person
+76330,thoroughbred,a racehorse belonging to a breed that originated from a cross between Arabian stallions and English mares
+76331,thoroughbred purebred pureblood,a pedigreed animal of unmixed lineage; used especially of horses
+76332,thoroughbred_race,a race between thoroughbred horses
+76333,thoroughbred_racing,the sport of racing thoroughbred horses
+76334,thoroughfare,a public road from one place to another
+76335,thoroughness,conscientiousness in performing all aspects of a task
+76336,thortveitite,a mineral consisting of scandium yttrium silicate; a source of scandium
+76337,thought,the organized beliefs of a period or group or individual; "19th century thought"; "Darwinian thought"
+76338,thoughtfulness,the trait of thinking carefully before acting
+76339,thousand one_thousand 1000 M K chiliad G grand thou yard,the cardinal number that is the product of 10 and 100
+76340,thousandth,position 1,000 in a countable series of things
+76341,thrall,someone held in bondage
+76342,thrash,a swimming kick used while treading water
+76343,thrasher mocking_thrush,thrush-like American songbird able to mimic other birdsongs
+76344,thrashing walloping debacle drubbing slaughter trouncing whipping,a sound defeat
+76345,thread yarn,a fine cord of twisted fibers (of cotton or silk or wool or nylon etc.) used in sewing and weaving
+76346,thread_blight,a disease of tropical woody plants (cacao or tea or citrus)
+76347,threadfin,mullet-like tropical marine fishes having pectoral fins with long threadlike rays
+76348,threadfish thread-fish Alectis_ciliaris,fish having greatly elongated front rays on dorsal and anal fins
+76349,threadleaf_groundsel Senecio_doublasii,bluish-green bushy leafy plant covered with close white wool and bearing branched clusters of yellow flower heads; southwestern United States; toxic to range livestock
+76350,threat,a warning that something unpleasant is imminent; "they were under threat of arrest"
+76351,threat,declaration of an intention or a determination to inflict harm on another; "his threat to kill me was quite explicit"
+76352,three 3 III trio threesome tierce leash troika triad trine trinity ternary ternion triplet tercet terzetto trey deuce-ace,the cardinal number that is the sum of one and one and one
+76353,three-D 3-D 3D,a movie with images having three dimensional form or appearance
+76354,three-D 3-D 3D,having a three-dimensional form or appearance; "aren't dreams always in 3-D?"
+76355,three-centered_arch basket-handle_arch,a round arch whose inner curve is drawn with circles having three centers
+76356,three-cornered_leek triquetrous_leek Allium_triquetrum,European leek naturalized in Great Britain; leaves are triangular
+76357,three-day_event,an equestrian competition; the first day is dressage; the second is cross-country jumping; the third is stadium jumping
+76358,three-decker,any ship having three decks
+76359,three-decker,a warship carrying guns on three decks
+76360,three-dimensional_radar 3d_radar,radar that will report altitude as well as azimuth and distance of a target
+76361,three-dimensionality third-dimensionality,the property of having three dimensions
+76362,three-fourths three-quarters,three of four equal parts; "three-fourths of a pound"
+76363,three-hitter 3-hitter,a game in which a pitcher allows the opposing team only 3 hits
+76364,three-mile_limit,the limit of a nation's territorial waters
+76365,three-piece_suit,a business suit consisting of a jacket and vest and trousers
+76366,three-point_landing,a landing in which all three wheels of the aircraft touch the ground at the same time
+76367,three-point_turn,the act of turning a vehicle around in a limited space by moving in a series of back and forward arcs
+76368,three-quarter_binding,the spine and much of the sides are a different material from the rest of the cover
+76369,three-ring_circus,a circus with simultaneous performances in three rings
+76370,three-seeded_mercury Acalypha_virginica,weedy herb of eastern North America
+76371,three-spined_stickleback Gasterosteus_aculeatus,of rivers and coastal regions
+76372,three-toed_sloth ai Bradypus_tridactylus,a sloth that has three long claws on each forefoot and each hindfoot
+76373,three-way_calling,a way of adding a third party to your conversation without the assistance of a telephone operator
+76374,three-way_switch three-point_switch,an electric switch that has three terminals; used to control a circuit from two different locations
+76375,three-year-old_horse three_year_old,a racehorse that is three years old
+76376,threepence,former cupronickel coin of the United Kingdom equal to three pennies
+76377,threescore,a set with 3 times 20 members
+76378,threonine,a colorless crystalline amino acid found in protein; occurs in the hydrolysates of certain proteins; an essential component of human nutrition
+76379,thresher thrasher thresher_shark fox_shark Alopius_vulpinus,large pelagic shark of warm seas with a whiplike tail used to round up small fish on which to feed
+76380,thresher thrasher threshing_machine,a farm machine for separating seeds or grain from the husks and straw
+76381,threshing,the separation of grain or seeds from the husks and straw; "they used to do the threshing by hand but now there are machines to do it"
+76382,threshing_floor,a floor or ground area for threshing or treading out grain
+76383,threshold,the starting point for a new state or experience; "on the threshold of manhood"
+76384,threshold limen,the smallest detectable sensation
+76385,threshold_element threshold_gate,a logic element that performs a threshold operation
+76386,threshold_function,a function that takes the value 1 if a specified function of the arguments exceeds a given threshold and 0 otherwise
+76387,threshold_level,the intensity level that is just barely perceptible
+76388,threshold_operation,an operation performed on operands in order to obtain the value of a threshold function
+76389,thrift,any of numerous sun-loving low-growing evergreens of the genus Armeria having round heads of pink or white flowers
+76390,thrift_institution,a depository financial institution intended to encourage personal savings and home buying
+76391,thriftlessness waste wastefulness,the trait of wasting resources; "a life characterized by thriftlessness and waste"; "the wastefulness of missed opportunities"
+76392,thriftshop second-hand_store,a shop that sells secondhand goods at reduced prices
+76393,thrill,something that causes you to experience a sudden intense feeling or sensation; "the thrills of space travel"
+76394,thriller,a suspenseful adventure story or play or movie
+76395,thrips thrip thripid,any of various small to minute sucking insects with narrow feathery wings if any; they feed on plant sap and many are destructive
+76396,throat,an opening in the vamp of a shoe at the instep
+76397,throat,a passage resembling a throat in shape or function; "the throat of the vase"; "the throat of a chimney"
+76398,throat,the part of an animal's body that corresponds to a person's throat
+76399,throat pharynx,the passage to the stomach and lungs; in the front part of the neck below the chin and above the collarbone
+76400,throat_protector,protective garment worn by hockey goalkeeper and catcher in baseball
+76401,throatwort nettle-leaved_bellflower Campanula_trachelium,European bellflower with blue-purple to lilac flowers formerly used to treat sore throat
+76402,throb,a deep pulsating type of pain
+76403,throb throbbing pounding,an instance of rapid strong pulsation (of the heart); "he felt a throbbing in his head"
+76404,throbbing,a sound with a strong rhythmic beat; "the throbbing of the engines"
+76405,throe,hard or painful trouble or struggle; "a country in the throes of economic collapse"
+76406,throe,severe spasm of pain; "the throes of dying"; "the throes of childbirth"
+76407,throes,violent pangs of suffering; "death throes"
+76408,thrombasthenia,a rare autosomal recessive disease in which the platelets do not produce clots in the normal way and hemorrhage results
+76409,thrombectomy,surgical removal of a blood clot (thrombus) from a blood vessel
+76410,thrombin,an enzyme that acts on fibrinogen in blood causing it to clot
+76411,thrombocytopenia thrombopenia,a blood disease characterized by an abnormally small number of platelets in the blood
+76412,thrombocytopenic_purpura idiopathic_thrombocytopenic_purpura purpura_hemorrhagica Werlhof's_disease,purpura associated with a reduction in circulating blood platelets which can result from a variety of factors
+76413,thrombocytosis,increase in the number of platelets in the blood which tends to cause clots to form; associated with many neoplasms and chronic infections and other diseases
+76414,thromboembolism,occlusion of a blood vessel by an embolus that has broken away from a thrombus
+76415,thrombolysis,the process of breaking up and dissolving blood clots
+76416,thrombolytic thrombolytic_agent clot_buster,a kind of pharmaceutical that can break up clots blocking the flow of blood to the heart muscle
+76417,thrombolytic_therapy,therapy consisting of the administration of a pharmacological agent to cause thrombolysis of an abnormal blood clot
+76418,thrombophlebitis,phlebitis in conjunction with the formation of a blood clot (thrombus)
+76419,thromboplastin thrombokinase factor_III,an enzyme liberated from blood platelets that converts prothrombin into thrombin as blood starts to clot
+76420,thrombosis,the formation or presence of a thrombus (a clot of coagulated blood attached at the site of its formation) in a blood vessel
+76421,thrombus,a blood clot formed within a blood vessel and remaining attached to its place of origin
+76422,throne,the chair of state for a monarch, bishop, etc.; "the king sat on his throne"
+76423,throne,the position and power of an exalted person (a sovereign or bishop) who is entitled to sit in a chair of state on ceremonial occasions
+76424,throstle,a spinning machine formerly used to twist and wind fibers of cotton or wool continuously
+76425,throughput,output relative to input; the amount passing through a system from input to output (especially of a computer program over a period of time)
+76426,throw,a single chance or instance; "he couldn't afford $50 a throw"
+76427,throw,bedclothes consisting of a lightweight cloth covering (an afghan or bedspread) that is casually thrown over something
+76428,throw,casting an object in order to determine an outcome randomly; "he risked his fortune on a throw of the dice"
+76429,throw,the act of throwing (propelling something with a rapid movement of the arm and wrist); "the catcher made a good throw to second base"
+76430,throw stroke cam_stroke,the maximum movement available to a pivoted or reciprocating piece by a cam
+76431,throw-in,(rugby) an act or instance of throwing a ball in to put it into play
+76432,throw-weight,the weight of the payload of a missile (not including the weight of the rocket)
+76433,throw_pillow,a small cushion that is used for decorative purposes
+76434,throwaway,words spoken in a casual way with conscious under-emphasis
+76435,thrower,someone who projects something (especially by a rapid motion of the arm)
+76436,throwing_stick throwing_board spear_thrower dart_thrower,a device resembling a sling that is used in various primitive societies to propel a dart or spear
+76437,throwster thrower,a person who twists silk or rayon filaments into a thread or yarn
+76438,thrum,a thrumming sound; "he could hear the thrum of a banjo"
+76439,thrush,candidiasis of the oral cavity; seen mostly in infants or debilitated adults
+76440,thrush,a woman who sings popular songs
+76441,thrush,songbirds characteristically having brownish upper plumage with a spotted breast
+76442,thrush_nightingale Luscinia_luscinia,large nightingale of eastern Europe
+76443,thrust,verbal criticism; "he enlivened his editorials with barbed thrusts at politicians"
+76444,thrust_bearing,a bearing designed to take thrusts parallel to the axis of revolution
+76445,thrust_fault overthrust_fault reverse_fault,a geological fault in which the upper side appears to have been pushed upward by compression
+76446,thrust_stage,a theater stage that extends out into the audience's part of a theater and has seats on three sides
+76447,thruster,a small rocket engine that provides the thrust needed to maneuver a spacecraft
+76448,thuggee,murder and robbery by thugs
+76449,thuggery,violent or brutal acts as of thugs
+76450,thulium Tm atomic_number_69,a soft silvery metallic element of the rare earth group; isotope 170 emits X-rays and is used in small portable X-ray machines; it occurs in monazite and apatite and xenotime
+76451,thumb,the part of a glove that provides a covering for the thumb
+76452,thumb pollex,the thick short innermost digit of the forelimb
+76453,thumb_index,one of a series of rounded notches in the fore edge of a book to indicate sections
+76454,thumbhole,the hole in a woodwind that is closed and opened with the thumb
+76455,thumbhole,a finger hole made to fit the thumb (as in a bowling ball)
+76456,thumbnail,the nail of the thumb
+76457,thumbprint,fingerprint made by the thumb (especially by the pad of the thumb)
+76458,thumbscrew,instrument of torture that crushes the thumb
+76459,thumbscrew,screw designed to be turned with the thumb and fingers
+76460,thumbstall,protective covering for an injured thumb
+76461,thumbtack drawing_pin pushpin,a tack for attaching papers to a bulletin board or drawing board
+76462,thump,a heavy blow with the hand
+76463,thump thumping clump clunk thud,a heavy dull sound (as made by impact of heavy objects)
+76464,thunder,a booming or crashing noise caused by air expanding along the path of a bolt of lightning
+76465,thunder_snake worm_snake Carphophis_amoenus,small reddish wormlike snake of eastern United States
+76466,thunderbird,(mythology) the spirit of thunder and lightning believed by some Native Americans to take the shape of a great bird
+76467,thunderbolt bolt bolt_of_lightning,a discharge of lightning accompanied by thunder
+76468,thunderclap,a single sharp crash of thunder
+76469,thunderer,a noisemaker that makes a sound like thunder
+76470,thunderhead,a rounded projecting mass of a cumulus cloud with shining edges; often appears before a thunderstorm
+76471,thundershower,a short rainstorm accompanied by thunder and lightning
+76472,thunderstorm electrical_storm electric_storm,a storm resulting from strong rising air currents; heavy rain or hail along with thunder and lightning
+76473,thunk,a dull hollow sound; "the basketball made a thunk as it hit the rim"
+76474,thurifer,an acolyte who carries a thurible
+76475,thwack,a hard blow with a flat object
+76476,thwart cross_thwart,a crosspiece spreading the gunnels of a boat; used as a seat in a rowboat
+76477,thylacine Tasmanian_wolf Tasmanian_tiger Thylacinus_cynocephalus,rare doglike carnivorous marsupial of Tasmania having stripes on its back; probably extinct
+76478,thyme,any of various mints of the genus Thymus
+76479,thyme,leaves can be used as seasoning for almost any meat and stews and stuffings and vegetables
+76480,thyme-leaved_sandwort Arenaria_serpyllifolia,Eurasian annual sprawling plant naturalized throughout North America
+76481,thyme-leaved_speedwell Veronica_serpyllifolia,perennial decumbent herb having small opposite leaves and racemes of blue flowers; throughout Eurasia and the New World
+76482,thymine T,a base found in DNA (but not in RNA) and derived from pyrimidine; pairs with adenine
+76483,thymol thyme_camphor thymic_acid,a colorless crystalline solid used in perfume or preserving biological specimens or in embalming or medically as a fungicide or antiseptic
+76484,thymosin,hormone secreted by the thymus; stimulates immunological activity of lymphoid tissue
+76485,thymus_gland thymus,a ductless glandular organ at the base of the neck that produces lymphocytes and aids in producing immunity; atrophies with age
+76486,thyroglobulin,an iodine containing protein that is obtained from the thyroid gland and exhibits the general properties of the globulins
+76487,thyroid_cartilage Adam's_apple,the largest cartilage of the larynx
+76488,thyroid_gland thyroid,located near the base of the neck
+76489,thyroid_hormone,any of several closely related compounds that are produced by the thyroid gland and are active metabolically
+76490,thyroid_vein vena_thyroidea,any of several small veins draining blood from the thyroid area
+76491,thyroidectomy,surgical removal of the thyroid gland
+76492,thyroiditis,inflammation of the thyroid gland
+76493,thyronine,a phenolic amino acid of which thyroxine is a derivative
+76494,thyroprotein,a preparation made from iodinated protein and having an action similar to thyroxine
+76495,thyrotropin thyrotropic_hormone thyrotrophin thyrotrophic_hormone thyroid-stimulating_hormone TSH,anterior pituitary hormone that stimulates the function of the thyroid gland
+76496,thyrotropin-releasing_hormone TRH thyrotropin-releasing_factor TRF protirelin,hormone released by the hypothalamus that controls the release of thyroid-stimulating hormone from the anterior pituitary
+76497,thyroxine thyroxin tetraiodothyronine T,hormone produced by the thyroid glands to regulate metabolism by controlling the rate of oxidation in cells; "thyroxine is 65% iodine"
+76498,thyrse thyrsus,a dense flower cluster (as of the lilac or horse chestnut) in which the main axis is racemose and the branches are cymose
+76499,thyrsopteris Thyrsopteris_elegans,a terrestrial tree fern of South America
+76500,thysanopter thysanopteron thysanopterous_insect,an insect of the order Thysanoptera
+76501,thysanuran_insect thysanuron,primitive wingless insects: bristletail
+76502,ti Cordyline_terminalis,shrub with terminal tufts of elongated leaves used locally for thatching and clothing; thick sweet roots are used as food; tropical southeastern Asia, Australia and Hawaii
+76503,ti te si,the syllable naming the seventh (subtonic) note of any musical scale in solmization
+76504,tiara,a jeweled headdress worn by women on formal occasions
+76505,tibia shinbone shin_bone shin,the inner and thicker of the two bones of the human leg between the knee and ankle
+76506,tibial_vein vena_tibialis,veins of the lower leg; empty into the popliteal vein
+76507,tibialis tibialis_muscle musculus_tibialis,either of two skeletal muscle in each leg arising from the tibia; provides for movement of the foot
+76508,tibialis_anticus tibialis_anterior,a muscle running from the tibia to the first metatarsal and cuneiform bones
+76509,tibialis_posticus tibialis_posterior,a deep muscle of the leg
+76510,tic,a local and habitual twitching especially in the face
+76511,tick,a light mattress
+76512,tick,any of two families of small parasitic arachnids with barbed proboscis; feed on blood of warm-blooded animals
+76513,tick ticking,a metallic tapping sound; "he counted the ticks of the clock"
+76514,tick_trefoil beggar_lice beggar's_lice,any of various tropical and subtropical plants having trifoliate leaves and rough sticky pod sections or loments
+76515,ticker stock_ticker,a character printer that automatically prints stock quotations on ticker tape
+76516,ticker_tape,a continuous thin ribbon of paper on which stock quotes are written
+76517,ticket,a summons issued to an offender (especially to someone who violates a traffic regulation)
+76518,ticket,a commercial document showing that the holder is entitled to something (as to ride on public transportation or to enter a public entertainment)
+76519,ticket just_the_ticket,the appropriate or desirable thing; "this car could be just the ticket for a small family"
+76520,ticket-of-leave,a permit formerly given to convicts allowing them to leave prison under specific restrictions
+76521,ticket_agent booking_clerk,someone who sells tickets (e.g., theater seats or travel accommodations)
+76522,ticket_book,a book of tickets that can be torn out and used
+76523,ticket_collector ticket_taker,someone who is paid to admit only those who have purchased tickets
+76524,ticket_holder,holder of a ticket (for admission or for passage)
+76525,ticket_line,a queue of people waiting to buy tickets
+76526,ticket_window,a window through which tickets are sold (as from a ticket booth)
+76527,ticking,a strong fabric used for mattress and pillow covers
+76528,tickle,a cutaneous sensation often resulting from light stroking
+76529,tickle tickling titillation,the act of tickling
+76530,tickler tickler_file,a file of memoranda or notices that remind of things to be done
+76531,tickler_coil,a small coil in series with the anode of a vacuum tube and coupled to the grid to provide feedback
+76532,tickseed_sunflower Bidens_coronata Bidens_trichosperma,North American bur marigold with large flowers
+76533,ticktack,system of signalling by hand signs used by bookmakers at racetracks
+76534,ticktacktoe ticktacktoo tick-tack-toe tic-tac-toe tit-tat-toe noughts_and_crosses,a game in which two players alternately put crosses and circles in one of the compartments of a square grid of nine spaces; the object is to get a row of three crosses or three circles before the opponent does
+76535,ticktock tocktact tictac,steady recurrent ticking sound as made by a clock
+76536,tidal_basin,a basin that is full of water at high tide
+76537,tidal_bore bore eagre aegir eager,a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)
+76538,tidal_flow tidal_current,the water current caused by the tides
+76539,tidal_river tidewater_river tidal_stream tidewater_stream,a stream in which the effects of the tide extend far upstream
+76540,tidal_wave,an overwhelming manifestation of some emotion or phenomenon; "a tidal wave of nausea"; "the flood of letters hit him with the force of a tidal wave"; "a tidal wave of crime"
+76541,tidal_wave,an unusual (and often destructive) rise of water along the seashore caused by a storm or a combination of wind and high tide
+76542,tidal_wave,a wave resulting from the periodic flow of the tides that is caused by the gravitational attraction of the moon and sun
+76543,tidal_zone,an area subject to tidal action
+76544,tiddlywinks,a game in which players try to flip plastic disks into a cup by pressing them on the side sharply with a larger disk
+76545,tide,something that may increase or decrease (like the tides of the sea); "a rising tide of popular interest"
+76546,tide,the periodic rise and fall of the sea level under the gravitational pull of the moon
+76547,tide lunar_time_period,there are usually two high and two low tides each day
+76548,tideland,land near the sea that is overflowed by the tide
+76549,tidemark,indicator consisting of a line at the highwater or low-water limits of the tides
+76550,tidewater,low-lying coastal land drained by tidal streams
+76551,tideway,a channel in which a tidal current runs
+76552,tidiness,the habit of being tidy
+76553,tidiness neatness,the trait of being neat and orderly
+76554,tidy,receptacle that holds odds and ends (as sewing materials)
+76555,tidytips tidy_tips Layia_platyglossa,California annual having flower heads with yellow rays tipped with white
+76556,tie,equality of score in a contest
+76557,tie,(music) a slur over two notes of the same pitch; indicates that the note is to be sustained for their combined time value
+76558,tie,a cord (or string or ribbon or wire etc.) with which something is tied; "he needed a tie for the packages"
+76559,tie railroad_tie crosstie sleeper,one of the cross braces that support the rails on a railway track; "the British call a railroad tie a sleeper"
+76560,tie tie_beam,a horizontal beam used to prevent two other structural members from spreading apart or separating; "he nailed the rafters together with a tie beam"
+76561,tie_clip,a piece of jewelry that holds a man's tie in place
+76562,tie_rack,a rack for storing ties
+76563,tie_rod,either of two rods that link the steering gear to the front wheels
+76564,tie_tack tiepin scarfpin,a pin used to hold the tie in place
+76565,tiebreaker,overtime play in order to break a tie; e.g. tennis and soccer
+76566,tier,any one of two or more competitors who tie one another
+76567,tier,something that is used for tying; "the sail is fastened to the yard with tiers"
+76568,tier,one of two or more layers one atop another; "tier upon tier of huge casks"; "a three-tier wedding cake"
+76569,tier tier_up,a worker who ties something
+76570,tiercel tercel tercelet,male hawk especially male peregrine or gyrfalcon
+76571,tiered_seat,seating that is arranged in sloping tiers so that spectators in the back can see over the heads of those in front
+76572,tiger,a fierce or audacious person; "he's a tiger on the tennis court"; "it aroused the tiger in me"
+76573,tiger Panthera_tigris,large feline of forests in most of Asia having a tawny coat with black stripes; endangered
+76574,tiger_beetle,active usually bright-colored beetle that preys on other insects
+76575,tiger_cat,a cat having a striped coat
+76576,tiger_cat Felis_tigrina,medium-sized wildcat of Central America and South America having a dark-striped coat
+76577,tiger_cowrie Cypraea_tigris,cowrie whose shell is used for ornament
+76578,tiger_cub,a young tiger
+76579,tiger_lily devil_lily kentan Lilium_lancifolium,east Asian perennial having large reddish-orange black-spotted flowers with reflexed petals
+76580,tiger_lily leopard_lily pine_lily Lilium_catesbaei,lily of southeastern United States having cup-shaped flowers with deep yellow to scarlet recurved petals
+76581,tiger_moth,medium-sized moth with long richly colored and intricately patterned wings; larvae are called woolly bears
+76582,tiger_rattlesnake Crotalus_tigris,having irregularly cross-banded back; of arid foothills and canyons of southern Arizona and Mexico
+76583,tiger_salamander Ambystoma_tigrinum,widely distributed brown or black North American salamander with vertical yellowish blotches
+76584,tiger_shark Galeocerdo_cuvieri,large dangerous warm-water shark with striped or spotted body
+76585,tiger_snake Notechis_scutatus,highly venomous brown-and-yellow snake of Australia and Tasmania
+76586,tight_end,(football) an offensive end who lines up close to the tackle
+76587,tight_money,the economic condition in which credit is difficult to secure and interest rates are high
+76588,tightening,the act of making something tighter; "the tightening of economic controls"
+76589,tightness tautness,lack of movement or room for movement
+76590,tightrope,tightly stretched rope or wire on which acrobats perform high above the ground
+76591,tights leotards,skintight knit hose covering the body from the waist to the feet worn by acrobats and dancers and as stockings by women and girls
+76592,tiglon tigon,offspring of a male tiger and a female lion
+76593,tigress,a female tiger
+76594,tilde,a diacritical mark (~) placed over the letter n in Spanish to indicate a palatal nasal sound or over a vowel in Portuguese to indicate nasalization
+76595,tile,game equipment consisting of a flat thin piece marked with characters and used in board games like Mah-Jong, Scrabble, etc.
+76596,tile,a flat thin rectangular slab (as of fired clay or rubber or linoleum) used to cover surfaces
+76597,tile roofing_tile,a thin flat slab of fired clay used for roofing
+76598,tile_cutter,a cutter (tool for cutting) for floor tiles
+76599,tile_roof,a roof made of fired clay tiles
+76600,tilefish Lopholatilus_chamaeleonticeps,yellow-spotted violet food fish of warm deep waters
+76601,tiler,a worker who lays tile
+76602,tiling,the application of tiles to cover a surface
+76603,till boulder_clay,unstratified soil deposited by a glacier; consists of sand and clay and gravel and boulders mixed together
+76604,tillage,the cultivation of soil for raising crops
+76605,tiller,a shoot that sprouts from the base of a grass
+76606,tiller,someone who tills land (prepares the soil for the planting of crops)
+76607,tiller,lever used to turn the rudder on a boat
+76608,tilling,cultivation of the land in order to raise crops
+76609,tilt,a slight but noticeable partiality; "the court's tilt toward conservative rulings"
+76610,tilt list inclination lean leaning,the property possessed by a line or surface that departs from the vertical; "the tower had a pronounced tilt"; "the ship developed a list to starboard"; "he walked with a heavy inclination to the right"
+76611,tilt-top_table tip-top_table tip_table,a pedestal table whose top is hinged so that it can be tilted to a vertical position
+76612,tilt_angle,the angle a rocket makes with the vertical as it curves along its trajectory
+76613,tilter,someone who engages in a tilt or joust
+76614,tilter,a device for emptying a cask by tilting it without disturbing the dregs
+76615,tilth,the state of aggregation of soil and its condition for supporting plant growth
+76616,tiltyard,(formerly) an enclosed field for tilting contests
+76617,timbale,individual serving of minced e.g. meat or fish in a rich creamy sauce baked in a small pastry mold or timbale shell
+76618,timbale timbale_case,small pastry shell for creamy mixtures of minced foods
+76619,timber,a post made of wood
+76620,timber,a beam made of wood
+76621,timber_hitch,a hitch used to secure a rope to a log or spar; often supplemented by a half hitch
+76622,timber_line timberline tree_line,line marking the upper limit of tree growth in mountains or northern latitudes
+76623,timber_rattlesnake banded_rattlesnake Crotalus_horridus_horridus,widely distributed in rugged ground of eastern United States
+76624,timber_tree,any tree that is valued as a source of lumber or timber
+76625,timber_wolf grey_wolf gray_wolf Canis_lupus,a wolf with a brindled grey coat living in forested northern regions of North America
+76626,timberman,an owner or manager of a company that is engaged in lumbering
+76627,timbre timber quality tone,(music) the distinctive property of a complex sound (a voice or noise or musical sound); "the timbre of her soprano was rich and lovely"; "the muffled tones of the broken bell summoned them to meet"
+76628,timbrel,small hand drum similar to a tambourine; formerly carried by itinerant jugglers
+76629,time,a period of time considered as a resource under your control and sufficient to accomplish something; "take time to smell the roses"; "I didn't have time to finish"; "it took more than half my time"; "he waited for a long time"
+76630,time,a suitable moment; "it is time to go"
+76631,time,an indefinite period (usually marked by specific attributes or activities); "the time of year for planting"; "he was a great actor in his time"
+76632,time,a person's experience on a particular occasion; "he had a time holding back the tears"; "they had a good time together"
+76633,time,the continuum of experience in which events pass from the future through the present to the past; "he waited for along time"; "it took some time before he got an answer"; "time flies like an arrow"
+76634,time clip,an instance or single occasion for some event; "this time he succeeded"; "he called four times"; "he could do ten at a clip"
+76635,time-ball,a ball that slides down a staff to show a fixed time; especially at an observatory
+76636,time-delay_measuring_instrument time-delay_measuring_system,chronoscope for measuring the time difference between two events
+76637,time-fuse,a fuse made to burn for a given time (especially to explode a bomb)
+76638,time-out,a brief suspension of play; "each team has two time-outs left"
+76639,time-scale_factor,the ratio of the simulation time to the time of the real process
+76640,time-switch,a switch set to operate at a desired time
+76641,time_and_a_half,a rate of pay that is 1.5 times the regular rate; for overtime work
+76642,time_and_motion_study time-and-motion_study time-motion_study motion_study time_study work_study,an analysis of a specific job in an effort to find the most efficient method in terms of time and effort
+76643,time_being nonce,the present occasion; "for the nonce"
+76644,time_bomb infernal_machine,a bomb that has a detonating mechanism that can be set to go off at a particular time
+76645,time_bomb ticking_bomb,a problematic situation that will eventually become dangerous if not addressed; "India is a demographic time bomb"; "the refugee camp is a ticking bomb waiting to go off"
+76646,time_capsule,container for preserving historical records to be discovered at some future time
+76647,time_clock,clock used to record the hours that people work
+76648,time_constant,(electronics) the time required for the current or voltage in a circuit to rise or fall exponentially through approximately 63 per cent of its amplitude
+76649,time_constant,the ratio of the inductance of a circuit in henries to its resistance in ohms
+76650,time_deposit,a certificate of deposit from which withdrawals can be made only after advance notice or at a specified future date
+76651,time_deposit_account deposit_account,a savings account in which the deposit is held for a fixed term or in which withdrawals can be made only after giving notice or with loss of interest
+76652,time_draft time_bill,a draft payable at a specified future date
+76653,time_exposure,a photograph produced with a relatively long exposure time
+76654,time_exposure,exposure of a film for a relatively long time (more than half a second)
+76655,time_frame,a time period during which something occurs or is expected to occur; "an agreement can be reached in a reasonably short time frame"
+76656,time_immemorial time_out_of_mind,the distant past beyond memory
+76657,time_interval interval,a definite length of time marked off by two instants
+76658,time_limit,a time period within which something must be done or completed
+76659,time_loan,a loan that is payable on or before a specified date
+76660,time_machine,a science fiction machine that is supposed to transport people or objects into the past or the future
+76661,time_note,a note that specifies the time (or times) of repayment
+76662,time_of_life,a period of time during which a person is normally in a particular life state
+76663,time_off,a time period when you are not required to work; "he requested time off to attend his grandmother's funeral"
+76664,time_period period_of_time period,an amount of time; "a time period of 30 years"; "hastened the period of time of his recovery"; "Picasso's blue period"
+76665,time_scale,an arrangement of events used as a measure of duration; "on the geological time scale mankind has existed but for a brief moment"
+76666,time_series,a series of values of a variable at successive times
+76667,time_sharing,(computer science) the use of a central computer by many users simultaneously
+76668,time_sheet,a record of the hours worked by employees
+76669,time_signal,a signal (especially electronic or by radio) indicating the precisely correct time
+76670,time_signature musical_time_signature,a musical notation indicating the number of beats to a measure and kind of note that takes a beat
+76671,time_slot slot,a time assigned on a schedule or agenda; "the TV program has a new time slot"; "an aircraft landing slot"
+76672,time_unit unit_of_time,a unit for measuring time periods
+76673,time_zone,any of the 24 regions of the globe (loosely divided by longitude) throughout which the same standard time is used
+76674,timecard,a card recording an employee's starting and quitting times each work day
+76675,timecard,a card used with a time clock to record an employee's starting and quitting times each day
+76676,timekeeper,a clerk who keeps track of the hours worked by employees
+76677,timekeeper timer,(sports) an official who keeps track of the time elapsed
+76678,timekeeping,the act or process of determining the time
+76679,timeline,a sequence of related events arranged in chronological order and displayed along a line (usually drawn left to right or top to bottom)
+76680,timepiece timekeeper horologe,a measuring instrument or device for keeping time
+76681,timer,a regulator that activates or deactivates a mechanism at set times
+76682,timer,a timepiece that measures a time interval and signals its end
+76683,times,a more or less definite period of time now or previously present; "it was a sign of the times"
+76684,timeserver,one who conforms to current ways and opinions for personal advantage
+76685,timetable,a schedule listing events and the times at which they will take place
+76686,timetable,a schedule of times of arrivals and departures
+76687,timework,work paid for at a rate per unit of time
+76688,timid cautious,people who are fearful and cautious; "whitewater rafting is not for the timid"
+76689,timidity timidness timorousness,fear of the unknown or unfamiliar or fear of making decisions
+76690,timidity timorousness,fearfulness in venturing into new and unknown places or activities
+76691,timing,the time when something happens
+76692,timing,the regulation of occurrence, pace, or coordination to achieve a desired effect (as in music, theater, athletics, mechanics)
+76693,timolol Blocadren,a beta blocker (trade name Blocadren) administered after heart attacks
+76694,timothy,a grass grown for hay
+76695,timothy herd's_grass Phleum_pratense,grass with long cylindrical spikes grown in northern United States and Europe for hay
+76696,timucu,found in warm waters of western Atlantic
+76697,tin,a vessel (box, can, pan, etc.) made of tinplate and used mainly in baking
+76698,tin Sn atomic_number_50,a silvery malleable metallic element that resists corrosion; used in many alloys and to coat other metals to prevent corrosion; obtained chiefly from cassiterite where it occurs as tin oxide
+76699,tin_can,informal term for a destroyer
+76700,tin_ear,insensitivity to the appropriateness or subtlety of language; "he has a tin ear for dialogue"
+76701,tin_pest tin_disease tin_plague,the transformation of ordinary white tin into powdery grey tin at very cold temperatures
+76702,tin_plate tinplate,a thin sheet of metal (iron or steel) coated with tin to prevent rusting; used especially for cans, pots, and tins
+76703,tinamou partridge,heavy-bodied small-winged South American game bird resembling a gallinaceous bird but related to the ratite birds
+76704,tincture,a substance that colors or dyes
+76705,tincture,(pharmacology) a medicine consisting of an extract in an alcohol solution
+76706,tincture_of_iodine iodine,a tincture consisting of a solution of iodine in ethyl alcohol; applied topically to wounds as an antiseptic
+76707,tinderbox,a dangerous state of affairs; a situation that is a potential source of violence; "the Balkans are the tinderbox of Europe"
+76708,tinderbox,a box for holding tinder
+76709,tine,prong on a fork or pitchfork or antler
+76710,tine_test,a tuberculin test in which a disk with several tines bearing tuberculin antigen is used to puncture the skin; development of a hard red area indicates past or present exposure to tubercle bacilli and the need for further testing
+76711,tinea ringworm roundworm,infections of the skin or nails caused by fungi and appearing as itching circular patches
+76712,tinea_barbae barber's_itch,fungal infection of the face and neck
+76713,tinea_capitis,fungal infection of the scalp characterized by bald patches
+76714,tinea_corporis,fungal infection of nonhairy parts of the skin
+76715,tinea_cruris jock_itch eczema_marginatum,fungal infection of the groin (most common in men)
+76716,tinea_pedis athlete's_foot,fungal infection of the feet
+76717,tinea_unguium,fungal infection of the nails (especially toenails)
+76718,tineid tineid_moth,small yellowish moths whose larvae feed on wool or fur
+76719,tineoid tineoid_moth,small dull-colored moth with chewing mouthparts
+76720,tinfoil tin_foil,foil made of tin or an alloy of tin and lead
+76721,ting tinkle,a light clear metallic sound as of a small bell
+76722,tinker,formerly a person (traditionally a Gypsy) who traveled from place to place mending pots and kettles and other metal utensils as a way to earn a living
+76723,tinker tinkerer,a person who enjoys fixing and experimenting with machines and their parts
+76724,tinkerer fiddler,an unskilled person who tries to fix or mend
+76725,tinning,the application of a thin layer of soft solder to the ends of wires before soldering them; "careful tinning of the ends of wires results in a better joint when you solder them"
+76726,tinning tin-plating,the application of a protective layer of tin
+76727,tinnitus,a ringing or booming sensation in one or both ears; a symptom of an ear infection or Meniere's disease
+76728,tinsel,a showy decoration that is basically valueless; "all the tinsel of self-promotion"
+76729,tinsel,a thread with glittering metal foil attached
+76730,tinsmith tinner,someone who makes or repairs tinware
+76731,tintack,tack or small nail of tinned iron
+76732,tinter,a hairdresser who tints hair
+76733,tinting,the act of adding a tinge of color; "the hairdresser gave her hair a modest tinting"
+76734,tinware,articles of commerce made of tin plate
+76735,tip,the extreme end of something; especially something pointed
+76736,tip lead steer confidential_information wind hint,an indication of potential opportunity; "he got a tip on the stock market"; "a good lead for a job"
+76737,tip-off,inside information that something is going to happen
+76738,tip-off tap-off,the act of starting a basketball game with a jump ball
+76739,tip_in,a basketball shot made by tapping the rebounding ball back into the basket
+76740,tip_sheet,a publication containing the latest information or tips or predictions for a particular business or stock market information or horse racing results, etc.
+76741,tipper,a person who leaves a tip; "a generous tipper"
+76742,tippet,a woman's fur shoulder cape with hanging ends; often consisting of the whole fur of a fox or marten
+76743,tippler social_drinker,someone who drinks liquor repeatedly in small quantities
+76744,tipstaff,staff with a metal tip carried as a sign of office by e.g. a bailiff or constable
+76745,tipster tout,one who sells advice about gambling or speculation (especially at the racetrack)
+76746,tipsy_cake,a trifle soaked in wine and decorated with almonds and candied fruit
+76747,tiptoe,the tip of a toe
+76748,tiptop,the extreme top or summit
+76749,tipu tipu_tree yellow_jacaranda pride_of_Bolivia,semi-evergreen South American tree with odd-pinnate leaves and golden yellow flowers cultivated as an ornamental
+76750,tirade philippic broadside,a speech of violent denunciation
+76751,tiramisu,an Italian dessert consisting of layers of sponge cake soaked with coffee and brandy or liqueur layered with mascarpone cheese and topped with grated chocolate
+76752,tire tyre,hoop that covers a wheel; "automobile tires are usually made of rubber and filled with compressed air"
+76753,tire_chain snow_chain,chain attached to wheels to increase traction on ice or snow
+76754,tire_iron tire_tool,hand tool consisting of a lever that is used to force the casing of a pneumatic tire onto a steel wheel
+76755,tisane,infusion of e.g. dried or fresh flowers or leaves
+76756,tissue,part of an organism consisting of an aggregate of cells having a similar structure and function
+76757,tissue tissue_paper,a soft thin (usually translucent) paper
+76758,tissue_plasminogen_activator Activase,a thrombolytic agent (trade name Activase) that causes fibrinolysis at the site of a blood clot; used in treating acute myocardial infarction
+76759,tissue_typing,a series of diagnostic tests before an organ transplant to determine whether the tissues of a donor and recipient are compatible
+76760,tit_for_tat,an equivalent given in return
+76761,titanic_acid,a white weak acid that is a hydrated form of titanium dioxide
+76762,titanium Ti atomic_number_22,a light strong grey lustrous corrosion-resistant metallic element used in strong lightweight alloys (as for airplane parts); the main sources are rutile and ilmenite
+76763,titanium_dioxide titanium_oxide titanic_oxide titania,a white powder used as a pigment for its high covering power and durability
+76764,titanosaur titanosaurian,amphibious quadrupedal herbivorous dinosaur with a long thin neck and whiplike tail; of the Cretaceous mostly in the southern hemisphere
+76765,titer titre,the concentration of a solution as determined by titration
+76766,titfer,a hat (Cockney rhyming slang: `tit for tat' rhymes with `hat')
+76767,tithe,a levy of one tenth of something
+76768,tithe,an offering of a tenth part of some personal income
+76769,tithe_barn,barn originally built to hold tithes paid in kind and common in England
+76770,tither,someone who pays tithes
+76771,titi buckwheat_tree Cliftonia_monophylla,tree of low-lying coastal areas of southeastern United States having glossy leaves and racemes of fragrant white flowers
+76772,titi titi_monkey,small South American monkeys with long beautiful fur and long nonprehensile tail
+76773,titillation,a tingling feeling of excitement (as from teasing or tickling)
+76774,titillation,an agreeable arousal
+76775,titivation tittivation,sprucing up; making decorative additions to
+76776,title,a general or descriptive heading for a section of a written work; "the novel had chapter titles"
+76777,title,(usually plural) written material introduced into a movie or TV show to give credits or represent dialogue or explain an action; "the titles go by faster than I can read"
+76778,title,the name of a work of art or literary composition etc.; "he looked for books with the word `jazz' in the title"; "he refused to give titles to his paintings"; "I can never remember movie titles"
+76779,title,an appellation signifying nobility; "`your majesty' is the appropriate title to use in addressing a king"
+76780,title claim,an established or recognized right; "a strong legal claim to the property"; "he had no documents confirming his title to his father's estate"; "he staked his claim"
+76781,title statute_title rubric,a heading that names a statute or legislative bill; may give a brief summary of the matters it deals with; "Title 8 provided federal help for schools"
+76782,title title_of_respect form_of_address,an identifying appellation signifying status or function: e.g. `Mr.' or `General'; "the professor didn't like his friends to use his formal title"
+76783,title_bar,(computer science) a horizontal label at the top of a window, bearing the name of the currently active document
+76784,title_deed,a legal document proving a person's right to property
+76785,title_page,a page of a book displaying the title and author and publisher
+76786,title_role name_part,the role of the character after whom the play is named
+76787,titmouse tit,small insectivorous birds
+76788,titration,a measured amount of a solution of unknown concentration is added to a known volume of a second solution until the reaction between them is just complete; the concentration of the unknown solution (the titer) can then be calculated
+76789,titrator,an apparatus for performing a titration
+76790,titter,a nervous restrained laugh
+76791,titterer giggler,a person who laughs nervously
+76792,tiyin,100 tiyin equal 1 som in Uzbekistan
+76793,tiyin,100 tiyin equal 1 tenge in Kazakhstan
+76794,to_leeward leeward_side,the side sheltered from the wind
+76795,toad-in-the-hole,sausage baked in batter
+76796,toad_lily Montia_chamissoi,a floating or creeping Indian lettuce having terminal racemes of pale rose flowers; wet areas at high elevations of western North America
+76797,toad_rush Juncus_bufonius,low-growing annual rush of damp low-lying ground; nearly cosmopolitan
+76798,toadfish Opsanus_tau,bottom-dwelling fish having scaleless slimy skin and a broad thick head with a wide mouth
+76799,toadflax butter-and-eggs wild_snapdragon devil's_flax Linaria_vulgaris,common European perennial having showy yellow and orange flowers; a naturalized weed in North America
+76800,toadstool,common name for an inedible or poisonous agaric (contrasting with the edible mushroom)
+76801,toast,a celebrity who receives much acclaim and attention; "he was the toast of the town"
+76802,toast,slices of bread that have been toasted
+76803,toast_mistress,a woman toastmaster
+76804,toaster,a kitchen appliance (usually electric) for toasting bread
+76805,toaster wassailer,someone who proposes a toast; someone who drinks to the health of success of someone or some venture
+76806,toaster_oven,kitchen appliance consisting of a small electric oven for toasting or warming food
+76807,toasting browning,cooking to a brown crispiness over a fire or on a grill; "proper toasting should brown both sides of a piece of bread"
+76808,toasting_fork,long-handled fork for cooking or toasting frankfurters or bread etc. (especially over an open fire)
+76809,toastmaster symposiarch,the person who proposes toasts and introduces speakers at a banquet
+76810,toastrack,a rack for holding slices of toast
+76811,tobacco baccy,leaves of the tobacco plant dried and prepared for smoking or ingestion
+76812,tobacco tobacco_plant,aromatic annual or perennial herbs and shrubs
+76813,tobacco_hornworm tomato_worm Manduca_sexta,large green white-striped hawkmoth larva that feeds on tobacco and related plants; similar to tomato hornworm
+76814,tobacco_industry,an industry that manufactures and sells products containing tobacco
+76815,tobacco_juice,saliva colored brown by tobacco (snuff or chewing tobacco)
+76816,tobacco_mildew Peronospora_hyoscyami,fungus causing a downy mildew on growing tobacco
+76817,tobacco_mosaic,a plant disease causing discoloration of the leaves of tobacco plants
+76818,tobacco_mosaic_virus TMV,the widely studied plant virus that causes tobacco mosaic; it was the first virus discovered (1892)
+76819,tobacco_moth cacao_moth Ephestia_elutella,small moth whose larvae feed on tobacco and other dried plant products
+76820,tobacco_pouch,a pouch for carrying pipe tobacco
+76821,tobacco_shop tobacconist_shop tobacconist,a shop that sells pipes and pipe tobacco and cigars and cigarettes
+76822,tobacco_thrips Frankliniella_fusca,injurious to growing tobacco and peanuts
+76823,tobacconist,a retail dealer in tobacco and tobacco-related articles
+76824,toboggan,a long narrow sled without runners; boards curve upward in front
+76825,tobogganing,riding on a long light sled with low handrails
+76826,tobogganist,someone who rides a toboggan
+76827,tobramycin Nebcin,an antibiotic (trade name Nebcin) that is especially effective against Gram-negative bacteria
+76828,toby toby_jug toby_fillpot_jug,a drinking mug in the shape of a stout man wearing a three-cornered hat
+76829,tocainide Tonocard,antiarrhythmic drug (trade name Tonocard) used to treat ventricular arrhythmias when less dangerous drugs have failed
+76830,toccata,a baroque musical composition (usually for a keyboard instrument) with full chords and rapid elaborate runs in a rhythmically free style
+76831,tocsin alarm_bell,the sound of an alarm (usually a bell)
+76832,tocsin warning_bell,a bell used to sound an alarm
+76833,tod,a unit of weight for wool equal to about 28 pounds
+76834,today,the present time or age; "the world of today"; "today we have computers"
+76835,today,the day that includes the present moment (as opposed to yesterday or tomorrow); "Today is beautiful"; "did you see today's newspaper?"
+76836,toddler yearling tot bambino,a young child
+76837,tody,tiny insectivorous West Indian bird having red-and-green plumage and a long straight bill
+76838,toe,forepart of a hoof
+76839,toe,one of the digits of the foot
+76840,toe,(golf) the part of a clubhead farthest from the shaft
+76841,toe,the part of footwear that provides a covering for the toes
+76842,toe-in,the alignment of the front wheels of a motor vehicle closer together at the front than at the back
+76843,toe_box,the forward tip of the upper of a shoe or boot that provides space and protection for the toes; "the toe box may be rounded or pointed"
+76844,toe_crack,a crack on the forepart of a horse's hindfoot
+76845,toe_dancing toe_dance,a dance performed on tiptoe
+76846,toea,100 toea equal 1 kina in Papua New Guinea
+76847,toecap,a protective leather or steel cover for the toe of a boot or shoe, reinforcing or decorating it
+76848,toehold,a relatively insignificant position from which future progress might be made; "American diplomacy provided a toehold on which to proceed toward peace talks"; "his father gave him a toehold in the oil business"
+76849,toehold,a small foothold used in climbing
+76850,toehold,a wrestling hold in which the toe is held and the leg is twisted against the joints
+76851,toenail,the nail at the end of a toe
+76852,toetoe toitoi Arundo_conspicua Chionochloa_conspicua,used by Maoris for thatching
+76853,toff nob,informal term for an upper-class or wealthy person
+76854,toga,a one-piece cloak worn by men in ancient Rome
+76855,toga_virilis,(ancient Rome) a toga worn by a youth as a symbol of manhood and citizenship
+76856,togetherness,affectionate closeness; "togetherness is the new wonder ingredient in marriage"
+76857,toggle,any instruction that works first one way and then the other; it turns something on the first time it is used and then turns it off the next time
+76858,toggle,a fastener consisting of a peg or pin or crosspiece that is inserted into an eye at the end of a rope or a chain or a cable in order to fasten it to something (as another rope or chain or cable)
+76859,toggle_bolt,a fastener consisting of a threaded bolt and a hinged spring-loaded toggle; used to fasten objects to hollow walls
+76860,toggle_joint,a joint made by two arms attached by a pivot; used to apply pressure at the two ends by straightening the joint
+76861,toggle_switch toggle on-off_switch on/off_switch,a hinged switch that can assume either of two positions
+76862,togs threads duds,informal terms for clothing
+76863,toiler,one who works strenuously
+76864,toilet can commode crapper pot potty stool throne,a plumbing fixture for defecation and urination
+76865,toilet lavatory lav can john privy bathroom,a room or building equipped with one or more toilets
+76866,toilet toilette,the act of dressing and preparing yourself; "he made his morning toilet and went to breakfast"
+76867,toilet_bag sponge_bag,a waterproof bag for holding bathrooms items (soap and toothpaste etc.) when you are travelling
+76868,toilet_bowl,the bowl of a toilet that can be flushed with water
+76869,toilet_kit travel_kit,a kit for carrying toilet articles while traveling
+76870,toilet_powder bath_powder dusting_powder,a fine powder for spreading on the body (as after bathing)
+76871,toilet_roll,a roll of toilet paper
+76872,toilet_seat,the hinged seat on a toilet
+76873,toilet_soap face_soap bath_soap,soap used as a toiletry
+76874,toilet_tissue toilet_paper bathroom_tissue,a soft thin absorbent paper for use in toilets
+76875,toilet_training,training a young child to use the toilet
+76876,toilet_water eau_de_toilette,a perfumed liquid lighter than cologne
+76877,toiletry toilet_articles,artifacts used in making your toilet (washing and taking care of your body)
+76878,tokamak,a doughnut-shaped chamber used in fusion research; a plasma is heated and confined in a magnetic bottle
+76879,toke,a puff of a marijuana or hashish cigarette; "the boys took a few tokes on a joint"
+76880,token,something serving as a sign of something else
+76881,token,a metal or plastic disk that can be redeemed or used in designated slot machines
+76882,token item,an individual instance of a type of symbol; "the word `error' contains three tokens of `r'"
+76883,token_economy,a form of behavior therapy that has been used in some mental institutions; patients are rewarded with tokens for appropriate behavior and the tokens may be cashed in for valued rewards
+76884,token_money,coins of regular issue whose face value is greater than their intrinsic value
+76885,token_payment,a small payment made in acknowledgement of an obligation
+76886,tolazamide Tolinase,a drug (trade name Tolinase) used in treating stable adult-onset diabetes mellitus
+76887,tolazoline,vasodilator that is used to treat spasms of peripheral blood vessels (as in acrocyanosis)
+76888,tolbutamide Orinase,sulfonylurea; an oral antidiabetic drug (trade name Orinase) used in the treatment of adult-onset diabetes mellitus
+76889,tole,enameled or lacquered metalware (usually gilded and elaborately painted); popular in the 18th century; "the Pennsylvania Dutch tole watering can might be a reproduction but it looks convincing"
+76890,tolerance,willingness to recognize and respect the beliefs or practices of others
+76891,tolerance,the power or capacity of an organism to tolerate unfavorable environmental conditions
+76892,tolerance,the act of tolerating something
+76893,toleration,official recognition of the right of individuals to hold dissenting opinions (especially in religion)
+76894,toleration acceptance sufferance,a disposition to tolerate or accept people or situations; "all people should practice toleration and live together in peace"
+76895,toll,a fee levied for the use of roads or bridges (used for maintenance)
+76896,toll_bridge,a bridge where toll is charged for crossing
+76897,toll_call,a long-distance telephone call at charges above a local rate
+76898,toll_line,a telephone line for long-distance calls
+76899,toll_plaza,an area where tollbooths are located
+76900,tollbooth tolbooth tollhouse,a booth at a tollgate where the toll collector collects tolls
+76901,toller bell_ringer ringer,a person who rings church bells (as for summoning the congregation)
+76902,tollgate tollbar,a gate or bar across a toll bridge or toll road which is lifted when the toll is paid
+76903,tollkeeper tollman tollgatherer toll_collector toll_taker toll_agent toller,someone employed to collect tolls
+76904,tolmetin_sodium Tolectin,a nonsteroidal anti-inflammatory drug (trade name Tolectin)
+76905,tolu balsam_of_tolu tolu_balsam,aromatic yellowish brown balsam from the tolu balsam tree used especially in cough syrups
+76906,tolu_tree tolu_balsam_tree Myroxylon_balsamum Myroxylon_toluiferum,medium-sized tropical American tree yielding tolu balsam and a fragrant hard wood used for high-grade furniture and cabinetwork
+76907,toluene methylbenzene,a colorless flammable liquid obtained from petroleum or coal tar; used as a solvent for gums and lacquers and in high-octane fuels
+76908,toluic_acid,an isomeric acid derived from toluene
+76909,tom tomcat,male cat
+76910,tomahawk hatchet,weapon consisting of a fighting ax; used by North American Indians
+76911,tomalley,edible greenish substance in boiled lobster
+76912,tomatillo husk_tomato Mexican_husk_tomato,small edible yellow to purple tomato-like fruit enclosed in a bladderlike husk
+76913,tomatillo jamberry Mexican_husk_tomato Physalis_ixocarpa,annual of Mexico and southern United States having edible purplish viscid fruit resembling small tomatoes
+76914,tomatillo miltomate purple_ground_cherry jamberry Physalis_philadelphica,Mexican annual naturalized in eastern North America having yellow to purple edible fruit resembling small tomatoes
+76915,tomato,mildly acid red or yellow pulpy fruit eaten as a vegetable
+76916,tomato love_apple tomato_plant Lycopersicon_esculentum,native to South America; widely cultivated in many varieties
+76917,tomato_blight tomato_yellows,a disease of tomato plants
+76918,tomato_concentrate,a concentrated form of tomatoes
+76919,tomato_hornworm potato_worm Manduca_quinquemaculata,large green white-striped hawkmoth larva that feeds on tomato and potato plants; similar to tobacco hornworm
+76920,tomato_juice,the juice of tomatoes (usually bottled or canned)
+76921,tomato_paste,thick concentrated tomato puree
+76922,tomato_sauce,sauce made with a puree of tomatoes (or strained tomatoes) with savory vegetables and other seasonings; can be used on pasta
+76923,tomato_streak,disease of a wide range of plants (tomatoes, potatoes, peas) resulting from a mixed infection of potato and tomato mosaic
+76924,tombac tombak tambac,an alloy of copper and zinc (and sometimes arsenic) used to imitate gold in cheap jewelry and for gilding
+76925,tombola,a lottery in which tickets are drawn from a revolving drum
+76926,tomboy romp hoyden,a girl who behaves in a boyish manner
+76927,tome,a (usually) large and scholarly book
+76928,tomentum tomentum_cerebri,a network of tiny blood vessels between the cerebral surface of the pia mater and the cerebral cortex
+76929,tomograph,X-ray machine in which a computer builds a detailed image of a particular plane through an object from multiple X-ray measurements
+76930,tomorrow,the near future; "tomorrow's world"; "everyone hopes for a better tomorrow"
+76931,tomorrow,the day after today; "what are our tasks for tomorrow?"
+76932,tomtate Haemulon_aurolineatum,found off the West Indies and Florida
+76933,tone,the quality of something (an act or a piece of writing) that reveals the attitudes and presuppositions of the author; "the general tone of articles appearing in the newspapers is that the government should withdraw"; "from the tone of her behavior I gathered that I had outstayed my welcome"
+76934,tone,(linguistics) a pitch or change in pitch of the voice that serves to distinguish words in tonal languages; "the Beijing dialect uses four tones"
+76935,tone pure_tone,a steady sound without overtones; "they tested his hearing with pure tones of different frequencies"
+76936,tone tone_of_voice,the quality of a person's voice; "he began in a conversational tone"; "he spoke in a nervous tone of voice"
+76937,tone whole_tone step whole_step,a musical interval of two semitones
+76938,tone_arm pickup pickup_arm,mechanical device consisting of a light balanced arm that carries the cartridge
+76939,tone_deafness tin_ear,an inability to distinguish differences in pitch
+76940,tone_language tonal_language,a language in which different tones distinguish different meanings
+76941,tone_system tonal_system,the system of tones used in a particular language or dialect of a tone language
+76942,toner,a solution containing chemicals that can change the color of a photographic print
+76943,toner,a black or colored powder used in a printer to develop a xerographic image
+76944,toner,a lotion for cleansing the skin and contracting the pores
+76945,tongs pair_of_tongs,any of various devices for taking hold of objects; usually have two hinged legs with handles above and pointed hooks below
+76946,tongue,the tongue of certain animals used as meat
+76947,tongue,a manner of speaking; "he spoke with a thick tongue"; "she has a glib tongue"
+76948,tongue,the flap of material under the laces of a shoe or boot
+76949,tongue knife,any long thin projection that is transient; "tongues of flame licked at the walls"; "rifles exploded quick knives of fire into the dark"
+76950,tongue lingua glossa clapper,a mobile mass of muscular tissue covered with mucous membrane and located in the oral cavity
+76951,tongue_and_groove_joint,a mortise joint made by fitting a projection on the edge of one board into a matching groove on another board
+76952,tongue_depressor,a thin depressor used to press the tongue down during an examination of the mouth and throat
+76953,tongue_tie ankyloglossia,a congenital anomaly in which the mucous membrane under the tongue is too short limiting the mobility of the tongue
+76954,tongue_twister,an expression that is difficult to articulate clearly; "`rubber baby buggy bumper' is a tongue twister"
+76955,tongue_worm pentastomid,wormlike arthropod having two pairs of hooks at the sides of the mouth; parasitic in nasal sinuses of mammals
+76956,tonguefish tongue-fish,left-eyed marine flatfish whose tail tapers to a point; of little commercial value
+76957,tongueflower tongue-flower,orchid having blue to purple flowers with tongue-shaped or strap-shaped protuberances (calli) at the lip base
+76958,tongueless_frog,almost completely aquatic frog native to Africa and Panama and northern South America
+76959,tonic keynote,(music) the first note of a diatonic scale
+76960,tonic restorative,a medicine that strengthens and invigorates
+76961,tonic tonic_water quinine_water,lime- or lemon-flavored carbonated water containing quinine
+76962,tonic_accent pitch_accent,emphasis that results from pitch rather than loudness
+76963,tonic_epilepsy,epilepsy in which the body is rigid during the seizure
+76964,tonic_key home_key,the basic key in which a piece of music is written
+76965,tonic_solfa solfa,a system of solmization using the solfa syllables: do, re, mi, fa, sol, la, ti
+76966,tonicity tonus tone,the elastic tension of living muscles, arteries, etc. that facilitate response to stimuli; "the doctor tested my tonicity"
+76967,tonight,the present or immediately coming night
+76968,tonka_bean coumara_nut,fragrant black nutlike seeds of the tonka bean tree; used in perfumes and medicines and as a substitute for vanilla
+76969,tonka_bean tonka_bean_tree Coumarouna_odorata Dipteryx_odorata,tall tropical South American tree having pulpy egg-shaped pods of fragrant black almond-shaped seeds used for flavoring
+76970,tonnage tunnage tonnage_duty,a tax imposed on ships that enter the US; based on the tonnage of the ship
+76971,tonometer,measuring instrument for measuring tension or pressure (especially for measuring intraocular pressure in testing for glaucoma)
+76972,tonometry,the measurement of intraocular pressure by determining the amount of force needed to make a slight indentation in the cornea
+76973,tons dozens heaps lots piles scores stacks loads rafts slews wads oodles gobs scads lashings,a large number or amount; "made lots of new friends"; "she amassed stacks of newspapers"
+76974,tonsil palatine_tonsil faucial_tonsil tonsilla,either of two masses of lymphatic tissue one on each side of the oral pharynx
+76975,tonsillectomy,surgical removal of the palatine tonsils; commonly performed along with adenoidectomy
+76976,tonsillitis,inflammation of the tonsils (especially the palatine tonsils)
+76977,tonsure,the shaved crown of a monk's or priest's head
+76978,tonsure,shaving the crown of the head by priests or members of a monastic order
+76979,tontine,an annuity scheme wherein participants share certain benefits and on the death of any participant his benefits are redistributed among the remaining participants; can run for a fixed period of time or until the death of all but one participant
+76980,tontine tontine_insurance,a form of life insurance whereby on the death or default of a participant his share is distributed to the remaining members
+76981,tool,an implement used in the practice of a vocation
+76982,tool-and-die_work,the craft of making special tools and dies
+76983,tool_bag,a bag in which tools are carried
+76984,tool_steel,alloy steel that is suitable for making tools; is hard and tough and can retain a cutting edge
+76985,toolbox tool_chest tool_cabinet tool_case,a box or chest or cabinet for holding hand tools
+76986,toolmaker,someone skilled in making or repairing tools
+76987,toolshed toolhouse,a shed for storing tools
+76988,toot,a blast of a horn
+76989,tooth,hard bonelike structures in the jaws of vertebrates; used for biting and chewing or for attack and defense
+76990,tooth,one of a number of uniform projections on a gear
+76991,tooth,something resembling the tooth of an animal
+76992,tooth,toothlike structure in invertebrates found in the mouth or alimentary canal or on a shell
+76993,tooth,a means of enforcement; "the treaty had no teeth in it"
+76994,tooth_fairy,a fairy that is said to leave money at night under a child's pillow to compensate for a baby tooth falling out
+76995,tooth_fungus,a fungus of the family Hydnaceae
+76996,tooth_powder toothpowder,a dentifrice in the form of a powder
+76997,tooth_shell tusk_shell,any of various seashore mollusks having a tapering tubular shell open at each end and a foot pointed like a spade for burrowing
+76998,tooth_socket alveolus,a bony socket in the alveolar ridge that holds a tooth
+76999,toothache odontalgia,an ache localized in or around a tooth
+77000,toothache_tree sea_ash Zanthoxylum_americanum Zanthoxylum_fraxineum,small deciduous aromatic shrub (or tree) having spiny branches and yellowish flowers; eastern North America
+77001,toothbrush,small brush; has long handle; used to clean teeth
+77002,toothbrush_tree mustard_tree Salvadora_persica,glabrous or pubescent evergreen shrub or tree of the genus Salvadora; twigs are fibrous and in some parts of the world are bound together in clusters and used as a toothbrush; shoots are used as camel fodder; plant ash provides salt
+77003,toothed_spurge Euphorbia_dentata,an annual weed of northeastern North America with dentate leaves
+77004,toothed_whale,any of several whales having simple conical teeth and feeding on fish etc.
+77005,toothpaste,a dentifrice in the form of a paste
+77006,toothpick,pick consisting of a small strip of wood or plastic; used to pick food from between the teeth
+77007,tootle,the sound of casual playing on a musical instrument; "he enjoyed hearing the tootles of their horns as the musicians warmed up"
+77008,top,the upper part of anything; "the mower cuts off the tops of the grass"; "the title should be written at the top of the first page"
+77009,top,the greatest possible intensity; "he screamed at the top of his lungs"
+77010,top,platform surrounding the head of a lower mast
+77011,top,a garment (especially for women) that extends from the shoulders to the waist or hips; "he stared as she buttoned her top"
+77012,top cover,covering for a hole (especially a hole in the top of a container); "he removed the top of the carton"; "he couldn't get the top off of the bottle"; "put the cover back on the kettle"
+77013,top top_of_the_inning,the first half of an inning; while the visiting team is at bat; "a relief pitcher took over in the top of the fifth"
+77014,top top_side upper_side upside,the highest or uppermost side of anything; "put your books on top of the desk"; "only the top side of the box was painted"
+77015,top whirligig teetotum spinning_top,a conical child's plaything tapering to a steel point on which it can be made to spin; "he got a bright red top and string for his birthday"
+77016,top-up,an amount needed to restore something to its former level
+77017,top_banana,the leading comedian in a burlesque show
+77018,top_billing,the advertisement of a star's name at the top of a theatrical poster
+77019,top_brass,the most important persons in a governing body
+77020,top_dressing,a layer of fertilizer or manure not plowed in
+77021,top_fermentation,a violent kind of alcoholic fermentation at a temperature high enough to carry the yeast cells to the top of the fermenting liquid; used in the production of ale; "top fermentation uses a yeast that ferments at higher temperatures than that used for bottom fermentation"
+77022,top_fermenting_yeast,brewer's yeast used in top fermentation of ale
+77023,top_lift,the bottom layer of a heel
+77024,top_of_the_line,the best (most expensive) in a given line of merchandise
+77025,top_quark truth_quark,a hypothetical quark with a charge of +2/3 and a mass more than 100,000 times that of an electron
+77026,top_round,roast cut from the round; usually suitable for roasting
+77027,topaz,a mineral (fluosilicate of aluminum) that occurs in crystals of various colors and is used as a gemstone
+77028,topaz false_topaz common_topaz,a yellow quartz
+77029,topgallant topgallant_mast,a mast fixed to the head of a topmast on a square-rigged vessel
+77030,topgallant topgallant_sail,a sail set on a yard of a topgallant mast
+77031,tophus chalkstone,a deposit of urates around a joint or in the external ear; diagnostic of advanced or chronic gout
+77032,topiary,a garden having shrubs clipped or trimmed into decorative shapes especially of animals
+77033,topiary,making decorative shapes by trimming shrubs or trees
+77034,topic subject issue matter,some situation or event that is thought about; "he kept drifting off the topic"; "he had been thinking about the subject for several years"; "it is a matter for the police"
+77035,topic_sentence,a sentence that states the topic of its paragraph
+77036,topical_anesthesia topical_anaesthesia,loss of sensation confined to the skin or mucous surfaces (as when benzocaine or Lidocaine is applied to the surface)
+77037,topical_prostaglandin_eyedrop,a treatment for glaucoma; the eyedrops increase the outflow of aqueous humor through the uveoscleral pathway
+77038,topicality,the attribute of being of interest at the present time; "the library had to discard books that had lost their topicality"
+77039,topicalization,(linguistics) emphasis placed on the topic or focus of a sentence by preposing it to the beginning of the sentence; placing the topic at the beginning of the sentence is typical for English; "`Those girls, they giggle when they see me' and `Cigarettes, you couldn't pay me to smoke them' are examples of topicalization"
+77040,topknot,headdress consisting of a decorative ribbon or bow worn in the hair
+77041,topknot,showy crest or knot of hair or feathers
+77042,topmast,the mast next above a lower mast and topmost in a fore-and-aft rig
+77043,topminnow poeciliid_fish poeciliid live-bearer,small usually brightly-colored viviparous surface-feeding fishes of fresh or brackish warm waters; often used in mosquito control
+77044,topognosia topognosis,recognition of the location of a stimulus on the skin
+77045,topographic_point place spot,a point located with respect to surface features of some region; "this is a nice place for a picnic"; "a bright spot on a planet"
+77046,topography,precise detailed study of the surface features of a region
+77047,topography,the configuration of a surface and the relations among its man-made and natural features
+77048,topolatry place-worship,the worship of places
+77049,topology,topographic study of a given place (especially the history of the place as indicated by its topography); "Greenland's topology has been shaped by the glaciers of the ice age"
+77050,topology analysis_situs,the branch of pure mathematics that deals only with the properties of a figure X that hold for every figure into which X can be transformed with a one-to-one correspondence that is continuous in both directions
+77051,topology network_topology,the configuration of a communication network
+77052,toponymy toponomy,the nomenclature of regional anatomy
+77053,toponymy toponomy,the branch of lexicology that studies the place names of a region or a language
+77054,topos,a traditional theme or motif or literary convention; "James Joyce uses the topos of the Wandering Jew in his Ulysses"
+77055,topper,a worker who makes or adds the top to something
+77056,topper,a worker who cuts tops off (of trees or vegetables etc.)
+77057,topper,an exceedingly good witticism that surpasses all that have gone before
+77058,topper,a woman's short coat
+77059,topping,a flavorful addition on top of a dish
+77060,topsail,a sail (or either of a pair of sails) immediately above the lowermost sail of a mast and supported by a topmast
+77061,topside,(usually plural) weather deck; the part of a ship's hull that is above the waterline
+77062,topsoil surface_soil,the layer of soil on the surface
+77063,topspin,forward spin (usually of a moving ball) that is imparted by an upward stroke
+77064,toque,a tall white hat with a pouched crown; worn by chefs
+77065,tor,a prominent rock or pile of rocks on a hill
+77066,tor,a high rocky hill
+77067,torch,a light usually carried in the hand; consists of some flammable substance
+77068,torch_race,(ancient Greece) in which a torch is passed from one runner to the next
+77069,torch_singer,a singer (usually a woman) who specializes in singing torch songs
+77070,torch_song,a popular song concerned with disappointment in love
+77071,torchbearer,a leader in a campaign or movement
+77072,torchlight,light from a torch or torches
+77073,torero,a matador or one of the supporting team during a bull fight
+77074,tormenter tormentor teaser,a flat at each side of the stage to prevent the audience from seeing into the wings
+77075,tormentor tormenter persecutor,someone who torments
+77076,tornado twister,a localized and violently destructive windstorm occurring over land characterized by a funnel-shaped cloud extending toward the ground
+77077,toroid,the doughnut-shaped object enclosed by a torus
+77078,torpedo,an explosive device that is set off in an oil well (or a gas well) to start or to increase the flow of oil (or gas)
+77079,torpedo,a small firework that consists of a percussion cap and some gravel wrapped in paper; explodes when thrown forcefully against a hard surface
+77080,torpedo,a small explosive device that is placed on a railroad track and fires when a train runs over it; the sound of the explosion warns the engineer of danger ahead
+77081,torpedo,armament consisting of a long cylindrical self-propelled underwater projectile that detonates on contact with a target
+77082,torpedo-boat_destroyer,small destroyer that was the forerunner of modern destroyers; designed to destroy torpedo boats
+77083,torpedo_boat,small high-speed warship designed for torpedo attacks in coastal waters
+77084,torpedo_tube,a tube near the waterline of a vessel through which a torpedo is fired
+77085,torpor torpidity,a state of motor and mental inactivity with a partial suspension of sensibility; "he fell into a deep torpor"
+77086,torque_converter,converter for transmitting and amplifying torque (especially by hydraulic means)
+77087,torque_wrench,a wrench that has a gauge that indicates the amount of torque being applied
+77088,torr millimeter_of_mercury mm_Hg,a unit of pressure equal to 0.001316 atmosphere; named after Torricelli
+77089,torrent violent_stream,a violently fast stream of water (or other liquid); "the houses were swept away in the torrent"
+77090,torridity,extreme heat
+77091,torsion torque,a twisting force
+77092,torsion_balance,measuring instrument designed to measure small forces by the torsion they exert on a thin wire
+77093,torso trunk body,the body excluding the head and neck and limbs; "they moved their arms and legs and bodies"
+77094,tort civil_wrong,(law) any wrongdoing for which an action for damages may be brought
+77095,tort-feasor tortfeasor,a party who has committed a tort
+77096,torte,rich cake usually covered with cream and fruit or nuts; originated in Austria
+77097,tortellini,small ring-shaped stuffed pasta
+77098,torticollis wryneck,an unnatural condition in which the head leans to one side because the neck muscles on that side are contracted
+77099,tortilla,thin unleavened pancake made from cornmeal or wheat flour
+77100,tortilla_chip,a small piece of tortilla
+77101,tortoise,usually herbivorous land turtles having clawed elephant-like limbs; worldwide in arid area except Australia and Antarctica
+77102,tortoiseshell,the mottled horny substance of the shell of some turtles
+77103,tortoiseshell tortoiseshell-cat calico_cat,a cat having black and cream-colored and yellowish markings
+77104,tortoiseshell tortoiseshell_butterfly,brilliantly colored; larvae feed on nettles
+77105,tortricid tortricid_moth,any of numerous small moths having lightly fringed wings; larvae are leaf rollers or live in fruits and galls
+77106,tortuosity tortuousness torsion contortion crookedness,a tortuous and twisted shape or position; "they built a tree house in the tortuosities of its boughs"; "the acrobat performed incredible contortions"
+77107,torture torment,unbearable physical pain
+77108,torture torturing,the deliberate, systematic, or wanton infliction of physical or mental suffering by one or more persons in an attempt to force another person to yield information or to make a confession or for any other reason; "it required unnatural torturing to extract a confession"
+77109,torture_chamber,a room in which torture is inflicted
+77110,torturer,someone who inflicts severe physical pain (usually for punishment or coercion)
+77111,torus tore,commonly the lowest molding at the base of a column
+77112,torus toroid,a ring-shaped surface generated by rotating a circle around an axis that does not intersect the circle
+77113,toss,an abrupt movement; "a toss of his head"
+77114,tossed_salad,salad tossed with a dressing
+77115,tosser,someone who throws lightly (as with the palm upward)
+77116,tosser jerk-off wanker,terms of abuse for a masturbator
+77117,tossup toss-up even_chance,an unpredictable phenomenon; "it's a toss-up whether he will win or lose"
+77118,tostada,a flat tortilla with various fillings piled on it
+77119,tostada,a crisp flat tortilla
+77120,tot,a small amount (especially of a drink); "a tot of rum"
+77121,total_darkness lightlessness blackness pitch_blackness black,total absence of light; "they fumbled around in total darkness"; "in the black of night"
+77122,total_depravity,the Calvinist doctrine that everyone is born in a state of corruption as a result of original sin
+77123,total_eclipse,an eclipse as seen from a place where the eclipsed body is completely obscured
+77124,total_hysterectomy,surgical removal of the uterus and cervix
+77125,total_parenteral_nutrition TPN hyperalimentation,administration of a nutritionally adequate solution through a catheter into the vena cava; used in cases of long-term coma or severe burns or severe gastrointestinal syndromes
+77126,totalitarian,an adherent of totalitarian principles or totalitarian government
+77127,totalitarian_state totalitation_regime,a government that subordinates the individual to the state and strictly controls all aspects of life by coercive measures
+77128,totality,the quality of being complete and indiscriminate; "the totality of war and its consequences"; "the all-embracing totality of the state"
+77129,totara Podocarpus_totara,valuable timber tree of New Zealand yielding hard reddish wood used for furniture and bridges and wharves
+77130,totem,a clan or tribe identified by their kinship to a common totemic object
+77131,totem,emblem consisting of an object such as an animal or plant; serves as the symbol of a family or clan (especially among American Indians)
+77132,totem_pole,a tribal emblem consisting of a pillar carved and painted with totemic figures; erected by Indian tribes of the northwest Pacific coast
+77133,totemism,belief in the kinship of a group of people with a common totem
+77134,totemist,a person who belongs to a clan or tribe having a totem
+77135,totipotency totipotence,the ability of a cell to give rise to unlike cells and so to develop a new organism or part; "animal cells lose their totipotency at an early stage in embryonic development"
+77136,toucan,brilliantly colored arboreal fruit-eating bird of tropical America having a very large thin-walled beak
+77137,toucanet,small toucan
+77138,touch,the act of soliciting money (as a gift or loan); "he watched the beggar trying to make a touch"
+77139,touch,deftness in handling matters; "he has a master's touch"
+77140,touch,the feel of mechanical action; "this piano has a wonderful touch"
+77141,touch hint tinge mite pinch jot speck soupcon,a slight but appreciable amount; "this dish could use a touch of garlic"
+77142,touch sense_of_touch skin_senses touch_modality cutaneous_senses,the faculty by which external objects or forces are perceived through contact with the body (especially the hands); "only sight and touch enable us to locate objects in the space around us"
+77143,touch signature,a distinguishing style; "this room needs a woman's touch"
+77144,touch spot,a slight attack of illness; "he has a touch of rheumatism"
+77145,touch touch_sensation tactual_sensation tactile_sensation feeling,the sensation produced by pressure receptors in the skin; "she likes the touch of silk on her skin"; "the surface had a greasy feeling"
+77146,touch touching,the event of something coming in contact with the body; "he longed for the touch of her hand"; "the cooling touch of the night air"
+77147,touch touching,the act of putting two things together with no space between them; "at his touch the room filled with lights"
+77148,touch trace ghost,a suggestion of some quality; "there was a touch of sarcasm in his tone"; "he detected a ghost of a smile on her face"
+77149,touch-typist,a skilled typist who can type a document without looking at the keyboard
+77150,touch_football,a version of American football in which the ball carrier is touched rather than tackled
+77151,touch_screen touchscreen,a computer display that enables the user to interact with the computer by touching areas on the screen
+77152,touch_typing touch_system,typewriting in which the fingers are trained to hit particular keys; typist can read and type at the same time
+77153,touchback,(American football) a play in which the opposing team has kicked the football into your end zone
+77154,touchdown,a landing (as the wheels touch the landing field); especially of airplanes
+77155,touchdown,a score in American football; being in possession of the ball across the opponents' goal line
+77156,toucher,a person who causes or allows a part of the body to come in contact with someone or something
+77157,touchline,either of the sidelines in soccer or rugby
+77158,tough_guy plug-ugly,someone who bullies weaker people
+77159,toupee toupe,a small hairpiece to cover partial baldness
+77160,tour circuit,a journey or route all the way around a particular place or area; "they took an extended tour of Europe"; "we took a quick circuit of the park"; "a ten-day coach circuit of the island"
+77161,tour_de_force,a masterly or brilliant feat
+77162,tour_guide,a guide who leads others on a tour
+77163,touraco turaco turacou turakoo,large brightly crested bird of Africa
+77164,touring_car phaeton tourer,large open car seating four with folding top
+77165,tourism touristry,the business of providing services to tourists; "Tourism is a major business in Bermuda"
+77166,tourist tourer holidaymaker,someone who travels for pleasure
+77167,tourist_attraction,a characteristic that attracts tourists
+77168,tourist_class third_class,inexpensive accommodations on a ship or train
+77169,tourmaline,a mineral that is a complex borosilicate and hydroxide of aluminum containing iron and magnesium and calcium and lithium and sodium; it is usually black but occurs in transparent colored forms that are used as gemstones
+77170,tournament,a series of jousts between knights contesting for a prize
+77171,tournament tourney,a sporting competition in which contestants play a series of games to decide the winner
+77172,tournedos,thick steak cut from the beef tenderloin
+77173,tourtiere,a meat pie that is usually eaten at Christmas in Quebec
+77174,tout ticket_tout,someone who buys tickets to an event in order to resell them at a profit
+77175,tout touter,someone who advertises for customers in an especially brazen way
+77176,tout_ensemble,a total impression or effect of something made up of individual parts
+77177,tovarich tovarisch,a comrade (especially in Russian communism)
+77178,tow towage,the act of hauling something (as a vehicle) by means of a hitch or rope; "the truck gave him a tow to the garage"
+77179,tow_truck tow_car wrecker,a truck equipped to hoist and pull wrecked cars (or to remove cars from no-parking zones)
+77180,towel,a rectangular piece of absorbent cloth (or paper) for drying or wiping
+77181,towel_rack towel_horse,a rack consisting of one or more bars on which towels can be hung
+77182,towel_rail towel_bar,a horizontal bar a few inches from a wall for holding towels
+77183,towel_ring,a circular hoop for holding a towel
+77184,toweling towelling,any of various fabrics (linen or cotton) used to make towels
+77185,tower,a structure taller than its diameter; can stand alone or be attached to a larger building
+77186,tower_cress tower_mustard Arabis_turrita,European cress having stiff erect stems; sometimes placed in genus Turritis
+77187,tower_mustard tower_cress Turritis_glabra Arabis_glabra,or genus Arabis: erect cress widely distributed throughout Europe
+77188,tower_of_strength pillar_of_strength,a person who can be relied on to give a great deal of support and comfort
+77189,towhead,a person with light blond hair
+77190,towhee,any of numerous long-tailed American finches
+77191,towline towrope towing_line towing_rope,(nautical) a rope used in towing
+77192,town,an urban area with a fixed boundary that is smaller than a city; "they drive through town on their way to work"
+77193,town townspeople townsfolk,the people living in a municipality smaller than a city; "the whole town cheered the team"
+77194,town_clerk,the official who keeps a town's records
+77195,town_crier crier,(formerly) an official who made public announcements
+77196,town_gas,coal gas manufactured for domestic and industrial use
+77197,town_hall,a government building that houses administrative offices of a town government
+77198,town_meeting,a meeting of the inhabitants of a town
+77199,town_meeting,government of a town by an assembly of the qualified voters
+77200,townee,townsman unacquainted with country life especially a slick and flashy male city dweller
+77201,townie towny,resident of a college town not affiliated with the college
+77202,township town,an administrative division of a county; "the town is responsible for snow removal"
+77203,townsman,a person from the same town as yourself; "a fellow townsman"
+77204,townsman towner,a resident of a town or city
+77205,towpath towing_path,a path along a canal or river used by animals towing boats
+77206,toxemia toxaemia,blood poisoning caused by bacterial toxic substances in the blood
+77207,toxemia_of_pregnancy toxaemia_of_pregnancy toxemia toxaemia,an abnormal condition of pregnancy characterized by hypertension and edema and protein in the urine
+77208,toxic_shock toxic_shock_syndrome TSS,syndrome resulting from a serious acute (sometimes fatal) infection associated with the presence of staphylococcus; characterized by fever and diarrhea and nausea and diffuse erythema and shock; occurs especially in menstruating women using highly absorbent tampons
+77209,toxic_site toxic_waste_area Superfund_site,a site where toxic wastes have been dumped and the Environmental Protection Agency has designated them to be cleaned up
+77210,toxic_waste toxic_industrial_waste,poisonous waste materials; can cause injury (especially by chemical means)
+77211,toxic_waste_dump toxic_waste_site toxic_dumpsite,a location where toxic wastes can be or have been disposed of (often illegally)
+77212,toxicity,the degree to which something is poisonous
+77213,toxicognath,either of a pair of poison fangs in the modified front pair of legs of the centipede
+77214,toxicologist,one who studies the nature and effects of poisons and their treatment
+77215,toxicology,the branch of pharmacology that deals with the nature and effects and treatments of poisons
+77216,toxin,a poisonous substance produced during the metabolism and growth of certain microorganisms and some higher plant and animal species
+77217,toxin_antitoxin,a mixture of toxin and antitoxin used to immunize against a disease
+77218,toxoplasmosis,infection caused by parasites transmitted to humans from infected cats; if contracted by a pregnant woman it can result in serious damage to the fetus
+77219,toy,a nonfunctional replica of something else (frequently used as a modifier); "a toy stove"
+77220,toy,a device regarded as providing amusement; "private airplanes are a rich man's toy"
+77221,toy_Manchester toy_Manchester_terrier,breed of small Manchester terrier
+77222,toy_box toy_chest,chest for storage of toys
+77223,toy_dog toy,any of several breeds of very small dogs kept purely as pets
+77224,toy_industry toy_business,an industry that manufactures and sells toys for children
+77225,toy_poodle,the breed of very small poodles
+77226,toy_soldier,a doll that resembles a soldier
+77227,toy_spaniel,a very small spaniel
+77228,toy_terrier,a small active dog
+77229,toyon tollon Christmasberry Christmas_berry Heteromeles_arbutifolia Photinia_arbutifolia,ornamental evergreen treelike shrub of the Pacific coast of the United States having large white flowers and red berrylike fruits; often placed in genus Photinia
+77230,toyshop,shop where toys are sold
+77231,tra-la tra-la-la,a set of nonsensical syllables used while humming a refrain
+77232,trabecula,rod-shaped structures of fibrous tissue that divide an organ into parts (as in the penis) or stabilize the structure of an organ (as in the spleen)
+77233,trace,a visible mark (as a footprint) left by the passage of person or animal or vehicle
+77234,trace,either of two lines that connect a horse's harness to a wagon or other vehicle or to a whiffletree
+77235,trace hint tint suggestion,a just detectable amount; "he speaks French with a trace of an accent"; "a hint mockery in her manner"; "a tint of glamour"
+77236,trace vestige tincture shadow,an indication that something has been present; "there wasn't a trace of evidence for the claim"; "a tincture of condescension"
+77237,trace_detector,a screening device for traces of explosives; used at airline terminals
+77238,trace_element,an element that occurs at very small quantities in the body but is nonetheless important for many biological processes
+77239,trace_program,a utility program that exhibits the sequence and results of executing the instructions in another program
+77240,tracer,an investigator who is employed to find missing persons or missing goods
+77241,tracer,an instrument used to make tracings
+77242,tracer,(radiology) any radioactive isotope introduced into the body to study metabolism or other biological processes
+77243,tracer tracer_bullet,ammunition whose flight can be observed by a trail of smoke
+77244,tracery,decoration consisting of an open pattern of interlacing ribs
+77245,trachea,one of the tubules forming the respiratory system of most insects and many arachnids
+77246,trachea windpipe,membranous tube with cartilaginous rings that conveys inhaled air from the larynx to the bronchi
+77247,tracheal_vein vena_trachealis,several small veins from the trachea
+77248,tracheid,long tubular cell peculiar to xylem
+77249,tracheitis,inflammation of the trachea
+77250,tracheobronchitis,common respiratory infection characterized by inflammation of the trachea and the bronchi
+77251,tracheostomy tracheotomy,a surgical operation that creates an opening into the trachea with a tube inserted to provide a passage for air; performed when the pharynx is obstructed by edema or cancer or other causes
+77252,trachodon trachodont,large duck-billed dinosaur of the Cretaceous period
+77253,trachoma,a chronic contagious disease caused by a bacterium and marked by inflammation of the conjunctiva and cornea of the eye and the formation of scar tissue
+77254,tracing,the act of drawing a plan or diagram or outline
+77255,tracing,the discovery and description of the course of development of something; "the tracing of genealogies"
+77256,tracing trace,a drawing created by superimposing a semitransparent sheet of paper on the original image and copying on it the lines of the original image
+77257,tracing_paper,a semitransparent paper that is used for tracing drawings
+77258,tracing_routine,a routine that provides a chronological record of the execution of a computer program
+77259,track,a groove on a phonograph recording
+77260,track,a pair of parallel rails providing a runway for wheels
+77261,track cart_track cartroad,any road or path affording passage especially a rough one
+77262,track caterpillar_track caterpillar_tread,an endless metal belt on which tracked vehicles move over the ground
+77263,track data_track,(computer science) one of the circular magnetic paths on a magnetic disk that serve as a guide for writing and reading data
+77264,track rail rails runway,a bar or pair of parallel bars of rolled steel making the railway along which railroad cars or other vehicles can roll
+77265,track running,the act of participating in an athletic competition involving running on a track
+77266,track-to-track_seek_time,(computer science) the time it takes for a read/write head to move to an adjacent data track
+77267,track_and_field,participating in athletic sports performed on a running track or on the field associated with it
+77268,track_event,a footrace performed on a track (indoor or outdoor)
+77269,track_meet,a track and field competition between two or more teams
+77270,track_record,the fastest time ever recorded for a specific distance at a particular racetrack; "the track record for the mile and a half at Belmont is 2 minutes 24 seconds held by Secretariat since 1973"
+77271,track_star,a star runner
+77272,trackball,an electronic device consisting of a rotatable ball in a housing; used to position the cursor and move images on a computer screen; "a trackball is essentially an upside-down mouse"
+77273,tracked_vehicle,a self-propelled vehicle that moves on tracks
+77274,tracker,someone who tracks down game
+77275,tract,a system of body parts that together serve some particular purpose
+77276,tract pamphlet,a brief treatise on a subject of interest; published in the form of a booklet
+77277,tract piece_of_land piece_of_ground parcel_of_land parcel,an extended area of land
+77278,tract_house,one of many houses of similar design constructed together on a tract of land
+77279,tract_housing,housing consisting of similar houses constructed together on a tract of land
+77280,tractability tractableness flexibility,the trait of being easily persuaded
+77281,traction,(orthopedics) the act of pulling on a bone or limb (as in a fracture) to relieve pressure or align parts in a special way during healing; "his leg was in traction for several days"
+77282,traction_engine,steam-powered locomotive for drawing heavy loads along surfaces other than tracks
+77283,tractor,a truck that has a cab but no body; used for pulling large trailers or vans
+77284,tractor,a wheeled vehicle with large wheels; used in farming and other applications
+77285,trad,traditional jazz as revived in the 1950s
+77286,trade,the commercial exchange (buying and selling on domestic or international markets) of goods and services; "Venice was an important center of trade with the East"; "they are accused of conspiring to constrain trade"
+77287,trade craft,the skilled practice of a practical occupation; "he learned his trade as an apprentice"
+77288,trade patronage,the business given to a commercial establishment by its customers; "even before noon there was a considerable patronage"
+77289,trade-in,an item of property that is given in part payment for a new one
+77290,trade-last,a compliment that I heard about you that I offer to trade for a compliment you have heard about me
+77291,trade_acceptance,a bill of exchange for a specific purchase; drawn on the buyer by the seller and bearing the buyer's acceptance
+77292,trade_barrier import_barrier,any regulation or policy that restricts international trade
+77293,trade_bill,a statute that would regulate foreign trade
+77294,trade_book trade_edition,a book intended for general readership
+77295,trade_deficit,an excess of imports over exports
+77296,trade_discount,a discount from the list price of a commodity allowed by a manufacturer or wholesaler to a merchant
+77297,trade_magazine,a magazine published for and read by members of a particular trade group
+77298,trade_name brand_name brand marque,a name given to a product or service
+77299,trade_policy national_trading_policy,a government's policy controlling foreign trade
+77300,trade_route,a route followed by traders (usually in caravans)
+77301,trade_school vocational_school,a secondary school teaching the skilled trades
+77302,trade_secret,a secret (method or device or formula) that gives a manufacturer an advantage over the competition
+77303,trade_unionist unionist union_member,a worker who belongs to a trade union
+77304,trade_wind trade,steady winds blowing from east to west above and below the equator; "they rode the trade winds going west"
+77305,tradecraft,skill acquired through experience in a trade; often used to discuss skill in espionage; "instructional designers are trained in something that might be called tradecraft"; "the CIA chief of station accepted responsibility for his agents' failures of tradecraft"
+77306,trademark,a formally registered symbol identifying the manufacturer or distributor of a product
+77307,tradeoff trade-off,an exchange that occurs as a compromise; "I faced a tradeoff between eating and buying my medicine"
+77308,trader bargainer dealer monger,someone who purchases and maintains an inventory of goods to be sold
+77309,tradescant's_aster,a variety of aster
+77310,tradespeople,people engaged in trade
+77311,trading,buying or selling securities or commodities
+77312,trading_card,a card with a picture on it; collected and traded by children
+77313,trading_stamp,a token resembling a stamp given by a retailer to a buyer; the token is redeemable for articles on a special list
+77314,tradition,an inherited pattern of thought or action
+77315,traditionalism,the doctrine that all knowledge was originally derived by divine revelation and that it is transmitted by traditions
+77316,traditionalism,adherence to tradition (especially in cultural or religious matters)
+77317,traditionalism traditionality,strict adherence to traditional methods or teachings
+77318,traditionalist diehard,one who adheres to traditional views
+77319,traffic,the aggregation of things (pedestrians or vehicles) coming and going in a particular locality during a specified period of time
+77320,traffic,the amount of activity over a communication system during a given period of time; "heavy traffic overloaded the trunk lines"; "traffic on the internet is lightest during the night"
+77321,traffic,buying and selling; especially illicit trade
+77322,traffic_circle circle rotary roundabout,a road junction at which traffic streams circularly around a central island; "the accident blocked all traffic at the rotary"
+77323,traffic_control,control of the flow of traffic in a building or a city
+77324,traffic_cop,a policeman who controls the flow of automobile traffic
+77325,traffic_court,a court that has power to prosecute for traffic offenses
+77326,traffic_island safety_island safety_isle safety_zone,a curbed area in a roadway from which traffic is excluded; provides safe area for pedestrians
+77327,traffic_jam snarl-up,a number of vehicles blocking one another until they can scarcely move
+77328,traffic_lane,a lane of a main road that is defined by painted lines; "that car is in the wrong traffic lane"
+77329,traffic_light traffic_signal stoplight,a visual signal to control the flow of traffic at intersections
+77330,traffic_pattern approach_pattern pattern,the path that is prescribed for an airplane that is preparing to land at an airport; "the traffic patterns around O'Hare are very crowded"; "they stayed in the pattern until the fog lifted"
+77331,tragacanth,a gum used in pharmacy, adhesives, and textile printing
+77332,tragedian,a writer (especially a playwright) who writes tragedies
+77333,tragedian,an actor who specializes in tragic roles
+77334,tragedienne,an actress who specializes in tragic roles
+77335,tragedy,drama in which the protagonist is overcome by some superior force or circumstance; excites terror or pity
+77336,tragic_flaw hamartia,the character flaw or error of a tragic hero that leads to his downfall
+77337,tragicomedy,a dramatic composition involving elements of both tragedy and comedy usually with the tragic predominating
+77338,tragopan,brilliantly colored Asian pheasant having wattles and two fleshy processes on the head
+77339,tragus,a small cartilaginous flap in front of the external opening of the ear
+77340,trail,a track or mark left by something that has passed; "there as a trail of blood"; "a tear left its trail on her cheek"
+77341,trail,a path or track roughly blazed through wild or hilly country
+77342,trail_bike dirt_bike scrambler,a lightweight motorcycle equipped with rugged tires and suspension; an off-road motorcycle designed for riding cross country or over unpaved ground
+77343,trail_boss,the person responsible for driving a herd of cattle
+77344,trail_head trailhead,the beginning of a trail
+77345,trail_riding,riding along a roughly blazed path
+77346,trailblazer,someone who marks a trail by leaving blazes on trees
+77347,trailer,a large transport conveyance designed to be pulled by a truck or tractor
+77348,trailer house_trailer,a wheeled vehicle that can be pulled by a car or truck and is equipped for occupancy
+77349,trailer_camp trailer_park,a camp where space for house trailers can be rented; utilities are generally provided
+77350,trailer_truck tractor_trailer trucking_rig rig articulated_lorry semi,a truck consisting of a tractor and trailer together
+77351,trailing tracking,the pursuit (of a person or animal) by following tracks or marks they left behind
+77352,trailing_arbutus mayflower Epigaea_repens,low-growing evergreen shrub of eastern North America with leathery leaves and clusters of fragrant pink or white flowers
+77353,trailing_edge,the rear edge of an airfoil
+77354,trailing_four_o'clock trailing_windmills Allionia_incarnata,trailing plant having crowded clusters of 3 brilliant deep pink flowers resembling a single flower blooming near the ground; found in dry gravelly or sandy soil; southwestern United States and Mexico
+77355,train,a series of consequences wrought by an event; "it led to a train of disasters"
+77356,train,piece of cloth forming the long back section of a gown that is drawn along the floor; "the bride's train was carried by her two young nephews"
+77357,train railroad_train,public transport provided by a line of railway cars coupled together and drawn by a locomotive; "express trains don't stop at Princeton Junction"
+77358,train_fare,the fare charged for traveling by train
+77359,train_of_thought thread,the connections that link the various parts of an event or argument together; "I couldn't follow his train of thought"; "he lost the thread of his argument"
+77360,train_set,a toy consisting of small models of railroad trains and the track for them to run on
+77361,trainband,a company of militia in England or America from the 16th century to the 18th century
+77362,trainbandsman,a member of a trainband
+77363,trainbearer,one who holds up the train of a gown or robe on a ceremonial occasion
+77364,trainee,someone who is being trained
+77365,traineeship,financial aid that enables you to get trained for a specified job; "the bill provided traineeships in vocational rehabilitation"
+77366,trainer,one who trains other persons or animals
+77367,training preparation grooming,activity leading to skilled behavior
+77368,training_college,a school providing training for a special field or profession
+77369,training_program,a program designed for training in specific skills
+77370,training_school,a school providing practical vocational and technical training
+77371,training_table,planned meals for athletes in training (usually served in a mess hall)
+77372,trainload,quantity that can be carried by a train
+77373,trainman railroader railroad_man railwayman railway_man,an employee of a railroad
+77374,trait,a distinguishing feature of your personal nature
+77375,traitor treasonist,someone who betrays his country by committing treason
+77376,traitress,female traitor
+77377,trajectory flight,the path followed by an object moving through space
+77378,tramcar tram,a four-wheeled wagon that runs on tracks in a mine; "a tramcar carries coal out of a coal mine"
+77379,tramline tramway streetcar_track,the track on which trams or streetcars run
+77380,trammel,an adjustable pothook set in a fireplace
+77381,trammel,a restraint that is used to teach a horse to amble
+77382,trammel_net trammel,a fishing net with three layers; the outer two are coarse mesh and the loose inner layer is fine mesh
+77383,tramontane tramontana,a cold dry wind that blows south out of the mountains into Italy and the western Mediterranean
+77384,tramp,a heavy footfall; "the tramp of military boots"
+77385,tramp hobo bum,a vagrant; "a homeless tramp"; "he tried to help the really down-and-out bums"
+77386,tramp_steamer tramp,a commercial steamer for hire; one having no regular schedule
+77387,trample trampling,the sound of heavy treading or stomping; "he heard the trample of many feet"
+77388,trampler,someone who injures by trampling
+77389,trampoline,gymnastic apparatus consisting of a strong canvas sheet attached with springs to a metal frame; used for tumbling
+77390,tramway tram aerial_tramway cable_tramway ropeway,a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers
+77391,trance,a state of mind in which consciousness is fragile and voluntary action is poor or missing; a state resembling deep sleep
+77392,tranche,a portion of something (especially money)
+77393,trandolapril Mavik,an ACE inhibiting drug (trade name Mavik) used in some patients after a heart attack or to treat hypertension
+77394,tranquilizer tranquillizer tranquilliser antianxiety_agent ataractic_drug ataractic_agent ataractic,a drug used to reduce stress or tension without reducing mental clarity
+77395,tranquillity tranquility quiet,an untroubled state; free from disturbances
+77396,tranquillity tranquility quietness quietude,a state of peace and quiet
+77397,trans_fatty_acid,a fatty acid that has been produced by hydrogenating an unsaturated fatty acid (and so changing its shape); found in processed foods such as margarine and fried foods and puddings and commercially baked goods and partially hydrogenated vegetable oils
+77398,transactinide,any of the artificially produced elements with atomic numbers greater than 103
+77399,transaction dealing dealings,the act of transacting within or between groups (as carrying on commercial activities); "no transactions are possible without him"; "he has always been honest is his dealings with me"
+77400,transaction_file detail_file,(computer science) a computer file containing relatively transient data about a particular data processing task
+77401,transactional_immunity,a broader form of use immunity that also protects the witness from any prosecution brought about relating to transactions to which they gave testimony
+77402,transactor,someone who conducts or carries on business or negotiations
+77403,transalpine,one living on or coming from the other side of the Alps from Italy
+77404,transaminase aminotransferase aminopherase,a class of transferases that catalyze transamination (that transfer an amino group from an amino acid to another compound)
+77405,transamination,the process of transposing an amino group within a chemical compound
+77406,transamination,the process of transfering an amino group from one compound to another
+77407,transcendence transcendency,a state of being or existence above and beyond the limits of material experience
+77408,transcendence transcendency superiority,the state of excelling or surpassing or going beyond usual limits
+77409,transcendental_number,an irrational number that is not algebraic
+77410,transcendentalism transcendental_philosophy,any system of philosophy emphasizing the intuitive and spiritual above the empirical and material
+77411,transcendentalist,advocate of transcendentalism
+77412,transcortical_aphasia,a general term for aphasia that results from lesions outside of Broca's area or Wernicke's area of the cerebral cortex
+77413,transcriber,someone who rewrites in a different script
+77414,transcriber,someone who represents the sounds of speech in phonetic notation
+77415,transcriber,someone who makes a written version of spoken material
+77416,transcript,something that has been transcribed; a written record (usually typewritten) of dictated or recorded speech; "he read a transcript of the interrogation"; "you can obtain a transcript of this radio program by sending a self-addressed envelope to the station"
+77417,transcript copy,a reproduction of a written record (e.g. of a legal or school record)
+77418,transcriptase RNA_polymerase,the enzyme that copies DNA into RNA
+77419,transcription,(genetics) the organic process whereby the DNA sequence in a gene is copied into mRNA; the process whereby a base sequence of messenger RNA is synthesized on a template of complementary DNA
+77420,transcription,a sound or television recording (e.g., from a broadcast to a tape recording)
+77421,transcription written_text,something written, especially copied from one medium to another, as a typewritten version of dictation
+77422,transdermal_patch skin_patch,a medicated adhesive pad placed on the skin for absorption of a time released dose of medication into the bloodstream
+77423,transducer,an electrical device that converts one form of energy into another
+77424,transducing_vector gene_delivery_vector,a vector for delivering genes into cells
+77425,transduction,(genetics) the process of transfering genetic material from one cell to another by a plasmid or bacteriophage
+77426,transduction,the process whereby a transducer accepts energy in one form and gives back related energy in a different form; "the transduction of acoustic waves into voltages by a microphone"
+77427,transept,structure forming the transverse part of a cruciform church; crosses the nave at right angles
+77428,transfer,a ticket that allows a passenger to change conveyances
+77429,transfer transfer_of_training carry-over,application of a skill learned in one situation to a different but similar situation
+77430,transfer transferee,someone who transfers or is transferred from one position to another; "the best student was a transfer from LSU"
+77431,transfer transference,transferring ownership
+77432,transfer transference,the act of transfering something from one form to another; "the transfer of the music from record to tape suppressed much of the background noise"
+77433,transfer_RNA tRNA acceptor_RNA soluble_RNA,RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)
+77434,transfer_agent,an agency (usually a bank) that is appointed by a corporation to keep records of its stock and bond owners and to resolve problems about certificates
+77435,transfer_paper,a paper that is coated with a preparation for transferring a design to another surface
+77436,transfer_payment,a public expenditure (as for unemployment compensation or veteran's benefits) that is not for goods and services
+77437,transfer_tax,any tax levied on the passing of title to property
+77438,transferability,the quality of being transferable or exchangeable; "sterling transferability affords a means of multilateral settlement for....trade between nondollar countries"
+77439,transferase,any of various enzymes that move a chemical group from one compound to another compound
+77440,transferee,(law) someone to whom a title or property is conveyed
+77441,transference,(psychoanalysis) the process whereby emotions are passed on or displaced from one person to another; during psychoanalysis the displacement of feelings toward others (usually the parents) is onto the analyst
+77442,transferer transferrer,someone who transfers something
+77443,transferor,(law) someone who conveys a title or property to another
+77444,transferred_property transferred_possession,a possession whose ownership changes or lapses
+77445,transferrin beta_globulin siderophilin,a globulin in blood plasma that carries iron
+77446,transfiguration,the act of transforming so as to exalt or glorify
+77447,transfiguration metamorphosis,a striking change in appearance or character or circumstances; "the metamorphosis of the old house into something new and exciting"
+77448,transformation,(mathematics) a function that changes the position or direction of the axes of a coordinate system
+77449,transformation,a rule describing the conversion of one syntactic structure into another related syntactic structure
+77450,transformation,(genetics) modification of a cell or bacterium by the uptake and incorporation of exogenous DNA
+77451,transformation translation,the act of changing in form or shape or appearance; "a photograph is a translation of a scene onto a two-dimensional surface"
+77452,transformation transmutation shift,a qualitative change
+77453,transformer,an electrical device by which alternating current of one voltage is changed to another voltage
+77454,transfusion,the action of pouring a liquid from one vessel to another
+77455,transfusion blood_transfusion,the introduction of blood or blood plasma into a vein or artery
+77456,transfusion_reaction,reaction of the body to a transfusion of blood that is not compatible with its own blood; an adverse reaction can range from fever and hives to renal failure and shock and death
+77457,transgene,an exogenous gene introduced into the genome of another organism
+77458,transgression,the spreading of the sea over land as evidenced by the deposition of marine strata over terrestrial strata
+77459,transgression,the action of going beyond or overstepping some boundary or limit
+77460,transgression evildoing,the act of transgressing; the violation of a law or a duty or moral principle; "the boy was punished for the transgressions of his father"
+77461,transgressor,someone who transgresses; someone who violates a law or command; "the way of transgressors is hard"
+77462,transience transiency transitoriness,an impermanence that suggests the inevitability of ending or dying
+77463,transient,one who stays for only a short time; "transient laborers"
+77464,transient,(physics) a short-lived oscillation in a system caused by a sudden change of voltage or current or load
+77465,transient_global_amnesia,memory disorder seen in middle aged and elderly persons; characterized by an episode of amnesia and bewilderment that lasts for several hours; person is otherwise alert and intellectually active
+77466,transient_ischemic_attack TIA,brief episode in which the brain gets insufficient blood supply; symptoms depend on the site of the blockage
+77467,transistor junction_transistor electronic_transistor,a semiconductor device capable of amplification
+77468,transit_instrument,a telescope mounted on an axis running east and west and used to time the transit of a celestial body across the meridian
+77469,transit_line,a line providing public transit
+77470,transit_zone,a six million square mile area that includes the Caribbean and the Gulf of Mexico and the eastern Pacific Ocean; includes the principal routes used by drug smugglers
+77471,transition,a change from one place or state or subject or stage to another
+77472,transition,a passage that connects a topic to one that follows
+77473,transition modulation,a musical passage moving from one key to another
+77474,transitive_verb transitive_verb_form transitive,a verb (or verb construction) that requires an object in order to be grammatical
+77475,transitivity,(logic and mathematics) a relation between three elements such that if it holds between the first and second and it also holds between the second and third it must necessarily hold between the first and third
+77476,transitivity transitiveness,the grammatical relation created by a transitive verb
+77477,translation,(mathematics) a transformation in which the origin of the coordinate system is moved to another position but the direction of each axis remains the same
+77478,translation,(genetics) the process whereby genetic information coded in messenger RNA directs the formation of a specific protein at a ribosome in the cytoplasm
+77479,translation,a uniform movement without rotation
+77480,translation,rewording something in less technical terminology
+77481,translation displacement,the act of uniform movement
+77482,translation interlingual_rendition rendering version,a written communication in a second language having the same meaning as the written communication in a first language
+77483,translator transcriber,a person who translates written messages from one language to another
+77484,translator translating_program,a program that translates one programming language into another
+77485,transliteration,a transcription from one alphabet to another
+77486,translocation,the transport of dissolved material within a plant
+77487,translocation,(genetics) an exchange of chromosome parts; "translocations can result in serious congenital disorders"
+77488,translucence translucency semitransparency,the quality of allowing light to pass diffusely
+77489,transmigrante,a Latin American who buys used goods in the United States and takes them to Latin America to sell
+77490,transmigration,the passing of a soul into another body after death
+77491,transmission,communication by means of transmitted signals
+77492,transmission transmission_system,the gears that transmit power from an automobile engine via the driveshaft to the live axle
+77493,transmission transmittal transmitting,the act of sending a message; causing a message to be transmitted
+77494,transmission_control_protocol TCP,a protocol developed for the internet to get data from one network device to another; "TCP uses a retransmission strategy to insure that data will not be lost in transmission"
+77495,transmission_control_protocol/internet_protocol TCP/IP,a set of protocols (including TCP) developed for the internet in the 1970s to get data from one network device to another
+77496,transmission_mechanism,any mechanism whereby an infectious agent is spread from a reservoir to a human being
+77497,transmission_shaft,rotating shaft that transmits rotary motion from the engine to the differential
+77498,transmission_time TRM,the coordinated universal time when a transmission is sent from Earth to a spacecraft or other celestial body
+77499,transmittance transmission,the fraction of radiant energy that passes through a substance
+77500,transmitter sender,set used to broadcast radio or tv signals
+77501,transmogrification,the act of changing into a different form or appearance (especially a fantastic or grotesque one); "the transmogrification of the prince into a porcupine"
+77502,transmutation,(physics) the change of one chemical element into another (as by nuclear decay or radioactive bombardment); "the transmutation of base metals into gold proved to be impossible"
+77503,transmutation transubstantiation,an act that changes the form or character or substance of something
+77504,transom transom_window fanlight,a window above a door that is usually hinged to a horizontal crosspiece over the door
+77505,transom traverse,a horizontal crosspiece across a window or separating a door from a window over it
+77506,transorbital_lobotomy,a method of performing prefrontal lobotomy in which the surgical knife is inserted above the eyeball and moved to cut brain fibers
+77507,transparency transparence,permitting the free passage of electromagnetic radiation
+77508,transparency transparence transparentness,the quality of being clear and transparent
+77509,transparent_gem,a gemstone having the property of transmitting light without serious diffusion
+77510,transparent_substance translucent_substance,a material having the property of admitting light diffusely; a partly transparent material
+77511,transpiration,the process of giving off or exhaling water vapor through the skin or mucous membranes
+77512,transpiration,the passage of gases through fine tubes because of differences in pressure or temperature
+77513,transpiration,the emission of water vapor from the leaves of plants
+77514,transplant transplantation organ_transplant,an operation moving an organ from one organism (the donor) to another (the recipient); "he had a kidney transplant"; "the long-term results of cardiac transplantation are now excellent"; "a child had a multiple organ transplant two months ago"
+77515,transplant transplantation transplanting,the act of removing something from one location and introducing it in another location; "the transplant did not flower until the second year"; "too frequent transplanting is not good for families"; "she returned to Alabama because she could not bear transplantation"
+77516,transplanter,a gardener who moves plants to new locations
+77517,transponder,electrical device designed to receive a specific signal and automatically transmit a specific reply
+77518,transport,an exchange of molecules (and their kinetic energy and momentum) across the boundary between adjacent layers of a fluid or across cell membranes
+77519,transport_ship,a ship for carrying soldiers or military equipment
+77520,transportation shipping transport,the commercial enterprise of moving goods and materials
+77521,transportation transport transfer transferral conveyance,the act of moving something from one location to another
+77522,transportation_company,a company providing transportation
+77523,transportation_system transportation transit,a facility consisting of the means and equipment necessary for the movement of passengers or goods
+77524,transporter,a crane for moving material with dispatch as in loading and unloading ships
+77525,transporter car_transporter,a long truck for carrying motor vehicles
+77526,transpose,a matrix formed by interchanging the rows and columns of a given matrix
+77527,transposition,(genetics) a kind of mutation in which a chromosomal segment is transfered to a new position on the same or another chromosome
+77528,transposition,(mathematics) the transfer of a quantity from one side of an equation to the other along with a change of sign
+77529,transposition,(electricity) a rearrangement of the relative positions of power lines in order to minimize the effects of mutual capacitance and inductance; "he wrote a textbook on the electrical effects of transposition"
+77530,transposition,(music) playing in a different key from the key intended; moving the pitch of a piece of music upwards or downwards
+77531,transposition heterotaxy,any abnormal position of the organs of the body
+77532,transposition reversal,the act of reversing the order or place of
+77533,transposon jumping_gene,a segment of DNA that can become integrated at many different sites along a chromosome (especially a segment of bacterial DNA that can be translocated as a whole)
+77534,transsexual transexual,a person whose sexual identification is entirely with the opposite sex
+77535,transsexual transexual transgendered,a person who has undergone a sex change operation
+77536,transsexualism,condition in which a person identifies with a gender different from his or her physical gender
+77537,transshipment,the transfer from one conveyance to another for shipment
+77538,transubstantiation,the Roman Catholic doctrine that the whole substance of the bread and the wine changes into the substance of the body and blood of Christ when consecrated in the Eucharist
+77539,transudate transudation,a substance that transudes
+77540,transuranic_element,any element having an atomic number greater than 92 (which is the atomic number of uranium); all are radioactive
+77541,transurethral_resection_of_the_prostate TURP,removal of significant amounts of prostate tissue (as in cases of benign prostatic hyperplasia)
+77542,transverse_colon,the part of the large intestine that extends across the abdominal cavity and joins the ascending to the descending colon
+77543,transverse_process,one of two processes that extend from each vertebra and provide the point of articulation for the ribs
+77544,transverse_sinus sinus_transversus,a paired dural sinus; terminates in the sigmoid sinus
+77545,transversus_abdominis_muscle transverse_muscle_of_abdomen musculus_transversalis_abdominis transversus_abdominis,a flat muscle with transverse fibers that forms the anterior and lateral walls of the abdominal cavity
+77546,transvestism transvestitism cross_dressing,the practice of adopting the clothes or the manner or the sexual role of the opposite sex
+77547,transvestite cross-dresser,someone who adopts the dress or manner or sexual role of the opposite sex
+77548,tranylcypromine,an antidepressant drug that is a monoamine oxidase inhibitor; administered as a sulfate
+77549,trap,drain consisting of a U-shaped section of drainpipe that holds liquid and so prevents a return flow of sewer gas
+77550,trap,a device to hurl clay pigeons into the air for trapshooters
+77551,trap,a light two-wheeled carriage
+77552,trap,a device in which something (usually an animal) can be caught and penned
+77553,trap cakehole hole maw yap gob,informal terms for the mouth
+77554,trap snare,something (often something deceptively attractive) that catches you unawares; "the exam was full of trap questions"; "it was all a snare and delusion"
+77555,trap-and-drain_auger,a plumber's snake for clearing a trap and drain
+77556,trap-door_spider,American spider that constructs a silk-lined nest with a hinged lid
+77557,trap_block,(American football) an illegal block
+77558,trap_door,a hinged or sliding door in a floor or ceiling
+77559,trap_line,a line or series of traps
+77560,trapeze,a swing used by circus acrobats
+77561,trapezium,a quadrilateral with no parallel sides
+77562,trapezium trapezium_bone os_trapezium,the wrist bone on the thumb side of the hand that articulates with the 1st and 2nd metacarpals
+77563,trapezius trapezius_muscle cowl_muscle musculus_trapezius,either of two flat triangular muscles of the shoulder and upper back that are involved in moving the shoulders and arms
+77564,trapezohedron,a polyhedron whose faces are trapeziums
+77565,trapezoid,a quadrilateral with two parallel sides
+77566,trapezoid trapezoid_bone os_trapezoideum,the wrist bone between the trapezium and the capitate bones
+77567,trapper,someone who sets traps for animals (usually to obtain their furs)
+77568,trapper's_tea glandular_Labrador_tea,a Rocky Mountain shrub similar to Ledum groenlandicum
+77569,trapshooter,a person who engages in shooting at clay pigeons that are hurled into the air by a trap
+77570,trash scum,worthless people
+77571,trauma psychic_trauma,an emotional wound or shock often having long-lasting effects
+77572,traumatology accident_surgery,the branch of medicine that deals with the surgical repair of injuries and wounds arising from accidents
+77573,traumatophobia,a morbid fear of battle or physical injury
+77574,trave traverse crossbeam crosspiece,a horizontal beam that extends across something
+77575,travel traveling travelling,the act of going from one place to another; "he enjoyed selling but he hated the travel"
+77576,travel_agency,an agency that arranges personal travel
+77577,travel_agent,someone who sells or arranges trips or tours for customers
+77578,travel_allowance travel_reimbursement,a sum allowed for travel
+77579,travel_bargain,a bargain rate for travellers on commercial routes (usually air routes)
+77580,travel_expense,(frequently plural) expenses incurred by an employee in the performance of the job and usually reimbursed by the employer
+77581,travel_guidebook itinerary,a guidebook for travelers
+77582,travel_iron,a small lightweight iron that can be carried while traveling
+77583,travel_plan itinerary,a proposed route of travel
+77584,travel_time,a period of time spent traveling; "workers were not paid for their travel time between home and factory"
+77585,traveler traveller,a person who changes location
+77586,traveler's_check traveller's_check banker's_check,a letter of credit issued by a bank or express company that is payable on presentation to any correspondent of the issuer
+77587,traveler's_joy traveller's_joy old_man's_beard Clematis_vitalba,vigorous deciduous climber of Europe to Afghanistan and Lebanon having panicles of fragrant green-white flowers in summer and autumn
+77588,traveler's_letter_of_credit traveller's_letter_of_credit,a letter of credit given to a traveler
+77589,traveler's_tree traveller's_tree ravenala Ravenala_madagascariensis,giant treelike plant having edible nuts and leafstalks that yield a refreshing drink of clear watery sap; reputedly an emergency source of water for travelers
+77590,traveling_salesman travelling_salesman commercial_traveler commercial_traveller roadman bagman,a salesman who travels to call on customers
+77591,traveling_wave travelling_wave,a wave in which the medium moves in the direction of propagation of the wave
+77592,travelogue travelog,a film or illustrated lecture on traveling
+77593,traversal traverse,taking a zigzag path on skis
+77594,traversal traverse,travel across
+77595,traverser,someone who moves or passes across; "the traversers slowly ascended the mountain"
+77596,trawl dragnet trawl_net,a conical fishnet dragged through the water at great depths
+77597,trawl trawl_line spiller setline trotline,a long fishing line with many shorter lines and hooks attached to it (usually suspended between buoys)
+77598,trawler,a fisherman who use a trawl net
+77599,trawler dragger,a fishing boat that uses a trawl net or dragnet to catch fish
+77600,tray,an open receptacle for holding or displaying or serving articles or food
+77601,tray_cloth,table linen consisting of a small cloth for a tray
+77602,trazodone trazodone_hydrochloride Desyrel,oral antidepressant (trade name Desyrel) that is a nontricyclic drug used as a sedative
+77603,treachery betrayal treason perfidy,an act of deliberate betrayal
+77604,treacle golden_syrup,a pale cane syrup
+77605,treacle mush slop glop,writing or music that is excessively sweet and sentimental
+77606,tread,the grooved surface of a pneumatic tire
+77607,tread,the part (as of a wheel or shoe) that makes contact with the ground
+77608,tread,structural member consisting of the horizontal part of a stair or step
+77609,treading_water,a stroke that keeps the head above water by thrashing the legs and arms
+77610,treadmill,an exercise device consisting of an endless belt on which a person can walk or jog without changing place
+77611,treadmill salt_mine,a job involving drudgery and confinement
+77612,treadmill treadwheel tread-wheel,a mill that is powered by men or animals walking on a circular belt or climbing steps
+77613,treadmill_test,a stress test in which the patient walks on a moving treadmill while the heart and breathing rates are monitored
+77614,treason high_treason lese_majesty,a crime that undermines the offender's government
+77615,treason subversiveness traitorousness,disloyalty by virtue of subversive behavior
+77616,treasure,any possession that is highly valued by its owner; "the children returned from the seashore with their shells and other treasures"
+77617,treasure,a collection of precious things; "the trunk held all her meager treasures"
+77618,treasure hoarded_wealth,accumulated wealth in the form of money or jewels etc.; "the pirates hid their treasure on a small island in the West Indies"
+77619,treasure_chest,a chest filled with valuables
+77620,treasure_flower Gazania_rigens,decumbent South African perennial with short densely leafy stems and orange flower rays with black eyespots at base
+77621,treasure_house,a storehouse for treasures
+77622,treasure_hunt,a game in which players try to find hidden articles by using a series of clues
+77623,treasure_ship,a 16th-century ship loaded with treasure
+77624,treasure_trove,any collection of valuables that is discovered; "her book was a treasure trove of new ideas"; "mother's attic was a treasure trove when we were looking for antiques"
+77625,treasure_trove trove,treasure of unknown ownership found hidden (usually in the earth)
+77626,treasurer financial_officer,an officer charged with receiving and disbursing funds
+77627,treasurership,the position of treasurer
+77628,treasury,the government department responsible for collecting and managing and spending public revenues
+77629,treasury,a depository (a room or building) where wealth and precious objects can be kept safely
+77630,treasury exchequer,the funds of a government or institution or individual
+77631,treasury_stock treasury_shares reacquired_stock,stock that has been bought back by the issuing corporation and is available for retirement or resale; it is issued but not outstanding; it cannot vote and pays no dividends
+77632,treat,an occurrence that causes special pleasure or delight
+77633,treatise,a formal exposition
+77634,treatment,a manner of dealing with something artistically; "his treatment of space borrows from Italian architecture"
+77635,treatment handling,the management of someone or something; "the handling of prisoners"; "the treatment of water sewage"; "the right to equal treatment in the criminal justice system"
+77636,treatment intervention,care provided to improve a situation (especially medical procedures or applications that are intended to relieve illness or injury)
+77637,treaty pact accord,a written agreement between two states or sovereigns
+77638,treaty_port,a port in China or Korea or Japan that once was open to foreign trade on the basis of a trading treaty
+77639,treble_clef treble_staff G_clef,a clef that puts the G above middle C on the second line of a staff
+77640,treble_damages,three times the amount that a court would normally find the injured party entitled to
+77641,tree,a tall perennial woody plant having a main trunk and branches forming a distinct elevated crown; includes both gymnosperms and angiosperms
+77642,tree tree_diagram,a figure that branches from a single root; "genealogical tree"
+77643,tree_cotton Gossypium_arboreum,East Indian shrub cultivated especially for ornament for its pale yellow to deep purple blossoms
+77644,tree_cricket,pale arboreal American cricket noted for loud stridulation
+77645,tree_farm,a forest (or part of a forest) where trees are grown for commercial use
+77646,tree_fern,any of numerous usually tropical ferns having a thick woody stem or caudex and a crown of large fronds; found especially in Australia and New Zealand; chiefly of the families Cyatheaceae and Marattiaceae but some from Polypodiaceae
+77647,tree_frog tree-frog,any of various Old World arboreal frogs distinguished from true frogs by adhesive suckers on the toes
+77648,tree_heath briar brier Erica_arborea,evergreen treelike Mediterranean shrub having fragrant white flowers in large terminal panicles and hard woody roots used to make tobacco pipes
+77649,tree_heath grass_tree Richea_pandanifolia,gaunt Tasmanian evergreen shrubby tree with slender tapering leaves 3 to 5 feet long
+77650,tree_house,a playhouse built in the branches of a tree
+77651,tree_hugger,derogatory term for environmentalists who support restrictions on the logging industry and the preservation of forests
+77652,tree_lizard Urosaurus_ornatus,a climbing lizard of western United States and northern Mexico
+77653,tree_lupine Lupinus_arboreus,evergreen shrub of the Pacific coast of the United States having showy yellow or blue flowers; naturalized in Australia
+77654,tree_mallow velvetleaf velvet-leaf Lavatera_arborea,arborescent perennial shrub having palmately lobed furry leaves and showy red-purple flowers; southwestern United States
+77655,tree_of_heaven tree_of_the_gods Ailanthus_altissima,deciduous rapidly growing tree of China with foliage like sumac and sweetish fetid flowers; widely planted in United States as a street tree because of its resistance to pollution
+77656,tree_of_knowledge,the biblical tree in the Garden of Eden whose forbidden fruit was tasted by Adam and Eve
+77657,tree_onion Egyptian_onion top_onion Allium_cepa_viviparum,type of perennial onion grown chiefly as a curiosity or for early salad onions; having bulbils that replace the flowers
+77658,tree_shrew,insectivorous arboreal mammal of southeast Asia that resembles a squirrel with large eyes and long sharp snout
+77659,tree_sparrow Passer_montanus,Eurasian sparrow smaller than the house sparrow
+77660,tree_sparrow Spizella_arborea,finch common in winter in the northern U.S.
+77661,tree_squirrel,any typical arboreal squirrel
+77662,tree_surgeon arborist,a specialist in treating damaged trees
+77663,tree_surgery,treatment of damaged or decaying trees
+77664,tree_swallow tree_martin Hirundo_nigricans,of Australia and Polynesia; nests in tree cavities
+77665,tree_swift crested_swift,birds of southeast Asia and East Indies differing from true swifts in having upright crests and nesting in trees
+77666,tree_toad tree_frog tree-frog,arboreal amphibians usually having adhesive disks at the tip of each toe; of southeast Asia and Australia and America
+77667,tree_tobacco mustard_tree Nicotiana_glauca,evergreen South American shrub naturalized in United States; occasionally responsible for poisoning livestock
+77668,tree_tomato tamarillo,South American arborescent shrub having pale pink blossoms followed by egg-shaped reddish-brown edible fruit somewhat resembling a tomato in flavor
+77669,tree_wallaby tree_kangaroo,arboreal wallabies of New Guinea and northern Australia having hind and forelegs of similar length
+77670,treehopper,small leaping insect that sucks juices of branches and twigs
+77671,treelet,a small tree
+77672,treenail trenail trunnel,a wooden peg that is used to fasten timbers in shipbuilding; water causes the peg to swell and hold the timbers fast
+77673,trefoil,an architectural ornament in the form of three arcs arranged in a circle
+77674,trefoil_arch,a pointed arch having cusps in the intrados on either side of the apex
+77675,trek,a journey by ox wagon (especially an organized migration by a group of settlers)
+77676,trek,any long and difficult trip
+77677,trekker,a traveler who makes a long arduous journey (as hiking through mountainous country)
+77678,trellis treillage,latticework used to support climbing plants
+77679,tremble shiver shake,a reflex motion caused by cold or fear or excitement
+77680,trembles milk_sickness,disease of livestock and especially cattle poisoned by eating certain kinds of snakeroot
+77681,tremolite,a white or pale green mineral (calcium magnesium silicate) of the amphibole group used as a form of asbestos
+77682,tremolo,(music) a tremulous effect produced by rapid repetition of a single tone or rapid alternation of two tones
+77683,tremolo,vocal vibrato especially an excessive or poorly controlled one
+77684,tremor,shaking or trembling (usually resulting from weakness or stress or disease)
+77685,tremor earth_tremor microseism,a small earthquake
+77686,tremor shudder,an involuntary vibration (as if from illness or fear)
+77687,trench,any long ditch cut in the ground
+77688,trench,a ditch dug as a fortification having a parapet of the excavated earth
+77689,trench deep oceanic_abyss,a long steep-sided depression in the ocean floor
+77690,trench_coat,a military style raincoat; belted with deep pockets
+77691,trench_fever,marked by pain in muscles and joints and transmitted by lice
+77692,trench_foot immersion_foot,resembling frostbite but without freezing; resulting from exposure to cold and wet
+77693,trench_knife,a knife with a double-edged blade for hand-to-hand fighting
+77694,trench_warfare,a struggle (usually prolonged) between competing entities in which neither side is able to win; "the hope that his superior campaigning skills would make a difference evaporated in the realization that electioneering had become a form of trench warfare"
+77695,trench_warfare,a type of armed combat in which the opposing troops fight from trenches that face each other; "instead of the war ending quickly, it became bogged down in trench warfare"
+77696,trencher,someone who digs trenches
+77697,trencher,a wooden board or platter on which food is served or carved
+77698,trend-setter taste-maker fashion_arbiter,someone who popularizes a new fashion
+77699,trend_analysis,analysis of changes over time
+77700,trend_line,a line on a graph indicating a statistical trend
+77701,trend_setting,the initiating or popularizing of a trend or fashion
+77702,trepan,a drill for cutting circular holes around a center
+77703,trepan trephine,a surgical instrument used to remove sections of bone from the skull
+77704,trepang Holothuria_edulis,of warm coasts from Australia to Asia; used as food especially by Chinese
+77705,trephination,an operation that removes a circular section of bone from the skull
+77706,trepidation,a feeling of alarm or dread
+77707,treponema,spirochete that causes disease in humans (e.g. syphilis and yaws)
+77708,trespass,a wrongful interference with the possession of property (personal property as well as realty), or the action instituted to recover damages
+77709,trespass encroachment violation intrusion usurpation,entry to another's property without right or permission
+77710,trespass_de_bonis_asportatis,an action brought to recover damages from a person who has taken goods or property from its rightful owner
+77711,trespass_on_the_case,an action brought to recover damages from a person whose actions have resulted indirectly in injury or loss; "a person struck by a log as it was thrown onto a road could maintain trespass against the thrower but one who was hurt by stumbling over it could maintain and action on the case"
+77712,trespass_quare_clausum_fregit,the defendant unlawfully enters the land of the plaintiff
+77713,trespass_viet_armis,trespass with force and arms resulting in injury to another's person or property
+77714,trestle,a supporting tower used to support a bridge
+77715,trestle,sawhorses used in pairs to support a horizontal tabletop
+77716,trestle_bridge,a bridge supported by trestlework
+77717,trestle_table,a table supported on trestles
+77718,trestlework,a supporting structure composed of a system of connected trestles; for a bridge or pier or scaffold e.g.
+77719,trews,(used in the plural) tight-fitting trousers; usually of tartan
+77720,trey three,one of four playing cards in a deck having three pips
+77721,tri-chad,a chad that is incompletely removed and still attached at three corners
+77722,tri-iodothyronine,thyronine with three iodine atoms added
+77723,triage,sorting and allocating aid on the basis of need for or likely benefit from medical treatment or food
+77724,trial,(sports) a preliminary competition to determine qualifications; "the trials for the semifinals began yesterday"
+77725,trial,(law) the determination of a person's innocence or guilt by due process of law; "he had a fair trial and the jury found him guilty"; "most of these complaints are settled before they go to trial"
+77726,trial trial_run test tryout,trying something to find out about it; "a sample for ten days free trial"; "a trial of progesterone failed to relieve the pain"
+77727,trial tribulation visitation,an annoying or frustrating or catastrophic event; "his mother-in-law's visits were a great trial for him"; "life is full of tribulations"; "a visitation of the plague"
+77728,trial_and_error,experimenting until a solution is found
+77729,trial_attorney trial_lawyer,a lawyer who specializes in defending clients before a court of law
+77730,trial_balance,a balance of debits and credits in double-entry bookkeeping; drawn up to test their equality
+77731,trial_balloon,a test of public opinion
+77732,trial_balloon,a balloon sent up to test air currents
+77733,trial_court,the first court before which the facts of a case are decided
+77734,trial_judge,a judge in a trial court
+77735,trial_period test_period,a period of time during which someone or something is tested
+77736,triamcinolone Aristocort Aristopak Kenalog,a synthetic corticosteroid (trade names Aristocort or Aristopak or Kenalog) used as an anti-inflammatory agent
+77737,triangle,something approximating the shape of a triangle; "the coastline of Chile and Argentina and Brazil forms two legs of a triangle"
+77738,triangle,any of various triangular drafting instruments used to draw straight lines at specified angles
+77739,triangle,a percussion instrument consisting of a metal bar bent in the shape of an open triangle
+77740,triangle trigon trilateral,a three-sided polygon
+77741,triangular_prism,a prism whose bases are triangles
+77742,triangularity,the property of being shaped like a triangle
+77743,triangulation,a trigonometric method of determining the position of a fixed point from the angles to it from two fixed points a known distance apart; useful in navigation
+77744,triangulation,a method of surveying; the area is divided into triangles and the length of one side and its angles with the other two are measured, then the lengths of the other sides can be calculated
+77745,triazine,any of three isomeric compounds having three carbon and three nitrogen atoms in a six-membered ring
+77746,triazolam Halcion,a form of benzodiazepine (trade name Halcion) frequently prescribed as a sleeping pill; usually given to people who have trouble falling asleep
+77747,tribadism,a form of lesbianism that simulates heterosexual intercourse
+77748,tribal_society,a society with the social organization of a tribe
+77749,tribalism,the state of living together in tribes
+77750,tribalism,the beliefs of a tribal society
+77751,tribalization tribalisation,the act of making tribal; unification on a tribal basis
+77752,tribasic_acid,an acid containing three replaceable hydrogen atoms per molecule
+77753,tribe,(biology) a taxonomic category between a genus and a subfamily
+77754,tribe federation_of_tribes,a federation (as of American Indians)
+77755,tribe folk,a social division of (usually preliterate) people
+77756,tribesman,someone who lives in a tribe
+77757,tribologist,a specialist in tribology
+77758,tribology,the branch of engineering that deals with the interaction of surfaces in relative motion (as in bearings or gears): their design and friction and wear and lubrication
+77759,tribromoethanol tribromoethyl_alcohol,an intravenous anesthetic
+77760,tribune,(ancient Rome) an official elected by the plebeians to protect their interests
+77761,tribune,the apse of a Christian church that contains the bishop's throne
+77762,tribuneship,the position of tribune
+77763,tribute,payment by one nation for protection by another
+77764,tribute testimonial,something given or done as an expression of esteem
+77765,tribute_album benefit_album,concept album compiling a performer's work or work supporting some worthy cause
+77766,tributyrin,a bitter oily triglyceride of butyric acid; a form of butyrin
+77767,triceps,any skeletal muscle having three origins (but especially the triceps brachii)
+77768,triceps_brachii musculus_triceps_brachii,the skeletal muscle having three origins that extends the forearm when it contracts
+77769,triceratops,huge ceratopsian dinosaur having three horns and the neck heavily armored with a very solid frill
+77770,trichina Trichinella_spiralis,parasitic nematode occurring in the intestines of pigs and rats and human beings and producing larvae that form cysts in skeletal muscles
+77771,trichinosis trichiniasis myositis_trichinosa,infestation by trichina larvae that are transmitted by eating inadequately cooked meat (especially pork); larvae migrate from the intestinal tract to the muscles where they become encysted
+77772,trichion crinion,point where the hairline meets the midpoint of the forehead
+77773,trichloride,any compound containing three chlorine atoms in each molecule
+77774,trichlormethiazide Naqua,diuretic drug (trade name Naqua) used to treat hypertension
+77775,trichloroacetic_acid trichloracetic_acid,a strong acid made by chlorinating acetic acid
+77776,trichloroethylene trichloroethane TCE,a heavy colorless highly toxic liquid used as a solvent to clean electronic components and for dry cleaning and as a fumigant; causes cancer and liver and lung damage
+77777,trichodesmium,large colonial bacterium common in tropical open-ocean waters; important in carbon and nitrogen fixation
+77778,trichomonad,cause of trichomoniasis in women and cattle and birds
+77779,trichomoniasis,infection of the vagina
+77780,trichopterous_insect trichopteran trichopteron,caddis fly
+77781,trichotillomania,an irresistible urge to pull out your own hair
+77782,trichotomy,being threefold; a classification into three parts or subclasses
+77783,trichroism,pleochroism of a crystal so that it exhibits three different colors when viewed from three different directions
+77784,trichuriasis,infestation by a roundworm; common in tropical areas with poor sanitation
+77785,trick,a period of work or duty
+77786,trick,(card games) in a single round, the sequence of cards played by all the players; the high card is the winner
+77787,trick,an attempt to get you to do something foolish or imprudent; "that offer was a dirty trick"
+77788,trick fast_one,a cunning or deceitful action or device; "he played a trick on me"; "he pulled a fast one and got away with it"
+77789,trick_or_treat,a request by children on Halloween; they pass from door to door asking for goodies and threatening to play tricks on those who refuse
+77790,trickery chicanery chicane guile wile shenanigan,the use of tricks to deceive someone (usually to extract money from them)
+77791,trickery hocus-pocus slickness hanky_panky jiggery-pokery skulduggery skullduggery,verbal misrepresentation intended to take advantage of you in some way
+77792,trickiness,the quality of requiring skill or caution; "these puzzles are famous for their trickiness"
+77793,trickster,a mischievous supernatural being found in the folklore of many primitive people; sometimes distinguished by prodigious biological drives and exaggerated bodily parts
+77794,triclinium,a dining room (especially a dining room containing a dining table with couches along three sides)
+77795,triclinium,a dining table with couches along three sides in ancient Rome
+77796,tricolor tricolour,a flag having three colored stripes (especially the French flag)
+77797,tricolor_television_tube tricolour_television_tube tricolor_tube tricolour_tube,a color television tube in which three primary colors are combined to give the full range of colors
+77798,tricorn tricorne,cocked hat with the brim turned up to form three points
+77799,tricot,a knitted fabric or one resembling knitting
+77800,tricuspid_valve right_atrioventricular_valve,valve with three cusps; situated between the right atrium and the right ventricle; allows blood to pass from atrium to ventricle and closes to prevent backflow when the ventricle contracts
+77801,tricycle trike velocipede,a vehicle with three wheels that is moved by foot pedals
+77802,tricyclic tricyclic_antidepressant tricyclic_antidepressant_drug,an antidepressant drug that acts by blocking the reuptake of norepinephrine and serotonin and thus making more of those substances available to act on receptors in the brain
+77803,trident,a spear with three prongs
+77804,tridymite,a mineral form of silica
+77805,trier,one (as a judge) who examines and settles a case
+77806,trier attempter essayer,one who tries
+77807,trifle,a cold pudding made of layers of sponge cake spread with fruit or jelly; may be decorated with nuts, cream, or chocolate
+77808,trifle triviality,a detail that is considered insignificant
+77809,trifler,one who behaves lightly or not seriously
+77810,trifoliate_orange trifoliata wild_orange Poncirus_trifoliata,small fast-growing spiny deciduous Chinese orange tree bearing sweetly scented flowers and decorative but inedible fruit: used as a stock in grafting and for hedges
+77811,trifoliolate_leaf,having three leaflets
+77812,trifurcation,the act of splitting into three branches
+77813,trigeminal trigeminal_nerve trigeminus nervus_trigeminus fifth_cranial_nerve,the main sensory nerve of the face and motor nerve for the muscles of mastication
+77814,trigeminal_neuralgia tic_douloureux,intense paroxysmal neuralgia along the trigeminal nerve
+77815,trigger,a device that activates or releases or causes something to happen
+77816,trigger induction initiation,an act that sets in motion some course of events
+77817,triggerfish,any of numerous compressed deep-bodied tropical fishes with sandpapery skin and erectile spines in the first dorsal fin
+77818,triglyceride,glyceride occurring naturally in animal and vegetable tissues; it consists of three individual fatty acids bound together in a single large molecule; an important energy source forming much of the fat stored by the body
+77819,trigon,a triangular lyre of ancient Greece and Rome
+77820,trigonometric_function circular_function,function of an angle expressed as a ratio of the length of the sides of right-angled triangle containing the angle
+77821,trigonometrician,a mathematician specializing in trigonometry
+77822,trigonometry trig,the mathematics of triangles and trigonometric functions
+77823,trigram,a word that is written with three letters in an alphabetic writing system
+77824,triiodothyronine liothyronine T,thyroid hormone similar to thyroxine but with one less iodine atom per molecule and produced in smaller quantity; exerts the same biological effects as thyroxine but is more potent and briefer
+77825,trill,the articulation of a consonant (especially the consonant `r') with a rapid flutter of the tongue against the palate or uvula; "he pronounced his R's with a distinct trill"
+77826,trill shake,a note that alternates rapidly with another note a semitone above it
+77827,trillion one_million_million 1000000000000,the number that is represented as a one followed by 12 zeros; "in England they call a trillion a billion"
+77828,trillion one_million_million_million,the number that is represented as a one followed by 18 zeros; "in England they call a quintillion a trillion"
+77829,trillium wood_lily wake-robin,any liliaceous plant of the genus Trillium having a whorl of three leaves at the top of the stem with a single three-petaled flower
+77830,trilobite,an extinct arthropod that was abundant in Paleozoic times; had an exoskeleton divided into three parts
+77831,trilogy,a set of three literary or dramatic works related in subject or theme
+77832,trim,attitude of an aircraft in flight when allowed to take its own orientation
+77833,trim trimming clipping,cutting down to the desired size or shape
+77834,trim trimness,a state of arrangement or appearance; "in good trim"
+77835,trimaran,a fast sailboat with 3 parallel hulls
+77836,trimer,a polymer (or a molecule of a polymer) consisting of three identical monomers
+77837,trimester,a period of three months; especially one of the three three-month periods into which human pregnancy is divided
+77838,trimester,one of three divisions of an academic year
+77839,trimipramine Surmontil,tricyclic antidepressant drug (trade name Surmontil) used to treat depression and anxiety and (sometimes) insomnia
+77840,trimmer,a machine that trims timber
+77841,trimmer trimmer_joist,joist that receives the end of a header in floor or roof framing in order to leave an opening for a staircase or chimney etc.
+77842,trimmer trimming_capacitor,capacitor having variable capacitance; used for making fine adjustments
+77843,trimmer_arch,an arch built between trimmers in a floor (to support the weight of a hearth)
+77844,trimming,the act of adding decoration; "the children had to be in bed before it was time for the trimming of the tree"
+77845,trimming trim passementerie,a decoration or adornment on a garment; "the trimming on a hat"; "the trim on a shirt"
+77846,trine_immersion,baptism by immersion three times (in the names in turn of the Trinity)
+77847,trinketry,trinkets and other ornaments of dress collectively
+77848,trio,three performers or singers who perform together
+77849,trio,a musical composition for three performers
+77850,trio threesome triad trinity,three people considered as a unit
+77851,trio triad triplet triple,a set of three similar things considered as a unit
+77852,triode,a thermionic vacuum tube having three electrodes; fluctuations of the charge on the grid control the flow from cathode to anode which makes amplification possible
+77853,triolein olein,a naturally occurring glyceride of oleic acid that is found in fats and oils
+77854,triose,any monosaccharide sugar containing three atoms of carbon per molecule
+77855,trioxide,an oxide containing three atoms of oxygen in the molecule
+77856,trip,a hallucinatory experience induced by drugs; "an acid trip"
+77857,trip,a journey for some purpose (usually including the return); "he took a trip to the shopping center"
+77858,trip,a light or nimble tread; "he heard the trip of women's feet overhead"
+77859,trip head_trip,an exciting or stimulating experience
+77860,trip trip-up stumble misstep,an unintentional but embarrassing blunder; "he recited the whole poem without a single trip"; "he arranged his robes to avoid a trip-up later"; "confusion caused his unfortunate misstep"
+77861,trip_line,a light rope used in lumbering to free a dog hook from a log at a distance
+77862,trip_wire,a small military force that serves as a first line of defense; if they become engaged in hostilities it will trigger the intervention of stronger military forces
+77863,trip_wire,a wire stretched close to the ground that activates something (a trap or camera or weapon) when tripped over
+77864,tripalmitin glycerol_tripalmitate,a triglyceride of palmitic acid
+77865,tripe,lining of the stomach of a ruminant (especially a bovine) used as food
+77866,triphammer,a massive power hammer; raised by a cam until released to fall under gravity
+77867,triphosphopyridine,a pyridine ring with three phosphorus groups
+77868,triphosphopyridine_nucleotide,a coenzyme of several enzymes
+77869,triphosphoric_acid,an acid that is a partial anhydride of three molecules of phosphoric acid; known chiefly in the form of its salts and esters
+77870,triple,a quantity that is three times as great as another
+77871,triple three-base_hit three-bagger,a base hit at which the batter stops safely at third base
+77872,triple-crown_season,a season of baseball during which a player wins the triple crown
+77873,triple-spacing,typing that leaves two lines blank between lines of typing
+77874,triple_cream triple_creme,fresh soft French cheese containing at least 72% fat
+77875,triple_crown,(horse racing) a title won by a horse that can win the Kentucky Derby and the Belmont Stakes and the Preakness
+77876,triple_crown,(baseball) an unofficial title won by a batter who leads the league in hitting average, runs batted in, and home runs
+77877,triple_jump hop-step-and-jump,an athletic contest in which a competitor must perform successively a hop and a step and a jump in continuous movement
+77878,triple_play,the act of getting three players out on one play
+77879,triple_sec,type of curacao having higher alcoholic content
+77880,triple_time,musical time with three beats in each bar
+77881,triplet,one of three offspring born at the same time from the same pregnancy
+77882,triplet_code,the normal version of the genetic code in which a sequence of three nucleotides codes for the synthesis of a specific amino acid
+77883,tripletail,large food fish of warm waters worldwide having long anal and dorsal fins that with a caudal fin suggest a three-lobed tail
+77884,triplicate,one of three copies; any of three things that correspond to one another exactly
+77885,triplicity,the property of being triple
+77886,triplicity trigon,(astrology) one of four groups of the zodiac where each group consists of three signs separated from each other by 120 degrees
+77887,tripling,increase by a factor of three
+77888,tripod,a three-legged rack used for support
+77889,tripos,final honors degree examinations at Cambridge University
+77890,tripper,(slang) someone who has taken a psychedelic drug and is undergoing hallucinations
+77891,tripper trip,a catch mechanism that acts as a switch; "the pressure activates the tripper and releases the water"
+77892,triptych,art consisting of a painting or carving (especially an altarpiece) on three panels (usually hinged together)
+77893,triquetral triquetral_bone os_triquetrum cuneiform_bone pyramidal_bone,a wrist bone that articulates with the pisiform and hamate and lunate bones
+77894,trireme,ancient Greek or Roman galley or warship having three tiers of oars on each side
+77895,trisaccharide,any of a variety of carbohydrates that yield three monosaccharide molecules on complete hydrolysis
+77896,triskaidekaphobia,a morbid fear of the number 13
+77897,triskelion triskele,a figure consisting of three stylized human arms or legs (or three bent lines) radiating from a center
+77898,trismus,prolonged spasm of the jaw muscles
+77899,trisodium_phosphate trisodium_orthophosphate tribasic_sodium_phosphate,the tertiary phosphate of sodium used as a builder in soaps and detergents
+77900,trisomy,chrosomal abnormality in which there is one more than the normal number of chromosomes in a cell
+77901,tristearin glycerol_tristearate,a triglyceride of stearic acid
+77902,trisyllable,a word having three syllables
+77903,tritanopia blue-blindness,rare form of dichromacy characterized by a lowered sensitivity to blue light resulting in an inability to distinguish blue and yellow
+77904,triteness staleness,unoriginality as a result of being dull and hackneyed
+77905,tritheism,(Christianity) the heretical belief that the Father and the Son and the Holy Spirit are three separate gods
+77906,tritheist,someone (not an orthodox Christian) who believes that the Father and Son and Holy Ghost are three separate gods
+77907,tritium,a radioactive isotope of hydrogen; atoms of tritium have three times the mass of ordinary hydrogen atoms
+77908,triton,tropical marine gastropods having beautifully colored spiral shells
+77909,triumph,the exultation of victory
+77910,triumphal_arch,a monumental archway; usually they are built to commemorate some notable victory
+77911,triumvir,one of a group of three sharing public administration or civil authority especially in ancient Rome
+77912,triumvirate,a group of three men responsible for public administration or civil authority
+77913,trivet,a three-legged metal stand for supporting a cooking vessel in a hearth
+77914,trivet,a stand with short feet used under a hot dish on a table
+77915,triviality trivia trifle small_beer,something of small importance
+77916,trivium,(Middle Ages) an introductory curriculum at a medieval university involving grammar and logic and rhetoric; considered to be a triple way to eloquence
+77917,trochanter,one of the bony prominences developed near the upper extremity of the femur to which muscles are attached
+77918,trochee,a metrical unit with stressed-unstressed syllables
+77919,trochlear trochlear_nerve trochlearis fourth_cranial_nerve,either of the two cranial nerves on either side that control the superior oblique muscles of the eyes
+77920,trogon,forest bird of warm regions of the New World having brilliant lustrous plumage and long tails
+77921,troika,a modern Russian triumvirate
+77922,troika,a Russian carriage pulled by three horses abreast
+77923,trojan trojan_horse,a program that appears desirable but actually contains something harmful; "the contents of a trojan can be a virus or a worm"; "when he downloaded the free game it turned out to be a trojan horse"
+77924,troll,(Scandanavian folklore) a supernatural creature (either a dwarf or a giant) that is supposed to live in caves or in the mountains
+77925,troll,a fisherman's lure that is used in trolling; "he used a spinner as his troll"
+77926,troll trolling,angling by drawing a baited line through the water
+77927,trolley_line,a transit line using streetcars or trolley buses
+77928,trolleybus trolley_coach trackless_trolley,a passenger bus with an electric motor that draws power from overhead wires
+77929,trombiculiasis,infestation with chiggers
+77930,trombiculid,mite that as nymph and adult feeds on early stages of small arthropods but whose larvae are parasitic on terrestrial vertebrates
+77931,trombidiid,mite that in all stages feeds on other arthropods
+77932,trombone,a brass instrument consisting of a long tube whose length can be varied by a U-shaped slide
+77933,trombonist trombone_player,a musician who plays the trombone
+77934,trompe_l'oeil,a painting rendered in such great detail as to deceive the viewer concerning its reality
+77935,trompillo white_horse_nettle prairie_berry purple_nightshade silverleaf_nightshade silver-leaved_nightshade silver-leaved_nettle Solanum_elaeagnifolium,weedy nightshade with silvery foliage and violet or blue or white flowers; roundish berry widely used to curdle milk; central United States to South America
+77936,troop,a cavalry unit corresponding to an infantry company
+77937,troop,a group of soldiers
+77938,troop flock,an orderly crowd; "a troop of children"
+77939,troop scout_troop scout_group,a unit of Girl or Boy Scouts
+77940,troop_carrier troop_transport,any land or sea or air vehicle designed to carry troops
+77941,troop_movement,movement of military units to a new location
+77942,trooper,a mounted police officer
+77943,trooper state_trooper,a state police officer
+77944,troopship,ship for transporting troops
+77945,trope figure_of_speech figure image,language used in a figurative or nonliteral sense
+77946,trophobiosis,a symbiotic relation in which one organism protects the other in return for some kind of food product
+77947,trophoblast,the membrane that forms the wall of the blastocyst in early development; aids implantation in the uterine wall; "after implantation of the blastocyst in the uterine wall the trophoblast divides into two layers, the chorion and the placenta"
+77948,trophoblastic_cancer,malignant neoplasm of the uterus derived from the epithelium of the chorion
+77949,trophotropism,an orienting response to food
+77950,trophozoite,a sporozoan in the active feeding stage of its life cycle
+77951,trophy,an award for success in war or hunting
+77952,trophy prize,something given as a token of victory
+77953,trophy_case,a case in which to display trophies
+77954,trophy_wife,a wife who is an attractive young woman; seldom the first wife of an affluent older man; "his trophy wife was an asset to his business"
+77955,tropic,either of two parallels of latitude about 23.5 degrees to the north and south of the equator representing the points farthest north and south at which the sun can shine directly overhead and constituting the boundaries of the Torrid Zone or tropics
+77956,tropic_bird tropicbird boatswain_bird,mostly white web-footed tropical seabird often found far from land
+77957,tropical_medicine,the branch of medicine that deals with the diagnosis and treatment of diseases that are found most often in tropical regions
+77958,tropical_pitcher_plant,any of several tropical carnivorous shrubs or woody herbs of the genus Nepenthes
+77959,tropical_prawn,edible tropical and warm-water prawn
+77960,tropical_rain_forest selva,a rain forest in a tropical area
+77961,tropism,an involuntary orienting response; positive or negative reaction to a stimulus source
+77962,troponym manner_name,a word that denotes a manner of doing something; "`march' is a troponym of `walk'"
+77963,troponymy,the semantic relation of being a manner of does something
+77964,troponymy troponomy,the place names of a region or a language considered collectively
+77965,tropopause,the region of discontinuity between the troposphere and the stratosphere
+77966,troposphere,the lowest atmospheric layer; from 4 to 11 miles high (depending on latitude)
+77967,trot,a gait faster than a walk; diagonally opposite legs strike the ground together
+77968,trotter,foot of a pig or sheep especially one used as food
+77969,trotting_horse trotter,a horse trained to trot; especially a horse trained for harness racing
+77970,trou-de-loup,a sloping pit with a stake in the middle used as an obstacle to the enemy
+77971,trouble,an unwanted pregnancy; "he got several girls in trouble"
+77972,trouble,an event causing distress or pain; "what is the trouble?"; "heart trouble"
+77973,trouble difficulty,an effort that is inconvenient; "I went to a lot of trouble"; "he won without any trouble"; "had difficulty walking"; "finished the test only with great difficulty"
+77974,trouble problem,a source of difficulty; "one trouble after another delayed the job"; "what's the problem?"
+77975,trouble_spot,a place where trouble exists or occurs regularly
+77976,troublemaker trouble_maker troubler mischief-maker bad_hat,someone who deliberately stirs up trouble
+77977,troubleshooter trouble_shooter,a worker whose job is to locate and fix sources of trouble (especially in mechanical devices)
+77978,troublesomeness inconvenience worriment,a difficulty that causes anxiety
+77979,trough,a narrow depression (as in the earth or between ocean waves or in the ocean bed)
+77980,trough,a long narrow shallow receptacle
+77981,trouper,a person who is reliable and uncomplaining and hard working
+77982,trouser,a garment (or part of a garment) designed for or relating to trousers; "in his trouser's pocket"; "he ripped his left trouser on the fence"
+77983,trouser_cuff,a cuff on the bottoms of trouser legs
+77984,trouser_press pants_presser,a home appliance in which trousers can be hung and the wrinkles pressed out
+77985,trousers pair_of_trousers pant,(usually in the plural) a garment extending from the waist to the knee or ankle, covering each leg separately; "he had a sharp crease in his trousers"
+77986,trousseau,the personal outfit of a bride; clothes and accessories and linens
+77987,trout,flesh of any of several primarily freshwater game and food fishes
+77988,trout,any of various game and food fishes of cool fresh waters mostly smaller than typical salmons
+77989,trowel,a small hand tool with a handle and flat metal blade; used for scooping or spreading plaster or similar materials
+77990,troy troy_weight,a system of weights used for precious metals and gemstones; based on a 12-ounce pound and an ounce of 480 grains
+77991,troy_pound apothecaries'_pound,an apothecary weight equal to 12 ounces or 373.242 grams
+77992,troy_unit,any of the unit of the troy system of weights
+77993,truancy hooky,failure to attend (especially school)
+77994,truant hooky_player,one who is absent from school without permission
+77995,truck motortruck,an automotive vehicle suitable for hauling
+77996,truck_bed,the floor or bottom of a wagon or truck or trailer
+77997,truck_dealer,a firm that sells and buys trucks
+77998,truck_farm truck_garden,a farm where vegetables are grown for market
+77999,truck_farming,growing vegetables for the market
+78000,truck_stop,a roadside service station (and restaurant) that caters to truck drivers
+78001,truck_traffic,trucks coming and going
+78002,truckage,a fee charged for transporting goods by truckage
+78003,trucking_company,a company that ships goods or possessions by truck
+78004,trucking_industry,an industry that provides transportation for commercial products
+78005,truckling,the act of obeying meanly (especially obeying in a humble manner or for unworthy reasons)
+78006,truculence truculency,obstreperous and defiant aggressiveness
+78007,trudge,a long difficult walk
+78008,trudger plodder slogger,someone who walks in a laborious heavy-footed manner
+78009,true,proper alignment; the property possessed by something that is in correct or proper alignment; "out of true"
+78010,true_anomaly,the angular distance of a point in an orbit past the point of periapsis measured in degrees
+78011,true_bill,an indictment endorsed by a grand jury
+78012,true_blackberry Rubus_fruticosus,the true blackberry of Europe as well as any of numerous varieties having sweet edible black or dark purple berries
+78013,true_bug,any of various insects of the order Hemiptera and especially of the suborder Heteroptera
+78014,true_frog ranid,insectivorous usually semiaquatic web-footed amphibian with smooth moist skin and long hind legs
+78015,true_fungus,any of numerous fungi of the division Eumycota
+78016,true_laurel bay bay_laurel bay_tree Laurus_nobilis,small Mediterranean evergreen tree with small blackish berries and glossy aromatic leaves used for flavoring in cooking; also used by ancient Greeks to crown victors
+78017,true_lobster,large edible marine crustaceans having large pincers on the first pair of legs
+78018,true_mahogany Cuban_mahogany Dominican_mahogany Swietinia_mahogani,mahogany tree of West Indies
+78019,true_marmoset,a marmoset
+78020,true_pepper pepper_vine,any of various shrubby vines of the genus Piper
+78021,true_rib,one of the first seven ribs in a human being which attach to the sternum
+78022,true_sago_palm Metroxylon_sagu,Malaysian palm whose pithy trunk yields sago--a starch used as a food thickener and fabric stiffener; Malaya to Fiji
+78023,true_slime_mold acellular_slime_mold plasmodial_slime_mold myxomycete,a slime mold of the class Myxomycetes
+78024,true_toad,tailless amphibian similar to a frog but more terrestrial and having drier warty skin
+78025,true_vocal_cord true_vocal_fold inferior_vocal_cord inferior_vocal_fold,either of the two lower vocal folds that come together to form the glottis; produce a vocal tone when they are approximated and air from the lungs passes between them
+78026,trueness,exactness of adjustment; "I marveled at the trueness of his aim"
+78027,truffle chocolate_truffle,creamy chocolate candy
+78028,truffle earthnut,edible subterranean fungus of the genus Tuber
+78029,truffle earthnut earth-ball,any of various highly prized edible subterranean fungi of the genus Tuber; grow naturally in southwestern Europe
+78030,truism,an obvious truth
+78031,trump,(card games) the suit that has been declared to rank above all other suits for the duration of the hand; "clubs were declared trumps"; "a trump can take a trick even when a card of a different suit is led"
+78032,trump trump_card,a playing card in the suit that has been declared trumps; "the ace of trumps is a sure winner"
+78033,trumpet_arch,a conical squinch
+78034,trumpet_creeper trumpet_vine Campsis_radicans,a North American woody vine having pinnate leaves and large red trumpet-shaped flowers
+78035,trumpet_honeysuckle coral_honeysuckle trumpet_flower trumpet_vine Lonicera_sempervirens,evergreen North American honeysuckle vine having coral-red or orange flowers
+78036,trumpet_section,the section of a band or orchestra that plays trumpets or cornets
+78037,trumpeter,large gregarious crane-like bird of the forests of South America having glossy black plumage and a loud prolonged cry; easily domesticated
+78038,trumpeter cornetist,a musician who plays the trumpet or cornet
+78039,trumpeter trumpeter_swan Cygnus_buccinator,large pure white wild swan of western North America having a sonorous cry
+78040,trumpetfish Aulostomus_maculatus,tropical Atlantic fish with a long snout; swims snout down
+78041,trumpetwood trumpet-wood trumpet_tree snake_wood imbauba Cecropia_peltata,tropical American tree with large peltate leaves and hollow stems
+78042,truncated_cone,a frustum formed from a cone
+78043,truncated_pyramid,a frustum formed from a pyramid
+78044,truncation,the replacement of an edge or solid angle (as in cutting a gemstone) by a plane (especially by a plane that is equally inclined to the adjacent faces)
+78045,truncation,the act of cutting short; "it is an obvious truncation of the verse"; "they were sentenced to a truncation of their limbs"
+78046,truncation_error,(mathematics) a miscalculation that results from cutting off a numerical calculation before it is finished
+78047,truncheon nightstick baton billy billystick billy_club,a short stout club used primarily by policemen
+78048,trundle,small wheel or roller
+78049,trundle_bed trundle truckle_bed truckle,a low bed to be slid under a higher bed
+78050,trunk,luggage consisting of a large strong case used when traveling or for storage
+78051,trunk tree_trunk bole,the main stem of a tree; usually covered with bark; the bole is usually the part that is commercially useful for lumber
+78052,trunk_hose,puffed breeches of the 16th and 17th centuries usually worn over hose
+78053,trunk_lid,hinged lid for a trunk
+78054,trunk_line,a telephone line connecting two exchanges directly
+78055,trunk_line trunk_route,line that is the main route on a railway
+78056,truss,(medicine) a bandage consisting of a pad and belt; worn to hold a hernia in place by pressure
+78057,truss,a framework of beams (rafters, posts, struts) forming a rigid structure that supports a roof or bridge or other structure
+78058,truss_bridge,a bridge supported by trusses
+78059,trust,something (as property) held by one party (the trustee) for the benefit of another (the beneficiary); "he is the beneficiary of a generous trust set up by his father"
+78060,trust corporate_trust combine cartel,a consortium of independent organizations formed to limit competition by controlling the production and distribution of a product or service; "they set up the trust in the hope of gaining a monopoly"
+78061,trust trustingness trustfulness,the trait of believing in the honesty and reliability of others; "the experience destroyed his trust and personal dignity"
+78062,trust_busting,(law) government activities seeking to dissolve corporate trusts and monopolies (especially under the United States antitrust laws)
+78063,trust_company trust_corporation,an organization (usually with a commercial bank) that is engaged as a trustee or fiduciary or agent in handling trust funds or estates of custodial arrangements or stock transfers or related services
+78064,trust_deed deed_of_trust,a written instrument legally conveying property to a trustee often used to secure an obligation such as a mortgage or promissory note
+78065,trust_fund,a fund held in trust
+78066,trust_territory trusteeship,a dependent country; administered by another country under the supervision of the United Nations
+78067,trustbuster,a federal agent who engages in trust busting
+78068,trustee legal_guardian,a person (or institution) to whom legal title to property is entrusted to use for another's benefit
+78069,trustee-beneficiary_relation,the responsibility of a trustee to act in the best interests of the beneficiary
+78070,trusteeship,the position of trustee
+78071,trustworthiness trustiness,the trait of deserving trust and confidence
+78072,trusty,a convict who is considered trustworthy and granted special privileges
+78073,truth,a fact that has been verified; "at last he knew the truth"; "the truth is that he didn't want to do it"
+78074,truth the_true verity trueness,conformity to reality or actuality; "they debated the truth of the proposition"; "the situation brought home to us the blunt truth of the military threat"; "he was famous for the truth of his portraits"; "he turned to religion in his search for eternal verities"
+78075,truth true_statement,a true statement; "he told the truth"; "he thought of answering with the truth but he knew they wouldn't believe it"
+78076,truth_serum truth_drug,an intravenous anesthetic drug that has a hypnotic effect; induces relaxation and weakens inhibitions; is believed to induce people to talk freely
+78077,truthfulness,the quality of being truthful
+78078,try_square,a square having a metal ruler set at right angles to another straight piece
+78079,trypsin,an enzyme of pancreatic origin; catalyzes the hydrolysis of proteins to smaller polypeptide units
+78080,trypsinogen,inactive precursor of trypsin; a substance secreted by the pancreas and converted to active trypsin by enterokinase in the small intestine
+78081,tryptophan tryptophane,an amino acid that occurs in proteins; is essential for growth and normal metabolism; a precursor of niacin
+78082,tryst rendezvous,a date; usually with a member of the opposite sex
+78083,tsetse_fly tsetse tzetze_fly tzetze glossina,bloodsucking African fly; transmits sleeping sickness etc.
+78084,tsoris,(Yiddish) trouble and suffering
+78085,tsunami,a cataclysm resulting from a destructive sea wave caused by an earthquake or volcanic eruption; "a colossal tsunami destroyed the Minoan civilization in minutes"
+78086,tsuris,(Yiddish) aggravating trouble; "the frustrating tsuris he subjected himself to"
+78087,tsutsugamushi_disease scrub_typhus,transmitted by larval mites and widespread in Asia
+78088,tuatara Sphenodon_punctatum,only extant member of the order Rhynchocephalia of large spiny lizard-like diapsid reptiles of coastal islands off New Zealand
+78089,tub tubful,the amount that a tub will hold; "a tub of water"
+78090,tub vat,a large open vessel for holding or storing liquids
+78091,tub-thumper,a noisy and vigorous or ranting public speaker
+78092,tub_gurnard yellow_gurnard Trigla_lucerna,a kind of gurnard
+78093,tubal_ligation,a sterilization procedure with women; both Fallopian tubes are tied in two places and the tubes removed in between the ligations
+78094,tubal_pregnancy,ectopic pregnancy in a Fallopian tube
+78095,tube tube-shaped_structure,(anatomy) any hollow cylindrical body structure
+78096,tube tubing,conduit consisting of a long hollow object (usually cylindrical) used to hold and conduct objects or liquids or gases
+78097,tube vacuum_tube thermionic_vacuum_tube thermionic_tube electron_tube thermionic_valve,electronic device consisting of a system of electrodes arranged in an evacuated glass or metal envelope
+78098,tube_foot,tentacular tubular process of most echinoderms (starfish and sea urchins and holothurians) having a sucker at the end and used for e.g. locomotion and respiration
+78099,tubeless tubeless_tire,pneumatic tire not needing an inner tube to be airtight
+78100,tuber,a fleshy underground stem or root serving for reproductive and food storage
+78101,tubercle,a swelling that is the characteristic lesion of tuberculosis
+78102,tubercle_bacillus Mycobacterium_tuberculosis,cause of tuberculosis
+78103,tuberculin,a sterile liquid containing a purified protein derivative of the tuberculosis bacterium; used in the diagnosis of tuberculosis
+78104,tuberculin_test tuberculin_skin_test,a skin test to determine past or present infection with the tuberculosis bacterium; based on hypersensitivity of the skin to tuberculin
+78105,tuberculoid_leprosy,leprosy characterized by tumors in the skin and cutaneous nerves
+78106,tuberculosis TB T.B.,infection transmitted by inhalation or ingestion of tubercle bacilli and manifested in fever and small lesions (usually in the lungs but in various other parts of the body in acute stages)
+78107,tuberose Polianthes_tuberosa,a tuberous Mexican herb having grasslike leaves and cultivated for its spikes of highly fragrant lily-like waxy white flowers
+78108,tuberosity tubercle eminence,a protuberance on a bone especially for attachment of a muscle or ligament
+78109,tuberous_begonia,any of numerous begonias having large tuberous roots
+78110,tuberous_plant,plant growing from a tuber
+78111,tubocurarine curare,a toxic alkaloid found in certain tropical South American trees that is a powerful relaxant for striated muscles; "curare acts by blocking cholinergic transmission at the myoneural junction"
+78112,tubular_cavity,a cavity having the shape of a tube
+78113,tubule,a small tube
+78114,tuck,eatables (especially sweets)
+78115,tuck,(sports) a bodily position adopted in some sports (such as diving or skiing) in which the knees are bent and the thighs are drawn close to the chest
+78116,tuck,a narrow flattened pleat or fold that is stitched in place
+78117,tuck_box,a box for storing eatables (especially at boarding school)
+78118,tuck_shop,a candy store in Great Britain
+78119,tucker,a sewer who tucks
+78120,tucker,a detachable yoke of linen or lace worn over the breast of a low-cut dress
+78121,tucker-bag,a bag used for carrying food; "the swagman filled his tuckerbag"
+78122,tudung,a scarf worn around the head by Muslim women in Malaysia; conceals the hair but not the face
+78123,tufa calc-tufa,a soft porous rock consisting of calcium carbonate deposited from springs rich in lime
+78124,tuff tufa,hard volcanic rock composed of compacted volcanic ash
+78125,tuft,a bunch of feathers or hair
+78126,tuft tussock,a bunch of hair or feathers or growing grass
+78127,tufted_centaury Centaurium_scilloides,tufted perennial of western Europe and Azores having bright pink to white flowers
+78128,tufted_gentian Gentianopsis_holopetala Gentiana_holopetala,small blue-flowered fringed gentian of Sierra Nevada mountains
+78129,tufted_puffin Lunda_cirrhata,northern Pacific puffin having a large yellow plume over each eye
+78130,tufted_titmouse Parus_bicolor,crested titmouse of eastern and midwestern United States
+78131,tufted_vetch bird_vetch Calnada_pea Vicia_cracca,common perennial climber of temperate regions of Eurasia and North America having dense elongate clusters of flowers
+78132,tug jerk,a sudden abrupt pull
+78133,tug-of-war,a contest in which teams pull of opposite ends of a rope; the team dragged across a central line loses
+78134,tug-of-war,any hard struggle between equally matched groups
+78135,tugboat tug towboat tower,a powerful small boat designed to pull or push larger ships
+78136,tugrik tughrik,the basic unit of money in Mongolia
+78137,tuille,armor plate that protects the hip and thigh
+78138,tuition tuition_fee,a fee paid for instruction (especially for higher education); "tuition and room and board were more than $25,000"
+78139,tularemia tularaemia rabbit_fever deer_fly_fever yatobyo,a highly infectious disease of rodents (especially rabbits and squirrels) and sometimes transmitted to humans by ticks or flies or by handling infected animals
+78140,tulip,any of numerous perennial bulbous herbs having linear or broadly lanceolate leaves and usually a single showy flower
+78141,tulip_bed,a flowerbed in which tulips are growing
+78142,tulip_orchid Encyclia_citrina Cattleya_citrina,Mexican epiphytic orchid with glaucous grey-green leaves and lemon- to golden-yellow flowers appearing only partially opened; sometimes placed in genus Cattleya
+78143,tulip_tree tulip_poplar yellow_poplar canary_whitewood Liriodendron_tulipifera,tall North American deciduous timber tree having large tulip-shaped greenish yellow flowers and conelike fruit; yields soft white woods used especially for cabinet work
+78144,tulipwood,the variegated or showily striped ornamental wood of various tulipwood trees
+78145,tulipwood true_tulipwood whitewood white_poplar yellow_poplar,light easily worked wood of a tulip tree; used for furniture and veneer
+78146,tulipwood_tree,any of various trees yielding variously colored woods similar to true tulipwood
+78147,tulle,a fine (often starched) net used for veils or tutus or gowns
+78148,tumble,an acrobatic feat of rolling or turning end over end
+78149,tumble-dryer tumble_drier,a clothes dryer that spins wet clothes inside a cylinder with heated air
+78150,tumblebug,any of various dung beetles
+78151,tumbler,a gymnast who performs rolls and somersaults and twists etc.
+78152,tumbler,a movable obstruction in a lock that must be adjusted to a given position (as by a key) before the bolt can be thrown
+78153,tumbler,a glass with a flat bottom but no handle or stem; originally had a round bottom
+78154,tumbleweed,any plant that breaks away from its roots in autumn and is driven by the wind as a light rolling mass
+78155,tumbleweed Amaranthus_albus Amaranthus_graecizans,bushy plant of western United States
+78156,tumbrel tumbril,a farm dumpcart for carrying dung; carts of this type were used to carry prisoners to the guillotine during the French Revolution
+78157,tumefaction,the process of tumefying; the organic process whereby tissue becomes swollen by the accumulation of fluid within it
+78158,tumescence,tumidity resulting from the presence of blood or other fluid in the tissues
+78159,tumidity tumidness,slight swelling of an organ or part
+78160,tumor tumour neoplasm,an abnormal new mass of tissue that serves no purpose
+78161,tumor_necrosis_factor tumour_necrosis_factor TNF,a proinflammatory cytokine that is produced by white blood cells (monocytes and macrophages); has an antineoplastic effect but causes inflammation (as in rheumatoid arthritis)
+78162,tumor_suppressor_gene,a suppressor gene that blocks unscheduled cell division
+78163,tumor_virus,a cell-free filtrate held to be a virus responsible for a specific neoplasm
+78164,tumult tumultuousness uproar garboil,a state of commotion and noise and confusion
+78165,tumult turmoil,violent agitation
+78166,tun,a large cask especially one holding a volume equivalent to 2 butts or 252 gals
+78167,tuna Anguilla_sucklandii,New Zealand eel
+78168,tuna Opuntia_tuna,tropical American prickly pear of Jamaica
+78169,tuna tuna_fish tunny,important warm-water fatty fish of the genus Thunnus of the family Scombridae; usually served as steaks
+78170,tuna tunny,any very large marine food and game fish of the genus Thunnus; related to mackerel; chiefly of warm waters
+78171,tuna_fish_salad tuna_salad,salad composed primarily of chopped canned tuna fish
+78172,tuna_oil,an oil obtained from tuna
+78173,tunaburger,a sandwich that resembles a hamburger but made with tuna instead of beef
+78174,tundra,a vast treeless plain in the Arctic regions where the subsoil is permanently frozen
+78175,tundra_soil,a black mucky soil with a frozen subsoil that is characteristic of Arctic and subarctic regions
+78176,tundra_swan Cygnus_columbianus,swan that nests in tundra regions of the New and Old Worlds
+78177,tune,the property of producing accurately a note of a given pitch; "he cannot sing in tune"; "the clarinet was out of tune"
+78178,tune,the adjustment of a radio receiver or other circuit to a required frequency
+78179,tune melody air strain melodic_line line melodic_phrase,a succession of notes forming a distinctive sequence; "she was humming an air from Beethoven"
+78180,tune-up,adjustments made to an engine to improve its performance
+78181,tuner piano_tuner,someone who tunes pianos
+78182,tung_oil Chinese_wood_oil,a yellow oil obtained from the seeds of the tung tree
+78183,tung_tree tung tung-oil_tree Aleurites_fordii,Chinese tree bearing seeds that yield tung oil
+78184,tungstate,a salt of tungstic acid
+78185,tungsten wolfram W atomic_number_74,a heavy grey-white metallic element; the pure form is used mainly in electrical applications; it is found in several ores including wolframite and scheelite
+78186,tungsten_steel wolfram_steel,a very hard heat-resistant steel containing tungsten
+78187,tungstic_acid,an oxyacid of tungsten (often polymeric in nature) formed by neutralizing alkaline tungstate solutions
+78188,tunic,any of a variety of loose fitting cloaks extending to the hips or knees
+78189,tunic tunica adventitia,an enveloping or covering membrane or layer of body tissue
+78190,tunica_albuginea_testes,whitish cover of the testicle
+78191,tunicate urochordate urochord,primitive marine animal having a saclike unsegmented body and a urochord that is conspicuous in the larva
+78192,tuning,(music) calibrating something (an instrument or electronic circuit) to a standard frequency
+78193,tuning_fork,a metal implement with two prongs that gives a fixed tone when struck; used to tune musical instruments
+78194,tunnel,a passageway through or under something, usually underground (especially one for trains or cars); "the tunnel reduced congestion at that intersection"
+78195,tunnel_vision,visual impairment involving a loss of peripheral vision
+78196,tupelo,pale soft wood of a tupelo tree especially the water gum
+78197,tupelo tupelo_tree,any of several gum trees of swampy areas of North America
+78198,tupik tupek sealskin_tent,tent that is an Eskimo summer dwelling
+78199,turban,a traditional Muslim headdress consisting of a long scarf wrapped around the head
+78200,turban_squash,large squash shaped somewhat like a turban usually with a rounded central portion protruding from the blossom end
+78201,turban_squash Cucurbita_maxima_turbaniformis,squash plants bearing hard-shelled fruit shaped somewhat like a turban with a rounded central portion protruding from the end opposite the stem
+78202,turbidity turbidness,muddiness created by stirring up sediment or having foreign particles suspended
+78203,turbinate_bone turbinate turbinal,any of the scrolled spongy bones of the nasal passages in man and other vertebrates
+78204,turbine,rotary engine in which the kinetic energy of a moving fluid is converted into mechanical energy by causing a bladed rotor to rotate
+78205,turbogenerator,generator consisting of a steam turbine coupled to an electric generator for the production of electric power
+78206,turbot,flesh of a large European flatfish
+78207,turbot Psetta_maxima,a large brownish European flatfish
+78208,turbulence,instability in the atmosphere
+78209,turbulence turbulency,unstable flow of a liquid or gas
+78210,turbulence upheaval Sturm_und_Drang,a state of violent disturbance and disorder (as in politics or social conditions generally); "the industrial revolution was a period of great turbulence"
+78211,turbulent_flow,flow in which the velocity at any point varies erratically
+78212,tureen,large deep serving dish with a cover; for serving soups and stews
+78213,turf,the territory claimed by a juvenile gang as its own
+78214,turf,range of jurisdiction or influence; "a bureaucracy...chiefly concerned with turf...and protecting the retirement system"
+78215,turf sod sward greensward,surface layer of ground containing a mat of grass and grass roots
+78216,turf_war,a bitter struggle for territory or power or control or rights; "a turf war erupted between street gangs"; "the president's resignation was the result of a turf war with the board of directors"
+78217,turfing_daisy Tripleurospermum_oreades_tchihatchewii Matricaria_oreades,mat-forming perennial herb of Asia Minor; sometimes included in genus Matricaria
+78218,turfing_daisy Tripleurospermum_tchihatchewii Matricaria_tchihatchewii,low densely tufted perennial herb of Turkey having small white flowers; used as a ground cover in dry places; sometimes included in genus Matricaria
+78219,turgidity turgidness flatulence,pompously embellished language
+78220,turgor,(biology) the normal rigid state of fullness of a cell or blood vessel or capillary resulting from pressure of the contents against the wall or membrane
+78221,turkey,flesh of large domesticated fowl usually roasted
+78222,turkey Meleagris_gallopavo,large gallinaceous bird with fan-shaped tail; widely domesticated for food
+78223,turkey bomb dud,an event that fails badly or is totally ineffectual; "the first experiment was a real turkey"; "the meeting was a dud as far as new business was concerned"
+78224,turkey_cock gobbler tom tom_turkey,male turkey
+78225,turkey_leg turkey_drumstick,the lower joint of the leg of a turkey
+78226,turkey_stew,a stew made with turkey
+78227,turkey_stuffing,stuffing for turkey
+78228,turkey_trot,an early ragtime one-step
+78229,turkey_wing,the wing of a turkey
+78230,turmeric,ground dried rhizome of the turmeric plant used as seasoning
+78231,turmeric Curcuma_longa Curcuma_domestica,widely cultivated tropical plant of India having yellow flowers and a large aromatic deep yellow rhizome; source of a condiment and a yellow dye
+78232,turn,the act of turning away or in the opposite direction; "he made an abrupt turn away from her"
+78233,turn,taking a short walk out and back; "we took a turn in the park"
+78234,turn bout round,(sports) a division during which one team is on the offensive
+78235,turn good_turn,a favor for someone; "he did me a good turn"
+78236,turn play,(game) the activity of doing something in an agreed succession; "it is my turn"; "it is still my play"
+78237,turn turn_of_events twist,an unforeseen development; "events suddenly took an awkward turn"
+78238,turn turning,the act of changing or reversing the direction of the course; "he took a turn to the right"
+78239,turn-on,something causing excitement or stimulating interest
+78240,turn_of_phrase turn_of_expression,a distinctive spoken or written expression; "John's succinct turn of phrase persuaded her that it would not be a good idea"
+78241,turn_of_the_century,the period from about ten years before to ten years after a new century
+78242,turnaround,an area sufficiently large for a vehicle to turn around
+78243,turnaround turnaround_time,time need to prepare a vessel or ship for a return trip
+78244,turnaround turnround,act or process of unloading and loading and servicing a vessel or aircraft for a return trip
+78245,turnbuckle,an oblong metal coupling with a swivel at one end and an internal thread at the other into which a threaded rod can be screwed in order to form a unit that can be adjusted for length or tension
+78246,turncock,one employed to control water supply by turning water mains on and off
+78247,turner,a tumbler who is a member of a turnverein
+78248,turner,a lathe operator
+78249,turner,one of two persons who swing ropes for jumpers to skip over in the game of jump rope
+78250,turner food_turner,cooking utensil having a flat flexible part and a long handle; used for turning or serving food
+78251,turnery,workshop where objects are made on a lathe
+78252,turnery,products made on a lathe
+78253,turning,a shaving created when something is produced by turning it on a lathe
+78254,turning,the end-product created by shaping something on a lathe
+78255,turning,the activity of shaping something on a lathe
+78256,turning,act of changing in practice or custom; "the law took many turnings over the years"
+78257,turning turn,a movement in a new direction; "the turning of the wind"
+78258,turnip,root of any of several members of the mustard family
+78259,turnip white_turnip Brassica_rapa,widely cultivated plant having a large fleshy edible white or yellow root
+78260,turnip_bed,a bed in which turnips are growing
+78261,turnip_greens,tender leaves of young white turnips
+78262,turnip_plant,any of several widely cultivated plants having edible roots
+78263,turnoff,a side road where you can turn off; "I missed the turnoff and went 15 miles out of my way"
+78264,turnoff negative_stimulation,something causing antagonism or loss of interest
+78265,turnout,the group that gathers together for a particular occasion; "a large turnout for the meeting"
+78266,turnout,attendance for a particular event or purpose (as to vote in an election); "the turnout for the rally"
+78267,turnout,(ballet) the outward rotation of a dancer's leg from the hip
+78268,turnout widening,a part of a road that has been widened to allow cars to pass or park
+78269,turnover,a dish made by folding a piece of pastry over a filling
+78270,turnpike,(from 16th to 19th centuries) gates set across a road to prevent passage until a toll had been paid
+78271,turnpike toll_road,an expressway on which tolls are collected
+78272,turnspit,a roasting spit that can be turned
+78273,turnstile,a gate consisting of a post that acts as a pivot for rotating arms; set in a passageway for controlling the persons entering
+78274,turnstone,migratory shorebirds of the plover family that turn over stones in searching for food
+78275,turntable,a rotatable platform with a track; used to turn locomotives and cars
+78276,turntable,a circular horizontal platform that rotates a phonograph record while it is being played
+78277,turntable lazy_Susan,a revolving tray placed on a dining table
+78278,turnverein,a club of tumblers or gymnasts
+78279,turpentine gum_terpentine,obtained from conifers (especially pines)
+78280,turpentine oil_of_turpentine spirit_of_turpentine turps,volatile liquid distilled from turpentine oleoresin; used as paint thinner and solvent and medicinally
+78281,turpentine_camphor_weed camphorweed vinegarweed Trichostema_lanceolatum,aromatic plant of western United States
+78282,turquoise,a blue to grey green mineral consisting of copper aluminum phosphate; "blue turquoise is valued as a gemstone"
+78283,turreae,any of numerous trees and shrubs grown for their beautiful glossy foliage and sweetly fragrant starry flowers
+78284,turret,a small tower extending above a building
+78285,turret_clock,a clock with more than one dial to show the time in all directions from a tower
+78286,turtle,any of various aquatic and land reptiles having a bony shell and flipper-like limbs for swimming
+78287,turtle_soup green_turtle_soup,soup usually made of the flesh of green turtles
+78288,turtledove,any of several Old World wild doves
+78289,turtleneck turtle polo-neck,a sweater or jersey with a high close-fitting collar
+78290,turtleneck_collar polo-neck_collar,a high close-fitting turnover collar
+78291,turtler,someone whose occupation is hunting turtles
+78292,tushery,writing of poor quality; characterized by affected choice of archaic words
+78293,tusk,a long pointed tooth specialized for fighting or digging; especially in an elephant or walrus or hog
+78294,tusker,any mammal with prominent tusks (especially an elephant or wild boar)
+78295,tussah tusseh tussur tussore tusser Antheraea_mylitta,oriental moth that produces brownish silk
+78296,tussock_bellflower spreading_bellflower Campanula_carpatica,European perennial bellflower that grows in clumps with spreading stems and blue or white flowers
+78297,tussock_caterpillar,larva of a tussock moth
+78298,tutee,learns from a tutor
+78299,tutelage tuition tutorship,teaching pupils individually (usually by a tutor hired privately)
+78300,tutorial,a session of intensive tuition given by a tutor to an individual or to a small number of students
+78301,tutti-frutti,ice cream containing chopped candied fruits
+78302,tv_announcer television_announcer,an announcer on television
+78303,twaddler,someone who twaddles; someone who writes or talks twaddle
+78304,twang,a sharp vibrating sound (as of a plucked string)
+78305,twang nasal_twang,exaggerated nasality in speech (as in some regional dialects)
+78306,twayblade,an orchid of the genus Liparis having a pair of leaves
+78307,twayblade Listera_ovata,orchid having a pair of ovate leaves and a long slender raceme of green flowers sometimes tinged red-brown; Europe to central Asia
+78308,tweed,thick woolen fabric used for clothing; originated in Scotland
+78309,tweediness,an informal, homely, outdoor look characteristic of those who wear tweeds
+78310,tweet,a weak chirping sound as of a small bird
+78311,tweeter,a loudspeaker that reproduces higher audio frequency sounds; "the sound system had both tweeters and woofers"
+78312,twelfth,position 12 in a countable series of things
+78313,twelve 12 XII dozen,the cardinal number that is the sum of eleven and one
+78314,twelve-tone_music 12-tone_music twelve-tone_system 12-tone_system,a type of serial music introduced by Arnold Schoenberg; uses a tone row formed by the twelve semitones of the chromatic scale (and inverted or backward versions of the row)
+78315,twenties 1920s,the decade from 1920 to 1929
+78316,twenties mid-twenties,the time of life between 20 and 30
+78317,twentieth,position 20 in a countable series of things
+78318,twentieth_century,the century from 1901 to 2000
+78319,twenty 20 XX,the cardinal number that is the sum of nineteen and one
+78320,twenty-eight 28 XXVIII,the cardinal number that is the sum of twenty-seven and one
+78321,twenty-five 25 XXV,the cardinal number that is the sum of twenty-four and one
+78322,twenty-four 24 XXIV two_dozen,the cardinal number that is the sum of twenty-three and one
+78323,twenty-nine 29 XXIX,the cardinal number that is the sum of twenty-eight and one
+78324,twenty-one 21 XXI,the cardinal number that is the sum of twenty and one
+78325,twenty-seven 27 XXVII,the cardinal number that is the sum of twenty-six and one
+78326,twenty-six 26 XXVI,the cardinal number that is the sum of twenty-five and one
+78327,twenty-three 23 XXIII,the cardinal number that is the sum of twenty-two and one
+78328,twenty-twenty 20/20,normal visual acuity, as measured by the ability to read charts at a distance of 20 feet
+78329,twenty-two .22,a .22 caliber firearm (pistol or rifle)
+78330,twenty-two 22 XXII,the cardinal number that is the sum of twenty-one and one
+78331,twenty-two_pistol,a .22-caliber pistol
+78332,twenty-two_rifle,a .22-caliber rifle
+78333,twenty_dollar_bill twenty,a United States bill worth 20 dollars
+78334,twerp twirp twit,someone who is regarded as contemptible
+78335,twiddle,a series of small (usually idle) twists or turns
+78336,twiddler fiddler,someone who manipulates in a nervous or unconscious manner
+78337,twig_blight,a disease of the ends of twigs of woody plants
+78338,twilight,a condition of decline following successes; "in the twilight of the empire"
+78339,twilight,the diffused light from the sky when the sun is below the horizon but its rays are refracted by the atmosphere of the earth
+78340,twilight dusk gloaming gloam nightfall evenfall fall crepuscule crepuscle,the time of day immediately following sunset; "he loved the twilight"; "they finished before the fall of night"
+78341,twilight_sleep,a state of general anesthesia in which the person retains a slight degree of consciousness; can be induced by injection of scopolamine or morphine
+78342,twilight_zone,the lowest level of the ocean to which light can reach
+78343,twilight_zone no_man's_land,the ambiguous region between two categories or states or conditions (usually containing some features of both); "but there is still a twilight zone, the tantalizing occurrences that are probably noise but might possibly be a signal"; "in the twilight zone between humor and vulgarity"; "in that no man's land between negotiation and aggression"
+78344,twill,a cloth with parallel diagonal lines or ribs
+78345,twill twill_weave,a weave used to produce the effect of parallel diagonal ribs
+78346,twin,either of two offspring born at the same time from the same pregnancy
+78347,twin_bed,one of a pair of identical beds
+78348,twin_bill doubleheader double_feature,two games instead of one (especially in baseball when the same two teams play two games on the same day)
+78349,twinberry Lonicera_involucrata,shrubby honeysuckle with purple flowers; western North America
+78350,twiner,someone who intertwines (e.g. threads) or forms something by twisting or interlacing
+78351,twinflower Linnaea_borealis,creeping evergreen subshrub of the northern parts of Europe and Asia with delicate fragrant tubular bell-shaped usually pink flowers borne in pairs
+78352,twinge,a sharp stab of pain
+78353,twinjet,a jet plane propelled by two jet engines
+78354,twinkle scintillation sparkling,a rapid change in brightness; a brief spark or flash
+78355,twinkler,an object that emits or reflects light in an intermittent flickering manner
+78356,twins,(mineralogy) two interwoven crystals that are mirror images on each other
+78357,twist,social dancing in which couples vigorously twist their hips and arms in time to the music; was popular in the 1960s; "they liked to dance the twist"
+78358,twist turn,turning or twisting around (in place); "with a quick twist of his head he surveyed the room"
+78359,twist wrench,a jerky pulling movement
+78360,twist_bit twist_drill,a bit or drill having deep helical grooves
+78361,twit taunt taunting,aggravation by deriding or mocking or criticizing
+78362,twitch twitching vellication,a sudden muscle spasm; especially one caused by a nervous condition
+78363,twitterer,a bird that twitters
+78364,two 2 II deuce,the cardinal number that is the sum of one and one or a numeral representing this number
+78365,two-by-four,a timber measuring (slightly under) 2 inches by 4 inches in cross section
+78366,two-dimensionality flatness planeness,the property of having two dimensions
+78367,two-eyed_violet heartsease Viola_ocellata,violet of Pacific coast of North America having white petals tinged with yellow and deep violet
+78368,two-handed_backhand,a backhand shot made holding the racquet in both hands
+78369,two-handed_saw whipsaw two-man_saw lumberman's_saw,a saw with handles at both ends; intended for use by two people
+78370,two-hitter 2-hitter,a game in which a pitcher allows the opposing team only 2 hits
+78371,two-man_tent,a tent designed for occupancy by two persons
+78372,two-note_call,a birdcall having two notes; "the two-note call of the cuckoo"
+78373,two-piece two-piece_suit lounge_suit,a business suit consisting of a matching jacket and skirt or trousers
+78374,two-spotted_ladybug Adalia_bipunctata,red ladybug with a black spot on each wing
+78375,two-step,a ballroom dance in duple meter; marked by sliding steps
+78376,two-thirds,two of three equal parts of a divisible whole
+78377,two-tier_bid,a takeover bid where the acquirer offers to pay more for the shares needed to gain control than for the remaining shares
+78378,two-timer,someone who deceives a lover or spouse by carrying on a sexual relationship with somebody else
+78379,two-toed_sloth unau unai Choloepus_didactylus,relatively small fast-moving sloth with two long claws on each front foot
+78380,two-toed_sloth unau unai Choloepus_hoffmanni,a sloth of Central America that has two long claws on each forefoot and three long claws on each hindfoot
+78381,two-way_street,a street on which vehicular traffic can move in either of two directions; "you have to look both ways crossing a two-way street"
+78382,two-year-old_horse two_year_old,a racehorse that is two years old
+78383,two_dollar_bill,a United States bill worth 2 dollars
+78384,twofer,an offer of two for the price of one
+78385,twofer,a coupon that allows the holder to purchase two items (as two tickets to a play) for the price of one
+78386,twopence tuppence,a former United Kingdom silver coin; United Kingdom bronze decimal coin worth two pennies
+78387,tying ligature,the act of tying or binding things together
+78388,tyiyn,100 tyiyn equal 1 som in Kyrgyzstan
+78389,tympanic_bone,the bone enclosing the middle ear
+78390,tympanic_vein,veins from the tympanic cavity that empty into the retromandibular vein
+78391,tympanist timpanist,a person who plays the kettledrums
+78392,tympanites,distension of the abdomen that is caused by the accumulation of gas in the intestines or the peritoneal cavity
+78393,tympanitis,inflammation of the inner ear
+78394,tympanoplasty,surgical correction or repair of defects or injuries in the eardrum or the bones of the middle ear
+78395,type,(biology) the taxonomic group whose characteristics are used to define the next higher taxon
+78396,type,printed characters; "small type is hard to read"
+78397,type,all of the tokens of the same symbol; "the word `element' contains five different types of character"
+78398,type,a subdivision of a particular kind of thing; "what type of sculpture do you prefer?"
+78399,type,a small metal block bearing a raised character on one end; produces a printed character when inked and pressed on paper; "he dropped a case of type, so they made him pick them up"
+78400,type_II_diabetes non-insulin-dependent_diabetes_mellitus NIDDM non-insulin-dependent_diabetes ketosis-resistant_diabetes_mellitus ketosis-resistant_diabetes ketoacidosis-resistant_diabetes_mellitus ketoacidosis-resistant_diabetes adult-onset_diabetes_mellitus adult-onset_diabetes maturity-onset_diabetes_mellitus maturity-onset_diabetes mature-onset_diabetes,mild form of diabetes mellitus that develops gradually in adults; can be precipitated by obesity or severe stress or menopause or other factors; can usually be controlled by diet and hypoglycemic agents without injections of insulin
+78401,type_I_diabetes insulin-dependent_diabetes_mellitus IDDM juvenile-onset_diabetes juvenile_diabetes growth-onset_diabetes ketosis-prone_diabetes ketoacidosis-prone_diabetes autoimmune_diabetes,severe diabetes mellitus with an early onset; characterized by polyuria and excessive thirst and increased appetite and weight loss and episodic ketoacidosis; diet and insulin injections are required to control the disease
+78402,type_family,a complete set of type suitable for printing text
+78403,type_genus,(biology) genus from which the name of a family or subfamily is formed; it is not necessarily the most representative genus but often the largest or best known or earliest described
+78404,type_metal,an alloy of tin and lead and antimony used to make printing type
+78405,type_slug slug,a strip of type metal used for spacing
+78406,type_species,(biology) the species that best exemplifies the essential characteristics of the genus to which it belongs
+78407,type_specimen holotype,the original specimen from which the description of a new species is made
+78408,typescript,typewritten matter especially a typewritten copy of a manuscript
+78409,typesetting_machine,a printer that sets textual material in type
+78410,typewriter,hand-operated character printer for printing written messages one character at a time
+78411,typewriter_carriage,a carriage for carrying a sheet of paper
+78412,typewriter_font constant-width_font fixed-width_font monospaced_font,a typeface is which each character is given the same width (as by a typewriter)
+78413,typewriter_keyboard,a keyboard for manually entering characters to be printed
+78414,typewriter_paper typing_paper,writing paper suitable for use in a typewriter
+78415,typhoid typhoid_fever enteric_fever,serious infection marked by intestinal inflammation and ulceration; caused by Salmonella typhosa ingested with food or water
+78416,typhoid_bacillus Salmonella_typhosa Salmonella_typhi,a form of salmonella that causes typhoid fever
+78417,typhoid_bacteriophage,a bacteriophage specific for the bacterium Salmonella typhi
+78418,typhoon,a tropical cyclone occurring in the western Pacific or Indian oceans
+78419,typhus typhus_fever,rickettsial disease transmitted by body lice and characterized by skin rash and high fever
+78420,typical_jerboa,small nocturnal jumping rodent with long hind legs; of arid parts of Asia and northern Africa
+78421,typicality,the state of being that is typical
+78422,typification,the act of representing by a type or symbol; the action of typifying
+78423,typification exemplification,a representational or typifying form or model
+78424,typing typewriting,writing done with a typewriter
+78425,typing_pool,a group of typists who can work for different persons
+78426,typist,someone paid to operate a typewriter
+78427,typography,the craft of composing type and printing from it
+78428,typography composition,art and technique of printing with movable type
+78429,typology,classification according to general type
+78430,tyramine,amino acid derived from tyrosine; has a sympathomimetic action; found in chocolate and cola drinks and ripe cheese and beer; "patients taking MAOIs should avoid foods containing tyramine"
+78431,tyrannicide,killing a tyrant
+78432,tyrannid,a passerine bird of the suborder Tyranni
+78433,tyrannosaur tyrannosaurus Tyrannosaurus_rex,large carnivorous bipedal dinosaur having enormous teeth with knifelike serrations; may have been a scavenger rather than an active predator; later Cretaceous period in North America
+78434,tyrant,in ancient Greece, a ruler who had seized power without legal right to it
+78435,tyrant,any person who exercises power in a cruel way; "his father was a tyrant"
+78436,tyrant autocrat despot,a cruel and oppressive dictator
+78437,tyrocidine tyrocidin,a basic polypeptide antibiotic derived from a soil bacterium; a major component of tyrothricin
+78438,tyrolean tirolean,soft green felt hat with a feather or brush cockade
+78439,tyrosine,an amino acid found in most proteins; a precursor of several hormones
+78440,tyrosine_kinase_inhibitor,a drug used in cases of chronic myeloid leukemia
+78441,tyrosinemia,autosomal recessive defect in tyrosine metabolism resulting in liver and kidney disturbances and mental retardation
+78442,tyrothricin,a mixture of antibiotics applied locally to infections caused by Gram-positive bacteria
+78443,u-turn,complete reversal of direction of travel
+78444,uakari,medium-sized tree-dwelling monkey of the Amazon basin; only New World monkey with a short tail
+78445,ubiety,the state of existing and being localized in space
+78446,ubiquinone coenzyme_Q,any of several quinones found in living cells and that function as coenzymes that transfer electrons from one molecule to another in cell respiration
+78447,ubiquity ubiquitousness omnipresence,the state of being everywhere at once (or seeming to be everywhere at once)
+78448,udder bag,mammary gland of bovids (cows and sheep and goats)
+78449,ugliness,qualities of appearance that do not give pleasure to the senses
+78450,ugly_duckling,an ugly or unpromising child who grows into a beautiful or worthy person
+78451,ukase,an edict of the Russian tsar
+78452,uke ukulele,a small guitar having four strings
+78453,ulalgia,pain in the gums
+78454,ulatrophia,recession of the gums
+78455,ulcer ulceration,a circumscribed inflammatory and often suppurating lesion on the skin or an internal mucous surface resulting in necrosis of tissue
+78456,ulceration,the process of ulcer formation; the process of becoming ulcerated
+78457,ulcerative_colitis,a serious chronic inflammatory disease of the large intestine and rectum characterized by recurrent episodes of abdominal pain and fever and chills and profuse diarrhea
+78458,ulema ulama,the body of Mullahs (Muslim scholars trained in Islam and Islamic law) who are the interpreters of Islam's sciences and doctrines and laws and the chief guarantors of continuity in the spiritual and intellectual history of the Islamic community
+78459,ulemorrhagia,bleeding of the gums
+78460,ulitis,inflammation of the gums
+78461,ullage,the amount that a container (as a wine bottle or tank) lacks of being full
+78462,ulna elbow_bone,the inner and longer of the two bones of the human forearm
+78463,ulnar_artery arteria_ulnaris,large artery that branches from the brachial artery to supply the muscles of the forearm and wrist and hand
+78464,ulnar_nerve cubital_nerve nervus_ulnaris,a nerve running along the inner side of the arm and passing near the elbow; supplies intrinsic muscles of the hand and the skin of the medial side of the hand
+78465,ulnar_vein vena_ulnaris,any of several veins of the forearm
+78466,ulster,loose long overcoat of heavy fabric; usually belted
+78467,ulteriority,the quality of being ulterior; "their conversation was limited to ulteriorities"; "a terrible feeling of ulteriority"; "his stories were too susceptible to ulteriority"
+78468,ultima,the last syllable in a word
+78469,ultimacy ultimateness,the state or degree of being ultimate; the final or most extreme in degree or size or time or distance; "the ultimacy of these social values"
+78470,ultimate,the finest or most superior quality of its kind; "the ultimate in luxury"
+78471,ultimate_frisbee,a game between two teams whose players try to toss a Frisbee to one another until they cross the opponents goal; possession changes hands when the Frisbee is intercepted or touches the ground or goes out of bounds
+78472,ultimatum,a final peremptory demand
+78473,ultracentrifugation,centrifugation at very high speeds
+78474,ultracentrifuge,a high speed centrifuge used to determine the relative molecular masses of large molecules in high polymers and proteins
+78475,ultrahigh_frequency UHF,300 to 3000 megahertz
+78476,ultramarine,a vivid blue to purple-blue color
+78477,ultramarine ultramarine_blue,blue pigment made of powdered lapis lazuli
+78478,ultramicroscope dark-field_microscope,light microscope that uses scattered light to show particles too small to see with ordinary microscopes
+78479,ultramontane,a Roman Catholic who advocates ultramontanism (supreme papal authority in matters of faith and discipline)
+78480,ultramontanism,(Roman Catholic Church) the policy that the absolute authority of the church should be vested in the pope
+78481,ultrasound,very high frequency sound; used in ultrasonography
+78482,ultraviolet ultraviolet_radiation ultraviolet_light ultraviolet_illumination UV,radiation lying in the ultraviolet range; wave lengths shorter than light but longer than X rays
+78483,ultraviolet_lamp ultraviolet_source,any source of illumination that emits ultraviolet radiation
+78484,ultraviolet_spectrum,the spectrum of ultraviolet radiation
+78485,umbel,flat-topped or rounded inflorescence characteristic of the family Umbelliferae in which the individual flower stalks arise from about the same point; youngest flowers are at the center
+78486,umbellifer umbelliferous_plant,any of numerous aromatic herbs of the family Umbelliferae
+78487,umber,an earth pigment
+78488,umbilical_cord umbilical,membranous duct connecting the fetus with the placenta
+78489,umbilical_hernia omphalocele,protrusion of the intestine and omentum through a hernia in the abdominal wall near the navel; usually self correcting after birth
+78490,umbilical_vein vena_umbilicalis,a vein in the umbilical cord; returns nutrient blood from the placenta to the fetus
+78491,umbo,a slight rounded elevation where the malleus attaches to the eardrum
+78492,umbra,a region of complete shadow resulting from total obstruction of light
+78493,umbrage offense offence,a feeling of anger caused by being offended; "he took offence at my question"
+78494,umbrella,a lightweight handheld collapsible canopy
+78495,umbrella,a formation of military planes maintained over ground operations or targets; "an air umbrella over England"
+78496,umbrella,having the function of uniting a group of similar things; "the Democratic Party is an umbrella for many liberal groups"; "under the umbrella of capitalism"
+78497,umbrella_bird Cephalopterus_ornatus,black tropical American bird having a large overhanging crest and long feathered wattle
+78498,umbrella_fern fan_fern Sticherus_flabellatus Gleichenia_flabellata,large Australasian fern with fanlike repeatedly forked fronds; sometimes placed in genus Gleichenia
+78499,umbrella_plant Eriogonum_allenii,late blooming perennial plant of shale barrens of Virginia having flowers in flat-topped clusters
+78500,umbrella_plant Indian_rhubarb Darmera_peltata Peltiphyllum_peltatum,rhizomatous perennial herb with large dramatic peltate leaves and white to bright pink flowers in round heads on leafless stems; colonizes stream banks in the Sierra Nevada in California
+78501,umbrella_plant umbrella_sedge Cyperus_alternifolius,African sedge widely cultivated as an ornamental water plant for its terminal umbrellalike cluster of slender grasslike leaves
+78502,umbrella_tent,a small tent with a single supporting pole and radiating metal ribs
+78503,umbrella_tree Schefflera_actinophylla Brassaia_actinophylla,erect evergreen shrub or small tree of Australia and northern New Guinea having palmately compound leaves
+78504,umbrella_tree umbrella_magnolia elkwood elk-wood Magnolia_tripetala,small deciduous tree of eastern North America having creamy white flowers and large leaves in formations like umbrellas at the ends of branches
+78505,umbrellawort,a plant of the genus Mirabilis
+78506,umlaut,a diacritical mark (two dots) placed over a vowel to indicate a change in sound in some languages
+78507,umpirage,mediation by an umpire
+78508,umpirage officiation officiating refereeing,the act of umpiring; "the officiating was excellent"
+78509,umpire ump,an official at a baseball game
+78510,unabridged_dictionary unabridged,a dictionary that has not been shortened by the omitting terms or definitions; a comprehensive dictionary
+78511,unacceptability unacceptableness,unsatisfactoriness by virtue of not conforming to approved standards
+78512,unadaptability,the inability to change or be changed to fit changed circumstances
+78513,unaffectedness,not affected; a personal manner that is not consciously constrained
+78514,unalterability,the quality of not being alterable
+78515,unambiguity unequivocalness,clarity achieved by the avoidance of ambiguity
+78516,unanimity,everyone being of one mind
+78517,unappetizingness unappetisingness,the property of spoiling the appetite
+78518,unapproachability,a disposition to be unapproachable; unfriendly and inaccessible
+78519,unassertiveness,diffidence about self promotion
+78520,unattainableness,the state of being unattainable
+78521,unattractiveness,an ugliness of appearance that is not appealing to viewers
+78522,unbecomingness,the quality of being unbecoming
+78523,unbelief disbelief,a rejection of belief
+78524,unbreakableness,a consistency of something that does not break under pressure
+78525,unceremoniousness,an unceremonial manner
+78526,uncertainty uncertainness precariousness,being unsettled or in doubt or dependent on chance; "the uncertainty of the outcome"; "the precariousness of his income"
+78527,uncertainty_principle indeterminacy_principle,(quantum theory) the theory that it is impossible to measure both energy and time (or position and momentum) completely accurately at the same time
+78528,uncheerfulness,not conducive to cheer or good spirits
+78529,uncial,a style of orthography characterized by somewhat rounded capital letters; found especially in Greek and Latin manuscripts of the 4th to 8th centuries
+78530,uncle,a source of help and advice and encouragement; "he played uncle to lonely students"
+78531,uncle,the brother of your father or mother; the husband of your aunt
+78532,uncleanliness,lack of cleanly habits
+78533,unclearness,incomprehensibility as a result of not being clear
+78534,uncommonness,extraordinariness as a consequence of being marked by an uncommon or superlative quality
+78535,uncommonness,extraordinariness as a consequence of being rare and seldom encountered
+78536,uncommunicativeness,the trait of being uncommunicative
+78537,unconcern,a feeling of lack of concern
+78538,unconfessed,people who have not confessed; "the unconfessed cannot be forgiven"
+78539,uncongeniality,a disposition not to be congenial
+78540,unconnectedness,the lack of a connection between things
+78541,unconscientiousness,the quality of being willing to ignore the dictates of conscience
+78542,unconscientiousness,the trait of not being painstaking or careful
+78543,unconscious_mind unconscious,that part of the mind wherein psychic activity takes place of which the person is unaware
+78544,unconsciousness,a state lacking normal awareness of the self or environment
+78545,unconventionality,originality by virtue of being unconventional
+78546,unconventionality,unorthodoxy by virtue of being unconventional
+78547,uncreativeness,a lack of creativity
+78548,unction inunction,anointing as part of a religious ceremony or healing ritual
+78549,unction smarm fulsomeness,excessive but superficial compliments given with affected charm
+78550,uncus,(biology) any hook-shaped process or part
+78551,undecagon,an eleven-sided polygon
+78552,undecylenic_acid,an acid that is a component of perspiration
+78553,undependability undependableness unreliability unreliableness,the trait of not being dependable or reliable
+78554,underachievement,poorer than expected performance (poorer than might have been predicted from intelligence tests)
+78555,underachiever underperformer nonachiever,a student who does not perform as well as expected or as well as the IQ indicates
+78556,underbelly,lower side; "the underbellies of clouds"
+78557,underbelly,the quality of being weak or unprotected; "the soft underbelly of the Axis"- Winston Churchill
+78558,underbelly underbody,the soft belly or underside of an animal's body
+78559,underboss,an assistant or second-in-command to a chief (especially in a crime syndicate)
+78560,underbrush undergrowth underwood,the brush (small trees and bushes and ferns etc.) growing beneath taller trees in a wood or forest
+78561,undercarriage,framework that serves as a support for the body of a vehicle
+78562,undercharge,a price that is too low
+78563,undercharge,an insufficient charge
+78564,undercoat underfur,thick soft fur lying beneath the longer and coarser guard hair
+78565,undercoat underseal,seal consisting of a coating of a tar or rubberlike material on the underside of a motor vehicle to retard corrosion
+78566,undercover_operation,an operation involving secret work within a community or institution
+78567,undercut,the material removed by a cut made underneath
+78568,undercut,a notch cut in the trunk of tree in order to determine the direction of its fall
+78569,undercut,a cut made underneath to remove material
+78570,underdevelopment,state of inadequate development; "much poverty can be traced to the underdevelopment of industry"
+78571,underdevelopment,(photography) inadequate processing of film resulting in inadequate contrast
+78572,underdog,one at a disadvantage and expected to lose
+78573,underestimate underestimation underrating underreckoning,an estimation that is too low; an estimate that is less than the true or actual value
+78574,underevaluation,an appraisal that underestimates the value of something
+78575,underexposure,the act of exposing film to too little light or for too short a time
+78576,underexposure,inadequate publicity
+78577,underfelt,a carpet pad of thick felt
+78578,undergarment unmentionable,a garment worn under other garments
+78579,undergraduate undergrad,a university student who has not yet received a first degree
+78580,underground resistance,a secret group organized to overthrow a government or occupation force
+78581,underlip,the lower lip
+78582,undernourishment malnourishment,not having enough food to develop or function normally
+78583,underpants,an undergarment that covers the body from the waist no further than to the thighs; usually worn next to the skin
+78584,underpart,a part lying on the lower side or underneath an animal's body; "the warbler has a white throat and underparts"; "a woodland mouse with white underparts"
+78585,underpass subway,an underground tunnel or passage enabling pedestrians to cross a road or railway
+78586,underpayment,a payment smaller than needed or expected
+78587,underpayment,the act of paying less than required
+78588,underperformer,a business that is less successful than expected
+78589,underproduction,inadequate production or less than expected
+78590,underscore underline,a line drawn underneath (especially under written matter)
+78591,undersecretary,a secretary immediately subordinate to the head of a department of government
+78592,underseller,a seller that sells at a lower price than others do; "he went all over town looking for undersellers"
+78593,undershrub,a low shrub
+78594,understanding apprehension discernment savvy,the cognitive condition of someone who understands; "he has virtually no understanding of social cause and effect"
+78595,understatement,a statement that is restrained in ironic contrast to what might have been said
+78596,understudy standby,an actor able to replace a regular performer when required
+78597,undertaking,the trade of a funeral director
+78598,undertaking project task labor,any piece of work that is undertaken or attempted; "he prepared for great undertakings"
+78599,undertide undercurrent,a current below the surface of a fluid
+78600,undertone,a quiet or hushed tone of voice; "spoke in undertones"
+78601,undertone tinge,a pale or subdued color
+78602,undertone undercurrent,a subdued emotional quality underlying an utterance; implicit meaning
+78603,undertow,an inclination contrary to the strongest or prevailing feeling; "his account had a poignant undertow of regret"
+78604,undertow sea_puss sea-puss sea_purse sea-purse sea-poose,the seaward undercurrent created after waves have broken on the shore
+78605,undervaluation,too low a value or price assigned to something
+78606,underwear underclothes underclothing,undergarment worn next to the skin and under the outer garments
+78607,underwing,moth having dull forewings and brightly colored hind wings
+78608,underworld,the criminal class
+78609,undescended_testis undescended_testicle,a testis that fails to move into the scrotum as the male fetus develops; "undescended testicles have an increased risk for cancer"
+78610,undesirability,the quality possessed by something that should be avoided
+78611,undesirable,one whose presence is undesirable; "rounding up vagrants and drunks and other undesirables"
+78612,undies,women's underwear
+78613,undine,any of various female water spirits
+78614,undivided_interest undivided_right,the interest in property owned by tenants whereby each tenant has an equal right to enjoy the entire property
+78615,undoer,a seducer who ruins a woman; "she awoke in the arms of her cruel undoer"
+78616,undoer opener unfastener untier,a person who unfastens or unwraps or opens; "children are talented undoers of their shoelaces"
+78617,undoing,an act that makes a previous act of no effect (as if not done)
+78618,undress,partial or complete nakedness; "a state of undress"
+78619,undulation,wavelike motion; a gentle rising and falling in the manner of waves
+78620,undutifulness,impiety characterized by lack of devotion to duty
+78621,unearned_income unearned_revenue,personal income that you did not earn (e.g., dividends or interest or rent income)
+78622,unearned_income unearned_revenue,(accounting) income received but not yet earned (usually considered a current liability on a company's balance sheet)
+78623,unearned_increment,an unearned rise in the market value of property resulting from general market factors
+78624,unearned_run,a run that was scored as a result of an error by the other team
+78625,unemotionality emotionlessness,absence of emotion
+78626,unemployed_people unemployed,people who are involuntarily out of work (considered as a group); "the long-term unemployed need assistance"
+78627,unemployed_person,someone who is jobless
+78628,unemployment,the state of being unemployed or not having a job; "unemployment is a serious social evil"; "the rate of unemployment is an indicator of the health of an economy"
+78629,unemployment_compensation,payment by a United States agency to unemployed people
+78630,unemployment_line,a queue of people waiting for employment
+78631,unemployment_rate,the percentage of the work force that is unemployed at any given date
+78632,unenlightenment,a lack of understanding
+78633,uneven_parallel_bars uneven_bars,a pair of parallel bars set at different heights; used in women's gymnastics
+78634,unevenness,the quality of being unbalanced
+78635,unevenness variability,the quality of being uneven and lacking uniformity
+78636,unexchangeability,the quality of being incapable of exchange or interchange
+78637,unexpectedness surprisingness,extraordinariness by virtue of being unexpected; "the unexpectedness of the warm welcome"
+78638,unfairness,partiality that is not fair or equitable
+78639,unfairness inequity,injustice by virtue of not conforming with rules or standards
+78640,unfamiliarity strangeness,unusualness as a consequence of not being well known
+78641,unfavorableness unfavourableness,the quality of not being encouraging or indicative of success
+78642,unfeelingness callousness callosity hardness insensibility,devoid of passion or feeling; hardheartedness
+78643,unfitness,the quality of not being suitable; "the judges agreed on his unfitness for the appointment"
+78644,unfitness softness,poor physical condition; being out of shape or out of condition (as from a life of ease and luxury)
+78645,unfolding flowering,a developmental process; "the flowering of antebellum culture"
+78646,unformatted_capacity,(computer science) the total number of bytes on a disk including the space that will be required to format it
+78647,unfortunate unfortunate_person,a person who suffers misfortune
+78648,unfriendliness,dislike experienced as an absence of friendliness
+78649,unfriendliness,an unfriendly disposition
+78650,ungodliness godlessness,impiety by virtue of not being a godly person
+78651,ungraciousness,an offensive lack of good manners
+78652,ungradable_opposition,an opposition that has no intermediate grade; either one or the other
+78653,unguiculate unguiculate_mammal,a mammal having nails or claws
+78654,ungulate hoofed_mammal,any of a number of mammals with hooves that are superficially similar but not necessarily closely related taxonomically
+78655,unhappiness,state characterized by emotions ranging from mild discontentment to deep grief
+78656,unhealthfulness,the quality of promoting poor health
+78657,unhelpfulness,an inability to be helpful
+78658,unholiness,the quality of being unholy
+78659,unicameral_script,a script with a single case
+78660,unicorn,an imaginary creature represented as a white horse with a long horn growing from its forehead
+78661,unicycle monocycle,a vehicle with a single wheel that is driven by pedals
+78662,unicyclist,a person who rides a unicycle
+78663,unidentified_flying_object UFO flying_saucer,an (apparently) flying object whose nature is unknown; especially those considered to have extraterrestrial origins
+78664,uniform,clothing of distinctive design worn by members of a particular group as a means of identification
+78665,uniformity,a condition in which everything is regular and unvarying
+78666,uniformity uniformness,the quality of lacking diversity or variation (even to the point of boredom)
+78667,unilateral_contract,a one-sided agreement whereby you promise to do (or refrain from doing) something in return for a performance (not a promise)
+78668,unilateral_descent,line of descent traced through one side of the family
+78669,unilateralism,the doctrine that nations should conduct their foreign affairs individualistically without the advice or involvement of other nations
+78670,unilateralist,an advocate of unilateralism
+78671,unimportance,the quality of not being important or worthy of note
+78672,uninitiate,people who have not been introduced to the mysteries of some field or activity; "it diverts the attention of the uninitiate"
+78673,uninominal_system uninominal_voting_system single-member_system scrutin_uninomial_system scrutin_uninominal_voting_system,based on the principle of having only one member (as of a legislature) selected from each electoral district
+78674,uninsurability,the quality of being uninsurable; the conditions under which an insurance company will refuse to issue insurance to an applicant (based on standards set by the insurance company)
+78675,unintelligibility,incomprehensibility as a consequence of being unintelligible
+78676,uninterestingness,inability to capture or hold one's interest
+78677,uniocular_dichromat,a person who has normal vision in one eye and dichromacy in the other; very rare but very useful for experiments on color vision
+78678,union,a political unit formed from previously independent people or organizations; "the Soviet Union"
+78679,union,the occurrence of a uniting of separate parts; "lightning produced an unusual union of the metals"
+78680,union,a device on a national flag emblematic of the union of two or more sovereignties (typically in the upper inner corner)
+78681,union conglutination,healing process involving the growing together of the edges of a wound or the growing together of broken bones
+78682,union labor_union trade_union trades_union brotherhood,an organization of employees formed to bargain with the employer; "you have to join the union in order to get a job"
+78683,union sum join,a set containing all and only the members of two or more given sets; "let C be the union of the sets A and B"
+78684,union unification,the state of being joined or united or linked; "there is strength in union"
+78685,union unification uniting conjugation jointure,the act of making or becoming a single unit; "the union of opposing factions"; "he looked forward to the unification of his family for the holidays"
+78686,union_card,a card certifying membership in a labor union
+78687,union_representative,a representative for a labor union
+78688,union_shop,a company allowed to hire nonunion workers on the condition that they will join the union within a specified time
+78689,unionism trade_unionism,the system or principles and theory of labor unions
+78690,unionization unionisation,act of forming labor unions; "the issue underlying the strike was unionization"
+78691,unipolar_depression,a major depressive episode that occurs without the manic phase that occurs in the classic form of bipolar disorder
+78692,unison,corresponding exactly; "marching in unison"
+78693,unison,occurring together or simultaneously; "the two spoke in unison"
+78694,unison,(music) two or more sounds or tones at the same pitch or in octaves; "singing in unison"
+78695,unit,an individual or group or structure or other entity regarded as a structural or functional constituent of a whole; "the reduced the number of units and installations"; "the word is a basic linguistic unit"
+78696,unit,a single undivided whole; "an idea is not a unit that can be moved from one brain to another"
+78697,unit building_block,a single undivided natural thing occurring in the composition of something else; "units of nucleic acids"
+78698,unit social_unit,an organization regarded as part of a larger social group; "the coach said the offensive unit did a good job"; "after the battle the soldier had trouble rejoining his unit"
+78699,unit_cell,the smallest group of atoms or molecules whose repetition at regular intervals in three dimensions produces the lattices of a crystal
+78700,unit_character,(genetics) a character inherited on an all-or-none basis and dependent on the presence of a single gene
+78701,unit_cost,calculated cost for a given unit of a product
+78702,unit_investment_trust unit_trust,a regulated investment company consisting of professional managers who issue redeemable securities representing a portfolio of many different securities; "you can invest in a unit investment trust for as little as $1000"
+78703,unit_of_measurement unit,any division of quantity accepted as a standard of measurement or exchange; "the dollar is the United States unit of currency"; "a unit of wheat is a bushel"; "change per unit volume"
+78704,unit_of_viscosity,a unit of measurement for viscosity
+78705,unitization unitisation,the act of packaging cargo into unit loads
+78706,unitization unitisation,conversion of an investment trust into a unit investment trust
+78707,unitization unitisation,the joint development of a petroleum resource that straddles territory controlled by different companies
+78708,unitization unitisation chunking,(psychology) the configuration of smaller units of information into large coordinated units
+78709,universal,a behavioral convention or pattern characteristic of all members of a particular culture or of all human beings; "some form of religion seems to be a human universal"
+78710,universal linguistic_universal,(linguistics) a grammatical rule (or other linguistic feature) that is found in all languages
+78711,universal universal_proposition,(logic) a proposition that asserts something of all members of a class
+78712,universal_agent general_agent,someone authorized to transact every kind of business for the principal
+78713,universal_donor,a person whose type O Rh-negative blood may be safely transfused into persons with other blood types
+78714,universal_joint universal,coupling that connects two rotating shafts allowing freedom of movement in all directions; "in motor vehicles a universal joint allows the driveshaft to move up and down as the vehicle passes over bumps"
+78715,universal_quantifier,a logical quantifier of a proposition that asserts that the proposition is true for all members of a class of things
+78716,universal_set,(mathematics) the set that contains all the elements or objects involved in the problem under consideration; "all other sets are subsets of the universal set"
+78717,universal_suffrage,suffrage for all adults who are not disqualified by the laws of the country
+78718,universal_veil,membrane initially completely investing the young sporophore of various mushrooms that is ruptured by growth; represented in the mature mushroom by a volva around lower part of stem and scales on upper surface of the cap
+78719,universalism,the theological doctrine that all people will eventually be saved
+78720,universality catholicity,the quality of being universal; existing everywhere
+78721,universe existence creation world cosmos macrocosm,everything that exists anywhere; "they study the evolution of the universe"; "the biggest tree in existence"
+78722,universe universe_of_discourse,everything stated or assumed in a given discussion
+78723,university,a large and diverse institution of higher learning created to educate for life and for a profession and to grant degrees
+78724,university,the body of faculty and students at a university
+78725,university,establishment where a seat of higher learning is housed, including administrative and living quarters as well as facilities for research and teaching
+78726,unkindness,lack of sympathy
+78727,unknowingness unawareness,unconsciousness resulting from lack of knowledge or attention
+78728,unknown unknown_quantity,a variable whose values are solutions of an equation
+78729,unknown unknown_region terra_incognita,an unknown and unexplored region; "they came like angels out the unknown"
+78730,unknown_quantity,a factor in a given situation whose bearing and importance is not apparent; "I don't know what the new man will do; he's still an unknown quantity"
+78731,unlawful_carnal_knowledge criminal_congress,forbidden or tabu sexual intercourse between individuals
+78732,unlawfulness,the quality of failing to conform to law
+78733,unleaded_gasoline unleaded_petrol,gasoline that has not been treated with a lead compound
+78734,unlikelihood unlikeliness,the improbability of a specified outcome
+78735,unlikeness dissimilitude,dissimilarity evidenced by an absence of likeness
+78736,unlisted_security over_the_counter_security OTC_security,a security traded in the over-the-counter market
+78737,unloading,the labor of taking a load of something off of or out of a vehicle or ship or container etc.
+78738,unmalleability,a lack of malleability
+78739,unmarried_woman,a woman who is not married
+78740,unmindfulness heedlessness inadvertence inadvertency,the trait of forgetting or ignoring your responsibilities
+78741,unnaturalness,the quality of being unnatural or not based on natural principles
+78742,unneighborliness,an unneighborly disposition
+78743,unnoticeableness,the quality of being not easily noticed
+78744,unobserved_fire,fire for which the point of impact (the bursts) cannot be observed
+78745,unobtrusiveness,the quality of not sticking out in an unwelcome way
+78746,unoriginality,uncreativeness due to a lack of originality
+78747,unoriginality,the quality of being unoriginal
+78748,unorthodoxy heterodoxy,the quality of being unorthodox
+78749,unorthodoxy heterodoxy heresy,any opinions or doctrines at variance with the official or orthodox position
+78750,unpalatability unpalatableness,the property of being unacceptable to the mouth
+78751,unpalatability unpalatableness,the property of being unacceptable to the mind; "the policy's unpalatability caused an uproar"
+78752,unperceptiveness,the lack of insight and sympathetic understanding
+78753,unpermissiveness restrictiveness,a lack of permissiveness or indulgence and a tendency to confine behavior within certain specified limits
+78754,unpersuasiveness,inability to persuade
+78755,unpleasant_person disagreeable_person,a person who is not pleasant or agreeable
+78756,unpleasant_woman disagreeable_woman,a woman who is an unpleasant person
+78757,unpleasantness,the feeling caused by disagreeable stimuli; one pole of a continuum of states of feeling
+78758,unpleasantness,the quality of giving displeasure; "the recent unpleasantness of the weather"
+78759,unpleasingness,the quality of being unpleasant to to the senses
+78760,unpointedness,the property of having only a dull tip (if any)
+78761,unpopularity,the quality of lacking general approval or acceptance
+78762,unpredictability,lacking predictability
+78763,unpretentiousness,the quality of being natural and without pretensions
+78764,unproductiveness,the quality of lacking the power to produce
+78765,unprofitableness unprofitability,the quality of affording no gain or no benefit or no profit
+78766,unreality,the quality possessed by something that is unreal
+78767,unreality irreality,the state of being insubstantial or imaginary; not existing objectively or in fact
+78768,unrelatedness,the lack of any particular manner of connectedness
+78769,unrespectability disreputability disreputableness,dishonorableness by virtue of lacking respectability or a good reputation
+78770,unresponsiveness deadness,the quality of being unresponsive; not reacting; as a quality of people, it is marked by a failure to respond quickly or with emotion to people or events; "she began to recover from her numb unresponsiveness after the accident"; "in an instant all the deadness and withdrawal were wiped away"
+78771,unrest,a feeling of restless agitation
+78772,unrestraint,the quality of lacking restraint
+78773,unrighteousness,failure to adhere to moral principles; "forgave us our sins and cleansed us of all unrighteousness"
+78774,unruliness fractiousness willfulness wilfulness,the trait of being prone to disobedience and lack of discipline
+78775,unsanitariness,a state that is not conducive to health
+78776,unsatisfactoriness,the quality of being inadequate or unsuitable
+78777,unsaturated_fatty_acid,a fatty acid whose carbon chain can absorb additional hydrogen atoms
+78778,unscrupulousness,the quality of unscrupulous dishonesty
+78779,unseasonableness untimeliness,being at an inappropriate time
+78780,unsecured_bond debenture debenture_bond,the ability of a customer to obtain goods or services before payment, based on the trust that payment will be made in the future
+78781,unseemliness,a lack of consideration for others
+78782,unselfconsciousness,the quality of being not self-conscious; unawareness of yourself or of others' views of yourself; "he had the unselfconsciousness of a child"
+78783,unselfishness,the quality of not putting yourself first but being willing to give your time or money or effort etc. for others; "rural people show more devotion and unselfishness than do their urban cousins"
+78784,unsightliness,ugliness that is unpleasant to look at
+78785,unskilled_person,a person who lacks technical training
+78786,unskillfulness,a lack of cognitive skill
+78787,unsnarling untangling disentanglement extrication,the act of releasing from a snarled or tangled condition
+78788,unsociability unsociableness,an unsociable disposition; avoiding friendship or companionship
+78789,unsolvability insolubility,the property (of a problem or difficulty) that makes it impossible to solve
+78790,unsoundness,a condition of damage or decay
+78791,unsoundness,a misconception that is fallacious and not true or valid; "the unsoundness of his conclusion was obvious"
+78792,unsoundness,not mentally or physically healthy; "no one can be a poet without a certain unsoundness of mind"
+78793,unspoken_accusation veiled_accusation,an accusation that is understood without needing to be spoken
+78794,unsteadiness,the quality of being unsteady--varying and unpredictable
+78795,unsteadiness ricketiness,the quality of not being steady or securely fixed in place
+78796,unstratified_language,a programming language that (like natural language) can be used as its own metalanguage
+78797,unsuitability unsuitableness ineptness,the quality of having the wrong properties for a specific purpose
+78798,unsusceptibility immunity,the state of not being susceptible; "unsusceptibility to rust"
+78799,unthoughtfulness thoughtlessness,the trait of not thinking carefully before acting
+78800,untidiness,the condition of being untidy
+78801,untidiness messiness,the trait of being untidy and messy
+78802,untouchable Harijan,belongs to lowest social and ritual class in India
+78803,untrustworthiness untrustiness,the trait of not deserving trust or confidence
+78804,untruthfulness,the quality of being untruthful
+78805,untying undoing unfastening,loosening the ties that fasten something; "the tying of bow ties is an art; the untying is easy"
+78806,ununbium Uub element_112 atomic_number_112,a radioactive transuranic element
+78807,ununhexium Uuh element_116 atomic_number_116,a radioactive transuranic element
+78808,ununpentium Uup element_115 atomic_number_115,a radioactive transuranic element
+78809,ununquadium Uuq element_114 atomic_number_114,a radioactive transuranic element
+78810,ununtrium Uut element_113 atomic_number_113,a radioactive transuranic element
+78811,unusualness,uncommonness by virtue of being unusual
+78812,unvariedness,characterized by an absence of variation
+78813,unveiling,putting on display for the first time; "he attended the unveiling of the statue"
+78814,unwariness,the trait of not being cautious and watchful
+78815,unwelcome_person persona_non_grata,a person who for some reason is not wanted or welcome
+78816,unwholesomeness morbidness morbidity,the quality of being unhealthful and generally bad for you
+78817,unwieldiness,the quality of being difficult to direct or control by reason of complexity; "avoiding the unwieldiness of formal legal processes"; "the onset of unwieldiness and bureaucracy in large organizations"
+78818,unwillingness involuntariness,the trait of being unwilling; "his unwillingness to cooperate vetoed every proposal I made"; "in spite of our warnings he plowed ahead with the involuntariness of an automaton"
+78819,unworthiness,the quality or state of lacking merit or value
+78820,unwritten_law,law based on customary behavior
+78821,up-bow,an upward stroke from the tip to the heel of the bow
+78822,up-tick,a small increase; "the up-tick in terrorist activity"
+78823,up_quark,a stable quark with an electric charge of +2/3 and a mass 607 times that of an electron
+78824,upbeat offbeat,an unaccented beat (especially the last beat of a measure)
+78825,upbraider reprover reproacher rebuker,someone who finds fault or imputes blame
+78826,upbringing,properties acquired during a person's formative years
+78827,upcast,air passage consisting of a ventilation shaft through which air leaves a mine
+78828,update,information or data that updates; "do you have the latest software update?"; "I just heard the update on the unemployment figures"
+78829,update,the act of bringing someone or something up to date; "the server update ran overnight"; "the local news station broadcast a special weather update"
+78830,updating,the act of changing something to bring it up to date (usually by adding something); "criminal records need regular updating"
+78831,updraft,a strong upward air current
+78832,upgrade,software that provides better performance than an earlier version did
+78833,upgrade,a reservation that is improved; "I got an upgrade to first class when coach class was full"
+78834,upgrade,hardware that provides better performance than an earlier version did
+78835,upgrade,the act of improving something (especially machinery) by raising it to a higher grade (as by adding or replacing components); "the power plant received a new upgrade"
+78836,upgrade rise rising_slope,the property possessed by a slope or surface that rises
+78837,upheaval uplift upthrow upthrust,(geology) a rise of land to a higher elevation (as in the process of mountain building)
+78838,uphill,the upward slope of a hill
+78839,upholder maintainer sustainer,someone who upholds or maintains; "firm upholders of tradition"; "they are sustainers of the idea of democracy"
+78840,upholsterer,a craftsman who upholsters furniture
+78841,upholstery,covering (padding and springs and webbing and fabric) on a piece of furniture
+78842,upholstery,the craft of upholstering
+78843,upholstery_material,the fabric used in upholstering
+78844,upholstery_needle,any of several very heavy and sometimes curved sewing needles used by upholsterers
+78845,upland_cotton Gossypium_hirsutum,native tropical American plant now cultivated in the United States yielding short-staple cotton
+78846,upland_sandpiper upland_plover Bartramian_sandpiper Bartramia_longicauda,large plover-like sandpiper of North American fields and uplands
+78847,upland_white_aster Aster_ptarmicoides,tufted rigid North American perennial with loose clusters of white flowers
+78848,uplift,a brassiere that lifts and supports the breasts
+78849,uplifting,the rise of something; "the uplifting of the clouds revealed the blue of a summer sky"
+78850,uplink,a transmission from Earth to a spacecraft or the path of such a transmission
+78851,upper,piece of leather or synthetic material that forms the part of a shoe or boot above the sole that encases the foot; "Uppers come in many styles"
+78852,upper_berth upper,the higher of two berths
+78853,upper_bound,(mathematics) a number equal to or greater than any other number in a given set
+78854,upper_class upper_crust,the class occupying the highest position in the social hierarchy
+78855,upper_deck,a higher deck
+78856,upper_hand whip_hand,position of advantage and control
+78857,upper_jaw upper_jawbone maxilla maxillary,the jaw in vertebrates that is fused to the cranium
+78858,upper_limit,the limit on the upper (or northernmost) side of something
+78859,upper_mantle,the upper part of the mantle
+78860,upper_respiratory_infection,infection of the upper respiratory tract
+78861,upper_respiratory_tract,the nose and throat and trachea
+78862,upper_surface,the side that is uppermost
+78863,uppercut,a swinging blow directed upward (especially at an opponent's chin)
+78864,uppityness uppishness,assumption of airs beyond one's station
+78865,upright upright_piano,a piano with a vertical sounding board
+78866,upright vertical,a vertical structural member as a post or stake; "the ball sailed between the uprights"
+78867,uprightness rectitude,righteousness as a consequence of being honorable and honest
+78868,upset derangement overthrow,the act of disturbing the mind or body; "his carelessness could have caused an ecological upset"; "she was unprepared for this sudden overthrow of their normal way of living"
+78869,upset overturn turnover,the act of upsetting something; "he was badly bruised by the upset of his sled at a high speed"
+78870,upset swage,a tool used to thicken or spread metal (the end of a bar or a rivet etc.) by forging or hammering or swaging
+78871,upset_price,(auction) the minimum price at which a seller of property will entertain bids
+78872,upsetter,an unexpected winner; someone who defeats the favorite competitor
+78873,upside-down_cake skillet_cake,batter baked atop a layer of sweetened fruit then turned upside down so fruit is on top
+78874,upsilon,the 20th letter of the Greek alphabet
+78875,upstage,the rear part of the stage
+78876,upstager,a selfish actor who upstages the other actors
+78877,upstairs,the part of a building above the ground floor; "no one was allowed to see the upstairs"
+78878,upstart,an arrogant or presumptuous person
+78879,upstart parvenu nouveau-riche arriviste,a person who has suddenly risen to a higher economic status but has not gained social acceptance of others in that class
+78880,upstroke,a stroke normally made in an upward direction
+78881,uptake,a process of taking up or using up or consuming; "they developed paper napkins with a greater uptake of liquids"
+78882,uptick,a transaction in the stock market at a price above the price of the preceding transaction
+78883,uptime,a period of time when something (as a machine or factory) is functioning and available for use
+78884,uptown,a residential part of town away from the central commercial district
+78885,upturn,an upward movement or trend as in business activity
+78886,uracil U,a base containing nitrogen that is found in RNA (but not in DNA) and derived from pyrimidine; pairs with adenine
+78887,uraninite pitchblende,a mineral consisting of uranium oxide and trace amounts of radium and thorium and polonium and lead and helium; uraninite in massive form is called pitchblende which is the chief uranium ore
+78888,uranium U atomic_number_92,a heavy toxic silvery-white radioactive metallic element; occurs in many isotopes; used for nuclear fuels and nuclear weapons
+78889,uranium_235,a uranium isotope with mass number 235; capable of sustaining chain reactions
+78890,uranium_238,the commonest isotope of uranium; it is not fissionable but when irradiated with neutrons it produces fissionable plutonium 239
+78891,uranium_ore,any ore from which uranium can be extracted
+78892,uranoplasty,surgical correction of a defect of the palate
+78893,uranyl uranyl_group uranyl_radical,the bivalent radical UO2 which forms salts with acids
+78894,uranyl_nitrate,a yellow salt obtained by the reaction of uranium salts with nitric acid
+78895,uranyl_oxalate,a salt obtained by the reaction of uranium salts with oxalic acid
+78896,urate,a salt of uric acid
+78897,uratemia,presence of abnormal amounts of uric acid salts in the blood; symptom of gout
+78898,uraturia,presence of abnormally large amounts of uric acid in the urine; symptom of gout
+78899,urban_area populated_area,a geographical area constituting a city or town
+78900,urban_guerrilla,a guerrilla who fights only in cities and towns
+78901,urban_legend,a story that appears mysteriously and spreads spontaneously in various forms and is usually false; contains elements of humor or horror and is popularly believed to be true
+78902,urban_planning,the branch of architecture dealing with the design and organization of urban space and activities
+78903,urban_renewal,the clearing and rebuilding and redevelopment of urban slums
+78904,urbanity,polished courtesy; elegance of manner
+78905,urbanity,the quality or character of life in a city or town; "there is an important difference between rusticity and urbanity"
+78906,urbanization urbanisation,the condition of being urbanized
+78907,urbanization urbanisation,the social process whereby cities grow and societies become more urban
+78908,urceole,a vessel that holds water for washing the hands
+78909,urchin,poor and often mischievous city child
+78910,urea carbamide,the chief solid component of mammalian urine; synthesized from ammonia and carbon dioxide and used as fertilizer and in animal feed and in plastics
+78911,urea-formaldehyde_resin,a clear thermosetting resin made from urea and formaldehyde and used in electrical fittings, adhesives, and finishes
+78912,urease,an enzyme that catalyzes the hydrolysis of urea into carbon dioxide and ammonia; is present in intestinal bacteria
+78913,uremia uraemia azotemia azotaemia,accumulation in the blood of nitrogenous waste products (urea) that are usually excreted in the urine
+78914,ureter,either of a pair of thick-walled tubes that carry urine from the kidney to the urinary bladder
+78915,ureteritis,inflammation of the ureter
+78916,ureterocele,prolapse of the end of the ureter into the bladder; may obstruct urine flow
+78917,ureterorenal_reflux,a backflow of urine from the ureter into the renal pelvis
+78918,ureterostenosis,stenosis of the ureter
+78919,urethane,an ester of carbamic acid
+78920,urethra,duct through which urine is discharged in most mammals and which serves as the male genital duct
+78921,urethral_orifice external_orifice,the orifice through which urine is discharged
+78922,urethral_sphincter musculus_sphincter_urethrae,a striated sphincter muscle that constricts the urethra
+78923,urethritis,inflammation of the urethra; results in painful urination
+78924,urethrocele,prolapse of the urethra into the vagina
+78925,urge impulse,an instinctive motive; "profound religious impulses"
+78926,urge itch,a strong restless desire; "why this urge to travel?"
+78927,urge_incontinence,urinary incontinence that is generally attributable to involuntary contracts of the bladder muscle resulting in an urgent need to urinate accompanied by a sudden loss of urine; most common in people over 60 years of age
+78928,urgency,the state of being urgent; an earnest and insistent necessity
+78929,urgency,an urgent situation calling for prompt action; "I'll be there, barring any urgencies"; "they departed hurriedly because of some great urgency in their affairs"
+78930,urgency,pressing importance requiring speedy action; "the urgency of his need"
+78931,urging,the act of earnestly supporting or encouraging
+78932,urial Ovis_vignei,bearded reddish sheep of southern Asia
+78933,uric_acid,a white tasteless odorless crystalline product of protein metabolism; found in the blood and urine
+78934,uricaciduria,presence of abnormal amounts of uric acid in the urine; symptom of gout
+78935,urinal,a plumbing fixture (usually attached to the wall) used by men to urinate
+78936,urinalysis uranalysis,(medicine) the chemical analysis of urine (for medical diagnosis)
+78937,urinary_bladder,a membranous sac for temporary retention of urine
+78938,urinary_hesitancy,difficulty in beginning the flow of urine; associated with prostate enlargement in men and with narrowing of the urethral opening in women; may be caused by emotional stress in either men or women
+78939,urinary_retention,holding urine in the urinary bladder; "he has a problem with urinary retention"
+78940,urinary_tract,the organs and tubes involved in the production and excretion of urine
+78941,urinary_tract_infection,any infection of any of the organs of the urinary tract
+78942,urine piss pee piddle weewee water,liquid excretory product; "there was blood in his urine"; "the child had to make water"
+78943,urn,a large pot for making coffee or tea
+78944,urn,a large vase that usually has a pedestal or feet
+78945,urobilin,brown bile pigment formed from urobilinogens and found in feces and in small amounts in urine
+78946,urobilinogen stercobilinogen,a chromogen formed in the intestine from the breakdown of bilirubin; yields urobilins on oxidation; some is excreted in the feces and some is resorbed and excreted in bile or urine
+78947,urocele,extravasation of urine into the scrotal sac
+78948,urochesia urochezia,passage of urine from the anus
+78949,urochord,a notochord of a larval tunicate typically confined to the caudal region
+78950,urodele caudate,amphibians that resemble lizards
+78951,urodynia,pain during urination
+78952,urogenital_system urogenital_apparatus urinary_system urinary_apparatus genitourinary_system genitourinary_apparatus systema_urogenitale apparatus_urogenitalis,the system that includes all organs involved in reproduction and in the formation and voidance of urine
+78953,urolith,a urinary stone
+78954,urologist,a specialist in urology
+78955,urology urogenital_medicine,the branch of medicine that deals with the diagnosis and treatment of disorders of the urinary tract or urogenital system
+78956,uropathy,any pathology of the urinary tract
+78957,uropygial_gland preen_gland,oil-secreting gland situated at the base of the tail in most birds
+78958,uropygium,posterior part of a bird's body from which the tail feathers grow
+78959,ursinia,any of various plants of the genus Ursinia grown for their yellow- or orange- or white-rayed flowers
+78960,urtication,a sensation of having been stung by nettles
+78961,urtication urticaria hives nettle_rash,an itchy skin eruption characterized by weals with pale interiors and well-defined red margins; usually the result of an allergic response to insect bites or food or drugs
+78962,usage,the customary manner in which a language (or a form of a language) is spoken or written; "English usage"; "a usage borrowed from French"
+78963,usance,the period of time permitted by commercial usage for the payment of a bill of exchange (especially a foreign bill of exchange)
+78964,use,a particular service; "he put his knowledge to good use"; "patrons have their uses"
+78965,use enjoyment,(law) the exercise of the legal right to enjoy the benefits of owning property; "we were given the use of his boat"
+78966,use usage utilization utilisation employment exercise,the act of using; "he warned against the use of narcotic drugs"; "skilled in the utilization of computers"
+78967,use_immunity testimonial_immunity,an exemption that displaces the privilege against self-incrimination; neither compelled testimony or any fruits of it can be used against the witness who therefore can no longer fear self-incrimination
+78968,used-car secondhand_car,a car that has been previously owned; not a new car
+78969,used-car_lot,a parking lot where a dealer in used-cars displays cars for sale
+78970,user,a person who makes use of a thing; someone who uses or employs something
+78971,usher doorkeeper,an official stationed at the entrance of a courtroom or legislative chamber
+78972,usher guide,someone employed to conduct others
+78973,usherette,a female usher
+78974,ushering_in,the introduction of something new; "it signalled the ushering in of a new era"
+78975,usualness,commonness by virtue of not being unusual
+78976,usufruct,a legal right to use and derive profit from property belonging to someone else provided that the property itself is not injured in any way
+78977,usufructuary,someone who holds property by usufruct
+78978,usurer loan_shark moneylender shylock,someone who lends money at excessive rates of interest
+78979,usurpation,wrongfully seizing and holding (an office or powers) by force (especially the seizure of a throne or supreme authority); "a succession of generals who ruled by usurpation"
+78980,usurper supplanter,one who wrongfully or illegally seizes and holds the place of another
+78981,usury,the act of lending money at an exorbitant rate of interest
+78982,usury vigorish,an exorbitant or unlawful rate of interest
+78983,utahraptor superslasher,large (20-ft) and swift carnivorous dinosaur having an upright slashing claw 15 inches long on each hind foot; early Cretaceous
+78984,utensil,an implement for practical use (especially in a household)
+78985,uterine_artery arteria_uterina,a branch of the internal iliac artery that supplies the uterus and the upper part of the vagina
+78986,uterine_cavity,the space inside the uterus between the cervical canal and the Fallopian tubes
+78987,uterine_contraction,a rhythmic tightening in labor of the upper uterine musculature that contracts the size of the uterus and pushes the fetus toward the birth canal
+78988,uterine_vein,one of two veins on each side that arise from the uterine plexus and empty into the internal iliac vein
+78989,uterus womb,a hollow muscular organ in the pelvic cavity of females; contains the developing fetus
+78990,utilitarian,someone who believes that the value of a thing depends on its utility
+78991,utilitarianism,doctrine that the useful is the good; especially as elaborated by Jeremy Bentham and James Mill; the aim was said to be the greatest happiness for the greatest number
+78992,utility,(economics) a measure that is to be maximized in any situation involving choice
+78993,utility,a facility composed of one or more pieces of equipment connected to or part of a structure and designed to provide a service such as heat or electricity or water or sewage disposal; "the price of the house included all utilities"
+78994,utility,the service (electric power or water or transportation) provided by a public utility; "the cost of utilities never decreases"; "all the utilities were lost after the hurricane"
+78995,utility public_utility public_utility_company public-service_corporation,a company that performs a public service; subject to government regulation
+78996,utility usefulness,the quality of being of practical use
+78997,utility_bond utility_revenue_bond,a bond issued to finance the construction of public utility services
+78998,utility_man,a baseball player valued for the ability to play at several positions
+78999,utility_man,a workman expected to serve in any capacity when called on
+79000,utility_program utility service_program,(computer science) a program designed for general support of the processes of a computer; "a computer system provides utility programs to perform the tasks needed by most users"
+79001,utility_routine service_routine,a routine that can be used as needed
+79002,utilization,the state of having been made use of; "the rate of utilization"
+79003,utilizer utiliser,someone who puts to good use; "not all organisms are utilizers of oxygen"; "the social agencies and their utilizers both objected to the budget cut"
+79004,utmost uttermost maximum level_best,the greatest possible degree; "he tried his utmost"
+79005,utopia,ideally perfect state; especially in its social and political and moral aspects
+79006,utopia,a work of fiction describing a utopia
+79007,utopian_socialism,socialism achieved by voluntary sacrifice
+79008,utricle utriculus,a small pouch into which the semicircular canals open
+79009,utterance vocalization,the use of uttered sounds for auditory communication
+79010,utterer,someone who circulates forged banknotes or counterfeit coins
+79011,utterer vocalizer vocaliser,an organism that can utter vocal sounds; "an utterer of foul oaths"; "is the giraffe a vocalizer?"
+79012,uvea,the part of the eye that contains the iris and ciliary body and choroid
+79013,uveitis,inflammation of the uvea of the eye
+79014,uveoscleral_pathway,a tubule that drains excess aqueous humor
+79015,uvula,a small pendant fleshy lobe at the back of the soft palate
+79016,uvulitis,inflammation of the uvula
+79017,uxor ux.,(legal terminology) the Latin word for wife
+79018,uxoricide,a husband who murders his wife
+79019,uxoricide,the murder of a wife by her husband
+79020,uxoriousness,foolish fondness for or excessive submissiveness to one's wife
+79021,vac vacay,informal term for vacation
+79022,vacancy,being unoccupied
+79023,vacancy_rate,the percentage of all rental units (as in hotels) that are unoccupied or not rented at a given time
+79024,vacant_lot building_site,a lot on which there are no permanent buildings
+79025,vacation,the act of making something legally void
+79026,vacation holiday,leisure time away from work devoted to rest or pleasure; "we get two weeks of vacation every summer"; "we took a short holiday in Puerto Rico"
+79027,vacation_home,a dwelling (a second home) where you live while you are on vacation
+79028,vacationer vacationist,someone on vacation; someone who is devoting time to pleasure or relaxation rather than to work
+79029,vacationing,the act of taking a vacation
+79030,vaccination,the scar left following inoculation with a vaccine
+79031,vaccine vaccinum,immunogen consisting of a suspension of weakened or dead pathogenic cells injected in order to stimulate the production of antibodies
+79032,vaccinee,a patient who has been vaccinated
+79033,vaccinia vaccina variola_vaccine variola_vaccinia variola_vaccina,a local infection induced in humans by inoculation with the virus causing cowpox in order to confer resistance to smallpox; normally lasts three weeks and leaves a pitted scar
+79034,vacuole,a tiny cavity filled with fluid in the cytoplasm of a cell
+79035,vacuolization vacuolisation vacuolation,the state of having become filled with vacuoles
+79036,vacuousness,indicative of or marked by mental vacuity and an absence of ideas; "the vacuousness of her face belied her feelings"
+79037,vacuum vacuity,the absence of matter
+79038,vacuum vacuity,a region that is devoid of matter
+79039,vacuum vacuum_cleaner,an electrical home appliance that cleans by suction
+79040,vacuum_chamber,a chamber from which nearly all matter (especially air) has been removed
+79041,vacuum_flask vacuum_bottle,flask with double walls separated by vacuum; used to maintain substances at high or low temperatures
+79042,vacuum_gauge vacuum_gage,a gauge for indicating negative atmospheric pressure
+79043,vagabond,anything that resembles a vagabond in having no fixed place; "pirate ships were vagabonds of the sea"
+79044,vagary,an unexpected and inexplicable change in something (in a situation or a person's behavior, etc.); "the vagaries of the weather"; "his wealth fluctuates with the vagaries of the stock market"; "he has dealt with human vagaries for many years"
+79045,vagina,the lower part of the female reproductive tract; a moist canal in female mammals extending from the labia minora to the uterus; "the vagina receives the penis during coitus"; "the vagina is elastic enough to allow the passage of a fetus"
+79046,vaginal_artery arteria_vaginalis,a branch of the internal iliac that provides blood for the vagina and the base of the bladder and the rectum
+79047,vaginal_discharge,discharge of secretions from the cervical glands of the vagina; normally clear or white
+79048,vaginal_smear,smear taken from the vaginal mucosa for cytological analysis
+79049,vaginismus,muscular contraction that causes the vagina to close; usually an anxiety reaction before coitus or pelvic examination
+79050,vaginitis,inflammation of the vagina (usually associated with candidiasis)
+79051,vagrancy,the state of wandering from place to place; having no permanent home or means of livelihood
+79052,vagrant drifter floater vagabond clochard,a wanderer who has no established residence or visible means of support
+79053,vagueness,unclearness by virtue of being poorly expressed or not coherent in meaning; "the Conservative manifesto is a model of vagueness"; "these terms were used with a vagueness that suggested little or no thought about what each might convey"
+79054,vagueness,indistinctness of shape or character; "the scene had the swirling vagueness of a painting by Turner"
+79055,vagus vagus_nerve nervus_vagus pneumogastric pneumogastric_nerve tenth_cranial_nerve wandering_nerve,a mixed nerve that supplies the pharynx and larynx and lungs and heart and esophagus and stomach and most of the abdominal viscera
+79056,vaisya,the third of the four varnas: the commoners or yeoman farmers or mercantile and professional category
+79057,valdecoxib Bextra,a Cox-2 inhibitor (trade name Bextra) that relieves pain and inflammation without harming the digestive tract
+79058,valediction,the act of saying farewell
+79059,valediction valedictory_address valedictory_oration valedictory,a farewell oration (especially one delivered during graduation exercises by an outstanding member of a graduating class)
+79060,valedictorian valedictory_speaker,the student with the best grades who usually delivers the valedictory address at commencement
+79061,valence valency,(biology) a relative capacity to unite or react or interact as with antigens or a biological substrate
+79062,valence valency,(chemistry) a property of atoms or radicals; their combining power given in terms of the number of hydrogen atoms (or the equivalent)
+79063,valence_electron,an electron in the outer shell of an atom which can combine with other atoms to form molecules
+79064,valency,the phenomenon of forming chemical bonds
+79065,valentine,a sweetheart chosen to receive a greeting on Saint Valentine's Day; "will you be my valentine?"
+79066,valerian,a plant of the genus Valeriana having lobed or dissected leaves and cymose white or pink flowers
+79067,valeric_acid pentanoic_acid,a clear liquid carboxylic acid used in perfumes and drugs
+79068,valet valet_de_chambre gentleman gentleman's_gentleman man,a manservant who acts as a personal attendant to his employer; "Jeeves was Bertie Wooster's man"
+79069,valet_parking,a service provided (at a club or restaurant or airport etc.) whereby a patron leaves a car at the entrance and an attendant parks and retrieves it
+79070,valetudinarian,weak or sickly person especially one morbidly concerned with his or her health
+79071,valgus,a deformity in which there is an abnormal displacement of part of a limb away from the midline of the body
+79072,validation proof substantiation,the act of validating; finding or testing the truth of something
+79073,validity validness,the quality of having legal force or effectiveness
+79074,valine,an essential amino acid found in proteins; important for growth in children and nitrogen balance in adults
+79075,valise,a small overnight bag for short trips
+79076,valley vale,a long depression in the surface of the land that usually contains a river
+79077,valley_girl,a girl who grew up in the tract housing in the San Fernando Valley
+79078,valley_pocket_gopher Thomomys_bottae,of valleys and mountain meadows of western United States
+79079,valproic_acid Depokene,anticonvulsant (trade name Depokene) used to prevent some kinds of seizures
+79080,valsartan Diovan,an angiotensin II inhibitor that is used to treat high blood pressure
+79081,valuable,something of value; "all our valuables were stolen"
+79082,valuation,assessed price; "the valuation of this property is much too high"
+79083,valuation_reserve valuation_account allowance allowance_account,a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets
+79084,value,an ideal accepted by some individual or group; "he has old-fashioned values"
+79085,value,a numerical quantity measured or assigned or computed; "the value assigned was 16 milliseconds"
+79086,value,the quality (positive or negative) that renders something desirable or valuable; "the Shakespearean Shylock is of dubious value in the modern world"
+79087,value,relative darkness or lightness of a color; "I establish the colors and principal values by organizing the painting into three values--dark, medium...and light"-Joe Hing Lowe
+79088,value economic_value,the amount (of money or goods or services) that is considered to be a fair equivalent for something else; "he tried to estimate the value of the produce at normal prices"
+79089,value time_value note_value,(music) the relative duration of a musical note
+79090,value_judgment value_judgement,an assessment that reveals more about the values of the person making the assessment than about the reality of what is assessed
+79091,value_statement,a statement of the desirability of something
+79092,valuelessness,having none of the properties that endow something with value
+79093,valuer,someone who assesses the monetary worth of possessions
+79094,values,beliefs of a person or social group in which they have an emotional investment (either for or against something); "he has very conservatives values"
+79095,valve,a structure in a hollow organ (like the heart) with a flap to insure one-way flow of fluid through it
+79096,valve,device in a brass wind instrument for varying the length of the air column to alter the pitch of a tone
+79097,valve,control consisting of a mechanical device for controlling the flow of a fluid
+79098,valve,the entire one-piece shell of a snail and certain other molluscs
+79099,valve,one of the paired hinged shells of certain molluscs and of brachiopods
+79100,valve-in-head_engine,internal-combustion engine having both inlet and exhaust valves located in the cylinder head
+79101,valvotomy valvulotomy,incision into a stenosed cardiac valve to relieve the obstruction
+79102,valvular_heart_disease,heart disease caused by stenosis of the cardiac valves and obstructed blood flow or caused by degeneration and blood regurgitation
+79103,valvular_incompetence,inability of a bodily valve to close completely
+79104,valvule valvelet valvula,a small valve
+79105,valvulitis,inflammation of a valve (especially of a cardiac valve as a consequence of rheumatic fever)
+79106,vambrace lower_cannon,cannon of plate armor protecting the forearm
+79107,vamp,an improvised musical accompaniment
+79108,vamp,piece of leather forming the front part of the upper of a shoe
+79109,vampire lamia,(folklore) a corpse that rises at night to drink the blood of the living
+79110,vampire_bat true_vampire_bat,any of various tropical American bats of the family Desmodontidae that bite mammals and birds to feed on their blood
+79111,vampirism,belief in the existence of vampires
+79112,vampirism,the actions or practices of a vampire
+79113,van,(Great Britain) a closed railroad car that carries baggage or freight
+79114,van,a truck with an enclosed cargo space
+79115,van caravan,a camper equipped with living quarters
+79116,van_Gogh Vincent_van_Gogh Gogh,Dutch Post-impressionist painter noted for his use of color (1853-1890)
+79117,van_de_Velde Henri_van_de_Velde Henri_Clemens_van_de_Velde,Belgian architect (1863-1957)
+79118,van_der_Waal's_forces,relatively weak attraction between neutral atoms and molecules arising from polarization induced in each particle by the presence of other particles
+79119,van_der_Waals Johannes_van_der_Waals Johannes_Diderik_van_der_Waals,Dutch physicist (1837-1923)
+79120,vanadate,a salt or ester of vanadic acid; an anion containing pentavalent vanadium
+79121,vanadinite,a mineral consisting of chloride and vanadate of lead; a source of vanadium
+79122,vanadium V atomic_number_23,a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite
+79123,vanadium_pentoxide vanadic_acid,any of various oxyacids of vanadium; known mostly in the form of its salts
+79124,vanadium_steel,steel alloyed with vanadium for greater strength and high-temperature stability
+79125,vancomycin Vancocin,an antibiotic (trade name Vancocin) effective against some bacterial infections
+79126,vanda,any of numerous showy orchids of the genus Vanda having many large flowers in loose racemes
+79127,vandal,someone who willfully destroys or defaces property
+79128,vandalism hooliganism malicious_mischief,willful wanton and malicious destruction of the property of others
+79129,vandyke_beard vandyke,a short pointed beard (named after the artist Anthony Vandyke)
+79130,vane,a fin attached to the tail of an arrow, bomb or missile in order to stabilize or guide it
+79131,vane web,the flattened weblike part of a feather consisting of a series of barbs on either side of the shaft
+79132,vanguard forefront cutting_edge,the position of greatest importance or advancement; the leading position in any movement or field; "the Cotswolds were once at the forefront of woollen manufacturing in England"; "the idea of motion was always to the forefront of his mind and central to his philosophy"
+79133,vanguard van,the leading units moving at the head of an army
+79134,vanilla,any of numerous climbing plants of the genus Vanilla having fleshy leaves and clusters of large waxy highly fragrant white or green or topaz flowers
+79135,vanilla,a distinctive fragrant flavor characteristic of vanilla beans
+79136,vanilla vanilla_extract,a flavoring prepared from vanilla beans macerated in alcohol (or imitating vanilla beans)
+79137,vanilla_bean,long bean-like fruit; seeds are used as flavoring
+79138,vanilla_ice_cream,ice cream flavored with vanilla extract
+79139,vanilla_orchid Vanilla_planifolia,a climbing orchid bearing a podlike fruit yielding vanilla beans; widely cultivated from Florida southward throughout tropical America
+79140,vanilla_pudding,sweet vanilla flavored custard-like pudding usually thickened with flour rather than eggs
+79141,vanillin,a crystalline compound found in vanilla beans and some balsam resins; used in perfumes and flavorings
+79142,vanisher,a person who disappears
+79143,vanishing,a sudden or mysterious disappearance
+79144,vanishing,a sudden disappearance from sight
+79145,vanishing_point,the point beyond which something disappears or ceases to exist
+79146,vanishing_point,the appearance of a point on the horizon at which parallel lines converge
+79147,vanity emptiness,the quality of being valueless or futile; "he rejected the vanities of the world"
+79148,vanity_fair,a vain and frivolous lifestyle especially in large cities
+79149,vantage,place or situation affording some advantage (especially a comprehensive view or commanding perspective)
+79150,vantage_point viewpoint,a place from which something can be viewed; "from that vantage point he could survey the whole valley"
+79151,vapor vapour,a visible suspension in the air of particles of some substance
+79152,vapor_density vapour_density,the density of a gas relative to the density of hydrogen
+79153,vapor_lock vapour_lock,a stoppage in a pipeline caused by gas bubbles (especially a stoppage that develops in hot weather in an internal-combustion engine when fuel in the gas line boils and forms bubbles that block the flow of gasoline to the carburetor)
+79154,vapor_pressure vapour_pressure,the pressure exerted by a vapor; often understood to mean saturated vapor pressure (the vapor pressure of a vapor in contact with its liquid form)
+79155,vaporization vaporisation,annihilation by vaporizing something
+79156,vaporization vaporisation vapor vapour evaporation,the process of becoming a vapor
+79157,vaporizer vaporiser,a device that puts out a substance in the form of a vapor (especially for medicinal inhalation)
+79158,vaquero buckaroo buckeroo,local names for a cowboy (`vaquero' is used especially in southwestern and central Texas and `buckaroo' is used especially in California)
+79159,vaquita Phocoena_sinus,a short porpoise that lives in the Gulf of California; an endangered species
+79160,vara,a Spanish unit of length (about a yard) having different values in different localities
+79161,vardenafil Levitra,virility drug (trade name Levitra) used to treat erectile dysfunction in men
+79162,variability variableness variance,the quality of being subject to variation
+79163,variable,something that is likely to vary; something that is subject to variation; "the weather is one variable to be considered"
+79164,variable,a symbol (like x or y) that is used in mathematical or logical expressions to represent a variable quantity
+79165,variable variable_quantity,a quantity that can assume any of a set of values
+79166,variable-pitch_propeller,propeller for which the angle of the blades is adjustable
+79167,variable_star variable,a star that varies noticeably in brightness
+79168,variance,the second moment around the mean; the expected value of the square of the deviations of a random variable from its mean value
+79169,variance,an official dispensation to act contrary to a rule or regulation (typically a building regulation); "a zoning variance"
+79170,variation,the process of varying or being varied
+79171,variation,(astronomy) any perturbation of the mean motion or orbit of a planet or satellite (especially a perturbation of the earth's moon)
+79172,variation,a repetition of a musical theme in which it is modified or embellished
+79173,variation,an artifact that deviates from a norm or standard; "he patented a variation on the sandal"
+79174,variation,the act of changing or altering something slightly but noticeably from the norm or standard; "who is responsible for these variations in taxation?"
+79175,variation fluctuation,an instance of change; the rate or magnitude of change
+79176,variation variance,an activity that varies from a norm or standard; "any variation in his routine was immediately reported"
+79177,varicella_zoster_virus,the member of the herpes virus family that is responsible for chickenpox
+79178,varicocele,dilatation of the veins associated with the spermatic cord in the testes
+79179,varicose_vein,a vein that is permanently dilated; most common in the legs
+79180,varicosis,pathological condition of being varicose or having varicose veins
+79181,varicosity,varix or varicose condition in which a vein is swollen and tortuous
+79182,varied_Lorikeet Glossopsitta_versicolor,lorikeet with a colorful coat
+79183,variedness,characterized by variation
+79184,variegated_horsetail variegated_scouring_rush Equisetum_variegatum,northern North America; Greenland; northern and central Europe
+79185,variegation,variability in coloration
+79186,varietal varietal_wine,a wine made principally from one grape and carrying the name of that grape
+79187,variety,(biology) a taxonomic category consisting of members of a species that differ from others of the same species in minor but heritable characteristics; "varieties are frequently recognized in botany"
+79188,variety change,a difference that is usually pleasant; "he goes to France for variety"; "it is a refreshing change to meet a woman mechanic"
+79189,variety_meat organs,edible viscera of a butchered animal
+79190,variety_show variety,a show consisting of a series of short unrelated performances
+79191,variola_major variola_major_virus,a type of smallpox virus that has a fatality rate of up to 25 percent
+79192,variola_minor variola_minor_virus,a type of smallpox virus that has a fatality rate of about 1 percent
+79193,variola_virus smallpox_virus,the virus that causes smallpox in humans; can be used as a bioweapon
+79194,variolation variolization,the obsolete process of inoculating a susceptible person with material taken from a vesicle of a person who has smallpox
+79195,variometer,a measuring instrument for measuring variations in a magnetic field
+79196,variorum variorum_edition,an edition containing various versions of a text or notes by various scholars or editors
+79197,variously-leaved_pondweed Potamogeton_gramineous,of Europe (except the Mediterranean area) and the northern United States
+79198,varix,abnormally enlarged or twisted blood vessel or lymphatic vessel
+79199,varmint varment,any usually predatory wild animal considered undesirable; e.g., coyote
+79200,varna,(Hinduism) the name for the original social division of Vedic people into four groups (which are subdivided into thousands of jatis)
+79201,varnish,a coating that provides a hard, lustrous, transparent finish to a surface
+79202,varnish_tree lacquer_tree Chinese_lacquer_tree Japanese_lacquer_tree Japanese_varnish_tree Japanese_sumac Toxicodendron_vernicifluum Rhus_verniciflua,small Asiatic tree yielding a toxic exudate from which lacquer is obtained
+79203,varnisher,someone who applies a finishing coat of varnish
+79204,varsity,a British abbreviation of `university'; usually refers to Oxford University or Cambridge University
+79205,varsity first_team,a team representing a college or university
+79206,varus,a deformity in which part of a limb is turned inward to an abnormal degree
+79207,vas_deferens ductus_deferens,a duct that carries spermatozoa from the epididymis to the ejaculatory duct
+79208,vasa_efferentia,the several highly convoluted tubules that lead from the rete testis to the vas deferens and form the head of the epididymis
+79209,vasa_vasorum,any small blood vessel ramifying on the outside of a major artery or vein
+79210,vascular_bundle vascular_strand fibrovascular_bundle,a unit strand of the vascular system in stems and leaves of higher plants consisting essentially of xylem and phloem
+79211,vascular_plant tracheophyte,green plant having a vascular system: ferns, gymnosperms, angiosperms
+79212,vascular_ray medullary_ray,a sheet of vascular tissue separating the vascular bundles
+79213,vascular_structure,a structure composed of or provided with blood vessels
+79214,vascular_system,the vessels and tissue that carry or circulate fluids such as blood or lymph or sap through the body of an animal or plant
+79215,vascular_tissue,tissue that conducts water and nutrients through the plant body in higher plants
+79216,vascularity,the property being vascular; "a prominent vascularity"
+79217,vascularization vascularisation,the organic process whereby body tissue becomes vascular and develops capillaries
+79218,vasculitis,inflammation of a blood vessel
+79219,vase,an open jar of glass or porcelain used as an ornament or to hold flowers
+79220,vasectomy,surgical procedure that removes all or part of the vas deferens (usually as a means of sterilization); is sometimes reversible
+79221,vasoconstriction,decrease in the diameter of blood vessels
+79222,vasoconstrictor vasoconstrictive pressor,any agent that causes a narrowing of an opening of a blood vessel: cold or stress or nicotine or epinephrine or norepinephrine or angiotensin or vasopressin or certain drugs; maintains or increases blood pressure
+79223,vasodilation,dilation of blood vessels (especially the arteries)
+79224,vasodilator vasodilative,a drug that causes dilation of blood vessels
+79225,vasopressin antidiuretic_hormone ADH Pitressin,hormone secreted by the posterior pituitary gland (trade name Pitressin) and also by nerve endings in the hypothalamus; affects blood pressure by stimulating capillary muscles and reduces urine flow by affecting reabsorption of water by kidney tubules
+79226,vasopressor,any agent that produces vasoconstriction and a rise in blood pressure (usually understood as increased arterial pressure)
+79227,vasotomy vasosection,surgical incision into or division of the vas deferens
+79228,vasovasostomy,a surgical procedure that attempts to restore the function of the vas deferens after a vasectomy
+79229,vasovesiculitis,inflammation of the vas deferens and seminal vesicles; usually occurring with prostatitis
+79230,vassal liege liegeman liege_subject feudatory,a person holding a fief; a person who owes allegiance and service to a feudal lord
+79231,vat_dye vat_color,a water-insoluble dye that is applied by reducing the dye to an alkaline form, applying the dye, then regenerating the insoluble dye by oxidation in the material; used for dyeing cotton
+79232,vaudeville music_hall,a variety show with songs and comic acts etc.
+79233,vaudevillian,a performer who works in vaudeville
+79234,vault,an arched brick or stone ceiling or roof
+79235,vault bank_vault,a strongroom or compartment (often made of steel) for safekeeping of valuables
+79236,vault burial_vault,a burial chamber (usually underground)
+79237,vault hurdle,the act of jumping over an obstacle
+79238,vaulter pole_vaulter pole_jumper,an athlete who jumps over a high crossbar with the aid of a long pole
+79239,vaulting,(architecture) a vaulted structure; "arches and vaulting"
+79240,vaulting_horse long_horse buck,a gymnastic horse without pommels and with one end elongated; used lengthwise for vaulting
+79241,vaunt,extravagant self-praise
+79242,veal veau,meat from a calf
+79243,veal_cordon_bleu,thin slices of veal stuffed with cheese and ham and then sauteed
+79244,veal_parmesan veal_parmigiana,sauteed veal cutlet in a breadcrumb-and-cheese coating served with tomato sauce
+79245,veal_roast roast_veal,cut of veal suitable for roasting
+79246,veal_scallopini,thin sauteed cutlets of veal
+79247,vector,a straight line segment whose length is magnitude and whose orientation in space is direction
+79248,vector,a variable quantity that can be resolved into components
+79249,vector,(genetics) a virus or other agent that is used to deliver DNA to a cell
+79250,vector transmitter,any agent (person or animal or microorganism) that carries and transmits a disease; "mosquitos are vectors of malaria and yellow fever"; "fleas are vectors of the plague"; "aphids are transmitters of plant diseases"; "when medical scientists talk about vectors they are usually talking about insects"
+79251,vector-borne_transmission,indirect transmission of an infectious agent that occurs when a vector bites or touches a person
+79252,vector_algebra,the part of algebra that deals with the theory of vectors and vector spaces
+79253,vector_product cross_product,a vector that is the product of two other vectors
+79254,vector_sum resultant,a vector that is the sum of two or more other vectors
+79255,vedalia Rodolia_cardinalis,native to Australia; introduced elsewhere to control scale insects
+79256,veery Wilson's_thrush Hylocichla_fuscescens,tawny brown North American thrush noted for its song
+79257,vegan,a strict vegetarian; someone who eats no animal or dairy products at all
+79258,vegetable,any of various herbaceous plants cultivated for an edible part such as the fruit or the root of the beet or the leaf of spinach or the seeds of bean plants or the flower buds of broccoli or cauliflower
+79259,vegetable veggie veg,edible seeds or roots or stems or leaves or bulbs or tubers or nonsweet fruits of any of numerous herbaceous plant
+79260,vegetable_matter,matter produced by plants or growing in the manner of a plant
+79261,vegetable_oil oil,any of a group of liquid edible fats that are obtained from plants
+79262,vegetable_sheep sheep_plant Haastia_pulvinaris,cushion-forming New Zealand herb having leaves densely covered with tawny hairs
+79263,vegetable_tallow,a waxy fat obtained from certain plants (e.g. bayberry) and used as tallow
+79264,vegetable_wax,a waxy substance obtained from plants (especially from the trunks of certain palms)
+79265,vegetarian,eater of fruits and grains and nuts; someone who eats no meat or fish or (often) any animal products
+79266,vegetarianism,a diet excluding all meat and fish
+79267,vegetation,the process of growth in plants
+79268,vegetation,an abnormal growth or excrescence (especially a warty excrescence on the valves of the heart)
+79269,vegetation,inactivity that is passive and monotonous, comparable to the inactivity of plant life; "their holiday was spent in sleep and vegetation"
+79270,vegetation flora botany,all the plant life in a particular region or period; "Pleistocene vegetation"; "the flora of southern California"; "the botany of China"
+79271,vehemence emphasis,intensity or forcefulness of expression; "the vehemence of his denial"; "his emphasis on civil rights"
+79272,vehicle,any substance that facilitates the use of a drug or pigment or other material that is mixed with it
+79273,vehicle,a medium for the expression or achievement of something; "his editorials provided a vehicle for his political views"; "a congregation is a vehicle of group identity"; "the play was just a vehicle to display her talents"
+79274,vehicle,a conveyance that transports people or objects
+79275,vehicle-borne_transmission,indirect transmission of an infectious agent that occurs when a vehicle (or fomite) touches a person's body or is ingested
+79276,vehicular_traffic vehicle_traffic,the aggregation of vehicles coming and going in a particular locality
+79277,veil velum,a membranous covering attached to the immature fruiting body of certain mushrooms
+79278,vein,a distinctive style or manner; "he continued in this vein for several minutes"
+79279,vein mineral_vein,a layer of ore between layers of rock
+79280,vein nervure,any of the vascular bundles or ribs that form the branching framework of conducting and supporting tissues in a leaf or other plant organ
+79281,vein nervure,one of the horny ribs that stiffen and support the wing of an insect
+79282,vein vena venous_blood_vessel,a blood vessel that carries blood from the capillaries toward the heart; "all veins except the pulmonary vein carry unaerated blood"
+79283,vein_of_penis,a vein serving the penis
+79284,velar velar_consonant,a consonant produced with the back of the tongue touching or near the soft palate
+79285,veld veldt,elevated open grassland in southern Africa
+79286,velleity,a mere wish, unaccompanied by effort to obtain
+79287,velleity,volition in its weakest form
+79288,vellum,a heavy creamy-colored paper resembling parchment
+79289,vellum,fine parchment prepared from the skin of a young animal e.g. a calf or lamb
+79290,velocipede,any of several early bicycles with pedals on the front wheel
+79291,velociraptor,small active carnivore that probably fed on protoceratops; possibly related more closely to birds than to other dinosaurs
+79292,velodrome,a banked oval track for bicycle or motorcycle racing
+79293,velour velours,heavy fabric that resembles velvet
+79294,veloute,white sauce made with stock instead of milk
+79295,velvet,a silky densely piled fabric with a plain back
+79296,velvet_ant,a solitary wasp of the family Mutillidae; the body has a coat of brightly colored velvety hair and the females are wingless
+79297,velvet_bent velvet_bent_grass brown_bent Rhode_Island_bent dog_bent Agrostis_canina,common grass with slender stems and narrow leaves
+79298,velvet_grass Yorkshire_fog Holcus_lanatus,tall European perennial grass having a velvety stem; naturalized in United States and used for forage
+79299,velvet_plant purple_velvet_plant royal_velvet_plant Gynura_aurantiaca,Javanese foliage plant grown for their handsome velvety leaves with violet-purple hairs
+79300,velveteen,a usually cotton fabric with a short pile imitating velvet
+79301,velvetleaf velvet-leaf velvetweed Indian_mallow butter-print China_jute Abutilon_theophrasti,tall annual herb or subshrub of tropical Asia having velvety leaves and yellow flowers and yielding a strong fiber; naturalized in southeastern Europe and United States
+79302,vena_bulbi_penis,vein of the head of the penis; tributary of the internal pudendal vein that drains the perineum
+79303,vena_bulbi_vestibuli,vein of the vestibular bulb
+79304,vena_canaliculi_cochleae,vein of the cochlear canal
+79305,vena_cava,either of two large veins that return oxygen-depleted blood to the right atrium of the heart
+79306,vena_dorsalis_clitoridis_profunda,deep dorsal vein of the clitoris; tributary of the vesical venous plexus
+79307,vena_profunda_penis,deep vein of the penis; enters the prostatic plexus
+79308,venae_dorsales_clitoridis_superficiales,superficial dorsal veins of the clitoris; tributaries of the external pudendal vein on either side
+79309,venae_dorsales_penis_profunda,deep dorsal vein of the penis; tributary of the prostatic plexus
+79310,venae_dorsales_penis_superficiales,superficial dorsal veins of the penis; paired tributaries of the external pudendal veins on each side
+79311,venae_interlobulares_hepatis,interlobular veins of the liver
+79312,venae_interlobulares_renis,interlobular veins of the kidney; receive blood from the arcuate vein and empty into the renal veins
+79313,venae_labiales_anteriores anterior_labial_veins,veins from the labia majora to the external pudendal vein
+79314,venae_labiales_posteriores posterior_labial_veins,veins that pass posterior from the labia majora to the internal pudendal vein
+79315,venae_palpebrales,veins of the eyelids
+79316,venae_profundae_clitoridis,deep veins of the clitoris; join the vesical plexus
+79317,venae_renis,veins of the kidney; drain the kidney into the renal vein
+79318,venality,prostitution of talents or offices or services for reward
+79319,venation,(botany) the arrangement of veins in a leaf
+79320,venation venous_blood_system,(zoology) the system of venous blood vessels in an animal
+79321,vendetta blood_feud,a feud in which members of the opposing parties murder each other
+79322,vending peddling hawking vendition,the act of selling goods for a living
+79323,vending_machine,a slot machine for selling goods
+79324,veneer veneering,coating consisting of a thin layer of superior wood glued to a base of inferior wood
+79325,veneering,the act of applying veneer
+79326,venerability venerableness,the quality of deserving veneration
+79327,venerator,someone who regards with deep respect or reverence
+79328,venereal_disease VD venereal_infection social_disease Cupid's_itch Cupid's_disease Venus's_curse dose sexually_transmitted_disease STD,a communicable infection transmitted by sexual intercourse or genital contact
+79329,venesection phlebotomy,surgical incision into a vein; used to treat hemochromatosis
+79330,vengeance retribution payback,the act of taking revenge (harming someone in retaliation for something harmful that they have done) especially in the next life; "Vengeance is mine; I will repay, saith the Lord"--Romans 12:19; "For vengeance I would do nothing. This nation is too great to look for mere revenge"--James Garfield; "he swore vengeance on the man who betrayed him"; "the swiftness of divine retribution"
+79331,venial_sin,a pardonable sin regarded as entailing only a partial loss of grace
+79332,venipuncture,(medicine) puncture of a vein through the skin in order to withdraw blood for analysis or to start an intravenous drip or to inject medication or a radiopaque dye
+79333,venire_facias,a judicial writ ordering a sheriff to summon people for jury duty
+79334,venison,meat from a deer used as food
+79335,venogram phlebogram,an X ray of a vein injected with a radiopaque contrast medium
+79336,venography,roentgenographic examination of veins
+79337,venom,toxin secreted by animals; secreted by certain snakes and poisonous insects (e.g., spiders and scorpions)
+79338,venomous_lizard,any of two or three large heavy-bodied lizards; only known venomous lizards
+79339,venous_blood,blood found in the veins; "except in the pulmonary vein venous blood is rich in carbon dioxide and poor in oxygen"
+79340,venous_pressure,the pressure exerted on the walls of the veins by the circulating blood
+79341,venous_sinus sinus,a wide channel containing blood; does not have the coating of an ordinary blood vessel
+79342,vent,a slit in a garment (as in the back seam of a jacket)
+79343,vent,external opening of urinary or genital system of a lower vertebrate
+79344,vent venthole vent-hole blowhole,a hole for the escape of gas or air
+79345,vent volcano,a fissure in the earth's crust (or in the surface of some other planet) through which molten lava and gases erupt
+79346,venter,a speaker who expresses or gives vent to a personal opinion or grievance
+79347,venter,the womb; "`in venter' is legal terminology for `conceived but not yet born'"
+79348,venter,a bulging body part (as the belly of a muscle)
+79349,ventilation airing,the act of supplying fresh air and getting rid of foul air
+79350,ventilation ventilation_system ventilating_system,a mechanical system in a building that provides fresh air; "she was continually adjusting the ventilation"
+79351,ventilation_shaft,a shaft in a building; serves as an air passage for ventilation
+79352,ventilator,a device (such as a fan) that introduces fresh air or expels foul air
+79353,ventral_root ventral_horn anterior_root anterior_horn,one of the two roots of a spinal nerve that passes ventrally from the spinal cord and that consists of motor fibers
+79354,ventricle,one of four connected cavities in the brain; is continuous with the central canal of the spinal cord and contains cerebrospinal fluid
+79355,ventricle heart_ventricle,a chamber of the heart that receives blood from an atrium and pumps it to the arteries
+79356,ventricular_aneurysm,a localized dilation or protrusion on the wall of the left ventricle of the heart (occurring after a myocardial infarction)
+79357,ventricular_fibrillation,fibrillation of heart muscles resulting in interference with rhythmic contractions of the ventricles and possibly leading to cardiac arrest
+79358,ventricular_septal_defect,a common congenital heart defect; an abnormal opening in the septum dividing the ventricles allows blood to pass directly from the left to the right ventricle; large openings may cause congestive heart failure
+79359,ventriloquism ventriloquy,the art of projecting your voice so that it seems to come from another source (as from a ventriloquist's dummy)
+79360,ventriloquist,a performer who projects the voice into a wooden dummy
+79361,ventriloquist's_dummy,a wooden dummy into which a ventriloquist projects the voice
+79362,venture,a commercial undertaking that risks a loss but promises a profit
+79363,venture,any venturesome undertaking especially one with an uncertain outcome
+79364,venture_capital risk_capital,wealth available for investment in new or speculative enterprises
+79365,venture_capitalism,capitalism that invests in innovative enterprises (especially high technology) where the potential profits are large
+79366,venture_capitalist,a speculator who makes money available for innovative projects (especially in high technology)
+79367,venturer merchant-venturer,a merchant who undertakes a trading venture (especially a venture that sends goods overseas)
+79368,venturi,a tube with a constriction; used to control fluid flow (as in the air inlet of a carburetor)
+79369,venue,in law: the jurisdiction where a trial will be held
+79370,venue locale locus,the scene of any event or action (especially the place of a meeting)
+79371,venule venula capillary_vein,a minute vein continuous with a capillary
+79372,veracity,unwillingness to tell lies
+79373,veranda verandah gallery,a porch along the outside of a building (sometimes partly enclosed)
+79374,verapamil Calan Isoptin,a drug (trade names Calan and Isoptin) used as an oral or parenteral calcium blocker in cases of hypertension or congestive heart failure or angina or migraine
+79375,verb,a content word that denotes an action, occurrence, or state of existence
+79376,verb,the word class that serves as the predicate of a sentence
+79377,verbal_creation,creating something by the use of speech and language
+79378,verbal_intelligence,intelligence in the use and comprehension of language
+79379,verbal_noun deverbal_noun,a noun that is derived from a verb
+79380,verbalization verbalisation,the words that are spoken in the activity of verbalization
+79381,verbalization verbalisation,the activity of expressing something in words
+79382,verbena vervain,any of numerous tropical or subtropical American plants of the genus Verbena grown for their showy spikes of variously colored flowers
+79383,verbiage verbalism,overabundance of words
+79384,verbolatry grammatolatry word-worship,the worship of words
+79385,verboseness verbosity,an expressive style that uses excessive or empty words
+79386,verd_antique verde_antique,a dark green impure marble
+79387,verdict finding_of_fact,(law) the findings of a jury on issues of fact submitted to it for decision; can be used in formulating a judgment
+79388,verdigris,a green patina that forms on copper or brass or bronze that has been exposed to the air or water for long periods of time
+79389,verdigris cupric_acetate,a blue or green powder used as a paint pigment
+79390,verdin Auriparus_flaviceps,very small yellow-headed titmouse of western North America
+79391,verge,a grass border along a road
+79392,verge brink,the limit beyond which something happens or changes; "on the verge of tears"; "on the brink of bankruptcy"
+79393,verger,a church officer who takes care of the interior of the building and acts as an attendant (carries the verge) during ceremonies
+79394,verification,(law) an affidavit attached to a statement confirming the truth of that statement
+79395,verisimilitude,the appearance of truth; the quality of seeming to be true
+79396,verity,an enduring or necessary ethical or religious or aesthetic truth
+79397,vermicelli,pasta in strings thinner than spaghetti
+79398,vermicide,an agent that kills worms (especially those in the intestines)
+79399,vermiculation,a decoration consisting of wormlike carvings
+79400,vermiculite,any of a group of yellow or brown hydrous silicate minerals having a micaceous structure
+79401,vermifuge anthelmintic anthelminthic helminthic,a medication capable of causing the evacuation of parasitic intestinal worms
+79402,vermillion_flycatcher firebird Pyrocephalus_rubinus_mexicanus,tropical American flycatcher found as far north as southern Texas and Arizona; adult male has bright scarlet and black plumage
+79403,vermillion_rockfish rasher Sebastodes_miniatus,a commercially important fish of the Pacific coast of North America
+79404,vermin,any of various small animals or insects that are pests; e.g. cockroaches or rats; "cereals must be protected from mice and other vermin"; "he examined the child's head for vermin"; "boys in the village have probably been shooting vermin"
+79405,vermin varmint,an irritating or obnoxious person
+79406,vermis vermis_cerebelli,the narrow central part of the cerebellum between the two hemispheres
+79407,vermouth,any of several white wines flavored with aromatic herbs; used as aperitifs or in mixed drinks
+79408,vernacular,the everyday speech of the people (as distinguished from literary language)
+79409,vernal_equinox,(astronomy) the equinoctial point that lies in the constellation of Pisces
+79410,vernal_equinox March_equinox spring_equinox,March 21
+79411,vernal_witch_hazel Hamamelis_vernalis,fragrant shrub of lower Mississippi valley having very small flowers from midwinter to spring
+79412,vernation,(botany) the arrangement of young leaves in a leaf bud before it opens
+79413,vernier_caliper vernier_micrometer,a caliper with a vernier scale for very fine measurements
+79414,vernier_scale vernier,a small movable scale that slides along a main scale; the small scale is calibrated to indicate fractional divisions of the main scale
+79415,vernix vernix_caseosa,a white cheeselike protective material that covers the skin of a fetus
+79416,veronica speedwell,any plant of the genus Veronica
+79417,versatility,having a wide variety of skills
+79418,verse rhyme,a piece of poetry
+79419,verse verse_line,a line of metrical text
+79420,versicle,a short verse said or sung by a priest or minister in public worship and followed by a response from the congregation
+79421,versification,a metrical adaptation of something (e.g., of a prose text)
+79422,versification,the form or metrical composition of a poem
+79423,versification,the art or practice of writing verse
+79424,version,an interpretation of a matter from a particular viewpoint; "his version of the fight was different from mine"
+79425,version,manual turning of a fetus in the uterus (usually to aid delivery)
+79426,version variant variation edition,something a little different from others of the same type; "an experimental version of the night fighter"; "a variant of the same word"; "an emery wheel is the modern variation of a grindstone"; "the boy is a younger edition of his father"
+79427,verso,left-hand page
+79428,verst,a Russian unit of length (1.067 km)
+79429,vertebra,one of the bony segments of the spinal column
+79430,vertebral_artery arteria_vertebralis,the first branch of the subclavian artery; divided into four parts
+79431,vertebral_vein vena_vertebralis,a vein that goes through the foramina of the cervical vertebrae and forms a plexus around the vertebral artery; empties into the brachiocephalic vein
+79432,vertebrate craniate,animals having a bony or cartilaginous skeleton with a segmented spinal column and a large brain enclosed in a skull or cranium
+79433,vertebrate_foot pedal_extremity,the extremity of the limb in vertebrates
+79434,vertebrate_paleontology,the paleontology of vertebrates
+79435,vertex,the point of intersection of lines or the point opposite the base of a figure
+79436,vertex peak apex acme,the highest point (of something); "at the peak of the pyramid"
+79437,vertical,something that is oriented vertically
+79438,vertical_angle,either of two equal and opposite angles formed by the intersection of two straight lines
+79439,vertical_bank,a bank so steep that the plane's lateral axis approaches the vertical
+79440,vertical_circle,a great circle on the celestial sphere passing through the zenith and perpendicular to the horizon
+79441,vertical_file,a file in which records are stored upright on one edge
+79442,vertical_integration vertical_combination,absorption into a single firm of several firms involved in all aspects of a product's manufacture from raw materials to distribution
+79443,vertical_section,a mechanical drawing showing the interior of an object as if made by a vertical plane passing through it
+79444,vertical_stabilizer vertical_stabiliser vertical_fin tail_fin tailfin,a stabilizer that is part of the vertical tail structure of an airplane
+79445,vertical_surface,a surface that is vertical
+79446,vertical_tail,the vertical airfoil in the tail assembly of an aircraft
+79447,verticality verticalness erectness uprightness,position at right angles to the horizon
+79448,verticil,a whorl of leaves growing around a stem
+79449,verticilliosis,wilt caused by fungi of the genus Verticillium
+79450,verticillium,a fungus of the genus Verticillium
+79451,vervet vervet_monkey Cercopithecus_aethiops_pygerythrus,South African monkey with black face and hands
+79452,very_high_frequency VHF,30 to 300 megahertz
+79453,very_important_person VIP high-up dignitary panjandrum high_muckamuck,an important or influential (and often overbearing) person
+79454,very_low_density_lipoprotein VLDL,large lipoproteins rich in triglycerides; VLDLs circulate through the blood giving up their triglycerides to fat and muscle tissue until the VLDL remnants are modified and converted into LDL
+79455,very_low_frequency VLF,3 to 30 kilohertz
+79456,vesical_vein vena_vesicalis,veins that drain the vesical plexus and join the internal iliac veins
+79457,vesicant vesicatory,a chemical agent that causes blistering (especially mustard gas)
+79458,vesicle cyst,a small anatomically normal sac or bladderlike structure (especially one containing fluid)
+79459,vesicoureteral_reflux,a backflow of urine from the bladder into the ureter
+79460,vesicular_stomatitis,a disease of horses, cattle, swine, and occasionally human beings; caused by the vesiculovirus
+79461,vesiculation vesication blistering,the formation of vesicles in or beneath the skin
+79462,vesiculitis,inflammation of a seminal vesicle (usually in conjunction with prostatitis)
+79463,vesiculovirus,an animal virus that causes vesicular stomatitis
+79464,vesper,a late afternoon or evening worship service
+79465,vesper_sparrow grass_finch Pooecetes_gramineus,common North American finch noted for its evening song
+79466,vespers evensong,the sixth of the seven canonical hours of the divine office; early evening; now often made a public service on Sundays
+79467,vespertilian_bat vespertilionid,a variety of carnivorous bat
+79468,vespid vespid_wasp,mostly social nest-building wasps
+79469,vessel,an object used as a container (especially for liquids)
+79470,vessel vas,a tube in which a body fluid circulates
+79471,vessel watercraft,a craft designed for water transportation
+79472,vest waistcoat,a man's sleeveless garment worn underneath a coat
+79473,vest_pocket,a small pocket in a man's vest
+79474,vestal,a chaste woman
+79475,vestal_virgin,(Roman mythology) one of the virgin priestesses consecrated to the Roman goddess Vesta and to maintaining the sacred fire in her temple
+79476,vested_interest,(law) an interest in which there is a fixed right to present or future enjoyment and that can be conveyed to another
+79477,vested_interest,groups that seek to control a social system or activity from which they derive private benefit
+79478,vestibular_apparatus vestibular_system,organs mediating the labyrinthine sense; concerned with equilibrium
+79479,vestibular_gland,a gland that opens into the vestibule of the vagina; secretions lubricate the vagina during coitus
+79480,vestibular_vein vena_vestibularis,veins that drain the saccule and utricle
+79481,vestibule,any of various bodily cavities leading to another cavity (as of the ear or vagina)
+79482,vestibule_of_the_ear,the central cavity of the bony labyrinth of the ear
+79483,vestibule_of_the_vagina,the space between the labia minora containing the orifice of the urethra
+79484,vestiture,an archaic term for clothing
+79485,vestment,gown (especially ceremonial garments) worn by the clergy
+79486,vestry,in the Protestant Episcopal Church: a committee elected by the congregation to work with the churchwardens in managing the temporal affairs of the church
+79487,vestry sacristy,a room in a church where sacred vessels and vestments are kept or meetings are held
+79488,vestryman,a man who is a member of a church vestry
+79489,vestrywoman,a woman who is a member of a church vestry
+79490,vesture,something that covers or cloaks like a garment; "fields in a vesture of green"
+79491,vesuvianite vesuvian idocrase,a green or yellow or brown mineral consisting of a hydrated silicate; it occurs as crystals in limestone and is used a gemstone
+79492,vetch,any of various climbing plants of the genus Vicia having pinnately compound leaves that terminate in tendrils and small variously colored flowers; includes valuable forage and soil-building plants
+79493,vetchling,any of various small plants of the genus Lathyrus; climb usually by means of tendrils
+79494,veteran old-timer oldtimer old_hand warhorse old_stager stager,an experienced person who has been through many battles; someone who has given long service
+79495,veteran vet ex-serviceman,a person who has served in the armed forces
+79496,veteran veteran_soldier,a serviceman who has seen considerable active service; "the veterans laughed at the new recruits"
+79497,veterinarian veterinary veterinary_surgeon vet,a doctor who practices veterinary medicine
+79498,veterinary_medicine,the branch of medicine that deals with the diagnosis and treatment of diseases and injuries of animals (especially domestic animals)
+79499,veterinary_school,a school teaching veterinary medicine
+79500,veto,the power or right to prohibit or reject a proposed or intended act (especially the power of a chief executive to reject a bill passed by the legislature)
+79501,veto,a vote that blocks a decision
+79502,vexatious_litigation,litigation shown to have been instituted maliciously and without probable cause; "he got an injunction against vexatious litigation by his enemies"
+79503,viability,capable of being done in a practical and useful way
+79504,viability,(of living things) capable of normal growth and development
+79505,viaduct,bridge consisting of a series of arches supported by piers used to carry a road (or railroad) over a valley
+79506,viand,a choice or delicious dish
+79507,viatical_settlement,cash derived from sale of an insurance policy by a terminally ill policy holder
+79508,viatical_settlement viaticus_settlement,sale of an insurance policy by a terminally ill policy holder
+79509,viatication viaticus,purchasing insurance policies for cash from terminally ill policy holders
+79510,vibist vibraphonist,a musician who plays the vibraphone
+79511,vibraphone vibraharp vibes,a percussion instrument similar to a xylophone but having metal bars and rotating disks in the resonators that produce a vibrato sound
+79512,vibration quiver quivering,the act of vibrating
+79513,vibration vibe,a distinctive emotional aura experienced instinctively; "that place gave me bad vibrations"; "it gave me a nostalgic vibe"
+79514,vibrato,(music) a pulsating effect in an instrumental or vocal tone produced by slight and rapid variations in pitch
+79515,vibrator,a mechanical device that vibrates; "a reed is the vibrator that produces the sound"
+79516,vibrator,mechanical device that produces vibratory motion; used for massage
+79517,vibrio vibrion,curved rodlike motile bacterium
+79518,vicar,(Episcopal Church) a clergyman in charge of a chapel
+79519,vicar,(Church of England) a clergyman appointed to act as priest of a parish
+79520,vicar,a Roman Catholic priest who acts for another higher-ranking clergyman
+79521,vicar-general,(Roman Catholic Church) an administrative deputy who assists a bishop
+79522,vicar_apostolic,a titular Roman Catholic bishop in a non-Catholic area
+79523,vicariate vicarship,the religious institution under the authority of a vicar
+79524,vice,a specific form of evildoing; "vice offends the moral standards of the community"
+79525,vice-presidency,the office and function of a vice president
+79526,vice-presidency vice-presidential_term,the tenure of a vice president
+79527,vice-regent,a regent's deputy
+79528,vice_admiral,an admiral ranking below a full admiral and above a rear admiral
+79529,vice_chairman,one ranking below or serving in the place of a chairman
+79530,vice_chancellor,a deputy or assistant to someone bearing the title of chancellor
+79531,vice_crime,a vice that is illegal
+79532,vice_president V.P.,an executive officer ranking immediately below a president; may serve in the president's place under certain circumstances
+79533,vice_squad,a police group to enforce laws against gambling and prostitution
+79534,vicegerent,someone appointed by a ruler as an administrative deputy
+79535,vicereine,wife of a viceroy
+79536,viceroy Limenitis_archippus,showy American butterfly resembling the monarch but smaller
+79537,viceroy vicereine,governor of a country or province who rules as the representative of his or her king or sovereign
+79538,viceroyalty,a district or province governed by a viceroy
+79539,viceroyship,the position of viceroy
+79540,vichyssoise,a creamy potato soup flavored with leeks and onions; usually served cold
+79541,vicinity locality neighborhood neighbourhood neck_of_the_woods,a surrounding or nearby region; "the plane crashed in the vicinity of Asheville"; "it is a rugged locality"; "he always blames someone else in the immediate neighborhood"; "I will drop in on you the next time I am in this neck of the woods"
+79542,vicious_circle,an argument that assumes that which is to be proved
+79543,vicious_circle vicious_cycle,one trouble leads to another that aggravates the first
+79544,vicissitude,a variation in circumstances or fortune at different times in your life or in the development of something; "the project was subject to the usual vicissitudes of exploratory research"
+79545,vicissitude,mutability in life or nature (especially successive alternation from one condition to another)
+79546,victim,an unfortunate person who suffers from some adverse circumstance
+79547,victim dupe,a person who is tricked or swindled
+79548,victimization,adversity resulting from being made a victim; "his victimization infuriated him"
+79549,victimizer victimiser,a person who victimizes others; "I thought we were partners, not victim and victimizer"
+79550,victimless_crime,an act that is legally a crime but that seem to have no victims; "he considers prostitution to be a victimless crime"
+79551,victor master superior,a combatant who is able to defeat rivals
+79552,victory triumph,a successful ending of a struggle or contest; "a narrow victory"; "the general always gets credit for his army's victory"; "clinched a victory"; "convincing victory"; "the agreement was a triumph for common sense"
+79553,victory_celebration,a celebration following a victory in a battle or sports competition
+79554,victory_garden,a kitchen garden planted during wartime to relieve food shortages
+79555,victory_lap lap_of_honour,a lap by the winning person or team run to celebrate the victory
+79556,victualer victualler,an innkeeper (especially British)
+79557,vicuna,the wool of the vicuna
+79558,vicuna,a soft wool fabric made from the fleece of the vicuna
+79559,vicuna Vicugna_vicugna,small wild cud-chewing Andean animal similar to the guanaco but smaller; valued for its fleecy undercoat
+79560,video,(computer science) the appearance of text and graphics on a video display
+79561,video picture,the visible part of a television transmission; "they could still receive the sound but the picture was gone"
+79562,video_digitizing,the process of capturing and converting and storing video images for use by a computer
+79563,video_iPod,(trademark) an iPod that can also play video files
+79564,video_recording video,a recording of both the visual and audible components (especially one containing a recording of a movie or television program)
+79565,videocassette,a cassette for videotape
+79566,videocassette_recorder VCR,a magnetic tape recorder for recording (and playing back) TV programs
+79567,videodisk videodisc DVD,a digital recording (as of a movie) on an optical disk that can be played on a computer or a television set
+79568,videotape,a video recording made on magnetic tape
+79569,videotape,a relatively wide magnetic tape for use in recording visual images and associated sound
+79570,view,purpose; the phrase `with a view to' means `with the intention of' or `for the purpose of'; "he took the computer with a view to pawning it"
+79571,view,outward appearance; "they look the same in outward view"
+79572,view aspect prospect scene vista panorama,the visual percept of a region; "the most desirable feature of the park are the beautiful views"
+79573,view eyeshot,the range of the eye; "they were soon out of view"
+79574,view survey sight,the act of looking or seeing or observing; "he tried to get a better view of it"; "his survey of the battlefield was limited"
+79575,view_angle angle_of_view,the angle included by a photographic lens
+79576,viewer,an optical device for viewing photographic transparencies
+79577,viewgraph overhead,a transparency for use with an overhead projector
+79578,viewing_audience TV_audience viewers,the audience reached by television
+79579,vigil,a period of sleeplessness
+79580,vigil watch,the rite of staying awake for devotional purposes (especially on the eve of a religious festival)
+79581,vigil_light vigil_candle,a candle lighted by a worshiper in a church
+79582,vigilance_committee,a volunteer committee to maintain order where an efficient legal system does not exist
+79583,vigilante vigilance_man,member of a vigilance committee
+79584,vigilantism,the actions of a vigilance committee in trying to enforce the laws
+79585,vignette,a photograph whose edges shade off gradually
+79586,vignette,a small illustrative sketch (as sometimes placed at the beginning of chapters in books)
+79587,vigor vigour dynamism heartiness,active strength of body or mind
+79588,villa,detached or semidetached suburban house
+79589,villa,country house in ancient Rome consisting of residential quarters and farm buildings around a courtyard
+79590,villa,pretentious and luxurious country residence with extensive grounds
+79591,village hamlet,a settlement smaller than a town
+79592,village small_town settlement,a community of people smaller than a town
+79593,village_green,a village park consisting of a plot of grassy land
+79594,villager,one who has lived in a village most of their life
+79595,villain baddie,the principal bad character in a film or work of fiction
+79596,villain scoundrel,a wicked or evil person; someone who does evil deliberately
+79597,villainess,a woman villain
+79598,villainy,a criminal or vicious act
+79599,villainy villainousness,the quality of evil by virtue of villainous behavior
+79600,villeinage,tenure by which a villein held land
+79601,villeinage villainage,the legal status or condition of servitude of a villein or feudal serf
+79602,villus,a minute hairlike projection on mucous membrane
+79603,vin_ordinaire,cheap French table wine of unspecified origin
+79604,vinblastine Velban,periwinkle plant derivative used as an antineoplastic drug (trade name Velban) that disrupts cell division
+79605,vincristine Oncovin,periwinkle plant derivative used as an antineoplastic drug (trade name Oncovin); used to treat cancer of the lymphatic system
+79606,vindication exoneration,the act of vindicating or defending against criticism or censure etc.; "friends provided a vindication of his position"
+79607,vindictiveness vengefulness,a malevolent desire for revenge
+79608,vine,a plant with a weak stem that derives support from climbing, twining, or creeping along a surface
+79609,vine_maple Acer_circinatum,small maple of northwestern North America having prostrate stems that root freely and form dense thickets
+79610,vine_snake,slender arboreal snake found from southern Arizona to Bolivia
+79611,vinegar,dilute acetic acid
+79612,vinegar acetum,sour-tasting liquid produced usually by oxidation of the alcohol in wine or cider and used as a condiment or food preservative
+79613,vinegar_eel vinegar_worm Anguillula_aceti Turbatrix_aceti,minute eelworm that feeds on organisms that cause fermentation in e.g. vinegar
+79614,vinegar_fly,flies whose larvae feed on pickles and imperfectly sealed preserves
+79615,vinegariness vinegarishness,a sourness resembling that of vinegar
+79616,vinegarroon Mastigoproctus_giganteus,large whip-scorpion of Mexico and southern United States that emits a vinegary odor when alarmed
+79617,vineyard vinery,a farm of grapevines where wine grapes are produced
+79618,vinifera vinifera_grape common_grape_vine Vitis_vinifera,common European grape cultivated in many varieties; chief source of Old World wine and table grapes
+79619,vinifera_grape,grape from a cultivated variety of the common grape vine of Europe
+79620,vinification,the process whereby fermentation changes grape juice into wine
+79621,vintage,a season's yield of wine from a vineyard
+79622,vintage time_of_origin,the oldness of wines
+79623,vintager,a person who harvests grapes for making wine
+79624,vintner wine_merchant,someone who sells wine
+79625,vintner winemaker wine_maker,someone who makes wine
+79626,vinyl,shiny and tough and flexible plastic; used especially for floor coverings
+79627,vinyl vinyl_group vinyl_radical,a univalent chemical radical derived from ethylene
+79628,vinyl_polymer vinyl_resin polyvinyl_resin,a thermoplastic derived by polymerization from compounds containing the vinyl group
+79629,viol,any of a family of bowed stringed instruments that preceded the violin family
+79630,viola,any of the numerous plants of the genus Viola
+79631,viola,a bowed stringed instrument slightly larger than a violin, tuned a fifth lower
+79632,viola_d'amore,viol that is the tenor of the viol family
+79633,viola_da_braccio,a member of the viol family with approximately the range of a viola
+79634,viola_da_gamba gamba bass_viol,viol that is the bass member of the viol family with approximately the range of the cello
+79635,violation infringement,an act that disregards an agreement or a right; "he claimed a violation of his rights under the Fifth Amendment"
+79636,violator debaucher ravisher,someone who assaults others sexually
+79637,violator lawbreaker law_offender,someone who violates the law
+79638,violence,a turbulent state resulting in injuries and destruction etc.
+79639,violence force,an act of aggression (as one against a person who resists); "he may accomplish by craft in the long run what he cannot do by force and violence in the short one"
+79640,violet,any of numerous low-growing violas with small flowers
+79641,violet reddish_blue,a variable color that lies beyond blue in the spectrum
+79642,violet-flowered_petunia Petunia_integrifolia,herb or small shrublet having solitary violet to rose-red flowers
+79643,violet_suksdorfia Suksdorfia_violaceae,slender delicate plant with wide roundish deeply lobed leaves and deep pink to violet funnel-shaped flowers; British Columbia to northern Oregon and west to Idaho and Montana
+79644,violet_wood_sorrel Oxalis_violacea,perennial herb of eastern North America with palmately compound leaves and usually rose-purple flowers
+79645,violin fiddle,bowed stringed instrument that is the highest member of the violin family; this instrument has four strings and a hollow body and an unfretted fingerboard and is played with a bow
+79646,violin_family,(music) the family of bowed stringed instruments
+79647,violin_lesson,a lesson in playing the violin
+79648,violin_maker,someone who makes violins
+79649,violin_section,the section of an orchestra that plays violins
+79650,violinist fiddler,a musician who plays the violin
+79651,violist,a musician who plays the viola
+79652,viomycin Viocin,a basic polypeptide antibiotic (trade name Viocin) administered intramuscularly (along with other drugs) in the treatment of tuberculosis
+79653,viper,venomous Old World snakes characterized by hollow venom-conducting fangs in the upper jaw
+79654,viperine_grass_snake Natrix_maura,a small harmless grass snake
+79655,virago,a noisy or scolding or domineering woman
+79656,viral_delivery_vector,a transducing vector that uses a retrovirus
+79657,viral_hepatitis,hepatitis caused by a virus
+79658,viral_infection virus_infection,infection by a virus that is pathogenic to humans
+79659,viral_pneumonia,pneumonia caused by a virus
+79660,viremia viraemia,the presence of a virus in the blood stream; "viremia spread the smallpox virus to the internal organs"
+79661,vireo,any of various small insectivorous American birds chiefly olive-grey in color
+79662,virga,light wispy precipitation that evaporates before it reaches the ground (especially when the lower air is low in humidity)
+79663,virgin,a person who has never had sex
+79664,virgin's_bower old_man's_beard devil's_darning_needle Clematis_virginiana,common climber of eastern North America that sprawls over other plants and bears numerous panicles of small creamy white flowers
+79665,virgin_wool,wool not used before; wool not processed or woven before
+79666,virginal pair_of_virginals,a legless rectangular harpsichord; played (usually by women) in the 16th and 17th centuries
+79667,virginity,the condition or quality of being a virgin
+79668,viricide virucide,an agent (physical or chemical) that inactivates or destroys viruses
+79669,virilism,the development of male secondary sexual characteristics in a female (or prematurely in a young boy)
+79670,virility,the masculine property of being capable of copulation and procreation
+79671,virility_drug anti-impotence_drug,drug to treat impotence attributable to erectile dysfunction
+79672,virino,(microbiology) a hypothetical infectious particle thought to be the cause of scrapie and other degenerative diseases of the central nervous system; consists of nucleic acid in a protective coat of host cell proteins
+79673,virion,(virology) a complete viral particle; nucleic acid and capsid (and a lipid envelope in some viruses)
+79674,viroid virusoid,the smallest of viruses; a plant virus with its RNA arranged in a circular chromosome without a protein coat
+79675,virologist,a specialist in virology
+79676,virology,the branch of medical science that studies viruses and viral diseases
+79677,virtu,objet d'art collectively (especially fine antiques)
+79678,virtu vertu,artistic quality
+79679,virtu vertu connoisseurship,love of or taste for fine objects of art
+79680,virtual_image,a reflected optical image (as seen in a plane mirror)
+79681,virtual_memory virtual_storage,(computer science) memory created by using the hard disk to simulate additional random-access memory; the addressable storage space available to the user of a computer system in which virtual addresses are mapped into real addresses
+79682,virtual_reality,a hypothetical three-dimensional visual world created by a computer; user wears special goggles and fiber optic gloves etc., and can enter and move about in this world and interact with objects as if inside it
+79683,virtue,a particular moral excellence
+79684,virtue chastity sexual_morality,morality with respect to sexual relations
+79685,virtue virtuousness moral_excellence,the quality of doing what is right and avoiding what is wrong
+79686,virtuosity,technical skill or fluency or style exhibited by a virtuoso
+79687,virtuoso,a musician who is a consummate master of technique and artistry
+79688,virulence virulency,extreme harmfulness (as the capacity of a microorganism to cause disease); "the virulence of the plague"
+79689,virulence virulency,extreme hostility; "the virulence of the malicious old man"
+79690,virus,a harmful or corrupting agency; "bigotry is a virus that must not be allowed to spread"; "the virus of jealousy is latent in everyone"
+79691,virus,(virology) ultramicroscopic infectious agent that replicates itself only within cells of living hosts; many are pathogenic; a piece of nucleic acid (DNA or RNA) wrapped in a thin coat of protein
+79692,virus computer_virus,a software program capable of reproducing itself and usually capable of causing great harm to files or other programs on the same computer; "a true virus cannot spread to another computer without human assistance"
+79693,visa,an endorsement made in a passport that allows the bearer to enter the country issuing it
+79694,viscacha chinchillon Lagostomus_maximus,gregarious burrowing rodent larger than the chinchillas
+79695,viscera entrails innards,internal organs collectively (especially those in the abdominal cavity); "`viscera' is the plural form of `viscus'"
+79696,visceral_leishmaniasis kala-azar Assam_fever dumdum_fever,leishmaniasis of the viscera
+79697,visceral_pleura,pleura that covers the lungs
+79698,viscometer viscosimeter,a measuring instrument for measuring viscosity
+79699,viscometry viscosimetry,the measurement of viscosity
+79700,viscose_rayon viscose,a rayon fabric made from viscose (cellulose xanthate) fibers
+79701,viscosity viscousness,resistance of a liquid to shear forces (and hence to flow)
+79702,viscount,(in various countries) a son or younger brother or a count
+79703,viscount,a British peer who ranks below an earl and above a baron
+79704,viscountcy,the title of a viscount
+79705,viscountcy viscounty,the dignity or rank or position of a viscount or viscountess
+79706,viscountess,a wife or widow of a viscount
+79707,viscountess,a noblewoman holding the rank of viscount in her own right
+79708,viscounty,the domain controlled by a viscount or viscountess
+79709,vise bench_vise,a holding device attached to a workbench; has two jaws to hold workpiece firmly in place
+79710,visibility,capability of providing a clear unobstructed view; "a windshield with good visibility"
+79711,visibility profile,degree of exposure to public notice; "that candidate does not have sufficient visibility to win an election"
+79712,visibility visibleness,quality or fact or degree of being visible; perceptible by the eye or obvious to the eye; "low visibility caused by fog"
+79713,visible_spectrum color_spectrum,the distribution of colors produced when light is dispersed by a prism
+79714,visible_speech,a phonetic alphabet invented by Melville Bell in the 19th century
+79715,visible_speech,spectrogram of speech; speech displayed spectrographically
+79716,vision,a religious or mystical experience of a supernatural appearance; "he had a vision of the Virgin Mary"
+79717,vision,a vivid mental image; "he had a vision of his own death"
+79718,vision visual_sensation,the perceptual experience of seeing; "the runners emerged from the trees into his clear vision"; "he had a visual sensation of intense light"
+79719,visionary,a person given to fanciful speculations and enthusiasms with little regard for what is actually possible
+79720,visionary illusionist seer,a person with unusual powers of foresight
+79721,visit,a meeting arranged by the visitor to see someone (such as a doctor or lawyer) for treatment or advice; "he scheduled a visit to the dentist"
+79722,visit,the act of going to see some person or place or thing for a short time; "he dropped by for a visit"
+79723,visit,the act of visiting in an official capacity (as for an inspection)
+79724,visit,the act of going to see some person in a professional capacity; "a visit to the dentist"
+79725,visitation,any disaster or catastrophe; "a visitation of the plague"
+79726,visitation,an official visit for inspection or supervision; "the commissioner made visitations to all the precinct stations"; "the recent visitation of the bishop to his diocese"
+79727,visitation_right,the right granted by a court to a parent (or other relative) who is deprived of custody of a child to visit the child on a regular basis
+79728,visiting,the activity of making visits; "the purpose was to promote homes, clubs, visiting, and other services"
+79729,visiting_fireman,an important or distinguished visitor
+79730,visiting_nurse,a nurse who is paid to visit the sick in their homes
+79731,visiting_professor,a professor visiting another college or university to teach for a limited time
+79732,visitor visitant,someone who visits
+79733,visor vizor,a piece of armor plate (with eye slits) fixed or hinged to a medieval helmet to protect the face
+79734,visual_agnosia,inability to recognize or interpret objects in the visual field
+79735,visual_aphasia alexia word_blindness,inability to perceive written words
+79736,visual_area visual_cortex,the cortical area that receives information from the lateral geniculate body of the thalamus
+79737,visual_cell,one of the cells of the retina that is sensitive to light
+79738,visual_communication,communication that relies on vision
+79739,visual_display_unit VDU,(British) British term for video display
+79740,visual_field field_of_vision field_of_regard,all of the points of the physical environment that can be perceived by a stable eye at a given moment
+79741,visual_hallucination,illusory visual perception
+79742,visual_image visualization visualisation,a mental image that is similar to a visual perception
+79743,visual_impairment visual_defect vision_defect visual_disorder,impairment of the sense of sight
+79744,visual_percept visual_image,a percept that arises from the eyes; an image in the visual system
+79745,visual_perception beholding seeing,perception by means of the eyes
+79746,visual_property,an attribute of vision
+79747,visual_purple rhodopsin retinal_purple,a red photopigment in the retinal rods of vertebrates; dissociates into retinene by light
+79748,visual_range,distance at which a given standard object can be seen with the unaided eye
+79749,visual_signal,a signal that involves visual communication
+79750,visual_space,the visual perception of space
+79751,visual_system,the sensory system for vision
+79752,visualizer visualiser,one whose prevailing mental imagery is visual
+79753,visually_impaired_person,someone who has inferior vision
+79754,vital_capacity,the maximum amount of air that can be exhaled after a maximum inhalation (usually tested with a spirometer); used to determine the condition of lung tissue
+79755,vital_organ vitals,a bodily organ that is essential for life
+79756,vital_principle life_principle,a hypothetical force to which the functions and qualities peculiar to living things are sometimes ascribed
+79757,vital_sign,sign of life; usually an indicator of a person's general physical condition; "he was still alive but his vital signs were weak"
+79758,vital_statistics,data relating to births and deaths and health and diseases and marriages
+79759,vitalism,(philosophy) a doctrine that life is a vital principle distinct from physics and chemistry
+79760,vitalist,one who believes in vitalism
+79761,vitality verve,an energetic style
+79762,vitalization vitalisation,the state of being vitalized and filled with life
+79763,vitalness,the quality of being essential to maintain life
+79764,vitamin,any of a group of organic substances essential in small quantities to normal metabolism
+79765,vitamin_A antiophthalmic_factor axerophthol A,any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes
+79766,vitamin_A1 retinol,an unsaturated alcohol that occurs in marine fish-liver oils and is synthesized biologically from carotene
+79767,vitamin_A2 dehydroretinol,a viscous alcohol that is less active in mammals than is vitamin A1
+79768,vitamin_B1 thiamine thiamin aneurin antiberiberi_factor,a B vitamin that prevents beriberi; maintains appetite and growth
+79769,vitamin_B12 cobalamin cyanocobalamin antipernicious_anemia_factor,a B vitamin that is used to treat pernicious anemia
+79770,vitamin_B2 vitamin_G riboflavin lactoflavin ovoflavin hepatoflavin,a B vitamin that prevents skin lesions and weight loss
+79771,vitamin_B6 pyridoxine pyridoxal pyridoxamine adermin,a B vitamin that is essential for metabolism of amino acids and starch
+79772,vitamin_Bc vitamin_M folate folic_acid folacin pteroylglutamic_acid pteroylmonoglutamic_acid,a B vitamin that is essential for cell growth and reproduction
+79773,vitamin_C C ascorbic_acid,a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy
+79774,vitamin_D calciferol viosterol ergocalciferol cholecalciferol D,a fat-soluble vitamin that prevents rickets
+79775,vitamin_E tocopherol E,a fat-soluble vitamin that is essential for normal reproduction; an important antioxidant that neutralizes free radicals in the body
+79776,vitamin_K naphthoquinone antihemorrhagic_factor,a fat-soluble vitamin that helps in the clotting of blood
+79777,vitamin_K1 phylloquinone phytonadione,a form of vitamin K
+79778,vitamin_K3 menadione,a form of vitamin K
+79779,vitamin_P bioflavinoid citrin,a vitamin that maintains the resistance of cell and capillary walls to permeation
+79780,vitamin_pill,a pill containing one or more vitamins; taken as a dietary supplement
+79781,vitelline_circulation,circulation of blood between the embryo and the yolk sac
+79782,vitiation,nullification by the destruction of the legal force; rendering null; "the vitiation of the contract"
+79783,viticulture viniculture,the cultivation of grapes and grape vines; grape growing
+79784,viticulturist,a cultivator of grape vine
+79785,vitiligo,an acquired skin disease characterized by patches of unpigmented skin (often surrounded by a heavily pigmented border)
+79786,vitrectomy,a surgical procedure that removes the vitreous humor and replace it with saline solution
+79787,vitreous_humor vitreous_humour vitreous_body,the clear colorless transparent jelly that fills the posterior chamber of the eyeball
+79788,vitrification,a vitrified substance; the glassy result of being vitrified
+79789,vitrification,the process of becoming vitreous
+79790,vitriol oil_of_vitriol sulfuric_acid sulphuric_acid,(H2SO4) a highly corrosive acid made from sulfur dioxide; widely used in the chemical industry
+79791,vituperation invective vitriol,abusive or venomous language used to express blame or censure or bitter deep-seated ill will
+79792,vivacity,characterized by high spirits and animation
+79793,vivarium,an indoor enclosure for keeping and raising living animals and plants and observing them under natural conditions
+79794,viverrine viverrine_mammal,small cat-like predatory mammals of warmer parts of the Old World
+79795,vivification invigoration animation,the activity of giving vitality and vigour to something
+79796,viviparous_eelpout Zoarces_viviparus,an eelpout of northern Europe that is viviparous
+79797,vivisection,the act of operating on living animals (especially in scientific research)
+79798,vivisectionist,a biologist who cuts open live animals for research
+79799,vixen,a female fox
+79800,vixen harpy hellcat,a malicious woman with a fierce temper
+79801,vizier,a high official in a Muslim government (especially in the Ottoman Empire)
+79802,viziership,the position of vizier
+79803,vizsla Hungarian_pointer,Hungarian hunting dog resembling the Weimaraner but having a rich deep red coat
+79804,vocable spoken_word,a word that is spoken aloud
+79805,vocabulary,a listing of the words used in some enterprise
+79806,vocabulary,the system of techniques or symbols serving as a means of expression (as in arts or crafts); "he introduced a wide vocabulary of techniques"
+79807,vocabulary lexicon mental_lexicon,a language user's knowledge of words
+79808,vocal_cord vocal_fold vocal_band plica_vocalis,either of two pairs of folds of mucous membrane projecting into the larynx
+79809,vocal_music,music that is vocalized (as contrasted with instrumental music)
+79810,vocal_music vocal,music intended to be performed by one or more singers, usually with instrumental accompaniment
+79811,vocational_program,a program of vocational education
+79812,vocational_rehabilitation,providing training in a specific trade with the aim of gaining employment
+79813,vocational_rehabilitation_program,a program of rehabilitation through job training with an eye to gainful employment
+79814,vocational_training vocational_education,training for a specific vocation in industry or agriculture or trade
+79815,vocative vocative_case,the case (in some inflected languages) used when the referent of the noun is being addressed
+79816,vociferator,a loud and vehement speaker (usually in protest)
+79817,vodka,unaged colorless liquor originating in Russia
+79818,vodka_martini,martini made with vodka rather than gin
+79819,vogue,a current state of general acceptance and use
+79820,vogue trend style,the popular taste at a given time; "leather is the latest vogue"; "he followed current trends"; "the 1920s had a style of their own"
+79821,voice,(linguistics) the grammatical relation (active or passive) of the grammatical subject of a verb to the action that the verb denotes
+79822,voice,(metonymy) a singer; "he wanted to hear trained voices sing it"
+79823,voice,a sound suggestive of a vocal utterance; "the noisy voice of the waterfall"; "the incessant voices of the artillery"
+79824,voice,something suggestive of speech in being a medium of expression; "the wee small voice of conscience"; "the voice of experience"; "he said his voices told him to do it"
+79825,voice,the ability to speak; "he lost his voice"
+79826,voice,the distinctive quality or pitch or condition of a person's speech; "A shrill voice sounded behind us"
+79827,voice,a means or agency by which something is expressed or communicated; "the voice of the law"; "the Times is not the voice of New York"; "conservatism has many voices"
+79828,voice vocalization vocalisation vocalism phonation vox,the sound made by the vibration of vocal folds modified by the resonance of the vocal tract; "a singer takes good care of his voice"; "the giraffe cannot make any vocalizations"
+79829,voice_mail voicemail,a computerized system for answering and routing telephone calls; telephone messages can be recorded and stored and relayed
+79830,voice_over,the voice on an unseen commentator in a film of television program
+79831,voice_part,a part written for a singer
+79832,voicelessness,having no voice in the management or control of affairs; "the voicelessness of those who live in situations of hopelessness"
+79833,voiceprint,biometric identification by electronically recording and graphically representing a person's voice; "voiceprints are uniquely characteristic of individual speakers"
+79834,voicer,someone who regulates the tone of organ pipes
+79835,voicer,a speaker who voices an opinion
+79836,voicing,the act of adjusting an organ pipe (or wind instrument) so that it conforms to the standards of tone and pitch and color
+79837,void vacancy emptiness vacuum,an empty area or space; "the huge desert voids"; "the emptiness of outer space"; "without their support he'll be ruling in a vacuum"
+79838,voider gusset,a piece of chain mail covering a place unprotected by armor plate
+79839,voile,a light semitransparent fabric
+79840,vol-au-vent,puff paste shell filled with a savory meat mixture usually with a sauce
+79841,volatile,a volatile substance; a substance that changes readily from solid or liquid to a vapor; "it was heated to evaporate the volatiles"
+79842,volatile_storage,computer storage that is erased when the power is turned off
+79843,volatility,the property of changing readily from a solid or liquid to a vapor
+79844,volatility unpredictability,the trait of being unpredictably irresolute; "the volatility of the market drove many investors away"
+79845,volcanic_crater crater,a bowl-shaped geological formation at the top of a volcano
+79846,volcanic_eruption eruption,the sudden occurrence of a violent discharge of steam and volcanic material
+79847,volcanic_glass,a kind of natural glass produced when molten lava cools very rapidly
+79848,volcanic_rock,extrusive igneous rock solidified near or on the surface of the Earth
+79849,volcanism,the phenomena associated with volcanic activity
+79850,volcano,a mountain formed by volcanic material
+79851,volcanology vulcanology,the branch of geology that studies volcanoes
+79852,vole field_mouse,any of various small mouselike rodents of the family Cricetidae (especially of genus Microtus) having a stout short-tailed body and inconspicuous ears and inhabiting fields or meadows
+79853,volition will,the capability of conscious choice and decision and intention; "the exercise of their volition we construe as revolt"- George Meredith
+79854,volition willing,the act of making a choice; "followed my father of my own volition"
+79855,volley,a tennis return made by hitting the ball before it bounces
+79856,volleyball,an inflated ball used in playing volleyball
+79857,volleyball volleyball_game,a game in which two teams hit an inflated ball over a high net using their hands
+79858,volleyball_court,the court on which volleyball is played
+79859,volleyball_net,the high net that separates the two teams and over which the volleyball must pass
+79860,volleyball_player,someone who plays the game of volleyball
+79861,volt V,a unit of potential equal to the potential difference between two points on a conductor carrying a current of 1 ampere when the power dissipated between the two points is 1 watt; equivalent to the potential difference across a resistance of 1 ohm when 1 ampere of current flows through it
+79862,volt-ampere var,a unit of electrical power in an AC circuit equal to the power dissipated when 1 volt produces a current of 1 ampere
+79863,voltage electromotive_force emf,the rate at which energy is drawn from a source that produces a flow of electricity in a circuit; expressed in volts
+79864,voltage_drop,a decrease in voltage along a conductor through which current is flowing
+79865,voltage_regulator,a transformer whose voltage ratio of transformation can be adjusted
+79866,voltaic_battery galvanic_battery,battery consisting of a number of voltaic cells arranged in series or parallel
+79867,voltaic_cell galvanic_cell primary_cell,an electric cell that generates an electromotive force by an irreversible conversion of chemical to electrical energy; cannot be recharged
+79868,voltaic_pile pile galvanic_pile,battery consisting of voltaic cells arranged in series; the earliest electric battery devised by Volta
+79869,voltmeter,meter that measures the potential difference between two points
+79870,volume,a relative amount; "mix one volume of the solution with ten volumes of water"
+79871,volume,the amount of 3-dimensional space occupied by an object; "the gas expanded to twice its original volume"
+79872,volume,a publication that is one of a set of several similar publications; "the third volume was missing"; "he asked for the 1989 volume of the Annual Review"
+79873,volume loudness intensity,the magnitude of sound (usually in a specified direction); "the kids played their music at full volume"
+79874,volume_unit capacity_unit capacity_measure cubage_unit cubic_measure cubic_content_unit displacement_unit cubature_unit,a unit of measurement of volume or capacity
+79875,volumeter,a meter to measure the volume of gases, liquids, or solids (either directly or by displacement)
+79876,volumetric_analysis,determination of the volume of gases (or changes in their volume) during combination
+79877,volumetric_analysis,quantitative analysis by the use of definite volumes of standard solutions or reagents
+79878,voluntary,composition (often improvised) for a solo instrument (especially solo organ) and not a regular part of a religious service or musical performance
+79879,voluntary_muscle,striated muscle that can be controlled voluntarily
+79880,volunteer military_volunteer voluntary,(military) a person who freely enlists for service
+79881,volunteer unpaid_worker,a person who performs voluntary work
+79882,voluptuary sybarite,a person addicted to luxury and pleasures of the senses
+79883,volution,a rolling or revolving motion
+79884,volva,cuplike structure around the base of the stalk of certain fungi
+79885,volvelle wheel_chart,a circular slide chart having rotating parts
+79886,volvulus,abnormal twisting of the intestines (usually in the area of the ileum or sigmoid colon) resulting in intestinal obstruction
+79887,vomer,thin trapezoidal bone of the skull forming the posterior and inferior parts of the nasal septum
+79888,vomit vomiting emesis regurgitation disgorgement puking,the reflex act of ejecting the contents of the stomach through the mouth
+79889,vomit vomitus puke barf,the matter ejected in vomiting
+79890,vomiter spewer,a person who vomits
+79891,vomitory,an entrance to an amphitheater or stadium
+79892,von_Neumann Neumann John_von_Neumann,United States mathematician who contributed to the development of atom bombs and of stored-program digital computers (1903-1957)
+79893,von_Neumann_machine,any digital computer incorporating the ideas of stored programs and serial counters that were proposed in 1946 by von Neumann and his colleagues
+79894,von_Sternberg Josef_von_Sternberg,United States film maker (born in Austria) whose films made Marlene Dietrich an international star (1894-1969)
+79895,von_Willebrand's_disease angiohemophilia vascular_hemophilia,a form of hemophilia discovered by Erik von Willebrand; a genetic disorder that is inherited as an autosomal recessive trait; characterized by a deficiency of the coagulation factor and by mucosal bleeding
+79896,voodoo,(Haiti) followers of a religion that involves witchcraft and animistic deities
+79897,voodoo vodoun voodooism hoodooism,a religious cult practiced chiefly in Caribbean countries (especially Haiti); involves witchcraft and animistic deities
+79898,vortex_vein vorticose_vein vena_vorticosum,a vein formed by branches from the back surface of the eye and the ciliary body; empties into the ophthalmic veins
+79899,vorticella,any of various protozoa having a transparent goblet-shaped body with a retractile stalk
+79900,votary,one bound by vows to a religion or life of worship or service; "monasteries of votaries"
+79901,votary,a priest or priestess (or consecrated worshipper) in a non-Christian religion or cult; "a votary of Aphrodite"
+79902,votary,a devoted (almost religiously so) adherent of a cause or person or activity; "the cultured votary of science"
+79903,vote,a body of voters who have the same interests; "he failed to get the Black vote"
+79904,vote,the opinion of a group as determined by voting; "they put the question to a vote"
+79905,vote ballot voting balloting,a choice that is made by counting the number of people in favor of each alternative; "there were only 17 votes in favor of the motion"; "they allowed just one vote per person"
+79906,vote voter_turnout,the total number of voters who participated; "they are expecting a large vote"
+79907,vote_of_confidence,an expression of approval and encouragement; "they gave the chairman a vote of confidence"
+79908,voter elector,a citizen who has a legal right to vote
+79909,voting_age,the age at which a person is old enough to vote in public elections
+79910,voting_booth,a booth in which a person can cast a private vote
+79911,voting_machine,a mechanical device for recording and counting votes mechanically
+79912,voting_precinct election_district,one of several districts into which a city or town is divided for voting; each contains one polling place
+79913,voting_right,the right to vote; especially the right of a common shareholder to vote in person or by proxy on the affairs of a company
+79914,voting_stock,shares in a corporation that entitle the shareholder to voting and proxy rights
+79915,voting_system electoral_system,a legal system for making democratic choices
+79916,voting_trust,an agreement whereby persons owning stock with voting powers retain ownership while transferring the voting rights to the trustees
+79917,vouchee,(law) a person called into court to defend a title
+79918,voucher,a document that serves as evidence of some expenditure
+79919,voucher verifier,someone who vouches for another or for the correctness of a statement
+79920,vouge,a kind of pike used by foot soldiers in the 14th century
+79921,voussoir,wedge-shaped stone building block used in constructing an arch or vault
+79922,vow,a solemn pledge (to oneself or to another or to a deity) to do something or to behave in a certain manner; "they took vows of poverty"
+79923,vowel,a letter of the alphabet standing for a spoken vowel
+79924,vowel vowel_sound,a speech sound made with the vocal tract open
+79925,vowel_point,a mark placed below or near a consonant (as in Hebrew or Arabic) to indicate the spoken vowel
+79926,vowel_system vocalism,the system of vowels used in a particular language
+79927,vower,someone who makes a solemn promise to do something or behave in a certain way; "young vowers of eternal love"; "there are many vowers of chastity but few who observe it"
+79928,vox_angelica voix_celeste,an organ stop producing a gentle tremolo effect
+79929,vox_humana,an organ reed stop producing tones imitative of the human voice
+79930,voyage,a journey to some distant place
+79931,voyager,a traveler to a distant land (especially one who travels by sea)
+79932,voyeur Peeping_Tom peeper,a viewer who enjoys seeing the sex acts or sex organs of others
+79933,voyeurism,a perversion in which a person receives sexual gratification from seeing the genitalia of others or witnessing others' sexual behavior
+79934,vroom,the roaring sound made by a motor that is running at high speed
+79935,vulcanization vulcanisation,process of treating rubber or rubberlike materials with sulphur at great heat to improve elasticity and strength or to harden them
+79936,vulcanizer vulcaniser,someone who vulcanizes rubber to improve its strength and resiliency
+79937,vulgarian,a vulgar person (especially someone who makes a vulgar display of wealth)
+79938,vulgarization vulgarisation,the act of rendering something coarse and unrefined
+79939,vulgarizer vulgariser,someone who makes something vulgar
+79940,vulnerability,susceptibility to injury or attack
+79941,vulnerability exposure,the state of being vulnerable or exposed; "his vulnerability to litigation"; "his exposure to ridicule"
+79942,vulture,any of various large diurnal birds of prey having naked heads and weak claws and feeding chiefly on carrion
+79943,vulva,external parts of the female genitalia
+79944,vulvectomy,surgical removal of part or all of the vulva
+79945,vulvitis,inflammation of the vulva
+79946,vulvovaginitis,inflammation of the vulva and the vagina
+79947,wad,a small mass of soft material; "he used a wad of cotton to wipe the counter"
+79948,waddle,walking with short steps and the weight tilting from one foot to the other; "ducks walk with a waddle"
+79949,waddler,someone who walks with a waddling gait; "fat waddlers who walk like pigeons"
+79950,waders,waterproof hip boots (sometimes extending to the chest) worn by anglers
+79951,wadi,gully or streambed in northern Africa and the Middle East that remains dry except during rainy season
+79952,wading,walking with your feet in shallow water
+79953,wading_bird wader,any of many long-legged birds that wade in water in search of food
+79954,wading_pool,a shallow pool for children
+79955,wafer,a small adhesive disk of paste; used to seal letters
+79956,wafer,a small thin crisp cake or cookie
+79957,wafer,thin disk of unleavened bread used in a religious service (especially in the celebration of the Eucharist)
+79958,waffle,pancake batter baked in a waffle iron
+79959,waffle_iron,a kitchen appliance for baking waffles; the appliance usually consists of two indented metal pans hinged together so that they create a pattern on the waffle
+79960,waffler,someone who speaks or writes in a vague and evasive manner
+79961,wag waggle shake,causing to move repeatedly from side to side
+79962,wag wit card,a witty amusing person who makes jokes
+79963,wage pay earnings remuneration salary,something that remunerates; "wages were paid by check"; "he wasted his pay on drink"; "they saved a quarter of all their earnings"
+79964,wage_claim pay_claim,the wage demanded from management for workers by their union representatives
+79965,wage_concession,an agreement to raise wages
+79966,wage_floor,floor below which wages are not allowed to fall
+79967,wage_freeze,a freeze of wages at a given level
+79968,wage_scale wage_schedule,a schedule of wages paid for different jobs
+79969,wage_setter,any economic condition or variable that serves to set wage rates
+79970,wages reward payoff,a recompense for worthy acts or retribution for wrongdoing; "the wages of sin is death"; "virtue is its own reward"
+79971,waggery waggishness,waggish behavior
+79972,wagon coaster_wagon,a child's four-wheeled toy cart sometimes used for coasting
+79973,wagon waggon,any of various kinds of wheeled vehicles drawn by an animal or a tractor
+79974,wagon_tire,a metal hoop forming the tread of a wheel
+79975,wagon_wheel,a wheel of a wagon
+79976,wagoner waggoner,the driver of a wagon
+79977,wagonwright waggonwright wainwright,a wagon maker
+79978,wagtail,Old World bird having a very long tail that jerks up and down as it walks
+79979,wahoo Acanthocybium_solandri,large fast-moving predacious food and game fish; found worldwide
+79980,wahoo burning_bush Euonymus_atropurpureus,deciduous shrub having purple capsules enclosing scarlet seeds
+79981,waif street_child,a homeless child especially one forsaken or orphaned; "street children beg or steal in order to survive"
+79982,wailer,a mourner who utters long loud high-pitched cries
+79983,wailing bawling,loud cries made while weeping
+79984,wain,large open farm wagon
+79985,wainscot dado,panel forming the lower part of an interior wall when it is finished differently from the rest of the wall
+79986,wainscot wainscoting wainscotting,wooden panels that can be used to line the walls of a room
+79987,wainscoting wainscotting,a wainscoted wall (or wainscoted walls collectively)
+79988,waist waistline,the narrowing of the body between the ribs and hips
+79989,waist_pack belt_bag,a small pouch (usually with a zipper) that attaches to a belt and is worn around the waist
+79990,wait waiting,the act of waiting (remaining inactive in one place while expecting something); "the wait was an ordeal for him"
+79991,waiter,a person who waits or awaits
+79992,waiter server,a person whose occupation is to serve at table (as in a restaurant)
+79993,waiting_game,a strategy of delay
+79994,waiting_list,a roster of those waiting to obtain something
+79995,waitress,a woman waiter
+79996,wake backwash,the wave that spreads behind a boat as it moves forward; "the motorboat's wake capsized the canoe"
+79997,wake viewing,a vigil held over a corpse the night before burial; "there's no weeping at an Irish wake"
+79998,wake-up_call,a warning to take action concerning something that was overlooked or neglected; "the bombing was a wake-up call to strengthen domestic security"
+79999,wake-up_call,a telephone call that you request be made a specific time in order to wake you up at that time (especially in hotels); "she left a wake-up call for 7 a.m."
+80000,wake_board wakeboard,a buoyant board (resembling a surfboard) that is used to ride over water while being pulled behind a motorboat
+80001,wakefulness,a periodic state during which you are conscious and aware of the world; "consciousness during wakefulness in a sane person is pretty well ordered and familiar"
+80002,wakefulness sleeplessness,a temporary state in which you are unable (or unwilling) to sleep; "accept your wakefulness and sleep in its own contrary way is more likely to come"
+80003,waker,a person who awakes; "an early waker"
+80004,waker rouser arouser,someone who rouses others from sleep
+80005,waking,the state of remaining awake; "days of danger and nights of waking"
+80006,wale strake,thick plank forming a ridge along the side of a wooden ship
+80007,wale welt weal wheal,a raised mark on the skin (as produced by the blow of a whip); characteristic of many allergic reactions
+80008,walk,a slow gait of a horse in which two feet are always on the ground
+80009,walk,the act of walking somewhere; "he took a walk after lunch"
+80010,walk manner_of_walking,manner of walking; "he had a funny walk"
+80011,walk walking,the act of traveling by foot; "walking is a healthy form of exercise"
+80012,walk walkway paseo,a path set aside for walking; "after the blizzard he shoveled the front walk"
+80013,walk-in,person who walks in without having an appointment; "the emergency room was overrun with walk-ins"
+80014,walk-in,an operative who initiates his own defection (usually to a hostile country) for political asylum
+80015,walk-in,a small room large enough to admit entrance
+80016,walk-in waltz,an assured victory (especially in an election)
+80017,walk-on,plays a small part in a dramatic production
+80018,walk-through,a thorough explanation (usually accompanied by a demonstration) of each step in a procedure or process; "she gave me a walk-through of my new duties"
+80019,walk-through,a pedestrian passageway through the ground floor of a building
+80020,walk-through,a first perfunctory rehearsal of a theatrical production in which actors read their lines from the script and move as directed
+80021,walk-through,the act of walking in order to view something; "the realtor took her on a walk-through of the apartment"
+80022,walk-up,an apartment building without an elevator
+80023,walk-up_apartment walk-up,an apartment in a building without an elevator
+80024,walk_of_life walk,careers in general; "it happens in all walks of life"
+80025,walkabout,a walking trip or tour
+80026,walkabout,a public stroll by a celebrity to meet people informally
+80027,walkabout,nomadic excursions into the bush made by an Aborigine
+80028,walker,a shoe designed for comfortable walking
+80029,walker Zimmer Zimmer_frame,a light enclosing framework (trade name Zimmer) with rubber castors or wheels and handles; helps invalids or the handicapped or the aged to walk
+80030,walker baby-walker go-cart,an enclosing framework on casters or wheels; helps babies learn to walk
+80031,walkie-talkie walky-talky,small portable radio link (receiver and transmitter)
+80032,walking_delegate,a union representative who visits workers at their jobs to see whether agreements are observed
+80033,walking_fern walking_leaf Asplenium_rhizophyllum Camptosorus_rhizophyllus,ferns having lanceolate fronds that root at the tip
+80034,walking_leaf leaf_insect,tropical insect having a flattened leaflike body; common in southern Asia and the East Indies
+80035,walking_papers marching_orders,(informal) a notice of dismissal or discharge
+80036,walking_shoe,a light comfortable shoe designed for vigorous walking
+80037,walking_stick,a stick carried in the hand for support in walking
+80038,walking_stick walkingstick stick_insect,any of various mostly tropical insects having long twiglike bodies
+80039,walkout,a strike in which the workers walk out
+80040,walkout,the act of walking out (of a meeting or organization) as a sign of protest; "there was a walkout by the Black members as the chairman rose to speak"
+80041,walkover,backbends combined with handstands
+80042,wall,a difficult or awkward situation; "his back was to the wall"; "competition was pushing them to the wall"
+80043,wall,a vertical (or almost vertical) smooth rock face (as of a cave or mountain)
+80044,wall,anything that suggests a wall in structure or function or effect; "a wall of water"; "a wall of smoke"; "a wall of prejudice"; "negotiations ran into a brick wall"
+80045,wall,a layer of material that encloses space; "the walls of the cylinder were perforated"; "the container's walls were blue"
+80046,wall,a masonry fence (as around an estate or garden); "the wall followed the road"; "he ducked behind the garden wall and waited"
+80047,wall,an architectural partition with a height and length greater than its thickness; used to divide or enclose an area or to support another structure; "the south wall had a small window"; "the walls were covered with pictures"
+80048,wall paries,(anatomy) a layer (a lining or membrane) that encloses a structure; "stomach walls"
+80049,wall_clock,a clock mounted on a wall
+80050,wall_creeper tichodrome Tichodroma_muriaria,crimson-and-grey songbird that inhabits town walls and mountain cliffs of southern Eurasia and northern Africa
+80051,wall_germander Teucrium_chamaedrys,European perennial subshrub with red-purple or bright rose flowers with red and white spots
+80052,wall_panel,paneling that forms part of a wall
+80053,wall_pepper Sedum_acre,mossy European creeping sedum with yellow flowers; widely introduced as a ground cover
+80054,wall_plate,plate (a timber along the top of a wall) to support the ends of joists, etc., and distribute the load
+80055,wall_rock,a rock immediately adjacent to a vein or fault
+80056,wall_rocket Diplotaxis_muralis Diplotaxis_tenuifolia,yellow-flowered European plant that grows on old walls and in waste places; an adventive weed in North America
+80057,wall_rue wall_rue_spleenwort Asplenium_ruta-muraria,small delicate spleenwort found on a steep slope (as a wall or cliff) of Eurasia and North America
+80058,wall_socket wall_plug electric_outlet electrical_outlet outlet electric_receptacle,receptacle providing a place in a wiring system where current can be taken to run electrical devices
+80059,wall_tent,a canvas tent with four vertical walls
+80060,wall_unit,a piece of furniture having several units that stands against one wall of a room
+80061,wallaby brush_kangaroo,any of various small or medium-sized kangaroos; often brightly colored
+80062,wallah,usually in combination: person in charge of or employed at a particular thing; "a kitchen wallah"; "the book wallah"
+80063,wallboard drywall dry_wall,a wide flat board used to cover walls or partitions; made from plaster or wood pulp or other materials and used primarily to form the interior walls of houses
+80064,wallet billfold notecase pocketbook,a pocket-size case for holding papers and paper money
+80065,walleye divergent_strabismus exotropia,strabismus in which one or both eyes are directed outward
+80066,walleye walleyed_pike jack_salmon dory Stizostedion_vitreum,pike-like freshwater perches
+80067,wallflower,any of numerous plants of the genus Erysimum having fragrant yellow or orange or brownish flowers
+80068,wallflower,remains on sidelines at social event
+80069,wallflower Cheiranthus_cheiri Erysimum_cheiri,perennial of southern Europe having clusters of fragrant flowers of all colors especially yellow and orange; often naturalized on old walls or cliffs; sometimes placed in genus Erysimum
+80070,wallop,a severe blow
+80071,walloper,a very hard hitter
+80072,walloper,a winner by a wide margin
+80073,wallow,a puddle where animals go to wallow
+80074,wallow,an indolent or clumsy rolling about; "a good wallow in the water"
+80075,wallpaper,a decorative paper for the walls of rooms
+80076,wallpaperer wall-paperer,a worker who papers walls
+80077,wally,a silly and inept person; someone who is regarded as stupid
+80078,walnut,hard dark-brown wood of any of various walnut trees; used especially for furniture and paneling
+80079,walnut,nut of any of various walnut trees having a wrinkled two-lobed seed with a hard shell
+80080,walnut walnut_tree,any of various trees of the genus Juglans
+80081,walnut_blight,a disease of English walnut trees
+80082,walnut_oil,oil from walnuts
+80083,walrus seahorse sea_horse,either of two large northern marine mammals having ivory tusks and tough hide over thick blubber
+80084,walrus_mustache walrus_moustache,a bushy droopy mustache
+80085,waltz,music composed in triple time for waltzing
+80086,waltz valse,a ballroom dance in triple time with a strong accent on the first beat
+80087,waltzer,a dancer who waltzes
+80088,wampum peag wampumpeag,small cylindrical beads made from polished shells and fashioned into strings or belts; used by certain Native American peoples as jewelry or currency
+80089,wand,a thin supple twig or rod; "stems bearing slender wands of flowers"
+80090,wand,a rod used by a magician or water diviner
+80091,wanderer roamer rover bird_of_passage,someone who leads a wandering unsettled life
+80092,wandering roving vagabondage,travelling about without any clear destination; "she followed him in his wanderings and looked after him"
+80093,wandering_albatross Diomedea_exulans,very large albatross; white with wide black wings
+80094,wanderlust itchy_feet,very strong or irresistible impulse to travel
+80095,wandflower Sparaxis_tricolor,a showy often-cultivated plant with tawny yellow often purple-spotted flowers
+80096,wangle wangling,an instance of accomplishing something by scheming or trickery
+80097,waning,a gradual decrease in magnitude or extent; "the waning of his enthusiasm was obvious"; "the waxing and waning of the moon"
+80098,want_ad,a newspaper advertisement stating what is wanted
+80099,wanted_notice wanted_poster,a public announcement by a law enforcement agency that they desire to question or arrest some person
+80100,wanter needer,a person who wants or needs something; "an owner of many things and needer of none"
+80101,wanton,lewd or lascivious woman
+80102,wapiti elk American_elk Cervus_elaphus_canadensis,large North American deer with large much-branched antlers in the male
+80103,war,a concerted campaign to end something that is injurious; "the war on poverty"; "the war against crime"
+80104,war state_of_war,a legal state created by a declaration of war and ended by official declaration during which the international rules of war apply; "war was declared in November but actual fighting did not begin until the following spring"
+80105,war warfare,an active struggle between competing entities; "a price war"; "a war of wits"; "diplomatic warfare"
+80106,war warfare,the waging of armed conflict against an enemy; "thousands of people were killed in the war"
+80107,war_baby,conceived or born during war
+80108,war_bride,bride of a serviceman during wartime
+80109,war_chest,a fund accumulated to finance a war (or a political campaign)
+80110,war_cloud,an ominous sign that war threatens
+80111,war_correspondent,a journalist who sends news reports and commentary from a combat zone or place of battle for publication or broadcast
+80112,war_crime,a crime committed in wartime; violation of rules of war
+80113,war_criminal,an offender who violates international law during times of war
+80114,war_cry rallying_cry battle_cry cry watchword,a slogan used to rally support for a cause; "a cry to arms"; "our watchword will be `democracy'"
+80115,war_cry war_whoop rallying_cry battle_cry,a yell intended to rally a group of soldiers in battle
+80116,war_dance,a ceremonial dance performed before a battle or after a victory
+80117,war_game,a simulation of a military operation intended to train military commanders or to demonstrate a situation or to test a proposed strategy
+80118,war_god god_of_war,a god worshipped as giving victory in war
+80119,war_paint,adornment consisting of paint applied to the face and body of certain Amerindians before a battle
+80120,war_paint,full ceremonial regalia
+80121,war_party,a band of warriors who raid or fight an enemy (used especially of Native Americans)
+80122,war_party,a political party that supports a war
+80123,war_power,an extraordinary power exercised (usually by the executive branch) in the prosecution of a war and involving an extension of the powers that the government normally has in peacetime
+80124,war_room,a room where strategic decisions are made (especially for military or political campaigns)
+80125,war_widow,a woman whose husband has died in war
+80126,war_zone,a combat zone where military operations are coordinated (especially a designated area in international waters where the rights of neutrals are not respected by nations at war)
+80127,waratah Telopea_Oreades,tall shrub of eastern Australia having oblanceolate to obovate leaves and red flowers in compact racemes
+80128,waratah Telopea_speciosissima,straggling shrub with narrow leaves and conspicuous red flowers in dense globular racemes
+80129,warble,a lumpy abscess under the hide of domestic mammals caused by larvae of a botfly or warble fly
+80130,warble_fly,hairy bee-like fly whose larvae produce lumpy abscesses (warbles) under the skin of cattle
+80131,warbler,a singer; usually a singer who adds embellishments to the song
+80132,warbler,a small active songbird
+80133,ward,a person who is under the protection or in the custody of another
+80134,ward,a district into which a city or town is divided for the purpose of administration and elections
+80135,ward hospital_ward,block forming a division of a hospital (or a suite of rooms) shared by patients who need a similar kind of care; "they put her in a 4-bed ward"
+80136,warden,the chief official in charge of a prison
+80137,wardenship,the position of warden
+80138,warder,a person who works in a prison and is in charge of prisoners
+80139,wardership,the position of warder
+80140,wardress,a woman warder
+80141,wardrobe,collection of costumes belonging to a theatrical company
+80142,wardrobe,collection of clothing belonging to one person
+80143,wardrobe closet press,a tall piece of furniture that provides storage space for clothes; has a door and rails or hooks for hanging clothes
+80144,wardroom,military quarters for dining and recreation for officers of a warship (except the captain)
+80145,ware,articles of the same kind or material; usually used in combination: `silverware', `software'
+80146,warehouse storage_warehouse,a storehouse for goods and merchandise
+80147,warehouseman's_lien,right of a warehouseman to retain goods until all storage charges have been paid
+80148,warehouser warehouseman,a workman who manages or works in a warehouse
+80149,warfarin Coumadin,an anticoagulant (trade name Coumadin) use to prevent and treat a thrombus or embolus
+80150,warhead payload load,the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents
+80151,warhorse,a work of art (composition or drama) that is part of the standard repertory but has become hackneyed from much repetition
+80152,warhorse,horse used in war
+80153,wariness chariness,the trait of being cautious and watchful
+80154,warlock,a male witch or demon
+80155,warlord,supreme military leader exercising civil power in a region especially one accountable to nobody when the central government is weak
+80156,warm-up tune-up prolusion,exercising in preparation for strenuous activity
+80157,warm_front,the front of an advancing mass of warmer air
+80158,warm_up,performing mild exercises to prepare for some more strenuous activity; "the singers have to warm up"; "the marathon runner did not warm up and hurt himself"
+80159,warmheartedness warmth,a warmhearted feeling
+80160,warming_pan,a long-handled covered pan holding live coals to warm a bed
+80161,warmongering war_advocacy,a policy of advocating war
+80162,warmth warmness,the quality of having a moderate degree of heat; "an agreeable warmth in the house"
+80163,warner,someone who gives a warning to others
+80164,warning,a message informing of danger; "a warning that still more bombs could explode"
+80165,warning,notification of something, usually in advance; "they gave little warning of their arrival"; "she had only had four days' warning before leaving Berlin"
+80166,warning_of_attack,a warning to national policy makers that an enemy intends to launch an attack in the near future
+80167,warning_of_war,a warning to national policy makers that an enemy intends war or is preparing for war and is on a course that increases the risk of war
+80168,warp,yarn arranged lengthways on a loom and crossed by the woof
+80169,warp buckle,a shape distorted by twisting or folding
+80170,warp warping,a moral or mental distortion
+80171,warpath,hostile or belligerent mood; "the chief is on the warpath today"
+80172,warpath,a course leading to warfare or battle
+80173,warplane military_plane,an aircraft designed and used for combat
+80174,warrant,a writ from a court commanding police to perform specified acts
+80175,warrant stock_warrant stock-purchase_warrant,a type of security issued by a corporation (usually together with a bond or preferred stock) that gives the holder the right to purchase a certain amount of common stock at a stated price; "as a sweetener they offered warrants along with the fixed-income securities"
+80176,warrant_officer,holds rank by virtue of a warrant
+80177,warrantee,a recipient of a warrant issued by a court in the United States
+80178,warrantee,a customer to whom a warrant or guarantee is given
+80179,warren,a colony of rabbits
+80180,warren rabbit_warren,a series of connected underground tunnels occupied by rabbits
+80181,warren rabbit_warren,an overcrowded residential area
+80182,warrener,maintains a rabbit warren
+80183,warrigal warragal,Australian wild horse
+80184,warrior,someone engaged in or experienced in warfare
+80185,warship war_vessel combat_ship,a government ship that is available for waging war
+80186,wart,an imperfection in someone or something that is suggestive of a wart (especially in smallness or unattractiveness)
+80187,wart,any small rounded protuberance (as on certain plants or animals)
+80188,wart verruca,(pathology) a firm abnormal elevated blemish on the skin; caused by a virus
+80189,warthog,African wild swine with warty protuberances on the face and large protruding tusks
+80190,wartime,a period of time during which there is armed conflict
+80191,wasabi,a Japanese plant of the family Cruciferae with a thick green root
+80192,wasabi,the thick green root of the wasabi plant that the Japanese use in cooking and that tastes like strong horseradish; in powder or paste form it is often eaten with raw fish
+80193,wash,a thin coat of water-base paint
+80194,wash,any enterprise in which losses and gains cancel out; "at the end of the year the accounting department showed that it was a wash"
+80195,wash dry_wash,the dry bed of an intermittent stream (as at the bottom of a canyon)
+80196,wash wash_drawing,a watercolor made by applying a series of monochrome washes one over the other
+80197,wash washing lavation,the work of cleansing (usually with soap and water)
+80198,wash-and-wear,a fabric treated to be easily washable and to require no ironing
+80199,wash_leather,piece of chamois used for cleaning and polishing
+80200,washbasin basin washbowl washstand lavatory,a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face; "he ran some water in the basin and splashed it on his face"
+80201,washbasin handbasin washbowl lavabo wash-hand_basin,a basin for washing the hands (`wash-hand basin' is a British expression)
+80202,washboard,device consisting of a corrugated surface to scrub clothes on
+80203,washboard splashboard,protective covering consisting of a broad plank along a gunwale to keep water from splashing over the side
+80204,washcloth washrag flannel face_cloth,bath linen consisting of a piece of cloth used to wash the face and body
+80205,washday washing_day,a day set aside for doing household laundry
+80206,washer,someone who washes things for a living
+80207,washer,seal consisting of a flat disk placed to prevent leakage
+80208,washer automatic_washer washing_machine,a home appliance for washing clothes and linens automatically
+80209,washerman laundryman,operates industrial washing machine
+80210,washhouse,a building or outbuilding where laundry is done
+80211,washing-up,the washing of dishes etc after a meal
+80212,washout,the channel or break produced by erosion of relatively soft soil by water; "it was several days after the storm before they could repair the washout and open the road"
+80213,washout wash,the erosive process of washing away soil or gravel by water (as from a roadway); "from the house they watched the washout of their newly seeded lawn by the water"
+80214,washroom,a lavatory (particularly a lavatory in a public place)
+80215,washstand wash-hand_stand,furniture consisting of a table or stand to hold a basin and pitcher of water for washing: `wash-hand stand' is a British term
+80216,washtub,a tub in which clothes or linens can be washed
+80217,washup bathing,the act of washing yourself (or another person)
+80218,washwoman washerwoman laundrywoman laundress,a working woman who takes in washing
+80219,wasp,social or solitary hymenopterans typically having a slender body with the abdomen attached by a narrow stalk and having a formidable sting
+80220,wasp's_nest wasps'_nest hornet's_nest hornets'_nest,habitation for wasps or hornets
+80221,wasp_waist,a very slender waist
+80222,wassail,a punch made of sweetened ale or wine heated with spices and roasted apples; especially at Christmas
+80223,wassailer carouser,someone who enjoys riotous drinking
+80224,wastage,the process of wasting
+80225,wastage,anything lost by wear or waste
+80226,waste permissive_waste,(law) reduction in the value of an estate caused by act or neglect
+80227,waste waste_material waste_matter waste_product,any materials unused and rejected as worthless or unwanted; "they collect the waste once a week"; "much of the waste material is carried off in the sewers"
+80228,waste wastefulness dissipation,useless or profitless activity; using or expending or consuming thoughtlessly or carelessly; "if the effort brings no compensating gain it is a waste"; "mindless dissipation of natural resources"
+80229,waste_of_effort waste_of_energy,a useless effort
+80230,waste_of_material,a useless consumption of material
+80231,waste_of_money,money spent for inadequate return; "the senator said that the project was a waste of money"
+80232,waste_of_time,the devotion of time to a useless activity; "the waste of time could prove fatal"
+80233,waste_paper,paper discarded after use
+80234,wastepaper_basket waste-paper_basket wastebasket waste_basket circular_file,a container with an open top; for discarded paper and other rubbish
+80235,wastrel waster,someone who dissipates resources self-indulgently
+80236,watch,the period during which someone (especially a guard) is on duty
+80237,watch,a period of time (4 or 2 hours) during which some of a ship's crew are on duty
+80238,watch ticker,a small portable timepiece
+80239,watch vigil,a purposeful surveillance to guard or observe
+80240,watch_cap,a knitted dark blue wool cap worn by seamen in cold or stormy weather
+80241,watch_case,the metal case in which the works of a watch are housed
+80242,watch_fire,a fire lighted at night as a signal
+80243,watch_glass,laboratory glassware; a shallow glass dish used as an evaporating surface or to cover a beaker
+80244,watch_key,winder consisting of a key with a square hole; used for winding some watches
+80245,watch_night,a devotional service (especially on New Year's Eve)
+80246,watchband watchstrap wristband watch_bracelet bracelet,a band of cloth or leather or metal links attached to a wristwatch and wrapped around the wrist
+80247,watchdog,a guardian or defender against theft or illegal practices or waste; "she is the global watchdog for human rights abuses"
+80248,watchdog guard_dog,a dog trained to guard property
+80249,watcher,a person who keeps a devotional vigil by a sick bed or by a dead body
+80250,watchfulness vigilance weather_eye,vigilant attentiveness; "he keeps a weather eye open for trouble"
+80251,watchfulness wakefulness vigilance alertness,the process of paying close and continuous attention; "wakefulness, watchfulness, and bellicosity make a good hunter"; "vigilance is especially susceptible to fatigue"
+80252,watchmaker horologist horologer,someone who makes or repairs watches
+80253,watchman watcher security_guard,a guard who keeps watch
+80254,watchtower,an observation tower for a lookout to watch over prisoners or watch for fires or enemies
+80255,water,once thought to be one of four elements composing the universe (Empedocles)
+80256,water,a liquid necessary for the life of most animals and plants; "he asked for a drink of water"
+80257,water H2O,binary compound that occurs at room temperature as a clear colorless odorless tasteless liquid; freezes into ice below 0 degrees centigrade and boils above 100 degrees centigrade; widely used as a solvent
+80258,water-base_paint,paint in which water is used as the vehicle
+80259,water-cooled_reactor,nuclear reactor using water as a coolant
+80260,water-mint water_mint Mentha_aquatica,a European mint that thrives in wet places; has a perfume like that of the bergamot orange; naturalized in eastern North America
+80261,water-rate,rate per quarter for water from a public supply
+80262,water-shield Brasenia_schreberi water-target,aquatic plant with floating oval leaves and purple flowers; in lakes and slow-moving streams; suitable for aquariums
+80263,water-shield fanwort Cabomba_caroliniana,common aquatic plant of eastern North America having floating and submerged leaves and white yellow-spotted flowers
+80264,water-skiing,skiing on water while being towed by a motorboat
+80265,water-soluble_vitamin,any vitamin that is soluble in water
+80266,water_avens Indian_chocolate purple_avens chocolate_root Geum_rivale,erect perennial of north temperate zone having pinnate leaves and a few nodding flowers with a brown-purple calyx and orange and pink petals
+80267,water_back,water heater consisting of a tank or pipes set at the back of a fireplace or in the firebox of a stove
+80268,water_bed,a bed with a mattress made of strong plastic that is filled with water
+80269,water_beetle,any of numerous aquatic beetles usually having a smooth oval body and flattened hind legs for swimming
+80270,water_biscuit,a thin flour-and-water biscuit usually made without shortening; often served with cheese
+80271,water_blister,blister containing a nonpurulent clear watery content
+80272,water_boatman boat_bug,carnivorous aquatic bug having paddle-like hind legs
+80273,water_bottle,a bottle for holding water
+80274,water_boy waterer,an assistant who supplies drinking water
+80275,water_buffalo water_ox Asiatic_buffalo Bubalus_bubalis,an Asian buffalo that is often domesticated for use as a draft animal
+80276,water_bug,a true bug: large aquatic bug adapted to living in or on the surface of water
+80277,water_butt,a butt set on end to contain water especially to store rainwater
+80278,water_caltrop Jesuits'_nut Trapa_natans,a variety of water chestnut
+80279,water_cannon watercannon,a hose (carried on a truck) that fires water under high pressure to disperse crowds (especially crowds of rioters)
+80280,water_carpet water_mat Chrysosplenium_americanum,aquatic herb with yellowish flowers; central and western United States
+80281,water_cart,cart with a tank for water (especially with fresh water for sale)
+80282,water_chestnut,edible bulbous tuber of a Chinese marsh plant
+80283,water_chestnut Chinese_water_chestnut Eleocharis_dulcis,Chinese sedge yielding edible bulb-shaped tubers
+80284,water_chestnut water_chestnut_plant caltrop,a plant of the genus Trapa bearing spiny four-pronged edible nutlike fruits
+80285,water_chevrotain water_deer Hyemoschus_aquaticus,largest chevrotain; of marshy areas of west Africa
+80286,water_chinquapin,edible nutlike seeds of an American lotus having the flavor of a chinquapin
+80287,water_chinquapin American_lotus yanquapin Nelumbo_lutea,water lily of eastern North America having pale yellow blossoms and edible globular nutlike seeds
+80288,water_chute,chute with flowing water down which toboggans and inner tubes and people slide into a pool
+80289,water_clock clepsydra water_glass,clock that measures time by the escape of water
+80290,water_closet closet W.C. loo,a toilet in Britain
+80291,water_clover Marsilea_quadrifolia,water fern of Europe and Asia and the eastern United States distinguished by four leaflets resembling clover leaves
+80292,water_company waterworks,a public utility that provides water
+80293,water_conservation,the conservation of water resources
+80294,water_cooler,a device for cooling and dispensing drinking water
+80295,water_crowfoot water_buttercup Ranunculus_aquatilis,plant of ponds and slow streams having submerged and floating leaves and white flowers; Europe and North America
+80296,water_development water_project water_program,making an area of water more useful
+80297,water_dog,a dog accustomed to water and usually trained to retrieve waterfowl
+80298,water_dog water_rat,a person who enjoys being in or on the water
+80299,water_dropwort hemlock_water_dropwort Oenanthe_crocata,European poisonous herb having tuberous roots, yellow juice that stains the skin, yellow flowers and foliage resembling celery; all parts extremely poisonous
+80300,water_elm Ulmus_laevis,Eurasian elm closely resembling the American elm; thrives in a moist environment
+80301,water_faucet water_tap tap hydrant,a faucet for drawing water from a pipe or cask
+80302,water_fennel Oenanthe_aquatica,European poisonous herb with fibrous roots
+80303,water_filter,a filter to remove impurities from the water supply
+80304,water_gap,a pass in a mountain ridge through which a stream flows
+80305,water_gas,a mixture of hydrogen and carbon monoxide with small amounts of other gases; made by blowing steam over hot coke or coal
+80306,water_gauge water_gage water_glass,gauge for indicating the level of water in e.g. a tank or boiler or reservoir
+80307,water_gillyflower American_featherfoil Hottonia_inflata,a featherfoil of the eastern United States with submerged spongy inflated flower stalks and white flowers
+80308,water_glass,a glass for drinking water
+80309,water_gum Nyssa_aquatica,columnar swamp tree of southeastern to midwestern North America yielding pale soft easily worked wood
+80310,water_hammer,the banging sound of steam in pipes
+80311,water_hazard,hazard provided by ponds of water that the golfer must avoid
+80312,water_heater hot-water_heater hot-water_tank,a heater and storage tank to supply heated water
+80313,water_hemlock Cicuta_verosa,tall erect highly poisonous Eurasiatic perennial herb locally abundant in marshy areas
+80314,water_hickory bitter_pecan water_bitternut Carya_aquatica,hickory of southern United States having many narrow leaflets and rather bitter nuts
+80315,water_hole,a natural hole or hollow containing water
+80316,water_horehound Lycopus_americanus,aromatic perennial herb of United States
+80317,water_hyacinth water_orchid Eichhornia_crassipes Eichhornia_spesiosa,a tropical floating aquatic plant having spikes of large blue flowers; troublesome in clogging waterways especially in southern United States
+80318,water_ice sorbet,an ice containing no milk but having a mushy consistency; usually made from fruit juice
+80319,water_jacket,a container filled with water that surrounds a machine to cool it; especially that surrounding the cylinder block of an engine
+80320,water_jug,a jug that holds water
+80321,water_jump,a pool or stream in a steeplechase or similar contest
+80322,water_level,the level of the surface of a body of water
+80323,water_level,a water gauge that shows the level by showing the surface of the water in a trough or U-shaped tube
+80324,water_lily,an aquatic plant of the family Nymphaeaceae
+80325,water_line watermark,a line marking the level reached by a body of water
+80326,water_lobelia Lobelia_dortmanna,erect perennial aquatic herb of Europe and North America having submerged spongy leaves and pendulous racemes of blue flowers above the water
+80327,water_locust swamp_locust Gleditsia_aquatica,honey locust of swamps and bottomlands of southern United States having short oval pods; yields dark heavy wood
+80328,water_main,main (a pipe or conduit) for conveying water
+80329,water_meter,meter for measuring the quantity of water passing through a particular outlet
+80330,water_milfoil,an aquatic plant of the genus Myriophyllum having feathery underwater leaves and small inconspicuous flowers
+80331,water_mill,a mill powered by a water wheel
+80332,water_moccasin,any of numerous North American water snakes inhabiting fresh waters
+80333,water_moccasin cottonmouth cottonmouth_moccasin Agkistrodon_piscivorus,venomous semiaquatic snake of swamps in southern United States
+80334,water_mold,parasitic or saprobic organisms living chiefly in fresh water or moist soil
+80335,water_nymph,(Greek mythology) any nymph of the water
+80336,water_nymph fragrant_water_lily pond_lily Nymphaea_odorata,a water lily having large leaves and showy fragrant flowers that float on the water; of temperate and tropical regions
+80337,water_oak possum_oak Quercus_nigra,relatively tall deciduous water oak of southeastern United States often cultivated as a shade tree; thrives in wet soil
+80338,water_of_crystallization water_of_crystallisation water_of_hydration,the water present in hydrated compounds
+80339,water_on_the_knee,hydrarthrosis affecting the knee
+80340,water_ouzel dipper,small stocky diving bird without webbed feet; frequents fast-flowing streams and feeds along the bottom
+80341,water_parsnip Sium_suave,stout white-flowered perennial found wild in shallow fresh water; northern United States and Asia
+80342,water_pimpernel,a white-flowered aquatic plant of the genus Samolus
+80343,water_pistol water_gun squirt_gun squirter,plaything consisting of a toy pistol that squirts water
+80344,water_plantain Alisma_plantago-aquatica,marsh plant having clusters of small white or pinkish flowers and broad pointed or rounded leaves
+80345,water_pollution,pollution of the water in rivers and lakes
+80346,water_polo,a game played in a swimming pool by two teams of swimmers who try to throw an inflated ball into the opponents' goal
+80347,water_pump,the pump in the cooling system of an automobile that cause the water to circulate
+80348,water_rat,any of various amphibious rats
+80349,water_right riparian_right,right of access to water
+80350,water_sapphire,a deep blue cordierite often used as a gemstone
+80351,water_scooter sea_scooter scooter,a motorboat resembling a motor scooter
+80352,water_scorpion,long-legged aquatic insect having the front legs fitted for seizing and holding prey and the abdomen extended by a long breathing tube
+80353,water_shamrock buckbean bogbean bog_myrtle marsh_trefoil Menyanthes_trifoliata,perennial plant of Europe and America having racemes of white or purplish flowers and intensely bitter trifoliate leaves; often rooting at water margin and spreading across the surface
+80354,water_shrew,any of several small semiaquatic shrews usually living near swift-flowing streams
+80355,water_ski,broad ski for skimming over water towed by a speedboat
+80356,water_snake,any of various mostly harmless snakes that live in or near water
+80357,water_softener,a substance (such as sodium chloride) that lessens the hardness of water by replacing calcium and magnesium ions with sodium ions and so gives the water more efficient sudsing power
+80358,water_spaniel,any dog of two large curly-coated breeds used for hunting waterfowl
+80359,water_speedwell Veronica_michauxii Veronica_anagallis-aquatica,plant of wet places in Eurasia and America
+80360,water_sport aquatics,sports that involve bodies of water
+80361,water_sprite water_nymph water_spirit,a fairy that inhabits water
+80362,water_star_grass mud_plantain Heteranthera_dubia,grassy-leaved North American aquatic plant with yellow star-shaped blossoms
+80363,water_starwort,any of several aquatic plants having a star-shaped rosette of floating leaves; America, Europe and Asia
+80364,water_strider pond-skater water_skater,long-legged bug that skims about on the surface of water
+80365,water_system,a river and all of its tributaries
+80366,water_system water_supply water,a facility that provides a source of water; "the town debated the purification of the water supply"; "first you have to cut off the water"
+80367,water_table water_level groundwater_level,underground surface below which the ground is wholly saturated with water; "spring rains had raised the water table"
+80368,water_thrush,brownish North American warbler found near streams
+80369,water_tower,a large reservoir for water
+80370,water_travel seafaring,travel by water
+80371,water_turkey Anhinga_anhinga,blackish New World snakebird of swampy regions
+80372,water_vapor water_vapour,water in a vaporous form diffused in the atmosphere but below boiling temperature
+80373,water_vascular_system,system of fluid-filled tubes used by echinoderms in locomotion and feeding and respiration
+80374,water_violet Hottonia_palustris,featherfoil of Europe and western Asia having submerged and floating leaves and violet flowers
+80375,water_vole Richardson_vole Microtus_richardsoni,of western North America
+80376,water_vole water_rat Arvicola_amphibius,common large Eurasian vole
+80377,water_wagon water_waggon,a wagon that carries water (as for troops or work gangs or to sprinkle down dusty dirt roads in the summertime)
+80378,water_wings,a life preserver consisting of a connected pair of inflatable bags that fit under a person's arms and provide buoyancy; used by children learning to swim
+80379,water_witch dowser rhabdomancer,someone who uses a divining rod to find underground water
+80380,waterbuck,any of several large African antelopes of the genus Kobus having curved ridged horns and frequenting e.g. swamps and rivers
+80381,watercolor water-color watercolour water-colour,water-soluble pigment
+80382,watercolor water-color watercolour water-colour,a water-base paint (with water-soluble pigments); used by artists
+80383,watercolor water-color watercolour water-colour,a painting produced with watercolors
+80384,watercolor water-color watercolour water-colour,the art or technique of painting with watercolors
+80385,watercolorist watercolourist,a painter who paints with watercolors
+80386,watercourse,natural or artificial channel through which water flows
+80387,watercourse waterway,a conduit through which water flows
+80388,watercraft,skill in the management of boats
+80389,watercress,any of several water-loving cresses
+80390,watercress,cresses that grow in clear ponds and streams
+80391,waterdog,any of several large aquatic salamanders
+80392,watered_stock,stock representing ownership of overvalued assets; stock of a corporation whose total worth is less than its invested capital
+80393,waterer,someone who waters plants or crops
+80394,waterfall falls,a steep descent of the water of a river
+80395,waterfowl water_bird waterbird,freshwater aquatic bird
+80396,waterfront,the area of a city (such as a harbor or dockyard) alongside a body of water
+80397,wateriness,meagerness or poorness connoted by a superfluity of water (in a literary style as well as in a food); "the haziness and wateriness of his disquisitions"; "the wateriness of his blood"; "no one enjoys the burning of his soup or the wateriness of his potatoes"
+80398,wateriness,the property of resembling the viscosity of water
+80399,wateriness muddiness sloppiness,the wetness of ground that is covered or soaked with water; "the baseball game was canceled because of the wateriness of the outfield"; "the water's muddiness made it undrinkable"; "the sloppiness of a rainy November day"
+80400,watering,wetting with water; "the lawn needs a great deal of watering"
+80401,watering_can watering_pot,a container with a handle and a spout with a perforated nozzle; used to sprinkle water over plants
+80402,watering_cart,water cart with a tank and sprinkler for sprinkling roads
+80403,watering_place watering_hole spa,a health resort near a spring or at the seaside
+80404,waterleaf,any of several plants of the genus Hydrophyllum
+80405,waterline water_line water_level,a line corresponding to the surface of the water when the vessel is afloat on an even keel; often painted on the hull of a ship
+80406,waterloo,a final crushing defeat; "he met his waterloo"
+80407,watermark,a distinguishing mark impressed on paper during manufacture; visible when paper is held up to the light
+80408,watermeal,any of various aquatic plants of the genus Wolffia; throughout warmer regions of the world
+80409,watermelon,large oblong or roundish melon with a hard green rind and sweet watery red or occasionally yellowish pulp
+80410,watermelon watermelon_vine Citrullus_vulgaris,an African melon
+80411,watermelon_begonia Peperomia_argyreia Peperomia_sandersii,grown as a houseplant for its silvery striped fleshy foliage; South America
+80412,waterpower,the power to do work that is latent in a head of water
+80413,waterproof,any fabric impervious to water
+80414,waterproofing,a coating capable of making a surface waterproof
+80415,waterproofing sealing,the act of treating something to make it repel water
+80416,watershed water_parting divide,a ridge of land that separates two adjacent river systems
+80417,waterside,land bordering a body of water
+80418,waterskin water_skin,a container of skin for holding water
+80419,waterspout,a tornado passing over water and picking up a column of water and mist
+80420,waterspout,a channel through which water is discharged (especially one used for drainage from the gutters of a roof)
+80421,waterway,a navigable body of water
+80422,waterweed,a weedy aquatic plant of genus Elodea
+80423,waterwheel water_wheel,a wheel with buckets attached to its rim; raises water from a stream or pond
+80424,waterwheel water_wheel,a wheel that rotates by direct action of water; a simple turbine
+80425,waterwheel_plant Aldrovanda_vesiculosa,floating aquatic carnivorous perennial of central and southern Europe, Africa, Asia, Australia having whorls of 6 to 9 leaves ending in hinged lobes for capturing e.g. water fleas
+80426,waterworks,workplace where water is stored and purified and distributed for a community
+80427,watt W,a unit of power equal to 1 joule per second; the power dissipated by a current of 1 ampere flowing across a resistance of 1 ohm
+80428,watt-hour,a unit of energy equal to the power of one watt operating for one hour
+80429,wattle,any of various Australasian trees yielding slender poles suitable for wattle
+80430,wattle,framework consisting of stakes interwoven with branches to form a fence
+80431,wattle lappet,a fleshy wrinkled and often brightly colored fold of skin hanging from the neck or throat of certain birds (chickens and turkeys) or lizards
+80432,wattle_and_daub,building material consisting of interwoven rods and twigs covered with clay
+80433,wattmeter,an instrument for measuring in watts the flow of power in an electrical circuit
+80434,wave,a persistent and widespread unusual weather condition (especially of unusual temperatures); "a heat wave"
+80435,wave,something that rises rapidly; "a wave of emotion swept over him"; "there was a sudden wave of buying before the market closed"; "a wave of conservatism in the country led by the hard right"
+80436,wave,a hairdo that creates undulations in the hair
+80437,wave,a movement like that of a sudden occurrence or increase in a specified phenomenon; "a wave of settlers"; "troops advancing in waves"
+80438,wave moving_ridge,one of a series of ridges that moves across the surface of a liquid (especially across a large body of water)
+80439,wave undulation,an undulating curve
+80440,wave undulation,(physics) a movement up and down or back and forth
+80441,wave waving wafture,the act of signaling by a movement of the hand
+80442,wave_angle,the angle of arrival (or departure) of a radio wave with respect to the axis of an antenna array
+80443,wave_equation,a differential equation that describes the passage of harmonic waves through a medium
+80444,wave_form waveform wave_shape,the shape of a wave illustrated graphically by plotting the values of the period quantity against time
+80445,wave_front,all the points just reached by a wave as it propagates
+80446,wave_front wavefront,(physics) an imaginary surface joining all points in space that are reached at the same instant by a wave propagating through a medium
+80447,wave_mechanics,the modern form of quantum theory; an extension of quantum mechanics based on Schrodinger's equation; atomic events are explained as interactions between particle waves
+80448,wave_number,the reciprocal of the wavelength of a wave
+80449,wave_theory undulatory_theory wave_theory_of_light,(physics) the theory that light is transmitted as waves
+80450,wave_train,a succession of waves spaced at regular intervals
+80451,waveguide wave_guide,a hollow metal conductor that provides a path to guide microwaves; used in radar
+80452,wavelength,a shared orientation leading to mutual understanding; "they are on the same wavelength"
+80453,wavelength,the distance (measured in the direction of propagation) between two points in the same phase in consecutive cycles of a wave
+80454,waver,someone who communicates by waving
+80455,waver flutter flicker,the act of moving back and forth
+80456,waverer vacillator hesitator hesitater,one who hesitates (usually out of fear)
+80457,waviness,unevenness produced by waves or wrinkles
+80458,wavy-leaved_aster,a variety of aster
+80459,waw,the 6th letter of the Hebrew alphabet
+80460,wax,any of various substances of either mineral origin or plant or animal origin; they are solid at normal temperatures and insoluble in water
+80461,wax-chandler,one who deals in wax candles
+80462,wax_bean,a common bean plant grown for its edible golden pod
+80463,wax_bean yellow_bean,snap beans with yellow pods
+80464,wax_begonia Begonia_semperflorens,hybrid fibrous-rooted begonia having broad-ovate green to bronze-red leaves and small clusters of white or pink or red flowers; widely used as a bedding plant
+80465,wax_insect,any of various insects that secrete a waxy substance
+80466,wax_myrtle,any shrub or small tree of the genus Myrica with aromatic foliage and small wax-coated berries
+80467,wax_palm Ceroxylon_andicola Ceroxylon_alpinum,palm of the Andes yielding a resinous wax which is mixed with tallow to make candles
+80468,wax_paper,paper that has been waterproofed by treatment with wax or paraffin
+80469,wax_plant Hoya_carnosa,succulent climber of southern Asia with umbels of pink and white star-shaped flowers
+80470,waxflower Clusia_insignis,epiphytic clusia of British Guiana
+80471,waxiness,the quality of being made of wax or covered with wax
+80472,waxing,a gradual increase in magnitude or extent; "the waxing of the moon"
+80473,waxing,the application of wax to a surface
+80474,waxmallow wax_mallow sleeping_hibiscus,any of various plants of the genus Malvaviscus having brilliant bell-shaped drooping flowers like incompletely opened hibiscus flowers
+80475,waxwing,brown velvety-plumaged songbirds of the northern hemisphere having crested heads and red waxy wing tips
+80476,waxwork wax_figure,an effigy (usually of a famous person) made of wax
+80477,waxycap,any fungus of the family Hygrophoraceae having gills that are more or less waxy in appearance
+80478,way,the condition of things generally; "that's the way it is"; "I felt the same way"
+80479,way,a portion of something divided into shares; "they split the loot three ways"
+80480,way,a general category of things; used in the expression `in the way of'; "they didn't have much in the way of clothing"
+80481,way,doing as one pleases or chooses; "if I had my way"
+80482,way,the property of distance in general; "it's a long way to Moscow"; "he went a long ways"
+80483,way,any artifact consisting of a road or path affording passage from one place to another; "he said he was looking for the way out"
+80484,way,a journey or passage; "they are on the way"
+80485,way path way_of_life,a course of conduct; "the path of virtue"; "we went our separate ways"; "our paths in life led us apart"; "genius usually follows a revolutionary path"
+80486,wayfarer,a pedestrian who walks from place to place
+80487,wayfarer journeyer,a traveler going on a trip
+80488,wayfaring,traveling (especially on foot)
+80489,wayfaring_tree twist_wood twistwood Viburnum_lantana,vigorous deciduous European treelike shrub common along waysides; red berries turn black
+80490,ways shipway slipway,structure consisting of a sloping way down to the water from the place where ships are built or repaired
+80491,ways_and_means,resources available to meet expenses (especially legislation for raising revenue for a government)
+80492,wayside roadside,edge of a way or road or path; "flowers along the wayside"
+80493,weak_interaction weak_force,(physics) an interaction between elementary particles involving neutrinos or antineutrinos that is responsible for certain kinds of radioactive decay; mediated by intermediate vector bosons
+80494,weak_part weak_spot soft_spot,a place of especial vulnerability
+80495,weak_point,an attribute that is inadequate or deficient
+80496,weakener,that which weakens or causes a loss of strength; "doubt is a great weakener of resolve"
+80497,weakening,becoming weaker
+80498,weakening,the act of reducing the strength of something
+80499,weakfish,lean flesh of food and game fishes of the Atlantic coast of the United States
+80500,weakfish Cynoscion_regalis,food and game fish of North American coastal waters with a mouth from which hooks easily tear out
+80501,weakling doormat wuss,a person who is physically weak and ineffectual
+80502,weakly_interacting_massive_particle WIMP,a hypothetical subatomic particle of large mass that interacts weakly with ordinary matter through gravitation; postulated as a constituent of the dark matter of the universe
+80503,weakness,the condition of being financially weak; "the weakness of the dollar against the yen"
+80504,weakness,a penchant for something even though it might not be good for you; "he has a weakness for chocolate"
+80505,weakness,the property of lacking physical or mental strength; liability to failure under pressure or stress or strain; "his weakness increased as he became older"; "the weakness of the span was overlooked until it collapsed"
+80506,weald,an area of open or forested country
+80507,wealth,property that has economic utility: a monetary value or an exchange value
+80508,wealth,the quality of profuse abundance; "she has a wealth of talent"
+80509,wealth riches,an abundance of material possessions and resources
+80510,wealth wealthiness,the state of being rich and affluent; having a plentiful supply of material goods and money; "great wealth is not a sign of great intelligence"
+80511,weaning ablactation,the act of substituting other food for the mother's milk in the diet of a child or young mammal
+80512,weapon arm weapon_system,any instrument or instrumentality used in fighting or hunting; "he was licensed to carry a weapon"
+80513,weapon artillery,a means of persuading or arguing; "he used all his conversational weapons"
+80514,weapon_of_mass_destruction WMD W.M.D.,a weapon that kills or injures civilian as well as military personnel (nuclear and chemical and biological weapons)
+80515,weaponry arms implements_of_war weapons_system munition,weapons considered collectively
+80516,weapons_carrier,military vehicle that is a light truck designed to carry mortars or machine guns and their crews
+80517,weapons_plutonium weapons-grade_plutonium,plutonium 239 that is recovered when nuclear weapons are disassembled; it is stored in plutonium pits
+80518,wear,impairment resulting from long use; "the tires showed uneven wear"
+80519,wear wearing,the act of having on your person as a covering or adornment; "she bought it for everyday wear"
+80520,wearer,a person who wears or carries or displays something as a body covering or accessory; "the wearer of the crown"
+80521,weasel,a person who is regarded as treacherous or sneaky
+80522,weasel,small carnivorous mammal with short legs and elongated body and neck
+80523,weasel_word,an equivocal qualification; a word used to avoid making an outright assertion
+80524,weather weather_condition conditions atmospheric_condition,the atmospheric conditions that comprise the state of the atmosphere in terms of temperature and wind and clouds and precipitation; "they were hoping for good weather"; "every day we have weather conditions and yesterday was no exception"; "the conditions were too rainy for playing in the snow"
+80525,weather_bureau,an administrative unit responsible for gathering and interpreting meteorological data for weather study and forecasts
+80526,weather_deck shelter_deck,upper deck having no overhead protection from the weather, but sheltering the deck below
+80527,weather_forecast weather_outlook,a forecast of the weather
+80528,weather_map weather_chart,(meteorology) a map showing the principal meteorological elements at a given time and over an extended region
+80529,weather_radar,radar that is able to detect clouds and precipitation
+80530,weather_satellite meteorological_satellite,a satellite that transmits frequent picture of the earth below
+80531,weather_ship,an oceangoing vessel equipped to make meteorological observations
+80532,weather_strip weatherstrip weather_stripping weatherstripping,a narrow strip of material to cover the joint of a door or window to exclude the cold
+80533,weathercock,weathervane with a vane in the form of a rooster
+80534,weatherglass,a simple barometer for indicating changes in atmospheric pressure
+80535,weatherliness,(of a sailing vessel) the quality of being able to sail close to the wind with little drift to the leeward (even in a stiff wind); "the Spanish ships had superior speed and weatherliness"
+80536,weatherman weather_forecaster,predicts the weather
+80537,weathervane weather_vane vane wind_vane,mechanical device attached to an elevated structure; rotates freely to show the direction of the wind
+80538,weave,pattern of weaving or structure of a fabric
+80539,weaver,a craftsman who weaves cloth
+80540,weaver weaverbird weaver_finch,finch-like African and Asian colonial birds noted for their elaborately woven nests
+80541,weaving,creating fabric
+80542,web,an intricate network suggesting something that was formed by weaving or interweaving; "the trees cast a delicate web of shadows over the lawn"
+80543,web,a fabric (especially a fabric in the process of being woven)
+80544,web,membrane connecting the toes of some aquatic birds and mammals
+80545,web entanglement,an intricate trap that entangles or ensnares its victim
+80546,web-spinning_mite,a mite that spins a web
+80547,web-toed_salamander,any of several salamanders with webbed toes and very long extensile tongues; excellent climbers that move with ease over smooth rock surfaces
+80548,web_log blog,a shared on-line journal where people can post diary entries about their personal experiences and hobbies; "postings on a blog are usually in chronological order"
+80549,web_page webpage,a document connected to the World Wide Web and viewable by anyone connected to the internet who has a web browser
+80550,web_site website internet_site site,a computer connected to the internet that maintains a series of web pages on the World Wide Web; "the Israeli web site was damaged by hostile hackers"
+80551,web_spinner,any of a small order of slender typically tropical insects that nest in colonies in silken tunnels that they spin
+80552,webbed_foot,a bird's foot with folds of skin between the toes
+80553,webbing,something forming a web (as between the toes of birds)
+80554,webbing,a narrow closely woven tape; used in upholstery or for seat belts
+80555,webbing,a strong fabric woven in strips
+80556,webbing_clothes_moth webbing_moth Tineola_bisselliella,moth that forms a web in which it lives
+80557,webcam,a digital camera designed to take digital photographs and transmit them over the internet
+80558,weber Wb,a unit of magnetic flux equal to 100,000,000 maxwells
+80559,webfoot,a foot having the toes connected by folds of skin
+80560,webmaster,a technician who designs or maintains a website
+80561,webworm,several gregarious moth larvae that spin webs over foliage on which they feed
+80562,webworm_moth,a variety of moth that spins a web in which it lives
+80563,wedding wedding_ceremony nuptials hymeneals,the social event at which the ceremony of marriage is performed
+80564,wedding wedding_party,a party of people at a wedding
+80565,wedding_anniversary,the anniversary of the day on which you were married (or the celebration of it)
+80566,wedding_cake bridecake,a rich cake with two or more tiers and covered with frosting and decorations; served at a wedding reception
+80567,wedding_day,the day of a wedding
+80568,wedding_guest,a guest at a wedding
+80569,wedding_march,a march to be played for a wedding procession
+80570,wedding_night,the night after the wedding when bride and groom sleep together
+80571,wedding_picture,photographs of bride and groom and their friends taken at their wedding
+80572,wedding_present wedding_gift,a present given to someone getting married
+80573,wedding_reception,a reception for wedding guests held after the wedding
+80574,wedding_ring wedding_band,a ring (usually plain gold) given to the bride (and sometimes one is also given to the groom) at the wedding
+80575,wedge,(golf) an iron with considerable loft and a broad sole
+80576,wedge,something solid that is usable as an inclined plane (shaped like a V) that can be pushed between two things to separate them
+80577,wedge wedge_shape cuneus,any shape that is triangular in cross section
+80578,wedge_bone,part of the sirloin nearest the rump
+80579,wedge_heel wedge,a heel that is an extension of the sole of the shoe
+80580,wedgie,a shoe with a wedge heel
+80581,wee,a short time; "bide a wee"
+80582,wee_small_voice small_voice voice_of_conscience,an inner voice that judges your behavior
+80583,weed,any plant that crowds out cultivated plants
+80584,weed mourning_band,a black band worn by a man (on the arm or hat) as a sign of mourning
+80585,weeder,a farmhand hired to remove weeds
+80586,weeder weed-whacker,a hand tool for removing weeds
+80587,weeds widow's_weeds,a black garment (dress) worn by a widow as a sign of mourning
+80588,week calendar_week,a period of seven consecutive days starting on Sunday
+80589,week hebdomad,any period of seven consecutive days; "it rained for a week"
+80590,week_from_Monday,a time period of a week or more; "a week from Monday will be too soon!"
+80591,weekday,any day except Sunday (and sometimes except Saturday)
+80592,weekend,a time period usually extending from Friday night through Sunday; more loosely defined as any period of successive days including one and only one Sunday
+80593,weekend_warrior,a homeowner who acts as a contractor and tries to do major improvement projects on weekends (often without understanding the scope of the work to be done)
+80594,weekend_warrior,a reservist who fulfills the military obligation on weekends
+80595,weekender,someone who vacations on a weekend
+80596,weekender,a small suitcase to carry clothing and accessories for a weekend trip
+80597,weekly,a periodical that is published every week (or 52 issues per year)
+80598,weeknight,any night of the week except Saturday or Sunday
+80599,weeper,a hired mourner
+80600,weeper crier,a person who weeps
+80601,weepiness tearfulness,sadness expressed by weeping
+80602,weeping_beech Fagus_pendula Fagus_sylvatica_pendula,variety of European beech with pendulous limbs
+80603,weeping_love_grass African_love_grass Eragrostis_curvula,perennial South African grass having densely clumped flimsy stems; introduced into United States especially for erosion control
+80604,weeping_spruce Brewer's_spruce Picea_breweriana,medium-sized spruce of California and Oregon having pendulous branches
+80605,weeping_tree_broom,small shrubby tree of New Zealand having weeping branches and racemes of white to violet flowers followed by woolly indehiscent two-seeded pods
+80606,weeping_willow Babylonian_weeping_willow Salix_babylonica,willow with long drooping branches and slender leaves native to China; widely cultivated as an ornamental
+80607,weevil,any of several families of mostly small beetles that feed on plants and plant products; especially snout beetles and seed beetles
+80608,weigela Weigela_florida,deciduous shrub widely cultivated for its white or pink or red flowers
+80609,weighbridge,platform scale flush with a roadway for weighing vehicles and cattle etc
+80610,weigher,an official who weighs and records the weight
+80611,weight,an oppressive feeling of heavy force; "bowed down by the weight of responsibility"
+80612,weight,the vertical force exerted by a mass as a result of gravity
+80613,weight,an artifact that is heavy
+80614,weight free_weight exercising_weight,sports equipment used in calisthenic exercises and weightlifting; it is not attached to anything and is raised and lowered by use of the hands and arms
+80615,weight weightiness,the relative importance granted to something; "his opinion carries great weight"; "the progression implied an increasing weightiness of the items listed"
+80616,weight weighting,(statistics) a coefficient assigned to elements of a frequency distribution in order to represent their relative importance
+80617,weight_gaining,bodybuilding that increases muscle mass and body weight
+80618,weight_unit weight,a unit used to measure weight; "he placed two weights in the scale pan"
+80619,weightlift weightlifting,bodybuilding by exercise that involves lifting weights
+80620,weightlifter lifter,an athlete who lifts barbells
+80621,weir,a fence or wattle built across a stream to catch or retain fish
+80622,weir,a low dam built across a stream to raise its level or divert its flow
+80623,weka maori_hen wood_hen,flightless New Zealand rail of thievish disposition having short wings each with a spur used in fighting
+80624,welcher welsher,someone who swindles you by not repaying a debt or wager
+80625,welcome,the state of being welcome; "don't outstay your welcome"
+80626,welcome,a greeting or reception; "the proposal got a warm welcome"
+80627,welcome_wagon,a wheeled vehicle carrying information and gifts from local merchants for new residents in an area
+80628,welcoming_committee,a committee to welcome new residents to a community
+80629,weld,a metal joint formed by softening with heat and fusing or hammering together
+80630,welder,joins pieces of metal by welding them together
+80631,welder's_mask,a mask that you wear for protection when doing welding
+80632,welding,fastening two pieces of metal together by softening with heat and applying pressure
+80633,weldment,an assembly of parts welded together
+80634,welfare_case charity_case,a case for a welfare worker
+80635,welfare_state,a government that undertakes responsibility for the welfare of its citizens through programs in public health and public housing and pensions and unemployment compensation etc.
+80636,welfare_work social_service,an organized activity to improve the condition of disadvantaged people in society
+80637,well,a cavity or vessel used to contain liquid
+80638,well,an open shaft through the floors of a building (as for a stairway)
+80639,well,an enclosed compartment in a ship or plane for holding something as e.g. fish or a plane's landing gear or for protecting something as e.g. a ship's pumps
+80640,well,a deep hole or shaft dug or drilled to obtain water or oil or gas or brine
+80641,well wellspring fountainhead,an abundant source; "she was a well of information"
+80642,well-wishing,an expression of good will from one person to another; "much hand-shaking and well-wishing"
+80643,well_point wellpoint,a perforated tube driven into the ground to collect water from the surrounding area
+80644,wellbeing well-being welfare upbeat eudaemonia eudaimonia,a contented state of being happy and healthy and prosperous; "the town was finally on the upbeat after our recent troubles"
+80645,wellerism,a comparison comprising a well-known quotation followed by a facetious sequel
+80646,wellhead,a structure built over a well
+80647,wellhead wellspring,the source of water for a well
+80648,welt,a raised or strengthened seam
+80649,welted_thistle Carduus_crispus,European biennial introduced in North America having flower heads in crowded clusters at ends of branches
+80650,welterweight,a weight of 28 pounds; sometimes imposed as a handicap in a horse race (such as a steeplechase)
+80651,welterweight,an amateur boxer who weighs no more than 148 pounds
+80652,welterweight,a wrestler who weighs 154-172 pounds
+80653,welterweight,a professional boxer who weighs between 141 and 147 pounds
+80654,welwitschia Welwitschia_mirabilis,curious plant of arid regions of southwestern Africa having a yard-high and yard-wide trunk like a turnip with a deep taproot and two large persistent woody straplike leaves growing from the base; living relic of a flora long disappeared; some may be 700-5000 years old
+80655,wencher,someone who patronizes prostitutes
+80656,werewolf wolfman lycanthrope loup-garou,a monster able to change appearance from human to wolf and back again
+80657,west,the direction corresponding to the westward cardinal compass point
+80658,west,a location in the western part of a country, region, or city
+80659,west due_west westward W,the cardinal compass point that is a 270 degrees
+80660,west_by_north WbN,the compass point that is one point north of due west
+80661,west_by_south WbS,the compass point that is one point south of due west
+80662,west_northwest WNW,the compass point midway between west and northwest
+80663,west_side,the side that is on the west
+80664,west_southwest WSW,the compass point midway between west and southwest
+80665,west_wind wester,wind that blows from west to east
+80666,western western_sandwich,a sandwich made from a western omelet
+80667,western_big-eared_bat Plecotus_townsendi,bat of western North America having extremely large ears
+80668,western_blackberry western_dewberry Rubus_ursinus,American blackberry with oblong black fruit
+80669,western_blind_snake Leptotyphlops_humilis,burrows among roots of shrubs and beneath rocks in desert and rocky hillside areas and beach sand of western United States
+80670,western_buttercup Ranunculus_occidentalis,perennial of western North America
+80671,western_chimpanzee Pan_troglodytes_verus,masked or pale-faced chimpanzees of western Africa; distantly related to the eastern and central chimpanzees; possibly a distinct species
+80672,western_chokecherry Prunus_virginiana_demissa Prunus_demissa,chokecherry of western United States
+80673,western_coral_snake Micruroides_euryxanthus,ranges from Central America to southwestern United States
+80674,western_fence_lizard swift blue-belly Sceloporus_occidentalis,common western lizard; seen on logs or rocks
+80675,western_grey_squirrel western_gray_squirrel Sciurus_griseus,large grey squirrel of far western areas of United States
+80676,western_hemisphere occident New_World,the hemisphere that includes North America and South America
+80677,western_hemlock Pacific_hemlock west_coast_hemlock Tsuga_heterophylla,tall evergreen of western North America; commercially important timber tree
+80678,western_holly_fern Polystichum_scopulinum,North American fern
+80679,western_ladies'_tresses Spiranthes_porrifolia,similar to Spiranthes romanzoffiana; western United States
+80680,western_larch western_tamarack Oregon_larch Larix_occidentalis,tall larch of western North America have pale green sharply pointed leaves and oblong cones; an important timber tree
+80681,western_lowland_gorilla Gorilla_gorilla_gorilla,a kind of gorilla
+80682,western_meadowlark Sturnella_neglecta,a meadowlark of western North America
+80683,western_mugwort white_sage cudweed prairie_sage Artemisia_ludoviciana Artemisia_gnaphalodes,perennial cottony-white herb of southwestern United States
+80684,western_narrow-mouthed_toad Gastrophryne_olivacea,small secretive toad with smooth tough skin of central and western North America
+80685,western_omelet,a firm omelet that has diced ham and peppers and onions
+80686,western_pipistrel SPipistrellus_hesperus,of western North America
+80687,western_poison_oak Toxicodendron_diversilobum Rhus_diversiloba,poisonous shrub of the Pacific coast of North America that causes a rash on contact
+80688,western_poppy Papaver_californicum,showy annual of California with red flowers
+80689,western_ragweed perennial_ragweed Ambrosia_psilostachya,coarse perennial ragweed with creeping roots of dry barren lands of southwestern United States and Mexico
+80690,western_red-backed_salamander Plethodon_vehiculum,salamander of the Pacific coast of North America
+80691,western_red_cedar red_cedar canoe_cedar Thuja_plicata,large valuable arborvitae of northwestern United States
+80692,western_redbud California_redbud Cercis_occidentalis,shrub of western United States having pink or crimson flowers; often forms thickets
+80693,western_saxifrage Saxifraga_occidentalis,saxifrage having loose clusters of white flowers on hairy stems growing from a cluster of basal leaves; moist slopes of western North America
+80694,western_skink Eumeces_skiltonianus,found in western North American grasslands and open woodlands
+80695,western_spadefoot Scaphiopus_hammondii,this spadefoot toad live in California
+80696,western_tanager Piranga_ludoviciana,of western North America; male is black and yellow and orange-red
+80697,western_toad Bufo_boreas,of a great variety of habitats from southern Alaska to Baja California west of the Rockies
+80698,western_wall_flower Erysimum_asperum Cheiranthus_asperus Erysimum_arkansanum,biennial or short-lived perennial prairie rocket having orange-yellow flowers; western North America to Minnesota and Kansas; sometimes placed in genus Cheiranthus
+80699,western_wheatgrass bluestem_wheatgrass Agropyron_smithii,valuable forage grass of western United States
+80700,western_whiptail Cnemidophorus_tigris,active lizard having a network of dusky dark markings; of semiarid areas from Oregon and Idaho to Baja California
+80701,western_white_pine silver_pine mountain_pine Pinus_monticola,tall pine of western North America with stout blue-green needles; bark is grey-brown with rectangular plates when mature
+80702,western_wood_pewee Contopus_sordidulus,small flycatcher of western North America
+80703,westerner,an inhabitant of a western area; especially of the U.S.
+80704,westland_pine silver_pine Lagarostrobus_colensoi,timber tree of New Zealand having shiny white wood
+80705,wet-bulb_thermometer,a thermometer with a bulb that is covered with moist muslin; used in a psychrometer to measure humidity
+80706,wet_bar,a bar for mixing drinks that has a sink with running water
+80707,wet_cell,a primary voltaic cell having a liquid electrolyte
+80708,wet_dream,an erotic dream (usually at night) accompanied by the (nocturnal) emission of semen
+80709,wet_fly,fisherman's fly that floats under the surface of the water
+80710,wet_nurse wet-nurse wetnurse amah,a woman hired to suckle a child of someone else
+80711,wet_suit,a close-fitting garment made of a permeable material; worn in cold water (as by skin divers) to retain body heat
+80712,wether,male sheep especially a castrated one
+80713,wetland,a low area where the land is saturated with water
+80714,wetness,the condition of containing or being covered by a liquid (especially water); "he confirmed the wetness of the swimming trunks"
+80715,wetter,a workman who wets the work in a manufacturing process
+80716,wetting,the act of making something wet
+80717,wetting_agent wetter surfactant surface-active_agent,a chemical agent capable of reducing the surface tension of a liquid in which it is dissolved
+80718,whack,the sound made by a sharp swift blow
+80719,whacker whopper,something especially big or impressive of its kind
+80720,whale,any of the larger cetacean mammals having a streamlined body and breathing through a blowhole on the head
+80721,whale_louse,amphipod crustacean parasitic on cetaceans
+80722,whale_oil train_oil,a white to brown oil obtained from whale blubber; formerly used as an illuminant
+80723,whale_shark Rhincodon_typus,large spotted shark of warm surface waters worldwide; resembles a whale and feeds chiefly on plankton
+80724,whale_sucker whalesucker Remilegia_australis,large blue Pacific remora that attaches to whales and dolphins
+80725,whaleboat,a long narrow boat designed for quick turning and use in rough seas
+80726,whalebone baleen,a horny material from the upper jaws of certain whales; used as the ribs of fans or as stays in corsets
+80727,whaler,a seaman who works on a ship that hunts whales
+80728,whaler whaling_ship,a ship engaged in whale fishing
+80729,whaling_gun,a gun (or device resembling a gun) for discharging a projectile (especially a harpoon) at a whale
+80730,whammy,a serious or devastating setback
+80731,wharf_rat,someone who lives near wharves and lives by pilfering from ships or warehouses
+80732,wharf_rat,brown rat that infests wharves
+80733,wharfage quayage,a fee charged for the use of a wharf or quay
+80734,what_for,a strong reprimand
+80735,wheat,annual or biennial grass having erect flower spikes and light brown grains
+80736,wheat wheat_berry,grains of common wheat; sometimes cooked whole or cracked as cereal; usually ground into flour
+80737,wheat_berry,a grain of wheat
+80738,wheat_flag_smut Urocystis_tritici,fungus affecting leaves and stems of wheat
+80739,wheat_flour,flour prepared from wheat
+80740,wheat_future,wheat bought or sold at an agreed price for delivery at a specified future date
+80741,wheat_germ,embryo of the wheat kernel; removed before milling and eaten as a source of vitamins
+80742,wheat_gluten,gluten prepared from wheat
+80743,wheat_rust Puccinia_graminis,rust fungus that attacks wheat
+80744,wheat_scab,a disease of the heads of wheat plants
+80745,wheatear,small songbird of northern America and Eurasia having a distinctive white rump
+80746,wheatfield wheat_field,a field planted with wheat
+80747,wheatflake,crisp flake made from wheat
+80748,wheatgrass wheat-grass,a grass of the genus Agropyron
+80749,wheatworm wheat_eel wheat_eelworm Tylenchus_tritici,small roundworm parasitic on wheat
+80750,wheedler coaxer,someone who tries to persuade by blandishment and coaxing
+80751,wheel,forces that provide energy and direction; "the wheels of government began to turn"
+80752,wheel,a circular helm to control the rudder of a vessel
+80753,wheel,a simple machine consisting of a circular frame with spokes (or a solid disc) that can rotate on a shaft or axle (as in vehicles or other machines)
+80754,wheel_and_axle,hoist so arranged that a rope unwinding from a wheel is wound onto a cylindrical drum or shaft coaxial with the wheel
+80755,wheel_bug Arilus_cristatus,large predatory North American bug that sucks the blood of other insects
+80756,wheel_horse wheeler,a draft horse harnessed behind others and nearest the wheels of a vehicle
+80757,wheel_lock,an obsolete gunlock using flint and a revolving wheel
+80758,wheel_tree firewheel_tree Stenocarpus_sinuatus,eastern Australian tree widely cultivated as a shade tree and for its glossy leaves and circular clusters of showy red to orange-scarlet flowers
+80759,wheelbase,the distance from the center of a car's front wheel to the rear axle
+80760,wheelchair,a movable chair mounted on large wheels; for invalids or those who cannot walk; frequently propelled by the occupant
+80761,wheeled_vehicle,a vehicle that moves on wheels and usually has a container for transporting things or people; "the oldest known wheeled vehicles were found in Sumer and Syria and date from around 3500 BC"
+80762,wheeler,the man at the outermost end of the rank in wheeling
+80763,wheeling rolling,propelling something on wheels
+80764,wheelwork,mechanical device including an arrangement of wheel in a machine (especially a train of gears)
+80765,wheelwright wheeler,someone who makes and repairs wooden wheels
+80766,wheeze,(Briticism) a clever or amusing scheme or trick; "a clever wheeze probably succeeded in neutralizing the German espionage threat"
+80767,wheeze,breathing with a husky or whistling sound
+80768,wheeziness,presence of abnormal high-pitched sound heard with a stethoscope when an airway is blocked (as in asthma or chronic bronchitis)
+80769,whelk,large marine snail much used as food in Europe
+80770,whelk,large carnivorous marine gastropods of coastal waters and intertidal regions having a strong snail-like shell
+80771,whereabouts,the general location where something is; "I questioned him about his whereabouts on the night of the crime"
+80772,wherewithal,the necessary means (especially financial means)
+80773,wherry,light rowboat for use in racing or for transporting goods and passengers in inland waters and harbors
+80774,wherry Norfolk_wherry,sailing barge used especially in East Anglia
+80775,whetstone,a flat stone for sharpening edged tools or knives
+80776,whey,watery part of milk produced when raw milk sours and coagulates; "Little Miss Muffet sat on a tuffet eating some curds and whey"
+80777,whey milk_whey,the serum or watery part of milk that is separated from the curd in making cheese
+80778,whiff,a lefteye flounder found in coastal waters from New England to Brazil
+80779,whiff,a strikeout resulting from the batter swinging at and missing the ball for the third strike
+80780,whiffer,a batter who strikes out by swinging at and missing the third strike
+80781,whiffletree whippletree swingletree,a crossbar that is attached to the traces of a draft horse and to the vehicle or implement that the horse is pulling
+80782,while piece spell patch,a period of indeterminate length (usually short) marked by some action or condition; "he was here for a little while"; "I need to rest for a piece"; "a spell of good weather"; "a patch of bad weather"
+80783,whimper whine,a complaint uttered in a plaintive whining way
+80784,whinchat Saxicola_rubetra,brown-and-buff European songbird of grassy meadows
+80785,whiner complainer moaner sniveller crybaby bellyacher grumbler squawker,a person given to excessive complaints and crying and whining
+80786,whinstone whin,any of various hard colored rocks (especially rocks consisting of chert or basalt)
+80787,whip,a dessert made of sugar and stiffly beaten egg whites or cream and usually flavored with fruit
+80788,whip,(golf) the flexibility of the shaft of a golf club
+80789,whip,an instrument with a handle and a flexible lash that is used for whipping
+80790,whip lash whiplash,a quick blow delivered with a whip or whiplike object; "the whip raised a red welt"
+80791,whip party_whip,a legislator appointed by the party to enforce discipline
+80792,whip-round,(British) solicitation of money usually for a benevolent purpose
+80793,whip-scorpion whip_scorpion,nonvenomous arachnid that resembles a scorpion and that has a long thin tail without a stinger
+80794,whip-snake whip_snake whipsnake,any of several small fast-moving snakes with long whiplike tails
+80795,whipcord,closely twisted hard cord used for the lashes of whips
+80796,whipcord,a strong worsted or cotton fabric with a diagonal rib
+80797,whiplash whiplash_injury,an injury to the neck (the cervical vertebrae) resulting from rapid acceleration or deceleration (as in an automobile accident)
+80798,whipped_cream,cream that has been beaten until light and fluffy
+80799,whipper-in,huntsman's assistant in managing the hounds
+80800,whippersnapper jackanapes lightweight,someone who is unimportant but cheeky and presumptuous
+80801,whippet,small slender dog of greyhound type developed in England
+80802,whipping tanning flogging lashing flagellation,beating with a whip or strap or rope as a form of punishment
+80803,whipping_cream light_whipping_cream,cream that has enough butterfat (30% to 36%) to be whipped
+80804,whipping_post,post formerly used in public to which offenders are tied to be whipped
+80805,whipping_top whip_top,a top that is spun by whipping
+80806,whippoorwill Caprimulgus_vociferus,American nocturnal goatsucker with grey-and-white plumage
+80807,whipstitch whipping whipstitching,a sewing stitch passing over an edge diagonally
+80808,whiptail whiptail_lizard,any of numerous very agile and alert New World lizards
+80809,whir whirr whirring birr,sound of something in rapid motion; "whir of a bird's wings"; "the whir of the propellers"
+80810,whirl commotion,confused movement; "he was caught up in a whirl of work"; "a commotion of people fought for the exits"
+80811,whirl swirl vortex convolution,the shape of something rotating rapidly
+80812,whirler,a revolving mechanism
+80813,whirligig_beetle,aquatic beetle that circles rapidly on the water surface
+80814,whirling_dervish whirler,a dervish whose actions include ecstatic dancing and whirling
+80815,whirlpool vortex maelstrom,a powerful circular current of water (usually the result of conflicting tides)
+80816,whirlwind,a more or less vertical column of air whirling around itself as it moves over the surface of the Earth
+80817,whisk,a mixer incorporating a coil of wires; used for whipping eggs or cream
+80818,whisk whisk_broom,a small short-handled broom used to brush clothes
+80819,whisk_fern,chiefly tropical clump-forming plants of skeletal appearance resembling whisk brooms; lacking roots
+80820,whisker vibrissa sensory_hair,a long stiff hair growing from the snout or brow of most mammals as e.g. a cat
+80821,whiskey whisky,a liquor made from fermented mash of grain
+80822,whiskey_bottle,a bottle for holding whiskey
+80823,whiskey_jug,a jug that contains whiskey
+80824,whiskey_neat whisky_neat,a drink consisting of whiskey without a mixer; "he ordered a whiskey neat"
+80825,whiskey_on_the_rocks whisky_on_the_rocks,whiskey with ice
+80826,whiskey_sour whisky_sour,a sour made with whiskey
+80827,whisper whispering susurration voicelessness,speaking softly without vibration of the vocal cords
+80828,whisperer,one who speaks in a whisper
+80829,whispering_campaign,the organized dissemination of derogatory rumors designed to discredit a candidate
+80830,whispering_gallery whispering_dome,a space beneath a dome or arch in which sounds produced at certain points are clearly audible at certain distant points
+80831,whist long_whist short_whist,a card game for four players who form two partnerships; a pack of 52 cards is dealt and each side scores one point for each trick it takes in excess of six
+80832,whist_drive,a progressive whist party
+80833,whistle,a small wind instrument that produces a whistling sound by blowing into it
+80834,whistle,acoustic device that forces air or steam against an edge or into a cavity and so produces a loud shrill sound
+80835,whistle whistling,the sound made by something moving rapidly or by steam coming out of a small aperture
+80836,whistle whistling,the act of signalling (e.g., summoning) by whistling or blowing a whistle; "the whistle signalled the end of the game"
+80837,whistle-stop_tour,a tour by a candidate as part of a political campaign in which a series of small towns are visited; "in 1948 Truman crossed the country several times on his whistle-stop tours"
+80838,whistle_blower whistle-blower whistleblower,an informant who exposes wrongdoing within an organization in the hope of stopping it; "the law gives little protection to whistleblowers who feel the public has a right to know what is going on"; "the whistleblower was fired for exposing the conditions in mental hospitals"
+80839,whistle_buoy whistling_buoy,a buoy that makes a whistling noise
+80840,whistle_stop flag_stop way_station,a small railway station between the principal stations or a station where the train stops only on a signal
+80841,whistler,someone who makes a loud high sound
+80842,whistling,the act of whistling a tune; "his cheerful whistling indicated that he enjoyed his work"
+80843,whistling_swan Cygnus_columbianus_columbianus,North American subspecies of tundra swan having a soft whistling note
+80844,white,(board games) the lighter pieces
+80845,white whiteness,the quality or state of the achromatic color of greatest lightness (bearing the least resemblance to black)
+80846,white-bellied_swallow tree_swallow Iridoprocne_bicolor,bluish-green-and-white North American swallow; nests in tree cavities
+80847,white-berry_yew Pseudotaxus_chienii,yew of southeastern China, differing from the Old World yew in having white berries
+80848,white-breasted_nuthatch Sitta_carolinensis,bluish-grey nuthatch with black head and white breast; of eastern North America
+80849,white-chinned_petrel Procellaria_aequinoctialis,large black petrel of southern seas having a white mark on the chin
+80850,white-coat_hypertension,temporary rise in blood pressure in the doctor's office
+80851,white-crowned_sparrow Zonotrichia_leucophrys,finch with black-and-white striped crown
+80852,white-footed_mouse vesper_mouse Peromyscus_leucopus,American woodland mouse with white feet and underparts
+80853,white-headed_stilt Himantopus_himantopus_leucocephalus,stilt of the southwest Pacific including Australia and New Zealand having mostly white plumage but with black wings and nape of neck
+80854,white-leaved_rockrose Cistus_albidus,compact white pubescent shrub of southwestern Europe having pink flowers
+80855,white-lipped_peccary Tayassu_pecari,blackish peccary with whitish cheeks; larger than the collared peccary
+80856,white-rayed_mule's_ears Wyethia_helianthoides,herb with basal leaves and leafy hairy stems bearing solitary flower heads with white or pale cream-colored rays; northwestern United States
+80857,white-rumped_shrike Lanius_ludovicianus_excubitorides,a butcherbird of western North America; grey with white underparts
+80858,white-tailed_jackrabbit whitetail_jackrabbit Lepus_townsendi,largest hare of northern plains and western mountains of United States; brownish-grey in summer and pale grey in winter; tail nearly always all white
+80859,white-tailed_kite Elanus_leucurus,grey-and-white American kite of warm and tropical regions
+80860,white-throated_sparrow whitethroat Zonotrichia_albicollis,common North American finch with a white patch on the throat and black-and-white striped crown
+80861,white-topped_aster,herb having corymbose white-rayed flowers with scaly bracts and silky indehiscent fruits
+80862,white_admiral Limenitis_camilla,Eurasian butterfly with brown wings and white markings
+80863,white_alder mountain_alder Alnus_rhombifolia,tree of western United States
+80864,white_ash Fraxinus_Americana,spreading American ash with leaves pale green or silvery beneath and having hard brownish wood
+80865,white_baneberry white_cohosh white_bead doll's_eyes Actaea_alba,North American herb with white poisonous berries
+80866,white_basswood cottonwood Tilia_heterophylla,American basswood of the Allegheny region
+80867,white_book white_paper,a government report; bound in white
+80868,white_bread light_bread,bread made with finely ground and usually bleached wheat flour
+80869,white_broom white_Spanish_broom Cytisus_albus Cytisus_multiflorus,low European broom having trifoliate leaves and yellowish-white flowers
+80870,white_bryony devil's_turnip Bryonia_alba,white-flowered vine having thick roots and bearing small black berries; Europe to Iran
+80871,white_cake,cake made without egg yolks
+80872,white_camas Zigadenus_glaucus,plant of eastern and central North America having creamy white flowers tinged with brown or purple; poisonous especially to grazing animals
+80873,white_campion evening_lychnis white_cockle bladder_campion Silene_latifolia Lychnis_alba,bluish-green herb having sticky stems and clusters of large evening-opening white flowers with much-inflated calyx; sometimes placed in genus Lychnis
+80874,white_chocolate,a blend of cocoa butter and milk solids and sugar and vanilla; used in candy bars and baking and coatings; not technically chocolate because it contains no chocolate liquor
+80875,white_clover dutch_clover shamrock Trifolium_repens,creeping European clover having white to pink flowers and bright green leaves; naturalized in United States; widely grown for forage
+80876,white_crappie Pomoxis_annularis,a crappie that is white
+80877,white_croaker chenfish kingfish Genyonemus_lineatus,small silvery marine food fish found off California
+80878,white_croaker queenfish Seriphus_politus,silvery and bluish drumfish of shallow California coastal waters
+80879,white_currant Ribes_sativum,garden currant bearing small white berries
+80880,white_cypress_pine Callitris_glaucophylla Callitris_glauca,small tree or shrub of southern Australia
+80881,white_dead_nettle Lamium_album,European dead nettle with white flowers
+80882,white_dipladenia Mandevilla_boliviensis Dipladenia_boliviensis,shrubby climber having glossy leaves and white funnel-shaped flowers with yellow throats
+80883,white_dogtooth_violet white_dog's-tooth_violet blonde_lilian Erythronium_albidum,North American dogtooth having solitary white flowers with yellow centers and blue or pink exteriors
+80884,white_dwarf white_dwarf_star,a faint star of enormous density
+80885,white_elephant,a valuable possession whose upkeep is excessively expensive
+80886,white_elephant,albinic Indian elephant; rare and sometimes venerated in east Asia
+80887,white_false_indigo Baptisia_lactea,erect or spreading herb having racemes of creamy white flowers; the eastern United States
+80888,white_feather,a symbol of cowardice
+80889,white_fir Colorado_fir California_white_fir Abies_concolor Abies_lowiana,medium to tall fir of central to western United States having a narrow erect crown and soft wood
+80890,white_flag flag_of_truce,flag consisting of a piece of white cloth that is hoisted to signal surrender or to ask for a truce
+80891,white_fringed_orchis white_fringed_orchid Habenaria_albiflora,bog orchid of eastern North America with a spike of pure white fringed flowers
+80892,white_fritillary Fritillaria_liliaceae,California herb with white conic or bell-shaped flowers usually tinged with green
+80893,white_fungus Saprolegnia_ferax,a fungus that attacks living fish and tadpoles and spawn causing white fungus disease: a coating of white hyphae on especially peripheral parts (as fins)
+80894,white_globe_lily white_fairy_lantern Calochortus_albus,globe lily having open branched clusters of egg-shaped white flowers; southern California
+80895,white_gold,a pale alloy of gold usually with platinum or nickel or palladium
+80896,white_goods,large electrical home appliances (refrigerators or washing machines etc.) that are typically finished in white enamel
+80897,white_goods household_linen,drygoods for household use that are typically made of white cloth
+80898,white_heat,the hotness of something heated until it turns white
+80899,white_heather Cassiope_mertensiana,heath of mountains of western United States having bell-shaped white flowers
+80900,white_hellebore American_hellebore Indian_poke bugbane Veratrum_viride,North American plant having large leaves and yellowish green flowers growing in racemes; yields a toxic alkaloid used medicinally
+80901,white_honeysuckle Lonicera_albiflora,bushy honeysuckle with twining branches and white or yellow-white flowers; southern United States
+80902,white_hope great_white_hope,someone (or something) expected to achieve great success in a given field; "this company is the great white hope of the nuclear industry's waste management policy"
+80903,white_knight,a company that is a friendly acquirer in a takeover
+80904,white_lead ceruse lead_carbonate,a poisonous white pigment that contains lead
+80905,white_leather whit_leather,a leather that has been treated with alum and/or salt
+80906,white_lettuce cankerweed Nabalus_alba Prenanthes_alba,herb of northeastern North America having drooping clusters of yellowish-white flowers; sometimes placed in genus Prenanthes
+80907,white_lie,an unimportant lie (especially one told to be tactful or polite)
+80908,white_line,a white stripe in the middle of a road to mark traffic lanes
+80909,white_lupine field_lupine wolf_bean Egyptian_lupine Lupinus_albus,white-flowered Eurasian herb widely cultivated for forage and erosion control
+80910,white_magic,magic used only for good purposes
+80911,white_maire Olea_lanceolata,small New Zealand tree having red pulpy one-seeded fruit
+80912,white_mallee congoo_mallee Eucalyptus_dumosa,small shrubby mallee
+80913,white_man,a man who is White
+80914,white_man's_burden,the supposed responsibility of the white race to provide care for their non-white subjects
+80915,white_mangrove Avicennia_officinalis,a small to medium-sized tree growing in brackish water especially along the shores of the southwestern Pacific
+80916,white_mangrove Laguncularia_racemosa,shrub to moderately large tree that grows in brackish water along the seacoasts of western Africa and tropical America; locally important as a source of tannin
+80917,white_marlin Makaira_albida,small marlin (to 180 pounds) of western Atlantic
+80918,white_matter substantia_alba,whitish nervous tissue of the CNS consisting of neurons and their myelin sheaths
+80919,white_metal bearing_metal,an alloy (often of lead or tin base) used for bearings
+80920,white_milkweed Asclepias_albicans,tall herb with leafless white waxy stems and whitish starlike flowers; southwestern United States
+80921,white_mountain_ash Eucalyptus_fraxinoides,large tree with dark compact bark on lower trunk but smooth and white above; yields lumber similar to that of European or American ashes
+80922,white_mulberry Morus_alba,Asiatic mulberry with white to pale red fruit; leaves used to feed silkworms
+80923,white_mullein Verbascum_lychnitis,densely hairy Eurasian herb with racemose white flowers; naturalized in North America
+80924,white_mullet Mugil_curema,silvery mullet of Atlantic and Pacific coasts
+80925,white_mustard Brassica_hirta Sinapis_alba,Eurasian mustard cultivated for its pungent seeds; a source of table mustard and mustard oil
+80926,white_noise,a noise produced by a stimulus containing all of the audible frequencies of vibration; "white noise is a good masking agent"
+80927,white_oak,any of numerous Old World and American oaks having 6 to 8 stamens in each floret, acorns that mature in one year and leaf veins that never extend beyond the margin of the leaf
+80928,white_pages,a telephone directory or section of a directory (usually printed on white paper) where the names of people are listed alphabetically along with their telephone numbers
+80929,white_pelican Pelecanus_erythrorhynchos,large American pelican; white with black wing feathers
+80930,white_pepper,pepper ground from husked peppercorns
+80931,white_perch silver_perch Morone_americana,small silvery food and game fish of eastern United States streams
+80932,white_pine,any of several five-needled pines with white wood and smooth usually light grey bark when young; especially the eastern white pine
+80933,white_pine,soft white wood of white pine trees
+80934,white_poplar white_aspen abele aspen_poplar silver-leaved_poplar Populus_alba,a poplar that is widely cultivated in the United States; has white bark and leaves with whitish undersurfaces
+80935,white_prairie_aster Aster_falcatus,perennial of western North America having white flowers
+80936,white_rhinoceros Ceratotherium_simum Diceros_simus,large light-grey African rhinoceros having two horns; endangered; sometimes placed in genus Diceros
+80937,white_rice polished_rice,having husk or outer brown layers removed
+80938,white_rocket Diplotaxis_erucoides,from Mediterranean region; a naturalized weed throughout southern Europe
+80939,white_rust,fungus causing a disease characterized by a white powdery mass of conidia
+80940,white_sale,a sale of household linens
+80941,white_sauce bechamel_sauce bechamel,milk thickened with a butter and flour roux
+80942,white_separatism,a social system in which white people live separately from members of other races
+80943,white_separatist,someone who advocates a society in which white people live separately from members of other racial groups
+80944,white_slave,a woman sold into prostitution
+80945,white_slaver,a person who forces women to become prostitutes
+80946,white_slime_mushroom,a type of slime mushroom
+80947,white_snakeroot white_sanicle Ageratina_altissima Eupatorium_rugosum,American herb having flat-topped clusters of small white flower heads; reputedly a cause of trembles and milk sickness; sometimes placed in genus Eupatorium
+80948,white_snapdragon Antirrhinum_coulterianum,California plant with slender racemes of white flowers
+80949,white_spruce Picea_glauca,medium-sized spruce of northeastern North America having short blue-green leaves and slender cones
+80950,white_squire,a white knight that buys less than a majority interest
+80951,white_stork Ciconia_ciconia,the common stork of Europe; white with black wing feathers and a red bill
+80952,white_stringybark thin-leaved_stringybark Eucalyptusd_eugenioides,stringybark having white wood
+80953,white_supremacist,a person who believes that the white race is or should be supreme
+80954,white_supremacy,the prejudice that members of the white race are superior to members of other races
+80955,white_sweet_clover white_melilot Melilotus_alba,biennial plant; valuable honey plant
+80956,white_tie,bow tie worn as part of a man's formal evening dress
+80957,white_trash poor_white_trash,(slang) an offensive term for White people who are impoverished
+80958,white_turnip,white root of a turnip plant
+80959,white_water whitewater,frothy water as in rapids or waterfalls
+80960,white_whale beluga Delphinapterus_leucas,small northern whale that is white when adult
+80961,white_willow Huntingdon_willow Salix_alba,large willow tree of Eurasia and North Africa having greyish canescent leaves and grey bark
+80962,white_wine,pale yellowish wine made from white grapes or red grapes with skins removed before fermentation
+80963,white_wolf Arctic_wolf Canis_lupus_tundrarum,wolf of Arctic North America having white fur and a black-tipped tail
+80964,white_woman,a woman who is White
+80965,white_wood_aster Aster_divaricatus,rhizomatous perennial wood aster of eastern North America with white flowers
+80966,white_yam water_yam Dioscorea_alata,grown in Australasia and Polynesia for its large root with fine edible white flesh
+80967,white_zinnia Zinnia_acerosa,subshrub with slender woolly stems and long narrow leaves and flower heads with white rays; southern United States and northern Mexico
+80968,whitebait,minnows or other small fresh- or saltwater fish (especially herring); usually cooked whole
+80969,whitebait,the edible young of especially herrings and sprats and smelts
+80970,whitebark_pine whitebarked_pine Pinus_albicaulis,small pine of western North America; having smooth grey-white bark and soft brittle wood; similar to limber pine
+80971,whitecap white_horse,a wave that is blown by the wind so its crest is broken and appears white
+80972,whitecup Nierembergia_repens Nierembergia_rivularis,prostrate woody South American herb with white tubular flowers often tinged with blue or rose
+80973,whited_sepulcher whited_sepulchre,a person who is inwardly evil but outwardly professes to be virtuous
+80974,whiteface,a clown whose face is covered with white make-up
+80975,whitefish,any market fish--edible saltwater fish or shellfish--except herring
+80976,whitefish,flesh of salmon-like or trout-like cold-water fish of cold lakes of the northern hemisphere
+80977,whitefish,silvery herring-like freshwater food fish of cold lakes of the northern hemisphere
+80978,whitefly,minute insect that feeds on plant juices; related to scale insects
+80979,whitehead milium,a small whitish lump in the skin due to a clogged sebaceous gland
+80980,whitelash white_backlash,backlash by white racists against black civil rights advances
+80981,whiteness,lightness or fairness of complexion; "only the whiteness of her cheeks gave any indication of the stress from which she was suffering"
+80982,whitening lightening,changing to a lighter color
+80983,whiteout,an arctic atmospheric condition with clouds over snow produce a uniform whiteness and objects are difficult to see; occurs when the light reflected off the snow equals the light coming through the clouds
+80984,whitetail_prairie_dog Cynomys_gunnisoni,tail is white tipped
+80985,whitethorn English_hawthorn may Crataegus_laevigata Crataegus_oxycantha,thorny Eurasian shrub of small tree having dense clusters of white to scarlet flowers followed by deep red berries; established as an escape in eastern North America
+80986,whitetip_shark oceanic_whitetip_shark white-tipped_shark Carcharinus_longimanus,large deep-water shark with white-tipped dorsal fin; worldwide distribution; most dangerous shark
+80987,whitetip_shark reef_whitetip_shark Triaenodon_obseus,smooth dogfish of Pacific and Indian Oceans and Red Sea having white-tipped dorsal and caudal fins
+80988,whitewash,a defeat in which the losing person or team fails to score
+80989,whitewash,wash consisting of lime and size in water; used for whitening walls and other surfaces
+80990,whitewash,a specious or deceptive clearing that attempts to gloss over failings and defects
+80991,whitey honky honkey honkie,(slang) offensive names for a White man
+80992,whiting,flesh of a cod-like fish of the Atlantic waters of Europe
+80993,whiting,flesh of any of a number of slender food fishes especially of Atlantic coasts of North America
+80994,whiting,a small fish of the genus Sillago; excellent food fish
+80995,whiting,any of several food fishes of North American coastal waters
+80996,whiting Merlangus_merlangus Gadus_merlangus,a food fish of the Atlantic waters of Europe resembling the cod; sometimes placed in genus Gadus
+80997,whitlow_grass shadflower shad-flower Draba_verna,annual weed of Europe and North America having a rosette of basal leaves and tiny flowers followed by oblong seed capsules
+80998,whitlowwort,any of various low-growing tufted plants of the genus Paronychia having tiny greenish flowers and usually whorled leaves; widespread throughout warm regions of both Old and New Worlds; formerly thought to cure whitlows (suppurative infections around a fingernail)
+80999,whittler,someone who whittles (usually as an idle pastime)
+81000,whiz,a buzzing or hissing sound as of something traveling rapidly through the air; "he heard the whiz of bullets near his head"
+81001,whizbang whizzbang,a firecracker that (like the whizbang shell) makes a whizzing sound followed by a loud explosion
+81002,whizbang whizzbang whizbang_shell,a small high-velocity shell; it makes a whizzing sound followed by a bang when it hits
+81003,whole,all of something including all its component elements or parts; "Europe considered as a whole"; "the whole of American literature"
+81004,whole unit,an assemblage of parts that is regarded as a single entity; "how big is that part compared to the whole?"; "the team is a unit"
+81005,whole-word_method,teaching reading by training beginners to associate printed words with spoken words
+81006,whole_blood,blood that has not been modified except for the addition of an anticoagulant; "whole blood is normally used in blood transfusions"
+81007,whole_gale,wind moving 55-63 knots; 10 on the Beaufort scale
+81008,whole_life_insurance ordinary_life_insurance straight_life_insurance,insurance on the life of the insured for a fixed amount at a definite premium that is paid each year in the same amount during the entire lifetime of the insured
+81009,whole_milk,milk from which no constituent (such as fat) has been removed
+81010,whole_note semibreve,a musical note having the longest time value (equal to four beats in common time)
+81011,whole_rest,a musical rest equal in duration to four beats in common time
+81012,whole_shebang whole_kit_and_caboodle kit_and_caboodle whole_kit_and_boodle kit_and_boodle whole_kit whole_caboodle whole_works works full_treatment,everything available; usually preceded by `the'; "we saw the whole shebang"; "a hotdog with the works"; "we took on the whole caboodle"; "for $10 you get the full treatment"
+81013,whole_snipe Gallinago_gallinago,common snipe of Eurasia and Africa
+81014,whole_wheat_flour graham_flour graham whole_meal_flour,flour made by grinding the entire wheat berry including the bran; (`whole meal flour' is British usage)
+81015,wholeheartedness,undivided commitment or unreserved enthusiasm
+81016,wholeness haleness,a state of robust good health
+81017,wholesale,the selling of goods to merchants; usually in large quantities for resale to consumers
+81018,wholesomeness,the quality of being beneficial and generally good for you
+81019,whoop,a loud hooting cry of exultation or excitement
+81020,whoopee,noisy and boisterous revelry
+81021,whooper whooper_swan Cygnus_cygnus,common Old World swan noted for its whooping call
+81022,whooping_cough pertussis,a disease of the respiratory mucous membrane
+81023,whooping_crane whooper Grus_americana,rare North American crane having black-and-white plumage and a trumpeting call
+81024,whopper walloper,a gross untruth; a blatant lie
+81025,whorehouse brothel bordello bagnio house_of_prostitution house_of_ill_repute bawdyhouse cathouse sporting_house,a building where prostitutes are available
+81026,whoremaster whoremonger,a pimp who procures whores
+81027,whoremaster whoremonger john trick,a prostitute's customer
+81028,whorled_aster Aster_acuminatus,North American perennial with apparently whorled leaves and showy white purple-tinged flowers
+81029,whorled_caraway,a caraway with whorled leaves
+81030,whorled_loosestrife Lysimachia_quadrifolia,common North American yellow-flowered plant
+81031,whorled_milkweed Asclepias_verticillata,milkweed of the eastern United States with narrow leaves in whorls and greenish-white flowers
+81032,why wherefore,the cause or intention underlying an action or situation, especially in the phrase `the whys and wherefores'
+81033,whydah whidah widow_bird,mostly black African weaverbird
+81034,wick,any piece of cord that conveys liquid by capillary action; "the physician put a wick in the wound to drain it"
+81035,wick taper,a loosely woven cord (in a candle or oil lamp) that draws fuel by capillary action up into the flame
+81036,wickedness darkness dark,absence of moral or spiritual values; "the powers of darkness"
+81037,wicker,slender flexible branches or twigs (especially of willow or some canes); used for wickerwork
+81038,wicker wickerwork caning,work made of interlaced slender branches (especially willow branches)
+81039,wicker_basket,a basket made of wickerwork
+81040,wicket,cricket equipment consisting of a set of three stumps topped by crosspieces; used in playing cricket
+81041,wicket hoop,a small arch used as croquet equipment
+81042,wicket lattice grille,small opening (like a window in a door) through which business can be transacted
+81043,wicket wicket_door wicket_gate,small gate or door (especially one that is part of a larger door)
+81044,wicket-keeper,stands behind the wicket to catch balls
+81045,wickiup wikiup,a lodge consisting of a frame covered with matting or brush; used by nomadic American Indians in the southwestern United States
+81046,wide-angle_lens fisheye_lens,a camera lens having a wider than normal angle of view (and usually a short focal length); produces an image that is foreshortened in the center and increasingly distorted in the periphery
+81047,wide_area_network WAN,a computer network that spans a wider area than does a local area network
+81048,wide_screen,a projection screen that is much wider than it is high
+81049,wide_wale,corduroy with wide ribs
+81050,widebody_aircraft wide-body_aircraft wide-body twin-aisle_airplane,a commercial airliner with two aisles
+81051,widegrip_pushup,a pushup with the arms widely separated
+81052,wideness broadness,the property of being wide; having great width
+81053,widening broadening,an increase in width
+81054,widening broadening,the act of making something wider
+81055,widgeon wigeon Anas_penelope,freshwater duck of Eurasia and northern Africa related to mallards and teals
+81056,widow widow_woman,a woman whose husband is dead especially one who has not remarried
+81057,widow's_peak,a V-shaped point in the hairline in the middle of the forehead
+81058,widow's_walk,a lookout atop a coastal house
+81059,widower widowman,a man whose wife is dead especially one who has not remarried
+81060,widowhood,the time of a woman's life when she is a widow
+81061,widowhood,the state of being a widow who has not remarried
+81062,width breadth,the extent of something from side to side
+81063,wiener_roast weenie_roast,a cookout where roasted frankfurters are the main course
+81064,wiesenboden,a dark meadow soil rich in organic material; developed through poor drainage in humid grassy or sedge regions
+81065,wife married_woman,a married woman; a man's partner in marriage
+81066,wig,hairpiece covering the head and made of real or synthetic hair
+81067,wig wigging,British slang for a scolding
+81068,wiggle wriggle squirm,the act of wiggling
+81069,wiggle_room,flexibility of interpretation or of options; "the request left some wiggle room for future restructuring"
+81070,wiggler wriggler,larva of a mosquito
+81071,wiggler wriggler squirmer,one who can't stay still (especially a child); "the toddler was a real wiggler on plane trips"
+81072,wiggliness,a jerky back and forth kind of mobility; "he walked with the wiggliness of a child on high heels"
+81073,wigmaker,someone who makes and sells wigs
+81074,wigwam,a Native American lodge frequently having an oval shape and covered with bark or hides
+81075,wild natural_state state_of_nature,a wild primitive state untouched by civilization; "he lived in the wild"; "they collected mushrooms in the wild"
+81076,wild-goose_chase,the fruitless pursuit of something unattainable
+81077,wild_China_tree Sapindus_drumondii Sapindus_marginatus,deciduous tree of southwestern United States having pulpy fruit containing saponin
+81078,wild_angelica Angelica_sylvestris,European herb with compound leaves and white flowers; adventive on Cape Breton Island
+81079,wild_apple crab_apple crabapple,any of numerous wild apple trees usually with small acidic fruit
+81080,wild_ass,any of several equine mammals of Asia and northeast Africa
+81081,wild_basil cushion_calamint Clinopodium_vulgare Satureja_vulgaris,aromatic herb having heads of small pink or whitish flowers; widely distributed in United States, Europe and Asia
+81082,wild_boar boar Sus_scrofa,Old World wild swine having a narrow body and prominent tusks from which most domestic swine come; introduced in United States
+81083,wild_buckwheat California_buckwheat Erigonum_fasciculatum,low-growing shrub with spreading branches and flowers in loose heads; desert regions of western United States (California to Utah)
+81084,wild_cabbage Brassica_oleracea,wild original of cultivated cabbages; common in western coastal Europe
+81085,wild_calla water_arum Calla_palustris,plant of wetlands and bogs of temperate regions having small greenish flowers partly enclosed in a white spathe and red berries
+81086,wild_card,an unpredictable factor; "the weather was a wild card"
+81087,wild_card,a playing card whose value can be determined by the person who holds it
+81088,wild_carrot Queen_Anne's_lace Daucus_carota,a widely naturalized Eurasian herb with finely cut foliage and white compound umbels of small white or yellowish flowers and thin yellowish roots
+81089,wild_celery Apium_graveolens,herb of Europe and temperate Asia
+81090,wild_cherry,the fruit of the wild cherry tree
+81091,wild_cherry wild_cherry_tree,an uncultivated cherry tree
+81092,wild_cinnamon white_cinnamon_tree Canella_winterana Canella-alba,large evergreen shrub or small tree having white aromatic bark and leathery leaves and small purple to red flowers in terminal cymes
+81093,wild_cotton Arizona_wild_cotton Gossypium_thurberi,shrub of southern Arizona and Mexico
+81094,wild_crab Malus_sylvestris,wild crab apple native to Europe; a chief ancestor of cultivated apples
+81095,wild_dog,any of various undomesticated mammals of the family Canidae that are thought to resemble domestic dogs as distinguished from jackals or wolves
+81096,wild_duck,an undomesticated duck (especially a mallard)
+81097,wild_fig Clusia_flava,a West Indies clusia having fig-shaped fruit
+81098,wild_garlic wood_garlic Ramsons Allium_ursinum,pungent Old World weedy plant
+81099,wild_geranium spotted_cranesbill Geranium_maculatum,common wild geranium of eastern North America with deeply parted leaves and rose-purple flowers
+81100,wild_ginger,low-growing perennial herb with pungent gingery leaves and rhizomes
+81101,wild_goat,undomesticated goat
+81102,wild_hollyhock Iliamna_remota Sphaeralcea_remota,a rare mallow found only in Illinois resembling the common hollyhock and having pale rose-mauve flowers; sometimes placed in genus Sphaeralcea
+81103,wild_horse,undomesticated or feral domestic horse
+81104,wild_hyacinth indigo_squill Camassia_scilloides,eastern camas; eastern and central North America
+81105,wild_hyacinth wood_hyacinth bluebell harebell Hyacinthoides_nonscripta Scilla_nonscripta,sometimes placed in genus Scilla
+81106,wild_hydrangea Hydrangea_arborescens,deciduous shrub with creamy white flower clusters; eastern United States
+81107,wild_indigo false_indigo,any of several plants of the genus Baptisia
+81108,wild_leek Levant_garlic kurrat Allium_ampeloprasum,coarse Old World perennial having a large bulb and tall stalk of greenish purple-tinged flowers; widely naturalized
+81109,wild_licorice Galium_lanceolatum,bedstraw with sweetish roots
+81110,wild_licorice wild_liquorice American_licorice American_liquorice Glycyrrhiza_lepidota,North American plant similar to true licorice and having a root with similar properties
+81111,wild_licorice wild_liquorice Astragalus_glycyphyllos,European perennial
+81112,wild_lily_of_the_valley Pyrola_rotundifolia,evergreen with rounded leaves and very fragrant creamy-white flowers; widely distributed in northern parts of Old and New Worlds
+81113,wild_lily_of_the_valley shinleaf Pyrola_elliptica,North American evergreen with small pinkish bell-shaped flowers and oblong leaves used formerly for shinplasters
+81114,wild_lupine sundial_lupine Indian_beet old-maid's_bonnet Lupinus_perennis,stout perennial of eastern and central North America having palmate leaves and showy racemose blue flowers
+81115,wild_madder white_madder white_bedstraw infant's-breath false_baby's_breath Galium_mollugo,Eurasian herb with ample panicles of small white flowers; naturalized in North America
+81116,wild_man feral_man,a person who is not socialized
+81117,wild_mango dika wild_mango_tree Irvingia_gabonensis,African tree with edible yellow fruit resembling mangos; valued for its oil-rich seed and hardy green wood that resists termites
+81118,wild_medlar wild_medlar_tree medlar Vangueria_infausta,small deciduous tree of southern Africa having edible fruit
+81119,wild_oat wild_oat_grass Avena_fatua,common in meadows and pastures
+81120,wild_olive Elaeagnus_latifolia,erect shrub or climber of India and China with red olivelike fruit
+81121,wild_onion,any of various plants of the genus Allium with edible bulbs found growing wild
+81122,wild_pansy Johnny-jump-up heartsease love-in-idleness pink_of_my_John Viola_tricolor,a common and long cultivated European herb from which most common garden pansies are derived
+81123,wild_parsley,any of various uncultivated umbelliferous plants with foliage resembling that of carrots or parsley
+81124,wild_parsnip madnep,biennial weed in Europe and America having large pinnate leaves and yellow flowers and a bitter and somewhat poisonous root; the ancestor of cultivated parsnip
+81125,wild_pea,any of various plants of the family Leguminosae that usually grow like vines
+81126,wild_peach Kiggelaria_africana,large much-branched shrub grown primarily for its evergreen foliage
+81127,wild_pink Silene_caroliniana,perennial of eastern and central North America having short-stalked pink or white flowers in hairy clusters
+81128,wild_pitch,an errant pitch that the catcher cannot be expected to catch and that allows a base runner to advance a base
+81129,wild_plum wild_plum_tree,an uncultivated plum tree or shrub
+81130,wild_potato Solanum_jamesii,erect or spreading perennial of southwestern United States and Mexico bearing small pale brown to cream-colored tubers resembling potatoes
+81131,wild_potato_vine wild_sweet_potato_vine man-of-the-earth manroot scammonyroot Ipomoea_panurata Ipomoea_fastigiata,tropical American prostrate or climbing herbaceous perennial having an enormous starchy root; sometimes held to be source of the sweet potato
+81132,wild_raspberry European_raspberry framboise Rubus_idaeus,the common European raspberry; fruit red or orange
+81133,wild_red_oat animated_oat Avene_sterilis,Mediterranean oat held to be progenitor of modern cultivated oat
+81134,wild_rice Indian_rice,grains of aquatic grass of North America
+81135,wild_rice Zizania_aquatica,perennial aquatic grass of North America bearing grain used for food
+81136,wild_rosemary marsh_tea Ledum_palustre,bog shrub of northern and central Europe and eastern Siberia to Korea and Japan
+81137,wild_rye,any of several grasses of the genus Elymus
+81138,wild_sage wild_clary vervain_sage Salvia_verbenaca,Eurasian sage with blue flowers and foliage like verbena; naturalized in United States
+81139,wild_sarsaparilla false_sarsaparilla wild_sarsparilla Aralia_nudicaulis,common perennial herb having aromatic roots used as a substitute for sarsaparilla; central and eastern North America
+81140,wild_senna Senna_marilandica Cassia_marilandica,North American perennial herb; leaves are used medicinally; sometimes placed in genus Cassia
+81141,wild_service_tree Sorbus_torminalis,European tree bearing edible small speckled brown fruit
+81142,wild_sheep,undomesticated sheep
+81143,wild_spinach,leafy greens collected from the wild and used as a substitute for spinach
+81144,wild_spurge flowering_spurge tramp's_spurge Euphorbia_corollata,common perennial United States spurge having showy white petallike bracts
+81145,wild_strawberry wood_strawberry Fragaria_vesca,Europe
+81146,wild_tamarind Lysiloma_latisiliqua Lysiloma_bahamensis,a tree of the West Indies and Florida and Mexico; resembles tamarind and has long flat pods
+81147,wild_teasel Dipsacus_sylvestris,European teasel with white to pink flowers; naturalized in United States
+81148,wild_thyme creeping_thyme Thymus_serpyllum,aromatic dwarf shrub common on banks and hillsides in Europe; naturalized in United States
+81149,wild_tobacco Indian_tobacco Nicotiana_rustica,tobacco plant of South America and Mexico
+81150,wild_vanilla Trilisa_odoratissima,perennial of southeastern United States with leaves having the fragrance of vanilla
+81151,wild_wheat wild_emmer Triticum_dicoccum_dicoccoides,found wild in Palestine; held to be prototype of cultivated wheat
+81152,wild_yam Dioscorea_paniculata,having a rhizome formerly dried and used to treat rheumatism or liver disorders
+81153,wildcat,any small or medium-sized cat resembling the domestic cat and living in the wild
+81154,wildcat_strike,a strike undertaken by workers without approval from the officials of their union
+81155,wildcat_well wildcat,an exploratory oil well drilled in land not known to be an oil field
+81156,wildcatter,an oilman who drills exploratory wells in territory not known to be an oil field
+81157,wilderness,(politics) a state of disfavor; "he led the Democratic party back from the wilderness"
+81158,wilderness,a bewildering profusion; "the duties of citizenship are lost sight of in the wilderness of interests of individuals and groups"; "a wilderness of masts in the harbor"
+81159,wilderness wild,a wild and uninhabited area left in its natural condition; "it was a wilderness preserved for the hawks and mountaineers"
+81160,wildfire,a raging and rapidly spreading conflagration
+81161,wildflower wild_flower,wild or uncultivated flowering plant
+81162,wildfowl,flesh of any of a number of wild game birds suitable for food
+81163,wilding,a wild uncultivated plant (especially a wild apple or crabapple tree)
+81164,wilding,an outrageous rampage usually involving sexual attacks by men on women
+81165,wildlife,all living things (except people) that are undomesticated; "chemicals could kill all the wildlife"
+81166,wildness,an unruly disposition to do as one pleases; "Liza had always had a tendency to wildness"; "the element of wildness in his behavior was a protest against repressive convention"
+81167,wildness,an intractably barbarous or uncultivated state of nature
+81168,wildness abandon,a feeling of extreme emotional intensity; "the wildness of his anger"
+81169,will,a fixed and persistent intent or purpose; "where there's a will there's a way"
+81170,will testament,a legal document declaring a person's wishes regarding the disposal of their property when they die
+81171,will-o'-the-wisp ignis_fatuus,an illusion that misleads
+81172,willet Catoptrophorus_semipalmatus,large North American shorebird of eastern and Gulf Coasts
+81173,willies,feelings of uneasiness; "that guy gave me the willies"
+81174,willingness,cheerful compliance; "he expressed his willingness to help"
+81175,willow,a textile machine having a system of revolving spikes for opening and cleaning raw textile fibers
+81176,willow willow_tree,any of numerous deciduous trees and shrubs of the genus Salix
+81177,willow_aster,a variety of aster
+81178,willow_oak Quercus_phellos,medium to large deciduous oak of the eastern United States having long lanceolate leaves and soft strong wood
+81179,willowherb,a plant of the genus Epilobium having pink or yellow flowers and seeds with silky hairs
+81180,willowware willow-pattern,chinaware decorated with a blue Chinese design on a white background depicting a willow tree and often a river
+81181,wilt wilt_disease,any plant disease characterized by drooping and shriveling; usually caused by parasites attacking the roots
+81182,wilt wilting,causing to become limp or drooping
+81183,wimp chicken crybaby,a person who lacks confidence, is irresolute and wishy-washy
+81184,wimple,headdress of cloth; worn over the head and around the neck and ears by medieval women
+81185,win,a victory (as in a race or other competition); "he was happy to get the win"
+81186,wince,the facial expression of sudden pain
+81187,wince flinch,a reflex response to sudden pain
+81188,wincey,a plain or twilled fabric of wool and cotton used especially for warm shirts or skirts and pajamas
+81189,winceyette,cotton flannelette with a nap on both sides
+81190,winch windlass,lifting device consisting of a horizontal cylinder turned by a crank on which a cable or rope winds
+81191,wind,a tendency or force that influences events; "the winds of change"
+81192,wind,breath; "the collision knocked the wind out of him"
+81193,wind air_current current_of_air,air moving (sometimes with considerable force) from an area of high pressure to an area of low pressure; "trees bent under the fierce winds"; "when there is no wind, row"; "the radioactivity was being swept upwards by the air current and out into the atmosphere"
+81194,wind malarkey malarky idle_words jazz nothingness,empty rhetoric or insincere or exaggerated talk; "that's a lot of wind"; "don't give me any of that jazz"
+81195,wind winding twist,the act of winding or twisting; "he put the key in the old clock and gave it a good wind"
+81196,wind_chime wind_bell,a decorative arrangement of pieces of metal or glass or pottery that hang together loosely so the wind can cause them to tinkle
+81197,wind_farm wind_park wind_energy_facility,a power plant that uses wind turbines to generate electricity
+81198,wind_gap,a pass in a mountain ridge with no stream flowing through it
+81199,wind_generation wind_power,power derived from the wind (as by windmills)
+81200,wind_instrument wind,a musical instrument in which the sound is produced by an enclosed column of air that is moved by bellows or the human breath
+81201,wind_poppy flaming_poppy Stylomecon_heterophyllum Papaver_heterophyllum,California wild poppy with bright red flowers
+81202,wind_rose,weather map showing the frequency and strength of winds from different directions
+81203,wind_tee,weather vane shaped like a T and located at an airfield
+81204,wind_tunnel,a structure resembling a tunnel where air is blown at known velocities for testing parts of aircraft
+81205,wind_turbine,a turbine that is driven by the wind
+81206,windage,the retarding force of air friction on a moving object
+81207,windage,the space between the projectile of a smoothbore gun and the surface of the bore of the gun
+81208,windage wind_deflection,the deflection of a projectile resulting from the effects of wind
+81209,windage wind_exposure,exposure to the wind (as the exposed part of a vessel's hull which is responsible for wind resistance)
+81210,windbreak shelterbelt,hedge or fence of trees designed to lessen the force of the wind and reduce erosion
+81211,windburn,redness and irritation of the skin caused by exposure to high-velocity wind
+81212,winder,a worker who winds (e.g., a winch or clock or other mechanism)
+81213,winder,mechanical device around which something can be wound
+81214,winder key,mechanical device used to wind another device that is driven by a spring (as a clock)
+81215,windfall,fruit that has fallen from the tree
+81216,windfall_profit,profit that occurs unexpectedly as a consequence of some event not controlled by those who profit from it
+81217,windjammer,a large sailing ship
+81218,windmill,a mill that is powered by the wind
+81219,windmill aerogenerator wind_generator,generator that extracts usable energy from winds
+81220,windmill_grass creeping_windmill_grass star_grass Chloris_truncata,perennial Australian grass having numerous long spikes arranged like the vanes of a windmill
+81221,window,the time period that is considered best for starting or finishing something; "the expanded window will give us time to catch the thieves"; "they had a window of less than an hour when an attack would have succeeded"
+81222,window,an opening that resembles a window in appearance or function; "he could see them through a window in the trees"
+81223,window,an opening in a wall or screen that admits light and air and through which customers can be served; "he stuck his head in the window"
+81224,window,(computer science) a rectangular part of a computer screen that contains a display different from the rest of the screen
+81225,window,a transparent panel (as of an envelope) inserted in an otherwise opaque material
+81226,window,a transparent opening in a vehicle that allow vision out of the sides or back; usually is capable of being opened
+81227,window,a framework of wood or metal that contains a glass windowpane and is built into a wall or roof to admit light or air
+81228,window-washing,the activity of washing windows
+81229,window_blind,a blind for privacy or to keep out light
+81230,window_box,a long narrow box for growing plants on a windowsill
+81231,window_cleaner,someone who cleans windows for pay
+81232,window_dresser window_trimmer,someone who decorates shop windows
+81233,window_dressing,the decoration of shop windows
+81234,window_envelope,an envelope with a transparent panel that reveals the address on the enclosure
+81235,window_frame,the framework that supports a window
+81236,window_oyster windowpane_oyster capiz Placuna_placenta,marine bivalve common in Philippine coastal waters characterized by a large thin flat translucent shell
+81237,window_screen,screen to keep insects from entering a building through the open window
+81238,window_seat,a bench or similar seat built into a window recess
+81239,window_shade,an opaque window blind that can cover or uncover a window
+81240,window_washer,someone who washes windows
+81241,windowpane Scophthalmus_aquosus,very thin translucent flounder of the Atlantic coast of North America
+81242,windowpane window,a pane of glass in a window; "the ball shattered the window"
+81243,windowsill,the sill of a window; the horizontal member at the bottom of the window frame
+81244,windshield windscreen,transparent screen (as of glass) to protect occupants of a vehicle
+81245,windshield_wiper windscreen_wiper wiper wiper_blade,a mechanical device that cleans the windshield
+81246,windsock wind_sock sock air_sock air-sleeve wind_sleeve wind_cone drogue,a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind
+81247,windstorm,a storm consisting of violent winds
+81248,windward,the direction from which the wind is coming
+81249,windward,the side of something that is toward the wind
+81250,windward_side weatherboard weather_side,the side toward the wind
+81251,wine vino,fermented juice (of grapes especially)
+81252,wine wine-colored wine-coloured,a red as dark as red wine
+81253,wine-maker's_yeast Saccharomyces_ellipsoides,used in making wine
+81254,wine_bar,a bar that serves only wine
+81255,wine_bottle,a bottle for holding wine
+81256,wine_bucket wine_cooler,a bucket of ice used to chill a bottle of wine
+81257,wine_cask wine_barrel,a barrel that holds wine
+81258,wine_lover,a connoisseur of fine wines; a grape nut
+81259,wine_palm jaggery_palm kitul kittul kitul_tree toddy_palm Caryota_urens,fishtail palm of India to Malay Peninsula; sap yields a brown sugar (jaggery) and trunk pith yields sago
+81260,wine_sauce,white or veloute sauce with wine and stock variously seasoned with onions and herbs; for fish or meat
+81261,wine_taster,a taster who evaluates the quality of wines
+81262,wine_tasting,a gathering of people to taste and compare different wines
+81263,wine_vinegar,vinegar made from wine
+81264,wineberry Rubus_phoenicolasius,raspberry of China and Japan having pale pink flowers grown for ornament and for the small red acid fruits
+81265,wineglass,a glass that has a stem and in which wine is served
+81266,wineglass_heel,a heel on a woman's shoe in the shape of a wineglass
+81267,winemaking wine_making,the craft and science of growing grapes and making wine
+81268,winepress,a press that is used to extract the juice from grapes
+81269,winery wine_maker,an establishment where wine is made
+81270,wineskin,an animal skin (usually a goatskin) that forms a bag and is used to hold and dispense wine
+81271,wing,a hockey player stationed in a forward position on either side
+81272,wing,(in flight formation) a position to the side and just to the rear of another aircraft
+81273,wing,a group within a political party or legislature or other organization that holds distinct views or has a particular function; "they are the progressive wing of the Republican Party"
+81274,wing,a unit of military aircraft
+81275,wing,the wing of a fowl; "he preferred the drumsticks to the wings"
+81276,wing,one of the horizontal airfoils on either side of the fuselage of an airplane
+81277,wing,a movable organ for flying (one of a pair)
+81278,wing offstage backstage,a stage area out of sight of the audience
+81279,wing_case elytron,either of the horny front wings in beetles and some other insects which cover and protect the functional hind wings
+81280,wing_chair,easy chair having wings on each side of a high back
+81281,wing_commander,(RAF rank) one who is next below a group captain
+81282,wing_loading,the ratio of the weight of an airplane to its wing area
+81283,wing_nut wing-nut,any tree of the genus Pterocarya; fruit is a small winged nutlet; Caucasus to southeastern Asia
+81284,wing_nut wing-nut wing_screw butterfly_nut thumbnut,a threaded nut with winglike projections for thumb and forefinger leverage in turning
+81285,wing_shooting,shooting game birds that are flying (on the wing)
+81286,wing_tip,a shoe having a wing-tip toecap
+81287,wing_tip,a decorative toecap having a point extending toward the throat of the shoe
+81288,wingback,(football) the person who plays wingback
+81289,wingback,(American football) the position of the offensive back who lines up behind or outside the end
+81290,winged_bean winged_pea goa_bean goa_bean_vine Manila_bean Psophocarpus_tetragonolobus,a tuberous twining annual vine bearing clusters of purplish flowers and pods with four jagged wings; Old World tropics
+81291,winged_elm wing_elm Ulmus_alata,North American elm having twigs and young branches with prominent corky projections
+81292,winged_everlasting Ammobium_alatum,Australian plant widely cultivated for its beautiful silvery-white blooms with bright yellow centers on long winged stems
+81293,winged_pea asparagus_pea Lotus_tetragonolobus,sprawling European annual having a 4-winged edible pod
+81294,winged_pigweed tumbleweed Cycloloma_atriplicifolium,bushy annual weed of central North America having greenish flowers and winged seeds
+81295,winged_spindle_tree Euonymous_alatus,bushy deciduous shrub with branches having thin wide corky longitudinal wings; brilliant red in autumn; northeastern Asia to central China
+81296,winger,(sports) player in wing position
+81297,wingman,the pilot who positions his aircraft outside and behind (on the wing of) the leader of a flying formation
+81298,wings,stylized bird wings worn as an insignia by qualified pilots or air crew members
+81299,wings,a means of flight or ascent; "necessity lends wings to inspiration"
+81300,wingspan wingspread,linear distance between the extremities of an airfoil
+81301,wingspread,distance between the tips of the wings (as of a bird or insect) when fully extended
+81302,wingstem golden_ironweed yellow_ironweed golden_honey_plant Verbesina_alternifolia Actinomeris_alternifolia,perennial herb with showy yellow flowers; the eastern United States
+81303,wink,closing one eye quickly as a signal
+81304,winker,a person who winks
+81305,winker blinker blinder,blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side
+81306,winner,a gambler who wins a bet
+81307,winner victor,the contestant who wins the contest
+81308,winner's_circle,a small area at a racecourse where awards are given to the owners of winning horses
+81309,winning,succeeding with great difficulty; "winning is not everything"
+81310,winning_post,the post at the end of a racecourse
+81311,winning_streak,a streak of wins
+81312,winnings win profits,something won (especially money)
+81313,winnow winnowing sifting,the act of separating grain from chaff; "the winnowing was done by women"
+81314,winsomeness,childlike charm or appeal
+81315,winter wintertime,the coldest season of the year; in the northern hemisphere it extends from the winter solstice to the vernal equinox
+81316,winter's_bark,aromatic bark having tonic and stimulant properties
+81317,winter's_bark winter's_bark_tree Drimys_winteri,South American evergreen tree yielding winter's bark and a light soft wood similar to basswood
+81318,winter_aconite Eranthis_hyemalis,small Old World perennial herb grown for its bright yellow flowers which appear in early spring often before snow is gone
+81319,winter_cress,cress cultivated for winter salads
+81320,winter_cress St._Barbara's_herb scurvy_grass,any plant of the genus Barbarea: yellow-flowered Eurasian cresses; widely cultivated for winter salad
+81321,winter_crookneck winter_crookneck_squash Cucurbita_moschata,any of various plants bearing squash having hard rinds and elongated recurved necks
+81322,winter_crookneck_squash,a squash with a hard rind and an elongated curved neck
+81323,winter_currant Ribes_sanguineum,a flowering shrub
+81324,winter_flounder blackback_flounder lemon_sole Pseudopleuronectes_americanus,important American food fish in the winter
+81325,winter_hazel flowering_hazel,any of several Asiatic deciduous shrubs cultivated for their nodding racemes of yellow flowers that appear before the leaves
+81326,winter_heath spring_heath Erica_carnea,dwarf European shrub with very early blooming bell-shaped red flowers
+81327,winter_heliotrope sweet_coltsfoot Petasites_fragrans,European herb with vanilla-scented white-pink flowers
+81328,winter_jasmine Jasminum_nudiflorum,deciduous rambling shrub widely cultivated for its winter-blooming yellow flowers
+81329,winter_melon,the fruit of the winter melon vine; a green melon with pale green to orange flesh that keeps well
+81330,winter_melon Persian_melon honeydew_melon winter_melon_vine Cucumis_melo_inodorus,any of a variety of muskmelon vines having fruit with a smooth white rind and white or greenish flesh that does not have a musky smell
+81331,winter_mushroom Flammulina_velutipes,an edible agaric that is available in early spring or late fall when few other mushrooms are; has a viscid smooth orange to brown cap and a velvety stalk that turns black in maturity and pallid gills; often occur in clusters
+81332,winter_purslane miner's_lettuce Cuban_spinach Montia_perfoliata,succulent herb sometimes grown as a salad or pot herb; grows on dunes and waste ground of Pacific coast of North America
+81333,winter_savory Satureja_montana Satureia_montana,erect perennial subshrub having pink or white flowers and leathery leaves with a flavor of thyme; southern Europe
+81334,winter_savory winter_savoury,resinous leaves used in stews and stuffings and meat loaf
+81335,winter_solstice,December 22, when the sun is at its southernmost point
+81336,winter_squash,any of various fruits of the gourd family with thick rinds and edible yellow to orange flesh that mature in the fall and can be stored for several months
+81337,winter_squash winter_squash_plant,any of various plants of the species Cucurbita maxima and Cucurbita moschata producing squashes that have hard rinds and mature in the fall
+81338,winter_sweet poison_arrow_plant Acocanthera_oblongifolia Acocanthera_spectabilis,medium-sized shrubby tree of South Africa having thick leathery evergreen leaves and white or pink flowers and globose usually two-seeded purplish black fruits
+81339,winter_urn,a common name for a variety of Sarcosomataceae
+81340,winter_wren Troglodytes_troglodytes,small wren of coniferous forests of northern hemisphere
+81341,wintergreen boxberry checkerberry teaberry spiceberry,spicy red berrylike fruit; source of wintergreen oil
+81342,wintergreen pyrola,any of several evergreen perennials of the genus Pyrola
+81343,wintergreen_oil oil_of_wintergreen,oil or flavoring obtained from the creeping wintergreen or teaberry plant
+81344,wipeout,a spill in some sport (as a fall from a bicycle or while skiing or being capsized on a surfboard)
+81345,wiper,a worker who wipes
+81346,wiper wiper_arm contact_arm,contact consisting of a conducting arm that rotates over a series of fixed contacts and comes to rest on an outlet
+81347,wiper_motor,electric motor that moves the windshield wiper
+81348,wire,the finishing line on a racetrack
+81349,wire,ligament made of metal and used to fasten things or make cages or fences etc
+81350,wire conducting_wire,a metal conductor that carries electricity over a distance
+81351,wire-haired_fox_terrier,a fox terrier with wiry hair
+81352,wire-puller,one who uses secret influence (i.e. pulls wires or strings) for his own ends
+81353,wire_cloth,fabric woven of metallic wire
+81354,wire_cutter,an edge tool used in cutting wire
+81355,wire_gauge wire_gage,gauge for measuring the diameter of wire
+81356,wire_glass,a glass that contains a layer of wire netting in it
+81357,wire_matrix_printer wire_printer stylus_printer,an impact printer in which each character is represented by a pattern of dots made by wires or styli
+81358,wire_recorder,an early type of magnetic recorder using iron wire
+81359,wire_stripper,a hand tool used by electricians to remove insulation from the cut end of an insulated wire
+81360,wirehair wirehaired_terrier wire-haired_terrier,a terrier with wiry hair
+81361,wireless,transmission by radio waves
+81362,wireless_local_area_network WLAN wireless_fidelity WiFi,a local area network that uses high frequency radio signals to transmit and receive data over distances of a few hundred feet; uses ethernet protocol
+81363,wireman wirer,a worker who installs and repairs electric wiring
+81364,wirer,someone who sends a telegram
+81365,wiretap tap,the act of tapping a telephone or telegraph line to get information
+81366,wirework grillwork,mesh netting made of wires
+81367,wireworm,wormlike larva of various elaterid beetles; feeds on roots of many crop plants
+81368,wiriness,the property of being lean and tough and sinewy
+81369,wiring,a circuit of wires for the distribution of electricity
+81370,wiring,the work of installing the wires for an electrical system or device
+81371,wiring_diagram,a schematic drawing of the wiring of an electrical system
+81372,wisdom,accumulated knowledge or erudition or enlightenment
+81373,wisdom sapience,ability to apply knowledge or experience or understanding or common sense and insight
+81374,wisdom wiseness,the trait of utilizing knowledge and experience with common sense and insight
+81375,wisdom wiseness soundness,the quality of being prudent and sensible
+81376,wisdom_tooth,any of the last 4 teeth on each side of the upper and lower jaw; the last of the permanent teeth to erupt (between ages 16 and 21)
+81377,wise,a way of doing or being; "in no wise"; "in this wise"
+81378,wise_guy smart_aleck wiseacre wisenheimer weisenheimer,an upstart who makes conceited, sardonic, insolent comments
+81379,wisecrack crack sally quip,witty remark
+81380,wisent aurochs Bison_bonasus,European bison having a smaller and higher head than the North American bison
+81381,wish,the particular preference that you have; "it was his last wish"; "they should respect the wishes of the people"
+81382,wish indirect_request,an expression of some desire or inclination; "I could tell that it was his wish that the guests leave"; "his crying was an indirect request for attention"
+81383,wish wishing want,a specific feeling of desire; "he got his wish"; "he was above all wishing and desire"
+81384,wish-wash,any thin watery drink
+81385,wish_list,a list of events that you wish would occur
+81386,wishbone wishing_bone,the furcula of a domestic fowl
+81387,wishful_thinking,the illusion that what you wish for is actually true
+81388,wishfulness,an unrealistic yearning
+81389,wishing_cap,a magical cap that secures whatever one wishes for
+81390,wisp,a small person; "a mere wisp of a girl"
+81391,wisp,a small bundle of straw or hay
+81392,wisp,a flock of snipe
+81393,wisp,a small tuft or lock; "wisps of hair"
+81394,wisteria wistaria,any flowering vine of the genus Wisteria
+81395,wistfulness,a sadly pensive longing
+81396,wit humor humour witticism wittiness,a message whose ingenuity or verbal skill or incongruity has the power to evoke laughter
+81397,witch,a being (usually female) imagined to have special powers derived from the devil
+81398,witch-hunt,searching out and harassing dissenters
+81399,witch-hunter,someone who identifies and punishes people for their opinions
+81400,witch_doctor,someone who is believed to heal through magical powers
+81401,witch_elm wych_elm Ulmus_glabra,Eurasian elm often planted as a shade tree
+81402,witch_hazel witch_hazel_plant wych_hazel wych_hazel_plant,any of several shrubs or trees of the genus Hamamelis; bark yields an astringent lotion
+81403,witch_hazel wych_hazel,lotion consisting of an astringent alcoholic solution containing an extract from the witch hazel plant
+81404,witchcraft witchery,the art of sorcery
+81405,witches'_brew witches'_broth witch's_brew,a fearsome mixture; "a witches' brew of gangsters and terrorists"; "mixing dope and alcohol creates a witches' brew"
+81406,witches'_broom witch_broom hexenbesen staghead,an abnormal tufted growth of small branches on a tree or shrub caused by fungi or insects or other physiological disturbance
+81407,witches'_butter Tremella_lutescens,a yellow jelly fungus
+81408,witchgrass witch_grass old_witchgrass old_witch_grass tumble_grass Panicum_capillare,North American grass with slender brushy panicles; often a weed on cultivated land
+81409,witching,the use or practice of witchcraft
+81410,withdrawal,the act of withdrawing blood, tumors, etc.; "the nurse was expert at the withdrawal of blood"
+81411,withdrawal,the act of taking out money or other capital
+81412,withdrawal,the act of ceasing to participate in an activity
+81413,withdrawal,the act of withdrawing; "the withdrawal of French troops from Vietnam"
+81414,withdrawal backdown climb-down,a retraction of a previously held position
+81415,withdrawal detachment,avoiding emotional involvement
+81416,withdrawal drug_withdrawal,the termination of drug taking
+81417,withdrawal_symptom,any physical or psychological disturbance (as sweating or depression) experienced by a drug addict when deprived of the drug
+81418,withdrawer,an authority who withdraws permission
+81419,withdrawer,an individualist who withdraws from social interaction
+81420,withdrawer,a drug addict who is discontinuing the use of narcotics
+81421,withdrawer,a contestant who withdraws from competition
+81422,withdrawer,a student who withdraws from the educational institution in which he or she was enrolled
+81423,withdrawer,a depositor who withdraws funds previously deposited
+81424,withe,band or rope made of twisted twigs or stems
+81425,withe withy,strong flexible twig
+81426,withers,the highest part of the back at the base of the neck of various animals especially draft animals
+81427,withholder,a person who refrains from granting; "a withholder of payments"
+81428,withholder,a person who restrains or checks or holds back
+81429,withholding,the act of holding back or keeping within your possession or control; "I resented his withholding permission"; "there were allegations of the withholding of evidence"
+81430,withholding,the act of deducting from an employee's salary
+81431,withholding_tax withholding,income tax withheld from employees' wages and paid directly to the government by the employer
+81432,withstander,an opponent who resists with force or resolution; "obstinate withstanders of innovation"
+81433,witness,(law) a person who testifies under oath in a court of law
+81434,witness,testimony by word or deed to your religious faith
+81435,witness attestant attestor attestator,(law) a person who attests to the genuineness of a document or signature by adding their own signature
+81436,witness witnesser informant,someone who sees an event and reports what happened
+81437,witness_box witness_stand,a box enclosure for a witness when testifying
+81438,wits marbles,the basic human power of intelligent thought and perception; "he used his wits to get ahead"; "I was scared out of my wits"; "he still had all his marbles and was in full possession of a lively mind"
+81439,wittol,an archaic term for a cuckold who knows about his wife's infidelity but tolerates it
+81440,woad,a blue dyestuff obtained from the woad plant
+81441,woad,any of several herbs of the genus Isatis
+81442,wobble,an unsteady rocking motion
+81443,wobbler,something that wobbles
+81444,woe woefulness,intense mournfulness
+81445,wog,(offensive British slang) term used by the British to refer to people of color from Africa or Asia
+81446,wok,pan with a convex bottom; used for frying in Chinese cooking
+81447,wold,a tract of open rolling country (especially upland)
+81448,wolf,any of various predatory carnivorous canine mammals of North America and Eurasia that usually hunt in packs
+81449,wolf woman_chaser skirt_chaser masher,a man who is aggressive in making amorous advances to women
+81450,wolf_boy,a male person assumed to have been raised by wolves
+81451,wolf_pack,a group of submarines operating together in attacking enemy convoys
+81452,wolf_pack,a group of wolves hunting together
+81453,wolf_pup wolf_cub,a young wolf
+81454,wolf_spider hunting_spider,ground spider that hunts its prey instead of using a web
+81455,wolffish wolf_fish catfish,large ferocious northern deep-sea food fishes with strong teeth and no pelvic fins
+81456,wolfhound,the largest breed of dogs; formerly used to hunt wolves
+81457,wolframite iron_manganese_tungsten,a mineral consisting of iron and manganese tungstate in crystalline form; the principal ore of tungsten; found in quartz veins associated with granitic rocks
+81458,wolfsbane wolfbane wolf's_bane Aconitum_lycoctonum,poisonous Eurasian perennial herb with broad rounded leaves and yellow flowers and fibrous rootstock
+81459,wollastonite,a white or greyish mineral typically found in metamorphic limestone; a silicate of calcium
+81460,wolverine carcajou skunk_bear Gulo_luscus,stocky shaggy-coated North American carnivorous mammal
+81461,woman,a female person who plays a significant role (wife or mistress or girlfriend) in the life of a particular man; "he was faithful to his woman"
+81462,woman adult_female,an adult female person (as opposed to a man); "the woman kept house while the man hunted"
+81463,woman's_clothing,clothing that is designed for women to wear
+81464,womanhood,the status of a woman
+81465,womanhood muliebrity,the state of being an adult woman
+81466,womanhood woman fair_sex,women as a class; "it's an insult to American womanhood"; "woman is the glory of creation"; "the fair sex gathered on the veranda"
+81467,womanizer womaniser philanderer,a man who likes many women and has short sexual relationships with them
+81468,womankind,women as distinguished from men
+81469,womanliness womanlike,the trait of being womanly; having the characteristics of an adult female
+81470,wombat,burrowing herbivorous Australian marsupials about the size of a badger
+81471,won-lost_record,(sports) a record of win versus losses
+81472,won_ton wonton,a Chinese dumpling filled with spiced minced pork; usually served in soup
+81473,won_ton wonton wonton_soup,a soup with won ton dumplings
+81474,wonder marvel,something that causes feelings of wonder; "the wonders of modern science"
+81475,wonder wonderment admiration,the feeling aroused by something strange and surprising
+81476,wonder_boy golden_boy,a man who is unusually successful at an early age
+81477,wonder_woman,a woman who can be a successful wife and have a professional career at the same time
+81478,wonderer,someone who is curious about something
+81479,wonderer marveller,someone filled with admiration and awe; someone who wonders at something
+81480,wonderland,a place or scene of great or strange beauty or wonder
+81481,wonderland,an imaginary realm of marvels or wonders
+81482,wood,the hard fibrous lignified substance under the bark of trees
+81483,wood,a golf club with a long shaft used to hit long shots; originally made with a wooden head; "metal woods are now standard"
+81484,wood-frog wood_frog Rana_sylvatica,wide-ranging light-brown frog of moist North American woodlands especially spruce
+81485,wood_anemone Anemone_nemorosa,European anemone with solitary white flowers common in deciduous woodlands
+81486,wood_anemone snowdrop Anemone_quinquefolia,common anemone of eastern North America with solitary pink-tinged white flowers
+81487,wood_ant Formica_rufa,reddish-brown European ant typically living in anthills in woodlands
+81488,wood_aster,any of several asters of eastern North America usually growing in woods
+81489,wood_chisel,a chisel for working wood; it is either struck with a mallet or pushed by hand
+81490,wood_drake,male wood duck
+81491,wood_duck summer_duck wood_widgeon Aix_sponsa,showy North American duck that nests in hollow trees
+81492,wood_fern wood-fern woodfern,any of various ferns of the genus Dryopteris
+81493,wood_grain woodgrain woodiness,texture produced by the fibers in wood
+81494,wood_hoopoe,tropical African bird having metallic blackish plumage but no crest
+81495,wood_horsetail Equisetum_Sylvaticum,Eurasia except southern Russia; northern North America
+81496,wood_ibis wood_stork Ibis_ibis,any of several Old World birds of the genus Ibis
+81497,wood_ibis wood_stork flinthead Mycteria_americana,an American stork that resembles the true ibises in having a downward-curved bill; inhabits wooded swamps of New World tropics
+81498,wood_lily Lilium_philadelphicum,lily of eastern North America having orange to orange-red purple-spotted flowers
+81499,wood_meadowgrass Poa_nemoralis Agrostis_alba,slender European grass of shady places; grown also in northeastern America and temperate Asia
+81500,wood_mint,American herb of genus Blephilia with more or less hairy leaves and clusters of purplish or bluish flowers
+81501,wood_mouse,any of various New World woodland mice
+81502,wood_nettle Laportea_canadensis,American perennial herb found in rich woods and provided with stinging hairs; provides fibers used for textiles
+81503,wood_pigeon ringdove cushat Columba_palumbus,Eurasian pigeon with white patches on wings and neck
+81504,wood_pulp,wood that has been ground to a pulp; used in making cellulose products (as rayon or paper)
+81505,wood_rabbit cottontail cottontail_rabbit,common small rabbit of North America having greyish or brownish fur and a tail with a white underside; a host for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks)
+81506,wood_rat wood-rat,any of various small short-tailed rodents of the northern hemisphere having soft fur grey above and white below with furred tails and large ears; some are hosts for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks)
+81507,wood_sage Teucrium_scorodonia,European germander with one-sided racemes of yellow flowers; naturalized in North America
+81508,wood_spurge Euphorbia_amygdaloides,European perennial herb with greenish yellow terminal flower clusters
+81509,wood_sugar xylose,a sugar extracted from wood or straw; used in foods for diabetics
+81510,wood_swallow swallow_shrike,Australasian and Asiatic bird related to the shrikes and resembling a swallow
+81511,wood_tar,any tar obtained by the destructive distillation of wood
+81512,wood_thrush Hylocichla_mustelina,large thrush common in eastern American woodlands; noted for its melodious song
+81513,wood_tick American_dog_tick Dermacentor_variabilis,common tick that can transmit Rocky Mountain spotted fever and tularemia
+81514,wood_vise woodworking_vise shoulder_vise,a vise with jaws that are padded in order to hold lumber without denting it
+81515,wood_warbler Phylloscopus_sibilatrix,European woodland warbler with dull yellow plumage
+81516,woodbine Lonicera_periclymenum,European twining honeysuckle with fragrant red and yellow-white flowers
+81517,woodborer borer,any of various insects or larvae or mollusks that bore into wood
+81518,woodcarver carver,makes decorative wooden panels
+81519,woodcarving,a carving created by carving wood
+81520,woodcock,game bird of the sandpiper family that resembles a snipe
+81521,woodcraft,skill and experience in matters relating to the woods (as hunting or fishing or camping)
+81522,woodcraft,skill in carving or fashioning objects from wood
+81523,woodcut wood_block wood_engraving,engraving consisting of a block of wood with a design cut into it; used to make prints
+81524,woodcut wood_engraving,a print made from a woodcut
+81525,woodcutter,cuts down trees and chops wood as a job
+81526,wooden_spoon,a booby prize consisting of a spoon made of wood
+81527,wooden_spoon,a spoon made of wood
+81528,woodenness,the quality of being wooden and awkward; "he criticized the woodenness of the acting"; "there was a certain woodenness in his replies"
+81529,woodenware,ware for domestic use made of wood
+81530,woodhewer woodcreeper wood-creeper tree_creeper,any of numerous South American and Central American birds with a curved bill and stiffened tail feathers that climb and feed like woodpeckers
+81531,woodiness woodsiness,the quality of abounding in trees
+81532,woodland_caribou Rangifer_caribou,any of several large caribou living in coniferous forests of southern Canada; in some classifications included in the species Rangifer tarandus
+81533,woodland_oxeye Buphthalmum_salicifolium,hairy Eurasian perennial having deep yellow daisies on lax willowy stems; found in the wild in open woodland and on rocky slopes
+81534,woodland_star Lithophragma_affine Lithophragma_affinis Tellima_affinis,California perennial herb cultivated for its racemose white flowers with widely spreading petals; sometimes placed in genus Tellima
+81535,woodlouse wood_louse slater,any of various small terrestrial isopods having a flat elliptical segmented body; found in damp habitats
+81536,woodpecker peckerwood pecker,bird with strong claws and a stiff tail adapted for climbing and a hard chisel-like bill for boring into wood for insects
+81537,woodpile,a pile or stack of wood to be used for fuel
+81538,woodruff,any plant of the genus Asperula
+81539,woodscrew,a metal screw that tapers to a point so that it can be driven into wood with a screwdriver
+81540,woodshed,a shed for storing firewood or garden tools
+81541,woodsia,any fern of the genus Woodsia
+81542,woodsman woodman,someone who lives in the woods
+81543,woodwaxen dyer's_greenweed dyer's-broom dyeweed greenweed whin woadwaxen Genista_tinctoria,small Eurasian shrub having clusters of yellow flowers that yield a dye; common as a weed in Britain and the United States; sometimes grown as an ornamental
+81544,woodwind woodwind_instrument wood,any wind instrument other than the brass instruments
+81545,woodwind_family,(music) the family of woodwind instruments
+81546,woodwork,work made of wood; especially moldings or stairways or furniture
+81547,woodworker woodsman woodman,makes things out of wood
+81548,woodworm,a larva of a woodborer
+81549,woody_plant ligneous_plant,a plant having hard lignified tissues or woody parts especially stems
+81550,woof weft filling pick,the yarn woven across the warp yarn in weaving
+81551,woofer,a loudspeaker that reproduces lower audio frequency sounds
+81552,wool,fiber sheared from animals (such as sheep) and twisted into yarn for weaving
+81553,wool fleece,outer coat of especially sheep and yaks
+81554,wool woolen woollen,a fabric made from the hair of sheep
+81555,wool_grass Scirpus_cyperinus,sedge of eastern North America having numerous clustered woolly spikelets
+81556,wool_oil,any oil used to oil wool before spinning
+81557,wool_stapler,a dealer in wool
+81558,wool_stapler woolsorter,a person who sorts wool into different grades
+81559,woolgathering,an idle indulgence in fantasy
+81560,woolly_adelgid,an insect that feeds on hemlocks; its egg sacs are small fuzzy white balls like artificial snow on a Christmas tree
+81561,woolly_alder_aphid Prociphilus_tessellatus,attacks alders
+81562,woolly_aphid woolly_plant_louse,secretes a waxy substance like a mass of fine curly white cotton or woolly threads
+81563,woolly_apple_aphid American_blight Eriosoma_lanigerum,primarily a bark feeder on aerial parts and roots of apple and other trees
+81564,woolly_bear woolly_bear_caterpillar,caterpillar of numerous moths characterized by a dense coat of woolly hairs; feed on plants and some are destructive pests
+81565,woolly_bear_moth,larva of moth of the family Arctiidae
+81566,woolly_daisy dwarf_daisy Antheropeas_wallacei Eriophyllum_wallacei,tiny grey woolly tufted annual with small golden-yellow flower heads; southeastern California to northwestern Arizona and southwestern Utah; sometimes placed in genus Eriophyllum
+81567,woolly_indris Avahi_laniger,nocturnal indris with thick grey-brown fur and a long tail
+81568,woolly_mammoth northern_mammoth Mammuthus_primigenius,very hairy mammoth common in colder portions of the northern hemisphere
+81569,woolly_monkey,large monkeys with dark skin and woolly fur of the Amazon and Orinoco basins
+81570,woolly_rhinoceros Rhinoceros_antiquitatis,extinct thick-haired species of Arctic regions
+81571,woolly_sunflower,any plant of the genus Eriophyllum
+81572,woolly_thistle Cirsium_flodmanii,thistle of western North America having white woolly leaves
+81573,wooly_lip_fern hairy_lip_fern Cheilanthes_lanosa,small North American evergreen fern whose stipes and lower frond surfaces are densely wooly
+81574,wop dago ginzo Guinea greaseball,(ethnic slur) offensive term for a person of Italian descent
+81575,word,a string of bits stored in computer memory; "large computers use words up to 64 bits long"
+81576,word,a verbal command for action; "when I give the word, charge!"
+81577,word,a brief statement; "he didn't say a word about it"
+81578,word,a unit of language that native speakers can identify; "words are the blocks from which sentences are made"; "he hardly said ten words all morning"
+81579,word-painter,a writer of vivid or graphic descriptive power
+81580,word_division hyphenation,division of a word especially at the end of a line on a page
+81581,word_finder wordfinder,a thesaurus organized to help you find the word you want but cannot think of
+81582,word_game,any game involving the formation or alteration or discovery of words
+81583,word_meaning word_sense acceptation,the accepted meaning of a word
+81584,word_order,the order of words in a text
+81585,word_picture word-painting delineation depiction picture characterization characterisation,a graphic or vivid verbal description; "too often the narrative was interrupted by long word pictures"; "the author gives a depressing picture of life in Poland"; "the pamphlet contained brief characterizations of famous Vermonters"
+81586,word_play,playing on words or speech sounds
+81587,word_processing,rapid and efficient processing (storage and printing) of linguistic data for composition and editing
+81588,word_processor word_processing_system,an application that provides the user with tools needed to write and edit and format text and to send it to a printer
+81589,word_salad,jumble of incoherent speech as sometimes heard in schizophrenia
+81590,word_square acrostic,a puzzle where you fill a square grid with words reading the same down as across
+81591,word_stress word_accent,the distribution of stresses within a polysyllabic word
+81592,wordbook,a reference book containing words (usually with their meanings)
+81593,wording diction phrasing phraseology choice_of_words verbiage,the manner in which something is expressed in words; "use concise military verbiage"- G.S.Patton
+81594,wordmonger,a writer who uses language carelessly or pretentiously with little regard for meaning
+81595,wordnet,any of the machine-readable lexical databases modeled after the Princeton WordNet
+81596,words,the words that are spoken; "I listened to his words very closely"
+81597,words,language that is spoken or written; "he has a gift for words"; "she put her thoughts into words"
+81598,words_per_minute wpm,the rate at which words are produced (as in speaking or typing)
+81599,wordsmith,a fluent and prolific writer
+81600,work,(physics) a manifestation of energy; the transfer of energy from one physical system to another expressed as the product of a force and the distance through which it moves a body in the direction of that force; "work equals force times distance"
+81601,work,activity directed toward making or doing something; "she checked several points needing further work"
+81602,work piece_of_work,a product produced or accomplished through the effort or activity or agency of a person or thing; "it is not regarded as one of his more memorable works"; "the symphony was hailed as an ingenious work"; "he was indebted to the pioneering work of John Dewey"; "the work of an active imagination"; "erosion is the work of wind or water over time"
+81603,work-clothing work-clothes work_clothes work_clothing,clothing worn for doing manual labor
+81604,work-in,occasion when workers continue to work as a protest against e.g. proposed dismissal or closure of the factory
+81605,work-shirt,heavy-duty shirts worn for manual or physical work
+81606,work-study_program,an educational plan in which students alternate between paid employment and formal study
+81607,work_animal,an animal trained for and used for heavy labor
+81608,work_camp prison_camp prison_farm,a camp for trustworthy prisoners employed in government projects
+81609,work_flow workflow,progress (or rate of progress) in work being done
+81610,work_force workforce manpower hands men,the force of workers available
+81611,work_in_progress,a piece of work that is not yet finished
+81612,work_of_art,art that is a product of one of the fine arts (especially a painting or sculpture of artistic merit)
+81613,work_song,a usually rhythmical song to accompany repetitious work
+81614,work_surface,a horizontal surface for supporting objects used in working or playing games
+81615,work_time,a time period when you are required to work
+81616,work_to_rule,a job action in which workers cause a slowdown by doing only the minimum amount required by the rules of the workplace
+81617,work_unit heat_unit energy_unit,a unit of measurement for work
+81618,workaholic,person with a compulsive need to work
+81619,workaholism,compulsiveness about working
+81620,workbasket workbox workbag,container for holding implements and materials for work (especially for sewing)
+81621,workbench work_bench bench,a strong worktable for a carpenter or mechanic
+81622,workboard work-board,a horizontal board that provides a supported surface for manual work
+81623,workbook,a student's book or booklet containing problems with spaces for solving them
+81624,workday working_day,the amount of time that a worker must work for an agreed daily wage; "they work an 8-hour day"
+81625,workday working_day work_day,a day on which work is done
+81626,worker,a person who works at a specific occupation; "he is a good worker"
+81627,worker,sterile member of a colony of social insects that forages for food and cares for the larvae
+81628,worker_bee,sterile bee specialized to collect food and maintain the hive
+81629,workhorse,machine that performs dependably under heavy use; "the IBM main frame computers have been the workhorse of the business world"
+81630,workhorse,a horse used for plowing and hauling and other heavy labor
+81631,workhouse,a poorhouse where able-bodied poor are compelled to labor
+81632,workhouse,a county jail that holds prisoners for periods up to 18 months
+81633,working workings,a mine or quarry that is being or has been worked
+81634,working_agreement,an informal agreement to work together
+81635,working_dog,any of several breeds of usually large powerful dogs bred to work as draft animals and guard and guide dogs
+81636,working_girl,a young woman who is employed
+81637,working_group working_party,a group of people working together temporarily until some goal is achieved; "the working group was supposed to report back in two weeks"
+81638,working_memory,memory for intermediate results that must be held during thinking
+81639,working_papers,records kept of activities involved in carrying out a project; "the auditor was required to produce his working papers"
+81640,working_papers work_papers work_permit,a legal document giving information required for employment of certain people in certain countries
+81641,working_principle working_rule,a rule that is adequate to permit work to be done
+81642,workload work_load,work that a person is expected to do in a specified time
+81643,workman workingman working_man working_person,an employee who performs manual or industrial labor
+81644,workmate,a fellow worker
+81645,workmen's_compensation,compensation for death or injury suffered by a worker in the course of his employment
+81646,workpiece,work consisting of a piece of metal being machined
+81647,workplace work,a place where work is done; "he arrived at work early today"
+81648,workroom,room where work is done
+81649,works deeds,performance of moral or religious acts; "salvation by deeds"; "the reward for good works"
+81650,works workings,the internal mechanism of a device
+81651,works_council,(chiefly Brit) a council representing employer and employees of a plant or business to discuss working conditions etc; also: a committee representing the workers elected to negotiate with management about grievances and wages etc
+81652,works_program,a program to provide jobs on public works paid for by government funds
+81653,worksheet,a piece of paper recording work planned or done on a project
+81654,worksheet,a sheet of paper with multiple columns; used by an accountant to assemble figures for financial statements
+81655,workshop,a brief intensive course for a small group; emphasizes problem solving
+81656,workshop shop,small workplace where handcrafts or manufacturing are done
+81657,workspace,space allocated for your work (as in an office)
+81658,workstation,a desktop digital computer that is conventionally considered to be more powerful than a microcomputer
+81659,worktable work_table,a table designed for a particular task
+81660,workwear,heavy-duty clothes for manual or physical work
+81661,workweek week,hours or days of work in a calendar week; "they worked a 40-hour week"
+81662,world,a part of the earth that can be considered separately; "the outdoor world"; "the world of insects"
+81663,world domain,people in general; especially a distinctive group of people with some shared interest; "the Western world"
+81664,world human_race humanity humankind human_beings humans mankind man,all of the living human inhabitants of the earth; "all the world loves a lover"; "she always used `humankind' because `mankind' seemed to slight the women"
+81665,world reality,all of your experiences that determine how things appear to you; "his world was shattered"; "we live in different worlds"; "for them demons were as much a part of reality as trees were"
+81666,world-weariness Weltschmerz,sadness on thinking about the evils of the world
+81667,world_affairs international_affairs,affairs between nations; "you can't really keep up with world affairs by watching television"
+81668,world_council,a council with representatives from different nations
+81669,world_organization world_organisation international_organization international_organisation global_organization,an international alliance involving many different countries
+81670,world_power major_power great_power power superpower,a state powerful enough to influence events throughout the world
+81671,world_premiere,(music) the first public performance (as of a dramatic or musical work) anywhere in the world
+81672,world_record,the best record in the whole world
+81673,world_war,a war in which the major nations of the world are involved
+81674,worldliness,concern with worldly affairs to the neglect of spiritual needs; "he disliked the worldliness of many bishops around him"
+81675,worldling,a person absorbed by the concerns and interests and pleasures of the present world
+81676,worldly_concern earthly_concern world earth,the concerns of this life as distinguished from heaven and the afterlife; "they consider the church to be independent of the world"
+81677,worldly_possession worldly_good,a commodity or good associated with the earthly, rather than the spiritual, existence of human beings
+81678,worldly_possessions worldly_belongings worldly_goods,all the property that someone possesses; "he left all his worldly possessions to his daughter"
+81679,worm,a software program capable of reproducing itself that can spread from one computer to the next over a network; "worms take advantage of automatic file sending and receiving features found on many computers"
+81680,worm,screw thread on a gear with the teeth of a worm wheel or rack
+81681,worm,any of numerous relatively small elongated soft-bodied animals especially of the phyla Annelida and Chaetognatha and Nematoda and Nemertea and Platyhelminthes; also many insect larvae
+81682,worm louse insect dirt_ball,a person who has a nasty or unethical character undeserving of respect
+81683,worm_family,a family of worms
+81684,worm_fence snake_fence snake-rail_fence Virginia_fence,rail fence consisting of a zigzag of interlocking rails
+81685,worm_fish,poorly known family of small tropical shallow-water fishes related to gobies
+81686,worm_gear,gear consisting of a shaft with screw thread (the worm) that meshes with a toothed wheel (the worm wheel); changes the direction of the axis of rotary motion
+81687,worm_genus,a genus of worms
+81688,worm_lizard,a lizard of the genus Amphisbaena; harmless wormlike limbless lizard of warm or tropical regions having concealed eyes and ears and a short blunt tail
+81689,worm_wheel,gear with the thread of a worm
+81690,wormcast,cylindrical mass of earth voided by a burrowing earthworm or lugworm
+81691,wormcast,fossil trail of a worm
+81692,wormhole,hole made by a burrowing worm
+81693,wormseed_mustard Erysimum_cheiranthoides,slender yellow-flowered European mustard often troublesome as a weed; formerly used as an anthelmintic
+81694,wormwood,any of several low composite herbs of the genera Artemisia or Seriphidium
+81695,wormwood_oil absinthe_oil,a dark bitter oil obtained from wormwood leaves; flavors absinthe liqueurs
+81696,wormwood_sage prairie_sagewort Artemisia_frigida,silky-leaved aromatic perennial of dry northern parts of the northern hemisphere; has tawny florets
+81697,worn_spot fret,a spot that has been worn away by abrasion or erosion
+81698,worrier fuss-budget fusspot worrywart,thinks about unfortunate things that might happen
+81699,worry trouble,a strong feeling of anxiety; "his worry over the prospect of being fired"; "it is not work but worry that kills"; "he wanted to die and end his troubles"
+81700,worrying,the act of moving something by repeated tugs or pushes; "vigorous worrying finally loosened the saw"
+81701,worse,something inferior in quality or condition or effect; "for better or for worse"; "accused of cheating and lying and worse"
+81702,worsening,changing something with the result that it becomes worse
+81703,worship,the activity of worshipping
+81704,worship adoration,a feeling of profound love and admiration
+81705,worshiper worshipper,someone who admires too much to recognize faults
+81706,worst,the least favorable outcome; "the worst that could happen"
+81707,worst,the greatest damage or wickedness of which one is capable; "the invaders did their worst"; "so pure of heart that his worst is another man's best"
+81708,worst,the weakest effort or poorest achievement one is capable of; "it was the worst he had ever done on a test"
+81709,worsted,a woolen fabric with a hard textured surface and no nap; woven of worsted yarns "he wore a worsted suit"
+81710,worsted worsted_yarn,a tightly twisted woolen yarn spun from long-staple wool
+81711,wort,usually used in combination: `liverwort'; `milkwort'; `whorlywort'
+81712,wort,unfermented or fermenting malt
+81713,worth,an indefinite quantity of something having a specified value; "10 dollars worth of gasoline"
+81714,worth,the quality that renders something desirable or valuable or useful
+81715,worthiness,the quality or state of having merit or value
+81716,worthlessness,the quality of being without practical use
+81717,worthlessness ineptitude,having no qualities that would render it valuable or useful; "the drill sergeant's intent was to convince all the recruits of their worthlessness"
+81718,worthwhileness,value sufficient to repay time or effort spent
+81719,worthy,an important, honorable person (word is often used humorously); "he told his story to some conservative worthies"; "local worthies rarely challenged the chief constable"
+81720,wound,a figurative injury (to your feelings or pride); "he feared that mentioning it might reopen the wound"; "deep in her breast lives the silent wound"; "The right reader of a good poem can tell the moment it strikes him that he has taken an immortal wound--that he will never get over it"--Robert Frost
+81721,wound injury combat_injury,a casualty to military personnel resulting from combat
+81722,wound lesion,an injury to living tissue (especially an injury involving a cut or break in the skin)
+81723,wound wounding,the act of inflicting a wound
+81724,wound_tumor_virus WTV,a tumor virus transmitted by leafhoppers
+81725,wounded maimed,people who are wounded; "they had to leave the wounded where they fell"
+81726,wove_paper,writing paper having a very faint mesh pattern
+81727,wrack,dried seaweed especially that cast ashore
+81728,wrack rack,the destruction or collapse of something; "wrack and ruin"
+81729,wrangler,someone who argues noisily or angrily
+81730,wrap,a sandwich in which the filling is rolled up in a soft tortilla
+81731,wrap wrapper,cloak that is folded or wrapped around a person
+81732,wraparound,a garment (as a dress or coat) with a full length opening; adjusts to the body by wrapping around
+81733,wrapping wrap wrapper,the covering (usually paper or cellophane) in which something is wrapped
+81734,wrapping_paper,a tough paper used for wrapping
+81735,wrasse,chiefly tropical marine fishes with fleshy lips and powerful teeth; usually brightly colored
+81736,wrath,intense anger (usually on an epic scale)
+81737,wrath anger ire ira,belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)
+81738,wreath garland coronal chaplet lei,flower arrangement consisting of a circular band of foliage or flowers for ornamental purposes
+81739,wreck,something or someone that has suffered ruin or dilapidation; "the house was a wreck when they bought it"; "thanks to that quack I am a human wreck"
+81740,wreck,a ship that has been destroyed at sea
+81741,wreckage,the remaining parts of something that has been wrecked; "they searched the wreckage for signs of survivors"
+81742,wrecker,someone who demolishes or dismantles buildings as a job
+81743,wren jenny_wren,any of several small active brown birds of the northern hemisphere with short upright tails; they feed on insects
+81744,wren-tit Chamaea_fasciata,small brown bird of California resembling a wren
+81745,wren_warbler,small Asiatic and African bird; constructs nests like those of tailorbirds
+81746,wrench spanner,a hand tool that is used to hold or twist a nut or bolt
+81747,wrench twist pull,a sharp strain on muscles or ligaments; "the wrench to his knee occurred as he fell"; "he was sidelined with a hamstring pull"
+81748,wrester,someone who obtains something by pulling it violently with twisting movements
+81749,wrestle wrestling grapple grappling hand-to-hand_struggle,the act of engaging in close hand-to-hand combat; "they had a fierce wrestle"; "we watched his grappling and wrestling with the bully"
+81750,wrestler grappler matman,combatant who tries to throw opponent to the ground
+81751,wrestling rassling grappling,the sport of hand-to-hand struggle between unarmed contestants who try to throw each other down
+81752,wrestling_hold,a hold used in the sport of wrestling
+81753,wrestling_mat,a mat on which wrestling matches are conducted
+81754,wrestling_match,a match between wrestlers
+81755,wrestling_ring,a square ring in which wrestlers compete
+81756,wretch,performs some wicked deed
+81757,wretchedness,the character of being uncomfortable and unpleasant; "the wretchedness for which these prisons became known"; "the grey wretchedness of the rain"
+81758,wretchedness,the quality of being poor and inferior and sorry; "he has compiled a record second to none in its wretchedness"
+81759,wright,someone who makes or repairs something (usually used in combination)
+81760,wringer,a clothes dryer consisting of two rollers between which the wet clothes are squeezed
+81761,wrinkle,a minor difficulty; "they finally have the wrinkles pretty well ironed out"
+81762,wrinkle,a clever method of doing something (especially something new and different)
+81763,wrinkle furrow crease crinkle seam line,a slight depression or fold in the smoothness of a surface; "his face has many lines"; "ironing gets rid of most wrinkles"
+81764,wrist carpus wrist_joint radiocarpal_joint articulatio_radiocarpea,a joint between the distal end of the radius and the proximal row of carpal bones
+81765,wrist_pad,protective garment consisting of a pad worn by football players
+81766,wrist_pin gudgeon_pin,pin joining a piston to a connecting rod
+81767,wristband,band consisting of a part of a sleeve that covers the wrist
+81768,wristlet wrist_band,a band or bracelet worn around the wrist
+81769,wristwatch wrist_watch,a watch that is worn strapped to the wrist
+81770,writ judicial_writ,(law) a legal document issued by a court or judicial officer
+81771,writ_of_detinue,a writ ordering the release of goods that have been unlawfully detained
+81772,writ_of_election,a writ ordering the holding of an election
+81773,writ_of_error,a judicial writ from an appellate court ordering the court of record to produce the records of trial
+81774,writ_of_prohibition,a judicial writ from a higher court ordering a lower court not to exercise jurisdiction in a particular case
+81775,writ_of_right,a writ ordering that land be restored to its rightful owner
+81776,write-in,a vote cast by writing in the name of a candidate who is not listed on the ballot
+81777,write-in_candidate write-in,a candidate for public office whose name does not appear on the ballot and so must be written on the ballot by the voters
+81778,write-off,the act of cancelling from an account a bad debt or a worthless asset
+81779,write-off write-down,(accounting) reduction in the book value of an asset
+81780,writer,a person who is able to write and has written something
+81781,writer author,writes (books or stories or articles or the like) professionally (for pay)
+81782,writer's_block,an inability to write; "he had writer's block; the words wouldn't come"
+81783,writer's_cramp graphospasm,muscular spasms of thumb and forefinger while writing with a pen or pencil
+81784,writer's_name author's_name,the name that appears on the by-line to identify the author of a work
+81785,writing,(usually plural) the collected work of an author; "the idea occurs with increasing frequency in Hemingway's writings"
+81786,writing,letters or symbols that are written or imprinted on a surface to represent the sounds or words of a language; "he turned the paper over so the writing wouldn't show"; "the doctor's writing was illegible"
+81787,writing authorship composition penning,the act of creating written works; "writing was a form of therapy for him"; "it was a matter of disputed authorship"
+81788,writing committal_to_writing,the activity of putting something in written form; "she did the thinking while he did the writing"
+81789,writing written_material piece_of_writing,the work of a writer; anything expressed in letters of the alphabet (especially when considered from the point of view of style and effect); "the writing in her novels is excellent"; "that editorial was a fine piece of writing"
+81790,writing_arm,an arm of a tablet-armed chair; widened to provide a writing surface
+81791,writing_board,work surface consisting of a wide lightweight board that can be placed across the lap and used for writing
+81792,writing_desk,a portable case containing writing materials and having a writing surface
+81793,writing_desk,a desk for writing (usually with a sloping top)
+81794,writing_implement,an implement that is used to write
+81795,writing_ink,any permanent or washable ink used with pens
+81796,writing_paper,paper material made into thin sheets that are sized to take ink; used for writing correspondence and manuscripts
+81797,writing_style literary_genre genre,a style of expressing yourself in writing
+81798,written_agreement,a legal document summarizing the agreement between parties
+81799,written_assignment writing_assignment,an assignment to write something
+81800,written_communication written_language black_and_white,communication by means of written symbols (either printed or handwritten)
+81801,written_record written_account,a written document preserving knowledge of facts or events
+81802,written_symbol printed_symbol,a written or printed symbol
+81803,written_word,the written form of a word; "while the spoken word stands for something, the written word stands for something that stands for something"; "a craftsman of the written word"
+81804,wrong legal_injury damage,any harm or injury resulting from a violation of a legal right
+81805,wrong wrongfulness,that which is contrary to the principles of justice or law; "he feels that you are in the wrong"
+81806,wrong-site_surgery,a surgical operation performed on the wrong part of the body
+81807,wrongdoer offender,a person who transgresses moral or civil law
+81808,wrongdoing wrongful_conduct misconduct actus_reus,activity that transgresses moral or civil law; "he denied any wrongdoing"
+81809,wrongful_death,a death that results from a wrongful act or from negligence; a death that can serve as the basis for a civil action for damages on behalf of the dead person's family or heirs
+81810,wrongness,contrary to conscience or morality
+81811,wrought_iron,iron having a low carbon content that is tough and malleable and so can be forged and welded
+81812,wrymouth ghostfish Cryptacanthodes_maculatus,eellike Atlantic bottom fish with large almost vertical mouth
+81813,wryneck,Old World woodpecker with a peculiar habit of twisting the neck
+81814,wulfenite,a yellow to orange or brown mineral used as a molybdenum ore
+81815,wurtzite,a brownish-black mineral consisting of zinc sulfide
+81816,wyvern wivern,a fire-breathing dragon used in medieval heraldry; had the head of a dragon and the tail of a snake and a body with wings and two legs
+81817,x-axis,the horizontal axis in a plane coordinate system
+81818,xanthate,a salt or ester of xanthic acid
+81819,xanthelasma,xanthoma of the eyelids; occurs chiefly in the elderly
+81820,xanthic_acid,any of a class of unstable organic acids containing sulphur
+81821,xanthine,crystalline oxidation product of the metabolism of nucleoproteins; precursor of uric acid; found in many organs and in urine
+81822,xanthoma,a skin problem marked by the development (on the eyelids and neck and back) of irregular yellow nodules; sometimes attributable to disturbances of cholesterol metabolism
+81823,xanthoma_disseminatum,rare chronic xanthoma of adults in which orange or brownish papules develop on many surfaces of the body
+81824,xanthomatosis xanthoma_multiplex cholesterosis_cutis lipid_granulomatosis lipoid_granulomatosis,widespread xanthomas (especially on elbows and knees); often associated with a disorder of lipid metabolism
+81825,xanthomonad,bacteria producing yellow non-water-soluble pigments; some pathogenic for plants
+81826,xanthophyll xanthophyl lutein,yellow carotenoid pigments in plants and animal fats and egg yolks
+81827,xanthopsia,visual defect in which objects appear to have a yellowish hue; sometimes occurs in cases of jaundice
+81828,xanthosis,an abnormal yellow discoloration of the skin
+81829,xenolith,(geology) a piece of rock of different origin from the igneous rock in which it is embedded
+81830,xenon Xe atomic_number_54,a colorless odorless inert gaseous element occurring in the earth's atmosphere in trace amounts
+81831,xenophobia,a fear of foreigners or strangers
+81832,xenotime,a brown-to-yellow mineral that is a phosphate of yttrium in crystalline form
+81833,xenotransplant xenotransplantation,a surgical procedure in which tissue or whole organs are transfered from one species to another species
+81834,xeranthemum,any plant of the genus Xeranthemum native to southern Europe having chaffy or silvery flower heads with purplish tubular flowers
+81835,xeroderma xerodermia,a mild form of ichthyosis characterized by abnormal dryness and roughness of the skin
+81836,xeroderma_pigmentosum,a rare genetic condition characterized by an eruption of exposed skin occurring in childhood and photosensitivity with severe sunburn; inherited as a recessive autosomal trait in which DNA repair processes are defective so they are more likely to chromosome breaks and cancers when exposed to ultraviolet light
+81837,xerographic_printer,a page printer that uses the xerographic process
+81838,xerography,forming an image by the action of light on a specially coated charged plate; the latent image is developed with powders that adhere only to electrically charged areas; "edge enhancement is intrinsic in xerography"
+81839,xerophthalmia xerophthalmus xeroma conjunctivitis_arida,abnormal dryness of the conjunctiva and cornea of the eyes; may be due to a systemic deficiency of vitamin A
+81840,xeroradiography,radiography using X-rays and xerographic (rather than roentgenographic) techniques
+81841,xerostomia dry_mouth,abnormal dryness of the mouth resulting from decreased secretion of saliva
+81842,xerox xerox_copy,a copy made by a xerographic copier
+81843,xi,the 14th letter of the Greek alphabet
+81844,xiphoid_process,smallest of the three parts of the breastbone; articulates with the corpus sternum and the seventh rib
+81845,xylem,the woody part of plants: the supporting and water-conducting tissue, consisting primarily of tracheids and vessels
+81846,xylene xylol,a colorless flammable volatile liquid hydrocarbon used as a solvent
+81847,xylophonist,someone who plays a xylophone
+81848,xylosma Xylosma_congestum,shrub or small tree grown as an ornamental in mild climates for its neat evergreen foliage and fragrant late flowers; native of China
+81849,y-axis,the vertical axis in a plane coordinate system
+81850,yacca yacca_podocarp Podocarpus_coriaceus,West Indian evergreen with medium to long leaves
+81851,yacht racing_yacht,an expensive vessel propelled by sail or power and used for cruising or racing
+81852,yacht_chair,a light folding armchair for outdoor use
+81853,yacht_club boat_club,club that promotes and supports yachting and boating
+81854,yachtsman yachtswoman,a person who owns or sails a yacht
+81855,yagi Yagi_aerial,a sharply directional antenna
+81856,yak Bos_grunniens,large long-haired wild ox of Tibet often domesticated
+81857,yak yack yakety-yak chatter cackle,noisy talk
+81858,yak's_milk,the milk of a yak
+81859,yak_butter,butter made from yaks' milk
+81860,yakuza,a Japanese gangster
+81861,yakuza,organized crime in Japan; an alliance of criminal organizations and illegal enterprises
+81862,yam,edible tuber of any of several yams
+81863,yam,sweet potato with deep orange flesh that remains moist when baked
+81864,yam,edible tuberous root of various yam plants of the genus Dioscorea grown in the tropics world-wide for food
+81865,yam yam_plant,any of a number of tropical vines of the genus Dioscorea many having edible tuberous roots
+81866,yam_bean Pachyrhizus_erosus,Central American twining plant with edible roots and pods; large tubers are eaten raw or cooked especially when young and young pods must be thoroughly cooked; pods and seeds also yield rotenone and oils
+81867,yam_bean potato_bean Pachyrhizus_tuberosus,twining plant of Amazon basin having large edible roots
+81868,yang,the bright positive masculine principle in Chinese dualistic cosmology; "yin and yang together produce everything that comes into existence"
+81869,yanker jerker,someone who gives a strong sudden pull
+81870,yard,a tract of land where logs are accumulated
+81871,yard,a tract of land enclosed for particular activities (sometimes paved and usually associated with buildings); "they opened a repair yard on the edge of town"
+81872,yard,a long horizontal spar tapered at the end and used to support and spread a square sail or lateen
+81873,yard,an enclosure for animals (as chicken or livestock)
+81874,yard grounds curtilage,the enclosed land around a house or other building; "it was a small house with almost no yard"
+81875,yard pace,a unit of length equal to 3 feet; defined as 91.44 centimeters; originally taken to be the average length of a stride
+81876,yard railway_yard railyard,an area having a network of railway tracks and sidings for storage and maintenance of cars and engines
+81877,yard_bird yardbird,a military recruit who is assigned menial tasks
+81878,yard_goods piece_goods,merchandise in the form of fabrics sold by the yard
+81879,yard_line,in football; line parallel to the goal lines indicating position on the field
+81880,yard_marker,(football) a marker indicating the yard line
+81881,yardage,distance measured in the aggregate number of yards; "what is the yardage of this golf course?"
+81882,yardarm,either end of the yard of a square-rigged ship
+81883,yarder,(used only in combinations) the height or length of something in yards; "the golfer hit a 300-yarder to the green"
+81884,yarder yard_donkey,a winch (or system of winches) powered by an engine and used to haul logs from a stump to a landing or to a skid road
+81885,yardgrass yard_grass wire_grass goose_grass Eleusine_indica,coarse annual grass having fingerlike spikes of flowers; native to Old World tropics; a naturalized weed elsewhere
+81886,yardie,member of an international gang of Jamaican criminals who sell drugs and violence; "A much publicized raid on a yardie stronghold had first been simulated at Riot City"
+81887,yardman,worker in a railway yard
+81888,yardman,a laborer hired to do outdoor work (such as mowing lawns)
+81889,yardmaster trainmaster train_dispatcher,a railroad employer who is in charge of a railway yard
+81890,yardstick,a measure or standard used for comparison; "on what kind of yardstick is he basing his judgment?"
+81891,yardstick yard_measure,a ruler or tape that is three feet long
+81892,yarmulke yarmulka yarmelke,a skullcap worn by religious Jews (especially at prayer)
+81893,yarrow milfoil Achillea_millefolium,ubiquitous strong-scented mat-forming Eurasian herb of wasteland, hedgerow or pasture having narrow serrate leaves and small usually white florets; widely naturalized in North America
+81894,yashmak yashmac,the face veil worn by Muslim women
+81895,yataghan,a long Turkish knife with a curved blade having a single edge
+81896,yaupon_holly,an evergreen shrub
+81897,yautia tannia spoonflower malanga Xanthosoma_sagittifolium Xanthosoma_atrovirens,tropical American aroid having edible tubers that are cooked and eaten like yams or potatoes
+81898,yaw swerve,an erratic deflection from an intended course
+81899,yawl,a ship's small boat (usually rowed by 4 or 6 oars)
+81900,yawl dandy,a sailing vessel with two masts; a small mizzen is aft of the rudderpost
+81901,yawn yawning oscitance oscitancy,an involuntary intake of breath through a wide open mouth; usually triggered by fatigue or boredom; "he could not suppress a yawn"; "the yawning in the audience told him it was time to stop"; "he apologized for his oscitancy"
+81902,yawner,a person who yawns
+81903,yaws frambesia framboesia,an infectious tropical disease resembling syphilis in its early stages; marked by red skin eruptions and ulcerating lesions
+81904,yea,an affirmative; "The yeas have it"
+81905,year,a period of time occupying a regular part of a calendar year that is used for some particular activity; "a school year"
+81906,year,the period of time that it takes for a planet (as, e.g., Earth or Mars) to make a complete revolution around the sun; "a Martian year takes 687 of our days"
+81907,year twelvemonth yr,a period of time containing 365 (or 366) days; "she is 4 years old"; "in the year 1920"
+81908,year-end,the end of a calendar year; "he had to unload the merchandise before the year-end"
+81909,year_dot,as long ago as anyone can remember; "he has been a conductor since the year dot"
+81910,year_of_grace,any year of the Christian era
+81911,yearbook,a book published annually by the graduating class of a high school or college usually containing photographs of faculty and graduating students
+81912,yearling,a racehorse considered one year old until the second Jan. 1 following its birth
+81913,yearling,an animal in its second year
+81914,yeast,any of various single-celled fungi that reproduce asexually by budding or division
+81915,yeast barm,a commercial leavening agent containing yeast cells; used to raise the dough in making bread and for fermenting beer or whiskey
+81916,yeast_cake,small cake of compressed moist yeast
+81917,yelling shouting,uttering a loud inarticulate cry as of pain or excitement
+81918,yellow yellowness,yellow color or pigment; the chromatic color resembling the hue of sunflowers or ripe lemons
+81919,yellow-bellied_sapsucker Sphyrapicus_varius,eastern North American sapsucker having a pale yellow abdomen
+81920,yellow-blue_dichromacy yellow-blue_color_blindness,confusion of yellow and blue
+81921,yellow-breasted_bunting Emberiza_aureola,common in Russia and Siberia
+81922,yellow-breasted_chat Icteria_virens,American warbler noted for imitating songs of other birds
+81923,yellow-crowned_night_heron Nyctanassa_violacea,North American night heron
+81924,yellow-dog_contract,a labor contract (now illegal) whereby the employee agrees not to join a trade union
+81925,yellow-eyed_grass,any of several rushlike plants, especially of the pine barrens of southern United States
+81926,yellow-fever_mosquito Aedes_aegypti,mosquito that transmits yellow fever and dengue
+81927,yellow-green_algae,any alga of the division Chrysophyta with its chlorophyll masked by yellow pigment
+81928,yellow-leaf_sickle_pine Falcatifolium_taxoides,a rain forest tree or shrub of New Caledonia having a conic crown and pale green sickle-shaped leaves; host species for the rare parasite yew
+81929,yellow-shafted_flicker Colaptes_auratus yellowhammer,large flicker of eastern North America with a red neck and yellow undersurface to wings and tail
+81930,yellow-throated_marten Charronia_flavigula,large yellow and black marten of southern China and Burma
+81931,yellow_adder's_tongue trout_lily amberbell Erythronium_americanum,eastern North American dogtooth having solitary yellow flowers marked with brown or purple and spotted interiors
+81932,yellow_avens Geum_alleppicum_strictum Geum_strictum,erect subshrub with deep yellow flowers; Europe and Asia and North America
+81933,yellow_avens Geum_macrophyllum,hairy yellow-flowered plant of eastern Asia and North America
+81934,yellow_bass Morone_interrupta,North American freshwater bass resembling the larger marine striped bass
+81935,yellow_bedstraw yellow_cleavers Our_Lady's_bedstraw Galium_verum,common yellow-flowered perennial bedstraw; North America and Europe and Asia
+81936,yellow_bells California_yellow_bells whispering_bells Emmanthe_penduliflora,viscid herb of arid or desert habitats of southwestern United States having pendulous yellow flowers
+81937,yellow_bile choler,a humor that was once believed to be secreted by the liver and to cause irritability and anger
+81938,yellow_birch Betula_alleghaniensis Betula_leutea,tree of eastern North America with thin lustrous yellow or grey bark
+81939,yellow_bristlegrass yellow_bristle_grass yellow_foxtail glaucous_bristlegrass Setaria_glauca,common weedy and bristly grass found in nearly all temperate areas
+81940,yellow_chamomile golden_marguerite dyers'_chamomile Anthemis_tinctoria,Eurasian perennial herb with hairy divided leaves and yellow flowers; naturalized in North America
+81941,yellow_clintonia heal_all Clintonia_borealis,common woodland herb of temperate North America having yellow nodding flowers and small round blue fruits
+81942,yellow_colicroot Aletris_aurea,colicroot with yellow-bracted racemose flowers; smaller than Aletris farinosa; southeastern United States
+81943,yellow_cypress yellow_cedar Nootka_cypress Alaska_cedar Chamaecyparis_nootkatensis,tall evergreen of the Pacific coast of North America often cultivated for ornament
+81944,yellow_dwarf,any of several virus diseases of plants characterized by stunting and yellowing of the leaves
+81945,yellow_dwarf_of_potato potato_yellow_dwarf,the yellow dwarf disease of potato plants
+81946,yellow_foxglove straw_foxglove Digitalis_lutea,European yellow-flowered foxglove
+81947,yellow_giant_hyssop Agastache_nepetoides,erect perennial with stout stems and yellow-green flowers; southern Canada and southeastern United States
+81948,yellow_globe_lily golden_fairy_lantern Calochortus_amabilis,globe lily having open branched clusters of clear yellow egg-shaped flowers; northern California
+81949,yellow_goatfish Mulloidichthys_martinicus,schooling goatfish; greyish with yellow stripe
+81950,yellow_green yellowish_green chartreuse Paris_green pea_green,a shade of green tinged with yellow
+81951,yellow_henbane Physalis_viscosa,found on sea beaches from Virginia to South America having greenish-yellow flowers and orange or yellow berries
+81952,yellow_honeysuckle Lonicera_dioica,twining deciduous shrub with clusters of purple-tinged yellow-green flowers; northeastern America
+81953,yellow_honeysuckle Lonicera_flava,climbing deciduous shrub with fragrant yellow (later orange) flowers in terminal whorls; southeastern United States
+81954,yellow_iris yellow_flag yellow_water_flag Iris_pseudacorus,common yellow-flowered iris of Europe and North Africa, naturalized in United States and often cultivated
+81955,yellow_jack,yellow flag hoist on a ship in quarantine
+81956,yellow_jack Caranx_bartholomaei,fish of western Atlantic and Gulf of Mexico
+81957,yellow_jack yellow_fever black_vomit,caused by a flavivirus transmitted by a mosquito
+81958,yellow_jacket yellow_hornet Vespula_maculifrons,small yellow-marked social wasp commonly nesting in the ground
+81959,yellow_jasmine yellow_jessamine Carolina_jasmine evening_trumpet_flower Gelsemium_sempervirens,poisonous woody evergreen vine of southeastern United States having fragrant yellow funnel-shaped flowers
+81960,yellow_journalism tabloid tab,sensationalist journalism
+81961,yellow_lady's_slipper yellow_lady-slipper Cypripedium_calceolus Cypripedium_parviflorum,maroon to purple-brown orchid with yellow lip; Europe, North America and Japan
+81962,yellow_light,the signal to proceed with caution
+81963,yellow_loosestrife garden_loosestrife Lysimachia_vulgaris,frequently considered a weed; Europe and Asia
+81964,yellow_lupine Lupinus_luteus,yellow-flowered European lupine cultivated for forage
+81965,yellow_mariposa_tulip Calochortus_luteus,mariposa having clusters of a few large deep yellow bell-shaped flowers atop slender stems; California coastal ranges
+81966,yellow_marrow yellow_bone_marrow,bone marrow that is yellow with fat; found at the ends of long bones in adults
+81967,yellow_mountain_saxifrage Saxifraga_aizoides,tufted evergreen perennial having ciliate leaves and yellow corymbose flowers often spotted orange
+81968,yellow_ocher yellow_ochre,pigment consisting of a limonite mixed with clay and silica
+81969,yellow_oleander Thevetia_peruviana Thevetia_neriifolia,tropical American shrub or small tree having glossy dark green leaves and fragrant saffron yellow to orange or peach- colored flowers; all parts highly poisonous
+81970,yellow_pages,a telephone directory or section of a directory (usually printed on yellow paper) where business products and services are listed alphabetically by field along with classified advertising
+81971,yellow_perch Perca_flavescens,North American perch
+81972,yellow_peril,the threat to Western civilization said to arise from the power of Asiatic peoples
+81973,yellow_pimpernel Lysimachia_nemorum,trailing European evergreen with yellow flowers
+81974,yellow_pine,any of various pines having yellow wood
+81975,yellow_pine,hard yellowish wood of a yellow pine
+81976,yellow_rocket rockcress rocket_cress Barbarea_vulgaris Sisymbrium_barbarea,noxious cress with yellow flowers; sometimes placed in genus Sisymbrium
+81977,yellow_salsify Tragopogon_dubius,European perennial naturalized throughout United States having hollow stems with a few long narrow tapered leaves and each bearing a solitary pale yellow flower
+81978,yellow_sand_verbena Abronia_latifolia,plant having hemispherical heads of yellow trumpet-shaped flowers; found in coastal dunes from California to British Columbia
+81979,yellow_spiny_daisy Haplopappus_spinulosus,slender perennial of western North America having weakly bristly leaves and yellow flower heads
+81980,yellow_spot,any of several fungous or viral diseases characterized by yellow spotting on the leaves
+81981,yellow_spot_fungus Cercospora_kopkei,fungus causing yellow spot (a sugarcane disease in Australia)
+81982,yellow_squash,any of various squash plants grown for their yellow fruits with somewhat elongated necks
+81983,yellow_squash,squash having yellow skin and yellowish flesh and usually elongated neck
+81984,yellow_sweet_clover Melilotus_officinalis,biennial yellow-flowered Eurasian plant having aromatic leaves used as carminative or flavoring agent; widely cultivated especially as green manure or cover crop
+81985,yellow_twining_snapdragon Antirrhinum_filipes,southwestern United States plant with yellow flowers on stems that twist and twine through other vegetation
+81986,yellow_warbler golden_warbler yellowbird Dendroica_petechia,yellow-throated American wood warbler
+81987,yellow_water_lily Nuphar_lutea,a water lily with yellow flowers
+81988,yellowbelly_marmot rockchuck Marmota_flaviventris,heavy-bodied yellowish-brown marmot of rocky areas of western North America
+81989,yellowcake U308,an impure mixture of uranium oxides obtained during the processing of uranium ore
+81990,yellowfin yellowfin_tuna Thunnus_albacares,may reach 400 pounds; worldwide in tropics
+81991,yellowfin_croaker surffish surf_fish Umbrina_roncador,a fish of the Pacific coast of North America
+81992,yellowfin_mojarra Gerres_cinereus,popular panfish from Bermuda and Gulf of Mexico to Brazil
+81993,yellowhammer yellow_bunting Emberiza_citrinella,European bunting the male being bright yellow
+81994,yellowish_brown raw_sienna buff caramel caramel_brown,a medium to dark tan color
+81995,yellowish_pink apricot peach salmon_pink,a shade of pink tinged with yellow
+81996,yellowlegs,either of two North American shorebird with yellow legs
+81997,yellowtail Seriola_dorsalis,game fish of southern California and Mexico having a yellow tail fin
+81998,yellowtail yellowtail_snapper Ocyurus_chrysurus,superior food fish of the tropical Atlantic and Caribbean with broad yellow stripe along the sides and on the tail
+81999,yellowtail_flounder,flesh of American flounder having a yellowish tail
+82000,yellowtail_flounder Limanda_ferruginea,American flounder having a yellowish tail
+82001,yellowthroat,small olive-colored American warblers with yellow breast and throat
+82002,yellowwood,the yellow wood of any of various yellowwood trees
+82003,yellowwood yellowwood_tree,any of various trees having yellowish wood or yielding a yellow extract
+82004,yen,the basic unit of money in Japan; equal to 100 sen
+82005,yenta,(Yiddish) a vulgar shrew; a shallow coarse termagant
+82006,yenta,(Yiddish) a woman who talks too much; a gossip unable to keep a secret; a woman who spreads rumors and scandal
+82007,yeoman,in former times was free and cultivated his own land
+82008,yeoman yeoman_of_the_guard beefeater,officer in the (ceremonial) bodyguard of the British monarch
+82009,yeomanry,class of small freeholders who cultivated their own land
+82010,yeomanry,a British volunteer cavalry force organized in 1761 for home defense later incorporated into the Territorial Army
+82011,yerba_buena Micromeria_chamissonis Micromeria_douglasii Satureja_douglasii,trailing perennial evergreen herb of northwestern United States with small white flowers; used medicinally
+82012,yerba_mansa Anemopsis_californica,stoloniferous herb of southwestern United States and Mexico having a pungent rootstock and small spicate flowers with white bracts suggesting an anemone
+82013,yerba_santa Eriodictyon_californicum,viscid evergreen shrub of western United States with white to deep lilac flowers; the sticky aromatic leaves are used in treating bronchial and pulmonary illnesses
+82014,yes,an affirmative; "I was hoping for a yes"
+82015,yes-no_question,a question that can be answered by yes or no
+82016,yeshiva yeshivah,an academy for the advanced study of Jewish texts (primarily the Talmud)
+82017,yesterday,the recent past; "yesterday's solutions are not good enough"; "we shared many yesterdays"
+82018,yesterday,the day immediately before today; "it was in yesterday's newspapers"
+82019,yew,wood of a yew; especially the durable fine-grained light brown or red wood of the English yew valued for cabinetwork and archery bows
+82020,yew,any of numerous evergreen trees or shrubs having red cup-shaped berries and flattened needlelike leaves
+82021,yield fruit,an amount of a product
+82022,yin,the dark negative feminine principle in Chinese dualistic cosmology; "the interaction of yin and yang maintains the harmony of the universe"
+82023,yip yelp yelping,a sharp high-pitched cry (especially by a dog)
+82024,yips,nervous tension that causes an athlete to fail (especially causes golfers to miss short putts); "to avoid the yips he changed his style of putting"
+82025,ylem,(cosmology) the original matter that (according to the big bang theory) existed before the formation of the chemical elements
+82026,yo-yo,a toy consisting of a spool that is reeled up and down on a string by motions of the hand
+82027,yobibit Yibit,a unit of information equal to 1024 zebibits or 2^80 bits
+82028,yodel,a songlike cry in which the voice fluctuates rapidly between the normal voice and falsetto
+82029,yodeling,singing by changing back and forth between the chest voice and a falsetto
+82030,yodeller,a singer who changes register rapidly (popular is Swiss folk songs)
+82031,yodh,the 10th letter of the Hebrew alphabet
+82032,yoga,discipline aimed at training the consciousness for a state of perfect spiritual insight and tranquility that is achieved through the three paths of actions and knowledge and devotion
+82033,yoga,a system of physical, breathing and meditation exercises practiced to promote control of the body and mind
+82034,yogi,one who practices yoga and has achieved a high level of spiritual insight
+82035,yogurt yoghurt yoghourt,a custard-like food made from curdled milk
+82036,yoke,an oppressive power; "under the yoke of a tyrant"; "they threw off the yoke of domination"
+82037,yoke,a pair of draft animals joined by a yoke; "pulled by a yoke of oxen"
+82038,yoke,support consisting of a wooden frame across the shoulders that enables a person to carry buckets hanging from each end
+82039,yoke,fabric comprising a fitted part at the top of a garment
+82040,yoke,stable gear that joins two draft animals at the neck so they can work together as a team
+82041,yoke coupling,a connection (like a clamp or vise) between two things so they move together
+82042,yokel rube hick yahoo hayseed bumpkin chawbacon,a person who is not very intelligent or interested in culture
+82043,yolk vitellus,nutritive material of an ovum stored for the nutrition of an embryo (especially the yellow mass of a bird or reptile egg)
+82044,yolk_sac,membranous structure enclosing the yolk of eggs in birds, reptiles, marsupials, and some fishes; circulates nutrients to the developing embryo
+82045,yolk_sac vitelline_sac umbilical_vesicle vesicula_umbilicus,membranous structure that functions as the circulatory system in mammalian embryos until the heart becomes functional
+82046,yore,time long past
+82047,yottabit Ybit Yb,a unit of information equal to 1000 zettabits or 10^24 bits
+82048,yottabyte YB,a unit of information equal to 1000 zettabytes or 10^24 bytes
+82049,yottabyte yobibyte YB YiB,a unit of information equal to 1024 zebibytes or 2^80 bytes
+82050,young offspring,any immature animal
+82051,young youth,young people collectively; "rock music appeals to the young"; "youth everywhere rises in revolt"
+82052,young_Turk,a young radical who agitates for reform
+82053,young_bird,a bird that is still young
+82054,young_buck young_man,a teenager or a young adult male
+82055,young_fish,a fish that is young
+82056,young_mammal,any immature mammal
+82057,young_person youth younker spring_chicken,a young person (especially a young man or boy)
+82058,youngness,the opposite of oldness
+82059,youth,the time of life between childhood and maturity
+82060,youth,early maturity; the state of being young or immature or inexperienced
+82061,youth early_days,an early period of development; "during the youth of the project"
+82062,youth youthfulness juvenility,the freshness and vitality characteristic of a young person
+82063,youth_culture,young adults (a generational unit) considered as a cultural class or subculture
+82064,youth_gang,a gang whose members are teenagers
+82065,youth_movement youth_crusade,political or religious or social reform movement or agitation consisting chiefly of young people
+82066,youth_subculture,a minority youth culture whose distinctiveness depended largely on the social class and ethnic background of its members; often characterized by its adoption of a particular music genre
+82067,ytterbium Yb atomic_number_70,a soft silvery metallic element; a rare earth of the lanthanide series; it occurs in gadolinite and monazite and xenotime
+82068,yttrium Y atomic_number_39,a silvery metallic element that is common in rare-earth minerals; used in magnesium and aluminum alloys
+82069,yuan kwai,the basic unit of money in China
+82070,yucca,any of several evergreen plants of the genus Yucca having usually tall stout stems and a terminal cluster of white flowers; warmer regions of North America
+82071,yuppie,a young upwardly mobile professional individual; a well-paid middle-class professional who works in a city and has a luxurious life style
+82072,yurt,a circular domed dwelling that is portable and self-supporting; originally used by nomadic Mongol and Turkic people of central Asia but now used as inexpensive alternative or temporary housing
+82073,z-axis,the third axis in a 3-dimensional coordinate system
+82074,zabaglione sabayon,light foamy custard-like dessert served hot or chilled
+82075,zaire,the basic unit of money in Zaire
+82076,zakat,the fourth pillar of Islam is almsgiving as an act of worship; "the zakat is earmarked for the poor and disabled"
+82077,zamia,any of various cycads of the genus Zamia; among the smallest and most verdant cycads
+82078,zany,a buffoon in one of the old comedies; imitates others for ludicrous effect
+82079,zap,a sudden event that imparts energy or excitement, usually with a dramatic impact; "they gave it another zap of radiation"
+82080,zapper,an electrical device that can injure or kill by means of electric currents; "a bug zapper"
+82081,zarf,an ornamental metal cup-shaped holder for a hot coffee cup
+82082,zayin,the 7th letter of the Hebrew alphabet
+82083,zeal,excessive fervor to do something or accomplish some end; "he had an absolute zeal for litigation"
+82084,zeaxanthin,yellow carotenoid (isomeric with lutein and occurs widely with it) that is the main pigment in yellow Indian corn
+82085,zebibit Zibit,a unit of information equal to 1024 exbibits or 2^70 bits
+82086,zebra,any of several fleet black-and-white striped African equines
+82087,zebra-tailed_lizard gridiron-tailed_lizard Callisaurus_draconoides,swift lizard with long black-banded tail and long legs; of deserts of United States and Mexico
+82088,zebra_finch Poephila_castanotis,small Australian weaverbird with markings like a zebra's
+82089,zebra_mussel Dreissena_polymorpha,inch long mollusk imported accidentally from Europe; clogs utility inlet pipes and feeds on edible freshwater mussels
+82090,zebra_orchid Caladenia_cairnsiana,orchid with reddish linear leaves and panicle of purple-marked pale-yellow flowers with deep red or purple lip; southwestern Australia
+82091,zebrawood,handsomely striped or mottled wood of the zebrawood tree; used especially for cabinetwork
+82092,zebrawood zebrawood_tree,any of various trees or shrubs having mottled or striped wood
+82093,zebu,domesticated ox having a humped back and long horns and a large dewlap; used chiefly as a draft animal in India and east Asia
+82094,zenith,the point above the observer that is directly opposite the nadir on the imaginary sphere against which celestial bodies appear to be projected
+82095,zeolite,any of a family of glassy minerals analogous to feldspar containing hydrated aluminum silicates of calcium or sodium or potassium; formed in cavities in lava flows and in plutonic rocks
+82096,zeppelin Graf_Zeppelin,a large rigid dirigible designed to carry passengers or bombs
+82097,zero,the sight setting that will cause a projectile to hit the center of the target with no wind blowing
+82098,zero 0 nought cipher cypher,a mathematical element that when added to another number yields the same number
+82099,zero zero_point,the point on a scale from which positive or negative numerical quantities can be measured
+82100,zero-coupon_security zero_coupon_security,a security that makes no interest payments but instead is sold at a deep discount from its face value
+82101,zero-sum_game,a game in which the total of all the gains and losses is zero
+82102,zero-tolerance_policy,any policy that allows no exception; "a zero-tolerance policy toward pedophile priests"
+82103,zero_coupon_bond zero-coupon_bond,a bond that is issued at a deep discount from its value at maturity and pays no interest during the life of the bond; the commonest form of zero-coupon security
+82104,zero_hour,the time set for the start of an action or operation
+82105,zero_tolerance,extreme intolerance of antisocial behavior (usually by an uncompromising application of the law); "he urged zero tolerance for priests who abuse children sexually"
+82106,zeroth_law_of_thermodynamics,the law that if two bodies are in thermal equilibrium with a third body then the first two bodies are in thermal equilibrium with each other
+82107,zeta,the 6th letter of the Greek alphabet
+82108,zettabit Zbit Zb,a unit of information equal to 1000 exabits or 10^21 bits
+82109,zettabyte ZB,a unit of information equal to 1000 exabytes or 10^21 bytes
+82110,zettabyte zebibyte ZB ZiB,a unit of information equal to 1024 exbibytes or 2^70 bytes
+82111,zeugma,use of a verb with two or more complements, playing on the verb's polysemy, for humorous effect; "`Mr. Pickwick took his hat and his leave' is an example of zeugma"
+82112,zidovudine Retrovir ZDV AZT,an antiviral drug (trade name Retrovir) used in the treatment of AIDS; adverse side effects include liver damage and suppression of the bone marrow
+82113,ziggurat zikkurat zikurat,a rectangular tiered temple or terraced mound erected by the ancient Assyrians and Babylonians
+82114,zigzag zig zag,an angular shape characterized by sharp turns in alternating directions
+82115,zigzag_goldenrod broad_leaved_goldenrod,a variety of goldenrod
+82116,zill,one of a pair of small metallic cymbals worn on the thumb and middle finger; used in belly dancing in rhythm with the dance
+82117,zinc Zn atomic_number_30,a bluish-white lustrous metallic element; brittle at ordinary temperatures but malleable when heated; used in a wide variety of alloys and in galvanizing iron; it occurs naturally as zinc sulphide in zinc blende
+82118,zinc_blende blende sphalerite,an ore that is the chief source of zinc; consists largely of zinc sulfide in crystalline form
+82119,zinc_cadmium_sulfide,cadmium sulfide containing zinc
+82120,zinc_deficiency,a deficiency caused by inadequate zinc in the diet or by liver disease or cystic fibrosis or other diseases
+82121,zinc_ointment,an ointment containing zinc that is used to treat certain skin diseases
+82122,zinc_oxide flowers_of_zinc philosopher's_wool philosophers'_wool,oxide of zinc; a white powder used as a pigment or in cosmetics or glass or inks and in zinc ointment
+82123,zinc_sulfate zinc_sulphate white_vitriol zinc_vitriol,a colorless water-soluble powder; used as a mordant or to preserve wood or for the electrodeposition of zinc
+82124,zinc_sulfide zinc_sulphide,a yellow to white crystalline fluorescent compound that occurs naturally as sphalerite or wurtzite and is used as a luminous pigment
+82125,zinc_white Chinese_white,a white pigment used in house paints; consists of zinc oxide
+82126,zinfandel,dry fruity red wine from California
+82127,zing,a brief high-pitched buzzing or humming sound; "the zing of the passing bullet"
+82128,zinger,a striking or amusing or caustic remark; "he always greeted me with a new zinger"; "she tried to think of some killer of an argument, a real zinger that would disarm all opposition"
+82129,zinkenite,a steel grey metallic mineral (a sulphide of lead and antimony)
+82130,zinnia old_maid old_maid_flower,any of various plants of the genus Zinnia cultivated for their variously and brightly colored flower heads
+82131,zinnwaldite,a mica containing iron and lithium
+82132,zip_gun,a crude homemade pistol
+82133,zircon zirconium_silicate,a common mineral occurring in small crystals; chief source of zirconium; used as a refractory when opaque and as a gem when transparent
+82134,zirconium Zr atomic_number_40,a lustrous grey strong metallic element resembling titanium; it is used in nuclear reactors as a neutron absorber; it occurs in baddeleyite but is obtained chiefly from zircon
+82135,zirconium_oxide zirconia zirconium_dioxide,a white crystalline oxide; used in refractories and in insulation and abrasives and enamels and glazes
+82136,zither cither zithern,a musical stringed instrument with strings stretched over a flat sounding board; it is laid flat and played with a plectrum and with fingers
+82137,ziti,medium-sized tubular pasta in short pieces
+82138,zizz,a buzzing or whizzing sound; "a nasty zizz in the engine"
+82139,zizz,a nap; "Arthur's taking a short zizz"
+82140,zloty,the basic unit of money in Poland
+82141,zoanthropy,the delusion that you have assumed the form of an animal
+82142,zodiac,a belt-shaped region in the heavens on either side to the ecliptic; divided into 12 constellations or signs for astrological purposes
+82143,zodiac,(astrology) a circular diagram representing the 12 zodiacal constellations and showing their signs
+82144,zodiacal_light,a luminous tract in the sky; a reflection of sunlight from cosmic dust in the plane of the ecliptic; visible just before sunrise and just after sunset
+82145,zombi zombie living_dead,a dead body that has been brought back to life by a supernatural force
+82146,zombi zombie snake_god,a god of voodoo cults of African origin worshipped especially in West Indies
+82147,zombi zombie zombi_spirit zombie_spirit,(voodooism) a spirit or supernatural force that reanimates a dead body
+82148,zombie zombi,several kinds of rum with fruit juice and usually apricot liqueur
+82149,zona_pellucida,thick membrane around the mammalian ovum; can be penetrated by one sperm in the fertilization process; usually remains around the fertilized egg until it is implanted in the wall of the uterus
+82150,zone,a locally circumscribed place characterized by some distinctive features
+82151,zone,an area or region distinguished from adjacent parts by a distinctive feature or characteristic
+82152,zone geographical_zone,any of the regions of the surface of the Earth loosely divided according to latitude or longitude
+82153,zone zona,(anatomy) any encircling or beltlike structure
+82154,zone_fire,artillery or mortar fire delivered in a constant direction at several quadrant elevations
+82155,zone_of_interior,the part of the theater of war not included in the theater of operations
+82156,zoning,dividing an area into zones or sections reserved for different purposes such as residence and business and manufacturing etc
+82157,zoning_board,a board of officials who divide an area into zones that are subject to different restrictions
+82158,zoning_commission,a commission delegated to supervise the zoning of areas for residential or commercial use
+82159,zonule zonula,small beltlike zone
+82160,zoo_keeper,the chief person responsible for a zoological garden
+82161,zooid,one of the distinct individuals forming a colonial animal such as a bryozoan or hydrozoan
+82162,zoolatry animal-worship,the worship of animals
+82163,zoologist animal_scientist,a specialist in the branch of biology dealing with animals
+82164,zoology zoological_science,the branch of biology that studies animals
+82165,zoomastigote zooflagellate,flagellate protozoan lacking photosynthesis and other plant-like characteristics
+82166,zoomorphism,the attribution of animal forms or qualities to a god
+82167,zoonosis zoonotic_disease,an animal disease that can be transmitted to humans
+82168,zoophilia zoophilism,a sexual attraction to animals
+82169,zoophobia,a morbid fear of animals
+82170,zoophyte,any of various invertebrate animals resembling a plant such as a sea anemone or coral or sponge
+82171,zooplankton,animal constituent of plankton; mainly small crustaceans and fish larvae
+82172,zoopsia,visual hallucination of animals; sometimes occurring in delirium tremens
+82173,zoospore,an asexual spore of some algae and fungi that moves by means of flagella
+82174,zoot_suit,a flashy suit of extreme cut
+82175,zoril Ictonyx_frenata,muishond of northern Africa
+82176,zoysia,any of several creeping grasses of the genus Zoysia
+82177,zucchini courgette,marrow squash plant whose fruit are eaten when small
+82178,zucchini courgette,small cucumber-shaped vegetable marrow; typically dark green
+82179,zumbooruk zumbooruck zamburek zamboorak zamburak camel_cavalry, a camel cavalry used in the early modern era by Arab, Afghan, Persian, and Indian armies
+82180,zwieback rusk Brussels_biscuit twice-baked_bread,slice of sweet raised bread baked again until it is brown and hard and crisp
+82181,zydeco,music of southern Louisiana that combines French dance melodies with Caribbean music and blues
+82182,zygodactyl_foot,a bird's foot having the first and fourth toes of each foot directed backward and the second and third forward
+82183,zygoma zygomatic_arch arcus_zygomaticus,the slender arch formed by the temporal process of the cheekbone that bridges to the zygomatic process of the temporal bone
+82184,zygomatic_process,a slender process of the temporal bone that strengthens the zygomatic arch
+82185,zygospore,a plant spore formed by two similar sexual cells
+82186,zygote fertilized_ovum,(genetics) the diploid cell resulting from the union of a haploid spermatozoon and ovum (including the organism that develops from that cell)
+82187,zygotene,the second stage of the prophase of meiosis
+82188,zymase,a complex of enzymes that cause glycolysis; originally found in yeast but also present in higher organisms
+82189,zymology zymurgy,the branch of chemistry concerned with fermentation (as in making wine or brewing or distilling)
+82190,zymosis,(medicine) the development and spread of an infectious disease (especially one caused by a fungus)
+82191,zymosis zymolysis fermentation fermenting ferment,a process in which an agent causes an organic substance to break down into simpler substances; especially the anaerobic breakdown of sugar into alcohol
diff --git a/Algorithms/Part-II/1-WordNet/data/synsets11.txt b/Algorithms/Part-II/1-WordNet/data/synsets11.txt
new file mode 100644
index 0000000..5e275c5
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsets11.txt
@@ -0,0 +1,11 @@
+0,a,one
+1,b,two
+2,c,three
+3,d,four
+4,e,five
+5,f,six
+6,g,seven
+7,h,eight
+8,i,nine
+9,j,ten
+10,k,eleven
diff --git a/Algorithms/Part-II/1-WordNet/data/synsets15.txt b/Algorithms/Part-II/1-WordNet/data/synsets15.txt
new file mode 100644
index 0000000..731e1ee
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsets15.txt
@@ -0,0 +1,15 @@
+0,a,one
+1,b,two
+2,c,three
+3,d,four
+4,e,five
+5,f,six
+6,g,seven
+7,h,eight
+8,i,nine
+9,j,ten
+10,k,eleven
+11,l,twelve
+12,m,thirteen
+13,n,fourteen
+14,o,fifteen
diff --git a/Algorithms/Part-II/1-WordNet/data/synsets3.txt b/Algorithms/Part-II/1-WordNet/data/synsets3.txt
new file mode 100644
index 0000000..972fa6f
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsets3.txt
@@ -0,0 +1,3 @@
+0,a,one
+1,b,two
+2,c,three
diff --git a/Algorithms/Part-II/1-WordNet/data/synsets6.txt b/Algorithms/Part-II/1-WordNet/data/synsets6.txt
new file mode 100644
index 0000000..b0af1d5
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsets6.txt
@@ -0,0 +1,6 @@
+0,a,one
+1,b,two
+2,c,three
+3,d,four
+4,e,five
+5,f,six
diff --git a/Algorithms/Part-II/1-WordNet/data/synsets8.txt b/Algorithms/Part-II/1-WordNet/data/synsets8.txt
new file mode 100644
index 0000000..1a3d8c0
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsets8.txt
@@ -0,0 +1,8 @@
+0,a,one
+1,b,two
+2,c,three
+3,d,four
+4,e,five
+5,f,six
+6,g,seven
+7,h,eight
diff --git a/Algorithms/Part-II/1-WordNet/data/synsetsManyPathsOneAncestor.txt b/Algorithms/Part-II/1-WordNet/data/synsetsManyPathsOneAncestor.txt
new file mode 100644
index 0000000..5e275c5
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/data/synsetsManyPathsOneAncestor.txt
@@ -0,0 +1,11 @@
+0,a,one
+1,b,two
+2,c,three
+3,d,four
+4,e,five
+5,f,six
+6,g,seven
+7,h,eight
+8,i,nine
+9,j,ten
+10,k,eleven
diff --git a/Algorithms/Part-II/1-WordNet/hypernyms.txt b/Algorithms/Part-II/1-WordNet/hypernyms.txt
new file mode 100644
index 0000000..618a714
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/hypernyms.txt
@@ -0,0 +1,82192 @@
+0,79541
+1,34093
+2,75958
+3,34093
+4,34093
+5,34093
+6,34093
+7,34093
+8,20120
+9,34093
+10,34093
+11,34093
+12,34093
+13,34093
+14,34093
+15,34093
+16,20120
+17,43603
+18,78883
+19,59938
+20,75956
+21,51068
+22,24828
+23,48597
+24,71451
+25,81463
+26,51677
+27,71611
+28,75566
+29,24828
+30,20978
+31,29653
+32,21013
+33,69388
+34,47569,48084
+35,19983
+36,42338
+37,53717
+38,28591
+39,28597
+40,76057
+41,70206
+42,18793
+43,23428
+44,43858
+45,29509
+46,29509,62089
+47,77192
+48,21444
+49,66703
+50,62852
+51,22850
+52,8652
+53,29509,62089
+54,31233
+55,68796
+56,52904
+57,53480
+58,60448,76134
+59,44438
+60,35243
+61,77192
+62,77192,62095
+63,77192
+64,77192
+65,29509
+66,23693
+67,29509
+68,44703
+69,29509
+70,77192
+71,3798
+72,72961
+73,3797
+74,3799
+75,497
+76,496
+77,74600
+78,1512,38439
+79,59565
+80,7420
+81,40303
+82,52887
+83,27763
+84,8409
+85,21770
+86,56119
+87,75958
+88,75958
+89,40303
+90,56119
+91,23471
+92,35243
+93,77192
+94,36047
+95,45813
+96,22420
+97,18882
+98,18882
+99,35787
+100,56127
+101,6268
+102,67039
+103,21962
+104,24325
+105,60592
+106,27763
+107,40303
+108,65960
+109,20756
+110,21720
+111,40299
+112,40303
+113,29509,62089
+114,27201
+115,21719
+116,20756
+117,24325
+118,24321
+119,24331
+120,56119
+121,35097
+122,35096
+123,65581
+124,6945
+125,29489
+126,66703
+127,21720
+128,72990
+129,48024
+130,21720
+131,55951
+132,80494
+133,75806
+134,40303
+135,7734
+136,30900
+137,15430
+138,35097
+139,52887
+140,21963
+141,40303
+142,40299
+143,29621
+144,35097
+145,55423
+146,52660
+147,55080
+148,55081
+149,29621
+150,35787
+151,77192,62089
+152,21719
+153,24325
+154,20426
+155,52887
+156,67039
+157,24325
+158,21963
+159,55081
+160,30218
+161,39679
+162,52660
+163,21720
+164,21012,56099
+165,30218
+166,20756
+167,35243
+168,35242
+169,39679
+170,21963
+171,22642
+172,20756
+173,20756
+174,29621
+175,24325
+176,77192
+177,56219
+178,25303
+179,15311
+180,21720
+181,52904
+182,21444
+183,54168
+184,55423
+185,82070
+186,13746
+187,13746
+188,55423
+189,617
+190,29509
+191,35243
+192,15311
+193,75510
+194,8652
+195,56119
+196,43355
+197,25303
+198,72966
+199,21720
+200,21719
+201,59891
+202,43104
+203,29509,62089
+204,67039
+205,72990
+206,35097
+207,52887
+208,67462
+209,39678
+210,39679
+211,66703
+212,64747
+213,7658
+214,7658
+215,35243
+216,48957
+217,21443
+218,64747
+219,33928
+220,79419
+221,33711
+222,52660
+223,60620
+224,68544
+225,19649
+226,68678
+227,3701
+228,3705
+229,3695
+230,72961
+231,21720
+232,56219
+233,68544
+234,33327
+235,48957
+236,21963
+237,55081
+238,49182
+239,235
+240,55951
+241,26082
+242,56219
+243,79942
+244,24325
+245,46385
+246,55951
+247,38091
+248,29489
+249,6945
+250,794
+251,68668
+252,6952
+253,61254
+254,52887
+255,24321
+256,20756
+257,22643
+258,22645
+259,39049
+260,36381
+261,6941
+262,35097
+263,12045
+264,39054
+265,39048
+266,6952
+267,35243
+268,67039
+269,40303
+270,76330
+271,1319
+272,46760
+273,55022
+274,1324
+275,61254
+276,31656
+277,60216
+278,608
+279,67849
+280,28486
+281,76958
+282,31976
+283,32456
+284,32988
+285,40752
+286,40752
+287,40752
+288,37532
+289,59286
+290,70033
+291,56701
+292,81095
+293,19623
+294,52675
+295,53150
+296,55051
+297,57617
+298,52675
+299,40752
+300,77641
+301,81080
+302,28028
+303,46431
+304,5190
+305,15816
+306,44816
+307,44826
+308,56171
+309,44703
+310,76782
+311,21963
+312,55951
+313,65959
+314,24325
+315,41878
+316,41882
+317,41879
+318,56189
+319,21963
+320,44703
+321,51396
+322,19634
+323,27763,29780
+324,14307
+325,57109
+326,24325
+327,45826
+328,21963
+329,7657
+330,61086
+331,65960
+332,6867
+333,39679
+334,55081
+335,29621
+336,7658
+337,62512
+338,37623
+339,40299
+340,40303
+341,29509
+342,42436
+343,77192
+344,24325
+345,72990
+346,14489
+347,14489
+348,22643
+349,22645
+350,55081
+351,27763
+352,61254
+353,49817
+354,13088
+355,11277
+356,7658
+357,81781
+358,29197
+359,52887
+360,52886
+361,52887
+362,30618
+363,19796
+364,19649
+365,19649
+366,30618
+367,34198
+368,11668
+369,66703
+370,75942
+371,24325
+372,27762
+373,24325
+374,55951
+375,21963
+376,9215
+377,54979
+378,65764
+379,49817
+380,15310
+381,29509
+382,75958
+383,7734
+384,30900
+385,18520
+386,65763
+387,29509
+388,29509,62089
+389,75958
+390,11476
+391,11475
+392,66703
+393,702,15812
+394,603
+395,39803
+396,50273
+397,70166,70759
+398,21443
+399,28774
+400,49817
+401,702
+402,409
+403,59903
+404,64747
+405,29553
+406,41903
+407,32645
+408,65663
+409,603
+410,26122
+411,61009
+412,24325
+413,24321
+414,1704
+415,5765
+416,8209
+417,55022
+418,77192
+419,72966
+420,41879
+421,61902
+422,61902
+423,36381
+424,18844
+425,62918
+426,2947
+427,21444,58798
+428,68796
+429,3705,45839
+430,5483,6917
+431,39797
+432,41878
+433,41879
+434,40303
+435,40299
+436,29509
+437,24325
+438,61622,9640
+439,61621
+440,35243
+441,24321
+442,24325
+443,52887
+444,52887
+445,42436,72990,1417
+446,24321
+447,56917
+448,57109
+449,20756
+450,20756
+451,55951
+452,24199
+453,35097
+454,40303
+455,6378
+456,41879
+457,24325
+458,24325
+459,40303
+460,51397
+461,35492
+462,67039
+463,30900
+464,5666
+465,724
+466,21443
+467,75958
+468,31457
+469,45813
+470,21443
+471,33688
+472,33688
+473,33688
+474,62015
+475,77192
+476,29509,62089
+477,69102
+478,66040
+479,61991
+480,51502
+481,21720
+482,21719
+483,49817
+484,81781
+485,283
+486,277
+487,28262
+488,489
+489,55022
+490,52887
+491,46385
+492,56119,62089
+493,24199
+494,496
+495,497
+496,724
+497,723
+498,81781
+499,58815,41284
+500,53480,60611,21996
+501,26966
+502,63017
+503,39803,81525
+504,55081
+505,55080
+506,29621
+507,20889
+508,46304
+509,3701
+510,6766
+511,64747
+512,66703
+513,28862
+514,81129
+515,58690
+516,71493
+517,30586
+518,40012,19231
+519,68448
+520,81746
+521,29509
+522,68678
+523,51396
+524,35243
+525,45419
+526,45419
+527,20082
+528,20082
+529,65959
+530,27763
+531,51397
+532,29509
+533,1990
+534,20120
+535,44953
+536,51396
+537,33797,29197
+538,55081
+539,52887
+540,40299
+541,40303
+542,40303
+543,52887
+544,77192,62089
+545,24199
+546,72892
+547,20641
+548,49910
+549,28140
+550,37768
+551,70320
+552,43342
+553,50189
+554,55453
+555,81541
+556,61254
+557,55403
+558,64747
+559,6298
+560,48210
+561,21963
+562,21720
+563,43121
+564,35097
+565,51396
+566,64747
+567,1319
+568,17496
+569,24199
+570,27763
+571,77192
+572,35243
+573,20426
+574,62701
+575,3281
+576,41879
+577,27762
+578,27763
+579,29509
+580,51396
+581,8551
+582,79645
+583,79648
+584,39679
+585,55951
+586,66703
+587,70763
+588,24325
+589,21963
+590,40303
+591,65960
+592,24379,76134,31041,3754,67582,5012
+593,21962
+594,20426
+595,20425
+596,40299
+597,40303
+598,67039
+599,5350
+600,5350
+601,75510
+602,50296
+603,48210
+604,48210
+605,21938
+606,29555
+607,20310
+608,5485
+609,80394
+610,39553
+611,39553
+612,33928
+613,59380
+614,21938
+615,59380
+616,66341
+617,56133
+618,35787
+619,26387
+620,30188
+621,2080
+622,73341
+623,19634
+624,20087
+625,70033
+626,21396
+627,22671
+628,23054
+629,51462
+630,23689
+631,24385
+632,24428
+633,23559
+634,25132
+635,26281
+636,47455
+637,28862
+638,30147
+639,31902
+640,31916
+641,81079
+642,32704
+643,32766
+644,33094
+645,34959
+646,79640
+647,37279
+648,37344
+649,37582
+650,74067
+651,40411
+652,46444
+653,72680
+654,41047
+655,41398
+656,21361
+657,63898
+658,43148
+659,45813
+660,78024
+661,44758
+662,11863
+663,45346
+664,61705,46285
+665,46516
+666,46567
+667,74815
+668,50426
+669,51867
+670,78017
+671,52664
+672,52687
+673,53286
+674,53405
+675,53982
+676,54625
+677,59169
+678,54779
+679,55395
+680,57617
+681,41484
+682,51019
+683,59405
+684,60213
+685,66592
+686,46753
+687,21842
+688,65353
+689,33080
+690,37344
+691,81129
+692,77661
+693,40878
+694,66792
+695,67479
+696,70012
+697,71028
+698,71055
+699,71074
+700,74067
+701,72903
+702,72961
+703,61218
+704,78024
+705,57289
+706,78351
+707,80340
+708,80354
+709,80358
+710,80389
+711,24302
+712,80927
+713,80932
+714,81055
+715,81394
+716,81520
+717,43766
+718,21745
+719,41264
+720,59577
+721,33486
+722,21919
+723,56171
+724,60216,60218
+725,5692
+726,15310
+727,40303
+728,51397
+729,40299
+730,10848
+731,68796
+732,56119
+733,40303
+734,40299
+735,52887
+736,79432
+737,20756
+738,69693
+739,63327
+740,25303
+741,21720
+742,67039
+743,29621
+744,29190
+745,20756
+746,40303
+747,65960
+748,65959
+749,20425
+750,61254
+751,44276
+752,35097
+753,56119
+754,38828
+755,66703
+756,63005
+757,35096
+758,67039
+759,3281
+760,40299
+761,13818
+762,13815
+763,13817
+764,40303
+765,21720
+766,20756
+767,35096
+768,35097
+769,21963
+770,67039
+771,70033
+772,35097
+773,21720
+774,67039
+775,29509
+776,55081
+777,51160
+778,21963
+779,29621
+780,40299
+781,40303
+782,24325
+783,21720
+784,724
+785,20756
+786,35243
+787,24325
+788,24321
+789,8209
+790,60448
+791,60448,21996
+792,60448
+793,29509
+794,6946
+795,55423
+796,54979
+797,81683
+798,54980
+799,43104
+800,23471
+801,31267
+802,81781
+803,57140
+804,31713
+805,36381
+806,60611
+807,81781
+808,64747
+809,72961
+810,67039
+811,5777
+812,5765
+813,55304
+814,61258
+815,21719
+816,1016,67582
+817,56189
+818,21720
+819,55951
+820,31542
+821,72262
+822,55081
+823,43532
+824,20426
+825,39679
+826,52660
+827,35097
+828,67039
+829,66703
+830,18084
+831,80394
+832,62512
+833,6305
+834,29621
+835,5765
+836,48957
+837,5483
+838,12310
+839,13815
+840,3227
+841,13817
+842,13818
+843,41264
+844,33486
+845,21919
+846,603
+847,842
+848,6264
+849,31175
+850,5501
+851,5501
+852,5501
+853,34389
+854,37997
+855,19393
+856,35611
+857,283
+858,277
+859,55022
+860,858
+861,36047
+862,36050
+863,64383
+864,74625
+865,65959
+866,48957
+867,40303
+868,18091
+869,40299
+870,20756
+871,81687
+872,65960
+873,3281
+874,24325
+875,24321
+876,24321
+877,55081
+878,49833
+879,20756
+880,40303
+881,6298
+882,56119
+883,29509
+884,29509,62089
+885,72966
+886,55423
+887,14071
+888,60592
+889,65959
+890,52660
+891,52659
+892,20823
+893,64202
+894,47505
+895,21719
+896,54980
+897,55081
+898,39679
+899,65960
+900,21720
+901,40299
+902,54980
+903,54979
+904,21720
+905,20756
+906,20756
+907,36381
+908,75958
+909,21421,67582
+910,24325
+911,20756
+912,20756
+913,24321
+914,15311
+915,29509,62089
+916,56119
+917,6327
+918,61718
+919,57472
+920,59903
+921,31656
+922,24199
+923,37081
+924,37080
+925,21963
+926,40299
+927,21963
+928,21720
+929,51397
+930,21963
+931,21720
+932,29621
+933,55304
+934,55303
+935,61258
+936,21720
+937,74191
+938,29621
+939,67039
+940,20756
+941,24325
+942,67039
+943,59380
+944,19475
+945,21754
+946,52887
+947,55951
+948,40303
+949,42436,10160
+950,48957
+951,32456
+952,18091
+953,21443
+954,52887
+955,52886
+956,52887
+957,77192
+958,21963
+959,31542
+960,29509,62089
+961,64720
+962,14493
+963,14493
+964,42436
+965,52887
+966,15311
+967,29509,62089
+968,15311
+969,5350
+970,15311
+971,71493
+972,77192
+973,52887
+974,1411
+975,1412
+976,66703
+977,70033
+978,21720
+979,29509
+980,64747
+981,21882
+982,29621
+983,21719
+984,21719
+985,21720
+986,24325
+987,6952
+988,21720
+989,51396
+990,51397
+991,41882
+992,56119
+993,21719
+994,67039
+995,21720
+996,67039
+997,55081
+998,52887
+999,52886
+1000,54980
+1001,54979
+1002,67462
+1003,35096
+1004,35097
+1005,52887
+1006,24321
+1007,20756
+1008,40303
+1009,40299
+1010,21719
+1011,61622
+1012,6952
+1013,21968
+1014,71853
+1015,27763
+1016,3695,35474
+1017,3695
+1018,43104
+1019,603
+1020,64747
+1021,67479
+1022,15326
+1023,46059
+1024,77192
+1025,60611
+1026,65581
+1027,6984
+1028,33928
+1029,26647
+1030,62452
+1031,15311
+1032,24325
+1033,24321
+1034,20756
+1035,31542
+1036,24325
+1037,31542
+1038,70209
+1039,60216
+1040,35096
+1041,31542
+1042,29509
+1043,24325
+1044,76134,67582,5012
+1045,6298
+1046,31542
+1047,24325
+1048,15309
+1049,80106
+1050,80106
+1051,81669
+1052,67479
+1053,34746
+1054,34746
+1055,40974
+1056,59903
+1057,68544
+1058,27053
+1059,30230
+1060,49138
+1061,15310
+1062,20196,78659
+1063,57206
+1064,35243
+1065,32888
+1066,32888
+1067,35243
+1068,68230
+1069,55080
+1070,67039
+1071,29621
+1072,72990
+1073,68544
+1074,35787
+1075,81781
+1076,66703
+1077,61258
+1078,67038
+1079,16385
+1080,15310
+1081,68474
+1082,15309
+1083,24325
+1084,48957
+1085,21720
+1086,20756
+1087,17655
+1088,496,13420
+1089,497
+1090,55423
+1091,66703
+1092,66703
+1093,44702
+1094,35097
+1095,724
+1096,723
+1097,3281
+1098,33928
+1099,54980
+1100,43104
+1101,6945
+1102,794
+1103,63459
+1104,35243
+1105,29621
+1106,38059
+1107,56127
+1108,29621
+1109,52887
+1110,24325
+1111,46929
+1112,53480,60611
+1113,50604
+1114,40303
+1115,29621
+1116,54979
+1117,6327
+1118,21443
+1119,61718
+1120,57472
+1121,28585
+1122,41388
+1123,44407
+1124,52887
+1125,21719
+1126,21963
+1127,52887
+1128,52887
+1129,52887
+1130,35243
+1131,21963
+1132,43226
+1133,24325
+1134,24321
+1135,75078
+1136,35097
+1137,29621
+1138,27763
+1139,24325
+1140,21397
+1141,46148,60448
+1142,61254
+1143,53842
+1144,46070
+1145,21886
+1146,29509
+1147,6952
+1148,21719
+1149,15822
+1150,40303
+1151,45758
+1152,55022
+1153,15820
+1154,40299
+1155,21720
+1156,21719
+1157,6945
+1158,31542
+1159,39803
+1160,54980
+1161,54979
+1162,29509
+1163,66703
+1164,43193
+1165,24325
+1166,21720
+1167,21963
+1168,35097
+1169,21720
+1170,21963
+1171,34389
+1172,29509,62089
+1173,6952
+1174,29509
+1175,76135,45839
+1176,3281
+1177,31542
+1178,70209
+1179,60216
+1180,40299
+1181,2751
+1182,2752
+1183,21720
+1184,27763
+1185,40303
+1186,55081
+1187,55081
+1188,43910
+1189,52344
+1190,21996
+1191,35097
+1192,35096
+1193,61258
+1194,36381
+1195,35243
+1196,35474
+1197,51979
+1198,60450
+1199,60448
+1200,76134
+1201,40303
+1202,702
+1203,65960
+1204,21814
+1205,33639
+1206,61218
+1207,80927
+1208,603
+1209,55951
+1210,28849
+1211,603
+1212,66703
+1213,702
+1214,49829
+1215,29509
+1216,21719
+1217,21720
+1218,23455
+1219,23440
+1220,25721
+1221,75958
+1222,33928
+1223,75958
+1224,1324
+1225,1319
+1226,20196
+1227,8209
+1228,29313
+1229,75958
+1230,55022
+1231,35097
+1232,41879
+1233,19629
+1234,19629
+1235,19629
+1236,41879
+1237,35474
+1238,1757
+1239,13817
+1240,13818
+1241,45853,6624
+1242,76134
+1243,35243
+1244,49162,78038
+1245,21995
+1246,19649
+1247,19649
+1248,11668
+1249,75958
+1250,29509
+1251,81161
+1252,66703
+1253,42436,77375
+1254,61622,51702
+1255,34350
+1256,76134
+1257,21963
+1258,21765,61622
+1259,61254
+1260,28801,60611
+1261,24321
+1262,24325
+1263,49817,8290
+1264,49817,8290
+1265,21720
+1266,6952
+1267,75751
+1268,60592
+1269,39679
+1270,13746
+1271,39803
+1272,50898
+1273,81798
+1274,20756
+1275,35097
+1276,6298
+1277,48957
+1278,21754
+1279,55081
+1280,55081
+1281,15311
+1282,52887
+1283,18149
+1284,62902
+1285,29509
+1286,79850
+1287,65763
+1288,7657
+1289,35097
+1290,75958
+1291,20425
+1292,20426
+1293,81683
+1294,81687
+1295,81687
+1296,46304
+1297,54683
+1298,81781
+1299,29621
+1300,35096
+1301,35097
+1302,29621
+1303,35875
+1304,63460
+1305,47505
+1306,21770
+1307,3701
+1308,68237,21770
+1309,75823
+1310,77192
+1311,8647
+1312,56119
+1313,29197
+1314,15311
+1315,49817
+1316,31656
+1317,30391
+1318,59903
+1319,48210,60218
+1320,603
+1321,14636
+1322,24504
+1323,31976
+1324,32456
+1325,32988
+1326,21718
+1327,48151
+1328,23748
+1329,55294
+1330,58589
+1331,23559
+1332,72680
+1333,70012
+1334,40778
+1335,21719
+1336,52660
+1337,81781
+1338,7657
+1339,24325
+1340,68656
+1341,56119
+1342,67039
+1343,51396
+1344,53916
+1345,41878
+1346,41879
+1347,41877
+1348,21963
+1349,51396
+1350,51397
+1351,51397
+1352,65960
+1353,21720
+1354,40303
+1355,39678
+1356,39679
+1357,72961
+1358,8162
+1359,10220
+1360,76330
+1361,13817
+1362,21932
+1363,21932
+1364,21932
+1365,21938
+1366,21938
+1367,54683
+1368,46304
+1369,29509
+1370,43104
+1371,15309
+1372,380
+1373,1080
+1374,21433
+1375,21719
+1376,21720
+1377,33797,29197,19231
+1378,56119
+1379,15311
+1380,29621
+1381,29621
+1382,27339
+1383,79707,61796
+1384,67039
+1385,29509
+1386,41879
+1387,36987
+1388,36987
+1389,35243
+1390,35097
+1391,22000
+1392,37081
+1393,23300
+1394,40303
+1395,56119,62089
+1396,7658
+1397,7658
+1398,29509
+1399,33753
+1400,34746
+1401,77689
+1402,723
+1403,13420
+1404,72990
+1405,6952
+1406,52887
+1407,5350
+1408,32830
+1409,76135
+1410,76134,67582,3754,5012
+1411,724
+1412,723
+1413,14820
+1414,49817,15027
+1415,6952
+1416,24325
+1417,6945
+1418,77192
+1419,77192
+1420,56119
+1421,40299
+1422,40303
+1423,52887
+1424,22642
+1425,35787
+1426,44703
+1427,39679
+1428,70166
+1429,72966
+1430,57472
+1431,29509
+1432,68668
+1433,29553
+1434,25451
+1435,30183
+1436,32979
+1437,66592
+1438,45886
+1439,53036
+1440,63707
+1441,66523
+1442,67569
+1443,67649
+1444,67651
+1445,68555
+1446,72249
+1447,77883
+1448,80083
+1449,47505
+1450,16912
+1451,64747
+1452,28105
+1453,38676
+1454,55951
+1455,24325
+1456,24321
+1457,27763
+1458,21963
+1459,21719
+1460,6952
+1461,7734
+1462,15430
+1463,55081
+1464,794
+1465,35787
+1466,21720
+1467,49817
+1468,72990
+1469,68790
+1470,68786
+1471,81781
+1472,29509,62089
+1473,67039
+1474,61622
+1475,58227,21765
+1476,27431
+1477,11870
+1478,72700
+1479,55951
+1480,31318
+1481,6984
+1482,29509
+1483,72966
+1484,76134,3754,67582,5012
+1485,41593
+1486,1488
+1487,1488
+1488,58104
+1489,72990,14493
+1490,24325
+1491,40299
+1492,40303
+1493,75958
+1494,21963
+1495,41879
+1496,41878
+1497,41882
+1498,31542
+1499,24325
+1500,14504
+1501,31155
+1502,81781
+1503,77192
+1504,61086
+1505,72966
+1506,1485
+1507,1488
+1508,21443
+1509,31656
+1510,32456
+1511,1549
+1512,48210
+1513,64747
+1514,34746
+1515,50115
+1516,40316
+1517,37317
+1518,40316
+1519,30147
+1520,31976
+1521,36008
+1522,1524
+1523,45172
+1524,70033
+1525,37816
+1526,58287
+1527,77641
+1528,79608
+1529,23719
+1530,45813
+1531,65445
+1532,68584
+1533,72961
+1534,20691
+1535,75942
+1536,36250
+1537,22257
+1538,22257
+1539,22257
+1540,22257
+1541,5777
+1542,43104
+1543,5765
+1544,55022
+1545,56171
+1546,44703
+1547,21443
+1548,48210
+1549,56171
+1550,44703
+1551,2080
+1552,21720
+1553,6298
+1554,52887
+1555,2205
+1556,62512
+1557,61254
+1558,67039
+1559,60448,50638,35917
+1560,29621
+1561,67462
+1562,68474
+1563,8291
+1564,60448,35917
+1565,21963
+1566,21962
+1567,77192
+1568,60611
+1569,50604
+1570,31539
+1571,32473
+1572,66703
+1573,66703
+1574,20082
+1575,77192,62089
+1576,33728
+1577,24325
+1578,81789
+1579,29509
+1580,67039
+1581,1324
+1582,17264
+1583,17265
+1584,55022
+1585,38439
+1586,39679
+1587,39678
+1588,48957
+1589,11589
+1590,17555
+1591,51068
+1592,24828
+1593,25216
+1594,80265
+1595,29607
+1596,81462
+1597,71451
+1598,71611
+1599,63193
+1600,69943
+1601,19800
+1602,78606
+1603,23428
+1604,52435
+1605,75958
+1606,15311
+1607,39803
+1608,20120
+1609,63459
+1610,65509
+1611,29509
+1612,43104
+1613,15309
+1614,33342
+1615,38730
+1616,52887
+1617,21963
+1618,6941
+1619,55734
+1620,58167,31041
+1621,22533
+1622,22533
+1623,22533
+1624,22533
+1625,50608
+1626,22533
+1627,22533
+1628,22533
+1629,22533
+1630,22533
+1631,22533
+1632,22533
+1633,22533
+1634,22642
+1635,29621
+1636,22538,24289
+1637,22538
+1638,72990,60448
+1639,55055,68290
+1640,22642
+1641,22643
+1642,27053
+1643,22674,43104
+1644,5111
+1645,8861
+1646,18084
+1647,56127
+1648,63668
+1649,68544
+1650,48957
+1651,56119
+1652,35474,75548
+1653,65754
+1654,32456
+1655,18091
+1656,36008
+1657,29509,62089
+1658,44013
+1659,48957
+1660,1324
+1661,1663
+1662,1048
+1663,55022
+1664,16858
+1665,50215
+1666,51148
+1667,70426
+1668,25920
+1669,52887
+1670,15657
+1671,40303
+1672,7657
+1673,61311
+1674,29509
+1675,57965
+1676,56119,62089
+1677,20559
+1678,52887
+1679,24325
+1680,24321
+1681,52886
+1682,52887
+1683,52886
+1684,33797,29197
+1685,21719
+1686,21720
+1687,14127
+1688,50215
+1689,56246
+1690,12045
+1691,37043
+1692,81781
+1693,72990
+1694,21443
+1695,32547
+1696,72990
+1697,48957
+1698,8214
+1699,40303
+1700,40299
+1701,5765
+1702,59903
+1703,80106
+1704,5777
+1705,5777
+1706,64747
+1707,19234,30586
+1708,19649
+1709,21963
+1710,27276
+1711,27879
+1712,8291
+1713,67038
+1714,21963
+1715,67546
+1716,68544
+1717,1722
+1718,6001
+1719,43104
+1720,29509,62089
+1721,57011
+1722,8209
+1723,57109
+1724,29509
+1725,56119
+1726,55081
+1727,77753
+1728,19341
+1729,29509
+1730,29509
+1731,29509
+1732,63459
+1733,56119,62089
+1734,1324
+1735,1319
+1736,55022
+1737,77192
+1738,77192
+1739,77192
+1740,56119
+1741,56119,62089
+1742,28269
+1743,28269
+1744,19234
+1745,54980
+1746,25431
+1747,41361
+1748,61086
+1749,24823
+1750,60620
+1751,277
+1752,11957
+1753,67039
+1754,67039
+1755,13815
+1756,13817
+1757,13817
+1758,13818
+1759,81781
+1760,35917
+1761,18091
+1762,32456
+1763,48957
+1764,36008
+1765,79608
+1766,37179
+1767,35243
+1768,32216
+1769,43104
+1770,29513
+1771,68668
+1772,52481
+1773,31041
+1774,285
+1775,48957
+1776,29509,62089
+1777,60611
+1778,68544
+1779,29509
+1780,61796
+1781,80583
+1782,69998
+1783,46149
+1784,29509,62089
+1785,36381
+1786,43671
+1787,19234
+1788,19234
+1789,19231
+1790,19231
+1791,19231
+1792,77192
+1793,81781
+1794,76134
+1795,81781
+1796,68520
+1797,35917
+1798,79479
+1799,35097
+1800,77192
+1801,63668
+1802,38828
+1803,31041,60639
+1804,8775
+1805,24325
+1806,35474
+1807,40065,72990
+1808,25303
+1809,33797,29197
+1810,29509
+1811,21754
+1812,29621
+1813,35875
+1814,76134,3754,67582,5012
+1815,8409
+1816,65960
+1817,62902
+1818,277
+1819,5765
+1820,56171
+1821,75958
+1822,29509,62089
+1823,52886
+1824,52887
+1825,6298
+1826,56119
+1827,27763
+1828,5350
+1829,41284
+1830,50878
+1831,2126
+1832,70166
+1833,77192
+1834,81065
+1835,52886
+1836,52887
+1837,27762
+1838,27763
+1839,77192
+1840,72966
+1841,27255
+1842,40299
+1843,20426
+1844,23440
+1845,61086
+1846,61086
+1847,20427
+1848,61086
+1849,61086
+1850,56219
+1851,61622
+1852,21448
+1853,67039
+1854,81781
+1855,72961
+1856,6624
+1857,24722
+1858,33474
+1859,603
+1860,23471
+1861,23471
+1862,23471
+1863,23471
+1864,71493
+1865,53480
+1866,62260
+1867,76143
+1868,29509
+1869,73084
+1870,56119
+1871,29513
+1872,24249
+1873,68030
+1874,66806
+1875,39803
+1876,68544
+1877,75027
+1878,68059
+1879,2657,65374
+1880,29509
+1881,36381
+1882,74560
+1883,35097
+1884,39623,38735,81781
+1885,63669,61796
+1886,8283
+1887,55692
+1888,21421,53295,67582
+1889,81781,36381
+1890,29509
+1891,53975
+1892,60611
+1893,76134,67582,5012,46148
+1894,31992
+1895,53919
+1896,75942
+1897,56847,1048
+1898,29737,18748
+1899,81781,27598
+1900,55734
+1901,31041
+1902,72990
+1903,35242
+1904,70503
+1905,21444
+1906,56119
+1907,29509,62089
+1908,15311
+1909,71704
+1910,25303
+1911,51397
+1912,5777
+1913,15679
+1914,55022
+1915,29509,62089
+1916,54979
+1917,20756
+1918,56119
+1919,5765
+1920,28934
+1921,41446
+1922,64383
+1923,69688
+1924,79958
+1925,5777
+1926,56119
+1927,42436
+1928,3295
+1929,36008
+1930,48768
+1931,60487
+1932,58798
+1933,27531,76134
+1934,81320
+1935,55951
+1936,77192,62095
+1937,31041
+1938,21963
+1939,81781
+1940,81781
+1941,35412
+1942,76332
+1943,29509
+1944,40299
+1945,21719
+1946,31155
+1947,42436
+1948,77192
+1949,21720
+1950,72990
+1951,25303
+1952,21886
+1953,46935,81781
+1954,77192
+1955,75606
+1956,20946
+1957,55055,67582
+1958,62015
+1959,62015
+1960,65758
+1961,58104
+1962,33492
+1963,61622
+1964,81781
+1965,50604
+1966,43104
+1967,40485
+1968,76573
+1969,1319
+1970,38439
+1971,10220
+1972,29509,62089
+1973,283
+1974,41446
+1975,277
+1976,59565
+1977,74625
+1978,22402
+1979,44702
+1980,61258
+1981,44703
+1982,77192
+1983,30584
+1984,60448,49485
+1985,58798
+1986,50910
+1987,20419
+1988,52660
+1989,39803
+1990,277
+1991,308
+1992,52659
+1993,52660
+1994,38441
+1995,67957
+1996,31041
+1997,29509,62089
+1998,40008
+1999,19234
+2000,60448
+2001,27380
+2002,56246
+2003,68544
+2004,73555
+2005,29553
+2006,29438
+2007,29509
+2008,60448,24379
+2009,32473
+2010,64747
+2011,21444
+2012,56119
+2013,71603
+2014,19858
+2015,64672
+2016,6624
+2017,31041
+2018,48957
+2019,21475
+2020,58595
+2021,59870
+2022,68560
+2023,36008
+2024,44013
+2025,52687
+2026,57810
+2027,46753
+2028,66542
+2029,69908
+2030,12052
+2031,56119
+2032,60620
+2033,15326
+2034,19234
+2035,21444,68520
+2036,60611
+2037,53480
+2038,53480
+2039,50604
+2040,31279,31041
+2041,22850
+2042,66824
+2043,35243
+2044,35097
+2045,32939
+2046,63060
+2047,40012
+2048,20756
+2049,28801
+2050,53480,21996
+2051,54084,48768
+2052,31812
+2053,48024,73095
+2054,51397
+2055,21963
+2056,60620
+2057,27763,3523
+2058,72892
+2059,72892
+2060,74395
+2061,57140
+2062,77192
+2063,77192
+2064,37204
+2065,52887
+2066,44953
+2067,44952
+2068,37127
+2069,29509
+2070,72990
+2071,78176
+2072,7657
+2073,7658
+2074,67462
+2075,7658
+2076,1324
+2077,1319
+2078,55022
+2079,26686
+2080,67462
+2081,23853
+2082,1080
+2083,52887
+2084,21963
+2085,81781
+2086,29845
+2087,43104
+2088,56127
+2089,41422
+2090,22266
+2091,21967
+2092,66703
+2093,43104
+2094,50899
+2095,66703
+2096,24107
+2097,21963
+2098,21962
+2099,72961
+2100,14870
+2101,22056
+2102,72983
+2103,29509
+2104,15623
+2105,77192
+2106,15622
+2107,63586
+2108,48484
+2109,29509
+2110,48957
+2111,29509
+2112,29509
+2113,23471
+2114,56127
+2115,35243
+2116,56119
+2117,72966
+2118,72990
+2119,21443
+2120,68544
+2121,56219
+2122,56119
+2123,43104
+2124,65960
+2125,39294
+2126,3386
+2127,29621
+2128,31041
+2129,21720
+2130,60216
+2131,28801
+2132,19234
+2133,277
+2134,26208
+2135,41181
+2136,58175
+2137,8170,14992
+2138,64747
+2139,55394
+2140,49597
+2141,54398
+2142,54398
+2143,59380
+2144,34746
+2145,68544
+2146,75958
+2147,65233
+2148,11870
+2149,496,13420
+2150,497
+2151,77192
+2152,77192
+2153,39404
+2154,46178
+2155,21754
+2156,72990
+2157,61622,58798
+2158,51397
+2159,29509
+2160,52887
+2161,73412
+2162,41879
+2163,41882
+2164,41878
+2165,41879
+2166,21720
+2167,21720
+2168,21719
+2169,20756
+2170,39678
+2171,39679
+2172,61086
+2173,5510
+2174,40299
+2175,20756
+2176,40303
+2177,21963
+2178,22402
+2179,55081
+2180,58088
+2181,29509
+2182,19389
+2183,35097
+2184,17424
+2185,21720
+2186,60639,31041
+2187,31041
+2188,29509
+2189,61622
+2190,30153
+2191,51397
+2192,51558
+2193,77192
+2194,29513
+2195,29833
+2196,42436
+2197,43672
+2198,45443
+2199,64747
+2200,39803
+2201,43104
+2202,23471
+2203,3281
+2204,61622
+2205,34389
+2206,8841
+2207,62956
+2208,55944
+2209,76135
+2210,35097
+2211,81781
+2212,35787
+2213,80106
+2214,60448,72990
+2215,20969
+2216,19231
+2217,56119
+2218,43104
+2219,5765
+2220,80475
+2221,57140
+2222,22069
+2223,65959
+2224,72966
+2225,12107
+2226,39679
+2227,18084
+2228,41878
+2229,41879
+2230,25175
+2231,41879
+2232,25175
+2233,25175
+2234,25175
+2235,25175
+2236,25175
+2237,25175
+2238,25175
+2239,25175
+2240,25175
+2241,25175
+2242,25175
+2243,64250
+2244,42436,72990
+2245,15822
+2246,15820
+2247,55022
+2248,40011
+2249,29509
+2250,30896
+2251,64490
+2252,30894
+2253,21963
+2254,60611
+2255,31539
+2256,29509
+2257,51397
+2258,35242
+2259,35243
+2260,20426
+2261,21720
+2262,21719
+2263,24325
+2264,24321
+2265,21719
+2266,21720
+2267,48957
+2268,24325
+2269,39803
+2270,29549
+2271,55423
+2272,12138
+2273,76134
+2274,54767,67582
+2275,62015
+2276,29509
+2277,32929
+2278,81781
+2279,69291
+2280,67462
+2281,53480
+2282,74906
+2283,41700
+2284,31542
+2285,19231,21872
+2286,43672
+2287,61252
+2288,61254
+2289,55081
+2290,29509,62089
+2291,81251
+2292,21006
+2293,69688
+2294,75942
+2295,6952
+2296,81781
+2297,27531,71493
+2298,9280
+2299,57140
+2300,10297
+2301,48957
+2302,31041
+2303,61086
+2304,72290
+2305,52887
+2306,57671
+2307,57140
+2308,50604
+2309,52887
+2310,7785
+2311,72961
+2312,5777
+2313,73555
+2314,74625
+2315,72966
+2316,68647
+2317,34506
+2318,35557
+2319,75942
+2320,26884
+2321,74872
+2322,79608
+2323,26686
+2324,66853
+2325,603
+2326,74500
+2327,81781
+2328,67039
+2329,47786
+2330,61086
+2331,24325
+2332,40299
+2333,65960
+2334,39679
+2335,283
+2336,55022
+2337,57671
+2338,48957
+2339,38828
+2340,77689
+2341,77192
+2342,31041
+2343,69744
+2344,64955
+2345,67277
+2346,36892
+2347,6298
+2348,73341
+2349,55081
+2350,48957
+2351,69688
+2352,61086
+2353,16443
+2354,52886
+2355,52886
+2356,77753
+2357,53480,21996
+2358,37191
+2359,28212
+2360,73650
+2361,60984
+2362,49945
+2363,51397
+2364,77192
+2365,53848
+2366,3599
+2367,50878
+2368,15181
+2369,55495
+2370,32155
+2371,67039
+2372,81781
+2373,28801
+2374,50604
+2375,61086
+2376,77192
+2377,44287
+2378,21720
+2379,60592
+2380,35243
+2381,21963
+2382,67039
+2383,20756
+2384,81781
+2385,62956
+2386,42436
+2387,61796
+2388,72323
+2389,56162
+2390,61622
+2391,40065
+2392,60536
+2393,52886
+2394,52887
+2395,29509
+2396,42436
+2397,12045
+2398,21996
+2399,7658
+2400,25519
+2401,17655
+2402,7659
+2403,65754
+2404,66703
+2405,68474
+2406,55734
+2407,31041
+2408,12697
+2409,12066
+2410,37204
+2411,40303
+2412,21444
+2413,40299
+2414,31859
+2415,81687
+2416,81683
+2417,29621
+2418,40299
+2419,20756
+2420,68520
+2421,43104
+2422,72990
+2423,24325
+2424,58798
+2425,52660
+2426,56119
+2427,29509
+2428,55081
+2429,35243
+2430,56119
+2431,77192
+2432,54786
+2433,66842
+2434,46287
+2435,29509
+2436,31700
+2437,15822
+2438,15820
+2439,41743
+2440,55022
+2441,77641
+2442,67037
+2443,78037
+2444,66703
+2445,56119
+2446,36381,61622
+2447,46070
+2448,29509
+2449,29509,62089
+2450,74010
+2451,59413
+2452,39803
+2453,29509
+2454,29509,62089
+2455,6298
+2456,6305
+2457,2586
+2458,21444
+2459,40303
+2460,72990
+2461,21963
+2462,29509,62089
+2463,50110
+2464,18674,67582
+2465,56119,62089
+2466,28747
+2467,29509
+2468,3281
+2469,7658
+2470,29509,62089
+2471,78703
+2472,20946
+2473,20889
+2474,72966
+2475,29509,62089
+2476,48270
+2477,20120
+2478,56115
+2479,26785
+2480,2947
+2481,30871
+2482,4384
+2483,35787
+2484,43104
+2485,75029
+2486,48957
+2487,50115
+2488,59251
+2489,62176
+2490,35787
+2491,18093
+2492,51658,36664
+2493,37708
+2494,55022
+2495,2494
+2496,2494
+2497,81617
+2498,5765
+2499,3278
+2500,71895
+2501,31279,31041
+2502,75027
+2503,29509
+2504,73650
+2505,47505
+2506,20946
+2507,28238
+2508,60611
+2509,32222
+2510,57140
+2511,55081
+2512,55080
+2513,20889
+2514,55081
+2515,81781
+2516,81781
+2517,81781
+2518,39296
+2519,25406
+2520,74625
+2521,76664
+2522,34198
+2523,61622
+2524,25406
+2525,74625
+2526,51702
+2527,40303
+2528,55055
+2529,40299
+2530,35097
+2531,18748
+2532,25431
+2533,33728
+2534,78725
+2535,81781
+2536,47497
+2537,55494
+2538,6709
+2539,61622
+2540,48768
+2541,61622
+2542,22317
+2543,52504
+2544,11714
+2545,29509,62095
+2546,35917,22649
+2547,49817
+2548,30107
+2549,31041
+2550,21719
+2551,21720
+2552,35243
+2553,31041,58167
+2554,57671
+2555,29509
+2556,21963
+2557,16685
+2558,14290
+2559,33810
+2560,5501
+2561,61086
+2562,74271
+2563,36008
+2564,2300
+2565,21444
+2566,21963
+2567,17603
+2568,60448
+2569,29738,67582
+2570,77192
+2571,77192,62095
+2572,73207
+2573,67254
+2574,50125
+2575,72990
+2576,56119
+2577,67039
+2578,55303
+2579,61258
+2580,77192
+2581,61796,50638
+2582,56127
+2583,35875
+2584,29621
+2585,60592
+2586,3279
+2587,55304
+2588,52887
+2589,60448
+2590,24325
+2591,24325
+2592,54979
+2593,24321
+2594,24325
+2595,24325
+2596,24321
+2597,13746
+2598,56119
+2599,31155
+2600,55081
+2601,28801
+2602,81781,54768
+2603,58816
+2604,56119
+2605,67583
+2606,55944
+2607,65753
+2608,65754
+2609,65767
+2610,75823
+2611,52887
+2612,61086
+2613,56119,62089
+2614,29509
+2615,20425
+2616,72961
+2617,56119
+2618,2250
+2619,29509
+2620,1704
+2621,5765
+2622,15679
+2623,55022
+2624,26082
+2625,61086
+2626,21444
+2627,57011
+2628,67039
+2629,76134
+2630,35097
+2631,35342
+2632,28269
+2633,65960
+2634,50481
+2635,61086
+2636,28801
+2637,40008
+2638,62525,81781
+2639,39803,52316
+2640,21397
+2641,21963
+2642,2126
+2643,19231
+2644,46670
+2645,64662
+2646,50610
+2647,19649
+2648,19649
+2649,19649
+2650,19649
+2651,19649
+2652,19649
+2653,19649
+2654,28938
+2655,81781
+2656,42436
+2657,81251
+2658,24321
+2659,24325
+2660,41701
+2661,72990,58068
+2662,32456
+2663,41446
+2664,29509
+2665,77641
+2666,55081
+2667,55080
+2668,52887
+2669,1319
+2670,9898
+2671,36047
+2672,81781
+2673,21444
+2674,79233,30584
+2675,61622
+2676,42436
+2677,61796
+2678,81781
+2679,81781
+2680,48768
+2681,29509
+2682,67039
+2683,67038
+2684,63586
+2685,19959
+2686,19231
+2687,38828
+2688,283
+2689,41446
+2690,277
+2691,13746
+2692,13746
+2693,37408
+2694,38674
+2695,38674
+2696,30187
+2697,56847
+2698,48768
+2699,67039
+2700,24325
+2701,81781
+2702,61622
+2703,77192
+2704,21444
+2705,35096
+2706,35097
+2707,23471
+2708,35171
+2709,29509
+2710,5765
+2711,38828,56230
+2712,58167,31041
+2713,61622
+2714,1319
+2715,43104
+2716,21448
+2717,29509
+2718,63193
+2719,76959
+2720,51068
+2721,29587
+2722,71451
+2723,39871
+2724,69271
+2725,30926
+2726,30926,64961
+2727,36525
+2728,36525
+2729,37479
+2730,77185
+2731,63193
+2732,29419
+2733,23428
+2734,29724
+2735,30986
+2736,52758
+2737,63187
+2738,68230
+2739,81781
+2740,65374
+2741,79618
+2742,52660
+2743,52659
+2744,56246
+2745,38828,27733
+2746,52887
+2747,21963
+2748,55423
+2749,24325
+2750,27762
+2751,13420
+2752,723
+2753,29509,62089
+2754,47503
+2755,21720
+2756,20425
+2757,31542
+2758,52887
+2759,52886
+2760,67039
+2761,67038
+2762,67038
+2763,42436,72990
+2764,30584
+2765,77114
+2766,68647
+2767,31041
+2768,71632
+2769,19231
+2770,16539
+2771,17555
+2772,52904
+2773,5345
+2774,24325
+2775,77192
+2776,56119,62089
+2777,67039
+2778,101
+2779,10680
+2780,10676
+2781,35243
+2782,8409
+2783,26896
+2784,77192,62089
+2785,55081,6879
+2786,21963
+2787,40303
+2788,27763
+2789,68520
+2790,36381,61622
+2791,81781
+2792,43104
+2793,27118
+2794,29509
+2795,29509
+2796,36607
+2797,24325
+2798,702
+2799,68994
+2800,57289
+2801,80080
+2802,68370
+2803,68370
+2804,25584
+2805,31267
+2806,41371
+2807,70038
+2808,50184
+2809,50585
+2810,12655
+2811,82020
+2812,61092
+2813,62029
+2814,63005
+2815,64132
+2816,69207
+2817,67551
+2818,68584
+2819,60960
+2820,61218
+2821,80794
+2822,80927
+2823,81251
+2824,603
+2825,14493
+2826,38227
+2827,62015
+2828,62015
+2829,47814
+2830,55081
+2831,30490
+2832,52887
+2833,21720
+2834,21720
+2835,40299
+2836,11472
+2837,65960
+2838,21720
+2839,21719
+2840,35243
+2841,65960
+2842,21963
+2843,6426
+2844,52886
+2845,52887
+2846,67038
+2847,67039
+2848,44703
+2849,52887
+2850,35243
+2851,35097
+2852,44703
+2853,51397
+2854,29509
+2855,66703
+2856,27118
+2857,35243
+2858,55081
+2859,81617
+2860,35492
+2861,42304
+2862,42304
+2863,42304
+2864,41878
+2865,52660
+2866,25721
+2867,46070
+2868,53690
+2869,4374
+2870,41879
+2871,76134
+2872,28801
+2873,13818
+2874,56274
+2875,1757
+2876,81781
+2877,52659
+2878,52660
+2879,21963
+2880,22640
+2881,22645
+2882,68591
+2883,35097
+2884,66703
+2885,51397
+2886,21720
+2887,1324
+2888,1319
+2889,55022
+2890,60120
+2891,75078
+2892,29509
+2893,29509
+2894,78725
+2895,29509
+2896,52886
+2897,35243
+2898,27323
+2899,52887
+2900,28747
+2901,79850
+2902,283
+2903,41446
+2904,277
+2905,23455
+2906,58175
+2907,66226
+2908,8409
+2909,61252
+2910,61258
+2911,55953
+2912,29509
+2913,72961
+2914,24325
+2915,39612
+2916,21720
+2917,39679
+2918,39679
+2919,24325
+2920,81781,38735
+2921,15309
+2922,2923
+2923,15310
+2924,24325
+2925,12054
+2926,20641
+2927,57689
+2928,20079
+2929,81100
+2930,49156
+2931,51400
+2932,52451
+2933,61510
+2934,11866
+2935,61533
+2936,79640
+2937,81137
+2938,12052
+2939,66703
+2940,80394
+2941,6264
+2942,48597
+2943,21842
+2944,22634
+2945,36008
+2946,80422
+2947,72961
+2948,50215
+2949,52660
+2950,45172
+2951,48957
+2952,80962
+2953,67039
+2954,56119
+2955,31542
+2956,70209
+2957,60216
+2958,21720
+2959,21719
+2960,29509
+2961,27146
+2962,64202
+2963,35242
+2964,81781
+2965,52886
+2966,52887
+2967,31542
+2968,31542
+2969,35096
+2970,55080
+2971,61086
+2972,29509,62089
+2973,74395
+2974,64747
+2975,5501
+2976,77192
+2977,56073
+2978,43467
+2979,27093
+2980,41879
+2981,62512
+2982,32875
+2983,6268
+2984,9043
+2985,56127
+2986,59903
+2987,48957
+2988,63255
+2989,59903
+2990,23471
+2991,27118
+2992,27297
+2993,66703
+2994,27297
+2995,27297
+2996,77192
+2997,27297,63255
+2998,27297,63255
+2999,27297
+3000,11870
+3001,27297
+3002,72961
+3003,27297
+3004,63255
+3005,29509,62089
+3006,27297
+3007,32456
+3008,21443
+3009,3010
+3010,55022
+3011,27297
+3012,59903
+3013,12327
+3014,78017
+3015,27297
+3016,72961
+3017,73674
+3018,24829
+3019,81781,36381
+3020,43226
+3021,9044
+3022,71817
+3023,36892
+3024,39546
+3025,43814
+3026,46070
+3027,56127
+3028,24321
+3029,42151
+3030,61086
+3031,43104
+3032,35242
+3033,35243
+3034,40012
+3035,52887
+3036,21720
+3037,52887
+3038,48957
+3039,70209
+3040,60216
+3041,52887
+3042,31542
+3043,21962
+3044,24321
+3045,20756
+3046,24325
+3047,40299
+3048,52886
+3049,40303
+3050,35243
+3051,21719
+3052,56119
+3053,40299
+3054,40303
+3055,40299
+3056,40303
+3057,57671
+3058,20120
+3059,77192
+3060,60120
+3061,40299
+3062,40303
+3063,40303
+3064,40299
+3065,40303
+3066,35243
+3067,56119
+3068,32028
+3069,54979
+3070,35097
+3071,54980
+3072,61622
+3073,24321
+3074,24325
+3075,21963
+3076,65960
+3077,61622
+3078,55081
+3079,24325
+3080,24321
+3081,724
+3082,723
+3083,43104
+3084,68544
+3085,48957
+3086,35243
+3087,35242
+3088,31542
+3089,2438
+3090,49817
+3091,21963
+3092,77192
+3093,28087
+3094,56127
+3095,46148
+3096,41593
+3097,58104
+3098,71603
+3099,48028,60435
+3100,37204
+3101,78725
+3102,27763
+3103,46431
+3104,20756
+3105,20756
+3106,60611
+3107,33585
+3108,43104
+3109,20123
+3110,26232
+3111,28886
+3112,45738
+3113,26555
+3114,55174
+3115,59110
+3116,40752
+3117,81743
+3118,21443
+3119,71817
+3120,36892
+3121,603
+3122,28801
+3123,64747
+3124,65960
+3125,44952
+3126,44953
+3127,27763
+3128,21720
+3129,24325
+3130,74560,24249
+3131,21444
+3132,81781
+3133,41700
+3134,24249,38047
+3135,72966
+3136,29509,62089
+3137,29509,62089
+3138,29374
+3139,5356
+3140,13746
+3141,38674
+3142,40986
+3143,31889
+3144,31893
+3145,61211
+3146,29522
+3147,277
+3148,21963
+3149,55055
+3150,58104
+3151,56246
+3152,48768
+3153,67039
+3154,75828
+3155,25431,28801
+3156,35097
+3157,35243
+3158,35242
+3159,27762
+3160,61258
+3161,29621
+3162,55081
+3163,29509,62089
+3164,28178
+3165,81467
+3166,19468
+3167,64747
+3168,70426
+3169,36050
+3170,24325
+3171,67546
+3172,29509
+3173,50215
+3174,63329
+3175,65501
+3176,49829
+3177,35243
+3178,55951
+3179,31542
+3180,60448
+3181,72990
+3182,44953
+3183,44953
+3184,67039
+3185,35787
+3186,15876
+3187,21963
+3188,15875
+3189,55607
+3190,52887
+3191,52886
+3192,52887
+3193,56119,62089
+3194,71334
+3195,30895
+3196,19649
+3197,24321
+3198,20756
+3199,35096
+3200,61258
+3201,24325
+3202,21720
+3203,15875
+3204,14516
+3205,28822
+3206,35787
+3207,27933
+3208,27933
+3209,43776
+3210,55081
+3211,15623
+3212,41390
+3213,15622
+3214,77273
+3215,44703
+3216,70033
+3217,24325
+3218,35097
+3219,24325
+3220,24321
+3221,31417
+3222,81781
+3223,37725
+3224,37725
+3225,64250,65570
+3226,81065
+3227,3695
+3228,29313
+3229,29323
+3230,3705
+3231,72283
+3232,24325
+3233,40299
+3234,40303
+3235,64747
+3236,63586,37191
+3237,63586
+3238,61622
+3239,43104
+3240,56171
+3241,81283
+3242,64747
+3243,61086
+3244,52660
+3245,55012
+3246,57223
+3247,28801,60611
+3248,52887
+3249,52886
+3250,62956
+3251,30460
+3252,36008
+3253,8331
+3254,8330
+3255,50215
+3256,52886
+3257,48957
+3258,29509
+3259,17839
+3260,13194
+3261,52887
+3262,52887
+3263,21719
+3264,35097
+3265,35096
+3266,29509
+3267,67039
+3268,44703
+3269,35243
+3270,35096
+3271,35097
+3272,48957
+3273,7420
+3274,68520
+3275,27763
+3276,21996
+3277,75744
+3278,5765
+3279,8209
+3280,4374
+3281,34389
+3282,35097
+3283,55081
+3284,38228
+3285,21963
+3286,35097
+3287,31542
+3288,19649
+3289,76196
+3290,283
+3291,41446
+3292,49019
+3293,30391
+3294,12052
+3295,12054
+3296,73576
+3297,5112
+3298,17468,47925
+3299,48597
+3300,59237
+3301,20082
+3302,29553
+3303,21963
+3304,40299
+3305,6298
+3306,40299
+3307,24325
+3308,67039
+3309,40299
+3310,40303
+3311,40303
+3312,24325
+3313,67039
+3314,75510
+3315,35097
+3316,55081
+3317,81683
+3318,60592
+3319,29621
+3320,24325
+3321,67038
+3322,44702
+3323,44703
+3324,67039
+3325,55951
+3326,31542
+3327,24325
+3328,21719
+3329,21720
+3330,27763
+3331,21720
+3332,40299
+3333,67039
+3334,67039
+3335,52659
+3336,52660
+3337,21720
+3338,21719
+3339,20756
+3340,65959
+3341,39679
+3342,41878
+3343,41879
+3344,52887
+3345,55952
+3346,52659
+3347,52660
+3348,67039
+3349,67039
+3350,52887
+3351,21719
+3352,52886
+3353,52887
+3354,41879
+3355,41879
+3356,14504
+3357,21968
+3358,27763
+3359,55081
+3360,24325
+3361,24321
+3362,81781,36381
+3363,52886
+3364,52887
+3365,24325
+3366,20756
+3367,33238
+3368,29621
+3369,21963
+3370,33239
+3371,20756
+3372,39679
+3373,21720
+3374,21719
+3375,40299
+3376,40303
+3377,41879
+3378,31542
+3379,48957
+3380,67849
+3381,72227
+3382,58798
+3383,7375
+3384,77192
+3385,2657,80962
+3386,308
+3387,283
+3388,277
+3389,41446
+3390,67039
+3391,40303
+3392,61086
+3393,40303
+3394,40299
+3395,60592
+3396,58798
+3397,17265
+3398,24224
+3399,7657
+3400,37150
+3401,77192
+3402,21719
+3403,21720
+3404,24325
+3405,43104
+3406,57456
+3407,15309
+3408,61086
+3409,24325
+3410,67039
+3411,44703
+3412,67039
+3413,35243
+3414,65960
+3415,31542
+3416,65959
+3417,21963
+3418,72990
+3419,21444
+3420,6298
+3421,77192
+3422,38828
+3423,5356
+3424,73650
+3425,26789
+3426,79591
+3427,61086
+3428,7658
+3429,81781
+3430,66703
+3431,3612
+3432,55423
+3433,48957
+3434,56127
+3435,29621
+3436,66703
+3437,6952
+3438,77192
+3439,30584,40012
+3440,60984
+3441,61086
+3442,63460
+3443,63459
+3444,40299
+3445,40299
+3446,20756
+3447,24321
+3448,20756
+3449,24325
+3450,63461
+3451,56520
+3452,56527
+3453,80962
+3454,79618
+3455,11973
+3456,65960
+3457,7766,3119
+3458,29509
+3459,9043
+3460,9043
+3461,7766,9044
+3462,9044
+3463,66703
+3464,9044
+3465,60611
+3466,13769
+3467,29509,62089
+3468,22853
+3469,72966
+3470,79541
+3471,56250
+3472,29509
+3473,63488
+3474,23693
+3475,39698
+3476,29621
+3477,52887
+3478,38426
+3479,65531
+3480,77192
+3481,28006
+3482,51640
+3483,80815
+3484,61796,28938
+3485,39992
+3486,72990,81781
+3487,24325
+3488,66703
+3489,29509
+3490,61086
+3491,61622
+3492,24325
+3493,31041
+3494,50110
+3495,14638
+3496,3240
+3497,43104
+3498,79591
+3499,81781
+3500,39679
+3501,35243
+3502,36381
+3503,29621
+3504,35243
+3505,21720
+3506,21963
+3507,20756
+3508,65960
+3509,20756
+3510,65959
+3511,29509
+3512,65960
+3513,65959
+3514,11363
+3515,3514
+3516,31782
+3517,29509
+3518,31175
+3519,24325
+3520,79618
+3521,80962
+3522,29509
+3523,27762
+3524,27763
+3525,13164
+3526,77192,62089
+3527,14638
+3528,17867
+3529,29509
+3530,29509
+3531,8331
+3532,8330
+3533,67001
+3534,31041
+3535,23471
+3536,66240
+3537,39803
+3538,28747
+3539,29509
+3540,72990
+3541,81781
+3542,19231,70426
+3543,36055
+3544,46070
+3545,277
+3546,496,13420
+3547,497
+3548,72966
+3549,1752
+3550,59745
+3551,78279
+3552,42436,72990
+3553,65374
+3554,29509,62089
+3555,10944
+3556,1752
+3557,61086
+3558,724
+3559,11475
+3560,39803
+3561,27380
+3562,26789
+3563,29509
+3564,72961
+3565,77223
+3566,34746
+3567,80808
+3568,15822
+3569,25282
+3570,15820
+3571,28104
+3572,70033
+3573,51159
+3574,55022
+3575,70033
+3576,3574
+3577,70033
+3578,48957
+3579,63460
+3580,65960
+3581,40303
+3582,29621
+3583,21963
+3584,40299
+3585,14783
+3586,35243
+3587,7734
+3588,7735
+3589,55423
+3590,55952
+3591,52660
+3592,1324
+3593,40752
+3594,67001
+3595,45946
+3596,71279
+3597,25556
+3598,52886
+3599,1319
+3600,15615
+3601,66341
+3602,64720
+3603,20087
+3604,70033
+3605,72142
+3606,67957
+3607,26766
+3608,33134
+3609,25022
+3610,28862
+3611,57289
+3612,34389
+3613,37582
+3614,46818
+3615,45813
+3616,43756
+3617,79608
+3618,70033
+3619,50383
+3620,44384
+3621,55022
+3622,55809
+3623,42154
+3624,77641
+3625,59666
+3626,62910
+3627,63005
+3628,63987
+3629,74973
+3630,66428
+3631,81394
+3632,80106
+3633,13019
+3634,60732
+3635,13020
+3636,21963
+3637,35097
+3638,235
+3639,1411
+3640,1412
+3641,26792
+3642,975
+3643,58798
+3644,28219
+3645,21968
+3646,21719
+3647,21720
+3648,20756
+3649,28035
+3650,1752
+3651,29509,62089
+3652,15622
+3653,24325
+3654,29053
+3655,29053
+3656,22642
+3657,63459
+3658,63460
+3659,65960
+3660,52887
+3661,35096
+3662,35097
+3663,55081
+3664,63461
+3665,63460
+3666,65960
+3667,24325
+3668,40299
+3669,29621
+3670,19629
+3671,35874
+3672,67039
+3673,24325
+3674,11476
+3675,11475
+3676,52887
+3677,52887
+3678,51558
+3679,29621
+3680,63460
+3681,29509
+3682,55734
+3683,31041,60639
+3684,81781
+3685,60592
+3686,24325
+3687,67039
+3688,24325
+3689,21720
+3690,67039
+3691,9141
+3692,70033
+3693,29509
+3694,25094
+3695,65767
+3696,13817
+3697,13818
+3698,13817
+3699,13815
+3700,38227
+3701,65762
+3702,51768
+3703,40276
+3704,76139
+3705,65754
+3706,31801
+3707,81781
+3708,50878,46304,64202,39509
+3709,68678
+3710,46274
+3711,23765
+3712,40752
+3713,44044
+3714,77641
+3715,26827
+3716,41745
+3717,44241
+3718,30020
+3719,39676
+3720,62702
+3721,45668
+3722,73367
+3723,34199
+3724,70033
+3725,76135
+3726,3704
+3727,59588
+3728,65960
+3729,76161
+3730,30218
+3731,49182
+3732,65960
+3733,67039
+3734,52886
+3735,52887
+3736,44953
+3737,24325
+3738,21719
+3739,40303
+3740,29621
+3741,35097
+3742,35874
+3743,21719
+3744,21963
+3745,67039
+3746,21963
+3747,55944
+3748,75958
+3749,15516
+3750,56171
+3751,59903
+3752,68544
+3753,29509
+3754,76134
+3755,841
+3756,13817
+3757,1757
+3758,77192
+3759,42436
+3760,72990,81781
+3761,35412
+3762,17264
+3763,17265
+3764,41878
+3765,41882
+3766,29621
+3767,61622,51702
+3768,39679
+3769,21719
+3770,21719
+3771,67039
+3772,58068,72990
+3773,40299
+3774,21963
+3775,21719
+3776,24325
+3777,24321
+3778,20756
+3779,67039
+3780,29621
+3781,57671
+3782,66703
+3783,21720
+3784,21719
+3785,52660
+3786,29509
+3787,72990
+3788,24321
+3789,24325
+3790,33928
+3791,81462
+3792,39803
+3793,52660
+3794,67039
+3795,37768
+3796,24325
+3797,18149
+3798,30900
+3799,3240
+3800,71633
+3801,31542
+3802,39509
+3803,24325
+3804,29621
+3805,21963
+3806,35242
+3807,24325
+3808,35243
+3809,76330
+3810,52887
+3811,40303
+3812,33928
+3813,79850
+3814,67039
+3815,35097
+3816,28236
+3817,29509,62089
+3818,29509
+3819,29509
+3820,26246
+3821,55495
+3822,41879
+3823,41878
+3824,24325
+3825,67039
+3826,20756
+3827,24325
+3828,61796
+3829,63586
+3830,42436
+3831,38828
+3832,57252
+3833,72843
+3834,29509
+3835,41878
+3836,41879
+3837,14493
+3838,42436
+3839,41878
+3840,41879
+3841,21805
+3842,61796
+3843,42436
+3844,27763
+3845,60448
+3846,55081
+3847,72990
+3848,81781,46935
+3849,21047
+3850,62015
+3851,62015
+3852,62015
+3853,64255,5345
+3854,21719
+3855,35097
+3856,35242
+3857,52887
+3858,29509
+3859,13746
+3860,74117
+3861,78059
+3862,35097
+3863,66703
+3864,42488
+3865,40299
+3866,21963
+3867,77192
+3868,13746
+3869,61796
+3870,69083
+3871,38674
+3872,11472
+3873,41879
+3874,19629
+3875,19629
+3876,19629
+3877,19629
+3878,19629
+3879,19629
+3880,67039
+3881,42436,72990
+3882,24695
+3883,6952
+3884,49817,6224
+3885,12711
+3886,40303
+3887,40299
+3888,66703
+3889,36329
+3890,15676
+3891,55951
+3892,65960
+3893,21963
+3894,60592
+3895,67039
+3896,29621
+3897,72961
+3898,64747
+3899,43104
+3900,40299
+3901,30586
+3902,30317
+3903,21719
+3904,20756
+3905,21719
+3906,21719
+3907,24325
+3908,52660
+3909,24325
+3910,7734
+3911,18520
+3912,8170,974
+3913,35243
+3914,24325
+3915,22402
+3916,47505
+3917,57140
+3918,18910
+3919,9913
+3920,7734
+3921,18520
+3922,55081
+3923,81781,40012
+3924,16912
+3925,66703
+3926,67039
+3927,67039
+3928,69998
+3929,55081
+3930,24325
+3931,24321
+3932,724
+3933,77192
+3934,50215
+3935,21963
+3936,73264
+3937,25721
+3938,71603
+3939,25431
+3940,71786
+3941,35243
+3942,24325
+3943,67957
+3944,51396
+3945,51397
+3946,43104
+3947,46707
+3948,65960
+3949,20756
+3950,61622
+3951,81781
+3952,79850
+3953,24325
+3954,20756
+3955,81781
+3956,21963
+3957,21963
+3958,24325
+3959,55081
+3960,29509
+3961,15822
+3962,15820
+3963,55022
+3964,3963
+3965,56119
+3966,29509,62089
+3967,39803
+3968,64955
+3969,43104
+3970,603
+3971,702
+3972,66703
+3973,66703
+3974,34746
+3975,75078
+3976,69320
+3977,29509
+3978,50721
+3979,72559
+3980,29509
+3981,20444
+3982,13255
+3983,73015
+3984,66346
+3985,65960
+3986,65959
+3987,35097
+3988,31542
+3989,24325
+3990,77192
+3991,77192
+3992,66703
+3993,72966
+3994,78725
+3995,51400
+3996,24321
+3997,20756
+3998,77192
+3999,29509,62095
+4000,56246
+4001,72966
+4002,50878
+4003,67039
+4004,31542
+4005,15499
+4006,15500
+4007,35243
+4008,923
+4009,924
+4010,39962
+4011,35096
+4012,37204
+4013,55080
+4014,29621
+4015,67039
+4016,5297
+4017,5297
+4018,5297
+4019,14644
+4020,27255
+4021,50878
+4022,81669
+4023,48597
+4024,66693
+4025,55423
+4026,61796
+4027,53001
+4028,59380
+4029,21443
+4030,32456
+4031,21962
+4032,58103
+4033,57140
+4034,35097
+4035,57573
+4036,57573
+4037,19649
+4038,30896
+4039,65531
+4040,53599
+4041,28212
+4042,60448
+4043,62164
+4044,56119,62089
+4045,81781
+4046,29509
+4047,77192
+4048,72966
+4049,41390
+4050,53480,60448
+4051,52887
+4052,52887
+4053,29513
+4054,43104
+4055,74500,15858
+4056,21589,44251
+4057,71493,4055
+4058,23791
+4059,60450
+4060,60448
+4061,66703
+4062,283
+4063,283
+4064,41446
+4065,277
+4066,13817
+4067,13817
+4068,13818
+4069,13815
+4070,50912
+4071,39553
+4072,56917
+4073,54677
+4074,36381
+4075,40299
+4076,61258
+4077,29621
+4078,52887
+4079,39679
+4080,67039
+4081,74973
+4082,67038
+4083,67039
+4084,82092
+4085,3969
+4086,66703
+4087,702
+4088,603
+4089,45547
+4090,52887
+4091,75823
+4092,75823
+4093,35097
+4094,21963
+4095,20756
+4096,67039
+4097,35097
+4098,496
+4099,81781
+4100,21963
+4101,53842
+4102,8647
+4103,8748
+4104,8747
+4105,59380
+4106,52660
+4107,58798
+4108,32361
+4109,50215
+4110,29509
+4111,29509
+4112,14493
+4113,37150
+4114,32361
+4115,37150
+4116,37150
+4117,67575
+4118,31781
+4119,59380
+4120,52732
+4121,21589
+4122,31407
+4123,75958
+4124,24325
+4125,11933
+4126,44543
+4127,24325
+4128,51397
+4129,51396
+4130,31811
+4131,35096
+4132,21963
+4133,56246
+4134,73555
+4135,49341
+4136,40065
+4137,76070
+4138,13746
+4139,19231
+4140,81781
+4141,48028,60435
+4142,45302
+4143,78725
+4144,77192
+4145,66703
+4146,13020
+4147,56119
+4148,29621
+4149,54872
+4150,55081
+4151,52344
+4152,21996
+4153,31041
+4154,58798
+4155,40012
+4156,41878
+4157,41879
+4158,5345
+4159,3695
+4160,5346
+4161,29313
+4162,52660
+4163,24325
+4164,24321
+4165,20756
+4166,24325
+4167,68544
+4168,56219
+4169,55081
+4170,63017
+4171,35243
+4172,44702
+4173,61258
+4174,44703
+4175,66344
+4176,35097
+4177,29509
+4178,29509
+4179,38828
+4180,65960
+4181,51397
+4182,65960
+4183,40299
+4184,40303
+4185,21719
+4186,79650,31041
+4187,67039
+4188,29509,62089
+4189,6945
+4190,58103
+4191,31477
+4192,41103
+4193,21720
+4194,21719
+4195,29509,62089
+4196,23853
+4197,67038
+4198,36381,61622
+4199,26602,60435
+4200,19234
+4201,78725
+4202,2586
+4203,36049
+4204,38256
+4205,59502
+4206,5513
+4207,5514
+4208,67039
+4209,32473
+4210,59811,42436
+4211,67039
+4212,31542
+4213,55423
+4214,58798
+4215,3701
+4216,29509
+4217,57671
+4218,48957
+4219,6298
+4220,55081
+4221,31460
+4222,41879
+4223,41878
+4224,41879
+4225,19629
+4226,19629
+4227,19629
+4228,19629
+4229,19629
+4230,19629
+4231,19629
+4232,19629
+4233,37043
+4234,24321
+4235,31542
+4236,24325
+4237,55081
+4238,21719
+4239,35243
+4240,21720
+4241,44952
+4242,61254
+4243,44953
+4244,22642
+4245,32236
+4246,55081
+4247,36033
+4248,36033
+4249,40299
+4250,40065,72990
+4251,40303
+4252,15678
+4253,3295
+4254,3294
+4255,55022
+4256,13019
+4257,13020
+4258,79850
+4259,81251
+4260,24321
+4261,35097
+4262,32311
+4263,32311
+4264,29509,62089
+4265,79850
+4266,36055
+4267,46070
+4268,40299
+4269,40303
+4270,21963
+4271,24325
+4272,63601
+4273,60611
+4274,50604
+4275,67039
+4276,77192
+4277,32361
+4278,38676
+4279,32361
+4280,38676
+4281,23189
+4282,76330
+4283,65764
+4284,19649
+4285,58167,31041
+4286,58798
+4287,75823
+4288,32526
+4289,19164
+4290,38828
+4291,29509
+4292,36381,19231,31041
+4293,61086
+4294,74560
+4295,61622
+4296,38740
+4297,13372
+4298,20963
+4299,74435
+4300,24321
+4301,29509
+4302,24321
+4303,24325
+4304,51148
+4305,35243
+4306,61622
+4307,81781
+4308,21720
+4309,21719
+4310,21963
+4311,54980
+4312,61254
+4313,61252
+4314,67039
+4315,31542
+4316,56127
+4317,35243
+4318,19234
+4319,68520
+4320,24325
+4321,38179
+4322,8170,15623
+4323,23764
+4324,61086
+4325,496
+4326,497
+4327,724
+4328,31304
+4329,29509
+4330,604
+4331,603
+4332,55951
+4333,21963
+4334,21963
+4335,60120
+4336,5765
+4337,48957
+4338,25673
+4339,24325
+4340,52886
+4341,52887
+4342,68230
+4343,24224
+4344,59903
+4345,45758
+4346,80106
+4347,48597
+4348,50610
+4349,29621
+4350,59588
+4351,16912
+4352,7785
+4353,5777
+4354,15678
+4355,24325
+4356,31848
+4357,41700,61796
+4358,20756
+4359,65959
+4360,65960
+4361,52887
+4362,49817
+4363,66482
+4364,35917
+4365,34198
+4366,42436,72990
+4367,41879
+4368,16912
+4369,19231
+4370,28801,60611
+4371,64553
+4372,28014
+4373,33002,19231
+4374,37622
+4375,80421
+4376,29621
+4377,65959
+4378,65960
+4379,65960
+4380,24325
+4381,36381
+4382,15623
+4383,15622
+4384,74903
+4385,30460
+4386,38381
+4387,35242
+4388,34041
+4389,38785
+4390,80184
+4391,29621
+4392,40303
+4393,20425
+4394,20426
+4395,21719
+4396,21720
+4397,35875
+4398,39679
+4399,39678
+4400,44703
+4401,29621
+4402,60592
+4403,29526
+4404,21720
+4405,52887
+4406,21719
+4407,21720
+4408,4407
+4409,60592
+4410,2368
+4411,48957
+4412,32456
+4413,18091
+4414,66341
+4415,45946
+4416,45625
+4417,55022
+4418,4417
+4419,24321
+4420,20756
+4421,24325
+4422,35097
+4423,35097
+4424,35096
+4425,27508
+4426,39679
+4427,48957
+4428,21720
+4429,55294
+4430,29509
+4431,21719
+4432,66340
+4433,21963
+4434,29509,62089
+4435,66703
+4436,42436
+4437,59413
+4438,64747
+4439,43104
+4440,32473
+4441,67039
+4442,61086
+4443,52887
+4444,33797,29197
+4445,67038
+4446,52887
+4447,14504
+4448,33455
+4449,25522
+4450,44702
+4451,44703
+4452,80394
+4453,48957
+4454,21719
+4455,55081
+4456,19376
+4457,28801
+4458,60611
+4459,75741
+4460,29509
+4461,28801
+4462,51718
+4463,24325
+4464,25431
+4465,67039
+4466,48028
+4467,35097
+4468,56520
+4469,43355
+4470,43355
+4471,308
+4472,42436
+4473,21720
+4474,21719
+4475,56189
+4476,77192
+4477,67039
+4478,21720
+4479,24325
+4480,35874
+4481,39679
+4482,39678
+4483,13257
+4484,44702
+4485,61258
+4486,61258
+4487,29621
+4488,44703
+4489,235
+4490,234
+4491,60592
+4492,27763
+4493,52887
+4494,39679
+4495,43193
+4496,40299
+4497,40303
+4498,39679
+4499,29621
+4500,20756
+4501,55081
+4502,20756
+4503,67039
+4504,31542
+4505,24325
+4506,54979
+4507,21963
+4508,61622
+4509,60448
+4510,21719
+4511,21720
+4512,52886
+4513,52887
+4514,40889
+4515,55081
+4516,35874
+4517,40299
+4518,61254
+4519,52887
+4520,52887
+4521,41732
+4522,65581
+4523,61086
+4524,40303
+4525,55080
+4526,55081,4525
+4527,21963
+4528,54980
+4529,54979
+4530,40299
+4531,20756
+4532,40299
+4533,40303
+4534,5765
+4535,55022
+4536,4535
+4537,55081
+4538,48957
+4539,32456
+4540,71493,36381
+4541,54767
+4542,35095
+4543,20196,24036
+4544,39679
+4545,62914
+4546,49817
+4547,52887
+4548,39679
+4549,67039
+4550,5765
+4551,15679
+4552,5777
+4553,55022
+4554,43104
+4555,5765
+4556,60639,31041
+4557,29509
+4558,51068
+4559,69998
+4560,33897
+4561,65581
+4562,32488
+4563,76861
+4564,24261
+4565,61875
+4566,57924
+4567,79031
+4568,5007
+4569,2126
+4570,35243
+4571,24325
+4572,31155
+4573,61858
+4574,44703
+4575,44703
+4576,41879
+4577,41878
+4578,55081
+4579,55081
+4580,21719
+4581,21720
+4582,40299
+4583,40303
+4584,55081
+4585,40299
+4586,55951
+4587,15311
+4588,3281
+4589,38441
+4590,15311
+4591,48768
+4592,46779
+4593,37908,48028
+4594,56119,62089
+4595,15623
+4596,43104
+4597,15622
+4598,50227
+4599,67039
+4600,67039
+4601,58798
+4602,29509,62089
+4603,81142
+4604,29509
+4605,43104
+4606,5765
+4607,23582
+4608,70033
+4609,28801,60611
+4610,50604
+4611,52887
+4612,52887
+4613,41310
+4614,16386
+4615,73081
+4616,15311
+4617,32538
+4618,41607
+4619,41607
+4620,39679
+4621,21719
+4622,21720
+4623,75942
+4624,5765
+4625,5235
+4626,63327
+4627,49353
+4628,25303
+4629,15039
+4630,24722
+4631,4632
+4632,55022
+4633,61622
+4634,66344
+4635,3281
+4636,66703
+4637,57277
+4638,43104
+4639,43104
+4640,56119,62089
+4641,8205
+4642,73555
+4643,27088
+4644,55951
+4645,35787
+4646,8291
+4647,49817
+4648,49817
+4649,24555
+4650,66703
+4651,35097
+4652,67039
+4653,50638
+4654,7660
+4655,30410
+4656,63488
+4657,56189
+4658,78140
+4659,19497
+4660,76149
+4661,25302
+4662,34746
+4663,34746
+4664,40299
+4665,40303
+4666,52886
+4667,52887
+4668,52886
+4669,52887
+4670,52886
+4671,52887
+4672,21963
+4673,52887
+4674,52886,9568
+4675,67039
+4676,29509
+4677,58798,51718
+4678,39678
+4679,29509
+4680,49817
+4681,58798
+4682,59588
+4683,81161
+4684,67039
+4685,19234
+4686,75823
+4687,72990
+4688,49162
+4689,58798
+4690,33355
+4691,28801
+4692,56246
+4693,617
+4694,77192
+4695,81781
+4696,42436,72990
+4697,29509
+4698,77192
+4699,40012
+4700,74560
+4701,37408,48768
+4702,19231
+4703,81781
+4704,40012
+4705,50215
+4706,68481
+4707,19231
+4708,47503
+4709,34746
+4710,58178
+4711,31041
+4712,30635
+4713,20756
+4714,20756
+4715,40303
+4716,29509
+4717,77192
+4718,56230
+4719,6984
+4720,14493
+4721,66071
+4722,67039
+4723,43104
+4724,48028
+4725,76782
+4726,19649
+4727,19649
+4728,54420,17468
+4729,19649
+4730,19649
+4731,19649
+4732,81781
+4733,58798
+4734,67920
+4735,36381,58915
+4736,77192
+4737,58798
+4738,21963
+4739,496
+4740,3969
+4741,497
+4742,66703
+4743,702
+4744,23471
+4745,74625
+4746,603
+4747,24249
+4748,29509
+4749,31041
+4750,24325
+4751,37043
+4752,54786
+4753,31041
+4754,23712
+4755,67039
+4756,21444
+4757,29509
+4758,52887
+4759,52886
+4760,31542
+4761,52887
+4762,41878
+4763,79850
+4764,66703
+4765,30461
+4766,6952
+4767,42436,10160
+4768,61796
+4769,59380
+4770,75958
+4771,59380
+4772,60448
+4773,34389
+4774,58068,72990,1417
+4775,45971
+4776,63017
+4777,60822
+4778,39480
+4779,56127
+4780,21963
+4781,65960
+4782,55081
+4783,24325
+4784,24321
+4785,21720
+4786,24325
+4787,52887
+4788,35243
+4789,72892
+4790,72892
+4791,72990
+4792,65960
+4793,15040
+4794,39679
+4795,39678
+4796,35243
+4797,72966
+4798,19231
+4799,39679
+4800,38680
+4801,38680
+4802,38680
+4803,38680
+4804,19649
+4805,38680
+4806,38680
+4807,19649
+4808,38680
+4809,38680
+4810,38680
+4811,38680
+4812,38680
+4813,48599
+4814,38680
+4815,38680
+4816,38680
+4817,38680
+4818,38680
+4819,38680
+4820,46149
+4821,58798
+4822,21720
+4823,20756
+4824,21720
+4825,21719
+4826,65959
+4827,65960
+4828,20756
+4829,60448,51702
+4830,72966
+4831,53480,60448
+4832,35243
+4833,67039
+4834,63459
+4835,63460
+4836,67039
+4837,52886
+4838,52887
+4839,79110
+4840,20426
+4841,29509,62089
+4842,66703
+4843,29621
+4844,35875
+4845,25303
+4846,74888,68474
+4847,7658
+4848,28028
+4849,32473
+4850,60120
+4851,28801,60611
+4852,79041
+4853,56230
+4854,60448,37204
+4855,51186
+4856,29653
+4857,77192
+4858,56119
+4859,7658
+4860,55423
+4861,15623
+4862,15622
+4863,8360
+4864,8360
+4865,22850
+4866,39679
+4867,65960
+4868,69998
+4869,21720
+4870,14504
+4871,39608
+4872,39608
+4873,27763
+4874,35242
+4875,61258
+4876,65958
+4877,56246
+4878,21719
+4879,35656
+4880,29621
+4881,20425
+4882,35243
+4883,52887
+4884,70656
+4885,81781
+4886,61622
+4887,39679
+4888,39678
+4889,29621
+4890,55303
+4891,61258
+4892,39679
+4893,55304
+4894,52887
+4895,67039
+4896,75344
+4897,41879
+4898,20756
+4899,35874
+4900,52886
+4901,52887
+4902,60448
+4903,81781
+4904,62922
+4905,55081
+4906,7734
+4907,18520
+4908,70166
+4909,21963
+4910,47128
+4911,37908
+4912,19234,70426
+4913,60448
+4914,55081
+4915,29509
+4916,35242
+4917,29621
+4918,56119
+4919,21012,56099
+4920,35097
+4921,21963
+4922,81781
+4923,11974
+4924,20756
+4925,20756
+4926,24325
+4927,24321
+4928,20756
+4929,14493
+4930,40303
+4931,40299
+4932,60448
+4933,24321
+4934,35097
+4935,39713
+4936,78434
+4937,6952
+4938,53480
+4939,32547
+4940,61254
+4941,61252
+4942,35097
+4943,52887
+4944,29621
+4945,39679
+4946,35243
+4947,29621
+4948,52886
+4949,52887
+4950,67039
+4951,21962
+4952,21963
+4953,65960
+4954,20756
+4955,35242
+4956,35097
+4957,52887
+4958,42337
+4959,57140
+4960,35097
+4961,19385
+4962,48597
+4963,35473
+4964,55223
+4965,20756
+4966,20425
+4967,29621
+4968,40012
+4969,20472
+4970,72990
+4971,34198
+4972,34198
+4973,34198
+4974,34198
+4975,34198
+4976,39545
+4977,38091
+4978,57561
+4979,65531
+4980,33353
+4981,77192
+4982,283
+4983,56119,62089
+4984,41446
+4985,277
+4986,29509,62089
+4987,66703
+4988,29509
+4989,60967
+4990,29509
+4991,76135,45839
+4992,46459
+4993,35918
+4994,35918
+4995,35918
+4996,35918
+4997,35918
+4998,46459
+4999,46459
+5000,46459
+5001,46459
+5002,35918
+5003,35918
+5004,35918
+5005,35918
+5006,35918
+5007,35918
+5008,35918
+5009,35918
+5010,46459
+5011,35918
+5012,76134
+5013,81781
+5014,235
+5015,77192
+5016,29509
+5017,35097
+5018,56119,62089
+5019,37408
+5020,24325
+5021,67039
+5022,52887
+5023,29190
+5024,64747
+5025,54813
+5026,81801
+5027,75828
+5028,62852,67582
+5029,48957
+5030,32456
+5031,18091
+5032,41593
+5033,32456
+5034,36008
+5035,55022
+5036,58104
+5037,5035
+5038,72960
+5039,50878
+5040,28889
+5041,66440,71603
+5042,14493
+5043,42531
+5044,3281
+5045,76782
+5046,66703
+5047,9930
+5048,81467
+5049,47394
+5050,39803
+5051,76782
+5052,39802
+5053,16703
+5054,68520
+5055,3705
+5056,35474
+5057,43910
+5058,43104
+5059,29509
+5060,31041
+5061,37908
+5062,61622,29737
+5063,59413
+5064,22402,42436
+5065,60611
+5066,63295
+5067,64453
+5068,31542
+5069,6945
+5070,29489
+5071,794
+5072,58103
+5073,6952
+5074,65581
+5075,36049
+5076,65762
+5077,21963
+5078,27763
+5079,29509
+5080,21719
+5081,39679
+5082,81781
+5083,81781
+5084,29509
+5085,2080
+5086,61796
+5087,18748
+5088,72966
+5089,62390
+5090,35243
+5091,73342
+5092,42436,53277
+5093,52397,31041
+5094,35917
+5095,50346
+5096,73650
+5097,43809
+5098,51396
+5099,50628,1417
+5100,31542
+5101,65960
+5102,21963
+5103,39803
+5104,55081
+5105,81683
+5106,55081
+5107,81687
+5108,71187
+5109,56246,19389
+5110,15160,51640
+5111,8162
+5112,56171
+5113,81781
+5114,54980
+5115,24321
+5116,24325
+5117,29509
+5118,19231
+5119,21596
+5120,52660
+5121,53717
+5122,23440
+5123,65959
+5124,24325
+5125,35097
+5126,35096
+5127,21719
+5128,35097
+5129,27625
+5130,50610
+5131,62853
+5132,35474
+5133,55081
+5134,67039
+5135,61622,36381
+5136,65960
+5137,39679
+5138,39679
+5139,52887
+5140,39678
+5141,39679
+5142,32538
+5143,29549
+5144,29509,62089
+5145,56119,62089
+5146,8319
+5147,81251
+5148,29509,62089
+5149,77192
+5150,21765
+5151,55692
+5152,58798
+5153,52886
+5154,31041
+5155,78725
+5156,35342
+5157,29509,62089
+5158,50912
+5159,81781
+5160,24325
+5161,31616
+5162,74600
+5163,15311
+5164,33797
+5165,32645
+5166,32642
+5167,1755
+5168,32953
+5169,77192,62089
+5170,20430,38509
+5171,76134
+5172,50205
+5173,20120
+5174,29509
+5175,46148
+5176,30584
+5177,29509,62089
+5178,57671,37918
+5179,7658
+5180,29509
+5181,23693
+5182,35243
+5183,71347
+5184,81781
+5185,29509,62089
+5186,19234
+5187,56119
+5188,52887
+5189,29509
+5190,18088
+5191,56115
+5192,23100
+5193,30166
+5194,32497
+5195,38914
+5196,37582
+5197,61251
+5198,41877
+5199,23586
+5200,23586
+5201,55022
+5202,62266
+5203,58462
+5204,35282
+5205,32370
+5206,24371
+5207,45813
+5208,35103
+5209,35103
+5210,31041
+5211,7658
+5212,1511
+5213,3281
+5214,71603,70426
+5215,21720
+5216,21719
+5217,51068
+5218,47830
+5219,71996
+5220,15311
+5221,21720
+5222,2368
+5223,48554
+5224,28438
+5225,22402
+5226,59811
+5227,51894
+5228,75940
+5229,31894
+5230,1317
+5231,43104
+5232,11881
+5233,43104
+5234,43104
+5235,3386
+5236,68544
+5237,43104
+5238,6624
+5239,6637
+5240,5777
+5241,30937
+5242,66052
+5243,1319
+5244,35787
+5245,11018
+5246,73555
+5247,77192
+5248,32473
+5249,32456
+5250,75958
+5251,55487
+5252,3701
+5253,39802
+5254,26827
+5255,44241
+5256,40752
+5257,27167
+5258,45115
+5259,51400
+5260,3230
+5261,3228
+5262,29553
+5263,32345
+5264,46521
+5265,21959
+5266,68678
+5267,48028,48768
+5268,77192
+5269,35096
+5270,61258
+5271,45758
+5272,40018
+5273,66703
+5274,55081
+5275,35097
+5276,60620
+5277,26884
+5278,25303
+5279,40299
+5280,40303
+5281,21720
+5282,21963
+5283,27763
+5284,55081
+5285,60592
+5286,29621
+5287,21963
+5288,61254
+5289,57277
+5290,76134
+5291,76134,55944
+5292,5297
+5293,5297
+5294,5297
+5295,5297
+5296,32362
+5297,30693
+5298,24325
+5299,60592
+5300,15822
+5301,55022
+5302,15820
+5303,28747
+5304,65959
+5305,22808
+5306,21996
+5307,65767
+5308,7420
+5309,65581
+5310,20756
+5311,74811
+5312,9043
+5313,56119
+5314,29509
+5315,48768
+5316,63488
+5317,20804
+5318,49817
+5319,49817
+5320,11961
+5321,13769
+5322,9043
+5323,9043
+5324,9043
+5325,9043
+5326,9043
+5327,9043
+5328,9043
+5329,9043
+5330,62914
+5331,9043,67582
+5332,49817
+5333,9043,67582
+5334,72429
+5335,76134
+5336,49817
+5337,9043
+5338,72960
+5339,48957
+5340,49817
+5341,55081
+5342,22821
+5343,24325
+5344,283
+5345,277
+5346,308
+5347,37704
+5348,36047
+5349,32326
+5350,34389
+5351,32660
+5352,45813
+5353,55022
+5354,5353
+5355,12340
+5356,21432
+5357,21433
+5358,29509
+5359,81781
+5360,22649
+5361,55081
+5362,11714
+5363,37908
+5364,77185
+5365,28801
+5366,20339
+5367,35917
+5368,63459
+5369,29509
+5370,60611
+5371,60620
+5372,52887
+5373,42436,13746
+5374,60536
+5375,40012
+5376,57480
+5377,77192
+5378,79591
+5379,61086
+5380,39803
+5381,47505
+5382,57671
+5383,55423
+5384,79850
+5385,55423
+5386,57474
+5387,8644
+5388,5386
+5389,29509
+5390,3295
+5391,55022
+5392,35096
+5393,35097
+5394,55081
+5395,35242
+5396,35243
+5397,40303
+5398,43104
+5399,18149
+5400,56171
+5401,24325
+5402,24325
+5403,65960
+5404,52887
+5405,65959
+5406,29621
+5407,19341,37324
+5408,21719
+5409,66703
+5410,64250
+5411,62914
+5412,55951
+5413,31014
+5414,40299
+5415,40303
+5416,55081
+5417,40299
+5418,52886
+5419,21963
+5420,52887
+5421,55081
+5422,55081
+5423,20426
+5424,31041
+5425,73014
+5426,63327
+5427,52887
+5428,81781
+5429,61622,36381
+5430,14071
+5431,14071
+5432,66703
+5433,60216
+5434,46149
+5435,12045
+5436,49162
+5437,43672
+5438,48957
+5439,81781
+5440,28938
+5441,77192
+5442,55081
+5443,40299
+5444,40303
+5445,8652
+5446,55081
+5447,47505
+5448,7420
+5449,3701
+5450,24325
+5451,24321
+5452,20756
+5453,40299
+5454,35097
+5455,19966
+5456,81781
+5457,20999
+5458,39803
+5459,21963
+5460,8409
+5461,21963
+5462,16342
+5463,22420
+5464,60448
+5465,35096
+5466,35097
+5467,37043
+5468,70707
+5469,65959
+5470,21963
+5471,21963
+5472,55081
+5473,63460
+5474,37815
+5475,39294
+5476,69363
+5477,43104
+5478,41882
+5479,79650,31041
+5480,14829
+5481,72559
+5482,71334
+5483,5777
+5484,46901
+5485,18088
+5486,56115
+5487,72193
+5488,28546
+5489,29555
+5490,66341
+5491,31175
+5492,18869
+5493,37582
+5494,41398
+5495,45316
+5496,36166
+5497,48870
+5498,74815
+5499,50597
+5500,25770
+5501,2498
+5502,61266
+5503,62910
+5504,67474
+5505,69352
+5506,71500
+5507,71933
+5508,72540
+5509,75548
+5510,77227
+5511,80079
+5512,80080
+5513,5501
+5514,5501
+5515,40299
+5516,40303
+5517,52887
+5518,77192
+5519,22056
+5520,20427
+5521,15311
+5522,55951
+5523,65527,46149
+5524,15311
+5525,60822
+5526,55081
+5527,54980
+5528,67039
+5529,77192
+5530,35243
+5531,22642
+5532,81687
+5533,67039
+5534,15326
+5535,41879
+5536,19629
+5537,19629
+5538,41878
+5539,41879
+5540,41878
+5541,41882
+5542,29621
+5543,60592
+5544,47925
+5545,38173
+5546,76664
+5547,6952
+5548,35242
+5549,44702
+5550,21719
+5551,20756
+5552,6945
+5553,21720
+5554,29509
+5555,37150
+5556,40299
+5557,24325
+5558,60448
+5559,60448
+5560,55081
+5561,35243
+5562,21720
+5563,67039
+5564,52660
+5565,16912
+5566,40303
+5567,55081
+5568,45670
+5569,3701
+5570,55081
+5571,43104
+5572,841
+5573,841
+5574,13815
+5575,76135
+5576,25303
+5577,5576
+5578,5576
+5579,5576,11852
+5580,5576
+5581,5576
+5582,5576
+5583,5576
+5584,5576
+5585,5576
+5586,5576
+5587,3281
+5588,24199
+5589,63863
+5590,52604
+5591,68520
+5592,45873
+5593,52887
+5594,283
+5595,40303
+5596,52886
+5597,39678
+5598,61258
+5599,39679
+5600,52887
+5601,55081
+5602,52660
+5603,76134,46899
+5604,76135
+5605,11472
+5606,21996,53480
+5607,59126
+5608,27763
+5609,6952
+5610,15311
+5611,52887
+5612,52886
+5613,65960
+5614,25302
+5615,55081
+5616,35242,5617
+5617,61258
+5618,31542
+5619,8331
+5620,29509,62095
+5621,27118
+5622,21963
+5623,52887
+5624,8302
+5625,52886
+5626,52887
+5627,67039
+5628,55080
+5629,55081
+5630,21963
+5631,55081
+5632,21963
+5633,21720
+5634,6952
+5635,24325
+5636,283
+5637,5692
+5638,75684
+5639,28801
+5640,40514
+5641,58798
+5642,67039
+5643,24325
+5644,6952
+5645,35243
+5646,41297
+5647,67039
+5648,35243
+5649,41878
+5650,41882
+5651,41879
+5652,52887
+5653,51397
+5654,61252
+5655,61254
+5656,70033
+5657,70033
+5658,60611
+5659,71584
+5660,38332
+5661,52886
+5662,52887
+5663,35243
+5664,5666
+5665,724
+5666,56171
+5667,33408
+5668,81635
+5669,40299
+5670,40303
+5671,67957
+5672,21754
+5673,21754
+5674,29509
+5675,52904
+5676,7734
+5677,7735
+5678,29509
+5679,8647
+5680,32473
+5681,16058
+5682,8650,64250
+5683,25303
+5684,1719
+5685,1718
+5686,55022
+5687,24325
+5688,49817
+5689,49817
+5690,49817
+5691,283
+5692,277
+5693,55022
+5694,79850
+5695,63651
+5696,30374
+5697,49079
+5698,73863
+5699,40303
+5700,32456
+5701,8397
+5702,52887
+5703,29621
+5704,20756
+5705,61258
+5706,35243
+5707,40303
+5708,43116
+5709,22450
+5710,5709
+5711,5709
+5712,5709
+5713,5709
+5714,5709
+5715,54184
+5716,52887
+5717,24325
+5718,29509
+5719,42436
+5720,35097
+5721,63459
+5722,29621
+5723,35874
+5724,53480
+5725,65960
+5726,21720
+5727,52887
+5728,52887
+5729,29621
+5730,35875
+5731,65960
+5732,35097
+5733,46510
+5734,21963
+5735,24325
+5736,50053
+5737,20756
+5738,67039
+5739,67038
+5740,52887
+5741,66703
+5742,6867
+5743,72388
+5744,21720
+5745,5765,277
+5746,31656
+5747,5765,1319
+5748,22671
+5749,78024
+5750,44976
+5751,49842
+5752,58356
+5753,81520
+5754,77192
+5755,36381
+5756,49136
+5757,59331
+5758,33422
+5759,17465,5758
+5760,20756
+5761,6426
+5762,21754
+5763,31656
+5764,30391
+5765,48210
+5766,28269
+5767,43104
+5768,81669
+5769,21814
+5770,26457
+5771,24428
+5772,24504
+5773,25132
+5774,41587
+5775,70302
+5776,28862
+5777,32456
+5778,32704
+5779,32837
+5780,33271
+5781,33408
+5782,34959
+5783,35992
+5784,67608
+5785,66592
+5786,46444
+5787,63898
+5788,43566
+5789,44758
+5790,45170
+5791,46567
+5792,32915
+5793,50179
+5794,50426
+5795,50934
+5796,51867
+5797,78017
+5798,52664
+5799,57254
+5800,66792
+5801,59405
+5802,60024
+5803,46753
+5804,64383
+5805,37344
+5806,66901
+5807,67819
+5808,67836
+5809,68555
+5810,26639
+5811,70320
+5812,71028
+5813,71500
+5814,72157
+5815,74809
+5816,78024
+5817,77101
+5818,57289
+5819,80340
+5820,80354
+5821,80324
+5822,81153
+5823,81454
+5824,39860
+5825,81572
+5826,21919
+5827,61748
+5828,41882
+5829,41879
+5830,6840
+5831,37081
+5832,29621
+5833,55951
+5834,20756
+5835,24321
+5836,20756
+5837,24379,46148
+5838,67668
+5839,20575
+5840,35097
+5841,52887
+5842,11472
+5843,55081
+5844,29621
+5845,40303
+5846,10935
+5847,13817
+5848,72283
+5849,21432
+5850,20575
+5851,29509
+5852,81462
+5853,62512
+5854,1319
+5855,55423
+5856,74666
+5857,56127
+5858,41879
+5859,29549
+5860,75823
+5861,277
+5862,9215
+5863,67883
+5864,35097
+5865,65960
+5866,74867
+5867,47673
+5868,36055
+5869,61967
+5870,44567
+5871,40299
+5872,20756
+5873,25303
+5874,29621
+5875,57671
+5876,2751
+5877,50215
+5878,59903
+5879,63586
+5880,68994
+5881,63327
+5882,25303
+5883,62853,31949
+5884,25303
+5885,51068
+5886,51677
+5887,47833
+5888,19983
+5889,63187
+5890,43682
+5891,71334
+5892,21938
+5893,21963
+5894,71332
+5895,36350
+5896,44952
+5897,61258
+5898,39803
+5899,35097
+5900,44953
+5901,49817
+5902,60611
+5903,75744
+5904,76196
+5905,19231
+5906,19231
+5907,49817
+5908,29509
+5909,11717
+5910,44703
+5911,24325
+5912,24321
+5913,20756
+5914,48957
+5915,38545
+5916,50339
+5917,31041,60639
+5918,67668,39614
+5919,20575
+5920,35917
+5921,39803
+5922,20635,42481
+5923,1752
+5924,27204
+5925,65579
+5926,28801,60611
+5927,29509
+5928,25984
+5929,22984
+5930,31846
+5931,29549
+5932,59380
+5933,77192
+5934,77192
+5935,62176
+5936,48957
+5937,15039
+5938,49817
+5939,56230
+5940,71624
+5941,81781
+5942,8290
+5943,81687
+5944,81683
+5945,81687
+5946,40807
+5947,54632
+5948,54632
+5949,54632
+5950,54632
+5951,54632
+5952,75958
+5953,75958
+5954,47265
+5955,62852,76782
+5956,33928
+5957,39803
+5958,74525
+5959,11480
+5960,57109
+5961,52811
+5962,14504
+5963,39803
+5964,58798
+5965,31533
+5966,77192
+5967,77192
+5968,77192
+5969,6984
+5970,60611
+5971,50604
+5972,59139
+5973,19658
+5974,18444
+5975,19649
+5976,50610
+5977,50610
+5978,47925
+5979,32155
+5980,47925
+5981,40063
+5982,32155
+5983,19649
+5984,49372,50610
+5985,50610
+5986,32155
+5987,47925
+5988,34647
+5989,25016
+5990,28269
+5991,14644
+5992,47925
+5993,61796
+5994,59380
+5995,71557
+5996,27738
+5997,21963
+5998,52886
+5999,52887
+6000,40012
+6001,6054
+6002,55951
+6003,57963,20517
+6004,21720
+6005,36602
+6006,81781
+6007,49817
+6008,7766
+6009,49817
+6010,7766
+6011,7766
+6012,56802
+6013,36602
+6014,53480
+6015,57140
+6016,50604
+6017,27763
+6018,29509
+6019,67049,66500
+6020,43104
+6021,55081
+6022,57140
+6023,29509
+6024,57187
+6025,69197
+6026,35097
+6027,31279
+6028,81781
+6029,30584
+6030,20339
+6031,22386
+6032,4389
+6033,9444
+6034,32456
+6035,48957
+6036,36008
+6037,13590
+6038,12225
+6039,81683
+6040,61258
+6041,29621
+6042,56142
+6043,13746
+6044,39294
+6045,50610
+6046,19649
+6047,28080
+6048,43104
+6049,5777
+6050,5765
+6051,62733
+6052,1718
+6053,55022
+6054,17497
+6055,29509
+6056,35243
+6057,20339
+6058,4389
+6059,5576
+6060,5576
+6061,5576
+6062,5576
+6063,5576
+6064,9444
+6065,17645
+6066,75958
+6067,51558
+6068,40288
+6069,40288
+6070,28842
+6071,28801
+6072,28801
+6073,70860
+6074,61159
+6075,54980
+6076,54979
+6077,40303
+6078,40299
+6079,41879
+6080,41878
+6081,61622,48634
+6082,70426
+6083,81781
+6084,35243
+6085,35242
+6086,33928
+6087,77192
+6088,46059
+6089,42436,72990
+6090,41879
+6091,5777
+6092,81781
+6093,36892
+6094,21397
+6095,73650
+6096,49340
+6097,1919
+6098,22649
+6099,81781
+6100,38439
+6101,5190
+6102,36381
+6103,38828
+6104,67039
+6105,29509
+6106,66703
+6107,46070
+6108,61086
+6109,14290
+6110,77192
+6111,39658
+6112,8397
+6113,23582
+6114,34990
+6115,702
+6116,42050
+6117,61942
+6118,71074
+6119,73576
+6120,82020
+6121,603
+6122,51148
+6123,28801
+6124,21209
+6125,21208
+6126,67039
+6127,4815
+6128,12711
+6129,41879
+6130,3281
+6131,19231
+6132,19234
+6133,19234
+6134,61086
+6135,33797
+6136,17434
+6137,19649
+6138,20756
+6139,68801
+6140,75958
+6141,75958
+6142,48028
+6143,81781
+6144,13746
+6145,48028
+6146,48028
+6147,40012
+6148,51404
+6149,48597
+6150,50907
+6151,32527
+6152,54617
+6153,19649
+6154,81781
+6155,21720
+6156,21719
+6157,61316
+6158,21720
+6159,70764
+6160,24321
+6161,24325
+6162,21719
+6163,1549
+6164,31542
+6165,12045
+6166,29509
+6167,42237
+6168,77192
+6169,77192
+6170,61086
+6171,29509
+6172,29509
+6173,66703
+6174,30986
+6175,14504
+6176,67039
+6177,22032
+6178,46018
+6179,52887
+6180,71603
+6181,60611
+6182,59875
+6183,72990
+6184,72519
+6185,35243
+6186,35242
+6187,38565
+6188,69335
+6189,71347
+6190,53480,60611
+6191,20529
+6192,69237
+6193,20339
+6194,4389
+6195,9444
+6196,51148
+6197,496
+6198,497
+6199,72990
+6200,65767
+6201,66703
+6202,67039
+6203,58798
+6204,81781
+6205,5777
+6206,6298
+6207,21428
+6208,7766
+6209,37693
+6210,67582
+6211,47059
+6212,41593
+6213,58104
+6214,22640
+6215,22645
+6216,31041
+6217,60611
+6218,42436,35103
+6219,603
+6220,80106
+6221,67039
+6222,74500
+6223,45280
+6224,5765
+6225,19647
+6226,39803
+6227,39803
+6228,72966
+6229,29509
+6230,62956,81781,617,68290
+6231,46148
+6232,21720
+6233,70320
+6234,35097
+6235,24325
+6236,76782
+6237,76782
+6238,35097
+6239,20946
+6240,77192
+6241,49817
+6242,7766
+6243,49817
+6244,7766
+6245,5411
+6246,49817
+6247,49817
+6248,49817
+6249,49817
+6250,77192
+6251,61086
+6252,63488
+6253,55495
+6254,59380
+6255,72961
+6256,30391
+6257,26105
+6258,68783
+6259,56119,62089
+6260,24325
+6261,24321
+6262,38828
+6263,35243
+6264,14516
+6265,68520
+6266,56115
+6267,18882
+6268,2938
+6269,41153
+6270,6152
+6271,43104
+6272,62176
+6273,66341
+6274,6298
+6275,65579
+6276,80106
+6277,78477
+6278,80868
+6279,26354
+6280,75204
+6281,36101
+6282,36452
+6283,41446
+6284,41606
+6285,45625
+6286,74067
+6287,25729
+6288,69408
+6289,50597
+6290,34613
+6291,50364
+6292,51834
+6293,53150
+6294,40241
+6295,59497
+6296,61776
+6297,69673
+6298,43104
+6299,53030
+6300,44232
+6301,35908
+6302,75548
+6303,35557
+6304,6281
+6305,5765
+6306,29079
+6307,60611
+6308,50985
+6309,29509
+6310,56520,20535
+6311,40986
+6312,63603
+6313,70874
+6314,12045
+6315,12045
+6316,48028
+6317,80591
+6318,39623
+6319,37127
+6320,62626
+6321,22019
+6322,3695
+6323,33728
+6324,43104
+6325,72961
+6326,12045
+6327,29771
+6328,14290
+6329,24325
+6330,24321
+6331,35595,61415
+6332,82163
+6333,57140
+6334,37127
+6335,43104
+6336,5191
+6337,18088
+6338,21443
+6339,51397
+6340,8409
+6341,14301
+6342,38828,56246
+6343,37204
+6344,27763
+6345,61622
+6346,25175
+6347,14290
+6348,36381
+6349,58798,21674
+6350,51702
+6351,63459
+6352,20756
+6353,60611
+6354,79850
+6355,81781
+6356,36381
+6357,79850
+6358,29509
+6359,18079
+6360,277
+6361,69083
+6362,21719
+6363,24325
+6364,21444,37908
+6365,28938
+6366,24325
+6367,48768
+6368,35243
+6369,35242
+6370,56119
+6371,40303
+6372,49833
+6373,30218
+6374,24224
+6375,24321
+6376,24325
+6377,60445
+6378,55952
+6379,41879
+6380,25175
+6381,25175
+6382,51068
+6383,43812
+6384,81463
+6385,67272
+6386,34989
+6387,19231
+6388,283
+6389,41446
+6390,277
+6391,60611
+6392,81781
+6393,56119
+6394,21420
+6395,5111
+6396,3297
+6397,40299
+6398,20756
+6399,77192
+6400,40303
+6401,6952
+6402,3278
+6403,3279
+6404,29509
+6405,21995
+6406,77192
+6407,58798
+6408,39803
+6409,55423
+6410,48957
+6411,55951
+6412,43104
+6413,6514
+6414,37127,35342
+6415,24321
+6416,67039
+6417,20575
+6418,40303
+6419,21963
+6420,40303
+6421,79850
+6422,43104
+6423,14516
+6424,35492
+6425,48210
+6426,67920
+6427,65533
+6428,43104
+6429,21996
+6430,21963
+6431,76330
+6432,37204
+6433,21720
+6434,51640
+6435,65764
+6436,51843
+6437,20756
+6438,24325
+6439,24325
+6440,24325
+6441,35787
+6442,23693
+6443,77192
+6444,24325
+6445,53480
+6446,44446
+6447,81781
+6448,68290
+6449,60620
+6450,77192
+6451,23471
+6452,48957
+6453,29509,62089
+6454,23471
+6455,65960
+6456,283
+6457,277
+6458,55022
+6459,21443
+6460,40303
+6461,60611
+6462,66703
+6463,72990
+6464,56133,72283
+6465,7658
+6466,66703
+6467,20756
+6468,72961
+6469,55951
+6470,6426
+6471,69042,66528
+6472,19234
+6473,61622,36381
+6474,35243
+6475,46148
+6476,81781
+6477,30405
+6478,13746
+6479,47503
+6480,42436,59576
+6481,29509
+6482,70426,19234
+6483,21444
+6484,66703
+6485,19231
+6486,18748
+6487,24321
+6488,24325
+6489,7658
+6490,29509,62095
+6491,6298
+6492,55423
+6493,81781
+6494,29621
+6495,21719
+6496,21720
+6497,40299
+6498,40303
+6499,41879
+6500,41877
+6501,41877
+6502,41879
+6503,41877
+6504,20426
+6505,29621
+6506,31121,38029
+6507,56127
+6508,8291
+6509,48768
+6510,52504
+6511,51626,55091
+6512,21444
+6513,58798
+6514,3278
+6515,43104
+6516,35243
+6517,7658
+6518,53480
+6519,24325
+6520,65959
+6521,65960
+6522,24321
+6523,20756
+6524,39803
+6525,28801,60611
+6526,50604
+6527,35243
+6528,43104
+6529,52887
+6530,42381
+6531,29509,62089
+6532,41878
+6533,41879
+6534,36987
+6535,5350
+6536,21805
+6537,7467
+6538,22850
+6539,60611
+6540,32390
+6541,48851
+6542,81781
+6543,65959
+6544,21720
+6545,42410
+6546,21719
+6547,57140
+6548,35097
+6549,67462
+6550,31542
+6551,70209
+6552,60216
+6553,71853
+6554,40299
+6555,40303
+6556,17434
+6557,34416
+6558,43858
+6559,47925
+6560,25303
+6561,35342
+6562,57109,36381
+6563,52887
+6564,29509
+6565,31782
+6566,18871
+6567,16340
+6568,37693
+6569,67039
+6570,29509
+6571,8397
+6572,49817
+6573,29509,62089
+6574,35097
+6575,35096
+6576,61258
+6577,35097
+6578,41635
+6579,35097
+6580,41635
+6581,41635
+6582,41635
+6583,40303
+6584,65960
+6585,24325
+6586,29276
+6587,67039
+6588,46285
+6589,41878
+6590,41879
+6591,21719
+6592,52886
+6593,52887
+6594,21719
+6595,20756
+6596,21720
+6597,5501
+6598,9043
+6599,9043
+6600,9043
+6601,9043
+6602,9043
+6603,9043
+6604,53295,59588
+6605,56119
+6606,74625
+6607,66042
+6608,56119,62089
+6609,3969
+6610,702
+6611,1324
+6612,603
+6613,14638
+6614,3240
+6615,55022
+6616,24325
+6617,49951
+6618,67038
+6619,61258
+6620,21963
+6621,52886
+6622,52887
+6623,21963
+6624,5765
+6625,18088
+6626,603
+6627,30147
+6628,23582
+6629,23582
+6630,79608
+6631,50364
+6632,53616
+6633,41401
+6634,55022
+6635,69688
+6636,61680
+6637,8209
+6638,33486
+6639,71997
+6640,5777
+6641,14290
+6642,8170,974
+6643,40299
+6644,40303
+6645,65960
+6646,21719
+6647,21720
+6648,31041
+6649,52461
+6650,55952
+6651,63586
+6652,56189
+6653,21962
+6654,62938
+6655,68289
+6656,68782
+6657,77192
+6658,61086
+6659,19311
+6660,67039
+6661,283
+6662,277
+6663,55022
+6664,23740
+6665,416
+6666,68520,58798
+6667,46148
+6668,28801
+6669,30461,63255
+6670,5765
+6671,81781
+6672,75823
+6673,47497
+6674,19231
+6675,34746
+6676,43313
+6677,2126
+6678,81781,36381
+6679,19231
+6680,63459
+6681,1752
+6682,66703
+6683,34746
+6684,79338
+6685,21444
+6686,56246
+6687,35917,60611
+6688,51200,61622
+6689,21443
+6690,62176
+6691,55734
+6692,49817
+6693,55951
+6694,78038
+6695,48768,48028
+6696,39623
+6697,49341
+6698,40303
+6699,44702
+6700,61258
+6701,29621
+6702,61622
+6703,57671,21444
+6704,52887
+6705,52886
+6706,40065
+6707,57109,36381
+6708,1752
+6709,15181
+6710,58168
+6711,59380
+6712,35922
+6713,66344
+6714,15311
+6715,19234
+6716,29509
+6717,81781
+6718,72990
+6719,24325
+6720,24321
+6721,57140
+6722,29509,62089
+6723,15159
+6724,67675
+6725,35243
+6726,52887
+6727,35097
+6728,21963
+6729,67039
+6730,39679
+6731,39678
+6732,33753
+6733,45412
+6734,27276
+6735,21995,69083
+6736,31041
+6737,52886
+6738,52887
+6739,56244
+6740,52887
+6741,63459
+6742,21719
+6743,55081
+6744,24325
+6745,77192
+6746,29509
+6747,32473
+6748,31041
+6749,55081
+6750,67039
+6751,67039
+6752,21963
+6753,29621
+6754,44702
+6755,61258
+6756,29621
+6757,19497
+6758,76135,45839
+6759,27506
+6760,72961
+6761,34746
+6762,40299
+6763,40303
+6764,40299
+6765,40303
+6766,72281
+6767,57748
+6768,57750
+6769,40012
+6770,60611
+6771,53480
+6772,6766
+6773,9280
+6774,74131
+6775,33688
+6776,11714,63294
+6777,37908
+6778,61622,57109,36381
+6779,55951
+6780,81781
+6781,43104
+6782,71748
+6783,27738
+6784,76664
+6785,4751
+6786,69628
+6787,73555
+6788,74625
+6789,46536
+6790,75553
+6791,69697
+6792,81781
+6793,20559
+6794,48768
+6795,36381
+6796,77192
+6797,81781
+6798,40012
+6799,46145
+6800,25669
+6801,79458
+6802,80184
+6803,29509
+6804,81781
+6805,29509
+6806,50110
+6807,52886
+6808,52887
+6809,27763
+6810,81781
+6811,81781
+6812,5111
+6813,15814
+6814,31656
+6815,61622
+6816,38496
+6817,62459
+6818,39679
+6819,59576
+6820,40299
+6821,40303
+6822,3701
+6823,82163
+6824,35097
+6825,35096
+6826,29609,22922
+6827,48768
+6828,55081
+6829,39803
+6830,68656
+6831,65960
+6832,72990
+6833,63047
+6834,49997
+6835,81781
+6836,49817
+6837,69352
+6838,17744
+6839,74560
+6840,55952
+6841,20756
+6842,37081
+6843,11714
+6844,81781
+6845,55423
+6846,67462
+6847,35243
+6848,69751
+6849,29509,62089
+6850,16702
+6851,5239
+6852,21448
+6853,41000
+6854,61677
+6855,66926
+6856,81781
+6857,55950
+6858,28747
+6859,62956
+6860,40065
+6861,58853
+6862,31041
+6863,29509
+6864,19649
+6865,58798
+6866,40975
+6867,6952
+6868,21719
+6869,24325
+6870,75823
+6871,38517
+6872,33797,29197
+6873,81781
+6874,31041
+6875,22649
+6876,72769
+6877,71557
+6878,61258
+6879,55080
+6880,55081
+6881,56119
+6882,29509
+6883,27118
+6884,27118
+6885,43776
+6886,56127
+6887,61381
+6888,8242
+6889,77192
+6890,58050
+6891,73106
+6892,22332
+6893,29509
+6894,66703
+6895,55423
+6896,56127
+6897,61086
+6898,37043
+6899,19231
+6900,58798
+6901,42436,13746
+6902,19231,36381,32964,35400,76113
+6903,79650
+6904,21963
+6905,81781
+6906,81781
+6907,47194,38753,22305
+6908,25431
+6909,64535
+6910,56246
+6911,61622
+6912,29509
+6913,42020
+6914,24107
+6915,31974
+6916,31542
+6917,48957
+6918,81635
+6919,34662
+6920,80416
+6921,64747
+6922,77192
+6923,44437
+6924,62470
+6925,35944
+6926,66540
+6927,14638
+6928,50215
+6929,34746
+6930,76664,68202
+6931,44131
+6932,50215
+6933,64747
+6934,56127
+6935,34746
+6936,21443
+6937,27255
+6938,21443
+6939,15326
+6940,5765
+6941,34389
+6942,81751
+6943,1704
+6944,1704
+6945,5765
+6946,8209
+6947,3227
+6948,12522
+6949,20196
+6950,29639
+6951,4374
+6952,34389
+6953,54825,80512
+6954,54865
+6955,55022
+6956,29644
+6957,59365
+6958,61746
+6959,49341
+6960,38047
+6961,66703
+6962,50110
+6963,29509
+6964,71493
+6965,25499
+6966,64747
+6967,59380
+6968,59380
+6969,51559
+6970,81781
+6971,48957
+6972,68544
+6973,56917
+6974,29509
+6975,77192
+6976,29509
+6977,77192
+6978,25406
+6979,76633
+6980,62892
+6981,66042
+6982,20756
+6983,71465
+6984,26948
+6985,61196
+6986,62015,67582,5012
+6987,76134,3754,67582,5012
+6988,62015
+6989,62015
+6990,62015
+6991,62015
+6992,32456
+6993,36008
+6994,18091
+6995,29509
+6996,40065
+6997,62938
+6998,46215
+6999,35243
+7000,72990
+7001,14071
+7002,81781
+7003,35097
+7004,31041
+7005,40012
+7006,4708
+7007,37043
+7008,81781,51558
+7009,81781
+7010,71695
+7011,21963
+7012,44626
+7013,58798
+7014,67039
+7015,55081
+7016,20297
+7017,21444
+7018,61252
+7019,49485,35342
+7020,33928
+7021,42436
+7022,29509
+7023,81663
+7024,24321
+7025,20756
+7026,31542
+7027,24325
+7028,16342
+7029,21719
+7030,29509
+7031,48957
+7032,61086
+7033,48957
+7034,64747
+7035,56127
+7036,33639
+7037,48957
+7038,67039
+7039,79850
+7040,48957
+7041,72961
+7042,29509,62089
+7043,29509
+7044,23471
+7045,15820
+7046,17244
+7047,79648
+7048,79648
+7049,79645
+7050,3295
+7051,56119
+7052,3294
+7053,55022
+7054,29509
+7055,33728
+7056,3433
+7057,49341
+7058,66344
+7059,35097
+7060,48028
+7061,60435
+7062,43104
+7063,75078
+7064,61884
+7065,283
+7066,283
+7067,55022
+7068,7067
+7069,77641
+7070,56376
+7071,48111
+7072,277
+7073,41446
+7074,55022
+7075,39803
+7076,73502
+7077,19231
+7078,72961
+7079,8162
+7080,14870
+7081,15311
+7082,68668
+7083,43104
+7084,43104
+7085,74973
+7086,44599
+7087,44599
+7088,44599
+7089,44599
+7090,44599
+7091,44599
+7092,44599
+7093,44599,1509
+7094,44599
+7095,44599
+7096,44599
+7097,44599
+7098,44599
+7099,44599
+7100,44599
+7101,44599
+7102,44599
+7103,44599
+7104,44599
+7105,44599
+7106,44599
+7107,44599
+7108,57474
+7109,39803
+7110,52887
+7111,29509
+7112,31529
+7113,28413
+7114,11957
+7115,71493
+7116,11768
+7117,65763
+7118,49817
+7119,49817
+7120,49817
+7121,49817
+7122,49817
+7123,49817
+7124,62956
+7125,40969,71603
+7126,21963
+7127,35242
+7128,61258
+7129,37232
+7130,12138
+7131,15822
+7132,36008
+7133,15820
+7134,3281
+7135,3281
+7136,30585
+7137,55081
+7138,55081
+7139,40303
+7140,27763
+7141,39679
+7142,67039
+7143,24325
+7144,20756
+7145,41879
+7146,19629
+7147,19629
+7148,19629
+7149,24325
+7150,29621
+7151,41879
+7152,40303
+7153,21963
+7154,24325
+7155,24325
+7156,27763
+7157,8162
+7158,21719
+7159,44727
+7160,44727
+7161,52128
+7162,44727
+7163,44727
+7164,44727
+7165,51068
+7166,53454
+7167,29152
+7168,79658
+7169,65425
+7170,21963
+7171,63327
+7172,25303
+7173,55081
+7174,28801
+7175,48024
+7176,36892,67195
+7177,8551
+7178,61254
+7179,32926
+7180,38059
+7181,6952
+7182,33485
+7183,14493
+7184,80047
+7185,65959
+7186,24249,60448
+7187,51397
+7188,21720
+7189,24321
+7190,24325
+7191,67039
+7192,55080
+7193,55081
+7194,81687
+7195,63459
+7196,63460
+7197,20756
+7198,40299
+7199,40303
+7200,38624
+7201,54440
+7202,30020
+7203,77192
+7204,16479
+7205,63327
+7206,25303
+7207,81781
+7208,55718
+7209,67462
+7210,28801
+7211,724
+7212,11573
+7213,37693
+7214,29509,62089
+7215,32456
+7216,18091
+7217,32869,14516
+7218,28262
+7219,55022
+7220,35097
+7221,76782,67546
+7222,3599
+7223,3600
+7224,29509
+7225,16479
+7226,7734
+7227,24325
+7228,81781
+7229,42488
+7230,60620
+7231,72990
+7232,65960
+7233,81781
+7234,21996
+7235,617
+7236,56127
+7237,35097
+7238,35097
+7239,31041
+7240,81781
+7241,66824
+7242,24325
+7243,29509
+7244,40303
+7245,21719
+7246,63488
+7247,67039
+7248,54979
+7249,54980
+7250,21996
+7251,38828
+7252,28801
+7253,63586
+7254,81781
+7255,46444
+7256,26298
+7257,29509
+7258,28556
+7259,21996
+7260,33928
+7261,44703
+7262,35096
+7263,57671
+7264,52904
+7265,44952
+7266,29621
+7267,35097
+7268,35097
+7269,61254
+7270,35097
+7271,54615
+7272,75958
+7273,29509,62089
+7274,59296
+7275,77192
+7276,29509,62089
+7277,29509
+7278,72990
+7279,77214
+7280,9280
+7281,53480
+7282,54980
+7283,308
+7284,39803
+7285,35342
+7286,52461
+7287,81781
+7288,49817
+7289,32473
+7290,36055
+7291,49162
+7292,28546
+7293,56219
+7294,81781
+7295,36892
+7296,617
+7297,46140
+7298,55734
+7299,31041
+7300,55423
+7301,31041
+7302,42181
+7303,29509
+7304,23471
+7305,9899
+7306,19231
+7307,42436,3147
+7308,77192
+7309,29509,62089
+7310,56119
+7311,36892,67195
+7312,67277
+7313,5501
+7314,54677
+7315,31304
+7316,8653
+7317,7658
+7318,21963
+7319,20756
+7320,56119
+7321,67039
+7322,13746
+7323,30584
+7324,81781
+7325,7653
+7326,28556
+7327,68796
+7328,68796
+7329,29509
+7330,48768
+7331,75958
+7332,75958
+7333,29513
+7334,46149
+7335,28546
+7336,73650
+7337,19234
+7338,63669
+7339,9043
+7340,9043
+7341,77192
+7342,24325
+7343,55952
+7344,40065,35342
+7345,26602
+7346,63669
+7347,42436,53277
+7348,81781
+7349,81781
+7350,35342
+7351,51559
+7352,78308
+7353,72966
+7354,27763
+7355,13746
+7356,66824
+7357,19231
+7358,13746
+7359,53959
+7360,53959
+7361,52461
+7362,36381
+7363,81781
+7364,72966
+7365,60448
+7366,60435
+7367,78725
+7368,35917,68290
+7369,30153
+7370,42436,3147
+7371,81781
+7372,22305
+7373,12523
+7374,12525
+7375,12524
+7376,58798
+7377,28801
+7378,14871
+7379,77192
+7380,21444
+7381,61086
+7382,81065
+7383,27763
+7384,23184
+7385,77192
+7386,11961
+7387,18084
+7388,6298
+7389,56119
+7390,7734
+7391,18520
+7392,36381,72990
+7393,64827
+7394,36710
+7395,702
+7396,48957
+7397,29553
+7398,56127
+7399,603
+7400,12225
+7401,21443
+7402,44593
+7403,60611
+7404,68027
+7405,63002
+7406,24224
+7407,81781
+7408,55734
+7409,31041
+7410,37127
+7411,19234
+7412,13746
+7413,77192
+7414,50638
+7415,50638
+7416,50110,71334
+7417,21963
+7418,51702
+7419,63669
+7420,47505
+7421,60611,37408
+7422,65581
+7423,36381
+7424,6952
+7425,72961
+7426,51558
+7427,2923
+7428,20196,78659
+7429,50364
+7430,38439,29222
+7431,21443
+7432,6952
+7433,81781
+7434,55951
+7435,21963
+7436,67039
+7437,67039
+7438,29509,62089
+7439,60448
+7440,40986
+7441,38313
+7442,38735
+7443,62902
+7444,12045
+7445,37656
+7446,81781
+7447,48028
+7448,57140
+7449,43104
+7450,12045
+7451,55951
+7452,72966
+7453,21963
+7454,35097
+7455,21963
+7456,54979
+7457,35243
+7458,22643
+7459,22645
+7460,6952
+7461,21720
+7462,20756
+7463,21963
+7464,54980
+7465,42197
+7466,47505
+7467,47505
+7468,29513
+7469,33327
+7470,52660
+7471,62934
+7472,81781
+7473,36381
+7474,60620,60611
+7475,39679
+7476,65960
+7477,65959
+7478,18674
+7479,41878
+7480,41882
+7481,41879
+7482,56119,62089
+7483,45694
+7484,45694
+7485,45694
+7486,41878
+7487,16347
+7488,16340
+7489,67039
+7490,35097
+7491,65960
+7492,21719
+7493,51396
+7494,51397
+7495,29621
+7496,52887
+7497,40303
+7498,19231
+7499,81781
+7500,24321
+7501,20756
+7502,40303
+7503,40299
+7504,40303
+7505,44596
+7506,60611
+7507,617,58068
+7508,28801
+7509,50604
+7510,9043
+7511,9044
+7512,9043
+7513,9044
+7514,9043
+7515,9045,7766
+7516,9043
+7517,9044
+7518,9043
+7519,9043
+7520,9045,7766
+7521,9043
+7522,9043
+7523,63843
+7524,29621
+7525,19234
+7526,6952
+7527,68520
+7528,6952
+7529,67039
+7530,60448
+7531,29509
+7532,60448
+7533,55767
+7534,29509
+7535,31542
+7536,55951
+7537,62835
+7538,60448
+7539,23693
+7540,1751
+7541,1752
+7542,35243
+7543,49162,22922
+7544,35243
+7545,6952
+7546,6952
+7547,54980
+7548,68602
+7549,29509
+7550,27763
+7551,55951
+7552,53480,48768
+7553,49817
+7554,46148
+7555,52887
+7556,52904
+7557,76782
+7558,61622
+7559,21996
+7560,21996
+7561,65501
+7562,77192
+7563,31298,60435
+7564,29104
+7565,32473
+7566,57140
+7567,60611
+7568,64527
+7569,57140
+7570,8652
+7571,61622
+7572,57277
+7573,24325
+7574,35243
+7575,60639
+7576,11714
+7577,60611
+7578,60620
+7579,81781
+7580,25359
+7581,42030
+7582,6952
+7583,55081
+7584,29621
+7585,52887
+7586,65960
+7587,35874
+7588,67039
+7589,52886
+7590,20756
+7591,24325
+7592,20756
+7593,20756
+7594,21963
+7595,63461
+7596,67039
+7597,67039
+7598,28801
+7599,40299
+7600,40303
+7601,55081
+7602,63460
+7603,40299
+7604,40303
+7605,20946
+7606,28801
+7607,81781
+7608,81781
+7609,49817
+7610,8170,12401
+7611,35243
+7612,77192
+7613,53278
+7614,15623
+7615,15622
+7616,21963
+7617,71493,81781
+7618,68796
+7619,37614
+7620,8653
+7621,10585
+7622,21771
+7623,35339
+7624,71493
+7625,15159
+7626,46050
+7627,21525
+7628,30187
+7629,2126
+7630,53480
+7631,54184
+7632,30584
+7633,26602
+7634,55438
+7635,64380
+7636,77192
+7637,70033
+7638,51393
+7639,66428
+7640,64747
+7641,16858
+7642,55081
+7643,24325
+7644,11714
+7645,33592
+7646,2607
+7647,16768
+7648,76135
+7649,35474
+7650,31041,31279
+7651,42436,39859,72990
+7652,14870
+7653,65767
+7654,1319
+7655,64747
+7656,52371
+7657,26948
+7658,34389
+7659,65753
+7660,65754
+7661,43104
+7662,7652
+7663,21996,53480
+7664,77192
+7665,21720
+7666,21719
+7667,40303
+7668,35096
+7669,53704
+7670,57308
+7671,67039
+7672,21720
+7673,50192
+7674,40303
+7675,40303
+7676,52886
+7677,52886
+7678,52887
+7679,52887
+7680,40303
+7681,37693
+7682,62089,29509
+7683,21765
+7684,22516
+7685,42481
+7686,29621
+7687,81683
+7688,81687
+7689,24321
+7690,24325
+7691,48957
+7692,40008
+7693,24224
+7694,11476
+7695,11475
+7696,35103,11714
+7697,48210
+7698,789
+7699,75958
+7700,75958
+7701,56171
+7702,1319
+7703,72990
+7704,29509
+7705,60620
+7706,72966,62089
+7707,60448
+7708,32923
+7709,58024
+7710,29509,62089
+7711,60620
+7712,28801
+7713,35917
+7714,52444
+7715,12045
+7716,50110
+7717,19231
+7718,68520
+7719,28801
+7720,81781
+7721,21444
+7722,28801
+7723,61622
+7724,43701
+7725,57671,37918
+7726,61622
+7727,11873
+7728,77192
+7729,61086
+7730,36892,67195
+7731,14236
+7732,35243
+7733,29509
+7734,724
+7735,723
+7736,48957
+7737,58798
+7738,35097
+7739,57671
+7740,57671,37918
+7741,65960
+7742,55081
+7743,48768
+7744,66824,71603
+7745,72272
+7746,29513
+7747,40011
+7748,43112
+7749,81781
+7750,49485
+7751,42511
+7752,38173
+7753,40299
+7754,40303
+7755,72685
+7756,29621
+7757,42436
+7758,37081
+7759,37080
+7760,29621
+7761,67459
+7762,47265
+7763,3701
+7764,73018
+7765,29327
+7766,37693
+7767,61793
+7768,3701
+7769,5777,68868
+7770,26488
+7771,80589
+7772,81907
+7773,21719
+7774,21720
+7775,32473
+7776,34647
+7777,54617
+7778,26789
+7779,61622
+7780,58798
+7781,52886
+7782,29621
+7783,46387
+7784,46387
+7785,46387
+7786,7785
+7787,46387
+7788,29621
+7789,21963
+7790,21720
+7791,20756
+7792,29509
+7793,3294
+7794,55022
+7795,3295
+7796,52675
+7797,67037
+7798,31041
+7799,29509,62089
+7800,36008
+7801,56119
+7802,72966,62089
+7803,48957
+7804,27297
+7805,68290
+7806,50604
+7807,42436
+7808,76134
+7809,60786
+7810,81121
+7811,41638
+7812,52904
+7813,79039
+7814,13746
+7815,50638
+7816,48028
+7817,33753
+7818,30584
+7819,15499,13944
+7820,15500
+7821,19231
+7822,61622
+7823,40065,60435
+7824,76134,37204
+7825,24224
+7826,617
+7827,61622
+7828,57531
+7829,39803
+7830,55081
+7831,70426,19234
+7832,54211
+7833,39679
+7834,74973
+7835,63564
+7836,60639
+7837,21444
+7838,5350
+7839,63327
+7840,25303
+7841,25770
+7842,51397
+7843,51396
+7844,77192
+7845,56127
+7846,8551
+7847,12045
+7848,66965
+7849,74146
+7850,35097
+7851,38322
+7852,77192,62095
+7853,63668
+7854,66703
+7855,46779
+7856,46779
+7857,46779
+7858,26298
+7859,61622
+7860,29509,62089
+7861,61796,42436
+7862,35097
+7863,39803
+7864,47505
+7865,64250
+7866,19231
+7867,48768
+7868,46215
+7869,37191
+7870,74191
+7871,81781
+7872,81781,27508
+7873,22001
+7874,79850
+7875,29509
+7876,66703
+7877,55423
+7878,8148
+7879,81781
+7880,55423
+7881,22001
+7882,31539
+7883,50604
+7884,56535
+7885,39803
+7886,56246
+7887,66703
+7888,56189
+7889,68544
+7890,21770
+7891,60750
+7892,35243
+7893,43587
+7894,21996
+7895,28938
+7896,48028,22402,40012
+7897,81781
+7898,61622
+7899,61622,57109,36381
+7900,35243
+7901,2874
+7902,35342
+7903,56230
+7904,29509,62089
+7905,21963
+7906,68288
+7907,38404
+7908,74625
+7909,56189
+7910,60445
+7911,60448
+7912,31041
+7913,47503
+7914,35097
+7915,54441
+7916,56847
+7917,72961
+7918,80106
+7919,5765
+7920,17362
+7921,51393
+7922,55022
+7923,59365
+7924,67957
+7925,5777
+7926,16685
+7927,15622
+7928,35243
+7929,13735
+7930,81781
+7931,21444
+7932,37582
+7933,29509
+7934,26602
+7935,35917
+7936,617
+7937,29195,22350,55091
+7938,29509
+7939,1411
+7940,1412
+7941,55520,55091
+7942,69998
+7943,65531
+7944,50701
+7945,49817
+7946,60448
+7947,35474
+7948,40012
+7949,37204
+7950,69363
+7951,43112
+7952,32923
+7953,1751
+7954,81781
+7955,60620
+7956,24249
+7957,60611
+7958,51396
+7959,51397
+7960,57277
+7961,52886
+7962,21720
+7963,21963
+7964,29621
+7965,35243
+7966,29509
+7967,29509
+7968,41878
+7969,35243
+7970,77641
+7971,35096
+7972,41879
+7973,55952
+7974,31542
+7975,67038
+7976,52660
+7977,24325
+7978,24321
+7979,55081
+7980,55080
+7981,52886
+7982,52887
+7983,52887
+7984,20426
+7985,52886
+7986,52887
+7987,65959
+7988,21962
+7989,21963
+7990,29621
+7991,31542
+7992,52887
+7993,6952
+7994,41879
+7995,80477
+7996,41878
+7997,41879
+7998,80477
+7999,80477
+8000,80477
+8001,80477
+8002,80477
+8003,80477
+8004,80477
+8005,80477
+8006,80477
+8007,80477
+8008,41879
+8009,80477
+8010,20426
+8011,20426
+8012,20425
+8013,52887
+8014,52886
+8015,27763
+8016,24325
+8017,24325
+8018,6952
+8019,67039
+8020,35243
+8021,41882
+8022,29621
+8023,39678
+8024,39679
+8025,20756
+8026,20426
+8027,20422
+8028,21963
+8029,21996,60448
+8030,40303
+8031,55951
+8032,35242
+8033,35243
+8034,16912
+8035,20756
+8036,40303
+8037,52887
+8038,21720
+8039,80562
+8040,34389
+8041,21963
+8042,41878
+8043,41882
+8044,21720
+8045,20426
+8046,35243
+8047,51396
+8048,51397
+8049,65960
+8050,52887
+8051,20756
+8052,52887
+8053,21963
+8054,52886
+8055,20756
+8056,51068
+8057,43309
+8058,22669,62159
+8059,25303
+8060,25303
+8061,25303
+8062,25303
+8063,25303
+8064,66703
+8065,50215
+8066,57067
+8067,25303
+8068,25303
+8069,25303
+8070,25303
+8071,25303
+8072,39803
+8073,16912
+8074,29509
+8075,43104
+8076,1319
+8077,5765
+8078,59903
+8079,35243
+8080,24306
+8081,31041
+8082,46760
+8083,61622,36381
+8084,55951
+8085,48957
+8086,5777
+8087,51216
+8088,62029
+8089,62029
+8090,26914
+8091,5765
+8092,15039
+8093,8094
+8094,55022
+8095,21719
+8096,20756
+8097,65959
+8098,20422
+8099,40303
+8100,24325
+8101,24321
+8102,24325
+8103,40303
+8104,20756
+8105,52887
+8106,39509
+8107,39509
+8108,702
+8109,77192
+8110,603
+8111,51389
+8112,21754
+8113,33040
+8114,77341
+8115,21754
+8116,12045
+8117,11961,38439
+8118,15311
+8119,70426
+8120,24379,67582
+8121,76134,67582
+8122,65959
+8123,65959
+8124,80394
+8125,48957
+8126,6298
+8127,35097
+8128,38091
+8129,35243
+8130,55423
+8131,27763
+8132,52660
+8133,55423
+8134,496
+8135,497
+8136,702
+8137,66703
+8138,603
+8139,43104
+8140,8209
+8141,46304
+8142,65760
+8143,19649
+8144,21770
+8145,21720
+8146,15311
+8147,33928
+8148,67277
+8149,30900
+8150,14063
+8151,65760
+8152,20427
+8153,29509,62089
+8154,20120
+8155,29509
+8156,50878
+8157,26298
+8158,1324
+8159,39925
+8160,48254
+8161,67574
+8162,1319
+8163,65064
+8164,57472
+8165,19658
+8166,77641
+8167,67037
+8168,80275
+8169,39676
+8170,45412
+8171,29968
+8172,30094
+8173,31978
+8174,58088
+8175,37532
+8176,36089
+8177,27200
+8178,35971
+8179,45813
+8180,52560
+8181,52857
+8182,55022
+8183,55044
+8184,81161
+8185,81161
+8186,45813
+8187,61715
+8188,64073
+8189,64819
+8190,33080
+8191,60786
+8192,71446
+8193,65385
+8194,66016
+8195,66393
+8196,70033
+8197,8182
+8198,76664
+8199,51862
+8200,77341
+8201,702
+8202,21765
+8203,603
+8204,72966
+8205,8210
+8206,24321
+8207,66703
+8208,67039
+8209,56171
+8210,8209
+8211,59903
+8212,32456
+8213,1319
+8214,10289
+8215,72961
+8216,55022
+8217,7658
+8218,52886
+8219,31542
+8220,66703
+8221,33327
+8222,46149
+8223,78682,50112
+8224,29621
+8225,36381
+8226,21459
+8227,58798
+8228,1718
+8229,14638
+8230,80421
+8231,19382
+8232,68544
+8233,21443
+8234,38427
+8235,72961
+8236,62015
+8237,62015
+8238,62015
+8239,62015
+8240,29509
+8241,32527
+8242,57573
+8243,29621
+8244,20756
+8245,20756
+8246,39803
+8247,48480
+8248,31117
+8249,77192
+8250,21754
+8251,19649
+8252,71333
+8253,17434
+8254,17434
+8255,17434
+8256,32527
+8257,17434
+8258,17434
+8259,43949
+8260,75958
+8261,17434
+8262,17434
+8263,17434
+8264,58168
+8265,48597
+8266,80099
+8267,47128
+8268,26155
+8269,48599
+8270,47925
+8271,20120
+8272,52678
+8273,6426
+8274,36381
+8275,43104
+8276,6945
+8277,29489
+8278,68544
+8279,58103
+8280,702
+8281,15623
+8282,3652
+8283,81079
+8284,603
+8285,55951
+8286,35097
+8287,61086
+8288,1324
+8289,80106
+8290,1319
+8291,8210
+8292,8293
+8293,55022
+8294,8293
+8295,1324
+8296,1319
+8297,48597
+8298,43104
+8299,57985
+8300,8301
+8301,55022
+8302,48957
+8303,5777
+8304,24325
+8305,3754,67582,5012
+8306,24321
+8307,27763
+8308,51396
+8309,24325
+8310,6403
+8311,56115
+8312,80821
+8313,75958
+8314,75958
+8315,68544
+8316,30231
+8317,55022
+8318,65289
+8319,5765
+8320,8317
+8321,69352
+8322,64293
+8323,73207
+8324,75942
+8325,80358
+8326,81456
+8327,8319
+8328,8319
+8329,76664
+8330,723
+8331,724
+8332,50741
+8333,66703
+8334,66703
+8335,15835
+8336,81781
+8337,81781
+8338,67039
+8339,59565
+8340,64255
+8341,63327
+8342,25303
+8343,35243
+8344,48957
+8345,65960
+8346,66703
+8347,39803
+8348,29509
+8349,81781
+8350,59565
+8351,15311
+8352,5350
+8353,55127
+8354,29560
+8355,56119
+8356,75958
+8357,75958
+8358,75958
+8359,52342
+8360,26948
+8361,65764
+8362,68230
+8363,11480
+8364,24021
+8365,48957
+8366,56127
+8367,48957
+8368,35474
+8369,15475
+8370,58068
+8371,39678
+8372,61258
+8373,39679
+8374,20756
+8375,20756
+8376,52660
+8377,20756
+8378,49831
+8379,32456
+8380,1319
+8381,54440
+8382,55022
+8383,1319
+8384,59565
+8385,61086
+8386,29509
+8387,19713
+8388,49019
+8389,49019
+8390,49019
+8391,49019
+8392,49019
+8393,40299
+8394,40303
+8395,40299
+8396,40303
+8397,5765
+8398,14516
+8399,59903
+8400,46149
+8401,46431
+8402,80868
+8403,33639
+8404,36452
+8405,44273
+8406,46444
+8407,55022
+8408,59296
+8409,72961
+8410,67410
+8411,8209
+8412,5777
+8413,77192
+8414,48957
+8415,43928
+8416,33688
+8417,29197
+8418,31041
+8419,51718
+8420,283
+8421,41446
+8422,61086
+8423,50742
+8424,73863,20261
+8425,20427
+8426,48957
+8427,51397
+8428,24325
+8429,21720
+8430,45142
+8431,45142
+8432,45142
+8433,45142
+8434,45142
+8435,45142
+8436,45142
+8437,21719
+8438,8652
+8439,8551
+8440,8551
+8441,29509,62089
+8442,51068
+8443,54029
+8444,29509
+8445,47503
+8446,19438
+8447,55668
+8448,77192
+8449,77192
+8450,77192
+8451,42436,13746
+8452,19234,61796
+8453,81781
+8454,29549,61796
+8455,70426
+8456,70426
+8457,42436
+8458,72966
+8459,67039
+8460,40986
+8461,32224
+8462,29509,62095
+8463,59565
+8464,24224
+8465,61746
+8466,50173
+8467,21856
+8468,5513
+8469,20286
+8470,53480
+8471,75955
+8472,64496
+8473,74500
+8474,35917
+8475,81781
+8476,81781
+8477,48768
+8478,52094
+8479,74939
+8480,35097
+8481,52887
+8482,49185
+8483,29509,62089
+8484,74769
+8485,75955
+8486,35492
+8487,22382
+8488,66824
+8489,68796
+8490,65754
+8491,35474
+8492,75958
+8493,56119
+8494,51558
+8495,77192
+8496,75958
+8497,32456
+8498,48957
+8499,77641
+8500,59452
+8501,64240
+8502,24437
+8503,67280
+8504,18091
+8505,77641
+8506,36008
+8507,35097
+8508,81781
+8509,9043
+8510,9043
+8511,49817
+8512,66703
+8513,66703
+8514,32929
+8515,1016,67582
+8516,63586,60448
+8517,23471
+8518,39679
+8519,79591
+8520,33797,29197
+8521,59376
+8522,71493
+8523,76134
+8524,76135
+8525,19497
+8526,6984
+8527,14504
+8528,8536
+8529,21443
+8530,1324
+8531,77689
+8532,70033
+8533,57474
+8534,80460
+8535,568
+8536,1319
+8537,75958
+8538,70033
+8539,21337
+8540,22887
+8541,23054
+8542,23689
+8543,68122
+8544,79608
+8545,60899
+8546,26051
+8547,28104
+8548,28862
+8549,32645
+8550,34249
+8551,34389
+8552,40772
+8553,46444
+8554,46516
+8555,23586
+8556,51393
+8557,51462
+8558,53072
+8559,53072
+8560,54485
+8561,55022
+8562,55236
+8563,75266
+8564,57289
+8565,58647
+8566,77641
+8567,60213
+8568,28997
+8569,61510
+8570,72575
+8571,63005
+8572,40776
+8573,60899
+8574,73943
+8575,77223
+8576,58690
+8577,81752
+8578,51393
+8579,31417
+8580,81394
+8581,82020
+8582,52904
+8583,61622
+8584,21748
+8585,35097
+8586,55951
+8587,63564
+8588,21719
+8589,60216
+8590,67039
+8591,48957
+8592,57337
+8593,7783
+8594,80540
+8595,8214
+8596,8213
+8597,46384
+8598,71380
+8599,76981
+8600,35342,28938
+8601,75958
+8602,46149
+8603,54423,53295
+8604,63255
+8605,29509,62089
+8606,61622
+8607,13746
+8608,72966
+8609,33928
+8610,40986
+8611,60899
+8612,13815
+8613,13817
+8614,20858
+8615,75958
+8616,61086
+8617,35917
+8618,21444
+8619,81781
+8620,63327
+8621,25303
+8622,29509
+8623,79591
+8624,49817
+8625,76134,3754,67582,5012
+8626,33728
+8627,3433
+8628,29509
+8629,37582
+8630,49929
+8631,56119
+8632,75958
+8633,78100
+8634,74344
+8635,66977
+8636,56701
+8637,4374
+8638,43766
+8639,74067
+8640,70033
+8641,51558
+8642,65758
+8643,3704
+8644,15785,8647,63327
+8645,7657
+8646,37127,51991
+8647,60216
+8648,49181
+8649,70890
+8650,8647
+8651,52371
+8652,26948
+8653,65762
+8654,67408
+8655,40012
+8656,71315
+8657,64250,8650
+8658,11480
+8659,61622
+8660,21459,6888
+8661,8813
+8662,29509
+8663,72990
+8664,32363
+8665,79650,31041
+8666,29509
+8667,45853
+8668,78647
+8669,25303
+8670,74921
+8671,68869
+8672,55951
+8673,45813
+8674,45813
+8675,63327
+8676,25303
+8677,39859
+8678,29197
+8679,29509
+8680,6846,25303
+8681,9043
+8682,1016,5848,67582
+8683,76134,62525,3754,67582,5012
+8684,59376
+8685,30865
+8686,36135
+8687,39803
+8688,62015
+8689,62015
+8690,62015
+8691,36738
+8692,45847,67582
+8693,21765
+8694,78725
+8695,13746
+8696,13746
+8697,81781,51148
+8698,77192
+8699,71639
+8700,42436
+8701,10300
+8702,38676
+8703,44560
+8704,60611
+8705,60611
+8706,38828
+8707,70426,19231
+8708,63327
+8709,25303
+8710,32642
+8711,37043
+8712,43701
+8713,37909
+8714,60487
+8715,21444
+8716,56224
+8717,50110
+8718,81161
+8719,77192
+8720,81781
+8721,36381,61622
+8722,70426
+8723,31041
+8724,1324
+8725,66703
+8726,20146
+8727,40303
+8728,1319
+8729,8730
+8730,55022
+8731,59565
+8732,27653
+8733,8170,11914
+8734,42436,46148,13165
+8735,65763
+8736,25303
+8737,82070
+8738,43193
+8739,60611
+8740,61220
+8741,29648,48634
+8742,81781
+8743,49817
+8744,59565
+8745,43104
+8746,30391
+8747,55127
+8748,65753
+8749,36163
+8750,1016
+8751,50701
+8752,20690
+8753,1016,67582
+8754,43104
+8755,15876
+8756,25303
+8757,33930
+8758,45866
+8759,25303
+8760,47433
+8761,35096
+8762,61258
+8763,35097
+8764,14493
+8765,71465
+8766,6984
+8767,8360
+8768,8360
+8769,55080
+8770,55081
+8771,75958
+8772,6984
+8773,68122
+8774,72966
+8775,70033
+8776,63586
+8777,55303
+8778,61258
+8779,40986
+8780,63603
+8781,21488
+8782,71584
+8783,44703
+8784,13847
+8785,37908
+8786,14504
+8787,8740,74414,58389
+8788,14504
+8789,70033
+8790,8788
+8791,8788
+8792,8788
+8793,8788
+8794,8788
+8795,60120
+8796,25431
+8797,37693
+8798,5765
+8799,59903
+8800,56219
+8801,67936
+8802,24325
+8803,49654
+8804,51068
+8805,55423
+8806,39871
+8807,7658
+8808,70026
+8809,76155
+8810,35922
+8811,56119
+8812,31041
+8813,16858
+8814,15618
+8815,271
+8816,4641
+8817,81781
+8818,75958
+8819,30242
+8820,21444
+8821,48957
+8822,37693
+8823,24325
+8824,45077
+8825,34746
+8826,77192
+8827,13019
+8828,13020
+8829,74010
+8830,33323
+8831,7658
+8832,72990
+8833,22382
+8834,47243
+8835,62734
+8836,21720
+8837,21719
+8838,29509
+8839,8814
+8840,7658
+8841,16858
+8842,14871
+8843,1752
+8844,59903
+8845,68566
+8846,49817
+8847,55423
+8848,8551
+8849,7734
+8850,18520
+8851,74625
+8852,56119
+8853,29509
+8854,43104
+8855,5111
+8856,66703
+8857,55423
+8858,29509
+8859,58798
+8860,29509
+8861,15835
+8862,4861
+8863,4862
+8864,603
+8865,66703
+8866,702
+8867,29509
+8868,29509
+8869,60448
+8870,20996
+8871,75958
+8872,67883
+8873,34746
+8874,68544
+8875,29509
+8876,68796
+8877,17264
+8878,17265
+8879,64747
+8880,43104
+8881,14638
+8882,1718
+8883,49019
+8884,16858
+8885,61622
+8886,19231
+8887,72961
+8888,7734
+8889,14091
+8890,28842
+8891,33797
+8892,7657
+8893,7658
+8894,66703
+8895,19494
+8896,43104
+8897,8162
+8898,4641
+8899,28842
+8900,18149
+8901,56171
+8902,60611
+8903,11148
+8904,56119
+8905,56127
+8906,29509
+8907,29509
+8908,40299
+8909,40303
+8910,73555
+8911,48957
+8912,36381
+8913,29509
+8914,72990
+8915,35534
+8916,74939
+8917,17264
+8918,17265
+8919,1324
+8920,1319
+8921,55022
+8922,29509
+8923,35400
+8924,19231
+8925,30584,19231
+8926,61622
+8927,29737
+8928,10300
+8929,38699
+8930,10680
+8931,10676
+8932,28801
+8933,10300
+8934,50820,81781
+8935,41016
+8936,29963
+8937,33797,29197,19231
+8938,19234
+8939,60611
+8940,75744
+8941,56127
+8942,36872
+8943,24224
+8944,8945
+8945,56925
+8946,24249
+8947,35342
+8948,67039
+8949,13746
+8950,19870
+8951,37408
+8952,61086
+8953,77192
+8954,32473
+8955,58798
+8956,11018
+8957,12310
+8958,603
+8959,702
+8960,76332
+8961,24470
+8962,24974
+8963,77641
+8964,44171
+8965,20691
+8966,283
+8967,277
+8968,55022
+8969,8968
+8970,52887
+8971,72990
+8972,59938
+8973,8170,14992
+8974,21996
+8975,8976
+8976,50604
+8977,8976
+8978,8976
+8979,5235
+8980,29509
+8981,72990
+8982,31041
+8983,74939
+8984,81781
+8985,58004
+8986,75942
+8987,81781
+8988,37908
+8989,50215
+8990,50638,61622
+8991,77192
+8992,37127
+8993,40986
+8994,37123
+8995,29509
+8996,19379
+8997,31041
+8998,11217
+8999,11220
+9000,65753
+9001,72990
+9002,16443
+9003,17362
+9004,29509
+9005,56119
+9006,67039
+9007,79537
+9008,5350
+9009,2888
+9010,11205
+9011,75958
+9012,9013
+9013,56171
+9014,65763
+9015,4641
+9016,72990
+9017,16443
+9018,59413
+9019,15311
+9020,1752
+9021,2751
+9022,496
+9023,497
+9024,53376
+9025,60448
+9026,40012
+9027,56119
+9028,35243
+9029,55423
+9030,7734
+9031,18520
+9032,25973
+9033,39803
+9034,29509
+9035,34924
+9036,70426,44596
+9037,75823
+9038,29737,29549
+9039,4281
+9040,5485
+9041,77227
+9042,31417
+9043,49817
+9044,49817
+9045,49817
+9046,72284
+9047,56127
+9048,77192
+9049,77192
+9050,56119
+9051,56119
+9052,65959
+9053,65960
+9054,82163
+9055,56119
+9056,1752
+9057,13420
+9058,16514
+9059,81781
+9060,21200
+9061,60611
+9062,50604
+9063,58798
+9064,17264
+9065,17265
+9066,32456
+9067,36008
+9068,67039
+9069,29509
+9070,15311
+9071,56119
+9072,8652
+9073,66703
+9074,35342
+9075,29509,62089
+9076,1752
+9077,29509
+9078,39859
+9079,29677
+9080,50215
+9081,29509
+9082,66703
+9083,77192
+9084,80953
+9085,28801
+9086,58798
+9087,76757
+9088,32547
+9089,53480
+9090,20535
+9091,74537
+9092,36381
+9093,58798
+9094,58798
+9095,35917
+9096,74973
+9097,43104
+9098,61622
+9099,79850
+9100,59251
+9101,6257
+9102,49951
+9103,49951
+9104,35097
+9105,77192
+9106,26827
+9107,76134,46148
+9108,29509
+9109,11476
+9110,11475
+9111,29509,62089
+9112,56127
+9113,52887
+9114,22649
+9115,48957
+9116,81781
+9117,52887
+9118,6946
+9119,68796
+9120,62512
+9121,59903
+9122,5111
+9123,3297
+9124,29509
+9125,21963
+9126,56119
+9127,14638
+9128,13063
+9129,55051
+9130,1752
+9131,72990
+9132,26155
+9133,37127
+9134,74939
+9135,67462
+9136,44695
+9137,28842
+9138,40012
+9139,35787
+9140,11958
+9141,59903
+9142,23471
+9143,1319
+9144,568
+9145,73555
+9146,80106
+9147,82176
+9148,26548
+9149,69029
+9150,59576,71493
+9151,72961
+9152,35243
+9153,5111
+9154,15835
+9155,2126
+9156,31279
+9157,56520
+9158,79850,48957
+9159,58798
+9160,6624
+9161,24224
+9162,58162
+9163,79650
+9164,23365
+9165,22382
+9166,7660
+9167,20946
+9168,53480
+9169,41842
+9170,20559
+9171,28801
+9172,72990
+9173,21586
+9174,48028
+9175,40303
+9176,7654
+9177,68783,75958
+9178,29509
+9179,37693
+9180,40012
+9181,16932
+9182,28801
+9183,5111
+9184,15814
+9185,21996
+9186,65581
+9187,54636
+9188,8841
+9189,7735
+9190,29509
+9191,53624
+9192,64747
+9193,59380
+9194,28164
+9195,66703
+9196,1319,38439
+9197,8291
+9198,43104
+9199,67254
+9200,75958
+9201,40012
+9202,29509
+9203,12066
+9204,13019
+9205,13020
+9206,39859
+9207,15814
+9208,56119
+9209,1324
+9210,1319
+9211,9213
+9212,9213
+9213,55022
+9214,37127
+9215,11957
+9216,22056
+9217,20427
+9218,17915
+9219,17916
+9220,3612
+9221,29509
+9222,8551
+9223,39713
+9224,51461
+9225,36381
+9226,29509
+9227,40299
+9228,40303
+9229,1324
+9230,55022
+9231,48957
+9232,56119
+9233,34746
+9234,51068
+9235,21444
+9236,36117
+9237,61335
+9238,29152
+9239,63193
+9240,30986
+9241,63187
+9242,3281
+9243,60493
+9244,38828
+9245,77192
+9246,81781
+9247,56119
+9248,81781
+9249,29509,62089
+9250,57671
+9251,29197
+9252,29199
+9253,21962
+9254,67039
+9255,50878
+9256,61796
+9257,43104
+9258,59903
+9259,68544
+9260,66240
+9261,70033
+9262,40299
+9263,21444
+9264,67039
+9265,53568
+9266,20756
+9267,52660
+9268,65960
+9269,65959
+9270,68520
+9271,6952
+9272,40303
+9273,43104
+9274,6945
+9275,41879
+9276,22642
+9277,40303
+9278,21963
+9279,14301
+9280,39608
+9281,76779
+9282,55951
+9283,77192
+9284,77192
+9285,71493
+9286,37127
+9287,43997
+9288,61033
+9289,8653
+9290,44703
+9291,35097
+9292,21963
+9293,61254
+9294,52887
+9295,40303
+9296,20756
+9297,24325
+9298,52887
+9299,29509,62089
+9300,52887
+9301,52887
+9302,61254
+9303,29509
+9304,9899
+9305,55951
+9306,50215
+9307,50215
+9308,50215
+9309,50215
+9310,50215
+9311,56127
+9312,35787
+9313,50215
+9314,50215
+9315,50215
+9316,50215
+9317,50215
+9318,50215
+9319,66026
+9320,50215
+9321,50215
+9322,50215
+9323,50215
+9324,50215
+9325,66026
+9326,50215
+9327,50215
+9328,50215
+9329,50215
+9330,50215
+9331,61086
+9332,50215
+9333,50215
+9334,50215
+9335,66026
+9336,81360
+9337,7658
+9338,15178
+9339,52887
+9340,2608
+9341,35474
+9342,56189
+9343,40986
+9344,76149
+9345,56162
+9346,38364
+9347,31041,31279
+9348,35535
+9349,35097
+9350,54980
+9351,21719
+9352,25303
+9353,63460
+9354,63459
+9355,63461
+9356,21963
+9357,64202
+9358,68678
+9359,40303
+9360,40299
+9361,40299
+9362,40303
+9363,65960
+9364,21719
+9365,48957
+9366,43104
+9367,29509
+9368,36892,67195
+9369,5501
+9370,5501
+9371,39803
+9372,48768,48028
+9373,60611
+9374,77192
+9375,45215
+9376,34990
+9377,31859
+9378,37204
+9379,60536
+9380,21996,48768
+9381,28801
+9382,61086
+9383,19234
+9384,6264
+9385,6264
+9386,6298
+9387,24321
+9388,24325
+9389,72966
+9390,65959
+9391,65960
+9392,51814
+9393,29509
+9394,16443
+9395,1319
+9396,60448
+9397,55951
+9398,1324
+9399,55022
+9400,53480,21996
+9401,35097
+9402,5765
+9403,9404
+9404,17497
+9405,43104
+9406,68544
+9407,47505
+9408,77192
+9409,52660
+9410,52659
+9411,46935,81781
+9412,29509,62095
+9413,10223
+9414,20756
+9415,40299
+9416,24321
+9417,44703
+9418,51148
+9419,67039
+9420,24325
+9421,29621
+9422,77192
+9423,29509
+9424,79850
+9425,28080
+9426,75958
+9427,75958
+9428,75958
+9429,21720
+9430,21719
+9431,52887
+9432,75958
+9433,45758
+9434,21488
+9435,56127
+9436,31041
+9437,15272
+9438,76345
+9439,21963
+9440,39679
+9441,6946
+9442,9453
+9443,70515
+9444,32361
+9445,58815
+9446,32558
+9447,40303
+9448,67039
+9449,40303
+9450,40299
+9451,48210
+9452,60216
+9453,8411
+9454,43104
+9455,604
+9456,4374
+9457,72623
+9458,73980
+9459,21754
+9460,51843
+9461,29648
+9462,8409
+9463,21444
+9464,21720
+9465,13815
+9466,1719
+9467,5765
+9468,1717
+9469,55022
+9470,70426,30584
+9471,55423
+9472,19231
+9473,52659
+9474,31656
+9475,30584
+9476,36726
+9477,617
+9478,75078
+9479,52660
+9480,29509
+9481,75958
+9482,21963
+9483,35243
+9484,75823
+9485,28801
+9486,77192
+9487,81781
+9488,57140
+9489,19234
+9490,53295,67582
+9491,58798
+9492,71493,81781
+9493,77192
+9494,21963
+9495,33998
+9496,23751
+9497,62938
+9498,21444
+9499,35342
+9500,19234
+9501,29509,62089
+9502,50346
+9503,37127,46935
+9504,81669
+9505,58853,20946
+9506,58853,20946
+9507,58853,20946
+9508,55951
+9509,27092
+9510,21765,46935
+9511,39803
+9512,63586
+9513,1319
+9514,55022
+9515,9514
+9516,1324
+9517,40303
+9518,56162
+9519,41878
+9520,41879
+9521,25175
+9522,41882
+9523,79867
+9524,35096
+9525,55951
+9526,70426,44596,31041
+9527,35243
+9528,19231
+9529,73794
+9530,71493
+9531,617
+9532,42436
+9533,40012
+9534,57140
+9535,29509
+9536,21443
+9537,79541
+9538,58798
+9539,22640
+9540,79495
+9541,51848
+9542,61415
+9543,67038
+9544,31041
+9545,66703
+9546,53480,60448
+9547,29509
+9548,32473
+9549,27044
+9550,29509
+9551,27287
+9552,19234
+9553,20426
+9554,20425
+9555,35243
+9556,29509
+9557,40423
+9558,35097
+9559,35096
+9560,27763
+9561,32263
+9562,19231
+9563,52887
+9564,55081
+9565,55080
+9566,48957
+9567,52886
+9568,20756
+9569,66703
+9570,60611
+9571,75823
+9572,2250
+9573,30895
+9574,35242
+9575,66824,71603
+9576,67039
+9577,68678
+9578,48439
+9579,61252
+9580,41879
+9581,31542
+9582,70209
+9583,60216
+9584,62015,67582
+9585,62015
+9586,62015
+9587,62015
+9588,62015
+9589,43104
+9590,29509
+9591,29509
+9592,81781
+9593,57671,68520,37908,21444
+9594,35944
+9595,49817
+9596,21963
+9597,37127
+9598,52887
+9599,21963
+9600,21963
+9601,21963
+9602,35492
+9603,21719
+9604,56219
+9605,21720
+9606,21963
+9607,35243
+9608,67038
+9609,65960
+9610,40303
+9611,39678
+9612,61258
+9613,20756
+9614,29621
+9615,44703
+9616,51019
+9617,51019
+9618,51019
+9619,51019
+9620,41878
+9621,21720
+9622,21719
+9623,40299
+9624,40303
+9625,40303
+9626,52886
+9627,67039
+9628,21720
+9629,20425
+9630,20426
+9631,21720
+9632,39679
+9633,24325
+9634,65959
+9635,65960
+9636,31542
+9637,52887
+9638,81781
+9639,52461
+9640,6945
+9641,235
+9642,283
+9643,55022
+9644,35243
+9645,35342
+9646,21443
+9647,21443
+9648,81781
+9649,36381
+9650,66703
+9651,6941
+9652,25303
+9653,35097
+9654,67039
+9655,21963
+9656,40303
+9657,21963
+9658,61086
+9659,54266
+9660,43104
+9661,55240
+9662,32326
+9663,56142
+9664,49166
+9665,20946
+9666,67039
+9667,8647
+9668,25303
+9669,81781
+9670,72546,49420
+9671,66824,60639
+9672,50110
+9673,38828
+9674,81781
+9675,38783
+9676,27763
+9677,77192
+9678,77192
+9679,77192
+9680,29509
+9681,61086
+9682,21963
+9683,28164
+9684,55081
+9685,20427
+9686,56119
+9687,75942
+9688,55423
+9689,61622
+9690,36892
+9691,59903
+9692,21963
+9693,28801
+9694,59380
+9695,59380
+9696,75958
+9697,283
+9698,277
+9699,30230
+9700,36008
+9701,23796
+9702,48957
+9703,59380
+9704,27592
+9705,44703
+9706,31542
+9707,60216
+9708,70209
+9709,56119
+9710,283
+9711,277
+9712,34746
+9713,75958
+9714,9716
+9715,9716
+9716,55022
+9717,65960
+9718,41882
+9719,35875
+9720,58798
+9721,51881
+9722,35342
+9723,31231
+9724,5777
+9725,5765
+9726,28747
+9727,29509
+9728,29509
+9729,27167
+9730,21963
+9731,8409
+9732,68544
+9733,35097
+9734,63005
+9735,51396
+9736,61258
+9737,29621
+9738,15311
+9739,51397
+9740,64255
+9741,29509
+9742,19234
+9743,47505
+9744,39803
+9745,19809
+9746,56119
+9747,56119
+9748,54979
+9749,40303
+9750,54980
+9751,28747
+9752,29509
+9753,21720
+9754,29509,62089
+9755,20756
+9756,55081
+9757,24325
+9758,24325
+9759,35097
+9760,24325
+9761,6298
+9762,66703
+9763,21719
+9764,21720
+9765,68520,21444
+9766,35096
+9767,61254
+9768,21963
+9769,36055
+9770,50638,13746
+9771,72966
+9772,33928
+9773,53861
+9774,32473
+9775,71624
+9776,22402
+9777,52660
+9778,27297
+9779,21963
+9780,36381
+9781,61622
+9782,25499
+9783,58262
+9784,74888
+9785,3612
+9786,21754
+9787,21754
+9788,40627
+9789,21963
+9790,25431
+9791,78409
+9792,61254
+9793,17348
+9794,29509
+9795,52887
+9796,69295
+9797,41657
+9798,40299
+9799,40303
+9800,68520
+9801,24224
+9802,21720
+9803,20756
+9804,57671
+9805,57671
+9806,67479
+9807,60611
+9808,49341
+9809,28801
+9810,3281
+9811,52660
+9812,51397
+9813,56119,62089
+9814,74560
+9815,55081
+9816,51686
+9817,63017
+9818,9899
+9819,60639,31041
+9820,62512
+9821,44953
+9822,21719
+9823,67039
+9824,61254
+9825,1719
+9826,5765
+9827,1717
+9828,55022
+9829,52887
+9830,31542
+9831,70759
+9832,66703
+9833,21967
+9834,39803
+9835,66703
+9836,57561
+9837,39803
+9838,72966
+9839,66703
+9840,66703
+9841,54980
+9842,54979
+9843,51148
+9844,74191
+9845,29509,62089
+9846,5501
+9847,617
+9848,54767,38828
+9849,61254
+9850,43104
+9851,9467
+9852,1718
+9853,46148
+9854,56119
+9855,75078
+9856,3281
+9857,19231
+9858,31041
+9859,55423
+9860,3281
+9861,60822
+9862,69818
+9863,35242
+9864,53480
+9865,20756
+9866,35096
+9867,24325
+9868,29509,62089
+9869,40303
+9870,40299
+9871,35243
+9872,51898
+9873,51897
+9874,51898
+9875,50899
+9876,23442
+9877,60448
+9878,21720
+9879,60611
+9880,29509
+9881,60620
+9882,60822
+9883,31041
+9884,60374
+9885,24325
+9886,21443
+9887,55423
+9888,35097
+9889,35096
+9890,29509,15869
+9891,66703
+9892,79076
+9893,35243
+9894,12045
+9895,50490
+9896,55081
+9897,9899
+9898,16858
+9899,9898
+9900,39678
+9901,5765
+9902,73650
+9903,8409
+9904,24538
+9905,56119
+9906,39679
+9907,20996
+9908,21963
+9909,67039
+9910,56119
+9911,81781
+9912,61218
+9913,5501
+9914,29509
+9915,48957
+9916,71685
+9917,61622
+9918,21963
+9919,21444
+9920,40299
+9921,40303
+9922,24325
+9923,40303
+9924,27763
+9925,24325
+9926,39679
+9927,39678
+9928,35242,59169
+9929,35243
+9930,52805
+9931,62512
+9932,75958
+9933,26789
+9934,26789
+9935,53384
+9936,76779
+9937,15634
+9938,19234
+9939,60611
+9940,41103
+9941,82163
+9942,72990,68230
+9943,36452
+9944,20756
+9945,24321
+9946,52886
+9947,6298
+9948,4374
+9949,19231
+9950,77192
+9951,29509,62095
+9952,17078
+9953,8647
+9954,8650
+9955,40303
+9956,81467
+9957,35787
+9958,67039
+9959,63017
+9960,9044
+9961,9044
+9962,9044
+9963,9044
+9964,9044,67582
+9965,9044
+9966,9044
+9967,9044
+9968,9044
+9969,9044
+9970,9044
+9971,9044
+9972,9044
+9973,9044
+9974,9044
+9975,9044
+9976,702
+9977,35787
+9978,603
+9979,29509
+9980,55718
+9981,61622
+9982,21996
+9983,67039
+9984,27738
+9985,43104
+9986,18088
+9987,9453
+9988,10585
+9989,3701
+9990,37204
+9991,61622
+9992,21996
+9993,61622
+9994,59903
+9995,19379
+9996,76664
+9997,59903
+9998,72961
+9999,15159
+10000,52259
+10001,58798
+10002,81781
+10003,24325
+10004,52887
+10005,39679
+10006,39678
+10007,21720
+10008,80562
+10009,8664
+10010,75958
+10011,35917
+10012,1752
+10013,56119,62089
+10014,1751
+10015,1752
+10016,77192
+10017,65764
+10018,12523
+10019,29509
+10020,29509
+10021,40012
+10022,29509
+10023,29509
+10024,21719
+10025,40012,68446
+10026,36381
+10027,63668
+10028,21720
+10029,61877
+10030,29509
+10031,70166
+10032,60448,61622
+10033,42436
+10034,42436
+10035,1537
+10036,31766
+10037,19475
+10038,81643
+10039,28129
+10040,1718
+10041,52887
+10042,77192
+10043,19796
+10044,3281
+10045,69043
+10046,19231
+10047,6846,25303
+10048,1017,5848,67582
+10049,61086
+10050,31041
+10051,60448
+10052,40303
+10053,14504
+10054,35243
+10055,29509
+10056,24325
+10057,19231
+10058,11974
+10059,29509
+10060,67039
+10061,31542
+10062,56119
+10063,24325
+10064,29509,62089
+10065,43104
+10066,76134
+10067,35474
+10068,13817
+10069,13818
+10070,40299
+10071,40303
+10072,52887
+10073,52886
+10074,21444
+10075,61086
+10076,40299
+10077,40303
+10078,789
+10079,5777
+10080,56119
+10081,41446
+10082,5765
+10083,29509
+10084,1752
+10085,48957
+10086,21720
+10087,21719
+10088,52887
+10089,43104
+10090,789
+10091,21963
+10092,41878
+10093,41882
+10094,41879
+10095,21963
+10096,35875
+10097,39678
+10098,61258
+10099,29621
+10100,39679
+10101,29621
+10102,21963
+10103,21720
+10104,21719
+10105,43104
+10106,789
+10107,21719
+10108,44703
+10109,39679
+10110,21720
+10111,81781
+10112,21720
+10113,21719
+10114,82167
+10115,29509
+10116,29509
+10117,35243
+10118,43104
+10119,67957
+10120,32361
+10121,32361
+10122,31542
+10123,24325
+10124,42436
+10125,42488
+10126,55081
+10127,67039
+10128,35097
+10129,42436,10160
+10130,68520
+10131,32886
+10132,35096
+10133,35097
+10134,81781
+10135,51068
+10136,54872
+10137,55034
+10138,55034
+10139,55034
+10140,74539
+10141,75683
+10142,78703
+10143,75976
+10144,31079
+10145,4566
+10146,20889
+10147,42436
+10148,31041
+10149,32929
+10150,61622
+10151,52887
+10152,52478
+10153,62176
+10154,55022
+10155,46148
+10156,49817
+10157,29076
+10158,43104
+10159,1704
+10160,5765
+10161,15679
+10162,80106
+10163,60611,60448
+10164,64846
+10165,21963
+10166,72990,60448
+10167,40986
+10168,22292
+10169,21719
+10170,41284
+10171,21488
+10172,5501
+10173,66703
+10174,38828
+10175,74625
+10176,35243
+10177,60620
+10178,35097
+10179,29509
+10180,10711
+10181,41879
+10182,41877
+10183,24325
+10184,21720
+10185,65960
+10186,21720
+10187,24325
+10188,52886
+10189,52887
+10190,40299
+10191,39679
+10192,52887
+10193,67039
+10194,40299
+10195,40303
+10196,277
+10197,48957
+10198,283
+10199,50969
+10200,41446
+10201,73165
+10202,48957
+10203,41280
+10204,66703
+10205,21443
+10206,72386
+10207,21963
+10208,13746
+10209,72966
+10210,70426
+10211,51400
+10212,52887
+10213,20756
+10214,56119
+10215,51271
+10216,30218
+10217,36381
+10218,74969
+10219,58175
+10220,14870
+10221,66703
+10222,56246
+10223,42020
+10224,61086
+10225,7657
+10226,43104
+10227,21720
+10228,61796
+10229,41279
+10230,67184
+10231,27253
+10232,52659
+10233,29621
+10234,58798
+10235,25022
+10236,67462
+10237,56230,46148
+10238,72961
+10239,2607
+10240,2608
+10241,76135
+10242,35474
+10243,65763
+10244,8353
+10245,35474
+10246,31041,31279
+10247,52660
+10248,51397
+10249,13019
+10250,29509
+10251,81781
+10252,68520
+10253,60448
+10254,77192
+10255,702
+10256,603
+10257,53118,31522
+10258,46148
+10259,2205
+10260,21720
+10261,21719
+10262,72990
+10263,21963
+10264,48957
+10265,40303
+10266,55423
+10267,38436
+10268,65501
+10269,75958
+10270,56119
+10271,40299
+10272,10300
+10273,63327
+10274,25303
+10275,65960
+10276,24321
+10277,20756
+10278,21720
+10279,29621
+10280,35243
+10281,29509,62089
+10282,81781
+10283,48319
+10284,283
+10285,10287
+10286,277
+10287,55022
+10288,55081
+10289,18109
+10290,1319
+10291,21443
+10292,59903
+10293,15835
+10294,75358
+10295,1549
+10296,1324
+10297,1319
+10298,10289
+10299,55022
+10300,72961
+10301,29549,54398
+10302,40752
+10303,35243
+10304,48957
+10305,32456
+10306,1319
+10307,61086
+10308,56119
+10309,60448
+10310,496
+10311,497
+10312,58798
+10313,283
+10314,41446
+10315,277
+10316,20946
+10317,61622
+10318,27702
+10319,20756
+10320,40303
+10321,29509,62089
+10322,68230
+10323,40303
+10324,81781
+10325,35097
+10326,46145
+10327,67039
+10328,67038
+10329,81781
+10330,48957
+10331,32456
+10332,5765
+10333,36047
+10334,15310
+10335,4374
+10336,77223
+10337,55022
+10338,37127
+10339,23791
+10340,37123
+10341,5111
+10342,12066
+10343,67039
+10344,35243
+10345,35242
+10346,61258
+10347,35243
+10348,35243
+10349,10680
+10350,10676
+10351,15311
+10352,36381
+10353,29621
+10354,35243
+10355,47503
+10356,56127
+10357,52887
+10358,52887
+10359,52886
+10360,48957
+10361,56119
+10362,56119
+10363,3281
+10364,3281
+10365,29509
+10366,29509
+10367,64820
+10368,17226
+10369,17227
+10370,43104
+10371,5501
+10372,15814
+10373,65767
+10374,1080
+10375,6758
+10376,29509
+10377,2126
+10378,3600
+10379,11957
+10380,56133,72990
+10381,53480
+10382,69330
+10383,61622
+10384,35097
+10385,21963
+10386,52887
+10387,21720
+10388,45309
+10389,45309
+10390,63327
+10391,58798
+10392,35097
+10393,25406
+10394,48957
+10395,38676
+10396,78598
+10397,29580
+10398,35474
+10399,65754
+10400,52886
+10401,67039
+10402,56119
+10403,56219
+10404,82176
+10405,45769
+10406,35097
+10407,72961
+10408,20756
+10409,52887
+10410,2947
+10411,77192
+10412,37204
+10413,81781
+10414,29509
+10415,21444
+10416,77192
+10417,81781
+10418,17362
+10419,35917
+10420,58798,37918
+10421,43112
+10422,20756
+10423,21719
+10424,61086
+10425,21719
+10426,22850
+10427,20756
+10428,78104
+10429,75958
+10430,6403
+10431,36047
+10432,69598
+10433,69693
+10434,81781
+10435,30896,66344
+10436,49079
+10437,30895
+10438,19497
+10439,38441
+10440,12225
+10441,18008
+10442,56119
+10443,78580
+10444,44542
+10445,7658
+10446,29509,62089
+10447,29509
+10448,15820
+10449,723
+10450,55080
+10451,41879
+10452,66344
+10453,8162
+10454,14870
+10455,61086
+10456,39679
+10457,39678
+10458,61258
+10459,45758
+10460,40018
+10461,54527
+10462,6984
+10463,55304
+10464,55303
+10465,61258
+10466,8409
+10467,63017
+10468,76135,45839
+10469,81142
+10470,37408
+10471,60448
+10472,27620
+10473,3701
+10474,15311
+10475,61086
+10476,22350
+10477,20756
+10478,77641
+10479,21443
+10480,7734
+10481,18520
+10482,64250
+10483,77192,62089
+10484,69308
+10485,19649
+10486,21356
+10487,54437
+10488,61622
+10489,13020
+10490,43104
+10491,6846,25303
+10492,1017,5848,67582
+10493,56917
+10494,53480
+10495,10496
+10496,73321
+10497,33797
+10498,26602
+10499,70426
+10500,36381,61622
+10501,39803
+10502,68544
+10503,52887
+10504,81781
+10505,21443
+10506,77192
+10507,54768
+10508,46935
+10509,29509
+10510,4130
+10511,21963
+10512,14504
+10513,75940,74414
+10514,41280
+10515,56117
+10516,29509,62089
+10517,35534
+10518,81781
+10519,58798
+10520,19231
+10521,42436,72990
+10522,49485,28938
+10523,21443
+10524,32456
+10525,41146
+10526,39679
+10527,39678
+10528,36381
+10529,55180
+10530,61086
+10531,20756
+10532,52887
+10533,48957
+10534,66344,61622
+10535,61622
+10536,47503
+10537,70426
+10538,19234
+10539,24379,67582
+10540,19231,30584
+10541,50878
+10542,62015
+10543,48957,6298
+10544,64202
+10545,61252
+10546,7658
+10547,61622
+10548,30584
+10549,30584
+10550,30584
+10551,60448,37127,66344
+10552,30584
+10553,39296
+10554,30895
+10555,19497
+10556,8650,55324
+10557,14071
+10558,14071
+10559,70471,67582
+10560,64255
+10561,3969
+10562,702
+10563,35557
+10564,43631
+10565,603
+10566,3386
+10567,11974
+10568,61622
+10569,56119
+10570,29509
+10571,1752
+10572,11017
+10573,81781
+10574,617
+10575,19231
+10576,72969
+10577,77192
+10578,49134
+10579,39774
+10580,76062
+10581,68230
+10582,50701
+10583,65765
+10584,62512
+10585,65759
+10586,74926
+10587,496
+10588,497
+10589,702
+10590,3969
+10591,23471
+10592,78725
+10593,39676
+10594,8170,17951
+10595,77192,62089
+10596,31041
+10597,75078,53365
+10598,33797,29197
+10599,53379
+10600,53379
+10601,53379
+10602,53379
+10603,53379
+10604,53379
+10605,53379
+10606,53379
+10607,53379
+10608,50608
+10609,53379
+10610,53379
+10611,53379
+10612,53379
+10613,53379
+10614,61622
+10615,65960
+10616,35875
+10617,29621
+10618,21720
+10619,21720
+10620,75924
+10621,75924
+10622,75924
+10623,21719
+10624,72585
+10625,2126
+10626,29509
+10627,22032
+10628,58798
+10629,21963
+10630,55423
+10631,39679
+10632,6846,25303
+10633,1016,5848,67582
+10634,73459
+10635,35243
+10636,1411
+10637,1412
+10638,81781
+10639,48957
+10640,27738
+10641,79850
+10642,79850
+10643,28346
+10644,3701
+10645,30300
+10646,81781
+10647,81781
+10648,283
+10649,277
+10650,55022
+10651,56142
+10652,55022
+10653,10652
+10654,48957
+10655,32456
+10656,81781
+10657,65882
+10658,48768,21586
+10659,53537
+10660,48768
+10661,52504
+10662,14493
+10663,74344
+10664,40303
+10665,60611
+10666,47503
+10667,35150
+10668,35777
+10669,21013
+10670,6984
+10671,33928
+10672,41729
+10673,43313
+10674,63790
+10675,38441
+10676,723
+10677,55081
+10678,55080
+10679,61622
+10680,724
+10681,35766
+10682,6298
+10683,40012
+10684,57140
+10685,21720
+10686,69744
+10687,22850
+10688,52887
+10689,29509
+10690,29509,62089
+10691,59576
+10692,56119
+10693,29509
+10694,38439
+10695,77192
+10696,77192
+10697,42481
+10698,61646
+10699,61796
+10700,81781
+10701,81398
+10702,66824,71603
+10703,45866
+10704,48768,53060
+10705,75828
+10706,81781
+10707,22850,30009
+10708,37204
+10709,64967
+10710,61489
+10711,37043
+10712,21444
+10713,55423
+10714,13746
+10715,81781
+10716,46148
+10717,38517
+10718,60448
+10719,20946
+10720,54467
+10721,42436
+10722,37127
+10723,50110
+10724,14422
+10725,61415
+10726,35843
+10727,35243
+10728,20756
+10729,34198
+10730,34198
+10731,29509
+10732,47582
+10733,55951
+10734,29509
+10735,36607
+10736,77192
+10737,77192
+10738,67039,12784
+10739,45452
+10740,41870
+10741,65695
+10742,45452
+10743,46780
+10744,6946
+10745,9987
+10746,29509
+10747,67039
+10748,70033
+10749,68544
+10750,64015
+10751,41736
+10752,71146
+10753,80354
+10754,2291,65374
+10755,6840
+10756,21720
+10757,21719
+10758,20756
+10759,52887
+10760,52886
+10761,6378
+10762,20426
+10763,52886
+10764,20756
+10765,65959
+10766,24321
+10767,24325
+10768,52887
+10769,52886
+10770,52887
+10771,68481
+10772,68705
+10773,37693
+10774,72990
+10775,60611
+10776,20575
+10777,57140
+10778,66703
+10779,21963
+10780,41879
+10781,41878
+10782,76134
+10783,24325
+10784,21443
+10785,24325
+10786,40303
+10787,21720
+10788,24325
+10789,51396
+10790,67039
+10791,67038
+10792,30490
+10793,76802
+10794,77192
+10795,72966
+10796,67546
+10797,75828
+10798,24321
+10799,24325
+10800,52887
+10801,67039
+10802,67038
+10803,35097
+10804,35243
+10805,52886
+10806,24321
+10807,21963
+10808,3695
+10809,3695
+10810,52887
+10811,40065,60435
+10812,27763
+10813,52887
+10814,21719
+10815,21720
+10816,21719
+10817,21720
+10818,24325
+10819,24325
+10820,11472
+10821,52887
+10822,81781
+10823,21719
+10824,50878
+10825,29509
+10826,29509
+10827,73555
+10828,36381
+10829,49341,51702
+10830,55055,25431
+10831,50604
+10832,28801
+10833,40986
+10834,76152
+10835,21444
+10836,31041
+10837,13314
+10838,55951
+10839,36939
+10840,35534
+10841,21720
+10842,39679
+10843,52659
+10844,52660
+10845,63564
+10846,63564
+10847,63564
+10848,762
+10849,13817
+10850,13818
+10851,496
+10852,497
+10853,21720
+10854,27141
+10855,31041
+10856,20756
+10857,31542
+10858,71334
+10859,21963
+10860,40303
+10861,35243
+10862,79650
+10863,24325
+10864,20756
+10865,24321
+10866,35096
+10867,35097
+10868,35243
+10869,38569
+10870,52886
+10871,52887
+10872,68059
+10873,43102
+10874,53069
+10875,55423
+10876,54980
+10877,53060
+10878,33592
+10879,19234
+10880,67039
+10881,14504
+10882,75940,48100
+10883,71853
+10884,57109,61622
+10885,29549
+10886,48768
+10887,24321
+10888,24325
+10889,29509
+10890,77192
+10891,52887
+10892,40303
+10893,39803
+10894,79618
+10895,65374
+10896,40303
+10897,70426
+10898,24321
+10899,24325
+10900,21718
+10901,71817
+10902,36892
+10903,79471
+10904,66703
+10905,61254
+10906,71347
+10907,65758,81781
+10908,67039
+10909,29509
+10910,56127
+10911,64747
+10912,46274
+10913,27763
+10914,35917
+10915,43104
+10916,604
+10917,52887
+10918,76664
+10919,43104
+10920,38228
+10921,67039
+10922,15785
+10923,49817
+10924,27245
+10925,14290
+10926,29509,62089
+10927,35243
+10928,29621
+10929,61086
+10930,74000
+10931,22649
+10932,13818
+10933,13815
+10934,13817
+10935,13817
+10936,59565
+10937,54811
+10938,55081
+10939,72990
+10940,26656
+10941,66703
+10942,57932
+10943,29509
+10944,3294
+10945,10944
+10946,66341
+10947,15876
+10948,80106
+10949,50192
+10950,33639
+10951,35944
+10952,31292
+10953,43211
+10954,49468
+10955,67548
+10956,55022
+10957,10956
+10958,61599
+10959,62842
+10960,70524
+10961,40752
+10962,12054
+10963,56119
+10964,31041
+10965,24224
+10966,496
+10967,29509,62095
+10968,29509
+10969,63327
+10970,25303
+10971,39803
+10972,21420
+10973,64202
+10974,21959
+10975,68678
+10976,68520,57671,21444
+10977,60611
+10978,38798
+10979,81781
+10980,27506
+10981,702
+10982,51400
+10983,603
+10984,49992
+10985,39802
+10986,497
+10987,496
+10988,21720
+10989,20756
+10990,22642
+10991,22643
+10992,40299
+10993,52887
+10994,39679
+10995,20425
+10996,21963
+10997,52887
+10998,21443
+10999,32456
+11000,60822
+11001,40303
+11002,40303
+11003,31542
+11004,39679
+11005,41879
+11006,40303
+11007,44703
+11008,47404
+11009,52887
+11010,65960
+11011,65960
+11012,66506
+11013,43104
+11014,55951
+11015,18720
+11016,46149
+11017,43104
+11018,5485
+11019,6625
+11020,8310
+11021,9986
+11022,76664
+11023,36381,58915
+11024,47505
+11025,43104
+11026,6298
+11027,77192
+11028,30647
+11029,64202
+11030,33928
+11031,56219
+11032,22056
+11033,43104
+11034,21444
+11035,39802
+11036,21963
+11037,8841
+11038,9280
+11039,29509
+11040,8397
+11041,31041
+11042,59380
+11043,66703
+11044,42020
+11045,60448
+11046,60448,37127
+11047,13735
+11048,61625
+11049,36381
+11050,22922
+11051,81781
+11052,58798
+11053,60611
+11054,21444
+11055,81781
+11056,42436
+11057,61622
+11058,55081
+11059,24325
+11060,29509
+11061,7660
+11062,24321
+11063,43193
+11064,67038
+11065,67038
+11066,24325
+11067,5350
+11068,3600
+11069,23471
+11070,53974
+11071,27255
+11072,48957
+11073,61086
+11074,48957
+11075,14504
+11076,36892
+11077,16685
+11078,53480
+11079,29509
+11080,702
+11081,68994
+11082,603
+11083,39802
+11084,4336
+11085,33327
+11086,6952
+11087,55952
+11088,56119
+11089,27763
+11090,69363
+11091,54444
+11092,48520
+11093,38173
+11094,66344
+11095,27763
+11096,67272
+11097,8841
+11098,21719
+11099,58798
+11100,52887
+11101,67462
+11102,76782
+11103,702
+11104,66703
+11105,603
+11106,60120
+11107,77192
+11108,15623
+11109,3652
+11110,66703
+11111,702
+11112,31085
+11113,43672
+11114,38537
+11115,603
+11116,76782
+11117,33797
+11118,50110
+11119,81781
+11120,21996
+11121,19525
+11122,22402,42436
+11123,21963
+11124,19231
+11125,67039
+11126,81781
+11127,81781
+11128,65754
+11129,35474
+11130,13088
+11131,49817
+11132,7658
+11133,35492
+11134,72990
+11135,13019
+11136,16914
+11137,55303
+11138,55304
+11139,29509,62089
+11140,66703
+11141,23471
+11142,53480
+11143,74537
+11144,40303
+11145,40299
+11146,27405
+11147,5485
+11148,6946
+11149,7427
+11150,60822
+11151,58798,68520
+11152,27763
+11153,43449
+11154,56119,62089
+11155,67277
+11156,37702
+11157,63327
+11158,71493
+11159,40986
+11160,7734
+11161,18520
+11162,8331
+11163,8330
+11164,66703
+11165,496
+11166,497
+11167,43125
+11168,25495
+11169,39679
+11170,68059
+11171,6952
+11172,34746
+11173,81161
+11174,64873
+11175,5235
+11176,5777
+11177,55022
+11178,40299
+11179,36381
+11180,77192
+11181,8409
+11182,40303
+11183,27763
+11184,60592
+11185,24711
+11186,36381
+11187,62408
+11188,15311
+11189,48957
+11190,52886
+11191,24325
+11192,72990
+11193,47722
+11194,48957
+11195,21963
+11196,40303
+11197,29509,62089
+11198,46148
+11199,35097
+11200,24321
+11201,24325
+11202,6952
+11203,2609
+11204,11205
+11205,1545
+11206,62932,5777
+11207,56119
+11208,35097
+11209,21754
+11210,80591
+11211,18844
+11212,5765
+11213,56638
+11214,49833
+11215,35243
+11216,58798
+11217,1319
+11218,43104
+11219,1324
+11220,568
+11221,55022
+11222,1319
+11223,41878
+11224,41882
+11225,79471
+11226,49162
+11227,61086
+11228,37127
+11229,40299
+11230,40303
+11231,21720
+11232,29621
+11233,24224
+11234,52887
+11235,52886
+11236,21720
+11237,66703
+11238,53012
+11239,35474
+11240,76135,45839
+11241,25022
+11242,76135,45839
+11243,20756
+11244,35243
+11245,35242
+11246,77192
+11247,77192
+11248,13746
+11249,19234
+11250,41155
+11251,56119,62089
+11252,52904
+11253,62852
+11254,55423
+11255,20946
+11256,45222
+11257,81781
+11258,702
+11259,603
+11260,77192
+11261,29509,62089
+11262,43104
+11263,77192
+11264,23471
+11265,33639
+11266,60899
+11267,29509
+11268,53118
+11269,60448
+11270,37204
+11271,31041
+11272,56119
+11273,33797
+11274,77641
+11275,35051
+11276,37693
+11277,33638
+11278,36946
+11279,22845
+11280,22845
+11281,42436
+11282,81781
+11283,72966
+11284,68705
+11285,27763
+11286,79541
+11287,72966
+11288,2657,80962
+11289,29509
+11290,48957
+11291,18091
+11292,38517
+11293,75823
+11294,65763
+11295,67920
+11296,65767
+11297,11480
+11298,31041
+11299,19231,30584
+11300,60448
+11301,68520
+11302,61622
+11303,61622
+11304,21448
+11305,67120
+11306,13020
+11307,35096
+11308,75958
+11309,43104
+11310,40288
+11311,41879
+11312,55223
+11313,55223
+11314,41878
+11315,14638
+11316,17867
+11317,72990,81781
+11318,66703
+11319,23471
+11320,23550
+11321,45217
+11322,67479
+11323,71493
+11324,61033
+11325,40065
+11326,20946
+11327,24249
+11328,77192
+11329,39183
+11330,29509
+11331,32988
+11332,28801
+11333,63327
+11334,13818
+11335,28754
+11336,6042
+11337,75958
+11338,277
+11339,11340
+11340,55022
+11341,283
+11342,29509
+11343,40303
+11344,34389
+11345,3281
+11346,74191
+11347,72990
+11348,617,40065
+11349,61622,32691
+11350,21550
+11351,66824
+11352,81781
+11353,77192
+11354,46444
+11355,14504
+11356,30186
+11357,48768,58798
+11358,9930
+11359,49162
+11360,35097
+11361,26155
+11362,50603
+11363,723
+11364,28801
+11365,52887
+11366,56119
+11367,80962
+11368,63327
+11369,58798
+11370,48597
+11371,57140
+11372,29509
+11373,24325
+11374,24321
+11375,33928
+11376,73488
+11377,39803
+11378,36434
+11379,58798
+11380,74191,39623
+11381,29509,62089
+11382,62902
+11383,55423
+11384,64747
+11385,55423
+11386,56127
+11387,79850
+11388,66035
+11389,29553
+11390,61764
+11391,61796,37204
+11392,277
+11393,283
+11394,28546
+11395,55022
+11396,55734
+11397,31041
+11398,39803
+11399,76782
+11400,76782
+11401,72990
+11402,41878
+11403,41882
+11404,28747
+11405,40303
+11406,40299
+11407,20756
+11408,61796
+11409,2141
+11410,8360
+11411,55081
+11412,56189
+11413,55565
+11414,75958
+11415,75958
+11416,29509,62089
+11417,48957
+11418,11480
+11419,61796
+11420,42488
+11421,53480,21996
+11422,60620,20575
+11423,57140
+11424,60445
+11425,28801
+11426,40299
+11427,40303
+11428,40303
+11429,29509
+11430,58798
+11431,74973
+11432,20632
+11433,77192
+11434,1545
+11435,29509
+11436,50201
+11437,81781
+11438,52887
+11439,35243
+11440,40299
+11441,81781
+11442,63668
+11443,52886
+11444,58798
+11445,29509,62089
+11446,52886
+11447,43531
+11448,23643
+11449,29648
+11450,60445,51148
+11451,66703
+11452,26012
+11453,66703
+11454,52887
+11455,55081
+11456,55080
+11457,61258
+11458,31542
+11459,21720
+11460,79618
+11461,80962
+11462,52887
+11463,51397
+11464,56119,62089
+11465,24325
+11466,24321
+11467,21719
+11468,24325
+11469,21719
+11470,14638
+11471,62932
+11472,6952
+11473,2126
+11474,22850
+11475,723
+11476,724
+11477,11476
+11478,77192
+11479,11475
+11480,65767
+11481,11480
+11482,24325
+11483,24321
+11484,81781,61622
+11485,35103
+11486,31041
+11487,52887
+11488,52886
+11489,40303
+11490,61748
+11491,47127
+11492,41879
+11493,48768
+11494,55423
+11495,29509
+11496,1752
+11497,54980
+11498,20756
+11499,54979
+11500,24325
+11501,1324
+11502,55022
+11503,41882
+11504,29509
+11505,33327
+11506,6945
+11507,21719
+11508,22642
+11509,22642
+11510,20756
+11511,20756
+11512,24325
+11513,40303
+11514,40299
+11515,20889
+11516,61311
+11517,40299
+11518,52886
+11519,52887
+11520,20756
+11521,52887
+11522,61254
+11523,52887
+11524,35097
+11525,37127
+11526,35097
+11527,35096
+11528,61258
+11529,35243
+11530,35097
+11531,52660
+11532,52659
+11533,21720
+11534,52887
+11535,52887
+11536,52886
+11537,21720
+11538,21719
+11539,55951
+11540,67039
+11541,67039
+11542,35096
+11543,35097
+11544,35096
+11545,61258
+11546,27763
+11547,35097
+11548,20756
+11549,21719
+11550,21720
+11551,29509
+11552,70033
+11553,20756
+11554,54979
+11555,54980
+11556,40303
+11557,44777
+11558,40299
+11559,20756
+11560,40303
+11561,44777
+11562,40303
+11563,29621
+11564,35875
+11565,22642
+11566,20756
+11567,51068
+11568,56119
+11569,33726
+11570,42338
+11571,35706
+11572,68780
+11573,723
+11574,21963
+11575,29509
+11576,81781
+11577,15311
+11578,55423
+11579,62938
+11580,52887
+11581,77192
+11582,30391
+11583,8841
+11584,29509
+11585,29509,62089
+11586,44703
+11587,29509
+11588,29509
+11589,724
+11590,17555
+11591,63327
+11592,25303
+11593,55080
+11594,61258
+11595,55081
+11596,3297
+11597,56119
+11598,37204
+11599,65960
+11600,29509
+11601,29509
+11602,34746
+11603,283
+11604,277
+11605,15311
+11606,66703
+11607,77192
+11608,15311
+11609,29509
+11610,66703
+11611,64747
+11612,77192
+11613,65763
+11614,5235
+11615,29509
+11616,29509
+11617,55423
+11618,55423
+11619,29509
+11620,12045
+11621,15311
+11622,29509
+11623,38828,72990
+11624,29509,62089
+11625,496
+11626,497
+11627,67957
+11628,48957
+11629,55329
+11630,35243
+11631,53480
+11632,26936
+11633,29509,62089
+11634,42436,37693
+11635,27506
+11636,37693
+11637,80106
+11638,55951
+11639,77689
+11640,23471
+11641,51397
+11642,52887
+11643,77192
+11644,61086
+11645,81781
+11646,38209
+11647,72966
+11648,56119
+11649,72990
+11650,27738
+11651,35243
+11652,52887
+11653,29509,62089
+11654,35787
+11655,20756
+11656,77192
+11657,54979
+11658,36644
+11659,65764
+11660,18882
+11661,47925
+11662,47925
+11663,21938
+11664,33888
+11665,7256
+11666,19649
+11667,19649
+11668,75945
+11669,19649
+11670,50610
+11671,19649
+11672,19649
+11673,47925
+11674,75958
+11675,75958
+11676,75958
+11677,51189
+11678,19649
+11679,19649
+11680,17468
+11681,71988
+11682,47925
+11683,17468
+11684,38676
+11685,59380
+11686,19649
+11687,56917
+11688,19649
+11689,7399
+11690,65960
+11691,28801
+11692,21963
+11693,40303
+11694,48957
+11695,32456
+11696,1548
+11697,54979
+11698,1411
+11699,1412
+11700,19649
+11701,19649
+11702,19649
+11703,19649
+11704,19649
+11705,56219
+11706,75823
+11707,34198
+11708,38680
+11709,24977
+11710,3695
+11711,48210
+11712,65767
+11713,77192
+11714,39404
+11715,71321
+11716,19234
+11717,39403,71333
+11718,11918
+11719,46387
+11720,8397
+11721,47327
+11722,702
+11723,603
+11724,49817
+11725,66703
+11726,20426
+11727,60611
+11728,64250
+11729,34746
+11730,40303
+11731,10300
+11732,34746
+11733,61789
+11734,25303
+11735,72990
+11736,43104,75078
+11737,19389
+11738,52660
+11739,52659
+11740,20756
+11741,60592
+11742,79076
+11743,19713
+11744,55952
+11745,60592
+11746,6952
+11747,14829
+11748,9344
+11749,9453
+11750,40303
+11751,52887
+11752,41879
+11753,80477
+11754,41879
+11755,61902
+11756,76664
+11757,52887
+11758,24325
+11759,60450,76135
+11760,35474
+11761,8397
+11762,66703
+11763,20973
+11764,52887
+11765,21720
+11766,1324
+11767,79608
+11768,1319
+11769,55022
+11770,11769
+11771,8205
+11772,35096
+11773,35097
+11774,21963
+11775,35097
+11776,39679
+11777,21720
+11778,21719
+11779,5350
+11780,56430
+11781,21719
+11782,14504
+11783,8740,74414,58389
+11784,68591
+11785,6952
+11786,15311
+11787,54979
+11788,35097
+11789,28801,60611
+11790,14493
+11791,65960
+11792,16703
+11793,61622
+11794,14493
+11795,21444
+11796,52887
+11797,63677
+11798,32370
+11799,24325
+11800,40986
+11801,29313
+11802,76135,45839
+11803,59564
+11804,5765
+11805,5777
+11806,48957
+11807,26155
+11808,20756
+11809,41879
+11810,52887
+11811,66703
+11812,702
+11813,603
+11814,68520
+11815,58374
+11816,48957
+11817,30461
+11818,48957
+11819,77192
+11820,2947
+11821,48957
+11822,82020
+11823,46149
+11824,37119
+11825,74500
+11826,43104
+11827,21959
+11828,29580
+11829,603
+11830,2080
+11831,43104
+11832,48957
+11833,3969
+11834,702
+11835,603
+11836,29509
+11837,48957
+11838,3969
+11839,702
+11840,603
+11841,77192
+11842,79820
+11843,603
+11844,702
+11845,30460
+11846,29509,62095
+11847,75958
+11848,66703
+11849,73084
+11850,48957
+11851,1533
+11852,81170
+11853,21770
+11854,40012
+11855,23631
+11856,11865
+11857,11870
+11858,78432
+11859,40068
+11860,49156
+11861,80522
+11862,55057
+11863,66862
+11864,71398
+11865,58287
+11866,62055
+11867,40068
+11868,75358
+11869,79942
+11870,80132
+11871,81907
+11872,50878
+11873,33928
+11874,3969
+11875,29509,62095
+11876,702
+11877,23471
+11878,27118
+11879,73341
+11880,39676
+11881,603
+11882,32456
+11883,48957
+11884,71786
+11885,56166
+11886,33741
+11887,36008
+11888,45813
+11889,58287
+11890,48210
+11891,7641
+11892,29509
+11893,67957
+11894,77192
+11895,29509,62089
+11896,20745
+11897,21996
+11898,48957
+11899,35944
+11900,2947
+11901,24302
+11902,62981
+11903,21459,76134
+11904,19231
+11905,29509
+11906,29509,62089
+11907,29509,62089
+11908,53480,60611
+11909,50604
+11910,40986
+11911,65501
+11912,31859
+11913,42436,53277
+11914,15407
+11915,15406
+11916,14638
+11917,14829
+11918,1752
+11919,20121
+11920,20121
+11921,80394
+11922,66703
+11923,29509
+11924,56119
+11925,55951
+11926,43532
+11927,38091
+11928,29509
+11929,37150
+11930,37150
+11931,21963
+11932,3295
+11933,3294
+11934,55022
+11935,29509
+11936,65760
+11937,24379,67582
+11938,33688
+11939,33688
+11940,62015
+11941,56638
+11942,43701
+11943,58004
+11944,35342,81781
+11945,56119
+11946,21963
+11947,41879
+11948,41878
+11949,41882
+11950,46148
+11951,76134
+11952,31041
+11953,47770,51626,22351
+11954,60448
+11955,66703
+11956,283
+11957,11958
+11958,56171
+11959,41446
+11960,283
+11961,277
+11962,55022
+11963,277
+11964,57223
+11965,41879
+11966,61902
+11967,48957
+11968,33797
+11969,29509
+11970,6952
+11971,66703
+11972,46070
+11973,56171
+11974,3455
+11975,71624
+11976,56230
+11977,52887
+11978,46962
+11979,15311
+11980,20339
+11981,29509
+11982,15311
+11983,15311
+11984,15311
+11985,8551
+11986,15311
+11987,15311
+11988,15311
+11989,55951
+11990,66703
+11991,55081
+11992,8652
+11993,603
+11994,46998
+11995,63460
+11996,22643
+11997,22643
+11998,22643
+11999,79224
+12000,14290
+12001,13746
+12002,29509
+12003,12045
+12004,59565
+12005,40685
+12006,29513
+12007,28801,60435
+12008,22420
+12009,50584
+12010,21720
+12011,21719
+12012,53480
+12013,77192,62095
+12014,77192
+12015,22649
+12016,68520
+12017,51397
+12018,77192
+12019,23679
+12020,13815
+12021,19649
+12022,74973
+12023,17915
+12024,17916
+12025,35097
+12026,60822
+12027,6298
+12028,29509,62089
+12029,48957
+12030,49079
+12031,75942
+12032,60822
+12033,60822
+12034,31542
+12035,6305
+12036,43701
+12037,71624
+12038,6264
+12039,31459
+12040,14517
+12041,43104
+12042,12045
+12043,81781
+12044,28801
+12045,34389
+12046,55955
+12047,43104
+12048,72990
+12049,43104
+12050,31656
+12051,30391
+12052,604
+12053,41509
+12054,32456
+12055,59305
+12056,32362
+12057,77637
+12058,81669
+12059,3969
+12060,702
+12061,603
+12062,56127
+12063,73555
+12064,702
+12065,603
+12066,5112
+12067,38201
+12068,48957
+12069,1324
+12070,9143
+12071,55022
+12072,12071
+12073,59305
+12074,55423
+12075,77192
+12076,66703
+12077,61729
+12078,68544
+12079,16638
+12080,1324
+12081,32473
+12082,29509
+12083,32473
+12084,43104
+12085,11018
+12086,20082
+12087,1755
+12088,26411
+12089,5777
+12090,35787
+12091,37043
+12092,35787
+12093,23675
+12094,34959
+12095,48210
+12096,24224
+12097,32473
+12098,43104
+12099,43104
+12100,59542
+12101,35787
+12102,79410
+12103,15040
+12104,51868
+12105,53072
+12106,72559
+12107,15039
+12108,5765
+12109,68544
+12110,46760
+12111,12113
+12112,51867
+12113,55022
+12114,75942
+12115,22642
+12116,21992
+12117,65960
+12118,40303
+12119,44953
+12120,20756
+12121,52887
+12122,21720
+12123,21719
+12124,20426
+12125,52886
+12126,52887
+12127,20756
+12128,40303
+12129,56119
+12130,21754
+12131,21754
+12132,59903
+12133,2947
+12134,52264
+12135,2938
+12136,48957
+12137,6984
+12138,33928
+12139,29509
+12140,21754
+12141,29509
+12142,14504
+12143,61622
+12144,43104
+12145,5345,38439
+12146,34746
+12147,24325
+12148,47925
+12149,29621
+12150,20756
+12151,48028,60435
+12152,61182
+12153,25303
+12154,24325
+12155,24325
+12156,49836
+12157,48210
+12158,24321
+12159,63459
+12160,35787
+12161,16443
+12162,52660
+12163,55423
+12164,29509
+12165,33797
+12166,15311
+12167,5350
+12168,57289
+12169,35243
+12170,29509
+12171,79850
+12172,1752
+12173,27762
+12174,27763
+12175,24325
+12176,52887
+12177,52887
+12178,24325
+12179,52887
+12180,79850
+12181,52660
+12182,52659
+12183,21719
+12184,21720
+12185,24325
+12186,12107
+12187,67751
+12188,67752
+12189,35097
+12190,35096
+12191,6952
+12192,51068
+12193,24828
+12194,81781
+12195,36381
+12196,81781
+12197,81781
+12198,81781
+12199,58798
+12200,36381
+12201,19231
+12202,67762
+12203,42338
+12204,42290
+12205,48957
+12206,34198
+12207,29509,62089
+12208,53210
+12209,81781
+12210,31533
+12211,29509
+12212,66703
+12213,63327
+12214,25303
+12215,13746
+12216,39183
+12217,65759
+12218,60448
+12219,62938
+12220,48210
+12221,21754
+12222,46901
+12223,19649
+12224,21443
+12225,10295
+12226,68591
+12227,24325
+12228,16912
+12229,35243
+12230,35242
+12231,24224
+12232,52887
+12233,52886
+12234,35243
+12235,63668
+12236,21963
+12237,31542
+12238,6984
+12239,20756
+12240,54979
+12241,40303
+12242,66703
+12243,29509
+12244,29509,62089
+12245,36381
+12246,12045
+12247,67979
+12248,52886
+12249,52887
+12250,52887
+12251,20756
+12252,20756
+12253,24325
+12254,55951
+12255,38091
+12256,21720
+12257,55951
+12258,31014
+12259,63459
+12260,63461
+12261,63460
+12262,67039
+12263,24325
+12264,35097
+12265,60611
+12266,21719
+12267,21720
+12268,31041
+12269,12217
+12270,47925
+12271,19649
+12272,38676
+12273,19649
+12274,57561
+12275,15623
+12276,15622
+12277,40299
+12278,77192
+12279,63586,69029
+12280,16685
+12281,15622
+12282,702
+12283,66703
+12284,78725
+12285,46610
+12286,43672
+12287,603
+12288,60611
+12289,50604
+12290,59251
+12291,496,13420
+12292,497
+12293,55423
+12294,52887
+12295,50215
+12296,74666
+12297,56189
+12298,48957
+12299,27088
+12300,702
+12301,72966
+12302,603
+12303,39713
+12304,50201
+12305,49817,67582
+12306,32931
+12307,3695
+12308,3228
+12309,15679
+12310,5485
+12311,69688
+12312,43172
+12313,6264
+12314,6337
+12315,6625
+12316,12320
+12317,8310
+12318,8398
+12319,9453
+12320,6637
+12321,1717
+12322,9986
+12323,15812
+12324,81170
+12325,65579
+12326,23631
+12327,25518
+12328,76441
+12329,31902
+12330,32766
+12331,58287
+12332,46521
+12333,49156
+12334,80522
+12335,55057
+12336,58287
+12337,62055
+12338,64132
+12339,68344
+12340,79942
+12341,80132
+12342,82020
+12343,59827
+12344,68520
+12345,64415
+12346,43776
+12347,35097
+12348,35096
+12349,61258
+12350,39679
+12351,39678
+12352,21963
+12353,39679
+12354,38173
+12355,29621
+12356,40303
+12357,41879
+12358,61902
+12359,49162
+12360,19231
+12361,3297
+12362,724
+12363,50346
+12364,61182
+12365,72966
+12366,76664
+12367,22032
+12368,6952
+12369,19713
+12370,73015
+12371,22034
+12372,56127
+12373,55423
+12374,29509
+12375,4862
+12376,76330
+12377,4861
+12378,1324
+12379,1048
+12380,55022
+12381,61622,53480,21996
+12382,29509
+12383,61086
+12384,26411
+12385,29509
+12386,75510
+12387,308
+12388,41879
+12389,29509
+12390,67038
+12391,40303
+12392,81781
+12393,52887
+12394,8331
+12395,8330
+12396,21719
+12397,21720
+12398,55767
+12399,67039
+12400,39679
+12401,8331
+12402,8330
+12403,67039
+12404,21963
+12405,61254
+12406,28801
+12407,2947
+12408,39679
+12409,52887
+12410,52887
+12411,29621
+12412,29621
+12413,21996
+12414,30391
+12415,48028
+12416,78723
+12417,26155
+12418,57932
+12419,65960
+12420,40299
+12421,40303
+12422,40299
+12423,39678
+12424,61258
+12425,39679
+12426,65960
+12427,65960
+12428,31542
+12429,29621
+12430,29621
+12431,55081
+12432,29621
+12433,24321
+12434,24325
+12435,40299
+12436,57140
+12437,59380
+12438,14504
+12439,21754
+12440,27763
+12441,61258
+12442,29509,62089
+12443,66703
+12444,75958
+12445,58168
+12446,13815
+12447,55081
+12448,70426,31041
+12449,21720
+12450,21719
+12451,55080
+12452,61258
+12453,52887
+12454,81781
+12455,49552
+12456,34198
+12457,19382
+12458,60120
+12459,57277
+12460,52887
+12461,40299
+12462,40303
+12463,702
+12464,21814
+12465,28104
+12466,81079
+12467,70033
+12468,70033
+12469,53072
+12470,80927
+12471,603
+12472,39679
+12473,24325
+12474,55951
+12475,55767,37204
+12476,81669
+12477,81669
+12478,81669,57602
+12479,21396
+12480,68122
+12481,68344
+12482,46901
+12483,76134,60448
+12484,66703
+12485,24321
+12486,24325
+12487,55951
+12488,31542,35163
+12489,72961
+12490,35097
+12491,8162
+12492,10220
+12493,29509
+12494,21443
+12495,29509
+12496,43104
+12497,61789
+12498,55012
+12499,29509
+12500,70166
+12501,19164
+12502,74117
+12503,31279
+12504,13088
+12505,67039
+12506,20756
+12507,51397
+12508,20756
+12509,52886
+12510,52887
+12511,35096
+12512,77192
+12513,55081
+12514,55661
+12515,55951
+12516,28889
+12517,46215
+12518,24325
+12519,72990
+12520,60448
+12521,35243
+12522,3228
+12523,8647
+12524,8747
+12525,8748
+12526,40303
+12527,20756
+12528,24325
+12529,81781
+12530,52886
+12531,52887
+12532,52887
+12533,55081
+12534,52887
+12535,55081
+12536,4861
+12537,4862
+12538,66703
+12539,29509,62089
+12540,23471
+12541,29509
+12542,36381
+12543,8397
+12544,12547
+12545,22642
+12546,20756
+12547,8411
+12548,5350
+12549,56119,62089
+12550,37671
+12551,35097
+12552,40299
+12553,40303
+12554,39678
+12555,8291
+12556,71398
+12557,29621
+12558,40299
+12559,20756
+12560,20756
+12561,40299
+12562,29621
+12563,20756
+12564,29509
+12565,54980
+12566,54979
+12567,6850
+12568,44953
+12569,44953
+12570,28801
+12571,14638
+12572,21872
+12573,72913
+12574,52887
+12575,52886
+12576,39803
+12577,20756
+12578,24321
+12579,48768,48028
+12580,24325
+12581,15623
+12582,3652
+12583,496
+12584,56119
+12585,9045,7766
+12586,17258
+12587,36892
+12588,37704
+12589,77192
+12590,24325
+12591,66703
+12592,25018
+12593,29509
+12594,82070
+12595,52887
+12596,6952
+12597,66703
+12598,66703
+12599,21443
+12600,43817
+12601,21720
+12602,66759
+12603,52887
+12604,61622
+12605,29509
+12606,52887
+12607,60822
+12608,60822
+12609,60822
+12610,60822
+12611,48028,65531
+12612,58853,30945
+12613,22032
+12614,77192
+12615,67038
+12616,52660
+12617,78725
+12618,77192
+12619,29509
+12620,5485
+12621,78510
+12622,78725
+12623,65764
+12624,5501
+12625,65960
+12626,35243
+12627,40303
+12628,67039
+12629,24325
+12630,65960
+12631,81683
+12632,28862
+12633,64747
+12634,31279
+12635,41879
+12636,21963
+12637,51068
+12638,81431
+12639,29419
+12640,34989
+12641,24841
+12642,77083
+12643,28322
+12644,24325
+12645,67039
+12646,57472
+12647,68668
+12648,43104
+12649,29553
+12650,25451
+12651,30183
+12652,67608
+12653,66592
+12654,45886
+12655,56618
+12656,66523
+12657,60808
+12658,72249
+12659,73923
+12660,77666
+12661,77883
+12662,80083
+12663,82020
+12664,56444
+12665,21963
+12666,24325
+12667,8327
+12668,60639,72990
+12669,29509
+12670,77192
+12671,52660
+12672,52659
+12673,79650
+12674,48028
+12675,81781,35342
+12676,40303
+12677,34990
+12678,58305
+12679,62089
+12680,24325
+12681,52887
+12682,40303
+12683,21719
+12684,21720
+12685,10300
+12686,68474
+12687,15404
+12688,8291
+12689,22850
+12690,617
+12691,617,58915
+12692,34746
+12693,15500
+12694,15499
+12695,6163
+12696,1324
+12697,1319
+12698,55022
+12699,12698
+12700,21720
+12701,21719
+12702,789
+12703,35097
+12704,35787
+12705,46070
+12706,21443
+12707,32456
+12708,21720
+12709,43121
+12710,724
+12711,33327
+12712,38173
+12713,76664
+12714,38228
+12715,29509,62089
+12716,52944
+12717,43104
+12718,75958
+12719,75958
+12720,61788
+12721,61793
+12722,1048
+12723,75958
+12724,31041
+12725,61622
+12726,13731
+12727,21719
+12728,21720
+12729,35097
+12730,73650
+12731,21444
+12732,21968
+12733,77192
+12734,3701
+12735,55080
+12736,61258
+12737,43701
+12738,77192
+12739,64747
+12740,496
+12741,497
+12742,52887
+12743,6952
+12744,33928
+12745,68785
+12746,6952
+12747,3295
+12748,69751
+12749,82151
+12750,77192,62095
+12751,56119
+12752,81482
+12753,64344
+12754,73177
+12755,3294
+12756,55022
+12757,67039
+12758,50227
+12759,55080
+12760,61258
+12761,24325
+12762,24321
+12763,55951
+12764,28849
+12765,31656
+12766,39803
+12767,55081
+12768,43910
+12769,61086
+12770,21681
+12771,21720
+12772,39294
+12773,29962
+12774,39803
+12775,52887
+12776,29621
+12777,34989
+12778,35787
+12779,35243
+12780,35242
+12781,29509
+12782,55081
+12783,67038
+12784,67038
+12785,52887
+12786,40303
+12787,65581
+12788,32456
+12789,8213
+12790,56171
+12791,55022
+12792,38404
+12793,67201
+12794,20690
+12795,35917
+12796,40303
+12797,24321
+12798,7420
+12799,52887
+12800,15822
+12801,15820
+12802,55022
+12803,40303
+12804,67462
+12805,21720
+12806,24237
+12807,56119,62089
+12808,66703
+12809,40303
+12810,22257
+12811,52887
+12812,14127
+12813,44703
+12814,39679
+12815,74000
+12816,14504
+12817,58685
+12818,71347,37127
+12819,24321
+12820,61258
+12821,35097
+12822,55951
+12823,77192
+12824,56119
+12825,61254
+12826,78725
+12827,36216,60786,48319
+12828,6305
+12829,12828
+12830,7658
+12831,3297
+12832,38828
+12833,73650
+12834,68027
+12835,81781
+12836,26409
+12837,39678
+12838,29509
+12839,67039
+12840,56785
+12841,46148
+12842,74560
+12843,57391
+12844,57391
+12845,67039
+12846,29549
+12847,50910
+12848,41879
+12849,41878
+12850,60448
+12851,28747
+12852,66703
+12853,55423
+12854,56133
+12855,67039
+12856,27763
+12857,40303
+12858,64250
+12859,58798
+12860,61254
+12861,61254
+12862,81161
+12863,60960
+12864,53066
+12865,65767
+12866,18614
+12867,71347
+12868,75057
+12869,21963
+12870,35097
+12871,75751
+12872,43104
+12873,1319
+12874,12688
+12875,24325
+12876,24321
+12877,24325
+12878,7658
+12879,29509
+12880,63193
+12881,53480,60448
+12882,50604
+12883,30986
+12884,12900
+12885,5251
+12886,8291
+12887,21754
+12888,6952
+12889,496
+12890,24325
+12891,24321
+12892,20756
+12893,24325
+12894,56219
+12895,35243
+12896,35242
+12897,19718
+12898,3701
+12899,61381
+12900,55487
+12901,81781
+12902,28801,24249
+12903,67039,17393
+12904,24325
+12905,43104
+12906,34746
+12907,54980
+12908,54979
+12909,19649
+12910,9931
+12911,29509
+12912,617
+12913,38441
+12914,271
+12915,81781
+12916,29509,62089
+12917,1017,59588
+12918,33928
+12919,55951
+12920,13019
+12921,4146
+12922,39623
+12923,1017,54768,67582
+12924,62015
+12925,62015
+12926,57140
+12927,50604
+12928,28801
+12929,80394
+12930,29621
+12931,75828
+12932,60620
+12933,33797
+12934,31542
+12935,24325
+12936,2751
+12937,2752
+12938,59668
+12939,21444
+12940,35097
+12941,60786
+12942,6298
+12943,37204
+12944,58168
+12945,59670
+12946,68647
+12947,66703
+12948,37043
+12949,38828
+12950,65064
+12951,66703
+12952,20756
+12953,54979
+12954,61252
+12955,20756
+12956,21719
+12957,21720
+12958,67039
+12959,27763
+12960,24325
+12961,24325
+12962,20756
+12963,66703
+12964,61796
+12965,55951
+12966,31542
+12967,21444
+12968,53480,21996
+12969,60448,51991
+12970,77223
+12971,7783
+12972,76135,45839
+12973,55055
+12974,67039
+12975,24321
+12976,20756
+12977,24321
+12978,24325
+12979,55951
+12980,24391
+12981,39679
+12982,41879
+12983,20425
+12984,59903
+12985,80106
+12986,55081
+12987,20756
+12988,32028
+12989,40299
+12990,10300
+12991,21719
+12992,55951
+12993,24325
+12994,21720
+12995,15814
+12996,41879
+12997,6322
+12998,30218
+12999,30217
+13000,46070
+13001,55081
+13002,3969
+13003,702
+13004,6625
+13005,603
+13006,60120
+13007,496
+13008,66703
+13009,23471
+13010,77192
+13011,21963
+13012,26469
+13013,43814
+13014,75958
+13015,60592
+13016,64202
+13017,13815
+13018,13816
+13019,724
+13020,723
+13021,59380
+13022,75958
+13023,29509
+13024,49817,3119
+13025,30317
+13026,20889
+13027,35050
+13028,10300
+13029,52886
+13030,40303
+13031,36329
+13032,40299
+13033,20756
+13034,40303
+13035,20756
+13036,40299
+13037,71493
+13038,81781
+13039,24321
+13040,24325
+13041,48961
+13042,27763
+13043,29509
+13044,21963
+13045,72990
+13046,63459
+13047,63460
+13048,21963
+13049,40303
+13050,21719
+13051,21719
+13052,21720
+13053,21720
+13054,35097
+13055,24325
+13056,20756
+13057,40299
+13058,40303
+13059,10300
+13060,29509
+13061,56638
+13062,60120
+13063,6001
+13064,24325
+13065,51640
+13066,52887
+13067,52887
+13068,52887
+13069,71493
+13070,41879
+13071,41878
+13072,41882
+13073,56230
+13074,30700
+13075,60448
+13076,39803
+13077,52660
+13078,6952
+13079,29509
+13080,55951
+13081,31542
+13082,42436
+13083,37704
+13084,8291
+13085,44599
+13086,80106
+13087,36047
+13088,34389
+13089,48870
+13090,50248
+13091,50231
+13092,51393
+13093,81329
+13094,46818
+13095,35097
+13096,72966
+13097,41879
+13098,41878
+13099,15822
+13100,24224
+13101,15820
+13102,77641
+13103,32326
+13104,57474
+13105,20217
+13106,55022
+13107,44543
+13108,29509
+13109,21963
+13110,52887
+13111,52886
+13112,52887
+13113,1016,67582
+13114,33688
+13115,52904
+13116,39803
+13117,30374
+13118,77192
+13119,27088,70166
+13120,61622
+13121,71607
+13122,35558
+13123,56127
+13124,27763
+13125,52887
+13126,40303
+13127,20756
+13128,40299
+13129,70707
+13130,81781
+13131,67039
+13132,67039
+13133,52420
+13134,41879
+13135,35492
+13136,41878
+13137,41882
+13138,24325
+13139,5007
+13140,52887
+13141,29621
+13142,35874
+13143,6952
+13144,24325
+13145,24321
+13146,7657
+13147,24321
+13148,24325
+13149,55081
+13150,24325
+13151,52886
+13152,20756
+13153,21719
+13154,21720
+13155,55081
+13156,24321
+13157,24325
+13158,41878
+13159,41879
+13160,41879
+13161,73291
+13162,35875
+13163,38059
+13164,67277
+13165,8647
+13166,24325
+13167,61086
+13168,52887
+13169,52887
+13170,67039
+13171,24321
+13172,24325
+13173,20756
+13174,21719
+13175,29621
+13176,39679
+13177,67039
+13178,68520
+13179,67038
+13180,29509
+13181,40578
+13182,21720
+13183,32467
+13184,3982
+13185,62914
+13186,49817
+13187,49817
+13188,49817
+13189,49817
+13190,49817
+13191,29509
+13192,61086
+13193,10160
+13194,18109
+13195,56219
+13196,52674
+13197,52675
+13198,55022
+13199,13198
+13200,21443
+13201,32456
+13202,43104
+13203,48210
+13204,68448
+13205,68461
+13206,35097
+13207,24325
+13208,24325
+13209,21720
+13210,41607
+13211,39679
+13212,21720
+13213,55081
+13214,56119
+13215,67920
+13216,52887
+13217,52886
+13218,52887
+13219,16914
+13220,43104
+13221,15309
+13222,2923
+13223,24321
+13224,24321
+13225,24325
+13226,24325
+13227,31542
+13228,72966
+13229,54979
+13230,54980
+13231,40299
+13232,55081
+13233,20756
+13234,41879
+13235,19629
+13236,19629
+13237,19629
+13238,19629
+13239,19629
+13240,19629
+13241,19629
+13242,19629
+13243,40303
+13244,21963
+13245,35243
+13246,60592
+13247,67039
+13248,59564
+13249,40303
+13250,36795
+13251,40303
+13252,55081
+13253,55081
+13254,43104
+13255,48210
+13256,16822
+13257,34389
+13258,65960
+13259,21719
+13260,21720
+13261,21720
+13262,75510
+13263,21719
+13264,39679
+13265,21720
+13266,44702
+13267,44703
+13268,35243
+13269,41879
+13270,25175
+13271,65960
+13272,24325
+13273,55081
+13274,52886
+13275,52887
+13276,50737
+13277,21720
+13278,21719
+13279,30218
+13280,21963
+13281,35243
+13282,52887
+13283,52886
+13284,54979
+13285,61254
+13286,27763
+13287,27762
+13288,29621
+13289,41879
+13290,41877
+13291,41877
+13292,70426
+13293,63586
+13294,24325
+13295,6298
+13296,20756
+13297,58798,68520
+13298,44703
+13299,24321
+13300,20756
+13301,62701
+13302,67039
+13303,42436
+13304,19234
+13305,24325
+13306,67039
+13307,21963
+13308,31542
+13309,24325
+13310,24325
+13311,39803
+13312,43104
+13313,8409
+13314,43342
+13315,13746
+13316,21719
+13317,35243
+13318,21720
+13319,72966
+13320,74625
+13321,39803
+13322,65764
+13323,55423
+13324,63097
+13325,35097
+13326,69363
+13327,39048
+13328,43107
+13329,21963
+13330,77192
+13331,50201
+13332,62902
+13333,39679
+13334,13420
+13335,17555
+13336,35097
+13337,35412
+13338,67039
+13339,44702
+13340,79850
+13341,21963
+13342,54980
+13343,60620
+13344,61622
+13345,57531
+13346,77192
+13347,21720
+13348,66703
+13349,61254
+13350,24325
+13351,24325
+13352,20756
+13353,21720
+13354,21719
+13355,29621
+13356,79618
+13357,13356
+13358,80962
+13359,13356
+13360,65374
+13361,29509
+13362,36381
+13363,44703
+13364,20426
+13365,35097
+13366,35096
+13367,61258
+13368,20425
+13369,24325
+13370,24325
+13371,52887
+13372,37043
+13373,24325
+13374,24321
+13375,67039
+13376,35097
+13377,20690
+13378,21963
+13379,36381,57109
+13380,24325
+13381,29509
+13382,31542
+13383,35874
+13384,60216
+13385,70209
+13386,67039
+13387,27763
+13388,55423
+13389,35097
+13390,31041
+13391,67039
+13392,46384
+13393,67039
+13394,52887
+13395,37204
+13396,60611
+13397,53624
+13398,53624
+13399,36381
+13400,72990
+13401,72990
+13402,24321
+13403,29509
+13404,77192
+13405,65960
+13406,52887
+13407,39679
+13408,62015
+13409,62015
+13410,62015
+13411,62015
+13412,62015
+13413,62015
+13414,62015
+13415,62015
+13416,31460
+13417,29621
+13418,54980
+13419,35243
+13420,724
+13421,60611
+13422,39119
+13423,50604
+13424,50604
+13425,35097
+13426,29509
+13427,21720
+13428,49833
+13429,36892,67195
+13430,35096
+13431,61258
+13432,35097
+13433,30461
+13434,63459
+13435,41879
+13436,41878
+13437,61086
+13438,75005
+13439,77192
+13440,61086
+13441,24325
+13442,24321
+13443,67038
+13444,52886
+13445,55081
+13446,67039
+13447,81781,61622
+13448,40303
+13449,60448
+13450,18880
+13451,60450
+13452,19497
+13453,56127
+13454,66703
+13455,81161
+13456,40299
+13457,39679
+13458,20756
+13459,60592
+13460,67039
+13461,67039
+13462,40303
+13463,52886
+13464,35243
+13465,36381
+13466,24325
+13467,20756
+13468,52887
+13469,41879
+13470,20756
+13471,29621
+13472,38088
+13473,55081
+13474,24325
+13475,57277
+13476,26411
+13477,55081
+13478,27763
+13479,38173
+13480,52887
+13481,20756
+13482,20426
+13483,20425
+13484,33239
+13485,33238
+13486,40303
+13487,40299
+13488,39679
+13489,41879
+13490,70166
+13491,61877
+13492,21720
+13493,57838
+13494,79846
+13495,81781
+13496,81781
+13497,38173
+13498,24321
+13499,24325
+13500,60448
+13501,46760
+13502,29509
+13503,35096
+13504,61258
+13505,35097
+13506,24236
+13507,41878
+13508,41879
+13509,19629
+13510,19629
+13511,39803
+13512,21968
+13513,14504
+13514,24325
+13515,24325
+13516,14290
+13517,77192
+13518,30461
+13519,25486
+13520,36049
+13521,66703
+13522,55081
+13523,55423
+13524,13717
+13525,77192
+13526,67039
+13527,24321
+13528,24325
+13529,42304
+13530,24325
+13531,24321
+13532,20756
+13533,24325
+13534,44702
+13535,44703
+13536,52660
+13537,81781,61622
+13538,40299
+13539,21720
+13540,52887
+13541,24325
+13542,60592
+13543,21963
+13544,67039
+13545,35773
+13546,19231
+13547,61086
+13548,6298
+13549,1752
+13550,5777
+13551,35243
+13552,79167,51942
+13553,40004
+13554,27059
+13555,5765
+13556,21962
+13557,61258
+13558,51397
+13559,24325
+13560,15679
+13561,55022
+13562,21720
+13563,59048
+13564,13746
+13565,40303
+13566,40012
+13567,58798
+13568,72892
+13569,77585
+13570,22642
+13571,22643
+13572,24325
+13573,39679
+13574,53295
+13575,29621
+13576,81687
+13577,40303
+13578,21720
+13579,67039
+13580,67038
+13581,35096
+13582,61258
+13583,51397
+13584,21720
+13585,35097
+13586,11472
+13587,20756
+13588,40299
+13589,21443
+13590,1548
+13591,75450
+13592,40303
+13593,40299
+13594,20426
+13595,20425
+13596,29621
+13597,39678
+13598,39679
+13599,41878
+13600,41879
+13601,61902
+13602,61902
+13603,40303
+13604,39679
+13605,40303
+13606,40299
+13607,40303
+13608,35097
+13609,40299
+13610,40303
+13611,72310
+13612,7734
+13613,9189
+13614,40303
+13615,40303
+13616,53118
+13617,29509
+13618,42436,72990
+13619,4861
+13620,4862
+13621,56246
+13622,67039
+13623,67039
+13624,52886
+13625,52887
+13626,30490
+13627,71624
+13628,74625
+13629,55081
+13630,55080
+13631,15438
+13632,43104
+13633,6952
+13634,24325
+13635,21770
+13636,61622
+13637,21720
+13638,77192
+13639,60448
+13640,75958
+13641,75958
+13642,75958
+13643,5297
+13644,44953
+13645,21720
+13646,21719
+13647,60592
+13648,40303
+13649,63460
+13650,24325
+13651,24325
+13652,56119
+13653,61086
+13654,39925
+13655,38067
+13656,33640
+13657,56119,62089
+13658,56119
+13659,28106
+13660,29509,62089
+13661,56119
+13662,56119
+13663,32526
+13664,31041
+13665,81781
+13666,81781
+13667,29509,62095
+13668,29509
+13669,29509,62089
+13670,56119
+13671,29509,62089
+13672,77192,62089
+13673,62089,29509
+13674,5777
+13675,5765
+13676,14516
+13677,13679
+13678,70482
+13679,55022
+13680,27762
+13681,21719
+13682,21720
+13683,24325
+13684,6952
+13685,41016
+13686,81781
+13687,22402
+13688,57075
+13689,30953
+13690,47925
+13691,58798
+13692,30249
+13693,52886
+13694,55081
+13695,55080
+13696,65960
+13697,496
+13698,497
+13699,61796,54425
+13700,39202
+13701,67039
+13702,67039
+13703,17978
+13704,66703
+13705,52886
+13706,52887
+13707,52887
+13708,29509
+13709,31307
+13710,78106
+13711,31041,60639
+13712,81781,61622
+13713,57671
+13714,35097
+13715,60611
+13716,42436,72990
+13717,496
+13718,497
+13719,8170,496
+13720,81781
+13721,81781
+13722,81781
+13723,50215
+13724,25126
+13725,25127
+13726,56119
+13727,56119
+13728,14290
+13729,7658
+13730,8205
+13731,8205
+13732,21720
+13733,68520
+13734,25303
+13735,21765
+13736,76332
+13737,38059
+13738,25234
+13739,21963
+13740,13815
+13741,13817
+13742,13818
+13743,52887
+13744,77192
+13745,62731
+13746,45383
+13747,35394
+13748,50878
+13749,66824
+13750,29574
+13751,56119
+13752,40299
+13753,40303
+13754,55951
+13755,6941
+13756,71624
+13757,28801
+13758,37043
+13759,20756
+13760,20977
+13761,45383
+13762,35096
+13763,61258
+13764,73507
+13765,38256
+13766,41654
+13767,31417
+13768,2947
+13769,62914
+13770,77192
+13771,78725
+13772,48957
+13773,24325
+13774,52887
+13775,40303
+13776,40303
+13777,40299
+13778,40303
+13779,35243
+13780,22420
+13781,22420
+13782,61254
+13783,20756
+13784,52887
+13785,52886
+13786,24325
+13787,24321
+13788,20756
+13789,21720
+13790,24325
+13791,55951
+13792,24199
+13793,52887
+13794,52886
+13795,24325
+13796,59380
+13797,59380
+13798,60611
+13799,31041
+13800,63193
+13801,16912
+13802,7420
+13803,67462
+13804,20756
+13805,14504
+13806,20756
+13807,67039
+13808,40303
+13809,35096
+13810,61258
+13811,20426
+13812,52887
+13813,65960
+13814,38059
+13815,3695
+13816,29313
+13817,34546
+13818,3705
+13819,6952
+13820,20426
+13821,35875
+13822,67039
+13823,47786
+13824,47786
+13825,8209
+13826,6637
+13827,49833
+13828,29621
+13829,60592
+13830,71576
+13831,20756
+13832,71334
+13833,57109
+13834,9384
+13835,6298
+13836,25303
+13837,72966
+13838,29509
+13839,40488
+13840,23471
+13841,44703
+13842,21963
+13843,24325
+13844,24321
+13845,67039
+13846,43104
+13847,6624
+13848,24897
+13849,81103
+13850,67462
+13851,25303
+13852,62516
+13853,24325
+13854,40303
+13855,40303
+13856,40303
+13857,40303
+13858,20426
+13859,21720
+13860,65960
+13861,65960
+13862,67462
+13863,35243
+13864,21719
+13865,21720
+13866,41879
+13867,44703
+13868,20756
+13869,22643
+13870,22645
+13871,22642
+13872,40303
+13873,52887
+13874,44703
+13875,44703
+13876,52660
+13877,35097
+13878,39678
+13879,61258
+13880,29621
+13881,39678
+13882,61258
+13883,39679
+13884,21720
+13885,24321
+13886,20756
+13887,24325
+13888,24325
+13889,21719
+13890,20756
+13891,24325
+13892,24321
+13893,67039
+13894,67039
+13895,55951
+13896,21719
+13897,55081
+13898,26676
+13899,26676
+13900,21963
+13901,21719
+13902,5350
+13903,39678
+13904,39679
+13905,35875
+13906,75510
+13907,29621
+13908,54979
+13909,39679
+13910,39676
+13911,20426
+13912,67039
+13913,35097
+13914,24325
+13915,24321
+13916,24325
+13917,65959
+13918,65960
+13919,40303
+13920,35875
+13921,52887
+13922,41732
+13923,41732
+13924,20756
+13925,35243
+13926,55081
+13927,52887
+13928,37081
+13929,24321
+13930,24325
+13931,24325
+13932,54872
+13933,21996
+13934,36892
+13935,49817
+13936,49817
+13937,65960
+13938,65960
+13939,31041
+13940,41879
+13941,41878
+13942,39183
+13943,29509
+13944,724
+13945,29509
+13946,67039
+13947,603
+13948,48957
+13949,30870
+13950,24325
+13951,71685
+13952,21444
+13953,8409
+13954,13020
+13955,75958
+13956,21720
+13957,40572
+13958,21963
+13959,21719
+13960,63669
+13961,59432
+13962,20756
+13963,52660
+13964,13222
+13965,80106
+13966,35097
+13967,35096
+13968,43104
+13969,8162
+13970,14870
+13971,29509
+13972,31542
+13973,79850
+13974,14871
+13975,58167,31041
+13976,8653
+13977,13815
+13978,13818
+13979,73193
+13980,60620
+13981,25669
+13982,27524
+13983,27524
+13984,66703
+13985,7657
+13986,29509,62089
+13987,76134
+13988,7658
+13989,61622
+13990,72990
+13991,56119
+13992,21963
+13993,20756
+13994,61086
+13995,55951
+13996,70990
+13997,65959
+13998,65960
+13999,24325
+14000,47497,81781
+14001,40303
+14002,81781
+14003,56119
+14004,70033
+14005,21719
+14006,21720
+14007,53861
+14008,21720
+14009,64747
+14010,31043
+14011,29621
+14012,21963
+14013,43362
+14014,24325
+14015,35242
+14016,21720
+14017,79552
+14018,21719
+14019,24325
+14020,49817
+14021,60592
+14022,39679
+14023,35243
+14024,67039
+14025,53480,60448
+14026,6952
+14027,41878
+14028,19713
+14029,1012
+14030,55952
+14031,65959
+14032,65959
+14033,35243
+14034,31542
+14035,51068
+14036,78413
+14037,66491
+14038,50701
+14039,75958
+14040,59903
+14041,1324
+14042,1048
+14043,14044
+14044,55022
+14045,14044
+14046,16858
+14047,75958
+14048,36892
+14049,37693
+14050,36892
+14051,3701
+14052,73650
+14053,44628
+14054,76135
+14055,54636
+14056,4861
+14057,4862
+14058,60120
+14059,2947
+14060,63488
+14061,27255
+14062,2938
+14063,15820
+14064,30900
+14065,723
+14066,34989
+14067,4281
+14068,20690
+14069,71685
+14070,43104
+14071,64255
+14072,25406
+14073,27255
+14074,1533
+14075,25438
+14076,81549
+14077,52857
+14078,52478
+14079,44953
+14080,34389
+14081,29509
+14082,10680
+14083,10676
+14084,617
+14085,60448,51991
+14086,3701
+14087,72961
+14088,24325
+14089,56119
+14090,29509
+14091,7735
+14092,51068
+14093,40810
+14094,36525
+14095,5350
+14096,56119
+14097,76782
+14098,67936
+14099,8360
+14100,8360
+14101,81065
+14102,31041,60639
+14103,40299
+14104,40303
+14105,29509
+14106,36381,61622
+14107,60448,72990
+14108,41879
+14109,41877
+14110,20756
+14111,35243
+14112,55081
+14113,19385
+14114,35096
+14115,7658
+14116,8170,15623
+14117,55423
+14118,40303
+14119,8360
+14120,40299
+14121,20756
+14122,7654
+14123,55423
+14124,32538,30453
+14125,72966
+14126,24321
+14127,22382
+14128,14127
+14129,8360
+14130,39411
+14131,41879
+14132,46274
+14133,14871
+14134,36055
+14135,31041
+14136,49817
+14137,14136
+14138,15311
+14139,46145
+14140,24321
+14141,24325
+14142,74973
+14143,20426
+14144,61258
+14145,21720
+14146,81781
+14147,52887
+14148,20425
+14149,74191,61796
+14150,75745
+14151,75744
+14152,52659
+14153,52660
+14154,57901
+14155,21963
+14156,55080
+14157,21420
+14158,57671
+14159,35243
+14160,52887
+14161,24321
+14162,21719
+14163,24325
+14164,77192
+14165,66703
+14166,20756
+14167,29509
+14168,68783
+14169,60445
+14170,39803
+14171,38828,38447
+14172,72919
+14173,82066,33302
+14174,33302
+14175,35474
+14176,33305
+14177,21963
+14178,20756
+14179,36381
+14180,52887
+14181,31041
+14182,61086
+14183,61531
+14184,29509
+14185,60611
+14186,64553
+14187,56162
+14188,29509
+14189,13746
+14190,38674
+14191,48801
+14192,75958
+14193,65000
+14194,60611
+14195,75744
+14196,76196
+14197,81065
+14198,4057
+14199,63282,5485
+14200,29509,62089
+14201,46149
+14202,24325
+14203,24321
+14204,66703
+14205,75958
+14206,75958
+14207,8170,12280
+14208,56917
+14209,4751
+14210,61788
+14211,75958,75954
+14212,68544
+14213,16443
+14214,77192
+14215,19231,40012
+14216,26016
+14217,48957
+14218,724
+14219,21719
+14220,56127
+14221,49341,30896
+14222,74560
+14223,8647
+14224,8748
+14225,8747
+14226,65764
+14227,40299
+14228,67267
+14229,77192
+14230,63488
+14231,63157
+14232,40303
+14233,72892
+14234,24325
+14235,28938
+14236,72960
+14237,31041
+14238,20535
+14239,28801
+14240,60448
+14241,46149
+14242,22649
+14243,74973
+14244,52887
+14245,68796
+14246,57671
+14247,46274
+14248,40303
+14249,55951
+14250,46149
+14251,68230
+14252,68230
+14253,29509
+14254,57671
+14255,21397
+14256,20756
+14257,29621
+14258,61796
+14259,66703
+14260,54440
+14261,59380
+14262,10583
+14263,10585
+14264,35242
+14265,32160
+14266,31041
+14267,46149
+14268,44440
+14269,54683
+14270,67039
+14271,21720
+14272,75924
+14273,75924
+14274,31542
+14275,44703
+14276,59565
+14277,67822
+14278,25303
+14279,70360,617
+14280,76782
+14281,2080
+14282,2080
+14283,75958
+14284,75958
+14285,75958
+14286,75958
+14287,75958
+14288,75958
+14289,71465
+14290,26948
+14291,25673,74973
+14292,56119,62089
+14293,41388
+14294,58798
+14295,24828
+14296,24828
+14297,20978
+14298,47835
+14299,21397
+14300,6952
+14301,14516
+14302,21720
+14303,35096
+14304,61258
+14305,35097
+14306,55081
+14307,16914
+14308,79475
+14309,24321
+14310,20756
+14311,29509
+14312,35097
+14313,67039
+14314,40303
+14315,40299
+14316,59160
+14317,66703
+14318,80962
+14319,43104
+14320,40299
+14321,52886
+14322,52886
+14323,52887
+14324,40303
+14325,21719
+14326,27763
+14327,22642
+14328,22643
+14329,35097
+14330,35096
+14331,29621
+14332,41879
+14333,39271
+14334,41878
+14335,3969
+14336,702
+14337,28889
+14338,603
+14339,40065,30453
+14340,235
+14341,40098
+14342,68229
+14343,46387
+14344,46966
+14345,64747
+14346,29621
+14347,35874
+14348,35097
+14349,63460
+14350,63459
+14351,61258
+14352,66703
+14353,6298
+14354,81251
+14355,35097
+14356,31609
+14357,20426
+14358,20756
+14359,65960
+14360,55081
+14361,39679
+14362,39678
+14363,61254
+14364,7658
+14365,37127
+14366,36381
+14367,52461
+14368,9043
+14369,9043
+14370,9043
+14371,59376
+14372,51702,69029
+14373,21444
+14374,19231
+14375,32713
+14376,35243
+14377,21459,72990
+14378,81781
+14379,72966
+14380,24325
+14381,68059
+14382,67039
+14383,30554
+14384,22642
+14385,20756
+14386,56230
+14387,53480
+14388,79618
+14389,14318
+14390,71347
+14391,1990
+14392,45758
+14393,14820
+14394,56119,62089
+14395,24199
+14396,79541
+14397,2225
+14398,61622
+14399,61622
+14400,61622
+14401,31041
+14402,49010
+14403,69998
+14404,66703
+14405,29509
+14406,38404
+14407,65374
+14408,50602
+14409,77318
+14410,70796
+14411,39803
+14412,24325
+14413,43341
+14414,24325
+14415,21996
+14416,46747
+14417,46755
+14418,55661
+14419,29509
+14420,43104
+14421,27763
+14422,56119
+14423,21754
+14424,29509
+14425,52983
+14426,29197
+14427,59252
+14428,58108
+14429,33928
+14430,61033
+14431,81781
+14432,38517
+14433,28801
+14434,44513
+14435,70426,29549
+14436,66344
+14437,39803
+14438,67039
+14439,19231
+14440,61622
+14441,22850
+14442,46148
+14443,36381
+14444,63017
+14445,28801
+14446,39803
+14447,38779
+14448,41878
+14449,40303
+14450,42436
+14451,36216
+14452,29509
+14453,77192
+14454,58004
+14455,44708
+14456,36049
+14457,62367
+14458,77192
+14459,77192
+14460,48028,60435
+14461,29509
+14462,64747
+14463,72990
+14464,47497
+14465,56127
+14466,72166
+14467,35971
+14468,2930
+14469,72468
+14470,80977
+14471,57248
+14472,61086
+14473,20756
+14474,31041
+14475,68520
+14476,21720
+14477,37908
+14478,60611
+14479,3701
+14480,63586
+14481,33797,19234
+14482,46935
+14483,35917
+14484,20889
+14485,47738
+14486,45412
+14487,27507
+14488,11148
+14489,5765
+14490,8397
+14491,3227
+14492,3228
+14493,37693
+14494,37704
+14495,8241
+14496,46696
+14497,65961
+14498,20196,24036
+14499,67120
+14500,29639
+14501,26298,21057
+14502,52342
+14503,40231
+14504,34389
+14505,47001
+14506,50874
+14507,29644
+14508,56480
+14509,57035
+14510,57206
+14511,51523
+14512,76683
+14513,81694
+14514,4239
+14515,21754
+14516,9453
+14517,21448
+14518,5777
+14519,5765
+14520,14516
+14521,55022
+14522,3230
+14523,37693
+14524,67195,36892
+14525,14301
+14526,46901,21771
+14527,14870
+14528,31041
+14529,50704
+14530,56119
+14531,31859
+14532,52211
+14533,39859
+14534,35243
+14535,55951
+14536,18084
+14537,35342,81781
+14538,13746
+14539,13746
+14540,24722
+14541,35096
+14542,35243
+14543,63222
+14544,67039
+14545,67038
+14546,61258
+14547,29509
+14548,56119
+14549,41879
+14550,73121
+14551,7620,39509
+14552,8653
+14553,53842
+14554,53842
+14555,76135
+14556,29621
+14557,21963
+14558,36459
+14559,38828
+14560,38828
+14561,61796
+14562,35917
+14563,68544
+14564,61086
+14565,13735
+14566,31041
+14567,36381,61622
+14568,29509
+14569,29509,62089
+14570,77192
+14571,32527
+14572,53842
+14573,69295
+14574,81781
+14575,58798
+14576,22979
+14577,60592
+14578,29509
+14579,69688
+14580,28079
+14581,75057
+14582,74500
+14583,34990
+14584,58798
+14585,81781,60448
+14586,18882
+14587,19796
+14588,61748,48599
+14589,37303
+14590,18882
+14591,55081
+14592,34746
+14593,57671
+14594,21963
+14595,21962
+14596,61258
+14597,25495
+14598,51477
+14599,34989
+14600,31041,60639
+14601,60639
+14602,67039
+14603,21963
+14604,7658
+14605,14950
+14606,66703
+14607,43104
+14608,35097
+14609,20756
+14610,39679
+14611,39803
+14612,39859
+14613,81781
+14614,62914
+14615,52887
+14616,24325
+14617,67039
+14618,47505
+14619,39803
+14620,32456
+14621,51396
+14622,51397
+14623,35917,617
+14624,81781
+14625,55423
+14626,21674
+14627,51991,60448
+14628,28226
+14629,65763
+14630,81781
+14631,21996
+14632,40012
+14633,70426
+14634,47825
+14635,37704
+14636,32456
+14637,50784
+14638,56142
+14639,15679
+14640,12522
+14641,66341
+14642,32481
+14643,66703
+14644,19382
+14645,20152
+14646,71536
+14647,33803
+14648,36452
+14649,55022
+14650,57685
+14651,73913
+14652,70033
+14653,80106
+14654,41879
+14655,41878
+14656,78899
+14657,67039
+14658,67038
+14659,81065
+14660,22850
+14661,25303
+14662,28801
+14663,60611
+14664,22069
+14665,40303
+14666,77192
+14667,28938
+14668,283
+14669,41446
+14670,277
+14671,81161
+14672,24321
+14673,24325
+14674,40303
+14675,21443
+14676,8536
+14677,8535
+14678,51068
+14679,33455
+14680,54443
+14681,77637
+14682,77637
+14683,35766
+14684,72850,72842
+14685,61759
+14686,57868
+14687,66703
+14688,43341
+14689,21444
+14690,21444
+14691,48957
+14692,10300
+14693,10297
+14694,55081
+14695,46696
+14696,65767
+14697,66127
+14698,12547
+14699,54223
+14700,61774
+14701,8397
+14702,66703
+14703,67039
+14704,15499,68383
+14705,41879
+14706,41878
+14707,55081
+14708,20559
+14709,72966
+14710,64747
+14711,66703
+14712,25094
+14713,72990
+14714,8647
+14715,81781
+14716,39679
+14717,16443
+14718,8360
+14719,27763
+14720,77192,62095
+14721,31542
+14722,55081
+14723,24321
+14724,31542
+14725,60216
+14726,70209
+14727,24325
+14728,34746
+14729,11973
+14730,50585
+14731,52887
+14732,51395
+14733,61086
+14734,60639,31041
+14735,3701
+14736,70651
+14737,81635
+14738,48957
+14739,77192
+14740,29603
+14741,48957
+14742,66703
+14743,66703
+14744,29509,62089
+14745,63488,62089
+14746,66703
+14747,77192
+14748,3701
+14749,32456
+14750,66703
+14751,68701
+14752,29509,62089
+14753,32456
+14754,48957
+14755,48957
+14756,72966
+14757,48957
+14758,32456
+14759,21963
+14760,3701
+14761,48957
+14762,20427
+14763,55423
+14764,57140
+14765,74269
+14766,8353
+14767,75958
+14768,20426
+14769,20425
+14770,29509
+14771,29509
+14772,72966
+14773,20427
+14774,6224
+14775,50874
+14776,44952
+14777,61258
+14778,27763
+14779,20756
+14780,77192
+14781,81781
+14782,35557
+14783,724
+14784,11363
+14785,44953
+14786,79675
+14787,61774
+14788,75544
+14789,57277
+14790,40303
+14791,66703
+14792,67656
+14793,67656
+14794,40299
+14795,33797
+14796,617,40065
+14797,21963
+14798,29190
+14799,24325
+14800,27763
+14801,72966
+14802,50215
+14803,46760
+14804,35097
+14805,35096
+14806,15820
+14807,56917
+14808,40303
+14809,39679
+14810,39678
+14811,71856
+14812,29509
+14813,23855
+14814,14820
+14815,29509
+14816,8383
+14817,29509
+14818,66703
+14819,21963
+14820,17655
+14821,21720
+14822,8397
+14823,32456
+14824,48957
+14825,13590
+14826,35097
+14827,14638
+14828,72310
+14829,17497
+14830,49353
+14831,63327
+14832,39480
+14833,77192
+14834,29509
+14835,29509
+14836,975
+14837,29509,62095
+14838,23471
+14839,79076
+14840,29509,62095
+14841,23471
+14842,66703
+14843,79076
+14844,29509
+14845,56119
+14846,21574
+14847,29509
+14848,46070
+14849,64747
+14850,29509
+14851,5765
+14852,5777
+14853,56119
+14854,77192
+14855,77192
+14856,29509
+14857,56119
+14858,29509
+14859,56119
+14860,75955
+14861,81781
+14862,81781
+14863,79850
+14864,24224
+14865,57223
+14866,11957
+14867,35243
+14868,32362
+14869,67039
+14870,8205
+14871,51709
+14872,81193
+14873,29509
+14874,29509
+14875,42436
+14876,77192
+14877,48957
+14878,29509
+14879,59588,47503
+14880,77192
+14881,29509
+14882,33639
+14883,72966
+14884,77341
+14885,23693
+14886,40141
+14887,77192
+14888,35242
+14889,61258
+14890,35243
+14891,15622
+14892,15623
+14893,56219
+14894,29509,62089
+14895,29509
+14896,56119
+14897,21963
+14898,29509,62089
+14899,21963
+14900,29509
+14901,66703
+14902,29509
+14903,29509
+14904,29509
+14905,29509
+14906,29509
+14907,55022
+14908,48957
+14909,56119
+14910,32456
+14911,66703
+14912,35096
+14913,61258
+14914,35097
+14915,20946,51558
+14916,27763
+14917,35096
+14918,61625,9640
+14919,29509
+14920,41879
+14921,41882
+14922,77192
+14923,1048
+14924,56847
+14925,11480
+14926,81065
+14927,29509
+14928,77192
+14929,7658
+14930,61086
+14931,77192
+14932,72308
+14933,29509
+14934,10300
+14935,10297
+14936,43701
+14937,27763
+14938,21963
+14939,55081
+14940,63460
+14941,35243
+14942,29621
+14943,21720
+14944,52887
+14945,21720
+14946,21719
+14947,24325
+14948,35492
+14949,41878
+14950,21805
+14951,20756
+14952,35097
+14953,40303
+14954,40303
+14955,8409
+14956,48957
+14957,8397
+14958,8398
+14959,40303
+14960,29509
+14961,68544
+14962,58798
+14963,26602
+14964,48270
+14965,81781
+14966,15311
+14967,55951
+14968,35097
+14969,35096
+14970,61258
+14971,36381,38735
+14972,2947
+14973,29509
+14974,5501
+14975,72281
+14976,34935,35474
+14977,31041
+14978,80591
+14979,61054
+14980,21963
+14981,14504
+14982,8740,74414,58389
+14983,39713
+14984,21720
+14985,21719
+14986,59456
+14987,21719
+14988,1048
+14989,1324
+14990,55022
+14991,14990
+14992,496
+14993,49817
+14994,77192
+14995,20756
+14996,20756
+14997,65960
+14998,20756
+14999,20756
+15000,20756
+15001,65960
+15002,35096
+15003,35097
+15004,21963
+15005,80962
+15006,79618
+15007,80962
+15008,79618
+15009,29509,62089
+15010,66703
+15011,5111
+15012,15814
+15013,7658
+15014,5032,65531
+15015,43104
+15016,60076
+15017,6305
+15018,7657
+15019,52773
+15020,42436,53277
+15021,36892,67195
+15022,44703
+15023,24325
+15024,67039
+15025,67038
+15026,46148
+15027,5765
+15028,43104
+15029,64747
+15030,29509
+15031,30636
+15032,81781
+15033,24325
+15034,30153
+15035,20756
+15036,43104
+15037,59903
+15038,5765
+15039,6637
+15040,5777
+15041,52264
+15042,20426
+15043,29621
+15044,55081
+15045,21719
+15046,39803
+15047,40303
+15048,40299
+15049,40303
+15050,21720
+15051,24325
+15052,65960
+15053,34422
+15054,39679
+15055,39676
+15056,28801
+15057,67039
+15058,66703
+15059,29509
+15060,55080
+15061,32547
+15062,21996
+15063,70656
+15064,81781
+15065,35097
+15066,81687
+15067,81683
+15068,55081
+15069,39679
+15070,39678
+15071,29621
+15072,67039
+15073,35874
+15074,20756
+15075,41879
+15076,41878
+15077,60620,46145
+15078,46148
+15079,46148
+15080,21432
+15081,27763
+15082,72990
+15083,65501
+15084,31041,60639
+15085,60448
+15086,60450
+15087,55081
+15088,28801
+15089,31041
+15090,43112,38447,38828
+15091,68230
+15092,60448
+15093,21959
+15094,57140
+15095,35150
+15096,31041
+15097,27738
+15098,60639,31041
+15099,31041
+15100,31713
+15101,37127
+15102,61748
+15103,60620,46145
+15104,71572
+15105,54768,60448,35917,58167
+15106,44702
+15107,44703
+15108,40303
+15109,40299
+15110,40303
+15111,21719
+15112,65753
+15113,21443
+15114,65960
+15115,65959
+15116,65960
+15117,55081
+15118,42436
+15119,55081
+15120,52886
+15121,20756
+15122,52887
+15123,27763
+15124,41879
+15125,36982
+15126,36982
+15127,36982
+15128,41878
+15129,41882
+15130,40303
+15131,20756
+15132,41878
+15133,41879
+15134,24321
+15135,24325
+15136,21963
+15137,21719
+15138,21720
+15139,40303
+15140,40299
+15141,40303
+15142,40303
+15143,15897
+15144,40299
+15145,20756
+15146,68268
+15147,77725
+15148,40303
+15149,21963
+15150,45813
+15151,40303
+15152,40299
+15153,20756
+15154,70209
+15155,60216
+15156,20756
+15157,31542
+15158,40012
+15159,5765
+15160,80821
+15161,46035
+15162,39236
+15163,71719
+15164,35557
+15165,49877
+15166,40778
+15167,60899
+15168,75942
+15169,35557
+15170,5777
+15171,61748
+15172,15159
+15173,70761
+15174,19231
+15175,38828
+15176,81781
+15177,42436
+15178,5485
+15179,6403
+15180,46760
+15181,52811,39612
+15182,81582,25022
+15183,29509
+15184,31041
+15185,36381
+15186,63669
+15187,63669
+15188,21963
+15189,21962
+15190,61258
+15191,31542
+15192,21963
+15193,21720
+15194,21720
+15195,21719
+15196,40299
+15197,55951
+15198,29621
+15199,43104
+15200,56847
+15201,8291
+15202,77646
+15203,2368
+15204,23471
+15205,68544
+15206,68544
+15207,28801
+15208,79591
+15209,18052
+15210,49341
+15211,46779
+15212,70707
+15213,29509,62095
+15214,76330
+15215,67039
+15216,40303
+15217,29509
+15218,55081
+15219,69173
+15220,52999
+15221,4389
+15222,37702
+15223,5576
+15224,5576
+15225,5576
+15226,5576
+15227,5576
+15228,9444
+15229,17645
+15230,41878
+15231,41882
+15232,48597
+15233,76330
+15234,19385
+15235,68786
+15236,68790
+15237,68786
+15238,68790
+15239,68790
+15240,68786
+15241,68790
+15242,68786
+15243,68790
+15244,68786
+15245,68790
+15246,68790
+15247,68786
+15248,68790
+15249,68786
+15250,68790
+15251,68786
+15252,68790
+15253,68786
+15254,68790
+15255,68786
+15256,68790
+15257,68786
+15258,68790
+15259,68790
+15260,68786
+15261,68790
+15262,68790
+15263,68786
+15264,68790
+15265,71493
+15266,35620
+15267,47925
+15268,32362
+15269,48597
+15270,48597
+15271,77192
+15272,74469
+15273,54636
+15274,61622
+15275,40969
+15276,44563
+15277,68520
+15278,44596,31041
+15279,37405
+15280,63863
+15281,66703
+15282,65960
+15283,24325
+15284,5350
+15285,39679
+15286,39678
+15287,61258
+15288,10300
+15289,40303
+15290,47925
+15291,52887
+15292,6952
+15293,40303
+15294,27763
+15295,55081
+15296,75823
+15297,42436,10160
+15298,36892
+15299,67577
+15300,64747
+15301,14638
+15302,14829
+15303,19231
+15304,77192
+15305,40012
+15306,29509,62089
+15307,11476
+15308,11475
+15309,18149
+15310,308
+15311,34389
+15312,61086
+15313,8331
+15314,8330
+15315,72990,36381,60448
+15316,50215
+15317,54468
+15318,21963
+15319,51718
+15320,283
+15321,44611
+15322,277
+15323,41446
+15324,52904
+15325,49817
+15326,81635
+15327,40012
+15328,76782
+15329,76782
+15330,76782
+15331,56119
+15332,8647
+15333,54980
+15334,54979
+15335,6984
+15336,37582
+15337,41878
+15338,41879
+15339,3701
+15340,12324
+15341,56127
+15342,61254
+15343,8170,3531
+15344,43104
+15345,5777
+15346,15678
+15347,15679
+15348,61182
+15349,56127
+15350,55081
+15351,18079
+15352,21963
+15353,24325
+15354,40303
+15355,21963
+15356,40303
+15357,60639
+15358,69248
+15359,31542
+15360,20756
+15361,54768
+15362,40299
+15363,40303
+15364,40303
+15365,22645
+15366,21963
+15367,28164
+15368,30218
+15369,81781
+15370,61254
+15371,67039
+15372,15807
+15373,31041
+15374,5350
+15375,55081
+15376,80394
+15377,52904
+15378,65763
+15379,24325
+15380,29509,62089
+15381,58798
+15382,46070
+15383,53861
+15384,80106
+15385,228
+15386,22386
+15387,4389
+15388,66703
+15389,66703
+15390,29509,62089
+15391,61796
+15392,77399
+15393,59903
+15394,61622
+15395,32456
+15396,48957
+15397,55022
+15398,15397
+15399,56142
+15400,66703
+15401,64250
+15402,29509
+15403,8360
+15404,71817
+15405,37693
+15406,13020
+15407,13019
+15408,58798
+15409,3695
+15410,68796
+15411,36381,61622
+15412,71607
+15413,68230
+15414,7658
+15415,68796
+15416,7660
+15417,7653
+15418,15311
+15419,36892
+15420,29509,62089
+15421,70514
+15422,37908
+15423,21996
+15424,66703
+15425,59850,77306
+15426,7734
+15427,15430
+15428,55423
+15429,80547
+15430,7735
+15431,74500
+15432,8653
+15433,74191,35917
+15434,29609,22922
+15435,81781,36381
+15436,46935
+15437,33797,29197
+15438,496
+15439,497
+15440,49291
+15441,8360
+15442,33797,19234
+15443,8652
+15444,61307
+15445,29509
+15446,81781
+15447,61622
+15448,52904
+15449,62512
+15450,3612
+15451,56127
+15452,66703
+15453,79076
+15454,29509
+15455,21995
+15456,36381
+15457,41917
+15458,36381
+15459,39803
+15460,77192
+15461,55423
+15462,617
+15463,42436
+15464,1319
+15465,60620
+15466,36381
+15467,41181
+15468,21443
+15469,61967
+15470,69688
+15471,81552
+15472,61622
+15473,68796
+15474,77223
+15475,8353
+15476,11480
+15477,48957
+15478,61086
+15479,8653
+15480,48597
+15481,4641
+15482,2608
+15483,75958
+15484,65753
+15485,65754
+15486,35474
+15487,29509
+15488,49341
+15489,57934
+15490,68796
+15491,7660
+15492,7653
+15493,60611
+15494,1751
+15495,1752
+15496,35243
+15497,21959
+15498,15500
+15499,724
+15500,17555
+15501,31041
+15502,29509
+15503,68678
+15504,7654
+15505,68796
+15506,65347
+15507,81781
+15508,39803
+15509,24325
+15510,21719
+15511,21720
+15512,36047
+15513,47400
+15514,31041
+15515,43104
+15516,14638
+15517,32652
+15518,37582
+15519,70777
+15520,50426
+15521,41401
+15522,59666
+15523,72559
+15524,80067
+15525,27267
+15526,8397
+15527,61127
+15528,8409
+15529,48957
+15530,35243
+15531,35243
+15532,19234
+15533,21963
+15534,61622
+15535,68691
+15536,55951
+15537,41279
+15538,37408
+15539,37908
+15540,283
+15541,55022
+15542,277
+15543,64747
+15544,64747
+15545,64747
+15546,64747
+15547,60899
+15548,61510
+15549,12045
+15550,52887
+15551,76782
+15552,76782
+15553,55951
+15554,12045
+15555,16685
+15556,35474
+15557,65754
+15558,72961
+15559,48028
+15560,67952
+15561,43104
+15562,30243
+15563,43104
+15564,77300
+15565,40299
+15566,40303
+15567,71624
+15568,21963
+15569,60120
+15570,40299
+15571,20756
+15572,40303
+15573,77192
+15574,34198
+15575,61622,27738
+15576,24325
+15577,21963
+15578,67039
+15579,67038
+15580,81781
+15581,59565
+15582,37127,63586
+15583,36381
+15584,70426,71603
+15585,1016,67582
+15586,39803
+15587,61775
+15588,35891
+15589,35917
+15590,34746
+15591,21719
+15592,21720
+15593,15311
+15594,55423
+15595,34746
+15596,59903
+15597,46384
+15598,35243
+15599,33002,19231
+15600,39803
+15601,37408,38029
+15602,81781
+15603,65581
+15604,12697
+15605,8205
+15606,1324
+15607,48957
+15608,56119
+15609,36008
+15610,1319
+15611,81781
+15612,48768,53060
+15613,1319
+15614,14870
+15615,15618
+15616,61788
+15617,21963
+15618,56171
+15619,68230
+15620,46901
+15621,24306
+15622,723
+15623,13420
+15624,29509
+15625,29509
+15626,75958
+15627,20756
+15628,20756
+15629,60592
+15630,58798
+15631,52805
+15632,76330
+15633,42436
+15634,68591
+15635,20756
+15636,20425
+15637,24199
+15638,67039
+15639,57218
+15640,28571
+15641,65960
+15642,55951
+15643,21719
+15644,51397
+15645,55951
+15646,77192
+15647,72559
+15648,81176
+15649,21720
+15650,21720
+15651,24325
+15652,21996
+15653,24321
+15654,8170,7926
+15655,61622
+15656,67039
+15657,7658
+15658,8652
+15659,46384
+15660,68994
+15661,4389
+15662,62015
+15663,27297
+15664,73555
+15665,14783
+15666,14784
+15667,77192
+15668,7658
+15669,60445
+15670,19234
+15671,63586
+15672,19231
+15673,40986
+15674,56119
+15675,12042
+15676,75942
+15677,71856
+15678,5765,60216
+15679,1722
+15680,59970
+15681,62922
+15682,35243
+15683,67822
+15684,5765
+15685,15679
+15686,5777
+15687,55022
+15688,5765
+15689,15679
+15690,5777
+15691,5765
+15692,47925
+15693,10223
+15694,28801
+15695,31041
+15696,51396
+15697,51397
+15698,52887
+15699,67416
+15700,67957
+15701,37127
+15702,70426
+15703,68520
+15704,72990
+15705,38828
+15706,9465
+15707,74191
+15708,70426
+15709,29509
+15710,81781
+15711,71493,72990
+15712,67039
+15713,66703
+15714,43701
+15715,57958
+15716,35666
+15717,75976
+15718,71245
+15719,39803
+15720,81781
+15721,29513
+15722,80962
+15723,59380
+15724,5297
+15725,71317
+15726,47925
+15727,57190
+15728,59380
+15729,59380
+15730,21443
+15731,58104
+15732,35474
+15733,76134
+15734,23765
+15735,60448,1417
+15736,48913
+15737,75557
+15738,28801
+15739,29509
+15740,56119
+15741,29513
+15742,61086
+15743,5235
+15744,14504
+15745,21962
+15746,21963
+15747,39679
+15748,21963
+15749,40303
+15750,29509
+15751,40299
+15752,46304
+15753,20756
+15754,54979
+15755,20756
+15756,21720
+15757,21963
+15758,73555
+15759,61086
+15760,21963
+15761,29509
+15762,7787
+15763,49817
+15764,51395
+15765,32456
+15766,21443
+15767,21754
+15768,28801,48028
+15769,48024
+15770,40288
+15771,81781,61786
+15772,7658
+15773,4471
+15774,59903
+15775,283
+15776,277
+15777,55022
+15778,15777
+15779,24325
+15780,48957
+15781,32473
+15782,61086
+15783,61086
+15784,5235
+15785,47265
+15786,21963
+15787,31041
+15788,25303
+15789,11973
+15790,65960
+15791,44614
+15792,20758
+15793,34746
+15794,52455
+15795,80794
+15796,81781
+15797,60448
+15798,36381
+15799,67039
+15800,15678
+15801,15679
+15802,67039
+15803,28801
+15804,52887
+15805,52886
+15806,1751
+15807,1752
+15808,67957
+15809,21444
+15810,22923,31041
+15811,29509,62089
+15812,43104
+15813,44705
+15814,5112
+15815,283
+15816,277
+15817,55022
+15818,31656
+15819,30391
+15820,604
+15821,724
+15822,32456
+15823,41657
+15824,68584
+15825,72754
+15826,59305
+15827,1533
+15828,29509
+15829,3969
+15830,702
+15831,603
+15832,68544
+15833,702
+15834,603
+15835,5112
+15836,38201
+15837,48957
+15838,1324
+15839,9143
+15840,55022
+15841,15840
+15842,59305
+15843,66703
+15844,61729
+15845,68544
+15846,48957
+15847,16638
+15848,1324
+15849,32473
+15850,43104
+15851,43104
+15852,1755
+15853,21938
+15854,31542
+15855,16443
+15856,32652
+15857,34959
+15858,603
+15859,61622
+15860,43104
+15861,11018
+15862,58798
+15863,15864
+15864,72961
+15865,32456
+15866,72958
+15867,29509
+15868,77185
+15869,5777
+15870,52886
+15871,52887
+15872,60620
+15873,27204
+15874,52504
+15875,5765
+15876,14516
+15877,56115
+15878,80106
+15879,603
+15880,21543
+15881,29555
+15882,8241
+15883,82070
+15884,82070
+15885,26091
+15886,26091
+15887,52675
+15888,82070
+15889,82070
+15890,20690
+15891,24765
+15892,44491
+15893,38256
+15894,23586
+15895,41743
+15896,52520
+15897,52521
+15898,52521
+15899,55022
+15900,19811
+15901,26457
+15902,26455
+15903,57289
+15904,57810
+15905,43662
+15906,59071
+15907,35557
+15908,77641
+15909,51397
+15910,55080
+15911,55081
+15912,40299
+15913,81781
+15914,35243
+15915,46176
+15916,29509
+15917,6945
+15918,55081
+15919,67039
+15920,28842
+15921,20756
+15922,62736
+15923,30636
+15924,43815
+15925,35877
+15926,22034
+15927,21444
+15928,38828
+15929,60448,71347
+15930,61622,51702
+15931,60448
+15932,61622
+15933,71607
+15934,72877
+15935,27763
+15936,27763
+15937,35875
+15938,48768,37908
+15939,71103
+15940,35243
+15941,41878
+15942,41882
+15943,41878
+15944,55303
+15945,61258
+15946,55304
+15947,61258
+15948,21719
+15949,21720
+15950,21719
+15951,24325
+15952,24321
+15953,20756
+15954,24325
+15955,65960
+15956,29621
+15957,21719
+15958,55952
+15959,40303
+15960,40299
+15961,24325
+15962,40303
+15963,40299
+15964,72892
+15965,40012
+15966,42481
+15967,81781
+15968,52887
+15969,27763
+15970,60448
+15971,24325
+15972,67039
+15973,55081
+15974,22642
+15975,22643
+15976,22642
+15977,20756
+15978,55081
+15979,54979
+15980,48957
+15981,24325
+15982,29509
+15983,22516
+15984,62053
+15985,62348
+15986,21720
+15987,56811
+15988,56811
+15989,29509
+15990,35097
+15991,33532
+15992,55081
+15993,29621
+15994,79591
+15995,61086
+15996,27763
+15997,29509
+15998,29509
+15999,72966
+16000,21720
+16001,40299
+16002,40303
+16003,20756
+16004,40303
+16005,40299
+16006,21719
+16007,32456
+16008,16010
+16009,1319
+16010,55022
+16011,72167
+16012,4374
+16013,29509
+16014,44013
+16015,33797,29197
+16016,64747
+16017,56119
+16018,56119
+16019,29509
+16020,29509
+16021,16022
+16022,74067
+16023,33928
+16024,16022
+16025,21963
+16026,81781
+16027,48957
+16028,26387
+16029,77192
+16030,30896
+16031,40986
+16032,71321
+16033,50907
+16034,73342
+16035,69363
+16036,26602
+16037,48484
+16038,78725
+16039,19231,35400
+16040,48768
+16041,49341,38828
+16042,27405
+16043,35243
+16044,74191,39623
+16045,72879
+16046,35096
+16047,35097
+16048,21719
+16049,32527
+16050,37623,45930
+16051,66824,36632
+16052,40411
+16053,37379
+16054,43815
+16055,43814
+16056,25406
+16057,59380
+16058,21886
+16059,65925
+16060,34950,69235
+16061,5297
+16062,73015,53861
+16063,29509,62089
+16064,37043
+16065,37043
+16066,24325
+16067,24321
+16068,81781
+16069,57671
+16070,49341
+16071,24325
+16072,20756
+16073,60536
+16074,81781
+16075,81781
+16076,27738
+16077,39623
+16078,60448
+16079,29540
+16080,37408,48768
+16081,60646
+16082,58798
+16083,27762
+16084,56189
+16085,68562
+16086,68584
+16087,20120
+16088,74010
+16089,81781
+16090,23238
+16091,35097
+16092,39679
+16093,21719
+16094,21720
+16095,55081
+16096,40303
+16097,21963
+16098,55951
+16099,35243
+16100,81781
+16101,26602
+16102,24321
+16103,24325
+16104,35242
+16105,20756
+16106,79650
+16107,24325
+16108,81781
+16109,24321
+16110,65960
+16111,57277
+16112,72892
+16113,617
+16114,40012
+16115,63593
+16116,61622
+16117,50604
+16118,35342
+16119,81781
+16120,60448
+16121,19231
+16122,6840
+16123,40299
+16124,39679
+16125,52887
+16126,24325
+16127,60536
+16128,66385
+16129,61004
+16130,24722
+16131,42436
+16132,74539,45524
+16133,21719
+16134,40303
+16135,56119
+16136,81781
+16137,60448
+16138,60450
+16139,81781
+16140,21963
+16141,31279
+16142,20756
+16143,21444
+16144,49485
+16145,28938
+16146,49341
+16147,39623,74191
+16148,40012
+16149,76664
+16150,55154
+16151,24350
+16152,36381
+16153,65960
+16154,81781,18748
+16155,24236
+16156,79645
+16157,79648
+16158,73555
+16159,73555
+16160,73555
+16161,73555
+16162,73555
+16163,73555
+16164,73555
+16165,73650
+16166,40008,19231
+16167,29509
+16168,35340
+16169,77192
+16170,31041
+16171,31041
+16172,31041
+16173,55734
+16174,31041
+16175,19234
+16176,70426,19234
+16177,51397
+16178,55081
+16179,55080
+16180,24325
+16181,20756
+16182,22645
+16183,73680
+16184,73680
+16185,22642
+16186,24325
+16187,78288
+16188,21963
+16189,21444
+16190,24321
+16191,20756
+16192,36381
+16193,24325
+16194,41879
+16195,19231
+16196,40299
+16197,54979
+16198,54980
+16199,67039
+16200,73824
+16201,41879
+16202,19629
+16203,19629
+16204,19629
+16205,41878
+16206,24325
+16207,24321
+16208,20756
+16209,21720
+16210,44832
+16211,67277
+16212,36892,67195
+16213,58798
+16214,46148
+16215,24325
+16216,24321
+16217,24325
+16218,29509
+16219,19385
+16220,35243
+16221,35243
+16222,35243
+16223,35096
+16224,61910,40907
+16225,81781
+16226,66703
+16227,43104
+16228,35243
+16229,65761,8653
+16230,61622,32538
+16231,29509
+16232,283
+16233,43104
+16234,277
+16235,55022
+16236,16235
+16237,29509
+16238,81781
+16239,29509
+16240,69751
+16241,11480
+16242,55946
+16243,72990
+16244,52886
+16245,41879
+16246,25175
+16247,72990
+16248,2126
+16249,24325
+16250,24321
+16251,42436
+16252,37204
+16253,31041
+16254,53384
+16255,63564
+16256,21444
+16257,72990
+16258,58798
+16259,48957
+16260,8213
+16261,43104
+16262,1613
+16263,21433
+16264,71347
+16265,74117
+16266,66703
+16267,77192
+16268,72990
+16269,43104
+16270,21443
+16271,44703
+16272,31417
+16273,8214
+16274,38517
+16275,66127
+16276,40087
+16277,68236
+16278,77192,62089
+16279,36892
+16280,80485
+16281,68796
+16282,11480
+16283,63185
+16284,77192
+16285,30634
+16286,30634
+16287,39542
+16288,46007
+16289,29509,62089
+16290,38675
+16291,53702
+16292,52887
+16293,41743
+16294,76958
+16295,15822
+16296,66703
+16297,55022
+16298,24325
+16299,32473
+16300,7658
+16301,52887
+16302,36009
+16303,25303
+16304,66703
+16305,32473
+16306,71895
+16307,71624
+16308,56119
+16309,21443
+16310,60258
+16311,39803
+16312,38828
+16313,1752
+16314,67039
+16315,56189,54266
+16316,40752
+16317,38555
+16318,29509,62089
+16319,19234
+16320,277
+16321,11918
+16322,283
+16323,55022
+16324,5765
+16325,15040
+16326,76134
+16327,15039
+16328,81811
+16329,16332
+16330,53355
+16331,53640
+16332,55022
+16333,67408
+16334,60487
+16335,35097
+16336,67039
+16337,53636
+16338,67936
+16339,61622
+16340,56115
+16341,27260
+16342,28747
+16343,41446
+16344,60899
+16345,60899
+16346,35557
+16347,5777
+16348,35917
+16349,29195
+16350,72966
+16351,73084
+16352,14504
+16353,62015
+16354,24321
+16355,24321
+16356,52887
+16357,48787
+16358,81781
+16359,61622
+16360,52887
+16361,21963
+16362,29621
+16363,61254
+16364,35096
+16365,55081
+16366,35097
+16367,40303
+16368,40303
+16369,29621
+16370,52887
+16371,41878
+16372,41879
+16373,20756
+16374,52887
+16375,36381,61622
+16376,40299
+16377,40303
+16378,55081
+16379,40299
+16380,67462
+16381,29509
+16382,29509
+16383,70166
+16384,70166
+16385,1324
+16386,1319
+16387,34746
+16388,26122
+16389,55022
+16390,16389
+16391,35097
+16392,24325
+16393,54185
+16394,35097
+16395,72961
+16396,31279
+16397,24224
+16398,57140,54962
+16399,51068
+16400,74544
+16401,23712
+16402,49438
+16403,43812
+16404,29418
+16405,72610,36335
+16406,38837
+16407,31775
+16408,52435
+16409,55734
+16410,21719
+16411,72961
+16412,46726
+16413,67763
+16414,75751
+16415,35097
+16416,29509
+16417,29509
+16418,29509
+16419,51397
+16420,51396
+16421,21719
+16422,52886
+16423,52887
+16424,21720
+16425,46148
+16426,29509
+16427,74625
+16428,64747
+16429,52887
+16430,24325
+16431,29509
+16432,81683
+16433,68520
+16434,13746,28938
+16435,6042
+16436,13194
+16437,21963
+16438,81781,60448
+16439,66703
+16440,48957
+16441,13590
+16442,12225
+16443,8814
+16444,16443
+16445,16443
+16446,16443
+16447,16443
+16448,16443
+16449,29509
+16450,29509
+16451,59903
+16452,56119
+16453,48957
+16454,48957
+16455,36008
+16456,1319
+16457,29509
+16458,53537
+16459,1319
+16460,38439
+16461,8291
+16462,1324
+16463,55022
+16464,80394
+16465,21701
+16466,13019
+16467,13020
+16468,34746
+16469,48768,60536
+16470,65764
+16471,27763
+16472,72966
+16473,66703
+16474,33797
+16475,72990
+16476,56119,62089
+16477,58167,31041
+16478,16479
+16479,67462
+16480,52886
+16481,29509
+16482,35242
+16483,67039
+16484,35243
+16485,67277
+16486,52887
+16487,52887
+16488,5111
+16489,15835
+16490,72961
+16491,57140
+16492,58168
+16493,8652
+16494,29509,62095
+16495,23471
+16496,75260
+16497,29509
+16498,29509,62089
+16499,61254
+16500,21963
+16501,67462
+16502,71493
+16503,19234
+16504,28938
+16505,36892
+16506,29509,62089
+16507,43104
+16508,21444
+16509,29509
+16510,81125
+16511,29509
+16512,58798
+16513,61086
+16514,723
+16515,55951
+16516,65960
+16517,2608
+16518,2607
+16519,35474
+16520,283
+16521,277
+16522,55022
+16523,16522
+16524,62935
+16525,68796
+16526,65753
+16527,60450
+16528,65754
+16529,35474
+16530,3612
+16531,13944
+16532,77192
+16533,52886
+16534,52887
+16535,18748
+16536,27255
+16537,77192
+16538,29509,62089
+16539,10944
+16540,16539
+16541,40012
+16542,56119
+16543,20427
+16544,21963
+16545,81781
+16546,29621
+16547,75958
+16548,20426
+16549,40012
+16550,49817
+16551,35243
+16552,52886
+16553,20756
+16554,52887
+16555,75408
+16556,75408
+16557,43104
+16558,29509
+16559,47231
+16560,52904
+16561,39803
+16562,56119
+16563,15311
+16564,56246
+16565,68544
+16566,70033
+16567,1533
+16568,48957
+16569,33876
+16570,61622
+16571,17555
+16572,14638
+16573,17265
+16574,11217
+16575,32964,61622
+16576,40012
+16577,49162
+16578,24224
+16579,52887
+16580,31542
+16581,60216
+16582,70209
+16583,40303
+16584,40303
+16585,37127
+16586,44702
+16587,61258
+16588,52887
+16589,44702
+16590,44703
+16591,29621
+16592,44703
+16593,16443
+16594,51626,22351,55091
+16595,6163
+16596,52887
+16597,52886
+16598,31041,55740
+16599,19234
+16600,13746
+16601,32926
+16602,56119
+16603,31041
+16604,47128
+16605,71624
+16606,61033
+16607,48025
+16608,68095
+16609,61622
+16610,71624
+16611,8652
+16612,19649
+16613,51396
+16614,39679
+16615,21963
+16616,15438
+16617,77158
+16618,61311
+16619,56119
+16620,56119
+16621,65959
+16622,58853,60448
+16623,29509
+16624,27763
+16625,31041
+16626,29621
+16627,63266
+16628,31542
+16629,21434
+16630,57140
+16631,67039
+16632,14504
+16633,35097
+16634,29621
+16635,5111
+16636,15814
+16637,20756
+16638,29771
+16639,58029
+16640,75751
+16641,74941
+16642,67039
+16643,29509
+16644,21719
+16645,48957
+16646,603
+16647,66703
+16648,702
+16649,67479
+16650,27738
+16651,61622
+16652,21013
+16653,52886
+16654,29621
+16655,21719
+16656,15464,55438
+16657,67039
+16658,29509
+16659,2126
+16660,81687
+16661,81683
+16662,54979
+16663,36381
+16664,10300,74271
+16665,57218,54768
+16666,67582
+16667,21995
+16668,21720
+16669,21719
+16670,11472
+16671,65960
+16672,75945
+16673,19234
+16674,60120
+16675,61086
+16676,76134
+16677,37408,48768
+16678,77453
+16679,20756
+16680,67462
+16681,65959
+16682,65960
+16683,33928
+16684,16914
+16685,15623
+16686,64747
+16687,44703
+16688,27763
+16689,40303
+16690,76033
+16691,21963
+16692,21719
+16693,24325
+16694,40299
+16695,24321
+16696,40303
+16697,35557
+16698,21719
+16699,21963
+16700,61086
+16701,6624
+16702,5765
+16703,34389
+16704,71997
+16705,61086
+16706,603
+16707,77192
+16708,77192
+16709,702
+16710,33928
+16711,50630
+16712,52374
+16713,28394
+16714,20745
+16715,46572
+16716,40864
+16717,58088
+16718,73943
+16719,40752
+16720,73478
+16721,78024
+16722,77101
+16723,81781
+16724,16443
+16725,1319
+16726,55022
+16727,1324
+16728,52887
+16729,40303
+16730,60448,21996
+16731,11472
+16732,6867
+16733,29621
+16734,52660
+16735,35875
+16736,66703
+16737,24325
+16738,65960
+16739,6952
+16740,50878,39509
+16741,34746
+16742,33797,29197
+16743,72992
+16744,61767
+16745,19497
+16746,29509
+16747,56117
+16748,16914
+16749,35242
+16750,5345
+16751,6945
+16752,29509
+16753,29509
+16754,20756
+16755,41878
+16756,39678
+16757,39679
+16758,63222
+16759,16914
+16760,72990
+16761,35243
+16762,56127
+16763,14493
+16764,35096
+16765,60448
+16766,21719
+16767,20756
+16768,2608
+16769,21719
+16770,14290
+16771,21720
+16772,67039
+16773,61086
+16774,20756
+16775,55951
+16776,35243
+16777,61622
+16778,43104
+16779,6945
+16780,6945
+16781,29509,62089
+16782,11784
+16783,35097
+16784,41879
+16785,22642
+16786,74242
+16787,4389
+16788,5576
+16789,9444
+16790,14236
+16791,30391
+16792,80106
+16793,35243
+16794,16443
+16795,61622
+16796,26012
+16797,71334
+16798,1016,67582
+16799,29855
+16800,76135
+16801,52887
+16802,60611
+16803,21432
+16804,79619
+16805,37408
+16806,60611
+16807,60611
+16808,31041
+16809,42381
+16810,12045
+16811,81781
+16812,19234
+16813,63586
+16814,21444
+16815,22032
+16816,29509
+16817,5350
+16818,36452
+16819,43104
+16820,5765
+16821,16822
+16822,8209
+16823,24321
+16824,24325
+16825,24321
+16826,55081
+16827,21719
+16828,24325
+16829,46148
+16830,44703
+16831,44703
+16832,77192
+16833,43104
+16834,21963
+16835,29509,62089
+16836,40303
+16837,46935,27738
+16838,43104
+16839,80591
+16840,52887
+16841,52887
+16842,35096
+16843,21963
+16844,20756
+16845,35243
+16846,20756
+16847,20756
+16848,15311
+16849,29509
+16850,67039
+16851,66703
+16852,14493
+16853,1324
+16854,1319
+16855,7641
+16856,53402
+16857,75942
+16858,15618
+16859,21720
+16860,24325
+16861,16341
+16862,43104
+16863,3612
+16864,64747
+16865,58798
+16866,21443
+16867,74973
+16868,21765
+16869,72767
+16870,66703
+16871,29509
+16872,40303
+16873,75823
+16874,35243
+16875,35242
+16876,29621
+16877,55081
+16878,41879
+16879,41878
+16880,76134
+16881,24325
+16882,24321
+16883,29509
+16884,29513
+16885,77192
+16886,77192
+16887,48957
+16888,68544
+16889,1319
+16890,3695
+16891,26587
+16892,24321
+16893,20756
+16894,37127
+16895,82163
+16896,40303
+16897,21720
+16898,21719
+16899,21719
+16900,21720
+16901,21719
+16902,57671
+16903,67039
+16904,21719
+16905,56119
+16906,55951
+16907,55423
+16908,36381
+16909,8653,52751
+16910,8652
+16911,6378
+16912,6952
+16913,67920
+16914,6952
+16915,39183
+16916,65959
+16917,65960
+16918,57671
+16919,72990
+16920,3695
+16921,14493
+16922,853
+16923,77192
+16924,724
+16925,11573
+16926,48957
+16927,18091
+16928,58798
+16929,37127
+16930,25303
+16931,66703
+16932,8209
+16933,81781
+16934,5111
+16935,15835
+16936,28801
+16937,39803
+16938,39679
+16939,24321
+16940,24325
+16941,51397
+16942,21397
+16943,283
+16944,41446
+16945,277
+16946,35103
+16947,81251
+16948,79619
+16949,81781
+16950,56119
+16951,29509
+16952,29509
+16953,60445,81781
+16954,67039
+16955,81781
+16956,11589
+16957,52887
+16958,39803
+16959,47503
+16960,70990
+16961,46736
+16962,21996
+16963,66703
+16964,65960
+16965,74010
+16966,54962
+16967,1752
+16968,32456
+16969,13590
+16970,10295
+16971,55022
+16972,67039
+16973,72966
+16974,67462
+16975,68481
+16976,67462
+16977,63488
+16978,40299
+16979,20756
+16980,6888
+16981,29509
+16982,73555
+16983,60899
+16984,44703
+16985,60611
+16986,29771
+16987,21719
+16988,5513
+16989,66594
+16990,603
+16991,31279
+16992,416
+16993,29509,62089
+16994,29509
+16995,58798
+16996,24051
+16997,56520
+16998,74973
+16999,29509
+17000,82113
+17001,41284
+17002,23513
+17003,21444
+17004,60611
+17005,65531
+17006,21963
+17007,35097
+17008,24325
+17009,40303
+17010,40299
+17011,46148
+17012,29509
+17013,29509
+17014,29509
+17015,35097
+17016,35875
+17017,40303
+17018,40299
+17019,40303
+17020,40303
+17021,3695
+17022,3705
+17023,19231
+17024,25431
+17025,55081
+17026,56219
+17027,63656
+17028,52887
+17029,21963
+17030,52886
+17031,52887
+17032,14493
+17033,43104
+17034,3701
+17035,54683
+17036,19649
+17037,72961
+17038,65581
+17039,64747
+17040,35097
+17041,35096
+17042,55607
+17043,55055
+17044,61086
+17045,71624
+17046,52660
+17047,77192
+17048,26789
+17049,43813
+17050,17049
+17051,17049
+17052,17049
+17053,59670
+17054,19231,76113
+17055,35097
+17056,29621
+17057,41879
+17058,49181
+17059,49181
+17060,41878
+17061,41882
+17062,66703
+17063,8409
+17064,29509
+17065,72966
+17066,22642
+17067,46148
+17068,46148
+17069,43701
+17070,37908
+17071,40303
+17072,40299
+17073,21720
+17074,31542
+17075,31542
+17076,60120
+17077,21720
+17078,49792
+17079,21720
+17080,63460
+17081,63459
+17082,67039
+17083,52886
+17084,52887
+17085,40299
+17086,55081
+17087,40299
+17088,24325
+17089,41879
+17090,19629
+17091,19629
+17092,19629
+17093,19629
+17094,19629
+17095,19629
+17096,41878
+17097,39679
+17098,21720
+17099,41879
+17100,20756
+17101,21963
+17102,27763
+17103,52887
+17104,52887
+17105,54980
+17106,54979
+17107,67039
+17108,40303
+17109,40299
+17110,40299
+17111,55081
+17112,67039
+17113,39803
+17114,21963
+17115,51396
+17116,51702
+17117,65960
+17118,77851
+17119,40303
+17120,24325
+17121,48957
+17122,32456
+17123,36008
+17124,48210
+17125,35474
+17126,13818
+17127,6772
+17128,66703
+17129,3701
+17130,65959
+17131,65960
+17132,21719
+17133,21720
+17134,21963
+17135,41697
+17136,21963
+17137,35243
+17138,56119
+17139,39803
+17140,55081
+17141,6952
+17142,55162
+17143,20426
+17144,24321
+17145,21720
+17146,24325
+17147,24321
+17148,24321
+17149,20756
+17150,1319
+17151,39940
+17152,80106
+17153,52660
+17154,81781
+17155,21720
+17156,21719
+17157,21719
+17158,29509,62089
+17159,40406
+17160,67038
+17161,67039
+17162,77955
+17163,77955
+17164,65960
+17165,2250,66344
+17166,30895
+17167,64490
+17168,29509
+17169,40012
+17170,13746
+17171,41155
+17172,68446
+17173,58798
+17174,61622
+17175,617
+17176,41879
+17177,39271
+17178,32362
+17179,18748,39623
+17180,21719
+17181,13019
+17182,13020
+17183,6163
+17184,44703
+17185,56219
+17186,1751
+17187,15807
+17188,21443
+17189,277
+17190,1991
+17191,3281
+17192,41879
+17193,41878
+17194,41882
+17195,41879
+17196,41878
+17197,18748
+17198,21443
+17199,20756
+17200,31542
+17201,46148
+17202,20559
+17203,79233,30586
+17204,29509
+17205,67277
+17206,33797,29197
+17207,36892
+17208,21412
+17209,60196
+17210,80591
+17211,80394
+17212,41234
+17213,58815
+17214,51397
+17215,78140
+17216,41879
+17217,41878
+17218,41882
+17219,29509
+17220,5111
+17221,15835
+17222,20889
+17223,21720
+17224,17226
+17225,17227
+17226,567
+17227,568
+17228,66703
+17229,66703
+17230,56119,62089
+17231,283
+17232,277
+17233,17235
+17234,17235
+17235,55022
+17236,63017
+17237,75958
+17238,75958
+17239,52887
+17240,52886
+17241,77192
+17242,15820
+17243,17244
+17244,723
+17245,65960
+17246,79850
+17247,55423
+17248,29621
+17249,24321
+17250,24321
+17251,24325
+17252,16932
+17253,81781
+17254,37127
+17255,29509
+17256,53480
+17257,31100
+17258,17264
+17259,51400
+17260,51400
+17261,49997
+17262,32456
+17263,65262
+17264,1319
+17265,568
+17266,17265
+17267,27167
+17268,75958
+17269,73057
+17270,80217
+17271,30231
+17272,55022
+17273,76811
+17274,23387
+17275,43104
+17276,17265
+17277,55022
+17278,32456
+17279,17264
+17280,46148
+17281,37834
+17282,58798
+17283,70761,48451
+17284,69413
+17285,24321
+17286,24325
+17287,46047
+17288,35243
+17289,52887
+17290,77192
+17291,8397
+17292,8398
+17293,58103
+17294,8409
+17295,8331
+17296,8330
+17297,77192
+17298,54873
+17299,21963
+17300,13164
+17301,15623
+17302,15622
+17303,1751
+17304,21459
+17305,32456
+17306,21443
+17307,36008
+17308,29509
+17309,58806
+17310,3701
+17311,68678
+17312,80394
+17313,78899
+17314,77192
+17315,72386
+17316,16685
+17317,6952
+17318,5501
+17319,81683
+17320,81687
+17321,77192
+17322,13746
+17323,24325
+17324,48634,53296
+17325,60611
+17326,58012
+17327,66703
+17328,55081
+17329,55080
+17330,65959
+17331,55952
+17332,55952
+17333,12045
+17334,20756
+17335,24321
+17336,24325
+17337,36872
+17338,65387
+17339,72961
+17340,5765
+17341,64747
+17342,68544
+17343,63017
+17344,24325
+17345,24321
+17346,61622
+17347,51068
+17348,57924
+17349,31108
+17350,19309
+17351,34821
+17352,3240
+17353,21720
+17354,14638
+17355,13063
+17356,29509
+17357,283
+17358,277
+17359,55022
+17360,17359
+17361,2923
+17362,6054
+17363,61622
+17364,17264
+17365,17265
+17366,68474
+17367,52886
+17368,52887
+17369,32456
+17370,15679
+17371,5765
+17372,55022
+17373,56119
+17374,33797
+17375,67039
+17376,24379,48634
+17377,12045
+17378,35096
+17379,35097
+17380,43104
+17381,75958
+17382,74175
+17383,55423
+17384,63460
+17385,63459
+17386,63461
+17387,29621
+17388,55951
+17389,7658
+17390,65960
+17391,36892
+17392,61258
+17393,67038
+17394,52660
+17395,8409
+17396,12547
+17397,40303
+17398,1752
+17399,56917
+17400,30900
+17401,39803
+17402,39803
+17403,39803
+17404,55423
+17405,38313
+17406,81781
+17407,61159
+17408,61159
+17409,3227
+17410,3228
+17411,29313
+17412,54980
+17413,17436
+17414,21589,24894
+17415,40411
+17416,54979
+17417,35474
+17418,13817
+17419,65754
+17420,17421
+17421,55022
+17422,1324
+17423,13817
+17424,49831
+17425,10935
+17426,48025
+17427,81669
+17428,17434
+17429,17434
+17430,33928
+17431,17434
+17432,17434
+17433,68785
+17434,19382
+17435,75958
+17436,12054
+17437,19649
+17438,19797
+17439,19649
+17440,19649
+17441,23416
+17442,19649
+17443,26785
+17444,30058,19649
+17445,50874
+17446,41861
+17447,75029
+17448,19649
+17449,19649
+17450,46779
+17451,10487
+17452,50610
+17453,54403
+17454,54658
+17455,56217
+17456,19649
+17457,47925
+17458,47925
+17459,47925
+17460,19649
+17461,17468
+17462,69081
+17463,38676
+17464,62176
+17465,36008
+17466,36664
+17467,39546
+17468,48480
+17469,51658
+17470,75946
+17471,78725
+17472,78725
+17473,78725
+17474,78725
+17475,78725
+17476,78725
+17477,78725
+17478,78725
+17479,78725
+17480,78725
+17481,78725
+17482,78725
+17483,78725
+17484,71493
+17485,81781
+17486,67462
+17487,81781
+17488,21444
+17489,19379
+17490,76664
+17491,59903
+17492,29509
+17493,24325
+17494,24321
+17495,29509
+17496,56171
+17497,17496
+17498,64747
+17499,11472
+17500,40299
+17501,8740,74414,58389
+17502,62015
+17503,62015
+17504,62015
+17505,62015
+17506,77192
+17507,12042
+17508,14870
+17509,41882
+17510,28801
+17511,51397
+17512,24325
+17513,71493
+17514,20878
+17515,29509
+17516,35492
+17517,60592
+17518,52887
+17519,41879
+17520,20756
+17521,40303
+17522,52887
+17523,65960
+17524,52886
+17525,52887
+17526,35097
+17527,35096
+17528,61258
+17529,80394
+17530,15822
+17531,66703
+17532,62294
+17533,79608
+17534,15820
+17535,55022
+17536,17535
+17537,7658
+17538,41879
+17539,41878
+17540,21459
+17541,41878
+17542,41882
+17543,41879
+17544,41879
+17545,19231,36381
+17546,65764
+17547,65960
+17548,702
+17549,603
+17550,15499
+17551,15500
+17552,29509
+17553,29509
+17554,15311
+17555,723
+17556,25302
+17557,47505
+17558,65531
+17559,61789
+17560,29509
+17561,61254
+17562,58798
+17563,72961
+17564,15311
+17565,51397
+17566,51396
+17567,17264
+17568,17265
+17569,1324
+17570,55022
+17571,74010
+17572,51068
+17573,49391
+17574,17576
+17575,17576
+17576,33928
+17577,38639
+17578,56447
+17579,56281
+17580,43168
+17581,27763
+17582,35243
+17583,56119
+17584,7653
+17585,68796
+17586,7660
+17587,7654
+17588,7658
+17589,62089
+17590,77192
+17591,29509
+17592,29509
+17593,74769
+17594,77192
+17595,60839
+17596,44241
+17597,33928
+17598,21963
+17599,21962
+17600,21963
+17601,7420
+17602,12045
+17603,55951
+17604,8409
+17605,56119
+17606,55081
+17607,61086
+17608,36892
+17609,29509,62089
+17610,60611
+17611,23853
+17612,13746
+17613,81781,51702
+17614,60611
+17615,60611
+17616,21444
+17617,77192
+17618,29509,62089
+17619,56246
+17620,48957
+17621,67979
+17622,40065,60435
+17623,57671
+17624,26118
+17625,24325
+17626,21720
+17627,21963
+17628,12045
+17629,48957
+17630,32456
+17631,20559
+17632,65959
+17633,65960
+17634,31041
+17635,72990
+17636,81781
+17637,29509,62089
+17638,68230
+17639,7658
+17640,58798
+17641,58798,21681
+17642,60327
+17643,66035
+17644,29509
+17645,32361
+17646,70426
+17647,31041
+17648,50346
+17649,7658
+17650,8652
+17651,53480
+17652,37127
+17653,17655
+17654,7660
+17655,67462
+17656,7660
+17657,68230
+17658,24199
+17659,36381
+17660,31542
+17661,57671
+17662,39049
+17663,28747
+17664,14290
+17665,54979
+17666,8397
+17667,81229
+17668,43377
+17669,71055
+17670,8409
+17671,15822
+17672,15820
+17673,55022
+17674,29509
+17675,51991
+17676,34997
+17677,42488
+17678,14290
+17679,21444
+17680,53624
+17681,75940,48100
+17682,14504
+17683,54980
+17684,58088
+17685,43372
+17686,27625
+17687,33237
+17688,14638
+17689,1718
+17690,29509,62089
+17691,51397
+17692,21963
+17693,21962
+17694,21963
+17695,12042
+17696,31041
+17697,79618
+17698,80962
+17699,61086
+17700,61622
+17701,57671
+17702,702
+17703,603
+17704,81781
+17705,60445
+17706,71695
+17707,53480
+17708,29509
+17709,57671
+17710,55223
+17711,17710
+17712,17710
+17713,56246
+17714,74625
+17715,56075
+17716,32547
+17717,29509
+17718,58815
+17719,60592
+17720,72990
+17721,76782
+17722,40485
+17723,61054
+17724,20575
+17725,70761,48451
+17726,35243
+17727,21720
+17728,14493
+17729,52887
+17730,52886
+17731,21719
+17732,56246
+17733,21720
+17734,14504
+17735,21968
+17736,33797
+17737,79850
+17738,50878
+17739,21938
+17740,66703
+17741,77192
+17742,79517
+17743,21963
+17744,79532
+17745,29509
+17746,77192
+17747,54568
+17748,67039
+17749,77192
+17750,70166
+17751,49817
+17752,49817
+17753,14504
+17754,77192
+17755,1533
+17756,63488,62089
+17757,14071,37725
+17758,80394
+17759,56119,62089
+17760,34198
+17761,50878
+17762,43104
+17763,61508
+17764,26884
+17765,60216
+17766,46149
+17767,21448
+17768,30391
+17769,43915
+17770,52887
+17771,81781
+17772,77192
+17773,57810
+17774,24325
+17775,56119
+17776,41455
+17777,77192
+17778,32361
+17779,56119
+17780,48957
+17781,1324
+17782,80106
+17783,1319
+17784,11205
+17785,55022
+17786,58798
+17787,67039
+17788,15038
+17789,66344
+17790,31041
+17791,29509
+17792,26602
+17793,61622
+17794,56119
+17795,67039
+17796,29509
+17797,35097
+17798,31615,20672
+17799,35097
+17800,46148
+17801,28938
+17802,61311
+17803,35243
+17804,35242
+17805,65960
+17806,65959
+17807,34990
+17808,24321
+17809,61622
+17810,67039
+17811,76135
+17812,48957
+17813,56127
+17814,2190
+17815,3969
+17816,77192
+17817,702
+17818,29509
+17819,45813
+17820,28422
+17821,79608
+17822,33130
+17823,34249
+17824,44946
+17825,52857
+17826,58647
+17827,52079
+17828,24371
+17829,40752
+17830,73612
+17831,76236
+17832,80404
+17833,603
+17834,40752
+17835,81402
+17836,31542
+17837,60216
+17838,70209
+17839,6042
+17840,48957
+17841,35242
+17842,40012
+17843,35243
+17844,7658
+17845,6850
+17846,66703
+17847,35096
+17848,12045
+17849,48957
+17850,35097
+17851,39679
+17852,39678
+17853,53295,67582
+17854,31041,79650
+17855,52887
+17856,52887
+17857,52886
+17858,39049
+17859,38828
+17860,29509
+17861,58798
+17862,14638
+17863,31542
+17864,21754
+17865,21443
+17866,66703
+17867,6001
+17868,29509
+17869,66703
+17870,66703
+17871,60611
+17872,81781
+17873,55951
+17874,41879
+17875,41877
+17876,41878
+17877,41879
+17878,19629
+17879,63459
+17880,63461
+17881,63460
+17882,52886
+17883,81781
+17884,80962
+17885,56127
+17886,61622
+17887,58798
+17888,14504
+17889,9987
+17890,2080
+17891,31542
+17892,52887
+17893,24325
+17894,51068
+17895,18149,13815
+17896,75677
+17897,66703
+17898,71493,81462
+17899,29509
+17900,75823
+17901,77192
+17902,55734
+17903,21444
+17904,31041
+17905,40986
+17906,77192
+17907,61086
+17908,11480
+17909,8353
+17910,66084
+17911,80047
+17912,81781
+17913,28938
+17914,40012
+17915,724
+17916,11363
+17917,48957
+17918,7734
+17919,18520
+17920,1511
+17921,68796
+17922,35342,72990
+17923,41742
+17924,62932
+17925,50110,72990
+17926,81781
+17927,41361
+17928,41398
+17929,73179
+17930,73650
+17931,53183
+17932,77192
+17933,56189
+17934,81781
+17935,48451
+17936,42436
+17937,49162
+17938,1919
+17939,6264
+17940,38439
+17941,81781,46148
+17942,72990
+17943,33928
+17944,20472
+17945,74625
+17946,31279
+17947,39803
+17948,57140
+17949,81781
+17950,31041
+17951,496
+17952,26602
+17953,8647
+17954,67047
+17955,76330
+17956,38680
+17957,80106
+17958,80106
+17959,80106
+17960,80106
+17961,80106
+17962,80106
+17963,21681
+17964,24224
+17965,37127,38047
+17966,26602
+17967,81781
+17968,58798
+17969,18084
+17970,40012
+17971,28938
+17972,81781,61622
+17973,56119
+17974,72990
+17975,37204
+17976,702
+17977,42436,13746
+17978,56119
+17979,33928
+17980,53861,57323
+17981,603
+17982,603
+17983,22649
+17984,30999
+17985,29509
+17986,29509,62089
+17987,68095
+17988,74973
+17989,77192
+17990,61086
+17991,19234,70426
+17992,77192
+17993,77192
+17994,42488
+17995,63586
+17996,37908
+17997,37908,48768
+17998,57671
+17999,61622,76134
+18000,81781
+18001,77192
+18002,66023,81462
+18003,42436,39859
+18004,55951
+18005,42436
+18006,19231
+18007,72865
+18008,63187
+18009,81781
+18010,71347,37127
+18011,31279,31041
+18012,60620
+18013,58798
+18014,71347
+18015,60611
+18016,50604
+18017,61796
+18018,36381
+18019,51148
+18020,68544
+18021,62356
+18022,62348
+18023,80591
+18024,43125
+18025,36892
+18026,53480
+18027,60448
+18028,74675
+18029,31041
+18030,29509
+18031,34491
+18032,46760
+18033,60611
+18034,42488
+18035,19959
+18036,55423
+18037,18035
+18038,18035
+18039,72990
+18040,18748
+18041,19231,40012
+18042,42436,72990
+18043,56119
+18044,81781
+18045,2586
+18046,28028
+18047,57811
+18048,61967
+18049,62029
+18050,35557
+18051,72540
+18052,81360
+18053,5765
+18054,62149
+18055,81781
+18056,44702
+18057,29513
+18058,3612
+18059,22351
+18060,81781
+18061,56520
+18062,21135
+18063,28238
+18064,25673
+18065,66703
+18066,29737
+18067,29737
+18068,10933
+18069,10935
+18070,13818
+18071,43104
+18072,58798
+18073,19234,30586
+18074,65579
+18075,81781
+18076,43104
+18077,11881
+18078,43104
+18079,11957
+18080,43104
+18081,72961
+18082,29513
+18083,2016
+18084,3386
+18085,43104
+18086,43104
+18087,29513
+18088,6637
+18089,5777
+18090,75942
+18091,604
+18092,41454
+18093,21443
+18094,35787
+18095,11018
+18096,37762
+18097,40560
+18098,77192
+18099,54418
+18100,15027
+18101,12310
+18102,32473
+18103,702
+18104,603
+18105,32473
+18106,39530
+18107,1533
+18108,79608
+18109,10295
+18110,43104
+18111,43104
+18112,55022
+18113,25593
+18114,33327
+18115,64873
+18116,55395
+18117,59405
+18118,42244
+18119,74067
+18120,21959
+18121,21919
+18122,48768
+18123,25406
+18124,54648
+18125,60536
+18126,72843
+18127,81781
+18128,61622
+18129,60611,48768
+18130,25916
+18131,21432
+18132,55423
+18133,29509
+18134,5513,51167
+18135,74500
+18136,61796
+18137,59380
+18138,81161
+18139,76330
+18140,58798
+18141,17210
+18142,37204
+18143,81781
+18144,28938
+18145,81781
+18146,21444
+18147,49341
+18148,66703
+18149,60216
+18150,66035,43814
+18151,38680
+18152,45443
+18153,30153
+18154,48270
+18155,16443
+18156,73650
+18157,29551
+18158,60448,53480
+18159,63488
+18160,54767
+18161,61622
+18162,11210
+18163,48768,53060
+18164,55423
+18165,68677
+18166,61622
+18167,19525
+18168,33302
+18169,65754
+18170,58757
+18171,2751
+18172,29509
+18173,2752
+18174,29509
+18175,19672
+18176,53480
+18177,29509,80403
+18178,81781,46148
+18179,48792
+18180,22786
+18181,48961,32473
+18182,57140
+18183,18076
+18184,69978
+18185,81781,36381
+18186,40012
+18187,81781,36381
+18188,41181
+18189,27088
+18190,8822
+18191,38828
+18192,65531
+18193,43104
+18194,38828
+18195,24224
+18196,29549
+18197,28801
+18198,66703
+18199,37204
+18200,74191,36644
+18201,35917
+18202,9043
+18203,9043
+18204,9043
+18205,9043
+18206,56802
+18207,70426,71603
+18208,29737,69363
+18209,60448
+18210,22850
+18211,36381
+18212,61622
+18213,74973
+18214,77192
+18215,56520
+18216,77192
+18217,29509
+18218,67883
+18219,42488
+18220,58227
+18221,57140
+18222,38005
+18223,51702
+18224,81781
+18225,617
+18226,43125
+18227,55423
+18228,60611
+18229,81781
+18230,13746
+18231,60358
+18232,71182
+18233,11870
+18234,67254
+18235,74117
+18236,29509
+18237,66528
+18238,63651
+18239,21432,21681
+18240,56127
+18241,28801
+18242,56119
+18243,57924
+18244,29509
+18245,36892
+18246,73532
+18247,29249
+18248,70885
+18249,56294
+18250,21443
+18251,28546
+18252,37043
+18253,15623
+18254,15622
+18255,63488
+18256,50215
+18257,69363
+18258,29509
+18259,12371
+18260,52659
+18261,13019
+18262,4146
+18263,702
+18264,66703
+18265,81176
+18266,603
+18267,25303
+18268,65763
+18269,65763
+18270,30391
+18271,81781
+18272,617,37204
+18273,60448
+18274,65581
+18275,64490
+18276,81781
+18277,853
+18278,29648
+18279,31041
+18280,81781
+18281,81781
+18282,20575
+18283,55081
+18284,55081
+18285,28801,60611
+18286,31417
+18287,81781,39623
+18288,18079
+18289,43341
+18290,32160
+18291,58798
+18292,81781
+18293,19234
+18294,31279
+18295,20120
+18296,37127
+18297,74191
+18298,28801
+18299,46148
+18300,39679
+18301,81781
+18302,36376,49341
+18303,21432
+18304,26602
+18305,29509
+18306,29509
+18307,51148
+18308,67957
+18309,51141
+18310,18309
+18311,52999
+18312,6846
+18313,61622
+18314,81668
+18315,77171
+18316,17434
+18317,17434
+18318,69236,61410
+18319,70707
+18320,81669
+18321,81673
+18322,81673
+18323,31117
+18324,25256
+18325,32547
+18326,16703
+18327,81781
+18328,56127
+18329,21444
+18330,39623
+18331,21444
+18332,48768
+18333,81781
+18334,48768
+18335,81781
+18336,29509
+18337,3600
+18338,29509
+18339,26602
+18340,29509
+18341,21444
+18342,61622
+18343,36381
+18344,76134
+18345,58798
+18346,21459,72990
+18347,73863
+18348,40012
+18349,61622
+18350,70426
+18351,41879
+18352,41877
+18353,41877
+18354,702
+18355,603
+18356,853
+18357,21459
+18358,51068
+18359,42338
+18360,69388
+18361,48218
+18362,42429
+18363,48218
+18364,35161
+18365,40003
+18366,21200
+18367,64566
+18368,78097
+18369,47510
+18370,69418
+18371,69418
+18372,69418
+18373,69418
+18374,69418
+18375,69418
+18376,37448,48852
+18377,21963
+18378,22643
+18379,29621
+18380,51396
+18381,51397
+18382,55081
+18383,65959
+18384,54767
+18385,20756
+18386,24321
+18387,24325
+18388,60448
+18389,42436,46148
+18390,20425
+18391,20426
+18392,24325
+18393,65959
+18394,65960
+18395,65960
+18396,51397
+18397,36795
+18398,49817
+18399,277
+18400,30900
+18401,11918
+18402,29509
+18403,72961
+18404,40303
+18405,40299
+18406,20756
+18407,41879
+18408,41878
+18409,21720
+18410,35097
+18411,52660
+18412,40303
+18413,55080
+18414,61258
+18415,55081
+18416,51068
+18417,42429
+18418,81907
+18419,69418
+18420,7734
+18421,18441
+18422,39803
+18423,68656
+18424,6766
+18425,14820
+18426,77192
+18427,17264
+18428,17265
+18429,60435
+18430,78725
+18431,29509
+18432,31307
+18433,66703
+18434,61086
+18435,7658
+18436,19389
+18437,54615
+18438,56119
+18439,7734
+18440,18441
+18441,7735
+18442,60611
+18443,56119
+18444,603
+18445,603
+18446,56119
+18447,22850
+18448,7734
+18449,18520
+18450,16443
+18451,66703
+18452,61622,36381
+18453,68544
+18454,77192
+18455,66703
+18456,56127
+18457,1324
+18458,1048
+18459,18460
+18460,55022
+18461,18460
+18462,66703
+18463,14638
+18464,56119
+18465,63586
+18466,22649
+18467,22538
+18468,55423
+18469,61622
+18470,55951,21814
+18471,6625
+18472,55951
+18473,10240
+18474,29509,62089
+18475,13019
+18476,7620,52751
+18477,36892,67195
+18478,43104
+18479,64293
+18480,75942
+18481,79591
+18482,70166
+18483,11961
+18484,9215
+18485,80394
+18486,56127
+18487,78024
+18488,65763
+18489,22850
+18490,61622
+18491,19234
+18492,68027
+18493,60611,5356
+18494,29549
+18495,30208
+18496,48451
+18497,29509
+18498,61086
+18499,61086
+18500,61086
+18501,80962
+18502,36892
+18503,72961
+18504,59903
+18505,10680
+18506,10676
+18507,3600
+18508,5765
+18509,5777
+18510,18511
+18511,55022
+18512,57140
+18513,66703
+18514,35787
+18515,24302
+18516,22598
+18517,7734
+18518,77192
+18519,18520
+18520,7735
+18521,72961
+18522,51068
+18523,30186
+18524,18084
+18525,29509
+18526,52887
+18527,56119
+18528,22032
+18529,277
+18530,55022
+18531,52887
+18532,61086
+18533,66703
+18534,283
+18535,277
+18536,18537
+18537,55022
+18538,52497
+18539,44702
+18540,81781
+18541,55081
+18542,55080
+18543,55081
+18544,67039
+18545,40012
+18546,48957
+18547,31905
+18548,66344
+18549,52886
+18550,724
+18551,17555
+18552,52887
+18553,29509
+18554,29509
+18555,55081
+18556,48957
+18557,4624
+18558,8647
+18559,63327
+18560,25303
+18561,60611
+18562,40299
+18563,72272
+18564,2607
+18565,2608
+18566,35474
+18567,24325
+18568,60448
+18569,60448
+18570,20756
+18571,63327
+18572,25303
+18573,6952
+18574,48768
+18575,6952
+18576,40303
+18577,36892
+18578,66344,30896
+18579,66703
+18580,16443
+18581,42436
+18582,76113
+18583,40978
+18584,28801
+18585,51397
+18586,283
+18587,277
+18588,36008
+18589,79650
+18590,79618
+18591,55081
+18592,55080
+18593,22257
+18594,40012
+18595,22649
+18596,76134
+18597,46070
+18598,56127
+18599,61766
+18600,55495
+18601,8647
+18602,52886
+18603,55081
+18604,35097
+18605,40303
+18606,40299
+18607,57109
+18608,74973
+18609,29509
+18610,24325
+18611,29621
+18612,63327
+18613,35474
+18614,65754
+18615,55081
+18616,55080
+18617,28801
+18618,15311
+18619,48270
+18620,79650
+18621,277
+18622,30900
+18623,11918
+18624,13944
+18625,29509
+18626,13088
+18627,68796
+18628,76135,45839
+18629,81781
+18630,76134
+18631,60611
+18632,63460
+18633,63459
+18634,20756
+18635,27763
+18636,29621
+18637,35875
+18638,67038
+18639,67039
+18640,20756
+18641,29738
+18642,70427
+18643,53940
+18644,50593
+18645,77641
+18646,61159
+18647,47116
+18648,58508
+18649,39049
+18650,22887
+18651,75082
+18652,26936
+18653,42327
+18654,33428
+18655,78772
+18656,78647
+18657,69744
+18658,35676
+18659,65682
+18660,35612
+18661,46920
+18662,37612
+18663,35429
+18664,18663
+18665,57177
+18666,54878
+18667,18666
+18668,60216
+18669,51490
+18670,26298
+18671,66769
+18672,49483
+18673,18678
+18674,74401
+18675,29314
+18676,31778
+18677,55015
+18678,74401
+18679,41228
+18680,69923
+18681,28627
+18682,66047
+18683,66048
+18684,64353
+18685,25115
+18686,70568
+18687,19193
+18688,21097
+18689,21098
+18690,25843
+18691,28091
+18692,37145
+18693,80048
+18694,28260
+18695,61317
+18696,39466
+18697,57514
+18698,32715
+18699,27398
+18700,55348
+18701,70568
+18702,57113
+18703,61621
+18704,70033
+18705,52857
+18706,18740
+18707,20858
+18708,53916
+18709,58012
+18710,47219,51626,42481
+18711,37789
+18712,18939
+18713,47744
+18714,27286
+18715,48004
+18716,45276,35554
+18717,70231
+18718,31668
+18719,78925
+18720,64142
+18721,30267
+18722,58161
+18723,23791
+18724,34355
+18725,60216
+18726,25087
+18727,38266
+18728,57934
+18729,57360
+18730,31546
+18731,79924
+18732,53163
+18733,35525
+18734,24354
+18735,66693,80197
+18736,34538
+18737,69006,65858
+18738,36089
+18739,63587
+18740,60598
+18741,78640
+18742,54704
+18743,66189
+18744,35626
+18745,66063
+18746,75917
+18747,35922
+18748,65531
+18749,73401
+18750,50899
+18751,60216
+18752,77460
+18753,45280
+18754,75917
+18755,48001
+18756,36602
+18757,75917
+18758,18756
+18759,35917
+18760,39746
+18761,66316
+18762,28529
+18763,68809
+18764,43240
+18765,18740
+18766,76981
+18767,18766
+18768,38266
+18769,81722
+18770,53454
+18771,35435
+18772,65376
+18773,66862
+18774,27135
+18775,22268
+18776,35626
+18777,35512
+18778,45253
+18779,43865
+18780,74939
+18781,18780
+18782,3143
+18783,69606
+18784,65816
+18785,41787
+18786,34765
+18787,34725
+18788,76657
+18789,50139
+18790,56885
+18791,68929
+18792,34765
+18793,77585
+18794,22846
+18795,60013
+18796,18790
+18797,62657
+18798,51640
+18799,18839
+18800,38455
+18801,28121
+18802,52655
+18803,45467
+18804,71842
+18805,75741
+18806,76384
+18807,34326
+18808,75741
+18809,28543
+18810,31245
+18811,65393
+18812,35922
+18813,61789
+18814,36065
+18815,35474
+18816,59188
+18817,71629
+18818,60174
+18819,32325,18820
+18820,71630
+18821,18820
+18822,56179
+18823,71643
+18824,58012
+18825,30206
+18826,47946
+18827,72038
+18828,78703
+18829,60604
+18830,60216
+18831,65767
+18832,53590
+18833,75738
+18834,68960
+18835,68964
+18836,62657
+18837,58803
+18838,65816
+18839,31158
+18840,38003
+18841,76145
+18842,42518
+18843,65929
+18844,58798
+18845,47531
+18846,81781
+18847,70526
+18848,56941
+18849,40990
+18850,63584
+18851,64846
+18852,64846
+18853,64161
+18854,35695
+18855,81807
+18856,61646
+18857,74487
+18858,21412
+18859,50341
+18860,62324
+18861,62441
+18862,28665
+18863,57475
+18864,77641
+18865,81663
+18866,19384
+18867,32298
+18868,22420
+18869,34609
+18870,41516
+18871,43829
+18872,37202
+18873,63152
+18874,62675
+18875,46460
+18876,37204
+18877,68230
+18878,62145
+18879,68771
+18880,68236
+18881,38375
+18882,48401
+18883,32718
+18884,81681
+18885,65295
+18886,24823
+18887,70651
+18888,78160
+18889,70651
+18890,70651
+18891,45813
+18892,18740
+18893,48111
+18894,60284
+18895,54789
+18896,21373
+18897,56180
+18898,82169
+18899,54789
+18900,51502
+18901,25673
+18902,60598
+18903,51184
+18904,75755
+18905,64831
+18906,28530
+18907,72064
+18908,78703
+18909,59762
+18910,68285
+18911,79097
+18912,53624
+18913,34985
+18914,63281
+18915,58287
+18916,50367
+18917,73684
+18918,67940
+18919,70526
+18920,21895
+18921,19131
+18922,36317
+18923,64145,67746
+18924,18919
+18925,31058
+18926,36399
+18927,66551
+18928,21314
+18929,30186
+18930,80483
+18931,57927
+18932,66727
+18933,76657
+18934,47870
+18935,63320
+18936,19130
+18937,19732
+18938,22118
+18939,32929
+18940,29928
+18941,31039
+18942,18939
+18943,18939
+18944,79282
+18945,18939
+18946,41729
+18947,79282
+18948,32715
+18949,79282
+18950,54732
+18951,45096
+18952,55760
+18953,21328
+18954,19280
+18955,50989
+18956,69358
+18957,34911
+18958,51803
+18959,19755
+18960,20226
+18961,37857
+18962,68577
+18963,65509
+18964,45096
+18965,59309
+18966,55768
+18967,79282
+18968,21922
+18969,19200
+18970,30968
+18971,19732
+18972,69358
+18973,43335
+18974,41484,49697
+18975,55768
+18976,47671
+18977,63166
+18978,72984
+18979,65698
+18980,26604
+18981,47898
+18982,66118
+18983,57461
+18984,26604
+18985,62145
+18986,38814
+18987,75020
+18988,65589
+18989,33877
+18990,40240
+18991,62934
+18992,51154
+18993,21905
+18994,28361
+18995,19300
+18996,47870
+18997,47870
+18998,47870
+18999,48219
+19000,47870
+19001,18988
+19002,37197
+19003,31638
+19004,56474
+19005,47871
+19006,65591
+19007,64142
+19008,64142
+19009,28622
+19010,21898
+19011,57360
+19012,34284
+19013,35682
+19014,61402
+19015,69276
+19016,38807
+19017,19014
+19018,19014
+19019,19014
+19020,19014
+19021,23972
+19022,29263
+19023,18740
+19024,70392
+19025,24430
+19026,71761
+19027,23946
+19028,41748
+19029,71353
+19030,58158
+19031,19944
+19032,19954
+19033,20351
+19034,20517
+19035,20517
+19036,67675
+19037,35595
+19038,64923
+19039,27488
+19040,20736
+19041,19036
+19042,49662
+19043,49661,71567
+19044,20517
+19045,19039
+19046,19268
+19047,19270
+19048,19271
+19049,56543
+19050,20019
+19051,58776
+19052,41729
+19053,62184
+19054,60216
+19055,45813
+19056,40752
+19057,27197
+19058,35626
+19059,35626
+19060,66786
+19061,42481
+19062,30467
+19063,31063
+19064,70183
+19065,25119
+19066,30500
+19067,35626
+19068,59305
+19069,31058
+19070,52463
+19071,28784
+19072,47946
+19073,36872
+19074,45354
+19075,19813
+19076,21295
+19077,34326
+19078,24823
+19079,47068
+19080,56179
+19081,79877
+19082,58669
+19083,71729
+19084,22640
+19085,50166,63045
+19086,54446
+19087,59549
+19088,36642
+19089,67432
+19090,37179
+19091,54044
+19092,51468
+19093,34363
+19094,70651,48127
+19095,19094
+19096,19094
+19097,29737,7764
+19098,61705
+19099,18740
+19100,41729
+19101,23118
+19102,81337
+19103,81336
+19104,78097
+19105,65795
+19106,26452
+19107,34399
+19108,34924
+19109,44593
+19110,54875
+19111,32715
+19112,60603
+19113,48495
+19114,64481
+19115,66055
+19116,53870
+19117,60611
+19118,60613
+19119,65698
+19120,48156
+19121,60216
+19122,18919
+19123,45741
+19124,47564
+19125,62614
+19126,60216
+19127,34647
+19128,40063
+19129,19171
+19130,77444
+19131,19129
+19132,44157
+19133,40044
+19134,50875
+19135,21480
+19136,79874
+19137,79874
+19138,21476
+19139,71023
+19140,24430
+19141,35435
+19142,65584
+19143,22032
+19144,73913
+19145,40619
+19146,44698
+19147,55299
+19148,29263
+19149,33566
+19150,20743
+19151,61246
+19152,47198
+19153,18740
+19154,63064
+19155,18740
+19156,55916
+19157,41228
+19158,70395
+19159,56023
+19160,23365
+19161,63064
+19162,51701
+19163,20351
+19164,39049
+19165,58783
+19166,75007
+19167,52908
+19168,61311
+19169,38879
+19170,36377
+19171,38545
+19172,50875
+19173,60074
+19174,26899
+19175,70397
+19176,19228,60077
+19177,37241
+19178,35664
+19179,68549
+19180,34701
+19181,49637
+19182,37448
+19183,69235
+19184,63314
+19185,28780
+19186,44437
+19187,20431
+19188,53624
+19189,53621
+19190,38475
+19191,38475
+19192,20977
+19193,82167
+19194,72416
+19195,67880
+19196,61486
+19197,36524
+19198,44440
+19199,81601
+19200,19171
+19201,53660
+19202,72959
+19203,27797
+19204,56449
+19205,72038
+19206,27459
+19207,19211
+19208,73273
+19209,23764
+19210,37884
+19211,74082
+19212,60216
+19213,28775
+19214,19793
+19215,21275
+19216,28962
+19217,29488
+19218,19124
+19219,51651
+19220,61147
+19221,70516
+19222,77518
+19223,78059
+19224,79821
+19225,77374
+19226,61767
+19227,27282
+19228,19171
+19229,63434
+19230,60216
+19231,60076
+19232,26581
+19233,51472
+19234,19231
+19235,33758
+19236,38561
+19237,62179
+19238,70416
+19239,23780
+19240,75058
+19241,53660
+19242,70183
+19243,63064
+19244,61261
+19245,73281
+19246,61261
+19247,70392
+19248,77636
+19249,77636
+19250,18913
+19251,57361
+19252,35626
+19253,42314
+19254,43380
+19255,43449
+19256,37762
+19257,51099
+19258,19257
+19259,55884,19257
+19260,63996
+19261,65825
+19262,68211
+19263,77740
+19264,69131
+19265,69576
+19266,48477
+19267,53717
+19268,44439
+19269,58158
+19270,58158
+19271,28790
+19272,63259
+19273,65793
+19274,54000
+19275,55756,59422
+19276,33799
+19277,66066
+19278,18720
+19279,20226
+19280,58162
+19281,81789
+19282,34924
+19283,64475
+19284,20905
+19285,57187
+19286,53516
+19287,26937
+19288,26936
+19289,79653
+19290,39676
+19291,36612
+19292,37998
+19293,32759
+19294,22421
+19295,60598
+19296,26936
+19297,74117
+19298,47871
+19299,31039
+19300,47908
+19301,28792
+19302,19299
+19303,48775
+19304,54727
+19305,43103
+19306,53023
+19307,73662
+19308,72825
+19309,30188
+19310,35388
+19311,72052
+19312,65133
+19313,62957
+19314,35531
+19315,21510
+19316,31058
+19317,55348
+19318,70568
+19319,61256
+19320,63873
+19321,48126
+19322,27497
+19323,18728
+19324,23906
+19325,61890
+19326,47198
+19327,43355
+19328,57157
+19329,38053
+19330,57160
+19331,57160
+19332,57160
+19333,20763
+19334,70633
+19335,67940
+19336,54562
+19337,47442
+19338,59549
+19339,68120
+19340,31690
+19341,22907
+19342,53454
+19343,75336
+19344,73230
+19345,58168
+19346,56179
+19347,78925
+19348,39363
+19349,20760
+19350,39466
+19351,59420
+19352,56262
+19353,54909
+19354,52752
+19355,46754
+19356,62254
+19357,75917
+19358,49358
+19359,60216
+19360,21930
+19361,48049
+19362,31564
+19363,38021
+19364,81746
+19365,48792
+19366,38031
+19367,47717
+19368,26960
+19369,54425
+19370,73477
+19371,19369
+19372,19302
+19373,62032
+19374,52920
+19375,53714
+19376,25094
+19377,49497
+19378,33885
+19379,35787
+19380,45465
+19381,50603
+19382,78698
+19383,39811
+19384,45367
+19385,45367
+19386,67333
+19387,38618
+19388,57280
+19389,40416
+19390,43815
+19391,62145
+19392,24718
+19393,51391
+19394,60216
+19395,52211
+19396,18918
+19397,19091
+19398,38012
+19399,47730
+19400,48201
+19401,34285
+19402,65075
+19403,19488
+19404,25115
+19405,30807
+19406,29677
+19407,25889
+19408,41646
+19409,35557
+19410,76662
+19411,47532
+19412,49508
+19413,52904
+19414,60216
+19415,63061
+19416,24718
+19417,59194
+19418,22162
+19419,19392
+19420,81703
+19421,34199
+19422,34197
+19423,81787
+19424,32221,37832
+19425,37832
+19426,53744,37832
+19427,18728
+19428,72931
+19429,79222
+19430,39027
+19431,46553
+19432,46553
+19433,71629
+19434,71630
+19435,71643
+19436,40552
+19437,20743
+19438,60216
+19439,46885
+19440,32506
+19441,19439,39609
+19442,48483
+19443,19439,52806
+19444,66101
+19445,74081
+19446,28529
+19447,47730
+19448,28545
+19449,51180
+19450,19449
+19451,38958
+19452,53528
+19453,76662
+19454,65925
+19455,74275
+19456,47871
+19457,34048
+19458,34906
+19459,55497
+19460,61643
+19461,23899
+19462,21904
+19463,75742
+19464,21633
+19465,66965
+19466,78598
+19467,73495
+19468,60216
+19469,19468
+19470,65154
+19471,25168
+19472,54909
+19473,52752
+19474,19472
+19475,60216
+19476,31427
+19477,57967
+19478,81433
+19479,54728
+19480,54729
+19481,22138
+19482,63666
+19483,30659
+19484,19648
+19485,27086
+19486,26586
+19487,19272
+19488,63344
+19489,68030
+19490,81375
+19491,60216
+19492,22269
+19493,20823
+19494,25016
+19495,31586
+19496,74490
+19497,60216
+19498,50638
+19499,66551
+19500,80505
+19501,37169
+19502,50919
+19503,72409
+19504,41748
+19505,45206
+19506,56179
+19507,28539
+19508,21200
+19509,38907
+19510,77081
+19511,19143
+19512,58088
+19513,24317
+19514,44744
+19515,58166
+19516,27552
+19517,51253
+19518,76999
+19519,41103
+19520,19519
+19521,54121
+19522,54127
+19523,53657
+19524,24260
+19525,37908
+19526,37913
+19527,75613
+19528,60612
+19529,74660
+19530,60438
+19531,39312
+19532,29935
+19533,35652
+19534,65581
+19535,37908
+19536,19811
+19537,60450
+19538,60453
+19539,41610
+19540,69451
+19541,71313
+19542,77399
+19543,39578
+19544,62778
+19545,69028
+19546,78741
+19547,39578
+19548,37690
+19549,53916
+19550,60967
+19551,60216
+19552,76005,50875
+19553,21930
+19554,58168
+19555,21940
+19556,65698
+19557,49793
+19558,43122
+19559,77448
+19560,49858
+19561,22158
+19562,66009
+19563,22159
+19564,41103
+19565,65691
+19566,49858
+19567,30689
+19568,49360
+19569,72052
+19570,22415
+19571,71304
+19572,61422
+19573,19730
+19574,25494
+19575,55253
+19576,41251
+19577,48372
+19578,19480
+19579,47475
+19580,77972
+19581,80510
+19582,66482
+19583,31805
+19584,64178
+19585,39928
+19586,57423
+19587,21738
+19588,23012
+19589,24651
+19590,273
+19591,24823
+19592,72436
+19593,39312
+19594,55873,24289
+19595,60400
+19596,52156
+19597,61157
+19598,34924
+19599,53694
+19600,42246
+19601,34154
+19602,37215
+19603,31477
+19604,22053
+19605,61424
+19606,53871
+19607,51257
+19608,31477
+19609,33932
+19610,58958
+19611,60737
+19612,39513
+19613,77685
+19614,19606
+19615,19299
+19616,47505
+19617,31991
+19618,60598
+19619,19621
+19620,65956
+19621,51814
+19622,47569
+19623,51395
+19624,52189
+19625,52189
+19626,65759
+19627,44609
+19628,33328
+19629,23267
+19630,41877
+19631,28449
+19632,21480
+19633,62356
+19634,34754
+19635,63314
+19636,76662
+19637,52550
+19638,29626
+19639,59970
+19640,65636
+19641,22389
+19642,19636
+19643,19639
+19644,57680
+19645,35525
+19646,47588
+19647,19202
+19648,26577
+19649,19382
+19650,51677
+19651,61202
+19652,49027
+19653,56903
+19654,28054,74081
+19655,65931
+19656,28054
+19657,26604
+19658,57573
+19659,68780
+19660,34647
+19661,68780
+19662,69028
+19663,21218
+19664,40752
+19665,79848
+19666,30391
+19667,30392
+19668,34924
+19669,58162
+19670,51562
+19671,28790
+19672,24841
+19673,20978
+19674,21007
+19675,47871
+19676,21876
+19677,48491
+19678,20828
+19679,19686
+19680,78755
+19681,53454
+19682,74276
+19683,41729
+19684,78649
+19685,30550
+19686,23774
+19687,46708
+19688,19200
+19689,36524
+19690,35436
+19691,48392
+19692,19679
+19693,43845
+19694,58162
+19695,28616
+19696,34664
+19697,63584
+19698,39578
+19699,55348
+19700,35792
+19701,78210
+19702,77976
+19703,63293
+19704,69599
+19705,25661
+19706,65702
+19707,56009
+19708,25673
+19709,65767
+19710,60216
+19711,65766
+19712,78523
+19713,28129
+19714,51468
+19715,31647
+19716,20895
+19717,36602
+19718,58776
+19719,74180
+19720,56605
+19721,30529
+19722,8382
+19723,53203
+19724,53203
+19725,60468
+19726,66862
+19727,24823
+19728,68030
+19729,25673
+19730,35679
+19731,61425
+19732,72052
+19733,45196
+19734,61241
+19735,43913
+19736,30968
+19737,72983
+19738,30659
+19739,50117
+19740,29626
+19741,39375
+19742,45813
+19743,68280
+19744,68280
+19745,52990
+19746,38807
+19747,68280
+19748,79580
+19749,78024
+19750,47487
+19751,74939
+19752,30355
+19753,42523
+19754,65760
+19755,19228
+19756,66087
+19757,43247
+19758,21922
+19759,53854
+19760,61530
+19761,53288
+19762,20690
+19763,70283
+19764,19849
+19765,35626
+19766,82169
+19767,73112
+19768,43546
+19769,67957
+19770,37519
+19771,42246
+19772,65581
+19773,53732
+19774,64142
+19775,36709
+19776,54757
+19777,54757
+19778,76664
+19779,19967
+19780,19907
+19781,54406
+19782,22684,66154
+19783,23221
+19784,67432
+19785,26194
+19786,31084
+19787,21269
+19788,31874
+19789,63416
+19790,31076
+19791,69809
+19792,33464
+19793,34293
+19794,37627
+19795,40021
+19796,54437
+19797,18880
+19798,69308
+19799,19828
+19800,44628
+19801,44966
+19802,46268
+19803,46559
+19804,48456
+19805,59542
+19806,52691
+19807,53278
+19808,22051
+19809,53524
+19810,36709
+19811,61246
+19812,22053
+19813,61830
+19814,81865
+19815,63775
+19816,41100
+19817,65190
+19818,67432
+19819,67432
+19820,56231
+19821,69483
+19822,75913
+19823,77319
+19824,77520
+19825,77523
+19826,77575
+19827,77585
+19828,54440
+19829,71705
+19830,59582
+19831,77496
+19832,62410
+19833,66154
+19834,22075
+19835,38835
+19836,19861
+19837,32683
+19838,80185
+19839,37905
+19840,50317
+19841,56894
+19842,32903
+19843,32908
+19844,73838
+19845,34433
+19846,39358
+19847,39101
+19848,40747
+19849,34924
+19850,41444
+19851,70399
+19852,25928
+19853,27284
+19854,51365
+19855,51778
+19856,38659
+19857,33361
+19858,77521
+19859,46673
+19860,51474
+19861,19867
+19862,28475
+19863,52691
+19864,52693
+19865,51069
+19866,52709
+19867,45570
+19868,77287
+19869,63306
+19870,19847
+19871,19546
+19872,51354
+19873,55352
+19874,22049
+19875,71838
+19876,72066
+19877,81193
+19878,19847
+19879,71715
+19880,59420
+19881,21474
+19882,59427
+19883,33512
+19884,28164
+19885,41743
+19886,59126
+19887,38135
+19888,61788,75958
+19889,75958
+19890,75958
+19891,75958
+19892,75958
+19893,75958
+19894,75958
+19895,75958
+19896,75958
+19897,75958
+19898,75958
+19899,63064
+19900,81277
+19901,44719
+19902,80845
+19903,26914
+19904,51778
+19905,59126
+19906,20355
+19907,70214
+19908,39502
+19909,34924
+19910,29845
+19911,80164
+19912,30891
+19913,71005
+19914,79485
+19915,78169
+19916,78170
+19917,46090
+19918,59825
+19919,64846
+19920,47255,24354
+19921,60216
+19922,61174
+19923,77641
+19924,51395
+19925,78189
+19926,25306
+19927,53731
+19928,70397
+19929,74939
+19930,26065
+19931,53561,49353
+19932,58815,41284
+19933,48474
+19934,63547
+19935,51642
+19936,24007,36610
+19937,74083
+19938,44439
+19939,76196
+19940,36638
+19941,34472
+19942,36604
+19943,65120
+19944,58158
+19945,44439
+19946,81482
+19947,77641
+19948,24726
+19949,26232
+19950,56532
+19951,8775
+19952,65931
+19953,19956,45937
+19954,58158
+19955,28792
+19956,55121
+19957,54570
+19958,43355
+19959,23730
+19960,31690
+19961,63641
+19962,66220
+19963,53717
+19964,51068
+19965,50439
+19966,80164
+19967,64970
+19968,21610
+19969,22137
+19970,54859
+19971,63434
+19972,40292
+19973,29986
+19974,29287
+19975,59555
+19976,40927
+19977,53690
+19978,72557
+19979,63458
+19980,54034
+19981,23541
+19982,63861
+19983,19996
+19984,48921
+19985,53480
+19986,30368
+19987,44609
+19988,69450
+19989,53624
+19990,53621
+19991,70395
+19992,34139
+19993,21527
+19994,67270
+19995,38273
+19996,63193
+19997,56009
+19998,34295
+19999,20019
+20000,74597
+20001,74597
+20002,18785
+20003,41158
+20004,77431
+20005,19200
+20006,35611
+20007,48980
+20008,77094
+20009,78755
+20010,65133
+20011,63565
+20012,63564
+20013,43972
+20014,61153
+20015,19368
+20016,36710
+20017,71019
+20018,74498
+20019,58158
+20020,35886
+20021,35886
+20022,47451
+20023,22420
+20024,47543
+20025,60786
+20026,20025
+20027,36872
+20028,71567
+20029,24823
+20030,67675
+20031,34049
+20032,54082
+20033,61703
+20034,79877
+20035,54082
+20036,58669
+20037,74939
+20038,58158
+20039,59549
+20040,19069
+20041,54059
+20042,20019
+20043,75007
+20044,44439
+20045,58158
+20046,21025
+20047,58158
+20048,74253
+20049,50604
+20050,38807
+20051,70214
+20052,60177
+20053,27506
+20054,76670
+20055,79608
+20056,39722
+20057,19009
+20058,29568
+20059,52268
+20060,30891
+20061,38883
+20062,75755
+20063,59422,55756
+20064,75755
+20065,55756,59422
+20066,20064
+20067,42429
+20068,67957
+20069,74081
+20070,37154
+20071,66392,47185
+20072,35917
+20073,53716
+20074,47185
+20075,35130
+20076,76160
+20077,73650
+20078,36047
+20079,51395
+20080,77637
+20081,31443
+20082,58168
+20083,30038
+20084,69460
+20085,20082
+20086,50784
+20087,32991
+20088,20718
+20089,71151
+20090,80583
+20091,81746
+20092,61584
+20093,66431
+20094,71961,81781
+20095,21913
+20096,31115
+20097,22268
+20098,19311
+20099,33027
+20100,28591
+20101,70225
+20102,79175
+20103,35480
+20104,31058
+20105,55246
+20106,53694
+20107,57471
+20108,60482
+20109,53717
+20110,76210
+20111,69554
+20112,35771
+20113,28780
+20114,28788
+20115,65659
+20116,69554
+20117,51205
+20118,65185
+20119,35518
+20120,54825
+20121,27862
+20122,73081
+20123,70033
+20124,72142
+20125,72146
+20126,72146
+20127,22159
+20128,75775
+20129,53934
+20130,47978
+20131,43109
+20132,40516
+20133,68857
+20134,71446
+20135,43110
+20136,72960
+20137,21930
+20138,44439
+20139,19935
+20140,75007
+20141,68236
+20142,20830
+20143,20830
+20144,72228
+20145,42229
+20146,37181,36641
+20147,20152
+20148,31853
+20149,40564
+20150,64015
+20151,57594
+20152,41743
+20153,58291
+20154,71331
+20155,31730
+20156,43335
+20157,77600
+20158,36089
+20159,21777
+20160,74146
+20161,63863
+20162,19091
+20163,35679
+20164,78788
+20165,22773
+20166,20165
+20167,55394
+20168,81552
+20169,39049
+20170,51818
+20171,72716
+20172,72931
+20173,51068
+20174,25727
+20175,48545
+20176,57731
+20177,56045
+20178,47946
+20179,79775
+20180,38415
+20181,33183
+20182,24799
+20183,25727
+20184,26072
+20185,34117
+20186,39737
+20187,43427
+20188,48875
+20189,59338
+20190,62620
+20191,32169,48852
+20192,65119
+20193,25681
+20194,71439
+20195,77726
+20196,28597,68474
+20197,21946
+20198,71719
+20199,58262
+20200,58106
+20201,51706
+20202,28597
+20203,20763
+20204,38477
+20205,70033
+20206,23573
+20207,29957
+20208,29974
+20209,45813
+20210,81161
+20211,43672
+20212,54458
+20213,67608
+20214,70033
+20215,55438
+20216,23925
+20217,51395
+20218,73838
+20219,75057
+20220,52811,19097
+20221,81251
+20222,68429
+20223,53624
+20224,41607
+20225,55821
+20226,28529
+20227,37419
+20228,74135
+20229,58161
+20230,28962
+20231,37884
+20232,53718
+20233,61422
+20234,42469
+20235,52857
+20236,53624
+20237,35737
+20238,37542
+20239,47283
+20240,70426
+20241,61075
+20242,61075
+20243,29724
+20244,65748
+20245,68027
+20246,33340
+20247,73604
+20248,78783
+20249,72603
+20250,21984
+20251,20255,36216
+20252,20255,36216
+20253,32229
+20254,31058
+20255,54082
+20256,31919
+20257,48030
+20258,29067
+20259,40938
+20260,47105
+20261,68230
+20262,45813
+20263,20253
+20264,63064
+20265,21703
+20266,73837
+20267,31520
+20268,37140
+20269,60132
+20270,66361
+20271,63064
+20272,48126
+20273,48126
+20274,67432
+20275,33134
+20276,70320
+20277,30566
+20278,20120
+20279,31515
+20280,26602
+20281,43892
+20282,45813
+20283,71731
+20284,71733
+20285,51640
+20286,26318
+20287,18740
+20288,22032
+20289,60216
+20290,78786
+20291,31832
+20292,79743
+20293,59286
+20294,81462
+20295,80485
+20296,72376
+20297,35342
+20298,62145
+20299,20297
+20300,56180
+20301,81918
+20302,51395
+20303,20758
+20304,49059
+20305,38043
+20306,45024
+20307,68030
+20308,78533
+20309,36524
+20310,34783
+20311,39578
+20312,71302
+20313,80009
+20314,54562
+20315,79743
+20316,49583
+20317,67036
+20318,34808
+20319,33725
+20320,25115
+20321,27405
+20322,50638
+20323,26208
+20324,80011
+20325,80012
+20326,74577
+20327,22116
+20328,67608
+20329,66412
+20330,63471
+20331,20330,36899
+20332,24354
+20333,47716
+20334,37642
+20335,44474
+20336,32097
+20337,77280
+20338,75495
+20339,72983
+20340,32176
+20341,74939
+20342,54082
+20343,64231,77509
+20344,64073
+20345,24354
+20346,79743
+20347,41609
+20348,41610
+20349,19492
+20350,25934
+20351,58158
+20352,41607
+20353,54142
+20354,44439
+20355,58158
+20356,61311
+20357,74939
+20358,19069
+20359,54159
+20360,26065
+20361,20517
+20362,20972
+20363,28170
+20364,77802
+20365,59668
+20366,41610
+20367,79224
+20368,54130
+20369,31058
+20370,40752
+20371,24194
+20372,22060
+20373,51642
+20374,44609
+20375,60175
+20376,41305
+20377,20371
+20378,27450
+20379,27479
+20380,67675
+20381,56752
+20382,74939
+20383,53454
+20384,48157
+20385,80515
+20386,30275
+20387,45029
+20388,38693
+20389,29732
+20390,28260,62654
+20391,67432
+20392,79432
+20393,28091
+20394,51649
+20395,23062,78076
+20396,20395
+20397,64380
+20398,35922
+20399,35474
+20400,64142
+20401,39312
+20402,52189
+20403,69444
+20404,70033
+20405,21777
+20406,69543
+20407,34209
+20408,59646
+20409,52655
+20410,62846
+20411,59893
+20412,37411
+20413,33428
+20414,33428
+20415,28627
+20416,28627
+20417,52645
+20418,63809
+20419,73272,36610
+20420,20419
+20421,29621
+20422,79432
+20423,19867
+20424,55373
+20425,39294
+20426,42539
+20427,20430
+20428,20430
+20429,50318,54404
+20430,57932
+20431,54562
+20432,54562
+20433,54091
+20434,20307
+20435,54189
+20436,61793
+20437,58166
+20438,31241
+20439,56941
+20440,78679
+20441,52791
+20442,55952
+20443,42039
+20444,72712
+20445,58576
+20446,67608
+20447,49134
+20448,20977
+20449,59893
+20450,74183
+20451,50450
+20452,50717
+20453,47871
+20454,38770
+20455,47869
+20456,37479
+20457,69702
+20458,52655
+20459,18853
+20460,34362
+20461,54913
+20462,25115
+20463,40514
+20464,35425
+20465,57934
+20466,74560
+20467,78647
+20468,53717
+20469,28646
+20470,34422
+20471,21407
+20472,59237
+20473,23206
+20474,43473
+20475,79848
+20476,63600
+20477,44439
+20478,19935
+20479,79224
+20480,38053
+20481,72913
+20482,63434
+20483,61285
+20484,47487
+20485,28790
+20486,22096
+20487,56454,68317
+20488,60598
+20489,30391
+20490,74615
+20491,73201
+20492,21920
+20493,60216
+20494,21745
+20495,76678
+20496,65699
+20497,34664
+20498,66377
+20499,25013
+20500,25770
+20501,65892
+20502,58166
+20503,73180
+20504,43520
+20505,60541
+20506,29737,7764
+20507,48631
+20508,81578
+20509,81582
+20510,60242
+20511,72135
+20512,60385
+20513,24823
+20514,38624
+20515,73272
+20516,60598
+20517,53717
+20518,29845
+20519,31100
+20520,80238
+20521,65056
+20522,70375
+20523,48087
+20524,30952
+20525,47486
+20526,59555
+20527,38883
+20528,32974
+20529,26939
+20530,48791
+20531,65057
+20532,55627
+20533,38807
+20534,38807
+20535,63564
+20536,43122
+20537,23540
+20538,33259
+20539,66325
+20540,63314
+20541,48408
+20542,47561
+20543,54092
+20544,38576
+20545,31940
+20546,54189
+20547,60393
+20548,81578
+20549,65892
+20550,63278
+20551,43913
+20552,69444
+20553,20554
+20554,47185
+20555,36917
+20556,20745
+20557,65958
+20558,61789
+20559,64490
+20560,35625
+20561,72055
+20562,37162
+20563,49155
+20564,25087
+20565,50985
+20566,50985
+20567,49441
+20568,79282
+20569,66377
+20570,65058
+20571,38664
+20572,78755
+20573,22944
+20574,68030
+20575,38807
+20576,20530
+20577,55251
+20578,44769
+20579,22646,21007
+20580,58576
+20581,65702
+20582,81703
+20583,20581
+20584,48218
+20585,75710
+20586,46492
+20587,74486
+20588,28417
+20589,51316
+20590,31245
+20591,39556
+20592,21631
+20593,21475
+20594,38244
+20595,40292
+20596,71398
+20597,72503
+20598,36452
+20599,40564
+20600,41743
+20601,37179
+20602,61127
+20603,67957
+20604,45813
+20605,43809
+20606,60216
+20607,57682
+20608,46163
+20609,30779
+20610,60899
+20611,57681
+20612,59970
+20613,70568
+20614,75755
+20615,59422,55756
+20616,47442
+20617,74488
+20618,42229
+20619,23679
+20620,42116
+20621,73201
+20622,59320
+20623,79826
+20624,69410
+20625,22323
+20626,70033
+20627,70033
+20628,71319
+20629,20621,49670
+20630,45813
+20631,65908
+20632,56074
+20633,66953
+20634,74939
+20635,24823
+20636,20875
+20637,47283
+20638,53621
+20639,42358
+20640,53621
+20641,40752
+20642,33782
+20643,24354
+20644,47581
+20645,47744
+20646,23130
+20647,60598
+20648,71996
+20649,53716
+20650,36602
+20651,51881
+20652,60598
+20653,18740
+20654,27555
+20655,72281
+20656,59587
+20657,70033
+20658,70033
+20659,23765
+20660,72386
+20661,69564
+20662,26673
+20663,40564
+20664,45812
+20665,45813
+20666,77641
+20667,76138
+20668,23799
+20669,37687
+20670,37686
+20671,48126,20684
+20672,48127
+20673,45490
+20674,66873
+20675,20689
+20676,37162
+20677,44474
+20678,53717
+20679,66873
+20680,66874
+20681,35917
+20682,53716
+20683,78160,20684
+20684,59549
+20685,57934
+20686,77646
+20687,52842
+20688,54263
+20689,72111
+20690,77641
+20691,82003
+20692,60598
+20693,79222
+20694,20693
+20695,20693
+20696,48227
+20697,63414
+20698,71837
+20699,25645
+20700,20702
+20701,20698
+20702,20698
+20703,20698
+20704,20698
+20705,52288
+20706,26358
+20707,68197
+20708,40323
+20709,57280
+20710,40330
+20711,74500
+20712,45280
+20713,23095
+20714,43896
+20715,58088
+20716,21087
+20717,54183
+20718,51814
+20719,35762
+20720,35765
+20721,18905
+20722,21703
+20723,20698
+20724,55001
+20725,62147
+20726,69543
+20727,78703
+20728,79282
+20729,72066
+20730,69544
+20731,53621
+20732,28538
+20733,50969
+20734,63584
+20735,60598
+20736,31058
+20737,33271
+20738,47963
+20739,36872
+20740,20353
+20741,36872
+20742,68944
+20743,58166
+20744,70214
+20745,35534
+20746,39324
+20747,39428,20754
+20748,56166,20758
+20749,79433
+20750,43475,20758
+20751,24243
+20752,39381
+20753,50861
+20754,53454
+20755,57594,20754
+20756,58100
+20757,60786
+20758,20754
+20759,20758
+20760,76756
+20761,77216
+20762,77366
+20763,79691
+20764,58166
+20765,35922
+20766,35679
+20767,56200
+20768,34423
+20769,60617
+20770,40016
+20771,23780
+20772,19225
+20773,20769
+20774,22166
+20775,75604
+20776,66776
+20777,27737
+20778,56180
+20779,35922
+20780,35474
+20781,46708
+20782,48842
+20783,31058
+20784,34858
+20785,45813
+20786,40564
+20787,31853
+20788,43211
+20789,77641
+20790,79743
+20791,51640
+20792,42114
+20793,69452
+20794,39010
+20795,63314
+20796,59713
+20797,43400
+20798,25617
+20799,25256
+20800,69818
+20801,25624
+20802,71352
+20803,63104
+20804,21572
+20805,72381,22305
+20806,59549
+20807,12698,8182
+20808,46148
+20809,49333
+20810,46163
+20811,45152
+20812,81681
+20813,19299
+20814,19131
+20815,47863
+20816,34826
+20817,34827
+20818,34822
+20819,33928
+20820,38770
+20821,57396
+20822,72983
+20823,72983
+20824,30891
+20825,26014
+20826,54784
+20827,56348
+20828,20670
+20829,61246
+20830,65478
+20831,39676
+20832,58161
+20833,21959
+20834,65133
+20835,65627
+20836,20835
+20837,71469
+20838,68374
+20839,28619
+20840,54953
+20841,35722
+20842,61260
+20843,81907
+20844,47948
+20845,12327
+20846,75912
+20847,37430
+20848,65767
+20849,21276
+20850,67459
+20851,48474
+20852,55151
+20853,81906
+20854,72248
+20855,54831
+20856,62144
+20857,18740
+20858,60216
+20859,48980
+20860,47552
+20861,57385
+20862,39970
+20863,55294
+20864,24749
+20865,18740
+20866,37044
+20867,20866
+20868,70091
+20869,35425
+20870,61174
+20871,79743
+20872,36909
+20873,58162
+20874,59549
+20875,47283
+20876,20875
+20877,80395
+20878,65906
+20879,61422
+20880,64949
+20881,72983
+20882,37478
+20883,47127
+20884,20899
+20885,21140
+20886,56532
+20887,20897
+20888,20897
+20889,19654
+20890,57987
+20891,46708,35611
+20892,46092
+20893,20895
+20894,36602
+20895,55686
+20896,28153
+20897,78432
+20898,72780
+20899,37163
+20900,28057
+20901,65483
+20902,75764
+20903,59565
+20904,21447
+20905,25518
+20906,44407
+20907,37405
+20908,69130
+20909,75867
+20910,74891
+20911,27538
+20912,28333
+20913,28339
+20914,39094
+20915,41002
+20916,49388
+20917,53890
+20918,37832
+20919,69264
+20920,74976
+20921,75758
+20922,79282
+20923,62147
+20924,20386
+20925,66953
+20926,71595
+20927,65956
+20928,42118
+20929,65956
+20930,42114
+20931,49993
+20932,37191
+20933,30393
+20934,20431
+20935,30216
+20936,30021
+20937,61574
+20938,35534
+20939,82167
+20940,59331
+20941,38576
+20942,62884
+20943,54727
+20944,21119
+20945,81703
+20946,71325
+20947,71324
+20948,18869
+20949,53621
+20950,65930
+20951,27209
+20952,75020
+20953,46818
+20954,60216
+20955,60216
+20956,65766
+20957,62766
+20958,45280
+20959,64431
+20960,36602
+20961,50602
+20962,63427
+20963,53717
+20964,50602
+20965,69754
+20966,66060
+20967,63187
+20968,27086
+20969,44628
+20970,40150
+20971,75606
+20972,53717
+20973,53717
+20974,44567
+20975,44768
+20976,21939
+20977,20973
+20978,63434
+20979,35838
+20980,48227
+20981,53717
+20982,53717
+20983,38776
+20984,38777
+20985,46528
+20986,79720
+20987,25763
+20988,39217
+20989,31196
+20990,53717
+20991,53694
+20992,53717
+20993,22051
+20994,53717
+20995,53717
+20996,53717
+20997,53717
+20998,65795
+20999,53717
+21000,35922
+21001,24111
+21002,52634
+21003,19654
+21004,58783
+21005,51642
+21006,19654
+21007,74081
+21008,70516
+21009,20508
+21010,30020
+21011,63410
+21012,53717
+21013,53717
+21014,31058
+21015,37527
+21016,57206
+21017,29917
+21018,21049
+21019,53519
+21020,44768
+21021,21025
+21022,54082
+21023,21015
+21024,20977
+21025,33684
+21026,20977,21025
+21027,21015
+21028,57154
+21029,61646
+21030,66377
+21031,35474
+21032,76135
+21033,31707
+21034,48227
+21035,37527
+21036,21237
+21037,57332
+21038,35611
+21039,76877
+21040,65765
+21041,65765
+21042,55734
+21043,66377
+21044,57984
+21045,57987
+21046,65579
+21047,62015
+21048,57154
+21049,53717
+21050,51881
+21051,53714
+21052,53717
+21053,37527
+21054,38807
+21055,21057
+21056,46149
+21057,21745
+21058,56179
+21059,58162
+21060,53717
+21061,69269
+21062,60243
+21063,53717
+21064,72877
+21065,36602
+21066,21015
+21067,57987
+21068,66377
+21069,20978
+21070,62791
+21071,62791
+21072,50872
+21073,50602
+21074,53717
+21075,65929
+21076,49797
+21077,21069
+21078,53717
+21079,46561
+21080,56811
+21081,81578
+21082,69027
+21083,28091
+21084,47487
+21085,58200
+21086,24781
+21087,37686
+21088,63584
+21089,22107
+21090,53916
+21091,47298
+21092,56536
+21093,21087
+21094,75197
+21095,22149
+21096,75843
+21097,21703
+21098,20654
+21099,21097
+21100,58200
+21101,61468
+21102,73147,79102
+21103,69058
+21104,48126
+21105,81142
+21106,42151
+21107,72733
+21108,66696
+21109,44124
+21110,21544
+21111,71320
+21112,46827
+21113,26298
+21114,63422
+21115,39578
+21116,59462
+21117,54562
+21118,67970
+21119,62884
+21120,81116
+21121,58412
+21122,28095
+21123,19936
+21124,46267
+21125,65641
+21126,57897
+21127,47641
+21128,40753
+21129,28153
+21130,57742
+21131,59549
+21132,79743
+21133,79753
+21134,66785
+21135,25673
+21136,45029
+21137,21156
+21138,35017
+21139,57742
+21140,61256
+21141,50459
+21142,72055
+21143,53548
+21144,48474
+21145,69444
+21146,73272
+21147,78455
+21148,69604
+21149,61161
+21150,67476
+21151,36917
+21152,20635
+21153,47442
+21154,31054
+21155,74939
+21156,28153
+21157,26899
+21158,18679
+21159,74714
+21160,73837
+21161,24306
+21162,63434
+21163,21174
+21164,21156
+21165,60385
+21166,21156
+21167,70482
+21168,76138
+21169,19497
+21170,19091
+21171,34295
+21172,38606
+21173,61246
+21174,21810
+21175,55247
+21176,39396
+21177,66377
+21178,65754
+21179,61261
+21180,63064
+21181,56296
+21182,21156
+21183,63422
+21184,66377
+21185,65679
+21186,18659
+21187,23791
+21188,62145
+21189,34405
+21190,66377
+21191,63809
+21192,80618
+21193,21802
+21194,38793
+21195,41632
+21196,43966
+21197,57573
+21198,30896
+21199,25115
+21200,38218
+21201,29928
+21202,28414
+21203,48030
+21204,58009
+21205,57435
+21206,21213
+21207,21215
+21208,47494
+21209,72271
+21210,63061
+21211,22162
+21212,25016
+21213,45096
+21214,65929
+21215,21631
+21216,22125
+21217,62778
+21218,64142
+21219,71310
+21220,31191
+21221,51729
+21222,32527
+21223,43105
+21224,56009
+21225,59306
+21226,18728
+21227,48126
+21228,21225
+21229,21703
+21230,70569
+21231,79282
+21232,78191
+21233,19286
+21234,63064
+21235,23258
+21236,32759
+21237,32503
+21238,58818
+21239,21328
+21240,37179,61927
+21241,21260
+21242,21140
+21243,24726
+21244,31495
+21245,36766
+21246,41648
+21247,43136
+21248,49179
+21249,41738
+21250,41736
+21251,54655
+21252,45813
+21253,77952
+21254,44460
+21255,60733
+21256,74887
+21257,67377
+21258,75411
+21259,75412
+21260,41743
+21261,78269
+21262,61241
+21263,45021
+21264,25721
+21265,35557
+21266,26884
+21267,21275
+21268,41754
+21269,36798
+21270,34924
+21271,65737
+21272,60216
+21273,65976
+21274,19200
+21275,63187
+21276,53056
+21277,37237
+21278,78966
+21279,71752
+21280,41221
+21281,34924
+21282,53481
+21283,63587
+21284,69400
+21285,57573
+21286,60216
+21287,57461
+21288,35676
+21289,34148
+21290,41914
+21291,25302
+21292,54904
+21293,44474
+21294,38391
+21295,29652
+21296,30657
+21297,32965
+21298,38513
+21299,76085
+21300,47871
+21301,78594
+21302,60216
+21303,60216
+21304,39502
+21305,27397
+21306,38777
+21307,57113
+21308,62145
+21309,21329
+21310,70375
+21311,43698
+21312,55494
+21313,76691
+21314,55347
+21315,31163
+21316,19805
+21317,77688
+21318,41610
+21319,21327
+21320,21328
+21321,74233
+21322,63357
+21323,55026
+21324,19129
+21325,24145
+21326,19126
+21327,51391
+21328,54044
+21329,18919
+21330,22268
+21331,68342
+21332,79424
+21333,70375
+21334,49296
+21335,25673
+21336,37179
+21337,41743
+21338,41731
+21339,67957
+21340,70515
+21341,59610
+21342,63426
+21343,31991
+21344,65120
+21345,18721
+21346,21321
+21347,35678
+21348,19069
+21349,51665
+21350,33318
+21351,25844
+21352,77509,23949
+21353,70629
+21354,70395
+21355,25017
+21356,79793,75292
+21357,61246
+21358,24306
+21359,39676
+21360,61159
+21361,79211
+21362,79432
+21363,38411
+21364,37922
+21365,51665
+21366,31281
+21367,51649
+21368,71557
+21369,43107
+21370,22824
+21371,34199
+21372,64142
+21373,21718
+21374,53897
+21375,82169
+21376,54562
+21377,81549
+21378,68702
+21379,82092
+21380,62390
+21381,31417
+21382,38513
+21383,38807
+21384,48793
+21385,26602
+21386,53686
+21387,49360
+21388,21731
+21389,77641
+21390,41444
+21391,29794
+21392,81549
+21393,39101
+21394,39381
+21395,81703
+21396,31417
+21397,79691
+21398,70033
+21399,33455
+21400,77820
+21401,77820
+21402,77820
+21403,37383
+21404,77820
+21405,77820
+21406,77820
+21407,59427
+21408,73838
+21409,63472
+21410,33455
+21411,70569
+21412,73838
+21413,38013
+21414,74488
+21415,55019
+21416,24306
+21417,24306
+21418,41264
+21419,60216
+21420,20655
+21421,24379
+21422,49483
+21423,29737
+21424,49483
+21425,35312
+21426,62922
+21427,36035
+21428,62914
+21429,61259
+21430,28091
+21431,65789,65740
+21432,20946
+21433,20947
+21434,38807
+21435,60032
+21436,72421
+21437,28164
+21438,20812
+21439,64757
+21440,50806
+21441,51523
+21442,28334
+21443,50296
+21444,32799
+21445,68280
+21446,37913
+21447,34199
+21448,21680
+21449,35480,40080
+21450,26298
+21451,63141
+21452,72667
+21453,54953
+21454,74487
+21455,34646
+21456,30393
+21457,30404
+21458,35048
+21459,62852
+21460,58546
+21461,81176
+21462,55314
+21463,21703
+21464,21703
+21465,79282
+21466,32087
+21467,36664
+21468,52189
+21469,36928
+21470,59450
+21471,37238
+21472,21480
+21473,77034
+21474,73838
+21475,65579
+21476,38910
+21477,25115
+21478,30186
+21479,21477
+21480,78703
+21481,59427
+21482,39517
+21483,74939
+21484,21475
+21485,61404
+21486,76104
+21487,68859
+21488,20763
+21489,48655
+21490,21477
+21491,31447
+21492,66509
+21493,58088
+21494,81142
+21495,76704
+21496,71398
+21497,35309
+21498,54562
+21499,29677
+21500,68859
+21501,68859
+21502,38366
+21503,28780,56806
+21504,19468
+21505,40589
+21506,79165
+21507,35532
+21508,74281
+21509,19309,79085
+21510,38563
+21511,65057
+21512,60400
+21513,31762
+21514,34771
+21515,71352
+21516,44081
+21517,54562
+21518,71595
+21519,3695
+21520,36673
+21521,21518
+21522,61260
+21523,65152
+21524,63064
+21525,50701
+21526,35858
+21527,63861
+21528,53600
+21529,53474
+21530,63197
+21531,53480
+21532,57187
+21533,25046
+21534,24442
+21535,51408
+21536,21583
+21537,63218
+21538,35737
+21539,60259
+21540,52035
+21541,38699
+21542,63426
+21543,40590
+21544,37163
+21545,80515
+21546,30391
+21547,30296
+21548,79749
+21549,22901
+21550,28438
+21551,51167
+21552,54408
+21553,66766
+21554,45679
+21555,31618
+21556,46268
+21557,9930
+21558,72676
+21559,25624
+21560,28148
+21561,54839
+21562,59668
+21563,22901
+21564,80143
+21565,54440
+21566,63424
+21567,63423
+21568,61341
+21569,21576
+21570,21576
+21571,28000
+21572,58226
+21573,21576
+21574,68064
+21575,68597
+21576,68990
+21577,70629
+21578,53059
+21579,37935
+21580,41348
+21581,66088
+21582,28091
+21583,66123
+21584,51440
+21585,34022
+21586,53060
+21587,64402
+21588,33102
+21589,54437
+21590,20883
+21591,54406
+21592,23221
+21593,28951
+21594,33553
+21595,37908
+21596,54425
+21597,54440
+21598,41881
+21599,56811
+21600,27997
+21601,76705
+21602,45813
+21603,57640
+21604,77641
+21605,71023
+21606,76162
+21607,21959
+21608,47047
+21609,47047
+21610,60598
+21611,80001
+21612,28539
+21613,29187
+21614,21480
+21615,55859
+21616,51665
+21617,50875
+21618,44437
+21619,31042
+21620,73835
+21621,55767
+21622,21618
+21623,35664
+21624,35391
+21625,29928
+21626,47898
+21627,34085
+21628,47744
+21629,18740
+21630,66154
+21631,19200
+21632,77585
+21633,18969
+21634,42336
+21635,61655
+21636,80618
+21637,51658
+21638,62847
+21639,60216
+21640,63212
+21641,53171
+21642,21361
+21643,53275
+21644,21959
+21645,70033
+21646,70033
+21647,61651
+21648,81161
+21649,72913
+21650,53086
+21651,71039
+21652,81681
+21653,44604
+21654,81176
+21655,28894
+21656,21085
+21657,21545
+21658,54418
+21659,67675
+21660,28780
+21661,77855
+21662,19069
+21663,60284,36602
+21664,31058
+21665,54562
+21666,42246
+21667,26507
+21668,32929
+21669,32795
+21670,74417
+21671,32793
+21672,32506
+21673,30391
+21674,32964
+21675,77308
+21676,18869
+21677,72735
+21678,37191
+21679,38716
+21680,49797
+21681,46148
+21682,46901
+21683,68237,21770
+21684,59020
+21685,31493
+21686,73863
+21687,75548
+21688,70033
+21689,24807
+21690,53621
+21691,61285
+21692,24835
+21693,46059
+21694,59549
+21695,66873
+21696,21714
+21697,21703
+21698,68317
+21699,68317
+21700,21699
+21701,48126
+21702,76334
+21703,24843
+21704,21703
+21705,21703
+21706,80640
+21707,35586
+21708,58776
+21709,59555
+21710,48127
+21711,28260
+21712,21717
+21713,66873
+21714,66874
+21715,38920
+21716,59549
+21717,57934
+21718,48787
+21719,39294
+21720,42539
+21721,37858
+21722,57934
+21723,28164
+21724,28164
+21725,79259
+21726,79258
+21727,79259
+21728,34869
+21729,56915,60737
+21730,21745
+21731,68809
+21732,80145,21730
+21733,35987
+21734,31690
+21735,50875
+21736,70568
+21737,50173
+21738,63281
+21739,49296
+21740,31445
+21741,38880
+21742,30891
+21743,72057
+21744,75016
+21745,81004
+21746,51643
+21747,21671
+21748,47650
+21749,56243
+21750,48327
+21751,31120
+21752,47650
+21753,35018
+21754,50359
+21755,37656,25843
+21756,32578
+21757,78741
+21758,21597
+21759,21545
+21760,40150
+21761,56480
+21762,69661
+21763,69308
+21764,51238
+21765,32799
+21766,51955,21768
+21767,54869
+21768,73870
+21769,60076
+21770,55495
+21771,53021
+21772,48194
+21773,55996
+21774,21669
+21775,79738
+21776,72913
+21777,45813
+21778,27726
+21779,56180
+21780,62146
+21781,81100
+21782,20431
+21783,18667
+21784,61574
+21785,48111
+21786,36065
+21787,55497
+21788,51068
+21789,51473
+21790,21097
+21791,21703
+21792,30443
+21793,56822
+21794,28536
+21795,70914
+21796,35922
+21797,68960
+21798,78191
+21799,50459
+21800,59549
+21801,45813
+21802,41748
+21803,51216
+21804,21802
+21805,41877
+21806,72409
+21807,32757
+21808,65956
+21809,67837
+21810,65948
+21811,60617
+21812,66046
+21813,81482
+21814,77641
+21815,68869
+21816,65108
+21817,44083
+21818,32083
+21819,24188
+21820,73412,26299
+21821,66226
+21822,66226
+21823,65108
+21824,19233
+21825,40990
+21826,62810
+21827,30094
+21828,79653
+21829,21025
+21830,20355
+21831,79259
+21832,45813
+21833,50919
+21834,23642
+21835,45813
+21836,74795
+21837,20355
+21838,43913
+21839,28600
+21840,39528
+21841,64846
+21842,62021
+21843,17272
+21844,34924
+21845,57981
+21846,35534
+21847,20745
+21848,35158
+21849,47477
+21850,22109
+21851,35634
+21852,23012
+21853,23285
+21854,59615
+21855,54562
+21856,51395
+21857,60598
+21858,42406
+21859,45813
+21860,21272
+21861,31520
+21862,21738
+21863,20309
+21864,26066
+21865,63775
+21866,67631,20517
+21867,21866,62390
+21868,41023
+21869,38213
+21870,79940
+21871,11480
+21872,55668
+21873,45909
+21874,55662
+21875,23440
+21876,22111
+21877,21576
+21878,22317
+21879,74081
+21880,65910
+21881,75976
+21882,21295
+21883,20534
+21884,71969
+21885,63187
+21886,42351
+21887,81004
+21888,52497
+21889,44440
+21890,22209
+21891,63193
+21892,39122
+21893,65931
+21894,65931
+21895,19732
+21896,66114
+21897,30891
+21898,34166
+21899,62168
+21900,23775
+21901,60216
+21902,28615
+21903,55023
+21904,64142
+21905,62178
+21906,78755
+21907,34908
+21908,35236
+21909,65833
+21910,59376,65133
+21911,50875
+21912,78598
+21913,35771
+21914,36839
+21915,59376
+21916,65698
+21917,51562
+21918,34911
+21919,71321
+21920,58162
+21921,52957
+21922,81626
+21923,63157
+21924,74222
+21925,65636
+21926,81770
+21927,32527
+21928,27280
+21929,74036
+21930,59812
+21931,18964
+21932,18868
+21933,63157
+21934,62145
+21935,78684
+21936,65691
+21937,28790
+21938,58168
+21939,44437
+21940,71305
+21941,53867
+21942,32222
+21943,68289
+21944,66431
+21945,32493
+21946,30391
+21947,56009
+21948,19171
+21949,19131
+21950,47273
+21951,48445
+21952,72983
+21953,30689
+21954,28356
+21955,35425
+21956,30296
+21957,42069
+21958,28780,44933
+21959,40752
+21960,73837
+21961,19708
+21962,35096
+21963,35097
+21964,32718
+21965,28591
+21966,72890
+21967,56176
+21968,54636
+21969,23853
+21970,48122
+21971,25121
+21972,50649
+21973,66101
+21974,60216
+21975,20346
+21976,31245
+21977,45813
+21978,39578
+21979,41899
+21980,45813
+21981,70395
+21982,75436
+21983,31697
+21984,53717
+21985,56515
+21986,36041
+21987,21998
+21988,56245
+21989,56514
+21990,69432
+21991,81703
+21992,41130
+21993,63547
+21994,21998
+21995,77585
+21996,60611
+21997,75693
+21998,60612
+21999,67921
+22000,51523
+22001,21996
+22002,21998
+22003,81373
+22004,71949
+22005,73537
+22006,75764
+22007,57927
+22008,35194
+22009,18740
+22010,66377
+22011,59549
+22012,59549
+22013,9399
+22014,65109
+22015,18663
+22016,65914
+22017,65251
+22018,58166
+22019,56454
+22020,59549
+22021,48069
+22022,23972
+22023,41911
+22024,78523
+22025,56887
+22026,29969
+22027,51191
+22028,59549
+22029,19349
+22030,21699
+22031,56454
+22032,31647
+22033,45481
+22034,31646
+22035,39101
+22036,72421,42093
+22037,71352
+22038,63426,52906
+22039,77367
+22040,25121
+22041,37887
+22042,38955
+22043,28379
+22044,65478
+22045,30531
+22046,43225
+22047,53624
+22048,42246
+22049,65581
+22050,31245
+22051,80524
+22052,37406,22053
+22053,60603
+22054,42276
+22055,55720
+22056,31974
+22057,74082
+22058,53454
+22059,57148,25202
+22060,76680
+22061,53717
+22062,37884
+22063,53339
+22064,53354
+22065,57187
+22066,57144
+22067,22062
+22068,72038
+22069,68289
+22070,80150
+22071,68289
+22072,76146
+22073,20817
+22074,35879
+22075,35652
+22076,55760
+22077,33758
+22078,31245
+22079,34701
+22080,56454
+22081,51625
+22082,45826
+22083,18740
+22084,32132
+22085,39778,27519
+22086,69180
+22087,27524
+22088,27527
+22089,27524
+22090,45496
+22091,28473
+22092,32522
+22093,22091
+22094,48232
+22095,33150
+22096,74939
+22097,80497
+22098,20038,21063,61690,55875,20998
+22099,71997
+22100,25935
+22101,81770
+22102,19299
+22103,74490
+22104,30568
+22105,31444
+22106,19547
+22107,19580
+22108,34354
+22109,32975
+22110,78236
+22111,32926
+22112,57932
+22113,23764
+22114,80248
+22115,74011
+22116,81807
+22117,27135
+22118,18969
+22119,21633
+22120,38369
+22121,22120
+22122,19228
+22123,41562
+22124,30935
+22125,44440
+22126,66893
+22127,59333
+22128,21922
+22129,22160
+22130,39130
+22131,72825
+22132,32534
+22133,23258
+22134,74973
+22135,71889
+22136,31498
+22137,77374
+22138,22133
+22139,80505
+22140,80497
+22141,37405
+22142,76005
+22143,38563
+22144,31586
+22145,81436
+22146,80047
+22147,46888
+22148,38708
+22149,29928
+22150,58195
+22151,19544
+22152,30267
+22153,63007
+22154,50630
+22155,62145
+22156,76672
+22157,69977
+22158,41103
+22159,64142
+22160,39528
+22161,57177
+22162,23622
+22163,61649
+22164,18840
+22165,29652
+22166,29652
+22167,42504
+22168,34210
+22169,41600
+22170,71649
+22171,64831
+22172,66101
+22173,18740
+22174,41156
+22175,22174
+22176,25915
+22177,67612
+22178,61355
+22179,40240
+22180,19657
+22181,25169
+22182,25168
+22183,60016
+22184,41054
+22185,55624
+22186,42351
+22187,60011
+22188,31039
+22189,41562
+22190,22215
+22191,30926
+22192,20456
+22193,50363
+22194,37479,75018
+22195,27845
+22196,65925
+22197,58349
+22198,53624
+22199,53621
+22200,75337,71699
+22201,52633
+22202,75554
+22203,38601
+22204,61202
+22205,18988
+22206,75976
+22207,73863
+22208,18984
+22209,21474
+22210,19708
+22211,21135
+22212,21199
+22213,32222
+22214,28238
+22215,30882
+22216,44921
+22217,47500
+22218,53642
+22219,58298
+22220,60019
+22221,69146
+22222,57187
+22223,36482
+22224,54562
+22225,47868
+22226,72981
+22227,47871
+22228,63328
+22229,38793
+22230,68619
+22231,22230
+22232,59468
+22233,49861
+22234,74939
+22235,51318
+22236,64469
+22237,62361
+22238,27730
+22239,62361
+22240,62910
+22241,21703
+22242,79282
+22243,32718
+22244,58589
+22245,22053
+22246,22245
+22247,22245
+22248,51682,34987
+22249,57735
+22250,37855
+22251,39495
+22252,71524
+22253,73081
+22254,61190
+22255,68964
+22256,1152
+22257,46384
+22258,68793
+22259,47924
+22260,40012
+22261,79072
+22262,53180
+22263,32806
+22264,81781
+22265,71439
+22266,57991
+22267,43809
+22268,60216
+22269,38807
+22270,25302
+22271,31740
+22272,60177
+22273,22268
+22274,52920
+22275,73323
+22276,22268
+22277,48239
+22278,74973
+22279,26506
+22280,18941
+22281,71310
+22282,77287
+22283,31039
+22284,64425
+22285,20978
+22286,38885
+22287,24236
+22288,24237
+22289,27935
+22290,62902
+22291,79469
+22292,61789
+22293,61792
+22294,60216
+22295,69439
+22296,40815
+22297,58004
+22298,68971
+22299,77636
+22300,45570
+22301,43880
+22302,81789
+22303,70225
+22304,19926
+22305,35534
+22306,59549
+22307,47234
+22308,40195
+22309,52469
+22310,79323
+22311,26858
+22312,29129
+22313,33885
+22314,22308
+22315,78544
+22316,61054,22314
+22317,22314,52504
+22318,77492
+22319,31245
+22320,38218
+22321,46030
+22322,64949
+22323,53660
+22324,60216
+22325,37905
+22326,39122
+22327,19909
+22328,48030
+22329,48445
+22330,60236
+22331,65871
+22332,64403
+22333,79276
+22334,37908
+22335,75613
+22336,70395
+22337,42145
+22338,56492
+22339,56451
+22340,47924
+22341,47924
+22342,61246
+22343,34924
+22344,61317
+22345,38601
+22346,64542
+22347,64545
+22348,58162
+22349,25858
+22350,42481
+22351,42481
+22352,29263
+22353,38885
+22354,68979
+22355,23790
+22356,65816
+22357,60541
+22358,26318
+22359,71173
+22360,38216
+22361,38217
+22362,44474
+22363,19847
+22364,25154
+22365,75957
+22366,37905
+22367,57927
+22368,63775
+22369,74011
+22370,53870
+22371,79376
+22372,60630
+22373,80540
+22374,45688
+22375,70842
+22376,45096
+22377,51395
+22378,21770
+22379,69102
+22380,44157
+22381,55263
+22382,7658
+22383,22116
+22384,74067
+22385,21315
+22386,73650
+22387,64846
+22388,68065
+22389,73007
+22390,55023
+22391,56979
+22392,58127
+22393,22412
+22394,23775
+22395,31259
+22396,56348
+22397,62794
+22398,26298
+22399,48030
+22400,30391
+22401,21670
+22402,70629
+22403,22402
+22404,39485
+22405,19528
+22406,52859
+22407,10154
+22408,37179
+22409,41743
+22410,59488
+22411,69887
+22412,65682
+22413,75028
+22414,53354
+22415,21898
+22416,30891
+22417,28530
+22418,69173
+22419,21612
+22420,74903
+22421,43967
+22422,50008
+22423,31469
+22424,42092
+22425,18789
+22426,81475
+22427,78758
+22428,27687
+22429,48038
+22430,78786
+22431,77978
+22432,35433
+22433,45009
+22434,21361
+22435,23576
+22436,27239
+22437,26051
+22438,37169
+22439,45035
+22440,80576
+22441,70568
+22442,67053
+22443,70569
+22444,20698
+22445,61161
+22446,21703
+22447,52420
+22448,79282
+22449,60453
+22450,63348
+22451,72791
+22452,51468
+22453,53660
+22454,28379
+22455,69484
+22456,22458
+22457,44089
+22458,33986
+22459,53848
+22460,20328
+22461,56446
+22462,32144
+22463,36043
+22464,45813
+22465,65763
+22466,50969
+22467,51068
+22468,58158
+22469,66418
+22470,53717
+22471,31058
+22472,44439
+22473,20698
+22474,20973
+22475,36872
+22476,44439
+22477,56771
+22478,59549
+22479,20977
+22480,24897
+22481,21959
+22482,52787
+22483,79282
+22484,59549
+22485,54029
+22486,33184
+22487,50231
+22488,41165
+22489,26884
+22490,22489
+22491,39517
+22492,68869
+22493,57594
+22494,51572
+22495,43240
+22496,58287
+22497,31370
+22498,74826
+22499,30253
+22500,12335
+22501,52904
+22502,45430
+22503,39746
+22504,57585
+22505,82056
+22506,78598
+22507,28951
+22508,40752
+22509,44418
+22510,41917
+22511,45813
+22512,42461
+22513,60216
+22514,80761
+22515,60216
+22516,71996
+22517,49598
+22518,43935
+22519,57640
+22520,62390
+22521,69818
+22522,56871
+22523,56871
+22524,49598
+22525,49598
+22526,27562
+22527,69248
+22528,27506
+22529,79901
+22530,39312
+22531,79901
+22532,52904
+22533,18868
+22534,81462
+22535,72726
+22536,76662
+22537,53167
+22538,38475
+22539,20977
+22540,41055
+22541,29917
+22542,62142
+22543,74488
+22544,25115
+22545,62144
+22546,81578
+22547,25617
+22548,62534
+22549,28548
+22550,19144
+22551,18929
+22552,18928
+22553,38914
+22554,38699
+22555,41053
+22556,53516
+22557,34675
+22558,62054
+22559,66953
+22560,76989
+22561,19051
+22562,22901
+22563,66436
+22564,68692
+22565,50910
+22566,19144
+22567,24879
+22568,74488
+22569,42097
+22570,31444
+22571,41282
+22572,68176
+22573,41249
+22574,38835
+22575,40147
+22576,54705
+22577,40747
+22578,25022
+22579,25018
+22580,18964
+22581,48220
+22582,48156
+22583,56836
+22584,68431
+22585,79572
+22586,22583
+22587,62973
+22588,22583
+22589,62747
+22590,66260
+22591,36527
+22592,24874
+22593,62434
+22594,24718
+22595,50652,73670
+22596,64948
+22597,51360
+22598,40230
+22599,30391
+22600,22684
+22601,46068
+22602,75860
+22603,21568
+22604,39101
+22605,19492
+22606,45051
+22607,57980
+22608,68416
+22609,48107
+22610,68692
+22611,53676
+22612,37998
+22613,39152
+22614,31746
+22615,49683
+22616,72193
+22617,72776
+22618,73031
+22619,69408
+22620,39638
+22621,62533
+22622,74821
+22623,74811
+22624,45730
+22625,74867
+22626,19000
+22627,36793
+22628,31109
+22629,31124
+22630,25113
+22631,65579
+22632,32455
+22633,81874
+22634,33515
+22635,67822
+22636,35557
+22637,66613
+22638,22634
+22639,59549
+22640,54253
+22641,40021
+22642,39294
+22643,42539
+22644,58118
+22645,72003
+22646,77216
+22647,28774
+22648,60786
+22649,24249
+22650,53716
+22651,52469
+22652,79691
+22653,58162
+22654,19654
+22655,22640
+22656,64142
+22657,24778
+22658,28702
+22659,34085
+22660,22665
+22661,38569
+22662,60216
+22663,52280
+22664,47665
+22665,60216
+22666,20670
+22667,80524
+22668,54562
+22669,37623
+22670,39528
+22671,55815
+22672,45107
+22673,23005
+22674,50297
+22675,32530
+22676,32520
+22677,72435
+22678,64446
+22679,48494
+22680,77581
+22681,61335
+22682,59970
+22683,47908
+22684,31616
+22685,31618
+22686,31616
+22687,78756
+22688,22699
+22689,46353
+22690,50005
+22691,63753
+22692,20272
+22693,55756
+22694,75063
+22695,77915
+22696,26409
+22697,81462
+22698,53467
+22699,27781
+22700,27408
+22701,21474
+22702,22128
+22703,52497
+22704,64448
+22705,60992
+22706,6278
+22707,16726
+22708,50889
+22709,65172
+22710,19655
+22711,32522
+22712,64720
+22713,57573
+22714,62145
+22715,49483
+22716,34434
+22717,34431
+22718,58916
+22719,28952
+22720,75775
+22721,34924
+22722,69012
+22723,27876
+22724,45107
+22725,12380
+22726,39049
+22727,34808
+22728,41005
+22729,62294
+22730,53959
+22731,70629
+22732,20070
+22733,81914
+22734,81647,69860
+22735,32792
+22736,31858
+22737,24373
+22738,50803
+22739,59497
+22740,27276
+22741,28564
+22742,29194
+22743,38209
+22744,65788
+22745,38188
+22746,68061
+22747,73838
+22748,63048
+22749,44696
+22750,18987
+22751,38209
+22752,22744
+22753,65201
+22754,80753
+22755,26247
+22756,35130
+22757,19143
+22758,48126
+22759,48126
+22760,72228
+22761,77641
+22762,44609
+22763,12756
+22764,49962
+22765,73838
+22766,73838
+22767,46581
+22768,33638
+22769,36932
+22770,27239
+22771,56941
+22772,60216
+22773,44821
+22774,23855
+22775,26416
+22776,80720
+22777,81349
+22778,61078
+22779,21476
+22780,60216
+22781,48697
+22782,51467
+22783,33787
+22784,73837
+22785,61415
+22786,42097
+22787,61078
+22788,19666
+22789,33788
+22790,72119
+22791,49298
+22792,74990
+22793,81462
+22794,49263
+22795,44963
+22796,69458
+22797,23589
+22798,52811
+22799,41055
+22800,27741
+22801,61404
+22802,39847
+22803,43828
+22804,22032
+22805,52957
+22806,79097
+22807,71595
+22808,61621
+22809,61621
+22810,44049
+22811,22164
+22812,53454
+22813,37405
+22814,66065
+22815,65641
+22816,41245
+22817,22821
+22818,55734
+22819,72733
+22820,30939
+22821,33797
+22822,33797
+22823,33797
+22824,62146
+22825,70675
+22826,37998
+22827,37997
+22828,70526
+22829,55503
+22830,47402
+22831,54757
+22832,60602
+22833,36884
+22834,77377
+22835,43997
+22836,53701
+22837,61415
+22838,51354
+22839,25202
+22840,81161
+22841,67565
+22842,71280
+22843,72253
+22844,40619
+22845,70629
+22846,35926
+22847,25574
+22848,58906
+22849,72712
+22850,22032,61395
+22851,59850
+22852,66953
+22853,71311
+22854,54774
+22855,63259
+22856,22865
+22857,22856
+22858,47786
+22859,54378
+22860,69818
+22861,56941
+22862,20690
+22863,81482
+22864,64589
+22865,57689
+22866,72111
+22867,57640
+22868,43801
+22869,70320
+22870,76905
+22871,43801
+22872,62021
+22873,81176
+22874,19319
+22875,45813
+22876,74488
+22877,81482
+22878,43907
+22879,47415
+22880,39676
+22881,64586
+22882,79259
+22883,11177
+22884,14521
+22885,63206
+22886,37179
+22887,45813
+22888,27592
+22889,64293
+22890,38385
+22891,59452
+22892,59801
+22893,46435
+22894,32456
+22895,72342
+22896,55761
+22897,64745
+22898,23854
+22899,73762,52097
+22900,66154
+22901,73762
+22902,73776
+22903,19421
+22904,73762
+22905,60771
+22906,65869
+22907,36451
+22908,45034
+22909,25574
+22910,42395
+22911,50048
+22912,29526
+22913,57280
+22914,67786
+22915,73270
+22916,33858
+22917,26368
+22918,53283
+22919,64812
+22920,76229
+22921,61541
+22922,31279
+22923,31279
+22924,27743
+22925,31175
+22926,62432
+22927,55768
+22928,61355
+22929,79820
+22930,79973
+22931,31477
+22932,48162
+22933,19580
+22934,23945
+22935,61705
+22936,38725
+22937,56832
+22938,44816
+22939,77081
+22940,62072
+22941,56832
+22942,19421
+22943,38648
+22944,65682
+22945,73752
+22946,66018
+22947,41870
+22948,70914
+22949,66507
+22950,21622
+22951,40625
+22952,34646
+22953,70914
+22954,39813
+22955,18979
+22956,32817
+22957,28656
+22958,29911
+22959,30684
+22960,36317
+22961,38601
+22962,38603
+22963,39149
+22964,44049
+22965,80253
+22966,46255
+22967,50878
+22968,57190
+22969,51836
+22970,35399
+22971,53290
+22972,35506
+22973,66763
+22974,22977
+22975,23313
+22976,72984
+22977,81411
+22978,65201
+22979,40065
+22980,55030
+22981,40052
+22982,40053
+22983,42102
+22984,48030
+22985,41870
+22986,39154
+22987,39149
+22988,63061
+22989,48364
+22990,70033
+22991,67001
+22992,40411
+22993,63208
+22994,23182
+22995,40534
+22996,20823
+22997,35294
+22998,53593
+22999,23869
+23000,72271
+23001,36049
+23002,81750
+23003,25598
+23004,58589
+23005,65875
+23006,49079
+23007,39925
+23008,28739
+23009,22112
+23010,20690
+23011,25770
+23012,67459
+23013,23285
+23014,62767
+23015,66507,23181
+23016,74488
+23017,45557
+23018,64628
+23019,32384
+23020,57418
+23021,47655
+23022,24391
+23023,28654
+23024,30186
+23025,38600
+23026,36499
+23027,51473,55760
+23028,52605
+23029,27975
+23030,48240
+23031,47592
+23032,53176,58131
+23033,71269
+23034,61651
+23035,61651
+23036,39777
+23037,35095
+23038,34357
+23039,70033
+23040,35557
+23041,31862
+23042,64435
+23043,61063
+23044,67957
+23045,35557
+23046,35557
+23047,66761
+23048,81349
+23049,75867
+23050,80614
+23051,44817
+23052,79749
+23053,28438
+23054,70033
+23055,69860
+23056,64225
+23057,60661
+23058,55391
+23059,44630
+23060,77185
+23061,23062
+23062,68853
+23063,19069
+23064,76347
+23065,71595
+23066,61622
+23067,27295
+23068,47438
+23069,25256
+23070,49648
+23071,79471
+23072,25057
+23073,56000
+23074,61190
+23075,63850
+23076,19737
+23077,69873
+23078,48055
+23079,56362
+23080,56361
+23081,51124
+23082,25046
+23083,61732
+23084,69408
+23085,45813
+23086,25729
+23087,70428
+23088,70426
+23089,54082
+23090,23202
+23091,37875
+23092,23202
+23093,23202
+23094,74250
+23095,32580
+23096,56832
+23097,33184
+23098,67574
+23099,63558
+23100,23748
+23101,63256
+23102,41657
+23103,28323
+23104,43893
+23105,45118
+23106,23103
+23107,26102
+23108,43892
+23109,23193
+23110,25770
+23111,39370
+23112,21480
+23113,33788
+23114,70854
+23115,58579
+23116,72153
+23117,74659
+23118,33178
+23119,43756
+23120,21668
+23121,74131
+23122,40473
+23123,70557
+23124,31618
+23125,19231
+23126,60847
+23127,81873
+23128,54485
+23129,23130
+23130,53624
+23131,22054
+23132,9930
+23133,59811
+23134,26602
+23135,72680
+23136,9280
+23137,21525
+23138,56802
+23139,62145
+23140,76779
+23141,64757
+23142,49945
+23143,38381
+23144,36035
+23145,21771
+23146,69118
+23147,67970
+23148,27688
+23149,54432
+23150,41014
+23151,72248
+23152,40150
+23153,50359
+23154,19872
+23155,49124
+23156,40316
+23157,81807
+23158,25886
+23159,41469
+23160,32926
+23161,58579
+23162,31618
+23163,17469,2492
+23164,79469
+23165,33614
+23166,78096
+23167,26827
+23168,49997
+23169,55758
+23170,66887
+23171,79234
+23172,26668
+23173,23190
+23174,50438
+23175,81159
+23176,27595
+23177,73184
+23178,45813
+23179,60870
+23180,23182
+23181,53658
+23182,57418
+23183,57408
+23184,48957
+23185,31974
+23186,37310
+23187,64196
+23188,78899
+23189,50638
+23190,66953
+23191,31618
+23192,45021
+23193,37712
+23194,38634
+23195,77308
+23196,59713
+23197,40752
+23198,28248
+23199,62767
+23200,44768,39674
+23201,57187
+23202,23089
+23203,65748
+23204,25120
+23205,56165
+23206,42145
+23207,54060
+23208,54061
+23209,61161
+23210,79282
+23211,79848
+23212,73838
+23213,40461
+23214,59305
+23215,25454
+23216,48201
+23217,25457
+23218,37430
+23219,31058
+23220,23240
+23221,54418
+23222,51894
+23223,74488
+23224,57187
+23225,46170
+23226,54082
+23227,18969
+23228,57160
+23229,48536
+23230,22850
+23231,22786,23240
+23232,22802
+23233,23368,23240
+23234,27276
+23235,77312
+23236,29805
+23237,23247
+23238,30009
+23239,77277
+23240,72435
+23241,23240
+23242,50742
+23243,52957
+23244,68352
+23245,68677
+23246,73805
+23247,75566
+23248,54953
+23249,72839
+23250,51467
+23251,74487
+23252,40702
+23253,78819
+23254,35944
+23255,59378
+23256,30697
+23257,21950
+23258,63063
+23259,36872
+23260,60769
+23261,69754
+23262,70719
+23263,54438
+23264,39109
+23265,41748
+23266,51216
+23267,41877
+23268,72409
+23269,65956
+23270,45813
+23271,45812
+23272,55014
+23273,55420
+23274,45813
+23275,21703
+23276,53848
+23277,67277
+23278,79282
+23279,29314
+23280,14501
+23281,55952
+23282,27215
+23283,47455
+23284,56163
+23285,79469
+23286,31618
+23287,45679
+23288,59307
+23289,21950
+23290,79282
+23291,43544,23307
+23292,31618
+23293,68355
+23294,31616
+23295,39676
+23296,74872
+23297,28221
+23298,46077
+23299,28864
+23300,37079
+23301,39049
+23302,22786,23307
+23303,32530
+23304,29805
+23305,30009
+23306,32520
+23307,72435
+23308,50742
+23309,61379
+23310,22032
+23311,68352
+23312,68677
+23313,69941
+23314,75566
+23315,77287
+23316,52773
+23317,52523
+23318,51100
+23319,72765
+23320,61075
+23321,55758
+23322,60032
+23323,59309
+23324,70428
+23325,70426
+23326,29607
+23327,29724
+23328,36619
+23329,25536,23321
+23330,44593,23321
+23331,25729,23321
+23332,63103
+23333,46760
+23334,29607
+23335,39767
+23336,22514
+23337,22510
+23338,55768
+23339,23324
+23340,36166
+23341,55768
+23342,81482
+23343,56166
+23344,57585
+23345,79173
+23346,80583
+23347,46191
+23348,20690
+23349,24915
+23350,59169
+23351,39513
+23352,34166
+23353,34357
+23354,73018
+23355,69408
+23356,66758
+23357,31861
+23358,69395
+23359,49113,62981
+23360,33283
+23361,77108
+23362,54930
+23363,34291
+23364,41279
+23365,73815
+23366,54562
+23367,30099
+23368,29968
+23369,78236
+23370,61159
+23371,52811,21922
+23372,48240
+23373,30391
+23374,30391
+23375,50438
+23376,38670
+23377,72248
+23378,51658
+23379,79469
+23380,80217
+23381,72895
+23382,80760
+23383,51535
+23384,23383
+23385,76877
+23386,76877
+23387,77180,23383
+23388,80257
+23389,74814
+23390,60216
+23391,46781
+23392,26298
+23393,35838
+23394,27276
+23395,47442
+23396,38883
+23397,66769
+23398,66953
+23399,29698
+23400,40403
+23401,79469
+23402,43285
+23403,53624
+23404,53621
+23405,74018
+23406,74018
+23407,39049
+23408,39049
+23409,22128
+23410,72716
+23411,66859
+23412,72437
+23413,66859
+23414,60076
+23415,19584
+23416,21597
+23417,50438
+23418,73761
+23419,31200
+23420,22850
+23421,25572
+23422,39928
+23423,64700,37904
+23424,21758
+23425,75566
+23426,30391
+23427,21876
+23428,37405
+23429,72818
+23430,79790
+23431,22122
+23432,73896
+23433,63334
+23434,22387
+23435,23240
+23436,23238
+23437,43458,23240
+23438,45680,23240
+23439,66889
+23440,54404
+23441,81065
+23442,26007
+23443,33158
+23444,33754
+23445,54439
+23446,62258
+23447,40411
+23448,40590
+23449,21597
+23450,51466
+23451,31645
+23452,61203
+23453,44658
+23454,22675
+23455,77277
+23456,51466
+23457,64720
+23458,80185
+23459,46958
+23460,74835
+23461,68184
+23462,48162
+23463,54562
+23464,30300
+23465,57380
+23466,80600
+23467,33184
+23468,30954
+23469,30954
+23470,46599
+23471,25113
+23472,45812
+23473,80466
+23474,19596
+23475,68077
+23476,68078
+23477,81176
+23478,81227
+23479,80540
+23480,57308
+23481,77641
+23482,80466
+23483,80460
+23484,49944
+23485,50215
+23486,53203
+23487,69860
+23488,67614
+23489,50572
+23490,44614
+23491,31040
+23492,43107
+23493,22785
+23494,38266
+23495,20441
+23496,44013
+23497,74067
+23498,46782
+23499,67791
+23500,81125
+23501,61508
+23502,81129
+23503,67791
+23504,73612
+23505,77180
+23506,27405
+23507,79052
+23508,50296
+23509,25928
+23510,18969
+23511,29928
+23512,79749
+23513,77185
+23514,49222
+23515,56290
+23516,79338
+23517,54953
+23518,34199
+23519,61209
+23520,57573
+23521,73739
+23522,62514
+23523,46760
+23524,46958
+23525,76735
+23526,55471
+23527,55471
+23528,57035
+23529,45346
+23530,71398
+23531,77004
+23532,49134
+23533,33353
+23534,81062
+23535,70110
+23536,73830,60739
+23537,51319
+23538,37448
+23539,70111
+23540,22746
+23541,68869
+23542,50919
+23543,50918
+23544,70033
+23545,18984,26470
+23546,33392
+23547,35322
+23548,72557
+23549,77118
+23550,77641
+23551,70033
+23552,68871
+23553,22684
+23554,61078
+23555,35294
+23556,70686
+23557,72791
+23558,48803
+23559,27622
+23560,39676
+23561,18891
+23562,34771
+23563,29671
+23564,74778
+23565,33242,23559
+23566,19634
+23567,82070
+23568,82070
+23569,81752
+23570,75196
+23571,53183
+23572,68489
+23573,70033
+23574,46285
+23575,81176
+23576,44794
+23577,60216
+23578,44792
+23579,39089
+23580,51216
+23581,81681
+23582,48870
+23583,36951
+23584,12340
+23585,80748
+23586,48870
+23587,54047
+23588,65689
+23589,74488
+23590,53022
+23591,35389
+23592,25727
+23593,65662
+23594,80047,74488
+23595,67957
+23596,41899
+23597,45260
+23598,22116
+23599,81607
+23600,56110
+23601,52830
+23602,58282
+23603,71686
+23604,58675
+23605,73803
+23606,67570
+23607,59542
+23608,82066
+23609,81626
+23610,47655
+23611,19200
+23612,67758
+23613,32150
+23614,39928
+23615,81544
+23616,56896
+23617,75754
+23618,43166
+23619,33782
+23620,32691
+23621,28539
+23622,21218
+23623,38690
+23624,70033
+23625,19492
+23626,70781
+23627,19421
+23628,23621
+23629,23579
+23630,21568
+23631,66862
+23632,41899
+23633,41902
+23634,80063
+23635,80348
+23636,43168
+23637,51475
+23638,34203
+23639,73598
+23640,74537
+23641,41339
+23642,61487
+23643,23666
+23644,56163
+23645,38035
+23646,25035
+23647,31343
+23648,21475
+23649,49079
+23650,51535
+23651,60836
+23652,45730
+23653,29917
+23654,42194
+23655,53454
+23656,21930
+23657,60216
+23658,52352
+23659,79469
+23660,74488
+23661,66124
+23662,66786
+23663,23653
+23664,66953
+23665,74117
+23666,41917
+23667,74234
+23668,70104
+23669,53022
+23670,21112
+23671,78455
+23672,23653
+23673,72518
+23674,41917
+23675,45813
+23676,46767
+23677,61046
+23678,71314
+23679,47127
+23680,55014
+23681,55014
+23682,29742
+23683,31960
+23684,40863
+23685,64015
+23686,58088
+23687,73276
+23688,31047
+23689,77641
+23690,81482
+23691,39676
+23692,37181
+23693,28028
+23694,53628
+23695,35557
+23696,35557
+23697,35557
+23698,26103
+23699,26520
+23700,40998
+23701,43798
+23702,49194
+23703,33512
+23704,33512
+23705,66756
+23706,73207
+23707,75235
+23708,48187
+23709,75801
+23710,76946
+23711,60534
+23712,73044
+23713,23765
+23714,61902
+23715,45813
+23716,24850
+23717,76915
+23718,81482
+23719,27894
+23720,70276
+23721,44816
+23722,81647
+23723,56460
+23724,65108
+23725,39375
+23726,33318
+23727,59542
+23728,71686
+23729,37478
+23730,25872
+23731,23164
+23732,25434
+23733,27114
+23734,36499
+23735,75465
+23736,43364
+23737,44913
+23738,36514
+23739,55552
+23740,80460,20758
+23741,66977
+23742,79258
+23743,27997
+23744,24726
+23745,44232
+23746,27455
+23747,74192
+23748,48318
+23749,23742
+23750,35414
+23751,59602
+23752,73237
+23753,27506
+23754,61767
+23755,23751
+23756,76514
+23757,23751
+23758,71508
+23759,47955
+23760,45096
+23761,59308
+23762,61655
+23763,61646
+23764,28539
+23765,40752
+23766,37992
+23767,33793
+23768,22853
+23769,50181,11480
+23770,67589
+23771,73037
+23772,19202
+23773,19228
+23774,19228
+23775,63602
+23776,38801
+23777,63586
+23778,30621
+23779,51327
+23780,72959
+23781,70427
+23782,48474
+23783,58383
+23784,23021
+23785,65509,38887
+23786,38887
+23787,57678
+23788,41305
+23789,66953
+23790,31638
+23791,74500
+23792,65767
+23793,23258
+23794,35635
+23795,57897
+23796,19108,70221
+23797,33455
+23798,76672
+23799,71686
+23800,24339
+23801,59451
+23802,67120
+23803,51969
+23804,19106
+23805,74462
+23806,69681
+23807,40701
+23808,41343
+23809,41348
+23810,41972
+23811,38256
+23812,63424
+23813,26072
+23814,74772
+23815,63953
+23816,55768
+23817,74132
+23818,66619
+23819,55736
+23820,68692
+23821,75860
+23822,77185
+23823,22098
+23824,45813
+23825,20286
+23826,49376
+23827,32310
+23828,77985
+23829,22128
+23830,43313
+23831,51701
+23832,19690
+23833,46708
+23834,33186
+23835,24880
+23836,63722
+23837,50701
+23838,80712
+23839,40752
+23840,26320
+23841,48337
+23842,78584
+23843,19349
+23844,72733
+23845,33797
+23846,35822
+23847,49312
+23848,22901
+23849,39423
+23850,58472
+23851,45097
+23852,52211
+23853,65581
+23854,52097
+23855,18940
+23856,20385
+23857,26223
+23858,52773
+23859,49842
+23860,68551
+23861,39049
+23862,46059
+23863,73923
+23864,28090
+23865,42380
+23866,55394
+23867,73985
+23868,68691
+23869,68691
+23870,29587
+23871,27970
+23872,50545
+23873,63797
+23874,80619
+23875,74089
+23876,80174
+23877,72839
+23878,65481
+23879,58131
+23880,33455
+23881,68808
+23882,40600
+23883,76981
+23884,28538
+23885,55494
+23886,46988
+23887,51640
+23888,62513
+23889,31729
+23890,69028
+23891,43744
+23892,23891
+23893,72289
+23894,23902
+23895,43724
+23896,65133
+23897,59645
+23898,60074
+23899,43723
+23900,23898
+23901,67760
+23902,52189
+23903,49802
+23904,49803
+23905,47179
+23906,78160
+23907,43724
+23908,23888
+23909,22384
+23910,22384
+23911,44032
+23912,44013
+23913,37871
+23914,47814
+23915,45067
+23916,58166
+23917,24234
+23918,29677
+23919,81482
+23920,21609
+23921,23920
+23922,67675
+23923,23922
+23924,51881
+23925,54642,55688
+23926,31058
+23927,27488
+23928,44614
+23929,44439
+23930,60192,24695
+23931,44439
+23932,43247,48219
+23933,65075
+23934,60216
+23935,27276
+23936,58041
+23937,54655
+23938,45813
+23939,22406
+23940,73917
+23941,54082
+23942,51451
+23943,50823
+23944,33237
+23945,41729
+23946,37179
+23947,15038
+23948,23643
+23949,54562
+23950,54082
+23951,26072
+23952,60320
+23953,37878
+23954,26092
+23955,22122
+23956,60216
+23957,67275
+23958,41607
+23959,44346
+23960,77294
+23961,48232
+23962,69439
+23963,25302
+23964,43247
+23965,43335
+23966,42078
+23967,51068
+23968,63496,27640
+23969,49662,47109
+23970,48545
+23971,56045,21034
+23972,24799
+23973,39027
+23974,28164
+23975,34117
+23976,37853
+23977,48875
+23978,59338
+23979,32169,48852
+23980,65119
+23981,25681
+23982,71439
+23983,77726
+23984,20038
+23985,18910
+23986,78020
+23987,50717
+23988,37183
+23989,21482
+23990,51068
+23991,61145
+23992,77615
+23993,66695
+23994,63251
+23995,52211
+23996,74402
+23997,43723
+23998,43723
+23999,47718
+24000,69860
+24001,64817
+24002,42076
+24003,33612
+24004,45009
+24005,37166
+24006,42388
+24007,41004,51642
+24008,42351
+24009,40680
+24010,31372
+24011,22162
+24012,52904
+24013,43820
+24014,30300
+24015,37166
+24016,81101
+24017,34950
+24018,71409
+24019,48555
+24020,57817
+24021,59331
+24022,45481
+24023,60744
+24024,56046
+24025,58398
+24026,45017
+24027,68230
+24028,51677
+24029,47437
+24030,19132
+24031,68230
+24032,77308
+24033,51188
+24034,35480
+24035,68290
+24036,41000
+24037,27479
+24038,24037
+24039,20819
+24040,70568
+24041,24040
+24042,67675
+24043,64178
+24044,26548
+24045,30132
+24046,80761
+24047,24046
+24048,28417
+24049,29819
+24050,63775
+24051,64403
+24052,64435
+24053,68692
+24054,79276
+24055,80753
+24056,33591
+24057,72983
+24058,22122
+24059,57556
+24060,62810
+24061,25924
+24062,21272
+24063,48809
+24064,31645
+24065,23285
+24066,61246
+24067,30257
+24068,64438
+24069,72027
+24070,25708
+24071,41906
+24072,25713
+24073,68289
+24074,36247
+24075,39272
+24076,61510
+24077,45863
+24078,33790
+24079,38835
+24080,35670
+24081,26106
+24082,79467
+24083,26576
+24084,39587
+24085,47671
+24086,42090
+24087,67551
+24088,68288
+24089,45951
+24090,47673
+24091,70504
+24092,72097
+24093,35667
+24094,74130
+24095,76839
+24096,72482
+24097,53238
+24098,73025
+24099,60032
+24100,68038
+24101,27276
+24102,20745
+24103,42475
+24104,55430
+24105,52097
+24106,23880
+24107,23471
+24108,28237
+24109,81549
+24110,73207
+24111,59350
+24112,48685
+24113,81803
+24114,49222
+24115,60953
+24116,74823
+24117,78583
+24118,50098
+24119,31690
+24120,34734
+24121,74917
+24122,24961
+24123,23946
+24124,24961
+24125,35181
+24126,73200
+24127,67675
+24128,25457
+24129,80257
+24130,49592
+24131,63775
+24132,80639
+24133,24128
+24134,36713
+24135,41743
+24136,51559
+24137,35105
+24138,18721
+24139,47475
+24140,20757
+24141,51677
+24142,63186
+24143,72984
+24144,45009
+24145,50875
+24146,59036
+24147,25956
+24148,20058
+24149,24145
+24150,24141
+24151,54753
+24152,24141
+24153,28358
+24154,65095
+24155,66322
+24156,34229
+24157,81626
+24158,61982
+24159,25707
+24160,70229
+24161,46827
+24162,68330
+24163,22786
+24164,34924
+24165,61395
+24166,66953
+24167,75063
+24168,50439
+24169,50439
+24170,66482
+24171,64757
+24172,80438
+24173,43554
+24174,40752
+24175,50438
+24176,51894
+24177,27373
+24178,49194
+24179,43313
+24180,76664
+24181,53454
+24182,37405
+24183,72840
+24184,55021
+24185,20819
+24186,76664
+24187,69238
+24188,31616
+24189,31618
+24190,75955
+24191,61313
+24192,63187
+24193,30188
+24194,31058
+24195,35188
+24196,31109
+24197,53473
+24198,62152
+24199,72892
+24200,46090
+24201,19342
+24202,51301
+24203,45239
+24204,63424
+24205,27514
+24206,81656
+24207,22159
+24208,69400
+24209,63424
+24210,37884
+24211,79608
+24212,74749
+24213,46826
+24214,51340
+24215,70183
+24216,58010
+24217,64160
+24218,35773
+24219,76142
+24220,29526
+24221,21881
+24222,27937
+24223,53661
+24224,28801
+24225,58157
+24226,29026
+24227,29773
+24228,61830
+24229,35833
+24230,58161
+24231,38430
+24232,77369
+24233,42463
+24234,65579
+24235,24251
+24236,81781
+24237,46163
+24238,45454
+24239,63426
+24240,19656
+24241,53658
+24242,34293
+24243,44437
+24244,68288
+24245,76633
+24246,80106
+24247,34293
+24248,62456
+24249,68290
+24250,51253
+24251,51277
+24252,18869
+24253,50085
+24254,52324
+24255,41773
+24256,53339
+24257,30902
+24258,51277
+24259,53716
+24260,53716
+24261,47402
+24262,51277,73012
+24263,37913
+24264,51807
+24265,60611
+24266,60612
+24267,50424
+24268,34989
+24269,24284
+24270,77635
+24271,67513
+24272,43858
+24273,24272
+24274,24272
+24275,24272
+24276,24272
+24277,29382
+24278,55500
+24279,65581
+24280,75001
+24281,75031
+24282,30391
+24283,37913
+24284,54963
+24285,75954
+24286,1594
+24287,54218
+24288,42515
+24289,80514
+24290,20743
+24291,25088
+24292,60953
+24293,19867
+24294,40884
+24295,19549
+24296,58004
+24297,57187
+24298,61885
+24299,38196
+24300,81482
+24301,74844
+24302,77641
+24303,71408
+24304,68014
+24305,27224
+24306,79432
+24307,53628
+24308,70033
+24309,53071
+24310,29759
+24311,79640
+24312,41877
+24313,62149
+24314,20749
+24315,45813
+24316,74067
+24317,56460
+24318,39676
+24319,81091
+24320,72426
+24321,39294
+24322,39324
+24323,39563
+24324,34924
+24325,42539
+24326,48318
+24327,58287
+24328,45813
+24329,40778
+24330,24306
+24331,24306
+24332,27368
+24333,69943
+24334,20289
+24335,23285
+24336,26871
+24337,27975
+24338,19108
+24339,20744
+24340,69681
+24341,68352
+24342,19342
+24343,46957
+24344,27276
+24345,72196
+24346,5693
+24347,23762
+24348,60216
+24349,28530
+24350,65531
+24351,59423
+24352,28358
+24353,61239
+24354,34279,20857
+24355,58958
+24356,48251
+24357,77571
+24358,20819
+24359,33897
+24360,26884
+24361,44241
+24362,59378
+24363,62702
+24364,24704
+24365,23763
+24366,77045
+24367,64831
+24368,48220
+24369,48220
+24370,48219
+24371,79608
+24372,35557
+24373,64293
+24374,56995
+24375,35879
+24376,32187
+24377,69148
+24378,69439
+24379,62852
+24380,55580
+24381,28848
+24382,60960
+24383,62145
+24384,54082
+24385,25518
+24386,71719
+24387,60786
+24388,66132
+24389,78703
+24390,59306
+24391,72701
+24392,33548
+24393,41417
+24394,39820
+24395,28593
+24396,75419
+24397,35156
+24398,27187
+24399,19686
+24400,81722
+24401,74131
+24402,74112
+24403,37042
+24404,53593
+24405,34564
+24406,60216
+24407,18365
+24408,60715
+24409,35557
+24410,34559
+24411,64831
+24412,60870
+24413,19959
+24414,75436
+24415,20152
+24416,38369
+24417,79492
+24418,27840
+24419,29102
+24420,35908
+24421,38980
+24422,37805
+24423,71408
+24424,58040
+24425,70033
+24426,31058
+24427,32888
+24428,45869
+24429,35436
+24430,75439
+24431,45951
+24432,81161
+24433,51665
+24434,79608
+24435,56701
+24436,29102
+24437,77641
+24438,37805
+24439,30073
+24440,47047
+24441,30021
+24442,54978
+24443,69238
+24444,52905
+24445,29928
+24446,19062
+24447,31881
+24448,44603
+24449,33271
+24450,37448
+24451,28886
+24452,56674
+24453,31291
+24454,79608
+24455,50918
+24456,19918
+24457,55815
+24458,26557
+24459,30514
+24460,30094
+24461,44156
+24462,73271
+24463,72323
+24464,55575
+24465,73271
+24466,72153
+24467,60534
+24468,21814
+24469,22878
+24470,74343
+24471,30718
+24472,46431
+24473,71786
+24474,38807
+24475,22669
+24476,51649
+24477,24302
+24478,56176
+24479,65213
+24480,67408
+24481,68555
+24482,79608
+24483,26257
+24484,21777
+24485,56655
+24486,27667
+24487,48187
+24488,81091
+24489,26281
+24490,30588
+24491,32345
+24492,32738
+24493,33419
+24494,33420
+24495,33640
+24496,20745
+24497,36694
+24498,68818
+24499,65974
+24500,14950
+24501,40411
+24502,65319
+24503,43905
+24504,44456
+24505,44576
+24506,70033
+24507,65581
+24508,45813
+24509,46857
+24510,38883
+24511,47317
+24512,49903
+24513,61251
+24514,81482
+24515,51939
+24516,57720
+24517,52850
+24518,52881
+24519,77641
+24520,24607
+24521,53181
+24522,53182
+24523,74478
+24524,53217
+24525,53690
+24526,55223
+24527,55570
+24528,55742
+24529,55807
+24530,56701
+24531,57289
+24532,57710
+24533,57858
+24534,32585
+24535,79493
+24536,59980
+24537,60899
+24538,62021
+24539,64809
+24540,64812
+24541,64819
+24542,66393
+24543,41877
+24544,61251
+24545,24915
+24546,45813
+24547,68551
+24548,69609
+24549,72323
+24550,61251
+24551,72559
+24552,77661
+24553,73477
+24554,74689
+24555,75521
+24556,25533
+24557,78274
+24558,12340
+24559,11869
+24560,80079
+24561,80080
+24562,80429
+24563,72153
+24564,23946,36642
+24565,25700
+24566,48862
+24567,76441
+24568,69633
+24569,38231
+24570,20905
+24571,12341
+24572,24504
+24573,28532
+24574,52777
+24575,67651
+24576,21140
+24577,43523
+24578,81161
+24579,24704
+24580,61251
+24581,45489
+24582,24892
+24583,27506
+24584,68489
+24585,51677
+24586,38944
+24587,32929
+24588,68551
+24589,59605
+24590,62426
+24591,78544
+24592,33832
+24593,11870
+24594,71040
+24595,64413
+24596,49088
+24597,62476
+24598,45316
+24599,70033
+24600,65977
+24601,59615
+24602,80193
+24603,52157
+24604,35534
+24605,52798
+24606,81482
+24607,77641
+24608,22684
+24609,67432
+24610,70249
+24611,35626
+24612,39676
+24613,70033
+24614,72135
+24615,26938
+24616,50459
+24617,45813
+24618,45813
+24619,45813
+24620,27625
+24621,66857
+24622,66857
+24623,82057
+24624,66459
+24625,33512
+24626,73837
+24627,67329
+24628,33548
+24629,50717
+24630,67049
+24631,66756
+24632,25394
+24633,71636
+24634,65942
+24635,19009
+24636,48281
+24637,44579
+24638,80941
+24639,34808
+24640,35130
+24641,40552
+24642,37999
+24643,78625
+24644,78517
+24645,69633
+24646,27741
+24647,28702
+24648,37854
+24649,61621
+24650,50652
+24651,23653
+24652,32580
+24653,41997
+24654,69408
+24655,37726
+24656,60032
+24657,56832
+24658,40552
+24659,56937
+24660,63138,35695
+24661,38835
+24662,40864
+24663,41911
+24664,48251
+24665,28164
+24666,81643
+24667,34874
+24668,38840
+24669,28091
+24670,24681
+24671,37642
+24672,50651
+24673,66843
+24674,21810
+24675,76146
+24676,78160
+24677,28164
+24678,41877
+24679,41875
+24680,58200
+24681,37637
+24682,57435,57554
+24683,43240
+24684,38823
+24685,53205
+24686,40151
+24687,49079
+24688,40752
+24689,81161
+24690,80845
+24691,80982
+24692,71557
+24693,81626
+24694,72830
+24695,19654
+24696,55526
+24697,24695
+24698,43434
+24699,33184
+24700,48251
+24701,74922
+24702,45813
+24703,56437
+24704,21218
+24705,54809
+24706,30568
+24707,56389
+24708,80821
+24709,54821
+24710,60032
+24711,24710
+24712,78362
+24713,48126
+24714,71938
+24715,51770
+24716,76303
+24717,45098
+24718,74490
+24719,62515
+24720,43734
+24721,58088
+24722,28747
+24723,36452
+24724,19629
+24725,34897
+24726,61251
+24727,40161
+24728,81721
+24729,19872
+24730,59970
+24731,68432
+24732,63424
+24733,32505
+24734,76334
+24735,32099
+24736,23881
+24737,33898
+24738,33896
+24739,40619
+24740,79753
+24741,70104
+24742,71120
+24743,77034
+24744,61646
+24745,69401
+24746,78059
+24747,29917
+24748,28954
+24749,79743
+24750,20718
+24751,49222
+24752,58921
+24753,65509
+24754,54994
+24755,51316
+24756,79749
+24757,8179
+24758,58921
+24759,69806
+24760,64455
+24761,37334
+24762,34280
+24763,61261
+24764,79458
+24765,23748
+24766,24726
+24767,24726
+24768,31917
+24769,58714
+24770,67377
+24771,67376
+24772,22112
+24773,73481
+24774,74807
+24775,45885
+24776,20406
+24777,20082
+24778,31115
+24779,30391
+24780,46827
+24781,21745
+24782,21475
+24783,71517
+24784,47740
+24785,46245
+24786,34997
+24787,43967
+24788,51068
+24789,61209
+24790,79905
+24791,57418
+24792,54404
+24793,69744
+24794,57418
+24795,57415
+24796,42438
+24797,46172
+24798,41055
+24799,53717
+24800,73815
+24801,57416
+24802,60216
+24803,70033
+24804,60216
+24805,29237
+24806,59970
+24807,51649
+24808,35679
+24809,23181
+24810,41851
+24811,19628
+24812,22946
+24813,24764
+24814,20137
+24815,41614
+24816,71572
+24817,24442
+24818,24807
+24819,33394
+24820,32372
+24821,32374
+24822,35492
+24823,24825
+24824,36088
+24825,36898
+24826,24700,38971
+24827,54467
+24828,24807
+24829,26318
+24830,39563
+24831,30975
+24832,66353
+24833,59645
+24834,69179,24823
+24835,79757,62757
+24836,65702
+24837,67972
+24838,71956
+24839,72421
+24840,43471
+24841,24268
+24842,34986
+24843,79470
+24844,70759
+24845,46818
+24846,44579
+24847,46760
+24848,60598
+24849,35679
+24850,74067
+24851,53694
+24852,34783
+24853,55373
+24854,45813
+24855,55662
+24856,72764
+24857,25855
+24858,28449
+24859,24807
+24860,77641
+24861,61848
+24862,45813
+24863,76662
+24864,43736
+24865,40752
+24866,78583
+24867,58162
+24868,44474
+24869,54774
+24870,71098
+24871,81801
+24872,59020
+24873,77011
+24874,73803
+24875,47590
+24876,38705
+24877,42246
+24878,54734
+24879,38835
+24880,34924
+24881,67703
+24882,40863
+24883,78096
+24884,72256
+24885,63070
+24886,52836
+24887,26504
+24888,78096
+24889,20755
+24890,80600
+24891,69818
+24892,29968
+24893,22116
+24894,58168
+24895,29928
+24896,52406
+24897,29237
+24898,40752
+24899,81161
+24900,48862
+24901,79661
+24902,21814
+24903,22507
+24904,65910
+24905,35405
+24906,25330
+24907,28552
+24908,36452
+24909,29027
+24910,30836
+24911,70033
+24912,30519
+24913,32645
+24914,74815
+24915,74067
+24916,40752
+24917,37344
+24918,81107
+24919,48870
+24920,40578
+24921,1122
+24922,43756
+24923,43905
+24924,38477
+24925,29731
+24926,11860
+24927,50602
+24928,80324
+24929,80324
+24930,53217
+24931,58287
+24932,36298
+24933,52053
+24934,33186
+24935,57066
+24936,79126
+24937,79608
+24938,59698
+24939,30189
+24940,80066
+24941,45813
+24942,15512
+24943,62029
+24944,24595
+24945,22669
+24946,30693
+24947,67548
+24948,67548
+24949,67548
+24950,65977
+24951,70692
+24952,50602
+24953,74067
+24954,27942
+24955,76787
+24956,76799
+24957,31924
+24958,32563
+24959,22776
+24960,23946
+24961,70033
+24962,60733
+24963,82035
+24964,76441
+24965,52374
+24966,24882
+24967,60216
+24968,78169
+24969,78170
+24970,67703
+24971,60032
+24972,41587
+24973,32462
+24974,44013
+24975,81735
+24976,57289
+24977,69308
+24978,46876
+24979,58647
+24980,60534
+24981,61202
+24982,59020
+24983,24528,40970
+24984,34657
+24985,44013
+24986,81462
+24987,67821
+24988,76441
+24989,60803
+24990,46760
+24991,27953
+24992,45813
+24993,75564
+24994,22949
+24995,62776
+24996,34126
+24997,34118
+24998,41461
+24999,28790
+25000,36872
+25001,44160
+25002,54774
+25003,55785
+25004,39961
+25005,48251
+25006,47852
+25007,65929
+25008,65509
+25009,81251
+25010,19629
+25011,31369
+25012,44670
+25013,31559
+25014,25013
+25015,74826
+25016,30693
+25017,69633
+25018,74537
+25019,52312
+25020,39357
+25021,79874
+25022,59258
+25023,75027
+25024,53761
+25025,53842
+25026,43807
+25027,25016
+25028,43807
+25029,53625
+25030,48735
+25031,68258
+25032,73838
+25033,34613
+25034,59411
+25035,46782
+25036,62999
+25037,66953
+25038,76110
+25039,25032
+25040,80012
+25041,72248
+25042,72248
+25043,46760
+25044,72052
+25045,31143
+25046,79471
+25047,78855
+25048,46490
+25049,64403
+25050,64425
+25051,77357
+25052,80834
+25053,45869
+25054,26295
+25055,45260
+25056,69604
+25057,80370
+25058,50438
+25059,81626
+25060,68643
+25061,53163
+25062,68692
+25063,61136
+25064,44816
+25065,80613
+25066,47816
+25067,40658
+25068,81213
+25069,25002
+25070,61764
+25071,44827
+25072,50490
+25073,52451
+25074,11865
+25075,70776
+25076,70776
+25077,70779
+25078,75152
+25079,64132
+25080,25555
+25081,22786
+25082,20690
+25083,50201
+25084,69860
+25085,77011
+25086,66926
+25087,58162
+25088,63314
+25089,44827
+25090,45009
+25091,45009
+25092,56176
+25093,75019
+25094,71315
+25095,54044
+25096,53339
+25097,73838
+25098,56176
+25099,56176
+25100,55348
+25101,21566
+25102,22684
+25103,32372
+25104,32580
+25105,44792
+25106,47387
+25107,79738
+25108,51523
+25109,52156
+25110,52179
+25111,47931
+25112,52862
+25113,76251
+25114,63426
+25115,59305
+25116,61455
+25117,69274
+25118,78578
+25119,74082
+25120,79757,75741
+25121,60623
+25122,80227
+25123,80612
+25124,60216
+25125,38699
+25126,34833,44516
+25127,34285
+25128,25097
+25129,53056
+25130,66004
+25131,80713
+25132,51395
+25133,21959
+25134,24961
+25135,60867
+25136,65663
+25137,21493
+25138,20626
+25139,71446
+25140,71956
+25141,59260
+25142,68352
+25143,38569
+25144,55143
+25145,19837
+25146,29833
+25147,56896
+25148,23774
+25149,28780
+25150,72883
+25151,32119
+25152,35557
+25153,35557
+25154,79469
+25155,41264
+25156,61343
+25157,45556,79156
+25158,31858
+25159,38640
+25160,75741
+25161,80259
+25162,73492
+25163,56842
+25164,26766
+25165,33134
+25166,66985
+25167,41000
+25168,39505
+25169,19689
+25170,31528
+25171,60786,71446
+25172,33793
+25173,49079
+25174,72733
+25175,41877
+25176,54118
+25177,17673
+25178,27131
+25179,2247
+25180,27373
+25181,80607
+25182,62187
+25183,63736
+25184,27997
+25185,49945
+25186,56294
+25187,67972
+25188,71881
+25189,65216
+25190,53624
+25191,60836
+25192,66885
+25193,23021
+25194,68448
+25195,18659
+25196,23021
+25197,46267
+25198,33542
+25199,29343
+25200,22790
+25201,60823
+25202,38839,80515
+25203,24661
+25204,27026
+25205,27698
+25206,28475
+25207,70515
+25208,56894
+25209,19843
+25210,44380
+25211,64477
+25212,69589,23321
+25213,43947
+25214,39049
+25215,60216
+25216,19867,80173
+25217,67822
+25218,19842
+25219,49079
+25220,25224
+25221,67429
+25222,22112
+25223,25222
+25224,25202
+25225,37991
+25226,25202
+25227,74575
+25228,70189
+25229,55314
+25230,81396
+25231,39363
+25232,79279
+25233,27167
+25234,34087,68831
+25235,81796
+25236,25234
+25237,38512
+25238,70761
+25239,77311
+25240,73997
+25241,69439
+25242,73997
+25243,25242
+25244,48803,46251
+25245,60239
+25246,75606
+25247,39424
+25248,25238
+25249,70761
+25250,23891
+25251,77641
+25252,68869
+25253,25238
+25254,70761
+25255,80845
+25256,31447
+25257,20754
+25258,79469
+25259,58226
+25260,19635
+25261,21812
+25262,28584
+25263,71572
+25264,28994
+25265,20747
+25266,73992
+25267,20755
+25268,20755
+25269,71956
+25270,71398
+25271,58155
+25272,60042
+25273,45813
+25274,45458
+25275,80761
+25276,40147
+25277,71686
+25278,20905
+25279,36619
+25280,45097
+25281,78169
+25282,68330
+25283,68330
+25284,52781
+25285,45260
+25286,52481
+25287,77641
+25288,62163
+25289,59645
+25290,40293
+25291,73837
+25292,50755
+25293,33186
+25294,29626
+25295,42153
+25296,77952
+25297,55026
+25298,55524
+25299,49158,24983
+25300,27165
+25301,30391
+25302,63663
+25303,68809
+25304,63117
+25305,30391
+25306,63117
+25307,67628
+25308,22684
+25309,39161
+25310,23488
+25311,49078
+25312,66103
+25313,37792
+25314,66324
+25315,39268
+25316,32495
+25317,79086
+25318,32691
+25319,81656
+25320,45030
+25321,41917
+25322,29969
+25323,53959
+25324,74488
+25325,19655
+25326,37720
+25327,73873
+25328,18984
+25329,18983
+25330,25302
+25331,63559
+25332,52773
+25333,42076
+25334,53179
+25335,79114
+25336,44623
+25337,58583
+25338,69653
+25339,69860
+25340,64966
+25341,57927
+25342,63391
+25343,71900
+25344,45096
+25345,61732
+25346,56832
+25347,77192
+25348,63212
+25349,80228
+25350,35512
+25351,48038
+25352,63945
+25353,19755
+25354,20456
+25355,36137
+25356,66838
+25357,76229
+25358,69663
+25359,41090
+25360,77108
+25361,48415
+25362,27079
+25363,78785
+25364,70889
+25365,75057
+25366,69860
+25367,29900
+25368,73367
+25369,34924
+25370,50126
+25371,32578
+25372,32929
+25373,69012
+25374,69012
+25375,30089
+25376,73573
+25377,49158
+25378,45812
+25379,45813
+25380,67675
+25381,54562
+25382,67957
+25383,37165
+25384,59580
+25385,50630
+25386,48210
+25387,35787
+25388,48483
+25389,68211
+25390,38614
+25391,78755
+25392,35023
+25393,36482
+25394,35698
+25395,19069
+25396,19069
+25397,63124
+25398,36743
+25399,3695
+25400,54562
+25401,28780
+25402,48851
+25403,63339
+25404,40820
+25405,67675
+25406,19379
+25407,77193
+25408,48219
+25409,72290
+25410,61063
+25411,65133
+25412,77399
+25413,21324
+25414,32269
+25415,71719
+25416,66084
+25417,65529
+25418,81456
+25419,59713
+25420,41180
+25421,62991
+25422,25826
+25423,29917
+25424,59338
+25425,50701
+25426,37718
+25427,36069
+25428,50459
+25429,81255
+25430,36602
+25431,24249
+25432,24251
+25433,41977
+25434,79469
+25435,31618
+25436,79469
+25437,23531
+25438,77641
+25439,65260
+25440,24145
+25441,30391
+25442,30392
+25443,65259
+25444,43801
+25445,44160
+25446,57893
+25447,26166
+25448,27275
+25449,36506
+25450,59306
+25451,36029
+25452,53059
+25453,61247
+25454,65581
+25455,78234
+25456,27592
+25457,70111
+25458,68163
+25459,40293
+25460,74036
+25461,57980
+25462,82191
+25463,25876
+25464,51472
+25465,61647
+25466,40293
+25467,64175
+25468,61251
+25469,41877
+25470,62277
+25471,50297
+25472,34246
+25473,22646,24289
+25474,56542
+25475,25474
+25476,38475
+25477,41017
+25478,39049
+25479,23664
+25480,44816
+25481,79608
+25482,51411
+25483,40318
+25484,26102
+25485,40564
+25486,66786
+25487,79732
+25488,37616
+25489,37328
+25490,65174
+25491,44514
+25492,50303
+25493,70268
+25494,55246
+25495,38982
+25496,51464
+25497,31243
+25498,60603
+25499,25495
+25500,49420
+25501,42475
+25502,66353
+25503,63935
+25504,46962
+25505,40756
+25506,57693
+25507,80821
+25508,30865
+25509,67957
+25510,25495
+25511,43546
+25512,37344
+25513,58262
+25514,76664
+25515,31646
+25516,69860
+25517,19421
+25518,67290
+25519,25518
+25520,20745
+25521,34199
+25522,80512
+25523,73222
+25524,73803
+25525,33455
+25526,66292,43168
+25527,49997
+25528,76085
+25529,41672
+25530,23097
+25531,80512
+25532,35425
+25533,56294
+25534,81789
+25535,38889
+25536,73752
+25537,34276
+25538,28237
+25539,79608
+25540,58287
+25541,42154
+25542,22776
+25543,61400
+25544,22786
+25545,79469
+25546,35558
+25547,31618
+25548,31616
+25549,31137
+25550,50862,35425
+25551,32923
+25552,61395
+25553,45260
+25554,52105
+25555,42093
+25556,76429
+25557,61401
+25558,26298
+25559,50354
+25560,22786
+25561,42097
+25562,61404
+25563,50742
+25564,25561
+25565,68352
+25566,69818
+25567,71900
+25568,31991
+25569,45769
+25570,56166
+25571,65239
+25572,21474
+25573,30954
+25574,31616
+25575,24874
+25576,68691
+25577,31618
+25578,70033
+25579,30954
+25580,23536
+25581,26954
+25582,27059
+25583,30062
+25584,53072
+25585,46857
+25586,49902
+25587,52712
+25588,44358
+25589,57562
+25590,61435
+25591,68691
+25592,23673
+25593,78286
+25594,81746
+25595,41556
+25596,78313
+25597,81635
+25598,30557
+25599,61438
+25600,31612
+25601,72435
+25602,25601
+25603,53422
+25604,66616
+25605,81482
+25606,52904
+25607,48283
+25608,63106,52803
+25609,63442
+25610,52904,52211
+25611,28965
+25612,53306
+25613,23946
+25614,80668
+25615,63809
+25616,66985
+25617,74488,73670
+25618,73326
+25619,34564
+25620,73830,73670
+25621,52906
+25622,36482
+25623,81746
+25624,49222
+25625,70033
+25626,63424
+25627,76960
+25628,50117
+25629,21703
+25630,56451
+25631,79282
+25632,51928
+25633,79282
+25634,48787
+25635,25708
+25636,19438
+25637,64142
+25638,18740
+25639,33178
+25640,39676
+25641,39676
+25642,69331
+25643,63809
+25644,63809
+25645,74488
+25646,47833
+25647,61902
+25648,67698
+25649,46992
+25650,25649
+25651,55984
+25652,22433
+25653,27519
+25654,46075
+25655,25044
+25656,25044
+25657,37276
+25658,21525
+25659,7654
+25660,79200
+25661,77845
+25662,44816
+25663,56471
+25664,66985
+25665,61673
+25666,79189
+25667,48477
+25668,56492
+25669,56441
+25670,73437
+25671,48251,56454
+25672,34039
+25673,56454
+25674,36361
+25675,56534
+25676,57934
+25677,78160
+25678,56492
+25679,44440
+25680,47994
+25681,24230
+25682,76256
+25683,31858
+25684,39676
+25685,26171
+25686,66154
+25687,66154
+25688,22900
+25689,33617
+25690,35595
+25691,33614
+25692,25807
+25693,51573
+25694,66154
+25695,59762
+25696,66154
+25697,25687
+25698,77373
+25699,81549
+25700,25699
+25701,40068
+25702,28406
+25703,67089
+25704,30325
+25705,55546
+25706,72791
+25707,73636
+25708,73981
+25709,35876
+25710,51479
+25711,80256
+25712,57874
+25713,35879
+25714,33178
+25715,25706
+25716,53180
+25717,40230
+25718,49797
+25719,36602
+25720,56584
+25721,51665
+25722,70862
+25723,27167
+25724,43299
+25725,43756
+25726,65154
+25727,31919
+25728,34199
+25729,81200
+25730,53861
+25731,22896
+25732,40752
+25733,29623
+25734,54425
+25735,80512
+25736,23223
+25737,57982
+25738,68802
+25739,21568
+25740,58088
+25741,66132
+25742,81483
+25743,78578,81463
+25744,59355
+25745,62072
+25746,58308
+25747,80184
+25748,59970
+25749,28739
+25750,79686
+25751,39928
+25752,30557
+25753,73669
+25754,33184
+25755,45546
+25756,37181
+25757,57249
+25758,77641
+25759,81482
+25760,77641
+25761,57901
+25762,39153
+25763,25762
+25764,25762
+25765,25763
+25766,25763
+25767,25763
+25768,50424
+25769,25763
+25770,22728,72914
+25771,31616
+25772,74775
+25773,36242
+25774,49945
+25775,66413
+25776,67957
+25777,65579
+25778,23294
+25779,25017
+25780,33162
+25781,37179
+25782,41743
+25783,64287
+25784,45813
+25785,25770
+25786,41022
+25787,48477
+25788,36965
+25789,69174
+25790,28530
+25791,73805
+25792,33868
+25793,68355
+25794,38313
+25795,18951
+25796,34398
+25797,33799
+25798,68629
+25799,21730
+25800,31506
+25801,47908
+25802,65659
+25803,28535
+25804,68715
+25805,77641
+25806,30368
+25807,39151
+25808,20531
+25809,64182
+25810,53593
+25811,21474
+25812,41005
+25813,75057
+25814,53597
+25815,34613
+25816,25796
+25817,75853
+25818,73683
+25819,59886
+25820,35517
+25821,23182
+25822,41588
+25823,67703
+25824,38920
+25825,52890
+25826,38920
+25827,45689
+25828,27497
+25829,36482
+25830,47650
+25831,33513
+25832,79245
+25833,61592
+25834,21568
+25835,74821
+25836,74811
+25837,19771
+25838,25862
+25839,25087
+25840,66111
+25841,37000
+25842,34924
+25843,25087
+25844,34924
+25845,66954
+25846,67232
+25847,57897
+25848,34435
+25849,24794
+25850,42225
+25851,77985
+25852,51261
+25853,44628
+25854,78398
+25855,79187,20751
+25856,73372
+25857,57144
+25858,63124
+25859,71338
+25860,37513
+25861,77277
+25862,81193
+25863,51778
+25864,73492
+25865,32718
+25866,68796
+25867,34985
+25868,35926
+25869,62516
+25870,75962
+25871,36802
+25872,19936
+25873,53060
+25874,52773
+25875,54957
+25876,81915
+25877,61247
+25878,63124
+25879,25877,66132
+25880,60994
+25881,69688
+25882,66965
+25883,81482
+25884,59645
+25885,32929
+25886,39599
+25887,33401
+25888,43744
+25889,28311,26302
+25890,28747
+25891,65385
+25892,77989
+25893,41417
+25894,32975
+25895,49772
+25896,32691
+25897,44963
+25898,53333
+25899,26302
+25900,53332
+25901,81656
+25902,31563
+25903,53239
+25904,43828
+25905,70033
+25906,72265
+25907,59333
+25908,56582
+25909,80572
+25910,43247
+25911,22128,81462
+25912,31443
+25913,73837
+25914,74488
+25915,27506
+25916,29418
+25917,78855
+25918,34589
+25919,51577
+25920,73838
+25921,68780
+25922,44986
+25923,25924,30361
+25924,27508
+25925,25915
+25926,29418
+25927,62190
+25928,30555
+25929,45403
+25930,66153
+25931,59541
+25932,24391
+25933,58412
+25934,50875
+25935,27781
+25936,25202
+25937,62100
+25938,48171
+25939,69931
+25940,78583
+25941,25715
+25942,79270
+25943,67574
+25944,59857
+25945,21597
+25946,42446
+25947,28425
+25948,67574
+25949,51318
+25950,48477
+25951,31537
+25952,50856
+25953,48477
+25954,45524
+25955,61926
+25956,63218
+25957,37166
+25958,74256
+25959,71557
+25960,25714
+25961,67698
+25962,37167
+25963,25496
+25964,41155
+25965,26409
+25966,24781
+25967,31477
+25968,33500
+25969,67891
+25970,39767
+25971,44793
+25972,26166
+25973,39676
+25974,60899
+25975,41399
+25976,76501
+25977,70033
+25978,74067
+25979,82055
+25980,31910
+25981,25851
+25982,27167
+25983,24612
+25984,52687
+25985,37079
+25986,81161
+25987,25800
+25988,81462
+25989,38556
+25990,8179
+25991,61266
+25992,58088
+25993,76890
+25994,53180
+25995,53171
+25996,21640
+25997,69667
+25998,23541
+25999,40927
+26000,23691
+26001,69697
+26002,64632,42356
+26003,45271
+26004,48630
+26005,49427
+26006,28220
+26007,22438
+26008,59441
+26009,54043
+26010,69977
+26011,21475
+26012,26014,49341
+26013,53733
+26014,30891
+26015,53648
+26016,75641
+26017,30937
+26018,73001
+26019,73870
+26020,39049
+26021,39049
+26022,34906
+26023,67254
+26024,21545
+26025,70110
+26026,40150
+26027,74867
+26028,50248
+26029,36055
+26030,39049
+26031,33135
+26032,33134
+26033,33134
+26034,33135
+26035,72298
+26036,34249
+26037,65309
+26038,51395
+26039,69818
+26040,31858
+26041,28890
+26042,58462
+26043,21412
+26044,71648
+26045,39298
+26046,62928
+26047,26577
+26048,56901
+26049,18979
+26050,81647
+26051,44013
+26052,19069
+26053,44908
+26054,28780,44933
+26055,44932
+26056,36872,19072
+26057,36872,19072
+26058,21012
+26059,73328
+26060,21703
+26061,79282
+26062,36710
+26063,26064
+26064,66101
+26065,53717
+26066,61577
+26067,53701
+26068,71937
+26069,27731
+26070,55805
+26071,66515
+26072,31919
+26073,68522
+26074,76664
+26075,77952
+26076,60869
+26077,20751
+26078,24398
+26079,45777
+26080,59375
+26081,53119
+26082,73636
+26083,61533
+26084,41588
+26085,77988
+26086,26082
+26087,53275
+26088,53275
+26089,80342
+26090,80342
+26091,70033
+26092,29692
+26093,26095
+26094,33361
+26095,44013
+26096,26095
+26097,26091
+26098,71639
+26099,58969
+26100,45035
+26101,53439
+26102,71719
+26103,71719
+26104,25606
+26105,53842
+26106,52822
+26107,41607
+26108,47737
+26109,49858
+26110,41609
+26111,29626
+26112,60032
+26113,27688
+26114,68847
+26115,41919
+26116,39531
+26117,63623
+26118,29237
+26119,63677
+26120,19979
+26121,27624
+26122,23559
+26123,41646
+26124,25770
+26125,26373
+26126,26656
+26127,32837
+26128,68318
+26129,47116
+26130,50136
+26131,50934
+26132,31417
+26133,64812
+26134,66475
+26135,41877
+26136,61251
+26137,26136
+26138,67957
+26139,42197
+26140,71419
+26141,66293
+26142,74192
+26143,76343
+26144,77988
+26145,31853
+26146,64989
+26147,81918
+26148,67821
+26149,67169
+26150,52417
+26151,79270
+26152,64972
+26153,37042
+26154,72029
+26155,21275
+26156,82167
+26157,48084
+26158,61264,20038
+26159,23559
+26160,48251
+26161,53593
+26162,56356
+26163,60216
+26164,41106
+26165,37405
+26166,47655
+26167,75152
+26168,31602
+26169,34566
+26170,44798
+26171,79270
+26172,39928
+26173,77146
+26174,65682
+26175,60353
+26176,12337
+26177,44814
+26178,35469
+26179,40147
+26180,53783
+26181,81482
+26182,63160
+26183,33134
+26184,33135
+26185,22095
+26186,31245
+26187,81808
+26188,34357
+26189,19200
+26190,70033
+26191,79608
+26192,56955
+26193,48787
+26194,43426
+26195,47493
+26196,32578
+26197,35557
+26198,23380
+26199,59340
+26200,57169
+26201,28874
+26202,31609
+26203,48256
+26204,42327
+26205,34924
+26206,42287
+26207,52420,74939
+26208,61178
+26209,21703
+26210,28091
+26211,61159
+26212,75330
+26213,39750
+26214,61758
+26215,27688
+26216,31618
+26217,79469
+26218,68692
+26219,26048
+26220,75465
+26221,68869
+26222,26070
+26223,39423
+26224,70033
+26225,59169
+26226,41815
+26227,39049
+26228,68005
+26229,50784
+26230,67479
+26231,25851
+26232,70033
+26233,70033
+26234,41729
+26235,41683
+26236,43893
+26237,45813
+26238,58921
+26239,72556
+26240,40753
+26241,67551
+26242,21810
+26243,41607
+26244,58808
+26245,59110
+26246,41856
+26247,61202
+26248,33498
+26249,34319
+26250,50784
+26251,70646
+26252,47655
+26253,42088
+26254,56701
+26255,27667
+26256,29957
+26257,74152
+26258,44013
+26259,41729
+26260,35557
+26261,41588
+26262,26483
+26263,31058
+26264,53870
+26265,34924
+26266,62439
+26267,71557
+26268,32456
+26269,82151
+26270,21866
+26271,53593
+26272,41917
+26273,80753
+26274,36694
+26275,40988
+26276,78024
+26277,54257
+26278,48318
+26279,34280
+26280,31167
+26281,81549
+26282,57332
+26283,57076
+26284,34283
+26285,27688
+26286,46664
+26287,23514
+26288,25729
+26289,45813
+26290,70214
+26291,78038
+26292,45813
+26293,20604
+26294,32799
+26295,31701
+26296,53454
+26297,42351
+26298,73838
+26299,26302
+26300,30187
+26301,73838
+26302,21745
+26303,51204
+26304,67993
+26305,69860
+26306,19000
+26307,63259
+26308,19005
+26309,23643
+26310,67131
+26311,72791
+26312,73837
+26313,59306
+26314,31430
+26315,26311
+26316,24612
+26317,48870
+26318,79211
+26319,56696
+26320,63213
+26321,80736
+26322,60806
+26323,37044
+26324,46948
+26325,37044
+26326,70091
+26327,53339
+26328,52655
+26329,52691
+26330,30208
+26331,59355
+26332,50450
+26333,48803
+26334,28028
+26335,61159
+26336,25002
+26337,52904
+26338,61764
+26339,34211
+26340,68355
+26341,28237
+26342,53183
+26343,81635
+26344,56280
+26345,20745
+26346,31308
+26347,65977
+26348,30514
+26349,61533
+26350,61494
+26351,68632
+26352,61510
+26353,79608
+26354,81635
+26355,20883
+26356,29819
+26357,81746
+26358,77284
+26359,63212
+26360,46267
+26361,59435
+26362,46888
+26363,65909
+26364,25017
+26365,35196
+26366,79472,25101
+26367,72024
+26368,60216
+26369,24839
+26370,40068
+26371,78014
+26372,68519
+26373,28000
+26374,52168
+26375,62547
+26376,48196
+26377,61209
+26378,26334,82056
+26379,28028,52802
+26380,33475
+26381,33476
+26382,21474
+26383,28168
+26384,72712
+26385,26429
+26386,30153
+26387,75942
+26388,46473
+26389,22116
+26390,23694
+26391,63646
+26392,26389
+26393,19686
+26394,67362
+26395,23182
+26396,23679
+26397,25046
+26398,64975
+26399,48949
+26400,37215
+26401,48251
+26402,43364
+26403,53648
+26404,79274
+26405,53648
+26406,49058
+26407,67093
+26408,21899
+26409,25770
+26410,67202
+26411,19666
+26412,30391
+26413,35996
+26414,44013
+26415,74824
+26416,58710
+26417,32541
+26418,58723
+26419,69968
+26420,59378
+26421,61504
+26422,46782
+26423,66985
+26424,46268
+26425,47840
+26426,74807
+26427,70308
+26428,23643
+26429,36537
+26430,52975
+26431,23643
+26432,31616
+26433,41279
+26434,45336
+26435,34306
+26436,19121
+26437,79995
+26438,64383
+26439,22853
+26440,42252
+26441,46171
+26442,71103
+26443,71102
+26444,71103
+26445,61253
+26446,23420
+26447,39049
+26448,40068
+26449,37181
+26450,21381
+26451,20763
+26452,65481
+26453,75788
+26454,28741
+26455,60097
+26456,24392
+26457,74067
+26458,80927
+26459,45813
+26460,30183
+26461,47388
+26462,31167
+26463,36840
+26464,35158
+26465,74067
+26466,30937
+26467,43809
+26468,58168
+26469,43818
+26470,57573
+26471,63059
+26472,53624
+26473,77192
+26474,5513
+26475,25407
+26476,76229
+26477,19907
+26478,19909
+26479,39599
+26480,53561
+26481,31862
+26482,73207
+26483,44013
+26484,9930
+26485,54416
+26486,33845
+26487,41872
+26488,44046,28475
+26489,29917
+26490,55391
+26491,29040
+26492,81482
+26493,61261
+26494,67454
+26495,69977
+26496,48251
+26497,33755
+26498,24704
+26499,58776
+26500,22684
+26501,28234
+26502,20160
+26503,45557
+26504,21200
+26505,77108
+26506,38667
+26507,28535
+26508,70033
+26509,29839
+26510,70167
+26511,78487
+26512,64403
+26513,31599
+26514,74010
+26515,42225
+26516,62439
+26517,63218
+26518,33581
+26519,72253
+26520,35557
+26521,36045
+26522,46270
+26523,67432
+26524,28091
+26525,77626
+26526,77630
+26527,48126
+26528,19228
+26529,51825
+26530,53261
+26531,31139
+26532,63659
+26533,27405,36914
+26534,78995,77522
+26535,39358
+26536,77328
+26537,77469
+26538,59542
+26539,73445
+26540,75913
+26541,76518
+26542,77051
+26543,79276
+26544,31278
+26545,35284
+26546,81159
+26547,23542
+26548,81549
+26549,70033
+26550,70033
+26551,70033
+26552,46444
+26553,49079
+26554,56111
+26555,45813
+26556,70033
+26557,70016
+26558,79492
+26559,40752
+26560,20690
+26561,20690
+26562,45204
+26563,2492
+26564,17466
+26565,23294
+26566,48438
+26567,51573
+26568,60984
+26569,70033
+26570,76787
+26571,4057
+26572,21959
+26573,19768
+26574,31167
+26575,26579
+26576,68818
+26577,37987
+26578,19176
+26579,37988
+26580,19305
+26581,19655
+26582,27503
+26583,30408
+26584,79175
+26585,75498
+26586,34609
+26587,29513
+26588,56607
+26589,38789
+26590,47931
+26591,48445
+26592,51069
+26593,27565
+26594,22969
+26595,52354
+26596,56585
+26597,59970
+26598,65691
+26599,43872
+26600,74232
+26601,77585
+26602,26604
+26603,63139
+26604,27339
+26605,26604
+26606,37991
+26607,25359
+26608,50438
+26609,36542
+26610,79029
+26611,54642
+26612,68522
+26613,66279
+26614,64178
+26615,51127
+26616,79953
+26617,28952
+26618,60216
+26619,46639
+26620,77011
+26621,41444
+26622,30873
+26623,53676
+26624,19202
+26625,81601
+26626,51881
+26627,47047
+26628,54142,42246,41773
+26629,49661
+26630,51036
+26631,55668
+26632,53959
+26633,70629
+26634,70033
+26635,70710
+26636,49945
+26637,81734
+26638,69860
+26639,70016
+26640,1526
+26641,30659
+26642,45302
+26643,53032
+26644,59307
+26645,23164
+26646,73326
+26647,79547
+26648,59306
+26649,46096
+26650,49298
+26651,21640
+26652,26650
+26653,80632
+26654,46070
+26655,30557
+26656,33729,41005
+26657,31853
+26658,35558
+26659,75064
+26660,45813
+26661,26686
+26662,45813
+26663,78201
+26664,78200
+26665,20747
+26666,29984
+26667,67703
+26668,60032
+26669,51018
+26670,74821
+26671,70033
+26672,31477
+26673,60032
+26674,70033
+26675,40752
+26676,58088
+26677,58088
+26678,58088
+26679,58093
+26680,79608
+26681,79608
+26682,55318
+26683,73287
+26684,79097
+26685,54467
+26686,51092
+26687,54446
+26688,24373
+26689,58921
+26690,37181
+26691,80080
+26692,81336
+26693,81337
+26694,27167
+26695,45813
+26696,81161
+26697,27625
+26698,75588
+26699,53676
+26700,25115
+26701,25115
+26702,61260
+26703,22669
+26704,21745
+26705,39423
+26706,18974
+26707,39676
+26708,39676
+26709,60936
+26710,79953
+26711,45813
+26712,77641
+26713,46268
+26714,69408
+26715,46490
+26716,74487
+26717,67822
+26718,6458
+26719,44439
+26720,19935
+26721,79224,73272
+26722,67202
+26723,42246
+26724,67946
+26725,43509
+26726,61537
+26727,78566
+26728,33488
+26729,53182
+26730,63852
+26731,19131
+26732,24059
+26733,19228
+26734,71686
+26735,44567
+26736,45302
+26737,11869
+26738,70221
+26739,56941
+26740,41955
+26741,53157
+26742,37355
+26743,51472
+26744,31477
+26745,63117
+26746,31180
+26747,59468
+26748,67272
+26749,70051
+26750,27287
+26751,39767
+26752,72029
+26753,31115
+26754,66727
+26755,30954
+26756,27688
+26757,27405
+26758,39358
+26759,29833
+26760,68779
+26761,53842
+26762,38807
+26763,75860
+26764,69978
+26765,72448
+26766,33135
+26767,33134
+26768,20666
+26769,60760
+26770,58888
+26771,58888
+26772,58888
+26773,58895
+26774,77641
+26775,27997
+26776,61732
+26777,46782
+26778,30954
+26779,30954
+26780,69274
+26781,27408
+26782,18958
+26783,55374
+26784,51540
+26785,19494
+26786,41917
+26787,46826
+26788,30954
+26789,54615
+26790,54613
+26791,81482
+26792,81547
+26793,27663
+26794,81546
+26795,27663
+26796,66985
+26797,51523
+26798,75701
+26799,75647
+26800,31278
+26801,30954
+26802,64635
+26803,75700
+26804,42412
+26805,66551
+26806,68621
+26807,72827
+26808,20690
+26809,26808
+26810,73470
+26811,26264
+26812,68632
+26813,80174
+26814,22420
+26815,48122
+26816,50565
+26817,52269
+26818,11865
+26819,33184
+26820,50565
+26821,45777
+26822,38569
+26823,44439
+26824,58158
+26825,73184
+26826,35727
+26827,74146
+26828,81501
+26829,81743
+26830,79596
+26831,65594
+26832,25098
+26833,63621
+26834,22128
+26835,77780
+26836,27810
+26837,27114
+26838,59422
+26839,66442
+26840,59422
+26841,77364
+26842,62145
+26843,54082
+26844,26846
+26845,74251
+26846,60786
+26847,26846
+26848,32018
+26849,48353
+26850,20422
+26851,22060
+26852,59605
+26853,63386
+26854,66132
+26855,30231
+26856,30231
+26857,30231
+26858,66132
+26859,39101
+26860,77600
+26861,26854
+26862,38355
+26863,36604
+26864,20038
+26865,19291
+26866,61703
+26867,36434
+26868,29839
+26869,31554
+26870,56469
+26871,37776
+26872,59241
+26873,31451
+26874,32991
+26875,75634
+26876,53180
+26877,75942
+26878,64231
+26879,54441
+26880,28849
+26881,28475
+26882,33374
+26883,59657
+26884,22728
+26885,24781
+26886,64989
+26887,72733
+26888,18969
+26889,77641
+26890,79608
+26891,23541
+26892,43799
+26893,60994
+26894,77641
+26895,58088
+26896,21777
+26897,52157
+26898,45813
+26899,54728
+26900,58888
+26901,66965
+26902,57594
+26903,58088
+26904,46468
+26905,46467
+26906,74241
+26907,40752
+26908,69818
+26909,45151
+26910,47744
+26911,28790
+26912,80258,80193
+26913,58611
+26914,71899
+26915,76489
+26916,54082
+26917,31058
+26918,24037
+26919,53717
+26920,24194,27452
+26921,27479
+26922,67675
+26923,47043
+26924,47105
+26925,47223,24695
+26926,26916,30020
+26927,67675
+26928,56752
+26929,58616
+26930,60502
+26931,67675
+26932,67675
+26933,63060
+26934,63051
+26935,61241
+26936,52497
+26937,38807
+26938,66786
+26939,63861
+26940,26939
+26941,79845
+26942,62266
+26943,46757
+26944,21620
+26945,75058
+26946,51677
+26947,76664
+26948,76664
+26949,81907
+26950,52497
+26951,40752
+26952,82056
+26953,82056
+26954,50784
+26955,70568
+26956,42406
+26957,25666
+26958,76946
+26959,66997
+26960,19228
+26961,66785
+26962,71446
+26963,39049
+26964,54082
+26965,53624
+26966,67277,11480
+26967,49483
+26968,62145
+26969,29374
+26970,62456
+26971,38699
+26972,29713
+26973,34460
+26974,65975
+26975,48403
+26976,79722
+26977,79724
+26978,34148
+26979,34460
+26980,75669
+26981,26980
+26982,37720
+26983,26364
+26984,26980
+26985,28467
+26986,28234
+26987,40150
+26988,75669
+26989,63405
+26990,51836
+26991,53171
+26992,73345
+26993,58023
+26994,74302
+26995,75669
+26996,40752
+26997,48803
+26998,24002
+26999,20824
+27000,50701
+27001,20824
+27002,71961
+27003,79732
+27004,35668
+27005,70033
+27006,70629
+27007,45064
+27008,59760
+27009,32817
+27010,44240
+27011,28467
+27012,55758
+27013,32025
+27014,59092
+27015,45151
+27016,63600
+27017,47532
+27018,68119
+27019,61261
+27020,81193
+27021,43746
+27022,39578
+27023,29067
+27024,81617
+27025,51677
+27026,53624
+27027,53621
+27028,44380
+27029,27276
+27030,68030
+27031,74067
+27032,60994
+27033,25256
+27034,19580
+27035,79242
+27036,51781
+27037,59375
+27038,73837
+27039,58088
+27040,61260
+27041,30298
+27042,67049
+27043,46468
+27044,51395
+27045,31820
+27046,20015
+27047,21412
+27048,79215
+27049,73598
+27050,39049
+27051,75518
+27052,75704
+27053,38529
+27054,39049
+27055,64425
+27056,70033
+27057,20745
+27058,20504
+27059,60538
+27060,61669
+27061,27564
+27062,50985
+27063,58004
+27064,28475
+27065,77888
+27066,60536
+27067,69782
+27068,56356
+27069,78578
+27070,42225
+27071,39049
+27072,76755
+27073,68432
+27074,39049
+27075,42351
+27076,77904
+27077,59857
+27078,46827
+27079,54432
+27080,69680
+27081,70515
+27082,40950
+27083,63405
+27084,40986
+27085,53761
+27086,79363
+27087,38784
+27088,57932
+27089,45260
+27090,61796
+27091,27086
+27092,23822
+27093,45813
+27094,79028
+27095,65229
+27096,77348
+27097,40147
+27098,56180
+27099,43668
+27100,45813
+27101,28315
+27102,57594
+27103,50585
+27104,48209
+27105,19121
+27106,70515
+27107,73439
+27108,39818
+27109,58576
+27110,67050
+27111,77641
+27112,26452
+27113,31618
+27114,31616
+27115,77974
+27116,57893
+27117,28546
+27118,80387
+27119,25046
+27120,36710
+27121,36710
+27122,63126
+27123,21237
+27124,39051
+27125,70426
+27126,40068
+27127,44013
+27128,24323
+27129,81918
+27130,56111
+27131,67296
+27132,20355
+27133,72733
+27134,56336
+27135,57182
+27136,52842
+27137,56405
+27138,49392
+27139,67548
+27140,70648
+27141,27162
+27142,72575
+27143,70890
+27144,80460
+27145,27059
+27146,41877
+27147,60216
+27148,41875
+27149,74735
+27150,27151
+27151,31347
+27152,52331
+27153,50273
+27154,51319
+27155,28518
+27156,57637
+27157,20690
+27158,25564
+27159,25555
+27160,48495
+27161,47655
+27162,46252
+27163,37635
+27164,81035
+27165,70033
+27166,46417
+27167,74735
+27168,27167
+27169,27167
+27170,27167
+27171,5257
+27172,79881
+27173,76196
+27174,40752
+27175,72791
+27176,80037
+27177,74844
+27178,24726
+27179,27455
+27180,74192
+27181,26171
+27182,76623
+27183,23095
+27184,71536
+27185,48414
+27186,74675
+27187,27622
+27188,76989
+27189,20745
+27190,35740
+27191,41743
+27192,37179
+27193,31616
+27194,61251
+27195,78455
+27196,27997
+27197,45813
+27198,27197
+27199,56180
+27200,70033
+27201,71409,31759
+27202,41022
+27203,46957
+27204,27202
+27205,24441
+27206,59474
+27207,39122
+27208,67979
+27209,62456
+27210,26217
+27211,27114
+27212,44628
+27213,21568
+27214,44628
+27215,21759
+27216,25115
+27217,25256
+27218,40206
+27219,71493
+27220,21760
+27221,63212
+27222,78096
+27223,48333
+27224,70976
+27225,25059
+27226,79261
+27227,62852
+27228,55756
+27229,67272
+27230,51677
+27231,68477
+27232,50603
+27233,46767
+27234,71997
+27235,67758
+27236,49134
+27237,32578
+27238,39049
+27239,69681
+27240,75216
+27241,59737
+27242,39767
+27243,55791
+27244,74766
+27245,29643
+27246,69860
+27247,65226
+27248,66132
+27249,40514
+27250,66132
+27251,42002
+27252,32095
+27253,47128
+27254,23536
+27255,25920
+27256,48689
+27257,22543
+27258,79831
+27259,68809
+27260,19379
+27261,72283
+27262,28556
+27263,69354
+27264,57615
+27265,53417
+27266,39049
+27267,75860
+27268,36694
+27269,75717
+27270,64897
+27271,51773
+27272,77666
+27273,70914
+27274,63424
+27275,77012
+27276,45392
+27277,61260
+27278,25446
+27279,68448
+27280,18720
+27281,21345
+27282,74610
+27283,25787
+27284,50450
+27285,37411
+27286,37450
+27287,37405
+27288,47908
+27289,27280
+27290,76891
+27291,63124
+27292,41843
+27293,79871
+27294,18721
+27295,72701
+27296,29839
+27297,50296
+27298,20160
+27299,20604
+27300,20604
+27301,44384
+27302,42206
+27303,40752
+27304,31417
+27305,71029
+27306,22907
+27307,70033
+27308,60688
+27309,50758
+27310,66766
+27311,67957
+27312,72575
+27313,27307
+27314,27307
+27315,44456
+27316,31618
+27317,74549
+27318,78096
+27319,24843
+27320,20760
+27321,21905
+27322,28232
+27323,68686
+27324,28591
+27325,77008
+27326,21905
+27327,18978
+27328,18978
+27329,32269
+27330,40062
+27331,75472
+27332,75472
+27333,40064
+27334,32926
+27335,80185
+27336,25317
+27337,53189
+27338,31489
+27339,60216
+27340,81786
+27341,38391
+27342,38822
+27343,69012
+27344,27649
+27345,75472
+27346,43814
+27347,35926
+27348,74281
+27349,52146
+27350,33113
+27351,61259
+27352,45367
+27353,28890
+27354,28889
+27355,29839
+27356,44140
+27357,30231
+27358,67946
+27359,55756
+27360,34783
+27361,47855
+27362,39920
+27363,24306
+27364,49409
+27365,67946
+27366,67946
+27367,28786
+27368,70033
+27369,63434
+27370,69774
+27371,81190
+27372,73412
+27373,60097
+27374,73837
+27375,31616
+27376,60823
+27377,30680
+27378,50701
+27379,35284
+27380,61764
+27381,60847
+27382,30681
+27383,21550
+27384,62145
+27385,38621
+27386,76776
+27387,51391
+27388,37688
+27389,20743
+27390,40055
+27391,31337
+27392,32
+27393,60216
+27394,56179
+27395,56179
+27396,28844
+27397,19129
+27398,39599
+27399,29839
+27400,11862
+27401,28821
+27402,28822
+27403,26320
+27404,66862
+27405,55373
+27406,30954
+27407,30954
+27408,80761
+27409,39696
+27410,50684
+27411,25202
+27412,67614
+27413,27564
+27414,77347
+27415,30937
+27416,34025
+27417,36101
+27418,53059
+27419,54694
+27420,69335
+27421,50773
+27422,68692
+27423,55352
+27424,76752
+27425,77357
+27426,80753
+27427,81226
+27428,80275
+27429,46507,39423
+27430,52451
+27431,39210
+27432,77641
+27433,25434
+27434,41743
+27435,37179
+27436,27167
+27437,74192
+27438,27431
+27439,39318
+27440,60032
+27441,68538
+27442,54188
+27443,63072
+27444,79029
+27445,46698
+27446,45812
+27447,45813
+27448,40564
+27449,25770
+27450,67675
+27451,19069
+27452,48293
+27453,66528
+27454,66536
+27455,52544
+27456,35130
+27457,19069,71567
+27458,20977
+27459,28780
+27460,31940
+27461,21403
+27462,22057
+27463,27459
+27464,58162
+27465,76198
+27466,35319,44221
+27467,31058
+27468,55138
+27469,61703
+27470,41815
+27471,59020
+27472,62963
+27473,73081
+27474,71567,76028
+27475,28774
+27476,53628
+27477,35027
+27478,71881
+27479,67675
+27480,60175
+27481,19069
+27482,34829
+27483,35557
+27484,31058
+27485,44439
+27486,18770
+27487,44439
+27488,19069
+27489,28187
+27490,25434
+27491,42229
+27492,72883
+27493,53648
+27494,25098
+27495,74081
+27496,78160
+27497,27136
+27498,27497
+27499,52842
+27500,27514
+27501,32191
+27502,59020
+27503,62159
+27504,65204
+27505,51194
+27506,42093
+27507,39963
+27508,61395
+27509,75057
+27510,75057
+27511,52592
+27512,45813
+27513,40564
+27514,59020,58725
+27515,27781
+27516,46251
+27517,27508,46251
+27518,58200
+27519,45490
+27520,33585
+27521,73200
+27522,37656,53355
+27523,55050
+27524,55685
+27525,40746
+27526,56451
+27527,66437
+27528,60619
+27529,75261
+27530,74721
+27531,24379
+27532,40068
+27533,65262
+27534,30962
+27535,51862
+27536,57187
+27537,28586
+27538,79282
+27539,79683
+27540,60032
+27541,57187
+27542,62145
+27543,69803
+27544,53701
+27545,34987
+27546,38106
+27547,35392
+27548,71996
+27549,53716
+27550,74939
+27551,45490
+27552,38699
+27553,66172,37656
+27554,71937
+27555,35626
+27556,48126
+27557,79259
+27558,79258
+27559,66953
+27560,27508,74825
+27561,62578
+27562,81601
+27563,63416
+27564,65869
+27565,57461
+27566,63195
+27567,44558
+27568,27571
+27569,27571
+27570,62456
+27571,63144
+27572,48937
+27573,28741
+27574,22137
+27575,19438
+27576,47763
+27577,73806
+27578,41173
+27579,53171
+27580,57573
+27581,33479
+27582,31618
+27583,53958
+27584,37776
+27585,31616
+27586,33303
+27587,33305
+27588,36101
+27589,45264
+27590,45643
+27591,51540
+27592,69744
+27593,79992
+27594,77641
+27595,34249
+27596,81396
+27597,70033
+27598,59262
+27599,28980
+27600,55768
+27601,73837
+27602,27601
+27603,24306
+27604,33793
+27605,22853
+27606,70033
+27607,37179
+27608,46066
+27609,76303
+27610,42351
+27611,53717
+27612,69439
+27613,54562
+27614,76989
+27615,60935
+27616,60936
+27617,39318
+27618,80460
+27619,28449
+27620,39713
+27621,69978
+27622,61159
+27623,62571
+27624,23370
+27625,45813
+27626,76210
+27627,78891
+27628,23541
+27629,41022
+27630,23550
+27631,27167
+27632,27688
+27633,71594
+27634,65771
+27635,70426
+27636,70427
+27637,73805
+27638,27640
+27639,59549
+27640,60627,60786,21034
+27641,21703
+27642,28807
+27643,56451
+27644,66279
+27645,31828
+27646,66500
+27647,41588
+27648,33644
+27649,25256
+27650,59423
+27651,56445
+27652,61052
+27653,81547
+27654,44963
+27655,49883
+27656,23021
+27657,52854
+27658,67274
+27659,72610
+27660,20883
+27661,23679
+27662,47026
+27663,77287
+27664,32966
+27665,56176
+27666,23610
+27667,23748
+27668,25222
+27669,49951
+27670,52094
+27671,76718
+27672,58734
+27673,69564
+27674,64073
+27675,29692
+27676,75106
+27677,22688
+27678,57980
+27679,80583
+27680,72791
+27681,42165
+27682,72409
+27683,42035
+27684,44609
+27685,19943
+27686,53660
+27687,25088
+27688,46602
+27689,25194
+27690,62965
+27691,30650
+27692,81746
+27693,66750
+27694,49997
+27695,62187
+27696,28774
+27697,68990
+27698,64435
+27699,58166
+27700,77585
+27701,26577
+27702,47560,79250
+27703,34437
+27704,46382
+27705,64527
+27706,25098
+27707,57640
+27708,66965
+27709,66977
+27710,66355
+27711,45813
+27712,49391
+27713,63676
+27714,33146
+27715,77521
+27716,22744
+27717,22684
+27718,22510
+27719,28616
+27720,57983
+27721,79973
+27722,45287
+27723,22271
+27724,81626
+27725,36329
+27726,20760
+27727,25256
+27728,59549
+27729,40293
+27730,73837
+27731,36710
+27732,31618
+27733,43102
+27734,25574
+27735,31618
+27736,69915
+27737,81396
+27738,36338
+27739,27741
+27740,54918
+27741,20385
+27742,37422
+27743,23855
+27744,25727
+27745,53660
+27746,53660
+27747,41929
+27748,74482
+27749,36410
+27750,59020
+27751,80753
+27752,19144
+27753,81759
+27754,63064
+27755,23972
+27756,68522
+27757,32791
+27758,41214
+27759,49945
+27760,30531
+27761,45813
+27762,35096
+27763,35097
+27764,81329
+27765,80394
+27766,74133
+27767,38555
+27768,21200
+27769,81161
+27770,73156
+27771,78014
+27772,23095
+27773,26232
+27774,33085
+27775,23095
+27776,72971
+27777,60216
+27778,63047
+27779,21510
+27780,39111
+27781,31616
+27782,31618
+27783,65108
+27784,31616
+27785,43911
+27786,45096
+27787,23650
+27788,63334
+27789,73081
+27790,63334
+27791,19735
+27792,46163
+27793,75064
+27794,49945
+27795,29542
+27796,81642
+27797,68780
+27798,20385
+27799,65910
+27800,20530
+27801,81801
+27802,60507
+27803,43475
+27804,80258
+27805,29921
+27806,67903
+27807,81227
+27808,23149
+27809,80636
+27810,50459
+27811,33422
+27812,59645
+27813,26049
+27814,23019
+27815,18988
+27816,32817
+27817,33005
+27818,34087
+27819,47830
+27820,52497
+27821,27823
+27822,74275
+27823,73814
+27824,37181
+27825,57249
+27826,60216
+27827,28702
+27828,81552
+27829,39049
+27830,32578
+27831,41444
+27832,27506
+27833,42080
+27834,31618
+27835,25574
+27836,63414
+27837,45679
+27838,27837
+27839,40564
+27840,70033
+27841,72913
+27842,66965
+27843,35557
+27844,35558
+27845,31616
+27846,75340
+27847,37479
+27848,65213
+27849,52633
+27850,77641
+27851,50585
+27852,23095
+27853,25872
+27854,54562
+27855,79485
+27856,64864
+27857,42351
+27858,31940
+27859,71517
+27860,22907
+27861,76428
+27862,48875
+27863,18656
+27864,73018
+27865,29626
+27866,29626
+27867,20751
+27868,29633
+27869,81626
+27870,69503
+27871,66899
+27872,63819
+27873,65075
+27874,71269
+27875,29120
+27876,40330
+27877,34148
+27878,79905
+27879,41279
+27880,28844
+27881,28848
+27882,70033
+27883,57637
+27884,63863
+27885,62403
+27886,57934
+27887,56546
+27888,21088
+27889,70426
+27890,48153
+27891,79546
+27892,34210
+27893,79546
+27894,77641
+27895,65056
+27896,21511
+27897,38430
+27898,23760
+27899,43790,81462
+27900,39587
+27901,70033
+27902,51395
+27903,80583
+27904,46178
+27905,28025
+27906,28954
+27907,57861
+27908,45813
+27909,80789
+27910,28954
+27911,65108
+27912,20746
+27913,40572
+27914,60304
+27915,66542
+27916,35534
+27917,69564
+27918,43148
+27919,19694
+27920,58162
+27921,66377
+27922,78194
+27923,24068
+27924,38053
+27925,51502
+27926,47186
+27927,63605
+27928,54132
+27929,51677
+27930,25302
+27931,67161
+27932,51186
+27933,23550
+27934,60032
+27935,28790
+27936,28054
+27937,19211
+27938,31812
+27939,28793
+27940,25046
+27941,52811
+27942,40752
+27943,72055
+27944,65754
+27945,50717
+27946,34355
+27947,37904
+27948,34924
+27949,39014
+27950,80394
+27951,39018
+27952,48126
+27953,20745
+27954,43109
+27955,19480
+27956,47487
+27957,76966
+27958,68211
+27959,58287
+27960,67566
+27961,33186
+27962,57333
+27963,53023
+27964,39423
+27965,42094
+27966,36396
+27967,77147
+27968,47908
+27969,19438
+27970,66154
+27971,33005
+27972,37776,65108
+27973,62142
+27974,48114
+27975,39072,23240
+27976,61401
+27977,19129
+27978,73838
+27979,60570,55388
+27980,75552
+27981,75552
+27982,75313
+27983,48640
+27984,25302
+27985,75548
+27986,46553
+27987,18864
+27988,73863
+27989,75902
+27990,55203
+27991,44451
+27992,31158
+27993,28419
+27994,33455
+27995,74478
+27996,57461
+27997,50459
+27998,33184
+27999,41588
+28000,71398
+28001,46191
+28002,31991
+28003,63867
+28004,63867
+28005,76422
+28006,29314
+28007,29314
+28008,40231
+28009,78096
+28010,57934
+28011,51184
+28012,75913
+28013,37430
+28014,42249
+28015,23538
+28016,48842
+28017,34858
+28018,48144
+28019,74568
+28020,45813
+28021,58016
+28022,33645
+28023,31239
+28024,25434
+28025,53275
+28026,23693
+28027,52830
+28028,25519
+28029,25858
+28030,39563
+28031,41556
+28032,36528
+28033,37279
+28034,25920
+28035,77341
+28036,73372
+28037,27592
+28038,41743
+28039,58088
+28040,80618
+28041,61355
+28042,80012
+28043,53761
+28044,73837
+28045,65584
+28046,75152
+28047,23206
+28048,72791
+28049,39722
+28050,33135
+28051,33134
+28052,22238
+28053,68635
+28054,60600
+28055,58776
+28056,65691
+28057,58208
+28058,49502
+28059,47797
+28060,29569
+28061,28054
+28062,66727
+28063,19171
+28064,31058
+28065,48408
+28066,57934
+28067,22137
+28068,80164
+28069,49373
+28070,72983
+28071,63072
+28072,52805
+28073,45260
+28074,21597
+28075,54427
+28076,80152
+28077,74867
+28078,71493
+28079,71493
+28080,43107
+28081,30367
+28082,79467
+28083,57081
+28084,62936
+28085,62902
+28086,37779
+28087,28080
+28088,79341
+28089,54953
+28090,66868
+28091,73837
+28092,34114
+28093,71837
+28094,80047
+28095,66862
+28096,33184
+28097,28970
+28098,27368
+28099,40564
+28100,61968
+28101,37802
+28102,67951
+28103,28091
+28104,31417
+28105,31417
+28106,81482
+28107,28849
+28108,37582
+28109,28105
+28110,80475
+28111,6663
+28112,34985
+28113,28309
+28114,28309
+28115,28309
+28116,28309
+28117,28309
+28118,28309
+28119,31978
+28120,59378
+28121,20238
+28122,20238
+28123,78862
+28124,31739
+28125,62029
+28126,62029
+28127,62852
+28128,60216
+28129,35838
+28130,19541
+28131,66693
+28132,47673
+28133,4298
+28134,66977
+28135,45813
+28136,58675
+28137,79259
+28138,45813
+28139,50517
+28140,31417
+28141,40564
+28142,40564
+28143,33146
+28144,28140
+28145,49697
+28146,56176
+28147,44113
+28148,43416
+28149,73112
+28150,45969
+28151,21998
+28152,56241
+28153,61646
+28154,74535
+28155,54562
+28156,35626
+28157,21703
+28158,31245
+28159,65767
+28160,28260
+28161,78160
+28162,37859
+28163,30953
+28164,51807
+28165,61793
+28166,66953
+28167,37405
+28168,66953
+28169,47561
+28170,58162
+28171,69072
+28172,68289
+28173,50649
+28174,73470
+28175,39556
+28176,23252
+28177,24780
+28178,55768
+28179,25536
+28180,61318
+28181,70859
+28182,64564
+28183,60598
+28184,19349
+28185,48126
+28186,76201
+28187,61906
+28188,28189
+28189,38385
+28190,28189,56752
+28191,19343
+28192,28188
+28193,28189,81818
+28194,61311
+28195,28091
+28196,67601
+28197,51091
+28198,57241
+28199,39999
+28200,31205
+28201,26302
+28202,19342
+28203,31058
+28204,71521
+28205,70515
+28206,65758
+28207,44474
+28208,53861
+28209,79469
+28210,60216
+28211,57573
+28212,34408
+28213,32417
+28214,35446
+28215,32374
+28216,57573
+28217,41410,16008
+28218,9828
+28219,55952
+28220,40752
+28221,74067
+28222,41410
+28223,57682
+28224,20819
+28225,46215
+28226,23310
+28227,41249
+28228,29626
+28229,62142
+28230,51532
+28231,62142
+28232,61136
+28233,74735
+28234,26298
+28235,57332
+28236,21475
+28237,61646
+28238,56492
+28239,51531
+28240,24392
+28241,62142
+28242,77277
+28243,58395
+28244,28248
+28245,28237
+28246,28247
+28247,28237
+28248,28237
+28249,63792
+28250,72504
+28251,46027
+28252,28236
+28253,40038
+28254,72504,40953
+28255,59417
+28256,51464
+28257,39528
+28258,34199
+28259,41410
+28260,63813
+28261,54181
+28262,41410
+28263,54183
+28264,41410
+28265,21718
+28266,54188
+28267,81647
+28268,21703
+28269,40063
+28270,28990
+28271,44730
+28272,45559
+28273,75016
+28274,37479,45165
+28275,68374
+28276,79282
+28277,79282
+28278,79282
+28279,70183
+28280,61767
+28281,62147
+28282,31515
+28283,42348
+28284,28267
+28285,41103
+28286,63775
+28287,56179
+28288,21200
+28289,58154
+28290,18905
+28291,41103
+28292,61789
+28293,19438
+28294,28248
+28295,73837
+28296,33678
+28297,25256
+28298,80184
+28299,76664
+28300,28309
+28301,45757
+28302,64846
+28303,79282
+28304,29189
+28305,20977
+28306,53621
+28307,54978
+28308,20977
+28309,20977
+28310,28309
+28311,48423
+28312,78984
+28313,21669
+28314,43273
+28315,57640
+28316,52368
+28317,58226
+28318,76210
+28319,33581
+28320,50459
+28321,23527
+28322,25812
+28323,44013
+28324,25546
+28325,25574
+28326,57304
+28327,21703
+28328,56492
+28329,79282
+28330,56492
+28331,20654
+28332,36710
+28333,21703
+28334,56492
+28335,37162
+28336,24700
+28337,25673
+28338,76420
+28339,79282
+28340,53894
+28341,56492
+28342,39049
+28343,41243
+28344,19228
+28345,19228
+28346,19541
+28347,80460
+28348,55146
+28349,37179
+28350,65262
+28351,54082
+28352,51625
+28353,15897
+28354,19069
+28355,28357
+28356,30275
+28357,64142
+28358,35926
+28359,34087
+28360,28358
+28361,22274
+28362,28702
+28363,54446
+28364,18984
+28365,81770
+28366,28356
+28367,60786
+28368,80460
+28369,54562
+28370,21703
+28371,36710
+28372,31689
+28373,74973
+28374,38740
+28375,72212
+28376,56451
+28377,71019
+28378,79282
+28379,79429
+28380,48126
+28381,19193
+28382,58200
+28383,34435
+28384,54082
+28385,28384
+28386,73447
+28387,65775
+28388,29480
+28389,21360
+28390,28017,35581
+28391,54185
+28392,22853
+28393,82095
+28394,42049
+28395,30390
+28396,43313
+28397,22500
+28398,59020
+28399,45374
+28400,45813
+28401,69348
+28402,26673
+28403,75803
+28404,33284
+28405,40938
+28406,61257
+28407,40068
+28408,74067
+28409,75803
+28410,31861
+28411,32578
+28412,37612
+28413,51523
+28414,26577
+28415,56289
+28416,66154
+28417,51301
+28418,78697
+28419,69235
+28420,56289
+28421,71062
+28422,39676
+28423,42142
+28424,51069
+28425,25101
+28426,60673
+28427,47592
+28428,57143
+28429,28792
+28430,62432
+28431,32982
+28432,69408
+28433,69860
+28434,61004
+28435,28434
+28436,39638
+28437,68692
+28438,68691
+28439,28438
+28440,70609
+28441,32152
+28442,62145
+28443,27688
+28444,28438
+28445,32895
+28446,61260
+28447,20760
+28448,68704
+28449,64231,77509
+28450,47127
+28451,28450
+28452,54562
+28453,54562
+28454,2492
+28455,46782
+28456,33353
+28457,70033
+28458,26914
+28459,80845
+28460,81794
+28461,36816
+28462,73743
+28463,75214
+28464,61066
+28465,25770
+28466,70526
+28467,72052
+28468,57346
+28469,64281
+28470,34460
+28471,39049
+28472,21886
+28473,28091
+28474,66953
+28475,37776
+28476,29643
+28477,21938
+28478,58081
+28479,28307
+28480,77626
+28481,73210
+28482,52679
+28483,65108
+28484,39049
+28485,60216
+28486,51814
+28487,77666
+28488,24392
+28489,61209
+28490,43556
+28491,50784
+28492,60744
+28493,45813
+28494,45813
+28495,48894
+28496,71927
+28497,33351
+28498,81808
+28499,66702
+28500,34285
+28501,31646
+28502,46027
+28503,70033
+28504,66682
+28505,53034
+28506,21474
+28507,43814
+28508,62929
+28509,45383
+28510,62145
+28511,21455
+28512,32527
+28513,71636
+28514,78455
+28515,51362
+28516,40625
+28517,66178
+28518,52773
+28519,27153
+28520,73476
+28521,21568
+28522,65691
+28523,30300
+28524,27811
+28525,27811
+28526,31477
+28527,76248
+28528,29928
+28529,19200
+28530,45096
+28531,61078
+28532,28539
+28533,28534
+28534,28529
+28535,28529
+28536,55494
+28537,28529
+28538,28529
+28539,28529
+28540,23819
+28541,64142
+28542,50507
+28543,64142
+28544,28952
+28545,60216
+28546,25113
+28547,59420
+28548,30883
+28549,75713
+28550,77491
+28551,33886
+28552,28000
+28553,52920
+28554,77491
+28555,38091
+28556,65771
+28557,60992
+28558,19629
+28559,81613
+28560,37870
+28561,28571
+28562,60603
+28563,36883
+28564,31369
+28565,32662
+28566,50900
+28567,52803
+28568,52857
+28569,70033
+28570,40534
+28571,61145
+28572,69286
+28573,34285
+28574,29737
+28575,62145
+28576,59769
+28577,60385
+28578,21886
+28579,29969
+28580,38153
+28581,68809
+28582,26298
+28583,46782
+28584,27459
+28585,67658
+28586,33645
+28587,65974
+28588,22164
+28589,19438
+28590,77374
+28591,81802
+28592,65184
+28593,62133
+28594,19231
+28595,34263
+28596,62957
+28597,51677
+28598,81433
+28599,48461
+28600,64142
+28601,63314
+28602,43997
+28603,34735
+28604,81578
+28605,44548
+28606,36404
+28607,44083
+28608,81794
+28609,41773,27459
+28610,81626
+28611,73507
+28612,34420
+28613,44232
+28614,23742
+28615,51154
+28616,32269
+28617,34619
+28618,22112
+28619,45811
+28620,65975
+28621,38836
+28622,61422
+28623,37411
+28624,18910
+28625,35342
+28626,37935
+28627,37450
+28628,34924
+28629,80152
+28630,46602
+28631,27688
+28632,64403
+28633,36540
+28634,22162,48532
+28635,78059
+28636,42475
+28637,41338
+28638,48401
+28639,43335
+28640,23903,76136
+28641,35566
+28642,71938
+28643,34808
+28644,28643
+28645,40563
+28646,57333
+28647,27086
+28648,64175
+28649,60216
+28650,79236
+28651,14950
+28652,51677
+28653,53067
+28654,79738
+28655,31690
+28656,35926
+28657,53842
+28658,63652
+28659,18984
+28660,55015
+28661,53185
+28662,29688
+28663,41435
+28664,36496
+28665,57901
+28666,33796
+28667,55443
+28668,70572
+28669,61190
+28670,18834
+28671,79485
+28672,31795
+28673,80550
+28674,32461
+28675,54785
+28676,28417
+28677,60238
+28678,55272
+28679,56832
+28680,56832
+28681,38266
+28682,24704
+28683,71961
+28684,36542
+28685,28684
+28686,77641
+28687,57594
+28688,59577
+28689,24111
+28690,59576
+28691,32807
+28692,69944
+28693,69940
+28694,59769
+28695,75442
+28696,54721
+28697,34126
+28698,19412
+28699,80538
+28700,57416
+28701,28844
+28702,36317
+28703,48367
+28704,24704
+28705,24143
+28706,21631
+28707,28591
+28708,28712
+28709,53171
+28710,65594
+28711,65201
+28712,22128
+28713,38603
+28714,52905
+28715,52857
+28716,25018
+28717,80808
+28718,25022
+28719,22955
+28720,63187
+28721,51677
+28722,79552
+28723,28844
+28724,32384
+28725,34617
+28726,64287
+28727,73445
+28728,66953
+28729,31343
+28730,38601
+28731,28747
+28732,60936
+28733,39531
+28734,39091
+28735,62361
+28736,25256
+28737,73573
+28738,33184
+28739,21328
+28740,72029
+28741,45097
+28742,22164
+28743,37789
+28744,74500
+28745,50701
+28746,67498
+28747,33729,41005
+28748,49897
+28749,35322
+28750,40999
+28751,61127
+28752,62740
+28753,66613
+28754,80941
+28755,71672
+28756,72503
+28757,77600
+28758,44956
+28759,26884
+28760,60534
+28761,42368
+28762,77308
+28763,24084
+28764,31846
+28765,30572
+28766,48126
+28767,35626
+28768,7653
+28769,45896
+28770,63065
+28771,28790
+28772,38984
+28773,20557
+28774,53454
+28775,19654
+28776,20530
+28777,25202,28796
+28778,22158
+28779,34293
+28780,74082
+28781,37884
+28782,37913
+28783,75613
+28784,28792
+28785,48030
+28786,74081
+28787,57058
+28788,56178
+28789,39122
+28790,56179
+28791,63314
+28792,28790
+28793,21200
+28794,75954
+28795,80106
+28796,80514
+28797,52324
+28798,36434
+28799,78578
+28800,19435
+28801,68290
+28802,74082
+28803,56182
+28804,71323
+28805,18869
+28806,50085
+28807,69118
+28808,37162
+28809,57934
+28810,75001
+28811,75507
+28812,76162
+28813,39049
+28814,31991
+28815,20120
+28816,33475
+28817,33476
+28818,51835
+28819,29349
+28820,81482
+28821,37179,36641
+28822,41743
+28823,44609
+28824,40206
+28825,70033
+28826,20690
+28827,27368
+28828,61510
+28829,73413
+28830,76915
+28831,76916
+28832,64129
+28833,64130
+28834,70259
+28835,22507
+28836,20655
+28837,45812
+28838,45813
+28839,26051
+28840,25022
+28841,29969
+28842,28845
+28843,53422
+28844,55488
+28845,61395
+28846,69331
+28847,28716
+28848,52905
+28849,25574
+28850,28091
+28851,41917
+28852,58776
+28853,63426
+28854,65590
+28855,33920
+28856,44140
+28857,81482
+28858,37181
+28859,26118
+28860,27018
+28861,46599
+28862,77641
+28863,24726
+28864,57289
+28865,2078
+28866,34305
+28867,54694
+28868,28619
+28869,22669
+28870,67290
+28871,55261
+28872,28539
+28873,31587
+28874,74735
+28875,77190
+28876,51068
+28877,60715
+28878,73837
+28879,66377
+28880,37513
+28881,25922
+28882,55486
+28883,36445
+28884,26827
+28885,28889,82053
+28886,76787
+28887,81129
+28888,31646
+28889,36049
+28890,62367
+28891,35557
+28892,35557
+28893,16697
+28894,35557
+28895,26103
+28896,28897
+28897,27843
+28898,39370
+28899,35557
+28900,39367
+28901,53311
+28902,45302
+28903,36634
+28904,51781
+28905,24326
+28906,53063
+28907,55465
+28908,35557
+28909,35557
+28910,56376
+28911,67594
+28912,67822
+28913,68465
+28914,64819
+28915,71719
+28916,41598
+28917,75115
+28918,81275
+28919,56472
+28920,81873
+28921,62449
+28922,36537
+28923,77661
+28924,50919
+28925,50917
+28926,50918
+28927,45813
+28928,60467
+28929,44609
+28930,66965
+28931,30249
+28932,67601
+28933,45813
+28934,67601
+28935,65075
+28936,32152
+28937,32152
+28938,49353
+28939,54425
+28940,56894
+28941,62145
+28942,39049
+28943,26884
+28944,28851
+28945,57757
+28946,44816
+28947,40572
+28948,24633
+28949,34723
+28950,60216
+28951,57585
+28952,49508
+28953,49509
+28954,42093
+28955,23664
+28956,52876
+28957,52876
+28958,62080
+28959,63106,28952
+28960,74498
+28961,19382
+28962,59375
+28963,32506
+28964,69281
+28965,76662
+28966,47532
+28967,82058
+28968,70526
+28969,35557
+28970,46721
+28971,46746
+28972,40564
+28973,31239
+28974,79612
+28975,30348
+28976,21304
+28977,74939
+28978,30348
+28979,46294
+28980,60042
+28981,47507
+28982,40784
+28983,80047
+28984,32097
+28985,27093
+28986,74809
+28987,60993
+28988,40784
+28989,29688
+28990,44104
+28991,39531
+28992,66123
+28993,73573
+28994,62053
+28995,26786
+28996,29677
+28997,60936
+28998,77641
+28999,32986
+29000,37181
+29001,52414
+29002,72895
+29003,41899
+29004,30072
+29005,66862
+29006,33500
+29007,72208
+29008,55807
+29009,32662
+29010,3599
+29011,71686
+29012,23021
+29013,39049
+29014,42518
+29015,67651
+29016,81193
+29017,67649
+29018,77985
+29019,28864
+29020,39049
+29021,40658
+29022,21311
+29023,25803
+29024,36591
+29025,71108
+29026,69050
+29027,32383
+29028,25019
+29029,72680
+29030,67972
+29031,49116
+29032,11867
+29033,58776
+29034,71996
+29035,77636
+29036,76160
+29037,71686
+29038,20772
+29039,71686
+29040,37169
+29041,73081
+29042,43313
+29043,28672
+29044,61906
+29045,78188
+29046,54978
+29047,79189
+29048,32535
+29049,62934
+29050,45812
+29051,20079
+29052,79328
+29053,38475
+29054,72409
+29055,27296
+29056,74939
+29057,68852
+29058,20046
+29059,21060
+29060,20977
+29061,67675
+29062,23925
+29063,19979
+29064,59192
+29065,21060
+29066,19069
+29067,31058
+29068,44908
+29069,28790
+29070,35582
+29071,28780,42246,44933
+29072,35319,24695
+29073,71557,24695
+29074,34326
+29075,54562
+29076,75576
+29077,47047,71567
+29078,75576
+29079,40825,61828,44221
+29080,44932,48215
+29081,60786
+29082,29081
+29083,29081
+29084,29081
+29085,29081
+29086,31058
+29087,61321
+29088,26627
+29089,21018
+29090,48884
+29091,76218,21013
+29092,19069
+29093,21012
+29094,52762,60418
+29095,58180
+29096,20977
+29097,35815
+29098,40424
+29099,29106
+29100,29112
+29101,24781
+29102,41005
+29103,26118
+29104,29106
+29105,26884
+29106,29102
+29107,31853
+29108,37099
+29109,5257
+29110,40999
+29111,41772
+29112,47327
+29113,49877,29106
+29114,29102
+29115,54446
+29116,55464
+29117,63677
+29118,67957
+29119,34149
+29120,19200
+29121,33725
+29122,29214
+29123,21474
+29124,69331
+29125,42039
+29126,62661
+29127,29206
+29128,55767
+29129,79097
+29130,30296
+29131,41729
+29132,28822
+29133,27466
+29134,29619
+29135,61646
+29136,78647
+29137,56289
+29138,30374
+29139,62981
+29140,35626
+29141,74187
+29142,66874
+29143,48126
+29144,18728
+29145,48126
+29146,42322
+29147,51713
+29148,51726
+29149,48084
+29150,42316
+29151,42316
+29152,73202
+29153,24126
+29154,1594
+29155,38053
+29156,26827
+29157,28872
+29158,15840
+29159,12071
+29160,68316
+29161,66786
+29162,23906
+29163,67883
+29164,43977
+29165,51929
+29166,60603
+29167,33500
+29168,49149
+29169,66260
+29170,44420
+29171,44232
+29172,29286
+29173,81656
+29174,35557
+29175,69818
+29176,23712
+29177,76989
+29178,73492
+29179,24781
+29180,25017
+29181,75086
+29182,50701
+29183,57531
+29184,47128
+29185,62637
+29186,73537
+29187,57066
+29188,54026
+29189,20743
+29190,39294
+29191,42539
+29192,48126
+29193,48126
+29194,73752
+29195,56454,34356
+29196,18663
+29197,32799
+29198,33789
+29199,57058
+29200,53848
+29201,53894
+29202,67432
+29203,79602
+29204,24268
+29205,66212
+29206,70426
+29207,67972
+29208,53848
+29209,61468
+29210,79282
+29211,21703
+29212,53067
+29213,50565
+29214,55761
+29215,71686
+29216,30939
+29217,51469
+29218,77666
+29219,33797
+29220,33851
+29221,37569
+29222,59970
+29223,32233
+29224,72310
+29225,39357
+29226,64287
+29227,35557
+29228,65777
+29229,31495
+29230,71719
+29231,38624
+29232,57640
+29233,39676
+29234,23012
+29235,67675
+29236,18709
+29237,30467
+29238,68057
+29239,39777
+29240,25119
+29241,79741
+29242,60788
+29243,65216
+29244,56179
+29245,29256
+29246,20122
+29247,20122
+29248,55221,67675
+29249,60786
+29250,44160
+29251,65262
+29252,60786
+29253,74982
+29254,19069
+29255,54562
+29256,54082
+29257,24679
+29258,31058
+29259,51719
+29260,44439
+29261,61321
+29262,18706
+29263,25092
+29264,50649
+29265,26064
+29266,42314
+29267,43380
+29268,43449
+29269,51099
+29270,29269
+29271,55884,29269
+29272,37701,29265
+29273,63996
+29274,65825
+29275,20745
+29276,46148
+29277,76682
+29278,19635
+29279,75764
+29280,81801
+29281,46901
+29282,29845
+29283,53624
+29284,63835
+29285,40753
+29286,40752
+29287,54562,57861
+29288,57722,77509
+29289,77509,28449
+29290,28812
+29291,21782
+29292,33644
+29293,52521
+29294,61537
+29295,33512
+29296,46256
+29297,43566
+29298,33512
+29299,79973
+29300,47455
+29301,68854
+29302,56832
+29303,69818
+29304,59308
+29305,22721
+29306,67651
+29307,71302
+29308,79547
+29309,79953
+29310,50438
+29311,64633
+29312,25094
+29313,65753
+29314,61145
+29315,76129
+29316,23796
+29317,6983
+29318,54503
+29319,27116
+29320,39802
+29321,57573
+29322,66889
+29323,65770
+29324,69286
+29325,77185
+29326,81907
+29327,65767
+29328,29321
+29329,81871
+29330,77985
+29331,79469
+29332,44682
+29333,31239
+29334,33176
+29335,60216
+29336,51649
+29337,22058
+29338,41004
+29339,46408
+29340,35184
+29341,51523
+29342,44561
+29343,60032
+29344,24007
+29345,40690
+29346,54469
+29347,79612
+29348,62740
+29349,66895
+29350,52674
+29351,22903
+29352,25574
+29353,26648
+29354,33542
+29355,51353
+29356,71062
+29357,66895
+29358,26498
+29359,26648
+29360,27781
+29361,46252,78096
+29362,76757
+29363,71062
+29364,29349
+29365,21703
+29366,53848
+29367,79282
+29368,63472
+29369,58154
+29370,46136,20889
+29371,20053
+29372,78598
+29373,72701
+29374,77641
+29375,23095
+29376,29374
+29377,20038
+29378,41417
+29379,26299
+29380,60769
+29381,64417
+29382,76104
+29383,55499
+29384,40752
+29385,56492
+29386,73837
+29387,54562
+29388,21462
+29389,19629
+29390,72142
+29391,50585
+29392,23095
+29393,23095
+29394,633
+29395,25770
+29396,40774
+29397,74778
+29398,42229
+29399,76802
+29400,81865
+29401,27756
+29402,70033
+29403,54043
+29404,30186
+29405,30865
+29406,20977
+29407,24245
+29408,69543
+29409,37577
+29410,68697
+29411,67049
+29412,21703
+29413,29409
+29414,29409
+29415,19421
+29416,59542
+29417,44437
+29418,37405
+29419,62954
+29420,41929
+29421,21222
+29422,37479
+29423,19272
+29424,75027
+29425,61209
+29426,62432
+29427,67148
+29428,19483
+29429,34137
+29430,32372
+29431,32372
+29432,58161
+29433,28536
+29434,35702
+29435,72506
+29436,27555
+29437,79214
+29438,66690
+29439,18784
+29440,55348
+29441,50976
+29442,25499
+29443,70548
+29444,34985
+29445,21703
+29446,29445
+29447,29452
+29448,29445
+29449,29445
+29450,29452
+29451,29445
+29452,79282
+29453,38522
+29454,79385
+29455,77575
+29456,66157
+29457,35522
+29458,31245
+29459,28346
+29460,48156
+29461,62178
+29462,38562
+29463,38523
+29464,67054
+29465,30939
+29466,72712
+29467,21485
+29468,69978
+29469,35792
+29470,19143
+29471,27267
+29472,23284
+29473,51786
+29474,29936
+29475,29936
+29476,63064
+29477,75807
+29478,29936
+29479,80977
+29480,66025,61979
+29481,75292
+29482,67432
+29483,72052
+29484,74303
+29485,57065
+29486,22420
+29487,41228
+29488,56116
+29489,44437
+29490,50888
+29491,34470
+29492,29502
+29493,29503
+29494,67675,38385
+29495,19069
+29496,64231,77509
+29497,29502
+29498,29503
+29499,81482
+29500,53599
+29501,20355
+29502,37179
+29503,41743
+29504,53599
+29505,80978
+29506,44593
+29507,19379
+29508,55652
+29509,55651
+29510,28236
+29511,32362
+29512,37193
+29513,35787
+29514,56607
+29515,57573
+29516,44914
+29517,51435
+29518,25495
+29519,40065
+29520,61240
+29521,70840
+29522,72960
+29523,78725
+29524,61670
+29525,58803
+29526,79794
+29527,46847
+29528,36840
+29529,50701
+29530,62844
+29531,71324
+29532,29557
+29533,50872
+29534,22268
+29535,54408
+29536,31635
+29537,50888
+29538,63416
+29539,35362
+29540,37908
+29541,37913
+29542,50603
+29543,51177
+29544,29548
+29545,41516
+29546,53239
+29547,58099
+29548,46894
+29549,65531
+29550,57573
+29551,43818
+29552,50637
+29553,76633
+29554,53167
+29555,80106
+29556,29488
+29557,29928
+29558,32535
+29559,71321
+29560,71341
+29561,33729
+29562,56832
+29563,79097
+29564,24243
+29565,75513
+29566,72791
+29567,77642
+29568,21898
+29569,21898
+29570,34461
+29571,66551
+29572,41221
+29573,78980
+29574,21272
+29575,46620
+29576,63569
+29577,63566
+29578,69677
+29579,24442
+29580,29230
+29581,35322
+29582,31862
+29583,29779
+29584,51939
+29585,45813
+29586,33186
+29587,46256
+29588,51440
+29589,69662
+29590,36430
+29591,48478
+29592,56832
+29593,25002
+29594,71192
+29595,53842
+29596,70164
+29597,50563
+29598,73736
+29599,60538
+29600,40987
+29601,27688
+29602,33845
+29603,2291,65374
+29604,33351
+29605,48629
+29606,26656
+29607,70434
+29608,65449
+29609,55768
+29610,25729
+29611,31070
+29612,29349
+29613,67548
+29614,67547
+29615,67548
+29616,31349
+29617,31349
+29618,39423
+29619,44012
+29620,61609
+29621,75510
+29622,37513
+29623,30391
+29624,50742
+29625,42351
+29626,59970
+29627,42351
+29628,29621
+29629,47390
+29630,50637
+29631,46708
+29632,51677
+29633,71318
+29634,31353
+29635,21765
+29636,32793
+29637,45741
+29638,9453
+29639,21448
+29640,22819
+29641,31259
+29642,53657
+29643,55742
+29644,55955
+29645,21771
+29646,46901,21771
+29647,21765
+29648,46899
+29649,51705
+29650,66157
+29651,21618
+29652,23258
+29653,21620
+29654,56604
+29655,30836
+29656,76256
+29657,81578,55246
+29658,66953
+29659,68242
+29660,68242
+29661,41417
+29662,66786
+29663,56832
+29664,31564
+29665,56540
+29666,70395
+29667,23206
+29668,49697,73752
+29669,25256
+29670,49697,73752
+29671,46591
+29672,24314
+29673,38984
+29674,45271
+29675,66142
+29676,34350
+29677,71446
+29678,76441
+29679,75383
+29680,60994
+29681,26027
+29682,50303
+29683,66785
+29684,80619
+29685,21952
+29686,22059
+29687,66953
+29688,50117
+29689,69870
+29690,69860
+29691,47716
+29692,47655
+29693,58734,29692
+29694,44740
+29695,77374
+29696,67839
+29697,63879
+29698,41265
+29699,62142
+29700,48281
+29701,78208
+29702,33812
+29703,51653
+29704,48663
+29705,51205
+29706,67614
+29707,51174
+29708,47716
+29709,77277
+29710,40063
+29711,64142
+29712,66727
+29713,63218
+29714,39423
+29715,73761
+29716,69818
+29717,72959
+29718,28790
+29719,21477
+29720,35879
+29721,28170
+29722,49945
+29723,23675
+29724,55760
+29725,47920
+29726,34350
+29727,24354
+29728,24354
+29729,68987
+29730,21802
+29731,79608,29780
+29732,50979
+29733,52938
+29734,52939
+29735,81227
+29736,62858
+29737,72283
+29738,29737
+29739,30374
+29740,61766
+29741,35474
+29742,23748
+29743,79418
+29744,37712
+29745,62145
+29746,48474
+29747,32492
+29748,22788
+29749,31991
+29750,34660
+29751,71686
+29752,37333
+29753,29751
+29754,27777
+29755,63602
+29756,26598
+29757,59970
+29758,43107
+29759,39676
+29760,35822
+29761,784
+29762,36868
+29763,76389
+29764,74659
+29765,31646
+29766,38155
+29767,24245
+29768,38044
+29769,31245
+29770,75742
+29771,82152
+29772,38807
+29773,54127
+29774,34363
+29775,66377
+29776,54993
+29777,49444
+29778,66676
+29779,66674
+29780,79608
+29781,22032
+29782,39676
+29783,79608
+29784,39676,29780
+29785,41444
+29786,79608
+29787,79608
+29788,47026
+29789,47026
+29790,70033
+29791,29784
+29792,45813
+29793,40293
+29794,67608
+29795,39423
+29796,52956
+29797,56962
+29798,76981
+29799,34864
+29800,21510
+29801,37179
+29802,61318
+29803,60032
+29804,53700
+29805,69325
+29806,53693
+29807,20577
+29808,63603
+29809,53975
+29810,75976
+29811,62459
+29812,24710
+29813,25889
+29814,24354
+29815,24354
+29816,74597
+29817,51395
+29818,49222
+29819,39423
+29820,24874
+29821,33504
+29822,71686
+29823,34924
+29824,31111
+29825,74825
+29826,72448
+29827,49426
+29828,81791
+29829,69597
+29830,68304
+29831,67574
+29832,38624
+29833,69335
+29834,79282
+29835,18728
+29836,38237
+29837,28091
+29838,32578
+29839,58508
+29840,42228
+29841,52172
+29842,66953
+29843,63424
+29844,54503
+29845,76680
+29846,22133
+29847,39062
+29848,43686
+29849,60602
+29850,64520
+29851,64974
+29852,77185
+29853,47432
+29854,36800
+29855,32691
+29856,53660
+29857,18054
+29858,53717
+29859,46091
+29860,41090
+29861,75330
+29862,33798
+29863,37750
+29864,32522
+29865,39701
+29866,77802
+29867,58166
+29868,21013
+29869,24244
+29870,31842
+29871,53717
+29872,54413
+29873,39928
+29874,18969
+29875,54414
+29876,70516
+29877,74493
+29878,74501
+29879,75701
+29880,48801
+29881,45493
+29882,28418
+29883,29418
+29884,32155
+29885,32491
+29886,33455
+29887,42523
+29888,42523
+29889,48661
+29890,31757
+29891,35376
+29892,30937
+29893,78721
+29894,32155
+29895,23851
+29896,78788
+29897,67614
+29898,60216
+29899,65752
+29900,66953
+29901,71119
+29902,36373
+29903,46409
+29904,60534
+29905,27062
+29906,21314
+29907,62810
+29908,46767
+29909,38475
+29910,38475,24289
+29911,75917
+29912,58108
+29913,6654
+29914,29912
+29915,22788
+29916,27276
+29917,32578
+29918,80143
+29919,36669,80896
+29920,44975
+29921,76718
+29922,61732
+29923,26166
+29924,41444
+29925,31991
+29926,39423
+29927,53959
+29928,32578,31590
+29929,69860
+29930,32775
+29931,76664
+29932,43434
+29933,74628
+29934,78767
+29935,60603
+29936,22053
+29937,47505
+29938,29936
+29939,59340
+29940,23912
+29941,64809
+29942,22667
+29943,57856
+29944,69051
+29945,79156
+29946,74355
+29947,75384
+29948,55984
+29949,40757
+29950,72142
+29951,72146
+29952,42217
+29953,49997
+29954,38369
+29955,46486
+29956,53176
+29957,45813
+29958,26409
+29959,21359
+29960,48513
+29961,20751
+29962,41023
+29963,30584
+29964,20642
+29965,52762
+29966,34989
+29967,61402
+29968,73222
+29969,21938
+29970,27408
+29971,31759
+29972,31970
+29973,53842
+29974,39677
+29975,67822
+29976,74939
+29977,34350
+29978,26298
+29979,66953
+29980,41877
+29981,33184
+29982,38563
+29983,71895
+29984,60216
+29985,71446
+29986,71398
+29987,77641
+29988,25202
+29989,43516
+29990,43516
+29991,27093
+29992,50184
+29993,62030
+29994,75772
+29995,26077
+29996,32492
+29997,59762
+29998,22686
+29999,64455,56836
+30000,35627
+30001,63423
+30002,23896
+30003,40070
+30004,78579
+30005,37356
+30006,21289
+30007,72893
+30008,27688
+30009,77366
+30010,75548
+30011,36329
+30012,58378
+30013,32691
+30014,37721
+30015,36540
+30016,80794
+30017,21922
+30018,19654
+30019,38053
+30020,61291
+30021,41306,79260
+30022,24446
+30023,41556
+30024,29332
+30025,41773
+30026,69604
+30027,48030
+30028,54553
+30029,54561
+30030,68642
+30031,45007
+30032,61082
+30033,24188
+30034,78685
+30035,39063
+30036,39817
+30037,68647
+30038,78684
+30039,34437
+30040,41444
+30041,56087
+30042,48038
+30043,67093
+30044,67093
+30045,70914
+30046,79572
+30047,81161
+30048,51400
+30049,51773
+30050,66418
+30051,68619
+30052,50296
+30053,65663
+30054,66040
+30055,55497
+30056,63424
+30057,25687
+30058,54437
+30059,24977
+30060,50297
+30061,58410
+30062,58508
+30063,44792
+30064,26705
+30065,80143
+30066,45075
+30067,45811
+30068,58783,30073
+30069,36434
+30070,30062
+30071,63103
+30072,39049
+30073,32578
+30074,34200
+30075,64435
+30076,40473
+30077,31477
+30078,81781
+30079,26800
+30080,45202
+30081,74689
+30082,54082
+30083,30082
+30084,60786
+30085,54562
+30086,26243
+30087,59616
+30088,46035
+30089,52773
+30090,56941
+30091,76012
+30092,60032
+30093,45346
+30094,37317
+30095,39049
+30096,72165
+30097,39777
+30098,61262
+30099,45125
+30100,36603
+30101,36604
+30102,30223
+30103,46408
+30104,41875
+30105,48111
+30106,72416
+30107,38475
+30108,38475
+30109,72212
+30110,56451
+30111,79429
+30112,25256
+30113,36049
+30114,36872
+30115,68064
+30116,78095
+30117,62062
+30118,24306
+30119,59904
+30120,28889
+30121,79608
+30122,33093
+30123,71719
+30124,32310
+30125,32310
+30126,39591
+30127,34199
+30128,59286
+30129,59286
+30130,55952
+30131,53828
+30132,45260
+30133,71895
+30134,30120
+30135,53422
+30136,24839
+30137,61415
+30138,69677
+30139,24442
+30140,80583
+30141,70976
+30142,51956
+30143,5485
+30144,61060
+30145,68692
+30146,30954
+30147,35108
+30148,45813
+30149,27276
+30150,77641
+30151,45316
+30152,69148
+30153,54813
+30154,21237
+30155,36434
+30156,23190
+30157,59378
+30158,67957
+30159,69503
+30160,41743
+30161,41022
+30162,24007
+30163,39428
+30164,29102
+30165,37179
+30166,29102
+30167,77641
+30168,37181
+30169,41005
+30170,58888
+30171,26884
+30172,52486
+30173,54445
+30174,54445
+30175,79261
+30176,56176
+30177,68719
+30178,27844
+30179,74296
+30180,53251
+30181,81482
+30182,67703
+30183,41980
+30184,20755
+30185,30184
+30186,30200
+30187,81800
+30188,30200
+30189,40414
+30190,31784
+30191,34284
+30192,57963,20517,21074
+30193,68780
+30194,51677
+30195,53064
+30196,40296
+30197,57669
+30198,21233
+30199,75033
+30200,81786
+30201,30183
+30202,77105
+30203,69197
+30204,40473
+30205,37199
+30206,31539
+30207,8945
+30208,54921
+30209,30206
+30210,30206
+30211,30206
+30212,30206
+30213,30206
+30214,30206
+30215,33072
+30216,48787
+30217,39294
+30218,42539
+30219,67432
+30220,58088
+30221,28318
+30222,58004
+30223,54967
+30224,30223
+30225,37896
+30226,59970
+30227,23780
+30228,38903
+30229,31058
+30230,77641
+30231,24007
+30232,25306
+30233,68869
+30234,24726
+30235,24404
+30236,27114
+30237,33353
+30238,29759
+30239,40021
+30240,41877
+30241,44429
+30242,51640
+30243,49888
+30244,54469
+30245,55552
+30246,30253
+30247,69102
+30248,72803
+30249,30231
+30250,75057
+30251,78943
+30252,26232
+30253,26884
+30254,62266
+30255,28849
+30256,58948
+30257,25574
+30258,41344
+30259,74036
+30260,76991
+30261,64635
+30262,65737
+30263,32806
+30264,47388
+30265,31626
+30266,81578
+30267,63581
+30268,30267
+30269,56534
+30270,30273
+30271,63587
+30272,68280
+30273,68290
+30274,69030
+30275,63584
+30276,60018
+30277,50008
+30278,48209
+30279,31070
+30280,31446
+30281,44474
+30282,41103
+30283,79701
+30284,67651
+30285,30935
+30286,69335
+30287,57594
+30288,68869
+30289,39517
+30290,70686
+30291,44817
+30292,44817
+30293,77453
+30294,31689
+30295,78096
+30296,64958
+30297,73838
+30298,67131
+30299,72518
+30300,30305
+30301,65108
+30302,30391
+30303,70305
+30304,70922
+30305,33422
+30306,62147
+30307,18951
+30308,41203
+30309,42470
+30310,70629
+30311,48445
+30312,39767
+30313,24353
+30314,41773
+30315,30099
+30316,59413
+30317,71408
+30318,40564
+30319,73554
+30320,20517
+30321,75740
+30322,66101,30878
+30323,21112
+30324,28013
+30325,28322
+30326,29040
+30327,31509
+30328,32776
+30329,53628
+30330,71927
+30331,76689
+30332,78755
+30333,63424
+30334,41669
+30335,41943
+30336,53717
+30337,67201
+30338,80782
+30339,18713
+30340,73464
+30341,60598
+30342,38880
+30343,81416
+30344,46707
+30345,35634
+30346,80434
+30347,80524
+30348,75741,79222
+30349,78625
+30350,67594
+30351,45813
+30352,58776
+30353,21703
+30354,79282
+30355,51395
+30356,22652
+30357,48126
+30358,31885
+30359,31885
+30360,77375
+30361,21930
+30362,30391
+30363,59480,60715
+30364,55499
+30365,68316
+30366,38053
+30367,45096
+30368,47487
+30369,22902
+30370,56293
+30371,46507
+30372,22901
+30373,66153
+30374,22901
+30375,25957
+30376,24726
+30377,49533
+30378,49532
+30379,47455
+30380,59745
+30381,60797
+30382,68843
+30383,39437
+30384,30392
+30385,30952
+30386,21930
+30387,21930
+30388,62513
+30389,26980
+30390,33401
+30391,44437
+30392,44451
+30393,63663
+30394,37987
+30395,56361
+30396,30394
+30397,57098
+30398,59668
+30399,61789
+30400,71334
+30401,31548
+30402,32755
+30403,37430
+30404,60216
+30405,81626
+30406,33401
+30407,43313
+30408,37201
+30409,25094
+30410,26301
+30411,43858
+30412,30413
+30413,73863
+30414,48318
+30415,22900
+30416,29296
+30417,18910
+30418,69688
+30419,81647
+30420,21941
+30421,19368
+30422,75693
+30423,58004
+30424,46035
+30425,18950
+30426,35684
+30427,31604
+30428,59543
+30429,32505
+30430,50369
+30431,71557
+30432,54825
+30433,41264
+30434,31307
+30435,19311
+30436,31308
+30437,31795
+30438,61243
+30439,19734
+30440,12335
+30441,60078
+30442,63809
+30443,50440
+30444,4255
+30445,5391
+30446,27497
+30447,30680
+30448,66040
+30449,38823
+30450,23791
+30451,37875
+30452,31548
+30453,41344
+30454,73838
+30455,37858
+30456,37859
+30457,61136
+30458,20751
+30459,24243
+30460,43104
+30461,25094
+30462,37622
+30463,56180
+30464,49797
+30465,21218
+30466,76627
+30467,79746
+30468,48532
+30469,60216
+30470,47415
+30471,23183
+30472,71493
+30473,79743,24354
+30474,28654
+30475,30474
+30476,30186
+30477,31537
+30478,38334
+30479,69033
+30480,79746
+30481,30566
+30482,69216
+30483,75701
+30484,49805
+30485,70183
+30486,80193
+30487,30467
+30488,29120
+30489,70427
+30490,71624
+30491,75708
+30492,29253
+30493,53624
+30494,64159
+30495,28532
+30496,41022
+30497,60718
+30498,53454
+30499,58798
+30500,79746
+30501,37622
+30502,40411
+30503,47673
+30504,58336
+30505,54447
+30506,52578
+30507,48126
+30508,45851
+30509,48126
+30510,35626
+30511,40906,52802
+30512,80576
+30513,45813
+30514,71120
+30515,79236
+30516,65120
+30517,52896
+30518,42049
+30519,40752
+30520,54562
+30521,56737
+30522,45813
+30523,30532
+30524,21622
+30525,39964
+30526,76054
+30527,70569
+30528,78096
+30529,21729
+30530,73838
+30531,78866
+30532,69543
+30533,29244
+30534,21480
+30535,38168
+30536,70033
+30537,61153
+30538,49341
+30539,78126
+30540,29935
+30541,78544
+30542,76981
+30543,34924
+30544,61331
+30545,32891
+30546,44798
+30547,72153
+30548,35676
+30549,30546
+30550,23440
+30551,28121
+30552,54761
+30553,79963
+30554,60847
+30555,82151
+30556,29513
+30557,60216
+30558,19689
+30559,81626
+30560,80438
+30561,52497
+30562,69197
+30563,69197
+30564,78698
+30565,20082
+30566,30391
+30567,53474
+30568,28535
+30569,30565
+30570,51901
+30571,61209
+30572,77114
+30573,45239
+30574,57932
+30575,78679
+30576,25494
+30577,81549
+30578,64142
+30579,41773
+30580,78164
+30581,58611
+30582,65036
+30583,19231
+30584,60076
+30585,30583
+30586,30584
+30587,46921
+30588,36373
+30589,22819
+30590,23622
+30591,66702
+30592,41004
+30593,38965
+30594,74735
+30595,44041
+30596,61433
+30597,19755
+30598,31245
+30599,41004
+30600,63405
+30601,75740
+30602,23851
+30603,34924
+30604,74492
+30605,45813
+30606,45812
+30607,52578
+30608,57909
+30609,27737
+30610,46932
+30611,55499
+30612,45196
+30613,30612
+30614,63809
+30615,57280
+30616,79517
+30617,73018
+30618,54440
+30619,22271
+30620,45033
+30621,72052
+30622,70633
+30623,73112
+30624,71752
+30625,48403
+30626,48541
+30627,54916
+30628,45420
+30629,63071
+30630,30681
+30631,50701
+30632,30634
+30633,62145
+30634,54425
+30635,30621
+30636,54440
+30637,69308
+30638,30588
+30639,40752
+30640,28346
+30641,57333
+30642,38696
+30643,33928
+30644,58166
+30645,55854
+30646,63343
+30647,72983
+30648,81781
+30649,31795
+30650,77399
+30651,19272
+30652,21671
+30653,47497
+30654,34647
+30655,25886
+30656,32807
+30657,35926
+30658,37987
+30659,30650
+30660,40055
+30661,51074
+30662,27818
+30663,77637
+30664,38822
+30665,62513
+30666,76351
+30667,41413
+30668,74924
+30669,57573
+30670,41004
+30671,71107
+30672,69860
+30673,57926
+30674,39556
+30675,30621
+30676,22274
+30677,28358
+30678,55649
+30679,36106
+30680,30682
+30681,30682
+30682,54425
+30683,53842
+30684,19385
+30685,56450
+30686,37900
+30687,31885
+30688,31338
+30689,54044
+30690,69286
+30691,69246
+30692,56917
+30693,19382
+30694,53842
+30695,30694
+30696,30694
+30697,21745
+30698,26047
+30699,38629
+30700,30681
+30701,53238
+30702,69460
+30703,35996
+30704,36991
+30705,12333
+30706,16022
+30707,19664
+30708,19947
+30709,20055
+30710,45813
+30711,21337
+30712,14722
+30713,22438
+30714,22878
+30715,23054
+30716,23103
+30717,23270
+30718,23543
+30719,26547
+30720,23573
+30721,23689
+30722,36710
+30723,25331
+30724,25578
+30725,25725
+30726,26091
+30727,26465
+30728,26662
+30729,26898
+30730,27044
+30731,27126
+30732,27307
+30733,27538
+30734,27609
+30735,27641
+30736,28927
+30737,29187
+30738,30605
+30739,32074
+30740,32331
+30741,33735
+30742,33803
+30743,34549
+30744,22164
+30745,35887
+30746,35971
+30747,36029
+30748,36707
+30749,37207
+30750,37316
+30751,38537
+30752,79282
+30753,6654
+30754,39658
+30755,70033
+30756,41371
+30757,41396
+30758,41406
+30759,55495
+30760,32888
+30761,42244
+30762,43291
+30763,43722
+30764,43987
+30765,41071
+30766,66855
+30767,38067
+30768,38067
+30769,46516
+30770,46538
+30771,46662
+30772,47001
+30773,47455
+30774,47469
+30775,47470
+30776,49138
+30777,49468
+30778,49826
+30779,63642
+30780,40778
+30781,50184
+30782,50603
+30783,51393
+30784,51454
+30785,51967
+30786,52179
+30787,52451
+30788,52521
+30789,81161
+30790,52687
+30791,52857
+30792,26951
+30793,53496
+30794,54132
+30795,54468
+30796,55174
+30797,55223
+30798,55236
+30799,55236
+30800,55294
+30801,55561
+30802,55581
+30803,48461
+30804,55677
+30805,55933
+30806,56618
+30807,57098
+30808,57252
+30809,80927
+30810,57975
+30811,58291
+30812,61092
+30813,61510
+30814,61901
+30815,80364
+30816,63005
+30817,63930
+30818,64399
+30819,64613
+30820,51805
+30821,56376
+30822,67548
+30823,68373
+30824,67545
+30825,69728
+30826,70010
+30827,31417
+30828,71151
+30829,79416
+30830,72220
+30831,72402
+30832,58088
+30833,72754
+30834,72928
+30835,73291
+30836,73323
+30837,73323
+30838,74344
+30839,75583
+30840,76478
+30841,55765
+30842,76812
+30843,77143
+30844,45813
+30845,79066
+30846,81125
+30847,80061
+30848,80188
+30849,79468
+30850,80356
+30851,80389
+30852,80735
+30853,35996
+30854,46285
+30855,80408
+30856,58595
+30857,81694
+30858,81907
+30859,82001
+30860,44705
+30861,82086
+30862,63316
+30863,42451
+30864,29626
+30865,60216
+30866,58127
+30867,56979
+30868,57071
+30869,59501
+30870,72961
+30871,81669
+30872,72960
+30873,35792
+30874,44440
+30875,30687
+30876,19379
+30877,42351
+30878,35534
+30879,3695
+30880,21703
+30881,31443
+30882,18840
+30883,19171
+30884,75018
+30885,39101
+30886,35480
+30887,70224
+30888,67921
+30889,75613
+30890,77374
+30891,60216
+30892,34546
+30893,48524
+30894,71333
+30895,61789
+30896,71334
+30897,52918
+30898,58587
+30899,81669
+30900,42351
+30901,59970
+30902,44437
+30903,19733
+30904,28234
+30905,28638
+30906,49459
+30907,63139
+30908,63316
+30909,69281
+30910,69281
+30911,28529
+30912,31548
+30913,28541
+30914,80174
+30915,77575
+30916,29732
+30917,76518
+30918,74846
+30919,49343
+30920,59431
+30921,59435
+30922,77319
+30923,27405
+30924,27781
+30925,65213
+30926,58005,65215
+30927,31148
+30928,71527
+30929,22128
+30930,41607
+30931,77585
+30932,71302
+30933,72776
+30934,21597
+30935,71314
+30936,78698
+30937,48401
+30938,41614
+30939,58168
+30940,37712
+30941,56009
+30942,57945
+30943,78682
+30944,19353,19472
+30945,20575
+30946,20577
+30947,51705
+30948,56357
+30949,63587
+30950,65691
+30951,51388
+30952,38601
+30953,71837
+30954,66953
+30955,22054
+30956,35717
+30957,36335
+30958,56243
+30959,27281
+30960,52608
+30961,31043
+30962,35386
+30963,45051
+30964,74924
+30965,53964
+30966,50802
+30967,74924
+30968,28600
+30969,71439
+30970,71439
+30971,56116
+30972,74281
+30973,22744
+30974,34299
+30975,65185
+30976,76663
+30977,53384
+30978,18720
+30979,45465
+30980,26598
+30981,44440
+30982,19689
+30983,30392
+30984,30393
+30985,81781
+30986,63187
+30987,67938
+30988,33187
+30989,57346
+30990,61422
+30991,19730
+30992,38053
+30993,32372
+30994,31564
+30995,32426
+30996,19361
+30997,81610
+30998,47561
+30999,24841
+31000,78652
+31001,65139
+31002,34602
+31003,20698
+31004,29237
+31005,35772
+31006,53718
+31007,43913
+31008,24821
+31009,41413
+31010,48471
+31011,51990
+31012,75917
+31013,52957
+31014,39578
+31015,81003
+31016,31058
+31017,18791
+31018,31021
+31019,41406
+31020,31104
+31021,57187
+31022,3145
+31023,69153
+31024,60216
+31025,30566
+31026,61670
+31027,21218
+31028,56200
+31029,30467
+31030,64142
+31031,31030
+31032,35534
+31033,70526
+31034,46092
+31035,34904
+31036,44579
+31037,62495
+31038,27233
+31039,59306
+31040,59308
+31041,55767
+31042,32790
+31043,40752
+31044,53454
+31045,57187
+31046,63314
+31047,54825
+31048,32793
+31049,61153
+31050,38362
+31051,62956
+31052,31047
+31053,60810
+31054,35679
+31055,34808
+31056,81003
+31057,37776
+31058,28774
+31059,39002
+31060,41413
+31061,48530
+31062,50717
+31063,50985
+31064,51120
+31065,51340
+31066,55250
+31067,57187
+31068,61052
+31069,69153
+31070,64142
+31071,78594
+31072,38600
+31073,68771
+31074,31010
+31075,36451
+31076,31077
+31077,42246,63304
+31078,71437
+31079,37780
+31080,62742
+31081,70031
+31082,22907
+31083,41413
+31084,53648
+31085,18956
+31086,31885
+31087,79387
+31088,56362
+31089,76210
+31090,62145
+31091,28063
+31092,48919
+31093,48920
+31094,60216
+31095,77374
+31096,50885
+31097,71649
+31098,31121,51558
+31099,51566
+31100,52497
+31101,71439
+31102,18941
+31103,72011
+31104,73836
+31105,53059
+31106,29418
+31107,34025
+31108,38807,31126
+31109,39962
+31110,42094
+31111,44004
+31112,48030
+31113,49694,33882
+31114,63193
+31115,78703
+31116,55052
+31117,56484
+31118,57927
+31119,59020
+31120,37913
+31121,68290,31126
+31122,68431
+31123,69860
+31124,75018
+31125,75613
+31126,60216
+31127,22321
+31128,76929
+31129,18369
+31130,21510
+31131,77641
+31132,31446
+31133,31443
+31134,49296
+31135,61866
+31136,61871
+31137,71517
+31138,69544
+31139,19228
+31140,77945
+31141,78240
+31142,34921
+31143,77374
+31144,62184
+31145,41022
+31146,63470
+31147,40150
+31148,47868
+31149,63314
+31150,21889
+31151,73672
+31152,71866
+31153,22130
+31154,54724
+31155,27077
+31156,43864
+31157,29427
+31158,47388
+31159,19927
+31160,69439
+31161,60450
+31162,31158
+31163,32790
+31164,74924
+31165,48533
+31166,21087
+31167,56348
+31168,60074
+31169,31587
+31170,22896
+31171,43935
+31172,44913
+31173,61075
+31174,23048
+31175,41484
+31176,55768
+31177,29643
+31178,31177
+31179,19732
+31180,21895
+31181,31690
+31182,70977
+31183,42327
+31184,73837
+31185,27540
+31186,30404
+31187,30392,52790
+31188,27581
+31189,59668
+31190,53686
+31191,53688
+31192,75962
+31193,53761
+31194,69358
+31195,21950
+31196,68809
+31197,63348
+31198,54809
+31199,48766
+31200,41022
+31201,31213
+31202,47929
+31203,44925
+31204,53984
+31205,26302,59615
+31206,49446
+31207,52497
+31208,53463
+31209,56179
+31210,65929
+31211,30278
+31212,54786
+31213,70411
+31214,19732
+31215,31885
+31216,19733
+31217,56357
+31218,57927
+31219,57964
+31220,48250
+31221,24875
+31222,31245
+31223,35449
+31224,41577
+31225,56179
+31226,63066
+31227,74281
+31228,22053
+31229,19815
+31230,54446
+31231,21200
+31232,30295
+31233,50985
+31234,54257
+31235,31080
+31236,19539
+31237,35634
+31238,21638
+31239,40564
+31240,47487
+31241,72959
+31242,63060
+31243,62648
+31244,43736
+31245,72959
+31246,72983
+31247,31690
+31248,63026
+31249,50765
+31250,68843
+31251,67615
+31252,72959
+31253,31249
+31254,37686
+31255,73275
+31256,30009
+31257,71431
+31258,27552
+31259,50769
+31260,31650
+31261,31650
+31262,19091
+31263,31689
+31264,46827
+31265,36868
+31266,41210
+31267,11869
+31268,37411
+31269,37450
+31270,19374
+31271,52920
+31272,60603
+31273,20647
+31274,21135
+31275,45472
+31276,53454
+31277,30405
+31278,34924
+31279,55767
+31280,31277
+31281,59420
+31282,31283
+31283,63064
+31284,32718
+31285,21745
+31286,79737
+31287,67131
+31288,65956
+31289,41602
+31290,27368
+31291,40752
+31292,81161
+31293,40752
+31294,21873
+31295,44449
+31296,53865
+31297,32792
+31298,52773
+31299,74735
+31300,57461
+31301,69860
+31302,18939
+31303,44440
+31304,78678
+31305,65133
+31306,30891
+31307,53761
+31308,35532
+31309,26980
+31310,28234
+31311,66953
+31312,75057
+31313,30891
+31314,81927
+31315,19979
+31316,19397
+31317,34166
+31318,65760
+31319,35926
+31320,59862
+31321,49360
+31322,25367
+31323,30891
+31324,62852
+31325,59020
+31326,41607
+31327,31326
+31328,46528
+31329,68830
+31330,68778
+31331,41614
+31332,74825
+31333,39813
+31334,62991
+31335,35523
+31336,34772
+31337,73997
+31338,66153
+31339,68342
+31340,48157
+31341,65759
+31342,67459
+31343,63286
+31344,45464
+31345,68928
+31346,33500
+31347,74735
+31348,40147
+31349,72959
+31350,57987
+31351,20311
+31352,47836
+31353,44440
+31354,70524
+31355,24706
+31356,43103
+31357,53069
+31358,22747
+31359,64742
+31360,31489
+31361,19736
+31362,31885
+31363,58256
+31364,28467
+31365,35498
+31366,30952
+31367,35437
+31368,66058
+31369,35625
+31370,30568
+31371,37612
+31372,30275
+31373,54774
+31374,65561
+31375,35680
+31376,33793
+31377,22853
+31378,51470
+31379,54953
+31380,51205
+31381,35620
+31382,45153
+31383,44484
+31384,28774
+31385,81004
+31386,41610
+31387,30968
+31388,19591,42481
+31389,24354
+31390,37207
+31391,74939
+31392,33105
+31393,45491
+31394,32155
+31395,72119
+31396,30575
+31397,31905
+31398,22475,19072
+31399,24555
+31400,38880
+31401,72052
+31402,29327
+31403,30391
+31404,21889
+31405,71315
+31406,50912
+31407,53761
+31408,69818
+31409,35787
+31410,50910
+31411,45198
+31412,53069
+31413,61213
+31414,26452
+31415,47203
+31416,72409
+31417,44704
+31418,44609
+31419,65057
+31420,50885
+31421,50885
+31422,71557
+31423,63434
+31424,48136
+31425,69331
+31426,29623
+31427,43913
+31428,53759
+31429,41846
+31430,55522
+31431,79282
+31432,48126
+31433,49444
+31434,81400
+31435,52586
+31436,57035
+31437,40617
+31438,66859
+31439,46754
+31440,19121
+31441,74478
+31442,77521
+31443,65691
+31444,48423
+31445,69543
+31446,78684
+31447,20760
+31448,63314
+31449,60860
+31450,25917
+31451,19732
+31452,21328
+31453,22269
+31454,53608
+31455,76989
+31456,49155
+31457,79551
+31458,74132
+31459,27397
+31460,38828
+31461,49858
+31462,69521
+31463,55210
+31464,38427
+31465,59645
+31466,35706
+31467,31463
+31468,27574
+31469,30275
+31470,54839
+31471,30687
+31472,67758
+31473,19733
+31474,60177
+31475,34211
+31476,66164
+31477,60417
+31478,70234
+31479,30693
+31480,31482
+31481,62935
+31482,62723
+31483,47717
+31484,31481
+31485,31481,50623
+31486,31481
+31487,31481
+31488,61789
+31489,19438
+31490,39811
+31491,39813
+31492,68236
+31493,68238
+31494,44219
+31495,31347
+31496,35533
+31497,76258
+31498,49802
+31499,49803
+31500,65133
+31501,69761
+31502,34433
+31503,30280
+31504,51990
+31505,78666
+31506,63314
+31507,32527
+31508,65749
+31509,30596
+31510,68285
+31511,25645
+31512,75057
+31513,56176
+31514,30575
+31515,30568
+31516,71719
+31517,66431
+31518,45195
+31519,51068
+31520,60476
+31521,60483
+31522,72482
+31523,21938
+31524,58166
+31525,74281
+31526,31597
+31527,67634
+31528,79712
+31529,61488
+31530,69335
+31531,19737
+31532,31531
+31533,32929
+31534,50630
+31535,61764
+31536,39809
+31537,60019
+31538,28543
+31539,57187
+31540,64160
+31541,31919
+31542,56176
+31543,74939
+31544,25094
+31545,79908
+31546,74994
+31547,63314
+31548,23764
+31549,80009
+31550,61792
+31551,61789
+31552,19497
+31553,66157
+31554,31337
+31555,31080
+31556,56087
+31557,31081
+31558,39577
+31559,71120
+31560,48629
+31561,53474
+31562,30659
+31563,32792
+31564,31546
+31565,76258
+31566,48629
+31567,48030
+31568,59020
+31569,32691
+31570,41469
+31571,62179
+31572,47661
+31573,64142
+31574,21770
+31575,21765
+31576,76135
+31577,33486
+31578,53054
+31579,35342
+31580,35344
+31581,62145
+31582,62455
+31583,31308
+31584,31308
+31585,40240
+31586,69284
+31587,78970
+31588,32819
+31589,40055
+31590,30697
+31591,62820
+31592,53202
+31593,37123
+31594,27086
+31595,31012
+31596,31012
+31597,34459
+31598,25087
+31599,34632
+31600,70091
+31601,31446
+31602,48504
+31603,50985
+31604,45096
+31605,65931
+31606,77147
+31607,49440
+31608,30883
+31609,34701
+31610,54257
+31611,62948
+31612,72421
+31613,39375
+31614,30882
+31615,30878
+31616,48423
+31617,27592
+31618,47908
+31619,61767
+31620,75018
+31621,66153
+31622,53454
+31623,71454
+31624,47730
+31625,72917
+31626,31497
+31627,60216
+31628,31213
+31629,59812
+31630,35624
+31631,35611
+31632,35512
+31633,35695
+31634,31630
+31635,31630
+31636,21638
+31637,63334
+31638,30267
+31639,30391
+31640,81578
+31641,18919
+31642,21898
+31643,45097
+31644,51677,75058
+31645,30981
+31646,71313
+31647,60216
+31648,81307
+31649,35682
+31650,38042
+31651,35510
+31652,34327
+31653,35922
+31654,66155
+31655,68964
+31656,50340
+31657,25810
+31658,80416
+31659,43109
+31660,43342
+31661,57475
+31662,57475
+31663,34620
+31664,39556
+31665,67161
+31666,42351
+31667,54440
+31668,19228
+31669,57423
+31670,41406
+31671,37199
+31672,77708
+31673,30280
+31674,68475
+31675,50507
+31676,37827
+31677,76633
+31678,13679
+31679,28538
+31680,19143
+31681,39528
+31682,48992
+31683,39513
+31684,76940
+31685,53067
+31686,53958
+31687,23340
+31688,24353
+31689,34924
+31690,81798
+31691,25915
+31692,24057
+31693,55662
+31694,49484
+31695,57556
+31696,58144
+31697,18720
+31698,81578
+31699,34209
+31700,69923
+31701,59376
+31702,26295
+31703,25924
+31704,31700
+31705,57987
+31706,56336
+31707,39276
+31708,57987
+31709,51988
+31710,35154
+31711,29936
+31712,65049
+31713,70426
+31714,70428
+31715,31041
+31716,48803
+31717,57987
+31718,78774
+31719,57987
+31720,51988
+31721,79745
+31722,68342
+31723,30952
+31724,57987
+31725,53727
+31726,26172
+31727,74275
+31728,63665
+31729,43247
+31730,43335
+31731,22122
+31732,81781
+31733,56357
+31734,21620
+31735,48766
+31736,68196
+31737,65691
+31738,72271
+31739,37119
+31740,62409
+31741,25087
+31742,19228
+31743,53660
+31744,18988
+31745,28234
+31746,38
+31747,39567
+31748,32961
+31749,38798
+31750,31094
+31751,49683
+31752,57927
+31753,37405
+31754,66859
+31755,66953
+31756,73323
+31757,75018
+31758,77185
+31759,36602
+31760,62145
+31761,48534
+31762,35684
+31763,35624
+31764,48427
+31765,46171
+31766,78899
+31767,45449
+31768,70091
+31769,56179
+31770,75742
+31771,45546
+31772,27000
+31773,30598
+31774,74233
+31775,41005
+31776,69860
+31777,30900
+31778,65768
+31779,53760
+31780,61145
+31781,53761
+31782,77637
+31783,21889
+31784,62454
+31785,31363
+31786,78746
+31787,58257
+31788,73934
+31789,22127
+31790,45096
+31791,69237
+31792,49296
+31793,76258
+31794,50985
+31795,72051
+31796,28235
+31797,65793
+31798,71961
+31799,63348
+31800,34299
+31801,28530
+31802,66377
+31803,26934
+31804,38634
+31805,28529
+31806,68355
+31807,65393
+31808,77452
+31809,53916
+31810,39115
+31811,60216
+31812,34924
+31813,38637
+31814,27405
+31815,68831
+31816,71395
+31817,25234
+31818,61866
+31819,61871
+31820,71517
+31821,69544
+31822,50875
+31823,77431
+31824,77491
+31825,48423
+31826,50638
+31827,54047
+31828,23854
+31829,81807
+31830,62986
+31831,40044
+31832,23790
+31833,60260
+31834,71302
+31835,42351
+31836,21889
+31837,28538
+31838,79608
+31839,63072
+31840,30391
+31841,38335
+31842,68929
+31843,77972
+31844,35793
+31845,33184
+31846,70629
+31847,65478
+31848,31861
+31849,40148
+31850,69682
+31851,76054
+31852,31846
+31853,26884
+31854,49897
+31855,49134
+31856,45953
+31857,31861
+31858,28539
+31859,21240
+31860,79261
+31861,49897
+31862,60700
+31863,73507
+31864,30348
+31865,49158
+31866,53731
+31867,40793,19654
+31868,31874
+31869,24007
+31870,65552
+31871,28168
+31872,1319
+31873,75742
+31874,53660
+31875,38218
+31876,31874
+31877,27022
+31878,39505
+31879,67381
+31880,31881
+31881,46760
+31882,27276
+31883,82077
+31884,32691
+31885,44440
+31886,62456
+31887,21938
+31888,30658
+31889,57187
+31890,22452
+31891,32551
+31892,29664
+31893,21620
+31894,6979
+31895,31427
+31896,31429
+31897,43913
+31898,70633
+31899,29652
+31900,76692
+31901,58177
+31902,64620
+31903,78286
+31904,57689
+31905,56180
+31906,31905
+31907,59358
+31908,59361
+31909,29839
+31910,33178
+31911,60847
+31912,45051
+31913,61874
+31914,39153
+31915,59918
+31916,52406
+31917,54082,31276
+31918,65385
+31919,20120
+31920,23689
+31921,54553
+31922,58616
+31923,66851
+31924,74250
+31925,61070
+31926,37317
+31927,52068
+31928,62948
+31929,37921
+31930,32691
+31931,78984
+31932,30169
+31933,59549
+31934,36591
+31935,53337
+31936,37042
+31937,79375
+31938,31427
+31939,53452
+31940,65925
+31941,76054
+31942,37187
+31943,37191
+31944,25302
+31945,60216
+31946,75873
+31947,53648
+31948,65893
+31949,37712
+31950,35926,50885
+31951,79635
+31952,37712
+31953,35557
+31954,81462
+31955,68869
+31956,35557
+31957,35558
+31958,35557
+31959,47198
+31960,24306
+31961,70976
+31962,66868
+31963,60935
+31964,20935
+31965,57861
+31966,24427
+31967,31978
+31968,70033
+31969,40752
+31970,41877
+31971,74067
+31972,45813
+31973,79608
+31974,65451
+31975,58088
+31976,37317
+31977,37317
+31978,77641
+31979,31973
+31980,20262
+31981,70033
+31982,70033
+31983,77641
+31984,25645
+31985,21412
+31986,73153
+31987,41972
+31988,80995
+31989,74067
+31990,79874
+31991,51475
+31992,39049
+31993,31278
+31994,24807
+31995,53619
+31996,66985
+31997,70392
+31998,44013
+31999,80626
+32000,54562
+32001,38837
+32002,48126
+32003,11934
+32004,69235
+32005,48353
+32006,19421
+32007,28764
+32008,50784
+32009,77985
+32010,66727
+32011,40230
+32012,67744
+32013,28237
+32014,28237
+32015,28475
+32016,23021
+32017,77112
+32018,69331
+32019,36491
+32020,36482
+32021,36758
+32022,43913
+32023,45730
+32024,65767
+32025,45813
+32026,34924
+32027,30191
+32028,35944
+32029,45812
+32030,45813
+32031,40564
+32032,23095,61257
+32033,61504
+32034,57289
+32035,31978
+32036,77641
+32037,69294
+32038,48435
+32039,54044
+32040,52497
+32041,25446
+32042,70033
+32043,72791
+32044,59826
+32045,79211
+32046,49646
+32047,28323
+32048,53542
+32049,27015
+32050,43893
+32051,28323
+32052,64015
+32053,27997
+32054,32083
+32055,31043
+32056,71108
+32057,29230
+32058,80583
+32059,32083
+32060,64645
+32061,25184
+32062,38629
+32063,30325
+32064,41648
+32065,43487
+32066,39563
+32067,48862
+32068,29286
+32069,54655
+32070,55546
+32071,79261
+32072,62029
+32073,63676
+32074,45813
+32075,64819
+32076,71212
+32077,79416
+32078,80583
+32079,43471
+32080,74192
+32081,75013
+32082,80821
+32083,64293
+32084,32014
+32085,32694
+32086,32909
+32087,53848
+32088,45243
+32089,35996
+32090,55115
+32091,59305
+32092,61646
+32093,21475
+32094,21475
+32095,61646
+32096,62578
+32097,21474
+32098,73838
+32099,48648
+32100,41494
+32101,61591
+32102,62187
+32103,41055
+32104,73412
+32105,73412
+32106,25729
+32107,75665
+32108,43898
+32109,40752
+32110,46992
+32111,81626
+32112,34590
+32113,54953
+32114,63218
+32115,41444
+32116,53592
+32117,32083
+32118,73926
+32119,71103
+32120,72791
+32121,72913
+32122,73837
+32123,30298
+32124,31476
+32125,48087
+32126,61260
+32127,51319
+32128,73837
+32129,29349
+32130,35469
+32131,74640
+32132,21703
+32133,57870
+32134,48497
+32135,45490
+32136,48430
+32137,32135,57451
+32138,79341
+32139,32135,76420
+32140,48240
+32141,48792
+32142,33112
+32143,20760
+32144,70033
+32145,32718
+32146,63064
+32147,32146
+32148,58888
+32149,56894
+32150,63819
+32151,25234
+32152,38675
+32153,40053
+32154,30937
+32155,40240
+32156,49484
+32157,31740
+32158,74500
+32159,25094
+32160,21597
+32161,29217
+32162,40597
+32163,30391
+32164,59305
+32165,30685
+32166,38562
+32167,37832
+32168,23206
+32169,64478
+32170,68289
+32171,37187
+32172,36569
+32173,76162
+32174,65075
+32175,47908
+32176,47716
+32177,59857
+32178,65649
+32179,71310
+32180,51885
+32181,34924
+32182,63357
+32183,64142
+32184,79165
+32185,73012
+32186,65139
+32187,59137
+32188,53499
+32189,75058
+32190,55627
+32191,81800,40265
+32192,32506
+32193,68236
+32194,30891
+32195,49341
+32196,59427
+32197,51677
+32198,38276
+32199,38562
+32200,34861
+32201,28790
+32202,31058
+32203,27514
+32204,39423
+32205,69641
+32206,66505
+32207,28538
+32208,47552
+32209,34114
+32210,48002
+32211,47552
+32212,34357
+32213,35567
+32214,35565
+32215,61034
+32216,61033
+32217,25101
+32218,41341
+32219,63072
+32220,42351
+32221,20760,61263
+32222,21477
+32223,27949
+32224,38135
+32225,73201
+32226,43469
+32227,59329
+32228,32225,49670
+32229,54562
+32230,25953
+32231,50104
+32232,80185
+32233,58287
+32234,40752
+32235,48144
+32236,38475
+32237,26827
+32238,44769
+32239,51092
+32240,51091
+32241,74689
+32242,77820
+32243,70231
+32244,70231
+32245,77820
+32246,76877
+32247,34587
+32248,74560
+32249,69010
+32250,38807
+32251,62455
+32252,32254
+32253,29935
+32254,64474
+32255,48852
+32256,76633
+32257,79249
+32258,68290
+32259,56182
+32260,65925
+32261,81703
+32262,31539
+32263,21996
+32264,54100
+32265,22002
+32266,71617
+32267,40752
+32268,74957
+32269,58403
+32270,20531
+32271,20118
+32272,23897
+32273,31690
+32274,48131
+32275,18984
+32276,18983
+32277,20530
+32278,33498
+32279,50824
+32280,57983
+32281,32269
+32282,32269
+32283,73837
+32284,27730
+32285,44348
+32286,77308
+32287,40423
+32288,20745
+32289,32276
+32290,38792
+32291,45812
+32292,45813
+32293,79282
+32294,48126
+32295,65659
+32296,22149
+32297,22149
+32298,22149
+32299,22149
+32300,32547
+32301,38369
+32302,45813
+32303,29917
+32304,23643
+32305,77820
+32306,69681
+32307,75782
+32308,22789
+32309,22853
+32310,11858
+32311,70033
+32312,28747
+32313,48031
+32314,35557
+32315,60936
+32316,75860
+32317,78140
+32318,48210
+32319,59732
+32320,39423
+32321,69213
+32322,32320
+32323,76345
+32324,39049
+32325,61253
+32326,70033
+32327,61251
+32328,27167
+32329,39049
+32330,52497
+32331,68854
+32332,76060
+32333,81501
+32334,66862
+32335,45946
+32336,40752
+32337,45909
+32338,74738
+32339,76303
+32340,57637
+32341,66046
+32342,79261
+32343,45813
+32344,44491
+32345,62021
+32346,27945
+32347,33271
+32348,40526
+32349,23643
+32350,47432
+32351,30954
+32352,65501
+32353,81153
+32354,74939
+32355,52269
+32356,38887
+32357,76620
+32358,40519
+32359,28627
+32360,61311
+32361,21886
+32362,19382
+32363,53761
+32364,53842
+32365,63322
+32366,62145
+32367,32364
+32368,32364
+32369,74462
+32370,19492
+32371,62145
+32372,57187
+32373,9930
+32374,48791
+32375,57098
+32376,32373
+32377,41562
+32378,32374
+32379,39064
+32380,21218
+32381,60216
+32382,65591
+32383,42097
+32384,75057
+32385,60746
+32386,26936
+32387,32417
+32388,28702
+32389,31259
+32390,53624
+32391,21510
+32392,22112
+32393,22110
+32394,22157
+32395,30975
+32396,32415
+32397,65906
+32398,24874
+32399,32415
+32400,24392
+32401,19010
+32402,28618
+32403,21628
+32404,21882
+32405,50872
+32406,32481
+32407,33324
+32408,73722
+32409,62713
+32410,34511
+32411,32417
+32412,35680
+32413,64142
+32414,47526
+32415,40150
+32416,51319
+32417,48478
+32418,53717
+32419,30621
+32420,53109
+32421,53620
+32422,32421
+32423,32415
+32424,57553
+32425,57556
+32426,38222
+32427,36793
+32428,79992
+32429,61419
+32430,61488
+32431,61896
+32432,40150
+32433,63344
+32434,63791
+32435,65528
+32436,66341
+32437,66344
+32438,69852
+32439,70225
+32440,46268
+32441,72585
+32442,72763
+32443,32417
+32444,50637
+32445,20240
+32446,70428
+32447,68196
+32448,60216
+32449,75085
+32450,77441
+32451,36841
+32452,80613
+32453,9280
+32454,57562
+32455,43104
+32456,19379
+32457,40965
+32458,30351
+32459,29969
+32460,42447
+32461,46782
+32462,40967
+32463,29489
+32464,40962
+32465,53952
+32466,30971
+32467,67381
+32468,38381
+32469,32455
+32470,67381
+32471,30971
+32472,19379
+32473,65581
+32474,19492
+32475,19376
+32476,25495
+32477,19379
+32478,68686
+32479,68686
+32480,74132
+32481,44440
+32482,74575
+32483,72746
+32484,76114
+32485,27405
+32486,70987
+32487,78697
+32488,39296
+32489,78364
+32490,58804
+32491,72877
+32492,53648
+32493,69439
+32494,67745
+32495,30657
+32496,25234
+32497,72270
+32498,33799
+32499,51939
+32500,31905
+32501,77567
+32502,79953
+32503,57261
+32504,39101
+32505,19200
+32506,37199
+32507,69235
+32508,50652
+32509,35389
+32510,27930
+32511,32506
+32512,48157
+32513,69326
+32514,46962
+32515,46966
+32516,69887
+32517,81601
+32518,46958
+32519,66035
+32520,61404
+32521,66953
+32522,21474
+32523,34307
+32524,32527
+32525,32220
+32526,43809
+32527,21886
+32528,54412
+32529,77725
+32530,22036
+32531,81770
+32532,61303
+32533,65793
+32534,61779
+32535,53022
+32536,43814
+32537,46781
+32538,22128
+32539,37513
+32540,30190
+32541,38021
+32542,35557
+32543,59475
+32544,65702
+32545,60058
+32546,36461
+32547,32799
+32548,33486
+32549,29102
+32550,79062
+32551,28778
+32552,79168
+32553,79170
+32554,28080
+32555,48270
+32556,21886
+32557,19737
+32558,81798
+32559,31139
+32560,65215
+32561,31139
+32562,40150
+32563,31139
+32564,40393
+32565,33005
+32566,60537
+32567,61342
+32568,32578
+32569,38910
+32570,74275
+32571,56585
+32572,63426
+32573,25920
+32574,51738
+32575,58023
+32576,71103
+32577,79973
+32578,21745
+32579,63416
+32580,56176
+32581,51069
+32582,26302
+32583,23672
+32584,40680
+32585,57932
+32586,38051
+32587,42351
+32588,40680
+32589,78756
+32590,61159
+32591,28028
+32592,53063
+32593,45813
+32594,45813
+32595,59501
+32596,59849
+32597,36591
+32598,67479
+32599,69564
+32600,77192
+32601,61614
+32602,55523
+32603,60216
+32604,72270
+32605,23111
+32606,23796
+32607,32704
+32608,11856
+32609,19468
+32610,64727
+32611,60076
+32612,25359
+32613,45260
+32614,25599
+32615,32610
+32616,40752
+32617,45957
+32618,80789
+32619,50784
+32620,46468
+32621,44792
+32622,36933
+32623,50917
+32624,50919
+32625,33130
+32626,20745,62449
+32627,42327
+32628,54446
+32629,62910
+32630,33810
+32631,37986
+32632,45685
+32633,32638
+32634,19546
+32635,39517
+32636,71099
+32637,40192
+32638,81448
+32639,70033
+32640,66862
+32641,30598
+32642,34108
+32643,67175
+32644,44369
+32645,69677
+32646,81095
+32647,52481
+32648,57975
+32649,64399
+32650,67594
+32651,21240
+32652,21260
+32653,26827
+32654,30154
+32655,32645
+32656,52179
+32657,21248
+32658,47477
+32659,68630
+32660,44013
+32661,24704
+32662,57901
+32663,30099
+32664,56832
+32665,22122
+32666,36603
+32667,81176
+32668,74508
+32669,25770
+32670,80736
+32671,63191
+32672,25770
+32673,59382
+32674,33162
+32675,28790
+32676,28994
+32677,56832
+32678,37178
+32679,37058
+32680,24347
+32681,22510
+32682,34701
+32683,79274
+32684,70013
+32685,70627
+32686,29626
+32687,23488
+32688,78682
+32689,35586
+32690,63144
+32691,70629
+32692,32799
+32693,29758
+32694,64620
+32695,73863
+32696,30010
+32697,68236
+32698,76058
+32699,29587
+32700,73762
+32701,44009
+32702,72178
+32703,79874
+32704,70033
+32705,23946,23945
+32706,70033
+32707,33326
+32708,41738
+32709,31239
+32710,51298
+32711,79953
+32712,35359
+32713,43136
+32714,28091
+32715,56440
+32716,51277
+32717,53624
+32718,50338
+32719,60596
+32720,57934
+32721,25256
+32722,45009
+32723,26980
+32724,32722
+32725,51069
+32726,46826
+32727,47477
+32728,67050
+32729,46267
+32730,39534
+32731,32739
+32732,41657
+32733,58921
+32734,39676
+32735,70033
+32736,70033
+32737,74342
+32738,74343
+32739,42102
+32740,78364
+32741,66682
+32742,42076
+32743,54732
+32744,45096
+32745,46171
+32746,18950
+32747,23182
+32748,32512
+32749,34732
+32750,45680
+32751,41112
+32752,48329
+32753,25574
+32754,31618
+32755,56163
+32756,59305
+32757,56295
+32758,32604
+32759,34783
+32760,73401
+32761,55347
+32762,51928
+32763,74821
+32764,60216
+32765,71838
+32766,34108
+32767,69677
+32768,81794
+32769,32661
+32770,52989
+32771,48313
+32772,52352
+32773,59518
+32774,56832
+32775,33729
+32776,76877
+32777,37569
+32778,32516
+32779,20690
+32780,28747
+32781,67675
+32782,61088
+32783,63694
+32784,80941
+32785,71408
+32786,62029
+32787,81647
+32788,76227
+32789,20355
+32790,32795
+32791,32795
+32792,32795
+32793,21745
+32794,23760
+32795,19228
+32796,32797
+32797,35922
+32798,18721
+32799,60216
+32800,70761
+32801,60216
+32802,65925
+32803,46680
+32804,22152
+32805,26272
+32806,64142
+32807,21905
+32808,76776
+32809,18969
+32810,22118
+32811,38031
+32812,59645
+32813,57867
+32814,20533
+32815,21273
+32816,19648
+32817,57867,62159
+32818,40060
+32819,32807
+32820,58107
+32821,38392
+32822,18988
+32823,75015
+32824,34647
+32825,60216
+32826,19091,51677
+32827,78071
+32828,78061
+32829,55996
+32830,35922
+32831,23294
+32832,28536
+32833,59849
+32834,78755
+32835,39563
+32836,79211
+32837,58287
+32838,77145
+32839,16022
+32840,27093
+32841,23912
+32842,26289
+32843,26662
+32844,29784
+32845,49468
+32846,58595
+32847,70038
+32848,44013
+32849,72185
+32850,81176
+32851,45813
+32852,20745
+32853,39502
+32854,35611
+32855,20743
+32856,26832
+32857,47801
+32858,55229
+32859,41911
+32860,33474
+32861,33474
+32862,33474
+32863,51640
+32864,51640
+32865,51640
+32866,50717
+32867,71837
+32868,31563
+32869,56171
+32870,44449
+32871,60411
+32872,58158
+32873,58158
+32874,70033
+32875,39049
+32876,59020
+32877,32733
+32878,32875
+32879,39676
+32880,67201
+32881,64872,74939
+32882,79873
+32883,33455
+32884,26409
+32885,19364
+32886,60411
+32887,67601
+32888,33134
+32889,51468
+32890,37622
+32891,63064
+32892,79953
+32893,58088
+32894,55894
+32895,68422
+32896,80748
+32897,47278
+32898,39049
+32899,49059
+32900,32662
+32901,34661
+32902,75566
+32903,78698
+32904,44814
+32905,56292
+32906,37635
+32907,37712
+32908,70629
+32909,24188,43923
+32910,61402
+32911,22510
+32912,27506
+32913,25018
+32914,71938
+32915,58268
+32916,39847
+32917,81176
+32918,22786,32920
+32919,32920
+32920,72435
+32921,77666
+32922,53422
+32923,22032
+32924,59769,66755
+32925,77460
+32926,57552
+32927,64831
+32928,66673
+32929,62926
+32930,31635
+32931,32527
+32932,50874
+32933,56357
+32934,62179
+32935,51677
+32936,50637
+32937,44579
+32938,50905
+32939,71997
+32940,71348
+32941,51903
+32942,49745
+32943,65262
+32944,29957
+32945,39423
+32946,24427
+32947,37079
+32948,60334
+32949,39049
+32950,15879
+32951,30161
+32952,60216
+32953,70524
+32954,49444
+32955,63602
+32956,51092
+32957,75962
+32958,41582
+32959,53205
+32960,54562
+32961,47389
+32962,24051
+32963,80618
+32964,63144
+32965,38513
+32966,78755
+32967,20702
+32968,21295
+32969,20409
+32970,53339
+32971,49443
+32972,78928
+32973,32968
+32974,81789
+32975,35448
+32976,20743
+32977,79009
+32978,67703
+32979,68277
+32980,56325
+32981,56316
+32982,73316
+32983,45030
+32984,56941
+32985,49134
+32986,75086
+32987,21447
+32988,32991
+32989,32516
+32990,47230
+32991,35048
+32992,54562
+32993,48862
+32994,39367
+32995,70984
+32996,35525
+32997,72716
+32998,21959
+32999,69544
+33000,35565
+33001,81983
+33002,70426
+33003,70427
+33004,70427
+33005,61246
+33006,30391
+33007,37812
+33008,45035
+33009,58417
+33010,35655
+33011,39149
+33012,58384
+33013,22786,33014
+33014,72435
+33015,52853,33014
+33016,35557
+33017,50439
+33018,72715
+33019,73838
+33020,19578
+33021,29652
+33022,38204
+33023,70626
+33024,48640
+33025,48304
+33026,73516
+33027,39703
+33028,48514
+33029,38256
+33030,28778
+33031,61819
+33032,48150
+33033,63918
+33034,64275
+33035,29485
+33036,69408
+33037,37635
+33038,25393
+33039,74778
+33040,64403
+33041,51473
+33042,68807
+33043,67745
+33044,63026
+33045,73650
+33046,79608
+33047,23021
+33048,42097
+33049,33075
+33050,68692
+33051,50910
+33052,40068
+33053,74904
+33054,25522
+33055,31343
+33056,28700
+33057,59542
+33058,45051
+33059,64446
+33060,31795
+33061,40150
+33062,28235
+33063,24781
+33064,45406
+33065,61646
+33066,79930
+33067,77575
+33068,59541
+33069,77324
+33070,58162
+33071,67565
+33072,25290
+33073,25413
+33074,79908
+33075,25620
+33076,58523
+33077,56836
+33078,81193
+33079,63987
+33080,45813
+33081,32718
+33082,20698
+33083,46490
+33084,70033
+33085,70033
+33086,57594
+33087,51216
+33088,23884
+33089,20672
+33090,42076
+33091,64688
+33092,25770
+33093,33184
+33094,32233
+33095,81763
+33096,61355
+33097,81121
+33098,32347
+33099,67479
+33100,51120
+33101,70033
+33102,42351
+33103,42351
+33104,31742
+33105,70526
+33106,30300
+33107,77008
+33108,81738
+33109,79436
+33110,77014
+33111,34564
+33112,49221,33121
+33113,77008
+33114,29286
+33115,41182
+33116,61251
+33117,43362
+33118,41646
+33119,21905
+33120,49217
+33121,65562
+33122,50985
+33123,33112
+33124,72575
+33125,62914
+33126,81065
+33127,62922
+33128,68005
+33129,61251
+33130,31043
+33131,33644
+33132,79469
+33133,73081
+33134,45813
+33135,79259
+33136,44697
+33137,4374
+33138,68557
+33139,38667
+33140,77108
+33141,71212
+33142,35534
+33143,47665
+33144,81075
+33145,48038
+33146,21237
+33147,63819
+33148,79608
+33149,52830
+33150,52876
+33151,45513
+33152,25434
+33153,64438
+33154,57478
+33155,31743
+33156,19837,25202
+33157,51540
+33158,80185
+33159,27405
+33160,41606
+33161,70987
+33162,55261
+33163,26884
+33164,25800
+33165,26884
+33166,70524
+33167,56832
+33168,73573
+33169,51408
+33170,49134
+33171,31080
+33172,33102
+33173,50784
+33174,34924
+33175,50649
+33176,35512
+33177,32580
+33178,21718
+33179,55494
+33180,76074
+33181,72716
+33182,38782
+33183,61647
+33184,71686
+33185,37241
+33186,79009
+33187,79009
+33188,47183
+33189,25087
+33190,20647
+33191,24251
+33192,28065
+33193,28066
+33194,65548
+33195,60612
+33196,54562
+33197,76196
+33198,33191
+33199,70395
+33200,53624
+33201,76206
+33202,57934
+33203,26488
+33204,68280
+33205,34181
+33206,63422
+33207,60598
+33208,41875
+33209,21361
+33210,61246
+33211,81789
+33212,34924
+33213,81788
+33214,19979
+33215,18740
+33216,71516
+33217,31039
+33218,43377
+33219,66786
+33220,63424
+33221,22790
+33222,32390
+33223,34849
+33224,63326
+33225,54257
+33226,58283
+33227,27742
+33228,64520
+33229,33219
+33230,31565
+33231,28788
+33232,27151
+33233,71997
+33234,60612
+33235,58144
+33236,43273
+33237,48787
+33238,39294
+33239,42539
+33240,57113
+33241,52811
+33242,82056
+33243,66953
+33244,30953
+33245,74067
+33246,65629
+33247,24781
+33248,57187
+33249,66964
+33250,41729
+33251,29357
+33252,78020
+33253,79874
+33254,79874
+33255,54181
+33256,54181
+33257,79874
+33258,76361
+33259,21770
+33260,58798
+33261,51523
+33262,21568
+33263,51408
+33264,59122
+33265,25256
+33266,38168
+33267,48414
+33268,46988
+33269,53238
+33270,69443
+33271,33275
+33272,23679
+33273,29845
+33274,21777
+33275,24306
+33276,53830
+33277,79259
+33278,52658
+33279,4424
+33280,39563
+33281,37632
+33282,42044
+33283,29968
+33284,38555
+33285,19233
+33286,72437
+33287,24163
+33288,50398
+33289,49222
+33290,25101
+33291,28079
+33292,31858
+33293,21568
+33294,59420
+33295,37858
+33296,37859
+33297,34149
+33298,44682
+33299,72791
+33300,28153
+33301,70675
+33302,65753
+33303,65753
+33304,65754
+33305,65754
+33306,39406
+33307,34949
+33308,40986
+33309,40986
+33310,79187,79211
+33311,50297
+33312,59300
+33313,79211
+33314,66474
+33315,44474
+33316,71338
+33317,63124
+33318,63124
+33319,39373
+33320,22099
+33321,55495
+33322,48485
+33323,22152
+33324,75433
+33325,44474
+33326,33318
+33327,71341
+33328,41004
+33329,35631
+33330,27215
+33331,55785
+33332,36363
+33333,45813
+33334,37183
+33335,43311
+33336,81781
+33337,62617
+33338,37356
+33339,29936
+33340,29936
+33341,70392
+33342,68474
+33343,81735
+33344,58036
+33345,21707
+33346,78755
+33347,39613
+33348,31137
+33349,17469
+33350,61259
+33351,63790
+33352,46268
+33353,32986,31616
+33354,31618
+33355,77952
+33356,40040
+33357,46490
+33358,19228
+33359,42092
+33360,22128
+33361,73470
+33362,49803
+33363,26884
+33364,45813
+33365,37623
+33366,41911
+33367,36041
+33368,75518
+33369,24851
+33370,54562
+33371,31919
+33372,74151
+33373,33350
+33374,32603
+33375,35944
+33376,28600
+33377,58050
+33378,62145
+33379,76160
+33380,76160
+33381,42049
+33382,29737
+33383,33479
+33384,62145
+33385,24391
+33386,37166
+33387,73341
+33388,66939
+33389,69285
+33390,59611
+33391,59616
+33392,41022
+33393,33729
+33394,56179
+33395,57934
+33396,74567
+33397,34008
+33398,70214
+33399,34211
+33400,64534
+33401,57333
+33402,25302
+33403,30275
+33404,33403
+33405,54082
+33406,61956
+33407,53648
+33408,69887
+33409,67819
+33410,33452
+33411,42093
+33412,46317
+33413,66240
+33414,29731
+33415,39676
+33416,44626
+33417,57682
+33418,64674
+33419,23946
+33420,70033
+33421,1526
+33422,53736
+33423,62793
+33424,37411
+33425,40747
+33426,18987
+33427,48478
+33428,37450
+33429,62720
+33430,74281
+33431,32691
+33432,35557
+33433,40564
+33434,67957
+33435,30543
+33436,63138
+33437,19580
+33438,26662
+33439,47948
+33440,69931
+33441,23181
+33442,24732,41914
+33443,50817
+33444,61377
+33445,40283
+33446,46507
+33447,33597
+33448,66292,43168
+33449,63720
+33450,31245
+33451,34698
+33452,69544
+33453,51464
+33454,61078
+33455,51464
+33456,36443
+33457,32185
+33458,65614
+33459,60353
+33460,81865
+33461,81336
+33462,81337
+33463,50652
+33464,58739
+33465,70033
+33466,67703
+33467,41980
+33468,60032
+33469,61659
+33470,61651
+33471,40472
+33472,37616
+33473,31718
+33474,35557
+33475,37179
+33476,41743
+33477,63317
+33478,27813
+33479,34285
+33480,62145
+33481,47709
+33482,51730
+33483,50872
+33484,77288
+33485,62454
+33486,62456,74601
+33487,49026
+33488,31587
+33489,26728
+33490,43814
+33491,36841
+33492,78678
+33493,43853
+33494,69554
+33495,77472
+33496,39406
+33497,27118
+33498,34209
+33499,18790
+33500,53628
+33501,35879
+33502,57898
+33503,35879
+33504,69923
+33505,41923
+33506,81722
+33507,38624
+33508,73805
+33509,25796
+33510,25796
+33511,43377
+33512,33500
+33513,33500
+33514,33500
+33515,33500
+33516,33500
+33517,20938
+33518,50922
+33519,77145
+33520,79282
+33521,30062
+33522,65925
+33523,34209
+33524,75313
+33525,70646
+33526,27441
+33527,61257
+33528,74867
+33529,60032
+33530,31291
+33531,77308
+33532,75086
+33533,60742
+33534,51437
+33535,34924
+33536,74846
+33537,60540
+33538,59306
+33539,70629
+33540,67574
+33541,35273
+33542,33548
+33543,55668
+33544,59305
+33545,72791
+33546,35247
+33547,20698
+33548,76981
+33549,66953
+33550,34107
+33551,73439
+33552,37635
+33553,27997
+33554,67273
+33555,25001
+33556,19069
+33557,19069
+33558,67675
+33559,61703
+33560,48024
+33561,36872
+33562,44439
+33563,38475
+33564,42246
+33565,58158
+33566,74939
+33567,19069
+33568,75954
+33569,63191,75955
+33570,21671
+33571,26854
+33572,32926
+33573,33323
+33574,31126
+33575,48164
+33576,70395
+33577,81781
+33578,68281
+33579,69440
+33580,52495
+33581,44701
+33582,40752
+33583,69235
+33584,65879
+33585,60126
+33586,76657
+33587,65666
+33588,56564
+33589,38278
+33590,65631
+33591,72421
+33592,59765
+33593,55688
+33594,39018
+33595,19935
+33596,38385
+33597,67101
+33598,22051
+33599,81247
+33600,38053
+33601,33600
+33602,33600
+33603,73434
+33604,18740
+33605,48215
+33606,31910
+33607,20977
+33608,58161
+33609,49155
+33610,81794
+33611,24295
+33612,18910
+33613,74689,82053
+33614,67131
+33615,71517
+33616,31616
+33617,28475
+33618,61335
+33619,51901
+33620,67148
+33621,54953
+33622,33621
+33623,60042
+33624,60044
+33625,58088
+33626,48144
+33627,47047
+33628,74297
+33629,33626
+33630,51159
+33631,78755
+33632,60278
+33633,76161
+33634,82169
+33635,44558
+33636,28235
+33637,43225
+33638,81482
+33639,31417
+33640,33638
+33641,68854
+33642,72575
+33643,55236
+33644,33645
+33645,71398
+33646,33645
+33647,58088
+33648,21012
+33649,70033
+33650,59549
+33651,20355
+33652,21703
+33653,39792,55091
+33654,55826
+33655,79282
+33656,20355
+33657,78941
+33658,30508
+33659,37162,39014
+33660,59126
+33661,73836
+33662,45755
+33663,33662
+33664,44474
+33665,42488
+33666,33671,42489
+33667,63434
+33668,58162
+33669,72016
+33670,24249
+33671,24251,54264
+33672,52464
+33673,52469
+33674,45873
+33675,24823
+33676,51339
+33677,60554
+33678,63467
+33679,33678
+33680,64031
+33681,73837
+33682,33678
+33683,55471
+33684,53717
+33685,77212
+33686,77216
+33687,78436
+33688,71817
+33689,39608
+33690,54763
+33691,56246
+33692,70987
+33693,20289
+33694,36694
+33695,44156
+33696,33644
+33697,32461
+33698,46966
+33699,79848
+33700,76229
+33701,66766
+33702,48126
+33703,32718
+33704,54189
+33705,47198
+33706,39446
+33707,21770
+33708,68808
+33709,44347
+33710,57906
+33711,34389
+33712,56058
+33713,20079
+33714,77641
+33715,45813
+33716,28591
+33717,49944
+33718,28253
+33719,60534
+33720,40752
+33721,56601
+33722,23966
+33723,79175
+33724,37513
+33725,57261
+33726,30153
+33727,39367
+33728,28028
+33729,41022
+33730,39381
+33731,39379
+33732,39379
+33733,39375
+33734,61355
+33735,40752
+33736,28419
+33737,40758
+33738,23232
+33739,40578
+33740,80753
+33741,70033
+33742,43986
+33743,28596
+33744,6458
+33745,79076
+33746,66040
+33747,51068
+33748,34398
+33749,47432
+33750,44013
+33751,35944
+33752,39606
+33753,23182
+33754,27892
+33755,28535
+33756,28530
+33757,31742
+33758,30975
+33759,34771
+33760,75066
+33761,39049
+33762,67001
+33763,40752
+33764,43313
+33765,81462
+33766,56180
+33767,81717
+33768,34591
+33769,72959
+33770,59970
+33771,55690
+33772,80714
+33773,32508
+33774,34924
+33775,61335
+33776,66153
+33777,34924
+33778,33777
+33779,61251
+33780,64071
+33781,52678
+33782,60032
+33783,57535
+33784,61508
+33785,26352
+33786,26669
+33787,59377
+33788,59378
+33789,21671
+33790,55761
+33791,40701
+33792,51058
+33793,55734
+33794,62034
+33795,68236
+33796,51928
+33797,60076
+33798,60216
+33799,35838,60077
+33800,75548,33797
+33801,33798,30361
+33802,68236
+33803,45813
+33804,50717
+33805,44232
+33806,68060
+33807,20670
+33808,61117
+33809,68060
+33810,52904
+33811,28054
+33812,31245
+33813,21475
+33814,51468
+33815,82151
+33816,28600
+33817,46857
+33818,54909
+33819,33818
+33820,74778
+33821,33772
+33822,66696
+33823,22821
+33824,70033
+33825,25714
+33826,44083
+33827,20973
+33828,37321
+33829,28467
+33830,19468
+33831,25168
+33832,47491
+33833,78632
+33834,49437
+33835,19279
+33836,24897
+33837,25770
+33838,30588
+33839,54267
+33840,27090
+33841,64409
+33842,50383
+33843,53519
+33844,53628
+33845,65262
+33846,80607
+33847,79087
+33848,68168
+33849,31029
+33850,66953
+33851,52211
+33852,74067
+33853,28780
+33854,67410
+33855,53884
+33856,65869
+33857,69406
+33858,63212
+33859,78116
+33860,61395
+33861,25018
+33862,20743
+33863,25022
+33864,77268
+33865,45254
+33866,75654
+33867,37513
+33868,67310
+33869,33777
+33870,31753
+33871,69782
+33872,32603
+33873,32604
+33874,34556
+33875,33876
+33876,53283
+33877,30391
+33878,31803
+33879,31812
+33880,37780
+33881,45969
+33882,60138
+33883,33885
+33884,55612
+33885,63070
+33886,64831
+33887,21620
+33888,75018
+33889,48157
+33890,52920
+33891,71439
+33892,26947,26948,26949
+33893,33933
+33894,62703
+33895,37179
+33896,53760
+33897,33933
+33898,30930
+33899,64293
+33900,41731
+33901,64293
+33902,39517
+33903,60213
+33904,64779
+33905,51472
+33906,53986
+33907,28776
+33908,57360
+33909,48156
+33910,29677
+33911,58803
+33912,58798
+33913,39616
+33914,47737
+33915,28164
+33916,32497
+33917,62914
+33918,39676
+33919,34786
+33920,31816
+33921,32710
+33922,47432
+33923,76664
+33924,46767
+33925,72931
+33926,38227
+33927,76664
+33928,26947
+33929,81615
+33930,76631
+33931,57982
+33932,76664
+33933,76672
+33934,68258
+33935,27081
+33936,58384
+33937,70033
+33938,50117
+33939,51395
+33940,57230
+33941,26947
+33942,76663
+33943,67119
+33944,68236
+33945,62999
+33946,68238
+33947,69704
+33948,69701
+33949,71395
+33950,50824
+33951,49334
+33952,33934
+33953,28964
+33954,47432
+33955,33934
+33956,51319
+33957,76633
+33958,70183
+33959,51249
+33960,31372
+33961,73915
+33962,25949
+33963,34209
+33964,38053
+33965,28790
+33966,25431
+33967,42436,72990
+33968,58798
+33969,33797,29197
+33970,51558
+33971,72990
+33972,68909
+33973,68909
+33974,61622
+33975,29737,7764
+33976,29321
+33977,33976
+33978,75917
+33979,35620
+33980,76631
+33981,59970
+33982,21474
+33983,41877
+33984,40666
+33985,59605
+33986,22455
+33987,62147
+33988,36565
+33989,39149
+33990,48149
+33991,36395
+33992,50359
+33993,51069
+33994,72959
+33995,51825
+33996,54098
+33997,45813
+33998,60216
+33999,56241
+34000,26462
+34001,80612
+34002,34271
+34003,53210
+34004,35595
+34005,56957
+34006,63659
+34007,70058
+34008,61655
+34009,78816
+34010,70524
+34011,48037
+34012,47753
+34013,25706
+34014,59970
+34015,34017,55839
+34016,60216
+34017,45472
+34018,25019
+34019,66164
+34020,35771
+34021,20112
+34022,77399
+34023,69010
+34024,27508
+34025,40240
+34026,66468
+34027,63065
+34028,77635
+34029,48514
+34030,28790
+34031,27531
+34032,18866
+34033,37345
+34034,66035
+34035,62145
+34036,50139
+34037,68123
+34038,72959
+34039,58161
+34040,49769
+34041,28530
+34042,37802
+34043,37802
+34044,45309
+34045,74904
+34046,66889
+34047,37317
+34048,23897
+34049,51395
+34050,31155
+34051,19629
+34052,28177
+34053,78925
+34054,57735
+34055,23796
+34056,27858
+34057,27422
+34058,46176
+34059,62809
+34060,80174
+34061,76662
+34062,23643
+34063,49769
+34064,64831
+34065,73838
+34066,23748
+34067,40685
+34068,30367
+34069,50318
+34070,38648
+34071,62794
+34072,60216
+34073,63655
+34074,35682
+34075,50875
+34076,80497
+34077,38031
+34078,57867,62159
+34079,18988
+34080,57934
+34081,65908,48640
+34082,67213
+34083,67365
+34084,47898
+34085,51154
+34086,57357
+34087,35924
+34088,34085
+34089,60216
+34090,63187
+34091,62712
+34092,81462
+34093,76664
+34094,22665
+34095,30231
+34096,61866
+34097,61871
+34098,34771,77435
+34099,28790
+34100,21669
+34101,60603
+34102,54183
+34103,81413
+34104,77454
+34105,38667
+34106,49769
+34107,28307
+34108,33178
+34109,38053
+34110,28790
+34111,79419
+34112,22034
+34113,78790
+34114,56179
+34115,34207
+34116,58161
+34117,57143
+34118,81807
+34119,64831
+34120,72064
+34121,28530
+34122,63357
+34123,66092
+34124,71321
+34125,72506
+34126,39281
+34127,35565
+34128,71704
+34129,38170
+34130,46285
+34131,79211
+34132,54188
+34133,53174
+34134,54181
+34135,57187
+34136,35188
+34137,63312
+34138,53473
+34139,62152
+34140,53473
+34141,28529
+34142,34827
+34143,54183
+34144,64965
+34145,66164
+34146,66164
+34147,49361
+34148,29120
+34149,46042
+34150,55596
+34151,66066
+34152,62054
+34153,58720
+34154,61355
+34155,74454
+34156,40950
+34157,32530
+34158,21745
+34159,53163
+34160,41444
+34161,37166
+34162,65151
+34163,58069
+34164,72983
+34165,76005
+34166,72983
+34167,75495
+34168,69153
+34169,34209
+34170,48136
+34171,29623
+34172,20723
+34173,65560,19091
+34174,31245
+34175,34207
+34176,53624
+34177,21770
+34178,38952
+34179,25157
+34180,52497
+34181,48474
+34182,33213
+34183,56292
+34184,44440
+34185,28792
+34186,34113
+34187,34114
+34188,79252
+34189,31062
+34190,34182
+34191,36999
+34192,47487
+34193,53717
+34194,60450
+34195,68237
+34196,65816
+34197,28539
+34198,22420
+34199,21745
+34200,21218
+34201,21765
+34202,57934
+34203,63357
+34204,21671
+34205,21669
+34206,34118,18968
+34207,63065
+34208,20409
+34209,28537
+34210,28530
+34211,19172
+34212,34211
+34213,32677
+34214,34861
+34215,71435
+34216,50905
+34217,62146
+34218,47026
+34219,39968
+34220,28346
+34221,39809
+34222,54043
+34223,19280
+34224,74275
+34225,21731
+34226,65057
+34227,20118
+34228,48087
+34229,50875
+34230,34229
+34231,54307
+34232,57472
+34233,60733
+34234,37393
+34235,35826
+34236,41117
+34237,47744
+34238,54314
+34239,21905
+34240,65581
+34241,74501
+34242,75766
+34243,77974
+34244,34908
+34245,52238
+34246,34671
+34247,61006
+34248,72685
+34249,67290
+34250,45126
+34251,74067
+34252,46962
+34253,46958
+34254,81501
+34255,19629
+34256,77341
+34257,24961
+34258,50784
+34259,45260
+34260,72790
+34261,33755
+34262,74275
+34263,35634
+34264,34881
+34265,18790,52146
+34266,39152
+34267,49360
+34268,58024
+34269,18793
+34270,31647
+34271,34089
+34272,37824,39151
+34273,59970
+34274,66049
+34275,60280
+34276,37561
+34277,65509
+34278,60216
+34279,47621
+34280,47621
+34281,35433
+34282,61422
+34283,47621
+34284,51729
+34285,62729
+34286,30557
+34287,37310
+34288,63416
+34289,63416
+34290,75566
+34291,58168
+34292,30391
+34293,54404
+34294,36721
+34295,49502
+34296,50638
+34297,31702
+34298,50085
+34299,63572,63066
+34300,63185
+34301,80515
+34302,79940
+34303,27280
+34304,22152
+34305,73838
+34306,69130
+34307,61779
+34308,32535
+34309,18713
+34310,74622
+34311,28467
+34312,66058
+34313,48697
+34314,53694
+34315,37478
+34316,35534
+34317,50139
+34318,68352
+34319,51154
+34320,48432
+34321,72094
+34322,41279
+34323,59413
+34324,21728
+34325,48462
+34326,53619
+34327,38814
+34328,35752
+34329,46694
+34330,30581
+34331,38266
+34332,37120
+34333,34209
+34334,72258
+34335,39115
+34336,55494
+34337,60604
+34338,23885
+34339,18706
+34340,34924
+34341,33755
+34342,69448
+34343,31058
+34344,58162
+34345,28539
+34346,48318
+34347,38044
+34348,34590
+34349,28530
+34350,19579
+34351,45546
+34352,34456
+34353,18661
+34354,63065
+34355,77452
+34356,35626
+34357,28539
+34358,75745
+34359,38844
+34360,52655
+34361,20727
+34362,63314
+34363,72959
+34364,34358
+34365,34358
+34366,75745
+34367,34359
+34368,34359
+34369,59136
+34370,79165
+34371,32512
+34372,75472
+34373,58161
+34374,34357
+34375,21269
+34376,41022
+34377,76295
+34378,36673
+34379,38952
+34380,81578
+34381,31245
+34382,37625
+34383,81703
+34384,58229
+34385,53012
+34386,31798
+34387,64854
+34388,56937
+34389,72281
+34390,69030
+34391,65799
+34392,34657
+34393,54188
+34394,54181
+34395,52084
+34396,56869
+34397,59605
+34398,47747
+34399,29418
+34400,53660
+34401,20074
+34402,60216
+34403,21238
+34404,21289
+34405,65931
+34406,22274
+34407,55828
+34408,65816
+34409,37187
+34410,38614
+34411,36983
+34412,34293
+34413,35532
+34414,76338
+34415,31497
+34416,21886
+34417,75118
+34418,75433
+34419,71003
+34420,69860
+34421,31775
+34422,61433
+34423,36404
+34424,56932
+34425,56358
+34426,54704
+34427,81807
+34428,53916
+34429,63598
+34430,63117
+34431,60216
+34432,24349
+34433,77521
+34434,31823
+34435,19171
+34436,79114
+34437,37712
+34438,46281
+34439,40752
+34440,38207
+34441,43107,20133
+34442,51068
+34443,48875
+34444,37459
+34445,25681
+34446,19867
+34447,70568
+34448,70392
+34449,78108
+34450,54710
+34451,34126
+34452,63584
+34453,53916
+34454,34452
+34455,34452
+34456,56179
+34457,61796
+34458,38021
+34459,37120
+34460,65976
+34461,19228
+34462,48131
+34463,34639
+34464,48064
+34465,28467
+34466,57067
+34467,60216
+34468,20618
+34469,55489
+34470,77374
+34471,76030
+34472,48313
+34473,27179
+34474,67280
+34475,26142
+34476,53176
+34477,81714
+34478,67957
+34479,50701
+34480,25434
+34481,82151
+34482,63405
+34483,29626
+34484,59549
+34485,28790
+34486,45546
+34487,30237
+34488,34389
+34489,71310
+34490,61789
+34491,61792
+34492,19497
+34493,44440
+34494,65110
+34495,71347
+34496,73007
+34497,71348
+34498,34827
+34499,19230
+34500,75917
+34501,55144
+34502,35446
+34503,47984
+34504,69978
+34505,79738
+34506,63442
+34507,63284
+34508,63278
+34509,37690
+34510,75548
+34511,65531
+34512,67630
+34513,31369
+34514,34659
+34515,34357
+34516,28529
+34517,53717
+34518,57346
+34519,54901
+34520,28616
+34521,34398
+34522,61422
+34523,34356
+34524,66131
+34525,78698
+34526,66953
+34527,74462
+34528,28573
+34529,71310
+34530,74081
+34531,38455
+34532,71321
+34533,56446
+34534,58088
+34535,75031
+34536,48084
+34537,34299
+34538,72052
+34539,21898
+34540,78703
+34541,30300
+34542,35682
+34543,35634
+34544,39049
+34545,58166
+34546,56917
+34547,29623
+34548,47814
+34549,35886
+34550,65483
+34551,66164
+34552,71560
+34553,80422
+34554,24689
+34555,73918
+34556,53624
+34557,53624
+34558,53621
+34559,30928
+34560,31477
+34561,24704
+34562,39838
+34563,44359
+34564,34924
+34565,21922
+34566,27562
+34567,76345
+34568,20120
+34569,70629
+34570,47650
+34571,61285
+34572,62455
+34573,53705
+34574,43872
+34575,34585
+34576,34587
+34577,75604
+34578,50717
+34579,57163
+34580,76992
+34581,34578
+34582,29698
+34583,20754
+34584,25256
+34585,53704
+34586,36482
+34587,53716
+34588,69331
+34589,34564
+34590,65816
+34591,72052
+34592,28105
+34593,76877
+34594,54859
+34595,58162
+34596,57157
+34597,57160
+34598,57157
+34599,57160
+34600,57157
+34601,57160
+34602,61874
+34603,27455
+34604,57157
+34605,57160
+34606,54356
+34607,19379
+34608,68820
+34609,35876
+34610,45367
+34611,18869
+34612,53952
+34613,19171
+34614,42336
+34615,52172
+34616,75472
+34617,61655
+34618,66118
+34619,65133
+34620,72959
+34621,79165
+34622,63584
+34623,35719
+34624,57345
+34625,65930
+34626,60713
+34627,30487
+34628,29691
+34629,31058
+34630,32246
+34631,75772
+34632,34209
+34633,62659
+34634,28526
+34635,38044
+34636,37310
+34637,68835
+34638,44511
+34639,41856
+34640,26308
+34641,43109
+34642,48640
+34643,19000
+34644,58366
+34645,48803
+34646,39101
+34647,40063
+34648,77460
+34649,62513
+34650,35635
+34651,34209
+34652,40064,56863
+34653,20118
+34654,28616
+34655,61541
+34656,41413
+34657,63584
+34658,20725
+34659,67498
+34660,63945
+34661,31137
+34662,37113,32953
+34663,70091
+34664,19549
+34665,34924
+34666,70568
+34667,56440
+34668,18661
+34669,22164
+34670,34362
+34671,38910
+34672,25202
+34673,56243
+34674,42358
+34675,65581
+34676,58168
+34677,50910
+34678,50630
+34679,21922
+34680,19655
+34681,54732
+34682,48313
+34683,51174
+34684,59602
+34685,56357,81808
+34686,35695
+34687,35511
+34688,51562
+34689,23763
+34690,48087
+34691,36406
+34692,36406
+34693,19171
+34694,55250
+34695,31058
+34696,81578
+34697,50875
+34698,26934
+34699,38814
+34700,65816
+34701,37154
+34702,81763
+34703,51277
+34704,71996
+34705,53716
+34706,74567
+34707,41875
+34708,55914
+34709,70651
+34710,73598
+34711,33650
+34712,18774
+34713,41444
+34714,32710
+34715,39511
+34716,61054
+34717,70033
+34718,79608
+34719,35126
+34720,39205
+34721,28790
+34722,18965
+34723,65702
+34724,24243
+34725,55497
+34726,51068
+34727,51473
+34728,21097
+34729,30443
+34730,56822
+34731,28536
+34732,55347
+34733,70914
+34734,49858
+34735,72052
+34736,49797
+34737,72983
+34738,19353
+34739,43908
+34740,51566
+34741,35922
+34742,35922
+34743,48156
+34744,34207
+34745,23775
+34746,77277,24257
+34747,34766
+34748,41371
+34749,67693
+34750,47455
+34751,53164
+34752,8184
+34753,43444
+34754,79211
+34755,74067
+34756,67791
+34757,72186
+34758,71446
+34759,81161
+34760,77101
+34761,70033
+34762,64353
+34763,81807
+34764,43110
+34765,81413
+34766,81715
+34767,28775
+34768,56276
+34769,70581
+34770,32790
+34771,34199
+34772,21620
+34773,32961
+34774,36542
+34775,23420
+34776,34867
+34777,65483
+34778,61238
+34779,63570
+34780,77802
+34781,43723
+34782,21610
+34783,39578
+34784,75788
+34785,33403
+34786,75057
+34787,29744
+34788,35105
+34789,54425
+34790,75668
+34791,61758
+34792,77014
+34793,60228
+34794,63665
+34795,44167
+34796,56179
+34797,39578
+34798,31245
+34799,32929
+34800,78647
+34801,53613
+34802,59416
+34803,65154
+34804,45276
+34805,35690
+34806,34659
+34807,58161
+34808,32503
+34809,61336
+34810,72399
+34811,81251
+34812,31618
+34813,21480
+34814,28530
+34815,19200
+34816,71321
+34817,43546
+34818,28054
+34819,45096
+34820,62387
+34821,80185
+34822,22665
+34823,80185
+34824,19629
+34825,79940
+34826,37824
+34827,75917
+34828,40150
+34829,41412
+34830,64142
+34831,47744
+34832,46782
+34833,21597
+34834,69173
+34835,42142
+34836,35533
+34837,39111
+34838,59307
+34839,48157
+34840,62986
+34841,35517
+34842,61763
+34843,60019
+34844,48792
+34845,61764
+34846,19648
+34847,57106
+34848,55942
+34849,37479
+34850,65245
+34851,34924
+34852,36999
+34853,63819
+34854,31337
+34855,66704
+34856,32177
+34857,78996
+34858,80717
+34859,29698
+34860,34175
+34861,34113
+34862,35507
+34863,72623
+34864,30268
+34865,62583
+34866,34149
+34867,35517
+34868,66066
+34869,41846
+34870,60450
+34871,46092
+34872,41930
+34873,38834
+34874,38839
+34875,66727
+34876,80135
+34877,77636
+34878,53694
+34879,35635
+34880,35634
+34881,33631
+34882,71310
+34883,35797
+34884,33756
+34885,53454
+34886,34175
+34887,76556
+34888,61402
+34889,28054
+34890,65273
+34891,47068,49011
+34892,59338
+34893,47026
+34894,65638
+34895,34209
+34896,39578
+34897,34861
+34898,67266
+34899,32799
+34900,60538
+34901,72960
+34902,47718
+34903,35787
+34904,28530
+34905,68809
+34906,47716
+34907,63070
+34908,63065
+34909,19635
+34910,20577
+34911,50769
+34912,63587
+34913,34914
+34914,18740
+34915,73007
+34916,38272
+34917,18742
+34918,79175
+34919,34765
+34920,34763
+34921,38883
+34922,34771
+34923,37622
+34924,48423
+34925,52959
+34926,47814
+34927,38646
+34928,38569
+34929,34074
+34930,14950
+34931,29105
+34932,21777
+34933,14950
+34934,53036
+34935,23792
+34936,35557
+34937,38567
+34938,77641
+34939,47978
+34940,48764
+34941,81170
+34942,43247,48219
+34943,23896
+34944,63126
+34945,75997
+34946,34209
+34947,61779
+34948,34406
+34949,30687
+34950,62515
+34951,52189
+34952,81703
+34953,69286
+34954,37041
+34955,60762
+34956,31228
+34957,75741,67950
+34958,23946
+34959,24565
+34960,36568
+34961,70646
+34962,32225,20963
+34963,19334
+34964,61906
+34965,20419
+34966,18740
+34967,67053
+34968,43471
+34969,77641
+34970,77641
+34971,76711
+34972,81095
+34973,25850
+34974,67574
+34975,48841
+34976,61865
+34977,34976
+34978,34976
+34979,70091
+34980,30541
+34981,35130
+34982,66214
+34983,81703
+34984,71634
+34985,53171
+34986,34776
+34987,63060
+34988,79000
+34989,21881
+34990,71996
+34991,73537
+34992,51470,51469
+34993,69330
+34994,73537
+34995,72623
+34996,66072
+34997,36404
+34998,60385
+34999,31743
+35000,47948
+35001,39062
+35002,68937
+35003,75668
+35004,56871
+35005,22044
+35006,51566
+35007,31705
+35008,60453
+35009,53459
+35010,51991
+35011,64853
+35012,51567
+35013,81224
+35014,68475
+35015,51701
+35016,75216
+35017,28776
+35018,53701
+35019,53454
+35020,52634
+35021,39049
+35022,73537
+35023,50976
+35024,58158
+35025,49217
+35026,61402
+35027,27459,77509
+35028,49351
+35029,61651
+35030,80565
+35031,64873
+35032,75936
+35033,58152
+35034,58161
+35035,74067
+35036,39049
+35037,42225
+35038,34701
+35039,80038
+35040,40932
+35041,53717
+35042,35595
+35043,55693,53848
+35044,31689
+35045,53648
+35046,52035
+35047,43107
+35048,65958
+35049,61792
+35050,81780
+35051,74939
+35052,49334
+35053,81789
+35054,25094
+35055,35772
+35056,35612
+35057,57901
+35058,63765
+35059,24835
+35060,43110
+35061,54860
+35062,53701
+35063,69127
+35064,19979,60631
+35065,36976,40021
+35066,68057
+35067,23925
+35068,28016
+35069,79224
+35070,19069
+35071,67675
+35072,45009
+35073,28307
+35074,29569
+35075,48710
+35076,67608
+35077,31616
+35078,53648
+35079,29067
+35080,48319,61828
+35081,79608
+35082,35879
+35083,29651
+35084,61450
+35085,30473
+35086,30469
+35087,19069
+35088,34845
+35089,22610
+35090,48332
+35091,24306
+35092,56950
+35093,56950
+35094,20973
+35095,20689
+35096,39294
+35097,42539
+35098,67272
+35099,62935
+35100,72051
+35101,53516
+35102,71961
+35103,67277
+35104,22293
+35105,81592
+35106,34327
+35107,28181
+35108,48318
+35109,20990
+35110,76161
+35111,30882
+35112,21078
+35113,21078
+35114,33542
+35115,69551
+35116,33247
+35117,61251
+35118,37411
+35119,32691
+35120,56492
+35121,34985
+35122,48579
+35123,35125
+35124,35125
+35125,51929
+35126,41773
+35127,34924
+35128,20652
+35129,50912
+35130,39357
+35131,39357
+35132,39411
+35133,39357
+35134,35130
+35135,60216
+35136,51277
+35137,28187
+35138,56949
+35139,38400
+35140,71997
+35141,28522
+35142,64142
+35143,76384
+35144,35142
+35145,35142
+35146,20519
+35147,24821
+35148,26939
+35149,53696
+35150,38196
+35151,24006
+35152,63587
+35153,53474
+35154,35526
+35155,60216
+35156,31245
+35157,30268
+35158,64142
+35159,76689
+35160,63472
+35161,58012
+35162,58004
+35163,56270
+35164,68153
+35165,22681
+35166,58004
+35167,56179
+35168,72505
+35169,56950
+35170,34561
+35171,70515
+35172,77147
+35173,60131
+35174,22291
+35175,37174
+35176,28790
+35177,58162
+35178,50769
+35179,74081
+35180,38740
+35181,49392
+35182,75016
+35183,50117
+35184,72114
+35185,38614
+35186,51803
+35187,38984
+35188,48461
+35189,33879
+35190,21703
+35191,22200
+35192,27059
+35193,29845
+35194,37471
+35195,30889
+35196,31100
+35197,35668
+35198,60541
+35199,61455
+35200,75677
+35201,79282
+35202,37487
+35203,80238
+35204,27521
+35205,53694
+35206,61159
+35207,31803
+35208,33879
+35209,35204
+35210,73018
+35211,23590
+35212,62846
+35213,35204
+35214,51068
+35215,54044
+35216,49343
+35217,47012
+35218,47015
+35219,20977
+35220,20905
+35221,41005
+35222,37183
+35223,34114
+35224,60598
+35225,35533
+35226,38768
+35227,57934
+35228,25115
+35229,36602
+35230,74567
+35231,70944
+35232,61419
+35233,79516
+35234,60206
+35235,31468
+35236,34868
+35237,45813
+35238,45812
+35239,60688
+35240,40564
+35241,20690
+35242,35096
+35243,35097
+35244,26919
+35245,19654
+35246,71557
+35247,80498
+35248,33292
+35249,30300
+35250,34153
+35251,57106
+35252,21012,20999
+35253,3143
+35254,52655
+35255,71949
+35256,31058
+35257,62549
+35258,74943
+35259,72981
+35260,81578
+35261,71003
+35262,39049
+35263,66372
+35264,69051
+35265,47985
+35266,36744
+35267,61881
+35268,61880
+35269,34661
+35270,34661
+35271,28398
+35272,70399
+35273,37041
+35274,66132
+35275,66953
+35276,71686
+35277,56832
+35278,70399
+35279,70976
+35280,35414
+35281,81095
+35282,37042
+35283,35290
+35284,37712
+35285,41917
+35286,74234
+35287,35291,35285
+35288,21474
+35289,59432
+35290,66953
+35291,75056
+35292,51929
+35293,53593
+35294,59377
+35295,23796
+35296,43828,41245
+35297,41245
+35298,56046
+35299,26217
+35300,61336
+35301,69288
+35302,35291
+35303,76104
+35304,53597
+35305,75086
+35306,35307
+35307,78654
+35308,40423
+35309,21458
+35310,53613
+35311,24379
+35312,49483
+35313,78097
+35314,69050
+35315,19935
+35316,33581
+35317,78703
+35318,47442
+35319,58616
+35320,47047
+35321,34661
+35322,31239
+35323,74017
+35324,27153
+35325,44697
+35326,20698
+35327,74814
+35328,21012
+35329,52762
+35330,47017
+35331,31615
+35332,79924
+35333,59126
+35334,22640
+35335,35309
+35336,79282
+35337,58166
+35338,31241
+35339,28358
+35340,56361
+35341,53688
+35342,57573
+35343,71996
+35344,43814
+35345,38693
+35346,34676
+35347,52702
+35348,32159
+35349,79743
+35350,60385
+35351,32487
+35352,20907
+35353,54967
+35354,54991
+35355,50180
+35356,52990
+35357,42358
+35358,77641
+35359,48318
+35360,21671
+35361,68236
+35362,63442
+35363,21081
+35364,37419
+35365,65908
+35366,36872
+35367,38562
+35368,48640
+35369,40150
+35370,40617
+35371,51836
+35372,19272
+35373,35780
+35374,53199
+35375,57330
+35376,62867
+35377,78683
+35378,54761
+35379,74501
+35380,75472
+35381,46031
+35382,77496
+35383,78059
+35384,32506
+35385,79387
+35386,62147
+35387,47814
+35388,54044
+35389,59542
+35390,65099
+35391,20907
+35392,54257
+35393,71949
+35394,63279
+35395,64459
+35396,64142
+35397,28600
+35398,30694
+35399,19384
+35400,74462
+35401,39813
+35402,25016
+35403,62145
+35404,51677
+35405,65478
+35406,71595
+35407,46090
+35408,33717
+35409,42349
+35410,36434
+35411,35414
+35412,64417
+35413,47730
+35414,67839
+35415,22059
+35416,49312
+35417,60225
+35418,54310
+35419,23774
+35420,20979
+35421,23774
+35422,57553
+35423,81578
+35424,58088
+35425,78644
+35426,23897
+35427,65627
+35428,71317
+35429,35425
+35430,59970
+35431,38053
+35432,57704
+35433,51156
+35434,35616
+35435,78758
+35436,35679
+35437,72052
+35438,31349
+35439,29605
+35440,56173
+35441,45096
+35442,45096
+35443,34613
+35444,39153
+35445,35698
+35446,35448
+35447,35611
+35448,54044
+35449,49358
+35450,34489
+35451,78801
+35452,69168
+35453,32493
+35454,34827
+35455,21475
+35456,34538
+35457,44440
+35458,22944
+35459,57333
+35460,18658
+35461,18658
+35462,35752
+35463,60018
+35464,45096
+35465,53454
+35466,25087
+35467,69852
+35468,40747
+35469,37402
+35470,37678
+35471,50273
+35472,60993
+35473,39260
+35474,40986
+35475,62145
+35476,75020
+35477,77374
+35478,77367
+35479,63819
+35480,50010
+35481,65968
+35482,72052
+35483,62034
+35484,22852
+35485,27929
+35486,52375,22305
+35487,28532
+35488,37612,21087
+35489,74180
+35490,31245
+35491,35679
+35492,21805
+35493,69173
+35494,52071
+35495,75917
+35496,69168
+35497,73722
+35498,35437
+35499,35625
+35500,35727
+35501,34209
+35502,30659
+35503,28414
+35504,53952
+35505,48536
+35506,48536
+35507,35448
+35508,34871
+35509,34797
+35510,50369
+35511,23774
+35512,53022
+35513,28701
+35514,35482
+35515,35482
+35516,48349
+35517,19171
+35518,35142
+35519,34918
+35520,69168
+35521,51182
+35522,81374
+35523,67545
+35524,78059
+35525,71310
+35526,23258
+35527,73275
+35528,47978
+35529,39846
+35530,35595,72435
+35531,59333
+35532,72051
+35533,30883
+35534,47487
+35535,35534
+35536,37000
+35537,65816
+35538,37186
+35539,52920
+35540,66229
+35541,60216
+35542,70526
+35543,44440
+35544,35567
+35545,65679
+35546,47814
+35547,21218
+35548,78786
+35549,35495
+35550,35494
+35551,22149
+35552,69033
+35553,31139
+35554,35611
+35555,78750
+35556,78751
+35557,57261
+35558,32986,31616
+35559,35391
+35560,31618
+35561,64435
+35562,31245
+35563,35727
+35564,35507
+35565,78773
+35566,81808
+35567,72861
+35568,78773
+35569,35620
+35570,78773
+35571,58916
+35572,60744
+35573,77180
+35574,50117
+35575,80896
+35576,34859
+35577,80197
+35578,80257
+35579,64851
+35580,35611
+35581,19654
+35582,53694
+35583,29691
+35584,37120
+35585,54734
+35586,35565
+35587,35495
+35588,35425
+35589,76890
+35590,47602
+35591,81411
+35592,47828
+35593,69168
+35594,31427
+35595,61335,29411
+35596,67131
+35597,18931
+35598,47031
+35599,26811
+35600,41602
+35601,31743
+35602,36525
+35603,45167
+35604,31109
+35605,45224
+35606,26014
+35607,35609
+35608,58700
+35609,71838
+35610,52613
+35611,39578
+35612,48251
+35613,35697
+35614,48645
+35615,65816
+35616,48113
+35617,19228
+35618,55834,77108
+35619,60177
+35620,75917
+35621,57080
+35622,35495
+35623,48697
+35624,48427
+35625,72959
+35626,60598
+35627,31245
+35628,54717
+35629,35792
+35630,35627
+35631,31372
+35632,34450
+35633,65968
+35634,35695
+35635,35449
+35636,35712
+35637,48041
+35638,78625
+35639,49769
+35640,65909
+35641,28136
+35642,34613
+35643,27781
+35644,54047
+35645,37712
+35646,48050
+35647,29806
+35648,69554
+35649,51205
+35650,35771
+35651,74478
+35652,31616
+35653,60383
+35654,60383
+35655,72506
+35656,72505
+35657,41413
+35658,65556
+35659,34299
+35660,65682
+35661,55493
+35662,28792
+35663,35482
+35664,30882
+35665,69978
+35666,65925
+35667,34505
+35668,37478
+35669,37478
+35670,35668
+35671,81227
+35672,35698,20828
+35673,49026
+35674,47830
+35675,62409
+35676,19171
+35677,49888
+35678,63314
+35679,56200
+35680,38564
+35681,35637
+35682,60216
+35683,66058
+35684,35437
+35685,78643
+35686,62794
+35687,35491
+35688,38362
+35689,47762
+35690,54784
+35691,78790
+35692,78815
+35693,35567
+35694,22152
+35695,54044
+35696,46010
+35697,35792
+35698,35494
+35699,20531
+35700,20530
+35701,33503
+35702,77491
+35703,35772
+35704,57346
+35705,35437
+35706,60216
+35707,57964
+35708,77633
+35709,48248
+35710,35437
+35711,37650
+35712,35142
+35713,51562
+35714,35656
+35715,28790
+35716,69173
+35717,63584
+35718,38211
+35719,35717,53916
+35720,60604
+35721,47979
+35722,75917
+35723,56179
+35724,20841
+35725,77472
+35726,51638
+35727,71697
+35728,35507
+35729,30883
+35730,72122
+35731,72716
+35732,55692
+35733,61655
+35734,65581
+35735,71866
+35736,47954
+35737,70548
+35738,76657
+35739,70183
+35740,20745
+35741,58783
+35742,58803
+35743,58800
+35744,38768
+35745,51642
+35746,56179
+35747,80257
+35748,53060
+35749,61247
+35750,22420
+35751,35142
+35752,29711
+35753,69543
+35754,37411,19112
+35755,54774
+35756,33756
+35757,39281
+35758,58798
+35759,47762
+35760,31372
+35761,66329
+35762,19480
+35763,58776
+35764,68928
+35765,58779
+35766,70214
+35767,25707
+35768,33885
+35769,40150
+35770,30650
+35771,19171
+35772,71866
+35773,21620
+35774,31690
+35775,53199
+35776,32269
+35777,50604
+35778,51677
+35779,69803
+35780,30937
+35781,74478
+35782,37405
+35783,27042
+35784,27274
+35785,46826
+35786,31607
+35787,65579
+35788,63380
+35789,25495
+35790,35399
+35791,77374
+35792,55348
+35793,35625
+35794,19697
+35795,77976
+35796,53717
+35797,69173
+35798,35438
+35799,81578
+35800,77641
+35801,80421
+35802,38614
+35803,35183
+35804,65441
+35805,71869
+35806,19697
+35807,79562
+35808,19311,81789
+35809,47128
+35810,58204
+35811,53171
+35812,71595
+35813,49881
+35814,74939
+35815,36602
+35816,79175
+35817,71395
+35818,63010
+35819,20933
+35820,25037,28474
+35821,25713
+35822,74814
+35823,34732
+35824,25223
+35825,25216
+35826,38828
+35827,74811
+35828,69237
+35829,69173
+35830,76256
+35831,76258
+35832,50985
+35833,45900
+35834,31245
+35835,28529
+35836,78238
+35837,22112
+35838,19228
+35839,35837
+35840,31245
+35841,48126
+35842,59549
+35843,45851
+35844,55756
+35845,32531
+35846,67613
+35847,23541
+35848,77641
+35849,35438
+35850,46059
+35851,57187
+35852,56474
+35853,25289
+35854,36317
+35855,60216
+35856,36335
+35857,44545
+35858,63326
+35859,30268
+35860,50605
+35861,20655
+35862,35922
+35863,79720
+35864,53422
+35865,74018
+35866,72535
+35867,36694
+35868,59825
+35869,63426
+35870,73222
+35871,64142
+35872,41772
+35873,64142
+35874,24243
+35875,60592
+35876,19382
+35877,21597
+35878,21529
+35879,69173
+35880,19828
+35881,56233
+35882,69173
+35883,35498
+35884,35874
+35885,35874
+35886,57187
+35887,48461
+35888,69172
+35889,32527
+35890,50638
+35891,81462
+35892,61063
+35893,78215
+35894,35482
+35895,35852
+35896,62266
+35897,74939
+35898,71505
+35899,32457
+35900,14907
+35901,56532
+35902,75548
+35903,77280
+35904,37776
+35905,25115
+35906,50319
+35907,61355
+35908,45813
+35909,39556
+35910,26946
+35911,21631
+35912,70104
+35913,80396
+35914,57731
+35915,61380
+35916,68230
+35917,53704
+35918,18868
+35919,53707
+35920,74562
+35921,49136
+35922,23790
+35923,65754
+35924,30882
+35925,65925
+35926,81789
+35927,55499
+35928,31340
+35929,79072
+35930,79608
+35931,57682
+35932,29372
+35933,61866
+35934,61871
+35935,38521
+35936,39276
+35937,34118
+35938,30518
+35939,57682
+35940,61159
+35941,50784
+35942,39049
+35943,28567
+35944,27187,36044
+35945,40384
+35946,45813
+35947,29339
+35948,70214
+35949,31853
+35950,24400
+35951,25858
+35952,37712
+35953,30372
+35954,76664
+35955,45813
+35956,40572
+35957,60304
+35958,80748
+35959,69004
+35960,70033
+35961,74821
+35962,64403
+35963,67001
+35964,39534
+35965,69978
+35966,73291
+35967,75141
+35968,75141
+35969,79640
+35970,81746
+35971,61705
+35972,27721
+35973,49353
+35974,31646
+35975,23440
+35976,39928
+35977,39930
+35978,69564
+35979,34868
+35980,79418
+35981,67445
+35982,35546
+35983,26953
+35984,20698
+35985,46269
+35986,35922
+35987,65760
+35988,59350
+35989,63232
+35990,70776
+35991,21447
+35992,51395
+35993,49286
+35994,80237
+35995,81482
+35996,20690
+35997,51535
+35998,58781
+35999,47431
+36000,81193
+36001,69554
+36002,71329
+36003,67498
+36004,19438
+36005,64142
+36006,78191
+36007,61415
+36008,55022
+36009,30300
+36010,24146
+36011,74903
+36012,35340
+36013,53171
+36014,26328
+36015,26668
+36016,46782
+36017,61415
+36018,70987
+36019,31825
+36020,31825
+36021,29839
+36022,49079
+36023,70814
+36024,35557
+36025,53774
+36026,66785
+36027,54562
+36028,44283
+36029,77004
+36030,74818
+36031,20755
+36032,71900
+36033,60032
+36034,67703
+36035,65579
+36036,69330
+36037,56009
+36038,61260
+36039,70033
+36040,31137
+36041,66939
+36042,72712
+36043,69274
+36044,20743
+36045,21869
+36046,27648
+36047,27900,36044
+36048,40617
+36049,42049
+36050,43554
+36051,51818
+36052,60216
+36053,60771
+36054,62852
+36055,69609
+36056,25229
+36057,75954
+36058,79639
+36059,19280
+36060,19367
+36061,64142
+36062,19228
+36063,66036
+36064,58161
+36065,31245
+36066,57066
+36067,20067
+36068,42429
+36069,71310
+36070,36065
+36071,81462
+36072,36065
+36073,29839
+36074,24781
+36075,53318
+36076,31477
+36077,61789
+36078,75063
+36079,29737
+36080,56542
+36081,45367
+36082,48672
+36083,17785
+36084,37478
+36085,37623
+36086,49079
+36087,81462
+36088,23891
+36089,23891
+36090,27503
+36091,43786
+36092,73884
+36093,39676
+36094,55373
+36095,50459
+36096,34819
+36097,59970
+36098,38024
+36099,73838
+36100,66953
+36101,55486
+36102,63013
+36103,63953
+36104,41444
+36105,49121
+36106,44514
+36107,29737,7764
+36108,49971
+36109,51901
+36110,53416
+36111,55984
+36112,56020
+36113,70294
+36114,27970
+36115,38013
+36116,81874
+36117,20355
+36118,55067
+36119,34839
+36120,76740
+36121,50899
+36122,36777
+36123,47744
+36124,67991
+36125,81227
+36126,81227
+36127,51803,26298
+36128,23664
+36129,66862
+36130,40036
+36131,69144
+36132,79282
+36133,40602
+36134,25115
+36135,72248
+36136,47908
+36137,53717
+36138,64831
+36139,53624
+36140,53621
+36141,45077
+36142,77385
+36143,81801
+36144,75654
+36145,30937
+36146,53499
+36147,62955
+36148,57654
+36149,57682
+36150,24689
+36151,51473
+36152,61493
+36153,66046
+36154,55601
+36155,60216
+36156,72834
+36157,23225
+36158,22438
+36159,38800
+36160,68352
+36161,49079
+36162,74232
+36163,34118
+36164,81227
+36165,63307
+36166,23615
+36167,78424
+36168,43240
+36169,49414
+36170,28747
+36171,72585
+36172,23027
+36173,23643
+36174,35234
+36175,75976
+36176,67959
+36177,32551
+36178,28991
+36179,29797
+36180,32780
+36181,32775
+36182,32982
+36183,77603
+36184,28591
+36185,63820
+36186,33896
+36187,28792
+36188,48461
+36189,36965
+36190,47830
+36191,36101
+36192,36463
+36193,68352
+36194,30300
+36195,20307
+36196,25329
+36197,39479
+36198,40246
+36199,40517
+36200,81227
+36201,45660
+36202,21731
+36203,63379
+36204,49962
+36205,44697
+36206,19570
+36207,56338
+36208,23243
+36209,51848
+36210,64371
+36211,65442
+36212,65534
+36213,36187
+36214,66300
+36215,66431
+36216,67675,71524
+36217,69569
+36218,38425
+36219,36218
+36220,73460
+36221,64949
+36222,43240
+36223,58674
+36224,79963
+36225,37478
+36226,22675
+36227,75814
+36228,38522
+36229,49079
+36230,23793
+36231,32489
+36232,33047
+36233,55614
+36234,64670
+36235,30300
+36236,77474
+36237,78526
+36238,30275
+36239,70580
+36240,48943
+36241,75011
+36242,31200
+36243,48072
+36244,41606
+36245,41606
+36246,40140
+36247,31417
+36248,11862
+36249,37623
+36250,60771
+36251,58697
+36252,32713
+36253,24340
+36254,55281
+36255,61209
+36256,61789
+36257,81056
+36258,72210,58329
+36259,48038
+36260,59497
+36261,39423
+36262,39424
+36263,51265
+36264,71182
+36265,46050
+36266,78236
+36267,39513
+36268,44792
+36269,61997
+36270,25524
+36271,59645
+36272,64175
+36273,66436
+36274,69483
+36275,36319
+36276,39151
+36277,43854
+36278,67498
+36279,34733
+36280,70604
+36281,71437
+36282,64639
+36283,35397
+36284,28529
+36285,28529
+36286,70108
+36287,36293
+36288,72729
+36289,73801
+36290,43698
+36291,77399
+36292,76664
+36293,81702
+36294,24302
+36295,26051
+36296,44384
+36297,53066
+36298,54376
+36299,81500
+36300,81536
+36301,79640
+36302,43247
+36303,35858
+36304,54859
+36305,21013
+36306,77802
+36307,47128
+36308,20977
+36309,20977
+36310,37345
+36311,70801
+36312,45813
+36313,19634
+36314,6955
+36315,21777
+36316,65641
+36317,56359
+36318,76054
+36319,81193
+36320,34671
+36321,36137
+36322,63725
+36323,36496
+36324,70581
+36325,81607
+36326,23730
+36327,25016
+36328,34763
+36329,81630
+36330,69308
+36331,81781
+36332,81787
+36333,77287
+36334,25017
+36335,48408
+36336,81659
+36337,70629
+36338,21765
+36339,46090
+36340,75621
+36341,29928
+36342,63725
+36343,66055
+36344,30206
+36345,27167
+36346,27167
+36347,60823
+36348,75019
+36349,48634
+36350,55952
+36351,19621
+36352,78756
+36353,44609
+36354,21777
+36355,36313
+36356,72248
+36357,57535
+36358,45813
+36359,28079
+36360,78096
+36361,34632
+36362,37730
+36363,60993
+36364,40021
+36365,35802
+36366,75018
+36367,25017
+36368,61504
+36369,36694
+36370,22414
+36371,1230
+36372,21192
+36373,81797
+36374,37690
+36375,38153
+36376,32964
+36377,81789
+36378,48912
+36379,60071
+36380,38955
+36381,81781
+36382,81787
+36383,65927
+36384,30883
+36385,53021
+36386,32578
+36387,77308
+36388,39049
+36389,44604
+36390,61402
+36391,67311
+36392,61709
+36393,63725
+36394,57333
+36395,40121
+36396,35433
+36397,23021
+36398,25920
+36399,59643
+36400,55030
+36401,31616,73470
+36402,78583
+36403,21775
+36404,65925
+36405,21669
+36406,36361
+36407,37991
+36408,39527
+36409,28460
+36410,59020
+36411,22159
+36412,30954
+36413,65116
+36414,49945
+36415,18914
+36416,71961
+36417,37635
+36418,76558
+36419,22684
+36420,46607
+36421,51903
+36422,23458
+36423,60058
+36424,66293
+36425,47506
+36426,47507
+36427,70796
+36428,62434
+36429,23082
+36430,26217
+36431,70987
+36432,68857
+36433,80716
+36434,81463
+36435,36442
+36436,30187
+36437,45260,52906
+36438,64438
+36439,65654
+36440,69782
+36441,41245
+36442,54439
+36443,38204
+36444,58137
+36445,60216
+36446,26786
+36447,21922
+36448,31805
+36449,53694
+36450,32579
+36451,29917
+36452,67957
+36453,22699
+36454,66769
+36455,66953
+36456,49079
+36457,40250
+36458,75057
+36459,42228
+36460,54869
+36461,77287
+36462,56460
+36463,63363
+36464,23310
+36465,60216
+36466,36467
+36467,37179
+36468,51562
+36469,56179
+36470,53337
+36471,59427
+36472,41103
+36473,75831
+36474,47814
+36475,47314
+36476,40340
+36477,34918
+36478,26668
+36479,26668
+36480,80092
+36481,81482
+36482,76981
+36483,77367
+36484,22500
+36485,56894
+36486,52510
+36487,66541
+36488,81647
+36489,27473
+36490,32791
+36491,24392
+36492,52273
+36493,60993
+36494,36487
+36495,25113
+36496,45689
+36497,48488
+36498,31587
+36499,31587
+36500,31598
+36501,19636
+36502,36497
+36503,41350
+36504,71595
+36505,79469
+36506,24007,80256
+36507,63218
+36508,71686
+36509,40747
+36510,30231
+36511,47099
+36512,19375
+36513,52097
+36514,53415
+36515,58916
+36516,30254
+36517,60604
+36518,40747
+36519,58917
+36520,37178
+36521,26921
+36522,36507
+36523,60598
+36524,77374
+36525,34924
+36526,53660
+36527,66260
+36528,77521
+36529,43698
+36530,66727
+36531,49343
+36532,63363
+36533,69851
+36534,69851
+36535,39101
+36536,53660
+36537,54044
+36538,71961
+36539,80640
+36540,81626
+36541,43701
+36542,57945
+36543,79000
+36544,81483
+36545,51204
+36546,67050
+36547,66727
+36548,77575,73112
+36549,23854
+36550,48874
+36551,68236
+36552,80753
+36553,64639
+36554,75384
+36555,59088
+36556,59088
+36557,41837
+36558,49200
+36559,53012
+36560,63570
+36561,23679
+36562,60992
+36563,45570
+36564,67639
+36565,45964
+36566,34646
+36567,34732
+36568,72119
+36569,34208
+36570,70987
+36571,34731,44063
+36572,53941
+36573,50715
+36574,75057
+36575,39556
+36576,61677
+36577,24373
+36578,60744
+36579,33442
+36580,34924
+36581,68335
+36582,66260
+36583,82151
+36584,49728
+36585,49736
+36586,36570
+36587,45408
+36588,47991
+36589,64353
+36590,61017
+36591,39534
+36592,44013
+36593,27688
+36594,41736
+36595,76664
+36596,36673
+36597,20751
+36598,29040
+36599,33102
+36600,50117
+36601,50104
+36602,19654
+36603,19291
+36604,19295
+36605,25425
+36606,47685
+36607,78060
+36608,53717
+36609,30937
+36610,36602
+36611,77321
+36612,60216
+36613,80105
+36614,67254
+36615,69860
+36616,58758
+36617,71686
+36618,68277
+36619,60042
+36620,79469
+36621,47031
+36622,31279
+36623,23414
+36624,31279
+36625,51509
+36626,62439
+36627,70214
+36628,19496
+36629,53847
+36630,32528
+36631,36470
+36632,60044
+36633,60038
+36634,45689
+36635,73222
+36636,36499
+36637,36636
+36638,36499
+36639,36499
+36640,75772
+36641,41729
+36642,36641
+36643,39014
+36644,65531
+36645,76196
+36646,20326,55662
+36647,75924
+36648,79866
+36649,9523
+36650,29691
+36651,35906
+36652,40862
+36653,42148
+36654,71516
+36655,49772
+36656,53332
+36657,56029
+36658,60541
+36659,37920
+36660,56316
+36661,61251
+36662,41877
+36663,68679
+36664,79874
+36665,79407
+36666,73423,36656
+36667,31563
+36668,57277
+36669,21269
+36670,30697
+36671,20755,79261
+36672,24961
+36673,31245
+36674,46384
+36675,45813
+36676,31002
+36677,81781
+36678,81781,47497
+36679,59455
+36680,35922
+36681,35474
+36682,38637
+36683,63314
+36684,71688
+36685,75235
+36686,71716
+36687,28780
+36688,30300
+36689,50701
+36690,9280
+36691,36035
+36692,62367
+36693,39049
+36694,20877
+36695,68352
+36696,36267
+36697,46962
+36698,59519
+36699,31239
+36700,25040
+36701,46958
+36702,36692
+36703,36694
+36704,25564
+36705,25555
+36706,42094
+36707,21361
+36708,61260
+36709,31281
+36710,59423
+36711,19343
+36712,52849
+36713,36710
+36714,24843
+36715,66083
+36716,29680
+36717,47960
+36718,40393
+36719,66551
+36720,27563
+36721,44440
+36722,73841
+36723,39928
+36724,19475
+36725,28573
+36726,55761
+36727,55756
+36728,63677
+36729,39049
+36730,36419
+36731,30062
+36732,29984
+36733,52890
+36734,68562
+36735,69682
+36736,27224
+36737,9930
+36738,59811
+36739,64757
+36740,58152
+36741,73752
+36742,82136
+36743,78676
+36744,79746
+36745,78642
+36746,69544
+36747,73918
+36748,65289
+36749,25202
+36750,21777
+36751,80614
+36752,70399
+36753,37548
+36754,26359
+36755,39940
+36756,55831
+36757,80831
+36758,31941
+36759,73475
+36760,70515
+36761,79001
+36762,77995
+36763,27721
+36764,60623
+36765,69012
+36766,34808
+36767,59475
+36768,52240
+36769,67479
+36770,51327
+36771,73917
+36772,45260
+36773,49583
+36774,66507
+36775,65229
+36776,33591
+36777,68122
+36778,28168
+36779,78775
+36780,60810
+36781,23313
+36782,37041
+36783,23310
+36784,35188
+36785,53473
+36786,62152
+36787,60000
+36788,70988
+36789,35014
+36790,55765
+36791,21112
+36792,46782
+36793,31940
+36794,31948
+36795,21200
+36796,34126
+36797,53897
+36798,31590
+36799,27391
+36800,76664
+36801,76633
+36802,75763
+36803,21838
+36804,66953
+36805,41105
+36806,37179
+36807,41743
+36808,80927
+36809,43897
+36810,80735
+36811,81506
+36812,58730
+36813,67608
+36814,65977
+36815,53454
+36816,59348
+36817,22684
+36818,43104
+36819,29935
+36820,31624
+36821,31623
+36822,63424
+36823,60744
+36824,80816
+36825,81247
+36826,60744
+36827,61078
+36828,32572
+36829,35414
+36830,74647
+36831,65108
+36832,31618
+36833,28221
+36834,70033
+36835,81694
+36836,31043
+36837,69012
+36838,60762
+36839,81601
+36840,71310
+36841,47974
+36842,58166
+36843,70990
+36844,77829
+36845,21977
+36846,22887
+36847,24961
+36848,46610
+36849,28864
+36850,50052
+36851,37344
+36852,20152
+36853,70033
+36854,81176
+36855,81161
+36856,48870
+36857,48870
+36858,49468
+36859,53072
+36860,61006
+36861,77004
+36862,72575
+36863,74279
+36864,78140
+36865,81176
+36866,71003
+36867,42481
+36868,46827
+36869,34210
+36870,57927
+36871,34928
+36872,30498
+36873,81656
+36874,30495
+36875,70629
+36876,66008
+36877,43672
+36878,81441
+36879,81538
+36880,81482
+36881,38209
+36882,37417
+36883,60395
+36884,53657
+36885,35922
+36886,19225
+36887,38837
+36888,66344
+36889,42469
+36890,53624
+36891,67277
+36892,39295
+36893,41110
+36894,35626
+36895,72055
+36896,50771
+36897,31543
+36898,47475
+36899,48084
+36900,59549
+36901,73184
+36902,51277
+36903,50771
+36904,56454
+36905,60216
+36906,50771
+36907,72055
+36908,58776
+36909,35425
+36910,35626
+36911,70091
+36912,35626
+36913,35425
+36914,68030
+36915,72055
+36916,35494,34659
+36917,18740
+36918,74939
+36919,54082
+36920,34664
+36921,72959
+36922,39801
+36923,34356
+36924,35626
+36925,77409
+36926,30650
+36927,19230
+36928,37996
+36929,68352
+36930,30300
+36931,37623
+36932,24331
+36933,64921
+36934,36932,82053
+36935,22133
+36936,45467
+36937,69118
+36938,41729
+36939,71996
+36940,46268
+36941,19051
+36942,53848
+36943,68630
+36944,40473
+36945,43789
+36946,59811
+36947,64757
+36948,36035
+36949,52658
+36950,47455
+36951,68630
+36952,76691
+36953,51856
+36954,46767
+36955,21632
+36956,66677
+36957,31975
+36958,72161
+36959,64453
+36960,56484
+36961,53180
+36962,32578
+36963,67312
+36964,72839
+36965,49276
+36966,68835
+36967,36966
+36968,44072
+36969,56474
+36970,37422
+36971,36970
+36972,61504
+36973,49222
+36974,64748
+36975,37519
+36976,53454
+36977,34389
+36978,43579
+36979,54562,60786
+36980,36978
+36981,56182
+36982,41877
+36983,28312
+36984,45813
+36985,35793
+36986,43109
+36987,41877
+36988,41877
+36989,64720
+36990,57696
+36991,48318
+36992,19581
+36993,64142
+36994,56194
+36995,77888
+36996,62676
+36997,23774
+36998,77396
+36999,34209
+37000,28530
+37001,35386
+37002,51894
+37003,27534
+37004,35389
+37005,59870
+37006,30962
+37007,30962
+37008,30962
+37009,70104
+37010,30962
+37011,81193
+37012,28990
+37013,72680
+37014,31977
+37015,81505
+37016,32921
+37017,33875
+37018,39641
+37019,77661
+37020,30514
+37021,45732
+37022,45738
+37023,47966
+37024,49829
+37025,43781
+37026,53589
+37027,41657
+37028,79467
+37029,61705
+37030,67608
+37031,59870
+37032,81506
+37033,48210
+37034,21550
+37035,40060
+37036,47830
+37037,68832
+37038,43740
+37039,40927
+37040,63109
+37041,31587
+37042,31598
+37043,21240
+37044,35626
+37045,25721
+37046,58513
+37047,71197,45463
+37048,34175
+37049,40747
+37050,76546
+37051,42493
+37052,81482
+37053,77641
+37054,72323
+37055,58162
+37056,27506
+37057,65925
+37058,60216
+37059,64846
+37060,29427
+37061,78640
+37062,26160
+37063,58162
+37064,22149
+37065,54865
+37066,63486
+37067,65754
+37068,22103
+37069,76138
+37070,74714
+37071,73018
+37072,54440
+37073,35162
+37074,55133
+37075,55133
+37076,26827
+37077,48111
+37078,75353
+37079,48787
+37080,39294
+37081,42539
+37082,58572
+37083,65906
+37084,65505
+37085,20522
+37086,47527
+37087,65505
+37088,37776
+37089,43997
+37090,71610
+37091,34987
+37092,43997
+37093,71610
+37094,34987
+37095,37083
+37096,65893
+37097,51891
+37098,37986
+37099,32783
+37100,77207
+37101,52651
+37102,60448
+37103,34149
+37104,48645
+37105,44113
+37106,59492
+37107,49136
+37108,24249
+37109,38042
+37110,24251
+37111,37127
+37112,37124
+37113,31245
+37114,43106
+37115,43113
+37116,37120
+37117,51177
+37118,54838
+37119,61766
+37120,63065
+37121,66265
+37122,63819
+37123,76146
+37124,71324
+37125,18869
+37126,63139
+37127,71325
+37128,67988
+37129,37229
+37130,75019
+37131,19200
+37132,41728
+37133,37131
+37134,75019
+37135,75954
+37136,77165
+37137,66377
+37138,24761
+37139,37689
+37140,35224
+37141,43142
+37142,60216
+37143,59165
+37144,62146
+37145,62625
+37146,37601
+37147,33678
+37148,48787
+37149,18740
+37150,32361
+37151,65764
+37152,65760
+37153,55495
+37154,70651
+37155,37154
+37156,37154,38281
+37157,43497
+37158,46948
+37159,74943
+37160,33425
+37161,81161
+37162,74807
+37163,61159
+37164,74422
+37165,51435
+37166,70110
+37167,25495
+37168,78930
+37169,33542
+37170,56327
+37171,42201
+37172,21087
+37173,25383
+37174,63314
+37175,59658
+37176,22887
+37177,30139
+37178,39428
+37179,63109,41729
+37180,53162
+37181,57241
+37182,68614
+37183,68869
+37184,71113
+37185,20822
+37186,37934
+37187,81789
+37188,44437
+37189,49016
+37190,47699
+37191,70629
+37192,21275
+37193,26586
+37194,62145
+37195,44769
+37196,31638
+37197,50769
+37198,63141
+37199,19228
+37200,78826
+37201,48401
+37202,63185
+37203,71997
+37204,63144
+37205,37992
+37206,40292
+37207,71398
+37208,62831
+37209,21361
+37210,24710
+37211,56376
+37212,78640
+37213,58162
+37214,81413
+37215,74939
+37216,47698
+37217,53607
+37218,79073
+37219,60216
+37220,62409
+37221,56446
+37222,58144
+37223,60238
+37224,39621
+37225,17258
+37226,56179
+37227,37220
+37228,64846
+37229,70633
+37230,21112
+37231,38807
+37232,65925
+37233,53355
+37234,33231
+37235,80227
+37236,35465
+37237,50104
+37238,35158
+37239,36993
+37240,40687
+37241,38879
+37242,30890
+37243,56618
+37244,55209
+37245,35922
+37246,38189
+37247,58578
+37248,41022
+37249,54953
+37250,71408
+37251,57733
+37252,56958
+37253,35557
+37254,67813
+37255,48202
+37256,48202
+37257,50489
+37258,23610,54821
+37259,32986
+37260,71719
+37261,48474
+37262,63790
+37263,45813
+37264,71463
+37265,35557
+37266,54465
+37267,54544
+37268,62846
+37269,47389
+37270,69004
+37271,76147
+37272,77374
+37273,52990
+37274,37276
+37275,31143
+37276,78755
+37277,19171
+37278,65035
+37279,45869
+37280,57731
+37281,68565
+37282,36696
+37283,64316
+37284,22164
+37285,79085
+37286,35188
+37287,72447
+37288,61984
+37289,50439
+37290,64757
+37291,64757
+37292,57066
+37293,34093
+37294,34093
+37295,76662
+37296,64757
+37297,30300
+37298,55984
+37299,65458
+37300,50439
+37301,54082
+37302,48629
+37303,39713
+37304,36760
+37305,35466
+37306,38646
+37307,52904
+37308,71961
+37309,36710
+37310,22944
+37311,68692
+37312,31030
+37313,34906
+37314,55137,77397
+37315,51778
+37316,20905
+37317,71120
+37318,76664
+37319,27729
+37320,37411
+37321,37450
+37322,38053
+37323,39049
+37324,22907
+37325,34924
+37326,62323
+37327,31447
+37328,60604
+37329,37328
+37330,68316
+37331,53454
+37332,60598
+37333,23748
+37334,63584
+37335,49347
+37336,60993
+37337,23881
+37338,29917
+37339,49299
+37340,46097
+37341,63426
+37342,49329
+37343,29321
+37344,70033
+37345,19438
+37346,47673
+37347,72990
+37348,37179,36641
+37349,62145
+37350,27508
+37351,48746
+37352,57573
+37353,73018
+37354,62575
+37355,79904
+37356,29120
+37357,30693
+37358,41469
+37359,60259
+37360,32506
+37361,25094
+37362,29489
+37363,27405
+37364,37383
+37365,23796
+37366,24143
+37367,24651
+37368,26496
+37369,70302
+37370,48413
+37371,29845
+37372,35351
+37373,35354
+37374,62417
+37375,33645
+37376,39311
+37377,39824
+37378,41764
+37379,41911
+37380,44593
+37381,44966
+37382,71848
+37383,50273
+37384,51929
+37385,52718
+37386,54130
+37387,54821
+37388,55361
+37389,37481
+37390,37411
+37391,73507,80896
+37392,64921
+37393,65552
+37394,37411
+37395,48251
+37396,32150,77108
+37397,65509
+37398,71355
+37399,77001
+37400,78410
+37401,26800
+37402,31272
+37403,31607
+37404,31812
+37405,34924
+37406,35464
+37407,37411
+37408,37908
+37409,37913
+37410,51495
+37411,60603
+37412,62407
+37413,38218
+37414,78993
+37415,77287
+37416,70629
+37417,60603
+37418,73307
+37419,37884
+37420,37882
+37421,38822
+37422,77423
+37423,43997
+37424,76182
+37425,28803
+37426,69810,37510
+37427,49769
+37428,38667
+37429,38673
+37430,31278
+37431,34643
+37432,53624
+37433,43997
+37434,53701
+37435,21200
+37436,37405
+37437,45458
+37438,34185
+37439,34628
+37440,71557
+37441,22743
+37442,27287
+37443,28167
+37444,52605
+37445,34399
+37446,48505
+37447,37488
+37448,64474
+37449,72038
+37450,78703
+37451,52634
+37452,60612
+37453,53648
+37454,54130
+37455,69235
+37456,55903
+37457,53701
+37458,34987
+37459,51030
+37460,30417
+37461,37430
+37462,54263
+37463,54267
+37464,78097
+37465,37490
+37466,44437
+37467,54283
+37468,81617
+37469,75788
+37470,22746
+37471,77491
+37472,31812
+37473,37488
+37474,37488
+37475,22313
+37476,33889
+37477,37474
+37478,34924
+37479,38218
+37480,55050
+37481,55758
+37482,37471
+37483,65190
+37484,70214
+37485,74591
+37486,76054
+37487,79869
+37488,54404
+37489,37488
+37490,60612
+37491,30937
+37492,48030
+37493,70224
+37494,56179
+37495,37503
+37496,21745
+37497,61353
+37498,43997
+37499,53624
+37500,78544
+37501,28623
+37502,37377
+37503,37405
+37504,48024
+37505,62957
+37506,78703
+37507,60612
+37508,57934
+37509,76160
+37510,76162
+37511,20120
+37512,64142
+37513,64142
+37514,65663
+37515,26038
+37516,64244
+37517,61622
+37518,61621
+37519,74082
+37520,70526
+37521,73537
+37522,38043
+37523,37521
+37524,37521
+37525,37199
+37526,43122
+37527,59338
+37528,80524
+37529,44614
+37530,78777
+37531,37623
+37532,63052,58689
+37533,45813
+37534,79608
+37535,64864
+37536,36951
+37537,47786
+37538,47198
+37539,37538
+37540,37538
+37541,64635
+37542,35735
+37543,50756
+37544,61201
+37545,20725
+37546,66676
+37547,19849
+37548,51298
+37549,37551
+37550,37551
+37551,57945
+37552,69482
+37553,50439
+37554,38602
+37555,64757
+37556,54993
+37557,39183
+37558,21193
+37559,64139
+37560,65816
+37561,35466
+37562,55662
+37563,20531
+37564,65816
+37565,28792
+37566,77171
+37567,19656
+37568,57742
+37569,78854
+37570,61789
+37571,55209
+37572,51643
+37573,62338,58918
+37574,37573
+37575,34249
+37576,20813
+37577,31413
+37578,57742
+37579,61213
+37580,56862
+37581,70392
+37582,77641
+37583,81482
+37584,53023
+37585,58068
+37586,52074
+37587,28538
+37588,19299
+37589,67334
+37590,38883
+37591,45813
+37592,71557
+37593,38812
+37594,78533
+37595,38952
+37596,37206
+37597,37207
+37598,22052
+37599,21480
+37600,51523
+37601,53519
+37602,58208
+37603,51174
+37604,51176
+37605,50717
+37606,37224
+37607,55278
+37608,62722
+37609,55391
+37610,77292
+37611,37689
+37612,69521
+37613,77972
+37614,34676
+37615,35344
+37616,34199
+37617,38769
+37618,41417
+37619,50424
+37620,76229,34118
+37621,78655
+37622,34771
+37623,74904
+37624,57345
+37625,60247
+37626,18728
+37627,57451
+37628,76657
+37629,29915
+37630,47822
+37631,19416
+37632,29619
+37633,56327
+37634,37633
+37635,56325
+37636,61246
+37637,20743
+37638,71996
+37639,24251
+37640,27497
+37641,66361
+37642,28164
+37643,73126
+37644,20760
+37645,32176
+37646,77509,23949
+37647,49217
+37648,44160
+37649,69728
+37650,23760
+37651,21215
+37652,23760
+37653,75772
+37654,32954
+37655,53716
+37656,63060
+37657,46684
+37658,38576
+37659,66215
+37660,54562
+37661,18770
+37662,18770
+37663,66785
+37664,23285
+37665,65795
+37666,54356
+37667,54361
+37668,46027
+37669,47673
+37670,50885
+37671,67277
+37672,36035
+37673,62145
+37674,65931
+37675,79282
+37676,65726
+37677,40747
+37678,37277
+37679,72038
+37680,37430
+37681,19654
+37682,80735
+37683,60598
+37684,30975
+37685,39088
+37686,39578
+37687,21610
+37688,60216
+37689,37686
+37690,77374
+37691,21115
+37692,74924
+37693,71817
+37694,79619
+37695,67951
+37696,57280
+37697,59891
+37698,66377
+37699,47672
+37700,19200
+37701,66101
+37702,55013
+37703,43809
+37704,36035
+37705,41261
+37706,48306
+37707,48791
+37708,60450
+37709,60448
+37710,54418
+37711,81626
+37712,81626
+37713,30659
+37714,58587
+37715,61202
+37716,73349
+37717,64846
+37718,50701
+37719,72959
+37720,19200
+37721,57461
+37722,19648
+37723,19655
+37724,31690
+37725,37693
+37726,31245
+37727,46948
+37728,31616
+37729,59194
+37730,65816
+37731,48127
+37732,64864
+37733,20310
+37734,75606
+37735,47527
+37736,80717
+37737,30432
+37738,30073
+37739,51523
+37740,27396
+37741,50907
+37742,50906
+37743,50905
+37744,32
+37745,66377
+37746,31058
+37747,58783
+37748,30073
+37749,71521
+37750,31861
+37751,20353
+37752,38281
+37753,31058
+37754,57984
+37755,65702
+37756,20972
+37757,31245
+37758,63065
+37759,37777
+37760,58783
+37761,33581
+37762,48126
+37763,24354
+37764,66873
+37765,66874
+37766,48126
+37767,71632
+37768,38537
+37769,71634
+37770,63584
+37771,81462
+37772,57456
+37773,35557
+37774,23906
+37775,35787
+37776,21474
+37777,48333
+37778,35926
+37779,71837
+37780,33213
+37781,52954
+37782,62495
+37783,47822
+37784,53916
+37785,60071
+37786,49296
+37787,63604
+37788,46524
+37789,21328
+37790,28615
+37791,51069
+37792,65478
+37793,30985
+37794,51531
+37795,77045
+37796,74535
+37797,25495
+37798,59308
+37799,31731
+37800,51532
+37801,72959
+37802,61655
+37803,37824
+37804,60744
+37805,38982
+37806,43546
+37807,37810
+37808,19121
+37809,54649
+37810,58144
+37811,37805
+37812,63117
+37813,67311
+37814,78970
+37815,20329
+37816,72003
+37817,18728
+37818,48126
+37819,49803
+37820,61246
+37821,35534
+37822,37803
+37823,37803
+37824,45096
+37825,55246
+37826,45813
+37827,36802
+37828,27556
+37829,69254
+37830,48126
+37831,53848
+37832,43353
+37833,75016
+37834,71996
+37835,53716
+37836,43142
+37837,34587
+37838,34585
+37839,57143
+37840,53238
+37841,34664
+37842,43109
+37843,51649
+37844,27497
+37845,59549
+37846,55522
+37847,60216
+37848,25121
+37849,31447
+37850,57150
+37851,59165
+37852,33678
+37853,56505,60001
+37854,70225
+37855,74490
+37856,63259
+37857,70231
+37858,53701
+37859,38601
+37860,70570
+37861,65956
+37862,72409
+37863,38475
+37864,53848
+37865,38170
+37866,28792
+37867,77216
+37868,28009
+37869,43335
+37870,27321
+37871,56161
+37872,51270
+37873,73669
+37874,66515
+37875,48943
+37876,54440
+37877,59970
+37878,19475
+37879,25115
+37880,34924
+37881,19230
+37882,19228
+37883,60603
+37884,60603
+37885,51778
+37886,36524
+37887,41106
+37888,43736
+37889,37884
+37890,80505
+37891,18728
+37892,56896
+37893,34229
+37894,44644
+37895,38422
+37896,71310
+37897,41516
+37898,37721
+37899,31604
+37900,44440
+37901,66617
+37902,81161
+37903,28054
+37904,48408
+37905,55361
+37906,27858
+37907,25807
+37908,60216
+37909,57945
+37910,28413
+37911,75613,63141
+37912,66953
+37913,35480
+37914,52513
+37915,47157
+37916,37042
+37917,53865
+37918,70629
+37919,62967
+37920,62948
+37921,61335
+37922,62968
+37923,47716
+37924,27228
+37925,63386
+37926,61425
+37927,60216
+37928,61433
+37929,19228
+37930,37853
+37931,72959
+37932,60534
+37933,60538
+37934,37196
+37935,37936
+37936,69308
+37937,37936
+37938,30687
+37939,76664
+37940,31245
+37941,63257
+37942,58158
+37943,71997
+37944,21670
+37945,21302
+37946,37949
+37947,56333
+37948,22095
+37949,50450
+37950,78678
+37951,65707
+37952,43247
+37953,47716
+37954,60216
+37955,55761
+37956,58398
+37957,27857
+37958,30391
+37959,70392
+37960,30681
+37961,30502
+37962,27397
+37963,73997
+37964,73838
+37965,38381
+37966,28529
+37967,31820
+37968,19239
+37969,50375
+37970,20082
+37971,19737
+37972,21866
+37973,38475
+37974,48126
+37975,48111,48077
+37976,38053
+37977,26938
+37978,51713
+37979,20016
+37980,35534
+37981,63228
+37982,73147
+37983,57934
+37984,20745
+37985,33686
+37986,60706
+37987,58168
+37988,78598
+37989,36524
+37990,29513
+37991,60216
+37992,35838
+37993,80060
+37994,26585
+37995,48030
+37996,39578
+37997,48533
+37998,74500
+37999,48150
+38000,50717
+38001,31010
+38002,76780
+38003
+38004,32718
+38005,82163
+38006,82164
+38007,82169
+38008,62625
+38009,48787
+38010,48565
+38011,28536
+38012,21631
+38013,18930
+38014,38600
+38015,39556
+38016,34422
+38017,77585
+38018,31647
+38019,30697
+38020,34294
+38021,65975
+38022,33500
+38023,38012
+38024,66551
+38025,32503
+38026,45007
+38027,41279
+38028,62089
+38029,26604
+38030,81801
+38031,18988
+38032,57934
+38033,51677
+38034,21738
+38035,47856
+38036,33455
+38037,32580
+38038,57918
+38039,31616
+38040,81733
+38041,22684
+38042,70526
+38043,43104
+38044,31245
+38045,60450
+38046,62723
+38047,65531
+38048,43104
+38049,72877
+38050,35342
+38051,66010
+38052,55263
+38053,63434,27937
+38054,21881
+38055,24224
+38056,24225
+38057,46599
+38058,76981
+38059,43111
+38060,52053
+38061,72281
+38062,76210
+38063,40813
+38064,74939
+38065,51100
+38066,74939
+38067,1524
+38068,65892
+38069,65892
+38070,65089
+38071,65892
+38072,66377
+38073,24379
+38074,43820
+38075,72961
+38076,35312
+38077,19421
+38078,21568
+38079,39647
+38080,53848
+38081,21738
+38082,28258
+38083,36664
+38084,70033
+38085,20038,26065
+38086,76631
+38087,77462
+38088,48318
+38089,20830
+38090,48318
+38091,61621
+38092,25649
+38093,40945
+38094,59423
+38095,69254
+38096,60097
+38097,43103
+38098,63064
+38099,48126
+38100,25104
+38101,69148
+38102,35922
+38103,35679
+38104,29409
+38105,42391
+38106,67101
+38107,58069
+38108,58377
+38109,48084
+38110,38109
+38111,53711
+38112,53716
+38113,58088
+38114,70650
+38115,73598
+38116,63224
+38117,36710
+38118,48126
+38119,65584
+38120,48241
+38121,21703
+38122,79282
+38123,21477
+38124,54092
+38125,27730
+38126,48126
+38127,31945
+38128,68030
+38129,64370
+38130,48316
+38131,58849
+38132,49633
+38133,34630
+38134,52143
+38135,25673
+38136,70091
+38137,31842
+38138,31196
+38139,31196
+38140,46553,27986,56543,79222
+38141,52999
+38142,26744
+38143,65892
+38144,26827
+38145,52035
+38146,66377
+38147,46818
+38148,79371
+38149,48126
+38150,59970
+38151,75874
+38152,60114
+38153,45096
+38154,68809
+38155,26010
+38156,52033
+38157,34602
+38158,24354
+38159,30267
+38160,54859
+38161,60448
+38162,60453
+38163,51069
+38164,53860
+38165,48316
+38166,44461
+38167,57531
+38168,71572
+38169,70648
+38170,20760
+38171,81585
+38172,58412
+38173,43111
+38174,33892
+38175,56009
+38176,56009
+38177,34688
+38178,61630
+38179,75007
+38180,51068
+38181,22646
+38182,44777
+38183,53069
+38184,29548
+38185,29548
+38186,70202
+38187,75736
+38188,67737
+38189,73018
+38190,46894
+38191,19171
+38192,68355
+38193,37479
+38194,35852
+38195,38188
+38196,53478
+38197,38191
+38198,29409
+38199,44113
+38200,75693
+38201,57474
+38202,57573
+38203,22128
+38204,66516
+38205,35773
+38206,39936
+38207,77740,65628
+38208,72695
+38209,70526
+38210,63358
+38211,31539
+38212,50604
+38213,57523
+38214,35740
+38215,37762
+38216,28153
+38217,32256
+38218,48423
+38219,21905
+38220,48534
+38221,38188
+38222,30267
+38223,22063
+38224,35887
+38225,78804,20308
+38226,39281
+38227,76664
+38228,43111
+38229,34826
+38230,64961
+38231,47655
+38232,32171
+38233,21476
+38234,54082
+38235,26289
+38236,47684,36900
+38237,58144
+38238,20760
+38239,31563
+38240,62977
+38241,73838
+38242,69440
+38243,72825
+38244,65758
+38245,55017
+38246,18740
+38247,81617
+38248,64743
+38249,20038
+38250,73202
+38251,61251
+38252,41877
+38253,20038
+38254,61703
+38255,77961
+38256,45547
+38257,74067
+38258,21670
+38259,41899
+38260,80522
+38261,68566
+38262,21477
+38263,50717
+38264,38044
+38265,34175
+38266,43110
+38267,69148
+38268,69440
+38269,78511
+38270,39228
+38271,77857
+38272,47865
+38273,45096
+38274,54710
+38275,39152
+38276,54771
+38277,38566
+38278,30188
+38279,74088
+38280,37196
+38281,74939
+38282,37650
+38283,19202
+38284,37973
+38285,74067
+38286,14736
+38287,38296
+38288,38287
+38289,38287
+38290,38289
+38291,54562
+38292,37642
+38293,24823
+38294,20635
+38295,64831
+38296,70651
+38297,20977
+38298,58162
+38299,43516
+38300,72598
+38301,72600
+38302,68073
+38303,29781
+38304,47871
+38305,72776
+38306,21731
+38307,35557
+38308,35838
+38309,61246
+38310,22412
+38311,53613
+38312,35838
+38313,67334
+38314,35468
+38315,45275
+38316,38523
+38317,72066
+38318,42388
+38319,41787
+38320,53648
+38321,33954
+38322,52594
+38323,35480
+38324,53628
+38325,41279
+38326,70914
+38327,68031
+38328,76134
+38329,76138
+38330,66314
+38331,77444
+38332,37973
+38333,42420
+38334,22128
+38335,63416
+38336,81798
+38337,41870
+38338,61335
+38339,69696
+38340,66507
+38341,23972
+38342,20017
+38343,79282
+38344,48126
+38345,21740
+38346,58010
+38347,59423,55693
+38348,68779
+38349,67793
+38350,77678
+38351,72588
+38352,72585
+38353,56485
+38354,63244
+38355,30231
+38356,30243
+38357,26854
+38358,51778
+38359,35679
+38360,81396
+38361,22128
+38362,81789
+38363,22122
+38364,81781
+38365,74082
+38366,20355
+38367,62675
+38368,46003
+38369,57594
+38370,76411
+38371,77684
+38372,47671
+38373,65753
+38374,58168
+38375,73838
+38376,56179
+38377,63286
+38378,35922
+38379,26854
+38380,63316
+38381,65006
+38382,29626
+38383,23925
+38384,46451
+38385,58158
+38386,31453
+38387,70629
+38388,60448
+38389,72983
+38390,66090
+38391,49358
+38392,26934
+38393,47833
+38394,36123
+38395,21618
+38396,67275
+38397,38400
+38398,77422
+38399,38400
+38400,73201
+38401,20894
+38402,38400,49670
+38403,60598
+38404,25113
+38405,51068
+38406,41917
+38407,39049
+38408,20960
+38409,73884
+38410,21765
+38411,37920
+38412,37921
+38413,20771
+38414,76657
+38415,76633
+38416,23780
+38417,35815
+38418,54142,47047
+38419,68853
+38420,58158
+38421,53732
+38422,48215
+38423,51882
+38424,30079
+38425,75020
+38426,62934
+38427,55356
+38428,35922
+38429,60448
+38430,60453
+38431,30693
+38432,25256
+38433,70474
+38434,21703
+38435,79282
+38436,67277
+38437,60216
+38438,44440
+38439,44437
+38440,49312
+38441,38439
+38442,21851
+38443,64142
+38444,59331
+38445,20946
+38446,20947
+38447,20946
+38448,20947
+38449,82163
+38450,82164
+38451,22164
+38452,20992
+38453,20044
+38454,38385
+38455,19935,61262
+38456,51881
+38457,20042,42246
+38458,21005
+38459,54967
+38460,21218
+38461,80498
+38462,24691
+38463,34990
+38464,28057
+38465,60453
+38466,67272
+38467,56950
+38468,55756
+38469,22686
+38470,35105
+38471,51148
+38472,46163
+38473,51566
+38474,41228
+38475,22640,55019
+38476,81482
+38477,44615
+38478,44609
+38479,38369
+38480,27506
+38481,44527
+38482,38430
+38483,53624
+38484,51277
+38485,63472
+38486,19979
+38487,58166
+38488,58068
+38489,62495
+38490,52904
+38491,68030
+38492,23331
+38493,44609
+38494,37335
+38495,63570
+38496,38883
+38497,63376
+38498,25843
+38499,55022
+38500,54082
+38501,21718
+38502,55348,35838
+38503,72408
+38504,54825
+38505,27473
+38506,49769
+38507,51277
+38508,58162
+38509,81413
+38510,54356
+38511,49358
+38512,21295
+38513,22269
+38514,35442
+38515,13818
+38516,69248
+38517,62525
+38518,54446,31145
+38519,31874
+38520,68857
+38521,38313
+38522,54753
+38523,56357
+38524,30650
+38525,20879
+38526,76664
+38527,33933
+38528,60953
+38529,78654
+38530,65631
+38531,76664
+38532,76664
+38533,33932
+38534,60467
+38535,22686
+38536,44354
+38537,45813
+38538,69701
+38539,69704
+38540,61220
+38541,59230
+38542,38188
+38543,65631
+38544,60603
+38545,63581
+38546,29458
+38547,21922
+38548,45851
+38549,45096
+38550,79211
+38551,79608
+38552,24961
+38553,24961
+38554,45316
+38555,31043
+38556,79608
+38557,50507
+38558,62146
+38559,30865
+38560,31091
+38561,36721
+38562,48157
+38563,47944
+38564,48156
+38565,22656
+38566,47552
+38567,77460
+38568,52084
+38569,72271
+38570,57934
+38571,34895
+38572,47507
+38573,73275
+38574,31435
+38575,37390
+38576,58162
+38577,36474
+38578,23791
+38579,69609
+38580,52904
+38581,42076
+38582,52904
+38583,53561
+38584,62733
+38585,19438
+38586,81462
+38587,31115
+38588,31115
+38589,31115
+38590,38612
+38591,23966
+38592,34461
+38593,19008
+38594,47871
+38595,54753
+38596,28153
+38597,40680
+38598,32973
+38599,48731
+38600,30883
+38601,48791
+38602,48791
+38603,48792
+38604,48304
+38605,19403
+38606,48156
+38607,38281
+38608,35534
+38609,24379
+38610,24379
+38611,79537
+38612,20826
+38613,31115
+38614,21745
+38615,32791
+38616,81643
+38617,63026
+38618,64142
+38619,39528
+38620,58725
+38621,57346
+38622,38606
+38623,57741
+38624,59419
+38625,47549
+38626,58472
+38627,28788
+38628,31795
+38629,81647
+38630,77399
+38631,27396
+38632,27396
+38633,44440
+38634,30650
+38635,55847
+38636,77455
+38637,28541
+38638,55030
+38639,47974
+38640,37690
+38641,66120
+38642,21612
+38643,21610
+38644,37687
+38645,30988
+38646,79009
+38647,63809
+38648,70526
+38649,67275
+38650,65909
+38651,76258
+38652,76256
+38653,22944
+38654,65679
+38655,34591
+38656,63064,44470
+38657,48590
+38658,41210
+38659,49343
+38660,64833
+38661,57068
+38662,34295
+38663,57332
+38664,34591
+38665,27280
+38666,60076
+38667,32150
+38668,74060
+38669,37896
+38670,63065
+38671,32531
+38672,72065
+38673,49763
+38674,19376
+38675,19384
+38676,19649
+38677,25709
+38678,57564
+38679,32362
+38680,39544
+38681,54425
+38682,68787
+38683,69325
+38684,79532
+38685,39811
+38686,39813
+38687,38685
+38688,48629
+38689,38807
+38690,47389
+38691,34505
+38692,75498
+38693,78798
+38694,65731
+38695,57934
+38696,28346
+38697,19200
+38698,51059
+38699,37237
+38700,77367
+38701,38702
+38702,34924
+38703,29591
+38704,58161
+38705,25839
+38706,42246,80227
+38707,75018
+38708,39311
+38709,53003
+38710,60993
+38711,79097
+38712,39460
+38713,34632
+38714,38562
+38715,62713
+38716,30391
+38717,42092
+38718,44913
+38719,68677
+38720,58308
+38721,59153
+38722,31094
+38723,37276
+38724,69998
+38725,49347
+38726,30883
+38727,60259
+38728,19171
+38729,32953
+38730,22944
+38731,41156
+38732,18793
+38733,64158
+38734,60450
+38735,60448
+38736,34613
+38737,57897
+38738,61809
+38739,24251
+38740,43353
+38741,19611
+38742,34576
+38743,34585
+38744,38313
+38745,57143
+38746,53238
+38747,34664
+38748,40597
+38749,45851
+38750,34602
+38751,31245
+38752,57150
+38753,74939
+38754,38625
+38755,74433
+38756,7764
+38757,71632
+38758,48723
+38759,70570,25104
+38760,50649
+38761,44470
+38762,31058
+38763,28792
+38764,41158
+38765,77216
+38766,71837
+38767,41842
+38768,47871
+38769,35533
+38770,47871
+38771,24392
+38772,25194
+38773,35922
+38774,47702
+38775,38769
+38776,39578
+38777,23790
+38778,58127
+38779,53717
+38780,25087
+38781,19462
+38782,53613
+38783,81637
+38784,49343
+38785,27088
+38786,72094
+38787,58403
+38788,34884
+38789,32269
+38790,18978
+38791,65201
+38792,55023
+38793,45096
+38794,31638
+38795,37196
+38796,79363
+38797,48306
+38798,68288
+38799,68287
+38800,63060
+38801,63587
+38802,58196
+38803,37708
+38804,60216
+38805,66004
+38806,24021
+38807,60216
+38808,81433
+38809,70633
+38810,65393
+38811,72983
+38812,72052
+38813,76258
+38814,72983
+38815,79009
+38816,72983
+38817,38812
+38818,38814
+38819,32974
+38820,34327
+38821,29611
+38822,78966
+38823,54784
+38824,69004
+38825,31497
+38826,68652
+38827,38784
+38828,60216
+38829,42523
+38830,47868
+38831,56832
+38832,37241
+38833,43698
+38834,28535
+38835,35464
+38836,28774
+38837,38836
+38838,75018
+38839,34924
+38840,38836
+38841,75018
+38842,78703
+38843,48474
+38844,53473
+38845,41842
+38846,43997
+38847,34115
+38848,38196
+38849,41262
+38850,69237
+38851,53474
+38852,30697
+38853,32807
+38854,36841
+38855,26604
+38856,30650
+38857,38865
+38858,38814
+38859,68809
+38860,48629
+38861,48474
+38862,38646
+38863,30883
+38864,51349
+38865,35482
+38866,79572
+38867,79940
+38868,60543
+38869,62713
+38870,18659
+38871,48150
+38872,34745
+38873,52691
+38874,77520
+38875,63659
+38876,58162
+38877,72661
+38878,32380
+38879,34505
+38880,30883
+38881,21770
+38882,21765
+38883,30882
+38884,64142
+38885,46059
+38886,31345
+38887,63363
+38888,34408
+38889,34408
+38890,37191
+38891,23622
+38892,60071
+38893,53700
+38894,39298
+38895,54414
+38896,76665
+38897,34397
+38898,63314,33789
+38899,73706
+38900,38768
+38901,37199
+38902,73738
+38903,52074
+38904,75668
+38905,31993
+38906,32506
+38907,50173
+38908,70568
+38909,34363
+38910,52655
+38911,38662
+38912,34209
+38913,20698
+38914,36115
+38915,34827
+38916,49763
+38917,35917
+38918,39528
+38919,45527
+38920,25115
+38921,27641
+38922,36525
+38923,38930
+38924,43273
+38925,47469
+38926,47470
+38927,49388
+38928,79282
+38929,18686
+38930,58144
+38931,22166
+38932,57345
+38933,69131
+38934,69118
+38935,47744
+38936,56179
+38937,34038
+38938,31259
+38939,20816
+38940,75917
+38941,63725
+38942,58487
+38943,38592
+38944,39599
+38945,37189
+38946,21745
+38947,35852
+38948,58558
+38949,70549
+38950,27951
+38951,51649
+38952,56179
+38953,65816
+38954,48408
+38955,37199
+38956,74583
+38957,33455
+38958,78731
+38959,78768
+38960,64142
+38961,26934
+38962,48087
+38963,75038
+38964,47275
+38965,56176
+38966,38625
+38967,80228
+38968,47719
+38969,37992
+38970,51643
+38971,58162
+38972,71302
+38973,34362
+38974,38982
+38975,64513
+38976,64513
+38977,64142
+38978,61789
+38979,64490
+38980,19480
+38981,78469
+38982,65581
+38983,38920
+38984,38920
+38985,51437
+38986,41469
+38987,62585
+38988,60216
+38989,72661
+38990,37996,49347
+38991,51778
+38992,35465
+38993,68899
+38994,49347
+38995,79009
+38996,66042
+38997,25104
+38998,45302
+38999,22133
+39000,67545
+39001,46268
+39002,69118
+39003,43352
+39004,28235
+39005,52157
+39006,22946
+39007,79744
+39008,28654
+39009,29804
+39010,31245
+39011,79738
+39012,31602
+39013,35004
+39014,35534
+39015,55348
+39016,36496
+39017,74575
+39018,57934
+39019,66431
+39020,28091
+39021,27374
+39022,44792
+39023,52777
+39024,79469
+39025,22004
+39026,36570
+39027,48943
+39028,81462
+39029,79574
+39030,60011
+39031,44792
+39032,24749
+39033,46268
+39034,63425
+39035,52777
+39036,29917
+39037,50985
+39038,57966
+39039,52777
+39040,70183
+39041,78449
+39042,53205
+39043,39460
+39044,72029
+39045,8094
+39046,71505
+39047,56941
+39048,73495
+39049,21745
+39050,31563
+39051,39276
+39052,81787
+39053,32792
+39054,56074
+39055,41672
+39056,54753
+39057,60216
+39058,38920
+39059,73018
+39060,21218
+39061,74537
+39062,41672
+39063,79445
+39064,38920
+39065,48801
+39066,23764
+39067,20698
+39068,61402
+39069,39072
+39070,65844
+39071,61317
+39072,53317
+39073,62390,52777
+39074,79745
+39075,24261
+39076,18969
+39077,81615
+39078,69033
+39079,45374
+39080,63424
+39081,35157
+39082,73981
+39083,61211
+39084,61396
+39085,70649,23628
+39086,32715
+39087,53545
+39088,43168
+39089,44792
+39090,64846
+39091,70568
+39092,47402
+39093,76757
+39094,79282
+39095,31245
+39096,58161
+39097,19755
+39098,21922
+39099,21745
+39100,69284
+39101,21745
+39102,37239
+39103,51573
+39104,63424
+39105,30073
+39106,31940
+39107,36795
+39108,65019
+39109,48157
+39110,31158
+39111,48156
+39112,29833
+39113,48157
+39114,56592
+39115,57187
+39116,28057
+39117,47926
+39118,32190
+39119,39115,31539
+39120,63116
+39121,66072
+39122,61247
+39123,62810
+39124,80728
+39125,80834
+39126,69274
+39127,64142
+39128,72451
+39129,72451
+39130,18721
+39131,39406
+39132,65424
+39133,60216
+39134,75917
+39135,56836
+39136,36869
+39137,40970
+39138,37804
+39139,37802
+39140,26416
+39141,46409
+39142,69408
+39143,37635
+39144,36983
+39145,53660
+39146,39152
+39147,47621
+39148,39049
+39149,41287
+39150,35626
+39151,45096
+39152,56878
+39153,57743
+39154,78647
+39155,47997
+39156,52149
+39157,76690
+39158,39578
+39159,80505
+39160,71435
+39161,42351
+39162,38716
+39163,50907
+39164,19737
+39165,31606
+39166,27967
+39167,63026
+39168,31941
+39169,34019
+39170,45465
+39171,77286
+39172,77286
+39173,78965
+39174,80524
+39175,77277
+39176,63736
+39177,49498
+39178,47602
+39179,30693
+39180,59542
+39181,77277
+39182,70515
+39183,72281
+39184,19629
+39185,58287
+39186,54794
+39187,23891
+39188,39183
+39189,51316
+39190,66618
+39191,25714
+39192,36053
+39193,47505
+39194,56073
+39195,39765
+39196,18969
+39197,30687
+39198,23790
+39199,27562
+39200,40987
+39201,48113
+39202,47526
+39203,39202
+39204,34126
+39205,67583,11480
+39206,35557
+39207,39404
+39208,74867
+39209,51300
+39210,45302
+39211,60048
+39212,46962
+39213,21670
+39214,28536
+39215,70416
+39216,68679
+39217,80497
+39218,79552
+39219,47026
+39220,27997
+39221,27196
+39222,45307
+39223,80561
+39224,48755
+39225,54710
+39226,63424
+39227,60216
+39228,78553
+39229,36816
+39230,69682
+39231,33311
+39232,34249
+39233,60087
+39234,80164
+39235,81161
+39236,51395
+39237,70033
+39238,73838
+39239,39676
+39240,26233
+39241,45813
+39242,81161
+39243,19629
+39244,60624
+39245,53318
+39246,45813
+39247,45813
+39248,32991
+39249,21977
+39250,45813
+39251,74067
+39252,47709
+39253,20404
+39254,20404
+39255,51395
+39256,51395
+39257,26555
+39258,52857
+39259,81161
+39260,41877
+39261,45813
+39262,60598
+39263,54717
+39264,75495
+39265,45813
+39266,67416
+39267,67560
+39268,21373
+39269,70033
+39270,34589
+39271,41877
+39272,50737
+39273,79387
+39274,79808
+39275,81342
+39276,72983
+39277,45384
+39278,58739
+39279,35566
+39280,34867
+39281,81808
+39282,34118
+39283,78767
+39284,55495
+39285,65974
+39286,46451
+39287,47152,55091
+39288,69274
+39289,72271
+39290,78975
+39291,54704
+39292,41610
+39293,38795
+39294,75510
+39295,51515
+39296,49792
+39297,21938
+39298,78698
+39299,2080
+39300,29884
+39301,32527
+39302,42447
+39303,27792
+39304,46988
+39305,53703
+39306,65226
+39307,44447
+39308,26899
+39309,46136
+39310,22128
+39311,34924
+39312,40986
+39313,23854
+39314,24630
+39315,57169
+39316,51069
+39317,52694
+39318,58888
+39319,77244
+39320,79239
+39321,29526
+39322,37998
+39323,48685
+39324,19395
+39325,47506
+39326,32299,35551
+39327,30697
+39328,52210
+39329,71311
+39330,40987
+39331,38984
+39332,27188
+39333,76989
+39334,40411
+39335,49207
+39336,49204
+39337,81227
+39338,79989
+39339,58513
+39340,42102
+39341,27506
+39342,55756
+39343,32799
+39344,79720
+39345,39801
+39346,47506
+39347,39346
+39348,39346
+39349,35626
+39350,39387
+39351,35637
+39352,27286
+39353,40965
+39354,30588
+39355,26462
+39356,59431
+39357,41004
+39358,28616
+39359,72730
+39360,60058
+39361,47869
+39362,34613
+39363,19091
+39364,59475
+39365,53592
+39366,24961
+39367,81647
+39368,24145
+39369,52811
+39370,26298
+39371,39612
+39372,81630
+39373,52497
+39374,54630
+39375,32799
+39376,20272
+39377,57865
+39378,39379
+39379,46125
+39380,46782
+39381,33318
+39382,57461
+39383,32455
+39384,39367
+39385,50295
+39386,81873
+39387,35735
+39388,27506
+39389,24594
+39390,59375
+39391,65509
+39392,30300
+39393,46506
+39394,22039
+39395,37623
+39396,31447
+39397,48383
+39398,78362
+39399,22159
+39400,37770
+39401,48111
+39402,48111
+39403,61789
+39404,19438
+39405,39404
+39406,79820
+39407,31590
+39408,62456
+39409,19492
+39410,61333
+39411,18834
+39412,25792
+39413,56474
+39414,65762
+39415,57261
+39416,51279
+39417,77328
+39418,57144
+39419,76665
+39420,53613
+39421,61078
+39422,60216
+39423,66154
+39424,49296
+39425,29695
+39426,64672
+39427,47558
+39428,51624
+39429,79764
+39430,66482
+39431,71572
+39432,63026
+39433,37627
+39434,45459
+39435,54061
+39436,54687
+39437,39442,18950
+39438,32804
+39439,34870
+39440,56274
+39441,34009
+39442,34041
+39443,67686
+39444,41023
+39445,50701
+39446,59194
+39447,52904
+39448,39446,47737
+39449,52904
+39450,62145
+39451,62145
+39452,49858
+39453,32456
+39454,59197
+39455,51523
+39456,79874
+39457,80505
+39458,39147
+39459,25394
+39460,75772
+39461,32662
+39462,21914
+39463,41413
+39464,59379
+39465,54439
+39466,25088
+39467,50442
+39468,35525
+39469,27488
+39470,51786
+39471,57965
+39472,57964
+39473,74117
+39474,59423
+39475,65641
+39476,21568
+39477,25807
+39478,66118
+39479,69276
+39480,32662
+39481,51468
+39482,32975
+39483,32182
+39484,14504
+39485,30391
+39486,21550
+39487,21770
+39488,25002
+39489,69666
+39490,20635
+39491,21327
+39492,47814
+39493,19462
+39494,49803
+39495,19462
+39496,29119
+39497,27090
+39498,47814
+39499,41875
+39500,34249,82056
+39501,35992
+39502,37686
+39503,37686
+39504,32604
+39505,32497
+39506,39578
+39507,62451
+39508,76243
+39509,46274
+39510,37042
+39511,18969
+39512,67054
+39513,25104,20754
+39514,26827
+39515,53524
+39516,68128
+39517,58888
+39518,65445
+39519,32947
+39520,62456
+39521,37166
+39522,21361
+39523,44013
+39524,25598
+39525,81750
+39526,63017
+39527,53958
+39528,63315
+39529,21729
+39530,55499
+39531,25115
+39532,63315
+39533,31543
+39534,25122
+39535,34989
+39536,81717
+39537,25122
+39538,35414
+39539,32798
+39540,59139
+39541,59475
+39542,32527
+39543,26249
+39544,43815
+39545,19379
+39546,43809
+39547,67994
+39548,75492
+39549,61789
+39550,19497
+39551,30038
+39552,31742
+39553,58168
+39554,31548
+39555,45260
+39556,40393
+39557,48534
+39558,39557
+39559,59646
+39560,39557
+39561,18743
+39562,80505
+39563,41004
+39564,39563
+39565,56179
+39566,20881
+39567,29418
+39568,20743
+39569,36044
+39570,25707
+39571,59542
+39572,63494
+39573,26298
+39574,64904
+39575,22422
+39576,41173
+39577,71579
+39578,72959
+39579,48740
+39580,69128
+39581,70033
+39582,37179
+39583,52959
+39584,33375
+39585,71899
+39586,21321
+39587,27622
+39588,49769
+39589,68641
+39590,59730
+39591,58036
+39592,66607
+39593,53842
+39594,52904
+39595,74922
+39596,19757,63013
+39597,74222
+39598,48077
+39599,32926
+39600,39049
+39601,59850
+39602,39676
+39603,41877
+39604,67574
+39605,42523
+39606,20743
+39607,60216
+39608,21525
+39609,46885
+39610,25245
+39611,76320
+39612,39607
+39613,42503
+39614,65955
+39615,39606,52885
+39616,28951,39607
+39617,65957
+39618,49861
+39619,69410
+39620,42425
+39621,77374
+39622,35922
+39623,65531
+39624,27086
+39625,59547
+39626,21703
+39627,72212
+39628,63766
+39629,79282
+39630,28803
+39631,54183
+39632,76672
+39633,62324
+39634,50867
+39635,3621
+39636,58088
+39637,77308
+39638,23182
+39639,56547
+39640,25499
+39641,72250
+39642,71304
+39643,30557
+39644,39928,61383
+39645,39072
+39646,26302
+39647,74867
+39648,44520
+39649,41444
+39650,23182
+39651,30425
+39652,58200
+39653,39652
+39654,39652
+39655,61153
+39656,57934
+39657,62937
+39658,45813
+39659,72142
+39660,79259
+39661,45812
+39662,56655
+39663,40564
+39664,56950
+39665,45813
+39666,40564
+39667,61070
+39668,54562
+39669,80591
+39670,28129
+39671,55760
+39672,50978
+39673,74081
+39674,59338
+39675,54082
+39676,63612
+39677,63612
+39678,39294
+39679,42539
+39680,72409
+39681,33149
+39682,48494
+39683,61742
+39684,22671
+39685,58616
+39686,19069
+39687,67675
+39688,21002
+39689,71524
+39690,63434
+39691,64057
+39692,19069
+39693,67675
+39694,52634
+39695,27274
+39696,25046
+39697,77520
+39698,25059
+39699,60385
+39700,60598
+39701,36602
+39702,37953
+39703,32794
+39704,53848
+39705,28774
+39706,74844
+39707,44013
+39708,58131
+39709,71636
+39710,25087
+39711,74939
+39712,76664
+39713,28129
+39714,33442
+39715,37616
+39716,40758
+39717,53860
+39718,19635
+39719,74973
+39720,29437
+39721,18740
+39722,53848
+39723,55348
+39724,19200
+39725,59378
+39726,43897
+39727,26281
+39728,69444
+39729,34949
+39730,23790
+39731,59153
+39732,60273
+39733,63064
+39734,49299
+39735,57412
+39736,53621
+39737,21007
+39738,73203
+39739,62654
+39740,69458
+39741,70033
+39742,70033
+39743,40366
+39744,59475
+39745,39744
+39746,79432
+39747,31353
+39748,58529
+39749,71318
+39750,20983
+39751,74939
+39752,38644
+39753,77641
+39754,18864
+39755,70033
+39756,45813
+39757,45813
+39758,37569
+39759,20079
+39760,57194
+39761,27276
+39762,23995
+39763,23995
+39764,59036
+39765,51230
+39766,52416
+39767,53454
+39768,28164
+39769,39049
+39770,30885
+39771,56457
+39772,26800
+39773,77491
+39774,80063
+39775,32582
+39776,53701
+39777,39767
+39778,78362
+39779,25713
+39780,63434
+39781,30020
+39782,30020
+39783,35723
+39784,60001
+39785,19324
+39786,37642
+39787,27726
+39788,35534
+39789,39790
+39790,23906
+39791,48126
+39792,59549
+39793,48126
+39794,64142
+39795,23765
+39796,21985
+39797,36917
+39798,20760,61263
+39799,50867
+39800,68128
+39801,51701
+39802,20743
+39803,47503
+39804,51701
+39805,68370
+39806,32642
+39807,25523
+39808,19008
+39809,64142
+39810,19698
+39811,60216
+39812,50876
+39813,50882
+39814,38381
+39815,36035
+39816,58168
+39817,43104
+39818,77277
+39819,65579
+39820,69331
+39821,69330
+39822,69331
+39823,69331
+39824,60603
+39825,30659
+39826,65579
+39827,79744
+39828,77467
+39829,37462
+39830,30680
+39831,30483
+39832,21759
+39833,24211
+39834,26051
+39835,79874
+39836,55453
+39837,30296
+39838,32051,39840
+39839,32915
+39840,33005
+39841,33928
+39842,33928
+39843,76664
+39844,79026
+39845,37676
+39846,53422
+39847,58384
+39848,65533
+39849,68355
+39850,44566
+39851,39847
+39852,22786
+39853,54417
+39854,22035
+39855,46781
+39856,41053
+39857,50985
+39858,52605
+39859,53277
+39860,55451
+39861,55807
+39862,77277
+39863,68168
+39864,79630
+39865,50917
+39866,59657
+39867,59658
+39868,59924
+39869,54408
+39870,27908
+39871,64849
+39872,68036
+39873,71830
+39874,71895
+39875,11867
+39876,79416
+39877,48495
+39878,37450
+39879,27267
+39880,76146
+39881,76303
+39882,31646
+39883,75976
+39884,77726
+39885,38659
+39886,65999
+39887,81694
+39888,22850
+39889,32923
+39890,63972
+39891,76441
+39892,45040
+39893,22387
+39894,66785
+39895,41279
+39896,66004
+39897,81770
+39898,45523
+39899,46757
+39900,45813
+39901,40846
+39902,64628
+39903,50439
+39904,64757
+39905,64757
+39906,17469
+39907,48662
+39908,78698
+39909,77375
+39910,23589
+39911,65435
+39912,27426
+39913,34093
+39914,76662
+39915,64757
+39916,50439
+39917,24146
+39918,57774
+39919,37179
+39920,39925
+39921,12336
+39922,50717
+39923,32578
+39924,40752
+39925,77641
+39926,31762
+39927,25600
+39928,31353
+39929,19867,80173
+39930,30554
+39931,28438
+39932,47388
+39933,24749
+39934,65927
+39935,34197
+39936,69543
+39937,74275
+39938,60015
+39939,47697
+39940,54871
+39941,52957
+39942,47495
+39943,39941
+39944,61213
+39945,49997
+39946,52094
+39947,37228
+39948,47344
+39949,47345
+39950,23323
+39951,39940
+39952,39940
+39953,81549
+39954,63434
+39955,72791
+39956,81350
+39957,73837
+39958,56376
+39959,35534
+39960,25068
+39961,45009
+39962,65202
+39963,57568
+39964,51470
+39965,75058
+39966,29744
+39967,40947
+39968,35196
+39969,29653
+39970,63457
+39971,61438
+39972,56009
+39973,51729
+39974,50125
+39975,39992
+39976,36840
+39977,52189
+39978,34398
+39979,50910,34402
+39980,59194
+39981,55662
+39982,37616
+39983,41417
+39984,74026
+39985,41252
+39986,73465
+39987,37951
+39988,68638
+39989,7922
+39990,31941
+39991,76811
+39992,23712
+39993,60742
+39994,39423
+39995,40745
+39996,31200
+39997,34564
+39998,28535
+39999,53454
+40000,40906,39606
+40001,57333
+40002,53731
+40003,60539
+40004,69633,81733
+40005,53660
+40006,40003
+40007,30937
+40008,40012
+40009,32791
+40010,39713
+40011,48030
+40012,63110
+40013,55499
+40014,72893,68434
+40015,40011
+40016,60543
+40017,39676
+40018,20763
+40019,41410
+40020,37405
+40021,34924
+40022,29357
+40023,40021
+40024,59020
+40025,19795
+40026,80227
+40027,78775
+40028,56333
+40029,56474
+40030,63114,40793
+40031,56179
+40032,28529
+40033,39018
+40034,63064
+40035,72698
+40036,38984
+40037,37802
+40038,61335
+40039,34118
+40040,53422
+40041,63918
+40042,55499
+40043,38600
+40044,49360
+40045,59308
+40046,40125
+40047,31196
+40048,66702
+40049,34865
+40050,31012
+40051,37124
+40052,52920
+40053,30659
+40054,30693
+40055,56901
+40056,54615
+40057,20533
+40058,22144,22205
+40059,28236
+40060,31245
+40061,63182
+40062,41998
+40063,48401
+40064,52144
+40065,27339
+40066,40053
+40067,66999
+40068,58287
+40069,68896
+40070,60011
+40071,58004
+40072,39556
+40073,57333
+40074,49360
+40075,40074
+40076,30391
+40077,59858
+40078,30543
+40079,38601
+40080,46901
+40081,66015
+40082,62555
+40083,72040
+40084,74423
+40085,71091
+40086,56090
+40087,22149
+40088,45812
+40089,35187,38983
+40090,32578
+40091,51523
+40092,58803
+40093,58801
+40094,47731
+40095,23313
+40096,25546
+40097,57261
+40098,44013
+40099,46268
+40100,46268
+40101,54485
+40102,58783
+40103,63424
+40104,24261
+40105,70206
+40106,80436
+40107,73761
+40108,61154
+40109,77147
+40110,40293
+40111,71098
+40112,55983
+40113,70241
+40114,47402
+40115,53175,24261
+40116,71997
+40117,63060
+40118,69599
+40119,76735
+40120,34199
+40121,45096
+40122,36276
+40123,75436
+40124,37805
+40125,31012
+40126,30073,61302
+40127,64415
+40128,58797
+40129,81626
+40130,64414
+40131,64412
+40132,51467,40124
+40133,68236
+40134,77139
+40135,64142
+40136,48169
+40137,44766
+40138,61504
+40139,60992
+40140,81482
+40141,31417
+40142,29974
+40143,31288
+40144,37519
+40145,41773
+40146,77727
+40147,45096
+40148,40216
+40149,32975
+40150,22112
+40151,30581
+40152,41657
+40153,60076
+40154,44369
+40155,72575
+40156,19907
+40157,19909
+40158,33769
+40159,20883
+40160,23796
+40161,50722
+40162,40169
+40163,58168
+40164,40213
+40165,30187
+40166,62659
+40167,56231
+40168,56234
+40169,51885
+40170,36101
+40171,38700
+40172,77995
+40173,72776
+40174,34924
+40175,46673
+40176,48445
+40177,47655
+40178,57573
+40179,57858
+40180,70249
+40181,61063
+40182,67614
+40183,67614
+40184,68430
+40185,80512
+40186,73001
+40187,76945,40177
+40188,80254
+40189,77688
+40190,60076
+40191,28346
+40192,57573,40213
+40193,80253
+40194,29538
+40195,44628
+40196,22790
+40197,22790
+40198,23221
+40199,25046
+40200,41911
+40201,25976
+40202,39818
+40203,25889
+40204,45909
+40205,29677
+40206,40231
+40207,42246
+40208,37333
+40209,23748
+40210,51319
+40211,47443
+40212,61380
+40213,34285
+40214,22438
+40215,27715
+40216,65120
+40217,47027
+40218,54407
+40219,40633
+40220,67821
+40221,73481
+40222,31762
+40223,26298
+40224,68845
+40225,80047
+40226,36532
+40227,51665
+40228,80583
+40229,81179
+40230,41773
+40231,52235
+40232,28475
+40233,51466
+40234,29626
+40235,73736
+40236,62458
+40237,72595
+40238,2492
+40239,49602
+40240,26577
+40241,57733
+40242,29040
+40243,45156
+40244,73669
+40245,30188
+40246,46463
+40247,64757
+40248,58124
+40249,49883
+40250,73001
+40251,26496
+40252,61397
+40253,59324
+40254,81185
+40255,60216
+40256,27562
+40257,23220
+40258,40283
+40259,62142
+40260,48114
+40261,47698
+40262,28054
+40263,74423
+40264,18958
+40265,52691
+40266,34359
+40267,38382
+40268,42387
+40269,44857
+40270,48772
+40271,19054
+40272,81065
+40273,11909
+40274,51242
+40275,55272
+40276,56009
+40277,31829
+40278,59308
+40279,60214
+40280,44870
+40281,62708
+40282,69216
+40283,23764
+40284,73723
+40285,77837
+40286,74423
+40287,57585
+40288,38404
+40289,77630
+40290,37119
+40291,81907
+40292,41005
+40293,21362
+40294,20755
+40295,35557
+40296,59597
+40297,29230
+40298,37210
+40299,39294
+40300,81647
+40301,56532
+40302,31862
+40303,42539
+40304,43136
+40305,43475,20758
+40306,63790
+40307,26650
+40308,75064
+40309,59420
+40310,53635
+40311,31910
+40312,58155,39563
+40313,55465
+40314,68056
+40315,78250
+40316,72003
+40317,73044
+40318,73207
+40319,35557
+40320,25256
+40321,25545,21356
+40322,53286
+40323,70629
+40324,49997
+40325,49997
+40326,22721
+40327,81647
+40328,46490
+40329,30659
+40330,58385
+40331,79471
+40332,68566
+40333,63043
+40334,42389
+40335,51204
+40336,31991
+40337,66859
+40338,68677
+40339,77308
+40340,56471
+40341,72503
+40342,61335
+40343,22878
+40344,61947
+40345,36491
+40346,58888
+40347,21810
+40348,57143
+40349,21810
+40350,35873
+40351,27622
+40352,44348
+40353,74241
+40354,74241
+40355,44988
+40356,39928
+40357,51523
+40358,59423
+40359,20745
+40360,53021
+40361,22666
+40362,48928
+40363,41917
+40364,30978
+40365,74233
+40366,31244
+40367,26528
+40368,69632
+40369,75168
+40370,18941
+40371,75976
+40372,35188
+40373,23232
+40374,54794
+40375,56377
+40376,72447,36074,35116
+40377,50439
+40378,72142
+40379,30300
+40380,24146
+40381,32530
+40382,48713
+40383,38694
+40384,35156
+40385,39424
+40386,62722
+40387,40401
+40388,79201
+40389,53717
+40390,57927
+40391,53473
+40392,57187
+40393,28616
+40394,48688
+40395,57594
+40396,60350
+40397,72892
+40398,28543
+40399,47673
+40400,36868
+40401,31058
+40402,18941
+40403,21745
+40404,40231
+40405,24007
+40406,48270
+40407,19349
+40408,71437
+40409,24611
+40410,56454
+40411,37622
+40412,75152
+40413,59616
+40414,79749
+40415,27382
+40416,30681
+40417,54433
+40418,71102
+40419,71103
+40420,34458
+40421,53326
+40422,59906
+40423,63472
+40424,28164
+40425,23613
+40426,63064
+40427,30718
+40428,40139
+40429,49767
+40430,30391
+40431,80012
+40432,79469
+40433,72716
+40434,76249
+40435,69744
+40436,47655
+40437,37871
+40438,72376
+40439,25987
+40440,77067
+40441,58224
+40442,62426
+40443,39151
+40444,38657
+40445,27540
+40446,81161
+40447,70033
+40448,16948
+40449,25438
+40450,59169
+40451,25438
+40452,62853
+40453,33793
+40454,71311
+40455,80512
+40456,79953
+40457,20953
+40458,30578
+40459,34808
+40460,63218
+40461,73981
+40462,33512
+40463,25115
+40464,41249
+40465,23712
+40466,71493
+40467,22540
+40468,39049
+40469,77985
+40470,70033
+40471,39049
+40472,20760
+40473,32578
+40474,80440
+40475,19849
+40476,43313
+40477,38296
+40478,22107
+40479,40151
+40480,65503
+40481,37241
+40482,34924
+40483,40864
+40484,69543
+40485,79749
+40486,41299
+40487,19878
+40488,65311
+40489,45096
+40490,48349
+40491,25949
+40492,59508
+40493,38793
+40494,50273,60538
+40495,77472
+40496,27059
+40497,62216
+40498,40685
+40499,39154
+40500,56872
+40501,32971
+40502,75741
+40503,26653
+40504,65251
+40505,77472
+40506,25032
+40507,37405
+40508,75442
+40509,69641
+40510,37383
+40511,36648
+40512,72248
+40513,35469
+40514,25434
+40515,31618
+40516,61182
+40517,55760
+40518,25574
+40519,68176
+40520,61568
+40521,66240
+40522,21959
+40523,21412
+40524,23869
+40525,33512
+40526,30068
+40527,39961
+40528,35668
+40529,70033
+40530,38556
+40531,68461
+40532,77996
+40533,62743
+40534,25770
+40535,40534
+40536,41556
+40537,67703
+40538,72248
+40539,50630
+40540,41033
+40541,68364
+40542,60032
+40543,28000
+40544,48877
+40545,21112
+40546,41607
+40547,38883
+40548,75436
+40549,36744
+40550,41090
+40551,40986
+40552,31037
+40553,60598
+40554,75086
+40555,70364
+40556,48900
+40557,81681
+40558,35664
+40559,49661
+40560,20763
+40561,31058
+40562,60627,60786
+40563,49797
+40564,48202
+40565,78517
+40566,21238
+40567,39147
+40568,47621
+40569,61253
+40570,45813
+40571,67377
+40572,48318,37143
+40573,50721
+40574,73276
+40575,77978
+40576,57865
+40577,46747
+40578,81161
+40579,45813
+40580,29382
+40581,61266
+40582,20972
+40583,82053
+40584,81552
+40585,39049
+40586,31633
+40587,30391
+40588,30391
+40589,73075
+40590,30391
+40591,40416
+40592,74011
+40593,28136
+40594,20760
+40595,40863
+40596,81721
+40597,39466
+40598,28619
+40599,40602
+40600,52849
+40601,19278
+40602,23884
+40603,70568
+40604,60598
+40605,41023
+40606,31604
+40607,73801
+40608,81536
+40609,40489
+40610,44407
+40611,77585
+40612,71838
+40613,40680
+40614,41249
+40615,19828
+40616,32798
+40617,77857
+40618,72776
+40619,19826
+40620,31742
+40621,34154
+40622,19843
+40623,39513
+40624,51468
+40625,52956
+40626,59542
+40627,70409
+40628,53702
+40629,48937
+40630,80505
+40631,30391
+40632,76429
+40633,70259
+40634,39838
+40635,44647
+40636,55859
+40637,40633
+40638,54813
+40639,76429
+40640,35822
+40641,76428
+40642,29418
+40643,71578
+40644,67793
+40645,28654
+40646,57987
+40647,51136
+40648,51408
+40649,69818
+40650,61382
+40651,55490
+40652,55348
+40653,40317
+40654,22634
+40655,76657
+40656,73323
+40657,35666
+40658,21745
+40659,45009
+40660,34087
+40661,37712
+40662,79908
+40663,74812
+40664,57333
+40665,61768
+40666,74814
+40667,21359
+40668,53473
+40669,57187
+40670,31118
+40671,36651
+40672,21359
+40673,21359
+40674,54554
+40675,68646
+40676,19629
+40677,56179
+40678,53454
+40679,31405
+40680,20751
+40681,20751
+40682,77110
+40683,51316
+40684,39998
+40685,43109
+40686,23375
+40687,40748
+40688,31742
+40689,76546
+40690,38477
+40691,66152
+40692,40498
+40693,61182
+40694,74538
+40695,50296
+40696,74538
+40697,42351
+40698,66551
+40699,44913
+40700,31739
+40701,46550
+40702,73838
+40703,66953
+40704,32578
+40705,49310
+40706,50272
+40707,50910
+40708,61201
+40709,80460
+40710,40701
+40711,25017
+40712,26302
+40713,37712
+40714,39151
+40715,34732
+40716,39154
+40717,51950
+40718,50717
+40719,40752
+40720,40753
+40721,72186
+40722,20933
+40723,69870
+40724,69860
+40725,29286
+40726,43467
+40727,76345
+40728,60603
+40729,40053
+40730,40590
+40731,40590
+40732,81741
+40733,42003
+40734,40537
+40735,40538
+40736,41022
+40737,33846
+40738,24188
+40739,54469
+40740,37616
+40741,43168
+40742,43947
+40743,80441
+40744,78179
+40745,56179
+40746,64831
+40747,28536
+40748,55347
+40749,55596
+40750,40745
+40751,25113
+40752,20689
+40753,65956
+40754,76664
+40755,45946
+40756,21618,34199
+40757,26239
+40758,40756
+40759,48144
+40760,42181
+40761,42207
+40762,69010
+40763,39612,21922
+40764,48144
+40765,82066
+40766,32407
+40767,23642
+40768,20152
+40769,20152
+40770,21814
+40771,21814
+40772,28822
+40773,39676
+40774,39676
+40775,58220
+40776,70033
+40777,64809
+40778,70033
+40779,76812
+40780,54468
+40781,21025
+40782,80440
+40783,48928
+40784,31281
+40785,58151
+40786,58152
+40787,70633
+40788,30890
+40789,53454
+40790,25002
+40791,57733
+40792,25729
+40793,74082
+40794,53519
+40795,32492
+40796,40905
+40797,53657
+40798,28541
+40799,76260
+40800,2492
+40801,17469
+40802,2492
+40803,17469
+40804,23035
+40805,75152
+40806,63218
+40807,40557
+40808,80387
+40809,63677
+40810,29971
+40811,40986
+40812,21117
+40813,36872,18826
+40814,40827
+40815,51319
+40816,54267
+40817,51362
+40818,50273
+40819,19298
+40820,44908
+40821,28780,42246,44933
+40822,54562
+40823,19069
+40824,67675
+40825,44931
+40826,61311
+40827,36872
+40828,44932
+40829,18366
+40830,64561
+40831,59549
+40832,21021
+40833,67675
+40834,19069
+40835,68933
+40836,52762
+40837,54642
+40838,56950
+40839,71213
+40840,61713
+40841,40747
+40842,76864
+40843,76864
+40844,81265
+40845,44347
+40846,81544
+40847,55768
+40848,27519
+40849,74818
+40850,51625
+40851,64831
+40852,28774
+40853,59549
+40854,28529
+40855,40747
+40856,72959
+40857,21281
+40858,34559
+40859,37450
+40860,52616
+40861,54130
+40862,40326
+40863,35359
+40864,46171
+40865,57897
+40866,34089
+40867,20710
+40868,19629
+40869,21812
+40870,27876
+40871,61355
+40872,77978
+40873,58088
+40874,58088
+40875,51395
+40876,40337
+40877,75860
+40878,11870
+40879,68646
+40880,25917
+40881,26716
+40882,67254
+40883,74132
+40884,75665
+40885,41732
+40886,42395
+40887,68364
+40888,49230
+40889,61159
+40890,81751
+40891,40892
+40892,60353
+40893,68236
+40894,75566
+40895,64430
+40896,72931
+40897,79723
+40898,50716
+40899,40619
+40900,59020
+40901,22058
+40902,77552
+40903,81750
+40904,25598
+40905,43821
+40906,82056
+40907,53454
+40908,26194
+40909,67201,40907
+40910,45813
+40911,42287
+40912,19421
+40913,28417
+40914,79473
+40915,35735
+40916,48077
+40917,64846
+40918,68929
+40919,59546
+40920,48491
+40921,61646
+40922,29611
+40923,35752
+40924,61646
+40925,61646
+40926,31153
+40927,39563
+40928,66702
+40929,19532
+40930,22051
+40931,40929
+40932,46559,70221
+40933,19907
+40934,45407
+40935,81193
+40936,59306
+40937,59519
+40938,69641
+40939,39647
+40940,22129
+40941,60715
+40942,20726
+40943,43110
+40944,28538
+40945,73837
+40946,59849
+40947,32578
+40948,34199
+40949,36537
+40950,28438
+40951,48555
+40952,68005
+40953,58760
+40954,73588
+40955,63126
+40956,21276
+40957,21447
+40958,44474
+40959,53916
+40960,25306
+40961,43107
+40962,59970
+40963,42518
+40964,33798
+40965,71311
+40966,38472
+40967,62034
+40968,40971
+40969,70426
+40970,40967,71595
+40971,81781
+40972,52132
+40973,49792
+40974,56073
+40975,79458
+40976,43708
+40977,48126
+40978,66351
+40979,48280
+40980,31012
+40981,31012
+40982,81602
+40983,19228
+40984,38601
+40985,77585
+40986,60216
+40987,55624
+40988,61382
+40989,73918
+40990,77374
+40991,74081
+40992,77636
+40993,77816
+40994,57333
+40995,27167
+40996,54971
+40997,51391
+40998,35557
+40999,35557
+41000,78396
+41001,41000
+41002,58200
+41003,31638
+41004,74081
+41005,71516
+41006,19302
+41007,20074
+41008,22946
+41009,30670
+41010,58161
+41011,30937
+41012,32522
+41013,39133
+41014,40293
+41015,44975
+41016,53060
+41017,47487
+41018,49888
+41019,58161
+41020,75792
+41021,58161
+41022,41004
+41023,70399
+41024,54760
+41025,80644
+41026,61705
+41027,69634
+41028,68780
+41029,25454
+41030,74488
+41031,80009
+41032,51523
+41033,79433
+41034,58144
+41035,20745
+41036,52322
+41037,81617
+41038,81617
+41039,81617
+41040,47031
+41041,61251
+41042,20745
+41043,67274
+41044,64833
+41045,40003
+41046,22786
+41047,39847,31612
+41048,30009
+41049,61404
+41050,45680
+41051,41055
+41052,50742
+41053,57572
+41054,61379
+41055,22032,61395
+41056,68352
+41057,68677
+41058,72712,22035
+41059,75566
+41060,23401
+41061,61355
+41062,58948
+41063,25920
+41064,47492
+41065,22004
+41066,51523
+41067,71686
+41068,39479
+41069,46070
+41070,74488
+41071,41337
+41072,73018
+41073,76107
+41074,78050
+41075,53032
+41076,57065
+41077,46047
+41078,61355
+41079,77236
+41080,21476
+41081,53175
+41082,41081,38563
+41083,64403
+41084,73152
+41085,47908
+41086,67836
+41087,73439
+41088,80044
+41089,29928
+41090,32578
+41091,52957
+41092,52959
+41093,53022
+41094,46960
+41095,68652
+41096,66412
+41097,57901
+41098,41097
+41099,22122
+41100,59886
+41101,34398
+41102,75775
+41103,60603
+41104,71315
+41105,48149
+41106,48494
+41107,58168
+41108,63972
+41109,63775
+41110,78703
+41111,39572
+41112,19840
+41113,73897
+41114,38954
+41115,34435
+41116,25113
+41117,33067
+41118,66542
+41119,67565
+41120,67574
+41121,77042
+41122,77060
+41123,59306
+41124,61209
+41125,51408
+41126,20581
+41127,57735
+41128,21304
+41129,56492
+41130,79720
+41131,51803
+41132,63061
+41133,32522
+41134,34154
+41135,62572
+41136,20581
+41137,20749
+41138,41673
+41139,37824
+41140,79572
+41141,81224
+41142,62973
+41143,66260
+41144,36527
+41145,72585
+41146,19757
+41147,36317
+41148,32195
+41149,72960
+41150,48793
+41151,49305
+41152,38634
+41153,50903
+41154,54615
+41155,61766
+41156,77585
+41157,73566
+41158,64142
+41159,50296
+41160,41161
+41161,51408
+41162,51903
+41163,44792
+41164,41172
+41165,74462
+41166,62145
+41167,53369
+41168,20581
+41169,53716
+41170,61763
+41171,59621
+41172,49486
+41173,69439
+41174,33500
+41175,67565
+41176,69531
+41177,77685
+41178,43107
+41179,63483
+41180,79270
+41181,50296,24257
+41182,40147
+41183,25518
+41184,40690
+41185,75864
+41186,73031
+41187,39375
+41188,70033
+41189,24251
+41190,38777
+41191,61355
+41192,80164
+41193,81277
+41194,74462
+41195,41172
+41196,48723
+41197,52144
+41198,59858
+41199,19171
+41200,41911
+41201,81647
+41202,71040
+41203,34118
+41204,39279,32926
+41205,45813
+41206,78727
+41207,20386
+41208,41252
+41209,53963
+41210,49803
+41211,53964
+41212,7922
+41213,76981
+41214,33532
+41215,25708
+41216,51366
+41217,68990
+41218,37988
+41219,67498
+41220,81797
+41221,35926
+41222,18720
+41223,53021
+41224,54947
+41225,21218
+41226,73835
+41227,75510
+41228,81578
+41229,35874
+41230,39294
+41231,42539
+41232,42539
+41233,51069
+41234,42181
+41235,69030
+41236,19944,42246
+41237,71557
+41238,60450
+41239,35922
+41240,62456
+41241,31362
+41242,28346
+41243,53022
+41244,75033
+41245,22149
+41246,21218
+41247,48157
+41248,56179
+41249,21618
+41250,61153
+41251,32790
+41252,39053
+41253,50369
+41254,27288
+41255,40247
+41256,19069
+41257,59205
+41258,35158
+41259,54445
+41260,72983
+41261,72983
+41262,53478
+41263,25302
+41264,38883
+41265,31058
+41266,38958
+41267,25115
+41268,39771
+41269,65858
+41270,70033
+41271,59422
+41272,59306
+41273,21904
+41274,34093
+41275,76662
+41276,64757
+41277,21670
+41278,37953
+41279,34305
+41280,81251
+41281,59422
+41282,32497,56185
+41283,76664
+41284,34305
+41285,78526
+41286,77618
+41287,31241
+41288,31853
+41289,34118
+41290,41130
+41291,62585
+41292,50439
+41293,61054
+41294,43614
+41295,53761
+41296,39101
+41297,23310
+41298,62142
+41299,59414
+41300,77493
+41301,19458
+41302,36952
+41303,19268
+41304,79794
+41305,65789
+41306,41773
+41307,56179
+41308,59426
+41309,20749
+41310,52885
+41311,52803
+41312,28952
+41313,41312
+41314,41317,39449
+41315,41317
+41316,57223
+41317,34285
+41318,39607
+41319,41312
+41320,27563
+41321,39298
+41322,39298
+41323,37789
+41324,70033
+41325,79635
+41326,63426
+41327,41325
+41328,51467
+41329,51467
+41330,51467
+41331,38567
+41332,23313
+41333,39049
+41334,81036
+41335,22679
+41336,79963
+41337,65691
+41338,40063
+41339,74487
+41340,37196
+41341,78578
+41342,73412
+41343,70629
+41344,58215
+41345,70466
+41346,22507
+41347,41344
+41348,39122
+41349,63287
+41350,73838
+41351,61526
+41352,40747
+41353,44013
+41354,59850
+41355,23763
+41356,35188
+41357,23232
+41358,56294
+41359,81578
+41360,54691
+41361,54388
+41362,45199
+41363,23643
+41364,21759
+41365,72447,36074,35116
+41366,48579
+41367,22907
+41368,55373
+41369,77492
+41370,44763
+41371,40752
+41372,30300
+41373,55984
+41374,50439
+41375,64757
+41376,64757
+41377,48662
+41378,35254
+41379,38382
+41380,79354
+41381,21477
+41382,33958
+41383,20745,24834
+41384,20745
+41385,46962
+41386,69953
+41387,41899
+41388,27187
+41389,22853
+41390,70893
+41391,43983
+41392,46639
+41393,46958
+41394,77661
+41395,75942
+41396,45813
+41397,26433
+41398,46760
+41399,53588
+41400,44396
+41401,41399
+41402,58088
+41403,41226
+41404,43122
+41405,28774
+41406,64852
+41407,59306
+41408,59036
+41409,41412
+41410,55022
+41411,35879
+41412,48024
+41413,48251
+41414,25803
+41415,79940
+41416,80505
+41417,59305
+41418,60737
+41419,34186
+41420,73463
+41421,38835
+41422,25202
+41423,19742
+41424,81492
+41425,58088
+41426,74279
+41427,80618
+41428,23294
+41429,38566
+41430,29138
+41431,64720
+41432,36403
+41433,21275
+41434,60534
+41435,41444
+41436,59308
+41437,41444
+41438,39279
+41439,26264
+41440,75020
+41441,70629
+41442,81781
+41443,73836
+41444,74502
+41445,31163
+41446,55022
+41447,53210
+41448,31181
+41449,26577
+41450,50885
+41451,75472
+41452,54082
+41453,59497
+41454,70033
+41455,67972
+41456,25848
+41457,26409
+41458,44609
+41459,52497
+41460,50341
+41461,30890
+41462,36496
+41463,54465
+41464,78346
+41465,29969
+41466,21940
+41467,55668
+41468,55662
+41469,32926
+41470,77790
+41471,41469
+41472,31570
+41473,41469
+41474,41469
+41475,35565
+41476,54753
+41477,45813
+41478,38712
+41479,55825
+41480,52552
+41481,59970
+41482,41487
+41483,23615
+41484,81200
+41485,65928
+41486,63143
+41487,60216
+41488,76258
+41489,61161
+41490,37459
+41491,36571
+41492,41516
+41493,63641
+41494,61141
+41495,51677
+41496,51279
+41497,43247
+41498,55246
+41499,56444
+41500,60350
+41501,62089
+41502,21475
+41503,62744
+41504,22057
+41505,41516
+41506,702
+41507,50354
+41508,50925
+41509,77286
+41510,74500
+41511,61621
+41512,62409
+41513,43247
+41514,78855
+41515,41537
+41516,72959
+41517,29548
+41518,29548
+41519,29548
+41520,29548
+41521,29548
+41522,29548
+41523,29548
+41524,29548
+41525,29548
+41526,29548
+41527,41516
+41528,46894
+41529,29549
+41530,29548
+41531,38381
+41532,75873
+41533,50341
+41534,81626
+41535,25411
+41536,37482
+41537,29488
+41538,30938
+41539,48862
+41540,37179
+41541,64403
+41542,27624
+41543,56937
+41544,71439
+41545,29996
+41546,51440
+41547,31873,60391
+41548,30347
+41549,59604
+41550,41547,34379
+41551,54825
+41552,75741
+41553,77520
+41554,64833
+41555,19655
+41556,27408
+41557,37548
+41558,41559
+41559,77357
+41560,62294
+41561,27536
+41562,64831
+41563,64846
+41564,28602
+41565,22897
+41566,35773
+41567,54913
+41568,69129
+41569,79375
+41570,55660
+41571,58800
+41572,30718
+41573,25862
+41574,41005
+41575,42023
+41576,57982
+41577,80257
+41578,76248
+41579,40747
+41580,52255
+41581,29627
+41582,56584
+41583,43736
+41584,58213
+41585,23322
+41586,41588
+41587,74343
+41588,68622
+41589,55799
+41590,23021
+41591,21447
+41592,19697
+41593,65758
+41594,21777
+41595,51319
+41596,55015
+41597,79245
+41598,73207
+41599,31669
+41600,37237
+41601,66055
+41602,29996
+41603,19343
+41604,35557
+41605,35557
+41606,26884
+41607,60216
+41608,20163
+41609,51391
+41610,35679
+41611,54427
+41612,40150
+41613,75195
+41614,65698
+41615,56480
+41616,21447
+41617,39049
+41618,80185
+41619,80185
+41620,59826
+41621,22427
+41622,78770
+41623,30718
+41624,61331
+41625,19421
+41626,38920
+41627,19621
+41628,71315
+41629,37173
+41630,58012
+41631,47455
+41632,23897
+41633,41634
+41634,77641
+41635,42523
+41636,81161
+41637,52121
+41638,58088
+41639,60936
+41640,62030
+41641,45813
+41642,68652
+41643,61396
+41644,39502
+41645,57280
+41646,26318
+41647,35557
+41648,41606
+41649,23419
+41650,77374
+41651,31245
+41652,58508
+41653,44738
+41654,30062
+41655,19421
+41656,6305
+41657,20422
+41658,61956
+41659,74818
+41660,35557
+41661,58088
+41662,58088
+41663,21361
+41664,72248
+41665,72308
+41666,27363
+41667,50717
+41668,72122
+41669,22053
+41670,62144
+41671,21214
+41672,70110
+41673,70111
+41674,27091
+41675,66702
+41676,68692
+41677,62534
+41678,38914
+41679,34118
+41680,53516
+41681,62054
+41682,63224
+41683,76989
+41684,81874
+41685,35386
+41686,38910
+41687,51889
+41688,33442
+41689,53849
+41690,26320
+41691,44730
+41692,51856
+41693,70474
+41694,74640
+41695,50910
+41696,81159
+41697,25495
+41698,35480
+41699,30461
+41700,60984
+41701,60984
+41702,39055
+41703,41672
+41704,19421
+41705,47317
+41706,41547
+41707,43109
+41708,48251
+41709,79467
+41710,30348
+41711,80845
+41712,77059
+41713,45641
+41714,53412
+41715,53413
+41716,39088
+41717,81763
+41718,41719
+41719,34808
+41720,41022
+41721,58049,31145
+41722,41719
+41723,82035,41719
+41724,44474
+41725,65956
+41726,49660
+41727,43518
+41728,63513
+41729,65956
+41730,31476
+41731,31853
+41732,23370
+41733,30154
+41734,33474
+41735,24007
+41736,35359
+41737,19741
+41738,24007
+41739,70924
+41740,67275
+41741,63790
+41742,67594
+41743,20690
+41744,33009
+41745,26884
+41746,69010
+41747,64142
+41748,61259
+41749,31245
+41750,78965
+41751,78547
+41752,64142
+41753,41729
+41754,81482
+41755,46715
+41756,78756
+41757,20828
+41758,35445
+41759,46092
+41760,71517
+41761,31846
+41762,28890
+41763,31858
+41764,58917
+41765,70033
+41766,69448
+41767,41023
+41768,41305
+41769,26120
+41770,66857
+41771,31489
+41772,27167
+41773,74081
+41774,38839
+41775,28167
+41776,40021
+41777,47948
+41778,53656
+41779,66018
+41780,60993
+41781,57594,41773
+41782,38218
+41783,63494
+41784,40930
+41785,60604
+41786,77462
+41787,32929
+41788,60216
+41789,50701
+41790,24881
+41791,63584
+41792,29643
+41793,35719
+41794,40772
+41795,61121
+41796,67938
+41797,31596
+41798,54439
+41799,65245
+41800,58207
+41801,37113
+41802,44509
+41803,61713
+41804,26359
+41805,60394
+41806,56375
+41807,58760
+41808,63157
+41809,70675
+41810,67335
+41811,22542
+41812,81643
+41813,71446
+41814,75583
+41815,27459
+41816,31245
+41817,63314
+41818,50450
+41819,60321
+41820,67675
+41821,38834
+41822,34591
+41823,19069
+41824,47229
+41825,46916
+41826,19069
+41827,25002
+41828,57288
+41829,4239
+41830,28774
+41831,21276
+41832,70629
+41833,34924
+41834,45813
+41835,19228
+41836,35838
+41837,81396
+41838,72421
+41839,19143
+41840,65691
+41841,71314
+41842,53476
+41843,36839
+41844,78996
+41845,26975
+41846,81578
+41847,20577
+41848,35626
+41849,42514
+41850,47486
+41851,52629
+41852,68289
+41853,35922
+41854,74500
+41855,62453
+41856,55026
+41857,27086
+41858,39116
+41859,45183
+41860,20530
+41861,50602
+41862,53619
+41863,13818
+41864,61789
+41865,35474
+41866,13815
+41867,62935
+41868,71512
+41869,19541
+41870,21905
+41871,73837
+41872,28346
+41873,55229
+41874,63074
+41875,82190
+41876,30697
+41877,58166
+41878,39294
+41879,42539
+41880,35359
+41881,35359
+41882,58100
+41883,72791
+41884,48126
+41885,73837
+41886,49158
+41887,34657
+41888,26433
+41889,78984
+41890,71063
+41891,31287
+41892,72165
+41893,78464
+41894,49312
+41895,20321
+41896,41083
+41897,42225
+41898,30063
+41899,20759
+41900,56293
+41901,30062
+41902,45260
+41903,36943
+41904,36943
+41905,58158
+41906,20726
+41907,25256
+41908,19944,61262
+41909,51523
+41910,50802
+41911,28475
+41912,51573
+41913,66953
+41914,48423
+41915,48551
+41916,18940
+41917,41914
+41918,30937
+41919,35792
+41920,35815
+41921,74939
+41922,73761
+41923,77687
+41924,29896
+41925,70651
+41926,20670
+41927,81181
+41928,63917
+41929,37405
+41930,51353
+41931,40482
+41932,53425
+41933,36526
+41934,57594
+41935,25097
+41936,20120
+41937,55785
+41938,48072
+41939,40150
+41940,51562
+41941,30568
+41942,78679
+41943,57143
+41944,79745
+41945,32173
+41946,31858
+41947,60264
+41948,58224
+41949,39049
+41950,48748
+41951,53524
+41952,69635
+41953,30697
+41954,75843
+41955,76633
+41956,33893
+41957,60062
+41958,63198
+41959,34697
+41960,30699
+41961,21770
+41962,62149
+41963,76134
+41964,76691
+41965,35480
+41966,23579
+41967,74906
+41968,41110
+41969,20992
+41970,39049
+41971,47442
+41972,80047
+41973,66939
+41974,79653
+41975,68896
+41976,33464
+41977,40863
+41978,37998
+41979,21270
+41980,71398
+41981,54562
+41982,54082
+41983,72174
+41984,71900
+41985,46490
+41986,41119
+41987,37416
+41988,41119
+41989,66154
+41990,50602
+41991,32531
+41992,40680
+41993,81781
+41994,30584
+41995,45097
+41996,51135
+41997,81161
+41998,74275
+41999,60216
+42000,35822
+42001,60216
+42002,51928
+42003,80011
+42004,69818
+42005,50900
+42006,18908
+42007,43313
+42008,28129
+42009,19654
+42010,33650
+42011,74161
+42012,47770
+42013,68794
+42014,50969
+42015,43291
+42016,35557
+42017,69977
+42018,45813
+42019,30391
+42020,30391
+42021,44609
+42022,31288
+42023,81193
+42024,61259
+42025,54562
+42026,29833
+42027,68854
+42028,71636
+42029,61263
+42030,35359
+42031,80219
+42032,56525,55688
+42033,32534
+42034,24609
+42035,67574
+42036,22186
+42037,66953
+42038,32196
+42039,22766
+42040,66953
+42041,79471
+42042,79471
+42043,49887
+42044,49887
+42045,63287
+42046,70761
+42047,48318
+42048,19069
+42049,24306
+42050,21358
+42051,54082
+42052,2492
+42053,17469
+42054,42002
+42055,27519
+42056,48413
+42057,79596
+42058,42056
+42059,26938
+42060,52904
+42061,64949
+42062,37417
+42063,73273
+42064,73274
+42065,21276
+42066,48875
+42067,70629
+42068,50701
+42069,54130
+42070,45828
+42071,55768
+42072,28844
+42073,65793
+42074,72042
+42075,66682
+42076,60216
+42077,19468
+42078,35838,79524
+42079,31690
+42080,26298,61144
+42081,75020
+42082,44614
+42083,81918
+42084,20690
+42085,41973
+42086,59308
+42087,68352
+42088,53628
+42089,42097
+42090,20743
+42091,61382
+42092,31646
+42093,19228
+42094,35838
+42095,57461
+42096,42090,42049
+42097,38218
+42098,40293
+42099,36049
+42100,65636
+42101,59860
+42102,42078,42093
+42103,68196
+42104,68196
+42105,26010
+42106,68289
+42107,22684
+42108,30118
+42109,33479
+42110,37955
+42111,68268
+42112,78639
+42113,65956
+42114,65953
+42115,28164
+42116,65956
+42117,44474
+42118,65956
+42119,61246
+42120,73664
+42121,43313
+42122,47911
+42123,61402
+42124,75057
+42125,39878
+42126,51068
+42127,48545
+42128,19069
+42129,20355,56543
+42130,61291,43427
+42131,29971
+42132,48875
+42133,37448
+42134,22634
+42135,59549
+42136,78494
+42137,68057
+42138,68342
+42139,43756
+42140,50117
+42141,76981
+42142,78698
+42143,21938
+42144,41165
+42145,56492
+42146,56441
+42147,41063
+42148,59549
+42149,62432
+42150,59812
+42151,32929
+42152,59427
+42153,59826
+42154,75665
+42155,68793
+42156,64632
+42157,41444
+42158,35684
+42159,57897
+42160,35637
+42161,39088
+42162,72917
+42163,68057
+42164,42154
+42165,58378
+42166,65870
+42167,67614
+42168,53646
+42169,37179
+42170,26827
+42171,65108
+42172,80227
+42173,60695
+42174,36760
+42175,45286
+42176,77995
+42177,80006
+42178,71307
+42179,79270
+42180,81874
+42181,61487
+42182,20665
+42183,21718
+42184,32887
+42185,45813
+42186,46673
+42187,24530
+42188,51091
+42189,56111
+42190,58027
+42191,59377
+42192,59656
+42193,59658
+42194,61246
+42195,64688
+42196,66900
+42197,71113
+42198,71869
+42199,72153
+42200,73612
+42201,76981
+42202,77989
+42203,80561
+42204,37712
+42205,46670
+42206,70033
+42207,39381
+42208,75564
+42209,71686
+42210,71557
+42211,72483
+42212,34199
+42213,24873
+42214,78449
+42215,33824
+42216,20079
+42217,40564
+42218,25770
+42219,72503
+42220,40564
+42221,20079
+42222,33134
+42223,62740
+42224,40564
+42225,29928
+42226,22688
+42227,33539
+42228,56327
+42229,54562,77509
+42230,50123
+42231,54562
+42232,34199
+42233,34199
+42234,36965
+42235,32531
+42236,54427
+42237,54431
+42238,27276
+42239,48413
+42240,49763
+42241,30890
+42242,22901
+42243,78578
+42244,30514
+42245,49969
+42246,40794
+42247,72970
+42248,57144
+42249,78097
+42250,69744
+42251,26504
+42252,26504
+42253,48413
+42254,78995
+42255,31539
+42256,48579
+42257,81643
+42258,40370
+42259,34924
+42260,41911
+42261,42148
+42262,44628
+42263,27405
+42264,45559
+42265,45546
+42266,75292
+42267,50273
+42268,64287
+42269,61009
+42270,52718
+42271,53309
+42272,54130
+42273,41781,47047
+42274,32859
+42275,58462
+42276,62757
+42277,63775
+42278,73507
+42279,42252
+42280,25202
+42281,39101
+42282,75292
+42283,76196
+42284,78204
+42285,80640
+42286,25391
+42287,31506
+42288,39817
+42289,28790
+42290,68629
+42291,25115
+42292,51319
+42293,37712
+42294,53317
+42295,41773,47047
+42296,41773,47047
+42297,48579
+42298,42358
+42299,69304
+42300,38639
+42301,48213
+42302,28790
+42303,61702
+42304,41877
+42305,57934
+42306,21703
+42307,35177
+42308,35181
+42309,50594
+42310,20017
+42311,60000
+42312,79282
+42313,42322
+42314,48126
+42315,70568
+42316,48127
+42317,35917
+42318,53716
+42319,57934
+42320,65520
+42321,41111
+42322,46553
+42323,47805
+42324,33292
+42325,21669
+42326,79282
+42327,54978
+42328,37858
+42329,37859
+42330,57934
+42331,37637
+42332,58162
+42333,81647
+42334,61054
+42335,44358
+42336,59427
+42337,55486
+42338,31106
+42339,26884
+42340,48735
+42341,46782
+42342,60216
+42343,36574
+42344,62187
+42345,38013
+42346,36610
+42347,69400
+42348,30392
+42349,70675
+42350,60216
+42351,71315
+42352,45291
+42353,32610
+42354,35667
+42355,22997
+42356,35737
+42357,76226
+42358,53624
+42359,72839
+42360,25424
+42361,28467
+42362,43458
+42363,32150
+42364,43458
+42365,1330
+42366,40859
+42367,32324
+42368,56472
+42369,52854
+42370,32991
+42371,68619
+42372,33793
+42373,71311
+42374,72029
+42375,22428
+42376,27086
+42377,1330
+42378,40752
+42379,72917
+42380,26298
+42381,20905
+42382,56601
+42383,49341
+42384,35105
+42385,71719
+42386,74748
+42387,53660
+42388,80753
+42389,38218
+42390,69663
+42391,80764
+42392,42387
+42393,53648
+42394,39318
+42395,51814
+42396,46599
+42397,70033
+42398,60076
+42399,52904
+42400,35557
+42401,81462,8536
+42402,30432
+42403,76877
+42404,53847
+42405,68316
+42406,33725
+42407,42406
+42408,79701
+42409,52814
+42410,55314
+42411,36887
+42412,33216
+42413,21671
+42414,33539
+42415,53717
+42416,31520
+42417,65892
+42418,65956
+42419,47273
+42420,60032
+42421,58276
+42422,48157
+42423,61764
+42424,61748
+42425,43911
+42426,19735
+42427,47409
+42428,66882
+42429,69197
+42430,29026
+42431,58161
+42432,38807
+42433,35480
+42434,49792
+42435,39111
+42436,42446
+42437,45367
+42438,25202
+42439,20647
+42440,20650
+42441,78698
+42442,37355
+42443,50824
+42444,51238
+42445,45367
+42446,30680
+42447,35917
+42448,65711
+42449,72714
+42450,79387
+42451,64142
+42452,47388
+42453,30420
+42454,77429
+42455,21090
+42456,30391
+42457,50703
+42458,62145
+42459,60385
+42460,76664
+42461,24243
+42462,63124
+42463,65949
+42464,42461
+42465,42158
+42466,74996
+42467,37478
+42468,21200
+42469,37905
+42470,52773
+42471,53958
+42472,81251
+42473,42471,36602
+42474,57098
+42475,49802
+42476,69561
+42477,23760
+42478,79794
+42479,58118
+42480,44558
+42481,35534
+42482,24284
+42483,21620
+42484,42429
+42485,63060
+42486,68443
+42487,23790
+42488,24249
+42489,24251
+42490,43285
+42491,79282
+42492,56492
+42493,72271
+42494,37179
+42495,41743
+42496,37179
+42497,42495
+42498,45874,79328
+42499,60242
+42500,60385
+42501,77108
+42502,80188
+42503,65955
+42504,57360
+42505,63177
+42506,48474
+42507,32798
+42508,22050
+42509,44527
+42510,27625
+42511,49769
+42512,26884
+42513,58118
+42514,42489
+42515,24243
+42516,31547
+42517,49797
+42518,21671
+42519,58798
+42520,42518
+42521,42531
+42522,20977
+42523,40752
+42524,72763,20973,21006,79401
+42525,42523
+42526,60216
+42527,3695
+42528,3695
+42529,25862
+42530,40962
+42531,52904
+42532,42531
+42533,19737
+42534,53022
+42535,66149
+42536,78854
+42537,25526
+42538,19239
+42539,75510
+42540,49797
+42541,21963
+42542,67039
+42543,21963
+42544,21963
+42545,21963
+42546,22643
+42547,52887
+42548,52887
+42549,24325
+42550,55081
+42551,21963
+42552,24325
+42553,65960
+42554,51397
+42555,51397
+42556,21963
+42557,67039
+42558,67039
+42559,67039
+42560,51397
+42561,35097
+42562,65960
+42563,65960
+42564,55081
+42565,51397
+42566,51397
+42567,35243
+42568,51397
+42569,21963
+42570,21963
+42571,63460
+42572,67039
+42573,55081
+42574,29191
+42575,20426
+42576,65960
+42577,61254
+42578,21720
+42579,35243
+42580,21963
+42581,52660
+42582,67039,17393
+42583,39679
+42584,55081
+42585,24325
+42586,65960
+42587,52887
+42588,40303
+42589,24325
+42590,55081
+42591,65960
+42592,29191
+42593,24325
+42594,52660
+42595,67039
+42596,44703
+42597,35243
+42598,63460
+42599,24325
+42600,24325
+42601,21720
+42602,55081
+42603,55081
+42604,35243
+42605,76764
+42606,21963
+42607,21963
+42608,55081
+42609,51397
+42610,51397
+42611,21963
+42612,67039
+42613,67039
+42614,52887
+42615,67039
+42616,63460
+42617,22643
+42618,35097
+42619,65960
+42620,35243
+42621,67039
+42622,33239
+42623,52887
+42624,55081
+42625,35243
+42626,22643
+42627,27763
+42628,55081
+42629,51397
+42630,21963
+42631,35243
+42632,35097
+42633,35243
+42634,35097
+42635,20426
+42636,52887
+42637,65960
+42638,55081
+42639,55081
+42640,55081
+42641,55081
+42642,21963
+42643,21963
+42644,67039
+42645,21720
+42646,55081
+42647,35243
+42648,61254
+42649,41879
+42650,35243
+42651,55081
+42652,35097
+42653,21963
+42654,67039
+42655,35097
+42656,67039
+42657,67039
+42658,35097
+42659,21963
+42660,21963
+42661,44703
+42662,55081
+42663,65960
+42664,40303
+42665,65960
+42666,44703
+42667,21963
+42668,40303
+42669,40303
+42670,52887
+42671,54980
+42672,22643
+42673,63460
+42674,41879
+42675,39679
+42676,21963
+42677,24325
+42678,21720
+42679,21963
+42680,67039
+42681,52660
+42682,35243
+42683,67039
+42684,51397
+42685,22643
+42686,35243
+42687,21720
+42688,55081
+42689,65960
+42690,21963
+42691,52887
+42692,21963
+42693,35097
+42694,55081
+42695,65960
+42696,35097
+42697,21963
+42698,67039
+42699,55081
+42700,22643
+42701,27763
+42702,65960
+42703,24325
+42704,21963
+42705,63460
+42706,24325
+42707,67039
+42708,51397
+42709,67039
+42710,67039
+42711,55081
+42712,35097
+42713,21720
+42714,55081
+42715,35097
+42716,35097
+42717,21963
+42718,35097
+42719,21720
+42720,39679
+42721,65960
+42722,65960
+42723,52660
+42724,55081
+42725,67039
+42726,67039
+42727,35243
+42728,21720
+42729,20426
+42730,35097
+42731,41879
+42732,63460
+42733,21963
+42734,35243
+42735,65960
+42736,24325
+42737,44703
+42738,22643
+42739,65960
+42740,55081
+42741,41879
+42742,29191
+42743,35243
+42744,39679
+42745,35243
+42746,51397
+42747,55081
+42748,21720
+42749,27763
+42750,52887
+42751,27763
+42752,81687
+42753,65960
+42754,65960
+42755,63460
+42756,21963
+42757,44703
+42758,21963
+42759,65960
+42760,35243
+42761,44703
+42762,27763
+42763,21963
+42764,40303
+42765,21963
+42766,35243
+42767,35097
+42768,22643
+42769,67039
+42770,22643
+42771,35097
+42772,63460
+42773,35097
+42774,21963
+42775,35097
+42776,35097
+42777,61254
+42778,51397
+42779,35097
+42780,63460
+42781,41879
+42782,21963
+42783,52887
+42784,35243
+42785,52887
+42786,21963
+42787,67039
+42788,21963
+42789,21963
+42790,61254
+42791,61254
+42792,21963
+42793,21963
+42794,63460
+42795,44703
+42796,51397
+42797,67039
+42798,63460
+42799,51397
+42800,21720
+42801,21963
+42802,44703
+42803,52887
+42804,52887
+42805,35097
+42806,52887
+42807,41879
+42808,27763
+42809,21963
+42810,35097
+42811,35243
+42812,21963
+42813,35243
+42814,21963
+42815,41879
+42816,52660
+42817,65960
+42818,35243
+42819,51397
+42820,52887
+42821,52887
+42822,67039
+42823,35097
+42824,51397
+42825,52887
+42826,30218
+42827,67039
+42828,55081
+42829,24325
+42830,24325
+42831,65960
+42832,20426
+42833,35243
+42834,65960
+42835,65960
+42836,67039
+42837,52887
+42838,67039
+42839,21963
+42840,51397,8308
+42841,21963
+42842,24325
+42843,24325
+42844,35243
+42845,44703
+42846,22643
+42847,51397
+42848,21963
+42849,21963
+42850,22643
+42851,55081
+42852,67039
+42853,39679
+42854,41879
+42855,24325
+42856,52887
+42857,67039
+42858,41879
+42859,22643
+42860,67039
+42861,63460
+42862,35243
+42863,55081
+42864,61254
+42865,22643
+42866,35097
+42867,27763
+42868,35243
+42869,35097
+42870,54980
+42871,35097
+42872,52887
+42873,35097
+42874,27763
+42875,52887
+42876,35097
+42877,52887
+42878,44703
+42879,52660
+42880,35243
+42881,27763
+42882,40303
+42883,21720
+42884,55081
+42885,61254
+42886,55081
+42887,55081
+42888,65960
+42889,67039
+42890,52887
+42891,44703
+42892,67039
+42893,67039
+42894,40303
+42895,65960
+42896,21963
+42897,41879
+42898,65960
+42899,55081
+42900,35243
+42901,41879
+42902,67039
+42903,21963
+42904,22643
+42905,22643
+42906,52887
+42907,30218
+42908,51397
+42909,54980
+42910,21963
+42911,55081
+42912,54980
+42913,54980
+42914,21963
+42915,52660
+42916,63460
+42917,22643
+42918,65960
+42919,24325
+42920,54980
+42921,55081
+42922,54980
+42923,55081
+42924,55081
+42925,21963
+42926,52887
+42927,39679
+42928,21963
+42929,67039
+42930,35097
+42931,40303
+42932,55081
+42933,63460
+42934,67039
+42935,55081
+42936,35243
+42937,39679
+42938,54980
+42939,35097
+42940,21720
+42941,21963
+42942,21963
+42943,55081
+42944,52887
+42945,52887
+42946,67039
+42947,55081
+42948,21963
+42949,61254
+42950,54980
+42951,21963
+42952,65960
+42953,55081
+42954,24325
+42955,63460
+42956,21963
+42957,65960
+42958,55081
+42959,35097
+42960,55081
+42961,21963
+42962,27763
+42963,52887
+42964,35097
+42965,52887
+42966,35097
+42967,24325
+42968,65960
+42969,52887
+42970,39679
+42971,65960
+42972,21963
+42973,67039
+42974,35243
+42975,24325
+42976,41879
+42977,65960
+42978,67039
+42979,35097
+42980,55081
+42981,39679
+42982,35243
+42983,24325
+42984,52887
+42985,41879
+42986,41879
+42987,21963
+42988,35243
+42989,22643
+42990,40303
+42991,41879
+42992,35097
+42993,35097
+42994,81687
+42995,52887
+42996,22643
+42997,29191
+42998,21963
+42999,21963
+43000,51397
+43001,63460
+43002,52660
+43003,21963
+43004,21720
+43005,21963
+43006,35243
+43007,21720
+43008,51397
+43009,41879
+43010,21963
+43011,61254
+43012,67039
+43013,44703
+43014,22643
+43015,67039
+43016,22643
+43017,35243
+43018,27763
+43019,24325
+43020,20426
+43021,35243
+43022,52887
+43023,55081
+43024,55081
+43025,81687
+43026,55081
+43027,55304
+43028,22643
+43029,63460
+43030,54980
+43031,21720
+43032,55081
+43033,35097
+43034,22643
+43035,65960
+43036,65960
+43037,55081
+43038,65960
+43039,63460
+43040,35097
+43041,35243
+43042,21963
+43043,21963
+43044,22643
+43045,22643
+43046,35097
+43047,65960
+43048,65960
+43049,35097
+43050,67039
+43051,81687
+43052,52887
+43053,40303
+43054,52887
+43055,54980
+43056,63460
+43057,22643
+43058,21720
+43059,39679
+43060,21963
+43061,21720
+43062,65960
+43063,24325
+43064,22643
+43065,65960
+43066,22643
+43067,63460
+43068,51397
+43069,24325
+43070,67039
+43071,65960
+43072,21963
+43073,65960
+43074,55081
+43075,55081
+43076,65960
+43077,21963
+43078,21963
+43079,21963
+43080,41879
+43081,22643
+43082,24325
+43083,63460
+43084,21963
+43085,44703
+43086,67039
+43087,39679
+43088,21963
+43089,21963
+43090,35243
+43091,51397
+43092,44703
+43093,21963
+43094,55081
+43095,59115
+43096,28803
+43097,56827
+43098,51464
+43099,36041
+43100,43126
+43101,29579
+43102,38807
+43103,61646
+43104,65579
+43105,56009
+43106,36981
+43107,57333
+43108,46540
+43109,56178
+43110,56179
+43111,76633
+43112,68290
+43113,36981
+43114,35863
+43115,35858
+43116,53480
+43117,53600
+43118,51523
+43119,63197
+43120,69237
+43121,55314
+43122,63861
+43123,53472
+43124,60655
+43125,43112
+43126,43113
+43127,79211
+43128,61800
+43129,5485
+43130,39049
+43131,43133
+43132,43128
+43133,58073
+43134,45521
+43135,77961
+43136,45813
+43137,40752
+43138,66862
+43139,20905
+43140,53716
+43141,73837
+43142,37644
+43143,63467
+43144,73398
+43145,68289
+43146,61260
+43147,24246
+43148,74067
+43149,79416
+43150,21271
+43151,54562
+43152,28780,69049
+43153,58208
+43154,44474
+43155,61792
+43156,71996
+43157,28697
+43158,79379
+43159,45813
+43160,81549
+43161,44719,61305
+43162,41226
+43163,31565
+43164,24245
+43165,43168
+43166,47944
+43167,55348
+43168,79738
+43169,66260
+43170,27501
+43171,38313
+43172,72519
+43173,27688
+43174,41621
+43175,72776
+43176,44609
+43177,29606
+43178,60688
+43179,33277
+43180,51251
+43181,64196
+43182,29513
+43183,73179
+43184,69818
+43185,71676
+43186,21208
+43187,66696
+43188,77192
+43189,41228
+43190,81781
+43191,38569
+43192,42322
+43193,47503
+43194,37987
+43195,20743
+43196,20858
+43197,50442
+43198,21544
+43199,22878
+43200,45813
+43201,22878
+43202,77641
+43203,29579
+43204,30147
+43205,31183
+43206,32025
+43207,72157
+43208,37316
+43209,41399
+43210,46581
+43211,45813
+43212,49546
+43213,54831
+43214,69771
+43215,63103
+43216,60321
+43217,63701
+43218,8184
+43219,65441
+43220,52418
+43221,67608
+43222,68225
+43223,39676
+43224,69207
+43225,67951
+43226,72892
+43227,44013
+43228,74344
+43229,20159
+43230,22878
+43231,77101
+43232,80276
+43233,43193
+43234,47198
+43235,40423
+43236,63471
+43237,76909
+43238,43239
+43239,60630
+43240,56941
+43241,51039
+43242,54562
+43243,31115
+43244,79189
+43245,41650
+43246,80429
+43247,19130
+43248,43247
+43249,69860
+43250,75472
+43251,81734
+43252,81733
+43253,46490
+43254,70976
+43255,75793
+43256,27688
+43257,37898
+43258,31115
+43259,31115
+43260,31115
+43261,64831
+43262,50450
+43263,50565
+43264,51180
+43265,52645
+43266,40608
+43267,70629
+43268,44575
+43269,25727
+43270,71446
+43271,2492
+43272,17469
+43273,66103
+43274,61259
+43275,73837
+43276,23267
+43277,40340
+43278,73837
+43279,22128
+43280,30073
+43281,21270
+43282,51068
+43283,30153
+43284,30391
+43285,51665
+43286,67296
+43287,30153
+43288,46035
+43289,66493
+43290,70862
+43291,45813
+43292,40564
+43293,72142
+43294,71408
+43295,24007
+43296,26884
+43297,31853
+43298,28786
+43299,31853
+43300,39049
+43301,20760
+43302,60132
+43303,44704
+43304,66965
+43305,45813
+43306,45813
+43307,67290
+43308,27162
+43309,23536
+43310,70569
+43311,22901
+43312,81462
+43313,81462
+43314,21922
+43315,63106,39607
+43316,81462,41607
+43317,81462,52211
+43318,28965
+43319,39621
+43320,40063
+43321,28702
+43322,22955
+43323,29443
+43324,7157
+43325,7157
+43326,37328
+43327,23309
+43328,43247
+43329,35482
+43330,21950
+43331,47984
+43332,43744
+43333,31824
+43334,35676
+43335,69561
+43336,65774
+43337,62361
+43338,32718
+43339,25486
+43340,38044
+43341,43110
+43342,47338
+43343,35992
+43344,80626
+43345,52857
+43346,30557
+43347,25256
+43348,48862
+43349,45097
+43350,23622
+43351,23621
+43352,52084
+43353,58144
+43354,82167
+43355,35626
+43356,73837
+43357,43356
+43358,43356
+43359,25949
+43360,72917
+43361,71320
+43362,71516
+43363,43377
+43364,31616
+43365,31618
+43366,28124
+43367,33542
+43368,33539
+43369,32691
+43370,63399
+43371,20718
+43372,72384
+43373,48438,40021
+43374,32691
+43375,27781
+43376,52773
+43377,75086
+43378,81647
+43379,45813
+43380,39014
+43381,54562
+43382,77059
+43383,61776
+43384,30074
+43385,40489
+43386,64470
+43387,39379
+43388,30405
+43389,65956
+43390,38381
+43391,59302
+43392,29969
+43393,63942
+43394,79076
+43395,61064
+43396,61064
+43397,74392
+43398,40619
+43399,45570
+43400,74990
+43401,47944
+43402,79572
+43403,25949
+43404,25677
+43405,25677
+43406,20995
+43407,77641
+43408,33796
+43409,78179
+43410,25949
+43411,40489
+43412,67938
+43413,21135
+43414,45556
+43415,37120
+43416,72121,54871
+43417,40752
+43418,51395
+43419,52857
+43420,74772
+43421,45813
+43422,45813
+43423,32266
+43424,41096
+43425,70397
+43426,22790
+43427,70397
+43428,72226
+43429,60042
+43430,63790
+43431,33626
+43432,56419
+43433,27319
+43434,22050
+43435,53805,21304
+43436,69051
+43437,78528
+43438,53519
+43439,19419
+43440,61705
+43441,46451
+43442,23622
+43443,26788
+43444,70033
+43445,38814
+43446,58776
+43447,68233
+43448,81592
+43449,48126
+43450,59549
+43451,32715
+43452,63228
+43453,60534
+43454,30514
+43455,73451
+43456,72057
+43457,29281
+43458,45060
+43459,31809
+43460,30954
+43461,50784
+43462,51319
+43463,39578
+43464,42249
+43465,42249
+43466,40209
+43467,46818
+43468,46553
+43469,46553,32225
+43470,20354,43471
+43471,19953
+43472,34989
+43473,43517
+43474,43518
+43475,28202
+43476,25649
+43477,42360
+43478,58472
+43479,67675
+43480,20355
+43481,77404
+43482,20355
+43483,60191,21034
+43484,21703
+43485,79282
+43486,70397
+43487,63434
+43488,35130
+43489,25770
+43490,68852
+43491,70568
+43492,43491
+43493,43491
+43494,43491
+43495,55815
+43496,37041
+43497,48487
+43498,55263
+43499,20995
+43500,19944
+43501,19069
+43502,43509,20755
+43503,43509
+43504,41265
+43505,43509
+43506,43509
+43507,19935
+43508,44439
+43509,38385
+43510,20355
+43511,61906
+43512,58162
+43513,31808
+43514,19069
+43515,54061
+43516,31423
+43517,58158
+43518,74939
+43519,43520
+43520,27756
+43521,43520
+43522,21669
+43523,35359
+43524,55294
+43525,80132
+43526,32718
+43527,79432
+43528,54091
+43529,44704
+43530,36767
+43531,53548
+43532,39183
+43533,47948
+43534,48740
+43535,20905
+43536,25022
+43537,69704
+43538,19230
+43539,55373
+43540,49266
+43541,25018
+43542,23543
+43543,37789
+43544,42097
+43545,68355
+43546,31638
+43547,49728
+43548,49728
+43549,51467
+43550,62142
+43551,71301,46215
+43552,21474
+43553,62187
+43554,25518
+43555,45813
+43556,25518
+43557,28747
+43558,44013
+43559,45830
+43560,67644
+43561,23579
+43562,55584
+43563,54446
+43564,58595
+43565,45957
+43566,27363
+43567,22788
+43568,64905
+43569,33184
+43570,49136
+43571,37041
+43572,43364
+43573,38168
+43574,38569
+43575,60032
+43576,74402
+43577,22507
+43578,43577
+43579,34389
+43580,43585
+43581,59587
+43582,60762
+43583,43585
+43584,80146
+43585,59587
+43586,43577
+43587,69887
+43588,48894
+43589,37712
+43590,41625
+43591,48877
+43592,36927
+43593,72027
+43594,18969
+43595,67614
+43596,38601
+43597,34069
+43598,35534
+43599,31058
+43600,62547
+43601,80509
+43602,48756
+43603,56807
+43604,49844
+43605,52417
+43606,79541
+43607,81462
+43608,43603
+43609,39676
+43610,39750
+43611,40938
+43612,43611
+43613,77952
+43614,54561
+43615,33134
+43616,75086
+43617,61361
+43618,54361
+43619,72840
+43620,59105
+43621,32691
+43622,71493,70717
+43623,24783
+43624,41470
+43625,47432
+43626,49844
+43627,81161
+43628,40754
+43629,46149
+43630,19979
+43631,81161
+43632,37076
+43633,47433
+43634,26996
+43635,29731
+43636,21361
+43637,62029
+43638,36932
+43639,39676
+43640,39676
+43641,39925
+43642,33530
+43643,45813
+43644,44976
+43645,69386
+43646,31417
+43647,54879
+43648,54957
+43649,12336
+43650,69566
+43651,60400
+43652,61493
+43653,39676
+43654,51159
+43655,66240
+43656,67272
+43657,21361
+43658,63334
+43659,69728
+43660,27850
+43661,51395
+43662,76303
+43663,80429
+43664,80565
+43665,58291
+43666,81571
+43667,76662
+43668,81161
+43669,70033
+43670,44181
+43671,36694
+43672,81161
+43673,45813
+43674,35787
+43675,81161
+43676,40068
+43677,33644
+43678,70526
+43679,21959
+43680,71748
+43681,54553
+43682,49224
+43683,74367
+43684,45813
+43685,55951
+43686,58384
+43687,45362
+43688,22684,43693
+43689,22786,43693
+43690,29969
+43691,43693
+43692,32504
+43693,72435
+43694,43458,43693
+43695,51058
+43696,43701
+43697,62458
+43698,73805
+43699,81065
+43700,55373,43693
+43701,61395
+43702,61401
+43703,68230
+43704,78014
+43705,36007
+43706,37532
+43707,37832
+43708,46553
+43709,82092
+43710,80460
+43711,25046
+43712,41556
+43713,25059
+43714,34800
+43715,60042
+43716,81807
+43717,35390
+43718,32718
+43719,38601
+43720,22640
+43721,79328
+43722,19462
+43723,64142
+43724,55210
+43725,43766
+43726,28742
+43727,23891
+43728,44240,39363
+43729,76007
+43730,6654
+43731,43744
+43732,46417
+43733,63357
+43734,41287
+43735,60216
+43736,60598
+43737,75732
+43738,52279
+43739,44240,39363
+43740,35679
+43741,39363
+43742,80913,15858
+43743,73669
+43744,60216
+43745,38793
+43746,80524
+43747,48460
+43748,41609
+43749,56587
+43750,74887
+43751,25556
+43752,27536
+43753,27536
+43754,53982
+43755,62367
+43756,20877
+43757,23118
+43758,36267
+43759,58969
+43760,20755
+43761,51781
+43762,53109
+43763,33419
+43764,70033
+43765,72248
+43766,45813
+43767,33455
+43768,52121
+43769,61600
+43770,46270
+43771,26348
+43772,77101
+43773,43556
+43774,24807
+43775,60744
+43776,64897
+43777,54953
+43778,21568
+43779,31964
+43780,24722
+43781,44104
+43782,70033
+43783,45302
+43784,43756
+43785,35922
+43786,40967
+43787,78075
+43788,42368
+43789,65908
+43790,30891
+43791,56605
+43792,31795
+43793,80382
+43794,80383
+43795,37169
+43796,32791
+43797,30557
+43798,73207
+43799,41729
+43800,25434
+43801,79608
+43802,7219
+43803,35679
+43804,21710
+43805,29489
+43806,75548
+43807,25016
+43808,75020
+43809,61802
+43810,71310
+43811,43809
+43812,19655
+43813,25234
+43814,26298
+43815,34609
+43816,47830
+43817,57562
+43818,19376
+43819,68831
+43820,61795
+43821,31743
+43822,70033
+43823,61783
+43824,43820
+43825,62145
+43826,33639
+43827,78724
+43828,36434
+43829,58392
+43830,42225
+43831,53648
+43832,21946
+43833,31616
+43834,23021
+43835,67745
+43836,78755
+43837,62513
+43838,43740
+43839,23895
+43840,76664
+43841,43845
+43842,72959
+43843,33353
+43844,57066
+43845,27687
+43846,22428
+43847,76719
+43848,32535
+43849,11856
+43850,20727
+43851,57987
+43852,64156
+43853,64757
+43854,43865
+43855,28028
+43856,18731
+43857,37542
+43858,64757
+43859,53174
+43860,72839
+43861,68236
+43862,33068
+43863,32965
+43864,28522
+43865,62147
+43866,31563
+43867,21040
+43868,72065
+43869,43865
+43870,53624
+43871,57223
+43872,68236
+43873,30413
+43874,43870
+43875,29627
+43876,51473
+43877,31012
+43878,34199
+43879,22104
+43880,20760
+43881,33837
+43882,32672
+43883,19768
+43884,28456
+43885,50784
+43886,77992,21192
+43887,22414
+43888,28323
+43889,22058
+43890,71003
+43891,76065
+43892,68869
+43893,41022
+43894,54188
+43895,53959
+43896,42410
+43897,71639
+43898,39818
+43899,43891
+43900,45813
+43901,3841
+43902,54188
+43903,54188
+43904,54188
+43905,44013
+43906,20977,21060
+43907,45813
+43908,34740
+43909,68771
+43910,51558
+43911,29623
+43912,53607
+43913,51565
+43914,67271
+43915,65210
+43916,36029
+43917,59451
+43918,59452
+43919,59452
+43920,59452
+43921,77641
+43922,81482
+43923,73475
+43924,44697
+43925,45367
+43926,36690
+43927,36035
+43928,62914
+43929,49487
+43930,50424
+43931,38137
+43932,38135
+43933,55550
+43934,57909
+43935,60641
+43936,70725
+43937,74274
+43938,77160
+43939,77160
+43940,57585
+43941,43940
+43942,33765
+43943,9930
+43944,43950
+43945,38693
+43946,59876
+43947,38883
+43948,43950
+43949,61395
+43950,41126
+43951,43940
+43952,22186
+43953,72830
+43954,38723
+43955,39367
+43956,23395
+43957,73042
+43958,37750
+43959,57678
+43960,30519
+43961,65453
+43962,30325
+43963,31853
+43964,19757
+43965,66551
+43966,77444
+43967,20112
+43968,43964,19757
+43969,43967
+43970,65133
+43971,60216
+43972,43971
+43973,59725
+43974,74192
+43975,41252
+43976,31447
+43977,43889
+43978,51100
+43979,78160
+43980,79328
+43981,81181
+43982,37179
+43983,79608
+43984,23765
+43985,21390
+43986,39676
+43987,51395
+43988,49179
+43989,41738
+43990,61256
+43991,29502
+43992,29503
+43993,41738
+43994,27150
+43995,69943
+43996,43789
+43997,79738
+43998,59020
+43999,60715
+44000,21671
+44001,79738
+44002,71997
+44003,48541
+44004,44000
+44005,27459
+44006,71997
+44007,35480
+44008,20586
+44009,76981
+44010,25721
+44011,78594
+44012,31742
+44013,43907
+44014,43631
+44015,39676
+44016,78014
+44017,79493
+44018,58088
+44019,52120
+44020,41337
+44021,40962
+44022,70675
+44023,80356
+44024,21392
+44025,79493
+44026,52904
+44027,80540
+44028,40147
+44029,30153
+44030,58268
+44031,79852
+44032,77277,24257
+44033,34049
+44034,56832
+44035,23182
+44036,41444
+44037,28747
+44038,44042
+44039,49897
+44040,67939
+44041,37689
+44042,39578
+44043,63013
+44044,41632
+44045,34042
+44046,77045
+44047,18913
+44048,50117
+44049,66785
+44050,61066
+44051,33130
+44052,69246
+44053,45009
+44054,76229
+44055,76229
+44056,73412,53861
+44057,80237
+44058,62625
+44059,81462
+44060,62625
+44061,53624
+44062,64159
+44063,28536
+44064,36474
+44065,47662
+44066,31539
+44067,39824
+44068,48505
+44069,53339
+44070,42360
+44071,22158
+44072,39578
+44073,77377
+44074,43864
+44075,80440
+44076,37921
+44077,62962
+44078,62948
+44079,67957
+44080,49391
+44081,35558
+44082,64534
+44083,19062
+44084,18769
+44085,37042
+44086,64729
+44087,77147
+44088,40150
+44089,57594
+44090,63775
+44091,52777
+44092,59020
+44093,10944
+44094,70033
+44095,39466
+44096,66132
+44097,19054
+44098,22233
+44099,56413
+44100,56652
+44101,78531
+44102,15764
+44103,16022
+44104,20944
+44105,22230
+44106,23151
+44107,45869
+44108,25540
+44109,26465
+44110,26616
+44111,27563
+44112,28339
+44113,51468
+44114,44156
+44115,36707
+44116,43940
+44117,44116
+44118,44120
+44119,44120
+44120,41126
+44121,44116
+44122,58579
+44123,50439
+44124,44913
+44125,46573
+44126,49929
+44127,51862
+44128,71639
+44129,8184
+44130,64613
+44131,68632
+44132,70681
+44133,71182
+44134,45869
+44135,37279
+44136,52523
+44137,76664
+44138,42523
+44139,80389
+44140,30062
+44141,58088
+44142,50059
+44143,21980
+44144,57736
+44145,21544
+44146,62473
+44147,68160
+44148,53275
+44149,53275
+44150,80132
+44151,81996
+44152,30745
+44153,47671
+44154,21568
+44155,66046
+44156,61618
+44157,34784
+44158,43497
+44159,69005
+44160,29237
+44161,70515
+44162,77190
+44163,8773
+44164,58088
+44165,19947
+44166,19947
+44167,19979
+44168,21642
+44169,65291
+44170,30719
+44171,41572
+44172,41399
+44173,62159
+44174,36247
+44175,21777
+44176,78014
+44177,45813
+44178,43353
+44179,43603
+44180,45668
+44181,50136
+44182,60177
+44183,77329
+44184,50135
+44185,24518
+44186,53063
+44187,53560
+44188,44538
+44189,55730
+44190,57710
+44191,57810
+44192,65910
+44193,59657
+44194,71719
+44195,44214
+44196,59698
+44197,74772
+44198,66340
+44199,77114
+44200,71102
+44201,41877
+44202,30514
+44203,30514
+44204,69666
+44205,72323
+44206,75521
+44207,41273
+44208,68613
+44209,81536
+44210,23853
+44211,24882
+44212,50717
+44213,71398
+44214,21140
+44215,61508
+44216,44327
+44217,44328
+44218,44333
+44219,26298
+44220,22053
+44221,42246
+44222,80978
+44223,24897
+44224,81918
+44225,44160
+44226,68364
+44227,69566
+44228,47532
+44229,63176
+44230,54562
+44231,66953
+44232,79259
+44233,67821
+44234,67819
+44235,33479
+44236,47843
+44237,75564
+44238,41181
+44239,60216
+44240,19091
+44241,27501
+44242,72416
+44243,71302
+44244,66785
+44245,25202
+44246,48072
+44247,41980
+44248,75013
+44249,70033
+44250,82086
+44251,58168
+44252,29928
+44253,67479
+44254,19947
+44255,21473
+44256,24302
+44257,50856
+44258,41388
+44259,43672
+44260,49829
+44261,50934
+44262,53182
+44263,56457
+44264,61901
+44265,62021
+44266,70557
+44267,71148
+44268,71501
+44269,22776
+44270,81176
+44271,36264
+44272,24504
+44273,46760,64412
+44274,64425
+44275,43756
+44276,41226
+44277,37430
+44278,31861
+44279,61335
+44280,45129
+44281,31861
+44282,77327
+44283,71648
+44284,56348
+44285,20057
+44286,30989
+44287,35944
+44288,72426
+44289,12340
+44290,20469
+44291,41444
+44292,44035
+44293,66132
+44294,39088
+44295,35414
+44296,53054
+44297,34362
+44298,33171
+44299,52510
+44300,22058
+44301,56832
+44302,41601
+44303,80753
+44304,73412,69573
+44305,41156
+44306,60216
+44307,56074
+44308,70629
+44309,48149
+44310,41601
+44311,57346
+44312,22688
+44313,28877
+44314,59893,21006
+44315,55815
+44316,25785
+44317,43893
+44318,54469
+44319,67821
+44320,46715
+44321,44538
+44322,81066
+44323,26122
+44324,79009
+44325,60216
+44326,43893
+44327,53959
+44328,31590
+44329,67445
+44330,34437
+44331,69879
+44332,51677
+44333,53203
+44334,1923
+44335,67280
+44336,36640
+44337,39460
+44338,78544
+44339,39049
+44340,37166
+44341,21477
+44342,79234
+44343,45813
+44344,59333
+44345,56582
+44346,22128
+44347,34661
+44348,25115
+44349,34924
+44350,41252
+44351,77147
+44352,69408
+44353,56323
+44354,40068
+44355,1544
+44356,39049
+44357,50439
+44358,74275
+44359,20577
+44360,79086
+44361,38380
+44362,79086
+44363,56474
+44364,47830
+44365,13561
+44366,21671
+44367,78449
+44368,28080
+44369,78755
+44370,54430
+44371,60015
+44372,74537
+44373,31444
+44374,19840
+44375,35309
+44376,22112
+44377,22721
+44378,23323,58334
+44379,23694
+44380,23748
+44381,26796
+44382,49468
+44383,44396
+44384,45813
+44385,30884
+44386,42142
+44387,19520
+44388,44396
+44389,41182
+44390,23760
+44391,40702
+44392,43362
+44393,43362
+44394,79608
+44395,54732
+44396,29974
+44397,26289
+44398,60467
+44399,40708
+44400,64873
+44401,65847
+44402,66901
+44403,67001
+44404,67268
+44405,53787
+44406,30514
+44407,72680
+44408,72959
+44409,66260
+44410,77471
+44411,74806
+44412,80257
+44413,64527
+44414,75385
+44415,70515
+44416,61646
+44417,28344,23764
+44418,79270
+44419,78560
+44420,46171
+44421,41014
+44422,53227
+44423,39424
+44424,81717
+44425,61397
+44426,47442
+44427,79608
+44428,78100
+44429,36432
+44430,77277
+44431,80583
+44432,70033
+44433,60744
+44434,42204
+44435,72066
+44436,62659
+44437,18840
+44438,69330
+44439,78697
+44440,19171,38545
+44441,27381
+44442,63576
+44443,48445
+44444,37900
+44445,53703
+44446,63861
+44447,63602
+44448,67703
+44449,68551
+44450,39312
+44451,19228
+44452,29653
+44453,34149
+44454,71439
+44455,81162
+44456,42096
+44457,24961
+44458,61302
+44459,41180
+44460,42181
+44461,63126
+44462,58776
+44463,58779
+44464,77974
+44465,68677
+44466,33184
+44467,71961
+44468,47351
+44469,79009
+44470,47487
+44471,34908
+44472,57333
+44473,79270
+44474,58162
+44475,63434
+44476,65732
+44477,48030
+44478,64831
+44479,73323
+44480,50459
+44481,68519
+44482,48534
+44483,66010
+44484,62087
+44485,45226
+44486,39517
+44487,37181
+44488,30989
+44489,51642
+44490,78785
+44491,60032
+44492,56832
+44493,60216
+44494,55952
+44495,35322
+44496,41904
+44497,81482
+44498,56180
+44499,77641
+44500,42049
+44501,21013
+44502,51818
+44503,63873
+44504,25122,58155
+44505,41542
+44506,50919
+44507,44609
+44508,12802
+44509,21953
+44510,30382
+44511,21953
+44512,59587
+44513,23310
+44514,34285
+44515,51531
+44516,54440
+44517,62146
+44518,51532
+44519,62142
+44520,34924
+44521,27408
+44522,25046
+44523,21914
+44524,44792
+44525,80185
+44526,45420
+44527,20655
+44528,36840
+44529,28168
+44530,66953
+44531,71493
+44532,37179
+44533,41743
+44534,41743
+44535,74067
+44536,33644
+44537,70033
+44538,12335
+44539,66353
+44540,30440
+44541,75057
+44542,80184
+44543,41107
+44544,36383
+44545,57967
+44546,38392
+44547,60216
+44548,42094
+44549,38392
+44550,33488
+44551,79732
+44552,38533
+44553,44551
+44554,81643
+44555,46782
+44556,23664
+44557,50565
+44558,54044
+44559,52920
+44560,75018
+44561,50701
+44562,73838
+44563,81635
+44564,66985
+44565,81578
+44566,45017
+44567,54757
+44568,33158
+44569,41619
+44570,51473
+44571,67273
+44572,71332
+44573,16297
+44574,5201
+44575,44914
+44576,22230
+44577,21447
+44578,48413
+44579,31245
+44580,31097
+44581,44579
+44582,58959
+44583,60744
+44584,24873
+44585,30300
+44586,36049
+44587,43603
+44588,70033
+44589,62367
+44590,44586
+44591,28095
+44592,69033
+44593,73752
+44594,60665
+44595,64921
+44596,55768
+44597,62982
+44598,43776
+44599,25113
+44600,28665
+44601,35637
+44602,26120
+44603,50456
+44604,79076
+44605,74660
+44606,65509
+44607,36498
+44608,36500
+44609,38992
+44610,50123
+44611,44609
+44612,28874
+44613,44609
+44614,56180
+44615,77641
+44616,71719
+44617,71446
+44618,79259
+44619,47786
+44620,25150
+44621,27167
+44622,43979
+44623,50091
+44624,54825
+44625,61251
+44626,45813
+44627,81482
+44628,80512
+44629,35467
+44630,41444
+44631,27781
+44632,65638
+44633,34154
+44634,37710
+44635,61357
+44636,35392
+44637,57897
+44638,22832
+44639,54432
+44640,71046
+44641,51120
+44642,25046
+44643,39928
+44644,69852
+44645,40633
+44646,26302
+44647,19201
+44648,69945
+44649,55668
+44650,26072
+44651,24710
+44652,80515
+44653,69216
+44654,22684
+44655,38836
+44656,71099
+44657,71100
+44658,70189
+44659,71039
+44660,80006
+44661,33646
+44662,71686
+44663,68364
+44664,73703
+44665,50701
+44666,65763
+44667,57627
+44668,61335,25620
+44669,60744
+44670,81193
+44671,37928,37996
+44672,28546
+44673,49013
+44674,39504
+44675,39505
+44676,44609
+44677,77641
+44678,77641
+44679,81626
+44680,45009
+44681,54729
+44682,28547
+44683,41503
+44684,31520
+44685,25426
+44686,52904
+44687,25620
+44688,68644
+44689,36499
+44690,19292
+44691,69818
+44692,72444
+44693,53757
+44694,22035
+44695,22032
+44696,72435
+44697,38699
+44698,72421
+44699,60448
+44700,35922
+44701,72111
+44702,61252
+44703,42539
+44704,77641
+44705,82003
+44706,78188
+44707,61792
+44708,71996
+44709,53716
+44710,18740
+44711,81703
+44712,65106
+44713,42116
+44714,59320
+44715,71319
+44716,72791
+44717,61260
+44718,74824
+44719,54562,26932
+44720,60216
+44721,26757
+44722,52417
+44723,67054
+44724,39210
+44725,67822
+44726,30958
+44727,41877
+44728,67049
+44729,72698
+44730,73837
+44731,33793
+44732,71311
+44733,29548
+44734,81770
+44735,36670
+44736,28425
+44737,44474
+44738,22149
+44739,22149
+44740,33486
+44741,33485
+44742,40365
+44743,38043
+44744,44743
+44745,72396
+44746,19367
+44747,62456
+44748,69127
+44749,34985
+44750,38381
+44751,46782
+44752,76981
+44753,46599
+44754,67479
+44755,78785
+44756,81781
+44757,46599
+44758,77641
+44759,43701
+44760,63191
+44761,39513
+44762,45202
+44763,27688
+44764,68005
+44765,50104
+44766,40292
+44767,41980
+44768,37527
+44769,58226
+44770,72416
+44771,72416
+44772,54082
+44773,45035
+44774,57678
+44775,41729
+44776,24319
+44777,49155
+44778,35557
+44779,23080
+44780,23079
+44781,24236
+44782,24237
+44783,81703
+44784,51701
+44785,42225
+44786,61621
+44787,62555
+44788,57333
+44789,44240
+44790,47317
+44791,73481
+44792,25104
+44793,63064
+44794,61261
+44795,39957
+44796,70987
+44797,38642
+44798,27562
+44799,38168
+44800,30487
+44801,30495
+44802,36872
+44803,40975
+44804,36496
+44805,69782
+44806,29819
+44807,64092
+44808,76877
+44809,44822
+44810,44641
+44811,75284
+44812,26166
+44813,39049
+44814,44816
+44815,33504
+44816,44792
+44817,32691
+44818,76877
+44819,21218
+44820,21218
+44821,31245
+44822,51473
+44823,25495
+44824,41413
+44825,56472
+44826,22149
+44827,60870
+44828,23881
+44829,35682
+44830,35154
+44831,72264
+44832,52406
+44833,44798
+44834,79110
+44835,33852
+44836,81161
+44837,46444
+44838,33116
+44839,72575
+44840,70120
+44841,75379
+44842,81179
+44843,81500
+44844,60830,60818
+44845,8296
+44846,60816
+44847,40292
+44848,41980
+44849,11480,67277
+44850,11480,35917
+44851,53628
+44852,60800
+44853,44514
+44854,55951
+44855,15687
+44856,4553
+44857,59308
+44858,33729
+44859,36452
+44860,44861
+44861,54811
+44862,76664
+44863,31372
+44864,46274
+44865,76672
+44866,48495
+44867,62128
+44868,51319
+44869,62144
+44870,60394
+44871,21477
+44872,79963
+44873,79026
+44874,54753
+44875,24209
+44876,70079
+44877,33036
+44878,30300
+44879,30300
+44880,30300
+44881,35822
+44882,45271
+44883,49997
+44884,76664
+44885,51523
+44886,56375
+44887,57066
+44888,58760
+44889,22414
+44890,66122
+44891,70504
+44892,71499
+44893,58760
+44894,77273,54441
+44895,77262
+44896,66260
+44897,67335
+44898,22542
+44899,75665
+44900,30300
+44901,81713
+44902,59605
+44903,37920
+44904,37921
+44905,40537
+44906,40538
+44907,20755
+44908,67675
+44909,71374,54562
+44910,44911
+44911,25837
+44912,26298
+44913,66953
+44914,26298
+44915,36127
+44916,59411
+44917,62494
+44918,28600
+44919,33186
+44920,41917
+44921,34452
+44922,57332
+44923,63570
+44924,63584
+44925,32196
+44926,25022
+44927,22053
+44928,24726
+44929,24726
+44930,44937
+44931,58158
+44932,20045
+44933,44437
+44934,45813
+44935,58158,61828
+44936,52762
+44937,21415
+44938,79211
+44939,48215
+44940,77011
+44941,45403
+44942,81277
+44943,66985
+44944,64519
+44945,19231
+44946,33515
+44947,35557
+44948,50860
+44949,67822
+44950,36668
+44951,30094
+44952,35096
+44953,35097
+44954,44470
+44955,27649
+44956,67822
+44957,26409
+44958,72701
+44959,70033
+44960,30900
+44961,72435
+44962,73736
+44963,45009
+44964,73736
+44965,24874
+44966,62439
+44967,37623
+44968,39846
+44969,45362
+44970,69564
+44971,51902
+44972,76839
+44973,19176
+44974,23643
+44975,23294
+44976,66862
+44977,75806
+44978,45019
+44979,67577
+44980,70104
+44981,21239
+44982,70108
+44983,18721
+44984,61679
+44985,41171
+44986,30391
+44987,19755
+44988,38983
+44989,62100
+44990,42225
+44991,37169
+44992,24880,36669
+44993,25687
+44994,26936
+44995,28747
+44996,32776
+44997,36482
+44998,39676
+44999,54694
+45000,51340
+45001,44245
+45002,52156
+45003,22699
+45004,50635
+45005,63775
+45006,63838
+45007,69970,45009
+45008,51120
+45009,76981
+45010,77180
+45011,45021
+45012,22786
+45013,32530
+45014,32520
+45015,41444
+45016,28980
+45017,65478
+45018,25522
+45019,51523
+45020,27408
+45021,80761
+45022,21239
+45023,69458
+45024,22004
+45025,31618
+45026,70987
+45027,21225
+45028,19462
+45029,60216
+45030,77287,21774
+45031,81602
+45032,70633
+45033,31774
+45034,60744
+45035,21225
+45036,23021
+45037,19655
+45038,40336
+45039,53056
+45040,77147
+45041,32269
+45042,52094
+45043,52679
+45044,74038
+45045,41054
+45046,28639
+45047,20823
+45048,65775
+45049,74488
+45050,44528
+45051,68005
+45052,71398
+45053,75668
+45054,19091
+45055,23622
+45056,23021
+45057,19144
+45058,68632
+45059,44697
+45060,29928
+45061,80753
+45062,31743
+45063,81788
+45064,81786
+45065,65871
+45066,40360
+45067,44697
+45068,62656
+45069,57408
+45070,66502
+45071,43399
+45072,43398
+45073,19867
+45074,81626
+45075,74488
+45076,38667
+45077,34199
+45078,28398
+45079,53669
+45080,80044
+45081,38673
+45082,66985
+45083,70646
+45084,74601
+45085,35490
+45086,30297
+45087,69448
+45088,52071
+45089,27688
+45090,17785
+45091,18951
+45092,58166
+45093,31241
+45094,72416
+45095,30566
+45096,38545
+45097,39578
+45098,37689
+45099,46767
+45100,63434
+45101,74222
+45102,34163
+45103,58068
+45104,77075
+45105,22116
+45106,40150
+45107,54784
+45108,20828
+45109,47944
+45110,65555
+45111,59580
+45112,62085
+45113,36951
+45114,67515
+45115,25153
+45116,32642
+45117,71786
+45118,27167
+45119,54729
+45120,29344,19936
+45121,53516
+45122,29833
+45123,33422
+45124,52613
+45125,56065,31759
+45126,39676
+45127,45680
+45128,50678
+45129,50678
+45130,62148
+45131,56585
+45132,74535
+45133,66554
+45134,26409
+45135,67201
+45136,67362
+45137,67957
+45138,19483
+45139,69958
+45140,71489
+45141,73081
+45142,76512
+45143,62985
+45144,35156
+45145,76631
+45146,80257
+45147,25306
+45148,74735
+45149,22152
+45150,23232
+45151,74939
+45152,28535
+45153,56179
+45154,44013
+45155,31489
+45156,31506
+45157,64142
+45158,35158
+45159,54728
+45160,68854
+45161,52675
+45162,24373
+45163,27405
+45164,80515
+45165,31039
+45166,48423
+45167,38273
+45168,69860
+45169,81482
+45170,51020
+45171,25973
+45172,33918
+45173,80061
+45174,27093
+45175,51803
+45176,44170
+45177,44171
+45178,29963
+45179,57858
+45180,81193
+45181,34830
+45182,78816
+45183,76935
+45184,76627
+45185,53600
+45186,60128
+45187,63197
+45188,41484
+45189,19118
+45190,48408
+45191,45199
+45192,70427
+45193,55768
+45194,53688
+45195,71697
+45196,58099
+45197,19732
+45198,30968
+45199,55734
+45200,74488
+45201,72701
+45202,46599
+45203,46620
+45204,20905
+45205,74488
+45206,29194
+45207,36951
+45208,55768
+45209,71968
+45210,27215
+45211,66985
+45212,51962
+45213,70629
+45214,29670
+45215,55768
+45216,45217
+45217,78146
+45218,41732
+45219,36932
+45220,68326
+45221,46760
+45222,45302
+45223,45302
+45224,33319
+45225,67093
+45226,78758
+45227,65309
+45228,39676
+45229,39676
+45230,20905
+45231,31477
+45232,68679
+45233,42348
+45234,19742
+45235,77930
+45236,41805
+45237,55451
+45238,39379
+45239,39373
+45240,26668
+45241,21373
+45242,57682
+45243,35557
+45244,45354
+45245,66132
+45246,71409
+45247,79189,51833
+45248,27964
+45249,28780
+45250,39928
+45251,33464
+45252,70392
+45253,72065
+45254,55347
+45255,47727
+45256,34293
+45257,62087
+45258,55720
+45259,41843
+45260,45392
+45261,68355
+45262,22903
+45263,22699
+45264,55486
+45265,59375
+45266,69470
+45267,27405
+45268,27417
+45269,30542
+45270,61136
+45271,22438
+45272,21922
+45273,55668
+45274,82050
+45275,38013
+45276,37686
+45277,52694
+45278,57554
+45279,34881
+45280,60216
+45281,31618
+45282,82033
+45283,52773,53959
+45284,60870
+45285,28425
+45286,31702
+45287,77520
+45288,72791
+45289,25115
+45290,46089
+45291,21475
+45292,54562
+45293,61261
+45294,39406
+45295,33292
+45296,29917
+45297,69682
+45298,35792
+45299,56650
+45300,22984
+45301,44354
+45302,24331
+45303,54400
+45304,81161
+45305,57035
+45306,58579
+45307,81161
+45308,61789
+45309,55314
+45310,68613
+45311,45813
+45312,45813
+45313,46268
+45314,66985
+45315,49997
+45316,70033
+45317,40927
+45318,39676
+45319,22775
+45320,20071
+45321,45334
+45322,44032
+45323,41213
+45324,45233
+45325,68679
+45326,51956
+45327,39373
+45328,63791
+45329,18969
+45330,50104
+45331,23375
+45332,64435
+45333,41444
+45334,72706
+45335,81349
+45336,57407
+45337,33811
+45338,48445
+45339,33812
+45340,19532
+45341,81482
+45342,26118
+45343,77641
+45344,36129
+45345,37181
+45346,57249
+45347,79053
+45348,29943
+45349,51068
+45350,61659
+45351,51523
+45352,62757
+45353,47987
+45354,36612
+45355,57333
+45356,40908
+45357,77008
+45358,41249
+45359,73837
+45360,73837
+45361,57433
+45362,73736
+45363,76865
+45364,63218
+45365,36044
+45366,38920
+45367,50701
+45368,81578
+45369,24726
+45370,26766
+45371,26767
+45372,30322
+45373,32372
+45374,42225
+45375,32743
+45376,42290
+45377,42337
+45378,51091
+45379,41053
+45380,52179
+45381,57223
+45382,45367
+45383,65931
+45384,65590
+45385,68543
+45386,69860
+45387,71103
+45388,19051
+45389,22901
+45390,58948
+45391,67972,51833
+45392,29928
+45393,23536
+45394,45239
+45395,46171
+45396,49409
+45397,25889
+45398,23536
+45399,55186
+45400,31618
+45401,25104
+45402,46245
+45403,72701
+45404,65234
+45405,67979
+45406,51472
+45407,51316
+45408,45406
+45409,60076
+45410,38883
+45411,51902
+45412,50701
+45413,62929
+45414,45433
+45415,62929
+45416,45433
+45417,45680
+45418,25564
+45419,54440
+45420,54418
+45421,57562
+45422,72714
+45423,80387
+45424,66123
+45425,33464
+45426,46011
+45427,66954
+45428,80164
+45429,67565
+45430,49643
+45431,75682
+45432,55348
+45433,62145
+45434,62145
+45435,60534
+45436,69941
+45437,69852
+45438,38673
+45439,47908
+45440,22901
+45441,19144
+45442,74488
+45443,73636
+45444,23763
+45445,63194
+45446,81193
+45447,81578
+45448,31640
+45449,25087
+45450,31245
+45451,80644
+45452,71317
+45453,41005
+45454,45337
+45455,48445
+45456,45455
+45457,63139
+45458,63144
+45459,61144
+45460,27562
+45461,63494
+45462,81018
+45463,60011
+45464,69325
+45465,63061
+45466,57982
+45467,54862,38933
+45468,37478
+45469,19108
+45470,81635
+45471,57573
+45472,35425
+45473,38562
+45474,67275
+45475,55373
+45476,61213
+45477,79189
+45478,61402
+45479,48741
+45480,32497
+45481,48590
+45482,35679
+45483,81488
+45484,63775
+45485,75216
+45486,22107,45491
+45487,27519
+45488,74748
+45489,74749
+45490,27555
+45491,45490,39150
+45492,74939
+45493,57934
+45494,68614
+45495,47650
+45496,79095
+45497,41105
+45498,28649
+45499,34272
+45500,74939
+45501,66010
+45502,21475
+45503,36868
+45504,57559
+45505,67254
+45506,73412
+45507,70417
+45508,65579
+45509,45813
+45510,81100
+45511,81161
+45512,53066
+45513,78537
+45514,61251
+45515,80831
+45516,71280
+45517,52189,30964
+45518,47434
+45519,81482
+45520,64403
+45521,37884
+45522,75740
+45523,37690
+45524,54757
+45525,60604
+45526,31873
+45527,37905
+45528,34924
+45529,45560
+45530,40489
+45531,37382
+45532,51367
+45533,50527
+45534,45521
+45535,45521
+45536,50527
+45537,50527
+45538,45521
+45539,50527
+45540,50527
+45541,21200
+45542,23537
+45543,63424
+45544,31278,70461
+45545,80434
+45546,34924
+45547,70033
+45548,23175
+45549,21959
+45550,21959
+45551,62473
+45552,79608
+45553,56937
+45554,45547
+45555,30467
+45556,75742
+45557,31039
+45558,45546
+45559,78993
+45560,30368
+45561,45679
+45562,55494
+45563,66676
+45564,66674
+45565,76429
+45566,71937
+45567,81643
+45568,23021
+45569,20745
+45570,19837
+45571,67498
+45572,80612
+45573,19231
+45574,28593
+45575,32775
+45576,47673
+45577,81601
+45578,54082,20120
+45579,66787
+45580,54562
+45581,54882
+45582,53805
+45583,25598
+45584,81750
+45585,63017
+45586,68211
+45587,51065
+45588,67467
+45589,57372
+45590,77976
+45591,25796
+45592,21480
+45593,54188
+45594,36795,30438
+45595,54181
+45596,54183
+45597,39638
+45598,68832
+45599,38522
+45600,24211
+45601,48801
+45602,53072
+45603,45813
+45604,45813
+45605,45813
+45606,18915
+45607,27606
+45608,42201
+45609,79640
+45610,48321
+45611,37076
+45612,26827
+45613,72046
+45614,42204
+45615,66114
+45616,38427
+45617,38430
+45618,69148
+45619,50565
+45620,47723
+45621,37805
+45622,70569
+45623,37805
+45624,59306
+45625,25457
+45626,25256
+45627,45572
+45628,43897
+45629,81670
+45630,61792
+45631,32591,82056
+45632,35254
+45633,65133
+45634,45633
+45635,45633
+45636,45633
+45637,45633
+45638,63316
+45639,48219
+45640,66766
+45641,70033
+45642,23331
+45643,45570
+45644,59115
+45645,54043
+45646,21200
+45647,81703
+45648,53624
+45649,25495
+45650,40752
+45651,81161
+45652,65581
+45653,76162
+45654,56811
+45655,77961
+45656,19195
+45657,19870
+45658,28780,56806
+45659,69235
+45660,33455
+45661,20698
+45662,77972
+45663,54709
+45664,65581
+45665,30557
+45666,31478
+45667,67608
+45668,61705
+45669,51395
+45670,58088
+45671,58088
+45672,7467
+45673,50459
+45674,77976
+45675,77976
+45676,44240
+45677,73117
+45678,50705
+45679,21568
+45680,45392
+45681,58088
+45682,58088
+45683,81681
+45684,48111
+45685,53163
+45686,69281
+45687,16408
+45688,78996
+45689,70987
+45690,34620
+45691,34659
+45692,62447
+45693,72482
+45694,39260
+45695,37165
+45696,79009
+45697,19669
+45698,21411
+45699,20683
+45700,79888
+45701,53717
+45702,48894
+45703,74807
+45704,34276
+45705,30498
+45706,35626
+45707,35626
+45708,53624,28288
+45709,64846
+45710,33675
+45711,45717
+45712,71996
+45713,53716
+45714,48743
+45715,73129
+45716,58162
+45717,74939
+45718,60786
+45719,79743
+45720,58158
+45721,79743
+45722,68374
+45723,19811
+45724,54095
+45725,54562
+45726,29067
+45727,59169
+45728,59126
+45729,45029
+45730,48318
+45731,73981
+45732,43104
+45733,56492
+45734,79282
+45735,51468
+45736,61264
+45737,81482
+45738,31417
+45739,61705
+45740,69408
+45741,59549
+45742,35017
+45743,60621
+45744,45755
+45745,74939
+45746,24823
+45747,74939
+45748,58158
+45749,52469
+45750,20635
+45751,24823,69413
+45752,45751
+45753,45751
+45754,70091
+45755,31423
+45756,74939
+45757,33650
+45758,79658
+45759,20745
+45760,73804,24700
+45761,74939
+45762,79282
+45763,57934
+45764,60786
+45765,74939
+45766,73449
+45767,74567
+45768,31391
+45769,61253
+45770,45813
+45771,45813
+45772,37635
+45773,69408
+45774,28890
+45775,24306
+45776,39606
+45777,28889
+45778,41877
+45779,59377
+45780,45813
+45781,33997
+45782,66377
+45783,44802
+45784,66962
+45785,48004
+45786,20763
+45787,61906,20990
+45788,21703
+45789,30541
+45790,36710
+45791,51856
+45792,75264
+45793,79282
+45794,51790
+45795,45813
+45796,48084,51786
+45797,79657
+45798,37986
+45799,79657
+45800,79657
+45801,45796
+45802,65520
+45803,42481
+45804,27497
+45805,18740
+45806,77216
+45807,61866
+45808,54142
+45809,54047
+45810,48306
+45811,37622
+45812,40564
+45813,79211
+45814,45813
+45815,22384
+45816,42181
+45817,45813
+45818,32713
+45819,75518
+45820,32336
+45821,45813
+45822,53717
+45823,20232
+45824,76160
+45825,30391
+45826,28774
+45827,20743
+45828,20751
+45829,20751
+45830,46125
+45831,51894
+45832,62703
+45833,63316
+45834,60450
+45835,22019
+45836,58162
+45837,63314
+45838,62694
+45839,31638
+45840,56896
+45841,58381
+45842,62454
+45843,73015
+45844,24377
+45845,24354
+45846,76138
+45847,52021
+45848,34108
+45849,76441
+45850,36868
+45851,67353
+45852,67353
+45853,50701
+45854,55951
+45855,28593
+45856,19393
+45857,81705
+45858,32491
+45859,61630
+45860,64244
+45861,38091
+45862,19176
+45863,57963,45125
+45864,36603
+45865,36604
+45866,81462
+45867,28593
+45868,32497
+45869,79953
+45870,66950
+45871,79658
+45872,48084
+45873,20763
+45874,45872
+45875,45873
+45876,45875
+45877,45875
+45878,37762
+45879,45880
+45880,45873
+45881,45872
+45882,82163
+45883,82164
+45884,76210
+45885,67703
+45886,29986,41014
+45887,44603
+45888,67594
+45889,39049
+45890,34771
+45891,64831
+45892,35159
+45893,47902
+45894,59604
+45895,75157
+45896,31058
+45897,29882
+45898,24314
+45899,64520
+45900,56954
+45901,43880
+45902,35712
+45903,54095
+45904,81578
+45905,20978
+45906,19672
+45907,58166
+45908,31241
+45909,48318
+45910,35525
+45911,60216
+45912,69439
+45913,75788
+45914,55090
+45915,49155
+45916,58166
+45917,72959
+45918,82186
+45919,51068
+45920,82095
+45921,67270
+45922,50117
+45923,72084
+45924,57242
+45925,20973
+45926,35188
+45927,53473
+45928,62152
+45929,61866
+45930,72890
+45931,61871
+45932,79419
+45933,54142,71567
+45934,27488
+45935,20743
+45936,38400
+45937,55121
+45938,65946
+45939,60737
+45940,45851
+45941,21396
+45942,25755
+45943,77085
+45944,36123
+45945,66217
+45946,52857
+45947,74939,65509
+45948,70033
+45949,38287
+45950,81482
+45951,57249
+45952,37181
+45953,66020
+45954,47974
+45955,72362,77509
+45956,62991
+45957,20759
+45958,25104
+45959,28954
+45960,21474
+45961,78449
+45962,45964
+45963,62991
+45964,77045
+45965,47673
+45966,29653
+45967,53941
+45968,33887
+45969,69235
+45970,58168
+45971,45974
+45972,76129
+45973,81786
+45974,58262
+45975,19808
+45976,37334
+45977,37334
+45978,34362
+45979,77045
+45980,21760
+45981,27215
+45982,24961
+45983,75700
+45984,51630
+45985,43168
+45986,33623
+45987,41247
+45988,21279
+45989,64533
+45990,61709
+45991,56803
+45992,47673
+45993,40020
+45994,35130
+45995,77185
+45996,76984
+45997,51778
+45998,35130
+45999,45042
+46000,80325
+46001,20218
+46002,23537
+46003,27555
+46004,25727
+46005,30451
+46006,30588
+46007,50704
+46008,35342
+46009,21475
+46010,38836,80514
+46011,71700
+46012,40053
+46013,64513
+46014,42387
+46015,73018
+46016,22152
+46017,39846
+46018,49427
+46019,61075
+46020,59308
+46021,22269
+46022,73018
+46023,42076
+46024,25113
+46025,68677
+46026,70214
+46027,73018
+46028,35291
+46029,35293
+46030,75613
+46031,76546
+46032,76630
+46033,81193
+46034,76590
+46035,54813
+46036,43364
+46037,32929
+46038,35866
+46039,28851
+46040,48474
+46041,28438
+46042,63063
+46043,76062
+46044,37199
+46045,62936
+46046,19054
+46047,46264
+46048,32929
+46049,66766
+46050,56164
+46051,65458
+46052,34838
+46053,51318
+46054,32246
+46055,53178
+46056,34362
+46057,45632
+46058,46059
+46059,66727
+46060,29540
+46061,62810
+46062,66766
+46063,77523
+46064,45430
+46065,33486
+46066,32926
+46067,80009
+46068,59775
+46069,41995
+46070,56164
+46071,55894
+46072,67381
+46073,32462
+46074,67262
+46075,70914
+46076,59700
+46077,45035
+46078,61646
+46079,40352
+46080,79874
+46081,44449
+46082,65309
+46083,46084
+46084,51408
+46085,56492
+46086,20749
+46087,48590
+46088,33500
+46089,25115
+46090,35157
+46091,57418
+46092,19171
+46093,69531
+46094,78594
+46095,29458
+46096,49298
+46097,74990
+46098,42344
+46099,38213
+46100,47944
+46101,74220
+46102,38913
+46103,25115
+46104,22792
+46105,41729
+46106,82063
+46107,25359
+46108,63426
+46109,61592
+46110,66939
+46111,71353
+46112,76597
+46113,25256
+46114,40514
+46115,51468
+46116,51468
+46117,20286
+46118,65531
+46119,56492
+46120,72712
+46121,38529
+46122,37712
+46123,19171
+46124,48386
+46125,50117
+46126,37712
+46127,37712
+46128,41546
+46129,61155
+46130,44819
+46131,61599
+46132,56832
+46133,30891
+46134,38053
+46135,20353
+46136,53717
+46137,45388
+46138,38366
+46139,52546
+46140,24823
+46141,58161
+46142,29623
+46143,23023
+46144,47835
+46145,20575
+46146,54264
+46147,70397
+46148,68230
+46149,38227
+46150,46163
+46151,51566
+46152,62704
+46153,68237
+46154,65017
+46155,70234
+46156,47273
+46157,51708
+46158,81787
+46159,31677
+46160,59468
+46161,30267
+46162,46901
+46163,65202
+46164,18869
+46165,51059
+46166,35663
+46167,36137
+46168,55662
+46169,49296
+46170,39511
+46171,77147
+46172,74132
+46173,51677
+46174,30391
+46175,51677
+46176,75566
+46177,31444
+46178,49997
+46179,42003
+46180,59431
+46181,62187
+46182,64619
+46183,55497
+46184,55625
+46185,73472
+46186,67988
+46187,57681
+46188,45813
+46189,70033
+46190,53227
+46191,74067
+46192,61266
+46193,61266
+46194,45813
+46195,81176
+46196,42049
+46197,37169
+46198,69653
+46199,47503
+46200,70675
+46201,82057
+46202,59775
+46203,39210
+46204,61415
+46205,62656
+46206,34949
+46207,20289
+46208,55984
+46209,75730
+46210,27075
+46211,49299
+46212,29805
+46213,30009
+46214,50742
+46215,22032,61395
+46216,68677
+46217,47344
+46218,73220
+46219,75566
+46220,25574
+46221,50117
+46222,68285
+46223,76981
+46224,45035
+46225,49291
+46226,50231
+46227,69004
+46228,74826
+46229,70688
+46230,22671
+46231,20745
+46232,79608
+46233,37179
+46234,37179
+46235,41743
+46236,74152
+46237,51947
+46238,66509
+46239,71500
+46240,81735
+46241,50737
+46242,30514
+46243,2492
+46244,23164
+46245,51298
+46246,57945
+46247,31740
+46248,73815
+46249,28168
+46250,51440
+46251,58582
+46252,46256
+46253,27339
+46254,49113
+46255,30937
+46256,34924
+46257,47744
+46258,19805
+46259,59849
+46260,56362
+46261,23080
+46262,74824
+46263,57573
+46264,76229
+46265,34280
+46266,71837
+46267,57901
+46268,57897
+46269,61405
+46270,56163
+46271,77045
+46272,21905
+46273,61402
+46274,33928
+46275,68677
+46276,64142
+46277,76146
+46278,53694
+46279,67957
+46280,28093
+46281,79076
+46282,37726
+46283,31138
+46284,70364
+46285,20690
+46286,81129
+46287,39676
+46288,39676
+46289,52857
+46290,57288
+46291,57289
+46292,54082
+46293,34827
+46294,27729
+46295,60534
+46296,58016
+46297,48318
+46298,54095
+46299,81578
+46300,69027
+46301,61246
+46302,23855
+46303,69599
+46304,3701
+46305,67463
+46306,67763
+46307,67459
+46308,77045
+46309,80257
+46310,67821
+46311,38042
+46312,23763
+46313,51894
+46314,48400
+46315,66036
+46316,39367
+46317,21269
+46318,46315
+46319,22982
+46320,19936
+46321,26728
+46322,31100
+46323,23306
+46324,71324
+46325,40962
+46326,62294
+46327,62042
+46328,42092
+46329,44516
+46330,36043
+46331,46804
+46332,31588,51836
+46333,55499
+46334,80549
+46335,23220
+46336,62089
+46337,64744
+46338,29658
+46339,68974
+46340,69236
+46341,32506
+46342,76104
+46343,78073
+46344,59970
+46345,53842
+46346,19121
+46347,26295
+46348,66272
+46349,19462
+46350,39295
+46351,53842
+46352,61996
+46353,78647
+46354,31245
+46355,21218
+46356,52920
+46357,46362
+46358,62459
+46359,53694
+46360,38209
+46361,20743
+46362,42429
+46363,58582
+46364,23225
+46365,79874
+46366,57051
+46367,39049
+46368,50295
+46369,38381
+46370,36868
+46371,50602
+46372,37803
+46373,73692
+46374,77192
+46375,68242
+46376,63047
+46377,49769
+46378,76138
+46379,21670
+46380,69248
+46381,53660
+46382,36053
+46383,77081
+46384,62884
+46385,62884
+46386,32050
+46387,46384
+46388,75157
+46389,53454
+46390,78665
+46391,78666
+46392,61885
+46393,24706
+46394,54446
+46395,70375
+46396,43880
+46397,46401
+46398,70375
+46399,38183
+46400,70375
+46401,81578
+46402,51565
+46403,24111
+46404,24021
+46405,46401
+46406,63281
+46407,59314
+46408,48318
+46409,60216
+46410,69439
+46411,55090
+46412,72959
+46413,82186
+46414,60216
+46415,80775
+46416,81065
+46417,66591
+46418,45813
+46419,74795
+46420,70033
+46421,74778
+46422,45302
+46423,26884
+46424,27167
+46425,58287
+46426,60661
+46427,51939
+46428,54034
+46429,19629
+46430,46843
+46431,23679
+46432,73838
+46433,41444
+46434,77865
+46435,58287
+46436,40068
+46437,81329
+46438,63413
+46439,70033
+46440,76664
+46441,79026
+46442,66083
+46443,63413
+46444,70033
+46445,22990
+46446,33184
+46447,36542
+46448,43756
+46449,26765
+46450,66591
+46451,72861
+46452,79684
+46453,38334
+46454,46377
+46455,75020
+46456,35620
+46457,66591
+46458,66353
+46459,18868
+46460,65133
+46461,41264
+46462,31362
+46463,18868
+46464,19936
+46465,56371
+46466,32578
+46467,66938
+46468,45392
+46469,38920
+46470,63424
+46471,32580
+46472,32578
+46473,32929
+46474,22102
+46475,27964
+46476,34199
+46477,50179
+46478,53982
+46479,61092
+46480,36951
+46481,70688
+46482,30532
+46483,62853,79897
+46484,57333
+46485,46591
+46486,20749
+46487,33797
+46488,53175
+46489,27964
+46490,47655
+46491,63791
+46492,53648
+46493,33455
+46494,43698
+46495,39423
+46496,23313
+46497,81746
+46498,60994
+46499,43701
+46500,22032
+46501,44988
+46502,31444
+46503,75018
+46504,56376
+46505,45684
+46506,70572
+46507,22901
+46508,21381
+46509,30514
+46510,31960
+46511,70675
+46512,49113
+46513,33186
+46514,58579
+46515,49409
+46516,79608
+46517,33788
+46518,52497
+46519,29957
+46520,42181
+46521,77641
+46522,62187
+46523,60216
+46524,39578
+46525,20983
+46526,76136
+46527,28849
+46528,31245
+46529,46524
+46530,34797
+46531,60216
+46532,49420
+46533,65108
+46534,39049
+46535,28954
+46536,30900
+46537,55625
+46538,45813
+46539,27167
+46540,73598
+46541,51468
+46542,44113
+46543,68342
+46544,58195
+46545,44696
+46546,31515
+46547,43095
+46548,53649
+46549,19849
+46550,74537
+46551,72697
+46552,62147
+46553,68793
+46554,76162
+46555,20754
+46556,19907
+46557,34924
+46558,56841
+46559,19909
+46560,63064
+46561,63064
+46562,61934
+46563,63953
+46564,40863
+46565,74904
+46566,40752
+46567,77641
+46568,31960
+46569,20431
+46570,62895
+46571,28486
+46572,47455
+46573,58579
+46574,61956
+46575,26373
+46576,63707
+46577,68422
+46578,79630
+46579,79653
+46580,80778
+46581,79468
+46582,70524
+46583,54091
+46584,69440
+46585,55768
+46586,33793
+46587,40965
+46588,70434
+46589,21361
+46590,51790
+46591,73837
+46592,21670
+46593,62585
+46594,34997
+46595,21993
+46596,39502
+46597,76248
+46598,21237
+46599,38213
+46600,44696
+46601,46486
+46602,80761
+46603,77341
+46604,45813
+46605,25433
+46606,25858
+46607,27721
+46608,27850
+46609,28074
+46610,20690
+46611,79497
+46612,50919
+46613,50554
+46614,68038
+46615,68038
+46616,53063
+46617,19629
+46618,56701
+46619,61054
+46620,64403
+46621,64425
+46622,52180
+46623,23194
+46624,77308
+46625,56361
+46626,32610
+46627,25115
+46628,31825
+46629,73665
+46630,27295
+46631,41977
+46632,20748
+46633,39049
+46634,51216
+46635,81066
+46636,50784
+46637,50829
+46638,27405
+46639,66502
+46640,20746
+46641,70627
+46642,53628
+46643,54655
+46644,55014
+46645,61382
+46646,61947
+46647,62441
+46648,81617
+46649,31239
+46650,45813
+46651,66965
+46652,60191
+46653,67957
+46654,42097
+46655,61341
+46656,50737
+46657,50737
+46658,21718
+46659,74067
+46660,64413
+46661,69978
+46662,39677
+46663,80583
+46664,80789
+46665,80802
+46666,46639
+46667,33175
+46668,69335
+46669,47026
+46670,38807
+46671,33186
+46672,42225
+46673,78096
+46674,69870
+46675,41089
+46676,46827
+46677,53694
+46678,41610
+46679,53700
+46680,53693
+46681,70437
+46682,28574
+46683,57458
+46684,66953
+46685,69744
+46686,77357
+46687,76664
+46688,31245
+46689,53694
+46690,45455
+46691,65133
+46692,19438
+46693,58168
+46694,58166
+46695,59585
+46696,21589
+46697,62986
+46698,46747
+46699,46827
+46700,77585
+46701,46692
+46702,46695
+46703,54427
+46704,40150
+46705,75195
+46706,30550
+46707,72959
+46708,45276
+46709,78649
+46710,22838
+46711,29118
+46712,81161
+46713,65108
+46714,19771
+46715,28322
+46716,74939
+46717,49158
+46718,75677
+46719,53731
+46720,69908
+46721,59978
+46722,49888
+46723,73207
+46724,70524
+46725,27405
+46726,67957
+46727,62145
+46728,80782
+46729,61646
+46730,72448
+46731,43104
+46732,72519
+46733,73323
+46734,62036
+46735,64142
+46736,54813
+46737,23401
+46738,80106
+46739,62578
+46740,80524
+46741,70526
+46742,23642
+46743,49336
+46744,73207
+46745,38723
+46746,67822
+46747,26298
+46748,61144
+46749,26298
+46750,24143
+46751,62994
+46752,57458
+46753,34772
+46754,23664
+46755,19384
+46756,62452
+46757,75741
+46758,72150
+46759,19468
+46760,46966
+46761,45813
+46762,45813
+46763,28699
+46764,76664
+46765,76672
+46766,35735
+46767,29851
+46768,35735
+46769,20723
+46770,44113
+46771,44984
+46772,67813
+46773,55951
+46774,81615
+46775,76664
+46776,52919
+46777,30900
+46778,22186
+46779,50912
+46780,39295
+46781,26298
+46782,36868,26298
+46783,61380
+46784,31563
+46785,31338
+46786,28265
+46787,40068
+46788,44551
+46789,46988
+46790,53290
+46791,55451
+46792,68196
+46793,73838
+46794,49113
+46795,58143
+46796,58783
+46797,58797
+46798,59378
+46799,35917
+46800,33479
+46801,81743
+46802,23082
+46803,26476
+46804,26479
+46805,65526
+46806,29691
+46807,32685
+46808,80248
+46809,52904
+46810,40863
+46811,31618
+46812,36043
+46813,51316
+46814,26527
+46815,45413
+46816,66040
+46817,28573
+46818,61246
+46819,66954
+46820,66939
+46821,59377
+46822,81065
+46823,81601
+46824,81601
+46825,81742
+46826,63424
+46827,73838
+46828,30684
+46829,34903
+46830,34903
+46831,46829
+46832,23764
+46833,70033
+46834,69682
+46835,32683
+46836,70524
+46837,68692
+46838,33184
+46839,56832
+46840,79009
+46841,25002
+46842,11862
+46843,79608
+46844,53306
+46845,17372
+46846,67793
+46847,28236
+46848,59306
+46849,19825
+46850,81336
+46851,81337
+46852,56832
+46853,27274
+46854,21638
+46855,77184
+46856,24961
+46857,70033
+46858,23946
+46859,70033
+46860,19482
+46861,69010
+46862,33102
+46863,31308
+46864,53842
+46865,60216
+46866,55792
+46867,69558
+46868,30480
+46869,48949
+46870,20670
+46871,37632
+46872,49079
+46873,60216
+46874,31369
+46875,18864
+46876,69677
+46877,64645
+46878,61415
+46879,69744
+46880,46992
+46881,27041
+46882,73838
+46883,56832
+46884,66257
+46885,25099
+46886,25433
+46887,43708
+46888,45366
+46889,66257
+46890,22164
+46891,59069
+46892,63065
+46893,65954
+46894,66551
+46895,25122
+46896,64142
+46897,33321
+46898,35922
+46899,68230
+46900,19497
+46901,35480
+46902,23891
+46903,35922
+46904,46896
+46905,47716
+46906,64142
+46907,53454
+46908,57385
+46909,54753
+46910,47390
+46911,74081
+46912,79485
+46913,21540
+46914,46916
+46915,69508,46907
+46916,58158
+46917,21269
+46918,80714
+46919,58162
+46920,69522
+46921,34357
+46922,27786
+46923,39578
+46924,77374
+46925,46916
+46926,70426
+46927,70427
+46928,77015
+46929,21161
+46930,72503
+46931,25119
+46932,64142
+46933,61396
+46934,47561
+46935,37991
+46936,22776
+46937,32952
+46938,71446
+46939,23884
+46940,50439
+46941,24146
+46942,50439
+46943,64757
+46944,22414
+46945,22414
+46946,54188
+46947,49487
+46948,36523
+46949,34784
+46950,53107
+46951,78627
+46952,39411,59456
+46953,52904
+46954,59305
+46955,68649
+46956,29969
+46957,50104
+46958,58385,24839
+46959,79546
+46960,68896
+46961,80238
+46962,70629
+46963,67957
+46964,67979
+46965,77748
+46966,35944
+46967,57982
+46968,21475
+46969,68383
+46970,49945
+46971,51204
+46972,68677
+46973,46962
+46974,61092
+46975,31417
+46976,57408
+46977,23182
+46978,22032
+46979,77268
+46980,55758
+46981,76429
+46982,39847
+46983,28739
+46984,33599
+46985,34154
+46986,50273
+46987,78928
+46988,72482
+46989,70246
+46990,25884
+46991,32083
+46992,69600
+46993,73669
+46994,23678
+46995,28079
+46996,27091
+46997,57980
+46998,69682
+46999,26871
+47000,27079
+47001,51395
+47002,82133
+47003,79608
+47004,77510
+47005,27726
+47006,31245
+47007,53848
+47008,33678
+47009,55519
+47010,38053
+47011,31015
+47012,58166
+47013,60343
+47014,78109
+47015,32493
+47016,71572
+47017,20992
+47018,73398
+47019,33650
+47020,18740
+47021,57594
+47022,77974
+47023,47115
+47024,21013,79224
+47025,18740
+47026,70033
+47027,35472
+47028,48126
+47029,31058
+47030,21937
+47031,25697
+47032,28201
+47033,29541
+47034,62740
+47035,63775
+47036,53660
+47037,77492,47036
+47038,65423
+47039,44439
+47040,47043,38836
+47041,22471
+47042,24823
+47043,24194
+47044,21361
+47045,19069
+47046,19069
+47047,58158
+47048,35626
+47049,18740
+47050,19069
+47051,31016
+47052,29079
+47053,76218
+47054,74081
+47055,32225
+47056,32675
+47057,19069
+47058,40797
+47059,78204
+47060,37417
+47061,76218
+47062,19069
+47063,40825,44221
+47064,34924
+47065,72075
+47066,42402
+47067,28780,42246
+47068,22057
+47069,57148,25202
+47070,28778
+47071,26053
+47072,19069
+47073,31058
+47074,40820
+47075,48828
+47076,63465,28016
+47077,31149
+47078,58609
+47079,74251
+47080,28790
+47081,57481
+47082,19069
+47083,43112
+47084,43126
+47085,63114
+47086,28792
+47087,35863
+47088,35858
+47089,24007
+47090,53624
+47091,53621
+47092,20517
+47093,59549
+47094,77636
+47095,74939
+47096,70395
+47097,63314
+47098,25050
+47099,39381
+47100,50649
+47101,62757
+47102,40797
+47103,31391
+47104,31058
+47105,31058
+47106,20782
+47107,19069
+47108,47107
+47109,26724
+47110,20963
+47111,44439
+47112,54159
+47113,20355
+47114,54642
+47115,30216
+47116,27187
+47117,67837
+47118,53716
+47119,71996
+47120,47121
+47121,53624
+47122,61246
+47123,47121
+47124,55522
+47125,47128
+47126,65956
+47127,48318
+47128,65771
+47129,71600
+47130,25256
+47131,20038,61690
+47132,66377
+47133,61259
+47134,27473
+47135,19082
+47136,35626
+47137,45472
+47138,28475
+47139,66377
+47140,47165,42481
+47141,59549
+47142,47141
+47143,31413
+47144,77945
+47145,56862
+47146,64107
+47147,74939
+47148,74939
+47149,60598
+47150,51502
+47151,28183
+47152,74939
+47153,20635
+47154,66909
+47155,79888
+47156,47155
+47157,31391
+47158,38899
+47159,35735
+47160,74939
+47161,60256
+47162,34701
+47163,74939
+47164,51575
+47165,54059
+47166,74427
+47167,40423
+47168,55600
+47169,47487
+47170,74939
+47171,81578
+47172,69027
+47173,23200
+47174,79753
+47175,20346
+47176,43355
+47177,60598
+47178,43355
+47179,36917
+47180,25843
+47181,47193,39751
+47182,68794
+47183,69127
+47184,69131
+47185,47183
+47186,70787
+47187,74939
+47188,59555
+47189,52501
+47190,53214
+47191,57335
+47192,63457
+47193,60598
+47194,43355
+47195,76966
+47196,58296
+47197,27551
+47198,36917
+47199,72066
+47200,25843
+47201,18740
+47202,24823
+47203,39777
+47204,24700
+47205,63809
+47206,63808
+47207,19654
+47208,63571
+47209,48006
+47210,70395
+47211,63584
+47212,63602
+47213,77391
+47214,48150
+47215,63586
+47216,40401
+47217,27473
+47218,61259
+47219,47245
+47220,74939
+47221,60598
+47222,28183
+47223,67675
+47224,19069
+47225,21088
+47226,59555
+47227,21477
+47228,20635
+47229,48356
+47230,62776
+47231,34118
+47232,67101
+47233,56316
+47234,75011
+47235,50651
+47236,35425
+47237,47569
+47238,56451
+47239,47470
+47240,32715
+47241,74939
+47242,19654
+47243,47838
+47244,74939
+47245,54059
+47246,74939
+47247,19069
+47248,81578
+47249,69027
+47250,43355
+47251,58628
+47252,58628
+47253,48182
+47254,18728
+47255,60598
+47256,36917
+47257,20635
+47258,25843
+47259,74939
+47260,36909
+47261,18740
+47262,25087
+47263,49648
+47264,58162
+47265,6772
+47266,57345
+47267,27555
+47268,59555
+47269,40461
+47270,56492
+47271,60598
+47272,63344
+47273,31158
+47274,47273
+47275,47503
+47276,62936
+47277,24823
+47278,43355
+47279,76966
+47280,58296
+47281,24823
+47282,69803
+47283,36523
+47284,47283
+47285,66377
+47286,66377
+47287,43113
+47288,20236
+47289,53621
+47290,61159
+47291,44206
+47292,45812
+47293,45813
+47294,57594
+47295,18728
+47296,60603
+47297,39502
+47298,56536
+47299,56540
+47300,22107
+47301,47298
+47302,66377
+47303,51985
+47304,66873
+47305,37859
+47306,57934
+47307,73179
+47308,54189
+47309,79419
+47310,81101
+47311,79953
+47312,63005
+47313,56950
+47314,57333
+47315,41719
+47316,35025
+47317,33216
+47318,77641
+47319,41719
+47320,41719
+47321,36496
+47322,41719
+47323,70561
+47324,60120
+47325,22438
+47326,23559
+47327,41719
+47328,33216
+47329,33247
+47330,47338
+47331,47338
+47332,40929
+47333,22036,31612
+47334,47342
+47335,41719
+47336,37393
+47337,49888
+47338,43107
+47339,41719
+47340,22684
+47341,39924
+47342,66646
+47343,69978
+47344,70556
+47345,70562
+47346,73481
+47347,75518
+47348,76945
+47349,79973
+47350,36506
+47351,47338,40664
+47352,79471
+47353,23764
+47354,69744
+47355,47338
+47356,75590
+47357,30231
+47358,47314
+47359,46781
+47360,34437
+47361,60662
+47362,77600
+47363,55044
+47364,47127
+47365,40793
+47366,82162
+47367,82163
+47368,82164
+47369,21458
+47370,47369
+47371,42481
+47372,47317
+47373,52957
+47374,62403
+47375,74903
+47376,58803
+47377,78749
+47378,22116
+47379,34822
+47380,60715
+47381,47437
+47382,21682
+47383,75702
+47384,61871
+47385,74943
+47386,48397
+47387,57966
+47388,31638
+47389,47388
+47390,54870
+47391,42246
+47392,60450
+47393,47687
+47394,79719
+47395,64142
+47396,34299
+47397,47388
+47398,19392
+47399,76258
+47400,78346
+47401,31245
+47402,38563
+47403,47409
+47404,22058
+47405,74903
+47406,65171
+47407,67737
+47408,57942
+47409,60242
+47410,63584
+47411,68047
+47412,41469
+47413,28591
+47414,58262
+47415,23183
+47416,19497
+47417,76145
+47418,33928
+47419,77641
+47420,66189
+47421,81703
+47422,72051
+47423,68030
+47424,35626
+47425,59761
+47426,70399
+47427,65339
+47428,70399
+47429,57926
+47430,63736
+47431,47747
+47432,56957
+47433,37232
+47434,72893
+47435,45553
+47436,47435
+47437,81703
+47438,81703
+47439,52211
+47440,38153
+47441,46834
+47442,66785
+47443,41773
+47444,40151
+47445,26507
+47446,53660
+47447,48008
+47448,49684
+47449,74846
+47450,35570
+47451,78785
+47452,31638
+47453,47452
+47454,51985
+47455,51814
+47456,35309
+47457,48629
+47458,33475
+47459,33476
+47460,38369
+47461,20690
+47462,21703
+47463,48126
+47464,79095
+47465,21703
+47466,79282
+47467,58336
+47468,70988
+47469,21703
+47470,79282
+47471,21703
+47472,79282
+47473,25256
+47474,19480
+47475,59548
+47476,75732
+47477,35679
+47478,32934
+47479,78732
+47480,47845
+47481,78732
+47482,73284
+47483,78732
+47484,47452
+47485,47740
+47486,47451
+47487,47475
+47488,64142
+47489,52327
+47490,41773
+47491,72959
+47492,51349
+47493,54710
+47494,21214
+47495,21775
+47496,65925
+47497,21765
+47498,54562
+47499,47697
+47500,65929
+47501,69330
+47502,31079
+47503,47506
+47504,63860
+47505,47506
+47506,32798
+47507,65930
+47508,47500
+47509,30950
+47510,60713
+47511,21770
+47512,63470
+47513,48318
+47514,50701,11480
+47515,46698
+47516,35542
+47517,66189
+47518,18823
+47519,32578
+47520,54735
+47521,70524
+47522,23219
+47523,58158
+47524,77802
+47525,35922
+47526,31940
+47527,31948
+47528,37477
+47529,62694
+47530,48929
+47531,64142
+47532,72959
+47533,48740
+47534,35397
+47535,28136
+47536,20074
+47537,31546
+47538,23012
+47539,45557
+47540,54356
+47541,29626
+47542,25094
+47543,54361
+47544,72959
+47545,72396
+47546,64142
+47547,62723
+47548,66153
+47549,34362
+47550,47899
+47551,67467
+47552,64142
+47553,28132
+47554,19607
+47555,60166
+47556,38555
+47557,47546
+47558,47546
+47559,22907
+47560,60216
+47561,64949
+47562,75016
+47563,48821
+47564,31245
+47565,63416
+47566,24221
+47567,28803,47583
+47568,18720
+47569,47581
+47570,37494
+47571,75606
+47572,21007
+47573,47564
+47574,42130,20978
+47575,47574
+47576,47574
+47577,47574
+47578,47574
+47579,47574
+47580,21881
+47581,35626
+47582,53711
+47583,53716
+47584,47583
+47585,53717
+47586,47581
+47587,76162
+47588,28543
+47589,28952
+47590,31604
+47591,31477
+47592,62957
+47593,41413
+47594,31245
+47595,35626
+47596,35626
+47597,19656
+47598,33755
+47599,20905
+47600,70033
+47601,33150
+47602,47814
+47603,58800
+47604,39810
+47605,47477
+47606,44579
+47607,50875
+47608,66591
+47609,62387
+47610,22698
+47611,24630
+47612,47845
+47613,64142
+47614,73853
+47615,36840
+47616,55158
+47617,78928
+47618,78930
+47619,60604
+47620,27281
+47621,72959
+47622,36803
+47623,21085
+47624,47124
+47625,22699
+47626,23579
+47627,55236
+47628,34211
+47629,52896
+47630,67951
+47631,41155
+47632,61789
+47633,31742
+47634,23791
+47635,21638
+47636,60166
+47637,22271
+47638,36802
+47639,71527
+47640,47749
+47641,19176
+47642,34118
+47643,61396
+47644,70651
+47645,47727
+47646,78773
+47647,48150
+47648,32745
+47649,61396
+47650,63399
+47651,61154
+47652,57934
+47653,58162
+47654,47872
+47655,48423
+47656,19171
+47657,48820
+47658,19009
+47659,51988
+47660,48057
+47661,78059
+47662,30367
+47663,24795
+47664,23775
+47665,35512
+47666,48148
+47667,30697
+47668,41156
+47669,32807
+47670,36841
+47671,79086
+47672,72861
+47673,19438
+47674,26604
+47675,30650
+47676,71508
+47677,26462
+47678,37896
+47679,58024
+47680,56912
+47681,47679
+47682,34118
+47683,34126
+47684,73184
+47685,68928
+47686,48748
+47687,48748
+47688,19009
+47689,38664
+47690,48053
+47691,53454
+47692,60175
+47693,68928
+47694,47705
+47695,62133
+47696,62742
+47697,21218
+47698,47388
+47699,63663
+47700,58798
+47701,64142
+47702,38618
+47703,47402
+47704,48148
+47705,34924
+47706,72813
+47707,50769
+47708,63819
+47709,31338
+47710,78526
+47711,59422
+47712,19311
+47713,41406
+47714,31245
+47715,34470
+47716,28539
+47717,77452
+47718,31245
+47719,47723
+47720,32793
+47721,38782
+47722,38839
+47723,47780
+47724,35695
+47725,36532
+47726,78204
+47727,78799
+47728,38693
+47729,80227
+47730,31245
+47731,19009
+47732,22166
+47733,65108
+47734,39928
+47735,25600
+47736,49312
+47737,65702
+47738,70556
+47739,55765
+47740,30267
+47741,64142
+47742,47858
+47743,64142
+47744,72959
+47745,56179
+47746,77374
+47747,19171
+47748,78776
+47749,78511
+47750,22656
+47751,81462,52211
+47752,52904,52211
+47753,60617
+47754,38712
+47755,80505
+47756,53610
+47757,48929
+47758,78797
+47759,47715
+47760,47740
+47761,47758
+47762,23258
+47763,77374
+47764,47762
+47765,60604
+47766,19311
+47767,48240
+47768,23764
+47769,78641
+47770,54059,42481
+47771,32493
+47772,52327
+47773,51319
+47774,72084
+47775,47760
+47776,47741
+47777,47740
+47778,47776
+47779,76631
+47780,27576
+47781,25202
+47782,31058
+47783,21605
+47784,28104
+47785,28104
+47786,77641
+47787,81482
+47788,64851
+47789,58023
+47790,68196
+47791,78731
+47792,51523
+47793,21838
+47794,58012
+47795,41563
+47796,35793
+47797,45096
+47798,49027
+47799,38787
+47800,55756
+47801,26507
+47802,41911
+47803,23762
+47804,34661
+47805,33502
+47806,37220
+47807,76989
+47808,57059
+47809,21612
+47810,63568
+47811,35512
+47812,51391
+47813,20698
+47814,22152
+47815,20698
+47816,55348
+47817,23874
+47818,39480
+47819,52499
+47820,56243
+47821,53624
+47822,70526
+47823,47871
+47824,48820
+47825,25092
+47826,55914
+47827,50008
+47828,35593
+47829,56941
+47830,40062
+47831,25642
+47832,72984
+47833,75472
+47834,78636
+47835,60598
+47836,28600
+47837,31708
+47838,35534
+47839,47741
+47840,78785
+47841,28382
+47842,72396
+47843,41413
+47844,48471
+47845,64142
+47846,47740
+47847,45156
+47848,47680
+47849,47909
+47850,47836
+47851,48355
+47852,78726
+47853,56954
+47854,48807
+47855,28541
+47856,37561
+47857,47984
+47858,78797
+47859,35490
+47860,38637
+47861,78786
+47862,31515
+47863,47823
+47864,47715
+47865,64142
+47866,46417
+47867,46417
+47868,28530
+47869,20409
+47870,63065
+47871,28537
+47872,64142
+47873,36238
+47874,19009
+47875,41248
+47876,34199
+47877,60385
+47878,27562
+47879,76664
+47880,21200
+47881,78755
+47882,34928
+47883,47994
+47884,36840
+47885,62145
+47886,57573,46251
+47887,78514
+47888,28600
+47889,70091
+47890,30686
+47891,19131
+47892,54774
+47893,38012
+47894,23884
+47895,22219
+47896,32363
+47897,35815
+47898,57356
+47899,47715
+47900,54704
+47901,54717
+47902,36238
+47903,48936
+47904,47715
+47905,34868
+47906,21728
+47907,48462
+47908,53619
+47909,78526
+47910,48254
+47911,47715
+47912,35511
+47913,65186
+47914,38693
+47915,63417
+47916,47047
+47917,58107
+47918,28538
+47919,71841
+47920,31137
+47921,81798
+47922,31690
+47923,79552
+47924,41516
+47925,19649
+47926,79165
+47927,50507
+47928,68059
+47929,51677
+47930,40089
+47931,39109
+47932,59555
+47933,41305
+47934,55847
+47935,55848
+47936,65591
+47937,65638
+47938,70629
+47939,27991
+47940,59020
+47941,65049
+47942,19488
+47943,56023
+47944,30882
+47945,55158
+47946,30498
+47947,70214
+47948,34924
+47949,76664
+47950,19009
+47951,50875
+47952,62008
+47953,40007
+47954,78537
+47955,62387
+47956,50359
+47957,56151
+47958,37174
+47959,74939
+47960,20670
+47961,48442
+47962,79641
+47963,70033
+47964,81107
+47965,26448
+47966,30514
+47967,63415
+47968,21081
+47969,65908
+47970,40150
+47971,40816
+47972,51362
+47973,57330
+47974,75472
+47975,77496
+47976,63060
+47977,34126
+47978,28600
+47979,77374
+47980,40990
+47981,54704
+47982,38372
+47983,47487
+47984,28357
+47985,57856
+47986,54082
+47987,58166
+47988,59938
+47989,23790
+47990,35922
+47991,60216
+47992,77374
+47993,35526
+47994,75552
+47995,22372
+47996,22372
+47997,47746
+47998,56950
+47999,73669
+48000,50969
+48001,18757
+48002,28063
+48003,19654
+48004,37450
+48005,53842
+48006,48724
+48007,37411
+48008,30296
+48009,45556
+48010,48006
+48011,37405
+48012,18811
+48013,44040
+48014,60178
+48015,47979
+48016,32580
+48017,71446
+48018,32580
+48019,19813
+48020,32506
+48021,31589
+48022,37913
+48023,77277
+48024,63065
+48025,78682
+48026,27118
+48027,37130
+48028,26602
+48029,48031
+48030,30658
+48031,30659
+48032,20533
+48033,19208
+48034,62447
+48035,48034
+48036,78786
+48037,60604
+48038,64142
+48039,64139
+48040,28357
+48041,35142
+48042,48058
+48043,53654
+48044,73112
+48045,75018
+48046,53339
+48047,31893
+48048,47546
+48049,76251
+48050,78671
+48051,28357
+48052,34819
+48053,47743
+48054,35433
+48055,55023
+48056,47452
+48057,78533
+48058,34618
+48059,35693
+48060,35567
+48061,47532
+48062,76662
+48063,34064
+48064,39572
+48065,43861
+48066,55668
+48067,55662
+48068,22278
+48069,18740
+48070,54704
+48071,21597
+48072,71493
+48073,59549
+48074,59450
+48075,57332
+48076,47686
+48077,47475
+48078,51562
+48079,59547
+48080,32214
+48081,47479
+48082,47797
+48083,19656
+48084,30878
+48085,48084
+48086,47758
+48087,65057
+48088,40986
+48089,20265
+48090,28327
+48091,28339
+48092,28238
+48093,31428
+48094,32527
+48095,38122
+48096,50097
+48097,50101
+48098,54014
+48099,57957
+48100,61220
+48101,63752
+48102,57514
+48103,76068
+48104,76490
+48105,79305
+48106,64143
+48107,52241
+48108,35433
+48109,31014
+48110,33998
+48111,41816
+48112,74696
+48113,64142
+48114,39888
+48115,59886
+48116,72585
+48117,48735
+48118,64142
+48119,79165
+48120,79376
+48121,50438
+48122,78644
+48123,19574
+48124,53473
+48125,21612
+48126,74939
+48127,35534
+48128,19815
+48129,38835
+48130,38768
+48131,37120
+48132,64831
+48133,76162
+48134,72258
+48135,34918
+48136,43913
+48137,37825
+48138,55250
+48139,66597
+48140,78512
+48141,81808
+48142,55078
+48143,20960
+48144,40753
+48145,40745
+48146,31477
+48147,62408
+48148,34864
+48149,62409
+48150,28063
+48151,31615,66101
+48152,30651
+48153,53022
+48154,30891
+48155,19009
+48156,30267
+48157,54044
+48158,48162
+48159,54891
+48160,26363
+48161,57932
+48162,75027
+48163,75495
+48164,68280
+48165,37913
+48166,68289
+48167,80106
+48168,31474
+48169,48154
+48170,63007
+48171,72052
+48172,35482
+48173,21703
+48174,41562
+48175,19182
+48176,45542
+48177,72038
+48178,76162
+48179,73472
+48180,73836
+48181,44474
+48182,73837
+48183,20670
+48184,38952
+48185,48395
+48186,28539
+48187,71557
+48188,29368
+48189,77641
+48190,19231
+48191,49508
+48192,28593
+48193,74423
+48194,27166
+48195,57261
+48196,24781
+48197,48875
+48198,78815
+48199,24642
+48200,39578
+48201,31039
+48202,41022
+48203,35442
+48204,44795
+48205,76851
+48206,44472
+48207,36710
+48208,45851
+48209,57457
+48210,60216
+48211,42246
+48212,53717
+48213,25839
+48214,42439
+48215,42440
+48216,35652
+48217,62694
+48218,45837
+48219,77444
+48220,22164
+48221,19131
+48222,77437
+48223,80510
+48224,58162
+48225,66155
+48226,18834
+48227,74081
+48228,48928
+48229,38044
+48230,78649
+48231,80626
+48232,64142
+48233,32718
+48234,51068
+48235,30650
+48236,18679
+48237,59970
+48238,68230
+48239,23764
+48240,28346
+48241,48333
+48242,71557
+48243,53694
+48244,21270
+48245,67545
+48246,30621
+48247,63208
+48248,81808
+48249,81808
+48250,18950
+48251,47475
+48252,81808
+48253,78773
+48254,51642
+48255,51649
+48256,36147
+48257,25434
+48258,27740
+48259,38231
+48260,46285
+48261,71098
+48262,75336
+48263,74217
+48264,77600
+48265,80637
+48266,19629
+48267,36317
+48268,39997
+48269,34199
+48270,25113
+48271,53003
+48272,66040
+48273,28543
+48274,28236
+48275,69118
+48276,66087
+48277,78096
+48278,35772
+48279,59308
+48280,78236
+48281,31245
+48282,21773
+48283,60216
+48284,21703
+48285,58212
+48286,57194
+48287,74081
+48288,63416
+48289,47565
+48290,53704
+48291,47858
+48292,28803
+48293,31058
+48294,57157
+48295,1594
+48296,59555
+48297,48145
+48298,31039
+48299,31109
+48300,79000
+48301,79001
+48302,70214
+48303,48305
+48304,71961
+48305,48791
+48306,63051
+48307,62994
+48308,48640
+48309,48304
+48310,48761
+48311,77709
+48312,78656
+48313,53920
+48314,61419
+48315,81788
+48316,81789
+48317,47845
+48318,21718
+48319,60284
+48320,65885
+48321,61159
+48322,20743
+48323,48324
+48324,33812
+48325,21087
+48326,61281
+48327,25087
+48328,78544
+48329,47741
+48330,47753
+48331,68809
+48332,21745
+48333,55493
+48334,55823
+48335,60715
+48336,65581
+48337,74535
+48338,26965
+48339,29797
+48340,77460
+48341,52102
+48342,59543
+48343,74422
+48344,32152
+48345,48157
+48346,77311
+48347,45181
+48348,60063
+48349,78594
+48350,69120
+48351,48740
+48352,70013
+48353,22669
+48354,48353
+48355,78671
+48356,78804
+48357,47658
+48358,19496
+48359,34460
+48360,71482
+48361,71499
+48362,35511
+48363,64142
+48364,40060
+48365,70787
+48366,70091
+48367,38601
+48368,61764
+48369,54425
+48370,25094
+48371,62145
+48372,47388
+48373,48740
+48374,63117
+48375,21612
+48376,34379
+48377,35625
+48378,78553
+48379,78794
+48380,23764
+48381,28616
+48382,59645
+48383,76054
+48384,31588,51836
+48385,34085
+48386,65627
+48387,30231
+48388,65929
+48389,21718
+48390,21411
+48391,32578
+48392,50701
+48393,77976
+48394,51643
+48395,48333
+48396,21200
+48397,21345
+48398,21938
+48399,33485
+48400,38375
+48401,58168
+48402,76430
+48403,30188
+48404,65478
+48405,53054
+48406,62145
+48407,75548
+48408,34924
+48409,21922
+48410,53613
+48411,56241
+48412,19840
+48413,48408
+48414,48408
+48415,48414
+48416,57916
+48417,55734
+48418,55736
+48419,69028
+48420,62466
+48421,78698
+48422,78996
+48423,21745
+48424,55753
+48425,47656
+48426,34313
+48427,66058
+48428,80505
+48429,47531
+48430,47741
+48431,39147
+48432,20409
+48433,24885
+48434,24876
+48435,26302
+48436,63416
+48437,48980
+48438,53454
+48439,46553,47242
+48440,69803
+48441,69810
+48442,35511
+48443,37559
+48444,48534
+48445,68832
+48446,19657
+48447,29570
+48448,56901
+48449,60216
+48450,65064
+48451,66344,65531
+48452,62935
+48453,60058
+48454,43520
+48455,62963
+48456,57897
+48457,53003
+48458,79097
+48459,47531
+48460,21905
+48461,57187
+48462,26934
+48463,26939
+48464,31106
+48465,22313
+48466,51996
+48467,53474
+48468,44440
+48469,53624
+48470,46417
+48471,72959
+48472,32580
+48473,75016
+48474,60216
+48475,63316
+48476,34299
+48477,18721
+48478,48161
+48479,48157
+48480,19382
+48481,20534
+48482,75957
+48483,64846
+48484,75974
+48485,37569
+48486,31070
+48487,78772
+48488,79524
+48489,48013
+48490,47871
+48491,47871
+48492,54909
+48493,53607
+48494,34362
+48495,52655
+48496,53694
+48497,78698
+48498,53607
+48499,43546
+48500,79854
+48501,34414
+48502,21908
+48503,51996
+48504,19200
+48505,60603
+48506,22969
+48507,79282
+48508,61649
+48509,62794
+48510,27967
+48511,39929
+48512,62513
+48513,49438
+48514,48504
+48515,30883
+48516,30884
+48517,4024
+48518,49296
+48519,31446
+48520,22831
+48521,70568
+48522,21703
+48523,79282
+48524,48515
+48525,51996
+48526,28214
+48527,32531,63208
+48528,63206
+48529,40150
+48530,40393
+48531,71315
+48532,62409
+48533,33403
+48534,69554
+48535,38789
+48536,64833
+48537,30275
+48538,58523
+48539,74535
+48540,31106
+48541,63187
+48542,74549
+48543,24801
+48544,53624
+48545,21078
+48546,65581
+48547,76657
+48548,58514
+48549,20698
+48550,34199
+48551,77287
+48552,71997
+48553,46901
+48554,71997
+48555,36101
+48556,51773
+48557,63376
+48558,25796
+48559,50652
+48560,50716
+48561,52443
+48562,34924
+48563,31798
+48564,54649
+48565,76657
+48566,69978
+48567,74640
+48568,28774
+48569,46694
+48570,75758
+48571,42360
+48572,80748
+48573,55491
+48574,55756
+48575,59604
+48576,48928
+48577,50258
+48578,35917
+48579,45527
+48580,22208
+48581,27641
+48582,28339
+48583,30581
+48584,31742
+48585,36525
+48586,47469
+48587,49388
+48588,53545
+48589,53716
+48590,58144
+48591,75489
+48592,66431
+48593,50769
+48594,74640
+48595,52331
+48596,40617
+48597,48480
+48598,50603
+48599,19382
+48600,75954
+48601,35922
+48602,19497
+48603,71334
+48604,68342
+48605,44440
+48606,62986
+48607,31117
+48608,71996
+48609,27391
+48610,68903
+48611,62145
+48612,35342
+48613,69131
+48614,69118
+48615,18720
+48616,58108
+48617,59886
+48618,59885
+48619,46097
+48620,48516
+48621,36815
+48622,61287
+48623,48624
+48624,65581
+48625,48504
+48626,26934
+48627,54044
+48628,61154
+48629,38814
+48630,38813
+48631,65929
+48632,60216
+48633,63187
+48634,53688
+48635,54890
+48636,65503
+48637,48547
+48638,65691
+48639,77491
+48640,64281
+48641,55158
+48642,70212
+48643,40774
+48644,34924
+48645,45096
+48646,69330
+48647,49296
+48648,49438
+48649,61649
+48650,69331
+48651,30568
+48652,46059
+48653,48654
+48654,65581
+48655,73837
+48656,57897
+48657,38951
+48658,66101
+48659,20760,61263
+48660,28409
+48661,69330
+48662,55760
+48663,35735
+48664,59376
+48665,63061
+48666,37900
+48667,41155
+48668,41097
+48669,35596
+48670,79282
+48671,48640
+48672,66114
+48673,48304
+48674,70526
+48675,57934
+48676,54253
+48677,68793
+48678,57417,37980
+48679,48590
+48680,13106
+48681,65064
+48682,53848
+48683,35509
+48684,39502
+48685,22152
+48686,47605
+48687,70427
+48688,55736
+48689,70427
+48690,63386
+48691,48690
+48692,36602
+48693,38725
+48694,27951
+48695,51649
+48696,20654
+48697,77374
+48698,48243
+48699,70656
+48700,33455
+48701,48243
+48702,31117
+48703,73853
+48704,79376
+48705,43913
+48706,50985
+48707,62757
+48708,31689
+48709,48251
+48710,20650
+48711,36509
+48712,39572
+48713,48243
+48714,63994
+48715,63995
+48716,52197
+48717,61488
+48718,39116
+48719,41469
+48720,59422
+48721,63344
+48722,76058
+48723,68809
+48724,23764
+48725,55756
+48726,58200
+48727,79084
+48728,48593
+48729,48593
+48730,34602
+48731,31626
+48732,76338
+48733,78788
+48734,60216
+48735,38017,78815
+48736,43110
+48737,66786
+48738,38012
+48739,19689
+48740,23258
+48741,47698
+48742,60450
+48743,74807
+48744,28790
+48745,44474
+48746,45813
+48747,61906
+48748,64142
+48749,48735
+48750,31241
+48751,58162
+48752,70091
+48753,57573
+48754,47475
+48755,47488
+48756,79086
+48757,28543
+48758,31538
+48759,39528
+48760,72505
+48761,59886
+48762,38011
+48763,77094
+48764,32790
+48765,32793
+48766,32798
+48767,32798
+48768,32799
+48769,65589
+48770,51688
+48771,51677
+48772,18983
+48773,48584
+48774,49027
+48775,57987
+48776,41842
+48777,18740
+48778,28790
+48779,22053
+48780,55828
+48781,79172
+48782,55348
+48783,46410
+48784,55348
+48785,27455
+48786,35431
+48787,20743
+48788,45067
+48789,61435
+48790,37404
+48791,81601
+48792,38807
+48793,40053
+48794,30691
+48795,70646
+48796,36450
+48797,63257
+48798,21905
+48799,19492
+48800,19657
+48801,56901
+48802,51075
+48803,27339
+48804,29969
+48805,74461
+48806,63093
+48807,60604
+48808,22744
+48809,65975,51069
+48810,20127
+48811,48809
+48812,47774
+48813,47656
+48814,62513
+48815,25649
+48816,58162
+48817,31564
+48818,28538
+48819,52750
+48820,31443
+48821,73669
+48822,67513
+48823,30275
+48824,62147
+48825,48733
+48826,67951
+48827,19069
+48828,44908
+48829,28790
+48830,28780,44933
+48831,48830,64547
+48832,48830,64547
+48833,20355
+48834,21006
+48835,31058
+48836,44932
+48837,21060
+48838,63434
+48839,60559
+48840,48833
+48841,48833
+48842,59338
+48843,59339
+48844,64950
+48845,56179
+48846,19815
+48847,28778
+48848,31539
+48849,31245
+48850,56179
+48851,53624
+48852,64474
+48853,65581
+48854,70695
+48855,76162
+48856,51068
+48857,37665
+48858,26065
+48859,55069
+48860,21898
+48861,22666
+48862,26318
+48863,39018
+48864,54082
+48865,48126
+48866,48126
+48867,74807
+48868,39018
+48869,53848
+48870,48862
+48871,35045
+48872,24261
+48873,48126
+48874,43691
+48875,54082
+48876,47655
+48877,46317
+48878,44083
+48879,76664
+48880,60786
+48881,44083
+48882,26869
+48883,47415
+48884,20635
+48885,74251
+48886,54073
+48887,31740
+48888,41348
+48889,51929
+48890,66097
+48891,48415
+48892,52904
+48893,72764
+48894,58137
+48895,60031
+48896,28202
+48897,77554
+48898,20690
+48899,80185
+48900,42225,80897
+48901,81601
+48902,25017
+48903,77308
+48904,53958
+48905,69458
+48906,52904
+48907,45813
+48908,81482
+48909,81602
+48910,52773
+48911,81647
+48912,77945
+48913,47850
+48914,31245
+48915,72505
+48916,47494
+48917,42454
+48918,24021
+48919,48920
+48920,55356
+48921,65004
+48922,48313
+48923,65579
+48924,35922
+48925,19497
+48926,53958
+48927,22004
+48928,64142
+48929,78540
+48930,56887
+48931,47646
+48932,78636
+48933,51778
+48934,78553
+48935,62409
+48936,77374
+48937,78803
+48938,22152
+48939,38567
+48940,28543
+48941,63065
+48942,63494
+48943,53694
+48944,35802
+48945,47476
+48946,30357
+48947,20827
+48948,18740,69132
+48949,63584
+48950,62047
+48951,38012
+48952,20635
+48953,20875
+48954,47283
+48955,73804,48952
+48956,25256
+48957,50296
+48958,82150
+48959,48210
+48960,37832
+48961,48957
+48962,19669
+48963,19673
+48964,19674
+48965,20978
+48966,48978
+48967,26723
+48968,55069
+48969,48978
+48970,48978
+48971,67675
+48972,19069
+48973,48215
+48974,42114
+48975,69452
+48976,61866
+48977,51468
+48978,51468
+48979,48978
+48980,69168
+48981,34299
+48982,20006
+48983,56866
+48984,69172
+48985,41155
+48986,19497
+48987,38366
+48988,31058
+48989,38053
+48990,72959
+48991,31808
+48992,51473
+48993,38699
+48994,39010
+48995,44478
+48996,41842
+48997,37542
+48998,38188
+48999,70375
+49000,20973
+49001,52791
+49002,19935
+49003,53717
+49004,77740
+49005,53717
+49006,38209
+49007,48978
+49008,28786
+49009,38699
+49010,71557
+49011,22057
+49012,63314
+49013,31638
+49014,63494
+49015,73472
+49016,60131
+49017,62962
+49018,48401
+49019,50296
+49020,76756
+49021,19069
+49022,41000
+49023,52068
+49024,33519
+49025,54789
+49026,81004
+49027,59307
+49028,65893
+49029,63065
+49030,63065
+49031,21838
+49032,50117
+49033,77160
+49034,21006
+49035,34583
+49036,60786
+49037,44603
+49038,68869
+49039,39517
+49040,30275
+49041,77641
+49042,81536
+49043,79608
+49044,43136
+49045,58508
+49046,63791
+49047,43167
+49048,43240
+49049,56941
+49050,73477
+49051,41625
+49052,37179
+49053,41743
+49054,60661
+49055,22786
+49056,37405
+49057,40411
+49058,76981
+49059,27440
+49060,70987
+49061,21869
+49062,42097
+49063,39068
+49064,61415
+49065,21777
+49066,50383
+49067,19629
+49068,79608
+49069,57289
+49070,60899
+49071,61209
+49072,27187
+49073,79467
+49074,59891
+49075,32233
+49076,59801
+49077,69663
+49078,81733
+49079,30062
+49080,22729
+49081,41743
+49082,37179
+49083,53412
+49084,35822
+49085,36618
+49086,51316
+49087,63013
+49088,45170
+49089,28954
+49090,49058
+49091,70359
+49092,71182
+49093,73761
+49094,28954
+49095,39049
+49096,39049
+49097,51230
+49098,66146
+49099,57861
+49100,44160
+49101,51159
+49102,54562
+49103,30051
+49104,63213
+49105,70896
+49106,48489
+49107,40473
+49108,78635
+49109,27455
+49110,24084
+49111,81153
+49112,32530
+49113,32177
+49114,32929
+49115,51174
+49116,28970
+49117,70058
+49118,31495
+49119,55763
+49120,31372
+49121,78866
+49122,35557
+49123,77500
+49124,37474
+49125,68848
+49126,49134
+49127,40986
+49128,33479
+49129,50144
+49130,50143
+49131,26548
+49132,27056
+49133,40776
+49134,79469
+49135,31618
+49136,38883
+49137,82133
+49138,70033
+49139,57861
+49140,50735
+49141,27865
+49142,74939
+49143,49142
+49144,28880
+49145,27721
+49146,39846
+49147,71969,72435
+49148,39531
+49149,25256
+49150,46256
+49151,8162,71493
+49152,45118
+49153,61911
+49154,60032
+49155,21362
+49156,32233
+49157,59775
+49158,62034
+49159,33793
+49160,33790
+49161,39713
+49162,55768
+49163,57333
+49164,80251
+49165,38051
+49166,77985,81660
+49167,27405
+49168,34686
+49169,21703
+49170,48126
+49171,47748
+49172,36743
+49173,48126
+49174,57934
+49175,70988
+49176,29839
+49177,42407,47054
+49178,74081
+49179,31495
+49180,27167
+49181,41877
+49182,30216
+49183,72386
+49184,21869
+49185,66862
+49186,64817
+49187,64812
+49188,30989
+49189,64831
+49190,80619
+49191,54727
+49192,55348
+49193,49079
+49194,53628
+49195,81255
+49196,26295
+49197,31562
+49198,49962
+49199,69782
+49200,35838
+49201,29963
+49202,51379
+49203,22052
+49204,19867
+49205,35468
+49206,41063
+49207,64950
+49208,39460
+49209,64952
+49210,69335
+49211,19877
+49212,49204
+49213,59306
+49214,81396
+49215,55758
+49216,60216
+49217,49222
+49218,58088
+49219,53959
+49220,58010
+49221,45392
+49222,19421
+49223,34025
+49224,52773
+49225,40446
+49226,45813
+49227,44449
+49228,81462
+49229,3621
+49230,41119
+49231,71900
+49232,40326
+49233,34924
+49234,40965
+49235,33793
+49236,53369
+49237,62432
+49238,63987
+49239,73796
+49240,81462
+49241,33100
+49242,47390
+49243,76248
+49244,29106
+49245,33100
+49246,76325
+49247,71686
+49248,54005
+49249,27721
+49250,35095
+49251,43138
+49252,56836
+49253,55494
+49254,71311
+49255,21087
+49256,56459
+49257,21275
+49258,63117
+49259,81647
+49260,36840
+49261,81601
+49262,81601
+49263,36839
+49264,21279
+49265,75911
+49266,35362
+49267,21273
+49268,21272
+49269,63187
+49270,34737
+49271,48671
+49272,30391
+49273,35781
+49274,32214
+49275,43817
+49276,37712,46251
+49277,57945
+49278,46639
+49279,29969
+49280,51136
+49281,41837
+49282,41995
+49283,66518
+49284,77985
+49285,20726
+49286,51928
+49287,42002
+49288,67326
+49289,27552
+49290,69506
+49291,32083
+49292,37928
+49293,53842
+49294,81547
+49295,81546
+49296,28535
+49297,72448
+49298,49440
+49299,25115
+49300,29357
+49301,30937
+49302,63026
+49303,66071
+49304,75495
+49305,79363
+49306,80583
+49307,67362
+49308,61209
+49309,38380
+49310,23536
+49311,60337
+49312,81396
+49313,21731
+49314,61402
+49315,30584
+49316,78755
+49317,43737,41995
+49318,59378
+49319,81899
+49320,24875
+49321,78647
+49322,33712
+49323,56058
+49324,20147
+49325,25545
+49326,47433
+49327,75751
+49328,47782
+49329,69968
+49330,57071
+49331,57063
+49332,81617
+49333,60131
+49334,25306
+49335,22455
+49336,23589
+49337,46826
+49338,38883
+49339,63141
+49340,62950
+49341,81781
+49342,63007
+49343,77575
+49344,73841
+49345,39531
+49346,62163
+49347,37686
+49348,28746
+49349,36531
+49350,31743,33882
+49351,20819
+49352,59808
+49353,57573,19359
+49354,30682
+49355,72721
+49356,30682
+49357,62145
+49358,19171
+49359,34149
+49360,36721
+49361,57966
+49362,77374
+49363,49360
+49364,49360
+49365,51238
+49366,49360
+49367,49360
+49368,25709
+49369,66322
+49370,77108
+49371,19376
+49372,75019
+49373,67545
+49374,81374
+49375,53288,72421
+49376,25434
+49377,31618
+49378,37955
+49379,81251
+49380,32718
+49381,62408
+49382,65045
+49383,60071
+49384,60076
+49385,77790
+49386,52957
+49387,80494
+49388,79282
+49389,37888
+49390,33424
+49391,41022
+49392,51649
+49393,52586
+49394,28646
+49395,44621
+49396,37179,36641
+49397,70033
+49398,53288
+49399,39583
+49400,49297
+49401,65210
+49402,46035
+49403,71719
+49404,79259
+49405,26884
+49406,49204
+49407,56290
+49408,77472
+49409,63363
+49410,47868
+49411,34732
+49412,23764
+49413,33495
+49414,28954,27552
+49415,66985
+49416,68692
+49417,78664
+49418,42225
+49419,60216
+49420,22032
+49421,32572
+49422,31444
+49423,49079
+49424,23313
+49425,36434
+49426,49422,81350
+49427,77267
+49428,23763
+49429,68869
+49430,76501
+49431,61415
+49432,66862
+49433,58088
+49434,61256
+49435,49409
+49436,19200
+49437,40068
+49438,77045
+49439,49296
+49440,31444
+49441,78684
+49442,49440
+49443,32953
+49444,45096
+49445,46285
+49446,51894
+49447,41180
+49448,81153
+49449,49451
+49450,52798
+49451,42049
+49452,73838,61415
+49453,49451
+49454,70651
+49455,78879
+49456,52255
+49457,60216
+49458,29627
+49459,30408
+49460,25598
+49461,68771
+49462,25598
+49463,25598
+49464,43861
+49465,74038
+49466,75566
+49467,25598
+49468,33638
+49469,40564
+49470,41729
+49471,47107
+49472,25046
+49473,34602
+49474,25234
+49475,41005
+49476,76275
+49477,69860
+49478,34808
+49479,77857
+49480,77575
+49481,81871
+49482,64586
+49483,35787
+49484,60453
+49485,38807
+49486,58954
+49487,25094
+49488,30693
+49489,25573
+49490,29528
+49491,53369
+49492,50889
+49493,50880
+49494,50880
+49495,35143
+49496,31476
+49497,49358
+49498,66591,56185
+49499,52596
+49500,49353
+49501,49483
+49502,38814
+49503,29460
+49504,79606
+49505,31361
+49506,61253
+49507,44474
+49508,60216
+49509,46885
+49510,32527
+49511,80188
+49512,62144
+49513,61154
+49514,22103
+49515,35557
+49516,33797
+49517,72271
+49518,36007
+49519,2133
+49520,31978
+49521,31978
+49522,33581
+49523,81153
+49524,45392
+49525,31417
+49526,37179
+49527,54562
+49528,26409
+49529,73271
+49530,23939
+49531,27276
+49532,26766
+49533,33134
+49534,41226
+49535,61415
+49536,72959
+49537,74939
+49538,70033
+49539,73177
+49540,78188
+49541,60847,74223
+49542,39929
+49543,79591
+49544,20977
+49545,28870
+49546,53283
+49547,56701
+49548,32527
+49549,49187
+49550,61600
+49551,45813
+49552,61600
+49553,42225
+49554,43897
+49555,54562
+49556,54029
+49557,1914
+49558,51068
+49559,20690
+49560,61253
+49561,51068
+49562,70033
+49563,70427
+49564,78703
+49565,53288
+49566,34819
+49567,58162
+49568,51649
+49569,52469
+49570,31547
+49571,64196
+49572,46715
+49573,73272
+49574,81193
+49575,54092
+49576,58166
+49577,53624
+49578,20690
+49579,52028
+49580,81482
+49581,31905
+49582,49583
+49583,31417
+49584,19936
+49585,28104
+49586,27224
+49587,81200
+49588,59286
+49589,35557
+49590,63213
+49591,27601
+49592,23536
+49593,66705
+49594,20079
+49595,23536
+49596,35406
+49597,73815
+49598,34285
+49599,31362
+49600,57333
+49601,72310
+49602,23164
+49603,31618
+49604,70033
+49605,68119
+49606,26120
+49607,44226
+49608,69688
+49609,38569
+49610,75745
+49611,45769
+49612,45946
+49613,58378,69681
+49614,77945
+49615,31638
+49616,27276
+49617,58776
+49618,21975
+49619,68316
+49620,58162
+49621,48126
+49622,18888
+49623,45851
+49624,48126
+49625,21975
+49626,70651
+49627,47004
+49628,48126
+49629,74939
+49630,41875
+49631,70651
+49632,39014
+49633,61317,77514
+49634,48126
+49635,53701
+49636,38601
+49637,70651
+49638,49637
+49639,49637
+49640,49637
+49641,39018
+49642,36542
+49643,68128
+49644,76711
+49645,78399
+49646,43892
+49647,61260
+49648,31638
+49649,49142
+49650,54562
+49651,41773,47047
+49652,69248
+49653,39210
+49654,42440,29971
+49655,67574
+49656,31417
+49657,37179
+49658,77641
+49659,19087
+49660,49669,45937
+49661,58158
+49662,49661
+49663,44439
+49664,74939
+49665,74939
+49666,56950
+49667,56950
+49668,56950
+49669,55121
+49670,73200
+49671,62266
+49672,60042
+49673,31618
+49674,46270
+49675,77641
+49676,77641
+49677,49776
+49678,51677
+49679,51677
+49680,62159
+49681,38813
+49682,61075
+49683,51120
+49684,34924
+49685,31974
+49686,71838
+49687,55760
+49688,51420
+49689,39318
+49690,46507
+49691,55760
+49692,49679
+49693,81578
+49694,34924
+49695,46252
+49696,26264
+49697,55758
+49698,55768
+49699,27503
+49700,46268
+49701,51454
+49702,45051
+49703,73992
+49704,47388
+49705,58069
+49706,26299
+49707,73803
+49708,39049
+49709,39049
+49710,54439
+49711,81193
+49712,67277
+49713,36035
+49714,62145
+49715,45430
+49716,10650
+49717,49944
+49718,77108
+49719,81080
+49720,53592
+49721,26217
+49722,30396
+49723,53842
+49724,28948
+49725,31115
+49726,53676
+49727,73275
+49728,24874
+49729,55348
+49730,32150
+49731,61435
+49732,72938
+49733,78238
+49734,38699
+49735,25884
+49736,41055
+49737,61141,23764
+49738,72931
+49739,68285
+49740,66859
+49741,43554
+49742,50784
+49743,43458
+49744,28952
+49745,32929,27393
+49746,27398
+49747,38657
+49748,30718
+49749,30719
+49750,78956
+49751,25973
+49752,53637
+49753,26938
+49754,45813
+49755,54562
+49756,8647
+49757,2492
+49758,25098
+49759,34827
+49760,82151
+49761,61493
+49762,35157
+49763,60216
+49764,16408
+49765,48800
+49766,36029
+49767,33646
+49768,56474
+49769,75917
+49770,39442
+49771,43104
+49772,41911
+49773,31115
+49774,31115
+49775,31115
+49776,54188
+49777,81617
+49778,64831
+49779,54181
+49780,54183
+49781,64831
+49782,22414
+49783,38842
+49784,62324
+49785,62441
+49786,62441
+49787,81617
+49788,70675
+49789,58120
+49790,60103
+49791,66769
+49792,71315
+49793,65702
+49794,12791
+49795,63358
+49796,38053
+49797,27992
+49798,62682
+49799,74924
+49800,41610
+49801,47443
+49802,43724
+49803,19200
+49804,53657
+49805,28014
+49806,60621
+49807,64949
+49808,71575,71580
+49809,63358
+49810,53650
+49811,68289
+49812,49811
+49813,37668
+49814,28714
+49815,39068
+49816,28848
+49817,71817
+49818,66702
+49819,77618
+49820,21856
+49821,32642
+49822,80583
+49823,15897
+49824,59891
+49825,62187
+49826,30514
+49827,11869
+49828,80995
+49829,11858
+49830,25194
+49831,32456
+49832,55013
+49833,75510
+49834,44437
+49835,72122
+49836,36035
+49837,19607
+49838,41955
+49839,67703
+49840,80995
+49841,49059
+49842,31960
+49843,40752
+49844,80132
+49845,47673
+49846,47673
+49847,64757
+49848,81482
+49849,77641
+49850,60630
+49851,60216
+49852,47388
+49853,35157
+49854,40942
+49855,63103
+49856,77641
+49857,44609
+49858,65691
+49859,21620
+49860,65702
+49861,65702
+49862,70781
+49863,9399
+49864,44697
+49865,45885
+49866,67649
+49867,29314
+49868,33717
+49869,25721
+49870,78188
+49871,36434
+49872,35557
+49873,34819
+49874,31853
+49875,77147
+49876,77147
+49877,27167
+49878,26899
+49879,52211
+49880,65702
+49881,27781
+49882,82056
+49883,42389
+49884,41388
+49885,41388
+49886,22600
+49887,66953
+49888,46317
+49889,29833
+49890,42181
+49891,46126
+49892,48958
+49893,53425
+49894,37936
+49895,70462
+49896,75057
+49897,78984
+49898,49887
+49899,49897
+49900,28702
+49901,28702
+49902,61415
+49903,45302
+49904,23154
+49905,25065
+49906,71315
+49907,21671
+49908,77108
+49909,82056
+49910,81161
+49911,44603
+49912,36047
+49913,64864
+49914,37179
+49915,16022
+49916,78698
+49917,46559
+49918,37973
+49919,52990
+49920,21326
+49921,27461
+49922,71536
+49923,30391
+49924,73917
+49925,78097
+49926,81742
+49927,26633
+49928,67972
+49929,28221
+49930,80583
+49931,29917
+49932,46097
+49933,71352,73367
+49934,50869
+49935,25617
+49936,65509
+49937,63426
+49938,21568
+49939,55348
+49940,60216
+49941,25017
+49942,23799
+49943,21730
+49944,80512
+49945,37169
+49946,51434
+49947,24628
+49948,37166
+49949,39928
+49950,61435
+49951,52805
+49952,28848
+49953,69283
+49954,49951
+49955,49951
+49956,49951
+49957,30190
+49958,47393
+49959,56802
+49960,45813
+49961,78269
+49962,39049
+49963,49969
+49964,56325
+49965,56327
+49966,45030
+49967,76059
+49968,56316
+49969,73316
+49970,29928
+49971,45035
+49972,63218
+49973,34199
+49974,49972
+49975,60899
+49976,29968
+49977,54728
+49978,24875
+49979,24874
+49980,71686
+49981,32973
+49982,35425
+49983,31477
+49984,61379
+49985,70905
+49986,24874
+49987,24090
+49988,60216
+49989,34924
+49990,31940
+49991,24874
+49992,29057
+49993,46070
+49994,64831
+49995,81482
+49996,26411
+49997,39423
+49998,35753
+49999,67819
+50000,44013
+50001,46267
+50002,60898
+50003,80789
+50004,50008
+50005,18721
+50006,37276
+50007,60216
+50008,46042
+50009,70013
+50010,31638
+50011,81374
+50012,74990
+50013,49298
+50014,61078
+50015,60353
+50016,63047
+50017,80380
+50018,11962
+50019,52777
+50020,46818
+50021,33134
+50022,33135
+50023,39297
+50024,79337,56542
+50025,57249
+50026,57241
+50027,30396
+50028,53842
+50029,69688
+50030,41765
+50031,60216
+50032,49842
+50033,14649
+50034,17372
+50035,49993
+50036,15687
+50037,4553
+50038,51523
+50039,57261
+50040,73752
+50041,55768
+50042,19936
+50043,77641
+50044,25526
+50045,79591
+50046,59849
+50047,81734
+50048,37317
+50049,22096
+50050,50049
+50051,23365
+50052,45813
+50053,52791
+50054,33717
+50055,5686
+50056,21777
+50057,36166
+50058,28780,56806
+50059,20905
+50060,79608
+50061,51640
+50062,29502
+50063,29503
+50064,53288
+50065,72362,77509
+50066,25438
+50067,69782
+50068,56454
+50069,17272
+50070,80248
+50071,25872
+50072,80785
+50073,30989
+50074,859
+50075,52859
+50076,33793
+50077,54562
+50078,11502
+50079,25348
+50080,33353
+50081,68285
+50082,72210
+50083,71505
+50084,27079
+50085,81647
+50086,81621
+50087,30062
+50088,57689
+50089,57689
+50090,64547
+50091,53180
+50092,34735
+50093,77298
+50094,24799,21013
+50095,50103
+50096,50103
+50097,21703
+50098,31520
+50099,73451,50098
+50100,79282
+50101,79282
+50102,31520
+50103,38920
+50104,81601
+50105,29626
+50106,27077
+50107,21922
+50108,31690
+50109,50105
+50110,50701
+50111,53182
+50112,65527
+50113,78598
+50114,58776
+50115,59380
+50116,66086
+50117,81643
+50118,37238
+50119,21703
+50120,79282
+50121,58346
+50122,20422
+50123,20758
+50124,36872
+50125,39049
+50126,31991
+50127,40752
+50128,50724
+50129,39676
+50130,45030
+50131,77641
+50132,81643
+50133,81722
+50134,75574
+50135,51814
+50136,56532
+50137,81602
+50138,51665
+50139,56312
+50140,69274
+50141,75962
+50142,44609
+50143,30073
+50144,81602
+50145,73837
+50146,21703
+50147,25256
+50148,36710
+50149,38740
+50150,79458
+50151,68793
+50152,79282
+50153,25087
+50154,39847
+50155,22786
+50156,22032,61395
+50157,19928
+50158,35431
+50159,67675,38385
+50160,76664
+50161,25087
+50162,52421
+50163,27488
+50164,36710
+50165,19654
+50166,38475
+50167,19654
+50168,35432
+50169,42481
+50170,31245
+50171,42159
+50172,34363
+50173,72775
+50174,22543
+50175,28438
+50176,40172
+50177,63657
+50178,45813
+50179,58088
+50180,79469
+50181,81462
+50182,41765
+50183,52679
+50184,58088
+50185,24427
+50186,9280
+50187,70033
+50188,28571
+50189,39676
+50190,58888
+50191,78140
+50192,23748
+50193,31853
+50194,75403
+50195,39621
+50196,74797
+50197,58088
+50198,20474
+50199,81539
+50200,81741
+50201,23730
+50202,60042
+50203,48435
+50204,43247
+50205,61159
+50206,50215
+50207,18740
+50208,22375
+50209,81796
+50210,44744
+50211,50341
+50212,55624
+50213,60786
+50214,60786
+50215,25113
+50216,23644
+50217,36868
+50218,80976
+50219,68237,21770
+50220,41588
+50221,77988
+50222,80977
+50223,43107
+50224,69880
+50225,72055
+50226,74495
+50227,62853
+50228,55015
+50229,79547
+50230,53628
+50231,82056
+50232,48283
+50233,44232
+50234,43766
+50235,29167
+50236,33432
+50237,66756
+50238,45813
+50239,51068
+50240,32718
+50241,47173
+50242,72055
+50243,47492
+50244,50231
+50245,74640
+50246,68128
+50247,45077
+50248,41899
+50249,39049
+50250,37352
+50251,51068
+50252,53848
+50253,61335
+50254,54825
+50255,61161
+50256,23748
+50257,34283
+50258,35429
+50259,30988
+50260,19228,38879
+50261,61331
+50262,50261
+50263,73644
+50264,29687
+50265,69633,50266
+50266,73838
+50267,32792
+50268,70629
+50269,18728
+50270,48126
+50271,57158
+50272,41917
+50273,71754
+50274,40784
+50275,46826
+50276,51319
+50277,81626
+50278,27738
+50279,62187
+50280,49155
+50281,63424
+50282,79373
+50283,56894
+50284,28304
+50285,70392
+50286,72323
+50287,28079
+50288,64111
+50289,74568
+50290,6854
+50291,81227
+50292,71398
+50293,81482
+50294,77641
+50295,65006
+50296,57333
+50297,57333
+50298,26575
+50299,19384
+50300,38822
+50301,43966
+50302,75677
+50303,54554
+50304,43817
+50305,65526
+50306,56181
+50307,27688
+50308,42536
+50309,71859
+50310,68668
+50311,70187
+50312,52259
+50313,32373
+50314,58587
+50315,63316
+50316,61355
+50317,21631
+50318,21631
+50319,73838
+50320,21314
+50321,32683
+50322,40475
+50323,78561
+50324,40340
+50325,59379
+50326,50323
+50327,61355
+50328,50332
+50329,33793
+50330,32457
+50331,1444
+50332,50341
+50333,51238
+50334,48210
+50335,57113
+50336,62144
+50337,65481
+50338,73837
+50339,49444
+50340,50296
+50341,46251
+50342,68175
+50343,61670
+50344,58803
+50345,42518
+50346,21444
+50347,35480,40080
+50348,42181
+50349,42207
+50350,58798
+50351,31039
+50352,79552
+50353,70842
+50354,59541
+50355,80483
+50356,54562
+50357,70622
+50358,78703
+50359,30882
+50360,39130
+50361,32222
+50362,23183
+50363,50769
+50364,51058
+50365,18874
+50366,68236
+50367,75019
+50368,75552
+50369,59307
+50370,78647
+50371,81193
+50372,36998
+50373,21115
+50374,47746
+50375,12335
+50376,60623
+50377,32776
+50378,20755
+50379,37179
+50380,77641
+50381,19069
+50382,61705
+50383,50273
+50384,61255
+50385,52249
+50386,60933
+50387,71398
+50388,69235
+50389,54082
+50390,36268
+50391,31991
+50392,31991
+50393,51475
+50394,72122
+50395,76231
+50396,51928
+50397,29917
+50398,40473
+50399,49298
+50400,36992
+50401,50394
+50402,45851
+50403,37858
+50404,29144
+50405,50406
+50406,47805
+50407,81791
+50408,35944
+50409,50398
+50410,31618
+50411,38807
+50412,37918
+50413,64383
+50414,41899
+50415,57861
+50416,50398
+50417,50489
+50418,27997
+50419,59605
+50420,62100
+50421,61493
+50422,70110
+50423,76229
+50424,39599
+50425,81482
+50426,31417
+50427,37178
+50428,20755
+50429,30670
+50430,70549
+50431,26898
+50432,45813
+50433,81488
+50434,52658
+50435,32155
+50436,29526
+50437,32660
+50438,47908
+50439,48461
+50440,48679
+50441,60158
+50442,60216
+50443,61976
+50444,26769
+50445,60343
+50446,81961
+50447,46285
+50448,24470
+50449,41586
+50450,70548
+50451,52654
+50452,43247
+50453,55756
+50454,55756,59422
+50455,6615
+50456,30051
+50457,58287
+50458,34439
+50459,20743
+50460,78191
+50461,48319
+50462,28774
+50463,21703
+50464,79282
+50465,18728
+50466,71937
+50467,48126
+50468,48126
+50469,28091
+50470,53701
+50471,57451
+50472,73147
+50473,48126
+50474,27730,72057
+50475,59474
+50476,59475
+50477,67577
+50478,58004
+50479,39018
+50480,39018
+50481,71009
+50482,23537
+50483,37505
+50484,39018
+50485,50789
+50486,21618
+50487,36540
+50488,66985,39423
+50489,55314
+50490,43313
+50491,66985
+50492,64757
+50493,80618
+50494,79874
+50495,19228
+50496,46256
+50497,37802
+50498,48772
+50499,79552
+50500,80009
+50501,44870
+50502,34307
+50503,66690
+50504,19679
+50505,21510
+50506,22270
+50507,60166
+50508,17273
+50509,39318
+50510,27964
+50511,51901
+50512,73573
+50513,49684
+50514,68258
+50515,57893
+50516,46767
+50517,24726
+50518,21959
+50519,21632
+50520,41119
+50521,66542
+50522,62321
+50523,60385
+50524,76691
+50525,54044
+50526,34978
+50527,45521
+50528,46707
+50529,76657
+50530,31283
+50531,38098
+50532,42492
+50533,69118
+50534,59414
+50535,45921
+50536,79354
+50537,25088
+50538,51892
+50539,71446
+50540,56587
+50541,38992
+50542,80258
+50543,70746
+50544,26302
+50545,69549
+50546,81643
+50547,40908
+50548,29968
+50549,36708
+50550,70568
+50551,51182
+50552,20723
+50553,68342
+50554,51468
+50555,51167
+50556,63657
+50557,9469
+50558,25727
+50559,68721
+50560,21620
+50561,41444
+50562,57963
+50563,30891
+50564,39088
+50565,79009
+50566,71716
+50567,60216
+50568,44603
+50569,58579
+50570,19228
+50571,55374
+50572,21545
+50573,63363
+50574,63363
+50575,61355
+50576,70515
+50577,50579
+50578,80197
+50579,81647
+50580,42225,80897
+50581,45021
+50582,34859
+50583,79114
+50584,46460
+50585,20690
+50586,81738
+50587,50585
+50588,57289
+50589,70033
+50590,77641
+50591,67946
+50592,19935
+50593,79848
+50594,48943
+50595,70675
+50596,59872
+50597,70033
+50598,63883
+50599,70033
+50600,23285
+50601,38792
+50602,50875
+50603,30391
+50604,31158
+50605,31158
+50606,50764
+50607,71511
+50608,18868
+50609,37896
+50610,19649
+50611,40240
+50612,50604
+50613,50604
+50614,50604
+50615,50604
+50616,50604
+50617,50604
+50618,10831
+50619,50604
+50620,50604
+50621,10831
+50622,50603
+50623,50604
+50624,62455
+50625,43872
+50626,73863
+50627,64142
+50628,50701
+50629,47479
+50630,34285
+50631,39818
+50632,25555
+50633,28438
+50634,41917
+50635,42201
+50636,28780
+50637,63061
+50638,63144
+50639,39813
+50640,26900
+50641,25700
+50642,63863
+50643,31245
+50644,56358
+50645,23313
+50646,36755
+50647,50660
+50648,81433
+50649,65581
+50650,45777
+50651,73837
+50652,21745
+50653,26884
+50654,49883
+50655,59375
+50656,31606
+50657,39199
+50658,58136
+50659,34827
+50660,30865
+50661,29911
+50662,34772
+50663,58106
+50664,46680
+50665,66124
+50666,28432
+50667,47432
+50668,81781
+50669,28801
+50670,51523
+50671,56179
+50672,20698
+50673,68352
+50674,62144
+50675,19462
+50676,50705
+50677,78236
+50678,54082
+50679,68809
+50680,56589
+50681,73762
+50682,44005
+50683,38564
+50684,73466
+50685,81350
+50686,19036,36872
+50687,48319
+50688,34647
+50689,29235
+50690,30352
+50691,43362
+50692,61519
+50693,58137
+50694,59867
+50695,47487
+50696,69642
+50697,76657
+50698,77641
+50699,26072
+50700,42296
+50701,60216
+50702,73018
+50703,18721
+50704,25094
+50705,19228
+50706,37999
+50707,37166
+50708,47931
+50709,19234
+50710,19231
+50711,64275
+50712,65662
+50713,20404
+50714,70033
+50715,68808
+50716,69634
+50717,61259
+50718,23679
+50719,32023
+50720,30514
+50721,23748
+50722,24726
+50723,26239
+50724,45730
+50725,61251
+50726,39428
+50727,51091
+50728,51092
+50729,48318
+50730,54943
+50731,77105
+50732,68345
+50733,56183
+50734,72518
+50735,46408
+50736,50717
+50737,27624
+50738,51790
+50739,72575
+50740,51523
+50741,78678
+50742,21938
+50743,71418
+50744,46267
+50745,35482
+50746,54285
+50747,66408
+50748,48154
+50749,31245
+50750,69681
+50751,75860
+50752,76429
+50753,19171
+50754,47812
+50755,25088
+50756,35735
+50757,77471
+50758,49409
+50759,33928
+50760,68724
+50761,81907
+50762,63195
+50763,28954
+50764,63141
+50765,64949
+50766,60216
+50767,35105
+50768,51204
+50769,23258
+50770,43997
+50771,35626
+50772,31690
+50773,63316
+50774,76664
+50775,38381
+50776,75784,46251
+50777,66154
+50778,53520
+50779,24428
+50780,37237
+50781,67819
+50782,70010
+50783,73009
+50784,20759
+50785,36046
+50786,39676
+50787,29731
+50788,29731
+50789,47655
+50790,68613
+50791,39049
+50792,44480
+50793,39971
+50794,49059
+50795,70033
+50796,61901
+50797,81161
+50798,70033
+50799,81602
+50800,43986
+50801,60177
+50802,76663
+50803,74081
+50804,47666
+50805,39676
+50806,51216
+50807,69444
+50808,69439
+50809,80380
+50810,60506,37736
+50811,72829
+50812,43516
+50813,37204
+50814,29737,7764
+50815,75552
+50816,19311
+50817,65075
+50818,62713
+50819,29658
+50820,71961
+50821,62145
+50822,69908
+50823,66507
+50824,65201
+50825,64619
+50826,51473
+50827,81796
+50828,70111
+50829,20812
+50830,40986
+50831,79259
+50832,20079
+50833,38878
+50834,68857
+50835,35386
+50836,76546
+50837,36469
+50838,20960
+50839,62144
+50840,78238
+50841,44988
+50842,39112
+50843,61089
+50844,73018
+50845,45024
+50846,60216
+50847,22093
+50848,32132
+50849,62142
+50850,77277
+50851,58395
+50852,42306
+50853,42312
+50854,45733
+50855,79355
+50856,40538
+50857,61789
+50858,65787
+50859,41005
+50860,33500
+50861,51408
+50862,51408
+50863,74488
+50864,29917
+50865,35737
+50866,49200
+50867,52035
+50868,50869
+50869,38699
+50870,50869
+50871,50237,50860
+50872,63061
+50873,24749
+50874,30187
+50875,35926
+50876,36840
+50877,39556
+50878,46274
+50879,62409
+50880,62934
+50881,63139
+50882,63152
+50883,65928
+50884,60240
+50885,66551
+50886,34211
+50887,28386
+50888,73018
+50889,75015
+50890,38883
+50891,31363
+50892,50627
+50893,44440
+50894,37674
+50895,23896
+50896,35346
+50897,62145
+50898,73495
+50899,55952
+50900,42225
+50901,31070
+50902,21938
+50903,54440
+50904,71493
+50905,43810
+50906,29542
+50907,19172
+50908,25709
+50909,50912
+50910,50628,61795
+50911,62145
+50912,21886
+50913,50627
+50914,19171
+50915,51814
+50916,72807
+50917,61614
+50918,79259
+50919,45813,29780
+50920,55905
+50921,67883
+50922,63471
+50923,71968
+50924,66124
+50925,76663
+50926,29928
+50927,70944
+50928,78179
+50929,417
+50930,39996
+50931,63348
+50932,45406
+50933,43476
+50934,66862
+50935,33455
+50936,69144
+50937,29502
+50938,65778
+50939,29503
+50940,21745
+50941,38477
+50942,45812
+50943,45813
+50944,31495
+50945,45118
+50946,40564
+50947,43136
+50948,44460
+50949,49391
+50950,33939
+50951,60733
+50952,55014
+50953,40564
+50954,27150
+50955,59801
+50956,65977
+50957,71501
+50958,66592
+50959,71500
+50960,40734
+50961,50955
+50962,41735
+50963,64989
+50964,44013
+50965,57594
+50966,81482
+50967,77641
+50968,7794
+50969,62884
+50970,77431
+50971,48803
+50972,35676
+50973,40063
+50974,51191
+50975,38910
+50976,41862,60604,35254
+50977,68808
+50978,36802
+50979,76892
+50980,53964
+50981,65795
+50982,28548
+50983,58144
+50984,37479
+50985,58004
+50986,27274
+50987,27374
+50988,20760
+50989,47650
+50990,73837
+50991,45668
+50992,73398
+50993,23206
+50994,50917
+50995,50918
+50996,50919
+50997,71719
+50998,15541
+50999,41899
+51000,24084
+51001,45813
+51002,81153
+51003,78014
+51004,51400
+51005,47455
+51006,45813
+51007,51000
+51008,42225
+51009,58381
+51010,70091
+51011,77641
+51012,48894
+51013,54218
+51014,24287
+51015,82169
+51016,38005
+51017,38006
+51018,48318
+51019,19629
+51020,50205
+51021,37557
+51022,51023
+51023,48084
+51024,55866
+51025,50459
+51026,41657
+51027,53897
+51028,53894
+51029,6955
+51030,37527,39674
+51031,72290
+51032,72408
+51033,60385
+51034,42241
+51035,36129
+51036,46409
+51037,46410
+51038,59549
+51039,20944
+51040,28025
+51041,58088
+51042,26898
+51043,40752
+51044,28220
+51045,43291
+51046,49929
+51047,50059
+51048,57736
+51049,63103
+51050,62473
+51051,66999
+51052,68160
+51053,53275
+51054,58088
+51055,80132
+51056,81342
+51057,81996
+51058,75552
+51059,68242
+51060,58583
+51061,69276
+51062,19656
+51063,36137
+51064,42429
+51065,77085
+51066,58583
+51067,51696
+51068,28591
+51069,76054,35925
+51070,22420
+51071,25202
+51072,51079
+51073,27781
+51074,35924,32807
+51075,51069
+51076,51204
+51077,49945
+51078,81796
+51079,68831
+51080,51079
+51081,75647
+51082,62210
+51083,58797
+51084,73005
+51085,22032
+51086,38280
+51087,33324
+51088,50875
+51089,50875
+51090,57581
+51091,45813
+51092,67601
+51093,59605
+51094,11177
+51095,14521
+51096,38366
+51097,72416
+51098,70033
+51099,27136
+51100,24816,41500
+51101,24823
+51102,70651
+51103,37762
+51104,39014
+51105,24823
+51106,55524
+51107,2623
+51108,36602
+51109,37011
+51110,55686
+51111,65109
+51112,60756
+51113,37609
+51114,20238
+51115,61134
+51116,47948
+51117,48648
+51118,64490
+51119,52499
+51120,23021
+51121,78152
+51122,45067
+51123,51901
+51124,19462
+51125,48793
+51126,53654
+51127,26731
+51128,45170
+51129,41479
+51130,55952
+51131,48399
+51132,60417
+51133,28536
+51134,66674
+51135,39578
+51136,41650
+51137,67053
+51138,28615
+51139,31470
+51140,50369
+51141,37476
+51142,35439
+51143,38030
+51144,53607
+51145,69030
+51146,51562
+51147,31158
+51148,30985,51558
+51149,81787
+51150,51567
+51151,38473
+51152,30267
+51153,51523
+51154,62178
+51155,74610
+51156,22656
+51157,48445
+51158,28548
+51159,79608
+51160,34118
+51161,36496
+51162,45689
+51163,65759
+51164,34263
+51165,30990
+51166,19438
+51167,19438
+51168,61789
+51169,37123
+51170,76890
+51171,42475
+51172,36999
+51173,22122
+51174,18969
+51175,76139
+51176,23891
+51177,19497
+51178,60448
+51179,61789
+51180,22665
+51181,41516
+51182,41516
+51183,27276
+51184,63568
+51185,69444
+51186,63144
+51187,62145
+51188,30391
+51189,26298
+51190,66953
+51191,34646
+51192,30391
+51193,27503
+51194,27929
+51195,40077
+51196,63187
+51197,67161
+51198,46901
+51199,58281,79171
+51200,81781
+51201,68475
+51202,51182
+51203,51182
+51204,50875
+51205,22274
+51206,57190
+51207,61335
+51208,57223
+51209,66178
+51210,57573
+51211,31690
+51212,39556
+51213,68230
+51214,47552
+51215,70651
+51216,41877
+51217,51215
+51218,37154
+51219,50627
+51220,77147
+51221,27167
+51222,45813
+51223,61901
+51224,66965
+51225,77012
+51226,53624
+51227,65228
+51228,34154
+51229,62144
+51230,39276
+51231,47432
+51232,66124
+51233,61867
+51234,14318
+51235,71595
+51236,70426
+51237,39748
+51238,68843
+51239,21703
+51240,62145
+51241,30681
+51242,30680
+51243,50630
+51244,30447
+51245,30681
+51246,42446
+51247,37352
+51248,30681
+51249,76664
+51250,76664
+51251,23780
+51252,23780
+51253,58161
+51254,60216
+51255,55356
+51256,51807
+51257,76664
+51258,38794
+51259,38218
+51260,38218
+51261,51275
+51262,21672
+51263,44474
+51264,58161
+51265,38380
+51266,20984
+51267,41103
+51268,25099
+51269,27391
+51270,48445
+51271,51275
+51272,27858
+51273,57562
+51274,59811
+51275,40658,65995
+51276,64589
+51277,56182
+51278,62985
+51279,53021
+51280,75782
+51281,24807
+51282,41105
+51283,68554
+51284,22128
+51285,74486
+51286,51475
+51287,51475
+51288,31830
+51289,65994
+51290,27565
+51291,34924
+51292,50652
+51293,19755
+51294,36531
+51295,63363
+51296,80438
+51297,63775
+51298,34924
+51299,66676
+51300,31447
+51301,22105
+51302,74081
+51303,78387
+51304,60572
+51305,28591
+51306,22900
+51307,76345
+51308,24084
+51309,41607
+51310,68168
+51311,79749
+51312,62149
+51313,48349
+51314,63642
+51315,31245
+51316,71754
+51317,47491
+51318,79746
+51319,19182
+51320,35314
+51321,80101
+51322,19279
+51323,25862
+51324,80512
+51325,50201
+51326,25862
+51327,26118
+51328,37383
+51329,81369
+51330,32775
+51331,35130
+51332,40021
+51333,25598
+51334,25598
+51335,81750
+51336,63017
+51337,22000
+51338,74010
+51339,60538
+51340,54263
+51341,25598
+51342,22000
+51343,61679
+51344,60521
+51345,65509
+51346,22000
+51347,35665
+51348,35737
+51349,37450
+51350,25598
+51351,22000
+51352,34731
+51353,34924
+51354,19837
+51355,39556
+51356,77521
+51357,53163
+51358,45620
+51359,33479
+51360,21200
+51361,48551
+51362,40403
+51363,48030
+51364,79087
+51365,80612
+51366,22052
+51367,40489
+51368,60216
+51369,31278
+51370,23676
+51371,69744
+51372,43245
+51373,25598
+51374,81750
+51375,63017
+51376,24607
+51377,51523
+51378,61874
+51379,30021,46907
+51380,81549
+51381,61263
+51382,20690
+51383,81482
+51384,61260
+51385,49797
+51386,49797
+51387,63025
+51388,70375
+51389,60715
+51390,30952
+51391,39578
+51392,18530
+51393,70033
+51394,16323
+51395,26318
+51396,55080
+51397,55081
+51398,70990
+51399,66442
+51400,51395
+51401,51395
+51402,58733
+51403,51395
+51404,69666
+51405,69667
+51406,50206
+51407,37167
+51408,38984
+51409,59306
+51410,21399
+51411,25706
+51412,55692,22351
+51413,46602
+51414,80932
+51415,28547
+51416,56492
+51417,47505
+51418,47505
+51419,73837
+51420,29502
+51421,29503
+51422,49391
+51423,41735
+51424,49772
+51425,50273
+51426,63248
+51427,79418
+51428,66785,68859
+51429,39676
+51430,80547
+51431,80257
+51432,5513
+51433,38982
+51434,38910
+51435,25495
+51436,47908
+51437,47908
+51438,76658
+51439,35433
+51440,65638
+51441,22205
+51442,30937
+51443,37190
+51444,47898
+51445,80106
+51446,29418
+51447,71997
+51448,36981
+51449,75926
+51450,48894
+51451,27405
+51452,67408
+51453,69677
+51454,68676
+51455,79953
+51456,57187
+51457,64833
+51458,38369
+51459,60870
+51460,20977
+51461,48319
+51462,77641
+51463,71311
+51464,69543
+51465,37448
+51466,54430
+51467,53175
+51468,51894
+51469,41249
+51470,41249
+51471,60259
+51472,76054
+51473,53175
+51474,27701
+51475,21745
+51476,31362
+51477,35154
+51478,53958
+51479,66727
+51480,36157
+51481,70429
+51482,77871
+51483,41048
+51484,62965
+51485,49027
+51486,41053
+51487,19374
+51488,51466
+51489,58168
+51490,34305
+51491,36840
+51492,81763
+51493,59542
+51494,59542
+51495,51468
+51496,81763
+51497,21511
+51498,39408
+51499,81763
+51500,59542
+51501,51470
+51502,51472
+51503,51468
+51504,51470
+51505,76258
+51506,30682
+51507,58168
+51508,41107
+51509,62957
+51510,74281
+51511,72038
+51512,72601
+51513,64667
+51514,37712
+51515,42434
+51516,18910
+51517,19982
+51518,38196
+51519,70392
+51520,57942
+51521,21282
+51522,65614
+51523,78703
+51524,53206
+51525,41055
+51526,22542
+51527,37921
+51528,37920
+51529,30514
+51530,74599
+51531,41055
+51532,62142
+51533,51469
+51534,39049
+51535,80897
+51536,59020
+51537,36387
+51538,40864
+51539,60744
+51540,59434
+51541,57572
+51542,56488
+51543,51469
+51544,44848
+51545,41980
+51546,80284
+51547,74903
+51548,67703
+51549,68364
+51550,78606
+51551,23946
+51552,50359
+51553,31520
+51554,21703
+51555,79282
+51556,62072
+51557,59475
+51558,68290
+51559,60216
+51560,30978
+51561,60073
+51562,46892
+51563,46042
+51564,47402
+51565,65691
+51566,68280
+51567,46901
+51568,18869
+51569,52157
+51570,25119
+51571,48436
+51572,21276
+51573,63424
+51574,51523
+51575,48403
+51576,29418
+51577,39423
+51578,51579
+51579,31443
+51580,53656
+51581,39424
+51582,48218
+51583,37192
+51584,42429
+51585,22128
+51586,43692
+51587,40068
+51588,62948
+51589,34771
+51590,61918
+51591,57732
+51592,32582
+51593,49945
+51594,57637
+51595,57594
+51596,39049
+51597,73222
+51598,39767
+51599,39049
+51600,45826
+51601,24084
+51602,28132
+51603,45813
+51604,45813
+51605,71308
+51606,46962
+51607,41114
+51608,33242,51601
+51609,51601
+51610,51601
+51611,68363
+51612,61260
+51613,38920,21743
+51614,53133
+51615,52777
+51616,57640
+51617,39676
+51618,34016
+51619,65217
+51620,58088
+51621,38053
+51622,61317
+51623,74939
+51624,52544
+51625,53717
+51626,54059
+51627,76054
+51628,78160
+51629,59549
+51630,31423
+51631,67883
+51632,77424
+51633,79458
+51634,51622
+51635,69123
+51636,52777
+51637,19536
+51638,60391
+51639,42246,47047
+51640,19936
+51641,43364
+51642,40793
+51643,40794
+51644,31520
+51645,72970
+51646,19771,33194
+51647,21905
+51648,71557
+51649,25119
+51650,51643
+51651,35197
+51652,34859
+51653,35130
+51654,57144
+51655,56771,33194
+51656,58630
+51657,71269
+51658,79874
+51659,44615
+51660,75917
+51661,39811
+51662,38637
+51663,51642
+51664,26103
+51665,19936
+51666,51204
+51667,8407
+51668,10337
+51669,17272
+51670,50872
+51671,32
+51672,39049
+51673,32323
+51674,72055
+51675,71961
+51676,43845
+51677,33889
+51678,21826
+51679,33885
+51680,79915
+51681,68831
+51682,69123
+51683,80239
+51684,75477
+51685,54950
+51686,38475
+51687,48084
+51688,58170
+51689,59462
+51690,19311
+51691,9828
+51692,41743
+51693,37179
+51694,54181
+51695,70627
+51696,48629
+51697,47814
+51698,35922
+51699,31208
+51700,19655
+51701,81789
+51702,32964
+51703,51705
+51704,66321
+51705,46901
+51706,60216
+51707,48485
+51708,81789
+51709,81789
+51710,63141
+51711,51705
+51712,54568
+51713,59549
+51714,54082
+51715,27479,52762
+51716,62948
+51717,36795
+51718,62967
+51719,61243
+51720,62968
+51721,35863
+51722,35858
+51723,66814
+51724,74146
+51725,50649
+51726,18728
+51727,62146
+51728,54285
+51729,59376
+51730,63061
+51731,64180
+51732,19072
+51733,59020
+51734,38600
+51735,66377,78595
+51736,67213
+51737,20751
+51738,31825
+51739,24188
+51740,70900
+51741,70987
+51742,53439
+51743,75566
+51744,22230
+51745,23103
+51746,20883
+51747,45869
+51748,26106
+51749,79467
+51750,60797
+51751,37279
+51752,40089,54605
+51753,82130
+51754,23242
+51755,22850
+51756,58579
+51757,66407
+51758,70504
+51759,70557
+51760,70725
+51761,76104
+51762,76839,54605
+51763,64129
+51764,64130
+51765,68668
+51766,76138
+51767,22269
+51768,66690
+51769,22455
+51770,24349
+51771,25099
+51772,51825
+51773,57289
+51774,73056
+51775,56399
+51776,70651
+51777,19228
+51778,20772
+51779,60216
+51780,48210
+51781,79189
+51782,48590
+51783,33751
+51784,51786,27497
+51785,46599
+51786,35534
+51787,40807
+51788,67972
+51789,52552
+51790,26192
+51791,78664
+51792,27562
+51793,30937
+51794,72700
+51795,37712
+51796,61159
+51797,41926
+51798,31029
+51799,59970
+51800,21620
+51801,54724
+51802,74146
+51803,46827
+51804,26827
+51805,66953
+51806,66954
+51807,81004
+51808,78059
+51809,79963
+51810,50875
+51811,74234
+51812,74146
+51813,55586
+51814,67968
+51815,53275
+51816,58088
+51817,71398
+51818,38529
+51819,61182
+51820,33645
+51821,47908
+51822,37412
+51823,37405
+51824,47908
+51825,80613
+51826,51440
+51827,64846
+51828,80405
+51829,22128
+51830,64846
+51831,45039
+51832,73445
+51833,41005
+51834,25770
+51835,71446
+51836,34085
+51837,21273
+51838,22274
+51839,21673
+51840,57562
+51841,81578
+51842,27405
+51843,81578
+51844,45813
+51845,57554
+51846,66260
+51847,63363
+51848,61577
+51849,24314
+51850,59970
+51851,38789
+51852,62456
+51853,60258
+51854,61260
+51855,52097
+51856,25115
+51857,63218
+51858,51856
+51859,18728
+51860,50717
+51861,72323
+51862,45813
+51863,44484
+51864,60899
+51865,63600
+51866,73207
+51867,69677
+51868,34108
+51869,68623
+51870,72503
+51871,77552
+51872,73207
+51873,51867
+51874,75411
+51875,35557
+51876,70629
+51877,69544
+51878,51856
+51879,63659
+51880,20647
+51881,20650
+51882,31117
+51883,19649
+51884,26980
+51885,43815
+51886,43809
+51887,68974
+51888,58283
+51889,73650
+51890,56871
+51891,34867
+51892,62938
+51893,81647
+51894,57333
+51895,69028
+51896,74599
+51897,48270
+51898,50215
+51899,51649
+51900,53660
+51901,39423
+51902,81752
+51903,44792
+51904,66154
+51905,37776
+51906,42337
+51907,58023
+51908,39556
+51909,75018
+51910,59425
+51911,47709
+51912,39423
+51913,66953
+51914,27781
+51915,63416
+51916,61474
+51917,70629
+51918,57242
+51919,66060
+51920,80207
+51921,71039
+51922,72866
+51923,53109
+51924,52509
+51925,49113
+51926,20745
+51927,54837
+51928,55347
+51929,68990
+51930,50919
+51931,28091
+51932,72834
+51933,70516
+51934,69330
+51935,59419
+51936,70516
+51937,81482
+51938,69891
+51939,77641
+51940,61956
+51941,34641
+51942,72892
+51943,54867
+51944,60168
+51945,42341
+51946,46782
+51947,36868
+51948,75784
+51949,66039
+51950,46782,18958
+51951,20057
+51952,39427
+51953,71446
+51954,61080
+51955,40702
+51956,40702
+51957,69682
+51958,25223
+51959,81482
+51960,81801
+51961,81801
+51962,53624
+51963,26777
+51964,31991
+51965,23946
+51966,80668
+51967,38844
+51968,68059
+51969,65204
+51970,22765
+51971,68613
+51972,70016
+51973,21408
+51974,81601
+51975,60453
+51976,75020
+51977,62935
+51978,30824
+51979,75020
+51980,52832
+51981,55596
+51982,37478
+51983,57927
+51984,63192
+51985,39225
+51986,62165
+51987,63284
+51988,65691
+51989,77051
+51990,64142
+51991,38807
+51992,60450
+51993,39460
+51994,68030
+51995,49358
+51996,74489
+51997,63494
+51998,21628
+51999,53338
+52000,77306
+52001,47413
+52002,35682
+52003,21507
+52004,52990
+52005,38630
+52006,81482
+52007,24607
+52008,33500
+52009,25115
+52010,33513
+52011,25115
+52012,36129
+52013,33922
+52014,72667
+52015,27167
+52016,33069
+52017,70033
+52018,61614
+52019,21025
+52020,48980
+52021,47991
+52022,53276
+52023,62509
+52024,79467
+52025,58579
+52026,31292
+52027,23748
+52028,44030
+52029,79640
+52030,32325
+52031,37873
+52032,12337
+52033,53867
+52034,23691
+52035,25256
+52036,28418
+52037,26980
+52038,35878
+52039,44697
+52040,49343
+52041,50439
+52042,48874
+52043,78606
+52044,39846
+52045,51523
+52046,78020
+52047,76664
+52048,67853
+52049,31647
+52050,42075
+52051,70814
+52052,30391
+52053,76664
+52054,27215
+52055,22414
+52056,77985
+52057,78578
+52058,64527
+52059,41743
+52060,37179
+52061,25046
+52062,25522
+52063,21434
+52064,60216
+52065,52075
+52066,57680
+52067,52781
+52068,45064
+52069,76236
+52070,23693
+52071,34783
+52072,20723
+52073,81974
+52074,50976
+52075,36802
+52076,60534
+52077,80522
+52078,36800
+52079,32457
+52080,36055
+52081,39767
+52082,52288
+52083,21218
+52084,69123
+52085,55170
+52086,68652
+52087,20690
+52088,54694
+52089,20690
+52090,80253
+52091,62190
+52092,73838
+52093,52084
+52094,76059
+52095,47432
+52096,42371
+52097,70386
+52098,29833
+52099,40115
+52100,63187
+52101,48708
+52102,40625
+52103,25710
+52104,20455
+52105,49997
+52106,77051
+52107,20307
+52108,46268
+52109,20745
+52110,60216
+52111,81601
+52112,31023
+52113,71102
+52114,71103
+52115,78772
+52116,47743
+52117,55485
+52118,55485
+52119,20226
+52120,74067
+52121,45813
+52122,73395
+52123,61541
+52124,22004
+52125,37179
+52126,41743
+52127,23925
+52128,41877
+52129,81703
+52130,72210
+52131,22271
+52132,31638
+52133,72027
+52134,69600
+52135,52138
+52136,79973
+52137,77995
+52138,59286
+52139,42076
+52140,31647
+52141,73632
+52142,40064
+52143,34175
+52144,77444
+52145,38793
+52146,39152
+52147,35433
+52148,74275
+52149,28530
+52150,64846
+52151,34646
+52152,27086
+52153,77277
+52154,80273
+52155,9643
+52156,76877
+52157,65795
+52158,18951
+52159,42102
+52160,25022
+52161,80324
+52162,80324
+52163,33954
+52164,62146
+52165,70033
+52166,49835
+52167,77976
+52168,37422
+52169,32555
+52170,50215
+52171,30300
+52172,66953
+52173,43264
+52174,52175
+52175,29928
+52176,52175
+52177,52175
+52178,45000
+52179,48318
+52180,35359
+52181,29984
+52182,68330
+52183,70746
+52184,81227
+52185,45812
+52186,45813
+52187,51625
+52188,68352
+52189,37686
+52190,57332
+52191,69444
+52192,56655
+52193,59452
+52194,61026
+52195,20282
+52196,49600
+52197,65699
+52198,71314
+52199,44013
+52200,49997
+52201,60235
+52202,52458
+52203,53239
+52204,71395
+52205,71595
+52206,73495
+52207,35930
+52208,59286
+52209,60216
+52210,36052
+52211,60216
+52212,60932
+52213,49802
+52214,36505
+52215,52189
+52216,34362
+52217,19808
+52218,56399
+52219,24961
+52220,65424
+52221,51630
+52222,35130
+52223,54446
+52224,41247
+52225,64533
+52226,40020
+52227,35130
+52228,45042
+52229,80325
+52230,16022
+52231,23537
+52232,18854
+52233,25727
+52234,30588
+52235,38836
+52236,64513
+52237,46285
+52238,61075
+52239,79711
+52240,34657
+52241,73018
+52242,76546
+52243,28851
+52244,23948
+52245,25496
+52246,29626
+52247,76062
+52248,34154
+52249,49149,21743
+52250,51435
+52251,50649
+52252,66109
+52253,66108
+52254,71019
+52255,78579
+52256,34209
+52257,55493
+52258,55601
+52259,56163
+52260,77666
+52261,70320
+52262,45632
+52263,34362
+52264,71058
+52265,52762
+52266,74500
+52267,52189
+52268,39809
+52269,27167
+52270,39725
+52271,46268
+52272,65481
+52273,74081
+52274,53656
+52275,31245
+52276,21276
+52277,67845
+52278,20757
+52279,60417
+52280,60417
+52281,52159
+52282,64738
+52283,51701
+52284,30265
+52285,25022
+52286,37165
+52287,67570
+52288,79608
+52289,63218
+52290,81746
+52291,70776
+52292,70778
+52293,27698
+52294,30954
+52295,27698
+52296,25046
+52297,76825
+52298,41119
+52299,61848
+52300,80162
+52301,27021
+52302,71594
+52303,71595
+52304,22561
+52305,21703
+52306,72212
+52307,61468
+52308,56451
+52309,28260
+52310,79282
+52311,79429
+52312,26302
+52313,73476
+52314,77287
+52315,49079
+52316,50117
+52317,39122
+52318,81647
+52319,56451
+52320,28091
+52321,52330
+52322,51349
+52323,28132
+52324,51319
+52325,52327
+52326,21770
+52327,60604
+52328,64471
+52329,64472
+52330,51349
+52331,51349
+52332,1230
+52333,74192
+52334,59645
+52335,18728
+52336,50105
+52337,75511
+52338,68364
+52339,52338
+52340,67951
+52341,48313
+52342,26944
+52343,70333
+52344,32755
+52345,33927
+52346,37104
+52347,71859
+52348,51468
+52349,55151
+52350,81906
+52351,27649
+52352,70091
+52353,61793
+52354,53593
+52355,30329,51833
+52356,53760
+52357,37041
+52358,37042
+52359,66132
+52360,53597
+52361,41279
+52362,57897
+52363,66103
+52364,79825
+52365,27497
+52366,72689
+52367,55497
+52368,25290
+52369,60744
+52370,67608
+52371,26944
+52372,76657
+52373,34199
+52374,81549
+52375,70651
+52376,52375,22305
+52377,52375,78106
+52378,34272
+52379,55347
+52380,55348
+52381,42003
+52382,22159
+52383,79991
+52384,45964
+52385,55263
+52386,43384
+52387,25949
+52388,62356
+52389,76664
+52390,28344
+52391,29194
+52392,68638
+52393,35557
+52394,43708
+52395,54082
+52396,32691
+52397,55768
+52398,47492
+52399,69702
+52400,18853
+52401,61431
+52402,48015
+52403,80510
+52404,51540
+52405,859
+52406,26669
+52407,52593
+52408,44914
+52409,42337
+52410,40752
+52411,27640
+52412,28064
+52413,46386
+52414,45730
+52415,54691
+52416,39281
+52417,55314
+52418,44013
+52419,51649
+52420,52431
+52421,36710
+52422,48126
+52423,19324
+52424,59549
+52425,37140
+52426,20679
+52427,20680
+52428,20683
+52429,48126
+52430,79214
+52431,20760
+52432,37162
+52433,52435
+52434,52438
+52435,51100
+52436,29201
+52437,21488
+52438,51099
+52439,24823
+52440,24823
+52441,74807
+52442,79328
+52443,33667
+52444,27136
+52445,58162
+52446,74939
+52447,62456
+52448,54833
+52449,55662
+52450,26155
+52451,81153
+52452,20997,79222
+52453,70392
+52454,45206
+52455,30514
+52456,59441
+52457,61621
+52458,76054
+52459,55766
+52460,38991
+52461,81781
+52462,19069
+52463,44923,36610,31759
+52464,74081
+52465,38366
+52466,54059
+52467,47770
+52468,31767
+52469,35723
+52470,58162
+52471,31241
+52472,58154
+52473,38053
+52474,20763
+52475,55324
+52476,79845
+52477,59615
+52478,57249
+52479,37181
+52480,52478
+52481,12335
+52482,33810
+52483,59475
+52484,59474
+52485,59476
+52486,31853
+52487,59286
+52488,72142
+52489,72715
+52490,57573
+52491,35557
+52492,71432
+52493,49944
+52494,59151
+52495,60216
+52496,58168
+52497,34924
+52498,58168
+52499,53648
+52500,37486
+52501,37486
+52502,25194
+52503,30188
+52504,22314
+52505,61796
+52506,51141
+52507,68448
+52508,81656
+52509,69408
+52510,52497
+52511,21751,31099
+52512,75019
+52513,52497
+52514,32691
+52515,79709
+52516,53306
+52517,72078
+52518,52803
+52519,64662
+52520,67703
+52521,68330
+52522,68038
+52523,69564
+52524,70692
+52525,39049
+52526,24651
+52527,25046
+52528,30062
+52529,39049
+52530,47699
+52531,81251
+52532,50125
+52533,18740
+52534,48403
+52535,79266
+52536,35136
+52537,18740
+52538,20635
+52539,59549
+52540,37124
+52541,37127
+52542,38576
+52543,24354
+52544,54967,58158
+52545,34985
+52546,60350
+52547,50737
+52548,33581
+52549,21477
+52550,39014,34354
+52551,39014
+52552,72451
+52553,33302
+52554,62034
+52555,33305
+52556,33851
+52557,26605
+52558,33765
+52559,52560
+52560,20689
+52561,79261
+52562,38991
+52563,39049
+52564,65770
+52565,59373
+52566,70426
+52567,31516
+52568,21398
+52569,52352
+52570,81462
+52571,81462
+52572,21765
+52573,29833
+52574,15526
+52575,32929
+52576,63117
+52577,74482
+52578,62744,63663
+52579,63670
+52580,73475
+52581,21729
+52582,64438
+52583,70471
+52584,63917
+52585,44480
+52586,74433
+52587,65795
+52588,70849
+52589,22065
+52590,42518
+52591,72623
+52592,60071
+52593,18720
+52594,60076
+52595,62145
+52596,49353
+52597,66785
+52598,54562
+52599,54082
+52600,24037
+52601,27479
+52602,47105
+52603,56758
+52604,74250
+52605,34924
+52606,31616
+52607,56872
+52608,30958
+52609,64734
+52610,20698
+52611,35351
+52612,35354
+52613,53870
+52614,39824
+52615,39877
+52616,52637
+52617,37444
+52618,48254
+52619,64623
+52620,51495
+52621,53986
+52622,40674
+52623,77091
+52624,59338
+52625,52605
+52626,43103
+52627,65213
+52628,66075
+52629,47510
+52630,73468
+52631,60264
+52632,52633
+52633,53870
+52634,22158
+52635,43126
+52636,48894
+52637,53619
+52638,60604
+52639,56179
+52640,42469
+52641,68285
+52642,47058
+52643,54130
+52644,41103
+52645,37450
+52646,52645
+52647,52614
+52648,78097
+52649,64846
+52650,38768
+52651,37513
+52652,47673
+52653,68285
+52654,47671
+52655,63314
+52656,65691
+52657,23095
+52658,20690
+52659,35096
+52660,35097
+52661,81255
+52662,81612
+52663,66916
+52664,32233
+52665,46186
+52666,19634
+52667,19634
+52668,71632
+52669,62853
+52670,62914
+52671,62922
+52672,67546
+52673,45946
+52674,81482
+52675,77641
+52676,36540
+52677,38084
+52678,43313
+52679,36043
+52680,22233
+52681,81161
+52682,40619
+52683,74572
+52684,58467
+52685,60936
+52686,57478
+52687,39676
+52688,72323
+52689,39621
+52690,68277
+52691,54043
+52692,31825
+52693,30883
+52694,30391
+52695,26730
+52696,66893
+52697,27408
+52698,41469
+52699,58107
+52700,70922
+52701,77357
+52702,62360
+52703,22684
+52704,25046
+52705,25574
+52706,36566
+52707,60216
+52708,19272
+52709,31616
+52710,52694
+52711,77493
+52712,19305
+52713,51677
+52714,76591
+52715,74823
+52716,34437
+52717,71655
+52718,60993
+52719,25113
+52720,77042
+52721,67565
+52722,29664
+52723,52734
+52724,34154
+52725,34992
+52726,52729
+52727,59542
+52728,67069
+52729,73650
+52730,81872
+52731,35196
+52732,50296
+52733,53369
+52734,67565
+52735,72518
+52736,41186
+52737,76337
+52738,74492
+52739,81808
+52740,21112
+52741,46782
+52742,36983
+52743,73863
+52744,30680
+52745,35480
+52746,69274
+52747,42446
+52748,75566
+52749,22452
+52750,34664
+52751,39414
+52752,59315
+52753,49687
+52754,50742
+52755,22850
+52756,51855
+52757,62648
+52758,54865
+52759,74231
+52760,57934
+52761,75902
+52762,77394
+52763,65707
+52764,57194
+52765,19636
+52766,50910
+52767,76388
+52768,57964
+52769,35922
+52770,62778
+52771,23628
+52772,65198
+52773,32799
+52774,62659
+52775,38782
+52776,38545
+52777,32246
+52778,80613
+52779,57333
+52780,31039
+52781,52523
+52782,70033
+52783,21920
+52784,74973
+52785,27175
+52786,27176
+52787,54562
+52788,59549
+52789,82163
+52790,82164
+52791,33178
+52792,60243
+52793,31245
+52794,56578
+52795,35490
+52796,70777
+52797,54771
+52798,63471
+52799,55294
+52800,60285
+52801,60216
+52802,20743
+52803,60216
+52804,22773
+52805,21525
+52806,46885
+52807,25245
+52808,69428
+52809,21001
+52810,76320
+52811,52803
+52812,81492
+52813,42503
+52814,46599,52802
+52815,47243
+52816,65955
+52817,28951,52803
+52818,58093
+52819,58183
+52820,65955
+52821,65957
+52822,49860
+52823,38385,20994
+52824,70033
+52825,52831
+52826,38566
+52827,19069
+52828,69410
+52829,53783
+52830,38566
+52831,45276
+52832,63187
+52833,81808
+52834,81807
+52835,39151
+52836,39151
+52837,33134
+52838,52831
+52839,35534
+52840,46003
+52841,22350
+52842,78160,52839
+52843,38566
+52844,50701
+52845,70717
+52846,38523
+52847,1923
+52848,36694
+52849,60604
+52850,38477
+52851,53783
+52852,52851
+52853,72437
+52854,44963
+52855,36635
+52856,22219
+52857,70033
+52858,10203
+52859,34316
+52860,35626
+52861,71023
+52862,57693
+52863,52857
+52864,27374
+52865,76989
+52866,62147
+52867,81808
+52868,81808
+52869,48445
+52870,43893
+52871,50201
+52872,54465
+52873,48202
+52874,54562
+52875,35432
+52876,54784
+52877,52773
+52878,79618
+52879,81808
+52880,71439
+52881,37317
+52882,33799
+52883,37179
+52884,56492
+52885,79432
+52886,39294
+52887,42539
+52888,82163
+52889,82164
+52890,38740
+52891,41743
+52892,26827
+52893,66873
+52894,34987
+52895,80510
+52896,37532
+52897,76192
+52898,56029
+52899,46436
+52900,74036
+52901,60216
+52902,52803
+52903,52803,52210
+52904,52803,19438
+52905,42097
+52906,29928
+52907,71493
+52908,39767
+52909,55236
+52910,80185
+52911,19629
+52912,46765
+52913,60216
+52914,19230
+52915,46899
+52916,66482
+52917,77280
+52918,56868
+52919,19376
+52920,71310
+52921,19492
+52922,69301
+52923,48584
+52924,41107
+52925,35399
+52926,62145
+52927,37191
+52928,78432
+52929,41955
+52930,17277
+52931,1584
+52932,68562
+52933,34771
+52934,81770
+52935,37571
+52936,57573
+52937,3599
+52938,29502
+52939,29503
+52940,36694
+52941,65133
+52942,30676
+52943,50875
+52944,35787
+52945,22268
+52946,48247
+52947,74990
+52948,47808
+52949,52950
+52950,29194
+52951,45813
+52952,66965
+52953,22500
+52954,44792
+52955,44792
+52956,38521
+52957,55347
+52958,57932
+52959,55489
+52960,54837
+52961,61238
+52962,53306
+52963,57106
+52964,12335
+52965,67675
+52966,54082
+52967,20174
+52968,20122
+52969,31058
+52970,19069
+52971,54562
+52972,20745
+52973,23741
+52974,23742
+52975,31616
+52976,29919
+52977,20690
+52978,37179
+52979,41743
+52980,37179
+52981,41743
+52982,20690
+52983,30153
+52984,46268
+52985,77012
+52986,19452
+52987,62145
+52988,68652
+52989,19549
+52990,48920
+52991,39324
+52992,70091
+52993,59475
+52994,27562,23628
+52995,69331
+52996,23620
+52997,50875
+52998,47631
+52999,21213
+53000,47944
+53001,34166
+53002,53477
+53003,60993
+53004,59020
+53005,70990
+53006,59020
+53007,77641
+53008,54837
+53009,48150
+53010,37477
+53011,60216
+53012,76210
+53013,67851
+53014,21814
+53015,53588
+53016,38477
+53017,50806
+53018,21922
+53019,36755
+53020,49797
+53021,63314
+53022,34470
+53023,38883
+53024,34470
+53025,35815
+53026,62762
+53027,38381
+53028,53033
+53029,66953
+53030,33388
+53031,66035
+53032,69274
+53033,46782
+53034,46377
+53035,24651
+53036,64921
+53037,69653
+53038,27296
+53039,69682
+53040,55952
+53041,68128
+53042,35108
+53043,73408
+53044,56532
+53045,41406
+53046,50649
+53047,74903
+53048,38115
+53049,44407
+53050,55388
+53051,67462
+53052,77552
+53053,43828
+53054,45017
+53055,20196
+53056,50104
+53057,38700
+53058,25256
+53059,26577
+53060,52773
+53061,81153
+53062,51174
+53063,58155
+53064,22302
+53065,81789
+53066,70033
+53067,65925
+53068,64965
+53069,63217
+53070,55893
+53071,81482
+53072,20690
+53073,37623
+53074,27455
+53075,75013
+53076,49665,42481
+53077,34944
+53078,63060
+53079,21892
+53080,66862
+53081,39513
+53082,73477
+53083,60042
+53084,37179
+53085,41743
+53086,45813
+53087,41729
+53088,71733
+53089,74735
+53090,51640
+53091,52859
+53092,41083
+53093,78598
+53094,67325
+53095,22116
+53096,66785
+53097,68522
+53098,22786
+53099,26884
+53100,76065
+53101,28954
+53102,82092
+53103,77641
+53104,37178
+53105,25721
+53106,44816
+53107,63072
+53108,63195
+53109,80011
+53110,67957
+53111,48210
+53112,59775
+53113,22896
+53114,55742
+53115,53467
+53116,58102
+53117,81065
+53118,9280
+53119,46599
+53120,65581
+53121,29478
+53122,80421
+53123,80421
+53124,10749
+53125,67946
+53126,43509
+53127,72503
+53128,30153
+53129,44491
+53130,81153
+53131,71841
+53132,20409
+53133,25496
+53134,36271
+53135,26049
+53136,34460
+53137,64846
+53138,53132,47928
+53139,55023
+53140,61161
+53141,78992
+53142,81492
+53143,57063
+53144,62147
+53145,71321
+53146,54416
+53147,9930
+53148,74067
+53149,37955
+53150,40752
+53151,27200
+53152,60042
+53153,35906
+53154,31239
+53155,71881
+53156,71493
+53157,20743
+53158,21433
+53159,37908
+53160,43475
+53161,47455
+53162,55799
+53163,67577
+53164,51395
+53165,63007
+53166,49858
+53167,50888
+53168,55662
+53169,48598
+53170,45812
+53171,81802
+53172,47697
+53173,6634
+53174,38512
+53175,47944
+53176,74903
+53177,70415
+53178,81794
+53179,21745
+53180,74903
+53181,29626
+53182,19228
+53183,48030
+53184,53202
+53185,20533
+53186,27341
+53187,55154
+53188,33928
+53189,37130
+53190,37120
+53191,42181
+53192,42207
+53193,56599
+53194,58107
+53195,59885
+53196,73586
+53197,77192
+53198,79086
+53199,30650
+53200,69875
+53201,32269
+53202,65999
+53203,53952
+53204,81101
+53205,34771
+53206,34197
+53207,38511
+53208,47910
+53209,6053
+53210,69945
+53211,70627
+53212,56474
+53213,35388
+53214,75919
+53215,71446
+53216,70033
+53217,24162
+53218,70994
+53219,45009
+53220,54091
+53221,31495
+53222,70033
+53223,77641
+53224,71719
+53225,62266
+53226,11862
+53227,66862
+53228,32875
+53229,78647
+53230,63917
+53231,40231
+53232,27239
+53233,59811
+53234,48269
+53235,9930
+53236,78684
+53237,39296
+53238,53167
+53239,66695
+53240,23643
+53241,26048
+53242,31690
+53243,44558
+53244,51204
+53245,53238
+53246,57556
+53247,37559
+53248,60216
+53249,33725
+53250,31447
+53251,74297
+53252,74296
+53253,25256
+53254,59657
+53255,39049
+53256,80713
+53257,16022
+53258,20626
+53259,27093
+53260,80389
+53261,53275
+53262,45813
+53263,39676
+53264,54141
+53265,42523
+53266,81505
+53267,45222
+53268,45222
+53269,46662
+53270,20235
+53271,53275
+53272,58088
+53273,81125
+53274,67412
+53275,21361
+53276,81743
+53277,30680
+53278,50630
+53279,81876
+53280,62145
+53281,27167
+53282,72503
+53283,54113
+53284,62361
+53285,41284
+53286,55815
+53287,71524
+53288,68959
+53289,50603
+53290,74659
+53291,22266
+53292,72701
+53293,30153
+53294,45813
+53295,79546
+53296,79546
+53297,34041
+53298,50063
+53299,24437
+53300,27167
+53301,52777
+53302,82176
+53303,32780
+53304,58166
+53305,42425
+53306,77374
+53307,44474
+53308,58088
+53309,20456
+53310,74620
+53311,39563
+53312,62294
+53313,49897
+53314,48874
+53315,48874
+53316,61145
+53317,63424
+53318,32578,35551
+53319,31139
+53320,22789,53335
+53321,70010
+53322,69106
+53323,68176
+53324,19343
+53325,69450
+53326,60273
+53327,32691
+53328,51116
+53329,23679
+53330,72114
+53331,79468
+53332,73838
+53333,77287
+53334,62778
+53335,59377
+53336,59333
+53337,25092
+53338,30391
+53339,41862,60604
+53340,62938
+53341,62938
+53342,33324
+53343,53339
+53344,53339
+53345,32770
+53346,55668
+53347,57098
+53348,53354
+53349,63124
+53350,53351
+53351,72036
+53352,72037
+53353,72038
+53354,78703
+53355,77636
+53356,81025
+53357,61144
+53358,60606
+53359,64873
+53360,73805
+53361,39091
+53362,53358
+53363,53358
+53364,50693
+53365,43107
+53366,57241
+53367,39563
+53368,61732
+53369,71900
+53370,71572
+53371,44046
+53372,58776
+53373,18728
+53374,68230
+53375,37718
+53376,57570
+53377,32793
+53378,22269
+53379,18868
+53380,60341
+53381,23664
+53382,29625
+53383,31109
+53384,37991
+53385,61202
+53386,64401
+53387,69216
+53388,37197
+53389,65217
+53390,18969
+53391,81602
+53392,70627
+53393,62145
+53394,18969
+53395,36069
+53396,76778
+53397,77008
+53398,51677
+53399,56180
+53400,28202,39988
+53401,70033
+53402,81635
+53403,27624
+53404,48126
+53405,63052
+53406,63064
+53407,32718
+53408,18728
+53409,48126
+53410,59549
+53411,61317
+53412,22295
+53413,60216
+53414,53337
+53415,58734
+53416,40704
+53417,72435
+53418,55443
+53419,26368
+53420,31417
+53421,68352
+53422,31646
+53423,32426
+53424,51353
+53425,51353
+53426,36793
+53427,58808
+53428,61209
+53429,43686
+53430,61643
+53431,25019
+53432,40947
+53433,25574
+53434,41870
+53435,55785
+53436,53688
+53437,53687
+53438,73222
+53439,74067
+53440,81482
+53441,24393
+53442,81482
+53443,20743
+53444,41607
+53445,24007
+53446,46285
+53447,70453
+53448,57570
+53449,40318
+53450,55324
+53451,21272
+53452,48157
+53453,38218
+53454,74082
+53455,25763
+53456,21905
+53457,81433
+53458,34782
+53459,60450
+53460,27339
+53461,56887
+53462,65737
+53463,64142
+53464,56179
+53465,21213
+53466,45039
+53467,38218
+53468,25245
+53469,27562
+53470,46680
+53471,80135
+53472,75548
+53473,57058
+53474,26933
+53475,63284
+53476,65691
+53477,71842,69330
+53478,72983
+53479,28591
+53480,68290
+53481,68280
+53482,18869
+53483,74067
+53484,76112
+53485,27233
+53486,81462
+53487,81462,45382
+53488,71318
+53489,59283
+53490,59284
+53491,30412
+53492,19398
+53493,78668
+53494,49484
+53495,67459
+53496,70033
+53497,66785
+53498,37779
+53499,21622
+53500,20760
+53501,54947
+53502,25119
+53503,53507
+53504,19982
+53505,53507
+53506,53507
+53507,53474
+53508,53507
+53509,80140
+53510,57223,81462
+53511,81065
+53512,22128
+53513,56009
+53514,21780
+53515,54825
+53516,81789
+53517,77974
+53518,31478
+53519,60600
+53520,31165
+53521,39111
+53522,32578
+53523,60664
+53524,58734
+53525,23653
+53526,58734
+53527,58162
+53528,72959
+53529,33897
+53530,25770
+53531,36767
+53532,53592
+53533,44963
+53534,30557
+53535,73222
+53536,80618
+53537,26488
+53538,63883
+53539,26953
+53540,56896
+53541,69161
+53542,37690
+53543,70675
+53544,58088
+53545,21703
+53546,70474
+53547,79282
+53548,68030
+53549,53474
+53550,47871
+53551,51433
+53552,38985,50438
+53553,76196
+53554,40860
+53555,45813
+53556,77641
+53557,38088
+53558,45316
+53559,32926
+53560,36452
+53561,29534,61795
+53562,62145
+53563,81065
+53564,53561
+53565,62187
+53566,59452
+53567,31043
+53568,75018
+53569,25545
+53570,33793
+53571,40965
+53572,19091
+53573,25872
+53574,26662
+53575,67548
+53576,32713
+53577,41399
+53578,43672
+53579,49432
+53580,19629
+53581,61025
+53582,81161
+53583,81161
+53584,68025
+53585,72186
+53586,72308
+53587,79852
+53588,44013
+53589,11865
+53590,48432
+53591,57438
+53592,41022
+53593,57261
+53594,74492
+53595,32495
+53596,36938
+53597,46767
+53598,50459
+53599,30103
+53600,22389
+53601,34915
+53602,35735
+53603,54872
+53604,76672
+53605,33455
+53606,57991
+53607,54044
+53608,47388
+53609,70234
+53610,48355
+53611,73284
+53612,48423
+53613,47656
+53614,27321
+53615,48305
+53616,31615
+53617,31616
+53618,55760
+53619,18840
+53620,52959
+53621,19228
+53622,60216
+53623,53617
+53624,48408
+53625,53624
+53626,78703
+53627,27997
+53628,41005
+53629,23289
+53630,32384
+53631,54469
+53632,19688
+53633,46490
+53634,46781
+53635,35557,51834
+53636,49273
+53637,60733
+53638,67502
+53639,76196
+53640,35557
+53641,58715
+53642,59423
+53643,79401
+53644,31115
+53645,77045
+53646,51238
+53647,64846
+53648,53660
+53649,36404
+53650,37884
+53651,37908
+53652,37913
+53653,54825
+53654,60603
+53655,60641
+53656,75018
+53657,60612
+53658,56176
+53659,60450
+53660,34924
+53661,28790
+53662,60073
+53663,60448
+53664,31245
+53665,28074
+53666,21012
+53667,56950
+53668,39534
+53669,48318
+53670,43686
+53671,81307
+53672,43701
+53673,30300
+53674,45689
+53675,37623
+53676,78815
+53677,28539
+53678,19492
+53679,47978
+53680,31283
+53681,42492
+53682,57514
+53683,22389
+53684,57066
+53685,28091
+53686,56361
+53687,48666
+53688,56362
+53689,53688
+53690,45813
+53691,45458
+53692,24143
+53693,26298
+53694,77636
+53695,28236
+53696,34986
+53697,38509
+53698,38789
+53699,27792
+53700,48401
+53701,48408
+53702,53704
+53703,62455
+53704,45458
+53705,63060
+53706,45457
+53707,63152
+53708,65910
+53709,43872
+53710,51277
+53711,68290
+53712,73863
+53713,28702
+53714,76162
+53715,50829
+53716,53710
+53717,36602
+53718,50764
+53719,22786
+53720,26786
+53721,69516
+53722,64196
+53723,31626
+53724,31626
+53725,20596
+53726,51642
+53727,74082
+53728,74082
+53729,72959
+53730,38043
+53731,48423
+53732,30883
+53733,77491
+53734,63566
+53735,64513
+53736,72839
+53737,73081
+53738,64527
+53739,37179
+53740,37179
+53741,41743
+53742,55756
+53743,63180
+53744,20760,61263
+53745,56492
+53746,69600
+53747,56446
+53748,30216
+53749,81137
+53750,72575
+53751,66353
+53752,46924
+53753,46923
+53754,79794
+53755,60994
+53756,54562
+53757,22034
+53758,21889
+53759,31790
+53760,71314
+53761,42351
+53762,30519
+53763,56950
+53764,21018
+53765,31115
+53766,31115
+53767,31115
+53768,30443
+53769,34041
+53770,78703
+53771,42119
+53772,64831
+53773,25263
+53774,53861
+53775,65295
+53776,60184
+53777,65295
+53778,53920
+53779,37276
+53780,78899
+53781,76210
+53782,19108
+53783,42049
+53784,72408
+53785,72409
+53786,72413
+53787,37163
+53788,22414
+53789,38842
+53790,57148,25202
+53791,76162
+53792,62441
+53793,63180
+53794,65908
+53795,53726
+53796,66063
+53797,28170
+53798,28780
+53799,58776
+53800,23219
+53801,75007
+53802,34657
+53803,34663
+53804,34657
+53805,67498
+53806,76303
+53807,20757
+53808,38114
+53809,38114
+53810,46553
+53811,60788
+53812,70648
+53813,70651
+53814,46553
+53815,35792
+53816,39534
+53817,81549
+53818,36468
+53819,23790
+53820,66663
+53821,30964
+53822,75436
+53823,69466
+53824,19539
+53825,55766
+53826,30588
+53827,55762
+53828,68122
+53829,37179
+53830,43801
+53831,53829
+53832,75420
+53833,21025
+53834,26899
+53835,58518
+53836,81626
+53837,38043
+53838,80257
+53839,51068
+53840,59307
+53841,78698
+53842,21930
+53843,34647
+53844,65698
+53845,25094
+53846,27503
+53847,69633
+53848,20760
+53849,25256
+53850,73837
+53851,19003
+53852,65799
+53853,65799
+53854,57063
+53855,22288
+53856,38362
+53857,65202
+53858,64142
+53859,54044
+53860,65170
+53861,73838
+53862,50769
+53863,50766
+53864,30271
+53865,65929
+53866,53870,45165
+53867,23258
+53868,39130
+53869,29026
+53870,34924
+53871,47500
+53872,53871
+53873,67562
+53874,63657
+53875,76351
+53876,33811
+53877,39298
+53878,30391
+53879,39101
+53880,72931
+53881,69400
+53882,78804
+53883,28780
+53884,70629
+53885,42225
+53886,29986
+53887,20755
+53888,53774
+53889,69274
+53890,21703
+53891,79282
+53892,78160
+53893,74939
+53894,48084
+53895,24354
+53896,53894,37762
+53897,53848
+53898,18728
+53899,50985
+53900,74537
+53901,27726
+53902,75755
+53903,24245
+53904,27141
+53905,53911,74939
+53906,24807
+53907,61241
+53908,43744
+53909,33585
+53910,60385
+53911,35466
+53912,71567
+53913,18740
+53914,19635
+53915,58779
+53916,35626
+53917,38712
+53918,63584
+53919,46680
+53920,63584
+53921,53621
+53922,22130
+53923,47500
+53924,48477
+53925,36238
+53926,53918
+53927,60450
+53928,22152
+53929,59970
+53930,31058
+53931,52157
+53932,57640
+53933,22420
+53934,65793
+53935,71961
+53936,48474
+53937,61260
+53938,25115
+53939,39357
+53940,24141
+53941,51677
+53942,19651
+53943,33184
+53944,56065
+53945,20992
+53946,42246
+53947,23062,20992
+53948,54642
+53949,58776
+53950,21060
+53951,19648
+53952,61144
+53953,50603
+53954,52918
+53955,21021,47585
+53956,19468
+53957,77308
+53958,30697
+53959,26604
+53960,34647
+53961,32903
+53962,72959
+53963,30964
+53964,46896
+53965,48232
+53966,57640
+53967,74003
+53968,75741
+53969,54082
+53970,78483
+53971,23130
+53972,79867
+53973,41820
+53974,61703
+53975,76196
+53976,24720
+53977,65749
+53978,76422
+53979,32578
+53980,61947
+53981,50337
+53982,68565
+53983,31690
+53984,31792
+53985,27652
+53986,44113
+53987,77059
+53988,49877
+53989,36055
+53990,61263
+53991,81714
+53992,22669
+53993,79963
+53994,75020
+53995,71318
+53996,61789
+53997,64720
+53998,47503
+53999,47503
+54000,24354
+54001,81578
+54002,69027
+54003,72416
+54004,33584
+54005,28129
+54006,75078
+54007,54698
+54008,51665
+54009,26827
+54010,77641
+54011,61259
+54012,44923
+54013,54026
+54014,21703
+54015,56451
+54016,79282
+54017,60155
+54018,51523
+54019,27967
+54020,77051
+54021,40988
+54022,41023
+54023,9930
+54024,60097
+54025,54017
+54026,43142
+54027,46599
+54028,60216
+54029,44768,25424
+54030,79211
+54031,50649
+54032,27497
+54033,38170
+54034,70033
+54035,44609
+54036,57261
+54037,53593
+54038,35290
+54039,35627
+54040,49079
+54041,49883
+54042,79088
+54043,30882
+54044,30882
+54045,58737
+54046,37471
+54047,77585
+54048,66471
+54049,54047
+54050,67997
+54051,62145
+54052,19121
+54053,36868
+54054,81462
+54055,60216
+54056,38400
+54057,19087
+54058,20039
+54059,35626
+54060,64831
+54061,58162
+54062,74081
+54063,25256
+54064,21703
+54065,79282
+54066,70569
+54067,48649
+54068,29263
+54069,33877
+54070,20229
+54071,31638
+54072,34851
+54073,39983
+54074,68448
+54075,81483
+54076,50359
+54077,54176
+54078,39312
+54079,39049
+54080,76345
+54081,28778
+54082,28780
+54083,19073
+54084,37908
+54085,68280
+54086,80145
+54087,81602
+54088,41252
+54089,63861
+54090,68903
+54091,66785
+54092,43110
+54093,79743
+54094,77451
+54095,58162
+54096,60393
+54097,60393
+54098,77945
+54099,61898
+54100,60453
+54101,63064
+54102,60184
+54103,26065
+54104,67270
+54105,31417
+54106,31538
+54107,59547
+54108,25256
+54109,21411
+54110,21703
+54111,79282
+54112,70569
+54113,52885
+54114,51562
+54115,20743
+54116,60417
+54117,46085
+54118,51319
+54119,22053
+54120,54122
+54121,54122
+54122,38965
+54123,22838
+54124,38044
+54125,52091
+54126,71997
+54127,36981
+54128,62585
+54129,77961
+54130,53624
+54131,54183
+54132,61627
+54133,66442
+54134,61756
+54135,67274
+54136,20995
+54137,53717
+54138,19069
+54139,56065
+54140,20419,31759
+54141,54142,42246
+54142,20019
+54143,21415
+54144,19935,41773
+54145,21012
+54146,68853
+54147,20992
+54148,53573
+54149,20973
+54150,59893
+54151,38366
+54152,55688
+54153,50005
+54154,19176
+54155,54153
+54156,54153
+54157,38162
+54158,21021,47585
+54159,20044
+54160,26053
+54161,22475,19072
+54162,67631
+54163,34531
+54164,21013
+54165,72763,76219
+54166,29067
+54167,44439
+54168,29971
+54169,73272
+54170,20621
+54171,41156
+54172,11395
+54173,31468
+54174,57461
+54175,81578
+54176,77945
+54177,32718
+54178,23972
+54179,58776
+54180,69810
+54181,79874,54187
+54182,41842
+54183,51523,54187
+54184,53477
+54185,75029
+54186,54188
+54187,78703
+54188,53354,54187
+54189,54132
+54190,81787
+54191,28529
+54192,48126
+54193,64635
+54194,68280
+54195,21049
+54196,59875
+54197,21421
+54198,66040
+54199,63228
+54200,24700
+54201,45997
+54202,44603
+54203,73650
+54204,20972
+54205,33824
+54206,23095
+54207,68809
+54208,22765
+54209,40702
+54210,65748
+54211,71624
+54212,70428
+54213,62948
+54214,31269
+54215,71505
+54216,22050
+54217,19813
+54218,54562,77510
+54219,59338
+54220,21006
+54221,22746
+54222,54253
+54223,24249
+54224,24251
+54225,18740
+54226,25877
+54227,18740
+54228,54867
+54229,67675
+54230,65295
+54231,20635
+54232,24823
+54233,60534
+54234,37124
+54235,37127
+54236,37490
+54237,38576
+54238,27286
+54239,54240
+54240,40003
+54241,61246,54253
+54242,41305
+54243,42119
+54244,40859
+54245,56514
+54246,56515
+54247,54188
+54248,54121
+54249,26965
+54250,53621
+54251,54183
+54252,41004
+54253,58166
+54254,58854
+54255,59904
+54256,56565
+54257,37422
+54258,77426
+54259,34557
+54260,29026
+54261,21124
+54262,20727
+54263,52653
+54264,20577
+54265,39827
+54266,68290
+54267,65999
+54268,76672
+54269,43977
+54270,72408
+54271,72409
+54272,72416
+54273,72413
+54274,57934
+54275,68285
+54276,78113
+54277,62324
+54278,37448
+54279,49888
+54280,25202
+54281,35062
+54282,51516
+54283,72037
+54284,72038
+54285,37561
+54286,65509
+54287,76664
+54288,76664
+54289,76664
+54290,76664
+54291,76664
+54292,76664
+54293,76664
+54294,76664
+54295,76664
+54296,76664
+54297,76664
+54298,76664
+54299,26955
+54300,62142
+54301,62142
+54302,25113
+54303,33932
+54304,61646
+54305,23925
+54306,56492
+54307,61655
+54308,59308
+54309,21477
+54310,52904
+54311,57066
+54312,76662
+54313,28333
+54314,28339
+54315,29626
+54316,79572
+54317,28091
+54318,40089
+54319,53890
+54320,56009
+54321,75766
+54322,75902
+54323,76490
+54324,60216
+54325,25598
+54326,81750
+54327,63017
+54328,30697
+54329,24873
+54330,28236
+54331,43523
+54332,44013
+54333,67627
+54334,48874
+54335,48336
+54336,46767
+54337,22053
+54338,61211
+54339,79280
+54340,26841
+54341,48336
+54342,28236
+54343,61655
+54344,61655
+54345,38600
+54346,77277
+54347,76664
+54348,57223
+54349,41657
+54350,34435
+54351,76664
+54352,73669
+54353,38545
+54354,66008
+54355,45388
+54356,77585
+54357,70016
+54358,59970
+54359,38545
+54360,60126
+54361,55347
+54362,59542
+54363,20743
+54364,51938
+54365,51938
+54366,12338
+54367,34771
+54368,65120
+54369,37693
+54370,23380
+54371,4535
+54372,51523
+54373,20727
+54374,21060
+54375,73081
+54376,41877
+54377,72367
+54378,43746
+54379,50438
+54380,77268
+54381,51523
+54382,51523
+54383,51523
+54384,77578
+54385,64846
+54386,35735
+54387,51523
+54388,67325
+54389,37276
+54390,78703
+54391,64974
+54392,64831
+54393,49444
+54394,53180
+54395,78106
+54396,38042
+54397,37992
+54398,65531
+54399,45308
+54400,19438
+54401,41107
+54402,79477
+54403,18880
+54404,44440
+54405,19492,54425
+54406,22099
+54407,27280
+54408,28213
+54409,28346
+54410,28344
+54411,28574
+54412,32527
+54413,38700
+54414,41249
+54415,43809
+54416,43820
+54417,46680
+54418,39101
+54419,48479
+54420,48480
+54421,29833
+54422,50603
+54423,50701
+54424,53114
+54425,69308
+54426,51523
+54427,41107
+54428,41107
+54429,50630
+54430,61646
+54431,54418
+54432,51803
+54433,64757
+54434,54401
+54435,35480
+54436,69283
+54437,41107
+54438,77367
+54439,78664
+54440,78698
+54441,79274
+54442,25094
+54443,54440
+54444,71493
+54445,41022
+54446,33729,24007
+54447,51649,57261
+54448,71107
+54449,27114
+54450,29102
+54451,79114
+54452,76420
+54453,63863
+54454,63790
+54455,35534
+54456,49826
+54457,45813
+54458,81549
+54459,79973
+54460,19629
+54461,52497
+54462,33728
+54463,73439
+54464,34437
+54465,36496
+54466,71824
+54467,45813
+54468,74067
+54469,52513
+54470,43313,54471
+54471,81643
+54472,19655
+54473,59481
+54474,33753
+54475,58020
+54476,76135
+54477,76339
+54478,35922
+54479,20819
+54480,76664
+54481,32691
+54482,69549
+54483,68519
+54484,54562
+54485,28323
+54486,43893
+54487,77641
+54488,20368
+54489,33428
+54490,24169
+54491,62767
+54492,64534
+54493,75745
+54494,22063
+54495,27286
+54496,54188
+54497,48004
+54498,54181
+54499,17235
+54500,54183
+54501,62966
+54502,69860
+54503,45260
+54504,37166
+54505,50439
+54506,50438
+54507,66482
+54508,66482
+54509,64757
+54510,21718
+54511,20727
+54512,76672
+54513,62324
+54514,79869
+54515,62441
+54516,61947
+54517,31281
+54518,51825
+54519,73412
+54520,80424
+54521,81546
+54522,81759
+54523,43897
+54524,9930
+54525,69034
+54526,68622
+54527,19231
+54528,19176
+54529,36795
+54530,35534
+54531,64370
+54532,47525
+54533,47642
+54534,47527
+54535,70033
+54536,54813
+54537,77185
+54538,57261
+54539,60733
+54540,31200
+54541,49897
+54542,65086
+54543,57084
+54544,30267
+54545,63918
+54546,48477
+54547,47507
+54548,42094
+54549,53009
+54550,52594
+54551,38334
+54552,22137
+54553,38614
+54554,38839
+54555,34851
+54556,35676
+54557,77277
+54558,60769
+54559,77277
+54560,69744
+54561,50117
+54562,53454
+54563,50139
+54564,38952
+54565,49834
+54566,57594
+54567,56181
+54568,36506
+54569,48438
+54570,32225
+54571,68290
+54572,43113
+54573,38614
+54574,69744
+54575,54556
+54576,25287
+54577,25287
+54578,63630,39613
+54579,71305
+54580,58803
+54581,31940
+54582,50190
+54583,43686
+54584,60967
+54585,61976
+54586,68225
+54587,58798
+54588,70030
+54589,26272
+54590,55376
+54591,26532
+54592,26757,54593
+54593,27405
+54594,35196
+54595,2492
+54596,17469
+54597,21770
+54598,31489
+54599,21765
+54600,29881
+54601,34209
+54602,51433
+54603,38985,70987
+54604,79963
+54605,35187
+54606,63124
+54607,34293
+54608,30937
+54609,37908
+54610,37115
+54611,34619
+54612,70675
+54613,63654
+54614,35342
+54615,38675
+54616,33382
+54617,43815
+54618,62858
+54619,26298
+54620,37721
+54621,74018
+54622,59436,27405
+54623,77845
+54624,41899
+54625,55815
+54626,41901
+54627,70033
+54628,33644
+54629,76030
+54630,75566
+54631,22452
+54632,39414
+54633,49687
+54634,50742
+54635,22850
+54636,28146
+54637,62648
+54638,54865
+54639,74231
+54640,57934
+54641,75902
+54642,77394
+54643,71315
+54644,57194
+54645,19636,50888
+54646,50910
+54647,79224
+54648,28006
+54649,60076
+54650,30939
+54651,79190
+54652,30939
+54653,22807
+54654,21670
+54655,45813
+54656,9253
+54657,45812
+54658,61247
+54659,27167
+54660,31239
+54661,39556
+54662,77287
+54663,53175
+54664,57187
+54665,33793
+54666,22853
+54667,70202
+54668,52068
+54669,57063
+54670,20727
+54671,76672
+54672,81801
+54673,44628
+54674,44984
+54675,23712
+54676,38593
+54677,81801
+54678,34837
+54679,64363
+54680,36602
+54681,39027
+54682,45096
+54683,38545
+54684,60216
+54685,61381
+54686,41004
+54687,58009
+54688,54710
+54689,35156
+54690,25131
+54691,50724
+54692,31417
+54693,34625
+54694,65508
+54695,36046
+54696,51388
+54697,61153
+54698,53238
+54699,44369
+54700,45276
+54701,78649
+54702,21278
+54703,25413
+54704,81808
+54705,54774
+54706,39151
+54707,65949
+54708,64057
+54709,54704
+54710,47388
+54711,52920
+54712,54735
+54713,31546
+54714,32374
+54715,73805
+54716,34020
+54717,32926
+54718,30675
+54719,35388
+54720,72729
+54721,46186
+54722,53611
+54723,67498
+54724,47474
+54725,81808
+54726,25807
+54727,60216
+54728,77972
+54729,41287
+54730,36238
+54731,43810
+54732,54728
+54733,49792
+54734,48157
+54735,48629
+54736,50701,34118
+54737,52920
+54738,32426
+54739,56009
+54740,72503
+54741,54747
+54742,60216
+54743,45276
+54744,54699
+54745,45276
+54746,45276
+54747,45276
+54748,45276
+54749,38276
+54750,63281
+54751,64370
+54752,54735
+54753,39276
+54754,39151
+54755,62516
+54756,76441
+54757,66837,80512
+54758,56234
+54759,62902
+54760,21914
+54761,57932
+54762,56917
+54763,81601
+54764,41646
+54765,41646
+54766,54760
+54767,75548
+54768,65767
+54769,62146
+54770,72089
+54771,72983
+54772,81065
+54773,40929
+54774,56878
+54775,54710
+54776,40752
+54777,59169
+54778,59169
+54779,59169
+54780,26827
+54781,39925
+54782,56995
+54783,77482
+54784,62456
+54785,37718
+54786,81462,52210
+54787,77725
+54788,78966
+54789,18896
+54790,74537
+54791,45392
+54792,45009
+54793,49298
+54794,45813
+54795,21026
+54796,29460
+54797,58154
+54798,19654
+54799,20977
+54800,28170
+54801,73147,79102
+54802,22090
+54803,79102
+54804,58778
+54805,43458
+54806,75553
+54807,19171
+54808,30568
+54809,30575
+54810,31200
+54811,60216
+54812,26239
+54813,19936
+54814,37130
+54815,39381
+54816,53237
+54817,54098
+54818,57177
+54819,24007
+54820,37479
+54821,49897
+54822,25546
+54823,39475
+54824,70627
+54825,74082
+54826,41119
+54827,53369
+54828,34925
+54829,54153
+54830,38807
+54831,64864
+54832,77688
+54833,33102
+54834,27276
+54835,68522
+54836,77348,46827
+54837,64142
+54838,21889
+54839,71310
+54840,61792
+54841,69818
+54842,50184
+54843,50784
+54844,40564
+54845,26118
+54846,30231
+54847,34687
+54848,27596
+54849,54871
+54850,60433
+54851,70033
+54852,71719
+54853,45951
+54854,58287
+54855,19412
+54856,21270
+54857,22371
+54858,51975
+54859,74906
+54860,77636
+54861,51988
+54862,69112
+54863,31245
+54864,22389
+54865,35066
+54866,49797
+54867,65929
+54868,65927
+54869,21922
+54870,50701
+54871,65925
+54872,47273
+54873,32799
+54874,68523
+54875,37479
+54876,25862
+54877,42023
+54878,34209
+54879,34362
+54880,61767
+54881,36499
+54882,48227
+54883,62736
+54884,62736
+54885,53688
+54886,62145
+54887,60216
+54888,63340
+54889,22819
+54890,72733
+54891,38227
+54892,49158
+54893,76683
+54894,42518
+54895,62456
+54896,21765
+54897,33429
+54898,19281
+54899,47716
+54900,34122
+54901,63357
+54902,70987
+54903,31940
+54904,43913
+54905,686
+54906,53373
+54907,54885
+54908,42429
+54909,31640
+54910,25645
+54911,25256
+54912,82066
+54913,77491
+54914,66329
+54915,53023
+54916,30954
+54917,31106
+54918,31039
+54919,48461
+54920,18807
+54921,30206
+54922,30208
+54923,18956
+54924,26320
+54925,39049
+54926,44814
+54927,71315
+54928,57774
+54929,39049
+54930,80716
+54931,80714
+54932,60032
+54933,52586
+54934,36045
+54935,33587
+54936,31149
+54937,76989
+54938,31149
+54939,75013
+54940,31853
+54941,49877
+54942,75137
+54943,71446
+54944,41877
+54945,35557,34808
+54946,44918
+54947,31616
+54948,68522
+54949,80576
+54950,61494
+54951,67594
+54952,32792
+54953,34199
+54954,37165
+54955,67957
+54956,24704
+54957,48321
+54958,32915
+54959,66862
+54960,66862
+54961,20328
+54962,24249
+54963,24251
+54964,41261
+54965,42489
+54966,53339
+54967,78697
+54968,49993
+54969,39049
+54970,69441
+54971,81807
+54972,52762
+54973,32929
+54974,77043
+54975,59678
+54976,70651
+54977,54976
+54978,48787
+54979,39294
+54980,42539
+54981,33851
+54982,19621
+54983,69606
+54984,20743
+54985,45813
+54986,54562
+54987,54082
+54988,20122
+54989,37179
+54990,41743
+54991,41103
+54992,73007
+54993,61655
+54994,76631
+54995,68059
+54996,54991
+54997,48043,54991
+54998,54993
+54999,54993
+55000,47671
+55001,60604
+55002,41106
+55003,63416
+55004,22057
+55005,54253
+55006,57765
+55007,57927
+55008,60400
+55009,53238
+55010,33786
+55011,61789
+55012,66594
+55013,22293
+55014,45813
+55015,65768
+55016,44738
+55017,22255
+55018,54562
+55019,54253
+55020,37123
+55021,37127
+55022,78703
+55023,79086
+55024,79072
+55025,33422
+55026,53736
+55027,80507
+55028,23855
+55029,32627
+55030,60216
+55031,31139
+55032,53183
+55033,36317
+55034,41870
+55035,36419
+55036,55037
+55037,27339
+55038,63211
+55039,19131
+55040,52121
+55041,11221
+55042,77900,24354
+55043,47426
+55044,79794
+55045,61885
+55046,41877
+55047,35922
+55048,74303
+55049,37479
+55050,37479
+55051,51814
+55052,35668
+55053,63187
+55054,57390
+55055,65758
+55056,39049
+55057,62884
+55058,19364
+55059,61355
+55060,54709
+55061,50173
+55062,21381
+55063,67703
+55064,19098
+55065,48841
+55066,20353
+55067,55066
+55068,38053
+55069,20994
+55070,19069
+55071,55084
+55072,61246
+55073,30473
+55074,30469
+55075,58803
+55076,50985
+55077,43107
+55078,20978
+55079,20689
+55080,39294
+55081,42539
+55082,70183
+55083,33326
+55084,51100
+55085,51099
+55086,74939
+55087,50989
+55088,72482
+55089,53238
+55090,21810
+55091,42481
+55092,74903
+55093,77633
+55094,55089
+55095,47012
+55096,47015
+55097,47029
+55098,81703
+55099,60216
+55100,73412
+55101,60076
+55102,72051
+55103,19233
+55104,52990
+55105,70091
+55106,31058
+55107,56527
+55108,75016
+55109,55734
+55110,19867
+55111,40884
+55112,59126
+55113,69004
+55114,36069
+55115,53182
+55116,36065
+55117,25018
+55118,53182
+55119,64635
+55120,33215
+55121,27455
+55122,29611
+55123,40564
+55124,29262
+55125,39797
+55126,81578
+55127,76120
+55128,23792
+55129,57066
+55130,48690
+55131,31538
+55132,78812
+55133,63469
+55134,75510
+55135,62948
+55136,78409
+55137,78777
+55138,58616
+55139,19349
+55140,64669
+55141,81193,64639
+55142,81193
+55143,47503
+55144,78755
+55145,39746
+55146,51159
+55147,79469
+55148,52835
+55149,80460
+55150,27506
+55151,76672
+55152,52053
+55153,69238
+55154,70515
+55155,33184
+55156,35557
+55157,23751
+55158,43913
+55159,47476
+55160,35679
+55161,57333
+55162,67920
+55163,81703
+55164,20745
+55165,45813
+55166,68676
+55167,66843
+55168,53690
+55169,23537
+55170,27440
+55171,55236
+55172,51319
+55173,81626
+55174,79608
+55175,32082
+55176,77509,39585
+55177,33796
+55178,80009
+55179,43986
+55180,61182
+55181,39556
+55182,65324
+55183,65324
+55184,42050
+55185,20593
+55186,51475
+55187,20586
+55188,77185
+55189,53072
+55190,50637
+55191,32527
+55192,45035
+55193,54590
+55194,81626
+55195,39612
+55196,39049
+55197,36976
+55198,53607
+55199,28357
+55200,47788
+55201,45337
+55202,36840
+55203,62936
+55204,63584
+55205,48148
+55206,25353
+55207,53548
+55208,79090
+55209,60448
+55210,64142
+55211,61381
+55212,65526
+55213,60452
+55214,34397
+55215,18713
+55216,37207
+55217,47795
+55218,30275
+55219,60737,55756
+55220,35678
+55221,30498
+55222,39049
+55223,55725
+55224,71731
+55225,71733
+55226,31784
+55227,77509,23949
+55228,21480
+55229,26298
+55230,45679
+55231,49579
+55232,76664
+55233,31689
+55234,22149
+55235,36434
+55236,79608
+55237,51805
+55238,56209
+55239,61220
+55240,50784
+55241,66189
+55242,55159
+55243,41023
+55244,65568
+55245,68314
+55246,50369
+55247,57963,20517
+55248,44474
+55249,67271
+55250,43908
+55251,24251
+55252,43126
+55253,73835
+55254,20105
+55255,50367
+55256,34740
+55257,40965
+55258,40964
+55259,33933
+55260,70987
+55261,75435
+55262,40928
+55263,70416
+55264,47638
+55265,19240
+55266,26302
+55267,79469
+55268,45981
+55269,21760
+55270,27276
+55271,25017
+55272,68843
+55273,68831
+55274,51837
+55275,34229
+55276,32825,46251
+55277,34089
+55278,70629
+55279,68960
+55280,46268
+55281,49298
+55282,65006
+55283,37637
+55284,61251
+55285,41226
+55286,77423
+55287,21671
+55288,60534
+55289,33323
+55290,60786
+55291,31241
+55292,79592
+55293,61145
+55294,35359
+55295,73276
+55296,21359
+55297,68430
+55298,77043
+55299,26192
+55300,53095
+55301,19631
+55302,70249
+55303,39294
+55304,42539
+55305,60467
+55306,31489
+55307,68025
+55308,61395
+55309,59475
+55310,81593
+55311,55366
+55312,23664
+55313,55756
+55314,51018
+55315,50919
+55316,55314
+55317,55581
+55318,58088
+55319,22790
+55320,81915
+55321,57678
+55322,18674
+55323,48372
+55324,59194
+55325,71584
+55326,33913
+55327,54447
+55328,52803
+55329,55324,47737
+55330,67849
+55331,69658
+55332,28164
+55333,81462
+55334,60216
+55335,45777
+55336,51941
+55337,56171
+55338,49858
+55339,59197
+55340,45813
+55341,76123
+55342,34771
+55343,60011
+55344,42322
+55345,54837
+55346,72959
+55347,28529
+55348,28529
+55349,63344
+55350,27059
+55351,40003
+55352,19765,56209
+55353,72959
+55354,31245
+55355,19171
+55356,63581
+55357,42225
+55358,39049
+55359,31960
+55360,19656
+55361,52497
+55362,21135
+55363,32222
+55364,31741
+55365,56446
+55366,46747
+55367,52033
+55368,56440
+55369,56441
+55370,57594,52273
+55371,40588
+55372,80761
+55373,68990
+55374,25046
+55375,63072
+55376,55373
+55377,61764
+55378,33591
+55379,77585
+55380,36548
+55381,36542
+55382,47656
+55383,80760
+55384,57945
+55385,71961
+55386,30467
+55387,53206
+55388,68030
+55389,55430
+55390,29332
+55391,73838
+55392,23240
+55393,55443
+55394,56164
+55395,20690
+55396,38477
+55397,21814
+55398,74067
+55399,66862
+55400,24046
+55401,24612
+55402,66862
+55403,29779
+55404,54982
+55405,20690
+55406,27908
+55407,39676
+55408,41371
+55409,43556
+55410,43781
+55411,45547
+55412,45738
+55413,52857
+55414,50184
+55415,49538
+55416,51400
+55417,26662
+55418,81492
+55419,53072
+55420,45813
+55421,20905
+55422,66862
+55423,59700
+55424,81161
+55425,59365
+55426,66479
+55427,70033
+55428,67001
+55429,67826
+55430,81142
+55431,20239
+55432,70660
+55433,72323
+55434,38477
+55435,75860
+55436,77341
+55437,82086
+55438,29781,19468
+55439,70914
+55440,34118
+55441,70629
+55442,21787
+55443,41444
+55444,78647
+55445,71648
+55446,67497
+55447,57280
+55448,36250
+55449,66617
+55450,60216
+55451,66862
+55452,37478
+55453,45813
+55454,45312
+55455,27624
+55456,41114
+55457,63953
+55458,56460
+55459,53415
+55460,36047
+55461,77552
+55462,52957
+55463,35557
+55464,34808
+55465,35557
+55466,76877
+55467,39049
+55468,37041
+55469,57901
+55470,43107
+55471,58200
+55472,57897
+55473,66609
+55474,46268
+55475,40293
+55476,31618
+55477,38984
+55478,21126
+55479,19108
+55480,78096
+55481,21126
+55482,72435
+55483,72376
+55484,53628
+55485,54837
+55486,23182
+55487,39509
+55488,78236
+55489,34148
+55490,28529
+55491,55756
+55492,19201
+55493,28529
+55494,45096
+55495,71315
+55496,81643
+55497,77585
+55498,30937
+55499,69977,63117
+55500,63224
+55501,72029
+55502,34944
+55503,42069
+55504,38789
+55505,79114
+55506,28747
+55507,64534
+55508,77641
+55509,51068
+55510,50438
+55511,52655
+55512,27488
+55513,44609
+55514,43516
+55515,34881
+55516,38865
+55517,50922
+55518,43516
+55519,61906
+55520,42481
+55521,54944
+55522,53848
+55523,70033
+55524,68793
+55525,70730
+55526,71446
+55527,23380
+55528,25889
+55529,72114
+55530,77277
+55531,36707
+55532,55526
+55533,61982
+55534,67608
+55535,72764
+55536,78286
+55537,64409
+55538,39650
+55539,46834
+55540,43167
+55541,43575
+55542,50353
+55543,25812
+55544,20824
+55545,45060
+55546,64293
+55547,59769
+55548,49772
+55549,68128
+55550,49485
+55551,29557
+55552,36505
+55553,31618
+55554,22122
+55555,39962
+55556,60534
+55557,79546
+55558,66763
+55559,46918
+55560,21876
+55561,81694
+55562,47991
+55563,80522
+55564,11480
+55565,54440
+55566,68230,11480
+55567,45421
+55568,54811
+55569,23946
+55570,41743
+55571,63424
+55572,38213
+55573,70889
+55574,81161
+55575,34249
+55576,70033
+55577,50117
+55578,63255
+55579,74752
+55580,81251
+55581,45813
+55582,52410
+55583,79469
+55584,60032,25459
+55585,40292
+55586,60032
+55587,73207
+55588,71719
+55589,73762
+55590,68277
+55591,66482
+55592,22966
+55593,65213
+55594,55605
+55595,35922
+55596,63193
+55597,19867
+55598,67001
+55599,50989
+55600,77491
+55601,63116
+55602,32187
+55603,56527
+55604,55888
+55605,55627
+55606,68317,34356,22305
+55607,72892
+55608,79905
+55609,75641
+55610,29382
+55611,57927
+55612,37478
+55613,57187
+55614,47870
+55615,21529
+55616,48775
+55617,52655
+55618,57187
+55619,33885
+55620,35196
+55621,38670
+55622,76664
+55623,66837
+55624,44437
+55625,42351
+55626,57214
+55627,73009
+55628,78723
+55629,79780
+55630,68777
+55631,79009
+55632,28954
+55633,38034
+55634,28872
+55635,43240
+55636,56941
+55637,49767
+55638,31245
+55639,37608
+55640,25098
+55641,48084
+55642,57088
+55643,24403
+55644,28873
+55645,23541
+55646,50919
+55647,23543
+55648,25234
+55649,51886
+55650,57067
+55651,78899,19379
+55652,42351
+55653,51171
+55654,76784
+55655,21545
+55656,48030
+55657,44013
+55658,34249
+55659,51030
+55660,58803
+55661,58798
+55662,46377
+55663,47951
+55664,31831
+55665,55942
+55666,74614
+55667,79546
+55668,32929,49763
+55669,55668
+55670,45276
+55671,33149
+55672,47050
+55673,66862
+55674,78419
+55675,68276
+55676,20745
+55677,44576
+55678,74939
+55679,43983
+55680,43982
+55681,41280
+55682,79619
+55683,79618
+55684,22271
+55685,20760
+55686,31696
+55687,39768,71572
+55688,65713
+55689,26389
+55690,54218
+55691,36694
+55692,42481
+55693,75016
+55694,76966
+55695,60598
+55696,21703
+55697,79282
+55698,75016
+55699,18701
+55700,18701
+55701,18701
+55702,18701
+55703,19318
+55704,19318
+55705,19318
+55706,19318
+55707,21736
+55708,21736
+55709,24040
+55710,70568
+55711,71079
+55712,72135
+55713,72135
+55714,71749
+55715,76256
+55716,22705
+55717,57372
+55718,34646
+55719,49343
+55720,46715
+55721,77585
+55722,71437
+55723,19629
+55724,19629
+55725,23267
+55726,79259
+55727,29935
+55728,20586
+55729,73437
+55730,8042
+55731,41017
+55732,67957
+55733,70118
+55734,22215
+55735,71688
+55736,19228
+55737,71688
+55738,63819
+55739,55758
+55740,32964
+55741,18869
+55742,38883,55734
+55743,76104
+55744,51058
+55745,55737
+55746,59020
+55747,31493
+55748,31492
+55749,64438
+55750,73439
+55751,75548
+55752,61377,55499
+55753,55756
+55754,65045
+55755,28954
+55756,55734
+55757,57909
+55758,34924
+55759,63457
+55760,57058
+55761,58168
+55762,22220
+55763,60071,60077
+55764,71455
+55765,76633
+55766,71697
+55767,21765
+55768,60076
+55769,21670
+55770,65513
+55771,68230
+55772,46901
+55773,68793
+55774,68180
+55775,73478
+55776,34249
+55777,49546
+55778,52857
+55779,25518
+55780,67001
+55781,76303
+55782,55536
+55783,60798
+55784,60801
+55785,55859
+55786,69943
+55787,48072
+55788,21597
+55789,63160
+55790,57693
+55791,53829
+55792,41899
+55793,66862
+55794,33741
+55795,39049
+55796,76422
+55797,82169
+55798,69677
+55799,24442
+55800,56276
+55801,43989
+55802,39089
+55803,33353
+55804,55802
+55805,61968
+55806,45813
+55807,33134
+55808,33135
+55809,31239
+55810,61694,79457
+55811,57594
+55812,62366
+55813,67957
+55814,40564
+55815,27622
+55816,42351
+55817,66893
+55818,66889
+55819,60385
+55820,72787
+55821,28541
+55822,19656
+55823,28057
+55824,20743
+55825,58166
+55826,42429
+55827,28530
+55828,28530
+55829,51658
+55830,19108
+55831,34016
+55832,74689
+55833,78536
+55834,48250
+55835,60216
+55836,48451
+55837,65064
+55838,70033
+55839,31245
+55840,57160
+55841,71686
+55842,71961
+55843,29167
+55844,71148
+55845,75235
+55846,51996
+55847,41856
+55848,48801
+55849,48007
+55850,57987
+55851,66009
+55852,67994
+55853,74923
+55854,65139
+55855,65139
+55856,59732
+55857,66154
+55858,39058
+55859,40195
+55860,72066
+55861,81626
+55862,58776
+55863,60598
+55864,35535,22305
+55865,61260
+55866,38475
+55867,25431
+55868,25432
+55869,20977
+55870,37041
+55871,37042
+55872,38475
+55873,61264
+55874,65509,35226
+55875,36602
+55876,34279
+55877,56492
+55878,39428
+55879,44474
+55880,48126
+55881,51100
+55882,51099
+55883,51100
+55884,51099
+55885,39792
+55886,66873
+55887,66874
+55888,52842
+55889,24354
+55890,56451
+55891,48111
+55892,37163
+55893,37163
+55894,72928
+55895,48073
+55896,27556
+55897,27524
+55898,71938
+55899,38135
+55900,39777
+55901,45755
+55902,74939
+55903,43997
+55904,60621
+55905,23906
+55906,48126
+55907,71079
+55908,56304
+55909,59549
+55910,79753
+55911,20346
+55912,67883
+55913,43427
+55914,48126
+55915,57934
+55916,76966
+55917,55916
+55918,55692
+55919,50438
+55920,54188
+55921,54183
+55922,21718
+55923,57934
+55924,57934
+55925,57934
+55926,67946
+55927,58166
+55928,61246
+55929,40986
+55930,44614
+55931,47786
+55932,20690
+55933,20690
+55934,60158
+55935,71786
+55936,68489
+55937,11870
+55938,45276
+55939,51391
+55940,70395
+55941,60206
+55942,73495
+55943,61381
+55944,23792
+55945,76258
+55946,65754
+55947,21745
+55948,19228
+55949,19774
+55950,73495
+55951,47503
+55952,55143,55951
+55953,38807
+55954,66131
+55955,30391
+55956,71307
+55957,47278
+55958,38475
+55959,23906
+55960,62450
+55961,20745
+55962,72416
+55963,20763
+55964,69050
+55965,52916
+55966,72575
+55967,33650
+55968,38740
+55969,56950
+55970,37776
+55971,77100
+55972,29936
+55973,28153
+55974,19480
+55975,23972
+55976,59901
+55977,50063
+55978,31417
+55979,80335
+55980,21361
+55981,48283
+55982,51523
+55983,46591
+55984,39423
+55985,80061
+55986,46268
+55987,32246,37748
+55988,77108
+55989,26166
+55990,81626
+55991,39961
+55992,34199
+55993,49972
+55994,55795
+55995,11962
+55996,64142
+55997,39002
+55998,41310
+55999,58023
+56000,31245
+56001,77641
+56002,82092
+56003,20973
+56004,56066
+56005,56066
+56006,56066
+56007,80501
+56008,65974
+56009,50369
+56010,67760
+56011,34263
+56012,47673
+56013,39295
+56014,53934
+56015,34263
+56016,67584
+56017,47682
+56018,75141
+56019,19629
+56020,61335
+56021,60216
+56022,60216
+56023,72052
+56024,43948
+56025,25770
+56026,20621
+56027,39049
+56028,43554
+56029,81462,49598
+56030,54188
+56031,54183
+56032,70482
+56033,18740
+56034,76672
+56035,37913
+56036,62324
+56037,76066
+56038,70801
+56039,42296
+56040,65040
+56041,79222,56099
+56042,47047,71567
+56043,47047
+56044,61703
+56045,60411
+56046,75066
+56047,46507
+56048,6295
+56049,76160
+56050,77636
+56051,56950
+56052,56950
+56053,28870
+56054,70033
+56055,50630
+56056,69004
+56057,60242
+56058,26318
+56059,43104
+56060,47186
+56061,70091
+56062,71623
+56063,78544
+56064,75954
+56065,36602
+56066,20894
+56067,32776
+56068,29959
+56069,58200
+56070,48169
+56071,68809
+56072,65908
+56073,54044
+56074,71961
+56075,73555
+56076,81161
+56077,40446
+56078,80344
+56079,80861
+56080,48685
+56081,64632,42356
+56082,43672
+56083,53132
+56084,31992
+56085,19861
+56086,34207
+56087,69544
+56088,28538
+56089,66158
+56090,81062
+56091,62125
+56092,20925
+56093,80720
+56094,25256
+56095,27252
+56096,28091
+56097,78203,31184
+56098,31520
+56099,34193
+56100,53642
+56101,69192
+56102,76627
+56103,21738
+56104,32718
+56105,79282
+56106,41111
+56107,36710
+56108,28091
+56109,37868
+56110,78758
+56111,45813
+56112,40564
+56113,27606
+56114,31304
+56115,59970
+56116,60216
+56117,20926
+56118,30654
+56119,27323,29509
+56120,28213
+56121,34085
+56122,34088
+56123,37623,40411
+56124,79086
+56125,71317
+56126,53861
+56127,59238
+56128,69284
+56129,20310
+56130,35922
+56131,35922
+56132,19497
+56133,56132,50701
+56134,73018
+56135,59970
+56136,44440
+56137,28529
+56138,71310
+56139,72959
+56140,60216
+56141,58166
+56142,60216
+56143,70308
+56144,33875
+56145,70033
+56146,50359
+56147,27307
+56148,70033
+56149,27307
+56150,71961
+56151,64142
+56152,71320
+56153,60450
+56154,60448
+56155,74939
+56156,82095
+56157,78024
+56158,19054
+56159,27861
+56160,55760
+56161,21345
+56162,28962
+56163,43107
+56164,43107
+56165,24353
+56166,39767
+56167,41306
+56168,43362
+56169,68280
+56170,47564
+56171,50359
+56172,48164
+56173,21275
+56174,51967
+56175,57187
+56176,81004
+56177,78721
+56178,60417
+56179,63065
+56180,66052,61262
+56181,66086
+56182,68280
+56183,69543
+56184,76139
+56185,27539
+56186,60450
+56187,21770
+56188,60448
+56189,24249
+56190,56194
+56191,63061
+56192,48724
+56193,25413
+56194,64142
+56195,51388
+56196,28054
+56197,78721
+56198,78398
+56199,64142
+56200,77374
+56201,48306
+56202,65754
+56203,76160
+56204,77636
+56205,39152
+56206,35623
+56207,72024
+56208,35554
+56209,74939
+56210,33799
+56211,33797
+56212,28413
+56213,51523
+56214,56213
+56215,56213
+56216,74011
+56217,18880
+56218,54406
+56219,23440
+56220,24792
+56221,20174
+56222,57932
+56223,28653
+56224,56230
+56225,37913
+56226,38218
+56227,56234
+56228,54418
+56229,56234
+56230,54425
+56231,56226
+56232,69754
+56233,54440
+56234,80515
+56235,21474
+56236,28237
+56237,61646
+56238,74769
+56239,64142
+56240,77520
+56241,73112
+56242,51316
+56243,48408
+56244,75018
+56245,19843
+56246,38828
+56247,54437
+56248,23221
+56249,30718
+56250,69776
+56251,43820
+56252,56338
+56253,57421
+56254,34538
+56255,66151
+56256,46031
+56257,38793
+56258,24007
+56259,54732
+56260,22412
+56261,70183
+56262,35735
+56263,70110
+56264,20755
+56265,76552
+56266,70399
+56267,81255
+56268,41265
+56269,74939
+56270,29935
+56271,72451
+56272,68289
+56273,29936
+56274,60448
+56275,56312
+56276,76251
+56277,50296
+56278,33500
+56279,59306
+56280,38920
+56281,57897
+56282,25617
+56283,38699
+56284,79189
+56285,22903
+56286,32757
+56287,52211
+56288,49643
+56289,49222
+56290,77641
+56291,34199
+56292,56281
+56293,29928
+56294,56295
+56295,42225
+56296,34039
+56297,70651
+56298,51677
+56299,52469
+56300,35863
+56301,35858
+56302,37042
+56303,52990
+56304,34039
+56305,37974
+56306,48127
+56307,68793
+56308,41738
+56309,37179
+56310,41743
+56311,61259
+56312,31245
+56313,56276
+56314,64142
+56315,61679
+56316,47655
+56317,24268
+56318,50722
+56319,72185
+56320,70033
+56321,75665
+56322,61474
+56323,37635
+56324,70033
+56325,32793
+56326,45030
+56327,52773
+56328,61996
+56329,77641
+56330,58155
+56331,68869
+56332,56492
+56333,38566
+56334,20994
+56335,72983
+56336,34539
+56337,63348
+56338,34538
+56339,40003
+56340,28623
+56341,28811
+56342,32185
+56343,39565
+56344,47402
+56345,61734
+56346,75912
+56347,65671
+56348,73275
+56349,22780
+56350,61724
+56351,20409
+56352,64142
+56353,34174
+56354,56357
+56355,60216
+56356,81463
+56357,56878
+56358,27576
+56359,50875
+56360,19228
+56361,35532
+56362,30891
+56363,56362
+56364,70033
+56365,79608
+56366,55580
+56367,33184
+56368,60216
+56369,57333
+56370,21475
+56371,30900
+56372,41610
+56373,58166
+56374,63415
+56375,81752
+56376,81681
+56377,45813
+56378,4660
+56379,46901,21771
+56380,19497
+56381,30449
+56382,31488
+56383,31489
+56384,54082
+56385,38881
+56386,51167
+56387,51168
+56388,76981
+56389,81578
+56390,48764
+56391,51148
+56392,20977,21060
+56393,28780,56806
+56394,50273
+56395,34038
+56396,48497
+56397,34064
+56398,76662
+56399,22507
+56400,59778
+56401,28334
+56402,70395
+56403,61246
+56404,59547
+56405,71572
+56406,67202
+56407,21770
+56408,20982
+56409,38577
+56410,72959
+56411,54562
+56412,54562
+56413,49860
+56414,54127
+56415,53624
+56416,58776
+56417,18728
+56418,20431
+56419,49750
+56420,56422
+56421,34977
+56422,51713
+56423,53716
+56424,78113
+56425,63228
+56426,49750
+56427,74973
+56428,47805
+56429,77216
+56430,21777
+56431,35525
+56432,47673
+56433,54082
+56434,38807
+56435,56437
+56436,57475
+56437,68676
+56438,56437
+56439,57594
+56440,39771
+56441,71572
+56442,28232
+56443,56454
+56444,37805
+56445,56443
+56446,39768,39767
+56447,61694,19654
+56448,44475
+56449,37406
+56450,80918
+56451,61468
+56452,68956
+56453,25806
+56454,35626
+56455,56453
+56456,75016
+56457,20760
+56458,35679
+56459,63584
+56460,56176
+56461,66226
+56462,42143
+56463,41917
+56464,44634
+56465,34924
+56466,24306
+56467,77045
+56468,82053
+56469,43544
+56470,42097
+56471,77552
+56472,39049
+56473,38380
+56474,47830
+56475,55791
+56476,74766
+56477,47830
+56478,32530
+56479,80541
+56480,80583
+56481,43766
+56482,75018
+56483,30885
+56484,75018
+56485,75019
+56486,72011
+56487,59970
+56488,68185
+56489,21411
+56490,31103
+56491,66206
+56492,73837
+56493,37141
+56494,58776
+56495,56453
+56496,70091
+56497,18728
+56498,23906
+56499,48126
+56500,20577
+56501,24249
+56502,24251
+56503,37642
+56504,52842
+56505,58158
+56506,34701
+56507,52842
+56508,38170
+56509,24231
+56510,78160
+56511,22350,55091
+56512,44474
+56513,24611
+56514,48659
+56515,71572
+56516,46553
+56517,69600
+56518,56535,51558
+56519,51566
+56520,71996
+56521,53710
+56522,53716
+56523,78160
+56524,53199
+56525,24799
+56526,74942
+56527,59549
+56528,56534,60621
+56529,56457
+56530,61317
+56531,53716
+56532,48318
+56533,67883
+56534,56502
+56535,56501
+56536,53916
+56537,74560
+56538,57934
+56539,75009
+56540,70091
+56541,34664
+56542,77216
+56543,56505
+56544,77961
+56545,42425
+56546,73185
+56547,60216
+56548,19936
+56549,41155
+56550,19497
+56551,58669
+56552,56866
+56553,34827
+56554,57182
+56555,57182
+56556,28792
+56557,40150
+56558,51030
+56559,57154
+56560,22059
+56561,40851
+56562,32169,48852
+56563,72892
+56564,51105
+56565,51100
+56566,47314
+56567,47505
+56568,56869
+56569,37538,42481
+56570,21381
+56571,32974
+56572,34021
+56573,63663
+56574,62965
+56575,60394
+56576,59918
+56577,78899
+56578,21632
+56579,57113
+56580,30531
+56581,62187
+56582,72482
+56583,30062
+56584,19635
+56585,48157
+56586,48157
+56587,48157
+56588,19648
+56589,21729
+56590,26363
+56591,45096
+56592,49027
+56593,52578
+56594,60546
+56595,26010
+56596,69870
+56597,56585,26009
+56598,20825
+56599,65909
+56600,59020
+56601,62744
+56602,63117
+56603,63670
+56604,19272
+56605,30538
+56606,32964,56605
+56607,37191
+56608,49339
+56609,39053
+56610,56598
+56611,69915
+56612,72714
+56613,57562
+56614,64980
+56615,72803
+56616,65912
+56617,48532
+56618,67608
+56619,41110
+56620,19655
+56621,65702
+56622,69235
+56623,2078
+56624,18537
+56625,1594
+56626,61651
+56627,24403
+56628,24406
+56629,48874
+56630,73466
+56631,61425
+56632,61138
+56633,31245
+56634,62981
+56635,30300
+56636,54082
+56637,40380
+56638,20120
+56639,73466
+56640,26072
+56641,20120
+56642,20122
+56643,56009
+56644,21224
+56645,30223
+56646,30223
+56647,61264,20038,79222
+56648,36604
+56649,61703
+56650,63425
+56651,56460
+56652,49861
+56653,26919
+56654,52861
+56655,40752
+56656,46186
+56657,78340
+56658,76664
+56659,76664
+56660,76664
+56661,76672
+56662,33832
+56663,76664
+56664,26827
+56665,26827
+56666,26827
+56667,51316
+56668,40336
+56669,73448
+56670,36103
+56671,24306
+56672,32931
+56673,58384
+56674,45869
+56675,70033
+56676,36109
+56677,75647
+56678,51814
+56679,47991
+56680,36106
+56681,56671
+56682,22116
+56683,68236
+56684,69704
+56685,69701
+56686,30514
+56687,53063
+56688,36375
+56689,70183
+56690,80253
+56691,36496
+56692,27276
+56693,42092
+56694,51550,56703
+56695,43566
+56696,76441
+56697,37992
+56698,35838
+56699,36426
+56700,70524
+56701,81549
+56702,56703
+56703,29928
+56704,81601
+56705,57076
+56706,67762
+56707,67760
+56708,20560
+56709,35922
+56710,56937
+56711,34452
+56712,20905
+56713,75063
+56714,48477
+56715,44013
+56716,29936
+56717,70399
+56718,35188
+56719,72447
+56720,30300
+56721,25564
+56722,22786
+56723,25555
+56724,50439
+56725,64757
+56726,34093
+56727,34093
+56728,76662
+56729,64757
+56730,50439
+56731,53956
+56732,29626
+56733,53288
+56734,39049
+56735,64757
+56736,54562
+56737,54082
+56738,24403,29821
+56739,72150
+56740,70987
+56741,19936
+56742,58888
+56743,27275
+56744,65955
+56745,69695
+56746,11481
+56747,39079
+56748,24717
+56749,52322
+56750,37247
+56751,32966
+56752,31058
+56753,56765
+56754,23925
+56755,19069
+56756,38475
+56757,42246
+56758,31058
+56759,28790
+56760,58611
+56761,58158
+56762,44439
+56763,56765
+56764,44439
+56765,22640
+56766,58158
+56767,54562
+56768,75576
+56769,41905
+56770,20973
+56771,28780,42246
+56772,22743
+56773,58162
+56774,35319,42246
+56775,58162
+56776,31058
+56777,56063
+56778,58616,61828
+56779,77773
+56780,38053
+56781,56752,79224
+56782,38475
+56783,19069
+56784,48215
+56785,77641
+56786,56338
+56787,78598
+56788,21475
+56789,43546
+56790,23232
+56791,73323
+56792,71838
+56793,44550
+56794,81807
+56795,31691
+56796,70524
+56797,25556
+56798,22329
+56799,50295
+56800,21475
+56801,28780
+56802,37569
+56803,46457
+56804,73018
+56805,74211
+56806,28780,42246
+56807,54082
+56808,56802
+56809,36840
+56810,35308
+56811,55314
+56812,54285
+56813,37305
+56814,55756
+56815,43168
+56816,47816
+56817,81161
+56818,81121
+56819,54544
+56820,31445
+56821,61646
+56822,28153
+56823,71521
+56824,31100
+56825,31820
+56826,61261
+56827,46954
+56828,56823
+56829,61261
+56830,24781
+56831,25900
+56832,71686
+56833,33186
+56834,47845
+56835,71688
+56836,77972
+56837,31245
+56838,20458
+56839,61830
+56840,64310
+56841,34924
+56842,71687
+56843,78455
+56844,38030
+56845,20879
+56846,78455
+56847,80091
+56848,28237
+56849,59589
+56850,21720
+56851,21135
+56852,33758
+56853,60450
+56854,60448
+56855,58069
+56856,31245
+56857,21289
+56858,27785
+56859,63346
+56860,65925
+56861,65767
+56862,43122
+56863,38789
+56864,39968
+56865,39177
+56866,44440
+56867,61246
+56868,37130
+56869,66309
+56870,65531
+56871,72051
+56872,53866
+56873,49360
+56874,65906
+56875,31195
+56876,47639
+56877,65682
+56878,19171
+56879,57682
+56880,41155
+56881,61866
+56882,71315
+56883,42429
+56884,56885
+56885,44440
+56886,72959
+56887,56937
+56888,61830
+56889,25234
+56890,61796
+56891,81578
+56892,27572
+56893,69308
+56894,54425
+56895,62456
+56896,35706
+56897,35437
+56898,78748
+56899,39152
+56900,78749
+56901,40063
+56902,60216
+56903,58162
+56904,48801
+56905,53797
+56906,59775
+56907,46767
+56908,69286
+56909,48041
+56910,27233
+56911,38545
+56912,56886
+56913,62401
+56914,34685
+56915,63376
+56916,78923
+56917,58168
+56918,41155
+56919,35754
+56920,75019
+56921,60216
+56922,28780
+56923,56899
+56924,18789
+56925,73007
+56926,73012
+56927,74735
+56928,29106
+56929,60216
+56930,60216
+56931,24306
+56932,40064
+56933,60216
+56934,58169
+56935,62794
+56936,73863
+56937,60216
+56938,60216
+56939,44440
+56940,74037
+56941,54044
+56942,72623
+56943,60216
+56944,59432
+56945,48077
+56946,30467
+56947,78923
+56948,64409
+56949,58158
+56950,20963
+56951,40617
+56952,63921
+56953,20994
+56954,35712
+56955,58166
+56956,48477
+56957,60216
+56958,59475
+56959,66226
+56960,34837
+56961,46767
+56962,52097
+56963,26827
+56964,62840
+56965,27986,55067,79222
+56966,63180
+56967,63180
+56968,21381
+56969,63180
+56970,80424
+56971,72839
+56972,33455
+56973,35773
+56974,47818
+56975,49459
+56976,43380
+56977,31361
+56978,65707
+56979,31245
+56980,38778
+56981,28545
+56982,60598
+56983,35386
+56984,51894
+56985,27534
+56986,35386
+56987,35389
+56988,30962
+56989,30962
+56990,61733
+56991,81161
+56992,30962
+56993,30962
+56994,70104
+56995,81193
+56996,35386
+56997,51894
+56998,30962
+56999,30962
+57000,30962
+57001,73481
+57002,43104
+57003,61746
+57004,25079
+57005,50934
+57006,32921
+57007,81161
+57008,653
+57009,45732
+57010,46287
+57011,11865
+57012,60358
+57013,60801
+57014,43769
+57015,65347
+57016,68597
+57017,26639
+57018,40293
+57019,80995
+57020,62147
+57021,65579
+57022,35386
+57023,51894
+57024,30962
+57025,30962
+57026,30962
+57027,81193
+57028,77802
+57029,70987
+57030,74903
+57031,71024
+57032,70628
+57033,41672
+57034,41672
+57035,28807
+57036,41672
+57037,40846
+57038,39071
+57039,46507
+57040,22684
+57041,73573
+57042,24700
+57043,34175
+57044,21568
+57045,80753
+57046,24404
+57047,53593
+57048,37041
+57049,33404
+57050,53716
+57051,52071
+57052,33563
+57053,56069
+57054,59531
+57055,57065
+57056,57573
+57057,81788
+57058,81786
+57059,47920
+57060,47920
+57061,33502
+57062,76936
+57063,81801
+57064,19774
+57065,30647
+57066,55760
+57067,34087
+57068,60235
+57069,57067
+57070,57067
+57071,25306
+57072,62100
+57073,38030
+57074,58737
+57075,81796
+57076,65707
+57077,56912
+57078,31795
+57079,21458
+57080,75718
+57081,20823
+57082,66324
+57083,22133
+57084,22133
+57085,60011
+57086,57573
+57087,65975
+57088,31158
+57089,21730
+57090,47388
+57091,32384
+57092,72208
+57093,48059
+57094,64620
+57095,27167
+57096,27167
+57097,31638
+57098,31640,74086
+57099,52752
+57100,60570
+57101,27562
+57102,30824
+57103,33292
+57104,72892
+57105,65896
+57106,39801
+57107,25306
+57108,57106
+57109,81781
+57110,81787
+57111,58212
+57112,34950
+57113,78785
+57114,26367
+57115,26368
+57116,65767
+57117,76664
+57118,20977
+57119,62703
+57120,57385
+57121,72483
+57122,51068
+57123,53607
+57124,26320
+57125,59305
+57126,57125
+57127,61260
+57128,69744
+57129,66471
+57130,27949
+57131,28801
+57132,30391
+57133,34871,35922
+57134,37913
+57135,25203
+57136,39298
+57137,41773
+57138,52628
+57139,53716
+57140,60611
+57141,60612
+57142,63362
+57143,56179
+57144,21200
+57145,66075
+57146,66838
+57147,75954
+57148,80514
+57149,27954
+57150,38053
+57151,52544
+57152,58154
+57153,73837
+57154,23200
+57155,63467
+57156,63434
+57157,43517
+57158,66309
+57159,75001
+57160,38385
+57161,28237
+57162,28237
+57163,56492
+57164,58154
+57165,56000
+57166,58803
+57167,60216
+57168,73015
+57169,72733
+57170,55451
+57171,63945
+57172,63956
+57173,62456
+57174,47991
+57175,25391,60282
+57176,46954
+57177,20827
+57178,69330
+57179,53477
+57180,79076
+57181,72988
+57182,28539
+57183,19497
+57184,81462
+57185,19172
+57186,33876
+57187,34326
+57188,30935
+57189,49026
+57190,62159
+57191,43911
+57192,70549
+57193,53958
+57194,20409
+57195,19735
+57196,26937
+57197,31100
+57198,26933
+57199,68943
+57200,53480
+57201,52159
+57202,74939
+57203,67254
+57204,72271
+57205,70627
+57206,74903
+57207,56023
+57208,53473
+57209,35851
+57210,63861
+57211,64160
+57212,23792
+57213,35480
+57214,57194
+57215,30392
+57216,30404
+57217,41096
+57218,65758
+57219,51068
+57220,44738
+57221,35342
+57222,31778
+57223,45458
+57224,65598
+57225,53707
+57226,51959
+57227,65598
+57228,69564
+57229,60216
+57230,28955
+57231,56073
+57232,62682
+57233,45457
+57234,27562
+57235,48064
+57236,19758
+57237,53694
+57238,68236
+57239,22507
+57240,27562
+57241,68869
+57242,24781
+57243,68456
+57244,39423
+57245,27167
+57246,64293
+57247,72503
+57248,60960
+57249,20690
+57250,56816
+57251,31064
+57252,32233
+57253,68854
+57254,58287
+57255,57241
+57256,72142
+57257,72146
+57258,45951
+57259,74081
+57260,21703
+57261,41004
+57262,58162
+57263,68280
+57264,71997
+57265,81018
+57266,48157
+57267,69659
+57268,37058
+57269,53717
+57270,45204
+57271,31115
+57272,79743,22406
+57273,70395
+57274,52908,61842
+57275,39049
+57276,73367
+57277,6941
+57278,50459
+57279,81462
+57280,26669
+57281,81462
+57282,32770
+57283,78647
+57284,69444
+57285,60273
+57286,39015
+57287,21006,20977
+57288,81482
+57289,77641
+57290,43766
+57291,42029
+57292,61256
+57293,77641
+57294,39676
+57295,39767
+57296,47655
+57297,71398
+57298,25059
+57299,70627
+57300,57298
+57301,77277
+57302,49772
+57303,46781
+57304,28323
+57305,43893
+57306,27497
+57307,64293
+57308,63251
+57309,30689
+57310,62087
+57311,53592
+57312,31853
+57313,55341
+57314,68809
+57315,33302
+57316,33305
+57317,81482
+57318,77641
+57319,77280
+57320,74025
+57321,39976
+57322,32718
+57323,30530
+57324,24573
+57325,29067,20998
+57326,71634
+57327,57964
+57328,65793
+57329,57081
+57330,31546
+57331,31120
+57332,31638
+57333,60600
+57334,37476
+57335,33891
+57336,63192
+57337,63193
+57338,24163
+57339,30188
+57340,63193
+57341,50359
+57342,63187
+57343,79745
+57344,65925
+57345,65025
+57346,72052
+57347,63059
+57348,50985
+57349,49362
+57350,81612
+57351,70392
+57352,65767
+57353,67136
+57354,43335
+57355,20502
+57356,72959
+57357,81798
+57358,60239
+57359,23891
+57360,27785
+57361,20698
+57362,22907
+57363,77740
+57364,79282
+57365,71949
+57366,37567
+57367,57385
+57368,41206
+57369,61213
+57370,70392
+57371,69522
+57372,36166
+57373,57372
+57374,57372
+57375,55768
+57376,80618
+57377,70392
+57378,47900
+57379,47899
+57380,63138
+57381,61767
+57382,34126
+57383,34118
+57384,47845
+57385,72861
+57386,69051
+57387,74027
+57388,39111
+57389,53621
+57390,52084
+57391,65793
+57392,52092
+57393,73001
+57394,26298
+57395,40150
+57396,38807
+57397,53986
+57398,62656
+57399,56540
+57400,56540
+57401,21090
+57402,60242
+57403,31095
+57404,79847
+57405,34354
+57406,57681
+57407,57418
+57408,46090
+57409,41083
+57410,41657
+57411,71996
+57412,53716
+57413,31543
+57414,34313
+57415,46092
+57416,52957
+57417,60598
+57418,73838
+57419,57415
+57420,66058
+57421,35682
+57422,69803
+57423,31520
+57424,19129
+57425,31528
+57426,63399
+57427,79282
+57428,57361
+57429,70392
+57430,77740
+57431,36746
+57432,58024
+57433,70110
+57434,62794
+57435,31528
+57436,58595
+57437,81200
+57438,76630
+57439,57982
+57440,65050
+57441,26573
+57442,64142
+57443,53849
+57444,44730
+57445,51856
+57446,26320
+57447,79282
+57448,74640
+57449,25256
+57450,41669
+57451,22107
+57452,62147
+57453,62456
+57454,35480
+57455,74433
+57456,60216
+57457,66039
+57458,60013
+57459,76664
+57460,19228
+57461,19228
+57462,71310
+57463,19129
+57464,51204
+57465,35534
+57466,25094
+57467,45337
+57468,50906
+57469,76162
+57470,69308
+57471,62694
+57472,25113
+57473,50438
+57474,33425
+57475,23644
+57476,37210
+57477,61438
+57478,80370
+57479,43107
+57480,68290
+57481,36981
+57482,42049
+57483,81153
+57484,36979
+57485,58061
+57486,74939
+57487,69927
+57488,27165
+57489,61866
+57490,61871
+57491,35188
+57492,53473
+57493,62152
+57494,79419
+57495,47047
+57496,53619
+57497,53624
+57498,65761
+57499,72877
+57500,48662
+57501,70549
+57502,55761
+57503,69331
+57504,55756
+57505,42351
+57506,50439
+57507,57682
+57508,28307
+57509,68622
+57510,57508
+57511,54811
+57512,79419
+57513,36841
+57514,55686
+57515,77287
+57516,32715
+57517,55692
+57518,39002
+57519,39002
+57520,31212
+57521,26965
+57522,60953
+57523,78654
+57524,37061
+57525,78640
+57526,59230
+57527,51387
+57528,64846
+57529,42076
+57530,21946
+57531,52457
+57532,61622
+57533,69522
+57534,54130
+57535,48318
+57536,58088
+57537,63064
+57538,58776
+57539,49343
+57540,81227
+57541,24007
+57542,39878
+57543,37812
+57544,29513
+57545,33930
+57546,37479
+57547,68677
+57548,81907
+57549,81907
+57550,79189
+57551,75566
+57552,77460
+57553,57932
+57554,78758
+57555,72052
+57556,54044
+57557,21826
+57558,23891
+57559,31729
+57560,57559
+57561,66690
+57562,61144
+57563,72714
+57564,72959
+57565,47886
+57566,37712
+57567,26298
+57568,41917
+57569,57573,46251
+57570,53163
+57571,54038
+57572,19359
+57573,70629
+57574,38694
+57575,38883
+57576,29737
+57577,60073
+57578,41955
+57579,25113
+57580,21729
+57581,62963
+57582,51719
+57583,54774
+57584,31477
+57585,65702
+57586,33621
+57587,61677
+57588,72029
+57589,43193
+57590,57589
+57591,66063
+57592,37394
+57593,54130
+57594,51624
+57595,57613
+57596,64266
+57597,48032
+57598,48539
+57599,24765
+57600,41911
+57601,39563
+57602,78060
+57603,27413
+57604,30937
+57605,31482
+57606,40021
+57607,41953
+57608,38740
+57609,45546
+57610,48030
+57611,50273
+57612,57601
+57613,58783
+57614,58798
+57615,58803
+57616,58800
+57617,39517
+57618,61009
+57619,62757
+57620,63775
+57621,65496
+57622,69508
+57623,70837
+57624,72764
+57625,27592
+57626,23134
+57627,80640
+57628,27363
+57629,27114
+57630,39049
+57631,81626
+57632,39817
+57633,42420
+57634,26602
+57635,70629
+57636,59020
+57637,68869
+57638,52519
+57639,80775
+57640,65795
+57641,80618
+57642,51658
+57643,43307
+57644,61614
+57645,45813
+57646,81796
+57647,59468
+57648,15725
+57649,59935
+57650,59939
+57651,57681
+57652,25175
+57653,57669
+57654,76662
+57655,20261
+57656,57682
+57657,52904
+57658,56485
+57659,39453
+57660,30153
+57661,81918
+57662,41180
+57663,39112
+57664,81065
+57665,52140
+57666,27506
+57667,25426
+57668,39446,36914
+57669,57682,52904
+57670,81161
+57671,58798,52572
+57672,67002
+57673,29626
+57674,56294
+57675,68565
+57676,63340
+57677,52132
+57678,57682,81462
+57679,71595
+57680,19635
+57681,19635
+57682,19438
+57683,61705
+57684,39676
+57685,70033
+57686,63064
+57687,55137
+57688,20755
+57689,56180
+57690,57689
+57691,56492
+57692,32715
+57693,63314
+57694,67277
+57695,61792
+57696,20812
+57697,42481
+57698,56515
+57699,56514
+57700,42481
+57701,53911
+57702,57160
+57703,53182
+57704,27455
+57705,60598
+57706,74939
+57707,54285
+57708,41729
+57709,81482
+57710,65777,36641
+57711,29237
+57712,57720
+57713,19629
+57714,26118
+57715,39049
+57716,57711
+57717,54439
+57718,44160
+57719,79261
+57720,41743
+57721,54562
+57722,54562
+57723,73207
+57724,67608
+57725,35480
+57726,67608
+57727,61715
+57728,48792
+57729,51068
+57730,37824
+57731,61918
+57732,61918
+57733,35557
+57734,58917
+57735,22229
+57736,60155
+57737,20889
+57738,30187
+57739,51068
+57740,56353
+57741,35689
+57742,51562
+57743,54774
+57744,72667
+57745,70387
+57746,20933
+57747,20907
+57748,72959
+57749,56244
+57750,72959
+57751,37041
+57752,20743
+57753,37042
+57754,68945
+57755,51666
+57756,77575
+57757,81080
+57758,38601
+57759,48111
+57760,58088
+57761,42429
+57762,71996
+57763,53716
+57764,78696
+57765,35188
+57766,41332
+57767,30758
+57768,63193
+57769,35255
+57770,30758
+57771,30758
+57772,45813
+57773,30758
+57774,30758
+57775,23232
+57776,30758
+57777,30758
+57778,30758
+57779,49312
+57780,30758
+57781,63250
+57782,60071
+57783,30758
+57784,45096
+57785,30758
+57786,30758
+57787,30758
+57788,30758
+57789,30758
+57790,30758
+57791,30758
+57792,36074,35116
+57793,22853
+57794,30758
+57795,30758
+57796,30758
+57797,30758
+57798,30758
+57799,30758
+57800,30758
+57801,62456
+57802,37318
+57803,78669
+57804,73649
+57805,25606
+57806,35863
+57807,35858
+57808,47407
+57809,26311
+57810,79259
+57811,20079
+57812,22696
+57813,25770
+57814,72503
+57815,36041
+57816,36298
+57817,26409
+57818,40564
+57819,71103
+57820,51019
+57821,76395
+57822,61265
+57823,81944
+57824,78414
+57825,72029
+57826,35863
+57827,35858
+57828,81592
+57829,51150
+57830,31093
+57831,66377
+57832,67365
+57833,72931
+57834,77972
+57835,21620
+57836,54100
+57837,57839
+57838,21718
+57839,35534
+57840,28449
+57841,42115
+57842,42117
+57843,82164
+57844,75521
+57845,18728
+57846,48126
+57847,18728
+57848,42114
+57849,72409
+57850,58578
+57851,50784
+57852,18842
+57853,56179
+57854,60603
+57855,47845
+57856,64142
+57857,71398
+57858,54562,57861
+57859,43362
+57860,25949
+57861,42412
+57862,77171
+57863,21475
+57864,63642
+57865,53203
+57866,77299
+57867,31588
+57868,81746
+57869,67822
+57870,45493
+57871,41911
+57872,73095
+57873,32820
+57874,28418
+57875,29418
+57876,36098
+57877,68355
+57878,59377
+57879,48661
+57880,51069
+57881,53238
+57882,54414
+57883,35376
+57884,68778
+57885,30621
+57886,53613
+57887,30937
+57888,44658
+57889,71341
+57890,80538
+57891,73477
+57892,72931
+57893,45009
+57894,57982
+57895,28346
+57896,48723
+57897,21745
+57898,28535
+57899,55348
+57900,74135
+57901,71837
+57902,72931
+57903,51472
+57904,71866
+57905,71302
+57906,61209
+57907,81602
+57908,77641
+57909,29643
+57910,76104
+57911,29839
+57912,30939
+57913,70426
+57914,59586
+57915,64160
+57916,31259
+57917,26246
+57918,27280
+57919,27326
+57920,38789
+57921,24214
+57922,63060
+57923,46684
+57924,71439
+57925,75057
+57926,19202
+57927,33885
+57928,26579
+57929,19228
+57930,19228
+57931,63065
+57932,19228
+57933,81601
+57934,53705
+57935,30188
+57936,75957
+57937,33754
+57938,60450
+57939,77399
+57940,65999
+57941,39827
+57942,41842
+57943,72046
+57944,26602
+57945,28054
+57946,42429
+57947,61331
+57948,30608
+57949,34602
+57950,61703
+57951,82162
+57952,32718
+57953,18728
+57954,31432
+57955,57954
+57956,21703
+57957,79282
+57958,71996
+57959,53716
+57960,59126
+57961,53701
+57962,38601
+57963,56065
+57964,50875
+57965,49360
+57966,23790
+57967,54044
+57968,48111
+57969,71938
+57970,56065,31759
+57971,36603
+57972,26298
+57973,62029
+57974,44609
+57975,53283
+57976,53283
+57977,52791
+57978,31774
+57979,69005
+57980,69004
+57981,48077
+57982,62184
+57983,32269
+57984,35386
+57985,25094
+57986,31647
+57987,65691
+57988,73997
+57989,34659
+57990,60208
+57991,78755
+57992,63434
+57993,20978
+57994,25087
+57995,55158
+57996,22452
+57997,28878
+57998,27038
+57999,32715
+58000,56450
+58001,21200
+58002,58008
+58003,34559
+58004,34924
+58005,53870
+58006,39767
+58007,58008
+58008,43362
+58009,58012
+58010,48408
+58011,57854
+58012,60603
+58013,64052
+58014,21997
+58015,70629
+58016,60612
+58017,63314
+58018,46524
+58019,35679
+58020,60216
+58021,47716
+58022,43723
+58023,34697
+58024,34149
+58025,71997
+58026,62455
+58027,45813
+58028,63325
+58029,70026
+58030,38600
+58031,27497
+58032,31688
+58033,19737
+58034,45874
+58035,60242
+58036,60271
+58037,20017
+58038,60385
+58039,60786
+58040,29502
+58041,29503
+58042,29237
+58043,58088
+58044,50737
+58045,40578
+58046,16022
+58047,44460
+58048,80583
+58049,41738
+58050,51640
+58051,53221
+58052,54468
+58053,55730
+58054,27150
+58055,59801
+58056,24555
+58057,71173
+58058,71408
+58059,76802
+58060,77105
+58061,81918
+58062,58055
+58063,41735
+58064,61273,44219
+58065,81482
+58066,44104
+58067,58069
+58068,71961
+58069,19311
+58070,72153
+58071,72165
+58072,70392
+58073,59542
+58074,59542
+58075,60117
+58076,61211
+58077,67053
+58078,32718
+58079,44013
+58080,11865
+58081,55761
+58082,68697
+58083,21474
+58084,55753
+58085,21619
+58086,21619
+58087,21621
+58088,40752
+58089,58776
+58090,18728
+58091,36872
+58092,57934
+58093,58088
+58094,48126
+58095,47805
+58096,29738
+58097,38793
+58098,77725
+58099,72959
+58100,75510
+58101,65975
+58102,30621
+58103,21771
+58104,68796
+58105,52655
+58106,58170
+58107,30657
+58108,67272
+58109,20756
+58110,62146
+58111,25306
+58112,41221
+58113,64846
+58114,19650
+58115,58114
+58116,26728
+58117,58177
+58118,21618
+58119,65631
+58120,31245
+58121,22128,71493
+58122,22128
+58123,40282
+58124,57187
+58125,50907
+58126,29737
+58127,64142
+58128,31241
+58129,29737
+58130,49353
+58131,28619
+58132,24046
+58133,20835
+58134,3143
+58135,73018
+58136,21289
+58137,54562
+58138,41410
+58139,23639
+58140,58204
+58141,31853
+58142,19649
+58143,60131
+58144,25115
+58145,49697,81200
+58146,69998
+58147,36088
+58148,42039
+58149,58150
+58150,69118
+58151,81200
+58152,58151
+58153,55795
+58154,58144
+58155,39705
+58156,53913
+58157,28803
+58158,31058
+58159,35626
+58160,51320
+58161,56178
+58162,63065
+58163,68289
+58164,58162
+58165,75019
+58166,51807
+58167,55768
+58168,71315
+58169,19374
+58170,19228
+58171,58119
+58172,28654
+58173,26589
+58174,37712
+58175,71315
+58176,50105
+58177,76256
+58178,78687
+58179,75020
+58180,48319
+58181,56447
+58182,39049
+58183,31596
+58184,66690
+58185,48013
+58186,66279
+58187,23478
+58188,40772
+58189,30147
+58190,61218
+58191,62029
+58192,72559
+58193,64142
+58194,71997
+58195,35386
+58196,22152
+58197,68952
+58198,61154
+58199,32506
+58200,59423
+58201,74904
+58202,72838
+58203,21669
+58204,45813
+58205,71746
+58206,48646
+58207,20584
+58208,23760
+58209,54867
+58210,70416,65760
+58211,23790
+58212,18721
+58213,64142
+58214,39556
+58215,32799
+58216,60476
+58217,34154
+58218,18653
+58219,25727
+58220,61246
+58221,62456
+58222,72959
+58223,34197
+58224,21218
+58225,20355
+58226,35309
+58227,82163
+58228,82164
+58229,76210
+58230,58226
+58231,43110
+58232,20120
+58233,43113
+58234,28091
+58235,60216
+58236,28952
+58237,51472
+58238,82050
+58239,77209
+58240,31241
+58241,48400
+58242,55688
+58243,37173
+58244,54562
+58245,68867
+58246,61223
+58247,66965
+58248,75702
+58249,29195
+58250,40003
+58251,39585
+58252,77636
+58253,34587
+58254,34585
+58255,70782
+58256,58196
+58257,78747
+58258,60495
+58259,60496
+58260,65240
+58261,57984
+58262,81786
+58263,55963
+58264,53710
+58265,71996
+58266,36918
+58267,45570
+58268,48318
+58269,77636
+58270,71996
+58271,57961
+58272,47267
+58273,58576
+58274,26448
+58275,79953
+58276,20905
+58277,59475
+58278,58200
+58279,20691
+58280,74807
+58281,56179
+58282,80440
+58283,42467
+58284,65216
+58285,65213
+58286,37479
+58287,59441
+58288,70799,36747
+58289,31601
+58290,81425
+58291,81176
+58292,54562
+58293,54082
+58294,37810
+58295,35167
+58296,62757
+58297,45302
+58298,25256
+58299,26911
+58300,46892
+58301,58162
+58302,31787
+58303,35557
+58304,65108
+58305,48126
+58306,34327
+58307,62781
+58308,35664
+58309,48038
+58310,21710
+58311,37642
+58312,23906
+58313,23906
+58314,77636
+58315,25263
+58316,25263
+58317,36923
+58318,22350
+58319,20575
+58320,20577
+58321,52469
+58322,23906
+58323,52788
+58324,58305
+58325,76160
+58326,77636
+58327,42481
+58328,63064
+58329,59549
+58330,67883
+58331,68317
+58332,49155
+58333,57934
+58334,60572
+58335,62059
+58336,57934
+58337,37310
+58338,49155
+58339,60216
+58340,64864
+58341,39676
+58342,35142
+58343,18840
+58344,70033
+58345,22337
+58346,48126
+58347,58346
+58348,58346
+58349,53716
+58350,61317
+58351,59549
+58352,42481
+58353,53701
+58354,72877
+58355,41899
+58356,55815
+58357,48321
+58358,46760
+58359,68691
+58360,36778
+58361,10650
+58362,22414
+58363,21192,77992
+58364,38561
+58365,60216
+58366,37310
+58367,39152
+58368,38807
+58369,65108
+58370,38793
+58371,69358
+58372,47908
+58373,25807
+58374,26546
+58375,48579
+58376,55374
+58377,45096
+58378,26298
+58379,45096
+58380,35792
+58381,78647
+58382,60216
+58383,66786
+58384,22036
+58385,72421
+58386,58432
+58387,60216
+58388,58387
+58389,61220
+58390,71842,51894
+58391,69439
+58392,29928
+58393,38737
+58394,77277
+58395,39888
+58396,39889
+58397,78698
+58398,22149
+58399,42228
+58400,69860
+58401,21561
+58402,40745
+58403,77444
+58404,31477
+58405,58378
+58406,78640
+58407,65107
+58408,66040
+58409,34915
+58410,25495
+58411,61202
+58412,74281
+58413,59555
+58414,62089
+58415,54431
+58416,63117
+58417,63124
+58418,47908
+58419,64846
+58420,31690
+58421,60138
+58422,31109
+58423,79000
+58424,79001
+58425,70214
+58426,22095
+58427,47899
+58428,64941
+58429,25127
+58430,72698
+58431,27224
+58432,65581
+58433,74535
+58434,26965
+58435,29797
+58436,52102
+58437,27419
+58438,31647
+58439,42518
+58440,70549
+58441,29513
+58442,68801
+58443,71499
+58444,62190
+58445,76430
+58446,68171
+58447,58383
+58448,30275
+58449,38972
+58450,62147
+58451,34305
+58452,51665
+58453,21703
+58454,33650
+58455,37145
+58456,79282
+58457,48126
+58458,65956
+58459,39614,43707
+58460,70392
+58461,65170
+58462,49888
+58463,76196
+58464,78432
+58465,11870
+58466,32986
+58467,59308
+58468,53717
+58469,73341
+58470,51958
+58471,78736
+58472,18853
+58473,60072
+58474,73863
+58475,25087
+58476,21905
+58477,81603
+58478,32572
+58479,21088
+58480,24059
+58481,24057
+58482,52860
+58483,50297
+58484,27343
+58485,27876
+58486,80807
+58487,28616
+58488,30073
+58489,30974
+58490,30975
+58491,32828
+58492,57289
+58493,36317
+58494,57867
+58495,19202
+58496,46014
+58497,79271
+58498,38392
+58499,21296
+58500,37237
+58501,38822
+58502,38868
+58503,38871
+58504,39572
+58505,40619
+58506,40747
+58507,38035
+58508,42225
+58509,63176
+58510,49997
+58511,61078
+58512,69408
+58513,63218
+58514,27564
+58515,28123
+58516,66260
+58517,63224
+58518,45556
+58519,48013
+58520,27280
+58521,37237
+58522,31213
+58523,65929
+58524,50652,34199
+58525,51613
+58526,51825
+58527,51825
+58528,77045
+58529,67277
+58530,62145
+58531,69653
+58532,44550
+58533,22688
+58534,25920
+58535,59645
+58536,59646
+58537,38625
+58538,62043
+58539,22054
+58540,62948
+58541,63124
+58542,64949
+58543,34924
+58544,74462
+58545,69128
+58546,41090
+58547,50320
+58548,57741
+58549,54774
+58550,70403
+58551,70404
+58552,70675
+58553,55490
+58554,73550
+58555,48478
+58556,75917
+58557,81615
+58558,76664
+58559,58558
+58560,60178
+58561,53607
+58562,45183
+58563,55734
+58564,74220
+58565,74132
+58566,38512
+58567,74281
+58568,50104
+58569,58144
+58570,53012
+58571,71517
+58572,54953
+58573,43707
+58574,58162
+58575,56165
+58576,65956
+58577,58578
+58578,42114
+58579,24331
+58580,58579
+58581,43545
+58582,60216
+58583,26602
+58584,36542
+58585,66040
+58586,72959
+58587,65691
+58588,28028
+58589,25519
+58590,59901
+58591,67675
+58592,19069
+58593,67675
+58594,19069
+58595,45813
+58596,56950
+58597,54642
+58598,33845
+58599,50296
+58600,53605
+58601,41444
+58602,50215
+58603,27721
+58604,81161
+58605,36126
+58606,31043
+58607,40752
+58608,69818
+58609,28775
+58610,38053
+58611,28792
+58612,28792
+58613,47946
+58614,57187
+58615,58162
+58616,31058
+58617,9238
+58618,38053
+58619,58158
+58620,53624
+58621,62910
+58622,75152
+58623,71719
+58624,20727
+58625,80583
+58626,54825
+58627,24887
+58628,19069
+58629,24354
+58630,28780,42246
+58631,60598
+58632,34320
+58633,25844
+58634,58618
+58635,56179
+58636,45744
+58637,77945
+58638,19242
+58639,20963
+58640,20981
+58641,20977
+58642,53717
+58643,46553
+58644,81578
+58645,74462
+58646,45689
+58647,24442
+58648,23019
+58649,81647
+58650,59659
+58651,32672
+58652,76798
+58653,19629
+58654,67670
+58655,69662
+58656,73207
+58657,73897
+58658,69887
+58659,46876
+58660,35534
+58661,42246
+58662,46267
+58663,50649
+58664,47487
+58665,31058
+58666,77467
+58667,31607
+58668,69050
+58669,47077
+58670,16971
+58671,41003
+58672,69566
+58673,66862
+58674,64831
+58675,75763
+58676,73152
+58677,27405
+58678,50396
+58679,37478
+58680,27524
+58681,46599
+58682,64409
+58683,38690
+58684,60883
+58685,25022
+58686,19412
+58687,25259
+58688,18740
+58689,61159
+58690,74067
+58691,60385
+58692,31353
+58693,21219
+58694,76248
+58695,23790
+58696,35922
+58697,19438
+58698,42003
+58699,20751
+58700,30391
+58701,32181
+58702,26416
+58703,58710
+58704,32181
+58705,23599
+58706,47314
+58707,58700
+58708,66515
+58709,30391
+58710,31616
+58711,69860
+58712,77160
+58713,44328
+58714,53453
+58715,30659
+58716,30937
+58717,24816
+58718,81643
+58719,54043
+58720,58710
+58721,81630,58705
+58722,27715
+58723,37777
+58724,32753
+58725,53454
+58726,56316
+58727,26298
+58728,61247
+58729,30404
+58730,81506
+58731,67474
+58732,73743
+58733,50717
+58734,58739
+58735,73837
+58736,24781
+58737,59020
+58738,77641
+58739,21745
+58740,23368
+58741,24630
+58742,48414
+58743,57296
+58744,32578
+58745,73072
+58746,42154
+58747,80753
+58748,59849
+58749,66475
+58750,39818
+58751,80061
+58752,51901
+58753,46695
+58754,37718
+58755,47128
+58756,35557
+58757,65767
+58758,65754
+58759,22128
+58760,50716
+58761,54049
+58762,22128
+58763,62957
+58764,28346
+58765,65927
+58766,44816
+58767,57187
+58768,79009
+58769,75751
+58770,41454
+58771,28104
+58772,50593
+58773,79026
+58774,31618
+58775,53524
+58776,74939
+58777,78755
+58778,71579
+58779,39578
+58780,18806
+58781,78703
+58782,64142
+58783,30073,30498
+58784,66900
+58785,27375
+58786,58384
+58787,19800,42097
+58788,25574
+58789,26166,21281
+58790,57280
+58791,40752
+58792,44226
+58793,30351
+58794,67814
+58795,67665
+58796,78286
+58797,70629
+58798,21765
+58799,51475
+58800,21669,40080
+58801,21276
+58802,77287
+58803,44000
+58804,42351
+58805,61713
+58806,69331
+58807,56179
+58808,44451
+58809,41410
+58810,39049
+58811,77985
+58812,56703
+58813,43809
+58814,38718
+58815,66035
+58816,53033
+58817,51738
+58818,75439
+58819,18918
+58820,69077
+58821,74535
+58822,35787
+58823,14489
+58824,25256
+58825,9930
+58826,21703
+58827,64785
+58828,79282
+58829,57934
+58830,56941
+58831,19959
+58832,44214
+58833,79640
+58834,81918
+58835,56492
+58836,31029
+58837,30480
+58838,79434
+58839,58854,24251
+58840,58839,25432
+58841,56492
+58842,21433
+58843,58840
+58844,37110
+58845,21433
+58846,21433
+58847,43113
+58848,21432
+58849,21433
+58850,76981
+58851,21433
+58852,58857
+58853,68290
+58854,36981
+58855,21433,59550
+58856,58857
+58857,58839,82164
+58858,61404
+58859,21433
+58860,68342
+58861,25017
+58862,71954
+58863,67479
+58864,59549
+58865,74498
+58866,53064
+58867,81578
+58868,44474
+58869,41279
+58870,26489
+58871,42093
+58872,54082
+58873,67814
+58874,54121
+58875,55444
+58876,61355
+58877,45009
+58878,53524
+58879,21568
+58880,36999
+58881,65795
+58882,79467
+58883,23206
+58884,79485
+58885,29839
+58886,32530
+58887,51523
+58888,77641
+58889,21477
+58890,29526
+58891,57241
+58892,79261
+58893,31062
+58894,18740
+58895,39318
+58896,41290
+58897,35858
+58898,67946
+58899,43509
+58900,39318
+58901,20690
+58902,77641
+58903,26668
+58904,46599
+58905,70033
+58906,38601,77147
+58907,31430
+58908,24753
+58909,74939
+58910,74939
+58911,81717
+58912,43104
+58913,44013
+58914,60216
+58915,81781
+58916,31616
+58917,31861
+58918,65795
+58919,61530
+58920,29349
+58921,26884
+58922,23419
+58923,78250
+58924,27556
+58925,32362
+58926,40003
+58927,38740
+58928,18728
+58929,21703
+58930,27497
+58931,36710
+58932,35181
+58933,79282
+58934,48187
+58935,48126
+58936,33675
+58937,33159
+58938,56166
+58939,77641
+58940,76120
+58941,38108
+58942,22665
+58943,73696,81901
+58944,70392
+58945,61342
+58946,25094
+58947,58734
+58948,69633
+58949,25094
+58950,35532
+58951,45559
+58952,51316
+58953,58948
+58954,32965
+58955,37762
+58956,76120
+58957,40292
+58958,58776
+58959,39578
+58960,58776
+58961,61159
+58962,43104
+58963,45035
+58964,23751
+58965,21088
+58966,39502
+58967,63953
+58968,21090
+58969,54485
+58970,64410
+58971,21959
+58972,22684
+58973,81039
+58974,46506
+58975,58916
+58976,21622
+58977,21474
+58978,62981
+58979,60715
+58980,44658
+58981,60992
+58982,60216
+58983,70476
+58984,79630
+58985,58088
+58986,56832
+58987,50864
+58988,77985
+58989,55505
+58990,76120
+58991,76120
+58992,23792
+58993,30391
+58994,53861
+58995,75751
+58996,51000
+58997,78583
+58998,76597
+58999,25843
+59000,39049
+59001,54528
+59002,53648
+59003,1594,19069
+59004,73476
+59005,70715
+59006,32218
+59007,76591
+59008,75291
+59009,36537
+59010,43809
+59011,38053
+59012,4374
+59013,48058
+59014,60536
+59015,55688
+59016,37179
+59017,37179
+59018,41743
+59019,49391
+59020,53454
+59021,21729
+59022,53731
+59023,26470,29744
+59024,28417
+59025,42094
+59026,29244
+59027,29819
+59028,33548
+59029,36007
+59030,37494
+59031,39423
+59032,34924
+59033,25481
+59034,52148
+59035,39122
+59036,33422
+59037,20690
+59038,57508
+59039,61336
+59040,41998
+59041,37721
+59042,59542
+59043,59020
+59044,62447
+59045,77180
+59046,59020
+59047,81801
+59048,79468
+59049,33712
+59050,25306
+59051,27514
+59052,34437
+59053,41203
+59054,32691
+59055,21276
+59056,77287
+59057,80613
+59058,81601
+59059,59020
+59060,63064
+59061,63064
+59062,63064
+59063,27524
+59064,37162
+59065,23906
+59066,77227
+59067,14491
+59068,22507
+59069,20763
+59070,27041
+59071,40564
+59072,60868
+59073,59072
+59074,59020
+59075,35926
+59076,68854
+59077,68352
+59078,79086
+59079,18511
+59080,19069
+59081,73495
+59082,31413
+59083,59084
+59084,65508
+59085,61213
+59086,68374
+59087,65584
+59088,65995
+59089,49419
+59090,39348
+59091,74133
+59092,63072
+59093,35665
+59094,77277
+59095,71686
+59096,48136
+59097,62149
+59098,24437
+59099,31707
+59100,70782
+59101,20017
+59102,49651
+59103,80460
+59104,21477
+59105,47389
+59106,54218
+59107,81789
+59108,81781
+59109,19333
+59110,59286
+59111,30882
+59112,19944
+59113,59159
+59114,66377
+59115,58012
+59116,39936
+59117,50717
+59118,44696
+59119,29883
+59120,48540
+59121,57927
+59122,62976
+59123,70375
+59124,64109
+59125,39225
+59126,36900
+59127,25673,34356
+59128,45029
+59129,18663
+59130,52605
+59131,52634
+59132,29368
+59133,59159
+59134,39116
+59135,64160
+59136,31540
+59137,73007
+59138,48126
+59139,41107
+59140,30275
+59141,49013
+59142,36072
+59143,55963
+59144,70474
+59145,49945
+59146,63598
+59147,63605
+59148,68211
+59149,59204
+59150,80047
+59151,41279
+59152,40740
+59153,60271
+59154,66356
+59155,39777
+59156,59126
+59157,45029
+59158,38984
+59159,21922
+59160,63586
+59161,45826
+59162,61703
+59163,59088
+59164,43398
+59165,58166
+59166,59169
+59167,24823
+59168,49103
+59169,59165
+59170,55854
+59171,69464
+59172,19629
+59173,56456
+59174,48319
+59175,60285
+59176,37832
+59177,46553
+59178,71493
+59179,48071
+59180,48084
+59181,79282
+59182,20112
+59183,52691
+59184,35879
+59185,59020
+59186,20759
+59187,80174
+59188,29738
+59189,60216
+59190,66377
+59191,53717
+59192,61263
+59193,20760
+59194,42505
+59195,58166
+59196,49858
+59197,64142
+59198,63809
+59199,53473
+59200,19362
+59201,19452
+59202,52996
+59203,49945
+59204,59126
+59205,74939
+59206,59128
+59207,41719
+59208,43364
+59209,61302
+59210,61309
+59211,61304
+59212,72451
+59213,31100
+59214,33375
+59215,53849
+59216,44730
+59217,51856
+59218,69254
+59219,61161
+59220,61456
+59221,74241
+59222,74640
+59223,23966
+59224,57333
+59225,41417
+59226,49483
+59227,30900
+59228,29327
+59229,20307
+59230,53476
+59231,38221
+59232,31481
+59233,62625
+59234,24389
+59235,31343
+59236,42387
+59237,77277
+59238,77277
+59239,23869
+59240,30684
+59241,49079
+59242,66954
+59243,52959
+59244,52153
+59245,76682
+59246,71838
+59247,76517
+59248,41264
+59249,23966
+59250,56361
+59251,50912
+59252,38807
+59253,19655
+59254,34491
+59255,55013
+59256,65116
+59257,59432
+59258,42093
+59259,52679
+59260,53275
+59261,56080
+59262,46935
+59263,27596
+59264,21127
+59265,67275
+59266,51174
+59267,63251
+59268,48077
+59269,81578
+59270,67641
+59271,79282
+59272,48126
+59273,68933
+59274,22107
+59275,18663
+59276,81578
+59277,68697
+59278,40701
+59279,68697
+59280,48269,40704
+59281,82055
+59282,82055
+59283,55668
+59284,55662
+59285,31945
+59286,24306
+59287,43444
+59288,60032
+59289,24801
+59290,37832
+59291,37832
+59292,22000
+59293,63187
+59294,41728
+59295,45812
+59296,45813
+59297,45316
+59298,66965
+59299,66977
+59300,45813
+59301,45689
+59302,66035
+59303,31165
+59304,51468
+59305,76251
+59306,57333
+59307,65691
+59308,31158
+59309,78179
+59310,75146
+59311,58582
+59312,70427
+59313,81626
+59314,55734
+59315,43911
+59316,59333
+59317,50717
+59318,40760
+59319,21174
+59320,21174
+59321,21810
+59322,28164
+59323,25763
+59324,32185
+59325,34589
+59326,34698
+59327,35150
+59328,37104
+59329,79277
+59330,79387
+59331,47814
+59332,47844
+59333,21930
+59334,31245
+59335,51836
+59336,79376
+59337,41846
+59338,25092
+59339,23538
+59340,28475
+59341,60612
+59342,46610
+59343,63348
+59344,39111
+59345,40926
+59346,64142
+59347,34735
+59348,53454
+59349,60800
+59350,19497
+59351,79172
+59352,74235
+59353,31115
+59354,25115
+59355,73838
+59356,19497
+59357,81578
+59358,60216
+59359,39813
+59360,65700
+59361,26577
+59362,31690
+59363,68831
+59364,81162
+59365,60396
+59366,74067
+59367,79608
+59368,38043
+59369,24188
+59370,27929
+59371,26586
+59372,48771
+59373,71595
+59374,59375
+59375,58162
+59376,60216
+59377,71314
+59378,19541
+59379,69335
+59380,58168
+59381,61796
+59382,49600
+59383,42094
+59384,43313
+59385,61766
+59386,75677
+59387,61796
+59388,34949
+59389,59379
+59390,80046
+59391,22127
+59392,11870
+59393,32522
+59394,20763
+59395,73152
+59396,33799
+59397,33799
+59398,33799
+59399,33799
+59400,62767
+59401,28137
+59402,22268
+59403,33793
+59404,22853
+59405,81161
+59406,50802
+59407,33585
+59408,76518
+59409,40619
+59410,49444
+59411,60177
+59412,51204
+59413,51894
+59414,41054
+59415,60177
+59416,70524
+59417,76429
+59418,57897
+59419,68809
+59420,80483
+59421,34433
+59422,55756
+59423,73837
+59424,64949
+59425,49343
+59426,28539
+59427,59420
+59428,67991
+59429,55443
+59430,61078
+59431,77585
+59432,27408
+59433,60771
+59434,69744
+59435,77357
+59436,79114
+59437,60216
+59438,73863,76000
+59439,22799
+59440,59775
+59441,24306
+59442,37803
+59443,34041
+59444,65861
+59445,74132
+59446,55494
+59447,57066
+59448,66260
+59449,69444
+59450,39578
+59451,37179
+59452,79608
+59453,19793
+59454,19124
+59455,51651
+59456,35362
+59457,48154
+59458,77518
+59459,78059
+59460,79821
+59461,74027
+59462,47746
+59463,49684
+59464,50875
+59465,62159,68779
+59466,76664
+59467,75843
+59468,76633
+59469,53378
+59470,38807
+59471,59336
+59472,60062
+59473,63198
+59474,35557
+59475,41005
+59476,67594
+59477,50691
+59478,31047
+59479,19342
+59480,31048
+59481,27514
+59482,29237
+59483,81643
+59484,25256
+59485,73186
+59486,54446
+59487,81612
+59488,35838
+59489,51640
+59490,76691
+59491,51069
+59492,51701
+59493,55756
+59494,29736
+59495,62145
+59496,23694
+59497,22728
+59498,36242
+59499,69311
+59500,28764
+59501,44032
+59502,53637
+59503,59508
+59504,71686
+59505,10154
+59506,12335
+59507,63187
+59508,60744
+59509,61592
+59510,70656
+59511,81350
+59512,78635
+59513,65869
+59514,60078
+59515,70033
+59516,69400
+59517,76147
+59518,64316
+59519,72503
+59520,77014
+59521,69319
+59522,57904
+59523,50875
+59524,35926
+59525,21273
+59526,36714
+59527,79635
+59528,49484
+59529,50784
+59530,51962
+59531,53717
+59532,50885
+59533,50889
+59534,48768
+59535,39446
+59536,22152
+59537,72959
+59538,50637
+59539,21882
+59540,37548
+59541,80483
+59542,51468
+59543,51468
+59544,39225
+59545,54253,48083
+59546,59547
+59547,58162
+59548,60598
+59549,47475
+59550,53710
+59551,38883
+59552,64142
+59553,59541
+59554,43740
+59555,27777,70091
+59556,30073
+59557,30073
+59558,30073
+59559,21474
+59560,22734
+59561,68128
+59562,35004
+59563,2498
+59564,72283
+59565,41136
+59566,57669
+59567,52904,45382
+59568,4374
+59569,49483
+59570,71318
+59571,19438
+59572,59283
+59573,59284
+59574,78668
+59575,37870
+59576,56116
+59577,52268
+59578,81785
+59579,3704
+59580,41107
+59581,34833
+59582,63416
+59583,79471
+59584,80253
+59585,58583
+59586,33488
+59587,23891
+59588,34285,67582
+59589,71310
+59590,59587
+59591,56009
+59592,71686
+59593,38690
+59594,52773
+59595,60733
+59596,27167
+59597,35557
+59598,58917
+59599,59497
+59600,74296
+59601,28845
+59602,61997
+59603,63003
+59604,47747
+59605,76657
+59606,75472
+59607,33793
+59608,33799
+59609,55393
+59610,46550
+59611,59610
+59612,36338
+59613,75860
+59614,21276
+59615,21745
+59616,73412
+59617,52497
+59618,69696
+59619,34808
+59620,70033
+59621,20749
+59622,78755
+59623,27970
+59624,61440
+59625,28848
+59626,25412
+59627,65095
+59628,50971,61444
+59629,69860
+59630,33476
+59631,44240
+59632,75668
+59633,33498
+59634,58137
+59635,74130
+59636,79963
+59637,64833
+59638,51154
+59639,66265
+59640,28702
+59641,33928
+59642,65133
+59643,55030
+59644,59643
+59645,32269
+59646,30650
+59647,64833
+59648,45553
+59649,59645
+59650,25884
+59651,34609
+59652,74275
+59653,65589
+59654,65201
+59655,51068
+59656,50917
+59657,50918
+59658,50919
+59659,32642
+59660,53592
+59661,49079
+59662,61612
+59663,78096,61415
+59664,71719
+59665,40929
+59666,70033
+59667,68871
+59668,58099
+59669,45196
+59670,77637
+59671,77396
+59672,68829
+59673,36256
+59674,40283
+59675,63444
+59676,57556
+59677,71321
+59678,20365
+59679,71493
+59680,34285
+59681,61054
+59682,57932
+59683,76664
+59684,37179,36641
+59685,41743
+59686,27093
+59687,24726
+59688,47327
+59689,34808
+59690,44460
+59691,73413
+59692,67957
+59693,59698
+59694,81176
+59695,59698
+59696,57280
+59697,76422
+59698,60400
+59699,59698
+59700,77045
+59701,71686
+59702,61614
+59703,28952
+59704,37181
+59705,50919
+59706,27167
+59707,25982
+59708,72503
+59709,59970
+59710,79261
+59711,48787
+59712,74275
+59713,37179,61927
+59714,41743
+59715,49217
+59716,62284
+59717,23104
+59718,35826
+59719,40327
+59720,46386
+59721,28323
+59722,58647
+59723,67558
+59724,60032
+59725,50254
+59726,44418
+59727,41589
+59728,38555
+59729,64930
+59730,19739
+59731,78755
+59732,67381
+59733,62145
+59734,29626
+59735,63677
+59736,79260,46907
+59737,51120
+59738,21544
+59739,66786
+59740,31115
+59741,81482
+59742,37181
+59743,57249
+59744,60733
+59745,38529
+59746,2492
+59747,17466
+59748,39676
+59749,19069
+59750,28187
+59751,19421
+59752,70568
+59753,40036
+59754,43310
+59755,67819
+59756,79282
+59757,59752
+59758,59752
+59759,72066
+59760,39528
+59761,47992
+59762,51120
+59763,57066
+59764,77985
+59765,66502
+59766,68230
+59767,58308
+59768,58893
+59769,69010
+59770,60273
+59771,46410,59153
+59772,73018
+59773,74487
+59774,75057
+59775,77585
+59776,33068
+59777,77319
+59778,53716
+59779,77801
+59780,59795
+59781,60284
+59782,48111
+59783,59782
+59784,59782
+59785,59782
+59786,27562,23628
+59787,25855
+59788,20584
+59789,41972
+59790,34585
+59791,53624
+59792,60273
+59793,59153
+59794,44470
+59795,68110
+59796,56450
+59797,61890
+59798,54285
+59799,52084
+59800,28954
+59801,66613
+59802,81626
+59803,34924
+59804,59306
+59805,44658
+59806,39002
+59807,20743
+59808,46268
+59809,70654
+59810,38716
+59811,9930
+59812,60216
+59813,30226
+59814,59811
+59815,56802
+59816,75732
+59817,65641
+59818,60870
+59819,53180
+59820,46252
+59821,63399
+59822,77015
+59823,25018
+59824,47442
+59825,68619
+59826,68619
+59827,59826
+59828,59776
+59829,27296
+59830,22406
+59831,22790
+59832,48795
+59833,45813
+59834,45813
+59835,77508
+59836,70392
+59837,76435
+59838,21544
+59839,28091
+59840,40036
+59841,48127
+59842,53624
+59843,53621
+59844,43310
+59845,28091
+59846,74943
+59847,53628
+59848,70651,22305
+59849,37776
+59850,81794
+59851,74689
+59852,36404
+59853,63544
+59854,32194
+59855,50874
+59856,59857
+59857,48400
+59858,59645
+59859,35433
+59860,45028
+59861,23869
+59862,67459
+59863,63819
+59864,44005
+59865,39936
+59866,32246
+59867,81794
+59868,25574
+59869,65303
+59870,49468
+59871,69573
+59872,19421
+59873,36973
+59874,45412
+59875,21200
+59876,29845
+59877,80238
+59878,61182
+59879,64142
+59880,48336
+59881,48251
+59882,18720
+59883,34671
+59884,69448
+59885,38012
+59886,22112
+59887,60018
+59888,25202
+59889,48735
+59890,7922
+59891,72116
+59892,53717
+59893,20977
+59894,22640
+59895,59893
+59896,59893
+59897,59893
+59898,59893
+59899,59898
+59900,38053
+59901,59893
+59902,47650
+59903,50296
+59904,38237
+59905,38051
+59906,65767
+59907,32177
+59908,61609
+59909,40510
+59910,40414
+59911,22420
+59912,40411
+59913,59475
+59914,6053
+59915,81277
+59916,59912
+59917,41410
+59918,30300
+59919,34022
+59920,61709
+59921,21407
+59922,46186
+59923,58471
+59924,80583
+59925,45813
+59926,54655
+59927,57594
+59928,57594
+59929,77992
+59930,40139
+59931,81713
+59932,71325
+59933,32940
+59934,29744
+59935,65627
+59936,56901
+59937,41856
+59938,61202
+59939,23896
+59940,53805
+59941,76338
+59942,72890
+59943,79224
+59944,61866
+59945,61871
+59946,77658
+59947,79419
+59948,22032
+59949,22034
+59950,42163
+59951,20517
+59952,13818
+59953,21112
+59954,58803
+59955,54562
+59956,23062
+59957,78097
+59958,55121
+59959,58616
+59960,36602
+59961,53717
+59962,41772
+59963,74891
+59964,69472
+59965,73284
+59966,73997
+59967,62456
+59968,40752
+59969,39295
+59970,44437
+59971,59970
+59972,51778
+59973,64696
+59974,38727
+59975,45813
+59976,42225
+59977,41625
+59978,71463
+59979,78020
+59980,40564
+59981,39049
+59982,54469
+59983,71719
+59984,67957
+59985,69503
+59986,70033
+59987,19533,28796
+59988,35557
+59989,77641
+59990,77641
+59991,65847
+59992,54655
+59993,54659
+59994,40564
+59995,59596
+59996,67972
+59997,61127
+59998,38053
+59999,38053
+60000,78455
+60001,20351
+60002,28778
+60003,28790
+60004,58158
+60005,47830
+60006,20115
+60007,36238
+60008,80009
+60009,25395
+60010,39049
+60011,60216
+60012,28591
+60013,63334
+60014,53174
+60015,65929
+60016,60604
+60017,31162
+60018,30267
+60019,23258
+60020,69130
+60021,68693
+60022,41588
+60023,74488
+60024,60032
+60025,60032
+60026,51523
+60027,21480
+60028,60216
+60029,67675
+60030,19069
+60031,29067
+60032,72248
+60033,40030
+60034,31858
+60035,40032
+60036,40031
+60037,30254
+60038,55736
+60039,34873
+60040,22248
+60041,34874
+60042,55758
+60043,68802
+60044,55768
+60045,60166
+60046,34249
+60047,77575
+60048,39210
+60049,58162
+60050,61246
+60051,67410
+60052,21959
+60053,37119
+60054,23232
+60055,70629
+60056,27281
+60057,47716
+60058,72959
+60059,35679
+60060,31094
+60061,21838
+60062,75843
+60063,35616
+60064,40825,44221
+60065,70392
+60066,36942
+60067,79282
+60068,46267
+60069,46268
+60070,63813
+60071,62713
+60072,18969
+60073,19200
+60074,69977
+60075,25234
+60076,37991
+60077,46901
+60078,76877
+60079,52773
+60080,60078
+60081,69860
+60082,38375
+60083,21669
+60084,48333
+60085,43313
+60086,72271
+60087,61259,32580
+60088,28153
+60089,56451
+60090,21701
+60091,35534
+60092,28091
+60093,67432
+60094,79282
+60095,27556
+60096,69254
+60097,32580
+60098,64014
+60099,54562
+60100,35308
+60101,32580
+60102,77509,29288
+60103,47442
+60104,60088
+60105,20698
+60106,60088
+60107,60088
+60108,51649
+60109,51464
+60110,31447
+60111,57411
+60112,57412
+60113,21703
+60114,47805
+60115,21477
+60116,31447
+60117,76657
+60118,59308
+60119,37802
+60120,43111
+60121,63809
+60122,81612
+60123,58628
+60124,21155
+60125,25843
+60126,45096
+60127,50604
+60128,55494
+60129,31023
+60130,75058
+60131,63663
+60132,35534
+60133,34587
+60134,34585
+60135,53848
+60136,59775
+60137,74575
+60138,37479
+60139,75016
+60140,70183
+60141,25496
+60142,58010
+60143,60088
+60144,78776
+60145,41022
+60146,26830
+60147,61263
+60148,25087
+60149,61261
+60150,73837
+60151,30454
+60152,21802
+60153,53848
+60154,28091
+60155,69254
+60156,48126
+60157,81066
+60158,74067
+60159,45813
+60160,68622
+60161,68676
+60162,21025
+60163,51160
+60164,54717
+60165,50297
+60166,36802
+60167,48247
+60168,52605
+60169,39049
+60170,76989
+60171,80436
+60172,67675
+60173,19069
+60174,62081
+60175,35167
+60176,19396
+60177,21328
+60178,35679
+60179,61942
+60180,38637
+60181,53474
+60182,77451
+60183,65861
+60184,20635
+60185,78816
+60186,67951
+60187,79282
+60188,70568
+60189,58067
+60190,31196
+60191,58610
+60192,58616
+60193,24804
+60194,73537
+60195,39063
+60196,6852
+60197,65240
+60198,32926
+60199,81807
+60200,26945
+60201,55346
+60202,52497
+60203,80175
+60204,60166
+60205,54642
+60206,31372
+60207,19936
+60208,52876
+60209,31668
+60210,47814
+60211,23005
+60212,23946
+60213,41743
+60214,43911
+60215,46885
+60216,58166,28054
+60217,19735
+60218,60216
+60219,21218
+60220,35342
+60221,35342
+60222,60242
+60223,60216
+60224,56589
+60225,31165
+60226,27562
+60227,28702
+60228,35196
+60229,37478
+60230,79162
+60231,38789
+60232,41325
+60233,57190
+60234,47830
+60235,51069
+60236,51836
+60237,63278
+60238,63316
+60239,65700
+60240,65931
+60241,28132
+60242,22164
+60243,53916
+60244,64282,60245
+60245,75974
+60246,47409
+60247,60216
+60248,37624
+60249,77945
+60250,54441,68990
+60251,27892
+60252,34609
+60253,21218
+60254,29611
+60255,68793
+60256,25087
+60257,60216
+60258,30891
+60259,30883
+60260,62409
+60261,65694
+60262,51778
+60263,48146
+60264,19228
+60265,35491
+60266,64972
+60267,31151
+60268,42451
+60269,33455
+60270,81808
+60271,69439
+60272,38566
+60273,65943
+60274,65770
+60275,15899
+60276,6663
+60277,9196
+60278,34797
+60279,35679
+60280,70580
+60281,20743
+60282,77075
+60283,25861
+60284,28774
+60285,61703
+60286,48148
+60287,45009
+60288,76981
+60289,67957
+60290,48945
+60291,20743
+60292,56009
+60293,30989
+60294,69860
+60295,33479
+60296,27562
+60297,31115
+60298,31115
+60299,31115
+60300,40718
+60301,38839
+60302,65641
+60303,26160
+60304,39563
+60305,72791
+60306,72791
+60307,25508
+60308,54315
+60309,26884
+60310,49486
+60311,49487
+60312,50424
+60313,38137
+60314,38135
+60315,56323
+60316,69408
+60317,70549
+60318,71719
+60319,51985
+60320,21272
+60321,59825
+60322,66786
+60323,41307
+60324,53355
+60325,58158
+60326,27757
+60327,49178,54825
+60328,42367
+60329,57594,41306
+60330,43112
+60331,37115
+60332,55252
+60333,52211
+60334,78578
+60335,56080
+60336,53611
+60337,78671
+60338,30391
+60339,64424
+60340,41856
+60341,56894
+60342,72575
+60343,40752
+60344,23869
+60345,11858
+60346,20120
+60347,58921
+60348,6634
+60349,38950
+60350,71572
+60351,25087
+60352,58088
+60353,53283
+60354,48126
+60355,33102
+60356,54440
+60357,25256
+60358,69887
+60359,60385
+60360,61317
+60361,70033
+60362,52990
+60363,65929
+60364,47494
+60365,58778
+60366,74973
+60367,58088
+60368,20883
+60369,78755
+60370,53717
+60371,45458
+60372,42489
+60373,60375
+60374,60371
+60375,53716
+60376,30391
+60377,53716
+60378,65121
+60379,65509
+60380,52431
+60381,79282
+60382,21218
+60383,72970
+60384,61655
+60385,76664
+60386,35495
+60387,29810
+60388,29810
+60389,29810
+60390,29810
+60391,56179
+60392,54913
+60393,60385
+60394,76664,60382
+60395,71842
+60396,42096
+60397,48318
+60398,31795
+60399,81162
+60400,60396
+60401,40752
+60402,32347
+60403,35557
+60404,23095
+60405,79852
+60406,20517
+60407,44923
+60408,55069
+60409,21012
+60410,67542
+60411,58158
+60412,61311
+60413,75007
+60414,50642,19072
+60415,35922
+60416,34904
+60417,63065
+60418,76219
+60419,31547
+60420,20992
+60421,79671
+60422,38366
+60423,20963
+60424,19429
+60425,47770
+60426,19429
+60427,21012
+60428,78160
+60429,68793
+60430,51068
+60431,56925
+60432,25434
+60433,70033
+60434,28637
+60435,36089
+60436,19757
+60437,30404
+60438,30392
+60439,74500
+60440,19393
+60441,61436
+60442,82095
+60443,51159
+60444,19393
+60445,46899
+60446,68230
+60447,60216
+60448,68230
+60449,74081
+60450,35922
+60451,76256
+60452,38860
+60453,46901
+60454,23790
+60455,18869
+60456,62338
+60457,18740
+60458,57934
+60459,48126
+60460,76420
+60461,70629
+60462,55524
+60463,79215
+60464,74082
+60465,54218
+60466,74067
+60467,45813
+60468,21090
+60469,70395
+60470,54000
+60471,11858
+60472,55081
+60473,55951
+60474,55081
+60475,71704
+60476,50369
+60477,75217
+60478,24143
+60479,54043
+60480,70214
+60481,35405
+60482,60476
+60483,50367
+60484,20196
+60485,28591
+60486,77421
+60487,51558
+60488,19118
+60489,75558
+60490,81802
+60491,19926
+60492,73938
+60493,71699
+60494,50367
+60495,51558
+60496,34740
+60497,70395
+60498,48787
+60499,42246
+60500,38053
+60501,71408
+60502,67675
+60503,26267
+60504,42246,60284
+60505,58158
+60506,51624
+60507,63434
+60508,75005
+60509,26072
+60510,40815
+60511,58628
+60512,28780
+60513,47492
+60514,58776
+60515,57581
+60516,29485
+60517,40121
+60518,19541
+60519,28013
+60520,38627
+60521,28792
+60522,28803
+60523,57934
+60524,74567
+60525,37402
+60526,36795
+60527,60534,31940
+60528,77423,34851
+60529,37676
+60530,37417
+60531,37459
+60532,37676
+60533,65513
+60534,65925
+60535,19926
+60536,21765
+60537,54869
+60538,38218
+60539,60538
+60540,60534
+60541,63065
+60542,57461
+60543,60713
+60544,48455
+60545,44077
+60546,49340
+60547,49341
+60548,51716
+60549,51719
+60550,75606
+60551,60541
+60552,53624
+60553,53622
+60554,53621
+60555,60534
+60556,30363
+60557,42360
+60558,70395
+60559,60786
+60560,79743
+60561,69131
+60562,74535
+60563,60527
+60564,28790
+60565,64566
+60566,38475
+60567,77961
+60568,69662
+60569,79376
+60570,31564
+60571,33799
+60572,59422
+60573,25302
+60574,44451
+60575,72212
+60576,79282
+60577,55440
+60578,32716
+60579,38375
+60580,19069
+60581,20736
+60582,60786
+60583,60786
+60584,60786
+60585,25432
+60586,41875
+60587,65798
+60588,77755
+60589,63700
+60590,60305
+60591,71315
+60592,75510
+60593,42327
+60594,20690
+60595,18720
+60596,20947
+60597,28803
+60598,31245
+60599,37196
+60600,38003
+60601,43106
+60602,59875
+60603,56178
+60604,63314
+60605,65649
+60606,76160
+60607,76162
+60608,77051
+60609,21924
+60610,63007
+60611,68290
+60612,56182
+60613,56182
+60614,18869
+60615,50085
+60616,57286
+60617,25088
+60618,63587
+60619,72135
+60620,24249
+60621,24251
+60622,25088
+60623,25088
+60624,45813
+60625,20038
+60626,61254
+60627,28774
+60628,28801
+60629,58157
+60630,61262
+60631,61246
+60632,76162
+60633,77409
+60634,51068
+60635,45813
+60636,53897
+60637,36443
+60638,60074
+60639,55768
+60640,71435
+60641,49697,73752,60042
+60642,18974
+60643,19201
+60644,49694
+60645,55744
+60646,52773
+60647,69642
+60648,55735
+60649,71588
+60650,55751
+60651,81349
+60652,39517
+60653,41410
+60654,54424
+60655,37044
+60656,26368,46639
+60657,65777
+60658,40846
+60659,70033
+60660,21544
+60661,24306
+60662,45009
+60663,23309
+60664,37169
+60665,34924
+60666,23243
+60667,45813
+60668,2130,28952
+60669,45679
+60670,39379
+60671,60216
+60672,60798
+60673,60801
+60674,78014
+60675,21361
+60676,34511
+60677,34833
+60678,54441
+60679,73761
+60680,77108
+60681,60678
+60682,39638
+60683,51470
+60684,60678
+60685,53056
+60686,58418
+60687,19200
+60688,65777
+60689,23164
+60690,65777
+60691,45885
+60692,76229
+60693,19121
+60694,23876
+60695,30392
+60696,19129
+60697,18906
+60698,32181
+60699,77995
+60700,53593
+60701,77277
+60702,33515
+60703,37041
+60704,27286
+60705,54183
+60706,20763
+60707,76672
+60708,69408
+60709,62324
+60710,19069
+60711,28591
+60712,60131
+60713,65927
+60714,78423
+60715,65925
+60716,47495
+60717,70526
+60718,25306
+60719,41444
+60720,54503
+60721,61211
+60722,62210
+60723,64619
+60724,81227
+60725,58262
+60726,38884
+60727,23622
+60728,47507
+60729,80618
+60730,81536
+60731,24442
+60732,21754
+60733,59497
+60734,28654
+60735,59497
+60736,66428
+60737,32793
+60738,35735
+60739,59306
+60740,27786
+60741,49026
+60742,45689
+60743,35557
+60744,60739,39049
+60745,30300
+60746,60739,50784
+60747,37721
+60748,46827
+60749,44156
+60750,50934
+60751,50701
+60752,70914
+60753,79259
+60754,74488
+60755,74488
+60756,61355
+60757,21412
+60758,54694
+60759,75057
+60760,26669
+60761,65925
+60762,66591
+60763,33217
+60764,37417
+60765,53624
+60766,48196
+60767,19629
+60768,54947
+60769,48875
+60770,50678
+60771,30518
+60772,34350
+60773,36591
+60774,44576
+60775,39210
+60776,70033
+60777,35425
+60778,27992
+60779,81735
+60780,44491
+60781,39367
+60782,67995
+60783,27715
+60784,82056
+60785,30498
+60786,30498
+60787,34643
+60788,30487
+60789,40446
+60790,45951
+60791,62062
+60792,46598
+60793,50784
+60794,46958
+60795,25662
+60796,20282
+60797,50205
+60798,41588
+60799,61651
+60800,80512
+60801,60032
+60802,60024
+60803,24710
+60804,66305
+60805,72716
+60806,35557
+60807,30531
+60808,29986
+60809,55027
+60810,30391
+60811,76345
+60812,30531
+60813,52497
+60814,30425
+60815,50424
+60816,23792
+60817,80487
+60818,49343
+60819,78755
+60820,26462
+60821,76249
+60822,31689
+60823,36137
+60824,25434
+60825,81535
+60826,45354
+60827,62937
+60828,74500
+60829,62209
+60830,60827
+60831,27781
+60832,44634
+60833,54503
+60834,68692
+60835,48414
+60836,33464
+60837,74488
+60838,28954
+60839,50125
+60840,50593
+60841,23650
+60842,76021
+60843,21359
+60844,20038
+60845,65509
+60846,53163
+60847,22402
+60848,54123
+60849,24392
+60850,25046
+60851,42252
+60852,39049
+60853,51929
+60854,38797
+60855,47948
+60856,75708
+60857,75976
+60858,36029
+60859,27440
+60860,30954
+60861,77287
+60862,44793
+60863,74772
+60864,72503
+60865,35329
+60866,81807
+60867,45813
+60868,19094
+60869,49222
+60870,39423
+60871,43693
+60872,50862
+60873,78152
+60874,67814
+60875,33512
+60876,24319
+60877,32941
+60878,57289
+60879,81746
+60880,39049
+60881,54813
+60882,61415
+60883,42094
+60884,42097
+60885,72027
+60886,45009
+60887,35156
+60888,48251
+60889,72661
+60890,51120
+60891,74089,23420
+60892,20120
+60893,75246
+60894,56656
+60895,27748
+60896,33464
+60897,23972
+60898,81482
+60899,31417
+60900,67826
+60901,64595,23240
+60902,39676
+60903,44354
+60904,29731
+60905,40230
+60906,19319
+60907,53286
+60908,37181
+60909,68022
+60910,40068
+60911,26348
+60912,72308
+60913,81511
+60914,79852
+60915,37832
+60916,78160
+60917,37179
+60918,45813
+60919,41738
+60920,45813
+60921,31288
+60922,81161
+60923,77645
+60924,71911
+60925,59849
+60926,71686
+60927,22786
+60928,63769
+60929,31430
+60930,45364
+60931,63812
+60932,52071
+60933,42388
+60934,54562
+60935,29237
+60936,40752
+60937,38555
+60938,25184
+60939,26996
+60940,30129
+60941,61251
+60942,41877
+60943,79741
+60944,70033
+60945,30153
+60946,27850
+60947,60935
+60948,30400
+60949,61251
+60950,50736
+60951,59700
+60952,73104
+60953,31062
+60954,27276
+60955,63251
+60956,21360
+60957,27506
+60958,25087
+60959,53592
+60960,60899
+60961,57248
+60962,54993
+60963,61651
+60964,48949
+60965,63812
+60966,62833
+60967,80248
+60968,74232
+60969,39049
+60970,22903
+60971,2492
+60972,17469
+60973,17466
+60974,36694
+60975,61121
+60976,46599
+60977,30718
+60978,80753
+60979,74067
+60980,61415
+60981,74778
+60982,56376
+60983,54029
+60984,69363
+60985,58215
+60986,20745
+60987,19765
+60988,68869
+60989,29405
+60990,39556
+60991,39925
+60992,81200
+60993,78096
+60994,78096
+60995,33614
+60996,25202
+60997,29692
+60998,45009
+60999,39346
+61000,61011
+61001,64435
+61002,71062
+61003,29587
+61004,19364
+61005,29677
+61006,75665
+61007,40370
+61008,31618
+61009,60993
+61010,30937
+61011,55768
+61012,59893
+61013,79401
+61014,28786
+61015,72206
+61016,29731
+61017,53624
+61018,21361
+61019,31991
+61020,61400
+61021,1526
+61022,44500
+61023,61493
+61024,79467
+61025,58287
+61026,45813
+61027,64142
+61028,39049
+61029,20828
+61030,27506
+61031,46049
+61032,28586
+61033,61540
+61034,69744
+61035,78269
+61036,72416
+61037,72196
+61038,56950
+61039,38782
+61040,80460
+61041,58226
+61042,27506
+61043,27649
+61044,26613
+61045,35157
+61046,60216
+61047,57249
+61048,37181
+61049,32520
+61050,70607
+61051,21361
+61052,65956
+61053,61052
+61054,40195
+61055,73329
+61056,71493
+61057,53648
+61058,68629
+61059,31438
+61060,37776
+61061,21474
+61062,21474
+61063,46270
+61064,31137,28091
+61065,77552
+61066,38614
+61067,61064
+61068,73448
+61069,73448
+61070,79653
+61071,40534
+61072,37179
+61073,26827
+61074,62144
+61075,71697
+61076,76429
+61077,20053
+61078,76429
+61079,21311
+61080,43865
+61081,61404
+61082,24440
+61083,73569
+61084,60899
+61085,60992
+61086,23440
+61087,50717
+61088,79469
+61089,76435,22850
+61090,62142
+61091,31618
+61092,27625
+61093,70033
+61094,67548
+61095,45009
+61096,61401
+61097,65896
+61098,23238
+61099,80575
+61100,67628
+61101,79847
+61102,35157
+61103,61263
+61104,74349
+61105,38013
+61106,53965
+61107,72178
+61108,63290
+61109,78369
+61110,78432
+61111,59645
+61112,59504
+61113,32201
+61114,37832
+61115,36843
+61116,54728
+61117,34709
+61118,61117
+61119,61117
+61120,67054
+61121,22453
+61122,53112
+61123,74990
+61124,23313
+61125,81227
+61126,31039
+61127,35557
+61128,69860
+61129,55734
+61130,21219
+61131,31245
+61132,79541
+61133,59419
+61134,30267
+61135,49027
+61136,43104
+61137,70525
+61138,71328
+61139,49736
+61140,23966
+61141,49728
+61142,53415,75066
+61143,56009
+61144,38375
+61145,26298
+61146,69288
+61147,53717
+61148,79464
+61149,31477
+61150,79164
+61151,21285
+61152,31602
+61153,62147
+61154,19228
+61155,19382
+61156,65956
+61157,79213
+61158,62625
+61159,52885
+61160,25087
+61161,65956
+61162,20133
+61163,54561
+61164,54606
+61165,27022
+61166,60744
+61167,21362
+61168,26838
+61169,23492
+61170,81789
+61171,31951
+61172,76229
+61173,34350,24354
+61174,39585
+61175,26899
+61176,20827
+61177,38109
+61178,38109
+61179,52552
+61180,40734
+61181,66592
+61182,50296
+61183,40736
+61184,63195
+61185,26616
+61186,79953
+61187,80538
+61188,34845
+61189,63878
+61190,21218
+61191,55014
+61192,43769
+61193,61599
+61194,71873
+61195,48210
+61196,28556
+61197,20057
+61198,51729
+61199,55445
+61200,70629
+61201,36404
+61202,47388
+61203,61202
+61204,40557
+61205,38266
+61206,35595
+61207,25017
+61208,34363
+61209,37169,45009
+61210,62439
+61211,69543
+61212,20698
+61213,39936
+61214,43122
+61215,68692
+61216,74597
+61217,76518
+61218,77641
+61219,28146
+61220,28146
+61221,26298
+61222,58004
+61223,54871
+61224,42388
+61225,56270
+61226,28146
+61227,68289
+61228,76627
+61229,61766
+61230,23643
+61231,52312
+61232,32578
+61233,53056
+61234,58166
+61235,60631
+61236,66042
+61237,57072
+61238,60216
+61239,62659
+61240,34770
+61241,76258
+61242,30693
+61243,62963
+61244,19231
+61245,31736
+61246,58166
+61247,26301
+61248,28164
+61249,29911
+61250,26586
+61251,35534
+61252,39294
+61253,56166,61262
+61254,42539
+61255,46408
+61256,46408
+61257,53454
+61258,58100
+61259,61260
+61260,56176
+61261,63064
+61262,61257
+61263,61260
+61264,77216
+61265,79691
+61266,45813
+61267,79259
+61268,22887
+61269,27908
+61270,45813
+61271,65509
+61272,80188
+61273,38381
+61274,81626
+61275,62267
+61276,39375
+61277,30153
+61278,61159
+61279,30391
+61280,61154
+61281,39381
+61282,61246
+61283,63472
+61284,47115
+61285,72451
+61286,28449
+61287,72970
+61288,38951
+61289,52435
+61290,60612
+61291,63434
+61292,30020
+61293,61289
+61294,78160
+61295,21138
+61296,47825
+61297,38053
+61298,61297
+61299,63414
+61300,33678
+61301,72416
+61302,54825,32582
+61303,19343
+61304,74537
+61305,26932
+61306,43744
+61307,80063
+61308,70629
+61309,21276
+61310,77989
+61311,71516
+61312,21671
+61313,22684
+61314,25202
+61315,38837
+61316,50265
+61317,57934
+61318,81733
+61319,71431
+61320,48030
+61321,43977
+61322,62722
+61323,69785
+61324,69785
+61325,25834
+61326,58734
+61327,38759
+61328,53067
+61329,33512
+61330,38025
+61331,73837
+61332,20847
+61333,47496
+61334,73830
+61335,69633
+61336,40554
+61337,65108
+61338,33175
+61339,69633
+61340,31618
+61341,69695
+61342,69633
+61343,61335
+61344,64435
+61345,64619
+61346,80808
+61347,50117
+61348,63467
+61349,21138
+61350,75057
+61351,61335
+61352,66900
+61353,70629
+61354,31124
+61355,46550
+61356,35926
+61357,73838
+61358,23643
+61359,66853
+61360,21276
+61361,30073
+61362,56807
+61363,27937
+61364,24804
+61365,65793,78030
+61366,25391
+61367,71315
+61368,61759
+61369,21597
+61370,40554
+61371,77043
+61372,33237
+61373,55133
+61374,39091
+61375,32806
+61376,19202
+61377,69977
+61378,78966
+61379,61203
+61380,35838
+61381,36377
+61382,35838
+61383,19200
+61384,60074
+61385,63602
+61386,37479
+61387,71700
+61388,24141,63184
+61389,57071
+61390,25302
+61391,68196
+61392,25574
+61393,45618
+61394,60216
+61395,31647
+61396,41650
+61397,72029
+61398,81874
+61399,61415
+61400,55763
+61401,19200
+61402,27502
+61403,29458
+61404,77277
+61405,53619
+61406,61381
+61407,51677
+61408,61395
+61409,30930
+61410,31646
+61411,42092
+61412,37776
+61413,62682
+61414,58398
+61415,21745
+61416,50925
+61417,53952
+61418,63656
+61419,20879
+61420,36721
+61421,23080
+61422,72983
+61423,66226
+61424,61433
+61425,64142
+61426,49200
+61427,37991
+61428,44040
+61429,61425
+61430,29119
+61431,19228
+61432,69439
+61433,39578
+61434,62935
+61435,40942
+61436,30865
+61437,79904
+61438,72248
+61439,46818
+61440,68843
+61441,53842
+61442,36496
+61443,79881
+61444,19438
+61445,19438
+61446,35342
+61447,18853
+61448,53761
+61449,37776
+61450,58012
+61451,66361
+61452,58161
+61453,79385
+61454,21458
+61455,53624
+61456,69254
+61457,28091
+61458,71837
+61459,48127
+61460,55299
+61461,20743
+61462,58776
+61463,61459,61577
+61464,55872
+61465,58088
+61466,61335
+61467,44963
+61468,73837
+61469,56451
+61470,19278
+61471,23882
+61472,40944
+61473,81626
+61474,45009,31064
+61475,21953
+61476,44691
+61477,65892
+61478,44755
+61479,33922
+61480,80011
+61481,81251
+61482,56832
+61483,56832
+61484,65730
+61485,28654
+61486,73495
+61487,77277
+61488,68196
+61489,31040
+61490,48408
+61491,29744
+61492,53593
+61493,69887
+61494,76981
+61495,81630
+61496,52811
+61497,76608
+61498,39379
+61499,80576
+61500,81759
+61501,52959
+61502,63725
+61503,37405
+61504,24794
+61505,71439
+61506,41929
+61507,46268
+61508,37179,36641
+61509,62145
+61510,41743
+61511,31417
+61512,31417
+61513,63677
+61514,67957
+61515,28831
+61516,28830
+61517,25065
+61518,27656
+61519,31991
+61520,61519
+61521,45813
+61522,32691
+61523,71119,45009
+61524,77287
+61525,78993
+61526,40403
+61527,37179
+61528,41743
+61529,69543
+61530,19421
+61531,44013
+61532,62029
+61533,76303
+61534,68369
+61535,44013
+61536,56832
+61537,40597
+61538,36267
+61539,37619
+61540,76229
+61541,19688
+61542,36571
+61543,45009
+61544,71686
+61545,46171
+61546,41228
+61547,71318
+61548,35922
+61549,62456
+61550,29738
+61551,60448
+61552,51167
+61553,72959
+61554,65707
+61555,48136
+61556,25851
+61557,70202
+61558,39049
+61559,61792
+61560,66482
+61561,28780
+61562,61561
+61563,77815
+61564,73560
+61565,50652
+61566,50265
+61567,62417
+61568,76752
+61569,53657
+61570,66965
+61571,61577
+61572,79031
+61573,35334
+61574,66101
+61575,61577
+61576,18728
+61577,66101
+61578,61178
+61579,48126
+61580,18740
+61581,35557
+61582,21326
+61583,31861,79469
+61584,68364
+61585,31858
+61586,36694
+61587,63965
+61588,71837
+61589,41870
+61590,59970
+61591,57901
+61592,62360
+61593,45034
+61594,23458
+61595,25407
+61596,35105
+61597,40473
+61598,27811
+61599,61600
+61600,64812
+61601,79501
+61602,80238
+61603,53614
+61604,59050
+61605,49013
+61606,30543
+61607,41542
+61608,31618
+61609,49945
+61610,68119
+61611,20751
+61612,46992
+61613,31616
+61614,41729
+61615,58776
+61616,61261
+61617,53716
+61618,68619
+61619,31417
+61620,71446
+61621,51701
+61622,81781
+61623,61622
+61624,61622,50584
+61625,61622
+61626,51203
+61627,79422
+61628,51705
+61629,38883
+61630,81797
+61631,61584
+61632,61415
+61633,58088
+61634,32718
+61635,60208
+61636,35557
+61637,67497
+61638,20743
+61639,71493
+61640,72575
+61641,65737
+61642,51523
+61643,78703
+61644,51836
+61645,63255
+61646,51894
+61647,53607
+61648,19768
+61649,31040
+61650,28600
+61651,37805
+61652,35596
+61653,44637
+61654,53171
+61655,53619
+61656,75347
+61657,80058
+61658,28600
+61659,31820
+61660,27059
+61661,31806,61643
+61662,77323
+61663,50125
+61664,50701
+61665,71493
+61666,55828
+61667,31165
+61668,58108
+61669,62147
+61670,62148
+61671,23763
+61672,75027
+61673,58262
+61674,75020
+61675,50701
+61676,53072
+61677,21412
+61678,35397
+61679,47948
+61680,72426
+61681,68237,21770
+61682,42518
+61683,58798
+61684,47944
+61685,77989
+61686,77324
+61687,38209
+61688,78704
+61689,34830
+61690,74081
+61691,61705
+61692,70033
+61693,34049
+61694,42246,28796
+61695,14356
+61696,61705
+61697,54467
+61698,14356
+61699,69566
+61700,14356
+61701,49763
+61702,49769
+61703,60598
+61704,51019
+61705,61246
+61706,61715
+61707,28700
+61708,54467
+61709,27506
+61710,40177
+61711,20262
+61712,32380
+61713,44986
+61714,49960
+61715,45813
+61716,13555
+61717,28164
+61718,50554
+61719,31889
+61720,31660
+61721,45170
+61722,43851
+61723,58004
+61724,57987
+61725,31245
+61726,58012
+61727,28776
+61728,50297
+61729,43103
+61730,57966
+61731,72437
+61732,66859
+61733,28153
+61734,37805
+61735,23542
+61736,77969
+61737,36329
+61738,62144
+61739,39846
+61740,22438
+61741,23442
+61742,55815
+61743,31762
+61744,81781
+61745,3704
+61746,45813
+61747,55720
+61748,41107,50610
+61749,18880
+61750,54404
+61751,25046
+61752,30684
+61753,32527
+61754,51885
+61755,81635
+61756,61764
+61757,62545
+61758,50630
+61759,75566
+61760,35104
+61761,73001
+61762,79114
+61763,48791
+61764,50630
+61765,73477
+61766,21511
+61767,61203
+61768,31690
+61769,47673
+61770,33488,46251
+61771,48084
+61772,34627
+61773,37986
+61774,79031
+61775,41265
+61776,64470,71091
+61777,60058
+61778,30693
+61779,19200
+61780,32535
+61781,30693
+61782,72122
+61783,64402
+61784,31729
+61785,32182
+61786,35706
+61787,47864
+61788,55495
+61789,58196
+61790,62986
+61791,71325
+61792,71315
+61793,78698
+61794,68197
+61795,50701
+61796,50701
+61797,19228,19542
+61798,63141
+61799,71323
+61800,71324
+61801,57966
+61802,58168
+61803,19374
+61804,33793
+61805,40965
+61806,34771
+61807,77014
+61808,32374
+61809,48306
+61810,59286
+61811,27345
+61812,67703
+61813,41980
+61814,77641
+61815,67290
+61816,72409
+61817,32372
+61818,61260
+61819,39703
+61820,48318
+61821,25367
+61822,33928
+61823,77045
+61824,61816
+61825,62144
+61826,48304
+61827,54562
+61828,80227
+61829,22665
+61830,38044,47730
+61831,39847
+61832,22786
+61833,52853,73220
+61834,46599
+61835,69782
+61836,36434
+61837,54082
+61838,25187
+61839,43185
+61840,32603
+61841,63961
+61842,61874
+61843,61862
+61844,61863
+61845,62910
+61846,21701
+61847,26723
+61848,20812
+61849,81602
+61850,31412
+61851,49750
+61852,24823
+61853,24354
+61854,76295
+61855,37440
+61856,75007
+61857,38385,61311
+61858,39049
+61859,61856
+61860,75007
+61861,61919
+61862,72482
+61863,53238
+61864,42429
+61865,42481
+61866,61213
+61867,53701
+61868,61862
+61869,61863
+61870,20698
+61871,71517
+61872,40423
+61873,48238
+61874,31058
+61875,38053
+61876,28790
+61877,19166
+61878,58166
+61879,58161
+61880,58161
+61881,28788
+61882,55914
+61883,20977
+61884,56499
+61885,41842
+61886,57160
+61887,25113
+61888,59069
+61889,30216
+61890,44470
+61891,57934
+61892,60001
+61893,67951
+61894,51068
+61895,63376
+61896,55734
+61897,67675
+61898,58628
+61899,58166
+61900,31241
+61901,39676
+61902,23267
+61903,19166
+61904,61311
+61905,65892
+61906,27455
+61907,81578
+61908,20308
+61909,24354
+61910,73944
+61911,81578
+61912,66377
+61913,75599
+61914,76120
+61915,76121
+61916,55734
+61917,39428
+61918,78777
+61919,61874
+61920,49750
+61921,72959
+61922,72959
+61923,61311
+61924,79628
+61925,79628
+61926,44818
+61927,41729
+61928,37179
+61929,41743
+61930,29503
+61931,29502
+61932,68555
+61933,45035
+61934,45035
+61935,46600
+61936,5501
+61937,25431
+61938,25432
+61939,37513
+61940,44816
+61941,67703
+61942,27440
+61943,44491
+61944,19421
+61945,52904
+61946,29839
+61947,50215
+61948,41877
+61949,33475
+61950,33476
+61951,33638
+61952,60899
+61953,44167
+61954,81974
+61955,78676
+61956,21361
+61957,39049
+61958,33717
+61959,56492
+61960,63047
+61961,62852
+61962,79485
+61963,23082
+61964,40658
+61965,25920
+61966,64409
+61967,46599
+61968,46599
+61969,77482
+61970,66516
+61971,27721
+61972,38873
+61973,44816
+61974,35944
+61975,80618
+61976,35944
+61977,66020
+61978,58168
+61979,38614
+61980,72780
+61981,75063
+61982,25113
+61983,77045
+61984,22786
+61985,61395
+61986,75057,42097
+61987,59316
+61988,18988
+61989,66953
+61990,81482
+61991,77641
+61992,80526
+61993,25574
+61994,79546
+61995,50602
+61996,59970
+61997,78647
+61998,64839
+61999,38375
+62000,41752
+62001,48106
+62002,43566
+62003,71686
+62004,71408
+62005,25302
+62006,25434
+62007,40864
+62008,37955
+62009,62034
+62010,64355
+62011,75860
+62012,32050
+62013,32051
+62014,27167
+62015,72283,3227
+62016,62456
+62017,61415
+62018,37276
+62019,59286
+62020,81482
+62021,20690
+62022,39049
+62023,21703
+62024,79282
+62025,55546
+62026,73272
+62027,31848
+62028,79097
+62029,40752
+62030,52857
+62031,40564
+62032,59970
+62033,20082
+62034,55742
+62035,55734
+62036,64142
+62037,31645
+62038,48629
+62039,34357
+62040,30891
+62041,48461
+62042,59970
+62043,44437
+62044,30452
+62045,30391
+62046,71310
+62047,47870
+62048,63163
+62049,77452
+62050,35922
+62051,19497
+62052,52523
+62053,28312
+62054,73838
+62055,66862
+62056,53640
+62057,72253
+62058,46266
+62059,36710
+62060,68555
+62061,67703
+62062,53628
+62063,43798
+62064,19131
+62065,35557
+62066,21323
+62067,70124
+62068,26632
+62069,33515
+62070,59502
+62071,66756
+62072,67972
+62073,75801
+62074,29167
+62075,46228
+62076,44491
+62077,43798
+62078,71142
+62079,69998
+62080,32795
+62081,31506
+62082,42481
+62083,60786
+62084,47442
+62085,36029
+62086,20755
+62087,35557
+62088,25546
+62089,43103
+62090,57897
+62091,41280
+62092,29881
+62093,24364
+62094,68647
+62095,62089
+62096,58200
+62097,55485
+62098,78410
+62099,29426
+62100,60228
+62101,70051
+62102,32269
+62103,77261
+62104,27715
+62105,38013
+62106,52840
+62107,80550
+62108,79214
+62109,79282
+62110,42337
+62111,38013
+62112,27239
+62113,50117
+62114,37712
+62115,19959
+62116,28616
+62117,27715
+62118,23712
+62119,69331
+62120,51677
+62121,27781
+62122,41843
+62123,81227
+62124,78146
+62125,62054
+62126,33442
+62127,22688
+62128,51389
+62129,27059
+62130,27062
+62131,58798
+62132,34626
+62133,19176
+62134,81585
+62135,40752
+62136,80253
+62137,62146
+62138,63047
+62139,38723
+62140,62139
+62141,61646
+62142,66882
+62143,21948
+62144,61646
+62145,57461
+62146,25088
+62147,65691
+62148,22152
+62149,58196
+62150,31477
+62151,65910
+62152,57208
+62153,40003
+62154,19353,19472
+62155,28623
+62156,28811
+62157,32185
+62158,39565
+62159,47402
+62160,75912
+62161,61734
+62162,65671
+62163,73275
+62164,37708
+62165,56937
+62166,61724
+62167,20409
+62168,64142
+62169,21015
+62170,47510
+62171,76929
+62172,60375
+62173,61748
+62174,52904
+62175,37770
+62176,35787
+62177,31742
+62178,65691
+62179,31742
+62180,44157
+62181,36496
+62182,38777
+62183,58024
+62184,23780
+62185,21272
+62186,62183
+62187,78866
+62188,34433
+62189,79749
+62190,62144
+62191,53528
+62192,25234
+62193,52712
+62194,57286
+62195,73838
+62196,27688
+62197,30672
+62198,51985
+62199,81200
+62200,46599
+62201,57289
+62202,28954
+62203,25709
+62204,66727
+62205,28616
+62206,76882
+62207,54130
+62208,29744
+62209,52706
+62210,27501
+62211,28271
+62212,58166
+62213,68230,66004
+62214,43968
+62215,57065
+62216,70203
+62217,62218
+62218,28952
+62219,62218
+62220,27538
+62221,28333
+62222,53890
+62223,56069
+62224,37832
+62225,69264
+62226,27949
+62227,74976
+62228,75758
+62229,79282
+62230,62147
+62231,50524
+62232,42461
+62233,42337
+62234,59199
+62235,48126
+62236,46268
+62237,69970
+62238,46698
+62239,24349
+62240,24349
+62241,68934
+62242,74217
+62243,46639
+62244,51677
+62245,79878
+62246,53180
+62247,53375
+62248,57573
+62249,56399
+62250,62247
+62251,42518
+62252,35532
+62253,74939
+62254,34398
+62255,61135
+62256,57065
+62257,38135
+62258,21090
+62259,60320
+62260,63348
+62261,34166
+62262,29737
+62263,21897
+62264,60216
+62265,31143
+62266,31861,79469
+62267,31616
+62268,27201
+62269,72780
+62270,23843
+62271,31618
+62272,73207
+62273,42181
+62274,27862
+62275,20120
+62276,61246
+62277,66756
+62278,71719
+62279,47105,52412
+62280,54082
+62281,33907
+62282,24037
+62283,67675,66150
+62284,27479
+62285,67675
+62286,29068
+62287,33558
+62288,67675
+62289,39693
+62290,48828
+62291,56752
+62292,60172
+62293,36500
+62294,66977,72914,71463
+62295,79608
+62296,24726
+62297,39676
+62298,39676
+62299,41877
+62300,55284
+62301,42410
+62302,58921
+62303,64403
+62304,67594
+62305,73680
+62306,71108
+62307,70033
+62308,79608
+62309,27997
+62310,79608
+62311,79608
+62312,61251
+62313,41877
+62314,61265
+62315,73507
+62316,51701
+62317,37712
+62318,8312
+62319,62409
+62320,60598
+62321,62184
+62322,66065
+62323,53650
+62324,37450
+62325,74981
+62326,53624
+62327,62322
+62328,45354
+62329,79259
+62330,58734
+62331,46270
+62332,38828
+62333,46492
+62334,51159
+62335,21432
+62336,31647
+62337,46962
+62338,24007
+62339,28346,39725
+62340,53593
+62341,64817
+62342,35557
+62343,60078
+62344,69552
+62345,32975
+62346,69852
+62347,73207
+62348,32691
+62349,29677
+62350,28205
+62351,80753
+62352,23679
+62353,79468
+62354,81656
+62355,77287
+62356,28312
+62357,62266
+62358,50969
+62359,76864
+62360,22684
+62361,67432
+62362,28093
+62363,53283
+62364,33876
+62365,67957
+62366,36451
+62367,24307
+62368,53959
+62369,50758
+62370,41110
+62371,37776
+62372,22414
+62373,41110
+62374,74903
+62375,26884,51833
+62376,77552
+62377,28616
+62378,39556
+62379,80612
+62380,41110
+62381,41110
+62382,24875
+62383,62767
+62384,51640
+62385,44294
+62386,60771
+62387,40060
+62388,60234
+62389,70525
+62390,76877,53717
+62391,71516
+62392,36647
+62393,20385
+62394,24897
+62395,31616
+62396,33811
+62397,49602
+62398,54085
+62399,21922
+62400,60541
+62401,54446
+62402,37665,55809
+62403,43974
+62404,60216
+62405,58734
+62406,54376
+62407,60603
+62408,28054
+62409,64142
+62410,25687
+62411,53760,25810
+62412,47673
+62413,78995
+62414,31993
+62415,32488
+62416,35823
+62417,62439,36482
+62418,20309
+62419,26800
+62420,51830
+62421,52094
+62422,54918
+62423,50635
+62424,22271
+62425,50875
+62426,25807
+62427,37404
+62428,41054
+62429,61379
+62430,22122
+62431,35340
+62432,62439
+62433,69237
+62434,52497
+62435,73001
+62436,73117
+62437,39101
+62438,34924
+62439,52497,76981
+62440,31742
+62441,37450
+62442,31126
+62443,27552
+62444,70629
+62445,75566
+62446,19230
+62447,64142
+62448,32363
+62449,31615
+62450,20763
+62451,78996
+62452,20979
+62453,78996
+62454,30267
+62455,78966
+62456,19228
+62457,47656
+62458,64746
+62459,63144
+62460,40276
+62461,49353
+62462,75860
+62463,62145
+62464,47628
+62465,51566
+62466,60450
+62467,65016
+62468,65014
+62469,67412
+62470,44032
+62471,21959
+62472,74067
+62473,44456
+62474,31292
+62475,31998
+62476,66862
+62477,81161
+62478,41729
+62479,43801
+62480,43419
+62481,45813
+62482,41638
+62483,64873
+62484,40752
+62485,40752
+62486,22384
+62487,71446
+62488,81161
+62489,74344
+62490,79852
+62491,77829
+62492,58088
+62493,81176
+62494,81703
+62495,21328
+62496,81715
+62497,81714
+62498,27167
+62499,67479
+62500,32746
+62501,56206
+62502,77976
+62503,54082
+62504,81857
+62505,72189
+62506,69887
+62507,71961
+62508,51625
+62509,34108
+62510,68622
+62511,70482
+62512,67462
+62513,65975
+62514,65767
+62515,81703
+62516,25302
+62517,69286
+62518,67254
+62519,69588
+62520,62513
+62521,53042
+62522,21013,20182
+62523,60448
+62524,74577
+62525,29737
+62526,55213
+62527,48723
+62528,19734
+62529,73300
+62530,27227
+62531,33816
+62532,29457
+62533,53620
+62534,46027
+62535,73992
+62536,38606
+62537,62145
+62538,28271
+62539,75548
+62540,62145
+62541,55346
+62542,19228
+62543,56179
+62544,29069
+62545,29513
+62546,19546
+62547,79081
+62548,29758
+62549,19654
+62550,71516
+62551,47908
+62552,28790
+62553,36571
+62554,18906
+62555,80524
+62556,37405
+62557,20978
+62558,29611
+62559,38593
+62560,31851
+62561,75976
+62562,75629
+62563,48477
+62564,29576
+62565,57966
+62566,62675
+62567,38930
+62568,53454
+62569,60216
+62570,46957
+62571,20743
+62572,62569
+62573,13818
+62574,34819
+62575,76135
+62576,34147
+62577,34867
+62578,35156
+62579,75902
+62580,60570
+62581,74906
+62582,31564
+62583,28357
+62584,65057
+62585,72983
+62586,48156
+62587,31100
+62588,79165
+62589,62590
+62590,47814
+62591,35678
+62592,43469,20963
+62593,43469,20963
+62594,36065
+62595,57435
+62596,77207
+62597,77369
+62598,50880
+62599,50885
+62600,66551
+62601,21324
+62602,24057
+62603,62600
+62604,21326
+62605,24061
+62606,23780
+62607,73838
+62608,39053
+62609,19385
+62610,19379
+62611,62145
+62612,19462
+62613,58024
+62614,51391
+62615,19009
+62616,63257
+62617,73323
+62618,54867
+62619,62584
+62620,19574
+62621,59199
+62622,19576
+62623,76146
+62624,51856
+62625,60598
+62626,24221
+62627,31058
+62628,50861
+62629,76664
+62630,49359
+62631,29736
+62632,62145
+62633,58208
+62634,22034
+62635,38600
+62636,32510
+62637,55734
+62638,56399
+62639,37305
+62640,59374
+62641,27519
+62642,47532
+62643,53907
+62644,61241
+62645,74973
+62646,60074
+62647,62145
+62648,62260
+62649,70515
+62650,79088
+62651,25289,63013
+62652,59645
+62653,76989
+62654,34987
+62655,57463
+62656,47388
+62657,30275
+62658,45199
+62659,19228
+62660,40150
+62661,68771
+62662,59646
+62663,62409
+62664,45572
+62665,57194
+62666,61135
+62667,41846
+62668,57330
+62669,60570
+62670,31245
+62671,76662
+62672,70646
+62673,70646
+62674,79282
+62675,36840
+62676,66551
+62677,41128
+62678,79753
+62679,47175
+62680,37343
+62681,26298
+62682,37201
+62683,28952
+62684,27294
+62685,35388
+62686,81800
+62687,81800
+62688,53717
+62689,43908
+62690,51566
+62691,35922
+62692,35922
+62693,68677
+62694,23780
+62695,72271
+62696,47698
+62697,22125
+62698,63505
+62699,66953
+62700,68956
+62701,34472
+62702,43247
+62703,76633
+62704,75843
+62705,59336
+62706,60062
+62707,63198
+62708,63345
+62709,35664
+62710,62146
+62711,28344
+62712,48171
+62713,69978
+62714,30891
+62715,19497
+62716,35922
+62717,76134
+62718,28620
+62719,36721
+62720,76691
+62721,31245
+62722,58162
+62723,63416
+62724,65531
+62725,31058
+62726,72122
+62727,66016
+62728,31846
+62729,60216
+62730,75874
+62731,62145
+62732,32152
+62733,45383
+62734,62736
+62735,18866
+62736,50701
+62737,41284
+62738,30693
+62739,29587
+62740,52497
+62741,80619
+62742,63945
+62743,52497
+62744,62950
+62745,63666
+62746,25573
+62747,31308
+62748,57466
+62749,21474
+62750,34833
+62751,63669
+62752,67565
+62753,60536
+62754,59306
+62755,35762
+62756,41105
+62757,60603
+62758,71579
+62759,26779
+62760,22291
+62761,36041
+62762,42358
+62763,61646
+62764,77974
+62765,21477
+62766,63426
+62767,78703
+62768,80259
+62769,52592
+62770,72861
+62771,48087
+62772,35511
+62773,22181
+62774,74504
+62775,49508
+62776,54753
+62777,47507
+62778,34126
+62779,29569
+62780,21757
+62781,78741
+62782,76134
+62783,59467
+62784,57741
+62785,62776
+62786,31308
+62787,23622
+62788,32672
+62789,51729
+62790,80665
+62791,81193
+62792,64846
+62793,42451
+62794,46092
+62795,65795
+62796,53718
+62797,73723
+62798,68444
+62799,19272
+62800,43168,58108
+62801,79717
+62802,50008
+62803,20743
+62804,79546
+62805,59549
+62806,32269
+62807,66354
+62808,81714
+62809,79086
+62810,32269
+62811,31742
+62812,64846
+62813,25642
+62814,31739
+62815,33498
+62816,40700
+62817,41546
+62818,62825
+62819,47869
+62820,47931
+62821,51677
+62822,74072
+62823,75141
+62824,30980
+62825,38512
+62826,75015
+62827,63813
+62828,72178
+62829,34249
+62830,70650
+62831,24710
+62832,67093
+62833,71579
+62834,50717
+62835,77641
+62836,77641
+62837,64805
+62838,30961
+62839,37179
+62840,26827
+62841,62029
+62842,45813
+62843,20751
+62844,67938
+62845,77374
+62846,39578
+62847,55263
+62848,81125
+62849,40778
+62850,62144
+62851,23869
+62852,29737,7764
+62853,72283
+62854,63007
+62855,48717
+62856,32685
+62857,62852
+62858,63139
+62859,63357
+62860,22817
+62861,78755
+62862,57913
+62863,47672
+62864,63314
+62865,21018
+62866,28146
+62867,37355
+62868,40623
+62869,20341
+62870,53694
+62871,35917
+62872,21552
+62873,30296
+62874,30467
+62875,62874
+62876,62874
+62877,34588
+62878,36908
+62879,45452
+62880,69416
+62881,62875
+62882,75009
+62883,76989
+62884,61159
+62885,62145
+62886,52889
+62887,27233
+62888,19453
+62889,57187
+62890,35887
+62891,48536
+62892,53986
+62893,62889
+62894,29851
+62895,76058
+62896,20992
+62897,44059
+62898,62659
+62899,55324
+62900,41262
+62901,81578
+62902,60216
+62903,42518
+62904,54900
+62905,59309
+62906,48219
+62907,36843
+62908,58144
+62909,36450
+62910,45813
+62911,49138
+62912,80485
+62913,24379
+62914,21525
+62915,20282
+62916,74067
+62917,74238
+62918,62914,31522
+62919,64757
+62920,62914
+62921,62914
+62922,21525
+62923,62922
+62924,77641
+62925,34085
+62926,81807
+62927,27321
+62928,40065
+62929,37204
+62930,22452
+62931,68290
+62932,36035
+62933,62145
+62934,79084
+62935,50605
+62936,67272
+62937,42452
+62938,50604
+62939,62938
+62940,62938
+62941,50604
+62942,62938
+62943,62938
+62944,81800
+62945,45033
+62946,31940
+62947,39049
+62948,44000
+62949,26264
+62950,53731
+62951,67303
+62952,21675
+62953,81656
+62954,31106
+62955,60138,62957
+62956,70629
+62957,52497
+62958,21307
+62959,48254
+62960,26800
+62961,81786
+62962,30659
+62963,81786
+62964,30937
+62965,57927
+62966,78703
+62967,21765
+62968,21669
+62969,58425
+62970,59338
+62971,74401
+62972,36952
+62973,33885
+62974,62145
+62975,65768
+62976,61871
+62977,58004
+62978,61871
+62979,62978
+62980,70526
+62981,32177
+62982,27077
+62983,28574
+62984,50630,49598
+62985,75901
+62986,78647
+62987,42094
+62988,62986
+62989,54408
+62990,65163
+62991,48980
+62992,37935
+62993,29488
+62994,34844
+62995,28637
+62996,75677
+62997,57177
+62998,62455
+62999,68236
+63000,69012
+63001,80185
+63002,57570,32908
+63003,71310
+63004,62387
+63005,70033
+63006,45597
+63007,66551
+63008,19462
+63009,62676
+63010,32362
+63011,20116
+63012,53940
+63013,43247
+63014,63013
+63015,81306
+63016,25603
+63017,25598
+63018,21510
+63019,39112
+63020,39112
+63021,19497
+63022,30020
+63023,27897
+63024,60450
+63025,64142
+63026,53619
+63027,53480
+63028,21282
+63029,21272
+63030,38564
+63031,79072
+63032,28358
+63033,32527
+63034,77735
+63035,77735
+63036,51174
+63037,57569
+63038,32929
+63039,57223
+63040,74567
+63041,38826
+63042,65999
+63043,48306
+63044,53717
+63045,22640
+63046,48470
+63047,64273
+63048,35156
+63049,76256
+63050,30271
+63051,76258
+63052,61159
+63053,57035
+63054,71209
+63055,12335
+63056,51881
+63057,63056
+63058,21025
+63059,63061
+63060,19228
+63061,36721
+63062,59825
+63063,30267
+63064,25115
+63065,60600
+63066,30267
+63067,54047
+63068,28747
+63069,62963
+63070,63065
+63071,76657
+63072,44440,30391
+63073,65765
+63074,53114
+63075,81626
+63076,26577
+63077,52762,20999
+63078,19171
+63079,47814
+63080,57573
+63081,43820
+63082,46385
+63083,62145
+63084,30020
+63085,34398
+63086,34402
+63087,72839
+63088,58776
+63089,48126
+63090,71996
+63091,53716
+63092,61317
+63093,74462
+63094,62145
+63095,37858
+63096,37859
+63097,26470
+63098,19131
+63099,19126
+63100,60866
+63101,38135
+63102,55688
+63103,27622
+63104,34924
+63105,31587
+63106,42506
+63107,38690
+63108,74939
+63109,41005
+63110,32799
+63111,28057
+63112,42246
+63113,62820
+63114,28774
+63115,31477
+63116,64160
+63117,32793
+63118,32187
+63119,34906
+63120,48724
+63121,53202
+63122,35663
+63123,62709
+63124,48031
+63125,32795
+63126,19171
+63127,38715
+63128,32269
+63129,53656
+63130,58107
+63131,41747
+63132,64846
+63133,58158
+63134,34357
+63135,48939
+63136,48938
+63137,78658
+63138,79009
+63139,57466
+63140,19567
+63141,57461
+63142,22415
+63143,22032
+63144,19438
+63145,21938
+63146,23232,72420
+63147,23303,72420
+63148,25600,72420
+63149,41047,72420
+63150,43686,72420
+63151,58168
+63152,71323
+63153,75814,72420
+63154,81751,72420
+63155,38809
+63156,71321
+63157,18876
+63158,62145
+63159,30978
+63160,70633
+63161,58410
+63162,33042
+63163,28654
+63164,24237
+63165,47402
+63166,19462
+63167,18978
+63168,69554
+63169,73352
+63170,63166
+63171,27339
+63172,59497
+63173,48489
+63174,78469
+63175,34670
+63176,18853
+63177,20581
+63178,18740
+63179,63180
+63180,73201
+63181,31245
+63182,62585
+63183,53696
+63184,20823
+63185,75020
+63186,60071
+63187,71439
+63188,55756
+63189,77311
+63190,34211
+63191,37908,31126
+63192,32790
+63193,21754
+63194,28536
+63195,55347
+63196,65910
+63197,69235
+63198,75843
+63199,36803
+63200,66787
+63201,75472
+63202,79033
+63203,28541
+63204,61789
+63205,44701
+63206,65559
+63207,50602
+63208,34211
+63209,19200
+63210,76664
+63211,61202
+63212,80512
+63213,31820
+63214,34299
+63215,79738
+63216,62584
+63217,65925
+63218,73838
+63219,19112
+63220,70629
+63221,43122
+63222,60245
+63223,58004
+63224,58010
+63225,58166
+63226,50167,43708
+63227,70397
+63228,35425
+63229,33597
+63230,48723
+63231,66377
+63232,30865
+63233,47870
+63234,44474
+63235,20355
+63236,79385
+63237,48723
+63238,31668
+63239,66985
+63240,49997
+63241,77108
+63242,32457
+63243,53109
+63244,80012
+63245,22789
+63246,21012,20999
+63247,54082
+63248,72861
+63249,47671
+63250,69439
+63251,72052,30689
+63252,38777
+63253,30891
+63254,30891
+63255,56164
+63256,19482
+63257,28529
+63258,37789
+63259,54044
+63260,75015
+63261,26589
+63262,37471
+63263,33285
+63264,25367
+63265,68475
+63266,34924
+63267,21922
+63268,28136
+63269,20822
+63270,50628
+63271,23269
+63272,67054
+63273,55686
+63274,35678
+63275,63218
+63276,67290
+63277,60570
+63278,41846
+63279,34166
+63280,57164
+63281,79009
+63282,72051
+63283,53619
+63284,21510
+63285,60540
+63286,38564
+63287,47699
+63288,19936
+63289,62956
+63290,74487
+63291,66965
+63292,32506
+63293,48157
+63294,30891
+63295,60603
+63296,35702
+63297,25431
+63298,30891
+63299,19944
+63300,42246,41773
+63301,19935
+63302,23972
+63303,81578
+63304,74081
+63305,38836
+63306,53648
+63307,19867
+63308,19944
+63309,67675
+63310,27488
+63311,56761
+63312,41406
+63313,57098
+63314,22164
+63315,31158
+63316,62178
+63317,57333
+63318,25499
+63319,72747
+63320,58587
+63321,69358
+63322,27332
+63323,60393
+63324,60393
+63325,62585
+63326,62584
+63327,65767
+63328,35863
+63329,63328
+63330,62794
+63331,61260
+63332,27488
+63333,63307
+63334,64373
+63335,52655
+63336,61153
+63337,52656
+63338,64160
+63339,32390
+63340,41000
+63341,65926
+63342,75472
+63343,64846
+63344,54044
+63345,72052
+63346,58215
+63347,57556
+63348,72983
+63349,78598
+63350,74906
+63351,60216
+63352,20517
+63353,30461
+63354,58587
+63355,68831
+63356,58583
+63357,34470
+63358,48613
+63359,56444
+63360,20351
+63361,34307
+63362,41103
+63363,19171
+63364,75018
+63365,44439
+63366,42246
+63367,21005,46911
+63368,58158
+63369,31900
+63370,35495
+63371,72729
+63372,80047
+63373,21412
+63374,44946
+63375,38883
+63376,81797
+63377,63376
+63378,30391
+63379,50872
+63380,57573,50638
+63381,31811
+63382,60259
+63383,31807
+63384,62884
+63385,30866
+63386,53023
+63387,61628
+63388,62321
+63389,54561
+63390,57556
+63391,37113
+63392,43734
+63393,22258
+63394,19322
+63395,37832
+63396,63434
+63397,18728
+63398,48126
+63399,32181
+63400,53716
+63401,38807
+63402,32718
+63403,34587
+63404,34585
+63405,81462
+63406,79531
+63407,74025
+63408,55348
+63409,54082
+63410,39803
+63411,70397
+63412,65273
+63413,70033
+63414,38053
+63415,21078
+63416,19228
+63417,68829
+63418,47678
+63419,38944
+63420,37119
+63421,19497
+63422,30487
+63423,25104
+63424,32578
+63425,40472
+63426,29928
+63427,36841
+63428,19547
+63429,64142
+63430,35787
+63431,62145
+63432,65133
+63433,63432
+63434,52544
+63435,58162
+63436,54967
+63437,28790
+63438,63434
+63439,42489
+63440,79031
+63441,57346
+63442,66058
+63443,57346
+63444,29539,34506
+63445,34166
+63446,71595,38167
+63447,76319
+63448,30020
+63449,30020
+63450,54253
+63451,42429
+63452,63463
+63453,24306
+63454,28317
+63455,38466
+63456,30190
+63457,67272
+63458,54253
+63459,39294
+63460,42539
+63461,58100
+63462,46599
+63463,21433
+63464,35480
+63465,57154
+63466,30417
+63467,74082
+63468,21985
+63469,52885
+63470,54867
+63471,48077
+63472,63458
+63473,82163
+63474,82164
+63475,36335
+63476,77802
+63477,28538
+63478,31245
+63479,48318
+63480,43976
+63481,68030
+63482,41287
+63483,63513
+63484,27563
+63485,23891
+63486,72122
+63487,57573
+63488,27323,29509
+63489,56080
+63490,81647
+63491,31002
+63492,73472
+63493,31243
+63494,19228
+63495,47047
+63496,63495
+63497,37789
+63498,18866
+63499,54412
+63500,34833
+63501,54429
+63502,80011
+63503,48735
+63504,71324
+63505,79541
+63506,6654
+63507,56262
+63508,62425
+63509,19655
+63510,75196
+63511,80104
+63512,78755
+63513,35522,56185
+63514,36467
+63515,26884
+63516,80787
+63517,63522
+63518,81626
+63519,33544
+63520,77833
+63521,49945
+63522,45051
+63523,69597
+63524,46464
+63525,20403
+63526,70651
+63527,49024
+63528,63527
+63529,63527
+63530,67462
+63531,31041
+63532,70427
+63533,73401
+63534,73752
+63535,78160
+63536,71347
+63537,71348
+63538,37931
+63539,20038
+63540,44921
+63541,24377
+63542,24354
+63543,38475
+63544,56009
+63545,61263
+63546,63064
+63547,39225
+63548,51068
+63549,44923
+63550,54562
+63551,79211
+63552,79211
+63553,38134,25087
+63554,28317
+63555,20745
+63556,22172
+63557,70568
+63558,63559
+63559,48318
+63560,70651
+63561,66385
+63562,73967
+63563,66787
+63564,71996
+63565,53716
+63566,57456
+63567,30882
+63568,55356
+63569,63567
+63570,36602
+63571,63602
+63572,46892
+63573,49136
+63574,43523
+63575,48638
+63576,71322
+63577,44474
+63578,44474
+63579,63586,51558
+63580,30271
+63581,18840
+63582,54993
+63583,57932
+63584,31245
+63585,80106
+63586,68290
+63587,68280
+63588,18869
+63589,63587
+63590,44474
+63591,38135
+63592,60375
+63593,63586
+63594,38801
+63595,47503
+63596,44474
+63597,65929
+63598,53920
+63599,53916
+63600,25676
+63601,76160
+63602,76162
+63603,63565
+63604,53761
+63605,70091
+63606,34664
+63607,36602
+63608,47121
+63609,44456
+63610,38807
+63611,25432
+63612,79211
+63613,32718
+63614,63616
+63615,45813
+63616,21458
+63617,31430
+63618,70568
+63619,61468
+63620,63064
+63621,20353
+63622,41017
+63623,63228
+63624,20480
+63625,67642
+63626,26938
+63627,77160
+63628,76662
+63629,21477
+63630,44792
+63631,25256
+63632,25094
+63633,19485
+63634,30884
+63635,28637
+63636,34085
+63637,50638
+63638,35532
+63639,63320
+63640,36996
+63641,75465
+63642,30267
+63643,50602
+63644,51188
+63645,57177
+63646,62145
+63647,23790
+63648,63316
+63649,63259
+63650,60216
+63651,68771
+63652,68236
+63653,37712
+63654,37721
+63655,19311
+63656,77277
+63657,76865,39099
+63658,77523
+63659,31825
+63660,77630
+63661,73838
+63662,23193
+63663,81602
+63664,30882
+63665,30659
+63666,30891
+63667,64142
+63668,63144
+63669,58583
+63670,40240
+63671,31394
+63672,45813
+63673,26118
+63674,35595
+63675,40942
+63676,35557
+63677,34808
+63678,34808
+63679,32379
+63680,66785
+63681,81735
+63682,32582
+63683,48910
+63684,21703
+63685,65584
+63686,66609
+63687,79282
+63688,42503
+63689,37847
+63690,79591
+63691,55324
+63692,24834
+63693,76664
+63694,59497
+63695,65184
+63696,48213
+63697,44670
+63698,79653
+63699,23419
+63700,59498
+63701,41877
+63702,60661
+63703,30325
+63704,30325
+63705,61438
+63706,40552
+63707,68619
+63708,71048
+63709,38705
+63710,35944
+63711,57035
+63712,62409
+63713,70033
+63714,77641
+63715,20905
+63716,273
+63717,2336
+63718,37179
+63719,41743
+63720,23622
+63721,41103
+63722,34924
+63723,37237
+63724,19462
+63725,63363
+63726,26854
+63727,21474
+63728,29692
+63729,21541
+63730,28417,63722
+63731,81413
+63732,46256
+63733,55497
+63734,81626
+63735,45777
+63736,52499
+63737,20745
+63738,74721
+63739,47870
+63740,21810
+63741,20938
+63742,21703
+63743,29432
+63744,31391
+63745,37627
+63746,56451
+63747,66017
+63748,73147
+63749,63742
+63750,78106
+63751,69058
+63752,79282
+63753,28187
+63754,79213
+63755,61263
+63756,53337
+63757,52578
+63758,28091
+63759,71443
+63760,19936
+63761,56563
+63762,60417
+63763,80440
+63764,50918
+63765,60126
+63766,79757,64831
+63767,63770
+63768,32386
+63769,42467
+63770,54913
+63771,29418
+63772,20817
+63773,66785
+63774,69818
+63775,53648
+63776,31736
+63777,61474
+63778,19201
+63779,46781
+63780,27564
+63781,63779
+63782,80639
+63783,79259
+63784,72637
+63785,21814
+63786,60733
+63787,37183
+63788,74343
+63789,41837
+63790,54813
+63791,24874
+63792,76981
+63793,40356
+63794,25546
+63795,51472
+63796,63792
+63797,62740
+63798,25018
+63799,27502
+63800,25598
+63801,79546
+63802,22786
+63803,38466
+63804,46462
+63805,76691
+63806,76149
+63807,48645
+63808,44451
+63809,53171
+63810,61646
+63811,54732
+63812,46268
+63813,19228
+63814,70776
+63815,21777
+63816,81396
+63817,72150
+63818,71003
+63819,71310
+63820,33758
+63821,47443
+63822,66787
+63823,19412
+63824,39311
+63825,43523
+63826,82066
+63827,23294
+63828,46935
+63829,25046
+63830,49728
+63831,25059
+63832,49736
+63833,82056
+63834,75860
+63835,48318
+63836,21124
+63837,72135
+63838,36007
+63839,39940
+63840,43809
+63841,67277,50701
+63842,69977
+63843,60076
+63844,21670
+63845,36383
+63846,63833,35944
+63847,82057
+63848,19349
+63849,52189
+63850,19130
+63851,48146
+63852,19131
+63853,31690
+63854,62810
+63855,19655
+63856,26586
+63857,68429
+63858,68909
+63859,18791
+63860,31021
+63861,53481
+63862,57261
+63863,53717
+63864,70524
+63865,47505
+63866,65815
+63867,29691
+63868,29707
+63869,29691
+63870,63868
+63871,28344
+63872,21200
+63873,23219
+63874,23219
+63875,48359
+63876,59766
+63877,18831
+63878,31245
+63879,31245
+63880,76345
+63881,49969
+63882,73207
+63883,29237
+63884,56804
+63885,37064
+63886,41638
+63887,41638
+63888,21959
+63889,20789
+63890,21337
+63891,60566
+63892,81161
+63893,29731
+63894,24427
+63895,37696
+63896,40068
+63897,41638
+63898,42050
+63899,43849
+63900,45547
+63901,51930
+63902,52120
+63903,53290
+63904,54458
+63905,55581
+63906,15904
+63907,59419
+63908,62030
+63909,29759
+63910,67548
+63911,67836
+63912,68025
+63913,54467
+63914,77829
+63915,58291
+63916,24897
+63917,65262
+63918,43546
+63919,53609
+63920,53610
+63921,24823
+63922,71686
+63923,74275
+63924,74275
+63925,22684
+63926,68921
+63927,36418
+63928,41870
+63929,57570
+63930,45813
+63931,79416
+63932,31668
+63933,46959
+63934,60216
+63935,40985
+63936,55347
+63937,68649
+63938,74939
+63939,61459,37731
+63940,63494
+63941,74478
+63942,51649
+63943,22640
+63944,63195
+63945,63363
+63946,41103
+63947,24046
+63948,64520
+63949,51677
+63950,64285
+63951,53870
+63952,26092
+63953,74846
+63954,39847
+63955,34023,32929
+63956,55497
+63957,48735
+63958,67793
+63959,40811
+63960,21541
+63961,39504
+63962,81161
+63963,81176
+63964,60216
+63965,60868,24764
+63966,34686
+63967,42297
+63968,73345
+63969,58023
+63970,23206
+63971,62785
+63972,58367
+63973,34113
+63974,63973
+63975,78816
+63976,63621
+63977,47730
+63978,43698
+63979,50900
+63980,43701
+63981,48874
+63982,33922
+63983,28202,39988
+63984,71954
+63985,58088
+63986,41023
+63987,42089
+63988,63047
+63989,11502
+63990,61260
+63991,36867
+63992,35534
+63993,48127
+63994,66873
+63995,66874
+63996,78941
+63997,24834
+63998,70990
+63999,28990
+64000,33639
+64001,53226
+64002,81501
+64003,77004
+64004,81482
+64005,77185
+64006,77185
+64007,72135
+64008,73147
+64009,42312
+64010,58200
+64011,20977
+64012,20977
+64013,59549
+64014,60132
+64015,55314
+64016,61871
+64017,72042
+64018,26289
+64019,68196
+64020,75860
+64021,55368
+64022,74824
+64023,60810
+64024,47047
+64025,57255
+64026,48319
+64027,45813
+64028,23219
+64029,56492
+64030,21012
+64031,23219
+64032,58158
+64033,54562
+64034,74251
+64035,28190
+64036,28790
+64037,37411
+64038,60411
+64039,74081
+64040,74081
+64041,34771
+64042,21765
+64043,36405
+64044,81703
+64045,51642
+64046,54562
+64047,77452
+64048,35863
+64049,35858
+64050,52990
+64051,52352
+64052,76196
+64053,64052
+64054,54562
+64055,42229
+64056,70395
+64057,20120
+64058,67675
+64059,61898
+64060,54562
+64061,76206
+64062,25953
+64063,77287
+64064,54562
+64065,28190
+64066,66696
+64067,54189
+64068,54562
+64069,40068
+64070,19069
+64071,41877
+64072,72271
+64073,25013
+64074,81397
+64075,74939
+64076,65108
+64077,28849
+64078,41729
+64079,70033
+64080,25574
+64081,49353
+64082,1584
+64083,37888
+64084,35389
+64085,417
+64086,51068
+64087,35917,55440
+64088,71686
+64089,36694
+64090,53703
+64091,21474
+64092,78399
+64093,62976
+64094,21475
+64095,21475
+64096,53624
+64097,51468
+64098,79743
+64099,73179
+64100,33246
+64101,72611
+64102,61885
+64103,38196
+64104,19982
+64105,31561
+64106,76664
+64107,33455
+64108,38908
+64109,61866
+64110,33793
+64111,72618
+64112,50439
+64113,50439
+64114,55324
+64115,59126
+64116,45029
+64117,46901
+64118,54811
+64119,64227
+64120,76041
+64121,55601
+64122,70079
+64123,31940
+64124,55614
+64125,57573
+64126,36323
+64127,36498
+64128,38213
+64129,29578
+64130,29579
+64131,81162
+64132,60396
+64133,67693
+64134,57651
+64135,78640
+64136,32603
+64137,21842
+64138,66329
+64139,40365
+64140,31647
+64141,71328
+64142,22164
+64143,34362
+64144,63315
+64145,48584
+64146,44041
+64147,41729
+64148,77641
+64149,37179
+64150,77641
+64151,37181
+64152,58168
+64153,46392
+64154,64142
+64155,66158
+64156,53621
+64157,81578
+64158,81578
+64159,28776,53621
+64160,31158
+64161,20409
+64162,35879
+64163,64160
+64164,53619
+64165,64167
+64166,64167
+64167,64171
+64168,50757
+64169,49410
+64170,64171
+64171,60612
+64172,68289
+64173,48980
+64174,48984
+64175,37527
+64176,28747
+64177,21640
+64178,35684
+64179,35682
+64180,35436
+64181,63124
+64182,81626
+64183,2492
+64184,17469
+64185,17466
+64186,19751
+64187,59308
+64188,76672
+64189,68254
+64190,76664
+64191,58195
+64192,22414
+64193,2492
+64194,30300
+64195,60216
+64196,29513
+64197,60746
+64198,29732
+64199,76664
+64200,76672
+64201,67769
+64202,3701
+64203,67479
+64204,51523
+64205,57066
+64206,61339
+64207,22414
+64208,66122
+64209,21480
+64210,32527
+64211,73323
+64212,48662
+64213,22540
+64214,22542
+64215,34154
+64216,53422
+64217,30067
+64218,46827
+64219,35879
+64220,27427
+64221,69238
+64222,21596
+64223,72721
+64224,72716
+64225,55761
+64226,55756
+64227,42351
+64228,69331
+64229,53174
+64230,70549
+64231,54562
+64232,72818
+64233,64231
+64234,56168
+64235,53970
+64236,66785
+64237,28146
+64238,31690
+64239,64164
+64240,58158
+64241,24437
+64242,20819
+64243,58158
+64244,72877
+64245,28299
+64246,71686
+64247,60756
+64248,56209
+64249,60247
+64250,39608
+64251,39068
+64252,28848
+64253,48318
+64254,55998
+64255,39608
+64256,29817
+64257,64253
+64258,64250
+64259,64250
+64260,64259
+64261,56664
+64262,62187
+64263,64250
+64264,77817
+64265,58162
+64266,73081
+64267,36872
+64268,54469
+64269,75731
+64270,26520
+64271,68652
+64272,53246
+64273,73992
+64274,64281
+64275,69153
+64276,63809
+64277,53384
+64278,64273
+64279,64273
+64280,76664
+64281,65975
+64282,41221
+64283,7053
+64284,77920
+64285,51677
+64286,25662
+64287,51470
+64288,38522
+64289,52801
+64290,75411
+64291,64290
+64292,21477
+64293,25770
+64294,53109
+64295,50766
+64296,58674
+64297,19656
+64298,34363
+64299,58162
+64300,70524
+64301,61063
+64302,33545
+64303,54424
+64304,22853
+64305,66182
+64306,49648
+64307,66124
+64308,55946
+64309,55944
+64310,70246
+64311,41162
+64312,72224
+64313,66445
+64314,59850
+64315,39677
+64316,23653
+64317,23672
+64318,69408
+64319,39049
+64320,23678
+64321,21018,79401
+64322,37179,61927
+64323,41743
+64324,20819
+64325,20972
+64326,21018
+64327,31058
+64328,31062
+64329,76664
+64330,20672
+64331,54188
+64332,49648
+64333,38606
+64334,37519
+64335,55761
+64336,55756
+64337,42351
+64338,69331
+64339,50439
+64340,55324
+64341,70079
+64342,55614
+64343,26936
+64344,77641
+64345,34326
+64346,44347
+64347,23517
+64348,54953
+64349,80789
+64350,77431
+64351,31822
+64352,35924
+64353,60216
+64354,27781
+64355,38600
+64356,42105
+64357,45465
+64358,49013
+64359,80576
+64360,49706
+64361,42097
+64362,58384
+64363,42351
+64364,57187
+64365,20111
+64366,77292
+64367,81715
+64368,72983
+64369,62456
+64370,38624
+64371,63809
+64372,30891
+64373,64846
+64374,57187
+64375,31087
+64376,14990
+64377,30374
+64378,44347
+64379,49298
+64380,72283
+64381,62858
+64382,62145
+64383,51020
+64384,42088
+64385,22918
+64386,43669
+64387,46270
+64388,75703
+64389,64383
+64390,46999
+64391,63791
+64392,24961
+64393,28979
+64394,53439
+64395,59169
+64396,40962
+64397,82167
+64398,41899
+64399,63103
+64400,81095
+64401,44437
+64402,31646
+64403,31646
+64404,53757
+64405,63048
+64406,66651
+64407,70905
+64408,63184
+64409,46599
+64410,40759
+64411,75417
+64412,20743
+64413,30514
+64414,27405
+64415,36542
+64416,80808
+64417,32504
+64418,76745
+64419,27118
+64420,22451
+64421,48126
+64422,56170
+64423,64432
+64424,68909
+64425,72421
+64426,70976
+64427,64417
+64428,64426
+64429,69665
+64430,72931
+64431,24021
+64432,35525
+64433,24111
+64434,33500
+64435,41444
+64436,77108
+64437,42002
+64438,74488
+64439,48415
+64440,42388
+64441,50237,64434
+64442,65847
+64443,22128
+64444,56832
+64445,37988
+64446,72437
+64447,29969
+64448,32929
+64449,39599
+64450,22786
+64451,32530
+64452,64534
+64453,53624
+64454,37484
+64455,37484
+64456,40150
+64457,61568
+64458,21703
+64459,22004
+64460,48579
+64461,49641
+64462,56440
+64463,63766
+64464,74917
+64465,79282
+64466,72066
+64467,20727
+64468,45098,43736
+64469,51319
+64470,25949
+64471,37884
+64472,40851
+64473,45556
+64474,37884
+64475,56179,72505
+64476,56492
+64477,37678
+64478,37676
+64479,39824
+64480,43997
+64481,62757
+64482,64052
+64483,74973
+64484,56176
+64485,45546
+64486,53660
+64487,27275
+64488,46673
+64489,53619
+64490,60216
+64491,28591
+64492,19544
+64493,47295
+64494,53373
+64495,70202
+64496,61789
+64497,28932
+64498,73837
+64499,48126
+64500,26016
+64501,30884
+64502,37479
+64503,20825
+64504,57747
+64505,21998
+64506,70214
+64507,64524
+64508,70214
+64509,48495
+64510,26009
+64511,28667
+64512,35390
+64513,41562
+64514,64525
+64515,30884
+64516,56597
+64517,72994
+64518,57389
+64519,57945
+64520,65099
+64521,64527
+64522,64484
+64523,72038
+64524,26018
+64525,21997
+64526,77500
+64527,37448
+64528,53621
+64529,64530
+64530,34989
+64531,64530
+64532,53454
+64533,64532
+64534,37450
+64535,24249
+64536,24251
+64537,27459
+64538,33907
+64539,28803
+64540,29071
+64541,54043
+64542,60534
+64543,71996
+64544,60543
+64545,60541
+64546,47566
+64547,49011
+64548,19195
+64549,68290
+64550,71996
+64551,53710
+64552,52469
+64553,54130
+64554,64553
+64555,57854
+64556,36872
+64557,60370
+64558,75687
+64559,75689
+64560,63417
+64561,47510
+64562,64501
+64563,81361
+64564,75668
+64565,81361
+64566,76162
+64567,38218
+64568,66965
+64569,66977,33135
+64570,64572
+64571,64572
+64572,33134
+64573,54082
+64574,64566
+64575,73537
+64576,65581
+64577,21540
+64578,50976
+64579,64578
+64580,79248
+64581,79248
+64582,46826
+64583,28780,56806
+64584,39767
+64585,61253
+64586,58888
+64587,77895
+64588,52159
+64589,40658
+64590,41339
+64591,23536
+64592,77585
+64593,62452
+64594,80589
+64595,60744
+64596,33928
+64597,36007
+64598,81796
+64599,78909
+64600,22684
+64601,20669
+64602,79638
+64603,34782
+64604,41638
+64605,52410
+64606,69456
+64607,42225
+64608,70814
+64609,73207
+64610,78785
+64611,81626
+64612,33793
+64613,80583
+64614,61816,20069
+64615,80583
+64616,37619
+64617,32154
+64618,64635
+64619,23021
+64620,79953
+64621,50117
+64622,39638
+64623,75613
+64624,72436
+64625,37805
+64626,73475
+64627,53453
+64628,23182
+64629,23641
+64630,21112
+64631,76518
+64632,77260
+64633,78194
+64634,55236
+64635,51474
+64636,49438
+64637,75913
+64638,69199
+64639,62555
+64640,41577
+64641,80213
+64642,29480
+64643,63251
+64644,73850
+64645,66696
+64646,33893
+64647,41180
+64648,42358
+64649,21475
+64650,60042
+64651,19923
+64652,25525
+64653,63252
+64654,26827
+64655,52135
+64656,49059
+64657,74557
+64658,27850
+64659,71029
+64660,77987
+64661,77988
+64662,30062
+64663,36570
+64664,38675
+64665,53721
+64666,63126
+64667,73481,64639
+64668,76664
+64669,68679
+64670,42075
+64671,47869
+64672,36245
+64673,25923
+64674,36467
+64675,31853
+64676,30325
+64677,25770
+64678,31853
+64679,64015
+64680,78826
+64681,19686
+64682,64860
+64683,41844
+64684,70118
+64685,36072
+64686,21525
+64687,79200
+64688,76981
+64689,51180
+64690,33494
+64691,45035
+64692,35721
+64693,31767
+64694,22332
+64695,44440
+64696,42351
+64697,39511
+64698,54838
+64699,61647
+64700,76981
+64701,69609
+64702,50184
+64703,20313
+64704,59775
+64705,30891
+64706,37179
+64707,41743
+64708,35557
+64709,35558
+64710,39261
+64711,61153
+64712,32
+64713,49207
+64714,64700
+64715,72776
+64716,47819
+64717,20079
+64718,35792
+64719,21412
+64720,37609
+64721,27093
+64722,58544
+64723,66859
+64724,66859
+64725,25256
+64726,39367
+64727,46125
+64728,46782
+64729,39375
+64730,39381
+64731,34113
+64732,75439,57693
+64733,15817
+64734,79842
+64735,67161
+64736,67746
+64737,67745
+64738,67750
+64739,79165
+64740,73321
+64741,58170
+64742,60604
+64743,48928
+64744,77277
+64745,21946
+64746,39101
+64747,43107
+64748,51433
+64749,20743
+64750,46472
+64751,74597
+64752,53624
+64753,50297
+64754,29503
+64755,21525
+64756,46136,20889
+64757,73018
+64758,51469
+64759,56925
+64760,59970
+64761,41107
+64762,58106
+64763,30682
+64764,71493
+64765,72861
+64766,68652
+64767,59646
+64768,65224
+64769,32269
+64770,71961
+64771,33650
+64772,31795
+64773,62034,24528
+64774,24875
+64775,42351
+64776,31795
+64777,55807
+64778,61541
+64779,69441
+64780,31831
+64781,57594
+64782,74614
+64783,22116,32929
+64784,57637
+64785,66505
+64786,80421
+64787,66676
+64788,63658
+64789,74867
+64790,71256
+64791,34732
+64792,70426
+64793,19565
+64794,65603
+64795,68929
+64796,60216
+64797,44437
+64798,69978
+64799,31148
+64800,30406
+64801,68123
+64802,34559
+64803,35565
+64804,69235
+64805,38281
+64806,79009
+64807,39961
+64808,23946,36642
+64809,25700
+64810,41250
+64811,58734
+64812,66862
+64813,75364
+64814,81643
+64815,39961
+64816,28731
+64817,49546
+64818,67160
+64819,30514
+64820,75942
+64821,64154
+64822,51155
+64823,63316
+64824,51640
+64825,52486
+64826,73207
+64827,48084
+64828,72267
+64829,53648
+64830,80753
+64831,52656
+64832,63334
+64833,28616
+64834,64833
+64835,64833
+64836,64831
+64837,55815
+64838,75515
+64839,75472
+64840,46267
+64841,66953
+64842,75465
+64843,19732
+64844,72861
+64845,29653
+64846,52656
+64847,65057
+64848,69554
+64849,39357
+64850,27503
+64851,55356
+64852,65004
+64853,38813
+64854,76135
+64855,60450
+64856,35922
+64857,51990
+64858,67845
+64859,34299
+64860,38813
+64861,70404
+64862,58169
+64863,20112
+64864,24306
+64865,51475
+64866,26827
+64867,74844
+64868,27175
+64869,26900
+64870,61415
+64871,75152
+64872,56832
+64873,61070
+64874,43986
+64875,60050
+64876,58088
+64877,58088
+64878,45813
+64879,45813
+64880,45312
+64881,35156
+64882,46827
+64883,77552
+64884,71786
+64885,20038
+64886,70033
+64887,34826
+64888,61541
+64889,33788
+64890,66324
+64891,42351
+64892,45009
+64893,39767
+64894,32233
+64895,33798
+64896,67957
+64897,79076
+64898,34163
+64899,59475
+64900,56000
+64901,23622
+64902,33877
+64903,34019
+64904,53454
+64905,53628
+64906,54446
+64907,65233
+64908,70167
+64909,37871
+64910,78487
+64911,79259
+64912,22667
+64913,81482
+64914,81552
+64915,81722
+64916,45957
+64917,33772
+64918,79247
+64919,59780
+64920,72224
+64921,37319
+64922,40753
+64923,39049
+64924,69157
+64925,34827
+64926,34826
+64927,37169
+64928,29579
+64929,37166
+64930,81735
+64931,74826
+64932,22230
+64933,24628
+64934,61379
+64935,71505
+64936,32795
+64937,37087
+64938,66149
+64939,65198
+64940,63344
+64941,55348
+64942,37411
+64943,28774
+64944,41103
+64945,66115
+64946,31488
+64947,47388
+64948,66060
+64949,25087
+64950,37905
+64951,34299
+64952,63362
+64953,76657
+64954,78204
+64955,31489
+64956,61789
+64957,74610
+64958,37405
+64959,63663
+64960,31109
+64961,53866
+64962,53869
+64963,30296
+64964,48486
+64965,51706
+64966,68230
+64967,76058
+64968,22185
+64969,81174
+64970,72959
+64971,48629
+64972,51563
+64973,53621
+64974,33909
+64975,81800
+64976,51059
+64977,29805
+64978,50272
+64979,32512
+64980,66953
+64981,75548
+64982,19367
+64983,19398
+64984,58425
+64985,48157
+64986,37478
+64987,64970
+64988,21745
+64989,31775,54810
+64990,29928
+64991,27811
+64992,19555
+64993,28775
+64994,47577
+64995,2440
+64996,30300
+64997,30659
+64998,33885
+64999,22263
+65000,19657
+65001,51836
+65002,44362
+65003,53499
+65004,31021
+65005,65760
+65006,63316
+65007,53866
+65008,76664
+65009,76664
+65010,81665
+65011,54562
+65012,60450
+65013,62453
+65014,60216
+65015,58798
+65016,60448
+65017,19239
+65018,53463
+65019,19239
+65020,49444
+65021,62935
+65022,55756
+65023,67614
+65024,31042
+65025,32790
+65026,31596
+65027,78594
+65028,20111
+65029,20112
+65030,61800
+65031,50438
+65032,34326
+65033,36482
+65034,72664
+65035,21213
+65036,21215
+65037,21295
+65038,41249
+65039,70110
+65040,70111
+65041,40416
+65042,27427
+65043,34833
+65044,21561
+65045,21619
+65046,27419
+65047,65040
+65048,38814
+65049,39111
+65050,64851
+65051,39130
+65052,81375
+65053,54879
+65054,48055
+65055,61375
+65056,76256
+65057,76258
+65058,65198
+65059,22415
+65060,21914
+65061,74490
+65062,65557
+65063,66058
+65064,31353
+65065,66334
+65066,64949
+65067,27967
+65068,75803
+65069,20994
+65070,68128
+65071,26009
+65072,35511
+65073,65681
+65074,65198
+65075,32975
+65076,26531
+65077,63047
+65078,65561
+65079,34074
+65080,61422
+65081,26933
+65082,26974
+65083,26290
+65084,18774
+65085,65975
+65086,53867
+65087,68809
+65088,31042
+65089,27348
+65090,68928
+65091,65224
+65092,65190
+65093,35442
+65094,81413
+65095,19091
+65096,21905
+65097,75823
+65098,41055
+65099,69333
+65100,39813
+65101,72959
+65102,63061
+65103,62145
+65104,59490
+65105,56584
+65106,61260
+65107,40370
+65108,31616
+65109,59377
+65110,26016
+65111,27967
+65112,19129
+65113,44240
+65114,32384
+65115,64287
+65116,66953
+65117,68787
+65118,81174
+65119,73837
+65120,37776
+65121,31137
+65122,37113
+65123,28387
+65124,63072
+65125,47128
+65126,20067
+65127,42429
+65128,33292
+65129,22613
+65130,81807
+65131,32929
+65132,35388
+65133,19126
+65134,69028
+65135,65139
+65136,47015
+65137,23775
+65138,63278
+65139,65691
+65140,48579
+65141,66266
+65142,55348
+65143,48514
+65144,29435
+65145,27135
+65146,72983
+65147,46163
+65148,60074
+65149,71551
+65150,53516
+65151,63655
+65152,59422
+65153,71961
+65154,78799
+65155,45017
+65156,24143
+65157,65224
+65158,65994
+65159,66149
+65160,27991
+65161,21550
+65162,55348
+65163,20163
+65164,33213
+65165,58161
+65166,35340
+65167,32804
+65168,21289
+65169,18919
+65170,21328
+65171,53867
+65172,68835
+65173,55494
+65174,55494
+65175,53865
+65176,28164,58166
+65177,34602
+65178,48439
+65179,63434
+65180,30575
+65181,30575
+65182,19488
+65183,28600
+65184,62495
+65185,59645
+65186,32176
+65187,38191
+65188,31885
+65189,81372
+65190,48478
+65191,65190
+65192,65190
+65193,19867,80173
+65194,54441,68990
+65195,31496
+65196,66298
+65197,48629
+65198,65869
+65199,65086
+65200,57187
+65201,35924
+65202,38563
+65203,22118
+65204,39109
+65205,18969
+65206,28499
+65207,53648
+65208,30937
+65209,49078
+65210,52497
+65211,70813
+65212,49353
+65213,38218
+65214,55768
+65215,53870
+65216,70214
+65217,32792
+65218,73870
+65219,22194
+65220,32374
+65221,66087
+65222,19755
+65223,47717
+65224,19171
+65225,46684
+65226,66953
+65227,56065
+65228,39101
+65229,68990
+65230,19009
+65231,58377
+65232,56579
+65233,37935
+65234,74478
+65235,57573
+65236,69216,65235
+65237,18969
+65238,21703
+65239,59124
+65240,20730
+65241,65497
+65242,31808
+65243,34867
+65244,60216
+65245,37405
+65246,58760
+65247,30508
+65248,62145
+65249,25115
+65250,55686
+65251,65879
+65252,67270
+65253,34327
+65254,67161
+65255,35362
+65256,57347
+65257,35686
+65258,53454
+65259,78966
+65260,24188
+65261,61247
+65262,29237
+65263,79852
+65264,67819
+65265,30514
+65266,78286
+65267,53982
+65268,57254
+65269,67872
+65270,36264
+65271,79661
+65272,70276
+65273,35085
+65274,61714
+65275,28202
+65276,59365
+65277,33928
+65278,29513
+65279,44156
+65280,40608
+65281,45302
+65282,57811
+65283,57280
+65284,11856
+65285,29817
+65286,57280
+65287,19947
+65288,19967
+65289,19979
+65290,70033
+65291,21814
+65292,22935
+65293,79467
+65294,20690
+65295,24816
+65296,25727
+65297,26191
+65298,46610
+65299,45371
+65300,45370
+65301,70249
+65302,67254
+65303,28106
+65304,29677,54562
+65305,29957
+65306,43779
+65307,33419
+65308,33420
+65309,34249
+65310,36618
+65311,72892
+65312,56618
+65313,41773
+65314,40414,19907
+65315,37623
+65316,20826
+65317,45813
+65318,41388
+65319,41388
+65320,72892
+65321,43291
+65322,43562
+65323,43766
+65324,63609
+65325,38477
+65326,38477
+65327,45316
+65328,45316
+65329,45671
+65330,35836
+65331,45885
+65332,49451
+65333,49583
+65334,81482
+65335,35358
+65336,65289
+65337,58616
+65338,77329
+65339,79749
+65340,51467
+65341,81161
+65342,53072
+65343,53250
+65344,53628
+65345,55236
+65346,55570
+65347,57289
+65348,35996
+65349,60358
+65350,60899
+65351,28028
+65352,62060
+65353,64809
+65354,67703
+65355,66851
+65356,67649
+65357,77641
+65358,58965
+65359,63295
+65360,70033
+65361,77641
+65362,61253
+65363,40068
+65364,71147
+65365,71148
+65366,72159
+65367,72559
+65368,77661
+65369,68700
+65370,77829
+65371,78607
+65372,40752
+65373,20745
+65374,81251
+65375,81448
+65376,37191
+65377,81787
+65378,26232
+65379,46760
+65380,78725
+65381,20690
+65382,54429
+65383,62113
+65384,71493
+65385,26118
+65386,58042
+65387,63883
+65388,34220
+65389,55030
+65390,34327
+65391,65878
+65392,63852
+65393,65994
+65394,34633
+65395,34643
+65396,34867
+65397,19382
+65398,40617
+65399,60673
+65400,67651
+65401,66850
+65402,36694
+65403,60216
+65404,81536
+65405,74152
+65406,48640
+65407,35517
+65408,35771
+65409,67381
+65410,41279
+65411,73815
+65412,40068
+65413,40068
+65414,36317
+65415,32176
+65416,67819
+65417,76441
+65418,73478
+65419,45302
+65420,31104
+65421,61007
+65422,52143
+65423,28775
+65424,35130
+65425,38053
+65426,35680
+65427,28792
+65428,28529
+65429,42391
+65430,76146
+65431,20531
+65432,65894
+65433,31336
+65434,65893
+65435,58537
+65436,74891
+65437,81578
+65438,65893
+65439,76441
+65440,81482
+65441,43907
+65442,79515
+65443,26448
+65444,44013
+65445,44013
+65446,53015
+65447,58151
+65448,50190
+65449,68802
+65450,58152
+65451,66507
+65452,73762
+65453,72622
+65454,72685
+65455,33793
+65456,40003
+65457,81213
+65458,72618
+65459,37355
+65460,40964
+65461,19176
+65462,19231
+65463,37938
+65464,48549
+65465,31135
+65466,66262
+65467,38512
+65468,67250
+65469,53593
+65470,35283
+65471,35291
+65472,50638
+65473,57572
+65474,53608
+65475,19200
+65476,53608
+65477,63663
+65478,25302
+65479,44276
+65480,53054
+65481,47947
+65482,79904
+65483,53607
+65484,75902
+65485,75903
+65486,27777
+65487,65182
+65488,41300
+65489,58776
+65490,62688
+65491,53958
+65492,39995
+65493,38618
+65494,47717
+65495,70629
+65496,61247
+65497,63070
+65498,70629
+65499,58401
+65500,48131
+65501,58014
+65502,77448
+65503,60603
+65504,60715
+65505,60604
+65506,76338
+65507,54130
+65508,34924
+65509,64949
+65510,20698
+65511,56492
+65512,27059
+65513,38135
+65514,60237
+65515,79375
+65516,32022
+65517,51988,53476
+65518,23776
+65519,53355
+65520,59549
+65521,31231
+65522,40920
+65523,65159
+65524,27086
+65525,68979
+65526,47716
+65527,55495
+65528,47718
+65529,32177
+65530,21200
+65531,35682
+65532,35922
+65533,58014
+65534,60603
+65535,64846
+65536,34337
+65537,53624
+65538,48697
+65539,20635
+65540,24245
+65541,55734
+65542,50877
+65543,24007
+65544,32506
+65545,24404
+65546,65686
+65547,35557
+65548,74081
+65549,76162
+65550,31873,62722
+65551,31874
+65552,80896
+65553,41556
+65554,31853
+65555,69682
+65556,38732
+65557,59645
+65558,59646
+65559,34538
+65560,54044
+65561,20878
+65562,42389
+65563,19547
+65564,44240
+65565,53757
+65566,67267
+65567,62145
+65568,58162
+65569,66334
+65570,67277
+65571,30694
+65572,62034
+65573,49763
+65574,55662
+65575,61202
+65576,21597
+65577,54439
+65578,47678
+65579,51894
+65580,47908
+65581,51894
+65582,50010
+65583,20577
+65584,20647
+65585,30357
+65586,56871
+65587,41155
+65588,52268
+65589,65201
+65590,76627
+65591,53870
+65592,19810
+65593,65641
+65594,81801
+65595,76940
+65596,25234,65599
+65597,52691
+65598,57223
+65599,68831
+65600,60216
+65601,37712
+65602,18866
+65603,57573
+65604,28358
+65605,71697
+65606,25094
+65607,38012
+65608,40150
+65609,21359
+65610,71446
+65611,65057
+65612,34299
+65613,66297
+65614,73009
+65615,55627
+65616,59137
+65617,38196
+65618,33453
+65619,71493
+65620,40986
+65621,70549
+65622,59586
+65623,65629
+65624,45929
+65625,65629
+65626,65629
+65627,59645
+65628,48976
+65629,61871
+65630,65629
+65631,64142
+65632,74917
+65633,31245
+65634,36065
+65635,58162
+65636,67272
+65637,31742
+65638,31742
+65639,76664
+65640,57573
+65641,31743
+65642,19382
+65643,42429
+65644,51835
+65645,22577
+65646,65086
+65647,79606
+65648,60607
+65649,66149
+65650,63185
+65651,45191
+65652,53452
+65653,38700
+65654,38700
+65655,76664
+65656,46149
+65657,36072
+65658,65655
+65659,30975
+65660,47678
+65661,31740
+65662,73573
+65663,58088
+65664,37625
+65665,76135
+65666,24349
+65667,35922
+65668,51216
+65669,31205
+65670,31340
+65671,73275
+65672,31245
+65673,66149
+65674,48445
+65675,48631
+65676,65836
+65677,62712
+65678,63663
+65679,70526
+65680,58161
+65681,72052
+65682,19171
+65683,45097
+65684,61422
+65685,65906
+65686,66149
+65687,58161
+65688,48084
+65689,31443
+65690,34029
+65691,18840
+65692,56072
+65693,50880
+65694,19353
+65695,37476
+65696,33891
+65697,71323
+65698,72959
+65699,72959
+65700,65691
+65701,58166
+65702,60216
+65703,29664
+65704,34559
+65705,64846
+65706,63278
+65707,53619
+65708,60450
+65709,53339
+65710,64142
+65711,68289
+65712,75902
+65713,36602
+65714,47870
+65715,80497
+65716,38847
+65717,53474
+65718,76648
+65719,19656
+65720,46553
+65721,69701
+65722,75565
+65723,59421
+65724,37405
+65725,64403
+65726,56179
+65727,53958
+65728,34924
+65729,19228
+65730,75917
+65731,65775
+65732,39116
+65733,46553
+65734,27991
+65735,22944
+65736,53965
+65737,31443
+65738,34620
+65739,28356
+65740,21057
+65741,58166
+65742,43107
+65743,33758
+65744,71329
+65745,51174
+65746,30596
+65747,30598
+65748,68522
+65749,19755
+65750,62963
+65751,60216
+65752,61089
+65753,48401
+65754,23790,76136
+65755,48685
+65756,65767
+65757,34955
+65758,65767
+65759,28344
+65760,35922
+65761,39712
+65762,46274
+65763,65767,50701
+65764,55495
+65765,55742
+65766,58196
+65767,60216
+65768,66035
+65769,66554
+65770,68236
+65771,65765,71595
+65772,77391
+65773,31467
+65774,65859
+65775,75917
+65776,31616
+65777,31239
+65778,75436
+65779,51682
+65780,38794
+65781,63187
+65782,37411
+65783,78818
+65784,60604
+65785,64534
+65786,57187
+65787,59307
+65788,57187
+65789,57333
+65790,32793
+65791,66262
+65792,57084
+65793,72983
+65794,53239
+65795,53717
+65796,53868
+65797,54839
+65798,54044
+65799,38794
+65800,53865
+65801,44763
+65802,72689
+65803,65488
+65804,74622
+65805,77034
+65806,59645
+65807,38732
+65808,72248
+65809,25202
+65810,34924
+65811,75911
+65812,67957
+65813,67479
+65814,45124
+65815,35620
+65816,69173
+65817,35735
+65818,71567
+65819,55496
+65820,45829
+65821,59646
+65822,21703
+65823,58776
+65824,32221
+65825,49750,39150
+65826,49750
+65827,79282
+65828,73855
+65829,30073
+65830,36404
+65831,59646
+65832,77045
+65833,53758
+65834,74583
+65835,60074
+65836,60071
+65837,34763
+65838,56181
+65839,65893
+65840,70392
+65841,63414
+65842,58158
+65843,38053,30019
+65844,47716
+65845,47718
+65846,75204
+65847,20836
+65848,75574
+65849,65062
+65850,65594
+65851,30405
+65852,37123
+65853,77399
+65854,51188
+65855,47830
+65856,58583
+65857,48803
+65858,65682
+65859,66047
+65860,58107
+65861,65045
+65862,66329
+65863,58169
+65864,58196
+65865,20763
+65866,31410
+65867,39049
+65868,31245
+65869,47716
+65870,69860
+65871,53884
+65872,30975
+65873,30975
+65874,38810
+65875,81396
+65876,29488
+65877,66264
+65878,59645
+65879,60126
+65880,60216
+65881,37478
+65882,40195
+65883,64403
+65884,31058
+65885,31058
+65886,62409
+65887,31097
+65888,31477
+65889,30391
+65890,34646
+65891,30391
+65892,66377
+65893,31668
+65894,79385
+65895,38637
+65896,74090
+65897,32269
+65898,65893
+65899,65879
+65900,41816
+65901,37042
+65902,31940
+65903,58162
+65904,61422
+65905,65893
+65906,72052
+65907,56832
+65908,48171
+65909,56585
+65910,35926
+65911,48157
+65912,30891
+65913,25123
+65914,31054
+65915,34640
+65916,61154
+65917,26488
+65918,31326
+65919,65224
+65920,38566
+65921,25094
+65922,72983
+65923,72983
+65924,66551
+65925,32793
+65926,31885
+65927,19228
+65928,72959
+65929,31638
+65930,23258
+65931,56362
+65932,73997
+65933,34299
+65934,31742
+65935,19656
+65936,42429
+65937,80174
+65938,65747
+65939,29732
+65940,66185
+65941,69522
+65942,65075
+65943,81807
+65944,65679
+65945,35546
+65946,22194
+65947,34618
+65948,58162
+65949,69439
+65950,31948
+65951,65086
+65952,32269
+65953,28164
+65954,29869
+65955,58144
+65956,61259
+65957,75016
+65958,79432
+65959,39294
+65960,42539
+65961,61792
+65962,19497
+65963,61789
+65964,63663
+65965,63665
+65966,65559
+65967,38869
+65968,65681
+65969,35554
+65970,41103
+65971,72832
+65972,57093
+65973,38390
+65974,46451
+65975,72052
+65976,54044
+65977,69564
+65978,62513
+65979,32506
+65980,36840
+65981,31690
+65982,56275
+65983,34460
+65984,41221
+65985,66266
+65986,27213
+65987,26010
+65988,67275
+65989,19200
+65990,67275
+65991,77034
+65992,69012
+65993,20881
+65994,65224
+65995,38218
+65996,57929
+65997,59379
+65998,60216
+65999,48791
+66000,28234
+66001,30434
+66002,74462
+66003,72714
+66004,68290
+66005,56472
+66006,56482
+66007,57934
+66008,45813
+66009,51388
+66010,46708
+66011,21013
+66012,19737
+66013,62528
+66014,62723
+66015,72983
+66016,19379
+66017,47908
+66018,19004
+66019,78536
+66020,66018
+66021,21905
+66022,21731
+66023,71493
+66024,74479
+66025,75292
+66026,50215
+66027,76251
+66028,34924
+66029,63953
+66030,77521
+66031,51068
+66032,35642
+66033,65029
+66034,70046
+66035,46782
+66036,19305
+66037,36800
+66038,62145
+66039,19171
+66040,48210
+66041,65931
+66042,35787
+66043,59645
+66044,60329
+66045,71446
+66046,53519
+66047,72052
+66048,35926
+66049,34797
+66050,65174
+66051,37328
+66052,58158
+66053,61311
+66054,27282
+66055,53654
+66056,78770
+66057,78818
+66058,44440
+66059,54404
+66060,19200
+66061,64052
+66062,76196
+66063,37450
+66064,21875,23427
+66065,37405
+66066,77374
+66067,60603
+66068,65804
+66069,45199
+66070,34148
+66071,35926
+66072,25808
+66073,34867
+66074,60603
+66075,60603
+66076,58282
+66077,76627
+66078,75018
+66079,28475
+66080,29418
+66081,60411
+66082,58162
+66083,46747
+66084,21475
+66085,46747
+66086,21905
+66087,21904
+66088,48767
+66089,66087
+66090,22152
+66091,34837
+66092,46457
+66093,40986
+66094,54044
+66095,25087
+66096,54061
+66097,25844
+66098,19087
+66099,20039
+66100,28238
+66101,35534
+66102,66101
+66103,48590
+66104,64846
+66105,79757,64831
+66106,59143
+66107,75016
+66108,77275
+66109,48077
+66110,59604
+66111,59605
+66112,64284
+66113,30191
+66114,30891
+66115,31477
+66116,60570
+66117,53021
+66118,78071
+66119,64142
+66120,69131
+66121,47744
+66122,55760
+66123,74488
+66124,47747
+66125,34038
+66126,77636
+66127,33941
+66128,37884
+66129,26298
+66130,53339
+66131,72983
+66132,26298
+66133,28414
+66134,58583
+66135,60216
+66136,47746
+66137,74067
+66138,74067
+66139,37390
+66140,72409
+66141,65869
+66142,19131
+66143,74973
+66144,54837
+66145,48949
+66146,56458
+66147,21745
+66148,54871
+66149,65869
+66150,28774
+66151,60216
+66152,66158
+66153,31742
+66154,34924
+66155,35477
+66156,66153
+66157,66153
+66158,67273
+66159,37850
+66160,41417
+66161,70516
+66162,74037
+66163,54904
+66164,37824
+66165,34363
+66166,69028
+66167,47661
+66168,23764
+66169,66334
+66170,72186
+66171,74594
+66172,66334
+66173,25844
+66174,74620
+66175,69012
+66176,28414,35780
+66177,62820
+66178,53959,35781
+66179,69012
+66180,57330
+66181,34564
+66182,39556
+66183,80046
+66184,75183
+66185,66266
+66186,38561
+66187,19656
+66188,34397
+66189,73918
+66190,34664
+66191,61468
+66192,70033
+66193,62179
+66194,66704
+66195,19132
+66196,47639
+66197,56482
+66198,56491
+66199,56491
+66200,64073
+66201,41248
+66202,56482
+66203,22686
+66204,65295
+66205,75016
+66206,56485
+66207,73401
+66208,53848
+66209,79743
+66210,24261
+66211,60786
+66212,48126
+66213,52842
+66214,39014
+66215,56957
+66216,73018
+66217,75917
+66218,81413
+66219,61236
+66220,79469
+66221,55348
+66222,35456
+66223,74567
+66224,77367
+66225,27424
+66226,21475
+66227,70214
+66228,26290
+66229,81413
+66230,81413
+66231,59333
+66232,59970
+66233,38027
+66234,37131
+66235,77725
+66236,32176
+66237,59858
+66238,31118
+66239,53867
+66240,72426
+66241,39406
+66242,56499
+66243,31039
+66244,19298
+66245,21738
+66246,55348
+66247,20386
+66248,39094
+66249,81578
+66250,66838
+66251,31626
+66252,53934
+66253,53867
+66254,21679
+66255,77482
+66256,18740
+66257,20763
+66258,79717
+66259,81251
+66260,75826
+66261,67311
+66262,55347
+66263,78257
+66264,21631
+66265,47830
+66266,44440
+66267,19310
+66268,49683
+66269,64836
+66270,57573
+66271,59377
+66272,78685
+66273,78881
+66274,63187
+66275,67161
+66276,65754
+66277,22419
+66278,26290
+66279,54005
+66280,48349
+66281,48171
+66282,28128
+66283,60216
+66284,43185
+66285,25234
+66286,35771
+66287,69634
+66288,36841
+66289,43812
+66290,41911
+66291,22152
+66292,19200
+66293,18836
+66294,36425
+66295,50409
+66296,49360
+66297,28539
+66298,34149
+66299,78257
+66300,67311
+66301,57987
+66302,45096
+66303,42387
+66304,70110
+66305,45067
+66306,58295
+66307,34209
+66308,61875
+66309,21078
+66310,28541
+66311,42225
+66312,63065
+66313,76196
+66314,48534
+66315,55828
+66316,28534
+66317,20835
+66318,59376
+66319,23182
+66320,39104
+66321,60131
+66322,63061
+66323,38700
+66324,32974
+66325,18988
+66326,25302
+66327,32965
+66328,72830
+66329,77451
+66330,66358
+66331,2252
+66332,2252
+66333,30896
+66334,47717
+66335,64696
+66336,38515
+66337,18774
+66338,72959
+66339,54774
+66340,28530
+66341,44440
+66342,61793
+66343,23790
+66344,64490
+66345,64831
+66346,61054
+66347,32813
+66348,71315
+66349,36101
+66350,41856
+66351,79190
+66352,20690
+66353,59645
+66354,57556
+66355,24718
+66356,66358
+66357,81789
+66358,37187
+66359,23765
+66360,55905
+66361,67883
+66362,20763
+66363,70651
+66364,49347
+66365,55734
+66366,38091
+66367,64864
+66368,64864
+66369,54082
+66370,60612
+66371,53624
+66372,66065
+66373,52481
+66374,21007
+66375,38883
+66376,51705
+66377,34921
+66378,72983
+66379,35465
+66380,70091
+66381,21104
+66382,48084
+66383,45490
+66384,35534
+66385,21710,22305
+66386,22285
+66387,71996
+66388,53716
+66389,28238
+66390,66801
+66391,32718
+66392,48126
+66393,57523
+66394,68122
+66395,53716
+66396,59549
+66397,66396
+66398,74939
+66399,53701
+66400,38601
+66401,41875,66396
+66402,73147,66396
+66403,57934
+66404,20745
+66405,60706
+66406,41877
+66407,61251
+66408,39777
+66409,23765
+66410,72791
+66411,47203
+66412,63472
+66413,54944
+66414,57934
+66415,51068
+66416,54082
+66417,54562
+66418,70033
+66419,42229
+66420,54562
+66421,59122,45931
+66422,59124
+66423,70568
+66424,66423
+66425,66423
+66426,59124
+66427,56832
+66428,45813
+66429,60733
+66430,51468
+66431,79422
+66432,72877
+66433,81781
+66434,70731
+66435,47442
+66436,55765
+66437,33590
+66438,63386,75748
+66439,62034,24528
+66440,55768
+66441,56165
+66442,71697
+66443,33500
+66444,65793
+66445,73837
+66446,54953
+66447,74488
+66448,25256
+66449,70569
+66450,61474
+66451,66756
+66452,79937
+66453,81396
+66454,66458
+66455,21078
+66456,79234
+66457,41444
+66458,57089
+66459,57333
+66460,73762
+66461,80344
+66462,26301
+66463,19290
+66464,39676
+66465,42244
+66466,77641
+66467,81681
+66468,71398
+66469,79619
+66470,77439
+66471,61874
+66472,27455
+66473,58154
+66474,28323
+66475,43893,72914
+66476,59020
+66477,64812
+66478,80607
+66479,28323
+66480,49897
+66481,59970
+66482,60216
+66483,79086
+66484,69466
+66485,41747
+66486,56480
+66487,19928,77216
+66488,78777
+66489,22406
+66490,38475
+66491,48084
+66492,66491
+66493,54813
+66494,77845
+66495,65174
+66496,28747
+66497,42161
+66498,70173
+66499,63047
+66500,53648
+66501,77585
+66502,77585
+66503,21731
+66504,23536
+66505,31820
+66506,43107
+66507,56164
+66508,63064
+66509,43107
+66510,23536
+66511,51287
+66512,76597
+66513,30511
+66514,35695
+66515,77575
+66516,72421
+66517,25182
+66518,25359
+66519,80789
+66520,75548
+66521,62423
+66522,68236
+66523,68613
+66524,2889
+66525,20973
+66526,58334
+66527,70046
+66528,40195
+66529,26359
+66530,26646
+66531,44245
+66532,64746
+66533,64748
+66534,24327
+66535,53210
+66536,71493
+66537,11889
+66538,57901
+66539,32662
+66540,79076
+66541,42389
+66542,41250
+66543,59475
+66544,32691
+66545,67574
+66546,57635
+66547,67425
+66548,42389
+66549,48534
+66550,62144
+66551,18839
+66552,78238
+66553,44988
+66554,39112
+66555,49498
+66556,21922
+66557,61089
+66558,45024
+66559,60216
+66560,20698
+66561,20723
+66562,22093
+66563,32132
+66564,62142
+66565,77277
+66566,58395
+66567,42306
+66568,45733
+66569,66551
+66570,50885
+66571,50885
+66572,50885
+66573,50885
+66574,50885
+66575,66551
+66576,36996
+66577,66551
+66578,59420
+66579,29548
+66580,29548
+66581,29548
+66582,46894
+66583,46894
+66584,46894
+66585,29548
+66586,46894
+66587,41450
+66588,77740
+66589,79355
+66590,22776
+66591,55210
+66592,40538
+66593,61789
+66594,31489
+66595,55210
+66596,57556
+66597,48037
+66598,56941
+66599,63060
+66600,60598
+66601,73246
+66602,32298
+66603,35557
+66604,28546
+66605,25496,67131
+66606,46507
+66607,46507
+66608,24726
+66609,58200
+66610,66609
+66611,66609
+66612,31417
+66613,53454
+66614,20745
+66615,71687
+66616,61355
+66617,49222
+66618,77077
+66619,71686
+66620,42094
+66621,59110
+66622,60400
+66623,31621
+66624,40089
+66625,43313
+66626,76441
+66627,26136
+66628,63543
+66629,48288
+66630,78288
+66631,47682
+66632,76429
+66633,36155
+66634,10299
+66635,37317
+66636,23994
+66637,48393
+66638,66617
+66639,26669
+66640,53384
+66641,30514
+66642,44696
+66643,68697
+66644,43638
+66645,69102
+66646,26298
+66647,44802
+66648,44801
+66649,80197
+66650,65816
+66651,79639
+66652,65075
+66653,31742
+66654,40195
+66655,77976
+66656,35625
+66657,57901
+66658,78209
+66659,41181
+66660,31991
+66661,31991
+66662,53528
+66663,58162
+66664,32392
+66665,55668
+66666,51120
+66667,29040
+66668,58282
+66669,80438
+66670,66507
+66671,45051
+66672,33425
+66673,37652
+66674,55347
+66675,47869
+66676,28536
+66677,60216
+66678,73830
+66679,60993
+66680,43740
+66681,77967
+66682,79363
+66683,63026
+66684,63026
+66685,21384
+66686,33812
+66687,67513
+66688,35557
+66689,35557
+66690,65759
+66691,66695
+66692,63415
+66693,62456
+66694,44740
+66695,33486
+66696,33799
+66697,71307
+66698,62456
+66699,19497
+66700,71306
+66701,58308
+66702,31647
+66703,73636
+66704,43104
+66705,25046
+66706,25486
+66707,36029
+66708,42327
+66709,58356
+66710,62510
+66711,38477
+66712,69460
+66713,22948
+66714,23644
+66715,60870
+66716,51469
+66717,70629
+66718,52497
+66719,73636
+66720,49767
+66721,12380
+66722,44816
+66723,26648
+66724,33644
+66725,60886
+66726,53613
+66727,80483
+66728,26295
+66729,31563
+66730,42142
+66731,36542
+66732,53067
+66733,61202,44558
+66734,66785
+66735,79639
+66736,30824
+66737,69978
+66738,59610
+66739,77726
+66740,50339
+66741,23641
+66742,23182
+66743,44566
+66744,46698
+66745,25098
+66746,81643
+66747,33271
+66748,20593
+66749,27405
+66750,66727
+66751,81715
+66752,50784
+66753,46599
+66754,33184
+66755,30891
+66756,33500
+66757,32966
+66758,31846
+66759,28890
+66760,58917
+66761,31858
+66762,60032
+66763,76229
+66764,35359
+66765,41657
+66766,50424
+66767,31831
+66768,74614
+66769,42225
+66770,76441
+66771,76441
+66772,40578
+66773,64344
+66774,71786
+66775,54274
+66776,21751
+66777,38218
+66778,30230
+66779,28600
+66780,73669
+66781,55952
+66782,51216
+66783,43744
+66784,52380
+66785,53454
+66786,56176
+66787,62034
+66788,74343
+66789,26673
+66790,36491
+66791,25454
+66792,39676
+66793,26884
+66794,27167
+66795,27167
+66796,29781
+66797,72421,29779
+66798,31168
+66799,32642
+66800,32888
+66801,64231
+66802,60771
+66803,37582
+66804,42181
+66805,20262
+66806,33790
+66807,44651
+66808,46081
+66809,59891
+66810,47290
+66811,57909
+66812,81161
+66813,40446
+66814,61246
+66815,61901
+66816,45813
+66817,64073
+66818,64873
+66819,40292
+66820,67826
+66821,68551
+66822,72186
+66823,44407
+66824,66834,70426
+66825,80061
+66826,81743
+66827,11889
+66828,62034
+66829,22128
+66830,19412
+66831,47344
+66832,74488
+66833,77980
+66834,55768
+66835,51120
+66836,82066
+66837,79274
+66838,49207
+66839,45813
+66840,79749
+66841,23221
+66842,37908
+66843,50574
+66844,28621,63304
+66845,40752
+66846,64952
+66847,40236
+66848,76256
+66849,37913
+66850,67703
+66851,68363
+66852,78635
+66853,28438
+66854,45641
+66855,70033
+66856,50353
+66857,26120
+66858,21771
+66859,47655
+66860,22640
+66861,79737
+66862,61159
+66863,59849
+66864,38715
+66865,37247
+66866,71957
+66867,37247
+66868,68622
+66869,34249
+66870,66869
+66871,64534
+66872,28780
+66873,64542
+66874,64544,34987
+66875,4298
+66876,48814
+66877,79596
+66878,30391
+66879,37532
+66880,72960
+66881,66282
+66882,19228
+66883,19176
+66884,40003
+66885,33615
+66886,42003
+66887,40625
+66888,63363
+66889,51677
+66890,35652
+66891,41341
+66892,31825
+66893,79009
+66894,40003
+66895,76811
+66896,34209
+66897,57553
+66898,24373
+66899,80753
+66900,33615
+66901,31960
+66902,44420
+66903,80438
+66904,36053
+66905,70561
+66906,22907
+66907,81239
+66908,78210
+66909,37541,66500
+66910,70556
+66911,70562
+66912,77180
+66913,66905
+66914,66911
+66915,66766
+66916,46178
+66917,73093
+66918,49897
+66919,80761
+66920,60691,46598
+66921,28529
+66922,63677
+66923,63340
+66924,57106
+66925,57106
+66926,57106
+66927,47394
+66928,47393
+66929,64142
+66930,21765
+66931,60216
+66932,42225
+66933,61621
+66934,66933
+66935,29643
+66936,68429
+66937,32580
+66938,63424
+66939,63424
+66940,42181
+66941,79436
+66942,32691
+66943,53453
+66944,77287
+66945,26302
+66946,59020,66945
+66947,77014
+66948,70033
+66949,32233
+66950,25861
+66951,57982
+66952,42351
+66953,21474
+66954,62147
+66955,34787
+66956,51316
+66957,64833
+66958,75741
+66959,30954
+66960,31618
+66961,41607
+66962,69681
+66963,60023
+66964,57187
+66965,61259
+66966,73837
+66967,41228
+66968,71408
+66969,47321
+66970,59423
+66971,61259
+66972,38614,73470
+66973,29780
+66974,33005
+66975,61259
+66976,61251
+66977,79259
+66978,73002
+66979,75019
+66980,44474
+66981,65509
+66982,66965
+66983,31241
+66984,73324
+66985,51475
+66986,25600
+66987,25920
+66988,18769
+66989,50173
+66990,70609
+66991,73560
+66992,32691
+66993,34206
+66994,32610
+66995,81647
+66996,19511
+66997,50104
+66998,27625
+66999,22776
+67000,23521
+67001,70033
+67002,60935
+67003,72928
+67004,68867
+67005,37179
+67006,41743
+67007,40767
+67008,68122
+67009,53828
+67010,77641
+67011,42181
+67012,43136
+67013,43418
+67014,40690
+67015,46289
+67016,45946
+67017,62135
+67018,33134
+67019,45946
+67020,64231
+67021,60078
+67022,81227
+67023,72402
+67024,66418
+67025,26240
+67026,43313
+67027,40772
+67028,58088
+67029,66851
+67030,45946
+67031,34199
+67032,45812
+67033,45813
+67034,50717
+67035,19421
+67036,81482
+67037,77641
+67038,35096
+67039,35097
+67040,71173
+67041,22684,23240
+67042,30961
+67043,28220
+67044,25013
+67045,66889
+67046,19241
+67047,48579
+67048,62743
+67049,53660
+67050,66859
+67051,77448
+67052,69199
+67053,78257
+67054,55348
+67055,76657
+67056,57286
+67057,73837
+67058,65865
+67059,53862
+67060,48319
+67061,19936
+67062,48787
+67063,58462
+67064,66132
+67065,80618
+67066,60544
+67067,60546
+67068,23021
+67069,67049
+67070,21547
+67071,19849
+67072,22453
+67073,25407
+67074,51428
+67075,78755
+67076,26298
+67077,66953
+67078,52777
+67079,27506
+67080,70515
+67081,21959
+67082,45302
+67083,12655
+67084,43672
+67085,67899
+67086,55499
+67087,40293
+67088,44203
+67089,41022
+67090,61302
+67091,54871
+67092,48491
+67093,76066
+67094,46639
+67095,73287
+67096,35557
+67097,78179
+67098,66885
+67099,66885
+67100,42102
+67101,33455
+67102,80753
+67103,22786
+67104,42097
+67105,59543
+67106,33512
+67107,21239
+67108,26977
+67109,44747
+67110,45689
+67111,59373
+67112,20385
+67113,40514
+67114,20079
+67115,65663
+67116,66862
+67117,59582
+67118,37318
+67119,76518
+67120,21412
+67121,25256
+67122,40965
+67123,22853
+67124,39961
+67125,52068
+67126,51300
+67127,43686
+67128,77171
+67129,51069
+67130,68038
+67131,69543
+67132,23712
+67133,31308
+67134,77857
+67135,80977
+67136,31821
+67137,66933
+67138,21568
+67139,28619
+67140,71595
+67141,76981
+67142,23232
+67143,60216
+67144,81647
+67145,46491
+67146,54705
+67147,57194
+67148,69544
+67149,76936
+67150,81643
+67151,74281
+67152,64730
+67153,61763
+67154,34272
+67155,53109
+67156,70629
+67157,34924
+67158,62439
+67159,61209
+67160,63060
+67161,71439
+67162,31200
+67163,23748
+67164,2368
+67165,73760
+67166,21622
+67167,51469
+67168,69199
+67169,46782
+67170,32508
+67171,55395
+67172,41729
+67173,35625
+67174,80753
+67175,72421
+67176,35279
+67177,29969
+67178,21412
+67179,67565
+67180,72724
+67181,19629
+67182,25616
+67183,27832
+67184,28656
+67185,40774
+67186,61713
+67187,68793
+67188,77042
+67189,58888
+67190,20690
+67191,66726
+67192,75814
+67193,22103
+67194,59645
+67195,46780
+67196,31606
+67197,71686
+67198,66323
+67199,75755
+67200,31646
+67201,50541
+67202,75005
+67203,22901,37325
+67204,25013
+67205,25359
+67206,26359
+67207,19342
+67208,38231
+67209,22274
+67210,72029
+67211,65925
+67212,52157
+67213,80227
+67214,53355
+67215,53717
+67216,1914
+67217,58955
+67218,72228
+67219,54082
+67220,33907
+67221,16463
+67222,14649
+67223,35388
+67224,67272
+67225,45406,76778
+67226,27992
+67227,77509,32229
+67228,49217
+67229,49844
+67230,81482
+67231,55625
+67232,68859
+67233,36674
+67234,33644
+67235,19849
+67236,73117
+67237,24630
+67238,49059
+67239,62187
+67240,31029
+67241,48894
+67242,36694
+67243,78274
+67244,25115
+67245,41867
+67246,45812
+67247,73650
+67248,45813
+67249,40752
+67250,67819
+67251,78236
+67252,44456
+67253,54704
+67254,40704,41914
+67255,53959
+67256,40945
+67257,41047
+67258,22786
+67259,61266
+67260,47989
+67261,63416
+67262,78635
+67263,59497
+67264,26298
+67265,34897
+67266,34826
+67267,36800
+67268,35388
+67269,35388
+67270,63060
+67271,31158
+67272,35388
+67273,31158
+67274,53625
+67275,67272
+67276,58099
+67277,60216
+67278,62145
+67279,78854
+67280,51665
+67281,70862
+67282,33793
+67283,40965
+67284,22853
+67285,68692
+67286,39928
+67287,56832
+67288,68692
+67289,73401
+67290,38529
+67291,28872
+67292,79888
+67293,30000
+67294,67614
+67295,43364
+67296,27506
+67297,43789
+67298,33512
+67299,66756
+67300,23712
+67301,65226
+67302,71099
+67303,76664
+67304,51182
+67305,47908
+67306,69199
+67307,77857
+67308,77857
+67309,33756
+67310,51928
+67311,41054
+67312,68355
+67313,69153
+67314,65654
+67315,61655
+67316,67303
+67317,21314
+67318,67312
+67319,79552
+67320,72399
+67321,50717
+67322,33075
+67323,28591
+67324,33075
+67325,22032
+67326,77585
+67327,54047
+67328,67254
+67329,34924
+67330,49059
+67331,66702
+67332,57926
+67333,19374
+67334,19171
+67335,22540
+67336,41061
+67337,45406
+67338,27090
+67339,44396
+67340,69818
+67341,69408
+67342,72444
+67343,76664
+67344,67337
+67345,37355
+67346,70990
+67347,47868
+67348,29332
+67349,61355
+67350,59610
+67351,66814
+67352,8216
+67353,48251
+67354,25803
+67355,69174
+67356,44418
+67357,52693
+67358,47423
+67359,19497
+67360,28600,77374
+67361,52959
+67362,53275
+67363,58379
+67364,67311
+67365,40747
+67366,21959
+67367,44013
+67368,46767
+67369,45641
+67370,22799
+67371,54356
+67372,60216
+67373,27153
+67374,46367
+67375,39685
+67376,61251
+67377,41877
+67378,32201,58611
+67379,21034
+67380,54789
+67381,30865
+67382,31245
+67383,31563
+67384,66217
+67385,74624
+67386,22944
+67387,22429
+67388,31245
+67389,22430
+67390,56832
+67391,76229
+67392,50424
+67393,11856
+67394,81541
+67395,44347
+67396,67160
+67397,78258
+67398,78262
+67399,54082
+67400,64534
+67401,28780
+67402,54562
+67403,69490
+67404,80448
+67405,43892
+67406,28323
+67407,80821
+67408,25770
+67409,38252
+67410,44013
+67411,21886
+67412,53275
+67413,50802
+67414,67413
+67415,39647
+67416,24084
+67417,54404
+67418,62432
+67419,70033
+67420,81482
+67421,18828
+67422,41899
+67423,68128
+67424,53286
+67425,26166
+67426,20905
+67427,41901
+67428,69818
+67429,34827
+67430,34822
+67431,8380
+67432,28091
+67433,41877
+67434,39015
+67435,27488
+67436,74795
+67437,74800
+67438,67432
+67439,23790
+67440,61796
+67441,8170
+67442,22684
+67443,80962
+67444,61541
+67445,22684
+67446,31618
+67447,49079
+67448,30062
+67449,64403
+67450,77932
+67451,42225
+67452,39049
+67453,35663
+67454,39049
+67455,72212
+67456,56451
+67457,79282
+67458,79429
+67459,65759
+67460,47673
+67461,47311
+67462,81789
+67463,46276
+67464,52144
+67465,60251
+67466,63972
+67467,49769
+67468,67466
+67469,65767
+67470,63137
+67471,25256
+67472,33500
+67473,60746
+67474,68692
+67475,25115
+67476,72701
+67477,72205
+67478,44761
+67479,46599
+67480,33513
+67481,58608
+67482,58647
+67483,68692
+67484,71269
+67485,42028
+67486,20745
+67487,69408
+67488,59413
+67489,22684
+67490,73477
+67491,52773
+67492,81656
+67493,51068
+67494,7653
+67495,69450
+67496,60273
+67497,78655
+67498,39578
+67499,67495,53325
+67500,60273
+67501,59238
+67502,33361
+67503,73814
+67504,59415
+67505,73814
+67506,69566
+67507,46782,65555
+67508,60385
+67509,69439
+67510,76229
+67511,65555
+67512,28600
+67513,31245
+67514,68355
+67515,21475
+67516,21412,73670
+67517,23855,66154
+67518,24046
+67519,52957
+67520,25196
+67521,44520
+67522,76106
+67523,64846
+67524,39528
+67525,41930
+67526,43362
+67527,57611
+67528,53425
+67529,44509
+67530,56472
+67531,60870
+67532,64628
+67533,64927
+67534,72663
+67535,79097,65641
+67536,45813
+67537,57594
+67538,79261
+67539,68869
+67540,40564
+67541,32993
+67542,36872
+67543,34661
+67544,19467
+67545,81373
+67546,53936
+67547,45812
+67548,45813
+67549,44160
+67550,44456
+67551,74067
+67552,81161
+67553,72250
+67554,53164
+67555,21652
+67556,74640
+67557,70392
+67558,72913
+67559,58888
+67560,33581
+67561,26827
+67562,5765
+67563,20905
+67564,73838
+67565,60744
+67566,67574
+67567,39049
+67568,67703
+67569,68330
+67570,80370
+67571,34613
+67572,25049
+67573,57570
+67574,79471
+67575,52910
+67576,52773
+67577,70629
+67578,44491
+67579,27276
+67580,37956
+67581,45813
+67582,34389
+67583,43744
+67584,33928
+67585,44437
+67586,62145
+67587,43724
+67588,63918
+67589,23899
+67590,19936
+67591,11862
+67592,25526
+67593,64142
+67594,35557
+67595,23019
+67596,25546
+67597,67601
+67598,45813
+67599,36452
+67600,41214
+67601,44232
+67602,67594
+67603,79261
+67604,61336
+67605,47786
+67606,70033
+67607,55952
+67608,20422
+67609,67972
+67610,60830,81703
+67611,53962
+67612,69012
+67613,69012
+67614,57439
+67615,19737
+67616,31690
+67617,19485
+67618,26586
+67619,40055
+67620,25289
+67621,63259
+67622,66058
+67623,72714
+67624,63259
+67625,38639
+67626,67630
+67627,67630
+67628,67630
+67629,70627
+67630,37712
+67631,67675,56950
+67632,61703
+67633,47107
+67634,63248
+67635,63213
+67636,20698
+67637,49010
+67638,47090
+67639,68793
+67640,36710
+67641,38740
+67642,68794
+67643,45679
+67644,81176
+67645,31029
+67646,79363
+67647,67594
+67648,64609
+67649,40292
+67650,29237
+67651,67658,41014
+67652,40310
+67653,20755
+67654,64809
+67655,64809
+67656,37973
+67657,41017
+67658,71398
+67659,67631
+67660,42040
+67661,51805
+67662,69860
+67663,58583
+67664,78191
+67665,45813
+67666,18728
+67667,48126
+67668,78095
+67669,31239
+67670,66977
+67671,66965
+67672,45813
+67673,79608
+67674,79608
+67675,31058
+67676,75436
+67677,40564
+67678,25770
+67679,30182
+67680,34631
+67681,40516
+67682,68857
+67683,53256
+67684,68669
+67685,54553
+67686,62062
+67687,31998
+67688,67362
+67689,70033
+67690,56179
+67691,55828
+67692,46782
+67693,70033
+67694,31616
+67695,62728
+67696,53959
+67697,32672
+67698,63314
+67699,38883
+67700,68685
+67701,23284
+67702,69503
+67703,68622
+67704,61247
+67705,70033
+67706,70033
+67707,45462
+67708,57896
+67709,68230
+67710,58069
+67711,44240
+67712,44240
+67713,65170
+67714,63316,30697
+67715,65994
+67716,65994
+67717,65998
+67718,67513
+67719,53613
+67720,65994
+67721,65415
+67722,77600
+67723,44923
+67724,58379
+67725,28739
+67726,77985
+67727,19052
+67728,54082
+67729,54562
+67730,33793
+67731,22853
+67732,27131
+67733,34249
+67734,51640
+67735,32490
+67736,51068
+67737,64142
+67738,73752
+67739,39049
+67740,62950
+67741,78269
+67742,78943
+67743,70623
+67744,56176
+67745,38606
+67746,35773
+67747,21946
+67748,37635
+67749,53621
+67750,29120
+67751,41562
+67752,64831
+67753,57393
+67754,33584
+67755,80184
+67756,56802
+67757,46680
+67758,65759
+67759,47229
+67760,22274
+67761,71310
+67762,21328
+67763,61136
+67764,66226
+67765,71446
+67766,24565
+67767,81153
+67768,70033
+67769,20745
+67770,52028
+67771,40734
+67772,50856
+67773,45813
+67774,68614
+67775,36592
+67776,43523
+67777,72248
+67778,20079
+67779,50135
+67780,70033
+67781,58803
+67782,66862
+67783,43138
+67784,67551
+67785,68854
+67786,30514
+67787,71500
+67788,80583
+67789,60032
+67790,69564
+67791,81161
+67792,80575
+67793,69818
+67794,81482
+67795,77641
+67796,81482
+67797,33638
+67798,56180
+67799,22684
+67800,34118
+67801,22949
+67802,23015
+67803,65977
+67804,44670
+67805,45009
+67806,54947
+67807,61415
+67808,59769
+67809,44013
+67810,67819
+67811,60032
+67812,35534
+67813,76680
+67814,30518
+67815,21738
+67816,30043
+67817,79024
+67818,37557
+67819,69887
+67820,61063
+67821,21487
+67822,71108
+67823,70229
+67824,35557
+67825,37712
+67826,40752
+67827,40752
+67828,40752
+67829,19629
+67830,44609
+67831,36496
+67832,76160
+67833,70763
+67834,65262
+67835,58018
+67836,45813
+67837,67839
+67838,30187
+67839,31245
+67840,50312
+67841,58734
+67842,67837
+67843,29691
+67844,51885
+67845,53918
+67846,724
+67847,23751,7653
+67848,41000
+67849,19634
+67850,9469
+67851,71557
+67852,56440
+67853,79282
+67854,40566
+67855,67462
+67856,77641
+67857,37179
+67858,41743
+67859,28792
+67860,43473
+67861,37179
+67862,21595
+67863,77509,32229
+67864,49217
+67865,54562
+67866,69179
+67867,58166
+67868,36976
+67869,70947
+67870,58166
+67871,16342
+67872,81536
+67873,81482
+67874,63415
+67875,33793
+67876,33799
+67877,76201
+67878,81396
+67879,70274
+67880,63472
+67881,59549
+67882,53848
+67883,27136
+67884,68903
+67885,30257
+67886,33678
+67887,20355
+67888,54797
+67889,72416
+67890,28449
+67891,29986,41014
+67892,67703
+67893,20755
+67894,57840
+67895,72248
+67896,36434
+67897,58181
+67898,70675
+67899,79608
+67900,71408
+67901,66965
+67902,70568
+67903,41444
+67904,31991
+67905,51901
+67906,32452
+67907,81227
+67908,32457
+67909,35557
+67910,23946
+67911,65685
+67912,20905
+67913,40564
+67914,50585
+67915,57594
+67916,16726
+67917,71319
+67918,22699
+67919,39049
+67920,28146
+67921,38218
+67922,40986
+67923,65099
+67924,75701
+67925,77500
+67926,44040
+67927,39049
+67928,25540
+67929,69408
+67930,80538
+67931,39049
+67932,20690
+67933,81482
+67934,20691
+67935,77641
+67936,46935
+67937,59645
+67938,31643
+67939,28529
+67940,64142
+67941,19656
+67942,37934
+67943,43820
+67944,52938
+67945,52939
+67946,39469
+67947,31245
+67948,39998
+67949,30480
+67950,67947
+67951,55314
+67952,6952
+67953,60273
+67954,58088
+67955,61381
+67956,69444
+67957,31239
+67958,36452
+67959,58917
+67960,62266
+67961,40554
+67962,52658
+67963,35557
+67964,35557
+67965,73057
+67966,42003
+67967,59775
+67968,35048
+67969,35309
+67970,67969
+67971,75665
+67972,53628
+67973,51903
+67974,33698
+67975,53628
+67976,61127
+67977,59497
+67978,35557
+67979,62902
+67980,39682
+67981,44032
+67982,26884
+67983,62794
+67984,65108
+67985,67565
+67986,56472
+67987,62072
+67988,58582
+67989,28600
+67990,41856
+67991,22955
+67992,78059
+67993,76390
+67994,76390
+67995,31616
+67996,43813
+67997,23891
+67998,75118
+67999,45813
+68000,45813
+68001,45812
+68002,33725
+68003,45371
+68004,45370
+68005,45009
+68006,51959
+68007,39318
+68008,76981
+68009,81482
+68010,36007
+68011,23190
+68012,69953
+68013,64921
+68014,47127
+68015,41444
+68016,60830,18834
+68017,62432
+68018,61063
+68019,69263
+68020,45813
+68021,50117
+68022,52027
+68023,70434
+68024,25729
+68025,45813
+68026,56542
+68027,55768
+68028,57982
+68029,19569
+68030,72051
+68031,71521
+68032,81626
+68033,69599
+68034,60284
+68035,48077
+68036,40752
+68037,50297
+68038,27440
+68039,61355
+68040,21618
+68041,75018
+68042,64154
+68043,38392
+68044,68072
+68045,79165
+68046,39821
+68047,34995
+68048,65004
+68049,22665
+68050,26496
+68051,26497
+68052,54446
+68053,63334
+68054,52656
+68055,47948
+68056,32580
+68057,55760
+68058,50717
+68059,72839
+68060,24393
+68061,53624
+68062,55618
+68063,39676
+68064,30103
+68065,79085
+68066,80460
+68067,77740
+68068,70568
+68069,74973
+68070,63768
+68071,67093
+68072,53621
+68073,29779
+68074,58106
+68075,50173
+68076,33455
+68077,69677
+68078,24442
+68079,69662
+68080,35557
+68081,70646
+68082,44816
+68083,74568
+68084,72046
+68085,41877
+68086,74824
+68087,56180
+68088,31838
+68089,55236
+68090,45254
+68091,35557
+68092,38601
+68093,60715
+68094,43789
+68095,77972
+68096,31245
+68097,48442
+68098,43790
+68099,43792
+68100,69524
+68101,54082
+68102,66327
+68103,35559
+68104,37478,33882
+68105,34849
+68106,60541
+68107,65950
+68108,54132
+68109,78866
+68110,72791
+68111,79546
+68112,65943
+68113,34350,24354
+68114,27649
+68115,54978
+68116,25256
+68117,39513
+68118,42225
+68119,74939
+68120,31447
+68121,36777
+68122,50256
+68123,48432
+68124,39502
+68125,64371
+68126,37232
+68127,19912
+68128,42225
+68129,49298
+68130,65262
+68131,81161
+68132,44959
+68133,29731
+68134,31615
+68135,41646
+68136,45316
+68137,37623
+68138,52410
+68139,40752
+68140,57289
+68141,60867
+68142,72575
+68143,31973
+68144,61735
+68145,44171
+68146,75264
+68147,77641
+68148,70427,49158
+68149,57380
+68150,28776
+68151,37042
+68152,72506
+68153,35772
+68154,60869
+68155,67254
+68156,70399
+68157,56179
+68158,69989
+68159,70987
+68160,36694
+68161,44053
+68162,28775
+68163,20743
+68164,69355
+68165,68475
+68166,62648
+68167,81781
+68168,21475
+68169,47797
+68170,36377
+68171,60534
+68172,44000
+68173,19231
+68174,58797
+68175,79541
+68176,72743
+68177,72747
+68178,58798
+68179,64635
+68180,71023
+68181,39676
+68182,45813
+68183,65657
+68184,72715
+68185,51677
+68186,48064
+68187,40150
+68188,27564
+68189,45165
+68190,61239
+68191,54562
+68192,65929
+68193,34997
+68194,65428
+68195,65927
+68196,61203
+68197,61238
+68198,31369
+68199,55491
+68200,1544
+68201,80248
+68202,67355
+68203,35879
+68204,54091
+68205,40807
+68206,34701
+68207,48111,48077
+68208,41729
+68209,40347
+68210,40752
+68211,63598
+68212,63605
+68213,53916
+68214,60243
+68215,70399
+68216,49343
+68217,70399
+68218,78647
+68219,53958
+68220,53959
+68221,53542
+68222,23374
+68223,49191
+68224,51665
+68225,75942
+68226,35557
+68227,70399
+68228,55157
+68229,73863
+68230,48474
+68231,19757,63013
+68232,77317
+68233,68230
+68234,53143
+68235,37201
+68236,37201
+68237,25094
+68238,26298
+68239,37197
+68240,76664
+68241,20751
+68242,21912
+68243,23796
+68244,25016
+68245,26532
+68246,59776
+68247,33928
+68248,19379
+68249,56601
+68250,71319
+68251,69744
+68252,58544
+68253,38375
+68254,75901
+68255,81905
+68256,22684
+68257,52811,68258
+68258,82057
+68259,76662
+68260,41607
+68261,39612
+68262,77367
+68263,75552
+68264,68268
+68265,37204
+68266,71148
+68267,19121
+68268,75548
+68269,81871
+68270,43364
+68271,67574
+68272,77169
+68273,40967
+68274,67122
+68275,40292
+68276,79924
+68277,60032
+68278,56440
+68279,56494
+68280,35480
+68281,39345
+68282,55718
+68283,75548
+68284,57388
+68285,48408
+68286,50010
+68287,54156
+68288,65999
+68289,76146
+68290,60216
+68291,51395
+68292,28077
+68293,59338
+68294,68374
+68295,51319
+68296,25953
+68297,40783
+68298,32390
+68299,74392
+68300,34723
+68301,81770
+68302,33503
+68303,44697
+68304,37169,31064
+68305,81752
+68306,74818
+68307,11858
+68308,43698
+68309,19925
+68310,79282
+68311,37162
+68312,63423
+68313,48126
+68314,22305
+68315,53624
+68316,70397
+68317,59549
+68318,41877
+68319,55865
+68320,61251
+68321,47805
+68322,78755
+68323,37041
+68324,32929
+68325,21412
+68326,78755
+68327,71595
+68328,72210
+68329,39676
+68330,60032
+68331,69682,69681
+68332,36989,41284
+68333,51316
+68334,25645
+68335,64293
+68336,50180
+68337,31137
+68338,69970
+68339,31618
+68340,23313
+68341,80761
+68342,38910
+68343,20038
+68344,58579
+68345,61251
+68346,72764
+68347,26496
+68348,69566
+68349,46740
+68350,46171
+68351,34085
+68352,57187
+68353,69331
+68354,39111
+68355,74132
+68356,65050
+68357,69642
+68358,47804
+68359,25017,70229
+68360,57572
+68361,61395
+68362,52316
+68363,68364
+68364,72248
+68365,33626
+68366,21373
+68367,53669
+68368,71113
+68369,68363
+68370,40752
+68371,67670
+68372,47898
+68373,68565
+68374,79743
+68375,77045
+68376,29688
+68377,77585
+68378,80789
+68379,68652
+68380,29693
+68381,46662
+68382,20745
+68383,38807
+68384,65234
+68385,65190
+68386,38784
+68387,50701
+68388,25046
+68389,23082
+68390,33514
+68391,33516
+68392,73841
+68393,35557
+68394,55497
+68395,37479
+68396,60739
+68397,48875,68398
+68398,67213
+68399,19926
+68400,25526
+68401,56832
+68402,45009
+68403,60810
+68404,20745
+68405,41417
+68406,30558
+68407,35557,51833
+68408,66702
+68409,45028
+68410,24704
+68411,57074
+68412,64403
+68413,70656
+68414,81643
+68415,60216
+68416,34924
+68417,53866
+68418,81780
+68419,48106
+68420,33186
+68421,45408
+68422,80395
+68423,56832
+68424,58579
+68425,58579
+68426,45102
+68427,81789
+68428,73762
+68429,59355
+68430,63424
+68431,35668
+68432,32578
+68433,74537
+68434,19231
+68435,36101
+68436,41000
+68437,53865
+68438,41299
+68439,34771
+68440,22206
+68441,44514
+68442,39049
+68443,76009
+68444,35664
+68445,68475
+68446,68478
+68447,47819
+68448,39423
+68449,63306
+68450,50179
+68451,61614
+68452,54034
+68453,81539
+68454,81746
+68455,66447
+68456,70033
+68457,19364
+68458,61078
+68459,61089
+68460,30153
+68461,45009
+68462,77012
+68463,54737
+68464,36404
+68465,45064
+68466,49341
+68467,22433
+68468,39049
+68469,38700
+68470,51467
+68471,70717
+68472,27756
+68473,68831
+68474,58262
+68475,36377
+68476,66953
+68477,67462
+68478,81781
+68479,30183
+68480,78106
+68481,53064
+68482,79282
+68483,62361
+68484,79270
+68485,29691
+68486,77641
+68487,26166
+68488,57223
+68489,57289
+68490,60899
+68491,61209
+68492,81626
+68493,63872
+68494,59441
+68495,32455
+68496,23764
+68497,29344
+68498,56832
+68499,21192
+68500,62934
+68501,21087
+68502,46417
+68503,38603
+68504,38603
+68505,52084
+68506,35826
+68507,70652
+68508,72064
+68509,67196
+68510,67793
+68511,46223
+68512,57296
+68513,57296
+68514,69665
+68515,57298
+68516,66953
+68517,67175
+68518,69274
+68519,68364
+68520,21765
+68521,68520
+68522,61312,71522
+68523,21669,40080
+68524,40001
+68525,21276
+68526,35611
+68527,67703
+68528,62060
+68529,62060
+68530,36363
+68531,55680
+68532,24393
+68533,18854
+68534,22406
+68535,32888
+68536,75152
+68537,49263
+68538,63423
+68539,31616
+68540,30216
+68541,33353
+68542,37169
+68543,78211
+68544,25113
+68545,21914
+68546,22054
+68547,45813
+68548,66154
+68549,20935
+68550,21959
+68551,69258,41014
+68552,67703
+68553,23393
+68554,25046
+68555,60032
+68556,25862
+68557,28000
+68558,77452
+68559,28849
+68560,60032
+68561,24441
+68562,21360
+68563,37079
+68564,32025
+68565,36694
+68566,36932
+68567,43779
+68568,43779
+68569,34389
+68570,33237
+68571,44160
+68572,42327
+68573,70033
+68574,32326
+68575,45813
+68576,61033
+68577,50173
+68578,50280
+68579,74067
+68580,53163
+68581,44167
+68582,80322
+68583,32947
+68584,36943
+68585,49001
+68586,52418
+68587,56213
+68588,45813
+68589,65289
+68590,61848
+68591,80335
+68592,55815
+68593,20935
+68594,72960
+68595,54407
+68596,68519
+68597,44663
+68598,66954
+68599,68077
+68600,68078
+68601,50899
+68602,42327
+68603,71120
+68604,21718
+68605,72492
+68606,51395
+68607,21798
+68608,75925
+68609,49606
+68610,68277
+68611,26144
+68612,77987
+68613,78286
+68614,37079
+68615,81694
+68616,68702
+68617,36419
+68618,67826
+68619,21358
+68620,28780
+68621,37721
+68622,41005
+68623,35557
+68624,80396
+68625,68702
+68626,61006
+68627,72813
+68628,30073
+68629,39423
+68630,60956
+68631,41899
+68632,34922
+68633,38839
+68634,20755
+68635,68638
+68636,31690
+68637,57573
+68638,53454
+68639,39423
+68640,42225
+68641,49298
+68642,73598
+68643,70627
+68644,55394
+68645,53760
+68646,19867
+68647,62089
+68648,36986
+68649,46042
+68650,38601
+68651,48791
+68652,19228
+68653,57927
+68654,54761
+68655,65994
+68656,63187
+68657,54761
+68658,59379
+68659,80174
+68660,57573
+68661,27028
+68662,40150
+68663,51316
+68664,28065
+68665,68175
+68666,58803
+68667,69662
+68668,69880
+68669,52857
+68670,55352
+68671,68668
+68672,19947
+68673,28220
+68674,40578
+68675,43672
+68676,42327
+68677,76664
+68678,76664
+68679,76664
+68680,76691
+68681,20118
+68682,81626
+68683,40564
+68684,31846
+68685,28539
+68686,28236
+68687,51894
+68688,50885
+68689,59306
+68690,29917
+68691,41917
+68692,74488
+68693,71838
+68694,67517
+68695,33464
+68696,69281
+68697,66954
+68698,27284
+68699,35386
+68700,80257
+68701,50354
+68702,19979
+68703,71715
+68704,33650
+68705,57608
+68706,27488
+68707,70651
+68708,34701
+68709,49637
+68710,68793
+68711,73537
+68712,77820
+68713,63523
+68714,68237,21770
+68715,69173
+68716,35922
+68717,19497
+68718,59713
+68719,69172
+68720,23062
+68721,64757
+68722,22128
+68723,20727
+68724,76672
+68725,19732
+68726,26496
+68727,31795
+68728,34679
+68729,40121
+68730,60216
+68731,21474
+68732,23220
+68733,62142
+68734,48114
+68735,64757
+68736,48106
+68737,65702
+68738,38382
+68739,41843
+68740,74036
+68741,42387
+68742,41180
+68743,44857
+68744,53688
+68745,44984
+68746,45689
+68747,11909
+68748,50623
+68749,51242
+68750,54992
+68751,55272
+68752,44740
+68753,59308
+68754,60214
+68755,62708
+68756,75566
+68757,77837
+68758,37886
+68759,25843
+68760,41249
+68761,20341
+68762,21552
+68763,30296
+68764,34588
+68765,34992
+68766,36908
+68767,37199
+68768,37676
+68769,46003
+68770,68771
+68771,68236
+68772,69416
+68773,75009
+68774,74500
+68775,65060
+68776,59309
+68777,78536
+68778,48157
+68779,48157
+68780,19655
+68781,79905
+68782,61748
+68783,21938
+68784,68236
+68785,19382
+68786,45367
+68787,21922
+68788,34786
+68789,24331
+68790,62145
+68791,38053
+68792,42322
+68793,51649
+68794,58162
+68795,60385
+68796,65753
+68797,24111
+68798,56080
+68799,72626
+68800,70828
+68801,21475
+68802,55761
+68803,21597
+68804,75566
+68805,68903
+68806,29625
+68807,21476
+68808,59306
+68809,81789,55734
+68810,42142
+68811,50117
+68812,75548
+68813,41917
+68814,59331
+68815,61213
+68816,31115
+68817,77277
+68818,71315
+68819,53624
+68820,21840
+68821,35922
+68822,19497
+68823,28529
+68824,77431
+68825,44059
+68826,25234
+68827,68829
+68828,50603
+68829,67513
+68830,39506
+68831,50875
+68832,21905
+68833,34609
+68834,62533
+68835,77444
+68836,44511
+68837,76248
+68838,24651
+68839,19492
+68840,19384
+68841,41107
+68842,32417
+68843,48534
+68844,72714
+68845,75018
+68846,37405
+68847,27405
+68848,51738
+68849,69246
+68850,60598
+68851,19375
+68852,53717,36610
+68853,68852
+68854,53275
+68855,12341
+68856,53276
+68857,53519
+68858,71446
+68859,66785
+68860,54717
+68861,22665
+68862,51180
+68863,37999
+68864,74132
+68865,68861
+68866,35236
+68867,45813
+68868,68686
+68869,41729
+68870,58576
+68871,80607
+68872,27929
+68873,68880
+68874,44701
+68875,50123
+68876,27326
+68877,58647
+68878,59715
+68879,33178
+68880,73472
+68881,23642
+68882,26884
+68883,61395
+68884,64674
+68885,53648
+68886,49897
+68887,60216
+68888,64674
+68889,72111
+68890,77308
+68891,60385
+68892,68677
+68893,55494
+68894,76657
+68895,63212
+68896,60216
+68897,22122
+68898,63357
+68899,40747
+68900,60011
+68901,39049
+68902,61415
+68903,59305
+68904,21412
+68905,55760
+68906,51395
+68907,60216
+68908,58162
+68909,71318
+68910,69172
+68911,61789
+68912,24111
+68913,59426
+68914,66999
+68915,80440
+68916,43364
+68917,36774
+68918,38381
+68919,39556
+68920,62145
+68921,40340
+68922,43997
+68923,53624
+68924,53621
+68925,43125
+68926,43126
+68927,70994
+68928,21324
+68929,22107
+68930,81635
+68931,30693
+68932,21946
+68933,20994
+68934,20386
+68935,63314
+68936,37352
+68937,74846
+68938,37352
+68939,19069
+68940,28780,21034
+68941,60528
+68942,21998
+68943,60216
+68944,31469
+68945,62656
+68946,31316,19009
+68947,63187
+68948,19675
+68949,63602
+68950,25044
+68951,19686
+68952,22422
+68953,68952
+68954,37612
+68955,31706
+68956,66066
+68957,32973
+68958,54710
+68959,63416
+68960,31742
+68961,46923
+68962,34827
+68963,41512
+68964,35477
+68965,35517
+68966,69521
+68967,37197
+68968,62846
+68969,38883
+68970,52497
+68971,39703
+68972,80802,68991
+68973,41797
+68974,22340
+68975,44040
+68976,45813
+68977,19755
+68978,47211
+68979,47716
+68980,47874
+68981,48007
+68982,48445
+68983,78594
+68984,31143
+68985,58169
+68986,71648
+68987,61819
+68988,62128
+68989,62723
+68990,80761
+68991,63819
+68992,76196
+68993,65839
+68994,60244
+68995,65942
+68996,66155
+68997,54810
+68998,69285
+68999,62446
+69000,72938
+69001,53412
+69002,35765
+69003,76894
+69004,78755
+69005,73284
+69006,31885
+69007,47407
+69008,67612
+69009,33893
+69010,53959
+69011,53182
+69012,30650
+69013,69010
+69014,61650
+69015,46620
+69016,67614
+69017,22665
+69018,71313
+69019,69012
+69020,77603
+69021,75018
+69022,54568
+69023,25383
+69024,37165
+69025,71441
+69026,52033
+69027,51565
+69028,43911
+69029,51558
+69030,51566
+69031,53608
+69032,21200
+69033,21218
+69034,51649
+69035,68254
+69036,76664
+69037,32810
+69038,58803
+69039,79608
+69040,36868
+69041,54446
+69042,22308
+69043,61054,69042
+69044,20819
+69045,61213
+69046,69118
+69047,63809
+69048,78544
+69049,31276
+69050,31278
+69051,33832
+69052,43104
+69053,64578
+69054,53422
+69055,66702
+69056,76227
+69057,58783
+69058,45496
+69059,22452
+69060,22452
+69061,69238
+69062,36710
+69063,38740
+69064,31307
+69065,32506
+69066,73863
+69067,65770
+69068,62999
+69069,78113
+69070,27497
+69071,60450
+69072,53848
+69073,63143
+69074,48662
+69075,77347
+69076,78544
+69077,60476
+69078,69238
+69079,40736
+69080,41410
+69081,50912
+69082,61783
+69083,50910
+69084,62145
+69085,65133
+69086,30891
+69087,28063
+69088,18112
+69089,66965
+69090,54468
+69091,34472
+69092,57680
+69093,78579
+69094,60341
+69095,29627
+69096,68771
+69097,69216
+69098,41207
+69099,79532
+69100,46027
+69101,16971
+69102,70033
+69103,31996
+69104,38644
+69105,73307
+69106,60019
+69107,54044
+69108,49338
+69109,63666
+69110,21301
+69111,22422
+69112,39130
+69113,53607
+69114,69111
+69115,69111
+69116,31464
+69117,19733
+69118,58144
+69119,75146
+69120,69128
+69121,31469
+69122,65052,62453
+69123,69140
+69124,39676
+69125,54535
+69126,54535
+69127,74610
+69128,39578
+69129,60604
+69130,18720
+69131,69112
+69132,69127
+69133,63065
+69134,19211
+69135,47565
+69136,53624,60538
+69137,32222
+69138,45472
+69139,32222
+69140,19228
+69141,77108
+69142,32224
+69143,56446
+69144,56440
+69145,56441
+69146,75016
+69147,60450
+69148,60216
+69149,69444
+69150,69120
+69151,5686
+69152,9643
+69153,73746
+69154,73684
+69155,41262
+69156,20769
+69157,39578
+69158,41264
+69159,53542
+69160,60216
+69161,69157
+69162,47398
+69163,69681
+69164,40718
+69165,35593
+69166,42225
+69167,47924
+69168,72959
+69169,71838
+69170,66164
+69171,71658
+69172,44440
+69173,28535
+69174,28530
+69175,69172
+69176,35678
+69177,19497
+69178,60786
+69179,48077
+69180,31389
+69181,35882
+69182,18728
+69183,55761
+69184,69331
+69185,55756
+69186,42351
+69187,75292
+69188,61178
+69189,50439
+69190,57682
+69191,61259
+69192,59354
+69193,19286
+69194,66164
+69195,18740
+69196,31476
+69197,69235
+69198,65879
+69199,75756
+69200,40003
+69201,45165
+69202,21200
+69203,28790
+69204,81770
+69205,21324
+69206,19421
+69207,33638
+69208,69588
+69209,20655
+69210,71595
+69211,43738
+69212,36673
+69213,76341
+69214,25242
+69215,39049
+69216,56894
+69217,57569
+69218,33782
+69219,69216
+69220,69405
+69221,26010
+69222,55668
+69223,55089
+69224,57927
+69225,48540
+69226,33885
+69227,55734
+69228,63665
+69229,26548
+69230,56179
+69231,63124
+69232,53060
+69233,31443
+69234,44437
+69235,58118
+69236,31646
+69237,61885
+69238,60131
+69239,29418
+69240,51473
+69241,62968
+69242,40068
+69243,20355
+69244,30588
+69245,22679
+69246,77374
+69247,23189
+69248,19311
+69249,50817
+69250,53711
+69251,53710
+69252,79467
+69253,55067
+69254,53848
+69255,43556
+69256,40231
+69257,32106
+69258,60032
+69259,50717
+69260,26120
+69261,31245
+69262,67167
+69263,57060
+69264,70568
+69265,62225
+69266,62225
+69267,68933
+69268,47115
+69269,51649
+69270,19928
+69271,43427
+69272,20074
+69273,81153
+69274,81626
+69275,69274
+69276,75826
+69277,61395
+69278,78984
+69279,31100
+69280,30937
+69281,19755
+69282,37721
+69283,19228
+69284,81601
+69285,18959
+69286,65759
+69287,34433
+69288,75086
+69289,19648
+69290,77045
+69291,67462
+69292,79552
+69293,77857
+69294,28616
+69295,29969
+69296,28234
+69297,31690
+69298,33523
+69299,26586
+69300,38013
+69301,48030
+69302,51467
+69303,72714
+69304,73001
+69305,48353
+69306,55395
+69307,78996
+69308,70629
+69309,37721
+69310,32493
+69311,45021
+69312,35558
+69313,22128
+69314,25242
+69315,31757
+69316,45813
+69317,79261
+69318,40564
+69319,25256
+69320,50919
+69321,20819
+69322,61911
+69323,38883
+69324,61890
+69325,31308
+69326,53758
+69327,31851
+69328,72877
+69329,61405
+69330,18840
+69331,30391
+69332,34731
+69333,37479
+69334,61154
+69335,71315
+69336,38699
+69337,30275
+69338,73838
+69339,39928
+69340,34199
+69341,44628
+69342,68176
+69343,61643
+69344,23313
+69345,78078
+69346,63861
+69347,61616
+69348,44793
+69349,68448
+69350,68448
+69351,71395
+69352,72426
+69353,62144
+69354,38042
+69355,38043
+69356,23869
+69357,43104
+69358,19737
+69359,34149
+69360,28234
+69361,56362
+69362,29744
+69363,54356
+69364,70466
+69365,36089
+69366,53021
+69367,35188
+69368,72447
+69369,20053
+69370,25113
+69371,50439
+69372,29339
+69373,64757
+69374,64757
+69375,48662
+69376,29187
+69377,34093
+69378,76662
+69379,64757
+69380,50439
+69381,60493
+69382,50439
+69383,31690
+69384,58587
+69385,33503
+69386,19737
+69387,66101
+69388,47569,55091
+69389,73193
+69390,80227
+69391,35676
+69392,61247
+69393,39367
+69394,39101
+69395,56327
+69396,36363
+69397,42246
+69398,52718
+69399,26133
+69400,56325
+69401,45030
+69402,69395
+69403,81620
+69404,49883
+69405,46317,76059
+69406,56316
+69407,66953
+69408,73316
+69409,29623
+69410,60617
+69411,39578
+69412,57934
+69413,29262
+69414,22162
+69415,28530
+69416,39528
+69417,29240
+69418,29263
+69419,36523
+69420,43313
+69421,58161
+69422,53054
+69423,60216
+69424,31829
+69425,60216
+69426,57682
+69427,38308
+69428,35525
+69429,38823
+69430,27233
+69431,20727
+69432,53624
+69433,55761
+69434,69331
+69435,55756
+69436,42351
+69437,50439
+69438,29321,27581
+69439,25087
+69440,21610
+69441,73025
+69442,22159
+69443,68864
+69444,34783
+69445,69428
+69446,45107
+69447,38567
+69448,69439
+69449,69439
+69450,61433
+69451,65699
+69452,65948
+69453,29187
+69454,55760
+69455,34199
+69456,48038
+69457,23021
+69458,66154
+69459,40292
+69460,29986,41014
+69461,66868
+69462,48107
+69463,65925
+69464,63424
+69465,69051
+69466,30467
+69467,77641
+69468,65799
+69469,78732
+69470,53205
+69471,43852
+69472,69465
+69473,62694
+69474,40985
+69475,41128
+69476,65221
+69477,25574
+69478,26785
+69479,38700
+69480,63936
+69481,51473
+69482,59427
+69483,59420
+69484,66859
+69485,78866
+69486,76811
+69487,75284
+69488,39049
+69489,71311
+69490,67254
+69491,45951
+69492,70915
+69493,67093
+69494,49312
+69495,19629
+69496,60830,81434
+69497,53296
+69498,42493
+69499,19367
+69500,68652
+69501,38944
+69502,37113
+69503,31616
+69504,60216
+69505,48379
+69506,19699
+69507,55346
+69508,68859
+69509,57594
+69510,26311
+69511,57810
+69512,57811
+69513,41117
+69514,34671
+69515,43897
+69516,62853
+69517,65754
+69518,65754
+69519,80011
+69520,35627
+69521,39578
+69522,35567
+69523,37612
+69524,78819
+69525,25168
+69526,29698
+69527,44798
+69528,45813
+69529,36496
+69530,49745
+69531,33500
+69532,25115
+69533,33614
+69534,33614
+69535,43698
+69536,33614
+69537,59306
+69538,50862
+69539,24711
+69540,39049
+69541,70957
+69542,31210
+69543,22164
+69544,71949
+69545,37720
+69546,31537
+69547,20406
+69548,78521
+69549,52510
+69550,63065
+69551,76981
+69552,60739
+69553,73336
+69554,21905
+69555,19739
+69556,63316
+69557,71439
+69558,50603
+69559,55854
+69560,55854
+69561,35771
+69562,81807
+69563,38807
+69564,37319
+69565,20755
+69566,53620
+69567,39049
+69568,65808
+69569,55760
+69570,69406
+69571,44456
+69572,76947
+69573,47655
+69574,67566
+69575,58782
+69576,69544
+69577,22032
+69578,68271
+69579,57477
+69580,31043
+69581,34628
+69582,52904
+69583,64927
+69584,77641
+69585,26166
+69586,76877,71285
+69587,76877,40908
+69588,29839
+69589,57372
+69590,78756
+69591,27894
+69592,34349
+69593,37169
+69594,81643
+69595,70629
+69596,33504
+69597,68304
+69598,60321
+69599,63424
+69600,32580
+69601,63424
+69602,75019
+69603,75465
+69604,58378
+69605,22116
+69606,58162
+69607,70399
+69608,40986
+69609,25518
+69610,45142
+69611,23796
+69612,25433
+69613,60284,51642
+69614,44013
+69615,41657
+69616,52180
+69617,49538
+69618,45813
+69619,35908
+69620,45830
+69621,73372
+69622,49997
+69623,71911
+69624,62060
+69625,68677
+69626,39713
+69627,69596
+69628,50784
+69629,30062
+69630,39367
+69631,38766
+69632,23650
+69633,21745
+69634,59020
+69635,51475
+69636,77287
+69637,20586
+69638,46178
+69639,61343
+69640,51367
+69641,69633
+69642,55756
+69643,60812
+69644,72165
+69645,39049
+69646,42528
+69647,67277
+69648,81065
+69649,36035
+69650,8382
+69651,36694
+69652,69651
+69653,74488
+69654,25645
+69655,47314
+69656,76664
+69657,31618
+69658,20754
+69659,46880
+69660,32580
+69661,20385
+69662,32580
+69663,46826
+69664,32580
+69665,64426
+69666,41572
+69667,23542
+69668,32155
+69669,74824
+69670,61341
+69671,32982
+69672,50123
+69673,79201
+69674,80460
+69675,81626
+69676,69852
+69677,68622
+69678,43291
+69679,53275
+69680,46827
+69681,63424
+69682,73838
+69683,81656
+69684,81626
+69685,29737
+69686,53637
+69687,33134
+69688,81635
+69689,69620
+69690,41719
+69691,50630
+69692,67615
+69693,41280
+69694,53023
+69695,63424
+69696,21566
+69697,39676
+69698,69695
+69699,69695
+69700,63416
+69701,42142
+69702,77479
+69703,55347
+69704,46774
+69705,49683
+69706,65591
+69707,28541
+69708,47997
+69709,69710
+69710,37973
+69711,36899
+69712,41877
+69713,81462
+69714,34206
+69715,33283
+69716,30300
+69717,80576
+69718,28530
+69719,81442
+69720,71311
+69721,51068
+69722,25115
+69723,33500
+69724,63426
+69725,48126
+69726,59377
+69727,57333
+69728,33644
+69729,26160
+69730,44049
+69731,70229
+69732,26302
+69733,57289
+69734,77641
+69735,81626
+69736,66785
+69737,77287
+69738,64470
+69739,81601
+69740,29974
+69741,81176
+69742,39851
+69743,55026
+69744,79471
+69745,28517
+69746,30997
+69747,50875
+69748,31702
+69749,69754
+69750,19657
+69751,27118
+69752,35781
+69753,33491
+69754,56226,75018
+69755,26577
+69756,26295
+69757,31563
+69758,48030
+69759,21930
+69760,58582
+69761,26604
+69762,30937
+69763,31825
+69764,19655
+69765,29744
+69766,30937
+69767,20745,24834
+69768,57562
+69769,66953
+69770,70104
+69771,29579
+69772,67266
+69773,69744
+69774,18950
+69775,81759
+69776,81647
+69777,19379
+69778,36329
+69779,38523
+69780,35557
+69781,22736
+69782,42225
+69783,26705
+69784,36434
+69785,41672
+69786,39049
+69787,52773
+69788,70814
+69789,35562
+69790,21233
+69791,39049
+69792,24873
+69793,34276
+69794,18864
+69795,81482
+69796,49944
+69797,80589
+69798,69210
+69799,56941
+69800,75216
+69801,67801
+69802,25113
+69803,30368
+69804,60810
+69805,53338
+69806,74575
+69807,39928
+69808,36986
+69809,33777
+69810,76162
+69811,77937
+69812,80440
+69813,22665
+69814,54044
+69815,81717
+69816,81552
+69817,27781
+69818,41090
+69819,38839
+69820,48030
+69821,50784
+69822,61775
+69823,69860
+69824,79953
+69825,73838
+69826,25574
+69827,31618
+69828,34924
+69829,50126
+69830,77287
+69831,30074
+69832,69739
+69833,70987
+69834,27967
+69835,19629
+69836,34924
+69837,46559
+69838,28840
+69839,35103,8536
+69840,68432
+69841,61764
+69842,66853
+69843,60733
+69844,23164
+69845,72556
+69846,69852
+69847,55499
+69848,55662
+69849,61395
+69850,42076
+69851,46377
+69852,63363
+69853,23506
+69854,26298
+69855,40236
+69856,32461
+69857,62727
+69858,68475
+69859,34924
+69860,53952
+69861,23796
+69862,67626,52811
+69863,32506
+69864,81647
+69865,67626,43313
+69866,78687
+69867,75216
+69868,69873
+69869,41672
+69870,53959
+69871,50424
+69872,19655
+69873,33488
+69874,30697
+69875,26730
+69876,22684
+69877,23294
+69878,45021
+69879,51677
+69880,43107
+69881,23536
+69882,25486
+69883,21914
+69884,50802
+69885,54428
+69886,60899
+69887,79953
+69888,25495
+69889,74494
+69890,77277
+69891,44030
+69892,58088
+69893,32325
+69894,70010
+69895,53867
+69896,18979
+69897,47931
+69898,25256
+69899,31607
+69900,77311
+69901,35878
+69902,42306
+69903,48874
+69904,77523
+69905,51677
+69906,52008
+69907,58101
+69908,77985
+69909,33512
+69910,77311
+69911,67853
+69912,65681
+69913,70814
+69914,73495
+69915,55499
+69916,22414
+69917,64527
+69918,26657
+69919,22737
+69920,66727
+69921,19656
+69922,37178
+69923,34209
+69924,52781
+69925,44013
+69926,45064
+69927,40752
+69928,81974
+69929,50139
+69930,50976
+69931,36802
+69932,73017
+69933,52262
+69934,36918
+69935,48114
+69936,62142
+69937,35062
+69938,72435
+69939,28621
+69940,24874
+69941,22122
+69942,57982
+69943,63212
+69944,65793
+69945,38807
+69946,22122
+69947,43364
+69948,25390
+69949,20120
+69950,39846
+69951,22032
+69952,77185
+69953,40195
+69954,69661
+69955,33500
+69956,25115
+69957,29917
+69958,37165
+69959,22792
+69960,22686
+69961,38077
+69962,48353
+69963,21411
+69964,46303
+69965,63426
+69966,59508
+69967,21412
+69968,63945
+69969,40177
+69970,45009
+69971,31618
+69972,25022
+69973,45260
+69974,81626
+69975,36694
+69976,44970
+69977,71313
+69978,37992
+69979,22159
+69980,19173
+69981,62216
+69982,61655
+69983,77725
+69984,73069,66705
+69985,69354
+69986,59377
+69987,61526
+69988,34731
+69989,64639
+69990,80217
+69991,27276
+69992,33442
+69993,66953
+69994,25367
+69995,57121
+69996,38204
+69997,60216
+69998,25325
+69999,70627
+70000,77045
+70001,58977
+70002,40578
+70003,43672
+70004,54467
+70005,58093
+70006,74344
+70007,69661
+70008,70987
+70009,34924
+70010,48321
+70011,78756
+70012,54957
+70013,48477
+70014,47477
+70015,31320
+70016,58287
+70017,56832
+70018,48532
+70019,76627
+70020,34108
+70021,68623
+70022,72503
+70023,30154
+70024,79471
+70025,75665
+70026,61145
+70027,40004
+70028,71439
+70029,34208
+70030,34209
+70031,34210
+70032,51475
+70033,81549
+70034,21475
+70035,79270
+70036,16022
+70037,81161
+70038,70033
+70039,43168
+70040,26578
+70041,26275
+70042,77788
+70043,70987
+70044,70043
+70045,68030
+70046,65861
+70047,58384
+70048,27508
+70049,59775
+70050,65190
+70051,59423
+70052,47650
+70053,31278
+70054,51929
+70055,70782
+70056,34272
+70057,53648
+70058,24732
+70059,37998
+70060,55348
+70061,42344
+70062,63659
+70063,25068
+70064,70062
+70065,35340
+70066,45643
+70067,22677
+70068,76429
+70069,32603
+70070,76689
+70071,81807
+70072,66785
+70073,48126
+70074,26938
+70075,51039
+70076,48456
+70077,41599
+70078,63281
+70079,65702
+70080,41290
+70081,63328
+70082,59970
+70083,22684
+70084,23897
+70085,54414
+70086,45388
+70087,49312
+70088,50802
+70089,51677
+70090,79963
+70091,78647
+70092,66953
+70093,23643
+70094,37169
+70095,20635,55091
+70096,53690
+70097,65295
+70098,75156
+70099,66800
+70100,74067
+70101,43631
+70102,34283
+70103,66953
+70104,65581
+70105,51468
+70106,78698
+70107,51515
+70108,21840
+70109,21477
+70110,74537
+70111,74535
+70112,57967
+70113,33500
+70114,47455
+70115,43352
+70116,58745
+70117,28571
+70118,35557
+70119,38914
+70120,37215
+70121,31477
+70122,41053
+70123,70113
+70124,70113
+70125,61591
+70126,66727
+70127,73650
+70128,79572
+70129,81874
+70130,31583
+70131,56589
+70132,25017
+70133,25017
+70134,39089
+70135,30153
+70136,31825
+70137,51316
+70138,51478
+70139,51467
+70140,76672,70143
+70141,46765,70143
+70142,55151,70143
+70143,32256
+70144,81906,70143
+70145,54121
+70146,48894
+70147,38292
+70148,65539
+70149,65295
+70150,54563
+70151,61574
+70152,67474
+70153,47797
+70154,69978
+70155,21922
+70156,73152
+70157,74821
+70158,24875
+70159,80012
+70160,70110
+70161,80047
+70162,54757
+70163,64873
+70164,26302
+70165,64632
+70166,24792
+70167,36979
+70168,64747
+70169,15897
+70170,56038
+70171,69667
+70172,69666
+70173,73554
+70174,79215
+70175,70173
+70176,53238
+70177,71686
+70178,79009
+70179,35664
+70180,62149
+70181,79744
+70182,30959
+70183,54862,38933
+70184,36317
+70185,49312
+70186,44658
+70187,57390
+70188,60076
+70189,58010
+70190,52084
+70191,77166
+70192,51068
+70193,30443
+70194,79341
+70195,79282
+70196,18728
+70197,37858
+70198,37859
+70199,38564
+70200,50369
+70201,43168
+70202,53473
+70203,30882
+70204,29982
+70205,48030
+70206,50359
+70207,70225
+70208,43168
+70209,65581
+70210,58797
+70211,30391
+70212,37419
+70213,47810
+70214,30882
+70215,64846
+70216,26298
+70217,65110
+70218,23512
+70219,20458
+70220,30891
+70221,34924
+70222,47944
+70223,77373,70220
+70224,48478
+70225,56009
+70226,69634
+70227,78179
+70228,24261
+70229,73838
+70230,30891
+70231,60216
+70232,68632
+70233,66617
+70234,47671
+70235,53608
+70236,35188
+70237,52904
+70238,81065
+70239,52904
+70240,78739
+70241,70203
+70242,39563
+70243,67891
+70244,79671
+70245,31245
+70246,71697
+70247,78096
+70248,19108
+70249,40752
+70250,65108
+70251,55499
+70252,59358
+70253,65072
+70254,6952
+70255,39049
+70256,70259
+70257,58410
+70258,36404
+70259,58616
+70260,30432
+70261,67675
+70262,19069
+70263,31058
+70264,70272
+70265,28780,69049
+70266,26072
+70267,27452
+70268,70299,61874
+70269,61311
+70270,67202
+70271,61574
+70272,27373
+70273,20748
+70274,39049
+70275,43353
+70276,44249
+70277,19923
+70278,79608
+70279,71091
+70280,42225
+70281,62948
+70282,27997
+70283,27997
+70284,37247
+70285,20899
+70286,35996
+70287,35996
+70288,70276
+70289,61599
+70290,75246
+70291,75942
+70292,81394
+70293,66786
+70294,73830
+70295,28952
+70296,76664
+70297,54418
+70298,77185
+70299,31058
+70300,71446
+70301,67821
+70302,28000
+70303,41181
+70304,62547
+70305,56807,31276
+70306,70310
+70307,76664
+70308,77641
+70309,11884
+70310,20690
+70311,24302
+70312,26053
+70313,71558
+70314,24146
+70315,29067
+70316,20081
+70317,36009
+70318,39676
+70319,39676
+70320,40141
+70321,65319
+70322,44013
+70323,44848
+70324,48828
+70325,54932
+70326,49351
+70327,79608
+70328,51462
+70329,31509
+70330,53072
+70331,77952
+70332,54553
+70333,56752,28064
+70334,70276
+70335,36618
+70336,75086
+70337,61361
+70338,30432
+70339,81482
+70340,67551
+70341,67649
+70342,40002
+70343,71489
+70344,48223
+70345,72840
+70346,77641
+70347,77641
+70348,77646
+70349,80429
+70350,80565
+70351,80995
+70352,81176
+70353,43781
+70354,57685
+70355,43677
+70356,76501
+70357,36404
+70358,43672
+70359,72248
+70360,49224
+70361,41645
+70362,70033
+70363,79608
+70364,75086
+70365,79608
+70366,29402
+70367,81602
+70368,39676
+70369,39676
+70370,45826
+70371,41189
+70372,66785
+70373,45826
+70374,62884
+70375,67737
+70376,6654
+70377,77945
+70378,75741
+70379,25770
+70380,41745
+70381,77321
+70382,81193
+70383,71033
+70384,71034
+70385,45813
+70386,29886
+70387,39002
+70388,41413
+70389,23945
+70390,45186
+70391,48530
+70392,50717
+70393,53373
+70394,59875
+70395,60468
+70396,61052
+70397,63434
+70398,69153
+70399,60216
+70400,56194
+70401,64142
+70402,55996
+70403,38814
+70404,37564
+70405,69033
+70406,54868
+70407,75606,54872
+70408,37477
+70409,52497
+70410,26009
+70411,76691
+70412,38196
+70413,51625
+70414,51068
+70415,78773
+70416,77460
+70417,78077
+70418,56194
+70419,25256
+70420,77820
+70421,80439
+70422,80440
+70423,23893
+70424,62145
+70425,70427
+70426,55768
+70427,79809,55763
+70428,79828
+70429,23225
+70430,49079
+70431,74232
+70432,57248
+70433,66066
+70434,23615
+70435,45643
+70436,78424
+70437,23643
+70438,39928
+70439,32982
+70440,25329
+70441,61879
+70442,63307
+70443,64371
+70444,74527
+70445,75472
+70446,21908
+70447,70417
+70448,22675
+70449,75814
+70450,73222
+70451,78578
+70452,81125
+70453,57765
+70454,69331
+70455,61402
+70456,48690
+70457,41228
+70458,72623
+70459,78640
+70460,47992
+70461,56179
+70462,61526
+70463,80613
+70464,61078
+70465,56163
+70466,34731
+70467,34210
+70468,21087
+70469,41856
+70470,34175
+70471,81807
+70472,57484
+70473,33455
+70474,28091
+70475,45388
+70476,48126
+70477,59423
+70478,38183
+70479,74660
+70480,78096
+70481,58144
+70482,47115
+70483,36498
+70484,52904
+70485,47673
+70486,9930
+70487,52802
+70488,19907
+70489,19108,19909
+70490,67608
+70491,21211
+70492,19923
+70493,33500
+70494,23712
+70495,33512
+70496,52803
+70497,19634
+70498,61253
+70499,40068
+70500,81161
+70501,77641
+70502,32603
+70503,53842
+70504,39618
+70505,47737
+70506,69744
+70507,68796
+70508,49858
+70509,21938
+70510,73726
+70511,29539
+70512,73402
+70513,73752
+70514,55768
+70515,77277
+70516,62144
+70517,79722
+70518,58166
+70519,69325
+70520,55348
+70521,55348
+70522,79547
+70523,77967
+70524,35156
+70525,31245
+70526,72959
+70527,30588
+70528,75708
+70529,23401
+70530,35188
+70531,60216
+70532,27734
+70533,72447,36074,35116
+70534,30300
+70535,55984
+70536,50439
+70537,64757
+70538,57066
+70539,64757
+70540,48662
+70541,73863
+70542,34093
+70543,76662
+70544,64757
+70545,50439
+70546,57066
+70547,52655
+70548,52655
+70549,63314
+70550,70526
+70551,39988
+70552,31537
+70553,53625
+70554,56832
+70555,33799
+70556,72435
+70557,64921
+70558,25017,80761
+70559,70561
+70560,70562
+70561,22032
+70562,72421
+70563,38313
+70564,21412
+70565,69846
+70566,25617
+70567,45086
+70568,55686
+70569,73837
+70570,75016
+70571,54603
+70572,74502
+70573,68095
+70574,80819
+70575,59463
+70576,20441
+70577,23294
+70578,23724
+70579,31618
+70580,48474
+70581,36404
+70582,74281
+70583,34735
+70584,53067
+70585,25306
+70586,36338
+70587,81794
+70588,47844
+70589,21412
+70590,60870
+70591,67329
+70592,19867
+70593,53648
+70594,25359
+70595,27276
+70596,31245
+70597,64716
+70598,70622,49420
+70599,70626
+70600,46747
+70601,39072
+70602,59241
+70603,61732
+70604,64403
+70605,27698
+70606,66083
+70607,77341
+70608,70914
+70609,31825
+70610,80460
+70611,79274
+70612,25019
+70613,70843
+70614,32750
+70615,64196
+70616,66727
+70617,70957
+70618,81626
+70619,77284
+70620,60216
+70621,59610
+70622,22032
+70623,70976
+70624,62034
+70625,37955
+70626,72421
+70627,18721
+70628,18721
+70629,81626
+70630,64293
+70631,32083
+70632,29803
+70633,72959
+70634,44484
+70635,32580
+70636,64972
+70637,54446
+70638,64965
+70639,31861
+70640,30051
+70641,65816
+70642,50424
+70643,20771
+70644,22684
+70645,74537
+70646,31447,25104
+70647,74812
+70648,27497
+70649,27562
+70650,71572
+70651,35534
+70652,74814
+70653,37411
+70654,55499
+70655,70646
+70656,34989
+70657,47908
+70658,26389
+70659,82066
+70660,51814
+70661,70629
+70662,50755
+70663,48157
+70664,74814
+70665,74811
+70666,42003
+70667,35737
+70668,25282
+70669,68330
+70670,73863
+70671,71686
+70672,30557
+70673,53275
+70674,29917
+70675,42225
+70676,21568
+70677,19176
+70678,56458
+70679,78606
+70680,36043
+70681,49103
+70682,25256
+70683,37622
+70684,69325
+70685,77367
+70686,27276
+70687,45813
+70688,55815
+70689,53275
+70690,53275
+70691,61746
+70692,22048
+70693,41872
+70694,43462
+70695,64527
+70696,25579,72712
+70697,62113
+70698,59089
+70699,49411
+70700,45643
+70701,46490
+70702,50457
+70703,81227
+70704,58410
+70705,40231
+70706,67565
+70707,26298
+70708,80012
+70709,81786
+70710,24781
+70711,34082
+70712,31991
+70713,73691
+70714,52118
+70715,74232
+70716,76546
+70717,47432
+70718,77985
+70719,68524
+70720,60810
+70721,33981
+70722,70604
+70723,56832
+70724,47590
+70725,79552
+70726,33799
+70727,28357
+70728,36781
+70729,29899
+70730,34263,72052
+70731,56871
+70732,56871
+70733,27890
+70734,50359
+70735,61670
+70736,24875
+70737,46183
+70738,69941
+70739,30588
+70740,19108
+70741,50296
+70742,33502
+70743,61592
+70744,22116
+70745,80512
+70746,73761
+70747,68859
+70748,75082
+70749,66945
+70750,51677
+70751,29969
+70752,59867
+70753,66939
+70754,32975
+70755,66944
+70756,70900
+70757,70937
+70758,49769
+70759,55662
+70760,60216
+70761,60216
+70762,81626
+70763,20883
+70764,20883
+70765,75425
+70766,37718
+70767,53203
+70768,69744
+70769,702
+70770,77321
+70771,46251
+70772,79549
+70773,50104
+70774,62456
+70775,35570
+70776,79274
+70777,81635
+70778,22032
+70779,72421
+70780,21218
+70781,76664
+70782,60598
+70783,60598
+70784,75552
+70785,21155,70787
+70786,77108
+70787,35626
+70788,70801,63066
+70789,70787
+70790,72585,67430,75955
+70791,19054
+70792,58812
+70793,41917
+70794,46172
+70795,60032
+70796,66135
+70797,28165
+70798,56462
+70799,75772
+70800,70782
+70801,25087
+70802,22684
+70803,70796
+70804,75389
+70805,59432
+70806,71623,60823
+70807,37762
+70808,19541
+70809,70796
+70810,70801,80011
+70811,60216
+70812,62555
+70813,27781
+70814,29917
+70815,23643
+70816,23796
+70817,53754
+70818,28220
+70819,49929
+70820,50969
+70821,67362
+70822,67608
+70823,80748
+70824,57304
+70825,48432
+70826,50755
+70827,34844
+70828,59305
+70829,71954
+70830,43698
+70831,69554
+70832,23021
+70833,43701
+70834,52497
+70835,49945
+70836,33503
+70837,40001
+70838,77989
+70839,52578
+70840,71617
+70841,71091
+70842,34731
+70843,55347
+70844,40941
+70845,61342
+70846,61415
+70847,28654,34924
+70848,39423
+70849,63224
+70850,20519
+70851,79097
+70852,39421
+70853,78286
+70854,36101
+70855,79968
+70856,68692
+70857,81227
+70858,27563
+70859,41877
+70860,576
+70861,79701
+70862,46035
+70863,80512
+70864,22907
+70865,69818
+70866,76435
+70867,35652
+70868,76429
+70869,61415
+70870,62349
+70871,82057
+70872,38521
+70873,40625
+70874,54774
+70875,69634
+70876,54732
+70877,61474
+70878,29928
+70879,41602
+70880,27408
+70881,54771
+70882,31444
+70883,69408
+70884,29917
+70885,49997
+70886,34175
+70887,34207
+70888,55347
+70889,41090
+70890,70033
+70891,81735
+70892,37582
+70893,43982
+70894,40745
+70895,32662
+70896,57897
+70897,37383
+70898,77688
+70899,25721
+70900,79937
+70901,61508
+70902,43285
+70903,63294
+70904,60259
+70905,67574
+70906,80185
+70907,80227
+70908,41005
+70909,55526
+70910,39563
+70911,25546
+70912,30672
+70913,26217
+70914,43107
+70915,78800
+70916,29928
+70917,77308
+70918,29929
+70919,73018
+70920,77340
+70921,62147
+70922,70896
+70923,65107
+70924,70925
+70925,52497
+70926,55263
+70927,65783
+70928,37163
+70929,23559
+70930,47840
+70931,27687
+70932,60216
+70933,25131
+70934,74666
+70935,32580
+70936,34657
+70937,78532
+70938,77328
+70939,50969
+70940,53425
+70941,55499
+70942,79691
+70943,34398
+70944,58675
+70945,67093
+70946,62550
+70947,53519
+70948,53354
+70949,30300
+70950,19936
+70951,42327
+70952,47432
+70953,25598
+70954,58675
+70955,31281
+70956,65641
+70957,29513
+70958,36123
+70959,59377
+70960,73207
+70961,34860
+70962,55760
+70963,74620
+70964,80257
+70965,41856
+70966,67574
+70967,24874
+70968,49876
+70969,70968
+70970,24874
+70971,25115
+70972,70549
+70973,56399
+70974,51462
+70975,19813
+70976,25046
+70977,26602
+70978,22878
+70979,32155
+70980,27324
+70981,27811
+70982,29526
+70983,48540
+70984,39375
+70985,50438
+70986,46767
+70987,47908
+70988,48679
+70989,28591
+70990,60216
+70991,62944
+70992,69744
+70993,30672
+70994,66985
+70995,26769
+70996,21959
+70997,44970
+70998,39375
+70999,38381
+71000,24470
+71001,41586
+71002,20409
+71003,70548
+71004,80505
+71005,62449
+71006,68013
+71007,54562
+71008,58776
+71009,25202
+71010,57867,62159
+71011,72042
+71012,59970
+71013,25659
+71014,30425
+71015,60216
+71016,81462
+71017,25803
+71018,78594
+71019,33669
+71020,34263
+71021,56011
+71022,68710
+71023,69106
+71024,54862,38933
+71025,69123
+71026,25434
+71027,41265
+71028,40292
+71029,71398
+71030,61247
+71031,53982
+71032,79608
+71033,39088
+71034,60216
+71035,37685
+71036,66479
+71037,71033
+71038,71034
+71039,70629
+71040,70629
+71041,30391
+71042,37635
+71043,19813
+71044,47944
+71045,48429
+71046,19532
+71047,79156
+71048,25843
+71049,25202
+71050,70033
+71051,79344
+71052,68430
+71053,31139
+71054,70033
+71055,70033
+71056,37206
+71057,52520
+71058,67649
+71059,46781
+71060,38836
+71061,59432
+71062,31587
+71063,28982
+71064,38563
+71065,76811
+71066,66953
+71067,18969
+71068,41395
+71069,37582
+71070,19947
+71071,21959
+71072,32660
+71073,33852
+71074,35978
+71075,44203
+71076,44970
+71077,51617
+71078,55685
+71079,55686
+71080,55687
+71081,61209
+71082,71403
+71083,74279
+71084,46285
+71085,81541
+71086,38477
+71087,40195
+71088,71074
+71089,24007
+71090,47231
+71091,76066
+71092,38543
+71093,37239
+71094,26271
+71095,71046
+71096,40147
+71097,40147
+71098,24704
+71099,32929
+71100,47675
+71101,30987
+71102,61251
+71103,41877
+71104,36592
+71105,57379
+71106,35414
+71107,23019
+71108,35557
+71109,24391
+71110,25002
+71111,26320
+71112,77641
+71113,42327
+71114,67957
+71115,60024
+71116,52693
+71117,68364
+71118,50919
+71119,57333
+71120,35048
+71121,22665
+71122,41646
+71123,60076
+71124,39964
+71125,66696
+71126,42420
+71127,55563
+71128,51642
+71129,39676
+71130,79337
+71131,59826
+71132,24400
+71133,62831
+71134,56532
+71135,25022
+71136,64886
+71137,80782
+71138,56832
+71139,25789
+71140,55348
+71141,39423
+71142,45260
+71143,44171
+71144,25956
+71145,66887
+71146,40752
+71147,67703
+71148,60032,41014
+71149,71911
+71150,70020
+71151,78286
+71152,60534
+71153,77239
+71154,74567
+71155,73740
+71156,77552
+71157,36619
+71158,46962
+71159,79009
+71160,39088
+71161,80619
+71162,41418
+71163,39176
+71164,76229
+71165,78755
+71166,62798
+71167,76229
+71168,31633
+71169,31633
+71170,78755
+71171,74939,65509
+71172,60216
+71173,45813
+71174,19055
+71175,31606
+71176,50565
+71177,71025
+71178,60216
+71179,60216
+71180,43364
+71181,60739
+71182,69887
+71183,44644
+71184,62452
+71185,75665
+71186,53210
+71187,66528
+71188,69597
+71189,48949
+71190,33189
+71191,78755
+71192,21638
+71193,27578
+71194,56472
+71195,66762
+71196,61981
+71197,72584
+71198,64142
+71199,56832
+71200,25843
+71201,70796
+71202,25844
+71203,19810
+71204,70652
+71205,78755
+71206,35157
+71207,76249
+71208,55524
+71209,57035
+71210,57035
+71211,80607
+71212,50649
+71213,62555
+71214,55453
+71215,72575
+71216,26448
+71217,24922
+71218,38477
+71219,54753
+71220,24084
+71221,51468
+71222,49181
+71223,37175
+71224,44193
+71225,81161
+71226,52497
+71227,61568
+71228,41719
+71229,41719
+71230,22785
+71231,67791
+71232,55391
+71233,73943
+71234,61705
+71235,24749
+71236,25017
+71237,70620
+71238,70843
+71239,32580
+71240,36470
+71241,20641
+71242,61182
+71243,33216
+71244,39940
+71245,77273
+71246,55373
+71247,34924
+71248,45170
+71249,58508
+71250,37279
+71251,41638
+71252,77644
+71253,65072
+71254,28584
+71255,77141
+71256,76811
+71257,81994
+71258,25574
+71259,53263
+71260,60216
+71261,47655
+71262,31587
+71263,68304
+71264,25843
+71265,60216
+71266,56179
+71267,80197
+71268,25884
+71269,29698
+71270,42131
+71271,26194
+71272,40403
+71273,35652
+71274,40001
+71275,71269
+71276,69221
+71277,29693
+71278,71269
+71279,77641
+71280,79608
+71281,32753
+71282,69258
+71283,64142
+71284,75204
+71285,40908
+71286,82070
+71287,40752
+71288,42523
+71289,66674
+71290,33189
+71291,49341
+71292,56073
+71293,75772
+71294,19438
+71295,58088
+71296,75738
+71297,18834
+71298,69283
+71299,41047
+71300,22786
+71301,22032,61395
+71302,71336
+71303,59377
+71304,71320
+71305,44440
+71306,20946
+71307,20947
+71308,78879
+71309,19733
+71310,44440
+71311,33799
+71312,61789
+71313,38545
+71314,42351
+71315,44437
+71316,48318
+71317,71329
+71318,75019
+71319,60468
+71320,61766
+71321,46892
+71322,63587
+71323,65691
+71324,68280
+71325,68290
+71326,68677
+71327,68787
+71328,73018
+71329,19757
+71330,80636
+71331,63653
+71332,61789
+71333,52918
+71334,61796
+71335,47673
+71336,56200
+71337,44440
+71338,71310
+71339,53758
+71340,60216
+71341,71315
+71342,37569
+71343,24249
+71344,24251
+71345,51558
+71346,51566
+71347,71325
+71348,71324
+71349,18869
+71350,71348
+71351,56540
+71352,46675
+71353,28091
+71354,65108
+71355,65107
+71356,81746
+71357,67651
+71358,59773
+71359,46782
+71360,27114
+71361,32672
+71362,23019
+71363,21200
+71364,32428
+71365,54825
+71366,36506
+71367,53842
+71368,54562
+71369,54082
+71370,50273
+71371,67675
+71372,67675
+71373,67675
+71374,24194
+71375,33558
+71376,55221,67675
+71377,67675
+71378,47043
+71379,47105,52412
+71380,47223,24695,35581
+71381,48828
+71382,74250,34858
+71383,56752
+71384,56762
+71385,60502
+71386,26296
+71387,20517
+71388,74250
+71389,23062
+71390,26296
+71391,64827
+71392,51894
+71393,60273
+71394,60271
+71395,68691
+71396,70110
+71397,75942
+71398,75665
+71399,29578
+71400,29579
+71401,32645
+71402,32642
+71403,78286
+71404,75330
+71405,53516
+71406,39838
+71407,35130
+71408,24007
+71409,36610,56065
+71410,43362
+71411,61784
+71412,56585
+71413,58024
+71414,40472
+71415,59762
+71416,62788
+71417,26409
+71418,61251
+71419,68064
+71420,19483
+71421,69697
+71422,71269
+71423,71489
+71424,19547
+71425,76512
+71426,77646
+71427,80257
+71428,80735
+71429,22786
+71430,23232
+71431,28774
+71432,56179
+71433,31164
+71434,37113
+71435,71697
+71436,79746
+71437,31506
+71438,48014
+71439,30188
+71440,71439
+71441,38273
+71442,53958
+71443,81482
+71444,80501
+71445,80714
+71446,36976
+71447,22946
+71448,28774
+71449,31482
+71450,38266
+71451,46540
+71452,36363
+71453,63162
+71454,28539
+71455,59377
+71456,58036
+71457,73032
+71458,66040
+71459,30432
+71460,71505
+71461,30598
+71462,42153
+71463,79259
+71464,37405
+71465,26944
+71466,28167
+71467,64831
+71468,65508
+71469,37104
+71470,20231
+71471,71482
+71472,44071
+71473,44927
+71474,45546
+71475,46782
+71476,52614
+71477,55151
+71478,43095
+71479,21998
+71480,56451
+71481,71482
+71482,64474
+71483,75019
+71484,75693
+71485,75018
+71486,71482
+71487,81906
+71488,38867
+71489,20120
+71490,81626
+71491,40852
+71492,45009
+71493,37936
+71494,81627
+71495,43901
+71496,72685
+71497,70627
+71498,21477
+71499,25457
+71500,40538,41014
+71501,40537
+71502,42327
+71503,30296,52605
+71504,70568
+71505,74891
+71506,70427
+71507,60935
+71508,38021
+71509,37999
+71510,65976
+71511,50638
+71512,60320
+71513,50630
+71514,62145
+71515,31164
+71516,53519
+71517,69543
+71518,72970
+71519,60612
+71520,20698
+71521,25119
+71522,39936
+71523,43122
+71524,71557
+71525,30863
+71526,41816
+71527,31506
+71528,34618
+71529,63809
+71530,19233
+71531,72051
+71532,60450
+71533,49217
+71534,76441
+71535,30518
+71536,27506
+71537,31337
+71538,27908
+71539,79661
+71540,77591
+71541,48980
+71542,77045
+71543,48980
+71544,21568
+71545,70427
+71546,55760
+71547,55756
+71548,19228
+71549,40619
+71550,46364
+71551,55768
+71552,32256
+71553,34326
+71554,64142
+71555,43362
+71556,53519
+71557,54825
+71558,54153
+71559,74132
+71560,72983
+71561,69330
+71562,63314
+71563,31058
+71564,19654
+71565,21937
+71566,40060
+71567,53728
+71568,17570
+71569,9230
+71570,79608
+71571,58181
+71572,28164
+71573,24244
+71574,34452
+71575,54862
+71576,46553
+71577,45260
+71578,78148
+71579,60019
+71580,48613
+71581,51894
+71582,79992
+71583,70796
+71584,52817
+71585,47737
+71586,60476
+71587,53624,56243
+71588,29643
+71589,21680
+71590,71588
+71591,71704
+71592,23075
+71593,71686
+71594,79809
+71595,55756
+71596,60074
+71597,11867
+71598,76441
+71599,58287
+71600,25302
+71601,70426
+71602,71601
+71603,31041
+71604,36343
+71605,69812
+71606,34673
+71607,61621
+71608,61622
+71609,60715
+71610,48408
+71611,47510,62654
+71612,78077
+71613,53717
+71614,31179
+71615,55261
+71616,39225
+71617,19438
+71618,38809
+71619,39279
+71620,64142
+71621,52255
+71622,29627
+71623,36602,47207
+71624,70426
+71625,70428
+71626,61075
+71627,29724
+71628,37179
+71629,53454
+71630,53454
+71631,27488
+71632,57456
+71633,71632
+71634,52586
+71635,35414
+71636,48077
+71637,48127
+71638,52801
+71639,54485
+71640,75013
+71641,71639
+71642,29969
+71643,56179
+71644,46599
+71645,44232
+71646,45946
+71647,20690
+71648,67498
+71649,67498
+71650,60216
+71651,70375
+71652,57927
+71653,79000
+71654,29744
+71655,52497
+71656,40619
+71657,54404
+71658,44451
+71659,19994
+71660,65956
+71661,65956
+71662,3704
+71663,36640
+71664,78772
+71665,30300
+71666,45260
+71667,77641
+71668,37181
+71669,43313
+71670,24395
+71671,24555
+71672,35557
+71673,57865
+71674,43786,24528
+71675,37624
+71676,72269
+71677,39578
+71678,48731
+71679,2130
+71680,41004
+71681,49876
+71682,52211
+71683,23579
+71684,53654
+71685,25113
+71686,45096
+71687,71697
+71688,69106
+71689,51472
+71690,31607
+71691,55350
+71692,37216
+71693,55351
+71694,46268
+71695,50605
+71696,62757
+71697,63314
+71698,53621
+71699,65215
+71700,65950
+71701,72034
+71702,72038
+71703,77995
+71704,78703
+71705,80440
+71706,66079
+71707,34924
+71708,34671
+71709,53621
+71710,60216
+71711,66079
+71712,25065
+71713,75989
+71714,75604
+71715,31245
+71716,71699
+71717,31047
+71718,70525
+71719,35557
+71720,55802
+71721,25546
+71722,71719
+71723,28638
+71724,50180
+71725,61336
+71726,65977
+71727,72399
+71728,30153
+71729,75436
+71730,25770
+71731,28821
+71732,41743
+71733,28822
+71734,32775
+71735,35908
+71736,37179
+71737,37179
+71738,35634
+71739,78197
+71740,53310
+71741,80821
+71742,54446
+71743,58041
+71744,40564
+71745,45118
+71746,56179
+71747,35926
+71748,39101
+71749,48372
+71750,65478
+71751,40
+71752,50359
+71753,71747
+71754,34924
+71755,63187
+71756,58152
+71757,55830
+71758,50803
+71759,69363,63389
+71760,72367
+71761,75439
+71762,78815
+71763,33475
+71764,33476
+71765,67972
+71766,25661
+71767,27855
+71768,35386
+71769,51894
+71770,27534
+71771,30962
+71772,30962
+71773,61733
+71774,70104
+71775,30962
+71776,30962
+71777,81193
+71778,35386
+71779,51894
+71780,30962
+71781,30962
+71782,30962
+71783,81193
+71784,43769
+71785,21959
+71786,77641
+71787,48870
+71788,50934
+71789,26233
+71790,26769
+71791,50856
+71792,653
+71793,27093
+71794,45732
+71795,51773
+71796,52658
+71797,49468
+71798,65347
+71799,71873
+71800,80324
+71801,28104
+71802,68030
+71803,22152
+71804,62147
+71805,81694
+71806,65579
+71807,35386
+71808,51894
+71809,30962
+71810,30962
+71811,30962
+71812,81193
+71813,51617
+71814,78024
+71815,80932
+71816,49515
+71817,67277,45383
+71818,38694
+71819,68974
+71820,22271
+71821,32362
+71822,74826
+71823,81535
+71824,70033
+71825,43766
+71826,67686
+71827,40752
+71828,39375
+71829,50919
+71830,23543
+71831,23541
+71832,31239
+71833,54445
+71834,41953
+71835,40736
+71836,79261
+71837,20406,51894
+71838,21475
+71839,21476
+71840,28591
+71841,21476
+71842,22164
+71843,31893
+71844,76631
+71845,49683
+71846,70399
+71847,71859
+71848,45546
+71849,45680
+71850,50560
+71851,53716
+71852,44567
+71853,63185
+71854,66838
+71855,71859
+71856,67921
+71857,19228
+71858,81781
+71859,32683,67921
+71860,29851
+71861,31894
+71862,79930
+71863,62766
+71864,21995
+71865,64831
+71866,61153
+71867,61302
+71868,61402
+71869,45007
+71870,24392
+71871,27832
+71872,60032
+71873,41657
+71874,81601
+71875,22451
+71876,59474
+71877,59475
+71878,18106
+71879,35557
+71880,48513
+71881,67957
+71882,74297
+71883,74296
+71884,59475
+71885,41417
+71886,57143
+71887,37482
+71888,69086
+71889,36800
+71890,51523
+71891,35735
+71892,51830
+71893,39049
+71894,74537
+71895,72426
+71896,70967
+71897,41119
+71898,35479
+71899,54562
+71900,61732
+71901,25600
+71902,26452
+71903,68355
+71904,31039
+71905,76663
+71906,19349
+71907,23891
+71908,66443
+71909,33515
+71910,60993
+71911,60032
+71912,77235
+71913,41417
+71914,76691
+71915,37405
+71916,56472
+71917,59340
+71918,48008
+71919,31039
+71920,42159
+71921,51120
+71922,37405
+71923,64526
+71924,79761,38878
+71925,53515
+71926,40231
+71927,81251
+71928,81746
+71929,71029
+71930,31762
+71931,25603
+71932,25598
+71933,59441
+71934,45302
+71935,39210
+71936,53590
+71937,31555
+71938,74939
+71939,36999
+71940,59128
+71941,18663
+71942,24611
+71943,40362
+71944,82050
+71945,50900
+71946,28890
+71947,25649
+71948,40752
+71949,63314
+71950,58801
+71951,56832
+71952,80324
+71953,78250
+71954,45009
+71955,70392
+71956,20745
+71957,37247
+71958,40293
+71959,56546
+71960,23190
+71961,21742
+71962,65171
+71963,75668
+71964,62145
+71965,79009
+71966,19108
+71967,78096
+71968,47655
+71969,80512
+71970,24162
+71971,50701
+71972,54440
+71973,61651
+71974,54655
+71975,40564
+71976,50737
+71977,35557
+71978,57556
+71979,75708
+71980,50907
+71981,19655
+71982,75472
+71983,32528
+71984,52691
+71985,66021
+71986,37197
+71987,37216
+71988,48531,61793
+71989,49487
+71990,72018
+71991,61422
+71992,65711
+71993,69325
+71994,79387
+71995,31153
+71996,35917
+71997,38807
+71998,28539
+71999,19280
+72000,27565
+72001,69860
+72002,38576
+72003,75510
+72004,49797
+72005,53717
+72006,65704
+72007,45521
+72008,60073
+72009,56023
+72010,35926
+72011,34737
+72012,59346
+72013,59346
+72014,48474
+72015,38606
+72016,67744
+72017,25434
+72018,21510
+72019,34127
+72020,72451
+72021,19947
+72022,64873
+72023,70179
+72024,35666
+72025,25002
+72026,26874
+72027,58010
+72028,60074
+72029,60011
+72030,63774
+72031,72421
+72032,20977
+72033,60534
+72034,72036
+72035,60552
+72036,58010
+72037,28776
+72038,21622
+72039,68342
+72040,51473
+72041,47273
+72042,48798
+72043,66686
+72044,78526
+72045,76256
+72046,19468,42076
+72047,54694
+72048,53701
+72049,79009
+72050,71965
+72051,22215
+72052,19171
+72053,30900
+72054,33928
+72055,35626
+72056,48486
+72057,58144
+72058,22220
+72059,71702
+72060,76160
+72061,76162
+72062,70246
+72063,81781
+72064,55347
+72065,58675
+72066,64831
+72067,64972
+72068,46091
+72069,19291
+72070,65636
+72071,72066,31539
+72072,47344
+72073,70562
+72074,77554
+72075,55374
+72076,36542
+72077,76517
+72078,54130
+72079,47323
+72080,66727
+72081,64417
+72082,43113
+72083,22410
+72084,72051
+72085,35105
+72086,58068
+72087,62895
+72088,81780
+72089,58262
+72090,31646
+72091,80735
+72092,82117
+72093,33488
+72094,59646
+72095,33498
+72096,72514
+72097,63105
+72098,78059
+72099,42114
+72100,34646
+72101,32372
+72102,32374
+72103,20755
+72104,77004
+72105,80460
+72106,41885
+72107,42114
+72108,74807
+72109,42115
+72110,42117
+72111,79211
+72112,31689
+72113,55299
+72114,80219
+72115,32718
+72116,68619
+72117,25256
+72118,41002
+72119,67131
+72120,67131
+72121,21745
+72122,38042
+72123,43104
+72124,18709
+72125,20698
+72126,43122
+72127,61866
+72128,72127
+72129,77822
+72130,67148
+72131,65295
+72132,67131
+72133,53624
+72134,22790
+72135,55686
+72136,60216
+72137,73015
+72138,62762
+72139,9455
+72140,25543
+72141,62725
+72142,40564
+72143,26884
+72144,31853
+72145,64438
+72146,20690
+72147,20123
+72148,70033
+72149,54469
+72150,75439
+72151,63064
+72152,41764
+72153,21373
+72154,63187
+72155,20683
+72156,39676
+72157,32642
+72158,72166
+72159,54789
+72160,11862
+72161,58088
+72162,58088
+72163,58088
+72164,80545
+72165,80542
+72166,45813
+72167,45813
+72168,60769
+72169,28548
+72170,22162
+72171,48144
+72172,66673
+72173,37406
+72174,61651
+72175,63218
+72176,47655
+72177,55984
+72178,72435
+72179,46256
+72180,45547
+72181,45625
+72182,50597
+72183,57594
+72184,31610
+72185,68854
+72186,29974
+72187,51643
+72188,40748
+72189,70876
+72190,47908
+72191,31477
+72192,31281
+72193,67053
+72194,36531
+72195,65836
+72196,67054
+72197,63650
+72198,29919
+72199,28954
+72200,28954
+72201,24354
+72202,44232
+72203,79258
+72204,24726
+72205,65584
+72206,20650
+72207,36710
+72208,70569
+72209,56492,41885
+72210,18740
+72211,51649
+72212,56440
+72213,72212
+72214,72212
+72215,79282
+72216,39767
+72217,60739
+72218,73222
+72219,67050
+72220,70033
+72221,76240
+72222,50862
+72223,72492
+72224,63064
+72225,59306
+72226,19244
+72227,54562
+72228,72227
+72229,53752
+72230,78865
+72231,45214
+72232,64142
+72233,45429
+72234,72232
+72235,42097
+72236,40326
+72237,52773
+72238,26171
+72239,45030
+72240,72242
+72241,72242
+72242,76059
+72243,40337
+72244,72242
+72245,24354
+72246,78739
+72247,53167
+72248,75665
+72249,35978
+72250,47455
+72251,51868
+72252,69677
+72253,61438
+72254,71403
+72255,40446
+72256,58200
+72257,33455
+72258,37120
+72259,67054
+72260,34199
+72261,57362
+72262,42020
+72263,68461
+72264,72518
+72265,70033
+72266,21977
+72267,38475
+72268,38475
+72269,79756
+72270,28590
+72271,72281
+72272,22050
+72273,19342
+72274,50273
+72275,63566
+72276,73507
+72277,47505
+72278,71557
+72279,38455
+72280,65771
+72281,23790
+72282,74926
+72283,50701
+72284,23790
+72285,76135
+72286,23790
+72287,48825
+72288,28539
+72289,63316
+72290,38475
+72291,65216
+72292,53624
+72293,44167
+72294,53624
+72295,53621
+72296,32225,21013
+72297,34107
+72298,70590
+72299,38887
+72300,27297
+72301,58120
+72302,32941
+72303,63212
+72304,61078
+72305,37688
+72306,60216
+72307,51388
+72308,46408
+72309,65108
+72310,35944
+72311,47432
+72312,56440
+72313,72451
+72314,56832
+72315,80716
+72316,63424
+72317,50317
+72318,63424
+72319,72314
+72320,70746
+72321,24005
+72322,52431
+72323,39676
+72324,18728
+72325,79282
+72326,48126
+72327,70568
+72328,47198
+72329,49440
+72330,81547
+72331,81626
+72332,53648
+72333,73761
+72334,59225
+72335,53648
+72336,25256
+72337,24393
+72338,39112
+72339,25435
+72340,69554
+72341,32662
+72342,41719
+72343,41250
+72344,19144
+72345,47871
+72346,25676
+72347,32187
+72348,44193
+72349,71719
+72350,34145
+72351,37794
+72352,48120
+72353,35719
+72354,64619
+72355,62951
+72356,69704
+72357,79905
+72358,35722
+72359,81626
+72360,75511
+72361,58308
+72362,54562
+72363,73395
+72364,48248
+72365,61541
+72366,47908
+72367,34114
+72368,27090
+72369,19849
+72370,19849
+72371,75020
+72372,78815
+72373,74488
+72374,61209
+72375,72376
+72376,19497
+72377,72376
+72378,34827
+72379,54189
+72380,21710
+72381,48126
+72382,35612
+72383,18820
+72384,48787
+72385,80217
+72386,26884
+72387,39049
+72388,42539
+72389,74647
+72390,56532
+72391,81643
+72392,62081
+72393,30535
+72394,74490
+72395,56194
+72396,18757
+72397,47444
+72398,81483
+72399,33532,31616
+72400,31618
+72401,32083
+72402,79953
+72403,70881
+72404,39572
+72405,75552
+72406,77340
+72407,72791
+72408,65956
+72409,19620
+72410,55332
+72411,65956
+72412,65956
+72413,50717
+72414,61246
+72415,41875
+72416,63472
+72417,72416
+72418,62360
+72419,60216
+72420,57461
+72421,35838
+72422,22032
+72423,79028
+72424,49902
+72425,27405
+72426,46966
+72427,72435,30697
+72428,42078
+72429,42076
+72430,20288
+72431,20825
+72432,27405
+72433,37193
+72434,56607
+72435,38218
+72436,37998
+72437,47655
+72438,53716
+72439,58760
+72440,68809
+72441,49341
+72442,56597
+72443,39177
+72444,22149
+72445,68809
+72446,68809
+72447,61402
+72448,61144
+72449,70987
+72450,53180
+72451,53205
+72452,80630
+72453,28703
+72454,49124
+72455,30699
+72456,59414
+72457,62810
+72458,80629
+72459,80632
+72460,29696
+72461,50273
+72462,20897
+72463,31975
+72464,61705
+72465,32694
+72466,74178
+72467,36933
+72468,66491
+72469,12331
+72470,38477
+72471,47116
+72472,52451
+72473,58579
+72474,20328
+72475,67608
+72476,67819
+72477,70688
+72478,41587
+72479,68610
+72480,37712
+72481,37712
+72482,65702,36052
+72483,57897
+72484,57627
+72485,80720
+72486,39579
+72487,29101
+72488,81747
+72489,45885
+72490,62146
+72491,60216
+72492,80372
+72493,60284
+72494,49205
+72495,40756
+72496,70987
+72497,21281
+72498,58783
+72499,58801,72501
+72500,50117
+72501,21276
+72502,43323
+72503,31239
+72504,58760
+72505,28536
+72506,38900
+72507,37623
+72508,39941
+72509,45009
+72510,40578
+72511,58088
+72512,63187
+72513,79828
+72514,48489
+72515,69222
+72516,34199
+72517,23763
+72518,37325
+72519,43107
+72520,68679
+72521,29691
+72522,22746
+72523,40752
+72524,66110
+72525,27196
+72526,28889
+72527,24427
+72528,53524
+72529,77666
+72530,68291
+72531,62693
+72532,79492
+72533,79493
+72534,80256
+72535,25017
+72536,23764
+72537,42381
+72538,73412
+72539,32591
+72540,71895
+72541,40841
+72542,46031
+72543,80400
+72544,53648
+72545,75018
+72546,67325
+72547,71900
+72548,22052
+72549,41119
+72550,49205
+72551,54813
+72552,66900
+72553,80753
+72554,65233
+72555,28952
+72556,61259
+72557,44232
+72558,81482
+72559,31417
+72560,23100
+72561,25872
+72562,19319
+72563,44456
+72564,60899
+72565,35626
+72566,61627
+72567,45007
+72568,40908
+72569,70994
+72570,61261
+72571,63104
+72572,63213
+72573,24726
+72574,42388
+72575,70033
+72576,33824
+72577,45813
+72578,32185
+72579,39283
+72580,60216
+72581,42523
+72582,67921
+72583,79009
+72584,72029
+72585,68780
+72586,67921
+72587,80239
+72588,48478
+72589,53375
+72590,71439
+72591,71395
+72592,60771
+72593,62367
+72594,52801
+72595,21597
+72596,66953
+72597,66953
+72598,56233
+72599,28074
+72600,19828
+72601,81193
+72602,30334
+72603,68056
+72604,38168
+72605,68058
+72606,80228
+72607,72606
+72608,69543
+72609,21745
+72610,45009
+72611,65239,65628
+72612,70399
+72613,57187
+72614,31489
+72615,54413
+72616,40967
+72617,67574
+72618,32457
+72619,40964
+72620,21480
+72621,21480
+72622,49997
+72623,53499
+72624,53593
+72625,21480
+72626,21480
+72627,57242
+72628,70526
+72629,66964
+72630,67565
+72631,43744
+72632,21480
+72633,65240
+72634,68330
+72635,79259
+72636,32530
+72637,79608
+72638,22786
+72639,32023
+72640,32520
+72641,60733
+72642,64446
+72643,55348
+72644,52262
+72645,48735
+72646,69363
+72647,724
+72648,51395
+72649,80913
+72650,74279
+72651,56832
+72652,52168
+72653,56832
+72654,21745
+72655,46839
+72656,39425
+72657,29692
+72658,52148
+72659,52211
+72660,31555
+72661,31080
+72662,55494
+72663,23243
+72664,49897
+72665,29418
+72666,40231
+72667,34107
+72668,68622
+72669,68465
+72670,51473
+72671,26311
+72672,53043
+72673,21412
+72674,52084
+72675,60216
+72676,22128
+72677,50341
+72678,22128
+72679,41899
+72680,66862
+72681,33918
+72682,26871
+72683,45813
+72684,11862
+72685,72248
+72686,23103
+72687,43801
+72688,56832
+72689,24874
+72690,22116
+72691,68522
+72692,58099
+72693,73042
+72694,47716
+72695,72853
+72696,28774
+72697,19849
+72698,34924
+72699,23021,72698
+72700,39370
+72701,42389
+72702,46125
+72703,46599
+72704,18958
+72705,76042
+72706,60810
+72707,45625
+72708,50117
+72709,73470
+72710,72141
+72711,23223
+72712,73838
+72713,26302
+72714,41107
+72715,74903
+72716,73222
+72717,25094
+72718,55760
+72719,51473
+72720,37712
+72721,30682
+72722,69216
+72723,70033
+72724,26211
+72725,50256
+72726,59377
+72727,68168
+72728,36384
+72729,61355
+72730,77575
+72731,61355
+72732,42142
+72733,33799,69977
+72734,35388
+72735,35400
+72736,38013
+72737,71987
+72738,39502
+72739,50839
+72740,74462
+72741,63544
+72742,66550
+72743,65925
+72744,80827
+72745,30008
+72746,32685
+72747,37712
+72748,48131
+72749,70033
+72750,35402
+72751,59775
+72752,20745
+72753,73437
+72754,39676
+72755,74279
+72756,46760
+72757,21757
+72758,77575
+72759,35461
+72760,21475
+72761,47744
+72762,47744
+72763,30498
+72764,21218
+72765,75788
+72766,81227
+72767,43362
+72768,81626
+72769,36874
+72770,71454
+72771,20122
+72772,67254
+72773,66859
+72774,61355
+72775,72776
+72776,80483
+72777,80638
+72778,48413
+72779,62187
+72780,42074
+72781,46620
+72782,56547
+72783,74591
+72784,33614
+72785,33614
+72786,36395
+72787,57680
+72788,42003
+72789,63936
+72790,46957
+72791,61259
+72792,41877
+72793,13529
+72794,59775
+72795,46962
+72796,27090
+72797,68432
+72798,46599
+72799,52836
+72800,68697
+72801,30954
+72802,57415
+72803,25366
+72804,44696
+72805,52814
+72806,65956
+72807,37873
+72808,39049
+72809,72055
+72810,71961
+72811,29623
+72812,35115
+72813,74903
+72814,52497
+72815,19926
+72816,30391
+72817,77308
+72818,39122
+72819,75472
+72820,28536
+72821,44440
+72822,81643
+72823,59775
+72824,62439
+72825,62146
+72826,62187
+72827,62144
+72828,79270
+72829,75057
+72830,76571
+72831,73448
+72832,34293
+72833,73447
+72834,59812
+72835,57594
+72836,79874
+72837,62187
+72838,40411
+72839,75027
+72840,79086
+72841,61796
+72842,62767
+72843,79867
+72844,79168
+72845,64632,42356
+72846,53214
+72847,34363
+72848,61976
+72849,68225
+72850,34365
+72851,77492
+72852,31245
+72853,71310
+72854,28545
+72855,76249
+72856,18713
+72857,73449
+72858,72860
+72859,33537
+72860,58166
+72861,73018
+72862,51677
+72863,55348
+72864,21589
+72865,30693
+72866,57922
+72867,58108
+72868,62743
+72869,66954
+72870,80440
+72871,60993
+72872,27688
+72873,58088
+72874,29067
+72875,54562
+72876,40820
+72877,76054
+72878,18728
+72879,45813
+72880,22219
+72881,37985
+72882,72881,24289
+72883,48077
+72884,30108
+72885,55984
+72886,59031
+72887,56166
+72888,52497
+72889,52497
+72890,61213
+72891,28146
+72892,28146
+72893,19231
+72894,36707
+72895,26318
+72896,28221
+72897,20789
+72898,20789
+72899,41743
+72900,23765
+72901,28654
+72902,25393
+72903,32045
+72904,79608
+72905,52658
+72906,67863
+72907,68025
+72908,40485
+72909,77051
+72910,53164
+72911,70110
+72912,41265
+72913,61906
+72914,41022
+72915,46027
+72916,66929
+72917,52084
+72918,72029
+72919,19492
+72920,37079
+72921,72895
+72922,60032
+72923,57390
+72924,51434
+72925,19234
+72926,72891
+72927,51319
+72928,58287
+72929,54957
+72930,71859
+72931,23760
+72932,19462
+72933,78236
+72934,51467
+72935,31647
+72936,33325
+72937,57572
+72938,37388
+72939,24781
+72940,26267
+72941,23182
+72942,61089,72935
+72943,62189
+72944,70214
+72945,65509
+72946,72945
+72947,72945
+72948,23764
+72949,46948
+72950,63003
+72951,19087
+72952,21959
+72953,59602
+72954,46781
+72955,59549
+72956,47744
+72957,37689
+72958,43809
+72959,22164
+72960,61793
+72961,19379
+72962,63380
+72963,38562
+72964,75954
+72965,34647
+72966,27323,29509
+72967,37130
+72968,43809
+72969,25499
+72970,28788
+72971,75772,63584
+72972,34363
+72973,62981
+72974,69083
+72975,37130
+72976,75492
+72977,77626
+72978,41243
+72979,47702
+72980,53033
+72981,76123
+72982,54044
+72983,54044
+72984,30657
+72985,30300
+72986,66040
+72987,26778
+72988,35922
+72989,66551
+72990,61796
+72991,81374
+72992,72990
+72993,32975
+72994,56836
+72995,37417
+72996,31991
+72997,53624
+72998,53657
+72999,62144
+73000,64513
+73001,39101
+73002,55353
+73003,73321
+73004,53959
+73005,81796
+73006,53375
+73007,33909
+73008,60612
+73009,54153
+73010,26937
+73011,53480
+73012,21282
+73013,53648
+73014,30391
+73015,68522
+73016,38384
+73017,25088
+73018,72959
+73019,21973
+73020,38135
+73021,70526
+73022,81801
+73023,50602
+73024,50603
+73025,32926
+73026,64779
+73027,58226
+73028,70746
+73029,34211
+73030,73762
+73031,25620
+73032,19171
+73033,19438
+73034,73029
+73035,20743
+73036,41119
+73037,41843
+73038,66066
+73039,52268
+73040,66066
+73041,65631
+73042,47558
+73043,68289
+73044,33500
+73045,53637
+73046,35557
+73047,75064
+73048,31239
+73049,35557
+73050,66132
+73051,23232
+73052,31139
+73053,19837
+73054,25216,73053
+73055,39929,73053
+73056,79151
+73057,66953
+73058,28475
+73059,30021
+73060,38919
+73061,27564
+73062,45559
+73063,48877
+73064,60993
+73065,51929
+73066,62434
+73067,78204
+73068,80834
+73069,25046
+73070,63677
+73071,31861
+73072,69744
+73073,32691
+73074,79274
+73075,51474
+73076,67946
+73077,43509
+73078,39466
+73079,74939
+73080,80152
+73081,20120
+73082,69573
+73083,18766
+73084,25920
+73085,33790
+73086,24897
+73087,30937
+73088,60042
+73089,37920
+73090,37921
+73091,37922
+73092,48030
+73093,39122
+73094,61336
+73095,63126
+73096,19266
+73097,77552
+73098,18770
+73099,52773
+73100,22746
+73101,20905
+73102,34733
+73103,79469
+73104,77185
+73105,41083
+73106,46620
+73107,46599,64412
+73108,50117
+73109,66997
+73110,18958
+73111,72066
+73112,31742
+73113,31742
+73114,30693
+73115,42387
+73116,53660
+73117,53660
+73118,45062
+73119,21572
+73120,79215
+73121,73412,21057
+73122,58088
+73123,45644
+73124,79371
+73125,78096
+73126,24244
+73127,80238
+73128,24726
+73129,71572
+73130,78238
+73131,79924
+73132,27609
+73133,81161
+73134,81161
+73135,77642
+73136,46901
+73137,81626
+73138,75258
+73139,34924
+73140,19994
+73141,69633
+73142,28591
+73143,78410
+73144,68787
+73145,45063
+73146,47369
+73147,59549
+73148,78096
+73149,71961
+73150,29368
+73151,24781
+73152,51928
+73153,74488
+73154,70987
+73155,77453
+73156,77453
+73157,33799
+73158,50173
+73159,73439
+73160,26106
+73161,28951
+73162,73161
+73163,73167,39449
+73164,32718
+73165,70033
+73166,73167
+73167,59194
+73168,61182
+73169,46599
+73170,55361
+73171,66786
+73172,53613
+73173,19560
+73174,59543
+73175,73161
+73176,20727
+73177,20690
+73178,44609
+73179,65946
+73180,60534
+73181,58004
+73182,24215
+73183,65929
+73184,60598
+73185,57934
+73186,29691
+73187,55025
+73188,24777
+73189,20120
+73190,65039
+73191,56227
+73192,21848
+73193,78753
+73194,70568
+73195,79282
+73196,76620
+73197,25256
+73198,31058
+73199,58745
+73200,58158
+73201,46553
+73202,19935,73200
+73203,53701
+73204,50117
+73205,45813
+73206,45813
+73207,35557
+73208,53628
+73209,57570
+73210,39811
+73211,22128
+73212,73211
+73213,62145
+73214,19698
+73215,67959
+73216,41110
+73217,54562
+73218,51411
+73219,26656,53127
+73220,72435
+73221,47655
+73222,47655
+73223,63819
+73224,51120
+73225,29390
+73226,36404
+73227,61415
+73228,50123
+73229,23232
+73230,79701
+73231,34837
+73232,72248
+73233,53291
+73234,60869
+73235,26302
+73236,40572
+73237,45813
+73238,81161
+73239,34602
+73240,32713
+73241,52904
+73242,21959
+73243,68996
+73244,39988
+73245,63060
+73246,56179
+73247,48037
+73248,22428
+73249,66066
+73250,49299
+73251,60216
+73252,65956
+73253,72256
+73254,24704
+73255,81722
+73256,60216
+73257,31241
+73258,31245
+73259,70183
+73260,35449
+73261,78866
+73262,33717
+73263,60534
+73264,21200
+73265,58803
+73266,56399
+73267,27021
+73268,59004
+73269,61732
+73270,69887
+73271,69887
+73272,36602
+73273,56179
+73274,21612
+73275,48156
+73276,48251
+73277,57929
+73278,58776
+73279,26415
+73280,30153
+73281,58144
+73282,24874
+73283,18854
+73284,77374
+73285,44794
+73286,56480
+73287,64921
+73288,41646
+73289,25202
+73290,76248
+73291,41877
+73292,82020
+73293,43766
+73294,45668
+73295,48870
+73296,73291
+73297,49263
+73298,37128
+73299,72791
+73300,65627
+73301,52596
+73302,58797
+73303,31179
+73304,66157
+73305,34327
+73306,61260
+73307,19698
+73308,35793
+73309,28028
+73310,47655
+73311,19699
+73312,74488
+73313,36496
+73314,63775
+73315,58776
+73316,69400
+73317,42228,40129
+73318,28927
+73319,38260
+73320,73222
+73321,54872
+73322,65974
+73323,27326
+73324,61260
+73325,52312
+73326,45035
+73327,72791
+73328,40752
+73329,45035,74488
+73330,53958
+73331,38218
+73332,41959
+73333,63850
+73334,27405
+73335,64414
+73336,68831
+73337,30937
+73338,76105
+73339,26103
+73340,35852
+73341,38629
+73342,47931
+73343,49014
+73344,30836
+73345,58023
+73346,23897
+73347,60534
+73348,62425
+73349,61202
+73350,67474
+73351,74903
+73352,77308
+73353,44511
+73354,41279
+73355,19657
+73356,74117
+73357,25595
+73358,36044
+73359,40292
+73360,48803
+73361,73360
+73362,53761
+73363,58587
+73364,63316
+73365,49962
+73366,49969
+73367,46675
+73368,63494
+73369,3720
+73370,74478
+73371,73352
+73372,39375
+73373,60810
+73374,65915
+73375,62266
+73376,73476
+73377,41444
+73378,41444
+73379,48414
+73380,48770
+73381,37712
+73382,65037
+73383,81873
+73384,57261
+73385,44052
+73386,29349
+73387,19438
+73388,64846
+73389,78625
+73390,28475
+73391,53648
+73392,50117
+73393,40752
+73394,68128
+73395,77444
+73396,61259
+73397,58200
+73398,21124
+73399,47812
+73400,21236
+73401,48590
+73402,38699
+73403,74165
+73404,79189
+73405,19051
+73406,42225
+73407,48126
+73408,33178
+73409,71311
+73410,22414
+73411,30349
+73412,26302
+73413,60097
+73414,68551
+73415,25700
+73416,25809
+73417,32645
+73418,32642
+73419,69887
+73420,53286
+73421,45813
+73422,60899
+73423,39638
+73424,12328
+73425,45813
+73426,68867
+73427,64182
+73428,68363
+73429,48318
+73430,22116
+73431,57421
+73432,72802
+73433,28312
+73434,53332
+73435,44167
+73436,32150
+73437,31964
+73438,73907
+73439,68691
+73440,22721
+73441,47816
+73442,62054
+73443,67717
+73444,60216
+73445,77045
+73446,49971
+73447,37824
+73448,73032
+73449,19171
+73450,34900
+73451,57423
+73452,58107
+73453,58107
+73454,56585
+73455,39475
+73456,79749
+73457,73445
+73458,61402
+73459,49997
+73460,61400
+73461,37802
+73462,76682
+73463,31118
+73464,30659
+73465,66193
+73466,79866
+73467,28167
+73468,53731
+73469,31616
+73470,21474
+73471,56180
+73472,19004
+73473,62994
+73474,63187
+73475,34646
+73476,66953
+73477,79953
+73478,43136
+73479,21875
+73480,35793
+73481,22053
+73482,69682
+73483,35793
+73484,28236
+73485,29936
+73486,73489
+73487,36101
+73488,60321
+73489,70214
+73490,11714
+73491,81227
+73492,22667
+73493,59450
+73494,73488
+73495,39801
+73496,25302
+73497,61486
+73498,51160
+73499,2623
+73500,36505
+73501,23285
+73502,19959
+73503,70549
+73504,32497
+73505,73669
+73506,45546
+73507,49888
+73508,25194
+73509,28982
+73510,61343
+73511,66238
+73512,40927
+73513,28616
+73514,73464
+73515,59431
+73516,18740
+73517,57934
+73518,62149
+73519,44697
+73520,58023
+73521,55348
+73522,22112
+73523,30554
+73524,44437
+73525,33922
+73526,61713
+73527,52956
+73528,34652
+73529,80485
+73530,20727
+73531,57874
+73532,28438
+73533,39088
+73534,61713
+73535,25393
+73536,45067
+73537,51464
+73538,60076
+73539,60870
+73540,61709
+73541,64927
+73542,79341
+73543,79905
+73544,68808
+73545,45009
+73546,34924
+73547,33452
+73548,69544
+73549,48251
+73550,34349
+73551,56459
+73552,37237
+73553,42358
+73554,40021
+73555,28546
+73556,46090
+73557,42225
+73558,69880
+73559,41226
+73560,51475
+73561,22163
+73562,37527
+73563,64175
+73564,40563
+73565,60216
+73566,48735
+73567,81752
+73568,62409
+73569,19811
+73570,35626
+73571,31555
+73572,45075
+73573,50789
+73574,80789
+73575,22901
+73576,39676
+73577,46096
+73578,30920
+73579,59431
+73580,36434
+73581,77108
+73582,26731
+73583,48478
+73584,80164
+73585,68280
+73586,61238
+73587,54435
+73588,43110
+73589,69544
+73590,27991
+73591,61154
+73592,31241
+73593,63193
+73594,67746
+73595,67750
+73596,43113
+73597,50649
+73598,50649
+73599,74051
+73600,73598
+73601,73598
+73602,73598
+73603,73598
+73604,29936
+73605,61253
+73606,78096
+73607,41165
+73608,72018
+73609,19629
+73610,61809
+73611,34811
+73612,45813
+73613,23946
+73614,24364
+73615,43766
+73616,70033
+73617,33726
+73618,68025
+73619,45699
+73620,47327
+73621,49118
+73622,44384
+73623,21398
+73624,27514
+73625,38555
+73626,23839
+73627,38555
+73628,50459
+73629,36044
+73630,40489
+73631,28600
+73632,74133
+73633,38722,57167
+73634,55346
+73635,32507
+73636,25113
+73637,63376
+73638,31469
+73639,45670
+73640,23644
+73641,51319
+73642,45408
+73643,40862
+73644,40745
+73645,77357
+73646,38042
+73647,57982
+73648,56371
+73649,76334
+73650,76334
+73651,19305
+73652,73664
+73653,29688
+73654,29928
+73655,32806
+73656,66702
+73657,30557
+73658,21224
+73659,56009,70731
+73660,56009
+73661,56009
+73662,70203
+73663,70013
+73664,78909
+73665,68990
+73666,50273
+73667,63405
+73668,63392
+73669,63314
+73670,34924
+73671,77452
+73672,47871
+73673,66860
+73674,40752
+73675,71637,48077
+73676,38475
+73677,38053
+73678,38053
+73679,45748
+73680,19191
+73681,20977
+73682,20977
+73683,41103
+73684,63386
+73685,37699
+73686,35156
+73687,38035
+73688,18913
+73689,21882
+73690,19656
+73691,38766
+73692,73544
+73693,38900
+73694,36800
+73695,37328
+73696,38699
+73697,22902
+73698,77985
+73699,69118
+73700,65509
+73701,41444
+73702,53648
+73703,51738
+73704,22128
+73705,59379
+73706,38768
+73707,59497
+73708,77059
+73709,44347
+73710,32222
+73711,55687
+73712,55685
+73713,69573
+73714,47655
+73715,76981
+73716,31468
+73717,32975
+73718,19458
+73719,59775
+73720,74939
+73721,56832
+73722,31353
+73723,22112
+73724,61078
+73725,68355
+73726,49266
+73727,39480
+73728,50701
+73729,79963
+73730,82151
+73731,31368
+73732,58367
+73733,22032
+73734,24977
+73735,56957
+73736,53648
+73737,39767
+73738,69197
+73739,30391
+73740,31991
+73741,37527
+73742,69235
+73743,31991
+73744,44171
+73745,28747
+73746,73738,50359
+73747,58081
+73748,64225
+73749,68802
+73750,54872
+73751,56294
+73752,55758
+73753,50139
+73754,61395
+73755,81626
+73756,25620
+73757,76620
+73758,38477
+73759,33640
+73760,59305
+73761,52312
+73762,21745
+73763,57169
+73764,19967
+73765,39381
+73766,51316
+73767,53952
+73768,54553
+73769,54561
+73770,54606
+73771,61709
+73772,41642
+73773,23712
+73774,22669
+73775,49797
+73776,53205
+73777,24726
+73778,68552
+73779,68551
+73780,26710
+73781,31975
+73782,36618
+73783,42523
+73784,47116
+73785,49767
+73786,53217
+73787,55563
+73788,55586
+73789,70688
+73790,69308
+73791,53206
+73792,31058
+73793,81626
+73794,60076
+73795,57627
+73796,22122
+73797,68285
+73798,68352
+73799,57298
+73800,77146
+73801,53175
+73802,51928
+73803,55348
+73804,22107
+73805,52957
+73806,77147
+73807,61263
+73808,61263
+73809,20760
+73810,25862
+73811,42023
+73812,48505
+73813,52052
+73814,25574
+73815,34305
+73816,60076
+73817,35103
+73818,73476
+73819,54562
+73820,54082
+73821,73820
+73822,73573,69573
+73823,43517
+73824,70033
+73825,72877
+73826,54964
+73827,42429
+73828,42514
+73829,48875
+73830,74488
+73831,73081
+73832,76146
+73833,51566
+73834,76146
+73835,30267
+73836,31547
+73837,25115
+73838,21745
+73839,59497
+73840,37237
+73841,22122
+73842,60216
+73843,71686
+73844,25620
+73845,42003
+73846,58229
+73847,61264,20038
+73848,61260
+73849,65202
+73850,65095
+73851,55984
+73852,23579
+73853,66066
+73854,48697
+73855,61302
+73856,52904
+73857,34199
+73858,61709
+73859,72805
+73860,39367
+73861,60168
+73862,65594
+73863,37954
+73864,28234
+73865,64978
+73866,30412
+73867,26298
+73868,62145
+73869,81647
+73870,81647
+73871,21112
+73872,31816
+73873,35236
+73874,53863
+73875,55756
+73876,31153
+73877,66953
+73878,50769
+73879,76664
+73880,29658
+73881,48157
+73882,49648
+73883,64142
+73884,57333
+73885,60238
+73886,56941
+73887,35557
+73888,46598
+73889,35557
+73890,25391
+73891,35557
+73892,35557
+73893,29423
+73894,31391
+73895,64142
+73896,58739
+73897,31200
+73898,28475
+73899,57242
+73900,34686
+73901,34357
+73902,25598
+73903,59775
+73904,57407
+73905,25115
+73906,62187
+73907,61260
+73908,58069
+73909,27091
+73910,80512
+73911,74575
+73912,20743
+73913,39511
+73914,70026
+73915,21978
+73916,19200
+73917,70399
+73918,47740
+73919,54774
+73920,43736
+73921,73669
+73922,66066
+73923,42154
+73924,59849
+73925,48077
+73926,65956
+73927,35388
+73928,49797
+73929,63064
+73930,69634
+73931,73929
+73932,21765
+73933,18831
+73934,72853
+73935,63064
+73936,79282
+73937,73926
+73938,34924
+73939,76981
+73940,70525
+73941,57408
+73942,28317
+73943,70033
+73944,79628
+73945,43848
+73946,21888
+73947,48661
+73948,75974
+73949,37828
+73950,58955
+73951,50426
+73952,30680
+73953,71837
+73954,54953
+73955,81601
+73956,75510
+73957,21703
+73958,79282
+73959,18791
+73960,30693
+73961,27405
+73962,54544
+73963,30275
+73964,50340
+73965,31690
+73966,31702
+73967,71315
+73968,48243
+73969,33889
+73970,29737,7764
+73971,35404
+73972,35855
+73973,77277
+73974,35882
+73975,57066
+73976,43110
+73977,66151
+73978,37191
+73979,27488
+73980,75510
+73981,39936
+73982,75510
+73983,35243
+73984,21963
+73985,44437
+73986,44438
+73987,45406
+73988,75902
+73989,31546
+73990,60216
+73991,76251
+73992,54044
+73993,60450
+73994,64142
+73995,48474
+73996,49362
+73997,65698
+73998,31457
+73999,55158
+74000,75510
+74001,50773
+74002,51242
+74003,42246
+74004,77452
+74005,28530
+74006,56803
+74007,67641
+74008,79282
+74009,52399
+74010,52504
+74011,74019
+74012,61078
+74013,77081
+74014,24977
+74015,67641
+74016,57066
+74017,70466
+74018,21200
+74019,80185
+74020,80716
+74021,31245
+74022,81798
+74023,19737
+74024,31642
+74025,44440
+74026,54044
+74027,57319
+74028,40986
+74029,21272
+74030,31447
+74031,70399
+74032,18740
+74033,75510
+74034,20756
+74035,20756
+74036,21922
+74037,29664
+74038,48107
+74039,31427
+74040,31429
+74041,34620
+74042,43913
+74043,74027
+74044,63497
+74045,76005
+74046,74044
+74047,59307
+74048,75510
+74049,81770
+74050,81770
+74051,62045
+74052,74090
+74053,36089
+74054,74500
+74055,33488
+74056,28591
+74057,59645
+74058,19732
+74059,31730
+74060,45063
+74061,62600
+74062,80175
+74063,68808
+74064,31245
+74065,74038
+74066,69330
+74067,70033
+74068,30937
+74069,50824
+74070,55026
+74071,36089
+74072,43964
+74073,74602
+74074,23780
+74075,74492
+74076,39381
+74077,71446
+74078,53477
+74079,75510
+74080,60600
+74081,53519
+74082,53519,59307
+74083,54788
+74084,56492
+74085,53463
+74086,81578
+74087,73001
+74088,38222
+74089,22032
+74090,28529
+74091,79175
+74092,29623
+74093,74082
+74094,74535
+74095,73598
+74096,47956
+74097,73738
+74098,29652
+74099,75019
+74100,54753
+74101,57164
+74102,56492
+74103,20977
+74104,76776
+74105,77482
+74106,35158
+74107,57066
+74108,31766
+74109,74274
+74110,26937
+74111,26936
+74112,34209
+74113,21529
+74114,57187
+74115,77630
+74116,29771
+74117,66042
+74118,66040
+74119,73967
+74120,74072
+74121,63494
+74122,58556
+74123,21742
+74124,77358
+74125,75913
+74126,76881
+74127,77357
+74128,52168
+74129,74088
+74130,63392
+74131,45096
+74132,22118
+74133,69235
+74134,56179
+74135,58106
+74136,19131
+74137,74088
+74138,57585
+74139,59812
+74140,27488
+74141,55688
+74142,65998
+74143,35557
+74144,34928
+74145,21238
+74146,79211
+74147,22248
+74148,69845
+74149,36498
+74150,41588
+74151,58144
+74152,28022
+74153,63791
+74154,31598
+74155,60784
+74156,82056
+74157,39572
+74158,65509
+74159,53717
+74160,5301
+74161,35432,61262
+74162,62757
+74163,34924
+74164,33395,48001
+74165,63775
+74166,73451
+74167,23391
+74168,58558
+74169,34038,70785
+74170,63988
+74171,53717
+74172,79200
+74173,23730
+74174,50784
+74175,39049
+74176,61198
+74177,37178
+74178,63677
+74179,37873
+74180,58779
+74181,54724
+74182,80510
+74183,64142
+74184,19574,37825
+74185,19576
+74186,47283
+74187,49769
+74188,24379
+74189,74191,39623
+74190,23790
+74191,19497
+74192,74795
+74193,74279
+74194,23742
+74195,23741
+74196,35558
+74197,27167
+74198,31853
+74199,74797
+74200,53072
+74201,67559
+74202,65496
+74203,44193
+74204,37175
+74205,72399
+74206,75013
+74207,36506
+74208,44758
+74209,23946
+74210,27175
+74211,43907
+74212,74800
+74213,74192,51833
+74214,27167
+74215,58215
+74216,74610
+74217,47388
+74218,46042
+74219,60259
+74220,63344
+74221,49763
+74222,49769
+74223,75955
+74224,25221
+74225,54760
+74226,19737
+74227,61699
+74228,72663
+74229,26602
+74230,38021
+74231,61402
+74232,42225
+74233,64142
+74234,69331
+74235,55756
+74236,21112
+74237,39049
+74238,19395
+74239,35557
+74240,45813
+74241,40352
+74242,20973
+74243,74242
+74244,74242
+74245,74242
+74246,74242
+74247,74242
+74248,19069
+74249,74242
+74250,67675
+74251,31058
+74252,74242
+74253,67675
+74254,19069
+74255,20995
+74256,28780
+74257,35319,42246,61828
+74258,40820,44221
+74259,58616
+74260,8184
+74261,56950
+74262,75732
+74263,66010
+74264,47477
+74265,46602
+74266,30129
+74267,26669
+74268,54553
+74269,67277
+74270,79619
+74271,32456
+74272,46740
+74273,69414
+74274,64160
+74275,21905
+74276,30391
+74277,81004
+74278,81482
+74279,70033
+74280,65908
+74281,72983
+74282,49360
+74283,58162
+74284,21529
+74285,74281
+74286,76662
+74287,68679
+74288,70033
+74289,50856
+74290,32461
+74291,47001
+74292,67999
+74293,68001
+74294,68254
+74295,71552
+74296,72635
+74297,72637
+74298,76114
+74299,75264
+74300,79028
+74301,53761
+74302,58102
+74303,81770
+74304,43724
+74305,81751,72420
+74306,66616
+74307,81750
+74308,66025
+74309,80640
+74310,74165
+74311,68030
+74312,47673
+74313,72892
+74314,72892
+74315,23393
+74316,66696
+74317,34152
+74318,42388
+74319,34389
+74320,66953
+74321,61092
+74322,34362
+74323,72575
+74324,75518
+74325,69464
+74326,23792
+74327,47432
+74328,23537
+74329,25285,74349
+74330,38287,40251
+74331,74354
+74332,34771
+74333,26076
+74334,49950
+74335,27625
+74336,76680
+74337,79052
+74338,36496
+74339,36434
+74340,73884
+74341,38537
+74342,41588
+74343,60032
+74344,40752
+74345,79261
+74346,37183
+74347,31794
+74348,72027
+74349,45260
+74350,35802
+74351,48390
+74352,42181
+74353,53970
+74354,51319
+74355,51318
+74356,81161
+74357,78482
+74358,22053
+74359,60126
+74360,48030
+74361,66939
+74362,32776
+74363,22053
+74364,60126
+74365,46767
+74366,72451
+74367,64231,77509
+74368,45560
+74369,42225
+74370,59559
+74371,25598
+74372,35620
+74373,22640
+74374,74738
+74375,57570
+74376,31084
+74377,75510
+74378,29621
+74379,52731
+74380,30417
+74381,37402
+74382,31464
+74383,37237
+74384,75510
+74385,23966
+74386,39703
+74387,39703
+74388,38122
+74389,54314
+74390,75766
+74391,69514
+74392,34670
+74393,21218
+74394,74537
+74395,72892
+74396,48169
+74397,64513
+74398,56484
+74399,48077
+74400,27581
+74401,65758
+74402,50701
+74403,20265
+74404,28327
+74405,28339
+74406,28238
+74407,31428
+74408,32527
+74409,38122
+74410,50097
+74411,50101
+74412,54014
+74413,57957
+74414,61220
+74415,63752
+74416,57514
+74417,18721
+74418,76068
+74419,76490
+74420,79305
+74421,21638
+74422,19462
+74423,64143
+74424,37275
+74425,62495
+74426,19353,19472
+74427,44333
+74428,57944
+74429,53018
+74430,55324
+74431,51642
+74432,28054
+74433,23790
+74434,78741
+74435,72892
+74436,60216
+74437,19231
+74438,75510
+74439,58616
+74440,20782
+74441,38053
+74442,75510
+74443,34643
+74444,61154
+74445,61154
+74446,28591
+74447,48316
+74448,48315
+74449,65896
+74450,23790
+74451,73598
+74452,50359
+74453,59338
+74454,73838
+74455,68289
+74456,57625
+74457,77482
+74458,57066
+74459,77076
+74460,45096
+74461,52920
+74462,74402
+74463,63187
+74464,67161
+74465,71439
+74466,67054
+74467,55686
+74468,71314
+74469,53593
+74470,26765
+74471,37042
+74472,65896
+74473,80037
+74474,47869
+74475,71317
+74476,38770
+74477,38021
+74478,26604
+74479,47908
+74480,37120
+74481,37124
+74482,53648
+74483,33361
+74484,59542
+74485,30682
+74486,48148
+74487,74502
+74488,34924
+74489,19228
+74490,19755
+74491,66086
+74492,66086
+74493,57932
+74494,19228
+74495,30531
+74496,73367
+74497,62810
+74498,59645
+74499,56485
+74500,19497
+74501,40150
+74502,73838
+74503,77185
+74504,31419
+74505,53717
+74506,36602
+74507,44474
+74508,62794
+74509,66153
+74510,40150
+74511,66151
+74512,37405
+74513,42429
+74514,38881
+74515,48077
+74516,66508
+74517,79282
+74518,79282
+74519,23790
+74520,19497
+74521,21770
+74522,18844
+74523,32527
+74524,24090
+74525,68809
+74526,54953
+74527,28616
+74528,30062
+74529,78188
+74530,31520
+74531,73042
+74532,28357
+74533,80438
+74534,27876
+74535,25495
+74536,21840
+74537,21745
+74538,50649
+74539,44567
+74540,69754
+74541,28803
+74542,41182
+74543,42358
+74544,70609
+74545,52691
+74546,22586
+74547,56231
+74548,80185
+74549,60603
+74550,37277
+74551,69887
+74552,25017
+74553,25046
+74554,41816
+74555,74812
+74556,80360
+74557,60032
+74558,47871
+74559,74512
+74560,35917
+74561,49997
+74562,60032
+74563,53710
+74564,66953
+74565,73185,31688
+74566,36451
+74567,53701
+74568,49945,74567
+74569,54163
+74570,73723
+74571,53754
+74572,56009
+74573,79485
+74574,21978
+74575,28530
+74576,35697
+74577,22112
+74578,27393
+74579,21770
+74580,21765
+74581,61422
+74582,61422
+74583,34434
+74584,60216
+74585,27688
+74586,72834
+74587,55324
+74588,79420
+74589,47833
+74590,44140
+74591,61763
+74592,74591
+74593,29879
+74594,38601
+74595,51523
+74596,53621
+74597,48408
+74598,73010
+74599,37908
+74600,74597
+74601,31668
+74602,20771
+74603,56179
+74604,60216
+74605,60216
+74606,20743
+74607,78647
+74608,44580
+74609,15725
+74610,31245
+74611,35557
+74612,23019
+74613,44407
+74614,60216
+74615,60598
+74616,21304
+74617,20983
+74618,36238
+74619,18978
+74620,54825
+74621,74494
+74622,48645
+74623,53656
+74624,34071
+74625,25920
+74626,60121
+74627,22907
+74628,46707
+74629,35791
+74630,63314
+74631,59762
+74632,26010
+74633,74489
+74634,71686
+74635,74478
+74636,14871
+74637,74222
+74638,76345
+74639,68641
+74640,49299
+74641,69401
+74642,72960
+74643,36072
+74644,36035
+74645,41516
+74646,47655
+74647,29692
+74648,68485
+74649,26411
+74650,31553
+74651,42225
+74652,79081
+74653,26416
+74654,24781
+74655,27176
+74656,59775
+74657,49032
+74658,77979
+74659,58287
+74660,31598
+74661,75435
+74662,49079
+74663,49903
+74664,7653
+74665,70524
+74666,80713
+74667,21814
+74668,66418
+74669,24302
+74670,20424
+74671,52121
+74672,28864
+74673,32345
+74674,34959
+74675,82167
+74676,652
+74677,38477
+74678,46662
+74679,49538
+74680,54467
+74681,70033
+74682,60899
+74683,81505
+74684,11867
+74685,74344
+74686,80927
+74687,81176
+74688,26457
+74689,21358
+74690,39049
+74691,36267
+74692,35822
+74693,58088
+74694,60071
+74695,35609
+74696,44437
+74697,80438
+74698,34470
+74699,37623,76043
+74700,24874
+74701,60744
+74702,71837
+74703,59543
+74704,22907
+74705,32578
+74706,47655
+74707,62409
+74708,24659
+74709,30891
+74710,31228
+74711,22684
+74712,36713
+74713,38220
+74714,38740
+74715,77985
+74716,42225
+74717,22901
+74718,22901
+74719,28168
+74720,34924
+74721,42225
+74722,43313
+74723,20745
+74724,48084
+74725,63738
+74726,39122
+74727,55348
+74728,68342
+74729,57296
+74730,68745
+74731,37712
+74732,75665
+74733,29691
+74734,52159
+74735,33725
+74736,75436
+74737,61251
+74738,80978
+74739,60936
+74740,40752
+74741,52658
+74742,70033
+74743,24302
+74744,46610
+74745,59451
+74746,59452
+74747,27840
+74748,28822
+74749,28821
+74750,45812
+74751,45813
+74752,29344
+74753,45813
+74754,32050
+74755,32051
+74756,45813
+74757,70033
+74758,53275
+74759,41371
+74760,70033
+74761,44609
+74762,44627
+74763,51659
+74764,50939,42680
+74765,58204
+74766,53830
+74767,57078
+74768,79261
+74769,58040
+74770,58041
+74771,79608
+74772,59978
+74773,27368
+74774,70033
+74775,60688
+74776,66977
+74777,55236
+74778,26409
+74779,67791
+74780,68036
+74781,40752
+74782,40752
+74783,21236
+74784,45813
+74785,79407
+74786,74067
+74787,79640
+74788,79640
+74789,45812
+74790,23675
+74791,81694
+74792,79189
+74793,67001
+74794,68685
+74795,40564
+74796,43744
+74797,52211
+74798,20691
+74799,74735
+74800,75439
+74801,19539
+74802,33475
+74803,33476
+74804,56164
+74805,32882
+74806,80438
+74807,37931,74939
+74808,78238
+74809,21161
+74810,74809
+74811,22032
+74812,77585
+74813,38984
+74814,80360
+74815,32642
+74816,53422
+74817,61947
+74818,49729
+74819,53757
+74820,61979,22035
+74821,73802
+74822,74823
+74823,42225
+74824,41469
+74825,34118
+74826,38529
+74827,48151
+74828,45830
+74829,19202
+74830,53648,61415
+74831,24874
+74832,32457
+74833,49158
+74834,55347
+74835,36101
+74836,79908
+74837,22032
+74838,51180
+74839,28398
+74840,73805
+74841,71686
+74842,44826
+74843,64632
+74844,48414
+74845,23309
+74846,31743
+74847,28529
+74848,24377
+74849,23420
+74850,51929
+74851,58969
+74852,61609
+74853,28267
+74854,57991
+74855,74847
+74856,57945
+74857,32492
+74858,28438
+74859,58966
+74860,74824
+74861,54813
+74862,73222
+74863,41100
+74864,34732
+74865,43409
+74866,56832
+74867,80512
+74868,68119
+74869,79608
+74870,27176
+74871,40965
+74872,39676
+74873,44013
+74874,75427
+74875,45337
+74876,67703
+74877,68330
+74878,70627
+74879,33646
+74880,50766
+74881,63809
+74882,53072
+74883,81482
+74884,39925
+74885,19683
+74886,57387
+74887,40551
+74888,68474
+74889,35879
+74890,50367
+74891,50369
+74892,36496
+74893,34808
+74894,82111
+74895,34226
+74896,51991
+74897,81462
+74898,47503
+74899,72271
+74900,54562
+74901,54562
+74902,55854
+74903,70214
+74904,65930
+74905,47437
+74906,51979
+74907,51991
+74908,21770
+74909,74903
+74910,62456
+74911,21765
+74912,48634
+74913,53607
+74914,39934
+74915,57725
+74916,22747
+74917,71949
+74918,18728
+74919,56456
+74920,58282
+74921,30891
+74922,74500
+74923,19565
+74924,39578
+74925,47814
+74926,27501
+74927,73726
+74928,57471
+74929,55756
+74930,31041
+74931,71588
+74932,58081
+74933,32718
+74934,19338
+74935,58162
+74936,65892
+74937,22127
+74938,31307
+74939,38564
+74940,47944
+74941,61145
+74942,49441
+74943,65958
+74944,58162
+74945,81578
+74946,33612
+74947,34924
+74948,75018
+74949,51566
+74950,75764
+74951,31900
+74952,19368
+74953,37404
+74954,37388
+74955,57927
+74956,53624
+74957,33612
+74958,66436
+74959,55734
+74960,49162
+74961,21738
+74962,78684
+74963,41940
+74964,33678
+74965,24354
+74966,19657
+74967,61788
+74968,56588
+74969,58175
+74970,58169
+74971,69012
+74972,26602
+74973,74939
+74974,31015
+74975,77945
+74976,19338
+74977,51562
+74978,28790
+74979,76135
+74980,36602
+74981,56179
+74982,69106
+74983,54098
+74984,58162
+74985,32363
+74986,81578
+74987,51148
+74988,69027
+74989,68793
+74990,49299
+74991,53848
+74992,48126
+74993,69331
+74994,73746
+74995,75019
+74996,43908
+74997,73835
+74998,63187
+74999,71441
+75000,54076
+75001,28790
+75002,65057
+75003,48474
+75004,37481,49697
+75005,31058
+75006,33259
+75007,66052,61874
+75008,42518
+75009,79328
+75010,70091
+75011,53701
+75012,73837
+75013,74795
+75014,53519
+75015,61203
+75016,25115
+75017,51771
+75018,48423
+75019,44437
+75020,54153
+75021,74462,31126
+75022,26975
+75023,29845
+75024,37478
+75025,35388
+75026,48403
+75027,53619
+75028,75027
+75029,75027
+75030,63187
+75031,68280
+75032,62456
+75033,58170
+75034,29432
+75035,52375
+75036,20531
+75037,20534
+75038,63765
+75039,45492
+75040,24835
+75041,60603
+75042,53288
+75043,73762
+75044,49683
+75045,78188
+75046,46721
+75047,27368
+75048,67594
+75049,36047
+75050,36047
+75051,22096
+75052,56539
+75053,71352
+75054,55760
+75055,42351
+75056,41917
+75057,41917
+75058,21622
+75059,60899
+75060,58740
+75061,75057
+75062,53940
+75063,42093
+75064,49945,33532
+75065,50272
+75066,51535
+75067,58734
+75068,63569
+75069,29426
+75070,31795
+75071,75063
+75072,63569
+75073,81251
+75074,79572
+75075,21618
+75076,75066
+75077,41214
+75078,46050
+75079,35273
+75080,72399
+75081,31618
+75082,70710
+75083,26885
+75084,28438
+75085,81614
+75086,80145
+75087,56601
+75088,24021
+75089,48225
+75090,36619
+75091,40428
+75092,73439
+75093,54544
+75094,48791
+75095,48157
+75096,58181
+75097,40863
+75098,68285
+75099,43997
+75100,75101
+75101,53624
+75102,27519
+75103,79847
+75104,76132
+75105,23591
+75106,55984
+75107,67570
+75108,28533
+75109,44963
+75110,81626
+75111,51531
+75112,51532
+75113,41054
+75114,41055
+75115,35557
+75116,31239
+75117,28834,48894
+75118,31498
+75119,61203
+75120,48478
+75121,80164
+75122,61238
+75123,54435
+75124,63314
+75125,47852
+75126,71580
+75127,70987
+75128,79671
+75129,50459
+75130,25714
+75131,53288
+75132,80618
+75133,75353
+75134,45389
+75135,39049
+75136,64628
+75137,27167
+75138,50091
+75139,28954
+75140,77147
+75141,50091
+75142,40986
+75143,70033
+75144,60216
+75145,60216
+75146,63187
+75147,59475
+75148,1332
+75149,72503
+75150,81161
+75151,66304
+75152,63064
+75153,40985,72584
+75154,65039
+75155,63213
+75156,40623
+75157,40036
+75158,34199
+75159,42337
+75160,67069
+75161,22540
+75162,22542
+75163,41657
+75164,42337
+75165,36542
+75166,75842
+75167,50273
+75168,42228
+75169,28460
+75170,69408
+75171,29928
+75172,12341
+75173,77287
+75174,21225
+75175,60993
+75176,80387
+75177,19697
+75178,19145
+75179,74488
+75180,81193
+75181,37317
+75182,1736
+75183,40016
+75184,79963
+75185,34126
+75186,34924
+75187,76588
+75188,31179
+75189,52957
+75190,39218
+75191,66676
+75192,34613
+75193,24057
+75194,31775
+75195,26731
+75196,22122
+75197,75796
+75198,33488
+75199,24002
+75200,43556
+75201,18112
+75202,44538
+75203,67793
+75204,54562
+75205,76870
+75206,38807
+75207,19655
+75208,47760
+75209,29977
+75210,29977
+75211,29977
+75212,39318
+75213,35533
+75214,50815
+75215,43789
+75216,31795
+75217,26010
+75218,71699
+75219,71961
+75220,55499
+75221,61647
+75222,70549
+75223,27093
+75224,33364
+75225,46285
+75226,43672
+75227,52857
+75228,44013
+75229,57594
+75230,78598
+75231,56073
+75232,81925
+75233,44013
+75234,73017
+75235,20755
+75236,20755
+75237,77590
+75238,29744
+75239,29671
+75240,43107
+75241,27276
+75242,35557
+75243,35557
+75244,20899
+75245,12327
+75246,53226
+75247,23550
+75248,37179
+75249,70033
+75250,43138
+75251,10287
+75252,36619
+75253,41444
+75254,36619
+75255,77280
+75256,20762
+75257,39049
+75258,76981
+75259,61504
+75260,61504
+75261,57417
+75262,47177
+75263,51327
+75264,58287
+75265,23095
+75266,77641
+75267,61153
+75268,77350
+75269,58462
+75270,28140
+75271,68702
+75272,16463
+75273,29503
+75274,37179
+75275,31601
+75276,73537
+75277,77820
+75278,61211
+75279,52938
+75280,65386
+75281,52939
+75282,53463
+75283,63316
+75284,56176
+75285,60206
+75286,58088
+75287,41188
+75288,33793
+75289,22853
+75290,63987
+75291,54441,21576,77273
+75292,79469
+75293,31618
+75294,41556
+75295,29418
+75296,21576
+75297,51929
+75298,21475
+75299,41911
+75300,61343
+75301,69661
+75302,69782
+75303,61621
+75304,58803
+75305,47908
+75306,28616
+75307,73464
+75308,36505
+75309,71493
+75310,19867
+75311,32691
+75312,81647
+75313,60411
+75314,25087
+75315,77287
+75316,52168
+75317,31043
+75318,45813
+75319,45813
+75320,54562
+75321,77075
+75322,54082
+75323,14871
+75324,28509
+75325,61335
+75326,76981
+75327,77147
+75328,61504
+75329,33797
+75330,73157
+75331,80257
+75332,81746
+75333,23095
+75334,39049
+75335,40132
+75336,73762
+75337,65215
+75338,53624
+75339,27740
+75340,37479
+75341,53660
+75342,21361
+75343,37479
+75344,52627
+75345,72503
+75346,31820
+75347,56087
+75348,39961
+75349,52256
+75350,31030
+75351,45077
+75352,39049
+75353,40557
+75354,48077
+75355,70395
+75356,41022
+75357,63677
+75358,57523
+75359,53355
+75360,60216
+75361,81626
+75362,37047
+75363,51120
+75364,71686
+75365,66965
+75366,71749
+75367,26290
+75368,63662
+75369,61063
+75370,78014
+75371,33793
+75372,71311
+75373,29195
+75374,72153
+75375,21718
+75376,76691
+75377,36904
+75378,20118
+75379,79492
+75380,80612
+75381,32452
+75382,58144
+75383,72435
+75384,65481
+75385,77045
+75386,69754
+75387,71572
+75388,65295
+75389,30937
+75390,58144
+75391,38700
+75392,59615
+75393,59610
+75394,50215
+75395,72764
+75396,52415
+75397,66965
+75398,21777
+75399,66977
+75400,27502
+75401,81103
+75402,27266
+75403,71398
+75404,45812
+75405,21688
+75406,34398
+75407,25256
+75408,62884
+75409,48126
+75410,70569
+75411,60733
+75412,59497
+75413,39049
+75414,33177
+75415,55221,75419
+75416,67957
+75417,47107
+75418,75411
+75419,67675
+75420,45813
+75421,31417
+75422,31417
+75423,78698
+75424,54440
+75425,74462
+75426,75425
+75427,19421
+75428,45813
+75429,45813
+75430,43987
+75431,21568
+75432,38793
+75433,35526
+75434,54862,38933
+75435,70987
+75436,69106
+75437,69123
+75438,38168
+75439,63314
+75440,28807
+75441,37513
+75442,48038
+75443,32965
+75444,58818
+75445,67745
+75446,37042
+75447,21544
+75448,56325
+75449,35482
+75450,67819
+75451,43790
+75452,44083
+75453,36627,26290
+75454,34771
+75455,34197
+75456,51068
+75457,8945
+75458,4374
+75459,51030
+75460,26118
+75461,31058
+75462,81735
+75463,78075
+75464,65894
+75465,26298
+75466,51068
+75467,53098
+75468,31029
+75469,36932
+75470,58579
+75471,73574
+75472,51138
+75473,68831
+75474,47869
+75475,19462
+75476,21903
+75477,26470
+75478,54601
+75479,21905
+75480,75498
+75481,24143
+75482,30392
+75483,26470
+75484,34209
+75485,33498
+75486,38524
+75487,41221
+75488,32456
+75489,43816
+75490,50603
+75491,51154
+75492,51238
+75493,63185
+75494,64833
+75495,50875
+75496,34209
+75497,50889
+75498,81779
+75499,51155
+75500,47678
+75501,26470
+75502,33797
+75503,32691
+75504,21670
+75505,36542
+75506,54130
+75507,64949
+75508,57934
+75509,59610
+75510,24243
+75511,24249
+75512,45969
+75513,75031
+75514,27991
+75515,59643
+75516,55815
+75517,65109
+75518,24007
+75519,70033
+75520,53593
+75521,45812
+75522,24007
+75523,73554
+75524,75521
+75525,22684
+75526,49897
+75527,26409
+75528,69311
+75529,28345
+75530,28849
+75531,75076
+75532,42181
+75533,43828
+75534,72399
+75535,56046
+75536,59378
+75537,67001
+75538,75086
+75539,75057
+75540,77105
+75541,77600
+75542,78943
+75543,70038
+75544,26884
+75545,31853
+75546,31308
+75547,18839
+75548,37204
+75549,33851
+75550,18873
+75551,62145
+75552,37198
+75553,35922
+75554,38218
+75555,28358
+75556,75548
+75557,54153
+75558,75552
+75559,33353
+75560,31618
+75561,77641
+75562,81482
+75563,49671
+75564,36694
+75565,20751
+75566,78698
+75567,72421
+75568,37199
+75569,21930
+75570,36540
+75571,36542
+75572,31885
+75573,62266
+75574,69173
+75575,36570
+75576,42246,28796
+75577,69634
+75578,33830
+75579,36568
+75580,56073
+75581,78815
+75582,45107
+75583,45813
+75584,81626
+75585,19272
+75586,57896
+75587,34924
+75588,66132
+75589,61382
+75590,72399
+75591,31618
+75592,31115
+75593,75604
+75594,54082
+75595,60699,54441
+75596,20530
+75597,41325
+75598,49991
+75599,68236
+75600,69216
+75601,72959
+75602,34837
+75603,38807
+75604,70629
+75605,54153
+75606,54153
+75607,33793
+75608,49136
+75609,61792
+75610,38807
+75611,61796
+75612,52513,38218
+75613,21278
+75614,39324
+75615,37996
+75616,56253
+75617,35611
+75618,55252
+75619,61415
+75620,82066
+75621,36743
+75622,74488
+75623,59818,43693
+75624,70515
+75625,46096
+75626,76662
+75627,50439
+75628,43698
+75629,44474
+75630,18830
+75631,18834
+75632,52199
+75633,50231
+75634,51814
+75635,75634
+75636,56168
+75637,26009
+75638,26014
+75639,26298
+75640,37409
+75641,53731
+75642,30884
+75643,37721
+75644,31308
+75645,55499
+75646,63567
+75647,54043
+75648,21200
+75649,41221
+75650,49683
+75651,70033
+75652,57945
+75653,56871
+75654,70214
+75655,75641
+75656,63569
+75657,78238
+75658,69012
+75659,68285
+75660,53621
+75661,70224
+75662,56492
+75663,19497
+75664,60450
+75665,25290
+75666,30891
+75667,63567
+75668,37479
+75669,75641
+75670,37365
+75671,25367
+75672,78995
+75673,31795
+75674,75685
+75675,48671
+75676,49056
+75677,31444
+75678,57945
+75679,75658
+75680,61503
+75681,62187
+75682,36970
+75683,30884
+75684,78703
+75685,81350
+75686,27062
+75687,60534
+75688,60534
+75689,77493
+75690,60543
+75691,77521
+75692,66776
+75693,52653
+75694,44658
+75695,21670
+75696,76196
+75697,28596
+75698,38516
+75699,38517
+75700,26016
+75701,75642
+75702,78097
+75703,57747
+75704,75705
+75705,37479
+75706,55049
+75707,56595
+75708,26010
+75709,65099
+75710,65912
+75711,66953
+75712,72893
+75713,26018
+75714,77500
+75715,29054
+75716,22979
+75717,57573
+75718,48171
+75719,48210
+75720,31058
+75721,28780
+75722,29263
+75723,38053
+75724,37805
+75725,60393
+75726,60393
+75727,31825
+75728,77523
+75729,23925
+75730,81626
+75731,47477
+75732,39578
+75733,37328
+75734,80258
+75735,37690
+75736,19368
+75737,30568
+75738,66155,56185
+75739,64647
+75740,71579
+75741,41862,60604
+75742,56179
+75743,43864
+75744,68059,75027
+75745,78703
+75746,81247
+75747,73492
+75748,54867
+75749,39531
+75750,26298
+75751,61145
+75752,58040
+75753,58041
+75754,64831
+75755,55765
+75756,75763
+75757,21701
+75758,28333
+75759,25256
+75760,27252
+75761,44730
+75762,51856
+75763,63314
+75764,65691
+75765,69028
+75766,79282
+75767,70568
+75768,72289
+75769,47638
+75770,31444,50486
+75771,48247
+75772,72959
+75773,34402
+75774,34783
+75775,48148
+75776,60216
+75777,35557
+75778,50439
+75779,73232
+75780,72447
+75781,50439
+75782,46251
+75783,66040
+75784,59643
+75785,39375,75782
+75786,30391
+75787,33644
+75788,35678
+75789,35389
+75790,24021
+75791,27408
+75792,53736
+75793,25046
+75794,69744
+75795,27562
+75796,57556
+75797,57113
+75798,33134
+75799,47716
+75800,31058
+75801,33500
+75802,19548
+75803,58776
+75804,30964
+75805,48126
+75806,31447
+75807,61260
+75808,21113
+75809,66042
+75810,71938
+75811,17277
+75812,8921
+75813,24146
+75814,32530
+75815,22786
+75816,27078
+75817,64447
+75818,30009
+75819,32520
+75820,75805,38099
+75821,51058
+75822,53422
+75823,22032,61395
+75824,75823
+75825,64446
+75826,73805
+75827,63218
+75828,70426
+75829,35387
+75830,61075
+75831,53608
+75832,70428
+75833,29724
+75834,36619
+75835,68027
+75836,23340
+75837,75805,74992
+75838,30300
+75839,55984
+75840,25564
+75841,25555
+75842,48321
+75843,43911
+75844,50367
+75845,50507
+75846,53026
+75847,53624
+75848,53624
+75849,53624
+75850,22743
+75851,73683
+75852,73706
+75853,73551
+75854,31245
+75855,45388
+75856,79165
+75857,55686
+75858,75857
+75859,80542
+75860,69682
+75861,55314
+75862,50489
+75863,40473
+75864,27997
+75865,59818
+75866,44309
+75867,63064
+75868,41444
+75869,46492
+75870,64757
+75871,52773
+75872,40945
+75873,50885
+75874,75901
+75875,61260
+75876,69667
+75877,75860,51947
+75878,30349
+75879,51665
+75880,31115
+75881,31115
+75882,31115
+75883,78703
+75884,64831
+75885,19656
+75886,44474
+75887,37639
+75888,78160
+75889,21013,20182
+75890,21006
+75891,54082
+75892,64797
+75893,27233
+75894,20819
+75895,20690
+75896,69771
+75897,70568
+75898,75897
+75899,75897
+75900,35557
+75901,76664
+75902,31546
+75903,81578
+75904,64160
+75905,61655
+75906,56399
+75907,48445
+75908,31050
+75909,60216
+75910,48534
+75911,37479
+75912,31607
+75913,73001
+75914,37734
+75915,50802
+75916,72066
+75917,28539
+75918,37802
+75919,81578
+75920,37805
+75921,73015
+75922,23762
+75923,37802
+75924,48318
+75925,50456
+75926,47047
+75927,44719
+75928,36983
+75929,36983
+75930,67167
+75931,75078
+75932,67169
+75933,77277
+75934,40619
+75935,75120
+75936,78286
+75937,79793
+75938,71838
+75939,73112
+75940,61220
+75941,76672
+75942,46966
+75943,35557
+75944,71493
+75945,44516
+75946,25113
+75947,23773
+75948,58170
+75949,21473
+75950,43104
+75951,30225
+75952,47589
+75953,60216
+75954,75951
+75955,64490
+75956,74577,75954
+75957,28165
+75958,61788
+75959,77460
+75960,26393
+75961,39049,77184
+75962,38883
+75963,75009
+75964,44059
+75965,57987
+75966,61621
+75967,40859
+75968,75971
+75969,49513
+75970,34197
+75971,76596
+75972,33246
+75973,32580
+75974,53921
+75975,22122
+75976,22122
+75977,22507
+75978,22885
+75979,81647
+75980,50872
+75981,66739
+75982,36542
+75983,38218
+75984,53422
+75985,47948
+75986,38600
+75987,60847
+75988,64746
+75989,66837
+75990,66953
+75991,78096
+75992,65956
+75993,66412
+75994,76007
+75995,32830
+75996,78059
+75997,60216
+75998,75997
+75999,47015
+76000,66114
+76001,27239
+76002,21703
+76003,79282
+76004,81436
+76005,38562
+76006,21898
+76007,38563
+76008,48945
+76009,38601
+76010,38798
+76011,65579
+76012,52820,43707
+76013,20621
+76014,63424
+76015,31700
+76016,48077
+76017,21069
+76018,47574
+76019,74973
+76020,81920
+76021,31795
+76022,51068
+76023,22036
+76024,28586
+76025,19069
+76026,51881
+76027,79401
+76028,31058
+76029,32187
+76030,20973
+76031,21014
+76032,40825
+76033,81803
+76034,44908
+76035,61871
+76036,63570
+76037,29368
+76038,69221
+76039,31389,74973
+76040,79419
+76041,79432
+76042,57704
+76043,34771
+76044,72408
+76045,72409
+76046,6615
+76047,78097
+76048,56542
+76049,55121
+76050,58616
+76051,38836
+76052,59419
+76053,53516
+76054,53516
+76055,63187
+76056,37192
+76057,31109
+76058,25302
+76059,52497
+76060,39122
+76061,58939
+76062,32974
+76063,64144
+76064,55766
+76065,79746
+76066,75124
+76067,31547
+76068,79282
+76069,56492
+76070,47228,55091
+76071,68853,75885
+76072,54082
+76073,33210
+76074,61260
+76075,25496
+76076,31682
+76077,68280
+76078,70395
+76079,38362
+76080,9930
+76081,29488
+76082,62145
+76083,57559
+76084,76085
+76085,19091
+76086,19755
+76087,66945
+76088,44816
+76089,66939
+76090,39318
+76091,66942
+76092,81703
+76093,65715
+76094,45556,60391
+76095,80524
+76096,53183
+76097,39308
+76098,77973
+76099,35430
+76100,69444
+76101,35051
+76102,23774
+76103,76135
+76104,26298
+76105,30939
+76106,33442
+76107,51316
+76108,61381
+76109,65579
+76110,72729
+76111,76518
+76112,60074
+76113,63110
+76114,63123
+76115,68677
+76116,2336
+76117,69600
+76118,32580
+76119,21458
+76120,65754
+76121,23792
+76122,72931
+76123,78179
+76124,47388
+76125,20472
+76126,78179
+76127,61655
+76128,21477
+76129,61792
+76130,61789
+76131,76138
+76132,74597
+76133,35480
+76134,68230
+76135,35922
+76136,27539
+76137,50764
+76138,35480
+76139,75020
+76140,52999
+76141,26065
+76142,63348
+76143,47388
+76144,48474
+76145,31419
+76146,38813
+76147,23790
+76148,68289
+76149,68289
+76150,68289
+76151,68289
+76152,68289
+76153,23790
+76154,23792
+76155,75020
+76156,75954
+76157,48001
+76158,71573,29869
+76159,53716
+76160,38807
+76161,74943
+76162,53694
+76163,51894
+76164,37481
+76165,62694
+76166,62694
+76167,81617
+76168,81193
+76169,51434
+76170,38209
+76171,61830
+76172,62957
+76173,57144
+76174,58776
+76175,59338
+76176,33424
+76177,37676
+76178,37490
+76179,69050
+76180,21415
+76181,25202,41774
+76182,28066
+76183,28803
+76184,33394
+76185,76196
+76186,60612
+76187,76196
+76188,37417
+76189,43997
+76190,53701
+76191,76196
+76192,34987
+76193,53621,28776
+76194,47090
+76195,49440
+76196,53624
+76197,53621
+76198,41943
+76199,57144
+76200,76196
+76201,61311
+76202,69118
+76203,79041
+76204,61311
+76205,50649
+76206,65641
+76207,76186
+76208,76162
+76209,77961
+76210,67969
+76211,81592
+76212,62648
+76213,51068
+76214,25681
+76215,28054
+76216,80910
+76217,21006,79401
+76218,35815
+76219,58158
+76220,55677
+76221,70646
+76222,31235
+76223,53454
+76224,12331
+76225,21738
+76226,35254
+76227,31506
+76228,81052
+76229,32929
+76230,35565
+76231,51408
+76232,63426
+76233,69484
+76234,27274,31616
+76235,31618
+76236,20641
+76237,21060
+76238,41589
+76239,57077
+76240,60216
+76241,70526
+76242,39578
+76243,45096
+76244,72983
+76245,19768
+76246,18839
+76247,22164
+76248,38003
+76249,21745
+76250,19200
+76251,60600
+76252,63316
+76253,34415
+76254,21729
+76255,30937
+76256,48474
+76257,48474
+76258,46042
+76259,72971
+76260,31506
+76261,35254
+76262,69597
+76263,38475
+76264,76263
+76265,67675
+76266,19069
+76267,21025
+76268,23062,78076
+76269,52762
+76270,21025
+76271,52762
+76272,58158
+76273,64757
+76274,48662
+76275,52691
+76276,26496
+76277,40121
+76278,60216
+76279,23220
+76280,62142
+76281,48114
+76282,48640
+76283,35254
+76284,38382
+76285,69118
+76286,42387
+76287,11909
+76288,50623
+76289,21382
+76290,59380
+76291,60214
+76292,77264
+76293,77837
+76294,79354
+76295,36523
+76296,50439
+76297,64757
+76298,34093
+76299,76662
+76300,64757
+76301,50439
+76302,57066
+76303,80583
+76304,59070
+76305,78583
+76306,50789
+76307,19193
+76308,21097
+76309,52421
+76310,53716
+76311,72212
+76312,74973
+76313,79282
+76314,79429
+76315,28260
+76316,79282
+76317,47805
+76318,25115
+76319,25115
+76320,25115
+76321,54562
+76322,54082
+76323,76322
+76324,67323
+76325,70033
+76326,46929
+76327,45813
+76328,70557
+76329,19438
+76330,64409
+76331,20743
+76332,46620
+76333,46621
+76334,66727
+76335,31468
+76336,54562
+76337,23790
+76338,77374
+76339,50439
+76340,64757
+76341,25238
+76342,74818
+76343,58287
+76344,34272
+76345,31991
+76346,24726
+76347,60032
+76348,49059
+76349,80583
+76350,80164
+76351,34166
+76352,35188
+76353,55499
+76354,21214
+76355,67120
+76356,20079
+76357,38204
+76358,69744
+76359,80185
+76360,64453
+76361,35255
+76362,30758
+76363,23232
+76364,51435
+76365,26600
+76366,19840
+76367,78238
+76368,24209
+76369,29468
+76370,70033
+76371,73232
+76372,70928
+76373,31309
+76374,74846
+76375,64409
+76376,30300
+76377,69331
+76378,38366
+76379,69564
+76380,39373
+76381,69171
+76382,21474
+76383,23762
+76384,69106
+76385,51982
+76386,41842
+76387,48495
+76388,57927
+76389,74067
+76390,34647
+76391,47719
+76392,69860
+76393,38642
+76394,19467
+76395,76500
+76396,57897
+76397,59420
+76398,38920
+76399,78112
+76400,63426
+76401,27093
+76402,58776
+76403,63765
+76404,71686
+76405,35762
+76406,19718
+76407,74180
+76408,22351
+76409,18728
+76410,30019
+76411,24823
+76412,63921,22305
+76413,74939
+76414,57451
+76415,52469
+76416,60370
+76417,76162
+76418,60459
+76419,30020
+76420,57451
+76421,29915
+76422,28439
+76423,62145
+76424,72242
+76425,58416
+76426,57982
+76427,23653
+76428,42078
+76429,63363
+76430,55494
+76431,76429
+76432,80612
+76433,33464
+76434,19233
+76435,60216
+76436,34924
+76437,81626
+76438,71686
+76439,27148
+76440,70426
+76441,58287
+76442,76441
+76443,32975
+76444,23589
+76445,47818
+76446,76110
+76447,66838
+76448,55662
+76449,32926
+76450,54082
+76451,32578
+76452,40089
+76453,57060
+76454,46268
+76455,40100
+76456,40112
+76457,40115
+76458,48415
+76459,68448
+76460,63424
+76461,75106,59031
+76462,24874
+76463,71686
+76464,56832
+76465,30514
+76466,72271
+76467,51366
+76468,76464
+76469,56841
+76470,33340
+76471,64667
+76472,73481
+76473,71686
+76474,19097
+76475,24874
+76476,33075
+76477,33876
+76478,45813
+76479,45812
+76480,67826
+76481,79416
+76482,64031
+76483,60411
+76484,46553
+76485,37832
+76486,48838
+76487,27726
+76488,37832
+76489,46553
+76490,79282
+76491,18728
+76492,48126
+76493,20355
+76494,48838
+76495,46553
+76496,46553
+76497,76489
+76498,40759
+76499,77646
+76500,48318
+76501,48318
+76502,70033
+76503,71505
+76504,49221
+76505,50867
+76506,79282
+76507,70568
+76508,76507
+76509,76507
+76510,78362
+76511,53524
+76512,18896
+76513,71686
+76514,74067
+76515,28596
+76516,59020
+76517,74303
+76518,30657
+76519,21321
+76520,59411
+76521,69010
+76522,25330
+76523,36106
+76524,46251
+76525,64287
+76526,81223
+76527,39049
+76528,33519
+76529,77147
+76530,39962
+76531,30296
+76532,26457
+76533,70214
+76534,25022
+76535,76513
+76536,23284
+76537,76538
+76538,33425
+76539,73636
+76540,52999
+76541,80438,26899
+76542,80438
+76543,82151
+76544,28954
+76545,79175
+76546,60126
+76547,76664
+76548,68668
+76549,47948
+76550,30052
+76551,28546
+76552,58120
+76553,29695
+76554,65108
+76555,40752
+76556,38189
+76557,70962
+76558,31991
+76559,25620
+76560,23536
+76561,49222
+76562,64435
+76563,66859
+76564,60869
+76565,58558
+76566,66702
+76567,66985
+76568,50652
+76569,81626
+76570,45302
+76571,68697
+76572,60216
+76573,24084
+76574,23748
+76575,36047
+76576,81153
+76577,32627
+76578,33242,76573
+76579,51400
+76580,51400
+76581,21462
+76582,64873
+76583,20328
+76584,65977
+76585,37317
+76586,37794
+76587,40060
+76588,20226
+76589,47558
+76590,66985
+76591,46675
+76592,24084
+76593,76573
+76594,34985
+76595,52905
+76596,70710
+76597,66945
+76598,33542
+76599,66939
+76600,60032
+76601,81626
+76602,21276
+76603,71446
+76604,33326
+76605,69845
+76606,39375
+76607,51120
+76608,33318
+76609,59331
+76610,62147
+76611,59774
+76612,20698
+76613,66702
+76614,34924
+76615,31245
+76616,81871
+76617,35557
+76618,59497
+76619,62187
+76620,23536
+76621,46178
+76622,51468
+76623,64873
+76624,77641
+76625,81448
+76626,58583
+76627,71697
+76628,36619
+76629,76664
+76630,54993
+76631,76664
+76632,38793
+76633,22164
+76634,27786
+76635,22790
+76636,29283
+76637,41930
+76638,59605
+76639,68062
+76640,74846
+76641,59637
+76642,38601
+76643,62703
+76644,25202
+76645,70524
+76646,31616
+76647,29845
+76648,76657
+76649,64846
+76650,28359
+76651,67991
+76652,36317
+76653,60534
+76654,38868
+76655,76664
+76656,59468
+76657,53619
+76658,76664
+76659,51836
+76660,52497
+76661,57067
+76662,76664
+76663,76664
+76664,41862
+76665,36800
+76666,73007
+76667,69559
+76668,81801
+76669,70214
+76670,55760
+76671,76657
+76672,53619
+76673,82152
+76674,81801
+76675,27500
+76676,29744
+76677,57572
+76678,19228
+76679,29280
+76680,53624
+76681,43821
+76682,76680
+76683,76664
+76684,57980
+76685,68185
+76686,68185
+76687,81601
+76688,59970
+76689,39502
+76690,39504
+76691,75756
+76692,65638
+76693,23972
+76694,45317
+76695,44013
+76696,56321
+76697,79469
+76698,54082
+76699,34821
+76700,48329
+76701,77452
+76702,69641
+76703,42096
+76704,30498
+76705,53717
+76706,76705,21060
+76707,70524
+76708,25574
+76709,63275
+76710,78104
+76711,41875
+76712,76711
+76713,76711
+76714,76711
+76715,76711
+76716,76711
+76717,76711
+76718,76719
+76719,55314
+76720,40938
+76721,71686
+76722,49032
+76723,38804
+76724,78785
+76725,21276
+76726,21276
+76727,74939
+76728,34199
+76729,76345
+76730,71039
+76731,75106
+76732,44817
+76733,30495
+76734,21732
+76735,37805
+76736,44558
+76737,48156
+76738,49412
+76739,23313
+76740,63663
+76741,36089
+76742,27296
+76743,36499
+76744,72715
+76745,19492
+76746,77807
+76747,76735
+76748,77014
+76749,77641
+76750,34591,34163
+76751,34808
+76752,46507
+76753,28417
+76754,45009,51120
+76755,45819
+76756,25115
+76757,59020
+76758,76416
+76759,34989
+76760,66266
+76761,19069
+76762,54082
+76763,60786,58616
+76764,35309
+76765,31149
+76766,45260
+76767,51138
+76768,57559
+76769,23111
+76770,59643
+76771,20690
+76772,11862
+76773,38725
+76774,21612
+76775,34197
+76776,73987
+76777,81789
+76778,56009
+76779,21224
+76780,50885
+76781,45406
+76782,21224
+76783,50091
+76784,34229
+76785,58760
+76786,28593
+76787,58287
+76788,79877
+76789,21200
+76790,50565
+76791,50567
+76792,17570
+76793,8921
+76794,50835
+76795,59497
+76796,8179
+76797,67362
+76798,72248
+76799,40752
+76800,19629
+76801,28132
+76802,25770
+76803,76809
+76804,49888
+76805,74500
+76806,49888
+76807,31858
+76808,41214
+76809,53384
+76810,64435
+76811,61262,36610
+76812,45813
+76813,27997
+76814,48030
+76815,67639
+76816,36298
+76817,55284
+76818,61265
+76819,64015
+76820,62360
+76821,69860
+76822,76395
+76823,69870
+76824,70776
+76825,70779
+76826,70778
+76827,20977
+76828,55552
+76829,20972
+76830,55756
+76831,19907
+76832,23796
+76833,80618
+76834,62703
+76835,33933
+76836,28952
+76837,31960
+76838,25115
+76839,35187,38983
+76840,59306
+76841,32578
+76842,20015
+76843,78851
+76844,67769
+76845,33799
+76846,12791
+76847,63424
+76848,73018
+76849,41070
+76850,81752
+76851,55983
+76852,65441
+76853,52916
+76854,29839
+76855,76854
+76856,29895
+76857,48403
+76858,39423
+76859,39423
+76860,49298
+76861,74846
+76862,29928
+76863,81626
+76864,61526
+76865,66953
+76866,36450
+76867,22684
+76868,25545
+76869,49881
+76870,62390
+76871,76874
+76872,68691
+76873,71269
+76874,76757
+76875,77367
+76876,60078
+76877,48423
+76878,28475
+76879,63696
+76880,70204
+76881,35595
+76882,74903
+76883,23775
+76884,55026
+76885,59645
+76886,74255
+76887,79224
+76888,74255,47242
+76889,54086
+76890,22152
+76891,37873
+76892,20117
+76893,51205
+76894,60178
+76895,39556
+76896,25920
+76897,52037
+76898,75677
+76899,77277
+76900,25367
+76901,70220
+76902,42337
+76903,37712
+76904,56950
+76905,22865
+76906,77641
+76907,20047,71567
+76908,19069
+76909,36047
+76910,80512
+76911,51781
+76912,71463
+76913,44384
+76914,44384
+76915,71463
+76916,45813
+76917,24726
+76918,31145
+76919,27997
+76920,49391
+76921,48202
+76922,71881
+76923,81980
+76924,20120
+76925,52159
+76926,43313
+76927,25302
+76928,27319
+76929,18366
+76930,41955
+76931,33933
+76932,44491
+76933,64142
+76934,61075
+76935,71688
+76936,53023
+76937,48662
+76938,53648
+76939,34017
+76940,56171
+76941,60494
+76942,71557
+76943,53454
+76944,52156
+76945,34924
+76946,79189
+76947,53023
+76948,40473
+76949,63213
+76950,58144,21743
+76951,55281
+76952,34665
+76953,24354
+76954,68030
+76955,21718
+76956,40538
+76957,58088
+76958,41657
+76959,57066
+76960,53717
+76961,71408
+76962,73684
+76963,38135
+76964,49687
+76965,71546
+76966,75854
+76967,62703
+76968,23541
+76969,23550
+76970,36841
+76971,53624
+76972,53621
+76973,50438
+76974,52431
+76975,18728
+76976,48126
+76977,59520
+76978,69581
+76979,20835
+76980,51270
+76981,47655
+76982,77287
+76983,22684
+76984,20122
+76985,28849
+76986,52773
+76987,69604
+76988,71686
+76989,25256
+76990,63218
+76991,63218
+76992,73837
+76993,53613
+76994,39183
+76995,41877
+76996,34582
+76997,68115
+76998,71353
+76999,19051
+77000,62835
+77001,26166,76877
+77002,41743
+77003,72575
+77004,80720
+77005,34582
+77006,60662,73761
+77007,71686
+77008,65581
+77009,48494
+77010,61355
+77011,81463
+77012,32578
+77013,78234
+77014,70111
+77015,61415
+77016,47908
+77017,30584
+77018,19272
+77019,19376
+77020,39702
+77021,82191
+77022,25876
+77023,51292
+77024,53958
+77025,64175
+77026,66756
+77027,77509,54562
+77028,64231
+77029,77042
+77030,67565
+77031,78896
+77032,42181
+77033,21669
+77034,31638
+77035,69153
+77036,20647
+77037,39027
+77038,48532
+77039,37698
+77040,45392
+77041,32891
+77042,53369
+77043,33645
+77044,33519
+77045,61646
+77046,43106
+77047,69544
+77048,81703
+77049,77046
+77050,63861
+77051,31336
+77052,75919
+77053,51150
+77054,76124
+77055,81626
+77056,81626
+77057,81396
+77058,30062
+77059,42232
+77060,67565
+77061,80526
+77062,71446
+77063,72193
+77064,45260
+77065,66786
+77066,46070
+77067,51316
+77068,65725
+77069,70426
+77070,71595
+77071,50701
+77072,51319
+77073,26368
+77074,40519
+77075,57991
+77076,33599
+77077,71517
+77078,38839
+77079,40231
+77080,38839,19907
+77081,21545
+77082,34821
+77083,80185
+77084,78096
+77085,60598
+77086,31812
+77087,81746
+77088,62767
+77089,33425
+77090,46757
+77091,41103
+77092,53624
+77093,25115
+77094,81808
+77095,59376
+77096,26884
+77097,59475
+77098,18740
+77099,58921
+77100,32056
+77101,78286
+77102,46555
+77103,36047
+77104,57280
+77105,55314
+77106,35753
+77107,58776
+77108,60208
+77109,66953
+77110,57991
+77111,54953
+77112,67131
+77113,55348
+77114,67594
+77115,76435
+77116,53413
+77117,52280
+77118,35557
+77119,77099
+77120,70987
+77121,33832
+77122,76135
+77123,37104
+77124,47295
+77125,39572
+77126,35474
+77127,43809
+77128,42451
+77129,31417
+77130,49792
+77131,37622
+77132,30530,37622
+77133,23790
+77134,60216
+77135,18720
+77136,60661
+77137,77136
+77138,71508
+77139,19334
+77140,75124
+77141,70987
+77142,71575,38933
+77143,53021
+77144,22107
+77145,60019
+77146,31604
+77147,19171
+77148,74220
+77149,78426
+77150,654
+77151,31122
+77152,78424
+77153,41054
+77154,50317
+77155,68355
+77156,60216
+77157,70139
+77158,26389
+77159,44826
+77160,49343
+77161,39511
+77162,44561
+77163,33275
+77164,27405
+77165,30659
+77166,77585
+77167,22160
+77168,18958
+77169,77509,54562
+77170,31646
+77171,31646
+77172,39992
+77173,53637
+77174,68084
+77175,19482
+77176,47697
+77177,30930
+77178,36393
+77179,77995
+77180,60744
+77181,64435
+77182,23021
+77183,46507
+77184,39049
+77185,73838
+77186,66800
+77187,32888
+77188,59587
+77189,24804
+77190,40068
+77191,51475
+77192,55651
+77193,55652
+77194,57573
+77195,20824
+77196,30025
+77197,43814
+77198,53761
+77199,51886
+77200,77204
+77201,77204
+77202,19379
+77203,59812
+77204,66040
+77205,59541
+77206,24834
+77207,47487
+77208,74973
+77209,70515
+77210,80227
+77211,36760
+77212,34326
+77213,39331
+77214,53711
+77215,60375
+77216,61690
+77217,47572
+77218,48077
+77219,65902
+77220,34924
+77221,10367
+77222,28849
+77223,35944
+77224,48030
+77225,61976
+77226,36007
+77227,77223
+77228,77223
+77229,70033
+77230,69860
+77231,65541
+77232,39798
+77233,53175
+77234,51475
+77235,70987
+77236,47944
+77237,34851
+77238,28780
+77239,79000
+77240,34845
+77241,48408
+77242,64547
+77243,20385
+77244,34199
+77245,78113
+77246,27731
+77247,79282
+77248,79215
+77249,48126
+77250,48126
+77251,57934
+77252,44769
+77253,39014
+77254,36405
+77255,35517
+77256,36404
+77257,59020
+77258,67161
+77259,44347
+77260,21745
+77261,66727
+77262,23854
+77263,59542
+77264,23021
+77265,77267
+77266,68894
+77267,72421
+77268,41083
+77269,53757
+77270,65203
+77271,19016
+77272,37478
+77273,68990
+77274,46962
+77275,75016
+77276,77633
+77277,43104
+77278,46782
+77279,46827
+77280,77374
+77281,63725
+77282,51929
+77283,77995
+77284,68990
+77285,49158
+77286,30650
+77287,57461
+77288,26575
+77289,63316
+77290,31037
+77291,36317
+77292,63420
+77293,24145
+77294,25302
+77295,34319
+77296,34227
+77297,52578
+77298,56009
+77299,41155
+77300,59542
+77301,68771
+77302,68778
+77303,81626
+77304,62791
+77305,32685
+77306,53180
+77307,38633
+77308,53959
+77309,21959
+77310,59970
+77311,30650
+77312,27502
+77313,76882
+77314,31638
+77315,60450
+77316,22103
+77317,58257
+77318,31489
+77319,30391
+77320,30883
+77321,30650
+77322,49438
+77323,31742
+77324,61764
+77325,32527
+77326,48958
+77327,33172
+77328,50354
+77329,51311
+77330,59542
+77331,44609
+77332,81781
+77333,19231
+77334,19234
+77335,36373
+77336,40567
+77337,77335
+77338,60400
+77339,27730
+77340,59543
+77341,77261
+77342,55376
+77343,74462
+77344,23763
+77345,66515
+77346,68383
+77347,31825
+77348,80761
+77349,27078
+77350,77995
+77351,63936
+77352,70033
+77353,37166
+77354,81161
+77355,31476
+77356,60744
+77357,63659
+77358,39358
+77359,76258
+77360,61415
+77361,30934,54443
+77362,54444
+77363,22128
+77364,57113
+77365,19757
+77366,50701
+77367,19228
+77368,30408
+77369,37202
+77370,68236
+77371,25020
+77372,51824
+77373,37712
+77374,22164
+77375,32929
+77376,77375
+77377,53654
+77378,79973
+77379,77260
+77380,62333
+77381,66154
+77382,40340
+77383,56995
+77384,41067
+77385,79052
+77386,73072
+77387,71686
+77388,22665
+77389,44696
+77390,31825
+77391,78544
+77392,69554
+77393,32
+77394,63607,68853
+77395,58099
+77396,27022
+77397,39469
+77398,28780
+77399,44440
+77400,31109
+77401,78967
+77402,26602
+77403,41157
+77404,77439
+77405,28790
+77406,28790
+77407,23780
+77408,36070
+77409,48921
+77410,60453
+77411,60448
+77412,21135
+77413,81780
+77414,60487
+77415,81780
+77416,81789
+77417,81801
+77418,61875
+77419,58162
+77420,65215
+77421,81800
+77422,58734
+77423,37405
+77424,79250
+77425,58162
+77426,56179
+77427,73838
+77428,76518
+77429,50769
+77430,60216
+77431,77399
+77432,28539
+77433,66471
+77434,19648
+77435,59020
+77436,58403
+77437,75472
+77438,38637
+77439,38053
+77440,65133
+77441,35659
+77442,55497
+77443,77442
+77444,62178
+77445,43427
+77446,77451
+77447,66329
+77448,41842
+77449,43914
+77450,28535
+77451,28535
+77452,28530
+77453,37405
+77454,19200
+77455,48333
+77456,64949
+77457,42429
+77458,43109
+77459,19200
+77460,81808
+77461,81807
+77462,47638
+77463,77585
+77464,58282
+77465,20386
+77466,48952
+77467,69050
+77468,75693
+77469,51474
+77470,82152
+77471,28530
+77472,59419
+77473,59422
+77474,79376
+77475,51988,53476
+77476,43913
+77477,77448
+77478,58162
+77479,28536
+77480,59154
+77481,55347
+77482,81801
+77483,51559
+77484,63187
+77485,77421
+77486,58162
+77487,58162
+77488,29711
+77489,9455,59769
+77490,65666
+77491,30883
+77492,42387
+77493,69087
+77494,63457
+77495,63457
+77496,53658
+77497,67050
+77498,31894
+77499,30206
+77500,69333
+77501,77451
+77502,28530
+77503,31805
+77504,81227
+77505,33075
+77506,51865
+77507,60603
+77508,29711
+77509,42412
+77510,53454
+77511,25087
+77512,56179
+77513,58162
+77514,57934
+77515,55493
+77516,42205
+77517,37405
+77518,35167
+77519,69744
+77520,30659
+77521,55493
+77522,30937
+77523,39101
+77524,32710
+77525,77995
+77526,53499
+77527,55828
+77528,26933
+77529,65045
+77530,61400
+77531,18740
+77532,65861
+77533,34602
+77534,60216
+77535,60216
+77536,31241
+77537,77521
+77538,76135
+77539,35465
+77540,28780
+77541,66007
+77542,30443
+77543,63064
+77544,79341
+77545,18686
+77546,62456
+77547,60216
+77548,55069
+77549,36363
+77550,53648
+77551,27688
+77552,34924
+77553,55473
+77554,34772
+77555,61523
+77556,72153
+77557,24801
+77558,36101
+77559,51470
+77560,74830
+77561,64109
+77562,27649
+77563,70568
+77564,61871
+77565,64109
+77566,27649
+77567,46962
+77568,70033
+77569,69945
+77570,64396
+77571,63584
+77572,53716
+77573,71319
+77574,23536
+77575,55347
+77576,19648
+77577,19657
+77578,20115
+77579,23075
+77580,38787
+77581,44566
+77582,48877
+77583,61203
+77584,76664
+77585,60216
+77586,77588
+77587,29731
+77588,51074
+77589,81549
+77590,67628,72376
+77591,80440
+77592,22157
+77593,33067
+77594,77575
+77595,55497
+77596,40340
+77597,40336
+77598,40323
+77599,40331
+77600,65108
+77601,75066
+77602,56953
+77603,35566
+77604,75013
+77605,69158
+77606,74537
+77607,31607
+77608,73830
+77609,74821
+77610,38702
+77611,57461
+77612,54469
+77613,73689
+77614,32926
+77615,35616
+77616,62178
+77617,30391
+77618,80509
+77619,28849
+77620,42378
+77621,73475
+77622,42094
+77623,69744
+77624,30391
+77625,77618
+77626,55030
+77627,62145
+77628,43815
+77629,34646
+77630,41870
+77631,73323
+77632,45096
+77633,81789
+77634,21771
+77635,52920
+77636,27562
+77637,81798
+77638,62089
+77639,29724
+77640,63820
+77641,81549
+77642,61213
+77643,32326
+77644,32915
+77645,41181
+77646,39676
+77647,41657
+77648,38256
+77649,1524
+77650,61399
+77651,38047
+77652,47455
+77653,70033
+77654,70033
+77655,19762
+77656,77641
+77657,57811
+77658,61159
+77659,71933
+77660,11867
+77661,72680
+77662,71997
+77663,27562
+77664,74659
+77665,21161
+77666,41657
+77667,76812
+77668,70033
+77669,80061
+77670,61255
+77671,77641
+77672,59818
+77673,21447
+77674,61677
+77675,49343
+77676,77857
+77677,77585
+77678,50561
+77679,65509
+77680,20745
+77681,21782
+77682,69507
+77683,79514
+77684,69507
+77685,36986
+77686,79512
+77687,35802
+77688,35802
+77689,56163
+77690,64662
+77691,66491
+77692,41708
+77693,49944
+77694,80105
+77695,30550
+77696,35183
+77697,25017
+77698,54870
+77699,20531
+77700,51473
+77701,50705
+77702,36482
+77703,74567
+77704,68563
+77705,57934
+77706,21304
+77707,72290
+77708,77094
+77709,81808
+77710,77708
+77711,77708
+77712,77708
+77713,77708
+77714,74503
+77715,68015
+77716,25920
+77717,75057
+77718,73838
+77719,77985
+77720,61402
+77721,28398
+77722,48840
+77723,71658
+77724,31646
+77725,63061
+77726,38797
+77727,19580
+77728,38798
+77729,50638
+77730,22745
+77731,77726
+77732,22838
+77733,32527
+77734,49353
+77735,76664
+77736,32225
+77737,69543
+77738,36335
+77739,60042
+77740,61866
+77741,62976
+77742,20730
+77743,77822
+77744,74596
+77745,31058
+77746,23925
+77747,51037
+77748,71341
+77749,72959
+77750,23790
+77751,78685
+77752,19069
+77753,75510
+77754,56114
+77755,71315
+77756,53842
+77757,53651
+77758,53652
+77759,48710
+77760,34285
+77761,21344
+77762,62145
+77763,59646
+77764,21328
+77765,31159
+77766,26725
+77767,70568
+77768,77767
+77769,28317
+77770,56376
+77771,55914,48111
+77772,61646
+77773,29067
+77774,76218
+77775,19039
+77776,38457
+77777,33563
+77778,40423
+77779,63471
+77780,48318
+77781,52990
+77782,29651
+77783,61450
+77784,48111
+77785,69704
+77786,78236
+77787,35566
+77788,34925
+77789,65975
+77790,34126
+77791,54753
+77792,31030
+77793,72281
+77794,35290
+77795,35291
+77796,40411
+77797,30484
+77798,30132
+77799,49962
+77800,22090
+77801,80761
+77802,20994
+77803,71969
+77804,54562
+77805,49353
+77806,60216
+77807,63678
+77808,34837
+77809,47432
+77810,77641
+77811,31062
+77812,25713
+77813,32715
+77814,56494
+77815,34924
+77816,28063
+77817,61438
+77818,51624,43502
+77819,52454
+77820,41842
+77821,53480
+77822,63861
+77823,81803
+77824,76489
+77825,21738
+77826,57066
+77827,50439
+77828,50439
+77829,51395
+77830,21718
+77831,77851
+77832,22150
+77833,33504
+77834,56265
+77835,67566
+77836,61874
+77837,76664
+77838,68254
+77839,77802
+77840,52497
+77841,49310
+77842,27287
+77843,21412
+77844,34197
+77845,19421
+77846,47538
+77847,30391
+77848,55761
+77849,55756
+77850,42351
+77851,69331
+77852,78097
+77853,43509
+77854,55121
+77855,58616
+77856,44921
+77857,49343
+77858,73152
+77859,38793
+77860,25002
+77861,66985
+77862,54440
+77863,81349
+77864,43509
+77865,79189
+77866,44966
+77867,64028
+77868,30223
+77869,19069
+77870,55601
+77871,23225
+77872,23245
+77873,78424
+77874,28747
+77875,28502
+77876,28502
+77877,22034
+77878,23243
+77879,58050
+77880,55765
+77881,70079
+77882,42479
+77883,60032
+77884,31940
+77885,52655
+77886,77851
+77887,55614
+77888,64438
+77889,38600
+77890,36612
+77891,27970
+77892,21671
+77893,27649
+77894,42042
+77895,57704
+77896,70395
+77897,34771
+77898,71938
+77899,26296
+77900,29262
+77901,43509
+77902,81578
+77903,81920
+77904,78746
+77905,61914,45839
+77906,65767
+77907,47067
+77908,68676
+77909,38994
+77910,21412,53861
+77911,19385
+77912,77850
+77913,23223
+77914,23223
+77915,57333
+77916,46901
+77917,63064
+77918,54189
+77919,32715
+77920,24306
+77921,77912
+77922,27688
+77923,52832
+77924,55952
+77925,40326
+77926,20710
+77927,77469
+77928,26532
+77929,48111
+77930,54789
+77931,54789
+77932,25729
+77933,55768
+77934,58803
+77935,56701
+77936,21597
+77937,21597
+77938,33102
+77939,78698
+77940,54441
+77941,55493
+77942,61764
+77943,61764
+77944,69744,77940
+77945,66377
+77946,74902
+77947,53848
+77948,27497
+77949,77961
+77950,72416
+77951,22420
+77952,22420
+77953,27784
+77954,81065
+77955,50554
+77956,59826
+77957,53716
+77958,61092
+77959,34108
+77960,64647
+77961,64949
+77962,81578
+77963,69027
+77964,30391
+77965,50649
+77966,50649
+77967,42002
+77968,20749
+77969,64409
+77970,61063
+77971,62625
+77972,45096
+77973,37237
+77974,35157
+77975,21475
+77976,78815
+77977,65871
+77978,35158
+77979,56163
+77980,65108
+77981,43744
+77982,42225
+77983,33288
+77984,46317
+77985,42225
+77986,58398
+77987,40292
+77988,67658,41014
+77989,45009
+77990,75028
+77991,21192,77992
+77992,80618
+77993,56885
+77994,18793
+77995,55373
+77996,40701
+77997,34025
+77998,39367
+77999,39381
+78000,69304
+78001,79276
+78002,39556
+78003,69766
+78004,48030
+78005,57320
+78006,19690
+78007,46067
+78008,59775
+78009,20014
+78010,20723
+78011,47951
+78012,24565
+78013,45730
+78014,41657
+78015,41877
+78016,50585
+78017,51868
+78018,52675
+78019,53226
+78020,79608
+78021,66448
+78022,67559
+78023,70859
+78024,41657
+78025,79808
+78026,38593
+78027,27167
+78028,79259
+78029,41877
+78030,78075
+78031,74231
+78032,61402
+78033,72673
+78034,2098
+78035,46444
+78036,25738
+78037,79953
+78038,55768
+78039,74689
+78040,75665
+78041,20690
+78042,41760
+78043,41760
+78044,27757
+78045,69923
+78046,54705
+78047,29968
+78048,80753,66900
+78049,23643
+78050,22699
+78051,72791
+78052,25851
+78053,51225
+78054,75677
+78055,51479
+78056,22907
+78057,41444
+78058,25920
+78059,63316
+78060,31523
+78061,77374
+78062,43810
+78063,40063
+78064,50875
+78065,41856
+78066,35787
+78067,19658
+78068,39811
+78069,39813
+78070,62145
+78071,77374
+78072,31830
+78073,39111
+78074,19239
+78075,72983
+78076,48710
+78077,46417
+78078,72610
+78079,38053
+78080,78079
+78081,38366
+78082,33896
+78083,40863
+78084,35765
+78085,26899,80438
+78086,77973
+78087,66491
+78088,35048
+78089,31618
+78090,79469
+78091,58068
+78092,44663
+78093,51303,74565
+78094,37145
+78095,73837
+78096,31281
+78097,37478
+78098,41034
+78099,61568
+78100,72791
+78101,51038
+78102,55866
+78103,51643
+78104,70656
+78105,51023
+78106,48084
+78107,40752
+78108,63064
+78109,23765
+78110,79211
+78111,20038,56525,61264
+78112,28091
+78113,78095
+78114,30592
+78115,62146
+78116,61435
+78117,25574
+78118,31301
+78119,69395
+78120,82039
+78121,22684
+78122,68128
+78123,66785
+78124,79848
+78125,32891
+78126,26411
+78127,28220
+78128,41635
+78129,63707
+78130,76787
+78131,79492
+78132,63725
+78133,22034
+78134,31353
+78135,25046
+78136,11221
+78137,21568
+78138,39556
+78139,82167
+78140,51395
+78141,40767
+78142,58088
+78143,20690
+78144,81482
+78145,81482
+78146,77641
+78147,56472
+78148,19144
+78149,29919
+78150,36777
+78151,44695
+78152,57418
+78153,43364
+78154,80583
+78155,20282
+78156,36763
+78157,58162
+78158,78159
+78159,74807
+78160,44470
+78161,33667
+78162,74513
+78163,79691
+78164,35793
+78165,19698
+78166,23164
+78167,37207
+78168,62840
+78169,67703
+78170,68330,41014
+78171,67594
+78172,40294
+78173,67822
+78174,61182
+78175,71446
+78176,74689
+78177,61075
+78178,20226
+78179,55734
+78180,19368
+78181,70629
+78182,57594
+78183,20690
+78184,67675
+78185,54082
+78186,20122
+78187,58628
+78188,29839
+78189,53848
+78190,19925
+78191,29189
+78192,26960
+78193,47655
+78194,59427
+78195,79743
+78196,81482
+78197,44615
+78198,75860
+78199,45392
+78200,81336
+78201,81337
+78202,29943
+78203,25256
+78204,67047
+78205,42469
+78206,40734
+78207,50856
+78208,22667
+78209,60603
+78210,35625
+78211,40745
+78212,69312
+78213,29513
+78214,49483
+78215,50297
+78216,31353
+78217,45813
+78218,45813
+78219,63236
+78220,72959
+78221,62367
+78222,36049
+78223,40714
+78224,78222
+78225,36634
+78226,41598
+78227,73897
+78228,57793
+78229,81275
+78230,40564
+78231,45813
+78232,28534
+78233,80009
+78234,59308
+78235,39494
+78236,19228
+78237,34904
+78238,28533
+78239,73275
+78240,38883
+78241,46149
+78242,21474
+78243,81615
+78244,62659
+78245,32492
+78246,37712
+78247,78151
+78248,70629
+78249,60216
+78250,31861
+78251,81656
+78252,63117
+78253,59225
+78254,37812
+78255,41252
+78256,28529
+78257,55494
+78258,66977,33135
+78259,78262
+78260,23642
+78261,44232
+78262,33134
+78263,66727
+78264,73275
+78265,42351
+78266,22125
+78267,67054
+78268,59306
+78269,35557
+78270,42337
+78271,38885
+78272,72298
+78273,42337
+78274,61493
+78275,61355
+78276,61355
+78277,77600
+78278,29969
+78279,57689
+78280,38369
+78281,24915
+78282,54562,57861
+78283,77641
+78284,77185
+78285,29845
+78286,28773
+78287,71719
+78288,36250
+78289,74721,49199
+78290,30374
+78291,70629
+78292,51701
+78293,76989
+78294,52885
+78295,67951
+78296,27093
+78297,27997
+78298,50766
+78299,75552
+78300,69325
+78301,47327
+78302,20825
+78303,30891
+78304,71686
+78305,56102
+78306,58088
+78307,58088
+78308,39049
+78309,48038
+78310,29037
+78311,52168
+78312,64757
+78313,50439
+78314,69227
+78315,34093
+78316,76662
+78317,64757
+78318,28299
+78319,50439
+78320,50439
+78321,50439
+78322,50439
+78323,50439
+78324,50439
+78325,50439
+78326,50439
+78327,50439
+78328,19242
+78329,40195
+78330,50439
+78331,78329
+78332,78329
+78333,24146
+78334,70399
+78335,78358
+78336,53011
+78337,24726
+78338,34174
+78339,51319
+78340,46767
+78341,42439
+78342,57475
+78343,20308
+78344,39049
+78345,80538
+78346,70079
+78347,23643
+78348,42092
+78349,46444
+78350,81626
+78351,74067
+78352,58778
+78353,49204
+78354,28530
+78355,69727
+78356,33216
+78357,71311
+78358,67054
+78359,55494
+78360,24392
+78361,19679
+78362,71938
+78363,24306
+78364,35188
+78365,76620
+78366,35255
+78367,79640
+78368,22590
+78369,68005
+78370,23232
+78371,75860
+78372,24339
+78373,26600
+78374,50192
+78375,22853
+78376,30758
+78377,75197
+78378,34118
+78379,70928
+78380,70928
+78381,73649
+78382,64409
+78383,24146
+78384,57556
+78385,32495
+78386,30300
+78387,39424
+78388,9230
+78389,25256
+78390,79282
+78391,36632
+78392,35224
+78393,48126
+78394,57934
+78395,75510
+78396,28591
+78397,74903
+78398,49797
+78399,24781
+78400,34978
+78401,34978,22305
+78402,78396
+78403,42539
+78404,20120
+78405,78404
+78406,72003
+78407,54867
+78408,53516
+78409,62957
+78410,28596
+78411,27686
+78412,41000
+78413,49694
+78414,81796
+78415,48084
+78416,67656
+78417,22652
+78418,33599
+78419,66491
+78420,49185
+78421,56979
+78422,65927
+78423,65930
+78424,81786
+78425,61978
+78426,37712
+78427,77287
+78428,62963
+78429,27991
+78430,20355
+78431,55662
+78432,59441
+78433,76210
+78434,67277
+78435,60216
+78436,35103
+78437,20977
+78438,45260
+78439,20355
+78440,53717
+78441,22351
+78442,20977
+78443,66316
+78444,11862
+78445,62694
+78446,64327,30223
+78447,62694
+78448,52890
+78449,21218
+78450,60216
+78451,47628
+78452,44593
+78453,58776
+78454,60132
+78455,51038
+78456,58162
+78457,30357
+78458,25094
+78459,24700
+78460,48126
+78461,47908
+78462,21540
+78463,21703
+78464,56440
+78465,79282
+78466,44140
+78467,64142
+78468,74891
+78469,34363
+78470,64142
+78471,39847
+78472,34460
+78473,28287
+78474,28288
+78475,64513
+78476,24897
+78477,60786
+78478,51340
+78479,14491
+78480,61767
+78481,71684
+78482,19182
+78483,71754
+78484,72038
+78485,48144
+78486,45813
+78487,36979
+78488,36710,41885,39722
+78489,45851
+78490,79282
+78491,31820
+78492,69472
+78493,20670
+78494,27239
+78495,34293
+78496,78685
+78497,32310
+78498,39676
+78499,38257
+78500,45813
+78501,68854
+78502,75860
+78503,70033
+78504,52658
+78505,40752
+78506,34985
+78507,53686
+78508,34149
+78509,57572
+78510,35105
+78511,78776
+78512,47741
+78513,56194
+78514,47588
+78515,29611
+78516,19733
+78517,78750
+78518,20164
+78519,35159
+78520,47680
+78521,78449
+78522,47904
+78523,31638
+78524,31506
+78525,48153
+78526,64142
+78527,68289
+78528,22164
+78529,68474
+78530,23891
+78531,49860
+78532,77374
+78533,47845
+78534,38960
+78535,38960
+78536,77374
+78537,39578
+78538,59970
+78539,78649
+78540,65691
+78541,31463
+78542,27576
+78543,54544
+78544,30275
+78545,58212
+78546,78748
+78547,47740
+78548,20849,65759
+78549,31037
+78550,46493
+78551,61866
+78552,19069
+78553,48937
+78554,60072
+78555,73863
+78556,25457
+78557,80494
+78558,18685
+78559,21922
+78560,26171
+78561,41444,74488
+78562,28616
+78563,28621
+78564,41898
+78565,68628
+78566,57929
+78567,53454
+78568,57060,41189
+78569,33503
+78570,34902
+78571,34907
+78572,39154
+78573,38392
+78574,21295
+78575,38868
+78576,38871
+78577,27672
+78578,42225
+78579,30413
+78580,66342
+78581,51613
+78582,46948
+78583,78578
+78584,25115
+78585,78194
+78586,59645
+78587,59646
+78588,26577
+78589,63124
+78590,73801
+78591,68786
+78592,69010
+78593,70033
+78594,50008
+78595,72983
+78596,19231
+78597,77287
+78598,81601
+78599,33425
+78600,76936
+78601,69466
+78602,53608
+78603,47812
+78604,78599
+78605,38512
+78606,78578
+78607,56811
+78608,29626
+78609,76012
+78610,22656
+78611,78815
+78612,51550
+78613,80361
+78614,48534
+78615,68862
+78616,60216
+78617,18762
+78618,56000
+78619,55494
+78620,47646
+78621,47830
+78622,47830
+78623,40062
+78624,67312
+78625,77374
+78626,59970
+78627,56957
+78628,72959
+78629,71317
+78630,64287
+78631,60013
+78632,47452
+78633,59118
+78634,48041
+78635,48928
+78636,28543
+78637,38960
+78638,59331
+78639,48253
+78640,78811
+78641,35433
+78642,48329
+78643,78797
+78644,47475
+78645,34908
+78646,27288
+78647,60216
+78648,35611
+78649,35679
+78650,47646
+78651,35512
+78652,57987
+78653,61159
+78654,61159
+78655,37689
+78656,78816
+78657,78726
+78658,64142
+78659,41000
+78660,47503
+78661,80761
+78662,59765
+78663,21208
+78664,29928
+78665,65631
+78666,70375
+78667,19737
+78668,34734
+78669,35922
+78670,19497
+78671,79086
+78672,59970
+78673,79915
+78674,48039
+78675,47845
+78676,62447
+78677,35086
+78678,61793
+78679,45096
+78680,34923
+78681,45449
+78682,58168
+78683,69331
+78684,72959
+78685,30568
+78686,53846
+78687,65931
+78688,30937
+78689,50112
+78690,31548
+78691,52750
+78692,19733
+78693,31213
+78694,71687
+78695,59307
+78696,81003
+78697,76251
+78698,58168
+78699,78697
+78700,28588
+78701,32269
+78702,48801
+78703,34326
+78704,78703
+78705,58715
+78706,31804
+78707,38822
+78708,31336
+78709,31784
+78710,67271
+78711,63348
+78712,19655
+78713,24824
+78714,32492
+78715,64157
+78716,69330
+78717,66587
+78718,79277
+78719,76135
+78720,42451
+78721,56176
+78722,31638
+78723,37201
+78724,25094
+78725,38375
+78726,48329
+78727,78544
+78728,79164
+78729,65579
+78730,39116
+78731,69448
+78732,64142
+78733,42296
+78734,47710
+78735,35712
+78736,68831
+78737,45039
+78738,60604
+78739,81462
+78740,22137
+78741,64142
+78742,78649
+78743,47854
+78744,40150
+78745,47854
+78746,78547
+78747,64142
+78748,58213
+78749,58196
+78750,75439
+78751,35435
+78752,48329
+78753,35679
+78754,62447
+78755,78815
+78756,78755
+78757,58779
+78758,64142
+78759,78758
+78760,75347
+78761,64142
+78762,78526
+78763,56194
+78764,41752
+78765,35433
+78766,47531
+78767,56912
+78768,78540
+78769,35570
+78770,64142
+78771,19698
+78772,47979
+78773,47552
+78774,48697
+78775,67839
+78776,64142
+78777,39469
+78778,35565
+78779,76691
+78780,25234
+78781,47904
+78782,78727
+78783,42475
+78784,78449
+78785,60216
+78786,47740
+78787,51174
+78788,35679
+78789,63314
+78790,31245
+78791,54710
+78792,22656
+78793,47658
+78794,48928
+78795,55485
+78796,63193
+78797,64142
+78798,31245
+78799,77374
+78800,35627
+78801,78532
+78802,58381
+78803,77374
+78804,35565
+78805,52119
+78806,28780
+78807,28780
+78808,28780
+78809,28780
+78810,28780
+78811,78535
+78812,48757
+78813,62709
+78814,47780
+78815,60216
+78816,64142
+78817,77978
+78818,35679
+78819,22656
+78820,62456
+78821,25524
+78822,47869
+78823,64175
+78824,66436
+78825,22268
+78826,48220
+78827,19810
+78828,48157
+78829,19228
+78830,28529
+78831,36319
+78832,71439
+78833,66013
+78834,45165
+78835,47716
+78836,43854
+78837,66676
+78838,21795
+78839,74500
+78840,32691
+78841,32578
+78842,77287
+78843,39049
+78844,69406
+78845,32326
+78846,67819
+78847,21959
+78848,25743
+78849,66676
+78850,77491
+78851,60746
+78852,23948
+78853,25496
+78854,29626
+78855,34154
+78856,74422
+78857,49149
+78858,51435
+78859,50649
+78860,66109
+78861,66108
+78862,70110
+78863,24874
+78864,62773
+78865,60641
+78866,73830
+78867,66591
+78868,35792
+78869,48784
+78870,76981
+78871,21826
+78872,81307
+78873,26884
+78874,51068
+78875,59306
+78876,19231
+78877,59306
+78878,78755
+78879,78755
+78880,73801
+78881,46892
+78882,77399
+78883,76664
+78884,66042
+78885,47716
+78886,57160
+78887,78891
+78888,54082
+78889,78888
+78890,78888
+78891,58137
+78892,57934
+78893,44439
+78894,56752
+78895,58593
+78896,67675
+78897,24823,74939
+78898,74939
+78899,43104
+78900,44542
+78901,65909
+78902,21449
+78903,65159
+78904,32535
+78905,64142
+78906,31245
+78907,71321
+78908,79469
+78909,28952
+78910,58158
+78911,75007
+78912,38053
+78913,59549
+78914,36710
+78915,48126
+78916,63228
+78917,65520
+78918,73147
+78919,38385
+78920,36710
+78921,58200
+78922,72135
+78923,78941
+78924,63228
+78925,55356
+78926,34783
+78927,38035
+78928,56275
+78929,70524
+78930,47671
+78931,19496
+78932,81142
+78933,19069
+78934,24823,74939
+78935,61526
+78936,28776,34986
+78937,24609
+78938,35156
+78939,66196
+78940,77275
+78941,48127
+78942,25122
+78943,62266
+78944,79219
+78945,20757
+78946,29258
+78947,38971
+78948,34276
+78949,57092
+78950,20422
+78951,58776
+78952,75016
+78953,26938
+78954,71996
+78955,53716
+78956,59549
+78957,57608
+78958,75152
+78959,40752
+78960,33519
+78961,64805,47185
+78962,50359
+78963,76664
+78964,78996
+78965,50885
+78966,19228
+78967,38694
+78968,27405
+78969,59244
+78970,60216
+78971,57573
+78972,38334
+78973,78972
+78974,48724
+78975,30866
+78976,50885
+78977,78970
+78978,50971,69562
+78979,27397
+78980,81807
+78981,50972
+78982,48536
+78983,53012
+78984,47655
+78985,21703
+78986,28091
+78987,31700
+78988,79282
+78989,39614
+78990,55209
+78991,35922
+78992,75027
+78993,39101
+78994,69284
+78995,69280
+78996,64142
+78997,55648
+78998,22850
+78999,81643
+79000,63187
+79001,67161
+79002,72959
+79003,78970
+79004,51434
+79005,72959
+79006,39801
+79007,71332
+79008,62361
+79009,22215
+79010,34118
+79011,58166
+79012,73837
+79013,48126
+79014,78113
+79015,40472
+79016,48126
+79017,81065
+79018,46988
+79019,55662
+79020,19548
+79021,79026
+79022,37726
+79023,60013
+79024,52153
+79025,18774
+79026,50925
+79027,36868
+79028,56957
+79029,50924
+79030,68119
+79031,47572
+79032,59555
+79033,48077
+79034,28091
+79035,31245
+79036,73918
+79037,37726
+79038,65581
+79039,46317
+79040,28475
+79041,40514
+79042,42358
+79043,57333
+79044,28530
+79045,36710
+79046,21703
+79047,35465
+79048,71019
+79049,31700
+79050,48126
+79051,46354
+79052,80091,61997
+79053,78533
+79054,47985
+79055,32715
+79056,79200
+79057,4298
+79058,39362
+79059,58069
+79060,68230
+79061,62409
+79062,62409
+79063,37459
+79064,28788
+79065,74797
+79066,40752
+79067,27488
+79068,53032,25117
+79069,69285
+79070,70091
+79071,34350
+79072,34867
+79073,50892
+79074,38366
+79075,58533
+79076,56163
+79077,43313
+79078,43769
+79079,20992
+79080,20696
+79081,77618
+79082,62810
+79083,66020
+79084,47389
+79085,57211
+79086,81714
+79087,30480
+79088,53619
+79089,36800
+79090,49358
+79091,72983
+79092,81717
+79093,21298
+79094,23790
+79095,73837
+79096,34924
+79097,31743
+79098,69662
+79099,69662
+79100,48579
+79101,47805
+79102,45490
+79103,47838
+79104,79095
+79105,48126
+79106,27213
+79107,18965
+79108,60746
+79109,38569
+79110,27624
+79111,23790
+79112,19200
+79113,27408
+79114,77995
+79115,27095
+79116,58798
+79117,21444
+79118,22158
+79119,60611
+79120,67675
+79121,54562
+79122,54082
+79123,58628
+79124,20122
+79125,20977
+79126,58088
+79127,34822
+79128,54709,34827
+79129,23579
+79130,40035
+79131,24626
+79132,62149
+79133,21597
+79134,58088
+79135,65778
+79136,40564
+79137,40564
+79138,47327
+79139,79134
+79140,63677
+79141,31058
+79142,60216
+79143,35442
+79144,35443
+79145,61646
+79146,21218
+79147,81717
+79148,51279
+79149,62144
+79150,79149
+79151,74620
+79152,65704
+79153,24794
+79154,62757
+79155,20817
+79156,60391
+79157,34924
+79158,32610
+79159,62085
+79160,51523
+79161,79671
+79162,28541
+79163,76251
+79164,74903
+79165,64160
+79166,63306
+79167,72892
+79168,54992
+79169,35649
+79170,63065
+79171,60263
+79172,76123
+79173,76249
+79174,28529
+79175,28530
+79176,19228
+79177,45873
+79178,35224
+79179,79282,79181
+79180,59549
+79181,79198
+79182,52135
+79183,79162
+79184,46662
+79185,79162
+79186,81251
+79187,75510
+79188,35142
+79189,53628
+79190,69977
+79191,79193
+79192,79193
+79193,62450
+79194,48288
+79195,53624
+79196,37190
+79197,61956
+79198,18740
+79199,20743
+79200,44437
+79201,30073
+79202,61705
+79203,40128
+79204,78724
+79205,75566
+79206,34350
+79207,36710
+79208,78113
+79209,24843
+79210,79215
+79211,61246
+79212,79215
+79213,73837
+79214,75016
+79215,61263
+79216,63314
+79217,58162
+79218,48126
+79219,49134
+79220,18728,74565
+79221,31555
+79222,19656
+79223,35226
+79224,35229
+79225,46553,79222
+79226,79222
+79227,47805
+79228,57934
+79229,48126
+79230,40986
+79231,36872
+79232,79190
+79233,60076
+79234,66939
+79235,73818
+79236,26488
+79237,49409
+79238,22032
+79239,73838
+79240,46600
+79241,25044
+79242,53628
+79243,35557
+79244,35557
+79245,66756
+79246,68080
+79247,73537
+79248,79165
+79249,79691
+79250,19656
+79251,47975
+79252,19982
+79253,79248
+79254,79248
+79255,50192
+79256,76441
+79257,79265
+79258,45813
+79259,63109
+79260,53519
+79261,37178
+79262,45813
+79263,61257
+79264,80460
+79265,37041
+79266,35130
+79267,44474
+79268,38656
+79269,64307
+79270,30391
+79271,48494
+79272,74081
+79273,53731
+79274,31825
+79275,47975
+79276,77319
+79277,61260
+79278,38883
+79279,43107
+79280,79210
+79281,66445
+79282,24843
+79283,79282
+79284,31520
+79285,44032
+79286,81383
+79287,79853
+79288,81796
+79289,59186
+79290,24046
+79291,53012
+79292,64417
+79293,39049
+79294,67957
+79295,39049
+79296,80219
+79297,23912
+79298,44013
+79299,46818
+79300,39049
+79301,52857
+79302,79282
+79303,79282
+79304,79282
+79305,79282
+79306,29834
+79307,79283
+79308,29834
+79309,79283
+79310,79283
+79311,79282
+79312,79317
+79313,50100
+79314,50100
+79315,79282
+79316,29834
+79317,79282
+79318,32214
+79319,21618
+79320,75016
+79321,39747
+79322,69012
+79323,70925
+79324,30073
+79325,50267
+79326,46457
+79327,19394
+79328,31615
+79329,47805,24851
+79330,66185
+79331,70416
+79332,63813
+79333,81770
+79334,42088
+79335,66873
+79336,21714
+79337,20761
+79338,51814
+79339,24807
+79340,24835
+79341,36710
+79342,70896
+79343,58200
+79344,46268
+79345,32662
+79346,71961
+79347,78989
+79348,25115
+79349,47716
+79350,53656
+79351,69482,19810
+79352,34924
+79353,55368
+79354,28091
+79355,28473
+79356,20654
+79357,39778,27519
+79358,69180
+79359,21670
+79360,60076
+79361,36755
+79362,30659
+79363,78598
+79364,27326
+79365,27337
+79366,72046
+79367,53959
+79368,78096
+79369,49483
+79370,68168
+79371,79282
+79372,78077
+79373,62054
+79374,26919
+79375,31640
+79376,52752
+79377,32790
+79378,48477
+79379,30807
+79380,81593
+79381,19228
+79382,40752
+79383,79385
+79384,47437
+79385,38883
+79386,53096
+79387,40074
+79388,59558
+79389,60786
+79390,76787
+79391,25383
+79392,51434
+79393,29321,27581
+79394,19552
+79395,69033
+79396,78073
+79397,59475
+79398,19654,53717
+79399,27756,37616
+79400,54562
+79401,53717
+79402,11858
+79403,66851
+79404,60281
+79405,22665
+79406,56492
+79407,81251
+79408,56871
+79409,38216
+79410,38217
+79411,81402
+79412,21618
+79413,26965
+79414,68055
+79415,53454
+79416,40752
+79417,70633
+79418,61621
+79419,51472
+79420,61621
+79421,19281
+79422,41220
+79423,81787
+79424,48629
+79425,78238
+79426,78398
+79427,58760
+79428,51523
+79429,25256
+79430,21703
+79431,79282
+79432,29189
+79433,38983
+79434,58854
+79435,48649
+79436,38974
+79437,58195
+79438,20698
+79439,22951
+79440,44113
+79441,39963
+79442,31515
+79443,53649
+79444,72697
+79445,74537
+79446,19849
+79447,62147
+79448,30298
+79449,81181
+79450,41877
+79451,44538
+79452,64513
+79453,47673
+79454,51630
+79455,64513
+79456,79282
+79457,28775
+79458,67432
+79459,65520
+79460,73407
+79461,58162
+79462,48126
+79463,20763
+79464,69286
+79465,11867
+79466,27233
+79467,27624
+79468,80219
+79469,31616
+79470,78095
+79471,32683
+79472,42225
+79473,61592
+79474,81462
+79475,79901
+79476,48534
+79477,48531
+79478,69146
+79479,38740
+79480,79282
+79481,28091
+79482,79481
+79483,79481
+79484,29928
+79485,43829
+79486,30693
+79487,66953
+79488,29321
+79489,29321
+79490,32580
+79491,54562
+79492,50919
+79493,79608
+79494,38807
+79495,69308
+79496,69308
+79497,35917
+79498,53716
+79499,68236
+79500,62409
+79501,79905
+79502,51730
+79503,62453
+79504,63314
+79505,25920
+79506,35557
+79507,19457
+79508,51660
+79509,26730
+79510,55768
+79511,60042
+79512,55348
+79513,19774
+79514,71686
+79515,53648
+79516,53648
+79517,38475
+79518,29737
+79519,29737
+79520,62852
+79521,34679
+79522,24379
+79523,48401
+79524,77460
+79525,62145
+79526,75874
+79527,34679
+79528,40416
+79529,62734
+79530,19384
+79531,32926
+79532,38675
+79533,61759
+79534,34680
+79535,81065
+79536,57280
+79537,43820
+79538,49483
+79539,62145
+79540,71719
+79541,68801
+79542,72018
+79543,62158
+79544,79175
+79545,55821
+79546,78647
+79547,60216
+79548,19480
+79549,22665
+79550,32926
+79551,30557
+79552,37824,74131
+79553,28129
+79554,49890
+79555,50396
+79556,46695
+79557,81552
+79558,39049
+79559,38529
+79560,79738
+79561,79738
+79562,60541
+79563,47307
+79564,65215
+79565,27845,79564
+79566,75344
+79567,58005
+79568,75337,79564
+79569,52633
+79570,63918
+79571,21218
+79572,79744
+79573,64748
+79574,52084
+79575,20698
+79576,58004
+79577,40941
+79578,22185
+79579,80001
+79580,66690
+79581,27153
+79582,30692
+79583,79881
+79584,50609
+79585,60534
+79586,70581
+79587,73669
+79588,46782
+79589,32461
+79590,32461
+79591,69357
+79592,30900
+79593,59237
+79594,48210
+79595,28593
+79596,78815
+79597,79596
+79598,77460
+79599,38566
+79600,75873
+79601,50888,69314
+79602,63064
+79603,75073
+79604,60162
+79605,60162
+79606,29707
+79607,52831
+79608,79211
+79609,53072
+79610,30514
+79611,19039
+79612,31239
+79613,37211
+79614,41736
+79615,71761
+79616,80793
+79617,39367
+79618,43983
+79619,43982
+79620,82191
+79621,81251
+79622,57681
+79623,45238
+79624,53959
+79625,52773
+79626,61311
+79627,44439
+79628,75007
+79629,25536
+79630,45813
+79631,25536
+79632,79629
+79633,79629
+79634,79629
+79635,81808
+79636,51180
+79637,32929
+79638,78210
+79639,19688
+79640,79630
+79641,63883
+79642,60343
+79643,74240
+79644,58595
+79645,25536
+79646,29623
+79647,55744
+79648,52773
+79649,73749
+79650,55768
+79651,55768
+79652,20977
+79653,71120
+79654,44023
+79655,70011
+79656,77424
+79657,45796
+79658,48077
+79659,79658,61577
+79660,59549
+79661,58287
+79662,62555
+79663,48283
+79664,29731
+79665,81552
+79666,45214
+79667,31245
+79668,19654
+79669,69416
+79670,52828
+79671,36602
+79672,59338
+79673,59338
+79674,61265
+79675,54223
+79676,53716
+79677,57350
+79678,64142
+79679,75433
+79680,65503
+79681,53866
+79682,31110
+79683,43724
+79684,55210
+79685,43724
+79686,70628
+79687,55767
+79688,45181
+79689,46709
+79690,65928
+79691,54253,48083
+79692,52832
+79693,67762
+79694,66862
+79695,48590
+79696,50922
+79697,61456
+79698,53624
+79699,53621
+79700,64923
+79701,31506
+79702,9930
+79703,59811
+79704,76779
+79705,64757
+79706,81065
+79707,59811
+79708,36035
+79709,46256
+79710,29711
+79711,67634
+79712,60016
+79713,72038
+79714,60484
+79715,72033
+79716,38793
+79717,47507
+79718,69106
+79719,60216
+79720,48474
+79721,53760
+79722,53758
+79723,53758
+79724,53758
+79725,26899
+79726,79722
+79727,50885
+79728,79722
+79729,79732
+79730,57223
+79731,63157
+79732,77585
+79733,21568
+79734,19708
+79735,21135
+79736,32222
+79737,71572
+79738,30882
+79739,35668
+79740,79744
+79741,44921
+79742,47500
+79743,35425
+79744,60015
+79745,60019
+79746,63314
+79747,60559
+79748,79712
+79749,70214
+79750,79745
+79751,69146
+79752,60011
+79753,60216
+79754,27293,34989
+79755,58144
+79756,28054
+79757,70199
+79758,73007
+79759,60450
+79760,23791
+79761,37885
+79762,60598
+79763,38372
+79764,57261
+79765,39429
+79766,79765
+79767,79765
+79768,1594
+79769,1594
+79770,1594
+79771,1594
+79772,1594
+79773,80265,21034
+79774,39429
+79775,39429,21034
+79776,39429
+79777,79776
+79778,79776
+79779,80265
+79780,35134,60821
+79781,29432
+79782,57182
+79783,33326
+79784,19741
+79785,70651
+79786,39018
+79787,51649
+79788,71516
+79789,56179
+79790,19069
+79791,18854
+79792,45997
+79793,37776
+79794,27622
+79795,37882
+79796,37210
+79797,57934
+79798,24249
+79799,41388
+79800,78756
+79801,57573
+79802,62145
+79803,61680
+79804,81578
+79805,81592
+79806,41440
+79807,30267
+79808,40945
+79809,55736
+79810,55734
+79811,37202
+79812,65649
+79813,65650
+79814,37197
+79815,57360
+79816,71961
+79817,51665
+79818,53293
+79819,18919
+79820,75433
+79821,43913
+79822,70426
+79823,71686
+79824,30882
+79825,60595
+79826,71687
+79827,53613
+79828,30882
+79829,75669
+79830,79828
+79831,59309
+79832,62447
+79833,24261
+79834,70629
+79835,71961
+79836,19368
+79837,71837
+79838,28425
+79839,39049
+79840,59497
+79841,74082
+79842,53866
+79843,28791
+79844,48936
+79845,43107
+79846,35464
+79847,79848
+79848,47442
+79849,43109
+79850,55394
+79851,43126
+79852,81506
+79853,39130
+79854,29120
+79855,66260
+79856,22786
+79857,32530
+79858,32520
+79859,56470
+79860,61395
+79861,62324
+79862,62441
+79863,37411
+79864,36569
+79865,77453
+79866,23428
+79867,28167
+79868,23428
+79869,54130
+79870,53619
+79871,53619
+79872,63663
+79873,71697
+79874,78703
+79875,54130
+79876,64159
+79877,64159
+79878,71547
+79879,70568
+79880,69308
+79881,81626
+79882,69148
+79883,78257
+79884,61260
+79885,70847
+79886,59549
+79887,25256
+79888,65509,38887
+79889,25122
+79890,70091
+79891,38013
+79892,53480
+79893,35196
+79894,40012
+79895,45751
+79896,33302
+79897,33305
+79898,79282
+79899,29368
+79900,65758
+79901,62853
+79902,35474
+79903,25094
+79904,44440
+79905,29120
+79906,57211
+79907,37789
+79908,29488
+79909,19636
+79910,25367
+79911,53648
+79912,62545
+79913,66551
+79914,73323
+79915,50889
+79916,78059
+79917,59376
+79918,35926
+79919,74500
+79920,60800
+79921,26299
+79922,21953
+79923,51068
+79924,60476
+79925,79923
+79926,60483
+79927,63254
+79928,58152
+79929,65450
+79930,49343
+79931,77585
+79932,72029
+79933,59153
+79934,71686
+79935,63070
+79936,70629
+79937,78755
+79938,34357
+79939,34072
+79940,80505
+79941,33812
+79942,24331
+79943,39613
+79944,18728
+79945,48126
+79946,48126
+79947,53454
+79948,42003
+79949,59775
+79950,46107
+79951,44604
+79952,80011
+79953,21358
+79954,61979
+79955,59479
+79956,31853
+79957,25770
+79958,26884
+79959,49888
+79960,30891
+79961,19699
+79962,46935
+79963,65627
+79964,34460
+79965,31179
+79966,40700
+79967,41546
+79968,68059
+79969,37113
+79970,31476
+79971,41837
+79972,80761
+79973,80761
+79974,76752
+79975,80753
+79976,36540
+79977,81759
+79978,58287
+79979,52521
+79980,70033
+79981,28952
+79982,55444,71961
+79983,33189
+79984,79973
+79985,58948
+79986,58948
+79987,80047
+79988,21477
+79989,62360
+79990,47747
+79991,60216
+79992,35284
+79993,68196
+79994,66889
+79995,79992
+79996,80438
+79997,79580
+79998,80164
+79999,26980
+80000,25017
+80001,80005,60598
+80002,75772
+80003,60216
+80004,22128
+80005,31469
+80006,25019
+80007,48251
+80008,42002
+80009,77575
+80010,27687
+80011,51928
+80012,59541
+80013,60216
+80014,68780,34763
+80015,66953
+80016,79552
+80017,19231
+80018,38814
+80019,59427
+80020,65654
+80021,80009
+80022,21113
+80023,21112
+80024,27565
+80025,77160
+80026,20313
+80027,80009
+80028,69818
+80029,41444
+80030,41444
+80031,64515
+80032,78687
+80033,72323
+80034,60397
+80035,35621
+80036,69818
+80037,73222
+80038,60397
+80039,73726
+80040,63442
+80041,19144
+80042,35156
+80043,43107
+80044,57333
+80045,50652
+80046,39638
+80047,59355
+80048,73598
+80049,29845
+80050,32837
+80051,43148
+80052,58953
+80053,73426
+80054,61334
+80055,66786
+80056,45813
+80057,72323
+80058,65107
+80059,27267
+80060,41917
+80061,49546
+80062,81626
+80063,25017
+80064,27781
+80065,73516
+80066,60802
+80067,40752
+80068,70069
+80069,40752
+80070,24874
+80071,46183
+80072,81307
+80073,55533
+80074,22442
+80075,59020
+80076,70629
+80077,41023
+80078,81482
+80079,37181
+80080,57249
+80081,24726
+80082,79261
+80083,60956
+80084,55802
+80085,33793
+80086,22853
+80087,33798
+80088,23521
+80089,25715
+80090,66859
+80091,77585
+80092,77575
+80093,19918
+80094,78925
+80095,40752
+80096,31736
+80097,34210
+80098,29654
+80099,20823
+80100,60216
+80101,69148
+80102,34249
+80103,27086
+80104,46707
+80105,31353
+80106,54404
+80107,22507
+80108,25908
+80109,41856
+80110,22229
+80111,32195
+80112,32926
+80113,81807
+80114,55388
+80115,33186
+80116,66696
+80117,70406
+80118,34389
+80119,19421
+80120,21625
+80121,59379
+80122,59380
+80123,57564
+80124,66953
+80125,81056
+80126,30555
+80127,70033
+80128,70033
+80129,20745
+80130,41977
+80131,70426
+80132,58287
+80133,60216
+80134,19379
+80135,24780
+80136,50630
+80137,62145
+80138,50630
+80139,62145
+80140,80138
+80141,30391
+80142,30391
+80143,41917
+80144,54432
+80145,21730
+80146,73475
+80147,51238
+80148,81643
+80149,20990
+80150,38836
+80151,81612
+80152,67479
+80153,29457
+80154,81397
+80155,54423
+80156,62659
+80157,41669
+80158,62659
+80159,52215
+80160,58916
+80161,45308
+80162,46757
+80163,30891
+80164,48171
+80165,75718
+80166,75121
+80167,73584
+80168,76345
+80169,35753
+80170,35756
+80171,23833
+80172,80485
+80173,45570,54441
+80174,81770
+80175,68835
+80176,54425
+80177,65133
+80178,33488
+80179,20751
+80180,26522
+80181,66042
+80182,42109
+80183,81103
+80184,60216
+80185,69744,54441
+80186,47621
+80187,26320
+80188,24704,49637
+80189,74826
+80190,76664
+80191,45813
+80192,31239
+80193,80258
+80194,26579
+80195,73640
+80196,80383
+80197,81601
+80198,39049
+80199,28491
+80200,70462
+80201,23285
+80202,34924
+80203,63424
+80204,23383
+80205,33928
+80206,81626
+80207,68629
+80208,80896
+80209,80206
+80210,50579
+80211,80197
+80212,44347
+80213,71450
+80214,76865
+80215,41917
+80216,78090
+80217,80197,29691
+80218,80206
+80219,47127
+80220,56651
+80221,79988
+80222,63790
+80223,36499
+80224,34207
+80225,52144
+80226,19171
+80227,53454
+80228,19228
+80229,80228
+80230,80228
+80231,80228
+80232,80228
+80233,59020
+80234,31616
+80235,63105
+80236,76664
+80237,69704
+80238,76680
+80239,74591
+80240,27276
+80241,27781
+80242,79749
+80243,35558
+80244,81214
+80245,69286
+80246,22901
+80247,34285
+80248,81635
+80249,60216
+80250,22137
+80251,22130
+80252,52773
+80253,44514
+80254,77185
+80255,37519
+80256,51642,41004,57259
+80257,24194,51643
+80258,58783
+80259,57144
+80260,54655
+80261,28616
+80262,80324
+80263,80324
+80264,80360
+80265,79764
+80266,22384
+80267,80312
+80268,23643
+80269,23748
+80270,32672
+80271,24764
+80272,80276
+80273,25434
+80274,21922
+80275,12327
+80276,45909
+80277,26645
+80278,80284
+80279,46673
+80280,43657
+80281,27721
+80282,78100
+80283,72185
+80284,21361
+80285,28870
+80286,37183
+80287,80324
+80288,29332
+80289,29845
+80290,76865
+80291,29959
+80292,78995
+80293,31482
+80294,34924
+80295,21361
+80296,38822
+80297,72426
+80298,67577
+80299,61705
+80300,37582
+80301,39475,61526
+80302,61705
+80303,40021
+80304,30316
+80305,41773,42246
+80306,42358
+80307,39522
+80308,43364
+80309,78197
+80310,22937
+80311,45336
+80312,45546,75292
+80313,61705
+80314,45951
+80315,61947
+80316,45813
+80317,21361
+80318,47315
+80319,79469
+80320,49376
+80321,61979,57407
+80322,37542
+80323,80306
+80324,21361
+80325,51468
+80326,51862
+80327,51939
+80328,52718
+80329,54130
+80330,21361
+80331,54469
+80332,80356
+80333,61070
+80334,54944
+80335,57277
+80336,80324
+80337,57289
+80338,80257
+80339,47028
+80340,58287
+80341,53275
+80342,21361
+80343,61415
+80344,53275
+80345,61830
+80346,22036
+80347,63775
+80348,66862
+80349,66551
+80350,32000,77509
+80351,55374
+80352,80276
+80353,21361
+80354,70010
+80355,70591
+80356,30514
+80357,71431
+80358,71895
+80359,21361
+80360,72421
+80361,39183
+80362,21361
+80363,21361
+80364,80276
+80365,75019
+80366,39101
+80367,43107
+80368,11870
+80369,66025
+80370,77575
+80371,71131
+80372,79151
+80373,79214
+80374,39522
+80375,79852
+80376,79852
+80377,79973
+80378,51275
+80379,35863
+80380,20905
+80381,60786
+80382,80258
+80383,58803
+80384,58800
+80385,58798
+80386,28546
+80387,80483
+80388,32685
+80389,32888
+80390,32887
+80391,20328
+80392,73323
+80393,39379
+80394,25113
+80395,21358
+80396,29513
+80397,53590
+80398,76260
+80399,80714
+80400,80716
+80401,31616
+80402,80281
+80403,66084
+80404,45813
+80405,51468
+80406,34272
+80407,53180
+80408,36707
+80409,53829
+80410,53830
+80411,59975
+80412,62407
+80413,39049
+80414,30073
+80415,63416
+80416,51468
+80417,22948
+80418,70644
+80419,77076
+80420,31281
+80421,25113
+80422,21361
+80423,80753
+80424,80753
+80425,27625
+80426,81647
+80427,62441
+80428,81617
+80429,18864
+80430,41444
+80431,27754
+80432,26302
+80433,53624
+80434,80524
+80435,66673
+80436,44816
+80437,55348
+80438,55494
+80439,33455
+80440,55494
+80441,43168
+80442,20698
+80443,35150
+80444,80440
+80445,63295
+80446,74535
+80447,64170
+80448,41562
+80449,68289
+80450,69235
+80451,31278
+80452,58196
+80453,35735
+80454,30891
+80455,55348
+80456,32603
+80457,78635
+80458,21959
+80459,51068
+80460,51624
+80461,28518
+80462,30719
+80463,41572
+80464,23765
+80465,68064
+80466,70033
+80467,39517
+80468,59020
+80469,46843
+80470,19811
+80471,64142
+80472,47868
+80473,21276
+80474,52857
+80475,58287
+80476,37232
+80477,19629
+80478,31245
+80479,69554
+80480,27992
+80481,29119
+80482,35735
+80483,21745
+80484,49343
+80485,32505
+80486,59775
+80487,77585
+80488,77575
+80489,70033
+80490,73838
+80491,66086
+80492,37165
+80493,48505
+80494,80505
+80495,51156
+80496,19656
+80497,77452
+80498,34209
+80499,67703
+80500,68610
+80501,60216
+80502,37527
+80503,54729
+80504,62614
+80505,63314
+80506,32455
+80507,63316
+80508,18853
+80509,53456
+80510,40060
+80511,74090
+80512,48408
+80513,60259
+80514,80512
+80515,48423
+80516,54441,68990
+80517,61562
+80518,34861
+80519,19171
+80520,78970
+80521,60216
+80522,55815
+80523,66015
+80524,22053
+80525,19382
+80526,78855
+80527,63182
+80528,53067
+80529,64453
+80530,67921
+80531,79471
+80532,73762
+80533,80537
+80534,23130
+80535,52960
+80536,54126
+80537,53648
+80538,34771
+80539,32691
+80540,58287
+80541,45030
+80542,57333
+80543,39049
+80544,53848
+80545,77552
+80546,54789
+80547,67608
+80548,35053
+80549,76057
+80550,31100
+80551,48318
+80552,24314
+80553,80542
+80554,75336
+80555,39049
+80556,29921
+80557,35192
+80558,40860
+80559,20749
+80560,75604
+80561,27997
+80562,50489
+80563,28346
+80564,59377
+80565,20819
+80566,26884
+80567,33928
+80568,44551
+80569,63074
+80570,56663
+80571,60534
+80572,62702
+80573,65109
+80574,66617
+80575,48874
+80576,47819
+80577,77740
+80578,33512
+80579,45625
+80580,69818
+80581,76631
+80582,31464
+80583,79211
+80584,22901
+80585,39379
+80586,45009
+80587,42225
+80588,76664
+80589,76664
+80590,80589
+80591,33941
+80592,76664
+80593,46363
+80594,66023
+80595,79028
+80596,22688
+80597,69238
+80598,56663
+80599,55444
+80600,78647
+80601,67498
+80602,23689
+80603,52199
+80604,72559
+80605,26091
+80606,81176
+80607,23748
+80608,70033
+80609,68061
+80610,57573
+80611,57989
+80612,60604
+80613,21745
+80614,72435
+80615,47671
+80616,30206
+80617,25125
+80618,78703
+80619,25125
+80620,22032
+80621,39638
+80622,33753
+80623,64620
+80624,74825
+80625,18919
+80626,44240
+80627,80761
+80628,30692
+80629,49298
+80630,32691
+80631,53317
+80632,39424
+80633,21888
+80634,27777
+80635,72958
+80636,81601
+80637,79469
+80638,69482
+80639,30954
+80640,38614
+80641,71747
+80642,44240
+80643,78096
+80644,63392
+80645,66377
+80646,73838
+80647,23763
+80648,68641
+80649,76303
+80650,80618
+80651,25598
+80652,81750
+80653,63017
+80654,44701
+80655,19449
+80656,55952
+80657,35386
+80658,51894
+80659,27534
+80660,30962
+80661,30962
+80662,30962
+80663,70104
+80664,30962
+80665,81193
+80666,67822
+80667,52024
+80668,24565
+80669,24742
+80670,26662
+80671,28990
+80672,29132
+80673,31977
+80674,39641
+80675,77661
+80676,45732
+80677,45738
+80678,46287
+80679,50179
+80680,50426
+80681,43781
+80682,53589
+80683,55561
+80684,41657
+80685,40241
+80686,79467
+80687,61705
+80688,62029
+80689,64613
+80690,67608
+80691,21396
+80692,70033
+80693,68025
+80694,70660
+80695,71873
+80696,75264
+80697,78024
+80698,40752
+80699,80748
+80700,80808
+80701,80932
+80702,60345
+80703,48210
+80704,31417
+80705,76196
+80706,23019
+80707,79867
+80708,36426
+80709,40862
+80710,56029
+80711,42225
+80712,69609
+80713,50297
+80714,31245
+80715,81643
+80716,28539
+80717,28775
+80718,71686
+80719,76248
+80720,28389
+80721,20441
+80722,20755
+80723,69564
+80724,65808
+80725,68554
+80726,46555
+80727,53163
+80728,69744
+80729,44628
+80730,66302
+80731,71167
+80732,26133
+80733,39556
+80734,65075
+80735,28323
+80736,43893
+80737,43892
+80738,40419
+80739,40736
+80740,41953
+80741,57261
+80742,43487
+80743,67377
+80744,45369
+80745,76441
+80746,43898
+80747,30325
+80748,44013
+80749,56376
+80750,60258
+80751,41105
+80752,45677
+80753,52499
+80754,46245
+80755,21873
+80756,36329
+80757,44647
+80758,77641
+80759,35735
+80760,28438
+80761,79274,31616
+80762,53112
+80763,63363
+80764,53648
+80765,81759
+80766,68196
+80767,25843
+80768,74939
+80769,68622
+80770,68676
+80771,51894
+80772,53614
+80773,35279
+80774,23082
+80775,73412
+80776,33729
+80777,69269
+80778,50856
+80779,73732
+80780,23420
+80781,33047
+80782,76631
+80783,30989
+80784,12328
+80785,78755
+80786,66786
+80787,34808
+80788,40600
+80789,48408
+80790,24874
+80791,50910
+80792,71510
+80793,21373
+80794,30514
+80795,31991
+80796,39049
+80797,48251
+80798,77059
+80799,21922
+80800,29405
+80801,44273
+80802,23613
+80803,32775
+80804,62187
+80805,77015
+80806,43566
+80807,69408
+80808,75634
+80809,71686
+80810,55494
+80811,67131
+80812,53660
+80813,23748
+80814,34720
+80815,33425
+80816,81247
+80817,54821
+80818,26092
+80819,39677
+80820,44793
+80821,51665
+80822,25434
+80823,49376
+80824,36496
+80825,36496
+80826,71728
+80827,71965
+80828,71961
+80829,27091
+80830,36041
+80831,27506
+80832,59378
+80833,81200
+80834,19108,70221
+80835,71686
+80836,70214
+80837,77160
+80838,48154
+80839,19106
+80840,64637
+80841,70220
+80842,55736
+80843,78176
+80844,52905
+80845,19062
+80846,74659
+80847,82020
+80848,57254
+80849,60321
+80850,46003
+80851,11867
+80852,81501
+80853,73271
+80854,66855
+80855,59745
+80856,81161
+80857,26639
+80858,49088
+80859,49903
+80860,11867
+80861,40752
+80862,57280
+80863,19947
+80864,21814
+80865,22935
+80866,51462
+80867,65910
+80868,25770
+80869,26091
+80870,26191
+80871,26884
+80872,34049
+80873,70249
+80874,29102
+80875,29957
+80876,32738
+80877,32979
+80878,32979
+80879,33420
+80880,33640
+80881,33997
+80882,51159
+80883,35992
+80884,72892
+80885,62178
+80886,8175
+80887,81107
+80888,74904
+80889,70320
+80890,40411
+80891,41638
+80892,41646
+80893,41877
+80894,43418
+80895,20120
+80896,46317
+80897,36670
+80898,46757
+80899,45547
+80900,45669
+80901,46444
+80902,46523
+80903,30937
+80904,60786
+80905,50784
+80906,64878
+80907,51230
+80908,65481
+80909,52374
+80910,52586
+80911,57720
+80912,52850
+80913,52904,18149
+80914,36840
+80915,77641
+80916,77641
+80917,53217
+80918,56457
+80919,20120
+80920,54467
+80921,38477
+80922,55570
+80923,55581
+80924,55586
+80925,55807
+80926,56836
+80927,57289
+80928,60481
+80929,59827
+80930,59980
+80931,69258
+80932,60899
+80933,60898
+80934,62021
+80935,21959
+80936,66393
+80937,66475
+80938,45813
+80939,41877
+80940,67614
+80941,67957
+80942,68909
+80943,69177
+80944,63405
+80945,70772
+80946,70860
+80947,45813
+80948,71146
+80949,72559
+80950,80903
+80951,73477
+80952,73758
+80953,74520
+80954,64431
+80955,53817
+80956,25533
+80957,18149,61997
+80958,78258
+80959,40908
+80960,36029
+80961,81176
+80962,81251
+80963,81448
+80964,81462,18149
+80965,81488
+80966,81865
+80967,82130
+80968,45885
+80969,82055
+80970,80932
+80971,80438
+80972,33364
+80973,47231
+80974,29963
+80975,68622
+80976,41588
+80977,71398,41014
+80978,46408
+80979,24704
+80980,22596
+80981,31029
+80982,28532
+80983,71213
+80984,62476
+80985,45316
+80986,65977
+80987,71074
+80988,34272
+80989,80193
+80990,29707
+80991,18149
+80992,67703
+80993,67703
+80994,60032
+80995,68277
+80996,41980
+80997,36312
+80998,44418
+80999,47432
+81000,71686
+81001,40206
+81002,69661
+81003,31158
+81004,57333
+81005,75558
+81006,24807
+81007,42023
+81008,51270
+81009,54446
+81010,57066
+81011,66122
+81012,38001
+81013,71182
+81014,80739
+81015,81174
+81016,43736
+81017,69012
+81018,64142
+81019,33186
+81020,66279
+81021,74689
+81022,48084,66101
+81023,32711
+81024,51230
+81025,26298
+81026,60866
+81027,33488
+81028,21959
+81029,27447
+81030,52121
+81031,54467
+81032,65050
+81033,80540
+81034,31991
+81035,31991
+81036,31245
+81037,81482
+81038,81602
+81039,23294
+81040,32920
+81041,33014
+81042,57897
+81043,42337
+81044,32923
+81045,51947
+81046,27062
+81047,31117
+81048,68433
+81049,31992
+81050,19861
+81051,63960
+81052,81062
+81053,47870
+81054,28538
+81055,36694
+81056,81462
+81057,61659
+81058,52092
+81059,52904
+81060,76662
+81061,53167
+81062,35254
+81063,31862
+81064,71446
+81065,81462,72482
+81066,44826
+81067,28935
+81068,55348
+81069,40601
+81070,50459
+81071,60216
+81072,52118
+81073,52773
+81074,51947
+81075,72959
+81076,63937
+81077,71279
+81078,20665
+81079,21260
+81080,21869
+81081,45813
+81082,74826
+81083,38257
+81084,33134
+81085,53275
+81086,39116
+81087,61402
+81088,81161
+81089,45813
+81090,41729
+81091,28822
+81092,70033
+81093,32326
+81094,81079
+81095,27187
+81096,36694
+81097,77641
+81098,20079
+81099,32713
+81100,45813
+81101,43554
+81102,52857
+81103,46599
+81104,27044
+81105,51395
+81106,47026
+81107,81549
+81108,20079
+81109,23675
+81110,45813
+81111,54458
+81112,81342
+81113,81342
+81114,74067
+81115,23675
+81116,62902
+81117,41743
+81118,77641
+81119,57304
+81120,57685
+81121,20079
+81122,79630
+81123,78486
+81124,59300,80583
+81125,50919
+81126,70033
+81127,70249
+81128,61078
+81129,61510
+81130,79608
+81131,55236
+81132,65353
+81133,57304
+81134,43893
+81135,28323
+81136,70033
+81137,44013
+81138,67548
+81139,74067
+81140,45813
+81141,69306
+81142,25518
+81143,44232
+81144,72575
+81145,73612
+81146,77641
+81147,75583
+81148,76478
+81149,76812
+81150,45813
+81151,80735
+81152,79608
+81153,27900
+81154,73726
+81155,57627
+81156,57634
+81157,35545
+81158,63176
+81159,43104
+81160,31348
+81161,20689,81163
+81162,24307
+81163,61246
+81164,64718
+81165,51256
+81166,78774
+81167,48697
+81168,59450
+81169,63918
+81170,50875
+81171,47493
+81172,75450
+81173,37172
+81174,35679
+81175,76059
+81176,77641
+81177,21959
+81178,57289
+81179,45813
+81180,28999
+81181,61251
+81182,80498
+81183,80501
+81184,45392
+81185,79552
+81186,39088
+81187,72945
+81188,39049
+81189,40471
+81190,51298
+81191,48146
+81192,38705
+81193,80524
+81194,75216
+81195,67054
+81196,34199
+81197,62435
+81198,30316
+81199,20231
+81200,55758
+81201,62029
+81202,80528
+81203,80537
+81204,73838
+81205,78204
+81206,36343
+81207,35023
+81208,34337
+81209,38867
+81210,45597
+81211,38287
+81212,81626
+81213,53648
+81214,53648
+81215,37179
+81216,56474
+81217,67574
+81218,54469
+81219,42469
+81220,40098
+81221,76664
+81222,57901
+81223,57897
+81224,35668
+81225,58948
+81226,57897
+81227,41444
+81228,80197
+81229,24732
+81230,25574
+81231,29688
+81232,32691
+81233,34197
+81234,38039
+81235,41444
+81236,58647
+81237,68430
+81238,23869
+81239,81229
+81240,80206
+81241,50856
+81242,58945
+81243,70294
+81244,68430
+81245,53648
+81246,79749
+81247,73481
+81248,35386
+81249,70111
+81250,81248
+81251,19936
+81252,33845
+81253,81914
+81254,23019
+81255,25434
+81256,26217
+81257,23164
+81258,31453
+81259,67559
+81260,67957
+81261,75443
+81262,42351
+81263,79612
+81264,64809
+81265,43364
+81266,45625
+81267,77287
+81268,62740
+81269,38375,61247
+81270,70644
+81271,46215
+81272,62144
+81273,71315
+81274,19828
+81275,45689
+81276,19849
+81277,58144
+81278,72729
+81279,81277
+81280,37034
+81281,30634
+81282,51830
+81283,57249
+81284,57242
+81285,69851
+81286,69818
+81287,76847
+81288,22540
+81289,22542
+81290,79608
+81291,37582
+81292,20370
+81293,45813
+81294,70033
+81295,72220
+81296,22032
+81297,60847
+81298,48353
+81299,53613
+81300,35737
+81301,35737
+81302,33130
+81303,39088
+81304,60216
+81305,24732
+81306,42076
+81307,31647
+81308,21475
+81309,74132
+81310,62189
+81311,73632
+81312,40062
+81313,69171
+81314,21211
+81315,68679
+81316,23095
+81317,77641
+81318,45813
+81319,32887
+81320,32888
+81321,81337
+81322,81336
+81323,33420
+81324,66592
+81325,70033
+81326,38256
+81327,45813
+81328,49138
+81329,55791
+81330,74766
+81331,19629
+81332,8179
+81333,67999
+81334,68001
+81335,71552
+81336,72635
+81337,72637
+81338,70033
+81339,14950
+81340,81743
+81341,23946
+81342,45813
+81343,40564
+81344,72189
+81345,81626
+81346,31607
+81347,37388
+81348,40132
+81349,51301
+81350,31278
+81351,41395
+81352,46997
+81353,39049
+81354,37169
+81355,42358
+81356,43362
+81357,36147,47592
+81358,52627
+81359,45009
+81360,75942
+81361,75641
+81362,51882
+81363,70629
+81364,30891
+81365,48791
+81366,56472
+81367,50459
+81368,50755
+81369,29418
+81370,53056
+81371,68193
+81372,31638
+81373,50005
+81374,77374
+81375,43723
+81376,54937
+81377,53021
+81378,78878
+81379,65793
+81380,24385
+81381,62613
+81382,65975
+81383,34783
+81384,24007
+81385,51677
+81386,41907
+81387,47493
+81388,52071
+81389,27276
+81390,70990
+81391,58709
+81392,40680
+81393,78126
+81394,79608
+81395,52071
+81396,54044
+81397,47503
+81398,45107
+81399,77075
+81400,71632
+81401,37582
+81402,70033
+81403,52157
+81404,71634
+81405,21946
+81406,78126
+81407,49181
+81408,58969
+81409,62455
+81410,65816
+81411,65816
+81412,69173
+81413,34613
+81414,66222
+81415,47954
+81416,75917
+81417,74939
+81418,22268
+81419,47991
+81420,36603
+81421,31647
+81422,73863
+81423,34645
+81424,22900
+81425,25715
+81426,25115
+81427,60216
+81428,66151
+81429,66193
+81430,74112
+81431,47833
+81432,19475
+81433,60216
+81434,76005
+81435,70231
+81436,60011,71961
+81437,25573
+81438,48477
+81439,33268
+81440,36872
+81441,45813
+81442,55494
+81443,76249
+81444,55445
+81445,60218
+81446,58917
+81447,32455
+81448,27187
+81449,81467
+81450,81116
+81451,40590
+81452,58699
+81453,82056,81448
+81454,72153
+81455,24710
+81456,46760
+81457,54562
+81458,19098
+81459,54562
+81460,55815
+81461,39607
+81462,39607,19438
+81463,29928
+81464,62145
+81465,19452
+81466,29626
+81467,51180,52904
+81468,59970
+81469,39621
+81470,53283
+81471,65204
+81472,36767
+81473,71719
+81474,45096
+81475,21978
+81476,52904
+81477,81462
+81478,48474
+81479,19394
+81480,50296
+81481,47505
+81482,61257
+81483,43691
+81484,78014
+81485,20641
+81486,20641
+81487,20883
+81488,21959
+81489,29040
+81490,81491
+81491,36694
+81492,39676
+81493,43891
+81494,31960
+81495,46662
+81496,47311
+81497,73477
+81498,51400
+81499,53588
+81500,45813
+81501,55451
+81502,56480
+81503,60771
+81504,63753
+81505,64383
+81506,66862
+81507,43148
+81508,72575
+81509,27455
+81510,58287
+81511,56180
+81512,76441
+81513,45142
+81514,79709
+81515,12341
+81516,46444
+81517,48787
+81518,81547
+81519,27756
+81520,69887
+81521,38795
+81522,32685
+81523,37921
+81524,37920
+81525,50117
+81526,25296
+81527,72399,81529
+81528,22429
+81529,80145
+81530,78432
+81531,64142
+81532,27595
+81533,58604
+81534,40752
+81535,49001
+81536,60661
+81537,60810
+81538,74067
+81539,68448
+81540,69604
+81541,39676
+81542,67381
+81543,26091
+81544,81200
+81545,29623
+81546,81602
+81547,32691
+81548,81681
+81549,79211
+81550,76345
+81551,52168
+81552,20748
+81553,30063
+81554,39049
+81555,68854
+81556,20755
+81557,35781
+81558,43863
+81559,36425
+81560,19319
+81561,81562
+81562,21140
+81563,81562
+81564,27997
+81565,81564
+81566,81161
+81567,50969
+81568,52896
+81569,11862
+81570,66393
+81571,81161
+81572,61533
+81573,51617
+81574,8397
+81575,31115
+81576,58102
+81577,72983
+81578,50369
+81579,81781
+81580,35879
+81581,76211
+81582,59258
+81583,69113
+81584,58118
+81585,34737
+81586,61382
+81587,33885
+81588,21275
+81589,47829
+81590,63988
+81591,73684
+81592,65478
+81593,41264
+81594,81781
+81595,51141
+81596,72051
+81597,50359
+81598,64831
+81599,81781
+81600,37884
+81601,19228
+81602,63117
+81603,29928
+81604,34506
+81605,69782,81660
+81606,37199
+81607,20743
+81608,27077
+81609,19458
+81610,41107
+81611,81602
+81612,21671
+81613,71595
+81614,74537
+81615,76664
+81616,49266
+81617,78703
+81618,31094
+81619,31095
+81620,31616
+81621,81659
+81622,25017
+81623,25302
+81624,33929
+81625,80591
+81626,60216
+81627,48318
+81628,81627
+81629,52497
+81630,46599
+81631,61999
+81632,49113
+81633,38614
+81634,19737
+81635,35944
+81636,81626,43313
+81637,78698
+81638,53867
+81639,65202
+81640,50875
+81641,67273
+81642,37721
+81643,37712
+81644,81626
+81645,30975
+81646,81602
+81647,43103
+81648,66953
+81649,19228
+81650,53660
+81651,32362
+81652,63185
+81653,81801
+81654,69634
+81655,32506
+81656,81647
+81657,71838
+81658,35196
+81659,75057
+81660,21201
+81661,81615
+81662,59305
+81663,29626
+81664,46387,44437
+81665,38794
+81666,53805
+81667,19542
+81668,32362
+81669,20082
+81670,72960
+81671,60074
+81672,65203
+81673,80106
+81674,58450
+81675,60216
+81676,31165
+81677,30697
+81678,63316
+81679,52832
+81680,68448
+81681,48787
+81682,78755
+81683,39294
+81684,64622
+81685,60032
+81686,42388
+81687,42539
+81688,51814
+81689,42388
+81690,25122
+81691,41305
+81692,46270
+81693,80583
+81694,74067
+81695,38369
+81696,81694
+81697,72451
+81698,72372
+81699,21087
+81700,19699
+81701,22656
+81702,28539
+81703,19228
+81704,52189
+81705,19395
+81706,66164
+81707,38566
+81708,22122
+81709,39049
+81710,76345
+81711,45813
+81712,52870
+81713,47908
+81714,64142
+81715,43723
+81716,48748
+81717,64142
+81718,81714
+81719,47673
+81720,35765
+81721,60251
+81722,48251
+81723,33755
+81724,78163
+81725,59970
+81726,81796
+81727,68702
+81728,34826
+81729,34074
+81730,67822
+81731,29839
+81732,42225
+81733,32578
+81734,59020
+81735,60032
+81736,41926
+81737,55263
+81738,40756
+81739,34174
+81740,69744
+81741,59306
+81742,50117
+81743,59441
+81744,76787
+81745,12341
+81746,45009
+81747,48251
+81748,63733
+81749,73840
+81750,30557
+81751,31612
+81752,29619
+81753,53417
+81754,53422
+81755,66616
+81756,65943
+81757,35490
+81758,48106
+81759,32691
+81760,29919
+81761,35157
+81762,54153
+81763,34661
+81764,43400
+81765,63426
+81766,60870
+81767,22901
+81768,22901
+81769,80238
+81770,50875
+81771,81770
+81772,81770
+81773,81770
+81774,81770
+81775,81770
+81776,79905
+81777,27090
+81778,27135
+81779,34652
+81780,51706
+81781,30891
+81782,24784
+81783,71938
+81784,56009
+81785,81800,57543
+81786,81800
+81787,79377
+81788,19228
+81789,81800
+81790,21536
+81791,81614
+81792,27781
+81793,34786
+81794,47655
+81795,48254
+81796,59020
+81797,38883
+81798,19737,50875
+81799,21912
+81800,30882
+81801,65202
+81802,74903
+81803,81578
+81804,48249
+81805,48253
+81806,57934
+81807,22665
+81808,19228
+81809,34041
+81810,47552
+81811,48875
+81812,24710
+81813,81536
+81814,54562
+81815,54562
+81816,36350
+81817,31890
+81818,67675
+81819,81822
+81820,19069
+81821,58158
+81822,70651
+81823,81822
+81824,81822
+81825,38475
+81826,27640
+81827,79743
+81828,70651
+81829,66786
+81830,28780,56806
+81831,71319
+81832,54562
+81833,77514
+81834,40752
+81835,47371
+81836,81835
+81837,58763
+81838,60543
+81839,36673
+81840,64544
+81841,36673
+81842,31940
+81843,51068
+81844,25256
+81845,79215
+81846,71567
+81847,60044
+81848,70033
+81849,31890
+81850,31417
+81851,79471
+81852,40950
+81853,29969
+81854,67577
+81855,35391
+81856,58589
+81857,75216
+81858,54446
+81859,26656
+81860,42151
+81861,58175
+81862,78100
+81863,74776
+81864,66977
+81865,79608
+81866,79608
+81867,79608
+81868,62937
+81869,63733
+81870,77277
+81871,77277
+81872,71900
+81873,37776
+81874,39818
+81875,51523
+81876,77277
+81877,65233
+81878,53958
+81879,51467
+81880,53179
+81881,35735
+81882,37805
+81883,51523
+81884,81190
+81885,54485
+81886,42151
+81887,77373
+81888,50117
+81889,35645,77373
+81890,72839
+81891,67274
+81892,70686
+81893,19055
+81894,45374
+81895,49944
+81896,46285
+81897,21777
+81898,78257
+81899,70976
+81900,67574
+81901,65509
+81902,60216
+81903,48084
+81904,19570
+81905,76664
+81906,76664
+81907,76664
+81908,37802
+81909,52053
+81910,81907
+81911,25302
+81912,64409
+81913,61159
+81914,41877
+81915,50803
+81916,81915
+81917,33186
+81918,29237
+81919,67872
+81920,35085
+81921,26448
+81922,11857
+81923,56674
+81924,50108
+81925,53275
+81926,55294
+81927,19979
+81928,31417
+81929,40608
+81930,53286
+81931,35992
+81932,22384
+81933,22384
+81934,69258
+81935,23675
+81936,45813
+81937,51649
+81938,24302
+81939,41399
+81940,31043
+81941,29817
+81942,30355
+81943,28104
+81944,61251
+81945,81944
+81946,41396
+81947,43211
+81948,43418
+81949,43562
+81950,44160
+81951,44384
+81952,46444
+81953,46444
+81954,48870
+81955,40411
+81956,49059
+81957,48084
+81958,46581
+81959,79608
+81960,49340
+81961,50184
+81962,77329
+81963,52121
+81964,52374
+81965,53164
+81966,53250
+81967,68025
+81968,57484
+81969,70033
+81970,60481
+81971,60024
+81972,53876
+81973,52121
+81974,60899
+81975,60898
+81976,80583
+81977,81161
+81978,67791
+81979,43668
+81980,61251
+81981,41877
+81982,74297
+81983,74296
+81984,53817
+81985,71146
+81986,11870
+81987,80324
+81988,53227
+81989,31058
+81990,78170
+81991,32979
+81992,54932
+81993,26448
+81994,26118
+81995,60935
+81996,67819
+81997,49059
+81998,71148
+81999,40734
+82000,66592
+82001,11870
+82002,81482
+82003,77641
+82004,8561
+82005,70011
+82006,43790
+82007,41533
+82008,25127
+82009,29626
+82010,46329
+82011,45813
+82012,45813
+82013,70033
+82014,19570
+82015,64275
+82016,18880
+82017,59468
+82018,33933
+82019,81482
+82020,31417
+82021,63117
+82022,62937
+82023,33184
+82024,75853
+82025,53519
+82026,61415
+82027,31115
+82028,33186
+82029,70427
+82030,70426
+82031,51068
+82032,35478
+82033,38699
+82034,60448
+82035,33729,41005
+82036,57988
+82037,58804
+82038,74488
+82039,39049
+82040,72701
+82041,31444
+82042,67381
+82043,41004
+82044,67432
+82045,67432
+82046,59468
+82047,31115
+82048,31115
+82049,31115
+82050,20743
+82051,19639
+82052,64490
+82053,82050
+82054,19412,52904
+82055,82050,40293
+82056,82050
+82057,49508
+82058,19635
+82059,76662
+82060,53528
+82061,76664
+82062,82058
+82063,73967,30226
+82064,42143
+82065,27086
+82066,82063
+82067,54082
+82068,54082
+82069,3621
+82070,70033
+82071,63144
+82072,36868
+82073,31890
+82074,34808
+82075,18530
+82076,60830,28639
+82077,33581
+82078,29963
+82079,38545
+82080,37405
+82081,46252
+82082,51068
+82083,21470
+82084,27640
+82085,31115
+82086,38213
+82087,47455
+82088,44027
+82089,41589
+82090,26895
+82091,81482
+82092,77641
+82093,2400
+82094,28153
+82095,54562,80357
+82096,19872
+82097,70186
+82098,35188
+82099,57211
+82100,68831
+82101,42093
+82102,61766
+82103,82100,25234
+82104,46767
+82105,48685
+82106,50623
+82107,51068
+82108,31115
+82109,31115
+82110,31115
+82111,77945
+82112,57158
+82113,75750
+82114,20726
+82115,43672
+82116,33623
+82117,54082
+82118,54562
+82119,26845
+82120,34316
+82121,57640
+82122,58616
+82123,74250
+82124,74251
+82125,60786
+82126,65374
+82127,71686
+82128,65793
+82129,54562
+82130,40752
+82131,54218
+82132,61054
+82133,54562
+82134,54082
+82135,58616
+82136,73752
+82137,59475
+82138,71686
+82139,56038
+82140,13561
+82141,34452
+82142,65581
+82143,34997
+82144,65503
+82145,33998
+82146,34389
+82147,72271
+82148,46035
+82149,82153
+82150,77045
+82151,65581
+82152,43104
+82153,73837
+82154,21760
+82155,65579
+82156,35882
+82157,25016
+82158,30693
+82159,82153
+82160,33479
+82161,58166
+82162,81703
+82163,24249
+82164,24251
+82165,40423
+82166,22165
+82167,20745
+82168,59153
+82169,70395
+82170,48787
+82171,20743
+82172,79741
+82173,72409
+82174,74232
+82175,55563
+82176,44013
+82177,53251
+82178,74296
+82179,28074
+82180,76802
+82181,32462
+82182,24314
+82183,25256
+82184,63064
+82185,72409
+82186,28164
+82187,60385
+82188,38053
+82189,24225
+82190,48079
+82191,28790
diff --git a/Algorithms/Part-II/1-WordNet/run.sh b/Algorithms/Part-II/1-WordNet/run.sh
new file mode 100755
index 0000000..cd95d44
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/run.sh
@@ -0,0 +1,18 @@
+#! /bin/bash
+
+export "CLASSPATH=$CLASSPATH:.:$HOME/algs4/algs4.jar:$HOME/algs4/stdlib.jar"
+
+CLASSES="WordNet SAP Outcast"
+
+rm *.class *.zip 2>/dev/null
+
+for kls in $CLASSES; do
+ ~/algs4/bin/checkstyle ${kls}.java
+ javac -Xlint ${kls}.java || exit 1
+done
+~/algs4/bin/findbugs *.class
+
+java Outcast || exit 1
+
+zip wordnet.zip *.java
+
diff --git a/Algorithms/Part-II/1-WordNet/synsets.txt b/Algorithms/Part-II/1-WordNet/synsets.txt
new file mode 100644
index 0000000..8684058
--- /dev/null
+++ b/Algorithms/Part-II/1-WordNet/synsets.txt
@@ -0,0 +1,82192 @@
+0,'hood,(slang) a neighborhood
+1,1530s,the decade from 1530 to 1539
+2,15_May_Organization,a terrorist organization formed in 1979 by a faction of the Popular Front for the Liberation of Palestine but disbanded in the 1980s when key members left to join a faction of al-Fatah
+3,1750s,the decade from 1750 to 1759
+4,1760s,the decade from 1760 to 1769
+5,1770s,the decade from 1770 to 1779
+6,1780s,the decade from 1780 to 1789
+7,1790s,the decade from 1790 to 1799
+8,18-karat_gold,an alloy that contains 75 per cent gold
+9,1820s,the decade from 1820 to 1829
+10,1830s,the decade from 1830 to 1839
+11,1840s,the decade from 1840 to 1849
+12,1850s,the decade from 1850 to 1859
+13,1860s,the decade from 1860 to 1869
+14,1870s,the decade from 1870 to 1879
+15,1900s,the decade from 1900 to 1909
+16,22-karat_gold,an alloy that contains 87 per cent gold
+17,24-karat_gold pure_gold,100 per cent gold
+18,24/7,uptime is 24 hours a day 7 days a week
+19,401-k_plan 401-k,a retirement savings plan that is funded by employee contributions and (often) matching contributions from the employer; contributions are made from your salary before taxes and the funds grow tax-free until they are withdrawn, at which point they can be converted into an IRA; funds can be transferred if you change employers and you can (to some extent) manage the investments yourself
+20,9/11 9-11 September_11 Sept._11 Sep_11,the day in 2001 when Arab suicide bombers hijacked United States airliners and used them as bombs
+21,A a,the 1st letter of the Roman alphabet
+22,A type_A group_A,the blood group whose red cells carry the A antigen
+23,A'man,the Israeli military intelligence which produces comprehensive national intelligence briefings for the prime minister and the cabinet
+24,A-horizon A_horizon,the top layer of a soil profile; usually contains humus
+25,A-line,women's clothing that has a fitted top and a flared skirt that is widest at the hemline; "it is called the A-line because the effect resembles the capital letter A"
+26,A-list,a list of names of specially favored people; "the boss gave me his A-list of people we should try to recruit"
+27,A-scan_ultrasonography,the use of ultrasonography to measure the length of the eyeball
+28,A-team,a group of elite soldiers or a leadership group of advisors or workers in an organization
+29,AB type_AB group_AB,the blood group whose red cells carry both the A and B antigens
+30,ABO_antibodies,blood type antibodies
+31,ABO_blood_group_system ABO_system ABO_group,a classification system for the antigens of human blood; used in blood transfusion therapy; four groups are A and B and AB and O
+32,ACE_inhibitor angiotensin-converting_enzyme_inhibitor,an antihypertensive drug that blocks the formation of angiotensin II in the kidney, leading to relaxation of the arteries; promotes the excretion of salt and water by inhibiting the activity of the angiotensin converting enzyme; also used to treat congestive heart failure
+33,ADA-SCID,SCID resulting from mutation of a gene that codes for adenosine deaminase
+34,AIDS acquired_immune_deficiency_syndrome,a serious (often fatal) disease of the immune system transmitted through blood products especially by sexual contact or contaminated needles
+35,ALGOL,(from a combination of ALGOrithmic and Language); a programming language used to express computer programs as algorithms
+36,AND_circuit AND_gate,a circuit in a computer that fires only when all of its inputs fire
+37,APC,a drug combination found in some over-the-counter headache remedies (aspirin and phenacetin and caffeine)
+38,ASCII_character,any member of the standard code for representing characters by binary numbers
+39,ASCII_character_set,(computer science) 128 characters that make up the ASCII coding scheme; "the ASCII character set is the most universal character coding set"
+40,ASCII_text_file,a text file that contains only ASCII characters without special formatting
+41,ASL American_sign_language,the sign language used in the United States
+42,AWOL,one who is away or absent without leave
+43,A_battery,the battery used to heat the filaments of a vacuum tube
+44,A_level,the advanced level of a subject taken in school (usually two years after O level)
+45,Aachen Aken Aix-la-Chapelle,a city in western Germany near the Dutch and Belgian borders; formerly it was Charlemagne's northern capital
+46,Aalborg Alborg,a city and port in northern Jutland
+47,Aalst,a town in central Belgium
+48,Aalto Alvar_Aalto Hugo_Alvar_Henrik_Aalto,Finnish architect and designer of furniture (1898-1976)
+49,Aare Aar Aare_River,a river in north central Switzerland that runs northeast into the Rhine
+50,Aaron,(Old Testament) elder brother of Moses and first high priest of the Israelites; created the golden calf
+51,Aaron Henry_Louis_Aaron Hank_Aaron,United States professional baseball player who hit more home runs than Babe Ruth (born in 1934)
+52,Ab Av,the eleventh month of the civil year; the fifth month of the ecclesiastical year in the Jewish calendar (in July and August)
+53,Abadan,a port city in southwestern Iran
+54,Abbe_condenser,a condenser having 2 or 3 lenses with wide aperture for use in microscopes
+55,Abecedarian,a 16th century sect of Anabaptists centered in Germany who had an absolute disdain for human knowledge
+56,Abel,(Old Testament) Cain and Abel were the first children of Adam and Eve born after the Fall of Man; Abel was killed by Cain
+57,Abel Niels_Abel Niels_Henrik_Abel,Norwegian mathematician (1802-1829)
+58,Abelard Peter_Abelard Pierre_Abelard,French philosopher and theologian; lover of Heloise (1079-1142)
+59,Abelian_group commutative_group,a group that satisfies the commutative law
+60,Abelmoschus genus_Abelmoschus,genus of tropical coarse herbs having large lobed leaves and often yellow flowers
+61,Aberdare,a mining town in southern Wales
+62,Aberdeen,a town in western Washington
+63,Aberdeen,a town in northeastern South Dakota
+64,Aberdeen,a town in northeastern Maryland
+65,Aberdeen,a city in northeastern Scotland on the North Sea
+66,Aberdeen_Angus Angus black_Angus,black hornless breed from Scotland
+67,Abidjan,city recognized by the United States as the capital of the Ivory Coast; largest city of the Ivory Coast
+68,Abies genus_Abies,true firs
+69,Abilene,a city in central Texas
+70,Abilene,a town in central Kansas to the west of Topeka; home of Dwight D. Eisenhower
+71,Abkhaz Abkhas,Circassian people living east of the Black Sea
+72,Abkhaz Abkhazia,an autonomous province of Georgia on the Black Sea; a strong independence movement has resulted in much instability
+73,Abkhaz Abkhazian Abkhas Abkhasian,a member of the Circassian people who live to the east of the Black Sea
+74,Abkhazian Abkhasian,a Circassian language spoken by the Abkhaz
+75,Abnaki,the Algonquian language spoken by the Abnaki and Penobscot
+76,Abnaki Abenaki,a member of the Algonquian people of Maine and southern Quebec
+77,Abney_level,a surveying instrument consisting of a spirit level and a sighting tube; used to measure the angle of inclination of a line from the observer to the target
+78,Aborigine native_Australian Australian_Aborigine,a member of the people living in Australia when Europeans arrived
+79,Abraham Ibrahim,the first of the Old Testament patriarchs and the father of Isaac; according to Genesis, God promised to give Abraham's family (the Hebrews) the land of Canaan (the Promised Land); God tested Abraham by asking him to sacrifice his son; "Judaism, Christianity, and Islam each has a special claim on Abraham"
+80,Abraham's_bosom bosom_of_Abraham,the place where the just enjoy the peace of heaven after death
+81,Abramis genus_Abramis,European fishes
+82,Abrocoma genus_Abrocoma,abrocomes
+83,Abronia genus_Abronia,genus of western North American herbs having showy flowers
+84,Abruzzi Abruzzi_e_Molise,a mountainous region of central Italy on the Adriatic
+85,Abstract_Expressionism action_painting,a New York school of painting characterized by freely created abstractions; the first important school of American painting to develop independently of European styles
+86,Abu_Dhabi United_Arab_Emirates's_capital,a sheikhdom of eastern Arabia and capital of the United Arab Emirates
+87,Abu_Hafs_al-Masri_Brigades,a terrorist group that has worked with Al Qaeda; claimed responsibility for attacks in Iraq and Turkey
+88,Abu_Sayyaf Bearer_of_the_Sword,a small gang of terrorist thugs claiming to seek a separate Islamic state for the Muslim minority in the Philippines; uses bombing and assassination and extortion and kidnapping; "In 2001 Abu Sayyaf kidnapped twenty people and beheaded one of the American captives"
+89,Abudefduf genus_Abudefduf,damsel fishes
+90,Abuja capital_of_Nigeria Nigerian_capital,capital of Nigeria in the center of the country
+91,Abukir Abukir_Bay,a bay on the Mediterranean Sea in northern Egypt
+92,Abutilon genus_Abutilon,herbs or shrubs or small trees: flowering maple; Indian mallow
+93,Abydos,an ancient Greek colony on the Asiatic side of the Dardanelles; scene of the legend of Hero and Leander
+94,Abyssinian Abyssinian_cat,a small slender short-haired breed of African origin having brownish fur with a reddish undercoat
+95,Abyssinian_banana Ethiopian_banana Ensete_ventricosum Musa_ensete,large evergreen arborescent herb having huge paddle-shaped leaves and bearing inedible fruit that resemble bananas but edible young flower shoots; sometimes placed in genus Musa
+96,Academy_Award Oscar,an annual award by the Academy of Motion Picture Arts and Sciences for achievements in motion picture production and performance
+97,Academy_of_Motion_Picture_Arts_and_Sciences,an academy that gives annual awards for achievements in motion picture production and performance
+98,Academy_of_Television_Arts_and_Sciences,an academy that gives annual awards for outstanding achievements in television
+99,Acadia,the French-speaking part of the Canadian Maritime Provinces
+100,Acadia_National_Park,a national park in Maine showing marine erosion and glaciation; includes seashore and also the highest point on the Atlantic coast
+101,Acadian,an early French settler in the Maritimes
+102,Acalypha genus_Acalypha,a genus of herbs and shrubs belonging to the family Euphorbiaceae
+103,Acanthaceae family_Acanthaceae acanthus_family,widely distributed herbs and shrubs and trees; sometimes placed in the order Scrophulariales
+104,Acanthisitta genus_Acanthisitta,a genus of Xenicidae
+105,Acanthocephala phylum_Acanthocephala,phylum or class of elongated wormlike parasites that live in the intestines of vertebrates: spiny-headed worms
+106,Acanthocereus genus_Acanthocereus,mostly trailing cacti having nocturnal white flowers; tropical America and Caribbean region
+107,Acanthocybium genus_Acanthocybium,wahoos
+108,Acanthophis genus_Acanthophis,Australian elapid snakes
+109,Acanthopterygii superorder_Acanthopterygii,teleost fishes having fins with sharp bony rays
+110,Acanthoscelides genus_Acanthoscelides,a genus of Bruchidae
+111,Acanthuridae family_Acanthuridae,surgeonfishes
+112,Acanthurus genus_Acanthurus,type genus of the Acanthuridae: doctorfishes
+113,Acapulco Acapulco_de_Juarez,a port and fashionable resort city on the Pacific coast of southern Mexico; known for beaches and water sports (including cliff diving)
+114,Acapulco_gold Mexican_green,a particularly potent variety of marijuana
+115,Acaridae family_Acaridae,mites
+116,Acarina order_Acarina,mites and ticks
+117,Accipiter genus_Accipiter,type genus of the family Accipitridae
+118,Accipitridae family_Accipitridae,hawks; Old World vultures; kites; harriers; eagles
+119,Accipitriformes order_Accipitriformes,in some classifications an alternative name for the Falconiformes
+120,Accra capital_of_Ghana,the capital and largest city of Ghana with a deep-water port
+121,Acer genus_Acer,type genus of the Aceraceae; trees or shrubs having winged fruit
+122,Aceraceae family_Aceraceae maple_family,a family of trees and shrubs of order Sapindales including the maples
+123,Achaea,a region of ancient Greece on the north coast of the Peloponnese
+124,Achaean Achaian,a member of one of four linguistic divisions of the prehistoric Greeks
+125,Achaean Arcado-Cyprians,the ancient Greek inhabitants of Achaea
+126,Acheron River_Acheron,(Greek mythology) a river in Hades across which the souls of the dead were carried by Charon
+127,Acherontia genus_Acherontia,death's-head moth
+128,Acheson Dean_Acheson Dean_Gooderham_Acheson,United States statesman who promoted the Marshall Plan and helped establish NATO (1893-1971)
+129,Acheson_process,an industrial process for making graphite by heating a mixture of coke and clay
+130,Acheta genus_Acheta,common house and field crickets
+131,Achilles,a mythical Greek hero of the Iliad; a foremost Greek warrior at the siege of Troy; when he was a baby his mother tried to make him immortal by bathing him in a magical river but the heel by which she held him remained vulnerable--his `Achilles' heel'
+132,Achilles'_heel,a seemingly small but actual mortal weakness
+133,Achilles_tendon tendon_of_Achilles,a large tendon that runs from the heel to the calf
+134,Achoerodus genus_Achoerodus,a genus of Labridae
+135,Achomawi,a member of the Achomawi community of northeastern California
+136,Achomawi,a community of Native Americans who speak a Hokan language and live in northeastern California
+137,Achomawi,the Shastan language spoken by the Achomawi
+138,Achras genus_Achras,tropical trees having papery leaves and large fruit
+139,Acinonyx genus_Acinonyx,cheetahs
+140,Acinos genus_Acinos,plants closely allied to the genera Satureja and Calamintha
+141,Acipenser genus_Acipenser,type genus of the Acipenseridae: sturgeons
+142,Acipenseridae family_Acipenseridae,sturgeons
+143,Acnidosporidia subclass_Acnidosporidia,a subclass of Sporozoa
+144,Acocanthera genus_Acocanthera Acokanthera genus_Acokanthera,small genus of trees and shrubs containing strongly toxic cardiac glycosides; Arabia to Africa
+145,Aconcagua,the highest mountain in the western hemisphere; located in the Andes in western Argentina (22,834 feet high)
+146,Aconitum genus_Aconitum,genus of poisonous plants of temperate regions of northern hemisphere with a vaulted and enlarged petal
+147,Acoraceae subfamily_Acoraceae,used in some classifications for the genus Acorus which is usually assigned to Araceae
+148,Acorus genus_Acorus,sweet flags; sometimes placed in subfamily Acoraceae
+149,Acrasiomycetes class_Acrasiomycetes,cellular slime molds; in some classifications placed in kingdom Protoctista
+150,Acre,a territory of western Brazil bordering on Bolivia and Peru
+151,Acre Akko Akka Accho,a town and port in northwestern Israel in the eastern Mediterranean
+152,Acrididae family_Acrididae Locustidae family_Locustidae,short-horned grasshoppers; true locusts
+153,Acridotheres genus_Acridotheres,mynas
+154,Acris genus_Acris,cricket frogs
+155,Acrobates genus_Acrobates,a genus of Phalangeridae
+156,Acrocarpus genus_Acrocarpus,small genus of trees of Indonesia and Malaysia
+157,Acrocephalus genus_Acrocephalus,a genus of Sylviidae
+158,Acroclinium genus_Acroclinium,genus of herbs and shrubs of Australia and South Africa: everlasting flower; most species usually placed in genus Helipterum
+159,Acrocomia genus_Acrocomia,Central and South American feather palms
+160,Acropora genus_Acropora,coelenterate genus of order Madreporaria, including staghorn corals
+161,Acrostichum genus_Acrostichum,in some classification systems placed in family Polypodiaceae
+162,Actaea genus_Actaea,baneberry
+163,Actias genus_Actias,luna moths
+164,Actifed,trade name for a drug containing an antihistamine and a decongestant; used to treat upper respiratory conditions and minor allergies
+165,Actinia genus_Actinia,a genus of sea anemone common in rock pools
+166,Actiniaria order_Actiniaria Actinaria order_Actinaria,sea anemones
+167,Actinidia genus_Actinidia,small Asiatic woody vine bearing many-seeded fruit
+168,Actinidiaceae family_Actinidiaceae,tropical trees or shrubs or woody vines
+169,Actiniopteris genus_Actiniopteris,terrestrial ferns of tropical Asia and Africa
+170,Actinomeris genus_Actinomeris,used in some classification systems for plants now included in genus Verbesina
+171,Actinomycetaceae family_Actinomycetaceae,filamentous anaerobic bacteria
+172,Actinomycetales order_Actinomycetales,filamentous or rod-shaped bacteria
+173,Actinomyxidia order_Actinomyxidia,parasites of worms
+174,Actinopoda subclass_Actinopoda,heliozoans; radiolarians
+175,Actitis genus_Actitis,a genus of Scolopacidae
+176,Actium,an ancient town on a promontory in western Greece
+177,Actium,the naval battle in which Antony and Cleopatra were defeated by Octavian's fleet under Agrippa in 31 BC
+178,Acts_of_the_Apostles Acts,a New Testament book describing the development of the early church from Christ's Ascension to Paul's sojourn at Rome
+179,Adad,Babylonian god of storms and wind
+180,Adalia genus_Adalia,genus of ladybugs
+181,Adam,(Old Testament) in Judeo-Christian mythology; the first man and the husband of Eve and the progenitor of the human race
+182,Adam Robert_Adam,Scottish architect who designed many public buildings in England and Scotland (1728-1792)
+183,Adam ecstasy XTC go disco_biscuit cristal X hug_drug,street names for methylenedioxymethamphetamine
+184,Adam's_Peak Samanala,a mountain peak in south central Sri Lanka (7,360 feet high)
+185,Adam's_needle Adam's_needle-and-thread spoonleaf_yucca needle_palm Yucca_filamentosa,yucca with long stiff leaves having filamentlike appendages
+186,Adams John_Adams President_Adams President_John_Adams,2nd President of the United States (1735-1826)
+187,Adams John_Quincy_Adams President_Adams President_John_Quincy_Adams,6th President of the United States; son of John Adams (1767-1848)
+188,Adams Mount_Adams,a mountain peak in southwestern Washington in the Cascade Range (12,307 feet high)
+189,Adams Sam_Adams Samuel_Adams,American Revolutionary leader and patriot; an organizer of the Boston Tea Party and signer of the Declaration of Independence (1722-1803)
+190,Adana Seyhan,a city in southern Turkey on the Seyhan River
+191,Adansonia genus_Adansonia,baobab; cream-of-tartar tree
+192,Adapa,a Babylonian demigod or first man (sometimes identified with Adam)
+193,Adapid Adapid_group,extinct small mostly diurnal lower primates that fed on leaves and fruit; abundant in North America and Europe 30 to 50 million years ago; their descendents probably include the lemurs; some authorities consider them ancestral to anthropoids but others consider them only cousins
+194,Adar,the sixth month of the civil year; the twelfth month of the ecclesiastic year in the Jewish calendar (in February and March)
+195,Addis_Ababa New_Flower capital_of_Ethiopia,the capital of Ethiopia and the country's largest city; located in central Ethiopia
+196,Addison's_disease Addison's_syndrome hypoadrenalism hypoadrenocorticism,a glandular disorder caused by failure of function of the cortex of the adrenal gland and marked by anemia and prostration with brownish skin
+197,Additions_to_Esther,an Apocryphal book consisting of text added to the Book of Esther
+198,Adelaide,the state capital of South Australia
+199,Adelges genus_Adelges,type genus of the Adelgidae: plant lice
+200,Adelgidae family_Adelgidae,plant lice
+201,Adelie Adelie_penguin Pygoscelis_adeliae,medium-sized penguins occurring in large colonies on the Adelie Coast of Antarctica
+202,Adelie_Land Terre_Adelie Adelie_Coast,a costal region of Antarctica to the south of Australia; noted for its large colonies of penguins
+203,Aden,an important port of Yemen; located on the Gulf of Aden; its strategic location has made it a major trading center of southern Arabia since ancient times
+204,Adenanthera genus_Adenanthera,small genus of trees of tropical Asia and Pacific areas
+205,Adenauer Konrad_Adenauer,German statesman; chancellor of West Germany (1876-1967)
+206,Adenium genus_Adenium,one species: succulent shrub or tree of tropical Africa and Arabia
+207,Adenota genus_Adenota,African antelopes: puku
+208,Adi_Granth Granth Granth_Sahib,the principal sacred text of Sikhism contains hymns and poetry as well as the teachings of the first five gurus
+209,Adiantaceae family_Adiantaceae,used in some classification systems for some genera of the family Polypodiaceae (or Pteridaceae)
+210,Adiantum genus_Adiantum,cosmopolitan genus of ferns: maidenhair ferns; in some classification systems placed in family Polypodiaceae or Adiantaceae
+211,Adige River_Adige,a river in northern Italy that flows southeast into the Adriatic Sea; "Verona is on the Adige"
+212,Adirondacks Adirondack_Mountains,a mountain range in northeastern New York State; a popular resort area
+213,Aditi,a Hindu goddess who releases from sin or disease; mother of the Adityas
+214,Aditya,one of 7 to 12 sons of Aditi; Hindu gods of celestial light
+215,Adlumia genus_Adlumia,one species: climbing fumitory
+216,Admiralty_Island,an Alaskan island in the Alexander Archipelago near Juneau
+217,Admiralty_Islands,a group of islands in the Bismarck Archipelago
+218,Admiralty_Range,mountains in Antarctica to the north of Victoria Land
+219,Admission_Day,in some states of the United States: a legal holiday commemorating the day the state was admitted to the Union
+220,Adonic Adonic_line,a verse line with a dactyl followed by a spondee or trochee; supposedly used in laments by Adonis
+221,Adonis,(Greek mythology) a handsome youth loved by both Aphrodite and Persephone; "when Adonis died Zeus decreed that he should spend winters in the underworld with Persephone and spend summers with Aphrodite"
+222,Adonis genus_Adonis,annual or perennial herbs
+223,Adrian Edgar_Douglas_Adrian Baron_Adrian,English physiologist who conducted research into the function of neurons; 1st baron of Cambridge (1889-1997)
+224,Adriatic Adriatic_Sea,an arm of the Mediterranean between Slovenia and Croatia and Montenegro and Albania on the east and Italy on the west
+225,Advanced_Research_and_Development_Activity ARDA,an agency of the Intelligence Community that conducts advanced research and development related to information technology
+226,Advent,the season including the four Sundays preceding Christmas
+227,Advent_Sunday,the first of the four Sundays during Advent
+228,Adventism Second_Adventism,any Christian religion that believes the second coming of Christ is imminent
+229,Adventist Second_Adventist,a member of Christian denomination that expects the imminent advent of Christ
+230,Adzhar Adzharia,an autonomous province of Georgia on the Black Sea
+231,Aedes genus_Aedes,yellow-fever mosquitos
+232,Aegates_Isles Aegadean_Isles,islands west of Sicily (now known as the Egadi Islands) where the Romans won a naval victory over the Carthaginians that ended the first Punic War in 241 BC
+233,Aegean Aegean_Sea,an arm of the Mediterranean between Greece and Turkey; a main trade route for the ancient civilizations of Crete and Greece and Rome and Persia
+234,Aegean_civilization Aegean_civilisation Aegean_culture,the prehistoric civilization on the islands in the Aegean sea and the surrounding countries; "by 800 BC the entire Aegean had adopted this style of pottery"
+235,Aegean_island,an island in the Aegean Sea
+236,Aegiceras genus_Aegiceras,a genus of herbs of the family Verbenaceae
+237,Aegilops genus_Aegilops,goat grass
+238,Aegina,small medusa
+239,Aegina Aigina,an island in the Aegean Sea in the Saronic Gulf
+240,Aegisthus,(Greek mythology) the seducer of Clytemnestra and murderer of Agamemnon who usurped the throne of Mycenae until Agamemnon's son Orestes returned home and killed him
+241,Aegospotami Aegospotamos,a creek emptying into the Hellespont in present-day Turkey; at its mouth in 405 BC the Spartan fleet under Lysander defeated the Athenians and ended the Peloponnesian War
+242,Aegospotami Aegospotamos,a river in ancient Thrace (now Turkey); in the mouth of this river the Spartan fleet under Lysander destroyed the Athenian fleet in the final battle of the Peloponnesian War (404 BC)
+243,Aegypiidae family_Aegypiidae,in some classifications considered the family comprising the Old World vultures which are more often included in the family Accipitridae
+244,Aegypius genus_Aegypius,a genus of Accipitridae
+245,Aegyptopithecus,extinct primate of about 38 million years ago; fossils found in Egypt
+246,Aeneas,a mythical Greek warrior who was a leader on the Trojan side of the Trojan War; hero of the Aeneid
+247,Aeneid,an epic in Latin by Virgil; tells the adventures of Aeneas after the Trojan War; provides an illustrious historical background for the Roman Empire
+248,Aeolian,the ancient Greek inhabitants of Aeolia
+249,Aeolian Eolian,a member of one of four linguistic divisions of the prehistoric Greeks
+250,Aeolic Aeolic_dialect Eolic,the dialect of Ancient Greek spoken in Thessaly and Boeotia and Aeolis
+251,Aeolis Aeolia,an ancient coastal region of northwestern Asia Minor (including Lesbos) where the Aeolians founded several cities around 1100 BC
+252,Aeolus,god of the winds in ancient mythology
+253,Aeonium genus_Aeonium,a genus of plants of the family Crassulaceae
+254,Aepyceros genus_Aepyceros,African antelopes: impalas
+255,Aepyornidae family_Aepyornidae,coextensive with the order Aepyorniformes
+256,Aepyorniformes order_Aepyorniformes,huge extinct flightless birds: elephant birds
+257,Aerobacter genus_Aerobacter,aerobic bacteria widely distributed in nature
+258,Aerobacter_aerogenes,a species of Gram-negative aerobic bacteria that produce gas and acid from sugars and are sometimes involved in the souring of milk
+259,Aertex,a trademark for a loosely woven cotton fabric that is used to make shirts and underwear
+260,Aeschylus,Greek tragedian; the father of Greek tragic drama (525-456 BC)
+261,Aesculapius Asclepius Asklepios,son of Apollo; a hero and the Roman god of medicine and healing; his daughters were Hygeia and Panacea
+262,Aesculus genus_Aesculus,deciduous trees or some shrubs of North America; southeastern Europe; eastern Asia
+263,Aesir,(Norse mythology) the chief of gods living at Asgard
+264,Aesop,Greek author of fables (circa 620-560 BC)
+265,Aesop's_fables,a collection of fables believed to have been written by the Greek storyteller Aesop
+266,Aether,personification of the sky or upper air breathed by the Olympians; son of Erebus and night or of Chaos and darkness
+267,Aethionema genus_Aethionema,Old World genus of the family Cruciferae
+268,Aethusa genus_Aethusa,fool's parsley
+269,Aetobatus genus_Aetobatus,a genus of Myliobatidae
+270,Affirmed,thoroughbred that won the triple crown in 1978
+271,Afghan Afghanistani,a native or inhabitant of Afghanistan
+272,Afghan_hound Afghan,tall graceful breed of hound with a long silky coat; native to the Near East
+273,Afghan_monetary_unit,monetary unit in the Islamic State of Afghanistan
+274,Afghanistan Islamic_State_of_Afghanistan,a mountainous landlocked country in central Asia; bordered by Iran to the west and Russia to the north and Pakistan to the east and south; "Soviet troops invaded Afghanistan in 1979"
+275,Aframomum genus_Aframomum,an African genus of plants of the family Zingiberaceae
+276,Africa,the second largest continent; located to the south of Europe and bordered to the west by the South Atlantic and to the east by the Indian Ocean
+277,African,a native or inhabitant of Africa
+278,African_American_Vernacular_English AAVE African_American_English Black_English Black_English_Vernacular Black_Vernacular Black_Vernacular_English Ebonics,a nonstandard form of American English characteristically spoken by African Americans in the United States
+279,African_bowstring_hemp African_hemp Sansevieria_guineensis,bowstring hemp of South Africa
+280,African_chameleon Chamaeleo_chamaeleon,a chameleon found in Africa
+281,African_clawed_frog Xenopus_laevis,a tongueless frog native to Africa; established in the United States as result of release of laboratory and aquarium animals
+282,African_coral_snake Aspidelaps_lubricus,small widely distributed arboreal snake of southern Africa banded in black and orange
+283,African_country African_nation,any one of the countries occupying the African continent
+284,African_crocodile Nile_crocodile Crocodylus_niloticus,a dangerous crocodile widely distributed in Africa
+285,African_daisy,African or Asiatic herbs with daisylike flowers
+286,African_daisy,any of several plants of the genus Arctotis having daisylike flowers
+287,African_daisy yellow_ageratum Lonas_inodora Lonas_annua,shrub of southwestern Mediterranean region having yellow daisylike flowers
+288,African_elephant Loxodonta_africana,an elephant native to Africa having enormous flapping ears and ivory tusks
+289,African_grey African_gray Psittacus_erithacus,commonly domesticated grey parrot with red-and-black tail and white face; native to equatorial Africa
+290,African_hemp Sparmannia_africana,large shrub of South Africa having many conspicuously hairy branches with large hairy leaves and clusters of conspicuous white flowers
+291,African_holly Solanum_giganteum,woolly-stemmed biennial arborescent shrub of tropical Africa and southern Asia having silvery-white prickly branches, clusters of blue or white flowers, and bright red berries resembling holly berries
+292,African_hunting_dog hyena_dog Cape_hunting_dog Lycaon_pictus,a powerful doglike mammal of southern and eastern Africa that hunts in large packs; now rare in settled area
+293,African_lily African_tulip blue_African_lily Agapanthus_africanus,African plant with bright green evergreen leaves and umbels of many usually deep violet-blue flowers
+294,African_mahogany,African tree having hard heavy odorless wood
+295,African_marigold big_marigold Aztec_marigold Tagetes_erecta,a stout branching annual with large yellow to orange flower heads; Mexico and Central America
+296,African_monitor Varanus_niloticus,destroys crocodile eggs
+297,African_oil_palm Elaeis_guineensis,oil palm of Africa
+298,African_scented_mahogany cedar_mahogany sapele_mahogany Entandrophragma_cylindricum,African tree having rather lightweight cedar-scented wood varying in color from pink to reddish brown
+299,African_violet Saintpaulia_ionantha,tropical African plant cultivated as a houseplant for its violet or white or pink flowers
+300,African_walnut Lovoa_klaineana,tropical African timber tree with wood that resembles mahogany
+301,African_wild_ass Equus_asinus,a wild ass of Africa
+302,Africander,tall large-horned humped cattle of South Africa; used for meat or draft
+303,Africanized_bee Africanized_honey_bee killer_bee Apis_mellifera_scutellata Apis_mellifera_adansonii,a strain of bees that originated in Brazil in the 1950s as a cross between an aggressive African bee and a honeybee; retains most of the traits of the African bee; now spread as far north as Texas
+304,Afrikaans Taal,an official language of the Republic of South Africa; closely related to Dutch and Flemish
+305,Afrikaner Afrikander Boer,a white native of Cape Province who is a descendant of Dutch settlers and who speaks Afrikaans
+306,Afro Afro_hairdo,a rounded thickly curled hairdo
+307,Afro-wig,a wig that gives the appearance of an Afro hairdo
+308,Afroasiatic Afro-Asiatic Afroasiatic_language Afrasian Afrasian_language Hamito-Semitic,a large family of related languages spoken both in Asia and Africa
+309,Afrocarpus genus_Afrocarpus,dioecious evergreen trees or shrubs; equatorial to southern and southeastern Africa: yellowwood; similar to trees or genus Podocarpus
+310,Aga Agha,title for a civil or military leader (especially in Turkey)
+311,Agalinis genus_Agalinis,semiparasitic herb with purple or white or pink flowers; grows in the United States and West Indies
+312,Agamemnon,(Greek mythology) the king who lead the Greeks against Troy in the Trojan War
+313,Agamidae family_Agamidae,an Old World reptile family of Sauria
+314,Agapornis genus_Agapornis,a genus of Psittacidae
+315,Agaricaceae family_Agaricaceae,large family including many familiar mushrooms
+316,Agaricales order_Agaricales,typical gilled mushrooms belonging to the subdivision Basidiomycota
+317,Agaricus genus_Agaricus,type genus of Agaricaceae; gill fungi having brown spores and including several edible species
+318,Agassiz Louis_Agassiz Jean_Louis_Rodolphe_Agassiz,United States naturalist (born in Switzerland) who studied fossil fish; recognized geological evidence that ice ages had occurred in North America (1807-1873)
+319,Agastache genus_Agastache,giant hyssop; Mexican hyssop
+320,Agathis genus_Agathis,kauri pine
+321,Agavaceae family_Agavaceae agave_family sisal_family,chiefly tropical and xerophytic plants: includes Dracenaceae (Dracaenaceae); comprises plants that in some classifications are divided between the Amaryllidaceae and the Liliaceae
+322,Agave_tequilana,Mexican plant used especially for making tequila
+323,Agdestis genus_Agdestis,a genus with one species that is a rapidly growing climbing vine with tuberous roots; grown in hot climates
+324,Agdistis,Asiatic epithet for Rhea or Cybele
+325,Agee James_Agee,United States novelist (1909-1955)
+326,Agelaius genus_Agelaius,red-winged blackbirds
+327,Agent_Orange,a herbicide used in the Vietnam War to defoliate forest areas
+328,Ageratina genus_Ageratina,annual to perennial herbs or shrubs of eastern United States and Central and South America
+329,Aghan Margasivsa,the ninth month of the Hindu calendar
+330,Agincourt,a battle in northern France in which English longbowmen under Henry V decisively defeated a much larger French army in 1415
+331,Agkistrodon genus_Agkistrodon Ancistrodon genus_Ancistrodon,copperheads
+332,Aglaia,(Greek mythology) one of the three Graces
+333,Aglaomorpha genus_Aglaomorpha,epiphytic ferns of tropical Asia
+334,Aglaonema genus_Aglaonema,climbing herbs of southeastern Asia having thick fleshy oblong leaves and naked unisexual flowers: Chinese evergreen
+335,Agnatha superclass_Agnatha,superclass of eel-shaped chordates lacking jaws and pelvic fins: lampreys; hagfishes; some extinct forms
+336,Agni,(Sanskrit) Hindu god of fire in ancient and traditional India; one of the three chief deities of the Vedas
+337,Agnus_Dei,a liturgical prayer beginning with these Latin words
+338,Agnus_Dei Paschal_Lamb,figure of a lamb; emblematic of Christ
+339,Agonidae family_Agonidae,poachers
+340,Agonus genus_Agonus,type genus of the Agonidae
+341,Agra,a city in northern India; former capital of the Mogul empire; site of the Taj Mahal
+342,Agricola Gnaeus_Julius_Agricola,Roman general who was governor of Britain and extended Roman rule north to the Firth of Forth (37-93)
+343,Agrigento Acragas,a town in Italy in southwestern Sicily near the coast; the site of six Greek temples
+344,Agriocharis genus_Agriocharis,a genus of birds of the family Meleagrididae including the ocellated turkey
+345,Agrippa Marcus_Vipsanius_Agrippa,Roman general who commanded the fleet that defeated the forces of Antony and Cleopatra at Actium (63-12 BC)
+346,Agrippina Agrippina_the_Elder,granddaughter of Augustus and mother of Caligula and Agrippina the Younger (14 BC - AD 33)
+347,Agrippina Agrippina_the_Younger,wife who poisoned Claudius after her son Nero was declared heir and who was then put to death by Nero
+348,Agrobacterium genus_Agrobacterium,small motile bacterial rods that can reduce nitrates and cause galls on plant stems
+349,Agrobacterium_tumefaciens,the bacteria that produce crown gall disease in plants
+350,Agropyron genus_Agropyron,perennial grasses of temperate and cool regions: wheatgrass; dog grass
+351,Agrostemma genus_Agrostemma,a caryophylloid dicot genus including corn cockles
+352,Agrostis genus_Agrostis,annual or perennial grasses cosmopolitan in northern hemisphere: bent grass (so named from `bent' meaning an area of unfenced grassland)
+353,Ahab,according to the Old Testament he was a pagan king of Israel and husband of Jezebel (9th century BC)
+354,Ahriman,the spirit of evil in Zoroastrianism; arch rival of Ormazd
+355,Ahuehuete Tule_tree,Mexico's most famous tree; a giant specimen of Montezuma cypress more than 2,000 years old with a girth of 165 feet at Santa Maria del Tule; "some say the Tule tree is the world's largest single biomass"
+356,Ahura,(Zoroastrianism) title for benevolent deities
+357,Aiken Conrad_Aiken Conrad_Potter_Aiken,United States writer (1889-1973)
+358,Ailey Alvin_Ailey,United States choreographer noted for his use of African elements (born in 1931)
+359,Ailuropoda genus_Ailuropoda,only the giant panda: in some classifications considered a genus of the separate family Ailuropodidae
+360,Ailuropodidae family_Ailuropodidae,in some classifications considered the family comprising the giant pandas
+361,Ailurus genus_Ailurus,lesser pandas
+362,Air_Combat_Command ACC,a command that is the primary provider of air combat weapon systems to the United States Air Force; operates fighter, bomber, reconnaissance, battle-management, and rescue aircraft
+363,Air_Corps,formerly the airborne division of the United States Army
+364,Air_Force_Intelligence_Surveillance_and_Reconnaissance Air_Force_ISR AFISR,an agency focused on ensuring that the United States military attains information superiority; operates worldwide ground sites and an array of airborne reconnaissance and surveillance platforms
+365,Air_Force_Research_Laboratory AFRL,a United States Air Force defense laboratory responsible for discovering and developing and integrating fighting technologies for aerospace forces
+366,Air_Force_Space_Command AFSPC,a command of the United States Air Force that is responsible for defending the United States through its space and intercontinental ballistic missile operations
+367,Air_Medal,a United States Air Force decoration for meritorious achievement while participating in an aerial flight
+368,Air_National_Guard ANG,a civilian reserve component of the United States Air Force that provides prompt mobilization during war and assistance during national emergencies
+369,Aire River_Aire Aire_River,a river in northern England that flows southeast through West Yorkshire
+370,Airedale Airedale_terrier,breed of large wiry-coated terrier bred in Yorkshire
+371,Aix genus_Aix,wood duck and mandarin duck
+372,Aizoaceae family_Aizoaceae Tetragoniaceae family_Tetragoniaceae carpetweed_family,succulent herbs or small shrubs mostly of South Africa but also New Zealand and North America: carpetweeds; fig marigolds
+373,Ajaia genus_Ajaia,a genus of Platalea
+374,Ajax,a mythical Greek hero; a warrior who fought against Troy in the Iliad
+375,Ajuga genus_Ajuga,bugle
+376,Akan,a Kwa language spoken in Ghana and the Ivory Coast
+377,Akeridae family_Akeridae,bubble shells
+378,Akhbari,a religious movement by Arab Shiite Muslims in 17th century Iraq that is opposed to the Usuli; "Akhbari Shiism has never promoted political control"
+379,Akhenaton Akhenaten Ikhanaton Amenhotep_IV,early ruler of Egypt who rejected the old gods and replaced them with sun worship (died in 1358 BC)
+380,Akkadian,an ancient branch of the Semitic languages
+381,Akron,a city in northeastern Ohio; the heart of the United States rubber industry
+382,Aksa_Martyrs_Brigades al-Aksa_Martyrs_Brigades Martyrs_of_al-Aqsa,a militant offshoot of al-Fatah that is the newest and strongest and best equipped faction active in the West Bank; responsible for many deadly attacks in Israel in 2002
+383,Akwa'ala,a member of the Akwa'ala community in Baja California
+384,Akwa'ala,a community of Native Americans who speak a Hokan language and live in Baja California
+385,Akwa'ala,the Yuman language spoken by the Akwa'ala
+386,Al-hakim,an Ismaili caliph of Egypt who declared himself an incarnation of God and founded the Druze religious sect (985-1021)
+387,Al_Aqabah Aqaba Akaba,Jordan's port; located in southwestern Jordan on the Gulf of Aqaba
+388,Al_Ladhiqiyah Latakia,a seaport on the western coast of Syria
+389,Al_Nathir,a Palestinian terrorist organization formed in 2002 and linked to Fatah movement of Yasser Arafat
+390,Alabama,a member of the Muskhogean people formerly living in what is now the state of Alabama; "the Alabamas were members of the Creek Confederacy"
+391,Alabama,the Muskhogean language of the Alabama
+392,Alabama Alabama_River,a river in Alabama formed by the confluence of the Coosa and Tallapoosa Rivers near Montgomery; flows southwestward to become a tributary of the Mobile River
+393,Alabama Heart_of_Dixie Camellia_State AL Ala.,a state in the southeastern United States on the Gulf of Mexico; one of the Confederate states during the American Civil War
+394,Alabaman Alabamian,a native or resident of Alabama
+395,Aladdin,in the Arabian Nights a boy who acquires a magic lamp from which he can summon a genie
+396,Aladdin's_lamp,(Arabian Nights) a magical lamp from which Aladdin summoned a genie
+397,Alamo,a siege and massacre at a mission in San Antonio in 1836; Mexican forces under Santa Anna besieged and massacred American rebels who were fighting to make Texas independent of Mexico
+398,Aland_islands Aaland_islands Ahvenanmaa,an archipelago of some 6,000 islands in the Gulf of Bothnia under Finnish control
+399,Alar daminozide,a chemical sprayed on fruit trees to regulate their growth so the entire crop can be harvested at one time
+400,Alaric,king of the Visigoths who captured Rome in 410 (370-410)
+401,Alaska Last_Frontier AK,a state in northwestern North America; the 49th state admitted to the union; "Alaska is the largest state in the United States"
+402,Alaska_Native Alaskan_Native Native_Alaskan,a member or descendant of any of the aboriginal peoples of Alaska
+403,Alaska_Peninsula,a peninsula of southwestern Alaska (a continuation of the Aleutian Islands)
+404,Alaska_Range,a mountain range in south central Alaska; contains Mount McKinley
+405,Alaska_Standard_Time Yukon_Time,standard time in the 9th time zone west of Greenwich, reckoned at the 135th meridian west; used in Hawaii and most of Alaska
+406,Alaska_fur_seal Callorhinus_ursinus,of Pacific coast from Alaska southward to California
+407,Alaska_king_crab Alaskan_king_crab king_crab Alaska_crab,meat of large cold-water crab; mainly leg meat
+408,Alaska_rein_orchid Habenaria_unalascensis,similar to coastal rein orchid but with smaller flowers; Alaska to Baja California and east to the Dakotas and Colorado
+409,Alaskan,a native or resident of Alaska
+410,Alaskan_brown_bear Kodiak_bear Kodiak Ursus_middendorffi Ursus_arctos_middendorffi,brown bear of coastal Alaska and British Columbia
+411,Alaskan_pipeline trans-Alaska_pipeline,an oil pipeline that runs 800 miles from wells at Prudhoe Bay to the port of Valdez
+412,Alauda genus_Alauda,type genus of the Alaudidae: skylarks
+413,Alaudidae family_Alaudidae,larks
+414,Albania Republic_of_Albania,a republic in southeastern Europe on the Adriatic coast of the Balkan Peninsula
+415,Albanian,a native or inhabitant of Albania
+416,Albanian,the Indo-European language spoken by the people of Albania
+417,Albanian_monetary_unit,monetary unit in Albania
+418,Albany,a town in southwest Georgia; processing center for peanuts and pecans
+419,Albany capital_of_New_York,state capital of New York; located in eastern New York State on the west bank of the Hudson river
+420,Albatrellus genus_Albatrellus,a genus of fungi belonging to the family Polyporaceae
+421,Albatrellus_dispansus,a rare fungus having a large (up to 14 inches wide) yellow fruiting body with multiple individual caps and a broad central stalk and a fragrant odor
+422,Albatrellus_ovinus sheep_polypore,a fungus with a whitish often circular cap and a white pore surface and small pores and a white central stalk; found under conifers; edible but not popular
+423,Albee Edward_Albee Edward_Franklin_Albeen,United States dramatist (1928-)
+424,Albers Josef_Albers,United States painter born in Germany; works characterized by simple geometrical patterns in various colors (1888-1976)
+425,Albert Prince_Albert Albert_Francis_Charles_Augustus_Emmanuel,prince consort of Queen Victoria of England (1819-1861)
+426,Alberta,one of the three prairie provinces in western Canada; rich in oil and natural gas and minerals
+427,Alberti Leon_Battista_Alberti,Italian architect and painter; pioneering theoretician of Renaissance architecture (1404-1472)
+428,Albigenses Cathars Cathari,a Christian religious sect in southern France in the 12th and 13th centuries; believers in Albigensianism
+429,Albigensianism Catharism,a Christian movement considered to be a medieval descendant of Manichaeism in southern France in the 12th and 13th centuries; characterized by dualism (asserted the coexistence of two mutually opposed principles, one good and one evil); was exterminated for heresy during the Inquisition
+430,Albion,archaic name for England or Great Britain; used poetically
+431,Albright's_disease polyostotic_fibrous_dysplasia,fibrous dysplasia of bone affecting multiple bones
+432,Albuginaceae family_Albuginaceae,fungi that produce white sori resembling blisters on certain flowering plants
+433,Albugo genus_Albugo,type genus of the Albuginaceae; fungi causing white rusts
+434,Albula genus_Albula,type and sole genus of the family Albulidae
+435,Albulidae family_Albulidae,bonefish
+436,Albuquerque,the largest city in New Mexico; located in central New Mexico on the Rio Grande river
+437,Alca genus_Alca,type genus of the Alcidae comprising solely the razorbill
+438,Alcaeus,Greek lyric poet of Lesbos; reputed inventor of Alcaic verse (611-580 BC)
+439,Alcaic Alcaic_verse,verse in the meter used in Greek and Latin poetry consisting of strophes of 4 tetrametric lines; reputedly invented by Alcaeus
+440,Alcea genus_Alcea,genus of erect herbs of the Middle East having showy flowers: hollyhocks; in some classification systems synonymous with genus Althaea
+441,Alcedinidae family_Alcedinidae,kingfishers
+442,Alcedo genus_Alcedo,type genus of the Alcedinidae
+443,Alcelaphus genus_Alcelaphus,African antelopes: hartebeests
+444,Alces genus_Alces,elk or moose
+445,Alcibiades,ancient Athenian statesman and general in the Peloponnesian War (circa 450-404 BC)
+446,Alcidae family_Alcidae,web-footed diving seabirds of northern seas: auks; puffins; guillemots; murres; etc.
+447,Alcoholics_Anonymous AA,an international organization that provides a support group for persons trying to overcome alcoholism
+448,Alcott Louisa_May_Alcott,United States novelist noted for children's books (1832-1888)
+449,Alcyonacea suborder_Alcyonacea,comprising the soft corals
+450,Alcyonaria order_Alcyonaria,corals and sea anemones having eight branches
+451,Alcyone Halcyon,(Greek mythology) a woman who was turned into a kingfisher
+452,Aldebaran,the brightest star in Taurus
+453,Aldrovanda genus_Aldrovanda,one species: waterwheel plant
+454,Alectis genus_Alectis,a genus of Carangidae
+455,Alecto,one of the three Furies
+456,Alectoria genus_Alectoria,lichens having dark brown erect or pendulous much-branched cylindrical thallus
+457,Alectoris genus_Alectoris,a genus of Perdicidae
+458,Alectura genus_Alectura,brush turkeys
+459,Alepisaurus genus_Alepisaurus,slender scaleless predaceous tropical deep-sea fishes
+460,Aletris genus_Aletris,small genus of bitter-rooted herbs of eastern North America and Asia; sometimes placed in family Melanthiaceae
+461,Aleuria_aurantia orange_peel_fungus,a discomycete with bright orange cup-shaped or saucer-shaped fruiting bodies and pale orange exteriors
+462,Aleurites genus_Aleurites,candlenut
+463,Aleut,a community of Native Americans who speak an Eskimo-Aleut language and inhabit the Aleutian Islands and southwestern Alaska; "the Aleut and the Eskimo are related culturally and linguistically"
+464,Aleut,the language spoken by the Aleut
+465,Aleut Aleutian,a member of the people inhabiting the Aleutian Islands and southwestern Alaska
+466,Aleutian_Islands Aleutians,an archipelago in the North Pacific extending southwest from Alaska
+467,Alex_Boncayao_Brigade ABB Revolutionary_Proletarian_Army RPA-ABB,an urban hit squad and guerrilla group of the Communist Party in the Philippines; formed in the 1980s
+468,Alexander Alexander_the_Great,king of Macedon; conqueror of Greece and Egypt and Persia; founder of Alexandria (356-323 BC)
+469,Alexander Alexanders black_lovage horse_parsley Smyrnium_olusatrum,European herb somewhat resembling celery widely naturalized in Britain coastal regions and often cultivated as a potherb
+470,Alexander_Archipelago,a group of islands off southeastern Alaska
+471,Alexander_I Czar_Alexander_I Aleksandr_Pavlovich,the czar of Russia whose plans to liberalize the government of Russia were unrealized because of the wars with Napoleon (1777-1825)
+472,Alexander_II Czar_Alexander_II Alexander_the_Liberator,the son of Nicholas I who, as czar of Russia, introduced reforms that included limited emancipation of the serfs (1818-1881)
+473,Alexander_III Czar_Alexander_III,son of Alexander II who was czar of Russia (1845-1894)
+474,Alexander_VI Pope_Alexander_VI Borgia Rodrigo_Borgia,Pope and father of Cesare Borgia and Lucrezia Borgia (1431-1503)
+475,Alexandria,a town in Louisiana on the Red River
+476,Alexandria El_Iskandriyah,the chief port of Egypt; located on the western edge of the Nile delta on the Mediterranean Sea; founded by Alexander the Great; the capital of ancient Egypt
+477,Alexandria_senna Alexandrian_senna true_senna tinnevelly_senna Indian_senna Senna_alexandrina Cassia_acutifolia Cassia_augustifolia,erect shrub having racemes of tawny yellow flowers; the dried leaves are used medicinally as a cathartic; sometimes placed in genus Cassia
+478,Alexandrian,a resident or native of Alexandria (especially Alexandria in Egypt)
+479,Alexandrian_laurel Calophyllum_inophyllum,East Indian tree having racemes of fragrant white flowers; coastal areas southern India to Malaysia
+480,Alexandrine,(prosody) a line of verse that has six iambic feet
+481,Aleyrodes genus_Aleyrodes,type genus of the Aleyrodidae
+482,Aleyrodidae family_Aleyrodidae,whiteflies
+483,Alfred Alfred_the_Great,king of Wessex; defeated the Vikings and encouraged writing in English (849-899)
+484,Alger Horatio_Alger,United States author of inspirational adventure stories for boys; virtue and hard work overcome poverty (1832-1899)
+485,Algeria Algerie Democratic_and_Popular_Republic_of_Algeria,a republic in northwestern Africa on the Mediterranean Sea with a population that is predominantly Sunni Muslim; colonized by France in the 19th century but gained autonomy in the early 1960s
+486,Algerian,a native or inhabitant of Algeria
+487,Algerian_centime,100 centimes equal 1 dinar in Algeria
+488,Algerian_dinar dinar,the basic unit of money in Algeria
+489,Algerian_monetary_unit,monetary unit in Algeria
+490,Algeripithecus genus_Algeripithecus,an extinct genus of Hominoidea
+491,Algeripithecus_minutus,tiny (150 to 300 grams) extinct primate of 46 to 50 million years ago; fossils found in Algeria; considered by some authorities the leading candidate for the first anthropoid
+492,Algiers Algerian_capital,an ancient port on the Mediterranean; the capital and largest city of Algeria
+493,Algol,the second brightest star in Perseus; the first known eclipsing binary
+494,Algonkian Algonkin,a member of a North American Indian people in the Ottawa river valley of Ontario and Quebec
+495,Algonkian Algonkin,the Algonquian language spoken by the Algonkian
+496,Algonquian Algonquin,a member of any of the North American Indian groups speaking an Algonquian language and originally living in the subarctic regions of eastern Canada; many Algonquian tribes migrated south into the woodlands from the Mississippi River to the Atlantic coast
+497,Algonquian Algonquin Algonquian_language,family of North American Indian languages spoken from Labrador to South Carolina and west to the Great Plains
+498,Algren Nelson_Algren,United States writer (1909-1981)
+499,Alhambra,a fortified Moorish palace built near Granada by Muslim kings in the Middle Ages
+500,Alhazen Alhacen al-Haytham Ibn_al-Haytham Al-Hasan_ibn_al-Haytham,an Egyptian polymath (born in Iraq) whose research in geometry and optics was influential into the 17th century; established experiments as the norm of proof in physics (died in 1040)
+501,Ali,the fourth caliph of Islam who is considered to be the first caliph by Shiites; he was a cousin and son-in-law of Muhammad; after his assassination Islam was divided into Shiite and Sunnite sects
+502,Ali Muhammad_Ali Cassius_Clay Cassius_Marcellus_Clay,United States prizefighter who won the world heavyweight championship three times (born in 1942)
+503,Ali_Baba,the fictional woodcutter who discovered that `open sesame' opened a cave in the Arabian Nights' Entertainment
+504,Alisma genus_Alisma,small genus of aquatic or semiaquatic plants
+505,Alismataceae family_Alismataceae water-plantain_family,perennial or annual aquatic or marsh plants
+506,Alismatidae subclass_Alismatidae,one of four subclasses or superorders of Monocotyledones; comprises about 500 species in 14 families of aquatic and semiaquatic herbs
+507,Alka-seltzer,a commercial antacid that contains aspirin; tablets dissolve in water to give an effervescent solution
+508,All_Saints'_Day Allhallows November_1 Hallowmas Hallowmass,a Christian feast day honoring all the saints; first observed in 835
+509,All_Souls'_Day November_2,a day of supplication for all the souls in purgatory
+510,Allah,Muslim name for the one and only God
+511,Alleghenies Allegheny_Mountains,the western part of the Appalachian Mountains; extending from northern Pennsylvania to southwestern Virginia
+512,Allegheny Allegheny_River,a river that rises in Pennsylvania and flows north into New York and then back south through Pennsylvania again to join the Monongahela River at Pittsburgh which is the beginning of the Ohio River
+513,Allegheny_chinkapin eastern_chinquapin chinquapin dwarf_chestnut Castanea_pumila,shrubby chestnut tree of southeastern United States having small edible nuts
+514,Allegheny_plum Alleghany_plum sloe Prunus_alleghaniensis,wild plum of northeastern United States having dark purple fruits with yellow flesh
+515,Allegheny_spurge Allegheny_mountain_spurge Pachysandra_procumbens,low semi-evergreen perennial herb having small spikes of white or pinkish flowers; native to southern United States but grown elsewhere
+516,Allen Ethan_Allen,a soldier of the American Revolution whose troops helped capture Fort Ticonderoga from the British (1738-1789)
+517,Allen Gracie_Allen Grace_Ethel_Cecile_Rosalie_Allen Gracie,United States comedienne remembered as the confused but imperturbable partner of her husband, George Burns (1906-1964)
+518,Allen Woody_Allen Allen_Stewart_Konigsberg,United States filmmaker and comic actor (1935-)
+519,Allen_screw,a screw with a hexagonal hole in the head
+520,Allen_wrench,a wrench for Allen screws
+521,Allentown,a city in eastern Pennsylvania; an industrial and commercial center
+522,Allhallowtide,the season of All Saints' Day
+523,Alliaceae family_Alliaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes especially genus Allium
+524,Alliaria genus_Alliaria,a genus of herbs of the family Cruciferae; have broad leaves and white flowers and long siliques
+525,Allied_Command_Atlantic ACLANT,a major strategic headquarters of NATO located in the United States; is under the authority of the North Atlantic Council
+526,Allied_Command_Europe ACE,a major strategic headquarters of NATO; safeguards an area extending from Norway to Turkey
+527,Allies,the alliance of nations that fought the Axis in World War II and which (with subsequent additions) signed the charter of the United Nations in 1945
+528,Allies,in World War I the alliance of Great Britain and France and Russia and all the other nations that became allied with them in opposing the Central Powers
+529,Alligatoridae family_Alligatoridae,alligators; caimans
+530,Allionia genus_Allionia,small genus of chiefly American herbs
+531,Allium genus_Allium,large genus of perennial and biennial pungent bulbous plants: garlic; leek; onion; chive; sometimes placed in family Alliaceae as the type genus
+532,Almaty Alma-Ata,the largest city in Kazakhstan and the capital until 1998
+533,Almoravid,a member of a Muslim dynasty of Berber warriors that flourished from 1049 to 1145 and that established political dominance over northwestern Africa and Spain
+534,Alnico,trade name for an alloy used to make high-energy permanent magnets; contains aluminum and iron and nickel plus cobalt or copper or titanium
+535,Alnus genus_Alnus,alders
+536,Aloeaceae family_Aloeaceae aloe_family,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+537,Alonso Alicia_Alonso,Cuban dancer and choreographer (born in 1921)
+538,Alopecurus genus_Alopecurus,annual or perennial grasses including decorative and meadow species as well as notorious agricultural weeds
+539,Alopex genus_Alopex,arctic foxes
+540,Alopiidae family_Alopiidae,thresher sharks
+541,Alopius genus_Alopius,type genus of the family Alopiidae; in some classifications considered a genus of the family Lamnidae
+542,Alosa genus_Alosa,shad
+543,Alouatta genus_Alouatta,howler monkeys
+544,Alpena,a town in northern Michigan on an arm of Lake Huron
+545,Alpha_Centauri Rigil_Kent Rigil,brightest star in Centaurus; second nearest star to the sun
+546,Alpha_Crucis,the brightest star in the Southern Cross
+547,Alpine_anemone mountain_anemone Anemone_tetonensis,silky-foliaged herb of the Rocky Mountains with bluish-white flowers
+548,Alpine_besseya Besseya_alpina,small pale plant with dense spikes of pale bluish-violet flowers; of high cold meadows from Wyoming and Utah to New Mexico
+549,Alpine_celery_pine Phyllocladus_alpinus,small shrubby celery pine of New Zealand
+550,Alpine_enchanter's_nightshade Circaea_alpina,an Alpine variety of enchanter's nightshade
+551,Alpine_fir subalpine_fir Abies_lasiocarpa,medium-tall timber tree of the Rocky Mountains having a narrowly conic to columnar crown
+552,Alpine_glacier Alpine_type_of_glacier,a glacier that moves down from a high valley
+553,Alpine_lady_fern Athyrium_distentifolium,a lady fern with deeply cut leaf segments; found in the Rocky Mountains
+554,Alpine_mouse-ear Arctic_mouse-ear Cerastium_alpinum,widespread in the Arctic and on mountains in Europe
+555,Alpine_woodsia northern_woodsia flower-cup_fern Woodsia_alpina,slender fern of northern North America with shining chestnut-colored stipes and bipinnate fronds with usually distinct marginal sori
+556,Alpinia genus_Alpinia genus_Zerumbet genus_Languas,perennial rhizomatous herbs of Asia and Australia and Polynesia having ginger-scented rhizomes
+557,Alpinism,mountain climbing (not restricted to the Alps)
+558,Alps the_Alps,a large mountain system in south-central Europe; scenic beauty and winter sports make them a popular tourist attraction
+559,Alsace Alsatia Elsass,a region of northeastern France famous for its wines
+560,Alsatian,a native or inhabitant of Alsace
+561,Alsobia genus_Alsobia,tropical American herbs sometimes included in genus Episcia
+562,Alsophila genus_Alsophila,geometrid moths
+563,Alsophila_pometaria,North American moth with grey-winged males and wingless females; larvae are fall cankerworms
+564,Alstonia genus_Alstonia,genus of evergreen trees or shrubs with white funnel-shaped flowers and milky sap; tropical Africa to southeastern Asia and Polynesia
+565,Alstroemeriaceae family_Alstroemeriaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; sometimes included in subfamily Amaryllidaceae
+566,Altai_Mountains Altay_Mountains,a mountain range in central Asia that extends a thousand miles from Kazakhstan eastward into western Mongolia and northern China
+567,Altaic,any member of the peoples speaking a language in the Altaic language group
+568,Altaic Altaic_language,a group of related languages spoken in Asia and southeastern Europe
+569,Altair,double star 15.7 light years from Earth; the brightest star in the Aquila constellation
+570,Alternanthera genus_Alternanthera,genus of low herbs of tropical America and Australia; includes genus Telanthera
+571,Altoona,a town in central Pennsylvania
+572,Alyssum genus_Alyssum,a genus of the family Cruciferae
+573,Alytes genus_Alytes,midwife toads
+574,Alzheimer's_disease Alzheimer's Alzheimers,a progressive form of presenile dementia that is similar to senile dementia except that it usually starts in the 40s or 50s; first symptoms are impaired memory which is followed by impaired thought and speech and finally complete helplessness
+575,Amaethon,the farmer god; ancient god of agriculture
+576,Amanita genus_Amanita,genus of widely distributed agarics that have white spores and are poisonous with few exceptions
+577,Amaranthaceae family_Amaranthaceae amaranth_family,cosmopolitan family of herbs and shrubs
+578,Amaranthus genus_Amaranthus,large widely distributed genus of chiefly coarse annual herbs
+579,Amarillo,a city in the northern panhandle of Texas
+580,Amaryllidaceae family_Amaryllidaceae amaryllis_family,snowdrop; narcissus; daffodil; in some classification systems considered a subfamily of the Liliaceae
+581,Amaterasu Amaterasu_Omikami,central deity of Shinto; goddess personifying the sun and ancestress of the rulers of Japan
+582,Amati,a violin made by Nicolo Amati or a member of his family
+583,Amati Nicolo_Amati Nicola_Amati,Italian violin maker in Cremona; taught the craft to Guarneri and Stradivari (1596-1684)
+584,Amauropelta genus_Amauropelta,epiphytic or terrestrial ferns of America and Africa and Polynesia
+585,Amazon,(Greek mythology) one of a nation of women warriors of Scythia (who burned off the right breast in order to use a bow and arrow more effectively)
+586,Amazon Amazon_River,a major South American river; arises in the Andes and flows eastward into the South Atlantic; the world's 2nd longest river (4000 miles)
+587,Amazon_ant Polyergus_rufescens,small reddish slave-making ant species
+588,Amazona genus_Amazona,a genus of Psittacidae
+589,Amberboa genus_Amberboa,herbs of Mediterranean to central Asia cultivated for their flowers
+590,Ambloplites genus_Ambloplites,a genus of Centrarchidae
+591,Amblyrhynchus genus_Amblyrhynchus,marine iguanas
+592,Ambrose Saint_Ambrose St._Ambrose,(Roman Catholic Church) Roman priest who became bishop of Milan; the first Church Father born and raised in the Christian faith; composer of hymns; imposed orthodoxy on the early Christian church and built up its secular power; a saint and Doctor of the Church (340?-397)
+593,Ambrosiaceae family_Ambrosiaceae,in some classifications considered a separate family comprising a subgroup of the Compositae including the ragweeds
+594,Ambystoma genus_Ambystoma,type genus of the Ambystomatidae
+595,Ambystomatidae family_Ambystomatidae,New World salamanders
+596,Ameiuridae family_Ameiuridae,North American catfishes
+597,Ameiurus genus_Ameiurus,type genus of the Ameiuridae: bullhead catfishes
+598,Amelanchier genus_Amelanchier,North American deciduous trees or shrubs
+599,Amen Amon Amun,a primeval Egyptian personification of air and breath; worshipped especially at Thebes
+600,Amen-Ra Amon-Ra Amun_Ra,Egyptian sun god; supreme god of the universe in whom Amen and Ra were merged; principal deity during Theban supremacy
+601,Amentiferae group_Amentiferae,used in some classification systems for plants that bear catkins
+602,America,North America and South America and Central America
+603,American,a native or inhabitant of the United States
+604,American,a native or inhabitant of a North American or Central American or South American country
+605,American_Baptist_Convention Northern_Baptist_Convention,an association of Northern Baptists
+606,American_Civil_War United_States_Civil_War War_between_the_States,civil war in the United States between the North and the South; 1861-1865
+607,American_Dream,the widespread aspiration of Americans to live better than their parents did
+608,American_English American_language American,the English language as used in the United States
+609,American_Falls,a part of Niagara Falls in western New York (north of Buffalo)
+610,American_Federation_of_Labor AFL,a federation of North American labor unions that merged with the Congress of Industrial Organizations in 1955
+611,American_Federation_of_Labor_and_Congress_of_Industrial_Organizations AFL-CIO,the largest federation of North American labor unions; formed in 1955
+612,American_Indian_Day,US: the 4th Friday in September
+613,American_Labor_Party,a former political party in the United States; formed in 1936 in New York when labor and liberals bolted the Democratic Party
+614,American_Legion,the largest organization of United States war veterans
+615,American_Party Know-Nothing_Party,a former political party in the United States; active in the 1850s to keep power out of the hands of immigrants and Roman Catholics
+616,American_Revolution American_Revolutionary_War War_of_American_Independence American_War_of_Independence,the revolution of the American Colonies against Great Britain; 1775-1783
+617,American_Revolutionary_leader,a nationalist leader in the American Revolution and in the creation of the United States
+618,American_Samoa Eastern_Samoa AS,a United States territory on the eastern part of the island of Samoa
+619,American_Staffordshire_terrier Staffordshire_terrier American_pit_bull_terrier pit_bull_terrier,American breed of muscular terriers with a short close-lying stiff coat
+620,American_Standard_Code_for_Information_Interchange ASCII,(computer science) a code for information exchange between computers made by different companies; a string of 7 binary digits represents each character; used in most microcomputers
+621,American_Standard_Version American_Revised_Version,a revised version of the King James Version
+622,American_Stock_Exchange AMEX Curb,a stock exchange in New York
+623,American_agave Agave_americana,widely cultivated American monocarpic plant with greenish-white flowers on a tall stalk; blooms only after ten to twenty years and then dies
+624,American_alligator Alligator_mississipiensis,large alligator of the southeastern United States
+625,American_angelica_tree devil's_walking_stick Hercules'-club Aralia_spinosa,small deciduous clump-forming tree or shrub of eastern United States
+626,American_arborvitae northern_white_cedar white_cedar Thuja_occidentalis,small evergreen of eastern North America having tiny scalelike leaves on flattened branchlets
+627,American_badger Taxidea_taxus,a variety of badger native to America
+628,American_barberry Berberis_canadensis,deciduous shrub of eastern North America whose leaves turn scarlet in autumn and having racemes of yellow flowers followed by ellipsoid glossy red berries
+629,American_basswood American_lime Tilia_americana,large American shade tree with large dark green leaves and rounded crown
+630,American_beech white_beech red_beech Fagus_grandifolia Fagus_americana,North American forest tree with light green leaves and edible nuts
+631,American_bison American_buffalo buffalo Bison_bison,large shaggy-haired brown bison of North American plains
+632,American_bittern stake_driver Botaurus_lentiginosus,a kind of bittern
+633,American_black_bear black_bear Ursus_americanus Euarctos_americanus,brown to black North American bear; smaller and less ferocious than the brown bear
+634,American_bog_asphodel Narthecium_americanum,of the eastern United States: New Jersey to South Carolina
+635,American_bugbane summer_cohosh Cimicifuga_americana,bugbane of the eastern United States having erect racemes of white flowers
+636,American_chameleon anole Anolis_carolinensis,small arboreal tropical American insectivorous lizards with the ability to change skin color
+637,American_chestnut American_sweet_chestnut Castanea_dentata,large tree found from Maine to Alabama
+638,American_cockroach Periplaneta_americana,large reddish brown free-flying cockroach originally from southern United States but now widely distributed
+639,American_coot marsh_hen mud_hen water_hen Fulica_americana,a coot found in North America
+640,American_copper Lycaena_hypophlaeas,common copper butterfly of central and eastern North America
+641,American_crab_apple garland_crab Malus_coronaria,medium-sized tree of the eastern United States having pink blossoms and small yellow fruit
+642,American_cranberry large_cranberry Vaccinium_macrocarpon,trailing red-fruited plant
+643,American_crayfish,common large crayfishes of eastern North America
+644,American_crow Corvus_brachyrhyncos,common crow of North America
+645,American_dewberry Rubus_canadensis,North American dewberry
+646,American_dog_violet Viola_conspersa,violet of eastern North America having pale violet to white flowers
+647,American_egret great_white_heron Egretta_albus,a common egret of the genus Egretta found in America; it is a variety of the Old World white egret Casmerodius albus
+648,American_elder black_elderberry sweet_elder Sambucus_canadensis,common elder of central and eastern North America bearing purple-black berries; fruit used in wines and jellies
+649,American_elm white_elm water_elm rock_elm Ulmus_americana,large ornamental tree with graceful gradually spreading branches common in eastern North America
+650,American_feverfew wild_quinine prairie_dock Parthenium_integrifolium,stout perennial herb of the eastern United States with whitish flowers; leaves traditionally used by Catawba Indians to treat burns
+651,American_flag Stars_and_Stripes Star-Spangled_Banner Old_Glory,the national flag of the United States of America
+652,American_fly_honeysuckle fly_honeysuckle Lonicera_canadensis,erect deciduous North American shrub with yellow-white flowers
+653,American_flying_squirrel,New World flying squirrels
+654,American_football American_football_game,a game played by two teams of 11 players on a rectangular field 100 yards long; teams try to get possession of the ball and advance it across the opponents goal line in a series of (running or passing) plays
+655,American_foxhound,an American breed of foxhounds used for hunting both in packs and individually
+656,American_frogbit Limnodium_spongia,American plant with roundish heart-shaped or kidney-shaped leaves; usually rooted in muddy bottoms of ponds and ditches
+657,American_gallinule Porphyrula_martinica,American purple gallinule
+658,American_germander wood_sage Teucrium_canadense,subshrub with serrate leaves and cream-colored to pink or purple flowers in spikelike racemes; North America
+659,American_ginseng sang Panax_quinquefolius,North American woodland herb similar to and used as substitute for the Chinese ginseng
+660,American_green_toad Bufo_debilis,small green or yellow-green toad with small black bars and stripes
+661,American_hackberry Celtis_occidentalis,large deciduous shade tree of southern United States with small deep purple berries
+662,American_harvest_mouse harvest_mouse,any of several small greyish New World mice inhabiting e.g. grain fields
+663,American_hazel Corylus_americana,nut-bearing shrub of eastern North America
+664,American_holly Christmas_holly,an evergreen tree
+665,American_hop Humulus_americanus,native American plant sometimes confused with the European hop
+666,American_hornbeam Carpinus_caroliniana,tree or large shrub with grey bark and blue-green leaves that turn red-orange in autumn
+667,American_lady_crab lady_crab calico_crab Ovalipes_ocellatus,brightly spotted crab of sandy beaches of the Atlantic coast of the United States
+668,American_larch tamarack black_larch Larix_laricina,medium-sized larch of Canada and northern United States including Alaska having a broad conic crown and rust-brown scaly bark
+669,American_lobster Northern_lobster Maine_lobster,flesh of cold-water lobsters having large tender claws; caught from Maine to the Carolinas
+670,American_lobster Northern_lobster Maine_lobster Homarus_americanus,lobster of Atlantic coast of America
+671,American_magpie Pica_pica_hudsonia,a magpie of Rocky Mountains in North America
+672,American_maidenhair_fern five-fingered_maidenhair_fern Adiantum_pedatum,hardy palmately branched North American fern with divergent recurved branches borne on lustrous dark reddish stipes
+673,American_marten American_sable Martes_americana,valued for its fur
+674,American_mastodon American_mastodont Mammut_americanum,mastodon of North America; in some classifications considered a mammoth rather than a mastodon
+675,American_merganser Mergus_merganser_americanus,common North American diving duck considered a variety of the European goosander
+676,American_mink Mustela_vison,usually rich dark brown
+677,American_mistletoe Arceuthobium_pusillum,small herb with scalelike leaves on reddish-brown stems and berrylike fruits; parasitic on spruce and larch trees
+678,American_mistletoe Phoradendron_serotinum Phoradendron_flavescens,the traditional mistletoe of Christmas in America: grows on deciduous trees and can severely weaken the host plant
+679,American_mountain_ash Sorbus_americana,a variety of mountain ash
+680,American_oil_palm Elaeis_oleifera,palm of Central and South America
+681,American_organ,a free-reed instrument in which air is drawn in through reeds by suction bellows
+682,American_parasol Lepiota_americana,an agaric with a pallid cap and a stalk that is enlarged near the base
+683,American_pasqueflower Eastern_pasque_flower wild_crocus lion's_beard prairie_anemone blue_tulip American_pulsatilla Pulsatilla_patens Anemone_ludoviciana,short hairy perennial with early spring blue-violet or lilac flowers; North America and Siberia
+684,American_persimmon possumwood Diospyros_virginiana,medium-sized tree of dry woodlands in the southern and eastern United States bearing yellow or orange very astringent fruit that is edible when fully ripe
+685,American_plaice Hippoglossoides_platessoides,large American food fish
+686,American_plan,a hotel plan that includes three meals daily
+687,American_quaking_aspen American_aspen Populus_tremuloides,slender aspen native to North America
+688,American_raspberry Rubus_strigosus Rubus_idaeus_strigosus,red raspberry of North America
+689,American_rattlebox Crotalaria_sagitallis,tropical American annual herb having an inflated pod in which the ripe seeds rattle
+690,American_red_elder red-berried_elder stinking_elder Sambucus_pubens,common North American shrub or small tree
+691,American_red_plum August_plum goose_plum Prunus_americana,wild plum trees of eastern and central North America having red-orange fruit with yellow flesh
+692,American_red_squirrel spruce_squirrel red_squirrel Sciurus_hudsonicus Tamiasciurus_hudsonicus,of northern United States and Canada
+693,American_redstart redstart Setophaga_ruticilla,flycatching warbler of eastern North America the male having bright orange on sides and wings and tail
+694,American_rock_brake American_parsley_fern Cryptogramma_acrostichoides,rock-inhabiting fern of northern North America growing in massive tufts and having fronds resembling parsley
+695,American_saddle_horse,a high-stepping horse originating in Kentucky
+696,American_shrew_mole Neurotrichus_gibbsii,greyish-black shrew mole of the United States and Canada
+697,American_smelt rainbow_smelt,common smelt of eastern North America and Alaska
+698,American_smokewood chittamwood Cotinus_americanus Cotinus_obovatus,shrubby tree of southern United States having large plumes of feathery flowers resembling puffs of smoke
+699,American_smooth_dogfish Mustelus_canis,found along the Atlantic coast of the Americas
+700,American_spikenard petty_morel life-of-man Aralia_racemosa,unarmed woody rhizomatous perennial plant distinguished from wild sarsaparilla by more aromatic roots and panicled umbels; southeastern North America to Mexico
+701,American_star_grass Hypoxis_hirsuta,perennial star grass of North America
+702,American_state,one of the 50 states of the United States
+703,American_sycamore American_plane buttonwood Platanus_occidentalis,very large spreading plane tree of eastern and central North America to Mexico
+704,American_toad Bufo_americanus,common toad of America
+705,American_turkey_oak turkey_oak Quercus_laevis,small slow-growing deciduous shrubby tree of dry sandy barrens of southeastern United States having leaves with bristle-tipped lobes resembling turkey's toes
+706,American_twinflower Linnaea_borealis_americana,similar to the twinflower of northern Europe and Asia
+707,American_water_ouzel Cinclus_mexicanus,a water ouzel of western North America
+708,American_water_shrew Sorex_palustris,water shrew of North America
+709,American_water_spaniel,breed of medium-sized spaniels originating in America having chocolate or liver-colored curly coat
+710,American_watercress mountain_watercress Cardamine_rotundifolia,mat-forming perennial found in cold springs of the eastern United States
+711,American_white_birch paper_birch paperbark_birch canoe_birch Betula_cordifolia Betula_papyrifera,small American birch with peeling white bark often worked into e.g. baskets or toy canoes
+712,American_white_oak Quercus_alba,large slow-growing deciduous tree of the eastern United States having stout spreading branches and leaves with usually 7 rounded lobes; yields strong and durable hard wood
+713,American_white_pine eastern_white_pine weymouth_pine Pinus_strobus,tall-growing pine of eastern North America; bark is brown with longitudinal fissures when mature; valued as a timber tree
+714,American_widgeon baldpate Anas_americana,a widgeon the male of which has a white crown
+715,American_wistaria American_wisteria Wisteria_frutescens,an eastern United States native resembling the cultivated Japanese wisteria having pale purple-lilac flowers
+716,American_woodcock woodcock_snipe Philohela_minor,small long-billed woodcock; prized as a game bird
+717,American_wormseed Mexican_tea Spanish_tea wormseed Chenopodium_ambrosioides,rank-smelling tropical American pigweed
+718,Americana,any artifact (such as books or furniture or art) that is distinctive of America
+719,Americanism,an expression that is characteristic of English as spoken by Americans
+720,Americanism,loyalty to the United States and its institutions
+721,Americanism,a custom that is peculiar to the United States or its citizens
+722,Americanization Americanisation,assimilation into American culture
+723,Amerind Amerindian_language American-Indian_language American_Indian Indian,any of the languages spoken by Amerindians
+724,Amerindian Native_American,any member of the peoples living in North or South America before the Europeans arrived
+725,Amhara,a member of the Semitic speaking people of northern Ethiopia
+726,Amharic Ethiopian_language,the dominant and official language of Ethiopia; a Semitic language much influenced by the Cushitic language with which Amhara have been in close contact
+727,Amia genus_Amia,type genus of the Amiidae
+728,Amianthum genus_Amianthum,one species: fly poison; sometimes placed in family Melanthiaceae
+729,Amiidae family_Amiidae,only the bowfins
+730,Amish,an American follower of the Mennonite religion
+731,Amish_sect,an orthodox Anabaptist sect separated from the Mennonites in late 17th century; settled chiefly in southeastern Pennsylvania
+732,Amman capital_of_Jordan,the capital and largest city of Jordan
+733,Ammodytes genus_Ammodytes,type genus of the Ammodytidae
+734,Ammodytidae family_Ammodytidae,sand lances
+735,Ammotragus genus_Ammotragus,genus of wild sheep
+736,Amniota,higher vertebrates (reptiles, birds and mammals) possessing an amnion during development
+737,Amoebida order_Amoebida Amoebina order_Amoebina,the animal order including amoebas
+738,Amontillado,pale medium-dry sherry from Spain
+739,Amos,a Hebrew shepherd and minor prophet
+740,Amos Book_of_Amos,an Old Testament book telling Amos's prophecies
+741,Amphibolips genus_Amphibolips,cynipid gall wasps, especially causing oak-apple galls
+742,Amphicarpaea genus_Amphicarpaea Amphicarpa genus_Amphicarpa,very small genus of twining vines of North America and Asia: hog peanut
+743,Amphineura subclass_Amphineura,a class of Gastropoda
+744,Amphioxidae family_Amphioxidae Branchiostomidae family_Branchiostomidae,lancelets
+745,Amphipoda order_Amphipoda,small flat-bodied semiterrestrial crustaceans: whale lice; sand-hoppers; skeleton shrimp
+746,Amphiprion genus_Amphiprion,damsel fishes
+747,Amphisbaena genus_Amphisbaena Amphisbaenia genus_Amphisbaenia,type genus of the Amphisbaenidae
+748,Amphisbaenidae family_Amphisbaenidae,worm lizards
+749,Amphiumidae family_Amphiumidae,congo snakes
+750,Amsinckia genus_Amsinckia,rough annual herbs of Europe and the Americas: fiddlenecks
+751,Amsler_grid,a pattern of small boxes that is used for self-monitoring by patients who have age-related macular degeneration
+752,Amsonia genus_Amsonia,genus of herbs and subshrubs with milky juice and showy bluish flowers; Europe to Asia Minor to Japan and North America
+753,Amsterdam Dutch_capital capital_of_The_Netherlands,an industrial center and the nominal capital of the Netherlands; center of the diamond-cutting industry; seat of an important stock exchange; known for its canals and art museum
+754,Amundsen Roald_Amundsen,Norwegian explorer who was the first to traverse the Northwest Passage and in 1911 the first to reach the South Pole (1872-1928)
+755,Amur Amur_River Heilong_Jiang Heilong,an Asian river between China and Russia; flows into the Sea of Okhotsk
+756,Amur_privet Ligustrum_amurense,eastern Asian shrub cultivated especially for its persistent foliage
+757,Amygdalaceae family_Amygdalaceae,used in former classifications for plum and peach and almond trees which are now usually classified as members of the genus Prunus
+758,Amygdalus genus_Amygdalus,used in former classifications for peach and almond trees which are now included in genus Prunus
+759,Ana,mother of the ancient Irish gods; sometimes identified with Danu
+760,Anabantidae family_Anabantidae,small freshwater spiny-finned fishes of Africa and southern Asia
+761,Anabaptism,a Protestant movement in the 16th century that believed in the primacy of the Bible, baptised only believers, not infants, and believed in complete separation of church and state
+762,Anabaptist,adherent of Anabaptism
+763,Anabaptist_denomination,a Protestant sect denying infant baptism and baptising only believers
+764,Anabas genus_Anabas,the type genus of the family Anabantidae; small fish that resemble perch
+765,Anabrus genus_Anabrus,a genus of Tettigoniidae
+766,Anacanthini order_Anacanthini,at least partially equivalent to the order Gadiformes in some classifications
+767,Anacardiaceae family_Anacardiaceae sumac_family,the cashew family; trees and shrubs and vines having resinous (sometimes poisonous) juice; includes cashew and mango and pistachio and poison ivy and sumac
+768,Anacardium genus_Anacardium,type genus of the Anacardiaceae: cashew
+769,Anacyclus genus_Anacyclus,a Spanish pellitory
+770,Anadenanthera genus_Anadenanthera,2 species of tropical American shrubs or trees
+771,Anadenanthera_colubrina Piptadenia_macrocarpa,Brazilian shrub having twice-pinnate leaves and small spicate flowers followed by flat or irregularly torulose pods; sometimes placed in genus Piptadenia
+772,Anagallis genus_Anagallis,chiefly Old World herbs
+773,Anagasta genus_Anagasta,moth whose larvae are flour moths
+774,Anagyris genus_Anagyris,very small genus of shrubs of southern Europe having backward curving seed pods
+775,Anaheim,a city in southern California (southeast of Los Angeles); site of Disneyland
+776,Ananas genus_Ananas,a genus of tropical American plants have sword-shaped leaves and a fleshy compound fruits composed of the fruits of several flowers (such as pineapples)
+777,Ananias,a habitual liar (after a New Testament character who was struck dead for lying)
+778,Anaphalis genus_Anaphalis,a genus of herbs of north temperate regions having hoary leaves: pearly everlasting
+779,Anapsida subclass_Anapsida,oldest known reptiles; turtles and extinct Permian forms
+780,Anarhichadidae family_Anarhichadidae,wolffishes
+781,Anarhichas genus_Anarhichas,type genus of the Anarhichadidae
+782,Anas genus_Anas,type genus of the Anatidae: freshwater ducks
+783,Anasa genus_Anasa,squash bugs
+784,Anasazi,a Native American who lived in what is now southern Colorado and Utah and northern Arizona and New Mexico and who built cliff dwellings
+785,Anaspida order_Anaspida,extinct order of jawless vertebrates
+786,Anastatica genus_Anastatica,one species: rose of Jericho; resurrection plant
+787,Anastomus genus_Anastomus,openbills
+788,Anatidae family_Anatidae,swimming birds having heavy short-legged bodies and bills with a horny tip: swans; geese; ducks
+789,Anatolian Anatolian_language,an extinct branch of the Indo-European family of languages known from inscriptions and important in the reconstruction of Proto-Indo European
+790,Anaxagoras,a presocratic Athenian philosopher who maintained that everything is composed of very small particles that were arranged by some eternal intelligence (500-428 BC)
+791,Anaximander,a presocratic Greek philosopher and student of Thales who believed the universal substance to be infinity rather than something resembling ordinary objects (611-547 BC)
+792,Anaximenes,a presocratic Greek philosopher and associate of Anaximander who believed that all things are made of air in different degrees of density (6th century BC)
+793,Anchorage,a city in south central Alaska; "Anchorage is the largest city in Alaska"
+794,Ancient_Greek,the Greek language prior to the Roman Empire
+795,Ancohuma,a mountain peak in the Andes in Bolivia (20,960 feet high)
+796,Ancylidae family_Ancylidae,freshwater gastropod
+797,Ancylostomatidae family_Ancylostomatidae,hookworms
+798,Ancylus genus_Ancylus,type genus of the family Ancylidae: river limpet
+799,Andalusia Andalucia,a region in southern Spain on the Atlantic and the Mediterranean; formerly a center of Moorish civilization
+800,Andaman_Sea,part of the Bay of Bengal to the west of the Malay Peninsula
+801,Andean_condor Vultur_gryphus,large vulture of the high Andes having black plumage and white neck ruff
+802,Andersen Hans_Christian_Andersen,a Danish author remembered for his fairy stories (1805-1875)
+803,Anderson Carl_Anderson Carl_David_Anderson,United States physicist who discovered antimatter in the form of an antielectron that is called the positron (1905-1991)
+804,Anderson Marian_Anderson,United States contralto noted for her performance of spirituals (1902-1993)
+805,Anderson Maxwell_Anderson,United States dramatist (1888-1959)
+806,Anderson Philip_Anderson Philip_Warren_Anderson Phil_Anderson,United States physicist who studied the electronic structure of magnetic and disordered systems (1923-)
+807,Anderson Sherwood_Anderson,United States author whose works were frequently autobiographical (1876-1941)
+808,Andes,a mountain range in South America running 5000 miles along the Pacific coast
+809,Andhra_Pradesh,a state of southeastern India on the Bay of Bengal
+810,Andira genus_Andira,small genus of evergreen trees of tropical America and western Africa
+811,Andorra Principality_of_Andorra,a small republic in the eastern Pyrenees between Spain and France
+812,Andorran,a native or inhabitant of Andorra
+813,Andreaea genus_Andreaea,brown or blackish Alpine mosses having a dehiscent capsule with 4 longitudinal slits
+814,Andreaeales order_Andreaeales,comprises a single genus: Andreaea
+815,Andrenidae family_Andrenidae,a large family of solitary short-tongued bees most of which burrow in the ground
+816,Andrew Saint_Andrew St._Andrew Saint_Andrew_the_Apostle,(New Testament) disciple of Jesus; brother of Peter; patron saint of Scotland
+817,Andrews Roy_Chapman_Andrews,United States naturalist who contributed to paleontology and geology (1884-1960)
+818,Andricus genus_Andricus,cynipid gall wasps, chiefly affecting oaks
+819,Andromeda,(Greek mythology) an Ethiopian princess and daughter of Cassiopeia; she was fastened to a rock and exposed to a sea monster that was sent by Poseidon, but she was rescued by Perseus and became his wife
+820,Andromeda,a constellation in the northern hemisphere between Cassiopeia and Pegasus; contains the Andromeda galaxy
+821,Andromeda_galaxy,a spiral galaxy in the constellation of Andromeda that is visible to the naked eye
+822,Andropogon genus_Andropogon,tall annual or perennial grasses with spikelike racemes; warm regions
+823,Andvari,(Norse mythology) a dwarf who possessed a treasure that was stolen by Loki
+824,Aneides genus_Aneides,climbing salamanders
+825,Anemia genus_Anemia,genus of terrestrial or lithophytic ferns having pinnatifid fronds; chiefly of tropical America
+826,Anemonella genus_Anemonella,one species: rue anemone
+827,Anemopsis genus_Anemopsis,one species: yerba mansa
+828,Anethum genus_Anethum,dill
+829,Angara Angara_River Tunguska Upper_Tunguska,a river in southeastern Siberia that flows northwest from Lake Baikal to become a tributary of the Yenisei River
+830,Angas,a Chadic language spoken in northern Nigeria and closely related to Hausa
+831,Angel Angel_Falls,the highest waterfall; has more than one leap; flow varies seasonally
+832,Angelus,a prayer said 3 times a day by Roman Catholics in memory of the Annunciation
+833,Angevin Angevine,a resident of Anjou
+834,Angiospermae class_Angiospermae Magnoliophyta division_Magnoliophyta Anthophyta division_Anthophyta,comprising flowering plants that produce seeds enclosed in an ovary; in some systems considered a class (Angiospermae) and in others a division (Magnoliophyta or Anthophyta)
+835,Angle,a member of a Germanic people who conquered England and merged with the Saxons and Jutes to become Anglo-Saxons
+836,Anglesey Anglesey_Island Anglesea Anglesea_Island Mona,an island to the northwest of Wales
+837,Anglia,the Latin name for England
+838,Anglian,one of the major dialects of Old English
+839,Anglican,a Protestant who is a follower of Anglicanism
+840,Anglican_Catholic,a member of the Anglican Church who emphasizes its Catholic character
+841,Anglican_Church Anglican_Communion Church_of_England,the national church of England (and all other churches in other countries that share its beliefs); has its see in Canterbury and the sovereign as its temporal head
+842,Anglicanism,the faith and doctrine and practice of the Anglican Church
+843,Anglicism Briticism Britishism,an expression that is used in Great Britain (especially as contrasted with American English)
+844,Anglicism Britishism,a custom that is peculiar to England or its citizens
+845,Anglicization Anglicisation,the act of anglicizing; making English in appearance
+846,Anglo-American,an American who was born in Britain or one whose ancestors were British
+847,Anglo-Catholicism High_Anglicanism,a doctrine and practice within the Church of England emphasizing the Catholic tradition
+848,Anglo-French Anglo-Norman,the French (Norman) language used in medieval England
+849,Anglo-German_concertina,a concertina with bellows and buttons on both ends
+850,Anglo-Indian,a person of English citizenship born or living in India
+851,Anglo-Saxon,a person of Anglo-Saxon (especially British) descent whose native tongue is English and whose culture is strongly influenced by English culture as in WASP for `White Anglo-Saxon Protestant'; "in the ninth century the Vikings began raiding the Anglo-Saxons in Britain"; "his ancestors were not just British, they were Anglo-Saxons"
+852,Anglo-Saxon,a native or inhabitant of England prior to the Norman Conquest
+853,Anglo-Saxon_deity,(Anglo-Saxon mythology) a deity worshipped by the Anglo-Saxons
+854,Anglomania,an excessive enthusiasm for all things English
+855,Anglophilia,admiration for Britain and British customs
+856,Anglophobia,dislike (or fear) of Britain and British customs
+857,Angola Republic_of_Angola,a republic in southwestern Africa on the Atlantic Ocean; achieved independence from Portugal in 1975 and was the scene of civil war until 1990
+858,Angolan,a native or inhabitant of Angola
+859,Angolan_monetary_unit,monetary unit in Angola
+860,Angolese,a member of the Bantu tribes resident in Angola
+861,Angora Angora_cat,a long-haired breed of cat similar to the Persian cat
+862,Angora Angora_goat,a domestic breed of goat raised for its long silky hair which is the true mohair
+863,Angora Angora_rabbit,domestic breed of rabbit with long white silky hair
+864,Angostura_Bridge,a suspension bridge across the Orinoco River at Ciudad Bolivar
+865,Anguidae family_Anguidae,alligator lizards
+866,Anguilla,a British colony in the West Indies
+867,Anguilla genus_Anguilla,type genus of the Anguillidae: eels
+868,Anguillan,a native or inhabitant of the island of Anguilla in the West Indies
+869,Anguillidae family_Anguillidae,eels that live in fresh water as adults but return to the sea to spawn
+870,Anguilliformes order_Anguilliformes order_Apodes,elongate fishes with pelvic fins and girdle absent or reduced
+871,Anguillula genus_Anguillula Turbatrix genus_Turbatrix,a genus of Cephalobidae
+872,Anguis genus_Anguis,type genus of the Anguidae: blindworms
+873,Angus_Og Aengus Oengus Angus,Celtic god of love and beauty; patron deity of young men and women
+874,Anhima genus_Anhima,type genus of the Anhimidae; horned screamers
+875,Anhimidae family_Anhimidae,screamers
+876,Anhingidae family_Anhingidae,snakebirds
+877,Anigozanthus genus_Anigozanthus,genus of monocotyledonous plants with curious woolly flowers on sturdy stems above a fan of sword-shaped leaves; includes kangaroo's paw and Australian sword lily; sometimes placed in family Amaryllidaceae
+878,Animalia kingdom_Animalia animal_kingdom,taxonomic kingdom comprising all living or extinct animals
+879,Anisoptera suborder_Anisoptera,dragonflies
+880,Anisotremus genus_Anisotremus,a genus of Haemulidae
+881,Anjou,a former province of western France in the Loire valley
+882,Ankara Turkish_capital capital_of_Turkey Angora,the capital of Turkey; located in west-central Turkey; it was formerly known as Angora and is the home of Angora goats
+883,Ann_Arbor,a city in southern Michigan near Detroit; site of the University of Michigan
+884,Annaba,a port city of northeastern Algeria near the Tunisian border
+885,Annapolis capital_of_Maryland,state capital of Maryland; site of the United States Naval Academy
+886,Annapurna Anapurna,a mountain in the Himalayas in Nepal (26,500 feet high)
+887,Anne,Queen of England and Scotland and Ireland; daughter if James II and the last of the Stuart monarchs; in 1707 she was the last English ruler to exercise the royal veto over parliament (1665-1714)
+888,Annelida phylum_Annelida,segmented worms: earthworms; lugworms; leeches
+889,Anniellidae family_Anniellidae,legless lizards
+890,Annona genus_Annona,type genus of the Annonaceae; tropical American trees or shrubs
+891,Annonaceae family_Annonaceae custard-apple_family,chiefly tropical trees or shrubs
+892,Annunciation,(Christianity) the announcement to the Virgin Mary by the angel Gabriel of the incarnation of Christ
+893,Annunciation Lady_Day Annunciation_Day March_25,a festival commemorating the announcement of the Incarnation by the angel Gabriel to the Virgin Mary; a quarter day in England, Wales, and Ireland
+894,Annwfn Annwn,(Welsh mythology) the other world; land of fairies
+895,Anobiidae family_Anobiidae,deathwatch beetles
+896,Anodonta genus_Anodonta,thin-shelled freshwater mussels
+897,Anoectochilus genus_Anoectochilus,genus of delicate Asiatic orchids
+898,Anogramma genus_Anogramma,a genus of ferns belonging to the family Pteridaceae
+899,Anolis genus_Anolis,New World chameleons
+900,Anomala genus_Anomala,genus of beetles whose grubs feed mainly on roots of plants; includes several pests of cultivated grasses
+901,Anomalopidae family_Anomalopidae,a family of fish including: flashlight fishes
+902,Anomia genus_Anomia,type genus of the family Anomiidae: saddle oysters
+903,Anomiidae family_Anomiidae,saddle oysters
+904,Anopheles genus_Anopheles,malaria mosquitoes; distinguished by the adult's head-downward stance and absence of breathing tubes in the larvae
+905,Anoplura order_Anoplura,sucking lice
+906,Anostraca order_Anostraca,small aquatic crustaceans lacking a carapace: fairy shrimps; brine shrimps
+907,Anouilh Jean_Anouilh,French dramatist noted for his reinterpretations of Greek myths (1910-1987)
+908,Ansar_al_Islam Ansar_al-Islam Supporters_of_Islam,a radical Islamic group of terrorists in the Iraqi part of Kurdistan who oppose an independent secular nation as advocated by the United States; some members fought with the Taliban and al-Qaeda forces in Afghanistan; said to receive financial support from Saddam Hussein
+909,Anselm Saint_Anselm St._Anselm,an Italian who was a Benedictine monk; was archbishop of Canterbury from 1093 to 1109; one of the founders of scholasticism; best known for his proof of the existence of God
+910,Anser genus_Anser,typical geese
+911,Anseres suborder_Anseres,used in some especially older classifications; coextensive with the family Anatidae
+912,Anseriformes order_Anseriformes,ducks; geese; swans; screamers
+913,Anserinae subfamily_Anserinae,used in some classifications for the swans
+914,Anshar,the Babylonian father of the gods; identified with Assyrian Ashur; in Sumerian the name signifies `the totality of the upper world'
+915,Antalya Adalia,a port city in southwestern Turkey on the Gulf of Antalya
+916,Antananarivo capital_of_Madagascar,the capital and largest city of Madagascar
+917,Antarctic Antarctic_Zone South_Frigid_Zone,the region around the south pole: Antarctica and surrounding waters
+918,Antarctic_Circle,a line of latitude north of the south pole
+919,Antarctic_Ocean,the southern waters surrounding Antarctica
+920,Antarctic_Peninsula Palmer_Peninsula,a large peninsula of Antarctica that extends some 1200 miles north toward South America; separates the Weddell Sea from the South Pacific
+921,Antarctica Antarctic_continent,an extremely cold continent at the south pole almost entirely below the Antarctic Circle; covered by an ice cap up to 13,000 feet deep; "Antarctica is twice the size of Australia"
+922,Antares,the brightest star in Scorpius
+923,Antedon genus_Antedon,a genus of echinoderms of the family Antedonidae
+924,Antedonidae family_Antedonidae,feather stars
+925,Antennaria genus_Antennaria,small woolly perennial herbs having small whitish discoid flowers surrounded by a ring of club-shaped bristles
+926,Antennariidae family_Antennariidae,frogfishes; tropical spiny-finned marine fishes having large nearly vertical mouths; related to toadfishes and anglers
+927,Anthemis genus_Anthemis,dog fennel
+928,Antheraea genus_Antheraea,large moths whose larvae produce silk of high quality
+929,Anthericum genus_Anthericum,genus of Old World (mainly African) perennial herbs; sometimes placed in family Asphodelaceae
+930,Antheropeas genus_Antheropeas,small genus of North American herbs often included in genus Eriophyllum
+931,Anthidium genus_Anthidium,potter bees
+932,Anthoceropsida class_Anthoceropsida,hornworts: in some classification systems included in the class Hepaticopsida
+933,Anthoceros genus_Anthoceros,hornworts
+934,Anthocerotaceae family_Anthocerotaceae,hornworts
+935,Anthocerotales order_Anthocerotales,hornworts; liverworts having a thalloid gametophyte; in some classification systems included in the class Hepaticopsida
+936,Anthonomus genus_Anthonomus,weevils destructive of cultivated plants
+937,Anthony Susan_Anthony Susan_B._Anthony Susan_Brownell_Anthony,United States suffragist (1820-1906)
+938,Anthozoa class_Anthozoa Actinozoa class_Actinozoa,a large class of sedentary marine coelenterates that includes sea anemones and corals; the medusoid phase is entirely suppressed
+939,Anthriscus genus_Anthriscus,chervil: of Europe, North Africa and Asia
+940,Anthropoidea suborder_Anthropoidea,monkeys; apes; hominids
+941,Anthus genus_Anthus,pipits
+942,Anthyllis genus_Anthyllis,genus of Mediterranean herbs and shrubs
+943,Anti-Masonic_Party,a former political party in the United States; founded in 1825 in opposition to Freemasonry in public affairs
+944,Antichrist,(Christianity) the adversary of Christ (or Christianity) mentioned in the New Testament; the Antichrist will rule the world until overthrown by the Second Coming of Christ
+945,Antido,an artificial language related to Ido
+946,Antidorcas genus_Antidorcas,springboks
+947,Antigone,(Greek mythology) the daughter of King Oedipus who disobeyed her father and was condemned to death
+948,Antigonia genus_Antigonia,a genus of fish in the family Caproidae
+949,Antigonus Antigonus_Cyclops Monophthalmos,a general of Alexander the Great and king of Macedonia; lost one eye; killed in a battle at Ipsus (382-301 BC)
+950,Antigua,the largest of the islands comprising Antigua and Barbuda
+951,Antigua_and_Barbuda,a country in the northern Leeward Islands
+952,Antiguan,a native or inhabitant of Antigua
+953,Antilles,a group of islands in the West Indies
+954,Antilocapra genus_Antilocapra,type and sole genus of the Antilocapridae comprising one species
+955,Antilocapridae family_Antilocapridae,comprising only the pronghorns
+956,Antilope genus_Antilope,blackbucks
+957,Antioch Antakya Antakiya,a town in southern Turkey; ancient commercial center and capital of Syria; an early center of Christianity
+958,Antirrhinum genus_Antirrhinum,a genus of herbs of the family Scrophulariaceae with brightly colored irregular flowers
+959,Antlia,a faint constellation in the southern hemisphere near Hydra and Vela
+960,Antofagasta,a port city on the Pacific in northern Chile
+961,Antonine_Wall,a fortification 37 miles long across the narrowest part of southern Scotland (between the Firth of Forth and the Firth of Clyde); built in 140 to mark the frontier of the Roman province of Britain
+962,Antoninus Aurelius Marcus_Aurelius Marcus_Aurelius_Antoninus Marcus_Annius_Verus,Emperor of Rome; nephew and son-in-law and adoptive son of Antonius Pius; Stoic philosopher; the decline of the Roman Empire began under Marcus Aurelius (121-180)
+963,Antonius_Pius,Emperor of Rome; adoptive son of Hadrian (86-161)
+964,Antony Anthony Mark_Antony Mark_Anthony Antonius Marcus_Antonius,Roman general under Julius Caesar in the Gallic wars; repudiated his wife for the Egyptian queen Cleopatra; they were defeated by Octavian at Actium (83-30 BC)
+965,Antrozous genus_Antrozous,a genus of Vespertilionidae
+966,Antum,Babylonian consort of Anu
+967,Antwerpen Antwerp Anvers,a busy port and financial center in northern Belgium on the Scheldt river; it has long been a center for the diamond industry and the first stock exchange was opened there in 1460
+968,Anu,Babylonian god of the sky; one of the supreme triad including Bel and Ea
+969,Anubis Anpu,Egyptian god of tombs and ruler of the underworld; usually depicted as a man with the head of a jackal
+970,Anunnaki Enuki,any of a group of powerful Babylonian earth spirits or genii; servitors of the gods
+971,Anzac,a soldier in the Australian and New Zealand army corps during World War I
+972,Anzio,a town of central Italy on the Tyrrhenian Sea; the Allies established a beachhead at Anzio in World War II
+973,Aotus genus_Aotus,douroucoulis
+974,Apache,any member of Athapaskan tribes that migrated to the southwestern desert (from Arizona to Texas and south into Mexico); fought a losing battle from 1861 to 1886 with the United States and were resettled in Oklahoma
+975,Apache,the language of the Apache
+976,Apalachicola Apalachicola_River,a river in northwestern Florida formed by the confluence of the Chattahoochee River and the Flint River at the Florida border
+977,Apalachicola_rosemary Conradina_glabra,small shrub of Apalachicola River area in southeastern United States having highly aromatic pinkish flowers; a threatened species
+978,Apatura genus_Apatura,large Old World butterflies
+979,Apeldoorn,a city of east central Netherlands; a popular tourist center and site of the summer residence of the Dutch royal family
+980,Apennines,a mountain range extending the length of the Italian peninsula
+981,Apgar_score,an assessment of the physical condition of a newborn infant; involves heart rate and muscle tone and respiratory effort and color and reflex responsiveness
+982,Aphasmidia class_Aphasmidia,one of two subgroups of Nematoda used in some classification systems
+983,Aphididae family_Aphididae,small soft-bodied plant lice
+984,Aphidoidea superfamily_Aphidoidea,plant lice
+985,Aphis genus_Aphis,type genus of the Aphididae: injurious to fruit trees and vegetables
+986,Aphriza genus_Aphriza,a genus of Scolopacidae
+987,Aphrodite Cytherea,goddess of love and beauty and daughter of Zeus in ancient mythology; identified with Roman Venus
+988,Aphrophora genus_Aphrophora,a genus of Cercopidae
+989,Aphyllanthaceae family_Aphyllanthaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Aphyllanthes
+990,Aphyllanthes genus_Aphyllanthes,one species; small fibrous-rooted perennial with rushlike foliage and deep blue flowers; sometimes placed in its own family Aphyllanthaceae
+991,Aphyllophorales order_Aphyllophorales,includes chiefly saprophytic fungi typically with shelflike bodies; sometimes placed in class Hymenomycetes or included in Agaricales
+992,Apia capital_of_Western_Samoa,the capital of Western Samoa
+993,Apidae family_Apidae,honeybees; carpenter bees; bumblebees
+994,Apios genus_Apios,twining perennial North American plants
+995,Apis genus_Apis,type genus of the Apidae: honeybees
+996,Apium genus_Apium,celery
+997,Aplectrum genus_Aplectrum,a monocotyledonous genus of the family Orchidaceae
+998,Aplodontia genus_Aplodontia,type genus of the Aplodontiidae: comprising the mountain beavers
+999,Aplodontiidae family_Aplodontiidae,mountain beavers
+1000,Aplysia genus_Aplysia Tethys genus_Tethus,type genus of the family Aplysiidae
+1001,Aplysiidae family_Aplysiidae Tethyidae family_Tethyidae,sea hares
+1002,Apocrypha,14 books of the Old Testament included in the Vulgate (except for II Esdras) but omitted in Jewish and Protestant versions of the Bible; eastern Christian churches (except the Coptic Church) accept all these books as canonical; the Russian Orthodox Church accepts these texts as divinely inspired but does not grant them the same status
+1003,Apocynaceae family_Apocynaceae dogbane_family,chiefly tropical trees or shrubs or herbs having milky juice and often showy flowers; many are sources of drugs
+1004,Apocynum genus_Apocynum,perennial herbs with small pink or white flowers
+1005,Apodemus genus_Apodemus,Old World field mice
+1006,Apodidae family_Apodidae,swifts; in former classifications included in the order Coraciiformes
+1007,Apodiformes order_Apodiformes,swifts; hummingbirds
+1008,Apogon genus_Apogon,type genus of the Apogonidae
+1009,Apogonidae family_Apogonidae,bright-colored marine fishes that incubate eggs in the mouth
+1010,Apoidea superfamily_Apoidea,bees
+1011,Apollinaire Guillaume_Apollinaire Wilhelm_Apollinaris_de_Kostrowitzki,French poet; precursor of surrealism (1880-1918)
+1012,Apollo Phoebus Phoebus_Apollo,(Greek mythology) Greek god of light; god of prophecy and poetry and music and healing; son of Zeus and Leto; twin brother of Artemis
+1013,Apollo_asteroid,an asteroid whose orbit crosses the Earth's orbit
+1014,Apollo_program,a program of space flights undertaken by US to land a man on the Moon; "the first lunar landing was achieved by the Apollo program on July 20, 1969"
+1015,Aporocactus genus_Aporocactus,small genus of epiphytic cacti of Mexico
+1016,Apostle,(New Testament) one of the original 12 disciples chosen by Christ to preach his gospel
+1017,Apostle Apostelic_Father,any important early teacher of Christianity or a Christian missionary to a people
+1018,Appalachia,an impoverished coal mining area in the Appalachian Mountains (from Pennsylvania to North Carolina)
+1019,Appalachian,a native or inhabitant of Appalachia
+1020,Appalachians Appalachian_Mountains,a mountain range in the eastern United States extending from Quebec to the Gulf of Mexico; a historic barrier to early westward expansion of the United States
+1021,Appaloosa,a hardy breed of saddle horse developed in western North America and characteristically having a spotted rump
+1022,Appenzeller,a smaller of the four Swiss breeds
+1023,Appian_Way,an ancient Roman road in Italy extending south from Rome to Brindisi; begun in 312 BC
+1024,Appleton,a town in eastern Wisconsin
+1025,Appleton Edward_Appleton Sir_Edward_Victor_Appleton,English physicist remembered for his studies of the ionosphere (1892-1966)
+1026,Appleton_layer F_layer F_region,the highest region of the ionosphere (from 90 to 600 miles up) which contains the highest concentration of free electrons and is most useful for long-range radio transmission
+1027,April Apr,the month following March and preceding May
+1028,April_Fools' April_Fools'_day All_Fools'_day,the first day of April which is celebrated by playing practical jokes
+1029,April_fool,the butt of a prank played on April 1st
+1030,April_fool,a practical joke or trick played on the first day of April
+1031,Apsu,father of the gods and consort of Tiamat
+1032,Aptenodytes genus_Aptenodytes,large penguins
+1033,Apterygidae family_Apterygidae,coextensive with the order Apterygiformes
+1034,Apterygiformes order_Apterygiformes,a ratite bird order: flightless ground birds having vestigial wings and long bills and small eyes: kiwis
+1035,Apus,a constellation in the polar region of the southern hemisphere near Octans
+1036,Apus genus_Apus,type genus
+1037,Aquarius,a zodiacal constellation in the southern hemisphere; between Capricornus and Pisces
+1038,Aquarius Aquarius_the_Water_Bearer Water_Bearer,the eleventh sign of the zodiac; the sun is in this sign from about January 20 to February 18
+1039,Aquarius Water_Bearer,(astrology) a person who is born while the sun is in Aquarius
+1040,Aquifoliaceae family_Aquifoliaceae holly_family,widely distributed shrubs and trees
+1041,Aquila,a constellation in the Milky Way near Cygnus; contains the star Altair
+1042,Aquila L'Aquila Aquila_degli_Abruzzi,the provincial capital of the Abruzzi region in central Italy
+1043,Aquila genus_Aquila,a genus of Accipitridae
+1044,Aquinas Thomas_Aquinas Saint_Thomas St._Thomas Saint_Thomas_Aquinas St._Thomas_Aquinas,(Roman Catholic Church) Italian theologian and Doctor of the Church who is remembered for his attempt to reconcile faith and reason in a comprehensive theology; presented philosophical proofs of the existence of God (1225-1274)
+1045,Aquitaine Aquitania,a region of southwestern France between Bordeaux and the Pyrenees
+1046,Ara,a constellation in the southern hemisphere near Telescopium and Norma
+1047,Ara genus_Ara,macaws
+1048,Arab Arabian,a member of a Semitic people originally from the Arabian peninsula and surrounding territories who speaks Arabic and who inhabits much of the Middle East and northern Africa
+1049,Arab-Israeli_War Six-Day_War Six_Day_War,tension between Arabs and Israeli erupted into a brief war in June 1967; Israel emerged as a major power in the Middle East
+1050,Arab-Israeli_War Yom_Kippur_War,Egypt and Syria attacked Israel in October 1973 (on Yom Kippur); Israel counterattacked and drove the Syrians back and crossed the Suez Canal into Egypt
+1051,Arab_League,an international organization of independent Arab states formed in 1945 to promote cultural and economic and military and political and social cooperation
+1052,Arabian Arab,a spirited graceful and intelligent riding horse native to Arabia
+1053,Arabian_Desert Eastern_Desert,a desert in Egypt between the Nile River and the Red Sea
+1054,Arabian_Desert Great_Arabian_Desert,a desert on the Arabian Peninsula in southwestern Asia
+1055,Arabian_Nights'_Entertainment Arabian_Nights Thousand_and_One_Nights,a collection of folktales in Arabic dating from the 10th century
+1056,Arabian_Peninsula Arabia,a peninsula between the Red Sea and the Persian Gulf; strategically important for its oil resources
+1057,Arabian_Sea,a northwestern arm of the Indian Ocean between India and Arabia
+1058,Arabian_camel dromedary Camelus_dromedarius,one-humped camel of the hot deserts of northern Africa and southwestern Asia
+1059,Arabian_coffee Coffea_arabica,shrubby tree of northeastern tropical Africa widely cultivated in tropical or near tropical regions for its seed which form most of the commercial coffee
+1060,Arabian_jasmine Jasminum_sambac,East Indian evergreen vine cultivated for its profuse fragrant white flowers
+1061,Arabic Arabic_language,the Semitic language of the Arabs; spoken in a variety of dialects
+1062,Arabic_alphabet,the alphabet of 28 characters derived from Aramaic and used for writing Arabic languages (and borrowed for writing Urdu)
+1063,Arabic_numeral Hindu_numeral Hindu-Arabic_numeral,one of the symbols 1,2,3,4,5,6,7,8,9,0
+1064,Arabidopsis genus_Arabidopsis,a genus of the mustard family having white or yellow or purplish flowers; closely related to genus Arabis
+1065,Arabidopsis_lyrata,a small noninvasive cross-pollinating plant with white flowers; closely related to Arabidopsis thaliana
+1066,Arabidopsis_thaliana mouse-ear_cress,a small invasive self-pollinating weed with small white flowers; much studied by plant geneticists; the first higher plant whose complete genome sequence was described
+1067,Arabis genus_Arabis,annual to perennial woody herbs of temperate North America, Europe and Asia: rockcress
+1068,Arabist,a scholar who specializes in Arab languages and culture
+1069,Araceae family_Araceae arum_family,anthurium; calla lily; jack-in-the-pulpit; philodendron
+1070,Arachis genus_Arachis,a genus of plants with pods that ripen underground (see peanut)
+1071,Arachnida class_Arachnida,a large class of arthropods including spiders and ticks and scorpions and daddy longlegs; have four pairs of walking legs and no wings
+1072,Arafat Yasser_Arafat,Palestinian statesman who was chairman of the Palestine Liberation Organization (1929-2004)
+1073,Arafura_Sea,a part of the western Pacific Ocean to the north of Australia and to the south of New Guinea and the eastern islands of Indonesia
+1074,Aragon,a region of northeastern Spain; a former kingdom that united with Castile in 1479 to form Spain (after the marriage of Ferdinand V and Isabella I)
+1075,Aragon Louis_Aragon,French writer who generalized surrealism to literature (1897-1982)
+1076,Araguaia Araguaia_River Araguaya Araguaya_River,a river in central Brazil that flows generally northward (with many falls) to join the Tocantins River
+1077,Arales order_Arales,Araceae; Lemnaceae
+1078,Araliaceae family_Araliaceae ivy_family,mostly tropical trees and shrubs and lianas: genera Panax and Hedera
+1079,Aram,the biblical name for ancient Syria
+1080,Aramaic,a Semitic language originally of the ancient Arameans but still spoken by other people in southwestern Asia
+1081,Aramaic Aramaic_script,an alphabetical (or perhaps syllabic) script used since the 9th century BC to write the Aramaic language; many other scripts were subsequently derived from it
+1082,Aramean Aramaean,a member of one of a group of Semitic peoples inhabiting Aram and parts of Mesopotamia from the 11th to the 8th century BC
+1083,Aramus genus_Aramus,genus of large brown long-billed wading birds found in warm swampy regions of the western hemisphere: courlan; limpkin
+1084,Aran_Islands,three small islands belonging to Ireland at the entrance to Galway Bay
+1085,Aranea genus_Aranea Araneus genus_Araneus,a genus of orb-weaving spiders including common garden spiders and barn spiders
+1086,Araneae order_Araneae Araneida order_Araneida,spiders
+1087,Aranyaka,a treatise resembling a Brahmana but to be read or expounded by anchorites in the quiet of the forest
+1088,Arapaho Arapahoe,a member of a tribe of Plains Indians formerly inhabiting eastern Colorado and Wyoming (now living in Oklahoma and Wyoming)
+1089,Arapaho Arapahoe,the Algonquian language spoken by the Arapaho
+1090,Ararat Mount_Ararat Mt._Ararat,the mountain peak that Noah's ark landed on as the waters of the great flood receded
+1091,Aras Araxes,a river that rises in northeastern Turkey (near the source of the Euphrates) and flows generally eastward through Armenia to the Caspian Sea; ancient name was Araxes
+1092,Arauca,a river that rises in northern Colombia and flows generally eastward to the Orinoco in central Venezuela
+1093,Araucariaceae family_Araucariaceae araucaria_family,tall evergreen cone-bearing trees of South America and Australia with broad leathery leaves; in some classifications included in the Pinaceae
+1094,Araujia genus_Araujia,small genus of South American evergreen vines
+1095,Arawak Arawakan,a member of a widespread group of Amerindians living in northeastern South America
+1096,Arawak Arawakan,a family of South American Indian languages spoken in northeastern South America
+1097,Arawn,Celtic deity who was the lord of Annwfn (the other world or the land of fairies)
+1098,Arbor_Day,a day designated for planting trees
+1099,Arca genus_Arca,type genus of the family Arcidae: ark shells and blood clams
+1100,Arcadia,a department of Greece in the central Peloponnese
+1101,Arcadian,an inhabitant of Arcadia
+1102,Arcadic Arcadic_dialect,the dialect of Ancient Greek spoken by Arcadians
+1103,Arcellidae family_Arcellidae,soil and freshwater protozoa; cosmopolitan in distribution
+1104,Arceuthobium genus_Arceuthobium,genus of chiefly American plants parasitic on conifers
+1105,Archaeornithes subclass_Archaeornithes,primitive reptile-like fossil birds of the Jurassic or early Cretaceous
+1106,Archean Archean_eon Archean_aeon Archeozoic Archaeozoic Archeozoic_eon Archaeozoic_aeon,the time from 3,800 million years to 2,500 million years ago; earth's crust formed; unicellular organisms are earliest forms of life
+1107,Arches_National_Park,a national park in Utah including mountains and the Colorado River gorge and huge rock formations caused by erosion
+1108,Archiannelida class_Archiannelida,a class of Annelida
+1109,Archidiskidon genus_Archidiskidon,a genus of Elephantidae
+1110,Archilochus genus_Archilochus,a genus of Trochilidae
+1111,Archilochus_colubris,a kind of hummingbird
+1112,Archimedes,Greek mathematician and physicist noted for his work in hydrostatics and mechanics and geometry (287-212 BC)
+1113,Archimedes'_principle law_of_Archimedes,(hydrostatics) the apparent loss in weight of a body immersed in a fluid is equal to the weight of the displaced fluid
+1114,Archosargus genus_Archosargus,a genus of Sparidae
+1115,Archosauria subclass_Archosauria,a large subclass of diapsid reptiles including: crocodiles; alligators; dinosaurs; pterosaurs; plesiosaurs; ichthyosaurs; thecodonts
+1116,Arcidae family_Arcidae,ark shells
+1117,Arctic Arctic_Zone North_Frigid_Zone,the regions to the north of the Arctic Circle centered on the North Pole
+1118,Arctic_Archipelago,all the islands that lie to the north of mainland Canada and the Arctic Circle
+1119,Arctic_Circle,a line of latitude near but to the south of the north pole; it marks the northernmost point at which the sun is visible on the northern winter solstice and the southernmost point at which the midnight sun can be seen on the northern summer solstice
+1120,Arctic_Ocean,ice covered waters surrounding the North Pole; mostly covered with solid ice or with ice floes and icebergs
+1121,Arctic_char Salvelinus_alpinus,small trout of northern waters; landlocked populations in Quebec and northern New England
+1122,Arctic_fox white_fox Alopex_lagopus,thickly-furred fox of Arctic regions; brownish in summer and white in winter
+1123,Arctic_ground_squirrel parka_squirrel Citellus_parryi,large ground squirrel of the North American far north
+1124,Arctictis genus_Arctictis,binturongs
+1125,Arctiidae family_Arctiidae,tiger moths
+1126,Arctium genus_Arctium,burdock
+1127,Arctocebus genus_Arctocebus,a genus of Lorisidae
+1128,Arctocephalus genus_Arctocephalus,fur seals
+1129,Arctonyx genus_Arctonyx,a genus of Mustelidae
+1130,Arctostaphylos genus_Arctostaphylos,bearberry; manzanita
+1131,Arctotis genus_Arctotis,herbs and subshrubs: African daisy
+1132,Arcturus,the 4th brightest star and the brightest star in the constellation Bootes; 36 light-years from Earth
+1133,Ardea genus_Ardea,type genus of the Ardeidae: large New and Old World herons
+1134,Ardeidae family_Ardeidae,herons; egrets; night herons; bitterns
+1135,Ardennes,a wooded plateau in the Champagne-Ardenne region of France; the site of intense fighting in World War I and World War II
+1136,Ardisia genus_Ardisia,tropical evergreen subshrubs (some climbers) to trees of Asia and Australasia to Americas
+1137,Arecidae subclass_Arecidae,one of four subclasses or superorder of Monocotyledones; comprises about 6400 species in 5 families of trees and shrubs and terrestrial herbs and a few free-floating aquatics including: Palmae; Araceae; Pandanaceae and Lemnaceae
+1138,Arenaria genus_Arenaria,sandworts
+1139,Arenaria genus_Arenaria,turnstones
+1140,Arenaviridae,a family of arborviruses carried by arthropods
+1141,Arendt Hannah_Arendt,United States historian and political philosopher (born in Germany) (1906-1975)
+1142,Arenga genus_Arenga,a genus of tropical Asian and Malaysian palm trees
+1143,Areopagite,a member of the council of the Areopagus
+1144,Areopagus,a hill to the to the west of the Athenian acropolis where met the highest governmental council of ancient Athens and later a judicial court
+1145,Areopagus,the highest governmental assembly in ancient Athens (later a judicial court)
+1146,Arequipa,a city in southern Peru founded in 1540 on the site of an ancient Inca city
+1147,Ares,(Greek mythology) Greek god of war; son of Zeus and Hera; identified with Roman Mars
+1148,Argasidae family_Argasidae,soft ticks
+1149,Argentina Argentine_Republic,a republic in southern South America; second largest country in South America
+1150,Argentina genus_Argentina,type genus of the Argentinidae: argentines
+1151,Argentine_hemorrhagic_fever,hemorrhagic fever with neurological signs; caused by the Junin virus
+1152,Argentine_monetary_unit,monetary unit in Argentina
+1153,Argentinian,a native or inhabitant of Argentina
+1154,Argentinidae family_Argentinidae,small marine soft-finned fishes with long silvery bodies; related to salmons and trouts
+1155,Argiope genus_Argiope,the type genus of Argiopidae; small genus of orb-weaving spiders
+1156,Argiopidae family_Argiopidae orb-weaver,spiders that spin orb webs; cosmopolitan in distribution
+1157,Argive,a native or inhabitant of the city of Argos
+1158,Argo,formerly a large constellation in the southern hemisphere between Canis Major and the Southern Cross; now divided into Carina and Pyxis and Puppis and Vela
+1159,Argonaut,(Greek mythology) one of the heroes who sailed with Jason in search of the Golden Fleece
+1160,Argonauta genus_Argonauta,type genus of the family Argonautidae: paper nautilus
+1161,Argonautidae family_Argonautidae,represented solely by the genus Argonauta
+1162,Argos,an ancient city in southeastern Greece; dominated the Peloponnese in the 7th century BC
+1163,Argun Argun_River Ergun_He,a river in eastern Asia that arises in China and flows northeast along the border between China and Russia to become a tributary of the Amur River
+1164,Argus,(Greek mythology) a giant with 100 eyes; was guardian of the heifer Io and was slain by Hermes
+1165,Argusianus genus_Argusianus,argus pheasants
+1166,Argynnis genus_Argynnis,fritillaries
+1167,Argyranthemum genus_Argyranthemum,comprises plants often included in the genus Chrysanthemum
+1168,Argyreia genus_Argyreia,woody climbers of tropical Asia to Australia
+1169,Argyrotaenia genus_Argyrotaenia,orange tortrix
+1170,Argyroxiphium genus_Argyroxiphium,small genus of Hawaiian spreading and rosette-forming shrubs
+1171,Arhat Arhant lohan,a Buddhist who has attained nirvana
+1172,Arhus Aarhus,port city of Denmark in eastern Jutland
+1173,Ariadne,beautiful daughter of Minos and Pasiphae; she fell in love with Theseus and gave him the thread with which he found his way out of the Minotaur's labyrinth
+1174,Ariana,city in Tunisia
+1175,Arianism,heretical doctrine taught by Arius that asserted the radical primacy of the Father over the Son
+1176,Arianrhod Arianrod,Celtic goddess famous for her beauty; mother of Dylan
+1177,Aries,a small zodiacal constellation in the northern hemisphere; between Pisces and Taurus
+1178,Aries Aries_the_Ram Ram,the first sign of the zodiac which the sun enters at the vernal equinox; the sun is in this sign from about March 21 to April 19
+1179,Aries Ram,(astrology) a person who is born while the sun is in Aries
+1180,Ariidae family_Ariidae,sea catfishes
+1181,Arikara Aricara,a member of the Caddo people who formerly lived in the Dakotas west of the Missouri river
+1182,Arikara Aricara,the Caddoan language spoken by the Arikara
+1183,Arilus genus_Arilus,a genus of Reduviidae
+1184,Ariocarpus genus_Ariocarpus,slow-growing geophytic cacti; northern and eastern Mexico; southern Texas
+1185,Ariomma genus_Ariomma,a genus of Stromateidae
+1186,Arisaema genus_Arisaema,tuberous or rhizomatous herbaceous perennials
+1187,Arisarum genus_Arisarum,tuberous or rhizomatous perennial herbs; mainly Mediterranean area
+1188,Aristarchus,an ancient Greek grammarian remembered for his commentary on the Iliad and Odyssey (circa 217-145 BC)
+1189,Aristarchus,a bright crater on the Moon
+1190,Aristarchus_of_Samos,an ancient Greek astronomer who was one of the first to propose a heliocentric theory of the universe (circa 270 BC)
+1191,Aristolochia genus_Aristolochia,birthworts; Dutchman's-pipe
+1192,Aristolochiaceae family_Aristolochiaceae birthwort_family,family of birthworts (including wild ginger)
+1193,Aristolochiales order_Aristolochiales,order of plants distinguished by tubular petaloid perianth and inferior ovary
+1194,Aristophanes,an ancient Greek dramatist remembered for his comedies (448-380 BC)
+1195,Aristotelia genus_Aristotelia,small genus of shrubs or small trees of Australia and New Zealand and western South America
+1196,Aristotelian Aristotelean Peripatetic,a follower of Aristotle or an adherent of Aristotelianism
+1197,Aristotelian_logic,the syllogistic logic of Aristotle as developed by Boethius in the Middle Ages
+1198,Aristotelianism peripateticism,(philosophy) the philosophy of Aristotle that deals with logic and metaphysics and ethics and poetics and politics and natural science; "Aristotelianism profoundly influenced Western thought"
+1199,Aristotle,one of the greatest of the ancient Athenian philosophers; pupil of Plato; teacher of Alexander the Great (384-322 BC)
+1200,Arius,a Greek who was a Christian theologian active in Alexandria and who was declared a heretic for his doctrines about God (which came to be known as Arianism) (256?-336)
+1201,Arius genus_Arius,type genus of the Ariidae: sea catfishes
+1202,Arizona Grand_Canyon_State AZ,a state in southwestern United States; site of the Grand Canyon
+1203,Arizona genus_Arizona,glossy snake
+1204,Arizona_ash Fraxinus_velutina,small shrubby ash of southwestern United States and northwestern Mexico
+1205,Arizona_cypress Cupressus_arizonica,Arizona timber tree with bluish silvery foliage
+1206,Arizona_sycamore Platanus_wrightii,medium-sized tree of Arizona and adjacent regions having deeply lobed leaves and collective fruits in groups of 3 to 5
+1207,Arizona_white_oak Quercus_arizonica,semi-evergreen shrub or small tree of Arizona and New Mexico having acorns with hemispherical cups
+1208,Arizonan Arizonian,a native or resident of Arizona
+1209,Arjuna,(Hindu mythology) the warrior prince in the Bhagavad-Gita to whom Krishna explains the nature of being and of God and how humans can come to know God
+1210,Ark Ark_of_the_Covenant,(Judaism) sacred chest where the ancient Hebrews kept the two tablets containing the Ten Commandments
+1211,Arkansan Arkansawyer,a native or resident of Arkansas
+1212,Arkansas Arkansas_River,a river that rises in the Rocky Mountains in Colorado and flows southeast through Kansas and Oklahoma and through Arkansas to become a tributary of the Mississippi River
+1213,Arkansas Land_of_Opportunity AR Ark.,a state in south central United States; one of the Confederate states during the American Civil War
+1214,Arkansas_kingbird western_kingbird,a kingbird seen in western United States; head and back are pale grey and the breast is yellowish and the tail is black
+1215,Arlington,a city in northern Texas between Dallas and Fort Worth
+1216,Armadillidiidae family_Armadillidiidae,pill bugs
+1217,Armadillidium genus_Armadillidium,type genus of the Armadillidiidae
+1218,Armageddon,(New Testament) the scene of the final battle between the kings of the Earth at the end of the world
+1219,Armageddon,any catastrophically destructive battle; "they called the first World War an Armageddon"
+1220,Armagnac,dry brandy distilled in the Armagnac district of France
+1221,Armata_Corsa Corsican_Army,a terrorist organization founded in 1999 to oppose the link between nationalists and the Corsican mafia; "the attacks of Armata Corsa are aimed at symbolic targets of colonialism in Corsica"
+1222,Armed_Forces_Day,the 3rd Saturday in May
+1223,Armed_Islamic_Group GIA,a terrorist organization of Islamic extremists whose violent activities began in 1992; aims to overthrow the secular Algerian regime and replace it with an Islamic state; "the GIA has embarked on a terrorist campaign of civilian massacres"
+1224,Armenia Republic_of_Armenia Hayastan,a landlocked republic in southwestern Asia; formerly an Asian soviet; modern Armenia is but a fragment of ancient Armenia which was one of the world's oldest civilizations; throughout 2500 years the Armenian people have been invaded and oppressed by their neighbors
+1225,Armenian,a native or inhabitant of Armenia
+1226,Armenian Armenian_alphabet,a writing system having an alphabet of 38 letters in which the Armenian language is written
+1227,Armenian Armenian_language,the Indo-European language spoken predominantly in Armenia, but also in Azerbaijan
+1228,Armenian_Church Armenian_Apostolic_Orthodox_Church,an independent Christian church established in Armenia since 300; was influenced by both Roman and Byzantine traditions
+1229,Armenian_Secret_Army_for_the_Liberation_of_Armenia ASALA Orly_Group 3rd_October_Organization,a militant Marxist-Leninist terrorist organization formed in 1975 to force Turkey to acknowledge killing more than a million Armenians and forcibly removing them from border areas in 1915; wants Turkey to pay reparations and cede territory to Armenia; "ASALA bombing at Orly Airport in Paris in 1983 killed 8 and wounded 55 people"
+1230,Armenian_monetary_unit,monetary unit in Armenia
+1231,Armeria genus_Armeria,shrubby or herbaceous low-growing evergreen perennials
+1232,Armillaria genus_Armillaria,genus of edible mushrooms having white spores an annulus and blue juice; some are edible; some cause root rot
+1233,Armillaria_caligata booted_armillaria,fungus with a brown cap and white gills and a membranous ring halfway up the stalk
+1234,Armillaria_ponderosa white_matsutake,a large white mushroom that develops brown stains as it ages; gills are white; odor is spicy and aromatic; collected commercially for oriental cooking the Pacific Northwest
+1235,Armillaria_zelleri,a large fungus with viscid cap that dries and turns brown with age; gills are off-white
+1236,Armillariella genus_Armillariella,a honey-colored diminutive form of genus Armillaria; grows in clusters; edible (when cooked) but most attention has been on how to get rid of it
+1237,Arminian,adherent of Arminianism
+1238,Arminian_Baptist General_Baptist,group of Baptist congregations believing the teachings of the Dutch theologian Jacobus Arminius (who opposed the doctrine of strict predestination of the Calvinists)
+1239,Arminian_Church,the Protestant denomination adhering to the views of Jacobus Arminius
+1240,Arminianism,17th century theology (named after its founder Jacobus Arminius) that opposes the absolute predestinarianism of John Calvin and holds that human free will is compatible with God's sovereignty
+1241,Arminius Armin Hermann,German hero; leader at the battle of Teutoburger Wald in AD 9 (circa 18 BC - AD 19)
+1242,Arminius Jacobus_Arminius Jacob_Harmensen Jakob_Hermandszoon,Dutch Protestant theologian who founded Arminianism which opposed the absolute predestinarianism of John Calvin (1559-1609)
+1243,Armoracia genus_Armoracia,horseradish
+1244,Armstrong Louis_Armstrong Satchmo,United States pioneering jazz trumpeter and bandleader (1900-1971)
+1245,Armstrong Neil_Armstrong,United States astronaut; the first man to set foot on the Moon (July 20, 1969) (1930-)
+1246,Army_High_Performance_Computing_Research_Center AHPCRC,a United States defense laboratory to conduct research in high-performance computing for defense technology applications; a partnership of government and university and industry
+1247,Army_Intelligence AI,an agency of the United States Army responsible for providing timely and relevant and accurate and synchronized intelligence to tactical and operational and strategic level commanders
+1248,Army_National_Guard ARNG,a civilian reserve component of the United States Army comprised of guardsmen who serve during overseas peacekeeping missions and during local emergencies
+1249,Army_for_the_Liberation_of_Rwanda ALIR Former_Armed_Forces FAR Interahamwe,a terrorist organization that seeks to overthrow the government dominated by Tutsi and to institute Hutu control again; "in 1999 ALIR guerrillas kidnapped and killed eight foreign tourists"
+1250,Arnhem,a city in the central Netherlands on the lower Rhine River; site of a battle in 1944 during World War II
+1251,Arnica_montana,herb of pasture and open woodland throughout most of Europe and western Asia having orange-yellow daisylike flower heads that when dried are used as a stimulant and to treat bruises and swellings
+1252,Arno Arno_River River_Arno,a river in central Italy rising in the Apennines and flowing through Florence and Pisa to the Ligurian Sea
+1253,Arnold Benedict_Arnold,United States general and traitor in the American Revolution; in 1780 his plan to surrender West Point to the British was foiled (1741-1801)
+1254,Arnold Matthew_Arnold,English poet and literary critic (1822-1888)
+1255,Arnold-Chiari_deformity,deformity in which part of the brain protrudes through the skull
+1256,Arnold_of_Brescia,Italian theologian who censured the worldly possessions of monks and the temporal power of bishops and was condemned for dogmatic errors by the Second Lateran Council (early 12th century)
+1257,Arnoseris genus_Arnoseris,lamb succory
+1258,Arp Jean_Arp Hans_Arp,Alsatian artist and poet who was cofounder of dadaism in Zurich; noted for abstract organic sculptures (1887-1966)
+1259,Arrhenatherum genus_Arrhenatherum,oat grass
+1260,Arrhenius Svante_August_Arrhenius,Swedish chemist and physicist noted for his theory of chemical dissociation (1859-1927)
+1261,Artamidae family_Artamidae,wood swallows
+1262,Artamus genus_Artamus,type genus of the Artamidae
+1263,Artaxerxes_I Artaxerxes,king of Persia who sanctioned the practice of Judaism in Jerusalem (?-424 BC)
+1264,Artaxerxes_II Artaxerxes,king of Persia who subdued numerous revolutions and made peace with Sparta (?-359 BC)
+1265,Artemia genus_Artemia Chirocephalus genus_Chirocephalus,fairy shrimp; brine shrimp
+1266,Artemis Cynthia,(Greek mythology) the virgin goddess of the hunt and the Moon; daughter of Leto and twin sister of Apollo; identified with Roman Diana
+1267,Artemision_at_Ephesus,the large temple of the Greek goddess Artemis which was begun at Ephesus in 541 BC and completed 220 years later; the temple was destroyed by the Goths in 262
+1268,Arthropoda phylum_Arthropoda,jointed-foot invertebrates: arachnids; crustaceans; insects; millipedes; centipedes
+1269,Arthropteris genus_Arthropteris,tropical and subtropical Old World epiphytic or lithophytic ferns
+1270,Arthur Chester_A._Arthur Chester_Alan_Arthur President_Arthur,elected vice president and became 21st President of the United States when Garfield was assassinated (1830-1886)
+1271,Arthur King_Arthur,a legendary king of the Britons (possibly based on a historical figure in the 6th century but the story has been retold too many times to be sure); said to have led the Knights of the Round Table at Camelot
+1272,Arthurian_legend,the legend of King Arthur and his court at Camelot
+1273,Articles_of_Confederation,a written agreement ratified in 1781 by the thirteen original states; it provided a legal symbol of their union by giving the central government no coercive power over the states or their citizens
+1274,Artiodactyla order_Artiodactyla,an order of hooved mammals of the subclass Eutheria (including pigs and peccaries and hippopotami and members of the suborder Ruminantia) having an even number of functional toes
+1275,Artocarpus genus_Artocarpus,evergreen Asiatic trees now grown through the tropics: breadfruit; jackfruit
+1276,Artois,a former province of northern France near the English Channel (between Picardy and Flanders)
+1277,Aruba,a popular island resort in the Netherlands Antilles
+1278,Arulo,an artificial language intended for international use as an auxiliary language
+1279,Arundinaria genus_Arundinaria,North American bamboo
+1280,Arundo genus_Arundo,any of several coarse tall perennial grasses of most warm areas: reeds
+1281,Aruru,mother and earth goddess in Gilgamish epic; identified with Sumerian Ki and Ninkhursag
+1282,Arvicola genus_Arvicola,in some classifications considered synonymous with Microtus
+1283,Aryan,(according to Nazi doctrine) a Caucasian person of Nordic descent (and not a Jew)
+1284,Aryan Indo-European,a member of the prehistoric people who spoke Proto-Indo European
+1285,Asahikawa,a city on western Hokkaido that is the center of a fertile agricultural area
+1286,Asama Mount_Asama,a volcano in central Honshu near Nagano; one of the largest volcanoes in Japan (8,340 feet)
+1287,Asanga,Indian religious leader and founder of the Yogacara school of Buddhism in India (4th century)
+1288,Asarh Asadha,the fourth month of the Hindu calendar
+1289,Asarum genus_Asarum,wild ginger
+1290,Asbat_al-Ansar Band_of_Partisans,an extremist Palestinian Sunni group active in Lebanon in the early 1990s that advocates Salafism; responsible for murders and bombings; seeks to overthrow the Lebanese government and control Palestinian refugee camps; funded by al-Qaeda
+1291,Ascaphidae family_Ascaphidae,family of one species of frog: tailed frog
+1292,Ascaphus genus_Ascaphus,type genus of the Ascaphidae; in some classifications included in the family Leiopelmatidae
+1293,Ascaridae family_Ascaridae,large roundworms parasitic in intestines of vertebrates
+1294,Ascaridia genus_Ascaridia,roundworm having a preanal sucker
+1295,Ascaris genus_Ascaris,type genus of the family Ascaridae: roundworms with a three-lipped mouth
+1296,Ascension Ascension_Day Ascension_of_the_Lord,(Christianity) celebration of the Ascension of Christ into heaven; observed on the 40th day after Easter
+1297,Ascension Ascension_of_Christ,(New Testament) the rising of the body of Jesus into heaven on the 40th day after his Resurrection
+1298,Asch Sholem_Asch Shalom_Asch Sholom_Asch,United States writer (born in Poland) who wrote in Yiddish (1880-1957)
+1299,Ascidiaceae class_Ascidiaceae,sometimes classified as an order: sea squirts
+1300,Asclepiadaceae family_Asclepiadaceae milkweed_family,widely distributed family of herbs and shrubs of the order Gentianales; most with milky juice
+1301,Asclepias genus_Asclepias,genus of chiefly North American perennial herbs: silkweed; milkweed
+1302,Ascomycetes class_Ascomycetes,large class of higher fungi coextensive with division Ascomycota: sac fungi
+1303,Ascomycota subdivision_Ascomycota Ascomycotina subdivision_Ascomycotina,a large subdivision of Eumycota including Hemiascomycetes and Plectomycetes and Pyrenomycetes and Discomycetes; sac fungi; in some classification systems considered a division of the kingdom Fungi
+1304,Ascophyllum genus_Ascophyllum,brown algae distinguished by compressed or inflated branchlets along the axis
+1305,Asgard,(Norse mythology) the heavenly dwelling of the Norse gods (the Aesir) and slain war heroes
+1306,Ash_Can Ashcan_school,early 20th-century United States painting; portrays realistic and sordid scenes of city life
+1307,Ash_Wednesday,the 7th Wednesday before Easter; the first day of Lent; the day following Mardi Gras (`Fat Tuesday'); a day of fasting and repentance
+1308,Ashcan_School Eight,a group of United States painters founded in 1907 and noted for their realistic depictions of sordid aspects of city life
+1309,Ashe Arthur_Ashe Arthur_Robert_Ashe,United States tennis player who was the first Black to win United States and English singles championships (1943-1993)
+1310,Asheville,a town in western North Carolina in the Blue Ridge Mountains to the west of Charlotte
+1311,Ashkenazi,a Jew of eastern European or German descent
+1312,Ashkhabad capital_of_Turkmenistan,the capital and largest city of Turkmenistan
+1313,Ashton Sir_Frederick_Ashton,British choreographer (1906-1988)
+1314,Ashur Ashir,chief god of the Assyrians; god of military prowess and empire; identified with Babylonian Anshar
+1315,Ashurbanipal Assurbanipal Asurbanipal,king of Assyria who built a magnificent palace and library at Nineveh (668-627 BC)
+1316,Asia,the largest continent with 60% of the earth's population; it is joined to Europe on the west to form Eurasia; it is the site of some of the world's earliest civilizations
+1317,Asia,the nations of the Asian continent collectively
+1318,Asia_Minor Anatolia,a peninsula in southwestern Asia that forms the Asian part of Turkey
+1319,Asian Asiatic,a native or inhabitant of Asia
+1320,Asian_American,an American who is of Asian descent
+1321,Asian_Russia,the Russia that is part of Asia
+1322,Asian_black_grouse Lyrurus_mlokosiewiczi,a black grouse of western Asia
+1323,Asian_coral_snake,of India
+1324,Asian_country Asian_nation,any one of the nations occupying the Asian continent
+1325,Asian_crocodile Crocodylus_porosus,estuarine crocodile of eastern Asia and Pacific islands
+1326,Asian_horseshoe_crab,horseshoe crab of the coast of eastern Asia
+1327,Asian_influenza Asiatic_flu,influenza caused by the Asian virus that was first isolated in 1957
+1328,Asian_longhorned_beetle Anoplophora_glabripennis,a beetle from China that has been found in the United States and is a threat to hardwood trees; lives inside the tree; no natural predators in the United States
+1329,Asian_tiger_mosquito Aedes_albopictus,striped native of Japan thriving in southwestern and midwestern United States and spreading to the Caribbean; potential carrier of serious diseases
+1330,Asian_wild_ox,genus of Asiatic wild oxen
+1331,Asiatic_black_bear black_bear Ursus_thibetanus Selenarctos_thibetanus,bear with a black coat living in central and eastern Asia
+1332,Asiatic_flying_squirrel,nocturnal rodent of Asia having furry folds of skin between forelegs and hind legs enabling it to move by gliding leaps
+1333,Asiatic_shrew_mole Uropsilus_soricipes,shrew mole of eastern Asia
+1334,Asiatic_sweetleaf sapphire_berry Symplocus_paniculata,deciduous shrub of eastern Asia bearing decorative bright blue fruit
+1335,Asilidae family_Asilidae,robber flies
+1336,Asimina genus_Asimina,pawpaw
+1337,Asimov Isaac_Asimov,United States writer (born in Russia) noted for his science fiction (1920-1992)
+1338,Asin Asvina,the seventh month of the Hindu calendar
+1339,Asio genus_Asio,a genus of European owls
+1340,Ask_Jeeves,a widely used search engine accepting plain English questions or phrases or terms
+1341,Asmara Asmera,the capital of Eritrea
+1342,Aspalathus genus_Aspalathus,genus of South African heathlike shrubs
+1343,Asparagaceae family_Asparagaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae: includes genera Asparagus and sometimes Ruscus
+1344,Asperger's_syndrome,a psychiatric disorder usually noted during early school years; characterized by impaired social relations and by repetitive patterns of behavior
+1345,Aspergillaceae family_Aspergillaceae,family of fungi including some common molds
+1346,Aspergillus genus_Aspergillus,genus of common molds causing food spoilage and some pathogenic to plants and animals
+1347,Aspergillus_fumigatus,a mold causing aspergillosis in birds and man
+1348,Asperula genus_Asperula,woodruff
+1349,Asphodelaceae family_Asphodelaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae
+1350,Asphodeline genus_Asphodeline,genus of rhizomatous perennial or biennial herbs with numerous sometimes fragrant flowers in long cylindrical racemes; Mediterranean region to Caucasus; sometimes placed in family Asphodelaceae
+1351,Asphodelus genus_Asphodelus,small genus of tall striking annuals or perennials with grasslike foliage and flowers in dense racemes or panicles; Mediterranean to Himalayas; sometimes placed in family Asphodelaceae
+1352,Aspidelaps genus_Aspidelaps,African coral snakes
+1353,Aspidiotus genus_Aspidiotus,a genus of Diaspididae
+1354,Aspidophoroides genus_Aspidophoroides,alligatorfishes
+1355,Aspleniaceae family_Aspleniaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems; includes genera Asplenium, Pleurosorus, Schaffneria
+1356,Asplenium genus_Asplenium,in some classification systems placed in family Polypodiaceae
+1357,Assam,state in northeastern India
+1358,Assamese,native or inhabitant of the state of Assam in northeastern India
+1359,Assamese Asamiya,the Magadhan language spoken by the Assamese people; closely related to Bengali
+1360,Assault,thoroughbred that won the triple crown in 1946
+1361,Assemblies_of_God,a charismatic Protestant denomination in the United States
+1362,Associate_in_Applied_Science AAS,an associate degree in applied science
+1363,Associate_in_Arts AA,an associate degree in arts
+1364,Associate_in_Nursing AN,an associate degree in nursing
+1365,Association_for_the_Advancement_of_Retired_Persons AARP,an association of people to promote the welfare of senior citizens
+1366,Association_of_Southeast_Asian_Nations ASEAN,an association of nations dedicated to economic and political cooperation in southeastern Asia and who joined with the United States to fight against global terrorism
+1367,Assumption,(Christianity) the taking up of the body and soul of the Virgin Mary when her earthly life had ended
+1368,Assumption Assumption_of_Mary August_15,celebration in the Roman Catholic Church of the Virgin Mary's being taken up into heaven when her earthly life ended; corresponds to the Dormition in the Eastern Orthodox Church
+1369,Assur Asur Ashur,an ancient Assyrian city on the Tigris and traditional capital of Assyria; just to the south of the modern city of Mosul in Iraq
+1370,Assyria,an ancient kingdom in northern Mesopotamia which is in present-day Iraq
+1371,Assyrian,an inhabitant of ancient Assyria
+1372,Assyrian_Akkadian Assyrian,an extinct language of the Assyrians in ancient Mesopotamia
+1373,Assyrian_Neo-Aramaic Assyrian,the language of modern Iraq
+1374,Assyriology,archeology of the ancient Assyrians
+1375,Astacidae family_Astacidae Astacura,crayfish
+1376,Astacus genus_Astacus,type genus of the family Astacidae; Old World crayfish
+1377,Astaire Fred_Astaire,United States dancer and cinema actor noted for his original and graceful tap dancing (1899-1987)
+1378,Astana Akmola capital_of_Kazakhstan,remote city of Kazakhstan that (ostensibly for security reasons) was made the capital in 1998
+1379,Astarte Ashtoreth,an ancient Phoenician goddess of love and fertility; the Phoenician counterpart to Ishtar
+1380,Asteridae subclass_Asteridae,a group of mostly sympetalous herbs and some trees and shrubs mostly with 2 fused carpels; contains 43 families including Campanulales; Solanaceae; Scrophulariaceae; Labiatae; Verbenaceae; Rubiaceae; Compositae; sometimes classified as a superorder
+1381,Asteroidea class_Asteroidea,sea stars
+1382,Astor John_Jacob_Astor,United States capitalist (born in Germany) who made a fortune in fur trading (1763-1848)
+1383,Astor Nancy_Witcher_Astor Viscountess_Astor,British politician (born in the United States) who was the first woman to sit in the British House of Commons (1879-1964)
+1384,Astragalus genus_Astragalus,large genus of annual or perennial herbs or shrubs of north temperate regions; largest genus in the family Leguminosae
+1385,Astrakhan,a city in southwestern Russia on the delta of the Volga River
+1386,Astreus genus_Astreus,a genus of fungi belonging to the family Geastraceae
+1387,Astreus_hygrometricus,a common species of earthstar widely distributed in sandy soil; the gleba is a pale tan
+1388,Astreus_pteridis,the largest earthstar; the fruiting body can measure 15 cm across when the rays are expanded
+1389,Astroloma genus_Astroloma,evergreen shrubs of Australia and Tasmania
+1390,Astronium genus_Astronium,a genus of dicotyledonous plants of the family Anacardiaceae
+1391,Astronomical_Unit AU,a unit of length used for distances within the solar system; equal to the mean distance between the Earth and the Sun (approximately 93 million miles or 150 million kilometers)
+1392,Astrophyton genus_Astrophyton,includes many of the basket stars
+1393,Astrophyton_muricatum,a variety of basket star
+1394,Astropogon genus_Astropogon,a genus of fish of the family Apogonidae
+1395,Asuncion capital_of_Paraguay,the capital and chief port of Paraguay
+1396,Asura,earlier a god; later a demon; counterpart of Zoroastrian Ahura
+1397,Asvins,(literally `possessing horses' in Sanskrit) in Hinduism the twin chariot warriors conveying Surya
+1398,Aswan Assuan Assouan,an ancient city on the Nile in Egypt; two dams across the Nile have been built nearby
+1399,Aswan_High_Dam High_Dam,one of the world's largest dams on the Nile River in southern Egypt
+1400,Atacama_Desert,a desert in western Chile that extends roughly 600 miles south from the Peruvian border; one of the driest areas in the world, but rich in nitrate and copper deposits
+1401,Atacama_Trench,a depression in the floor of the Pacific Ocean off the coast of Chile
+1402,Atakapa Atakapan Attacapa Attacapan,a language spoken by the Atakapa of the Gulf Coast of Louisiana and Texas
+1403,Atakapa Attacapan,a member of an Indian people formerly living along the Gulf Coast of Louisiana and Texas
+1404,Ataturk Kemal_Ataturk Kemal_Pasha Mustafa_Kemal,Turkish statesman who abolished the caliphate and founded Turkey as a modern secular state (1881-1938)
+1405,Ate,goddess of criminal rashness and its punishment
+1406,Ateles genus_Ateles,spider monkeys
+1407,Aten Aton,the sun (or solar disc) which was the deity of a monotheistic cult under the Pharaoh Akhenaten
+1408,Athanasian_Creed,a Christian profession of faith
+1409,Athanasianism,the theological doctrine taught by Athanasius that Christ the Son is of the same substance as God the Father
+1410,Athanasius Saint_Athanasius St._Athanasius Athanasius_the_Great,(Roman Catholic Church) Greek patriarch of Alexandria who championed Christian orthodoxy against Arianism; a church father, saint, and Doctor of the Church (293-373)
+1411,Athapaskan Athapascan Athabaskan Athabascan,a member of any of the North American Indian groups speaking an Athapaskan language and living in the subarctic regions of western Canada and central Alaska
+1412,Athapaskan Athapascan Athabaskan Athabascan Athapaskan_language,a group of Amerindian languages (the name coined by an American anthropologist, Edward Sapir)
+1413,Atharva-Veda,a collection of mantras and formulas
+1414,Athelstan,the first Saxon ruler who extended his kingdom to include nearly all of England (895-939)
+1415,Athena Athene Pallas Pallas_Athena Pallas_Athene,(Greek mythology) goddess of wisdom and useful arts and prudent warfare; guardian of Athens; identified with Roman Minerva
+1416,Athene genus_Athene,a genus of Strigidae
+1417,Athenian,a resident of Athens
+1418,Athens,a town in southeast Ohio
+1419,Athens,a university town in northeast Georgia
+1420,Athens Athinai capital_of_Greece Greek_capital,the capital and largest city of Greece; named after Athena (its patron goddess); "in the 5th century BC ancient Athens was the world's most powerful and civilized city"
+1421,Atherinidae family_Atherinidae,small spiny-finned fishes of both salt and fresh water
+1422,Atherinopsis genus_Atherinopsis,a genus of Atherinidae
+1423,Atherurus genus_Atherurus,a genus of Hystricidae
+1424,Athiorhodaceae family_Athiorhodaceae,small motile sulphur bacteria
+1425,Athos Mount_Athos,an autonomous area in northeastern Greece that is the site of several Greek Orthodox monasteries founded in the tenth century
+1426,Athrotaxis genus_Athrotaxis,a genus of gymnosperm
+1427,Athyrium genus_Athyrium,temperate and tropical lady ferns; in some classifications placed in family Polypodiaceae or in the genus Asplenium
+1428,Atlanta battle_of_Atlanta,a siege in which Federal troops under Sherman cut off the railroads supplying the city and then burned it; 1864
+1429,Atlanta capital_of_Georgia,state capital and largest city of Georgia; chief commercial center of the southeastern United States; was plundered and burned by Sherman's army during the American Civil War
+1430,Atlantic Atlantic_Ocean,the 2nd largest ocean; separates North and South America on the west from Europe and Africa on the east
+1431,Atlantic_City,a city on the Atlantic shore in southeastern New Jersey; a resort and gambling center
+1432,Atlantic_Coast,a coast of the Atlantic Ocean
+1433,Atlantic_Time Atlantic_Standard_Time,standard time in the 4th time zone west of Greenwich, reckoned at the 60th meridian; used in Puerto Rico and the Virgin Islands and Bermuda and the Canadian Maritime Provinces
+1434,Atlantic_bottlenose_dolphin Tursiops_truncatus,the most common dolphin of northern Atlantic and Mediterranean; often kept captive and trained to perform
+1435,Atlantic_cod Gadus_morhua,one of the world's most important commercial fishes
+1436,Atlantic_croaker Micropogonias_undulatus,a silvery-bodied croaker with dark markings and tiny barbels
+1437,Atlantic_halibut Hippoglossus_hippoglossus,largest United States flatfish
+1438,Atlantic_herring Clupea_harengus_harengus,important food fish; found in enormous shoals in the northern Atlantic
+1439,Atlantic_manta Manta_birostris,largest manta (to 22 feet across wings); found worldwide but common in Gulf of Mexico and along southern coasts of United States; primarily oceanic
+1440,Atlantic_puffin Fratercula_arctica,common puffin of the northern Atlantic
+1441,Atlantic_ridley bastard_ridley bastard_turtle Lepidochelys_kempii,grey sea turtle of the Atlantic and Gulf Coasts of North America
+1442,Atlantic_sailfish Istiophorus_albicans,a kind of sailfish
+1443,Atlantic_salmon,fatty pink flesh of fish from northern coastal Atlantic; usually marketed fresh
+1444,Atlantic_salmon Salmo_salar,found in northern coastal Atlantic waters or tributaries; adults do not die after spawning
+1445,Atlantic_sea_bream Archosargus_rhomboidalis,sea bream of warm Atlantic waters
+1446,Atlantic_spiny_dogfish Squalus_acanthias,destructive dogfish of the Atlantic coastal waters of America and Europe; widely used in anatomy classes
+1447,Atlantic_tripletail Lobotes_surinamensis,tripletail found from Cape Cod to northern South America
+1448,Atlantic_walrus Odobenus_rosmarus,a walrus of northern Atlantic and Arctic waters
+1449,Atlantis,according to legend, an island in the Atlantic Ocean that Plato said was swallowed by an earthquake
+1450,Atlas,(Greek mythology) a Titan who was forced by Zeus to bear the sky on his shoulders
+1451,Atlas_Mountains,a mountain range in northern Africa between the Mediterranean and the Sahara Desert; extends from southwestern Morocco to northern Tunisia
+1452,Atlas_cedar Cedrus_atlantica,tall Algerian evergreen of Atlas mountains with blue-green leaves; widely planted as an ornamental
+1453,Atomic_Energy_Commission AEC,a former executive agency (from 1946 to 1974) that was responsible for research into atomic energy and its peacetime uses in the United States
+1454,Atreus,(Greek mythology) the king of Mycenae and father of Agamemnon and of Menelaus
+1455,Atrichornis genus_Atrichornis,type genus of the Atrichornithidae
+1456,Atrichornithidae family_Atrichornithidae,scrubbirds
+1457,Atriplex genus_Atriplex,orach; saltbush
+1458,Atropa genus_Atropa,belladonna
+1459,Atropidae family_Atropidae,booklice
+1460,Atropos,the Greek goddess of fate who cuts the thread of life
+1461,Atsugewi,a member of a North American Indian people of northern California
+1462,Atsugewi,the Shastan language spoken by the Atsugewi
+1463,Attalea genus_Attalea,unarmed feather palms of central and northern South America
+1464,Attic Ionic Ionic_dialect Classical_Greek,the dialect of Ancient Greek spoken and written in Attica and Athens and Ionia
+1465,Attica,the territory of Athens in ancient Greece where the Ionic dialect was spoken
+1466,Atticus genus_Atticus,atlas moth
+1467,Attila Attila_the_Hun Scourge_of_God Scourge_of_the_Gods,king of the Huns; the most successful barbarian invader of the Roman Empire (406-453)
+1468,Attlee Clement_Attlee Clement_Richard_Attlee 1st_Earl_Attlee,British statesman and leader of the Labour Party who instituted the welfare state in Britain (1883-1967)
+1469,Attorney_General Attorney_General_of_the_United_States,the position of the head of the Justice Department and the chief law enforcement officer of the United States; "the post of Attorney General was created in 1789"
+1470,Attorney_General United_States_Attorney_General US_Attorney_General,the person who holds the position of secretary of the Justice Department; "Edmund Randolph was the first Attorney General, appointed by President Washington"
+1471,Auchincloss Louis_Auchincloss Louis_Stanton_Auchincloss,United States writer (born in 1917)
+1472,Auckland,the largest city and principal port of New Zealand
+1473,Aucuba genus_Aucuba,hardy evergreen dioecious shrubs and small trees from Japan
+1474,Auden W._H._Auden Wystan_Hugh_Auden,United States poet (born in England) (1907-1973)
+1475,Audubon John_James_Audubon,United States ornithologist and artist (born in Haiti) noted for his paintings of birds of America (1785-1851)
+1476,Audubon's_caracara Polyborus_cheriway_audubonii,widespread from southern United States to Central America; rusty black with black-and-white breast and tail
+1477,Audubon's_warbler Audubon_warbler Dendroica_auduboni,common warbler of western North America
+1478,Augean_stables,(Greek mythology) the extremely dirty stables that were finally cleaned by Hercules who diverted two rivers through them
+1479,Augeas,(Greek mythology) the mythical Greek king who for 30 years did not clean his stables which contained his vast herd of cattle
+1480,Augsburg_Confession,the document drawn up in 1555 to defend the catholicity of Lutheran doctrine and to justify innovations in Lutheran practice; is still in effect today
+1481,August Aug,the month following July and preceding September
+1482,Augusta,a city in eastern Georgia north-northwest of Savannah; noted for golf tournaments
+1483,Augusta capital_of_Maine,the capital of the state of Maine
+1484,Augustine Saint_Augustine St._Augustine Augustine_of_Hippo,(Roman Catholic Church) one of the great Fathers of the early Christian church; after a dramatic conversion to Christianity he became bishop of Hippo Regius in North Africa; St. Augustine emphasized man's need for grace (354-430)
+1485,Augustinian,a Roman Catholic friar or monk belonging to one of the Augustinian monastic orders
+1486,Augustinian_Canons,an Augustinian monastic order
+1487,Augustinian_Hermits,a monastic order of friars established in 1256 by the Pope
+1488,Augustinian_order,any of several monastic orders observing a rule derived from the writings of St. Augustine
+1489,Augustus Gaius_Octavianus Gaius_Julius_Caesar_Octavianus Octavian,Roman statesman who established the Roman Empire and became emperor in 27 BC; defeated Mark Antony and Cleopatra in 31 BC at Actium (63 BC - AD 14)
+1490,Aulacorhyncus genus_Aulacorhyncus,a genus of Ramphastidae
+1491,Aulostomidae family_Aulostomidae,trumpetfishes
+1492,Aulostomus genus_Aulostomus,type genus of the Aulostomidae
+1493,Aum_Shinrikyo Aum Supreme_Truth,a terrorist organization whose goal is to take over Japan and then the world; based on a religion founded in 1987 that combines elements of Buddhism with Christianity; "in 1995 Aum members released deadly sarin gas on a Tokyo subway train"
+1494,Aureolaria genus_Aureolaria,small genus of North American herbs often root-parasitic and bearing golden-yellow flowers; sometimes placed in genus Gerardia
+1495,Auricularia genus_Auricularia,type genus of the Auriculariaceae
+1496,Auriculariaceae family_Auriculariaceae,fungi having gelatinous sporophores
+1497,Auriculariales order_Auriculariales,coextensive with the family Auriculariaceae; sometimes included in the order Tremellales
+1498,Auriga Charioteer,a conspicuous constellation in the northern hemisphere; between Great Bear and Orion at edge of Milky Way
+1499,Auriparus genus_Auriparus,a genus of Paridae
+1500,Aurora,(Roman mythology) goddess of the dawn; counterpart of Greek Eos
+1501,Auschwitz,a Nazi concentration camp for Jews in southwestern Poland during World War II
+1502,Austen Jane_Austen,English novelist noted for her insightful portrayals of middle-class families (1775-1817)
+1503,Austerlitz,a town in Czech Republic; site of the battle of Austerlitz in 1805
+1504,Austerlitz battle_of_Austerlitz,a decisive battle during the Napoleonic campaigns (1805); the French under Napoleon defeated the Russian armies of Czar Alexander I and the Austrian armies of Emperor Francis II
+1505,Austin capital_of_Texas,state capital of Texas on the Colorado River; site of the University of Texas
+1506,Austin_Friar,one of the Roman Catholic hermits of Saint Augustine
+1507,Austin_Friars,an Augustinian monastic order
+1508,Australasia,Australia, New Zealand, and neighboring islands in the South Pacific
+1509,Australia,the smallest continent; between the South Pacific and the Indian Ocean
+1510,Australia Commonwealth_of_Australia,a nation occupying the whole of the Australian continent; Aboriginal tribes are thought to have migrated from southeastern Asia 20,000 years ago; first Europeans were British convicts sent there as a penal colony
+1511,Australian Aboriginal_Australian,the Austronesian languages spoken by Australian aborigines
+1512,Australian Aussie,a native or inhabitant of Australia
+1513,Australian_Alps,a range of mountains in Australia that forms the southern end of the Great Dividing Range
+1514,Australian_Desert Great_Australian_Desert,general name given to all desert areas in Australia
+1515,Australian_Labor_Party,the oldest political party in Australia, founded in 1891; the party is moderately liberal
+1516,Australian_arowana Dawson_River_salmon saratoga spotted_barramundi spotted_bonytongue Scleropages_leichardti,a species of large fish found in Australian rivers
+1517,Australian_blacksnake Pseudechis_porphyriacus,large semiaquatic snake of Australia; black above with red belly
+1518,Australian_bonytongue northern_barramundi Scleropages_jardinii,a species of large fish found in Australian rivers
+1519,Australian_cockroach Periplaneta_australasiae,widely distributed in warm countries
+1520,Australian_coral_snake Rhynchoelaps_australis,small venomous but harmless snake marked with black-and-white on red
+1521,Australian_dollar,the basic unit of money in Australia and Nauru
+1522,Australian_grass_tree Richea_dracophylla,stout Australian shrub with narrow leaves crowded at ends of branches and terminal clusters of white or pink flowers
+1523,Australian_hare's_foot Davallia_pyxidata,a hare's-foot fern of the genus Davallia
+1524,Australian_heath,any heathlike plant of the family Epacridaceae; most are of the Australian region
+1525,Australian_lungfish Queensland_lungfish Neoceratodus_forsteri,an endangered species of lungfish found in rivers in Queensland
+1526,Australian_magpie,black-and-white oscine birds that resemble magpies
+1527,Australian_nettle Australian_nettle_tree,any of several tall Australian trees of the genus Laportea
+1528,Australian_pea Dipogon_lignosus Dolichos_lignosus,South African evergreen partly woody vine grown for its clusters of rosy purple flowers followed by edible pods like snap beans; also grown as green manure; sometimes placed in genus Dolichos
+1529,Australian_pine Casuarina_equisetfolia,common Australian tree widely grown as an ornamental in tropical regions; yields heavy hard red wood
+1530,Australian_pitcher_plant Cephalotus_follicularis,a carnivorous perennial herb having a green pitcher and hinged lid both with red edges; western Australia
+1531,Australian_reed_grass Calamagrostic_quadriseta,tall Australian reedlike grass sometimes used for hay
+1532,Australian_sea_lion Zalophus_lobatus,a variety of sea lion found in Australia
+1533,Australian_state,one of the several states constituting Australia
+1534,Australian_sumac Rhodosphaera_rhodanthema Rhus_rhodanthema,evergreen of Australia yielding a dark yellow wood
+1535,Australian_terrier,small greyish wire-haired breed of terrier from Australia similar to the cairn
+1536,Australian_turtledove turtledove Stictopelia_cuneata,small Australian dove
+1537,Australopithecus_afarensis,fossils found in Ethiopia; from 3.5 to 4 million years ago
+1538,Australopithecus_africanus,gracile hominid of southern Africa; from about 3 million years ago
+1539,Australopithecus_boisei,large-toothed hominid of eastern Africa; from 1 to 2 million years ago
+1540,Australopithecus_robustus,large-toothed hominid of southern Africa; from 1.5 to 2 million years ago; formerly Paranthropus
+1541,Austria Republic_of_Austria Oesterreich,a mountainous republic in central Europe; under the Habsburgs (1278-1918) Austria maintained control of the Holy Roman Empire and was a leader in European politics until the 19th century
+1542,Austria-Hungary,a geographical area in central and eastern Europe; broken into separate countries at the end of World War I
+1543,Austrian,a native or inhabitant of Austria
+1544,Austrian_monetary_unit,monetary unit in Austria
+1545,Austro-Asiatic Austro-Asiatic_language Munda-Mon-Khmer,a family of languages spoken in southern and southeastern Asia
+1546,Austrocedrus genus_Austrocedrus,one species; formerly included in genus Libocedrus
+1547,Austronesia,islands of central and South Pacific (Indonesia and Melanesia and Micronesia and Polynesia)
+1548,Austronesian,a native or inhabitant of Austronesia
+1549,Austronesian Austronesian_language,the family of languages spoken in Australia and Formosa and Malaysia and Polynesia
+1550,Austrotaxus genus_Austrotaxus,a gymnosperm genus having one species: New Caledonian yew
+1551,Authorized_Version King_James_Version King_James_Bible,an English translation of the Bible published in 1611
+1552,Automeris genus_Automeris,io moth
+1553,Auvergne,a region in central France
+1554,Avahi genus_Avahi,a genus of Indriidae
+1555,Avalokitesvara Avalokiteshvara,a male Bodhisattva; widely associated with various gods and people
+1556,Ave_Maria Hail_Mary,a salutation to the Virgin Mary now used in prayers to her
+1557,Avena genus_Avena,oats
+1558,Averrhoa genus_Averrhoa,trees native to East Indies having pinnate leaves: carambolas
+1559,Averroes ibn-Roshd Abul-Walid_Mohammed_ibn-Ahmad_Ibn-Mohammed_ibn-Roshd,Arabian philosopher born in Spain; wrote detailed commentaries on Aristotle that were admired by the Schoolmen (1126-1198)
+1560,Aves class_Aves,(ornithology) the class of birds
+1561,Avesta Zend-Avesta,a collection of Zoroastrian texts gathered during the 4th or 6th centuries
+1562,Avestan,the script in which the ancient Persian language of the Avesta is written
+1563,Avestan Zend,an ancient Iranian language
+1564,Avicenna ibn-Sina Abu_Ali_al-Husain_ibn_Abdallah_ibn_Sina,Persian physician and influential philosopher; his interpretation of Aristotle influenced St. Thomas Aquinas; writings on medicine were important for almost 500 years (980-1037)
+1565,Avicennia genus_Avicennia,small genus of tropical shrubs or trees
+1566,Avicenniaceae family_Avicenniaceae,used in some classifications: coextensive with the genus Avicennia
+1567,Avignon,a town in southeastern France on the Rhone River; the seat of the papacy from 1309 to 1378 and the residence of antipopes during the Great Schism
+1568,Avogadro Amedeo_Avogadro,Italian physicist noted for his work on gases; proposed what has come to be called Avogadro's law (1776-1856)
+1569,Avogadro's_law Avogadro's_hypothesis,the principle that equal volumes of all gases (given the same temperature and pressure) contain equal numbers of molecules
+1570,Avogadro's_number Avogadro_number,the number of molecules in a mole of a substance (approximately 602,250,000,000,000,000,000,000)
+1571,Avon,a county in southwestern England
+1572,Avon River_Avon,a river in southwestern England rising in Gloucestershire and flowing through Bristol to empty into the estuary of the Severn
+1573,Avon River_Avon Upper_Avon Upper_Avon_River,a river in central England that flows through Stratford-on-Avon and empties into the Severn
+1574,Axis,in World War II the alliance of Germany and Italy in 1936 which later included Japan and other nations; "the Axis opposed the Allies in World War II"
+1575,Ayr,a port in southwestern Scotland
+1576,Ayrshire,hardy breed of dairy cattle from Ayr, Scotland
+1577,Aythya genus_Aythya,canvasback; redhead; pochard; etc.
+1578,Ayurveda,(Sanskrit) an ancient medical treatise summarizing the Hindu art of healing and prolonging life; sometimes regarded as a 5th Veda
+1579,Az_Zarqa Zarqa,city in northwestern Jordan
+1580,Azadirachta genus_Azadirachta,genus of large important East Indian trees: neem trees
+1581,Azerbaijan Azerbaijani_Republic Azerbajdzhan Azerbajdzhan_Republic,a landlocked republic in southwestern Asia; formerly an Asian soviet
+1582,Azerbaijani,a native or inhabitant of Azerbaijan
+1583,Azerbaijani,the Turkic language spoken by the Azerbaijani
+1584,Azerbaijani_monetary_unit,monetary unit in Azerbaijan
+1585,Azeri,an ethnic group living in Azerbaijan
+1586,Azolla genus_Azolla,a genus of fern sometimes placed in its own family Azollaceae
+1587,Azollaceae family_Azollaceae,used in some classifications for the genus Azolla
+1588,Azores Acores,islands in the Atlantic Ocean belonging to Portugal; "the Azores are strategically located on transatlantic air and shipping routes"
+1589,Aztec,a member of the Nahuatl people who established an empire in Mexico that was overthrown by Cortes in 1519
+1590,Aztecan,the Uto-Aztecan language spoken by the Aztec
+1591,B b,the 2nd letter of the Roman alphabet
+1592,B type_B group_B,the blood group whose red cells carry the B antigen
+1593,B-52,United States military aircraft; B- stands for bomber
+1594,B-complex_vitamin B_complex vitamin_B_complex vitamin_B B_vitamin B,originally thought to be a single vitamin but now separated into several B vitamins
+1595,B-flat_clarinet licorice_stick,the ordinary clarinet with a middle range
+1596,B-girl bar_girl,a woman employed by a bar to act as a companion to men customers
+1597,B-horizon B_horizon,immediately below the A-horizon; contains deposits of organic matter leached from surface soils
+1598,B-scan_ultrasonography,the use of ultrasonography to view structure in the back of the eye
+1599,BASIC,a popular programming language that is relatively easy to learn; an acronym for beginner's all-purpose symbolic instruction code; no longer in general use
+1600,BB BB_shot,a small pellet fired from an air rifle or BB gun
+1601,BB_gun,an air gun in which BBs are propelled by compressed air
+1602,BVD BVD's,trademark for men's underwear
+1603,B_battery,battery for supplying a constant positive voltage to the plate of a vacuum tube
+1604,B_cell B_lymphocyte,a lymphocyte derived from bone marrow that provides humoral immunity; it recognizes free antigen molecules in solution and matures into plasma cells that secrete immunoglobulin (antibodies) that inactivate the antigens
+1605,Baader_Meinhof_Gang Baader-Meinhof_Gang,a radical left-wing revolutionary terrorist group active in Germany from 1968 until 1977
+1606,Baal,any of numerous local fertility and nature deities worshipped by ancient Semitic peoples; the Hebrews considered Baal a false god
+1607,Babar,an imaginary elephant that appears in a series of French books for children
+1608,Babbitt_metal babbitt,an alloy of tin with some copper and antimony; a lining for bearings that reduces friction
+1609,Babesiidae family_Babesiidae,piroplasms and cattle pathogens
+1610,Babinski Babinski_reflex Babinski_sign,extension upward of the toes when the sole of the foot is stroked firmly on the outer side from the heel to the front; normal in infants under the age of two years but a sign of brain or spinal cord injury in older persons
+1611,Babylon,the chief city of ancient Mesopotamia and capital of the ancient kingdom of Babylonia
+1612,Babylonia Chaldaea Chaldea,an ancient kingdom in southern Mesopotamia; Babylonia conquered Israel in the 6th century BC and exiled the Jews to Babylon (where Daniel became a counselor to the king)
+1613,Babylonian,an inhabitant of ancient Babylon
+1614,Babylonian,the ideographic and syllabic writing system in which the ancient Babylonian language was written
+1615,Babylonian_Captivity,the deportation of the Jews to Babylonia by Nebuchadnezzar in 586 BC
+1616,Babyrousa genus_Babyrousa,a genus of Suidae
+1617,Baccharis genus_Baccharis,shrubs of western hemisphere often having honey-scented flowers followed by silky thistlelike heads of tiny fruits; often used for erosion control
+1618,Bacchus,(classical mythology) god of wine; equivalent of Dionysus
+1619,Bach,the music of Bach; "he played Bach on the organ"
+1620,Bach Johann_Sebastian_Bach,German baroque organist and contrapuntist; composed mostly keyboard music; one of the greatest creators of western music (1685-1750)
+1621,Bachelor_of_Arts BA Artium_Baccalaurens AB,a bachelor's degree in arts and sciences
+1622,Bachelor_of_Arts_in_Library_Science ABLS,a bachelor's degree in library science
+1623,Bachelor_of_Arts_in_Nursing BAN,a bachelor's degree in nursing
+1624,Bachelor_of_Divinity BD,a bachelor's degree in religion
+1625,Bachelor_of_Laws LLB,a three-year law degree
+1626,Bachelor_of_Literature BLitt,a bachelor's degree in literature
+1627,Bachelor_of_Medicine MB,(a British degree) a bachelor's degree in medicine
+1628,Bachelor_of_Music BMus,a bachelor's degree in music
+1629,Bachelor_of_Naval_Science BNS,a bachelor's degree in naval science
+1630,Bachelor_of_Science BS SB,a bachelor's degree in science
+1631,Bachelor_of_Science_in_Architecture BSArch,a bachelor's degree in architecture
+1632,Bachelor_of_Science_in_Engineering,a bachelor's degree in engineering
+1633,Bachelor_of_Theology ThB,a bachelor's degree in theology
+1634,Bacillaceae family_Bacillaceae,typically rod-shaped usually Gram-positive bacteria that produce endospores
+1635,Bacillariophyceae class_Bacillariophyceae Diatomophyceae class_Diatomophyceae,marine and freshwater eukaryotic algae: diatoms
+1636,Bacillus_anthracis anthrax_bacillus,a species of bacillus that causes anthrax in humans and in animals (cattle and swine and sheep and rabbits and mice and guinea pigs); can be used a bioweapon
+1637,Bacillus_subtilis Bacillus_globigii grass_bacillus hay_bacillus,a species of bacillus found in soil and decomposing organic matter; some strains produce antibiotics
+1638,Bacon Francis_Bacon Sir_Francis_Bacon Baron_Verulam 1st_Baron_Verulam Viscount_St._Albans,English statesman and philosopher; precursor of British empiricism; advocated inductive reasoning (1561-1626)
+1639,Bacon Roger_Bacon,English scientist and Franciscan monk who stressed the importance of experimentation; first showed that air is required for combustion and first used lenses to correct vision (1220-1292)
+1640,Bacteroidaceae family_Bacteroidaceae,family of bacteria living usually in the alimentary canal or on mucous surfaces of warm-blooded animals; sometimes associated with acute infective processes
+1641,Bacteroides genus_Bacteroides,type genus of Bacteroidaceae; genus of Gram-negative rodlike anaerobic bacteria producing no endospores and no pigment and living in the gut of man and animals
+1642,Bactrian_camel Camelus_bactrianus,two-humped camel of the cold deserts of central Asia
+1643,Bad_Lands Badlands,an eroded and barren region in southwestern South Dakota and northwestern Nebraska
+1644,Badaga,a member of an agricultural people of southern India
+1645,Badaga,the dialect of Kannada that is spoken by the Badaga
+1646,Bade,a Chadic language spoken in northern Nigeria
+1647,Badlands_National_Park,a national park in South Dakota having multicolored peaks and spires resulting from erosion; fossil sites
+1648,Baedeker Karl_Baedeker,German publisher of a series of travel guidebooks (1801-1859)
+1649,Baffin_Bay,a body of water between Greenland and northeastern Canada; connected with the Arctic Ocean to the north and with the Atlantic Ocean (via the Labrador Sea) to the south; icebound in winter
+1650,Baffin_Island,the 5th largest island and the largest island of Arctic Canada; lies between Greenland and Hudson Bay
+1651,Baghdad Bagdad capital_of_Iraq,capital and largest city of Iraq; located on the Tigris River; "Baghdad is one of the great cities of the Muslim world"
+1652,Bahai,a teacher of or believer in Bahaism
+1653,Bahaism,a religion founded in Iran in 1863; emphasizes the spiritual unity of all humankind; incorporates Christian and Islamic tenets; many adherents live in the United States; "Bahaism has no public rituals or sacraments and praying is done in private"
+1654,Bahamas Commonwealth_of_the_Bahamas Bahama_Islands,island country in the Atlantic to the east of Florida and Cuba; a popular winter resort
+1655,Bahamian,a native or inhabitant of the Bahamas
+1656,Bahamian_dollar,the basic unit of money in the Bahamas
+1657,Bahia_Blanca,a port city in eastern Argentina to the southwest of Buenos Aires on an inlet of the Atlantic Ocean
+1658,Bahia_grass Paspalum_notatum,perennial tropical American grass used as pasture grass in arid areas of the Gulf States
+1659,Bahrain Bahrain_Island Bahrein Bahrein_Island,an island in the Persian Gulf
+1660,Bahrain State_of_Bahrain Bahrein,an island country in the Persian Gulf off the coast of Saudi Arabia; oil revenues funded progressive programs until reserves were exhausted in 1970s
+1661,Bahrain_dinar dinar,the basic unit of money in Bahrain; equal to 1,000 fils
+1662,Bahraini Bahreini,a native or inhabitant of Bahrain
+1663,Bahrainian_monetary_unit,monetary unit in Bahrain
+1664,Bai Baic,the Tibeto-Burman language spoken in the Dali region of Yunnan
+1665,Baikal Lake_Baikal Baykal Lake_Baykal,the largest freshwater lake in Asia or Europe and the deepest lake in the world
+1666,Bailey Nathan_Bailey Nathaniel_Bailey,English lexicographer who was the first to treat etymology consistently; his work was used as a reference by Samuel Johnson (died in 1742)
+1667,Bailey Pearl_Bailey Pearl_Mae_Bailey,United States singer (1918-1990)
+1668,Bailey_bridge,a temporary bridge designed for rapid construction
+1669,Baiomys genus_Baiomys,pygmy mice
+1670,Bairava,epithet of Siva; "the terrible Bairava"
+1671,Bairdiella genus_Bairdiella,drumfish
+1672,Baisakh Vaisakha,the second month of the Hindu calendar
+1673,Bakelite,a thermosetting plastic used as electric insulators and for making plastic ware and telephone receivers etc.
+1674,Bakersfield,a city in south central California at the southern end of the San Joaquin Valley
+1675,Bakke_decision,a ruling by the Supreme Court on affirmative action; the Court ruled in 1978 that medical schools are entitled to consider race as a factor in their admission policy
+1676,Baku capital_of_Azerbaijan,a port city on the Caspian Sea that is the capital of Azerbaijan and an important center for oil production
+1677,Bakunin Mikhail_Bakunin Mikhail_Aleksandrovich_Bakunin,Russian anarchist; ally and later opponent of Karl Marx (1814-1876)
+1678,Balaena genus_Balaena,type genus of the Balaenidae: Greenland whales
+1679,Balaeniceps genus_Balaeniceps,type genus of the Balaenicipitidae: shoebills
+1680,Balaenicipitidae family_Balaenicipitidae,shoebills
+1681,Balaenidae family_Balaenidae,right whales
+1682,Balaenoptera genus_Balaenoptera,type genus of the Balaenopteridae
+1683,Balaenopteridae family_Balaenopteridae,rorquals; blue whales
+1684,Balanchine George_Balanchine,United States dancer and choreographer (born in Russia) noted for his abstract and formal works (1904-1983)
+1685,Balanidae family_Balanidae,stalkless barnacles
+1686,Balanus genus_Balanus,type genus of the family Balanidae
+1687,Balarama,elder brother of Krishna; an incarnation of Vishnu
+1688,Balaton Lake_Balaton Plattensee,a large shallow lake in western Hungary
+1689,Balboa Vasco_Nunez_de_Balboa,Spanish explorer who in 1513 crossed the Isthmus of Darien and became the first European to see the eastern shores of the Pacific Ocean (1475-1519)
+1690,Balder Baldr,(Norse mythology) god of light and peace and noted for his beauty and sweet nature; son of Odin and Frigg and husband of Nanna; killed by Hoth
+1691,Baldwin,an American eating apple with red or yellow and red skin
+1692,Baldwin James_Baldwin James_Arthur_Baldwin,United States author who was an outspoken critic of racism (1924-1987)
+1693,Baldwin Stanley_Baldwin 1st_Earl_Baldwin_of_Bewdley,English statesman; member of the Conservative Party (1867-1947)
+1694,Balearic_Islands,an archipelago in the western Mediterranean off the eastern coast of Spain
+1695,Balenciaga Cristobal_Balenciaga,Spanish fashion designer known for his stark elegant designs (1895-1972)
+1696,Balfour Arthur_James_Balfour 1st_Earl_of_Balfour,English statesman; member of the Conservative Party (1848-1930)
+1697,Bali,an island in Indonesia to the east of Java; striking volcanic scenery; culture is known for elaborate dances and rituals and for handicrafts
+1698,Balinese,the Indonesian language of the people of Bali
+1699,Balistes genus_Balistes,type genus of the Balistidae
+1700,Balistidae family_Balistidae,triggerfishes
+1701,Balkan,an inhabitant of the Balkan Peninsula
+1702,Balkan_Peninsula Balkans,a large peninsula in southeastern Europe containing the Balkan Mountain Range
+1703,Balkan_Wars,two wars (1912-1913) that were fought over the last of the European territories of the Ottoman Empire and that left the area around Constantinople (now Istanbul) as the only Ottoman territory in Europe
+1704,Balkan_country Balkan_nation Balkan_state,any one of the countries on the Balkan Peninsula
+1705,Balkans,the Balkan countries collectively
+1706,Balkans Balkan_Mountains Balkan_Mountain_Range,the major mountain range of Bulgaria and the Balkan Peninsula
+1707,Ball Lucille_Ball,United States comedienne best known as the star of a popular television program (1911-1989)
+1708,Ballistic_Missile_Defense_Organization BMDO,an agency in the Department of Defense that is responsible for making ballistic missile defense a reality
+1709,Ballota genus_Ballota,perennial herbs or subshrubs of especially Mediterranean area: black horehound
+1710,Balmoral bluebonnet,a brimless dark blue Scottish cap with a flat top and a plume on one side
+1711,Balmoral_Castle,a castle in northeastern Scotland that is a private residence of the British sovereign
+1712,Balochi Baluchi,an Iranian language spoken in Pakistan and Iran and Afghanistan and Russia and the Persian gulf
+1713,Balsaminaceae family_Balsaminaceae balsam_family,distinguished from the family Geraniaceae by the irregular flowers
+1714,Balsamorhiza genus_Balsamorhiza,genus of coarse western American herbs with large roots containing an aromatic balsam
+1715,Balthazar Balthasar,(New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus
+1716,Baltic Baltic_Sea,a sea in northern Europe; stronghold of the Russian navy
+1717,Baltic Baltic_language,a branch of the Indo-European family of languages related to the Slavonic languages; Baltic languages have preserved many archaic features that are believed to have existed in Proto-Indo European
+1718,Baltic-Finnic,a group of Finnic languages including Finnish and Estonian
+1719,Baltic_State Baltic_Republic,European countries bordering the Baltic Sea
+1720,Baltimore,the largest city in Maryland; a major seaport and industrial center
+1721,Baltimore_oriole Baltimore_bird hangbird firebird Icterus_galbula_galbula,eastern subspecies of northern oriole
+1722,Balto-Slavic Balto-Slavic_language Balto-Slavonic,a family of Indo-European languages including the Slavic and Baltic languages
+1723,Balzac Honore_Balzac Honore_de_Balzac,French novelist; he portrays the complexity of 19th century French society (1799-1850)
+1724,Bam,an ancient city in southeastern Iran; destroyed by an earthquake in 2003
+1725,Bamako,the capital of Mali; located in the south on the Niger
+1726,Bambusa genus_Bambusa,tall tender clumping bamboos
+1727,Bambuseae tribe_Bambuseae,bamboos
+1728,Band_Aid,trade name for an adhesive bandage to cover small cuts or blisters
+1729,Bandung,a city in Indonesia; located on western Java (southeast of Jakarta); a resort known for its climate
+1730,Banff,a popular vacation spot in the Canadian Rockies
+1731,Bangalore,an industrial city in south central India (west of Chennai)
+1732,Bangiaceae family_Bangiaceae,a family of protoctist
+1733,Bangkok capital_of_Thailand Krung_Thep,the capital and largest city and chief port of Thailand; a leading city in southeastern Asia; noted for Buddhist architecture
+1734,Bangladesh People's_Republic_of_Bangladesh Bangla_Desh East_Pakistan,a Muslim republic in southern Asia bordered by India to the north and west and east and the Bay of Bengal to the south; formerly part of India and then part of Pakistan; it achieved independence in 1971
+1735,Bangladeshi,a native or inhabitant of Bangladesh
+1736,Bangladeshi_monetary_unit,monetary unit in Bangladesh
+1737,Bangor,a town in east central Maine on the Penobscot River
+1738,Bangor,a university town in northwestern Wales on the Menai Strait
+1739,Bangor,a town in southeastern Northern Ireland
+1740,Bangui capital_of_Central_Africa,the capital and largest city of the Central African Republic
+1741,Banjul capital_of_Gambia,a port city and capital of Gambia
+1742,Bank_of_England,the central bank of England and Wales
+1743,Bank_of_Japan,the central bank of Japan
+1744,Bankhead Tallulah_Bankhead,uninhibited United States actress (1903-1968)
+1745,Bankia genus_Bankia,giant shipworms
+1746,Banks Sir_Joseph_Banks,English botanist who accompanied Captain Cook on his first voyage to the Pacific Ocean (1743-1820)
+1747,Bannister Roger_Bannister Sir_Roger_Gilbert_Bannister,English runner who in 1954 became the first person to run a mile in less than four minutes (born in 1929)
+1748,Bannockburn,a battle in which the Scots under Robert the Bruce defeated the English and assured the independence of Scotland
+1749,Banti's_disease Banti's_syndrome,a disease characterized by congestion and enlargement of the spleen; accompanied by anemia or cirrhosis
+1750,Banting F._G._Banting Sir_Frederick_Grant_Banting,Canadian physiologist who discovered insulin with C. H. Best and who used it to treat diabetes(1891-1941)
+1751,Bantu,a member of any of a large number of linguistically related peoples of Central and South Africa
+1752,Bantu Bantoid_language,a family of languages widely spoken in the southern half of the African continent
+1753,Baphia genus_Baphia,small genus of shrubs and lianas and trees of Africa and Madagascar
+1754,Baptisia genus_Baptisia,genus of North American plants with showy flowers and an inflated pod
+1755,Baptist,follower of Baptistic doctrines
+1756,Baptist_Church Baptists,any of various evangelical Protestant churches that believe in the baptism of voluntary believers
+1757,Baptist_denomination,group of Baptist congregations
+1758,Baptistic_doctrine,any of various doctrines closely related to Anabaptism
+1759,Baraka Imamu_Amiri_Baraka LeRoi_Jones,United States writer of poems and plays about racial conflict (born in 1934)
+1760,Barany Robert_Barany,Austrian physician who developed a rotational method for testing the middle ear (1876-1936)
+1761,Barbadian,a native or inhabitant of Barbados
+1762,Barbados,a parliamentary democracy on the island of Barbados; former British colony; a popular resort area
+1763,Barbados,easternmost of the West Indies about 300 miles to the north of Venezuela
+1764,Barbados_dollar,the basic unit of money in Barbados
+1765,Barbados_gooseberry Barbados-gooseberry_vine Pereskia_aculeata,West Indian woody climber with spiny stems and numerous fragrant white flowers in panicles followed by small yellow to orange fruits
+1766,Barbados_gooseberry blade_apple,small yellow to orange fruit of the Barbados gooseberry cactus used in desserts and preserves and jellies
+1767,Barbarea genus_Barbarea,biennial or perennial herbs of north temperate regions: winter cress
+1768,Barbarossa Khayr_ad-Din,Barbary pirate (died in 1546)
+1769,Barbary,a region of northern Africa on the Mediterranean coast between Egypt and Gibraltar; was used as a base for pirates from the 16th to 19th centuries
+1770,Barbary_Coast,a part of a city that is notorious for gambling dens and brothels and saloons and riotous night life (especially the waterfront of San Francisco after the gold rush of 1849); "we'll tolerate no Barbary Coast in this city!"
+1771,Barbary_Coast,the Mediterranean coast of northern Africa that was famous for its Moorish pirates
+1772,Barbary_ape Macaca_sylvana,tailless macaque of rocky cliffs and forests of northwestern Africa and Gibraltar
+1773,Barber Samuel_Barber,United States composer (1910-1981)
+1774,Barberton_daisy Transvaal_daisy Gerbera_jamesonii,widely cultivated South African perennial having flower heads with orange to flame-colored rays
+1775,Barbuda,an island in Antigua and Barbuda
+1776,Barcelona,a city in northeastern Spain on the Mediterranean; 2nd largest Spanish city and the largest port and commercial center; has been a center for radical political beliefs
+1777,Bardeen John_Bardeen,United States physicist who won the Nobel prize for physics twice (1908-1991)
+1778,Barents_Sea,the part of the Arctic Ocean to the north of Norway and Russia
+1779,Bari,capital city of the Apulia region on the Adriatic coast
+1780,Barkley Alben_Barkley Alben_William_Barkley,United States politician and lawyer; vice president of the United States (1877-1956)
+1781,Barnaby's_thistle yellow_star-thistle Centaurea_solstitialis,European weed having a winged stem and hairy leaves; adventive in the eastern United States
+1782,Barnum P._T._Barnum Phineas_Taylor_Barnum,United States showman who popularized the circus (1810-1891)
+1783,Baroque Baroque_era Baroque_period,the historic period from about 1600 until 1750 when the baroque style of art, architecture, and music flourished in Europe
+1784,Barranquilla,a port city of northern Colombia near the Caribbean on the Magdalena River
+1785,Barrie James_Barrie J._M._Barrie James_Matthew_Barrie Sir_James_Matthew_Barrie,Scottish dramatist and novelist; created Peter Pan (1860-1937)
+1786,Barrow's_goldeneye Bucephala_islandica,North American goldeneye diving duck
+1787,Barrymore Ethel_Barrymore,United States actress; daughter of Maurice Barrymore and Georgiana Barrymore (1879-1959)
+1788,Barrymore Georgiana_Barrymore Georgiana_Emma_Barrymore,United States actress; daughter of John Drew and wife of Maurice Barrymore; mother of Ethel Barrymore and John Barrymore and Lionel Barrymore (1854-1893)
+1789,Barrymore John_Barrymore,United States actor; son of Maurice Barrymore and Georgiana Barrymore (1882-1942)
+1790,Barrymore Lionel_Barrymore,United States actor; son of Maurice Barrymore and Georgiana Barrymore (1878-1954)
+1791,Barrymore Maurice_Barrymore Herbert_Blythe,United States actor; husband of Georgiana Emma Barrymore and father of Ethel Barrymore and John Barrymore and Lionel Barrymore (1847-1905)
+1792,Barstow,a town in southeastern California
+1793,Barth John_Barth John_Simmons_Barth,United States novelist (born in 1930)
+1794,Barth Karl_Barth,Swiss Protestant theologian (1886-1968)
+1795,Barthelme Donald_Barthelme,United States author of sometimes surrealistic stories (1931-1989)
+1796,Bartholdi Frederic_Auguste_Bartholdi,French sculptor best known for creating the Statue of Liberty now in New York harbor
+1797,Bartholin Caspar_Bartholin,Danish physician who discovered Bartholin's gland (1585-1629)
+1798,Bartholin's_gland,either of the two posterior vestibular glands that secrete a lubricating mucus; homologous to Cowper's gland in the male
+1799,Bartle_Frere genus_Bartle-Frere green_dinosaur,a living fossil or so-called `green dinosaur'; genus or subfamily of primitive nut-bearing trees thought to have died out 50 million years ago; a single specimen found in 1994 on Mount Bartle Frere in eastern Australia; not yet officially named
+1800,Bartlesville,a town in northeastern Oklahoma
+1801,Bartlett John_Bartlett,United States publisher and editor who compiled a book of familiar quotations (1820-1905)
+1802,Bartlett Robert_Bartlett Robert_Abram_Bartlett Captain_Bob,United States explorer who accompanied Peary's expedition to the North Pole and who led many other Arctic trips (1875-1946)
+1803,Bartok Bela_Bartok,Hungarian composer and pianist who collected Hungarian folk music; in 1940 he moved to the United States (1881-1945)
+1804,Bartram_Juneberry Amelanchier_bartramiana,open-growing shrub of eastern North America having pure white flowers and small waxy almost black fruits
+1805,Bartramia genus_Bartramia,a genus of Scolopacidae
+1806,Baruch,a disciple of and secretary for the prophet Jeremiah
+1807,Baruch Bernard_Baruch Bernard_Mannes_Baruch,economic advisor to United States Presidents (1870-1965)
+1808,Baruch Book_of_Baruch,an Apocryphal book ascribed to Baruch
+1809,Baryshnikov Mikhail_Baryshnikov,Russian dancer and choreographer who migrated to the United States (born in 1948)
+1810,Basel Basle Bale,a city in northwestern Switzerland
+1811,Basic_English,a simplified form of English proposed for use as an auxiliary language for international communication; devised by C. K. Ogden and I. A. Richards
+1812,Basidiomycetes class_Basidiomycetes,large class of higher fungi coextensive with subdivision Basidiomycota
+1813,Basidiomycota subdivision_Basidiomycota Basidiomycotina subdivision_Basidiomycotina,comprises fungi bearing the spores on a basidium; includes Gasteromycetes (puffballs) and Tiliomycetes comprising the orders Ustilaginales (smuts) and Uredinales (rusts) and Hymenomycetes (mushrooms, toadstools, agarics and bracket fungi); in some classification systems considered a division of kingdom Fungi
+1814,Basil St._Basil Basil_of_Caesarea Basil_the_Great St._Basil_the_Great,(Roman Catholic Church) the bishop of Caesarea who defended the Roman Catholic Church against the heresies of the 4th century; a saint and Doctor of the Church (329-379)
+1815,Basilicata Lucania,a region of southern Italy (forming the instep of the Italian `boot')
+1816,Basiliscus genus_Basiliscus,a reptile genus of Iguanidae
+1817,Basket_Maker,early Amerindians related to the Pueblo; known for skill in making baskets
+1818,Basotho,a member of a subgroup of people who inhabit Lesotho
+1819,Basque,a member of a people of unknown origin living in the western Pyrenees in France and Spain
+1820,Basque,the language of the Basque people; of no known relation to any other language
+1821,Basque_Homeland_and_Freedom Basque_Fatherland_and_Liberty Euskadi_ta_Askatasuna ETA,a terrorist organization organized in 1959 by student activists who were dissatisfied with the moderate nationalism of the traditional Basque party; want to create an independent homeland in Spain's western Pyrenees; "in 1968 ETA launched a campaign of political assassinations of government officials"
+1822,Basra Basia,the second largest city in Iraq; an oil port in southern Iraq
+1823,Bassariscidae subfamily_Bassariscidae,in some classifications considered a separate family
+1824,Bassariscus genus_Bassariscus,cacomistles
+1825,Basse-Normandie Lower-Normandy,a division of Normandy
+1826,Basseterre,the capital of Saint Kitts and Nevis on the island of Saint Christopher
+1827,Bassia genus_Bassia Kochia genus_Kochia,summer cypress
+1828,Bast,cat- or lion-headed Egyptian goddess; represents life-giving power of the sun
+1829,Bastille,a fortress built in Paris in the 14th century and used as a prison in the 17th and 18th centuries; it was destroyed July 14, 1789 at the start of the French Revolution
+1830,Bastille_Day 14_July,a legal holiday in France celebrating the storming of the Paris bastille in 1789
+1831,Bata,a Chadic language spoken south of Lake Chad
+1832,Bataan Corregidor,the peninsula and island in the Philippines where Japanese forces besieged American forces in World War II; United States forces surrendered in 1942 and recaptured the area in 1945
+1833,Bath,a town in southwestern England on the River Avon; famous for its hot springs and Roman remains
+1834,Bathsheba,(Old Testament) the wife of Uriah and later the wife of king David; Solomon was her son by David (circa 10th century BC)
+1835,Bathyergidae family_Bathyergidae,mole rats; sand rats
+1836,Bathyergus genus_Bathyergus,mole rats
+1837,Batidaceae family_Batidaceae saltwort_family,family coextensive with genus Batis: saltworts
+1838,Batis genus_Batis,small genus of plants constituting the family Batidaceae: low straggling dioecious shrubs
+1839,Batna,a town in north central Algeria
+1840,Baton_Rouge capital_of_Louisiana,capital of Louisiana
+1841,Baton_Rouge_Bridge,a cantilever bridge across the Mississippi at Baton Rouge
+1842,Batrachoididae family_Batrachoididae,toadfishes; related to anglers and batfishes
+1843,Batrachoseps genus_Batrachoseps,slender salamanders
+1844,Battle_of_Britain,the prolonged bombardment of British cities by the German Luftwaffe during World War II and the aerial combat that accompanied it
+1845,Battle_of_Kerbala,a battle in 680 in which the grandson of Mohammed and his followers were killed; "the Battle of Kerbala is the basis for the Ta'ziyehs that are performed annually"
+1846,Battle_of_Puebla,a battle in which Mexican forces defeated the French in 1862
+1847,Battle_of_Wake Battle_of_Wake_Island,in December 1941 the island was captured by the Japanese after a gallant last-ditch stand by a few hundred United States marines
+1848,Battle_of_the_Ardennes_Bulge Battle_of_the_Bulge Ardennes_counteroffensive,a battle during World War II; in December 1944 von Rundstedt launched a powerful counteroffensive in the forest at Ardennes and caught the Allies by surprise
+1849,Battle_of_the_Marne Belleau_Wood Chateau-Thierry Marne_River,a World War I battle in northwestern France where the Allies defeated the Germans in 1918
+1850,Battle_of_the_Spanish_Armada,in the English Channel a small fleet of British ships successfully defeated the large armada sent from Spain by Philip II to invade England
+1851,Baudelaire Charles_Baudelaire Charles_Pierre_Baudelaire,a French poet noted for macabre imagery and evocative language (1821-1867)
+1852,Bauhaus,a German style of architecture begun by Walter Gropius in 1918
+1853,Bauhinia genus_Bauhinia,mountain ebony, orchid tree
+1854,Baum Frank_Baum Lyman_Frank_Brown,United States writer of children's books (1856-1919)
+1855,Bavaria,a state in southern Germany famous for its beer; site of an automobile factory
+1856,Bavarian,a native or an inhabitant of Bavaria
+1857,Bavarian_blue,blue cheese of Bavaria
+1858,Bavarian_cream,a rich custard set with gelatin
+1859,Bay_Stater,a native or resident of Massachusetts
+1860,Bay_of_Bengal,an arm of the Indian Ocean to the east of India
+1861,Bay_of_Biscay,an arm of the Atlantic Ocean in western Europe; bordered by the west coast of France and the north coast of Spain
+1862,Bay_of_Fundy,a bay of the North Atlantic between New Brunswick and Nova Scotia; noted for rapid tides as great as 70 feet
+1863,Bay_of_Naples,an arm of the Tyrrhenian Sea at Naples
+1864,Bayard Seigneur_de_Bayard Chevalier_de_Bayard Pierre_Terrail Pierre_de_Terrail,French soldier said to be fearless and chivalrous (1473-1524)
+1865,Bayes Thomas_Bayes,English mathematician for whom Bayes' theorem is named (1702-1761)
+1866,Bayes'_postulate,(statistics) the difficulty of applying Bayes' theorem is that the probabilities of the different causes are seldom known, in which case it may be postulated that they are all equal (sometimes known as postulating the equidistribution of ignorance)
+1867,Bayes'_theorem,(statistics) a theorem describing how the conditional probability of a set of possible causes for a given observed event can be computed from knowledge of the probability of each cause and the conditional probability of the outcome of each cause
+1868,Bayonne,a city in northeastern New Jersey
+1869,Bayonne_Bridge,a steel arch bridge connecting New Jersey and Staten Island at Bayonne, New Jersey
+1870,Bayrut Beirut capital_of_Lebanon,capital and largest city of Lebanon; located in western Lebanon on the Mediterranean
+1871,Beacon_Hill,a fashionable section of Boston; site of the Massachusetts capital building
+1872,Beadle George_Beadle George_Wells_Beadle,United States biologist who discovered how hereditary characteristics are transmitted by genes (1903-1989)
+1873,Beatitude,one of the eight sayings of Jesus at the beginning of the Sermon on the Mount; in Latin each saying begins with `beatus' (blessed); "her favorite Beatitude is `Blessed are the meek for they shall inherit the earth'"
+1874,Beatles,a rock group from Liverpool who between 1962 and 1970 produced a variety of hit songs and albums (most of them written by Paul McCartney and John Lennon)
+1875,Beatrice,the woman who guided Dante through Paradise in the Divine Comedy
+1876,Beaufort_Sea,part of the Arctic Ocean to the northeast of Alaska
+1877,Beaufort_scale,a scale from 0 to 12 for the force of the wind
+1878,Beaufort_scale wind_scale,an international scale of wind force from 0 (calm air) to 12 (hurricane)
+1879,Beaujolais,dry fruity light red wine drunk within a few months after it is made; from the Beaujolais district in southeastern France
+1880,Beaumont,a city of southeastern Texas near Houston
+1881,Beaumont Francis_Beaumont,English dramatist who collaborated with John Fletcher (1584-1616)
+1882,Beaumont William_Beaumont,United States surgeon remembered for his studies of digestion (1785-1853)
+1883,Beaumontia genus_Beaumontia,small genus of evergreen woody vines in the East Indies and Asia
+1884,Beauvoir Simone_de_Beauvoir,French feminist and existentialist and novelist (1908-1986)
+1885,Beaverbrook 1st_Baron_Beaverbrook William_Maxwell_Aitken,British newspaper publisher and politician (born in Canada); confidant of Winston Churchill (1879-1964)
+1886,Bechtel_crab flowering_crab,derived from the Iowa crab and cultivated for its large double pink blossoms
+1887,Becker_muscular_dystrophy,a form of muscular dystrophy that sets in in adolescence or adulthood and progresses slowly but will affect all voluntary muscles; characterized by generalized weakness and muscle wasting that affects limb and trunk muscles first; similar to Duchenne's muscular dystrophy but less severe; inheritance is X-linked recessive (carried by females but affecting only males)
+1888,Becket Thomas_a_Becket Saint_Thomas_a_Becket St._Thomas_a_Becket,(Roman Catholic Church) archbishop of Canterbury from 1162 to 1170; murdered following his opposition to Henry II's attempts to control the clergy (1118-1170)
+1889,Beckett Samuel_Beckett,a playwright and novelist (born in Ireland) who lived in France; wrote plays for the theater of the absurd (1906-1989)
+1890,Beckley,a city in southern West Virginia
+1891,Beckman_thermometer,a mercury thermometer that measures small differences or changes in temperature
+1892,Becquerel Henri_Becquerel Antoine_Henri_Becquerel,French physicist who discovered that rays emitted by uranium salts affect photographic plates (1852-1908)
+1893,Bede Saint_Bede St._Bede Baeda Saint_Baeda St._Baeda Beda Saint_Beda St._Beda the_Venerable_Bede,(Roman Catholic Church) English monk and scholar (672-735)
+1894,Bedford_cord,a heavy corded fabric similar to corduroy; used for clothing
+1895,Bedlam booby_hatch crazy_house cuckoo's_nest funny_farm funny_house loony_bin madhouse nut_house nuthouse sanatorium snake_pit,pejorative terms for an insane asylum
+1896,Bedlington_terrier,a light terrier groomed to resemble a lamb
+1897,Bedouin Beduin,a member of a nomadic tribe of Arabs
+1898,Beecher Henry_Ward_Beecher,United States clergyman who was a leader for the abolition of slavery (1813-1887)
+1899,Beerbohm Max_Beerbohm Sir_Henry_Maxmilian_Beerbohm,English writer and caricaturist (1872-1956)
+1900,Beethoven,the music of Beethoven; "he enjoyed Beethoven most of all"
+1901,Beethoven van_Beethoven Ludwig_van_Beethoven,German composer of instrumental music (especially symphonic and chamber music); continued to compose after he lost his hearing (1770-1827)
+1902,Begin Menachem_Begin,Israeli statesman (born in Russia) who (as prime minister of Israel) negotiated a peace treaty with Anwar Sadat (then the president of Egypt) (1913-1992)
+1903,Begoniaceae family_Begoniaceae begonia_family,monoecious succulent herbs or shrubs of tropical and warm regions especially America
+1904,Beguine,(Roman Catholic Church) a member of a lay sisterhood (one of several founded in the Netherlands in the 12th and 13th centuries); though not taking religious vows the sisters followed an austere life
+1905,Behrens Peter_Behrens,German architect known for his simple utilitarian factory buildings (1868-1940)
+1906,Beijing Peking Peiping capital_of_Red_China,capital of the People's Republic of China in the Hebei province in northeastern China; 2nd largest Chinese city
+1907,Beira,a port city in eastern Mozambique on the Mozambique Channel
+1908,Bel,Babylonian god of the earth; one of the supreme triad including Anu and Ea; earlier identified with En-lil
+1909,Bel B,a logarithmic unit of sound intensity equal to 10 decibels
+1910,Bel_and_the_Dragon,an Apocryphal book consisting of text added to the Book of Daniel
+1911,Belamcanda genus_Belamcanda,a monocotyledonous genus of the family Iridaceae
+1912,Belarus Republic_of_Belarus Byelarus Byelorussia Belorussia White_Russia,a landlocked republic in eastern Europe; formerly a European soviet
+1913,Belarusian Byelorussian White_Russian,the Slavic language spoken in Belarus
+1914,Belarusian_monetary_unit,monetary unit in Belarus
+1915,Belem Para Feliz_Lusitania Santa_Maria_de_Belem St._Mary_of_Bethlehem,port city in northern Brazil in the Amazon delta; main port and commercial center for the Amazon River basin
+1916,Belemnitidae family_Belemnitidae,family of extinct Mesozoic cephalopods
+1917,Belemnoidea order_Belemnoidea,order of extinct dibranchiate cephalopods related to the surviving spirulas
+1918,Belfast capital_of_Northern_Ireland,capital and largest city of Northern Ireland; the center of Protestantism in Northern Ireland
+1919,Belgian,a native or inhabitant of Belgium
+1920,Belgian_endive French_endive witloof,young broad-leaved endive plant deprived of light to form a narrow whitish head
+1921,Belgian_franc,formerly the basic unit of money in Belgium
+1922,Belgian_hare leporide,red breed of domestic rabbits; hybrid between Old World rabbit and hare
+1923,Belgian_sheepdog Belgian_shepherd,hardy working dog developed in Belgium for herding sheep
+1924,Belgian_waffle,thick sweet waffle often eaten with ice cream or fruit sauce
+1925,Belgium Kingdom_of_Belgium Belgique,a monarchy in northwestern Europe; headquarters for the European Union and for the North Atlantic Treaty Organization
+1926,Belgrade Beograd capital_of_Serbia_and_Montenegro,capital and largest city of Serbia and Montenegro; situated on the Danube
+1927,Belisarius,Byzantine general under Justinian I; he recovered former Roman territories in northern Africa and fought against the Persians
+1928,Belize British_Honduras,a country on the northeastern coast of Central America on the Caribbean; formerly under British control
+1929,Belize_dollar,the basic unit of money in Belize
+1930,Bell Alexander_Bell Alexander_Graham_Bell,United States inventor (born in Scotland) of the telephone (1847-1922)
+1931,Bell Melville_Bell Alexander_Melville_Bell,a phonetician and father of Alexander Graham Bell (1819-1905)
+1932,Bell Vanessa_Bell Vanessa_Stephen,English painter; sister of Virginia Woolf; prominent member of the Bloomsbury Group (1879-1961)
+1933,Bellarmine Bellarmino Cardinal_Bellarmine Roberto_Francesco_Romolo_Bellarmine,Italian cardinal and theologian (1542-1621)
+1934,Belle_Isle_cress early_winter_cress land_cress American_cress American_watercress Barbarea_verna Barbarea_praecox,of southwestern Europe; cultivated in Florida
+1935,Bellerophon,(Greek mythology) a mythical hero of Corinth who performed miracles on the winged horse Pegasus (especially killing the monster Chimera)
+1936,Bellingham,a town in northwestern Washington on a bay near the Canadian border
+1937,Bellini Vincenzo_Bellini,Italian composer of operas (1801-1835)
+1938,Bellis genus_Bellis,daisy
+1939,Belloc Hilaire_Belloc Joseph_Hilaire_Peter_Belloc,English author (born in France) remembered especially for his verse for children (1870-1953)
+1940,Bellow Saul_Bellow Solomon_Bellow,United States author (born in Canada) whose novels influenced American literature after World War II (1915-2005)
+1941,Belmont_Park Belmont,a racetrack for thoroughbred racing in Elmont on Long Island; site of the Belmont Stakes
+1942,Belmont_Stakes,an annual race for three-year-old horses; held on Long Island at Elmont, New York
+1943,Belo_Horizonte,city in southeastern Brazil to the north of Rio de Janeiro; the first of Brazil's planned communities
+1944,Belonidae family_Belonidae,ferocious fishes of warm regions resembling but unrelated to the freshwater gars
+1945,Belostomatidae family_Belostomatidae,water bugs
+1946,Belsen,a Nazi concentration camp for Jews created in northwestern Germany during World War II
+1947,Belshazzar,(Old Testament) Babylonian general and son of Nebuchadnezzar II; according to the Old Testament he was warned of his doom by divine handwriting on the wall that was interpreted by Daniel (6th century BC)
+1948,Bemidji,a town in northern Minnesota
+1949,Bemisia genus_Bemisia,sweet-potato whitefly
+1950,Ben_Gurion David_Ben_Gurion David_Grun,Israeli statesman (born in Poland) and active Zionist who organized resistance against the British after World War II; prime minister of Israel (1886-1973)
+1951,Ben_Sira Sirach Ecclesiasticus Wisdom_of_Jesus_the_Son_of_Sirach,an Apocryphal book mainly of maxims (resembling Proverbs in that respect)
+1952,Bench,the magistrate or judge or judges sitting in court in judicial capacity to compose the court collectively
+1953,Benchley Robert_Benchley Robert_Charles_Benchley,United States humorist (1889-1945)
+1954,Bend,a town in central Oregon at the eastern foot of the Cascade Range
+1955,Benday_process,a photoengraving technique for adding shading or texture or tone to a printed image
+1956,Benedict Ruth_Benedict Ruth_Fulton,United States anthropologist (1887-1948)
+1957,Benedict Saint_Benedict St._Benedict,Italian monk who founded the Benedictine order about 540 (480-547)
+1958,Benedict_XIV Prospero_Lambertini,pope who was a patron of the arts and who denounced the cruelty to the indigenous peoples of South America (1675-1758)
+1959,Benedict_XV Giacomo_della_Chiesa,pope who founded the Vatican service for prisoners of war during World War I (1854-1922)
+1960,Benedictine,a monk or nun belonging to the order founded by Saint Benedict
+1961,Benedictine_order order_of_Saint_Benedict,a Roman Catholic monastic order founded in the 6th century; noted for liturgical worship and for scholarly activities
+1962,Benelux,a customs union comprising Belgium and Netherlands and Luxembourg
+1963,Benet Stephen_Vincent_Benet,United States poet; brother of William Rose Benet (1898-1943)
+1964,Benet William_Rose_Benet,United States writer; brother of Stephen Vincent Benet (1886-1950)
+1965,Benford's_law,a law used by auditors to identify fictitious populations of numbers; applies to any population of numbers derived from other numbers; "Benford's law holds that 30% of the time the first non-zero digit of a derived number will be 1 and it will be 9 only 4.6% of the time"
+1966,Bengal,a region whose eastern part is now Bangladesh and whose western part is included in India
+1967,Bengal_light,a steady bright blue light; formerly used as a signal but now a firework
+1968,Bengal_tiger,southern short-haired tiger
+1969,Bengali,(Hinduism) a member of a people living in Bangladesh and West Bengal (mainly Hindus)
+1970,Bengali,an ethnic group speaking Bengali and living in Bangladesh and eastern India
+1971,Bengali Bangla,a Magadhan language spoken by the Bengali people; the official language of Bangladesh and Bengal
+1972,Benghazi,port in northern Libya on the Gulf of Sidra; formerly a joint capital of Libya with Tripoli
+1973,Benin Republic_of_Benin Dahomey,a country on western coast of Africa; formerly under French control
+1974,Benin_franc,the basic unit of money in Benin
+1975,Beninese,a native or inhabitant of Benin
+1976,Benjamin,(Old Testament) the youngest and best-loved son of Jacob and Rachel and one of the twelve forebears of the tribes of Israel
+1977,Benjamin_Franklin_Bridge,a suspension bridge across the Delaware River
+1978,Bennett Floyd_Bennett,United States aviator who (with Richard E. Byrd) piloted the first flight over the North Pole (1890-1928)
+1979,Bennettitaceae family_Bennettitaceae,a family of fossil gymnospermous plants of the Carboniferous
+1980,Bennettitales order_Bennettitales,fossil gymnospermous plants of the Carboniferous
+1981,Bennettitis genus_Bennettitis,type of the Bennettitales
+1982,Bennington,a town in southwestern Vermont
+1983,Benny Jack_Benny Benjamin_Kubelsky,United States comedian known for his timeing and delivery and self-effacing humor (1894-1974)
+1984,Bentham Jeremy_Bentham,English philosopher and jurist; founder of utilitarianism (1748-1831)
+1985,Benton Thomas_Hart_Benton,United States artist whose paintings portrayed life in the Midwest and South (1889-1975)
+1986,Benton Thomas_Hart_Benton Old_Bullion,United States legislator who opposed the use of paper currency (1782-1858)
+1987,Benzedrine bennie,a form of amphetamine
+1988,Benzoin genus_Benzoin,used in some classifications for the American spicebush and certain other plants often included in the genus Lindera
+1989,Beowulf,the legendary hero of an anonymous Old English epic poem composed in the early 8th century; he slays a monster and becomes king but dies fighting a dragon
+1990,Berber,a member of an indigenous people of northern Africa
+1991,Berber,a cluster of related dialects that were once the major language of northern Africa west of Egypt; now spoken mostly in Morocco
+1992,Berberidaceae family_Berberidaceae barberry_family,shrubs or herbs
+1993,Berberis genus_Berberis,large genus of shrubs of temperate zones of New and Old Worlds
+1994,Berbers Arab-Berbers,an ethnic minority descended from Berbers and Arabs and living in northern Africa
+1995,Bercy Bercy_butter,butter creamed with white wine and shallots and parsley
+1996,Berg Alban_Berg,Austrian composer in Schoenberg's twelve-tone music system (1885-1935)
+1997,Bergen,a port city in southwestern Norway
+1998,Bergman Ingmar_Bergman,Swedish film director who used heavy symbolism and explored the psychology of the characters (born 1918)
+1999,Bergman Ingrid_Bergman,Swedish film actress (1915-1982)
+2000,Bergson Henri_Bergson Henri_Louis_Bergson,French philosopher who proposed elan vital as the cause of evolution and development (1859-1941)
+2001,Beria Lavrenti_Pavlovich_Beria,Soviet chief of secret police under Joseph Stalin; was executed by his associates in the power struggle following Stalin's death (1899-1953)
+2002,Bering Vitus_Bering Behring Vitus_Behring,Danish explorer who explored the northern Pacific Ocean for the Russians and discovered the Bering Strait (1681-1741)
+2003,Bering_Sea,part of the North Pacific between Alaska and Siberia; connected to the Arctic Ocean by the Bering Strait
+2004,Bering_Strait,a strait connecting the Bering Sea to the Arctic Ocean
+2005,Bering_Time Bering_Standard_Time,standard time in the 11th time zone west of Greenwich, reckoned at the 165th meridian west; used in the Midway Islands
+2006,Berith Berit Brith Bris Briss,the Jewish rite of circumcision performed on a male child on the eighth day of his life
+2007,Berkeley,a city in California on the eastern shore of San Francisco Bay; site of the University of California at Berkeley
+2008,Berkeley Bishop_Berkeley George_Berkeley,Irish philosopher and Anglican bishop who opposed the materialism of Thomas Hobbes (1685-1753)
+2009,Berkshire,a county in southern England
+2010,Berkshires Berkshire_Hills,a low mountain range in western Massachusetts; a resort area
+2011,Berlage Hendrik_Petrus_Berlage,Dutch architect and town planner (1856-1934)
+2012,Berlin German_capital,capital of Germany located in eastern Germany
+2013,Berlin Irving_Berlin Israel_Baline,United States songwriter (born in Russia) who wrote more than 1500 songs and several musical comedies (1888-1989)
+2014,Berlin_airlift,airlift in 1948 that supplied food and fuel to citizens of west Berlin when the Russians closed off land access to Berlin
+2015,Berlin_doughnut bismark jelly_doughnut,a raised doughnut filled with jelly or jam
+2016,Berliner,an inhabitant of Berlin
+2017,Berlioz Hector_Berlioz Louis-Hector_Berlioz,French composer of romantic works (1803-1869)
+2018,Bermuda Bermudas,a group of islands in the Atlantic off the Carolina coast; British colony; a popular resort
+2019,Bermuda_Triangle,an area in the western Atlantic Ocean where many ships and planes are supposed to have been mysteriously lost
+2020,Bermuda_buttercup English-weed Oxalis_pes-caprae Oxalis_cernua,South African bulbous wood sorrel with showy yellow flowers
+2021,Bermuda_cedar Juniperus_bermudiana,ornamental densely pyramidal juniper of Bermuda; fairly large for a juniper
+2022,Bermuda_chub rudderfish Kyphosus_sectatrix,food and game fish around Bermuda and Florida; often follow ships
+2023,Bermuda_dollar,the basic unit of money in Bermuda
+2024,Bermuda_grass devil_grass Bahama_grass kweek doob scutch_grass star_grass Cynodon_dactylon,trailing grass native to Europe now cosmopolitan in warm regions; used for lawns and pastures especially in southern United States and India
+2025,Bermuda_maidenhair Bermuda_maidenhair_fern Adiantum_bellum,delicate endemic Bermudian fern with creeping rootstock
+2026,Bermuda_onion,mild flat onion grown in warm areas
+2027,Bermuda_plan,a hotel plan that provides a full breakfast daily
+2028,Bermuda_rig Bermudan_rig Bermudian_rig Marconi_rig,a rig of triangular sails for a yacht
+2029,Bermuda_shorts Jamaica_shorts,(used in the plural) short pants that end at the knee
+2030,Bermudan Bermudian,a native or inhabitant of Bermuda
+2031,Bern Berne capital_of_Switzerland,the capital of Switzerland; located in western Switzerland
+2032,Bernard Claude_Bernard,French physiologist noted for research on secretions of the alimentary canal and the glycogenic function of the liver (1813-1878)
+2033,Bernese_mountain_dog,large powerful long-haired black-coated Swiss dog with deep tan or russet markings on legs and white blaze and feet and chest marking; formerly used for draft
+2034,Bernhardt Sarah_Bernhardt Henriette_Rosine_Bernard,French actress (1844-1923)
+2035,Bernini Giovanni_Lorenzo_Bernini,Italian sculptor and architect of the baroque period in Italy; designed many churches and chapels and tombs and fountains (1598-1680)
+2036,Bernoulli Daniel_Bernoulli,Swiss physicist who contributed to hydrodynamics and mathematical physics (1700-1782)
+2037,Bernoulli Jakob_Bernoulli Jacques_Bernoulli James_Bernoulli,Swiss mathematician (1654-1705)
+2038,Bernoulli Johann_Bernoulli Jean_Bernoulli John_Bernoulli,Swiss mathematician (1667-1748)
+2039,Bernoulli's_law law_of_large_numbers,(statistics) law stating that a large number of items taken at random from a population will (on the average) have the population statistics
+2040,Bernstein Leonard_Bernstein,United States conductor and composer (1918-1990)
+2041,Berra Lawrence_Peter_Berra Yogi Yogi_Berra,United States baseball player (born 1925)
+2042,Berry Chuck_Berry Charles_Edward_Berry,United States rock singer (born in 1931)
+2043,Berteroa genus_Berteroa,hoary alyssum
+2044,Bertholletia genus_Bertholletia,brazil nut
+2045,Bertillon Alphonse_Bertillon,French criminologist (1853-1914)
+2046,Bertillon_system,a system or procedure for identifying persons
+2047,Bertolucci Bernardo_Bertolucci,Italian filmmaker (born in 1940)
+2048,Berycomorphi order_Berycomorphi,an order of spiny-finned fish in the superorder Acanthopterygii
+2049,Berzelius Jons_Jakob_Berzelius,Swedish chemist who discovered three new elements and determined the atomic weights of many others (1779-1848)
+2050,Bessel Friedrich_Wilhelm_Bessel,German mathematician and astronomer who made accurate measurements of stellar distances and who predicted the existence on an 8th planet (1784-1846)
+2051,Bessemer Sir_Henry_Bessemer,British inventor and metallurgist who developed the Bessemer process (1813-1898)
+2052,Bessemer_converter,a refractory-lined furnace used to convert pig iron into steel by the Bessemer process
+2053,Bessemer_process,an industrial process for making steel using a Bessemer converter to blast air through molten iron and thus burning the excess carbon and impurities; the first successful method of making steel in quantity at low cost
+2054,Bessera genus_Bessera,small genus of cormous perennials of Mexico; sometimes placed in family Alliaceae
+2055,Besseya genus_Besseya,genus of North American spring wildflowers
+2056,Best C._H._Best Charles_Herbert_Best,Canadian physiologist (born in the United States) who assisted F. G. Banting in research leading to the discovery of insulin (1899-1978)
+2057,Beta genus_Beta,beets
+2058,Beta_Centauri,the second brightest star in Centaurus
+2059,Beta_Crucis,the second brightest star in the Southern Cross
+2060,Betelgeuse Alpha_Orionis,the second brightest star in Orion
+2061,Bethe Hans_Bethe Hans_Albrecht_Bethe,United States physicist (born in Germany) noted for research in astrophysics and nuclear physics (1906-2005)
+2062,Bethlehem,a town in eastern Pennsylvania on the Lehigh River to the northwest of Philadelphia; an important center for steel production
+2063,Bethlehem Bayt_Lahm Bethlehem_Ephrathah Bethlehem-Judah,a small town near Jerusalem on the West Bank of the Jordan River; early home of David and regarded as the place where Jesus was born
+2064,Bethune Mary_McLeod_Bethune,United States educator who worked to improve race relations and educational opportunities for Black Americans (1875-1955)
+2065,Bettongia genus_Bettongia,jerboa kangaroo
+2066,Betula genus_Betula,a genus of trees of the family Betulaceae (such as birches)
+2067,Betulaceae family_Betulaceae birch_family,monoecious trees and shrubs (including the genera Betula and Alnus and Carpinus and Corylus and Ostrya and Ostryopsis)
+2068,Beveridge William_Henry_Beveridge First_Baron_Beveridge,British economist (born in India) whose report on social insurance provided the basis for most of the social legislation on which the welfare state in the United Kingdom is based (1879-1963)
+2069,Beverly_Hills,a city in southwestern California surrounded by Los Angeles; home of many Hollywood actors
+2070,Bevin Ernest_Bevin,British labor leader and statesman who played an important role in diplomacy after World War II (1884-1951)
+2071,Bewick's_swan Cygnus_columbianus_bewickii,Eurasian subspecies of tundra swan; smaller than the whooper
+2072,Bhadon Bhadrapada,the sixth month of the Hindu calendar
+2073,Bhaga,Hindu god of wealth and love
+2074,Bhagavad-Gita Bhagavadgita Gita,(Hinduism) the sacred `song of God' composed about 200 BC and incorporated into the Mahabharata (a Sanskrit epic); contains a discussion between Krishna and the Indian hero Arjuna on human nature and the purpose of life
+2075,Bhumi_Devi,Hindu earth goddess; one of the two wives of Vishnu
+2076,Bhutan Kingdom_of_Bhutan,a landlocked principality in the Himalayas to the northeast of India
+2077,Bhutanese Bhutani,a native or inhabitant of Bhutan
+2078,Bhutanese_monetary_unit,monetary unit in Bhutan
+2079,Bibb_lettuce,lettuce with relatively crisp leaves
+2080,Bible Christian_Bible Book Good_Book Holy_Scripture Holy_Writ Scripture Word_of_God Word,the sacred writings of the Christian religions; "he went to carry the Word to the heathen"
+2081,Bible_Belt,southern and midwestern United States where Protestant fundamentalism is dominant
+2082,Biblical_Aramaic,the form of Aramaic that was spoken in Palestine in the time of the New Testament
+2083,Bibos genus_Bibos,wild ox
+2084,Bidens genus_Bidens,bur marigolds
+2085,Bierce Ambrose_Bierce Ambrose_Gwinett_Bierce,United States writer of caustic wit (1842-1914)
+2086,Big_Ben,clock in the clock tower of the Houses of Parliament, London
+2087,Big_Bend,a triangular area in southwestern Texas on the Mexican border; formed by a bend in the Rio Grande
+2088,Big_Bend_National_Park,a large national park in Texas featuring mountains and desert and canyons and wildlife
+2089,Big_Blue BLU-82,a reliable and deadly 15,000-pound fragmentation bomb that explodes just above ground with a large radius; the largest conventional bomb in existence; used in Afghanistan
+2090,Big_Brother,a totalitarian leader and invader of privacy
+2091,Big_Dipper Dipper Plough Charles's_Wain Wain Wagon,a group of seven bright stars in the constellation Ursa Major
+2092,Big_Sioux_River,a river that rises in northeastern South Dakota and flows southward to join the Missouri River at Sioux City, Iowa
+2093,Big_Sur,a picturesque coastal region of California to the south of San Francisco
+2094,Bigfoot Sasquatch,large hairy humanoid creature said to live in wilderness areas of the United States and Canada
+2095,Bighorn Bighorn_River,a river that flows from central Wyoming to the Yellowstone River in southern Montana
+2096,Bight_of_Benin,a broad indentation of the Gulf of Guinea in western Africa
+2097,Bignonia genus_Bignonia,one species: cross vine
+2098,Bignoniaceae family_Bignoniaceae,trees or shrubs or woody vines or herbs having fruit resembling gourds or capsules; sometimes placed in the order Scrophulariales
+2099,Bihar,a state of northeastern India
+2100,Bihari,the Indic language spoken in Bihar (and by some people in Pakistan and Bangladesh)
+2101,Bikini,an atoll in the Marshall Islands; formerly used by the United States as a site for testing nuclear weapons
+2102,Bill_of_Rights,a statement of fundamental rights and privileges (especially the first ten amendments to the United States Constitution)
+2103,Billings,the largest city in Montana; located in southern Montana on the Yellowstone river
+2104,Biloxi,a member of the Siouan people of southeastern Mississippi
+2105,Biloxi,an old town in southern Mississippi on the Gulf of Mexico
+2106,Biloxi,the Siouan language spoken by the Biloxi
+2107,Binet Alfred_Binet,French psychologist remembered for his studies of the intellectual development of children (1857-1911)
+2108,Binet-Simon_Scale,the first intelligence test
+2109,Binghamton,a city in south central New York near the border with Pennsylvania
+2110,Bioko,an island in the Gulf of Guinea that is part of Equatorial Guinea
+2111,Birmingham Brummagem,a city in central England; 2nd largest English city and an important industrial and transportation center
+2112,Birmingham Pittsburgh_of_the_South,the largest city in Alabama; located in northeastern Alabama
+2113,Biscayne_Bay,a narrow bay formed by an inlet from the Atlantic Ocean in southeastern Florida
+2114,Biscayne_National_Park,a national park in Florida having underwater coral reefs and marine life
+2115,Biscutella genus_Biscutella,genus of Eurasian herbs and small shrubs: buckler mustard
+2116,Bishkek Biskek Frunze capital_of_Kyrgyzstan,the capital of Kyrgyzstan (known as Frunze 1926-1991)
+2117,Bismarck capital_of_North_Dakota,capital of the state of North Dakota; located in south central North Dakota overlooking the Missouri river
+2118,Bismarck von_Bismarck Otto_von_Bismarck Prince_Otto_von_Bismarck Prince_Otto_Eduard_Leopold_von_Bismarck Iron_Chancellor,German statesman under whose leadership Germany was united (1815-1898)
+2119,Bismarck_Archipelago,a group of islands in the southwestern Pacific to the northeast of New Guinea; part of Papua New Guinea
+2120,Bismarck_Sea,an arm of the South Pacific to the southwest of the Bismarck Archipelago
+2121,Bismarck_Sea battle_of_the_Bismarck_Sea,a naval battle in World War II; Allied land-based bombers destroyed a Japanese convoy in the Bismarck Sea in March 1943
+2122,Bissau capital_of_Guinea-Bissau,the capital of Guinea-Bissau
+2123,Bithynia,an ancient country in northwestern Asia Minor in what is now Turkey; was absorbed into the Roman Empire by the end of the 1st century BC
+2124,Bitis genus_Bitis,a genus of Viperidae
+2125,Bittacidae family_Bittacidae,a family of predacious tropical insects of the order Mecoptera
+2126,Biu-Mandara,a group of Chadic languages spoken in the border area between Cameroon and Nigeria south of Lake Chad
+2127,Bivalvia class_Bivalvia Lamellibranchia class_Lamellibranchia class_Pelecypoda,oysters; clams; scallops; mussels
+2128,Bizet Georges_Bizet,French composer best known for his operas (1838-1875)
+2129,Blaberus genus_Blaberus,giant cockroaches
+2130,Black African-American Negro Negroid,a person with African ancestry, "Negro" and "Negroid" are archaic and pejorative today
+2131,Black Joseph_Black,British chemist who identified carbon dioxide and who formulated the concepts of specific heat and latent heat (1728-1799)
+2132,Black Shirley_Temple_Black Shirley_Temple,popular child actress of the 1930's (born in 1928)
+2133,Black_African,an African who is Black
+2134,Black_Death Black_Plague,the epidemic form of bubonic plague experienced during the Middle Ages when it killed nearly half the people of western Europe
+2135,Black_Forest Schwarzwald,a hilly forest region in southwestern Germany
+2136,Black_Hand,a secret terrorist society in the United States early in the 20th century
+2137,Black_Hawk Makataimeshekiakiak,Sauk leader who in 1832 led Fox and Sauk warriors against the United States (1767-1838)
+2138,Black_Hills,mountains in southwestern South Dakota and northeastern Wyoming; sacred to the Sioux (whites settling in the Black Hills led to the Battle of Little Bighorn); site of Mount Rushmore
+2139,Black_Hills,mountains in western South Dakota and northeastern Wyoming
+2140,Black_Hole_of_Calcutta,a dungeon (20 feet square) in a fort in Calcutta where as many as 146 English prisoners were held overnight by Siraj-ud-daula; the next morning only 23 were still alive
+2141,Black_Muslim,an activist member of a largely American group of Blacks called the Nation of Islam
+2142,Black_Panther,a member of the Black Panthers political party
+2143,Black_Panthers,a militant Black political party founded in 1965 to end political dominance by Whites
+2144,Black_Rock_Desert,a desert in northwestern Nevada
+2145,Black_Sea Euxine_Sea,a sea between Europe and Asia; a popular resort area of eastern Europeans
+2146,Black_September_Movement,a former Palestinian terrorist organization (now merged with Fatah Revolutionary Council) that assassinated the Prime Minister of Jordan and during the 1972 Olympic Games in Munich killed 11 Israeli athletes
+2147,Black_and_Tan,an English recruit (who wore a uniform that was black and tan) serving in the Irish constabulary to suppress the Sinn Fein rebellion of 1919 to 1921
+2148,Blackburn Blackburnian_warbler Dendroica_fusca,black-and-white North American wood warbler having an orange-and-black head and throat
+2149,Blackfoot,a member of a warlike group of Algonquians living in the northwestern plains
+2150,Blackfoot,any of the Algonquian languages spoken by the Blackfoot
+2151,Blackpool,a resort town in Lancashire in northwestern England on the Irish Sea; famous for its tower
+2152,Blacksburg,a university town in southwestern Virginia (west of Roanoke) in the Allegheny Mountains
+2153,Blackshirt,a member of the Italian fascist party before World War II
+2154,Blackwall_hitch,a simple hitch used for temporarily attaching a line to a hook
+2155,Blaia_Zimondal,an artificial language
+2156,Blair Tony_Blair Anthony_Charles_Lynton_Blair,British statesman who became prime minister in 1997 (born in 1953)
+2157,Blake William_Blake,visionary British poet and painter (1757-1827)
+2158,Blandfordia genus_Blandfordia,small genus of tuberous Australian perennial herbs
+2159,Blantyre,city in southern Malawi; largest city and commercial center of Malawi
+2160,Blarina genus_Blarina,shrews
+2161,Blarney_Stone,a stone in a castle in Ireland that is said to impart skill in flattery to anyone who kisses it
+2162,Blastocladia genus_Blastocladia,a genus of fungi of the family Blastodiaceae
+2163,Blastocladiales order_Blastocladiales,fungi that carry out asexual reproduction by thick-walled resting spores that produce zoospores upon germination; sometimes placed in class Oomycetes
+2164,Blastodiaceae family_Blastodiaceae,a family of saprobic fungi of order Blastocladiales
+2165,Blastomyces genus_Blastomyces,genus of pathogenic yeastlike fungi
+2166,Blatta genus_Blatta,type genus of the Blattidae: cockroaches infesting buildings worldwide
+2167,Blattella genus_Blattella,small cockroaches
+2168,Blattidae family_Blattidae,domestic cockroaches
+2169,Blattodea suborder_Blattodea Blattaria suborder_Blattaria,cockroaches; in some classifications considered an order
+2170,Blechnaceae family_Blechnaceae,one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems; includes genera Blechnum, Doodia, Sadleria, Stenochlaena, and Woodwardia
+2171,Blechnum genus_Blechnum,in some classification systems placed in family Polypodiaceae; terrestrial ferns of cosmopolitan distribution mainly in southern hemisphere: hard ferns
+2172,Blenheim,the First Duke of Marlborough and Prince Eugene of Savoy defeated the French in 1704 during the War of the Spanish Succession
+2173,Blenheim_spaniel,red-and-white variety of English toy spaniel
+2174,Blenniidae family_Blenniidae,a family of fish including: combtooth blennies
+2175,Blennioidea suborder_Blennioidea,blennies; butterfishes; gunnels
+2176,Blennius genus_Blennius,type genus of the Blenniidae
+2177,Blephilia genus_Blephilia,small genus of North American herbs: wood mints
+2178,Bleriot Louis_Bleriot,French aviator who in 1909 made the first flight across the English Channel (1872-1936)
+2179,Bletilla genus_Bletilla,small genus of chiefly east Asiatic hardy terrestrial orchids similar to genus Bletia
+2180,Bletilla_striata Bletia_striata,Japanese orchid with white-striped leaves and slender erect racemes of rose to magenta flowers; often cultivated; sometimes placed in genus Bletia
+2181,Blida,a city in northern Algeria at the foot of the Atlas Mountains to the southwest of Algiers
+2182,Bligh William_Bligh Captain_Bligh,British admiral; was captain of the H.M.S. Bounty in 1789 when part of the crew mutinied and set him afloat in an open boat; a few weeks later he arrived safely in Timor 4,000 miles away (1754-1817)
+2183,Blighia genus_Blighia,small genus of western African evergreen trees and shrubs bearing fleshy capsular three-seeded fruits edible when neither unripe nor overripe
+2184,Blighty,a slang term for Great Britain used by British troops serving abroad
+2185,Blissus genus_Blissus,chinch bugs
+2186,Blitzstein Marc_Blitzstein,United States pianist and composer of operas and musical plays (1905-1964)
+2187,Bloch Ernest_Bloch,United States composer (born in Switzerland) who composed symphonies and chamber music and choral music and a piano sonata and an opera (1880-1959)
+2188,Bloemfontein,the seat of the supreme court
+2189,Blok Alexander_Alexandrovich_Blok Aleksandr_Aleksandrovich_Blok,Russian poet (1880-1921)
+2190,Bloody_Mary,a cocktail made with vodka and spicy tomato juice
+2191,Bloomeria genus_Bloomeria,small genus of bulbous perennial herbs of southwestern United States and Mexico; sometimes placed in family Alliaceae
+2192,Bloomfield Leonard_Bloomfield,United States linguist who adopted a behavioristic approach to linguistics (1887-1949)
+2193,Bloomington,a university town in south central Indiana
+2194,Bloomsbury,a city district of central London laid out in garden squares
+2195,Bloomsbury_Group,an inner circle of writers and artists and philosophers who lived in or around Bloomsbury early in the 20th century and were noted for their unconventional lifestyles
+2196,Blucher von_Blucher G._L._von_Blucher Gebhard_Leberecht_von_Blucher,Prussian general who is remembered for his leadership in the wars against Napoleon (1742-1819)
+2197,Blue_Mountain_tea sweet_goldenrod Solidago_odora,goldenrod of eastern America having aromatic leaves from which a medicinal tea is made
+2198,Blue_Nile,a headstream of the Nile; joins the White Nile at Khartoum to form the Nile
+2199,Blue_Ridge_Mountains Blue_Ridge,a range of the Appalachians extending from southern Pennsylvania to northern Georgia
+2200,Bluebeard,(fairytale) a monstrous villain who marries seven women; he kills the first six for disobedience
+2201,Bluegrass Bluegrass_Country Bluegrass_Region,an area in central Kentucky noted for its bluegrass and thoroughbred horses
+2202,Bo_Hai Po_Hai,an inlet of the Yellow Sea, on the coast of Eastern China
+2203,Boann,Celtic goddess; mother of Angus Og
+2204,Boccaccio Giovanni_Boccaccio,Italian poet (born in France) (1313-1375)
+2205,Bodhisattva Boddhisatva,Buddhist worthy of nirvana who postpones it to help others
+2206,Bodo-Garo Barish,Kamarupan languages spoken in the state of Assam in northeastern India
+2207,Bodoni Gianbattista_Bodoni,Italian printer who designed the Bodoni font (1740-1813)
+2208,Boehme Jakob_Boehme Bohme Jakob_Bohme Boehm Jakob_Boehm Behmen Jakob_Behmen,German mystic and theosophist who founded modern theosophy; influenced George Fox (1575-1624)
+2209,Boehmenism Behmenism,the mystical theological doctrine of Jakob Boehme that influenced the Quakers
+2210,Boehmeria genus_Boehmeria,false nettle
+2211,Boell Heinrich_Boell Heinrich_Theodor_Boell,German novelist and writer of short stories (1917-1985)
+2212,Boeotia,a district of ancient Greece to the northwest of Athens
+2213,Boer_War,either of two wars: the first when the Boers fought England in order to regain the independence they had given up to obtain British help against the Zulus (1880-1881); the second when the Orange Free State and Transvaal declared war on Britain (1899-1902)
+2214,Boethius Anicius_Manlius_Severinus_Boethius,a Roman who was an early Christian philosopher and statesman who was executed for treason; Boethius had a decisive influence on medieval logic (circa 480-524)
+2215,Bofors_gun,an automatic double-barreled antiaircraft gun
+2216,Bogart Humphrey_Bogart Humphrey_DeForest_Bogart,United States film actor (1899-1957)
+2217,Bogota capital_of_Colombia,capital and largest city of Colombia; located in central Colombia on a high fertile plain
+2218,Bohemia,a historical area and former kingdom in the Czech Republic
+2219,Bohemian,a native or inhabitant of Bohemia in the Czech Republic
+2220,Bohemian_waxwing Bombycilla_garrulus,large waxwing of northern North America; similar to but larger than the cedar waxwing
+2221,Bohr Niels_Bohr Niels_Henrik_David_Bohr,Danish physicist who studied atomic structure and radiations; the Bohr theory of the atom accounted for the spectrum of hydrogen (1885-1962)
+2222,Bohr_theory,(physics) a theory of atomic structure that combined Rutherford's model with the quantum theory; electrons orbiting a nucleus can only be in certain stationary energy states and light is emitted when electrons jump from one energy state to another
+2223,Boidae family_Boidae,boas and pythons
+2224,Boise capital_of_Idaho,the capital and largest city of Idaho
+2225,Bokmal Bokmaal Dano-Norwegian,book language; one of two official languages of Norway; closely related to Danish
+2226,Bolbitis genus_Bolbitis,terrestrial or less than normally scandent ferns of tropical regions of northern hemisphere
+2227,Bole Bolanci,a Chadic language spoken in northern Nigeria and closely related to Hausa
+2228,Boletaceae family_Boletaceae,family of fleshy fungi having the germ pores easily separating from the cup and often from each other
+2229,Boletellus genus_Boletellus,a genus of fungi belonging to the family Boletaceae
+2230,Boletellus_russellii,a fungus with a long coarsely shaggy reticulate stalk and a rimose areolate cap surface
+2231,Boletus genus_Boletus,type genus of Boletaceae; genus of soft early-decaying pore fungi; some poisonous and some edible
+2232,Boletus_chrysenteron,a fungus convex cap and a dingy yellow under surface and a dry stalk
+2233,Boletus_edulis,an edible and choice fungus; has a convex cap that is slightly viscid when fresh and moist but soon dries and a thick bulbous tan stalk
+2234,Boletus_luridus,a poisonous fungus with a dingy yellow cap and orange red undersurface and a cylindrical reticulate stalk
+2235,Boletus_mirabilis,a fungus that is edible when young and fresh; has a dark brown convex cap with a yellow to greenish under surface and reddish stalk
+2236,Boletus_pallidus,a fungus that has an off-white cap when it is young but later becomes dingy brown and a stalk of the same color; the under surface of the cap (the tubes) a pale greenish yellow
+2237,Boletus_pulcherrimus,a beautiful but poisonous bolete; has a brown cap with a scarlet pore surface and a thick reticulate stalk
+2238,Boletus_pulverulentus,an edible fungus with a broadly convex blackish brown cap and a pore surface that is yellow when young and darkens with age; stalk is thick and enlarges toward the base
+2239,Boletus_roxanae,a fungus with a rusty red cap and a white pore surface that becomes yellow with age and a pale yellow stalk
+2240,Boletus_subvelutipes,a fungus with a velvety stalk and usually a dingy brown cap; injured areas turn blue instantly
+2241,Boletus_variipes,an edible (but not choice) fungus found on soil under hardwoods; has a dry convex cap with whitish under surface and a reticulate stalk
+2242,Boletus_zelleri,an edible and choice fungus that has a brown cap with greenish yellow under surface and a stalk that become dull red with age
+2243,Boleyn Anne_Boleyn,the second wife of Henry VIII and mother of Elizabeth I; was executed on a charge of adultery (1507-1536)
+2244,Bolivar Simon_Bolivar El_Libertador,Venezuelan statesman who led the revolt of South American colonies against Spanish rule; founded Bolivia in 1825 (1783-1830)
+2245,Bolivia Republic_of_Bolivia,a landlocked republic in central South America; Simon Bolivar founded Bolivia in 1825 after winning independence from Spain
+2246,Bolivian,a native or inhabitant of Bolivia
+2247,Bolivian_monetary_unit,monetary unit in Bolivia
+2248,Bollywood,the film industry of India
+2249,Bologna,the capital of Emilia-Romagna; located in northern Italy to the east of the Apennines
+2250,Bolshevik Bolshevist,a Russian member of the left-wing majority group that followed Lenin and eventually became the Russian communist party
+2251,Bolshevik Marxist red bolshie bolshy,emotionally charged terms used to refer to extreme radicals or revolutionaries
+2252,Bolshevism collectivism sovietism,Soviet communism
+2253,Boltonia genus_Boltonia,genus of tall leafy perennial herbs of eastern America and eastern Asia having flowers that resemble asters
+2254,Boltzmann Ludwig_Boltzmann,Austrian physicist who contributed to the kinetic theory of gases (1844-1906)
+2255,Boltzmann's_constant,constant used in the calculation of the ideal gas constant
+2256,Bolzano,an Italian city in Trentino-Alto Adige near the Austrian border; noted as a resort and for its Alpine scenery
+2257,Bomarea genus_Bomarea,large genus of tropical American vines having showy often spotted umbellate flowers; sometimes placed in family Liliaceae especially subfamily Alstroemeriaceae
+2258,Bombacaceae family_Bombacaceae,tropical trees with large dry or fleshy fruit containing usually woolly seeds
+2259,Bombax genus_Bombax,trees of chiefly South America
+2260,Bombina genus_Bombina,fire-bellied toads
+2261,Bombus genus_Bombus,bumblebees
+2262,Bombycidae family_Bombycidae,Chinese silkworm moth
+2263,Bombycilla genus_bombycilla,waxwings
+2264,Bombycillidae family_Bombycillidae,a family of birds of the suborder Oscines
+2265,Bombyliidae family_Bombyliidae,bee flies
+2266,Bombyx genus_Bombyx,type genus of the Bombycidae: Chinese silkworm moth
+2267,Bonaire,a popular island resort in the Netherlands Antilles
+2268,Bonasa genus_Bonasa,ruffed grouse
+2269,Bond James_Bond,British secret operative 007 in novels by Ian Fleming
+2270,Bond Julian_Bond,United States civil rights leader who was elected to the legislature in Georgia but was barred from taking his seat because he opposed the Vietnam War (born 1940)
+2271,Bonete,a mountain in the Andes in Argentina (22,546 feet high)
+2272,Bonfire_Night Guy_Fawkes_Night,effigies of Guy Fawkes are burned on this night
+2273,Bonhoeffer Dietrich_Bonhoeffer,German Lutheran theologian and pastor whose works concern Christianity in the modern world; an active opponent of Nazism, he was arrested and sent to Buchenwald and later executed (1906-1945)
+2274,Boniface Saint_Boniface St._Boniface Winfred Wynfrith Apostle_of_Germany,(Roman Catholic Church) Anglo-Saxon missionary who was sent to Frisia and Germany to spread the Christian faith; was martyred in Frisia (680-754)
+2275,Boniface_VIII Benedetto_Caetani,pope who declared that Catholic princes are subject to the pope in temporal as well as in theological matters (1235-1303)
+2276,Bonn,a city in western Germany on the Rhine River; was the capital of West Germany between 1949 and 1989
+2277,Bonney William_H._Bonney Billie_the_Kid,United States outlaw who was said to have killed 21 men (1859-1881)
+2278,Bontemps Arna_Wendell_Bontemps,United States writer (1902-1973)
+2279,Book_of_Common_Prayer,the Anglican service book of the Church of England; has had several revisions since the Reformation and is widely admired for the dignity and beauty of its language
+2280,Book_of_Mormon,a sacred text revealed to Joseph Smith in 1830 by an ancient prophet Mormon; supposedly a record of ancient peoples of America translated by Joseph Smith
+2281,Boole George_Boole,English mathematician; creator of Boolean algebra (1815-1864)
+2282,Boolean_logic Boolean_algebra,a system of symbolic logic devised by George Boole; used in computers
+2283,Boone Daniel_Boone,an American pioneer and guide and explorer (1734-1820)
+2284,Bootes,a constellation in the northern hemisphere near Ursa Major
+2285,Booth John_Wilkes_Booth,United States actor and assassin of President Lincoln (1838-1865)
+2286,Boott's_goldenrod,a variety of goldenrod
+2287,Boraginaceae family_Boraginaceae borage_family,a widely distributed family of plants distinguished by circinate flowers and nutlike fruit
+2288,Borago genus_Borago,perennial herbs of the Mediterranean region
+2289,Borassus genus_Borassus,palmyra
+2290,Bordeaux,a port city in southwestern France; a major center of the wine trade
+2291,Bordeaux Bordeaux_wine,any of several red or white wines produced around Bordeaux, France or wines resembling them
+2292,Bordeaux_mixture,antifungal agent consisting of a solution of copper sulphate and quicklime
+2293,Border_collie,developed in the area between Scotland and England usually having a black coat with white on the head and tip of tail used for herding both sheep and cattle
+2294,Border_terrier,small rough-coated terrier of British origin
+2295,Boreas,(Greek mythology) the god who personified the north wind; "Boreas was pictured as bearded and powerful and winged and draped against the cold"
+2296,Borges Jorge_Borges Jorge_Luis_Borges,Argentinian writer remembered for his short stories (1899-1986)
+2297,Borgia Cesare_Borgia,Italian cardinal and military leader; model for Machiavelli's prince (1475-1507)
+2298,Borgia Lucrezia_Borgia Duchess_of_Ferrara,Italian noblewoman and patron of the arts (1480-1519)
+2299,Born Max_Born,British nuclear physicist (born in Germany) honored for his contributions to quantum mechanics (1882-1970)
+2300,Bornean,a native or inhabitant of Borneo
+2301,Borneo Kalimantan,3rd largest island in the world; in the western Pacific to the north of Java; largely covered by dense jungle and rain forest; part of the Malay Archipelago
+2302,Borodin Aleksandr_Borodin Aleksandr_Porfirevich_Borodin,Russian composer (1833-1887)
+2303,Borodino,Napoleon defeated the Russians in 1812 in a pitched battle at a village in western Russia west of Moscow, but irreparably weakened his army
+2304,Borrelia_burgdorferi Lime_disease_spirochete,cause of Lyme disease; transmitted primarily by ticks of genus Ixodes
+2305,Bos genus_Bos,wild and domestic cattle; in some classifications placed in the subfamily Bovinae or tribe Bovini
+2306,Bosch Hieronymus_Bosch Jerom_Bos,Dutch painter (1450-1516)
+2307,Bose Satyendra_N._Bose Satyendra_Nath_Bose,Indian physicist who with Albert Einstein proposed statistical laws based on the indistinguishability of particles; led to the description of fundamental particles that later came to be known as bosons
+2308,Bose-Einstein_statistics,(physics) statistical law obeyed by a system of particles whose wave function is not changed when two particles are interchanged (the Pauli exclusion principle does not apply)
+2309,Boselaphus genus_Boselaphus,Indian antelopes: nilgais
+2310,Boskop_man,possible early Homo sapiens represented by a cranium found in the Transvaal; formerly considered a separate species
+2311,Bosnia,the northern part of Bosnia-Herzegovina
+2312,Bosnia_and_Herzegovina Republic_of_Bosnia_and_Herzegovina Bosna_i_Hercegovina Bosnia-Herzegovina Bosnia,a mountainous republic of south-central Europe; formerly part of the Ottoman Empire and then a part of Yugoslavia; voted for independence in 1992 but the mostly Serbian army of Yugoslavia refused to accept the vote and began ethnic cleansing in order to rid Bosnia of its Croats and Muslims
+2313,Bosporus,a strait connecting the Mediterranean and the Black Sea; separates the European and Asian parts of Turkey; an important shipping route
+2314,Bosporus_Bridge,a suspension bridge across the Bosporus at Istanbul
+2315,Boston Hub_of_the_Universe Bean_Town Beantown capital_of_Massachusetts,state capital and largest city of Massachusetts; a major center for banking and financial services
+2316,Boston_Harbor,the seaport at Boston
+2317,Boston_Tea_Party,demonstration (1773) by citizens of Boston who (disguised as Indians) raided three British ships in Boston harbor and dumped hundreds of chests of tea into the harbor; organized as a protest against taxes on tea
+2318,Boston_baked_beans,dried navy beans baked slowly with molasses and salt pork
+2319,Boston_bull Boston_terrier,small pug-faced American terrier breed having a smooth brindle or black coat with white markings
+2320,Boston_cream_pie,layer cake filled with custard
+2321,Boston_fern Nephrolepis_exaltata Nephrolepis_exaltata_bostoniensis,a sword fern with arching or drooping pinnate fronds; a popular houseplant
+2322,Boston_ivy Japanese_ivy Parthenocissus_tricuspidata,Asiatic vine with three-lobed leaves and purple berries
+2323,Boston_lettuce,lettuce with relatively soft leaves
+2324,Boston_rocker,a rocking chair that has a high spindle back and a decorative top panel
+2325,Bostonian,a native or resident of Boston
+2326,Boswell,a devoted admirer and recorder of another's words and deeds
+2327,Boswell James_Boswell,Scottish author noted for his biography of Samuel Johnson (1740-1795)
+2328,Boswellia genus_Boswellia,genus of trees of North Africa and India that yield incense
+2329,Boswellia_carteri,tree yielding an aromatic gum resin burned as incense
+2330,Bosworth_Field,the battle that ended the Wars of the Roses (1485); Richard III was killed and Henry Tudor was crowned as Henry VII
+2331,Botaurus genus_Botaurus,bitterns
+2332,Bothidae family_Bothidae,a family of fish of the order Heterosomata
+2333,Bothrops genus_Bothrops,fer-de-lance
+2334,Botrychium genus_Botrychium,grape fern; moonwort
+2335,Botswana Republic_of_Botswana,a landlocked republic in south-central Africa that became independent from British control in the 1960s
+2336,Botswana_monetary_unit,monetary unit in Botswana
+2337,Botticelli Sandro_Botticelli Alessandro_di_Mariano_dei_Filipepi,Italian painter of mythological and religious paintings (1444-1510)
+2338,Bougainville,the largest of the Solomon Islands; a province of Papua New Guinea
+2339,Bougainville Louis_Antoine_de_Bougainville,French explorer who circumnavigated the globe accompanied by scientists (1729-1811)
+2340,Bougainville_Trench,a depression in the floor of the Pacific Ocean between New Guinea and the Solomon Islands
+2341,Boulder,a town in north central Colorado; Rocky Mountains resort center and university town
+2342,Boulez Pierre_Boulez,French composer of serial music (born in 1925)
+2343,Bounty H.M.S._Bounty,a ship of the British navy; in 1789 part of the crew mutinied against their commander William Bligh and set him afloat in an open boat
+2344,Bourbon,a reactionary politician in the United States (usually from the South)
+2345,Bourbon,a member of the European royal family that ruled France
+2346,Bourbon Bourbon_dynasty,a European royal line that ruled in France (from 1589-1793) and Spain and Naples and Sicily
+2347,Bourgogne Burgundy,a former province of eastern France that is famous for its wines
+2348,Bourse,the stock exchange in Paris
+2349,Bouteloua genus_Bouteloua,forage grasses
+2350,Bouvet_Island,an island belonging to Norway in the South Atlantic near the Antarctic Circle
+2351,Bouvier_des_Flandres Bouviers_des_Flandres,rough-coated breed used originally in Belgium for herding and guarding cattle
+2352,Bouvines,in 1214 the French under Philip Augustus defeated a coalition formed against him in one of the greatest battles of the middle ages
+2353,Bouyei Buyi,a branch of the Tai languages
+2354,Bovidae family_Bovidae,true antelopes; cattle; oxen; sheep; goats
+2355,Bovinae subfamily_Bovinae,term not used technically; essentially coextensive with genus Bos: cattle; buffalo; and sometimes includes kudu
+2356,Bovini tribe_Bovini,term not used technically; essentially coextensive with genus Bos
+2357,Bowditch Nathaniel_Bowditch,United States mathematician and astronomer noted for his works on navigation (1773-1838)
+2358,Bowdler Thomas_Bowdler,English editor who in 1818 published an expurgated edition of the works of Shakespeare (1754-1825)
+2359,Bowdlerism,censorship in the form of prudish expurgation
+2360,Bowery,a street in Manhattan noted for cheap hotels frequented by homeless derelicts
+2361,Bowie Jim_Bowie James_Bowie,United States pioneer and hero of the Texas revolt against Mexico; he shared command of the garrison that resisted the Mexican attack on the Alamo where he died (1796-1836)
+2362,Bowie_knife,a stout hunting knife with a single edge
+2363,Bowiea genus_Bowiea,small genus of tropical African perennial bulbous herbs with deciduous twining stems; sometimes placed in family Hyacinthaceae
+2364,Bowling_Green,a town in southern Kentucky
+2365,Bowman's_capsule glomerular_capsule capsula_glomeruli,thin double membrane surrounding the glomerulus of a nephron
+2366,Boxer,a member of a nationalistic Chinese secret society that led an unsuccessful rebellion in 1900 against foreign interests in China
+2367,Boxing_Day,first weekday after Christmas
+2368,Boy_Scout,a boy who is a member of the Boy Scouts
+2369,Boy_Scouts,an international (but decentralized) movement started in 1908 in England with the goal of teaching good citizenship to boys
+2370,Boy_Scouts_of_America,a corporation that operates through a national council that charters local councils all over the United States; the purpose is character building and citizenship training
+2371,Boykinia genus_Boykinia,genus of perennial rhizomatous herbs with flowers in panicles; North America; Japan
+2372,Boyle Kay_Boyle,United States writer (1902-1992)
+2373,Boyle Robert_Boyle,Irish chemist who established that air has weight and whose definitions of chemical elements and chemical reactions helped to dissociate chemistry from alchemy (1627-1691)
+2374,Boyle's_law Mariotte's_law,the pressure of an ideal gas at constant temperature varies inversely with the volume
+2375,Boyne battle_of_Boyne,a battle in the War of the Grand Alliance in Ireland in 1690; William III defeated the deposed James II and so ended the Catholicism that had been reintroduced in England by the Stuarts
+2376,Bozeman,a town in southwestern Montana; gateway to Yellowstone National Park
+2377,Brabancon_griffon,a variety of Brussels griffon having a short smooth coat
+2378,Brachinus genus_Brachinus,bombardier beetles
+2379,Brachiopoda phylum_Brachiopoda,marine invertebrates that resemble mollusks
+2380,Brachychiton genus_Brachychiton,Australian trees (usually with swollen trunks)
+2381,Brachycome genus_Brachycome,mostly Australian herbs having basal or alternate leaves and loosely corymbose flower heads
+2382,Brachystegia genus_Brachystegia,small genus of tropical African timber trees having pale golden heartwood uniformly striped with dark brown or black:
+2383,Brachyura suborder_Brachyura,an order of crustaceans (including true crabs) having a reduced abdomen folded against the ventral surface
+2384,Bradbury Ray_Bradbury Ray_Douglas_Bradbury,United States writer of science fiction (born 1920)
+2385,Bradford William_Bradford,United States printer (born in England) whose press produced the first American prayer book and the New York City's first newspaper (1663-1752)
+2386,Bradley Omar_Bradley Omar_Nelson_Bradley,United States general who played an important role in the Allied victory in World War II (1893-1981)
+2387,Bradley Thomas_Bradley Tom_Bradley,United States politician who was elected the first black mayor of Los Angeles (1917-1998)
+2388,Bradley's_spleenwort Asplenium_bradleyi,a spleenwort of eastern to southern United States
+2389,Bradley_method_of_childbirth Bradley_method,a method that prepares a mother for natural childbirth by providing education and exercises and nutrition and techniques of breathing and relaxation (with the assistance of the father)
+2390,Bradstreet Anne_Bradstreet Anne_Dudley_Bradstreet,poet in colonial America (born in England) (1612-1672)
+2391,Brady James_Buchanan_Brady Diamond_Jim_Brady Diamond_Jim,United States financier noted for his love of diamonds and his extravagant lifestyle (1856-1917)
+2392,Brady Mathew_B._Brady,United States pioneer photographer famous for his portraits; was the official Union photographer for the American Civil War (1823-1896)
+2393,Bradypodidae family_Bradypodidae,a family of edentates comprising the true sloths
+2394,Bradypus genus_Bradypus,type genus of the Bradypodidae: three-toed sloths
+2395,Braga,an ancient city in northern Portugal
+2396,Bragg Braxton_Bragg,Confederate general during the American Civil War who was defeated by Grant in the battle of Chattanooga (1817-1876)
+2397,Bragi Brage,(Norse mythology) god of poetry and music; son of Odin
+2398,Brahe Tycho_Brahe,Danish astronomer whose observations of the planets provided the basis for Kepler's laws of planetary motion (1546-1601)
+2399,Brahma,the Creator; one of the three major deities in the later Hindu pantheon
+2400,Brahman Brahma Brahmin Bos_indicus,any of several breeds of Indian cattle; especially a large American heat and tick resistant greyish humped breed evolved in the Gulf States by interbreeding Indian cattle and now used chiefly for crossbreeding
+2401,Brahmana,prose works attached to the Samhitas instructing the brahmins to perform the very elaborate sacrificial rituals
+2402,Brahmanism Brahminism,the religious and social system of orthodox Hinduism
+2403,Brahmanism Brahminism,the religious beliefs of ancient India as prescribed in the sacred Vedas and Brahmanas and Upanishads
+2404,Brahmaputra Brahmaputra_River,an Asian river; flows into the Bay of Bengal
+2405,Brahmi,a script (probably adapted from the Aramaic about the 7th century BC) from which later Indian scripts developed
+2406,Brahms,the music of Brahms; "Brahms was included in the program"
+2407,Brahms Johannes_Brahms,German composer who developed the romantic style of both lyrical and classical music (1833-1897)
+2408,Brahui,a member of a Dravidian people living in Pakistan
+2409,Brahui,an isolated Dravidian language spoken by the Brahui in Pakistan
+2410,Braille Louis_Braille,French educator who lost his sight at the age of three and who invented a system of writing and printing for sightless people (1809-1852)
+2411,Brama genus_Brama,type genus of the Bramidae
+2412,Bramante Donato_Bramante Donato_d'Agnolo_Bramante,great Italian architect of the High Renaissance in Italy (1444-1514)
+2413,Bramidae family_Bramidae,deep-bodied percoid fishes of the open seas
+2414,Bramley's_Seedling,very large cooking apple
+2415,Branchiobdella genus_Branchiobdella,type genus of the Branchiobdellidae: a small worm that lives on the gills or surface of a crayfish attached by a sucker
+2416,Branchiobdellidae family_Branchiobdellidae,small annelid worms with the posterior end modified into an adhesive sucker; especially formerly regarded as modified leeches
+2417,Branchiopoda subclass_Branchiopoda,primitive aquatic mainly freshwater crustaceans: fairy shrimps; brine shrimps; tadpole shrimps; can shrimps; water fleas
+2418,Branchiostegidae family_Branchiostegidae,small family of marine fishes having covered gills
+2419,Branchiura order_Branchiura,copepods with suctorial mouthparts; parasitic on fishes
+2420,Brancusi Constantin_Brancusi,Romanian sculptor noted for abstractions of animal forms (1876-1957)
+2421,Brandenburg,the territory of an Elector (of the Holy Roman Empire) that expanded to become the kingdom of Prussia in 1701
+2422,Brandt Willy_Brandt,German statesman who as chancellor of West Germany worked to reduce tensions with eastern Europe (1913-1992)
+2423,Branta genus_Branta,wild geese
+2424,Braque Georges_Braque,French painter who led the cubist movement (1882-1963)
+2425,Brasenia genus_Brasenia,alternatively, a member of the family Nymphaeaceae
+2426,Brasilia Brazilian_capital capital_of_Brazil,the capital of Brazil; a city built on the central plateau and inaugurated in 1960
+2427,Brasov,a city in central Romania in the foothills of the Transylvanian Alps
+2428,Brassia genus_Brassia,genus of tropical American epiphytic orchids having striking axillary racemes of yellow to green spiderlike flowers with long slender sepals and warty lips: spider orchids
+2429,Brassica genus_Brassica,mustards: cabbages; cauliflowers; turnips; etc.
+2430,Bratislava capital_of_Slovakia Pressburg Pozsony,capital and largest city of Slovakia
+2431,Brattleboro,a town in southeastern Vermont on the Connecticut River
+2432,Braun Eva_Braun,the German mistress of Adolf Hitler (1910-1945)
+2433,Braun von_Braun Wernher_von_Braun Wernher_Magnus_Maximilian_von_Braun,United States rocket engineer (born in Germany where he designed a missile used against England); he led the United States Army team that put the first American satellite into space (1912-1977)
+2434,Braun's_holly_fern prickly_shield_fern Polystichum_braunii,North American fern whose more or less evergreen leathery fronds are covered with pale brown chafflike scales
+2435,Braunschweig Brunswick,a city in central Germany
+2436,Braxton-Hicks_contraction false_labor,painless contractions of the muscles of the uterus that continue throughout pregnancy with increasing frequency
+2437,Brazil Federative_Republic_of_Brazil Brasil,the largest Latin American country and the largest Portuguese speaking country in the world; located in the central and northeastern part of South America; world's leading coffee exporter
+2438,Brazilian,a native or inhabitant of Brazil
+2439,Brazilian_guava Psidium_guineense,South American tree having fruit similar to the true guava
+2440,Brazilian_monetary_unit,monetary unit in Brazil
+2441,Brazilian_pepper_tree Schinus_terebinthifolius,small Brazilian evergreen resinous tree or shrub having dark green leaflets and white flowers followed by bright red fruit; used as a street tree and lawn specimen
+2442,Brazilian_rosewood caviuna_wood jacaranda Dalbergia_nigra,an important Brazilian timber tree yielding a heavy hard dark-colored wood streaked with black
+2443,Brazilian_trumpeter Psophia_crepitans,trumpeter of Brazil and Guiana; often kept to protect poultry in Brazil
+2444,Brazos Brazos_River,a river that rises in Mexico and flows across Texas into the Gulf of Mexico
+2445,Brazzaville,the capital and largest city of the Republic of the Congo
+2446,Brecht Bertolt_Brecht,German dramatist and poet who developed a style of epic theater (1898-1956)
+2447,Breed's_Hill,a hill in Charlestown that was the site of the battle of Bunker Hill in 1775
+2448,Bremen,a city of northwestern Germany linked by the Weser River to the port of Bremerhaven and the North Sea; in the Middle Ages it was a leading member of the Hanseatic League
+2449,Bremerhaven,a port city in northwestern Germany at the mouth of the Weser River on the North Sea; has a deep natural harbor and is an important shipping center
+2450,Bren Bren_gun,a submachine gun operated by gas pressure; used by the British in World War II
+2451,Brenner_Pass,an Alpine mountain pass connecting Innsbruck in Austria with Bolzano in Italy that has long been a route for trade and for invasions
+2452,Brer_Rabbit,the fictional character of a rabbit who appeared in tales supposedly told by Uncle Remus and first published in 1880
+2453,Brescia,an ancient Italian city in central Lombardy
+2454,Brest,a port city in northwestern France (in Brittany); the chief naval station of France
+2455,Bretagne Brittany Breiz,a former province of northwestern France on a peninsula between the English Channel and the Bay of Biscay
+2456,Breton,a native or inhabitant of Brittany (especially one who speaks the Breton language)
+2457,Breton,a Celtic language of Brittany
+2458,Breuer Marcel_Lajos_Breuer,United States architect (born in Hungary) who was associated with the Bauhaus in the 1920's (1902-1981)
+2459,Brevoortia genus_Brevoortia,menhaden
+2460,Brezhnev Leonid_Brezhnev Leonid_Ilyich_Brezhnev,Soviet statesman who became president of the Soviet Union (1906-1982)
+2461,Brickellia genus_Brickelia,genus of herbs of southwestern America having usually creamy florets followed by one-seeded fruits in a prominent bristly sheath
+2462,Bridgeport,a port in southwestern Connecticut on Long Island Sound
+2463,Bridges Harry_Bridges,United States labor leader who organized the longshoremen (1901-1990)
+2464,Bridget Saint_Bridget St._Bridget Brigid Saint_Brigid St._Brigid Bride Saint_Bride St._Bride,Irish abbess; a patron saint of Ireland (453-523)
+2465,Bridgetown capital_of_Barbados,capital of Barbados; a port city on the southwestern coast of Barbados
+2466,Brie,soft creamy white cheese; milder than Camembert
+2467,Brighton,a city in East Sussex in southern England that is a popular resort; site of the University of Sussex
+2468,Brigit,Celtic goddess of fire and fertility and agriculture and household arts and wisdom; later associated with Saint Bridget
+2469,Brihaspati,personification of the power of ritual devotion
+2470,Brindisi,a port city in southeastern Apulia in Italy; a center for the Crusades in the Middle Ages
+2471,Brinell_number,measure of the hardness of a material
+2472,Brinton Daniel_Garrison_Brinton,United States anthropologist who was the first to attempt a systematic classification of Native American languages (1837-1899)
+2473,Brioschi,an antacid
+2474,Brisbane,capital and largest city of Queensland state; located in the southeastern corner of Queensland on the Pacific; settled by British as a penal colony; 3rd largest city in Australia
+2475,Bristol,an industrial city and port in southwestern England near the mouth of the River Avon
+2476,Bristol_Channel,an inlet of the Atlantic Ocean between southern Wales and southwestern England
+2477,Britannia_metal,an alloy similar to pewter
+2478,British British_people Brits,the people of Great Britain
+2479,British_Cabinet,the senior ministers of the British government
+2480,British_Columbia,a province in western Canada
+2481,British_Commonwealth Commonwealth_of_Nations,an association of nations consisting of the United Kingdom and several former British colonies that are now sovereign states but still pay allegiance to the British Crown
+2482,British_Crown,the symbol of the power of the British monarchy; "members of the British Commonwealth owe allegiance to the British Crown"
+2483,British_East_Africa,the former British territories of eastern Africa, including Kenya, Tanganyika, Uganda, and Zanzibar
+2484,British_Empire,a former empire consisting of Great Britain and all the territories under its control; reached its greatest extent at the end of World War I; it included the British Isles, British West Indies, Canada, British Guiana; British West Africa, British East Africa, India, Australia, New Zealand; "the sun never sets on the British Empire"
+2485,British_Imperial_System English_system British_system,a system of weights and measures based on the foot and pound and second and pint
+2486,British_Isles,Great Britain and Ireland and adjacent islands in the north Atlantic
+2487,British_Labour_Party Labour_Party Labour Labor,a political party formed in Great Britain in 1900; characterized by the promotion of labor's interests and formerly the socialization of key industries
+2488,British_Parliament,the British legislative body
+2489,British_Virgin_Islands,more than 40 northeastern Virgin Islands (15 inhabited); a dependent territory of the United Kingdom
+2490,British_West_Africa,the former British territories of western Africa, including Nigeria, Cameroon, Gambia, Togo, Sierra Leone, and the Gold Coast
+2491,British_West_Indies,the islands in the West Indies that were formerly under British control, including the Bahamas, Saint Lucia, Antigua, Grenada, Jamaica, Barbados, and Trinidad
+2492,British_capacity_unit Imperial_capacity_unit,a unit of measure for capacity officially adopted in the British Imperial System; British units are both dry and wet
+2493,British_empiricism,the predominant philosophical tradition in Great Britain since the 17th century
+2494,British_monetary_unit,monetary unit in Great Britain
+2495,British_pound pound British_pound_sterling pound_sterling quid,the basic unit of money in Great Britain and Northern Ireland; equal to 100 pence
+2496,British_shilling shilling bob,a former monetary unit in Great Britain
+2497,British_thermal_unit BTU B.Th.U.,a unit of heat equal to the amount of heat required to raise one pound of water one degree Fahrenheit at one atmosphere pressure; equivalent to 251.997 calories
+2498,Britisher Briton Brit,a native or inhabitant of Great Britain
+2499,Briton,an inhabitant of southern Britain prior to the Anglo-Saxon invasions
+2500,Brittany_spaniel,tall active short-tailed French breed of bird dog having a usually smooth orange- or liver-and-white coat
+2501,Britten Benjamin_Britten Edward_Benjamin_Britten Lord_Britten_of_Aldeburgh,major English composer of the 20th century; noted for his operas (1913-1976)
+2502,Brix_scale,a system for measuring the concentration of sugar solutions
+2503,Brno Brunn,an industrial city in Moravia in Czech Republic to the southeast of Prague
+2504,Broadway Great_White_Way,a street in Manhattan that passes through Times Square; famous for its theaters
+2505,Brobdingnag,a land imagined by Jonathan Swift where everything was enormous
+2506,Broca Pierre-Paul_Broca,French anthropologist who studied the craniums and brains of different people; remembered for his discovery that articulate speech depends on an area of the brain now known as Broca's area (1824-1880)
+2507,Broca's_area Broca's_center Broca's_gyrus Broca's_convolution convolution_of_Broca,the motor speech center in the left hemisphere of the brain in most people
+2508,Brockhouse Bertram_Brockhouse,Canadian physicist who bounced neutron beams off of atomic nuclei to study the structure of matter (1918-2003)
+2509,Brodmann's_area,one of the cortical areas mapped out on the basis of its cytoarchitecture
+2510,Broglie de_Broglie Louis_Victor_de_Broglie,French nuclear physicist who generalized the wave-particle duality by proposing that particles of matter exhibit wavelike properties (1892-1987)
+2511,Bromelia,the type genus of the family Bromeliaceae which includes tropical American plants with deeply cleft calyx
+2512,Bromeliaceae family_Bromeliaceae pineapple_family,a family of tropical American plants of order Xyridales including several (as the pineapple) of economic importance
+2513,Bromo-seltzer,an antacid
+2514,Bromus genus_Bromus,a genus of grasses of the family Gramineae
+2515,Bronte Anne_Bronte,English novelist; youngest of three Bronte sisters (1820-1849)
+2516,Bronte Charlotte_Bronte,English novelist; oldest of three Bronte sisters (1816-1855)
+2517,Bronte Emily_Bronte Emily_Jane_Bronte Currer_Bell,English novelist; one of three Bronte sisters (1818-1848)
+2518,Bronte_sisters,a 19th century family of three sisters who all wrote novels
+2519,Bronx,a borough of New York City
+2520,Bronx-Whitestone_Bridge,a suspension bridge across the East River in New York City
+2521,Bronze_Age,(archeology) a period between the Stone and Iron Ages, characterized by the manufacture and use of bronze tools and weapons
+2522,Bronze_Star_Medal Bronze_Star,a United States military decoration awarded for meritorious service (except in aerial flight)
+2523,Brooke Rupert_Brooke,English lyric poet (1887-1915)
+2524,Brooklyn,a borough of New York City
+2525,Brooklyn_Bridge,a suspension bridge across the East River in New York City; opened in 1883
+2526,Brooks Van_Wyck_Brooks,United States literary critic and historian (1886-1963)
+2527,Brosmius genus_Browmius,cusk
+2528,Brother,(Roman Catholic Church) a title given to a monk and used as form of address; "a Benedictine Brother"
+2529,Brotulidae family_Brotulidae,chiefly deep-sea fishes related to the Ophidiidae
+2530,Broussonetia genus_Broussonetia,paper mulberry
+2531,Brown John_Brown,abolitionist who was hanged after leading an unsuccessful raid at Harper's Ferry, Virginia (1800-1859)
+2532,Brown Robert_Brown,Scottish botanist who first observed the movement of small particles in fluids now known a Brownian motion (1773-1858)
+2533,Brown_Swiss,large hardy brown breed of dairy cattle from Switzerland
+2534,Brown_University Brown,a university in Rhode Island
+2535,Browne Charles_Farrar_Browne Artemus_Ward,United States writer of humorous tales of an itinerant showman (1834-1867)
+2536,Browne Hablot_Knight_Browne Phiz,English illustrator of several of Dickens' novels (1815-1882)
+2537,Brownian_movement Brownian_motion pedesis,the random motion of small particles suspended in a gas or liquid
+2538,Brownie,a junior Girl Scout
+2539,Browning Elizabeth_Barrett_Browning,English poet best remembered for love sonnets written to her husband Robert Browning (1806-1861)
+2540,Browning John_M._Browning John_Moses_Browning,United States inventor of firearms (especially automatic pistols and repeating rifles and a machine gun called the Peacemaker) (1855-1926)
+2541,Browning Robert_Browning,English poet and husband of Elizabeth Barrett Browning noted for his dramatic monologues (1812-1889)
+2542,Browning_automatic_rifle BAR,a portable .30 caliber automatic rifle operated by gas pressure and fed by cartridges from a magazine; used by United States troops in World War I and in World War II and in the Korean War
+2543,Browning_machine_gun Peacemaker,a belt-fed machine gun capable of firing more than 500 rounds per minute; used by United States troops in World War II and the Korean War
+2544,Brownshirt,a member of the Nazi SA which wore brown uniforms
+2545,Brownsville,a city in southern Texas on the Rio Grande near its mouth into the Gulf of Mexico; has a channel that accommodates oceangoing ships
+2546,Bruce David_Bruce Sir_David_Bruce,Australian physician and bacteriologist who described the bacterium that causes undulant fever or brucellosis (1855-1931)
+2547,Bruce Robert_the_Bruce Robert_I,king of Scotland from 1306 to 1329; defeated the English army under Edward II at Bannockburn and gained recognition of Scottish independence (1274-1329)
+2548,Brucella,an aerobic Gram-negative coccobacillus that causes brucellosis; can be used as a bioweapon
+2549,Bruch Max_Bruch,German composer (1838-1920)
+2550,Bruchidae family_Bruchidae,seed beetles
+2551,Bruchus genus_Bruchus,type genus of the Bruchidae
+2552,Bruckenthalia genus_Bruckenthalia,a genus containing only one species: spike heath
+2553,Bruckner Anton_Bruckner,Austrian organist and composer of romantic music (1824-1896)
+2554,Brueghel Breughel Bruegel Pieter_Brueghel Pieter_Breughel Pieter_Bruegel Breughel_the_Elder Pieter_Brueghel_the_Elder,Flemish painter of landscapes (1525-1569)
+2555,Bruges City_of_Bridges,a city in northwestern Belgium that is connected by canal to the North Sea; in the 13th century it was a leading member of the Hanseatic League; the old city (known as the City of Bridges) is a popular tourist attraction
+2556,Brugmansia genus_Brugmansia,includes some plants often placed in the genus Datura: angel's trumpets
+2557,Brule,a member of a group of Siouan people who constituted a division of the Teton Sioux
+2558,Brumaire,second month of the Revolutionary calendar (October and November); the month of mist
+2559,Brummell George_Bryan_Brummell Beau_Brummell,English dandy who was a fashion leader during the Regency (1778-1840)
+2560,Brummie Brummy,a native or resident of Birmingham, England
+2561,Brunanburh battle_of_Brunanburh,a battle in 937 when Athelstan defeated the Scots
+2562,Brunei Negara_Brunei_Darussalam,a sultanate in northwestern Borneo; became independent of Great Britain in 1984
+2563,Brunei_dollar,the basic unit of money in Brunei
+2564,Bruneian,a native or inhabitant of Brunei
+2565,Brunelleschi Filippo_Brunelleschi,Florentine architect who was the first great architect of the Italian Renaissance (1377-1446)
+2566,Brunfelsia genus_Brunfelsia,genus of tropical American shrubs grown for their flowers followed by fleshy berrylike fruits
+2567,Brunhild Brunnhilde Brynhild,a Valkyrie or a queen in the Nibelungenlied who loved the hero Siegfried; when he deceived her she had him killed and then committed suicide
+2568,Bruno Giordano_Bruno,Italian philosopher who used Copernican principles to develop a pantheistic monistic philosophy; condemned for heresy by the Inquisition and burned at the stake (1548-1600)
+2569,Bruno Saint_Bruno St._Bruno,(Roman Catholic Church) a French cleric (born in Germany) who founded the Carthusian order in 1084 (1032-1101)
+2570,Brunswick,a university town in southwestern Maine
+2571,Brunswick,a town in southeast Georgia near the Atlantic coast; a port of entry
+2572,Brunswick_stew,spicy southern specialty: chicken (or small game) with corn and tomatoes and lima beans and okra and onions and potatoes
+2573,Brussels_carpet,a carpet with a strong linen warp and a heavy pile of colored woolen yarns drawn up in uncut loops to form a pattern
+2574,Brussels_lace,fine lace with a raised or applique design
+2575,Brutus Marcus_Junius_Brutus,statesman of ancient Rome who (with Cassius) led a conspiracy to assassinate Julius Caesar (85-42 BC)
+2576,Bruxelles Brussels Belgian_capital capital_of_Belgium,the capital and largest city of Belgium; seat of the North Atlantic Treaty Organization
+2577,Brya genus_Brya,genus of prickly shrubs and small trees of the Caribbean region; source of a durable hardwood
+2578,Bryaceae family_Bryaceae,a family of acrocarpous mosses
+2579,Bryales order_Bryales,category used in some classification systems for mosses having the spore case separated from the capsule wall by a hollow intercellular space
+2580,Bryan,a town of east central Texas
+2581,Bryan William_Jennings_Bryan Great_Commoner Boy_Orator_of_the_Platte,United States lawyer and politician who advocated free silver and prosecuted John Scopes (1925) for teaching evolution in a Tennessee high school (1860-1925)
+2582,Bryce_Canyon_National_Park,a national park in Utah having multicolored rock erosions
+2583,Bryophyta division_Bryophyta,a division of nonflowering plants characterized by rhizoids rather than true roots and having little or no organized vascular tissue and showing alternation of generations between gamete-bearing forms and spore-bearing forms; comprises true mosses (Bryopsida) and liverworts (Hepaticopsida) and hornworts (Anthoceropsida)
+2584,Bryopsida class_Bryopsida Musci class_Musci,true mosses: bryophytes having leafy rather than thalloid gametophytes: comprises orders Andreaeales; Bryales; Dicranales; Eubryales; Sphagnales
+2585,Bryozoa phylum_Bryozoa polyzoa,marine or freshwater animals that form colonies of zooids
+2586,Brythonic Brittanic,a southern group of Celtic languages
+2587,Bryum genus_Bryum,type genus of the Bryaceae: mosses distinguished by mostly erect and tufted gametophytes and symmetrical short-necked capsules
+2588,Bubalus genus_Bubalus tribe_Bubalus,in some classification systems included in genus Bos; water buffaloes
+2589,Buber Martin_Buber,Israeli religious philosopher (born in Austria); as a Zionist he promoted understanding between Jews and Arabs; his writings affected Christian thinkers as well as Jews (1878-1965)
+2590,Bubo genus_Bubo,a genus of Strigidae
+2591,Bubulcus genus_Bubulcus,small white egrets
+2592,Buccinidae family_Buccinidae,whelks
+2593,Bucconidae family_Bucconidae,puffbirds
+2594,Bucephala genus_Bucephala,buffleheads and goldeneyes
+2595,Buceros genus_Buceros,type genus of the family Bucerotidae
+2596,Bucerotidae family_Bucerotidae,hornbills
+2597,Buchanan James_Buchanan President_Buchanan,15th President of the United States (1791-1868)
+2598,Bucharest Bucharesti Bucuresti capital_of_Romania,national capital and largest city of Romania in southeastern Romania
+2599,Buchenwald,a Nazi concentration camp for Jews in World War II that was located in central Germany
+2600,Buchloe genus_Buchloe,buffalo grass
+2601,Buchner Eduard_Buchner,German organic chemist who studied alcoholic fermentation and discovered zymase (1860-1917)
+2602,Buck Pearl_Buck Pearl_Sydenstricker_Buck,United States author whose novels drew on her experiences as a missionary in China (1892-1973)
+2603,Buckingham_Palace,the London residence of the British sovereign
+2604,Budapest Hungarian_capital capital_of_Hungary,capital and largest city of Hungary; located on the Danube River in north-central Hungary
+2605,Buddha,one who has achieved a state of perfect enlightenment
+2606,Buddha Siddhartha Gautama Gautama_Siddhartha Gautama_Buddha,founder of Buddhism (c 563-483 BC)
+2607,Buddhism,a religion represented by the many groups (especially in Asia) that profess various forms of the Buddhist doctrine and that venerate Buddha
+2608,Buddhism,the teaching of Buddha that life is permeated with suffering caused by desire, that suffering ceases when desire ceases, and that enlightenment obtained through right conduct and wisdom and meditation releases one from desire and suffering and rebirth
+2609,Buddhist,one who follows the teachings of Buddha
+2610,Budge Don_Budge John_Donald_Budge,United States tennis player who in 1938 was the first to win the Australian and French and English and United States singles championship in the same year (1915-2000)
+2611,Budorcas genus_Budorcas,gnu goats
+2612,Buena_Vista,a pitched battle in the Mexican War in 1847; United States forces under Zachary Taylor defeated the Mexican forces under Santa Anna at a locality in northern Mexico
+2613,Buenos_Aires capital_of_Argentina,capital and largest city of Argentina; located in eastern Argentina near Uruguay; Argentina's chief port and industrial and cultural center
+2614,Buffalo,a city on Lake Erie in western New York (near Niagara Falls)
+2615,Bufonidae family_Bufonidae,true toads
+2616,Buganda,a state of Uganda and site of a former Bantu kingdom
+2617,Bujumbura Usumbura capital_of_Burundi,the capital and largest city of Burundi; "Usumbura was renamed Bujumbura when Burundi became independent in 1962"
+2618,Bukharin Nikolai_Ivanovich_Bukharin,Bolshevik leader in Russia who advocated gradual collectivism of the farms; was executed in a purge by Stalin (1888-1938)
+2619,Bulawayo,industrial city in southwestern Zimbabwe
+2620,Bulgaria Republic_of_Bulgaria,a republic in the eastern part of the Balkan Peninsula in southeastern Europe
+2621,Bulgarian,a native or inhabitant of Bulgaria
+2622,Bulgarian,a Slavic language spoken in Bulgaria
+2623,Bulgarian_monetary_unit,monetary unit in Bulgaria
+2624,Bull_Run,a creek in northeastern Virginia where two battles were fought in the American Civil War
+2625,Bull_Run Battle_of_Bull_Run,either of two battles during the American Civil War (1861 and 1862); Confederate forces defeated the Federal army in both battles
+2626,Bullfinch Charles_Bullfinch,United States architect who designed the Capitol Building in Washington which served as a model for state capitols throughout the United States (1763-1844)
+2627,Bullock's_oriole Icterus_galbula_bullockii,western subspecies of northern oriole
+2628,Bulnesia genus_Bulnesia,palo santo
+2629,Bultmann Rudolf_Bultmann Rudolf_Karl_Bultmann,a Lutheran theologian in Germany (1884-1976)
+2630,Bumelia genus_Bumelia,deciduous or evergreen American shrubs small trees having very hard wood and milky latex
+2631,Bunche Ralph_Bunche Ralph_Johnson_Bunche,United States diplomat and United Nations official (1904-1971)
+2632,Bundesbank,the central bank of Germany
+2633,Bungarus genus_Bungarus,kraits
+2634,Bunker_Buster Guided_Bomb_Unit-28 GBU-28,a 5,000 pound laser-guided bomb that can be programmed to penetrate to a given depth before exploding; used to penetrate hardened underground facilities
+2635,Bunker_Hill battle_of_Bunker_Hill,the first important battle of the American War of Independence (1775) which was fought at Breed's Hill; the British defeated the colonial forces
+2636,Bunsen Robert_Bunsen Robert_Wilhelm_Bunsen,German chemist who with Kirchhoff pioneered spectrum analysis but is remembered mainly for his invention of the Bunsen burner (1811-1899)
+2637,Bunuel Luis_Bunuel,Spanish film director (1900-1983)
+2638,Bunyan John_Bunyan,English preacher and author of an allegorical novel, Pilgrim's Progress (1628-1688)
+2639,Bunyan Paul_Bunyan,a legendary giant lumberjack of the north woods of the United States and Canada; "Paul Bunyan had a blue ox named Babe"; "the lakes of Minnesota began when Paul Bunyan and Babe's footprints filled with water"
+2640,Bunyaviridae,a large family of arboviruses that affect a wide range of hosts (mainly vertebrates and arthropods)
+2641,Buphthalmum genus_Buphthalmum,oxeye
+2642,Bura Pabir,a Chadic language spoken south of Lake Chad
+2643,Burbage Richard_Burbage,English actor who was the first to play the leading role in several of Shakespeare's tragedies (1567-1619)
+2644,Burbank Luther_Burbank,United States horticulturist who developed many new varieties of fruits and vegetables and flowers (1849-1926)
+2645,Burberry,a lightweight belted raincoat typically made of tan gabardine with a distinctive tartan lining; named for the original manufacturer
+2646,Bureau_of_Alcohol_Tobacco_and_Firearms ATF,the law enforcement and tax collection agency of the Treasury Department that enforces federal laws concerning alcohol and tobacco products and firearms and explosives and arson
+2647,Bureau_of_Customs Customs_Bureau Customs_Service USCB,the agency of the Treasury Department that enforces import tariffs
+2648,Bureau_of_Diplomatic_Security DS,the bureau in the State Department that is responsible for the security of diplomats and embassies overseas
+2649,Bureau_of_Engraving_and_Printing,the agency of the Treasury Department that produces currency
+2650,Bureau_of_Intelligence_and_Research INR,an agency that is the primary source in the State Department for interpretive analyses of global developments and focal point for policy issues and activities of the Intelligence Community
+2651,Bureau_of_Justice_Assistance BJA,the bureau in the Department of Justice that assists local criminal justice systems to reduce or prevent crime and violence and drug abuse
+2652,Bureau_of_Justice_Statistics BJS,the agency in the Department of Justice that is the primary source of criminal justice statistics for federal and local policy makers
+2653,Bureau_of_the_Census Census_Bureau,the bureau of the Commerce Department responsible for taking the census; provides demographic information and analyses about the population of the United States
+2654,Burger Warren_Burger Warren_E._Burger Warren_Earl_Burger,United States jurist appointed chief justice of the United States Supreme Court by Richard Nixon (1907-1995)
+2655,Burgess Anthony_Burgess,English writer of satirical novels (1917-1993)
+2656,Burgoyne John_Burgoyne Gentleman_Johnny,British general in the American Revolution who captured Fort Ticonderoga but lost the battle of Saratoga in 1777 (1722-1792)
+2657,Burgundy Burgundy_wine,red table wine from the Burgundy region of France (or any similar wine made elsewhere)
+2658,Burhinidae family_Burhinidae,large wading birds resembling the plovers: stone curlews
+2659,Burhinus genus_Burhinus,type genus of the Burhinidae: stone curlews
+2660,Burk Martha_Jane_Burk Burke Martha_Jane_Burke Calamity_Jane,United States frontierswoman and legendary figure of the Wild West noted for her marksmanship (1852-1903)
+2661,Burke Edmund_Burke,British statesman famous for his oratory; pleaded the cause of the American colonists in British Parliament and defended the parliamentary system (1729-1797)
+2662,Burkina_Faso Upper_Volta,a desperately poor landlocked country in western Africa; was formerly Upper Volta under French rule but gained independence in 1960
+2663,Burkina_Faso_franc,the basic unit of money in Burkina Faso
+2664,Burlington,the largest city in Vermont; located in northwestern Vermont on Lake Champlain; site of the University of Vermont
+2665,Burma_padauk Burmese_rosewood Pterocarpus_macrocarpus,tree of India and Burma yielding a wood resembling mahogany
+2666,Burmannia genus_Burmannia,type genus of the Burmanniaceae; slender herbs of warm regions with leaves resembling scales and flowers with a three-angled or three-winged perianth
+2667,Burmanniaceae family_Burmanniaceae,family of chiefly tropical herbs with basal leaves like bracts and small flowers
+2668,Burmeisteria genus_Burmeisteria,a genus of Dasypodidae
+2669,Burmese,a native or inhabitant of Myanmar
+2670,Burmese,the official language of Burma
+2671,Burmese_cat,a short-haired breed with body similar to the Siamese cat but having a solid dark brown or grey coat
+2672,Burnett Frances_Hodgson_Burnett Frances_Eliza_Hodgson_Burnett,United States writer (born in England) remembered for her novels for children (1849-1924)
+2673,Burnham Daniel_Hudson_Burnham,United States architect who designed the first important skyscraper with a skeleton (1846-1912)
+2674,Burns George_Burns Nathan_Birnbaum,United States comedian and film actor (1896-1996)
+2675,Burns Robert_Burns,celebrated Scottish poet (1759-1796)
+2676,Burnside A._E._Burnside Ambrose_Everett_Burnside,United States general in the American Civil War who was defeated by Robert E. Lee at the Battle of Fredericksburg (1824-1881)
+2677,Burr Aaron_Burr,United States politician who served as vice president under Jefferson; he mortally wounded his political rival Alexander Hamilton in a duel and fled south (1756-1836)
+2678,Burroughs Edgar_Rice_Burroughs,United States novelist and author of the Tarzan stories (1875-1950)
+2679,Burroughs William_Burroughs William_S._Burroughs William_Seward_Burroughs,United States writer noted for his works portraying the life of drug addicts (1914-1997)
+2680,Burroughs William_Seward_Burroughs,United States inventor who patented the first practical adding machine (1855-1898)
+2681,Bursa Brusa,a city in northwestern Turkey
+2682,Bursera genus_Bursera,type genus of Burseraceae; tropical and subtropical American shrubs and trees some yielding timber and gum elemi
+2683,Burseraceae family_Burseraceae torchwood_family,resinous or aromatic chiefly tropical shrubs or trees
+2684,Burt Cyril_Burt Cyril_Lodowic_Burt,English psychologist whose studies of twins were later said to have used fabricated data (1883-1971)
+2685,Burton,a strong dark English ale
+2686,Burton Richard_Burton,Welsh film actor who often co-starred with Elizabeth Taylor (1925-1984)
+2687,Burton Richard_Burton Sir_Richard_Burton Sir_Richard_Francis_Burton,English explorer who with John Speke was the first European to explore Lake Tanganyika (1821-1890)
+2688,Burundi Republic_of_Burundi,a landlocked republic in east central Africa on the northeastern shore of Lake Tanganyika
+2689,Burundi_franc,the basic unit of money in Burundi
+2690,Burundian,a native or inhabitant of Burundi
+2691,Bush George_Bush George_H.W._Bush George_H._W._Bush George_Herbert_Walker_Bush President_Bush,vice president under Reagan and 41st President of the United States (born in 1924)
+2692,Bush George_Bush George_W._Bush George_Walker_Bush President_Bush President_George_W._Bush Dubyuh Dubya,43rd President of the United States; son of George Herbert Walker Bush (born in 1946)
+2693,Bush Vannevar_Bush,United States electrical engineer who designed an early analogue computer and who led the scientific program of the United States during World War II (1890-1974)
+2694,Bush_administration,the executive under President George H. W. Bush
+2695,Bush_administration,the executive under President George W. Bush
+2696,Bushido,traditional code of the Japanese samurai which stressed courage and loyalty and self-discipline and simple living
+2697,Bushman Khoisan,nomadic hunters and gatherers who live in southern Africa
+2698,Bushnell David_Bushnell Father_of_the_Submarine,American inventor who in 1775 designed a man-propelled submarine that was ineffectual but subsequently earned him recognition as a submarine pioneer (1742-1824)
+2699,Butea genus_Butea,genus of East Indian trees or shrubs: dhak
+2700,Buteo genus_Buteo,broad-winged soaring hawks
+2701,Butler Samuel_Butler,English novelist who described a fictitious land he called Erewhon (1835-1902)
+2702,Butler Samuel_Butler,English poet (1612-1680)
+2703,Butte,a town in southwestern Montana; center for mining copper
+2704,Butterfield William_Butterfield,English architect who designed many churches (1814-1900)
+2705,Buxaceae family_Buxaceae box_family,widely distributed evergreen shrubs and trees
+2706,Buxus genus_Buxus,type genus of the Buxaceae
+2707,Buzzards_Bay,an inlet of the Atlantic Ocean in southeastern Massachusetts
+2708,Byblos,an ancient Mediterranean seaport that was a thriving city state in Phoenicia during the second millennium BC; was the chief port for the export of papyrus; located in Lebanon to the north of Beirut; now partially excavated
+2709,Bydgoszcz Bromberg,an industrial city and river port in northern Poland
+2710,Byelorussian Belorussian White_Russian,a native or inhabitant of Byelorussia
+2711,Byrd Richard_E._Byrd Richard_Evelyn_Byrd Admiral_Byrd,explorer and United States naval officer; led expeditions to explore Antarctica (1888-1957)
+2712,Byrd William_Byrd,English organist and composer of church music; master of 16th century polyphony; was granted a monopoly in music printing with Thomas Tallis (1543-1623)
+2713,Byron Lord_George_Gordon_Byron Sixth_Baron_Byron_of_Rochdale,English romantic poet notorious for his rebellious and unconventional lifestyle (1788-1824)
+2714,Byzantine,a native or inhabitant of Byzantium or of the Byzantine Empire
+2715,Byzantine_Empire Byzantium Eastern_Roman_Empire,a continuation of the Roman Empire in the Middle East after its division in 395
+2716,Byzantine_architecture,the style of architecture developed in the Byzantine Empire developed after the 5th century; massive domes with square bases and round arches and spires and much use of mosaics
+2717,Byzantium,an ancient city on the Bosporus founded by the Greeks; site of modern Istanbul; in 330 Constantine I rebuilt the city and called it Constantinople and made it his capital
+2718,C,a general-purpose programing language closely associated with the UNIX operating system
+2719,C,(music) the keynote of the scale of C major
+2720,C c,the 3rd letter of the Roman alphabet
+2721,C-clamp,a clamp in the shape of the letter C
+2722,C-horizon C_horizon,beneath the B-horizon and above the bedrock; consisting of weathered rock
+2723,C-ration,a canned field ration issued by the United States Army
+2724,C-reactive_protein CRP,a byproduct of inflammation; a globulin that is found in the blood in some cases of acute inflammation
+2725,CD-R compact_disc_recordable CD-WO compact_disc_write-once,a compact disc on which you can write only once and thereafter is read-only memory
+2726,CD-ROM compact_disc_read-only_memory,a compact disk that is used with a computer (rather than with an audio system); a large amount of digital information can be stored and accessed but it cannot be altered by the user
+2727,CD-ROM_drive,a drive that is connected to a computer and on which a CD-ROM can be `played'
+2728,CD_drive,a drive that reads a compact disc and that is connected to an audio system
+2729,CD_player,a stand-alone piece of electronic equipment that either has its own display or attaches to a television set
+2730,CN_Tower,a tower in Toronto; 1815 feet tall for broadcasting widely
+2731,COBOL,common business-oriented language
+2732,CPU_board mother_board,the main circuit board for a computer
+2733,C_battery,battery used to maintain the grid potential in a vacuum tube
+2734,C_clef,a movable clef that puts middle C on one of the lines of a staff
+2735,C_compiler,a compiler for programs written in C
+2736,C_major C_major_scale scale_of_C_major,(music) the major scale having no sharps or flats
+2737,C_program,a program written in C
+2738,Cabalist Kabbalist,a student of the Jewish Kabbalah
+2739,Cabell James_Branch_Cabell,United States writer of satirical novels (1879-1958)
+2740,Cabernet Cabernet_Sauvignon,superior Bordeaux type of red wine
+2741,Cabernet_Sauvignon_grape,superior red wine grapes grown especially in the Bordeaux region of France and northern California
+2742,Cabomba genus_Cabomba,alternatively, a member of the family Nymphaeaceae; a small genus of American aquatic plants
+2743,Cabombaceae subfamily_Cabombaceae water-shield_family,in some classifications considered an independent family of water lilies; comprises the genera Cabomba and Brasenia
+2744,Cabot John_Cabot Giovanni_Cabato,Italian explorer who led the English expedition in 1497 that discovered the mainland of North America and explored the coast from Nova Scotia to Newfoundland (ca. 1450-1498)
+2745,Cabot Sebastian_Cabot,son of John Cabot who was born in Italy and who led an English expedition in search of the Northwest Passage and a Spanish expedition that explored the La Plata region of Brazil; in 1544 he published a map of the world (1476-1557)
+2746,Cacajao genus_Cacajao,uakaris
+2747,Cacalia genus_Cacalia,genus of tall smooth herbs of forested mountains of Europe and Asia minor; in some classifications includes many plants usually placed in genus Emilia
+2748,Cachi,a mountain in the Andes in Argentina (22,047 feet high)
+2749,Cacicus genus_Cacicus,a genus of tropical American orioles
+2750,Cactaceae family_Cactaceae cactus_family,constituting the order Opuntiales
+2751,Caddo,a group of Plains Indians formerly living in what is now North and South Dakota and Nebraska and Kansas and Arkansas and Louisiana and Oklahoma and Texas
+2752,Caddo Caddoan Caddoan_language,a family of North American Indian languages spoken widely in the Midwest by the Caddo
+2753,Cadiz,an ancient port city in southwestern Spain
+2754,Cadmus,(Greek mythology) the brother of Europa and traditional founder of Thebes in Boeotia
+2755,Cadra genus_Cadra,a genus of Pyralidae
+2756,Caeciliidae family_Caeciliidae Caeciliadae family_Caeciliadae,coextensive with the order Gymnophiona: legless amphibians
+2757,Caelum,a constellation in the southern hemisphere near Columba and Eridanus
+2758,Caenolestes genus_Caenolestes,type genus of the family Caenolestidae
+2759,Caenolestidae family_Caenolestidae,small marsupials of southern South America
+2760,Caesalpinia genus_Caesalpinia,small spiny tropical trees or shrubs; includes the small genus or subgenus Poinciana
+2761,Caesalpiniaceae family_Caesalpiniaceae,spiny trees, shrubs, or perennial herbs, including the genera Caesalpinia, Cassia, Ceratonia, Bauhinia; commonly included in the family Leguminosae
+2762,Caesalpinioideae subfamily_Caesalpinioideae,alternative name in some classification systems for the family Caesalpiniaceae
+2763,Caesar Julius_Caesar Gaius_Julius_Caesar,conqueror of Gaul and master of Italy (100-44 BC)
+2764,Caesar Sid_Caesar Sidney_Caesar,United States comedian who pioneered comedy television shows (born 1922)
+2765,Caesar_salad,typically having fried croutons and dressing made with a raw egg
+2766,Caesarea,an ancient seaport in northwestern Israel; an important Roman city in ancient Palestine
+2767,Cage John_Cage John_Milton_Cage_Jr.,United States composer of avant-garde music (1912-1992)
+2768,Cagliostro Count_Alessandro_di_Cagliostro Giuseppe_Balsamo,Italian who was famous as a magician and alchemist (1743-1795)
+2769,Cagney Jimmy_Cagney James_Cagney,United States film actor known for his portrayals of tough characters (1899-1986)
+2770,Cahita,a member of the Taracahitian people of central Mexico
+2771,Cahita,the Uto-Aztecan language of the Cahita
+2772,Cain,(Old Testament) Cain and Abel were the first children of Adam and Eve born after the Fall of Man; Cain killed Abel out of jealousy and was exiled by God
+2773,Cairene,a native or inhabitant of Cairo
+2774,Cairina genus_Cairina,a genus of Anatidae
+2775,Cairo,a town at the southern tip of Illinois at the confluence of the Ohio and Mississippi Rivers
+2776,Cairo Al_Qahira El_Qahira Egyptian_capital capital_of_Egypt,the capital of Egypt and the largest city in Africa; a major port just to the south of the Nile delta; formerly the home of the Pharaohs
+2777,Cajanus genus_Cajanus,erect densely branched shrubby perennials of Old World tropics; naturalized in other warm regions
+2778,Cajun,a Louisianian descended from Acadian immigrants from Nova Scotia (`Cajun' comes from `Acadian')
+2779,Cakchiquel,a member of the Mayan people living in south central Guatemala
+2780,Cakchiquel,the Mayan language spoken by the Cakchiquel
+2781,Cakile genus_Cakile,small genus of succulent annual herbs found on sandy shores of North America and Europe
+2782,Calabria,a region of southern Italy (forming the toe of the Italian `boot')
+2783,Caladium_bicolor,most popular caladium; cultivated in many varieties since the late 19th century
+2784,Calais,a town in northern France on the Strait of Dover that serves as a ferry port to England; in 1347 it was captured by the English king Edward III after a long siege and remained in English hands until it was recaptured by the French king Henry II in 1558
+2785,Calamagrostis genus_Calamagrostis,reed grass
+2786,Calamintha genus_Calamintha,calamint
+2787,Calamus genus_Calamus,a genus of Sparidae
+2788,Calandrinia genus_Calandrinia,large genus of low-growing herbs; widespread throughout tropical and warm temperate regions having usually basal leaves and panicles of purplish ephemeral flowers
+2789,Calder Alexander_Calder,United States sculptor who first created mobiles and stabiles (1898-1976)
+2790,Calderon Calderon_de_la_Barca Pedro_Calderon_de_la_Barca,Spanish poet and dramatist considered one of the great Spanish writers (1600-1681)
+2791,Caldwell Erskine_Caldwell Erskine_Preston_Caldwell,United States author remembered for novels about poverty and degeneration (1903-1987)
+2792,Caledonia,the geographical area (in Roman times) to the north of the Antonine Wall; now a poetic name for Scotland
+2793,Caledonian_Canal,a canal in northern Scotland that links North Sea with the Atlantic Ocean; runs diagonally between Moray Firth at the northeastern end and Loch Linnhe at the southwestern end; now little used
+2794,Calgary,the largest city in southern Alberta; an oil and gas center and a technology center for Alberta and most of western Canada
+2795,Cali,city in southwestern Colombia in a rich agricultural area
+2796,Cali_cartel,a drug cartel that seized control of cocaine production in Colombia in 1993; adopted techniques used by terrorist organizations (small cells and sophisticated communications equipment and close ties with politicians etc.)
+2797,Calidris genus_Calidris,a genus of Scolopacidae
+2798,California Golden_State CA Calif.,a state in the western United States on the Pacific; the 3rd largest state; known for earthquakes
+2799,California_Personality_Inventory CPI,a self-report personality inventory originally derived from the MMPI; consists of several hundred yes-no questions and yields scores on a number of scales including dominance and self acceptance and self control and socialization and achievement etc.
+2800,California_black_oak Quercus_kelloggii,large deciduous tree of the Pacific coast having deeply parted bristle-tipped leaves
+2801,California_black_walnut Juglans_californica,medium-sized tree with somewhat aromatic compound leaves and edible nuts
+2802,California_bluebell Phacelia_campanularia,annual of southern California with intricately branched stems and lax cymes of aromatic deep blue bell-shaped flowers
+2803,California_bluebell whitlavia Phacelia_minor Phacelia_whitlavia,desert plant of southern California with blue or violet tubular flowers in terminal racemes
+2804,California_box_elder Acer_negundo_Californicum,maple of the Pacific coast of the United States; fruits are white when mature
+2805,California_condor Gymnogyps_californianus,North American condor; chiefly dull black; almost extinct
+2806,California_four_o'clock Mirabilis_laevis Mirabilis_californica,California four o'clock with purple-red flowers
+2807,California_fuchsia humming_bird's_trumpet Epilobium_canum_canum Zauschneria_californica,shrublet of southwestern United States to Mexico having brilliant scarlet flowers
+2808,California_lady's_slipper Cypripedium_californicum,often having many yellow-green orchids with white pouches growing along streams and seeps of southwestern Oregon and northern California
+2809,California_laurel California_bay_tree Oregon_myrtle pepperwood spice_tree sassafras_laurel California_olive mountain_laurel Umbellularia_californica,Pacific coast tree having aromatic foliage and small umbellate flowers followed by olivelike fruit; yields a hard tough wood
+2810,California_newt Taricha_torosa,newt that is similar to Taricha granulosa in characteristics and habitat
+2811,California_nutmeg nutmeg-yew Torreya_californica,California evergreen having a fruit resembling a nutmeg but with a strong turpentine flavor
+2812,California_pitcher_plant Darlingtonia_californica,marsh or bog herb having solitary pendulous yellow-green flowers and somewhat twisted pitchers with broad wings below
+2813,California_poppy Eschscholtzia_californica,of Pacific coast of North America; widely cultivated for its yellow to red flowers
+2814,California_privet Ligustrum_ovalifolium,semi-evergreen Japanese shrub having malodorous flowers; used extensively for hedges because more likely to stay green that common privet
+2815,California_quail Lofortyx_californicus,plump chunky bird of coastal California and Oregon
+2816,California_redwood coast_redwood Sequoia_sempervirens,lofty evergreen of United States coastal foothills from Oregon to Big Sur; it flourishes in wet, rainy, foggy habitats
+2817,California_sagebrush California_sage Artemisia_californica,low ashy-grey California shrub
+2818,California_sea_lion Zalophus_californianus Zalophus_californicus,often trained as a show animal
+2819,California_single-leaf_pinyon Pinus_californiarum,very small tree similar to Rocky mountain pinon but having a single needle per fascicle; similar to Parry's pinyon in range
+2820,California_sycamore Platanus_racemosa,tall tree of Baja California having deciduous bark and large alternate palmately lobed leaves and ball-shaped clusters of flowers
+2821,California_whipsnake striped_racer Masticophis_lateralis,a whipsnake of scrublands and rocky hillsides
+2822,California_white_oak valley_oak valley_white_oak roble Quercus_lobata,tall graceful deciduous California oak having leathery leaves and slender pointed acorns
+2823,California_wine,any of various wines produced in California
+2824,Californian,a native or resident of California
+2825,Caligula Gaius Gaius_Caesar,Roman Emperor who succeeded Tiberius and whose uncontrolled passions resulted in manifest insanity; noted for his cruelty and tyranny; was assassinated (12-41)
+2826,Caliphate,the era of Islam's ascendancy from the death of Mohammed until the 13th century; some Moslems still maintain that the Moslem world must always have a calif as head of the community; "their goal was to reestablish the Caliphate"
+2827,Calixtus_II Guy_of_Burgundy,pope who in 1122 forced the Holy Roman Emperor Henry V to sign a concordat that recognized the right of the church to choose its own leadership (died in 1124)
+2828,Calixtus_III Borgia Alfonso_Borgia,Italian pope whose nepotism put the Borgia family in power in Italy (1378-1458)
+2829,Call,a special disposition (as if from a divine source) to pursue a particular course; "he was disappointed that he had not heard the Call"
+2830,Calla genus_Calla,water arum
+2831,Callas Maria_Callas Maria_Meneghini_Callas,Greek coloratura soprano (born in the United States) known for her dramatic intensity in operatic roles (1923-1977)
+2832,Callicebus genus_Callicebus,titis
+2833,Callimorpha genus_Callimorpha,cinnabar moths
+2834,Callinectes genus_Callinectes,New World blue crabs
+2835,Callionymidae family_Callionymidae,dragonets
+2836,Calliope,(Greek mythology) the Muse of epic poetry
+2837,Calliophis genus_Calliophis Callophis genus_Callophis,Asian coral snakes
+2838,Calliphora genus_Calliphora,type genus of the Calliphoridae: blowflies
+2839,Calliphoridae family_Calliphoridae,blowflies
+2840,Callirhoe genus_Callirhoe,small genus of North American herbs having usually red or purple flowers
+2841,Callisaurus genus_Callisaurus,zebra-tailed lizard
+2842,Callistephus genus_Callistephus,one species: erect Asiatic herb with large flowers
+2843,Callisto,the second largest of Jupiter's satellites
+2844,Callithricidae family_Callithricidae,marmosets
+2845,Callithrix genus_Callithrix,type genus of the Callithricidae: true marmosets
+2846,Callitrichaceae family_Callitrichaceae,dicot aquatic herbs
+2847,Callitriche genus_Callitriche,water starworts
+2848,Callitris genus_Callitris,evergreen monoecious coniferous trees or shrubs: cypress pines
+2849,Callorhinus genus_Callorhinus,fur seals
+2850,Calluna genus_Calluna,one species
+2851,Calocarpum genus_Calocarpum,a genus of tropical American trees of the family Sapotaceae
+2852,Calocedrus genus_Calocedrus,tall evergreens of western North America and eastern Asia; formerly included in genus Libocedrus
+2853,Calochortus genus_Calochortus,large genus of western North American leafy-stemmed bulbous herbs
+2854,Caloocan,a suburb of Manila in southwestern Luzon
+2855,Caloosahatchee Caloosahatchee_River,a river in southern Florida that flows westerly to the Gulf of Mexico; forms the western end of the Cross-Florida Waterway
+2856,Caloosahatchee_Canal,a canal that connects Lake Okeechobee with the Caloosahatchee River in southern Florida to form part of the Cross-Florida Waterway
+2857,Calophyllum genus_Calophyllum,genus of tropical evergreen trees
+2858,Calopogon genus_Calopogon,terrestrial orchids of North America
+2859,Calorie kilogram_calorie kilocalorie large_calorie nutritionist's_calorie,a unit of heat equal to the amount of heat required to raise the temperature of one kilogram of water by one degree at one atmosphere pressure; used by nutritionists to characterize the energy-producing potential in food
+2860,Caloscypha_fulgens,an early spring variety of discomycete with yellow to orange yellow lining of the cup
+2861,Calostoma_cinnabarina,a gasteromycete with a leathery stalk and a fruiting body this globose and has a red spore case
+2862,Calostoma_lutescens,a gasteromycete with a leathery stalk and a fruiting body that is globose and has a pale yellow spore case
+2863,Calostoma_ravenelii,a gasteromycete with a leathery stalk and a fruiting body with a thin gelatinous spore case and elliptical spores
+2864,Calostomataceae family_Calostomataceae,a family of fungi belonging to the order Tulostomatales
+2865,Caltha genus_Caltha,a genus of Caltha
+2866,Calvados,dry apple brandy made in Normandy
+2867,Calvary Golgotha,a hill near Jerusalem where Jesus was crucified
+2868,Calvary_clover Medicago_intertexta Medicago_echinus,an annual of the Mediterranean area having spiny seed pods and leaves with dark spots
+2869,Calvary_cross cross_of_Calvary,a Latin cross set on three steps
+2870,Calvatia genus_Calvatia,genus of puffballs having outer casings whose upper parts break at maturity into angular pieces to expose the spores
+2871,Calvin John_Calvin Jean_Cauvin Jean_Caulvin Jean_Chauvin,Swiss theologian (born in France) whose tenets (predestination and the irresistibility of grace and justification by faith) defined Presbyterianism (1509-1564)
+2872,Calvin Melvin_Calvin,United States chemist noted for discovering the series of chemical reactions in photosynthesis (1911-)
+2873,Calvinism,the theological system of John Calvin and his followers emphasizing omnipotence of God and salvation by grace alone
+2874,Calvinist Genevan,an adherent of the theological doctrines of John Calvin
+2875,Calvinistic_Baptist Particular_Baptist,group of Baptist congregations believing the teachings of the French theologian John Calvin who believed in strict predetermination
+2876,Calvino Italo_Calvino,Italian writer of novels and short stories (born in Cuba) (1923-1987)
+2877,Calycanthaceae family_Calycanthaceae calycanthus_family strawberry-shrub_family,shrubs or small trees having aromatic bark; the eastern United States and eastern Asia
+2878,Calycanthus genus_Calycanthus,a magnoliid dicot genus of the family Calycanthaceae including: allspice
+2879,Calycophyllum genus_Calycophyllum,medium to large tropical American trees having shiny reddish-brown shredding bark
+2880,Calymmatobacterium genus_Calymmatobacterium,a genus of bacterial rods containing only the one species that causes granuloma inguinale
+2881,Calymmatobacterium_granulomatis,the species of bacteria that causes granuloma inguinale
+2882,Calypso,(Greek mythology) the sea nymph who detained Odysseus for seven years
+2883,Calystegia genus_Calystegia,climbing or scrambling herbs: bindweed
+2884,Cam River_Cam Cam_River,a river in east central England that flows past Cambridge to join the Ouse River
+2885,Camassia genus_Camassia Quamassia genus_Quamassia,genus of scapose herbs of North and South America having large edible bulbs
+2886,Cambarus genus_Cambarus,a genus of Astacidae
+2887,Cambodia Kingdom_of_Cambodia Kampuchea,a nation in southeastern Asia; was part of Indochina under French rule until 1946
+2888,Cambodian Kampuchean,a native or inhabitant of Cambodia
+2889,Cambodian_monetary_unit,monetary unit in Cambodia
+2890,Cambrian Cambrian_period,from 544 million to about 500 million years ago; marine invertebrates
+2891,Cambrian_Mountains,a rugged plateau that runs north to south through central Wales
+2892,Cambridge,a city in Massachusetts just to the north of Boston; site of Harvard University and the Massachusetts Institute of Technology
+2893,Cambridge,a city in eastern England on the River Cam; site of Cambridge University
+2894,Cambridge_University Cambridge,a university in England
+2895,Camden,a city in southwestern New Jersey on the Delaware River near Philadelphia
+2896,Camelidae family_Camelidae,camels and llamas and vicunas
+2897,Camelina genus_Camelina false_flax,annual and biennial herbs of Mediterranean to central Asia
+2898,Camelot,(Arthurian legend) the capital of King Arthur's kingdom; according to the legend, truth and goodness and beauty reigned there
+2899,Camelus genus_Camelus,type genus of the Camelidae: camels
+2900,Camembert,rich soft creamy French cheese
+2901,Cameroon,an inactive volcano in western Cameroon; highest peak on the West African coast
+2902,Cameroon Republic_of_Cameroon Cameroun,a republic on the western coast of central Africa; was under French and British control until 1960
+2903,Cameroon_franc,the basic unit of money in Cameroon
+2904,Cameroonian,a native or inhabitant of Cameroon
+2905,Camlan,(Arthurian legend) the battlefield where King Arthur was mortally wounded
+2906,Camorra,a secret society in Naples notorious for violence and blackmail
+2907,Camp_David,a retreat to the northwest of Washington that is used by the president of the United States
+2908,Campania,a region of southwestern Italy on the Tyrrhenian Sea including the islands of Capri and Ischia
+2909,Campanulaceae family_Campanulaceae bellflower_family,family of plants of the order Campanulales; in some classifications includes Lobeliaceae
+2910,Campanulales order_Campanulales,an order of plants of the subclass Asteridae including: Campanulaceae; Lobeliaceae; Cucurbitaceae; Goodeniaceae; Compositae
+2911,Campbell Joseph_Campbell,United States mythologist (1904-1987)
+2912,Campeche,a Mexican city on the Bay of Campeche
+2913,Campeche,a Mexican state on the eastern part of the Gulf of Campeche
+2914,Campephilus genus_Campephilus,a genus of Picidae
+2915,Campfire_Girl,a girl who is a member of Campfire Girls; for girls age 7-18
+2916,Camponotus genus_Camponotus,carpenter ants
+2917,Camptosorus genus_Camptosorus,classification used in some especially former systems for plants usually placed in genus Asplenium
+2918,Campyloneurum genus_Campyloneurum,epiphytic ferns of tropical America
+2919,Campylorhynchus genus_Campylorhynchus Heleodytes genus_Heleodytes,alternative classifications for the cactus wrens
+2920,Camus Albert_Camus,French writer who portrayed the human condition as isolated in an absurd world (1913-1960)
+2921,Canaanite,a member of an ancient Semitic people who occupied Canaan before it was conquered by the Israelites
+2922,Canaanite,the extinct language of the Semitic people who occupied Canaan before the Israelite conquest
+2923,Canaanitic Canaanitic_language,a group of Semitic languages
+2924,Canachites genus_Canachites,spruce grouse
+2925,Canada,a nation in northern North America; the French were the first Europeans to settle in mainland Canada; "the border between the United States and Canada is the longest unguarded border in the world"
+2926,Canada_anemone Anemone_Canadensis,common summer-flowering woodland herb of Labrador to Colorado
+2927,Canada_balsam,yellow transparent exudate of the balsam fir; used as a transparent cement in optical devices (especially in microscopy) and as a mounting medium
+2928,Canada_garlic meadow_leek rose_leek Allium_canadense,North American bulbous plant
+2929,Canada_ginger black_snakeroot Asarum_canadense,deciduous low-growing perennial of Canada and eastern and central United States
+2930,Canada_jay grey_jay gray_jay camp_robber whisker_jack Perisoreus_canadensis,a jay of northern North America with black-capped head and no crest; noted for boldness in thievery
+2931,Canada_lily wild_yellow_lily meadow_lily wild_meadow_lily Lilium_canadense,common lily of the eastern United States having nodding yellow or reddish flowers spotted with brown
+2932,Canada_lynx Lynx_canadensis,of northern North America
+2933,Canada_plum Prunus_nigra,small tree native to northeastern North America having oblong orange-red fruit
+2934,Canada_porcupine Erethizon_dorsatum,porcupine of northeastern North America with barbed spines concealed in the coarse fur; often gnaws buildings for salt and grease
+2935,Canada_thistle creeping_thistle Cirsium_arvense,European thistle naturalized in United States and Canada where it is a pernicious weed
+2936,Canada_violet tall_white_violet white_violet Viola_canadensis,tall North American perennial with heart-shaped leaves and white flowers with purple streaks
+2937,Canada_wild_rye Elymus_canadensis,North American wild rye
+2938,Canadian,a native or inhabitant of Canada
+2939,Canadian Canadian_River,a river rising in northeastern New Mexico and flowing eastward across the Texas panhandle to become a tributary of the Arkansas River in Oklahoma
+2940,Canadian_Falls Horseshoe_Falls,a part of Niagara Falls in Ontario
+2941,Canadian_French,the French language as spoken in Quebec, Canada
+2942,Canadian_Security_Intelligence_Service CSIS,Canada's main foreign intelligence agency that gathers and analyzes information to provide security intelligence for the Canadian government
+2943,Canadian_aspen bigtooth_aspen bigtoothed_aspen big-toothed_aspen large-toothed_aspen large_tooth_aspen Populus_grandidentata,aspen with a narrow crown; eastern North America
+2944,Canadian_bacon,from a boned strip of cured loin
+2945,Canadian_dollar loonie,the basic unit of money in Canada; "the Canadian dollar has the image of loon on one side of the coin"
+2946,Canadian_pondweed Elodea_canadensis,North American waterweed; widely naturalized in Europe
+2947,Canadian_province,Canada is divided into 12 provinces for administrative purposes
+2948,Canandaigua_Lake Lake_Canandaigua,a glacial lake in central New York; one of the Finger Lakes
+2949,Cananga genus_Cananga Canangium genus_Canangium,a genus of Malayan tree
+2950,Canary_Island_hare's_foot_fern Davallia_canariensis,fern of the Canary Islands and Madeira
+2951,Canary_Islands Canaries,a group of mountainous islands in the Atlantic off the northwest coast of Africa forming Spanish provinces
+2952,Canary_wine,a sweet white wine from the Canary Islands
+2953,Canavalia genus_Canavalia,herbs or woody vines of mainly American tropics and subtropics
+2954,Canberra Australian_capital capital_of_Australia,the capital of Australia; located in southeastern Australia
+2955,Cancer,a small zodiacal constellation in the northern hemisphere; between Leo and Gemini
+2956,Cancer Cancer_the_Crab Crab,the fourth sign of the zodiac; the sun is in this sign from about June 21 to July 22
+2957,Cancer Crab,(astrology) a person who is born while the sun is in Cancer
+2958,Cancer genus_Cancer,type genus of the family Cancridae
+2959,Cancridae family_Cancridae,many of the best known edible crabs
+2960,Cancun,a popular island resort off the northeastern tip of the Yucatan peninsula
+2961,Candida_albicans Monilia_albicans,a parasitic fungus that can infect the mouth or the skin or the intestines or the vagina
+2962,Candlemas Candlemas_Day Feb_2,feast day commemorating the presentation of Christ in the temple; a quarter day in Scotland
+2963,Canellaceae family_Canellaceae canella_family,one genus: aromatic tropical trees of eastern Africa and Florida to West Indies
+2964,Canetti Elias_Canetti,English writer born in Germany (1905-1994)
+2965,Canidae family_Canidae,dogs; wolves; jackals; foxes
+2966,Canis genus_Canis,type genus of the Canidae: domestic and wild dogs; wolves; jackals
+2967,Canis_Major Great_Dog,a constellation to the southeast of Orion; contains Sirius
+2968,Canis_Minor Little_Dog,a constellation to the east of Orion; contains Procyon
+2969,Cannabidaceae family_Cannabidaceae hemp_family,two genera of erect or twining herbs that are pollinated by the wind, including the genera Cannabis and Humulus; term not used in all classifications; in some the genus Cannabis is placed in the family Moraceae and the genus Humulus in the family Urticaceae
+2970,Cannaceae family_Cannaceae,coextensive with the genus Canna
+2971,Cannae,ancient city is southeastern Italy where Hannibal defeated the Romans in 216 BC
+2972,Cannes,a port and resort city on the French Riviera; site of an annual film festival
+2973,Canopus,supergiant star 650 light years from Earth; second brightest star in the sky
+2974,Cantabrian_Mountains,a range of mountains in northern Spain along the coast of the Bay of Biscay
+2975,Cantabrigian,a resident of Cambridge
+2976,Canterbury,a town in Kent in southeastern England; site of the cathedral where Thomas a Becket was martyred in 1170; seat of the archbishop and primate of the Anglican Church
+2977,Canterbury_Tales,an uncompleted series of tales written after 1387 by Geoffrey Chaucer
+2978,Canterbury_bell Gloxinia_perennis,herb of Colombia to Peru having pale purple flowers
+2979,Canterbury_bell cup_and_saucer Campanula_medium,European biennial widely cultivated for its blue or violet or white flowers
+2980,Cantharellus genus_Cantharellus,a well-known genus of fungus; has funnel-shaped fruiting body; includes the chanterelles
+2981,Canticle_of_Simeon Nunc_dimittis,the prayer of Simeon (Luke 2:29-32)
+2982,Canton_crepe,a soft thick crinkled dress crepe; heavier than crepe de Chine
+2983,Canuck,informal term for Canadians in general and French Canadians in particular
+2984,Canute Cnut Knut Canute_the_Great,king of Denmark and Norway who forced Edmund II to divide England with him; on the death of Edmund II, Canute became king of all England (994-1035)
+2985,Canyonlands_National_Park,a national park in Utah having rock formations and ancient cliff dwellings; canyons of the Green River and the Colorado River
+2986,Cape_Ann,a Massachusetts peninsula to the north of Boston extending into the Atlantic Ocean
+2987,Cape_Breton_Island,an island that forms the northeastern part of Nova Scotia
+2988,Cape_Canaveral Cape_Kennedy,a sandy promontory (formerly Cape Kennedy) extending into the Atlantic Ocean from a barrier island off the eastern coast of Florida; the site of a NASA center for spaceflight
+2989,Cape_Cod,a Massachusetts peninsula to the south of Boston extending into the Atlantic; a popular resort area
+2990,Cape_Cod_Bay,the southern part of Massachusetts Bay
+2991,Cape_Cod_Canal,a canal connecting Cape Cod Bay with Buzzards Bay
+2992,Cape_Fear,a cape in southeastern North Carolina extending into the Atlantic Ocean
+2993,Cape_Fear_River,a river in North Carolina that flows southeast to the Atlantic Ocean at Cape Fear
+2994,Cape_Flattery,a cape of northwestern Washington
+2995,Cape_Froward,a cape on the Strait of Magellan in southern Chile; the most southern point on the mainland of South America
+2996,Cape_Girardeau,a town in southeast Missouri
+2997,Cape_Hatteras,a promontory on Hatteras Island off the Atlantic coast of North Carolina; "frequent storms drive ships to their destruction on Cape Hatteras"
+2998,Cape_Horn,a rocky headland belonging to Chile at the southernmost tip of South America (south of Tierra del Fuego)
+2999,Cape_May,a cape of southeast New Jersey extending into the Atlantic Ocean
+3000,Cape_May_warbler Dendroica_tigrina,North American wood warbler; olive green and yellow striped with black
+3001,Cape_Passero Passero_Cape,a cape that forms the southeastern corner of the island of Sicily
+3002,Cape_Province Cape_of_Good_Hope_Province Cape_Colony,a former province of southern South Africa that was settled by the Dutch in 1652 and ceded to Great Britain in 1814; in 1994 it was split into three new provinces of South Africa
+3003,Cape_Sable,a cape at the southwest tip of Florida; the southernmost part of the United States mainland
+3004,Cape_Sable,a promontory on the far southern part of Nova Scotia
+3005,Cape_Town,port city in southwestern South Africa; the seat of the legislative branch of the government of South Africa
+3006,Cape_Trafalgar,a small cape in southwestern Spain; "Nelson defeated the French and Spanish fleets off Cape Trafalgar in 1805"
+3007,Cape_Verde Republic_of_Cape_Verde,an island country in the Atlantic off the coast of Senegal
+3008,Cape_Verde_Islands,a group of islands in the Atlantic off of the coast of Senegal
+3009,Cape_Verde_escudo escudo,the basic unit of money on Cape Verde; equal to 100 centavos
+3010,Cape_Verde_monetary_unit,monetary unit on Cape Verde
+3011,Cape_York,the northern tip of Cape York Peninsula at the Torres Strait; the northernmost point of the Australian mainland
+3012,Cape_York_Peninsula,a peninsula in Queensland in northeastern Australia between the Gulf of Carpentaria and the Coral Sea
+3013,Cape_buffalo Synercus_caffer,large often savage buffalo of southern Africa having upward-curving horns; mostly in game reserves
+3014,Cape_lobster Homarus_capensis,small lobster of southern Africa
+3015,Cape_of_Good_Hope,a point of land in southwestern South Africa (south of Cape Town)
+3016,Cape_of_Good_Hope,a province of western South Africa
+3017,Cape_primrose,any of various African plants of the genus Streptocarpus widely cultivated especially as houseplants for their showy blue or purple flowers
+3018,Cape_tulip Haemanthus_coccineus,spectacular plant having large prostrate leaves barred in reddish-purple and flowers with a clump of long yellow stamens in a coral-red cup of fleshy bracts; South Africa
+3019,Capek Karel_Capek,Czech writer who introduced the word `robot' into the English language (1890-1938)
+3020,Capella,the brightest star in Auriga
+3021,Capet Hugh_Capet,King of France elected in 987 and founding the Capetian dynasty (940-996)
+3022,Capetian,a member of the Capetian dynasty
+3023,Capetian_dynasty,a Frankish dynasty founded by Hugh Capet that ruled from 987 to 1328
+3024,Capital Washington,the federal government of the United States
+3025,Capitol Capitol_Building,the government building in Washington where the United States Senate and the House of Representatives meet
+3026,Capitol_Hill the_Hill,a hill in Washington, D.C., where the Capitol Building sits and Congress meets; "they are debating the budget today on Capitol Hill"
+3027,Capitol_Reef_National_Park,a national park in Utah having colorful rock formations and desert plants and wildlife
+3028,Capitonidae family_Capitonidae,barbets
+3029,Capone Al_Capone Alphonse_Capone Scarface,United States gangster who terrorized Chicago during prohibition until arrested for tax evasion (1899-1947)
+3030,Caporetto battle_of_Caporetto,battle of World War I (1917); Italians were defeated by the Austrian and German forces
+3031,Cappadocia,an ancient country is eastern Asia Minor
+3032,Capparidaceae family_Capparidaceae caper_family,a dilleniid dicot family of the order Rhoeadales that includes: genera Capparis, Cleome, Crateva, and Polanisia
+3033,Capparis genus_Capparis,tropical or subtropical evergreen shrubs or small trees
+3034,Capra Frank_Capra,United States film maker (1897-1991)
+3035,Capra genus_Capra,goats
+3036,Caprella genus_Caprella,skeleton shrimp
+3037,Capreolus genus_Capreolus,roe deer
+3038,Capri,an island (part of Campania) in the Bay of Naples in southern Italy; a tourist attraction noted for beautiful scenery
+3039,Capricorn Capricorn_the_Goat Goat,the tenth sign of the zodiac; the sun is in this sign from about December 22 to January 19
+3040,Capricorn Goat,(astrology) a person who is born while the sun is in Capricorn
+3041,Capricornis genus_Capricornis,serows
+3042,Capricornus Capricorn,a faint zodiacal constellation in the southern hemisphere; between Sagittarius and Aquarius
+3043,Caprifoliaceae family_Caprifoliaceae honeysuckle_family,shrubs and small trees and woody vines
+3044,Caprimulgidae family_Caprimulgidae,goatsuckers
+3045,Caprimulgiformes order_Caprimulgiformes,goatsuckers; frogmouths; oilbirds
+3046,Caprimulgus genus_Caprimulgus,type genus of the Caprimulgidae
+3047,Caproidae family_Caproidae,boarfishes
+3048,Capromyidae family_Capromyidae,coypus
+3049,Capros genus_Capros,a genus of fish in the family Caproidae
+3050,Capsella genus_Capsella,shepherd's purse
+3051,Carabidae family_Carabidae,ground beetles
+3052,Caracas capital_of_Venezuela,the capital and largest city of Venezuela
+3053,Carangidae family_Carangidae,large family of narrow-bodied marine food fishes with widely forked tails; chiefly of warm seas
+3054,Caranx genus_Caranx,type genus of the Carangidae
+3055,Carapidae family_Carapidae,pearlfishes: related to the Brotulidae
+3056,Carassius genus_Carassius,goldfish
+3057,Caravaggio Michelangelo_Merisi_da_Caravaggio,Italian painter noted for his realistic depiction of religious subjects and his novel use of light (1573-1610)
+3058,Carboloy,an alloy based on tungsten with cobalt or nickel as a binder; used in making metal-cutting tools
+3059,Carbondale,a town in southern Illinois
+3060,Carboniferous Carboniferous_period,from 345 million to 280 million years ago
+3061,Carcharhinidae family_Carcharhinidae,largest family of living sharks; found worldwide especially in tropical waters; dorsal fin lacks spines: requiem sharks including tiger sharks and soupfin sharks
+3062,Carcharhinus genus_Carcharhinus,type genus of the Carcharhinidae
+3063,Carcharias genus_Carcharias Odontaspis genus_Odontaspis,type and sole genus of Carchariidae: sand sharks
+3064,Carchariidae family_Carchariidae Odontaspididae family_Odontaspididae,sand sharks; in some classifications coextensive with family Carcharhinidae
+3065,Carcharodon genus_Carcharodon,man-eating sharks
+3066,Cardamine genus_Cardamine,bittercress, bitter cress
+3067,Cardiff,the capital and largest city of Wales
+3068,Cardigan Cardigan_Welsh_corgi,slightly bowlegged variety of corgi having rounded ears and a long tail
+3069,Cardiidae family_Cardiidae,somewhat heart-shaped sand-burrowing bivalve mollusks
+3070,Cardiospermum genus_Cardiospermum,tendril-climbing herbs or shrubs whose seeds have a white heart-shaped spot
+3071,Cardium genus_Cardium,type genus of the family Cardiidae: cockles
+3072,Carducci Giosue_Carducci,Italian poet considered the national poet of modern Italy (1835-1907)
+3073,Carduelinae subfamily_Carduelinae,used in some classifications for a subgroup of finches
+3074,Carduelis genus_Carduelis,in some classifications considered the type genus of a subfamily Carduelinae of the family Fringillidae: goldfinches; siskins; redpolls; linnets
+3075,Carduus genus_Carduus,genus of annual or perennial Old World prickly thistles
+3076,Caretta genus_Caretta,loggerhead turtles
+3077,Carew Thomas_Carew,Englishman and Cavalier poet whose lyric poetry was favored by Charles I (1595-1639)
+3078,Carex genus_Carex,large genus of plants found in damp woodlands and bogs and ditches or at water margins: sedges
+3079,Cariama genus_Cariama,the type genus of the Cariamidae comprising only the crested cariama
+3080,Cariamidae family_Cariamidae,crane-like South American wading birds
+3081,Carib Carib_Indian,a member of an American Indian peoples of northeastern South America and the Lesser Antilles
+3082,Carib Caribbean_language,the family of languages spoken by the Carib
+3083,Caribbean,region including the Caribbean Islands
+3084,Caribbean Caribbean_Sea,an arm of the Atlantic Ocean between North and South America; the origin of the Gulf stream
+3085,Caribbean_Island,an island in the Caribbean Sea
+3086,Carica genus_Carica,type genus of the Caricaceae; tropical American trees: papayas
+3087,Caricaceae family_Caricaceae papaya_family,trees native to tropical America and Africa with milky juice and large palmately lobed leaves
+3088,Carina,a keel-shaped constellation in the southern hemisphere; contains the star Canopus
+3089,Carioca,a native or inhabitant of Rio de Janeiro
+3090,Carl_XVI_Gustav Carl_XVI_Gustaf,king of Sweden since 1973 (born 1946)
+3091,Carlina genus_Carlina,genus of Mediterranean thistles
+3092,Carlsbad,a town in southeastern New Mexico on the Pecos River near the Mexican border; potash deposits
+3093,Carlsbad_Caverns,a group of caverns in southeastern New Mexico noted for their stalactites and stalagmites
+3094,Carlsbad_Caverns_National_Park,a national park in New Mexico featuring what is probably the world's largest cavern with spectacular underground formations
+3095,Carlyle Thomas_Carlyle,Scottish historian who wrote about the French Revolution (1795-1881)
+3096,Carmelite White_Friar,a Roman Catholic friar wearing the white cloak of the Carmelite order; mendicant preachers
+3097,Carmelite_order Order_of_Our_Lady_of_Mount_Carmel,a Roman Catholic mendicant order founded in the 12th century
+3098,Carmichael Hoagy_Carmichael Hoagland_Howard_Carmichael,United States songwriter (1899-1981)
+3099,Carnegie Andrew_Carnegie,United States industrialist and philanthropist who endowed education and public libraries and research trusts (1835-1919)
+3100,Carnegie Dale_Carnegie,United States educator famous for writing a book about how to win friends and influence people (1888-1955)
+3101,Carnegie_Mellon_University,an engineering university in Pittsburgh
+3102,Carnegiea genus_Carnegiea,caryophylloid dicot genus with only one species: saguaro
+3103,Carniolan_bee,greyish highly productive European honeybee that has a quiet disposition
+3104,Carnivora order_Carnivora,cats; lions; tigers; panthers; dogs; wolves; jackals; bears; raccoons; skunks; and members of the suborder Pinnipedia
+3105,Carnosaura suborder_Carnosaura,largest carnivorous land animals ever known
+3106,Carnot Sadi_Carnot Nicolas_Leonard_Sadi_Carnot,French physicist who founded thermodynamics (1796-1832)
+3107,Carnot_cycle Carnot's_ideal_cycle,a cycle (of expansion and compression) of an idealized reversible heat engine that does work without loss of heat
+3108,Carolina Carolinas,the area of the states of North Carolina and South Carolina
+3109,Carolina_allspice strawberry_shrub strawberry_bush sweet_shrub Calycanthus_floridus,hardy shrub of southeastern United States having clove-scented wood and fragrant red-brown flowers
+3110,Carolina_buckthorn indian_cherry Rhamnus_carolinianus,deciduous shrub of eastern and central United States having black berrylike fruit; golden-yellow in autumn
+3111,Carolina_chickadee Parus_carolinensis,southern United States chickadee similar to the blackcap but smaller
+3112,Carolina_hemlock Tsuga_caroliniana,medium-sized evergreen of southeastern United States having spreading branches and widely diverging cone scales
+3113,Carolina_lupine Thermopsis_villosa,eastern United States bush pea
+3114,Carolina_moonseed Cocculus_carolinus,woody vine of southeastern United States resembling the common moonseed but having red fruits
+3115,Carolina_parakeet Conuropsis_carolinensis,extinct parakeet whose range extended far into the United States
+3116,Carolina_spring_beauty Claytonia_caroliniana,similar to Claytonia virginica but having usually pink flowers; eastern North America
+3117,Carolina_wren Thryothorus_ludovicianus,large United States wren with a musical call
+3118,Caroline_Islands,a long archipelago of more than 500 islands in Micronesia to the east of the Philippines
+3119,Carolingian Carlovingian,a member of the Carolingian dynasty
+3120,Carolingian_dynasty Carlovingian_dynasty,a Frankish dynasty founded by Charlemagne's father that ruled from 751 to 987
+3121,Carolinian,a native or resident of the Carolinas
+3122,Carothers Wallace_Carothers Wallace_Hume_Carothers,United States chemist who developed nylon (1896-1937)
+3123,Carpathians Carpathian_Mountains,a mountain range in central Europe that extends from Slovakia and southern Poland southeastward through western Ukraine to northeastern Romania; a popular resort area
+3124,Carphophis genus_Carphophis,thunder snake
+3125,Carpinaceae subfamily_Carpinaceae family_Carpinaceae,used in some classification systems for the genera Carpinus, Ostryopsis, and Ostryopsis
+3126,Carpinus genus_Carpinus,mostly deciduous monoecious trees or shrubs: hornbeams; sometimes placed in subfamily Carpinaceae
+3127,Carpobrotus genus_Carpobrotus,a caryophyllaceous genus of Carpobrotus
+3128,Carpocapsa genus_Carpocapsa,codling moths
+3129,Carpodacus genus_Carpodacus,house finches and purple finches
+3130,Carrel Alexis_Carrel,French surgeon and biologist who developed a way to suture and graft blood vessels (1873-1944)
+3131,Carrere John_Merven_Carrere,United States architect who with his partner Thomas Hastings designed many important public buildings (1858-1911)
+3132,Carroll Lewis_Carroll Dodgson Reverend_Dodgson Charles_Dodgson Charles_Lutwidge_Dodgson,English author; Charles Dodgson was an Oxford don of mathematics who is remembered for the children's stories he wrote under the pen name Lewis Carroll (1832-1898)
+3133,Carson Kit_Carson Christopher_Carson,United States frontiersman who guided Fremont's expeditions in the 1840s and served as a Union general in the American Civil War (1809-1868)
+3134,Carson Rachel_Carson Rachel_Louise_Carson,United States biologist remembered for her opposition to the use of pesticides that were hazardous to wildlife (1907-1964)
+3135,Carson_City capital_of_Nevada,capital of the state of Nevada; located in western Nevada
+3136,Cartagena,a port in southeastern Spain on the Mediterranean
+3137,Cartagena,a port city in northwestern Colombia on the Caribbean
+3138,Cartagena_bark Cinchona_cordifolia Cinchona_lancifolia,Colombian tree; source of Cartagena bark (a cinchona bark)
+3139,Carter Howard_Carter,Englishman and Egyptologist who in 1922 discovered and excavated the tomb of Tutankhamen (1873-1939)
+3140,Carter Jimmy_Carter James_Earl_Carter James_Earl_Carter_Jr. President_Carter,39th President of the United States (1924-)
+3141,Carter_administration,the executive under President Carter
+3142,Cartesian,a follower of Cartesian thought
+3143,Cartesian_coordinate,one of the coordinates in a system of coordinates that locates a point on a plane or in space by its distance from two lines or three planes respectively; the two lines or the intersections of the three planes are the coordinate axes
+3144,Cartesian_coordinate_system,a coordinate system for which the coordinates of a point are its distances from a set perpendicular lines that intersect at the origin of the system
+3145,Cartesian_plane,a plane in which all points can be described in Cartesian coordinates
+3146,Carthage,an ancient city state on the north African coast near modern Tunis; founded by Phoenicians; destroyed and rebuilt by Romans; razed by Arabs in 697
+3147,Carthaginian,a native or inhabitant of ancient Carthage
+3148,Carthamus genus_Carthamus,safflower
+3149,Carthusian,a member of the Carthusian order
+3150,Carthusian_order,an austere contemplative Roman Catholic order founded by St. Bruno in 1084
+3151,Cartier Jacques_Cartier,French explorer who explored the St. Lawrence river and laid claim to the region for France (1491-1557)
+3152,Cartwright Edmund_Cartwright,English clergyman who invented the power loom (1743-1823)
+3153,Carum genus_Carum,caraway
+3154,Caruso Enrico_Caruso,outstanding Italian operatic tenor (1873-1921)
+3155,Carver George_Washington_Carver,United States botanist and agricultural chemist who developed many uses for peanuts and soy beans and sweet potatoes (1864-1943)
+3156,Carya genus_Carya,genus of large deciduous nut-bearing trees; United States and China
+3157,Caryocar genus_Caryocar,type genus of the Caryocaraceae; South American trees yielding strong fine-grained wood and edible nuts
+3158,Caryocaraceae family_Caryocaraceae,small genus of tropical South American trees
+3159,Caryophyllaceae family_Caryophyllaceae carnation_family pink_family,large family of herbs or subshrubs (usually with stems swollen at the nodes)
+3160,Caryophyllales order_Caryophyllales Chenopodiales order-Chenopodiales,corresponds approximately to the older group Centrospermae
+3161,Caryophyllidae subclass_Caryophyllidae,a group of families of mostly flowers having basal or central placentation and trinucleate pollen (binucleate pollen is commoner in flowering plants); contains 14 families including: Caryophyllaceae (carnations and pinks); Aizoaceae; Amaranthaceae; Batidaceae; Chenopodiaceae; Cactaceae (order Opuntiales); Nyctaginaceae; Phytolaccaceae; corresponds approximately to order Caryophyllales; sometimes classified as a superorder
+3162,Caryota genus_Caryota,fishtail palms
+3163,Casablanca,a port on the Atlantic and the largest city of Morocco
+3164,Casals Pablo_Casals,an outstanding Spanish cellist noted for his interpretation of Bach's cello suites (1876-1973)
+3165,Casanova,any man noted for his amorous adventures
+3166,Casanova Giovanni_Jacopo_Casanova Casanova_de_Seingalt Giovanni_Jacopo_Casanova_de_Seingalt,an Italian adventurer who wrote vivid accounts of his sexual encounters (1725-1798)
+3167,Cascades Cascade_Range Cascade_Mountains,a mountain range in the northwestern United States extending through Washington and Oregon and northern California; a part of the Coast Range
+3168,Cash Johnny_Cash John_Cash,United States country music singer and songwriter (1932-2003)
+3169,Cashmere_goat Kashmir_goat,Himalayan goat having a silky undercoat highly prized as cashmere wool
+3170,Casmerodius genus_Casmerodius,a white egrets
+3171,Caspar Gaspar,(New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus
+3172,Casper,a city of east central Wyoming on the North Platte river
+3173,Caspian Caspian_Sea,a large saltwater lake between Iran and Russia fed by the Volga River; the largest inland body of water in the world
+3174,Cassandra,(Greek mythology) a prophetess in Troy during the Trojan War whose predictions were true but were never believed
+3175,Cassegrainian_telescope Gregorian_telescope,a reflecting telescope that has a paraboloidal primary mirror and a hyperboloidal secondary mirror; light is brought to a focus through an aperture in the center of the primary mirror
+3176,Cassin's_kingbird Tyrannus_vociferans,a kingbird seen in the southwestern United States; largely grey with a yellow abdomen
+3177,Cassiope genus_Cassiope,low tufted evergreen shrubs of colder parts of north temperate regions having moss-like foliage and nodding white or pink flowers
+3178,Cassiopeia,(Greek mythology) the wife of Cepheus and mother of Andromeda
+3179,Cassiopeia,a W-shaped constellation in the northern hemisphere near Polaris
+3180,Cassirer Ernst_Cassirer,German philosopher concerned with concept formation in the human mind and with symbolic forms in human culture generally (1874-1945)
+3181,Cassius Cassius_Longinus Gaius_Cassius_Longinus,prime mover in the conspiracy against Julius Caesar (died in 42 BC)
+3182,Castanea genus_Castanea,chestnuts; chinkapins
+3183,Castanopsis genus_Castanopsis,evergreen trees and shrubs of warm regions valued for their foliage; southeastern United States and eastern Australia and northern New Zealand
+3184,Castanospermum genus_Castanospermum,a rosid dicot genus of the subfamily Papilionoideae having one species: Moreton Bay chestnut
+3185,Castile Castilla,a region of central Spain; a former kingdom that comprised most of modern Spain and united with Aragon to form Spain in 1479
+3186,Castilian,the Spanish language as spoken in Castile
+3187,Castilleja genus_Castilleja Castilleia genus_Castilleia,genus of western North and South American perennials often partially parasitic on roots of grasses
+3188,Castillian,a native or inhabitant of Castile
+3189,Castor Alpha_Geminorum,a multiple star with 6 components; second brightest in Gemini; close to Pollux
+3190,Castor genus_Castor,type genus of the Castoridae: beavers
+3191,Castoridae family_Castoridae,beavers
+3192,Castoroides genus_Castoroides,extinct beavers of the Pleistocene; of eastern and southern United States
+3193,Castries,a port on the island of Saint Lucia; capital and largest city of Saint Lucia
+3194,Castro Fidel_Castro Fidel_Castro_Ruz,Cuban socialist leader who overthrew a dictator in 1959 and established a Marxist socialist state in Cuba (born in 1927)
+3195,Castroism,a form of communism developed in Cuba by Fidel Castro
+3196,Casualty_Care_Research_Center CCRC,an agency in the Department of Defense that is a national center for research on all aspects of injury control and casualty care
+3197,Casuaridae family_Casuaridae,a family of large ostrich-like birds including cassowaries
+3198,Casuariiformes order_Casuariiformes,a ratite bird order: cassowaries and emus
+3199,Casuarinaceae family_Casuarinaceae,one genus: genus Casuarina
+3200,Casuarinales order_Casuarinales,order of chiefly Australian trees and shrubs comprising the casuarinas; 1 family: Casuarinaceae
+3201,Casuarius genus_Casuarius,type and sole genus of the Casuaridae: cassowaries
+3202,Catacala genus_Catacala,moths whose larvae are cutworms: underwings
+3203,Catalan,a native or inhabitant of Catalonia
+3204,Catalan,the Romance language spoken in Catalonia in eastern Spain (related to Spanish and Occitan)
+3205,Catalina_cherry Prunus_lyonii,evergreen shrub or small tree found on Catalina Island (California)
+3206,Catalonia,a region of northeastern Spain
+3207,Catalpa_bignioides,catalpa tree of southern United States
+3208,Catalpa_speciosa,catalpa tree of central United States
+3209,Cataract_Canyon,a tributary of the Grand Canyon
+3210,Catasetum genus_Catasetum,genus of tropical American orchids having showy male and female flowers usually on separate inflorescences
+3211,Catawba,a member of the Siouan people formerly living in the Carolinas
+3212,Catawba,slipskin grape; a reddish American table grape
+3213,Catawba,the Siouan language spoken by the Catawba
+3214,Caterpillar cat,a large tracked vehicle that is propelled by two endless metal belts; frequently used for moving earth in construction and farm work
+3215,Catha genus_Catha,a genus of African evergreen shrubs characterized by thick leaves and white flowers
+3216,Catha_edulis,a shrub that is cultivated by Arabs for its leaves which are chewed or used to make tea
+3217,Catharacta genus_Catharacta,skuas
+3218,Catharanthus genus_Catharanthus,small genus of erect annual or perennial herbs native to Madagascar; widely naturalized in the tropics; formerly included in genus Vinca
+3219,Cathartes genus_Cathartes,type genus of the Cathartidae: turkey vultures
+3220,Cathartidae family_Cathartidae,condors; turkey buzzards; king vultures
+3221,Cathaya,Chinese evergreen conifer discovered in 1955; not yet cultivated elsewhere
+3222,Cather Willa_Cather Willa_Sibert_Cather,United States writer who wrote about frontier life (1873-1947)
+3223,Catherine_I,empress of Russia who succeeded her husband Peter the Great (1684-1727)
+3224,Catherine_II Catherine Catherine_the_Great,empress of Russia who greatly increased the territory of the empire (1729-1796)
+3225,Catherine_de_Medicis,queen of France as the wife of Henry II and regent during the minority of her son Charles IX (1519-1589)
+3226,Catherine_of_Aragon Catherine,first wife of Henry VIII; Henry VIII's divorce from her was the initial step of the Reformation in England (1485-1536)
+3227,Catholic,a member of a Catholic church
+3228,Catholic_Church,any of several churches claiming to have maintained historical continuity with the original Christian Church
+3229,Catholic_school,a parochial school maintained by the Catholic Church
+3230,Catholicism Catholicity,the beliefs and practices of a Catholic Church
+3231,Catholicos,the ecclesiastical title of the leaders of the Nestorian and Armenian churches
+3232,Catoptrophorus genus_Catoptrophorus,willet
+3233,Catostomidae family_Catostomidae,suckers; closely related to the family Cyprinidae
+3234,Catostomus genus_Catostomus,type genus of the family Catostomidae
+3235,Catskills Catskill_Mountains,a range of the Appalachians to the west of the Hudson in southeastern New York; includes many popular resort areas
+3236,Cattell James_McKeen_Cattell,American psychologist and editor (1860-1944)
+3237,Cattell Ray_Cattell R._B._Cattell Raymond_B._Cattell Raymond_Bernard_Cattell,American psychologist (born in England) who developed a broad theory of human behavior based on multivariate research (1905-1998)
+3238,Catullus Gaius_Valerius_Catullus,Roman lyric poet remembered for his love poems to an aristocratic Roman woman (84-54 BC)
+3239,Caucasia Caucasus,a large region between the Black and Caspian seas that contains the Caucasus Mountains; oil is its major resource
+3240,Caucasian Caucasian_language,a number of languages spoken in the Caucasus that are unrelated to languages spoken elsewhere
+3241,Caucasian_walnut Pterocarya_fraxinifolia,medium-sized Caucasian much-branched tree distinguished from other walnut trees by its winged fruit
+3242,Caucasus Caucasus_Mountains,the mountain range in Caucasia between the Black Sea and the Caspian Sea that forms part of the traditional border between Europe and Asia
+3243,Caudine_Forks,a battle in the Apennines in 321 BC in which the Samnites defeated the Romans
+3244,Caulophyllum genus_Caulophyllum,blue cohosh
+3245,Cavalier Royalist,a royalist supporter of Charles I during the English Civil War
+3246,Cavell Edith_Cavell Edith_Louisa_Cavell,English nurse who remained in Brussels after the German occupation in order to help Allied prisoners escape; was caught and executed by the Germans (1865-1915)
+3247,Cavendish Henry_Cavendish,British chemist and physicist who established that water is a compound of hydrogen and oxygen and who calculated the density of the earth (1731-1810)
+3248,Cavia genus_Cavia,type genus of the Caviidae: guinea pigs
+3249,Caviidae family_Caviidae,a family of Hystricomorpha
+3250,Caxton William_Caxton,English printer who in 1474 printed the first book in English (1422-1491)
+3251,Cayman_Islands,a British colony in the Caribbean to the northwest of Jamaica; an international banking center
+3252,Cayman_Islands_dollar,the basic unit of money in the Cayman Islands
+3253,Cayuga,a member of an Iroquoian people formerly living around Cayuga Lake in New York State
+3254,Cayuga,the Iroquoian language spoken by the Cayuga
+3255,Cayuga_Lake Lake_Cayuga,a glacial lake in central New York; the longest of the Finger Lakes
+3256,Cebidae family_Cebidae,all the New World monkeys except marmosets and tamarins
+3257,Cebu,one of the Visayan islands of the central Philippines; important for its fine harbor
+3258,Cebu Cebu_City,an important seaport on the island of Cebu in the Philippines
+3259,Cebuan,inhabitant of the island of Cebu; a member of the Visayan people of the Philippines
+3260,Cebuan Cebuano,language of the people of Cebu in the Philippines; its lexicon contributes to the official language of the Philippines
+3261,Cebuella genus_Cebuella,pygmy marmosets
+3262,Cebus genus_Cebus,type genus of the Cebidae
+3263,Cecidomyidae family_Cecidomyidae,gall midges
+3264,Cecropia genus_Cecropia,large genus of tropical American trees that yield a bast fiber used for cordage and bark used in tanning; milky juice yields caoutchouc
+3265,Cecropiaceae family_Cecropiaceae,in some classifications included in family Moraceae
+3266,Cedar_Rapids,a city in eastern Iowa
+3267,Cedrela genus_Cedrela,tropical American trees
+3268,Cedrus genus_Cedrus,true cedars
+3269,Ceiba genus_Ceiba,tropical American trees with palmately compound leaves and showy bell-shaped flowers
+3270,Celastraceae family_Celastraceae spindle-tree_family staff-tree_family,trees and shrubs and woody vines usually having bright-colored fruits
+3271,Celastrus genus_Celastrus,genus of woody vines and erect shrubs (type genus of the Celastraceae) that is native chiefly to Asia and Australia: includes bittersweet
+3272,Celebes Sulawesi,a mountainous island in eastern Indonesia
+3273,Celestial_City City_of_God Heavenly_City Holy_City,phrases used to refer to Heaven; "the Celestial City was Christian's goal in Bunyan's `Pilgrim's Progress'"
+3274,Cellini Benvenuto_Cellini,Italian sculptor (1500-1571)
+3275,Celosia genus_Celosia,annual or perennial herbs or vines of tropical and subtropical America and Asia and Africa
+3276,Celsius Anders_Celsius,Swedish astronomer who devised the centigrade thermometer (1701-1744)
+3277,Celsius_scale international_scale centigrade_scale,a temperature scale that defines the freezing point of water as 0 degrees and the boiling point of water as 100 degrees
+3278,Celt Kelt,a member of a European people who once occupied Britain and Spain and Gaul prior to Roman times
+3279,Celtic Celtic_language,a branch of the Indo-European languages that (judging from inscriptions and place names) was spread widely over Europe in the pre-Christian era
+3280,Celtic_cross,a Latin cross with a ring surrounding the intersection
+3281,Celtic_deity,a deity worshipped by the Celts
+3282,Celtis genus_Celtis,large genus of trees and shrubs with berrylike fruit
+3283,Cenchrus genus_Cenchrus,a genus of grasses of the family Gramineae that have burs
+3284,Cenozoic Cenozoic_era Age_of_Mammals,approximately the last 63 million years
+3285,Centaurea genus_Centaurea,knapweed; star thistle
+3286,Centaurium genus_Centaurium,genus of low-growing herbs mostly of northern hemisphere having flowers with protruding spirally twisted anthers
+3287,Centaurus Centaur,a conspicuous constellation in the southern hemisphere near the Southern Cross
+3288,Center_for_Disease_Control_and_Prevention CDC,a federal agency in the Department of Health and Human Services; located in Atlanta; investigates and diagnoses and tries to control or prevent diseases (especially new and unusual diseases)
+3289,Centigrade_thermometer,a thermometer calibrated in degrees centigrade
+3290,Central_African_Republic Central_Africa,a landlocked country in central Africa; formerly under French control; became independent in 1960
+3291,Central_African_Republic_franc,the basic unit of money in the Central African Republic
+3292,Central_America,the isthmus joining North America and South America; extends from the southern border of Mexico to the northern border of Colombia
+3293,Central_America,the nations of Central America collectively
+3294,Central_American,a native or inhabitant of Central America
+3295,Central_American_country Central_American_nation,any one of the countries occupying Central America; these countries (except for Belize and Costa Rica) are characterized by low per capita income and unstable governments
+3296,Central_American_strap_fern narrow-leaved_strap_fern Campyloneurum_augustifolium,fern with shorter and narrower leaves than Florida strap fern; Florida to West Indies and Mexico and south to Argentina
+3297,Central_Dravidian,a Dravidian language spoken primarily in central India
+3298,Central_Intelligence_Agency CIA,an independent agency of the United States government responsible for collecting and coordinating intelligence and counterintelligence activities abroad in the national interest; headed by the Director of Central Intelligence under the supervision of the President and National Security Council
+3299,Central_Intelligence_Machinery CIM,the United Kingdom's central unit for the tasking and coordination and funding of intelligence and security agencies
+3300,Central_Park,a large park in Manhattan
+3301,Central_Powers,in World War I the alliance of Germany and Austria-Hungary and other nations allied with them in opposing the Allies
+3302,Central_Time Central_Standard_Time CST,standard time in the 6th time zone west of Greenwich, reckoned at the 90th meridian; used in the central United States
+3303,Centranthus genus_Centranthus,genus of southern European herbs and subshrubs
+3304,Centrarchidae family_Centrarchidae,sunfish family
+3305,Centre,a low-lying region in central France
+3306,Centriscidae family_Centriscidae,shrimpfishes
+3307,Centrocercus genus_Centrocercus,sage grouse
+3308,Centrolobium genus_Centrolobium,a genus of Centrolobium
+3309,Centropomidae family_Centropomidae,a family of fish or the order Perciformes including robalos
+3310,Centropomus genus_Centropomus,type genus of the Centropomidae: snooks
+3311,Centropristis genus_Centropristis,sea basses
+3312,Centropus genus_Centropus,a genus of Cuculidae
+3313,Centrosema genus_Centrosema,a genus of chiefly tropical American vines of the family Leguminosae having trifoliate leaves and large flowers
+3314,Centrospermae group_Centrospermae,used in former classification systems; approximately synonymous with order Caryophyllales
+3315,Centunculus genus_Centunculus,a dicotyledonous genus of the family Primulaceae
+3316,Cephalanthera genus_Cephalanthera,small genus of temperate Old World terrestrial orchids
+3317,Cephalobidae family_Cephalobidae,a family of Nematoda
+3318,Cephalochordata subphylum_Cephalochordata,lancelets
+3319,Cephalopoda class_Cephalopoda,octopuses; squids; cuttlefish; pearly nautilus
+3320,Cephalopterus genus_Cephalopterus,a genus of Cotingidae
+3321,Cephalotaceae family_Cephalotaceae,a family of plants of order Rosales; coextensive with the genus Cephalotus
+3322,Cephalotaxaceae family_Cephalotaxaceae plum-yew_family,a family of Cephalotaxaceae
+3323,Cephalotaxus genus_Cephalotaxus,the genus of Cephalotaxus (see plum-yews)
+3324,Cephalotus genus_Cephalotus,one species: Australian pitcher plant
+3325,Cepheus,(Greek mythology) king of Ethiopia and husband of Cassiopeia
+3326,Cepheus,a faint constellation in the northern hemisphere near Cassiopeia and the pole star
+3327,Cepphus genus_Cepphus,a genus of birds including: guillemots
+3328,Cerambycidae family_Cerambycidae,long-horned beetles
+3329,Cerapteryx genus_Cerapteryx,antler moths
+3330,Cerastium genus_Cerastium,mouse-eared chickweed
+3331,Ceratitis genus_Ceratitis,Mediterranean fruit flies
+3332,Ceratodontidae family_Ceratodontidae,lungfishes having hornlike ridges on the teeth
+3333,Ceratonia genus_Ceratonia,carobs
+3334,Ceratopetalum genus_Ceratopetalum,a dicotyledonous genus of the family Cunoniaceae
+3335,Ceratophyllaceae family_Ceratophyllaceae,coextensive with the genus Ceratophyllum: hornworts
+3336,Ceratophyllum genus_Ceratophyllum,constituting the family Ceratophyllaceae: hornworts
+3337,Ceratopogon genus_Ceratopogon,type genus of the Ceratopogonidae
+3338,Ceratopogonidae family_Ceratopogonidae,biting midges; sand flies
+3339,Ceratopsia suborder_Ceratopsia,horned dinosaurs
+3340,Ceratopsidae family_Ceratopsidae,American ceratopsian dinosaurs
+3341,Ceratopteris genus_Ceratopteris,water ferns
+3342,Ceratostomataceae family_Ceratostomataceae,fungi having carbonous perithecia with long necks
+3343,Ceratostomella genus_Ceratostomella,genus of fungi forming continuous hyaline spores
+3344,Ceratotherium genus_Ceratotherium,African genus
+3345,Cerberus hellhound,(Greek mythology) the three-headed dog guarding the entrance to Hades; son of Typhon
+3346,Cercidiphyllaceae family_Cercidiphyllaceae,one genus
+3347,Cercidiphyllum genus_Cercidiphyllum,one species: katsura tree
+3348,Cercidium genus_Cercidium,spiny shrubs or small trees sometimes placed in genus Parkinsonia: paloverde
+3349,Cercis genus_Cercis,deciduous shrubs and trees of eastern Asia, southern Europe and the United States
+3350,Cercocebus genus_Cercocebus,mangabeys
+3351,Cercopidae family_Cercopidae,froghoppers or spittlebugs
+3352,Cercopithecidae family_Cercopithecidae,Old World monkeys: guenon; baboon; colobus monkey; langur; macaque; mandrill; mangabey; patas; proboscis monkey
+3353,Cercopithecus genus_Cercopithecus,type genus of the Cercopithecidae: guenons
+3354,Cercospora genus_Cercospora,form genus of imperfect fungi that are leaf parasites with long slender spores
+3355,Cercosporella genus_Cercosporella,form genus of imperfect fungi lacking pigment in the spores and conidiophores
+3356,Ceres,(Roman mythology) goddess of agriculture; counterpart of Greek Demeter
+3357,Ceres,the largest asteroid and the first discovered
+3358,Cereus genus_Cereus,genus of much-branched treelike or shrubby cacti with pronounced ribs and rounded needlelike spines and nocturnal flowers usually white
+3359,Ceroxylon genus_Ceroxylon,wax palms
+3360,Certhia genus_Certhia,type genus of the Certhiidae
+3361,Certhiidae family_Certhiidae,creepers
+3362,Cervantes Miguel_de_Cervantes Cervantes_Saavedra Miguel_de_Cervantes_Saavedra,Spanish writer best remembered for `Don Quixote' which satirizes chivalry and influenced the development of the novel form (1547-1616)
+3363,Cervidae family_Cervidae,deer: reindeer; moose or elks; muntjacs; roe deer
+3364,Cervus genus_Cervus,the type genus of the Cervidae
+3365,Ceryle genus_Ceryle,a genus of birds of the family Alcedinidae
+3366,Cestida order_Cestida,ctenophore having short tentacles; one family
+3367,Cestidae family_Cestidae,coextensive with the order Cestida; ctenophores having a greatly flattened and elongated body
+3368,Cestoda class_Cestoda,tapeworms
+3369,Cestrum genus_Cestrum,genus of fragrant tropical American shrubs
+3370,Cestum genus_Cestum,Venus's girdle
+3371,Cetacea order_Cetacea,an order of Eutheria
+3372,Ceterach genus_Ceterach,small genus of Old World ferns; superseded in some classification systems which place plants of this genus in e.g. genera Asplenium and Pleurosorus
+3373,Cetonia genus_Cetonia,a genus of Cetoniidae
+3374,Cetoniidae subfamily_Cetoniidae,considered a separate family in some classification systems
+3375,Cetorhinidae family_Cetorhinidae,in some older classifications considered the family of the basking sharks
+3376,Cetorhinus genus_Cetorhinus,comprising only the basking sharks; in some classifications considered the type genus of a separate family Cetorhinidae
+3377,Cetraria genus_Cetraria,foliose lichens chiefly of northern latitudes
+3378,Cetus,a large constellation on the equator near Pisces and Aquarius
+3379,Ceylon,an island in the Indian Ocean off the southeastern coast of India
+3380,Ceylon_bowstring_hemp Sansevieria_zeylanica,plant having thick fibrous leaves transversely banded in light and dark green
+3381,Ceylonite pleonaste,a dark-colored spinel containing iron
+3382,Cezanne Paul_Cezanne,French Post-impressionist painter who influenced modern art (especially cubism) by stressing the structural components latent in nature (1839-1906)
+3383,Chabad Chabad_Hasidism,a form of Hasidism practiced by Lithuanian and Russian Jews under communist rule; the beliefs and practices of the Lubavitch movement
+3384,Chablis,a town in north central France noted for white Burgundy wines
+3385,Chablis white_Burgundy,dry white table wine of Chablis, France or a wine resembling it
+3386,Chad Chadic Chadic_language,a family of Afroasiatic tonal languages (mostly two tones) spoken in the regions west and south of Lake Chad in north central Africa
+3387,Chad Republic_of_Chad Tchad,a landlocked desert republic in north-central Africa; was under French control until 1960
+3388,Chadian,a native or inhabitant of Chad
+3389,Chadian_franc,the basic unit of money in Chad
+3390,Chaenomeles genus_Chaenomeles,flowering quince
+3391,Chaenopsis genus_Chaenopsis,a genus of fish of the family Clinidae including pikeblennies
+3392,Chaeronea,a battle in which Philip II of Macedon defeated the Athenians and Thebans (338 BC) and also Sulla defeated Mithridates (86 BC)
+3393,Chaetodipterus genus_Chaetodipterus,a genus of Ephippidae
+3394,Chaetodontidae family_Chaetodontidae,butterfly fishes
+3395,Chaetognatha phylum_Chaetognatha,arrowworms: a group of small active transparent marine worms
+3396,Chagall Marc_Chagall,French painter (born in Russia) noted for his imagery and brilliant colors (1887-1985)
+3397,Chagatai Jagatai Jaghatai Eastern_Turki,a Turkic literary language of medieval central Asia (named for one of the sons of Genghis Khan)
+3398,Chain Ernst_Boris_Chain Sir_Ernst_Boris_Chain,British biochemist (born in Germany) who isolated and purified penicillin, which had been discovered in 1928 by Sir Alexander Fleming (1906-1979)
+3399,Chait Caitra,the first Hindu calendar month (corresponding to March in the Gregorian calendar)
+3400,Chalcedon Council_of_Chalcedon,the fourth ecumenical council in 451 which defined the two natures (human and divine) of Christ
+3401,Chalcedon Kadikoy,a former town on the Bosporus (now part of Istanbul); site of the Council of Chalcedon
+3402,Chalcididae family_Chalcididae Chalcidae family_Chalcidae,an arthropod family including: chalcidflies
+3403,Chalcis genus_Chalcis,type genus of the Chalcididae
+3404,Chalcostigma genus_Chalcostigma,thornbills
+3405,Chaldea Chaldaea,an ancient region of Mesopotamia lying between the Euphrates delta and the Persian Gulf and the Arabian Desert; settled in 1000 BC and destroyed by the Persians in 539 BC; reached the height of its power under Nebuchadnezzar II
+3406,Chaldean Chaldaean Chaldee,a wise man skilled in occult learning
+3407,Chaldean Chaldaean Chaldee,an inhabitant of ancient Chaldea
+3408,Chalons Chalons-sur-Marne,the battle in which Attila the Hun was defeated by the Romans and Visigoths in 451
+3409,Chamaea genus_Chamaea,a genus of Paridae
+3410,Chamaecrista genus_Chamaecrista,genus of tropical herbs or subshrubs having sensitive leaves and suddenly dehiscing pods; some species placed in genus Cassia
+3411,Chamaecyparis genus_Chamaecyparis,a genus of Chamaecyparis
+3412,Chamaecytisus genus_Chamaecytisus,small late-flowering trees or subshrubs having yellow to red flowers and leathery or woody pods; often especially formerly included in genus Cytisus
+3413,Chamaedaphne genus_Chamaedaphne,one species: leatherleaf
+3414,Chamaeleo genus_Chamaeleo genus_Chamaeleon,type genus of the Chamaeleontidae
+3415,Chamaeleon Chameleon,a faint constellation in the polar region of the southern hemisphere near Apus and Mensa
+3416,Chamaeleontidae family_Chamaeleontidae Chamaeleonidae family_Chamaeleonidae Rhiptoglossa family_Rhiptoglossa,Old World chameleons; in some classifications they are considered a superfamily of Sauria
+3417,Chamaemelum genus_Chamaemelum,small genus of plants sometimes included in genus Anthemis: chamomile
+3418,Chamberlain Neville_Chamberlain Arthur_Neville_Chamberlain,British statesman who as Prime Minister pursued a policy of appeasement toward fascist Germany (1869-1940)
+3419,Chambers William_Chambers Sir_William_Chambers,English architect (1723-1796)
+3420,Champagne Champagne-Ardenne,a region of northeastern France
+3421,Champaign,a university town in east central Illinois adjoining Urbana
+3422,Champlain Samuel_de_Champlain,French explorer in Nova Scotia who established a settlement on the site of modern Quebec (1567-1635)
+3423,Champollion Jean_Francois_Champollion,Frenchman and Egyptologist who studied the Rosetta Stone and in 1821 became the first person to decipher Egyptian hieroglyphics (1790-1832)
+3424,Champs_Elysees,a major avenue in Paris famous for elegant shops and cafes
+3425,Chancellor_of_the_Exchequer Chancellor,the British cabinet minister responsible for finance
+3426,Chancellorsville,a village in northeastern Virginia
+3427,Chancellorsville,a major battle in the American Civil War (1863); the Confederates under Robert E. Lee defeated the Union forces under Joseph Hooker
+3428,Chandi,malevolent aspect of Devi; "the fierce"
+3429,Chandler Raymond_Chandler Raymond_Thornton_Chandler,United States writer of detective thrillers featuring the character of Philip Marlowe (1888-1959)
+3430,Chang_Jiang Changjiang Chang Yangtze Yangtze_River Yangtze_Kiang,the longest river of Asia; flows eastward from Tibet into the East China Sea near Shanghai
+3431,Chang_Kuo Chang_Kuo-lao,one of the 8 immortals of Taoism
+3432,Changtzu,a mountain in the central Himalayas on the border of Tibet and Nepal (24,780 feet high)
+3433,Channel_Island,any of a group of British islands in the English Channel off the northern coast of France
+3434,Channel_Islands_National_Park,a national park in California featuring sea birds and marine life
+3435,Channidae class_Channidae,snakeheads
+3436,Chao_Phraya,a river in Thailand formed by the confluence of the Nan and Ping Rivers; flows southward past Bangkok and empties into the Gulf of Thailand
+3437,Chaos,(Greek mythology) the most ancient of gods; the personification of the infinity of space preceding creation of the universe
+3438,Chapel_Hill,a town in central North Carolina; site of the University of North Carolina
+3439,Chaplin Charlie_Chaplin Sir_Charles_Spencer_Chaplin,English comedian and film maker; portrayed a downtrodden little man in baggy pants and bowler hat (1889-1977)
+3440,Chapman John_Chapman Johnny_Appleseed,United States pioneer who planted apple trees as he traveled (1774-1845)
+3441,Chapultepec,a pitched battle in the Mexican War that resulted in a major victory for American forces over Mexican forces at a locality south of Mexico City (1847)
+3442,Chara genus_Chara,green algae common in freshwater lakes of limestone districts
+3443,Characeae family_Characeae,green algae superficially resembling horsetail ferns: stoneworts
+3444,Characidae family_Characidae,tropical freshwater fishes of Africa and South America and Central America
+3445,Characinidae family_Characinidae,former name of the Characidae
+3446,Charadrii suborder_Charadrii,shorebirds: plovers; sandpipers; avocets; phalaropes; coursers; stone curlews
+3447,Charadriidae family_Charadriidae,plover family
+3448,Charadriiformes order_Charadriiformes,large diverse order of aquatic birds found along seacoasts and inland waters: shorebirds and coastal diving birds; most feed on anima life
+3449,Charadrius genus_Charadrius,type genus of the Charadriidae: plovers
+3450,Charales order_Charales,small order of macroscopic fresh and brackish water algae with a distinct axis: stoneworts
+3451,Charcot Jean_Martin_Charcot,French neurologist who tried to use hypnotism to cure hysteria (1825-1893)
+3452,Charcot-Marie-Tooth_disease hereditary_motor_and_sensory_neuropathy,a form of neuropathy that can begin between childhood and young adulthood; characterized by weakness and atrophy of the muscles of the hands and lower legs; progression is slow and individuals affected can have a normal life span; inheritance is X-linked recessive or X-linked dominant
+3453,Chardonnay Pinot_Chardonnay,dry white table wine resembling Chablis but made from Chardonnay grapes
+3454,Chardonnay chardonnay_grape,white wine grape
+3455,Chari-Nile,a group of Nilo-Saharan language spoken in parts of the Sudan and Zaire and Uganda and Tanzania
+3456,Charina genus_Charina,boas of western North America
+3457,Charlemagne Carolus Charles Charles_I Charles_the_Great,king of the Franks and Holy Roman Emperor; conqueror of the Lombards and Saxons (742-814)
+3458,Charleroi,city in southwestern Belgium; center of an industrial region
+3459,Charles Charles_I Charles_Stuart,son of James I who was King of England and Scotland and Ireland; was deposed and executed by Oliver Cromwell (1600-1649)
+3460,Charles Charles_II,King of England and Scotland and Ireland during the Restoration (1630-1685)
+3461,Charles Charles_II Charles_I Charles_the_Bald,as Charles II he was Holy Roman Emperor and as Charles I he was king of France (823-877)
+3462,Charles Charles_IX,King of France from 1560 to 1574 whose reign was dominated by his mother Catherine de Medicis (1550-1574)
+3463,Charles Charles_River,a river in eastern Massachusetts that empties into Boston Harbor and that separates Cambridge from Boston
+3464,Charles Charles_VII,King of France who began his reign with most of northern France under English control; after the intervention of Jeanne d'Arc the French were able to defeat the English and end the Hundred Years' War (1403-1461)
+3465,Charles Jacques_Charles Jacques_Alexandre_Cesar_Charles,French physicist and author of Charles's law which anticipated Gay-Lussac's law (1746-1823)
+3466,Charles Prince_Charles,the eldest son of Elizabeth II and heir to the English throne (born in 1948)
+3467,Charleston,a port city in southeastern South Carolina
+3468,Charleston,an American ballroom dance in syncopated rhythm; popular early in the 20th century
+3469,Charleston capital_of_West_Virginia,state capital of West Virginia in the central part of the state on the Kanawha river
+3470,Charlestown,a former town and present-day neighborhood of Boston; settled in 1629
+3471,Charlestown_Navy_Yard,the navy yard in Boston where the frigate `Constitution' is anchored
+3472,Charlotte Queen_City,the largest city in North Carolina; located in south central North Carolina
+3473,Charlottetown,the provincial capital and largest city of Prince Edward Island
+3474,Charolais,large white or cream-colored breed from France
+3475,Charon,(Greek mythology) the ferryman who brought the souls of the dead across the river Styx or the river Acheron to Hades
+3476,Charophyceae class_Charophyceae,in some classifications: contains only the order Charales
+3477,Charronia genus_Charronia,a genus of Mustelidae
+3478,Chartism,the principles of a body of 19th century English reformers who advocated better social and economic conditions for working people
+3479,Chartist,a 19th century English reformer who advocated better social and economic conditions for working people
+3480,Chartres,a town in northern France that is noted for its Gothic Cathedral
+3481,Chartres_Cathedral,a Gothic cathedral in northern France; built in 13th century
+3482,Chartreuse,aromatic green or yellow liqueur flavored with orange peel and hyssop and peppermint oils; made at monastery near Grenoble, France
+3483,Charybdis,(Greek mythology) a ship-devouring whirlpool lying on the other side of a narrow strait from Scylla
+3484,Chase Salmon_P._Chase Salmon_Portland_Chase,United States politician and jurist who served as chief justice of the United States Supreme Court (1808-1873)
+3485,Chateaubriand,a very thick center cut of beef tenderloin
+3486,Chateaubriand Francois_Rene_Chateaubriand Vicomte_de_Chateaubriand,French statesman and writer; considered a precursor of the romantic movement in France (1768-1848)
+3487,Chateura genus_Chateura,a genus of Apodidae
+3488,Chattahoochee Chattahoochee_River,a river rising in northern Georgia and flowing southwest and south to join the Flint River at the Florida border where they form the Apalachicola River
+3489,Chattanooga,a city in eastern Tennessee
+3490,Chattanooga battle_of_Chattanooga,in the American Civil War (1863) the Union armies of Hooker, Thomas, and Sherman under the command of Ulysses S. Grant won a decisive victory over the Confederate Army under Braxton Bragg
+3491,Chaucer Geoffrey_Chaucer,English poet remembered as author of the Canterbury Tales (1340-1400)
+3492,Chauna genus_Chauna,crested screamers
+3493,Chavez Carlos_Chavez,Mexican composer of nationalistic works using themes from Indian folk music (1899-1978)
+3494,Chavez Cesar_Chavez Cesar_Estrada_Chavez,United States labor leader who organized farm workers (born 1927)
+3495,Chechen,a native or inhabitant of Chechnya
+3496,Chechen,a northern Caucasian language spoken by the Chechen
+3497,Chechnya Chechenia Chechen_Republic,an autonomous republic in southwestern Russia in the northern Caucasus Mountains bordering on Georgia; declared independence from the USSR in 1991 but Russian troops invaded and continue to prosecute a relentless military campaign in the largely Muslim republic
+3498,Cheddar,a village in southwestern England where cheddar cheese was first made
+3499,Cheever John_Cheever,United States writer of novels and short stories (1912-1982)
+3500,Cheilanthes genus_Cheilanthes,small evergreen ferns: lipferns; in some classifications placed in family Polypodiaceae or Adiantaceae
+3501,Cheiranthus genus_Cheiranthus,Old World perennial plants grown for their showy flowers
+3502,Chekhov Chekov Anton_Chekhov Anton_Chekov Anton_Pavlovich_Chekhov Anton_Pavlovich_Chekov,Russian dramatist whose plays are concerned with the difficulty of communication between people (1860-1904)
+3503,Chelicerata superclass_Chelicerata,spiders; scorpions; horseshoe crabs
+3504,Chelidonium genus_Chelidonium,one species: greater celandine
+3505,Chelifer genus_Chelifer,a genus of Chelonethida
+3506,Chelone genus_Chelone,herbaceous perennials: shellflower
+3507,Chelonethida order_Chelonethida Pseudoscorpionida order_Pseudoscorpionida Pseudoscorpiones order_Pseudoscorpiones,false scorpions
+3508,Chelonia genus_Chelonia,green turtles
+3509,Chelonia order_Chelonia Testudinata order_Testudinata Testudines order_Testudines,tortoises and turtles
+3510,Cheloniidae family_Cheloniidae Chelonidae family_Chelonidae,green turtles; hawksbills
+3511,Chelyabinsk,a city in the Asian part of Russia
+3512,Chelydra genus_Chelydra,snapping turtles
+3513,Chelydridae family_Chelydridae,snapping turtles
+3514,Chemakuan,a group of Mosan languages spoken in Washington
+3515,Chemakum,a Chemakuan language spoken by the Chemakum
+3516,Chemical_Weapons_Convention,a global treaty banning the production or acquisition or stockpiling or transfer or use of chemical weapons
+3517,Chemnitz Karl-Marx-Stadt,a city in east central Germany; formerly called Karl-Marx-Stadt until 1990; noted for textile manufacturing
+3518,Chemnitzer_concertina,a hand-held and bellows-driven accordion
+3519,Chen subgenus_Chen,wild goose having white adult plumage
+3520,Chenin_blanc,white grape grown especially in California and the lower Loire valley of France
+3521,Chenin_blanc,made in California and the Loire valley in France
+3522,Chennai Madras,a city in Tamil Nadu on the Bay of Bengal; formerly Madras
+3523,Chenopodiaceae family_Chenopodiaceae goosefoot_family,includes spinach and beets
+3524,Chenopodium genus_Chenopodium,goosefoot; pigweed
+3525,Cheops Khufu,Egyptian Pharaoh of the 27th century BC who commissioned the Great Pyramid at Giza
+3526,Cherbourg,a port town in northwestern France on the English Channel; site of a naval base
+3527,Cheremis Cheremiss Mari,a member of a rural Finnish people living in eastern Russia
+3528,Cheremis Cheremiss Mari,the Finnic language spoken by the Cheremis
+3529,Cherepovets,a city of east central Russia to the north of Moscow
+3530,Chernobyl,a city in north central Ukraine; site of a major disaster at a nuclear power plant (26 April 1986)
+3531,Cherokee,a member of an Iroquoian people formerly living in the Appalachian Mountains but now chiefly in Oklahoma
+3532,Cherokee,the Iroquoian language spoken by the Cherokee
+3533,Cherokee_rose Rosa_laevigata,Chinese climbing rose with fragrant white blossoms
+3534,Cherubini Luigi_Cherubini Maria_Luigi_Carlo_Zenobio_Cherubini,Italian composer of church music and operas (1760-1842)
+3535,Chesapeake_Bay,a large inlet of the North Atlantic between Virginia and Maryland; fed by Susquehanna River
+3536,Chesapeake_Bay_retriever,American breed having a short thick oily coat ranging from brown to light tan
+3537,Cheshire_cat,a fictional cat with a broad fixed smile on its face; created by Lewis Carroll
+3538,Cheshire_cheese,a mild yellow English cheese with a crumbly texture
+3539,Chester,a city of southeastern Pennsylvania on the Delaware river (an industrial suburb of Philadelphia)
+3540,Chesterfield Fourth_Earl_of_Chesterfield Philip_Dormer_Stanhope,suave and witty English statesman remembered mostly for letters to his son (1694-1773)
+3541,Chesterton G._K._Chesterton Gilbert_Keith_Chesterton,conservative English writer of the Roman Catholic persuasion; in addition to volumes of criticism and polemics he wrote detective novels featuring Father Brown (1874-1936)
+3542,Chevalier Maurice_Chevalier,French actor and cabaret singer (1888-1972)
+3543,Cheviot,hardy hornless sheep of the Cheviot Hills noted for its short thick wool
+3544,Cheviots Cheviot_Hills,a range of hills on the border between England and Scotland
+3545,Chewa Cewa Chichewa,a member of the Bantu-speaking people of Malawi and eastern Zambia and northern Zimbabwe
+3546,Cheyenne,a member of a North American Indian people living on the western plains (now living in Oklahoma and Montana)
+3547,Cheyenne,the Algonquian language spoken by the Cheyenne
+3548,Cheyenne capital_of_Wyoming,the capital and largest city of Wyoming; located in the southeastern corner of the state
+3549,ChiMwini,a Bantu language spoken in southern Somalia
+3550,Chiacoan_peccary,a recently discovered large wild pig of Paraguay
+3551,Chian_turpentine,a turpentine exuded by the terebinth
+3552,Chiang_Kai-shek Chiang_Chung-cheng,Chinese military and political figure; in the Chinese civil war that followed World War II he was defeated by the Chinese communists and in 1949 was forced to withdraw to Taiwan where he served as president of Nationalist China until his death (1897-1975)
+3553,Chianti,dry red Italian table wine from the Chianti region of Tuscany
+3554,Chicago Windy_City,largest city in Illinois; a bustling Great Lakes port that extends 26 miles along the southwestern shoreline of Lake Michigan
+3555,Chicano,a person of Mexican descent
+3556,Chichewa,the Bantu language of the Chewa of east central Africa
+3557,Chickamauga battle_of_Chickamauga,a Confederate victory in the American Civil War (1863); Confederate forces under Braxton Bragg defeated Union forces
+3558,Chickasaw,a member of the Muskhogean people formerly living in northern Mississippi
+3559,Chickasaw,the Muskhogean language of the Chickasaw
+3560,Chicken_Little,a fictional character who was hit on the head with an acorn and believed that the sky was falling
+3561,Chief_Constable,the head of the police force in a county (or similar area)
+3562,Chief_Secretary,a member of the British Cabinet
+3563,Chihuahua,a city in northern Mexico in the state of Chihuahua; commercial center of northern Mexico
+3564,Chihuahua,a state in northern Mexico; mostly high plateau
+3565,Chihuahua,an old breed of tiny short-haired dog with protruding eyes from Mexico held to antedate Aztec civilization
+3566,Chihuahuan_Desert,a desert in western Texas, New Mexico, Arizona, and northern Mexico
+3567,Chihuahuan_spotted_whiptail Cnemidophorus_exsanguis,having longitudinal stripes overlaid with light spots; upland lizard of United States southwest and Mexico
+3568,Chile Republic_of_Chile,a republic in southern South America on the western slopes of the Andes on the south Pacific coast
+3569,Chile_bonito Chilean_bonito Pacific_bonito Sarda_chiliensis,common bonito of Pacific coast of the Americas; its dark oily flesh cans well
+3570,Chilean,a native or inhabitant of Chile
+3571,Chilean_cedar Austrocedrus_chilensis,a small South American evergreen having coppery bark and pretty foliage
+3572,Chilean_firebush Chilean_flameflower Embothrium_coccineum,grown for outstanding display of brilliant usually scarlet-crimson flowers; Andes
+3573,Chilean_jasmine Mandevilla_laxa,woody vine of Argentina grown as an ornamental for its glossy leaves and racemes of large fragrant funnel-shaped creamy-white flowers
+3574,Chilean_monetary_unit,monetary unit in Chile
+3575,Chilean_nut Chile_nut Chile_hazel Chilean_hazelnut Guevina_heterophylla Guevina_avellana,Chilean shrub bearing coral-red fruit with an edible seed resembling a hazelnut
+3576,Chilean_peso peso,the basic unit of money in Chile; equal to 100 centesimos
+3577,Chilean_rimu Lepidothamnus_fonkii,about the hardiest Podocarpaceae species; prostrate spreading shrub similar to mountain rimu; mountains of southern Chile
+3578,Chiloe,the largest Chilean island and the only one to be settled; located off south-central Chile
+3579,Chilomastix genus_Chilomastix,flagellates parasitic in intestines of vertebrates including humans
+3580,Chilomeniscus genus_Chilomeniscus,sand snakes
+3581,Chilomycterus genus_Chilomycterus,burrfishes
+3582,Chilopoda class_Chilopoda,arthropods having the trunk composed of numerous somites each bearing one pair of legs: centipedes
+3583,Chilopsis genus_Chilopsis,one species: desert willow
+3584,Chimaeridae family_Chimaeridae,a family of Holocephali
+3585,Chimakum,a member of the Salishan people living in northwestern Washington
+3586,Chimaphila genus_Chimaphila,small genus of evergreen herbs with long creeping rootstocks and shining leaves; North America; Europe; east Asia
+3587,Chimariko,a member of an extinct North American Indian people formerly living in California
+3588,Chimariko,the Hokan language spoken by the Chimariko
+3589,Chimborazo,a mountain peak in the Andes in Ecuador (20,560 feet high)
+3590,Chimera Chimaera,(Greek mythology) fire-breathing female monster with a lion's head and a goat's body and a serpent's tail; daughter of Typhon
+3591,Chimonanthus genus_Chimonanthus,small genus of Asian deciduous or evergreen shrubs having fragrant flowers: winter sweet
+3592,China People's_Republic_of_China mainland_China Communist_China Red_China PRC Cathay,a communist nation that covers a vast territory in eastern Asia; the most populous country in the world
+3593,China_aster Callistephus_chinensis,valued for their beautiful flowers in a wide range of clear bright colors; grown primarily for cutting
+3594,China_rose Bengal_rose Rosa_chinensis,shrubby Chinese rose; ancestor of many cultivated garden roses
+3595,China_rose Chinese_hibiscus Rose_of_China shoeblack_plant shoe_black Hibiscus_rosa-sinensis,large showy Asiatic shrub or small tree having large single or double red to deep-red flowers
+3596,China_tree false_dogwood jaboncillo chinaberry Sapindus_saponaria,evergreen of tropical America having pulpy fruit containing saponin which was used as soap by Native Americans
+3597,Chinaman,a ball bowled by a left-handed bowler to a right-handed batsman that spins from off to leg
+3598,Chinchillidae family_Chinchillidae,small bushy-tailed South American burrowing rodents
+3599,Chinese,a native or inhabitant of Communist China or of Nationalist China
+3600,Chinese,any of the Sino-Tibetan languages spoken in China; regarded as dialects of a single language (even though they are mutually unintelligible) because they share an ideographic writing system
+3601,Chinese_Revolution,the republican revolution against the Manchu dynasty in China; 1911-1912
+3602,Chinese_Wall Great_Wall Great_Wall_of_China,a fortification 1,500 miles long built across northern China in the 3rd century BC; it averages 6 meters in width
+3603,Chinese_alligator Alligator_sinensis,small alligator of the Yangtze valley of China having unwebbed digits
+3604,Chinese_angelica Chinese_angelica_tree Aralia_stipulata,similar to American angelica tree but less prickly; China
+3605,Chinese_anise star_anise star_aniseed,anise-scented star-shaped fruit or seed used in Asian cooking and medicine
+3606,Chinese_brown_sauce brown_sauce,a sauce based on soy sauce
+3607,Chinese_cabbage celery_cabbage Chinese_celery,elongated head of crisp celery-like stalks and light green leaves
+3608,Chinese_cabbage celery_cabbage napa pe-tsai Brassica_rapa_pekinensis,plant with an elongated head of broad stalked leaves resembling celery; used as a vegetable in east Asia
+3609,Chinese_checkers Chinese_chequers,a board game in which each player tries to move a set of marbles through a set of holes from one point of a six-pointed star to the opposite point
+3610,Chinese_chestnut Castanea_mollissima,a small tree with small sweet nuts; wild or naturalized in Korea and China
+3611,Chinese_cork_oak Quercus_variabilis,medium to large deciduous tree of China, Japan, and Korea having thick corky bark
+3612,Chinese_deity,a deity worshipped by the ancient Chinese
+3613,Chinese_elm Ulmus_parvifolia,small fast-growing tree native to Asia; widely grown as shelterbelts and hedges
+3614,Chinese_evergreen Japanese_leaf Aglaonema_modestum,erect or partially climbing herb having large green or variegated leaves
+3615,Chinese_forget-me-not Cynoglossum_amabile,biennial east Asian herb grown for its usually bright blue flowers
+3616,Chinese_goose Anser_cygnoides,very large wild goose of northeast Asia; interbreeds freely with the greylag
+3617,Chinese_gooseberry kiwi kiwi_vine Actinidia_chinensis Actinidia_deliciosa,climbing vine native to China; cultivated in New Zealand for its fuzzy edible fruit with green meat
+3618,Chinese_holly Ilex_cornuta,dense rounded evergreen shrub of China having spiny leaves; widely cultivated as an ornamental
+3619,Chinese_lantern,a collapsible paper lantern in bright colors; used for decorative purposes
+3620,Chinese_lantern_plant winter_cherry bladder_cherry Physalis_alkekengi,Old World perennial cultivated for its ornamental inflated papery orange-red calyx
+3621,Chinese_monetary_unit,the monetary unit in the People's Republic of China
+3622,Chinese_mustard,very hot prepared mustard
+3623,Chinese_paddlefish Psephurus_gladis,fish of larger rivers of China similar to the Mississippi paddlefish
+3624,Chinese_parasol_tree Chinese_parasol Japanese_varnish_tree phoenix_tree Firmiana_simplex,deciduous tree widely grown in southern United States as an ornamental for its handsome maplelike foliage and long racemes of yellow-green flowers followed by curious leaflike pods
+3625,Chinese_pea_tree Caragana_sinica,shrub with dark-green glossy foliage and solitary pale yellow flowers; northern China
+3626,Chinese_primrose Primula_sinensis,cultivated Asiatic primrose
+3627,Chinese_privet white_wax_tree Ligustrum_lucidum,erect evergreen treelike shrub of China and Korea and Japan having acuminate leaves and flowers in long erect panicles; resembles Japanese privet
+3628,Chinese_puzzle,intricate or ingenious puzzle consisting of boxes within boxes
+3629,Chinese_restaurant_syndrome,headache and tingling or burning feelings and sweating caused by eating food that contains monosodium glutamate
+3630,Chinese_rhubarb Rheum_palmatum,long used for laxative properties
+3631,Chinese_wistaria Wisteria_chinensis,having deep purple flowers
+3632,Chino-Japanese_War Sino-Japanese_War,a war between China and Japan (1894 and 1895) over the control of the Korean Peninsula; China was overwhelmingly defeated at Port Arthur
+3633,Chinook,a member of an important North American Indian people who controlled the mouth of the Columbia river; they were organized into settlements rather than tribes
+3634,Chinook_Jargon Oregon_Jargon,a pidgin incorporating Chinook and French and English words; formerly used as a lingua franca in northwestern North America
+3635,Chinookan Chinook,a Penutian language spoken by the Chinook
+3636,Chiococca genus_Chiococca,shrubs of tropical and subtropical New World
+3637,Chionanthus genus_Chionanthus,deciduous trees or shrubs: fringe tree
+3638,Chios Khios,an island in the Aegean Sea off the west coast of Turkey; belongs to Greece
+3639,Chipewyan,a member of the Athapaskan people living in western Canada between Great Slave Lake and Hudson Bay
+3640,Chipewyan Chippewyan Chippewaian,the language spoken by the Chipewyan
+3641,Chippendale Thomas_Chippendale,a British cabinetmaker remembered for his graceful designs (especially of chairs) which influenced his contemporaries (1718-1779)
+3642,Chiricahua_Apache,an Apache language
+3643,Chirico Giorgio_de_Chirico,Italian painter (born in Greece) whose deep shadows and barren landscapes strongly influenced the surrealists (1888-1978)
+3644,Chiron,(Greek mythology) the learned centaur who tutored Achilles, Asclepius, Hercules, Jason, and other heroes
+3645,Chiron,an asteroid discovered in 1977; it is unique in having an orbit lying mainly between the orbits of Saturn and Uranus
+3646,Chironomidae family_Chironomidae,midges
+3647,Chironomus genus_Chironomus,type genus of the Chironomidae
+3648,Chiroptera order_Chiroptera,an old order dating to early Eocene: bats: suborder Megachiroptera (fruit bats); suborder Microchiroptera (insectivorous bats)
+3649,Chisholm_Trail,a former cattle trail from San Antonio in Texas to Abilene in Kansas; not used after the 1880s
+3650,Chishona,a Bantu language that is one of the two major languages of Zimbabwe
+3651,Chittagong,a port city and industrial center in southeastern Bangladesh on the Bay of Bengal
+3652,Chiwere,the Siouan language spoken by the Iowa and Oto and Missouri
+3653,Chlamydera genus_Chlamydera,a genus of Ptilonorhynchidae
+3654,Chlamydia_psittaci C._psittaci,bacteria responsible for the sexually transmitted disease chlamydia
+3655,Chlamydia_trachomatis C._trachomatis,bacteria responsible for the sexually transmitted diseases chlamydia and lymphogranuloma venereum
+3656,Chlamydiaceae family_Chlamydiaceae,Gram-negative parasites in warm-blooded vertebrates
+3657,Chlamydomonadaceae family_Chlamydomonadaceae,green algae some of which are colored red by hematochrome
+3658,Chlamydomonas genus_Chlamydomonas,type genus of the Chlamydomonadaceae; solitary doubly-flagellated plant-like algae common in fresh water and damp soil; multiply freely; often a pest around filtration plants
+3659,Chlamydosaurus genus_Chlamydosaurus,frilled lizards
+3660,Chlamyphorus genus_Chlamyphorus,pichiciago
+3661,Chloranthaceae family_Chloranthaceae,small family of tropical herbs and shrubs and trees
+3662,Chloranthus genus_Chloranthus,type genus of the Chloranthaceae
+3663,Chloris genus_Chloris,tufted or perennial or annual grasses having runners: finger grass; windmill grass
+3664,Chlorococcales order_Chlorococcales,unicellular green algae that reproduce by spores
+3665,Chlorococcum genus_Chlorococcum,type genus of Chlorococcales; unicellular green algae occurring singly or in a layer on soil or damp rock
+3666,Chlorophis genus_Chlorophis,African green snakes
+3667,Chlorophoneus genus_Chlorophoneus,a genus of Malaconotinae
+3668,Chlorophthalmidae family_Chlorophthalmidae,small family of soft-finned bottom-dwellers with large eyes; relatives of lizardfishes
+3669,Chlorophyceae class_Chlorophyceae,algae distinguished chiefly by having flagella and a clear green color, their chlorophyll being masked little if at all by other pigments
+3670,Chlorophyllum_molybdites,a poisonous agaric with a fibrillose cap and brown scales on a white ground color; cap can reach a diameter of 30 cm; often forms `fairy rings'
+3671,Chlorophyta division_Chlorophyta,large division of chiefly freshwater eukaryotic algae that possess chlorophyll a and b, store food as starch, and cellulose cell walls; classes Chlorophyceae, Ulvophyceae, and Charophyceae; obviously ancestral to land plants
+3672,Chloroxylon genus_Chloroxylon,deciduous trees of India and Sri Lanka
+3673,Chlorura genus_Chlorura,towhees
+3674,Choctaw,a member of the Muskhogean people formerly living in Alabama
+3675,Choctaw Chahta,the Muskhogean language of the Choctaw
+3676,Choeronycteris genus_Choeronycteris,a genus of Phyllostomatidae
+3677,Choloepus genus_Choloepus,a genus of Megalonychidae consisting of the two-toed sloth
+3678,Chomsky Noam_Chomsky A._Noam_Chomsky,United States linguist whose theory of generative grammar redefined the field of linguistics (born 1928)
+3679,Chondrichthyes class_Chondrichthyes,cartilaginous fishes
+3680,Chondrus genus_Chondrus,a genus of protoctist
+3681,Chongqing Chungking,a city in south-central China on the Chang Jiang; a commercial center for western China
+3682,Chopin,the music of Chopin; "he practiced Chopin day and night"
+3683,Chopin Frederic_Francois_Chopin,French composer (born in Poland) and pianist of the romantic school (1810-1849)
+3684,Chopin Kate_Chopin Kate_O'Flaherty_Chopin,United States writer who described Creole life in Louisiana (1851-1904)
+3685,Chordata phylum_Chordata,comprises true vertebrates and animals having a notochord
+3686,Chordeiles genus_Chordeiles,a genus of Caprimulgidae
+3687,Chordospartium genus_Chordospartium,2 species of small New Zealand trees: weeping tree broom; endangered
+3688,Choriotis genus_Choriotis,Australian bustard
+3689,Chorizagrotis genus_Chorizagrotis,moths whose larvae are army cutworms
+3690,Chorizema genus_Chorizema,genus of Australian twining vines and small shrubs: flame peas
+3691,Chosen,the name for Korea as a Japanese province (1910-1945)
+3692,Christ's-thorn Jerusalem_thorn Paliurus_spina-christi,thorny Eurasian shrub with dry woody winged fruit
+3693,Christchurch,industrial city at the center of a rich agricultural region
+3694,Christendom Christianity,the collective body of Christians throughout the world and history (found predominantly in Europe and the Americas and Australia); "for a thousand years the Roman Catholic Church was the principal church of Christendom"
+3695,Christian,a religious person who believes Jesus is the Christ and who is a member of a Christian denomination
+3696,Christian_Church Disciples_of_Christ,a Protestant church that accepts the Bible as the only source of true Christian faith and practices baptism by immersion
+3697,Christian_Science,religious system based on teachings of Mary Baker Eddy emphasizing spiritual healing
+3698,Christian_Science Church_of_Christ_Scientist,Protestant denomination founded by Mary Baker Eddy in 1866
+3699,Christian_Scientist,a member of the Protestant church founded in the United States by Mary Baker Eddy
+3700,Christian_era Common_era,the time period beginning with the supposed year of Christ's birth
+3701,Christian_holy_day,a religious holiday for Christians
+3702,Christian_liturgy,the Christian worship services
+3703,Christian_name baptismal_name,the first name given to Christians at birth or christening
+3704,Christian_theology,the teachings of Christian churches
+3705,Christianity Christian_religion,a monotheistic system of beliefs and practices based on the Old Testament and the teachings of Jesus as embodied in the New Testament and emphasizing the role of Jesus as savior
+3706,Christianization Christianisation,conversion to Christianity
+3707,Christie Agatha_Christie Dame_Agatha_Mary_Clarissa_Christie,prolific English writer of detective stories (1890-1976)
+3708,Christmas Christmas_Day Xmas Dec_25,a Christian holiday celebrating the birth of Christ; a quarter day in England, Wales, and Ireland
+3709,Christmas Christmastide Christmastime Yule Yuletide Noel,period extending from Dec. 24 to Jan. 6
+3710,Christmas_Eve Dec_24,the day before Christmas
+3711,Christmas_begonia blooming-fool_begonia Begonia_cheimantha,hybrid winter-blooming begonia grown for its many large pink flowers
+3712,Christmas_bells,any of several plants of the genus Blandfordia having large orange or crimson flowers
+3713,Christmas_box,a present given at Christmas for services during the year
+3714,Christmas_bush Christmas_tree Ceratopetalum_gummiferum,Australian tree or shrub with red flowers; often used in Christmas decoration
+3715,Christmas_cactus Schlumbergera_buckleyi Schlumbergera_baridgesii,epiphytic cactus of Brazilian ancestry widely cultivated as a houseplant having jointed flat segments and usually rose-purple flowers that bloom in winter
+3716,Christmas_cake,a rich fruitcake (usually covered with icing and marzipan) and eaten at Christmas
+3717,Christmas_card,a card expressing a Christmas greeting
+3718,Christmas_factor factor_IX,coagulation factor whose absence is associated with hemophilia B
+3719,Christmas_fern canker_brake dagger_fern evergreen_wood_fern Polystichum_acrostichoides,North American evergreen fern having pinnate leaves and dense clusters of lance-shaped fronds
+3720,Christmas_present Christmas_gift,a present given at Christmas time
+3721,Christmas_rose winter_rose black_hellebore Helleborus_niger,European evergreen plant with white or purplish rose-like winter-blooming flowers
+3722,Christmas_stocking,a stocking that is filled with small Christmas presents
+3723,Christmas_tree,an ornamented evergreen used as a Christmas decoration
+3724,Christmasberry Christmas_berry Lycium_carolinianum,spiny evergreen shrub of southeastern United States having spreading branches usually blue or mauve flowers and red berries
+3725,Christology,a religious doctrine or theory based on Jesus or Jesus' teachings
+3726,Christology,the branch of theology concerned with the person and attributes and deeds of Christ
+3727,Christopher Saint_Christopher St._Christopher,Christian martyr and patron saint of travellers (3rd century)
+3728,Chronoperates genus_Chronoperates,a reptile genus of Therapsida
+3729,Chronoperates_paradoxus,shrew-sized protomammal from the Alberta region of Canada; from about 55 million years ago (much more recent than other mammal-like reptiles)
+3730,Chrysaora genus_Chrysaora,a genus of Scyphozoa
+3731,Chrysaora_quinquecirrha,a type of jellyfish
+3732,Chrysemys genus_Chrysemys,painted turtles
+3733,Chrysobalanus genus_Chrysobalanus,coco plums
+3734,Chrysochloridae family_Chrysochloridae,golden moles
+3735,Chrysochloris genus_Chrysochloris,type genus of the Chrysochloridae
+3736,Chrysolepis genus_Chrysolepis,two species: golden chinkapins
+3737,Chrysolophus genus_Chrysolophus,golden pheasants
+3738,Chrysomelidae family_Chrysomelidae,leaf beetles
+3739,Chrysophrys genus_Chrysophrys,Australian snapper
+3740,Chrysophyceae class_Chrysophyceae Heterokontae class_Heterokontae,all the yellow-green algae having flagella of unequal length
+3741,Chrysophyllum genus_Chrysophyllum,tropical American evergreen trees or shrubs
+3742,Chrysophyta division_Chrysophyta,mostly freshwater eukaryotic algae having the chlorophyll masked by brown or yellow pigment; yellow-green and golden-brown algae and diatoms: Xanthophyceae, Chrysophyceae, Bacillariophyceae; some classification systems superseded or subsumed by Heterokontophyta
+3743,Chrysopidae family_Chrysopidae,green lacewings
+3744,Chrysopsis genus_Chrysopsis,golden aster
+3745,Chrysosplenium genus_Chrysosplenium,genus of widely distributed semiaquatic herbs with minute greenish-yellow apetalous flowers
+3746,Chrysothamnus genus_Chrysothamnus,genus of low branching shrubs of western North America
+3747,Chuang-tzu,4th-century Chinese philosopher on whose teachings Lao-tse based Taoism
+3748,Chukaku-Ha,an ultra-leftist militant group founded in 1957 from the breakup of the Japanese Communist Party; includes a covert action wing; "Chukaku-Ha attacks tend to cause property damage rather than casualties"
+3749,Chukchi,a member of an indigenous people living on the Chukchi Peninsula
+3750,Chukchi Chukchi_language,an indigenous and isolated language of unknown origin spoken by the Chukchi that is pronounced differently by men and women
+3751,Chukchi_Peninsula,peninsula of northeastern Siberia across the Bering Strait from northwestern Alaska
+3752,Chukchi_Sea,part of the Arctic Ocean just to the north of the Bering Strait
+3753,Chula_Vista,an industrial city in southern California (south of San Diego) near the Mexican border
+3754,Church_Father Father_of_the_Church Father,(Christianity) any of about 70 theologians in the period from the 2nd to the 7th century whose writing established and confirmed official church doctrine; in the Roman Catholic Church some were later declared saints and became Doctor of the Church; the best known Latin Church Fathers are Ambrose, Augustine, Gregory the Great, and Jerome; those who wrote in Greek include Athanasius, Basil, Gregory Nazianzen, and John Chrysostom
+3755,Church_of_Ireland,autonomous branch of the Church of England in Ireland
+3756,Church_of_Jesus_Christ_of_Latter-Day_Saints Mormon_Church Mormons,church founded by Joseph Smith in 1830 with headquarters in Salt Lake City, Utah
+3757,Church_of_the_Brethren Dunkers Dippers,a Baptist denomination founded in 1708 by Americans of German descent; opposed to military service and taking legal oaths; practiced trine immersion
+3758,Churchill,a Canadian town in northern Manitoba on Hudson Bay; important port for shipping grain
+3759,Churchill John_Churchill Duke_of_Marlborough First_Duke_of_Marlborough,English general considered one of the greatest generals in history (1650-1722)
+3760,Churchill Winston_Churchill Winston_S._Churchill Sir_Winston_Leonard_Spenser_Churchill,British statesman and leader during World War II; received Nobel prize for literature in 1953 (1874-1965)
+3761,Churchill_Downs,a racetrack for thoroughbred racing in Louisville; site of the Kentucky Derby
+3762,Chuvash,a member of a people of Turkic speech living in the Volga region in eastern Russia
+3763,Chuvash,the Turkic language spoken by the Chuvash
+3764,Chytridiaceae family_Chytridiaceae,a family of aquatic fungi of order Chytridiales
+3765,Chytridiales order_Chytridiales,simple aquatic fungi mostly saprophytic but some parasitic on higher plants or animals or fresh water fungi; sometimes placed in class Oomycetes
+3766,Chytridiomycetes class_Chytridiomycetes,a class of mostly aquatic fungi; saprophytic or parasitic on algae or fungi or plants
+3767,Ciardi John_Ciardi John_Anthony_Ciardi,United States poet and critic (1916-1986)
+3768,Cibotium genus_Cibotium,in some classification systems placed in family Cyatheaceae: ornamental tree ferns with coarse gracefully drooping fronds
+3769,Cicadellidae family_Cicadellidae,leafhoppers
+3770,Cicadidae family_Cicadidae,cicadas
+3771,Cicer genus_Cicer,chickpea plant; Asiatic herbs
+3772,Cicero Marcus_Tullius_Cicero Tully,a Roman statesman and orator remembered for his mastery of Latin prose (106-43 BC)
+3773,Cichlidae family_Cichlidae,cichlids
+3774,Cichorium genus_Cichorium,chicory
+3775,Cicindelidae family_Cicindelidae,tiger beetles
+3776,Ciconia genus_Ciconia,type genus of the Ciconiidae: European storks
+3777,Ciconiidae family_Ciconiidae,storks
+3778,Ciconiiformes order_Ciconiiformes,order of chiefly tropical marsh-dwelling fish-eating wading birds with long legs and bills and (except for flamingos) unwebbed feet: herons; storks; spoonbills; flamingos; ibises
+3779,Cicuta genus_Cicuta,small genus of perennial herbs having deadly poisonous tuberous roots: water hemlock
+3780,Ciliata class_Ciliata Ciliophora class_Ciliophora,class of protozoa having cilia or hairlike appendages on part or all of the surface during some part of the life cycle
+3781,Cimabue Giovanni_Cimabue,painter of the Florentine school; anticipated the move from Byzantine to naturalistic art (1240-1302)
+3782,Cimarron Cimarron_River,a river that rises in northeastern New Mexico and flows eastward into Oklahoma where it becomes a tributary of the Arkansas River
+3783,Cimex genus_Cimex,type genus of the Cimicidae: bedbugs
+3784,Cimicidae family_Cimicidae,wingless flat-bodied bloodsucking insects
+3785,Cimicifuga genus_Cimicifuga,small genus of perennial herbs of north temperate regions: bugbane
+3786,Cincinnati,a city in southern Ohio on the Ohio river
+3787,Cincinnatus Lucius_Quinctius_Cincinnatus,Roman statesman regarded as a model of simple virtue; he twice was called to assume dictatorship of Rome and each time retired to his farm (519-438 BC)
+3788,Cinclidae family_Cinclidae,water ouzels
+3789,Cinclus genus_Cinclus,type genus of the family Cinclidae
+3790,Cinco_de_Mayo,the fifth of May which is observed in Mexico and Mexican-American communities in the United States to commemorate the Mexican victory over the French in the Battle of Puebla in 1862
+3791,Cinderella,a woman whose merits were not been recognized but who then achieves sudden success and recognition
+3792,Cinderella,a fictional young girl who is saved from her stepmother and stepsisters by her fairy godmother and a handsome prince
+3793,Cinnamomum genus_Cinnamomum,Asiatic and Australian aromatic trees and shrubs
+3794,Circaea genus_Circaea,enchanter's nightshade
+3795,Circaea_lutetiana,tall evening primrose with inconspicuous flowers
+3796,Circaetus genus_Circaetus,harrier eagles
+3797,Circassian,a member of the Sunni Muslim people living in northwestern Caucasia
+3798,Circassian,a mostly Sunni Muslim community living in northwestern Caucasia
+3799,Circassian,a northern Caucasian language spoken by the Circassian
+3800,Circe,(Greek mythology) a sorceress who detained Odysseus on her island and turned his men into swine
+3801,Circinus,a small faint constellation in the southern hemisphere near Musca and Triangulum Australe
+3802,Circumcision Feast_of_the_Circumcision January_1,(Roman Catholic Church and Anglican Church) feast day celebrating the circumcision of Jesus; celebrated on January 1st
+3803,Circus genus_Circus,a genus of haws comprising the harriers
+3804,Cirripedia subclass_Cirripedia,barnacles
+3805,Cirsium genus_Cirsium,plume thistles
+3806,Cistaceae family_Cistaceae rockrose_family,shrubs or woody herbs of temperate regions especially Mediterranean
+3807,Cistothorus genus_Cistothorus,marsh wrens
+3808,Cistus genus_Cistus,small to medium-sized evergreen shrubs of southern Europe and North Africa
+3809,Citation,thoroughbred that won the triple crown in 1948
+3810,Citellus genus_Citellus Spermophilus genus_Spermophilus,typical ground squirrels
+3811,Citharichthys genus_Citharichthys,a genus of Bothidae
+3812,Citizenship_Day September_17,celebrated in the United States
+3813,Citlaltepetl Mount_Orizaba Mt_Orizaba Pico_de_Orizaba,an extinct volcano in southern Mexico between Mexico City and Veracruz; the highest peak in Mexico (18,695 feet)
+3814,Citroncirus genus_Citroncirus,a cross between Citrus sinensis and Poncirus trifoliata
+3815,Citrullus genus_Citrullus,a dicot genus of the family Cucurbitaceae including watermelons
+3816,City_of_London the_City,the part of London situated within the ancient boundaries; the commercial and financial center of London
+3817,Ciudad_Bolivar,a port in eastern Venezuela on the Orinoco river
+3818,Ciudad_Juarez Juarez,a city in northern Mexico on the Rio Grande opposite El Paso
+3819,Ciudad_Victoria,a city in east central Mexico
+3820,Civil_List,a sum of money voted by British Parliament each year for the expenses of the British royal family
+3821,Civil_Rights_movement,movement in the United States beginning in the 1960s and led primarily by Blacks in an effort to establish the civil rights of individual Black citizens
+3822,Cladonia genus_Cladonia,type genus of Cladoniaceae; lichens characterized by a crustose thallus and capitate fruiting bodies borne on simple or branched podetia
+3823,Cladoniaceae family_Cladoniaceae,a family of lichens
+3824,Cladorhyncus genus_Cladorhyncus,one of two genera of stilts; similar to avocets but with straight bills
+3825,Cladrastis genus_Cladrastis,yellowwoods
+3826,Clamatores suborder_Clamatores,used in some classification systems; a suborder or superfamily nearly coextensive with suborder Tyranni; Passeriformes having relatively simple vocal organs and little power of song; clamatorial birds
+3827,Clangula genus_Clangula,a genus of ducks
+3828,Clark Joe_Clark Charles_Joseph_Clark,Canadian politician who served as prime minister (1939-)
+3829,Clark Kenneth_Clark Kenneth_Bancroft_Clark,United States psychologist (born in Panama) whose research persuaded the Supreme Court that segregated schools were discriminatory (1914-2005)
+3830,Clark Mark_Clark Mark_Wayne_Clark,United States general who was Allied commander in Africa and Italy in World War II and was commander of the United Nations forces in Korea (1896-1984)
+3831,Clark William_Clark,United States explorer who (with Meriwether Lewis) led an expedition from St. Louis to the mouth of the Columbia River; Clark was responsible for making maps of the area (1770-1838)
+3832,Clark's_nutcracker Nucifraga_columbiana,nutcracker of the western United States
+3833,Clark_cell Clark_standard_cell,a form of voltaic cell once used as a standard for electromotive force
+3834,Clarksburg,a city in northern West Virginia
+3835,Clathraceae family_Clathraceae,family of fleshy fungi resembling stinkhorns
+3836,Clathrus genus_Clathrus,type genus of the Clathraceae
+3837,Claudius Claudius_I Tiberius_Claudius_Drusus_Nero_Germanicus,Roman Emperor after his nephew Caligula was murdered; consolidated the Roman Empire and conquered southern Britain; was poisoned by his fourth wife Agrippina after her son Nero was named as Claudius' heir (10 BC to AD 54)
+3838,Clausewitz Karl_von_Clausewitz,Prussian general and military theorist who proposed a doctrine of total war and war as an extension of diplomacy (1780-1831)
+3839,Clavariaceae family_Clavariaceae,fleshy fungi: coral fungi
+3840,Claviceps genus_Claviceps,fungi parasitic upon the ovaries of various grasses
+3841,Clavicipitaceae grainy_club_mushrooms,any of various mushrooms of the class Ascomycetes
+3842,Clay Henry_Clay the_Great_Compromiser,United States politician responsible for the Missouri Compromise between free and slave states (1777-1852)
+3843,Clay Lucius_Clay Lucius_DuBignon_Clay,United States general who commanded United States forces in Europe from 1945 to 1949 and who oversaw the Berlin airlift (1897-1978)
+3844,Claytonia genus_Claytonia,genus of mainly North American succulent herbs with white or pink flowers usually in terminal racemes
+3845,Cleanthes,ancient Greek philosopher who succeeded Zeno of Citium as the leader of the Stoic school (300-232 BC)
+3846,Cleistes genus_Cleistes,terrestrial orchids of North and South America having slender fibrous roots; allied to genus Pogonia
+3847,Clemenceau Georges_Clemenceau Georges_Eugene_Benjamin_Clemenceau,French statesman who played a key role in negotiating the Treaty of Versailles (1841-1929)
+3848,Clemens Samuel_Langhorne_Clemens Mark_Twain,United States writer and humorist best known for his novels about Tom Sawyer and Huckleberry Finn (1835-1910)
+3849,Clement_III Guibert_of_Ravenna,Italian antipope from 1080 to 1100 who was installed as pope by the Holy Roman Emperor Henry IV who consistently opposed efforts at papal reform (died in 1100)
+3850,Clement_VII Giulio_de'_Medici,Italian pope from 1523 to 1534 who broke with Henry VIII of England after Henry VIII divorced Catherine of Aragon and married Anne Boleyn (1478-1534)
+3851,Clement_XI Giovanni_Francesco_Albani,Italian pope from 1700 to 1721 who condemned Jansenist ideas on papal infallibility
+3852,Clement_XIV Lorenzo_Ganganelli,Italian pope from 1769 to 1774 who lost whatever support remained of Catholic Europe, causing the church to fall into the hands of secular princes (1705-1774)
+3853,Cleopatra,beautiful and charismatic queen of Egypt; mistress of Julius Caesar and later of Mark Antony; killed herself to avoid capture by Octavian (69-30 BC)
+3854,Cleridae family_Cleridae,beetles that prey on other insects
+3855,Clethra genus_Clethra,type and sole genus of the Clethraceae; deciduous shrubs or small trees: white alder, summer-sweet
+3856,Clethraceae family_Clethraceae white-alder_family,coextensive with the genus Clethra
+3857,Clethrionomys genus_Clethrionomys,a genus of Cricetidae
+3858,Cleveland,the largest city in Ohio; located in northeastern Ohio on Lake Erie; a major Great Lakes port
+3859,Cleveland Grover_Cleveland Stephen_Grover_Cleveland President_Cleveland,22nd and 24th President of the United States (1837-1908)
+3860,Clichy Clichy-la-Garenne,a northwestern suburb of Paris; the residence of the Merovingian royalty in the 7th century
+3861,Clifford_trust grantor_trust,a trust established to shift the income to someone who is taxed at a lower rate than the grantor for a period of 10 years or more
+3862,Cliftonia genus_Cliftonia,one species: titi
+3863,Clinch_River,a river that rises in southwestern Virginia and flows generally southwestward across eastern Tennessee to the Tennessee River
+3864,Cline Martin_Cline,American geneticist who succeeded in transferring a functioning gene from one mouse to another (born in 1934)
+3865,Clinidae family_Clinidae,viviparous blennies of temperate and tropical seas
+3866,Clinopodium genus_Clinopodium,wild basil
+3867,Clinton,a town in east central Iowa
+3868,Clinton Bill_Clinton William_Jefferson_Clinton President_Clinton,42nd President of the United States (1946-)
+3869,Clinton DeWitt_Clinton,United States politician who as governor of New York supported the project to build the Erie Canal (1769-1828)
+3870,Clinton Hilary_Clinton Hilary_Rodham_Clinton,wife of President Clinton and later a woman member of the United States Senate (1947-)
+3871,Clinton_administration,the executive under President Clinton
+3872,Clio,(Greek mythology) the Muse of history
+3873,Clitocybe genus_Clitocybe,a genus of agarics with white to pale yellow spore deposits and fleshy stalks centrally attached to the cap and closely attached gills
+3874,Clitocybe_clavipes,an agaric with a flat cap that is greyish or yellowish brown with pallid gills and a stalk that bulges toward the base
+3875,Clitocybe_dealbata,a small poisonous agaric; has a dry white cap with crowded gills and a short stalk
+3876,Clitocybe_inornata,a fungus with a cap that is creamy grey when young and turns brown with age and a whitish stalk that stains yellow when handled
+3877,Clitocybe_irina Tricholoma_irinum Lepista_irina,an edible agaric with large silky white caps and thick stalks
+3878,Clitocybe_robusta Clytocybe_alba,a large white agaric; edible but not palatable
+3879,Clitocybe_subconnexa,an edible white agaric that fruits in dense clusters; the gills are narrow and crowded and the stalk is fleshy and unpolished
+3880,Clitoria genus_Clitoria,genus of tropical shrubs or vines having pinnate leaves and large axillary flowers
+3881,Clive Robert_Clive Baron_Clive Baron_Clive_of_Plassey,British general and statesman whose victory at Plassey in 1757 strengthened British control of India (1725-1774)
+3882,Clorox,a commercial bleaching agent
+3883,Clotho Klotho,the Greek goddess of fate who spins the thread of life
+3884,Clovis Clovis_I,king of the Franks who unified Gaul and established his capital at Paris and founded the Frankish monarchy; his name was rendered as Gallic `Louis' (466-511)
+3885,Clovis_culture,the Paleo-American culture of Central America and North America; distinguished chiefly by sharp fluted projectile points made of obsidian or chalcedony
+3886,Clupea genus_Clupea,type genus of the Clupeidae: typical herrings
+3887,Clupeidae family_Clupeidae,herrings; shad; sardines; etc.
+3888,Clyde,a river in western Scotland that flows from the southern uplands into the Firth of Clyde; navigable by oceangoing vessels as far as Glasgow
+3889,Clydesdale,heavy feathered-legged breed of draft horse originally from Scotland
+3890,Clydesdale_terrier,selectively bred small Skye terrier with erect ears and a long silky coat
+3891,Clytemnestra,(Greek mythology) wife of Agamemnon who had him murdered when he returned from the Trojan War
+3892,Cnemidophorus genus_Cnemidophorus,whiptails
+3893,Cnicus genus_Cnicus,one species: blessed thistle
+3894,Cnidaria phylum_Cnidaria Coelenterata phylum_Coelenterata,hydras; polyps; jellyfishes; sea anemones; corals
+3895,Cnidoscolus genus_Cnidoscolus,a genus of perennial plant with bristles; belonging to the family Euphorbiaceae
+3896,Cnidosporidia subclass_Cnidosporidia,single-host parasites of lower vertebrates and invertebrates
+3897,Coahuila,a state in northern Mexico; mostly high plateau
+3898,Coast_Range Coast_Mountains,a string of mountain ranges along the Pacific coast of North America from southeastern Alaska to Lower California
+3899,Coats_Land,a region of western Antarctica along the southeastern shore of the Weddell Sea
+3900,Cobitidae family_Cobitidae,loaches
+3901,Coca Imogene_Coca,United States comedienne who starred in early television shows with Sid Caesar (1908-2001)
+3902,Coca_Cola Coke,Coca Cola is a trademarked cola
+3903,Coccidae family_Coccidae,scale insects
+3904,Coccidia order_Coccidia,an order in the subclass Telosporidia
+3905,Coccinellidae family_Coccinellidae,the ladybugs
+3906,Coccoidea superfamily_Coccoidea,scale insects and mealybugs
+3907,Coccothraustes genus_Coccothraustes,large finches
+3908,Cocculus genus_Cocculus,climbing plants or shrubs
+3909,Coccyzus genus_Coccyzus,a genus of Cuculidae
+3910,Cochimi,a member of a North American Indian people living in central Baja California
+3911,Cochimi,the Yuman language spoken by the Cochimi
+3912,Cochise,Apache leader of the resistance to United States troops in Arizona (1812-1874)
+3913,Cochlearia genus_Cochlearia,a genus of the family Cruciferae
+3914,Cochlearius genus_Cochlearius,boatbills
+3915,Cochran Jacqueline_Cochran,United States aviator who held several speed records and headed the women's Air Force pilots in World War II (1910-1980)
+3916,Cockaigne,(Middle Ages) an imaginary land of luxury and idleness
+3917,Cockcroft Sir_John_Cockcroft Sir_John_Douglas_Cockcroft,British physicist who (with Ernest Walton in 1931) first split an atom (1897-1967)
+3918,Cockcroft_and_Walton_accelerator Cockcroft-Walton_accelerator Cockcroft_and_Walton_voltage_multiplier Cockcroft-Walton_voltage_multiplier,a high-voltage machine in which rectifiers charge capacitors that discharge and drive charged particles through an accelerating tube
+3919,Cockney,a native of the east end of London
+3920,Cocopa Cocopah,a member of a North American Indian people living around the mouth of the Colorado River
+3921,Cocopa Cocopah,the Yuman language spoken by the Cocopa
+3922,Cocos genus_Cocos,coconut palms
+3923,Cocteau Jean_Cocteau,French writer and film maker who worked in many artistic media (1889-1963)
+3924,Cocus,(Greek mythology) one of the Titans
+3925,Cocytus River_Cocytus,(Greek mythology) a river in Hades that was said to be a tributary of the Acheron
+3926,Codariocalyx genus_Codariocalyx,used in some classifications for plants usually included in genus Desmodium
+3927,Codiaeum genus_Codiaeum,evergreen tropical trees and shrubs with thick and colorful leathery leaves; Malaya and Pacific islands
+3928,Cody William_F._Cody William_Frederick_Cody Buffalo_Bill Buffalo_Bill_Cody,United States showman famous for his Wild West Show (1846-1917)
+3929,Coeloglossum genus_Coeloglossum,terrestrial orchids of cooler parts of North America and Europe: satyr orchid
+3930,Coereba genus_Coereba,type genus of the Coerebidae
+3931,Coerebidae family_Coerebidae Dacninae family_Dacninae,the honeycreepers
+3932,Coeur_d'Alene,a member of an Amerindian people living in northern Idaho around Coeur d'Alene Lake
+3933,Coeur_d'Alene,a town in the northern panhandle of Idaho; popular resort area
+3934,Coeur_d'Alene_Lake,a lake in northern Idaho
+3935,Coffea genus_Coffea,coffee trees
+3936,Coffey_still,a still consisting of an apparatus for the fractional distillation of ethanol from fermentation on an industrial scale
+3937,Cognac,high quality grape brandy distilled in the Cognac district of France
+3938,Cohan George_M._Cohan George_Michael_Cohan,United States songwriter and playwright famous for his patriotic songs (1878-1942)
+3939,Cohn Ferdinand_Julius_Cohn,German botanist who is generally recognized as founding bacteriology when he recognized bacteria as plants
+3940,Coigue Nothofagus_dombeyi,Chilean evergreen whose leafy boughs are used for thatching
+3941,Cola genus_Cola,large genus of African trees bearing kola nuts
+3942,Colaptes genus_Colaptes,a genus of Picidae
+3943,Colbert Colbert_butter,butter creamed with parsley and tarragon and beef extract
+3944,Colchicaceae family_Colchicaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted: genera Colchicum and Gloriosa
+3945,Colchicum genus_Colchicum,chiefly fall-blooming perennial cormous herbs; sometimes placed in family Colchicaceae
+3946,Colchis,(Greek mythology) a region on the Black Sea to the south of the Caucasus that was the site of an ancient country where (according to Greek mythology) Jason sought the Golden Fleece
+3947,Cold_War,a state of political hostility that existed from 1945 until 1990 between countries led by the Soviet Union and countries led by the United States
+3948,Coleonyx genus_Coleonyx,banded geckos
+3949,Coleoptera order_Coleoptera,beetles
+3950,Coleridge Samuel_Taylor_Coleridge,English romantic poet (1772-1834)
+3951,Colette Sidonie-Gabrielle_Colette Sidonie-Gabrielle_Claudine_Colette,French writer of novels about women (1873-1954)
+3952,Colima Nevado_de_Colima Volcan_de_Colima,an active volcano in southwestern Mexico
+3953,Colinus genus_Colinus,New World quail: the bobwhites
+3954,Collembola order_Collembola,minute wingless arthropods: springtails
+3955,Collins Wilkie_Collins William_Wilkie_Collins,English writer noted for early detective novels (1824-1889)
+3956,Collinsia genus_Collinsia,genus of hardy annual herbs of western United States
+3957,Collinsonia genus_Collinsonia,small genus of perennial erect or spreading aromatic herbs; United States
+3958,Collocalia genus_Collocalia,a genus of Apodidae
+3959,Colocasia genus_Colocasia,small genus of perennial tuberous herbs of tropical Asia: taro
+3960,Cologne Koln,a commercial center and river port in western Germany on the Rhine River; flourished during the 15th century as a member of the Hanseatic League
+3961,Colombia Republic_of_Colombia,a republic in northwestern South America with a coastline on the Pacific Ocean and the Caribbean Sea; achieved independence from Spain in 1821 under the leadership of Simon Bolivar; Spanish is the official language
+3962,Colombian,a native or inhabitant of Colombia
+3963,Colombian_monetary_unit,monetary unit in Colombia
+3964,Colombian_peso peso,the basic unit of money in Colombia; equal to 100 centavos
+3965,Colombo capital_of_Sri_Lanka,the capital and largest city of Sri Lanka; has one of the largest harbors in the world; is located on the western coast of the island of Ceylon
+3966,Colon Aspinwall,a port city at the Caribbean entrance to the Panama Canal
+3967,Colonel_Blimp,a pompous reactionary cartoon character created by Sir David Low
+3968,Colonel_Blimp Blimp,any elderly pompous reactionary ultranationalistic person (after the cartoon character created by Sir David Low)
+3969,Colony,one of the 13 British colonies that formed the original states of the United States
+3970,Coloradan,a native or resident of Colorado
+3971,Colorado Centennial_State CO Colo.,a state in west central United States in the Rocky Mountains
+3972,Colorado Colorado_River,a river in Texas; flows southeast into the Gulf of Mexico
+3973,Colorado Colorado_River,an important river in the southwestern United States; rises in the Rocky Mountains of northern Colorado and flows southwest through Utah into Arizona (where it flows through the Grand Canyon) and then southward through the southern tip of Nevada, then forming the border between California and Arizona and finally into Mexico where it empties into the Gulf of California; the main source of water in the southwestern United States
+3974,Colorado_Desert,an arid region of southeastern California
+3975,Colorado_Plateau,a large plateau to the south and west of the Rocky Mountains; abuts mountains on the north and east and ends in an escarpment overlooking lowlands to the south and west; the Grand Canyon is carved out of the southwestern corner
+3976,Colorado_River_hemp Sesbania_exaltata,tall-growing annual of southwestern United States widely grown as green manure; yields a strong tough bast fiber formerly used by Indians for cordage
+3977,Colorado_Springs,a city in east central Colorado on the eastern edge of the Rocky Mountains; popular tourist center and site of the United States Air Force Academy
+3978,Colorado_potato_beetle Colorado_beetle potato_bug potato_beetle Leptinotarsa_decemlineata,black-and-yellow beetle that feeds in adult and larval stages on potato leaves; originally of eastern Rocky Mountains; now worldwide
+3979,Colorado_spruce Colorado_blue_spruce silver_spruce Picea_pungens,tall spruce with blue-green needles and dense conic crown; older trees become columnar with lower branches sweeping downward
+3980,Colossae,an ancient city in south western Phrygia in Asia Minor; site of an early Christian Church
+3981,Colosseum Amphitheatrum_Flavium,a large amphitheater in Rome whose construction was begun by Vespasian about AD 75 or 80
+3982,Colossian,a native or inhabitant of the city of Colossae in ancient Phrygia
+3983,Colossus_of_Rhodes,a huge bronze statue of the sun god Helios that was built around 285 BC and that stood beside the harbor entrance on the island of Rhodes for about 50 years before it was toppled by an earthquake
+3984,Colt,a kind of revolver
+3985,Coluber genus_Coluber,racers
+3986,Colubridae family_Colubridae,nonvenomous snakes; about two-thirds of all living species
+3987,Colubrina genus_Colubrina,mostly tropical American shrubs or small trees with small yellowish flowers and yellow or red fruits
+3988,Columba Dove,a constellation in the southern hemisphere near Puppis and Caelum
+3989,Columba genus_Columba,type genus of the Columbidae: typical pigeons
+3990,Columbia,a town in west central Tennessee
+3991,Columbia,a university town in central Missouri
+3992,Columbia Columbia_River,a North American river; rises in southwestern Canada and flows southward across Washington to form the border between Washington and Oregon before emptying into the Pacific; known for its salmon runs in the spring
+3993,Columbia capital_of_South_Carolina,capital and largest city in South Carolina; located in central South Carolina
+3994,Columbia_University Columbia,a university in New York City
+3995,Columbia_tiger_lily Oregon_lily Lilium_columbianum,lily of western North America with showy orange-red purple-spotted flowers
+3996,Columbidae family_Columbidae,doves and pigeons
+3997,Columbiformes order_Columbiformes,sand grouse; pigeons; doves; extinct dodos and solitaires
+3998,Columbus,a town in eastern Mississippi near the border with Alabama
+3999,Columbus,a city in western Georgia on the Chattahoochee River; industrial center
+4000,Columbus Christopher_Columbus Cristoforo_Colombo Cristobal_Colon,Italian navigator who discovered the New World in the service of Spain while looking for a route to China (1451-1506)
+4001,Columbus capital_of_Ohio,the state capital of Ohio; located in the center of the state; site of Ohio State University
+4002,Columbus_Day Discovery_Day October_12,a legal holiday commemorating the discovery of America by Christopher Columbus
+4003,Colutea genus_Colutea,small genus of Eurasian shrubs with yellow flowers and bladdery pods
+4004,Coma_Berenices,a constellation in the northern hemisphere between Ursa Major and Bootes; contains a cluster of some 10,000 galaxies
+4005,Comanche,a member of the Shoshonean people who formerly lived between Wyoming and the Mexican border but are now chiefly in Oklahoma
+4006,Comanche,the Shoshonean language spoken by the Comanche
+4007,Comandra genus_Comandra,small genus of chiefly North American parasitic plants
+4008,Comatula genus_Comatula,former usage synonymous with Antedon
+4009,Comatulidae family_Comatulidae,former usage synonymous with Antedonidae
+4010,Combined_DNA_Index_System,the DNA file maintained by the Federal Bureau of Investigation
+4011,Combretaceae family_Combretaceae combretum_family,a family of tropical trees and shrubs of the order Myrtales
+4012,Comenius John_Amos_Comenius Jan_Amos_Komensky,Czech educational reformer (1592-1670)
+4013,Commelinaceae family_Commelinaceae spiderwort_family,large widely distributed family of chiefly perennial herbs or climbers: spiderworts
+4014,Commelinidae subclass_Commelinidae,one of four subclasses or superorders of Monocotyledones; comprises about 19,000 species in 25 families of mostly terrestrial herbs especially of moist places including: Cyperaceae; Gramineae; Bromeliaceae; and Zingiberaceae
+4015,Commiphora genus_Commiphora,genus of East Indian and African trees yielding balsamic products
+4016,Commission_on_Human_Rights,the commission of the Economic and Social Council of the United Nations that is concerned with human rights
+4017,Commission_on_Narcotic_Drugs,the commission of the Economic and Social Council of the United Nations that is concerned with drug traffic
+4018,Commission_on_the_Status_of_Women,the commission of the Economic and Social Council of the United Nations that is concerned with the status of women in different societies
+4019,Committee_for_State_Security KGB Soviet_KGB,formerly the predominant security police organization of Soviet Russia
+4020,Commodore_John_Barry_Bridge,a cantilever bridge in Chester, Pennsylvania
+4021,Commonwealth_Day Empire_day May_24,British, anniversary of Queen Victoria's birth
+4022,Commonwealth_of_Independent_States CIS,an alliance made up of states that had been Soviet Socialist Republics in the Soviet Union prior to its dissolution in Dec 1991
+4023,Communications_Security_Establishment CSE,Canadian agency that gathers communications intelligence and assist law enforcement and security agencies
+4024,Communion Holy_Communion sacramental_manduction manduction,the act of participating in the celebration of the Eucharist; "the governor took Communion with the rest of the congregation"
+4025,Communism_Peak Mount_Communism Stalin_Peak Mount_Garmo,the highest mountain peak in the Pamir Mountains; near the Chinese border in northeastern Tajikistan (24,590 feet high)
+4026,Communist,a member of the communist party
+4027,Communist_Manifesto,a socialist manifesto written by Marx and Engels (1842) describing the history of the working-class movement according to their views
+4028,Communist_Party,a political party that actively advocates a communist form of government; in Communist countries it is the sole political party of the state
+4029,Comoro_Islands Iles_Comores,three main islands and numerous islets in the Indian Ocean between Mozambique and Madagascar
+4030,Comoros Federal_Islamic_Republic_of_the_Comoros,a country on the Comoro Islands
+4031,Compositae family_Compositae Asteraceae family_Asteraceae aster_family,plants with heads composed of many florets: aster; daisy; dandelion; goldenrod; marigold; lettuces; ragweed; sunflower; thistle; zinnia
+4032,Composite_order,a Roman order that combines the Corinthian acanthus leaves with the spiral scrolls of the Ionic order
+4033,Compton Arthur_Compton Arthur_Holly_Compton,United States physicist noted for research on x-rays and gamma rays and nuclear energy; his observation that X-rays behave like miniature bowling balls in their interactions with electrons provided evidence for the quantal nature of light (1892-1962)
+4034,Comptonia genus_Comptonia,one species: sweet fern
+4035,Comptroller_General,a United States federal official who supervises expenditures and settles claims against the government
+4036,Comptroller_of_the_Currency,a United States federal official who regulates the national banks
+4037,Comptroller_of_the_Currency,the agency of the Treasury Department responsible for controlling the currency
+4038,Comrade,a fellow member of the Communist Party
+4039,Comstock Anthony_Comstock,United States reformer who led moral crusades against art and literature that he considered obscene (1844-1915)
+4040,Comstock_mealybug Comstock's_mealybug Pseudococcus_comstocki,Asiatic insect introduced accidentally into United States; pest on citrus and apple trees
+4041,Comstockery,censorship because of perceived obscenity or immorality
+4042,Comte Auguste_Comte Isidore_Auguste_Marie_Francois_Comte,French philosopher remembered as the founder of positivism; he also established sociology as a systematic field of study
+4043,Comtism,Auguste Comte's positivistic philosophy that metaphysics and theology should be replaced by a hierarchy of sciences from mathematics at the base to sociology at the top
+4044,Conakry Konakri capital_of_Guinea,a port and the capital of Guinea
+4045,Conan_Doyle A._Conan_Doyle Arthur_Conan_Doyle Sir_Arthur_Conan_Doyle,British author who created Sherlock Holmes (1859-1930)
+4046,Concepcion,an industrial city in Chile to the south of Santiago
+4047,Concord,town in eastern Massachusetts near Boston where the first battle of the American Revolution was fought
+4048,Concord capital_of_New_Hampshire,capital of the state of New Hampshire; located in south central New Hampshire on the Merrimack river
+4049,Concord_grape,slipskin grape; a purple table grape of the northeastern United States
+4050,Condorcet Marquis_de_Condorcet Marie_Jean_Antoine_Nicolas_Caritat,French mathematician and philosopher (1743-1794)
+4051,Condylura genus_Condylura,star-nosed moles
+4052,Conepatus genus_Conepatus,a genus of Mustelidae
+4053,Coney_Island,a section of Brooklyn on the Atlantic; known as an amusement center
+4054,Confederacy Confederate_States Confederate_States_of_America South Dixie Dixieland,the southern states that seceded from the United States in 1861
+4055,Confederate,a supporter of the Confederate States of America
+4056,Confederate_Army Army_of_the_Confederacy,the southern army during the American Civil War
+4057,Confederate_soldier,a soldier in the Army of the Confederacy during the American Civil War
+4058,Confucian Confucianist,a believer in the teachings of Confucius
+4059,Confucianism,the teachings of Confucius emphasizing love for humanity; high value given to learning and to devotion to family (including ancestors); peace; justice; influenced the traditional culture of China
+4060,Confucius Kongfuze K'ung_Futzu Kong_the_Master,Chinese philosopher whose ideas and sayings were collected after his death and became the basis of a philosophical doctrine known a Confucianism (circa 551-478 BC)
+4061,Congo Congo_River Zaire_River,a major African river (one of the world's longest); flows through Congo into the South Atlantic
+4062,Congo Democratic_Republic_of_the_Congo Zaire Belgian_Congo,a republic in central Africa; achieved independence from Belgium in 1960
+4063,Congo Republic_of_the_Congo French_Congo,a republic in west-central Africa; achieved independence from France in 1960
+4064,Congo_franc,the basic unit of money in the Congo
+4065,Congolese,a native or inhabitant of the Republic of the Congo
+4066,Congregational_Christian_Church,merger of the Congregational Church and the Christian Church
+4067,Congregational_Church,a Protestant denomination holding that each individual congregation should be self-governing
+4068,Congregationalism,system of beliefs and church government of a Protestant denomination in which each member church is self-governing
+4069,Congregationalist,a member of the Congregational Church
+4070,Congress United_States_Congress U.S._Congress US_Congress,the legislature of the United States government
+4071,Congress_of_Industrial_Organizations CIO,a federation of North American industrial unions that merged with the American Federation of Labor in 1955
+4072,Congress_of_Racial_Equality CORE,an organization founded by James Leonard Farmer in 1942 to work for racial equality
+4073,Congressional_Record,a published written account of the speeches and debates and votes of the United States Congress
+4074,Congreve William_Congreve,English playwright remembered for his comedies (1670-1729)
+4075,Congridae family_Congridae,marine eels
+4076,Coniferales order_Coniferales,profusely branching and chiefly evergreen trees and some shrubs having narrow or needlelike leaves
+4077,Coniferopsida class_Coniferopsida Coniferophytina subdivision_Coniferophytina Coniferophyta,cone-bearing gymnosperms dating from the Carboniferous period; most are substantial trees; includes the classes Pinopsida (subdivision Pinophytina) and Ginkgopsida (subdivision Ginkgophytina) and Taxopsida (subdivision Taxophytina) which in turn include the surviving orders Coniferales and Taxales (yews) and sometimes Ginkgoales as well as extinct orders such as Cordaitales (of the Carboniferous and Permian)
+4078,Conilurus genus_Conilurus,jerboa rats
+4079,Coniogramme genus_Coniogramme,terrestrial ferns of Pacific islands and Asia
+4080,Conium genus_Conium,small genus of highly toxic biennials: hemlock
+4081,Conn's_syndrome,disturbances in saltwater balance and symptoms of weakness and muscular cramps and twitching and convulsions and sometimes paralysis; usually caused by a benign tumor of the cortex of the adrenal gland that leads to excess secretion of aldosterone
+4082,Connaraceae family_Connaraceae zebrawood_family,mostly tropical climbing shrubs or small trees; closely related to Leguminosae
+4083,Connarus genus_Connarus,large genus of tropical trees and shrubs; type genus of the Connaraceae
+4084,Connarus_guianensis,tropical American and east African tree with strikingly marked hardwood used in cabinetwork
+4085,Connecticut,one of the British colonies that formed the United States
+4086,Connecticut Connecticut_River,a river in the northeastern United States; flows south from northern New Hampshire along the border between New Hampshire and Vermont and through Massachusetts and Connecticut where it empties into Long Island Sound
+4087,Connecticut Nutmeg_State Constitution_State CT Ct.,a New England state; one of the original 13 colonies
+4088,Connecticuter,a native or resident of Connecticut
+4089,Connemara_heath St._Dabeoc's_heath Daboecia_cantabrica,low straggling evergreen shrub of western Europe represented by several varieties with flowers from white to rose-purple
+4090,Connochaetes genus_Connochaetes,African antelopes: gnus
+4091,Connolly Maureen_Catherine_Connolly Little_Mo_Connolly,United States tennis player who was the first woman to win the United States, British, French, and Australian championships in the same year (1953) (1934-1969)
+4092,Connors Jimmy_Conors James_Scott_Connors,outstanding United States tennis player (born in 1952)
+4093,Conocarpus genus_Conocarpus,monotypic genus of tropical American trees: button tree
+4094,Conoclinium genus_Conoclinium,mistflower
+4095,Conodonta order_Conodonta Conodontophorida order_Conodontophorida,extinct order of primitive vertebrates; the precise taxonomy is not clear; in some classifications considered a separate phylum
+4096,Conopodium genus_Conopodium,a genus of dicotyledonous plants of the family Umbelliferae
+4097,Conospermum genus_Conospermum,Australian shrubs (some trees) with flowers in dense spikes: smoke bush
+4098,Conoy,a member of an Algonquian people formerly living in Maryland between Chesapeake Bay and the Potomac river; allies of the Nanticoke people
+4099,Conrad Joseph_Conrad Teodor_Josef_Konrad_Korzeniowski,English novelist (born in Poland) noted for sea stories and for his narrative technique (1857-1924)
+4100,Conradina genus_Conradina,small genus of low aromatic shrubs of southeastern United States
+4101,Conservative,a member of a Conservative Party
+4102,Conservative_Jew,Jew who keeps some requirements of Mosaic law but adapts others to suit modern circumstances
+4103,Conservative_Judaism,Jews who keep some of the requirements of the Mosaic law but allow for adaptation of other requirements (as some of the dietary laws) to fit modern circumstances
+4104,Conservative_Judaism,beliefs and practices of Conservative Jews
+4105,Conservative_Party,a political party (especially in Great Britain or Australia) that believes in the importance of a capitalist economy with private ownership rather than state control
+4106,Consolida genus_Consolida,plants having flowers resembling the larkspur's but differing from larkspur's in the arrangement of petals; sometimes included in genus Delphinium
+4107,Constable John_Constable,English landscape painter (1776-1837)
+4108,Constance Council_of_Constance,the council in 1414-1418 that succeeded in ending the Great Schism in the Roman Catholic Church
+4109,Constance Lake_Constance Bodensee,a lake in southeastern Germany on the northern side of the Swiss Alps; forms part of the Rhine River
+4110,Constantina,a Romanian resort city on the Black Sea
+4111,Constantine,a walled city in northeastern Algeria to the east of Algiers; was destroyed in warfare in the 4th century and rebuilt by Constantine I
+4112,Constantine Constantine_I Constantine_the_Great Flavius_Valerius_Constantinus,Emperor of Rome who stopped the persecution of Christians and in 324 made Christianity the official religion of the Roman Empire; in 330 he moved his capital from Rome to Byzantium and renamed it Constantinople (280-337)
+4113,Constantinople First_Council_of_Constantinople,the second ecumenical council in 381 which added wording about the Holy Spirit to the Nicene Creed
+4114,Constantinople Fourth_Council_of_Constantinople,the council in 869 that condemned Photius who had become the patriarch of Constantinople without approval from the Vatican, thereby precipitating the schism between the eastern and western churches
+4115,Constantinople Second_Council_of_Constantinople,the fifth ecumenical council in 553 which held Origen's writings to be heretic
+4116,Constantinople Third_Council_of_Constantinople,the sixth ecumenical council in 680-681 which condemned Monothelitism by defining two wills in Christ, divine and human
+4117,Constitution Old_Ironsides,a United States 44-gun frigate that was one of the first three naval ships built by the United States; it won brilliant victories over British frigates during the War of 1812 and is without doubt the most famous ship in the history of the United States Navy; it has been rebuilt and is anchored in the Charlestown Navy Yard in Boston
+4118,Constitutional_Convention,the convention of United States statesmen who drafted the United States Constitution in 1787
+4119,Constitutional_Union_Party,a former political party in the United States; formed in 1859 by former Whigs who hoped to preserve the Union
+4120,Continent,the European mainland; "Englishmen like to visit the Continent but they wouldn't like to live there"
+4121,Continental_Army,the American army during the American Revolution
+4122,Continental_Congress,the legislative assembly composed of delegates from the rebel colonies who met during and after the American Revolution; they issued the Declaration of Independence and framed Articles of Confederation
+4123,Continuity_Irish_Republican_Army CIRA Continuity_Army_Council,a terrorist organization formed in Ireland in 1994 as a clandestine armed wing of Sinn Fein
+4124,Contopus genus_Contopus,pewees
+4125,Contra,a member of the guerrilla force that opposed a left-wing government in Nicaragua
+4126,Contras,a Nicaraguan counterrevolutionary guerrilla force from 1979 to 1990; it opposed a left-wing government, with support from the United States
+4127,Conuropsis genus_Conuropsis,a genus of Psittacidae
+4128,Convallaria genus_Convallaria,sometimes placed in family Convallariaceae: lily of the valley
+4129,Convallariaceae family_Convallariaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+4130,Converso,(medieval Spain and Portugal) a Jew or Moor who professed to convert to Christianity in order to avoid persecution or expulsion
+4131,Convolvulaceae family_Convolvulaceae morning-glory_family,morning glory; bindweed; sweet potato; plants having trumpet-shaped flowers and a climbing or twining habit
+4132,Conyza genus_Conyza,common American weed or wildflower
+4133,Cook James_Cook Captain_Cook Captain_James_Cook,English navigator who claimed the east coast of Australia for Britain and discovered several Pacific islands (1728-1779)
+4134,Cook_Strait,a narrow strait separating the North Island and South Island in New Zealand
+4135,Cooke Alistair_Cooke Alfred_Alistair_Cooke,United States journalist (born in England in 1908)
+4136,Cooke Jay_Cooke,United States financier who marketed Union bonds to finance the American Civil War; the failure of his bank resulted in a financial panic in 1873 (1821-1905)
+4137,Cooley's_anemia Cooley's_anaemia thalassemia_major thalassaemia_major,a fatal form of homozygous thalassemia (inherited from both parents) in which there is no hemoglobin; skeletal deformations; heart and spleen and liver enlarged
+4138,Coolidge Calvin_Coolidge President_Coolidge,elected vice president and succeeded as 30th President of the United States when Harding died in 1923 (1872-1933)
+4139,Cooper Gary_Cooper Frank_Cooper,United States film actor noted for his portrayals of strong silent heroes (1901-1961)
+4140,Cooper James_Fenimore_Cooper,United States novelist noted for his stories of American Indians and the frontier life (1789-1851)
+4141,Cooper Peter_Cooper,United States industrialist who built the first American locomotive; founded Cooper Union in New York City to offer free courses in the arts and sciences (1791-1883)
+4142,Cooper's_hawk blue_darter Accipiter_cooperii,bluish-grey North American hawk having a darting flight
+4143,Cooper_Union Cooper_Union_for_the_Advancement_of_Science_and_Art,university founded in 1859 by Peter Cooper to offer free courses in the arts and sciences
+4144,Cooperstown,a small town in east central New York; site of the National Baseball Hall of Fame
+4145,Coosa Coosa_River,river that rises in northwestern Georgia and flows southwest through eastern Alabama to join the Tallapoosa River near Montgomery and form the Alabama River
+4146,Copehan,a group of Penutian languages spoken to the west of the Sacramento river
+4147,Copenhagen Kobenhavn Danish_capital,the capital and largest city of Denmark; located on the island of Zealand; "Copenhagen is sometimes called the Paris of the North"
+4148,Copepoda subclass_Copepoda,minute planktonic or parasitic crustaceans
+4149,Copernican_system,(astronomy) Copernicus' astronomical model in which the Earth rotates around the sun
+4150,Copernicia genus_Copernicia,slow-growing tropical fan palms
+4151,Copernicus,a conspicuous crater on the Moon
+4152,Copernicus Nicolaus_Copernicus Mikolaj_Kopernik,Polish astronomer who produced a workable model of the solar system with the sun in the center (1473-1543)
+4153,Copland Aaron_Copland,United States composer who developed a distinctly American music (1900-1990)
+4154,Copley John_Copley John_Singleton_Copley,American painter who did portraits of Paul Revere and John Hancock before fleeing to England to avoid the American Revolution (1738-1815)
+4155,Coppola Francis_Ford_Coppola,United States filmmaker (born in 1939)
+4156,Coprinaceae family_Coprinaceae,used in some classifications for the genus Coprinus
+4157,Coprinus genus_Coprinus,genus of black-spotted agarics in which the cap breaks down at maturity into an inky fluid; sometimes placed in its own family Coprinaceae
+4158,Copt,an Egyptian descended from the ancient Egyptians
+4159,Copt,a member of the Coptic Church
+4160,Coptic,the liturgical language of the Coptic Church used in Egypt and Ethiopia; written in the Greek alphabet
+4161,Coptic_Church,the ancient Christian church of Egypt
+4162,Coptis genus_Coptis,small genus of low perennial herbs having yellow rhizomes and white or yellow flowers
+4163,Coracias genus_Coracias,type genus of the Coraciidae
+4164,Coraciidae family_Coraciidae,rollers
+4165,Coraciiformes order_Coraciiformes,rollers; kingfishers; hornbills; hoopoes; motmots; bee eaters; todies
+4166,Coragyps genus_Coragyps,a genus of Cathartidae
+4167,Coral_Sea,an arm of the South Pacific to the northeast of Australia
+4168,Coral_Sea battle_of_the_Coral_Sea,a Japanese defeat in World War II (May 1942); the first naval battle fought entirely by planes based on aircraft carriers
+4169,Corallorhiza genus_Corallorhiza,genus of leafless root-parasitic orchids having small purplish or yellowish racemose flowers with lobed lips; widely distributed in temperate regions
+4170,Corbett Jim_Corbett James_John_Corbett Gentleman_Jim,United States heavyweight boxing champion (1866-1933)
+4171,Corchorus genus_Corchorus,widely distributed genus of tropical herbs or subshrubs; especially Asia
+4172,Cordaitaceae family_Cordaitaceae,chiefly Paleozoic plants; Cordaites is the chief and typical genus
+4173,Cordaitales order_Cordaitales,extinct plants having tall arborescent trunks comparable to or more advanced than cycads; known from the Pennsylvanian period; probably extinct since the Mesozoic era
+4174,Cordaites genus_Cordaites,tall Paleozoic trees superficially resembling modern screw pines; structurally intermediate in some ways between cycads and conifers
+4175,Corday Charlotte_Corday Marie_Anne_Charlotte_Corday_d'Armont,French revolutionary heroine (a Girondist) who assassinated Marat (1768-1793)
+4176,Cordia genus_Cordia,tropical deciduous or evergreen trees or shrubs of the family Boraginaceae
+4177,Cordoba Cordova,a city in southern Spain; center of Moorish culture
+4178,Cordoba Cordova,a city in central Argentina; site of a university founded in 1613
+4179,Cordoba Francisco_Fernandez_Cordoba Cordova Francisco_Fernandez_de_Cordova,Spanish explorer who discovered Yucatan (1475-1526)
+4180,Cordylidae family_Cordylidae,small family of spiny ovoviviparous African lizards
+4181,Cordyline genus_Cordyline,Asiatic and Pacific trees or shrubs; fragments of the trunk will regrow to form whole plants
+4182,Cordylus genus_Cordylus,type genus of the Cordylidae; spiny lizards somewhat resembling tiny crocodiles
+4183,Coregonidae family_Coregonidae,soft-finned fishes comprising the freshwater whitefishes; formerly included in the family Salmonidae
+4184,Coregonus genus_Coregonus,type genus of the Coregonidae: whitefishes
+4185,Coreidae family_Coreidae,squash bugs and leaf-footed bugs
+4186,Corelli Arcangelo_Corelli,Italian violinist and composer of violin concertos (1653-1713)
+4187,Coriandrum genus_Coriandrum,small genus of annual Mediterranean herbs
+4188,Corinth Korinthos,the modern Greek port near the site of the ancient city that was second only to Athens
+4189,Corinthian,a resident of Corinth
+4190,Corinthian_order,the last Greek order; similar to the Ionic order except the capital is decorated with carvings of acanthus leaves
+4191,Coriolis_effect,(physics) an effect whereby a body moving in a rotating frame of reference experiences the Coriolis force acting perpendicular to the direction of motion and to the axis of rotation; on Earth the Coriolis effect deflects moving bodies to the right in the northern hemisphere and to the left in the southern hemisphere
+4192,Coriolis_force,(physics) a force due to the earth's rotation; acts on a body in motion (airplane or projectile) in a rotating reference frame; in a rotating frame of reference Newton's second law of motion can be made to apply if in addition to the real forces acting on a body a Coriolis force and a centrifugal force are introduced
+4193,Corixa genus_Corixa,type genus of the Corixidae: boat bugs
+4194,Corixidae family_Corixidae,water bugs
+4195,Cork,a port city in southern Ireland
+4196,Corn_Belt,the midwestern states in the U.S. where corn is grown; Iowa and Illinois are excellent for raising corn and corn-fed livestock
+4197,Cornaceae family_Cornaceae dogwood_family,a rosid dicot family of the order Umbellales including: genera Aucuba, Cornus, Corokia, Curtisia, Griselinia, Helwingia
+4198,Corneille Pierre_Corneille,French tragic dramatist whose plays treat grand moral themes in elegant verse (1606-1684)
+4199,Cornell Ezra_Cornell,United States businessman who unified the telegraph system in the United States and who in 1865 (with Andrew D. White) founded Cornell University (1807-1874)
+4200,Cornell Katherine_Cornell,United States actress noted for her performances in Broadway plays (1893-1974)
+4201,Cornell_University,a university in Ithaca, New York
+4202,Cornish,a Celtic language spoken in Cornwall
+4203,Cornish Cornish_fowl,English breed of compact domestic fowl; raised primarily to crossbreed to produce roasters
+4204,Cornish_heath Erica_vagans,bushy shrub having pink to white flowers; common on the moors of Cornwall and in southwestern Europe; cultivated elsewhere
+4205,Cornish_pasty,meat pie with filling of meat and vegetables
+4206,Cornishman,a man who is a native or inhabitant of Cornwall
+4207,Cornishwoman,a woman who is a native or resident of Cornwall
+4208,Cornus genus_Cornus,a rosid dicot genus of the family Cornaceae including: dogwood; cornel: perennial chiefly deciduous shrubs or small trees of temperate regions of northern hemisphere
+4209,Cornwall,a hilly county in southwestern England
+4210,Cornwallis Charles_Cornwallis First_Marquess_Cornwallis,commander of the British forces in the American War of Independence; was defeated by American and French troops at Yorktown (1738-1805)
+4211,Corokia genus_Corokia,evergreen shrubs with intricately twisted wiry stems that in summer are smothered in small yellow flowers; grows in New Zealand
+4212,Corona_Borealis,a small constellation in the northern hemisphere between Bootes and Hercules
+4213,Coropuna,a mountain peak in the Andes in Peru (21,083 feet high)
+4214,Corot Jean_Baptiste_Camille_Corot,French painter of Italian landscapes (1796-1875)
+4215,Corpus_Christi,Thursday after Trinity Sunday; first celebrated in 1246
+4216,Corpus_Christi,a city in southern Texas on an arm of the Gulf of Mexico
+4217,Correggio Antonio_Allegri_da_Correggio,Italian painter noted for his use of chiaroscuro and perspective (1494-1534)
+4218,Corse Corsica,an island in the Mediterranean; with adjacent islets it constitutes a region of France
+4219,Corse Corsica,a region of France on the island of Corsica; birthplace of Napoleon Bonaparte
+4220,Cortaderia genus_Cortaderia,tall ornamental grasses of South America and New Zealand and New Guinea: pampas grass
+4221,Cortes Cortez Hernando_Cortes Hernando_Cortez Hernan_Cortes Hernan_Cortez,Spanish conquistador who defeated the Aztecs and conquered Mexico (1485-1547)
+4222,Corticium genus_Corticium,genus of fungi having simple smooth sporophores; some are parasitic on wood or economic crops; some species formerly placed in form genus Rhizoctinia
+4223,Cortinariaceae family_Cortinariaceae,a family of fungi belonging to the order Agaricales
+4224,Cortinarius genus_Cortinarius,the largest genus in the Agaricales; agarics having rusty spores and prominent cortinae (cobwebby partial veils)
+4225,Cortinarius_armillatus,a fungus with large tawny caps and pale cinnamon gills and a red band of veil around the stalk; usually found near birch trees
+4226,Cortinarius_atkinsonianus,an edible fungus with a slimy viscid cap that is initially yellow but turns olive and then tawny; flesh is lavender
+4227,Cortinarius_corrugatus,a fungus with a viscid wrinkled tawny cap; the stalk has a basal bulb that diminishes as the stalk elongates; the gills are dark violet at first but soon turn brown
+4228,Cortinarius_gentilis,a poisonous fungus with a bright yellow brown cap and a long cinnamon colored stalk
+4229,Cortinarius_mutabilis purple-staining_Cortinarius,a fungus with a reddish purple cap having a smooth slimy surface; close violet gills; all parts stain dark purple when bruised
+4230,Cortinarius_semisanguineus,a fungus with a dry brown cap and rusty red gills and a yellowish stalk
+4231,Cortinarius_subfoetidus,a fungus with a sticky lavender cap and stalk that whitish above and covered with a silky lavender sheath
+4232,Cortinarius_violaceus,a fungus that is violet overall with a squamulose cap
+4233,Cortland,large apple with a red skin
+4234,Corvidae family_Corvidae,crow; raven; rook; jackdaw; chough; magpie; jay
+4235,Corvus Crow,a small quadrilateral constellation in the southern hemisphere near Virgo
+4236,Corvus genus_Corvus,type genus of the Corvidae: crows and ravens
+4237,Coryanthes genus_Coryanthes,small genus of tropical American epiphytic or lithophytic orchids
+4238,Corydalidae family_Corydalidae,dobsons
+4239,Corydalis genus_Corydalis,annual or perennial herbs of Himalayan China and South Africa
+4240,Corydalus genus_Corydalus Corydalis genus_Corydalis,type genus of the Corydalidae
+4241,Corylaceae subfamily_Corylaceae family_Corylaceae,used in some classification systems for the genus Corylus
+4242,Corylopsis genus_Corylopsis,small genus of deciduous shrubs of temperate regions of Asia
+4243,Corylus genus_Corylus,deciduous monoecious nut-bearing shrubs of small trees: hazel; sometimes placed in the subfamily or family Corylaceae
+4244,Corynebacteriaceae family_Corynebacteriaceae,a large family of mostly Gram-positive and aerobic and nonmotile rod-shaped bacteria of the order Eubacteriales
+4245,Corynebacterium_diphtheriae C._diphtheriae Klebs-Loeffler_bacillus,a species of bacterium that causes diphtheria
+4246,Corypha genus_Corypha,large fan palms of tropical Asia to Australia
+4247,Coryphaena_equisetis,a kind of dolphinfish
+4248,Coryphaena_hippurus,the more common dolphinfish valued as food; about six feet long
+4249,Coryphaenidae family_Coryphaenidae,large active pelagic percoid fish
+4250,Cosimo_de_Medici Cosimo_the_Elder,Italian financier and statesman and friend of the papal court (1389-1464)
+4251,Cosmocampus genus_Cosmocampus,a genus of fish in the family Syngnathidae
+4252,Cossack,a member of a Slavic people living in southern European Russia and Ukraine and adjacent parts of Asia and noted for their horsemanship and military skill; they formed an elite cavalry corps in czarist Russia
+4253,Costa_Rica Republic_of_Costa_Rica,a republic in Central America; one of the most politically stable countries in Latin America
+4254,Costa_Rican,a native or inhabitant of Costa Rica
+4255,Costa_Rican_monetary_unit,monetary unit in Costa Rica
+4256,Costanoan,a member of a North American Indian people living in coastal California between Monterey and San Francisco Bay
+4257,Costanoan,a Penutian language spoken by the Costanoan
+4258,Cotacachi,an Andean volcano in northern Ecuador; last erupted in 1955
+4259,Cotes_de_Provence,a wine from southeastern France on the Mediterranean coast
+4260,Cotingidae family_Cotingidae,cotingas; umbrella birds
+4261,Cotinus genus_Cotinus,smoke trees
+4262,Cotoneaster_dammeri,climbing evergreen shrub with white flowers and red berries; often used as ground cover
+4263,Cotoneaster_horizontalis,deciduous flat-growing shrub with a fanned herringbone pattern and having reddish flowers and orange-red berries; used as a ground cover
+4264,Cotonou,chief port of Benin on the Bight of Benin
+4265,Cotopaxi,the world's largest active volcano; located in the Andes in north central Ecuador
+4266,Cotswold,sheep with long wool originating in the Cotswold Hills
+4267,Cotswolds Cotswold_Hills,a range of low hills in southwestern England
+4268,Cottidae family_Cottidae,sculpins
+4269,Cottus genus_Cottus,type genus of the Cottidae: sculpins
+4270,Cotula genus_Cotula,cosmopolitan herbs especially southern hemisphere; many used as ground covers
+4271,Coturnix genus_Coturnix,Old World quail
+4272,Coue Emile_Coue,French psychotherapist who claimed that if one imagined one was getting better, one would get better (1857-1926)
+4273,Coulomb Charles_Augustin_de_Coulomb,French physicist famous for his discoveries in the field of electricity and magnetism; formulated Coulomb's Law (1736-1806)
+4274,Coulomb's_Law,a fundamental principle of electrostatics; the force of attraction or repulsion between two charged particles is directly proportional to the product of the charges and inversely proportional to the distance between them; principle also holds for magnetic poles
+4275,Coumarouna genus_Coumarouna Dipteryx genus_Dipteryx,tropical American trees: tonka beans
+4276,Council_Bluffs,a town in southwest Iowa on the Missouri River across from Omaha
+4277,Council_of_Basel-Ferrara-Florence,the council in 1431-1439 that concentrated on the elimination of heresies and on reforms within the Roman Catholic Church
+4278,Council_of_Economic_Advisors,an executive agency responsible for providing economic advice to the President
+4279,Council_of_Trent,a council of the Roman Catholic Church convened in Trento in three sessions between 1545 and 1563 to examine and condemn the teachings of Martin Luther and other Protestant reformers; redefined the Roman Catholic doctrine and abolished various ecclesiastical abuses and strengthened the papacy
+4280,Council_on_Environmental_Policy,the executive agency that advises the President on protecting the environment
+4281,Counsel_to_the_Crown,a barrister selected to serve as counsel to the British ruler
+4282,Count_Fleet,thoroughbred that won the triple crown in 1943
+4283,Counter_Reformation,the reaction of the Roman Catholic Church to the Reformation reaffirming the veneration of saints and the authority of the Pope (to which Protestants objected); many leaders were Jesuits
+4284,Counterterrorist_Center CTC,an agency that helps the Director of Central Intelligence coordinate counterterrorist efforts in order to preempt and disrupt and defeat terrorist activities at the earliest possible stage
+4285,Couperin Francois_Couperin,French composer of music for organ and a member of a family of distinguished organists (1668-1733)
+4286,Courbet Gustave_Courbet,French painter noted for his realistic depiction of everyday scenes (1819-1877)
+4287,Court Margaret_Court,Australian woman tennis player who won many major championships (born in 1947)
+4288,Court_of_Saint_James's,the British royal court
+4289,Courtelle,an acrylic fabric resembling wool
+4290,Cousteau Jacques_Costeau Jacques_Yves_Costeau,French underwater explorer (born in 1910)
+4291,Coventry,an industrial city in central England; devastated by air raids during World War II; remembered as the home of Lady Godiva in the 11th century
+4292,Coward Noel_Coward Sir_Noel_Pierce_Coward,English dramatist and actor and composer noted for his witty and sophisticated comedies (1899-1973)
+4293,Cowpens battle_of_Cowpens,battle in the American Revolution; Americans under Daniel Morgan defeated the British
+4294,Cowper William_Cowper,English surgeon who discovered Cowper's gland (1666-1709)
+4295,Cowper William_Cowper,English poet who wrote hymns and poetry about nature (1731-1800)
+4296,Cowper's_gland bulbourethral_gland,either of two glands that discharge a component of seminal fluid into the urethra; homologous to Bartholin's gland in the female
+4297,Cox's_Orange_Pippin,a yellow Pippin with distinctive flavor
+4298,Cox-2_inhibitor,an anti-inflammatory drug that fights pain and blocks Cox-2 activity without impeding the activity of Cox-1; increases the risk of heart attacks; "Cox-2 inhibitors reduce the symptoms of arthritis without endangering the stomach and kidneys"
+4299,Crab_Nebula,a remnant of a supernova detected first in 1054 AD
+4300,Cracidae family_Cracidae,curassows; guans; chachalacas
+4301,Cracow Krakow Krakau,an industrial city in southern Poland on the Vistula
+4302,Cracticidae family_Cracticidae,Australian birds formerly included in the family Laniidae
+4303,Cracticus genus_Cracticus,type genus of the Cracticidae: Australian butcherbirds
+4304,Craigie William_A._Craigie Sir_William_Alexander_Craigie,English lexicographer who was a joint editor of the Oxford English Dictionary (1872-1966)
+4305,Crambe genus_Crambe,annual or perennial herbs with large leaves that resemble the leaves of cabbages
+4306,Crane Hart_Crane Harold_Hart_Crane,United States poet (1899-1932)
+4307,Crane Stephen_Crane,United States writer (1871-1900)
+4308,Crangon genus_Crangon,type genus of the family Crangonidae
+4309,Crangonidae family_Crangonidae,shrimps
+4310,Craspedia genus_Craspedia,herbs of Australia and New Zealand
+4311,Crassostrea genus_Crassostrea,Virginia oysters
+4312,Crassula genus_Crassula,type genus of Crassulaceae; herbs and small shrubs having woody stems and succulent aerial parts
+4313,Crassulaceae family_Crassulaceae stonecrop_family,succulent shrubs and herbs
+4314,Crataegus genus_Crataegus,thorny shrubs and small trees: hawthorn; thorn; thorn apple
+4315,Crater,a faint constellation in the southern hemisphere near Hydra and Corvus
+4316,Crater_Lake_National_Park,a national park in Oregon having the deepest lake in the United States in the crater of an extinct volcano
+4317,Crateva genus_Crateva,tropical genus of small trees or shrubs
+4318,Crawford Joan_Crawford,United States film actress (1908-1977)
+4319,Crawford Thomas_Crawford,United States neoclassical sculptor (1814-1857)
+4320,Crax genus_Crax,type genus of the Cracidae: curassows
+4321,Crazy_Glue,a commercial brand of epoxy glue
+4322,Crazy_Horse Tashunca-Uitco,a chief of the Sioux who resisted the invasion of the Black Hills and joined Sitting Bull in the defeat of General Custer at Little Bighorn (1849-1877)
+4323,Creation,(theology) God's act of bringing the universe into existence
+4324,Crecy battle_of_Crecy,the first decisive battle of the Hundred Years' War; in 1346 the English under Edward III defeated the French under Philip of Valois
+4325,Cree,a member of an Algonquian people living in central Canada
+4326,Cree,the Algonquian language spoken by the Cree
+4327,Creek,any member of the Creek Confederacy (especially the Muskogee) formerly living in Georgia and Alabama but now chiefly in Oklahoma
+4328,Creek_Confederacy,a North American Indian confederacy organized by the Muskogee that dominated the southeastern part of the United States before being removed to Oklahoma
+4329,Cremona,a city in Lombardy on the Po River; noted for the manufacture of fine violins from the 16th to the 18th centuries
+4330,Creole,a person of European descent born in the West Indies or Latin America
+4331,Creole,a person descended from French ancestors in southern United States (especially Louisiana)
+4332,Creon,(Greek mythology) the brother of Jocasta and uncle of Antigone who became king of Thebes after the fall of Oedipus
+4333,Crepis genus_Crepis,hawk's-beard; cosmopolitan in northern hemisphere
+4334,Crescentia genus_Crescentia,a genus of tropical American trees of the family Bignoniaceae; has a short trunk and crooked limbs and drooping branches
+4335,Cretaceous Cretaceous_period,from 135 million to 63 million years ago; end of the age of reptiles; appearance of modern insects and flowering plants
+4336,Cretan,a native or inhabitant of Crete
+4337,Crete Kriti,the largest Greek island in the Mediterranean; site of the Minoan civilization that reached its peak in 1600 BC
+4338,Creutzfeldt-Jakob_disease CJD Jakob-Creutzfeldt_disease,rare (usually fatal) brain disease (usually in middle age) caused by an unidentified slow virus; characterized by progressive dementia and gradual loss of muscle control
+4339,Crex genus_Crex,corncrakes
+4340,Cricetidae family_Cricetidae,mostly small New World rodents including New World mice and lemmings and voles and hamsters
+4341,Cricetus genus_Cricetus,type genus of the Cricetidae: Old World hamsters
+4342,Crichton James_Crichton The_Admirable_Crichton,Scottish man of letters and adventurer (1560-1582)
+4343,Crick Francis_Crick Francis_Henry_Compton_Crick,English biochemist who (with Watson in 1953) helped discover the helical structure of DNA (1916-2004)
+4344,Crimea,a Ukrainian peninsula between the Black Sea and the Sea of Azov
+4345,Crimea-Congo_hemorrhagic_fever,an infection common in Arab states caused by a bunyavirus; transmitted by a tick that thrives on sheep
+4346,Crimean_War,a war in Crimea between Russia and a group of nations including England and France and Turkey and Sardinia; 1853-1856
+4347,Criminal_Intelligence_Services_of_Canada CISC,an agency of the Canadian government that unifies the intelligence units of Canadian law enforcement agencies
+4348,Criminal_Investigation_Command CID,the United States Army's principal law enforcement agency responsible for the conduct of criminal investigations for all levels of the Army anywhere in the world
+4349,Crinoidea class_Crinoidea,sea lilies
+4350,Crispin Saint_Crispin St._Crispin,patron saint of shoemakers; he and his brother were martyred for trying to spread Christianity (3rd century)
+4351,Crius,(Greek mythology) one of the Titans
+4352,Cro-magnon,extinct human of Upper Paleolithic in Europe
+4353,Croatia Republic_of_Croatia Hrvatska,a republic in the western Balkans in south-central Europe in the eastern Adriatic coastal area; formerly part of the Habsburg monarchy and Yugoslavia; became independent in 1991
+4354,Croatian Croat,a member of the Slavic people living in Croatia
+4355,Crocethia genus_Crocethia,a genus of Scolopacidae
+4356,Crock_Pot,an electric cooker that maintains a relatively low temperature
+4357,Crockett Davy_Crockett David_Crockett,United States frontiersman and Tennessee politician who died at the siege of the Alamo (1786-1836)
+4358,Crocodylia order_Crocodylia Crocodilia order_Crocodilia,crocodiles; alligators; caimans; gavials
+4359,Crocodylidae family_Crocodylidae,true crocodiles
+4360,Crocodylus genus_Crocodylus Crocodilus genus_Crocodilus,type genus of the Crocodylidae
+4361,Crocuta genus_Crocuta,a genus of Hyaenidae
+4362,Croesus,last king of Lydia (died in 546 BC)
+4363,Croesus,a very wealthy man
+4364,Crohn Burrill_Bernard_Crohn,United States physician who specialized in diseases of the intestines; he was the first to describe regional ileitis which is now known as Crohn's disease (1884-1983)
+4365,Croix_de_Guerre,a French military decoration for gallantry
+4366,Cromwell Oliver_Cromwell Ironsides,English general and statesman who led the parliamentary army in the English Civil War (1599-1658)
+4367,Cronartium genus_Cronartium,rust fungi having aecia produced in raised or swollen sori and teliospores borne in waxy columns
+4368,Cronus,(Greek mythology) the supreme god until Zeus dethroned him; son of Uranus and Gaea in ancient Greek mythology; identified with Roman Saturn
+4369,Cronyn Hume_Cronyn Hume_Blake_Cronyn,Canadian actor who frequently played character parts with his wife Jessica Tandy (1911-2003)
+4370,Crookes William_Crookes Sir_William_Crookes,English chemist and physicist; discovered thallium; invented the radiometer and studied cathode rays (1832-1919)
+4371,Crookes_radiometer,electromagnetic radiometer consisting of a small paddlewheel that rotates when placed in daylight
+4372,Crookes_tube,the original gas-discharge cathode-ray tube
+4373,Crosby Bing_Crosby Harry_Lillis_Crosby,United States singer and film actor (1903-1977)
+4374,Cross,a representation of the structure on which Jesus was crucified; used as an emblem of Christianity or in heraldry
+4375,Cross-Florida_Waterway Okeechobee_Waterway,a waterway used by small boats to travel between the Atlantic Ocean and the Gulf of Mexico through Lake Okeechobee and the Caloosahatchee Canal and the Caloosahatchee River
+4376,Crossopterygii subclass_Crossopterygii,fishes having paired fins resembling limbs and regarded as ancestral to amphibians
+4377,Crotalidae family_Crotalidae,New World vipers: pit vipers
+4378,Crotalus genus_Crotalus,large rattlesnakes; seldom bite unless startled or pursuing prey
+4379,Crotaphytus genus_Crotaphytus,collared lizards
+4380,Crotophaga genus_Crotophaga,ani
+4381,Crouse Russel_Crouse,United States playwright (1893-1966)
+4382,Crow,a member of the Siouan people formerly living in eastern Montana
+4383,Crow,a Siouan language spoken by the Crow
+4384,Crown,the Crown (or the reigning monarch) as the symbol of the power and authority of a monarchy; "the colonies revolted against the Crown"
+4385,Crown_Colony,a British colony controlled by the British Crown, represented by a governor
+4386,Crown_land,land that belongs to the Crown
+4387,Cruciferae family_Cruciferae Brassicaceae family_Brassicaceae mustard_family,a large family of plants with four-petaled flowers; includes mustards, cabbages, broccoli, turnips, cresses, and their many relatives
+4388,Crucifixion,the death of Jesus by crucifixion
+4389,Crusade,any of the more or less continuous military expeditions in the 11th to 13th centuries when Christian powers of Europe tried to recapture the Holy Land from the Muslims
+4390,Crusader,a warrior who engages in a holy war; "the Crusaders tried to recapture the Holy Land from the Muslims"
+4391,Crustacea class_Crustacea,class of mandibulate arthropods including: lobsters; crabs; shrimps; woodlice; barnacles; decapods; water fleas
+4392,Cryptacanthodes genus_Cryptacanthodes,a genus of Stichaeidae
+4393,Cryptobranchidae family_Cryptobranchidae,large aquatic salamanders: hellbenders; giant salamanders
+4394,Cryptobranchus genus_Cryptobranchus,type genus of the Cryptobranchidae
+4395,Cryptocercidae family_Cryptocercidae,a family of Blattodea
+4396,Cryptocercus genus_Cryptocercus,cockroaches
+4397,Cryptogamia,in former classification systems: one of two major plant divisions, including all plants that do not bear seeds: ferns, mosses, algae, fungi
+4398,Cryptogramma genus_Cryptogramma,sometimes placed in family Polypodiaceae or Cryptogrammataceae
+4399,Cryptogrammataceae family_Cryptogrammataceae,one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems
+4400,Cryptomeria genus_Cryptomeria,Japanese cedar; sugi
+4401,Cryptophyceae class_Cryptophyceae,motile usually brownish-green protozoa-like algae
+4402,Cryptophyta phylum_Cryptophyta,a phylum in the kingdom Protoctista
+4403,Cryptoprocta genus_Cryptoprocta,large primitive cat-like carnivores inhabiting forests of Madagascar
+4404,Cryptotermes genus_Cryptotermes,genus of dry wood termites; cosmopolitan in distribution; sometimes considered a subgenus of Kalotermes
+4405,Cryptotis genus_Cryptotis,least shrews
+4406,Ctenizidae family_Ctenizidae,large burrowing spiders
+4407,Ctenocephalides genus_Ctenocephalides,an arthropod genus of fleas
+4408,Ctenocephalus genus_Ctenocephalus,a former usage synonymous with Ctenocephalides
+4409,Ctenophora phylum_Ctenophora,comb jellies; sea acorns; a small phylum formerly considered a class of Coelenterata
+4410,Cub_Scout,a junior Boy Scout
+4411,Cuba,the largest island in the West Indies
+4412,Cuba Republic_of_Cuba,a communist state in the Caribbean on the island of Cuba
+4413,Cuban,a native or inhabitant of Cuba
+4414,Cuban_Revolution,the revolution led by Fidel Castro and a small band of guerrilla fighters against a corrupt dictatorship in Cuba; 1956-1959
+4415,Cuban_bast blue_mahoe mahoe majagua mahagua Hibiscus_elatus,erect forest tree of Cuba and Jamaica having variably hairy leaves and orange-yellow or orange-red flowers; yields a moderately dense timber for cabinetwork and gunstocks
+4416,Cuban_heel,a broad heel of medium height on women's shoes
+4417,Cuban_monetary_unit,monetary unit in Cuba
+4418,Cuban_peso peso,the basic unit of money in Cuba; equal to 100 centavos
+4419,Cuculidae family_Cuculidae,includes cuckoo; ani; roadrunner
+4420,Cuculiformes order_Cuculiformes,cuckoos; touracos; etc.
+4421,Cuculus genus_Cuculus,type genus of the Cuculidae
+4422,Cucumis genus_Cucumis,cucumbers; muskmelons
+4423,Cucurbita genus_Cucurbita,type genus of the Cucurbitaceae
+4424,Cucurbitaceae family_Cucurbitaceae gourd_family,a family of herbaceous vines (such as cucumber or melon or squash or pumpkin)
+4425,Culbertson Ely_Culbertson,United States authority on contract bridge whose books helped to popularize the game (1891-1955)
+4426,Culcita genus_Culcita,includes some plants usually placed in e.g. genus Dicksonia: terrestrial ferns resembling bracken; tropical America; Malaysia to Australia and Polynesia; southwestern Europe and Atlantic islands
+4427,Culebra,a small island off the coast of Puerto Rico with miles of beautiful beaches
+4428,Culex genus_Culex,type genus of the Culicidae: widespread genus of mosquitoes distinguished by holding the body parallel to the resting surface
+4429,Culex_quinquefasciatus Culex_fatigans,widespread tropical mosquito that transmits filarial worms
+4430,Culiacan,a city in northwestern Mexico
+4431,Culicidae family_Culicidae,mosquitoes
+4432,Cultural_Revolution Great_Proletarian_Cultural_Revolution,a radical reform in China initiated by Mao Zedong in 1965 and carried out largely by the Red Guard; intended to eliminate counterrevolutionary elements in the government it resulted in purges of the intellectuals and socioeconomic chaos
+4433,Culver's_root Culvers_root Culver's_physic Culvers_physic whorlywort Veronicastrum_virginicum,a tall perennial herb having spikes of small white or purple flowers; common in eastern North America
+4434,Cumana,a port city in northeastern Venezuela on the Caribbean Sea; founded in 1523, it is the oldest European settlement in South America
+4435,Cumberland Cumberland_River,a river that rises in southeastern Kentucky and flows westward through northern Tennessee to become a tributary of the Ohio River in southwestern Kentucky
+4436,Cumberland William_Augustus Duke_of_Cumberland Butcher_Cumberland,English general; son of George II; fought unsuccessfully in the battle of Fontenoy (1721-1765)
+4437,Cumberland_Gap,a pass through the Cumberland Mountains between Virginia and Kentucky that early settlers used in order to move west
+4438,Cumberland_Mountains Cumberland_Plateau,the southwestern part of the Appalachians
+4439,Cumbria,a former Celtic kingdom in northwestern England; the name continued to be used for the hilly northwestern region of England including the Lake District and the northern Pennines
+4440,Cumbria,a county of northwestern England
+4441,Cuminum genus_Cuminum,cumin
+4442,Cunaxa battle_of_Cunaxa,battle in 401 BC when the Artaxerxes II defeated his younger brother who tried to usurp the throne
+4443,Cuniculus genus_Cuniculus,pacas
+4444,Cunningham Merce_Cunningham,United States dancer and choreographer (born in 1922)
+4445,Cunoniaceae family_Cunoniaceae cunonia_family,trees or shrubs or climbers; mostly southern hemisphere
+4446,Cuon Cyon genus_Cuon genus_Cyon,Asiatic wild dog
+4447,Cupid Amor,(Roman mythology) god of love; counterpart of Greek Eros
+4448,Cupid's_bow,the double curve of the upper lip when considered to resemble Cupid's bow
+4449,Cupid's_bow,a curved bow with reversed curve ends
+4450,Cupressaceae family_Cupressaceae cypress_family,cypresses and junipers and many cedars
+4451,Cupressus genus_Cupressus,type genus of Cupressaceae
+4452,Cuquenan Cuquenan_Falls Kukenaam Kukenaam_Falls,a famous waterfall in Venezuela
+4453,Curacao,a popular island resort in the Netherlands Antilles
+4454,Curculionidae family_Curculionidae,true weevils: snout beetles
+4455,Curcuma genus_Curcuma,tropical Asiatic perennial herbs
+4456,Curia,(Roman Catholic Church) the central administration governing the Roman Catholic Church
+4457,Curie Marie_Curie Madame_Curie Marya_Sklodowska,French chemist (born in Poland) who won two Nobel prizes; one (with her husband and Henri Becquerel) for research on radioactivity and another for her discovery of radium and polonium (1867-1934)
+4458,Curie Pierre_Curie,French physicist; husband of Marie Curie (1859-1906)
+4459,Curie_temperature Curie_point,the temperature above which a ferromagnetic substance loses its ferromagnetism and becomes paramagnetic
+4460,Curitiba,a city in southeastern Brazil
+4461,Curl Robert_Curl Robert_F._Curl Robert_Floyd_Curl_Jr.,American chemist who with Richard Smalley and Harold Kroto discovered fullerenes and opened a new branch of chemistry (born in 1933)
+4462,Currier Nathaniel_Currier,United States lithographer who (with his partner James Ives) produced thousands of prints signed `Currier & Ives' (1813-1888)
+4463,Cursorius genus_Cursorius,coursers
+4464,Curtis William_Curtis,English botanical writer and publisher (1746-1799)
+4465,Curtisia genus_Curtisia,a large evergreen tree of South Africa
+4466,Curtiss Glenn_Curtiss Glenn_Hammond_Curtiss,United States industrialist and aviation pioneer (1878-1930)
+4467,Cuscuta genus_Cuscuta,genus of twining leafless parasitic herbs lacking chlorophyll: dodder
+4468,Cushing Harvey_Cushing Harvery_Williams_Cushing,United States neurologist noted for his study of the brain and pituitary gland and who identified Cushing's syndrome (1869-1939)
+4469,Cushing's_disease hyperadrenalism,a glandular disorder caused by excessive ACTH resulting in greater than normal functioning of the adrenal gland; characterized by obesity
+4470,Cushing's_syndrome hyperadrenocorticism,a glandular disorder caused by excessive cortisol
+4471,Cushitic,a group of languages spoken in Ethiopia and Somalia and northwestern Kenya and adjacent regions
+4472,Custer George_Armstrong_Custer General_Custer,United States general who was killed along with all his command by the Sioux at the Battle of Little Bighorn (1839-1876)
+4473,Cuterebra genus_Cuterebra,type genus of the Cuterebridae
+4474,Cuterebridae family_Cuterebridae,New World botflies
+4475,Cuvier Georges_Cuvier Baron_Georges_Cuvier Georges_Leopold_Chretien_Frederic_Dagobert_Cuvier,French naturalist known as the father of comparative anatomy (1769-1832)
+4476,Cuzco Cusco,a town in the Andes in southern Peru; formerly the capital of the Inca empire
+4477,Cyamopsis genus_Cyamopsis,small genus of annual usually hairy herbs of tropical Africa and Arabia
+4478,Cyamus genus_Cyamus,whale lice
+4479,Cyanocitta genus_Cyanocitta,New World jays
+4480,Cyanophyta division_Cyanophyta,prokaryotic organisms sometimes considered a class or phylum or subkingdom; coextensive with the Cyanophyceae: cyanobacteria (blue-green algae)
+4481,Cyathea genus_Cyathea,type genus of the Cyatheaceae: tree ferns of the tropical rain forest to temperate woodlands
+4482,Cyatheaceae family_Cyatheaceae,tropical tree ferns
+4483,Cybele Dindymene Great_Mother Magna_Mater Mater_Turrita,great nature goddess of ancient Phrygia in Asia Minor; counterpart of Greek Rhea and Roman Ops
+4484,Cycadaceae family_Cycadaceae cycad_family,ancient palmlike plants closely related to ferns in that fertilization is by means of spermatozoids
+4485,Cycadales order_Cycadales,primitive tropical gymnosperms abundant in the Mesozoic, now reduced to a few scattered tropical forms
+4486,Cycadofilicales order_Cycadofilicales Lyginopteridales order_Lyginopteridales,fossil gymnospermous trees or climbing plants from the Devonian: seed ferns
+4487,Cycadopsida class_Cycadopsida Cycadophytina subdivision_Cycadophytina Cycadophyta subdivision_Cycadophyta,palmlike gymnosperms: includes the surviving order Cycadales and several extinct orders; possibly not a natural group; in some systems considered a class (Cycadopsida) and in others a subdivision (Cycadophytina or Cycadophyta)
+4488,Cycas genus_Cycas,type genus of Cycadaceae: genus of widely distributed Old World evergreen tropical trees having pinnate leaves and columnar stems covered with persistent bases of old leaves
+4489,Cyclades Kikladhes,a group of over 200 islands in the southern Aegean
+4490,Cycladic_civilization Cycladic_civilisation Cycladic_culture Cyclades,the Bronze Age civilization on the Cyclades islands in the southern Aegean Sea that flourished 3000-1100 BC
+4491,Cycliophora phylum_Cycliophora,tiny marine organisms each the size of a period found in great numbers on lobsters' lips; identified tentatively in 1995 as a new phylum or as possible link between Entoprocta and Ectoprocta
+4492,Cycloloma genus_Cycloloma,a caryophyllaceous genus of the family Chenopodiaceae
+4493,Cyclopes genus_Cyclopes,only the silky anteater
+4494,Cyclophorus genus_Cyclophorus,tropical Old World ferns having closely crowded circular sori and no indusia
+4495,Cyclops,(Greek mythology) one of a group of giants having a single eye in the middle of their forehead
+4496,Cyclopteridae family_Cyclopteridae,lumpfishes
+4497,Cyclopterus genus_Cyclopterus,type genus of the Cyclopteridae: lumpfishes
+4498,Cyclosorus genus_Cyclosorus,small genus of terrestrial ferns of tropical and subtropical southern hemisphere
+4499,Cyclosporeae class_Cyclosporeae,in more recent classifications superseded by the order Fucales
+4500,Cyclostomata order_Cyclostomata,primitive jawless aquatic vertebrate: lampreys; hagfishes
+4501,Cycnoches genus_Cycnoches,genus of epiphytic or terrestrial tropical American orchids
+4502,Cydippida order_Cydippida Cydippidea order_Cydippidea Cydippea order_Cydippea,ctenophores having two long pinnate tentacles
+4503,Cydonia genus_Cydonia,quince
+4504,Cygnus,a constellation in the northern hemisphere between Pegasus and Draco in the Milky Way; contains a black hole
+4505,Cygnus genus_Cygnus,a genus of Anatidae
+4506,Cymatiidae family_Cymatiidae,tritons
+4507,Cynara genus_Cynara,artichoke; cardoon
+4508,Cynewulf Cynwulf,Anglo-Saxon poet (circa 9th century)
+4509,Cynic,a member of a group of ancient Greek philosophers who advocated the doctrine that virtue is the only good and that the essence of virtue is self-control
+4510,Cynipidae family_Cynipidae,a family of Hymenoptera
+4511,Cynips genus_Cynips,type genus of the Cynipidae: gall wasps
+4512,Cynocephalidae family_Cynocephalidae,a family of Dermoptera
+4513,Cynocephalus genus_Cynocephalus,type genus of the family Cynocephalidae
+4514,Cynocephalus_variegatus,a variety of flying lemur
+4515,Cynodon genus_Cynodon,creeping perennial grasses of tropical and southern Africa
+4516,Cynodontia division_Cynodontia,a division of the order Therapsida from the Triassic period comprising small carnivorous tetrapod reptiles often with mammal-like teeth
+4517,Cynoglossidae family_Cynoglossidae,tonguefishes
+4518,Cynoglossum genus_Cynoglossum,a large genus of tall rough herbs belonging to the family Boraginaceae
+4519,Cynomys genus_Cynomys,prairie dogs
+4520,Cynopterus genus_Cynopterus,a genus of Megachiroptera
+4521,Cynopterus_sphinx,a variety of fruit eating bat
+4522,Cynoscephalae,the fields in Thessaly where in 197 BC the Romans defeated the Macedonians
+4523,Cynoscephalae battle_of_Cynoscephalae,the battle that ended the second Macedonian War (197 BC); the Romans defeated Philip V who lost his control of Greece
+4524,Cynoscion genus_Cynoscion,sea trout
+4525,Cyperaceae family_Cyperaceae sedge_family,bulrush; chufa; cotton grass; papyrus; umbrella plant
+4526,Cyperus genus_Cyperus,type genus of Cyperaceae; grasslike rhizomatous herbs; cosmopolitan except very cold regions
+4527,Cyphomandra genus_Cyphomandra,tree tomato
+4528,Cypraea genus_Cypraea,type genus of the family Cypraeidae: the typical cowries
+4529,Cypraeidae family_Cypraeidae,family of marine gastropods comprising the cowries
+4530,Cyprinidae family_Cyprinidae,a family of fish including: carp; tench; roach; rudd; dace
+4531,Cypriniformes order_Cypriniformes,an order of animals including almost entirely freshwater fishes: characins; loaches; carp; suckers; sometimes classified as a suborder of Ostariophysi
+4532,Cyprinodontidae family_Cyprinodontidae,large family of small soft-finned fishes; killifishes; flagfishes; swordtails; guppies
+4533,Cyprinus genus_Cyprinus,type genus of the family Cyprinidae: carp
+4534,Cypriot Cypriote Cyprian,a native or inhabitant of Cyprus
+4535,Cypriot_monetary_unit,monetary unit in Cyprus
+4536,Cypriot_pound pound,the basic unit of money in Cyprus; equal to 100 cents
+4537,Cypripedium genus_Cypripedium,genus of chiefly American perennial leafy-stemmed orchids: lady's slippers; sometimes includes species of genus Paphiopedilum
+4538,Cyprus,an island in the eastern Mediterranean
+4539,Cyprus Republic_of_Cyprus,a country on the island of Cyprus; 80% of the people are of Greek origin and 20% or Turkish origin
+4540,Cyrano_de_Bergerac Savinien_Cyrano_de_Bergerac,a French soldier and dramatist remembered chiefly for fighting many duels (often over the size of his nose); was immortalized in 1897 in a play by Edmond Rostand (1619-1655)
+4541,Cyril Saint_Cyril St._Cyril,Greek missionary; the invention of the Cyrillic alphabet is attributed to him (826-869)
+4542,Cyrilliaceae family_Cyrilliaceae cyrilla_family titi_family,shrubs and trees with leathery leaves and small white flowers in racemes: genera Cyrilla and Cliftonia
+4543,Cyrillic_alphabet Cyrillic,an alphabet derived from the Greek alphabet and used for writing Slavic languages (Russian, Bulgarian, Serbian, Ukrainian, and some other Slavic languages)
+4544,Cyrtomium genus_Cyrtomium,small genus of tropical Asiatic greenhouse ferns; in some classifications placed in Polypodiaceae
+4545,Cyrus Cyrus_the_Younger,Persian prince who was defeated in battle by his brother Artaxerxes II (424-401 BC)
+4546,Cyrus_II Cyrus_the_Elder Cyrus_the_Great,king of Persia and founder of the Persian Empire (circa 600-529 BC)
+4547,Cystophora genus_Cystophora,hooded seals
+4548,Cystopteris genus_Cystopteris,chiefly small perennial rock ferns: bladder ferns; in some classifications placed in Polypodiaceae
+4549,Cytisus genus_Cytisus,large genus of stiff or spiny evergreen or deciduous Old World shrubs: broom
+4550,Czech,a native of inhabitant of the Czech Republic
+4551,Czech,the Slavic language of Czechs
+4552,Czech_Republic,a landlocked republic in central Europe; separated from Slovakia in 1993
+4553,Czech_monetary_unit,monetary unit in Czech Republic
+4554,Czechoslovakia,a former republic in central Europe; divided into Czech Republic and Slovakia in 1993
+4555,Czechoslovakian Czechoslovak Czech,a native or inhabitant of the former republic of Czechoslovakia
+4556,Czerny Karl_Czerny,Austrian virtuoso pianist and composer of many works for the piano; studied with Beethoven and was a teacher of Liszt (1791-1857)
+4557,Czestochowa,a city of southern Poland whose church contains the statue of the black Madonna which attracts many pilgrims
+4558,D d,the 4th letter of the Roman alphabet
+4559,D'Oyly_Carte Richard_D'Oyly_Carte,English impresario who brought Gilbert and Sullivan together and produced many of their operettas in London (1844-1901)
+4560,D-day 6_June_1944,date of the Allied landing in France, World War II
+4561,D-layer D_region,the lowest region of the ionosphere (35 to 50 miles up) that reflects low-frequency radio waves
+4562,DINK,a couple who both have careers and no children (an acronym for dual income no kids)
+4563,DIP_switch dual_inline_package_switch,(computer science) one of a set of small on-off switches mounted in computer hardware; used in place of jumpers to configure the machine for a user
+4564,DNA_fingerprint genetic_fingerprint,biometric identification obtained by examining a person's unique sequence of DNA base pairs; often used for evidence in criminal law cases
+4565,DNA_polymerase,the enzyme responsible for DNA replication
+4566,DOS disk_operating_system,an operating system that is on a disk
+4567,DPT_vaccine,abbreviation for combination vaccine against diphtheria and pertussis (whooping cough) and tetanus toxoids; usually given in a series of injections in early childhood
+4568,DPhil,a British doctorate
+4569,Daba Kola Musgoi,a Chadic language spoken south of Lake Chad
+4570,Daboecia genus_Daboecia,a dicotyledonous genus of the family Ericaceae
+4571,Dacelo genus_Dacelo,Australasian kingfishers
+4572,Dachau,a concentration camp for Jews created by the Nazis near Munich in southern Germany
+4573,Dacron Terylene,a kind of polyester fabric
+4574,Dacrycarpus genus_Dacrycarpus,evergreen coniferous shrubs or trees of New Zealand to Malaysia and Philippines
+4575,Dacrydium genus_Dacrydium,Australasian evergreen trees or shrubs
+4576,Dacrymyces genus_Dacrymyces,type genus of the Dacrymycetaceae: fungi with a bifurcate basidium that lacks septa
+4577,Dacrymycetaceae family_Dacrymycetaceae,a family of basidiomycetous fungi belonging to the order Tremellales having a bifurcate basidium that lacks septa
+4578,Dactylis genus_Dactylis,a monocotyledonous grass of the family Gramineae (has only one species)
+4579,Dactyloctenium genus_Dactyloctenium,a monocotyledonous genus of the family Gramineae
+4580,Dactylopiidae family_Dactylopiidae,cochineal insects
+4581,Dactylopius genus_Dactylopius,type genus of the Dactylopiidae
+4582,Dactylopteridae family_Dactylopteridae,flying gurnards
+4583,Dactylopterus genus_Dactylopterus,a genus of Dactylopteridae
+4584,Dactylorhiza genus_Dactylorhiza,genus of terrestrial orchids of Europe and Asia and North Africa
+4585,Dactyloscopidae family_Dactyloscopidae,sand stargazers
+4586,Daedalus Daedal,(Greek mythology) an Athenian inventor who built the labyrinth of Minos; to escape the labyrinth he fashioned wings for himself and his son Icarus
+4587,Dagan,god of agriculture and earth; counterpart of Phoenician Dagon
+4588,Dagda,chief Celtic god of the Tuatha De Danann; father of Angus Og and Brigit
+4589,Dagestani,an ethnic minority living on the Caspian Sea in southwestern Russia and Azerbaijan
+4590,Dagon,god of agriculture and the earth; national god of Philistines
+4591,Daguerre Louis_Jacques_Mande_Daguerre,French inventor of the first practical photographic process, the daguerreotype (1789-1851)
+4592,Dail_Eireann Dail,the lower house of the parliament of the Irish Republic
+4593,Daimler Gottlieb_Daimler,German engineer and automobile manufacturer who produced the first high-speed internal combustion engine (1834-1900)
+4594,Dakar capital_of_Senegal,the capital and chief port and largest city of Senegal
+4595,Dakota,a member of the Siouan people of the northern Mississippi valley; commonly called the Sioux
+4596,Dakota,the area of the states of North Dakota and South Dakota
+4597,Dakota,the Siouan language spoken by the Dakota
+4598,Dalai_Lama Grand_Lama,chief lama and once ruler of Tibet
+4599,Dalbergia genus_Dalbergia,large genus of tropical trees having pinnate leaves and paniculate flowers and cultivated commercially for their dramatically grained and colored timbers
+4600,Dalea genus_Dalea,indigo bush
+4601,Dali Salvador_Dali,surrealist Spanish painter (1904-1989)
+4602,Dalian Talien Dairen,a port and shipbuilding center in northeastern China on the Liaodong Peninsula; now a part of Luda
+4603,Dall_sheep Dall's_sheep white_sheep Ovis_montana_dalli,large white wild sheep of northwestern Canada and Alaska
+4604,Dallas,a large commercial and industrial city in northeastern Texas located in the heart of the northern Texas oil fields
+4605,Dalmatia,a historical region of Croatia on the Adriatic Sea; mountainous with many islands
+4606,Dalmatian,a native or inhabitant of Dalmatia
+4607,Dalmatian_iris Iris_pallida,European iris having soft lilac-blue flowers
+4608,Dalmatian_laburnum Petteria_ramentacea Cytisus_ramentaceus,erect shrub having large trifoliate leaves and dense clusters of yellow flowers followed by poisonous seeds; Yugoslavia; sometimes placed in genus Cytisus
+4609,Dalton John_Dalton,English chemist and physicist who formulated atomic theory and the law of partial pressures; gave the first description of red-green color blindness (1766-1844)
+4610,Dalton's_law Dalton's_law_of_partial_pressures law_of_partial_pressures,(chemistry and physics) law stating that the pressure exerted by a mixture of gases equals the sum of the partial pressures of the gases in the mixture; the pressure of a gas in a mixture equals the pressure it would exert if it occupied the same volume alone at the same temperature
+4611,Dama genus_Dama,fallow deer
+4612,Damaliscus genus_Damaliscus,African antelopes: sassabies
+4613,Damaraland_mole_rat,colonial mole rat of western Africa; similar to naked mole rat
+4614,Damascene,a native or inhabitant of Damascus
+4615,Damascus_steel Damask_steel,a hard resilient steel often decorated and used for sword blades
+4616,Damkina Damgalnunna,(Babylonian) earth goddess; consort of Ea and mother of Marduk
+4617,Damocles,the Greek courtier to Dionysius the Elder who (according to legend) was condemned to sit under a naked sword that was suspended by a hair in order to demonstrate to him that being a king was not the happy state Damocles had said it was (4th century BC)
+4618,Damon,the friend of Phintias who pledged his life that Phintias would return (4th century BC)
+4619,Damon_and_Pythias,(Greek mythology) according to a Greek legend: when Pythias was sentenced to be executed Damon took his place to allow Pythias to get his affairs in order; when Pythias returned in time to save Damon the king was so impressed that he let them both live
+4620,Danaea genus_Danaea,fairly small terrestrial ferns of tropical America
+4621,Danaidae family_Danaidae,small family of usually tropical butterflies: monarch butterflies
+4622,Danaus genus_Danaus,type genus of the Danaidae: monarch butterflies
+4623,Dandie_Dinmont Dandie_Dinmont_terrier,a breed of small terrier with long wiry coat and drooping ears
+4624,Dane,a native or inhabitant of Denmark
+4625,Dangla Dangaleat,a Chadic language spoken in Chad; uses seven vowels plus differences in vowel length
+4626,Daniel,(Old Testament) a youth who was taken into the court of Nebuchadnezzar and given divine protection when thrown into a den of lions (6th century BC)
+4627,Daniel,a wise and upright judge; "a Daniel come to judgment" -- Shakespeare
+4628,Daniel Book_of_Daniel Book_of_the_Prophet_Daniel,an Old Testament book that tells of the apocalyptic visions and the experiences of Daniel in the court of Nebuchadnezzar
+4629,Danish,a Scandinavian language that is the official language of Denmark
+4630,Danish_blue,blue cheese of Denmark
+4631,Danish_krone krone,the basic unit of money in Denmark
+4632,Danish_monetary_unit,monetary unit in Denmark
+4633,Dante Dante_Alighieri,an Italian poet famous for writing the Divine Comedy that describes a journey through Hell and purgatory and paradise guided by Virgil and his idealized Beatrice (1265-1321)
+4634,Danton Georges_Jacques_Danton,French revolutionary leader who stormed the Paris bastille and who supported the execution of Louis XVI but was guillotined by Robespierre for his opposition to the Reign of Terror (1759-1794)
+4635,Danu Dana,Celtic goddess who was the mother of the Tuatha De Danann; identified with the Welsh Don
+4636,Danube Danube_River Danau,the 2nd longest European river (after the Volga); flows from southwestern Germany to the Black Sea; "Vienna, Budapest, and Belgrade are on the banks of the Danube"
+4637,Daphne,(Greek mythology) a nymph who was transformed into a laurel tree to escape the amorous Apollo
+4638,Dar_al-Islam House_of_Islam,areas where Muslims are in the majority
+4639,Dar_al-harb House_of_War,areas where Muslims are in the minority and are persecuted
+4640,Dar_es_Salaam capital_of_Tanzania,the capital and largest port city of Tanzania on the Indian Ocean
+4641,Dard Dardic Dardic_language,any of a group of Indic languages spoken in Kashmir and eastern Afghanistan and northern Pakistan
+4642,Dardanelles Canakkale_Bogazi Hellespont,the strait between the Aegean and the Sea of Marmara that separates European Turkey from Asian Turkey
+4643,Dardanelles Dardanelles_campaign,the unsuccessful campaign in World War I (1915) by the English and French to open a passage for aid to Russia; defeated by the Turks
+4644,Dardanus,(Greek mythology) founder of Troy
+4645,Darfur,an impoverished region of western Sudan; "Darfur was a semi-independent sultanate until 1917 and is ethnically distinct from central Sudan"
+4646,Dari Dari_Persian,an Iranian language spoken in Afghanistan
+4647,Darius_I Darius_the_Great,king of Persia who expanded the Persian Empire and invaded Greece but was defeated at the battle of Marathon (550-486 BC)
+4648,Darius_III,king of Persia who was defeated by Alexander the Great; his murder effectively ended the Persian Empire (died in 330 BC)
+4649,Darjeeling,a fine variety of black tea grown in northern India
+4650,Darling Darling_River,an Australian river; tributary of the Murray River
+4651,Darlingtonia genus_Darlingtonia,one species: California pitcher plant
+4652,Darmera genus_Darmera Peltiphyllum genus_Peltiphyllum,one species
+4653,Darrow Clarence_Darrow Clarence_Seward_Darrow,United States lawyer famous for his defense of lost causes (1857-1938)
+4654,Darsana,(from the Sanskrit word for `to see') one of six orthodox philosophical systems or viewpoints on the nature of reality and the release from bondage to karma
+4655,Dartmouth_College Dartmouth,a college in New Hampshire
+4656,Darwin,provincial capital of the Northern Territory of Australia
+4657,Darwin Charles_Darwin Charles_Robert_Darwin,English natural scientist who formulated a theory of evolution by natural selection (1809-1882)
+4658,Darwin_tulip,any of several very tall, late blooming tulips bearing large squarish flowers on sturdy stems
+4659,Darwinian,an advocate of Darwinism
+4660,Darwinism,a theory of organic evolution claiming that new species arise and are perpetuated by natural selection
+4661,Das_Kapital Capital,a book written by Karl Marx (1867) describing his economic theories
+4662,Dasht-e-Kavir Kavir_Desert Great_Salt_Desert,a salt desert in north central Iran
+4663,Dasht-e-Lut Lut_Desert,a desert in eastern Iran
+4664,Dasyatidae family_Dasyatidae,sting rays
+4665,Dasyatis genus_Dasyatis,type genus of the Dasyatidae
+4666,Dasypodidae family_Dasypodidae,armadillos
+4667,Dasyprocta genus_Dasyprocta,type genus of the Dasyproctidae: agoutis
+4668,Dasyproctidae family_Dasyproctidae,agoutis and pacas
+4669,Dasypus genus_Dasypus,type genus of the Dasypodidae
+4670,Dasyuridae family_Dasyuridae family_Dasyurinae,dasyures; native cats; pouched mice; banded anteaters; Tasmanian devils
+4671,Dasyurus genus_Dasyurus,type genus of the family Dasyuridae: native cats
+4672,Datura genus_Datura,thorn apple
+4673,Daubentonia genus_Daubentonia,type genus; coextensive with the family Daubentoniidae
+4674,Daubentoniidae family_Daubentoniidae,comprising solely the aye-aye
+4675,Daucus genus_Daucus,carrot
+4676,Daugavpils,a city of southeastern Latvia
+4677,Daumier Honore_Daumier,French painter best known for his satirical lithographs of bourgeois society (1808-1879)
+4678,Davalliaceae family_Davalliaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems
+4679,Davenport,a city in eastern Iowa on the Mississippi River across from Moline and Rock Island
+4680,David,(Old Testament) the 2nd king of the Israelites; as a young shepherd he fought Goliath (a giant Philistine warrior) and killed him by hitting him in the head with a stone flung from a sling; he united Israel with Jerusalem as its capital; many of the Psalms are attributed to David (circa 1000-962 BC)
+4681,David Jacques_Louis_David,French neoclassical painter who actively supported the French Revolution (1748-1825)
+4682,David Saint_David St._David,patron saint of Wales (circa 520-600)
+4683,Davidson's_penstemon Penstemon_davidsonii,mat-forming plant with blue and lavender flowers clustered on short erect stems; British Columbia to northern California
+4684,Daviesia genus_Daviesia,genus of Australasian shrubs and subshrubs having small yellow or purple flowers followed by short triangular pods
+4685,Davis Bette_Davis,United States film actress (1908-1989)
+4686,Davis Dwight_Davis Dwight_Filley_Davis,United States tennis player who donated the Davis Cup for international team tennis competition (1879-1945)
+4687,Davis Jefferson_Davis,American statesman; president of the Confederate States of America during the American Civil War (1808-1889)
+4688,Davis Miles_Davis Miles_Dewey_Davis_Jr.,United States jazz musician; noted for his trumpet style (1926-1991)
+4689,Davis Stuart_Davis,United States painter who developed an American version of cubism (1894-1964)
+4690,Davis_Cup,cup awarded for the annual international team tennis competition
+4691,Davy Humphrey_Davy Sir_Humphrey_Davy,English chemist who was a pioneer in electrochemistry and who used it to isolate elements sodium and potassium and barium and boron and calcium and magnesium and chlorine (1778-1829)
+4692,Davys John_Davys Davis John_Davis,English navigator who explored the Arctic while searching for the Northwest Passage (1550-1605)
+4693,Dawes William_Dawes,American patriot who rode with Paul Revere to warn that the British were advancing on Lexington and Concord (1745-1799)
+4694,Dawson,a town in northwestern Canada in the Yukon on the Yukon River; a boom town around 1900 when gold was discovered in the Klondike
+4695,Day Clarence_Day Clarence_Shepard_Day_Jr.,United States writer best known for his autobiographical works (1874-1935)
+4696,Dayan Moshe_Dayan,Israeli general and statesman (1915-1981)
+4697,Dayton,a city in southwest Ohio; manufacturing center
+4698,Daytona_Beach,a resort town in northeast Florida on the Atlantic coast; hard white beaches have been used for automobile speed trials
+4699,DeMille Cecil_B._DeMille Cecil_Blount_DeMille,United States film maker remembered for his extravagant and spectacular epic productions (1881-1959)
+4700,De_Bakey Michael_Ellis_De_Bakey,United States heart surgeon who in 1966 implanted the first artificial heart in a human patient (born in 1908)
+4701,De_Forest Lee_De_Forest Father_of_Radio,United States electrical engineer who in 1907 patented the first triode vacuum tube, which made it possible to detect and amplify radio waves (1873-1961)
+4702,De_Niro Robert_De_Niro,United States film actor who frequently plays tough characters (born 1943)
+4703,De_Quincey Thomas_De_Quincey,English writer who described the psychological effects of addiction to opium (1785-1859)
+4704,De_Sica Vittorio_De_Sica,Italian film maker (1901-1974)
+4705,Dead_Sea,a saltwater lake on the border between Israel and Jordan; its surface in 1292 feet below sea level
+4706,Dead_Sea_scrolls,(Old Testament) a collection of written scrolls (containing nearly all of the Old Testament) found in a cave near the Dead Sea in the late 1940s; "the Dead Sea Scrolls provide information about Judaism and the Bible around the time of Jesus"
+4707,Dean James_Dean James_Byron_Dean,United States film actor whose moody rebellious roles made him a cult figure (1931-1955)
+4708,Death,the personification of death; "Death walked the streets of the plague-bound city"
+4709,Death_Valley,a desert area that is part of the Mojave Desert in eastern California and southwestern Nevada; contains the lowest point in North America
+4710,Debs Eugene_V._Debs Eugene_Victor_Debs,United States labor organizer who ran for President as a socialist (1855-1926)
+4711,Debussy Claude_Debussy Claude_Achille_Debussy,French composer who is said to have created Impressionism in music (1862-1918)
+4712,Decalogue Ten_Commandments,the biblical commandments of Moses
+4713,Decapoda order_Decapoda,lobsters; crayfish; crabs; shrimps; prawns
+4714,Decapoda order_Decapoda,squids and cuttlefishes
+4715,Decapterus genus_Decapterus,scads especially mackerel scad; cosmopolitan in distribution
+4716,Decatur,a city in central Illinois; Abraham Lincoln practiced law here
+4717,Decatur,a town in northern Alabama on the Tennessee River
+4718,Decatur Stephen_Decatur,United States naval officer remembered for his heroic deeds (1779-1820)
+4719,December Dec,the last (12th) month of the year
+4720,Decius,Emperor of Rome who was proclaimed emperor against his will; his reign was notable for his severe persecution of Christians (201-251)
+4721,Declaration_of_Independence,the document recording the proclamation of the second Continental Congress (4 July 1776) asserting the independence of the Colonies from Great Britain
+4722,Decumaria genus_Decumaria,small genus of woody climbers with adhesive aerial roots; sometimes placed in family Saxifragaceae
+4723,Deep_South,the southeastern region of the United States: South Carolina and Georgia and Alabama and Mississippi and Louisiana; prior to the American Civil War all these states produced cotton and permitted slavery
+4724,Deere John_Deere,United States industrialist who manufactured plows suitable for working the prairie soil (1804-1886)
+4725,Defender_of_the_Faith,a title that Leo X bestowed on Henry VIII and later withdrew; parliament restored the title and it has been used by English sovereigns ever since
+4726,Defense_Advanced_Research_Projects_Agency DARPA,the central research and development organization for the United States Department of Defense; responsible for developing new surveillance technologies since 9/11
+4727,Defense_Information_Systems_Agency DISA,a combat support agency in the Department of Defense responsible for developing and operating and supporting information systems to serve the needs of the President and the Secretary of Defense and the Joint Chiefs of Staff
+4728,Defense_Intelligence_Agency DIA,an intelligence agency of the United States in the Department of Defense; is responsible for providing intelligence in support of military planning and operations and weapons acquisition
+4729,Defense_Logistics_Agency,a logistics combat support agency in the Department of Defense; provides worldwide support for military missions
+4730,Defense_Reutilization_and_Marketing_Service DRMS,the organization in the Defense Logistics Agency that inventories and evaluates and sells reusable United States government surplus
+4731,Defense_Technical_Information_Center DTIC,the agency in the Department of Defense that provides scientific and technical information to federal agencies and their contractors
+4732,Defoe Daniel_Defoe,English writer remembered particularly for his novel about Robinson Crusoe (1660-1731)
+4733,Degas Edgar_Degas Hilaire_Germain_Edgar_Degas,French impressionist painter (1834-1917)
+4734,Deimos,the outer of two small satellites of Mars
+4735,Dekker Decker Thomas_Dekker Thomas_Decker,English dramatist and pamphleteer (1572-1632)
+4736,Del_Rio,a town in southwest Texas on the Rio Grande to the west of San Antonio
+4737,Delacroix Eugene_Delacroix Ferdinand_Victor_Eugene_Delacroix,French romantic painter (1798-1863)
+4738,Delairea genus_Delairea,one species: German ivy
+4739,Delaware,a member of an Algonquian people formerly living in New Jersey and New York and parts of Delaware and Pennsylvania
+4740,Delaware,one of the British colonies that formed the United States
+4741,Delaware,the Algonquian language spoken by the Delaware
+4742,Delaware Delaware_River,a river that rises in the Catskills in southeastern New York and flows southward along the border of Pennsylvania with New York and New Jersey to northern Delaware where it empties into Delaware Bay
+4743,Delaware Diamond_State First_State DE Del.,a Mid-Atlantic state; one of the original 13 colonies
+4744,Delaware_Bay,an inlet of the North Atlantic; fed by the Delaware River
+4745,Delaware_Memorial_Bridge,a suspension bridge across the Delaware River
+4746,Delawarean Delawarian,a native or resident of Delaware
+4747,Delbruck Max_Delbruck,United States biologist (born in Germany) who studied how viruses infect living cells (1906-1981)
+4748,Delhi New_Delhi,a city in north central India
+4749,Delibes Leo_Delibes Clement_Philibert_Leo_Delibes,French composer of operas (1836-1891)
+4750,Delichon genus_Delichon,a genus of Hirundinidae
+4751,Delicious,variety of sweet eating apples
+4752,Delilah,(Old Testament) the Philistine mistress of Samson who betrayed him by cutting off his hair and so deprived him of his strength
+4753,Delius Frederick_Delius,English composer of orchestral works (1862-1934)
+4754,Delmonico_steak club_steak,small steak from the front of the short loin of beef
+4755,Delonix genus_Delonix,evergreen or deciduous trees of tropical Africa and India
+4756,Delorme Philibert_Delorme de_l'Orme Philibert_de_l'Orme,French royal architect who built the Tuileries Palace and Gardens in Paris for Catherine de Medicis (1515-1570)
+4757,Delphi,an ancient Greek city on the slopes of Mount Parnassus; site of the oracle of Delphi
+4758,Delphinapterus genus_Delphinapterus,white whale
+4759,Delphinidae family_Delphinidae,dolphins
+4760,Delphinus,a constellation in the northern hemisphere near Pegasus and Aquila
+4761,Delphinus genus_Delphinus,type genus of the Delphinidae
+4762,Dematiaceae family_Dematiaceae,family of imperfect mushrooms having dark-colored hyphae or conidia
+4763,Demavend,an active volcano in northern Iran
+4764,Demerara,a river in northern Guyana that flows northward into the Atlantic
+4765,Demerara,a former Dutch colony in South America; now a part of Guyana
+4766,Demeter,(Greek mythology) goddess of fertility and protector of marriage in ancient mythology; counterpart of Roman Ceres
+4767,Demetrius Demetrius_I Demetrius_Poliorcetes,son of Antigonus Cyclops and king of Macedonia; he and his father were defeated at the battle of Ipsus (337-283 BC)
+4768,Democrat,a member of the Democratic Party
+4769,Democratic-Republican_Party,a former major political party in the United States in the early 19th century; opposed the old Federalist party; favored a strict interpretation of the constitution in order to limit the powers of the federal government
+4770,Democratic_Front_for_the_Liberation_of_Palestine DFLP Popular_Democratic_Front_for_the_Liberation_of_Palestine PDFLP,a Marxist-Leninist group that believes Palestinian goals can only be achieved by revolutionary change; "in 1974 the DFLP took over a schoolhouse and massacred Israeli schoolchildren"
+4771,Democratic_Party,the older of two major political parties in the United States
+4772,Democritus,Greek philosopher who developed an atomistic theory of matter (460-370 BC)
+4773,Demogorgon,(Greek mythology) a mysterious and terrifying deity of the underworld
+4774,Demosthenes,Athenian statesman and orator (circa 385-322 BC)
+4775,Demotic Demotic_script,a simplified cursive form of the ancient hieratic script; "Demotic script was eventually replaced by Greek"
+4776,Dempsey Jack_Dempsey William_Harrison_Dempsey Manassa_Mauler,United States prizefighter who was world heavyweight champion (1895-1983)
+4777,Demulen,trade name for an oral contraceptive
+4778,Denali_Fault,a major open geological fault in Alaska
+4779,Denali_National_Park,a large national park in Alaska having peaks of the Alaska Range (including Mount McKinley) and the huge Denali fault
+4780,Dendranthema genus_Dendranthema,comprises plants often included in the genus Chrysanthemum
+4781,Dendroaspis genus_Dendroaspis Dendraspis genus_Dendraspis,mambas
+4782,Dendrocalamus genus_Dendrocalamus,giant clump-forming bamboos
+4783,Dendrocolaptes genus_Dendrocolaptes,type genus of the Dendrocolaptidae
+4784,Dendrocolaptidae family_Dendrocolaptidae,woodhewers or woodcreepers
+4785,Dendroctonus genus_Dendroctonus,genus of small bark beetles destructive especially to mature conifers
+4786,Dendroica genus_Dendroica,a genus of Parulidae
+4787,Dendrolagus genus_Dendrolagus,tree wallabies
+4788,Dendromecon genus_Dendromecon,one species: bush poppy
+4789,Deneb,the brightest star in Cygnus
+4790,Denebola,a star in Leo approximately 43 light years from Earth
+4791,Deng_Xiaoping Teng_Hsiao-ping Teng_Hsiaoping,Chinese communist statesman (1904-1997)
+4792,Denisonia genus_Denisonia,copperheads
+4793,Denmark Kingdom_of_Denmark Danmark,a constitutional monarchy in northern Europe; consists of the mainland of Jutland and many islands between the North Sea and the Baltic Sea
+4794,Dennstaedtia genus_Dennstaedtia,chiefly terrestrial ferns; in some classification systems placed in family Polypodiaceae
+4795,Dennstaedtiaceae family_Dennstaedtiaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems
+4796,Dentaria genus_Dentaria,usually included in genus Cardamine; in some classifications considered a separate genus
+4797,Denver Mile-High_City capital_of_Colorado,the state capital and largest city of Colorado; located in central Colorado on the South Platte river
+4798,Depardieu Gerard_Depardieu,French film actor (born in 1948)
+4799,Deparia genus_Deparia,classification used for 5 species of terrestrial ferns usually placed in other genera
+4800,Department_of_Agriculture Agriculture_Department Agriculture USDA,the federal department that administers programs that provide services to farmers (including research and soil conservation and efforts to stabilize the farming economy); created in 1862
+4801,Department_of_Commerce Commerce_Department Commerce DoC,the United States federal department that promotes and administers domestic and foreign trade (including management of the census and the patent office); created in 1913
+4802,Department_of_Commerce_and_Labor,a former executive department of the United States government; created in 1903 and split into two departments in 1913
+4803,Department_of_Defense Defense_Department United_States_Department_of_Defense Defense DoD,the federal department responsible for safeguarding national security of the United States; created in 1947
+4804,Department_of_Defense_Laboratory_System LABLINK,a defense laboratory that provides essential services in fundamental science for national security and environmental protection and provides technologies that contribute to industrial competitiveness
+4805,Department_of_Education Education_Department Education,the United States federal department that administers all federal programs dealing with education (including federal aid to educational institutions and students); created 1979
+4806,Department_of_Energy Energy_Department Energy DOE,the federal department responsible for maintaining a national energy policy of the United States; created in 1977
+4807,Department_of_Energy_Intelligence DOEI,an agency that collects political and economic and technical information about energy matters and makes the Department of Energy's technical and analytical expertise available to other members of the Intelligence Community
+4808,Department_of_Health_Education_and_Welfare,a former executive department of the United States government; created in 1953 and divided in 1979
+4809,Department_of_Health_and_Human_Services Health_and_Human_Services HHS,the United States federal department that administers all federal programs dealing with health and welfare; created in 1979
+4810,Department_of_Homeland_Security Homeland_Security,the federal department that administers all matters relating to homeland security
+4811,Department_of_Housing_and_Urban_Development Housing_and_Urban_Development HUD,the United States federal department that administers federal programs dealing with better housing and urban renewal; created in 1965
+4812,Department_of_Justice Justice_Department Justice DoJ,the United States federal department responsible for enforcing federal laws (including the enforcement of all civil rights legislation); created in 1870
+4813,Department_of_Justice_Canada DoJC,an agency of the Canadian government that provides litigation and legal advice and opinions to the government
+4814,Department_of_Labor Labor_Department Labor DoL,the federal department responsible for promoting the working conditions of wage earners in the United States; created in 1913
+4815,Department_of_State United_States_Department_of_State State_Department State DoS,the federal department in the United States that sets and maintains foreign policies; "the Department of State was created in 1789"
+4816,Department_of_Transportation Transportation DoT,the United States federal department that institutes and coordinates national transportation programs; created in 1966
+4817,Department_of_Veterans_Affairs VA,the United States federal department responsible for the interests of military veterans; created in 1989
+4818,Department_of_the_Interior Interior_Department Interior DoI,the United States federal department charged with conservation and the development of natural resources; created in 1849
+4819,Department_of_the_Treasury Treasury_Department Treasury United_States_Treasury,the federal department that collects revenue and administers federal finances; the Treasury Department was created in 1789
+4820,Depression Great_Depression,a period during the 1930s when there was a worldwide economic depression and mass unemployment
+4821,Derain Andre_Derain,French painter and exponent of fauvism (1880-1954)
+4822,Dermacentor genus_Dermacentor,vectors of important diseases of man and animals
+4823,Dermaptera order_Dermaptera,earwigs and a few related forms
+4824,Dermatobia genus_Dermatobia,larvae live under the skin of domestic mammals and humans
+4825,Dermestidae family_Dermestidae,carpet beetles
+4826,Dermochelyidae family_Dermochelyidae,sea turtles
+4827,Dermochelys genus_Dermochelys,type genus of the Dermochelyidae: leatherback turtles
+4828,Dermoptera order_Dermoptera,flying lemurs
+4829,Derrida Jacques_Derrida,French philosopher and critic (born in Algeria); exponent of deconstructionism (1930-2004)
+4830,Des_Moines capital_of_Iowa,the capital and largest city in Iowa
+4831,Descartes Rene_Descartes,French philosopher and mathematician; developed dualistic theory of mind and matter; introduced the use of coordinates to locate a point in two or three dimensions (1596-1650)
+4832,Descurainia genus_Descurainia,includes annual or biennial herbs of America and Europe very similar to and often included among those of genera Sisymbrium or Hugueninia; not recognized in some classification systems
+4833,Desmanthus genus_Desmanthus,genus of American herbs or shrubs with sensitive pinnate leaves and small whitish flowers
+4834,Desmidiaceae family_Desmidiaceae,unicellular algae
+4835,Desmidium genus_Desmidium,a genus of protoctist
+4836,Desmodium genus_Desmodium,beggarweed; tick trefoil
+4837,Desmodontidae family_Desmodontidae,true vampire bats
+4838,Desmodus genus_Desmodus,type genus of the Desmodontidae: vampire bats
+4839,Desmodus_rotundus,mouse-sized bat of tropical Central America and South America having sharp incisor and canine teeth; feeds on the blood of birds and mammals
+4840,Desmograthus genus_Desmograthus,an amphibian genus of Plethodontidae
+4841,Detroit Motor_City Motown,the largest city in Michigan and a major Great Lakes port; center of the United States automobile industry; located in southeastern Michigan on the Detroit river across from Windsor
+4842,Detroit_River,a short river flowing from Lake St. Clair to Lake Erie along the border between the United States and Canada; one the busiest inland waterways in the world
+4843,Deuteromycetes class_Deuteromycetes,form class; coextensive with subdivision Deuteromycota
+4844,Deuteromycota subdivision_Deuteromycota Deuteromycotina Fungi_imperfecti subdivision_Deuteromycotina,large and heterogeneous form division of fungi comprising forms for which no sexually reproductive stage is known
+4845,Deuteronomy Book_of_Deuteronomy,the fifth book of the Old Testament; contains a second statement of Mosaic law
+4846,Devanagari Devanagari_script Nagari Nagari_script,a syllabic script used in writing Sanskrit and Hindi
+4847,Devi,Hindu mother goddess; supreme power in the universe; wife or embodiment of the female energy of Siva having both beneficent and malevolent forms or aspects
+4848,Devon,red dual-purpose cattle of English origin
+4849,Devon Devonshire,a county in southwestern England
+4850,Devonian Devonian_period Age_of_Fishes,from 405 million to 345 million years ago; preponderance of fishes and appearance of amphibians and ammonites
+4851,Dewar Sir_James_Dewar,Scottish chemist and physicist noted for his work in cryogenics and his invention of the Dewar flask (1842-1923)
+4852,Dewar_flask Dewar,vacuum flask that holds liquid air or helium for scientific experiments
+4853,Dewey George_Dewey Admiral_Dewey,a United States naval officer remembered for his victory at Manila Bay in the Spanish-American War
+4854,Dewey John_Dewey,United States pragmatic philosopher who advocated progressive education (1859-1952)
+4855,Dewey Melvil_Dewey Melville_Louis_Kossuth_Dewey,United States librarian who founded the decimal system of classification (1851-1931)
+4856,Dewey_decimal_classification Dewey_decimal_system decimal_system_of_classification,a system used by libraries to classify nonfictional publications into subject categories; the subject is indicated by a three-digit numeral and further specification is given by numerals following a decimal point; publications are shelved by number
+4857,Dhahran,an oil town in eastern Saudi Arabia on an inlet from the Persian Gulf; in June 1996 terrorists bombed an apartment complex in Dhahran killing 19 United States soldiers and wounding more than 300 people
+4858,Dhaka Dacca capital_of_Bangladesh,the capital and largest city of Bangladesh
+4859,Dharma,basic principles of the cosmos; also: an ancient sage in Hindu mythology worshipped as a god by some lower castes
+4860,Dhaulagiri,a mountain in the Himalayas in Nepal (26,820 feet high)
+4861,Dhegiha,any member of a Siouan people speaking one of the Dhegiha languages
+4862,Dhegiha,a branch of the Siouan languages
+4863,Dhu'l-Hijja Dhu'l-Hijjah Dhu_al-Hijja Dhu_al-Hijjah,the twelfth month of the Islamic calendar and the season of the hajj; has one extra day in leap years
+4864,Dhu'l-Qa'dah Dhu_al-Qadah,the eleventh month of the Islamic calendar
+4865,DiMaggio Joe_DiMaggio Joseph_Paul_DiMaggio,United States professional baseball player noted for his batting ability (1914-1999)
+4866,Diacalpa genus_Diacalpa,one species: delicate fern of foothills of Himalayas
+4867,Diadophis genus_Diadophis,a genus of reptiles of the family Colubridae including ringneck snakes
+4868,Diaghilev Sergei_Diaghilev Sergei_Pavlovich_Diaghilev,Russian ballet impresario who founded the Russian ballet and later introduced it to the West (1872-1929)
+4869,Dialeurodes genus_Dialeurodes,a genus of Aleyrodidae
+4870,Diana,(Roman mythology) virgin goddess of the hunt and the Moon; counterpart of Greek Artemis
+4871,Diana Princess_Diana Princess_of_Wales Lady_Diana_Frances_Spencer,English aristocrat who was the first wife of Prince Charles; her death in an automobile accident in Paris produced intense national mourning (1961-1997)
+4872,Diane_de_Poitiers Duchesse_de_Valentinois,French noblewoman who was the mistress of Henry II; she had more influence over him than did his wife Catherine de Medicis (1499-1566)
+4873,Dianthus genus_Dianthus,carnations and pinks
+4874,Diapensiaceae family_Diapensiaceae diapensia_family,north temperate low evergreen plants; in some classifications placed in its own order Diapensiales
+4875,Diapensiales order_Diapensiales,used in some classifications: coextensive with family Diapensiaceae
+4876,Diapsida subclass_Diapsida,used in former classifications to include all living reptiles except turtles; superseded by the two subclasses Lepidosauria and Archosauria
+4877,Dias Diaz Bartholomeu_Dias Bartholomeu_Diaz,Portuguese explorer who in 1488 was the first European to get round the Cape of Good Hope (thus establishing a sea route from the Atlantic to Asia) (1450-1500)
+4878,Diaspididae family_Diaspididae,armored scales
+4879,Diaspora,the dispersion of the Jews outside Israel; from the destruction of the temple in Jerusalem in 587-86 BC when they were exiled to Babylonia up to the present time
+4880,Dibranchiata subclass_Dibranchiata Dibranchia subclass_Dibranchia,comprising all living cephalopods except the family Nautilidae: the orders Octopoda (octopuses) and Decapoda (squids and cuttlefish)
+4881,Dicamptodontidae family_Dicamptodontidae,large and small highly aquatic salamanders
+4882,Dicentra genus_Dicentra,North American and Asian herbs with divided leaves and irregular flowers
+4883,Diceros genus_Diceros,most common species in Africa
+4884,Dick_test,a skin test to determine your susceptibility to scarlet fever
+4885,Dickens Charles_Dickens Charles_John_Huffam_Dickens,English writer whose novels depicted and criticized social injustice (1812-1870)
+4886,Dickinson Emily_Dickinson,United States poet noted for her mystical and unrhymed poems (1830-1886)
+4887,Dicksonia genus_Dicksonia,tree ferns of temperate Australasia having bipinnatifid or tripinnatifid fronds and usually marginal sori; in some classification systems placed in family Cyatheaceae
+4888,Dicksoniaceae family_Dicksoniaceae,tree ferns: genera Dicksonia, Cibotium, Culcita, and Thyrsopteris elegans
+4889,Dicotyledones class_Dicotyledones Dicotyledonae class_Dicotyledonae Magnoliopsida class_Magnoliopsida,comprising seed plants that produce an embryo with paired cotyledons and net-veined leaves; divided into six (not always well distinguished) subclasses (or superorders): Magnoliidae and Hamamelidae (considered primitive); Caryophyllidae (an early and distinctive offshoot); and three more or less advanced groups: Dilleniidae; Rosidae; Asteridae
+4890,Dicranaceae family_Dicranaceae,mosses having costate leaves and long-stalked capsules with cleft peristome
+4891,Dicranales order_Dicranales,widely distributed order of mosses with erect gametophores and sporophytes at the tips of stems
+4892,Dicranopteris genus_Dicranopteris,terrestrial ferns of forest margin or open ground; pantropical
+4893,Dicranum genus_Dicranum,type genus of Dicranaceae
+4894,Dicrostonyx genus_Dicrostonyx,pied lemmings
+4895,Dictamnus genus_Dictamnus,a dicotyledonous genus of the family Rutaceae
+4896,Dictaphone,a tape recorder that records and reproduces dictation
+4897,Dictyophera genus_Dictyophera,closely related to genus Phallus distinguished by an indusium hanging like a skirt from below the pileus
+4898,Dictyoptera order_Dictyoptera,in some classifications replaced by the orders (here suborders) Blattodea (cockroaches) and Manteodea (mantids); in former classifications often subsumed under a much broader order Orthoptera
+4899,Dicynodontia division_Dicynodontia,a division of Therapsida
+4900,Didelphidae family_Didelphidae,opossums
+4901,Didelphis genus_Didelphis,type genus of the family Didelphidae
+4902,Diderot Denis_Diderot,French philosopher who was a leading figure of the Enlightenment in France; principal editor of an encyclopedia that disseminated the scientific and philosophical knowledge of the time (1713-1784)
+4903,Didion Joan_Didion,United States writer (born in 1934)
+4904,Dido,(Roman mythology) a princess of Tyre who was the founder and queen of Carthage; Virgil tells of her suicide when she was abandoned by Aeneas
+4905,Dieffenbachia genus_Dieffenbachia,evergreen perennial herbs of tropical America with lush foliage and poisonous sap; often cultivated as houseplants
+4906,Diegueno,a member of a North American Indian people of southern California
+4907,Diegueno,the Yuman language spoken by the Diegueno
+4908,Dien_Bien_Phu,the French military base fell after a siege by Vietnam troops that lasted 56 days; ended the involvement of France in Indochina in 1954
+4909,Diervilla genus_Diervilla,small genus of low deciduous shrubs: bush honeysuckles
+4910,Dies_Irae,the first words of a medieval Latin hymn describing the Last Judgment (literally `day of wrath')
+4911,Diesel Rudolf_Diesel Rudolf_Christian_Karl_Diesel,German engineer (born in France) who invented the diesel engine (1858-1913)
+4912,Dietrich Marlene_Dietrich Maria_Magdalene_von_Losch,United States film actress (born in Germany) who made many films with Josef von Sternberg and later was a successful cabaret star (1901-1992)
+4913,Dietrich Paul_Heinrich_Dietrich Thiry Paul-Henri_Thiry d'Holbach baron_d'Holbach,French philosopher (born in Germany) famous as being one of the first self-described atheists in Europe
+4914,Digitaria genus_Digitaria,crab grass; finger grass
+4915,Dijon,an industrial city in eastern France to the north of Lyons
+4916,Dilleniaceae family_Dilleniaceae,chiefly tropical shrubs and trees and climbers having leathery leaves or flattened leaflike stems: genera Dillenia and Hibbertia
+4917,Dilleniidae subclass_Dilleniidae,a group of families of more or less advanced trees and shrubs and herbs having either polypetalous or gamopetalous corollas and often with ovules attached to the walls of the ovary; contains 69 families including Ericaceae and Cruciferae and Malvaceae; sometimes classified as a superorder
+4918,Dimash Damascus capital_of_Syria,an ancient city (widely regarded as the world's oldest) and present capital and largest city of Syria; according to the New Testament, the Apostle Paul (then known as Saul) underwent a dramatic conversion on the road to Damascus
+4919,Dimetapp,trade name for a drug containing an antihistamine and a decongestant; used to relieve nasal congestion and to treat rhinitis
+4920,Dimocarpus genus_Dimocarpus,longan
+4921,Dimorphotheca genus_Dimorphotheca,South African herbs or subshrubs with usually yellow flowers
+4922,Dinesen Isak_Dinesen Blixen Karen_Blixen Baroness_Karen_Blixen,Danish writer who lived in Kenya for 19 years and is remembered for her writings about Africa (1885-1962)
+4923,Dinka,a Nilotic language
+4924,Dinocerata order_Dinocerata,small order of primitive ungulates of the Paleocene and Eocene
+4925,Dinoflagellata order_Dinoflagellata Cilioflagellata order_Cilioflagellata,in some classifications considered a phylum of the kingdom Protista; in others included in the plant phylum Pyrrophyta
+4926,Dinornis genus_Dinornis,type genus of the Dinornithidae: large moas
+4927,Dinornithidae family_Dinornithidae,moas
+4928,Dinornithiformes order_Dinornithiformes,a ratite bird order: recently extinct flightless birds of New Zealand
+4929,Diocletian Gaius_Aurelius_Valerius_Diocletian,Roman Emperor who when faced with military problems decided in 286 to divide the Roman Empire between himself in the east and Maximian in the west; he initiated the last persecution of the Christians in 303 (245-313)
+4930,Diodon genus_Diodon,type genus of the Diodontidae
+4931,Diodontidae family_Diodontidae,spiny puffers
+4932,Diogenes,an ancient Greek philosopher and Cynic who rejected social conventions (circa 400-325 BC)
+4933,Diomedeidae family_Diomedeidae,albatrosses
+4934,Dionaea genus_Dionaea,a genus of the family Droseraceae
+4935,Dionysia Bacchanalia,an orgiastic festival in ancient Greece in honor of Dionysus (= Bacchus)
+4936,Dionysius Dionysius_the_Elder,the tyrant of Syracuse who fought the Carthaginians (430-367 BC)
+4937,Dionysus,(Greek mythology) god of wine and fertility and drama; the Greek name of Bacchus
+4938,Diophantus,Greek mathematician who was the first to try to develop an algebraic notation (3rd century)
+4939,Dior Christian_Dior,French couturier whose first collection in 1947 created a style that became known as the New Look (1905-1957)
+4940,Dioscorea genus_Dioscorea,yams
+4941,Dioscoreaceae family_Dioscoreaceae yam_family,yams
+4942,Diospyros genus_Diospyros,a genus of trees or shrubs that have beautiful and valuable wood
+4943,Diphylla genus_Diphylla,vampire bats
+4944,Diplopoda class_Diplopoda Myriapoda class_Myriapoda,arthropods having the body composed of numerous double somites each with two pairs of legs: millipedes
+4945,Diplopterygium genus_Diplopterygium,scandent thicket-forming ferns of Asia to western Pacific
+4946,Diplotaxis genus_Diplotaxis,wall rocket
+4947,Dipnoi subclass_Dipnoi,bony fishes of the southern hemisphere that breathe by a modified air bladder as well as gills; sometimes classified as an order of Crossopterygii
+4948,Dipodidae family_Dipodidae,Old World jerboas
+4949,Dipodomys genus_Dipodomys,kangaroo rats
+4950,Dipogon genus_Dipogon,one species: Australian pea
+4951,Dipsacaceae family_Dipsacaceae,chiefly southern European herbs with flowers usually in dense cymose heads
+4952,Dipsacus genus_Dipsacus,type genus of the Dipsacaceae: teasel
+4953,Dipsosaurus genus_Dipsosaurus,desert iguanas
+4954,Diptera order_Diptera,a large order of insects having a single pair of wings and sucking or piercing mouths; includes true flies and mosquitoes and gnats and crane flies
+4955,Dipterocarpaceae family_Dipterocarpaceae,chiefly tropical Asian trees with two-winged fruits; yield valuable woods and aromatic oils and resins
+4956,Dipteronia genus_Dipteronia,small genus of large deciduous shrubs having large clusters of winged seeds that turn red as they mature; central and southern China
+4957,Dipus genus_Dipus,type genus of the Dipodidae; typical jerboas having three toes on each hind foot
+4958,Dipylon_gate Dipylon,a gateway to the west of ancient Athens near which a distinctive style of pottery has been found
+4959,Dirac Paul_Adrien_Maurice_Dirac,English theoretical physicist who applied relativity theory to quantum mechanics and predicted the existence of antimatter and the positron (1902-1984)
+4960,Dirca genus_Dirca,deciduous shrub of North America: leatherwood
+4961,Director_of_Central_Intelligence DCI,the head of the United States Intelligence Community and director of the Central Intelligence Agency
+4962,Directorate_for_Inter-Services_Intelligence Inter-Services_Intelligence ISI,the Pakistan intelligence agency; a powerful and almost autonomous political and military force; has procured nuclear technology and delivery capabilities; has had strong ties with the Taliban and other militant Islamic groups
+4963,Discina_macrospora,a discina with a flat or saucer-shaped fertile body that is brown on the upper surface; has a short stalk; not recommended for eating
+4964,Disciotis_venosa cup_morel,an edible morel with a cup-shaped or saucer-shaped fruiting body can be up to 20 cm wide; the fertile surface inside the cup has wrinkles radiating from the center; can be easily confused with inedible mushrooms
+4965,Discocephali order_Discocephali,small order of fishes comprising the remoras
+4966,Discoglossidae family_Discoglossidae,family of Old World toads having a fixed disklike tongue
+4967,Discomycetes subclass_Discomycetes,a large and taxonomically difficult group of Ascomycetes in which the fleshy fruiting body is disklike or cup-shaped
+4968,Disney Walt_Disney Walter_Elias_Disney,United States film maker who pioneered animated cartoons and created such characters as Mickey Mouse and Donald Duck; founded Disneyland (1901-1966)
+4969,Disneyland,an amusement park in Anaheim created in 1955 by Walt Disney
+4970,Disraeli Benjamin_Disraeli First_Earl_of_Beaconsfield,British statesman who as Prime Minister bought controlling interest in the Suez Canal and made Queen Victoria the empress of India (1804-1881)
+4971,Distinguished_Conduct_Medal,a British military decoration for distinguished conduct in the field
+4972,Distinguished_Flying_Cross,a United States Air Force decoration for heroism while participating in an aerial flight
+4973,Distinguished_Service_Cross,a United States Army decoration for extraordinary heroism against an armed enemy
+4974,Distinguished_Service_Medal,a United States military decoration for meritorious service in wartime duty of great responsibility
+4975,Distinguished_Service_Order,a British military decoration for special service in action
+4976,District_of_Columbia D.C. DC,the district occupied entirely by the city of Washington; chosen by George Washington as the site of the capital of the United States and created out of land ceded by Maryland and Virginia
+4977,Divine_Comedy Divina_Commedia,a narrative epic poem written by Dante
+4978,Divine_Office,canonical prayers recited daily by priests (e.g. the breviary of the Roman Catholic Church)
+4979,Dix Dorothea_Dix Dorothea_Lynde_Dix,United States social reformer who pioneered in the reform of prisons and in the treatment of the mentally ill; superintended women army nurses during the American Civil War (1802-1887)
+4980,Dixie_cup paper_cup,a disposable cup made of paper; for holding drinks
+4981,Djanet,a desert town in southeastern Algeria
+4982,Djibouti Republic_of_Djibouti Afars_and_Issas,a country in northeastern Africa on the Somali peninsula; formerly under French control but became independent in 1997
+4983,Djibouti capital_of_Djibouti,port city on the Gulf of Aden; the capital and largest city of Djibouti
+4984,Djibouti_franc,the basic unit of money in Djibouti
+4985,Djiboutian,a native or inhabitant of Djibouti
+4986,Dneprodzerzhinsk,port city and industrial center in east central Ukraine on the Dnieper River
+4987,Dnieper Dnieper_River,a river that rises in Russia near Smolensk and flowing south through Belarus and Ukraine to empty into the Black Sea
+4988,Dnipropetrovsk Yekaterinoslav,city in east central Ukraine on the Dnieper River; center of metallurgical industry
+4989,Doberman Doberman_pinscher,medium large breed of dog of German origin with a glossy black and tan coat; used as a watchdog
+4990,Dobrich Tolbukhin,a city in northeastern Bulgaria (north of Varna) that is the commercial center of an agricultural region
+4991,Docetism,the heretical doctrine (associated with the Gnostics) that Jesus had no human body and his sufferings and death on the cross were apparent rather than real
+4992,Doctor_of_Arts ArtsD,an honorary arts degree
+4993,Doctor_of_Arts D.A.,a doctor's degree with a special disciplinary focus
+4994,Doctor_of_Dental_Medicine DMD,a doctor's degree in dental medicine
+4995,Doctor_of_Dental_Surgery DDS,a doctor's degree in dental surgery
+4996,Doctor_of_Divinity DD,a doctor's degree in religion
+4997,Doctor_of_Education EdD DEd,a doctor's degree in education
+4998,Doctor_of_Fine_Arts,an honorary degree in fine arts
+4999,Doctor_of_Humane_Letters,an honorary degree in letters
+5000,Doctor_of_Humanities,an honorary degree in the humanities
+5001,Doctor_of_Laws LLD,an honorary law degree
+5002,Doctor_of_Medicine MD,a doctor's degree in medicine
+5003,Doctor_of_Music DMus MusD,a doctor's degree in music
+5004,Doctor_of_Musical_Arts AMusD,a doctor's degree in musical arts
+5005,Doctor_of_Optometry OD,a doctor's degree in optometry
+5006,Doctor_of_Osteopathy DO,doctor's degree in osteopathy
+5007,Doctor_of_Philosophy,a doctorate awarded for original contributions to knowledge
+5008,Doctor_of_Public_Health DPH,a doctor's degree in preventive medicine
+5009,Doctor_of_Sacred_Theology STD,a doctor's degree in theology; "STD is from the Latin Sanctae Theologiae Doctor"
+5010,Doctor_of_Science DS ScD,an honorary degree in science
+5011,Doctor_of_Theology ThD,a doctor's degree in theology
+5012,Doctor_of_the_Church Doctor,(Roman Catholic Church) a title conferred on 33 saints who distinguished themselves through the orthodoxy of their theological teaching; "the Doctors of the Church greatly influenced Christian thought down to the late Middle Ages"
+5013,Doctorow E._L._Doctorow Edgard_Lawrence_Doctorow,United States novelist (born in 1931)
+5014,Dodecanese Dhodhekanisos,a group of islands in the southeast Aegean Sea
+5015,Dodge_City,a town of southwestern Kansas on the Arkansas River; formerly a rowdy cow town
+5016,Dodoma,a city in the center of Tanzania that has been designated as the future capital
+5017,Dodonaea genus_Dodonaea,a genus of tropical shrub or tree
+5018,Doha Bida El_Beda capital_of_Qatar,the capital and chief port of Qatar
+5019,Dolby Ray_M._Dolby,United States electrical engineer who devised the Dolby system used to reduce background noise in tape recording
+5020,Dolichonyx genus_Dolichonyx,bobolinks
+5021,Dolichos genus_Dolichos,genus of chiefly tropical vines often placed in genera Dipogon or Lablab or Macrotyloma
+5022,Dolichotis genus_Dolichotis,maras
+5023,Doliolidae family_Doliolidae,oceanic tunicates
+5024,Dolomite_Alps,an eastern range of the Alps in northeastern Italy famous for their dolomitic limestone
+5025,Dom_Pedro,South African mixed drink made by mixing ice cream with whisky
+5026,Domesday_Book Doomsday_Book,record of a British census and land survey in 1085-1086 ordered by William the Conqueror
+5027,Domingo Placido_Domingo,Spanish operatic tenor noted for performances in operas by Verdi and Puccini (born in 1941)
+5028,Dominic Saint_Dominic St._Dominic Domingo_de_Guzman,(Roman Catholic Church) Spanish priest who founded an order whose members became known as Dominicans or Black Friars (circa 1170-1221)
+5029,Dominica,a volcanic island in the Windward Islands that was once a stronghold of the Carib Indians
+5030,Dominica Commonwealth_of_Dominica,a country on the island of Dominica
+5031,Dominican,a native or inhabitant of the Dominican Republic
+5032,Dominican Black_Friar Blackfriar friar_preacher,a Roman Catholic friar wearing the black mantle of the Dominican order
+5033,Dominican_Republic,a republic in the West Indies; located on the eastern two-thirds of the island of Hispaniola
+5034,Dominican_dollar,the basic unit of money in Dominica
+5035,Dominican_monetary_unit,monetary unit in the Dominican Republic
+5036,Dominican_order,a Roman Catholic order of mendicant preachers founded in the 13th century
+5037,Dominican_peso peso,the basic unit of money in the Dominican Republic; equal to 100 centavos
+5038,Dominion,one of the self-governing nations in the British Commonwealth
+5039,Dominion_Day July_1,a legal holiday in Canada commemorating receiving Dominion status in 1867
+5040,Dominique Dominick,American breed of chicken having barred grey plumage raised for meat and brown eggs
+5041,Domino Fats_Domino Antoine_Domino,United States rhythm and blues pianist and singer and composer (born in 1928)
+5042,Domitian Titus_Flavius_Domitianus,Emperor of Rome; son of Vespasian who succeeded his brother Titus; instigated a reign of terror and was assassinated as a tyrant (51-96)
+5043,Don,a Spanish gentleman or nobleman
+5044,Don,Celtic goddess; mother of Gwydion and Arianrhod; corresponds to Irish Danu
+5045,Don,a Spanish courtesy title or form of address for men that is prefixed to the forename; "Don Roberto"
+5046,Don Don_River,a European river in southwestern Russia; flows into the Sea of Azov
+5047,Don_Juan,a legendary Spanish nobleman and philanderer who became the hero of many poems and plays and operas
+5048,Don_Juan,any successful womanizer (after the legendary profligate Spanish nobleman)
+5049,Don_Quixote,any impractical idealist (after Cervantes' hero)
+5050,Don_Quixote,the hero of a romance by Cervantes; chivalrous but impractical
+5051,Dona,a Spanish courtesy title or form of address for a woman; "Dona Marguerita"
+5052,Donald_Duck,a fictional duck created in animated film strips by Walt Disney
+5053,Donar,the Teutonic god of thunder; counterpart of Norse Thor
+5054,Donatello Donato_di_Betto_Bardi,Florentine sculptor famous for his lifelike sculptures (1386-1466)
+5055,Donatism,a schismatic Christian religion in northern Africa from the 4th to the 7th century; held that only those who led a blameless life belonged in the church or could administer the sacraments
+5056,Donatist,an adherent of Donatism
+5057,Donatus Aelius_Donatus,Roman grammarian whose textbook on Latin grammar was used throughout the Middle Ages (fourth century)
+5058,Donets_Basin Donbass Donbas,an industrial region in the Ukraine
+5059,Donetsk Donetske Stalino,an industrial city in the Donets Basin
+5060,Donizetti Gaetano_Donizetti,Italian composer of operas (1797-1848)
+5061,Donkin Bryan_Donkin,English engineer who developed a method of preserving food by sterilizing it with heat and sealing it inside a steel container--the first tin can (1768-1855)
+5062,Donne John_Donne,English clergyman and metaphysical poet celebrated as a preacher (1572-1631)
+5063,Donner_Pass,a mountain pass in northeastern California near Lake Tahoe; site where in 1844 some members of an emigrant party survived by eating those who had died
+5064,Doolittle Jimmy_Doolittle James_Harold_Doolittle,United States Air Force officer who electrified the world in 1942 by leading a squadron of 16 bombers on a daylight raid over Tokyo (1896-1993)
+5065,Doppler Christian_Johann_Doppler,Austrian physicist famous for his discovery of the Doppler effect (1803-1853)
+5066,Doppler_effect Doppler_shift,change in the apparent frequency of a wave as observer and source move toward or away from each other
+5067,Doppler_radar,radar that uses the Doppler shift to measure velocity
+5068,Dorado,a constellation in the southern hemisphere near Reticulum and Pictor; contains most of the Large Magellanic Cloud
+5069,Dorian,a member of one of four linguistic divisions of the prehistoric Greeks
+5070,Dorian,the ancient Greek inhabitants of Doris who entered Greece from the north about 1100 BC
+5071,Doric Doric_dialect,the dialect of Ancient Greek spoken in Doris
+5072,Doric_order Dorian_order,the oldest and simplest of the Greek orders and the only one that normally has no base
+5073,Doris,(Greek mythology) wife of Nereus and mother of the Nereids
+5074,Doris,a small region of ancient Greece where the Doric dialect was spoken
+5075,Dorking,an English breed of large domestic fowl having five toes (the hind toe doubled)
+5076,Dormition Feast_of_Dormition,celebration in the Eastern Orthodox Church of the Virgin Mary's being taken up into heaven when her earthly life ended; corresponds to the Assumption in the Roman Catholic Church and is also celebrated on August 15th
+5077,Doronicum genus_Doronicum,genus of Eurasian perennial tuberous or rhizomatous herbs: leopard's bane
+5078,Dorotheanthus genus_Dorotheanthus,a caryophyllaceous genus of Dorotheanthus
+5079,Dortmund,an industrial city in northwestern Germany; flourished from the 13th to 17th century as a member of the Hanseatic League
+5080,Dorylinae subfamily_Dorylinae,army ants
+5081,Doryopteris genus_Doryopteris,small to medium tropical tufted ferns; sometimes placed in family Adiantaceae
+5082,Dos_Passos John_Dos_Passos John_Roderigo_Dos_Passos,United States novelist remembered for his portrayal of life in the United States (1896-1970)
+5083,Dostoyevsky Dostoevski Dostoevsky Feodor_Dostoyevsky Fyodor_Dostoyevsky Feodor_Dostoevski Fyodor_Dostoevski Feodor_Dostoevsky Fyodor_Dostoevsky Feodor_Mikhailovich_Dostoyevsky Fyodor_Mikhailovich_Dostoyevsky Feodor_Mikhailovich_Dostoevski Fyodor_Mikhailovich_Dostoevski Feodor_Mikhailovich_Dostoevsky Fyodor_Mikhailovich_Dostoevsky,Russian novelist who wrote of human suffering with humor and psychological insight (1821-1881)
+5084,Douala,the largest city of Cameroon
+5085,Douay_Bible Douay_Version Douay-Rheims_Bible Douay-Rheims_Version Rheims-Douay_Bible Rheims-Douay_Version,an English translation of the Vulgate by Roman Catholic scholars
+5086,Douglas Stephen_A._Douglas Stephen_Arnold_Douglas Little_Giant,United States politician who proposed that individual territories be allowed to decide whether they would have slavery; he engaged in a famous series of debates with Abraham Lincoln (1813-1861)
+5087,Douglass Frederick_Douglass,United States abolitionist who escaped from slavery and became an influential writer and lecturer in the North (1817-1895)
+5088,Dover capital_of_Delaware,the capital of the state of Delaware
+5089,Dover's_powder,a medicinal powder made essentially of ipecac and opium; formerly used to relieve pain and induce perspiration
+5090,Dovyalis genus_Dovyalis,small genus of sometimes spiny shrubs or small trees; Africa; India; Sri Lanka
+5091,Dow_Jones Dow-Jones_Industrial_Average,an indicator of stock market prices; based on the share values of 30 blue-chip stocks listed on the New York Stock Exchange; "the Dow Jones Industrial Average is the most widely cited indicator of how the stock market is doing"
+5092,Dowding Hugh_Dowding Baron_Hugh_Caswall_Tremenheere_Dowding Dowdy,British marshal of the RAF who commanded the British air defense forces that defeated the Luftwaffe during the Battle of Britain (1882-1970)
+5093,Dowland John_Dowland,English lutenist and composer of songs for the lute (1563-1626)
+5094,Down John_L._H._Down,English physician who first described Down's syndrome (1828-1896)
+5095,Downing Andrew_Jackson_Downing,United States landscape architect who designed the grounds of the White House and the Capitol Building (1815-1852)
+5096,Downing_Street,a street of Westminster in London; "the Prime Minister lives at No. 10 Downing Street"
+5097,Downing_Street,the British government
+5098,Dracenaceae subfamily_Dracenaceae Dracaenaceae subfamily_Dracaenaceae,one of two subfamilies to which some classification systems assign some members of the Agavaceae
+5099,Draco,Athenian lawmaker whose code of laws prescribed death for almost every offense (circa 7th century BC)
+5100,Draco Dragon,a faint constellation twisting around the north celestial pole and lying between Ursa Major and Cepheus
+5101,Draco genus_Draco,a reptile genus known as flying dragons or flying lizards
+5102,Dracocephalum genus_Dracocephalum,genus of American herbs and dwarf shrubs of the mint family: dragonheads
+5103,Dracula,fictional vampire in a gothic horror novel by Bram Stoker
+5104,Dracula genus_Dracula,comprises tropical American species usually placed in genus Masdevallia: diminutive plants having bizarre and often sinister-looking flowers with pendulous scapes and motile lips
+5105,Dracunculidae family_Dracunculidae,greatly elongated roundworm
+5106,Dracunculus genus_Dracunculus,tuberous herbaceous perennials: dragon arum
+5107,Dracunculus genus_Dracunculus,type genus of the family Dracunculidae
+5108,Dragunov,a sniper rifle with a telescopic sight
+5109,Drake Francis_Drake Sir_Francis_Drake,English explorer and admiral who was the first Englishman to circumnavigate the globe and who helped to defeat the Spanish Armada (1540-1596)
+5110,Drambuie,a sweet Scotch whisky liqueur
+5111,Dravidian,a member of one of the aboriginal inhabitants of India
+5112,Dravidian Dravidic Dravidian_language,a large family of languages spoken in south and central India and Sri Lanka
+5113,Dreiser Theodore_Dreiser Theodore_Herman_Albert_Dreiser,United States novelist (1871-1945)
+5114,Dreissena genus_Dreissena,zebra mussels
+5115,Drepanididae family_Drepanididae,Hawaiian honeycreepers
+5116,Drepanis genus_Drepanis,a genus of Drepanididae
+5117,Dresden,a city in southeastern Germany on the Elbe River; it was almost totally destroyed by British air raids in 1945
+5118,Drew John_Drew,United States actor (born in Ireland); father of Georgiana Emma Barrymore (1827-1862)
+5119,Dreyfus Alfred_Dreyfus,French army officer of Jewish descent whose false imprisonment for treason in 1894 raised issues of anti-Semitism that dominated French politics until his release in 1906 (1859-1935)
+5120,Drimys genus_Drimys,shrubs and trees of southern hemisphere having aromatic foliage
+5121,Drixoral,the trade name for a drug used to treat upper respiratory congestion; it contains an antihistamine and a bronchodilator and a vasoconstrictor
+5122,Drogheda,in 1649 the place was captured by Oliver Cromwell, who massacred the Catholic inhabitants
+5123,Dromaeosauridae family_Dromaeosauridae,swift-running bipedal dinosaurs
+5124,Dromaius genus_Dromaius,a genus of birds in the order Casuariiformes
+5125,Drosera genus_Drosera,the type genus of Droseraceae including many low bog-inhabiting insectivorous plants
+5126,Droseraceae family_Droseraceae sundew_family,a family of carnivorous herbs and shrubs
+5127,Drosophilidae family_Drosophilidae,fruit flies
+5128,Drosophyllum genus_Drosophyllum,one species
+5129,Drosophyllum_lusitanicum,perennial of dry habitats whose leaves have glandular hairs that secrete adhesive and digestive fluid for capture and digestion of insects; Portugal, southern Spain and Morocco
+5130,Drug_Enforcement_Administration Drug_Enforcement_Agency DEA,federal agency responsible for enforcing laws and regulations governing narcotics and controlled substances; goal is to immobilize drug trafficking organizations
+5131,Druid,a pre-Christian priest among the Celts of ancient Gaul and Britain and Ireland
+5132,Druze Druse,an adherent of an esoteric monotheistic religious sect living in the relative security of the mountains of Syria and Lebanon who believes that Al-hakim was an incarnation of God; "a Druze is permitted to conform outwardly to the faith of the unbelievers among whom he lives"
+5133,Dryadella genus_Dryadella,comprises tropical American species usually placed in genus Masdevallia: very dwarf plants having short tufted and usually unifoliate stems with usually solitary flowers
+5134,Dryas genus_Dryas,mountain avens
+5135,Dryden John_Dryden,the outstanding poet and dramatist of the Restoration (1631-1700)
+5136,Drymarchon genus_Drymarchon,a genus of Colubridae
+5137,Drymoglossum genus_Drymoglossum,epiphytic ferns of Madagascar to tropical Asia and New Guinea
+5138,Drynaria genus_Drynaria,large robust epiphytic ferns of tropical forest and scrub; Africa and Asia and Australia
+5139,Dryopithecus genus_Dryopithecus,genus of Old World hominoids; Miocene and Pliocene
+5140,Dryopteridaceae family_Dryopteridaceae Athyriaceae family_Athyriaceae,alternative names for one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems
+5141,Dryopteris genus_Dryopteris,large widespread genus of medium-sized terrestrial ferns; in some classification systems placed in Polypodiaceae
+5142,Du_Barry Comtesse_Du_Barry Marie_Jeanne_Becu,courtier and influential mistress of Louis XV who was guillotined during the French Revolution (1743-1793)
+5143,Du_Bois W._E._B._Du_Bois William_Edward_Burghardt_Du_Bois,United States civil rights leader and political activist who campaigned for equality for Black Americans (1868-1963)
+5144,Dubai,port city in the United Arab Emirates on the Persian Gulf
+5145,Dublin Irish_capital capital_of_Ireland,capital and largest city and major port of the Irish Republic
+5146,Dubliner,a resident of Dublin
+5147,Dubonnet,(trademark) a sweet aromatic French wine (red or white) used chiefly as an aperitif
+5148,Dubrovnik Ragusa,a port city in southwestern Croatia on the Adriatic; a popular tourist center
+5149,Dubuque,a town in eastern Iowa on the Mississippi River
+5150,Duchamp Marcel_Duchamp,French artist who immigrated to the United States; a leader in the dada movement in New York City; was first to exhibit commonplace objects as art (1887-1968)
+5151,Duchenne's_muscular_dystrophy pseudohypertrophic_dystrophy,the most common form of muscular dystrophy; inheritance is X-linked recessive (carried by females but affecting only males)
+5152,Dufy Raoul_Dufy,French painter noted for brightly colored scenes (1877-1953)
+5153,Dugongidae family_Dugongidae,a family of mammals of order Sirenia including dugongs and Steller's sea cow
+5154,Dukas Paul_Dukas,French composer (1865-1935)
+5155,Duke_University,a university in Durham, North Carolina
+5156,Dulles John_Foster_Dulles,United States diplomat who (as Secretary of State) pursued a policy of opposition to the USSR by providing aid to American allies (1888-1959)
+5157,Duluth,a city in northeast Minnesota on Lake Superior
+5158,Duma,a legislative body in the ruling assembly of Russia and of some other republics in the former USSR
+5159,Dumas Alexandre_Dumas,French writer remembered for his swashbuckling historical tales (1802-1870)
+5160,Dumetella genus_Dumetella,catbirds
+5161,Dumpster,a container designed to receive and transport and dump waste
+5162,Dumpy_level,a surveyor's level having a short telescope fixed to a horizontally rotating table and a spirit level
+5163,Dumuzi Tammuz,Sumerian and Babylonian god of pastures and vegetation; consort of Inanna
+5164,Duncan Isadora_Duncan,United States dancer and pioneer of modern dance (1878-1927)
+5165,Dungeness_crab,flesh of Cancer magister (Dungeness crab)
+5166,Dungeness_crab Cancer_magister,small edible crab of Pacific coast of North America
+5167,Dunker Dunkard Tunker,an adherent of Baptistic doctrines (who practice baptism by immersion)
+5168,Dunkirk,a crisis in which a desperate effort is the only alternative to defeat; "the Russians had to pull off a Dunkirk to get out of there"
+5169,Dunkirk Dunkerque,a seaport in northern France on the North Sea; scene of the evacuation of British forces in 1940 during World War II
+5170,Dunkirk Dunkerque,an amphibious evacuation in World War II (1940) when 330,000 Allied troops had to be evacuated from the beaches in northern France in a desperate retreat under enemy fire
+5171,Duns_Scotus John_Duns_Scotus,Scottish theologian who was very influential in the Middle Ages (1265-1308)
+5172,Duplicidentata,in former classifications considered a suborder of Rodentia coextensive with the order Lagomorpha: gnawing animals
+5173,Duralumin,an aluminum-based alloy
+5174,Durango Victoria_de_Durango,a city in north central Mexico; mining center
+5175,Durant Will_Durant William_James_Durant,United States historian (1885-1981)
+5176,Durante Jimmy_Durante,United States comedian remembered for his large nose and hoarse voice (1893-1980)
+5177,Durban,a port city in eastern South Africa on the Indian Ocean; resort and industrial center
+5178,Durer Albrecht_Durer,a leading German painter and engraver of the Renaissance (1471-1528)
+5179,Durga,Hindu goddess of war; a malevolent aspect of Devi; "the inaccessible Durga"
+5180,Durham,a city of north central North Carolina; site of Duke University
+5181,Durham shorthorn,English breed of short-horned cattle
+5182,Durio genus_Durio,a genus of tall Asian trees of the family Bombacaceae
+5183,Durkheim Emile_Durkheim,French sociologist and first professor of sociology at the Sorbonne (1858-1917)
+5184,Durrell Lawrence_Durrell Lawrence_George_Durrell,English writer of Irish descent who spent much of his life in Mediterranean regions (1912-1990)
+5185,Durres Durazzo,port city in western Albania on the Adriatic
+5186,Duse Eleonora_Duse,Italian actress best known for her performances in tragic roles (1858-1924)
+5187,Dushanbe Dusanbe Dyushambe Stalinabad capital_of_Tajikistan,the capital of Tajikistan; formerly Stalinabad 1926-1991
+5188,Dusicyon genus_Dusicyon,crab-eating dog
+5189,Dusseldorf,an industrial city in western Germany on the Rhine
+5190,Dutch,the West Germanic language of the Netherlands
+5191,Dutch Dutch_people,the people of the Netherlands; "the Dutch are famous for their tulips"
+5192,Dutch-elm_beetle Scolytus_multistriatus,a vector of the fungus causing Dutch elm disease
+5193,Dutch-processed_cocoa,cocoa powder treated with a mild alkalizing agent (such as baking soda)
+5194,Dutch_courage,courage resulting from intoxication
+5195,Dutch_door half_door,an exterior door divided in two horizontally; either half can be closed or open independently
+5196,Dutch_elm Ulmus_hollandica,any of various hybrid ornamental European shade trees ranging from dwarf to tall
+5197,Dutch_elm_disease,disease of elms caused by a fungus
+5198,Dutch_elm_fungus Ceratostomella_ulmi,fungus causing Dutch elm disease
+5199,Dutch_iris Iris_filifolia,bulbous Spanish iris with red-violet flowers
+5200,Dutch_iris Iris_tingitana,bulbous Spanish iris having blue flowers
+5201,Dutch_monetary_unit,monetary unit in the Netherlands
+5202,Dutch_oven,iron or earthenware cooking pot; used for stews
+5203,Dutch_oven,an oven consisting of a metal box for cooking in front of a fire
+5204,Dutch_treat,a dinner where each person pays for his own
+5205,Dutch_uncle,a counselor who admonishes frankly and sternly
+5206,Dutchman's-pipe pipe_vine Aristolochia_macrophylla Aristolochia_durior,hardy deciduous vine having large leaves and flowers with the calyx tube curved like the bowl of a pipe
+5207,Dutchman's_breeches Dicentra_cucullaria,delicate spring-flowering plant of the eastern United States having white flowers with double spurs
+5208,Duvalier Francois_Duvalier Papa_Doc,oppressive Haitian dictator (1907-1971)
+5209,Duvalier Jean-Claude_Duvalier Baby_Doc,son and successor of Francois Duvalier as president of Haiti; he was overthrown by a mass uprising in 1986 (born in 1951)
+5210,Dvorak Antonin_Dvorak,Czech composer who combined folk elements with traditional forms (1841-1904)
+5211,Dyaus Dyaus-pitar,Hindu god of the sky
+5212,Dyirbal Jirrbal,a language of Australian aborigines
+5213,Dylan,Celtic god of the waves; son of Arianrhod
+5214,Dylan Bob_Dylan,United States songwriter noted for his protest songs (born in 1941)
+5215,Dysdercus genus_Dysdercus,a genus of slender long-legged bugs that feed on the developing seeds of cotton and stain it
+5216,Dytiscidae family_Dytiscidae,water beetles
+5217,E e,the 5th letter of the Roman alphabet
+5218,EBITDA Earnings_Before_Interest_Taxes_Depreciation_and_Amortization,income before interest and taxes and depreciation and amortization have been subtracted; an indicator of a company's profitability that is watched by investors (especially in leveraged buyouts)
+5219,ENT_man ear-nose-and-throat_doctor otolaryngologist otorhinolaryngologist rhinolaryngologist,a specialist in the disorders of the ear or nose or throat
+5220,Ea,the Babylonian god of wisdom; son of Apsu and father of Marduk; counterpart of the Sumerian Enki; as one of the supreme triad including Anu and Bel he was assigned control of the watery element
+5221,Eacles genus_Eacles,imperial moths
+5222,Eagle_Scout,a Boy Scout who has earned many merit badges
+5223,Eames Charles_Eames,United States designer noted for an innovative series of chairs (1907-1978)
+5224,Eames_chair,a chair designed by Charles Eames; originally made of molded plywood; seat and back shaped to fit the human body
+5225,Earhart Amelia_Earhart,first woman aviator to fly solo nonstop across the Atlantic (1928); while attempting to fly around the world she disappeared over the Pacific (1898-1937)
+5226,Earl_Marshal,an officer of the English peerage who organizes royal processions and other ceremonies
+5227,Earth earth,the abode of mortals (as contrasted with Heaven or Hell); "it was hell on earth"
+5228,Earth earth world globe,the 3rd planet from the sun; the planet we live on; "the Earth moves around the sun"; "he sailed around the world"
+5229,Earth-received_time ERT,the coordinated universal time when an event is received on Earth
+5230,East Orient,the countries of Asia
+5231,East eastern_United_States,the region of the United States lying to the north of the Ohio River and to the east of the Mississippi River
+5232,East-sider,a resident of the east side of Manhattan in New York City
+5233,East_Africa,a geographical area in eastern Africa
+5234,East_Anglia,a region of eastern England that was formerly a kingdom
+5235,East_Chadic,a group of Chadic languages spoken in Chad
+5236,East_China_Sea,part of the Pacific Ocean near eastern Asia
+5237,East_Coast,the eastern seaboard of the United States (especially the strip between Boston and Washington D.C.)
+5238,East_German,a native or inhabitant of the former republic of East Germany
+5239,East_Germanic East_Germanic_language,an extinct branch of the Germanic languages
+5240,East_Germany German_Democratic_Republic,a republic in north central Europe on the Baltic; established by the Soviet Union in 1954; reunified with West Germany in 1990
+5241,East_India_Company,an English company formed in 1600 to develop trade with the new British colonies in India and southeastern Asia; in the 18th century it assumed administrative control of Bengal and held it until the British army took over in 1858 after the Indian Mutiny
+5242,East_India_kino Malabar_kino kino_gum,reddish or black juice or resin from certain trees of the genus Pterocarpus and used in medicine and tanning etc
+5243,East_Indian,a native or inhabitant of the East Indies
+5244,East_Malaysia,the part of Malaysia that is on the island of Borneo
+5245,East_Midland,the dialect of Middle English that replaced West Saxon as the literary language and which developed into Modern English
+5246,East_River,a tidal strait separating Manhattan and the Bronx from Queens and Brooklyn
+5247,East_Saint_Louis,a town in southwest Illinois on the Mississippi across from Saint Louis
+5248,East_Sussex,a county in southern England on the English Channel
+5249,East_Timor,a former Portuguese colony that was annexed by Indonesia in 1976; voted for independence from Indonesia in 1999 and in May 2002 became an independent nation
+5250,East_Turkistan_Islamic_Movement East_Turkestan_Islamic_Movement,a group of Uighur Muslims fighting Chinese control of Xinjiang; declared by China in 2001 to be terrorists although there is a long history of cycles of insurgency and repression
+5251,Easter,a Christian celebration of the Resurrection of Christ; celebrated on the Sunday following the first full moon after the vernal equinox
+5252,Easter_Sunday Easter_Day,the day (in March or April) on which the festival of Easter is celebrated
+5253,Easter_bunny,a rabbit that delivers Easter eggs
+5254,Easter_cactus Hatiora_gaertneri Schlumbergera_gaertneri,spring-blooming South American cactus with oblong joints and coral-red flowers; sometimes placed in genus Schlumbergera
+5255,Easter_card,a card expressing an Easter greeting
+5256,Easter_daisy stemless_daisy Townsendia_Exscapa,dwarf tufted nearly stemless herb having a rosette of woolly leaves and large white-rayed flower heads and bristly achenes; central Canada and United States west to Arizona
+5257,Easter_egg,an egg-shaped candy used to celebrate Easter
+5258,Easter_egg,a colored hard-boiled egg used to celebrate Easter
+5259,Easter_lily Bermuda_lily white_trumpet_lily Lilium_longiflorum,tall lily have large white trumpet-shaped flowers that bloom in the spring
+5260,Eastern_Catholicism,the beliefs and practices of any of the eastern Catholic Churches based in Constantinople or Antioch or Alexandria or Moscow or Jerusalem
+5261,Eastern_Church Byzantine_Church,the Catholic Church as it existed in the Byzantine Empire
+5262,Eastern_Time Eastern_Standard_Time EST,standard time in the 5th time zone west of Greenwich, reckoned at the 75th meridian; used in the eastern United States
+5263,Eastern_cottonwood necklace_poplar Populus_deltoides,a common poplar of eastern and central United States; cultivated in United States for its rapid growth and luxuriant foliage and in Europe for timber
+5264,Eastern_hop_hornbeam ironwood ironwood_tree Ostrya_virginiana,medium-sized hop hornbeam of eastern North America
+5265,Eastern_silvery_aster,a variety of aster
+5266,Eastertide,the Easter season
+5267,Eastman George_Eastman,United States inventor of a dry-plate process of developing photographic film and of flexible film (his firm introduced roll film) and of the box camera and of a process for color photography (1854-1932)
+5268,Eau_Claire,a town in west central Wisconsin
+5269,Ebenaceae family_Ebenaceae ebony_family,fruit and timber trees of tropical and warm regions including ebony and persimmon
+5270,Ebenales order_Ebenales,trees or shrubs of the families Ebenaceae or Sapotaceae or Styracaceae or Symplocaceae
+5271,Ebola_hemorrhagic_fever Ebola_fever Ebola,a severe and often fatal disease in humans and nonhuman primates (monkeys and chimpanzees) caused by the Ebola virus; characterized by high fever and severe internal bleeding; can be spread from person to person; is largely limited to Africa
+5272,Ebola_virus,a filovirus that causes Ebola hemorrhagic fever; carried by animals; can be used as a bioweapon
+5273,Ebro Ebro_River,a river in northeastern Spain; flows into the Mediterranean
+5274,Eburophyton genus_Eburophyton,a monocotyledonous genus of the family Orchidaceae
+5275,Ecballium genus_Ecballium,exploding cucumber; squirting cucumber
+5276,Eccles John_Eccles Sir_John_Carew_Eccles,Australian physiologist noted for his research on the conduction of impulses by nerve cells (1903-1997)
+5277,Eccles_cake,a flat round cake of sweetened pastry filled with dried fruit
+5278,Ecclesiastes Book_of_Ecclesiastes,an Old Testament book consisting of reflections on the vanity of human life; is traditionally attributed to Solomon but probably was written about 250 BC
+5279,Echeneididae family_Echeneididae family_Echeneidae,fishes having a sucking disk on the head for clinging to other fishes and to ships
+5280,Echeneis genus_Echeneis,type genus of the Echeneididae: typical remoras
+5281,Echidnophaga genus_Echidnophaga,a genus of Siphonaptera
+5282,Echinacea genus_Echinacea,small genus of North American coarse perennial herbs
+5283,Echinocereus genus_Echinocereus,large genus of low-growing shrubby ribbed cacti of Mexico and southwestern United States
+5284,Echinochloa genus_Echinochloa,annual or perennial succulent grasses of warm regions
+5285,Echinodermata phylum_Echinodermata,radially symmetrical marine invertebrates including e.g. starfish and sea urchins and sea cucumbers
+5286,Echinoidea class_Echinoidea,sea urchins and sand dollars
+5287,Echinops genus_Echinops,genus of Mediterranean and Eurasian herbs: globe thistles
+5288,Echium genus_Echium,a genus of bristly herbs and shrubs of the family Boraginaceae
+5289,Echo,(Greek mythology) a nymph who was spurned by Narcissus and pined away until only her voice remained
+5290,Eck Johann_Eck Johann_Maier_Eck Johann_Maier,a German Roman Catholic theologian who was an indefatigable opponent of Martin Luther (1486-1543)
+5291,Eckhart Johannes_Eckhart Meister_Eckhart,German Roman Catholic theologian and mystic (1260-1327)
+5292,Economic_Commission_for_Africa,the commission of the Economic and Social Council of the United Nations that is concerned with economic development of African nations
+5293,Economic_Commission_for_Asia_and_the_Far_East,the commission of the Economic and Social Council of the United Nations that is concerned with economic development of countries in Asia and the Far East
+5294,Economic_Commission_for_Europe,the commission of the Economic and Social Council of the United Nations that is concerned with economic development in Europe
+5295,Economic_Commission_for_Latin_America,the commission of the Economic and Social Council of the United Nations that is concerned with economic development in Latin America
+5296,Economic_and_Social_Council ECOSOC,a permanent council of the United Nations; responsible for economic and social conditions
+5297,Economic_and_Social_Council_commission ECOSOC_commission,a commission of the Economic and Social Council of the United Nations
+5298,Ectopistes genus_Ectopistes,a genus of Columbidae
+5299,Ectoprocta phylum_Ectoprocta,coextensive with or a subphylum of Bryozoa
+5300,Ecuador Republic_of_Ecuador,a republic in northwestern South America; became independent from Spain in 1822; the landscape is dominated by the Andes
+5301,Ecuadoran_monetary_unit,monetary unit in Ecuador
+5302,Ecuadorian Ecuadoran,a native or inhabitant of Ecuador
+5303,Edam,mild yellow Dutch cheese made in balls encased in a red covering
+5304,Edaphosauridae family_Edaphosauridae,a family of reptiles of the order Pelycosauria
+5305,Edda,either of two distinct works in Old Icelandic dating from the late 13th century and consisting of 34 mythological and heroic ballads composed between 800 and 1200; the primary source for Scandinavian mythology
+5306,Eddington Sir_Arthur_Stanley_Eddington,English astronomer remembered for his popular elucidation of relativity theory (1882-1944)
+5307,Eddy Mary_Baker_Eddy Mary_Morse_Baker_Eddy,founder of Christian Science in 1866 (1821-1910)
+5308,Eden Garden_of_Eden,a beautiful garden where Adam and Eve were placed at the Creation; when they disobeyed and ate the forbidden fruit from the tree of knowledge of good and evil they were driven from their paradise (the fall of man)
+5309,Eden paradise nirvana heaven promised_land Shangri-la,any place of complete bliss and delight and peace
+5310,Edentata order_Edentata,order of mammals having few or no teeth including: New World anteaters; sloths; armadillos
+5311,Ederle Gertrude_Ederle Gertrude_Caroline_Ederle,United States swimmer who in 1926 became the first woman to swim the English Channel (1906-2003)
+5312,Edgar,the younger brother of Edwy who became king of Northumbria when it renounced Edwy; on Edwy's death he succeeded to the throne of England (944-975)
+5313,Edinburgh,the capital of Scotland; located in the Lothian Region on the south side of the Firth of Forth
+5314,Edirne Adrianople Adrianopolis,a city in northwestern Turkey; a Thracian town that was rebuilt and renamed by the Roman Emperor Hadrian
+5315,Edison Thomas_Edison Thomas_Alva_Edison,United States inventor; inventions included the phonograph and incandescent electric light and the microphone and the Kinetoscope (1847-1931)
+5316,Edmonton,the capital of the province of Alberta
+5317,Edmontonia,heavily armored and highly spiked dinosaur with semi-upright posture
+5318,Edmund_I,king of the English who succeeded Athelstan; he drove out the Danes and made peace with Scotland (921-946)
+5319,Edmund_II Edmund_Ironside,king of the English who led resistance to Canute but was defeated and forced to divide the kingdom with Canute (980-1016)
+5320,Edo,a member of a west African people living in the tropical forest region of southern Nigeria
+5321,Edward Black_Prince,son of Edward III who defeated the French at Crecy and Poitiers in the Hundred Years' War (1330-1376)
+5322,Edward Edward_I,King of England from 1272 to 1307; conquered Wales (1239-1307)
+5323,Edward Edward_II,King of England from 1307 to 1327 and son of Edward I; was defeated at Bannockburn by the Scots led by Robert the Bruce; was deposed and died in prison (1284-1327)
+5324,Edward Edward_III,son of Edward II and King of England from 1327-1377; his claim to the French throne provoked the Hundred Years' War; his reign was marked by an epidemic of the Black Plague and by the emergence of the House of Commons as the powerful arm of British Parliament (1312-1377)
+5325,Edward Edward_IV,King of England from 1461 to 1470 and from 1471 to 1483; was dethroned in 1470 but regained the throne in 1471 by his victory at the battle of Tewkesbury (1442-1483)
+5326,Edward Edward_V,King of England who was crowned at the age of 13 on the death of his father Edward IV but was immediately confined to the Tower of London where he and his younger brother were murdered (1470-1483)
+5327,Edward Edward_VI,King of England and Ireland from 1547 to 1553; son of Henry VIII and Jane Seymour; died of tuberculosis (1537-1553)
+5328,Edward Edward_VII Albert_Edward,King of England from 1901 to 1910; son of Victoria and Prince Albert; famous for his elegant sporting ways (1841-1910)
+5329,Edward Edward_VIII Duke_of_Windsor,King of England and Ireland in 1936; his marriage to Wallis Warfield Simpson created a constitutional crisis leading to his abdication (1894-1972)
+5330,Edward Prince_Edward Edward_Antony_Richard_Louis,third son of Elizabeth II (born in 1964)
+5331,Edward_the_Confessor Saint_Edward_the_Confessor St._Edward_the_Confessor,son of Ethelred the Unready; King of England from 1042 to 1066; he founded Westminster Abbey where he was eventually buried (1003-1066)
+5332,Edward_the_Elder,king of Wessex whose military success against the Danes made it possible for his son Athelstan to become the first king of all England (870-924)
+5333,Edward_the_Martyr Saint_Edward_the_Martyr St._Edward_the_Martyr,King of England who was a son of Edgar; he was challenged for the throne by supporters of his half-brother Ethelred II who eventually murdered him (963-978)
+5334,Edwardian,someone belonging to (or as if belonging to) the era of Edward VII
+5335,Edwards Jonathan_Edwards,American theologian whose sermons and writings stimulated a period of renewed interest in religion in America (1703-1758)
+5336,Edwin,king of Northumbria who was converted to Christianity (585-633)
+5337,Edwy Eadwig,King of England who was renounced by Northumbria in favor of his brother Edgar (died in 959)
+5338,Eelam Tamil_Eelam,the independent state that the Tamil Tigers have fought for
+5339,Egadi_Islands Aegadean_Isles Aegadean_Islands Isole_Egadi Aegates,a group of islands off the west coast of Sicily in the Mediterranean
+5340,Egbert,king of Wessex whose military victories made Wessex the most powerful kingdom in England (died in 839)
+5341,Egeria genus_Egeria,small genus of dioecious tropical aquatic plants
+5342,Eglevsky Andre_Eglevsky,United States ballet dancer (born in Russia) (1917-1977)
+5343,Egretta genus_Egretta,small Old and New World herons
+5344,Egypt Arab_Republic_of_Egypt United_Arab_Republic,a republic in northeastern Africa known as the United Arab Republic until 1971; site of an ancient civilization that flourished from 2600 to 30 BC
+5345,Egyptian,a native or inhabitant of Egypt
+5346,Egyptian,the ancient and now extinct language of Egypt under the Pharaohs; written records date back to 3000 BC
+5347,Egyptian_Empire Egypt,an ancient empire to the west of Israel; centered on the Nile River and ruled by a Pharaoh; figured in many events described in the Old Testament
+5348,Egyptian_cat,a domestic cat of Egypt
+5349,Egyptian_cotton,fine somewhat brownish long-staple cotton grown in Egypt; believed to be derived from sea island cotton or by hybridization with Peruvian cotton
+5350,Egyptian_deity,a deity worshipped by the ancient Egyptians
+5351,Egyptian_grass crowfoot_grass Dactyloctenium_aegypticum,a creeping grass with spikes like fingers
+5352,Egyptian_henbane Hyoscyamus_muticus,poisonous herb whose leaves are a source of hyoscyamine
+5353,Egyptian_monetary_unit,monetary unit in Egypt
+5354,Egyptian_pound pound,the basic unit of money in Egypt; equal to 100 piasters
+5355,Egyptian_vulture Pharaoh's_chicken Neophron_percnopterus,small mostly white vulture of Africa and southern Eurasia
+5356,Egyptologist,an archeologist who specializes in Egyptology
+5357,Egyptology,archeology of ancient Egyptian artifacts
+5358,Ehadhamen,city in Tunisia
+5359,Ehrenberg Ilya_Ehrenberg Ilya_Grigorievich_Ehrenberg,Russian novelist (1891-1967)
+5360,Ehrlich Paul_Ehrlich,German bacteriologist who found a `magic bullet' to cure syphilis and was a pioneer in the study of immunology (1854-1915)
+5361,Eichhornia genus_Eichhornia,water hyacinth; water orchid
+5362,Eichmann Adolf_Eichmann Karl_Adolf_Eichmann,Austrian who became the Nazi official who administered the concentration camps where millions of Jews were murdered during World War II (1906-1962)
+5363,Eiffel Alexandre_Gustave_Eiffel,French engineer who constructed the Eiffel Tower (1832-1923)
+5364,Eiffel_Tower,a wrought iron tower 300 meters high that was constructed in Paris in 1889; for many years it was the tallest man-made structure
+5365,Eigen Manfred_Eigen,German chemist who did research on high-speed chemical reactions (born in 1927)
+5366,Eighteenth_Amendment,an amendment to the Constitution of the United States adopted in 1920; prohibited the manufacture and sale of alcoholic beverages; repealed in 1932
+5367,Eijkman Christiaan_Eijkman,Dutch physician who discovered that beriberi is caused by a nutritional deficiency (1858-1930)
+5368,Eimeriidae family_Eimeriidae,a family of protoctist in the order Coccidia
+5369,Eindhoven,city in southeastern Netherlands noted for electrical industry
+5370,Einstein Albert_Einstein,physicist born in Germany who formulated the special theory of relativity and the general theory of relativity; Einstein also proposed that light consists of discrete quantized bundles of energy (later called photons) (1879-1955)
+5371,Einthoven Willem_Einthoven,Dutch physiologist who devised the first electrocardiograph (1860-1927)
+5372,Eira genus_Eira,a genus of Mustelidae
+5373,Eisenhower Dwight_Eisenhower Dwight_D._Eisenhower Dwight_David_Eisenhower Ike President_Eisenhower,United States general who supervised the invasion of Normandy and the defeat of Nazi Germany; 34th President of the United States (1890-1961)
+5374,Eisenstaedt Alfred_Eisenstaedt,United States photographer (born in Germany) whose unposed documentary photographs created photojournalism (born in 1898)
+5375,Eisenstein Sergei_Eisenstein Sergei_Mikhailovich_Eisenstein,Russian film maker who pioneered the use of montage and is considered among the most influential film makers in the history of motion pictures (1898-1948)
+5376,Ekman Vagn_Walfrid_Ekman,Swedish oceanographer who recognized the role of the Coriolis effect on ocean currents (1874-1954)
+5377,El_Aaium,a town in Morocco near the Atlantic coast
+5378,El_Alamein,a village to the west of Alexandria on the northern coast of Egypt; the scene of a decisive Allied victory over the Germans in 1942
+5379,El_Alamein Al_Alamayn Battle_of_El_Alamein,a pitched battle in World War II (1942) resulting in a decisive Allied victory by British troops under Montgomery over German troops under Rommel
+5380,El_Cid,the hero of a Spanish epic poem from the 12th century
+5381,El_Dorado eldorado,an imaginary place of great wealth and opportunity; sought in South America by 16th-century explorers
+5382,El_Greco Greco Domenikos_Theotocopoulos,Spanish painter (born in Greece) remembered for his religious works characterized by elongated human forms and dramatic use of color (1541-1614)
+5383,El_Libertador,a mountain in the Andes in Argentina (22,047 feet high)
+5384,El_Misti,the world's 2nd largest active volcano; located in the Andes in southern Peru
+5385,El_Muerto,a mountain peak in the Andes on the border between Argentina and Chile (21,457 feet high)
+5386,El_Nino,(oceanography) a warm ocean current that flows along the equator from the date line and south off the coast of Ecuador at Christmas time
+5387,El_Nino,the Christ child
+5388,El_Nino_southern_oscillation,a more intense El Nino that occurs every few years when the welling up of cold nutrient-rich water does not occur; kills plankton and fish and affects weather patterns
+5389,El_Paso,a city in western Texas on the Mexican border; located on the northern bank of the Rio Grande across from the Mexican city of Juarez
+5390,El_Salvador Republic_of_El_Salvador Salvador,a republic on the Pacific coast of Central America
+5391,El_Salvadoran_monetary_unit,monetary unit in El Salvador
+5392,Elaeagnaceae family_Elaeagnaceae oleaster_family,shrubs or small trees often armed
+5393,Elaeagnus genus_Elaeagnus,oleaster
+5394,Elaeis genus_Elaeis,oil palms
+5395,Elaeocarpaceae family_Elaeocarpaceae elaeocarpus_family,genus of trees and shrubs widely distributed in warm regions some yielding useful timber; in some classifications included in the family Santalaceae
+5396,Elaeocarpus genus_Elaeocarpus,type genus of the family Elaeocarpaceae
+5397,Elagatis genus_Elagatis,a genus of Carangidae
+5398,Elam Susiana,an ancient country in southwestern Asia to the east of the Tigris River (in what is modern Iran); was known for its warlike people
+5399,Elamite,a member of an ancient warlike people living in Elam east of Babylonia as early as 3000 BC
+5400,Elamitic Elamite Susian,an extinct ancient language of unknown affinities; spoken by the Elamites
+5401,Elanoides genus_Elanoides,a genus of kites
+5402,Elanus genus_Elanus,a genus of small kites of both Old and New Worlds
+5403,Elaphe genus_Elaphe,North American rat snakes
+5404,Elaphurus genus_Elaphurus,a genus of Cervidae
+5405,Elapidae family_Elapidae,cobras; kraits; mambas; coral snakes; Australian taipan and tiger snakes
+5406,Elasmobranchii subclass_Elasmobranchii Selachii subclass_Selachii,sharks; rays; dogfishes; skates
+5407,Elastoplast,an elastic adhesive bandage for covering cuts or wounds
+5408,Elateridae family_Elateridae,click beetles and certain fireflies
+5409,Elbe Elbe_River,a river in central Europe that arises in northwestern Czechoslovakia and flows northward through Germany to empty into the North Sea
+5410,Eleanor_of_Aquitaine,queen of France as the wife of Louis VII; that marriage was annulled in 1152 and she then married Henry II and became Queen of England (1122-1204)
+5411,Elector,any of the German princes who were entitled to vote in the election of new emperor of the Holy Roman Empire
+5412,Electra,(Greek mythology) the daughter of Agamemnon and Clytemnestra; persuaded her brother (Orestes) to avenge Agamemnon's death by helping her to kill Clytemnestra and her lover (Aegisthus)
+5413,Electra_complex,a complex of females; sexual attraction to the father
+5414,Electrophoridae family_Electrophoridae,small family comprising the electric eels
+5415,Electrophorus genus_Electrophorus,type genus of the family Electrophoridae; electric eels
+5416,Eleocharis genus_Eleocharis,sedges having dense spikes of flowers and leaves reduced to basal sheaths
+5417,Eleotridae family_Eleotridae,sleepers
+5418,Elephantidae family_Elephantidae,elephants
+5419,Elephantopus genus_Elephantopus,perennial American herb
+5420,Elephas genus_Elephas,type genus of the family Elephantidae
+5421,Elettaria genus_Elettaria,cardamom
+5422,Eleusine genus_Eleusine,annual and perennial grasses of savannas and upland grasslands
+5423,Eleutherodactylus genus_Eleutherodactylus,completely terrestrial robber frogs
+5424,Elgar Sir_Edward_Elgar Sir_Edward_William_Elgar,British composer of choral and orchestral works including two symphonies as well as songs and chamber music and music for brass band (1857-1934)
+5425,Elgin_Marbles,a collection of classical Greek marble sculptures and fragments of architecture created by Phidias; chiefly from the Parthenon in Athens
+5426,Elijah,a Hebrew prophet in the Old Testament who opposed the worship of idols; he was persecuted for rebuking Ahab and Jezebel (king and queen of Israel); he was taken up to heaven in a chariot of fire (circa 9th century BC)
+5427,Eliomys genus_Eliomys,lerots
+5428,Eliot George_Eliot Mary_Ann_Evans,British writer of novels characterized by realistic analysis of provincial Victorian society (1819-1880)
+5429,Eliot T._S._Eliot Thomas_Stearns_Eliot,British poet (born in the United States) who won the Nobel prize for literature; his plays are outstanding examples of modern verse drama (1888-1965)
+5430,Elizabeth Elizabeth_I,Queen of England from 1558 to 1603; daughter of Henry VIII and Anne Boleyn; she succeeded Mary I (who was a Catholic) and restored Protestantism to England; during her reign Mary Queen of Scots was executed and the Spanish Armada was defeated; her reign was marked by prosperity and literary genius (1533-1603)
+5431,Elizabeth Elizabeth_II,daughter of George VI who became the Queen of England and Northern Ireland in 1952 on the death of her father (1926-); "Elizabeth II is the head of state in Great Britain"
+5432,Elizabeth_River,a short river in southeastern Virginia flowing between Norfolk and Portsmouth into Hampton Roads
+5433,Elizabethan,a person who lived during the reign of Elizabeth I; "William Shakespeare was an Elizabethan"
+5434,Elizabethan_age,a period in British history during the reign of Elizabeth I in the 16th century; an age marked by literary achievement and domestic prosperity
+5435,Elli,(Norse mythology) goddess of old age who defeated Thor in a wrestling match
+5436,Ellington Duke_Ellington Edward_Kennedy_Ellington,United States jazz composer and piano player and bandleader (1899-1974)
+5437,Elliott's_goldenrod,a variety of goldenrod
+5438,Ellis_Island,an island in New York Bay that was formerly the principal immigration station for the United States; "some twelve millions immigrants passed through Ellis Island"
+5439,Ellison Ralph_Ellison Ralph_Waldo_Ellison,United States novelist who wrote about a young Black man and his struggles in American society (1914-1994)
+5440,Ellsworth Oliver_Ellsworth,United States jurist and the third chief justice of the United States Supreme Court (1745-1807)
+5441,Elmont,a town on Long Island in New York; site of Belmont Park
+5442,Elodea genus_Elodea pondweed ditchmoss,submerged freshwater perennials
+5443,Elopidae family_Elopidae,tarpons and ladyfishes
+5444,Elops genus_Elops,type genus of the Elopidae: tenpounder
+5445,Elul Ellul,the twelfth month of the civil year; the sixth month of the ecclesiastical year in the Jewish calendar (in August and September)
+5446,Elymus genus_Elymus,tall tufted perennial grasses (such as lyme grass or wild rye)
+5447,Elysium,a place or condition of ideal happiness
+5448,Elysium Elysian_Fields,(Greek mythology) the abode of the blessed after death
+5449,Ember_Day,a day set aside for fasting and prayer
+5450,Emberiza genus_Emberiza,Old World buntings
+5451,Emberizidae subfamily_Emberizidae subfamily_Emberizinae,buntings and some New World sparrows
+5452,Embioptera order_Embioptera Embiodea order_Embiodea,web spinners
+5453,Embiotocidae family_Embiotocidae,viviparous percoid fishes comprising the surf fishes
+5454,Embothrium genus_Embothrium,small genus of South American evergreen shrubs or small trees with long willowy branches and flowers in flamboyant terminal clusters
+5455,Emergency_Alert_System EAS,a federal warning system that is activated by FEMA; enables the President to take over the United States airwaves to warn the whole country of major catastrophic events
+5456,Emerson Ralph_Waldo_Emerson,United States writer and leading exponent of transcendentalism (1803-1882)
+5457,Emetrol,trade name for an antiemetic drug that has a mint flavor
+5458,Emile,the boy whose upbringing was described by Jean-Jacques Rousseau
+5459,Emilia genus_Emilia,tropical African herbs
+5460,Emilia-Romagna,a region of north central Italy on the Adriatic
+5461,Emmanthe genus_Emmanthe,one species: yellow bells
+5462,Emmenthal Emmental Emmenthaler Emmentaler,Swiss cheese with large holes
+5463,Emmy,an annual award by the Academy of Television Arts and Sciences for outstanding achievements in television
+5464,Empedocles,Greek philosopher who taught that all matter is composed of particles of fire and water and air and earth (fifth century BC)
+5465,Empetraceae family_Empetraceae crowberry_family,heathlike shrubs
+5466,Empetrum genus_Empetrum,crowberries
+5467,Empire,an eating apple that somewhat resembles a McIntosh; used as both an eating and a cooking apple
+5468,Empire_State_Building,a skyscraper built in New York City in 1931; 1250 feet tall
+5469,Emydidae family_Emydidae,box and water turtles
+5470,Encelia genus_Encelia,genus of shrubs of southwestern United States and Mexico: brittlebush
+5471,Enceliopsis genus_Enceliopsis,small genus of xerophytic herbs of southwestern United States
+5472,Encyclia genus_Encyclia,large genus of epiphytic and lithophytic orchids of tropical and subtropical Americas and West Indies; formerly included in genus Epidendrum
+5473,Endamoeba genus_Endamoeba,the type genus of the family Endamoebidae
+5474,Endamoeba_histolytica,the parasitic ameba that causes amebic dysentery in human beings
+5475,Endamoebidae family_Endamoebidae,a large family of endoparasitic amebas that invade the digestive tract
+5476,Endecott Endicott John_Endecott John_Endicott,born in England; in 1629 he became the founder of the Massachusetts Bay Colony (1588-1665)
+5477,Enderby_Land,a region of Antarctica between Queen Maud Land and Wilkes Land; claimed by Australia
+5478,Endomycetales order_Endomycetales,fungi having a zygote or a single cell developing directly into an ascus
+5479,Enesco Georges_Enesco George_Enescu,Romanian violinist and composer (1881-1955)
+5480,Enets Entsi Entsy Yenisei Yenisei-Samoyed Yeniseian,the Uralic language spoken by the Yeniseian
+5481,Engelmann_spruce Engelmann's_spruce Picea_engelmannii,tall spruce of Rocky Mountains and British Columbia with blue-green needles and acutely conic crown; wood used for rough lumber and boxes
+5482,Engels Friedrich_Engels,socialist who wrote the Communist Manifesto with Karl Marx in 1848 (1820-1895)
+5483,England,a division of the United Kingdom
+5484,English,the discipline that studies the English language and literature
+5485,English English_language,an Indo-European language belonging to the West Germanic branch; the official language of Britain and the United States and most of the commonwealth countries
+5486,English English_people,the people of England
+5487,English side,(sports) the spin given to a ball by striking it on one side or releasing it with a sharp twist
+5488,English_Channel,an arm of the Atlantic Ocean that forms a channel between France and Britain
+5489,English_Civil_War,civil war in England between the Parliamentarians and the Royalists under Charles I; 1644-1648
+5490,English_Revolution Glorious_Revolution Bloodless_Revolution,the revolution against James II; there was little armed resistance to William and Mary in England although battles were fought in Scotland and Ireland (1688-1689)
+5491,English_concertina,a concertina developed in England
+5492,English_department department_of_English,the academic department responsible for teaching English and American literature
+5493,English_elm European_elm Ulmus_procera,broad spreading rough-leaved elm common throughout Europe and planted elsewhere
+5494,English_foxhound,an English breed slightly larger than the American foxhounds originally used to hunt in packs
+5495,English_hawthorn Crataegus_monogyna,European hawthorn having deeply cleft leaves and bright red fruits; widely cultivated in many varieties and often grown as impenetrable hedges; established as an escape in eastern North America
+5496,English_horn cor_anglais,a double-reed woodwind instrument similar to an oboe but lower in pitch
+5497,English_iris Iris_xiphioides,bulbous iris native to the Pyrenees; widely cultivated for its large delicate flowers in various colors except yellow
+5498,English_lady_crab Portunus_puber,crab of the English coasts
+5499,English_lavender Lavandula_angustifolia Lavandula_officinalis,aromatic Mediterranean shrub widely cultivated for its lilac flowers which are dried and used in sachets
+5500,English_muffin,round, raised muffin cooked on a griddle; usually split and toasted before being eaten
+5501,English_person,a native or inhabitant of England
+5502,English_plantain narrow-leaved_plantain ribgrass ribwort ripple-grass buckthorn Plantago_lanceolata,an Old World plantain with long narrow ribbed leaves widely established in temperate regions
+5503,English_primrose Primula_vulgaris,plant of western and southern Europe widely cultivated for its pale yellow flowers
+5504,English_saddle English_cavalry_saddle,a saddle having a steel cantle and pommel and no horn
+5505,English_setter,an English breed having a plumed tail and a soft silky coat that is chiefly white
+5506,English_sole lemon_sole Parophrys_vitulus,popular pale brown food flatfish of the Pacific coast of North America
+5507,English_sparrow house_sparrow Passer_domesticus,small hardy brown-and-grey bird native to Europe
+5508,English_springer English_springer_spaniel,a breed having typically a black-and-white coat
+5509,English_teacher English_professor,someone who teaches English
+5510,English_toy_spaniel,British breed having a long silky coat and rounded head with a short upturned muzzle
+5511,English_walnut,nut with a wrinkled two-lobed seed and hard but relatively thin shell; widely used in cooking
+5512,English_walnut English_walnut_tree Circassian_walnut Persian_walnut Juglans_regia,Eurasian walnut valued for its large edible nut and its hard richly figured wood; widely cultivated
+5513,Englishman,a man who is a native or inhabitant of England
+5514,Englishwoman,a woman who is a native or inhabitant of England
+5515,Engraulidae family_Engraulidae,anchovies
+5516,Engraulis genus_Engraulis,type genus of the family Engraulidae
+5517,Enhydra genus_Enhydra,sea otters
+5518,Enid,a town in north central Oklahoma
+5519,Eniwetok,an atoll in the Marshall Islands; site of an amphibious assault in World War II; later used temporarily by the United States to test atomic bombs
+5520,Eniwetok,World War II (February 1944); American infantry landed and captured a Japanese stronghold
+5521,Enki,water god and god of wisdom; counterpart of the Akkadian Ea
+5522,Enkidu,legendary friend of Gilgamish
+5523,Enlightenment Age_of_Reason,a movement in Europe from about 1650 until 1800 that advocated the use of reason and individualism instead of tradition and established doctrine; "the Enlightenment brought about many humanitarian reforms"
+5524,Enlil En-lil,god of the air and king of the Sumerian gods
+5525,Enovid,trade name for an oral contraceptive containing mestranol and norethynodrel
+5526,Ensete genus_Ensete,Old World tropical herbs: Abyssinian bananas
+5527,Ensis genus_Ensis,razor clams
+5528,Entandrophragma genus_Entandrophragma,cedar mahogany trees
+5529,Entebbe,a town in southern Uganda on Lake Victoria; site of an international airport (where in 1976 Israeli commandos rescued hostages held aboard a plane by Palestinian hijackers)
+5530,Entelea genus_Entelea,a genus of evergreen shrub that grows in New Zealand
+5531,Enterobacteriaceae family_Enterobacteriaceae,a large family of Gram-negative rod-shaped bacteria of the order Eubacteriales
+5532,Enterobius genus_Enterobius,pinworms
+5533,Enterolobium genus_Enterolobium,small genus of tropical American timber trees closely allied to genus Albizia
+5534,EntleBucher,the smallest of the Sennenhunde
+5535,Entoloma genus_Entoloma,agarics with pink spores but lacking both volva and annulus (includes some that are poisonous)
+5536,Entoloma_aprile,an agaric with a dark brown conical cap; fruits in early spring
+5537,Entoloma_lividum Entoloma_sinuatum,a deadly poisonous agaric; a large cap that is first white (livid or lead-colored) and then turns yellowish or tan
+5538,Entolomataceae family_Entolomataceae,a family of fungi belonging to the order Agaricales
+5539,Entomophthora genus_Entomophthora,type genus of the Entomophthoraceae; fungi parasitic on insects
+5540,Entomophthoraceae family_Entomophthoraceae,mostly parasitic lower fungi that typically develop in the bodies of insects
+5541,Entomophthorales order_Entomophthorales,coextensive with the family Entomophthoraceae
+5542,Entomostraca subclass_Entomostraca,in some older classifications includes the Branchiopoda and Copepoda and Ostracoda and Cirripedia; no longer in technical use
+5543,Entoprocta phylum_Entoprocta Endoprocta,sometimes considered a subphylum of Bryozoa
+5544,Environmental_Protection_Agency EPA E.P.A.,an independent federal agency established to coordinate programs aimed at reducing pollution and protecting the environment
+5545,Eocene Eocene_epoch,from 58 million to 40 million years ago; presence of modern mammals
+5546,Eolithic_Age Eolithic,the earliest part of the Stone Age marked by the earliest signs of human culture
+5547,Eos,(Greek mythology) the winged goddess of the dawn in ancient mythology; daughter of Hyperion; identified with Roman Aurora
+5548,Epacridaceae family_Epacridaceae epacris_family,Australasian shrubs or small trees
+5549,Ephedraceae family_Ephedraceae,ephedras: in some classifications included in the Gnetaceae
+5550,Ephemeridae family_Ephemeridae,mayflies
+5551,Ephemeroptera order_Ephemeroptera Ephemerida order_Ephemerida,mayflies
+5552,Ephesian,a resident of the ancient Greek city of Ephesus
+5553,Ephestia genus_Ephestia,small moths whose larvae spin silken tunnels and feed on stored food products
+5554,Ephesus,an ancient Greek city on the western shore of Asia Minor in what is now Turkey; site of the Temple of Artemis; was a major trading center and played an important role in early Christianity
+5555,Ephesus Council_of_Ephesus,the third ecumenical council in 431 which declared Mary as mother of God and condemned Pelagius
+5556,Ephippidae family_Ephippidae,small family comprising the spadefishes
+5557,Ephippiorhynchus genus_Ephippiorhynchus,saddlebills
+5558,Epictetus,Greek philosopher who was a Stoic (circa 50-130)
+5559,Epicurus,Greek philosopher who believed that the world is a random combination of atoms and that pleasure is the highest good (341-270 BC)
+5560,Epidendrum genus_Epidendrum,large and variable genus of terrestrial or epiphytic or lithophytic orchids of tropical and subtropical Americas; some native to United States
+5561,Epigaea genus_Epigaea,small creeping evergreen shrubs: trailing arbutus
+5562,Epilachna genus_Epilachna,genus of ladybugs native to Mexico and Central America; both larvae and adults feed on plants
+5563,Epilobium genus_Epilobium,large widely distributed genus of herbs and subshrubs of especially western North America and Arctic areas
+5564,Epimedium genus_Epimedium,herbaceous perennials of Mediterranean to India and eastern Asia
+5565,Epimetheus,(Greek mythology) brother of Prometheus; despite Prometheus's warning against gifts from Zeus he accepted Pandora as his wife
+5566,Epinephelus genus_Epinephelus,genus of groupers or sea bass
+5567,Epipactis genus_Epipactis,genus of hardy orchids with leafy-bracted racemes of greenish or purplish irregular flowers
+5568,Epipactis_helleborine,European orchid with spikes of green and pinkish or purplish flowers
+5569,Epiphany Epiphany_of_Our_Lord Twelfth_day Three_Kings'_Day January_6,twelve days after Christmas; celebrates the visit of the three wise men to the infant Jesus
+5570,Epipremnum genus_Epipremnum,small genus of evergreen lianas of southeastern Asia to western Pacific areas
+5571,Epirus,an ancient area on the Ionian Sea that flourished as a kingdom in the 3rd century BC; located in northwestern Greece and southern Albania
+5572,Episcopal_Church Episcopal_Church_of_Scotland,an autonomous branch of the Anglican Communion in Scotland
+5573,Episcopal_Church Protestant_Episcopal_Church,United States church that is in communication with the see of Canterbury
+5574,Episcopalian,a member of the Episcopal church
+5575,Episcopalianism,the theological doctrine of church government by bishops
+5576,Epistle,a book of the New Testament written in the form of a letter from an Apostle
+5577,Epistle_of_James James,a New Testament book attributed to Saint James the Apostle
+5578,Epistle_of_Jude Jude,a New Testament book attributed to Saint Jude
+5579,Epistle_of_Paul_the_Apostle_to_Philemon Epistle_to_Philemon Philemon,a New Testament book containing an epistle from Saint Paul to Philemon asking Philemon to forgive the slave for escaping
+5580,Epistle_of_Paul_the_Apostle_to_Titus Epistle_to_Titus Titus,a New Testament book containing Saint Paul's epistle to Titus; contains advice on pastoral matters
+5581,Epistle_of_Paul_the_Apostle_to_the_Colossians Epistle_to_the_Colossians Colossians,a New Testament book containing an epistle from Saint Paul to the Colossians in ancient Phrygia
+5582,Epistle_of_Paul_the_Apostle_to_the_Ephesians Epistle_to_the_Ephesians Ephesians,a New Testament book containing the epistle from Saint Paul to the Ephesians which explains the divine plan for the world and the consummation of this in Christ
+5583,Epistle_of_Paul_the_Apostle_to_the_Galatians Epistle_to_the_Galatians Galatians,a New Testament book containing the epistle from Saint Paul to the Galatians
+5584,Epistle_of_Paul_the_Apostle_to_the_Philippians Epistle_to_the_Philippians Philippians,a New Testament book containing an epistle from Saint Paul to the church at Philippi in Macedonia
+5585,Epistle_of_Paul_the_Apostle_to_the_Romans Epistle_to_the_Romans Romans,a New Testament book containing an exposition of the doctrines of Saint Paul; written in AD 58
+5586,Epistle_to_the_Hebrews Hebrews,a New Testament book traditionally included among the epistle of Saint Paul but now generally considered not to have been written by him
+5587,Epona,(possibly Roman mythology) Celtic goddess of horses and mules and asses
+5588,Epsilon_Aurigae,the largest known star
+5589,Epsom_salts,(used with a singular noun) hydrated magnesium sulfate used as a laxative
+5590,Epsom_salts bitter_salts,hydrated magnesium sulfate that is taken orally to treat heartburn and constipation and injected to prevent seizures
+5591,Epstein Jacob_Epstein Sir_Jacob_Epstein,British sculptor (born in the United States) noted for busts and large controversial works (1880-1959)
+5592,Epstein-Barr_virus EBV,the herpes virus that causes infectious mononucleosis; associated with specific cancers in Africa and China
+5593,Eptesicus genus_Eptesicus,a genus of Vespertilionidae
+5594,Equatorial_Guinea Republic_of_Equatorial_Guinea Spanish_Guinea,a country of west central Africa (including islands in the Gulf of Guinea); became independent from Spain in 1968
+5595,Equetus genus_Equetus,drumfish
+5596,Equidae family_Equidae,horses; asses; zebras; extinct animals
+5597,Equisetaceae family_Equisetaceae horsetail_family,sole surviving family of the Equisetales: fern allies
+5598,Equisetales order_Equisetales,lower tracheophytes in existence since the Devonian
+5599,Equisetum genus_Equisetum,horsetails; coextensive with the family Equisetaceae
+5600,Equus genus_Equus,type genus of the Equidae: only surviving genus of the family Equidae
+5601,Eragrostis genus_Eragrostis,annual or perennial grasses of tropics and subtropics
+5602,Eranthis genus_Eranthis,winter aconite
+5603,Erasmus Desiderius_Erasmus Gerhard_Gerhards Geert_Geerts,Dutch humanist and theologian who was the leading Renaissance scholar of northern Europe; although his criticisms of the Roman Catholic Church led to the Reformation, he opposed violence and condemned Martin Luther (1466-1536)
+5604,Erastianism Byzantinism Caesaropapism,the doctrine that the state is supreme over the church in ecclesiastical matters
+5605,Erato,(Greek mythology) the Muse of lyric and love poetry
+5606,Eratosthenes,Greek mathematician and astronomer who estimated the circumference of the earth and the distances to the Moon and sun (276-194 BC)
+5607,Erb's_palsy Erb-Duchenne_paralysis,paralysis of the arm resulting from injury to the brachial plexus (usually during childbirth)
+5608,Ercilla genus_Ercilla,a genus of evergreen climbers
+5609,Erebus,(Greek mythology) Greek god of darkness who dwelt in the underworld; son of Chaos; brother of Nox; father of Aether and Day
+5610,Ereshkigal Eresh-kigal Ereshkigel,goddess of death and consort of Nergal
+5611,Erethizon genus_Erethizon,a genus of Erethizontidae
+5612,Erethizontidae family_Erethizontidae,New World arboreal porcupines
+5613,Eretmochelys genus_Eretmochelys,hawksbills
+5614,Erewhon,a satirical novel written by Samuel Butler (1872) describing a fictitious land
+5615,Erianthus genus_Erianthus,genus of reedlike grasses having spikes crowded in a panicle covered with long silky hairs
+5616,Ericaceae family_Ericaceae heath_family,heathers
+5617,Ericales order_Ericales,Ericaceae; Clethraceae; Diapensiaceae; Epacridaceae; Lennoaceae; Pyrolaceae; Monotropaceae
+5618,Eridanus,a constellation in the southern hemisphere near Fornax and Cetus
+5619,Erie,a member of an Iroquoian people formerly living on the south shore of Lake Erie in northern Ohio and northwest Pennsylvania and western New York
+5620,Erie,a port city on Lake Erie in northwestern Pennsylvania
+5621,Erie_Canal,an artificial waterway connecting the Hudson river at Albany with Lake Erie at Buffalo; built in the 19th century; now part of the New York State Barge Canal
+5622,Erigeron genus_Erigeron,cosmopolitan genus of usually perennial herbs with flowers that resemble asters; leaves occasionally (especially formerly) used medicinally
+5623,Erignathus genus_Erignathus,bearded seals
+5624,Erin,an early name of Ireland that is now used in poetry
+5625,Erinaceidae family_Erinaceidae,true hedgehogs
+5626,Erinaceus genus_Erinaceus,type genus of the family Erinaceidae: hedgehogs
+5627,Eriobotrya genus_Eriobotrya,Asiatic evergreen fruit trees
+5628,Eriocaulaceae family_Eriocaulaceae pipewort_family,chiefly tropical aquatic or bog herbs: pipeworts
+5629,Eriocaulon genus_Eriocaulon,type genus of the Eriocaulaceae: rushlike aquatic or marginal perennials usually found in shallow waters of acid lakes and pools and bogs
+5630,Eriodictyon genus_Eriodictyon,small genus of evergreen shrubs of southwestern United States and Mexico
+5631,Eriophorum genus_Eriophorum,cotton grass
+5632,Eriophyllum genus_Eriophyllum,genus of hairy herbs and shrubs of western North America
+5633,Eriosoma genus_Eriosoma,woolly aphids
+5634,Eris,(Greek mythology) goddess of discord; sister of Ares
+5635,Erithacus genus_Erithacus,Old World thrushes
+5636,Eritrea State_of_Eritrea,an African country to the north of Ethiopia on the Red Sea; achieved independence from Ethiopia in 1993
+5637,Eritrean,a native or inhabitant of Eritrea
+5638,Erlang,a unit of traffic intensity in a telephone system
+5639,Erlenmeyer Richard_August_Carl_Emil_Erlenmeyer,German chemist (1825-1909)
+5640,Erlenmeyer_flask,a conical flask with a wide base and narrow neck
+5641,Ernst Max_Ernst,painter (born in Germany, resident of France and the United States) who was a cofounder of dadaism; developed the technique of collage (1891-1976)
+5642,Erodium genus_Erodium,geraniums of Europe and South America and Australia especially mountainous regions
+5643,Erolia genus_Erolia,a genus of Scolopacidae
+5644,Eros,(Greek mythology) god of love; son of Aphrodite; identified with Roman Cupid
+5645,Eruca genus_Eruca,annual to perennial herbs of the Mediterranean region
+5646,Erving Julius_Erving Julius_Winfield_Erving Dr._J,United States basketball forward (born in 1950)
+5647,Eryngium genus_Eryngium,large genus of decorative plants with thistlelike flower heads; cosmopolitan in distribution
+5648,Erysimum genus_Erysimum,large genus of annual or perennial herbs some grown for their flowers and some for their attractive evergreen leaves; Old World and North America
+5649,Erysiphaceae family_Erysiphaceae,family of fungi parasitic mostly on leaves; includes powdery mildews
+5650,Erysiphales order_Erysiphales,saprophytic and parasitic fungi that live on plants
+5651,Erysiphe genus_Erysiphe,genus of powdery mildews
+5652,Erythrocebus genus_Erythrocebus,patas
+5653,Erythronium genus_Erythronium,perennial bulbous herbs most of northern United States: dogtooth violet; adder's tongue; trout lily; fawn lily
+5654,Erythroxylaceae family_Erythroxylaceae,a family of plants of order Geraniales; have drupaceous fruit
+5655,Erythroxylon genus_Erythroxylon Erythroxylum genus_Erythroxylum,a large genus of South American shrubs and small trees of the family Erythroxylaceae
+5656,Erythroxylon_coca coca coca_plant,a South American shrub whose leaves are chewed by natives of the Andes; a source of cocaine
+5657,Erythroxylon_truxiuense,a South American shrub whose leaves are a source of cocaine
+5658,Esaki Leo_Esaki,physicist honored for advances in solid state electronics (born in Japan in 1925)
+5659,Esau,(Old Testament) the eldest son of Isaac who would have inherited the covenant that God made with Abraham and that Abraham passed on to Isaac; he traded his birthright to his twin brother Jacob for a mess of pottage
+5660,Escherichia_coli E._coli,a species of bacterium normally present in intestinal tract of humans and other animals; sometimes pathogenic; can be a threat to food safety
+5661,Eschrichtiidae family_Eschrichtiidae,comprising only the grey whales
+5662,Eschrichtius genus_Eschrichtius,type and sole genus of the Eschrichtiidae
+5663,Eschscholtzia genus_Eschscholtzia,showy herbs of western North America
+5664,Eskimo Esquimau,the language spoken by the Eskimo
+5665,Eskimo Esquimau Inuit,a member of a people inhabiting the Arctic (northern Canada or Greenland or Alaska or eastern Siberia); the Algonquians called them Eskimo (`eaters of raw flesh') but they call themselves the Inuit (`the people')
+5666,Eskimo-Aleut Eskimo-Aleut_language,the family of languages that includes Eskimo and Aleut
+5667,Eskimo_curlew Numenius_borealis,New World curlew that breeds in northern North America
+5668,Eskimo_dog husky,breed of heavy-coated Arctic sled dog
+5669,Esocidae family_Esocidae,pikes; pickerels; muskellunges
+5670,Esox genus_Esox,type and only genus of the family Esocidae
+5671,Espagnole sauce_Espagnole,brown sauce with tomatoes and a caramelized mixture of minced carrots and onions and celery seasoned with Madeira
+5672,Esperantido,an artificial language based on Esperanto and Ido
+5673,Esperanto,an artificial language based as far as possible on words common to all the European languages
+5674,Espoo,a city in southern Finland
+5675,Esquire Esq,a title of respect for a member of the English gentry ranking just below a knight; placed after the name
+5676,Esselen,a member of a North American Indian people living on the California coast near Monterey
+5677,Esselen,the Hokan language spoken by the Esselen
+5678,Essen,a city in western Germany; industrial center of the Ruhr
+5679,Essene,a member of an ascetic Jewish sect around the time of Jesus
+5680,Essex,a county in southeastern England on the North Sea and the Thames estuary
+5681,Estates_General,assembly of the estates of all France; last meeting in 1789
+5682,Esther,(Old Testament) a beautiful Jewess chosen by the king of Persia to be his queen; she stopped a plot to massacre all the Jews in Persia (an event celebrated by Jews as the feast of Purim)
+5683,Esther Book_of_Esther,an Old Testament book telling of a beautiful Jewess who became queen of Persia and saved her people from massacre
+5684,Estonia Esthonia Republic_of_Estonia,a republic in northeastern Europe on the Baltic Sea
+5685,Estonian Esthonian,the official language of Estonia; belongs to the Baltic-Finnic family of languages
+5686,Estonian_monetary_unit,monetary unit in Estonia
+5687,Estrilda genus_Estrilda,avadavats
+5688,Ethelbert,Anglo-Saxon king of Kent who was converted to Christianity by Saint Augustine; codified English law (552-616)
+5689,Ethelred Ethelred_I,king of Wessex and Kent and elder brother of Alfred; Alfred joined Ethelred's battle against the invading Danes and succeeded him on his death (died in 871)
+5690,Ethelred Ethelred_II Ethelred_the_Unready,king of the English who succeeded to the throne after his half-brother Edward the Martyr was murdered; he struggled unsuccessfully against the invading Danes (969-1016)
+5691,Ethiopia Federal_Democratic_Republic_of_Ethiopia Yaltopya Abyssinia,Ethiopia is a republic in northeastern Africa on the Red Sea; formerly called Abyssinia
+5692,Ethiopian,a native or inhabitant of Ethiopia
+5693,Ethiopian_monetary_unit,monetary unit in Ethiopia
+5694,Etna Mount_Etna Mt_Etna,an inactive volcano in Sicily; last erupted in 1961; the highest volcano in Europe (10,500 feet)
+5695,Eton_College,a public school for boys founded in 1440; located in Berkshire
+5696,Eton_collar,broad white collar worn over the lapels of a jacket
+5697,Eton_jacket,a jacket hanging to the waist and cut square at the bottom
+5698,Etonian,a student enrolled in (or graduated from) Eton College
+5699,Etropus genus_Etropus,a genus of Bothidae
+5700,Etruria,an ancient country in central Italy; assimilated by the Romans by about 200 BC
+5701,Etruscan,a native or inhabitant of ancient Etruria; the Etruscans influenced the Romans (who had suppressed them by about 200 BC)
+5702,Euarctos genus_Euarctos,American black bears; in some classifications not a separate genus from Ursus
+5703,Euascomycetes subclass_Euascomycetes,category not used in many classification systems
+5704,Eubacteriales order_Eubacteriales,one of two usually recognized orders of true bacteria; Gram-positive spherical or rod-shaped forms; some are motile; in some classifications considered an order of Schizomycetes
+5705,Eubryales order_Eubryales,mosses with perennial erect gametophores and stems with rows of leaves and drooping capsules
+5706,Eucarya genus_Eucarya Fusanus genus_Fusanus,quandong trees
+5707,Eucinostomus genus_Eucinostomus,a genus of Gerreidae
+5708,Euclid,Greek geometer (3rd century BC)
+5709,Euclid's_axiom Euclid's_postulate Euclidean_axiom,(mathematics) any of five axioms that are generally recognized as the basis for Euclidean geometry
+5710,Euclid's_fifth_axiom parallel_axiom,only one line can be drawn through a point parallel to another line
+5711,Euclid's_first_axiom,a straight line can be drawn between any two points
+5712,Euclid's_fourth_axiom,all right angles are equal
+5713,Euclid's_second_axiom,any terminated straight line can be projected indefinitely
+5714,Euclid's_third_axiom,a circle with any radius can be drawn around any point
+5715,Euclidean_space,a space in which Euclid's axioms and definitions apply; a metric space that is linear and finite-dimensional
+5716,Euderma genus_Euderma,a genus of Vespertilionidae
+5717,Eudyptes genus_Eudyptes,rock hoppers
+5718,Eugene,a city in western Oregon on the Willamette River; site of a university
+5719,Eugene Prince_Eugene_of_Savoy,Austrian general in the service of the Holy Roman Empire during the War of the Spanish Succession (1663-1736)
+5720,Eugenia genus_Eugenia,tropical trees and shrubs with aromatic leaves and often valuable hard wood
+5721,Euglenaceae family_Euglenaceae,considered green algae
+5722,Euglenophyceae class_Euglenophyceae,coextensive with the division Euglenophyta
+5723,Euglenophyta division_Euglenophyta,free-swimming flagellate algae
+5724,Euler Leonhard_Euler,Swiss mathematician (1707-1783)
+5725,Eumeces genus_Eumeces,New World skinks
+5726,Eumenes genus_Eumenes,mason wasps
+5727,Eumetopias genus_Eumetopias,sea lions
+5728,Eumops genus_Eumops,mastiff bats
+5729,Eumycetes class_Eumycetes,category used in some classifications: coextensive with division Eumycota
+5730,Eumycota division_Eumycota,true fungi; eukaryotic heterotrophic walled organisms; distinguished from Myxomycota (funguslike slime molds): comprises subdivisions Mastigomycotina; Zygomycotina; Ascomycotina; Basidiomycotina; Deuteromycotina (imperfect fungi)
+5731,Eunectes genus_Eunectes,anacondas
+5732,Euonymus genus_Euonymus,widely distributed chiefly evergreen shrubs or small trees or vines
+5733,Euopean_hoopoe Upupa_epops,pinkish-brown hoopoe with black-and-white wings
+5734,Eupatorium genus_Eupatorium,large genus of chiefly tropical herbs having heads of white or purplish flowers
+5735,Euphagus genus_Euphagus,a genus of Icteridae
+5736,Euphausia_pacifica,food for jellyfish
+5737,Euphausiacea order_Euphausiacea,small commonly luminescent crustaceans; important element of marine plankton: krill
+5738,Euphorbia genus_Euphorbia,type genus of the Euphorbiaceae: very large genus of diverse plants all having milky juice
+5739,Euphorbiaceae family_Euphorbiaceae spurge_family,a family of plants of order Geraniales
+5740,Euphractus genus_Euphractus,a genus of Dasypodidae
+5741,Euphrates Euphrates_River,a river in southwestern Asia; flows into the Persian Gulf; was important in the development of several great civilizations in ancient Mesopotamia
+5742,Euphrosyne,(Greek mythology) one of the three Graces
+5743,Euplectella genus_Euplectella,a genus of Hyalospongiae
+5744,Euproctis genus_Euproctis,a genus of Lymantriidae
+5745,Eurafrican,a person of mixed European and African descent
+5746,Eurasia,the land mass formed by the continents of Europe and Asia
+5747,Eurasian,a person of mixed European and Asian descent
+5748,Eurasian_badger Meles_meles,a variety of badger native to Europe and Asia
+5749,Eurasian_green_toad Bufo_viridis,Eurasian toad with variable chiefly green coloring
+5750,Eurasian_hamster Cricetus_cricetus,a variety of hamster common to Europe and Asia
+5751,Eurasian_kingfisher Alcedo_atthis,small kingfisher with greenish-blue and orange plumage
+5752,Eurasian_otter Lutra_lutra,otter found in Europe and Asia
+5753,Eurasian_woodcock Scolopax_rusticola,short-legged long-billed migratory Old World woodcock
+5754,Eureka,a town in northwest California on an arm of the Pacific Ocean
+5755,Euripides,one of the greatest tragic dramatists of ancient Greece (480-406 BC)
+5756,Eurobabble,the jargon of European community documents and regulations
+5757,Eurocentrism,belief in the preeminence of Europe and the Europeans
+5758,Eurocurrency,currency of the major financial and industrial countries held in those countries for the purpose of lending and borrowing
+5759,Eurodollar,a United States dollar deposited in a European bank and used as an international currency to finance trade
+5760,Euronithopoda suborder_Euronithopoda euronithopod Ornithopoda suborder_Ornithopoda,widespread group including duck-billed dinosaurs and their early relatives (hadrosaurs, trachodon and iguanodon)
+5761,Europa,the 4th largest of Jupiter's satellites; covered with a smooth shell of frozen water
+5762,Europan,an artificial language proposed as an auxiliary European language
+5763,Europe,the 2nd smallest continent (actually a vast peninsula of Eurasia); the British use `Europe' to refer to all of the continent except the British Isles
+5764,Europe,the nations of the European continent collectively; "the Marshall Plan helped Europe recover from World War II"
+5765,European,a native or inhabitant of Europe
+5766,European_Central_Bank,the central bank of those members of the European Union who share a common currency; "The European Central Bank is Europe's equivalent of the Federal Reserve"
+5767,European_Russia,the part of Russia that is part of Europe
+5768,European_Union EU European_Community EC European_Economic_Community EEC Common_Market Europe,an international organization of European countries formed after World War II to reduce trade barriers and increase cooperation among its members; "he tried to take Britain into the Europen Union"
+5769,European_ash common_European_ash Fraxinus_excelsior,tall ash of Europe to the Caucasus having leaves shiny dark-green above and pale downy beneath
+5770,European_beggar-ticks trifid_beggar-ticks trifid_bur_marigold Bidens_tripartita,bur marigold of temperate Eurasia
+5771,European_bittern Botaurus_stellaris,a kind of bittern
+5772,European_black_grouse heathfowl Lyrurus_tetrix,large northern European grouse that is black with a lyre-shaped tail
+5773,European_bog_asphodel Narthecium_ossifragum,of western Europe: Scandinavia to northern Spain and Portugal
+5774,European_bream Abramis_brama,European freshwater fish having a flattened body and silvery scales; of little value as food
+5775,European_catfish sheatfish Silurus_glanis,large elongated catfish of central and eastern Europe
+5776,European_chestnut sweet_chestnut Spanish_chestnut Castanea_sativa,wild or cultivated throughout southern Europe, northwestern Africa and southwestern Asia
+5777,European_country European_nation,any one of the countries occupying the European continent
+5778,European_cranberry small_cranberry Vaccinium_oxycoccus,small red-fruited trailing cranberry of Arctic and cool regions of the northern hemisphere
+5779,European_creeper Certhia_familiaris,common European brown-and-buff tree creeper with down-curved bill
+5780,European_cuckoo Cuculus_canorus,common cuckoo of Europe having a distinctive two-note call; lays eggs in the nests of other birds
+5781,European_curlew Numenius_arquata,common Eurasian curlew
+5782,European_dewberry Rubus_caesius,creeping European bramble bearing dewberries
+5783,European_dogtooth Erythronium_dens-canis,sturdy European dogtooth with rose to mauve flowers; cultivated in many varieties
+5784,European_fire_salamander Salamandra_salamandra,a kind of European salamander
+5785,European_flatfish Platichthys_flesus,important food fish of Europe
+5786,European_fly_honeysuckle European_honeysuckle Lonicera_xylosteum,cultivated Eurasian shrub with twin yellowish-white flowers and scarlet fruit
+5787,European_gallinule Porphyrio_porphyrio,purple gallinule of southern Europe
+5788,European_goatsucker European_nightjar Caprimulgus_europaeus,Old World goatsucker
+5789,European_hackberry Mediterranean_hackberry Celtis_australis,bright green deciduous shade tree of southern Europe
+5790,European_hare Lepus_europaeus,large hare introduced in North America; does not turn white in winter
+5791,European_hornbeam Carpinus_betulus,medium-sized Old World tree with smooth grey bark and leaves like beech that turn yellow-orange in autumn
+5792,European_house_cricket Acheta_domestica,lives in human dwellings; naturalized in parts of America
+5793,European_ladies'_tresses Spiranthes_spiralis,European orchid having shorter racemes of strongly spiraling snow-white flowers
+5794,European_larch Larix_decidua,tall European tree having a slender conic crown, flat needlelike leaves, and hairy cone scales
+5795,European_lemming Lemmus_lemmus,notable for mass migrations even into the sea where many drown
+5796,European_lobster,similar to but smaller than American lobsters
+5797,European_lobster Homarus_vulgaris,lobster of Atlantic coast of Europe
+5798,European_magpie Pica_pica,a common magpie of Eurasia
+5799,European_nuthatch Sitta_europaea,a kind of nuthatch
+5800,European_parsley_fern mountain_parsley_fern Cryptogramma_crispa,fern of Europe and Asia Minor having short slender rhizome and densely tufted bright green fronds resembling parsley
+5801,European_pasqueflower Pulsatilla_vulgaris Anemone_pulsatilla,European perennial having usually violet or white spring flowers
+5802,European_perch Perca_fluviatilis,a perch native to Europe
+5803,European_plan continental_plan,a hotel plan that provides a continental breakfast daily
+5804,European_rabbit Old_World_rabbit Oryctolagus_cuniculus,common greyish-brown burrowing animal native to southern Europe and northern Africa but introduced elsewhere; widely domesticated and developed in various colors and for various needs; young are born naked and helpless
+5805,European_red_elder red-berried_elder Sambucus_racemosa,Eurasian shrub
+5806,European_roller Coracias_garrulus,common European blue-and-green roller with a reddish-brown back
+5807,European_sandpiper Actitis_hypoleucos,a variety of sandpiper
+5808,European_sanicle Sanicula_Europaea,sanicle of Europe and Asia having white to pale pink flowers
+5809,European_sea_bream Pagellus_centrodontus,food fish of European coastal waters
+5810,European_shrike Lanius_excubitor,a common European butcherbird
+5811,European_silver_fir Christmas_tree Abies_alba,tall timber tree of central and southern Europe having a regular crown and grey bark
+5812,European_smelt sparling,common smelt of Europe
+5813,European_sole Solea_solea,highly valued as food
+5814,European_spider_crab king_crab Maja_squinado,a large spider crab of Europe
+5815,European_swift Apus_apus,common European bird with a shrieking call that nests chiefly about eaves of buildings or on cliffs
+5816,European_toad Bufo_bufo,common toad of Europe
+5817,European_tortoise Testudo_graeca,small land tortoise of southern Europe
+5818,European_turkey_oak turkey_oak Quercus_cerris,large deciduous tree of central and southern Europe and Asia Minor having lanceolate leaves with spiked lobes
+5819,European_water_ouzel Cinclus_aquaticus,a water ouzel of Europe
+5820,European_water_shrew Neomys_fodiens,widely distributed Old World water shrew
+5821,European_white_lily Nymphaea_alba,a water lily with white flowers
+5822,European_wildcat catamountain Felis_silvestris,bushy-tailed wildcat of Europe that resembles the domestic cat and is regarded as the ancestor of the domestic cat
+5823,European_wolf_spider tarantula Lycosa_tarentula,large southern European spider once thought to be the cause of tarantism (uncontrollable bodily movement)
+5824,European_wood_mouse Apodemus_sylvaticus,nocturnal yellowish-brown mouse inhabiting woods and fields and gardens
+5825,European_woolly_thistle Cirsium_eriophorum,woolly thistle of western and central Europe and Balkan Peninsula
+5826,Europeanization Europeanisation,assimilation into European culture
+5827,Europol European_Law_Enforcement_Organisation,police organization for the European Union; aims to improve effectiveness and cooperation among European police forces
+5828,Eurotiales order_Eurotiales Aspergillales order_Aspergillales,order of fungi having a closed ascocarp (cleistothecium) with the asci scattered rather than gathered in a hymenium
+5829,Eurotium genus_Eurotium,a genus of fungi belonging to the order Eurotiales
+5830,Euryale,(Greek mythology) one of the three Gorgons
+5831,Euryale genus_Euryale,basket stars
+5832,Euryalida subclass_Euryalida,basket stars
+5833,Eurydice,(Greek mythology) the wife of Orpheus
+5834,Eurylaimi suborder_Eurylaimi,broadbills
+5835,Eurylaimidae family_Eurylaimidae,coextensive with the suborder Eurylaimi
+5836,Eurypterida order_Eurypterida,extinct aquatic arthropods of the Paleozoic
+5837,Eusebius Eusebius_of_Caesarea,Christian bishop of Caesarea in Palestine; a church historian and a leading early Christian exegete (circa 270-340)
+5838,Eustachian_tube auditory_tube,either of the paired tubes connecting the middle ears to the nasopharynx; equalizes air pressure on the two sides of the eardrum
+5839,Eustachio Bartolommeo_Eustachio,Italian anatomist who was one of the fathers of modern anatomy; noted for descriptions of the ear and the heart (1520-1574)
+5840,Eustoma genus_Eustoma,small genus of herbs of warm regions of southern North America to northern South America
+5841,Eutamias genus_Eutamias,chipmunks of western America and Asia
+5842,Euterpe,(Greek mythology) the Muse of music (or the flute)
+5843,Euterpe genus_Euterpe,a monocotyledonous genus of graceful palm trees in tropical America
+5844,Eutheria subclass_Eutheria,all mammals except monotremes and marsupials
+5845,Euthynnus genus_Euthynnus,a genus of Scombridae
+5846,Evangelical_United_Brethren_Church,a Methodist denomination
+5847,Evangelical_and_Reformed_Church,a Protestant denomination of Calvinist faith
+5848,Evangelist,(when capitalized) any of the spiritual leaders who are assumed to be authors of the Gospels in the New Testament: Matthew, Mark, Luke, and John
+5849,Evans Arthur_Evans Sir_Arthur_John_Evans,British archaeologist who excavated the palace of Knossos in Crete to find what he called Minoan civilization (1851-1941)
+5850,Evans Herbert_McLean_Evans,United States anatomist who identified four pituitary hormones and discovered vitamin E (1882-1971)
+5851,Evansville,a city in southwestern Indiana on the Ohio River
+5852,Eve,(Old Testament) Adam's wife in Judeo-Christian mythology: the first woman and mother of the human race; God created Eve from Adam's rib and placed Adam and Eve in the Garden of Eden
+5853,Evening_Prayer evensong,(Anglican Church) a daily evening service with prayers prescribed in the Book of Common Prayer
+5854,Evenki Ewenki,a member of the people inhabiting an area of northern Mongolia and eastern Siberia
+5855,Everest Mount_Everest Mt._Everest,a mountain in the central Himalayas on the border of Tibet and Nepal; the highest mountain peak in the world (29,028 feet high)
+5856,Everglades,a large subtropical swamp in southern Florida that is noted for its wildlife
+5857,Everglades_National_Park,a national park in Florida containing an immense subtropical wilderness with mangrove swamps and rare birds and wild animals
+5858,Evernia genus_Evernia,lichens of the family Usneaceae having a pendulous or shrubby thallus
+5859,Evers Medgar_Evers Medgar_Wiley_Evers,United States civil rights worker in Mississippi; was killed by a sniper (1925-1963)
+5860,Evert Chris_Evert Chrissie_Evert Christine_Marie_Evert,United States tennis player who won women's singles titles in the United States and at Wimbledon (born in 1954)
+5861,Ewe,a member of a people living in southern Benin and Togo and southeastern Ghana
+5862,Ewe,a Kwa language spoken by the Ewe in Ghana and Togo and Benin
+5863,Ewing's_sarcoma Ewing's_tumor Ewing's_tumour endothelial_myeloma,malignant tumor in bone marrow (usually in the pelvis or in long bones)
+5864,Exacum genus_Exacum,genus of tropical Asiatic and African plants: especially Persian violets
+5865,Exaeretodon genus_Exaeretodon,a genus of reptiles of the division Cynodontia
+5866,Excalibur,the legendary sword of King Arthur
+5867,Excellency,a title used to address dignitaries (such as ambassadors or governors); usually preceded by `Your' or `His' or `Her'; "Your Excellency"
+5868,Exmoor,horned sheep of Devon; valued for mutton
+5869,Exmoor,stocky breed of pony with a fawn-colored nose
+5870,Exocet,a guided missile developed by the French government for use against ships
+5871,Exocoetidae family_Exocoetidae,flying fishes; closely related to the halfbeaks
+5872,Exocycloida order_Exocycloida,flat sea urchins
+5873,Exodus Book_of_Exodus,the second book of the Old Testament: tells of the departure of the Israelites out of slavery in Egypt led by Moses; God gave them the Ten Commandments and the rest of Mosaic law on Mount Sinai during the Exodus
+5874,Exopterygota subclass_Exopterygota Hemimetabola,subclass of insects characterized by gradual and usually incomplete metamorphosis
+5875,Eyck van_Eyck Jan_van_Eyck,Flemish painter who was a founder of the Flemish school of painting and who pioneered modern techniques of oil painting (1390-1441)
+5876,Eyeish,a member of the Caddo people of northeastern Texas
+5877,Eyre Lake_Eyre,a shallow salt lake in south central Australia about 35 feet below sea level; the largest lake in the country and the lowest point on the continent
+5878,Eyre_Peninsula,a peninsula of southern Australia
+5879,Eysenck Hans_Eysenck H._J._Eysenck Hans_Jurgen_Eysenck,a British psychologist (born in Germany) noted for his theories of intelligence and personality and for his strong criticism of Freudian psychoanalysis
+5880,Eysenck_Personality_Inventory EPI,a self-report personality inventory based on Hans Eysenck's factor analysis of personality which assumes three basic factors (the two most important being extraversion to introversion and neuroticism)
+5881,Ezekiel Ezechiel,a Hebrew prophet of the 6th century BC who was exiled to Babylon in 587 BC
+5882,Ezekiel Ezechiel Book_of_Ezekiel,an Old Testament book containing Ezekiel's prophecies of the downfall of Jerusalem and Judah and their subsequent restoration
+5883,Ezra,a Jewish priest and scribe sent by the Persian king to restore Jewish law and worship in Jerusalem
+5884,Ezra Book_of_Ezra,an Old Testament book telling of a rabbi's efforts in the 5th century BC to reconstitute Jewish law and worship in Jerusalem after the Babylonian Captivity
+5885,F f,the 6th letter of the Roman alphabet
+5886,FAQ,a list of questions that are frequently asked (about a given topic) along with their answers
+5887,FICA,a tax on employees and employers that is used to fund the Social Security system
+5888,FORTRAN,a high-level programing language for mathematical and scientific purposes; stands for formula translation
+5889,FORTRAN_program,a program written in FORTRAN
+5890,Faberge Peter_Carl_Faberge,Russian goldsmith noted for creating a series of jeweled and enameled Easter eggs for European royalty (1846-1920)
+5891,Fabian,a member of the Fabian Society in Britain
+5892,Fabian_Society,an association of British socialists who advocate gradual reforms within the law leading to democratic socialism
+5893,Fabiana genus_Fabiana,genus of South and Central American heathlike evergreen shrubs
+5894,Fabianism,socialism to be established by gradual reforms within the law
+5895,Fafnir,(Norse mythology) the Norse dragon that guarded a treasure and was slain by Sigurd
+5896,Fagaceae family_Fagaceae beech_family,chiefly monoecious trees and shrubs: beeches; chestnuts; oaks; genera Castanea, Castanopsis, Chrysolepis, Fagus, Lithocarpus, Nothofagus, Quercus
+5897,Fagales order_Fagales,an order of dicotyledonous trees of the subclass Hamamelidae
+5898,Fagin,a villainous Jew in a novel by Charles Dickens; "Fagin was a fence who trained boys as pickpockets"
+5899,Fagopyrum genus_Fagopyrum,buckwheat; in some classifications included in the genus Polygonum
+5900,Fagus genus_Fagus,beeches
+5901,Fahd Fahd_ibn_Abdel_Aziz_al-Saud,king of Saudi Arabia from 1982 to 2005 (1923-2005)
+5902,Fahrenheit Gabriel_Daniel_Fahrenheit,German physicist who invented the mercury thermometer and developed the scale of temperature that bears his name (1686-1736)
+5903,Fahrenheit_scale,a temperature scale that defines the freezing point of water as 32 degrees and the boiling point of water a 212 degrees
+5904,Fahrenheit_thermometer,a thermometer calibrated in degrees Fahrenheit
+5905,Fairbanks Douglas_Fairbanks Douglas_Elton_Fairbanks Julius_Ullman,United States film actor noted for his swashbuckling roles (1883-1939)
+5906,Fairbanks Douglas_Fairbanks_Jr.,United States film actor; son of Douglas Elton Fairbanks, (1909-2000)
+5907,Faisal Faisal_ibn_Abdel_Aziz_al-Saud,king of Saudi Arabia from 1964 to 1975 (1906-1975)
+5908,Faisalabad Lyallpur,city in northeast Pakistan
+5909,Falange,the Spanish Nazi party under Franco
+5910,Falcatifolium genus_Falcatifolium,sickle pines: dioecious evergreen tropical trees and shrubs having sickle-shaped leaves; similar to Dacrycarpus in habit; Malaysia and Philippines to New Guinea and New Caledonia
+5911,Falco genus_Falco,a genus of Falconidae
+5912,Falconidae family_Falconidae,a family of birds of the order Falconiformes
+5913,Falconiformes order_Falconiformes,chiefly diurnal carnivorous birds having hooked beaks and long talons with opposable hind toe: falcons; hawks; eagles; ospreys; caracaras; vultures
+5914,Falkland_Islands,a group of over 100 islands in the southern Atlantic off the coast of Argentina; a British Crown Colony
+5915,Fall,the lapse of mankind into sinfulness because of the sin of Adam and Eve; "women have been blamed ever since the Fall"
+5916,Fall_of_Man,(Judeo-Christian mythology) when Adam and Eve ate of the fruit of the tree of knowledge of good and evil in the Garden of Eden, God punished them by driving them out of the Garden of Eden and into the world where they would be subject to sickness and pain and eventual death
+5917,Falla Manuel_de_Falla,Spanish composer and pianist (1876-1946)
+5918,Fallopian_tube uterine_tube oviduct,either of a pair of tubes conducting the egg from the ovary to the uterus
+5919,Fallopius Gabriele_Fallopius Fallopio Gabriello_Fallopio,Italian anatomist who first described the Fallopian tubes (1523-1562)
+5920,Fallot Etienne-Louis_Arthur_Fallot,French physician who described cardiac anomalies including Fallot's tetralogy (1850-1911)
+5921,Falstaff Sir_John_Falstaff,a dissolute character in Shakespeare's plays
+5922,Fanconi's_anemia Fanconi's_anaemia congenital_pancytopenia,a rare congenital anemia characterized by pancytopenia and hypoplasia of the bone marrow
+5923,Fang,a Bantu language spoken in Cameroon
+5924,Fanny_Adams,nautical term for tinned meat
+5925,Far_East,a popular expression for the countries of eastern Asia (usually including China and Mongolia and Taiwan and Japan and Korea and Indochina and eastern Siberia)
+5926,Faraday Michael_Faraday,the English physicist and chemist who discovered electromagnetic induction (1791-1867)
+5927,Fargo,largest city in North Dakota; located in eastern North Dakota on the Red river
+5928,Farley_maidenhair Farley_maidenhair_fern Barbados_maidenhair glory_fern Adiantum_tenerum_farleyense,named for a country house in Barbados where it was discovered
+5929,Farm_Credit_System FCS,a cooperative nationwide system of banks and associations providing credit to farmers and related businesses; originally capitalized by the federal government but now owned by its members and borrowers
+5930,Farmer Fannie_Farmer Fannie_Merritt_Farmer,an expert on cooking whose cookbook has undergone many editions (1857-1915)
+5931,Farmer James_Leonard_Farmer,United States civil rights leader who in 1942 founded the Congress of Racial Equality (born in 1920)
+5932,Farmer-Labor_Party,a former minor political party in the United States in the early 20th century
+5933,Farmington,a town in northwestern New Mexico
+5934,Farmington,a residential town in central Connecticut
+5935,Faroe_Islands Faeroe_Islands Faroes Faeroes,a self-governing colony that is a possession of Denmark in the Faroe Islands
+5936,Faroe_Islands Faeroe_Islands Faroes Faeroes,a group of 21 volcanic islands in the North Atlantic between Iceland and the Shetland Islands
+5937,Faroese Faeroese,a Scandinavian language (closely related to Icelandic) that is spoken on the Faroe Islands
+5938,Farouk_I Faruk_I,king of Egypt who in 1952 was ousted by a military coup d'etat (1920-1965)
+5939,Farragut David_Glasgow_Farragut,United States admiral who commanded Union ships during the American Civil War (1801-1870)
+5940,Farrell Eileen_Farrell,United States operatic soprano noted for the clarity and power of her voice (1920-2002)
+5941,Farrell James_Thomas_Farrell,United States writer remembered for his novels (1904-1979)
+5942,Farsi,a person of Iranian descent; "many Farsi emigrated to India near Bombay"
+5943,Fasciola genus_Fasciola,a genus of Fasciolidae
+5944,Fasciolidae family_Fasciolidae,a family of Trematoda
+5945,Fasciolopsis genus_Fasciolopsis,a genus of Fasciolidae
+5946,Fasciolopsis_buski,fluke that is parasitic on humans and swine; common in eastern Asia
+5947,Fast_of_Esther,(Judaism) a minor fast day on Adar 13 commemorates three days that Esther fasted before approaching the Persian king on behalf of the Jewish people; the fast is connected with Purim
+5948,Fast_of_Gedaliah,(Judaism) a minor fast day on Tishri 3 that commemorates the killing of the Jewish governor of Judah
+5949,Fast_of_Tammuz,(Judaism) a minor fast day on Tammuz 17 when the walls of Jerusalem were breached
+5950,Fast_of_Tevet,(Judaism) a minor fast day on Tevet 10 commemorates the beginning of the siege of Jerusalem and has also been proclaimed a memorial day for the six million Jews who died in the Holocaust
+5951,Fast_of_the_Firstborn,(Judaism) a minor fast day on Nissan 14 that is observed only by firstborn males; it is observed on the day before Passover
+5952,Fatah_Revolutionary_Council Fatah-RC Abu_Nidal_Organization ANO Arab_Revolutionary_Brigades Black_September Revolutionary_Organization_of_Socialist_Muslims,a Palestinian international terrorist organization that split from the PLO in 1974; has conducted terrorist attacks in 20 countries; "in the 1980s the Fatah-RC was considered the most dangerous and murderous Palestinian terror group"
+5953,Fatah_Tanzim Tanzim,a terrorist group organized by Yasser Arafat in 1995 as the armed wing of al-Fatah; serves a dual function of violent confrontation with Israel and serves as Arafat's unofficial militia to prevent rival Islamists from usurping leadership
+5954,Father Father-God Fatherhood,God when considered as the first person in the Trinity; "hear our prayers, Heavenly Father"
+5955,Father Padre,`Father' is a term of address for priests in some churches (especially the Roman Catholic Church or the Orthodox Catholic Church); `Padre' is frequently used in the military
+5956,Father's_Day,US: third Sunday in June
+5957,Father_Brown,a Catholic priest who was the hero of detective stories by G. K. Chesterton
+5958,Fatiha Fatihah,the first or opening sura of the Quran which is the central prayer of Islam and is used on all special occasions as well as during the five daily prayers
+5959,Fatima Fatimah,youngest daughter of the prophet Mohammed and wife of the fourth calif Ali; revered especially by Shiite Muslims (606-632)
+5960,Faulkner William_Faulkner William_Cuthbert_Faulkner Falkner William_Falkner,United States novelist (originally Falkner) who wrote about people in the southern United States (1897-1962)
+5961,Fauntleroy Little_Lord_Fauntleroy,an excessively polite and well-dressed boy
+5962,Faunus,(Roman mythology) ancient rural deity; later considered a counterpart of Greek Pan
+5963,Faust Faustus,an alchemist of German legend who sold his soul to Mephistopheles in exchange for knowledge
+5964,Fauve fauvist,a member of a group of French painters who followed fauvism
+5965,Fawkes Guy_Fawkes,English conspirator who was executed for his role in a plot to blow up James I and the Houses of Parliament (1570-1606)
+5966,Fayetteville,a town in central West Virginia on the New River
+5967,Fayetteville,a town in south central North Carolina
+5968,Fayetteville,a university town in northwestern Arkansas in the Ozarks
+5969,February Feb,the month following January and preceding March
+5970,Fechner Gustav_Theodor_Fechner,German physicist who founded psychophysics; derived Fechner's law on the basis of early work by E. H. Weber (1801-1887)
+5971,Fechner's_law Weber-Fechner_law,(psychophysics) the concept that the magnitude of a subjective sensation increases proportional to the logarithm of the stimulus intensity; based on early work by E. H. Weber
+5972,Fedayeen_Saddam Saddam's_Martyrs,a feared paramilitary unit formed in 1995 by young soldiers to serve Saddam Hussein against domestic opponents
+5973,Federal Fed federal_official,any federal law-enforcement officer
+5974,Federal Federal_soldier Union_soldier,a member of the Union Army during the American Civil War
+5975,Federal_Aviation_Administration FAA,an agency in the Department of Transportation that is responsible for the safety of civilian aviation
+5976,Federal_Bureau_of_Investigation FBI,a federal law enforcement agency that is the principal investigative arm of the Department of Justice
+5977,Federal_Bureau_of_Prisons BoP,the law enforcement agency of the Justice Department that operates a nationwide system of prisons and detention facilities to incarcerate inmates sentenced to imprisonment for federal crimes
+5978,Federal_Communications_Commission FCC,an independent government agency that regulates interstate and international communications by radio and television and wire and cable and satellite
+5979,Federal_Deposit_Insurance_Corporation FDIC,a federally sponsored corporation that insures accounts in national banks and other qualified institutions
+5980,Federal_Emergency_Management_Agency FEMA,an independent agency of the United States government that provides a single point of accountability for all federal emergency preparedness and mitigation and response activities
+5981,Federal_Home_Loan_Bank_System,the central credit system for thrift institutions
+5982,Federal_Home_Loan_Mortgage_Corporation Freddie_Mac FHLMC,a corporation authorized by Congress to provide a secondary market for residential mortgages
+5983,Federal_Housing_Administration FHA,the federal agency in the Department of Housing and Urban Development that insures residential mortgages
+5984,Federal_Judiciary,the judiciary of the United States which is responsible for interpreting and enforcing federal laws
+5985,Federal_Law_Enforcement_Training_Center FLETC,a center in the Department of Homeland Security that trains law enforcement professionals for more than seventy federal agencies
+5986,Federal_National_Mortgage_Association Fannie_Mae FNMA,a federally chartered corporation that purchases mortgages
+5987,Federal_Protective_Service FPS,an agency in the General Services Administration that is a security organization to provide a safe environment where Federal agencies can conduct their business
+5988,Federal_Reserve_Bank reserve_bank,one of 12 regional banks that monitor and act as depositories for banks in their region
+5989,Federal_Reserve_Board,the seven-member board governing the Federal Reserve System
+5990,Federal_Reserve_System Federal_Reserve Fed FRS,the central bank of the United States; incorporates 12 Federal Reserve branch banks and all national banks and state-chartered commercial banks and some trust companies; "the Fed seeks to control the United States economy by raising and lowering short-term interest rates and the money supply"
+5991,Federal_Security_Bureau FSB Federal_Security_Service,the internal counterintelligence agency of the Russian Federation and successor to the Soviet KGB; formerly led by Vladimir Putin
+5992,Federal_Trade_Commission FTC,an independent agency of the United States federal government that maintains fair and free competition; enforces federal antitrust laws; educates the public about identity theft
+5993,Federalist,a member of a former political party in the United States that favored a strong centralized federal government
+5994,Federalist_Party American_Federalist_Party Federal_Party,a major political party in the United States in the early 19th century; founded by Alexander Hamilton; favored a strong centralized government
+5995,Fehling's_solution,a liquid solution of copper sulfate and potassium tartrate and sodium hydroxide that is used to test for sugar in the urine; solution turns reddish when sugar is present
+5996,Feifer Jules_Feifer,United States cartoonist who created a sarcastic comic strip (born in 1929)
+5997,Felicia genus_Felicia,genus of tropical African herbs or subshrubs with usually blue flowers
+5998,Felidae family_Felidae,cats; wildcats; lions; leopards; cheetahs; saber-toothed tigers
+5999,Felis genus_Felis,type genus of the Felidae: true cats and most wildcats
+6000,Fellini Federico_Fellini,Italian filmmaker (1920-1993)
+6001,Fennic Finnic Non-Ugric,one of two branches of the Finno-Ugric languages; a family of languages including Finnish and Estonian (but not Hungarian)
+6002,Fenrir,(Norse mythology) an enormous wolf that was fathered by Loki and that killed Odin
+6003,Fentanyl Sublimaze,trade names of a narcotic analgesic that can be inhaled and that acts on the central nervous system and may become addictive; used as a veterinary anesthetic and with other drugs before, during, and after surgery; also used as a nonlethal gas to incapacitate people in hostage situations; also abused as a recreational drug
+6004,Fenusa genus-Fenusa,birch leaf miner
+6005,Feosol,trade name of a drug rich in iron; used to treat some kinds of anemia
+6006,Ferber Edna_Ferber,United States novelist; author of several popular novels (1887-1968)
+6007,Ferdinand King_Ferdinand Ferdinand_of_Aragon Ferdinand_V Ferdinand_the_Catholic,the king of Castile and Aragon who ruled jointly with his wife Isabella; his marriage to Isabella I in 1469 marked the beginning of the modern state of Spain and their capture of Granada from the Moors in 1492 united Spain as one country; they instituted the Spanish Inquisition in 1478 and supported the expedition of Christopher Columbus in 1492 (1452-1516)
+6008,Ferdinand_I,Holy Roman Emperor and king of Hungary and Bohemia (1503-1564)
+6009,Ferdinand_I Ferdinand_the_Great,king of Castile and Leon who achieved control of the Moorish kings of Saragossa and Seville and Toledo (1016-1065)
+6010,Ferdinand_II,Holy Roman Emperor and king of Bohemia and Hungary who waged war against Protestant forces (1578-1637)
+6011,Ferdinand_III,Holy Roman Emperor and king of Hungary and Bohemia who signed the Peace of Westphalia ending the Thirty Years' War (1608-1657)
+6012,Ferdinand_and_Isabella,joint monarchs of Spain; Ferdinand V and Isabella I
+6013,Fergon,trade name of a drug rich in iron; used to treat some types of anemia
+6014,Fermat Pierre_de_Fermat,French mathematician who founded number theory; contributed (with Pascal) to the theory of probability (1601-1665)
+6015,Fermi Enrico_Fermi,Italian nuclear physicist (in the United States after 1939) who worked on artificial radioactivity caused by neutron bombardment and who headed the group that in 1942 produced the first controlled nuclear reaction (1901-1954)
+6016,Fermi-Dirac_statistics,(physics) law obeyed by a systems of particles whose wave function changes when two particles are interchanged (the Pauli exclusion principle applies)
+6017,Ferocactus genus_Ferocactus,genus of nearly globular cacti of Mexico and southwestern United States: barrel cacti
+6018,Ferrara,a city in northern Italy; "in the 13th century Ferrara was a center of Renaissance learning and the arts"
+6019,Ferris_wheel,a vertical rotating mechanism consisting of a large wheel with suspended seats that remain upright as the wheel rotates; provides a ride at an amusement park
+6020,Fertile_Crescent,a geographical area of fertile land in the Middle East stretching in a broad semicircle from the Nile to the Tigris and Euphrates
+6021,Festuca genus_Festuca,a genus of tufted perennial grasses of the family Gramineae
+6022,Feynman Richard_Feynman Richard_Phillips_Feynman,United States physicist who contributed to the theory of the interaction of photons and electrons (1918-1988)
+6023,Fez Fes,a city in north central Morocco; religious center
+6024,Fibonacci_number,a number in the Fibonacci sequence
+6025,Fibonacci_sequence,a sequence of numbers in which each number equals the sum of the two preceding numbers
+6026,Ficus genus_Ficus,large genus of tropical trees or shrubs or climbers including fig trees
+6027,Fiedler Arthur_Fiedler,popular United States conductor (1894-1979)
+6028,Fielding Henry_Fielding,English novelist and dramatist (1707-1754)
+6029,Fields W._C._Fields William_Claude_Dukenfield,United States comedian and film actor (1880-1946)
+6030,Fifth_Amendment,an amendment to the Constitution of the United States that imposes restrictions on the government's prosecution of persons accused of crimes; mandates due process of law and prohibits self-incrimination and double jeopardy; requires just compensation if private property is taken for public use
+6031,Fifth_Avenue,an avenue in Manhattan that separates the east side of Manhattan from the west side
+6032,Fifth_Crusade,a Crusade under papal control from 1218 to 1221 that achieved military victories but failed when dissension arose over accepting the terms they had been offered
+6033,Fifth_Lateran_Council,the council in 1512-1517 that published disciplinary decrees and planned (but did not carry out) a crusade against Turkey
+6034,Fiji Republic_of_Fiji,an independent state within the British Commonwealth located on the Fiji Islands
+6035,Fiji_Islands Fijis,a group of more than 800 islands (100 inhabited) in the southwestern Pacific; larger islands (Viti Levu and Vanua Levu) are of volcanic origin surrounded by coral reefs; smaller islands are coral
+6036,Fiji_dollar,the basic unit of money in Fiji
+6037,Fijian,a native or inhabitant of Fiji
+6038,Fijian,the Oceanic language spoken on Fiji
+6039,Filariidae family_Filariidae,threadlike roundworms
+6040,Filicales order_Filicales Polypodiales order_Polypodiales,true (leptosporangiate) ferns
+6041,Filicopsida class_Filicopsida Filicinae class_Filicinae,ferns
+6042,Filipino,a native or inhabitant of the Philippines
+6043,Fillmore Millard_Fillmore President_Fillmore,elected vice president and became the 13th President of the United States when Zachary Taylor died in office (1800-1874)
+6044,Filoviridae,a family of threadlike RNA viruses that cause diseases in humans and nonhuman primates (monkeys and chimpanzees)
+6045,Financial_Crimes_Enforcement_Network FinCEN,a law enforcement agency of the Treasury Department responsible for establishing and implementing policies to detect money laundering
+6046,Financial_Management_Service,the federal agency in the Treasury Department that manages the government's disbursement and collection systems and provides central accounting and financial reporting
+6047,Fingal's_Cave,a large cave with basaltic pillars on Staffa island in Scotland
+6048,Finger_Lakes,a geographical area in central New York State that is named for a series of narrow glacial lakes that lie parallel in a north-south direction
+6049,Finland Republic_of_Finland Suomi,republic in northern Europe; achieved independence from Russia in 1917
+6050,Finn,a native or inhabitant of Finland
+6051,Finnbogadottir Vigdis_Finnbogadottir,former president of Iceland; first woman to be democratically elected head of state (born in 1930)
+6052,Finnish Suomi,the official language of Finland; belongs to the Baltic Finnic family of languages
+6053,Finnish_monetary_unit,monetary unit in Finland
+6054,Finno-Ugric Finno-Ugrian,a family of Uralic languages indigenous to Scandinavia and Hungary and Russia and western Siberia (prior to the Slavic expansion into those regions)
+6055,Firenze Florence,a city in central Italy on the Arno; provincial capital of Tuscany; center of the Italian Renaissance from 14th to 16th centuries
+6056,Firmiana genus_Firmiana,small genus of Asian trees or shrubs
+6057,First_Amendment,an amendment to the Constitution of the United States guaranteeing the right of free expression; includes freedom of assembly and freedom of the press and freedom of religion and freedom of speech
+6058,First_Crusade,a Crusade from 1096 to 1099; captured Jerusalem and created a theocracy there
+6059,First_Epistle_of_John I_John,the first New Testament epistle traditionally attributed to Saint John the Apostle
+6060,First_Epistle_of_Paul_the_Apostle_to_Timothy First_Epistle_to_Timothy I_Timothy,a New Testament book containing Saint Paul's first epistle to Timothy; contains advice on pastoral matters
+6061,First_Epistle_of_Paul_the_Apostle_to_the_Corinthians First_Epistle_to_the_Corinthians I_Corinthians,a New Testament book containing the first epistle from Saint Paul to the church at Corinth
+6062,First_Epistle_of_Paul_the_Apostle_to_the_Thessalonians First_Epistle_to_the_Thessalonians I_Thessalonians,a New Testament book containing Saint Paul's first epistle to the Thessalonians
+6063,First_Epistle_of_Peter I_Peter,the first New Testament book traditionally attributed to Saint Peter the Apostle
+6064,First_Lateran_Council,the first council of the Western Church held in the Lateran Palace in 1123; focused on church discipline and made plans to recover the Holy Lands from the Muslim `infidels'
+6065,First_Vatican_Council Vatican_I,the Vatican Council in 1869-1870 that proclaimed the infallibility of the pope when speaking ex cathedra
+6066,First_of_October_Antifascist_Resistance_Group GRAPO,an armed wing of the (illegal) Communist Party of Spain; seeks to overthrow the Spanish government and replace it with a Marxist-Leninist regime; "GRAPO is vehemently opposed to the United States"
+6067,Firth J._R._Firth John_Rupert_Firth,English linguist who contributed to linguistic semantics and to prosodic phonology and who was noted for his insistence on studying both sound and meaning in context (1890-1960)
+6068,Firth_of_Clyde,a firth on the southwestern coast of Scotland emptying into the North Channel
+6069,Firth_of_Forth,a large firth on the east coast of Scotland and the estuary of the Forth River; location of Edinburgh
+6070,Fischer Bobby_Fischer Robert_James_Fischer,United States chess master; world champion from 1972 to 1975 (born in 1943)
+6071,Fischer Emil_Hermann_Fischer,German chemist noted for work on synthetic sugars and the purines (1852-1919)
+6072,Fischer Hans_Fischer,German chemist noted for his synthesis of hemin (1881-1945)
+6073,Fischer's_slime_mushroom,a type of slime mushroom
+6074,Fissipedia,in some classifications considered a suborder of Carnivora
+6075,Fissurella genus_Fissurella,type genus of the family Fissurellidae: keyhole limpets
+6076,Fissurellidae family_Fissurellidae,marine limpets
+6077,Fistularia genus_Fistularia,type genus of the family Fistulariidae
+6078,Fistulariidae family_Fistulariidae,cornetfishes
+6079,Fistulina genus_Fistulina,fungi having each pore separate though crowded
+6080,Fistulinaceae family_Fistulinaceae,a family of fungi closely related to the family Polyporaceae except that the tubes on the undersurface of the cap are separate from each other
+6081,Fitzgerald Edward_Fitzgerald,English poet remembered primarily for his free translation of the poetry of Omar Khayyam (1809-1883)
+6082,Fitzgerald Ella_Fitzgerald,United States scat singer (1917-1996)
+6083,Fitzgerald F._Scott_Fitzgerald Francis_Scott_Key_Fitzgerald,United States author whose novels characterized the Jazz Age in the United States (1896-1940)
+6084,Flacourtia genus_Flacourtia,often spiny trees or shrubs of tropical Asia and Africa
+6085,Flacourtiaceae family_Flacourtiaceae flacourtia_family,chiefly tropical trees and shrubs
+6086,Flag_Day June_14,commemorating the adoption of the United States flag in 1777
+6087,Flagstaff,a town in north central Arizona; site of an important observatory
+6088,Flaminian_Way,an ancient Roman road in Italy built by Gaius Flaminius in 220 BC; extends north from Rome to cisalpine Gaul
+6089,Flaminius Gaius_Flaminius,Roman statesman and general who built the Flaminian Way; died when he was defeated by Hannibal (died 217 BC)
+6090,Flammulina genus_Flammulina,a genus of agarics
+6091,Flanders,a medieval country in northern Europe that included regions now parts of northern France and Belgium and southwestern Netherlands
+6092,Flaubert Gustave_Flaubert,French writer of novels and short stories (1821-1880)
+6093,Flavian_dynasty,a dynasty of Roman Emperors from 69 to 96 including Vespasian and his sons Titus and Domitian
+6094,Flaviviridae,a family of arboviruses carried by arthropods
+6095,Fleet_Street,a street in central London where newspaper offices are situated
+6096,Fleet_Street,British journalism
+6097,Fleming,a native of Flanders or a Flemish-speaking Belgian
+6098,Fleming Alexander_Fleming Sir_Alexander_Fleming,Scottish bacteriologist who discovered penicillin (1881-1955)
+6099,Fleming Ian_Fleming Ian_Lancaster_Fleming,British writer famous for writing spy novels about secret agent James Bond (1908-1964)
+6100,Flemish,an ethnic group speaking Flemish and living in northern and western Belgium
+6101,Flemish Flemish_dialect,one of two official languages of Belgium; closely related to Dutch
+6102,Fletcher John_Fletcher,prolific English dramatist who collaborated with Francis Beaumont and many other dramatists (1579-1625)
+6103,Flinders Matthew_Flinders Sir_Matthew_Flinders,British explorer who mapped the Australian coast (1774-1814)
+6104,Flindersia genus_Flindersia,small genus of Australian timber trees
+6105,Flint,a city in southeast central Michigan near Detroit; automobile manufacturing
+6106,Flint Flint_River,a river in western Georgia that flows generally south to join the Chattahoochee River at the Florida border where they form the Apalachicola River
+6107,Flodden,a hill in Northumberland where the invading Scots were defeated by the English in 1513
+6108,Flodden Battle_of_Flodden_Field,a battle in 1513; the English defeated the invading Scots and James IV was killed
+6109,Floreal,eighth month of the Revolutionary calendar (April and May); the month of flowers
+6110,Florence,a town in northeast South Carolina; transportation center
+6111,Florence_fennel Foeniculum_dulce Foeniculum_vulgare_dulce,grown especially for its edible aromatic bulbous stem base
+6112,Florentine,a native or resident of Florence, Italy
+6113,Florentine_iris orris Iris_germanica_florentina Iris_florentina,German iris having large white flowers with lavender-tinged falls and a fragrant rhizome
+6114,Florey Howard_Florey Sir_Howard_Walter_Florey,British pathologist who isolated and purified penicillin, which had been discovered in 1928 by Sir Alexander Fleming (1898-1968)
+6115,Florida Sunshine_State Everglade_State FL Fla.,a state in southeastern United States between the Atlantic and the Gulf of Mexico; one of the Confederate states during the American Civil War
+6116,Florida_gallinule Gallinula_chloropus_cachinnans,North American dark bluish-grey gallinule
+6117,Florida_pompano Trachinotus_carolinus,found in coastal waters New England to Brazil except clear waters of West Indies
+6118,Florida_smoothhound Mustelus_norrisi,found from the northern Gulf of Mexico to Brazil
+6119,Florida_strap_fern cow-tongue_fern hart's-tongue_fern,common epiphytic or sometimes terrestrial fern having pale yellow-green strap-shaped leaves; Florida to West Indies and Mexico and south to Uruguay
+6120,Florida_yew Taxus_floridana,small bushy yew of northern Florida having spreading branches and very narrow leaves
+6121,Floridian,a native or resident of Florida
+6122,Florio John_Florio,English lexicographer remembered for his Italian and English dictionary (1553-1625)
+6123,Flory Paul_John_Flory,United States chemist who developed methods for studying long-chain molecules (1910-1985)
+6124,Flying_Dutchman,the captain of a phantom ship (the Flying Dutchman) who was condemned to sail against the wind until Judgment Day
+6125,Flying_Dutchman,a phantom ship that is said to appear in storms near the Cape of Good Hope
+6126,Foeniculum genus_Foeniculum,very small genus of aromatic European herbs with pinnately compound leaves and yellow flowers
+6127,Foggy_Bottom,United States Department of State, which is housed in a building in a low-lying area of Washington near the Potomac River
+6128,Folsom_culture,the Paleo-American culture of Central America and North America; distinguished chiefly by a thin finely made flint projectile point having the shape of a leaf
+6129,Fomes genus_Fomes,genus of bracket fungi forming corky or woody perennial shelflike sporophores often of large size; includes some that cause destructive heartrot in trees
+6130,Fomor Fomorian,one of a group of Celtic sea demons sometimes associated with the hostile power of nature
+6131,Fonda Henry_Fonda,United States film actor (1905-1982)
+6132,Fonda Jane_Fonda,United States film actress and daughter of Henry Fonda (born in 1937)
+6133,Fontanne Lynn_Fontanne,United States actress (born in England) who married Alfred Lunt and performed with him in many plays (1887-1983)
+6134,Fontenoy Battle_of_Fontenoy,a battle in 1745 in which the French army under Marshal Saxe defeated the English army and their allies under the duke of Cumberland
+6135,Fonteyn Dame_Margot_Fonteyn,English dancer who danced with Rudolf Nureyev (born in 1919)
+6136,Food_and_Agriculture_Organization Food_and_Agriculture_Organization_of_the_United_Nations FAO,the United Nations agency concerned with the international organization of food and agriculture
+6137,Food_and_Drug_Administration FDA,a federal agency in the Department of Health and Human Services established to regulate the release of new foods and health-related products
+6138,Foraminifera order_Foraminifera,foraminifers
+6139,Forbidden_City,a walled section of Beijing that encloses the palace that was formerly the residence of the emperor of China
+6140,Force_17,formed in 1972 as a personal security force for Arafat and other PLO leaders; became one of PLO's elite units; has built an extensive infrastructure of terrorist cells and weapon depots in Europe while attacking Israeli targets
+6141,Forces_of_Umar_Al-Mukhtar Umar_al-Mukhtar_Forces,a little known Palestinian group responsible for bombings and for killing Israelis; seeks to defeat Israel and liberate southern Lebanon, Palestine, and Golan Heights
+6142,Ford Edsel_Bryant_Ford,son of Henry Ford (1893-1943)
+6143,Ford Ford_Madox_Ford Ford_Hermann_Hueffer,English writer and editor (1873-1939)
+6144,Ford Gerald_Ford Gerald_R._Ford Gerald_Rudolph_Ford President_Ford,38th President of the United States; appointed vice president and succeeded Nixon when Nixon resigned (1913-2006)
+6145,Ford Henry_Ford,United States manufacturer of automobiles who pioneered mass production (1863-1947)
+6146,Ford Henry_Ford_II,grandson of Henry Ford (1917-1987)
+6147,Ford John_Ford,United States film maker (1896-1973)
+6148,Fordhooks,relatively large lima beans
+6149,Foreign_Intelligence_Service Sluzhba_Vneshney_Razvedki SVR,Russia's intelligence service responsible for foreign operations, intelligence-gathering and analysis, and the exchange of intelligence information; collaborates with other countries to oppose proliferation of weapons of mass destruction, terrorism and organized crime
+6150,Foreign_Intelligence_Surveillance_Act FISA,an act passed by Congress in 1978 to establish procedures for requesting judicial authorization for foreign intelligence surveillance and to create the Foreign Intelligence Surveillance Court; intended to increase United States counterintelligence; separate from ordinary law enforcement surveillance
+6151,Foreign_Intelligence_Surveillance_Court F.I.S.C.,a secret federal court created in 1978 by the Foreign Intelligence Surveillance Act; responsible for authorizing wiretaps and other forms of electronic surveillance and for authorizing searches of suspected spies and terrorists by the Department of Justice or United States intelligence agencies
+6152,Foreign_Office,the government department in charge of foreign relations
+6153,Foreign_Service,the part of the State Department that supplies diplomats for the United States embassies and consulates around the world
+6154,Forester C._S._Forester Cecil_Scott_Forester,English writer of adventure novels featuring Captain Horatio Hornblower (1899-1966)
+6155,Forficula genus_Forficula,type genus of Forficulidae
+6156,Forficulidae family_Forficulidae,typical earwigs
+6157,Formica,any of various plastic laminates containing melamine
+6158,Formica genus_Formica,type genus of the Formicidae
+6159,Formica_fusca,an ant frequently enslaved
+6160,Formicariidae family_Formicariidae,antbirds
+6161,Formicarius genus_Formicarius,type genus of the Formicariidae
+6162,Formicidae family_Formicidae,ants
+6163,Formosan,the Austronesian languages spoken on Formosa
+6164,Fornax,a faint constellation in the southern hemisphere near Cetus and Phoenix
+6165,Forseti,(Norse mythology) god of justice; son of Balder and Nanna
+6166,Fort_Lauderdale,a city in southeast Florida on the Atlantic coast to the north of Miami; a favorite place for college students to go on their spring vacations
+6167,Fort_Meade Fort_George_Gordon_Meade Fort_George_G._Meade,a United States Army base in Maryland; headquarters of the National Security Agency
+6168,Fort_Myers,a town in southwest Florida
+6169,Fort_Smith,a town in western Arkansas on the Arkansas River at the Oklahoma border
+6170,Fort_Ticonderoga Ticonderoga,a pitched battle in which American revolutionary troops captured Fort Ticonderoga from the British in 1775
+6171,Fort_Wayne,a city in northeastern Indiana
+6172,Fort_Worth,a city in northeastern Texas (just to the west of Dallas); a major industrial center
+6173,Forth Forth_River,a river in southern Scotland that flows eastward to the Firth of Forth
+6174,Fortran_compiler,a compiler for programs written in FORTRAN
+6175,Fortuna,(Roman mythology) the goddess of fortune and good luck; counterpart of Greek Tyche
+6176,Fortunella genus_Fortunella,small genus of shrubs native to south China producing small ovoid fruits resembling oranges: includes kumquats
+6177,Fosbury Dick_Fosbury Richard_D._Fosbury,United States athlete who revolutionized the high jump by introducing the Fosbury flop in the 1968 Olympics (born in 1947)
+6178,Fosbury_flop,jumping over the bar backwards and head first
+6179,Fossa genus_Fossa,monotypic genus of Madagascar civets closely related to palm civets
+6180,Foster Stephen_Foster Stephen_Collins_Foster,United States songwriter whose songs embody the sentiment of the South before the American Civil War (1826-1864)
+6181,Foucault Jean_Bernard_Leon_Foucault,French physicist who determined the speed of light and showed that it travels slower in water than in air; invented the Foucault pendulum and the gyroscope (1819-1868)
+6182,Foucault_pendulum,pendulum with a long wire; can swing in any direction; the change in the swing plane demonstrates the earth's rotation
+6183,Founding_Father,a member of the Constitutional Convention that drafted the United States Constitution in 1787
+6184,Fountain_of_Youth,a fountain described in folk tales as able to make people young again; "Ponce de Leon discovered Florida while searching for the Fountain of Youth"
+6185,Fouquieria genus_Fouquieria,resinous succulent trees or shrubs of desert and semidesert regions of southwestern United States that are leafless most of the year
+6186,Fouquieriaceae family_Fouquieriaceae,small family of spiny shrubs or trees of southwestern United States
+6187,Four_Horsemen,(New Testament) the four evils that will come at the end of the world: conquest rides a white horse; war a red horse; famine a black horse; plague a pale horse
+6188,Four_Hundred,the exclusive social set of a city
+6189,Fourier Charles_Fourier Francois_Marie_Charles_Fourier,French sociologist and reformer who hoped to achieve universal harmony by reorganizing society (1772-1837)
+6190,Fourier Jean_Baptiste_Joseph_Fourier Baron_Jean_Baptiste_Joseph_Fourier,French mathematician who developed Fourier analysis and studied the conduction of heat (1768-1830)
+6191,Fourier_analysis harmonic_analysis,analysis of a periodic function into a sum of simple sinusoidal components
+6192,Fourier_series,the sum of a series of trigonometric expressions; used in the analysis of periodic functions
+6193,Fourteenth_Amendment,an amendment to the Constitution of the United States adopted in 1868; extends the guarantees of the Bill of Rights to the states as well as to the federal government
+6194,Fourth_Crusade,a Crusade from 1202 to 1204 that was diverted into a battle for Constantinople and failed to recapture Jerusalem
+6195,Fourth_Lateran_Council,the Lateran Council in 1215 was the most important council of the Middle Ages; issued a creed against Albigensianism, published reformatory decrees, promulgated the doctrine of transubstantiation, and clarified church doctrine on the Trinity and Incarnation
+6196,Fowler Henry_Watson_Fowler,English lexicographer who wrote a well-known book on English usage (1858-1933)
+6197,Fox,a member of an Algonquian people formerly living west of Lake Michigan along the Fox River
+6198,Fox,the Algonquian language of the Fox
+6199,Fox Charles_James_Fox,English statesman who supported American independence and the French Revolution (1749-1806)
+6200,Fox George_Fox,English religious leader who founded the Society of Friends (1624-1691)
+6201,Fox_River,a river in Wisconsin that flows into Lake Michigan
+6202,Fragaria genus_Fragaria,strawberries
+6203,Fragonard Jean_Honore_Fragonard,French artist whose rococo paintings typified the frivolity of life in the royal court of France in the 18th century (1732-1806)
+6204,France Anatole_France Jacques_Anatole_Francois_Thibault,French writer of sophisticated novels and short stories (1844-1924)
+6205,France French_Republic,a republic in western Europe; the largest country wholly in Europe
+6206,Franche-Comte,a former province of eastern France
+6207,Francis_Ferdinand Franz_Ferdinand,archduke of Austria and heir apparent to Francis Joseph I; his assassination at Sarajevo triggered the outbreak of World War I (1863-1914)
+6208,Francis_II Emperor_Francis_II,the last Holy Roman Emperor (1768-1835)
+6209,Francis_Joseph Franz_Joseph Francis_Joseph_I Franz_Josef_I,emperor of Austria and king of Hungary; was defeated by Napoleon III at the battle of Magenta (1830-1916)
+6210,Francis_of_Assisi Saint_Francis_of_Assisi St._Francis_of_Assisi Saint_Francis St._Francis Giovanni_di_Bernardone,(Roman Catholic Church) an Italian and the Roman Catholic monk who founded the Franciscan order of friars (1181-1226)
+6211,Francis_turbine,a type of hydroelectric turbine
+6212,Franciscan Grey_Friar,a Roman Catholic friar wearing the grey habit of the Franciscan order
+6213,Franciscan_order,a Roman Catholic order founded by Saint Francis of Assisi in the 13th century
+6214,Francisella genus_Francisella,a genus of Gram-negative aerobic bacteria that occur as pathogens and parasite in many animals (including humans)
+6215,Francisella_tularensis,the type species of the genus Francisella and the causal agent of tularemia in humans; can be used as a bioweapon
+6216,Franck Cesar_Franck,French composer and teacher who influenced a generation of composers (1822-1890)
+6217,Franck James_Franck,United States physicist (born in Germany) who with Gustav Hertz performed an electron scattering experiment that proved the existence of the stationary energy states postulated by Niels Bohr (1882-1964)
+6218,Franco Francisco_Franco El_Caudillo General_Franco,Spanish general whose armies took control of Spain in 1939 and who ruled as a dictator until his death (1892-1975)
+6219,Franco-American,an American who was born in France or whose ancestors were French
+6220,Franco-Prussian_War,a war between France and Prussia that ended the Second Empire in France and led to the founding of modern Germany; 1870-1871
+6221,Francoa genus_Francoa,perennial evergreen herbs with white or pink flowers; Chile
+6222,Francophile Francophil,an admirer of France and everything French
+6223,Francophobe,a person who hates France and everything French
+6224,Frank,a member of the ancient Germanic peoples who spread from the Rhine into the Roman Empire in the 4th century
+6225,Frankenstein,an agency that escapes control and destroys its creator
+6226,Frankenstein,the fictional Swiss scientist who was the protagonist in a gothic novel by Mary Wollstonecraft Shelley; he created a monster from parts of corpses
+6227,Frankenstein Frankenstein's_monster,the monster created by Frankenstein in a gothic novel by Mary Wollstonecraft Shelley (the creator's name is commonly used to refer to his creation)
+6228,Frankfort capital_of_Kentucky,the capital of Kentucky; located in northern Kentucky
+6229,Frankfurt_on_the_Main Frankfurt Frankfort,a German city; an industrial and commercial and financial center
+6230,Franklin Benjamin_Franklin,printer whose success as an author led him to take up politics; he helped draw up the Declaration of Independence and the Constitution; he played a major role in the American Revolution and negotiated French support for the colonists; as a scientist he is remembered particularly for his research in electricity (1706-1790)
+6231,Franklin John_Hope_Franklin,United States historian noted for studies of Black American history (born in 1915)
+6232,Frankliniella genus_Frankliniella,tobacco thrips
+6233,Fraser_fir Abies_fraseri,small fast-growing but short-lived fir of southern Alleghenies similar to balsam fir but with very short leaves
+6234,Frasera genus_Frasera,genus of North American herbs: columbo; includes some species sometimes placed in genus Swertia
+6235,Fratercula genus_Fratercula,puffins
+6236,Frau,a German courtesy title or form of address for an adult woman
+6237,Fraulein,a German courtesy title or form of address for an unmarried woman
+6238,Fraxinus genus_Fraxinus,ash
+6239,Frazer James_George_Frazer Sir_James_George_Frazer,English social anthropologist noted for studies of primitive religion and magic (1854-1941)
+6240,Frederick,a town in northern Maryland to the west of Baltimore
+6241,Frederick_I,son of Frederick William who in 1701 became the first king of Prussia (1657-1713)
+6242,Frederick_I Frederick_Barbarossa Barbarossa,Holy Roman Emperor from 1152 to 1190; conceded supremacy to the pope; drowned leading the Third Crusade (1123-1190)
+6243,Frederick_II Frederick_the_Great,king of Prussia from 1740 to 1786; brought Prussia military prestige by winning the War of the Austrian Succession and the Seven Years' War (1712-1786)
+6244,Frederick_II Holy_Roman_Emperor_Frederick_II,the Holy Roman Emperor who led the Sixth Crusade and crowned himself king of Jerusalem (1194-1250)
+6245,Frederick_William Great_Elector,the Elector of Brandenburg who rebuilt his domain after its destruction during the Thirty Years' War (1620-1688)
+6246,Frederick_William_I,son of Frederick I who became king of Prussia in 1713; reformed and strengthened the Prussian army (1688-1740)
+6247,Frederick_William_II,king of Prussia who became involved in a costly war with France (1744-1797)
+6248,Frederick_William_III,king of Prussia who became involved in the Napoleonic Wars (1770-1840)
+6249,Frederick_William_IV,king of Prussia who violently suppressed democratic movements (1795-1865)
+6250,Fredericksburg,a town in northeastern Virginia on the Rappahannock River
+6251,Fredericksburg Battle_of_Fredericksburg,an important battle in the American Civil War (1862); the Union Army under A. E. Burnside was defeated by the Confederate Army under Robert E. Lee
+6252,Fredericton,the provincial capital of New Brunswick
+6253,Free_French Fighting_French,a French movement during World War II that was organized in London by Charles de Gaulle to fight for the liberation of France from German control and for the restoration of the republic
+6254,Free_Soil_Party,a former political party in the United States; formed in 1848 to oppose the extension of slavery into the territories; merged with the Liberty Party in 1848
+6255,Free_State Orange_Free_State,a province in central South Africa that was colonized by the Boers; named Free State in 1997
+6256,Free_World,anti-communist countries collectively
+6257,Freemason Mason,a member of a widespread secret fraternal order pledged to mutual assistance and brotherly love
+6258,Freemasonry Masonry,Freemasons collectively
+6259,Freetown capital_of_Sierra_Leone,port city and the capital and largest city of Sierra Leone
+6260,Fregata genus_Fregata,type genus of the Fregatidae
+6261,Fregatidae family_Fregatidae,frigate birds
+6262,Fremont John_C._Fremont John_Charles_Fremont,United States explorer who mapped much of the American west and Northwest (1813-1890)
+6263,Fremontodendron genus_Fremontodendron Fremontia genus_Fremontia,flannelbush
+6264,French,the Romance language spoken in France and in countries colonized by France
+6265,French Daniel_Chester_French,United States sculptor who created the seated marble figure of Abraham Lincoln in the Lincoln Memorial in Washington D.C. (1850-1931)
+6266,French French_people,the people of France
+6267,French_Academy,an honorary group of French writers and thinkers supported by the French government; "the French Academy sets standards for the use of the French language"
+6268,French_Canadian,a Canadian descended from early French settlers and whose native language is French
+6269,French_Foreign_Legion,a former foreign legion in the French army that was used for military duties outside of France
+6270,French_Foreign_Office Quai_d'Orsay,the French department in charge of foreign affairs; referred to familiarly by its address in Paris
+6271,French_Indochina,the French colonies of the territory now occupied by Cambodia, Laos, and Vietnam
+6272,French_Polynesia French_Oceania,a French overseas possession in the South Pacific
+6273,French_Revolution,the revolution in France against the Bourbons; 1789-1799
+6274,French_Riviera Cote_d'Azur,the French part of the Riviera
+6275,French_West_Indies,the islands in the Lesser Antilles that are administered by France
+6276,French_and_Indian_War,a war in North America between France and Britain (both aided by American Indian tribes); 1755-1760
+6277,French_blue French_ultramarine French_ultramarine_blue,ultramarine pigment prepared artificially
+6278,French_bread,a crusty sourdough bread often baked in long slender tapered loaves or baguettes
+6279,French_bulldog,small stocky version of the bulldog having a sleek coat and square head
+6280,French_chalk,a soft white compact talc used to mark cloth or to remove grease stains
+6281,French_door,a light door with transparent or glazed panels extending the full length
+6282,French_dressing vinaigrette sauce_vinaigrette,oil and vinegar with mustard and garlic
+6283,French_franc,formerly the basic unit of money in France
+6284,French_fritter beignet,a deep-fried, yeast-raised doughnut dusted with confectioners' sugar
+6285,French_heel,a fairly high narrow heel on women's shoes
+6286,French_honeysuckle sulla Hedysarum_coronarium,perennial of southern Europe cultivated for forage and for its nectar-rich pink flowers that make it an important honey crop
+6287,French_horn horn,a brass musical instrument consisting of a conical tube that is coiled into a spiral and played by means of valves
+6288,French_knot,a stitch made by looping the thread several times around the needle before inserting it into the fabric
+6289,French_lavender Lavandula_stoechas,shrubby greyish lavender of southwestern Europe having usually reddish-purple flowers
+6290,French_leave,an abrupt and unannounced departure (without saying farewell)
+6291,French_lesson,instruction in the French language
+6292,French_loaf,a loaf of French bread
+6293,French_marigold Tagetes_patula,strong-scented bushy annual with orange or yellow flower heads marked with red; Mexico and Guatemala
+6294,French_omelet,omelet cooked quickly and slid onto a plate
+6295,French_pastry,sweet filled pastry made of especially puff paste
+6296,French_polish,the glaze produced by repeated applications of French polish shellac
+6297,French_polish French_polish_shellac,a varnish for wood consisting of shellac dissolved in alcohol
+6298,French_region,a geographical subdivision of France
+6299,French_roof,a mansard roof with sides that are nearly perpendicular
+6300,French_sorrel,greens having small tart oval to pointed leaves; preferred to common sorrel for salads
+6301,French_sorrel garden_sorrel Rumex_scutatus,low perennial with small silvery-green ovate to hastate leaves
+6302,French_teacher,someone who teaches French
+6303,French_toast,bread slice dipped in egg and milk and fried; topped with sugar or fruit or syrup
+6304,French_window,a French door situated in an exterior wall of a building
+6305,Frenchman Frenchwoman French_person,a person of French nationality
+6306,Freon,any one or more chlorofluorocarbons (or related compounds) that are used as an aerosol propellant, organic solvent, or refrigerant
+6307,Fresnel Augustin_Jean_Fresnel,French physicist who invented polarized light and invented the Fresnel lens (1788-1827)
+6308,Fresnel_lens,lens composed of a number of small lenses arranged to make a lightweight lens of large diameter and short focal length
+6309,Fresno,a city in south central California in the San Joaquin Valley; center of an important agricultural area and gateway to the Sierra Nevada Mountains
+6310,Freud Sigmund_Freud,Austrian neurologist who originated psychoanalysis (1856-1939)
+6311,Freudian,a person who follows the basic theories or practices of Sigmund Freud
+6312,Freudian_psychology,the psychological theories of Sigmund Freud
+6313,Freudian_slip,a slip-up that (according to Sigmund Freud) results from the operation of unconscious wishes or conflicts and can reveal unconscious processes in normal healthy individuals
+6314,Frey Freyr,(Norse mythology) god of earth's fertility and peace and prosperity; son of Njorth and brother of Freya; originally of the Vanir; later with the Aesir
+6315,Freya Freyja,(Norse mythology) goddess of love and fecundity; daughter of Njorth and sister of Frey
+6316,Frick Henry_Clay_Frick,United States industrialist who amassed a fortune in the steel industry (1849-1919)
+6317,Friday Fri,the sixth day of the week; the fifth working day
+6318,Friedan Betty_Friedan Betty_Naomi_Friedan Betty_Naomi_Goldstein_Friedan,United States feminist who founded a national organization for women (born in 1921)
+6319,Friedman Milton_Friedman,United States economist noted as a proponent of monetarism and for his opposition to government intervention in the economy (born in 1912)
+6320,Friedman_test rabbit_test,pregnancy test that involves injecting some of the woman's urine into an unmated female rabbit and later examining the ovaries of the rabbit; presence of corpora lutea indicates that the woman is pregnant
+6321,Friedreich's_ataxia herediatry_spinal_ataxia,sclerosis of the posterior and lateral columns of the spinal cord; characterized by muscular weakness and abnormal gait; occurs in children
+6322,Friend Quaker,a member of the Religious Society of Friends founded by George Fox (the Friends have never called themselves Quakers)
+6323,Friesian Holstein Holstein-Friesian,a breed of dairy cattle from northern Holland
+6324,Friesland,the western part of the ancient region of Frisia in northern Europe on the North Sea between the Scheldt river and the Weser river; part of this region is now a province in the Netherlands
+6325,Friesland,one of the northernmost provinces of the Netherlands
+6326,Frigg Frigga,(Norse mythology) goddess of the heavens and married love; wife of Odin
+6327,Frigid_Zone polar_zone polar_region,the part of the Earth's surface forming a cap over a pole; characterized by frigid climate
+6328,Frimaire,third month of the Revolutionary calendar (November and December); the frosty month
+6329,Fringilla genus_Fringilla,type genus of the Fringillidae: chaffinch, brambling
+6330,Fringillidae family_Fringillidae,finches: goldfinches; bullfinches; chaffinches; siskins; canaries; cardinals; grosbeaks; crossbills; linnets; buntings
+6331,Frisbee,a light, plastic disk about 10 inches in diameter; propelled with a flip of the wrist for recreation or competition
+6332,Frisch Karl_von_Frisch,Austrian zoologist noted for his studies of honeybees (1886-1982)
+6333,Frisch Otto_Frisch Otto_Robert_Frisch,British physicist (born in Austria) who with Lise Meitner recognized that Otto Hahn had produced a new kind of nuclear reaction which they named nuclear fission; Frisch described the explosive potential of a chain nuclear reaction (1904-1979)
+6334,Frisch Ragnar_Frisch Ragnar_Anton_Kittil_Frisch,Norwegian economist noted for his work in econometrics (1895-1973)
+6335,Frisia,an ancient region of northwestern Europe including the Frisian Islands
+6336,Frisian,a native or inhabitant of Friesland or Frisia
+6337,Frisian,a West Germanic language spoken in Friesland in the northwestern Netherlands; a near relative of English
+6338,Frisian_Islands,a chain of islands in the North Sea off the coast of northwestern Europe extending from the IJsselmeer to Jutland
+6339,Fritillaria genus_Fritillaria,fritillary
+6340,Friuli-Venezia_Giulia,a region in northeastern Italy
+6341,Friulian Friuli,a Rhaeto-Romance dialect spoken in northeastern Italy
+6342,Frobisher Sir_Martin_Frobisher,English explorer who led an expedition in search of the Northwest Passage to the orient; served under Drake and helped defeat the Spanish Armada (1535-1594)
+6343,Froebel Friedrich_Froebel Friedrich_Wilhelm_August_Froebel,German educator who founded the kindergarten system (1782-1852)
+6344,Froelichia genus_Froelichia,genus of erect or procumbent herbs of the Americas having spikes of woolly white flowers: cottonweed
+6345,Frost Robert_Frost Robert_Lee_Frost,United States poet famous for his lyrical poems on country life in New England (1874-1963)
+6346,Frost's_bolete Boletus_frostii,a fungus with a red cap and a red coarsely reticulate stalk
+6347,Fructidor,twelfth month of the Revolutionary calendar (August and September); the month of fruit
+6348,Fry Christopher_Fry,English dramatist noted for his comic verse dramas (born 1907)
+6349,Fry Roger_Fry Roger_Eliot_Fry,English painter and art critic (1866-1934)
+6350,Frye Northrop_Frye Herman_Northrop_Frye,Canadian literary critic interested in the use of myth and symbolism (1912-1991)
+6351,Fucaceae family_Fucaceae,small family of brown algae: gulfweeds; rockweeds
+6352,Fucales order_Fucales,coextensive with the family Fucaceae
+6353,Fuchs Klaus_Fuchs Emil_Klaus_Julius_Fuchs,British physicist who was born in Germany and fled Nazi persecution; in the 1940s he passed secret information to the USSR about the development of the atom bomb in the United States (1911-1988)
+6354,Fuego,a volcano in south central Guatemala
+6355,Fuentes Carlos_Fuentes,Mexican novelist (born in 1928)
+6356,Fugard Athol_Fugard,South African playwright whose plays feature the racial tensions in South Africa during apartheid (born in 1932)
+6357,Fuji Mount_Fuji Fujiyama Fujinoyama Fuji-san,an extinct volcano in south central Honshu that is the highest peak in Japan; last erupted in 1707; famous for its symmetrical snow-capped peak; a sacred mountain and site for pilgrimages
+6358,Fukuoka,a city in southern Japan on Kyushu
+6359,Fula Ful Fulani Peul,a family of languages of the Fulani of West Africa and used as a lingua franca in the sub-Saharan regions from Senegal to Chad; the best known of the West African languages
+6360,Fulani Fula Fulah Fellata Fulbe,a member of a pastoral and nomadic people of western Africa; they are traditionally cattle herders of Muslim faith
+6361,Fulbright William_Fulbright James_William_Fulbright,United States senator who is remembered for his creation of grants that fund exchange programs of teachers and students between the United States and other countries (1905-1995)
+6362,Fulgoridae family_Fulgoridae,plant hoppers: lantern flies
+6363,Fulica genus_Fulica,coots
+6364,Fuller Buckminster_Fuller R._Buckminster_Fuller Richard_Buckminster_Fuller,United States architect who invented the geodesic dome (1895-1983)
+6365,Fuller Melville_W._Fuller Melville_Weston_Fuller,United States jurist and chief justice of the United States Supreme Court (1833-1910)
+6366,Fulmarus genus_Fulmarus,fulmars
+6367,Fulton Robert_Fulton,American inventor who designed the first commercially successful steamboat and the first steam warship (1765-1815)
+6368,Fumaria genus_Fumaria,annual herbs whose flowers have only one petal spurred at the base
+6369,Fumariaceae family_Fumariaceae fumitory_family,erect or climbing herbs of the northern hemisphere and southern Africa: bleeding heart; Dutchman's breeches; fumitory; squirrel corn
+6370,Funafuti,capital of Tuvalu
+6371,Fundulus genus_Fundulus,killifish
+6372,Fungi kingdom_Fungi fungus_kingdom,the taxonomic kingdom including yeast, molds, smuts, mushrooms, and toadstools; distinct from the green plants
+6373,Fungia genus_Fungia,a genus comprising the usual mushroom corals
+6374,Funk Casimir_Funk,United States biochemist (born in Poland) who showed that several diseases were caused by dietary deficiencies and who coined the term `vitamin' for the chemicals involved (1884-1967)
+6375,Furnariidae family_Furnariidae,e.g. ovenbirds
+6376,Furnarius genus_Furnarius,type genus of the family Furnariidae: ovenbirds
+6377,Furnivall Frederick_James_Furnivall,English philologist who first proposed the Oxford English Dictionary (1825-1910)
+6378,Fury Eumenides Erinyes,(classical mythology) the hideous snake-haired monsters (usually three in number) who pursued unpunished criminals
+6379,Fuscoboletinus genus_Fuscoboletinus,a genus of fungi belonging to the family Boletaceae
+6380,Fuscoboletinus_paluster,an edible fungus with a pinkish purple cap and stalk and a pore surface that is yellow with large angular pores that become like gills in maturity
+6381,Fuscoboletinus_serotinus,an edible fungus with a broadly convex brown cap and a whitish pore surface and stalk
+6382,G g,the 7th letter of the Roman alphabet
+6383,G-man FBI_agent government_man,a special law-enforcement agent of the Federal Bureau of Investigation
+6384,G-string thong,minimal clothing worn by stripteasers; a narrow strip of fabric that covers the pubic area, passes between the thighs, and is supported by a waistband
+6385,GIGO,(computer science) a rule stating that the quality of the output is a function of the quality of the input; put garbage in and you get garbage out
+6386,GI_series,diagnostic tests of the alimentary canal; usually involves inserting a contrast medium (such as barium sulfate) and taking an X-ray
+6387,Gable Clark_Gable William_Clark_Gable,United States film actor (1901-1960)
+6388,Gabon Gabonese_Republic Gabun,a republic on the west coast of Africa
+6389,Gabon_franc,the basic unit of money in Gabon
+6390,Gabonese,a native or inhabitant of Gabon
+6391,Gabor Dennis_Gabor,British physicist (born in Hungary) noted for his work on holography (1900-1979)
+6392,Gaboriau Emile_Gaboriau,French writer considered by some to be a founder of the detective novel (1832-1873)
+6393,Gaborone capital_of_Botswana,capital and largest city of Botswana in the extreme southeast
+6394,Gabriel,(Bible) the archangel who was the messenger of God
+6395,Gadaba,a member of an agricultural people in southeastern India
+6396,Gadaba,the Dravidian language spoken by the Gadaba
+6397,Gadidae family_Gadidae,large family of important mostly marine food fishes
+6398,Gadiformes order_Gadiformes,cods, haddocks, grenadiers; in some classifications considered equivalent to the order Anacanthini
+6399,Gadsden,an industrial town in north central Alabama
+6400,Gadus genus_Gadus,type genus of the Gadidae: the typical codfishes
+6401,Gaea Gaia Ge,(Greek mythology) goddess of the earth and mother of Cronus and the Titans in ancient mythology
+6402,Gael,a Gaelic-speaking Celt in Ireland or Scotland or the Isle of Man
+6403,Gaelic Goidelic Erse,any of several related languages of the Celts in Ireland and Scotland
+6404,Gafsa,a city in west central Tunisia
+6405,Gagarin Yuri_Gagarin Yuri_Alekseyevich_Gagarin,Soviet cosmonaut who in 1961 was the first person to travel in space (1934-1968)
+6406,Gainesville,a university town in north central Florida
+6407,Gainsborough Thomas_Gainsborough,English portrait and landscape painter (1727-1788)
+6408,Galahad Sir_Galahad,(Arthurian legend) the most virtuous knight of the Round Table; was able to see the Holy Grail
+6409,Galan,a mountain peak in the Andes in Argentina (21,654 feet high)
+6410,Galapagos_Islands Galapagos,a group of islands in the Pacific off South America; owned by Ecuador; known for unusual animal life
+6411,Galatea,(Greek mythology) a maiden who was first a sculpture created by Pygmalion and was brought to life by Aphrodite in answer to Pygmalion's prayers
+6412,Galatia,an ancient country in central Asia Minor
+6413,Galatian,a native or inhabitant of Galatia in Asia Minor (especially a member of a people believed to have been Gauls who conquered Galatia in the 3rd century BC)
+6414,Galbraith John_Galbraith John_Kenneth_Galbraith,United States economist (born in Canada) who served as ambassador to India (born in 1908)
+6415,Galbulidae family_Galbulidae,jacamars
+6416,Galega genus_Galega,small genus of Eurasian herbs: goat's rue
+6417,Galen,Greek anatomist whose theories formed the basis of European medicine until the Renaissance (circa 130-200)
+6418,Galeocerdo genus_Galeocerdo,tiger sharks
+6419,Galeopsis genus_Galeopsis,erect annual European herbs
+6420,Galeorhinus genus_Galeorhinus,a genus of Carcharhinidae
+6421,Galeras Pasto,an active volcano in southeastern Colombia in the Andes
+6422,Galicia,a region (and former kingdom) in northwestern Spain on the Atlantic and the Bay of Biscay
+6423,Galician,a language spoken in Galicia, an Autonomus Community of Spain
+6424,Galiella_rufa,the cup-shaped fruiting body of this discomycete has a jellylike interior and a short stalk
+6425,Galilean Galilaean,an inhabitant of Galilee (an epithet of Jesus Christ)
+6426,Galilean_satellite Galilean,one of the four satellites of Jupiter that were discovered by Galileo
+6427,Galilean_telescope,a type of refracting telescope that is no longer used in astronomy
+6428,Galilee,an area of northern Israel; formerly the northern part of Palestine and the ancient kingdom of Israel; the scene of Jesus's ministry
+6429,Galileo Galileo_Galilei,Italian astronomer and mathematician who was the first to use a telescope to study the stars; demonstrated that different weights descend at the same rate; perfected the refracting telescope that enabled him to make many discoveries (1564-1642)
+6430,Galium genus_Galium,annual or perennial herbs: bedstraw; cleavers
+6431,Gallant_Fox,thoroughbred that won the triple crown in 1930
+6432,Gallaudet Thomas_Hopkins_Gallaudet,United States educator who established the first free school in the United States for the hearing impaired (1787-1851)
+6433,Galleria genus_Galleria,a genus of Pyralidae
+6434,Galliano,golden Italian liqueur flavored with herbs
+6435,Gallicanism,a religious movement originating among the French Roman Catholic clergy that favored the restriction of papal control and the achievement by each nation of individual administrative autonomy of the church
+6436,Gallicism,a word or phrase borrowed from French
+6437,Galliformes order_Galliformes,pheasants; turkeys; grouse; partridges; quails; chickens; brush turkeys; curassows; hoatzins
+6438,Gallinago genus_Gallinago Capella genus_Capella,snipes
+6439,Gallinula genus_Gallinula,gallinules
+6440,Gallirallus genus_Gallirallus,rails of New Zealand
+6441,Galloway,a district in southwestern Scotland
+6442,Galloway,breed of hardy black chiefly beef cattle native to Scotland
+6443,Gallup,a town in northwestern New Mexico near the Arizona border
+6444,Gallus genus_Gallus,common domestic birds and related forms
+6445,Galois Evariste_Galois,French mathematician who described the conditions for solving polynomial equations; was killed in a duel at the age of 21 (1811-1832)
+6446,Galois_theory,group theory applied to the solution of algebraic equations
+6447,Galsworthy John_Galsworthy,English novelist (1867-1933)
+6448,Galton Francis_Galton Sir_Francis_Galton,English scientist (cousin of Charles Darwin) who explored many fields including heredity, meteorology, statistics, psychology, and anthropology; founder of eugenics and first to use fingerprints for identification (1822-1911)
+6449,Galvani Luigi_Galvani,Italian physiologist noted for his discovery that frogs' muscles contracted in an electric field (which led to the galvanic cell) (1737-1798)
+6450,Galveston,a town in southeast Texas on Galveston Island
+6451,Galveston_Bay,an arm of the Gulf of Mexico in Texas to the south of Houston
+6452,Galveston_Island,an island at the entrance of Galveston Bay
+6453,Galway,a port city in western Ireland on Galway Bay
+6454,Galway_Bay,a bay of the North Atlantic on the west coast of Ireland
+6455,Gambelia genus_Gambelia,leopard lizards
+6456,Gambia The_Gambia Republic_of_The_Gambia,a narrow republic surrounded by Senegal in West Africa
+6457,Gambian,a native or inhabitant of Gambia
+6458,Gambian_monetary_unit,monetary unit in Gambia
+6459,Gambier_Islands,a group of islands in the south central Pacific; part of French Polynesia
+6460,Gambusia genus_Gambusia,mosquitofish
+6461,Gamow George_Gamow,United States physicist (born in Russia) who was a proponent of the big-bang theory and who did research in radioactivity and suggested the triplet code for DNA (1904-1968)
+6462,Gan_Jiang Kan_River,a river in southeastern China that flows generally north into the Chang Jiang to the north of Nanchang
+6463,Gandhi Indira_Gandhi Indira_Nehru_Gandhi Mrs._Gandhi,daughter of Nehru who served as prime minister of India from 1966 to 1977 (1917-1984)
+6464,Gandhi Mahatma_Gandhi Mohandas_Karamchand_Gandhi,political and spiritual leader during India's struggle with Great Britain for home rule; an advocate of passive resistance (1869-1948)
+6465,Ganesh Ganesa Ganesha Ganapati,Hindu god of wisdom or prophecy; the god who removes obstacles
+6466,Ganges Ganges_River,an Asian river; rises in the Himalayas and flows east into the Bay of Bengal; a sacred river of the Hindus
+6467,Ganoidei order_Ganoidei,a group of mostly extinct primitive bony fishes characterized by armor-like bony scales
+6468,Gansu Kansu Gansu_province,a province in north-central China; formerly part of the Silk Road to Turkistan and India and Persia
+6469,Ganymede,(Greek mythology) a Trojan boy who was so beautiful that Zeus carried him away to serve as cupbearer to the gods
+6470,Ganymede,the largest of Jupiter's satellites
+6471,Garand_rifle Garand M-1 M-1_rifle,a semiautomatic rifle
+6472,Garbo Greta_Garbo Greta_Louisa_Gustafsson,United States film actress (born in Sweden) known for her reclusiveness (1905-1990)
+6473,Garcia_Lorca Frederico_Garcia_Lorca Lorca,Spanish poet and dramatist who was shot dead by Franco's soldiers soon after the start of the Spanish Civil War (1898-1936)
+6474,Garcinia genus_Garcinia,evergreen trees and shrubs: mangosteens
+6475,Gardiner Samuel_Rawson_Gardiner,British historian remembered for his ten-volume history of England (1829-1902)
+6476,Gardner Erle_Stanley_Gardner,writer of detective novels featuring Perry Mason (1889-1970)
+6477,Gardner Isabella_Stewart_Gardner,United States collector and patron of art who built a museum in Boston to house her collection and opened it to the public in 1903 (1840-1924)
+6478,Garfield James_Garfield James_A._Garfield James_Abraham_Garfield President_Garfield,20th President of the United States; assassinated by a frustrated office-seeker (1831-1881)
+6479,Gargantua,a voracious giant in Francois Rabelais' book of the same name
+6480,Garibaldi Giuseppe_Garibaldi,Italian patriot whose conquest of Sicily and Naples led to the formation of the Italian state (1807-1882)
+6481,Garland,a city in northeastern Texas (suburb of Dallas)
+6482,Garland Judy_Garland,United States singer and film actress (1922-1969)
+6483,Garnier Jean_Louis_Charles_Garnier,French architect (1825-1898)
+6484,Garonne Garonne_River,a river that rises in the Pyrenees and flows northwest to the Bay of Biscay
+6485,Garrick David_Garrick,English actor and theater manager who was the foremost Shakespearean actor of his day (1717-1779)
+6486,Garrison William_Lloyd_Garrison,United States abolitionist who published an anti-slavery journal (1805-1879)
+6487,Garrulinae subfamily_Garrulinae,subfamily of the crow family: jays
+6488,Garrulus genus_Garrulus,type genus of the Garrulinae: Old World jays
+6489,Garuda,a supernatural eagle-like being that serves as Vishnu's mount
+6490,Gary,a city in northwest Indiana on Lake Michigan; steel production
+6491,Gascogne Gascony,a region of southwestern France
+6492,Gasherbrum,a mountain in northern Kashmir (26,470 feet high)
+6493,Gaskell Elizabeth_Gaskell Elizabeth_Cleghorn_Stevenson_Gaskell,English writer who is remembered for her biography of Charlotte Bronte (1810-1865)
+6494,Gasteromycetes class_Gasteromycetes Gastromycetes class_Gastromycetes,fungi in which the hymenium is enclosed until after spores have matured: puffballs; earth stars; stinkhorn fungi
+6495,Gasterophilidae family_Gasterophilidae,horse botflies
+6496,Gasterophilus genus_Gasterophilus,type genus of the Gasterophilidae: horse botflies
+6497,Gasterosteidae family_Gasterosteidae,sticklebacks
+6498,Gasterosteus genus_gasterosteus,type genus of the family Gasterosteidae
+6499,Gastroboletus genus_Gastroboletus,a genus of fungi belonging to the family Secotiaceae; they resemble boletes but the spores are not discharged from the basidium
+6500,Gastroboletus_scabrosus,a dingy yellow brown fungus with a rough stalk that superficially resembles a bolete
+6501,Gastroboletus_turbinatus,a fungus with a cap that can vary from red to dark brown; superficially resembles a bolete
+6502,Gastrocybe genus_Gastrocybe,a genus of fungi of the family Secotiaceae
+6503,Gastrocybe_lateritia,a species of Gastrocybe fungus that has a conic cap and a thin stalk; at first the stalk is upright but as it matures the stalk bends over and then downward; the cap then gelatinizes and a slimy mass containing the spores falls to the ground as the stalk collapses
+6504,Gastrophryne genus_Gastrophryne,primarily tropical narrow-mouthed toads
+6505,Gastropoda class_Gastropoda Gasteropoda class_Gasteropoda,snails and slugs and their relatives
+6506,Gates Bill_Gates William_Henry_Gates,United States computer entrepreneur whose software company made him the youngest multi-billionaire in the history of the United States (born in 1955)
+6507,Gates_of_the_Arctic_National_Park,a large national park in Alaska featuring the Great Mendenhall Glacier
+6508,Gathic,an ancient Iranian language
+6509,Gatling Richard_Jordan_Gatling,United States inventor of the first rapid firing gun (1818-1903)
+6510,Gatling_gun,an early form of machine gun having several barrels that fire in sequence as they are rotated
+6511,Gaucher's_disease,a rare chronic disorder of lipid metabolism of genetic origin
+6512,Gaudi Antonio_Gaudi Gaudi_i_Cornet Antonio_Gaudi_i_Cornet,Spanish architect who was a leading exponent of art nouveau in Europe (1852-1926)
+6513,Gauguin Paul_Gauguin,French Post-impressionist painter who worked in the South Pacific (1848-1903)
+6514,Gaul,a Celt of ancient Gaul
+6515,Gaul Gallia,an ancient region of western Europe that included what is now northern Italy and France and Belgium and part of Germany and the Netherlands
+6516,Gaultheria genus_Gaultheria,widely distributed genus of creeping or upright evergreen shrubs
+6517,Gauri,in Hinduism, goddess of purity and posterity and a benevolent aspect of Devi; the `brilliant'
+6518,Gauss Karl_Gauss Karl_Friedrich_Gauss,German mathematician who developed the theory of numbers and who applied mathematics to electricity and magnetism and astronomy and geodesy (1777-1855)
+6519,Gavia genus_Gavia,type genus of the Gavidae: loons
+6520,Gavialidae family_Gavialidae,gavials
+6521,Gavialis genus_Gavialis,type genus of the Gavialidae
+6522,Gavidae family_Gavidae,loon family
+6523,Gaviiformes order_Gaviiformes,large aquatic birds: loons and some extinct forms
+6524,Gawain Sir_Gawain,(Arthurian legend) a nephew of Arthur and one of the knights of the Round Table
+6525,Gay-Lussac Joseph_Louis_Gay-Lussac,French chemist and physicist who first isolated boron and who formulated the law describing the behavior of gases under constant pressure (1778-1850)
+6526,Gay-Lussac's_law Charles's_law law_of_volumes,(physics) the density of an ideal gas at constant pressure varies inversely with the temperature
+6527,Gaylussacia genus_Gaylussacia,deciduous or evergreen shrubs of North America: black huckleberries
+6528,Gaza_Strip Gaza,a coastal region at the southeastern corner of the Mediterranean bordering Israel and Egypt; "he is a Palestinian from Gaza"
+6529,Gazella genus_Gazella,typical gazelles
+6530,Gazella_subgutturosa,a kind of gazelle
+6531,Gdansk Danzig,a port city of northern Poland near the mouth of the Vistula River on a gulf of the Baltic Sea; a member of the Hanseatic League in the 14th century
+6532,Geastraceae family_Geastraceae,a family of earthstar fungi belonging to the order Lycoperdales
+6533,Geastrum genus_Geastrum,type genus of Geastraceae; fungi whose outer peridium when dry splits into starlike segments
+6534,Geastrum_coronatum,an earthstar with a bluish spore sac and a purplish brown gleba; at maturity the outer layer splits into rays that bend backward and elevate the spore sac
+6535,Geb Keb,Egyptian god of the earth; father of Osiris and Isis
+6536,Geglossaceae,a type of ascomycetous fungus
+6537,Gehenna Tartarus,a place where the wicked are punished after death
+6538,Gehrig Lou_Gehrig Henry_Louis_Gehrig,baseball player who died of amyotrophic lateral sclerosis (1903-1941)
+6539,Geiger Hans_Geiger,German physicist who developed the Geiger counter (1882-1945)
+6540,Geiger_counter Geiger-Muller_counter,counter tube that detects ionizing radiations
+6541,Geiger_tube Geiger-Muller_tube,an ionization chamber contained in a tube in a Geiger counter
+6542,Geisel Theodor_Seuss_Geisel Dr._Seuss,United States writer of children's books (1904-1991)
+6543,Gekkonidae family_Gekkonidae,geckos
+6544,Gelechia genus_Gelechia,type genus of the Gelechiidae: pink bollworms
+6545,Gelechia_gossypiella,small brown moth whose larvae bore into flowers and bolls of cotton
+6546,Gelechiidae family_Gelechiidae,important economic pests
+6547,Gell-Mann Murray_Gell-Mann,United States physicist noted for his studies of subatomic particles (born in 1929)
+6548,Gelsemium genus_Gelsemium,evergreen twining shrubs of Americas and southeastern Asia
+6549,Gemara,the second part of the Talmud consisting primarily of commentary on the Mishna
+6550,Gemini,a zodiacal constellation in the northern hemisphere between Taurus and Cancer on the ecliptic
+6551,Gemini Gemini_the_Twins Twins,the third sign of the zodiac; the sun is in this sign from about May 21 to June 20
+6552,Gemini Twin,(astrology) a person who is born while the sun is in Gemini
+6553,Gemini_program,a program of space flights undertaken by US in 1965 and 1966; "under the Gemini program each crew had two astronauts"
+6554,Gempylidae family_Gempylidae,snake mackerels
+6555,Gempylus genus_Gempylus,type genus of the Gempylidae
+6556,General_Agreement_on_Tariffs_and_Trade GATT,a United Nations agency created by a multinational treaty to promote trade by the reduction of tariffs and import quotas
+6557,General_Assembly,the supreme deliberative assembly of the United Nations
+6558,General_Certificate_of_Secondary_Education GCSE O_level,the basic level of a subject taken in school
+6559,General_Services_Administration GSA,a central management agency that sets Federal policy for Federal procurement and real property management and information resources management
+6560,Genesis Book_of_Genesis,the first book of the Old Testament: tells of Creation; Adam and Eve; the Fall of Man; Cain and Abel; Noah and the flood; God's covenant with Abraham; Abraham and Isaac; Jacob and Esau; Joseph and his brothers
+6561,Genet Edmund_Charles_Edouard_Genet Citizen_Genet,French diplomat who in 1793 tried to draw the United States into the war between France and England (1763-1834)
+6562,Genet Jean_Genet,French writer of novels and dramas for the theater of the absurd (1910-1986)
+6563,Genetta genus_Genetta,genets
+6564,Geneva Geneve Genf,a city in southwestern Switzerland at the western end of Lake Geneva; it is the headquarters of various international organizations
+6565,Geneva_Convention,an agreement first drawn up in Geneva in 1864 and later revised concerning the treatment of captured and wounded military personnel and civilians in wartime
+6566,Geneva_gown,black academic gown widely used by Protestant clergymen
+6567,Genevan,a native or resident of Geneva
+6568,Genghis_Khan Jinghis_Khan Jenghiz_Khan Temujin,Mongolian emperor whose empire stretched from the Black Sea to the Pacific Ocean (1162-1227)
+6569,Genista genus_Genista,chiefly deciduous shrubs or small trees of Mediterranean area and western Asia: broom
+6570,Genoa Genova,a seaport in northwestern Italy; provincial capital of Liguria
+6571,Genoese,a native or resident of Genoa
+6572,Genseric Gaiseric,king of the Vandals who seized Roman lands and invaded North Africa and sacked Rome (428-477)
+6573,Gent Gand Ghent,port city in northwestern Belgium and industrial center; famous for cloth industry
+6574,Gentiana genus_Gentiana,type genus of the Gentianaceae; cosmopolitan genus of herbs nearly cosmopolitan in cool temperate regions; in some classifications includes genera Gentianopsis and Gentianella
+6575,Gentianaceae family_Gentianaceae gentian_family,chiefly herbaceous plants with showy flowers; some are cultivated as ornamentals
+6576,Gentianales order_Gentianales,an order of dicotyledonous plants having gamopetalous flowers; Gentianaceae; Apocynaceae; Asclepiadaceae; Loganiaceae; Oleaceae; Salvadoraceae
+6577,Gentianella genus_Gentianella,genus of herbs with flowers that resemble gentian; in some classifications included in genus Gentiana
+6578,Gentianopsid_procera Gentiana_procera,small blue-flowered fringed gentian of east central North America
+6579,Gentianopsis genus_Gentianopsis,genus of fringed gentians; in some classifications included in genus Gentiana
+6580,Gentianopsis_crinita Gentiana_crinita,tall widely distributed fringed gentian of eastern North America having violet-blue or white fringed flowers
+6581,Gentianopsis_detonsa Gentiana_detonsa,medium-tall fringed gentian with pale-blue to blue-purple flowers; circumboreal in distribution
+6582,Gentianopsis_thermalis Gentiana_thermalis,small blue-flowered fringed gentian of western United States (Rocky Mountains) especially around hot springs in Yellowstone National Park
+6583,Genyonemus genus_Genyonemus,a genus of Sciaenidae
+6584,Geochelone genus_Geochelone,giant tortoises
+6585,Geococcyx genus_Geococcyx,roadrunners
+6586,Geoffrey_of_Monmouth,Welsh chronicler who wrote an account of the kings of Britain which is now believed to contain little historical fact but it is a source of the Arthurian legend (circa 1100-1154)
+6587,Geoffroea genus_Geoffroea,small genus of shrubs or small trees of tropical and subtropical America
+6588,Geogia_holly,a holly shrub
+6589,Geoglossaceae family_Geoglossaceae,a family of fungi belonging to the order Helotiales
+6590,Geoglossum genus_Geoglossum,type genus of the Geoglossaceae comprising the earthtongues
+6591,Geometridae family_Geometridae,measuring worms
+6592,Geomyidae family_Geomyidae,North American pocket gophers
+6593,Geomys genus_Geomys,type genus of the Geomyidae
+6594,Geophilidae family_Geophilidae,small extremely elongate centipedes that live in earth
+6595,Geophilomorpha order_Geophilomorpha,small elongate centipedes living in soil and under stones and having more than 30 pairs of legs
+6596,Geophilus genus_Geophilus,type genus of the Geophilidae: a cosmopolitan genus of centipedes sometimes called earwigs
+6597,Geordie,a native of Newcastle-upon-Tyne
+6598,George George_I,Elector of Hanover and the first Hanoverian King of Great Britain and Ireland from 1714 to 1727 (1660-1727)
+6599,George George_II,King of Great Britain and Elector of Hanover from 1727 to 1760 (1683-1760)
+6600,George George_III,King of Great Britain and Ireland from 1760 to 1820; the American colonies were lost during his reign; he became insane in 1811 and his son (later George IV) acted as regent until 1820 (1738-1820)
+6601,George George_IV,King of Great Britain and Ireland and Hanover from 1820 to 1830; his attempt to divorce his estranged wife undermined the prestige of the Crown (1762-1830)
+6602,George George_V,King of Great Britain and Ireland and emperor of India from 1910 to 1936; gave up his German title in 1917 during World War I (1865-1936)
+6603,George George_VI,King of Great Britain and Ireland and emperor of India from 1936 to 1947; he succeeded Edward VIII (1895-1952)
+6604,George Saint_George St._George,Christian martyr; patron saint of England; hero of the legend of Saint George and the Dragon in which he slew a dragon and saved a princess (?-303)
+6605,George_Town,the capital of the Cayman Islands
+6606,George_Washington_Bridge,a suspension bridge across the Hudson River between New York and New Jersey
+6607,Georgetown,a section of northwestern Washington, D.C.
+6608,Georgetown Stabroek,port city and the capital and largest city of Guyana; "the city was called Stabroek by the Dutch but was renamed Georgetown by the British in 1812"
+6609,Georgia,one of the British colonies that formed the United States
+6610,Georgia Empire_State_of_the_South Peach_State GA Ga.,a state in southeastern United States; one of the Confederate states during the American Civil War
+6611,Georgia Sakartvelo,a republic in Asia Minor on the Black Sea separated from Russia by the Caucasus mountains; formerly an Asian soviet but became independent in 1991
+6612,Georgian,a native or resident of the American state of Georgia
+6613,Georgian,a native or inhabitant of Georgia in Asia
+6614,Georgian,a southern Caucasian language with 3 million speakers and a long literary tradition
+6615,Georgian_monetary_unit,monetary unit in Georgia
+6616,Geothlypis genus_Geothlypis,yellowthroats
+6617,Geraint Sir_Geraint,(Arthurian legend) one of the knights of the Round Table
+6618,Geraniaceae family_Geraniaceae geranium_family,chiefly herbaceous plants
+6619,Geraniales order_Geraniales,an order of plants of subclass Rosidae including geraniums and many other plants; see Euphorbiaceae; Geraniaceae; Rutaceae; Malpighiaceae; Simaroubaceae; Meliaceae; Zygophyllaceae; Tropaeolaceae
+6620,Gerbera genus_Gerbera,genus of South African or Asiatic herbs: African daisies
+6621,Gerbillinae subfamily_Gerbillinae,gerbils
+6622,Gerbillus genus_Gerbillus,type genus of the Gerbillinae: typical gerbils
+6623,Gerea genus_Gerea,small genus of hairy herbs with yellow flowers
+6624,German,a person of German nationality
+6625,German High_German German_language,the standard German language; developed historically from West Germanic
+6626,German_American,an American who was born in Germany or whose ancestors were German
+6627,German_cockroach Croton_bug crotonbug water_bug Blattella_germanica,small light-brown cockroach brought to United States from Europe; a common household pest
+6628,German_iris Iris_germanica,a large iris with purple or white flowers, native to central and southern Europe
+6629,German_iris Iris_kochii,iris of northern Italy having deep blue-purple flowers; similar to but smaller than Iris germanica
+6630,German_ivy Delairea_odorata Senecio_milkanioides,South African succulent evergreen twining climber with yellow flowers grown primarily as a houseplant for its foliage; sometimes placed in genus Senecio
+6631,German_lesson,instruction in the German language
+6632,German_measles rubella three-day_measles epidemic_roseola,a contagious viral disease that is a milder form of measles lasting three or four days; can be damaging to a fetus during the first trimester
+6633,German_millet golden_wonder_millet Setaria_italica_stramineofructa,millet having yellow grains in large drooping spikes
+6634,German_monetary_unit,monetary unit in Germany
+6635,German_shepherd German_shepherd_dog German_police_dog alsatian,breed of large shepherd dogs used in police work and as a guide for the blind
+6636,German_short-haired_pointer,liver or liver-and-white hunting dog developed in Germany; 3/4 pointer and 1/4 bloodhound
+6637,Germanic Germanic_language,a branch of the Indo-European family of languages; members that are spoken currently fall into two major groups: Scandinavian and West Germanic
+6638,Germanism,a custom that is peculiar to Germany or its citizens
+6639,Germanist,a specialist in the study of Germanic language or culture or literature
+6640,Germany Federal_Republic_of_Germany Deutschland FRG,a republic in central Europe; split into East Germany and West Germany after World War II and reunited in 1990
+6641,Germinal,seventh month of the Revolutionary calendar (March and April); the month of buds
+6642,Geronimo,Apache chieftain who raided the white settlers in the Southwest as resistance to being confined to a reservation (1829-1909)
+6643,Gerreidae family_Gerreidae Gerridae family_Gerridae,mojarras
+6644,Gerres genus_Gerres,type genus of the Gerreidae
+6645,Gerrhonotus genus_Gerrhonotus,alligator lizards
+6646,Gerrididae family_Gerrididae Gerridae family_Gerridae,an arthropod family that includes water striders
+6647,Gerris genus_Gerris,type genus of the Gerrididae
+6648,Gershwin George_Gershwin,United States composer who incorporated jazz into classical forms and composed scores for musical comedies (1898-1937)
+6649,Gershwin Ira_Gershwin,United States lyricist who frequently collaborated with his brother George Gershwin (1896-1983)
+6650,Geryon,(Greek mythology) a mythical monster with three heads that was slain by Hercules
+6651,Gesell Arnold_Gesell Arnold_Lucius_Gesell,United States psychologist noted for his work in child development (1880-1961)
+6652,Gesner Konrad_von_Gesner,Swiss naturalist who was one of the founders of modern zoology (1516-1565)
+6653,Gesneriaceae family_Gesneriaceae gesneria_family,large family of tropical herbs or shrubs or lianas; in some classification systems placed in the order Scrophulariales
+6654,Gestalt_law_of_organization Gestalt_principle_of_organization,a principle of Gestalt psychology that identifies factors leading to particular forms of perceptual organization
+6655,Gestalt_psychology configurationism,(psychology) a theory of psychology that emphasizes the importance of configurational properties
+6656,Gestapo,the secret state police in Nazi Germany; known for its terrorist methods
+6657,Gettysburg,a small town in southern Pennsylvania; site of a national cemetery
+6658,Gettysburg Battle_of_Gettysburg,a battle of the American Civil War (1863); the defeat of Robert E. Lee's invading Confederate Army was a major victory for the Union
+6659,Gettysburg_Address,a three-minute address by Abraham Lincoln during the American Civil War at the dedication of a national cemetery on the site of the Battle of Gettysburg (November 19, 1863)
+6660,Geum genus_Geum,avens
+6661,Ghana Republic_of_Ghana Gold_Coast,a republic in West Africa on the Gulf of Guinea; "Ghana was colonized as the Gold Coast by the British"
+6662,Ghanian,a native or inhabitant of Ghana
+6663,Ghanian_monetary_unit,monetary unit of Ghana
+6664,Ghedda_wax,wax from Indian and African bees
+6665,Gheg Gheg_dialect,the dialect of Albanian spoken in northern Albania and Yugoslavia
+6666,Giacometti Alberto_Giacometti,Swiss sculptor and painter known for his bronze sculptures of elongated figures (1901-1966)
+6667,Gibbon Edward_Gibbon,English historian best known for his history of the Roman Empire (1737-1794)
+6668,Gibbs Josiah_Willard_Gibbs,United States chemist (1839-1903)
+6669,Gibraltar Rock_of_Gibraltar Calpe,location of a colony of the United Kingdom on a limestone promontory at the southern tip of Spain; strategically important because it can control the entrance of ships into the Mediterranean; one of the Pillars of Hercules
+6670,Gibraltarian,a native or inhabitant of Gibraltar
+6671,Gibran Kahlil_Gibran,United States writer (born in Lebanon) (1883-1931)
+6672,Gibson Althea_Gibson,United States tennis player who was the first Black woman player to win all the major world singles titles (1927-2003)
+6673,Gibson C._D._Gibson Charles_Dana_Gibson,United States illustrator remembered for his creation of the `Gibson girl' (1867-1944)
+6674,Gibson Mel_Gibson Mel_Columcille_Gerard_Gibson,Australian actor (born in the United States in 1956)
+6675,Gibson_Desert,a desert area in western Australia
+6676,Gibson_girl,the idealized American girl of the 1890s as pictured by C. D. Gibson
+6677,Gidar,a Chadic language spoken south of Lake Chad
+6678,Gide Andre_Gide Andre_Paul_Guillaume_Gide,French author and dramatist who is regarded as the father of modern French literature (1869-1951)
+6679,Gielgud Sir_John_Gielgud Arthur_John_Gielgud,English actor of Shakespearean roles who was also noted for appearances in films (1904-2000)
+6680,Gigartinaceae family_Gigartinaceae,a family of protoctist
+6681,Gikuyu,a Bantu language spoken in western Kenya
+6682,Gila Gila_River,a river that rises in western New Mexico and flows westward through southern Arizona to become a tributary of the Colorado River
+6683,Gila_Desert,a desert area in southern Arizona
+6684,Gila_monster Heloderma_suspectum,large orange and black lizard of southwestern United States; not dangerous unless molested
+6685,Gilbert Cass_Gilbert,United States architect who influenced the development of the skyscraper (1859-1934)
+6686,Gilbert Humphrey_Gilbert Sir_Humphrey_Gilbert,English navigator who in 1583 established in Newfoundland the first English colony in North America (1539-1583)
+6687,Gilbert William_Gilbert,English court physician noted for his studies of terrestrial magnetism (1540-1603)
+6688,Gilbert William_Gilbert William_S._Gilbert William_Schwenk_Gilbert Sir_William_Gilbert,a librettist who was a collaborator with Sir Arthur Sullivan in a famous series of comic operettas (1836-1911)
+6689,Gilbert_Islands,a group of islands in Micronesia to the southwest of Hawaii; formerly part of the British colony of Gilbert and Ellice Islands until it became part of the Republic of Kiribati in 1979
+6690,Gilbert_and_Ellice_Islands,a former British possession in Micronesia
+6691,Gilbert_and_Sullivan,the music of Gilbert and Sullivan; "he could sing all of Gilbert and Sullivan"
+6692,Gilgamesh,a legendary Sumerian king who was the hero of an epic collection of mythic stories
+6693,Gilgamish,legendary Sumerian king and hero of Sumerian and Babylonian epics
+6694,Gillespie Dizzy_Gillespie John_Birks_Gillespie,United States jazz trumpeter and exponent of bebop (1917-1993)
+6695,Gillette King_Camp_Gilette,United States inventor and manufacturer who developed the safety razor (1855-1932)
+6696,Gilman Charlotte_Anna_Perkins_Gilman,United States feminist (1860-1935)
+6697,Gilmer Elizabeth_Merriwether_Gilmer Dorothy_Dix,United States journalist who wrote a syndicated column of advice to the lovelorn (1870-1951)
+6698,Ginglymostoma genus_Ginglymostoma,nurse sharks
+6699,Ginkgoaceae family_Ginkgoaceae ginkgo_family,constituting the order Ginkgoales; includes the genus Ginkgo and extinct forms
+6700,Ginkgoales order_Ginkgoales,coextensive with the family Ginkgoaceae: plants that first appeared in the Permian and now represented by a single surviving species; often included in Coniferales
+6701,Ginkgopsida class_Ginkgopsida Ginkgophytina class_Ginkgophytina subdivision_Ginkgophytina subdivision_Ginkgophyta,ginkgos: in some systems classified as a class and in others as a subdivision; used in some classifications for one of five subdivisions of Gymnospermophyta
+6702,Ginsberg Allen_Ginsberg,United States poet of the beat generation (1926-1997)
+6703,Giotto Giotto_di_Bondone,Florentine painter who gave up the stiff Byzantine style and developed a more naturalistic style; considered the greatest Italian painter prior to the Renaissance (1267-1337)
+6704,Giraffa genus_Giraffa,type genus of the Giraffidae
+6705,Giraffidae family_Giraffidae,giraffes
+6706,Girard Stephen_Girard,United States financier (born in France) who helped finance the War of 1812 (1750-1831)
+6707,Giraudoux Jean_Giraudoux Hippolyte_Jean_Giraudoux,French novelist and dramatist whose plays were reinterpretations of Greek myths (1882-1944)
+6708,Giriama,a Bantu language spoken in the coastal regions of eastern Kenya
+6709,Girl_Scout,a girl who is a member of the Girl Scouts
+6710,Girl_Scouts,an organization of young women and girls founded in 1912 for character development and citizenship training
+6711,Gironde,the French moderate political party that was in power (1791-1793) during the French Revolution
+6712,Girondism,the doctrine of the Girondists
+6713,Girondist Girondin,a member of the moderate republican party that was in power during the French Revolution; the Girondists were overthrown by their more radical rivals the Jacobins
+6714,Girru,the Babylonian god of fire; often invoked in incantations against sorcery
+6715,Gish Lillian_Gish,United States film actress who appeared in films by D. W. Griffith (1896-1993)
+6716,Giza El_Giza Gizeh,an ancient Egyptian city on the west bank of the Nile opposite Cairo; site of three Great Pyramids and the Sphinx
+6717,Gjellerup Karl_Gjellerup,Danish novelist (1857-1919)
+6718,Gladstone William_Gladstone William_Ewart_Gladstone,liberal British statesman who served as prime minister four times (1809-1898)
+6719,Glareola genus_Glareola,type genus of the Glareolidae: the pratincoles
+6720,Glareolidae family_Glareolidae,Old World shorebirds: pratincoles and coursers
+6721,Glaser Donald_Glaser Donald_Arthur_Glaser,United States physicist who invented the bubble chamber to study subatomic particles (born in 1926)
+6722,Glasgow,largest city in Scotland; a port on the Clyde in west central Scotland; one of the great shipbuilding centers of the world
+6723,Glaswegian,an inhabitant of Glasgow
+6724,Glauber's_salt Glauber's_salts,(Na2SO4.10H2O) a colorless salt used as a cathartic
+6725,Glaucium genus_Glaucium,herbs of Europe and North Africa and Asia: horned poppy
+6726,Glaucomys genus_Glaucomys,New World flying squirrels
+6727,Glaux genus_Glaux,sea milkwort
+6728,Glechoma genus_Glechoma,ground ivy
+6729,Gleditsia genus_Gleditsia,deciduous trees: honey locusts
+6730,Gleichenia genus_Gleichenia,type genus of Gleicheniaceae: leptosporangiate ferns with sessile sporangia; South Africa to Malaysia and New Zealand
+6731,Gleicheniaceae family_Gleicheniaceae,a family of ferns belonging to order Filicales
+6732,Glen_Canyon_Dam,a large dam built in 1964 on the Colorado River in Arizona
+6733,Glendower Owen_Glendower,Welsh chieftain who led a revolt against Henry IV's rule in Wales (1359-1416)
+6734,Glengarry,a Scottish cap with straight sides and a crease along the top from front to back; worn by Highlanders as part of military dress
+6735,Glenn John_Glenn John_Herschel_Glenn_Jr.,made the first orbital rocket-powered flight by a United States astronaut in 1962; later in United States Senate (1921-)
+6736,Glinka Mikhail_Glinka Mikhail_Ivanovich_Glinka,Russian composer (1804-1857)
+6737,Gliridae family_Gliridae,dormice and other Old World forms
+6738,Glis genus_Glis,type genus of the Gliridae
+6739,Global_Positioning_System GPS,a navigational system involving satellites and computers that can determine the latitude and longitude of a receiver on Earth by computing the time difference for signals from different satellites to reach the receiver
+6740,Globicephala genus_Globicephala,pilot whales
+6741,Globigerinidae family_Globigerinidae,a family of protoctists
+6742,Glossinidae family_Glossinidae,flies closely related to the Muscidae: tsetse flies
+6743,Glossodia genus_Glossodia,small genus of Australian orchids
+6744,Glossopsitta genus_Glossopsitta,a genus of Loriinae
+6745,Gloucester,a town in northeastern Massachusetts on Cape Ann to the northeast of Boston; the harbor has been a fishing center for centuries
+6746,Gloucester,a city in southwestern England in Gloucestershire on the Severn
+6747,Gloucestershire,a county in southwestern England in the lower Severn valley
+6748,Gluck Christoph_Willibald_von_Gluck,German composer of more than 100 operas (1714-1787)
+6749,Glyceria genus_Glyceria,manna grass
+6750,Glycine genus_Glycine,genus of Asiatic erect or sprawling herbs: soya bean
+6751,Glycyrrhiza genus_Glycyrrhiza,sticky perennial Eurasian herbs
+6752,Gnaphalium genus_Gnaphalium,large widely distributed genus of coarse hairy herbs with whitish involucres
+6753,Gnathostomata superclass_Gnathostomata,comprising all vertebrates with upper and lower jaws
+6754,Gnetaceae family_Gnetaceae,plants having small unisexual flowers and fleshy or winged fruit: in some classifications includes the genera Ephedra and Welwitschia as well as genus Gnetum
+6755,Gnetales order_Gnetales,chiefly tropical or xerophytic woody plants; practically unknown as fossils but considered close to the ancestral line of angiosperms
+6756,Gnetopsida class_Gnetopsida Gnetophytina subdivision_Gnetophytina Gnetophyta,gymnospermous flowering plants; supposed link between conifers and angiosperms; in some systems classified as a class (Gnetopsida) and in others as a subdivision (Gnetophytina or Gnetophyta)
+6757,Gnostic,an advocate of Gnosticism
+6758,Gnosticism,a religious orientation advocating gnosis as the way to release a person's spiritual element; considered heresy by Christian churches
+6759,Go_Fish,a card game for two players who try to assemble books of cards by asking the opponent for particular cards
+6760,Goa,a state of southwestern India; a former Portuguese colony
+6761,Gobi Gobi_Desert,a desert in central China
+6762,Gobiesocidae family_Gobiesocidae,clingfishes
+6763,Gobiesox genus_Gobiesox,type genus of the Gobiesocidae
+6764,Gobiidae family_Gobiidae,gobies
+6765,Gobio genus_Gobio,true gudgeons
+6766,God Supreme_Being,the supernatural being conceived as the perfect and omnipotent and omniscient originator and ruler of the universe; the object of worship in monotheistic religions
+6767,God's_Will,the omnipotence of a divine being
+6768,God's_Wisdom,the omniscience of a divine being
+6769,Godard Jean_Luc_Godard,French film maker influenced by surrealism; early work explored the documentary use of film; noted for innovative techniques (born in 1930)
+6770,Goddard Robert_Hutchings_Goddard,United States physicist who developed the first successful liquid-fueled rocket (1882-1945)
+6771,Godel Kurt_Godel,United States mathematician (born in Austria) who is remembered principally for demonstrating the limitations of axiomatic systems (1906-1978)
+6772,Godhead Lord Creator Maker Divine God_Almighty Almighty Jehovah,terms referring to the Judeo-Christian God
+6773,Godiva Lady_Godiva,according to legend she rode naked through Coventry in order to persuade her husband not to tax the townspeople so heavily; the only person to look at her as she rode by was a man named Tom and Peeping Tom has become a synonym for voyeur (circa 1040-1080)
+6774,Godspeed,a successful journey; "they wished him Godspeed"
+6775,Godunov Boris_Godunov Boris_Fyodorovich_Godunov,czar of Russia (1551-1605)
+6776,Goebbels Joseph_Goebbels Paul_Joseph_Goebbels,German propaganda minister in Nazi Germany who persecuted the Jews (1897-1945)
+6777,Goethals George_Washington_Goethals,United States army officer and engineer who supervised the construction of the Panama Canal (1858-1928)
+6778,Goethe Johann_Wolfgang_von_Goethe,German poet and novelist and dramatist who lived in Weimar (1749-1832)
+6779,Gog_and_Magog,biblical names of the enemies of God's people who wage war against God at the end of the world; "in the Book of Ezekiel Gog is a ruler from the land of Magog but in the Book of Revelation Gog and Magog are nations under the rule of Satan"
+6780,Gogol Nikolai_Vasilievich_Gogol,Russian writer who introduced realism to Russian literature (1809-1852)
+6781,Golan_Heights Golan,a fortified hilly area between southern Lebanon and southern Syria; "artillery on the Golan Heights can dominate a large area of Israel"
+6782,Golconda,a source of great wealth (especially a mine)
+6783,Goldberg Rube_Goldberg Reuben_Lucius_Goldberg,United States cartoonist who drew intricate diagrams of very complicated and impractical contraptions that accomplished little or nothing (1883-1970)
+6784,Golden_Age,(classical mythology) the first and best age of the world, a time of ideal happiness, prosperity, and innocence; by extension, any flourishing and outstanding period
+6785,Golden_Delicious Yellow_Delicious,a sweet eating apple with yellow skin
+6786,Golden_Fleece,in Greek mythology, a fleece of gold owned by the king of Colchis and guarded in a sacred grove by a dragon; recovered by Jason and the Argonauts
+6787,Golden_Gate,a strait in western California that connects the San Francisco Bay with the Pacific Ocean; discovered in 1579 by Sir Francis Drake
+6788,Golden_Gate_Bridge,a suspension bridge across the Golden Gate
+6789,Golden_Horde,a Mongolian army that swept over eastern Europe in the 13th century
+6790,Golden_Rule,a command based on Jesus' words in the Sermon on the Mount; "Whatsoever ye would that men do unto you, do you even so unto them" (Matthew 7:12)
+6791,Goldie's_fern Goldie's_shield_fern goldie's_wood_fern Dryopteris_goldiana,North American fern with a blackish lustrous stipe
+6792,Golding William_Golding Sir_William_Gerald_Golding,English novelist (1911-1993)
+6793,Goldman Emma_Goldman,United States anarchist (born in Russia) who opposed conscription; was deported to the Soviet Union in 1919 (1869-1940)
+6794,Goldmark Peter_Goldmark Peter_Carl_Goldmark,United States inventor (born in Hungary) who made the first TV broadcast in 1940 and invented the long-playing record in 1948 and pioneered videocassette recording (1906-1977)
+6795,Goldoni Carlo_Goldoni,prolific Italian dramatist (1707-1793)
+6796,Goldsboro,a town that is a major tobacco center in eastern North Carolina
+6797,Goldsmith Oliver_Goldsmith,Irish writer of novels and poetry and plays and essays (1728-1774)
+6798,Goldwyn Sam_Goldwyn Samuel_Goldwyn,United States film maker (born in Poland) who founded his own film company and later merged with Louis B. Mayer (1882-1974)
+6799,Golgi Camillo_Golgi,Italian histologist noted for work on the structure of the nervous system and for his discovery of Golgi bodies (1844-1926)
+6800,Golgi's_cell Golgi_cell,a neuron in the cerebral cortex with short dendrites and with either a long axon or a short axon that ramifies in the grey matter
+6801,Golgi_body Golgi_apparatus Golgi_complex dictyosome,a netlike structure in the cytoplasm of animal cells (especially in those cells that produce secretions)
+6802,Goliath,(Old Testament) a giant Philistine warrior who was slain by David with a slingshot
+6803,Goma,a city in eastern Congo at the northern end of Lake Kivu near the border with Rwanda
+6804,Gombrowicz Witold_Gombrowicz,Polish author (1904-1969)
+6805,Gomorrah Gomorrha,(Old Testament) an ancient city near the Dead Sea that (along with Sodom) was destroyed by God for the vice and depravity of its inhabitants
+6806,Gompers Samuel_Gompers,United States labor leader (born in England) who was president of the American Federation of Labor from 1886 to 1924 (1850-1924)
+6807,Gomphotheriidae family_Gomphotheriidae,elephants extinct since the Pleistocene
+6808,Gomphotherium genus_Gomphotherium,type genus of the Gomphotheriidae
+6809,Gomphrena genus_Gomphrena,genus of tropical herbs or subshrubs having flowers in close heads; tropical America and Australia
+6810,Goncourt Edmond_de_Goncourt Edmond_Louis_Antoine_Huot_de_Goncourt,French writer who collaborated with his brother Jules de Goncourt on many books and who in his will established the Prix Goncourt (1822-1896)
+6811,Goncourt Jules_de_Goncourt Jules_Alfred_Huot_de_Goncourt,French writer who collaborated with his brother Edmond de Goncourt on many books (1830-1870)
+6812,Gond,a member of a formerly tribal people in south central India
+6813,Gondi,a Dravidian language spoken by the Gond in south central India
+6814,Gondwanaland,a hypothetical continent that (according to plate tectonic theory) broke up later into India and Australia and Africa and South America and Antarctica
+6815,Gongora Luis_de_Gongora_y_Argote,a Spanish poet whose work was characterized by an affected elegance of style (1561-1627)
+6816,Gongorism,an affected elegance of style that was introduced into Spanish literature by the poet Gongora
+6817,Gongorist,a practitioner of the affected elegant style of the Spanish poet Gongora
+6818,Goniopteris genus_Goniopteris,terrestrial ferns of Florida and West Indies to Central and South America
+6819,Gonne Maud_Gonne,Irish patriot and a founder of the Sinn Fein (1865-1953)
+6820,Gonorhynchidae family_Gonorhynchidae,coextensive with the genus Gonorhynchus
+6821,Gonorhynchus genus_Gonorhynchus,slender cylindrical marine fishes lacking air bladders and teeth
+6822,Good_Friday,Friday before Easter
+6823,Goodall Jane_Goodall,English zoologist noted for her studies of chimpanzees in the wild (born in 1934)
+6824,Goodenia,a genus of shrubs and herbs that grow in Australia and New Guinea and Malaysia and southeast Asia
+6825,Goodeniaceae family_Goodeniaceae Goodenia_family,a family of sappy plants that grow in Australasia and southeast China
+6826,Goodman Benny_Goodman Benjamin_David_Goodman King_of_Swing,United States clarinetist who in 1934 formed a big band (including black as well as white musicians) and introduced a kind of jazz known as swing (1909-1986)
+6827,Goodyear Charles_Goodyear,United States inventor of vulcanized rubber (1800-1860)
+6828,Goodyera genus_Goodyera,genus of small orchids of the northern hemisphere with creeping rhizomes and stalked ovate leaves and small flowers
+6829,Goofy,a cartoon character created by Walt Disney
+6830,Google,a widely used search engine that uses text-matching techniques to find web pages that are important and relevant to a user's search
+6831,Gopherus genus_Gopherus,gopher tortoises
+6832,Gorbachev Mikhail_Gorbachev Mikhail_Sergeyevich_Gorbachev,Soviet statesman whose foreign policy brought an end to the Cold War and whose domestic policy introduced major reforms (born in 1931)
+6833,Gordian_knot,any very difficult problem; insoluble in its own terms
+6834,Gordian_knot,an intricate knot tied by Gordius, the king of Phrygia, and cut by the sword of Alexander the Great after he heard that whoever undid it would become ruler of Asia
+6835,Gordimer Nadine_Gordimer,South African novelist and short-story writer whose work describes the effects of apartheid (born in 1923)
+6836,Gordius,legendary king of ancient Phrygia who was said to be responsible for the Gordian knot
+6837,Gordon_setter,a Scottish breed with a black-and-tan coat
+6838,Gore Al_Gore Albert_Gore_Jr.,Vice President of the United States under Bill Clinton (born in 1948)
+6839,Gorgas William_Crawford_Gorgas,United States Army surgeon who suppressed yellow fever in Havana and in the Panama Canal Zone (1854-1920)
+6840,Gorgon,(Greek mythology) any of three winged sister monsters and the mortal Medusa who had live snakes for hair; a glance at Medusa turned the beholder to stone
+6841,Gorgonacea suborder_Gorgonacea Gorgoniacea suborder_Gorgoniacea,red corals and sea fans
+6842,Gorgonocephalus genus_Gorgonocephalus,basket stars
+6843,Goring Goering Hermann_Goring Hermann_Goering Hermann_Wilhelm_Goring,German politician in Nazi Germany who founded the Gestapo and mobilized Germany for war (1893-1946)
+6844,Gorky Maksim_Gorky Gorki Maxim_Gorki Aleksey_Maksimovich_Peshkov Aleksey_Maximovich_Peshkov,Russian writer of plays and novels and short stories; noted for his depiction of social outcasts
+6845,Gosainthan,a mountain in the Himalayas in Tibet (26,290 feet high)
+6846,Gospel Gospels evangel,the four books in the New Testament (Matthew, Mark, Luke, and John) that tell the story of Christ's life and teachings
+6847,Gossypium genus_Gossypium,herbs and shrubs and small trees: cotton
+6848,Gota_Canal,a canal for small oceangoing ships to enter Lake Vanern in Sweden
+6849,Goteborg Goeteborg Gothenburg,a port in southwestern Sweden; second largest city in Sweden
+6850,Goth,one of the Teutonic people who invaded the Roman Empire in the 3rd to 5th centuries
+6851,Gothic,extinct East Germanic language of the ancient Goths; the only surviving record being fragments of a 4th-century translation of the Bible by Bishop Ulfilas
+6852,Gothic Gothic_architecture,a style of architecture developed in northern France that spread throughout Europe between the 12th and 16th centuries; characterized by slender vertical piers and counterbalancing buttresses and by vaulting and pointed arches
+6853,Gothic black_letter,a heavy typeface in use from 15th to 18th centuries
+6854,Gothic_arch,a pointed arch; usually has a joint (instead of a keystone) at the apex
+6855,Gothic_romance,a romance that deals with desolate and mysterious and grotesque events
+6856,Gothic_romancer,a writer of Gothic romances
+6857,Gotterdammerung Ragnarok Twilight_of_the_Gods,myth about the ultimate destruction of the gods in a battle with evil
+6858,Gouda Gouda_cheese,mild cream-colored Dutch cheese shaped in balls
+6859,Goudy Frederic_Goudy Frederic_William_Goudy,United States printer noted for designing typefaces (1865-1947)
+6860,Gould Jay_Gould,United States financier who gained control of the Erie Canal and who caused a financial panic in 1869 when he attempted to corner the gold market (1836-1892)
+6861,Gould Stephen_Jay_Gould,United States paleontologist and popularizer of science (1941-2002)
+6862,Gounod Charles_Francois_Gounod,French composer best remembered for his operas (1818-1893)
+6863,Governador_Valadares,a city in eastern Brazil to the northeast of Belo Horizonte
+6864,Government_Accounting_Office GAO United_States_Government_Accounting_Office,an independent nonpartisan federal agency that acts as the investigative arm of Congress making the executive branch accountable to Congress and the government accountable to citizens of the United States
+6865,Goya Goya_y_Lucientes Francisco_Goya Francisco_de_Goya Francisco_Jose_de_Goya Francisco_Jose_de_Goya_y_Lucientes,Spanish painter well known for his portraits and for his satires (1746-1828)
+6866,Graafian_follicle,a vascular body in a mammalian ovary enclosing a developing egg
+6867,Grace,(Greek mythology) one of three sisters who were the givers of beauty and charm; a favorite subject for sculptors
+6868,Gracilariidae Gracillariidae family_Gracilariidae,leaf miners
+6869,Gracula genus_Gracula,mynas
+6870,Graf Steffi_Graf Stephanie_Graf,German tennis player who won seven women's singles titles at Wimbledon (born in 1969)
+6871,Graham Billy_Graham William_Franklin_Graham,United States evangelical preacher famous as a mass evangelist (born in 1918)
+6872,Graham Martha_Graham,United States dancer and choreographer whose work was noted for its austerity and technical rigor (1893-1991)
+6873,Grahame Kenneth_Grahame,English writer (born in Scotland) of children's stories (1859-1932)
+6874,Grainger Percy_Grainger Percy_Aldridge_Grainger George_Percy_Aldridge_Grainger,United States composer (born in Australia) who lived in London and collected English folk songs (1882-1961)
+6875,Gram Hans_C._J._Gram,Danish physician and bacteriologist who developed a method of staining bacteria to distinguish among them (1853-1938)
+6876,Gram's_method Gram_method Gram's_procedure Gram's_stain Gram_stain,a staining technique used to classify bacteria; bacteria are stained with gentian violet and then treated with Gram's solution; after being decolorized with alcohol and treated with safranine and washed in water, those that retain the gentian violet are Gram-positive and those that do not retain it are Gram-negative
+6877,Gram's_solution,a solution used in staining bacteria by Gram's method; consists of one part iodine and two parts potassium iodide and 300 parts water
+6878,Graminales order_Graminales,grasses; sedges; rushes
+6879,Gramineae family_Gramineae Graminaceae family_Graminaceae Poaceae family_Poaceae grass_family,the grasses: chiefly herbaceous but some woody plants including cereals; bamboo; reeds; sugar cane
+6880,Grammatophyllum genus_Grammatophyllum,small genus of large epiphytic or terrestrial orchids of southeastern Asia to Polynesia; the giants of the Orchidaceae having long narrow leaves and drooping flower clusters often 6 feet long
+6881,Gran_Santiago Santiago Santiago_de_Chile capital_of_Chile,the capital and largest city of Chile; located in central Chile; one of the largest cities in South America
+6882,Granada,a city in southeastern Spain that was the capital of the Moorish kingdom until it was captured by Ferdinand and Isabella in 1492; site of the Alhambra (a palace and fortress built by Moors in the Middle Ages) which is now a major tourist attraction
+6883,Grand_Canal,the major waterway in Venice, Italy
+6884,Grand_Canal,an inland waterway 1000 miles long in eastern China; extends from Tianjin in the north to Hangzhou in the south
+6885,Grand_Canyon,the enormous gorge of the Colorado River in northern Arizona
+6886,Grand_Canyon_National_Park,a national park in Arizona including the mile deep canyon of the Colorado River which shows geologic features and fossil plants and animals
+6887,Grand_Guignol,a play of a macabre or horrific nature
+6888,Grand_Inquisitor,director of the court of Inquisition (especially in Spain and Portugal)
+6889,Grand_Island,a town in south central Nebraska
+6890,Grand_Marnier,an orange-flavored French liqueur
+6891,Grand_National,an annual steeplechase run in Liverpool, England
+6892,Grand_Prix,one of several international races
+6893,Grand_Rapids,a city in west central Michigan; noted for manufacturing furniture
+6894,Grand_River,a river in southern Michigan that flows northwest to empty into Lake Michigan
+6895,Grand_Teton,a mountain peak in northwestern Wyoming; the highest peak in the Teton Range (13,766 feet high)
+6896,Grand_Teton_National_Park,a national park in Wyoming featuring mountains
+6897,Granicus Battle_of_Granicus_River,the battle in which Alexander won his first major victory against the Persians (334 BC)
+6898,Granny_Smith,apple with a green skin and hard tart flesh
+6899,Grant Cary_Grant,United States actor (born in England) who was the elegant leading man in many films (1904-1986)
+6900,Grant Duncan_Grant Duncan_James_Corrow_Grant,Scottish painter; cousin of Lytton Strachey and member of the Bloomsbury Group (1885-1978)
+6901,Grant Ulysses_Grant Ulysses_S._Grant Ulysses_Simpson_Grant Hiram_Ulysses_Grant President_Grant,18th President of the United States; commander of the Union armies in the American Civil War (1822-1885)
+6902,Granville-Barker Harley_Granville-Barker,English actor and dramatist and critic and director noted for his productions of Shakespearean plays (1877-1946)
+6903,Grappelli Stephane_Grappelli,French jazz violinist (1908-1997)
+6904,Graptophyllum genus_Graptophyllum,caricature plant
+6905,Grass Gunter_Grass Gunter_Wilhelm_Grass,German writer of novels and poetry and plays (born 1927)
+6906,Graves Robert_Graves Robert_Ranke_Graves,English writer known for his interest in mythology and in the classics (1895-1985)
+6907,Graves'_disease exophthalmic_goiter,exophthalmos occurring in association with goiter; hyperthyroidism with protrusion of the eyeballs
+6908,Gray Asa_Gray,United States botanist who specialized in North American flora and who was an early supporter of Darwin's theories of evolution (1810-1888)
+6909,Gray Louis_Harold_Gray,English radiobiologist in whose honor the gray (the SI unit of energy for the absorbed dose of radiation) was named (1905-1965)
+6910,Gray Robert_Gray,American navigator who twice circumnavigated the globe and who discovered the Columbia River (1755-1806)
+6911,Gray Thomas_Gray,English poet best known for his elegy written in a country churchyard (1716-1771)
+6912,Graz,an industrial city is southeastern Austria
+6913,Great_Attractor,a massive grouping of galaxies in the direction of Centaurus and Hydra whose gravitational attraction is believed to cause deviations in the paths of other galaxies
+6914,Great_Australian_Bight,a wide bay of the Indian Ocean in southern Australia; notorious for storms
+6915,Great_Barrier_Reef,the largest coral reef in the world; in the Coral Sea off the northeastern coast of Australia
+6916,Great_Bear Ursa_Major,a constellation outside the zodiac that rotates around the North Star
+6917,Great_Britain GB,an island comprising England and Scotland and Wales
+6918,Great_Dane,very large powerful smooth-coated breed of dog
+6919,Great_Depression,the economic crisis beginning with the stock market crash in 1929 and continuing through the 1930s
+6920,Great_Divide,that part of the continental divide formed by the Rocky Mountains in the United States
+6921,Great_Dividing_Range Eastern_Highlands,a mountain range running along the eastern coast of Australia
+6922,Great_Falls,a town in central Montana on the Missouri river; a center of extensive hydroelectric power
+6923,Great_Lakes,a group of five large, interconnected lakes in central North America
+6924,Great_Plains Great_Plains_of_North_America,a vast prairie region extending from Alberta and Saskatchewan and Manitoba in Canada south through the west central United States into Texas; formerly inhabited by Native Americans
+6925,Great_Pyrenees,bred of large heavy-coated white dogs resembling the Newfoundland
+6926,Great_Rift_Valley,( geology) a depression in southwestern Asia and eastern Africa; extends from the valley of the Jordan River to Mozambique; marked by geological faults
+6927,Great_Russian,a member of the chief stock of Russian people living in European Russia; used to distinguish ethnic Russians from other peoples incorporated into Russia
+6928,Great_Salt_Lake,a shallow body of salt water in northwestern Utah
+6929,Great_Sandy_Desert,a desert region in northwestern Australia to the north of the Gibson Desert
+6930,Great_Schism,the period from 1378 to 1417 during which there were two papacies in the Roman Catholic Church, one in Rome and one in Avignon
+6931,Great_Seal_of_the_United_States,the seal of the United States government
+6932,Great_Slave_Lake,a lake in the Northwest Territories in northwestern Canada; drained by the Mackenzie River
+6933,Great_Smoky_Mountains,part of the Appalachians between North Carolina and Tennessee
+6934,Great_Smoky_Mountains_National_Park,a national park in Tennessee and North Carolina that includes the highest mountain in the eastern United States
+6935,Great_Victoria_Desert,a desert region in south central Australia to the north of the Nullarbor Plain
+6936,Greater_Antilles,a group of islands in the western West Indies
+6937,Greater_New_Orleans_Bridge,twin cantilever bridges across the Mississippi at New Orleans
+6938,Greater_Sunda_Islands,a chain of islands including Borneo and Celebes and Java and Sumatra
+6939,Greater_Swiss_Mountain_dog,the largest of the four Swiss breeds
+6940,Grecian,a native or resident of Greece
+6941,Greco-Roman_deity Graeco-Roman_deity,a deity of classical mythology
+6942,Greco-Roman_wrestling,a style of wrestling where the wrestlers are forbidden to tackle or trip or use holds below the waist
+6943,Greece,ancient Greece; a country of city-states (especially Athens and Sparta) that reached its peak in the fifth century BCE
+6944,Greece Hellenic_Republic Ellas,a republic in southeastern Europe on the southern part of the Balkan peninsula; known for grapes and olives and olive oil
+6945,Greek Hellene,a native or inhabitant of Greece
+6946,Greek Hellenic Hellenic_language,the Hellenic branch of the Indo-European family of languages
+6947,Greek_Catholic,a member of the Greek Orthodox Church
+6948,Greek_Orthodox_Church Greek_Church,state church of Greece; an autonomous part of the Eastern Orthodox Church
+6949,Greek_alphabet,the alphabet used by ancient Greeks
+6950,Greek_architecture,the architecture of ancient Greece
+6951,Greek_cross,a cross with each of the four arms the same length
+6952,Greek_deity,a deity worshipped by the ancient Greeks
+6953,Greek_fire,a mixture used by Byzantine Greeks that was often shot at adversaries; catches fire when wetted
+6954,Greek_mode,any of the descending diatonic scales in the music of classical Greece
+6955,Greek_monetary_unit,monetary unit in Greece
+6956,Greek_mythology,the mythology of the ancient Greeks
+6957,Greek_partridge rock_partridge Alectoris_graeca,of mountainous areas of southern Europe
+6958,Greek_valerian Polemonium_reptans,erect or spreading perennial of the eastern United States
+6959,Greeley Horace_Greeley,United States journalist with political ambitions (1811-1872)
+6960,Green,an environmentalist who belongs to the Green Party
+6961,Green Green_River,a river that rises in western Wyoming and flows southward through Utah to become a tributary of the Colorado River
+6962,Green William_Green,United States labor leader who was president of the American Federation of Labor from 1924 to 1952 and who led the struggle with the Congress of Industrial Organizations (1873-1952)
+6963,Green_Bay,a city of eastern Wisconsin on an arm of Lake Michigan
+6964,Green_Beret,a soldier who is a member of the United States Army Special Forces
+6965,Green_Line,the border marking the boundaries of the land that Israel won in its 1948 war of independence
+6966,Green_Mountains,a range of the Appalachian Mountains that extends from south to north through Vermont
+6967,Green_Party,an environmentalist political party
+6968,Greenback_Party,a former political party in the United States; organized in 1874; opposed any reduction in the amount of paper money in circulation
+6969,Greenberg Joseph_Greenberg,United States linguist who studied the historical relations among 5,000 languages (1916-2001)
+6970,Greene Graham_Greene Henry_Graham_Greene,English novelist and Catholic (1904-1991)
+6971,Greenland Gronland Kalaallit_Nunaat,the largest island in the world; lies between the North Atlantic and the Arctic Ocean; a self-governing province of Denmark
+6972,Greenland_Sea,part of the Arctic Ocean to the north of Iceland
+6973,Greenpeace,an international organization that works for environmental conservation and the preservation of endangered species
+6974,Greensboro,a city of north central North Carolina
+6975,Greenville,a town in northwest South Carolina in the Piedmont
+6976,Greenville,a city in eastern North Carolina; tobacco market
+6977,Greenville,a town in western Mississippi on the Mississippi River to the north of Vicksburg
+6978,Greenwich,a borough of Greater London on the Thames; zero degrees of longitude runs through Greenwich; time is measured relative to Greenwich Mean Time
+6979,Greenwich_Mean_Time Greenwich_Time GMT universal_time UT UT1,the local time at the 0 meridian passing through Greenwich, England; it is the same everywhere
+6980,Greenwich_Meridian,the meridian passing through Greenwich; was internationally adopted as the earth's zero of longitude in 1884
+6981,Greenwich_Village Village,a mainly residential district of Manhattan; `the Village' became a home for many writers and artists in the 20th century
+6982,Gregarinida order_Gregarinida,an order in the subclass Telosporidia
+6983,Gregorian_calendar New_Style_calendar,the solar calendar now in general use, introduced by Gregory XIII in 1582 to correct an error in the Julian calendar by suppressing 10 days, making Oct 5 be called Oct 15, and providing that only centenary years divisible by 400 should be leap years; it was adopted by Great Britain and the American colonies in 1752
+6984,Gregorian_calendar_month,a month in the Gregorian calendar
+6985,Gregorian_chant,a variety of plainsong named after Pope Gregory I
+6986,Gregory Gregory_I Saint_Gregory_I St._Gregory_I Gregory_the_Great,(Roman Catholic Church) an Italian pope distinguished for his spiritual and temporal leadership; a saint and Doctor of the Church (540?-604)
+6987,Gregory Gregory_Nazianzen Gregory_of_Nazianzen St._Gregory_of_Nazianzen,(Roman Catholic Church) a church father known for his constant fight against perceived heresies; a saint and Doctor of the Church (329-391)
+6988,Gregory Gregory_VII Hildebrand,the Italian pope who fought to establish the supremacy of the pope over the Roman Catholic Church and the supremacy of the church over the state (1020-1085)
+6989,Gregory Gregory_XII Angelo_Correr,the Italian pope from 1406 to 1415 who worked to end the Great Schism and who retired to make it possible (1327-1417)
+6990,Gregory Gregory_XIII Ugo_Buoncompagni,the pope who sponsored the introduction of the modern calendar (1572-1585)
+6991,Gregory Gregory_XVI Bartolomeo_Alberto_Capillari,Italian pope from 1831 to 1846; conservative in politics and theology; worked to propagate Catholicism in England and the United States (1765-1846)
+6992,Grenada,an island state in the West Indies in the southeastern Caribbean Sea; an independent state within the British Commonwealth
+6993,Grenada_dollar,the basic unit of money in Grenada
+6994,Grenadian,a native or inhabitant of Grenada
+6995,Grenoble,a city in southeastern France on the Isere River
+6996,Gresham Sir_Thomas_Gresham,English financier (1519-1579)
+6997,Gresham's_Law,(economics) the principle that when two kinds of money having the same denominational value are in circulation the intrinsically more valuable money will be hoarded and the money of lower intrinsic value will circulate more freely until the intrinsically more valuable money is driven out of circulation; bad money drives out good; credited to Sir Thomas Gresham
+6998,Gretzky Wayne_Gretzky,high-scoring Canadian ice-hockey player (born in 1961)
+6999,Grewia genus_Grewia,a genus of tropical and subtropical Old World climbers or shrubs or trees
+7000,Grey Charles_Grey Second_Earl_Grey,Englishman who as Prime Minister implemented social reforms including the abolition of slavery throughout the British Empire (1764-1845)
+7001,Grey Lady_Jane_Grey,Queen of England for nine days in 1553; she was quickly replaced by Mary Tudor and beheaded for treason (1537-1554)
+7002,Grey Zane_Grey,United States writer of western adventure novels (1875-1939)
+7003,Grias genus_Grias,anchovy pear tree
+7004,Grieg Edvard_Grieg Edvard_Hagerup_Grieg,Norwegian composer whose work was often inspired by Norwegian folk music (1843-1907)
+7005,Griffith D._W._Griffith David_Lewelyn_Wark_Griffith,United States film maker who was the first to use flashbacks and fade-outs (1875-1948)
+7006,Grim_Reaper Reaper,Death personified as an old man or a skeleton with a scythe
+7007,Grimes'_golden,yellow apple that ripens in late autumn; eaten raw
+7008,Grimm Jakob_Grimm Jakob_Ludwig_Karl_Grimm,the older of the two Grimm brothers remembered best for their fairy stories; also author of Grimm's law describing consonant changes in Germanic languages (1785-1863)
+7009,Grimm Wilhelm_Grimm Wilhelm_Karl_Grimm,the younger of the two Grimm brothers remembered best for their fairy stories (1786-1859)
+7010,Grimm's_law,a sound law relating German consonants and consonants in other Indo-European languages
+7011,Grindelia genus_Grindelia,large genus of coarse gummy herbs of western North and Central America
+7012,Grindelia_robusta,perennial gumweed of California and Baja California
+7013,Gris Jaun_Gris,Spanish cubist painter (1887-1927)
+7014,Griselinia genus_Griselinia,evergreen shrubs of New Zealand and South America
+7015,Groenlandia genus_Groenlandia,a monocotyledonous genus of the family Potamogetonaceae
+7016,Gromyko Andrei_Gromyko Andrei_Andreyevich_Gromyko,Soviet ambassador to the United States and to the United Nations (1909-1989)
+7017,Gropius Walter_Gropius,United States architect (born in Germany) and founder of the Bauhaus school (1883-1969)
+7018,Grossulariaceae family_Grossulariaceae gooseberry_family,in some classifications considered a part of the family Saxifragaceae: plants whose fruit is a berry
+7019,Grotius Hugo_Grotius Huig_de_Groot,Dutch jurist and diplomat whose writings established the basis of modern international law (1583-1645)
+7020,Groundhog_Day February_2,if the ground hog emerges and sees his shadow on this day, there will be 6 more weeks of winter
+7021,Groves Leslie_Richard_Groves,United States general who served as military director of the atomic bomb project (1896-1970)
+7022,Grozny Groznyy,the capital of Chechnya in southwestern Russia; center of extensive oil fields
+7023,Grub_Street,the world of literary hacks
+7024,Gruidae family_Gruidae,cranes
+7025,Gruiformes order_Gruiformes,inland marsh-dwelling birds with long legs and necks and bills that wade in water in search of food: cranes; rails; bustards
+7026,Grus Crane,a small constellation in the southern hemisphere near Phoenix
+7027,Grus genus_Grus,type genus of the Gruidae: typical cranes
+7028,Gruyere,Swiss cheese with small holes
+7029,Gryllidae family_Gryllidae,crickets
+7030,Guadalajara,a city in southwestern Mexico; a popular health resort and site of architecture from the Spanish colonial era
+7031,Guadalcanal,a mountainous island; the largest of the Solomon Islands in the independent state that is a member of the British Commonwealth
+7032,Guadalcanal Battle_of_Guadalcanal,a battle in World War II in the Pacific (1942-1943); the island was occupied by the Japanese and later recaptured by American forces
+7033,Guadalupe_Island,a Mexican island in the Pacific to the west of Baja California
+7034,Guadalupe_Mountains,a mountain range in southern New Mexico and western Texas; the southern extension of the Sacramento Mountains
+7035,Guadalupe_Mountains_National_Park,a national park in Texas that has the highest point in Texas; includes desert wilderness and the ancient Apache hunting grounds
+7036,Guadalupe_cypress Cupressus_guadalupensis,relatively low wide-spreading endemic on Guadalupe Island; cultivated for its bluish foliage
+7037,Guadeloupe,an island territory of France located in the eastern West Indies; tourism is the major industry
+7038,Guaiacum genus_Guaiacum,small genus of evergreen resinous trees or shrubs of warm and tropical America
+7039,Guallatiri,the world's highest volcano; in the Andes in northern Chile; last erupted in 1959
+7040,Guam GU,the largest and southernmost island in the Marianas which is administered as a territory of the United States; it was ceded by Spain to the United States in 1898
+7041,Guangdong Kwangtung Guangdong_province,a province in southern China
+7042,Guangzhou Kuangchou Kwangchow Canton,a city on the Zhu Jiang delta in southern China; the capital of Guangdong province and a major deep-water port
+7043,Guantanamo,a city in southeastern Cuba; site of a United States naval base
+7044,Guantanamo_Bay,an inlet of the Caribbean Sea; a United States naval station was established on the bay in 1903
+7045,Guarani,a member of the South American people living in Paraguay and Bolivia
+7046,Guarani,the language spoken by the Guarani of Paraguay and Bolivia
+7047,Guarneri Guarnieri Guarnerius Andrea_Guarneri,founder of a family of Italian violin makers (1626?-1698)
+7048,Guarneri Guarnieri Guarnerius Guiseppe_Guarneri,Italian violin maker and grandson of Andrea Guarneri (1687?-1745)
+7049,Guarnerius,a violin made by a member of the Guarneri family
+7050,Guatemala Republic_of_Guatemala,a republic in Central America; achieved independence from Spain in 1821; noted for low per capita income and illiteracy; politically unstable
+7051,Guatemala_City capital_of_Guatemala,the capital and largest city of Guatemala
+7052,Guatemalan,a native or inhabitant of Guatemala
+7053,Guatemalan_monetary_unit,monetary unit in Guatemala
+7054,Guayaquil,the largest city of Ecuador
+7055,Guernsey,breed of dairy cattle from the island of Guernsey
+7056,Guernsey island_of_Guernsey,a Channel Island to the northwest of Jersey
+7057,Guest Edgar_Guest Edgar_Albert_Guest,United States journalist (born in England) noted for his syndicated homey verse (1881-1959)
+7058,Guevara Ernesto_Guevara Che_Guevara,an Argentine revolutionary leader who was Fidel Castro's chief lieutenant in the Cuban revolution; active in other Latin American countries; was captured and executed by the Bolivian army (1928-1967)
+7059,Guevina genus_Guevina,one species: Chilean nut
+7060,Guggenheim Meyer_Guggenheim,United States industrialist (born in Switzerland) who with his sons established vast mining and metal processing companies (1828-1905)
+7061,Guggenheim Solomon_Guggenheim,United States philanthropist; son of Meyer Guggenheim who created several foundations to support the arts (1861-1949)
+7062,Guiana,a geographical region of northeastern South America including Guyana and Surinam
+7063,Guiana_Highlands,a mountainous tableland in northern South America; extends from Venezuela into Guyana and northern Brazil
+7064,Guillain-Barre_syndrome infectious_polyneuritis Landry's_paralysis,a form of peripheral polyneuritis characterized by pain and weakness and sometimes paralysis of the limbs; cause is unknown
+7065,Guinea Republic_of_Guinea French_Guinea,a republic in western Africa on the Atlantic; formerly a French colony; achieved independence from France in 1958
+7066,Guinea-Bissau Republic_of_Guinea-Bissau Guine-Bissau Portuguese_Guinea,a republic on the northwestern coast of Africa; recognized as independent by Portugal in 1974
+7067,Guinea-Bissau_monetary_unit,monetary unit in Guinea-Bissau
+7068,Guinea-Bissau_peso peso,the basic unit of money in Guinea-Bissau; equal to 100 centavos
+7069,Guinea_pepper negro_pepper Xylopia_aethiopica,tropical west African evergreen tree bearing pungent aromatic seeds used as a condiment and in folk medicine
+7070,Guinea_worm Dracunculus_medinensis,parasitic roundworm of India and Africa that lives in the abdomen or beneath the skin of humans and other vertebrates
+7071,Guinea_worm_disease Guinea_worm dracunculiasis,a painful and debilitating infestation contracted by drinking stagnant water contaminated with Guinea worm larvae that can mature inside a human's abdomen until the worm emerges through a painful blister in the person's skin
+7072,Guinean,a native or inhabitant of Guinea
+7073,Guinean_franc,the basic unit of money in Guinea
+7074,Guinean_monetary_unit,monetary unit in Guinea
+7075,Guinevere Guenevere,(Arthurian legend) wife of King Arthur; in some versions of the legend she became Lancelot's lover and that led to the end of the Knights of the Round Table
+7076,Guinness,a kind of bitter stout
+7077,Guinness Alec_Guinness Sir_Alec_Guinness,English stage and screen actor noted for versatility (1914-2000)
+7078,Gujarat Gujerat,an industrialized state in western India that includes parts of Bombay
+7079,Gujarati Gujerati,a member of the people of Gujarat
+7080,Gujarati Gujerati,the Indic language spoken by the people of India who live in Gujarat in western India
+7081,Gula,the Babylonian goddess of healing and consort of Ninurta
+7082,Gulf_Coast,a seashore of the Gulf of Mexico
+7083,Gulf_States,a region of the United States comprising states bordering the Gulf of Mexico; Alabama and Florida and Louisiana and Mississippi and Texas
+7084,Gulf_States,the countries in southwestern Asia that border the Persian Gulf
+7085,Gulf_War_syndrome Persian_Gulf_illness,a medical condition of uncertain origin that affected many veterans of the 1991 Gulf War; characterized by fatigue and headache and dizziness and nausea and rashes and joint pain and respiratory disorders
+7086,Gulf_of_Aden,arm of the Indian Ocean at the entrance to the Red Sea
+7087,Gulf_of_Alaska,a gulf of the Pacific Ocean between the Alaska Peninsula and the Alexander Archipelago
+7088,Gulf_of_Antalya,a gulf of the Mediterranean Sea in southwestern Turkey
+7089,Gulf_of_Aqaba Gulf_of_Akaba,a northeastern arm of the Red Sea; between the Sinai Peninsula (Egypt) and Saudi Arabia
+7090,Gulf_of_Bothnia,a northern arm of the Baltic Sea; between Sweden and Finland
+7091,Gulf_of_California Sea_of_Cortes,a gulf to the west of the mainland of Mexico
+7092,Gulf_of_Campeche Golfo_de_Campeche Bay_of_Campeche,a part of the Gulf of Mexico to the west of Yucatan
+7093,Gulf_of_Carpentaria Carpentaria,a wide shallow inlet of the Arafura Sea in northern Australia
+7094,Gulf_of_Corinth Gulf_of_Lepanto,inlet of the Ionian Sea between central Greece and the Peloponnesus
+7095,Gulf_of_Finland,an eastern arm of the Baltic Sea; between Finland and Estonia
+7096,Gulf_of_Guinea,a gulf off the southwest coast of Africa
+7097,Gulf_of_Martaban,an arm of the Andaman Sea off southern Myanmar
+7098,Gulf_of_Mexico Golfo_de_Mexico,an arm of the Atlantic to the south of the United States and to the east of Mexico
+7099,Gulf_of_Ob Bay_of_Ob,an inlet of the Kara Sea in western Siberia
+7100,Gulf_of_Oman,an arm of the Arabian Sea connecting it with the Persian Gulf
+7101,Gulf_of_Riga,an inlet of the Baltic Sea between Latvia and Estonia
+7102,Gulf_of_Saint_Lawrence Gulf_of_St._Lawrence,an arm of the northwest Atlantic Ocean off the southeastern coast of Canada
+7103,Gulf_of_Sidra,wide inlet of the Mediterranean Sea on the north coast of Libya
+7104,Gulf_of_Suez,a northwestern arm of the Red Sea linked to the Mediterranean by the Suez Canal
+7105,Gulf_of_Tehuantepec,an arm of the Pacific in southern Mexico
+7106,Gulf_of_Thailand Gulf_of_Siam,an arm of the South China Sea between Indochina and the Malay Peninsula
+7107,Gulf_of_Venice,an arm of the Adriatic Sea
+7108,Gulf_stream,a warm ocean current that flows from the Gulf of Mexico northward through the Atlantic Ocean
+7109,Gulliver,a fictional Englishman who travels to the imaginary land of Lilliput in a satirical novel by Jonathan Swift
+7110,Gulo genus_Gulo,a genus of Mustelidae
+7111,Gulu,a city in northern Uganda
+7112,Gunpowder_Plot,a conspiracy in 1605 in England to blow up James I and the Houses of Parliament to avenge the persecution of Catholics in England; led by Guy Fawkes
+7113,Gunter's_chain,a unit of length (22 yards)
+7114,Gur Voltaic,a group of Niger-Congo languages spoken primarily in southeastern Mali and northern Ghana
+7115,Gurkha,a member of the Nepalese force that has been part of the British army for 200 years; known for fierceness in combat
+7116,Gurkha,a member of Hindu people descended from brahmins and Rajputs who live in Nepal
+7117,Guru,each of the first ten leaders of the Sikh religion
+7118,Gustavus Gustavus_I,king of Sweden who established Lutheranism as the state religion (1496-1560)
+7119,Gustavus Gustavus_II Gustavus_Adolphus,king of Sweden whose victories in battle made Sweden a European power; his domestic reforms made Sweden a modern state; in 1630 he intervened on the Protestant side of the Thirty Years' War and was killed in the battle of Lutzen (1594-1632)
+7120,Gustavus Gustavus_III,king of Sweden who increased the royal power and waged an unpopular war against Russia (1746-1792)
+7121,Gustavus Gustavus_IV,king of Sweden whose losses to Napoleon I led to his being deposed in 1809 (1778-1837)
+7122,Gustavus Gustavus_V,king of Sweden who kept Sweden neutral during both World War I and II (1858-1950)
+7123,Gustavus Gustavus_VI,the last king of Sweden to have any real political power (1882-1973)
+7124,Gutenberg Johann_Gutenberg Johannes_Gutenberg,German printer who was the first in Europe to print using movable type and the first to use a press (1400-1468)
+7125,Guthrie Woody_Guthrie Woodrow_Wilson_Guthrie,United States folk singer and songwriter (1912-1967)
+7126,Gutierrezia genus_Gutierrezia,sticky perennial herbs and subshrubs of western North America and warm South America
+7127,Guttiferae family_Guttiferae Clusiaceae family_Clusiaceae St_John's_wort_family,widely distributed family of chiefly tropical trees and shrubs and vines that produce oils and resins and some usable timber
+7128,Guttiferales order_Guttiferales,used in some classifications; coextensive with Parietales
+7129,Guy,an effigy of Guy Fawkes that is burned on a bonfire on Guy Fawkes Day
+7130,Guy_Fawkes_Day,day for the celebration of the discovery of the Gunpowder Plot
+7131,Guyana Co-operative_Republic_of_Guyana British_Guiana,a republic in northeastern South America; formerly part of the British Empire, but it achieved independence from the United Kingdom in 1966
+7132,Guyana_dollar,the basic unit of money in Guyana
+7133,Guyanese,a native or inhabitant of Guyana
+7134,Gwydion,Celtic sky god; a magician; giver of arts and civilization
+7135,Gwyn,Celtic underworld god
+7136,Gwynn Gywn Gynne Nell_Gwynn Nell_Gywn Nell_Gwynne Eleanor_Gwynn Eleanor_Gwyn Eleanor_Gwynne,English comedienne and mistress of Charles II (1650-1687)
+7137,Gymnadenia genus_Gymnadenia,small genus of terrestrial orchids of North America and temperate Eurasia
+7138,Gymnadeniopsis genus_Gymnadeniopsis,genus of North American terrestrial orchids usually included in genus Habenaria
+7139,Gymnelis genus_Gymnelis,a genus of Zoarcidae
+7140,Gymnocalycium genus_Gymnocalycium,large genus of low-growing globular South American cacti with spiny ribs covered with many tubercles
+7141,Gymnocarpium genus_Gymnocarpium,oak ferns: in some classification systems included in genus Thelypteris
+7142,Gymnocladus genus_Gymnocladus,small genus of deciduous trees of China and United States having paniculate flowers and thick pulpy pods
+7143,Gymnogyps genus_Gymnogyps,containing solely the California condor
+7144,Gymnophiona order_Gymnophiona,an order of amphibians including caecilians
+7145,Gymnopilus genus_Gymnopilus,a genus of fungus characterized by the orange color of the spore deposit
+7146,Gymnopilus_spectabilis,a fungus with a brownish orange fruiting body and a ring near the top of the stalk; the taste is bitter and the flesh contains psilocybin and psilocin
+7147,Gymnopilus_validipes,a poisonous fungus with a dry cap and a cortina that does not leave much of a ring on the robust stalk
+7148,Gymnopilus_ventricosus,a giant fungus of the Pacific Northwest; has a very thick stalk and the cortina leaves a ring high up on the stalk
+7149,Gymnorhina genus_Gymnorhina,in some classifications placed in the family Laniidae: Australian piping crows
+7150,Gymnospermae class_Gymnospermae Gymnospermophyta division_Gymnospermophyta,plants having naked seeds not enclosed in an ovary; in some systems considered a class (Gymnospermae) and in others a division (Gymnospermophyta); comprises three subdivisions (or classes): Cycadophytina (class Cycadopsida) and Gnetophytina (class Gnetopsida) and Coniferophytina (class Coniferopsida); in some classifications the Coniferophytina are divided into three groups: Pinophytina (class Pinopsida) and Ginkgophytina (class Ginkgopsida) and Taxophytina (class Taxopsida)
+7151,Gymnosporangium genus_Gymnosporangium,genus of fungi that produce galls on cedars and other conifers of genera Juniperus and Libocedrus and causes rust spots on apples and pears and other plants of family Rosaceae
+7152,Gymnura genus_Gymnura,butterfly rays
+7153,Gynura genus_Gynura,genus of Old World tropical herbs: velvet plants
+7154,Gypaetus genus_Gypaetus,in some classifications the type genus of the family Aegypiidae
+7155,Gyps genus_Gyps,a genus of Accipitridae
+7156,Gypsophila genus_Gypsophila,Mediterranean herbs having small white or pink flowers
+7157,Gypsy Gipsy Romany Rommany Romani Roma Bohemian,a member of a people with dark skin and hair who speak Romany and who traditionally live by seasonal work and fortunetelling; they are believed to have originated in northern India but now are living on all continents (but mostly in Europe, North Africa, and North America)
+7158,Gyrinidae family_Gyrinidae,whirligig beetles
+7159,Gyromitra_californica California_false_morel,a gyromitra with a brown puffed up fertile part and a thick fluted stalk; found under conifers in California
+7160,Gyromitra_esculenta brain_mushroom beefsteak_morel,a poisonous gyromitra; the surface of the fertile body is smooth at first and becomes progressively undulating and wrinkled (but never truly pitted); color varies from dull yellow to brown
+7161,Gyromitra_fastigiata Gyromitra_brunnea,a lorchel with deep brownish red fertile part and white stalk
+7162,Gyromitra_gigas,a gyromitra with a large irregular stalk and fertile part that is yellow to brown and wrinkled; has early fruiting time
+7163,Gyromitra_infula saddled-shaped_false_morel,a poisonous fungus; saddle-shaped and dull yellow to brown fertile part is relatively even
+7164,Gyromitra_sphaerospora round-spored_gyromitra,a gyromitra with a brown puffed up fertile part and a rosy pink fluted stalk and smooth round spores; found on hardwood slash east of the Great Plains
+7165,H h,the 8th letter of the Roman alphabet
+7166,HAZMAT,an abbreviation for `hazardous material' used on warning signs; "NO HAZMATS IN TUNNEL"
+7167,HDL_cholesterol,the cholesterol in high-density lipoproteins; the `good' cholesterol; a high level in the blood is thought to lower the risk of coronary artery disease
+7168,HIV,infection by the human immunodeficiency virus
+7169,HMG-CoA_reductase 5-hydroxy-3-methylglutaryl-coenzyme_A_reductase,a liver enzyme that is responsible for producing cholesterol
+7170,Haastia genus_Haastia,genus of New Zealand mat-forming herbs or subshrubs: vegetable sheep
+7171,Habakkuk,a Hebrew minor prophet
+7172,Habakkuk Habacuc Book_of_Habakkuk,an Old Testament book telling Habakkuk's prophecies
+7173,Habenaria genus_Habenaria,chiefly terrestrial orchids with tubers or fleshy roots often having long slender spurs and petals and lip lobes; includes species formerly placed in genus Gymnadeniopsis
+7174,Haber Fritz_Haber,German chemist noted for the synthetic production of ammonia from the nitrogen in air (1868-1934)
+7175,Haber_process Haber-Bosch_process,an industrial process for producing ammonia from nitrogen and hydrogen by combining them under high pressure in the presence of an iron catalyst
+7176,Habsburg Hapsburg,a royal German family that provided rulers for several European states and wore the crown of the Holy Roman Empire from 1440 to 1806
+7177,Hachiman,a Shinto god of war
+7178,Hackelia genus_Hackelia Lappula genus_Lappula,stickweed; beggar's lice
+7179,Had_crime,(Islam) serious crimes committed by Muslims and punishable by punishments established in the Koran; "Had crimes include apostasy from Islam and murder and theft and adultery"
+7180,Hadean Hadean_time Hadean_eon Hadean_aeon Priscoan Priscoan_eon Priscoan_aeon,the earliest eon in the history of the Earth from the first accretion of planetary material (around 4,600 million years ago) until the date of the oldest known rocks (about 3,800 million years ago); no evidence of life
+7181,Hades Aides Aidoneus,(Greek mythology) the god of the underworld in ancient mythology; brother of Zeus and husband of Persephone
+7182,Hadith,(Islam) a tradition based on reports of the sayings and activities of Muhammad and his companions
+7183,Hadrian Publius_Aelius_Hadrianus Adrian,Roman Emperor who was the adoptive son of Trajan; travelled throughout his empire to strengthen its frontiers and encourage learning and architecture; on a visit to Britain in 122 he ordered the construction of Hadrian's Wall (76-138)
+7184,Hadrian's_Wall,an ancient Roman wall built by Hadrian in the 2nd century; marked the northern boundary of the Roman Empire in Britain
+7185,Hadrosauridae family_Hadrosauridae,duck-billed dinosaurs; upper Cretaceous
+7186,Haeckel Ernst_Heinrich_Haeckel,German biologist and philosopher; advocated Darwinism and formulated the theory of recapitulation; was an exponent of materialistic monism (1834-1919)
+7187,Haemanthus genus_Haemanthus,genus of African deciduous or evergreen bulbous herbs: blood lilies
+7188,Haematobia genus_Haematobia,European genus of bloodsucking flies
+7189,Haematopodidae family_Haematopodidae,oystercatchers
+7190,Haematopus genus_Haematopus,oystercatchers
+7191,Haematoxylum genus_Haematoxylum Haematoxylon genus_Haematoxylon,small genus of tropical American spiny bushy shrubs or trees
+7192,Haemodoraceae family_Haemodoraceae bloodwort_family,some genera placed in family Liliaceae
+7193,Haemodorum genus_Haemodorum,type genus of family Haemodoraceae
+7194,Haemopis genus_Haemopis,leeches
+7195,Haemoproteidae family_Haemoproteidae,bird parasites
+7196,Haemoproteus genus_Haemoproteus,type genus of the family Haemoproteidae
+7197,Haemosporidia order_Haemosporidia,an order in the subclass Telosporidia
+7198,Haemulidae family_Haemulidae,grunts
+7199,Haemulon genus_Haemulon,type genus of the Haemulidae
+7200,Haftorah Haftarah Haphtorah Haphtarah,a short selection from the Prophets read on every Sabbath in a Jewish synagogue following a reading from the Torah
+7201,Haganah,the clandestine military wing of the Jewish leadership during the British rule over the mandate of Palestine from 1920 to 1948; became the basis for the Israeli defense force
+7202,Hageman_factor factor_XII,coagulation factor whose deficiency results in prolongation of clotting time of venous blood
+7203,Hagerstown,a town in northern Maryland
+7204,Haggadah Haggada Hagada,Talmudic literature that does not deal with law but is still part of Jewish tradition
+7205,Haggai Aggeus,a Hebrew minor prophet
+7206,Haggai Aggeus Book_of_Haggai,an Old Testament book telling the prophecies of Haggai which are concerned mainly with rebuilding the temples after the Babylonian Captivity
+7207,Haggard Rider_Haggard Sir_Henry_Rider_Haggard,British writer noted for romantic adventure novels (1856-1925)
+7208,Hagia_Sophia Hagia_Sofia Santa_Sophia Santa_Sofia,a 6th century masterpiece of Byzantine architecture in Istanbul; built as a Christian church, converted to a mosque in 1453, and made into a museum in the middle of the 20th century
+7209,Hagiographa Ketubim Writings,the third of three divisions of the Hebrew Scriptures
+7210,Hahn Otto_Hahn,German chemist who was co-discoverer with Lise Meitner of nuclear fission (1879-1968)
+7211,Haida,a member of a seafaring group of North American Indians who lived on the Pacific coast of British Columbia and southwestern Alaska
+7212,Haida,the Na-Dene language of the Haida
+7213,Haile_Selassie Ras_Tafari_Makonnen Ras_Tafari,emperor of Ethiopia; worshipped by Rastafarians (1892-1975)
+7214,Haiphong,a port city in northern Vietnam; industrial center
+7215,Haiti Republic_of_Haiti,a republic in the West Indies on the western part of the island of Hispaniola; achieved independence from France in 1804; the poorest and most illiterate nation in the western hemisphere
+7216,Haitian,a native or inhabitant of Haiti
+7217,Haitian_Creole,a creole language spoken by most Haitians; based on French and various African languages
+7218,Haitian_centime,100 centimes equal 1 gourde in Haiti
+7219,Haitian_monetary_unit,the monetary unit in Haiti
+7220,Hakea genus_Hakea,Australian shrubs and small trees with evergreen usually spiny leaves and dense clusters of showy flowers
+7221,Hakham,a Hebrew title of respect for a wise and highly educated man
+7222,Hakka,a member of a people of southeastern China (especially Hong Kong, Canton, and Taiwan) who migrated from the north in the 12th century
+7223,Hakka Hakka_dialect,a dialect of Chinese spoken in southeastern China by the Hakka
+7224,Halab Aleppo Alep,a city in northwestern Syria
+7225,Halakah Halaka Halacha,Talmudic literature that deals with law and with the interpretation of the laws on the Hebrew Scriptures
+7226,Halchidhoma,a member of a North American Indian people of the Colorado river valley near the mouth of the Gila river; allied to the Maricopa
+7227,Halcyon genus_Halcyon,a large kingfisher widely distributed in warmer parts of the Old World
+7228,Haldane Elizabeth_Haldane Elizabeth_Sanderson_Haldane,Scottish writer and sister of Richard Haldane and John Haldane (1862-1937)
+7229,Haldane J._B._S._Haldane John_Burdon_Sanderson_Haldane,Scottish geneticist (son of John Haldane) who contributed to the development of population genetics; a popularizer of science and a Marxist (1892-1964)
+7230,Haldane John_Haldane John_Scott_Haldane,Scottish physiologist and brother of Richard Haldane and Elizabeth Haldane; noted for research into industrial diseases (1860-1936)
+7231,Haldane Richard_Haldane Richard_Burdon_Haldane First_Viscount_Haldane_of_Cloan,Scottish statesman and brother of Elizabeth and John Haldane (1856-1928)
+7232,Haldea genus_Haldea,ground snakes
+7233,Hale Edward_Everett_Hale,prolific United States writer (1822-1909)
+7234,Hale George_Ellery_Hale,United States astronomer who discovered that sunspots are associated with strong magnetic fields (1868-1938)
+7235,Hale Nathan_Hale,a soldier of the American Revolution who was hanged as a spy by the British; his last words were supposed to have been `I only regret that I have but one life to give for my country' (1755-1776)
+7236,Haleakala_National_Park,a national park in Hawaii including a dormant volcano
+7237,Halenia genus_Halenia,genus of herbs of Eurasia and the Americas: spurred gentians
+7238,Halesia genus_Halesia,deciduous small trees or shrubs of China and eastern North America
+7239,Halevy Fromental_Halevy Jacques_Francois_Fromental_Elie_Halevy,French operatic composer (1799-1862)
+7240,Haley Alex_Haley,United States writer and Afro-American who wrote a fictionalized account of tracing his family roots back to Africa (1921-1992)
+7241,Haley Bill_Haley William_John_Clifton_Haley_Jr.,United States rock singer who was one of the first to popularize rock'n'roll music (1925-1981)
+7242,Haliaeetus genus_Haliaeetus,a genus of Accipitridae
+7243,Halicarnassus,an ancient Greek city on the southwestern coast of Asia Minor in what is now Turkey; site of the mausoleum at Halicarnassus
+7244,Halicoeres genus_Halicoeres,a genus of Labridae
+7245,Halictidae family_Halictidae,a family of small solitary bees; many are valuable pollinators for agriculture
+7246,Halifax,provincial capital and largest city of Nova Scotia
+7247,Halimodendron genus_Halimodendron,one species: salt tree
+7248,Haliotidae family_Haliotidae,abalones
+7249,Haliotis genus_Haliotis,type genus of the family Haliotidae
+7250,Hall Asaph_Hall,United States astronomer who discovered Phobos and Deimos (the two satellites of Mars) (1829-1907)
+7251,Hall Charles_Francis_Hall,United States explorer who led three expeditions to the Arctic (1821-1871)
+7252,Hall Charles_Martin_Hall,United States chemist who developed an economical method of producing aluminum from bauxite (1863-1914)
+7253,Hall G._Stanley_Hall Granville_Stanley_Hall,United States child psychologist whose theories of child psychology strongly influenced educational psychology (1844-1924)
+7254,Hall Radclyffe_Hall Marguerite_Radclyffe_Hall,English writer whose novel about a lesbian relationship was banned in Britain for many years (1883-1943)
+7255,Hall's_honeysuckle Lonicera_japonica_halliana,a variety of Japanese honeysuckle that grows like a vine; established as an aggressive escape in southeastern United States
+7256,Hall_of_Fame,a building containing trophies honoring famous people
+7257,Halle Halle-an-der-Saale,a city in the Saxony region of Germany on the Saale River; a member of the Hanseatic League during the 13th and 14th centuries
+7258,Hallel,(Judaism) a chant of praise (Psalms 113 through 118) used at Passover and Shabuoth and Sukkoth and Hanukkah and Rosh Hodesh
+7259,Halley Edmond_Halley Edmund_Halley,English astronomer who used Newton's laws of motion to predict the period of a comet (1656-1742)
+7260,Halloween Hallowe'en Allhallows_Eve,the evening before All Saints' Day; often devoted to pranks played by young people
+7261,Halocarpus genus_Halocarpus,dioecious trees or shrubs of New Zealand; similar in habit to Dacrydium
+7262,Haloragidaceae family_Haloragidaceae Haloragaceae family_Haloragaceae water-milfoil_family,a family of dicotyledonous plants of the order Myrtales
+7263,Hals Frans_Hals,Dutch portrait and genre painter who endowed his portraits with vitality and humor (1580?-1666)
+7264,Ham,(Old Testament) son of Noah
+7265,Hamamelidaceae family_Hamamelidaceae witch-hazel_family,comprises genera Hamamelis, Corylopsis, Fothergilla, Liquidambar, Parrotia, and other small genera
+7266,Hamamelidae subclass_Hamamelidae,a group of chiefly woody plants considered among the most primitive of angiosperms; perianth poorly developed or lacking; flowers often unisexual and often in catkins and often wind pollinated; contains 23 families including the Betulaceae and Fagaceae (includes the Amentiferae); sometimes classified as a superorder
+7267,Hamamelidanthum genus_Hamamelidanthum,genus of fossil plants of the Oligocene having flowers resembling those of the witch hazel; found in Baltic region
+7268,Hamamelidoxylon genus_Hamamelidoxylon,genus of fossil plants having wood identical with or similar to that of the witch hazel
+7269,Hamamelis genus_Hamamelis,deciduous shrubs or small trees: witch hazel
+7270,Hamamelites genus_Hamamelites,genus of fossil plants having leaves similar to those of the witch hazel
+7271,Haman,(Old Testament) the minister of the Persian emperor who hated the Jews and was hanged for plotting to massacre them
+7272,Hamas Islamic_Resistance_Movement,a militant Islamic fundamentalist political movement that opposes peace with Israel and uses terrorism as a weapon; seeks to create an Islamic state in place of Israel; is opposed to the PLO and has become a leading perpetrator of terrorist activity in Israel; pioneered suicide bombing
+7273,Hamburg,a port city in northern Germany on the Elbe River that was founded by Charlemagne in the 9th century and is today the largest port in Germany; in 1241 it formed an alliance with Lubeck that became the basis for the Hanseatic League
+7274,Hamburg_parsley turnip-rooted_parsley Petroselinum_crispum_tuberosum,parsley with smooth leaves and enlarged edible taproot resembling a savory parsnip
+7275,Hameln Hamelin,a town in northern Germany (near Hanover) that is famous as the setting for the legend of the Pied Piper
+7276,Hamilton,a port city in southeastern Ontario at the western end of Lake Ontario
+7277,Hamilton,the capital of Bermuda
+7278,Hamilton Alexander_Hamilton,United States statesman and leader of the Federalists; as the first Secretary of the Treasury he establish a federal bank; was mortally wounded in a duel with Aaron Burr (1755-1804)
+7279,Hamilton Alice_Hamilton,United States toxicologist known for her work on industrial poisons (1869-1970)
+7280,Hamilton Lady_Emma_Hamilton Amy_Lyon,English beauty who was the mistress of Admiral Nelson (1765-1815)
+7281,Hamilton William_Rowan_Hamilton Sir_William_Rowan_Hamilton,Irish mathematician (1806-1865)
+7282,Haminoea genus_Haminoea,common genus of marine bubble shells of the Pacific coast of North America
+7283,Hamitic Hamitic_language,a group of languages in northern Africa related to Semitic
+7284,Hamlet,the hero of William Shakespeare's tragedy who hoped to avenge the murder of his father
+7285,Hammarskjold Dag_Hammarskjold Dag_Hjalmar_Agne_Carl_Hammarskjold,Swedish diplomat who greatly extended the influence of the United Nations in peacekeeping matters (1905-1961)
+7286,Hammerstein Oscar_Hammerstein Oscar_Hammerstein_II,United States lyricist who collaborated on many musical comedies (most successfully with Richard Rodgers) (1895-1960)
+7287,Hammett Dashiell_Hammett Samuel_Dashiell_Hammett,United States writer of hard-boiled detective fiction (1894-1961)
+7288,Hammurabi Hammurapi,Babylonian king who codified the laws of Sumer and Mesopotamia (died 1750 BC)
+7289,Hampshire,a county of southern England on the English Channel
+7290,Hampshire Hampshire_down,British breed of hornless dark-faced domestic sheep
+7291,Hampton Lionel_Hampton,United States musician who was the first to use the vibraphone as a jazz instrument (1913-2002)
+7292,Hampton_Roads,a channel in southeastern Virginia through which the Elizabeth River and the James River flow into Chesapeake Bay
+7293,Hampton_Roads,a naval battle of the American Civil War (1862); the indecisive battle between the Monitor and the Merrimac
+7294,Hamsun Knut_Hamsun Knut_Pedersen,Norwegian writer of novels (1859-1952)
+7295,Han Han_dynasty,imperial dynasty that ruled China (most of the time from 206 BC to AD 220) and expanded its boundaries and developed its bureaucracy; remembered as one of the great eras of Chinese civilization
+7296,Hancock John_Hancock,American revolutionary patriot who was president of the Continental Congress; was the first signer of the Declaration of Independence (1737-1793)
+7297,Hand-Schuller-Christian_disease Schuller-Christian_disease,inflammatory histiocytosis associated with disturbance of cholesterol metabolism; occurs chiefly in young children and is characterized by cystic defects of the skull and diabetes insipidus
+7298,Handel,the music of Handel
+7299,Handel George_Frideric_Handel George_Frederick_Handel Georg_Friedrich_Handel,a prolific British baroque composer (born in Germany) remembered best for his oratorio Messiah (1685-1759)
+7300,Handies_Peak,a mountain peak in the San Juan Mountains in southwestern Colorado (14,048 feet high)
+7301,Handy W._C._Handy William_Christopher_Handy,United States blues musician who transcribed and published traditional blues music (1873-1958)
+7302,Hanging_Gardens_of_Babylon,a terraced garden at Babylon watered by pumps from the Euphrates; construction attributed to Nebuchadnezzar around 600 BC
+7303,Hangzhou Hangchow,a city of eastern China on Hangzhou Bay; regarded by Marco Polo as the finest city in the world
+7304,Hangzhou_Bay,a bay formed by an inlet of the East China Sea
+7305,Hani Akha,a Loloish language
+7306,Hanks Tom_Hanks Thomas_J._Hanks,United States film actor (born in 1956)
+7307,Hannibal,general who commanded the Carthaginian army in the second Punic War; crossed the Alps and defeated the Romans but was recalled to defend Carthage and was defeated (247-182 BC)
+7308,Hannibal,a town in northeast Missouri on the Mississippi River; boyhood home of Mark Twain
+7309,Hannover Hanover,a port city in northwestern Germany; formerly a member of the Hanseatic League
+7310,Hanoi capital_of_Vietnam,the capital city of Vietnam; located in North Vietnam
+7311,Hanover House_of_Hanover Hanoverian_line,the English royal house that reigned from 1714 to 1901 (from George I to Victoria)
+7312,Hanoverian,any of the British rulers who were members of the House of Hanover
+7313,Hanoverian,a member (or supporter) of the house of Hanover
+7314,Hansard,the official published verbatim report of the proceedings of a parliamentary body; originally of the British Parliament; "the Canadian Hansard is published in both English and French"
+7315,Hanseatic_League,a commercial and defensive confederation of free cities in northern Germany and surrounding areas; formed in 1241 and most influential in the 14th century when it included over 100 towns and functioned as an independent political power; the last official assembly was held in 1669
+7316,Hanukkah Hanukah Hannukah Chanukah Chanukkah Channukah Channukkah Festival_of_Lights Feast_of_Lights Feast_of_Dedication Feast_of_the_Dedication,(Judaism) an eight-day Jewish holiday commemorating the rededication of the Temple of Jerusalem in 165 BC
+7317,Hanuman,in Hinduism, the monkey god and helper of Rama; god of devotion and courage
+7318,Haplopappus genus_Haplopappus,genus of North and South American perennial herbs or shrubs with yellow flowers; in some classifications include species placed in other genera especially Hazardia
+7319,Haplosporidia order_Haplosporidia,an order in the subclass Acnidosporidia
+7320,Harare Salisbury capital_of_Zimbabwe,the capital and largest city of Zimbabwe
+7321,Hardenbergia genus_Hardenbergia,small genus of Australian woody vines with small violet flowers; closely related to genus Kennedia
+7322,Harding Warren_Harding Warren_Gamaliel_Harding President_Harding,29th President of the United States; two of his appointees were involved in the Teapot Dome scandal (1865-1823)
+7323,Hardy Oliver_Hardy,United States slapstick comedian who played the pompous and overbearing member of the Laurel and Hardy duo who made many films (1892-1957)
+7324,Hardy Thomas_Hardy,English novelist and poet (1840-1928)
+7325,Hare_Krishna,worshipper of Krishna and member of the International Society for Krishna Consciousness
+7326,Hare_Krishna,a chant to the Hindu god Krishna
+7327,Hare_Krishna International_Society_for_Krishna_Consciousness ISKCON,a religious sect founded in the United States in 1966; based on Vedic scriptures; groups engage in joyful chanting of `Hare Krishna' and other mantras based on the name of the Hindu god Krishna; devotees usually wear saffron robes and practice vegetarianism and celibacy
+7328,Haredi,any of several sects of Orthodox Judaism that reject modern secular culture and many of whom do not recognize the spiritual authority of the modern state of Israel
+7329,Hargeisa,a city in northwestern Somalia
+7330,Hargreaves James_Hargreaves,English inventor of the spinning jenny (1720-1778)
+7331,Harkat-ul-Jihad-e-Islami Harakat_ul-Jihad-I-Islami HUJI,an extremist militant group in Pakistan occupied Kashmir that seeks an Islamic government and that has had close links and fought with the Taliban in Afghanistan
+7332,Harkat-ul-Mujahidin HUM Harkat_ul-Ansar HUA Harkat_ul-Mujahedeen Al_Faran Movement_of_Holy_Warriors,an Islamic fundamentalist group in Pakistan that fought the Soviet Union in Afghanistan in the 1980s; now operates as a terrorist organization primarily in Kashmir and seeks Kashmir's accession by Pakistan
+7333,Harlem,a district of Manhattan; now largely a Black ghetto
+7334,Harlem_Renaissance,a period in the 1920s when African-American achievements in art and music and literature flourished
+7335,Harlem_River,a channel separating Manhattan from the Bronx
+7336,Harley_Street,a street in central London where the consulting rooms of many physicians and surgeons are located
+7337,Harlow Jean_Harlow Harlean_Carpenter,United States film actress who made several films with Clark Gable (1911-1937)
+7338,Harmsworth Alfred_Charles_William_Harmsworth Viscount_Northcliffe,British newspaper publisher (1865-1922)
+7339,Harold_I King_Harold_I Harold_Harefoot Harefoot,illegitimate son of Canute who seized the throne of England in 1037 (died in 1040)
+7340,Harold_II King_Harold_II,King of England who succeeded Edward the Confessor in 1066 and was the last of the Anglo-Saxon monarchs; he was killed fighting the invasion by William the Conqueror (1045-1066)
+7341,Harpers_Ferry Harper's_Ferry,a small town in northeastern West Virginia that was the site of a raid in 1859 by the abolitionist John Brown and his followers who captured an arsenal that was located there
+7342,Harpia genus_Harpia,a genus of Accipitridae
+7343,Harpy,(Greek mythology) vicious winged monster; often depicted as a bird with the head of a woman
+7344,Harriman Averell_Harriman William_Averell_Harriman,United States financier who negotiated a treaty with the Soviet Union banning tests of nuclear weapons (1891-1986)
+7345,Harriman E._H._Harriman Edward_Henry_Harriman,United States railway tycoon (1848-1909)
+7346,Harris Benjamin_Harris,publisher of the first newspaper printed in America (1673-1713)
+7347,Harris Bomber_Harris Sir_Arthur_Travers_Harris,British marshal of the Royal Air Force; during World War II he directed mass bombing raids against German cities that resulted in heavy civilian casualties (1892-1984)
+7348,Harris Frank_Harris James_Thomas_Harris,Irish writer noted for his sexually explicit but unreliable autobiography (1856-1931)
+7349,Harris Joel_Harris Joel_Chandler_Harris,United States author who wrote the stories about Uncle Remus (1848-1908)
+7350,Harris Townsend_Harris,United States diplomat who was instrumental in opening Japan to foreign trade (1804-1878)
+7351,Harris Zellig_Harris Zellig_Sabbatai_Harris,United States linguist (born in Ukraine) who developed mathematical linguistics and interpreted speech and writing in a social context (1909-1992)
+7352,Harris_Tweed,a loosely woven tweed made in the Outer Hebrides
+7353,Harrisburg capital_of_Pennsylvania,capital of Pennsylvania; located in southern part of state
+7354,Harrisia genus_Harrisia,genus of slender often treelike spiny cacti with solitary showy nocturnal white or pink flowers; Florida and Caribbean to South America
+7355,Harrison Benjamin_Harrison President_Harrison President_Benjamin_Harrison,23rd President of the United States (1833-1901)
+7356,Harrison George_Harrison,English rock star; lead guitarist of the Beatles (1943-2001)
+7357,Harrison Rex_Harrison Sir_Rex_Harrison Reginald_Carey_Harrison,English actor on stage and in films (1908-1990)
+7358,Harrison William_Henry_Harrison President_Harrison President_William_Henry_Harrison,9th President of the United States; caught pneumonia during his inauguration and died shortly after (1773-1841)
+7359,Harrod Charles_Digby_Harrod,English merchant who expanded his father's shop in London into a prestigious department store (1841-1905)
+7360,Harrod Charles_Henry_Harrod,English merchant who took over a shop in London that was expanded by his son into a prestigious department store (1800-1885)
+7361,Hart Lorenz_Hart Lorenz_Milton_Hart,United States lyricist who collaborated with Richard Rodgers (1895-1943)
+7362,Hart Moss_Hart,United States playwright who collaborated with George S. Kaufman (1904-1961)
+7363,Harte Bret_Harte,United States writer noted for his stories about life during the California gold rush (1836-1902)
+7364,Hartford capital_of_Connecticut,the state capital of Connecticut; located in central Connecticut on the Connecticut river; a center of the insurance business
+7365,Hartley David_Hartley,English philosopher who introduced the theory of the association of ideas (1705-1757)
+7366,Harvard John_Harvard,American philanthropist who left his library and half his estate to the Massachusetts college that now bears his name (1607-1638)
+7367,Harvard_University Harvard,a university in Massachusetts
+7368,Harvey William_Harvey,English physician and scientist who described the circulation of the blood; he later proposed that all animals originate from an ovum produced by the female of the species (1578-1657)
+7369,Harvey_Wallbanger,a cocktail made of vodka or gin and orange juice and Galliano
+7370,Hasdrubal,general who commanded a Carthaginian army in Spain; joined his brother Hannibal in Italy and was killed by the Romans at the battle of Metaurus River (died 207 BC)
+7371,Hasek Jaroslav_Hasek,Czech author of novels and short stories (1883-1923)
+7372,Hashimoto's_disease,autoimmune disorder of the thyroid gland; most common in middle-aged women
+7373,Hasid Hassid Chasid Chassid,a member of a Jewish sect that observes a form of strict Orthodox Judaism
+7374,Hasidim Hassidim Hasidism Chasidim Chassidim,a sect of Orthodox Jews that arose out of a pietistic movement originating in eastern Europe in the second half of the 18th century; a sect that follows the Mosaic law strictly
+7375,Hasidism Hassidism Chasidism Chassidism,beliefs and practices of a sect of Orthodox Jews
+7376,Hassam Childe_Hassam Frederick_Childe_Hassam,United States painter noted for brilliant colors and bold brushwork (1859-1935)
+7377,Hassel Odd_Hassel,Norwegian chemist noted for his research on organic molecules (1897-1981)
+7378,Hastinapura,one of two classical Hindu epics; a great collection of poetry worked into and around a central heroic narrative (eight times as large as the Iliad and Odyssey combined)
+7379,Hastings,a town in East Sussex just to the south of the place where the battle of Hastings took place
+7380,Hastings Thomas_Hastings,United States architect who formed and important architectural firm with John Merven Carrere (1860-1929)
+7381,Hastings battle_of_Hastings,the decisive battle in which William the Conqueror (duke of Normandy) defeated the Saxons under Harold II (1066) and thus left England open for the Norman Conquest
+7382,Hathaway Anne_Hathaway,wife of William Shakespeare (1556-1623)
+7383,Hatiora genus_Hatiora,small genus of South American epiphytic or lithophytic cacti
+7384,Hatteras_Island,a barrier island running parallel to the North Carolina shore
+7385,Hattiesburg,a town in southeast Mississippi
+7386,Hausa Haussa,a member of a Negroid people living chiefly in northern Nigeria
+7387,Hausa Haussa,the chief member of the Chadic family of Afroasiatic languages; widely used as a trading language
+7388,Haute-Normandie Upper-Normandy,a division of Normandy
+7389,Havana capital_of_Cuba Cuban_capital,the capital and largest city of Cuba; located in western Cuba; one of the oldest cities in the Americas
+7390,Havasupai,a member of a North American Indian people of Cataract Canyon in Arizona
+7391,Havasupai,the Yuman language spoken by the Havasupai
+7392,Havel Vaclav_Havel,Czech dramatist and statesman whose plays opposed totalitarianism and who served as president of Czechoslovakia from 1989 to 1992 and president of the Czech Republic since 1993 (born in 1936)
+7393,Haverhill_fever,the form of ratbite fever occurring in the United States
+7394,Haversian_canal,any of the many tiny canals that contain blood vessels and connective tissue and that form a network in bone
+7395,Hawaii Hawai'i Aloha_State HI Haw.,a state in the United States in the central Pacific on the Hawaiian Islands
+7396,Hawaii Hawaii_Island,the largest and southernmost of the Hawaii islands; has several volcanic peaks
+7397,Hawaii_Time Hawaii_Standard_Time,standard time in the 10th time zone west of Greenwich, reckoned at the 150th meridian west; used in Hawaii and the western Aleutian Islands
+7398,Hawaii_Volcanoes_National_Park,a national park in Hawaii featuring active volcanoes
+7399,Hawaiian,a native or resident of Hawaii
+7400,Hawaiian,the Oceanic languages spoken on Hawaii
+7401,Hawaiian_Islands H.I. Sandwich_Islands,a group of volcanic and coral islands in the central Pacific
+7402,Hawaiian_guitar steel_guitar,guitar whose steel strings are twanged while being pressed with a movable steel bar for a glissando effect
+7403,Hawking Stephen_Hawking Stephen_William_Hawking,English theoretical physicist (born in 1942)
+7404,Hawkins Coleman_Hawkins,United States jazz saxophonist (1904-1969)
+7405,Hawkins Hawkyns Sir_John_Hawkins Sir_John_Hawkyns,English privateer involved in the slave trade; later helped build the fleet that in 1588 defeated the Spanish Armada (1532-1595)
+7406,Haworth Sir_Walter_Norman_Haworth,English biochemist who was a pioneer in research on carbohydrates; when he synthesized vitamin C he became the first person to synthesize a vitamin artificially (1883-1950)
+7407,Hawthorne Nathaniel_Hawthorne,United States writer of novels and short stories mostly on moral themes (1804-1864)
+7408,Haydn,the music of Haydn
+7409,Haydn Joseph_Haydn Franz_Joseph_Haydn,prolific Austrian composer who influenced the classical form of the symphony (1732-1809)
+7410,Hayek Friedrich_August_von_Hayek,English economist (born in Austria) noted for work on the optimum allocation of resources (1899-1992)
+7411,Hayes Helen_Hayes,acclaimed actress of stage and screen (1900-1993)
+7412,Hayes Rutherford_B._Hayes Rutherford_Birchard_Hayes President_Hayes,19th President of the United States; his administration removed federal troops from the South and so ended the Reconstruction Period (1822-1893)
+7413,Hays,a town in central Kansas
+7414,Hays Arthur_Garfield_Hays,United States lawyer involved in several famous court trials (1881-1954)
+7415,Hays Will_Hays William_Harrison_Hays,United States lawyer and politician who formulated a production code that prescribed the moral content of United States films from 1930 to 1966 (1879-1954)
+7416,Haywood Big_Bill_Haywood William_Dudley_Haywood,United States labor leader and militant socialist who was one of the founders of the Industrial Workers of the World (1869-1928)
+7417,Hazardia genus_Hazardia,small genus of shrubs and subshrubs of western United States having flowers that change color as they mature
+7418,Hazlitt William_Hazlitt,English essayist and literary critic (1778-1830)
+7419,Hearst William_Randolph_Hearst,United States newspaper publisher whose introduction of large headlines and sensational reporting changed American journalism (1863-1951)
+7420,Heaven,the abode of God and the angels
+7421,Heaviside Oliver_Heaviside,English physicist and electrical engineer who helped develop telegraphic and telephonic communications; in 1902 (independent of A. E. Kennelly) he suggested the existence of an atmospheric layer that reflects radio waves back to earth (1850-1925)
+7422,Heaviside_layer Kennelly-Heaviside_layer E_layer E_region,a region of the ionosphere (from 50 to 90 miles up) that reflects radio waves of medium length
+7423,Hebbel Friedrich_Hebbel Christian_Friedrich_Hebbel,German dramatist (1813-1863)
+7424,Hebe,(Greek mythology) the goddess of youth and spring; wife of Hercules; daughter of Zeus and Hera; cupbearer to the Olympian gods
+7425,Hebei Hopei Hopeh Hebei_province,a populous province in northeastern China
+7426,Hebraist,linguist specializing in the Hebrew language
+7427,Hebrew,the ancient Canaanitic language of the Hebrews that has been revived as the official language of Israel
+7428,Hebrew_alphabet Hebraic_alphabet Hebrew_script,a Semitic alphabet used since the 5th century BC for writing the Hebrew language (and later for writing Yiddish and Ladino)
+7429,Hebrew_lesson,instruction in the Hebrew language
+7430,Hebrews Israelites,the ethnic group claiming descent from Abraham and Isaac (especially from Isaac's son Jacob); the nation whom God chose to receive his revelation and with whom God chose to make a covenant (Exodus 19)
+7431,Hebrides Hebridean_Islands Hebridean_Isles Western_Islands Western_Isles,a group of more than 500 islands off the western coast of Scotland
+7432,Hecate,(Greek mythology) Greek goddess of fertility who later became associated with Persephone as goddess of the underworld and protector of witches
+7433,Hecht Ben_Hecht,United States writer of stories and plays (1894-1946)
+7434,Hector,(Greek mythology) a mythical Trojan who was killed by Achilles during the Trojan War
+7435,Hedeoma genus_Hedeoma,small genus of American herbs (American pennyroyal)
+7436,Hedera genus_Hedera,Old World woody vines
+7437,Hedysarum genus_Hedysarum,genus of herbs of north temperate regions
+7438,Hefa Haifa,a major port in northwestern Israel
+7439,Hegel Georg_Wilhelm_Friedrich_Hegel,German philosopher whose three stage process of dialectical reasoning was adopted by Karl Marx (1770-1831)
+7440,Hegelian,a follower of the thought of Hegel
+7441,Hegira Hejira,the flight of Muhammad from Mecca to Medina in 622 which marked the beginning of the Muslim era; the Muslim calendar begins in that year
+7442,Heidegger Martin_Heidegger,German philosopher whose views on human existence in a world of objects and on Angst influenced the existential philosophers (1889-1976)
+7443,Heidelberg_man Homo_heidelbergensis,a type of primitive man who lived in Europe
+7444,Heimdall Heimdal Heimdallr,(Norse mythology) god of dawn and light; guardian of Asgard
+7445,Heimlich_maneuver Heimlich_manoeuvere,an emergency procedure to help someone who is choking because food is lodged in the trachea
+7446,Heinlein Robert_A._Heinlein Robert_Anson_Heinlein,United States writer of science fiction (1907-1988)
+7447,Heinz Henry_John_Heinz,United States industrialist who manufactured and sold processed foods (1844-1919)
+7448,Heisenberg Werner_Karl_Heisenberg,German mathematical physicist noted for stating the uncertainty principle (1901-1976)
+7449,Hejaz Hedjaz Hijaz,a coastal region of the western Arabian Peninsula bordering on the Red Sea; includes both Mecca and Medina; formerly an independent kingdom until it united with Nejd to form the Kingdom of Saudi Arabia
+7450,Hel Hela,(Norse mythology) goddess of the dead and queen of the underworld
+7451,Helen Helen_of_Troy,(Greek mythology) the beautiful daughter of Zeus and Leda who was abducted by Paris; the Greek army sailed to Troy to get her back which resulted in the Trojan War
+7452,Helena capital_of_Montana,capital of the state of Montana; located in western Montana
+7453,Helenium genus_Helenium,genus of American herbs with flowers having yellow rays: sneezeweeds
+7454,Heliamphora genus_Heliamphora,genus of pitcher plants of the Guiana Highlands in South America
+7455,Helichrysum genus_Helichrysum,large genus of mostly African and Australian herbs and shrubs: everlasting flowers; in some classifications includes genus Ozothamnus
+7456,Helicidae family_Helicidae,land snails including the common edible snail and some pests
+7457,Helicteres genus_Helicteres,genus of shrubs and small trees of tropical America and Asia having cylindrical fruits spirally twisted around one another
+7458,Heliobacter genus_Heliobacter,a genus of helical or curved or straight aerobic bacteria with rounded ends and multiple flagella; found in the gastric mucosa of primates (including humans)
+7459,Heliobacter_pylori H._pylori,the type species of genus Heliobacter; produces urease and is associated with several gastroduodenal diseases (including gastritis and gastric ulcers and duodenal ulcers and other peptic ulcers)
+7460,Helios,(Greek mythology) ancient god of the sun; drove his chariot across the sky each day; identified with Roman Sol
+7461,Heliothis genus_Heliothis,a genus of Noctuidae
+7462,Heliozoa order_Heliozoa,mostly freshwater protozoa
+7463,Helipterum genus_Helipterum,genus of South African and Australian herbs or shrubs grown as everlastings; the various Helipterum species are currently in process of being assigned to other genera especially genera Pteropogon and Hyalosperma
+7464,Helix genus_Helix,type genus of the family Helicidae
+7465,Helix_hortensis,a kind of garden snail
+7466,Hell Hades infernal_region netherworld Scheol underworld,(religion) the world of the dead; "No one goes to Hades with all his immense wealth"-Theognis
+7467,Hell perdition Inferno infernal_region nether_region pit,(Christianity) the abode of Satan and the forces of evil; where sinners suffer eternal punishment; "Hurl'd headlong...To bottomless perdition, there to dwell"- John Milton; "a demon from the depths of the pit"; "Hell is paved with good intentions"-Dr. Johnson
+7468,Hell's_Kitchen Hell's_Half_Acre,a district in Manhattan formerly noted for its slums and vice
+7469,Helladic_civilization Helladic_civilisation Helladic_culture,the bronze-age culture of mainland Greece that flourished 2500-1100 BC
+7470,Helleborus genus_Helleborus,a genus of Helleborus
+7471,Hellenism,the principles and ideals associated with classical Greek civilization
+7472,Heller Joseph_Heller,United States novelist whose best known work was a black comedy inspired by his experiences in the Air Force during World War II (1923-1999)
+7473,Hellman Lillian_Hellman,United States playwright; her plays were often indictments of injustice (1905-1984)
+7474,Helmholtz Hermann_von_Helmholtz Hermann_Ludwig_Ferdinand_von_Helmholtz Baron_Hermann_Ludwig_Ferdinand_von_Helmholtz,German physiologist and physicist (1821-1894)
+7475,Helminthostachys genus_Helminthostachys,one species: terrestrial fern of southeastern Asia and Australia
+7476,Heloderma genus_Heloderma,type genus of the Helodermatidae; American venomous lizards
+7477,Helodermatidae family_Helodermatidae,only known venomous lizards
+7478,Heloise,student and mistress and wife of Abelard (circa 1098-1164)
+7479,Helotiaceae family_Helotiaceae,a fungus family of order Helotiales
+7480,Helotiales order_Helotiales,order of fungi having asci in a disk-shaped to goblet-shaped apothecium
+7481,Helotium genus_Helotium,type genus of the Helotiaceae
+7482,Helsinki Helsingfors capital_of_Finland Finnish_capital,the capital and largest city of Finland; located in southern Finland; a major port and commercial and cultural center
+7483,Helvella_acetabulum,a helvella with a cup-shaped fertile body having a brown interior; the stalk is creamy white and heavily ribbed
+7484,Helvella_crispa miter_mushroom,a helvella with a saddle-shaped fertile part and creamy color; the stalk is fluted and pitted
+7485,Helvella_sulcata,a helvella with an irregularly convoluted cap that is dark brown when young and becomes dull grey with age; the lower surface of the cap is smooth and pale grey; the stalk is thick and deeply fluted
+7486,Helvellaceae family_Helvellaceae,family of false morels or lorchels; some are edible and some are poisonous
+7487,Helvetia,the Latin name for Switzerland
+7488,Helvetian,a native of Switzerland
+7489,Helwingia genus_Helwingia,deciduous dioecious shrubs native to woodland thickets in low mountains in Japan
+7490,Helxine genus_Helxine Soleirolia genus_Soleirolia,one species; a dwarf creeping mat-forming evergreen herb
+7491,Hemachatus genus_Hemachatus,ringhals
+7492,Hemerobiidae family_Hemerobiidae,brown lacewings
+7493,Hemerocallidaceae family_Hemerocallidaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Hemerocallis
+7494,Hemerocallis genus_Hemerocallis,east Asian rhizomatous clump-forming perennial herbs having flowers on long leafless stalks; cosmopolitan in cultivation: day lilies; sometimes placed in subfamily Hemerocallidaceae
+7495,Hemiascomycetes class_Hemiascomycetes,class of fungi in which no ascocarps are formed: yeasts and some plant parasites
+7496,Hemigalus genus_Hemigalus,banded palm civets
+7497,Hemigrammus genus_Hemigrammus,tetras
+7498,Heming Hemminge John_Heming John_Hemminge,English actor who edited the first folio of Shakespeare's plays (1556-1630)
+7499,Hemingway Ernest_Hemingway,an American writer of fiction who won the Nobel prize for literature in 1954 (1899-1961)
+7500,Hemiprocnidae family_Hemiprocnidae,tree swifts
+7501,Hemiptera order_Hemiptera,plant bugs; bedbugs; some true bugs; also includes suborders Heteroptera (true bugs) and Homoptera (e.g., aphids, plant lice and cicadas)
+7502,Hemipteronatus genus_Hemipteronatus,razor fish
+7503,Hemiramphidae family_Hemiramphidae,halfbeaks; marine and freshwater fishes closely related to the flying fishes but not able to glide
+7504,Hemitripterus genus_Hemitripterus,sea ravens
+7505,Hendrix Jimi_Hendrix James_Marshall_Hendrix,United States guitarist whose innovative style with electric guitars influenced the development of rock music (1942-1970)
+7506,Henry Joseph_Henry,United States physicist who studied electromagnetic phenomena (1791-1878)
+7507,Henry Patrick_Henry,a leader of the American Revolution and a famous orator who spoke out against British rule of the American colonies (1736-1799)
+7508,Henry William_Henry,English chemist who studied the quantities of gas absorbed by water at different temperatures and under different pressures (1775-1836)
+7509,Henry's_law,(chemistry) law formulated by the English chemist William Henry; the amount of a gas that will be absorbed by water increases as the gas pressure increases
+7510,Henry_I Henry_Beauclerc,King of England from 1100 to 1135; youngest son of William the Conqueror; conquered Normandy in 1106 (1068-1135)
+7511,Henry_II,king of France from 1547 to 1559; regained Calais from the English; husband of Catherine de Medicis and father of Charles IX (1519-1559)
+7512,Henry_II,first Plantagenet King of England; instituted judicial and financial reforms; quarreled with archbishop Becket concerning the authority of the Crown over the church (1133-1189)
+7513,Henry_III,son of Henry II of France and the last Valois to be king of France (1551-1589)
+7514,Henry_III,son of King John and king of England from 1216 to 1272; his incompetence aroused baronial opposition led by Simon de Montfort (1207-1272)
+7515,Henry_IV,King of the Germans and Holy Roman Emperor (1050-1106)
+7516,Henry_IV Bolingbroke Henry_Bolingbroke,the first Lancastrian king of England from 1399 to 1413; deposed Richard II and suppressed rebellions (1367-1413)
+7517,Henry_IV Henry_of_Navarre Henry_the_Great,king of France from 1589 to 1610; although he was leader of the Huguenot armies, when he succeeded the Catholic Henry III and founded the Bourbon dynasty in 1589 he established religious freedom in France
+7518,Henry_V,son of Henry IV and King of England from 1413 to 1422; reopened the Hundred Years' War and defeated the French at Agincourt (1387-1422)
+7519,Henry_VI,son of Henry V who as an infant succeeded his father and was King of England from 1422 to 1461; he was taken prisoner in 1460 and Edward IV was proclaimed king; he was rescued and regained the throne in 1470 but was recaptured and murdered in the Tower of London (1421-1471)
+7520,Henry_VII,King of the Germans and Holy Roman Emperor (1275-1313)
+7521,Henry_VII Henry_Tudor,first Tudor king of England from 1485 to 1509; head of the house of Lancaster in the War of the Roses; defeated Richard III at Bosworth Field and was proclaimed king; married the daughter of Edward IV and so united the houses of York and Lancaster (1457-1509)
+7522,Henry_VIII,son of Henry VII and King of England from 1509 to 1547; his divorce from Catherine of Aragon resulted in his break with the Catholic Church in 1534 and his excommunication 1538, leading to the start of the Reformation in England (1491-1547)
+7523,Henson Jim_Henson,United States puppeteer who created a troupe of puppet characters (1936-1990)
+7524,Hepaticopsida class_Hepaticopsida Hepaticae class_Hepaticae,liverworts: comprises orders Anthocerotales; Jungermanniales; Marchantiales; Sphaerocarpales
+7525,Hepburn Katharine_Hepburn Katharine_Houghton_Hepburn,United States film actress who appeared in many films with Spencer Tracy (1907-2003)
+7526,Hephaestus Hephaistos,(Greek mythology) the lame god of fire and metalworking in ancient mythology; identified with Roman Vulcan
+7527,Hepworth Barbara_Hepworth Dame_Barbara_Hepworth,British sculptor (1902-1975)
+7528,Hera Here,queen of the Olympian gods in ancient Greek mythology; sister and wife of Zeus remembered for her jealously of the many mortal women Zeus fell in love with; identified with Roman Juno
+7529,Heracleum genus_Heracleum,widely distributed genus of plants with usually thick rootstocks and large umbels of white flowers
+7530,Heraclitus,a presocratic Greek philosopher who said that fire is the origin of all things and that permanence is an illusion as all things are in perpetual flux (circa 500 BC)
+7531,Herat,a city in northwestern Afghanistan on the site of several ancient cities
+7532,Herbart Johann_Friedrich_Herbart,German philosopher (1776-1841)
+7533,Herbert Victor_Herbert,United States musician and composer and conductor noted for his comic operas (1859-1924)
+7534,Herculaneum,ancient city; now destroyed
+7535,Hercules,a large constellation in the northern hemisphere between Lyra and Corona Borealis
+7536,Hercules Heracles Herakles Alcides,(classical mythology) a hero noted for his strength; performed 12 immense labors to gain immortality
+7537,Hercules'-club Hercules'-clubs Hercules-club Zanthoxylum_clava-herculis,densely spiny ornamental of southeastern United States and West Indies
+7538,Herder Johann_Gottfried_von_Herder,German philosopher who advocated intuition over reason (1744-1803)
+7539,Hereford whiteface,hardy English breed of cattle raised extensively in United States
+7540,Herero,a member of a pastoral Bantu people living in Namibia, Botswana, and Angola
+7541,Herero,a Banto language spoken by the Herero in Namibia, Botswana, and Angola
+7542,Heritiera genus_Heritiera Terrietia genus_Terrietia,small genus of timber trees of eastern Asia, Australasia and tropical Africa that form large buttresses
+7543,Herman Woody_Herman Woodrow_Charles_Herman,United States jazz musician and bandleader (1913-1987)
+7544,Hermannia genus_Hermannia,genus of African herbs and subshrubs having honey-scented bell-shaped flowers
+7545,Hermaphroditus,(Greek mythology) son of Hermes and Aphrodite who merged with the nymph Salmacis to form one body
+7546,Hermes,(Greek mythology) messenger and herald of the gods; god of commerce and cunning and invention and theft; identified with Roman Mercury
+7547,Hermissenda genus_Hermissenda,genus of marine sea slugs
+7548,Hermissenda_crassicornis,a kind of sea slug
+7549,Hermosillo,a city in northwestern Mexico near the Gulf of California
+7550,Hernaria genus_Hernaria,low-growing Old World herbs with minute bright green leaves
+7551,Hero,(Greek mythology) priestess of Aphrodite who killed herself when her lover Leander drowned while trying to swim the Hellespont to see her
+7552,Hero Heron Hero_of_Alexandria,Greek mathematician and inventor who devised a way to determine the area of a triangle and who described various mechanical devices (first century)
+7553,Herod Herod_the_Great,king of Judea who (according to the New Testament) tried to kill Jesus by ordering the death of all children under age two in Bethlehem (73-4 BC)
+7554,Herodotus,the ancient Greek known as the father of history; his accounts of the wars between the Greeks and Persians are the first known examples of historical writing (485-425 BC)
+7555,Herpestes genus_Herpestes,mongooses
+7556,Herr,a German man; used before the name as a title equivalent to Mr in English
+7557,Herr,a German courtesy title or form of address for a man
+7558,Herrick Robert_Herrick,English lyric poet (1591-1674)
+7559,Herschel John_Herschel Sir_John_Herschel Sir_John_Frederick_William_Herschel,English astronomer (son of William Herschel) who extended the catalogue of stars to the southern hemisphere and did pioneering work in photography (1792-1871)
+7560,Herschel William_Herschel Sir_William_Herschel Sir_Frederick_William_Herschel,English astronomer (born in Germany) who discovered infrared light and who catalogued the stars and discovered the planet Uranus (1738-1822)
+7561,Herschelian_telescope off-axis_reflector,a reflecting telescope with the mirror slightly tilted to throw the image to the side where it can be viewed
+7562,Hershey,an industrial town to the east of Harrisburg
+7563,Hershey Milton_Snavely_Hershey,United States confectioner and philanthropist who created the model industrial town of Hershey, Pennsylvania; founded an industrial school for orphan boys (1857-1945)
+7564,Hershey_bar,a bar of milk chocolate made by the Hershey company
+7565,Hertfordshire,a county in southern England
+7566,Hertz Gustav_Hertz Gustav_Ludwig_Hertz,German physicist who with James Franck proved the existence of the stationary energy states postulated by Bohr (1887-1975)
+7567,Hertz Heinrich_Hertz Heinrich_Rudolph_Hertz,German physicist who was the first to produce electromagnetic waves artificially (1857-1894)
+7568,Hertzian_wave,a former name for a radio wave; an electromagnetic wave of radio frequency generated by oscillations in an electric circuit
+7569,Herzberg Gerhard_Herzberg,Canadian physicist (born in Germany) noted for contributions to understanding the structure of molecules (born in 1904)
+7570,Heshvan,the second month of the civil year; the eighth month of the ecclesiastical year in the Jewish calendar (in October and November)
+7571,Hesiod,Greek poet whose existing works describe rural life and the genealogies of the gods and the beginning of the world (eighth century BC)
+7572,Hesperides Atlantides,(Greek mythology) group of 3 to 7 nymphs who guarded the golden apples that Gaea gave as a wedding gift to Hera
+7573,Hesperiphona genus_Hesperiphona,evening grosbeak
+7574,Hesperis genus_Hesperis,biennial or perennial erect herbs having nocturnally fragrant flowers
+7575,Hess Dame_Myra_Hess,English pianist (1890-1965)
+7576,Hess Rudolf_Hess Walther_Richard_Rudolf_Hess,Nazi leader who in 1941 flew a solo flight to Scotland in an apparent attempt to negotiate a peace treaty with Great Britain but was imprisoned for life (1894-1987)
+7577,Hess Victor_Hess Victor_Franz_Hess,United States physicist (born in Austria) who was a discoverer of cosmic radiation (1883-1964)
+7578,Hess Walter_Hess Walter_Rudolf_Hess,Swiss physiologist noted for studies of the brain (1881-1973)
+7579,Hesse Hermann_Hesse,Swiss writer (born in Germany) whose novels and poems express his interests in eastern spiritual values (1877-1962)
+7580,Hessian_boot hessian jackboot Wellington Wellington_boot,(19th century) a man's high tasseled boot
+7581,Hessian_fly Mayetiola_destructor,small fly whose larvae damage wheat and other grains
+7582,Hestia,(Greek mythology) the goddess of the hearth and its fire in ancient mythology; identified with Roman Vesta
+7583,Heteranthera genus_Heteranthera,mud plantains
+7584,Heterobasidiomycetes subclass_Heterobasidiomycetes,category used in some classification systems for various basidiomycetous fungi including rusts and smuts
+7585,Heterocephalus genus_Heterocephalus,sand rats
+7586,Heterodon genus_Heterodon,a genus of small colubrid snakes containing the North American hognose snakes
+7587,Heterokontophyta division_Heterokontophyta,algae having chlorophyll a and usually c, and flagella of unequal lengths; terminology supersedes Chrysophyta in some classifications
+7588,Heteromeles genus_Heteromeles,one species: toyon; in some classifications included in genus Photinia
+7589,Heteromyidae family_Heteromyidae,small New World burrowing mouselike rodents with fur-lined cheek pouches and hind limbs and tail adapted to leaping; adapted to desert conditions: pocket mice; kangaroo mice; kangaroo rats
+7590,Heteroptera suborder_Heteroptera,true bugs
+7591,Heteroscelus genus_Heteroscelus,tattlers
+7592,Heterosomata order_Heterosomata order_Pleuronectiformes,flatfishes: halibut; sole; flounder; plaice; turbot; tonguefishes
+7593,Heterostraci suborder_Heterostraci,extinct group of armored jawless fishes or fish-like vertebrate; taxonomy is not clear
+7594,Heterotheca genus_Heterotheca,genus of yellow-flowered North American herbs
+7595,Heterotrichales order_Heterotrichales,yellow-green algae with simple or branching filaments; comprising the single family Tribonemaceae
+7596,Heuchera genus_Heuchera,genus of North American herbs with basal cordate or orbicular leaves and small panicled flowers
+7597,Hevea rubber_tree genus_Hevea,small genus of South American trees yielding latex; "rubber trees are usually cultivated in plantations"
+7598,Hevesy George_Charles_Hevesy_de_Hevesy,Hungarian chemist who studied radioisotopes and was one of the discoverers of the element hafnium (1885-1966)
+7599,Hexagrammidae family_Hexagrammidae,greenlings
+7600,Hexagrammos genus_Hexagrammos,type genus of the Hexagrammidae
+7601,Hexalectris genus_Hexalectris,a monocotyledonous genus of the family Orchidaceae
+7602,Hexamita genus_Hexamita,flagellates free-living or parasitic in intestines of birds
+7603,Hexanchidae family_Hexanchidae,primitive sharks
+7604,Hexanchus genus_Hexanchus,a genus of Hexanchidae
+7605,Heyerdahl Thor_Hyerdahl,Norwegian anthropologist noted for his studies of cultural diffusion (1914-2002)
+7606,Heyrovsky Joroslav_Heyrovsky,Czechoslovakian chemist who developed polarography (1890-1967)
+7607,Heyse Paul_Heyse Paul_Johann_Ludwig_von_Heyse,German writer (1830-1914)
+7608,Heyward DuBois_Heyward Edwin_DuBois_Hayward,United States writer (1885-1940)
+7609,Hezekiah Ezekias,(Old Testament) king of Judah who abolished idolatry (715-687 BC)
+7610,Hiawatha,a Native American chieftain who argued for peace with the European settlers (16th century)
+7611,Hibbertia genus_Hibbertia,evergreen heathlike or scandent shrubs of Madagascar; Australasia; Polynesia
+7612,Hibbing,a town in northeastern Minnesota in the Mesabi Range
+7613,Hickock Wild_Bill_Hickock James_Butler_Hickock,frontier marshal whose adventures have become legendary (1837-1876)
+7614,Hidatsa Gros_Ventre,a member of the Sioux people formerly inhabiting an area along the Missouri river in western North Dakota
+7615,Hidatsa Gros_Ventre,a Siouan language spoken by the Hidatsa
+7616,Hieracium genus_Hieracium,large genus of perennial hairy herbs of Europe to western Asia to northwestern Africa and North America; few are ornamental; often considered congeneric with Pilosella
+7617,Higginson Thomas_Higginson Thomas_Wentworth_Storrow_Higginson,United States writer and soldier who led the first Black regiment in the Union Army (1823-1911)
+7618,High_Church High_Anglican_Church,a group in the Anglican Church that emphasizes the Catholic tradition (especially in sacraments and rituals and obedience to church authority)
+7619,High_Commission,an embassy of one British Commonwealth country to another
+7620,High_Holy_Day High_Holiday,Jewish holy days observed with particular solemnity
+7621,High_Mass,a solemn and elaborate Mass with music
+7622,High_Renaissance,the artistic style of early 16th century painting in Florence and Rome; characterized by technical mastery and heroic composition and humanistic content
+7623,Higher_National_Diploma HND,a diploma given for vocational training that prepares the student for a career in a particular area; good students may progress to a course leading to a degree
+7624,Highlander,a soldier in a Scottish regiment from the Highlands
+7625,Highlander Scottish_Highlander Highland_Scot,a native of the Highlands of Scotland
+7626,Highlands Highlands_of_Scotland,a mountainous region of northern Scotland famous for its rugged beauty; known for the style of dress (the kilt and tartan) and the clan system (now in disuse)
+7627,Highness,(Your Highness or His Highness or Her Highness) title used to address a royal person
+7628,Highway_Code,the code of rules governing the use of public roads
+7629,Higi Kapsiki,a Chadic language spoken south of Lake Chad
+7630,Hilbert David_Hilbert,German mathematician (1862-1943)
+7631,Hilbert_space,a metric space that is linear and complete and (usually) infinite-dimensional
+7632,Hill Benny_Hill Alfred_Hawthorne,risque English comedian (1925-1992)
+7633,Hill J._J._Hill James_Jerome_Hill,United States railroad tycoon (1838-1916)
+7634,Hillary Edmund_Hillary Sir_Edmund_Hillary Sir_Edmund_Percival_Hillary,New Zealand mountaineer who in 1953 first attained the summit of Mount Everest with his Sherpa guide Tenzing Norgay (born in 1919)
+7635,Hillel,Palestinian rabbi and interpreter of Judaic law
+7636,Hilo,a town in Hawaii on the island of Hawaii
+7637,Himalaya_honeysuckle Leycesteria_formosa,shrub honeysuckle with drooping spikes of purplish flowers
+7638,Himalayan_lilac Syringa_emodi,robust upright shrub of mountains of northern India having oblong-elliptic leaves and pale lilac or white malodorous flowers
+7639,Himalayan_rhubarb Indian_rhubarb red-veined_pie_plant Rheum_australe Rheum_emodi,Asian herb (Himalayas)
+7640,Himalayas Himalaya_Mountains Himalaya,a mountain range extending 1500 miles on the border between India and Tibet; this range contains the world's highest mountain
+7641,Himalayish,the Tibeto-Burman language spoken in Tibet and Nepal and Bhutan and Sikkim
+7642,Himantoglossum genus_Himantoglossum,small genus of terrestrial orchids of Europe and Mediterranean region
+7643,Himantopus genus_Himantopus,major one of two genera of stilts; similar to avocets but with straight bills
+7644,Himmler Heinrich_Himmler,German Nazi who was chief of the SS and the Gestapo and who oversaw the genocide of six million Jews (1900-1945)
+7645,Hinault Bernard_Hinault,French racing cyclist who won the Tour de France five times (born in 1954)
+7646,Hinayana,a major school of Buddhism teaching personal salvation through one's own efforts
+7647,Hinayana Hinayana_Buddhism,an offensive name for the early conservative Theravada Buddhism; it died out in India but survived in Sri Lanka and was taken from there to other regions of southwestern Asia
+7648,Hinayanism,the religious doctrine of Hinayana Buddhism
+7649,Hinayanist,an adherent of Hinayana Buddhism
+7650,Hindemith Paul_Hindemith,German neoclassical composer and conductor who believed that music should have a social purpose (1895-1963)
+7651,Hindenburg Paul_von_Hindenburg Paul_Ludwig_von_Beneckendorff_und_von_Hindenburg,German field marshal and statesman; as president of the Weimar Republic he reluctantly appointed Hitler as chancellor in 1933 (1847-1934)
+7652,Hindi,the most widely spoken of modern Indic vernaculars; spoken mostly in the north of India; along with English it is the official language of India; usually written in Devanagari script
+7653,Hindu Hindoo,a person who adheres to Hinduism
+7654,Hindu Hindoo Hindustani,a native or inhabitant of Hindustan or India
+7655,Hindu_Kush Hindu_Kush_Mountains,a mountain range extending to the west of the Himalayas
+7656,Hindu_calendar,the lunisolar calendar governing the religious life of Hindus; an extra month is inserted after every month in which there are two new moons (once every three years)
+7657,Hindu_calendar_month,any lunisolar month in the Hindu calendar
+7658,Hindu_deity,a deity worshipped by the Hindus
+7659,Hinduism Hindooism,the religion of most people in India, Bangladesh, Sri Lanka, and Nepal
+7660,Hinduism Hindooism,a body of religious and philosophical beliefs and cultural practices native to India and based on a caste system; it is characterized by a belief in reincarnation, by a belief in a supreme being of many forms and natures, by the view that opposing theories are aspects of one eternal truth, and by a desire for liberation from earthly evils
+7661,Hindustan,northern region of India where Hinduism predominates
+7662,Hindustani Hindoostani Hindostani,a form of Hindi spoken around Delhi
+7663,Hipparchus,Greek astronomer and mathematician who discovered the precession of the equinoxes and made the first known star chart and is said to have invented trigonometry (second century BC)
+7664,Hippo Hippo_Regius,an ancient Numidian town in northwestern Africa adjoining present-day Annaba in northeastern Algeria
+7665,Hippobosca genus_Hippobosca,type genus of the Hippoboscidae
+7666,Hippoboscidae family_Hippoboscidae,winged or wingless dipterans: louse flies
+7667,Hippocampus genus_Hippocampus,seahorses
+7668,Hippocastanaceae family_Hippocastanaceae horse-chestnut_family,trees having showy flowers and inedible nutlike seeds in a leathery capsule
+7669,Hippocrates,medical practitioner who is regarded as the father of medicine; author of the Hippocratic oath (circa 460-377 BC)
+7670,Hippocratic_oath,an oath taken by physicians to observe medical ethics deriving from Hippocrates
+7671,Hippocrepis genus_Hippocrepis,species of Old World herbs or subshrubs: horseshoe vetch
+7672,Hippodamia genus_Hippodamia,genus of ladybugs
+7673,Hippodamia_convergens,a variety of ladybug
+7674,Hippoglossoides genus_Hippoglossoides,a genus of Pleuronectidae
+7675,Hippoglossus genus_Hippoglossus,halibuts
+7676,Hippopotamidae family_Hippopotamidae,hippopotami
+7677,Hipposideridae family_Hipposideridae,Old World leafnose bats
+7678,Hipposideros genus_Hipposideros,horseshoe bats
+7679,Hippotragus genus_Hippotragus,sable antelopes
+7680,Hipsurus genus_Hipsurus,a genus of Embiotocidae
+7681,Hirohito Michinomiya_Hirohito,emperor of Japan who renounced his divinity and became a constitutional monarch after Japan surrendered at the end of World War II (1901-1989)
+7682,Hiroshima,a port city on the southwestern coast of Honshu in Japan; on August 6, 1945 Hiroshima was almost completely destroyed by the first atomic bomb dropped on a populated area
+7683,Hirschfeld Al_Hirschfeld,United States artist noted for his line-drawn caricatures (1904-2003)
+7684,Hirschsprung Harold_Hirschsprung,Danish pediatrician (1830-1916)
+7685,Hirschsprung's_disease congenital_megacolon,congenital condition in which the colon does not have the normal network of nerves; there is little urge to defecate so the feces accumulate and cause megacolon
+7686,Hirudinea class_Hirudinea,hermaphroditic aquatic or terrestrial or parasitic annelids
+7687,Hirudinidae family_Hirudinidae,a family of Hirudinea
+7688,Hirudo genus_Hirudo,type genus of the family Hirudinidae
+7689,Hirundinidae family_Hirundinidae,swallows and martins
+7690,Hirundo genus_Hirundo,type genus of the Hirundinidae
+7691,Hispaniola Haiti Hayti,an island in the West Indies
+7692,Hitchcock Alfred_Hitchcock Sir_Alfred_Hitchcock Alfred_Joseph_Hitchcock,English film director noted for his skill in creating suspense (1899-1980)
+7693,Hitchings George_Herbert_Hitchings,United States biochemist noted for developing drugs to treat leukemia and gout (1905-1998)
+7694,Hitchiti,a member of the Muskhogean people formerly living in Georgia; a member of the Creek Confederacy
+7695,Hitchiti,the Muskhogean language spoken by the Hitchiti
+7696,Hitler Adolf_Hitler Der_Fuhrer,German Nazi dictator during World War II (1889-1945)
+7697,Hittite,a member of an ancient people who inhabited Anatolia and northern Syria about 2000 to 1200 BC
+7698,Hittite,the language of the Hittites and the principal language of the Anatolian group of languages; deciphered from cuneiform inscriptions
+7699,Hizb_ut-Tahrir Freedom_Party,the most popular and feared Islamic extremist group in central Asia; advocates `pure' Islam and the creation of a worldwide Islamic state
+7700,Hizballah Hezbollah Hizbollah Hizbullah Lebanese_Hizballah Party_of_God Islamic_Jihad Islamic_Jihad_for_the_Liberation_of_Palestine Revolutionary_Justice_Organization Organization_of_the_Oppressed_on_Earth,a Shiite terrorist organization with strong ties to Iran; seeks to create an Iranian fundamentalist Islamic state in Lebanon; car bombs are the signature weapon
+7701,Hmong Hmong_language Miao,a language of uncertain affiliation spoken by the Hmong
+7702,Hmong Miao,a people living traditionally in mountain villages in southern China and adjacent areas of Vietnam and Laos and Thailand; many have emigrated to the United States
+7703,Ho_Chi_Minh Nguyen_Tat_Thanh,Vietnamese communist statesman who fought the Japanese in World War II and the French until 1954 and South Vietnam until 1975 (1890-1969)
+7704,Ho_Chi_Minh_City Saigon,a city in South Vietnam; formerly (as Saigon) it was the capital of French Indochina
+7705,Hoagland Hudson_Hoagland,United States physiologist (1899-1982)
+7706,Hobart,a port and state capital of Tasmania
+7707,Hobbes Thomas_Hobbes,English materialist and political philosopher who advocated absolute sovereignty as the only kind of government that could resolve problems caused by the selfishness of human beings (1588-1679)
+7708,Hobbs Sir_Jack_Hobbs John_Berry_Hobbs,notable English cricketer (1882-1963)
+7709,Hobson's_choice,the choice of taking what is offered or nothing at all
+7710,Hodeida Al-Hudaydah,an important port in Yemen on the Red Sea
+7711,Hodgkin Alan_Hodgkin Sir_Alan_Hodgkin Alan_Lloyd_Hodgkin,English physiologist who, with Andrew Huxley, discovered the role of potassium and sodium atoms in the transmission of the nerve impulse (1914-1998)
+7712,Hodgkin Dorothy_Hodgkin Dorothy_Mary_Crowfoot_Hodgkin,English chemist (born in Egypt) who used crystallography to study the structure of organic compounds (1910-1994)
+7713,Hodgkin Thomas_Hodgkin,English physician who first described Hodgkin's disease (1798-1866)
+7714,Hodgkin's_disease,a malignant disorder in which there is progressive (but painless) enlargement of lymph tissue followed by enlargement of the spleen and liver
+7715,Hoenir,(Norse mythology) one of the Aesir having a strong and beautiful body but a dull mind
+7716,Hoffa Jimmy_Hoffa James_Riddle_Hoffa,United States labor leader who was president of the Teamsters Union; he was jailed for trying to bribe a judge and later disappeared and is assumed to have been murdered (1913-1975)
+7717,Hoffman Dustin_Hoffman,versatile United States film actor (born in 1937)
+7718,Hoffman Malvina_Hoffman,United States sculptor (1887-1966)
+7719,Hoffmann August_Wilhelm_von_Hoffmann,German chemist (1818-1892)
+7720,Hoffmann E._T._A._Hoffmann Ernst_Theodor_Amadeus_Hoffmann Ernst_Theodor_Wilhelm_Hoffmann,German writer of fantastic tales (1776-1822)
+7721,Hoffmann Josef_Hoffmann,Austrian architect known for his use of rectilinear units (1870-1956)
+7722,Hoffmann Roald_Hoffmann,United States chemist (born in Poland) who used quantum mechanics to understand chemical reactions (born in 1937)
+7723,Hoffmannsthal Hugo_von_Hoffmannsthal,German poet who wrote libretti for operas by Richard Strauss (1874-1929)
+7724,Hogan Ben_Hogan William_Benjamin_Hogan,United States golfer who won many major golf tournaments (1912-1997)
+7725,Hogarth William_Hogarth,English artist noted for a series of engravings that satirized the affectations of his time (1697-1764)
+7726,Hogg James_Hogg,Scottish writer of rustic verse (1770-1835)
+7727,Hogmanay,New Year's Eve in Scotland
+7728,Hohenlinden,a town in Bavaria (near Munich)
+7729,Hohenlinden battle_of_Hohenlinden,a battle during the Napoleonic Wars (1800); the French defeated the Austrians
+7730,Hohenzollern,a German noble family that ruled Brandenburg and Prussia
+7731,Hohenzollern_empire Second_Reich,the Reich when Hohenzollern monarchs ruled Germany (from 1871 to 1919)
+7732,Hoheria genus_Hoheria,small genus of shrubs and small trees of New Zealand: lacebarks
+7733,Hohhot,a northern industrial city of China to the northwest of Beijing
+7734,Hokan Hoka,a member of a North American Indian people speaking one of the Hokan languages
+7735,Hokan Hoka,a family of Amerindian languages spoken in California
+7736,Hokkaido Ezo Yezo,the second largest of the four main islands of Japan; to the north of Honshu
+7737,Hokusai Katsushika_Hokusai,Japanese painter whose work influenced the impressionists (1760-1849)
+7738,Holarrhena genus_Holarrhena,genus of deciduous trees and shrubs of tropical Africa and Asia
+7739,Holbein Hans_Holbein Holbein_the_Elder,German painter of religious works (1465-1524)
+7740,Holbein Hans_Holbein Holbein_the_Younger,German painter and engraver noted for his portraits; he was commissioned by Henry VIII to provide portraits of the English king's prospective brides (1497-1543)
+7741,Holbrookia genus_Holbrookia,earless lizards
+7742,Holcus genus_Holcus,a genus of Old World grasses widely cultivated in America
+7743,Hollerith Herman_Hollerith,United States inventor who invented a system for recording alphanumeric information on punched cards (1860-1929)
+7744,Holly Buddy_Holly Charles_Hardin_Holley,United States rock star (1936-1959)
+7745,Hollywood,a flashy vulgar tone or atmosphere believed to be characteristic of the American film industry; "some people in publishing think of theirs as a glamorous medium so they copy the glitter of Hollywood"
+7746,Hollywood,a district of Los Angeles long associated with the American film industry
+7747,Hollywood,the film industry of the United States
+7748,Holmes Arthur_Holmes,English geologist and supporter of the theory of continental drift (1890-1965)
+7749,Holmes Oliver_Wendell_Holmes,United States writer of humorous essays (1809-1894)
+7750,Holmes Oliver_Wendell_Holmes_Jr.,United States jurist noted for his liberal opinions (1841-1935)
+7751,Holocaust final_solution,the mass murder of Jews under the German Nazi regime from 1941 until 1945
+7752,Holocene Holocene_epoch Recent Recent_epoch,approximately the last 10,000 years
+7753,Holocentridae family_Holocentridae,squirrelfishes and soldierfishes
+7754,Holocentrus genus_Holocentrus,type genus of the family Holocentridae; squirrelfishes
+7755,Holocentrus_ascensionis,bright red fish of West Indies and Bermuda
+7756,Holocephali subclass_Holocephali,chimaeras and extinct forms
+7757,Holofernes,(Apocrypha) the Assyrian general who was decapitated by the biblical heroine Judith
+7758,Holothuria genus_Holothuria,type genus of the Holothuridae
+7759,Holothuridae family_Holothuridae,a family of Holothuroidea
+7760,Holothuroidea class_Holothuroidea,class of echinoderms including the sea cucumbers
+7761,Holy_Eucharist Eucharist sacrament_of_the_Eucharist Holy_Sacrament Liturgy Eucharistic_liturgy Lord's_Supper,a Christian sacrament commemorating the Last Supper by consecrating bread and wine
+7762,Holy_Ghost Holy_Spirit Paraclete,the third person in the Trinity; Jesus promised the Apostles that he would send the Holy Spirit after his Crucifixion and Resurrection; it came on Pentecost
+7763,Holy_Innocents'_Day Innocents'_Day,December 28, commemorating Herod's slaughter of the children of Bethlehem
+7764,Holy_Order Order,(usually plural) the status or rank or office of a Christian clergyman in an ecclesiastical hierarchy; "theologians still disagree over whether `bishop' should or should not be a separate Order"
+7765,Holy_Roller,a member of a religion that expresses ecstatic fervor
+7766,Holy_Roman_Emperor,sovereign of the Holy Roman Empire
+7767,Holy_Roman_Empire,a political entity in Europe that began with the papal coronation of Otto I as the first emperor in 962 and lasted until 1806 when it was dissolved by Napoleon
+7768,Holy_Saturday,the Saturday before Easter; the last day of Lent
+7769,Holy_See The_Holy_See State_of_the_Vatican_City,the smallest sovereign state in the world; the see of the Pope (as the Bishop of Rome); home of the Pope and the central administration of the Roman Catholic Church; achieved independence from Italy in 1929
+7770,Holy_Sepulcher Holy_Sepulchre,the sepulcher in which Christ's body lay between burial and resurrection
+7771,Holy_Week Passion_Week,the week before Easter
+7772,Holy_Year,(Roman Catholic Church) a period of remission from sin (usually granted every 25 years)
+7773,Homaridae family_Homaridae,large-clawed lobsters
+7774,Homarus genus_Homarus,type genus of the family Homaridae: common edible lobsters
+7775,Home_Counties,the English counties surrounding London into which Greater London has expanded
+7776,Home_Loan_Bank,one of 11 regional banks that monitor and make short-term credit advances to thrift institutions in their region
+7777,Home_Office,the government department in charge of domestic affairs
+7778,Home_Secretary Secretary_of_State_for_the_Home_Department,the British cabinet minister who is head of the Home Office
+7779,Homer,ancient Greek epic poet who is believed to have written the Iliad and the Odyssey (circa 850 BC)
+7780,Homer Winslow_Homer,United States painter best known for his seascapes (1836-1910)
+7781,Hominidae family_Hominidae,modern man and extinct immediate ancestors of man
+7782,Hominoidea superfamily_Hominoidea,anthropoid apes and human beings
+7783,Homo_erectus,extinct species of primitive hominid with upright stature but small brain; "Homo erectus was formerly called Pithecanthropus erectus"
+7784,Homo_habilis,extinct species of upright East African hominid having some advanced humanlike characteristics
+7785,Homo_sapiens,the only surviving hominid; species to which modern man belongs; bipedal primate having language and ability to make and use complex tools; brain volume at least 1400 cc
+7786,Homo_sapiens_sapiens modern_man,subspecies of Homo sapiens; includes all modern races
+7787,Homo_soloensis,extinct primitive hominid of late Pleistocene; Java; formerly Javanthropus
+7788,Homobasidiomycetes subclass_Homobasidiomycetes,category used in some classification systems for various basidiomycetous fungi including e.g. mushrooms and puffballs which are usually placed in the classes Gasteromycetes and Hymenomycetes
+7789,Homogyne genus_Homogyne,small genus of low perennial herbs of montane Europe; in some classifications included in genus Tussilago
+7790,Homona genus_Homona,tea tortrix
+7791,Homoptera suborder_Homoptera,plant lice (aphids); whiteflies; cicadas; leafhoppers; plant hoppers; scale insects and mealybugs; spittle insects
+7792,Homyel Homel Gomel,industrial city of Belarus to the southeast of Minsk
+7793,Honduran,a native or inhabitant of Honduras
+7794,Honduran_monetary_unit,monetary unit in Honduras
+7795,Honduras Republic_of_Honduras,a republic in Central America; achieved independence from Spain in 1821; an early center of Mayan culture
+7796,Honduras_mahogany Swietinia_macrophylla,an important Central American mahogany tree
+7797,Honduras_rosewood Dalbergia_stevensonii,Central American tree yielding a valuable dark streaked rosewood
+7798,Honegger Arthur_Honegger,Swiss composer (born in France) who was the founding member of a group in Paris that included Erik Satie and Darius Milhaud and Francis Poulenc and Jean Cocteau (1892-1955)
+7799,Hong_Kong,formerly a Crown Colony on the coast of southern China in Guangdong province; leased by China to Britain in 1842 and returned in 1997; one of the world's leading commercial centers
+7800,Hong_Kong_dollar,the basic unit of money in Hong Kong
+7801,Honiara,national capital of Solomon Islands
+7802,Honolulu capital_of_Hawaii Hawaiian_capital,the capital and largest city of Hawaii; located on a large bay on the island of Oahu
+7803,Honshu Hondo,the central and largest of the four main islands of Japan; between the Sea of Japan and the Pacific Ocean; regarded as the Japanese mainland
+7804,Hook_of_Holland Hoek_van_Holland,a cape on the southwestern coast of the Netherlands near Rotterdam
+7805,Hooke Robert_Hooke,English scientist who formulated the law of elasticity and proposed a wave theory of light and formulated a theory of planetary motion and proposed the inverse square law of gravitational attraction and discovered the cellular structure of cork and introduced the term `cell' into biology and invented a balance spring for watches (1635-1703)
+7806,Hooke's_law,(physics) the principle that (within the elastic limit) the stress applied to a solid is proportional to the strain produced
+7807,Hooker Joseph_Hooker Fighting_Joe_Hooker,United States general in the Union Army who was defeated at Chancellorsville by Robert E. Lee (1814-1879)
+7808,Hooker Richard_Hooker,English theologian (1554-1600)
+7809,Hooker's_green,green pigment consisting of Prussian blue mixed with gamboge
+7810,Hooker's_onion Allium_acuminatum,a common North American wild onion with a strong onion odor and an umbel of pink flowers atop a leafless stalk; British Columbia to California and Arizona and east to Wyoming and Colorado
+7811,Hooker's_orchid Habenaria_hookeri,a long-spurred orchid with base leaves and petals converging under the upper sepal
+7812,Hooray_Henry,a lively and ineffectual upper-class young man
+7813,Hoover,a kind of vacuum cleaner
+7814,Hoover Herbert_Hoover Herbert_Clark_Hoover President_Hoover,31st President of the United States; in 1929 the stock market crashed and the economy collapsed and Hoover was defeated for reelection by Franklin Roosevelt (1874-1964)
+7815,Hoover J._Edgar_Hoover John_Edgar_Hoover,United States lawyer who was director of the FBI for 48 years (1895-1972)
+7816,Hoover William_Hoover William_Henry_Hoover,United States industrialist who manufactured vacuum cleaners (1849-1932)
+7817,Hoover_Dam,a large dam built in 1933 on the Colorado River in Nevada
+7818,Hope Bob_Hope Leslie_Townes_Hope,United States comedian (born in England) who appeared in films with Bing Crosby (1903-2003)
+7819,Hopi,a member of the Shoshonean people of northeastern Arizona
+7820,Hopi,the Shoshonean language spoken by the Hopi
+7821,Hopkins Anthony_Hopkins Sir_Anthony_Hopkins Sir_Anthony_Philip_Hopkins,Welsh film actor (born in 1937)
+7822,Hopkins Gerard_Manley_Hopkins,English poet (1844-1889)
+7823,Hopkins Johns_Hopkins,United States financier and philanthropist who left money to found the university and hospital that bear his name in Baltimore (1795-1873)
+7824,Hopkins Mark_Hopkins,United States educator and theologian (1802-1887)
+7825,Hopkins Sir_Frederick_Gowland_Hopkins,English biochemist who did pioneering work that led to the discovery of vitamins (1861-1947)
+7826,Hopkinson Francis_Hopkinson,American Revolutionary leader and patriot; a signer of the Declaration of Independence (1737-1791)
+7827,Horace,Roman lyric poet said to have influenced English poetry (65-8 BC)
+7828,Horatian_ode Sapphic_ode,an ode with several stanzas
+7829,Horatio_Hornblower Captain_Horatio_Hornblower,a fictional English admiral during the Napoleonic Wars in novels written by C. S. Forester
+7830,Hordeum genus_Hordeum,annual to perennial grasses of temperate northern hemisphere and South America: barley
+7831,Horne Lena_Horne Lena_Calhoun_Horne,United States singer and actress (born in 1917)
+7832,Horne Marilyn_Horne,United States operatic mezzo-soprano (born 1934)
+7833,Horneophyton genus_Horneophyton,Devonian fossil plant considered one of the earliest forms of vascular land plants; similar to genus Rhynia but smaller
+7834,Horner's_syndrome,a pattern of symptoms occurring as a result of damage to nerves in the cervical region of the spine (drooping eyelids and constricted pupils and absence of facial sweating)
+7835,Horney Karen_Horney Karen_Danielsen_Horney,United States psychiatrist (1885-1952)
+7836,Horowitz Vladimir_Horowitz,Russian concert pianist who was a leading international virtuoso (1904-1989)
+7837,Horta Victor_Horta,Belgian architect and leader in art nouveau architecture (1861-1947)
+7838,Horus,Egyptian solar god with the head of a falcon; the son of Osiris and Isis
+7839,Hosea,a minor Hebrew prophet (8th century BC)
+7840,Hosea Book_of_Hosea,an Old Testament book telling Hosea's prophecies
+7841,Host,a technical name for the bread used in the service of Mass or Holy Communion
+7842,Hosta genus_Hosta Funka genus_Funka,robust east Asian clump-forming perennial herbs having racemose flowers: plantain lilies; sometimes placed in family Hostaceae
+7843,Hostaceae family_Hostaceae Funkaceae family_Funkaceae,one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Hosta
+7844,Hot_Springs,a town in west central Arkansas; a health resort noted for thermal springs
+7845,Hot_Springs_National_Park,a national park in Arkansas featuring ancient hot springs; bathing is said to have therapeutic effects
+7846,Hotei,one of the 7 gods of happiness
+7847,Hoth Hothr Hoder Hodr Hodur,(Norse mythology) a blind god; misled by Loki, he kills his brother Balder by throwing a shaft of mistletoe
+7848,Hottentot_bread Hottentot's_bread,thick edible rootstock of elephant's-foot
+7849,Hottentot_fig Hottentot's_fig sour_fig Carpobrotus_edulis Mesembryanthemum_edule,low-growing South African succulent plant having a capsular fruit containing edible pulp
+7850,Hottonia genus_Hottonia,aquatic herbs
+7851,Houdini Harry_Houdini Erik_Weisz,United States magician (born in Hungary) famous for his ability to escape from chains or handcuffs or straitjackets or padlocked containers (1874-1926)
+7852,Houghton,a town in northwest Michigan on the Upper Peninsula
+7853,Houghton Henry_Oscar_Houghton,United States publisher who founded a printing shop that became an important book publisher (1823-1895)
+7854,Housatonic Housatonic_River,a river that rises in western Massachusetts and flows south through Connecticut to empty into Long Island Sound
+7855,House_of_Burgesses,the lower house of legislature in colonial Virginia
+7856,House_of_Commons British_House_of_Commons,the lower house of the British parliament
+7857,House_of_Lords British_House_of_Lords,the upper house of the British parliament
+7858,Houses_of_Parliament,the building in which the House of Commons and the House of Lords meet
+7859,Housman A._E._Housman Alfred_Edward_Housman,English poet (1859-1936)
+7860,Houston,the largest city in Texas; located in southeastern Texas near the Gulf of Mexico; site of the National Aeronautics and Space Administration
+7861,Houston Sam_Houston Samuel_Houston,United States politician and military leader who fought to gain independence for Texas from Mexico and to make it a part of the United States (1793-1863)
+7862,Houttuynia genus_Houttuynia,one species; east Asian low-growing plant of wet places
+7863,Houyhnhnm,one of a race of intelligent horses who ruled the Yahoos in a novel by Jonathan Swift
+7864,Houyhnhnms,a land imagined by Jonathan Swift where intelligent horses ruled the Yahoos
+7865,Howard Catherine_Howard,Queen of England as the fifth wife of Henry VIII who was accused of adultery and executed (1520-1542)
+7866,Howard Leslie_Howard Leslie_Howard_Stainer,English actor of stage and screen (1893-1943)
+7867,Howe Elias_Howe,United States inventor who built early sewing machines and won suits for patent infringement against other manufacturers (including Isaac M. Singer) (1819-1867)
+7868,Howe Gordie_Howe Gordon_Howe,Canadian hockey player who holds the record for playing the most games (born 1928)
+7869,Howe Irving_Howe,United States editor (1920-1993)
+7870,Howe Julia_Ward_Howe,United States feminist who was active in the women's suffrage movement (1819-1910)
+7871,Howells William_Dean_Howells,United States writer and editor (1837-1920)
+7872,Hoyle Edmond_Hoyle,English writer on card games (1672-1769)
+7873,Hoyle Fred_Hoyle Sir_Fred_Hoyle,an English astrophysicist and advocate of the steady state theory of cosmology; described processes of nucleosynthesis inside stars (1915-2001)
+7874,Huainaputina,an inactive volcano in the Andes in southern Peru; last erupted in 1783
+7875,Huambo Nova_Lisboa,a city in the mountains in western Angola
+7876,Huang_He Hwang_Ho Yellow_River,a major river of Asia in northern China; flows generally eastward into the Yellow Sea; carries large quantities of yellow silt to its delta
+7877,Huascaran,a mountain in the Andes in Peru (22,205 feet high)
+7878,Huayna_Capac,the Incan ruler under whom the Incan empire reached its widest extent (died in 1525)
+7879,Hubbard L._Ron_Hubbard,a United States writer of science fiction and founder of Scientology (1911-1986)
+7880,Hubbard Mount_Hubbard,a mountain peak in southeastern Alaska that is part of the Coast Range (14,950 feet high)
+7881,Hubble Edwin_Hubble Edwin_Powell_Hubble,United States astronomer who discovered that (as the universe expands) the speed with which nebulae recede increases with their distance from the observer (1889-1953)
+7882,Hubble's_constant Hubble_constant Hubble's_parameter Hubble_parameter,(cosmology) the ratio of the speed of recession of a galaxy (due to the expansion of the universe) to its distance from the observer; the Hubble constant is not actually a constant, but is regarded as measuring the expansion rate today
+7883,Hubble's_law Hubble_law,(astronomy) the generalization that the speed of recession of distant galaxies (the red shift) is proportional to their distance from the observer
+7884,Hubel David_Hubel,United States neuroscientist noted for his studies of the neural basis of vision (born in 1926)
+7885,Huckleberry_Finn Huck_Finn,a mischievous boy in a novel by Mark Twain
+7886,Hudson Henry_Hudson,English navigator who discovered the Hudson River; in 1610 he attempted to winter in Hudson Bay but his crew mutinied and set him adrift to die (1565-1611)
+7887,Hudson Hudson_River,a New York river; flows southward into New York Bay; explored by Henry Hudson early in the 17th century
+7888,Hudson W._H._Hudson William_Henry_Hudson,English naturalist (born in Argentina) (1841-1922)
+7889,Hudson_Bay,an inland sea in northern Canada
+7890,Hudson_River_school romantic_realism,the first coherent school of American art; active from 1825 to 1870; painted wilderness landscapes of the Hudson River valley and surrounding New England
+7891,Hudson_bay_collared_lemming Dicrostonyx_hudsonius,of northern Canada
+7892,Hudsonia genus_Hudsonia,small evergreen subshrubs of North America
+7893,Hudsonian_godwit Limosa_haemastica,New World godwit
+7894,Huggins Sir_William_Huggins,English astronomer who pioneered spectroscopic analysis in astronomy and who discovered the red shift (1824-1910)
+7895,Hughes Charles_Evans_Hughes,United States jurist who served as chief justice of the United States Supreme Court (1862-1948)
+7896,Hughes Howard_Hughes Howard_Robard_Hughes,United States industrialist who was an aviator and a film producer; during the last years of his life he was a total recluse (1905-1976)
+7897,Hughes Langston_Hughes James_Langston_Hughes,United States writer (1902-1967)
+7898,Hughes Ted_Hughes Edward_James_Hughes,English poet (born in 1930)
+7899,Hugo Victor_Hugo Victor-Marie_Hugo,French poet and novelist and dramatist; leader of the romantic movement in France (1802-1885)
+7900,Hugueninia genus_Hugueninia,one species: tansy-leaved rocket
+7901,Huguenot,a French Calvinist of the 16th or 17th centuries
+7902,Hull Cordell_Hull,United States diplomat who did the groundwork for creating the United Nations (1871-1955)
+7903,Hull Isaac_Hull,United States naval officer who commanded the `Constitution' during the War of 1812 and won a series of brilliant victories against the British (1773-1843)
+7904,Hull Kingston-upon_Hull,a large fishing port in northeastern England
+7905,Hulsea genus_Hulsea,small genus of erect balsam-scented herbs; Pacific coast of the northwestern United States
+7906,Human_Genome_Project,an international study of the entire human genetic material
+7907,Humber,an estuary in central northeastern England formed by the Ouse River and the Trent River
+7908,Humber_Bridge,a suspension bridge at Hull, England; 4,626 feet long
+7909,Humboldt Baron_Alexander_von_Humboldt Baron_Friedrich_Heinrich_Alexander_von_Humboldt,German naturalist who explored Central and South America and provided a comprehensive description of the physical universe (1769-1859)
+7910,Humboldt Baron_Wilhelm_von_Humboldt Baron_Karl_Wilhelm_von_Humboldt,German philologist noted for his studies of the relation between language and culture (1767-1835)
+7911,Hume David_Hume,Scottish philosopher skeptical philosophy restricted human knowledge to that which can be perceived by the senses (1711-1776)
+7912,Humperdinck Engelbert_Humperdinck,German composer of six operas and other incidental music (1854-1921)
+7913,Humpty_Dumpty,an egg-shaped character in a nursery rhyme who fell off a wall and could not be put back together again (late 17th century)
+7914,Humulus genus_Humulus,hops: hardy perennial vines of Europe, North America and central and eastern Asia producing a latex sap; in some classifications included in the family Urticaceae
+7915,Humvee Hum-Vee,a high mobility, multipurpose, military vehicle with four-wheel drive
+7916,Hun,a member of a nomadic people who invaded Europe in the 4th century
+7917,Hunan Hunan_province,a province in southeastern central China between the Nan Ling mountains and the Chang Jiang; noted for its timber and valuable mineral resources
+7918,Hundred_Years'_War,the series of wars fought intermittently between France and England; 1337-1453
+7919,Hungarian Magyar,a native or inhabitant of Hungary
+7920,Hungarian Magyar,the official language of Hungary (also spoken in Rumania); belongs to the Ugric family of languages
+7921,Hungarian_lilac Syringa_josikaea Syringa_josikea,central European upright shrub having elliptic leaves and upright clusters of lilac or deep violet flowers
+7922,Hungarian_monetary_unit,monetary unit in Hungary
+7923,Hungarian_partridge grey_partridge gray_partridge Perdix_perdix,common European partridge
+7924,Hungarian_sauce paprika_sauce,veloute sauce with sauteed chopped onion and paprika and cream
+7925,Hungary Republic_of_Hungary Magyarorszag,a republic in central Europe
+7926,Hunkpapa,a member of the Siouan people who constituted a division of the Teton Sioux and who formerly lived in the western Dakotas; they were prominent in resisting the white encroachment into the northern Great Plains
+7927,Hunkpapa,a Siouan language spoken by the Hunkpapa
+7928,Hunnemannia genus_Hunnemania,one species: golden cup
+7929,Hunt Holman_Hunt William_Holman_Hunt,Englishman and Pre-Raphaelite painter (1827-1910)
+7930,Hunt Leigh_Hunt James_Henry_Leigh_Hunt,British writer who defended the Romanticism of Keats and Shelley (1784-1859)
+7931,Hunt Richard_Morris_Hunt,United States architect (1827-1895)
+7932,Huntingdon_elm Ulmus_hollandica_vegetata,erect vigorous hybrid ornamental elm tree
+7933,Huntington,a city of western West Virginia on the Ohio river at the mouth of the Kanawha
+7934,Huntington Collis_Potter_Huntington,United States railroad executive who built the western section of the first United States transcontinental railroad (1821-1900)
+7935,Huntington George_Huntington,United States physician who first described Huntington's chorea
+7936,Huntington Samuel_Huntington,American revolutionary leader who signed the Declaration of Independence and was president of the Continental Congress (1731-1796)
+7937,Huntington's_chorea Huntington's_disease,hereditary disease; develops in adulthood and ends in dementia
+7938,Huntsville,a city in northern Alabama; center for space research
+7939,Hupa,a member of the Athapaskan people of the Trinity River valley in California
+7940,Hupa,the Athapaskan language spoken by the Hupa
+7941,Hurler's_syndrome Hurler's_disease gargoylism dysostosis_multiplex lipochondrodystrophy,hereditary disease (autosomal recessive) consisting of an error is mucopolysaccharide metabolism; characterized by severe abnormalities in development of skeletal cartilage and bone and mental retardation
+7942,Hurok Sol_Hurok Solomon_Hurok,United States impresario who was born in Russia (1888-1974)
+7943,Huss John_Huss Hus Jan_Hus,Czechoslovakian religious reformer who anticipated the Reformation; he questioned the infallibility of the Catholic Church was excommunicated (1409) for attacking the corruption of the clergy; he was burned at the stake (1372-1415)
+7944,Hussein Husain Husayn Saddam_Hussein Saddam Saddam_bin_Hussein_at-Takriti,Iraqi leader who waged war against Iran; his invasion of Kuwait led to the Gulf War (born in 1937)
+7945,Hussein Husain Husayn ibn_Talal_Hussein King_Hussein,king of Jordan credited with creating stability at home and seeking peace with Israel (1935-1999)
+7946,Husserl Edmund_Husserl,German philosopher who developed phenomenology (1859-1938)
+7947,Hussite,an adherent of the religious reforms of John Huss
+7948,Huston John_Huston,United States film maker born in the United States but an Irish citizen after 1964 (1906-1987)
+7949,Hutchins Robert_Maynard_Hutchins,United States educator who was president of the University of Chicago (1899-1977)
+7950,Hutchinson Anne_Hutchinson,American colonist (born in England) who was banished from Boston for her religious views (1591-1643)
+7951,Hutton James_Hutton,Scottish geologist who described the processes that have shaped the surface of the earth (1726-1797)
+7952,Hutton Sir_Leonard_Hutton,English cricketer (1916-1990)
+7953,Hutu,a member of a Bantu people living in Rwanda and Burundi
+7954,Huxley Aldous_Huxley Aldous_Leonard_Huxley,English writer; grandson of Thomas Huxley who is remembered mainly for his depiction of a scientifically controlled utopia (1894-1963)
+7955,Huxley Andrew_Huxley Andrew_Fielding_Huxley,English physiologist who, with Alan Hodgkin, discovered the role of potassium and sodium ions in the transmission of the nerve impulse (born in 1917)
+7956,Huxley Thomas_Huxley Thomas_Henry_Huxley,English biologist and a leading exponent of Darwin's theory of evolution (1825-1895)
+7957,Huygens Christiaan_Huygens Christian_Huygens,Dutch physicist who first formulated the wave theory of light (1629-1695)
+7958,Hyacinthaceae family_Hyacinthaceae,one of many families or subfamilies in which some classification systems subdivide the Liliaceae but not widely accepted
+7959,Hyacinthoides genus_Hyacinthoides,small genus of perennial bulbs of western Europe and North Africa; sometimes placed in family Hyacinthaceae
+7960,Hyades,(Greek mythology) 7 daughters of Atlas and half-sisters of the Pleiades; they nurtured the infant Dionysus and Zeus placed them among the stars as a reward
+7961,Hyaenidae family_Hyaenidae,hyenas
+7962,Hyalophora genus_Hyalophora,American silkworm moth
+7963,Hyalosperma genus_Hyalosperma,genus of herbs of temperate Australia including some from genus Helipterum
+7964,Hyalospongiae class_Hyalospongiae,sponges with siliceous spicules that have six rays; choanocytes are restricted to finger-shaped chambers
+7965,Hybanthus genus_Hybanthus,a genus of herbs and small shrubs with white or purple flowers; grows in tropical or subtropical regions
+7966,Hyderabad,a city in southern Pakistan on the Indus River
+7967,Hyderabad,a city in south central India in Andhra Pradesh
+7968,Hydnaceae family_Hydnaceae,tooth fungi
+7969,Hydnocarpus genus_Hydnocarpus Taraktagenos genus_Taraktagenos Taraktogenos genus_Taraktogenos,medium to large Indonesian and Malaysian trees
+7970,Hydnocarpus_laurifolia Hydnocarpus_wightiana,leathery-leaved tree of western India bearing round fruits with brown densely hairy rind enclosing oily pulp that yields hydnocarpus oil
+7971,Hydnoraceae family_Hydnoraceae,a family of flowering plants in Africa and Argentina that are parasitic on the roots of other plants
+7972,Hydnum genus_Hydnum,type genus of Hydnaceae
+7973,Hydra,(Greek mythology) monster with nine heads; when struck off each head was replaced by two new ones; "Hydra was slain by Hercules"
+7974,Hydra Snake,a long faint constellation in the southern hemisphere near the equator stretching between Virgo and Cancer
+7975,Hydrangeaceae family_Hydrangeaceae hydrangea_family,sometimes included in the family Saxifragaceae
+7976,Hydrastis genus_Hydrastis,small genus of perennial herbs having rhizomes and palmate leaves and small solitary flowers; of northeastern United States and Japan
+7977,Hydrobates genus_Hydrobates,type genus of the Hydrobatidae
+7978,Hydrobatidae family_Hydrobatidae,storm petrels
+7979,Hydrocharis genus_Hydrocharis,frogbit
+7980,Hydrocharitaceae family_Hydrocharitaceae Hydrocharidaceae family_Hydrocharidaceae frogbit_family frog's-bit_family,simple nearly stemless freshwater aquatic plants; widely distributed
+7981,Hydrochoeridae family_Hydrochoeridae,capybara
+7982,Hydrochoerus genus_Hydrochoerus,a genus of Hydrochoeridae
+7983,Hydrodamalis genus_Hydrodamalis,a genus of the family Dugongidae comprising only Steller's sea cow
+7984,Hydromantes genus_Hydromantes,web-toed salamanders
+7985,Hydromyinae subfamily_Hydromyinae,water rats of Australia and New Guinea
+7986,Hydromys genus_Hydromys,water rats
+7987,Hydrophidae family_Hydrophidae,sea snakes
+7988,Hydrophyllaceae family_Hydrophyllaceae waterleaf_family,perennial woodland herbs
+7989,Hydrophyllum genus_Hydrophyllum,waterleaf
+7990,Hydrozoa class_Hydrozoa,coelenterates typically having alternation of generations; hydroid phase is usually colonial giving rise to the medusoid phase by budding: hydras and jellyfishes
+7991,Hydrus,a constellation in the southern hemisphere near the south celestial pole
+7992,Hyemoschus genus_Hyemoschus,water chevrotains
+7993,Hygeia,(Greek mythology) the goddess of health; daughter of Aesculapius and sister of Panacea
+7994,Hygrocybe genus_Hygrocybe,a genus of fungi belonging to the family Hygrophoraceae
+7995,Hygrocybe_acutoconica conic_waxycap,a fungus having an acutely conic cap and dry stalks
+7996,Hygrophoraceae family_Hygrophoraceae,a family of fungi belonging to the order Agaricales; the gills of these fungi have a clean waxy appearance
+7997,Hygrophorus genus_Hygrophorus,a genus of fungi belonging to the family Hygrophoraceae
+7998,Hygrophorus_borealis,a fungus with a white convex cap and arcuate white gills and a stalk that tapers toward the base
+7999,Hygrophorus_caeruleus,a fungus with a broadly convex cap that is cream color with a tint of blue over the margin; waxy gills are bluish green to blue-grey; a short stalk tapers abruptly at the base
+8000,Hygrophorus_inocybiformis,a fungus with a drab squamulose cap and grey-brown squamules over the white background of the stalk and waxy grey-white gills
+8001,Hygrophorus_kauffmanii,a fungus with a slightly viscid cap; cap and gills are reddish brown and the stalk is grey
+8002,Hygrophorus_marzuolus,a grey fungus frequently found near melting snow banks
+8003,Hygrophorus_purpurascens,a fungus with a viscid purplish red cap and stalk; found under spruce and other conifers
+8004,Hygrophorus_russula,an edible fungus with a reddish cap and close pale gills and dry stalk; found under hardwoods
+8005,Hygrophorus_sordidus,an edible fungus with a large white cap and a dry stalk and white gills
+8006,Hygrophorus_tennesseensis,a fungus having a brownish sticky cap with a white margin and white gills and an odor of raw potatoes
+8007,Hygrophorus_turundus,a small fungus with orange cap and yellow gills found in sphagnum bogs
+8008,Hygrotrama genus_Hygrotrama,a genus of fungi belonging to the family Hygrophoraceae
+8009,Hygrotrama_foetens,a small grey-brown fungus with an unpleasant odor of mothballs
+8010,Hyla genus_Hyla,the type genus of the Hylidae; tree toads
+8011,Hylactophryne genus_Hylactophryne,barking frogs
+8012,Hylidae family_Hylidae,the amphibian family of tree frogs
+8013,Hylobates genus_Hylobates,gibbons
+8014,Hylobatidae family_Hylobatidae,used in some classifications for the lesser apes (gibbons and siamangs); sometimes considered a subfamily of Pongidae
+8015,Hylocereus genus_Hylocereus,genus of climbing or epiphytic tropical American cacti with angular stems and mostly white very fragrant flowers
+8016,Hylocichla genus_Hylocichla,American thrush: wood thrush; hermit thrush; veery
+8017,Hylophylax genus_Hylophylax,a genus of Formicariidae
+8018,Hymen,(Greek mythology) the god of marriage
+8019,Hymenaea genus_Hymenaea,genus of tropical American timber trees
+8020,Hymenanthera genus_Hymenanthera,a genus of slender evergreen shrubs; grow in Australia and New Zealand
+8021,Hymenogastrales order_Hymenogastrales,an order of fungi belonging to the class Gasteromycetes; has a distinct basidiocarp with a fleshy or waxy gleba (sometimes placed in subclass Homobasidiomycetes)
+8022,Hymenomycetes class_Hymenomycetes,used in some classifications; usually coextensive with order Agaricales: mushrooms; toadstools; agarics; bracket fungi
+8023,Hymenophyllaceae family_Hymenophyllaceae,terrestrial (hygrophytic) or epiphytic ferns: filmy ferns
+8024,Hymenophyllum genus_Hymenophyllum,type genus of the Hymenophyllaceae: filmy ferns
+8025,Hymenoptera order_Hymenoptera,an order of insects including: bees; wasps; ants; ichneumons; sawflies; gall wasps; etc.
+8026,Hynerpeton genus_Hynerpeton,earliest fossil amphibian ever found; of the Devonian; found in Pennsylvania
+8027,Hynerpeton_bassetti,fossil amphibian of the Devonian having well-developed forelimbs; found in Pennsylvania
+8028,Hyoscyamus genus_Hyoscyamus,genus of poisonous herbs: henbane
+8029,Hypatia,Greek philosopher and astronomer; she invented the astrolabe (370-415)
+8030,Hypentelium genus_Hypentelium,a genus of fish in the family Catostomidae
+8031,Hyperborean,(Greek mythology) one of a people that the ancient Greeks believed lived in a warm and sunny land north of the source of the north wind
+8032,Hypericaceae family_Hypericaceae,used in some classification systems for plants usually included among the Guttiferae
+8033,Hypericum genus_Hypericum,large almost cosmopolitan genus of evergreen or deciduous shrubs and herbs with often showy yellow flowers; cosmopolitan except tropical lowlands and Arctic or high altitudes and desert regions
+8034,Hyperion,(Greek mythology) a Titan who was the son of Gaea and Uranus and the father of Helios and Selene and Eos in ancient mythology
+8035,Hypermastigina order_Hypermastigina,cellulose-producing flagellates
+8036,Hyperoglyphe genus_Hyperoglyphe,a genus of Stromateidae
+8037,Hyperoodon genus_Hyperoodon,bottle-nosed whales
+8038,Hyphantria genus_Hyphantria,fall webworms
+8039,Hyphantria_cunea,moth whose larvae are fall webworms
+8040,Hypnos,(Greek mythology) the Greek god of sleep; the son of Nyx
+8041,Hypochaeris genus_Hypochaeris Hypochoeris genus_Hypochoeris,widely distributed genus of herbs with milky juice; includes some cosmopolitan weeds
+8042,Hypocreaceae family_Hypocreaceae,family of fungi having brightly colored fleshy or membranous ascocarps; sometimes placed in its own order Hypocreales
+8043,Hypocreales order_Hypocreales,used in some classifications for the family Hypocreaceae
+8044,Hypoderma genus_Hypoderma,in some classifications considered the type genus of the family Hypodermatidae: warble flies
+8045,Hypopachus genus_Hypopachus,sheep frogs
+8046,Hypopitys genus_Hypopitys,term used in some classifications for the pinesaps, which are usually included in the genus Monotropa
+8047,Hypoxidaceae family_Hypoxidaceae,in some classification systems included in the Amaryllidaceae
+8048,Hypoxis genus_Hypoxis,small plants that resemble amaryllis and that grow from a corm and bear flowers on a leafless stalk; sometimes classified as member of the family Amaryllidaceae: star grass
+8049,Hypsiglena genus_Hypsiglena,night snakes
+8050,Hypsiprymnodon genus_Hypsiprymnodon,musk kangaroos
+8051,Hyracoidea order_Hyracoidea,hyraxes and some extinct animals
+8052,Hyracotherium genus_Hyracotherium,extinct horse genus; formerly called eohippus
+8053,Hyssopus genus_Hyssopus,Eurasian genus of perennial herbs or subshrubs
+8054,Hystricidae family_Hystricidae,Old World porcupines
+8055,Hystricomorpha suborder_Hystricomorpha,an order of rodents including: porcupines; guinea pigs; chinchillas; etc.
+8056,I i,the 9th letter of the Roman alphabet
+8057,I-beam,girder having a cross section resembling the letter `I'
+8058,ID I.D.,a card or badge used to identify the bearer; "you had to show your ID in order to get in"
+8059,II_Chronicles 2_Chronicles,the second of two Old Testament books telling the history of Judah and Israel until the return from the Babylonian Captivity in 536 BC
+8060,II_Esdras 2_Esdras,an Apocryphal book of angelic revelations
+8061,II_Kings 2_Kings,the second of two Old Testament books telling the histories of the kings of Judah and Israel
+8062,II_Maccabees 2_Maccabees,an Apocryphal book describing the life of Judas Maccabaeus
+8063,II_Samuel 2_Samuel,the second of two books of the Old Testament that tell of Saul and David
+8064,IJssel IJssel_river,a river in the central Netherlands flowing north to the IJsselmeer
+8065,IJsselmeer,a shallow lake in northwestern Netherlands created in 1932 by building a dam across the entrance to the Zuider Zee
+8066,IOU,an informal debt instrument; representing `I owe you'
+8067,I_Chronicles 1_Chronicles,the first of two Old Testament books telling the history of Judah and Israel until the return from the Babylonian Captivity in 536 BC
+8068,I_Esdra 1_Esdras,an Apocryphal book consisting of a compilation from I Chronicles and II Chronicles and Ezra and Nehemiah
+8069,I_Kings 1_Kings,the first of two Old Testament books telling the histories of the kings of Judah and Israel
+8070,I_Maccabees 1_Maccabees,an Apocryphal book describing the life of Judas Maccabaeus
+8071,I_Samuel 1_Samuel,the first of two books in the Old Testament that tell of Saul and David
+8072,Iago,the villain in William Shakespeare's tragedy who tricked Othello into murdering his wife
+8073,Iapetus,(Greek mythology) the Titan who was father of Atlas and Epimetheus and Prometheus in ancient mythology
+8074,Ibadan,a large Yoruba city in southwestern Nigeria; site of a university
+8075,Iberia,an ancient geographical region to the south of the Caucasus Mountains that corresponded approximately to the present-day Georgia
+8076,Iberian,a native or inhabitant of Iberia in the Caucasus
+8077,Iberian,a native or inhabitant of the Iberian Peninsula (especially in ancient times)
+8078,Iberian_Peninsula Iberia,a peninsula in southwestern Europe
+8079,Iberis genus_Iberis,Old World herbs and subshrubs: candytuft
+8080,Ibero-mesornis,sparrow-sized fossil bird of the Cretaceous period having a vestigial tail; found in Spain; considered possibly the third most primitive of all birds
+8081,Ibert Jacques_Francois_Antoine_Ibert,French composer (1890-1962)
+8082,Ibizan_hound Ibizan_Podenco,breed of slender agile medium-sized hound found chiefly in the Balearic Islands; said to have been bred originally by the Pharaohs of ancient Egypt
+8083,Ibsen Henrik_Ibsen Henrik_Johan_Ibsen,realistic Norwegian author who wrote plays on social and political themes (1828-1906)
+8084,Icarus,(Greek mythology) son of Daedalus; while escaping from Crete with his father (using the wings Daedalus had made) he flew too close to the sun and the wax melted and he fell into the Aegean and drowned
+8085,Iceland,a volcanic island in the North Atlantic near the Arctic Circle
+8086,Iceland Republic_of_Iceland,an island republic on the island of Iceland; became independent of Denmark in 1944
+8087,Iceland_moss Iceland_lichen Cetraria_islandica,lichen with branched flattened partly erect thallus that grows in mountainous and Arctic regions; used as a medicine or food for humans and livestock; a source of glycerol
+8088,Iceland_poppy Papaver_alpinum,Old World alpine poppy with white or yellow to orange flowers
+8089,Iceland_poppy arctic_poppy Papaver_nudicaule,subarctic perennial poppy of both hemispheres having fragrant white or yellow to orange or peach flowers
+8090,Iceland_spar,a transparent calcite found in Iceland and used in polarizing microscopes
+8091,Icelander,a native or inhabitant of Iceland
+8092,Icelandic,a Scandinavian language that is the official language of Iceland
+8093,Icelandic_krona krona,the basic unit of money in Iceland
+8094,Icelandic_monetary_unit,monetary unit in Iceland
+8095,Ichneumonidae family_Ichneumonidae,ichneumon flies
+8096,Ichthyosauria order_Ichthyosauria,extinct marine reptiles: ichthyosaurs
+8097,Ichthyosauridae family_Ichthyosauridae,later ichthyosaurs of the Jurassic and Cretaceous; widely distributed in both hemispheres
+8098,Ichyostega,early tetrapod amphibian found in Greenland
+8099,Ictalurus genus_Ictalurus,channel catfishes
+8100,Icteria genus_Icteria,New World chats
+8101,Icteridae family_Icteridae,American orioles; American blackbirds; bobolinks; meadowlarks
+8102,Icterus genus_Icterus,type genus of the Icteridae
+8103,Ictiobus genus_Ictiobus,buffalo fishes
+8104,Ictodosauria order_Ictodosauria,extinct reptiles of the later Triassic period
+8105,Ictonyx genus_Ictonyx,a genus of Mustelidae
+8106,Id_al-Adha Feast_of_Sacrifice,the 10th day of Dhu'l-Hijja; all Muslims attend a service in the mosques and those who are not pilgrims perform a ritual slaughter of a sheep (commemorating God's ransom of Abraham's son from sacrifice) and give at least a third of the meat to charity
+8107,Id_al-Fitr,a Muslim day of feasting at the end of Ramadan
+8108,Idaho Gem_State ID Id.,a state in the Rocky Mountains
+8109,Idaho_Falls,a town in southeastern Idaho on the Snake River
+8110,Idahoan,a native or resident of Idaho
+8111,Identikit Identikit_picture,a likeness of a person's face constructed from descriptions given to police; uses a set of transparencies of various facial features that can be combined to build up a picture of the person sought
+8112,Idiom_Neutral,an artificial language proposed for use as an auxiliary international language; based on Volapuk but with a vocabulary selected on the basis of the maximum internationality of the roots
+8113,Iditarod Iditarod_Trail_Dog_Sled_Race,an important dogsled race run annually on the Iditarod Trail
+8114,Iditarod_Trail,a trail that extends 1,100 miles from Anchorage over the Alaska Range to Nome
+8115,Ido,an artificial language that is a revision and simplification of Esperanto
+8116,Idun Ithunn,(Norse mythology) goddess of spring and wife of Bragi; guarded the apples that kept the gods eternally young
+8117,Igbo,a member of the largest ethnic group in southeastern Nigeria; "most Igbo are farmers"
+8118,Igigi,any of a group of heavenly spirits under the god Anu
+8119,Iglesias Julio_Iglesias,Spanish singer noted for his ballads and love songs (born in 1943)
+8120,Ignatius Saint_Ignatius St._Ignatius,bishop of Antioch who was martyred under the Roman Emperor Trajan (died 110)
+8121,Ignatius_of_Loyola Saint_Ignatius_of_Loyola St._Ignatius_of_Loyola Loyola,Spaniard and Roman Catholic theologian and founder of the Society of Jesus; a leading opponent of the Reformation (1491-1556)
+8122,Iguanidae family_Iguanidae Iguania family_Iguania,New World lizards
+8123,Iguanodontidae family_Iguanodontidae,iguanodons
+8124,Iguazu Iguazu_Falls Iguassu Iguassu_Falls Victoria_Falls,a large waterfall on the border between Argentina and Brazil
+8125,Ile-St-Louis,island in Paris on the Seine
+8126,Ile-de-France,a region of north central France including Paris and the area around it
+8127,Ilex genus_Ilex,a large genus of dicotyledonous trees and shrubs of the family Aquifoliaceae that have small flowers and berries (including hollies)
+8128,Iliad,a Greek epic poem (attributed to Homer) describing the siege of Troy
+8129,Iliamna genus_Iliamna,small genus of perennial herbs or subshrubs; some often placed in other genera
+8130,Illampu,a mountain peak in the Andes in Bolivia (20,870 feet high)
+8131,Illecebrum genus_Illecebrum,one species: coral necklace
+8132,Illicium genus_Illicium,anise trees: evergreen trees with aromatic leaves
+8133,Illimani,a mountain peak in the Andes in Bolivia (21,201 feet high)
+8134,Illinois,a member of the Algonquian people formerly of Illinois and regions to the west
+8135,Illinois,the Algonquian language of the Illinois and Miami
+8136,Illinois Prairie_State Land_of_Lincoln IL Ill.,a midwestern state in north-central United States
+8137,Illinois_River,a river in Illinois that flows southwest to the Mississippi River
+8138,Illinoisan,a native or resident of Illinois
+8139,Illyria,an uncertain region on the east shore of the Adriatic where an ancient Indo-European people once lived
+8140,Illyrian,a minor and almost extinct branch of the Indo-European languages; spoken along the Dalmatian coast
+8141,Immaculate_Conception December_8,Roman Catholic holy day first celebrated in 1854
+8142,Immaculate_Conception Immaculate_Conception_of_the_Virgin_Mary,(Christianity) the Roman Catholic dogma that God preserved the Virgin Mary from any stain of original sin from the moment she was conceived
+8143,Immigration_and_Naturalization_Service INS,an agency in the Department of Justice that enforces laws and regulations for the admission of foreign-born persons to the United States
+8144,Impressionism,a school of late 19th century French painters who pictured appearances by strokes of unmixed colors to give the impression of reflected light
+8145,Inachis genus_Inachis,a genus of Nymphalidae
+8146,Inanna,consort of Dumuzi (Tammuz)
+8147,Inauguration_Day January_20,the day designated for inauguration of the United States President
+8148,Inca,a ruler of the Incas (or a member of his family)
+8149,Inca Inka,the small group of Quechua living in the Cuzco Valley in Peru who established hegemony over their neighbors in order to create an empire that lasted from about 1100 until the Spanish conquest in the early 1530s
+8150,Inca Inka Incan,a member of the Quechuan people living in the Cuzco valley in Peru
+8151,Incarnation,(Christianity) the Christian doctrine of the union of God and man in the person of Jesus Christ
+8152,Inchon,a battle in the Korean War (1950); United States forces landed at Inchon
+8153,Inchon Incheon Chemulpo,a port city in western South Korea on the Yellow Sea
+8154,Inconel,a nickel-base alloy with chromium and iron; used in gas-turbine blades
+8155,Independence,a city in western Missouri; the beginning of the Santa Fe Trail
+8156,Independence_Day Fourth_of_July July_4,a legal holiday in the United States
+8157,Independence_Hall,the building in Philadelphia where the Declaration of Independence was signed
+8158,India Republic_of_India Bharat,a republic in the Asian subcontinent in southern Asia; second most populous country in the world; achieved independence from the United Kingdom in 1947
+8159,India-rubber_tree India-rubber_plant India-rubber_fig rubber_plant Assam_rubber Ficus_elastica,large tropical Asian tree frequently dwarfed as a houseplant; source of Assam rubber
+8160,India_ink drawing_ink,a black liquid ink used for printing or writing or drawing
+8161,Indiaman,a large sailing ship that was engaged in the British trade with India
+8162,Indian,a native or inhabitant of India
+8163,Indian_Mutiny Sepoy_Mutiny,discontent with British administration in India led to numerous mutinies in 1857 and 1858; the revolt was put down after several battles and sieges (notably the siege at Lucknow)
+8164,Indian_Ocean,the 3rd largest ocean; bounded by Africa on the west, Asia on the north, Australia on the east and merging with the Antarctic Ocean to the south
+8165,Indian_agent,a representative of the federal government to American Indian tribes (especially on Indian reservations)
+8166,Indian_beech Pongamia_glabra,evergreen Asiatic tree having glossy pinnate leaves and racemose creamy-white scented flowers; used as a shade tree
+8167,Indian_blackwood East_Indian_rosewood East_India_rosewood Indian_rosewood Dalbergia_latifolia,East Indian tree having a useful dark purple wood
+8168,Indian_buffalo,upland buffalo of eastern Asia where true water buffaloes do not thrive; used for draft and milk
+8169,Indian_button_fern Tectaria_macrodonta,fern of tropical Asia having round buttonlike bulbils
+8170,Indian_chief Indian_chieftain,the leader of a group of Native Americans
+8171,Indian_club,a bottle-shaped club used in exercises
+8172,Indian_cobra Naja_naja,a cobra of tropical Africa and Asia
+8173,Indian_coral_tree Erythrina_variegata Erythrina_Indica,small to medium-sized thorny tree of tropical Asia and northern Australia having dense clusters of scarlet or crimson flowers and black seeds
+8174,Indian_crocus,any of several dwarf orchids of the genus Pleione bearing one or two solitary white or pink to magenta or occasionally yellow flowers with slender stalks
+8175,Indian_elephant Elephas_maximus,Asian elephant having smaller ears and tusks primarily in the male
+8176,Indian_giver,an offensive term for someone who asks you to return a present he has given you
+8177,Indian_hemp Cannabis_indica,source of e.g. bhang and hashish as well as fiber
+8178,Indian_hemp rheumatism_weed Apocynum_cannabinum,Canadian dogbane yielding a tough fiber used as cordage by Native Americans; used in folk medicine for pain or inflammation in joints
+8179,Indian_lettuce,a plant of the genus Montia having edible pleasant-tasting leaves
+8180,Indian_madder munjeet Rubia_cordifolia,perennial East Indian creeping or climbing herb used for dye in the orient
+8181,Indian_mallow Sida_spinosa,tropical American weed having pale yellow or orange flowers naturalized in southern United States
+8182,Indian_monetary_unit,monetary unit in India
+8183,Indian_mongoose Herpestes_nyula,keen-sighted viverrine of southern Asia about the size of a ferret; often domesticated
+8184,Indian_paintbrush painted_cup,any of various plants of the genus Castilleja having dense spikes of hooded flowers with brightly colored bracts
+8185,Indian_pipe waxflower Monotropa_uniflora,small waxy white or pinkish-white saprophytic woodland plant having scalelike leaves and a nodding flower; turns black with age
+8186,Indian_plantain,any of various plants of the genus Cacalia having leaves resembling those of plantain
+8187,Indian_poke Phytolacca_acinosa,pokeweed of southeastern Asia and China
+8188,Indian_python Python_molurus,very large python of southeast Asia
+8189,Indian_rat_snake Ptyas_mucosus,enter buildings in pursuit of prey
+8190,Indian_rattlebox Crotalaria_spectabilis,erect subshrub having purple-tinted flowers and an inflated pod in which the ripe seeds rattle; India
+8191,Indian_red,a red pigment composed in part from ferric oxide which is often used in paints and cosmetics
+8192,Indian_red,a red soil containing ferric oxide; often used as a pigment
+8193,Indian_red,a reddish-brown color resembling the red soil used as body paint by American Indians
+8194,Indian_reservation,a reservation set aside for the use of Indians
+8195,Indian_rhinoceros Rhinoceros_unicornis,having one horn
+8196,Indian_rhododendron Melastoma_malabathricum,evergreen spreading shrub of India and southeastern Asia having large purple flowers
+8197,Indian_rupee rupee,the basic unit of money in India; equal to 100 paise
+8198,Indian_summer Saint_Martin's_summer,a period of unusually warm weather in the autumn
+8199,Indian_tobacco bladderpod Lobelia_inflata,North American wild lobelia having small blue flowers and inflated capsules formerly used as an antispasmodic
+8200,Indian_trail,a trail through the wilderness worn by Amerindians
+8201,Indiana Hoosier_State IN Ind.,a state in midwestern United States
+8202,Indiana Robert_Indiana,United States pop artist (born 1928)
+8203,Indianan Hoosier,a native or resident of Indiana
+8204,Indianapolis capital_of_Indiana,the capital and largest city of Indiana; a major commercial center in the country's heartland; site of an annual 500-mile automobile race
+8205,Indic Indo-Aryan,a branch of the Indo-Iranian family of languages
+8206,Indicatoridae family_Indicatoridae,honey guides
+8207,Indigirka Indigirka_River,a river in far eastern Siberia that flows generally northward to the Arctic Ocean
+8208,Indigofera genus_Indigofera,genus of tropical herbs and shrubs having odd-pinnate leaves and spurred flowers in long racemes or spikes
+8209,Indo-European Indo-European_language Indo-Hittite,the family of languages that by 1000 BC were spoken throughout Europe and in parts of southwestern and southern Asia
+8210,Indo-Iranian Indo-Iranian_language,the branch of the Indo-European family of languages including the Indic and Iranian language groups
+8211,Indochina Indochinese_peninsula,a peninsula of southeastern Asia that includes Myanmar and Cambodia and Laos and Malaysia and Thailand and Vietnam
+8212,Indonesia Republic_of_Indonesia Dutch_East_Indies,a republic in southeastern Asia on an archipelago including more than 13,000 islands; achieved independence from the Netherlands in 1945; the principal oil producer in the Far East and Pacific regions
+8213,Indonesian,a native or inhabitant of Indonesia
+8214,Indonesian Bahasa_Indonesia Bahasa,the dialect of Malay used as the national language of the Republic of Indonesia or of Malaysia
+8215,Indonesian_Borneo Kalimantan,the part of Indonesia on the southern side of the island of Borneo
+8216,Indonesian_monetary_unit,monetary unit in Indonesia
+8217,Indra,chief Hindu god of the Rig-Veda; god of rain and thunder
+8218,Indriidae family_Indriidae,a family of Lemuroidea
+8219,Indus,a faint constellation in the southern hemisphere near Telescopium and Tucana
+8220,Indus Indus_River,an Asian river that rises in Tibet and flows through northern India and then southwest through Kashmir and Pakistan to the Arabian Sea; "the valley of the Indus was the site of an early civilization"
+8221,Indus_civilization,the bronze-age culture of the Indus valley that flourished from about 2600-1750 BC
+8222,Industrial_Revolution technological_revolution,the transformation from an agricultural to an industrial nation
+8223,Industrial_Workers_of_the_World IWW I.W.W.,a former international labor union and radical labor movement in the United States; founded in Chicago in 1905 and dedicated to the overthrow of capitalism; its membership declined after World War I
+8224,Infusoria subclass_Infusoria,in some recent classifications, coextensive with the Ciliata: minute organisms found in decomposing infusions of organic matter
+8225,Inge William_Inge,United States playwright (1913-1973)
+8226,Inge William_Ralph_Inge Gloomy_Dean,English prelate noted for his pessimistic sermons and articles (1860-1954)
+8227,Ingres Jean_Auguste_Dominique_Ingres,French classical painter (1780-1867)
+8228,Ingrian,a Finnic language spoken by the Ingrian
+8229,Ingrian Inger Ingerman,a member of western Finnish people formerly living in the Baltic province where Saint Petersburg was built
+8230,Inland_Passage Inside_Passage,a naturally protected waterway from Seattle to Skagway in southeastern Alaska
+8231,Inland_Revenue IR,a board of the British government that administers and collects major direct taxes
+8232,Inland_Sea,an arm of the Pacific Ocean in southern Japan; surrounded by the islands of Honshu and Shikoku and Kyushu and linked to the Sea of Japan by a narrow channel; the chief port is Hiroshima
+8233,Inner_Hebrides,islands between the Outer Hebrides and the western coast of Scotland
+8234,Inner_Light Light Light_Within Christ_Within,a divine presence believed by Quakers to enlighten and guide the soul
+8235,Inner_Mongolia Nei_Monggol,an autonomous region of northeastern China that was annexed by the Manchu rulers in 1635 and became an integral part of China in 1911
+8236,Innocent_III Lotario_di_Segni,Italian pope from 1198 to 1216 who instituted the Fourth Crusade and under whom papal intervention in European politics reached its height (1161-1216)
+8237,Innocent_VIII Giovanni_Battista_Cibo,Italian pope from 1484 to 1492 who was known as a nepotist and was attacked by Savonarola for his worldliness (1432-1492)
+8238,Innocent_XI Benedetto_Odescalchi,Italian pope from 1676 to 1689 whose papacy was marked by the struggle with Louis XIV of France over papal authority over French Catholics; known for saintliness and canonized in 1956 (1611-1689)
+8239,Innocent_XII Antonio_Pignatelli,Italian pope from 1691 to 1700 who abolished nepotism within the church hierarchy and was universally loved for his charity and piety
+8240,Innsbruck,city in southwestern Austria; known as a summer and winter resort
+8241,Inquisition,a former tribunal of the Roman Catholic Church (1232-1820) created to discover and suppress heresy
+8242,Inquisitor,an official of the ecclesiastical court of the Inquisition
+8243,Insecta class_Insecta Hexapoda class_Hexapoda,insects; about five-sixths of all known animal species
+8244,Insectivora order_Insectivora,shrews; moles; hedgehogs; tenrecs
+8245,Insessores order_Insessores perching_bird percher,a bird with feet adapted for perching (as on tree branches); this order is now generally abandoned by taxonomists
+8246,Inspector_Maigret Commissaire_Maigret,a fictional detective in novels by Georges Simenon
+8247,Intelligence_Community National_Intelligence_Community United_States_Intelligence_Community IC,a group of government agencies and organizations that carry out intelligence activities for the United States government; headed by the Director of Central Intelligence
+8248,Intelnet,a computer network similar to but separate from the internet; devoted to the dissemination of information to and for the Intelligence Community
+8249,Interlaken,a popular resort town in the Alps in west central Switzerland
+8250,Interlingua,an artificial language proposed for use as an auxiliary international language; based on words common to English and the Romance languages
+8251,Internal_Revenue_Service IRS,the bureau of the Treasury Department responsible for tax collections
+8252,International,any of several international socialist organizations
+8253,International_Atomic_Energy_Agency IAEA,the United Nations agency concerned with atomic energy
+8254,International_Bank_for_Reconstruction_and_Development World_Bank IBRD,a United Nations agency created to assist developing nations by loans guaranteed by member governments
+8255,International_Civil_Aviation_Organization ICAO,the United Nations agency concerned with civil aviation
+8256,International_Court_of_Justice World_Court,a court established to settle disputes between members of the United Nations
+8257,International_Development_Association IDA,an agency of the United Nations affiliated with the World Bank
+8258,International_Finance_Corporation IFC,a United Nations agency that invests directly in companies and guarantees loans to private investors; affiliated with the World Bank
+8259,International_Grandmaster,a chess player who has been awarded the highest title by an international chess organization
+8260,International_Islamic_Front_for_Jihad_against_Jews_and_Crusaders,a terrorist group organized by Osama bin Laden in 1998 that provided an umbrella organization for al-Qaeda and other militant groups in Egypt and Algeria and Pakistan and Bangladesh
+8261,International_Labor_Organization International_Labour_Organization ILO,the United Nations agency concerned with the interests of labor
+8262,International_Maritime_Organization IMO,the United Nations agency concerned with international maritime activities
+8263,International_Monetary_Fund IMF,a United Nations agency to promote trade by increasing the exchange stability of the major currencies
+8264,International_Olympic_Committee IOC I.O.C.,organization responsible for organizing the modern Olympic Games
+8265,International_Relations_and_Security_Network ISN,Switzerland's information network for security and defense studies and for peace and conflict research and for international relations
+8266,International_Wanted_Notice Red_Notice,an Interpol notice describing a wanted person and asking that he or she be arrested with a view to extradition; a wanted notice that is issued by Interpol at the request of an Interpol member country and distributed to all member countries; "an Interpol Red Notice is the closest instrument to an international arrest warrant in use today"
+8267,Internationale,a revolutionary socialist anthem
+8268,Internet_Explorer Explorer IE,a commercial browser
+8269,Interpol,an international intelligence agency permitting collaboration among intelligence agencies around the world
+8270,Interstate_Commerce_Commission ICC,a former independent federal agency that supervised and set rates for carriers that transported goods and people between states; was terminated in 1995; "the ICC was established in 1887 as the first federal agency"
+8271,Invar,an alloy of iron and nickel having a low coefficient of thermal expansion; used in tuning forks and measuring tapes and other instruments
+8272,Io,(Greek mythology) a maiden seduced by Zeus; when Hera was about to discover them together Zeus turned her into a white heifer
+8273,Io,the closest of Jupiter's moons; has active volcanoes
+8274,Ionesco Eugene_Ionesco,French dramatist (born in Romania) who was a leading exponent of the theater of the absurd (1912-1994)
+8275,Ionia,region of western Asia Minor colonized by ancient Greeks
+8276,Ionian,a member of one of four linguistic divisions of the prehistoric Greeks
+8277,Ionian,the ancient Greek inhabitants of Attica and related regions in Ionia
+8278,Ionian_Sea,an arm of the Mediterranean Sea between western Greece and southern Italy
+8279,Ionic_order Ionian_order,the second Greek order; the capital is decorated with spiral scrolls
+8280,Iowa Hawkeye_State IA Ia.,a state in midwestern United States
+8281,Iowa Ioway,a member of the Siouan people formerly living in Iowa and Minnesota and Missouri
+8282,Iowa Ioway,a dialect of the Chiwere language spoken by the Iowa
+8283,Iowa_crab Iowa_crab_apple prairie_crab western_crab_apple Malus_ioensis,wild crab apple of western United States with fragrant pink flowers
+8284,Iowan,a native or resident of Iowa
+8285,Iphigenia,(Greek mythology) the daughter of Clytemnestra and Agamemnon; Agamemnon was obliged to offer her as a sacrifice to Artemis when the Greek fleet was becalmed on its way to Troy; Artemis rescued her and she later became a priestess
+8286,Ipomoea genus_Ipomoea,morning glory
+8287,Ipsus battle_of_Ipsus,a battle between the successors of Alexander the Great (301 BC); Lysimachus and Seleucus defeated Antigonus and Demetrius
+8288,Iran Islamic_Republic_of_Iran Persia,a theocratic Islamic republic in the Middle East in western Asia; Iran was the core of the ancient empire that was known as Persia until 1935; rich in oil
+8289,Iran-Iraq_War Gulf_War,a dispute over control of the waterway between Iraq and Iran broke out into open fighting in 1980 and continued until 1988, when they accepted a UN cease-fire resolution
+8290,Irani Iranian Persian,a native or inhabitant of Iran; "the majority of Irani are Persian Shiite Muslims"
+8291,Iranian Iranian_language,the modern Persian language spoken in Iran
+8292,Iranian_dinar dinar,100 dinars equal 1 rial in Iran
+8293,Iranian_monetary_unit,monetary unit in Iran
+8294,Iranian_rial rial,the basic unit of money in Iran
+8295,Iraq Republic_of_Iraq Al-Iraq Irak,a republic in the Middle East in western Asia; the ancient civilization of Mesopotamia was in the area now known as Iraq
+8296,Iraqi Iraki,a native or inhabitant of Iraq; "the majority of Iraqi are Arab Shiite Muslims although Sunni Muslims control the government"
+8297,Iraqi_Intelligence_Service IIS Iraqi_Mukhabarat,the most notorious and possibly the most important arm of Iraq's security system; "the Iraqi Mukhabarat has been involved in numerous terrorist activities"
+8298,Iraqi_Kurdistan,the part of Kurdistan that is in northwestern Iraq
+8299,Iraqi_National_Congress INC,a heterogeneous collection of groups united in their opposition to Saddam Hussein's government of Iraq; formed in 1992 it is comprised of Sunni and Shiite Arabs and Kurds who hope to build a new government
+8300,Iraqi_dinar dinar,the basic unit of money in Iraq; equal to 1,000 fils
+8301,Iraqi_monetary_unit,monetary unit in Iraq
+8302,Ireland Hibernia Emerald_Isle,an island comprising the republic of Ireland and Northern Ireland
+8303,Ireland Republic_of_Ireland Irish_Republic Eire,a republic consisting of 26 of 32 counties comprising the island of Ireland; achieved independence from the United Kingdom in 1921
+8304,Irena genus_Irena,type genus of the Irenidae: fairy bluebirds
+8305,Irenaeus Saint_Irenaeus St._Irenaeus,Greek theologian who was bishop of Lyons and an antiheretical writer; a saint and Doctor of the Church (circa 130-200)
+8306,Irenidae family_Irenidae,a family of birds of the suborder Oscines
+8307,Iresine genus_Iresine,genus of tropical American herbs or subshrubs
+8308,Iridaceae family_Iridaceae iris_family,large family of usually perennial geophytic herbs with rhizomes or corms or bulbs
+8309,Iridoprocne genus_Iridoprocne,a genus of Hirundinidae
+8310,Irish Irish_Gaelic,the Celtic language of Ireland
+8311,Irish Irish_people,people of Ireland or of Irish extraction
+8312,Irish Irish_whiskey Irish_whisky,whiskey made in Ireland chiefly from barley
+8313,Irish_National_Liberation_Army INLA People's_Liberation_Army People's_Republican_Army Catholic_Reaction_Force,a radical terrorist group dedicated to the removal of British forces from Northern Ireland and the unification of Ireland
+8314,Irish_Republican_Army IRA Provisional_Irish_Republican_Army Provisional_IRA Provos,a militant organization of Irish nationalists who used terrorism and guerilla warfare in an effort to drive British forces from Northern Ireland and achieve a united independent Ireland
+8315,Irish_Sea,an arm of the North Atlantic between Great Britain and Ireland
+8316,Irish_coffee,sweetened coffee with Irish whiskey and whipped cream
+8317,Irish_monetary_unit,monetary unit in Eire
+8318,Irish_moss carrageen carageen carragheen Chondrus_crispus,dark purple edible seaweed of the Atlantic coasts of Europe and North America
+8319,Irish_person Irelander,a native or inhabitant of Ireland
+8320,Irish_pound Irish_punt punt pound,formerly the basic unit of money in Ireland; equal to 100 pence
+8321,Irish_setter red_setter,an Irish breed with a chestnut-brown or mahogany-red coat
+8322,Irish_soda_bread,round loaf made with soda and buttermilk; often containing caraway seeds and raisins
+8323,Irish_stew,meat (especially mutton) stewed with potatoes and onions
+8324,Irish_terrier,medium-sized breed with a wiry brown coat; developed in Ireland
+8325,Irish_water_spaniel,breed of large spaniels developed in Ireland having a heavy coat of liver-colored curls and a topknot of long curls and a nearly hairless tail
+8326,Irish_wolfhound,large breed of hound with a rough thick coat
+8327,Irishman,a man who is a native or inhabitant of Ireland
+8328,Irishwoman,a woman who is a native or inhabitant of Ireland
+8329,Iron_Age,(archeology) the period following the Bronze Age; characterized by rapid spread of iron tools and weapons
+8330,Iroquoian Iroquois Iroquoian_language,a family of North American Indian languages spoken by the Iroquois
+8331,Iroquois,any member of the warlike North American Indian peoples formerly living in New York State; the Iroquois League were allies of the British during the American Revolution
+8332,Iroquois_League League_of_Iroquois Five_Nations Six_Nations,a league of Iroquois tribes including originally the Mohawk, Oneida, Onondaga, Cayuga and Seneca (the Five Nations); after 1722 they were joined by the Tuscarora (the Six Nations)
+8333,Irrawaddy Irrawaddy_River,the main river of Myanmar rising in the north and flowing south through the length of Burma to empty into the Andaman Sea
+8334,Irtish Irtish_River Irtysh Irtysh_River,an Asian river that rises in the Altai Mountains in northern China and flows generally northwest to become a tributary of the Ob River
+8335,Irula,a Dravidian language closely related to Tamil that is spoken in a hilly section of southwestern India
+8336,Irving John_Irving,United States writer of darkly humorous novels (born in 1942)
+8337,Irving Washington_Irving,United States writer remembered for his stories (1783-1859)
+8338,Irvingia genus_Irvingia,wild mango
+8339,Isaac,(Old Testament) the second patriarch; son of Abraham and Sarah who was offered by Abraham as a sacrifice to God; father of Jacob and Esau
+8340,Isabella Queen_Isabella Isabella_I Isabella_the_Catholic,the queen of Castile whose marriage to Ferdinand of Aragon in 1469 marked the beginning of the modern state of Spain; they instituted the Spanish Inquisition in 1478 and sponsored the voyages of Christopher Columbus in 1492 (1451-1504)
+8341,Isaiah,(Old Testament) the first of the major Hebrew prophets (8th century BC)
+8342,Isaiah Book_of_Isaiah,an Old Testament book consisting of Isaiah's prophecies
+8343,Isatis genus_Isatis,Old World genus of annual to perennial herbs: woad
+8344,Ischia,a volcanic island (part of Campania) in the Tyrrhenian Sea at the north end of the Bay of Naples
+8345,Ischigualastia genus_Ischigualastia,early reptile found in Argentina
+8346,Isere Isere_River,a river in southeastern France; a tributary of the Rhone
+8347,Iseult Isolde,(Middle Ages) the bride of the king of Cornwall who (according to legend) fell in love with the king's nephew (Tristan) after they mistakenly drank a love potion that left them eternally in love with each other
+8348,Isfahan Esfahan Aspadana,city in central Iran; former capital of Persia
+8349,Isherwood Christopher_Isherwood Christopher_William_Bradshaw_Isherwood,United States writer (born in England) whose best known novels portray Berlin in the 1930's and who collaborated with W. H. Auden in writing plays in verse (1904-1986)
+8350,Ishmael,(Old Testament) the son of Abraham who was cast out after the birth of Isaac; considered the forebear of 12 Arabian tribes
+8351,Ishtar Mylitta,Babylonian and Assyrian goddess of love and fertility and war; counterpart to the Phoenician Astarte
+8352,Isis,Egyptian goddess of fertility; daughter of Geb; sister and wife of Osiris
+8353,Islam Islamism Mohammedanism Muhammadanism Muslimism,the monotheistic religious system of Muslims founded in Arabia in the 7th century and based on the teachings of Muhammad as laid down in the Koran; "Islam is a complete way of life, not a Sunday religion"; "the term Muhammadanism is offensive to Muslims who believe that Allah, not Muhammad, founded their religion"
+8354,Islam Muslimism,the civilization of Muslims collectively which is governed by the Muslim religion; "Islam is predominant in northern Africa, the Middle East, Pakistan, and Indonesia"
+8355,Islamabad capital_of_Pakistan,the capital of Pakistan in the north on a plateau; the site was chosen in 1959
+8356,Islamic_Army_of_Aden IAA Islamic_Army_of_Aden-Abyan Aden-Abyan_Islamic_Army,Yemen-based terrorist group that supports al-Qaeda's goals; seeks to overthrow the Yemeni government and eliminate United States interests; responsible for bombings and kidnappings and killing western tourists in Yemen
+8357,Islamic_Great_Eastern_Raiders-Front IBDA-C,a Turkish terrorist organization that claimed responsibility for bombing a British consulate and bank in Istanbul; a violent opponent of Turkey's secular government and its ties to the European Union and NATO
+8358,Islamic_Group_of_Uzbekistan IMU Islamic_Party_of_Turkestan,a terrorist group of Islamic militants formed in 1996; opposes Uzbekistan's secular regime and wants to establish an Islamic state in central Asia; is a conduit for drugs from Afghanistan to central Asian countries
+8359,Islamic_calendar Muhammadan_calendar Mohammedan_calendar Moslem_calendar Muslim_calendar,the lunar calendar used by Muslims; dates from 622 AD (the year of the Hegira); the beginning of the Muslim year retrogresses through the solar year completing the cycle every 32 years
+8360,Islamic_calendar_month,any lunar month in the Muslim calendar
+8361,Islamism,a fundamentalist Islamic revivalist movement generally characterized by moral conservatism and the literal interpretation of the Koran and the attempt to implement Islamic values in all aspects of life
+8362,Islamist,a scholar who knowledgeable in Islamic studies
+8363,Islamist,an orthodox Muslim
+8364,Islamophobia,prejudice against Muslims; "Muslim intellectuals are afraid of growing Islamophobia in the West"
+8365,Islay,an island of western Scotland at the southern end of the Inner Hebrides
+8366,Isle_Royal_National_Park,a national park on an island in Michigan; includes prehistoric iron mines
+8367,Isle_of_Skye,an island of northwestern Scotland noted for its rugged mountain scenery
+8368,Ismaili Ismailian,an adherent of Ismailism; a member of the Ismaili branch of Shiism
+8369,Ismailism,the branch of Shiism noted for its esoteric philosophy
+8370,Isocrates,Athenian rhetorician and orator (436-338 BC)
+8371,Isoetaceae family_Isoetaceae quillwort_family,quillworts; coextensive with the genus Isoetes
+8372,Isoetales order_Isoetales,aquatic or marsh-growing fern allies; known to have existed since the Cenozoic; sometimes included in Lycopodiales
+8373,Isoetes genus_Isoetes,type and genus of the Isoetaceae and sole extant genus of the order Isoetales
+8374,Isopoda order_Isopoda,woodlice
+8375,Isoptera order_Isoptera,order of social insects that live in colonies, including: termites; often placed in subclass Exopterygota
+8376,Isopyrum genus_Isopyrum,tufted perennial herbs of northern hemisphere
+8377,Isospondyli order_Isospondyli,most primitive teleost fishes; all are soft-finned: salmon; trout; herring; shad; sardines; anchovies; whitefish; smelts; tarpon
+8378,Israel,an ancient kingdom of the Hebrew tribes at the southeastern end of the Mediterranean Sea; founded by Saul around 1025 BC and destroyed by the Assyrians in 721 BC
+8379,Israel State_of_Israel Yisrael Zion Sion,Jewish republic in southwestern Asia at eastern end of Mediterranean; formerly part of Palestine
+8380,Israeli,a native or inhabitant of Israel
+8381,Israeli_Defense_Force IDF,the ground and air and naval forces of Israel
+8382,Israeli_monetary_unit,monetary unit in Israel
+8383,Israelite,a native or inhabitant of the ancient kingdom of Israel
+8384,Issachar,(Old Testament) a son of Jacob and a forebear of one of the tribes of Israel
+8385,Issus battle_of_Issus,a battle (333 BC) in which Alexander the Great defeated the Persians under Darius III
+8386,Istanbul Stambul Stamboul Constantinople,the largest city and former capital of Turkey; rebuilt on the site of ancient Byzantium by Constantine I in the fourth century; renamed Constantinople by Constantine who made it the capital of the Byzantine Empire; now the seat of the Eastern Orthodox Church
+8387,Isthmian_Games,the ancient Panhellenic games held biennially on the Isthmus of Corinth in the first and third years of each Olympiad
+8388,Isthmus_of_Corinth,a narrow isthmus between the Gulf of Corinth and the Saronic Gulf; a canal crosses the isthmus so that navigation is possible between the gulfs
+8389,Isthmus_of_Kra,a narrow isthmus linking the Malay Peninsula to the Asian mainland
+8390,Isthmus_of_Panama Isthmus_of_Darien,the isthmus that connects Central America and South America; was formerly called the Isthmus of Darien; "Balboa crossed the Isthmus of Darien"
+8391,Isthmus_of_Suez,the isthmus in northeastern Egypt that connects Africa and Asia
+8392,Isthmus_of_Tehuantepec,the narrowest part of southern Mexico is an isthmus between the Bay of Campeche on the north coast and the Gulf of Tehuantepec on the south coast
+8393,Istiophoridae family_Istiophoridae,sailfishes; spearfishes; marlins
+8394,Istiophorus genus_Istiophorus,type genus of the Istiophoridae
+8395,Isuridae family_Isuridae,in some classifications another name for the family Lamnidae
+8396,Isurus genus_Isurus,mako sharks
+8397,Italian,a native or inhabitant of Italy
+8398,Italian,the Romance language spoken in Italy
+8399,Italian_Peninsula,a boot-shaped peninsula in southern Europe extending into the Mediterranean Sea
+8400,Italian_Renaissance,the early period when Italy was the center of the Renaissance
+8401,Italian_bee,yellowish honeybee resembling the Carniolan bee in its habits
+8402,Italian_bread,unsweetened yeast-raised bread made without shortening and baked in long thick loaves with tapered ends
+8403,Italian_cypress Mediterranean_cypress Cupressus_sempervirens,tall Eurasian cypress with thin grey bark and ascending branches
+8404,Italian_dressing,a vinaigrette with garlic and herbs: oregano and basil and dill
+8405,Italian_greyhound,a toy dog developed from the greyhound
+8406,Italian_honeysuckle Italian_woodbine Lonicera_caprifolium,deciduous climbing shrub with fragrant yellow-white flowers in axillary whorls
+8407,Italian_monetary_unit,monetary unit in Italy
+8408,Italian_parsley flat-leaf_parsley Petroselinum_crispum_neapolitanum,a variety of parsley having flat leaves
+8409,Italian_region,Italy is divided into 20 regions for administrative purposes
+8410,Italian_ryegrass Italian_rye Lolium_multiflorum,European grass much used for hay and in United States also for turf and green manure
+8411,Italic Italic_language,a branch of the Indo-European languages of which Latin is the chief representative
+8412,Italy Italian_Republic Italia,a republic in southern Europe on the Italian Peninsula; was the core of the Roman Republic and the Roman Empire between the 4th century BC and the 5th century AD
+8413,Ithaca,a college town in central New York on Lake Cayuga
+8414,Ithaca Ithaki,a Greek island to the west of Greece; in Homeric legend Odysseus was its king
+8415,Ivan_III Ivan_III_Vasilievich Ivan_the_Great,grand duke of Muscovy whose victories against the Tartars laid the basis for Russian unity (1440-1505)
+8416,Ivan_IV Ivan_Iv_Vasilievich Ivan_the_Terrible,the first czar of Russia (1530-1584)
+8417,Ivanov Lev_Ivanov,Russian choreographer (1834-1905)
+8418,Ives Charles_Edward_Ives,United States composer noted for his innovative use of polytonality (1874-1954)
+8419,Ives James_Ives James_Merritt_Ives,United States lithographer who (with his partner Nathaniel Currier) produced thousands of prints signed `Currier & Ives' (1824-1895)
+8420,Ivory_Coast Cote_d'Ivoire Republic_of_Cote_d'Ivoire,a republic in western Africa on the Gulf of Guinea; one of the most prosperous and politically stable countries in Africa
+8421,Ivory_Coast_franc Cote_d'Ivoire_franc,the basic unit of money in the Ivory Coast
+8422,Ivry battle_of_Ivry Ivry_la_Bataille,a battle (1590) in which the Huguenots under Henry IV defeated the Catholics under the duke of Mayenne
+8423,Ivy_League,a league of universities and colleges in the northeastern United States that have a reputation for scholastic achievement and social prestige
+8424,Ivy_Leaguer,a student or graduate at an Ivy League school
+8425,Iwo Iwo_Jima invasion_of_Iwo,a bloody and prolonged operation on the island of Iwo Jima in which American marines landed and defeated Japanese defenders (February and March 1945)
+8426,Iwo_Jima,the largest of the Volcano Islands of Japan
+8427,Ixia genus_Ixia,a monocotyledonous genus of the family Iridaceae
+8428,Ixobrychus genus_Ixobrychus,bitterns
+8429,Ixodes genus_Ixodes,type genus of the family Ixodidae
+8430,Ixodes_dammini deer_tick,a northeastern tick now recognized as same species as Ixodes scapularis
+8431,Ixodes_dentatus,usually does not bite humans; transmits Lyme disease spirochete to cottontail rabbits and wood rats
+8432,Ixodes_neotomae,a tick that usually does not bite humans; transmits Lyme disease spirochete to dusky-footed wood rats
+8433,Ixodes_pacificus western_black-legged_tick,a tick that feeds on dusky-footed wood rat and bites humans; principal vector for Lyme disease in western United States especially northern California
+8434,Ixodes_persulcatus,bites humans; a vector for Lyme disease spirochete
+8435,Ixodes_scapularis black-legged_tick,parasitic on mice of genus Peromyscus and bites humans; principal vector for Lyme disease in eastern United States (especially New England); northern form was for a time known as Ixodes dammini (deer tick)
+8436,Ixodes_spinipalpis,usually does not bite humans; transmits Lyme disease spirochete to cottontail rabbits and wood rats
+8437,Ixodidae family_Ixodidae,hard ticks
+8438,Iyar Iyyar,the eighth month of the civil year; the second month of the ecclesiastical year (in April and May)
+8439,Izanagi,the god who fathered the islands and gods of Japan with his sister Izanami
+8440,Izanami,sister and consort of Izanami; mother of the islands and gods of Japan
+8441,Izmir Smyrna,a port city in western Turkey
+8442,J j,the 10th letter of the Roman alphabet
+8443,J_particle psi_particle,a neutral meson with a large mass
+8444,Jabalpur Jubbulpore,an industrial city of central India to the southeast of Delhi
+8445,Jack_Frost,a personification of frost or winter weather
+8446,Jack_of_all_trades,a person able to do a variety of different jobs acceptably well
+8447,Jack_the_Ripper,an unidentified English murderer in the 19th century
+8448,Jackson,a town in western Wyoming
+8449,Jackson,a town in western Tennessee
+8450,Jackson,a town in south central Michigan
+8451,Jackson Andrew_Jackson Old_Hickory,7th president of the US; successfully defended New Orleans from the British in 1815; expanded the power of the presidency (1767-1845)
+8452,Jackson Glenda_Jackson,English film actress who later became a member of British Parliament (born in 1936)
+8453,Jackson Helen_Hunt_Jackson Helen_Maria_Fiske_Hunt_Jackson,United States writer of romantic novels about the unjust treatment of Native Americans (1830-1885)
+8454,Jackson Jesse_Jackson Jesse_Louis_Jackson,United States civil rights leader who led a national campaign against racial discrimination and ran for presidential nomination (born in 1941)
+8455,Jackson Mahalia_Jackson,United States singer who did much to popularize gospel music (1911-1972)
+8456,Jackson Michael_Jackson Michael_Joe_Jackson,United States singer who began singing with his four brothers and later became a highly successful star during the 1980s (born in 1958)
+8457,Jackson Thomas_Jackson Thomas_J._Jackson Thomas_Jonathan_Jackson Stonewall_Jackson,general in the Confederate Army during the American Civil War whose troops at the first Battle of Bull Run stood like a stone wall (1824-1863)
+8458,Jackson capital_of_Mississippi,capital of the state of Mississippi on the Pearl River
+8459,Jacksonia genus_Jacksonia,genus of yellow-flowered Australian unarmed or spiny shrubs without true leaves but having leaflike stems or branches
+8460,Jacksonian,a follower of Andrew Jackson or his ideas
+8461,Jacksonian_epilepsy,focal epilepsy in which the attack usually moves from distal to proximal limb muscles on the same side of the body
+8462,Jacksonville,Florida's largest city; a port and important commercial center in northeastern Florida
+8463,Jacob,(Old Testament) son of Isaac; brother of Esau; father of the twelve patriarchs of Israel; Jacob wrestled with God and forced God to bless him, so God gave Jacob the new name of Israel (meaning `one who has been strong against God')
+8464,Jacob Francois_Jacob,French biochemist who (with Jacques Monod) studied regulatory processes in cells (born in 1920)
+8465,Jacob's_ladder Greek_valerian charity Polemonium_caeruleum Polemonium_van-bruntiae Polymonium_caeruleum_van-bruntiae,pinnate-leaved European perennial having bright blue or white flowers
+8466,Jacob's_ladder jack_ladder pilot_ladder,(nautical) a hanging ladder of ropes or chains supporting wooden or metal rungs or steps
+8467,Jacob's_rod,asphodel having erect smooth unbranched stem either flexuous or straight
+8468,Jacobean,any distinguished personage during the reign of James I
+8469,Jacobean_lily Aztec_lily Strekelia_formosissima,Mexican bulbous herb cultivated for its handsome bright red solitary flower
+8470,Jacobi Karl_Gustav_Jacob_Jacobi,German mathematician (1804-1851)
+8471,Jacobin,a member of the radical movement that instituted the Reign of Terror during the French Revolution
+8472,Jacobinism,the ideology of the most radical element of the French Revolution that instituted the Reign of Terror
+8473,Jacobite,a supporter of James II after he was overthrown or a supporter of the Stuarts
+8474,Jacobs Aletta_Jacobs,Dutch physician who opened the first birth control clinic in the world in Amsterdam (1854-1929)
+8475,Jacobs Jane_Jacobs,United States writer and critic of urban planning (born in 1916)
+8476,Jacobs W._W._Jacobs William_Wymark_Jacobs,English writer of macabre short stories (1863-1943)
+8477,Jacquard Joseph_M._Jacquard Joseph_Marie_Jacquard,French inventor of the Jacquard loom that could automatically weave complicated patterns (1752-1834)
+8478,Jacquard_loom Jacquard,a loom with an attachment for forming openings for the passage of the shuttle between the warp threads; used in weaving figured fabrics
+8479,Jacquemier's_sign,a purplish discoloration of the mucous membrane of the vagina that occurs early in pregnancy
+8480,Jacquinia genus_Jacquinia,sometimes placed in family Myrsinaceae
+8481,Jaculus genus_Jaculus,jerboas
+8482,Jaculus_jaculus,a variety of jerboa
+8483,Jaffa Joppa Yafo,a port in western Israel on the Mediterranean; incorporated into Tel Aviv in 1950
+8484,Jaffa_orange,sweet almost seedless orange of Israel
+8485,Jaffar Jafar Jaffar_Umar_Thalib Jafar_Umar_Thalib,Indonesian terrorist and Islamic militant who commands the Laskar Jihad; uses violence to achieve political ends (1965-2000)
+8486,Jafnea_semitosta,the fruiting bodies of this discomycete have a firm texture and long retain their cup shape; the pale brown interior blends with the color of dead leaves
+8487,Jagannath Jagannatha Jagganath Juggernaut,an avatar of Vishnu
+8488,Jagger Mick_Jagger Michael_Philip_Jagger,English rock star (born in 1943)
+8489,Jainism,sect founded in the 6th century BC as a revolt against Hinduism
+8490,Jainism,religion founded in the 6th century BC as a revolt against Hinduism; emphasizes asceticism and immortality and transmigration of the soul; denies existence of a perfect or supreme being
+8491,Jainist,a believer in Jainism
+8492,Jaish-i-Mohammed Jaish-e-Muhammad JEM Army_of_Muhammad,a terrorist organization founded in 2000; a militant Islamic group active in Kashmir and closely aligned with al-Rashid Trust; seeks to secure release of imprisoned fellow militants by kidnappings
+8493,Jakarta Djakarta capital_of_Indonesia,capital and largest city of Indonesia; located on the island of Java; founded by the Dutch in 17th century
+8494,Jakobson Roman_Jakobson Roman_Osipovich_Jakobson,United States linguist (born in Russia) noted for his description of the universals of phonology (1896-1982)
+8495,Jalalabad,a town in eastern Afghanistan (east of Kabul)
+8496,Jamaat_ul-Fuqra Fuqra Tanzimul_Fuqra,an Islamic terrorist group organized in the 1980s; seeks to purify Islam through violence; the cells in North America and the Caribbean insulate themselves from Western culture and will even attack other Muslims who they regard as heretics
+8497,Jamaica,a country on the island of Jamaica; became independent of England in 1962; much poverty; the major industry is tourism
+8498,Jamaica,an island in the West Indies to the south of Cuba and to the west of Haiti
+8499,Jamaica_dogwood fish_fuddle Piscidia_piscipula Piscidia_erythrina,small tree of West Indies and Florida having large odd-pinnate leaves and panicles of red-striped purple to white flowers followed by decorative curly winged seedpods; yields fish poisons
+8500,Jamaica_honeysuckle yellow_granadilla Passiflora_laurifolia,West Indian passionflower; cultivated for its yellow edible fruit
+8501,Jamaica_quassia,similar to the extract from Quassia amara
+8502,Jamaica_quassia bitterwood Picrasma_excelsa Picrasma_excelsum,West Indian tree yielding the drug Jamaica quassia
+8503,Jamaica_rum,heavy pungent rum from Jamaica
+8504,Jamaican,a native or inhabitant of Jamaica
+8505,Jamaican_cherry calabur_tree calabura silk_wood silkwood Muntingia_calabura,a fast-growing tropical American evergreen having white flowers and white fleshy edible fruit; bark yields a silky fiber used in cordage and wood is valuable for staves
+8506,Jamaican_dollar,the basic unit of money in Jamaica
+8507,Jambos genus_Jambos,used in some classifications for rose apples (Eugenia jambos)
+8508,James Henry_James,writer who was born in the United States but lived in England (1843-1916)
+8509,James James_I King_James King_James_I,the first Stuart to be king of England and Ireland from 1603 to 1625 and king of Scotland from 1567 to 1625; he was the son of Mary Queen of Scots and he succeeded Elizabeth I; he alienated the British Parliament by claiming the divine right of kings (1566-1625)
+8510,James James_II,the last Stuart to be king of England and Ireland and Scotland; overthrown in 1688 (1633-1701)
+8511,James James_IV,a Stuart king of Scotland who married a daughter of Henry VII; when England and France went to war in 1513 he invaded England and died in defeat at Flodden (1473-1513)
+8512,James James_River,a river in Virginia that flows east into Chesapeake Bay at Hampton Roads
+8513,James James_River,a river that rises in North Dakota and flows southward across South Dakota to the Missouri
+8514,James Jesse_James,United States outlaw who fought as a Confederate soldier and later led a band of outlaws that robbed trains and banks in the West until he was murdered by a member of his own gang (1847-1882)
+8515,James Saint_James St._James Saint_James_the_Apostle St._James_the_Apostle,(New Testament) disciple of Jesus; brother of John; author of the Epistle of James in the New Testament
+8516,James William_James,United States pragmatic philosopher and psychologist (1842-1910)
+8517,James_Bay,the southern extension of Hudson Bay in Canada between western Quebec and northeastern Ontario
+8518,Jamesonia genus_Jamesonia,xerophytic ferns of South America
+8519,Jamestown,a former village on the James River in Virginia to the north of Norfolk; site of the first permanent English settlement in America in 1607
+8520,Jamison Judith_Jamison,United States dancer and choreographer (born in 1944)
+8521,Jane_Doe,an unknown or fictitious woman who is a party to legal proceedings
+8522,Janissary,a Turkish soldier
+8523,Jansen Cornelis_Jansen Cornelius_Jansenius,a Dutch Roman Catholic theologian (1585-1638)
+8524,Jansenism,the Roman Catholic doctrine of Cornelis Jansen and his disciples; salvation is limited to those who are subject to supernatural determinism and the rest are assigned to perdition
+8525,Jansenist,an advocate of Jansenism
+8526,January Jan,the first month of the year; begins 10 days after the winter solstice
+8527,Janus,(Roman mythology) the Roman god of doorways and passages; is depicted with two faces on opposite sides of his head
+8528,Jap Nip,(offensive slang) offensive term for a person of Japanese descent
+8529,Japan Japanese_Islands Japanese_Archipelago,a string of more than 3,000 islands to the east of Asia extending 1,300 miles between the Sea of Japan and the western Pacific Ocean
+8530,Japan Nippon Nihon,a constitutional monarchy occupying the Japanese Archipelago; a world leader in electronics and automobile manufacture and ship building
+8531,Japan_Trench,a depression in the floor of the Pacific Ocean to the northeast of Japan that reaches depths of 30,000 feet
+8532,Japan_allspice Japanese_allspice winter_sweet Chimonanthus_praecox,deciduous Japanese shrub cultivated for its fragrant yellow flowers
+8533,Japan_current Kuroshio_current Kuroshio,a warm ocean current that flows northeastwardly off the coast of Japan into the northern Pacific ocean
+8534,Japan_wax Japan_tallow,a yellow wax obtained from sumac berries; used in polishes
+8535,Japanese,the language (usually considered to be Altaic) spoken by the Japanese
+8536,Japanese Nipponese,a native or inhabitant of Japan
+8537,Japanese_Red_Army JRA Anti-Imperialist_International_Brigade,a terrorist group organized in 1970 to overthrow the Japanese government and monarchy and to foment world revolution; is said to have close ties with Palestinian terrorists; "in 1972 the Japanese Red Army was responsible for a massacre at an airport in Israel"
+8538,Japanese_angelica_tree Aralia_elata,deciduous clump-forming Asian shrub or small tree; adventive in the eastern United States
+8539,Japanese_apricot mei Prunus_mume,Japanese ornamental tree with fragrant white or pink blossoms and small yellow fruits
+8540,Japanese_banana Musa_basjoo,Asiatic banana plant cultivated especially as a foliage plant in Japan
+8541,Japanese_barberry Berberis_thunbergii,compact deciduous shrub having persistent red berries; widespread in cultivation especially for hedges
+8542,Japanese_beech,a beech native to Japan having soft light yellowish-brown wood
+8543,Japanese_beetle Popillia_japonica,small metallic green and brown beetle native to eastern Asia; serious plant pest in North America
+8544,Japanese_bittersweet Japan_bittersweet oriental_bittersweet Celastrus_orbiculatus Celastric_articulatus,ornamental Asiatic vine with showy orange-yellow fruit with a scarlet aril; naturalized in North America
+8545,Japanese_black_pine black_pine Pinus_thunbergii,large Japanese ornamental having long needles in bunches of 2; widely planted in United States because of its resistance to salt and smog
+8546,Japanese_brome Japanese_chess Bromus_japonicus,grass of Mediterranean and temperate Asia
+8547,Japanese_cedar Japan_cedar sugi Cryptomeria_japonica,tall evergreen of Japan and China yielding valuable soft wood
+8548,Japanese_chestnut Castanea_crenata,a spreading tree of Japan that has a short trunk
+8549,Japanese_crab,crabmeat usually canned; from Japan
+8550,Japanese_deer sika Cervus_nipon Cervus_sika,small deer of Japan with slightly forked antlers
+8551,Japanese_deity,a deity worshipped by the Japanese
+8552,Japanese_flowering_cherry Prunus_sieboldii,ornamental tree with inedible fruit widely cultivated in many varieties for its pink blossoms
+8553,Japanese_honeysuckle Lonicera_japonica,an Asiatic trailing evergreen honeysuckle with half-evergreen leaves and fragrant white flowers turning yellow with age; has become a weed in some areas
+8554,Japanese_hop Humulus_japonicus,ornamental vine native to eastern Asia; cultivated for its variegated foliage
+8555,Japanese_iris Iris_kaempferi,iris native to Japan having large showy flowers
+8556,Japanese_lilac Syringa_villosa,lilac of northern China having ovate leaves and profuse early summer rose-lilac flowers
+8557,Japanese_linden Japanese_lime Tilia_japonica,medium-sized tree of Japan used as an ornamental
+8558,Japanese_maple Acer_palmatum,ornamental shrub or small tree of Japan and Korea with deeply incised leaves; cultivated in many varieties
+8559,Japanese_maple full_moon_maple Acer_japonicum,leaves deeply incised and bright red in autumn; Japan
+8560,Japanese_millet billion-dollar_grass Japanese_barnyard_millet sanwa_millet Echinochloa_frumentacea,coarse annual grass cultivated in Japan and southeastern Asia for its edible seeds and for forage; important wildlife food in United States
+8561,Japanese_monetary_unit,monetary unit in Japan
+8562,Japanese_morning_glory Ipomoea_nil,annual Old World tropical climbing herb distinguished by wide color range and frilled or double flowers
+8563,Japanese_oak Lithocarpus_glabra Lithocarpus_glaber,small evergreen tree of China and Japan
+8564,Japanese_oak Quercus_mongolica Quercus_grosseserrata,oak with moderately light fine-grained wood; Japan
+8565,Japanese_oyster Ostrea_gigas,a large oyster native to Japan and introduced along the Pacific coast of the United States; a candidate for introduction in Chesapeake Bay
+8566,Japanese_pagoda_tree Chinese_scholartree Chinese_scholar_tree Sophora_japonica Sophora_sinensis,handsome roundheaded deciduous tree having compound dark green leaves and profuse panicles of fragrant creamy-white flowers; China and Japan
+8567,Japanese_persimmon kaki Diospyros_kaki,small deciduous Asiatic tree bearing large red or orange edible astringent fruit
+8568,Japanese_pink Dianthus_chinensis_heddewigii,a flowering variety of China pink distinguished by jagged-edged petals
+8569,Japanese_plum Prunus_salicina,small tree of China and Japan bearing large yellow to red plums usually somewhat inferior to European plums in flavor
+8570,Japanese_poinsettia mole_plant paint_leaf Euphorbia_heterophylla,showy poinsettia found from the southern United States to Peru
+8571,Japanese_privet Ligustrum_japonicum,evergreen shrub of Japan and Korea having small dark leaves and flowers in loose panicles; related to but smaller than Chinese privet
+8572,Japanese_quince Chaenomeles_speciosa,deciduous thorny shrub native to China having red or white blossoms
+8573,Japanese_red_pine Japanese_table_pine Pinus_densiflora,pine native to Japan and Korea having a wide-spreading irregular crown when mature; grown as an ornamental
+8574,Japanese_snowbell Styrax_japonicum,shrubby tree of China and Japan
+8575,Japanese_spaniel,breed of toy dogs originating in Japan having a silky black-and-white or red-and-white coat
+8576,Japanese_spurge Pachysandra_terminalis,slow-growing Japanese evergreen subshrub having terminal spikes of white flowers; grown as a ground cover
+8577,Japanese_stranglehold,a wrestling hold in which the opponent's arms are crossed in front of his own neck to exert pressure on his windpipe
+8578,Japanese_tree_lilac Syringa_reticulata Syringa_amurensis_japonica,small tree of Japan having narrow pointed leaves and creamy-white flowers
+8579,Japanese_umbrella_pine Sciadopitys_verticillata,tall evergreen having a symmetrical spreading crown and needles growing in whorls that resemble umbrellas at ends of twigs
+8580,Japanese_wistaria Wisteria_floribunda,having flowers of pink to mauve or violet-blue
+8581,Japanese_yew Taxus_cuspidata,shrubby hardy evergreen of China and Japan having lustrous dark green foliage; cultivated in the eastern United States
+8582,Japheth,(Old Testament) son of Noah
+8583,Jarrell Randall_Jarrell,United States poet (1914-1965)
+8584,Jarvik_heart Jarvik_artificial_heart,a kind of artificial heart that has been used with some success
+8585,Jasminum genus_Jasminum,shrubs and woody climbers mostly of tropical and temperate Old World: jasmine; jessamine
+8586,Jason,(Greek mythology) the husband of Medea and leader of the Argonauts who sailed in quest of the Golden Fleece
+8587,Jaspers Karl_Jaspers Karl_Theodor_Jaspers,German psychiatrist (1883-1969)
+8588,Jassidae family_Jassidae,family of small leafhoppers coextensive with the Cicadellidae and not distinguished from it in some classifications
+8589,Jat,a member of an Indo-European people widely scattered throughout the northwest of the Indian subcontinent and consisting of Muslims and Hindus and Sikhs
+8590,Jatropha genus_Jatropha,a mainly tropical genus of American plant belonging to the family Euphorbiaceae
+8591,Java,an island in Indonesia to the south of Borneo; one of the world's most densely populated regions
+8592,Java,a platform-independent object-oriented programming language
+8593,Java_man Trinil_man,fossil remains found in Java; formerly called Pithecanthropus erectus
+8594,Java_sparrow Java_finch ricebird Padda_oryzivora,small finch-like Indonesian weaverbird that frequents rice fields
+8595,Javanese,the Indonesian language spoken on Java
+8596,Javanese Javan,a native or inhabitant of Java
+8597,Javanthropus genus_Javanthropus,former genus of primitive man; now Homo soloensis: comprises Solo man
+8598,Javelle_water Javel_water eau_de_Javelle,an aqueous solution of sodium hypochlorite
+8599,Jaws_of_Life,hydraulic tool inserted into a wrecked vehicle and used to pry the wreckage apart in order to provide access to people trapped inside
+8600,Jay John_Jay,United States diplomat and jurist who negotiated peace treaties with Britain and served as the first chief justice of the United States Supreme Court (1745-1829)
+8601,Jayshullah,an indigenous Islamic terrorist group in Azerbaijan that attempted to bomb the United States embassy in 1999
+8602,Jazz_Age,the 1920s in the United States characterized in the novels of F. Scott Fitzgerald as a period of wealth, youthful exuberance, and carefree hedonism
+8603,Jeanne_d'Arc Joan_of_Arc Saint_Joan,French heroine and military leader inspired by religious visions to organize French resistance to the English and to have Charles VII crowned king; she was later tried for heresy and burned at the stake (1412-1431)
+8604,Jebel_Musa Abila Abyla,a promontory in northern Morocco opposite the Rock of Gibraltar; one of the Pillars of Hercules
+8605,Jeddah Jed'dah Jiddah Jidda,port city in western Saudi Arabia on the Red Sea; near Mecca
+8606,Jeffers Robinson_Jeffers John_Robinson_Jeffers,United States poet who wrote about California (1887-1962)
+8607,Jefferson Thomas_Jefferson President_Jefferson,3rd President of the United States; chief drafter of the Declaration of Independence; made the Louisiana Purchase in 1803 and sent out the Lewis and Clark Expedition to explore it (1743-1826)
+8608,Jefferson_City capital_of_Missouri,capital of the state of Missouri; located in central Missouri on the Missouri river
+8609,Jefferson_Davis'_Birthday Davis'_Birthday June_3,celebrated in southern United States
+8610,Jeffersonian,a follower of Thomas Jefferson or his ideas and principles
+8611,Jeffrey_pine Jeffrey's_pine black_pine Pinus_jeffreyi,tall symmetrical pine of western North America having long blue-green needles in bunches of 3 and elongated cones on spreading somewhat pendulous branches; sometimes classified as a variety of ponderosa pine
+8612,Jehovah's_Witness,believer in imminent approach of the millennium; practitioner of active evangelism
+8613,Jehovah's_Witnesses,Protestant denomination founded in the United States by Charles Taze Russell in 1884
+8614,Jekyll_and_Hyde,someone with two personalities - one good and one evil
+8615,Jemaah_Islamiyah JI Islamic_Group Islamic_Community Malaysian_Mujahidin_Group Malaysia_Militant_Group,a clandestine group of southeast Asian terrorists organized in 1993 and trained by al-Qaeda; supports militant Muslims in Indonesia and the Philippines and has cells in Singapore and Malaysia and Indonesia
+8616,Jena Battle_of_Jena,the battle in 1806 in which Napoleon decisively defeated the Prussians
+8617,Jenner Edward_Jenner,English physician who pioneered vaccination; Jenner inoculated people with small amounts of cowpox to prevent them from getting smallpox (1749-1823)
+8618,Jenny William_Le_Baron_Jenny,United States architect who designed the first skyscraper in which a metal skeleton was used (1832-1907)
+8619,Jensen Johannes_Vilhelm_Jensen,modernistic Danish writer (1873-1950)
+8620,Jeremiah,(Old Testament) an Israelite prophet who is remembered for his angry lamentations (jeremiads) about the wickedness of his people (circa 626-587 BC)
+8621,Jeremiah Book_of_Jeremiah,a book in the Old Testament containing the oracles of the prophet Jeremiah
+8622,Jerez Jerez_de_la_Frontera,a city in southwestern Spain that is famous for making sherry
+8623,Jericho,a village in Palestine near the north end of the Dead Sea; in the Old Testament it was the first place taken by the Israelites under Joshua as they entered the Promised Land
+8624,Jeroboam Jeroboam_I,(Old Testament) first king of the northern kingdom of Israel who led Israel into sin (10th century BC)
+8625,Jerome Saint_Jerome St._Jerome Hieronymus Eusebius_Hieronymus Eusebius_Sophronius_Hieronymus,(Roman Catholic Church) one of the great Fathers of the early Christian Church whose major work was his translation of the Scriptures from Hebrew and Greek into Latin (which became the Vulgate); a saint and Doctor of the Church (347-420)
+8626,Jersey,a breed of diary cattle developed on the island of Jersey
+8627,Jersey island_of_Jersey,the largest of the Channel Islands
+8628,Jersey_City,a city in northeastern New Jersey (opposite Manhattan)
+8629,Jersey_elm guernsey_elm wheately_elm Ulmus_sarniensis Ulmus_campestris_sarniensis Ulmus_campestris_wheatleyi,a variety of the English elm with erect branches and broader leaves
+8630,Jersey_knapweed,a variety of knapweed
+8631,Jerusalem capital_of_Israel,capital and largest city of the modern state of Israel (although its status as capital is disputed); it was captured from Jordan in 1967 in the Six Day War; a holy city for Jews and Christians and Muslims; was the capital of an ancient kingdom
+8632,Jerusalem_Warriors,ethnic Turkish Sunni terrorists who are linked with the Turkish Hizballah; killed a United States Air Force sergeant in 1991
+8633,Jerusalem_artichoke,edible tuber of the Jerusalem artichoke
+8634,Jerusalem_artichoke girasol Jerusalem_artichoke_sunflower Helianthus_tuberosus,tall perennial with hairy stems and leaves; widely cultivated for its large irregular edible tubers
+8635,Jerusalem_artichoke sunchoke,sunflower tuber eaten raw or boiled or sliced thin and fried as Saratoga chips
+8636,Jerusalem_cherry winter_cherry Madeira_winter_cherry Solanum_pseudocapsicum,small South American shrub cultivated as a houseplant for its abundant ornamental but poisonous red or yellow cherry-sized fruit
+8637,Jerusalem_cross,a cross with equal arms, each terminating in a small crossbar
+8638,Jerusalem_oak feather_geranium Mexican_tea Chenopodium_botrys Atriplex_mexicana,Eurasian aromatic oak-leaved goosefoot with many yellow-green flowers; naturalized North America
+8639,Jerusalem_sage Phlomis_fruticosa,a spreading subshrub of Mediterranean regions cultivated for dense axillary whorls of purple or yellow flowers
+8640,Jerusalem_thorn horsebean Parkinsonia_aculeata,large shrub or shrubby tree having sharp spines and pinnate leaves with small deciduous leaflets and sweet-scented racemose yellow-orange flowers; grown as ornamentals or hedging or emergency food for livestock; tropical America but naturalized in southern United States
+8641,Jespersen Otto_Jespersen Jens_Otto_Harry_Jespersen,Danish linguist (1860-1943)
+8642,Jesuit,a member of the Jesuit order
+8643,Jesuitism Jesuitry,the theology or the practices of the Jesuits (often considered to be casuistic)
+8644,Jesus Jesus_of_Nazareth the_Nazarene Jesus_Christ Christ Savior Saviour Good_Shepherd Redeemer Deliverer,a teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)
+8645,Jeth Jyaistha,the third month of the Hindu calendar
+8646,Jevons William_Stanley_Jevons,English economist and logician who contributed to the development of the theory of marginal utility (1835-1882)
+8647,Jew Hebrew Israelite,a person belonging to the worldwide group claiming descent from Jacob (or converted to it) and connected by cultural or religious ties
+8648,Jew's-ear Jew's-ears ear_fungus Auricularia_auricula,widely distributed edible fungus shaped like a human ear and growing on decaying wood
+8649,Jewbush Jew-bush Jew_bush redbird_cactus redbird_flower Pedilanthus_tithymaloides,low tropical American shrub having powerful emetic properties
+8650,Jewess,a woman who is a Jew
+8651,Jewish_calendar Hebrew_calendar,(Judaism) the calendar used by the Jews; dates from 3761 BC (the assumed date of the Creation of the world); a lunar year of 354 days is adjusted to the solar year by periodic leap years
+8652,Jewish_calendar_month,a month in the Jewish calendar
+8653,Jewish_holy_day,a religious holiday for Jews
+8654,Jewish_rye_bread Jewish_rye,(Judaism) bread made with rye flour; usually contains caraway seeds
+8655,Jewison Norman_Jewison,Canadian filmmaker (born in 1926)
+8656,Jewry,Jews collectively
+8657,Jezebel,wife of Ahab who was king of Israel; according to the Old Testament she was a cruel immoral queen who fostered the worship of Baal and tried to kill Elijah and other prophets of Israel (9th century BC)
+8658,Jihadist,a Muslim who is involved in a jihad
+8659,Jimenez Juan_Ramon_Jimenez,Spanish lyric poet (1881-1958)
+8660,Jimenez_de_Cisneros Francisco_Jimenez_de_Cisneros,prelate who was the confessor of Isabella I and who was later appointed Grand Inquisitor (1436-1517)
+8661,Jinghpo Jinghpaw Chingpo,a Kachinic language
+8662,Jinja,a city in Uganda on the north shore of Lake Victoria
+8663,Jinnah Muhammad_Ali_Jinnah,Indian statesman who was the founder of Pakistan as a Muslim state (1876-1948)
+8664,Jirga,a Pashto term for a decision making assembly of male elders; "most criminal cases are handled by a tribal Jirga rather than by laws or police"
+8665,Joachim Joseph_Joachim,Hungarian violinist and composer (1831-1907)
+8666,Joao_Pessoa,a city in northeastern Brazil near the Atlantic Ocean to the north of Recife
+8667,Job,a Jewish hero in the Old Testament who maintained his faith in God in spite of afflictions that tested him
+8668,Job,any long-suffering person who withstands affliction without despairing
+8669,Job Book_of_Job,a book in the Old Testament containing Job's pleas to God about his afflictions and God's reply
+8670,Job's_comforter,someone whose comfort is actually discouraging
+8671,Job's_tears,hard pearly seeds of an Asiatic grass; often used as beads
+8672,Jocasta,(Greek mythology) queen of Thebes who unknowingly married her own son Oedipus
+8673,Joe-Pye_weed purple_boneset trumpet_weed marsh_milkweed Eupatorium_purpureum,North American herb having whorled leaves and terminal clusters of flowers spotted with purple
+8674,Joe-Pye_weed spotted_Joe-Pye_weed Eupatorium_maculatum,North American herb having whorled leaves and terminal clusters of small pinkish or purple flower heads
+8675,Joel,a Hebrew minor prophet
+8676,Joel Book_of_Joel,an Old Testament book telling Joel's prophecies
+8677,Joffre Joseph_Jacques_Cesaire_Joffre,French field marshal who commanded the Allied armies in France during World War II (1852-1931)
+8678,Joffrey Robert_Joffrey,United States choreographer (1930-1988)
+8679,Johannesburg,city in the northeastern part of South Africa near Pretoria; commercial center for diamond and gold industries
+8680,John Gospel_According_to_John,the last of the four Gospels in the New Testament
+8681,John King_John John_Lackland,youngest son of Henry II; King of England from 1199 to 1216; succeeded to the throne on the death of his brother Richard I; lost his French possessions; in 1215 John was compelled by the barons to sign the Magna Carta (1167-1216)
+8682,John Saint_John St._John Saint_John_the_Apostle St._John_the_Apostle John_the_Evangelist John_the_Divine,(New Testament) disciple of Jesus; traditionally said to be the author of the 4th Gospel and three epistles and the book of Revelation
+8683,John_Chrysostom St._John_Chrysostom,(Roman Catholic Church) a Church Father who was a great preacher and bishop of Constantinople; a saint and Doctor of the Church (347-407)
+8684,John_Doe,an unknown or fictitious man who is a party to legal proceedings
+8685,John_Doe Joe_Blow Joe_Bloggs man_in_the_street,a hypothetical average man
+8686,John_Dory Zeus_faber,European dory
+8687,John_Henry,hero of American folk tales; portrayed as an enormously strong black man who worked on the railroads and died from exhaustion after winning a contest with a steam drill
+8688,John_Paul_I Albino_Luciano,the first Pope to assume a double name; he reigned for only 34 days (1912-1978)
+8689,John_Paul_II Karol_Wojtyla,the first Pope born in Poland; the first Pope not born in Italy in 450 years (1920-2005)
+8690,John_XXIII Angelo_Guiseppe_Roncalli,Italian pope from 1958 to 1963 who convoked the Second Vatican Council (1881-1963)
+8691,John_of_Gaunt Duke_of_Lancaster,the fourth son of Edward III who was the effective ruler of England during the close of his father's reign and during the minority of Richard II; his son was Henry Bolingbroke (1340-1399)
+8692,John_the_Baptist St._John_the_Baptist,(New Testament) a preacher and hermit and forerunner of Jesus (whom he baptized); was beheaded by Herod at the request of Salome
+8693,Johns Jasper_Johns,United States artist and proponent of pop art (born in 1930)
+8694,Johns_Hopkins,a university in Baltimore
+8695,Johnson Andrew_Johnson President_Johnson President_Andrew_Johnson,17th President of the United States; was elected vice president and succeeded Lincoln when Lincoln was assassinated; was impeached but acquitted by one vote (1808-1875)
+8696,Johnson Lyndon_Johnson Lyndon_Baines_Johnson LBJ President_Johnson President_Lyndon_Johnson,36th President of the United States; was elected vice president and succeeded Kennedy when Kennedy was assassinated (1908-1973)
+8697,Johnson Samuel_Johnson Dr._Johnson,English writer and lexicographer (1709-1784)
+8698,Johnson_City,a town in northeastern Tennessee
+8699,Johnson_grass Aleppo_grass means_grass evergreen_millet Sorghum_halepense,tall perennial grass that spreads by creeping rhizomes and is grown for fodder; naturalized in southern United States where it is a serious pest on cultivated land
+8700,Johnston J._E._Johnston Joseph_Eggleston_Johnston,Confederate general in the American Civil War; led the Confederate troops in the West (1807-1891)
+8701,Johor Johore,sultanate and one of the 13 states that constitute the Federation of Malaysia
+8702,Joint_Chiefs_of_Staff Joint_Chiefs,the executive agency that advises the President on military questions; composed of the chiefs of the United States Army and the United States Navy and the United States Air Force and the commandant of the United States Marine Corps
+8703,Joint_Direct_Attack_Munition JDAM,a pinpoint bomb guidance device that can be strapped to a gravity bomb thus converting dumb bombs into smart bombs
+8704,Joliot Jean-Frederic_Joliot Joliot-Curie Jean-Frederic_Joliot-Curie,French nuclear physicist who was Marie Curie's assistant and who worked with Marie Curie's daughter who he married (taking the name Joliot-Curie); he and his wife discovered how to synthesize new radioactive elements (1900-1958)
+8705,Joliot-Curie Irene_Joliot-Curie,French physicist who (with her husband) synthesized new chemical elements (1897-1956)
+8706,Jolliet Louis_Jolliet Joliet Louis_Joliet,French explorer (with Jacques Marquette) of the upper Mississippi River valley (1645-1700)
+8707,Jolson Al_Jolson Asa_Yoelson,United States singer (born in Russia) who appeared in the first full-length talking film (1886-1950)
+8708,Jonah,(Old Testament) Jonah did not wish to become a prophet so God caused a great storm to throw him overboard from a ship; he was saved by being swallowed by a whale that vomited him out onto dry land
+8709,Jonah Book_of_Jonah,a book in the Old Testament that tells the story of Jonah and the whale
+8710,Jonah_crab Cancer_borealis,large red deep-water crab of the eastern coast of North America
+8711,Jonathan,red late-ripening apple; primarily eaten raw
+8712,Jones Bobby_Jones Robert_Tyre_Jones,United States golfer (1902-1971)
+8713,Jones Casey_Jones John_Luther_Jones,United States railroad engineer who died trying to stop his train from crashing into another train; a friend wrote a famous ballad describing the incident (1864-1900)
+8714,Jones Daniel_Jones,English phonetician (1881-1967)
+8715,Jones Inigo_Jones,one of the first great English architects and a theater designer (1573-1652)
+8716,Jones John_Paul_Jones,American naval commander in the American Revolution (1747-1792)
+8717,Jones Mother_Jones Mary_Harris_Jones,United States labor leader (born in Ireland) who helped to found the Industrial Workers of the World (1830-1930)
+8718,Jones'_penstemon Penstemon_dolius,low plant with light blue and violet flowers in short clusters near tips of stems; Nevada to Utah
+8719,Jonesboro,a town in northeast Arkansas
+8720,Jong Erica_Jong,United States writer (born in 1942)
+8721,Jonson Ben_Jonson Benjamin_Jonson,English dramatist and poet who was the first real poet laureate of England (1572-1637)
+8722,Joplin Janis_Joplin,United States singer who died of a drug overdose at the height of her popularity (1943-1970)
+8723,Joplin Scott_Joplin,United States composer who was the first creator of ragtime to write down his compositions (1868-1917)
+8724,Jordan Hashemite_Kingdom_of_Jordan,an Arab kingdom in southwestern Asia on the Red Sea
+8725,Jordan Jordan_River,a river in Palestine that empties into the Dead Sea; John the Baptist baptized Jesus in the Jordan
+8726,Jordan_almond,an almond covered with a sugar coating that is hard and flavored and colored
+8727,Jordanella genus_Jordanella,flagfishes
+8728,Jordanian,a native or inhabitant of Jordan
+8729,Jordanian_dinar dinar,the basic unit of money in Jordan; equal to 1,000 fils
+8730,Jordanian_monetary_unit,monetary unit in Jordan
+8731,Joseph,(Old Testament) the 11th son of Jacob and one of the 12 patriarchs of Israel; Jacob gave Joseph a coat of many colors, which made his brothers jealous and they sold him into slavery in Egypt
+8732,Joseph,(New Testament) husband of Mary and (in Christian belief) the foster father of Jesus
+8733,Joseph Chief_Joseph,leader of the Nez Perce in their retreat from United States troops (1840-1904)
+8734,Josephus Flavius_Josephus Joseph_ben_Matthias,Jewish general who led the revolt of the Jews against the Romans and then wrote a history of those events (37-100)
+8735,Joshua,(Old Testament) Moses' successor who led the Israelites into the Promised Land; best remembered for his destruction of Jericho
+8736,Joshua Josue Book_of_Joshua,a book in the Old Testament describing how Joshua led the Israelites into Canaan (the Promised Land) after the death of Moses
+8737,Joshua_tree Yucca_brevifolia,a large branched arborescent yucca of southwestern United States having short leaves and clustered greenish white flowers
+8738,Jotun Jotunn,(Norse mythology) one of a group of giants often in conflict with the Aesir
+8739,Joule James_Prescott_Joule,English physicist who established the mechanical theory of heat and discovered the first law of thermodynamics (1818-1889)
+8740,Jovian_planet gas_giant,any of the four outermost planets in the solar system; much larger than Earth and gaseous in nature (like Jupiter)
+8741,Jowett Benjamin_Jowett,English classical scholar noted for his translations of Plato and Aristotle (1817-1893)
+8742,Joyce James_Joyce James_Augustine_Aloysius_Joyce,influential Irish writer noted for his many innovations (such as stream of consciousness writing) (1882-1941)
+8743,Juan_Carlos Juan_Carlos_Victor_Maria_de_Borbon_y_Borbon,king of Spain since 1975 (born in 1938)
+8744,Judah,(Old Testament) the fourth son of Jacob who was forebear of one of the tribes of Israel; one of his descendants was to be the Messiah
+8745,Judah Juda,an ancient kingdom of southern Palestine with Jerusalem as its center
+8746,Judaica,materials relating to Judaism
+8747,Judaism,the monotheistic religion of the Jews having its spiritual and ethical principles embodied chiefly in the Torah and in the Talmud
+8748,Judaism Hebraism Jewish_religion,Jews collectively who practice a religion based on the Torah and the Talmud
+8749,Judas,someone who betrays under the guise of friendship
+8750,Judas Judas_Iscariot,(New Testament) the Apostle who betrayed Jesus to his enemies for 30 pieces of silver
+8751,Judas_Maccabaeus,Jewish leader of a revolt in Judea that recovered Jerusalem around 166 BC; hero of the Apocryphal books I Maccabees and II Maccabees (?-161 BC)
+8752,Judas_tree love_tree Circis_siliquastrum,small tree of the eastern Mediterranean having abundant purplish-red flowers growing on old wood directly from stems and appearing before the leaves: widely cultivated in mild regions; wood valuable for veneers
+8753,Jude Saint_Jude St._Jude Judas Thaddaeus,(New Testament) supposed brother of St. James; one of the Apostles who is invoked in prayer when a situation seems hopeless
+8754,Judea Judaea,the southern part of ancient Palestine succeeding the kingdom of Judah; a Roman province at the time of Christ
+8755,Judeo-Spanish Ladino,the Spanish dialect spoken by Sephardic Jews but written in the Hebrew script
+8756,Judges Book_of_Judges,a book of the Old Testament that tells the history of Israel under the leaders known as judges
+8757,Judgment_Day Judgement_Day Day_of_Judgment Day_of_Judgement Doomsday Last_Judgment Last_Judgement Last_Day eschaton day_of_reckoning doomsday crack_of_doom end_of_the_world,(New Testament) day at the end of time following Armageddon when God will decree the fates of all individual humans according to the good and evil of their earthly lives
+8758,Judith,Jewish heroine in one of the books of the Apocrypha; she saved her people by decapitating the Assyrian general Holofernes
+8759,Judith Book_of_Judith,an Apocryphal book telling how Judith saved her people
+8760,Juggernaut,a crude idol of Krishna
+8761,Juglandaceae family_Juglandaceae walnut_family,trees having usually edible nuts: butternuts; walnuts; hickories; pecans
+8762,Juglandales order_Juglandales,coextensive with the family Juglandaceae
+8763,Juglans genus_Juglans,type genus of the Juglandaceae
+8764,Julian Julian_the_Apostate Flavius_Claudius_Julianus,Roman Emperor and nephew of Constantine; he restored paganism as the official religion of the Roman Empire and destroyed Christian temples but his decision was reversed after his death (331?-363)
+8765,Julian_calendar Old_Style_calendar,the solar calendar introduced in Rome in 46 b.c. by Julius Caesar and slightly modified by Augustus, establishing the 12-month year of 365 days with each 4th year having 366 days and the months having 31 or 30 days except for February
+8766,July,the month following June and preceding August
+8767,Jumada_I Jomada_I,the fifth month of the Islamic calendar
+8768,Jumada_II Jomada_II,the sixth month of the Islamic calendar
+8769,Juncaceae family_Juncaceae rush_family,tufted herbs resembling grasses: rushes
+8770,Juncus genus_Juncus,type genus of the Juncaceae; perennial tufted glabrous marsh plants of temperate regions: rushes
+8771,Jund-ul-Islam Soldiers_of_God,an Islamic extremist group of Kurds who oppose secular control with bombings and assassinations; believed to have ties with al-Qaeda
+8772,June,the month following May and preceding July
+8773,June_beetle June_bug May_bug May_beetle,any of various large usually brown North American leaf-eating beetles common in late spring; the larvae feed on roots of grasses etc.
+8774,Juneau capital_of_Alaska,the state capital of Alaska
+8775,Juneberry serviceberry service_tree shadbush shadblow,any of various North American trees or shrubs having showy white flowers and edible blue-black or purplish fruit
+8776,Jung Carl_Jung Carl_Gustav_Jung,Swiss psychologist (1875-1961)
+8777,Jungermanniaceae family_Jungermanniaceae,comprising the leafy members of the order Jungermanniales
+8778,Jungermanniales order_Jungermanniales,large order of chiefly tropical liverworts
+8779,Jungian,a follower or advocate of Carl Jung's theories
+8780,Jungian_psychology,the psychological theories of Carl Jung
+8781,Junin_virus,the RNA virus that causes Argentine hemorrhagic fever; carried by rats and mice
+8782,Junior Jr Jnr,a son who has the same first name as his father
+8783,Juniperus genus_Juniperus,junipers
+8784,Junker,member of the Prussian aristocracy noted especially for militarism
+8785,Junkers Hugo_Junkers,German aircraft engineer who designed the first all-metal airplane (1859-1935)
+8786,Juno,(Roman mythology) queen of the Olympian gods who protected marriage; wife and sister of Jupiter; counterpart of Greek Hera
+8787,Jupiter,the largest planet and the 5th from the sun; has many satellites and is one of the brightest objects in the night sky
+8788,Jupiter Jove,(Roman mythology) supreme god of Romans; counterpart of Greek Zeus
+8789,Jupiter's_beard silverbush silver-bush Anthyllis_barba-jovis,silvery hairy European shrub with evergreen foliage and pale yellow flowers
+8790,Jupiter_Fidius Protector_of_Boundaries,an epithet for Jupiter
+8791,Jupiter_Fulgur Jupiter_Fulminator Lightning_Hurler,an epithet for Jupiter
+8792,Jupiter_Optimus_Maximus Best_and_Greatest,an epithet for Jupiter
+8793,Jupiter_Pluvius Rain-giver,an epithet for Jupiter
+8794,Jupiter_Tonans Thunderer,an epithet for Jupiter
+8795,Jurassic Jurassic_period,from 190 million to 135 million years ago; dinosaurs; conifers
+8796,Jussieu Antoine_Laurent_de_Jussieu,French botanist who categorized plants into families and developed a system of plant classification (1748-1836)
+8797,Justinian Justinian_I Justinian_the_Great,Byzantine emperor who held the eastern frontier of his empire against the Persians; codified Roman law in 529; his general Belisarius regained North Africa and Spain (483-565)
+8798,Jute,a member of a Germanic people who conquered England and merged with the Angles and Saxons to become Anglo-Saxons
+8799,Jutland Jylland,peninsula in northern Europe that forms the continental part of Denmark and a northern part of Germany
+8800,Jutland battle_of_Jutland,an indecisive naval battle in World War I (1916); fought between the British and German fleets off the northwestern coast of Denmark
+8801,Juvenal Decimus_Junius_Juvenalis,Roman satirist who denounced the vice and folly of Roman society during the reign of the emperor Domitian (60-140)
+8802,Jynx genus_Jynx,wrynecks
+8803,K jet super_acid special_K honey_oil green cat_valium super_C,street names for ketamine
+8804,K k,the 11th letter of the Roman alphabet
+8805,K2 Godwin_Austen Mount_Godwin_Austen Dapsang,a mountain peak in the Karakoram Range in northern Kashmir; the 2nd highest peak in the world (28,250 feet high)
+8806,K_ration,a small package of emergency rations; issued to United States troops in World War II
+8807,Ka,unknown god; an epithet of Prajapati and Brahma
+8808,Kaaba Caaba,(Islam) a black stone building in Mecca that is shaped like a cube and that is the most sacred Muslim pilgrim shrine; believed to have been given by Gabriel to Abraham; Muslims turn in its direction when praying
+8809,Kabbalah Kabbala Kabala Cabbalah Cabbala Cabala Qabbalah Qabbala,an esoteric theosophy of rabbinical origin based on the Hebrew scriptures and developed between the 7th and 18th centuries
+8810,Kabbalism Cabalism,the doctrines of the Kabbalah
+8811,Kabul capital_of_Afghanistan,the capital and largest city of Afghanistan; located in eastern Afghanistan
+8812,Kachaturian Aram_Kachaturian,Armenian composer who incorporated oriental folk music (1903-1978)
+8813,Kachin Kachinic,Tibeto-Burman languages spoken in northernmost Burma and adjacent China and India
+8814,Kadai Kam-Tai Kadai_language,a family of Sino-Tibetan languages spoken in southeastern Asia
+8815,Kafir,a member of the Kafir people in northeastern Afghanistan
+8816,Kafiri,a Dardic language spoken by the Kafir in northeastern Afghanistan
+8817,Kafka Franz_Kafka,Czech novelist who wrote in German about a nightmarish world of isolated and troubled individuals (1883-1924)
+8818,Kahane_Chai Kach,a terrorist organization founded for Jewish defense; fights antisemitism and hopes to restore the biblical state of Israel
+8819,Kahlua,coffee-flavored liqueur made in Mexico
+8820,Kahn Louis_Isadore_Kahn,United States architect (born in Estonia) (1901-1974)
+8821,Kahoolawe Kahoolawe_Island,an island of south-central Hawaii
+8822,Kaiser,the title of the Holy Roman Emperors or the emperors of Austria or of Germany until 1918
+8823,Kakatoe genus_Kakatoe Cacatua genus_Cacatua,a genus of Psittacidae
+8824,Kakemono,a Japanese (paper or silk) wall hanging; usually narrow with a picture or writing on it and a roller at the bottom
+8825,Kalahari Kalahari_Desert,a desert in southwestern Africa - largely Botswana
+8826,Kalamazoo,a town in southwest Michigan
+8827,Kalapooia Kalapuya Calapooya Calapuya,a member of the North American Indian people of Oregon
+8828,Kalapooian Kalapuyan,a Penutian language spoken by the Kalapuya
+8829,Kalashnikov,a type of submachine gun made in Russia
+8830,Kalashnikov_culture,the attitudes and behavior in a social group that resolves political disputes by force of arms; "the Kalashnikov culture in Afghanistan"
+8831,Kali,wife of Siva and malevolent form of Devi; "the black"
+8832,Kalinin Mikhail_Kalinin Mikhail_Ivanovich_Kalinin,soviet statesman and head of state of the USSR (1875-1946)
+8833,Kalki,the 10th and last incarnation of Vishnu
+8834,Kallman's_syndrome,hypogonadism with anosmia; a congenital sexual disorder that prevents the testicles from maturing at puberty
+8835,Kalon_Tripa,the chairman of the Kashag and essentially head of the Tibetan government-in-exile
+8836,Kalotermes genus_Kalotermes,type genus of Kalotermitidae; termites destructive of wood and living trees
+8837,Kalotermitidae family_Kalotermitidae,primitive termites of warm regions
+8838,Kaluga,a city of central Russia to the south of Moscow
+8839,Kam-Sui,a group of Kadai languages
+8840,Kama,Hindu god of love and erotic desire; opposite of Mara
+8841,Kamarupan,the Tibeto-Burman language spoken in northeastern India and adjacent regions of western Burma
+8842,Kamasutra,(Hinduism) an ancient Sanskrit text giving rules for sensuous and sensual pleasure and love and marriage in accordance with Hindu law
+8843,Kamba,a Bantu language spoken by the Kamba in Kenya
+8844,Kamchatka_Peninsula,a peninsula in eastern Siberia; between Bering Sea and Sea of Okhotsk
+8845,Kamchatkan_sea_eagle Stellar's_sea_eagle Haliaeetus_pelagicus,found on coasts of the northwestern Pacific
+8846,Kamehameha_I Kamehameha_the_Great,Hawaiian king who united the islands under his rule (1758-1819)
+8847,Kamet,a mountain in the Himalayas in northern India (25,450 feet high)
+8848,Kami,one the Shinto deities (including mythological beings, spirits of distinguished men, forces of nature)
+8849,Kamia,a member of a North American Indian people of southeastern California and northwestern Mexico
+8850,Kamia,the Yuman language spoken by the Kamia
+8851,Kammon_Strait_Bridge,a suspension bridge between Kyushu and Honshu
+8852,Kampala capital_of_Uganda,the capital and largest city of Uganda on the north shore of Lake Victoria
+8853,Kananga Luluabourg,a city in southwestern Congo; former name (until 1966) was Luluabourg
+8854,Kanara Canara,a historical region of southwestern India on the west coast
+8855,Kanarese Canarese,a member of a Kannada-speaking group of people living chiefly in Kanara in southern India
+8856,Kanawha Kanawha_River,a tributary of the Ohio River in West Virginia
+8857,Kanchenjunga Mount_Kanchenjunga Kanchanjanga Kinchinjunga,a mountain the Himalayas on the border between Nepal and Tibet (28,208 feet high)
+8858,Kandahar Qandahar,a city in southern Afghanistan; an important trading center
+8859,Kandinsky Wassily_Kandinsky Kandinski Wassily_Kandinski,Russian painter who was a pioneer of abstract art (1866-1944)
+8860,Kandy,a city of central Sri Lanka that was the last capital of the ancient kings of Ceylon; a resort and religious center
+8861,Kannada Kanarese,a Dravidian language spoken in southern India
+8862,Kansa Kansas,a member of the Siouan people of the Kansas river valley in Kansas
+8863,Kansa Kansas,the Dhegiha dialect spoken by the Kansa
+8864,Kansan,a native or resident of Kansas
+8865,Kansas Kansas_River Kaw_River,a river in northeastern Kansas; flows eastward to become a tributary of the Missouri River
+8866,Kansas Sunflower_State KS Kan.,a state in midwestern United States
+8867,Kansas_City,a city in western Missouri situated at the confluence of the Kansas River and the Missouri River; adjacent to Kansas City, Kansas
+8868,Kansas_City,a city of northeast Kansas on the Missouri River adjacent to Kansas City, Missouri
+8869,Kant Immanuel_Kant,influential German idealist philosopher (1724-1804)
+8870,Kaopectate,trade name for a fixed-combination antidiarrheal drug that use kaolin as the adsorbent and pectin as the emollient
+8871,Kaplan_Group Association_of_Islamic_Groups_and_Communities Caliphate_State,a Turkish terrorist group of fundamentalist Muslims with ties to al-Qaeda that operates in Germany; seeks the violent overthrow of the Turkish government and the establishment of an Islamic nation modeled on Iran
+8872,Kaposi's_sarcoma,a sarcoma that starts with purplish spots on the feet and legs and spreads from the skin to lymph nodes and internal organs; a common manifestation of AIDS; "until 1980 Kaposi's sarcoma occurred almost exclusively with Jewish or Italian or black men"
+8873,Kara_Kum Qara_Qum Turkestan_Desert,a desert in Turkmenistan to the south of the Aral Sea
+8874,Kara_Sea,part of the Arctic Ocean to the north of Siberia and to the east of the Barents Sea; icebound most of the year
+8875,Karachi,the largest city in Pakistan; located in southeastern Pakistan; an industrial center and seaport on the Arabian Sea; former capital of Pakistan
+8876,Karaites,a Jewish sect that recognizes only the Hebrew Scriptures as the source of divinely inspired legislation and denies the authority of the postbiblical tradition of the Talmud; the sect arose in Iraq in the eighth century
+8877,Karakalpak,a member of a Turkic people living near Lake Aral in central Asia
+8878,Karakalpak,the Turkic language spoken by the Karakalpak
+8879,Karakoram Karakoram_Range Karakorum_Range Mustagh Mustagh_Range,a mountain range in northern Kashmir; an extension of the Hindu Kush; contains the 2nd highest peak
+8880,Karelia,a region in Finland and Russia between the Gulf of Finland and the White Sea
+8881,Karelian Carelian,a member of the Finnish people living in Karelia in northwestern European Russia
+8882,Karelian Carelian,a Finnic language spoken by the people of Karelia
+8883,Karelian_Isthmus,the isthmus between the Gulf of Finland and Lake Ladoga that connects Finland and Russia
+8884,Karen Karenic,the Tibeto-Burman language spoken in the Thailand and Burmese borderlands
+8885,Karlfeldt Erik_Axel_Karlfeldt,Swedish poet whose works incorporate Swedish customs and folklore (1864-1931)
+8886,Karloff Boris_Karloff William_Henry_Pratt,United States film actor (born in England) noted for his performances in horror films (1887-1969)
+8887,Karnataka Mysore,state in southern India; formerly Mysore
+8888,Karok,a member of a North American Indian people of the Klamath river valley in northern California
+8889,Karok,the Quoratean language of the Karok
+8890,Karpov Anatoli_Karpov Anatoli_Yevgenevich_Karpov,Russian chess master who was world champion from 1975 until 1985 when he was defeated by Gary Kasparov (born in 1951)
+8891,Karsavina Tamara_Karsavina,Russian dancer who danced with Nijinsky (1885-1978)
+8892,Kartik Karttika,the eighth month of the Hindu calendar
+8893,Kartikeya Karttikeya,Hindu god of bravery
+8894,Kasai Kasai_River River_Kasai,a river of southwestern Africa that rises in central Angola and flows east and then north (forming part of the border between Angola and Congo) and continuing northwest through Congo to empty into the Congo River on the border between Congo and Republic of the Congo
+8895,Kashag,the advisory board of the Tibetan government-in-exile
+8896,Kashmir Cashmere Jammu_and_Kashmir,an area in southwestern Asia whose sovereignty is disputed between Pakistan and India
+8897,Kashmiri,a member of the people of Kashmir
+8898,Kashmiri,the official state language of Kashmir
+8899,Kasparov Gary_Kasparov Gary_Weinstein,Azerbaijani chess master who became world champion in 1985 by defeating Anatoli Karpov (born in 1963)
+8900,Kassite Cassite,a member of an ancient people who ruled Babylonia between 1600 and 1200 BC
+8901,Kassite Cassite,an ancient language spoken by the Kassites
+8902,Kastler Alfred_Kastler,French physicist (1902-1984)
+8903,Katharevusa,literary style of Modern Greek containing features borrowed from Koine
+8904,Kathmandu Katmandu capital_of_Nepal,the capital and largest city of Nepal
+8905,Katmai_National_Park,a national park in Alaska featuring mountains
+8906,Katowice,an industrial city of southern Poland
+8907,Katsina,a city in northern Nigeria; a major center of the Hausa people
+8908,Katsuwonidae family_Kasuwonidae,in some classifications considered a separate family comprising the oceanic bonitos
+8909,Katsuwonus genus_Katsuwonus,oceanic bonitos; in some classifications placed in its own family Katsuwonidae
+8910,Kattegatt,a strait of the North Sea between Jutland and Sweden; connects with the North Sea through the Skagerrak
+8911,Kauai Kauai_Island,an island of Hawaii to the northwest of Oahu
+8912,Kaufman George_S._Kaufman George_Simon_Kaufman,United States playwright who collaborated with many other writers including Moss Hart (1889-1961)
+8913,Kaunas Kovna Kovno,a city in central Lithuania
+8914,Kaunda Kenneth_Kaunda Kenneth_David_Kaunda,statesman who led Northern Rhodesia to full independence as Zambia in 1964 and served as Zambia's first president (1924-1999)
+8915,Kawasaki_disease mucocutaneous_lymph_node_syndrome,an acute disease of young children characterized by a rash and swollen lymph nodes and fever; of unknown cause
+8916,Kayser-Fleischer_ring,a pigmented ring at the outer edge of the cornea of the eye; a symptom of Wilson's disease
+8917,Kazak Kazakh,a Muslim who is a member of a Turkic people of western Asia (especially in Kazakstan)
+8918,Kazak Kazakh,the Turkic language spoken by the Kazak
+8919,Kazakhstan Republic_of_Kazakhstan Kazakstan Kazakh Kazak,a landlocked republic to the south of Russia and to the northeast of the Caspian Sea; the original Turkic-speaking inhabitants were overrun by Mongols in the 13th century; an Asian soviet from 1936 to 1991
+8920,Kazakhstani,a native or inhabitant of Kazakhstan
+8921,Kazakhstani_monetary_unit,monetary unit in Kazakhstan
+8922,Kazan,an industrial city in the European part of Russia
+8923,Kazan Elia_Kazan Elia_Kazanjoglous,United States stage and screen director (born in Turkey) and believer in method acting (1909-2003)
+8924,Kean Edmund_Kean,English actor noted for his portrayals of Shakespeare's great tragic characters (1789-1833)
+8925,Keaton Buster_Keaton Joseph_Francis_Keaton,United States comedian and actor in silent films noted for his acrobatic skills and deadpan face (1895-1966)
+8926,Keats John_Keats,Englishman and romantic poet (1795-1821)
+8927,Keble John_Keble,English clergyman who (with John Henry Newman and Edward Pusey) founded the Oxford movement (1792-1866)
+8928,Kedah,sultanate and one of the 13 states that constitute the Federation of Malaysia
+8929,Kegel_exercises pubococcygeus_exercises,exercises for women designed to improve the ability to hold urine
+8930,Kekchi,a member of a Mayan people of north central Guatemala
+8931,Kekchi,a Mayan language spoken by the Kekchi
+8932,Kekule Friedrich_August_Kekule Friedrich_August_Kekule_von_Stradonitz,German chemist remembered for his discovery of the ring structure of benzene (1829-1896)
+8933,Kelantan,sultanate and one of the 13 states that constitute the Federation of Malaysia
+8934,Keller Helen_Keller Helen_Adams_Keller,United States lecturer and writer who was blind and deaf from the age of 19 months; Anne Sullivan taught her to read and write and speak; Helen Keller graduated from college and went on to champion the cause of blind and deaf people (1880-1968)
+8935,Kellogg W._K._Kellogg Will_Keith_Kellog,United States food manufacturer who (with his brother) developed a breakfast cereal of crisp flakes of rolled and toasted wheat and corn; he established a company to manufacture the cereal (1860-1951)
+8936,Kelly Emmett_Kelly Weary_Willie,United States circus clown (1898-1979)
+8937,Kelly Gene_Kelly Eugene_Curran_Kelly,United States dancer who performed in many musical films (1912-1996)
+8938,Kelly Grace_Kelly Grace_Patricia_Kelly Princess_Grace_of_Monaco,United States film actress who retired when she married into the royal family of Monaco (1928-1982)
+8939,Kelvin First_Baron_Kelvin William_Thompson,British physicist who invented the Kelvin scale of temperature and pioneered undersea telegraphy (1824-1907)
+8940,Kelvin_scale absolute_scale,a temperature scale that defines absolute zero as 0 degrees; water freezes at 273.16 degrees and boils at 373.16 degrees
+8941,Kenai_Fjords_National_Park,a national park in Alaska having mountains and whale watching and ancient Indian copper mines
+8942,Kendal_green Kendal,a green dye, often used to color cloth, which is obtained from the woad plant
+8943,Kendall Edward_Kendall Edward_Calvin_Kendall,United States biochemist who discovered cortisone (1886-1972)
+8944,Kendall_partial_rank_correlation,a nonparametric measure of partial correlation
+8945,Kendall_test,any of several nonparametric measures of correlation (used when the assumptions of standard correlational analysis are not met)
+8946,Kendrew Sir_John_Cowdery_Kendrew,English biologist noted for studies of the molecular structure of blood components (born in 1917)
+8947,Kennan George_F._Kennan George_Frost_Kennan,United States diplomat who recommended a policy of containment in dealing with Soviet aggression (1904-2005)
+8948,Kennedia genus_Kennedia Kennedya genus_Kennedya,genus of Australian woody vines having showy red or purplish flowers
+8949,Kennedy Jack_Kennedy John_Fitzgerald_Kennedy JFK President_Kennedy President_John_F._Kennedy,35th President of the United States; established the Peace Corps; assassinated in Dallas (1917-1963)
+8950,Kennedy Kennedy_International Kennedy_International_Airport,a large airport on Long Island to the east of New York City
+8951,Kennelly A._E._Kennelly Arthur_Edwin_Kennelly,United States electrical engineer noted for his work on the theory of alternating currents; independently of Oliver Heaviside he discovered the existence of an atmospheric layer that reflects radio waves back to earth (1861-1939)
+8952,Kennesaw_Mountain,battle of the American Civil War (1864); Union forces under William Tecumseh Sherman were repulsed by Confederate troops under Joseph Eggleston Johnston
+8953,Kennewick,a town in southern Washington on the Columbia River
+8954,Kent,a county in southeastern England on the English Channel; formerly an Anglo-Saxon kingdom, it was the first to be colonized by the Romans
+8955,Kent Rockwell_Kent,United States painter noted for his woodcuts (1882-1971)
+8956,Kentish,a dialect of Middle English
+8957,Kentish Jutish,one of the major dialects of Old English
+8958,Kentuckian Bluegrass_Stater,a native or resident of Kentucky
+8959,Kentucky Bluegrass_State KY Ken.,a state in east central United States; a border state during the American Civil War; famous for breeding race horses
+8960,Kentucky_Derby,an annual race for three-year-old horses; held at Churchill Downs in Louisville, Kentucky
+8961,Kentucky_black_bass spotted_black_bass Micropterus_pseudoplites,a variety of black bass
+8962,Kentucky_bluegrass Kentucky_blue Kentucy_blue_grass June_grass Poa_pratensis,valuable meadow and pasture grass in Europe and especially central United States having tall stalks and slender bright green leaves; a chief constituent in lawn grass mixtures
+8963,Kentucky_coffee_tree bonduc chicot Gymnocladus_dioica,handsome tree of central and eastern North America having large bipinnate leaves and green-white flowers followed by large woody brown pods whose seeds are used as a coffee substitute
+8964,Kentucky_wonder Kentucky_wonder_bean,flat-podded green bean
+8965,Kentucky_yellowwood gopherwood Cladrastis_lutea Cladrastis_kentukea,small handsome roundheaded deciduous tree having showy white flowers in terminal clusters and heavy hardwood yielding yellow dye
+8966,Kenya Republic_of_Kenya,a republic in eastern Africa; achieved independence from the United Kingdom in 1963; major archeological discoveries have been made in the Great Rift Valley in Kenya
+8967,Kenyan,a native or inhabitant of Kenya
+8968,Kenyan_monetary_unit,monetary unit in Kenya
+8969,Kenyan_shilling shilling,the basic unit of money in Kenya; equal to 100 cents
+8970,Kenyapithecus genus_Kenyapithecus,extinct primate having powerful chewing muscles along with large molars and small incisors; fossils found in Kenya
+8971,Kenyata Jomo_Kenyata,Kenyan statesman and the first president of independent Kenya (1893-1978)
+8972,Keogh_plan,a tax-deferred pension plan for employees of unincorporated businesses or for self-employed persons
+8973,Keokuk,Sauk leader who aided the United States against Black Hawk (1790-1848)
+8974,Kepler Johannes_Kepler Johan_Kepler,German astronomer who first stated laws of planetary motion (1571-1630)
+8975,Kepler's_first_law,a law stating that the orbit of each planet is an ellipse with the sun at one focus of the ellipse
+8976,Kepler's_law Kepler's_law_of_planetary_motion,(astronomy) one of three empirical laws of planetary motion stated by Johannes Kepler
+8977,Kepler's_second_law law_of_areas law_of_equal_areas,a law concerning the speed at which planets travel; a line connecting a planet to the sun will sweep out equal areas in equal times; "Kepler's second law means that a planet's orbital speed changes with its distance from the sun"
+8978,Kepler's_third_law harmonic_law,a law stating that the ratio of the square of the revolutionary period (in years) to the cube of the orbital axis (in astronomical units) is the same for all planets
+8979,Kera,a Chadic language spoken in Chad
+8980,Kerbala Karbala Kerbela,a city of central Iraq to the south of Baghdad; a holy city for Shiite Muslims because it is the site of the tomb of Mohammed's grandson who was killed there in 680
+8981,Kerensky Aleksandr_Feodorovich_Kerensky,Russian revolutionary who was head of state after Nicholas II abdicated but was overthrown by the Bolsheviks (1881-1970)
+8982,Kern Jerome_Kern Jerome_David_Kern,United States composer of musical comedies (1885-1945)
+8983,Kernig's_sign,symptom of meningitis; patient cannot extend the leg at the knee when the thigh is flexed because of stiffness in the hamstrings
+8984,Kerouac Jack_Kerouac Jean-Louis_Lebris_de_Kerouac,United States writer who was a leading figure of the beat generation (1922-1969)
+8985,Kerr_cell,optical device consisting of a transparent cell with two electrodes between two polarizing media; passes light only if the two planes of polarization are parallel; used as a high-speed shutter or to modulate a laser beam
+8986,Kerry_blue_terrier,an Irish breed of medium-sized terriers with a silky blue-grey coat
+8987,Kesey Ken_Kesey Ken_Elton_Kesey,United States writer whose best-known novel was based on his experiences as an attendant in a mental hospital (1935-2001)
+8988,Kettering Charles_Kettering Charles_Franklin_Kettering,United States electrical engineer who made numerous automotive improvements (including the electric starter) (1876-1958)
+8989,Keuka_Lake Lake_Keuka,a glacial lake in central New York; one of the Finger Lakes
+8990,Key Francis_Scott_Key,United States lawyer and poet who wrote a poem after witnessing the British attack on Baltimore during the War of 1812; the poem was later set to music and entitled `The Star-Spangled Banner' (1779-1843)
+8991,Key_West,a town on the westernmost of the Florida keys in the Gulf of Mexico
+8992,Keynes John_Maynard_Keynes,English economist who advocated the use of government monetary and fiscal policy to maintain full employment without inflation (1883-1946)
+8993,Keynesian,a follower of the economic theories of John Maynard Keynes
+8994,Keynesianism,the economic theories of John Maynard Keynes who advocated government monetary and fiscal programs intended to stimulate business activity and increase employment
+8995,Khabarovsk,a city on the Amur River on the border of China and the capital of Khabarovsk
+8996,Khabarovsk,an administrative territory in Russia on the eastern coast of Siberia
+8997,Khachaturian Aram_Khachaturian Aram_Ilich_Khachaturian,Russian composer (born in Armenia) whose works are romantic and reflect his interest in folk music (1903-1978)
+8998,Khalkha Khalka Kalka,the Mongol people living in the central and eastern parts of Outer Mongolia
+8999,Khalkha Khalka Kalka,the language of the Khalkha that is the official language of the Mongolian People's Republic
+9000,Khalsa,the group of initiated Sikhs to which devout orthodox Sikhs are ritually admitted at puberty; founded by the tenth and last Guru in 1699
+9001,Khama Sir_Seretse_Khama,Botswanan statesman who was the first president of Botswana (1921-1980)
+9002,Khamti,a branch of the Tai languages
+9003,Khanty Ostyak,a Ugric language (related to Hungarian) spoken by the Ostyak
+9004,Kharkov Kharkiv,a city in northeastern Ukraine; former capital of the Ukraine
+9005,Khartoum capital_of_Sudan,the capital of Sudan located at the confluence of the Blue Nile and White Nile
+9006,Khaya genus_Khaya,African mahogany trees
+9007,Khedive,one of the Turkish viceroys who ruled Egypt between 1867 and 1914
+9008,Khepera,Egyptian god of the morning sun; creator
+9009,Khmer,a native or inhabitant of Cambodia
+9010,Khmer,the Mon-Khmer language spoken in Cambodia
+9011,Khmer_Rouge KR Party_of_Democratic_Kampuchea Communist_Party_of_Kampuchea,a communist organization formed in Cambodia in 1970; became a terrorist organization in 1975 when it captured Phnom Penh and created a government that killed an estimated three million people; was defeated by Vietnamese troops but remained active until 1999
+9012,Khoikhoin Khoikhoi Hottentot,any of the Khoisan languages spoken by the pastoral people of Namibia and South Africa
+9013,Khoisan Khoisan_language,a family of languages spoken in southern Africa
+9014,Khomeini Ruholla_Khomeini Ayatollah_Khomeini Ayatollah_Ruholla_Khomeini,Iranian religious leader of the Shiites; when Shah Pahlavi's regime fell Khomeini established a new constitution giving himself supreme powers (1900-1989)
+9015,Khowar,a Dardic language spoken in northwestern Pakistan
+9016,Khrushchev Nikita_Khrushchev Nikita_Sergeyevich_Khrushchev,Soviet statesman and premier who denounced Stalin (1894-1971)
+9017,Khuen,a branch of the Tai languages
+9018,Khyber_Pass,a mountain pass of great strategic and commercial value in the Hindu Kush on the border between northern Pakistan and western Afghanistan; a route by which invaders entered India
+9019,Ki,goddess personifying earth; counterpart of Akkadian Aruru
+9020,Kichaga Chaga Chagga,a Bantu language spoken by the Chaga in northern Tanzania
+9021,Kichai,a member of a Caddo people formerly living in north central Texas
+9022,Kickapoo,a member of the Algonquian people formerly inhabiting southern Wisconsin and northern Illinois
+9023,Kickapoo,the Algonquian language of the Kickapoo
+9024,Kidd William_Kidd Captain_Kidd,Scottish sea captain who was hired to protect British shipping in the Indian Ocean and then was accused of piracy and hanged (1645-1701)
+9025,Kierkegaard Soren_Kierkegaard Soren_Aabye_Kierkegaard,Danish philosopher who is generally considered. along with Nietzsche, to be a founder of existentialism (1813-1855)
+9026,Kieslowski Krzysztof_Kieslowski,Polish filmmaker who made ten films based on the Ten Commandments (1941-1996)
+9027,Kigali capital_of_Rwanda,the national capital and largest city of Rwanda; located in central Rwanda
+9028,Kiggelaria genus_Kiggelaria,small genus of South African shrubs or small trees
+9029,Kilimanjaro Mount_Kilimanjaro,the highest peak in Africa; located in northeastern Tanzania; 19,340 feet high
+9030,Kiliwa Kiliwi,a member of a North American Indian people living in northern Baja California
+9031,Kiliwa Kiliwi,the Yuman language spoken by the Kiliwa
+9032,Killarney_fern Trichomanes_speciosum,large stout fern of extreme western Europe
+9033,Kilroy,a nonexistent person popularized by American servicemen during World War II; "Kilroy was here"
+9034,Kimberley,city in central South Africa; center for diamond mining and diamond marketing
+9035,Kinetoscope,a device invented by Edison that gave an impression of movement as an endless loop of film moved continuously over a light source with a rapid shutter; precursor of the modern motion picture
+9036,King B._B._King Riley_B_King,United States guitar player and singer of the blues (born in 1925)
+9037,King Billie_Jean_King Billie_Jean_Moffitt_King,United States woman tennis player (born in 1943)
+9038,King Martin_Luther_King Martin_Luther_King_Jr.,United States charismatic civil rights leader and Baptist minister who campaigned against the segregation of Blacks (1929-1968)
+9039,King's_Counsel,Counsel to the Crown when the British monarch is a king
+9040,King's_English Queen's_English,English as spoken by educated persons in southern England
+9041,King_Charles_spaniel,a toy English spaniel with a black-and-tan coat; named after Charles II who popularized it
+9042,King_William_pine Athrotaxis_selaginoides,evergreen of Tasmanian mountains having sharp-pointed leaves that curve inward
+9043,King_of_England King_of_Great_Britain,the sovereign ruler of England
+9044,King_of_France,the sovereign ruler of France
+9045,King_of_the_Germans,the sovereign ruler of the Germans
+9046,Kingdom_of_God,the spiritual domain over which God is sovereign
+9047,Kings_Canyon_National_Park,a national park in California that has giant sequoia trees and alpine lakes and glaciers
+9048,Kingston,a town on the Hudson River in New York
+9049,Kingston,a town in southeast Ontario on Lake Ontario near the head of the Saint Lawrence River
+9050,Kingston capital_of_Jamaica Jamaican_capital,capital and largest city of Jamaica
+9051,Kingstown,the capital of Saint Vincent and the Grenadines; on Saint Vincent
+9052,Kinosternidae family_Kinosternidae,mud turtles; musk turtles
+9053,Kinosternon genus_Kinosternon,type genus of the Kinosternidae
+9054,Kinsey Alfred_Charles_Kinsey,United States zoologist best known for his interview studies of sexual behavior (1894-1956)
+9055,Kinshasa Leopoldville,the capital of the Democratic Republic of the Congo on the Congo river opposite Brazzaville
+9056,Kinyarwanda,a Bantu language
+9057,Kiowa,a member of a Tanoan people living in the southwestern United States
+9058,Kiowa,the Tanoan language spoken by the Kiowa
+9059,Kipling Rudyard_Kipling Joseph_Rudyard_Kipling,English author of novels and poetry who was born in India (1865-1936)
+9060,Kipp's_apparatus,a laboratory apparatus for producing a gas (usually hydrogen sulfide) by the action of a liquid on a solid without heating
+9061,Kirchhoff G._R._Kirchhoff Gustav_Robert_Kirchhoff,German physicist who with Bunsen pioneered spectrum analysis and formulated two laws governing electric networks (1824-1887)
+9062,Kirchhoff's_laws,(physics) two laws governing electric networks in which steady currents flow: the sum of all the currents at a point is zero and the sum of the voltage gains and drops around any closed circuit is zero
+9063,Kirchner Ernst_Ludwig_Kirchner,German expressionist painter (1880-1938)
+9064,Kirghiz Kirgiz Khirghiz,a member of a people vast regions of central Siberia
+9065,Kirghiz Kirgiz Khirghiz,the Turkic language spoken by the Kirghiz
+9066,Kiribati Republic_of_Kiribati,an island republic in the west central Pacific just to the south of the equator
+9067,Kiribati_dollar,the basic unit of money in Kiribati
+9068,Kirkia genus_Kirkia,small genus of tropical South African trees and shrubs
+9069,Kirkuk,a city in northeastern Iraq; the center of a rich oilfield with pipelines to the Mediterranean
+9070,Kishar,Babylonian consort of Anshar; in Sumerian the name signifies `the totality of the lower world'
+9071,Kishinev Chisinau capital_of_Moldova,the capital of Moldova
+9072,Kislev Chislev,the third month of the civil year; the ninth month of the ecclesiastical year in the Jewish calendar (in November and December)
+9073,Kissimmee Kissimmee_River,a river of central Florida that flows southward to Lake Okeechobee
+9074,Kissinger Henry_Kissinger Henry_Alfred_Kissinger,United States diplomat who served under President Nixon and President Ford (born in 1923)
+9075,Kisumu,a port city in western Kenya on the northeastern shore of Lake Victoria; fishing and trading center
+9076,Kiswahili,a Bantu language
+9077,Kitakyushu,a Japanese city on northern Kyushu
+9078,Kitchener Herbert_Kitchener Horatio_Herbert_Kitchener First_Earl_Kitchener_of_Khartoum,British field marshal (1850-1916)
+9079,Kitty_Litter,granulated clay; placed in a container where it absorbs the waste products of a cat or dog
+9080,Kivu Lake_Kivu,a lake in the mountains of central Africa between Congo and Rwanda
+9081,Klaipeda Memel,a city in western Lithuania on the Baltic Sea; formerly an important trading town of the Hanseatic League
+9082,Klamath Klamath_River,a river flowing southwest from Oregon through northern California to the Pacific Ocean
+9083,Klamath_Falls,a town in southern Oregon near the California border
+9084,Klansman Ku_Kluxer Kluxer,a member of the Ku Klux Klan
+9085,Klaproth Martin_Heinrich_Klaproth,German chemist who pioneered analytical chemistry and discovered three new elements (1743-1817)
+9086,Klee Paul_Klee,Swiss painter influenced by Kandinsky (1879-1940)
+9087,Kleenex,a piece of soft absorbent paper (usually two or more thin layers) used as a disposable handkerchief
+9088,Klein Calvin_Klein Calvin_Richard_Klein,United States fashion designer noted for understated fashions (born in 1942)
+9089,Klein Felix_Klein,German mathematician who created the Klein bottle (1849-1925)
+9090,Klein Melanie_Klein,United States psychoanalyst (born in Austria) who was the first to specialize in the psychoanalysis of small children (1882-1960)
+9091,Klein_bottle,a closed surface with only one side; formed by passing one end of a tube through the side of the tube and joining it with the other end
+9092,Kleist Heinrich_von_Kleist Bernd_Heinrich_Wilhelm_von_Kleist,German dramatist whose works concern people torn between reason and emotion (1777-1811)
+9093,Klimt Gustav_Klimt,Austrian painter influenced by art nouveau (1862-1918)
+9094,Kline Franz_Kline Franz_Joseph_Kline,United States abstract expressionist painter (1910-1962)
+9095,Klinefelter Harry_F._Klinefelter Harry_Fitch_Kleinfelter,United States physician who first described the XXY-syndrome (born in 1912)
+9096,Klinefelter's_syndrome Klinefelter_syndrome XXY-syndrome,syndrome in males that is characterized by small testes and long legs and enlarged breasts and reduced sperm production and mental retardation; a genetic defect in which an extra X chromosome (XXY) is present in the male
+9097,Klondike,a region in northwestern Canada where gold was discovered in 1896 but exhausted by 1910
+9098,Klopstock Friedrich_Gottlieb_Klopstock,German poet (1724-1803)
+9099,Klyuchevskaya,an inactive volcano on the Kamchatka Peninsula; last erupted in 1946
+9100,Knesset Knesseth,the Israeli unicameral parliament
+9101,Knight_Templar,a man who belongs to a Masonic order in the United States
+9102,Knight_Templar Templar,a knight of a religious military order established in 1118 to protect pilgrims and the Holy Sepulcher
+9103,Knight_of_the_Round_Table,in the Arthurian legend, a knight of King Arthur's court
+9104,Knightia genus_Knightia,small genus of trees or shrubs of New Zealand and New Caledonia
+9105,Knossos Cnossos Cnossus,an ancient town on Crete where Bronze Age culture flourished from about 2000 BC to 1400 BC
+9106,Knowlton's_cactus Pediocactus_knowltonii,small clustering cactus of southwestern United States; a threatened species
+9107,Knox John_Knox,Scottish theologian who founded Presbyterianism in Scotland and wrote a history of the Reformation in Scotland (1514-1572)
+9108,Knoxville,a city in eastern Tennessee on the Tennessee River
+9109,Koasati,a member of the Muskhogean people formerly living in northern Alabama; a member of the Creek Confederacy
+9110,Koasati,the Muskhogean language spoken by the Koasati
+9111,Kobe,a port city in Japan on Osaka Bay in southern Honshu; was damaged by an earthquake in 1995
+9112,Kobuk_Valley_National_Park,a national park in Alaska having mountains and forests and tundra and sand dunes and archeological sites
+9113,Kobus genus_Kobus,African antelopes: waterbucks
+9114,Koch Robert_Koch,German bacteriologist who isolated the anthrax bacillus and the tubercle bacillus and the cholera bacillus (1843-1910)
+9115,Kodiak Kodiak_Island,an island off southern Alaska in the Gulf of Alaska; site of the first European settlement in the area which was founded by the Russians in 1784
+9116,Koestler Arthur_Koestler,British writer (born in Hungary) who wrote a novel exposing the Stalinist purges during the 1930s (1905-1983)
+9117,Kogia genus_Kogia,pygmy sperm whales
+9118,Koine,a Greek dialect that flourished under the Roman Empire
+9119,Kokka_Shinto Kokka,the branch of Shinto recognized as the official state religion of Japan
+9120,Kol_Nidre,the opening prayer on the eve of Yom Kippur
+9121,Kola_Peninsula,a peninsula in northwestern Russia projecting eastward between the Barents Sea and the White Sea
+9122,Kolam,a member of a formerly tribal people now living in south central India
+9123,Kolami,the Dravidian language spoken by the Kolam in central India
+9124,Kolkata Calcutta,the largest city in India and one of the largest cities in the world; located in eastern India; suffers from poverty and overcrowding
+9125,Kolkwitzia genus_Kolkwitzia,Chinese genus of 1 species: beauty bush
+9126,Kolonia,capital of Micronesia
+9127,Komi,a member of a Finnish people living in the northwestern Urals in Russia
+9128,Komi Zyrian,the Finnic language spoken by the Komi
+9129,Komodo_dragon Komodo_lizard dragon_lizard giant_lizard Varanus_komodoensis,the largest lizard in the world (10 feet); found on Indonesian islands
+9130,Kongo,the Bantu language spoken by the Kongo living in the tropical forests of Zaire and Congo and Angola
+9131,Konoe Fumimaro_Konoe Prince_Fumimaro_Konoe Konoye Fumimaro_Konoye Prince_Fumimaro_Konoye,Japanese statesman who set Japan's expansionist policies and formed an alliance with Germany and Italy (1891-1945)
+9132,Konqueror,a freeware browser for Linux
+9133,Koopmans Tjalling_Koopmans Tjalling_Charles_Koopmans,United States economist (born in the Netherlands) (1910-1985)
+9134,Koplik's_spots,small red spots with white centers found on the mucous membranes of the mouth and tongue; symptom of measles that appears one or two days before the measles rash appears
+9135,Koran Quran al-Qur'an Book,the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina
+9136,Korbut Olga_Korbut,Soviet gymnast (born in 1955)
+9137,Korchnoi Viktor_Korchnoi Viktor_Lvovich_Korchnoi,Russian chess master (born in 1931)
+9138,Korda Sir_Alexander_Korda Sandor_Kellner,British filmmaker (born in Hungary) (1893-1956)
+9139,Kordofan,a mountainous province of central Sudan
+9140,Kordofanian,a group of languages spoken in the relatively small Kordofan area of the south Sudan
+9141,Korea Korean_Peninsula Dae-Han-Min-Gook Han-Gook,an Asian peninsula (off Manchuria) separating the Yellow Sea and the Sea of Japan; the Korean name is Dae-Han-Min-Gook or Han-Gook
+9142,Korea_Bay,an inlet of the Yellow Sea between the Liaodong Peninsula in China and western Korea
+9143,Korean,a native or inhabitant of Korea who speaks the Korean language
+9144,Korean,the Altaic language spoken by Koreans
+9145,Korean_Strait Korea_Strait,a strait between Korea and Japan; connects the East China Sea and the Sea of Japan
+9146,Korean_War,a war between North and South Korea; South Korea was aided by the United States and other members of the United Nations; 1950-1953
+9147,Korean_lawn_grass Japanese_lawn_grass Zoysia_japonica,lawn grass common in China and Japan; grown also in United States
+9148,Korean_lespedeza Lespedeza_stipulacea,annual native to Korea but widely cultivated for forage and hay in hot dry regions
+9149,Korzybski Alfred_Korzybski Alfred_Habdank_Skarbek_Korzybski,United States semanticist (born in Poland) (1879-1950)
+9150,Kosciusko Thaddeus_Kosciusko Kosciuszko Tadeusz_Andrzej_Bonawentura_Kosciuszko,Polish patriot and soldier who fought with Americans in the American Revolution (1746-1817)
+9151,Kosovo,a Serbian province in southern Serbia and Montenegro populated predominantly by Albanians
+9152,Kosteletzya genus_Kosteletzya,small genus of herbs of southeastern United States and tropical America and Africa
+9153,Kota Kotar,a member of the Dravidian people living in the Nilgiri Hills in southern India
+9154,Kota Kotar,a Dravidian language spoken by the Kota
+9155,Kotoko,a Chadic language spoken south of Lake Chad
+9156,Koussevitzky Serge_Koussevitzky Sergei_Aleksandrovich_Koussevitzky,United States conductor (born in Russia) who was noted for performing the works of contemporary composers (1874-1951)
+9157,Krafft-Ebing Richard_von_Krafft-Ebing Baron_Richard_von_Krafft-Ebing,German neurologist noted for his studies of sexual deviance (1840-1902)
+9158,Krakatau Krakatao Krakatoa,a small volcanic island in Indonesia between Java and Sumatra; its violent eruption in 1883 was the greatest in recorded history
+9159,Krasner Lee_Krasner,United States artist remembered for her spontaneous approach to painting; she was a founder of the New York school of abstract expressionism (1908-1984)
+9160,Kraut Krauthead Boche Jerry Hun,offensive term for a person of German descent
+9161,Krebs Hans_Adolf_Krebs Sir_Hans_Adolf_Krebs,English biochemist (born in Germany) who discovered the Krebs cycle (1900-1981)
+9162,Krebs_cycle Krebs_citric_acid_cycle citric_acid_cycle tricarboxylic_acid_cycle,in all plants and animals: a series of enzymatic reactions in mitochondria involving oxidative metabolism of acetyl compounds to produce high-energy phosphate compounds that are the source of cellular energy
+9163,Kreisler Fritz_Kreisler,United States violinist (born in Austria) (1875-1962)
+9164,Kremlin,citadel of Moscow, housing the offices of the Russian government
+9165,Krishna,8th and most important avatar of Vishnu; incarnated as a handsome young man playing a flute
+9166,Krishnaism,worship of Krishna the 8th avatar of Vishnu
+9167,Kroeber Alfred_Kroeber Alfred_Louis_Kroeber,United States anthropologist noted for his studies of culture (1876-1960)
+9168,Kronecker Leopold_Kronecker,German mathematician (1823-1891)
+9169,Kronecker_delta,a function of two variables i and j that equals 1 when i=j and equals 0 otherwise
+9170,Kropotkin Prince_Peter_Kropotkin Pyotr_Alexeyevich_Kropotkin,Russian anarchist (1842-1921)
+9171,Kroto Harold_Kroto Harold_W._Kroto Sir_Harold_Walter_Kroto,British chemist who with Robert Curl and Richard Smalley discovered fullerenes and opened a new branch of chemistry (born in 1939)
+9172,Kruger Oom_Paul_Kruger Stephanus_Johannes_Paulus_Kruger,Boer statesman (1825-1904)
+9173,Krupp Alfred_Krupp,German arms manufacturer and son of Friedrich Krupp; his firm provided ordnance for German armies from the 1840s through World War II (1812-1887)
+9174,Krupp Friedrich_Krupp,German industrialist who manufactured steel in Essen (1787-1826)
+9175,Krypterophaneron genus_Krypterophaneron,a genus of fish in the family Anomalopidae
+9176,Kshatriya,a member of the royal or warrior Hindu caste
+9177,Ku_Klux_Klan Klan KKK,a secret society of white Southerners in the United States; was formed in the 19th century to resist the emancipation of slaves; used terrorist tactics to suppress Black people
+9178,Kuala_Lumpur,the largest city and former capital of Malaysia until 2005
+9179,Kublai_Khan Kubla_Khan Kublai_Kaan,Mongolian emperor of China and grandson of Genghis Khan who completed his grandfather's conquest of China; he establish the Yuan dynasty and built a great capital on the site of modern Beijing where he received Marco Polo (1216-1294)
+9180,Kubrick Stanley_Kubrick,United States filmmaker (born in 1928)
+9181,Kuchean West_Tocharian Kuchean_dialect,a dialect of Tocharian
+9182,Kuhn Richard_Kuhn,Austrian chemist who did research on carotenoids and vitamins (1900-1967)
+9183,Kui,a member of the Dravidian people living in southeastern India
+9184,Kui,the Dravidian language spoken by the Kui in southeastern India
+9185,Kuiper Gerard_Kuiper Gerard_Peter_Kuiper,United States astronomer (born in the Netherlands) who studied the solar system and suggested in 1951 that there is a belt of comet-like debris at the edge of the solar system (1905-1973)
+9186,Kuiper_belt Edgeworth-Kuiper_belt,a disk-shaped region of minor planets outside the orbit of Neptune
+9187,Kuiper_belt_object KBO,any of many minor planets in the Kuiper belt outside the orbit of Neptune at the edge of the solar system
+9188,Kuki Chin Kuki-Chin,Kamarupan languages spoken in western Burma and Bangladesh and easternmost India
+9189,Kulanapan,a group of languages of the Hokan family
+9190,Kumasi,a city in southern Ghana
+9191,Kundt's_tube,a measuring instrument used to measure the speed of sound
+9192,Kunlun Kunlan_Shan Kunlun_Mountains Kuenlun Kuenlun_Mountains,a mountain range in western China that extends eastward from the Indian border for 1000 miles
+9193,Kuomintang Guomindang,the political party founded in 1911 by Sun Yat-sen; it governed China under Chiang Kai-shek from 1928 until 1949 when the Communists took power and subsequently was the official ruling party of Taiwan
+9194,Kupffer's_cell,specialized cells in the liver that destroy bacteria, foreign proteins, and worn-out blood cells
+9195,Kura Kura_River,a river in western Asia; rises in northeast Turkey and flows to the Caspian Sea
+9196,Kurd,a member of a largely pastoral Islamic people who live in Kurdistan; the largest ethnic group without their own state
+9197,Kurdish,an Iranian language spoken in Turkey and Iran and Iraq and Syria and Russia
+9198,Kurdistan,an extensive geographical region in the Middle East to the south of the Caucasus
+9199,Kurdistan,an oriental rug woven by Kurds that is noted for fine colors and durability
+9200,Kurdistan_Workers_Party Kurdistan_Labor_Pary Partiya_Karkeran_Kurdistan PPK,a Marxist-Leninist terrorist group of Kurds trying to establish an independent Kurdish state in eastern Turkey
+9201,Kurosawa Akira_Kurosawa,Japanese filmmaker noted for blending Japanese folklore with western styles of acting (1910-1998)
+9202,Kursk,a city of southwestern Russia
+9203,Kurux,a Dravidian language spoken in eastern India
+9204,Kusan,a member of the North American Indian people of Oregon
+9205,Kusan,a Penutian language spoken by the Kusan
+9206,Kutuzov Mikhail_Ilarionovich_Kutuzov Prince_of_Smolensk,Russian field marshal who commanded the Russian opposition to Napoleon (1745-1813)
+9207,Kuvi,a Dravidian language spoken in southeast India
+9208,Kuwait Kuwait_City Koweit capital_of_Kuwait,a seaport on the Persian Gulf and capital of Kuwait
+9209,Kuwait State_of_Kuwait Koweit,an Arab kingdom in Asia on the northwestern coast of the Persian Gulf; a major source of petroleum
+9210,Kuwaiti,a native or inhabitant of Kuwait
+9211,Kuwaiti_dinar dinar,the basic unit of money in Kuwait; equal 1,000 fils
+9212,Kuwaiti_dirham dirham,worth one tenth of a Kuwaiti dinar; equal 100 fils
+9213,Kuwaiti_monetary_unit,monetary unit in Kuwait
+9214,Kuznets Simon_Kuznets,United States economist (born in Russia) who developed a method for using a country's gross national product to estimate its economic growth (1901-1985)
+9215,Kwa,a group of African language in the Niger-Congo group spoken from the Ivory Coast east to Nigeria
+9216,Kwajalein,an atoll in the western Marshall Islands that was used as a Japanese air and naval base during World War II
+9217,Kwajalein,an amphibious assault in the Pacific in World War II (January 1944); American forces landed and captured a Japanese air base
+9218,Kwakiutl,a member of the Wakashan people living around Queen Charlotte Sound and on northern Vancouver Island
+9219,Kwakiutl,a Wakashan language spoken by the Kwakiutl
+9220,Kwan-yin Kuan_Yin,(Buddhism) a female Bodhisattva; often called goddess of mercy and considered an aspect of the Bodhisattva Avalokitesvara; identified with Japanese Kwannon
+9221,Kwangju,city in southwestern South Korea; an important military base during the Korean War
+9222,Kwannon,Japanese counterpart of Chinese Kuan Yin
+9223,Kwanzaa Kwanza,a festival featuring African-American culture; celebrated between Christmas and New Year
+9224,Kwell,a preparation of lindane (trade name Kwell) that is used to kill lice and itch mites; available in cream or shampoo
+9225,Kyd Kid Thomas_Kyd Thomas_Kid,English dramatist (1558-1594)
+9226,Kyoto,a city in central Japan on southern Honshu; a famous cultural center that was once the capital of Japan
+9227,Kyphosidae family_Kyphosidae,sea chubs
+9228,Kyphosus genus_Kyphosus,type genus of the Kyphosidae
+9229,Kyrgyzstan Kyrgyz_Republic Kirghizia Kirgizia Kirghiz Kirgiz Kirghizstan Kirgizstan,a landlocked republic in west central Asia bordering on northwestern China; formerly an Asian soviet but became independent in 1991
+9230,Kyrgyzstani_monetary_unit,monetary unit in Kyrgyzstan
+9231,Kyushu,the southernmost of the four main islands of Japan; contains coal fields
+9232,Kyyiv Kiev capital_of_the_Ukraine,capital and largest city of the Ukraine; a major manufacturing and transportation center
+9233,Kyzyl_Kum Kizil_Kum Qizil_Qum,a desert in Uzbekistan to the southeast of the Aral Sea
+9234,L l,the 12th letter of the Roman alphabet
+9235,L'Enfant Charles_L'Enfant Pierre_Charles_L'Enfant,United States architect (born in France) who laid out the city plan for Washington (1754-1825)
+9236,L-dopa levodopa Bendopa Brocadopa Larodopa,the levorotatory form of dopa (trade names Bendopa and Brocadopa and Larodopa); as a drug it is used to treat Parkinson's disease
+9237,L-plate,a square plate bearing the letter L that is attached to both ends of a car to indicate that the driver is a learner
+9238,LDL_cholesterol,the cholesterol in low-density lipoproteins; the `bad' cholesterol; a high level in the blood is thought to be related to various pathogenic conditions
+9239,LISP list-processing_language,a flexible procedure-oriented programing language that manipulates symbols in the form of lists
+9240,LISP_compiler,a compiler for programs written in LISP
+9241,LISP_program,a program written in LISP
+9242,LLud,a Celtic warrior god
+9243,LP L-P,a long-playing phonograph record; designed to be played at 33.3 rpm
+9244,LaSalle Sieur_de_LaSalle Rene-Robert_Cavelier,French explorer who claimed Louisiana for France (1643-1687)
+9245,La_Crosse,a town in western Wisconsin on the Mississippi River
+9246,La_Fontaine Jean_de_La_Fontaine,French writer who collected Aesop's fables and published them (1621-1695)
+9247,La_Paz capital_of_Bolivia,capital city in western Bolivia and the administrative seat of Bolivia's government; largest city in Bolivia
+9248,La_Rochefoucauld Francois_de_La_Rochefoucauld,French writer of moralistic maxims (1613-1680)
+9249,La_Spezia,a port city in Liguria on an arm of the Ligurian Sea; a major seaport and year-round resort
+9250,La_Tour Georges_de_La_Tour,French painter of religious works (1593-1652)
+9251,Laban Rudolph_Laban,Hungarian choreographer who developed Labanotation (1879-1958)
+9252,Labanotation,a system of notation for dance movements that uses symbols to represent points on a dancer's body and the direction of the dancer's movement and the tempo and the dynamics
+9253,Labiatae family_Labiatae Lamiaceae family_Lamiaceae mint_family,a large family of aromatic herbs and shrubs having flowers resembling the lips of a mouth and four-lobed ovaries yielding four one-seeded nutlets and including mint; thyme; sage; rosemary
+9254,Lablab genus_Lablab,one species: hyacinth bean
+9255,Labor_Day,first Monday in September in the United States and Canada
+9256,Labourite,a member of the British Labour Party
+9257,Labrador,the mainland part of the province of Newfoundland and Labrador in the eastern part of the large Labrador-Ungava Peninsula in northeastern Canada
+9258,Labrador-Ungava_Peninsula Labrador_Peninsula,a peninsular region of eastern Canada between Hudson Bay and the Labrador Sea; contains most of Quebec and the mainland part of Newfoundland and Labrador
+9259,Labrador_Sea,an arm of the northern Atlantic between Labrador and southern Greenland
+9260,Labrador_retriever,breed originally from Labrador having a short black or golden-brown coat
+9261,Labrador_tea crystal_tea Ledum_groenlandicum,evergreen shrub of eastern North America having white or creamy bell-shaped flowers and dark green hairy leaves used for tea during American Revolution
+9262,Labridae family_Labridae,wrasses
+9263,Labrouste Henri_Labrouste,French architect who was among the first to use metal construction successfully (1801-1875)
+9264,Laburnum genus_Laburnum,flowering shrubs or trees having bright yellow flowers; all parts of the plant are poisonous
+9265,Labyrinth_of_Minos,a vast labyrinth built in Crete by Daedalus at the command of Minos in order to contain the Minotaur
+9266,Labyrinthodontia superorder_Labyrinthodontia Labyrinthodonta superorder_Labyrinthodonta,extinct amphibians typically resembling heavy-bodied salamanders or crocodiles and having a solid flattened skull and conical teeth; Devonian through Triassic
+9267,Laccopetalum genus_Laccopetalum,one species: giant buttercup
+9268,Lacerta genus_Lacerta,type genus of the Lacertidae
+9269,Lacertidae family_Lacertidae,Old World lizards
+9270,Lachaise Gaston_Lachaise,United States sculptor (born in France) noted for his large nude figures (1882-1935)
+9271,Lachesis,the Greek goddess of fate who determines the length of the thread of life
+9272,Lachnolaimus genus_Lachnolaimus,a genus of Labridae
+9273,Laconia,an ancient region of southern Greece in the southeastern Peloponnesus; dominated by Sparta
+9274,Laconian,a resident of Laconia
+9275,Lactarius genus_Lactarius,large genus of agarics that have white spore and contain a white or milky juice when cut or broken; includes both edible and poisonous species
+9276,Lactobacillaceae family_Lactobacillaceae Lactobacteriaceae family_Lactobacteriaceae,lactic acid bacteria and important pathogens; bacteria that ferment carbohydrates chiefly into lactic acid
+9277,Lactophrys genus_Lactophrys,a genus of Ostraciidae
+9278,Lactuca genus_Lactuca,an herb with milky juice: lettuce; prickly lettuce
+9279,Ladin,a Rhaeto-Romance dialect of Romansh spoken in southeastern Switzerland
+9280,Lady noblewoman peeress,a woman of the peerage in Britain
+9281,Ladyship,a title used to address any peeress except a duchess; "Your Ladyship"; "Her Ladyship"
+9282,Laertes,(Greek mythology) the father of Odysseus
+9283,Lafayette,a town in south central Louisiana; settled by Acadians
+9284,Lafayette,a university town in west central Indiana on the Wabash River
+9285,Lafayette La_Fayette Marie_Joseph_Paul_Yves_Roch_Gilbert_du_Motier Marquis_de_Lafayette,French soldier who served under George Washington in the American Revolution (1757-1834)
+9286,Laffer Arthur_Laffer,United States economist who proposed the Laffer curve (born in 1940)
+9287,Laffer_curve,a graph purporting to show the relation between tax rates and government income; income increases as tax rates increase up to an optimum beyond which income declines
+9288,Laffite Lafitte Jean_Laffite Jean_Lafitte,French pirate who aided the United States in the War of 1812 and received an official pardon for his crimes (1780-1826)
+9289,Lag_b'Omer,(Judaism) Jewish holy day; the 33rd day after the 2nd day of Passover; the 18th day of Iyar
+9290,Lagarostrobus genus_Lagarostrobus,genus of dioecious evergreen trees of New Zealand and Tasmania; similar to genus Dacrydium
+9291,Lagenaria genus_Lagenaria,bottle gourds
+9292,Lagenophera genus_Lagenophera,small genus of herbs of Australia and South America having small solitary white or purple flowers similar to true daisies of genus Bellis
+9293,Lagerstroemia genus_Lagerstroemia,shrubs or small trees of tropical Asia and Africa usually with showy white, pink, or purplish flowers
+9294,Lagidium genus_Lagidium,a genus of Chinchillidae
+9295,Lagodon genus_Lagodon,a genus of Sparidae
+9296,Lagomorpha order_Lagomorpha,rabbits; hares; pikas; formerly considered the suborder Duplicidentata of the order Rodentia
+9297,Lagopus genus_Lagopus,ptarmigans
+9298,Lagorchestes genus_Lagorchestes,hare wallabies
+9299,Lagos,chief port and economic center of Nigeria; located in southwestern Nigeria on the Gulf of Guinea; former capital of Nigeria
+9300,Lagostomus genus_Lagostomus,viscachas
+9301,Lagothrix genus_Lagothrix,woolly monkeys
+9302,Laguncularia genus_Laguncularia,a genus of Laguncularia
+9303,Lahore,city in northeast Pakistan
+9304,Lahu,a Loloish language
+9305,Laius,(Greek mythology) king of Thebes who was unwittingly killed by his son Oedipus
+9306,Lake_Albert Lake_Albert_Nyanza Mobuto_Lake,a shallow lake on the border between Uganda and Congo in the Great Rift Valley
+9307,Lake_Aral Aral_Sea,a lake to the east of the Caspian Sea lying between Kazakhstan and Uzbekistan
+9308,Lake_Chad Chad,a lake in north central Africa; fed by the Shari river
+9309,Lake_Champlain Champlain,a lake in northeastern New York, northwestern Vermont and southern Quebec; site of many battles in the French and Indian War and in the American Revolution and in the War of 1812
+9310,Lake_Chelan,a narrow very deep lake in central Washington in the Cascade Range
+9311,Lake_Clark_National_Park,a national park in Alaska having Eskimo and Athapaskan archeological sites
+9312,Lake_District Lakeland,a popular tourist area in northwestern England including England's largest lake and highest mountain
+9313,Lake_Edward,a lake in the Great Rift Valley between Congo and Uganda
+9314,Lake_Erie Erie,the 4th largest of the Great Lakes; it is linked to the Hudson River by the New York State Barge Canal
+9315,Lake_Geneva Lake_Leman,a lake between southwestern Switzerland and France that is crossed from east to west by the Rhone
+9316,Lake_Huron Huron,the 2nd largest of the Great Lakes
+9317,Lake_Ilmen Ilmen,a lake in northwestern Russia; drains through the Volkhov River into Lake Ladoga
+9318,Lake_Ladoga Ladoga,a lake in northwestern Russia to the north of St. Petersburg; the largest lake in Europe; drains through the Neva River into the Gulf of Finland
+9319,Lake_Mead,the largest reservoir in the United States; located in southeastern Nevada and northwestern Arizona and formed by the Hoover Dam on the Colorado River; the center of a recreational area
+9320,Lake_Michigan Michigan,the 3rd largest of the Great Lakes; the largest freshwater lake entirely within the United States borders
+9321,Lake_Nasser Nasser,lake in Egypt formed by dams built on the Nile River at Aswan
+9322,Lake_Nyasa Lake_Malawi,a long lake in southeastern Africa between Tanzania, Mozambique, and Malawi
+9323,Lake_Onega Onega,lake in northwestern Russia near the border with Finland; second largest lake in Europe
+9324,Lake_Ontario Ontario,the smallest of the Great Lakes
+9325,Lake_Powell,the second largest reservoir in the United States; located in southern Utah and north central Arizona and formed by the Glen Canyon Dam on the Colorado River
+9326,Lake_St._Clair Lake_Saint_Clair,a lake between Ontario and Michigan; connected with Lake Huron and Lake Erie
+9327,Lake_Superior Superior,the largest freshwater lake in the world; the deepest of the Great Lakes
+9328,Lake_Tahoe,a lake on the border between Nevada and California to the west of Carson City; a popular resort area
+9329,Lake_Tana Lake_Tsana,a lake in northern Ethiopia; the largest lake in Ethiopia and the source of the Blue Nile
+9330,Lake_Tanganyika Tanganyika,the longest lake in the world in central Africa between Tanzania and Congo in the Great Rift Valley
+9331,Lake_Trasimenus Battle_of_Lake_Trasimenus,a battle in 217 BC in which Hannibal ambushed a Roman army led by Flaminius
+9332,Lake_Urmia Urmia Daryacheh-ye_Orumiyeh,a shallow saline lake in northwestern Iran between Tabriz and the western border of Turkey
+9333,Lake_Vanern Vanern,a lake in southwestern Sweden; the largest lake in Sweden
+9334,Lake_Victoria Victoria_Nyanza,the largest lake in Africa and the 2nd largest fresh water lake in the world; a headwaters reservoir for the Nile River
+9335,Lake_Volta,the Volta river in southeastern has been dammed to create one of the world's largest man-made lakes
+9336,Lakeland_terrier,breed of wire-haired terrier originally from the Lake District of England and used for hunting
+9337,Lakshmi,Hindu goddess of fortune and prosperity
+9338,Lallans Scottish_Lallans,a dialect of English spoken in the Lowlands of Scotland
+9339,Lama genus_Lama,llamas
+9340,Lamaism Tibetan_Buddhism,a Buddhist doctrine that includes elements from India that are not Buddhist and elements of preexisting shamanism
+9341,Lamaist,(Buddhism) an adherent of Lamaism
+9342,Lamarck Jean_Baptiste_de_Lamarck Chevalier_de_Lamarck,French naturalist who proposed that evolution resulted from the inheritance of acquired characteristics (1744-1829)
+9343,Lamarckian,a believer in Lamarckism
+9344,Lamarckism,a theory of organic evolution claiming that acquired characteristics are transmitted to offspring
+9345,Lamaze_method_of_childbirth Lamaze_method,a method that prepares a mother for natural childbirth; the pregnant woman (in classes and at home) practices (usually with the help of a coach) and learns about the physiology of childbirth and techniques of relaxation, concentration, and breathing
+9346,Lamb Charles_Lamb Elia,English essayist (1775-1834)
+9347,Lambert Constant_Lambert Leonard_Constant_Lambert,English composer and conductor (1905-1951)
+9348,Lambert-Eaton_syndrome Eaton-Lambert_syndrome myasthenic_syndrome carcinomatous_myopathy,a disease seen in patients with lung cancer and characterized by weakness and fatigue of hip and thigh muscles and an aching back; caused by antibodies directed against the neuromuscular junctions
+9349,Lambertia genus_Lambertia,small genus of Australian shrubs
+9350,Lambis genus_Lambis,scorpion shells of shallow tropical waters of the eastern hemisphere
+9351,Lamellicornia superfamily_Lamellicornia,scarabaeid beetles and stag beetles
+9352,Lamentations Book_of_Lamentations,an Old Testament book lamenting the desolation of Judah after the destruction of Jerusalem in 586 BC; traditionally attributed to the prophet Jeremiah
+9353,Laminaria genus_Laminaria,type genus of the family Laminariaceae: perennial brown kelps
+9354,Laminariaceae family_Laminariaceae,large family of marine brown algae including many economically important large kelps chiefly of northern waters
+9355,Laminariales order_Laminariales,in some classifications coextensive with family Laminariaceae: marine brown algae of cold or polar seas
+9356,Lamium genus_Lamium,genus of Old World herbs: dead nettles; henbits
+9357,Lammas Lammas_Day August_1,commemorates Saint Peter's miraculous deliverance from prison; a quarter day in Scotland; a harvest festival in England
+9358,Lammastide,the season of Lammas
+9359,Lamna genus_Lamna,a genus of Lamnidae
+9360,Lamnidae family_Lamnidae,oceanic sharks
+9361,Lampridae family_Lampridae,opahs
+9362,Lampris genus_Lampris,type genus of the Lampridae
+9363,Lampropeltis genus_Lampropeltis,king snakes and milk snakes
+9364,Lampyridae family_Lampyridae,fireflies
+9365,Lanai Lanai_Island,an island of central Hawaii; a pineapple-growing area
+9366,Lancashire,a historical area of northwestern England on the Irish Sea; noted for textiles
+9367,Lancaster,a city in northwestern England
+9368,Lancaster House_of_Lancaster Lancastrian_line,the English royal house that reigned from 1399 to 1461; its emblem was a red rose
+9369,Lancastrian,a member (or supporter) of the house of Lancaster
+9370,Lancastrian,a resident of Lancaster
+9371,Lancelot Sir_Lancelot,(Arthurian legend) one of the knights of the Round Table; friend of King Arthur until (according to some versions of the legend) he became the lover of Arthur's wife Guinevere
+9372,Land Din_Land Edwin_Herbert_Land,United States inventor who incorporated Polaroid film into lenses and invented the one step photographic process (1909-1991)
+9373,Landau Lev_Davidovich_Landau,Soviet physicist who worked on low temperature physics (1908-1968)
+9374,Lander,a town in central Wyoming
+9375,Landowska Wanda_Landowska,United States harpsichordist (born in Poland) who helped to revive modern interest in the harpsichord (1879-1959)
+9376,Landsteiner Karl_Landsteiner,United States pathologist (born in Austria) who discovered human blood groups (1868-1943)
+9377,Lane's_Prince_Albert,apple used primarily in cooking
+9378,Laney Lucy_Craft_Laney,United States educator who founded the first private school for Black students in Augusta, Georgia (1854-1933)
+9379,Lange Dorothea_Lange,United States photographer remembered for her portraits of rural workers during the Depression (1895-1965)
+9380,Langley Samuel_Pierpoint_Langley,United States astronomer and aviation pioneer who invented the bolometer and contributed to the design of early aircraft (1834-1906)
+9381,Langmuir Irving_Langmuir,United States chemist who studied surface chemistry and developed the gas-filled tungsten lamp and worked on high temperature electrical discharges (1881-1957)
+9382,Langside battle_of_Langside,(1568) Catholic forces supporting Mary Queen of Scots were routed by Protestants
+9383,Langtry Lillie_Langtry Jersey_Lillie Emilie_Charlotte_le_Breton,British actress and mistress of the prince who later became Edward VII (1853-1929)
+9384,Langue_d'oc Langue_d'oc_French,medieval provincial dialects of French formerly spoken in the south of France
+9385,Langue_d'oil Langue_d'oil_French,medieval provincial dialects of French spoken in central and northern France
+9386,Languedoc-Roussillon,a region in south central France; named after the medieval dialect of French that was spoken there
+9387,Laniidae family_Laniidae,shrikes
+9388,Lanius genus_Lanius,type genus of the Laniidae: typical shrikes
+9389,Lansing capital_of_Michigan,capital of the state of Michigan; located in southern Michigan on the Grand River
+9390,Lanthanotidae family_Lanthanotidae,stout-bodied lizards
+9391,Lanthanotus genus_Lanthanotus,one species
+9392,Lanthanotus_borneensis,a stout-bodied pleurodont lizard of Borneo
+9393,Lanzhou Lanchou Lanchow,the capital city of the Chinese province of Gansu on the Yellow River
+9394,Lao,the Tai language of a Buddhist people living in the area of the Mekong River in Thailand and Laos
+9395,Lao Laotian,a member of a Buddhist people inhabiting the area of the Mekong River in Laos and Thailand and speaking the Lao language; related to the Thais
+9396,Lao-tzu Lao-tse Lao-zi,Chinese philosopher regarded as the founder of Taoism (6th century BC)
+9397,Laocoon,(Greek mythology) the priest of Apollo who warned the Trojans to beware of Greeks bearing gifts when they wanted to accept the Trojan Horse; a god who favored the Greeks (Poseidon or Athena) sent snakes who coiled around Laocoon and his two twin sons killing them
+9398,Laos Lao_People's_Democratic_Republic,a mountainous landlocked communist state in southeastern Asia; achieved independence from France in 1949
+9399,Laotian_monetary_unit,monetary unit in Laos
+9400,Laplace Marquis_de_Laplace Pierre_Simon_de_Laplace,French mathematician and astronomer who formulated the nebular hypothesis concerning the origins of the solar system and who developed the theory of probability (1749-1827)
+9401,Laportea genus_Laportea,mostly tropical stinging herbs or trees: nettle
+9402,Lapp Lapplander Sami Saami Same Saame,a member of an indigenous nomadic people living in northern Scandinavia and herding reindeer
+9403,Lapp Sami Saami Same Saame,the language of nomadic Lapps in northern Scandinavia and the Kola Peninsula
+9404,Lappic Lappish,any of the languages spoken by the Lapps and generally assumed to be Uralic languages
+9405,Lappland Lapland,a region in northmost Europe inhabited by Lapps
+9406,Laptev_Sea,part of the Arctic Ocean to the north of Siberia (between the Taimyr Peninsula and the New Siberian Islands) that is icebound most of the year
+9407,Laputa,a land imagined by Jonathan Swift where impractical projects were pursued and practical projects neglected
+9408,Laramie,a university town in southeast Wyoming
+9409,Lardizabala genus_Lardizabala,evergreen monoecious climbers of South America having dark mauve-blue edible berries
+9410,Lardizabalaceae family_Lardizabalaceae lardizabala_family,thick-stemmed lianas and some shrubs; some have edible fruit
+9411,Lardner Ring_Lardner Ringgold_Wilmer_Lardner,United States humorist and writer of satirical short stories (1885-1933)
+9412,Laredo,a city in southern Texas on the Rio Grande
+9413,Large_Magellanic_Cloud,the larger of the two Magellanic Clouds visible from the southern hemisphere
+9414,Lari suborder_Lari,gulls; terns; jaegers; skimmers
+9415,Laricariidae family_Laricariidae,armored catfish
+9416,Laridae family_Laridae,gull family: gulls and terns
+9417,Larix genus_Larix,larches
+9418,Larousse Pierre_Larousse Pierre_Athanase_Larousse,French lexicographer (1817-1875)
+9419,Larrea genus_Larrea,xerophytic evergreen shrubs; South America to southwestern United States
+9420,Larus genus_Larus,type genus of the Laridae
+9421,Larvacea class_Larvacea,small free-swimming tunicates; sometimes classified as an order
+9422,Las_Cruces,a town in southern New Mexico on the Rio Grande
+9423,Las_Vegas,largest city in Nevada; located in southeastern Nevada; originally settled by Mormons but is now famous for entertainment and gambling and general excess
+9424,Lascar,a volcano in the Andes in Chile
+9425,Lascaux,a cave in southwestern France that contains Paleolithic paintings
+9426,Lashkar-e-Jhangvi,a Sunni Muslim extremist group in Pakistan that collaborates with al-Qaeda; the armed wing of Sipah-e-Sahaba
+9427,Lashkar-e-Omar Al_Qanoon,a terrorist organization formed in Pakistan in 2002 as a coalition of extremist Islamic militant groups including Lashkar-e-Taiba and Lashkar-e-Jhangvi and Jaish-e-Muhammad and elements of al-Qaeda
+9428,Lashkar-e-Taiba Lashkar-e-Toiba Lashkar-e-Tayyiba LET Army_of_the_Pure Army_of_the_Righteous,a brutal terrorist group active in Kashmir; fights against India with the goal of restoring Islamic rule of India; "Lashkar-e-Toiba has committed mass murders of civilian Hindus"
+9429,Lasiocampa genus_Lasiocampa,type genus of the Lasiocampidae: eggars
+9430,Lasiocampidae family_Lasiocampidae,tent caterpillars; eggars; lappet moths
+9431,Lasiurus genus_Lasiurus,a genus of Vespertilionidae
+9432,Laskar_Jihad Holy_War_Warriors,a paramilitary terrorist organization of militant Muslims in Indonesia; wages a jihad against Christians in Indonesia; subscribes to the Wahhabi creed of Islam
+9433,Lassa_fever,an acute contagious viral disease of central western Africa; characterized by fever and inflammation and muscular pains and difficulty swallowing; can be used as a bioweapon
+9434,Lassa_virus,the RNA virus that causes Lassa fever
+9435,Lassen_Volcanic_National_Park,a national park in California having mountains and volcanic lakes and hot springs
+9436,Lasso Orlando_di_Lasso Roland_de_Lassus,Belgian composer (1532-1594)
+9437,Last_Supper Lord's_Supper,the traditional Passover supper of Jesus with his disciples on the eve of his crucifixion
+9438,Lastex,yarn that has an elastic core wound around with cotton or silk or nylon or rayon threads
+9439,Lasthenia genus_Lasthenia,small genus of herbs of Pacific coast of North and South America
+9440,Lastreopsis genus_Lastreopsis,tropical terrestrial shield ferns
+9441,Late_Greek,the Greek language in the 3rd to 8th centuries
+9442,Late_Latin Biblical_Latin,the form of Latin written between the 3rd and 8th centuries
+9443,Lateran,the site in Rome containing the church of Rome and the Lateran Palace
+9444,Lateran_Council,any of five general councils of the Western Catholic Church that were held in the Lateran Palace
+9445,Lateran_Palace,a palace that served as the residence of the popes until the 14th century
+9446,Lateran_Treaty,the agreement signed in the Lateran Palace in 1929 by Italy and the Holy See which recognized the Vatican City as a sovereign and independent papal state
+9447,Lates genus_Lates,a genus of large percoid fishes of fresh and brackish water
+9448,Lathyrus genus_Lathyrus,genus of climbing herbs of Old World and temperate North and South America: vetchling; wild pea
+9449,Latimeria genus_Latimeria,type genus of the Latimeridae: coelacanth
+9450,Latimeridae family_Latimeridae,extinct except for the coelacanth
+9451,Latin,an inhabitant of ancient Latium
+9452,Latin,a person who is a member of those peoples whose languages derived from Latin
+9453,Latin,any dialect of the language of ancient Rome
+9454,Latin_America,the parts of North America and South America to the south of the United States where Romance languages are spoken
+9455,Latin_American Latino,a native of Latin America
+9456,Latin_cross,a cross with the lowest arm being longer than the others
+9457,Latin_square,a square matrix of n rows and columns; cells contain n different symbols so arranged that no symbol occurs more than once in any row or column
+9458,Latinae,a subfamily of the family Centropomidae
+9459,Latinesce,an artificial language based on Latin
+9460,Latinism,a word or phrase borrowed from Latin
+9461,Latinist,a specialist in the Latin language
+9462,Latium Lazio,an ancient region of west central Italy (southeast of Rome) on the Tyrrhenian Sea
+9463,Latrobe Benjamin_Henry_Latrobe,United States architect (born in England) whose works include the chambers of the United States Congress and the Supreme Court; considered the first professional architect in the United States (1764-1820)
+9464,Latrodectus genus_Latrodectus,venomous spiders
+9465,Latter-Day_Saint Mormon,a member of the Church of Jesus Christ of Latter-Day Saints
+9466,Latvia Republic_of_Latvia,a republic in northeastern Europe on the eastern coast of the Baltic Sea
+9467,Latvian,a native or inhabitant of Latvia
+9468,Latvian Lettish,the official language of Latvia; belongs to the Baltic branch of Indo-European
+9469,Latvian_monetary_unit,monetary unit in Latvia
+9470,Lauder Harry_Lauder Sir_Harry_MacLennan_Lauder,Scottish ballad singer and music hall comedian (1870-1950)
+9471,Laudo,a mountain peak in the Andes in Argentina (20,997 feet high)
+9472,Laughton Charles_Laughton,United States film actor (born in England) (1899-1962)
+9473,Lauraceae family_Lauraceae laurel_family,a family of Lauraceae
+9474,Laurasia,a hypothetical continent that (according to plate tectonic theory) broke up later into North America and Europe and Asia
+9475,Laurel Stan_Laurel Arthur_Stanley_Jefferson_Laurel,United States slapstick comedian (born in England) who played the scatterbrained and often tearful member of the Laurel and Hardy duo who made many films (1890-1965)
+9476,Laurel_and_Hardy,United States slapstick comedy duo who made many films together
+9477,Laurens Henry_Laurens,leader of the American Revolution and president of the Continental Congress (1724-1792)
+9478,Laurentian_Plateau Laurentian_Highlands Canadian_Shield,a large plateau that occupies more than 40% of the land area of Canada; it extends from the Great Lakes northward to the Arctic Ocean
+9479,Laurus genus_Laurus,small evergreen trees or shrubs with aromatic leaves
+9480,Lausanne,a city in western Switzerland; cultural and commercial center
+9481,Lautaro_Youth_Movement Lautaro_Faction_of_the_United_Popular_Action_Movement Lautaro_Popular_Rebel_Forces,a violent terrorist group organized in the 1980s and advocating the overthrow of the Chilean military government; leaders are mainly criminals or impoverished youths
+9482,Lavandula genus_Lavandula,lavender
+9483,Lavatera genus_Lavatera,widespread genus of herbs or softwood arborescent shrubs cultivated for their showy flowers
+9484,Laver Rod_Laver Rodney_George_Laver,Australian tennis player who in 1962 was the second man to win the Australian and French and English and United States singles titles in the same year; in 1969 he repeated this feat (born in 1938)
+9485,Lavoisier Antoine_Lavoisier Antoine_Laurent_Lavoisier,French chemist known as the father of modern chemistry; discovered oxygen and disproved the theory of phlogiston (1743-1794)
+9486,Lawrence,a town in northeastern Kansas on the Kansas River; scene of raids by John Brown in 1856
+9487,Lawrence D._H._Lawrence David_Herbert_Lawrence,English novelist and poet and essayist whose work condemned industrial society and explored sexual relationships (1885-1930)
+9488,Lawrence E._O._Lawrence Ernest_Orlando_Lawrence,United States physicist who developed the cyclotron (1901-1958)
+9489,Lawrence Gertrude_Lawrence,English actress (1898-1952)
+9490,Lawrence Saint_Lawrence St._Lawrence Laurentius,Roman martyr; supposedly Lawrence was ordered by the police to give up the church's treasure and when he responded by presenting the poor people of Rome he was roasted to death on a gridiron (died in 258)
+9491,Lawrence Sir_Thomas_Lawrence,English portrait painter remembered for the series of portraits of the leaders of the alliance against Napoleon (1769-1830)
+9492,Lawrence T._E._Lawrence Thomas_Edward_Lawrence Lawrence_of_Arabia,Welsh soldier who from 1916 to 1918 organized the Arab revolt against the Turks; he later wrote an account of his adventures (1888-1935)
+9493,Lawton,a town in southwest Oklahoma
+9494,Layia genus_Layia,genus of western United States annuals with showy yellow or white flowers
+9495,Lazarus,the person who Jesus raised from the dead after four days in the tomb; this miracle caused the enemies of Jesus to begin the plan to put him to death
+9496,Lazarus,the diseased beggar in Jesus' parable of the rich man and the beggar
+9497,Le_Chatelier's_principle Le_Chatelier's_law Le_Chatelier_principle Le_Chatelier-Braun_principle,the principle that if any change is imposed on a system that is in equilibrium then the system tends to adjust to a new equilibrium counteracting the change
+9498,Le_Corbusier Charles_Edouard_Jeanneret,French architect (born in Switzerland) (1887-1965)
+9499,Le_Duc_Tho,Vietnamese diplomat who negotiated with Henry Kissinger to end the war in Vietnam (1911-1990)
+9500,Le_Gallienne Eva_Le_Gallienne,United States actress (born in England) (1899-1991)
+9501,Le_Havre,a port city in northern France on the English Channel at the mouth of the Seine
+9502,Le_Notre Andre_Le_Notre,French landscape gardener who designed many formal gardens including the parks of Versailles (1613-1700)
+9503,Leacock Stephen_Leacock Stephen_Butler_Leacock,Canadian economist best remembered for his humorous writings (1869-1944)
+9504,League_of_Nations,an international organization formed in 1920 to promote cooperation and peace among nations; although suggested by Woodrow Wilson, the United States never joined and it remained powerless; it was dissolved in 1946 after the United Nations was formed
+9505,Leakey Louis_Leakey Louis_Seymour_Bazett_Leakey,English paleontologist whose account of fossil discoveries in Tanzania changed theories of human evolution (1903-1972)
+9506,Leakey Mary_Leakey Mary_Douglas_Leakey,English paleontologist (the wife of Louis Leakey) who discovered the Zinjanthropus skull that was 1,750,000 years old (1913-1996)
+9507,Leakey Richard_Leakey Richard_Erskine_Leakey,English paleontologist (son of Louis Leakey and Mary Leakey) who continued the work of his parents; he was appointed director of a wildlife preserve in Kenya but resigned under political pressure (born in 1944)
+9508,Leander,(Greek mythology) a youth beloved of Hero who drowned in a storm in the Hellespont on one of his nightly visits to see her
+9509,Leaning_Tower Leaning_Tower_of_Pisa,a tall round marble campanile in Pisa that is not perpendicular; construction was begun in 1174
+9510,Lear Edward_Lear,British artist and writer of nonsense verse (1812-1888)
+9511,Lear King_Lear,the hero of William Shakespeare's tragedy who was betrayed and mistreated by two of his scheming daughters
+9512,Leary Tim_Leary Timothy_Leary Timothy_Francis_Leary,United States psychologist who experimented with psychoactive drugs (including LSD) and became a well-known advocate of their use (1920-1996)
+9513,Lebanese,a native or inhabitant of Lebanon
+9514,Lebanese_monetary_unit,monetary unit in Lebanon
+9515,Lebanese_pound pound,the basic unit of money in Lebanon; equal to 100 piasters
+9516,Lebanon Lebanese_Republic,an Asian republic at east end of Mediterranean
+9517,Lebistes genus_Lebistes,guppies
+9518,Leboyer_method_of_childbirth Leboyer_method,a method of childbirth that tries to minimize the trauma for the newborn; delivery occurs in a quiet dimly lit room and the infant's head is not pulled and immediate bonding between mother and child is encouraged
+9519,Lecanoraceae family_Lecanoraceae,a fungus family of the division Lichenes
+9520,Leccinum genus_Leccinum,a genus of fungi belonging to the family Boletaceae
+9521,Leccinum_fibrillosum,an edible fungus with a dark reddish brown cap and a wide light tan stalk that expands toward the base
+9522,Lechanorales order_Lechanorales,category used in some classification systems for all lichens that produce apothecia
+9523,Leclanche_cell,voltaic cell that produces approximately 1.5 volts
+9524,Lecythidaceae family_Lecythidaceae,large tropical trees bearing large fruits with woody skins
+9525,Leda,(Greek mythology) a queen of Sparta who was raped by Zeus who had taken the form of a swan; Helen of Troy was conceived in the rape of Leda
+9526,Ledbetter Huddie_Leadbetter Leadbelly,United States folk singer and composer (1885-1949)
+9527,Ledum genus_Ledum,evergreen shrubs of north temperate regions
+9528,Lee Bruce_Lee Lee_Yuen_Kam,United States actor who was an expert in kung fu and starred in martial arts films (1941-1973)
+9529,Lee Gypsy_Rose_Lee Rose_Louise_Hovick,United States striptease artist who became famous on Broadway in the 1930s (1914-1970)
+9530,Lee Henry_Lee Lighthorse_Harry_Lee,soldier of the American Revolution (1756-1818)
+9531,Lee Richard_Henry_Lee,leader of the American Revolution who proposed the resolution calling for independence of the American Colonies (1732-1794)
+9532,Lee Robert_E._Lee Robert_Edward_Lee,American general who led the Confederate Armies in the American Civil War (1807-1870)
+9533,Lee Spike_Lee Shelton_Jackson_Lee,United States filmmaker whose works explore the richness of black culture in America (born in 1957)
+9534,Lee Tsung_Dao_Lee,United States physicist (born in China) who collaborated with Yang Chen Ning in disproving the principle of conservation of parity (born in 1926)
+9535,Leeds,a city on the River Aire in West Yorkshire in northern England; a center of the clothing industry
+9536,Leeward_Islands,a group of islands in the eastern West Indies
+9537,Left_Bank Latin_Quarter,the region of Paris on the southern bank of the Seine; a center of artistic and student life
+9538,Leger Fernand_Leger,French painter who was an early cubist (1881-1955)
+9539,Legionella_pneumophilia legionella,the motile aerobic rod-shaped Gram-negative bacterium that thrives in central heating and air conditioning systems and can cause Legionnaires' disease
+9540,Legionnaire,a member of the American Legion
+9541,Legionnaires'_disease,acute (sometimes fatal) lobar pneumonia caused by bacteria of a kind first recognized after an outbreak of the disease at an American Legion convention in Philadelphia in 1976; characterized by fever and muscle and chest pain and headache and chills and a dry cough
+9542,Lego Lego_set,(trademark) a child's plastic construction set for making mechanical models
+9543,Leguminosae family_Leguminosae Fabaceae family_Fabaceae legume_family pea_family,a large family of trees, shrubs, vines, and herbs bearing bean pods; divided for convenience into the subfamilies Caesalpiniaceae; Mimosaceae; Papilionaceae
+9544,Lehar Franz_Lehar,Hungarian composer of light operas (1870-1948)
+9545,Lehigh_River,a river in eastern Pennsylvania that flows southeast into the Delaware River
+9546,Leibniz Leibnitz Gottfried_Wilhelm_Leibniz Gottfried_Wilhelm_Leibnitz,German philosopher and mathematician who thought of the universe as consisting of independent monads and who devised a system of the calculus independent of Newton (1646-1716)
+9547,Leicester,an industrial city in Leicestershire in central England; built on the site of a Roman settlement
+9548,Leicestershire Leicester,a largely agricultural county in central England
+9549,Leichtlin's_camas Camassia_leichtlinii,camas found to the west of Cascade Mountains
+9550,Leiden Leyden,a city in the western Netherlands; residence of the Pilgrim Fathers for 11 years before they sailed for America in 1620
+9551,Leiden_jar Leyden_jar,an electrostatic capacitor of historical interest
+9552,Leigh Vivien_Leigh,English film actress (1913-1967)
+9553,Leiopelma genus_Leiopelma Liopelma genus_Liopelma,type and sole genus of the family Leiopelmatidae
+9554,Leiopelmatidae family_Leiopelmatidae Liopelmidae family_Liopelmidae,primitive New Zealand frogs
+9555,Leiophyllum genus_Leiophyllum,one species: sand myrtle
+9556,Leipzig,a city in southeastern Germany famous for fairs; formerly a music and publishing center
+9557,Leishmania genus_Leishmania,flagellate protozoan that causes leishmaniasis
+9558,Leitneria genus_Leitneria,one species: corkwood
+9559,Leitneriaceae family_Leitneriaceae corkwood_family,coextensive with the genus Leitneria; commonly isolated in a distinct order
+9560,Lemaireocereus genus_Lemaireocereus,tropical American cacti usually tall and branching with stout spines and funnel-shaped flowers and globular or ovoid often edible fruit
+9561,Lemaitre Georges_Henri_Lemaitre Edouard_Lemaitre,Belgian cosmologist who proposed the big-bang theory of the origin of the universe (1894-1966)
+9562,Lemmon Jack_Lemmon John_Uhler,United States film actor (1925-2001)
+9563,Lemmus genus_lemmus,lemmings
+9564,Lemna genus_Lemna,minute aquatic herbs floating on or below the water surface of still water consisting of a leaflike frond or plant body and single root
+9565,Lemnaceae family_Lemnaceae duckweed_family,family of small free-floating thalloid plants
+9566,Lemnos Limnos,a Greek island in the northern Aegean Sea; famous for a reddish-brown clay that has medicinal properties
+9567,Lemuridae family_Lemuridae,typical lemurs; of Madagascar
+9568,Lemuroidea suborder_Lemuroidea,Lemuridae; Lorisidae; Daubentoniidae; Indriidae; used in some classifications instead of Prosimii; in others considered a subdivision of Prosimii
+9569,Lena Lena_River,a Russian river in Siberia; flows northward into the Laptev Sea
+9570,Lenard Philipp_Lenard,German physicist who studied cathode rays (1862-1947)
+9571,Lendl Ivan_Lendl,United States tennis player (born in Czechoslovakia) who won several singles championships; in 1992 he became a United States citizen (born in 1960)
+9572,Lenin Vladimir_Lenin Nikolai_Lenin Vladimir_Ilyich_Lenin Vladimir_Ilich_Lenin Vladimir_Ilyich_Ulyanov Vladimir_Ilich_Ulyanov,Russian founder of the Bolsheviks and leader of the Russian Revolution and first head of the USSR (1870-1924)
+9573,Leninism Marxism-Leninism,the political and economic theories of Lenin which provided the guiding doctrine of the Soviet Union; the modification of Marxism by Lenin stressed that imperialism is the highest form of capitalism (which shifts the struggle from developed to underdeveloped countries)
+9574,Lennoaceae family_Lennoaceae,family of fleshy parasitic herbs lacking green foliage and having heads of small flowers; California and Mexico
+9575,Lennon John_Lennon,English rock star and guitarist and songwriter who with Paul McCartney wrote most of the music for the Beatles (1940-1980)
+9576,Lens genus_Lens,genus of small erect or climbing herbs with pinnate leaves and small inconspicuous white flowers and small flattened pods: lentils
+9577,Lent Lententide,a period of 40 weekdays from Ash Wednesday to Holy Saturday
+9578,Lente_Insulin Lente_Iletin,trade names for forms of insulin that are used to treat diabetes mellitus
+9579,Lentibulariaceae family_Lentibulariaceae bladderwort_family,carnivorous aquatic or bog plants: genera Utricularia, Pinguicula, and Genlisea
+9580,Lentinus genus_Lentinus,a genus of fungus belonging to the family Tricholomataceae
+9581,Leo,a zodiacal constellation in northern hemisphere between Cancer and Virgo
+9582,Leo Leo_the_Lion Lion,the fifth sign of the zodiac; the sun is in this sign from about July 23 to August 22
+9583,Leo Lion,(astrology) a person who is born while the sun is in Leo
+9584,Leo_I St._Leo_I Leo_the_Great,Italian pope from 440 to 461 who extended the authority of the papacy to the west and persuaded Attila not to attack Rome (440-461)
+9585,Leo_III,Italian pope from 795 to 816 who in 800 crowned Charlemagne emperor of the Romans (750-816)
+9586,Leo_IX Bruno Bruno_of_Toul,German pope from 1049 to 1054 whose papacy was the beginning of papal reforms in the 11th century (1002-1054)
+9587,Leo_X Giovanni_de'Medici,son of Lorenzo de'Medici and pope from 1513 to 1521 who excommunicated Martin Luther and who in 1521 bestowed on Henry VIII the title of Defender of the Faith (1475-1521)
+9588,Leo_XIII Gioacchino_Pecci Giovanni_Vincenzo_Pecci,Italian pope from 1878 to 1903 who was interested in the advancement of learning and who opened the Vatican secret archives to all scholars
+9589,Leon,a historical area and former kingdom in northwestern Spain
+9590,Leon,a city in northwestern Spain at the foot of the Cantabrian Mountains
+9591,Leon,a city in central Mexico
+9592,Leonard Elmore_Leonard Elmore_John_Leonard Dutch_Leonard,United States writer of thrillers (born in 1925)
+9593,Leonardo Leonardo_da_Vinci da_Vinci,Italian painter and sculptor and engineer and scientist and architect; the most versatile genius of the Italian Renaissance (1452-1519)
+9594,Leonberg,a large dog (usually with a golden coat) produced by crossing a St Bernard and a Newfoundland
+9595,Leonidas,king of Sparta and hero of the battle of Thermopylae where he was killed by the Persians (died in 480 BC)
+9596,Leonotis genus_Leonotis,small genus of tropical herbs and subshrubs of South Africa
+9597,Leontief Wassily_Leontief,United States economist (born in Russia) who devised an input-output method of economic analysis (1906-1999)
+9598,Leontocebus genus_Leontocebus genus_Leontideus,tamarins
+9599,Leontodon genus_Leontodon,hawkbit
+9600,Leontopodium genus_Leontopodium,edelweiss
+9601,Leonurus genus_Leonurus,genus of stout Old World herbs having flowers in whorls
+9602,Leotia_lubrica,a discomycete that develops in clusters of slippery rubbery gelatinous fruiting bodies that are dingy yellow to tan in color
+9603,Lepadidae family_Lepadidae,goose barnacles
+9604,Lepanto Battle_of_Lepanto,Turkish sea power was destroyed in 1571 by a league of Christian nations organized by the Pope
+9605,Lepas genus_Lepas,type genus of the family Lepadidae
+9606,Lepechinia genus_Lepechinia Sphacele genus_Sphacele,a dicotyledonous genus of the family Labiatae
+9607,Lepidium genus_Lepidium,cosmopolitan genus of annual and biennial and perennial herbs: cress
+9608,Lepidobotryaceae family_Lepidobotryaceae,family created in 1950 solely for the classification of a distinctive African tree repeatedly classified in other families; trees long believed to exist only in Africa
+9609,Lepidochelys genus_Lepidochelys,ridleys
+9610,Lepidocybium genus_Lepidocybium,a genus of Gempylidae
+9611,Lepidodendraceae family_Lepidodendraceae,fossil plants characterized by conspicuous spirally arranged leaf scars on the trunk
+9612,Lepidodendrales order_Lepidodendrales,fossil arborescent plants arising during the early Devonian and conspicuous throughout the Carboniferous
+9613,Lepidoptera order_Lepidoptera,moths and butterflies
+9614,Lepidosauria subclass_Lepidosauria,diapsid reptiles: lizards; snakes; tuataras
+9615,Lepidothamnus genus_Lepidothamnus,small usually shrubby conifers
+9616,Lepiota_clypeolaria,an agaric with a ragged stalk and a soft floccose cap
+9617,Lepiota_naucina,an agaric with greyish white fruiting body and gills that change from pink to dingy red
+9618,Lepiota_rhacodes,an agaric with a large cap with brown scales and a thick stalk
+9619,Lepiota_rubrotincta,an agaric with a relatively small pink to red cap and white gills and stalk
+9620,Lepiotaceae family_Lepiotaceae,a family of fungi having free gills and a cap that is cleanly separable from the stalk
+9621,Lepisma genus_Lepisma,type genus of the Lepismatidae: silverfish
+9622,Lepismatidae family_Lepismatidae,firebrats
+9623,Lepisosteidae family_Lepisosteidae,comprises the genus Lepisosteus
+9624,Lepisosteus genus_Lepisosteus,type genus of the Lepisosteidae: freshwater gars
+9625,Lepomis genus_Lepomis,bream
+9626,Leporidae family_Leporidae,hares and rabbits
+9627,Leptarrhena genus_Leptarrhena,one species: leatherleaf saxifrage
+9628,Leptinotarsa genus_Leptinotarsa,Colorado potato beetles
+9629,Leptodactylidae family_Leptodactylidae,New World frogs; in some classifications essentially coextensive with the family Bufonidae
+9630,Leptodactylus genus_Leptodactylus,type genus of the Leptodactylidae; in some classifications placed in the family Bufonidae
+9631,Leptoglossus genus_Leptoglossus,leaf-footed bugs
+9632,Leptopteris genus_Leptopteris,including some ferns sometimes placed in genus Todea
+9633,Leptoptilus genus_Leptoptilus,adjutant birds and marabous
+9634,Leptotyphlopidae family_Leptotyphlopidae,blind snakes
+9635,Leptotyphlops genus_Leptotyphlops,blind snakes of Asia and Africa and Americas
+9636,Lepus,a constellation in the southern hemisphere near Orion and Columba
+9637,Lepus genus_Lepus,type genus of the Leporidae: hares
+9638,Lermontov Mikhail_Yurievich_Lermontov,Russian writer (1814-1841)
+9639,Lerner Alan_Jay_Lerner,United States lyricist who collaborated on musicals with Frederick Loewe (1918-1986)
+9640,Lesbian,a resident of Lesbos
+9641,Lesbos Lesvos Mytilene,an island of eastern Greece in the eastern Aegean Sea; in antiquity it was famous for lyric poetry
+9642,Lesotho Kingdom_of_Lesotho Basutoland,a landlocked constitutional monarchy in southern Africa; achieved independence from the United Kingdom in 1966
+9643,Lesotho_monetary_unit,monetary unit in Lesotho
+9644,Lesquerella genus_Lesquerella,genus of low-growing hairy herbs: bladderpods
+9645,Lesseps Ferdinand_de_Lesseps Vicomte_Ferdinand_Marie_de_Lesseps,French diplomat who supervised the construction of the Suez Canal (1805-1894)
+9646,Lesser_Antilles Caribees,a group of islands in the southeastern West Indies
+9647,Lesser_Sunda_Islands Nusa_Tenggara,a chain of islands forming a province of Indonesia to the east of Java; includes Bali and Timor
+9648,Lessing Doris_Lessing Doris_May_Lessing,English author of novels and short stories who grew up in Rhodesia (now Zimbabwe) (born in 1919)
+9649,Lessing Gotthold_Ephraim_Lessing,German playwright and leader of the Enlightenment (1729-1781)
+9650,Lethe River_Lethe,(Greek mythology) a river in Hades; the souls of the dead had to drink from it, which made them forget all they had done and suffered when they were alive
+9651,Leto Latona,wife or mistress of Zeus and mother of Apollo and Artemis in ancient mythology; called Latona in Roman mythology
+9652,Letter_of_Jeremiah Epistle_of_Jeremiah,an Apocryphal book consisting of a letter ascribed to Jeremiah to the Jews in exile in Babylon warning them against idolatry
+9653,Leucadendron genus_Leucadendron,large genus of evergreen trees and shrubs having silvery white leaves and solitary terminal flowers with conspicuous silvery bracts
+9654,Leucaena genus_Leucaena,small genus of tropical evergreen trees or shrubs having pods like those of the acacia
+9655,Leucanthemum genus_Leucanthemum,comprises plants often included in the genus Chrysanthemum
+9656,Leuciscus genus_Leuciscus,a genus of fish including: dace, chub
+9657,Leucogenes genus_Leucogenes,New Zealand edelweiss
+9658,Leuctra battle_of_Leuctra,Thebes defeated Sparta in 371 BC; the battle ended Sparta's military supremacy in Greece
+9659,Leuwenhoek Leeuwenhoek Anton_van_Leuwenhoek Anton_van_Leeuwenhoek,Dutch pioneer microscopist who was among the first to recognize cells in animals and who gave the first accurate descriptions of microbes and spermatozoa and blood corpuscles (1632-1723)
+9660,Levant,the former name for the geographical area of the eastern Mediterranean that is now occupied by Lebanon, Syria, and Israel
+9661,Levant Levant_morocco,a heavy morocco often used in bookbinding
+9662,Levant_cotton Gossypium_herbaceum,Old World annual having heart-shaped leaves and large seeds with short greyish lint removed with difficulty; considered an ancestor of modern short-staple cottons
+9663,Levantine,(formerly) a native or inhabitant of the Levant
+9664,Levi's levis,a popular brand of jeans
+9665,Levi-Strauss Claude_Levi-Strauss,French cultural anthropologist who promoted structural analysis of social systems (born in 1908)
+9666,Levisticum genus_Levisticum,genus of aromatic European herbs with yellow flowers
+9667,Levite,a member of the Hebrew tribe of Levi (especially the branch that provided male assistants to the temple priests)
+9668,Leviticus Book_of_Leviticus,the third book of the Old Testament; contains Levitical law and ritual precedents
+9669,Lewis C._S._Lewis Clive_Staples_Lewis,English critic and novelist; author of theological works and of books for children (1898-1963)
+9670,Lewis Carl_Lewis Frederick_Carleton_Lewis,United States athlete who won gold medals at the Olympics for his skill in sprinting and jumping (born in 1961)
+9671,Lewis Jerry_Lee_Lewis,United States rock star singer and pianist (born in 1935)
+9672,Lewis John_L._Lewis John_Llewelly_Lewis,United States labor leader who was president of the United Mine Workers of America from 1920 to 1960 and president of the Congress of Industrial Organizations from 1935 to 1940 (1880-1969)
+9673,Lewis Meriwether_Lewis,United States explorer and soldier who lead led an expedition from St. Louis to the mouth of the Columbia River (1774-1809)
+9674,Lewis Sinclair_Lewis Harry_Sinclair_Lewis,United States novelist who satirized middle-class America in his novel Main Street (1885-1951)
+9675,Lewis_and_Clark_Expedition,an expedition sent by Thomas Jefferson to explore the northwestern territories of the United States; led by Meriwether Lewis and William Clark; traveled from St. Louis to the mouth of the Columbia River from 1803 to 1806
+9676,Lewisia genus_Lewisia,genus of western North American low-growing herbs having linear woolly leaves and large pink flowers
+9677,Lewiston,a town in southwestern Maine to the north of Portland
+9678,Lewiston,a town in northwestern Idaho
+9679,Lexington,town in eastern Massachusetts near Boston where the first battle of the American Revolution was fought
+9680,Lexington,a city in eastern Kentucky; noted for raising thoroughbred horses
+9681,Lexington Concord Lexington_and_Concord,the first battle of the American Revolution (April 19, 1775)
+9682,Leycesteria genus_Leycesteria,small species of shrubs of western Himalayas to China
+9683,Leydig_cell Leydig's_cell,a cell in the testes that secretes the hormone testosterone
+9684,Leymus genus_Leymus,genus that in some classifications overlaps the genus Elymus
+9685,Leyte Leyte_Island Leyte_invasion,a battle in World War II; the return of United States troops to the Philippines began with landings on Leyte Island in October 1944; the battle marked first use of kamikaze aircraft by the Japanese
+9686,Lhasa Lassa capital_of_Tibet Forbidden_City,the sacred city of Lamaism; known as the Forbidden City for its former inaccessibility and hostility to strangers
+9687,Lhasa Lhasa_apso,a breed of terrier having a long heavy coat raised in Tibet as watchdogs
+9688,Lhotse,a mountain in the central Himalayas on the border of Tibet and Nepal (27,890 feet high)
+9689,Li_Po,Chinese lyric poet (700-762)
+9690,Liao Liao_dynasty,the dynasty that ruled much of Manchuria and northeastern China from 947 to 1125
+9691,Liaodong_Peninsula Liaodong_Bandao,a peninsula in northeastern China that extends into the Yellow Sea, between Bo Hai and Korea Bay
+9692,Liatris genus_Liatris,genus of perennial North American herbs with aromatic usually cormous roots
+9693,Libby Willard_Frank_Libby,United States chemist who developed a method of radiocarbon dating (1908-1980)
+9694,Liberal_Democrat_Party,a political party in Great Britain; formerly the Liberal Party; advocates reforms and improvement of the conditions of working people
+9695,Liberal_Party,a political party in Australia, Canada, and other nations, and formerly in Great Britain
+9696,Liberation_Tigers_of_Tamil_Eelam LTTE Tamil_Tigers Tigers World_Tamil_Association World_Tamil_Movement,a terrorist organization in Sri Lanka that began in 1970 as a student protest over the limited university access for Tamil students; currently seeks to establish an independent Tamil state called Eelam; relies on guerilla strategy including terrorist tactics that target key government and military personnel; "the Tamil Tigers perfected suicide bombing as a weapon of war"
+9697,Liberia Republic_of_Liberia,a republic in West Africa; established in 1822 by Americans as a way to free negro slaves
+9698,Liberian,a native or inhabitant of Liberia
+9699,Liberian_coffee Coffea_liberica,small tree of West Africa
+9700,Liberian_dollar,the basic unit of money in Liberia
+9701,Liberty_Bell,the bell of Independence Hall; rung 8 July 1776 to announce the signing of the Declaration of Independence
+9702,Liberty_Island Bedloe's_Island,an island in New York Bay to the southwest of Manhattan where the Statue of Liberty stands; "Congress officially changed the name from Bedloe's Island to Liberty Island in 1956"
+9703,Liberty_Party,a former political party in the United States; formed in 1839 to oppose the practice of slavery; merged with the Free Soil Party in 1848
+9704,Liberty_ship,a slow cargo ship built during World War II
+9705,Libocedrus genus_Libocedrus,cypresses that resemble cedars
+9706,Libra,a small faint zodiacal constellation in the southern hemisphere; between Virgo and Scorpius
+9707,Libra Balance,(astrology) a person who is born while the sun is in Libra
+9708,Libra Libra_the_Balance Balance Libra_the_Scales,the seventh sign of the zodiac; the sun is in this sign from about September 23 to October 22
+9709,Libreville capital_of_Gabon,the capital of Gabon
+9710,Libya Socialist_People's_Libyan_Arab_Jamahiriya,a military dictatorship in northern Africa on the Mediterranean; consists almost entirely of desert; a major exporter of petroleum
+9711,Libyan,a native or inhabitant of Libya
+9712,Libyan_Desert,the northeastern part of the Sahara Desert in Libya and Egypt and Sudan
+9713,Libyan_Islamic_Fighting_Group FIG Al-Jama'a_al-Islamiyyah_al-Muqatilah_bi-Libya Libyan_Fighting_Group Libyan_Islamic_Group,a Libyan terrorist group organized in 1995 and aligned with al-Qaeda; seeks to radicalize the Libyan government; attempted to assassinate Qaddafi
+9714,Libyan_dinar dinar,the basic unit of money in Libya
+9715,Libyan_dirham dirham,100 dirhams equal 1 dinar in Libya
+9716,Libyan_monetary_unit,monetary unit in Libya
+9717,Lichanura genus_Lichanura,boas of western North America
+9718,Lichenales order_Lichenales,category used especially in former classifications for organisms now constituting the division Lichenes
+9719,Lichenes division_Lichenes,comprising the lichens which grow symbiotically with algae; sometimes treated as an independent group more or less coordinate with algae and fungi
+9720,Lichtenstein Roy_Lichtenstein,United States painter who was a leading exponent of pop art (1923-1997)
+9721,Lidocaine Xylocaine,a local anesthetic (trade names Lidocaine and Xylocaine) used topically on the skin and mucous membranes
+9722,Lie Trygve_Lie Trygve_Halvden_Lie,Norwegian diplomat who was the first Secretary General of the United Nations (1896-1968)
+9723,Liebig_condenser,a condenser: during distillation the vapor passes through a tube that is cooled by water
+9724,Liechtenstein Principality_of_Liechtenstein,a small landlocked principality (constitutional monarchy) in central Europe located in the Alps between Austria and Switzerland
+9725,Liechtensteiner,a native or inhabitant of Liechtenstein
+9726,Liederkranz,a soft cheese with a strong odor and flavor
+9727,Liege Luik,city in eastern Belgium; largest French-speaking city in Belgium
+9728,Liepaja,a city of southwestern Latvia on the Baltic Sea
+9729,Life_Saver,a candy shaped like a small lifesaver
+9730,Ligularia genus_Ligularia,genus of Old World herbs resembling groundsel: leopard plants
+9731,Liguria,region of northwestern Italy on the Ligurian Sea
+9732,Ligurian_Sea,an arm of the Mediterranean between northwest Italy and Corsica
+9733,Ligustrum genus_Ligustrum,genus of Old World shrubs: privet
+9734,Ligustrum_obtusifolium,small deciduous shrub having graceful arching branches and luxuriant foliage
+9735,Liliaceae family_Liliaceae lily_family,includes species sometimes divided among the following families: Alliaceae; Aloeaceae; Alstroemeriaceae; Aphyllanthaceae; Asparagaceae; Asphodelaceae; Colchicaceae; Convallariaceae; Hemerocallidaceae; Hostaceae; Hyacinthaceae; Melanthiaceae; Ruscaceae; Smilacaceae; Tecophilaeacea; Xanthorrhoeaceae
+9736,Liliales order_Liliales,an order of monocotyledonous plants including Amaryllidaceae and Liliaceae and Iridaceae
+9737,Liliidae subclass_Liliidae,one of four subclasses or superorders of Monocotyledones; comprises 17 families including: Liliaceae; Alliaceae; Amaryllidaceae; Iridaceae; Orchidaceae; Trilliaceae
+9738,Lilith,in ancient Semitic folklore: a female demon who attacks children
+9739,Lilium genus_Lilium,type genus of Liliaceae
+9740,Liliuokalani Lydia_Kamekeha_Paki_Liliuokalani,queen of the Hawaiian islands (1838-1917)
+9741,Lille,an industrial city in northern France near the Belgian border; was the medieval capital of Flanders
+9742,Lillie Beatrice_Lillie Lady_Peel,British actress (born in Canada) (1898-1989)
+9743,Lilliput,a land imagined by Jonathan Swift that was inhabited by tiny people
+9744,Lilliputian,a 6-inch tall inhabitant of Lilliput in a novel by Jonathan Swift
+9745,Lilo,a type of inflatable air mattress
+9746,Lilongwe capital_of_Malawi,the capital of Malawi; located in south central Malawi
+9747,Lima capital_of_Peru,capital and largest city and economic center of Peru; located in western Peru; was capital of the Spanish empire in the New World until the 19th century
+9748,Limacidae family_Limacidae,slugs
+9749,Limanda genus_Limanda,a genus of Pleuronectidae; righteye flounders having a humped nose and small scales; the underside is often brightly colored
+9750,Limax genus_Limax,a genus of Limacidae
+9751,Limburger,a soft white cheese with a very strong pungent odor and flavor
+9752,Limeira,a city of southeastern Brazil (northwest of Sao Paulo)
+9753,Limenitis genus_Limenitis,mainly dark northern butterflies with white wing bars
+9754,Limerick,port city in southwestern Ireland
+9755,Limicolae suborder_Limicolae,term used in some classifications for migratory shorebirds; coextensive with the Charadrii
+9756,Limnobium genus_Limnobium,American frogbit
+9757,Limnocryptes genus_Limnocryptes,snipe
+9758,Limnodromus genus_Limnodromus,dowitchers
+9759,Limonium genus_Limonium,sea lavender
+9760,Limosa genus_Limosa,godwits
+9761,Limousin,a region of central France to the west of the Auvergne mountains
+9762,Limpopo Crocodile_River,an African river; flows into the Indian Ocean
+9763,Limulidae family_Limulidae,horseshoe crabs
+9764,Limulus genus_Limulus,type genus of the family Limulidae
+9765,Lin Maya_Lin,United States sculptor and architect whose public works include the memorial to veterans of the Vietnam War in Washington (born in 1959)
+9766,Linaceae family_Linaceae flax_family,a widely distributed family of plants
+9767,Linanthus genus_Linanthus,a genus of herbs of the family Polemoniaceae; found in western United States
+9768,Linaria genus_Linaria,genus of herbs and subshrubs having showy flowers: spurred snapdragon
+9769,Lincoln,long-wooled mutton sheep originally from Lincolnshire
+9770,Lincoln Abraham_Lincoln President_Lincoln President_Abraham_Lincoln,16th President of the United States; saved the Union during the American Civil War and emancipated the slaves; was assassinated by Booth (1809-1865)
+9771,Lincoln capital_of_Nebraska,capital of the state of Nebraska; located in southeastern Nebraska; site of the University of Nebraska
+9772,Lincoln's_Birthday February_12,the day on which President Abraham Lincoln is remembered
+9773,Lincoln_Memorial,memorial building in Washington containing a large marble statue of Abraham Lincoln
+9774,Lincolnshire,an agricultural county of eastern England on the North Sea
+9775,Lind Jenny_Lind Swedish_Nightingale,Swedish soprano who toured the United States under the management of P. T. Barnum (1820-1887)
+9776,Lindbergh Charles_Lindbergh Charles_A._Lindbergh Charles_Augustus_Lindbergh Lucky_Lindy,United States aviator who in 1927 made the first solo nonstop flight across the Atlantic Ocean (1902-1974)
+9777,Lindera genus_Lindera,aromatic evergreen or deciduous dioecious shrubs or trees of eastern Asia and North America
+9778,Lindesnes Naze,a cape at the southern tip of Norway
+9779,Lindheimera genus_Lindheimera,one species: Texas star
+9780,Lindsay Howard_Lindsay,United States playwright who collaborated with Russel Crouse on several musicals (1889-1931)
+9781,Lindsay Vachel_Lindsay Nicholas_Vachel_Lindsay,United States poet who traveled the country trading his poems for room and board (1879-1931)
+9782,Line_of_Control,a 450-mile line that is supposed to indicate the boundary between the part of Kashmir controlled by India and the part controlled by Pakistan
+9783,Linear_A,an undeciphered writing system used in Crete in the 17th century B.C.
+9784,Linear_B,a syllabic script used in Greece in the 13th century B.C.
+9785,Ling-pao Mystic_Jewel,a member of the Taoist Trinity
+9786,Lingualumina,an artificial language
+9787,Lingvo_Kosmopolita,an artificial language
+9788,Link_trainer,an early form of flight simulator
+9789,Linnaea genus_Linnaea,one species: twinflower
+9790,Linnaeus Carolus_Linnaeus Carl_von_Linne Karl_Linne,Swedish botanist who proposed the modern system of biological nomenclature (1707-1778)
+9791,Linotype Linotype_machine,a typesetting machine operated from a keyboard that casts an entire line as a single slug of metal
+9792,Linum genus_Linum,a herbaceous plant genus of the family Linaceae with small sessile leaves
+9793,Linux,an open-source version of the UNIX operating system
+9794,Linz Lentia,city in northern Austria on the Danube; noted as a cultural center
+9795,Liomys genus_Liomys,pocket mice
+9796,Lions_Club International_Association_of_Lions_clubs,club dedicated to promoting responsible citizenship and good government and community and national and international welfare
+9797,Liopelma_hamiltoni,primitive New Zealand frog with four unwebbed toes on forefeet and five on hind feet
+9798,Liparididae family_Liparididae Liparidae family_Liparidae,snailfishes
+9799,Liparis genus_Liparis,type genus of the Liparididae: snailfishes
+9800,Lipchitz Jacques_Lipchitz,United States sculptor (born in Lithuania) who pioneered cubist sculpture (1891-1973)
+9801,Lipmann Fritz_Albert_Lipmann,United States biochemist (born in Germany) noted for his studies of metabolic processes (1899-1986)
+9802,Liposcelis genus_Liposcelis,a genus of Psocidae
+9803,Lipotyphla suborder_Lipotyphla,moles; hedgehogs; true shrews
+9804,Lippi Filippino_Lippi,Italian painter and son of Fra Filippo Lippi (1457-1504)
+9805,Lippi Fra_Filippo_Lippi,Italian painter whose works show a three-dimensional style (1406-1469)
+9806,Lippizan Lipizzan Lippizaner,a compact and sturdy saddle horse that is bred and trained in Vienna; smart and docile and excellent for dressage; "a Lippizan is black or brown when born but turns white by the time it is five years old"
+9807,Lippmann Gabriel_Lippmann,French physicist who developed the first color photographic process (1845-1921)
+9808,Lippmann Walter_Lippmann,United States journalist (1889-1974)
+9809,Lipscomb William_Nunn_Lipscom_Jr.,United States chemist noted for his theories of molecular structure (born in 1919)
+9810,Lir Ler,the sea personified; father of Manannan; corresponds to Welsh Llyr
+9811,Liriodendron genus_Liriodendron,tulip trees
+9812,Liriope genus_Liriope,sometimes placed in family Convallariaceae: lilyturf
+9813,Lisbon Lisboa capital_of_Portugal,capital and largest city and economic and cultural center of Portugal; a major port in western Portugal on Tagus River where it broadens and empties into the Atlantic
+9814,Lister Joseph_Lister Baron_Lister,English surgeon who was the first to use antiseptics (1827-1912)
+9815,Listera genus_Listera,genus of terrestrial orchids having usually a single pair of broad shining leaves near the middle of the stem; found in temperate Asia and North America and Europe
+9816,Listeria_monocytogenes L._monocytogenes,the type species of the genus Listeria; can cause meningitis, encephalitis, septicemia, endocarditis, abortion, abscesses, listeriosis
+9817,Liston Sonny_Liston Charles_Liston,United States prizefighter who lost his world heavyweight championship to Cassius Clay in 1964 (1932-1970)
+9818,Lisu,a Loloish language
+9819,Liszt Franz_Liszt,Hungarian composer and piano virtuoso (1811-1886)
+9820,Litany,a prayer consisting of a series of invocations by the priest with responses from the congregation
+9821,Lithocarpus genus_Lithocarpus,tanbark oaks
+9822,Lithodidae family_Lithodidae,deep-sea crabs of cold waters
+9823,Lithophragma genus_Lithophragma,small genus of perennial herbs of the western North America
+9824,Lithospermum genus_Lithospermum,annual or perennial herbaceous or shrubby plants; cosmopolitan except Australia
+9825,Lithuania Republic_of_Lithuania Lietuva,a republic in northeastern Europe on the Baltic Sea
+9826,Lithuanian,a native or inhabitant of Lithuania
+9827,Lithuanian,the official language of Lithuania; belongs to the Baltic branch of Indo-European
+9828,Lithuanian_monetary_unit,monetary unit in Lithuania
+9829,Litocranius genus_Litocranius,antelopes of eastern Africa: gerenuks
+9830,Little_Bear Ursa_Minor,a constellation outside the zodiac that rotates around the North Star
+9831,Little_Bighorn Battle_of_Little_Bighorn Battle_of_the_Little_Bighorn Custer's_Last_Stand,a battle in Montana near the Little Bighorn River between United States cavalry under Custer and several groups of Native Americans (1876); Custer was pursuing Sioux led by Sitting Bull; Custer underestimated the size of the Sioux forces (which were supported by Cheyenne warriors) and was killed along with all his command
+9832,Little_Bighorn Little_Bighorn_River Little_Horn,a river that flows from northern Wyoming into the Bighorn River in southern Montana; site of Custer's Last Stand
+9833,Little_Dipper Dipper,a cluster of seven stars in Ursa Minor; at the end of the dipper's handle is Polaris
+9834,Little_John,legendary follower of Robin Hood; noted for his size and strength
+9835,Little_Missouri Little_Missouri_River,a river that rises in northeastern Wyoming and flows through Montana and South Dakota to join the Missouri River in North Dakota
+9836,Little_Office,a Roman Catholic office honoring the Virgin Mary; similar to but shorter than the Divine Office
+9837,Little_Red_Riding_Hood,a girl in a fairy tale who meets a wolf while going to visit her grandmother
+9838,Little_Rock capital_of_Arkansas,the state capital and largest city of Arkansas in the central part of Arkansas on the Arkansas River
+9839,Little_Sioux_River,a river that rises in southwestern Minnesota and flows southwestward to the Missouri River in western Iowa
+9840,Little_Wabash Little_Wabash_River,a river in eastern Illinois that flows southeastward to the Wabash River
+9841,Littorina genus_Littorina,type genus of the family Littorinidae: periwinkles
+9842,Littorinidae family_Littorinidae,periwinkles
+9843,Littre Maximilien_Paul_Emile_Littre,French lexicographer (1801-1881)
+9844,Livermore Mary_Ashton_Rice_Livermore,United States suffragist (1820-1905)
+9845,Liverpool,a large city in northwestern England; its port is the country's major outlet for industrial exports
+9846,Liverpudlian Scouser,a native or resident of Liverpool
+9847,Livingston Robert_R._Livingston,American Revolutionary leader who served in the Continental Congress and as minister to France (1746-1813)
+9848,Livingstone David_Livingstone,Scottish missionary and explorer who discovered the Zambezi River and Victoria Falls (1813-1873)
+9849,Livistona genus_Livistona,fan palms of Asia and Australia and Malaysia
+9850,Livonia,a region on the Baltic that is divided between northern Estonia and southern Latvia
+9851,Livonian,a member of the Livonian-speaking people of Latvia
+9852,Livonian,the Finnic language spoken by the people of Livonia in Estonia and Latvia
+9853,Livy Titus_Livius,Roman historian whose history of Rome filled 142 volumes (of which only 35 survive) including the earliest history of the war with Hannibal (59 BC to AD 17)
+9854,Ljubljana,the capital of Slovenia
+9855,Llano_Estacado,a large semiarid plateau forming the southern part of the Great Plains
+9856,Llew_Llaw_Gyffes,son of Gwydion and Arianrhod; supported by magic of Gwydion; cursed by Arianrhod
+9857,Lloyd Harold_Lloyd Harold_Clayton_Lloyd,United States comic actor in silent films; he used physical danger as a source of comedy (1893-1971)
+9858,Lloyd_Webber Andrew_Lloyd_Webber Baron_Lloyd_Webber_of_Sydmonton,English composer of many successful musicals (some in collaboration with Sir Tim Rice) (born in 1948)
+9859,Llullaillaco,a mountain in the Andes on the border between Argentina and Chile (22,057 feet high)
+9860,Llyr,Celtic deity who was the father of Manawydan; corresponds to Irish Lir
+9861,Lo/Ovral,trade name for an oral contraceptive containing estradiol and norgestrel
+9862,Loafer,a low leather step-in shoe; the top resembles a moccasin but it has a broad flat heel
+9863,Loasaceae family_Loasaceae loasa_family,family of bristly hairy sometimes climbing plants; America and Africa and southern Arabia
+9864,Lobachevsky Nikolai_Ivanovich_Lobachevsky,Russian mathematician who independently discovered non-Euclidean geometry (1792-1856)
+9865,Lobata order_Lobata,ctenophore having tentacles only in the immature stage; body compressed vertically having two large oral lobes and four pointed processes
+9866,Lobeliaceae family_Lobeliaceae lobelia_family,not recognized in all classification systems; in some classifications lobeliaceous plants are included in family Campanulaceae
+9867,Lobipes genus_Lobipes,a genus of Phalaropidae
+9868,Lobito,a seaport on the Atlantic coast of Angola
+9869,Lobotes genus_Lobotes,type genus of the Lobotidae
+9870,Lobotidae family_Lobotidae,tripletails
+9871,Lobularia genus_Lobularia,sweet alyssum
+9872,Loch_Achray,a lake in central Scotland
+9873,Loch_Linnhe,an inlet of the Atlantic Ocean on the western coast of Scotland
+9874,Loch_Ness,a lake in the Scottish highlands; the largest body of fresh water in Great Britain
+9875,Loch_Ness_monster Nessie,a large aquatic animal supposed to resemble a serpent or plesiosaur of Loch Ness in Scotland
+9876,Lochaber_ax,a battle-ax formerly used by Scottish Highlanders
+9877,Locke John_Locke,English empiricist philosopher who believed that all knowledge is derived from sensory experience (1632-1704)
+9878,Locusta genus_Locusta,a genus of Acrididae
+9879,Lodge Sir_Oliver_Lodge Sir_Oliver_Joseph_Lodge,English physicist who studied electromagnetic radiation and was a pioneer of radiotelegraphy (1851-1940)
+9880,Lodz,a large city of central Poland
+9881,Loeb Jacques_Loeb,United States physiologist (born in Germany) who did research on parthenogenesis (1859-1924)
+9882,Loestrin,trade name for an oral contraceptive containing estradiol and norethindrone
+9883,Loewe Frederick_Loewe,United States composer (born in Austria) who collaborated with Lerner on several musicals (1901-1987)
+9884,Loewi Otto_Loewi,United States pharmacologist (born in Germany) who was the first to show that acetylcholine is produced at the junction between a parasympathetic nerve and a muscle (1873-1961)
+9885,Lofortyx genus_Lofortyx,California quail
+9886,Lofoten,a string of islands off the northwestern coast of Norway in the Norwegian Sea
+9887,Logan Mount_Logan,a mountain peak in the St. Elias Range in the southwestern Yukon Territory in Canada (19,850 feet high)
+9888,Logania genus_Logania,type genus of the Loganiaceae; Australian and New Zealand shrubs sometimes cultivated for their flowers
+9889,Loganiaceae family_Loganiaceae,a dicotyledonous family of plants of order Gentianales
+9890,Logrono,a city in northern Spain on the Ebro River
+9891,Loire Loire_River,the longest French river; rises in the Massif Central and flows north and west to the Atlantic Ocean
+9892,Loire_Valley,the valley of the Loire River where many French wines originated
+9893,Loiseleuria genus_Loiseleuria,one species: alpine azalea
+9894,Loki,(Norse mythology) trickster; god of discord and mischief; contrived death of Balder and was overcome by Thor
+9895,Lolita,a sexually precocious young girl
+9896,Lolium genus_Lolium,darnel; ryegrass
+9897,Lolo Yi,a Loloish language
+9898,Lolo-Burmese Burmese-Yi,the Tibeto-Burman language spoken in northern Burma and Yunnan
+9899,Loloish,languages spoken by hill tribes in northern Burma and neighboring areas
+9900,Lomariopsidaceae family_Lomariopsidaceae,small family of usually scandent ferns
+9901,Lombard Langobard,a member of a Germanic people who invaded northern Italy in the 6th century
+9902,Lombard_Street,a street in central London containing many of the major London banks
+9903,Lombardy Lombardia,a region of north central Italy bordering Switzerland
+9904,Lombardy_poplar Populus_nigra_italica,distinguished by its columnar fastigiate shape and erect branches
+9905,Lome capital_of_Togo,capital and largest city of Togo; located in the south on the Gulf of Guinea
+9906,Lomogramma genus_Lomogramma,large scandent ferns of southeastern Asia
+9907,Lomotil,trade name of an antidiarrheal
+9908,Lonas genus_Lonas,one species: yellow ageratum
+9909,Lonchocarpus genus_Lonchocarpus,genus of chiefly tropical American shrubs and trees having pinnate leaves and red or white flowers
+9910,London Greater_London British_capital capital_of_the_United_Kingdom,the capital and largest city of England; located on the Thames in southeastern England; financial and industrial and cultural center
+9911,London Jack_London John_Griffith_Chaney,United States writer of novels based on experiences in the Klondike gold rush (1876-1916)
+9912,London_plane Platanus_acerifolia,very large fast-growing tree much planted as a street tree
+9913,Londoner,a native or resident of London
+9914,Long_Beach,a city in southern California located on 8.5 miles of Pacific beachfront; was a resort until oil was discovered in 1921
+9915,Long_Island,an island in southeastern New York; Brooklyn and Queens are on its western end
+9916,Long_Island_Sound,a sound between Long Island and Connecticut
+9917,Longfellow Henry_Wadsworth_Longfellow,United States poet remembered for his long narrative poems (1807-1882)
+9918,Lonicera genus_Lonicera,woodbine
+9919,Loos Adolf_Loos,Austrian architect (1870-1933)
+9920,Lophiidae family_Lophiidae,large-headed marine fishes comprising the anglers
+9921,Lophius genus_Lophius,type genus of family Lophiidae
+9922,Lophodytes genus_Lophodytes,a genus of Merginae
+9923,Lopholatilus genus_Lopholatilus,large brightly colored food fish of deep Atlantic waters
+9924,Lophophora genus_Lophophora,two species of small cacti of northeastern Mexico and southwestern United States having rounded stems covered with jointed tubercles: mescal
+9925,Lophophorus genus_Lophophorus,monals
+9926,Lophosoria genus_Lophosoria,one species: tree fern of Central and South America
+9927,Lophosoriaceae family_Lophosoriaceae,very small family of tree ferns
+9928,Loranthaceae family_Loranthaceae mistletoe_family,in some classification includes Viscaceae: parasitic or hemiparasitic shrublets or shrubs or small trees of tropical and temperate regions; attach to hosts by haustoria
+9929,Loranthus genus_Loranthus,type genus of the Loranthaceae: 1 species
+9930,Lord noble nobleman,a titled peer of the realm
+9931,Lord's_Prayer,the prayer that Christ gave his disciples in the Sermon on the Mount (Matthew 6:9-13)
+9932,Lord's_Resistance_Army,a quasi-religious rebel group in Uganda that terrorized and raped women and kidnapped children who were forced to serve in the army
+9933,Lord_Chancellor Lord_High_Chancellor,the highest officer of the Crown who is head of the judiciary and who presides in the House of Lords
+9934,Lord_Privy_Seal,the senior cabinet minister in the British Cabinet who has no official duties
+9935,Lord_of_Misrule,a person appointed master of revels at a Christmas celebration
+9936,Lordship,a title used to address any British peer except a duke and extended to a bishop or a judge; "Your Lordship"; "His Lordship"
+9937,Lorelei,a Siren of German legend who lured boatmen in the Rhine to destruction
+9938,Loren Sophia_Loren Sofia_Scicolone,Italian film actress (born in 1934)
+9939,Lorentz Hendrik_Antoon_Lorentz,Dutch physicist noted for work on electromagnetic theory (1853-1928)
+9940,Lorentz_force,the force experienced by a point charge moving along a wire that is in a magnetic field; the force is at right angles to both the current and the magnetic field; "the Lorentz force can be used to suspend a current-carrying object between two magnets"
+9941,Lorenz Konrad_Lorenz Konrad_Zacharias_Lorenz,Austrian zoologist who studied the behavior of birds and emphasized the importance of innate as opposed to learned behaviors (1903-1989)
+9942,Lorenzo_de'Medici Lorenzo_the_Magnificent,Italian statesman and scholar who supported many artists and humanists including Michelangelo and Leonardo and Botticelli (1449-1492)
+9943,Lorenzo_dressing,vinaigrette with chili sauce and chopped watercress
+9944,Loricata order_Loricata,former name for the order Crocodylia
+9945,Loriinae subfamily_Loriinae,lories
+9946,Lorisidae family_Lorisidae,slow-moving omnivorous nocturnal primates of tropical Asia; usually tailless
+9947,Lorraine Lothringen,an eastern French region rich in iron-ore deposits
+9948,Lorraine_cross cross_of_Lorraine,a cross with two crossbars, one above and one below the midpoint of the vertical, the lower longer than the upper
+9949,Lorre Peter_Lorre Laszlo_Lowestein,United States actor (born in Hungary) noted for playing sinister roles (1904-1964)
+9950,Los_Alamos,a town in north central New Mexico; in 1942 it was chosen as a nuclear research site where the first atomic bombs were produced
+9951,Los_Angeles City_of_the_Angels L.A.,a city in southern California; motion picture capital of the world; most populous city of California and second largest in the United States
+9952,Lost_Tribes,the ten Tribes of Israel that were deported into captivity in Assyria around 720 BC (leaving only the tribes of Judah and Benjamin)
+9953,Lot,(Old Testament) nephew of Abraham; God destroyed Sodom and Gomorrah but chose to spare Lot and his family who were told to flee without looking back at the destruction
+9954,Lot's_wife,(Old Testament) when God destroyed Sodom and Gomorrah, Lot and his family were told to flee without looking back; Lot's wife was disobedient and was immediately changed into a pillar of salt
+9955,Lota genus_Lota,burbot
+9956,Lothario,a successful womanizer; a man who behaves selfishly in his sexual relationships with women
+9957,Lothian_Region,a district in southeast central Scotland (south side of the Firth of Forth) and the location of Edinburgh
+9958,Lotus genus_Lotus,annual or perennial herbs or subshrubs
+9959,Louis Joe_Louis Joseph_Louis_Barrow,United States prizefighter who was world heavyweight champion for 12 years (1914-1981)
+9960,Louis_I Louis_the_Pious,third son of Charlemagne and king of France and Germany and Holy Roman Emperor (778-840)
+9961,Louis_II Louis_le_Begue Louis_the_Stammerer Louis_the_German,king of France and Germany (846-879)
+9962,Louis_III,son of Louis II and king of the France and Germany (863-882)
+9963,Louis_IV Louis_d'Outremer,king of France (921-954)
+9964,Louis_IX Saint_Louis St._Louis,king of France and son of Louis VIII; he led two unsuccessful Crusades; considered an ideal medieval king (1214-1270)
+9965,Louis_V Louis_le_Faineant,the last Carolingian king of France (967-987)
+9966,Louis_VI Louis_the_Far Louis_the_Wideawake Louis_the_Bruiser,king of France whose military victories consolidated his reign (1081-1137)
+9967,Louis_VII,king of France who led the unsuccessful Second Crusade and fought frequent wars with Henry II of England (1120-1180)
+9968,Louis_VIII,king of France who increased the power of the Crown over the feudal lords (1187-1226)
+9969,Louis_X Louis_le_Hutin Louis_the_Quarreller,king of France (1289-1316)
+9970,Louis_XI,king of France who put down an alliance of unruly nobles and unified France except for Brittany (1423-1483)
+9971,Louis_XII,king of France who was popular with his subjects (1462-1515)
+9972,Louis_XIII,king of France from 1610 to 1643 who relied heavily on the advice of Cardinal Richelieu (1601-1643)
+9973,Louis_XIV Sun_King Louis_the_Great,king of France from 1643 to 1715; his long reign was marked by the expansion of French influence in Europe and by the magnificence of his court and the Palace of Versailles (1638-1715)
+9974,Louis_XV,grandson of Louis XIV and king of France from 1715 to 1774 who led France into the War of the Austrian Succession and the Seven Years' War (1710-1774)
+9975,Louis_XVI,king of France from 1774 to 1792; his failure to grant reforms led to the French Revolution; he and his queen (Marie Antoinette) were guillotined (1754-1793)
+9976,Louisiana Pelican_State LA La.,a state in southern United States on the Gulf of Mexico; one of the Confederate states during the American Civil War
+9977,Louisiana_Purchase,territory in the western United States purchased from France in 1803 for $15 million; extends from the Mississippi River to the Rocky Mountains and from the Gulf of Mexico to Canada
+9978,Louisianan Louisianian,a native or resident of Louisiana
+9979,Louisville,the largest city in Kentucky; located in north central Kentucky on the Ohio river; site of the Kentucky Derby
+9980,Louvre Louvre_Museum,an art museum that is a famous tourist attraction in Paris
+9981,Lovelace Richard_Lovelace,English poet (1618-1857)
+9982,Lovell Sir_Bernard_Lovell Sir_Alfred_Charles_Bernard_Lovell,English astronomer who pioneered radio astronomy (born in 1913)
+9983,Lovoa genus_Lovoa,genus of African timber trees
+9984,Low David_Low Sir_David_Low Sir_David_Alexander_Cecil_Low,British political cartoonist (born in New Zealand) who created the character Colonel Blimp (1891-1963)
+9985,Low_Countries,the lowland region of western Europe on the North Sea: Belgium and Luxembourg and the Netherlands
+9986,Low_German Plattdeutsch,a German dialect spoken in northern Germany
+9987,Low_Latin,any dialect of Latin other than classical Latin
+9988,Low_Mass,a Mass recited without music
+9989,Low_Sunday,the Sunday following Easter
+9990,Lowell Abbott_Lawrence_Lowell,United States educator and president of Harvard University (1856-1943)
+9991,Lowell Amy_Lowell,United States poet (1874-1925)
+9992,Lowell Percival_Lowell,United States astronomer whose studies of Mars led him to conclude that Mars was inhabited (1855-1916)
+9993,Lowell Robert_Lowell Robert_Traill_Spence_Lowell_Jr.,United States poet (1917-1977)
+9994,Lower_California Baja_California,a mountainous peninsula on northwest Mexico
+9995,Lower_Egypt,one of the two main administrative districts of Egypt; consists of the Nile delta
+9996,Lower_Paleolithic,the oldest part of the Paleolithic Age with the emergence of the hand ax; ended about 120,000 years ago
+9997,Lower_Peninsula,the part of Michigan between Lake Michigan and Lake Huron
+9998,Lower_Saxony,a state in northwestern Germany
+9999,Lowlander Scottish_Lowlander Lowland_Scot,a native of the Lowlands of Scotland
+10000,Lowlands Lowlands_of_Scotland,the southern part of Scotland that is not mountainous
+10001,Lowry L._S._Lowry Laurence_Stephen_Lowry,English painter (1887-1976)
+10002,Lowry Malcolm_Lowry Clarence_Malcolm_Lowry,English novelist (1909-1957)
+10003,Loxia genus_Loxia,crossbill
+10004,Loxodonta genus_Loxodonta,a genus of Elephantidae
+10005,Loxoma genus_Loxoma,one species of terrestrial ferns of New Zealand
+10006,Loxomataceae family_Loxomataceae,very small family of New Zealand ferns
+10007,Loxostege genus_Loxostege,garden webworms
+10008,Loxostege_similalis,moth whose larvae are garden webworms
+10009,Loya_Jirga,a grand council or grand assembly used to resolve political conflicts or other national problems; "he convened a Loya Jirga that persuaded tribal leaders to acquiesce"
+10010,Loyalist_Volunteer_Force,a terrorist group formed in 1996 in Northern Ireland; seeks to prevent the peace process; murders Catholics and any Protestant leaders who favor peace
+10011,Lozier Clemence_Sophia_Harned_Lozier,United States physician who in 1863 founded a medical school for women (1813-1888)
+10012,LuGanda,the Bantu language of the Buganda people; spoken in Uganda
+10013,Luanda Angolan_capital,port city on Atlantic coast; the capital and largest city of Angola
+10014,Luba Chiluba,a member of a Bantu people in southeastern Congo
+10015,Luba Tshiluba,a Bantu language spoken in southeastern Congo
+10016,Lubavitch,a town in Belarus that was the center of the Chabad movement for a brief period during the 19th century
+10017,Lubavitch Lubavitch_movement Chabad-Lubavitch Chabad,a large missionary Hasidic movement known for their hospitality, technological expertise, optimism and emphasis on religious study
+10018,Lubavitcher,a member of the Lubavitch movement; a follower of Chabad Hasidism
+10019,Lubbock,a city in northwest Texas to the south of Amarillo
+10020,Lubeck,a city in northwestern Germany and an important Baltic port; a leading member of the Hanseatic League
+10021,Lubitsch Ernst_Lubitsch,German filmmaker of sophisticated comedies (1892-1947)
+10022,Lublin,an industrial city of eastern Poland
+10023,Lubumbashi Elisabethville,a city in southeastern Congo near the border with Zambia; a copper mining center; former name (until 1966) was Elisabethville
+10024,Lucanidae family_Lucanidae,stag beetles
+10025,Lucas George_Lucas,United States screenwriter and filmmaker (born in 1944)
+10026,Luce Clare_Booth_Luce,United States playwright and public official (1902-1987)
+10027,Luce Henry_Luce Henry_Robinson_Luce,United States publisher of magazines (1898-1967)
+10028,Lucilia genus_Lucilia,greenbottle flies
+10029,Lucite Perspex,a transparent thermoplastic acrylic resin
+10030,Lucknow,a city in northern India in Uttar Pradesh; during the Indian Mutiny its British residents were besieged by Indian insurgents
+10031,Lucknow,the British residents of Lucknow were besieged by Indian insurgents during the Indian Mutiny (1857)
+10032,Lucretius Titus_Lucretius_Carus,Roman philosopher and poet; in a long didactic poem he tried to provide a scientific explanation of the universe (96-55 BC)
+10033,Lucullus Licinius_Lucullus Lucius_Licinius_Lucullus,Roman general famous for self-indulgence and giving lavish banquets (circa 110-57 BC)
+10034,Luculus Lucius_Licinius_Luculus,Roman general famous for giving lavish banquets (110-57 BC)
+10035,Lucy,incomplete skeleton of female found in eastern Ethiopia in 1974
+10036,Luda Luta,an industrial conurbation in northeastern China on the southern end of the Liaodong Peninsula; it now includes the cities of Dalian and Lushun
+10037,Luddite,any opponent of technological progress
+10038,Luddite,one of the 19th century English workmen who destroyed laborsaving machinery that they thought would cause unemployment
+10039,Ludi_Saeculares secular_games,the centennial rites and games of ancient Rome that marked the commencement of a new generation (100 years representing the longest life in a generation); observances may have begun as early as the 5th century BC and lasted well into the Christian era
+10040,Ludian,a Baltic-Finnic language
+10041,Lufengpithecus genus_Lufengpithecus,a genus of Hominidae
+10042,Lufkin,a town in eastern Texas
+10043,Luftwaffe German_Luftwaffe,the German airforce
+10044,Lug Lugh,ancient Celtic god
+10045,Luger,a German semiautomatic pistol
+10046,Lugosi Bela_Lugosi Bela_Ferenc_Blasko,United States film actor (born in Hungary) noted for portraying monsters (1884-1956)
+10047,Luke Gospel_of_Luke Gospel_According_to_Luke,one of the four Gospels in the New Testament; contains details of Jesus's birth and early life
+10048,Luke Saint_Luke St._Luke,(New Testament) the Apostle closely associated with St. Paul and traditionally assumed to be the author of the third Gospel
+10049,Lule_Burgas battle_of_Lule_Burgas,the principal battle of the Balkan Wars (1912); Bulgarian forces defeated the Turks
+10050,Lully Jean_Baptiste_Lully Lulli Giambattista_Lulli,French composer (born in Italy) who was the court composer to Louis XIV and founded the national French opera (1632-1687)
+10051,Lully Raymond_Lully Ramon_Lully,Spanish philosopher (1235-1315)
+10052,Lumpenus genus_Lumpenus,a genus of Stichaeidae
+10053,Luna,(Roman mythology) the goddess of the Moon; counterpart of Greek Selene
+10054,Lunaria genus_Lunaria,small genus of European herbs: honesty
+10055,Lund,a city in southern Sweden
+10056,Lunda genus_Lunda,puffins
+10057,Lunt Alfred_Lunt,United States actor who performed with his wife Lynn Fontanne in many stage productions (1893-1977)
+10058,Luo,a Nilotic language
+10059,Luoyang Loyang,a city in east central China; the capital of ancient China during several dynasties
+10060,Lupinus genus_Lupinus,herbs or shrubs: lupin
+10061,Lupus,a constellation in the southern hemisphere near Centaurus
+10062,Lusaka capital_of_Zambia,the capital and largest city of Zambia
+10063,Luscinia genus_Luscinia,nightingales
+10064,Lushun Port_Arthur,a major port city in northeastern China on the Liaodong Peninsula; now a part of Luda
+10065,Lusitania,ancient region and Roman province on the Iberian Peninsula; corresponds roughly to modern Portugal and parts of Spain
+10066,Luther Martin_Luther,German theologian who led the Reformation; believed that salvation is granted on the basis of faith rather than deeds (1483-1546)
+10067,Lutheran,follower of Lutheranism
+10068,Lutheran_Church,the Protestant denomination adhering to the views of Martin Luther
+10069,Lutheranism,teachings of Martin Luther emphasizing the cardinal doctrine of justification by faith alone
+10070,Lutjanidae family_Lutjanidae,snappers
+10071,Lutjanus genus_Lutjanus,type genus of the Lutjanidae: snappers
+10072,Lutra genus_Lutra,in some classifications considered a genus of the subfamily Lutrinae
+10073,Lutrinae subfamily_Lutrinae,subdivision not used in some classifications: otters
+10074,Lutyens Sir_Edwin_Lutyens Sir_Edwin_Landseer_Luytens,English architect who planned the city of New Delhi (1869-1944)
+10075,Lutzen battle_of_Lutzen,a battle in the Thirty Years' War (1632); Swedes under Gustavus Adolphus defeated the Holy Roman Empire under Wallenstein; Gustavus Adolphus was killed
+10076,Luvaridae family_Luvaridae,louvars
+10077,Luvarus genus_Luvarus,type genus of the Luvaridae
+10078,Luwian Luvian,an Anatolian language
+10079,Luxembourg Grand_Duchy_of_Luxembourg Luxemburg,a grand duchy (a constitutional monarchy) landlocked in northwestern Europe between France and Belgium and Germany; an international financial center
+10080,Luxembourg-Ville Luxembourg Luxemburg Luxembourg_City capital_of_Luxembourg,the capital and largest city of Luxembourg
+10081,Luxembourg_franc,formerly the basic unit of money in Luxembourg
+10082,Luxemburger Luxembourger,a native or inhabitant of Luxembourg
+10083,Luxor El-Aksur,a city in central Egypt on the east bank of the Nile that is a center for visitors to the ruins of and around Thebes
+10084,Luyia,a Bantu language
+10085,Luzon,the main island of the Philippines
+10086,Lycaena genus_Lycaena,type genus of the Lycaenidae; small slender butterflies with upper surface of wings usually metallic blue or green or copper
+10087,Lycaenidae family_Lycaenidae,family of small usually brilliantly colored butterflies; males have short forelegs
+10088,Lycaeon genus_Lycaeon,African hunting dog
+10089,Lycia,an ancient region on the coast of southwest Asia Minor
+10090,Lycian,an Anatolian language
+10091,Lycium genus_Lycium,deciduous and evergreen shrubs often spiny; cosmopolitan in temperate and subtropical regions
+10092,Lycoperdaceae family_Lycoperdaceae,a fungus family belonging to the order Lycoperdales; includes puffballs
+10093,Lycoperdales order_Lycoperdales,small order of basidiomycetous fungi having fleshy often globose fruiting bodies; includes puffballs and earthstars
+10094,Lycoperdon genus_Lycoperdon,genus of fungi whose fruiting body tapers toward a base consisting of spongy mycelium
+10095,Lycopersicon genus_Lycopersicon Lycopersicum genus_Lycopersicum,tomatoes
+10096,Lycophyta,used in some classifications for the class Lycopsida: club mosses
+10097,Lycopodiaceae family_Lycopodiaceae clubmoss_family,a family of ferns belonging to the order Lycopodiales
+10098,Lycopodiales order_Lycopodiales,lower vascular plants coextensive with the family Lycopodiaceae; in some classifications includes the Selaginellaceae and Isoetaceae
+10099,Lycopodineae class_Lycopodineae,alternative designation for the class Lycopsida
+10100,Lycopodium genus_Lycopodium,type and sole genus of the Lycopodiaceae; erect or creeping evergreen plants often used for Christmas decorations
+10101,Lycopsida class_Lycopsida Lycopodiate class_Lycopodiate,club mosses and related forms: includes Lycopodiales; Isoetales; Selaginellales; and extinct Lepidodendrales; sometimes considered a subdivision of Tracheophyta
+10102,Lycopus genus_Lycopus,small genus of herbs of the mint family
+10103,Lycosa genus_Lycosa,type genus of the family Lycosidae
+10104,Lycosidae family_Lycosidae,wolf spiders
+10105,Lydia,an ancient region on the coast of western Asia Minor; a powerful kingdom until conquered by the Persians in 546 BC
+10106,Lydian,an Anatolian language
+10107,Lygaeidae family_Lygaeidae,lygaeid bugs
+10108,Lyginopteris genus_Lyginopteris,genus of fossil seed ferns of the Carboniferous
+10109,Lygodium genus_Lygodium,chiefly tropical climbing ferns
+10110,Lygus genus_Lygus,plant-sucking bugs
+10111,Lyly John_Lyly,English writer noted for his elaborate style (1554-1606)
+10112,Lymantria genus_Lymantria,type genus of the Lymantriidae; a pest (Lymantria means `destroyer')
+10113,Lymantriidae family_Lymantriidae,tussock moths
+10114,Lyme_disease Lyme_arthritis,an acute inflammatory disease characterized by a rash with joint swelling and fever; caused by bacteria carried by the bite of a deer tick
+10115,Lynchburg,a city in central Virginia
+10116,Lyon Lyons,a city in east-central France on the Rhone River; a principal producer of silk and rayon
+10117,Lyonia genus_Lyonia,evergreen or deciduous shrubs or small trees of United States to Antilles and eastern Asia to the Himalaya
+10118,Lyonnais,a former province of east central France; now administered by Rhone-Alpes
+10119,Lyonnaise_sauce brown_onion_sauce,brown sauce with sauteed chopped onions and parsley and dry white wine or vinegar
+10120,Lyons First_Council_of_Lyons,the council of the Western Church in 1245 that excommunicated Holy Roman Emperor Frederick II and planned a new crusade against the Holy Land
+10121,Lyons Second_Council_of_Lyons,the council in 1274 that effected a temporary reunion of the Greek Orthodox with the Roman Catholic Church
+10122,Lyra,a small constellation in the northern hemisphere near Cygnus and Draco; contains the star Vega
+10123,Lyrurus genus_Lyrurus,black grouse
+10124,Lysander,Spartan general who defeated the Athenians in the final battle of the Peloponnesian War (died in 395 BC)
+10125,Lysenko Trofim_Denisovich_Lysenko,Soviet geneticist whose adherence to Lamarck's theory of evolution was favored by Stalin (1898-1976)
+10126,Lysichiton genus_Lysichiton Lysichitum genus_Lysichitum,skunk cabbage
+10127,Lysiloma genus_Lysiloma,small genus of tropical American trees and shrubs with pinnate leaves and flat straight pods
+10128,Lysimachia genus_Lysimachia,loosestrife: a cosmopolitan genus found in damp or swampy terrain having usually yellow flowers; inclined to be invasive
+10129,Lysimachus,Macedonian general under Alexander the Great; with Seleucus he defeated Antigonus and Demetrius at the battle of Ipsus (circa 355-281 BC)
+10130,Lysippus,Greek sculptor (4th century BC)
+10131,Lysol,a clear oily brown solution of cresols in soap; used as an antiseptic and disinfectant
+10132,Lythraceae family_Lythraceae loosestrife_family,herbs and shrubs and small trees with pink or purple flowers
+10133,Lythrum genus_Lythrum,loosestrife
+10134,Lytton First_Baron_Lytton Bulwer-Lytton Edward_George_Earle_Bulwer-Lytton,English writer of historical romances (1803-1873)
+10135,M m,the 13th letter of the Roman alphabet
+10136,M-theory,(particle physics) a theory that involves an eleven-dimensional universe in which the weak and strong forces and gravity are unified and to which all the string theories belong
+10137,M1,a measure of the money supply; includes currency in circulation plus demand deposits or checking account balances
+10138,M2,a measure of the money supply; M1 plus net time deposits (other than large certificates of deposit)
+10139,M3,a measure of the money supply; M2 plus deposits at institutions that are not banks (such as savings and loan associations)
+10140,MANPAD,a man-portable surface-to-air missile
+10141,MEDLINE,the computer-based telephone system of the United States National Library of Medicine that provides rapid linkage to MEDLARS
+10142,MIPS million_instructions_per_second,(computer science) a unit for measuring the execution speed of a computer's CPU (but not the whole system); "4 MIPS is 4,000,000 instructions per second"
+10143,MOT MOT_test Ministry_of_Transportation_test,a compulsory annual test of older motor vehicles for safety and exhaust fumes
+10144,MPEG,a set of standards adopted by the moving pictures experts group for the compression of digital video and audio data or a file of data compressed according to those standards
+10145,MS-DOS Microsoft_disk_operating_system,an operating system developed by Bill Gates for personal computers
+10146,Maalox,an antacid
+10147,MacArthur Douglas_MacArthur,United States general who served as chief of staff and commanded Allied forces in the South Pacific during World War II; he accepted the surrender of Japan (1880-1964)
+10148,MacDowell Edward_MacDowell,United States composer best remembered as a composer of works for the piano (1860-1908)
+10149,MacGregor Robert_MacGregor Rob_Roy,Scottish clan leader and outlaw who was the subject of a 1817 novel by Sir Walter Scott (1671-1734)
+10150,MacLeish Archibald_MacLeish,United States poet (1892-1982)
+10151,Macaca genus_Macaca,macaques; rhesus monkeys
+10152,Macadamia_integrifolia,medium-sized tree of eastern Australia having creamy-white flowers
+10153,Macao Macau,a former Portuguese province on the south coast of China and two islands in the South China Sea; reverted to China in 1999
+10154,Macao_monetary_unit,monetary unit in Macao
+10155,Macaulay Thomas_Babington_Macaulay First_Baron_Macaulay Lord_Macaulay,English historian noted for his history of England (1800-1859)
+10156,Macbeth,king of Scotland (died in 1057)
+10157,Mace Chemical_Mace,(trademark) a liquid that temporarily disables a person; prepared as an aerosol and sprayed in the face, it irritates the eyes and causes dizziness and immobilization
+10158,Macedon Macedonia Makedonija,the ancient kingdom of Philip II and Alexander the Great in the southeastern Balkans that is now divided among modern Macedonia and Greece and Bulgaria
+10159,Macedonia,landlocked republic on the Balkan Peninsula; achieved independence from Yugoslavia in 1991
+10160,Macedonian,a native or inhabitant of Macedon
+10161,Macedonian,the Slavic language of modern Macedonia
+10162,Macedonian_War,one the four wars between Macedonia and Rome in the 3rd and 2nd centuries BC, which ended in the defeat of Macedonia and its annexation as a Roman province
+10163,Mach Ernst_Mach,Austrian physicist and philosopher who introduced the Mach number and who founded logical positivism (1838-1916)
+10164,Mach_number,the ratio of the speed of a moving body to the speed of sound
+10165,Machaeranthera genus_Machaeranthera,wildflowers of western North America
+10166,Machiavelli Niccolo_Machiavelli,a statesman of Florence who advocated a strong central government (1469-1527)
+10167,Machiavellian,a follower of Machiavelli's principles
+10168,Machiavellianism,the political doctrine of Machiavelli: any means (however unscrupulous) can be used by a ruler in order to create and maintain his autocratic government
+10169,Machilidae family_Machilidae,jumping bristletails
+10170,Machu_Picchu,Inca fortress city in the Andes in Peru discovered in 1911; it may have been built in the 15th century
+10171,Machupo_virus,the RNA virus that causes Bolivian hemorrhagic fever; carried by rats and mice
+10172,Mackem,a native of Sunderland
+10173,Mackenzie Mackenzie_River,a Canadian river; flows into the Beaufort Sea
+10174,Mackenzie Sir_Alexander_Mackenzie,Canadian explorer (born in England) who explored the Mackenzie River and who was first to cross North America by land north of Mexico (1764-1820)
+10175,Mackinac_Bridge,a suspension bridge across the channel between the lower and upper peninsulas of Michigan
+10176,Macleaya genus_Macleaya,a perennial herb of eastern Asia: plume poppy
+10177,Macleod John_Macleod John_James_Rickard_Macleod,Scottish physiologist who directed the research by F. G. Banting and C. H. Best that led to the discovery of insulin (1876-1935)
+10178,Maclura genus_Maclura,yellowwood trees or shrubs
+10179,Macon,a city in central Georgia to the southeast of Atlanta
+10180,Macoun,similar to McIntosh; juicy and late-ripening
+10181,Macowanites genus_Macowanites,a stout-stemmed genus of fungus belonging to the family Secotiaceae having fruiting bodies that never expand completely
+10182,Macowanites_americanus,a small fungus with a fragile cap that cracks to expose the white context and a white stalk that is practically enclosed by the cap
+10183,Macrocephalon genus_Macrocephalon,maleos
+10184,Macrocheira genus_Macrocheira,giant crabs of Japan
+10185,Macroclemys genus_Macroclemys,includes the alligator snapping turtle
+10186,Macrodactylus genus_Macrodactylus,a genus of Melolonthidae
+10187,Macronectes genus_Macronectes,giant petrels
+10188,Macropodidae family_Macropodidae,kangaroos; wallabies
+10189,Macropus genus_Macropus,type genus of the family Macropodidae: typical kangaroos and wallabies
+10190,Macrorhamphosidae family_Macrorhamphosidae,bellows fishes
+10191,Macrothelypteris genus_Macrothelypteris,medium to large terrestrial ferns of tropical Asia to Polynesia and Australia; naturalized in Americas
+10192,Macrotis genus_Macrotis,a genus of Peramelidae
+10193,Macrotyloma genus_Macrotyloma,annual or perennial vines of Africa and India and Australia; plants often placed in genus Dolichos
+10194,Macrouridae family_Macrouridae Macruridae family_Macruridae,grenadiers
+10195,Macrozoarces genus_Macrozoarces,a genus of Zoarcidae
+10196,Madagascan,a native or inhabitant of Madagascar
+10197,Madagascar,an island in the Indian Ocean off the southeastern coast of Africa; the 4th largest island in the world
+10198,Madagascar Republic_of_Madagascar Malagasy_Republic,a republic on the island of Madagascar; achieved independence from France in 1960
+10199,Madagascar_cat ring-tailed_lemur Lemur_catta,small lemur having its tail barred with black
+10200,Madagascar_franc,the basic unit of money in Madagascar
+10201,Madagascar_jasmine waxflower Stephanotis_floribunda,twining woody vine of Madagascar having thick dark waxy evergreen leaves and clusters of large fragrant waxy white flowers along the stems; widely cultivated in warm regions
+10202,Madeira,an island in the Atlantic Ocean off the coast of Africa; the largest of the Madeira Islands
+10203,Madeira,an amber dessert wine from the Madeira Islands
+10204,Madeira Madeira_River,a Brazilian river; tributary of the Amazon River
+10205,Madeira_Islands Madeiras,a group of volcanic islands in the Atlantic Ocean to the west of Morocco; the group forms an autonomous region of Portugal
+10206,Madeira_cake Madeira_sponge,a rich sponge cake with close texture; intended to be eaten with a glass of Madeira wine
+10207,Madia genus_Madia,genus of sticky herbs with yellow flowers open in morning or evening but closed in bright light
+10208,Madison James_Madison President_Madison,4th President of the United States; member of the Continental Congress and rapporteur at the Constitutional Convention in 1776; helped frame the Bill of Rights (1751-1836)
+10209,Madison capital_of_Wisconsin,capital of the state of Wisconsin; located in the southern part of state; site of the main branch of the University of Wisconsin
+10210,Madonna Madonna_Louise_Ciccone,United States pop singer and sex symbol during the 1980s (born in 1958)
+10211,Madonna_lily white_lily Annunciation_lily Lent_lily Lilium_candidum,lily of eastern Mediterranean and the Balkans with broad funnel-shaped white flowers
+10212,Madoqua genus_Madoqua,genus comprising some small antelopes of eastern and northeastern Africa
+10213,Madreporaria order_Madreporaria,stony corals
+10214,Madrid capital_of_Spain Spanish_capital,the capital and largest city situated centrally in Spain; home of an outstanding art museum
+10215,Mae_West air_jacket,an inflatable life jacket
+10216,Maeandra genus_Maeandra,brain corals
+10217,Maeterlinck Count_Maurice_Maeterlinck,Belgian playwright (1862-1949)
+10218,Mafia Maffia Cosa_Nostra,a crime syndicate in the United States; organized in families; believed to have important relations to the Sicilian Mafia
+10219,Mafia Maffia Sicilian_Mafia,a secret terrorist group in Sicily; originally opposed tyranny but evolved into a criminal organization in the middle of the 19th century
+10220,Magadhan,a subfamily of Indic languages
+10221,Magdalena Magdalena_River,a river that rises in the Andes mountains in southwestern Colombia and flows generally northward to empty into the Caribbean Sea at Barranquilla
+10222,Magellan Ferdinand_Magellan Fernao_Magalhaes,Portuguese navigator in the service of Spain; he commanded an expedition that was the first to circumnavigate the world (1480-1521)
+10223,Magellanic_Cloud,either of two small galaxies orbiting the Milky Way; visible near the south celestial pole
+10224,Magenta Battle_of_Magenta,a battle in 1859 in which the French and Sardinian forces under Napoleon III defeated the Austrians under Francis Joseph I
+10225,Magh Magha,the eleventh month of the Hindu calendar; corresponds to January in the Gregorian calendar
+10226,Maghreb Mahgrib,the region of northwest Africa comprising the Atlas Mountains and the coastlands of Morocco and Algeria and Tunisia
+10227,Magicicada genus_Magicicada,seventeen-year locust
+10228,Maginot Andre_Maginot,French politician who proposed the Maginot Line (1877-1932)
+10229,Maginot_Line,a fortification built before World War II to protect France's eastern border; initially considered to be impregnable, it was easily overrun by the German army in 1940
+10230,Magna_Carta Magna_Charta The_Great_Charter,the royal charter of political rights given to rebellious English barons by King John in 1215
+10231,Magnificat,(Luke) the canticle of the Virgin Mary (from Luke 1:46 beginning `Magnificat anima mea Dominum')
+10232,Magnoliaceae family_Magnoliaceae magnolia_family,subclass Magnoliidae: genera Liriodendron, Magnolia, and Manglietia
+10233,Magnoliidae subclass_Magnoliidae ranalian_complex,a group of families of trees and shrubs and herbs having well-developed perianths and apocarpous ovaries and generally regarded as the most primitive extant flowering plants; contains 36 families including Magnoliaceae and Ranunculaceae; sometimes classified as a superorder
+10234,Magritte Rene_Magritte,Belgian surrealist painter (1898-1967)
+10235,Mah-Jongg mahjong,Chinese game played by 4 people with 144 tiles
+10236,Mahabharata Mahabharatam Mahabharatum,(Hinduism) a sacred epic Sanskrit poem of India dealing in many episodes with the struggle between two rival families
+10237,Mahan Alfred_Thayer_Mahan,United States naval officer and historian (1840-1914)
+10238,Maharashtra,a state in west-central India
+10239,Mahayana,a major school of Buddhism teaching social concern and universal salvation; China; Japan; Tibet; Nepal; Korea; Mongolia
+10240,Mahayana Mahayana_Buddhism,one of two great schools of Buddhist doctrine emphasizing a common search for universal salvation especially through faith alone; the dominant religion of China and Tibet and Japan
+10241,Mahayanism,the religious doctrine of Mahayana Buddhism
+10242,Mahayanist,an adherent of Mahayana Buddhism
+10243,Mahdi,(Islam) a messianic leader who (according to popular Muslim belief) will appear before the end of the world and restore justice and religion
+10244,Mahdism,belief in the appearance of the Mahdi; devotion to a Mahdi
+10245,Mahdist,an adherent of Mahdism
+10246,Mahler Gustav_Mahler,Austrian composer and conductor (1860-1911)
+10247,Mahonia genus_Mahonia,evergreen shrubs and small trees of North and Central America and Asia
+10248,Maianthemum genus_Maianthemum,sometimes placed in family Convallariaceae: false lily of the valley
+10249,Maidu,a member of a North American Indian people living east of the Sacramento river in California
+10250,Maiduguri Yerwa-Maiduguri,a city in northeastern Nigeria; an agricultural trading center
+10251,Mailer Norman_Mailer,United States writer (born in 1923)
+10252,Maillol Aristide_Maillol,French sculptor of monumental female nudes (1861-1944)
+10253,Maimonides Moses_Maimonides Rabbi_Moses_Ben_Maimon,Spanish philosopher considered the greatest Jewish scholar of the Middle Ages who codified Jewish law in the Talmud (1135-1204)
+10254,Main_Street,any small town (or the people who inhabit it); generally used to represent parochialism and materialism (after a novel by Sinclair Lewis); "Main Street will never vote for a liberal politician"
+10255,Maine Pine_Tree_State ME Me.,a state in New England
+10256,Mainer Down_Easter,a native or resident of Maine
+10257,Maintenon Marquise_de_Maintenon Francoise_d'Aubigne Madame_de_Maintenon,French consort of Louis XIV who secretly married the king after the death of his first wife (1635-1719)
+10258,Maitland Frederic_William_Maitland,English historian noted for his works on the history of English law (1850-1906)
+10259,Maitreya,the Bodhisattva who is to appear as a Buddha 5000 years after the death of Gautama
+10260,Maja genus_Maja Maia genus_Maia,type genus of the Majidae; nearly cosmopolitan in distribution
+10261,Majidae family_Majidae,spider crabs
+10262,Major John_Major John_R._Major John_Roy_Major,British statesman who was prime minister from 1990 until 1997 (born in 1943)
+10263,Majorana genus_Majorana,small genus of herbs usually included in the genus Origanum
+10264,Majorca,the largest of the Balearic Islands
+10265,Makaira genus_Makaira,marlins
+10266,Makalu,a mountain in the Himalayas in Nepal (27,790 feet high)
+10267,Makarios_III,Greek Orthodox bishop and archbishop of Cyprus and the first president of independent Cyprus (1913-1977)
+10268,Maksutov_telescope,reflecting telescope in which the aberration of the concave mirror is reduced by a meniscus lens
+10269,Maktab_al-Khidmat MAK,a terrorist organization founded by Osama bin Laden in the 1980s to provide money and recruit fighters around the world; enlisted and transported thousands of men to Afghanistan to fight the Russians; a split in the group led bin Laden and the extremist faction of MAK to form al-Qaeda
+10270,Malabo,the capital and largest city of Equatorial Guinea on the island of Bioko in the Gulf of Guinea
+10271,Malacanthidae family_Malacanthidae,short-headed marine fishes; often brightly colored
+10272,Malacca,the third smallest Malaysian state; located in the southern region of the Malay Peninsula
+10273,Malachi Malachias,a Hebrew minor prophet of the 5th century BC
+10274,Malachi Malachias Book_of_Malachi,an Old Testament book containing the prophecies of Malachi
+10275,Malaclemys genus_Malaclemys,American terrapins
+10276,Malaconotinae subfamily_Malaconotinae,an African bush shrikes
+10277,Malacopterygii superorder_Malacopterygii,an extensive group of teleost fishes having fins supported by flexible cartilaginous rays
+10278,Malacosoma genus_Malacosoma,tent caterpillars
+10279,Malacostraca subclass_Malacostraca,largest subclass of Crustacea including most of the well-known marine, freshwater, and terrestrial crustaceans: crabs; lobsters; shrimps; sow bugs; beach flies
+10280,Malacothamnus genus_Malacothamnus,genus of shrubs or small trees: chaparral mallow
+10281,Malaga,a port city and resort in Andalusia in southern Spain on the Mediterranean
+10282,Malamud Bernard_Malamud,United States writer (1914-1986)
+10283,Malathion,a yellow insecticide used as a dust or spray to control garden pests and house flies and mites
+10284,Malawi Republic_of_Malawi Nyasaland,a landlocked republic in southern central Africa; achieved independence from the United Kingdom in 1964
+10285,Malawi_kwacha kwacha,the basic unit of money in Malawi
+10286,Malawian,a native or inhabitant of Malawi
+10287,Malawian_monetary_unit,monetary unit in Malawi
+10288,Malaxis genus_Malaxis,large genus of largely terrestrial orchids with one or a few plicate leaves and slender spikes or tiny mostly green flowers; cosmopolitan
+10289,Malay,a western subfamily of Western Malayo-Polynesian languages
+10290,Malay Malayan,a member of a people inhabiting the northern Malay Peninsula and Malaysia and parts of the western Malay Archipelago
+10291,Malay_Archipelago East_Indies East_India,a group of islands in the Indian and Pacific Oceans between Asia and Australia
+10292,Malay_Peninsula,a peninsula in southeastern Asia occupied by parts of Malaysia and Thailand and Myanmar
+10293,Malayalam,a Dravidian language (closely related to Tamil) that is spoken in southwestern India
+10294,Malayan_tapir Indian_tapir Tapirus_indicus,a tapir found in Malaya and Sumatra
+10295,Malayo-Polynesian Polynesian,the branch of the Austronesian languages spoken from Madagascar to the central Pacific
+10296,Malaysia Federation_of_Malaysia,a constitutional monarchy in southeastern Asia on Borneo and the Malay Peninsula; achieved independence from the United Kingdom in 1957
+10297,Malaysian,a native or inhabitant of Malaysia
+10298,Malaysian Bahasa_Malaysia Bahasa_Melayu Bahasa_Kebangsaan,the Malay language spoken in Malaysia
+10299,Malaysian_monetary_unit,monetary unit is Malaysia
+10300,Malaysian_state,one of the several states constituting Malaysia
+10301,Malcolm_X Malcolm_Little,militant civil rights leader (1925-1965)
+10302,Malcolm_stock stock,any of various ornamental flowering plants of the genus Malcolmia
+10303,Malcolmia genus_Malcolmia,genus of plants usually found in coastal habitats; Mediterranean to Afghanistan
+10304,Maldives Maldive_Islands,a group of about 1,200 small coral islands (about 220 inhabited) in the Indian ocean
+10305,Maldives Republic_of_Maldives,a republic on the Maldive Islands; achieved independence from the United Kingdom in 1965
+10306,Maldivian Maldivan,a native or inhabitant of Maldives
+10307,Maldon Battle_of_Maldon,a battle in which the Danes defeated the Saxons in 991; celebrated in an old English poem
+10308,Male,the capital of Maldives in the center of the islands
+10309,Malebranche Nicolas_de_Malebranche,French philosopher (1638-1715)
+10310,Malecite,a member of the Algonquian people of northeastern Maine and New Brunswick
+10311,Malecite Maleseet,the Algonquian language of the Malecite and Passamaquody
+10312,Malevich Kazimir_Malevich Kazimir_Severinovich_Malevich,Russian abstract painter (1878-1935)
+10313,Mali Republic_of_Mali French_Sudan,a landlocked republic in northwestern Africa; achieved independence from France in 1960; Mali was a center of West African civilization for more than 4,000 years
+10314,Mali_franc,the basic unit of money in Mali
+10315,Malian,a native or inhabitant of Mali
+10316,Malinowski Bronislaw_Malinowski Bronislaw_Kasper_Malinowski,British anthropologist (born in Poland) who introduced the technique of the participant observer (1884-1942)
+10317,Mallarme Stephane_Mallarme,French symbolist poet noted for his free verse (1842-1898)
+10318,Mallon Mary_Mallon Typhoid_Mary,United States cook who was an immune carrier of typhoid fever and who infected dozens of people (1870-1938)
+10319,Mallophaga order_Mallophaga,biting lice
+10320,Mallotus genus_Mallotus,capelins
+10321,Malmo,a port in southern Sweden
+10322,Malone Edmund_Malone Edmond_Malone,English scholar remembered for his chronology of Shakespeare's plays and his editions of Shakespeare and Dryden (1741-1812)
+10323,Malopterurus genus_Malopterurus,electric catfish
+10324,Malory Thomas_Malory Sir_Thomas_Malory,English writer who published a translation of romances about King Arthur taken from French and other sources (died in 1471)
+10325,Malosma genus_Malosma,one species; often included in the genus Rhus
+10326,Malpighi Marcello_Malpighi,Italian anatomist who was the first to use a microscope to study anatomy and was among the first to recognize cells in animals (1628-1694)
+10327,Malpighia genus_Malpighia,type genus of the Malpighiaceae
+10328,Malpighiaceae family_Malpighiaceae,tropical shrubs or trees
+10329,Malraux Andre_Malraux,French novelist (1901-1976)
+10330,Malta,a strategically located island to the south of Sicily in the Mediterranean Sea
+10331,Malta Republic_of_Malta,a republic on the island of Malta in the Mediterranean; achieved independence from the United Kingdom in 1964
+10332,Maltese,a native or inhabitant of Malta
+10333,Maltese Maltese_cat,a term applied indiscriminately in the United States to any short-haired bluish-grey cat
+10334,Maltese Maltese_language Malti,the national language of the Republic of Malta; a Semitic language derived from Arabic but with many loan words from Italian, Spanish, and Norman-French
+10335,Maltese_cross,a cross with triangular or arrow-shaped arms and the points toward the center
+10336,Maltese_dog Maltese_terrier Maltese,breed of toy dogs having a long straight silky white coat
+10337,Maltese_monetary_unit,monetary unit on Malta
+10338,Malthus Thomas_Malthus Thomas_Robert_Malthus,an English economist who argued that increases in population would outgrow increases in the means of subsistence (1766-1834)
+10339,Malthusian,a believer in Malthusian theory
+10340,Malthusianism Malthusian_theory,Malthus' theory that population increase would outpace increases in the means of subsistence
+10341,Malto,a member of the Dravidian people living in northern Bengal in eastern India
+10342,Malto,the Dravidian language spoken by the Malto
+10343,Malus genus_Malus,apple trees; found throughout temperate zones of the northern hemisphere
+10344,Malva genus_Malva,herbs and subshrubs: mallows
+10345,Malvaceae family_Malvaceae mallow_family,herbs and shrubs and some trees: mallows; cotton; okra
+10346,Malvales order_Malvales,Malvaceae; Bombacaceae; Elaeocarpaceae; Sterculiaceae; Tiliaceae
+10347,Malvastrum genus_Malvastrum,genus of mallows characterized by red and yellow flowers often placed in other genera
+10348,Malvaviscus genus_Malvaviscus,small genus of shrubs of Central and South America: wax mallows
+10349,Mam,a member of a Mayan people of southwestern Guatemala
+10350,Mam,a Mayan language spoken by the Mam
+10351,Mama,a name under which Ninkhursag was worshipped
+10352,Mamet David_Mamet,United States playwright (born in 1947)
+10353,Mammalia class_Mammalia,warm-blooded vertebrates characterized by mammary glands in the female
+10354,Mammea genus_Mammea,American and Asiatic trees having edible one-seeded fruit
+10355,Mammon,(New Testament) a personification of wealth and avarice as an evil spirit; "ye cannot serve God and Mammon"
+10356,Mammoth_Cave_National_Park,a national park in Kentucky having a large cavern and an underground river
+10357,Mammut genus_Mammut genus_Mastodon,extinct type genus of the Mammutidae: mastodons
+10358,Mammuthus genus_Mammuthus,extinct genus: mammoths
+10359,Mammutidae family_Mammutidae family_Mastodontidae,extinct family: mastodons
+10360,Man Isle_of_Man,one of the British Isles in the Irish Sea
+10361,Managua capital_of_Nicaragua Nicaraguan_capital,the capital and largest city of Nicaragua
+10362,Manama capital_of_Bahrain,the capital of Bahrain; located at the northern end of Bahrain Island
+10363,Manannan,Celtic god of the sea; son of Ler
+10364,Manawydan Manawyddan,Celtic sea god; son of Llyr
+10365,Manchester,largest city in New Hampshire; located in southeastern New Hampshire on the Merrimack river
+10366,Manchester,a city in northwestern England (30 miles to the east of Liverpool); heart of the most densely populated area of England
+10367,Manchester_terrier black-and-tan_terrier,a breed of short-haired rat terrier with a black-and-tan coat that was developed in Manchester, England
+10368,Manchu,a member of the Manchu speaking people of Manchuria; related to the Tungus; conquered China in the 17th century
+10369,Manchu,the Tungusic language spoken by the Manchu
+10370,Manchuria,a region in northeastern China
+10371,Mancunian,a native or resident of Manchester
+10372,Manda,a Dravidian language spoken in south central India
+10373,Mandaean Mandean,a member of a small Gnostic sect that originated in Jordan and survives in Iraq and who believes that John the Baptist was the Messiah
+10374,Mandaean Mandean,the form of Aramaic used by the Mandeans
+10375,Mandaeanism Mandeanism,a Gnostic religion originating the 2nd and 3rd centuries that believes John the Baptist was the Messiah and that incorporates Jewish and Christian elements into a framework of dualistic beliefs
+10376,Mandalay,a city in central Myanmar to the north of Rangoon
+10377,Mandara Wandala,a Chadic language spoken in the Mandara mountains in Cameroon; has only two vowels
+10378,Mandarin Mandarin_Chinese Mandarin_dialect Beijing_dialect,the dialect of Chinese spoken in Beijing and adopted as the official language for all of China
+10379,Mande,a group of African languages in the Niger-Congo group spoken from Senegal east as far as the Ivory Coast
+10380,Mandela Nelson_Mandela Nelson_Rolihlahla_Mandela,South African statesman who was released from prison to become the nation's first democratically elected president in 1994 (born in 1918)
+10381,Mandelbrot Benoit_Mandelbrot,French mathematician (born in Poland) noted for inventing fractals (born in 1924)
+10382,Mandelbrot_set,a set of complex numbers that has a highly convoluted fractal boundary when plotted; the set of all points in the complex plane that are bounded under a certain mathematical iteration
+10383,Mandelstam Osip_Mandelstam Osip_Emilevich_Mandelstam Mandelshtam,Russian poet who died in a prison camp (1891-1938)
+10384,Mandevilla genus_Mandevilla Dipladenia genus_Dipladenia,genus of tropical South American tuberous perennial woody vines with large racemose flowers and milky sap
+10385,Mandragora genus_Mandragora,a genus of stemless herbs of the family Solanaceae
+10386,Mandrillus genus_Mandrillus,baboons
+10387,Manduca genus_Manduca,moths whose larvae are tobacco hornworms or tomato hornworms
+10388,Manduca_quinquemaculata,moth whose larvae are tomato hornworms
+10389,Manduca_sexta,moth whose larvae are tobacco hornworms
+10390,Manes,a Persian prophet who founded Manichaeism (216-276)
+10391,Manet Edouard_Manet,French painter whose work influenced the impressionists (1832-1883)
+10392,Mangifera genus_Mangifera,tropical tree native to Asia bearing fleshy fruit
+10393,Manhattan,one of the five boroughs of New York City
+10394,Manhattan_Island,an island at the north end of New York Bay where the borough of Manhattan is located
+10395,Manhattan_Project,a former United States executive agency that was responsible for developing atomic bombs during World War II
+10396,Manhattan_Project,code name for the secret United States project set up in 1942 to develop atomic bombs for use in World War II
+10397,Manhattan_clam_chowder,a chowder made with clams and tomatoes and other vegetables and seasonings
+10398,Manichaean Manichean Manichee,an adherent of Manichaeism
+10399,Manichaeism Manichaeanism,a religion founded by Manes in the third century; a synthesis of Zoroastrian dualism between light and dark and Babylonian folklore and Buddhist ethics and superficial elements of Christianity; spread widely in the Roman Empire but had largely died out by 1000
+10400,Manidae family_Manidae,coextensive with the order Pholidota
+10401,Manihot genus_Manihot,genus of economically important tropical plants: cassava
+10402,Manila capital_of_the_Philippines,the capital and largest city of the Philippines; located on southern Luzon
+10403,Manila_Bay,a naval battle in the Spanish-American War (1898); the American fleet under Admiral Dewey defeated the Spanish fleet
+10404,Manila_grass Japanese_carpet_grass Zoysia_matrella,lawn grass common in the Philippines; grown also in United States
+10405,Manila_hemp Manilla_hemp abaca,a kind of hemp obtained from the abaca plant in the Philippines
+10406,Manilkara genus_Manilkara,genus of large evergreen trees with milky latex; pantropical
+10407,Manipur,state in northeastern India
+10408,Maniraptora suborder_Maniraptora,advanced theropods including oviraptorids and dromaeosaurs and possibly even modern birds
+10409,Manis genus_Manis,type genus of the Manidae
+10410,Manitoba,one of the three prairie provinces in central Canada
+10411,Mankato,a town in southern Minnesota
+10412,Mann Horace_Mann,United States educator who introduced reforms that significantly altered the system of public education (1796-1859)
+10413,Mann Thomas_Mann,German writer concerned about the role of the artist in bourgeois society (1875-1955)
+10414,Mannheim,a city in southwestern Germany at the confluence of the Rhine and Neckar rivers
+10415,Mansart Francois_Mansart,French architect who introduced the mansard roof (1598-1666)
+10416,Mansfield,a town in north central Ohio
+10417,Mansfield Katherine_Mansfield Kathleen_Mansfield_Beauchamp,New Zealand writer of short stories (1888-1923)
+10418,Mansi Vogul,the Ugric language (related to Hungarian) spoken by the Vogul
+10419,Manson Sir_Patrick_Manson,Scottish physician who discovered that elephantiasis is spread by mosquitos and suggested that mosquitos also spread malaria (1844-1922)
+10420,Mantegna Andrea_Mantegna,Italian painter and engraver noted for his frescoes (1431-1506)
+10421,Mantell Gideon_Algernon_Mantell,English geologist remembered as the first person to recognize that dinosaurs were reptiles (1790-1852)
+10422,Manteodea suborder_Manteodea,mantises; in former classifications considered a suborder of Orthoptera
+10423,Mantidae family_Mantidae Manteidae family_Manteidae,mantises
+10424,Mantinea Mantineia,the site of three famous battles among Greek city-states: in 418 BC and 362 BC and 207 BC
+10425,Mantispidae family_Mantispidae,mantispids
+10426,Mantle Mickey_Mantle Mickey_Charles_Mantle,United States baseball player (1931-1997)
+10427,Mantophasmatodea order_mantophasmatodea,an order of insect identified in 2002 in a 45 million year old piece of amber from the Baltic region
+10428,Mantoux_test,tuberculin (a derivative of tubercle bacillus) is injected intradermally; a red area appearing 1-3 days later signifies an exposure (past or present) to tubercle bacilli and the need for further testing
+10429,Manuel_Rodriquez_Patriotic_Front,a terrorist group formed in 1983 as the armed wing of the Chilean Communist Party
+10430,Manx,the ancient Gaelic formerly spoken on the Isle of Man; the language is sometimes used on ceremonial occasions
+10431,Manx Manx_cat,a short-haired tailless breed of cat believed to originate on the Isle of Man
+10432,Manx_shearwater Puffinus_puffinus,small black-and-white shearwater common in the northeastern Atlantic
+10433,Manzanilla,very dry pale sherry from Spain
+10434,Manzoni Alessandro_Manzoni,Italian novelist and poet (1785-1873)
+10435,Mao Mao_Zedong Mao_Tsetung,Chinese communist leader (1893-1976)
+10436,Mao_jacket,a light weight jacket with a high collar; worn by Mao Zedong and the Chinese people during his regime
+10437,Maoism,a form of communism developed in China by Mao Zedong
+10438,Maoist,an advocate of Maoism
+10439,Maori,an ethnic minority of Polynesian and Melanesian descent who speak Maori and live in New Zealand
+10440,Maori,the Oceanic language spoken by the Maori in New Zealand
+10441,MapQuest,a free, widely-used Web Map Server
+10442,Maputo capital_of_Mozambique,the capital and largest city of Mozambique
+10443,Maquis,the French underground that fought against the German occupation in World War II
+10444,Maquis Maquisard,a guerrilla fighter in the French underground in World War II
+10445,Mara,Hindu god of death; opposite of Kama
+10446,Maracaibo,a port city in northwestern Venezuela; a major oil center
+10447,Maracay,a city in north central Venezuela; cattle center
+10448,Maraco,a member of the South American people living in Argentina and Bolivia and Paraguay
+10449,Maraco Maracan_language,the language spoken by the Maraco
+10450,Marantaceae family_Marantaceae arrowroot_family,tropical perennial herbs with usually starchy rhizomes
+10451,Marasmius genus_Marasmius,chiefly small mushrooms with white spores
+10452,Marat Jean_Paul_Marat,French revolutionary leader (born in Switzerland) who was a leader in overthrowing the Girondists and was stabbed to death in his bath by Charlotte Corday (1743-1793)
+10453,Maratha Mahratta,a member of a people of India living in Maharashtra
+10454,Marathi Mahratti,an Indic language; the state language of Maharashtra in west central India; written in the Devanagari script
+10455,Marathon battle_of_Marathon,a battle in 490 BC in which the Athenians and their allies defeated the Persians
+10456,Marattia genus_Marattia,type genus of the Marattiaceae: ferns having the sporangia fused together in two rows
+10457,Marattiaceae family_Marattiaceae,constituting the order Marattiales: chiefly tropical eusporangiate ferns with gigantic fronds
+10458,Marattiales order_Marattiales,lower ferns coextensive with the family Marattiaceae
+10459,Marburg_disease Marburg_hemorrhagic_fever green_monkey_disease,a viral disease of green monkeys caused by the Marburg virus; when transmitted to humans it causes serious or fatal illness
+10460,Marburg_virus,a filovirus that causes Marburg disease; carried by animals; can be used as a bioweapon
+10461,Marceau Marcel_Marceau,French mime famous for his sad-faced clown (born in 1923)
+10462,March Mar,the month following February and preceding April
+10463,Marchantia genus_Marchantia,type genus of Marchantiaceae; liverworts that reproduce asexually by gemmae and have stalked antheridiophores
+10464,Marchantiaceae family_Marchantiaceae,liverworts with prostrate and usually dichotomously branched thalli
+10465,Marchantiales order_Marchantiales,liverworts with gametophyte differentiated internally
+10466,Marche Marches,a region in central Italy
+10467,Marciano Rocco_Marciano Rocky_Marciano,United States prizefighter who won the world heavyweight championship in 1952 (1924-1969)
+10468,Marcionism,the Christian heresy of the 2nd and 3rd centuries that rejected the Old Testament and denied the incarnation of God in Jesus as a human
+10469,Marco_Polo_sheep Marco_Polo's_sheep Ovis_poli,Asiatic wild sheep with exceptionally large horns; sometimes considered a variety of the argali (or Ovis ammon)
+10470,Marconi Guglielmo_Marconi,Italian electrical engineer who invented wireless telegraphy and in 1901 transmitted radio signals across the Atlantic Ocean (1874-1937)
+10471,Marcuse Herbert_Marcuse,United States political philosopher (born in Germany) concerned about the dehumanizing effects of capitalism and modern technology (1898-1979)
+10472,Mardi_Gras Fat_Tuesday,a carnival held in some countries on Shrove Tuesday (the last day before Lent) but especially in New Orleans
+10473,Mardi_Gras Shrove_Tuesday Fat_Tuesday pancake_day,the last day before Lent
+10474,Marduk Merodach Baal_Merodach Bel-Merodach,the chief Babylonian god; his consort was Sarpanitu
+10475,Marengo,a battle in 1800 in which the French under Napoleon Bonaparte won a great victory over the Austrians
+10476,Marfan's_syndrome,an autosomal dominant disease characterized by elongated bones (especially of limbs and digits) and abnormalities of the eyes and circulatory system
+10477,Marginocephalia suborder_Marginocephalia marginocephalian,includes boneheaded (pachycephalosaurs) and horned (ceratopsian) dinosaurs
+10478,Maria Calophyllum_longifolium,valuable timber tree of Panama
+10479,Mariana_Islands Marianas Ladrone_Islands,a chain of coral and volcanic islands in Micronesia (including Guam and the Northern Marianas) halfway between New Guinea and Japan; discovered by Magellan in 1521
+10480,Maricopa,a member of a North American Indian people of the Gila river valley in Arizona
+10481,Maricopa,the Yuman language spoken by the Maricopa and the Halchidhoma
+10482,Marie_Antoinette,queen of France (as wife of Louis XVI) who was unpopular; her extravagance and opposition to reform contributed to the overthrow of the monarchy; she was guillotined along with her husband (1755-1793)
+10483,Mariehamn Maarianhamina,a town that is the chief port of the Aland islands
+10484,Marine devil_dog leatherneck shipboard_soldier,a member of the United States Marine Corps
+10485,Marine_Corps_Intelligence_Activity MCIA,an agency of the United States Marine Corps that provides responsive and broad intelligence support for the worldwide Marine Corps organization
+10486,Marineland,a commercial aquarium featuring trained dolphins
+10487,Marines,members of a body of troops trained to serve on land or at sea
+10488,Marini Giambattista_Marini Marino Giambattista_Marino,Italian poet (1569-1625)
+10489,Mariposan Yokuts,a Penutian language spoken by the Yokuts in the San Joaquin Valley
+10490,Maritime_Provinces Maritimes Canadian_Maritime_Provinces,the collective name for the Canadian provinces of New Brunswick and Nova Scotia and Prince Edward Island
+10491,Mark Gospel_According_to_Mark,the shortest of the four Gospels in the New Testament
+10492,Mark Saint_Mark St._Mark,Apostle and companion of Saint Peter; assumed to be the author of the second Gospel
+10493,Markaz-ud-Dawa-wal-Irshad MDI,a Sunni organization formed in 1989 and based in Pakistan; opposes missionary groups from the United States; has Lashkar-e-Tayyiba as its armed wing
+10494,Markov Andrei_Markov Markoff Andre_Markoff,Russian mathematician (1856-1922)
+10495,Markov_chain Markoff_chain,a Markov process for which the parameter is discrete time values
+10496,Markov_process Markoff_process,a simple stochastic process in which the distribution of future states depends only on the present state and not on how it arrived in the present state
+10497,Markova Dame_Alicia_Markova Lilian_Alicia_Marks,English ballet dancer (born in 1910)
+10498,Marks Simon_Marks First_Baron_Marks_of_Broughton,English businessman who created a retail chain (1888-1964)
+10499,Marley Robert_Nesta_Marley Bob_Marley,Jamaican singer who popularized reggae (1945-1981)
+10500,Marlowe Christopher_Marlowe,English poet and playwright who introduced blank verse as a form of dramatic expression; was stabbed to death in a tavern brawl (1564-1593)
+10501,Marlowe Philip_Marlowe,tough cynical detective (one of the early detective heroes in American fiction) created by Raymond Chandler
+10502,Marmara Sea_of_Marmara Marmara_Denizi Marmora Sea_of_Marmora,an inland sea in northwestern Turkey; linked to the Black Sea by the Bosporus and linked to the Aegean by the Dardanelles
+10503,Marmota genus_Marmota,marmots
+10504,Marquand John_Marquand John_Philip_Marquand,United States writer who created the Japanese detective Mr. Moto and wrote other novels as well (1893-1960)
+10505,Marquesas_Islands Iles_Marquises,a group of volcanic islands in the south central Pacific; part of French Polynesia
+10506,Marquette,a town on Lake Superior on the Upper Peninsula in northwest Michigan
+10507,Marquette Jacques_Marquette Pere_Jacques_Marquette,French missionary who accompanied Louis Joliet in exploring the upper Mississippi River valley (1637-1675)
+10508,Marquis Don_Marquis Donald_Robert_Perry_Marquis,humorist who wrote about the imaginary life of cockroaches (1878-1937)
+10509,Marrakesh Marrakech,a city in western Morocco; tourist center
+10510,Marrano,(medieval Spain and Portugal) a disparaging term for a Jew who converted to Christianity in order to avoid persecution but continued to practice their religion secretly
+10511,Marrubium genus_Marrubium,Old World aromatic herbs: horehound
+10512,Mars,(Roman mythology) Roman god of war and agriculture; father of Romulus and Remus; counterpart of Greek Ares
+10513,Mars Red_Planet,a small reddish planet that is the 4th from the sun and is periodically visible to the naked eye; minerals rich in iron cover its surface and are responsible for its characteristic color; "Mars has two satellites"
+10514,Marsala,dark sweet or semisweet dessert wine from Sicily
+10515,Marseillaise,the French national anthem
+10516,Marseille Marseilles,a port city in southeastern France on the Mediterranean
+10517,Marseilles_fever Kenya_fever Indian_tick_fever boutonneuse_fever,a disease (common in India and around the Mediterranean area) caused by a rickettsia that is transmitted to humans by a reddish brown tick (ixodid) that lives on dogs and other mammals
+10518,Marsh Ngaio_Marsh,New Zealand writer of detective stories (1899-1982)
+10519,Marsh Reginald_Marsh,United States painter (1898-1954)
+10520,Marshall E._G._Marshall,United States actor (1914-1998)
+10521,Marshall George_Marshall George_Catlett_Marshall,United States general and statesman who as Secretary of State organized the European Recovery Program (1880-1959)
+10522,Marshall John_Marshall,United States jurist; as chief justice of the Supreme Court he established the principles of United States constitutional law (1755-1835)
+10523,Marshall_Islands,a group of coral islands in eastern Micronesia
+10524,Marshall_Islands Republic_of_the_Marshall_Islands,a republic (under United States protection) on the Marshall Islands
+10525,Marshall_Plan European_Recovery_Program,a United States program of economic aid for the reconstruction of Europe (1948-1952); named after George Marshall
+10526,Marsilea genus_Marsilea,clover ferns
+10527,Marsileaceae family_Marsileaceae,clover ferns
+10528,Marstan John_Marstan,English playwright (1575-1634)
+10529,Marston_Moor,a former moor in northern England
+10530,Marston_Moor battle_of_Marston_Moor,a battle in 1644 in which the Parliamentarians under the earl of Manchester defeated the Royalists under Prince Rupert
+10531,Marsupialia order_Marsupialia,coextensive with the subclass Metatheria
+10532,Martes genus_Martes,martens
+10533,Martha's_Vineyard,an island summer resort off of Cape Cod
+10534,Marti Jose_Julian_Marti,Cuban poet and revolutionary who fought for Cuban independence from Spain (1853-1895)
+10535,Martial,Roman poet noted for epigrams (first century BC)
+10536,Martian,imaginary people who live on the planet Mars
+10537,Martin Dean_Martin Dino_Paul_Crocetti,United States singer (1917-1995)
+10538,Martin Mary_Martin,United States actress (1913-1990)
+10539,Martin St._Martin,French bishop who is a patron saint of France (died in 397)
+10540,Martin Steve_Martin,United States actor and comedian (born in 1945)
+10541,Martin_Luther_King_Jr's_Birthday Martin_Luther_King_Day,observed on the Monday closest to January 15
+10542,Martin_V Oddone_Colonna,Italian pope from 1417 to 1431 whose election as pope ended the Great Schism (1368-1431)
+10543,Martinique,an island in the eastern Caribbean in the Windward Islands; administered as an overseas region of France
+10544,Martinmas St_Martin's_Day 11_November,the feast of Saint Martin; a quarter day in Scotland
+10545,Martyniaceae family_Martyniaceae,in most classifications not considered a separate family but included in the Pedaliaceae
+10546,Marut,any of a group of Hindu storm gods; offspring of Rudra
+10547,Marvell Andrew_Marvell,English poet (1621-1678)
+10548,Marx Arthur_Marx Harpo,United States comedian; one of four brothers who made motion pictures together (1893-1964)
+10549,Marx Herbert_Marx Zeppo,United States comedian; one of four brothers who made motion pictures together (1901-1979)
+10550,Marx Julius_Marx Groucho,United States comedian; one of four brothers who made motion pictures together (1890-1977)
+10551,Marx Karl_Marx,founder of modern communism; wrote the Communist Manifesto with Engels in 1848; wrote Das Kapital in 1867 (1818-1883)
+10552,Marx Leonard_Marx Chico,United States comedian; one of four brothers who made motion pictures together (1891-1961)
+10553,Marx_Brothers,a family of United States comedians consisting of four brothers with an anarchic sense of humor
+10554,Marxism,the economic and political theories of Karl Marx and Friedrich Engels that hold that human actions and institutions are economically determined and that class struggle is needed to create historical change and that capitalism will ultimately be superseded by communism
+10555,Marxist,an advocate of Marxism
+10556,Mary Virgin_Mary The_Virgin Blessed_Virgin Madonna,the mother of Jesus; Christians refer to her as the Virgin Mary; she is especially honored by Roman Catholics
+10557,Mary_I Mary_Tudor Bloody_Mary,daughter of Henry VIII and Catherine of Aragon who was Queen of England from 1553 to 1558; she was the wife of Philip II of Spain and when she restored Roman Catholicism to England many Protestants were burned at the stake as heretics (1516-1558)
+10558,Mary_II,Queen of England and Scotland and Ireland; she was the eldest daughter of James II and ruled jointly with her husband William III (1662-1694)
+10559,Mary_Magdalene St._Mary_Magdalene Mary_Magdalen St._Mary_Magdalen,sinful woman Jesus healed of evil spirits; she became a follower of Jesus
+10560,Mary_Queen_of_Scots Mary_Stuart,queen of Scotland from 1542 to 1567; as a Catholic she was forced to abdicate in favor of her son and fled to England where she was imprisoned by Elizabeth I; when Catholic supporters plotted to put her on the English throne she was tried and executed for sedition (1542-1587)
+10561,Maryland,one of the British colonies that formed the United States
+10562,Maryland Old_Line_State Free_State MD Md.,a Mid-Atlantic state; one of the original 13 colonies
+10563,Maryland_chicken,chicken fried than oven-baked and served with milk gravy
+10564,Maryland_golden_aster Chrysopsis_mariana,perennial golden aster of southeastern United States
+10565,Marylander,a native or resident of Maryland
+10566,Masa,an independent group of closely related Chadic languages spoken in the area between the Biu-Mandara and East Chadic languages
+10567,Masai,a Nilotic language
+10568,Masefield John_Masefield John_Edward_Masefield,English poet (1878-1967)
+10569,Maseru capital_of_Lesotho,the capital of Lesotho; located in northwestern Lesotho
+10570,Mashhad Meshed,the holy city of Shiite Muslims; located in northeastern Iran
+10571,Mashi,a Bantu language
+10572,Mashriq,Arabic name for the Middle East
+10573,Mason A._E._W._Mason Alfred_Edward_Woodley_Mason,English writer (1865-1948)
+10574,Mason George_Mason,American Revolutionary leader from Virginia whose objections led to the drafting of the Bill of Rights (1725-1792)
+10575,Mason James_Mason James_Neville_Mason,English film actor (1909-1984)
+10576,Mason-Dixon_line Mason_and_Dixon_line Mason_and_Dixon's_line,the boundary between Maryland and Pennsylvania; symbolic dividing line between North and South before the American Civil War
+10577,Mason_City,a town in north central Iowa
+10578,Mason_jar,a glass jar with an air-tight screw top; used in home canning
+10579,Masonite,a type of fiberboard
+10580,Masorah Masora,a vast body of textual criticism of the Hebrew Scriptures including notes on features of writing and on the occurrence of certain words and on variant sources and instructions for pronunciation and other comments that were written between AD 600 and 900 by Jewish scribes in the margins or at the end of texts
+10581,Masorete Massorete Masorite,a scholar who is expert on the Masorah (especially one of the Jewish scribes who contributed to the Masorah)
+10582,Masoud Ahmad_Shah_Masoud,Afghan leader of forces opposed to the Taliban; won fame by successfully resisting the Soviets in the 1980s; was assassinated by men posing as journalists (1953-2001)
+10583,Mass,a musical setting for a Mass; "they played a Mass composed by Beethoven"
+10584,Mass,a sequence of prayers constituting the Christian Eucharistic rite; "the priest said Mass"
+10585,Mass,(Roman Catholic Church and Protestant Churches) the celebration of the Eucharist
+10586,Mass_card,(Roman Catholic Church) a card sent to a bereaved family that says the sender has arranged for a Mass to be said in memory of the deceased
+10587,Massachuset Massachusetts,a member of the Algonquian people who formerly lived around Massachusetts Bay
+10588,Massachuset Massachusetts,the Algonquian language of the Massachuset
+10589,Massachusetts Bay_State Old_Colony MA Mass.,a state in New England; one of the original 13 colonies
+10590,Massachusetts Massachusetts_Bay_Colony,one of the British colonies that formed the United States
+10591,Massachusetts_Bay,an inlet of the Atlantic Ocean off of eastern Massachusetts extending from Cape Ann on the north to Cape Cod on the south
+10592,Massachusetts_Institute_of_Technology MIT,an engineering university in Cambridge
+10593,Massachusetts_fern Parathelypteris_simulata Thelypteris_simulata,delicate feathery shield fern of the eastern United States; sometimes placed in genus Thelypteris
+10594,Massasoit,Wampanoag leader who aided the Pilgrims (1580-1661)
+10595,Massawa,a port town in Eritrea on an inlet of the Red Sea
+10596,Massenet Jules_Emile_Frederic_Massenet,French composer best remembered for his pop operas (1842-1912)
+10597,Massif_Central,a mountainous plateau in southern France that covers almost one sixth of the country
+10598,Massine Leonide_Fedorovitch_Massine Leonid_Fyodorovich_Myasin,French choreographer and ballet dancer (born in Russia) (1895-1979)
+10599,Master_in_Business Master_in_Business_Administration MBA,a master's degree in business
+10600,Master_in_Public_Affairs,a master's degree in questions of public concern
+10601,Master_of_Architecture MArch,a degree granted for the successful completion of advanced study of architecture
+10602,Master_of_Arts MA Artium_Magister AM,a master's degree in arts and sciences
+10603,Master_of_Arts_in_Library_Science MALS,a master's degree in library science
+10604,Master_of_Arts_in_Teaching MAT,a master's degree in teaching
+10605,Master_of_Divinity MDiv,a master's degree in religion
+10606,Master_of_Education MEd,a master's degree in education
+10607,Master_of_Fine_Arts MFA,a master's degree in fine arts
+10608,Master_of_Laws LLM,an advanced law degree
+10609,Master_of_Library_Science MLS,a master's degree in library science
+10610,Master_of_Literature MLitt,a master's degree in literature
+10611,Master_of_Science MS SM MSc,a master's degree in science
+10612,Master_of_Science_in_Engineering,a master's degree in engineering
+10613,Master_of_Theology ThM,a master's degree in theology
+10614,Masters Edgar_Lee_Masters,United States poet (1869-1950)
+10615,Masticophis genus_Masticophis,whip snakes
+10616,Mastigomycota subdivision_Mastigomycota Mastigomycotina subdivision_Mastigomycotina,fungi in which the spores and gametes are motile; in some systems placed in the Phycomycetes group with the Zygomycota
+10617,Mastigophora class_Mastigophora Flagellata class_Flagellata,protozoa having flagella
+10618,Mastigoproctus genus_Mastigoproctus,giant whip scorpions
+10619,Mastotermes genus_Mastotermes,primitive genus of termites; mostly extinct; sometimes considered the most primitive Isoptera
+10620,Mastotermes_darwiniensis,Australian termite; sole living species of Mastotermes; called a living fossil; apparent missing link between cockroaches and termites
+10621,Mastotermes_electrodominicus,extinct termite found in amber in the Dominican Republic
+10622,Mastotermes_electromexicus,an extinct termite found in amber in southern Mexico
+10623,Mastotermitidae family_Mastotermitidae,primitive termites
+10624,Mata_Hari Margarete_Gertrud_Zelle,Dutch dancer who was executed by the French as a German spy in World War I (1876-1917)
+10625,Matakam Mafa,a Chadic language spoken south of Lake Chad
+10626,Matamoros,a city in northeastern Mexico opposite Brownsville near the mouth of the Rio Grande
+10627,Mathias Bob_Mathias Robert_Bruce_Mathias,United States athlete who won Olympic gold medals in the decathlon (born in 1930)
+10628,Matisse Henri_Matisse Henri_Emile_Benoit_Matisse,French painter and sculptor; leading figure of fauvism (1869-1954)
+10629,Matricaria genus_Matricaria,chiefly Old World strong-smelling weedy herbs; comprises plants sometimes included in other genera: e.g. Tanacetum; Tripleurospermum
+10630,Matterhorn,a mountain in the Alps on the border between Switzerland and Italy (14,780 feet high); noted for its distinctive shape
+10631,Matteuccia genus_Matteuccia Pteretis genus_Pteretis,small genus sometimes included in genus Onoclea; in some classifications both genera are placed in Polypodiaceae
+10632,Matthew Gospel_According_to_Matthew,one of the Gospels in the New Testament; includes the Sermon on the Mount
+10633,Matthew Saint_Matthew St._Matthew Saint_Matthew_the_Apostle St._Matthew_the_Apostle Levi,(New Testament) disciple of Jesus; traditionally considered to be the author of the first Gospel
+10634,Matthew_Walker Matthew_Walker_knot,a kind of stopper knot
+10635,Matthiola genus_Matthiola,genus of Old World plants grown as ornamentals
+10636,Mattole,a member of the Athapaskan people living in northwestern California
+10637,Mattole,the Athapaskan language spoken by the Mattole
+10638,Maugham Somerset_Maugham W._Somerset_Maugham William_Somerset_Maugham,English writer (born in France) of novels and short stories (1874-1965)
+10639,Maui Maui_Island,the second largest of the Hawaiian Islands
+10640,Mauldin Bill_Mauldin William_Henry_Mauldin,United States cartoonist noted for his drawings of soldiers in battle (1921-2003)
+10641,Mauna_Kea,an active volcano on north central Hawaii Island; highest peak in the Hawaiian Islands
+10642,Mauna_Loa,an active volcano on south central Hawaii Island
+10643,Maundy,a public ceremony on Maundy Thursday when the monarch distributes Maundy money
+10644,Maundy_Thursday Holy_Thursday,the Thursday before Easter; commemorates the Last Supper
+10645,Maundy_money,specially minted silver coins that are distributed by the British sovereign on Maundy Thursday
+10646,Maupassant Guy_de_Maupassant Henri_Rene_Albert_Guy_de_Maupassant,French writer noted especially for his short stories (1850-1893)
+10647,Mauriac Francois_Mauriac Francois_Charles_Mauriac,French novelist who wrote about the conflict between desire and religious belief (1885-1970)
+10648,Mauritania Islamic_Republic_of_Mauritania Mauritanie Muritaniya,a country in northwestern Africa with a provisional military government; achieved independence from France in 1960; largely western Sahara Desert
+10649,Mauritanian,a native or inhabitant of Mauritania
+10650,Mauritanian_monetary_unit,monetary unit in Mauritania
+10651,Mauritian,a native or inhabitant of Mauritius
+10652,Mauritian_monetary_unit,monetary unit in Mauritius
+10653,Mauritian_rupee rupee,the basic unit of money in Mauritius; equal to 100 cents
+10654,Mauritius,an island in the southwestern Indian Ocean
+10655,Mauritius Republic_of_Mauritius,a parliamentary state on the island of Mauritius
+10656,Maurois Andre_Maurois Emile_Herzog,French writer best known for his biographies (1885-1967)
+10657,Mauser,trademark for a repeating rifle or pistol
+10658,Mauser von_Mauser P._P._von_Mauser Peter_Paul_Mauser,German arms manufacturer and inventor of a repeating rifle and pistol (1838-1914)
+10659,Mausoleum_at_Halicarnasus,a white marble mausoleum 140 feet high built in 352 BC at Halicarnassus as a memorial to a king; destroyed in 1402
+10660,Maxim Sir_Hiram_Stevens_Maxim,English inventor (born in the United States) who invented the Maxim gun that was used in World War I (1840-1916)
+10661,Maxim_gun,an obsolete water-cooled machine gun having a single barrel
+10662,Maximian Marcus_Aurelius_Valerius_Maximianus Herculius,Roman Emperor from 286 until he abdicated in 305; when Diocletian divided the Roman Empire in 286 Maximian became emperor in the west (died in 311)
+10663,Maximilian's_sunflower Helianthus_maximilianii,tall perennial of central United States to Canada having golden-yellow flowers
+10664,Maxostoma genus_Maxostoma,a genus of fish in the family Catostomidae
+10665,Maxwell J._C._Maxwell James_Clerk_Maxwell,Scottish physicist whose equations unified electricity and magnetism and who recognized the electromagnetic nature of light (1831-1879)
+10666,Maxwell's_demon,an imaginary creature that controls a small hole in a partition that divides a chamber filled with gas into two parts and allows fast molecules to move in one direction and slow molecules to move in the other direction through the hole; this would result in one part of the container becoming warmer and the other cooler, thus decreasing entropy and violating the second law of thermodynamics
+10667,Maxwell's_equations,four differential equations that summarize classical properties of electromagnetic fields
+10668,Maxwell-Boltzmann_distribution_law Boltzmann_distribution_law,(physics) a law expressing the distribution of energy among the molecules of a gas in thermal equilibrium
+10669,Maxzide,trade name for an antihypertensive drug containing hydrochlorothiazide and another diuretic
+10670,May,the month following April and preceding June
+10671,May_Day First_of_May May_1,observed in many countries to celebrate the coming of spring; observed in Russia and related countries in honor of labor
+10672,May_apple,edible but insipid fruit of the May apple plant
+10673,May_queen queen_of_the_May,the girl chosen queen of a May Day festival
+10674,May_wine,a punch made of Moselle and sugar and sparkling water or champagne flavored with sweet woodruff
+10675,Maya,an ethnic minority speaking Mayan languages and living in Yucatan and adjacent areas
+10676,Maya Mayan Mayan_language,a family of American Indian languages spoken by Mayas
+10677,Mayaca genus_Mayaca,small genus of delicate mossy bog plants having white or violet flowers
+10678,Mayacaceae family_Mayacaceae,a monocotyledonous family of bog plants of order Xyridales
+10679,Mayakovski Vladimir_Vladimirovich_Mayakovski,Soviet poet; leader of Russian futurism (1893-1930)
+10680,Mayan Maya,a member of an American Indian people of Yucatan and Belize and Guatemala who had a culture (which reached its peak between AD 300 and 900) characterized by outstanding architecture and pottery and astronomy; "Mayans had a system of writing and an accurate calendar"
+10681,Mayday,an internationally recognized distress signal via radiotelephone (from the French m'aider)
+10682,Mayenne,a department of northwestern France in the Pays de la Loire region
+10683,Mayer Louis_B._Mayer Louis_Burt_Mayer,United States filmmaker (born in Russia) who founded his own film company and later merged with Samuel Goldwyn (1885-1957)
+10684,Mayer Marie_Goeppert_Mayer,United States physicist (born in Germany) noted for her research on the structure of the atom (1906-1972)
+10685,Mayetiola genus_Mayetiola,a genus of Cecidomyidae
+10686,Mayflower,the ship in which the Pilgrim Fathers sailed from England to Massachusetts in 1620
+10687,Mays Willie_Mays Willie_Howard_Mays_Jr. Say_Hey_Kid,United States baseball player (born in 1931)
+10688,Mazama genus_Mazama,brockets
+10689,Mazar-i-Sharif,a city in northern Afghanistan
+10690,Mazatlan,a port city in western Mexico on the Pacific Ocean; tourist center
+10691,Mazzini Giuseppe_Mazzini,Italian nationalist whose writings spurred the movement for a unified and independent Italy (1805-1872)
+10692,Mbabane capital_of_Swaziland,capital of Swaziland; located in northwestern Swaziland
+10693,Mbeya,a city in southwestern Tanzania
+10694,Mbundu Ovimbundu,an ethnic group speaking Umbundu and living in western Angola
+10695,McAlester,a town in southeastern Oklahoma
+10696,McAllen,a town in southern Texas on the Rio Grande
+10697,McArdle's_disease,an inherited disease in which abnormal amounts of glycogen accumulate in skeletal muscle; results in weakness and cramping
+10698,McBurney's_point,a point one third of the way along a line drawn from the hip to the umbilicus; the point of maximum sensitivity in acute appendicitis
+10699,McCarthy Joseph_McCarthy Joseph_Raymond_McCarthy,United States politician who unscrupulously accused many citizens of being Communists (1908-1957)
+10700,McCarthy Mary_McCarthy Mary_Therese_McCarthy,United States satirical novelist and literary critic (1912-1989)
+10701,McCarthyism,unscrupulously accusing people of disloyalty (as by saying they were Communists)
+10702,McCartney Paul_McCartney Sir_James_Paul_McCartney,English rock star and bass guitarist and songwriter who with John Lennon wrote most of the music for the Beatles (born in 1942)
+10703,McCauley Mary_McCauley Mary_Ludwig_Hays_McCauley Molly_Pitcher,heroine of the American Revolution who carried water to soldiers during the Battle of Monmouth Court House and took over her husband's gun when he was overcome by heat (1754-1832)
+10704,McCormick Cyrus_McCormick Cyrus_Hall_McCormick,United States inventor and manufacturer of a mechanical harvester (1809-1884)
+10705,McCormick John_McCormick,United States operatic tenor (born in Ireland) (1884-1945)
+10706,McCullers Carson_McCullers Carson_Smith_McCullers,United States novelist (1917-1967)
+10707,McGraw John_McGraw John_Joseph_McGraw,United States baseball player and manager (1873-1934)
+10708,McGuffey William_Holmes_McGuffey,United States educator who compiled the McGuffey Eclectic Readers (1800-1873)
+10709,McGuffey_Eclectic_Readers,readers that combined lessons in reading with moralistic messages
+10710,McGuffin MacGuffin,(film) a plot element that catches the viewers' attention or drives the plot; "the McGuffin was a key element of Alfred Hitchcock's films"
+10711,McIntosh,early-ripening apple popular in the northeastern United States; primarily eaten raw but suitable for applesauce
+10712,McKim Charles_Follen_McKim,United States neoclassical architect (1847-1909)
+10713,McKinley Mount_McKinley Mt._McKinley Denali,a mountain in south central Alaska; the highest peak in North America (20,300 feet high)
+10714,McKinley William_McKinley President_McKinley,25th President of the United States; was assassinated by an anarchist (1843-1901)
+10715,McLuhan Marshall_McLuhan Herbert_Marshall_McLuhan,Canadian writer noted for his analyses of the mass media (1911-1980)
+10716,McMaster John_Bach_McMaster,United States historian who wrote a nine volume history of the people of the United States (1852-1932)
+10717,McPherson Aimee_Semple_McPherson,United States evangelist (born in Canada) noted for her extravagant religious services (1890-1944)
+10718,Mead George_Herbert_Mead,United States philosopher of pragmatism (1863-1931)
+10719,Mead Margaret_Mead,United States anthropologist noted for her claims about adolescence and sexual behavior in Polynesian cultures (1901-1978)
+10720,Mead's_milkweed Asclepias_meadii Asclepia_meadii,milkweed of central North America; a threatened species
+10721,Meade George_Gordon_Meade,United States general in charge of the Union troops at the Battle of Gettysburg (1815-1872)
+10722,Meade James_Edward_Meade,English economist noted for his studies of international trade and finance (1907-1995)
+10723,Meany George_Meany,United States labor leader who was the first president of the AFL-CIO (1894-1980)
+10724,Mecca,joint capital (with Riyadh) of Saudi Arabia; located in western Saudi Arabia; as the birthplace of Muhammad it is the holiest city of Islam
+10725,Meccano Meccano_set,a child's construction set for making mechanical models
+10726,Meckel's_diverticulum,a congenital diverticulum in the ileum resulting from incomplete closure of the yolk sac
+10727,Meconopsis genus_Meconopsis,herbs almost entirely of mountains of China and Tibet; often monocarpic
+10728,Mecoptera order_Mecoptera,an order of carnivorous insects usually having long membranous wings and long beaklike heads with chewing mouths at the tip
+10729,Medaille_Militaire,a French military decoration
+10730,Medal_of_Honor Congressional_Medal_of_Honor,the highest U.S. military decoration awarded for bravery and valor in action `above and beyond the call of duty'
+10731,Medan,a city in Indonesia; located in northeastern Sumatra
+10732,Medawar Peter_Medawar Sir_Peter_Brian_Medawar,British immunologist (born in Brazil) who studied tissue transplants and discovered that the rejection of grafts was an immune response (1915-1987)
+10733,Medea,(Greek mythology) a princess of Colchis who aided Jason in taking the Golden Fleece from her father
+10734,Medellin,city in western Colombia; important coffee center
+10735,Medellin_cartel,a drug cartel in Colombia; controlled the production of cocaine from the 1970s until 1993 when the leader was killed
+10736,Medford,a town in southwestern Oregon; a summer resort
+10737,Medford,town in northeastern Massachusetts; residential suburb of Boston
+10738,Medicago genus_Medicago,a genus of herbs that resemble clover
+10739,Medicaid,health care for the needy; a federally and state-funded program
+10740,Medicaid_funds,public funds used to pay for Medicaid
+10741,Medical_Literature_Analysis_and_Retrieval_System MEDLARS,relational database of the United States National Library of Medicine for the storage and retrieval of bibliographical information concerning the biomedical literature
+10742,Medicare,health care for the aged; a federally administered system of health insurance available to persons aged 65 and over
+10743,Medici,aristocratic Italian family of powerful merchants and bankers who ruled Florence in the 15th century
+10744,Medieval_Greek Middle_Greek Byzantine_Greek,the Greek language from about 600 to 1200 AD
+10745,Medieval_Latin,Latin used for liturgical purposes during the Middle Ages
+10746,Medina Al_Madinah,a city in western Saudi Arabia; site of the tomb of Muhammad; the second most holy city of Islam
+10747,Medinilla genus_Medinilla,tropical Old World ornamental evergreen shrubs having fleshy leaves and large panicles of white pink flowers
+10748,Medinilla_magnifica,a beautiful tropical evergreen epiphytic shrub grown for its lush foliage and huge panicles of pink flowers; Philippines
+10749,Mediterranean Mediterranean_Sea,the largest inland sea; between Europe and Africa and Asia
+10750,Mediterranean_flour_moth Anagasta_kuehniella,small moth whose larvae damage stored grain and flour
+10751,Mediterranean_fruit_fly medfly Ceratitis_capitata,small black-and-white fly that damages citrus and other fruits by implanting eggs that hatch inside the fruit
+10752,Mediterranean_snapdragon Antirrhinum_majus,perennial native to the Mediterranean but widely cultivated for its purple or pink flowers
+10753,Mediterranean_water_shrew Neomys_anomalus,a type of water shrew
+10754,Medoc,red Bordeaux wine from the Medoc district of southwestern France
+10755,Medusa,(Greek mythology) a woman transformed into a Gorgon by Athena; she was slain by Perseus
+10756,Megachile genus_Megachile,type genus of the Megachilidae: leaf-cutting bees
+10757,Megachilidae family_Megachilidae,leaf-cutting and mason bees
+10758,Megachiroptera suborder_Megachiroptera,fruit bats
+10759,Megaderma genus_Megaderma,type genus of the Megadermatidae
+10760,Megadermatidae family_Megadermatidae,Old World false vampire bats
+10761,Megaera,one of the three Furies
+10762,Megalobatrachus genus_Megalobatrachus,giant salamanders; in some classifications included in the genus Cryptobranchus
+10763,Megalonychidae family_Megalonychidae,mammal family consisting of the two-toed sloths
+10764,Megaloptera suborder_Megaloptera,in some classifications considered a separate order: alderflies; dobsonflies; snake flies
+10765,Megalosauridae family_Megalosauridae,megalosaurs
+10766,Megapodiidae family_Megapodiidae,megapodes
+10767,Megapodius genus-Megapodius,type genus of the Megapodiidae
+10768,Megaptera genus_Megaptera,humpback whales
+10769,Megatheriidae family_Megatheriidae,extinct ground sloths
+10770,Megatherium genus_Megatherium,type genus of the Megatheriidae
+10771,Megillah,(Judaism) the scroll of parchment that contains the biblical story of Esther; traditionally read in synagogues to celebrate Purim
+10772,Meibomian_gland tarsal_gland,a long sebaceous gland that lubricates the eyelids; "bacterial infection of a Meibomian gland produces a stye"
+10773,Meiji_Tenno Mutsuhito,emperor of Japan who encouraged the modernization of Japan (1852-1912)
+10774,Meir Golda_Meir,Israeli statesman (born in Russia) (1898-1978)
+10775,Meissner Fritz_W._Meissner,German physicist (1882-1974)
+10776,Meissner Georg_Meissner,German anatomist (1829-1905)
+10777,Meitner Lise_Meitner,Swedish physicist (born in Austria) who worked in the field of radiochemistry with Otto Hahn and formulated the concept of nuclear fission with Otto Frisch (1878-1968)
+10778,Mekong Mekong_River,an Asian river; flows through a large delta in southern Vietnam into the South China Sea
+10779,Melampodium genus_Melampodium,herbs and subshrubs of warm North America
+10780,Melampsora genus_Melampsora,rusts having sessile one-celled teliospores in a single layer
+10781,Melampsoraceae family_Melampsoraceae,rust fungi
+10782,Melanchthon Philipp_Melanchthon Philipp_Schwarzerd,German theologian and Luther's successor as leader of the Reformation in Germany (1497-1560)
+10783,Melanerpes genus_Melanerpes,a genus of Picidae
+10784,Melanesia,the islands in the southwestern part of Oceania
+10785,Melanitta genus_Melanitta,scoters
+10786,Melanogrammus genus_Melanogrammus,haddock
+10787,Melanoplus genus_Melanoplus,New World migratory locusts and common American grasshoppers
+10788,Melanotis genus_Melanotis,a genus of Mimidae
+10789,Melanthiaceae family_Melanthiaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted: includes Aletris; Narthecium; Veratrum
+10790,Melastoma genus_Melastoma,type genus of Melastomataceae; Asiatic shrubs with leathery leaves and large purple flowers followed by edible fleshy black berries
+10791,Melastomataceae family_Melastomataceae Melastomaceae family_Melastomaceae meadow-beauty_family,a family of trees and bushes and herbs of order Myrtales; many are cultivated as ornamentals
+10792,Melba Dame_Nellie_Melba Helen_Porter_Mitchell,Australian operatic soprano (1861-1931)
+10793,Melba_toast,very thin crisp brown toast
+10794,Melbourne,a resort town in east central Florida
+10795,Melbourne,the capital of Victoria state and 2nd largest Australian city; a financial and commercial center
+10796,Melchior,(New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus; usually represented as a king of Nubia
+10797,Melchior Lauritz_Melchior Lauritz_Lebrecht_Hommel_Melchior,United States operatic tenor (born in Denmark) noted for his Wagnerian roles (1890-1973)
+10798,Meleagrididae family_Meleagrididae,turkeys and some extinct forms
+10799,Meleagris genus_Meleagris,type genus of the Meleagrididae: wild and domestic turkeys
+10800,Meles genus_Meles,in some classifications: type genus of the subfamily Melinae
+10801,Melia genus_Melia,type genus of the Meliaceae: East Indian and Australian deciduous trees with leaves resembling those of the ash
+10802,Meliaceae family_Meliaceae mahogany_family,tropical trees and shrubs including many important timber and ornamental trees
+10803,Melicoccus genus_Melicoccus Melicocca genus_Melicocca,tropical American trees and shrubs bearing berries
+10804,Melicytus genus_Melicytus,a genus of deciduous shrubs or trees; fruit is a berry; grow in New Zealand and Fiji and Solomon Islands
+10805,Melinae subfamily_Melinae,subdivision not used in some classifications: badgers
+10806,Meliphagidae family_Meliphagidae,honey eaters
+10807,Melissa genus_Melissa,a genus of Old World mints of the family Labiatae
+10808,Melkite Melchite,an eastern Christian in Egypt or Syria who adheres to the Orthodox faith as defined by the council of Chalcedon in 451 and as accepted by the Byzantine emperor
+10809,Melkite Melchite,an Orthodox Christian or Uniate Christian belonging to the patriarchate of Alexandria or Antioch or Jerusalem
+10810,Mellivora genus_Mellivora,ratels
+10811,Mellon Andrew_Mellon Andrew_W._Mellon Andrew_William_Mellon,United States financier and philanthropist (1855-1937)
+10812,Melocactus genus_Melocactus,genus of strongly ribbed globose or spheroid cacti of tropical South and Central America and the Caribbean
+10813,Melogale genus_Melogale,a genus of Mustelidae
+10814,Meloidae family_Meloidae,blister beetles
+10815,Melolontha genus_Melolontha,a genus of Melolonthidae
+10816,Melolonthidae subfamily_Melolonthidae,considered a separate family in some classification systems
+10817,Melophagus genus_Melophagus,an arthropod genus of wingless flies including the sheep ked
+10818,Melopsittacus genus_Melopsittacus,a genus of Psittacidae
+10819,Melospiza genus_Melospiza,American song sparrow and swamp sparrow
+10820,Melpomene,(Greek mythology) the Muse of tragedy
+10821,Melursus genus_Melursus,sloth bears; in some classifications not a separate genus from Ursus
+10822,Melville Herman_Melville,United States writer of novels and short stories (1819-1891)
+10823,Membracidae family_Membracidae,plant hoppers: treehoppers
+10824,Memorial_Day Decoration_Day,legal holiday in the United States, last Monday in May; commemorates the members of the United States armed forces who were killed in war
+10825,Memphis,largest city of Tennessee; located in southwestern Tennessee on bluffs overlooking the Mississippi River
+10826,Memphis,an ancient city of Egypt on the Nile (south of Cairo)
+10827,Menai_Strait,a strait in northern Wales between Anglesey Island and the mainland
+10828,Menander,comic dramatist of ancient Greece (342-292 BC)
+10829,Mencken H._L._Mencken Henry_Louis_Mencken,United States journalist and literary critic (1880-1956)
+10830,Mendel Gregor_Mendel Johann_Mendel,Augustinian monk and botanist whose experiments in breeding garden peas led to his eventual recognition as founder of the science of genetics (1822-1884)
+10831,Mendel's_law,(genetics) one of two principles of heredity formulated by Gregor Mendel on the basis of his experiments with plants; the principles were limited and modified by subsequent genetic research
+10832,Mendeleyev Mendeleev Dmitri_Mendeleyev Dmitri_Mendeleev Dmitri_Ivanovich_Mendeleyev Dmitri_Ivanovich_Mendeleev,Russian chemist who developed a periodic table of the chemical elements and predicted the discovery of several new elements (1834-1907)
+10833,Mendelian,a follower of Mendelism
+10834,Mendelism Mendelianism,the theory of inheritance based on Mendel's laws
+10835,Mendelsohn Erich_Mendelsohn,German architect who migrated to Palestine in 1937 (1887-1953)
+10836,Mendelssohn Felix_Mendelssohn Jakob_Ludwig_Felix_Mendelssohn-Bartholdy,German musician and romantic composer of orchestral and choral works (1809-1847)
+10837,Mendenhall_Glacier Great_Mendenhall_Glacier,a glacier of the Piedmont type near Juneau in Alaska
+10838,Menelaus,(Greek mythology) the king of Sparta at the time of the Trojan War; brother of Agamemnon; husband of Helen
+10839,Meniere Prosper_Meniere,French otologist who first described a form of vertigo now known as Meniere's disease and identified the semicircular canals as the site of the lesion (1799-1862)
+10840,Meniere's_disease,a disease of the inner ear characterized by episodes of dizziness and tinnitus and progressive hearing loss (usually unilateral)
+10841,Menippe genus_Menippe,stone crabs
+10842,Meniscium genus_Meniscium,terrestrial ferns of tropical Americas
+10843,Menispermaceae family_Menispermaceae moonseed_family,herbaceous or woody climbers
+10844,Menispermum genus_Menispermum,climbing herbs
+10845,Menninger Charles_Menninger Charles_Frederick_Menninger,United States psychiatrist who with his sons founded a famous psychiatric clinic in Topeka (1862-1953)
+10846,Menninger Karl_Menninger Karl_Augustus_Menninger,United States psychiatrist and son of Charles Menninger (1893-1990)
+10847,Menninger William_Menninger William_Claire_Menninger,United States psychiatrist and son of Charles Menninger (1899-1966)
+10848,Mennonite,a member of an Anabaptist movement in Holland noted for its simplicity of life
+10849,Mennonite_Church,formed from the Anabaptist movement in the 16th century; noted for its simplicity of life
+10850,Mennonitism,system of beliefs and practices including belief in scriptural authority; plain dress; adult baptism; foot washing; restriction of marriage to members of the group
+10851,Menomini Menominee,a member of the federally recognized tribe of Algonquian people living on a reservation in central Wisconsin
+10852,Menomini Menominee,the Algonquian language spoken by the Menomini
+10853,Menopon genus_Menopon,chicken lice
+10854,Menorah,(Judaism) a candelabrum with seven branches used in ceremonies to symbolize the seven days of Creation
+10855,Menotti Gian_Carlo_Menotti,United States composer (born in Italy) of operas (born in 1911)
+10856,Menotyphla suborder_Menotyphla,elephant shrews; tree shrews
+10857,Mensa,a faint constellation in the polar region of the southern hemisphere and containing part of the Large Magellanic Cloud
+10858,Menshevik,a Russian member of the liberal minority group that advocated gradual reform and opposed the Bolsheviks before and during the Russian Revolution
+10859,Mentha genus_Mentha,mint plants
+10860,Menticirrhus genus_Menticirrhus,kingfishes; whiting
+10861,Mentzelia genus_Mentzelia,genus of bristly herbs or subshrubs of western America lacking stinging hairs
+10862,Menuhin Yehudi_Menuhin Sir_Yehudi_Menuhin,British violinist (born in the United States) who began his career as a child prodigy in the 1920s (1916-1999)
+10863,Menura genus_Menura,type and sole genus of the family Menuridae
+10864,Menurae suborder_Menurae,lyrebirds and scrubbirds
+10865,Menuridae family_Menuridae,lyrebirds
+10866,Menyanthaceae family_Menyanthaceae buckbean_family,a dicotyledonous family of marsh plants of order Gentianales
+10867,Menyanthes genus_Menyanthes,the type genus of the Menyanthaceae; one species: bogbeans
+10868,Menziesia genus_Menziesia,deciduous shrubs of North America and eastern Asia
+10869,Mephistopheles,evil spirit to whom Faust sold his soul
+10870,Mephitinae subfamily_Mephitinae,subdivision not used in some classifications: skunks
+10871,Mephitis genus_Mephitis,in some classifications: type genus of the subfamily Mephitinae
+10872,Mercalli_scale,a scale formerly used to describe the magnitude of an earthquake; an earthquake detected only by seismographs is a I and an earthquake that destroys all buildings is a XII
+10873,Mercator Gerardus_Mercator Gerhard_Kremer,Flemish geographer who lived in Germany; he invented the Mercator projection of maps of the globe (1512-1594)
+10874,Mercator_projection Mercator's_projection,a map projection of the earth onto a cylinder; areas appear greater the farther they are from the equator
+10875,Mercedario,a mountain in the Andes in Argentina (22,210 feet high)
+10876,Mercenaria genus_Mercenaria,a genus of Veneridae
+10877,Mercer John_Mercer,British maker of printed calico cloth who invented mercerizing (1791-1866)
+10878,Merckx Eddy_Merckx,Belgian racing cyclist who won the Tour de France five times (born in 1945)
+10879,Mercouri Melina_Mercouri Anna_Amalia_Mercouri,Greek film actress (1925-1994)
+10880,Mercurialis genus_Mercurialis,a genus of slender herbs belonging to the family Euphorbiaceae
+10881,Mercury,(Roman mythology) messenger of Jupiter and god of commerce; counterpart of Greek Hermes
+10882,Mercury,the smallest planet and the nearest to the sun
+10883,Mercury_program,a program of rocket-powered flights undertaken by US between 1961 and 1963 with the goal of putting a man in orbit around the earth; "under the Mercury program each flight had one astronaut"
+10884,Meredith George_Meredith,English novelist and poet (1828-1909)
+10885,Meredith James_Meredith James_Howard_Meredith,United States civil rights leader whose college registration caused riots in traditionally segregated Mississippi (born in 1933)
+10886,Mergenthaler Ottmar_Mergenthaler,United States inventor (born in Germany) of the Linotype machine (1854-1899)
+10887,Merginae subfamily_Merginae,mergansers and closely related diving birds
+10888,Mergus genus_Mergus,mergansers
+10889,Merida,the capital of the Mexican state of Yucatan
+10890,Meridian,a town in eastern Mississippi
+10891,Meriones genus_Meriones,a genus of Cricetidae
+10892,Merlangus genus_Merlangus,whitings
+10893,Merlin,(Arthurian legend) the magician who acted as King Arthur's advisor
+10894,Merlot,black wine grape originally from the region of Bordeaux
+10895,Merlot,dry red wine made from a grape grown widely in Bordeaux and California
+10896,Merluccius genus_Merluccius,hakes
+10897,Merman Ethel_Merman,United States singer who appeared in several musical comedies (1909-1984)
+10898,Meropidae family_Meropidae,bee-eaters
+10899,Merops genus_Merops,type genus of the Meropidae
+10900,Merostomata class_Merostomata,used in some classifications; includes the orders Xiphosura and Eurypterida
+10901,Merovingian,a member of the Merovingian dynasty
+10902,Merovingian Merovingian_dynasty,a Frankish dynasty founded by Clovis I that reigned in Gaul and Germany from about 500 to 750
+10903,Merrimac,an ironclad vessel built by the Confederate forces in the hope of breaking the blockade imposed by the North
+10904,Merrimack Merrimack_River,a river that rises in south central New Hampshire and flows through Concord and Manchester into Massachusetts and empties into the Atlantic Ocean
+10905,Mertensia genus_Mertensia,a genus of herbs belonging to the family Boraginaceae that grow in temperate regions and have blue or purple flowers shaped like funnels
+10906,Merton Robert_Merton Robert_King_Merton,United States sociologist (1910-2003)
+10907,Merton Thomas_Merton,United States religious and writer (1915-1968)
+10908,Meryta genus_Meryta,small to medium evergreen dioecious trees of oceanic climates: puka
+10909,Mesa,a city in Arizona just to the east of Phoenix; originally a suburb of Phoenix
+10910,Mesa_Verde_National_Park,a national park in Colorado containing prehistoric cliff dwellings; semiarid landscape
+10911,Mesabi_Range,a range of hills in northeastern Minnesota where rich iron ore deposits were discovered in 1887
+10912,Mesasamkranti,Hindu solar holiday at the beginning of the new astrological year when the sun enters the constellation Aries
+10913,Mesembryanthemum genus_Mesembryanthemum,South African annual or biennial plants having flowers that open only in bright sunlight
+10914,Mesmer Franz_Anton_Mesmer Friedrich_Anton_Mesmer,Austrian physician who tried to treat diseases with a form of hypnotism (1734-1815)
+10915,Mesoamerica,Mexico and Central America
+10916,Mesoamerican,a member of one of the various peoples inhabiting Mesoamerica
+10917,Mesocricetus genus_Mesocricetus,golden hamsters
+10918,Mesolithic_Age Mesolithic Epipaleolithic,middle part of the Stone Age beginning about 15,000 years ago
+10919,Mesopotamia,the land between the Tigris and Euphrates; site of several ancient civilizations; part of what is now known as Iraq
+10920,Mesozoic Mesozoic_era Age_of_Reptiles,from 230 million to 63 million years ago
+10921,Mespilus genus_Mespilus,medlars
+10922,Messiah,Jesus Christ; considered by Christians to be the promised deliverer
+10923,Messiah,the awaited king of the Jews; the promised and expected deliverer of the Jewish people
+10924,Messiah,an oratorio composed by Handel in 1742
+10925,Messidor,tenth month of the Revolutionary calendar (June and July); the month of harvest
+10926,Messina,a port city in northeastern Sicily on the Strait of Messina
+10927,Mesua genus_Mesua,genus of tropical Asiatic trees having large solitary flowers
+10928,Metatheria subclass_Metatheria,pouched animals
+10929,Metaurus_River,a battle during the second Punic War (207 BC); Hannibal's brother Hasdrubal was defeated by the Romans which ended Hannibal's hopes for success in Italy
+10930,Metazoa subkingdom_Metazoa,multicellular animals having cells differentiated into tissues and organs and usually a digestive cavity and nervous system
+10931,Metchnikoff Elie_Metchnikoff Metchnikov Elie_Metchnikov Ilya_Ilich_Metchnikov,Russian bacteriologist in France who formulated the theory of phagocytosis (1845-1916)
+10932,Methodism,the religious beliefs and practices of Methodists characterized by concern with social welfare and public morals
+10933,Methodist,a follower of Wesleyanism as practiced by the Methodist Church
+10934,Methodist_Church Methodists,a Protestant denomination founded on the principles of John Wesley and Charles Wesley
+10935,Methodist_denomination,group of Methodist congregations
+10936,Methuselah,(Old Testament) a patriarch (grandfather of Noah) who is said to have lived 969 years
+10937,Metis,a person in western Canada who is of Caucasian and American Indian ancestry
+10938,Metroxylon genus_Metroxylon,a genus of Malayan pinnate-leaved palm trees that flower and fruit once and then die
+10939,Metternich Klemens_Metternich Prince_Klemens_Wenzel_Nepomuk_Lothar_von_Metternich,Austrian statesman (1773-1859)
+10940,Meuniere_butter lemon_butter,clarified butter browned slowly and seasoned with lemon juice and parsley
+10941,Meuse Meuse_River,a European river; flows into the North Sea
+10942,Meuse Meuse_River Argonne Argonne_Forest Meuse-Argonne Meuse-Argonne_operation,an American operation in World War I (1918); American troops under Pershing drove back the German armies which were saved only by the armistice on November 11
+10943,Mexicali,a city in northwestern Mexico near the California border
+10944,Mexican,a native or inhabitant of Mexico
+10945,Mexican-American Mexicano,a Mexican (or person of Mexican descent) living in the United States
+10946,Mexican_Revolution,a revolution for agrarian reforms led in northern Mexico by Pancho Villa and in southern Mexico by Emiliano Zapata (1910-1911)
+10947,Mexican_Spanish,the dialect of Spanish spoken in Mexico
+10948,Mexican_War,after disputes over Texas lands that were settled by Mexicans the United States declared war on Mexico in 1846 and by treaty in 1848 took Texas and California and Arizona and New Mexico and Nevada and Utah and part of Colorado and paid Mexico $15,000,000
+10949,Mexican_bean_beetle bean_beetle Epilachna_varivestis,introduced into the United States from Mexico; feeds on the foliage of the bean plant
+10950,Mexican_cypress cedar_of_Goa Portuguese_cypress Cupressus_lusitanica,tall spreading evergreen found in Mexico having drooping branches; believed to have been introduced into Portugal from Goa
+10951,Mexican_hairless,any of an old breed of small nearly hairless dogs of Mexico
+10952,Mexican_hat Ratibida_columnaris,coneflower with flower heads resembling a Mexican hat with a tall red-brown disk and drooping yellow or yellow and red-brown rays; grows in the great plains along base of Rocky Mountains
+10953,Mexican_hyssop Agastache_mexicana,erect perennial of Mexico having rose to crimson flowers
+10954,Mexican_juniper drooping_juniper Juniperus_flaccida,small tree of western Texas and mountains of Mexico having spreading branches with drooping branchlets
+10955,Mexican_mint Salvia_divinorum,an herb from Oaxaca that has a powerful hallucinogenic effect; the active ingredient is salvinorin
+10956,Mexican_monetary_unit,monetary unit in Mexico
+10957,Mexican_peso peso,the basic unit of money in Mexico; equal to 100 centavos
+10958,Mexican_pocket_mouse Liomys_irroratus,large pocket mouse of Mexico
+10959,Mexican_poppy Argemone_mexicana,annual herb with prickly stems and large yellow flowers; southern United States to West Indies and Mexico
+10960,Mexican_standoff,a situation in which no one can emerge as a clear winner
+10961,Mexican_sunflower tithonia,any plant of the genus Tithonia; tall coarse herbs or shrubs of Mexico to Panama having large flower heads resembling sunflowers with yellow disc florets and golden-yellow to orange-scarlet rays
+10962,Mexico United_Mexican_States,a republic in southern North America; became independent from Spain in 1810
+10963,Mexico_City Ciudad_de_Mexico Mexican_capital capital_of_Mexico,the capital and largest city of Mexico is a political and cultural and commercial and industrial center; one of the world's largest cities
+10964,Meyerbeer Giacomo_Meyerbeer Jakob_Liebmann_Beer,German composer of operas in a style that influenced Richard Wagner (1791-1864)
+10965,Meyerhof Otto_Meyerhof Otto_Fritz_Meyerhof,United States biochemist (born in Germany) who studied the metabolism of muscles (1884-1951)
+10966,Miami,a member of the extinct Algonquian people formerly living in northern Indiana and southern Michigan
+10967,Miami,a city and resort in southeastern Florida on Biscayne Bay; the best known city in Florida; a haven for retirees and a refuge for Cubans fleeing Castro
+10968,Miami_Beach,a city in southeastern Florida on an island between Biscayne Bay and the Atlantic Ocean; known for fashionable resort hotels
+10969,Micah Micheas,a minor Hebrew prophet (8th century BC)
+10970,Micah Micheas Book_of_Micah,an Old Testament book telling the prophecies of Micah foretelling the destruction of Jerusalem
+10971,Micawber Wilkins_Micawber,fictional character created by Charles Dickens; an eternal optimist
+10972,Michael,(Old Testament) the guardian archangel of the Jews
+10973,Michaelmas Michaelmas_Day September_29,honoring the archangel Michael; a quarter day in England, Wales, and Ireland
+10974,Michaelmas_daisy New_York_aster Aster_novi-belgii,North American perennial herb having small autumn-blooming purple or pink or white flowers; widely naturalized in Europe
+10975,Michaelmastide,the season of Michaelmas
+10976,Michelangelo Michelangelo_Buonarroti,Florentine sculptor and painter and architect; one of the outstanding figures of the Renaissance (1475-1564)
+10977,Michelson A._A._Michelson Albert_Michelson Albert_Abraham_Michelson,United States physicist (born in Germany) who collaborated with Morley in the Michelson-Morley experiment (1852-1931)
+10978,Michelson-Morley_experiment,a celebrated experiment conducted by Albert Michelson and Edward Morley; their failure to detect any influence of the earth's motion on the velocity of light was the starting point for Einstein's theory of relativity
+10979,Michener James_Michener James_Albert_Michener,United States writer of historical novels (1907-1997)
+10980,Michigan Chicago Newmarket boodle stops,a gambling card game in which chips are placed on the ace and king and queen and jack of separate suits (taken from a separate deck); a player plays the lowest card of a suit in his hand and successively higher cards are played until the sequence stops; the player who plays a card matching one in the layout wins all the chips on that card
+10981,Michigan Wolverine_State Great_Lakes_State MI Mich.,a midwestern state in north central United States in the Great Lakes region
+10982,Michigan_lily Lilium_michiganense,lily of central North America having recurved orange-red flowers with deep crimson spots
+10983,Michigander Wolverine,a native or resident of Michigan
+10984,Mickey_Finn,slang term for knockout drops
+10985,Mickey_Mouse,a fictional mouse created in animated film strips by Walt Disney
+10986,Micmac,the Algonquian language of the Micmac
+10987,Micmac Mikmaq,a member of the Algonquian people inhabiting the Maritime Provinces of Canada
+10988,Microcentrum genus_Microcentrum,katydids
+10989,Microchiroptera suborder_Microchiroptera,most of the bats in the world; all bats except fruit bats insectivorous bats
+10990,Micrococcaceae family_Micrococcaceae,spherical or elliptical usually aerobic eubacteria that produce yellow or orange or red pigment; includes toxin-producing forms as well as harmless commensals and saprophytes
+10991,Micrococcus genus_Micrococcus,type genus of the family Micrococcaceae
+10992,Microdesmidae family_Microdesmidae,worm fish
+10993,Microdipodops genus_Microdipodops,kangaroo mice
+10994,Microgramma genus_Microgramma,epiphytic ferns of tropical America and Africa
+10995,Microhylidae family_Microhylidae Brevicipitidae family_Brevicipitidae,narrow-mouthed toads and sheep frogs; some burrow and some are arboreal; found worldwide
+10996,Micromeria genus_Micromeria,large genus of fragrant chiefly Old World herbs
+10997,Micromyx genus_Micromyx,Old World harvest mice
+10998,Micronesia,the islands in the northwestern part of Oceania
+10999,Micronesia Federated_States_of_Micronesia TT,a country scattered over Micronesia with a constitutional government in free association with the United States; achieved independence in 1986
+11000,Micronor,trade name for and oral contraceptive containing the progestin compound norethindrone
+11001,Micropogonias genus_Micropogonias,croakers
+11002,Micropterus genus_Micropterus,American freshwater black basses
+11003,Microscopium,a faint constellation in the southern hemisphere near Sagittarius and Capricornus
+11004,Microsorium genus_Microsorium,tropical usually epiphytic ferns; Africa to Asia and Polynesia to Australia
+11005,Microsporum genus_Microsporum,a genus of fungus of the family Moniliaceae; causes ringworm
+11006,Microstomus genus_Microstomus,a genus of Pleuronectidae
+11007,Microstrobos genus_Microstrobos,2 species of small evergreen shrubs of Australia and Tasmania
+11008,Microtaggant,(trademark) a microscopic and traceable identification particle used to trace explosives or other hazardous materials or to prevent counterfeiting
+11009,Microtus genus_Microtus,voles of the northern hemisphere
+11010,Micruroides genus_Micruroides,coral snakes
+11011,Micrurus genus_Micrurus,coral snakes
+11012,Mid-Atlantic_Ridge,a very long narrow elevation on the ocean floor that runs all the way from Iceland in the North Atlantic to Bouvet Island in the South Atlantic
+11013,Mid-Atlantic_states,a region of the eastern United States comprising New York and New Jersey and Pennsylvania and Delaware and Maryland
+11014,Midas,(Greek legend) the greedy king of Phrygia who Dionysus gave the power to turn everything he touched into gold
+11015,Midas_touch,an ability to make and manage large amounts of money
+11016,Middle_Ages Dark_Ages,the period of history between classical antiquity and the Italian Renaissance
+11017,Middle_East Mideast Near_East,the area around the eastern Mediterranean; from Turkey to northern Africa and eastward to Iran; the site of such ancient civilizations as Phoenicia and Babylon and Egypt and the birthplace of Judaism and Christianity and Islam; had continuous economic and political turmoil in the 20th century; "the Middle East is the cradle of Western civilization"
+11018,Middle_English,English from about 1100 to 1450
+11019,Middle_High_German,High German from 1100 to 1500
+11020,Middle_Irish,Irish Gaelic from 1100 to 1500
+11021,Middle_Low_German,Low German from 1100 to 1500
+11022,Middle_Paleolithic,the time period of Neanderthal man; ended about 35,000 years BC
+11023,Middleton Thomas_Middleton,English playwright and pamphleteer (1570-1627)
+11024,Midgard,(Norse mythology) the abode of humans in Norse mythology
+11025,Midi,the southern part of France
+11026,Midi-Pyrenees,a region in southwestern France
+11027,Midland,a town in west central Texas
+11028,Midrash,(Judaism) an ancient commentary on part of the Hebrew scriptures that is based on Jewish methods of interpretation and attached to the biblical text
+11029,Midsummer_Day Midsummer's_Day St_John's_Day June_24,a quarter day in England, Wales, and Ireland
+11030,Midsummer_Eve Midsummer_Night St_John's_Eve St_John's_Night June_23,the night before Midsummer Day
+11031,Midway Battle_of_Midway,naval battle of World War II (June 1942); American planes based on land and on carriers decisively defeated a Japanese fleet on its way to invade the Midway Islands
+11032,Midway_Islands,an atoll in the Hawaiian Islands some 1300 miles to the northwest of Honolulu; site of an important United States naval base
+11033,Midwest middle_west midwestern_United_States,the north central region of the United States (sometimes called the heartland or the breadbasket of America)
+11034,Mies_Van_Der_Rohe Ludwig_Mies_Van_Der_Rohe,United States architect (born in Germany) who built unornamented steel frame and glass skyscrapers (1886-1969)
+11035,Mighty_Mouse,a fictional mouse endowed with great strength and courage
+11036,Mikania genus_Mikania,large genus of evergreen lianas of tropical America
+11037,Mikir-Meithei,Kamarupan languages spoken in the states of Manipur and Assam in northeastern India
+11038,Milady,an English noblewoman
+11039,Milan Milano,the capital of Lombardy in northern Italy; has been an international center of trade and industry since the Middle Ages
+11040,Milanese,a native or inhabitant of Milan
+11041,Milhaud Darius_Milhaud,French composer of works that combine jazz and polytonality and Brazilian music (1892-1974)
+11042,Militant_Tendency,a Trotskyist political organization in Great Britain set up in 1964 inside the Labour Party
+11043,Milk Milk_River,a river that rises in the Rockies in northwestern Montana and flows eastward to become a tributary of the Missouri River
+11044,Milky_Way Milky_Way_Galaxy Milky_Way_System,the galaxy containing the solar system; consists of millions of stars that can be seen as a diffuse band of light stretching across the night sky
+11045,Mill James_Mill,Scottish philosopher who expounded Bentham's utilitarianism; father of John Stuart Mill (1773-1836)
+11046,Mill John_Mill John_Stuart_Mill,English philosopher and economist remembered for his interpretations of empiricism and utilitarianism (1806-1873)
+11047,Millais Sir_John_Everett_Millais,Englishman and Pre-Raphaelite painter (1829-1896)
+11048,Millay Edna_Millay Edna_Saint_Vincent_Millay,United States poet (1892-1950)
+11049,Miller Arthur_Miller,United States playwright (1915-2005)
+11050,Miller Glenn_Miller Alton_Glenn_Miller,United States bandleader of a popular big band (1909-1944)
+11051,Miller Henry_Miller Henry_Valentine_Miller,United States novelist whose novels were originally banned as pornographic (1891-1980)
+11052,Millet Jean_Francois_Millet,French painter of rural scenes (1814-1875)
+11053,Millikan Robert_Andrews_Millikan,United States physicist who isolated the electron and measured its charge (1868-1953)
+11054,Mills Robert_Mills,United States architect who was the presidentially appointed architect of Washington D.C. (1781-1855)
+11055,Milne A._A._Milne Alan_Alexander_Milne,English writer of stories for children (1882-1956)
+11056,Miltiades,Athenian general who defeated the Persians at Marathon (540-489)
+11057,Milton John_Milton,English poet; remembered primarily as the author of an epic poem describing humanity's fall from grace (1608-1674)
+11058,Miltonia genus_Miltonia,genus of tropical American orchids
+11059,Milvus genus-Milvus,a genus including the common European kits
+11060,Milwaukee,largest city of Wisconsin; located in southeastern Wisconsin on the western shore of Lake Michigan; a flourishing agricultural center known for its breweries
+11061,Mimamsa,(from the Sanskrit word for `reflection' or `interpretation') one of six orthodox philosophical systems or viewpoints on ritual traditions rooted in the Vedas and the Brahmanas as opposed to Vedanta which relies mostly on the Upanishads
+11062,Mimidae family_Mimidae,sometimes considered a subfamily of Troglodytidae: mockingbirds; catbirds; thrashers
+11063,Mimir,(Norse mythology) giant who lives in the roots of Yggdrasil and guards the well of wisdom
+11064,Mimosaceae family_Mimosaceae,family of spiny woody plants (usually shrubs or small trees) whose leaves mimic animals in sensitivity to touch; commonly included in the family Leguminosae
+11065,Mimosoideae subfamily_Mimosoideae,alternative name used in some classification systems for the family Mimosaceae
+11066,Mimus genus_Mimus,type genus of the family Mimidae: mockingbirds
+11067,Min,an Egyptian god of procreation
+11068,Min Min_dialect Fukien Fukkianese Hokkianese Amoy Taiwanese,any of the forms of Chinese spoken in Fukien province
+11069,Minamata_Bay,a bay on the west coast of Kyushu; in the 1950s industrial wastes caused mercury poisoning among the Japanese people who ate fish from Minamata Bay
+11070,Minamata_disease,a form of mercury poisoning among people who ate fish from mercury-contaminated waters of Minamata Bay off Japan in the 1950s; characterized by severe neurological degeneration
+11071,Minato_Ohashi_Bridge,cantilever bridge at Osaka, Japan
+11072,Mindanao,the second largest island of the Philippines at the southern end of the archipelago; mountainous and volcanic
+11073,Minden battle_of_Minden,a battle in the Seven Years' War (1759) in which the English forces and their allies defeated the French
+11074,Mindoro,a mountainous island in the central Philippines
+11075,Minerva,(Roman mythology) goddess of wisdom; counterpart of Greek Athena
+11076,Ming Ming_dynasty,the imperial dynasty of China from 1368 to 1644
+11077,Miniconju,a member of a group of Siouan people who constituted a division of the Teton Sioux
+11078,Minkowski Hermann_Minkowski,German mathematician (born in Russia) who suggested the concept of four-dimensional space-time (1864-1909)
+11079,Minneapolis,largest city in Minnesota; located in southeastern Minnesota on the Mississippi river; noted for flour mills; one of the Twin Cities
+11080,Minnesota Gopher_State North_Star_State MN Minn.,a midwestern state
+11081,Minnesota_Multiphasic_Personality_Inventory MMPI,a self-report personality inventory consisting of 550 items that describe feelings or actions which the person is asked to agree with or disagree with; many scales estimating traits and qualities of personality have been developed using MMPI items
+11082,Minnesotan Gopher,a native or resident of Minnesota
+11083,Minnie_Mouse,the partner of Mickey Mouse
+11084,Minoan,a Cretan who lived in the bronze-age culture of Crete about 3000-1100 BC
+11085,Minoan_civilization Minoan_civilisation Minoan_culture,the bronze-age culture of Crete that flourished 3000-1100 BC
+11086,Minos,son of Zeus and Europa; king of ancient Crete; ordered Daedalus to build the labyrinth; after death Minos became a judge in the underworld
+11087,Minotaur,(Greek mythology) a mythical monster with the head of a bull and the body of a man; slain by Theseus
+11088,Minsk capital_of_Belarus,the capital of Belarus and of the Commonwealth of Independent States
+11089,Minuartia genus_Minuartia,mostly perennial herbs of northern hemisphere often with mat-forming habit; most often placed in genus Arenaria: sandworts
+11090,Minuit Peter_Minuit Minnewit Peter_Minnewit,Dutch colonist who bought Manhattan from the Native Americans for the equivalent of $24 (1580-1638)
+11091,Minuteman,an American militiaman prior to and during the American Revolution
+11092,Minuteman,a strategic weapon system using a guided missile of intercontinental range; missiles are equipped with nuclear warheads and dispersed in hardened silos
+11093,Miocene Miocene_epoch,from 25 million to 13 million years ago; appearance of grazing mammals
+11094,Mirabeau Comte_de_Mirabeau Honore-Gabriel_Victor_Riqueti,French revolutionary who was prominent in the early days of the French Revolution (1749-1791)
+11095,Mirabilis genus_Mirabilis,four o'clocks
+11096,Miranda_rule,the rule that police (when interrogating you after an arrest) are obliged to warn you that anything you say may be used as evidence and to read you your constitutional rights (the right to a lawyer and the right to remain silent until advised by a lawyer)
+11097,Miri Mirish Abor Dafla,little known Kamarupan languages
+11098,Miridae family_Miridae Capsidae family_Capsidae,leaf bugs
+11099,Miro Joan_Miro,Spanish surrealist painter (1893-1983)
+11100,Mirounga genus_Mirounga,elephant seals
+11101,Mishna Mishnah,the first part of the Talmud; a collection of early oral interpretations of the scriptures that was compiled about AD 200
+11102,Miss,a form of address for an unmarried woman
+11103,Mississippi Magnolia_State MS Miss.,a state in the Deep South on the gulf of Mexico; one of the Confederate States during the American Civil War
+11104,Mississippi Mississippi_River,a major North American river and the chief river of the United States; rises in northern Minnesota and flows southward into the Gulf of Mexico
+11105,Mississippian,a native or resident of Mississippi
+11106,Mississippian Missippian_period Lower_Carboniferous Lower_Carboniferous_period,from 345 million to 310 million years ago; increase of land areas; primitive ammonites; winged insects
+11107,Missoula,a university town in western Montana
+11108,Missouri,a member of the Siouan people formerly inhabiting the valley of the Missouri river in Missouri
+11109,Missouri,a dialect of the Chiwere language spoken by the Missouri
+11110,Missouri Missouri_River,the longest river in the United States; arises in Montana and flows southeastward to become a tributary of the Mississippi at Saint Louis; "The Missouri and Mississippi Rivers together form the third longest river in the world"
+11111,Missouri Show_Me_State MO Mo.,a midwestern state in central United States; a border state during the American Civil War, Missouri was admitted to the Confederacy without actually seceding from the Union
+11112,Missouri_Compromise,an agreement in 1820 between pro-slavery and anti-slavery factions in the United States concerning the extension of slavery into new territories
+11113,Missouri_goldenrod Solidago_missouriensis,similar to meadow goldenrod but usually smaller
+11114,Missouri_primrose Ozark_sundrops Oenothera_macrocarpa,evening-opening primrose of south central United States
+11115,Missourian,a native or resident of Missouri
+11116,Mister Mr Mr.,a form of address for a man
+11117,Mitchell Arthur_Mitchell,United States dancer who formed the first Black classical ballet company (born in 1934)
+11118,Mitchell John_Mitchell,United States labor leader; president of the United Mine Workers of America from 1898 to 1908 (1870-1919)
+11119,Mitchell Margaret_Mitchell Margaret_Munnerlyn_Mitchell,United States writer noted for her novel about the South during the American Civil War (1900-1949)
+11120,Mitchell Maria_Mitchell,United States astronomer who studied sunspots and nebulae (1818-1889)
+11121,Mitchell R._J._Mitchell Reginald_Joseph_Mitchell,English aeronautical engineer (1895-1937)
+11122,Mitchell William_Mitchell Billy_Mitchell,United States aviator and general who was an early advocate of military air power (1879-1936)
+11123,Mitchella genus_Mitchella,creeping evergreen herbs of North America
+11124,Mitchum Robert_Mitchum,United States film actor (1917-1997)
+11125,Mitella genus_Mitella,genus of low slender herbs of North America and northeastern Asia having flowers with trifid or pinnatifid petals
+11126,Mitford Jessica_Mitford Jessica_Lucy_Mitford,United States writer (born in England) who wrote on American culture (1917-1996)
+11127,Mitford Nancy_Mitford Nancy_Freeman_Mitford,English writer of comic novels (1904-1973)
+11128,Mithraism Mithraicism,ancient Persian religion; popular among Romans during first three centuries a.d.
+11129,Mithraist,adherent of Mithraism
+11130,Mithras Mithra,ancient Persian god of light and truth; sun god
+11131,Mithridates Mithridates_VI Mithridates_the_Great,ancient king of Pontus who expanded his kingdom by defeating the Romans but was later driven out by Pompey (132-63 BC)
+11132,Mitra,Hindu god of friendship and alliances; usually invoked together with Varuna as a supporter of heaven and earth
+11133,Mitrula_elegans,a discomycete that is 3-8 cm high with an orange to yellow fertile portion and white or pinkish stalks often half in and half out of the water
+11134,Mitterrand Francois_Mitterrand Francois_Maurice_Marie_Mitterrand,French statesman and president of France from 1981 to 1985 (1916-1996)
+11135,Miwok,a member of the North American Indian people living in the central Sierra Nevada in California
+11136,Mnemosyne,(Greek mythology) the Titaness who was goddess of memory; mother of the Muses
+11137,Mniaceae family_Mniaceae,family of erect mosses with club-shaped paraphyses and the hexagonal cells of the upper leaf surface; sometimes treated as a subfamily of Bryaceae
+11138,Mnium genus_Mnium,mosses similar to those of genus Bryum but larger
+11139,Mobile,a port in southwestern Alabama on Mobile Bay
+11140,Mobile Mobile_River,a river in southwestern Alabama; flows into Mobile Bay
+11141,Mobile_Bay,a bay of the Gulf of Mexico; fed by the Mobile River
+11142,Mobius August_F._Mobius August_Ferdinand_Mobius,German mathematician responsible for the Mobius strip (1790-1868)
+11143,Mobius_strip,a continuous closed surface with only one side; formed from a rectangular strip by rotating one end 180 degrees and joining it with the other end
+11144,Mobula genus_Mobula,type genus of the Mobulidae
+11145,Mobulidae family_Mobulidae,large rays lacking venomous spines: mantas
+11146,Model_T,the first widely available automobile powered by a gasoline engine; mass-produced by Henry Ford from 1908 to 1927
+11147,Modern_English,English since about 1450
+11148,Modern_Greek New_Greek,the Greek language as spoken and written today
+11149,Modern_Hebrew,Hebrew used in Israel today; revived from ancient Hebrew
+11150,Modicon,trade name for an oral contraceptive containing estradiol and norethindrone
+11151,Modigliani Amedeo_Modigliano,Italian painter and sculptor (1884-1920)
+11152,Moehringia genus_Moehringia,low-growing herbs widely distributed in temperate and Arctic northern hemisphere: sandworts; distinguished from members of the genus Arenaria mainly by having four-petaled rather than five-petaled flowers
+11153,Moeller's_glossitis glossodynia_exfoliativa,a superficial form of glossitis marked by irregular red patches on the tongue and sensitivity to hot or spicy food
+11154,Mogadishu Mogadiscio capital_of_Somalia,the capital and largest city of Somalia; a port on the Indian Ocean
+11155,Mogul Moghul,a member of the Muslim dynasty that ruled India until 1857
+11156,Mogul_empire,an empire established by the Mogul conquerors of India that reigned from 1526 to 1857
+11157,Mohammed Mohammad Muhammad Mahomet Mahound,the Arab prophet who, according to Islam, was the last messenger of Allah (570-632)
+11158,Mohammed_Ali Mehemet_Ali Muhammad_Ali,Albanian soldier in the service of Turkey who was made viceroy of Egypt and took control away from the Ottoman Empire and established Egypt as a modern state (1769-1849)
+11159,Mohammedan Muhammedan Muhammadan,a follower of Mohammed
+11160,Mohave Mojave,a member of the North American Indian people formerly living in the Colorado river valley in Arizona and Nevada and California
+11161,Mohave Mojave,the Yuman language spoken by the Mohave
+11162,Mohawk,a member of the Iroquoian people formerly living along the Mohawk River in New York State
+11163,Mohawk,the Iroquoian language spoken by the Mohawk
+11164,Mohawk_River,a river of central New York that flows southeastward to the Hudson River
+11165,Mohican Mahican,a member of the Algonquian people formerly living in the Hudson valley and eastward to the Housatonic
+11166,Mohican Mahican,the Algonquian language spoken by the Mohican
+11167,Mohorovicic Andrija_Mohorovicic,Yugoslav geophysicist for whom the Mohorovicic discontinuity was named (1857-1936)
+11168,Mohorovicic_discontinuity Moho,the boundary between the Earth's crust and the underlying mantle; "the Mohorovicic discontinuity averages 5 miles down under oceans and 20 miles down under continents"
+11169,Mohria genus_Mohria,African terrestrial ferns
+11170,Mohs_scale,a scale of hardness of solids; talc is 0 and diamond is 10; ordering is determined by which substance can scratch another substance
+11171,Moirai Moirae,any of the three Greek goddesses of fate or destiny; identified with the Roman Parcae and similar to the Norse Norns
+11172,Mojave Mojave_Desert Mohave Mohave_Desert,a desert area in southern California and western Arizona
+11173,Mojave_aster Machaeranthera_tortifoloia,wild aster having greyish leafy stems and flower heads with narrow pale lavender or violet rays; of rocky desert slopes California to Arizona and Utah
+11174,Mojave_rattlesnake Crotalus_scutulatus,extremely dangerous; most common in areas of scattered scrubby growth; from Mojave Desert to western Texas and into Mexico
+11175,Mokulu,a Chadic language spoken in Chad
+11176,Moldova Republic_of_Moldova Moldavia,a landlocked republic in eastern Europe; formerly a European soviet but achieved independence in 1991
+11177,Moldovan_monetary_unit,monetary unit in Moldova
+11178,Molidae family_Molidae,ocean sunfishes
+11179,Moliere Jean-Baptiste_Poquelin,French author of sophisticated comedies (1622-1673)
+11180,Moline,a town in northwest Illinois on the Mississippi River
+11181,Molise,a region of south central Italy
+11182,Mollienesia genus_Mollienesia,mollies
+11183,Molluga genus_Molluga,carpetweeds
+11184,Mollusca phylum_Mollusca,gastropods; bivalves; cephalopods; chitons
+11185,Molly_Miller Scartella_cristata,inhabits both coasts of tropical Atlantic
+11186,Molnar Ferenc_Molnar,Hungarian playwright (1878-1952)
+11187,Moloch,a tyrannical power to be propitiated by human subservience or sacrifice; "the great Moloch of war"; "duty has become the Moloch of modern life"- Norman Douglas
+11188,Moloch Molech,god of the Canaanites and Phoenicians to whom parents sacrificed their children
+11189,Molokai Molokai_Island,an island of central Hawaii (between Maui and Oahu)
+11190,Molossidae family_Molossidae,mastiff bats; freetail bats
+11191,Molothrus genus_Molothrus,cowbirds
+11192,Molotov Vyacheslav_Mikhailovich_Molotov,Soviet statesman (1890-1986)
+11193,Molotov_cocktail petrol_bomb gasoline_bomb,a crude incendiary bomb made of a bottle filled with flammable liquid and fitted with a rag wick
+11194,Moluccas Spice_Islands,a group of island in eastern Indonesia between Celebes and New Guinea; settled by the Portuguese but taken by the Dutch who made them the center for a spice monopoly, at which time they were known as Spice Islands
+11195,Molucella genus_Molucella,small genus of aromatic herbs of Mediterranean regions; widely cultivated
+11196,Molva genus_Molva,ling
+11197,Mombasa,a port city in southern Kenya on a coral island in a bay of the Indian Ocean
+11198,Mommsen Theodor_Mommsen,German historian noted for his history of Rome (1817-1903)
+11199,Momordica genus_Momordica,Old World tropical vine
+11200,Momotidae family_Momotidae,a family of birds of the order Coraciiformes
+11201,Momotus genus_Momotus,type genus of the Momotidae
+11202,Momus Momos,god of blame and mockery
+11203,Mon,a member of a Buddhist people living in Myanmar and adjacent parts of Thailand
+11204,Mon,the Mon-Khmer language spoken by the Mon
+11205,Mon-Khmer,a branch of the Austro-Asiatic languages
+11206,Monaco Principality_of_Monaco,a constitutional monarchy in a tiny enclave on the French Riviera
+11207,Monaco-Ville,the capital of Monaco
+11208,Monardella genus_Monardella,a genus of fragrant herbs of the family Labiatae in the western United States
+11209,Monario,an artificial language
+11210,Monday Mon,the second day of the week; the first working day
+11211,Mondrian Piet_Mondrian,Dutch painter whose work (intersecting lines at right angles and planes in primary colors) influenced the development of abstract art (1872-1944)
+11212,Monegasque Monacan,a native or inhabitant of Monaco
+11213,Monel_metal Monell_metal,an alloy of nickel and copper and other metals (such as iron and/or manganese and/or aluminum)
+11214,Monera kingdom_Monera Prokayotae kingdom_Prokaryotae,prokaryotic bacteria and blue-green algae and various primitive pathogens; because of lack of consensus on how to divide the organisms into phyla informal names are used for the major divisions
+11215,Moneses genus_Moneses,one species: one-flowered wintergreen; sometimes included in genus Pyrola
+11216,Monet Claude_Monet,French impressionist painter (1840-1926)
+11217,Mongol Mongolian,a member of the nomadic peoples of Mongolia
+11218,Mongolia,a vast region in Asia including the Mongolian People's Republic and China's Inner Mongolia
+11219,Mongolia Mongolian_People's_Republic Outer_Mongolia,a landlocked socialist republic in central Asia
+11220,Mongolian Mongolic Mongolic_language,a family of Altaic language spoken in Mongolia
+11221,Mongolian_monetary_unit,monetary unit in Mongolia
+11222,Mongoloid,a member of the Mongoloid family
+11223,Moniliaceae family_Moniliaceae,family of imperfect fungi having white or brightly colored hyphae and spores that are produced directly on the mycelium and not aggregated in fruiting bodies
+11224,Moniliales order_Moniliales,order of imperfect fungi lacking conidiophores of having conidiophores that are superficial and not enclosed in a pycnidium
+11225,Monitor,an ironclad vessel built by Federal forces to do battle with the Merrimac
+11226,Monk Thelonious_Monk Thelonious_Sphere_Monk,United States jazz pianist who was one of the founders of the bebop style (1917-1982)
+11227,Monmouth_Court_House Battle_of_Monmouth_Court_House Battle_of_Monmouth,a pitched battle in New Jersey during the American Revolution (1778) that ended with the withdrawal of British forces
+11228,Monnet Jean_Monnet,French economist who advocated a Common Market in Europe (1888-1979)
+11229,Monocanthidae family_Monocanthidae,filefishes
+11230,Monocanthus genus_Monocanthus,type genus of the Monocanthidae
+11231,Monochamus genus_Monochamus,sawyer beetles
+11232,Monocotyledones class_Monocotyledones Monocotyledonae class_Monocotyledonae Liliopsida class_Liliopsida,comprising seed plants that produce an embryo with a single cotyledon and parallel-veined leaves: includes grasses and lilies and palms and orchids; divided into four subclasses or superorders: Alismatidae; Arecidae; Commelinidae; and Liliidae
+11233,Monod Jacques_Monod Jacques_Lucien_Monod,French biochemist who (with Francois Jacob) explained how genes are activated and suggested the existence of messenger RNA (1910-1976)
+11234,Monodon genus_Monodon,type genus of the Monodontidae
+11235,Monodontidae family_Monodontidae,narwhals
+11236,Monomorium genus_Monomorium,a genus of Formicidae
+11237,Monongahela Monongahela_River,a river that rises in northern West Virginia and flows north into Pennsylvania where it joins the Allegheny River at Pittsburgh to form the Ohio River
+11238,Mononychus_olecranus,a turkey-sized long-legged fossil 75 million years old found in the Gobi Desert having bird-like fused wrist bones and keeled breastbone and a long tail resembling a dinosaur's; short forelimbs end in a single claw instead of wings; classification as bird or dinosaur is in dispute
+11239,Monophysite,an adherent of Monophysitism
+11240,Monophysitism,a Christian heresy of the 5th and 6th centuries that challenged the orthodox definition of the two natures (human and divine) in Jesus and instead believed there was a single divine nature
+11241,Monopoly,a board game in which players try to gain a monopoly on real estate as pieces advance around the board according to the throw of a die
+11242,Monothelitism,the theological doctrine that Christ had only one will even though he had two natures (human and divine); condemned as heretical in the Third Council of Constantinople
+11243,Monotremata order_Monotremata,coextensive with the subclass Prototheria
+11244,Monotropa genus_Monotropa,leafless fleshy saprophytic plants; in some classifications placed in the family Pyrolaceae
+11245,Monotropaceae family_Monotropaceae,used in some classification for saprophytic herbs sometimes included in the family Pyrolaceae: genera Monotropa and Sarcodes
+11246,Monroe,a town of southeast Michigan on Lake Erie
+11247,Monroe,a town in north central Louisiana
+11248,Monroe James_Monroe President_Monroe,5th President of the United States; author of the Monroe Doctrine (1758-1831)
+11249,Monroe Marilyn_Monroe Norma_Jean_Baker,United States film actress noted for sex appeal (1926-1962)
+11250,Monroe_Doctrine,an American foreign policy opposing interference in the western hemisphere from outside powers
+11251,Monrovia Liberian_capital capital_of_Liberia,the capital and chief port and largest city of Liberia
+11252,Monsieur,used as a French courtesy title; equivalent to English `Mr'
+11253,Monsignor,(Roman Catholic Church) an ecclesiastical title of honor bestowed on some priests
+11254,Mont_Blanc Monte_Bianco,the highest mountain peak in the Alps; on the border between France and Italy to the south of Geneva (15,781 feet high)
+11255,Montagu Ashley_Montagu,United States anthropologist (born in England) who popularized anthropology (1905-)
+11256,Montagu's_harrier Circus_pygargus,brownish European harrier
+11257,Montaigne Michel_Montaigne Michel_Eyquem_Montaigne,French writer regarded as the originator of the modern essay (1533-1592)
+11258,Montana Treasure_State MT Mont.,a state in northwestern United States on the Canadian border
+11259,Montanan,a native or resident of Montana
+11260,Monte_Carlo,a town and popular resort in the principality of Monaco; famous for its gambling casino
+11261,Montego_Bay,port and resort city in northwestern Jamaica
+11262,Montenegro Crna_Gora,a former country bordering on the Adriatic Sea; now part of the Union of Serbia and Montenegro
+11263,Monterey,a town in western California to the south of San Francisco on a peninsula at the southern end of Monterey Bay
+11264,Monterey_Bay,an inlet of the Pacific Ocean in western California
+11265,Monterey_cypress Cupressus_macrocarpa,tall California cypress endemic on Monterey Bay; widely used for ornament as well as reforestation and shelterbelt planting
+11266,Monterey_pine Pinus_radiata,tall California pine with long needles in bunches of 3, a dense crown, and dark brown deeply fissured bark
+11267,Monterrey,an industrial city in northeastern Mexico
+11268,Montespan Marquise_de_Montespan Francoise-Athenais_de_Rochechouart,French noblewoman who was mistress to Louis XIV until he became attracted to Madame de Maintenon (1641-1707)
+11269,Montesquieu Baron_de_la_Brede_et_de_Montesquieu Charles_Louis_de_Secondat,French political philosopher who advocated the separation of executive and legislative and judicial powers (1689-1755)
+11270,Montessori Maria_Montesorri,Italian educator who developed a method of teaching mentally handicapped children and advocated a child-centered approach (1870-1952)
+11271,Monteverdi Claudio_Monteverdi,Italian composer (1567-1643)
+11272,Montevideo capital_of_Uruguay,the capital and largest city of Uruguay; a cosmopolitan city and one of the busiest ports in South America
+11273,Montez Lola_Montez Marie_Dolores_Eliza_Rosanna_Gilbert,Irish dancer (1818-1861)
+11274,Montezuma,evergreen tree with large leathery leaves and large pink to orange flowers; considered a link plant between families Bombacaceae and Sterculiaceae
+11275,Montezuma's_revenge,diarrhea contracted in Mexico or Central America
+11276,Montezuma_II,the last Aztec emperor in Mexico who was overthrown and killed by Hernando Cortes (1466-1520)
+11277,Montezuma_cypress Mexican_swamp_cypress Taxodium_mucronatum,cypress of river valleys of Mexican highlands
+11278,Montfort Simon_de_Montfort Earl_of_Leicester,an English nobleman who led the baronial rebellion against Henry III (1208-1265)
+11279,Montgolfier Jacques_Etienne_Montgolfier,French inventor who (with his brother Josef Michel Montgolfier) pioneered hot-air ballooning (1745-1799)
+11280,Montgolfier Josef_Michel_Montgolfier,French inventor who (with his brother Jacques Etienne Montgolfier) pioneered hot-air ballooning (1740-1810)
+11281,Montgomery Bernard_Law_Montgomery Sir_Bernard_Law_Montgomery 1st_Viscount_Montgomery_of_Alamein,English general during World War II; won victories over Rommel in North Africa and led British ground forces in the invasion of Normandy (1887-1976)
+11282,Montgomery L._M._Montgomery Lucy_Maud_Montgomery,Canadian novelist (1874-1942)
+11283,Montgomery capital_of_Alabama,the state capital of Alabama on the Mobile River
+11284,Montgomery's_tubercle,one of the sebaceous glands on the areolae of the breast that lubricate the breast during breast-feeding
+11285,Montia genus_Montia,small genus of densely tufted annual herbs; north temperate regions and South America and tropical Africa and Asia
+11286,Montmartre,the highest point in Paris; famous for its associations with many artists
+11287,Montpelier capital_of_Vermont,capital of the state of Vermont; located in north central Vermont
+11288,Montrachet,a white Burgundy wine
+11289,Montreal,a city in southern Quebec province on the Saint Lawrence River; the largest city in Quebec and 2nd largest in Canada; the 2nd largest French-speaking city in the world
+11290,Montserrat,a volcanic island in the Caribbean; in the West Indies
+11291,Montserratian,a native or inhabitant of Montserrat
+11292,Moody Dwight_Lyman_Moody,United States evangelist (1837-1899)
+11293,Moody Helen_Wills_Moody Helen_Wills Helen_Newington_Wills,United States tennis player who dominated women's tennis in the 1920s and 1930s (1905-1998)
+11294,Moon Sun_Myung_Moon,United States religious leader (born in Korea) who founded the Unification Church in 1954; was found guilty of conspiracy to evade taxes (born in 1920)
+11295,Moon moon,the natural satellite of the Earth; "the average distance to the Moon is 384,400 kilometers"; "men first stepped on the moon in 1969"
+11296,Moonie,an often derogatory term for a member of the Unification Church
+11297,Moor,one of the Muslim people of north Africa; of mixed Arab and Berber descent; converted to Islam in the 8th century; conqueror of Spain in the 8th century
+11298,Moore Douglas_Moore,United States composer of works noted for their use of the American vernacular (1893-1969)
+11299,Moore Dudley_Moore Dudley_Stuart_John_Moore,English actor and comedian who appeared on television and in films (born in 1935)
+11300,Moore G._E._Moore George_Edward_Moore,English philosopher (1873-1958)
+11301,Moore Henry_Moore Henry_Spencer_Moore,British sculptor whose works are monumental organic forms (1898-1986)
+11302,Moore Marianne_Moore Marianne_Craig_Moore,United States poet noted for irony and wit (1887-1872)
+11303,Moore Thomas_Moore,Irish poet who wrote nostalgic and patriotic verse (1779-1852)
+11304,Moorish Moorish_architecture,a style of architecture common in Spain from the 13th to 16th centuries; characterized by horseshoe-shaped arches
+11305,Moorish_arch horseshoe_arch,a round arch that widens before rounding off
+11306,Moquelumnan Miwok,a Penutian language spoken by the Miwok
+11307,Moraceae family_Moraceae mulberry_family,trees or shrubs having a milky juice; in some classifications includes genus Cannabis
+11308,Moranzanist_Patriotic_Front,a terrorist group of radical leftists formed in the late 1980s; seeks to prevent the United States from intervening in Honduran economic and political affairs
+11309,Moravia,a region in the central and eastern part of the Czech Republic; it lies to the east of Bohemia and to the west of the Carpathians
+11310,Moray_Firth,an inlet of the North Sea on the northeast coast of Scotland
+11311,Morchella genus_Morchella,genus of edible fungi: morel
+11312,Morchella_crassipes thick-footed_morel,a delicious morel with a conic fertile portion having deep and irregular pits
+11313,Morchella_semilibera half-free_morel cow's_head,a morel with the ridged and pitted fertile portion attached to the stipe for about half its length
+11314,Morchellaceae family_Morchellaceae,a family of edible fungi including the true morels
+11315,Mordva Mordvin Mordvinian,a member of the agricultural people living in the central Volga provinces of European Russia
+11316,Mordva Mordvin Mordvinian,the Finnic language spoken by the Mordvinians
+11317,More Thomas_More Sir_Thomas_More,English statesman who opposed Henry VIII's divorce from Catherine of Aragon and was imprisoned and beheaded; recalled for his concept of Utopia, the ideal state
+11318,Moreau_River,a river that rises in western South Dakota and flows eastward to the Missouri River
+11319,Moreton_Bay,an arm of the Tasman Sea forming a bay to the east of Brisbane
+11320,Moreton_Bay_chestnut Australian_chestnut,Australian tree having pinnate leaves and orange-yellow flowers followed by large woody pods containing 3 or 4 seeds that resemble chestnuts; yields dark strong wood
+11321,Moreton_Bay_tulipwood Harpullia_pendula,Australian tree yielding a variegated tulipwood
+11322,Morgan,an American breed of small compact saddle horses
+11323,Morgan Daniel_Morgan,soldier in the American Revolution who defeated the British in the battle of Cowpens, South Carolina (1736-1802)
+11324,Morgan Henry_Morgan Sir_Henry_Morgan,a Welsh buccaneer who raided Spanish colonies in the West Indies for the English (1635-1688)
+11325,Morgan J._P._Morgan John_Pierpont_Morgan,United States financier and philanthropist (1837-1913)
+11326,Morgan Lewis_Henry_Morgan,United States anthropologist who studied the Seneca (1818-1881)
+11327,Morgan Thomas_Hunt_Morgan,United States biologist who formulated the chromosome theory of heredity (1866-1945)
+11328,Morgan_City,a town in southeast Louisiana to the south of Baton Rouge
+11329,Morgan_le_Fay,(Arthurian legend) a wicked enchantress who was the half sister and enemy of King Arthur
+11330,Morgantown,a city in northern West Virginia on the Monongahela river near the Pennsylvania border; site of the University of West Virginia
+11331,Morlett's_crocodile,a variety of crocodile
+11332,Morley E._W._Morley Edward_Morley Edward_Williams_Morley,United States chemist and physicist who collaborated with Michelson in the Michelson-Morley experiment (1838-1923)
+11333,Mormon,the ancient prophet whose writings were revealed to Joseph Smith who founded the Church of Jesus Christ of Latter-Day Saints
+11334,Mormonism,the doctrines and practices of the Mormon Church based on the Book of Mormon
+11335,Mornay_sauce,onion-flavored creamy cheese sauce with egg yolk and grated cheese
+11336,Moro,a member of the predominantly Muslim people in the southern Philippines
+11337,Moro_Islamic_Liberation_Front,a terrorist group in the southern Philippines formed in 1977 to establish an independent Islamic state for the Moros; have clashed with troops at United States bases
+11338,Moroccan,a native or inhabitant of Morocco
+11339,Moroccan_dirham dirham,the basic unit of money in Morocco; equal to 100 centimes
+11340,Moroccan_monetary_unit,monetary unit in Morocco
+11341,Morocco Kingdom_of_Morocco Maroc Marruecos Al-Magrib,a kingdom (constitutional monarchy) in northwestern Africa with a largely Muslim population; achieved independence from France in 1956
+11342,Moron,a city in Argentina, to the west of Buenos Aires
+11343,Morone genus_Morone,carnivorous fresh and salt water fishes
+11344,Morpheus,the Roman god of sleep and dreams
+11345,Morrigan Morrigu,Celtic war goddess
+11346,Morris Esther_Morris Esther_Hobart_McQuigg_Slack_Morris,United States suffragist in Wyoming (1814-1902)
+11347,Morris Gouverneur_Morris,United States statesman who led the committee that produced the final draft of the United States Constitution (1752-1816)
+11348,Morris Robert_Morris,leader of the American Revolution who signed the Declaration of Independence and raised money for the Continental Army (1734-1806)
+11349,Morris William_Morris,English poet and craftsman (1834-1896)
+11350,Morris_chair,an armchair with an adjustable back
+11351,Morrison Jim_Morrison James_Douglas_Morrison,United States rock singer (1943-1971)
+11352,Morrison Toni_Morrison Chloe_Anthony_Wofford,United States writer whose novels describe the lives of African-Americans (born in 1931)
+11353,Morristown,a town in northern New Jersey where the Continental Army spent two winters
+11354,Morrow's_honeysuckle Lonicera_morrowii,a grey deciduous honeysuckle shrub paired white flowers turning yellow; Japan
+11355,Mors,(Roman mythology) Roman god of death; counterpart of Thanatos
+11356,Morse Morse_code international_Morse_code,a telegraph code in which letters and numbers are represented by strings of dots and dashes (short and long signals)
+11357,Morse Samuel_Morse Samuel_F._B._Morse Samuel_Finley_Breese_Morse,United States portrait painter who patented the telegraph and developed the Morse code (1791-1872)
+11358,Mortimer Roger_de_Mortimer,English nobleman who deposed Edward II and was executed by Edward III (1287-1330)
+11359,Morton Jelly_Roll_Morton Ferdinand_Joseph_La_Menthe_Morton,United States jazz musician who moved from ragtime to New Orleans jazz (1885-1941)
+11360,Morus genus_Morus,type genus of the Moraceae: mulberries
+11361,Mosaic,a freeware browser
+11362,Mosaic_law Law_of_Moses,the laws (beginning with the Ten Commandments) that God gave to the Israelites through Moses; it includes many rules of religious observance given in the first five books of the Old Testament (in Judaism these books are called the Torah)
+11363,Mosan,a family of Amerindian languages spoken in Washington and British Columbia
+11364,Mosander Carl_Gustaf_Mossander,Swedish chemist who discovered rare earth elements (1797-1858)
+11365,Moschus genus_Moschus,musk deer
+11366,Moscow capital_of_the_Russian_Federation Russian_capital,a city of central European Russia; formerly capital of both the Soviet Union and Soviet Russia; since 1991 the capital of the Russian Federation
+11367,Moselle,German white wine from the Moselle valley or a similar wine made elsewhere
+11368,Moses,(Old Testament) the Hebrew prophet who led the Israelites from Egypt across the Red sea on a journey known as the Exodus; Moses received the Ten Commandments from God on Mount Sinai
+11369,Moses Grandma_Moses Anna_Mary_Robertson_Moses,United States painter of colorful and primitive rural scenes (1860-1961)
+11370,Mossad,the Israeli foreign intelligence agency; "the primary focus of the Mossad is on Arab nations"
+11371,Mossbauer Rudolf_Ludwig_Mossbauer,German physicist (born in 1929)
+11372,Mosul,a city in northern Iraq on the Tigris across from the ruins of Nineveh
+11373,Motacilla genus_Motacilla,type genus of the Motacillidae: wagtails
+11374,Motacillidae family_Motacillidae,pipits and wagtails
+11375,Mother's_Day,second Sunday in May
+11376,Mother_Carey's_chicken Mother_Carey's_hen Oceanites_oceanicus,medium-sized storm petrel
+11377,Mother_Goose,the imaginary author of a collection of nursery rhymes
+11378,Mother_Hubbard muumuu,a woman's loose unbelted dress
+11379,Motherwell Robert_Motherwell,United States abstract expressionist painter (1915-1991)
+11380,Mott Lucretia_Coffin_Mott,United States feminist and suffragist (1793-1880)
+11381,Moulmein Mawlamyine,a port city of southern Myanmar on the Gulf of Martaban
+11382,Mound_Builder,prehistoric Amerindians who built altar mounds
+11383,Mount_Bartle_Frere,the highest mountain peak in Queensland, Australia
+11384,Mount_Carmel,a mountain range in northwestern Israel near the Mediterranean coast; "according to the Old Testament, Elijah defeated the priests of Baal at Mount Carmel"
+11385,Mount_Elbert,the highest peak in the Rocky Mountains in central Colorado (14,431 feet high)
+11386,Mount_Rainier_National_Park,a national park in Washington having mountain terrain featuring glaciers and alpine lakes and streams and swamps
+11387,Mount_Saint_Helens Mount_St._Helens Mt._St._Helens,an active volcano in the Cascade Range in southwestern Washington; erupted violently in 1980 after 123 years of inactivity
+11388,Mount_Vernon,the former residence of George Washington in northeastern Virginia overlooking the Potomac river
+11389,Mountain_Time Mountain_Standard_Time MST,standard time in the 7th time zone west of Greenwich, reckoned at the 105th meridian west; used in the mountain states of the United States
+11390,Mountie,colloquial term for a member of the Royal Canadian Mounted Police
+11391,Moynihan Daniel_Patrick_Moynihan,United States politician and educator (1927-2003)
+11392,Mozambican,a native or inhabitant of Mozambique
+11393,Mozambique Republic_of_Mozambique Mocambique,a republic on the southeastern coast of Africa on the Mozambique Channel; became independent from Portugal in 1975
+11394,Mozambique_Channel,an arm of the Indian Ocean between Madagascar and southeastern Africa
+11395,Mozambique_monetary_unit,monetary unit in Mozambique
+11396,Mozart,the music of Mozart; "the concert was mostly Mozart"
+11397,Mozart Wolfgang_Amadeus_Mozart,prolific Austrian composer and child prodigy; master of the classical style in all its forms of his time (1756-1791)
+11398,Mr._Moto,Japanese sleuth created by John Marquand
+11399,Mrs Mrs.,a form of address for a married woman
+11400,Ms Ms.,a form of address for a woman
+11401,Mubarak Hosni_Mubarak,Egyptian statesman who became president in 1981 after Sadat was assassinated (born in 1929)
+11402,Mucoraceae family_Mucoraceae,large family of chiefly saprophytic fungi that includes many common molds destructive to food products
+11403,Mucorales order_Mucorales,an order of mostly saprophytic fungi
+11404,Muenster,semisoft pale-yellow cheese
+11405,Mugil genus_Mugil,type genus of the Mugilidae: mullets
+11406,Mugilidae family_Mugilidae,grey mullets
+11407,Mugiloidea suborder_Mugiloidea,fishes distinguished by abdominal pelvic fins: families Mugilidae; Atherinidae; Sphyraenidae
+11408,Mugwump,someone who bolted from the Republican Party during the U.S. presidential election of 1884
+11409,Muhammad Elijah_Muhammad,leader of Black Muslims who campaigned for independence for Black Americans (1897-1975)
+11410,Muharram Moharram Muharrum,the first month of the Islamic calendar
+11411,Muhlenbergia genus_Muhlenbergia,a genus of grasses of the family Gramineae grown in America and Asia
+11412,Muir John_Muir,United States naturalist (born in England) who advocated the creation of national parks (1838-1914)
+11413,Mujahedeen_Khalq,Iranian guerillas based in Iraq
+11414,Mujahedeen_Kompak,a militant Islamic militia that was formed in 2005 by hardliners who split from Jemaah Islamiyah
+11415,Mujahidin-e_Khalq_Organization MKO MEK People's_Mujahidin_of_Iran,a terrorist organization formed in the 1960s by children of Iranian merchants; sought to counter the Shah of Iran's pro-western policies of modernization and opposition to communism; following a philosophy that mixes Marxism and Islam it now attacks the Islamic fundamentalists who deposed the Shah
+11416,Mukalla Al-Mukalla,a port in southern Yemen on the Gulf of Aden to the east of Aden
+11417,Mull,an island in western Scotland in the Inner Hebrides
+11418,Mullah Mollah Mulla,a Muslim trained in the doctrine and law of Islam; the head of a mosque
+11419,Mullah_Omar Mullah_Mohammed_Omar,reclusive Afghanistani politician and leader of the Taliban who imposed a strict interpretation of shariah law on Afghanistan (born in 1960)
+11420,Muller Hermann_Joseph_Muller,United States geneticist who studied the effects of X-rays on genes (1890-1967)
+11421,Muller Johann_Muller Regiomontanus,German mathematician and astronomer (1436-1476)
+11422,Muller Johannes_Peter_Muller,German physiologist and anatomist (1801-1858)
+11423,Muller Karl_Alex_Muller,Swiss physicist who studied superconductivity (born in 1927)
+11424,Muller Max_Muller Friedrich_Max_Muller,British philologist (born in Germany) who specialized in Sanskrit (1823-1900)
+11425,Muller Paul_Hermann_Muller,Swiss chemist who synthesized DDT and discovered its use as an insecticide (1899-1965)
+11426,Mullidae family_Mullidae,goatfishes or red mullets
+11427,Mulloidichthys genus_Mulloidichthys,a genus of Mullidae
+11428,Mullus genus_Mullus,type genus of the Mullidae: goatfishes
+11429,Mumbai Bombay,a city in western India just off the coast of the Arabian Sea; India's 2nd largest city (after Calcutta); has the only natural deep-water harbor in western India
+11430,Munch Edvard_Munch,Norwegian painter (1863-1944)
+11431,Munchausen's_syndrome Munchausen_syndrome,syndrome consisting of feigning acute and dramatic illness for which no clinical evidence is ever found
+11432,Munchhausen Karl_Friedrich_Hieronymus_von_Munchhausen Munchausen Baron_Munchausen,German raconteur who told preposterous stories about his adventures as a soldier and hunter; his name is now associated with any telling of exaggerated stories or winning lies (1720-1797)
+11433,Muncie,a town in east central Indiana
+11434,Munda,a family of languages spoken by people scattered throughout central India
+11435,Munich Muenchen,the capital and largest city of Bavaria in southwestern Germany
+11436,Munich_beer Munchener,a dark lager produced in Munich since the 10th century; has a distinctive taste of malt
+11437,Munro H._H._Munro Hector_Hugh_Munro Saki,British writer of short stories (1870-1916)
+11438,Muntiacus genus_Muntiacus,muntjacs
+11439,Muntingia genus_Muntingia,one species: Jamaican cherry; sometimes placed in family Flacourtiaceae
+11440,Muraenidae family_Muraenidae,marine eels
+11441,Murdoch Iris_Murdoch Dame_Jean_Iris_Murdoch,British writer (born in Ireland) known primarily for her novels (1919-1999)
+11442,Murdoch Rupert_Murdoch Keith_Rupert_Murdoch,United States publisher (born in Australia in 1931)
+11443,Muridae family_Muridae,originally Old World rats now distributed worldwide; distinguished from the Cricetidae by typically lacking cheek pouches
+11444,Murillo Bartolome_Esteban_Murillo,Spanish painter (1617-1682)
+11445,Murmansk,a port city in northwestern Russia on the Kola Peninsula; the largest city to the north of the Arctic Circle; an important supply line to Russia in World War I and World War II
+11446,Muroidea superfamily_Muroidea,a superfamily of rodents essentially equal to the suborder Myomorpha but with the Dipodidae excluded
+11447,Murphy's_Law Sod's_Law,humorous axiom stating that anything that can go wrong will go wrong
+11448,Murphy_bed,a bed that can be folded or swung into a cabinet when not being used
+11449,Murray Gilbert_Murray George_Gilbert_Aime_Murphy,British classical scholar (born in Australia) who advocated the League of Nations and the United Nations (1866-1957)
+11450,Murray James_Murray James_Augustus_Murray James_Augustus_Henry_Murray Sir_James_Murray Sir_James_Augustus_Murray Sir_James_Augustus_Henry_Murray,Scottish philologist and the lexicographer who shaped the Oxford English Dictionary (1837-1915)
+11451,Murray Murray_River,a southeast Australian river; flows westward and then south into the Indian Ocean at Adelaide
+11452,Murrow Edward_R._Murrow Edward_Roscoe_Murrow,United States broadcast journalist remembered for his reports from London during World War II (1908-1965)
+11453,Murrumbidgee Murrumbidgee_River,a river of southeastern Australia; flows westward into the Murray River
+11454,Mus genus_Mus,type genus of the Muridae: common house mice; the tips of the upper incisors have a square notch
+11455,Musa genus_Musa,type genus of the Musaceae: bananas
+11456,Musaceae family_Musaceae banana_family,treelike tropical Asian herbs
+11457,Musales order_Musales,tropical plants
+11458,Musca,a small constellation in the polar region of the southern hemisphere near the Southern Cross and Chamaeleon
+11459,Musca genus_Musca,type genus of the Muscidae: houseflies
+11460,Muscadet,white grape grown especially in the valley the Loire in France
+11461,Muscadet,dry white wine from the Loire valley in France
+11462,Muscardinus genus_Muscardinus,a genus of Gliridae
+11463,Muscari genus_Muscari,sometimes placed in family Hyacinthaceae
+11464,Muscat Masqat capital_of_Oman,a port on the Gulf of Oman and capital of the sultanate of Oman
+11465,Muscicapa genus_Muscicapa,type genus of the Muscicapidae
+11466,Muscicapidae family_Muscicapidae,Old World (true) flycatchers
+11467,Muscidae family_Muscidae,two-winged flies especially the housefly
+11468,Muscivora genus_Muscivora,a genus of Tyrannidae
+11469,Muscoidea superfamily_Muscoidea,two-winged flies especially the families: Muscidae; Gasterophilidae; Calliphoridae; Tachinidae
+11470,Muscovite,a resident of Moscow
+11471,Muscovy,a Russian principality in the 13th to 16th centuries; Moscow was the capital
+11472,Muse,in ancient Greek mythology any of 9 daughters of Zeus and Mnemosyne; protector of an art or science
+11473,Musgu Munjuk Mulwi,a Chadic language spoken south of Lake Chad
+11474,Musial Stan_Musial Stanley_Frank_Musial Stan_the_Man,United States baseball player (born in 1920)
+11475,Muskhogean Muskhogean_language Muskogean Muskogean_language,a family of North American Indian languages spoken in the southeastern United States
+11476,Muskhogean Muskogean,a member of any of the peoples formerly living in southeastern United States and speaking Muskhogean languages
+11477,Muskogee,a member of the Muskhogean people formerly living in Georgia and eastern Alabama and constituting the core of the Creek Confederacy
+11478,Muskogee,a town in eastern Oklahoma on the Arkansas River
+11479,Muskogee,the Muskhogean language spoken by the Muskogee
+11480,Muslim Moslem,a believer in or follower of Islam
+11481,Muslimah,a Muslim woman
+11482,Musophaga genus_Musophaga,type genus of the Musophagidae
+11483,Musophagidae family_Musophagidae,touracos
+11484,Musset Alfred_de_Musset Louis_Charles_Alfred_de_Musset,French poet and writer (1810-1857)
+11485,Mussolini Benito_Mussolini Il_Duce,Italian fascist dictator (1883-1945)
+11486,Mussorgsky Moussorgsky Modest_Mussorgsky Modest_Moussorgsky Modest_Petrovich_Mussorgsky Modest_Petrovich_Moussorgsky,Russian composer of operas and orchestral works (1839-1881)
+11487,Mustela genus_Mustela,type genus of the family Mustelidae: minks and weasels
+11488,Mustelidae family_Mustelidae,weasels; polecats; ferrets; minks; fishers; otters; badgers; skunks; wolverines; martens
+11489,Mustelus genus_Mustelus,smooth dogfishes
+11490,Mutawa'een Mutawa,religious police in Saudi Arabia whose duty is to ensure strict adherence to established codes of conduct; offenders may be detained indefinitely; foreigners are not excluded
+11491,Mutillidae family_Mutillidae,a family of wasps
+11492,Mutinus genus_Mutinus,a genus of fungi belonging to the family Phallaceae
+11493,Muybridge Eadweard_Muybridge Edward_James_Muggeridge,United States motion-picture pioneer remembered for his pictures of running horses taken with a series of still cameras (born in England) (1830-1904)
+11494,Muztag Muztagh,a highest mountain peak in the Kunlun Shan in China; near the Indian border (23,891 feet high)
+11495,Mwanza,a city in northern Tanzania on Lake Victoria
+11496,Mwera,a Bantu language spoken in southern coastal Tanzania
+11497,Mya genus_Mya,type genus of the family Myacidae
+11498,Myaceae order_Myaceae,clams
+11499,Myacidae family_Myacidae,soft-shell clams
+11500,Myadestes genus_Myadestes,solitaires
+11501,Myanmar Union_of_Burma Burma,a mountainous republic in southeastern Asia on the Bay of Bengal; "much opium is grown in Myanmar"
+11502,Myanmar_monetary_unit,monetary unit in the Union of Burma
+11503,Mycelia_Sterilia order_Mycelia_Sterilia,order of imperfect fungi having no known spore stage
+11504,Mycenae,an ancient city is southern Greece; center of the Mycenaean civilization during the late Bronze Age
+11505,Mycenaean_civilization Mycenaean_civilisation Mycenaean_culture,the late bronze-age culture of Mycenae that flourished 1400-1100 BC
+11506,Mycenaen,a native or inhabitant of ancient Mycenae
+11507,Mycetophilidae family_Mycetophylidae,fungus gnats
+11508,Mycobacteriaceae family_Mycobacteriaceae,a family of bacteria
+11509,Mycoplasmataceae family_Mycoplasmataceae,pleomorphic Gram-negative nonmotile microorganism similar to both viruses and bacteria; parasitic in mammals
+11510,Mycoplasmatales order_Mycoplasmatales,coextensive with the family Mycoplasmataceae
+11511,Mycrosporidia order_Mycrosporidia,an order in the subclass Cnidosporidia
+11512,Mycteria genus_Mycteria,a genus of storks of the family Ciconiidae now including only the American wood ibis
+11513,Mycteroperca genus_Mycteroperca,groupers
+11514,Myctophidae family_Myctophidae,deep-sea fishes comprising the lantern fishes
+11515,Mylanta,an antacid
+11516,Mylar,a thin polyester film
+11517,Myliobatidae family_Myliobatidae,eagle rays
+11518,Mylodontidae family_Mylodontidae,extinct South American edentates
+11519,Myocastor genus_Myocastor,a genus of Capromyidae
+11520,Myomorpha suborder_Myomorpha,true rats and mice and related rodents
+11521,Myopus genus_Myopus,a genus of Cricetidae
+11522,Myosotis genus_Myosotis,forget-me-nots; scorpion grass
+11523,Myotis genus_Myotis,largest and most widely distributed genus of bats
+11524,Myrciaria genus_Myrciaria Myrcia,a genus of tropical American trees and shrubs of the myrtle family
+11525,Myrdal Gunnar_Myrdal Karl_Gunnar_Myrdal,Swedish economist (1898-1987)
+11526,Myrica genus_Myrica,deciduous aromatic shrubs or small trees
+11527,Myricaceae family_Myricaceae wax-myrtle_family,constituting the order Myricales
+11528,Myricales order_Myricales,coextensive with the family Myricaceae
+11529,Myricaria genus_Myricaria,small genus of deciduous shrubs or subshrubs of southern Europe to Siberia and China; tolerant of chalky soil
+11530,Myriophyllum genus_Myriophyllum,chiefly monoecious and usually aquatic herbs (as the milfoils)
+11531,Myristica genus_Myristica,type genus of Myristicaceae; tropical Asian evergreen trees with small white or yellow flowers followed by fleshy fruits
+11532,Myristicaceae family_Myristicaceae nutmeg_family,family of aromatic tropical trees with arillate seeds
+11533,Myrmecia genus_Myrmecia,bulldog ants
+11534,Myrmecobius genus_Myrmecobius,banded anteater
+11535,Myrmecophaga genus_Myrmecophaga,type genus of the Myrmecophagidae; South American ant bear
+11536,Myrmecophagidae family_Myrmecophagidae,New World anteaters
+11537,Myrmeleon genus_Myrmeleon,type genus of the Myrmeleontidae: antlions
+11538,Myrmeleontidae family_Myrmeleontidae,antlions
+11539,Myrmidon,(Greek mythology) a member of the warriors who followed Achilles on the expedition against Troy
+11540,Myroxylon genus_Myroxylon,a genus of tropical American trees having pinnate leaves and white flowers
+11541,Myrrhis genus_Myrrhis,European perennial herbs having pinnate leaves and umbels of white flowers
+11542,Myrsinaceae family_Myrsinaceae myrsine_family,family of Old World tropical trees and shrubs; some in Florida
+11543,Myrsine genus_Myrsine,evergreen trees and shrubs having aromatic foliage; Africa; Asia (New Zealand)
+11544,Myrtaceae family_Myrtaceae myrtle_family,trees and shrubs yielding a fragrant oil
+11545,Myrtales order_Myrtales Thymelaeales order_Thymelaeales,Myrtaceae; Combretaceae; Elaeagnaceae; Haloragidaceae; Melastomaceae; Lecythidaceae; Lythraceae; Rhizophoraceae; Onagraceae; Lecythidaceae; Punicaceae
+11546,Myrtillocactus genus_Myrtillocactus,small genus of arborescent cacti of Mexico and Central America
+11547,Myrtus genus_Myrtus,type genus of the Myrtaceae
+11548,Mysidacea order_Mysidacea,opossum shrimp
+11549,Mysidae family_Mysidae,small shrimp-like crustaceans
+11550,Mysis genus_Mysis,type genus of the family Mysidae
+11551,Mysore,a city in southern India to the southwest of Bangalore
+11552,Mysore_thorn Caesalpinia_decapetala Caesalpinia_sepiaria,spreading thorny shrub of tropical Asia bearing large erect racemes of red-marked yellow flowers
+11553,Mysticeti suborder_Mysticeti,baleen whales: right whales; rorquals; blue whales; humpbacks
+11554,Mytilidae family_Mytilidae,marine mussels
+11555,Mytilus genus_Mytilus,type genus of the family Mytilidae: smooth-shelled marine mussels
+11556,Myxine genus_Myxine,type genus of the Myxinidae (typical hagfishes)
+11557,Myxine_glutinosa,typical hagfish
+11558,Myxinidae family_Myxinidae,slime-producing marine animals: hagfishes
+11559,Myxiniformes suborder_Myxiniformes Hyperotreta suborder_Hyperotreta Myxinoidei Myxinoidea suborder_Myxinoidei,hagfishes as distinguished from lampreys
+11560,Myxinikela genus_Myxinikela,fossil hagfishes
+11561,Myxinikela_siroka,fossil hagfish of the Pennsylvanian period (c. 300 million years ago) that resembled modern hagfishes
+11562,Myxocephalus genus_Myxocephalus,grubby
+11563,Myxomycetes class_Myxomycetes,the class of true slime molds; essentially equivalent to the division Myxomycota
+11564,Myxomycota division_Myxomycota Gymnomycota division_Gymnomycota,slime molds; organisms having a noncellular and multinucleate creeping vegetative phase and a propagative spore-producing stage: comprises Myxomycetes and Acrasiomycetes; in some classifications placed in the kingdom Protoctista
+11565,Myxophyceae family_Myxophyceae Schizophyceae family_Schizophyceae,former terms for Cyanophyceae
+11566,Myxosporidia order_Myxosporidia,an order in the subclass Cnidosporidia
+11567,N n,the 14th letter of the Roman alphabet
+11568,N'Djamena Ndjamena Fort-Lamy capital_of_Chad,the capital and largest city of Chad; located in the southwestern on the Shari river
+11569,NADA_daiquiri,a daiquiri made without alcohol
+11570,NAND_circuit NAND_gate,a logic gate that produces an output that is the inverse of the output of an AND gate
+11571,NIMBY,someone who objects to siting something in their own neighborhood but does not object to it being sited elsewhere; an acronym for not in my backyard
+11572,NOC,an undercover agent who is given no official cover
+11573,Na-Dene,a family of North American Indian languages
+11574,Nabalus genus_Nabalus,genus of North American and east Asian perennial herbs; sometimes included in genus Prenanthes
+11575,Nablus,an ancient city in the West Bank to the north of Jerusalem; the home of Jacob in biblical times
+11576,Nabokov Vladimir_Nabokov Vladimir_vladimirovich_Nabokov,United States writer (born in Russia) (1899-1977)
+11577,Nabu Nebo,Babylonian god of wisdom and agriculture and patron of scribes and schools
+11578,Nacimiento,a mountain peak in the Andes in Argentina (21,302 feet high)
+11579,Naegele's_rule,rule for calculating an expected delivery date; subtract three months from the first day of the last menstrual period and add seven days to that date
+11580,Naemorhedus genus_Naemorhedus,gorals
+11581,Nag_Hammadi,a town in Upper Egypt
+11582,Nag_Hammadi Nag_Hammadi_Library,a collection of 13 ancient papyrus codices translated from Greek into Coptic that were discovered by farmers near the town of Nag Hammadi in 1945; the codices contain 45 distinct works including the chief sources of firsthand knowledge of Gnosticism
+11583,Naga,Kamarupan languages spoken in northeastern India and western Burma
+11584,Nagano,a city in central Honshu to the northwest of Tokyo; site of a Buddhist shrine
+11585,Nagasaki,a city in southern Japan on Kyushu; a leading port and shipbuilding center; on August 9, 1945 Nagasaki became the second populated area to receive an atomic bomb
+11586,Nageia genus_Nageia,small genus of Asian evergreen trees having columnar crowns and distinguished by leaves lacking a midrib; eastern Asia including India and Philippines and New Guinea
+11587,Nagoya,an industrial city in southern Honshu
+11588,Naha_City,the chief city in the Ryukyu Islands
+11589,Nahuatl,a member of any of various Indian peoples of central Mexico
+11590,Nahuatl,the Uto-Aztecan language spoken by the Nahuatl
+11591,Nahum,a Hebrew minor prophet of the 7th century BC
+11592,Nahum Book_of_Nahum,an Old Testament book telling Nahum's prophecy of the fall of Nineveh
+11593,Naiadaceae family_Naiadaceae Najadaceae family_Najadaceae naiad_family,monotypic family of aquatic plants having narrow leaves and small flowers
+11594,Naiadales order_Naiadales Alismales order_Alismales,an order of aquatic monocotyledonous herbaceous plants
+11595,Naias genus_Naias Najas genus_Najas,sole genus of the family Naiadaceae
+11596,Naiki,a Dravidian language spoken in south central India
+11597,Nairobi capital_of_Kenya,the capital and largest city of Kenya; a center for tourist safaris
+11598,Naismith James_Naismith,United States educator (born in Canada) who invented the game of basketball (1861-1939)
+11599,Naja genus_Naja,cobras
+11600,Nakuru,a city in western Kenya; commercial center of an agricultural region
+11601,Nalchik,a city in southwestern Russia in a valley of the Caucasus Mountains; an industrial center and health resort
+11602,Namib_Desert,a desert in Namibia extending along the coast between the high plateau and the Atlantic Ocean
+11603,Namibia Republic_of_Namibia South_West_Africa,a republic in southwestern Africa on the south Atlantic coast (formerly called South West Africa); achieved independence from South Africa in 1990; the greater part of Namibia forms part of the high Namibian plateau of South Africa
+11604,Namibian,a native or inhabitant of Namibia
+11605,Nammu,goddess personifying the primeval sea; mother of the gods and of heaven and earth
+11606,Namoi Namoi_River,a river in southeastern Australia that flows generally northwest to join the Darling River
+11607,Nampa,a town in southwestern Idaho
+11608,Namtar Namtaru,a demon personifying death; messenger of the underworld goddess Ereshkigal bringing death to mankind
+11609,Namur,a city in south central Belgium situated on a promontory between the Meuse River and the Sambre River; the site of intense fighting in World War I and World War II
+11610,Nan Nan_River,a river of western Thailand flowing southward to join the Ping River to form the Chao Phraya
+11611,Nan_Ling,a mountain range in southeastern China running generally east to west
+11612,Nanaimo,a town in southwestern British Columbia on Vancouver Island to the west of Vancouver
+11613,Nanak Guru_Nanak,Indian religious leader who founded Sikhism in dissent from the caste system of Hinduism; he taught that all men had a right to search for knowledge of God and that spiritual liberation could be attained by meditating on the name of God (1469-1538)
+11614,Nancere,a Chadic language spoken in Chad
+11615,Nanchang Nan-chang,a walled city in southeastern China on the Gan Jiang
+11616,Nancy,a city in northeastern France in Lorraine
+11617,Nanda_Devi,a mountain in the Himalayas in northern India (25,660 feet high)
+11618,Nanga_Parbat,a mountain in the Himalayas in Kashmir (26,660 feet high)
+11619,Nanjing Nanking,a city in eastern China on the Yangtze River; a former capital of China; the scene of a Japanese massacre in the 1930s
+11620,Nanna,(Norse mythology) wife of Balder
+11621,Nanna,god of the Moon; counterpart of the Akkadian Sin
+11622,Nanning Nan-ning,an industrial city in southern China
+11623,Nansen Fridtjof_Nansen,Norwegian explorer of the Arctic and director of the League of Nations relief program for refugees of World War I (1861-1930)
+11624,Nantes,a port city in western France on the Loire estuary
+11625,Nanticoke,a member of the Algonquian people formerly of Maryland and eastern Delaware
+11626,Nanticoke,the Algonquian language spoken by the Nanticoke and Conoy
+11627,Nantua shrimp_sauce,white sauce with whipping cream and shrimp butter
+11628,Nantucket,an island resort off Cape Cod; formerly a center of the whaling industry
+11629,Naomi Noemi,the mother-in-law of Ruth whose story is told in the Book of Ruth in the Old Testament
+11630,Napaea genus_Napaea,one species: glade mallow
+11631,Napier John_Napier,Scottish mathematician who invented logarithms; introduced the use of the decimal point in writing numbers (1550-1617)
+11632,Napier's_bones Napier's_rods,a set of graduated rods formerly used to do multiplication and division by a method invented by John Napier
+11633,Naples Napoli,a port and tourist center in southwestern Italy; capital of the Campania region
+11634,Napoleon Napoleon_I Napoleon_Bonaparte Bonaparte Little_Corporal,French general who became emperor of the French (1769-1821)
+11635,Napoleon nap,a card game similar to whist; usually played for stakes
+11636,Napoleon_III Emperor_Napoleon_III Charles_Louis_Napoleon_Bonaparte,nephew of Napoleon I and emperor of the French from 1852 to 1871 (1808-1873)
+11637,Napoleonic_Wars,a series of wars fought between France (led by Napoleon Bonaparte) and alliances involving England and Prussia and Russia and Austria at different times; 1799-1815
+11638,Narcissus,(Greek mythology) a beautiful young man who fell in love with his own reflection
+11639,Nares_Deep,a depression in the floor of the Atlantic Ocean to the north of Haiti and Puerto Rico
+11640,Narragansett_Bay,a deep inlet of the Atlantic Ocean in Rhode Island
+11641,Narthecium genus_Narthecium,bog asphodels; sometimes placed in family Melanthiaceae
+11642,Nasalis genus_Nasalis,proboscis monkeys
+11643,Naseby,a village in western Northamptonshire
+11644,Naseby Battle_of_Naseby,a battle in 1645 that settled the outcome of the first English Civil War as the Parliamentarians won a major victory over the Royalists
+11645,Nash Ogden_Nash,United States writer noted for his droll epigrams (1902-1971)
+11646,Nash_equilibrium,(game theory) a stable state of a system that involves several interacting participants in which no participant can gain by a change of strategy as long as all the other participants remain unchanged
+11647,Nashville capital_of_Tennessee,capital of the state of Tennessee; located in the north central part of the state on the Cumberland River; known for country music
+11648,Nassau capital_of_the_Bahamas,the capital of the Bahamas
+11649,Nasser Gamal_Abdel_Nasser,Egyptian statesman who nationalized the Suez Canal (1918-1970)
+11650,Nast Thomas_Nast,United States political cartoonist (1840-1902)
+11651,Nasturtium genus_Nasturtium,aquatic herbs
+11652,Nasua genus_Nasua,coatis
+11653,Natal,a port city in northeastern Brazil
+11654,Natal KwaZulu-Natal,a region of eastern South Africa on the Indian Ocean; "Natal was renamed KwaZulu-Natal in 1994"
+11655,Natantia suborder_Natantia,shrimp; prawns; etc.
+11656,Natchez,a town in southwest Mississippi on the Mississippi River
+11657,Naticidae family_Naticidae,moonshells
+11658,Nation Carry_Nation Carry_Amelia_Moore_Nation,United States prohibitionist who raided saloons and destroyed bottles of liquor with a hatchet (1846-1911)
+11659,Nation_of_Islam,a group of militant Black Americans who profess Islamic religious beliefs and advocate independence for Black Americans
+11660,National_Academy_of_Sciences,an honorary American society of scientists created by President Lincoln during the American Civil War
+11661,National_Aeronautics_and_Space_Administration NASA,an independent agency of the United States government responsible for aviation and spaceflight
+11662,National_Archives_and_Records_Administration NARA,the independent agency that oversees management of federal government records including presidential libraries and historic collections
+11663,National_Association_of_Realtors,a United States association of real estate agents which follows a strict code of ethics
+11664,National_Association_of_Securities_Dealers_Automated_Quotations NASDAQ,a computerized data system to provide brokers with price quotations for securities traded over the counter
+11665,National_Baseball_Hall_of_Fame,a Hall of Fame and museum in Cooperstown, New York, honoring great baseball players
+11666,National_Climatic_Data_Center NCDC,the part of NOAA that maintains the world's largest active archive of weather data
+11667,National_Geospatial-Intelligence_Agency NGA,a combat support agency that provides geographic intelligence in support of national security
+11668,National_Guard home_reserve,United States military reserves recruited by the states and equipped by the federal government; subject to call by either
+11669,National_Guard_Bureau NGB,the agency that administers the Army National Guard and the Air National Guard; provides liaison between the Army and the Air Force and various National Guard units
+11670,National_Institute_of_Justice NIJ,the law enforcement agency that is the research and development branch of the Department of Justice
+11671,National_Institute_of_Standards_and_Technology NIST,an agency in the Technology Administration that makes measurements and sets standards as needed by industry or government programs
+11672,National_Institutes_of_Health NIH,an agency in the Department of Health and Human Services whose mission is to employ science in the pursuit of knowledge to improve human health; is the principal biomedical research agency of the federal government
+11673,National_Labor_Relations_Board NLRB,an independent agency of the United States government charged with mediating disputes between management and labor unions
+11674,National_Liberation_Army ELN,a Marxist terrorist group formed in 1963 by Colombian intellectuals who were inspired by the Cuban Revolution; responsible for a campaign of mass kidnappings and resistance to the government's efforts to stop the drug trade; "ELN kidnappers target foreign employees of large corporations"
+11675,National_Liberation_Army ELN Nestor_Paz_Zamora_Commission CNPZ,a terrorist organization in Bolivia that acts as an umbrella for numerous small indigenous subversive groups; a revival of a group with Marxist-Leninist ideologies originally established by Che Guevara in the 1960s
+11676,National_Liberation_Front_of_Corsica FLNC,a terrorist group formed in 1976 to work for Corsican independence; attacks on Corsica are aimed at sabotaging public infrastructure and symbols of colonialism
+11677,National_Library_of_Medicine United_States_National_Library_of_Medicine U.S._National_Library_of_Medicine,the world's largest medical library
+11678,National_Oceanic_and_Atmospheric_Administration NOAA,an agency in the Department of Commerce that maps the oceans and conserves their living resources; predicts changes to the earth's environment; provides weather reports and forecasts floods and hurricanes and other natural disasters related to weather
+11679,National_Park_Service,an agency of the Interior Department responsible for the national parks
+11680,National_Reconnaissance_Office NRO,an intelligence agency in the United States Department of Defense that designs and builds and operates space reconnaissance systems to detect trouble spots worldwide and to monitor arms control agreements and environmental issues and to help plan military operations
+11681,National_Rifle_Association NRA,a powerful lobby that advocates the right to own and bear arms and rejects any gun regulation by the government
+11682,National_Science_Foundation NSF,an independent agency of the federal government responsible for the promotion of progress in science and engineering by supporting programs in research and education
+11683,National_Security_Agency NSA,the United States cryptologic organization that coordinates and directs highly specialized activities to protect United States information systems and to produce foreign intelligence information
+11684,National_Security_Council NSC,a committee in the executive branch of government that advises the president on foreign and military and national security; supervises the Central Intelligence Agency
+11685,National_Socialist_German_Workers'_Party Nazi_Party,the political party founded in Germany in 1919 and brought to power by Hitler in 1933
+11686,National_Technical_Information_Service NTIS,an agency in the Technology Administration that is a primary resource for government-funded scientific and technical and engineering and business related information
+11687,National_Trust NT,an organization concerned to preserve historic monuments and buildings and places of historical interest or natural beauty; founded in 1895 and supported by endowment and private subscription
+11688,National_Weather_Service,the federal agency in the National Oceanic and Atmospheric Administration that is responsible for weather forecast and preparation of weather maps
+11689,Native_Hawaiian,a member or descendant of the indigenous Polynesian people who lived in the Hawaiian Islands
+11690,Natrix genus_Natrix,water snakes; a cosmopolitan genus
+11691,Natta Giulio_Natta,Italian chemist noted for work on polymers (1903-1979)
+11692,Nauclea genus_Nauclea,small genus of evergreen tropical shrubs or trees with smooth leathery leaves
+11693,Naucrates genus_Naucrates,a genus of Carangidae
+11694,Nauru Nauru_Island Pleasant_Island,a small island in the central Pacific Ocean 2,800 miles to the southwest of Hawaii; in Micronesia to the west of the Gilbert Islands
+11695,Nauru Republic_of_Nauru,an island republic on Nauru Island; phosphate exports support the economy
+11696,Nauruan,a native or inhabitant of Nauru
+11697,Nautilidae family_Nautilidae,spiral-shelled cephalopods
+11698,Navaho Navajo,a member of an Athapaskan people that migrated to Arizona and New Mexico and Utah
+11699,Navaho Navajo,the Athapaskan language spoken by the Navaho
+11700,Naval_Air_Warfare_Center_Weapons_Division NAWCWPNS,the principal agency of the United States Navy for research and development for air warfare and missile weapon systems
+11701,Naval_Research_Laboratory NRL,the United States Navy's defense laboratory that conducts basic and applied research for the Navy in a variety of scientific and technical disciplines
+11702,Naval_Special_Warfare NSW,the agency that provides units to conduct unconventional and counter-guerilla warfare
+11703,Naval_Surface_Warfare_Center NSWC,the agency that provides scientific and engineering and technical support for all aspects of surface warfare
+11704,Naval_Underwater_Warfare_Center NUWC,the agency that provides scientific and engineering and technical support for submarine and undersea warfare systems
+11705,Navarino battle_of_Navarino,a decisive naval battle in the War of Greek Independence (1827); the Turkish and Egyptian fleet was defeated by an allied fleet of British and French and Russian warships
+11706,Navratilova Martina_Navratilova,United States tennis player (born in Czechoslovakia) who won nine Wimbledon women's singles championships (born in 1956)
+11707,Navy_Cross,a United States Navy decoration for extraordinary heroism against an armed enemy
+11708,Navy_Department,a former executive department of the United States government; created in 1798 and combined with the War Department in 1947
+11709,Navy_SEAL SEAL,a member of a Naval Special Warfare unit who is trained for unconventional warfare; "SEAL is an acronym for Sea Air and Land"
+11710,Nazarene,an early name for any Christian
+11711,Nazarene,an inhabitant of Nazareth
+11712,Nazarene Ebionite,a member of a group of Jews who (during the early history of the Christian Church) accepted Jesus as the Messiah; they accepted the Gospel According to Matthew but rejected the Epistles of St. Paul and continued to follow Jewish law and celebrate Jewish holidays; they were later declared heretic by the Church of Rome
+11713,Nazareth,a historic town in northern Israel that is mentioned in the Gospels as the home of Joseph and Mary
+11714,Nazi German_Nazi,a German member of Adolf Hitler's political party
+11715,Nazification,social process of adopting (or being forced to adopt) Nazism; "as the process of Nazification spread they paid less attention to public opinion"
+11716,Nazimova Alla_Nazimova,United States actress (born in Russia) (1879-1945)
+11717,Nazism Naziism national_socialism,a form of socialism featuring racism and expansionism and obedience to a strong leader
+11718,Ndebele Matabele,a Bantu language sometimes considered a dialect of Zulu
+11719,Neandertal_man Neanderthal_man Neandertal Neanderthal Homo_sapiens_neanderthalensis,extinct robust human of Middle Paleolithic in Europe and western Asia
+11720,Neapolitan,a native or inhabitant of Naples
+11721,Neapolitan_ice_cream,a block of ice cream with 3 or 4 layers of different colors and flavors
+11722,Nebraska Cornhusker_State NE Neb.,a midwestern state on the Great Plains
+11723,Nebraskan Cornhusker,a native or resident of Nebraska
+11724,Nebuchadnezzar Nebuchadnezzar_II Nebuchadrezzar Nebuchadrezzar_II,(Old Testament) king of Chaldea who captured and destroyed Jerusalem and exiled the Israelites to Babylonia (630?-562 BC)
+11725,Neckar Neckar_River,a river in Germany; rises in the Black Forest and flows north into the Rhine
+11726,Necturus genus_Necturus,a genus of Proteidae
+11727,Neel Louis_Eugene_Felix_Neel,French physicist noted for research on magnetism (born in 1904)
+11728,Nefertiti,queen of Egypt and wife of Akhenaton (14th century BC)
+11729,Nefud An_Nefud Nafud An_Nafud,a desert in northern Saudi Arabia that is noted for its red sand and violent winds
+11730,Negaprion genus_Negaprion,lemon sharks
+11731,Negeri_Sembilan,one of the 13 states that constitute the Federation of Malaysia; located on the western coast of Peninsular Malaysia
+11732,Negev Negev_Desert,a desert in southern Israel
+11733,Negritude,an ideological position that holds Black culture to be independent and valid on its own terms; an affirmation of the African cultural heritage
+11734,Nehemiah Book_of_Nehemiah,an Old Testament book telling how a Jewish official at the court of Artaxerxes I in 444 BC became a leader in rebuilding Jerusalem after the Babylonian Captivity
+11735,Nehru Jawaharlal_Nehru,Indian statesman and leader with Gandhi in the struggle for home rule; was the first prime minister of the Republic of India from 1947 to 1964 (1889-1964)
+11736,Nejd Najd,a central plateau region of the Arabian Peninsula; formerly an independent sultanate until 1932 when it united with Hejaz to form the Kingdom of Saudi Arabia
+11737,Nelson Horatio_Nelson Viscount_Nelson Admiral_Nelson Lord_Nelson,English admiral who defeated the French fleets of Napoleon but was mortally wounded at Trafalgar (1758-1805)
+11738,Nelumbo genus_Nelumbo,sometimes placed in the family Nymphaeaceae: lotuses
+11739,Nelumbonaceae subfamily_Nelumbonaceae,in some classifications considered an independent family of water lilies; comprises the single genus Nelumbo
+11740,Nematocera suborder_Nematocera,mosquitoes; fungus gnats; crane flies; gnats; sand flies
+11741,Nematoda phylum_Nematoda Aschelminthes phylum_Aschelminthes,unsegmented worms: roundworms; threadworms; eelworms
+11742,Nemea,a valley in southeastern Greece where the Nemean Games were held
+11743,Nemean_Games,the ancient Panhellenic games held biennially at Nemea in the second and fourth years of each Olympiad
+11744,Nemean_lion,(Greek mythology) an enormous lion strangled by Hercules as the first of his 12 labors
+11745,Nemertea phylum_Nemertea Nemertina phylum_Nemertina,proboscis worms
+11746,Nemesis,(Greek mythology) the goddess of divine retribution and vengeance
+11747,Nenets Nentsi Nentsy Yurak-Samoyed,a Uralic language spoken by a Samoyed of northern Siberia
+11748,Neo-Lamarckism,a modern Lamarckian theory emphasizing the importance of environmental factors in genetic changes and retaining the notion of the inheritance of acquired characters
+11749,Neo-Latin New_Latin,Latin since the Renaissance; used for scientific nomenclature
+11750,Neoceratodus genus_Neoceratodus,extant Australian lungfishes
+11751,Neofiber genus_Neofiber,round-tailed muskrat
+11752,Neohygrophorus genus_Neohygrophorus,a genus of fungi belonging to the family Hygrophoraceae
+11753,Neohygrophorus_angelesianus,a fungus with a small brown convex cap with a depressed disc; waxy wine-colored gills and a brown stalk; fruits in or near melting snow banks in the western mountains of North America
+11754,Neolentinus genus_Neolentinus,a genus of fungi belonging to the family Polyporaceae
+11755,Neolentinus_ponderosus,a gilled polypore with a large cap (up to 15 inches in diameter) and a broad stalk; edible when young and tender
+11756,Neolithic_Age Neolithic New_Stone_Age,latest part of the Stone Age beginning about 10,000 BC in the Middle East (but later elsewhere)
+11757,Neomys genus_Neomys,a genus of Soricidae
+11758,Neophron genus_Neophron,a genus of Accipitridae
+11759,Neoplatonism,a system of philosophical and theological doctrines composed of elements of Platonism and Aristotelianism and oriental mysticism; its most distinctive doctrine holds that the first principle and source of reality transcends being and thought and is naturally unknowable; "Neoplatonism was predominant in pagan Europe until the 6th century"; "Neoplatonism was a major influence on early Christian writers and on later medieval and Renaissance thought and on Islamic philosophy"
+11760,Neoplatonist,an adherent of Neoplatonism
+11761,Neopolitan,a resident of Naples
+11762,Neosho Neosho_River,a river that rises in eastern Kansas and flows eastward into Oklahoma to become a tributary of the Arkansas River
+11763,Neosporin,trade name for a topical drug containing several antibacterials; used as an ointment for skin irritations and in the form of eyedrops for minor eye infections
+11764,Neotoma genus_Neotoma,packrats
+11765,Nepa genus_Nepa,type genus of the Nepidae: typical elongate-oval water scorpions
+11766,Nepal Kingdom_of_Nepal,a small landlocked Asian country high in the Himalayas between India and China
+11767,Nepal_trumpet_flower Easter_lily_vine Beaumontia_grandiflora,evergreen woody twiner with large glossy leaves and showy corymbs of fragrant white trumpet-shaped flowers
+11768,Nepalese Nepali,a native or inhabitant of Nepal
+11769,Nepalese_monetary_unit,monetary unit in Nepal
+11770,Nepalese_rupee rupee,the basic unit of money in Nepal; equal to 100 paisa
+11771,Nepali,the official state language of Nepal
+11772,Nepenthaceae family_Nepenthaceae,coextensive with the genus Nepenthes
+11773,Nepenthes genus_Nepenthes,pitcher plants
+11774,Nepeta genus_Nepeta,catmint
+11775,Nephelium genus_Nephelium,a genus of dicotyledonous trees of the family Sapindaceae that are native to Asia and Australia
+11776,Nephrolepis genus_Nephrolepis,small genus of tropical ferns; sometimes placed in Polypodiaceae
+11777,Nephrops genus_Nephrops,a genus of Nephropsidae
+11778,Nephropsidae family_Nephropsidae,in some classifications coextensive with the Homaridae
+11779,Nephthys,Egyptian goddess associated with ritual of the dead; sister of Geb and Nut; wife of Set
+11780,Nephthytis_afzelii,tropical rhizomatous plant cultivated as an ornamental for its large sagittate leaves
+11781,Nepidae family_Nepidae,water scorpions
+11782,Neptune,(Roman mythology) god of the sea; counterpart of Greek Poseidon
+11783,Neptune,a giant planet with a ring of ice particles; the 8th planet from the sun is the most remote of the gas giants; "the existence of Neptune was predicted from perturbations in the orbit of Uranus and it was then identified in 1846"
+11784,Nereid,(Greek mythology) any of the 50 sea nymphs who were daughters of the sea god Nereus
+11785,Nereus,(Greek mythology) a sea god son of Pontus and Gaea; lived in the depths of the sea with his wife Doris and their daughters the Nereids
+11786,Nergal,(Akkadian) god ruling with his consort Ereshkigal the world of the dead
+11787,Neritidae family_Neritidae,neritids
+11788,Nerium genus_Nerium,one species: oleander
+11789,Nernst Walther_Hermann_Nernst,German physicist and chemist who formulated the third law of thermodynamics (1864-1941)
+11790,Nero Nero_Claudius_Caesar_Drusus_Germanicus Lucius_Domitius_Ahenobarbus,Roman Emperor notorious for his monstrous vice and fantastic luxury (was said to have started a fire that destroyed much of Rome in 64) but the Roman Empire remained prosperous during his rule (37-68)
+11791,Nerodia genus_Nerodia,North American water snakes
+11792,Nerthus Hertha,the Teutonic goddess of fertility; later identified with Norse Njord
+11793,Neruda Pablo_Neruda Reyes Neftali_Ricardo_Reyes,Chilean poet (1904-1973)
+11794,Nerva Marcus_Cocceius_Nerva,Emperor of Rome who introduced a degree of freedom after the repressive reign of Domitian; adopted Trajan as his successor (30-98)
+11795,Nervi Pier_Luigi_Nervi,Italian architect who pioneered in the use of reinforced concrete (1891-1979)
+11796,Nesokia genus_Nesokia,bandicoot rats
+11797,Nesselrode Nesselrode_pudding,a rich frozen pudding made of chopped chestnuts and maraschino cherries and candied fruits and liqueur or rum
+11798,Nestor,(Greek mythology) a wise old counselor to the Greeks at Troy
+11799,Nestor genus_Nestor,a genus of Psittacidae
+11800,Nestorian,a follower of Nestorius
+11801,Nestorian_Church,a Christian Church in the Middle East that followed Nestorianism; there is still a small Nestorian Church in Iraq
+11802,Nestorianism,the theological doctrine (named after Nestorius) that Christ is both the son of God and the man Jesus (which is opposed to Roman Catholic doctrine that Christ is fully God)
+11803,Nestorius,Syrian who was a Christian bishop and Patriarch of Constantinople in the early fifth century; one of the major heresies concerning the doctrine of the hypostasis of Christ was named after him (died in 451)
+11804,Netherlander Dutchman Hollander,a native or inhabitant of Holland
+11805,Netherlands The_Netherlands Kingdom_of_The_Netherlands Nederland Holland,a constitutional monarchy in western Europe on the North Sea; half the country lies below sea level
+11806,Netherlands_Antilles,a group of islands in the Lesser Antilles just to the north of Venezuela that are administered by The Netherlands
+11807,Netscape,a commercial browser
+11808,Neuroptera order_Neuroptera,an order of insects including: lacewings; antlions; dobsonflies; alderflies; fish flies; mantispids; spongeflies
+11809,Neurospora genus_Neurospora,genus of fungi with black perithecia used extensively in genetic research; includes some forms with orange spore masses that cause severe damage in bakeries
+11810,Neurotrichus genus_Neurotrichus,shrew moles
+11811,Neva Neva_River,a river in northwestern Russia flowing generally west into the Gulf of Finland
+11812,Nevada Silver_State Battle_Born_State Sagebrush_State NV Nev.,a state in the western United States
+11813,Nevadan,a native or resident of Nevada
+11814,Nevelson Louise_Nevelson,United States sculptor (born in Russia) known for massive shapes of painted wood (1899-1988)
+11815,Never-Never,the remote outback of Australia; unpopulated desert country
+11816,Nevis,one of the islands of Saint Christopher-Nevis
+11817,New_Amsterdam,a settlement established by the Dutch near the mouth of Hudson River and the southern end of Manhattan Island; annexed by the English in 1664 and renamed New York
+11818,New_Britain,the largest island in the Bismarck Archipelago; part of Papua New Guinea
+11819,New_Brunswick,a university town in central New Jersey
+11820,New_Brunswick,a province in southeastern Canada
+11821,New_Caledonia,an island to the to the east of Australia and to the north of New Zealand
+11822,New_Caledonian_yew Austrotaxus_spicata,large yew native to New Caledonia; cultivated in eastern Australia and New Zealand and Hawaii
+11823,New_Deal,the historic period (1933-1940) in the United States during which President Franklin Roosevelt's economic policies were implemented
+11824,New_Deal,the economic policy of F. D. Roosevelt
+11825,New_Dealer,a supporter of the economic policies in the United States known as the New Deal
+11826,New_England,a region of northeastern United States comprising Maine and New Hampshire and Vermont and Massachusetts and Rhode Island and Connecticut
+11827,New_England_aster Aster_novae-angliae,common perennial of eastern North America having showy purplish flowers; a parent of the Michaelmas daisy
+11828,New_England_clam_chowder,a thick chowder made with clams and potatoes and onions and salt pork and milk
+11829,New_Englander Yankee,an American who lives in New England
+11830,New_English_Bible,a modern English version of the Bible and Apocrypha
+11831,New_Forest,an area of woods and heathland in southern Hampshire that was set aside by William I as Crown property in 1079; originally a royal hunting ground but now administered as parkland; noted for its ponies
+11832,New_Guinea,a Pacific island to the north of Australia; the 2nd largest island in the world; the western part is governed by Indonesia and the eastern part is Papua New Guinea
+11833,New_Hampshire,one of the British colonies that formed the United States
+11834,New_Hampshire Granite_State NH N.H.,a state in New England; one of the original 13 colonies
+11835,New_Hampshirite Granite_Stater,a native or resident of New Hampshire
+11836,New_Haven,a city in southwestern Connecticut; site of Yale University
+11837,New_Ireland,an island in the Bismarck Archipelago; part of Papua New Guinea
+11838,New_Jersey,one of the British colonies that formed the United States
+11839,New_Jersey Jersey Garden_State NJ N.J.,a Mid-Atlantic state on the Atlantic; one of the original 13 colonies
+11840,New_Jerseyan New_Jerseyite Garden_Stater,a native of resident of New Jersey
+11841,New_London,a town in southeastern Connecticut near Long Island Sound; an important whaling center in the 19th century
+11842,New_Look,a style of women's clothing created by Christian Dior in 1947; involved a tight bodice and narrow waist and a flowing pleated skirt
+11843,New_Mexican,a native or resident of New Mexico
+11844,New_Mexico Land_of_Enchantment NM N.M.,a state in southwestern United States on the Mexican border
+11845,New_Netherland,a Dutch colony in North America along the Hudson and lower Delaware rivers although the colony centered in New Amsterdam; annexed by the English in 1664
+11846,New_Orleans,a port and largest city in Louisiana; located in southeastern Louisiana near the mouth of the Mississippi river; a major center for offshore drilling for oil in the Gulf of Mexico; jazz originated here among black musicians in the late 19th century; Mardi Gras is celebrated here each year
+11847,New_People's_Army NPA,a terrorist organization that is the militant wing of the Communist Party of the Philippines; a Maoist organization formed to overthrow the government; uses hit squads called Sparrow Units; opposes United States military presence in the Philippines
+11848,New_River,a river in the southeastern United States that flows northward from North Carolina to West Virginia where it empties into the Kanawha River
+11849,New_River_Gorge_Bridge,a steel arch bridge across New River at Fayetteville, West Virginia
+11850,New_Siberian_Islands,a group of islands in the Arctic Ocean to the north of Siberia and to the east of the Laptev Sea
+11851,New_South_Wales,an Australian state in southeastern Australia
+11852,New_Testament,the collection of books of the Gospels, Acts of the Apostles, the Pauline and other epistles, and Revelation; composed soon after Christ's death; the second half of the Christian Bible
+11853,New_Wave Nouvelle_Vague,an art movement in French cinema in the 1960s
+11854,New_Waver,a film maker who follows New Wave ideas
+11855,New_World_beaver Castor_canadensis,a variety of beaver found in almost all areas of North America except Florida
+11856,New_World_blackbird blackbird,any bird of the family Icteridae whose male is black or predominantly black
+11857,New_World_chat chat,birds having a chattering call
+11858,New_World_flycatcher flycatcher tyrant_flycatcher tyrant_bird,large American birds that characteristically catch insects on the wing
+11859,New_World_goldfinch goldfinch yellowbird Spinus_tristis,American finch whose male has yellow body plumage in summer
+11860,New_World_jay,a North American jay
+11861,New_World_least_weasel Mustela_rixosa,of Canada and northeastern United States
+11862,New_World_monkey platyrrhine platyrrhinian,hairy-faced arboreal monkeys having widely separated nostrils and long usually prehensile tails
+11863,New_World_mouse,a variety of rodent
+11864,New_World_opah Lampris_guttatus,from Nova Scotia to West Indies and Gulf of Mexico
+11865,New_World_oriole American_oriole oriole,American songbird; male is black and orange or yellow
+11866,New_World_porcupine,arboreal porcupine
+11867,New_World_sparrow,sparrow-like North American finches
+11868,New_World_tapir Tapirus_terrestris,a tapir found in South America and Central America
+11869,New_World_vulture cathartid,large birds of prey superficially similar to Old World vultures
+11870,New_World_warbler wood_warbler,small bright-colored American songbird with a weak unmusical song
+11871,New_Year,the calendar year just begun
+11872,New_Year's_Day New_Year's January_1,the first day of the year
+11873,New_Year's_Eve December_31,the last day of the year
+11874,New_York,one of the British colonies that formed the United States
+11875,New_York New_York_City Greater_New_York,the largest city in New York State and in the United States; located in southeastern New York at the mouth of the Hudson river; a major financial and cultural center
+11876,New_York New_York_State Empire_State NY N.Y.,a Mid-Atlantic state; one of the original 13 colonies
+11877,New_York_Bay,a bay of the North Atlantic; fed by the Hudson River
+11878,New_York_State_Barge_Canal,a system of canals crossing New York State and connecting the Great Lakes with the Hudson River and Lake Champlain
+11879,New_York_Stock_Exchange N._Y._Stock_Exchange NYSE big_board,a stock exchange in New York
+11880,New_York_fern Parathelypteris_novae-boracensis Dryopteris_noveboracensis,slender shield fern of moist woods of eastern North America; sometimes placed in genus Dryopteris
+11881,New_Yorker,a native or resident of New York (especially of New York City)
+11882,New_Zealand,an independent country within the British Commonwealth; achieved independence from the United Kingdom in 1907; known for sheep and spectacular scenery
+11883,New_Zealand New_Zealand_Islands,North Island and South Island and adjacent small islands in the South Pacific
+11884,New_Zealand_beech,any of several tall New Zealand trees of the genus Nothofagus; some yield useful timber
+11885,New_Zealand_cotton,a fiber from the bast of New Zealand ribbon trees that resembles cotton fiber
+11886,New_Zealand_daisybush Olearia_haastii,bushy New Zealand shrub cultivated for its fragrant white flower heads
+11887,New_Zealand_dollar,the basic unit of money in New Zealand
+11888,New_Zealand_spinach Tetragonia_tetragonioides Tetragonia_expansa,coarse sprawling Australasian plant with red or yellow flowers; cultivated for its edible young shoots and succulent leaves
+11889,New_Zealand_wren,birds of New Zealand that resemble wrens
+11890,New_Zealander Kiwi,a native or inhabitant of New Zealand
+11891,Newari,Himalayish language spoken in the Kathmandu valley of Nepal
+11892,Newark,the largest city in New Jersey; located in northeastern New Jersey
+11893,Newburg_sauce,lobster butter and cream and egg yolks seasoned with onions and sherry or Madeira
+11894,Newburgh,a town on the Hudson River in New York; in 1782 and 1783 it was George Washington's headquarters
+11895,Newcastle Newcastle-upon-Tyne,a port city in northeastern England on the River Tyne; a center for coal exports (giving rise to the expression `carry coals to Newcastle' meaning to do something unnecessary)
+11896,Newcastle_disease,disease of domestic fowl and other birds
+11897,Newcomb Simon_Newcomb,United States astronomer (1835-1909)
+11898,Newfoundland,an island in the north Atlantic
+11899,Newfoundland Newfoundland_dog,a breed of very large heavy dogs with a thick coarse usually black coat; highly intelligent dogs and vigorous swimmers; developed in Newfoundland
+11900,Newfoundland_and_Labrador,a Canadian province on the island of Newfoundland and on the mainland along the coast of the Labrador Sea; became Canada's 10th province in 1949
+11901,Newfoundland_dwarf_birch American_dwarf_birch Betula_glandulosa,small shrub of colder parts of North America and Greenland
+11902,Newgate,a former prison in London notorious for its unsanitary conditions and burnt down in riots in 1780; a new prison was built on the same spot but was torn down in 1902
+11903,Newman John_Henry_Newman Cardinal_Newman,English prelate and theologian who (with John Keble and Edward Pusey) founded the Oxford movement; Newman later turned to Roman Catholicism and became a cardinal (1801-1890)
+11904,Newman Paul_Newman Paul_Leonard_Newman,United States film actor (born in 1925)
+11905,Newport,a resort city in southeastern Rhode Island; known for the summer homes of millionaires; important yachting center
+11906,Newport,a port city in southeastern Wales
+11907,Newport_News,a port city in southeastern Virginia at the mouth of the James River off Hampton Roads; large shipyards
+11908,Newton Isaac_Newton Sir_Isaac_Newton,English mathematician and physicist; remembered for developing the calculus and for his law of gravitation and his three laws of motion (1642-1727)
+11909,Newton's_law_of_motion Newton's_law law_of_motion,one of three basic laws of classical mechanics
+11910,Newtonian,a follower of Isaac Newton
+11911,Newtonian_telescope Newtonian_reflector,reflecting telescope in which the image is viewed through an eyepiece perpendicular to main axis
+11912,Newtown_Wonder,apple used primarily in cooking
+11913,Ney Michel_Ney Duc_d'Elchingen,French marshal in the Napoleonic Wars (1769-1815)
+11914,Nez_Perce,a member of a tribe of the Shahaptian people living on the pacific coast
+11915,Nez_Perce,the Shahaptian language spoken by the Nez Perce
+11916,Nganasan,a member of the Samoyedic people living on the Taimyr Peninsula in Siberia
+11917,Nganasan,the Uralic language spoken by the Nganasan
+11918,Nguni,a group of southern Bantu languages
+11919,Ni-hard Ni-hard_iron,cast iron to which nickel has been added to make it resist abrasion
+11920,Ni-resist Ni-resist_iron,cast iron consisting of graphite in a matrix of austenite
+11921,Niagara Niagara_Falls,waterfall in Canada is the Horseshoe Falls; in the United States it is the American Falls
+11922,Niagara Niagara_River,a river flowing from Lake Erie into Lake Ontario; forms boundary between Ontario and New York
+11923,Niagara_Falls,a city in western New York State at the falls of the Niagara river; tourist attraction and honeymoon resort
+11924,Niamey capital_of_Niger,the capital and largest city of Niger
+11925,Nibelung,(German mythology) a companion or follower of Siegfried
+11926,Nibelung,(German mythology) any of the group of dwarfs who possessed a treasure hoard that was stolen by Siegfried
+11927,Nibelungenlied,an epic poem written in Middle High German and based on the legends of Siegfried and Teutonic kings
+11928,Nicaea,an ancient city in Bithynia; founded in the 4th century BC and flourished under the Romans; the Nicene Creed was adopted there in 325
+11929,Nicaea First_Council_of_Nicaea,the first ecumenical council in 325 which produced the wording of the Nicene Creed and condemned the heresy of Arianism
+11930,Nicaea Second_Council_of_Nicaea,the seventh ecumenical council in 787 which refuted iconoclasm and regulated the veneration of holy images
+11931,Nicandra genus_Nicandra,sturdy annual of Peru
+11932,Nicaragua Republic_of_Nicaragua,a republic in Central America; achieved independence from Spain in 1821
+11933,Nicaraguan,a native or inhabitant of Nicaragua
+11934,Nicaraguan_monetary_unit,monetary unit in Nicaragua
+11935,Nice,a city in southeastern France on the Mediterranean; the leading resort on the French Riviera
+11936,Nicene_Creed,(Christianity) a formal creed summarizing Christian beliefs; first adopted in 325 and later expanded
+11937,Nicholas Saint_Nicholas St._Nicholas,a bishop in Asia Minor who is associated with Santa Claus (4th century)
+11938,Nicholas_I Czar_Nicholas_I,czar of Russia from 1825 to 1855 who led Russia into the Crimean War (1796-1855)
+11939,Nicholas_II,the last czar of Russia who was forced to abdicate in 1917 by the Russian Revolution; he and his family were executed by the Bolsheviks (1868-1918)
+11940,Nicholas_V Tomasso_Parentucelli,Italian pope from 1447 to 1455 who founded the Vatican library (1397-1455)
+11941,Nichrome,an alloy of nickel and chromium with high electrical resistance and an ability to withstand high temperatures; used for resistance heating elements
+11942,Nicklaus Jack_Nicklaus Jack_William_Nicklaus,United States golfer considered by many to be the greatest golfer of all time (born in 1940)
+11943,Nicol_prism,optical device that produces plane-polarized light
+11944,Nicolson Harold_Nicolson Sir_Harold_George_Nicolson,English diplomat and author (1886-1968)
+11945,Nicosia capital_of_Cyprus,the capital and largest city of Cyprus
+11946,Nicotiana genus_Nicotiana,American and Asiatic aromatic herbs and shrubs with viscid foliage
+11947,Nidularia genus_Nidularia,type genus of the Nidulariaceae
+11948,Nidulariaceae family_Nidulariaceae,bird's-nest fungi
+11949,Nidulariales order_Nidulariales,small order of basidiomycetous fungi comprising families Nidulariaceae and Sphaerobolaceae
+11950,Niebuhr Barthold_George_Niebuhr,German historian noted for his critical approach to sources and for his history of Rome (1776-1831)
+11951,Niebuhr Reinhold_Niebuhr,United States Protestant theologian (1892-1971)
+11952,Nielsen Carl_Nielsen Carl_August_Nielsen,Danish composer (1865-1931)
+11953,Niemann-Pick_disease,a disorder of lipid metabolism that is inherited as an autosomal recessive trait
+11954,Nietzsche Friedrich_Wilhelm_Nietzsche,influential German philosopher remembered for his concept of the superman and for his rejection of Christian values; considered, along with Kierkegaard, to be a founder of existentialism (1844-1900)
+11955,Niger Niger_River,an African river; flows into the South Atlantic
+11956,Niger Republic_of_Niger,a landlocked republic in West Africa; gained independence from France in 1960; most of the country is dominated by the Sahara Desert
+11957,Niger-Congo,a family of African language spoken in west Africa
+11958,Niger-Kordofanian Niger-Kordofanian_language,the family of languages that includes most of the languages spoken in Africa south of the Sahara; the majority of them are tonal languages but there are important exceptions (e.g., Swahili or Fula)
+11959,Niger_franc,the basic unit of money in Niger
+11960,Nigeria Federal_Republic_of_Nigeria,a republic in West Africa on the Gulf of Guinea; gained independence from Britain in 1960; most populous African country
+11961,Nigerian,a native or inhabitant of Nigeria
+11962,Nigerian_monetary_unit,monetary unit in Nigeria
+11963,Nigerien,a native or inhabitant of Niger
+11964,Nightingale Florence_Nightingale Lady_with_the_Lamp,English nurse remembered for her work during the Crimean War (1820-1910)
+11965,Nigroporus genus_Nigroporus,a genus of fungi belonging to the family Polyporaceae
+11966,Nigroporus_vinosus,a woody pore fungus with a dark brown to red brown cap and spore surface and small pores
+11967,Nihau Nihau_Island,the most northwestern Hawaiian island (beyond Kauai)
+11968,Nijinsky Vaslav_Nijinsky Waslaw_Nijinsky,Russian dancer considered by many to be the greatest dancer of the 20th century (1890-1950)
+11969,Nijmegen,an industrial city in the eastern Netherlands
+11970,Nike,(Greek mythology) winged goddess of victory; identified with Roman Victoria
+11971,Nile Nile_River,the world's longest river (4150 miles); flows northward through eastern Africa into the Mediterranean; the Nile River valley in Egypt was the site of the world's first great civilization
+11972,Nilgiri_Hills,hills in southern India
+11973,Nilo-Saharan Nilo-Saharan_language,a family of East African languages spoken by Nilotic peoples from the Sahara south to Kenya and Tanzania
+11974,Nilotic Nilotic_language,a group of languages of East Africa belonging to the Chari-Nile group
+11975,Nilsson Brigit_Nilsson Marta_Brigit_Nilsson,Swedish operatic soprano who played Wagnerian roles (born in 1918)
+11976,Nimitz Chester_Nimitz Chester_William_Nimitz Admiral_Nimitz,United States admiral of the Pacific fleet during World War II who used aircraft carriers to destroy the Japanese navy (1885-1966)
+11977,Nimravus genus_Nimravus,false sabertoothed tigers
+11978,Nimrod,(Old Testament) a famous hunter
+11979,Nina,the Babylonian goddess of the watery deep and daughter of Ea
+11980,Nineteenth_Amendment,an amendment to the Constitution of the United States adopted in 1920; guarantees that no state can deny the right to vote on the basis of sex
+11981,Nineveh,an ancient Assyrian city on the Tigris across from the modern city of Mosul in the northern part of what is now known as Iraq
+11982,Ningal,(Akkadian) a goddess; wife of the Moon god Sin
+11983,Ningirsu,Babylonian god in older pantheon: god of war and agriculture
+11984,Ningishzida,an underworld Babylonian deity; patron of medicine
+11985,Ninigi Ninigino-Mikoto,grandson of Amaterasu and first ruler of Japan
+11986,Ninkhursag Ninhursag Ninkharsag,the great mother goddess; worshipped also as Aruru and Mama and Nintu
+11987,Nintu Nintoo,a name under which Ninkhursag was worshipped
+11988,Ninurta Ninib,a solar deity; firstborn of Bel and consort was Gula; god of war and the chase and agriculture; sometimes identified with biblical Nimrod
+11989,Niobe,(Greek mythology) the daughter of Tantalus whose boasting about her children provoked Apollo and Artemis to slay them all; Niobe was turned to stone while bewailing her loss
+11990,Niobrara Niobrara_River,a tributary of the Missouri River
+11991,Nipa genus_Nipa Nypa genus_Nypa,monotypic genus of palms of Australasia
+11992,Nisan Nissan,the seventh month of the civil year; the first month of the ecclesiastic year (in March and April)
+11993,Nisei,a person born in the United States of parents who emigrated from Japan
+11994,Nissen_hut Quonset_hut,a prefabricated hut of corrugated iron having a semicircular cross section
+11995,Nitella genus_Nitella,fragile branching stoneworts
+11996,Nitrobacter genus_Nitrobacter,rod-shaped soil bacteria
+11997,Nitrobacteriaceae family_Nitrobacteriaceae,usually rod-shaped bacteria that oxidize ammonia or nitrites: nitrobacteria
+11998,Nitrosomonas genus_Nitrosomonas,ellipsoidal soil bacteria
+11999,Nitrospan Nitrostat,trade names for nitroglycerin used as a coronary vasodilator in the treatment of angina pectoris
+12000,Nivose,fourth month of the Revolutionary calendar (December and January); the snowy month
+12001,Nixon Richard_Nixon Richard_M._Nixon Richard_Milhous_Nixon President_Nixon,vice president under Eisenhower and 37th President of the United States; resigned after the Watergate scandal in 1974 (1913-1994)
+12002,Nizhnyi_Novgorod Nizhni_Novgorod Gorki Gorky Gorkiy,an industrial city in the European part of Russia; birthplace of Maksim Gorky
+12003,Njord Njorth,(Norse mythology) chief of the Vanir; god of the sea and winds and prosperity; father of Frey and Freya; sometimes subsumes Teutonic Nerthus
+12004,Noah,the Hebrew patriarch who saved himself and his family and the animals by building an ark in which they survived 40 days and 40 nights of rain; the story of Noah and the flood is told in the Book of Genesis
+12005,Noah's_flood Noachian_deluge Noah_and_the_Flood the_Flood,(Biblical) the great deluge that is said in the Book of Genesis to have occurred in the time of Noah; it was brought by God upon the earth because of the wickedness of human beings
+12006,Nob_Hill,a fashionable neighborhood in San Francisco
+12007,Nobel Alfred_Nobel Alfred_Bernhard_Nobel,Swedish chemist remembered for his invention of dynamite and for the bequest that created the Nobel prizes (1833-1896)
+12008,Nobel_prize,an annual award for outstanding contributions to chemistry or physics or physiology and medicine or literature or economics or peace
+12009,Nobelist Nobel_Laureate,winner of a Nobel prize
+12010,Noctua genus_Noctua,type genus of the Noctuidae: moths whose larvae are cutworms
+12011,Noctuidae family_Noctuidae,cutworms; armyworms
+12012,Noether Emmy_Noether,German mathematician (1882-1935)
+12013,Nogales,a town in Arizona on the Mexican border opposite Nogales, Mexico
+12014,Nogales,a town in northern Mexico on the border of Arizona
+12015,Noguchi Hideyo_Noguchi,United States bacteriologist (born in Japan) who discovered the cause of yellow fever and syphilis (1876-1928)
+12016,Noguchi Isamu_Noguchi,United States sculptor (1904-1988)
+12017,Nolina genus_Nolina,perennial plants resembling yucca; found in southern United States and Mexico
+12018,Nome,a town in western Alaska on the southern coast of the Seward Peninsula; an important center of an Alaskan gold rush at the beginning of the 20th century
+12019,Nomia_melanderi alkali_bee,a common solitary bee important for pollinating alfalfa in the western United States
+12020,Nonconformist chapelgoer,a Protestant in England who is not a member of the Church of England
+12021,Nonproliferation_Center NPC,an agency that serves as the focal point for all Intelligence Community activities related to nonproliferation of weapons of mass destruction and their missile delivery systems
+12022,Noonan's_syndrome,syndrome seen only in males; marked by short stature and lowset ears and subnormal fertility
+12023,Nootka,a member of the Wakashan people living on Vancouver Island and in the Cape Flattery region of northwestern Washington
+12024,Nootka,a Wakashan language spoken by the Nootka
+12025,Nopalea genus_Nopalea,a genus of the cactus family with scarlet flowers
+12026,Nor-Q-D,trade name for an oral contraceptive containing norethindrone
+12027,Nord-Pas-de-Calais,a region in northeastern France
+12028,Norfolk,port city located in southeastern Virginia on the Elizabeth River at the mouth of Chesapeake Bay; headquarters of the Atlantic fleet of the United States Navy
+12029,Norfolk_Island,an island territory of Australia in the Pacific Ocean off the eastern coast of Australia; formerly a British penal colony
+12030,Norfolk_jacket,loose-fitting single-breasted jacket
+12031,Norfolk_terrier,English breed of small terrier with a straight wiry grizzled coat and dropped ears
+12032,Norinyl,trade name for an oral contraceptive containing norethindrone and mestranol
+12033,Norlestrin,trade name for an oral contraceptive containing estradiol and norethindrone
+12034,Norma,a small constellation in the southern hemisphere near Lupus and Ara in the Milky Way
+12035,Norman,an inhabitant of Normandy
+12036,Norman Greg_Norman Gregory_John_Norman,Australian golfer (born in 1955)
+12037,Norman Jessye_Norman,United States operatic soprano (born in 1945)
+12038,Norman-French Norman_French Old_North_French,the medieval Norman dialect of Old French
+12039,Norman_Conquest,the invasion and settlement of England by the Normans following the battle of Hastings (1066)
+12040,Norman_architecture,a Romanesque style first appearing in Normandy around 950 AD and used in Britain from the Norman Conquest until the 12th century
+12041,Normandie Normandy,a former province of northwestern France on the English channel; divided into Haute-Normandie and Basse-Normandie
+12042,Norn weird_sister,(Norse mythology) any of the three goddesses of destiny; identified with Anglo-Saxon Wyrd; similar to Greek Moirae and Roman Parcae
+12043,Norris Frank_Norris Benjamin_Franklin_Norris_Jr.,United States writer (1870-1902)
+12044,Norrish Ronald_George_Wreyford_Norrish,English chemist (1897-1978)
+12045,Norse_deity,a deity worshipped by the ancient Norsemen
+12046,Norse_mythology,the mythology of Scandinavia (shared in part by Britain and Germany) until the establishment of Christianity
+12047,North,the region of the United States lying to the north of the Mason-Dixon line
+12048,North Frederick_North Second_Earl_of_Guilford,British statesman under George III whose policies led to rebellion in the American colonies (1732-1792)
+12049,North_Africa,an area of northern Africa between the Sahara and the Mediterranean Sea
+12050,North_America,a continent (the third largest) in the western hemisphere connected to South America by the Isthmus of Panama
+12051,North_America,the nations of the North American continent collectively
+12052,North_American,a native or inhabitant of North America
+12053,North_American_Free_Trade_Agreement NAFTA,an agreement for free trade between the United States and Canada and Mexico; became effective in 1994 for ten years
+12054,North_American_country North_American_nation,any country on the North American continent
+12055,North_Atlantic,that part of the Atlantic Ocean to the north of the equator
+12056,North_Atlantic_Council NAC,a council consisting of permanent representatives of all the member countries of NATO; has political authority and powers of decision
+12057,North_Atlantic_Treaty,the treaty signed in 1949 by 12 countries that established NATO
+12058,North_Atlantic_Treaty_Organization NATO,an international organization created in 1949 by the North Atlantic Treaty for purposes of collective security
+12059,North_Carolina,one of the British colonies that formed the United States
+12060,North_Carolina Old_North_State Tar_Heel_State NC N.C.,a state in southeastern United States; one of the original 13 colonies
+12061,North_Carolinian Tarheel,a native or resident of North Carolina
+12062,North_Cascades_National_Park,a national park in Washington that is an alpine wilderness area featuring gold rush and logging campsites
+12063,North_Channel,a strait between Northern Ireland and Scotland that connects the Atlantic Ocean and the Irish Sea
+12064,North_Dakota Peace_Garden_State ND N.D.,a state of north central United States bordering on Canada
+12065,North_Dakotan,a native or resident of North Dakota
+12066,North_Dravidian,a Dravidian language spoken primarily in eastern India
+12067,North_Equatorial_Current,an equatorial current that flows west across the Pacific just north of the equator
+12068,North_Island,the smaller but more populous of two main islands of New Zealand; separated from South Island by Cook Strait
+12069,North_Korea Democratic_People's_Republic_of_Korea D.P.R.K. DPRK,a communist country in the northern half of the Korean Peninsula; established in 1948
+12070,North_Korean,a Korean from North Korea
+12071,North_Korean_monetary_unit,monetary unit in North Korea
+12072,North_Korean_won won,the basic unit of money in North Korea
+12073,North_Pacific,that part of the Pacific Ocean to the north of the equator
+12074,North_Peak,19,370 feet high
+12075,North_Platte,a town in west central Nebraska on the Platte River
+12076,North_Platte North_Platte_River,a river that rises in northern Colorado and flows northward into Wyoming and then eastward and southeastward through Nebraska where it joins the South Platte to form the Platte River
+12077,North_Pole,the northernmost point of the Earth's axis
+12078,North_Sea,an arm of the North Atlantic between the British Isles and Scandinavia; oil was discovered under the North Sea in 1970
+12079,North_Temperate_Zone,Temperate Zone between the Arctic Circle and the Tropic of Cancer
+12080,North_Vietnam,a former country in southeastern Asia that existed from 1954 (after the defeat of the French at Dien Bien Phu) until 1975 when South Vietnam collapsed at the end of the Vietnam War
+12081,North_Yorkshire,a county in northern England
+12082,Northampton,the principal city of Northamptonshire
+12083,Northamptonshire,a county is central England
+12084,Northeast northeastern_United_States,the northeastern region of the United States
+12085,Northern,a dialect of Middle English that developed into Scottish Lallans
+12086,Northern_Alliance United_Front,a multiethnic alliance in Afghanistan who practice a moderate form of Islam and are united in their opposition to the Taliban
+12087,Northern_Baptist,a member of the American Baptist Convention
+12088,Northern_Cross,a cluster of 5 bright stars forming a cross in the constellation Cygnus
+12089,Northern_Ireland,a division of the United Kingdom located on the northern part of the island of Ireland
+12090,Northern_Marianas Northern_Mariana_Islands,a self-governing territory comprising all of the Mariana Islands except Guam
+12091,Northern_Spy,large late-ripening apple with skin striped with yellow and red
+12092,Northern_Territory,a territory in north central Australia
+12093,Northern_bedstraw Northern_snow_bedstraw Galium_boreale,North American stoloniferous perennial having white flowers; sometimes used as an ornamental
+12094,Northern_dewberry American_dewberry Rubus_flagellaris,of eastern North America
+12095,Northerner,an inhabitant of the North
+12096,Northrop John_Howard_Northrop,United States biochemist (1891-1987)
+12097,Northumberland,the northernmost county of England; has many Roman remains (including Hadrian's Wall)
+12098,Northumbria,an Anglo-Saxon kingdom in northern England until 876
+12099,Northwest northwestern_United_States,the northwestern region of the United States
+12100,Northwest_Passage,a water route between the Atlantic Ocean and the Pacific Ocean along the northern coast of North America; Europeans since the 16th century had searched for a short route to the Far East before it was successfully traversed by Roald Amundsen (1903-1906)
+12101,Northwest_Territories,a large territory in northwestern Canada; part is now Nunavut
+12102,Noruz Nowruz Nowrooz,(Persian) the new year holiday in Iran and Azerbaijan and Afghanistan and Pakistan and parts of India and among the Kurds; comes at the vernal equinox
+12103,Norway Kingdom_of_Norway Norge Noreg,a constitutional monarchy in northern Europe on the western side of the Scandinavian Peninsula; achieved independence from Sweden in 1905
+12104,Norway_lobster Nephrops_norvegicus,edible European lobster resembling the American lobster but slenderer
+12105,Norway_maple Acer_platanoides,a large Eurasian maple tree naturalized in North America; five-lobed leaves yellow in autumn; cultivated in many varieties
+12106,Norway_spruce Picea_abies,tall pyramidal spruce native to northern Europe having dark green foliage on spreading branches with pendulous branchlets and long pendulous cones
+12107,Norwegian,a Scandinavian language that is spoken in Norway
+12108,Norwegian Norseman Norse,a native or inhabitant of Norway
+12109,Norwegian_Sea,the part of the Atlantic that lies off the Norwegian coast to the north of the North Sea
+12110,Norwegian_elkhound elkhound,breed of compact medium-sized dog with a heavy grey coat developed in Norway for hunting elk
+12111,Norwegian_krone krone,the basic unit of money in Norway
+12112,Norwegian_lobster langoustine scampo,caught in European waters; slenderer than American lobster
+12113,Norwegian_monetary_unit,monetary unit in Norway
+12114,Norwich_terrier,English breed of small short-legged terrier with a straight wiry red or grey or black-and-tan coat and erect ears
+12115,Nostocaceae family_Nostocaceae,blue-green algae
+12116,Nostradamus Michel_de_Notredame,French astrologer who wrote cryptic predictions whose interpretations are still being debated (1503-1566)
+12117,Notechis genus_Notechis,tiger snakes
+12118,Notemigonus genus_Notemigonus,golden shiners
+12119,Nothofagus genus_Nothofagus,beeches of temperate southern hemisphere except Africa: southern beech
+12120,Nothosauria suborder_Nothosauria,a suborder of Sauropterygia
+12121,Notomys genus_Notomys,jerboa rats
+12122,Notonecta genus_Notonecta,type genus of the Notonectidae: backswimmers
+12123,Notonectidae family_Notonectidae,aquatic carnivorous insects
+12124,Notophthalmus genus_Notophthalmus,newts
+12125,Notoryctidae family_Notoryctidae,pouched moles
+12126,Notoryctus genus_Notoryctus,type genus of the family Notoryctidae: comprising solely the marsupial mole
+12127,Notostraca order_Notostraca,small freshwater crustaceans with a shield-shaped carapace
+12128,Notropis genus_Notropis,shiners
+12129,Nouakchott,capital of Mauritania; located in western Mauritania near the Atlantic coast
+12130,Nov-Esperanto,an artificial language based on Esperanto
+12131,Nov-Latin,an artificial language based on Latin
+12132,Nova_Scotia,a peninsula in eastern Canada between the Bay of Fundy and the Saint Lawrence River
+12133,Nova_Scotia,the Canadian province in the Maritimes consisting of the Nova Scotia peninsula and Cape Breton Island; French settlers who called the area Acadia were exiled to Louisiana by the British in the 1750s and their descendants are know as Cajuns
+12134,Nova_Scotia_lox Nova_lox Nova_Scotia_salmon Nova_salmon Nova_style_salmon,brine-cured salmon that is less salty than most; sometimes sugar is also used in the curing
+12135,Nova_Scotian bluenose,a native or inhabitant of Nova Scotia
+12136,Novaya_Zemlya Nova_Zembla,two islands in the Arctic Ocean belonging to Russia; site of a test center for nuclear warheads
+12137,November Nov,the month following October and preceding December
+12138,November_5,anniversary of the discovery of the Gunpowder Plot
+12139,Novgorod,a city in northwestern Russia on the Volkhov River; Russia's oldest city and an important trading center in the Middle Ages
+12140,Novial,an artificial language
+12141,Novosibirsk,a city in the Asian part of Russia on the Ob river; largest city in Siberia
+12142,Nox Night,Roman goddess of night; daughter of Erebus; counterpart of Greek Nyx
+12143,Noyes Alfred_Noyes,English poet (1880-1958)
+12144,Nubia,an ancient region of northeastern Africa (southern Egypt and northern Sudan) on the Nile; much of Nubia is now under Lake Nasser
+12145,Nubian,a native or inhabitant of Nubia; "Nubians now form an ethnic minority in Egypt"
+12146,Nubian_Desert,an arid sandstone plateau in northeastern Sudan between the Nile and the Red Sea
+12147,Nucifraga genus_Nucifraga,nutcrackers
+12148,Nuclear_Regulatory_Commission NRC,an independent federal agency created in 1974 to license and regulate nuclear power plants
+12149,Nuda class_Nuda,ctenophores lacking tentacles; comprises one genus: beroe
+12150,Nudibranchia order_Nudibranchia,comprising numerous marine gastropod mollusks lacking a shell in the adult state and usually having a body like a slug
+12151,Nuffield William_Richard_Morris First_Viscount_Nuffield,British industrialist who manufactured automobiles and created a philanthropic foundation (1877-1963)
+12152,Nullarbor_Plain,a vast arid plain of southern Australia stretching inland from the Great Australian Bight; has sparse vegetation and no surface water and is almost uninhabited; the site of a major rocket research center
+12153,Numbers Book_of_Numbers,the fourth book of the Old Testament; contains a record of the number of Israelites who followed Moses out of Egypt
+12154,Numenius genus_Numenius,curlews
+12155,Numida genus_Numida,guinea fowl
+12156,Numidia,an ancient kingdom (later a Roman province) in North Africa in an area corresponding roughly to present-day Algeria
+12157,Numidian,an inhabitant of ancient Numidia
+12158,Numididae subfamily_Numididae Numidinae subfamily_Numidinae,guinea fowl and related birds of Africa and Madagascar
+12159,Nummulitidae family_Nummulitidae,a family of fossil protoctists
+12160,Nunavut,an Arctic territory in northern Canada created in 1999 and governed solely by the Inuit; includes the eastern part of what was the Northwest Territories and most of the islands of the Arctic Archipelago; "Nunavut is the homeland of the Inuit people"
+12161,Nung,a branch of the Tai languages
+12162,Nuphar genus_Nuphar,spatterdocks
+12163,Nuptse,a mountain in the central Himalayas on the border of Tibet and Nepal (25,726 feet high)
+12164,Nuremberg Nurnberg,a city in southeastern Germany; site of Allied trials of Nazi war criminals (1945-46)
+12165,Nureyev Rudolf_Nureyev,Russian dancer who was often the partner of Dame Margot Fonteyn and who defected to the United States in 1961 (born in 1938)
+12166,Nusku,god of fire and light; corresponds to Babylonian Girru
+12167,Nut,Egyptian goddess of the sky
+12168,Nuttall_oak Nuttall's_oak Quercus_nuttalli,similar to the pin oak; grows in damp sites in Mississippi River basin
+12169,Nuytsia genus_Nuytsia,one species
+12170,Nyala,city in Sudan
+12171,Nyamuragira,an active volcano in eastern Congo
+12172,Nyamwezi,a Bantu language spoken in central Tanzania
+12173,Nyctaginaceae family_Nyctaginaceae Allioniaceae family_Allioniaceae four-o'clock_family,a family of flowering plants of the order Caryophyllales
+12174,Nyctaginia genus_Nyctaginia,a caryophyllaceous genus of the family Nyctaginaceae having only one species
+12175,Nyctanassa genus_Nyctanassa,American night herons
+12176,Nyctereutes genus_Nyctereutes,raccoon dogs
+12177,Nycticebus genus_Nycticebus,a genus of Lorisidae
+12178,Nycticorax genus_Nycticorax,Old World night herons
+12179,Nyctimene genus_Nyctimene,East Indian fruit bats
+12180,Nyiragongo,an active volcano in eastern Congo
+12181,Nymphaea genus_Nymphaea,the type genus of the family Nymphaeaceae; any of a variety of water lilies
+12182,Nymphaeaceae family_Nymphaeaceae water-lily_family,dicot aquatic plants
+12183,Nymphalidae family_Nymphalidae,large beautifully colored butterflies
+12184,Nymphalis genus_Nymphalis,type genus of the Nymphalidae: mourning cloak butterflies
+12185,Nymphicus genus_Nymphicus,a genus of Psittacidae
+12186,Nynorsk New_Norwegian Landsmal Landsmaal,one of two official languages of Norway; based on rural dialects
+12187,Nyquist_frequency,(telecommunication) twice the maximum frequency occurring in the transmitted signal
+12188,Nyquist_rate,(telecommunication) the lowest sampling rate that will permit accurate reconstruction of a sampled analog signal
+12189,Nyssa genus_Nyssa,tupelos: deciduous trees of moist habitats especially swamps and beside ponds
+12190,Nyssaceae family_Nyssaceae sour-gum_family tupelo_family,a family of dicotyledonous trees of order Myrtales that includes the sour gum trees
+12191,Nyx,(Greek mythology) Greek goddess of the night; daughter of Chaos; counterpart of Roman Nox
+12192,O o,the 15th letter of the Roman alphabet
+12193,O type_O group_O,the blood group whose red cells carry neither the A nor B antigens; "people with type O blood are universal donors"
+12194,O'Brien Edna_O'Brien,Irish writer (born in 1932)
+12195,O'Casey Sean_O'Casey,Irish playwright (1880-1964)
+12196,O'Connor Flannery_O'Connor Mary_Flannery_O'Connor,United States writer (1925-1964)
+12197,O'Flaherty Liam_O'Flaherty,Irish writer of short stories (1896-1984)
+12198,O'Hara John_Henry_O'Hara,United States writer (1905-1970)
+12199,O'Keeffe Georgia_Okeeffe,United States painter (1887-1986)
+12200,O'Neill Eugene_O'Neill Eugene_Gladstone_O'Neill,United States playwright (1888-1953)
+12201,O'Toole Peter_O'Toole Peter_Seamus_O'Toole,British actor (born in Ireland in 1932)
+12202,O.K. OK okay okey okeh,an endorsement; "they gave us the O.K. to go ahead"
+12203,OR_circuit OR_gate,a gate circuit in a computer that fires when any of its inputs fire
+12204,O_ring,a gasket consisting of a flat ring of rubber or plastic; used to seal a joint against high pressure
+12205,Oahu Oahu_Island,an island of central Hawaii (between Molokai and Kauai); the chief island of the state
+12206,Oak_Leaf_Cluster,a United States military decoration consisting of bronze or silver oak leaves and acorns awarded to anyone who has won a given medal before
+12207,Oakland,a city in western California on San Francisco Bay opposite San Francisco; primarily and industrial urban center
+12208,Oakley Annie_Oakley,United States sharpshooter who was featured in Buffalo Bill's Wild West Show (1860-1926)
+12209,Oates Joyce_Carol_Oates,United States writer (born in 1938)
+12210,Oates Titus_Oates,English conspirator who claimed that there was a Jesuit plot to assassinate Charles II (1649-1705)
+12211,Oaxaca Oaxaca_de_Juarez,a city of southeastern Mexico
+12212,Ob Ob_River,a major river of western Siberia; flows generally northward and westward to the Gulf of Ob and the Kara Sea
+12213,Obadiah Abdias,a Hebrew minor prophet
+12214,Obadiah Abdias Book_of_Obadiah,an Old Testament book telling Obadiah's prophecies; the shortest book in the Christian Bible
+12215,Obama Barack_Hussein_Obama,44th President of the United States; first African-American President
+12216,Oberson,(Middle Ages) the king of the fairies and husband of Titania in medieval folklore
+12217,Oblation religious_offering,the act of offering the bread and wine of the Eucharist
+12218,Occam William_of_Occam Ockham William_of_Ockham,English scholastic philosopher and assumed author of Occam's Razor (1285-1349)
+12219,Occam's_Razor Ockham's_Razor principle_of_parsimony law_of_parsimony,the principle that entities should not be multiplied needlessly; the simplest of two competing theories is to be preferred
+12220,Occidental,a native inhabitant of the Occident
+12221,Occidental,an artificial language
+12222,Occidentalism,the scholarly knowledge of western cultures and languages and people
+12223,Occupational_Safety_and_Health_Administration OSHA,a government agency in the Department of Labor to maintain a safe and healthy work environment
+12224,Oceania Oceanica,a large group of islands in the south Pacific including Melanesia and Micronesia and Polynesia (and sometimes Australasia and the Malay Archipelago)
+12225,Oceanic Eastern_Malayo-Polynesian,an eastern subfamily of Malayo-Polynesian languages
+12226,Oceanid,(Greek mythology) sea nymph who was a daughter of Oceanus and Tethys
+12227,Oceanites genus_Oceanites,a genus of Hydrobatidae
+12228,Oceanus,(Greek mythology) god of the stream that flowed around the earth in ancient mythology
+12229,Ochna genus_Ochna,type genus of Ochnaceae; evergreen trees and shrubs of Old World tropics
+12230,Ochnaceae family_Ochnaceae ochna_family,family of tropical evergreen trees and shrubs with thick shining parallel-veined leaves
+12231,Ochoa Severo_Ochoa,United States biochemist (born in Spain) who studied the biological synthesis of nucleic acids (1905-1993)
+12232,Ochotona genus_Ochotona,type genus of the Ochotonidae
+12233,Ochotonidae family_Ochotonidae,pikas and extinct forms
+12234,Ochroma genus_Ochroma,one species: balsa
+12235,Ochs Adolph_Simon_Ochs,United States newspaper publisher (1858-1935)
+12236,Ocimum genus_Ocimum,basil
+12237,Octans,the constellation that includes the southern celestial pole
+12238,October Oct,the month following September and preceding November
+12239,Octopoda order_Octopoda,octopuses and paper nautilus
+12240,Octopodidae family_Octopodidae,a family of Octopoda
+12241,Ocyurus genus_Ocyurus,snappers
+12242,Oder Oder_River,a European river; flows into the Baltic Sea
+12243,Odessa,a city in western Texas
+12244,Odessa Odesa,a port city of south central Ukraine on an arm of the Black Sea
+12245,Odets Clifford_Odets,United States playwright (1906-1963)
+12246,Odin,(Norse mythology) ruler of the Aesir; supreme god of war and poetry and knowledge and wisdom (for which he gave an eye) and husband of Frigg; identified with the Teutonic Wotan
+12247,Odoacer Odovacar Odovakar,Germanic barbarian leader who ended the Western Roman Empire in 476 and became the first barbarian ruler of Italy (434-493)
+12248,Odobenidae family_Odobenidae,walruses and extinct forms
+12249,Odobenus genus_Odobenus,type genus of the Odobenidae: walruses
+12250,Odocoileus genus_Odocoileus,North American deer
+12251,Odonata order_Odonata,dragonflies and damselflies
+12252,Odontoceti suborder_Odontoceti,toothed whales: dolphins; porpoises; sperm whales; beaked whales
+12253,Odontophorus genus_Odontophorus,genus of Central and South American crested partridges resembling quails; sometimes placed in a distinct subfamily or isolated in a distinct family
+12254,Odysseus,(Greek mythology) a famous mythical Greek hero; his return to Ithaca after the siege of Troy was described in the Odyssey
+12255,Odyssey,a Greek epic poem (attributed to Homer) describing the journey of Odysseus after the fall of Troy
+12256,Oecanthus genus_Oecanthus,tree crickets
+12257,Oedipus King_Oedipus Oedipus_Rex,(Greek mythology) a tragic king of Thebes who unknowingly killed his father Laius and married his mother Jocasta; the subject of the drama `Oedipus Rex' by Sophocles
+12258,Oedipus_complex Oedipal_complex,a complex of males; desire to possess the mother sexually and to exclude the father; said to be a source of personality disorders if unresolved
+12259,Oedogoniaceae family_Oedogoniaceae,filamentous green algae
+12260,Oedogoniales order_oedogoniales,simple or branched filamentous freshwater green algae
+12261,Oedogonium genus_Oedogonium,type genus of Oedogoniaceae; freshwater green algae having long unbranched filaments; usually free-floating when mature
+12262,Oenanthe genus_Oenanthe,poisonous herbs: water dropworts
+12263,Oenanthe genus_Oenanthe,wheatears
+12264,Oenothera genus_Oenothera,chiefly North American herbs with usually nocturnal flowers
+12265,Oersted Hans_Christian_Oersted,Danish physicist (1777-1851)
+12266,Oestridae family_Oestridae Hypodermatidae family_Hypodermatidae,warble flies
+12267,Oestrus genus_Oestrus,type genus of the Oestridae: sheep botflies
+12268,Offenbach Jacques_Offenbach,French composer of many operettas and an opera (1819-1880)
+12269,Offertory,the part of the Eucharist when bread and wine are offered to God
+12270,Office_of_Inspector_General OIG,the investigative arm of the Federal Trade Commission
+12271,Office_of_Intelligence_Support OIS,agency that oversees the intelligence relationships of the Treasury's offices and bureaus and provides a link between the Intelligence Community and officials responsible for international economic policy
+12272,Office_of_Management_and_Budget OMB,the executive agency that advises the President on the federal budget
+12273,Office_of_Naval_Intelligence ONI,the military intelligence agency that provides for the intelligence and counterintelligence and investigative and security requirements of the United States Navy
+12274,Office_of_the_Dead,an office read or sung before a burial mass in the Roman Catholic Church
+12275,Ofo,a member of the Siouan people living in the Yazoo river valley in Mississippi
+12276,Ofo,a Siouan language spoken by the Ofo
+12277,Ogcocephalidae family_Ogcocephalidae,batfishes: sluggish bottom-dwelling spiny fishes
+12278,Ogden,a town in northern Utah settled by Mormons
+12279,Ogden C._K._Ogden Charles_Kay_Ogden,English psychologist who collaborated with I. A. Richards in designing Basic English (1889-1957)
+12280,Oglala Ogalala,a member of the Siouan people who constituted a division of the Teton Sioux and who formerly inhabited the Black Hills of western South Dakota
+12281,Oglala Ogalala,a Siouan language spoken by the Oglala
+12282,Ohio Buckeye_State OH,a midwestern state in north central United States in the Great Lakes region
+12283,Ohio Ohio_River,a river that is formed in western Pennsylvania and flows westward to become a tributary of the Mississippi River
+12284,Ohio_State_University,a university in Columbus, Ohio
+12285,Ohio_buckeye,a buckeye with scaly grey bark that is found in the central United States
+12286,Ohio_goldenrod,a variety of goldenrod
+12287,Ohioan Buckeye,a native or resident of Ohio
+12288,Ohm Georg_Simon_Ohm,German physicist who formulated Ohm's law (1787-1854)
+12289,Ohm's_law,electric current is directly proportional to voltage and inversely proportional to resistance; I = E/R
+12290,Oireachtas,the parliament of the Irish Republic
+12291,Ojibwa Ojibway Chippewa,a member of an Algonquian people who lived west of Lake Superior
+12292,Ojibwa Ojibway Chippewa,the Algonquian language spoken by the Ojibwa
+12293,Ojos_del_Salado,a mountain in the Andes on the border between Argentina and Chile (22,572 feet high)
+12294,Okapia genus_Okapia,okapis
+12295,Okeechobee Lake_Okeechobee,a lake in southeast Florida to the north of the Everglades
+12296,Okefenokee_Swamp,a large swampy area of northeast Florida and southeast Georgia
+12297,Oken Lorenz_Oken Okenfuss Lorenz_Okenfuss,German naturalist whose speculations that plants and animals are made up of tiny living `infusoria' led to the cell theory (1779-1851)
+12298,Okinawa,the largest island of the central Ryukyu Islands
+12299,Okinawa Okinawa_campaign,a campaign in the closing days of World War II in the Pacific (April to June 1945); in savage close-quarter fighting United States marines and regular army troops took the island from the Japanese; considered the greatest victory of the Pacific campaign for the Americans
+12300,Oklahoma Sooner_State OK Okla.,a state in south central United States
+12301,Oklahoma_City capital_of_Oklahoma,capital and largest city of Oklahoma; the economy is based on oil and livestock
+12302,Oklahoman Sooner,a native or resident of Oklahoma
+12303,Oktoberfest,an autumn festival that involves merrymaking and drinking beer
+12304,Oktoberfest Octoberfest,a strong lager made originally in Germany for the Oktoberfest celebration; sweet and copper-colored
+12305,Olaf_II Olav_II Saint_Olaf Saint_Olav St._Olaf St._Olav,King and patron saint of Norway (995-1030)
+12306,Old_Bailey,the central criminal court in London
+12307,Old_Catholic,a member of the church formed in the 19th century by German Catholics who refused to accept the infallibility of the Pope
+12308,Old_Catholic_Church,Catholic churches that broke away from the Roman Catholic Church in the 18th century
+12309,Old_Church_Slavonic Old_Church_Slavic Church_Slavic Old_Bulgarian,the Slavic language into which the Bible was translated in the 9th century
+12310,Old_English Anglo-Saxon,English prior to about 1100
+12311,Old_English_sheepdog bobtail,large sheepdog with a profuse shaggy bluish-grey-and-white coat and short tail; believed to trace back to the Roman occupation of Britain
+12312,Old_Faithful,a geyser in Yellowstone National Park that erupts for about 4 minutes about every 65 minutes
+12313,Old_French,the earliest form of the French language; 9th to 15th century
+12314,Old_Frisian,the Frisian language until the 16th century; the Germanic language of ancient Frisia
+12315,Old_High_German,High German prior to 1200
+12316,Old_Icelandic,the extinct dialect of Old Norse that was spoken in Iceland up until about 1600
+12317,Old_Irish,Irish Gaelic up to about 1100
+12318,Old_Italian,the Italian language up to the middle of the 16th century
+12319,Old_Latin,the oldest recorded Latin (dating back at early as the 6th century B.C.)
+12320,Old_Norse,the extinct Germanic language of medieval Scandinavia and Iceland from about to 700 to 1350
+12321,Old_Prussian,a dead language of the (non-German) Prussians (extinct after 1700); thought to belong to the Baltic branch of Indo-European
+12322,Old_Saxon,Low German prior to 1200
+12323,Old_South,the South of the United States before the American Civil War
+12324,Old_Testament,the collection of books comprising the sacred scripture of the Hebrews and recording their history as the chosen people; the first half of the Christian Bible
+12325,Old_World,the regions of the world that were known to Europeans before the discovery of the Americas
+12326,Old_World_beaver Castor_fiber,a European variety of beaver
+12327,Old_World_buffalo buffalo,any of several Old World animals resembling oxen including, e.g., water buffalo; Cape buffalo
+12328,Old_World_chat chat,songbirds having a chattering call
+12329,Old_World_coot Fulica_atra,a coot found in Eurasia
+12330,Old_World_crayfish ecrevisse,small crayfish of Europe and Asia and western North America
+12331,Old_World_flycatcher true_flycatcher flycatcher,any of a large group of small songbirds that feed on insects taken on the wing
+12332,Old_World_hop_hornbeam Ostrya_carpinifolia,medium-sized hop hornbeam of southern Europe and Asia Minor
+12333,Old_World_jay,a European jay
+12334,Old_World_least_weasel Mustela_nivalis,of Europe
+12335,Old_World_monkey catarrhine,of Africa or Arabia or Asia; having nonprehensile tails and nostrils close together
+12336,Old_World_oriole oriole,mostly tropical songbird; the male is usually bright orange and black
+12337,Old_World_porcupine,terrestrial porcupine
+12338,Old_World_quail,small game bird with a rounded body and small tail
+12339,Old_World_scops_owl Otus_scops,European scops owl
+12340,Old_World_vulture,any of several large vultures of Africa and Eurasia
+12341,Old_World_warbler true_warbler,small active brownish or greyish Old World birds
+12342,Old_World_yew English_yew Taxus_baccata,predominant yew in Europe; extraordinarily long-lived and slow growing; one of the oldest species in the world
+12343,Old_world_white_pelican Pelecanus_onocrotalus,similar to American white pelican
+12344,Oldenburg Claes_Oldenburg Claes_Thure_Oldenburg,United States sculptor (born in Sweden); a leader of the pop art movement who was noted for giant sculptures of common objects (born in 1929)
+12345,Oldfield Barney_Oldfield Berna_Eli_Oldfield,United States race driver who was the first to drive faster than a mile a minute (1878-1946)
+12346,Olduvai_Gorge,a gorge in northeastern Tanzania where anthropologists have found some of the earliest human remains
+12347,Olea genus_Olea,evergreen trees and shrubs having oily one-seeded fruits
+12348,Oleaceae family_Oleaceae olive_family,trees and shrubs having berries or drupes or capsules as fruits; sometimes placed in the order Oleales: olive; ash; jasmine; privet; lilac
+12349,Oleales order_Oleales,coextensive with the family Oleaceae; in some classifications included in the order Gentianales
+12350,Oleandra genus_Oleandra,or family Polypodiaceae: tropical epiphytic or terrestrial ferns
+12351,Oleandraceae family_Oleandraceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems
+12352,Olearia genus_Olearia,large genus of Australian evergreen shrubs or small trees with large daisylike flowers
+12353,Olfersia genus_Olfersia,genus of fern having only one species
+12354,Oligocene Oligocene_epoch,from 40 million to 25 million years ago; appearance of sabertoothed cats
+12355,Oligochaeta class_Oligochaeta,earthworms
+12356,Oligoplites genus_Oligoplites,leatherjackets
+12357,Oligoporus genus_Oligoporus,a genus of fungi belonging to the family Polyporaceae
+12358,Oligoporus_leucospongia,a pore fungus with a whitish cottony soft cap found on conifer logs in forests at high elevation in the western United States and adjacent Canada
+12359,Oliver Joseph_Oliver King_Oliver,United States jazz musician who influenced the style of Louis Armstrong (1885-1938)
+12360,Olivier Laurence_Olivier Sir_Laurence_Kerr_Olivier Baron_Olivier_of_Birghton,English actor best know for his Shakespearean roles (1907-1989)
+12361,Ollari,a Dravidian language spoken in south central India
+12362,Olmec,a member of an early Mesoamerican civilization centered around Veracruz that flourished between 1300 and 400 BC
+12363,Olmsted Frederick_Law_Olmsted,United States landscape architect primarily responsible for the design of Central Park in New York City (1822-1903)
+12364,Olympia,a plain in Greece in the northwestern Peloponnese; the chief sanctuary of Zeus and the site of the original Olympian Games
+12365,Olympia capital_of_Washington,capital of the state of Washington; located in western Washington on Puget Sound
+12366,Olympiad,one of the four-year intervals between Olympic Games; used to reckon time in ancient Greece for twelve centuries beginning in 776 BC
+12367,Olympian,an athlete who participates in the Olympic games
+12368,Olympian Olympic_god,a classical Greek god after the overthrow of the Titans
+12369,Olympian_Games Olympic_Games,the ancient Panhellenic celebration at Olympia in honor of Zeus; held every 4 years beginning in 776 BC
+12370,Olympian_Zeus,a seated statue of the supreme god of ancient Greek mythology created for the temple at Olympia; the statue was 40 feet tall and rested on a base that was 12 feet high
+12371,Olympic_Games Olympics Olympiad,the modern revival of the ancient games held once every 4 years in a selected country
+12372,Olympic_National_Park,a national park in Washington having rain forests of giant evergreens
+12373,Olympus Mount_Olympus Mt._Olympus Olimbos,a mountain peak in northeast Greece near the Aegean coast; believed by ancient Greeks to be the dwelling place of the gods (9,570 feet high)
+12374,Omaha,largest city in Nebraska; located in eastern Nebraska on the Missouri river; a major transportation center of the Midwest
+12375,Omaha,the Dhegiha dialect spoken by the Omaha
+12376,Omaha,thoroughbred that won the triple crown in 1935
+12377,Omaha Maha,a member of the Siouan people formerly living in the Missouri river valley in northeastern Nebraska
+12378,Oman Sultanate_of_Oman Muscat_and_Oman,a strategically located monarchy on the southern and eastern coasts of the Arabian Peninsula; the economy is dominated by oil
+12379,Omani,a native or inhabitant of Oman
+12380,Omani_monetary_unit,monetary unit in Oman
+12381,Omar_Khayyam,Persian poet and mathematician and astronomer whose poetry was popularized by Edward Fitzgerald's translation (1050-1123)
+12382,Omdurman,a city of Sudan; located in the central Sudan on the White Nile opposite Khartoum
+12383,Omdurman battle_of_Omdurman,a battle (1898) in which an English and Egyptian army under Kitchener defeated the Sudanese
+12384,Omega_Centauri,a global cluster in the constellation Centaurus
+12385,Omiya,a city of east central Honshu; a suburb of Tokyo
+12386,Omomyid Omomyid_group,extinct tiny nocturnal lower primates that fed on fruit and insects; abundant in North America and Europe 30 to 50 million years ago; probably gave rise to the tarsiers; some authorities consider them ancestral to anthropoids but others consider them only cousins
+12387,Omotic,a group of related languages spoken in a valley of southern Ethiopia; closely related to Cushitic languages
+12388,Omphalotus genus_Omphalotus,a genus of fungi with a depressed disc in the cap
+12389,Omsk,a city in the Asian part of Russia
+12390,Onagraceae family_Onagraceae evening-primrose_family,a large and widely distributed family of plants of the order Myrtales
+12391,Oncorhynchus genus_Oncorhynchus,Pacific salmon including sockeye salmon; chinook salmon; chum salmon; coho salmon
+12392,Ondaatje Michael_Ondaatje Philip_Michael_Ondaatje,Canadian writer (born in Sri Lanka in 1943)
+12393,Ondatra genus_Ondatra,muskrats
+12394,Oneida,a member of the Iroquoian people formerly living east of Lake Ontario
+12395,Oneida,the Iroquoian language spoken by the Oneida
+12396,Oniscidae family_Oniscidae,a family of Isopoda
+12397,Oniscus genus_Oniscus,type genus of the Oniscidae; woodlice that cannot roll into a ball
+12398,Ono Yoko_Ono,United States musician (born in Japan) who married John Lennon and collaborated with him on recordings (born in 1933)
+12399,Onobrychis genus_Onobrychis,genus of Old World herbs having pinnate leaves and pink or whites racemose flowers followed by flat unjointed pods
+12400,Onoclea genus_Onoclea,one species: sensitive fern; in some classifications included in Polypodiaceae
+12401,Onondaga,a member of the Iroquoian people formerly living between Lake Champlain and the Saint Lawrence River
+12402,Onondaga,the Iroquoian language spoken by the Onondaga
+12403,Ononis genus_Ononis,genus of European subshrubs or herbs having pink or purple or yellow solitary or clustered flowers: restharrow
+12404,Onopordum genus_Onopordum Onopordon genus_Onopordon,a genus of Eurasian herbs of the family Compositae with prickly foliage and large purplish flowers
+12405,Onosmodium genus_Onosmodium,a genus of North American perennial herbs of the family Boraginaceae
+12406,Onsager Lars_Onsager,United States chemist (born in Norway) noted for his work in thermodynamics (1903-1976)
+12407,Ontario,a prosperous and industrialized province in central Canada
+12408,Onychium genus_Onychium,small terrestrial ferns of Old World tropics and subtropics: clawed ferns; sometimes placed in family Cryptogrammataceae
+12409,Onychogalea genus_Onychogalea,a genus of Macropodidae
+12410,Onychomys genus_Onychomys,grasshopper mice
+12411,Onychophora class_Onychophora,enigmatic small elongated wormlike terrestrial invertebrates of damp dark habitats in warm regions; distinct from the phylum Annelida; resemble slugs with legs and are sometimes described as the missing link between arthropods and annelids
+12412,Oomycetes class_Oomycetes,nonphotosynthetic fungi that resemble algae and that reproduce by forming oospores; sometimes classified as protoctists
+12413,Oort Jan_Hendrix_Oort,Dutch astronomer who proved that the galaxy is rotating and proposed the existence of the Oort cloud (1900-1992)
+12414,Oort_cloud,(astronomy) a hypothetical huge collection of comets orbiting the sun far beyond the orbit of Pluto; perturbations (as by other stars) can upset a comet's orbit and may send it tumbling toward the sun
+12415,Opel Wilhelm_von_Opel,German industrialist who was the first in Germany to use an assembly line in manufacturing automobiles (1871-1948)
+12416,Open_University,a British university that is open to people without formal academic qualifications and where teaching is by correspondence or broadcasting or summer school
+12417,Opera,a commercial browser
+12418,Operation_Desert_Storm,the United States and its allies defeated Iraq in a ground war that lasted 100 hours (1991)
+12419,Opheodrys genus_Opheodrys,North American green snakes
+12420,Ophidiidae family_Ophidiidae,eellike marine fishes
+12421,Ophiodon genus_Ophiodon,a genus of Ophiodontidae
+12422,Ophiodontidae family_Ophiodontidae,fishes closely related to greenlings
+12423,Ophioglossaceae family_Ophioglossaceae,a family of succulent ferns of order Ophioglossales; cosmopolitan in distribution
+12424,Ophioglossales order_Ophioglossales,coextensive with the family Ophioglossaceae
+12425,Ophioglossum genus_Ophioglossum,the type genus of the fern family Ophioglossaceae
+12426,Ophiophagus genus_Ophiophagus,king cobra
+12427,Ophisaurus genus_Ophisaurus,glass lizards
+12428,Ophiuchus,a large constellation in the equatorial region between Hercules and Scorpius
+12429,Ophiurida subclass_Ophiurida,brittle stars
+12430,Ophiuroidea class_Ophiuroidea,brittle stars and basket stars
+12431,Ophrys genus_Ophrys,a hardy genus of terrestrial orchids of Europe and northern Africa and western Asia
+12432,Opisthobranchia subclass_Opisthobranchia,gastropods having the gills when present posterior to the heart and having no operculum: includes sea slugs; sea butterflies; sea hares
+12433,Opisthocomidae family_Opisthocomidae,comprising the hoatzins
+12434,Opisthocomus genus_Opisthocomus,type genus of the Opisthocomidae: hoatzins
+12435,Opisthognathidae family_Opisthognathidae,jawfishes
+12436,Oppenheimer Robert_Oppenheimer,United States physicist who directed the project at Los Alamos that developed the first atomic bomb (1904-1967)
+12437,Opposition,the major political party opposed to the party in office and prepared to replace it if elected; "Her Majesty's loyal opposition"
+12438,Ops,(Roman mythology) goddess of abundance and fertility; wife of Saturn; counterpart of Greek Rhea and Cybele of ancient Asia Minor
+12439,Optez,an artificial language
+12440,Opuntia genus_Opuntia,large genus of cactuses native to America: prickly pears
+12441,Opuntiales order_Opuntiales,coextensive with the family Cactaceae: cactuses
+12442,Oran,a port city in northwestern Algeria and the country's 2nd largest city
+12443,Orange Orange_River,a river in South Africa that flows generally westward to the Atlantic Ocean
+12444,Orange_Group OV,a terrorist group of Protestants who oppose any political settlement with Irish nationalists; a paramilitary group that attacks Catholic interests in Northern Ireland
+12445,Orange_Order Association_of_Orangemen,a Protestant political organization in Northern Ireland
+12446,Orangeman,a member of a society founded in Ireland in 1795 to uphold Protestantism and the British sovereign
+12447,Orbignya genus_Orbignya,palms of southern Mexico to northern South America: babassu palm
+12448,Orbison Roy_Orbison,United States composer and rockabilly tenor popular in the 1950s (1936-1988)
+12449,Orchestia genus_Orchestia,type genus of the family Orchestiidae
+12450,Orchestiidae family_Orchestiidae,beach fleas
+12451,Orchidaceae family_Orchidaceae orchid_family,enormous cosmopolitan family of perennial terrestrial or epiphytic plants with fleshy tubers or rootstocks and unusual flowers
+12452,Orchidales order_Orchidales,order of plants with irregular flowers having minute seeds: Orchidaceae; Burmanniaceae
+12453,Orcinus genus_Orcinus,killer whales
+12454,Orczy Baroness_Emmusca_Orczy,British writer (born in Hungary) (1865-1947)
+12455,Ord_kangaroo_rat Dipodomys_ordi,most widely distributed kangaroo rat: plains and mountain areas of central and western United States
+12456,Order_of_the_Purple_Heart Purple_Heart,a United States military decoration awarded to any member of the armed forces who is wounded in action
+12457,Ordnance_Survey,the official cartography agency of the British government
+12458,Ordovician Ordovician_period,from 500 million to 425 million years ago; conodonts and ostracods and algae and seaweeds
+12459,Oread,(Greek mythology) one of the mountain nymphs
+12460,Oreamnos genus_Oreamnos,mountain goats
+12461,Orectolobidae family_Orectolobidae,nurse sharks and carpet sharks
+12462,Orectolobus genus_Orectolobus,carpet sharks
+12463,Oregon Beaver_State OR Ore.,a state in northwestern United States on the Pacific
+12464,Oregon_ash Fraxinus_latifolia Fraxinus_oregona,timber tree of western North America yielding hard light wood; closely related to the red ash
+12465,Oregon_cedar Port_Orford_cedar Lawson's_cypress Lawson's_cedar Chamaecyparis_lawsoniana,large timber tree of western North America with trunk diameter to 12 feet and height to 200 feet
+12466,Oregon_crab_apple Malus_fusca,small tree or shrub of western United States having white blossoms and tiny yellow or red fruit
+12467,Oregon_grape Mahonia_nervosa,small shrub with grey-green leaves and yellow flowers followed by glaucous blue berries
+12468,Oregon_grape Oregon_holly_grape hollygrape mountain_grape holly-leaves_barberry Mahonia_aquifolium,ornamental evergreen shrub of Pacific coast of North America having dark green pinnate leaves and racemes of yellow flowers followed by blue-black berries
+12469,Oregon_maple big-leaf_maple Acer_macrophyllum,maple of western North America having large 5-lobed leaves orange in autumn
+12470,Oregon_white_oak Oregon_oak Garry_oak Quercus_garryana,small deciduous tree of western North America with crooked branches and pale grey bark
+12471,Oregonian Beaver,a native or resident of Oregon
+12472,Oreopteris genus_Oreopteris,3 species of ferns formerly included in genus Dryopteris or Thelypteris
+12473,Oreortyx genus_Oreortyx,mountain quail of western United States
+12474,Orestes,(Greek mythology) the son of Agamemnon and Clytemnestra; his sister Electra persuaded him to avenge Agamemnon's death by killing Clytemnestra and Aegisthus
+12475,Orff Carl_Orff,German musician who developed a widely used system for teaching music to children (1895-1982)
+12476,Organization_for_the_Prohibition_of_Chemical_Weapons OPCW,international organization for chemical disarmament; administers the Chemical Weapons Convention
+12477,Organization_of_American_States OAS,an association including most countries in the western hemisphere; created in 1948 to promote military and economic and social and cultural cooperation
+12478,Organization_of_Petroleum-Exporting_Countries OPEC,an organization of countries formed in 1961 to agree on a common policy for the production and sale of petroleum
+12479,Oriental_arborvitae Thuja_orientalis Platycladus_orientalis,Asiatic shrub or small tree widely planted in United States and Europe; in some classifications assigned to its own genus
+12480,Oriental_beetle Asiatic_beetle Anomala_orientalis,introduced into United States from the Orient; larvae feed on roots of sugarcane and other grasses
+12481,Oriental_scops_owl Otus_sunia,Asian scops owl
+12482,Orientalism Oriental_Studies,the scholarly knowledge of Asian cultures and languages and people
+12483,Origen,Greek philosopher and theologian who reinterpreted Christian doctrine through the philosophy of Neoplatonism; his work was later condemned as unorthodox (185-254)
+12484,Orinoco Orinoco_River,a South American river 1,500 miles long; flows into the South Atlantic
+12485,Oriolidae family_Oriolidae,Old World orioles
+12486,Oriolus genus_Oriolus,type genus of the Oriolidae
+12487,Orion,(Greek mythology) a giant Boeotian hunter who pursued the Pleiades and was eventually slain by Artemis; was then placed in the sky as a constellation
+12488,Orion Hunter,a constellation on the equator to the east of Taurus; contains Betelgeuse and Rigel
+12489,Orissa,state in eastern India on the Bay of Bengal
+12490,Orites genus_Orites,small genus of Australian shrubs or trees
+12491,Oriya,a member of a people in India living in Orissa and neighboring areas
+12492,Oriya,a Magadhan language that is spoken by the Oriya and is the official language of the Indian state of Orissa
+12493,Orizaba,a city of east central Mexico (west of Veracruz); a popular resort
+12494,Orkney_Islands,an archipelago of about 70 islands in the North Atlantic and North Sea off the northeastern coast of Scotland
+12495,Orlando,a city in central Florida; site of Walt Disney World
+12496,Orleanais,a former province of north central France; centered around Orleans
+12497,Orleanism,the political philosophy of the Orleanists
+12498,Orleanist,a supporter of the Orleans branch of the Bourbons that was descended from a younger brother of Louis XIV
+12499,Orleans,a city on the Loire river in north central France; site of the siege of Orleans by the English (1428-1429)
+12500,Orleans siege_of_Orleans,a long siege of Orleans by the English was relieved by Joan of Arc in 1429
+12501,Orlon,an acrylic fiber or the lightweight crease-resistant fabric made with Orlon yarns
+12502,Orly,a southeastern suburb of Paris; site of an international airport serving Paris
+12503,Ormandy Eugene_Ormandy,United States conductor (born in Hungary) (1899-1985)
+12504,Ormazd Ormuzd Ahura_Mazda,chief deity of Zoroastrianism; source of light and embodiment of good
+12505,Ormosia genus_Ormosia,genus of tropical shrubs and trees having usually odd-pinnate leaves with large leaflets and pink to reddish wood
+12506,Ornithischia order_Ornithischia,extinct terrestrial reptiles having bird-like pelvises: armored dinosaurs (thyreophorans); boneheaded and horned dinosaurs (marginocephalians); duck-billed dinosaurs (euronithopods)
+12507,Ornithogalum genus_Ornithogalum,sometimes placed in family Hyacinthaceae
+12508,Ornithomimida suborder_Ornithomimida,lightly built medium-size theropods
+12509,Ornithorhynchidae family_Ornithorhynchidae,platypus
+12510,Ornithorhynchus genus_Ornithorhynchus,type genus of the family Ornithorhynchidae
+12511,Orobanchaceae family_Orobanchaceae broomrape_family,brown or yellow leafless herbs; sometimes placed in the order Scrophulariales
+12512,Orono,a university town in east central Maine on the Penobscot River to the north of Bangor
+12513,Orontium genus_Orontium,one species of aquatic plant: golden club
+12514,Orozco Jose_Orozco Jose_Clemente_Orozco,Mexican painter noted for his monumental murals (1883-1949)
+12515,Orpheus,(Greek mythology) a great musician; when his wife Eurydice died he went to Hades to get her back but failed
+12516,Orpington,English breed of large chickens with white skin
+12517,Orr Bobby_Orr Robert_Orr,Canadian hockey player (born 1948)
+12518,Ortalis genus_Ortalis,chachalacas
+12519,Ortega Daniel_Ortega Daniel_Ortega_Saavedra,Nicaraguan statesman (born in 1945)
+12520,Ortega_y_Gasset Jose_Ortega_y_Gasset,Spanish philosopher who advocated leadership by an intellectual elite (1883-1955)
+12521,Orthilia genus_Orthilia,a shrubby perennial rhizomatous evergreen herb; grows in damp coniferous woodlands in northern temperate regions
+12522,Orthodox_Church Orthodox_Catholic_Church Eastern_Orthodox_Church Eastern_Church Eastern_Orthodox,derived from the Byzantine Church and adhering to Byzantine rites
+12523,Orthodox_Jew,Jew who practices strict observance of Mosaic law
+12524,Orthodox_Judaism,beliefs and practices of a Judaic sect that strictly observes Mosaic law
+12525,Orthodox_Judaism Jewish_Orthodoxy,Jews who strictly observe the Mosaic law as interpreted in the Talmud
+12526,Orthopristis genus_Orthopristis,a genus of Haemulidae
+12527,Orthoptera order_Orthoptera,grasshoppers and locusts; crickets
+12528,Orthotomus genus_Orthotomus,tailorbirds
+12529,Orwell George_Orwell Eric_Blair Eric_Arthur_Blair,imaginative British writer concerned with social justice (1903-1950)
+12530,Orycteropodidae family_Orycteropodidae,aardvarks
+12531,Orycteropus genus_Orycteropus,coextensive with the family Orycteropodidae
+12532,Oryctolagus genus_Oryctolagus,Old World rabbits
+12533,Oryza genus_Oryza,rice
+12534,Oryzomys genus_Oryzomys,rice rats
+12535,Oryzopsis genus_Oryzopsis,rice grass
+12536,Osage,a member of the Siouan people formerly living in Missouri in the valleys of the Missouri and Osage rivers; oil was found on Osage lands early in the 20th century
+12537,Osage,the Dhegiha dialect spoken by the Osage
+12538,Osage Osage_River,a river in Missouri that is a tributary of the Missouri River
+12539,Osaka,port city on southern Honshu on Osaka Bay; a commercial and industrial center of Japan
+12540,Osaka_Bay,a bay of the western Pacific in southern Honshu
+12541,Osasco,a city in southeastern Brazil; suburb of Sao Paulo
+12542,Osborne John_Osborne John_James_Osborne,English playwright (1929-1994)
+12543,Oscan,an Oscan-speaking member of an ancient people of Campania
+12544,Oscan,an extinct Italic language of ancient southern Italy
+12545,Oscillatoriaceae family_Oscillatoriaceae,blue green algae
+12546,Oscines suborder_Oscines Passeres suborder_Passeres,two names for the suborder of typical songbirds
+12547,Osco-Umbrian,a group of dead languages of ancient Italy; they were displace by Latin
+12548,Osiris,Egyptian god of the underworld and judge of the dead; husband and brother of Isis; father of Horus
+12549,Oslo Christiania capital_of_Norway,the capital and largest city of Norway; the country's main port; located at the head of a fjord on Norway's southern coast
+12550,Osman_I Othman_I,the conqueror of Turkey who founded the Ottoman Empire and the Ottoman dynasty that ruled Turkey after the 13th century; conquered most of Asia Minor and assumed the title of emir in 1299 (1259-1326)
+12551,Osmanthus genus_Osmanthus,widely distributed genus of evergreen shrubs or trees of southern United States and Middle East and China and Japan
+12552,Osmeridae family_Osmeridae,smelts
+12553,Osmerus genus_Osmerus,type genus of the Osmeridae
+12554,Osmundaceae family_Osmundaceae,large family of ferns widely distributed in temperate and tropical areas
+12555,Ossete,a northeastern Iranian language spoken in Russia
+12556,Ostariophysi order_Ostariophysi,in some classifications considered a superorder comprising the Cypriniformes and the Siluriformes
+12557,Osteichthyes class_Osteichthyes,a class of fish having a skeleton composed of bone in addition to cartilage
+12558,Osteoglossidae family_Osteoglossidae,a family of large fishes that live in freshwater; includes bandfish and bonytongues
+12559,Osteoglossiformes Order_Osteoglossiformes,teleost fish with bony tongues
+12560,Osteostraci suborder_Osteostraci Cephalaspida suborder_Cephalaspida,extinct group of armored fish-like vertebrates; taxonomy is not clear
+12561,Ostraciidae family_Ostraciidae family_Ostraciontidae,boxfishes
+12562,Ostracoda subclass_Ostracoda,seed shrimps
+12563,Ostracodermi order_Ostracodermi,extinct group of armored jawless vertebrates; taxonomy is not clear
+12564,Ostrava,an industrial city in northwestern Czech Republic in the Moravian lowlands; located in the coal mining area of Silesia
+12565,Ostrea genus_Ostrea,type genus of the family Ostreidae
+12566,Ostreidae family_Ostreidae,oysters
+12567,Ostrogoth,a member of the eastern group of Goths who created a kingdom in northern Italy around 500 AD
+12568,Ostrya genus_Ostrya,deciduous monoecious trees of Europe and Asia and America; sometimes placed in subfamily or family Carpinaceae
+12569,Ostryopsis genus_Ostryopsis,deciduous monoecious shrubs of China and Mongolia resembling trees of the genus Ostrya; sometimes placed in subfamily or family Carpinaceae
+12570,Ostwald Wilhelm_Ostwald,German chemist (1853-1932)
+12571,Ostyak Khanty,a member of the nomadic Ugrian people living in northwestern Siberia (east of the Urals)
+12572,Oswald Lee_Harvey_Oswald,United States assassin of President John F. Kennedy (1939-1963)
+12573,Otaheite_arrowroot Otaheite_arrowroot_starch,a starch obtained from the root of the pia
+12574,Otaria genus_Otaria,type genus of the Otariidae
+12575,Otariidae family_Otariidae,eared seals: sea lions and fur seals
+12576,Othello,the hero of William Shakespeare's tragedy who would not trust his wife
+12577,Otides suborder_Otides,terrestrial game birds of the Old World and Australia: bustards
+12578,Otididae family_Otididae,bustards
+12579,Otis Elisha_Graves_Otis,United States inventor who manufactured the first elevator with a safety device (1811-1861)
+12580,Otis genus_Otis,type genus of the Otididae: European bustard
+12581,Oto Otoe,a member of the Siouan people inhabiting the valleys of the Platte and Missouri rivers in Nebraska
+12582,Oto Otoe,a dialect of the Chiwere language spoken by the Oto
+12583,Ottawa,a member of the Algonquian people of southern Ontario
+12584,Ottawa Canadian_capital capital_of_Canada,the capital of Canada (located in southeastern Ontario across the Ottawa river from Quebec)
+12585,Otto_I Otho_I Otto_the_Great,King of the Germans and Holy Roman Emperor (912-973)
+12586,Ottoman Ottoman_Turk Osmanli,a Turk (especially a Turk who is a member of the tribe of Osman I)
+12587,Ottoman Ottoman_dynasty,the Turkish dynasty that ruled the Ottoman Empire from the 13th century to its dissolution after World War I
+12588,Ottoman_Empire Turkish_Empire,a Turkish sultanate of southwestern Asia and northeastern Africa and southeastern Europe; created by the Ottoman Turks in the 13th century and lasted until the end of World War I; although initially small it expanded until it superseded the Byzantine Empire
+12589,Ottumwa,a town in southeast Iowa
+12590,Otus genus_Otus,a genus of Strigidae
+12591,Ouachita Ouachita_River,a river that rises in western Arkansas and flows southeast into eastern Louisiana to become a tributary of the Red River
+12592,Ouija Ouija_board,a board with the alphabet on it; used with a planchette to spell out supernatural messages
+12593,Oujda,a city in northeastern Morocco near the Algerian border
+12594,Our_Lord's_candle Yucca_whipplei,yucca of southwestern United States and Mexico with a tall spike of creamy white flowers
+12595,Ouranopithecus genus_Ouranopithecus,a genus of Hominidae
+12596,Ouranos Uranus,(Greek mythology) god of the heavens; son and husband of Gaea and father of the Titans in ancient mythology
+12597,Ouse Ouse_River,a river in northeastern England that flows generally southeastward to join the Trent River and form the Humber
+12598,Outaouais Ottawa Ottawa_river,a river in southeastern Canada that flows along the boundary between Quebec and Ontario to the Saint Lawrence River near Montreal
+12599,Outer_Hebrides,a 130-mile long archipelago to the northwest of Scotland
+12600,Oval_Office,the office of the President of the United States in the White House
+12601,Ovalipes genus_Ovalipes,a genus of Portunidae
+12602,Oven_Stuffer Oven_Stuffer_Roaster,a brand name for a roasting chicken
+12603,Ovibos genus_Ovibos,consisting of the musk-ox
+12604,Ovid Publius_Ovidius_Naso,Roman poet remembered for his elegiac verses on love (43 BC - AD 17)
+12605,Oviedo,a city in northwestern Spain near the Cantabrian Mountains
+12606,Ovis genus_Ovis,sheep
+12607,Ovocon,trade name for an oral contraceptive containing estradiol and norethindrone
+12608,Ovral,trade name for an oral contraceptive containing estradiol and norgestrel
+12609,Ovrette,trade name for an oral contraceptive containing norgestrel
+12610,Ovulen,trade name for an oral contraceptive containing mestranol and a progestin compound
+12611,Owen Robert_Owen,Welsh industrialist and social reformer who founded cooperative communities (1771-1858)
+12612,Owen Sir_Richard_Owen,English comparative anatomist and paleontologist who was an opponent of Darwinism (1804-1892)
+12613,Owens Jesse_Owens James_Cleveland_Owens,United States athlete and Black American whose success in the 1936 Olympic Games in Berlin outraged Hitler (1913-1980)
+12614,Owensboro,a town in northwestern Kentucky on the Ohio River; a tobacco market
+12615,Oxalidaceae family_Oxalidaceae wood-sorrel_family,a family of widely distributed herbs of the order Geraniales; have compound leaves and pentamerous flowers
+12616,Oxandra genus_Oxandra,genus of tropical trees
+12617,Oxbridge,general term for an ancient and prestigious and privileged university (especially Oxford University or Cambridge University)
+12618,Oxford,a university town in northern Mississippi; home of William Faulkner
+12619,Oxford,a city in southern England to the northwest of London; site of Oxford University
+12620,Oxford_English,the dialect of English spoken at Oxford University and regarded by many as affected and pretentious
+12621,Oxford_English_Dictionary O.E.D. OED,an unabridged dictionary constructed on historical principles
+12622,Oxford_University Oxford,a university in England
+12623,Oxford_movement,19th-century movement in the Church of England opposing liberal tendencies
+12624,Oxonian,a native or resident of Oxford
+12625,Oxybelis genus_Oxybelis,vine snakes
+12626,Oxydendrum genus_Oxydendrum,sourwood
+12627,Oxylebius genus_Oxylebius,a genus of Hexagrammidae
+12628,Oxytropis genus_Oxytropis,large widely-distributed genus of evergreen shrubs or subshrubs having odd-pinnate leaves and racemose or spicate flowers each having a pea-like corolla with a clawed petal
+12629,Oxyura genus_Oxyura,ruddy duck
+12630,Oxyuranus genus_Oxyuranus,taipans
+12631,Oxyuridae family_Oxyuridae,pinworms
+12632,Ozark_chinkapin Ozark_chinquapin chinquapin Castanea_ozarkensis,shrubby tree closely related to the Allegheny chinkapin but with larger leaves; southern midwestern United States
+12633,Ozarks Ozark_Mountains Ozark_Plateau,an area of low mountains in northwestern Arkansas and southeastern Missouri and northeastern Oklahoma
+12634,Ozawa Seiji_Ozawa,United States conductor (born in Japan in 1935)
+12635,Ozonium genus_Ozonium,form genus of imperfect fungi
+12636,Ozothamnus genus_Ozothamnus,genus of Australian shrubs and perennial herbs; sometimes included in genus Helichrysum
+12637,P p,the 16th letter of the Roman alphabet
+12638,PAYE pay_as_you_earn,the British system of withholding tax
+12639,PC_board,a removable circuit board for a personal computer; fits into a slot in the mother board
+12640,PKU_test,a test of newborn infants for phenylketonuria
+12641,PSA_blood_test,a blood test that measures levels of a protein called prostate specific antigen that is manufactured exclusively by the prostate gland; men with prostate problems usually have elevated levels of PSA
+12642,PT_boat mosquito_boat mosquito_craft motor_torpedo_boat,a small fast unarmored and lightly armed torpedo boat; P(atrol) T(orpedo) boat
+12643,Pablum,a soft form of cereal for infants
+12644,Pachycephala genus_Pachycephala,arboreal insectivorous birds
+12645,Pachyrhizus genus_Pachyrhizus,small genus of tropical vines having tuberous roots
+12646,Pacific Pacific_Ocean,the largest ocean in the world
+12647,Pacific_Coast,a coast of the Pacific Ocean
+12648,Pacific_Northwest,a region of the northwestern United States usually including Washington and Oregon and sometimes southwestern British Columbia
+12649,Pacific_Time Pacific_Standard_Time PST,standard time in the 8th time zone west of Greenwich, reckoned at the 120th meridian west; used in far western states of the United States
+12650,Pacific_bottlenose_dolphin Tursiops_gilli,a bottlenose dolphin found in the Pacific Ocean
+12651,Pacific_cod Alaska_cod Gadus_macrocephalus,closely related to Atlantic cod
+12652,Pacific_giant_salamander Dicamptodon_ensatus,large (to 7 inches) salamander of western North America
+12653,Pacific_halibut Hippoglossus_stenolepsis,a righteye flounder found in the Pacific
+12654,Pacific_herring Clupea_harengus_pallasii,important food fish of the northern Pacific
+12655,Pacific_newt,any of several rough-skinned newts found in western North America
+12656,Pacific_ridley olive_ridley Lepidochelys_olivacea,olive-colored sea turtle of tropical Pacific and Indian and the southern Atlantic oceans
+12657,Pacific_sardine Sardinops_caerulea,small pilchards common off the pacific coast of North America
+12658,Pacific_spiny_dogfish Squalus_suckleyi,dogfish of Pacific coast of North America
+12659,Pacific_sturgeon white_sturgeon Sacramento_sturgeon Acipenser_transmontanus,food and game fish of marine and fresh waters of northwestern coast of North America
+12660,Pacific_tree_toad Hyla_regilla,the most commonly heard frog on the Pacific coast of America
+12661,Pacific_tripletail Lobotes_pacificus,tripletail found in the Pacific
+12662,Pacific_walrus Odobenus_divergens,a walrus of the Bering Sea and northern Pacific
+12663,Pacific_yew California_yew western_yew Taxus_brevifolia,small or medium irregularly branched tree of the Pacific coast of North America; yields fine hard close-grained wood
+12664,Pacinian_corpuscle,a specialized bulblike nerve ending located in the subcutaneous tissue of the skin; occurs abundantly in the skin of palms and soles and joints and genitals
+12665,Packera genus_Packera,genus of American of east Asian perennial herbs with yellow to orange or red flower rays; sometimes included in genus Senecio
+12666,Padda genus_Padda,a genus of Ploceidae
+12667,Paddy Mick Mickey,(ethnic slur) offensive term for a person of Irish descent
+12668,Paderewski Ignace_Paderewski Ignace_Jan_Paderewski,Polish pianist who in 1919 served as the first Prime Minister of independent Poland (1860-1941)
+12669,Padua Padova Patavium,a city in Veneto
+12670,Paducah,a town in western Kentucky on the Ohio River
+12671,Paeonia genus_Paeonia,peonies: herbaceous or shrubby plants having showy flowers
+12672,Paeoniaceae family_Paeoniaceae peony_family,perennial rhizomatous herbs and shrubs; of temperate Europe and North America
+12673,Paganini Niccolo_Paganini,Italian violinist and composer of music for the violin (1782-1840)
+12674,Page Sir_Frederick_Handley_Page,English industrialist who pioneered in the design and manufacture of aircraft (1885-1962)
+12675,Page Thomas_Nelson_Page,United States diplomat and writer about the Old South (1853-1922)
+12676,Pagellus genus_Pagellus,sea breams
+12677,Paget Sir_James_Paget,English pathologist who discovered the cause of trichinosis (1814-1899)
+12678,Paget's_disease osteitis_deformans,a disease of bone occurring in the middle aged and elderly; excessive bone destruction sometimes leading to bone pain and fractures and skeletal deformities
+12679,Pago_Pago Pango_Pango,a port in American Samoa
+12680,Pagophila genus_Pagophila,a genus of Laridae
+12681,Pagophilus genus_Pagophilus,harp seals
+12682,Pagrus genus_Pagrus,a genus of Sparidae
+12683,Paguridae family_Paguridae,hermit crabs
+12684,Pagurus genus_Pagurus,type genus of the family Paguridae
+12685,Pahang,sultanate and one of the 13 states that constitute the Federation of Malaysia
+12686,Pahlavi,the script (derived from the Aramaic alphabet) used to write the Pahlavi language
+12687,Pahlavi Mohammed_Reza_Pahlavi Shah_Pahlavi Pahlevi Mohammed_Reza_Pahlevi,Shah of Iran who was deposed in 1979 by Islamic fundamentalists (1919-1980)
+12688,Pahlavi Pehlevi,the Iranian language of the Zoroastrian literature of the 3rd to 10th centuries
+12689,Paige Satchel_Paige Leroy_Robert_Paige,United States baseball player; a black pitcher noted for his longevity (1906-1982)
+12690,Paine Robert_Treat_Paine,American Revolutionary leader and signer of the Declaration of Independence (1731-1814)
+12691,Paine Tom_Paine Thomas_Paine,American Revolutionary leader and pamphleteer (born in England) who supported the American colonist's fight for independence and supported the French Revolution (1737-1809)
+12692,Painted_Desert,a desert on a high plateau in northeastern Arizona
+12693,Paiute,the Shoshonean language spoken by the Paiute
+12694,Paiute Piute,a member of either of two Shoshonean peoples (northern Paiute and southern Paiute) related to the Aztecs and living in the southwestern United States
+12695,Paiwanic,a Formosan language
+12696,Pakistan Islamic_Republic_of_Pakistan West_Pakistan,a Muslim republic that occupies the heartland of ancient south Asian civilization in the Indus River valley; formerly part of India; achieved independence from the United Kingdom in 1947
+12697,Pakistani,a native or inhabitant of Pakistan
+12698,Pakistani_monetary_unit,monetary unit in Pakistan
+12699,Pakistani_rupee rupee,the basic unit of money in Pakistan; equal to 100 paisa
+12700,Palaemon genus_Palaemon,type genus of the family Palaemonidae; widely distributed genus
+12701,Palaemonidae family_Palaemonidae,prawns
+12702,Palaic,an Anatolian language
+12703,Palaquium genus_Palaquium,large genus of Malaysian trees with milky juice and leathery leaves
+12704,Palatinate Pfalz,a territory in southwestern Germany formerly ruled by the counts palatine
+12705,Palatine,the most important of the Seven Hills of Rome; supposedly the location of the first settlement and the site of many imperial palaces
+12706,Palau Palau_Islands Belau Pelew,a chain of more than 200 islands about 400 miles long in the western central Pacific Ocean
+12707,Palau Republic_of_Palau TT,a republic in the western central Pacific Ocean in association with the United States
+12708,Paleacrita genus_Paleacrita,geometrid moths
+12709,Paleacrita_vernata,moth whose larvae are spring cankerworms
+12710,Paleo-American Paleo-Amerind Paleo-Indian,a member of the Paleo-American peoples who were the earliest human inhabitants of North America and South America during the late Pleistocene epoch
+12711,Paleo-American_culture Paleo-Amerind_culture Paleo-Indian_culture,the prehistoric culture of the earliest human inhabitants of North America and South America
+12712,Paleocene Paleocene_epoch,from 63 million to 58 million years ago; appearance of birds and earliest mammals
+12713,Paleolithic_Age Paleolithic Palaeolithic,second part of the Stone Age beginning about 750,000 to 500,000 years BC and lasting until the end of the last ice age about 8,500 years BC
+12714,Paleozoic Paleozoic_era,from 544 million to about 230 million years ago
+12715,Palermo,the capital of Sicily; located in northwestern Sicily; an important port for 3000 years
+12716,Palestine,a former British mandate on the east coast of the Mediterranean; divided between Jordan and Israel in 1948
+12717,Palestine Canaan Holy_Land Promised_Land,an ancient country in southwestern Asia on the east coast of the Mediterranean Sea; a place of pilgrimage for Christianity and Islam and Judaism
+12718,Palestine_Islamic_Jihad Palestinian_Islamic_Jihad PIJ Harakat_al-Jihad_al-Islami_al-Filastini,a militant Palestinian terrorist group created in 1979 and committed to the creation of an Islamic state in Palestine and to the destruction of Israel; smaller and more exclusively militant that Hamas
+12719,Palestine_Liberation_Front PLF Jabat_al-Tahrir_al-Filistiniyyah,a terrorist group formed in 1977 as the result of a split with the Popular Front for the Liberation of Palestine; became a satellite of al-Fatah; made terrorist attacks on Israel across the Lebanese border
+12720,Palestine_Liberation_Organization PLO,a political movement uniting Palestinian Arabs in an effort to create an independent state of Palestine; when formed in 1964 it was a terrorist organization dominated by Yasser Arafat's al-Fatah; in 1968 Arafat became chairman; received recognition by the United Nations and by Arab states in 1974 as a government in exile; has played a largely political role since the creation of the Palestine National Authority
+12721,Palestine_National_Authority Palestinian_National_Authority Palestine_Authority,combines the Gaza Strip and the West Bank under a political unit with limited autonomy and a police force; created in 1993 by an agreement between Israel and the PLO
+12722,Palestinian Palestinian_Arab,a descendant of the Arabs who inhabited Palestine
+12723,Palestinian_Hizballah,a little known Palestinian group comprised of members of Hamas and Tanzim with suspected ties to the Lebanese Hizballah; responsible for suicide bombings in Israel
+12724,Palestrina Giovanni_Pierluigi_da_Palestrina,Italian composer (1526-1594)
+12725,Palgrave Francis_Turner_Palgrave,English poet (1824-1897)
+12726,Pali,an ancient Prakrit language (derived from Sanskrit) that is the scriptural and liturgical language of Theravada Buddhism
+12727,Palinuridae family_Palinuridae,spiny lobsters
+12728,Palinurus genus_Palinurus,type genus of the family Palinuridae
+12729,Paliurus genus_Paliurus,thorny Eurasian shrubs
+12730,Pall_Mall,a fashionable street in London noted for its many private clubs
+12731,Palladio Andrea_Palladio,highly original and much imitated Italian architect (1508-1580)
+12732,Pallas,a large asteroid; the second asteroid to be discovered
+12733,Palm_Beach,a resort town in southeast Florida on an island on the Atlantic coast
+12734,Palm_Sunday,Sunday before Easter
+12735,Palmae family_Palmae Palmaceae family_Palmaceae Arecaceae family_Arecaceae palm_family,chiefly tropical trees and shrubs and vines usually having a tall columnar trunk bearing a crown of very large leaves; coextensive with the order Palmales
+12736,Palmales order_Palmales,coextensive with the family Palmae: palms
+12737,Palmer Arnold_Palmer Arnold_Daniel_Palmer,United States golfer (born in 1929)
+12738,Palo_Alto,a university town in California
+12739,Pamir_Mountains the_Pamirs,a mountain range in central Asia that is centered in Tajikistan but extends into Kyrgyzstan and Afghanistan and Pakistan and western China
+12740,Pamlico,a member of the Algonquian people formerly of the Pamlico river valley in North Carolina
+12741,Pamlico,the Algonquian language of the Pamlico
+12742,Pan genus_Pan,chimpanzees; more closely related to Australopithecus than to other pongids
+12743,Pan goat_god,(Greek mythology) god of fields and woods and shepherds and flocks; represented as a man with goat's legs and horns and ears; identified with Roman Sylvanus or Faunus
+12744,Pan_American_Day April_14,a day celebrating political and economic unity among American countries
+12745,Pan_American_Union,the administrative agency of the Organization of American States
+12746,Panacea,(Greek mythology) the goddess of healing; daughter of Aesculapius and sister of Hygeia
+12747,Panama Republic_of_Panama,a republic on the Isthmus of Panama; achieved independence from Colombia in 1903
+12748,Panama_Canal,a ship canal 40 miles long across the Isthmus of Panama built by the United States (1904-1914)
+12749,Panama_Canal_Zone Canal_Zone,a zone consisting of a strip of land across the Isthmus of Panama that contains the Panama Canal
+12750,Panama_City,a resort and fishing town on the Gulf of Mexico in northwest Florida
+12751,Panama_City capital_of_Panama Panamanian_capital,the capital and largest city of Panama
+12752,Panama_redwood quira,hard heavy red wood of a quira tree
+12753,Panama_redwood_tree Panama_redwood Platymiscium_pinnatum,large erect shrub of Colombia having large odd-pinnate leaves with large leaflets and axillary racemes of fragrant yellow flowers
+12754,Panama_tree Sterculia_apetala,large deciduous tree native to Panama and from which the country takes its name; having densely leafy crown and naked trunk
+12755,Panamanian,a native or inhabitant of Panama
+12756,Panamanian_monetary_unit,monetary unit in Panama
+12757,Panax genus_Panax,perennial herbs of eastern North America and Asia having aromatic tuberous roots: ginseng
+12758,Panchen_Lama,the lama next in rank to the Dalai Lama
+12759,Pandanaceae family_Pandanaceae screw-pine_family,family of woody plants of the order Pandanales including pandanus
+12760,Pandanales order_Pandanales,families Typhaceae; Sparganiaceae; Pandanaceae
+12761,Pandion genus_Pandion,type genus of the Pandionidae
+12762,Pandionidae family_Pandionidae,ospreys
+12763,Pandora,(Greek mythology) the first woman; created by Hephaestus on orders from Zeus who presented her to Epimetheus along with a box filled with evils
+12764,Pandora's_box,(Greek mythology) a box that Zeus gave to Pandora with instructions that she not open it; she gave in to her curiosity and opened it; all the miseries and evils flew out to afflict mankind
+12765,Pangaea Pangea,(plate tectonics) a hypothetical continent including all the landmass of the earth prior to the Triassic period when it split into Laurasia and Gondwanaland
+12766,Pangloss,an incurable optimist in a satire by Voltaire
+12767,Panicum genus_Panicum,panic grass
+12768,Panini,Indian grammarian whose grammatical rules for Sanskrit are the first known example of descriptive linguistics (circa 400 BC)
+12769,Panipat battle_of_Panipat,battle in which the ruler of Afghanistan defeated the Mahrattas in 1761
+12770,Panofsky Erwin_Panofsky,art historian (1892-1968)
+12771,Panonychus genus_Panonychus,a genus of Tetranychidae
+12772,Panorpidae family_Panorpidae,a family of insects of the order Mecoptera
+12773,Pantaloon,a buffoon in modern pantomimes; the butt of jokes
+12774,Pantaloon,a character in the commedia dell'arte; portrayed as a foolish old man
+12775,Panthera genus_Panthera,lions; leopards; snow leopards; jaguars; tigers; cheetahs; saber-toothed tigers
+12776,Pantotheria subclass_Pantotheria,generalized extinct mammals widespread during the Jurassic; commonly conceded to be ancestral to marsupial and placental mammals
+12777,Pap_test Papanicolaou_test smear_test,a method of examining stained cells in a cervical smear for early diagnosis of uterine cancer
+12778,Papal_States,the temporal dominions belonging to the pope (especially in central Italy)
+12779,Papaver genus_Papaver,type genus of the Papaveraceae; chiefly bristly hairy herbs with usually showy flowers
+12780,Papaveraceae family_Papaveraceae poppy_family,herbs or shrubs having milky and often colored juices and capsular fruits
+12781,Papeete,the capital of French Polynesia on the northwestern coast of Tahiti
+12782,Paphiopedilum genus_Paphiopedilum,horticulturally important genus of mainly terrestrial orchids including many hybrids; southeastern Asia and Indonesia to Philippines and Solomon Islands; Paphiopedilum species sometimes included in genus Cypripedium
+12783,Papilionaceae family_Papilionacea,leguminous plants whose flowers have butterfly-shaped corollas; commonly included in the family Leguminosae
+12784,Papilionoideae subfamily_Papilionoideae,alternative name used in some classification systems for the family Papilionaceae
+12785,Papio genus_Papio,baboons
+12786,Paprilus genus_Paprilus,a genus of Stromateidae
+12787,Papua,the southeastern part of Papua New Guinea
+12788,Papua_New_Guinea Independent_State_of_Papua_New_Guinea,a parliamentary democracy on the eastern half of the island of New Guinea; in 1975 it became an independent state within the Commonwealth of Nations
+12789,Papuan,a native or inhabitant of Papua New Guinea or New Guinea
+12790,Papuan Papuan_language,any of the indigenous languages spoken in Papua New Guinea or New Britain or the Solomon Islands that are not Malayo-Polynesian languages
+12791,Papuan_monetary_unit,monetary unit in Papua New Guinea
+12792,Para Para_River,an estuary in northern Brazil into which the Tocantins River flows
+12793,Para_rubber,a type of natural rubber obtained from tropical South American trees
+12794,Para_rubber_tree caoutchouc_tree Hevea_brasiliensis,deciduous tree of the Amazon and Orinoco Rivers having leathery leaves and fragrant yellow-white flowers; it yields a milky juice that is the chief source of commercial rubber
+12795,Paracelsus Philippus_Aureolus_Paracelsus Theophrastus_Philippus_Aureolus_Bombastus_von_Hohenheim,Swiss physician who introduced treatments of particular illnesses based on his observation and experience; he saw illness as having an external cause (rather than an imbalance of humors) and replaced traditional remedies with chemical remedies (1493-1541)
+12796,Paracheirodon genus_Paracheirodon,a genus of Characidae
+12797,Paradisaeidae family_Paradisaeidae,birds of paradise
+12798,Paradise,(Christianity) the abode of righteous souls after death
+12799,Paradoxurus genus_Paradoxurus,palm civets
+12800,Paraguay Republic_of_Paraguay,a landlocked republic in south central South America; achieved independence from Spain in 1811
+12801,Paraguayan,a native or inhabitant of Paraguay
+12802,Paraguayan_monetary_unit,monetary unit in Paraguay
+12803,Paralichthys genus_Paralichthys,a genus of Bothidae
+12804,Paralipomenon,(Old Testament) an obsolete name for the Old Testament books of I Chronicles and II Chronicles which were regarded as supplementary to Kings
+12805,Paralithodes genus_Paralithodes,a genus of Lithodidae
+12806,Parallel_Lives,a collection of biographies of famous pairs of Greeks and Romans written by Plutarch; used by Shakespeare in writing some of his plays
+12807,Paramaribo capital_of_Suriname,the capital and largest city and major port of Surinam
+12808,Parana Parana_River,a South American river; tributary of Rio de la Plata
+12809,Paranthias genus_Paranthias,a genus of Serranidae
+12810,Paranthropus genus_Paranthropus,former classification for Australopithecus robustus
+12811,Parascalops genus_Parascalops,brewer's moles
+12812,Parashurama,an incarnation of Vishnu who rid the earth of Kshatriyas
+12813,Parasitaxus genus_Parasitaxus,one species: parasite yew
+12814,Parathelypteris genus_Parathelypteris,terrestrial ferns of warm and tropical Asia and North America
+12815,Parazoa subkingdom_Parazoa,multicellular organisms having less-specialized cells than in the Metazoa; comprises the single phylum Porifera
+12816,Parcae,any of the three Roman goddesses of fate or destiny; identified with the Greek Moirai and similar to the Norse Norns
+12817,Parcheesi,a modern board game based on pachisi
+12818,Pareto Vilfredo_Pareto,Italian sociologist and economist whose theories influenced the development of fascism in Italy (1848-1923)
+12819,Paridae family_Paridae,titmice and chickadees
+12820,Parietales order_Parietales Hypericales order_Hypericales,a large order of dicotyledonous plants of subclass Dilleniidae
+12821,Parietaria genus_Parietaria,small genus of stingless herbs
+12822,Paris,(Greek mythology) the prince of Troy who abducted Helen from her husband Menelaus and provoked the Trojan War
+12823,Paris,a town in northeastern Texas
+12824,Paris City_of_Light French_capital capital_of_France,the capital and largest city of France; and international center of culture and commerce
+12825,Paris genus_Paris,sometimes placed in subfamily Trilliaceae
+12826,Paris_University University_of_Paris Sorbonne,a university in Paris; intellectual center of France
+12827,Paris_green,a toxic double salt of copper arsenate and copper acetate
+12828,Parisian,a native or resident of Paris
+12829,Parisienne,a female native or resident of Paris
+12830,Parjanya,Hindu god of rain; sometimes identified with Indra
+12831,Parji,a Dravidian language spoken in south central India
+12832,Park Mungo_Park,Scottish explorer in Africa (1771-1806)
+12833,Park_Avenue Park_Ave.,a fashionable residential street in New York City
+12834,Parker Charlie_Parker Yardbird_Parker Bird_Parker Charles_Christopher_Parker,United States saxophonist and leader of the bop style of jazz (1920-1955)
+12835,Parker Dorothy_Parker Dorothy_Rothschild_Parker,United States writer noted for her sharp wit (1893-1967)
+12836,Parker_House_roll,yeast-raised dinner roll made by folding a disk of dough before baking
+12837,Parkeriaceae family_Parkeriaceae,coextensive with the genus Ceratopteris; sometimes included in family Polypodiaceae
+12838,Parkersburg,a city in northwestern West Virginia on the Ohio river
+12839,Parkia genus_Parkia,genus of tropical Old World trees: nitta trees
+12840,Parkia_javanica,tall evergreen rain forest tree with wide-spreading crown having yellow-white flowers; grown as an ornamental in parks and large gardens
+12841,Parkinson C._Northcote_Parkinson Cyril_Northcote_Parkinson,British historian noted for ridicule of bureaucracies (1909-1993)
+12842,Parkinson James_Parkinson,English surgeon (1755-1824)
+12843,Parkinson's_law,C. Northcote Parkinson's cynical observation that work will expand so as to fill the time available for its completion
+12844,Parkinson's_law,C. Northcote Parkinson's cynical observation that the number of subordinates in an organization will increase linearly regardless of the amount of work to be done
+12845,Parkinsonia genus_Parkinsonia,small genus of spiny shrubs or small trees
+12846,Parks Rosa_Parks,United States civil rights leader who refused to give up her seat on a bus to a white man in Montgomery (Alabama) and so triggered the national Civil Rights movement (born in 1913)
+12847,Parliamentarian Member_of_Parliament,an elected member of the British Parliament: a member of the House of Commons
+12848,Parmelia genus_Parmelia,type genus of the Parmeliaceae; a large genus of chiefly alpine foliaceous lichens
+12849,Parmeliaceae family_Parmeliaceae,a family of lichens
+12850,Parmenides,a presocratic Greek philosopher born in Italy; held the metaphysical view that being is the basic substance and ultimate reality of which all things are composed; said that motion and change are sensory illusions (5th century BC)
+12851,Parmesan,hard dry sharp-flavored Italian cheese; often grated
+12852,Parnaiba Parnahiba,a river in northeastern Brazil that flows generally northward to the Atlantic Ocean
+12853,Parnassus Mount_Parnassus Liakoura,(Greek mythology) a mountain in central Greece where (according to Greek mythology) the Muses lived; known as the mythological home of music and poetry; "Liakoura is the modern name of Mount Parnassus"
+12854,Parnell Charles_Stewart_Parnell,Irish nationalist leader (1846-1891)
+12855,Parochetus genus_Parochetus,one species: shamrock pea
+12856,Paronychia genus_Paronychia,low-growing annual or perennial herbs or woody plants; whitlowworts
+12857,Parophrys genus_Parophrys,a genus of Soleidae
+12858,Parr Catherine_Parr,Queen of England as the 6th wife of Henry VIII (1512-1548)
+12859,Parrish Maxfield_Parrish Maxfield_Frederick_Parrish,United States painter (1870-1966)
+12860,Parrotia genus_Parrotia,one species: iron tree
+12861,Parrotiopsis genus_Parrotiopsis,one species: deciduous tree of the Himalaya Mountains
+12862,Parry's_penstemon Penstemon_parryi,erect stems with pinkish-lavender flowers in long interrupted clusters; Arizona
+12863,Parry's_pinyon Pinus_quadrifolia Pinus_parryana,five-needled pinon of southern California and northern Baja California having (sometimes three-needled or four-needled showing hybridization from Pinus californiarum)
+12864,Parry_manzanita Arctostaphylos_manzanita,erect treelike shrub forming dense thickets and having drooping panicles of white or pink flowers and red berrylike drupes; California
+12865,Parsee Parsi,a member of a monotheistic sect of Zoroastrian origin; descended from the Persians; now found in western India
+12866,Parsiism Parseeism,the faith of a Zoroastrian sect in India
+12867,Parsons Talcott_Parsons,United States sociologist (1902-1979)
+12868,Parsons_table,a sturdy rectangular table with block legs at the four corners; the top and the legs are the same width
+12869,Parthenium genus_Parthenium,small genus of North American herbs and shrubs with terminal panicles of small ray flowers
+12870,Parthenocissus genus_Parthenocissus,woody vines having disklike tips on the tendrils
+12871,Parthenon,the main temple of the goddess Athena; built on the acropolis in Athens more than 400 years B.C.; example of Doric architecture
+12872,Parthia,an ancient kingdom in Asia to the southeast of the Caspian Sea; it dominated southwestern Asia from about 250 BC to AD 226
+12873,Parthian,a native or inhabitant of Parthia
+12874,Parthian,the Iranian language spoken in the Parthian kingdom (250 BC to AD 226)
+12875,Parula genus_Parula,type genus of the Parulidae: wood warblers
+12876,Parulidae family_Parulidae,New World warblers
+12877,Parus genus_Parus,type genus of the family Paridae
+12878,Parvati Anapurna Annapurna,wife of Siva and a benevolent aspect of Devi: Hindu goddess of plenty
+12879,Pasadena,a city in southwestern California to the east of Los Angeles
+12880,Pascal,a programing language designed to teach programming through a top-down modular approach
+12881,Pascal Blaise_Pascal,French mathematician and philosopher and Jansenist; invented an adding machine; contributed (with Fermat) to the theory of probability (1623-1662)
+12882,Pascal's_law Pascal's_law_of_fluid_pressures,pressure applied anywhere to a body of fluid causes a force to be transmitted equally in all directions; the force acts at right angles to any surface in contact with the fluid; "the hydraulic press is an application of Pascal's law"
+12883,Pascal_compiler,a compiler for programs written in Pascal
+12884,Pasch Pascha,the Jewish feast of the Passover
+12885,Pasch Pascha,the Christian festival of Easter
+12886,Pashto Pashtu Paxto Afghani Afghan,an Iranian language spoken in Afghanistan and Pakistan; the official language of Afghanistan
+12887,Pasigraphy,an artificial international language using characters (as mathematical symbols) instead of words to express ideas
+12888,Pasiphae,(Greek mythology) daughter of Helios and mother of Ariadne
+12889,Passamaquody,a member of the Algonquian people related to the Malecite and living in northeastern Maine and New Brunswick
+12890,Passer genus_Passer,type genus of the Passeridae
+12891,Passeridae family_Passeridae,true sparrows: Old world birds formerly considered weaverbirds
+12892,Passeriformes order_Passeriformes,largest order of birds comprising about half the known species; rooks; finches; sparrows; tits; warblers; robins; wrens; swallows; etc.; the four suborders are Eurylaimi and Tyranni and Menurae and Oscines or Passeres
+12893,Passerina genus_Passerina,a genus of small North American finches including the New World buntings
+12894,Passero Cape_Passero,a naval battle in the Mediterranean Sea off Cape Passero in which the Spanish navy was destroyed by France and England while attempting to recover Sicily and Sardinia from Italy (1719)
+12895,Passiflora genus_Passiflora,type genus of the Passifloraceae
+12896,Passifloraceae family_Passifloraceae passionflower_family,tropical woody tendril-climbing vines
+12897,Passion Passion_of_Christ,the suffering of Jesus at the Crucifixion
+12898,Passion_Sunday,second Sunday before Easter
+12899,Passion_play,a play representing the Passion of Christ
+12900,Passover Pesach Pesah Feast_of_the_Unleavened_Bread,(Judaism) a Jewish festival (traditionally 8 days from Nissan 15) celebrating the exodus of the Israelites from Egypt
+12901,Pasternak Boris_Pasternak Boris_Leonidovich_Pasternak,Russian writer whose best known novel was banned by Soviet authorities but translated and published abroad (1890-1960)
+12902,Pasteur Louis_Pasteur,French chemist and biologist whose discovery that fermentation is caused by microorganisms resulted in the process of pasteurization (1822-1895)
+12903,Pastinaca genus_Pastinaca,a rosid dicot genus of the family Umbelliferae; includes parsnips
+12904,Pastor subgenus_Pastor,only the rose-colored starlings; in some classifications considered a separate genus
+12905,Patagonia,region in southern South America between the Andes and the South Atlantic
+12906,Patagonian_Desert,a semiarid region in southern South America
+12907,Patella genus_Patella,type genus of the family Patellidae: common European limpets
+12908,Patellidae family_Patellidae,marine limpets
+12909,Patent_and_Trademark_Office_Database Patent_Office,the government bureau in the Department of Commerce that keeps a record of patents and trademarks and grants new ones
+12910,Paternoster,(Roman Catholic Church) the Lord's Prayer in Latin; translates as `our father'
+12911,Paterson,a city of northeastern New Jersey
+12912,Paterson William_Patterson,American Revolutionary leader (born in Ireland) who was a member of the Constitutional Convention (1745-1806)
+12913,Pathan Pashtun,an ethnic minority speaking Pashto and living in northwestern Pakistan and southeastern Afghanistan
+12914,Pathan Pashtun Pushtun Pashtoon,a member of the mountain people living in the eastern regions of Afghanistan; "Pathans are the predominant ethnic group in Afghanistan"
+12915,Paton Alan_Paton Alan_Stewart_Paton,South African writer (1903-1988)
+12916,Patras Patrai,a port city in western Greece in the northwestern Peloponnese on an inlet of the Ionian Sea; was a major trade center from the 5th century BC to the 3rd century BC; commercial importance revived during the Middle Ages
+12917,Patrick Saint_Patrick St._Patrick,Apostle and patron saint of Ireland; an English missionary to Ireland in the 5th century
+12918,Patriot's_Day,the 3rd Monday in April; Massachusetts and Maine celebrate the battle of Lexington and Concord in 1775
+12919,Patroclus,(Greek mythology) a friend of Achilles who was killed in the Trojan War; his death led Achilles to return to the fight after his quarrel with Agamemnon
+12920,Patwin,a member of the North American Indian people living in the Sacramento valley in California
+12921,Patwin,a Copehan language spoken by the Patwin
+12922,Paul Alice_Paul,United States feminist (1885-1977)
+12923,Paul Saint_Paul St._Paul Apostle_Paul Paul_the_Apostle Apostle_of_the_Gentiles Saul Saul_of_Tarsus,(New Testament) a Christian missionary to the Gentiles; author of several Epistles in the New Testament; even though Paul was not present at the Last Supper he is considered an Apostle; "Paul's name was Saul prior to his conversion to Christianity"
+12924,Paul_III Alessandro_Farnese,Italian pope from 1534 to 1549 who excommunicated Henry VIII of England in 1538 and initiated the Council of Trent in 1545; was active in the Counter Reformation and promoted the Society of Jesus for this purpose (1468-1549)
+12925,Paul_VI Giovanni_Battista_Montini,Italian pope from 1963 to 1978 who eased restrictions on fasting and on interfaith marriages (1897-1978)
+12926,Pauli Wolfgang_Pauli,United States physicist (born in Austria) who proposed the exclusion principle (thus providing a theoretical basis for the periodic table) (1900-1958)
+12927,Pauli_exclusion_principle exclusion_principle,no two electrons or protons or neutrons in a given system can be in states characterized by the same set of quantum numbers
+12928,Pauling Linus_Pauling Linus_Carl_Pauling,United States chemist who studied the nature of chemical bonding (1901-1994)
+12929,Paulo_Afonso Paulo_Afonso_Falls,a major waterfall in northeastern Brazil
+12930,Pauropoda class_Pauropoda,an obscure class of minute arthropods with branched antennae and 8 to 10 pairs of legs
+12931,Pavarotti Luciano_Pavarotti,Italian tenor (born in 1935)
+12932,Pavlov Ivan_Pavlov Ivan_Petrovich_Pavlov,Russian physiologist who observed conditioned salivary responses in dogs (1849-1936)
+12933,Pavlova Anna_Pavlova,Russian ballerina (1882-1931)
+12934,Pavo,a small constellation near the South Pole between Tucana and Ara
+12935,Pavo genus_Pavo,peafowl
+12936,Pawnee,a member of the Pawnee nation formerly living in Nebraska and Kansas but now largely in Oklahoma
+12937,Pawnee,the Caddoan language spoken by the Pawnee
+12938,Pax_Romana,the Roman peace; the long period of peace enforced on states in the Roman Empire
+12939,Paxton Joseph_Paxton Sir_Joseph_Paxton,English architect (1801-1865)
+12940,Payena genus_Payena,genus of medium to large Malaysian trees yielding gutta-percha
+12941,Payne's_grey Payne's_gray,any pigment that produces a greyish to dark greyish blue
+12942,Pays_de_la_Loire,an agricultural region of western France on the Bay of Biscay
+12943,Peabody Elizabeth_Peabody Elizabeth_Palmer_Peabody,educator who founded the first kindergarten in the United States (1804-1894)
+12944,Peace_Corps,a civilian organization sponsored by the United States government; helps people in developing countries
+12945,Peace_of_Westphalia,the peace treaty that ended the Thirty Years' War in 1648
+12946,Pearl_Harbor,a harbor on Oahu to the west of Honolulu; location of a United States naval base that was attacked by the Japanese on 7 Dec 1941
+12947,Pearl_River,a river in Mississippi that flows southward to the Gulf of Mexico
+12948,Pearmain,any of several varieties of apples with red skins
+12949,Peary Robert_Peary Robert_E._Peary Robert_Edwin_Peary,United States Arctic explorer and United States naval officer who has been regarded as the first man to reach the North Pole (1856-1920)
+12950,Peasant's_Revolt Great_Revolt,a widespread rebellion in 1381 against poll taxes and other inequities that oppressed the poorer people of England; suppressed by Richard II
+12951,Pecos Pecos_River,a tributary of the Rio Grande that flows southeastward from New Mexico through western Texas
+12952,Pectinibranchia order_Pectinibranchia,large order of gastropods comprising univalve mollusks that have a single gill resembling a comb
+12953,Pectinidae family_Pectinidae,scallops
+12954,Pedaliaceae family_Pedaliaceae sesame_family,the family of plants of order Polemoniales
+12955,Pediculati order_Pediculati,anglers and batfishes; spiny-finned marine fishes having pectoral fins at the ends of armlike processes and a long movable spine on the dorsal fin to lure prey to the large mouth
+12956,Pediculidae family_Pediculidae,true lice: human lice and related forms
+12957,Pediculus genus_Pediculus,type genus of Pediculidae: true lice infecting humans
+12958,Pedilanthus genus_Pedilanthus,tropical American succulent shrubs
+12959,Pediocactus genus_Pediocactus,low-growing cacti of the Great Plains of North America
+12960,Pedioecetes genus_Pedioecetes,sharp-tailed grouse
+12961,Pedionomus genus_Pedionomus,plain wanderer
+12962,Pedipalpi order_Pedipalpi Uropygi order_Uropygi,whip scorpions
+12963,Pee_Dee Pee_Dee_River,a river that flows through central North Carolina and northeastern South Carolina to the Atlantic Ocean
+12964,Peel Robert_Peel Sir_Robert_Peel,British politician (1788-1850)
+12965,Pegasus,(Greek mythology) the immortal winged horse that sprang from the blood of the slain Medusa; was tamed by Bellerophon with the help of a bridle given him by Athena; as the flying horse of the Muses it is a symbol of highflying imagination
+12966,Pegasus,a constellation in the northern hemisphere near Andromeda and Pisces
+12967,Pei I._M._Pei Ieoh_Ming_Pei,United States architect (born in China in 1917)
+12968,Peirce Benjamin_Peirce,United States mathematician and astronomer remembered for his studies of Uranus and Saturn and Neptune (1809-1880)
+12969,Peirce Charles_Peirce Charles_Sanders_Peirce,United States philosopher and logician; pioneer of pragmatism (1839-1914)
+12970,Pekinese Pekingese Peke,a Chinese breed of small short-legged dogs with a long silky coat and broad flat muzzle
+12971,Peking_man,fossils found near Beijing, China; they were lost during World War II
+12972,Pelagianism,the theological doctrine put forward by Pelagius which denied original sin and affirmed the ability of humans to be righteous; condemned as heresy by the Council of Ephesus in 431
+12973,Pelagius,a British or Irish monk who denied the doctrines of original sin and predestination and defended human goodness and free will; his views were declared heretical by the Council of Ephesus in 431 (circa 360-418)
+12974,Pelargonium genus_Pelargonium,geraniums native chiefly to South Africa; widely cultivated
+12975,Pelecanidae family_Pelecanidae,pelicans
+12976,Pelecaniformes order_Pelecaniformes,pelicans; frigate birds; gannets; cormorants
+12977,Pelecanoididae family_Pelecanoididae,diving petrels
+12978,Pelecanus genus_Pelecanus,type genus of the Pelecanidae
+12979,Peleus,a king of the Myrmidons and father of Achilles
+12980,Pelham,a bit with a bar mouthpiece that is designed to combine a curb and snaffle
+12981,Pellaea genus_Pellaea,genus of chiefly small rock-loving ferns; in some classification systems it is placed in the family Polypodiaceae or Adiantaceae
+12982,Pellicularia genus_Pellicularia,genus of fungi having the hymenium in the form of a crust; some species formerly placed in form genus Rhizoctinia
+12983,Pelobatidae family_Pelobatidae,the amphibian family of spadefoot toads
+12984,Peloponnese Peloponnesus Peloponnesian_Peninsula,the southern peninsula of Greece; dominated by Sparta until the 4th century BC
+12985,Peloponnesian_War,a war in which Athens and its allies were defeated by the league centered on Sparta; 431-404 BC
+12986,Peltandra genus_Peltandra,small genus of North American marsh or aquatic herbs
+12987,Pelycosauria order_Pelycosauria,edaphosaurus; dimetrodon
+12988,Pembroke Pembroke_Welsh_corgi,the smaller and straight-legged variety of corgi having pointed ears and a short tail
+12989,Pempheridae family_Pempheridae,sweepers
+12990,Penang,the second smallest Malaysian state; located on the northwest coast of Peninsular Malaysia
+12991,Peneidae family_Peneidae,tropical prawns
+12992,Penelope,(Greek mythology) the wife of Odysseus and a symbol of devotion and fidelity; for 10 years while Odysseus fought the Trojan War she resisted numerous suitors until Odysseus returned and killed them
+12993,Penelope genus_Penelope,a genus of guans (turkey-like arboreal birds valued as game and food birds)
+12994,Peneus genus_Peneus,type genus of the family Peneidae
+12995,Pengo,a Dravidian language spoken in south central India
+12996,Penicillium genus_Penicillium,genus of fungi commonly growing as green or blue molds on decaying food; used in making cheese and as a source of penicillin
+12997,Penn William_Penn,Englishman and Quaker who founded the colony of Pennsylvania (1644-1718)
+12998,Pennatula genus_Pennatula,type genus of the family Pennatulidae: sea pens
+12999,Pennatulidae family_Pennatulidae,sea pens
+13000,Pennines Pennine_Chain,a system of hills in Britain that extend from the Scottish border in the north to the Trent River in the south; forms the watershed for English rivers
+13001,Pennisetum genus_Pennisetum,a genus of Old World grasses
+13002,Pennsylvania,one of the British colonies that formed the United States
+13003,Pennsylvania Keystone_State PA Pa.,a Mid-Atlantic state; one of the original 13 colonies
+13004,Pennsylvania_Dutch,a dialect of High German spoken in parts of Pennsylvania and Maryland
+13005,Pennsylvanian Keystone_Stater,a native or resident of Pennsylvania
+13006,Pennsylvanian Pennsylvanian_period Upper_Carboniferous Upper_Carboniferous_period,from 310 million to 280 million years ago; warm climate; swampy land
+13007,Penobscot,a member of the Algonquian people belonging to the Abnaki confederacy and living in the Penobscot valley in northern Maine
+13008,Penobscot Penobscot_River,a river in central Maine flowing into Penobscot Bay
+13009,Penobscot_Bay,an inlet of the Atlantic in eastern Maine
+13010,Pensacola,a town in extreme northwest Florida
+13011,Penstemon genus_Penstemon,large genus of subshrubs or herbs having showy blue or purple or red or yellow or white flowers; mostly western North America
+13012,Pentagon,the United States military establishment
+13013,Pentagon,a government building with five sides that serves as the headquarters of the United States Department of Defense
+13014,Pentagon_Gang,a Filipino terrorist group that broke away from the Moro Islamic Liberation Front in 2001 in order to continue terrorism and kidnapping and extortion
+13015,Pentastomida subphylum_Pentastomida,tongue worms
+13016,Pentecost Whitsunday,seventh Sunday after Easter; commemorates the emanation of the Holy Spirit to the Apostles; a quarter day in Scotland
+13017,Pentecostal Pentecostalist,any member of a Pentecostal religious body
+13018,Pentecostal_religion,any fundamentalist Protestant Church that uses revivalistic methods to achieve experiences comparable to the Pentecostal experiences of the first Christian disciples
+13019,Penutian,a member of a North American Indian people speaking one of the Penutian languages
+13020,Penutian,a family of Amerindian language spoken in the great interior valley of California
+13021,People's_Party Populist_Party,a former political party in the United States; formed in 1891 to advocate currency expansion and state control of railroads
+13022,People_against_Gangsterism_and_Drugs PAGAD,a terrorist organization in South Africa formed in 1996 to fight drug lords; evolved into a vigilante group with anti-western views closely allied with Qibla; is believed to have ties to Islamic extremists in the Middle East; is suspected of conducting bouts of urban terrorism
+13023,Peoria,a city in central Illinois on the Illinois River
+13024,Pepin Pepin_III Pepin_the_Short,king of the Franks and father of Charlemagne who defended papal interests and founded the Carolingian dynasty in 751 (714-768)
+13025,Pepsi Pepsi_Cola,Pepsi Cola is a trademarked cola
+13026,Pepto-bismal,an antacid
+13027,Pepys Samuel_Pepys,English diarist whose diary contained detailed descriptions of 17th century disasters in England (1633-1703)
+13028,Perak,sultanate and one of the 13 states that constitute the Federation of Malaysia
+13029,Peramelidae family_Peramelidae,bandicoots
+13030,Perca genus_Perca,type genus of the Percidae
+13031,Percheron,one of a breed of grey or black draft horses originally used in France to draw heavy coaches or artillery
+13032,Percidae family_Percidae,active freshwater fishes; true perches and pike perches
+13033,Perciformes order_Perciformes Percomorphi order_Percomorphi,one of the largest natural groups of fishes of both marine and fresh water: true perches; basses; tuna
+13034,Percina genus_Percina,a genus of Percidae
+13035,Percoidea suborder_Percoidea,in some classifications nearly or exactly equivalent to the Perciformes which are considered a suborder
+13036,Percophidae family_Percophidae,percoid flatheads
+13037,Percy Sir_Henry_Percy Hotspur Harry_Hotspur,English soldier killed in a rebellion against Henry IV (1364-1403)
+13038,Percy Walker_Percy,United States writer whose novels explored human alienation (1916-1990)
+13039,Perdicidae subfamily_Perdicidae Perdicinae subfamily_Perdicinae,Old World partridges
+13040,Perdix genus_Perdix,a genus of Perdicinae
+13041,Perejil,a small uninhabited Mediterranean islet claimed by both Morocco and Spain
+13042,Pereskia genus_Pereskia Peireskia genus_Peireskia,genus of tropical American shrubby trees and woody climbers having slender branches with broad flat leaves and large panicles of flowers
+13043,Pergamum,an ancient Greek city located in the western part of what is now modern Turkey; the technique of preparing sheepskins as parchment was developed here
+13044,Pericallis genus_Pericallis,cineraria
+13045,Pericles,Athenian statesman whose leadership contributed to Athens' political and cultural supremacy in Greece; he ordered the construction of the Parthenon (died in 429 BC)
+13046,Peridiniidae family_Peridiniidae,marine and freshwater dinoflagellates
+13047,Peridinium genus_Peridinium,type genus of the family Peridiniidae
+13048,Perilla genus_Perilla,small genus of Asiatic herbs
+13049,Periophthalmus genus_Periophthalmus,a genus of Gobiidae
+13050,Peripatidae family_Peripatidae,a family of Onychophora
+13051,Peripatopsidae family_Peripatopsidae,a family of Onychophora
+13052,Peripatopsis genus_Peripatopsis,type genus of Peripatopsidae; onychophorans of chiefly Asiatic and African tropical regions
+13053,Periplaneta genus_Periplaneta,cosmopolitan genus of large cockroaches
+13054,Periploca genus_Periploca,genus of woody vines of warm regions of the Old World
+13055,Perisoreus genus_Perisoreus,Canada jays
+13056,Perissodactyla order_Perissodactyla,nonruminant ungulates: horses; tapirs; rhinoceros; extinct forms
+13057,Peristediinae subfamily_Peristediinae,in some classifications considered a subfamily of Triglidae comprising the armored searobins
+13058,Peristedion genus_Peristedion,in some classifications the type genus of the subfamily Peristediinae: armored sea robins
+13059,Perlis,the smallest Malaysian state; located at the northern part of the west coast of Peninsular Malaysia
+13060,Perm Molotov,a city in the European part of Russia
+13061,Permalloy,an 80/20 alloy of nickel and iron; easily magnetized and demagnetized
+13062,Permian Permian_period,from 280 million to 230 million years ago; reptiles
+13063,Permic,a group of Finnic languages spoken in the northwest Urals
+13064,Pernis genus_Pernis,a common European bird of prey; dull brown with white-streaked underparts
+13065,Pernod,(registered trademark) a liqueur flavored with anise
+13066,Perodicticus genus_Perodicticus,a genus of Lorisidae
+13067,Perognathus genus_Perognathus,pocket mice
+13068,Peromyscus genus_Peromyscus,New World wood mice
+13069,Peron Juan_Domingo_Peron,Argentine soldier who became president of Argentina (1895-1974)
+13070,Peronospora genus_Peronospora,genus of destructive downy mildews
+13071,Peronosporaceae family_Peronosporaceae,parasitic fungi: downy mildews
+13072,Peronosporales order_Peronosporales,order of chiefly parasitic lower fungi: Albuginaceae and Peronosporaceae and Pythiaceae
+13073,Perry Matthew_Calbraith_Perry,United States admiral who led a naval expedition to Japan and signed a treaty in 1854 opening up trade relations between United States and Japan; brother of Oliver Hazard Perry (1794-1858)
+13074,Perry Oliver_Hazard_Perry Commodore_Perry,United States commodore who led the fleet that defeated the British on Lake Erie during the War of 1812; brother of Matthew Calbraith Perry (1785-1819)
+13075,Perry Ralph_Barton_Perry,United States philosopher (1876-1957)
+13076,Perry_Mason,fictional detective in novels by Erle Stanley Gardner
+13077,Persea genus_Persea,avocado
+13078,Persephone Despoina Kore Cora,(Greek mythology) daughter of Zeus and Demeter; made queen of the underworld by Pluto in ancient mythology; identified with Roman Proserpina
+13079,Persepolis,an ancient city that was the capital of the ancient Persian Empire; now in ruins
+13080,Perseus,(Greek mythology) the son of Zeus who slew Medusa (with the help of Athena and Hermes) and rescued Andromeda from a sea monster
+13081,Perseus,a conspicuous constellation in the northern hemisphere; between Auriga and Cassiopeia and crossed by the Milky Way
+13082,Pershing John_Joseph_Pershing Black_Jack_Pershing,United States general who commanded the American forces in Europe during World War I (1860-1948)
+13083,Persia Persian_Empire,an empire in southern Asia created by Cyrus the Great in the 6th century BC and destroyed by Alexander the Great in the 4th century BC
+13084,Persian Farsi,the language of Persia (Iran) in any of its ancient forms
+13085,Persian_Gulf Arabian_Gulf,a shallow arm of the Arabian Sea between Iran and the Arabian peninsula; the Persian Gulf oil fields are among the most productive in the world
+13086,Persian_Gulf_War Gulf_War,a war fought between Iraq and a coalition led by the United States that freed Kuwait from Iraqi invaders; 1990-1991
+13087,Persian_cat,a long-haired breed of cat
+13088,Persian_deity,a deity worshiped by the ancient Persians
+13089,Persian_iris Iris_persica,bulbous iris native to Asia Minor cultivated for its pale lilac-colored flowers
+13090,Persian_lamb,the fur of a karakul lamb
+13091,Persian_lamb,a karakul lamb
+13092,Persian_lilac Syringa_persica,small densely branching Asiatic shrub having lanceolate leaves and panicles of fragrant lilac flowers
+13093,Persian_melon,the fruit of a variety of winter melon vine; a large green melon with orange flesh
+13094,Persian_violet Exacum_affine,perennial cultivated especially as a houseplant for its fragrant bluish to dark lavender flowers
+13095,Persoonia genus_Persoonia,Australian undershrubs to small trees: geebungs
+13096,Perth,the state capital of Western Australia
+13097,Pertusaria genus_Pertusaria,crustose lichens that are a source of the dye archil and of litmus
+13098,Pertusariaceae family_Pertusariaceae,a fungus family of division Lichenes
+13099,Peru Republic_of_Peru,a republic in western South America; achieved independence from Spain in 1821; was the heart of the Inca empire from the 12th to 16th centuries
+13100,Perutz Max_Perutz Max_Ferdinand_Perutz,English biochemist (born in Austria); studied the molecular structure of blood (1914-2002)
+13101,Peruvian,a native or inhabitant of Peru
+13102,Peruvian_balsam Myroxylon_pereirae Myroxylon_balsamum_pereirae,tree of South and Central America yielding an aromatic balsam
+13103,Peruvian_cotton Gossypium_peruvianum,cotton with long rough hairy fibers
+13104,Peruvian_current Humboldt_current,a cold ocean current that flows north along the Pacific Coast of South America before turning west
+13105,Peruvian_lily lily_of_the_Incas Alstroemeria_pelegrina,an Andean herb having umbels of showy pinkish-purple lily-like flowers
+13106,Peruvian_monetary_unit,monetary unit in Peru
+13107,Pesh_Merga,a Kurdish guerrilla force in Iraqi Kurdistan
+13108,Peshawar,city in northern Pakistan at the eastern end of the Khyber Pass
+13109,Petasites genus_Petasites,genus of rhizomatous herbs of north temperate regions: butterbur; sweet coltsfoot
+13110,Petaurista genus_Petaurista,very large Asiatic flying squirrels
+13111,Petauristidae subfamily_Petauristidae,Old World flying squirrels
+13112,Petaurus genus_Petaurus,a genus of Phalangeridae
+13113,Peter Simon_Peter Saint_Peter St._Peter Saint_Peter_the_Apostle St._Peter_the_Apostle,disciple of Jesus and leader of the Apostles; regarded by Catholics as the vicar of Christ on earth and first Pope
+13114,Peter_I Czar_Peter_I Peter_the_Great,czar of Russia who introduced ideas from western Europe to reform the government; he extended his territories in the Baltic and founded St. Petersburg (1682-1725)
+13115,Peter_Pan,a boyish or immature man; after the boy in Barrie's play who never grows up
+13116,Peter_Pan,the main character in a play and novel by J. M. Barrie; a boy who won't grow up
+13117,Peter_Pan_collar,a flat collar with rounded ends that meet in front
+13118,Petersburg,a town in southeastern Virginia (south of Richmond); scene of heavy fighting during the American Civil War
+13119,Petersburg Petersburg_Campaign,the final campaign of the American Civil War (1864-65); Union forces under Grant besieged and finally defeated Confederate forces under Lee
+13120,Petrarch Petrarca Francesco_Petrarca,an Italian poet famous for love lyrics (1304-1374)
+13121,Petrarchan_sonnet Italian_sonnet,a sonnet consisting of an octave with the rhyme pattern abbaabba, followed by a sestet with the rhyme pattern cdecde or cdcdcd
+13122,Petri_dish,a shallow dish used to culture bacteria
+13123,Petrified_Forest_National_Park,a national park in Arizona having the world's largest collection of petrified coniferous trees
+13124,Petrocoptis genus_Petrocoptis,perennial tussock-forming rock plants; of Pyrenees and mountains of northern Spain; similar to and sometimes placed in genus Lychnis
+13125,Petrogale genus_Petrogale,rock wallabies
+13126,Petromyzon genus_Petromyzon,typical lampreys
+13127,Petromyzoniformes suborder_Petromyzoniformes Hyperoartia suborder_Hyperoartia,lampreys as distinguished from hagfishes
+13128,Petromyzontidae family_Petromyzontidae,lampreys
+13129,Petronas_Towers,twin skyscrapers built in Kuala Lumpur in 1997; 1482 feet high
+13130,Petronius Gaius_Petronius Petronius_Arbiter,Roman satirist (died in 66)
+13131,Petroselinum genus_Petroselinum,parsley
+13132,Petteria genus_Petteria,one species: Dalmatian laburnum
+13133,Peyer's_patch Peter's_gland,any of several lymph nodes in the walls of the intestines near the junction of the ileum and colon
+13134,Peziza genus_Peziza,type genus of the Pezizaceae: a variety of cup fungus
+13135,Peziza_domicilina,a discomycetous fungus of the genus Peziza; the fragile fruiting body is a ghostly white but stains yellow when broken; favors strongly alkaline habitats
+13136,Pezizaceae family_Pezizaceae,large family comprising many typical cup fungi
+13137,Pezizales order_Pezizales,order of mostly saprophytic fungi having cup-shaped ascocarps
+13138,Pezophaps genus_Pezophaps,constituted by the extinct solitaire
+13139,Ph.D. PhD,a doctorate usually based on at least 3 years graduate study and a dissertation; the highest degree awarded graduate study
+13140,Phacochoerus genus_Phacochoerus,warthogs
+13141,Phaeophyceae class_Phaeophyceae,brown algae; mostly marine and littoral eukaryotic algae
+13142,Phaeophyta division_Phaeophyta,coextensive with class Phaeophyceae; in some classifications subsumed in the division Heterokontophyta
+13143,Phaethon,(Greek mythology) son of Helios; killed when trying to drive his father's chariot and came too close to earth
+13144,Phaethon genus_Phaethon,type genus of the Phaethontidae
+13145,Phaethontidae family_Phaethontidae,tropicbirds
+13146,Phagun Phalguna,the twelfth month of the Hindu calendar
+13147,Phalacrocoracidae family_Phalacrocoracidae,cormorants
+13148,Phalacrocorax genus_Phalacrocorax,type genus: coextensive with the family Phalacrocoracidae
+13149,Phalaenopsis genus_Phalaenopsis,genus of ornamental epiphytic orchids of Asia and Australia
+13150,Phalaenoptilus genus_Phalaenoptilus,a genus of Caprimulgidae
+13151,Phalangeridae family_Phalangeridae,phalangers; koalas
+13152,Phalangida order_Phalangida Opiliones order_Opiliones,harvestmen
+13153,Phalangiidae family_Phalangiidae,a family of Phalangida
+13154,Phalangium genus_Phalangium,type genus of the family Phalangiidae
+13155,Phalaris genus_Phalaris,a genus of grasses with broad leaves and a dense spike of flowers
+13156,Phalaropidae family_Phalaropidae,phalaropes
+13157,Phalaropus genus_Phalaropus,type genus of the Phalaropidae: phalaropes
+13158,Phallaceae family_Phallaceae,a family of fungi belonging to the order Phallales and comprising the true stinkhorns
+13159,Phallales order_Phallales,order of fungi comprising the stinkhorns and related forms whose mature hymenium is slimy and fetid; sometimes placed in subclass Homobasidiomycetes
+13160,Phallus genus_Phallus,genus of fungi having the cap or pileus hanging free around the stem
+13161,Phallus_ravenelii,this stinkhorn has a cap with a granulose surface at the apex and smells like decaying flesh
+13162,Phanerogamae,in former classification systems: one of two major plant divisions, including all seed-bearing plants; superseded by the division Spermatophyta
+13163,Phanerozoic Phanerozoic_eon Phanerozoic_aeon,the period from about 540 million years ago until the present, a period when abundant life existed
+13164,Pharaoh Pharaoh_of_Egypt,the title of the ancient Egyptian kings
+13165,Pharisee,a member of an ancient Jewish sect noted for strict obedience to Jewish traditions
+13166,Pharomacrus genus_Pharomacrus,a genus of Trogonidae
+13167,Pharsalus battle_of_Pharsalus,Caesar defeated Pompey in 48 BC
+13168,Phascogale genus_Phascogale,pouched mice
+13169,Phascolarctos genus_Phascolarctos,koalas
+13170,Phaseolus genus_Phaseolus,herbs of warm regions including most American beans
+13171,Phasianidae family_Phasianidae,pheasants; quails; partridges
+13172,Phasianus genus_Phasianus,type genus of the Phasianidae: the typical pheasants
+13173,Phasmida order_Phasmida Phasmatodea order_Phasmatodea,in some classifications considered a suborder of Orthoptera: stick insects; leaf insects
+13174,Phasmidae family_Phasmidae Phasmatidae family_Phasmatidae,stick insects
+13175,Phasmidia class_Phasmidia,one of two subgroups of Nematoda used in some classification systems
+13176,Phegopteris genus_Phegopteris,beech ferns: genus is variously classified: considered alternative name for genus Dryopteris or included in genus Thelypteris
+13177,Phellodendron genus_Phellodendron,small genus of aromatic deciduous trees of east Asia often having thick corky bark
+13178,Phidias Pheidias,ancient Greek sculptor (circa 500-432 BC)
+13179,Philadelphaceae subfamily_Philadelphaceae,one genus; usually included in family Hydrangeaceae
+13180,Philadelphia City_of_Brotherly_Love,the largest city in Pennsylvania; located in the southeastern part of the state on the Delaware river; site of Independence Hall where the Declaration of Independence and the Constitution were signed; site of the University of Pennsylvania
+13181,Philadelphia_fleabane Erigeron_philadelphicus,especially pretty plant having a delicate fringe of threadlike rays around flower heads having very slender white or pink rays; United States and Canada
+13182,Philaenus genus_Philaenus,a genus of Cercopidae
+13183,Philemon,(Greek mythology) a simple countryman who offered hospitality to Zeus and Hermes when they came to earth without revealing their identities in order to test people's piety
+13184,Philemon,(New Testament) a Christian (probably living in Colossae) whose slave escaped and went to see Saint Paul
+13185,Philip Prince_Philip Duke_of_Edinburgh,Englishman and husband of Elizabeth II (born 1921)
+13186,Philip_II Philip_Augustus,son of Louis VII whose reign as king of France saw wars with the English that regained control of Normandy and Anjou and most of Poitou (1165-1223)
+13187,Philip_II Philip_II_of_Macedon,king of ancient Macedonia and father of Alexander the Great (382-336 BC)
+13188,Philip_II Philip_II_of_Spain,king of Spain and Portugal and husband of Mary I; he supported the Counter Reformation and sent the Spanish Armada to invade England (1527-1598)
+13189,Philip_V,king of ancient Macedonia whose confrontations with the Romans led to his defeat and his loss of control over Greece
+13190,Philip_VI Philip_of_Valois,king of France who founded the Valois dynasty; his dispute with Edward III over his succession led to the Hundred Years' War (1293-1350)
+13191,Philippi,a city in ancient Macedonia that was important in early Christianity
+13192,Philippi battle_of_Philippi,Octavian and Mark Antony defeated Brutus and Cassius in 42 BC
+13193,Philippian,a native or inhabitant of Philippi in ancient Macedonia
+13194,Philippine Filipino,official language of the Philippines; based on Tagalog; draws its lexicon from other Philippine languages
+13195,Philippine_Sea battle_of_the_Philippine_Sea,a naval battle in World War II (1944); a decisive naval victory for the United States fleet over the Japanese who were trying to block supplies from reaching American troops on Leyte
+13196,Philippine_mahogany,red hardwood of the Philippine mahogany tree used for cigar boxes and interior finish
+13197,Philippine_mahogany Philippine_cedar kalantas Toona_calantas Cedrela_calantas,Philippine timber tree having hard red fragrant wood
+13198,Philippine_monetary_unit,monetary unit in the Philippines
+13199,Philippine_peso peso,the basic unit of money in the Philippines; equal to 100 centavos
+13200,Philippines Philippine_Islands,an archipelago in the southwestern Pacific including some 7000 islands
+13201,Philippines Republic_of_the_Philippines,a republic on the Philippine Islands; achieved independence from the United States in 1946
+13202,Philistia,an ancient region on the coast of southwestern Palestine that was strategically located on a trade route between Syria and Egypt; important in biblical times
+13203,Philistine,a member of an Aegean people who settled ancient Philistia around the 12th century BC
+13204,Phillips_screw,a screw with a special head having crossed slots
+13205,Phillips_screwdriver,a screwdriver for use with Phillips screws
+13206,Phillyrea genus_Phillyrea,small genus of evergreen shrubs of the Mediterranean region
+13207,Philohela genus_Philohela,American woodcocks
+13208,Philomachus genus_Philomachus,ruffs
+13209,Philophylla genus_Philophylla,leaf miners
+13210,Phintias Pythias,friend of Damon; Phintias (according to legend) was condemned to death by Dionysius the Elder and asked a respite to put his affairs in order; Damon pledged his life for the return of his friend; when Phintias returned in time the tyrant released them both (4th century BC)
+13211,Phlebodium genus_Phlebodium,chiefly epiphytic tropical ferns with free veins bearing sori
+13212,Phlebotomus genus_Phlebotomus,small bloodsucking sand flies that resemble moths
+13213,Phleum genus_Phleum,grasses native to temperate regions
+13214,Phnom_Penh Pnom_Penh Cambodian_capital,the capital and largest city of Kampuchea
+13215,Phobos,the larger of the two satellites of Mars
+13216,Phoca genus_Phoca,type genus of the Phocidae: earless seals
+13217,Phocidae family_Phocidae,earless seals
+13218,Phocoena genus_Phocoena,porpoises
+13219,Phoebe,(Greek mythology) a Titaness who became identified with Artemis as goddess of the Moon
+13220,Phoenicia Phenicia,an ancient maritime country (a collection of city states) at eastern end of the Mediterranean
+13221,Phoenician,a member of an ancient Semitic people who dominated trade in the first millennium B.C.
+13222,Phoenician,the extinct language of an ancient Semitic people who dominated trade in the ancient world
+13223,Phoenicopteridae family_Phoenicopteridae,flamingos
+13224,Phoeniculidae family_Phoeniculidae,wood hoopoes
+13225,Phoeniculus genus_Phoeniculus,type and only genus of the family Phoeniculidae
+13226,Phoenicurus genus_Phoenicurus,Old World thrushes
+13227,Phoenix,a constellation in the southern hemisphere near Tucana and Sculptor
+13228,Phoenix capital_of_Arizona,the state capital and largest city located in south central Arizona; situated in a former desert that has become a prosperous agricultural area thanks to irrigation
+13229,Pholadidae family_Pholadidae,a family of Bivalvia
+13230,Pholas genus_Pholas,type genus of the family Pholadidae: piddocks
+13231,Pholidae family_Pholidae family_Pholididae,a family of fish of suborder Blennioidea
+13232,Pholidota genus_Pholidota,genus of mostly epiphytic orchids of Indonesia and the western Pacific
+13233,Pholidota order_Pholidota,pangolins; in some former classifications included in the order Edentata
+13234,Pholiota genus_Pholiota,genus of gilled agarics of Europe and North America having brown spores and an annulus; grows on open ground or decaying wood
+13235,Pholiota_astragalina,a fungus with a smooth orange cap and yellow gills and pale yellow stalk
+13236,Pholiota_aurea golden_pholiota,a beautiful yellow gilled fungus found from Alaska south along the coast
+13237,Pholiota_destruens,a large fungus with whitish scales on the cap and remnants of the veil hanging from the cap; the stalk is thick and hard
+13238,Pholiota_flammans,a fungus with a yellow cap covered with fine scales as is the stalk
+13239,Pholiota_flavida,a fungus that grows in clusters on the ground; cap is brownish orange with a surface that is smooth and slightly sticky; whitish gills and a cylindrical brown stalk
+13240,Pholiota_squarrosa scaly_pholiota,a gilled fungus with a cap and stalk that are conspicuously scaly with upright scales; gills develop a greenish tinge with age
+13241,Pholiota_squarrosa-adiposa,a gilled fungus having yellow slimy caps with conspicuous tawny scales on the caps and stalks
+13242,Pholiota_squarrosoides,a pale buff fungus with tawny scales
+13243,Pholis genus_Pholis,type genus of the Pholidae: gunnels
+13244,Pholistoma genus_Pholistoma,straggling herbs of southwestern United States
+13245,Phoradendron genus_Phoradendron,any of various American parasitic plants similar to Old World mistletoe: false mistletoe
+13246,Phoronida Phoronidea phylum_Phoronida,small phylum of wormlike marine animals
+13247,Photinia genus_Photinia,genus of deciduous and evergreen east Asian trees and shrubs widely cultivated as ornamentals for their white flowers and red fruits; in some classifications includes genus Heteromeles
+13248,Photius,Patriarch of Constantinople and saint of the Greek Orthodox Church; was condemned by the Fourth Council of Constantinople in 869 but was reinstated by a later pope
+13249,Photoblepharon genus_Photoblepharon,a genus of fish in the family Anomalopidae
+13250,Photostat Photostat_machine,a duplicating machine that makes quick positive or negative copies directly on the surface of prepared paper
+13251,Phoxinus genus_Phoxinus,minnows
+13252,Phragmipedium genus_Phragmipedium,genus of tropical American orchid species often included in genus Cypripedium or Paphiopedilum and Selenipedium: lady slippers
+13253,Phragmites genus_Phragmites,reeds of marshes and riversides in tropical or temperate regions
+13254,Phrygia,an ancient country in western and central Asia Minor
+13255,Phrygian,a native or inhabitant of Phrygia
+13256,Phrygian,a Thraco-Phrygian language spoken by the ancient inhabitants of Phrygia and now extinct--preserved only in a few inscriptions
+13257,Phrygian_deity,deity of the ancient Phrygians of west central Asia Minor
+13258,Phrynosoma genus_Phrynosoma,horned lizards
+13259,Phthiriidae family_Phthiriidae,crab lice
+13260,Phthirius genus_Phthirius Phthirus genus_Phthirus,true lice: crab lice
+13261,Phthorimaea genus_Phthorimaea,potato moths
+13262,Phycomycetes Phycomycetes_group,a large and probably unnatural group of fungi and funguslike organisms comprising the Mastigomycota (including the Oomycetes) and Zygomycota subdivisions of the division Eumycota; a category not used in all systems
+13263,Phyllidae family_Phyllidae Phillidae family_Phillidae,leaf insects
+13264,Phyllitis genus_Phyllitis genus_Scolopendrium,a genus of ferns belonging to the family Polypodiaceae (in some classification systems included in genus Asplenium)
+13265,Phyllium genus_Phyllium,type genus of the Phyllidae
+13266,Phyllocladaceae family_Phyllocladaceae,a family of Phyllocladaceae
+13267,Phyllocladus genus_Phyllocladus,celery pine
+13268,Phyllodoce genus_Phyllodoce,small genus of evergreen Arctic and alpine shrubs
+13269,Phylloporus genus_Phylloporus,a genus of fungi belonging to the family Boletaceae
+13270,Phylloporus_boletinoides,a fungus with a broadly convex brown cap and pores that extend part way down the stalk
+13271,Phyllorhynchus genus_Phyllorhynchus,leaf-nosed snakes
+13272,Phylloscopus genus_Phylloscopus,warblers
+13273,Phyllostachys genus_Phyllostachys,medium and large bamboos
+13274,Phyllostomidae family_Phyllostomidae Phyllostomatidae family_Phyllostomatidae,New World leaf-nosed bats
+13275,Phyllostomus genus_Phyllostomus,type genus of the family Phyllostomatidae
+13276,Phyllostomus_hastatus,a variety of leaf-nosed bat
+13277,Phylloxera genus_Phylloxera,type genus of the Phylloxeridae: plant lice
+13278,Phylloxeridae family_Phylloxeridae,plant lice
+13279,Physalia genus_Physalia,Portuguese man-of-war
+13280,Physalis genus_Physalis,ground cherries
+13281,Physaria genus_Physaria,small genus of western North American herbs similar to Lesquerella: bladderpods
+13282,Physeter genus_Physeter,type genus of the Physeteridae
+13283,Physeteridae family_Physeteridae,sperm whales
+13284,Physidae family_Physidae,freshwater snails
+13285,Physostigma genus_Physostigma,African woody vines: calabar beans
+13286,Phytolacca genus_Phytolacca,type genus of Phytolaccaceae: pokeweed
+13287,Phytolaccaceae family_Phytolaccaceae pokeweed_family,chiefly tropical herbaceous plants (including shrubs and trees) with racemose flowers: genera Phytolacca, Agdestis, Ercilla, Rivina, Trichostigma
+13288,Phytomastigina subclass_Phytomastigina,plantlike flagellates containing chlorophyll; often considered unicellular algae
+13289,Phytophthora genus_Phytophthora,destructive parasitic fungi causing brown rot in plants
+13290,Phytophthora_citrophthora,causes brown rot gummosis in citrus fruits
+13291,Phytophthora_infestans,fungus causing late blight in solanaceous plants especially tomatoes and potatoes
+13292,Piaf Edith_Piaf Edith_Giovanna_Gassion Little_Sparrow,French cabaret singer (1915-1963)
+13293,Piaget Jean_Piaget,Swiss psychologist remembered for his studies of cognitive development in children (1896-1980)
+13294,Pica genus_Pica,magpies
+13295,Picardie Picardy,a region of northern France on the English Channel
+13296,Picariae order_Picariae,term used in some classifications as nearly equivalent to the order Coraciiformes
+13297,Picasso Pablo_Picasso,prolific and influential Spanish artist who lived in France (1881-1973)
+13298,Picea genus_Picea,a genus of temperate and Arctic evergreen trees (see spruce)
+13299,Picidae family_Picidae,woodpeckers
+13300,Piciformes order_Piciformes,woodpeckers; jacamars; puffbirds; barbets; honey guides; toucans
+13301,Pick's_disease,a progressive form of presenile dementia found most often in middle-aged and elderly women and characterized by degeneration of the frontal and temporal lobes with loss of intellectual ability and transitory aphasia
+13302,Pickeringia genus_Pickeringia,one species: chaparral pea
+13303,Pickett George_Edward_Pickett,American Confederate general known for leading a disastrous charge at Gettysburg (1825-1875)
+13304,Pickford Mary_Pickford Gladys_Smith,United States film actress (born in Canada) who starred in silent films (1893-1979)
+13305,Picoides genus_Picoides,a genus of Picidae
+13306,Picrasma genus_Picrasma,small genus of deciduous trees of tropical America and Asia
+13307,Picris genus_Picris,genus of weedy Old World yellow-flowered herbs usually containing a bitter-tasting substance: bitterweed
+13308,Pictor,a constellation in the southern hemisphere near Dorado and Columba
+13309,Picumnus genus_Picumnus,a genus of Picidae
+13310,Picus genus_Picus,type genus of Picidae
+13311,Pied_Piper Pied_Piper_of_Hamelin,the title character in a German folk tale and in a poem by Robert Browning
+13312,Piedmont,the plateau between the coastal plain and the Appalachian Mountains: parts of Virginia and North and South Carolina and Georgia and Alabama
+13313,Piedmont Piemonte,the region of northwestern Italy; includes the Po valley
+13314,Piedmont_glacier Piedmont_type_of_glacier,a type of glaciation characteristic of Alaska; large valley glaciers meet to form an almost stagnant sheet of ice
+13315,Pierce Franklin_Pierce President_Pierce,14th President of the United States (1804-1869)
+13316,Pieridae family_Pieridae,arthropod family including cabbage butterflies; sulphur butterflies
+13317,Pieris genus_Pieris,decorative evergreen shrubs of woody vines
+13318,Pieris genus_Pieris,type genus of the Pieridae
+13319,Pierre capital_of_South_Dakota,capital of the state of South Dakota; located in central South Dakota on the Missouri river
+13320,Pierre_Laporte_Bridge,a suspension bridge across the Saint Lawrence River at Quebec
+13321,Pierrot,a male character in French pantomime; usually dressed in white with a whitened face
+13322,Pietism,17th and 18th-century German movement in the Lutheran Church stressing personal piety and devotion
+13323,Pike's_Peak,a mountain peak in the Rockies in central Colorado (14,109 feet high)
+13324,Pilate Pontius_Pilate,the Roman procurator of Judea who ordered that Jesus be crucified (died in AD 36)
+13325,Pilea genus_Pilea,low-growing tropical perennials grown for their stingless foliage
+13326,Pilgrim Pilgrim_Father,one of the colonists from England who sailed to America on the Mayflower and founded the colony of Plymouth in New England in 1620
+13327,Pilgrim's_Progress,an allegory written by John Bunyan in 1678
+13328,Pillars_of_Hercules,the two promontories at the eastern end of the Strait of Gibraltar; according to legend they were formed by Hercules
+13329,Pilosella genus_Pilosella,genus of hairy perennial herbs with horizontal rhizomes and leafy or underground stolons; Eurasia and North Africa; often considered congeneric with Hieracium
+13330,Pilsen Plzen,a town in Czech Republic where Pilsner beer originated
+13331,Pilsner Pilsener,a pale lager with strong flavor of hops; first brewed in the Bohemian town of Pilsen
+13332,Piltdown_man Piltdown_hoax,a supposedly primitive man later proven to be a hoax
+13333,Pilularia genus_Pilularia,pillworts
+13334,Pima,a member of the North American Indian people living in southern Arizona and northern Mexico
+13335,Pima,the Uto-Aztecan language spoken by the Pima
+13336,Pimenta genus_Pimenta,allspice tree
+13337,Pimlico,a racetrack for thoroughbred racing; site of the Preakness
+13338,Pimpinella genus_Pimpinella,anise
+13339,Pinaceae family_Pinaceae pine_family,a family of Pinaceae
+13340,Pinatubo Mount_Pinatubo,a volcano on Luzon to the northwest of Manila; erupted in 1991 after 600 years of dormancy
+13341,Pinckneya genus_Pinckneya,small genus of shrubs or small trees of southeastern United States and northern South America
+13342,Pinctada genus_Pinctada,pearl oysters
+13343,Pincus Gregory_Pincus Gregory_Goodwin_Pincus,United States sexual physiologist whose hunch that progesterone could block ovulation led to the development of the oral contraceptive pill (1903-1967)
+13344,Pindar,Greek lyric poet remembered for his odes (518?-438? BC)
+13345,Pindaric_ode Pindaric,an ode form used by Pindar; has triple groups of triple units
+13346,Pine_Bluff,a town in southeast central Arkansas on the Arkansas River
+13347,Pineus genus_Pineus,a genus of Adelgidae
+13348,Ping Ping_River,a river in western Thailand; a major tributary of the Chao Phraya
+13349,Pinguicula genus_Pinguicula,butterworts: a large genus of almost stemless carnivorous bog plants; Europe and America to Antarctica
+13350,Pinguinus genus_Pinguinus,great auk
+13351,Pinicola genus_Pinicola,a genus of Fringillidae
+13352,Pinnipedia suborder_Pinnipedia,seals; sea lions; walruses
+13353,Pinnotheres genus_Pinnotheres,type genus of the family Pinnotheridae: pea crabs
+13354,Pinnotheridae family_Pinnotheridae,tiny soft-bodied crabs
+13355,Pinopsida class_Pinopsida Pinophytina subdivision_Pinophytina,most conifers: in some systems classified as a class (Pinopsida) and in others as a subdivision (Pinophytina); used in some classifications for one of five subdivisions of Gymnospermophyta
+13356,Pinot Pinot_grape,any of several purple or white wine grapes used especially for Burgundies and champagnes
+13357,Pinot_blanc,white wine grape; grown especially in California for making wines resembling those from Chablis, France
+13358,Pinot_blanc,dry white California table wine made from white Pinot grapes
+13359,Pinot_noir,red wine grape; grown especially in California for making wines resembling those from Burgundy, France
+13360,Pinot_noir,dry red California table wine made from purple Pinot grapes
+13361,Pinsk,a city of southwestern Belarus
+13362,Pinter Harold_Pinter,English dramatist whose plays are characterized by silences and the use of inaction (born in 1930)
+13363,Pinus genus_Pinus,type genus of the Pinaceae: large genus of true pines
+13364,Pipa genus_Pipa,type genus of the Pipidae
+13365,Piper genus_Piper,type genus of the Piperaceae: large genus of chiefly climbing tropical shrubs
+13366,Piperaceae family_Piperaceae pepper_family,tropical woody vines and herbaceous plants having aromatic herbage and minute flowers in spikelets
+13367,Piperales order_Piperales,Piperaceae; Saururaceae; Chloranthaceae
+13368,Pipidae family_Pipidae,tongueless frogs
+13369,Pipile genus_Pipile,genus of large crested guans (the piping guans)
+13370,Pipilo genus_Pipilo,towhees
+13371,Pipistrellus genus_Pipistrellus,nearly cosmopolitan genus of very small bats
+13372,Pippin,any of numerous superior eating apples with yellow or greenish yellow skin flushed with red
+13373,Pipra genus_Pipra,type genus of the Pipridae containing the typical manakins
+13374,Pipridae family_Pipridae,manakins
+13375,Piptadenia genus_Piptadenia,tropical American trees and shrubs; often placed in other genera
+13376,Pipturus genus_Pipturus,an Australian genus of woody plants of the family Urticaceae
+13377,Pipturus_albidus,Hawaiian tree of genus Pipturus having a bark (tapa) from which tapa cloth is made
+13378,Piqueria genus_Piqueria,small genus of tropical American perennial herbs or subshrubs with white to pale yellow flowers; often included in genus Stevia
+13379,Pirandello Luigi_Pirandello,Italian novelist and playwright (1867-1936)
+13380,Piranga genus_Piranga,a genus of Thraupidae
+13381,Pisa,a city in Tuscany; site of the famous Leaning Tower
+13382,Pisces,a large faint zodiacal constellation; between Aquarius and Aries
+13383,Pisces,a group of vertebrates comprising both cartilaginous and bony fishes and sometimes including the jawless vertebrates; not used technically
+13384,Pisces Fish,(astrology) a person who is born while the sun is in Pisces
+13385,Pisces Pisces_the_Fishes Fish,the twelfth sign of the zodiac; the sun is in this sign from about February 19 to March 20
+13386,Piscidia genus_Piscidia,genus of shrubs or small trees having indehiscent pods with black seeds; roots and bark yield fish poisons
+13387,Pisonia genus_Pisonia,genus of often thorny tropical trees and shrubs and some vines; mainly America
+13388,Pissis,a mountain in the Andes in Argentina (22,241 feet high)
+13389,Pistacia genus_Pistacia,a dicotyledonous genus of trees of the family Anacardiaceae having drupaceous fruit
+13390,Piston Walter_Piston,United States neoclassical composer (1894-1976)
+13391,Pisum genus_Pisum,small genus of variable annual Eurasian vines: peas
+13392,Pithecanthropus Pithecanthropus_erectus genus_Pithecanthropus,former genus of primitive apelike men now Homo erectus
+13393,Pithecellobium genus_Pithecellobium Pithecolobium genus_Pithecolobium,thorny shrubs and trees of tropical and subtropical America and Asia
+13394,Pithecia genus_Pithecia,sakis
+13395,Pitman Sir_Isaac_Pitman,English educator who invented a system of phonetic shorthand (1813-1897)
+13396,Pitot Henri_Pitot,French physicist for whom the Pitot tube was named (1695-1771)
+13397,Pitot-static_tube Pitot_head Pitot_tube,measuring instrument consisting of a combined Pitot tube and static tube that measures total and static pressure; used in aircraft to measure airspeed
+13398,Pitot_tube Pitot,measuring instrument consisting of a right-angled tube with an open end that is directed in opposition to the flow of a fluid and used to measure the velocity of fluid flow
+13399,Pitt George_Pitt George_Dibdin_Pitt George_Dibdin-Pitt,a British playwright who created the fictional character Sweeney Todd (1799-1855)
+13400,Pitt William_Pitt First_Earl_of_Chatham Pitt_the_Elder,English statesman who brought the Seven Years' War to an end (1708-1778)
+13401,Pitt William_Pitt Second_Earl_of_Chatham Pitt_the_Younger,English statesman and son of Pitt the Elder (1759-1806)
+13402,Pittidae family_Pittidae,pittas
+13403,Pittsburgh,a city in southwestern Pennsylvania where the confluence of the Allegheny River and Monongahela River forms the Ohio River; long an important urban industrial area; site of Carnegie Mellon University and the University of Pittsburgh
+13404,Pittsfield,a town in western Massachusetts
+13405,Pituophis genus_Pituophis,bull snakes
+13406,Pitymys genus_Pitymys,pine mice
+13407,Pityrogramma genus_Pityrogramma,terrestrial tropical ferns having fronds with powdery yellowish or white undersides; sometimes placed in family Polypodiaceae or Adiantaceae
+13408,Pius_II Aeneas_Silvius Enea_Silvio_Piccolomini,Italian pope from 1458 to 1464 who is remembered for his unsuccessful attempt to lead a crusade against the Turks (1405-1464)
+13409,Pius_IX Giovanni_Mastai-Ferretti Giovanni_Maria_Mastai-Ferretti,Italian pope from 1846 to 1878 who in 1854 declared the dogma of the Immaculate Conception of the Virgin Mary
+13410,Pius_V Antonio_Ghislieri,Italian pope from 1566 to 1572 who led the reformation of the Roman Catholic Church; he excommunicated Elizabeth I (1504-1572)
+13411,Pius_VI Giovanni_Angelo_Braschi Giannangelo_Braschi,Italian pope from 1775 to 1799 who served during the French Revolution; Napoleon attacked the Papal States and in 1797 Pius VI was taken to France where he died (1717-1799)
+13412,Pius_VII Barnaba_Chiaramonti Luigi_Barnaba_Gregorio_Chiaramonti,Italian pope from 1800 to 1823 who was humiliated by Napoleon and taken prisoner in 1809; he concluded a concordat with Napoleon and crowned him emperor of France; he returned to Rome in 1814 (1740-1823)
+13413,Pius_X Giuseppe_Sarto Giuseppe_Melchiorre_Sarto,pope who condemned religious modernism; he was canonized in 1954 because of his interest in the poor (1835-1914)
+13414,Pius_XI Achille_Ratti Ambrogio_Damiano_Achille_Ratti,pope who signed a treaty with Mussolini recognizing the Vatican City as an independent state (1857-1939)
+13415,Pius_XII Eugenio_Pacelli,pope who maintained neutrality during World War II and was later criticized for not aiding the Jews who were persecuted by Hitler (1876-1958)
+13416,Pizarro Francisco_Pizarro,Spanish conquistador who conquered the Incas in what is now Peru and founded the city of Lima (1475-1541)
+13417,Placodermi class_Placodermi,extinct group of bony-plated fishes with primitive jaws
+13418,Placuna genus_Placuna,windowpane oysters
+13419,Plagianthus genus_Plagianthus,small genus of shrubs and trees of Australia and New Zealand
+13420,Plains_Indian Buffalo_Indian,a member of one of the tribes of American Indians who lived a nomadic life following the buffalo in the Great Plains of North America
+13421,Planck Max_Planck Max_Karl_Ernst_Ludwig_Planck,German physicist whose explanation of blackbody radiation in the context of quantized energy emissions initiated quantum theory (1858-1947)
+13422,Planck's_constant h,the constant of proportionality relating the energy of a photon to its frequency; approximately 6.626 x 10^-34 joule-second
+13423,Planck's_law,(physics) the basis of quantum theory; the energy of electromagnetic waves is contained in indivisible quanta that have to be radiated or absorbed as a whole; the magnitude is proportional to frequency where the constant of proportionality is given by Planck's constant
+13424,Planck's_radiation_law,(physics) an equation that expresses the distribution of energy in the radiated spectrum of an ideal black body
+13425,Planera genus_Planera,a deciduous tree of the family Ulmaceae that grows in the southeastern United States
+13426,Plano,a city in northeastern Texas (suburb of Dallas)
+13427,Planococcus genus_Planococcus,a genus of Pseudococcidae
+13428,Plantae kingdom_Plantae plant_kingdom,(botany) the taxonomic kingdom comprising all living or extinct plants
+13429,Plantagenet Plantagenet_line,the family name of a line of English kings that reigned from 1154 to 1485
+13430,Plantaginaceae family_Plantaginaceae plantain_family,cosmopolitan family of small herbs and a few shrubs; most are troublesome weeds
+13431,Plantaginales order_Plantaginales,coextensive with the family Plantaginaceae
+13432,Plantago genus_Plantago,type genus of the family Plantaginaceae; large cosmopolitan genus of mostly small herbs
+13433,Plantation,a newly established colony (especially in the colonization of North America); "the practice of sending convicted criminals to serve on the Plantations was common in the 17th century"
+13434,Plasmodiidae family_Plasmodiidae,malaria parasites
+13435,Plasmodiophora genus_Plasmodiophora,type genus of Plasmodiophoraceae comprising minute plant parasitic fungi similar to and sometimes included among the slime molds
+13436,Plasmodiophoraceae family_Plasmodiophoraceae,family of fungi often causing hypertrophy in seed plants
+13437,Plassey battle_of_Plassey,the victory in 1757 by the British under Clive over Siraj-ud-daula that established British supremacy over Bengal
+13438,Plasticine,a synthetic material resembling clay but remaining soft; used as a substitute for clay or wax in modeling (especially in schools)
+13439,Plataea,a former town in Boeotia; site of a battle between the Greeks and Persians in 479 BC
+13440,Plataea battle_of_Plataea,a defeat of the Persian army by the Greeks at Plataea in 479 BC
+13441,Platalea genus_Platalea,type genus of the Plataleidae
+13442,Plataleidae family_Plataleidae,spoonbills
+13443,Platanaceae family_Platanaceae plane-tree_family,coextensive with the genus Platanus: plane trees
+13444,Platanistidae family_Platanistidae,river dolphins
+13445,Platanthera genus_Platanthera,herbaceous terrestrial orchids of temperate northern and southern hemispheres
+13446,Platanus genus_Platanus,genus of large monoecious mostly deciduous trees: London plane; sycamore
+13447,Plath Sylvia_Plath,United States writer and poet (1932-1963)
+13448,Platichthys genus_Platichthys,a genus of Pleuronectidae
+13449,Plato,ancient Athenian philosopher; pupil of Socrates; teacher of Aristotle (428-347 BC)
+13450,Plato's_Academy,a school established by Plato in ancient Athens; "Plato's Academy continued for several hundred years after Plato died"
+13451,Platonism realism,(philosophy) the philosophical doctrine that abstract concepts exist independent of their names
+13452,Platonist,an advocate of Platonism
+13453,Platt_National_Park,a national park in Oklahoma having mineral springs
+13454,Platte Platte_River,a river in Nebraska that flows eastward to become a tributary of the Missouri River
+13455,Platte_River_penstemon Penstemon_cyananthus,erect plant with blue-violet flowers in rings near tips of stems; Idaho to Utah and Wyoming
+13456,Platycephalidae family_Platycephalidae,scorpaenoid flatheads
+13457,Platycerium genus_Platycerium,often epiphytic tropical Old World ferns
+13458,Platyctenea order_Platyctenea,an order of Tentaculata
+13459,Platyhelminthes phylum_Platyhelminthes,flatworms
+13460,Platylobium genus_Platylobium,small genus of Australian evergreen leguminous shrubs or subshrubs
+13461,Platymiscium genus_Platymiscium,genus of tropical American trees: quira
+13462,Platypoecilus genus_Platypoecilus,platys
+13463,Platyrrhini superfamily_Platyrrhini,New World monkeys: capuchin; douroucouli; howler monkey; saki; spider monkey; squirrel monkey; titi; uakari; woolly monkey; marmoset; tamarin
+13464,Platystemon genus_Platystemon,one species: creamcups
+13465,Plautus Titus_Maccius_Plautus,comic dramatist of ancient Rome (253?-184 BC)
+13466,Plautus genus_Plautus,a genus of Alcidae
+13467,Plecoptera order_Plecoptera,stoneflies
+13468,Plecotus genus_Plecotus,a genus of Vespertilionidae
+13469,Plectania genus_Plectania,genus of fungi in the family Pezizaceae closely related to and often included in genus Peziza
+13470,Plectognathi order_Plectognathi order_Tetraodontiformes,boxfishes; filefishes; globefishes; ocean sunfishes; triggerfishes; puffers
+13471,Plectomycetes class_Plectomycetes,class of fungi in which the fruiting body is a cleistothecium (it releases spores only on decay or disintegration)
+13472,Plectophera,in some former classifications: name for the Ephemeroptera
+13473,Plectorrhiza genus_Plectorrhiza,small genus of Australian orchids
+13474,Plectrophenax genus_Plectrophenax,snow bunting
+13475,Pleiades,(Greek mythology) 7 daughters of Atlas and half-sisters of the Hyades; placed among the stars to save them from the pursuit of Orion
+13476,Pleiades,a star cluster in the constellation Taurus
+13477,Pleione genus_Pleione,small genus of dwarf orchids; India to Thailand and Taiwan
+13478,Pleiospilos genus_Pleiospilos,perennial succulents of South Africa
+13479,Pleistocene Pleistocene_epoch Glacial_epoch,from two million to 11 thousand years ago; extensive glaciation of the northern hemisphere; the time of human evolution
+13480,Plesianthropus genus_Plesianthropus,former name for the genus Australopithecus
+13481,Plesiosauria suborder_Plesiosauria,any of the plesiosaurs
+13482,Plethodon genus_Plethodon,type genus of the Plethodontidae
+13483,Plethodontidae family_Plethodontidae,small mostly terrestrial New World salamanders having neither lungs nor gills as adults
+13484,Pleurobrachia genus_Pleurobrachia,sea gooseberries
+13485,Pleurobrachiidae family_Pleurobrachiidae,sea gooseberries
+13486,Pleuronectes genus_Pleuronectes,type genus of the Pleuronectidae
+13487,Pleuronectidae family_Pleuronectidae,righteye flounders
+13488,Pleurosorus genus_Pleurosorus,small genus comprising terrestrial ferns; found in Chile and Spain and Morocco and Australia and New Zealand
+13489,Pleurotus genus_Pleurotus,agarics with white spores and caps having an eccentric stem; an important mushroom of Japan
+13490,Plevna Pleven,the town was taken from the Turks by the Russians in 1877 after a siege of 143 days
+13491,Plexiglas plexiglass,a light transparent weather resistant thermoplastic
+13492,Plicatoperipatus genus_Plicatoperipatus,a genus of Peripatidae
+13493,Plicatoperipatus_jamaicensis,a kind of onychophoran
+13494,Plinian_eruption,a volcanic eruption in which a stream of gas and ash is violently ejected to a height of several miles
+13495,Pliny Pliny_the_Elder Gaius_Plinius_Secundus,Roman author of an encyclopedic natural history; died while observing the eruption of Vesuvius (23-79)
+13496,Pliny Pliny_the_Younger Gaius_Plinius_Caecilius_Secundus,Roman writer and nephew of Pliny the Elder; author of books of letters that commented on affairs of the day (62-113)
+13497,Pliocene Pliocene_epoch,from 13 million to 2 million years ago; growth of mountains; cooling of climate; more and larger mammals
+13498,Ploceidae family_Ploceidae,weaverbirds
+13499,Ploceus genus_Ploceus,type genus of the Ploceidae
+13500,Plotinus,Roman philosopher (born in Egypt) who was the leading representative of Neoplatonism (205-270)
+13501,Plott_hound,a brindle-coated American hound used in hunting bears and wild boars
+13502,Plovdiv Philippopolis,an ancient city in southern Bulgaria; commercial center of an agricultural region
+13503,Plumbaginaceae family_Plumbaginaceae leadwort_family sea-lavender_family,perennial herbs and shrubs and lianas; cosmopolitan especially in saltwater areas
+13504,Plumbaginales order_Plumbaginales,coextensive with the family Plumbaginaceae; usually included in order Primulales
+13505,Plumeria genus_Plumeria Plumiera,deciduous shrubs and trees of tropical America having branches like candelabra and fragrant white or pink flowers
+13506,Plutarch,Greek biographer who wrote Parallel Lives (46?-120 AD)
+13507,Pluteaceae family_Pluteaceae,a family of fungi belonging to the order Agaricales
+13508,Pluteus genus_Pluteus roof_mushroom,a large genus of fungi belonging to the family Pluteaceae; the shape of the cap resembles a roof; often abundant early in the summer
+13509,Pluteus_aurantiorugosus,an agaric with a brilliant scarlet cap and a slender stalk
+13510,Pluteus_magnus sawdust_mushroom,an edible agaric found in piles of hardwood sawdust; the caps are black and coarsely wrinkled
+13511,Pluto,a cartoon character created by Walt Disney
+13512,Pluto,a large asteroid that was once thought to be the farthest known planet from the sun; it has an elliptical orbit; "Pluto was discovered by Clyde Tombaugh in 1930"
+13513,Pluto Dis Dis_Pater Orcus,(Roman mythology) god of the underworld; counterpart of Greek Hades
+13514,Pluvialis genus_Pluvialis,golden plovers
+13515,Pluvianus genus_Pluvianus,coursers
+13516,Pluviose,fifth month of the Revolutionary calendar (January and February); the rainy month
+13517,Plymouth,a town in Massachusetts founded by Pilgrims in 1620
+13518,Plymouth_Colony,colony formed by the Pilgrims when they arrived at Plymouth Rock in 1620; it was absorbed into the Massachusetts Bay Colony in 1691
+13519,Plymouth_Rock,a boulder in Plymouth supposed to be where the Pilgrims disembarked from the Mayflower
+13520,Plymouth_Rock,an American breed of domestic fowl
+13521,Po Po_River,a European river; flows into the Adriatic Sea
+13522,Poa genus_Poa,chiefly perennial grasses of cool temperate regions
+13523,Pobeda_Peak Pobedy_Peak,a mountain peak in the Tien Shan mountains in northern India (24,406 feet high)
+13524,Pocahontas Matoaka Rebecca_Rolfe,a Powhatan woman (the daughter of Powhatan) who befriended the English at Jamestown and is said to have saved Captain John Smith's life (1595-1617)
+13525,Pocatello,a university town in southeastern Idaho
+13526,Podalyria genus_Podalyria,genus of South African leguminous shrubs often placed in genus Sophora
+13527,Podargidae family_Podargidae,frogmouths
+13528,Podargus genus_Podargus,type genus of the Podargidae
+13529,Podaxaceae,a variety of gastromycete
+13530,Podiceps genus_Podiceps,type genus of the Podicipedidae: grebes
+13531,Podicipedidae family_Podicipedidae,coextensive with the order Podicipitiformes
+13532,Podicipitiformes order_Podicipitiformes Podicipediformes order_Podicipediformes Colymbiformes order_Colymbiformes,grebes
+13533,Podilymbus genus_Podilymbus,a genus of Podicipedidae
+13534,Podocarpaceae family_Podocarpaceae podocarpus_family,gymnosperms with simple persistent needlelike or scalelike leaves
+13535,Podocarpus genus_Podocarpus,evergreen trees or shrubs; sometimes classified as member of the family Taxaceae
+13536,Podophyllum genus_Podophyllum,perennial rhizomatous herbs
+13537,Poe Edgar_Allan_Poe,United States writer and poet (1809-1849)
+13538,Poeciliidae family_Poeciliidae,topminnows
+13539,Poecilocapsus genus_Poecilocapsus,a genus of Miridae
+13540,Poecilogale genus_Poecilogale,muishonds
+13541,Poephila genus_Poephila,grassfinches
+13542,Pogonophora phylum_Pogonophora,beard worms
+13543,Pogostemon genus_Pogostemon,genus of Asiatic shrubs or trees whose leaves yield a fragrant oil
+13544,Poinciana subgenus_Poinciana,small subgenus of ornamental tropical shrubs or trees; not recognized in some classifications
+13545,Poisson_distribution,a theoretical distribution that is a good approximation to the binomial distribution when the probability is small and the number of trials is large
+13546,Poitier Sidney_Poitier,United States film actor and director (born in 1927)
+13547,Poitiers battle_of_Poitiers,the battle in 1356 in which the English under the Black Prince defeated the French
+13548,Poitou-Charentes Poitou,a low-lying region of west central France on the Bay of Biscay
+13549,Pokomo,a Bantu language spoken in the Kenyan coastal areas of East Africa
+13550,Poland Republic_of_Poland Polska,a republic in central Europe; the invasion of Poland by Germany in 1939 started World War II
+13551,Polanisia genus_Polanisia,widely distributed herbs having palmate leaves and creamy white to or pink to magenta flowers with many stamens of unequal length
+13552,Polaris North_Star pole_star polar_star polestar,the brightest star in Ursa Minor; at the end of the handle of the Little Dipper; the northern axis of the earth points toward it
+13553,Polaroid,(trade mark) a plastic film that can polarize a beam of light; often used in sunglasses to eliminate glare
+13554,Polaroid_camera Polaroid_Land_camera,a camera that develops and produces a positive print within seconds
+13555,Pole,a native or inhabitant of Poland
+13556,Polemoniaceae family_Polemoniaceae phlox_family,a widely distributed family of chiefly herbaceous plants of the order Polemoniales; often have showy flowers
+13557,Polemoniales order_Polemoniales,Polemoniaceae; Solanaceae; Boraginaceae; Labiatae; Lentibulariaceae; Pedaliaceae; in some classifications includes the order Scrophulariales
+13558,Polianthes genus_Polianthes,genus of perennial tuberous herbs having lily-like flowers; Mexico; sometimes placed in family Amaryllidaceae
+13559,Polioptila genus_Polioptila,New World gnatcatchers
+13560,Polish,the Slavic language of Poland
+13561,Polish_monetary_unit,monetary unit in Poland
+13562,Polistes genus_Polistes,a genus of Vespidae
+13563,Polistes_annularis,a variety of paper wasp
+13564,Polk James_Polk James_K._Polk James_Knox_Polk President_Polk,11th President of the United States; his expansionism led to the Mexican War and the annexation of California and much of the southwest (1795-1849)
+13565,Pollachius genus_Pollachius,pollack
+13566,Pollack Sydney_Pollack,United States filmmaker (born in 1934)
+13567,Pollock Jackson_Pollock,United States artist famous for painting with a drip technique; a leader of abstract expressionism in America (1912-1956)
+13568,Pollux,the brightest star in Gemini; close to Castor
+13569,Polo Marco_Polo,Venetian traveler who explored Asia in the 13th century and served Kublai Khan (1254-1324)
+13570,Polyangiaceae family_Polyangiaceae Myxobacteriaceae family_Myxobacteriaceae,bacteria living mostly in soils and on dung
+13571,Polyangium genus_Polyangium,type genus of the family Polyangiaceae: myxobacteria with rounded fruiting bodies enclosed in a membrane
+13572,Polyborus genus_Polyborus,a genus of Falconidae
+13573,Polybotrya genus_Polybotrya Polybotria genus_Polybotria,tropical American ferns; usually terrestrial when young but scandent later
+13574,Polycarp Saint_Polycarp St._Polycarp,Greek bishop of Smyrna who refused to recant his Christian faith and was burned to death by pagans (circa 69-155)
+13575,Polychaeta class_Polychaeta,marine annelid worms
+13576,Polycirrus genus_Polycirrus,genus of soft-bodied polychete marine worms
+13577,Polydactylus genus_Polydactylus,a genus of Polynemidae
+13578,Polyergus genus_Polyergus,Amazon ants
+13579,Polygala genus_Polygala,type genus of the Polygalaceae: milkwort; senega; snakeroot
+13580,Polygalaceae family_Polygalaceae milkwort_family,trees, shrubs, and herbs widely distributed throughout both hemispheres
+13581,Polygonaceae family_Polygonaceae buckwheat_family,a family of plants of order Polygonales chiefly of the north temperate zone; includes the buckwheats
+13582,Polygonales order_Polygonales,coextensive with the family Polygonaceae,
+13583,Polygonatum genus_Polygonatum,sometimes placed in subfamily Convallariaceae
+13584,Polygonia genus_Polygonia,comma butterflies
+13585,Polygonum genus_Polygonum,diverse genus of herbs or woody subshrubs of north temperate regions
+13586,Polyhymnia,(Greek mythology) the Muse of singing and mime and sacred dance
+13587,Polymastigina order_Polymastigina,small usually parasitic flagellates
+13588,Polynemidae family_Polynemidae,threadfins
+13589,Polynesia,the islands in the eastern part of Oceania
+13590,Polynesian,a native or inhabitant of Polynesia
+13591,Polynesian_tattler Heteroscelus_incanus,tattler of Pacific coastal regions
+13592,Polyodon genus_Polyodon,type genus of the Polyodontidae
+13593,Polyodontidae family_Polyodontidae,paddlefishes
+13594,Polypedates genus_Polypedates,type genus of the Polypedatidae
+13595,Polypedatidae family_Polypedatidae,Old World tree frogs
+13596,Polyplacophora class_Polyplacophora,small class of marine mollusks comprising the chitons; sometimes considered an order of the subclass Amphineura
+13597,Polypodiaceae family_Polypodiaceae,ferns: a large family that in some classification systems has been subdivided into several families (including Aspleniaceae and Blechnaceae and Davalliaceae and Dennstaedtiaceae and Dryopteridaceae and Oleandraceae and Pteridaceae)
+13598,Polypodium genus_Polypodium,a genus of ferns belonging to the family Polypodiaceae and having rounded naked sori
+13599,Polyporaceae family_Polyporaceae,fungi that become corky or woody with age, often forming shelflike growths on trees
+13600,Polyporus genus_Polyporus,type genus of the Polyporaceae; includes important pathogens of e.g. birches and conifers
+13601,Polyporus_squamosus scaly_polypore,a fungus with a lateral stalk (when there is a stalk) and a scaly cap that becomes nearly black in maturity; widely distributed in the northern hemisphere
+13602,Polyporus_tenuiculus,a fungus with a whitish kidney-shaped cap and elongated pores; causes white rot in dead hardwoods
+13603,Polyprion genus_Polyprion,wreckfish
+13604,Polystichum genus_Polystichum,small to medium-sized terrestrial ferns especially holly ferns; in some classification systems placed in Polypodiaceae
+13605,Pomacanthus genus_Pomacanthus,angelfishes
+13606,Pomacentridae family_Pomacentridae,damselfishes
+13607,Pomacentrus genus_Pomacentrus,type genus of the Pomacentridae: damselfishes
+13608,Pomaderris genus_Pomaderris,a genus of Australasian shrubs and trees
+13609,Pomatomidae family_Pomatomidae,food and game fishes related to pompanos
+13610,Pomatomus genus_Pomatomus,type genus of the Pomatomidae
+13611,Pomeranian,breed of very small compact long-haired dogs of the spitz type
+13612,Pomo,a member of an Indian people of northern California living along the Russian River valley and adjacent Pacific coast
+13613,Pomo,the Kulanapan language spoken by the Pomo
+13614,Pomolobus genus_Pomolobus,genus to which the alewife is sometimes assigned
+13615,Pomoxis genus_Pomoxis,crappies
+13616,Pompadour Marquise_de_Pompadour Jeanne_Antoinette_Poisson,French noblewoman who was the lover of Louis XV, whose policies she influenced (1721-1764)
+13617,Pompeii,ancient city to the southeast of Naples that was buried by a volcanic eruption from Vesuvius
+13618,Pompey Gnaeus_Pompeius_Magnus Pompey_the_Great,Roman general and statesman who quarrelled with Caesar and fled to Egypt where he was murdered (106-48 BC)
+13619,Ponca Ponka,a member of the Siouan people of the Missouri river valley in northeastern Nebraska
+13620,Ponca Ponka,the Dhegiha dialect spoken by the Ponca
+13621,Ponce_de_Leon Juan_Ponce_de_Leon,Spanish explorer who accompanied Columbus on his second trip in 1493; in 1513 he discovered Florida while searching for the legendary Fountain of Youth (1460-1521)
+13622,Poncirus genus_Poncirus,one species: trifoliate orange
+13623,Pongamia genus_Pongamia,one species: Indian beech
+13624,Pongidae family_Pongidae,usually considered as comprising orangutans; gorillas; chimpanzees; and sometimes gibbons
+13625,Pongo genus_Pongo,type genus of the family Pongidae: orangutans
+13626,Pons Lily_Pons Alice-Josephine_Pons,United States coloratura soprano (born in France) (1904-1976)
+13627,Ponselle Rosa_Ponselle Rosa_Melba_Ponselle,United States soprano (1897-1981)
+13628,Ponte_25_de_Abril,a suspension bridge across the Tagus River at Lisbon
+13629,Pontederia genus_Pontederia,pickerelweed
+13630,Pontederiaceae family_Pontederiaceae pickerelweed_family,aquatic or bog plants
+13631,Pontiac,famous chief of the Ottawa who led an unsuccessful rebellion against the British (1715-1769)
+13632,Pontus,an ancient region of northern Asia Minor on the Black Sea; it reached its height under Mithridates VI but was later incorporated into the Roman Empire
+13633,Pontus Pontos,(Greek mythology) ancient personification of the sea; father of Nereus
+13634,Pooecetes genus_Pooecetes,a genus of Fringillidae
+13635,Pop_Art,a school of art that emerged in the United Kingdom in the 1950s and became prevalent in the United States and the United Kingdom in the 1960s; it imitated the techniques of commercial art (as the soup cans of Andy Warhol) and the styles of popular culture and the mass media
+13636,Pope Alexander_Pope,English poet and satirist (1688-1744)
+13637,Popillia genus_Popillia,a genus of Scarabaeidae
+13638,Poplar_Bluff,a town in southeast Missouri
+13639,Popper Karl_Popper Sir_Karl_Raimund_Popper,British philosopher (born in Austria) who argued that scientific theories can never be proved to be true, but are tested by attempts to falsify them (1902-1994)
+13640,Popular_Front_for_the_Liberation_of_Palestine PFLP,a terrorist group of limited popularity formed in 1967 after the Six-Day War; combined Marxist-Leninist ideology with Palestinian nationalism; used terrorism to gain attention for their cause; hoped to eliminate the state of Israel
+13641,Popular_Front_for_the_Liberation_of_Palestine-General_Command PFLP-GC,a Marxist-Leninist terrorist organization that conducted several attacks in western Europe
+13642,Popular_Struggle_Front PSF,a terrorist group of radical Palestinians who split with al-Fatah in 1967 but now have close relations with al-Fatah; staged terrorist attacks against Israel across the Lebanese border
+13643,Population_Commission,the commission of the Economic and Social Council of the United Nations that is concerned with population control
+13644,Populus genus_Populus,a genus of trees of the family Salicaceae that is found in the northern hemisphere; poplars
+13645,Porcellio genus_Porcellio,Old World genus of isopod crustaceans
+13646,Porcellionidae family_Porcellionidae,sow bugs
+13647,Porifera phylum_Porifera,coextensive with the subkingdom Parazoa: sponges
+13648,Poronotus genus_Poronotus,a genus of Stromateidae
+13649,Porphyra genus_Porphyra,a genus of protoctist
+13650,Porphyrio genus_Porphyrio,Old World purple gallinules
+13651,Porphyrula genus_Porphyrula,American purple gallinules
+13652,Port-au-Prince Haitian_capital,the capital and largest city of Haiti
+13653,Port_Arthur,a battle in the Chino-Japanese War (1894); Japanese captured the port and fortifications from the Chinese
+13654,Port_Jackson_fig rusty_rig little-leaf_fig Botany_Bay_fig Ficus_rubiginosa,Australian tree resembling the banyan often planted for ornament; introduced into South Africa for brushwood
+13655,Port_Jackson_heath Epacris_purpurascens,small shrub of southern and western Australia having pinkish to rosy purple tubular flowers
+13656,Port_Jackson_pine Callitris_cupressiformis,Australian cypress pine having globular cones
+13657,Port_Louis,capital and chief port of Mauritius; located on the northwestern coast of the island
+13658,Port_Moresby capital_of_Papua_New_Guinea,the administrative capital and largest city of Papua New Guinea
+13659,Port_Orford_cedar,the wood of the Port Orford cedar tree
+13660,Port_Sudan,port city in Sudan on the Red Sea
+13661,Port_Vila Vila capital_of_Vanuatu,capital of Vanuatu
+13662,Port_of_Spain Port-of-Spain capital_of_Trinidad_and_Tobago,the capital and largest city of Trinidad and Tobago on the west coast of the island of Trinidad
+13663,Porte Sublime_Porte,the Ottoman court in Constantinople
+13664,Porter Cole_Porter Cole_Albert_Porter,United States composer and lyricist of musical comedies (1891-1946)
+13665,Porter Katherine_Anne_Porter,United States writer of novels and short stories (1890-1980)
+13666,Porter William_Sydney_Porter O._Henry,United States writer of short stories whose pen name was O. Henry (1862-1910)
+13667,Portland,freshwater port and largest city in Oregon; located in northwestern Oregon on the Willamette River which divides the city into east and west sections; renowned for its beautiful natural setting among the mountains
+13668,Portland,largest city in Maine in the southwestern corner of the state
+13669,Porto Oporto,port city in northwest Portugal; noted for port wine
+13670,Porto_Novo capital_of_Benin,the capital of Benin in southwestern part of country on a coastal lagoon
+13671,Portsmouth,a port city in southeastern Virginia on the Elizabeth River opposite Norfolk; naval base; shipyards
+13672,Portsmouth,a port town in southeastern New Hampshire on the Atlantic Ocean
+13673,Portsmouth Pompey,a port city in southern England on the English Channel; Britain's major naval base
+13674,Portugal Portuguese_Republic,a republic in southwestern Europe on the Iberian Peninsula; Portuguese explorers and colonists in the 15th and 16th centuries created a vast overseas empire (including Brazil)
+13675,Portuguese,a native or inhabitant of Portugal
+13676,Portuguese,the Romance language spoken in Portugal and Brazil
+13677,Portuguese_escudo escudo,formerly the basic monetary unit of Portugal; equal to 100 centavo
+13678,Portuguese_man-of-war man-of-war jellyfish,large siphonophore having a bladderlike float and stinging tentacles
+13679,Portuguese_monetary_unit,monetary unit in Portugal
+13680,Portulacaceae family_Portulacaceae purslane_family,family of usually succulent herbs; cosmopolitan in distribution especially in Americas
+13681,Portunidae family_Portunidae,swimming crabs
+13682,Portunus genus_Portunus,type genus of the family Portunidae
+13683,Porzana genus_Porzana,spotted crakes
+13684,Poseidon,(Greek mythology) the god of the sea and earthquakes in ancient mythology; brother of Zeus and Hades and Hera; identified with Roman Neptune
+13685,Post C._W._Post Charles_William_Post,United States manufacturer of breakfast cereals and Postum (1854-1914)
+13686,Post Emily_Post Emily_Price_Post,United States female author who wrote a book and a syndicated newspaper column on etiquette (1872-1960)
+13687,Post Wiley_Post,United States aviator who in 1933 made the first solo flight around the world (1899-1935)
+13688,Post-It,brand name for a slip of notepaper that has an adhesive that allows it to stick to a surface and be removed without damaging the surface
+13689,Post-Office_box PO_Box POB call_box letter_box,a numbered compartment in a post office where mail is put to be called for
+13690,Postal_Rate_Commission,an independent federal agency that recommends changes in postal rates
+13691,Postimpressionist Post-impressionist,an artist of the Postimpressionist school who revolted against Impressionism
+13692,Postum,trade mark for a coffee substitute invented by C. W. Post and made with chicory and roasted grains
+13693,Potamogalidae family_Potamogalidae,otter shrews
+13694,Potamogeton genus_Potamogeton,a large genus of aquatic herbs found in quiet waters in temperate regions; leaves usually float on the water
+13695,Potamogetonaceae family_Potamogetonaceae pondweed_family,plants that grow in ponds and slow streams; sometimes includes family Zosteraceae
+13696,Potamophis genus_Potamophis,ground snakes
+13697,Potawatomi,a member of the Algonquian people originally of Michigan and Wisconsin
+13698,Potawatomi,the Algonquian language spoken by the Potawatomi
+13699,Potemkin Potyokin Grigori_Potemkin Grigori_Potyokin Grigori_Aleksandrovich_Potemkin,a Russian officer and politician who was a favorite of Catherine II and in 1762 helped her to seize power; when she visited the Crimea in 1787 he gave the order for sham villages to be built (1739-1791)
+13700,Potemkin_village,something that seems impressive but in fact lacks substance
+13701,Potentilla genus_Potentilla,chiefly perennial northern hemisphere herbs and shrubs: cinquefoil
+13702,Poterium genus_Poterium,a genus of thorny herbs or shrubs of the family Rosaceae
+13703,Potomac,term sometimes used to refer to Washington, D.C.
+13704,Potomac Potomac_River,a river in the east central United States; rises in West Virginia in the Appalachian Mountains and flows eastward, forming the boundary between Maryland and Virginia, to the Chesapeake Bay
+13705,Potoroinae subfamily_Potoroinae,rat kangaroos
+13706,Potorous genus_Potorous,potoroos
+13707,Potos genus_Potos,a genus of Procyonidae
+13708,Potsdam,a city in northeastern Germany; site of the Potsdam Conference in the summer of 1945
+13709,Potsdam_Conference,a conference held in Potsdam in the summer of 1945 where Truman, Stalin, and Churchill drew up plans for the administration of Germany and Poland after World War II ended
+13710,Pott's_disease,TB of the spine with destruction of vertebrae resulting in curvature of the spine
+13711,Poulenc Francis_Poulenc,French pianist and composer (1899-1963)
+13712,Pound Ezra_Pound Ezra_Loomis_Pound,United States writer who lived in Europe; strongly influenced the development of modern literature (1885-1972)
+13713,Poussin Nicolas_Poussin,French painter in the classical style (1594-1665)
+13714,Pouteria genus_Pouteria,tropical American timber tree with edible fruit (canistel)
+13715,Powell Cecil_Frank_Powell,English physicist who discovered the pion (the first known meson) which is a subatomic particle involved in holding the nucleus together (1903-1969)
+13716,Powell Colin_Powell Colin_luther_Powell,United States general who was the first African American to serve as chief of staff; later served as Secretary of State under President George W. Bush (born 1937)
+13717,Powhatan,a member of the Algonquian people who formerly lived in eastern Virginia
+13718,Powhatan,the Algonquian language of the Powhatan
+13719,Powhatan Wahunsonacock,Indian chief and founder of the Powhatan confederacy of tribes in eastern Virginia; father of Pocahontas (1550?-1618)
+13720,Powys John_Cowper_Powys,British writer of novels about nature; one of three literary brothers (1872-1963)
+13721,Powys Llewelyn_Powys,British writer of essays; one of three literary brothers (1884-1939)
+13722,Powys Theodore_Francis_Powys,British writer of allegorical novels; one of three literary brothers (1875-1953)
+13723,Poyang,a lake in central China that is connected to the Chang Jiang by a canal
+13724,Praetorian_Guard,the elite bodyguard of a Roman Emperor in ancient Rome
+13725,Praetorian_Guard Praetorian,a member of the Praetorian Guard
+13726,Prague Praha Prag Czech_capital,the capital and largest city of the Czech Republic in the western part of the country; a cultural and commercial center since the 14th century
+13727,Praia Cidade_de_Praia capital_of_Cape_Verde,the capital of Cape Verde on Sao Tiago Island
+13728,Prairial,ninth month of the Revolutionary calendar (May and June); the month of meadows
+13729,Prajapati,Hindu god personifying a creative force; equivalent to Brahma
+13730,Prakrit,any of the modern Indic languages
+13731,Prakrit,any of the vernacular Indic languages of north and central India (as distinguished from Sanskrit) recorded from the 3rd century BC to the 4th century AD
+13732,Praunus genus_Praunus,a genus of Mysidae
+13733,Praxiteles,ancient Greek sculptor (circa 370-330 BC)
+13734,Prayer_of_Azariah_and_Song_of_the_Three_Children,an Apocryphal book consisting of text added to the Book of Daniel
+13735,Pre-Raphaelite,a painter or writer dedicated to restoring early Renaissance ideals
+13736,Preakness,an annual race for three-year-old horses; held at Pimlico in Baltimore, Maryland
+13737,Precambrian Precambrian_eon Precambrian_aeon Precambrian_period,the eon following the Hadean time and preceding the Phanerozoic eon; from about 3,800 million years ago until 544 million years ago
+13738,Premium_Bond,a government bond that bears no interest or capital gains but enters the holder into lotteries
+13739,Prenanthes genus_Prenanthes,genus of North American and Asiatic perennial herbs having pinnatisect leaves small heads of drooping yellowish to purple flowers; sometimes includes species often placed in genus Nabalus
+13740,Presbyterian,a follower of Calvinism as taught in the Presbyterian Church
+13741,Presbyterian_Church,the Protestant denomination adhering to the views of John Calvin
+13742,Presbyterianism,the doctrines and practices of the Presbyterian Church: based in Calvinism
+13743,Presbytes genus_Presbytes mammal_Semnopithecus,langurs
+13744,Prescott,a town in central Arizona
+13745,President_of_the_United_States President Chief_Executive,the office of the United States head of state; "a President is elected every four years"
+13746,President_of_the_United_States United_States_President President Chief_Executive,the person who holds the office of head of state of the United States government; "the President likes to jog every morning"
+13747,Presidential_Directive,a directive issued by the President of the United States; usually addressed to all heads of departments and agencies
+13748,Presidents'_Day,the third Monday in February; commemorates both presidents Lincoln and Washington
+13749,Presley Elvis_Presley Elvis_Aron_Presley,United States rock singer whose many hit records and flamboyant style greatly influenced American popular music (1935-1977)
+13750,Pretender,a claimant to the throne or to the office of ruler (usually without just title)
+13751,Pretoria capital_of_South_Africa,city in the Transvaal; the seat of the executive branch of the government of South Africa
+13752,Priacanthidae family_Priacanthidae,small carnivorous percoid fishes found worldwide in tropical seas
+13753,Priacanthus genus_Priacanthus,type genus of the Priacanthidae
+13754,Priam,(Greek mythology) the last king of Troy; father of Hector and Paris and Cassandra
+13755,Priapus,(classical mythology) god of male procreative power and guardian of gardens and vineyards
+13756,Price Leontyne_Price Mary_Leontyne_Price,United States operatic soprano (born 1927)
+13757,Priestley Joseph_Priestley,English chemist who isolated many gases and discovered oxygen (independently of Scheele) (1733-1804)
+13758,Prima,used primarily as eating apples
+13759,Primates order_Primates,an animal order including lemurs and tarsiers and monkeys and apes and human beings
+13760,Primaxin,trade name for a parenteral antibiotic
+13761,Prime_Minister PM premier,the person who holds the position of head of the government in the United Kingdom
+13762,Primulaceae family_Primulaceae primrose_family,a dicotyledonous family of the order Primulales with a regular flower; widely distributed in the northern hemisphere
+13763,Primulales order_Primulales,Primulaceae; Theophrastaceae; Myrsinaceae; and (in some classifications) Plumbaginaceae
+13764,Primus_stove Primus,a portable paraffin cooking stove; used by campers
+13765,Prince-of-Wales'-heath Prince_of_Wales_heath Erica_perspicua,South African shrub grown for its profusion of white flowers
+13766,Prince_Albert,a man's double-breasted frock coat
+13767,Prince_Albert_yew Prince_Albert's_yew Saxe-gothea_conspicua,small yew having attractive foliage and partially weeping branches cultivated as an ornamental; mountains of southern Chile
+13768,Prince_Edward_Island,an island in the Gulf of Saint Lawrence; the smallest province of Canada
+13769,Prince_of_Wales,the male heir apparent of the British sovereign
+13770,Princeton,a university town in central New Jersey
+13771,Princeton_University Princeton,a university in New Jersey
+13772,Principe,an island in the Gulf of Guinea that is part of Sao Tome and Principe
+13773,Prinia genus_Prinia,a genus of Sylviidae
+13774,Priodontes genus_Priodontes,solely the giant armadillo
+13775,Prionace genus_Prionace,blue sharks
+13776,Prionotus genus_Prionotus,a genus of Triglidae
+13777,Pristidae family_Pristidae,large primitive rays with elongated snouts
+13778,Pristis genus_Pristis,type genus of the Pristidae
+13779,Pritzelago genus_Pritzelago,chamois cress
+13780,Prix_Goncourt,an award given annually for contributions to French literature
+13781,Prix_de_Rome,an annual prize awarded by the French government in a competition of painters and artists and sculptors and musicians and architects; the winner in each category receives support for a period of study in Rome
+13782,Proboscidea genus_Proboscidea,in some classifications included in the genus Martynia and hence the two taxonomic names for some of the unicorn plants
+13783,Proboscidea order_Proboscidea,an order of animals including elephants and mammoths
+13784,Procavia genus_Procavia,type genus of the Procaviidae
+13785,Procaviidae family_Procaviidae,includes all recent members of the order Hyracoidea
+13786,Procellaria genus_Procellaria,type genus of the Procellariidae
+13787,Procellariidae family_Procellariidae,petrels; fulmars; shearwaters
+13788,Procellariiformes order_Procellariiformes,petrels; albatrosses; shearwaters; diving petrels
+13789,Prociphilus genus_Prociphilus,a genus of Aphididae
+13790,Procnias genus_Procnias,bellbirds
+13791,Procrustes,(Greek mythology) a mythical giant who was a thief and murderer; he would capture people and tie them to an iron bed, stretching them or hacking off their legs to make them fit; was killed by Theseus
+13792,Procyon,the brightest star in Canis Minor
+13793,Procyon genus_Procyon,the type genus of the family Procyonidae: raccoons
+13794,Procyonidae family_Procyonidae,raccoons; coatis; cacomistles; kinkajous; and sometimes pandas
+13795,Progne genus_Progne,a genus of Hirundinidae
+13796,Progressive_Party Bull_Moose_Party,a former political party in the United States; founded by Theodore Roosevelt during the presidential campaign of 1912; its emblem was a picture of a bull moose
+13797,Prohibition_Party,a political party in the United States; formed in 1869 to oppose the manufacture and sale of alcoholic beverages
+13798,Prokhorov Aleksandr_Prokhorov Aleksandr_Mikjailovich_Prokhorov,Russian physicist whose research into ways of moving electrons around atoms led to the development of masers and lasers for producing high-intensity radiation (1916-2002)
+13799,Prokofiev Sergei_Sergeyevich_Prokofiev,Russian composer of ballets and symphonies and operas (1891-1953)
+13800,Prolog logic_programing logic_programming,a computer language designed in Europe to support natural language processing
+13801,Prometheus,(Greek mythology) the Titan who stole fire from Olympus and gave it to mankind; Zeus punished him by chaining him to a rock where an eagle gnawed at his liver until Hercules rescued him
+13802,Promised_Land,the goal towards which Christians strive
+13803,Prophets Nebiim,the second of three divisions of the Hebrew Scriptures
+13804,Prosauropoda suborder_Prosauropoda,the earliest known dinosaurs
+13805,Proserpina Proserpine,goddess of the underworld; counterpart of Greek Persephone
+13806,Prosimii suborder_Prosimii,not used in all classifications; in some classifications considered coextensive with the Lemuroidea; in others includes both Lemuroidea and Tarsioidea
+13807,Prosopis genus_Prosopis,genus of tropical or subtropical branching shrubs or trees: mesquite
+13808,Prosopium genus_Prosopium,whitefishes
+13809,Proteaceae family_Proteaceae protea_family,large family of Australian and South African shrubs and trees with leathery leaves and clustered mostly tetramerous flowers; constitutes the order Proteales
+13810,Proteales order_Proteales,coextensive with the family Proteaceae
+13811,Proteidae family_Proteidae,mud puppies
+13812,Proteles genus_Proteles,aardwolf
+13813,Proterochampsa genus_Proterochampsa,early archosaurian carnivore
+13814,Proterozoic Proterozoic_eon Proterozoic_aeon,from 2,500 to 544 million years ago; bacteria and fungi; primitive multicellular organisms
+13815,Protestant,an adherent of Protestantism
+13816,Protestant_Church Protestant,the Protestant churches and denominations collectively
+13817,Protestant_denomination,group of Protestant congregations
+13818,Protestantism,the theological system of any of the churches of western Christendom that separated from the Roman Catholic Church during the Reformation
+13819,Proteus,(Greek mythology) a prophetic god who served Poseidon; was capable of changing his shape at will
+13820,Proteus genus_Proteus,type genus of the Proteidae
+13821,Protista division_Protista,eukaryotic one-celled living organisms distinct from multicellular plants and animals: protozoa, slime molds, and eukaryotic algae
+13822,Protium genus_Protium,genus of chiefly tropical American trees having fragrant wood and yielding gum elemi
+13823,Protium_guianense,tropical American tree
+13824,Protium_heptaphyllum,tropical American tree
+13825,Proto-Indo_European PIE,a prehistoric unrecorded language that was the ancestor of all Indo-European languages
+13826,Proto-Norse,the Germanic language of Scandinavia up until about 700
+13827,Protoctista kingdom_Protoctista,in most modern classifications, replacement for the Protista; includes: Protozoa; Euglenophyta; Chlorophyta; Cryptophyta; Heterokontophyta; Rhodophyta; unicellular protists and their descendant multicellular organisms: regarded as distinct from plants and animals
+13828,Prototheria subclass_Prototheria,echidnas; platypus
+13829,Protozoa phylum_Protozoa,in some classifications considered a superphylum or a subkingdom; comprises flagellates; ciliates; sporozoans; amoebas; foraminifers
+13830,Protropin,trade name of a synthetic human growth hormone given to children deficient in the hormone; use by athletes and weightlifters is banned
+13831,Protura order_Protura,minute wingless arthropods: telsontails
+13832,Proudhon Pierre_Joseph_Proudhon,French socialist who argued that property is theft (1809-1865)
+13833,Proust Marcel_Proust,French novelist (1871-1922)
+13834,Provencal Occitan,the medieval dialects of Langue d'oc (southern France)
+13835,Provence,a former province of southeastern France; now administered with Cote d'Azur
+13836,Proverbs Book_of_Proverbs,an Old Testament book consisting of proverbs from various Israeli sages (including Solomon)
+13837,Providence capital_of_Rhode_Island,the capital and largest city of Rhode Island; located in northeastern Rhode Island on Narragansett Bay; site of Brown University
+13838,Provo,a city in north central Utah settled by Mormons
+13839,Proxima Proxima_Centauri,the nearest star to the sun; distance: 4.3 light years
+13840,Prudhoe_Bay,a bay on the northern coast of Alaska where oil was discovered in 1968
+13841,Prumnopitys genus_Prumnopitys,mostly dioecious evergreen conifers; leaves are softer than in Podocarpus
+13842,Prunella genus_Prunella,small genus of perennial mostly Eurasian having terminal spikes of small purplish or white flowers
+13843,Prunella genus_Prunella,type genus of the Prunellidae
+13844,Prunellidae family_Prunellidae,hedge sparrow
+13845,Prunus genus_Prunus,a genus of shrubs and trees of the family Rosaceae that is widely distributed in temperate regions
+13846,Prussia Preussen,a former kingdom in north-central Europe including present-day northern Germany and northern Poland; "in the 19th century Prussia led the economic and political unification of the German states"
+13847,Prussian,a German inhabitant of Prussia
+13848,Prussian_blue,a dark greenish-blue color
+13849,Przewalski's_horse Przevalski's_horse Equus_caballus_przewalskii Equus_caballus_przevalskii,wild horse of central Asia that resembles an ass; now endangered
+13850,Psalm,one of the 150 lyrical poems and prayers that comprise the Book of Psalms in the Old Testament; said to have been written by David
+13851,Psalms Book_of_Psalms,an Old Testament book consisting of a collection of 150 Psalms
+13852,Psalter Book_of_Psalms,a collection of Psalms for liturgical use
+13853,Psaltriparus genus_Psaltriparus,a genus of Paridae
+13854,Psenes genus_Psenes,a genus of Stromateidae
+13855,Psephurus genus_Psephurus,a genus of Polyodontidae
+13856,Psetta genus_Psetta,a genus of Bothidae
+13857,Psettichthys genus_Psettichthys,a genus of Soleidae
+13858,Pseudacris genus_Pseudacris,chorus frogs
+13859,Pseudaletia genus_Pseudaletia,moths whose larvae are armyworms
+13860,Pseudechis genus_Pseudechis,venomous Australian blacksnakes
+13861,Pseudemys genus_Pseudemys,sliders; red-bellied terrapin
+13862,Pseudepigrapha,52 texts written between 200 BC and AD 200 but ascribed to various prophets and kings in the Hebrew scriptures; many are apocalyptic in nature
+13863,Pseudobombax genus_Pseudobombax,tropical American deciduous shrubs or small trees
+13864,Pseudococcidae family_Pseudococcidae,scalelike insects: mealybugs
+13865,Pseudococcus genus_Pseudococcus,type genus of the Pseudococcidae
+13866,Pseudocolus genus_Pseudocolus,a genus of fungi belonging to the family Clathraceae
+13867,Pseudolarix genus_Pseudolarix,one species: golden larch
+13868,Pseudomonadales order_Pseudomonadales,one of two usually recognized orders of true bacteria; Gram-negative spiral or spherical or rod-shaped bacteria usually motile by polar flagella; some contain photosynthetic pigments
+13869,Pseudomonas genus_Pseudomonas,type genus of the family Pseudomonodaceae
+13870,Pseudomonas_pyocanea,a species of aerobic bacteria
+13871,Pseudomonodaceae family_Pseudomonodaceae,rod-shaped Gram-negative bacteria; include important plant and animal pathogens
+13872,Pseudopleuronectes genus_Pseudopleuronectes,a genus of Pleuronectidae
+13873,Pseudoryx genus_Pseudoryx,species of large cow-like mammals of Vietnam discovered by scientists in 1992
+13874,Pseudotaxus genus_Pseudotaxus,one species
+13875,Pseudotsuga genus_Pseudotsuga,douglas fir; closely related to genera Larix and Cathaya
+13876,Pseudowintera genus_Pseudowintera Wintera genus_Wintera,evergreen shrubs or small trees of Australia and New Zealand
+13877,Psidium genus_Psidium,guavas
+13878,Psilophytaceae family_Psilophytaceae,Paleozoic plants
+13879,Psilophytales order_Psilophytales,Paleozoic simple dichotomously branched plants of Europe and eastern Canada including the oldest known vascular land plants
+13880,Psilopsida class_Psilopsida Psilotatae class_Psilotatae,whisk ferns; comprising the family Psilotaceae or Psilotatae: vascular plants with no roots, partial if any leaf differentiation, and rudimentary spore sacs
+13881,Psilotaceae family_Psilotaceae,small family of lower ferns having nearly naked stems and minute scalelike leaves
+13882,Psilotales order_Psilotales,lower vascular plants having dichotomously branched sporophyte divided into aerial shoot and rhizome and lacking true roots
+13883,Psilotum genus_Psilotum,type genus of the Psilotaceae
+13884,Psithyrus genus_Psithyrus,a large bee that resembles the bumblebee but lacks pollen-collecting apparatus and a worker caste
+13885,Psittacidae family_Psittacidae,coextensive with the order Psittaciformes
+13886,Psittaciformes order_Psittaciformes,an order of birds including parrots and amazons and cockatoos and lorikeets and lories and macaws and parakeets
+13887,Psittacula genus_Psittacula,a genus of Psittacidae
+13888,Psittacus genus_Psittacus,type genus of the Psittacidae: usually restricted to the African grey
+13889,Psocidae family_Psocidae,a family of small soft-bodied insects that feed on decaying vegetation; related to booklice
+13890,Psocoptera order_Psocoptera Corrodentia order_Corrodentia,an order of insects: includes booklice and bark-lice
+13891,Psophia genus_Psophia,type genus of the Psophiidae: trumpeters
+13892,Psophiidae family_Psophiidae,trumpeters
+13893,Psophocarpus genus_Psophocarpus,species of tropical Asian and African climbing herbs
+13894,Psoralea genus_Psoralea,widely distributed genus of herbs or shrubs with glandular compound leaves and spicate or racemose purple or white flowers
+13895,Psyche,(Greek mythology) a beautiful princess loved by Cupid who visited her at night and told her she must not try to see him; became the personification of the soul
+13896,Psychodidae family_Psychodidae,very small two-winged flies with hairy wings that develop in moss and damp vegetable matter: sand flies
+13897,Psychopsis genus_Psychopsis,epiphytic orchids of Central and South America formerly included in genus Oncidium
+13898,Psychopsis_krameriana Oncidium_papilio_kramerianum,orchid of South and Central America having flowers similar to but smaller than Psychopsis papilio; sometimes placed in genus Oncidium
+13899,Psychopsis_papilio Oncidium_papilio,orchid of South America and Trinidad having large yellow and reddish-brown flowers; sometimes placed in genus Oncidium
+13900,Psychotria genus_Psychotria,tropical chiefly South American shrubs and trees
+13901,Psyllidae family_Psyllidae Chermidae family_Chermidae,jumping plant lice
+13902,Ptah,a major Egyptian god; shaper of the world; father of gods and men; worshipped especially at Memphis
+13903,Pteridaceae family_Pteridaceae,one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems; Pteridaceae is itself in turn sometimes further subdivided
+13904,Pteridium genus_Pteridium,a genus of ferns belonging to the family Dennstaedtiaceae
+13905,Pteridophyta division_Pteridophyta,containing all the vascular plants that do not bear seeds: ferns, horsetails, club mosses, and whisk ferns; in some classifications considered a subdivision of Tracheophyta
+13906,Pteridospermae group_Pteridospermae Pteridospermaphyta group_Pteridospermaphyta,used in some classification systems: a group of extinct fossil gymnosperms coextensive with the order Cycadofilicales
+13907,Pteridospermopsida class_Pteridospermopsida,extinct gymnosperms most of Carboniferous to Jurassic: seed ferns and allies
+13908,Pteriidae family_Pteriidae,pearl oysters
+13909,Pteris genus_Pteris,large genus of terrestrial ferns of tropics and subtropics; sometimes placed in family Polypodiaceae
+13910,Pteris_cretica,cultivated in many varieties as houseplants
+13911,Pternohyla genus_Pternohyla,burrowing tree frogs
+13912,Pterocarpus genus_Pterocarpus,genus of tropical trees or climbers having usually broadly winged pods
+13913,Pterocarya genus_Pterocarya,Asiatic nut trees: wing nuts
+13914,Pterocles genus_Pterocles,type genus of the Pteroclididae
+13915,Pteroclididae family_Pteroclididae,sandgrouses
+13916,Pterocnemia genus_Pterocnemia,a genus of birds of the family Rheidae
+13917,Pterodactylidae family_Pterodactylidae,a reptile family in the order Pterosauria
+13918,Pterodactylus genus_Pterodactylus,a reptile genus of Pterodactylidae
+13919,Pterois genus_Pterois,lionfishes
+13920,Pteropsida subdivision_Pteropsida,used in former classifications to include all ferns and flowering plants and divided into the three classes Filicinae and Gymnospermae and Angiospermae
+13921,Pteropus genus_Pteropus,a genus of Megachiroptera
+13922,Pteropus_capestratus,a variety of fruit bat
+13923,Pteropus_hypomelanus,a variety of fruit bat
+13924,Pterosauria order_Pterosauria,extinct flying reptiles: pterosaurs
+13925,Pterospermum genus_Pterospermum,genus of tropical Asian trees and shrubs
+13926,Pterostylis genus_Pterostylis,genus of terrestrial orchids of Australia and New Zealand and western Pacific
+13927,Ptilocercus genus_Ptilocercus,pentails
+13928,Ptilocrinus genus_Ptilocrinus,sea lilies
+13929,Ptilonorhynchidae family_Ptilonorhynchidae,bowerbirds
+13930,Ptilonorhynchus genus_Ptilonorhynchus,type genus of the Ptilonorhynchidae
+13931,Ptloris genus_Ptloris,a genus of Paradisaeidae
+13932,Ptolemaic_system,(astronomy) Ptolemy's model of the universe with the Earth at the center
+13933,Ptolemy Claudius_Ptolemaeus,Alexandrian astronomer (of the 2nd century) who proposed a geocentric system of astronomy that was undisputed until the late Renaissance
+13934,Ptolemy Ptolemaic_dynasty,an ancient dynasty of Macedonian kings who ruled Egypt from 323 BC to 30 BC; founded by Ptolemy I and ended with Cleopatra
+13935,Ptolemy_I,the king of Egypt who founded the Macedonian dynasty in Egypt; a close friend and general of Alexander the Great who took charge of Egypt after Alexander died (circa 367-285 BC)
+13936,Ptolemy_II,son of Ptolemy I and king of Egypt who was said to be responsible for the Septuagint (circa 309-247 BC)
+13937,Ptyas genus_Ptyas,Asian rat snakes
+13938,Ptychozoon genus_Ptychozoon,flying geckos
+13939,Puccini Giacomo_Puccini,Italian operatic composer noted for the dramatic realism of his operas (1858-1924)
+13940,Puccinia genus_Puccinia,type genus of the Pucciniaceae; a large genus of parasitic fungi including many that are destructive to various economic plants
+13941,Pucciniaceae family_Pucciniaceae,large important family of rust fungi
+13942,Puck Robin_Goodfellow,a mischievous sprite of English folklore
+13943,Puebla Puebla_de_Zaragoza Heroica_Puebla_de_Zaragoza,a city in south central Mexico (southeast of Mexico City) on the edge of central Mexican plateau
+13944,Pueblo,a member of any of about two dozen Native American peoples called `Pueblos' by the Spanish because they live in pueblos (villages built of adobe and rock)
+13945,Pueblo,a city in Colorado to the south of Colorado Springs
+13946,Pueraria genus_Pueraria,genus of woody Asiatic vines: kudzu
+13947,Puerto_Rican,a native or resident of Puerto Rico
+13948,Puerto_Rico Porto_Rico,the smallest and easternmost of the Greater Antilles in the Caribbean
+13949,Puerto_Rico Porto_Rico Commonwealth_of_Puerto_Rico PR,a self-governing commonwealth associated with the United States occupying the island of Puerto Rico
+13950,Puffinus genus_Puffinus,shearwaters
+13951,Puget_Sound,an inlet of the North Pacific in northwestern Washington State
+13952,Pugin Augustus_Welby_Northmore_Pugin,English architect who played a prominent role in the 19th century revival of Gothic architecture (1812-1852)
+13953,Puglia Apulia,a region in southeastern Italy on the Adriatic
+13954,Pujunan Maidu,a Penutian language spoken by the Maidu
+13955,Puka_Inti Sol_Rojo Red_Sun,a small but violent terrorist organization formed in Ecuador in the early 1990s; responsible for bombing several government buildings
+13956,Pulex genus_Pulex,type genus of the Pulicidae
+13957,Pulex_irritans,the most common flea attacking humans
+13958,Pulicaria genus_Pulicaria,genus of temperate Old World herbs: fleabane
+13959,Pulicidae family_Pulicidae,many common fleas attacking humans and domestic animals
+13960,Pulitzer Joseph_Pulitzer,United States newspaper publisher (born in Hungary) who established the Pulitzer prizes (1847-1911)
+13961,Pullman Pullman_car,luxurious passenger car; for day or night travel
+13962,Pulmonata order_Pulmonata,large order of gastropods usually breathing by means of a lung-like sac comprising most land snails and slugs and many freshwater snails
+13963,Pulsatilla genus_Pulsatilla,includes a group of plants that in some classifications are included in the genus Anemone: pasqueflowers
+13964,Punic,the Phoenician dialect of ancient Carthage
+13965,Punic_War,one of the three wars between Carthage and Rome that resulted in the destruction of Carthage and its annexation by Rome; 264-241 BC, 218-201 BC, 149-146 BC
+13966,Punica genus_Punica,coextensive with the family Punicaceae
+13967,Punicaceae family_Punicaceae,one species: pomegranates
+13968,Punjab,a historical region on northwestern India and northern Pakistan
+13969,Punjabi Panjabi,a member of the people of Pakistan and Punjab
+13970,Punjabi Panjabi,the Indic language spoken by people in Pakistan and Punjab
+13971,Punta_Arenas,a city in southern Chile on the Strait of Magellan; the southernmost city in the world
+13972,Puppis,a constellation in the southern hemisphere between Vela and Canis Major that shaped like the stern of a boat
+13973,Purace,an inactive volcano in the Andes in southern Colombia; last erupted in 1950
+13974,Purana,a body of 18 works written between the first and 11th centuries and incorporating legends and speculative histories of the universe and myths and customary observances
+13975,Purcell Henry_Purcell,English organist at Westminster Abbey and composer of many theatrical pieces (1659-1695)
+13976,Purim,(Judaism) a Jewish holy day commemorating their deliverance from massacre by Haman
+13977,Puritan,a member of a group of English Protestants who in the 16th and 17th centuries thought that the Protestant Reformation under Elizabeth was incomplete and advocated the simplification and regulation of forms of worship
+13978,Puritanism,the beliefs and practices characteristic of Puritans (most of whom were Calvinists who wished to purify the Church of England of its Catholic aspects)
+13979,Puritanism,strictness and austerity in conduct and religion
+13980,Purkinje Jan_Evangelista_Purkinje Johannes_Evangelista_Purkinje,Bohemian physiologist remembered for his discovery of Purkinje cells and the Purkinje network (1787-1869)
+13981,Purkinje_cell,a large densely branching neuron that is the characteristic cell of the cerebellar cortex
+13982,Purkinje_fiber,a specialized cardiac muscle fiber that is part of the Purkinje network
+13983,Purkinje_network Purkinje's_tissue Purkinje's_system,a network of Purkinje fibers that carry the cardiac impulse from the atrioventricular node to the ventricles of the heart and causes them to contract
+13984,Purus Purus_River,a Brazilian river; tributary of the Amazon River
+13985,Pus Pansa,the tenth month of the Hindu calendar
+13986,Pusan,a city in southeastern South Korea on the Korean Strait; the chief port and second largest city
+13987,Pusey Edward_Pusey Edward_Bouverie_Pusey,English theologian who (with John Henry Newman and John Keble) founded the Oxford movement (1800-1882)
+13988,Pushan,celestial shepherd god; conductor of souls of the dead
+13989,Pushkin Alexander_Pushkin Aleksandr_Sergeyevich_Pushkin,Russian poet (1799-1837)
+13990,Putin Vladimir_Putin Vladimir_Vladimirovich_Putin,Russian statesman chosen as president of the Russian Federation in 2000; formerly director of the Federal Security Bureau (born in 1952)
+13991,Putrajaya capital_of_Malaysia,Malaysia's sparkling new capital
+13992,Pycnanthemum genus_Pycnanthemum Koellia genus_Koellia,American mountain mint
+13993,Pycnogonida order_Pycnogonida,sea spiders
+13994,Pydna Battle_of_Pydna,a major victory by the Romans over the Macedonians in 168 BC; resulted in the downfall of the ancient Macedonian kingdom
+13995,Pygmalion,(Greek mythology) a king who created a statue of a woman and fell in love with it; Aphrodite brought the sculpture to life as Galatea
+13996,Pygmy Pigmy,any member of various peoples having an average height of less than five feet
+13997,Pygopodidae family_Pygopodidae,Australian and Tasmanian lizards
+13998,Pygopus genus_Pygopus,type genus of the Pygopodidae; snake-shaped pleurodont lizard with no forelimbs and only rudimentary hind limbs
+13999,Pygoscelis genus_Pygoscelis,a genus of Spheniscidae
+14000,Pyle Howard_Pyle,United States writer and illustrator of children's books (1853-1911)
+14001,Pylodictus genus_Pylodictus,flathead catfishes
+14002,Pynchon Thomas_Pynchon,United States writer of pessimistic novels about life in a technologically advanced society (born in 1937)
+14003,Pyongyang capital_of_North_Korea,capital of North Korea and an industrial center; "Pyongyang is Korea's oldest city but little of its history has been preserved"
+14004,Pyracantha pyracanth fire_thorn firethorn,any of various thorny shrubs of the genus Pyracantha bearing small white flowers followed by hard red or orange-red berries
+14005,Pyralidae family_Pyralidae Pyralididae family_Pyralididae,bee moths; corn borers; flour moths
+14006,Pyralis genus_Pyralis,type genus of the Pyralidae
+14007,Pyramid Great_Pyramid Pyramids_of_Egypt,a massive monument with a square base and four triangular sides; begun by Cheops around 2700 BC as royal tombs in ancient Egypt
+14008,Pyrausta genus_Pyrausta,moths whose larvae are corn borers
+14009,Pyrenees,a chain of mountains between France and Spain
+14010,Pyrenees_daisy Leucanthemum_lacustre Chrysanthemum_lacustre,perennial of Portugal similar to the oxeye daisy
+14011,Pyrenomycetes class_Pyrenomycetes,class of fungi in which the fruiting body is a perithecium; includes powdery mildews and ergot and Neurospora
+14012,Pyrethrum genus_Pyrethrum,used in former classifications for plants later placed in genus Chrysanthemum and now often included in genus Tanacetum
+14013,Pyrex,a borosilicate glass with a low coefficient of expansion; used for heat-resistant glassware in cooking and chemistry
+14014,Pyrocephalus genus_Pyrocephalus,a genus of Tyrannidae
+14015,Pyrolaceae family_Pyrolaceae wintergreen_family,evergreen herbs of temperate regions: genera Pyrola, Chimaphila, Moneses, Orthilia
+14016,Pyrophorus genus_Pyrophorus,tropical click beetles
+14017,Pyrrhic_victory,a victory that is won by incurring terrible losses
+14018,Pyrrhocoridae family_Pyrrhocoridae,firebugs
+14019,Pyrrhula genus_Pyrrhula,bullfinches
+14020,Pyrrhus,king of Epirus; defeated the Romans in two battles in spite of staggering losses (319-272 BC)
+14021,Pyrrophyta phylum_Pyrrophyta,a division of lower plants comprising unicellular and biflagellate algae that form starchy compounds
+14022,Pyrrosia genus_Pyrrosia,epiphytic or lithophytic or terrestrial ferns of tropical Old World
+14023,Pyrularia genus_Pyrularia,small genus of chiefly Asiatic parasitic shrubs
+14024,Pyrus genus_Pyrus,fruit trees native to the Old World: pears
+14025,Pythagoras,Greek philosopher and mathematician who proved the Pythagorean theorem; considered to be the first true mathematician (circa 580-500 BC)
+14026,Pythia Pythoness,(Greek mythology) the priestess of Apollo at Delphi who transmitted the oracles
+14027,Pythiaceae family_Pythiaceae,fungi having sporangia usually borne successively and singly at the tips of branching sporangiophores
+14028,Pythian_Games,the ancient Panhellenic celebration at Delphi held every four years in the third year of the Olympiad in honor of Apollo
+14029,Pythius,epithet for Apollo; from the dragon Python which he killed
+14030,Python,(Greek mythology) dragon killed by Apollo at Delphi
+14031,Pythonidae family_Pythonidae,in some classifications a family separate from Boidae comprising Old World boas
+14032,Pythoninae subfamily_Pythoninae,Old World boas: pythons; in some classifications considered a separate family from Boidae
+14033,Pyxidanthera genus_Pyxidanthera,one species: pyxie; the eastern United States
+14034,Pyxis,a constellation in the southern hemisphere near Puppis and Antlia
+14035,Q q,the 17th letter of the Roman alphabet
+14036,QWERTY_keyboard,the standard typewriter keyboard; the keys for Q, W, E, R, T, and Y are the first six from the left on the top row of letter keys
+14037,Q_fever,an acute disease resembling influenza
+14038,Qaddafi Qadhafi Khadafy Gaddafi Muammar_al-Qaddafi Muammar_el-Qaddafi,Libyan leader who seized power in a military coup d'etat in 1969; deposed the Libyan monarchy and imposed socialism and Islamic orthodoxy on the country (born in 1942)
+14039,Qassam_Brigades Salah_al-Din_Battalions Iz_Al-Din_Al-Qassam_Battalions,the military arm of Hamas responsible for suicide bombings and other attacks on Israel
+14040,Qatar Qatar_Peninsula Katar Katar_Peninsula,a peninsula extending northward from the Arabian mainland into the Persian Gulf
+14041,Qatar State_of_Qatar Katar State_of_Katar,an Arab country on the peninsula of Qatar; achieved independence from the United Kingdom in 1971; the economy is dominated by oil
+14042,Qatari Katari,a native or inhabitant of Qatar
+14043,Qatari_dirham dirham,100 dirhams equal 1 riyal in Qatar
+14044,Qatari_monetary_unit,monetary unit in Qatar
+14045,Qatari_riyal riyal,the basic unit of money in Qatar
+14046,Qiang Qiangic,the Tibeto-Burman language spoken in Sichuan
+14047,Qibla,a small terrorist group of Muslims in South Africa formed in the 1980s; was inspired by Ayatollah Khomeini to create an Islamic state in South Africa
+14048,Qin Qin_dynasty Ch'in Ch'in_dynasty,the Chinese dynasty (from 246 BC to 206 BC) that established the first centralized imperial government and built much of the Great Wall
+14049,Qin_Shi_Huang_Ti Ch'in_Shih_Huang_Ti,the first Qin emperor who unified China, built much of the Great Wall, standardized weights and measures, and created a common currency and legal system (died 210 BC)
+14050,Qing Qing_dynasty Ch'ing Ch'ing_dynasty Manchu Manchu_dynasty,the last imperial dynasty of China (from 1644 to 1912) which was overthrown by revolutionaries; during the Qing dynasty China was ruled by the Manchu
+14051,Quadragesima Quadrigesima_Sunday,the first Sunday in Lent
+14052,Quai_d'Orsay,the street in Paris along the south bank of the Seine known for its governmental ministries
+14053,Quaker_gun,a dummy gun or piece of artillery made usually of wood
+14054,Quakerism,the theological doctrine of the Society of Friends characterized by opposition to war and rejection of ritual and a formal creed and an ordained ministry
+14055,Quaoar,a planetoid discovered in 2002
+14056,Quapaw,a member of the Siouan people of the Arkansas river valley in Arkansas
+14057,Quapaw,the Dhegiha dialect spoken by the Quapaw
+14058,Quaternary Quaternary_period Age_of_Man,last 2 million years
+14059,Quebec,the largest province of Canada; a French colony from 1663 to 1759 when it was lost to the British
+14060,Quebec Quebec_City,the French-speaking capital of the province of Quebec; situated on the Saint Lawrence River
+14061,Quebec_Bridge,a cantilever bridge in Quebec
+14062,Quebecois,a native or inhabitant of Quebec (especially one who speaks French)
+14063,Quechua Kechua,a member of a South American Indian people in Peru who were formerly the ruling class of the Inca empire
+14064,Quechua Kechua,a community of South American Indians in Peru who were formerly the ruling class of the Incan Empire
+14065,Quechua Quechuan Quechuan_language Kechua Kechuan,the language of the Quechua which was spoken by the Incas
+14066,Queckenstedt's_test,a test to determine whether there is a blockage of the spinal canal
+14067,Queen's_Counsel,Counsel to the Crown when the British monarch is a queen
+14068,Queen's_crape_myrtle pride-of-India Lagerstroemia_speciosa,native to Asia, Australia, and East Indies, where it provides timber called pyinma; used elsewhere as an ornamental for its large showy flowers
+14069,Queen_Charlotte_Sound,an inlet of the Pacific Ocean off the coast of British Columbia
+14070,Queen_Maud_Land,a region of Antarctica between Enderby Land and the Weddell Sea; claimed by Norway
+14071,Queen_of_England,the sovereign ruler of England
+14072,Queens,a borough of New York City
+14073,Queensboro_Bridge,a cantilever bridge across the East River between Manhattan and Queens
+14074,Queensland,a state in northeastern Australia
+14075,Queensland_bottletree narrow-leaved_bottletree Brachychiton_rupestris Sterculia_rupestris,large tree of Queensland having cream-colored flowers blotched with red inside; sometimes placed in genus Sterculia
+14076,Queensland_grass-cloth_plant Pipturus_argenteus,Australian plant of genus Pipturus whose fiber is used in making cloth
+14077,Queensland_hemp jellyleaf Sida_rhombifolia,herb widely distributed in tropics and subtropics used for forage and medicinally as a demulcent and having a fine soft bast stronger than jute; sometimes an aggressive weed
+14078,Queensland_nut Macadamia_tetraphylla,bushy tree with pink to purple flowers
+14079,Quercus genus_Quercus,oaks
+14080,Quetzalcoatl,an Aztec deity represented as a plumed serpent
+14081,Quezon_City,city on Luzon adjoining Manila
+14082,Quiche,a member of the Mayan people of south central Guatemala
+14083,Quiche,the Mayan language spoken by the Quiche
+14084,Quincy Josiah_Quincy,American patriot who presented the colonists' grievances to the English king (1744-1775)
+14085,Quine W._V._Quine Willard_Van_Orman_Quine,United States philosopher and logician who championed an empirical view of knowledge that depended on language (1908-2001)
+14086,Quinquagesima Quinquagesima_Sunday,the Sunday before Ash Wednesday (the beginning of Lent)
+14087,Quintana_Roo,a Mexican state on the eastern side of the Yucatan Peninsula
+14088,Quiscalus genus_Quiscalus,grackles
+14089,Quito capital_of_Ecuador,the capital of Ecuador
+14090,Qum,a city in northwestern Iran; a place of pilgrimage for Shiite Muslims
+14091,Quoratean,a group of languages of the Hokan family
+14092,R r,the 18th letter of the Roman alphabet
+14093,R-2 Mexican_valium rophy rope roofy roach forget_me_drug circle,street names for flunitrazepan
+14094,RAM_disk,(computer science) a virtual drive that is created by setting aside part of the random-access memory to use as if it were a group of sectors; "access to a RAM disk is very fast but the data it contains is lost when the system is turned off"
+14095,Ra Re,ancient Egyptian sun god with the head of a hawk; a universal creator; he merged with the god Amen as Amen-Ra to become the king of the gods
+14096,Rabat capital_of_Morocco,the capital of Morocco; located in the northwestern on the Atlantic coast
+14097,Rabbi,a Hebrew title of respect for a Jewish scholar or teacher
+14098,Rabelais Francois_Rabelais,author of satirical attacks on medieval scholasticism (1494-1553)
+14099,Rabi_I,the third month of the Islamic calendar
+14100,Rabi_II,the fourth month of the Islamic calendar
+14101,Rachel,(Old Testament) the second wife of Jacob and mother of Joseph and Benjamin
+14102,Rachmaninoff Sergei_Rachmaninoff Sergei_Vasilievich_Rachmaninoff Rachmaninov Sergei_Rachmaninov Sergei_Vasilievich_Rachmaninov,composer and piano virtuoso born in Russia (1873-1943)
+14103,Rachycentridae family_Rachycentridae,family of pelagic fishes containing solely the cobia
+14104,Rachycentron genus_Rachycentron,genus and family are coextensive and comprise only the cobia
+14105,Racine,a city in southeastern Wisconsin on Lake Michigan to the south of Milwaukee
+14106,Racine Jean_Racine Jean_Baptiste_Racine,French advocate of Jansenism; tragedian who based his works on Greek and Roman themes (1639-1699)
+14107,Radhakrishnan Sarvepalli_Radhakrishnan Sir_Sarvepalli_Radhakrishnan,Indian philosopher and statesman who introduced Indian philosophy to the West (1888-1975)
+14108,Radiigera genus_Radiigera,a genus of fungus belonging to the family Geastraceae
+14109,Radiigera_fuscogleba,a fungus similar to an earthstar except that it does not open up; the spore mass is brown at maturity with a column of sterile tissue extending up into it
+14110,Radiolaria order_Radiolaria,marine protozoa
+14111,Radyera genus_Radyera,very small genus of shrubs of southern hemisphere: bush hibiscus
+14112,Raffia genus_Raffia Raphia genus_Raphia,feather palm of tropical Africa and Madagascar and Central and South America widely grown for commercial purposes
+14113,Raffles Sir_Thomas_Raffles Sir_Thomas_Stamford_Raffles,British colonial administrator who founded Singapore (1781-1826)
+14114,Rafflesiaceae family_Rafflesiaceae,a family of parasitic plants of the order Aristolochiales
+14115,Rahu,a Hindu demon who swallows the sun causing eclipses
+14116,Rain-in-the-Face,a chief of the Sioux; he was with Sitting Bull and others at the Battle of Little Bighorn (1876) when General Custer's troops were massacred (1835-1905)
+14117,Rainier Mount_Rainier Mt._Rainier Mount_Tacoma,a mountain peak in central Washington; highest peak in the Cascade Range; (14,410 feet high)
+14118,Raja genus_Raja,type genus of the family Rajidae
+14119,Rajab,the seventh month of the Islamic calendar
+14120,Rajidae family_Rajidae,bottom-dwelling tropical rays: skates
+14121,Rajiformes order_Rajiformes Batoidei order_Batoidei,fish with dorsoventrally flattened bodies; includes: rays; skates; guitarfishes; sawfishes
+14122,Rajput Rajpoot,a member of the dominant Hindu military caste in northern India
+14123,Rakaposhi,a mountain peak in the Karakoram Range in northern Kashmir (25,560 feet high)
+14124,Raleigh Walter_Raleigh Sir_Walter_Raleigh Ralegh Walter_Ralegh Sir_Walter_Ralegh,English courtier (a favorite of Elizabeth I) who tried to colonize Virginia; introduced potatoes and tobacco to England (1552-1618)
+14125,Raleigh capital_of_North_Carolina,capital of the state of North Carolina; located in the east central part of the North Carolina
+14126,Rallidae family_Rallidae,rails; crakes; gallinules; coots
+14127,Rama,avatar of Vishnu whose name is synonymous with God; any of three incarnations: Ramachandra or Parashurama or Balarama; "in Hindu folklore Rama is the epitome of chivalry and courage and obedience to sacred law"
+14128,Ramachandra,a hero in Hindu mythology; an incarnation of Vishnu
+14129,Ramadan,the ninth month of the Islamic calendar; the month of fasting; the holiest period for the Islamic faith
+14130,Ramadan,(Islam) a fast (held from sunrise to sunset) that is carried out during the Islamic month of Ramadan
+14131,Ramalina genus_Ramalina,shrubby lichens of the family Usneaceae having a flattened thallus
+14132,Ramanavami,Hindu lunar holiday (on the 9th day of Caitra) to celebrate the birth of Rama
+14133,Ramayana,one of two classical Hindu epics telling of the banishment of Rama from his kingdom and the abduction of his wife by a demon and Rama's restoration to the throne
+14134,Rambouillet,hardy sheep developed from the merino producing both good mutton and fine wool
+14135,Rameau Jean-Philippe_Rameau,French composer of operas whose writings laid the foundation for the modern theory of harmony (1683-1764)
+14136,Rameses Ramesses Ramses,any of 12 kings of ancient Egypt between 1315 and 1090 BC
+14137,Rameses_II Ramesses_II Ramses_II Rameses_the_Great Ramesses_the_Great Ramses_the_Great,king of Egypt between 1304 and 1237 BC who built many monuments
+14138,Ramman,god of storms and wind; corresponds to Babylonian Adad
+14139,Ramon_y_Cajal Santiago_Ramon_y_Cajal,Spanish histologist noted for his work on the structure of the nervous system (1852-1934)
+14140,Ramphastidae family_Ramphastidae,toucans
+14141,Ramphomicron genus_Ramphomicron,thornbills
+14142,Ramsay_Hunt_syndrome,syndrome resulting from infection by the herpes varicella zoster virus; characterized by vertigo and pain in the ears and facial nerve paralysis and sometimes hearing loss
+14143,Rana genus_Rana,type genus of the Ranidae
+14144,Ranales order_Ranales Ranunculales order_Ranunculales,herbs, shrubs and trees: includes families Ranunculaceae; Annonaceae; Berberidaceae; Magnoliaceae; Menispermaceae; Myristicaceae; Nymphaeaceae; Lardizabalaceae; Lauraceae; Calycanthaceae; Ceratophyllaceae; Cercidiphyllaceae
+14145,Ranatra genus_Ranatra,elongate very slender water scorpions
+14146,Rand Ayn_Rand,United States writer (born in Russia) noted for her polemical novels and political conservativism (1905-1982)
+14147,Rangifer genus_Rangifer,reindeer or caribou
+14148,Ranidae family_Ranidae,a family nearly cosmopolitan in distribution: true frogs
+14149,Rankin Jeannette_Rankin,leader in the women's suffrage movement in Montana; the first woman to serve in the United States House of Representatives (1880-1973)
+14150,Rankine,a unit of temperature on the Rankine scale
+14151,Rankine_scale,a scale of absolute temperature in Fahrenheit degrees; the freezing point of water is 491.69 degrees and the boiling point of water is 671.69 degrees
+14152,Ranunculaceae family_Ranunculaceae buttercup_family crowfoot_family,a family of Ranunculaceae
+14153,Ranunculus genus_Ranunculus,annual, biennial or perennial herbs: buttercup; crowfoot
+14154,Ranvier's_nodes nodes_of_Ranvier,small gaps in the myelin sheath of medullated axons
+14155,Raoulia genus_Raoulia,genus of low-growing mat-forming New Zealand plants; in some classifications includes species placed in genus Haastia
+14156,Rapateaceae family_Rapateaceae,South American herbs somewhat resembling members of the Juncaceae
+14157,Raphael,an archangel of the Hebrew tradition
+14158,Raphael Raffaello_Santi Raffaello_Sanzio,Italian painter whose many paintings exemplify the ideals of the High Renaissance (1483-1520)
+14159,Raphanus genus_Raphanus,radish
+14160,Raphicerus genus_Raphicerus,African antelopes: steenboks
+14161,Raphidae family_Raphidae,extinct dodos and solitaires
+14162,Raphidiidae family_Raphidiidae,a family of arthropods of the suborder Megaloptera, including snakeflies
+14163,Raphus genus_Raphus,type genus of the Raphidae: dodos
+14164,Rapid_City,a town in southwestern South Dakota in the eastern part of the Black Hills
+14165,Rappahannock Rappahannock_River,a river that flows across eastern Virginia into the Tidewater region
+14166,Raptores order_Raptores,term used in former classifications; erroneously grouped together birds of the orders Falconiformes and Strigiformes
+14167,Rasht Resht,city in northwestern Iran near the Caspian Sea
+14168,Rashtriya_Swayamsevak_Sangh National_Volunteers_Association,an all-male organization begun in 1925 to foster nationalism in India's Hindus
+14169,Rask Rasmus_Christian_Rask,Danish philologist whose work on Old Norse pioneered in the field of comparative linguistics (1787-1832)
+14170,Raskolnikov Rodya_Raskolnikov,a fictional character in Dostoevsky's novel `Crime and Punishment'; he kills old women because he believes he is beyond the bounds of good or evil
+14171,Rasmussen Kund_Johan_Victor_Rasmussen,Danish ethnologist and Arctic explorer; led expeditions into the Arctic to find support for his theory that Eskimos and North American Indians originally migrated from Asia (1879-1933)
+14172,Rasputin Grigori_Efimovich_Rasputin,Siberian peasant monk who was religious advisor in the court of Nicholas II; was assassinated by Russian noblemen who feared that his debauchery would weaken the monarchy (1872-1916)
+14173,Rastafari Rastas,(Jamaica) a Black youth subculture and religious movement that arose in the ghettos of Kingston, Jamaica, in the 1950s; males grow hair in long dreadlocks and wear woolen caps; use marijuana and listen to reggae music
+14174,Rastafarian,(Ethiopia) adherents of an African religion that regards Ras Tafari as divine
+14175,Rastafarian Rasta,follower of Rastafarianism
+14176,Rastafarianism,a religious cult based on a belief that Ras Tafari (Haile Selassie) is the Messiah and that Africa (especially Ethiopia) is the Promised Land
+14177,Ratibida genus_Ratibida,genus of perennial wildflowers of North American plains and prairies; often cultivated for their showy flower heads
+14178,Ratitae superorder_Ratitae,used in former classifications to include all ratite bird orders
+14179,Rattigan Terence_Rattigan Sir_Terence_Mervyn_Rattigan,British playwright (1911-1977)
+14180,Rattus genus_Rattus,common house rats; upper incisors have a beveled edge
+14181,Ravel Maurice_Ravel,French composer and exponent of Impressionism (1875-1937)
+14182,Ravenna Battle_of_Ravenna,a battle between the French and an alliance of Spaniards and Swiss and Venetians in 1512
+14183,Ravenna_grass wool_grass Erianthus_ravennae,grass often cultivated for its long white-ribbed leaves and large plumes resembling those of pampas grass
+14184,Rawalpindi,an ancient city in northeastern Pakistan; served as capital of Pakistan while Islamabad was being built
+14185,Rayleigh Third_Baron_Rayleigh Lord_Rayleigh John_William_Strutt,English physicist who studied the density of gases and discovered argon; made important contributions to acoustic theory (1842-1919)
+14186,Rayleigh_disk,an acoustic radiometer consisting of a light disk suspended from a quartz thread; when exposed to a progressive sound wave its torque can measure velocity
+14187,Read_method_of_childbirth Read_method,a method of natural childbirth that assumes it is a normal process and that the pain is largely psychological; involves education and breathing exercises to foster relaxation and other exercises
+14188,Reading,a city on the River Thames in Berkshire in southern England
+14189,Reagan Ronald_Reagan Ronald_Wilson_Reagan President_Reagan,40th President of the United States (1911-2004)
+14190,Reagan_administration,the executive under President Reagan
+14191,Real_Estate_Investment_Trust REIT,an investment trust that owns and manages a pool of commercial properties and mortgages and other real estate assets; shares can be bought and sold in the stock market
+14192,Real_IRA Real_Irish_Republican_Army RIRA Dissident_Irish_Republican_Army,a radical terrorist group that broke away in 1997 when the mainstream Provisional IRA proposed a cease-fire; has continued terrorist activities in opposition to any peace agreement
+14193,Realtor,a real estate agent who is a member of the National Association of Realtors
+14194,Reaumur Rene_Antoine_Ferchault_de_Reaumur,French physicist who invented the alcohol thermometer (1683-1757)
+14195,Reaumur_scale,a temperature scale on which water freezes at 0 degrees and boils at 80 degrees
+14196,Reaumur_thermometer,an alcohol thermometer calibrated in degrees Reaumur
+14197,Rebecca Rebekah,(Old Testament) wife of Isaac and mother of Jacob and Esau
+14198,Rebel Reb Johnny_Reb Johnny greyback,`Johnny' was applied as a nickname for Confederate soldiers by the Federal soldiers in the American Civil War; `greyback' derived from their grey Confederate uniforms
+14199,Received_Pronunciation,the approved pronunciation of British English; originally based on the King's English as spoken at public schools and at Oxford and Cambridge Universities (and widely accepted elsewhere in Britain); until recently it was the pronunciation of English used in British broadcasting
+14200,Recife Pernambuco,a port city of northeastern Brazil on the Atlantic
+14201,Reconstruction Reconstruction_Period,the period after the American Civil War when the southern states were reorganized and reintegrated into the Union; 1865-1877
+14202,Recurvirostra genus_Recurvirostra,type genus of the Recurvirostridae: avocets
+14203,Recurvirostridae family_Recurvirostridae,long-legged shorebirds
+14204,Red Red_River,a tributary of the Mississippi River that flows eastward from Texas along the southern boundary of Oklahoma and through Louisiana
+14205,Red_Army_Faction RAF,a Marxist and Maoist terrorist organization in Germany; a network of underground guerillas who committed acts of violence in the service of the class struggle; a successor to the Baader-Meinhof Gang; became one of Europe's most feared terrorist groups; disbanded in 1998
+14206,Red_Brigades Brigate_Rosse BR,a Marxist-Leninist terrorist organization that arose out of a student protest movement in the late 1960s; wants to separate Italy from NATO and advocates violence in the service of class warfare and revolution; mostly inactive since 1989
+14207,Red_Cloud,leader of the Oglala who resisted the development of a trail through Wyoming and Montana by the United States government (1822-1909)
+14208,Red_Cross,an international organization that cares for the sick or wounded or homeless in wartime
+14209,Red_Delicious,a sweet eating apple with bright red skin; most widely grown apple worldwide
+14210,Red_Guard,a radical political movement by Chinese youths who espoused Maoist principles
+14211,Red_Hand_Defenders RHD,a paramilitary group of Protestants in Northern Ireland that tries to prevent any political settlement with the Irish Republic; attacks interests of Catholic civilians in Northern Ireland; responsible for arson and bombing and murder
+14212,Red_Sea,a long arm of the Indian Ocean between northeast Africa and Arabia; linked to the Mediterranean at the north end by the Suez Canal
+14213,Red_Tai,a branch of the Tai languages
+14214,Redding,a town in north central California on the Sacramento River
+14215,Redford Robert_Redford Charles_Robert_Redford,United States actor and filmmaker who starred with Paul Newman in several films (born in 1936)
+14216,Rediffusion,a system for distributing radio or tv programs
+14217,Redonda,an island in Antigua and Barbuda
+14218,Redskin Injun red_man,(slang) offensive term for Native Americans
+14219,Reduviidae family_Reduviidae,assassin bugs
+14220,Redwood_National_Park,a national park in California featuring a redwood forest and Pacific Ocean coastline
+14221,Reed John_Reed,United States journalist who reported on the October Revolution from Petrograd in 1917; founded the Communist Labor Party in America in 1919; is buried in the Kremlin in Moscow (1887-1920)
+14222,Reed Walter_Reed,United States physician who proved that yellow fever is transmitted by mosquitoes (1851-1902)
+14223,Reform_Jew,liberal Jew who tries to adapt all aspects of Judaism to modern circumstances
+14224,Reform_Judaism,the most liberal Jews; Jews who do not follow the Talmud strictly but try to adapt all of the historical forms of Judaism to the modern world
+14225,Reform_Judaism,beliefs and practices of Reform Jews
+14226,Reformation Protestant_Reformation,a religious movement of the 16th century that began as an attempt to reform the Roman Catholic Church and resulted in the creation of Protestant churches
+14227,Regalecidae family_Regalecidae,ribbonfishes
+14228,Regency,the period from 1811-1820 when the Prince of Wales was regent during George III's periods of insanity
+14229,Reggane,a town in central Algeria
+14230,Regina,the provincial capital of Saskatchewan
+14231,Regius_professor,holder of a British professorship created by a royal patron
+14232,Reglaecus genus_Regalecus,type genus of the Regalecidae
+14233,Regulus,the brightest star in Leo
+14234,Regulus genus_Regulus,a genus of birds of the family Sylviidae including kinglets
+14235,Rehnquist William_Rehnquist William_Hubbs_Rehnquist,United States jurist who served as an associate justice on the United States Supreme Court from 1972 until 1986, when he was appointed chief justice (born in 1924)
+14236,Reich,the German state
+14237,Reich Steve_Reich Stephen_Michael_Reich,United States composer (born in 1936)
+14238,Reich Wilhelm_Reich,Austrian born psychoanalyst who lived in the United States; advocated sexual freedom and believed that cosmic energy could be concentrated in a human being (1897-1957)
+14239,Reichstein Tadeus_Reichstein,a Swiss chemist born in Poland; studied the hormones of the adrenal cortex
+14240,Reid Thomas_Reid,Scottish philosopher of common sense who opposed the ideas of David Hume (1710-1796)
+14241,Reign_of_Terror,the historic period (1793-94) during the French Revolution when thousands were executed; "the Reign of the Bourbons ended and the Reign of Terror began"
+14242,Reiter Hans_Conrad_Julius_Reiter,German bacteriologist who described a disease now known as Reiter's syndrome and who identified the spirochete that causes syphilis in humans (1881-1969)
+14243,Reiter's_syndrome Reiter's_disease,an inflammatory syndrome (etiology unknown) predominantly in males; characterized by arthritis and conjunctivitis and urethritis
+14244,Reithrodontomys genus_Reithrodontomys,New World harvest mice
+14245,Religious_Society_of_Friends Society_of_Friends Quakers,a Christian sect founded by George Fox about 1660; commonly called Quakers
+14246,Rembrandt Rembrandt_van_Rijn Rembrandt_van_Ryn Rembrandt_Harmensz_van_Rijn,influential Dutch artist (1606-1669)
+14247,Remembrance_Day Remembrance_Sunday Poppy_Day,the Sunday nearest to November 11 when those who died in World War I and World War II are commemorated
+14248,Remilegia genus_Remilegia,a genus of Echeneididae
+14249,Remus,(Roman mythology) the twin brother of Romulus
+14250,Renaissance Renascence,the period of European history at the close of the Middle Ages and the rise of the modern world; a cultural rebirth from the 14th through the middle of the 17th centuries
+14251,Renaissance_man,a scholar during the Renaissance who (because knowledge was limited) could know almost everything about many topics
+14252,Renaissance_man generalist,a modern scholar who is in a position to acquire more than superficial knowledge about many different interests; "a statistician has to be something of a generalist"
+14253,Reno,a city in western Nevada at the foot of the Sierra Nevada Mountains; known for gambling casinos and easy divorce and remarriage
+14254,Renoir Pierre_Auguste_Renoir,French impressionist painter (1841-1919)
+14255,Reoviridae,a family of arboviruses carried by arthropods
+14256,Reptantia suborder_Reptantia,lobsters; crabs
+14257,Reptilia class_Reptilia,class of cold-blooded air-breathing vertebrates with completely ossified skeleton and a body usually covered with scales or horny plates; once the dominant land animals
+14258,Republican,a member of the Republican Party
+14259,Republican Republican_River,a tributary of the Kansas River that flows from eastern Colorado eastward through Nebraska and Kansas
+14260,Republican_Guard,formerly Iraq's elite military unit whose primary role was to protect the government in Baghdad
+14261,Republican_Party GOP,the younger of two major political parties in the United States; GOP is an acronym for grand old party
+14262,Requiem,a musical setting for a Mass celebrating the dead
+14263,Requiem,a Mass celebrated for the dead
+14264,Resedaceae family_Resedaceae mignonette_family,mainly Mediterranean herbs: mignonette
+14265,Reserve_Officers_Training_Corps ROTC,a training program to prepare college students to be commissioned officers
+14266,Respighi Ottorino_Respighi,Italian composer remembered for his symphonic poems (1879-1936)
+14267,Restoration,the reign of Charles II in England; 1660-1685
+14268,Restoration,the re-establishment of the British monarchy in 1660
+14269,Resurrection Christ's_Resurrection Resurrection_of_Christ,(New Testament) the rising of Christ on the third day after the Crucifixion
+14270,Retama genus_Retama,small genus of Mediterranean shrubs; often included in genus Genista
+14271,Reticulitermes genus_Reticulitermes,includes species highly destructive to structures and living trees
+14272,Reticulitermes_flanipes,destructive United States termite
+14273,Reticulitermes_lucifugus,destructive European termite
+14274,Reticulum,a small constellation in the southern hemisphere near Dorado and Hydrus
+14275,Retrophyllum genus_Retrophyllum,small genus of tropical evergreen dioecious shrubs or trees of Oceania and tropical South America
+14276,Reuben,(Old Testment) a son of Jacob and forefather of one of the tribes of Israel
+14277,Reuben,a hot sandwich with corned beef and Swiss cheese and sauerkraut on rye bread
+14278,Revelation Revelation_of_Saint_John_the_Divine Apocalypse Book_of_Revelation,the last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle
+14279,Revere Paul_Revere,American silversmith remembered for his midnight ride (celebrated in a poem by Longfellow) to warn the colonists in Lexington and Concord that British troops were coming (1735-1818)
+14280,Reverend,a title of respect for a clergyman
+14281,Revised_Standard_Version,a revision of the American Standard Version
+14282,Revised_Version,a British revision of the Authorized Version
+14283,Revolutionary_Armed_Forces_of_Colombia Fuerzas_Armadas_Revolucionarios_de_Colombia FARC,a powerful and wealthy terrorist organization formed in 1957 as the guerilla arm of the Colombian communist party; opposed to the United States; has strong ties to drug dealers
+14284,Revolutionary_Organization_17_November 17_November,a Marxist-Leninist terrorist organization in Greece that is violently opposed to imperialism and capitalism and NATO and the United States; an active terrorist group during the 1980s
+14285,Revolutionary_People's_Liberation_Party Revolutionary_People's_Liberation_Front,an extreme Marxist terrorist organization in Turkey that is opposed to NATO and the United States; attacks Turkish security and military officials
+14286,Revolutionary_People's_Struggle ELA,an extreme leftist terrorist group formed in Greece in 1971 to oppose the military junta that ruled Greece from 1967 to 1974; a revolutionary group opposed to capitalism and imperialism and the United States
+14287,Revolutionary_Proletarian_Nucleus Revolutionary_Proletarian_Initiative_Nuclei NIPR,a clandestine group of leftist extremists who oppose Italy's labor policies and foreign policy; responsible for bombing building in the historic center of Rome from 2000 to 2002
+14288,Revolutionary_United_Front RUF,a terrorist group formed in the 1980s in Sierra Leone; seeks to overthrow the government and gain control of the diamond producing regions; responsible for attacks on civilians and children, widespread torture and murder and using children to commit atrocities; sponsored by the president of Liberia
+14289,Revolutionary_calendar,the calendar adopted by the first French Republic in 1793 and abandoned in 1805; dates were calculated from Sept. 22, 1792
+14290,Revolutionary_calendar_month,a month in the Revolutionary calendar
+14291,Reye's_syndrome,acquired encephalopathy following acute viral infections (especially influenza or chicken pox) in young children; characterized by fever, vomiting, disorientation, coma, and fatty infiltration of the liver
+14292,Reykjavik capital_of_Iceland,the capital and chief port of Iceland on the southwestern coast of Iceland; buildings are heated by natural hot water
+14293,Reynard,a conventional name for a fox used in tales following usage in the old epic `Reynard the Fox'
+14294,Reynolds Sir_Joshua_Reynolds,English portrait painter and first president of the Royal Academy (1723-1792)
+14295,Rh-negative_blood_type Rh-negative_blood Rh_negative,the blood group whose red cells lack the Rh factor (Rh antigen)
+14296,Rh-positive_blood_type Rh_positive,the blood group (approximately 85% of people) whose red cells have the Rh factor (Rh antigen)
+14297,Rh_antibody,rhesus factor antibody
+14298,Rh_incompatibility,incompatibility of Rh blood types; a transfusion of Rh-positive blood given to a Rh-negative person (or vice versa) can result in hemolysis and anemia
+14299,Rhabdoviridae,a family of arborviruses carried by arthropods
+14300,Rhadamanthus,(Greek mythology) a judge of the dead in the underworld
+14301,Rhaeto-Romance Rhaeto-Romanic,Romance dialects spoken in parts of southeastern Switzerland and northern Italy and the Tyrol
+14302,Rhagoletis genus_Rhagoletis,a genus of Trypetidae
+14303,Rhamnaceae family_Rhamnaceae buckthorn_family,trees and shrubs usually thorny bearing drupaceous fruit many having medicinal value
+14304,Rhamnales order_Rhamnales,an order of dicotyledonous plants
+14305,Rhamnus genus_Rhamnus,type genus of the Rhamnaceae: buckthorns
+14306,Rhapis genus_Rhapis,genus of small clump-forming fan palms of China and Japan
+14307,Rhea,fertility goddess in ancient Greek mythology; wife of Cronus and mother of Zeus; identified with Roman Ops and Cybele of ancient Asia Minor
+14308,Rhea_Silvia Rea_Silvia,(Roman mythology) a vestal virgin who became the mother by Mars of the twins Romulus and Remus
+14309,Rheidae family_Rheidae,a family of birds coextensive with the order Rheiformes
+14310,Rheiformes order_Rheiformes,a ratite bird order: birds intermediate in characteristics between ostriches and emus: recent and extinct rheas
+14311,Rheims Reims,a city in northeastern France to the east of Paris; scene of the coronation of most French kings; site of the unconditional German surrender in 1945 at the end of World War II
+14312,Rheum genus_Rheum,rhubarb
+14313,Rhexia genus_Rhexia,deer grass
+14314,Rhincodon genus_Rhincodon,whale sharks
+14315,Rhincodontidae family_Rhincodontidae,small-toothed sharks comprising only one species
+14316,Rhine J._B._Rhine Joseph_Banks_Rhine,United States parapsychologist (1895-1980)
+14317,Rhine Rhine_River Rhein,a major European river carrying more traffic than any other river in the world; flows into the North Sea
+14318,Rhine_wine Rhenish hock,any of several white wines from the Rhine River valley in Germany (`hock' is British usage)
+14319,Rhineland Rheinland,a picturesque region of Germany around the Rhine river
+14320,Rhinobatidae family_Rhinobatidae,primitive rays with guitar-shaped bodies
+14321,Rhinocerotidae family_Rhinocerotidae rhinoceros_family,rhinoceroses
+14322,Rhinolophidae family_Rhinolophidae,Old World leaf-nosed bats
+14323,Rhinonicteris genus_Rhinonicteris,orange horseshoe bats
+14324,Rhinoptera genus_Rhinoptera,a genus of Myliobatidae
+14325,Rhinotermitidae family_Rhinotermitidae,large widely distributed family of termites of temperate to tropical regions
+14326,Rhipsalis genus_Rhipsalis,large genus of epiphytic or lithophytic unarmed cacti with usually segmented stems and pendulous branches; flowers are small followed by berrylike fruits
+14327,Rhizobiaceae family_Rhizobiaceae,a small family of rod-shaped bacteria
+14328,Rhizobium genus_Rhizobium,the type genus of Rhizobiaceae; usually occur in the root nodules of legumes; can fix atmospheric oxygen
+14329,Rhizophora genus_Rhizophora,type genus of the Rhizophoraceae; a small genus of tropical trees and shrubs
+14330,Rhizophoraceae family_Rhizophoraceae mangrove_family,trees and shrubs that usually form dense jungles along tropical seacoasts
+14331,Rhizopoda subclass_Rhizopoda,creeping protozoans: amoebas and foraminifers
+14332,Rhizopogon genus_Rhizopogon,a genus of fungi having subterranean sporophores resembling tubers
+14333,Rhizopogon_idahoensis,a large whitish Rhizopogon that becomes greyish brown in maturity
+14334,Rhizopogonaceae family_Rhizopogonaceae,a family of fungi of order Hymenogastrales having round subterranean sporophores
+14335,Rhode_Island,one of the British colonies that formed the United States
+14336,Rhode_Island Little_Rhody Ocean_State RI R.I.,a state in New England; one of the original 13 colonies; the smallest state
+14337,Rhode_Island_red,American breed of heavy-bodied brownish-red general-purpose chicken
+14338,Rhode_Islander,a native or resident of Rhode Island
+14339,Rhodes Cecil_Rhodes Cecil_J._Rhodes Cecil_John_Rhodes,British colonial financier and statesman in South Africa; made a fortune in gold and diamond mining; helped colonize the territory now known as Zimbabwe; he endowed annual fellowships for British Commonwealth and United States students to study at Oxford University (1853-1902)
+14340,Rhodes Rodhos,a Greek island in the southeast Aegean Sea 10 miles off the Turkish coast; the largest of the Dodecanese; it was colonized before 1000 BC by Dorians from Argos; site of the Colossus of Rhodes
+14341,Rhodes_grass Chloris_gayana,perennial grass of South Africa introduced into United States; cultivated as forage grass in dry regions
+14342,Rhodes_scholar,a student who holds one of the scholarships endowed by the will of Cecil J. Rhodes that enables the student to study at Oxford University
+14343,Rhodesian_man Homo_rhodesiensis,a primitive hominid resembling Neanderthal man but living in Africa
+14344,Rhodesian_ridgeback,a powerful short-haired African hunting dog having a crest of reversed hair along the spine
+14345,Rhodope_Mountains,a mountain range in the Balkan peninsula in southeastern Europe; extends along the border between Greece and Bulgaria
+14346,Rhodophyceae class_Rhodophyceae,coextensive with the Rhodophyta: red algae
+14347,Rhodophyta division_Rhodophyta,lower plants; mostly marine and littoral eukaryotic algae
+14348,Rhodosphaera genus_Rhodosphaera,one species; an Australian evergreen sumac
+14349,Rhodymenia genus_Rhodymenia,type genus of the family Rhodymeniaceae
+14350,Rhodymeniaceae family_Rhodymeniaceae,a family of protoctist
+14351,Rhoeadales order_Rhoeadales Papaverales order_Papaverales,an order of dicotyledonous plants
+14352,Rhone Rhone_River,a major French river; flows into the Mediterranean near Marseilles; "the valley of the Rhone is famous for its vineyards"
+14353,Rhone-Alpes,a mountainous region of eastern France drained by the Rhone and Saone and Isere rivers
+14354,Rhone_wine,any of various wines from the Rhone River valley in France
+14355,Rhus genus_Rhus,deciduous or evergreen shrubs and shrubby trees of temperate and subtropical North America, South Africa, eastern Asia and northeastern Australia; usually limited to nonpoisonous sumacs (see genus Toxicodendron)
+14356,Rhus_dermatitis,contact dermatitis resulting from contact with plants of the genus Toxicodendron
+14357,Rhyacotriton genus_Rhyacotriton,olympic salamanders
+14358,Rhynchocephalia order_Rhynchocephalia,tuataras; extinct forms from middle Triassic
+14359,Rhynchoelaps genus_Rhynchoelaps,Australian coral snakes
+14360,Rhyncostylis genus_Rhyncostylis,genus of epiphytic orchids of tropical Asia
+14361,Rhynia genus_Rhynia,type genus of the Rhyniaceae; small leafless dichotomously branching fossil plants with terminal sporangia and smooth branching rhizomes
+14362,Rhyniaceae family_Rhyniaceae,primitive plants of the Paleozoic
+14363,Ribes genus_Ribes,a flowering shrub bearing currants or gooseberries; native to northern hemisphere
+14364,Ribhus Rhibhus,one of three artisans of the Hindu gods
+14365,Ricardo David_Ricardo,English economist who argued that the laws of supply and demand should operate in a free market (1772-1823)
+14366,Rice Elmer_Rice Elmer_Leopold_Rice Elmer_Reizenstein,United States playwright (1892-1967)
+14367,Rice Sir_Tim_Rice Timothy_Miles_Bindon_Rice,English lyricist who frequently worked with Andrew Lloyd Webber (born in 1944)
+14368,Richard_I Richard_Coeur_de_Lion Richard_the_Lionheart Richard_the_Lion-Hearted,son of Henry II and King of England from 1189 to 1199; a leader of the Third Crusade; on his way home from the crusade he was captured and held prisoner in the Holy Roman Empire until England ransomed him in 1194 (1157-1199)
+14369,Richard_II,King of England from 1377 to 1399; he suppressed the Peasant's Revolt in 1381 but his reign was marked by popular discontent and baronial opposition in British Parliament and he was forced to abdicate in 1399 (1367-1400)
+14370,Richard_III,King of England from 1483 to 1485; seized the throne from his nephew Edward V who was confined to the Tower of London and murdered; his reign ended when he was defeated by Henry Tudor (later Henry VII) at the battle of Bosworth Field (1452-1485)
+14371,Richard_Roe,an unknown or fictitious party to legal proceedings
+14372,Richards I._A._Richards Ivor_Armstrong_Richards,English literary critic who collaborated with C. K. Ogden and contributed to the development of Basic English (1893-1979)
+14373,Richardson Henry_Hobson_Richardson,United States architect (1838-1886)
+14374,Richardson Ralph_Richardson Sir_Ralph_David_Richardson,British stage and screen actor noted for playing classic roles (1902-1983)
+14375,Richardson's_geranium Geranium_richardsonii,geranium of western North America having branched clusters of white or pale pink flowers
+14376,Richea genus_Richea,evergreen trees or shrubs of mountains of Australia and Tasmania
+14377,Richelieu Duc_de_Richelieu Armand_Jean_du_Plessis Cardinal_Richelieu,French prelate and statesman; principal minister to Louis XIII (1585-1642)
+14378,Richler Mordecai_Richler,Canadian novelist (born in 1931)
+14379,Richmond capital_of_Virginia,capital of the state of Virginia located in the east central part of the state; was capital of the Confederacy during the American Civil War
+14380,Richmondena genus_Richmondena,cardinals
+14381,Richter_scale,a logarithmic scale of 1 to 10 formerly used to express the magnitude of an earthquake on the basis of the size of seismograph oscillations
+14382,Ricinus genus_Ricinus,a genus of herb having only one known species: castor-oil plant
+14383,Rickenbacker Eddie_Rickenbacker Edward_Vernon_Rickenbacker,the most decorated United States combat pilot in World War I (1890-1973)
+14384,Rickettsiaceae family_Rickettsiaceae,microorganism resembling bacteria inhabiting arthropod tissues but capable of causing disease in vertebrates
+14385,Rickettsiales order_Rickettsiales,pleomorphic Gram-negative microorganisms
+14386,Rickover Hyman_Rickover Hyman_George_Rickover,United States admiral who advocated the development of nuclear submarines (1900-1986)
+14387,Riemann Bernhard_Riemann Georg_Friedrich_Bernhard_Riemann,pioneer of non-Euclidean geometry (1826-1866)
+14388,Riesling,white grape grown in Europe and California
+14389,Riesling,fragrant dry or sweet white wine from the Rhine valley or a similar wine from California
+14390,Riesman David_Riesman David_Riesman_Jr.,United States sociologist (1909-2002)
+14391,Riff Riffian,a Berber living in northern Morocco
+14392,Rift_Valley_fever,an infection common in Africa caused by a bunyavirus; transmitted by mosquitoes or by handling infected animals
+14393,Rig-Veda,a Veda consisting of a collection of Hindu poems dating from before 2000 BC
+14394,Riga capital_of_Latvia,a port city on the Gulf of Riga that is the capital and largest city of Latvia; formerly a member of the Hanseatic League
+14395,Rigel Beta_Orionis,the brightest star in Orion
+14396,Right_Bank,the region of Paris on the north bank of the Seine
+14397,Riksmal Riksmaal,in 1929 this dialect of Norwegian was officially renamed Bokmal
+14398,Riley James_Whitcomb_Riley,United States poet (1849-1916)
+14399,Rilke Rainer_Maria_Rilke,German poet (born in Austria) whose imagery and mystic lyricism influenced 20th-century German literature (1875-1926)
+14400,Rimbaud Arthur_Rimbaud Jean_Nicholas_Arthur_Rimbaud,French poet whose work influenced the surrealists (1854-1891)
+14401,Rimsky-Korsakov Nikolai_Andreyevich_Rimsky-Korsakov Rimski-Korsakov Nikolai_Andreyevich_Rimski-Korsakov,Russian composer of operas and orchestral works; often used themes from folk music (1844-1908)
+14402,Ringer's_solution Ringer_solution,an aqueous solution containing the chlorides of sodium and potassium and calcium that is isotonic to animal tissues; used to correct dehydration and (in physiological experiments) as a medium for in vitro preparations
+14403,Ringling Charles_Ringling,United States showman whose song-and-dance troop evolved into a circus (1863-1926)
+14404,Rio_Grande Rio_Bravo,a North American river; boundary between the United States and Mexico; flows into Gulf of Mexico
+14405,Rio_de_Janeiro Rio,the former capital and 2nd largest city of Brazil; chief Brazilian port; famous as a tourist attraction
+14406,Rio_de_la_Plata La_Plata Plata_River,an estuary between Argentina and Uruguay
+14407,Rioja,dry red table wine from the Rioja region of northern Spain
+14408,Riot_Act,a former English law requiring mobs to disperse after a magistrate reads the law to them
+14409,Rip_van_Winkle,a person oblivious to social changes
+14410,Rip_van_Winkle,a person who sleeps a lot
+14411,Rip_van_Winkle,the title character in a story by Washington Irving about a man who sleeps for 20 years and doesn't recognize the world when he wakens
+14412,Riparia genus_Riparia,a genus of Hirundinidae
+14413,Riss_glaciation,the next-to-last Pleistocene glaciation in the Alps and the deposits laid down at that time
+14414,Rissa genus_Rissa,a genus of Laridae
+14415,Rittenhouse David_Rittenhouse,United States astronomer said to have built the first telescope made in America; also the first director of the United States Mint (1732-1796)
+14416,Ritz,an ostentatiously elegant hotel
+14417,Ritz Cesar_Ritz,Swiss hotelier who created a chain of elegant hotels (1850-1918)
+14418,Rivera Diego_Rivera,socialist Mexican painter of murals (1886-1957)
+14419,Riverside,a city in southern California
+14420,Riviera,a coastal area between La Spezia in Italy and Cannes in France; "the Riviera contains some of Europe's most popular resorts"
+14421,Rivina genus_Rivina,small genus of erect perennial shrubby herbs; tropical and subtropical America
+14422,Riyadh capital_of_Saudi_Arabia,joint capital (with Mecca) of Saudi Arabia located in the central oasis; largest city in Saudi Arabia
+14423,Ro,an artificial language for international use that rejects all existing words and is based instead on an abstract analysis of ideas
+14424,Roanoke,a city in southwestern Virginia
+14425,Rob_Roy,a manhattan cocktail made with Scotch whiskey
+14426,Robbins Jerome_Robbins,United States choreographer who brought human emotion to classical ballet and spirited reality to Broadway musicals (1918-1998)
+14427,Robert Henry_M._Robert Henry_Martyn_Robert,United States parliamentary authority and author (in 1876) of Robert's Rules of Order (1837-1923)
+14428,Robert's_Rules_of_Order,a book of rules for presiding over a meeting; written by Henry M. Martin in 1876 and subsequently updated through many editions
+14429,Robert_E_Lee's_Birthday Robert_E_Lee_Day Lee's_Birthday January_19,celebrated in southern United States
+14430,Roberts Bartholomew_Roberts,a Welsh pirate credited with having taken more than 400 ships (1682-1722)
+14431,Roberts Kenneth_Roberts,United States writer remembered for his historical novels about colonial America (1885-1957)
+14432,Roberts Oral_Roberts,United States evangelist (born 1918)
+14433,Roberts Richard_J._Roberts Richard_John_Roberts,United States biochemist (born in England) honored for his discovery that some genes contain introns (born in 1943)
+14434,Robertson Oscar_Robertson Oscar_Palmer_Robertson,United States basketball guard (born in 1938)
+14435,Robeson Paul_Robeson Paul_Bustill_Robeson,United States bass singer and an outspoken critic of racism and proponent of socialism (1898-1976)
+14436,Robespierre Maxmillien_Marie_Isidore_de_Robespierre,French revolutionary; leader of the Jacobins and architect of the Reign of Terror; was himself executed in a coup d'etat (1758-1794)
+14437,Robin_Hood,legendary English outlaw of the 12th century; said to have robbed the rich to help the poor
+14438,Robinia genus_Robinia,deciduous flowering trees and shrubs
+14439,Robinson Edward_G._Robinson Edward_Goldenberg_Robinson,United States film actor noted for playing gangster roles (1893-1973)
+14440,Robinson Edwin_Arlington_Robinson,United States poet; author of narrative verse (1869-1935)
+14441,Robinson Jackie_Robinson Jack_Roosevelt_Robinson,United States baseball player; first Black to play in the major leagues (1919-1972)
+14442,Robinson James_Harvey_Robinson,United States historian who stressed the importance of intellectual and social events for the course of history (1863-1936)
+14443,Robinson Lennox_Robinson Esme_Stuart_Lennox_Robinson,Irish playwright and theater manager in Dublin (1886-1958)
+14444,Robinson Ray_Robinson Sugar_Ray_Robinson Walker_Smith,United States prizefighter who won the world middleweight championship five times and the world welterweight championship once (1921-1989)
+14445,Robinson Robert_Robinson Sir_Robert_Robinson,English chemist noted for his studies of molecular structures in plants (1886-1975)
+14446,Robinson_Crusoe,the hero of Daniel Defoe's novel about a shipwrecked English sailor who survives on a small tropical island
+14447,Robitussin,trade name of an expectorant that loosens phlegm and makes it easier to cough up
+14448,Roccellaceae family_Roccellaceae,a fungus family of division Lichenes
+14449,Roccus genus_Roccus,a genus of Serranidae
+14450,Rochambeau Comte_de_Rochambeau Jean_Baptiste_Donatien_de_Vimeur,French general who commanded French troops in the American Revolution, notably at Yorktown (1725-1807)
+14451,Rochelle_salt Rochelle_salts potassium_sodium_tartrate,a double salt used in Seidlitz powder; acts as a cathartic
+14452,Rochester,a city in western New York; a center of the photographic equipment industry
+14453,Rochester,a town in southeast Minnesota
+14454,Rochon_prism Wollaston_prism,optical device that produces plane-polarized ultraviolet light
+14455,Rock John_Rock,United States gynecologist and devout Catholic who conducted the first clinical trials of the oral contraceptive pill (1890-1984)
+14456,Rock_Cornish,small plump hybrid developed by crossbreeding Plymouth Rock and Cornish fowl
+14457,Rock_Cornish_hen,flesh of a small fowl bred for roasting
+14458,Rock_Island,a town in northwest Illinois on the Mississippi River; site of a Union prison during the American Civil War
+14459,Rock_Springs,a town of southwest Wyoming near the Utah border
+14460,Rockefeller John_D._Rockefeller John_Davison_Rockefeller,United States industrialist who made a fortune in the oil business and gave half of it away (1839-1937)
+14461,Rockford,a city in northern Illinois
+14462,Rockies Rocky_Mountains,the chief mountain range of western North America; extends from British Columbia to northern New Mexico; forms the continental divide
+14463,Rockingham Second_Marquis_of_Rockingham Charles_Watson-Wentworth,English statesman who served as prime minister and who opposed the war with the American colonies (1730-1782)
+14464,Rockwell Norman_Rockwell,United States illustrator whose works present a sentimental idealized view of everyday life (1894-1978)
+14465,Rocky_Mountain_National_Park,a national park in Colorado having mountains and lakes and streams and forests
+14466,Rocky_Mountain_bee_plant stinking_clover Cleome_serrulata,plant of western North America having trifoliate leaves and white or pink spider-shaped flowers; sometimes used as an ornamental
+14467,Rocky_Mountain_dogbane Apocynum_pumilum,North American plant similar to common dogbane
+14468,Rocky_Mountain_jay Perisoreus_canadensis_capitalis,a Canada jay with a white head; widely distributed from Montana to Arizona
+14469,Rocky_Mountain_spotted_fever mountain_fever tick_fever,caused by rickettsial bacteria and transmitted by wood ticks
+14470,Rocky_Mountain_whitefish Prosopium_williamsonii,whitefish of the western United States and Canada
+14471,Rocky_mountain_pinon Pinus_edulis,small compact two-needled pinon of southwestern United States; important as a nut pine
+14472,Rocroi Battle_of_Rocroi,a battle in the Thirty Years' War (1643); the French defeated the Spanish invaders
+14473,Rodentia order_Rodentia,small gnawing animals: porcupines; rats; mice; squirrels; marmots; beavers; gophers; voles; hamsters; guinea pigs; agoutis
+14474,Rodgers Richard_Rodgers,United States composer of musical comedies (especially in collaboration with Oscar Hammerstein II and with Lorenz Hart) (1902-1979)
+14475,Rodin Auguste_Rodin Francois_Auguste_Rene_Rodin,French sculptor noted for his renderings of the human form (1840-1917)
+14476,Rodolia genus_Rodolia genus_Vedalia,genus of Australian ladybugs
+14477,Roebling John_Roebling John_Augustus_Roebling,United States engineer (born in Germany) who designed and began construction of the Brooklyn bridge (1806-1869)
+14478,Roentgen Wilhelm_Konrad_Roentgen Rontgen Wilhelm_Konrad_Rontgen,German physicist who discovered x-rays and developed roentgenography (1845-1923)
+14479,Rogation_Day,one of the three days before Ascension Day; observed by some Christians as days of supplication
+14480,Rogers Carl_Rogers,United States psychologist who developed client-centered therapy (1902-1987)
+14481,Rogers Ginger_Rogers Virginia_McMath Virginia_Katherine_McMath,United States dancer and film actress who partnered with Fred Astaire (1911-1995)
+14482,Rogers Will_Rogers William_Penn_Adair_Rogers,United States humorist remembered for his homespun commentary on politics and American society (1879-1935)
+14483,Roget Peter_Mark_Roget,English physician who in retirement compiled a well-known thesaurus (1779-1869)
+14484,Rolaids,an antacid
+14485,Rollerblade,(trademark) an in-line skate
+14486,Rollo Rolf Hrolf,Norse chieftain who became the first duke of Normandy (860-931)
+14487,Rolodex,(trademark) a desktop rotary card index with removable cards; usually used for names, addresses, and telephone numbers; "a news reporter has to have a good Rolodex"
+14488,Romaic Demotic,the modern Greek vernacular
+14489,Roman,an inhabitant of the ancient Roman Empire
+14490,Roman,a resident of modern Rome
+14491,Roman_Catholic,a member of the Roman Catholic Church
+14492,Roman_Catholic Western_Church Roman_Catholic_Church Church_of_Rome Roman_Church,the Christian Church based in the Vatican and presided over by a pope and an episcopal hierarchy
+14493,Roman_Emperor Emperor_of_Rome,sovereign of the Roman Empire
+14494,Roman_Empire,an empire established by Augustus in 27 BC and divided in AD 395 into the Western Roman Empire and the eastern or Byzantine Empire; at its peak lands in Europe and Africa and Asia were ruled by ancient Rome
+14495,Roman_Inquisition Congregation_of_the_Inquisition,an inquisition set up in Italy in 1542 to curb the number of Protestants; "it was the Roman Inquisition that put Galileo on trial"
+14496,Roman_Legion,a division of from 3000 to 6000 men (including cavalry) in the Roman army
+14497,Roman_Republic,the ancient Roman state from 509 BC until Augustus assumed power in 27 BC; was governed by an elected Senate but dissatisfaction with the Senate led to civil wars that culminated in a brief dictatorship by Julius Caesar
+14498,Roman_alphabet Latin_alphabet,the alphabet evolved by the ancient Romans which serves for writing most of the languages of western Europe
+14499,Roman_arch semicircular_arch,a round arch drawn from a single center
+14500,Roman_architecture,the architecture of ancient Rome
+14501,Roman_building,a building constructed by the ancient Romans
+14502,Roman_calendar,the lunar calendar in use in ancient Rome; replaced by the Julian calendar in 46 BC
+14503,Roman_candle,a cylindrical firework that projects a series of colored balls of fire
+14504,Roman_deity,a deity worshipped by the ancient Romans
+14505,Roman_hyacinth Hyacinthus_orientalis_albulus,hyacinth with loosely flowered spikes, several growing from one bulb
+14506,Roman_law Justinian_code civil_law jus_civile,the legal code of ancient Rome; codified under Justinian; the basis for many modern systems of civil law
+14507,Roman_mythology,the mythology of the ancient Romans
+14508,Roman_nettle Urtica_pipulifera,annual European nettle with stinging foliage and small clusters of green flowers
+14509,Roman_nose hooknose,a nose with a prominent slightly aquiline bridge
+14510,Roman_numeral,a symbol in the old Roman notation; I,V,X,L,C,D,M represent 1,5,10,50,100,500,1000 respectively in Arabic notation
+14511,Roman_pace,an ancient Roman unit of length (4.85 English feet) measured as the distance from the heel of one foot to the heel of the same foot when next it touches the ground
+14512,Roman_times,the time period during which Rome dominated Europe
+14513,Roman_wormwood Artemis_pontica,European wormwood; minor source of absinthe
+14514,Roman_wormwood rock_harlequin Corydalis_sempervirens Fumaria_sempervirens,glaucous herb of northeastern United States and Canada having loose racemes of yellow-tipped pink flowers; sometimes placed in genus Fumaria
+14515,Romanal,an artificial language
+14516,Romance Romance_language Latinian_language,the group of languages derived from Latin
+14517,Romanesque Romanesque_architecture,a style of architecture developed in Italy and western Europe between the Roman and the Gothic styles after 1000 AD; characterized by round arches and vaults and by the substitution of piers for columns and profuse ornament and arcades
+14518,Romania Roumania Rumania,a republic in southeastern Europe with a short coastline on the Black Sea
+14519,Romanian Rumanian,a native or inhabitant of Romania
+14520,Romanian Rumanian,an eastern Romance language spoken in Romania
+14521,Romanian_monetary_unit,monetary unit in Romania
+14522,Romanism Roman_Catholicism papism,the beliefs and practices of the Catholic Church based in Rome
+14523,Romanov Romanoff,a member of the imperial family that ruled Russia
+14524,Romanov Romanoff,the Russian imperial line that ruled from 1613 to 1917
+14525,Romansh Rumansh,the Rhaeto-Romance language spoken in southeastern Switzerland; it is an official language of Switzerland
+14526,Romanticism Romantic_Movement,a movement in literature and art during the late 18th and early 19th centuries that celebrated nature rather than civilization; "Romanticism valued imagination and emotion over rationality"
+14527,Romany Gypsy,the Indic language of the Gypsies
+14528,Romberg Sigmund_Romberg,United States composer (born in Hungary) who composed operettas (1887-1951)
+14529,Rome,the leadership of the Roman Catholic Church
+14530,Rome Roma Eternal_City Italian_capital capital_of_Italy,capital and largest city of Italy; on the Tiber; seat of the Roman Catholic Church; formerly the capital of the Roman Republic and the Roman Empire
+14531,Rome_Beauty,large red apple used primarily for baking
+14532,Romeo,an ardent male lover
+14533,Rommel Erwin_Rommel Desert_Fox,German field marshal noted for brilliant generalship in North Africa during World War II (1891-1944)
+14534,Romneya genus_Romneya,one species: matilija poppy
+14535,Romulus,(Roman mythology) founder of Rome; suckled with his twin brother Remus by a wolf after their parents (Mars and Rhea Silvia) abandoned them; Romulus killed Remus in an argument over the building of Rome
+14536,Ron Bokkos Daffo,a Chadic language spoken in northern Nigeria
+14537,Roosevelt Eleanor_Roosevelt Anna_Eleanor_Roosevelt,wife of Franklin Roosevelt and a strong advocate of human rights (1884-1962)
+14538,Roosevelt Franklin_Roosevelt Franklin_Delano_Roosevelt F._D._Roosevelt President_Roosevelt President_Franklin_Roosevelt FDR,32nd President of the United States; elected four times; instituted New Deal to counter the Great Depression and led country during World War II (1882-1945)
+14539,Roosevelt Theodore_Roosevelt President_Roosevelt President_Theodore_Roosevelt,26th President of the United States; hero of the Spanish-American War; Panama Canal was built during his administration; "Theodore Roosevelt said `Speak softly but carry a big stick'" (1858-1919)
+14540,Roquefort,French blue cheese
+14541,Roridulaceae family_Roridulaceae,in some classifications included in the family Droseraceae
+14542,Rorippa genus_Rorippa,annual and perennial herbs of damp habitats; cosmopolitan except Antarctica
+14543,Rorschach Rorschach_test inkblot_test,a projective tests using bilaterally symmetrical inkblots; subjects state what they see in the inkblot
+14544,Rosa genus_Rosa,large genus of erect or climbing prickly shrubs including roses
+14545,Rosaceae family_Rosaceae rose_family,a large family of dicotyledonous plants of order Rosales; have alternate leaves and five-petaled flowers with numerous stamens
+14546,Rosales order_Rosales,in some classifications this category does not include Leguminosae
+14547,Rosario,a port city on the Parana River in eastern central Argentina
+14548,Roseau,the capital and largest city of Dominica
+14549,Rosellinia genus_Rosellinia,fungi having smooth perithecia with dark one-celled ascospores
+14550,Rosetta_Stone,a part of an inscribed granite stela that was originally about six feet tall and was set up in 196 BC; the inscriptions in hieroglyphics and Demotic and Greek gave the first clues to the decipherment of Egyptian hieroglyphics
+14551,Rosh_Hashanah Rosh_Hashana Rosh_Hashonah Rosh_Hashona Jewish_New_Year,(Judaism) a solemn Jewish feast day celebrated on the 1st or 1st and 2nd of Tishri; noted for the blowing of the shofar
+14552,Rosh_Hodesh Rosh_Chodesh,(Judaism) the beginning of each month in the Jewish calendar; marked by a special liturgy
+14553,Rosicrucian,a member of any of various organizations that subsequently derived from the 17th-century society
+14554,Rosicrucian,a member of a secret 17th-century society of philosophers and scholars versed in mystical and metaphysical and alchemical lore
+14555,Rosicrucianism,the theological doctrine that venerates the rose and the cross as symbols of Christ's Resurrection and redemption; claims various occult powers
+14556,Rosidae subclass_Rosidae,a group of trees and shrubs and herbs mostly with polypetalous flowers; contains 108 families including Rosaceae; Crassulaceae; Myrtaceae; Melastomaceae; Euphorbiaceae; Umbelliferae
+14557,Rosmarinus genus_Rosmarinus,rosemary
+14558,Ross Betsy_Ross Betsy_Griscom_Ross,American seamstress said to have made the first American flag at the request of George Washington (1752-1836)
+14559,Ross James_Clark_Ross Sir_James_Clark_Ross,British explorer of the Arctic and Antarctic; located the north magnetic pole in 1831; discovered the Ross Sea in Antarctica; nephew of Sir John Ross (1800-1862)
+14560,Ross John_Ross Sir_John_Ross,Scottish explorer who led Arctic expeditions that yielded geographic discoveries while searching for the Northwest Passage (1777-1856)
+14561,Ross Nellie_Ross Nellie_Tayloe_Ross,a politician in Wyoming who was the first woman governor in the United States (1876-1977)
+14562,Ross Sir_Ronald_Ross,British physician who discovered that mosquitos transmit malaria (1857-1932)
+14563,Ross_Sea,an arm of the southern Pacific Ocean in Antarctica
+14564,Rossbach battle_of_Rossbach,a battle in the Seven Years' War (1757); Prussian forces under Frederick the Great defeated the armies of France and Austria
+14565,Rossetti Dante_Gabriel_Rossetti,English poet and painter who was a leader of the Pre-Raphaelites (1828-1882)
+14566,Rossini Giloacchino_Antonio_Rossini,Italian composer remembered for his operas (1792-1868)
+14567,Rostand Edmond_Rostand,French dramatist and poet whose play immortalized Cyrano de Bergerac (1868-1918)
+14568,Rostock,a city in northeastern Germany near the Baltic sea; an important member of the Hanseatic League in the 14th century
+14569,Rostov Rostov_on_Don Rostov_na_Donu,a seaport on the Don River near the Sea of Azov in the European part of Russia
+14570,Roswell,a town in southeast New Mexico
+14571,Rota,(Roman Catholic Church) the supreme ecclesiastical tribunal for cases appealed to the Holy See from diocesan courts
+14572,Rotarian,a member of a Rotary Club
+14573,Rotary_Club Rotary_International,a group of businessmen in a town organized as a service club and to promote world peace
+14574,Roth Philip_Roth Philip_Milton_Roth,United States writer whose novels portray middle-class Jewish life (born in 1933)
+14575,Rothko Mark_Rothko,United States abstract painter (born in Russia) whose paintings are characterized by horizontal bands of color with indistinct boundaries (1903-1970)
+14576,Rothschild,any of family of powerful Jewish bankers in Europe
+14577,Rotifera phylum_Rotifera,a phylum including: rotifers
+14578,Rotterdam,the 2nd largest city in the Netherlands; located in the western Netherlands near the North Sea
+14579,Rottweiler,German breed of large vigorous short-haired cattle dogs
+14580,Rough_Rider,a member of the volunteer cavalry regiment led by Theodore Roosevelt in the Spanish-American War (1898)
+14581,Round_Table King_Arthur's_Round_Table,(legend) the circular table for King Arthur and his knights
+14582,Roundhead,a supporter of parliament and Oliver Cromwell during the English Civil War
+14583,Rous Peyton_Rous Francis_Peyton_Rous,United States pathologist who discovered viruses that cause tumors (1879-1970)
+14584,Rousseau Henri_Rousseau Le_Douanier_Rousseau,French primitive painter (1844-1910)
+14585,Rousseau Jean-Jacques_Rousseau,French philosopher and writer born in Switzerland; believed that the natural goodness of man was warped by society; ideas influenced the French Revolution (1712-1778)
+14586,Royal_Academy Royal_Academy_of_Arts,an honorary academy in London (founded in 1768) intended to cultivate painting and sculpture and architecture in Britain
+14587,Royal_Air_Force RAF,the airforce of Great Britain
+14588,Royal_Canadian_Mounted_Police RCMP Mounties,the federal police force of Canada
+14589,Royal_National_Eisteddfod,an eisteddfod with competitions in music and drama and poetry and the fine arts
+14590,Royal_Society Royal_Society_of_London_for_Improving_Natural_Knowledge,an honorary English society (formalized in 1660 and given a royal charter by Charles II in 1662) through which the British government has supported science
+14591,Roystonea genus_Roystonea,a monocotyledonous genus of West Indian feather palms
+14592,Rub_al-Khali Ar_Rimsal Dahna Great_Sandy_Desert,a desert in southern Saudi Arabia
+14593,Rubens Peter_Paul_Rubens Sir_Peter_Paul_Rubens,prolific Flemish baroque painter; knighted by the English king Charles I (1577-1640)
+14594,Rubia genus_Rubia,type genus of the Rubiaceae; Old World herbs and subshrubs grown for their medicinal properties and for dye substances extracted from their roots
+14595,Rubiaceae family_Rubiaceae madder_family,widely distributed family of mostly tropical trees and shrubs and herbs; includes coffee and chinchona and gardenia and madder and bedstraws and partridgeberry
+14596,Rubiales order_Rubiales,an order of dicotyledonous plants of the subclass Asteridae; have opposite leaves and an inferior compound ovary
+14597,Rubicon,the boundary in ancient times between Italy and Gaul; Caesar's crossing it with his army in 49 BC was an act of war
+14598,Rubicon point_of_no_return,a line that when crossed permits of no return and typically results in irrevocable commitment
+14599,Rubin_test,test to determine the patency or occlusion of the Fallopian tubes
+14600,Rubinstein Anton_Rubenstein Anton_Gregor_Rubinstein Anton_Grigorevich_Rubinstein,Russian composer and pianist (1829-1894)
+14601,Rubinstein Arthur_Rubinstein Artur_Rubinstein,United States pianist (born in Poland) known for his interpretations of the music of Chopin (1886-1982)
+14602,Rubus genus_Rubus,large genus of brambles bearing berries
+14603,Rudbeckia genus_Rudbeckia,North American perennial herbs with showy cone-shaped flower heads
+14604,Rudra,father of the Hindu storm gods Marut; controller of nature; sometimes identified with Siva
+14605,Rufous_rubber_cup,a common name for a variety of Sarcosomataceae
+14606,Ruhr Ruhr_River,a tributary of the Rhine
+14607,Ruhr Ruhr_Valley,a major industrial and coal mining region in the valley of the Ruhr river in northwestern Germany
+14608,Rumex genus_Rumex,docks: coarse herbs and shrubs mainly native to north temperate regions
+14609,Ruminantia suborder_Ruminantia,cattle; bison; sheep; goats; antelopes; deer; chevrotains; giraffes; camels
+14610,Rumohra genus_Rumohra,leatherleaf ferns: in some classifications included in genus Polystichum
+14611,Rumpelstiltskin,a dwarf in one of the fairy stories of the brothers Grimm; tells a woman he will not hold her to a promise if she can guess his name and when she discovers it he is so furious that he destroys himself
+14612,Rundstedt von_Rundstedt Karl_Rudolf_Gerd_von_Rundstedt,German field marshal in World War II who directed the conquest of Poland and led the Ardennes counteroffensive (1875-1953)
+14613,Runyon Damon_Runyon Alfred_Damon_Runyon,United States writer of humorous stylized stories about Broadway and the New York underground (1884-1946)
+14614,Rupert Prince_Rupert,English leader (born in Germany) of the Royalist forces during the English Civil War (1619-1682)
+14615,Rupicapra genus_Rupicapra,chamois
+14616,Rupicola genus_Rupicola,cock of the rocks
+14617,Ruptiliocarpon genus_Ruptiliocarpon,new (1993) genus of trees of Central America now recognized as similar to those of genus Lepidobotrys
+14618,Ruritania,an imaginary kingdom in central Europe; often used as a scene for intrigue and romance
+14619,Ruritanian,an imaginary inhabitant of Ruritania
+14620,Rus,the medieval Russian state established by Scandinavian traders in the 9th century; the capital was first in Novgorod and then in Kiev
+14621,Ruscaceae family_Ruscaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+14622,Ruscus genus_Ruscus,a genus of European evergreen shrubs; sometimes placed in family Asparagaceae
+14623,Rush Benjamin_Rush,physician and American Revolutionary leader; signer of the Declaration of Independence (1745-1813)
+14624,Rushdie Salman_Rushdie Ahmed_Salman_Rushdie,British writer of novels who was born in India; one of his novels is regarded as blasphemous by Muslims and a fatwa was issued condemning him to death (born in 1947)
+14625,Rushmore Mount_Rushmore Mt._Rushmore,a mountain in the Black Hills of South Dakota; the likenesses of Washington and Jefferson and Lincoln and Roosevelt are carved on it
+14626,Ruskin John_Ruskin,British art critic (1819-1900)
+14627,Russell Bertrand_Russell Bertrand_Arthur_William_Russell Earl_Russell,English philosopher and mathematician who collaborated with Whitehead (1872-1970)
+14628,Russell Bill_Russell William_Felton_Russell,United States basketball center (born in 1934)
+14629,Russell Charles_Taze_Russell,United States religious leader who founded the sect that is now called Jehovah's Witnesses (1852-1916)
+14630,Russell George_William_Russell A.E.,Irish writer whose pen name was A.E. (1867-1935)
+14631,Russell Henry_Russell Henry_Norris_Russell,United States astronomer who developed a theory of stellar evolution (1877-1957)
+14632,Russell Ken_Russell Henry_Kenneth_Alfred_Russell,English film director (born in 1927)
+14633,Russell Lillian_Russell,United States entertainer remembered for her roles in comic operas (1861-1922)
+14634,Russell's_body cancer_body,an inclusion body found in plasma cells in cases of cancer
+14635,Russia,a former empire in eastern Europe and northern Asia created in the 14th century with Moscow as the capital; powerful in the 17th and 18th centuries under Peter the Great and Catherine the Great when Saint Petersburg was the capital; overthrown by revolution in 1917
+14636,Russia Russian_Federation,a federation in northeastern Europe and northern Asia; formerly Soviet Russia; since 1991 an independent state
+14637,Russia_leather,a smooth leather tanned with willow, birch, or oak, and scented on the flesh side with birch oil
+14638,Russian,a native or inhabitant of Russia
+14639,Russian,the Slavic language that is the official language of Russia
+14640,Russian_Orthodox_Church,an independent church with its own Patriarch; until 1917 it was the established church or Russia
+14641,Russian_Revolution February_Revolution,the revolution against the czarist government which led to the abdication of Nicholas II and the creation of a provisional government in March 1917
+14642,Russian_Revolution October_Revolution,the coup d'etat by the Bolsheviks under Lenin in November 1917 that led to a period of civil war which ended in victory for the Bolsheviks in 1922
+14643,Russian_River,a river in northern California
+14644,Russian_agency,an administrative agency of the Russian government
+14645,Russian_almond dwarf_Russian_almond Prunus_tenella,Asiatic shrub cultivated for its rosy red flowers
+14646,Russian_bank crapette,solitaire with two players using separate packs
+14647,Russian_dandelion kok-saghyz kok-sagyz Taraxacum_kok-saghyz,perennial dandelion native to Kazakhstan cultivated for its fleshy roots that have high rubber content
+14648,Russian_dressing Russian_mayonnaise,mayonnaise with horseradish grated onion and chili sauce or catsup; sometimes with caviar added
+14649,Russian_monetary_unit,monetary unit in Russia
+14650,Russian_olive silver_berry Elaeagnus_augustifolia,deciduous shrubby tree of Europe and western Asia having grey leaves and small yellow fruits covered in silvery scales; sometimes spiny
+14651,Russian_roulette,a stunt in which you spin the cylinder of a revolver that is loaded with only one bullet and then point the muzzle at your head and pull the trigger
+14652,Russian_thistle Russian_tumbleweed Russian_cactus tumbleweed Salsola_kali_tenuifolia,prickly bushy Eurasian plant; a troublesome weed in central and western United States
+14653,Russo-Japanese_War,Japanese victory in the war with Russia (1904-1905) gave Japan power over Korea and Manchuria
+14654,Russula genus_Russula,large genus of fungi with stout stems and white spores and neither annulus nor volva; brittle caps of red or purple or yellow or green or blue; differs from genus Lactarius in lacking milky juice
+14655,Russulaceae family_Russulaceae,used in some classification systems for the genus Russula
+14656,Rustbelt,urban areas in New England and Midwest characterized by concentrations of declining industries (steel or textiles)
+14657,Ruta genus_Ruta,type genus of the Rutaceae; strong-scented Eurasian herbs
+14658,Rutaceae family_Rutaceae rue_family,a family of dicotyledonous plants of order Geraniales; have flowers that are divide into four or five parts and usually have a strong scent
+14659,Ruth,the great-grandmother of king David whose story is told in the Book of Ruth in the Old Testament
+14660,Ruth Babe_Ruth George_Herman_Ruth Sultan_of_Swat,United States professional baseball player famous for hitting home runs (1895-1948)
+14661,Ruth Book_of_Ruth,a book of the Old Testament that tells the story of Ruth who was not an Israelite but who married an Israelite and who stayed with her mother-in-law Naomi after her husband died
+14662,Rutherford Daniel_Rutherford,British chemist who isolated nitrogen (1749-1819)
+14663,Rutherford Ernest_Rutherford First_Baron_Rutherford First_Baron_Rutherford_of_Nelson,British physicist (born in New Zealand) who discovered the atomic nucleus and proposed a nuclear model of the atom (1871-1937)
+14664,Rutherford_atom,first modern concept of atomic structure; all of the positive charge and most of the mass of the atom are contained in a compact nucleus; a number of electrons (equal to the atomic number) occupy the rest of the volume of the atom and neutralize the positive charge
+14665,Rutilus genus_Rutilus,roaches
+14666,Rutland,a town in central Vermont
+14667,Rutledge John_Rutledge,United States jurist and second chief justice of the United States Supreme Court; he was appointed by George Washington and briefly served as chief justice but was ultimately rejected by the United States Senate (1739-1800)
+14668,Rwanda Rwandese_Republic Ruanda,a landlocked republic in central Africa; formerly a German colony
+14669,Rwanda_franc,the basic unit of money in Rwanda
+14670,Rwandan,a native or inhabitant of Rwanda
+14671,Rydberg's_penstemon Penstemon_rydbergii,plant with whorls of small dark blue-violet flowers; Washington to Wyoming and south to California and Colorado
+14672,Rynchopidae family_Rynchopidae,coextensive with the genus Rynchops: skimmers
+14673,Rynchops genus_Rynchops,type genus of the Rynchopidae: skimmers
+14674,Rypticus genus_Rypticus,a genus of fish of the family Serranidae, including soapfishes
+14675,Ryukyu_Islands,a chain of 55 islands in the western Pacific to the to the southwest of Japan (returned by United States to Japan in 1972)
+14676,Ryukyuan,a member of the Japanese people living on the Ryukyu Islands southwest of Japan
+14677,Ryukyuan,the language (related to Japanese) that is spoken by the people of the Ryukyu Islands
+14678,S s,the 19th letter of the Roman alphabet
+14679,S-shape,a double curve resembling the letter S
+14680,SA Sturmabteilung Storm_Troops,Nazi militia created by Hitler in 1921 that helped him to power but was eclipsed by the SS after 1943
+14681,SALT_I,the first treaty between the United States and the Union of Soviet Socialist Republics resulting from the Strategic Arms Limitation Talks
+14682,SALT_II,the second treaty between the United States and the Union of Soviet Socialist Republics resulting from the Strategic Arms Limitation Talks
+14683,SOS,an internationally recognized distress signal in radio code
+14684,STP s.t.p.,standard temperature and pressure
+14685,SWAT_team SWAT_squad Special_Weapons_and_Tactics_team Special_Weapons_and_Tactics_squad,a squad of policemen who have been trained to deal with violent and dangerous situations
+14686,S_wrench,a wrench with an S-shaped handle
+14687,Saale Saale_River,a river that rises in central Germany and flows north to join the Elbe River
+14688,Saale_glaciation,the next-to-last Pleistocene glaciation in northern Europe and the deposits laid down at that time
+14689,Saarinen Eero_Saarinen,United States architect (born in Finland) (1910-1961)
+14690,Saarinen Eliel_Saarinen,Finnish architect and city planner who moved to the United States in 1923; father of Eero Saarinen (1873-1950)
+14691,Saba,a island in the Netherlands Antilles that is the top of an extinct volcano
+14692,Sabah North_Borneo,one of the 13 states that constitute the Federation of Malaysia; located on the northern portion of the island of Borneo
+14693,Sabahan,a Malaysian from Sabah
+14694,Sabal genus_Sabal,American dwarf fan palms
+14695,Sabaoth,(plural) hosts or armies; used in the book of Romans in the New Testament; "Lord of Sabaoth"
+14696,Sabbatarian,one who observes Saturday as the Sabbath (as in Judaism)
+14697,Sabbath,a day of rest and worship: Sunday for most Christians; Saturday for the Jews and a few Christians; Friday for Muslims
+14698,Sabellian,an extinct Osco-Umbrian language of ancient Italy that survives only in a few inscriptions
+14699,Sabin Albert_Sabin Albert_Bruce_Sabin,United States microbiologist (born in Poland) who developed the Sabin vaccine that is taken orally against poliomyelitis (born 1906)
+14700,Sabin_vaccine oral_poliovirus_vaccine OPV trivalent_live_oral_poliomyelitis_vaccine TOPV,an oral vaccine (containing live but weakened poliovirus) that is given to provide immunity to poliomyelitis
+14701,Sabine,a member of an ancient Oscan-speaking people of the central Apennines north of Rome who were conquered and assimilated into the Roman state in 290 BC
+14702,Sabine Sabine_River,a river in eastern Texas that flows south into the Gulf of Mexico
+14703,Sabinea genus_Sabinea,small genus of deciduous West Indian trees or shrubs: carib wood
+14704,Sacagawea Sacajawea,the Shoshone guide and interpreter who guided the Lewis and Clark expedition part of the way
+14705,Saccharomyces genus_Saccharomyces,single-celled yeasts that reproduce asexually by budding; used to ferment carbohydrates
+14706,Saccharomycetaceae family_Saccharomycetaceae,family of fungi comprising the typical yeasts: reproduce by budding and ferment carbohydrates
+14707,Saccharum genus_Saccharum,tall perennial reedlike grass originally of southeastern Asia: sugarcane
+14708,Sacco Nicola_Sacco,United States anarchist (born in Italy) who with Bartolomeo Vanzetti was convicted of murder and in spite of world-wide protest was executed (1891-1927)
+14709,Sacramento capital_of_California,a city in north central California 75 miles to the northeast of San Francisco on the Sacramento River; capital of California
+14710,Sacramento_Mountains,mountain range in New Mexico to the east of the Rio Grande
+14711,Sacramento_River,a river in northern California rising near Mount Shasta and flowing south to the San Francisco Bay
+14712,Sacred_College College_of_Cardinals cardinalate Sacred_College_of_Cardinals,(Roman Catholic Church) the body of all cardinals of the church; elects and advises the pope
+14713,Sadat Anwar_Sadat Anwar_el-Sadat,Egyptian statesman who (as president of Egypt) negotiated a peace treaty with Menachem Begin (then prime minister of Israel) (1918-1981)
+14714,Sadducee,a member of an ancient Jewish sect around the time of Jesus; opposed to the Pharisees
+14715,Sade de_Sade Comte_Donatien_Alphonse_Francois_de_Sade Marquis_de_Sade,French soldier and writer whose descriptions of sexual perversion gave rise to the term `sadism' (1740-1814)
+14716,Sadleria genus_Sadleria,low tree ferns with large fronds; in rain forests and on lava flows of Hawaiian Islands
+14717,Saek,a branch of the Tai languages
+14718,Safar Saphar,the second month of the Islamic calendar
+14719,Sagina genus_Sagina,small low-growing annual or perennial herbs of temperate and cool regions
+14720,Saginaw,a town in east central Michigan on an arm of Lake Huron
+14721,Sagitta,a small constellation in the northern hemisphere between Cygnus and Aquila and crossed by the Milky Way
+14722,Sagittaria genus_Sagittaria,genus of aquatic herbs of temperate and tropical regions having sagittate or hastate leaves and white scapose flowers
+14723,Sagittariidae family_Sagittariidae,secretary birds
+14724,Sagittarius,a large zodiacal constellation in the southern hemisphere; between Scorpius and Capricornus
+14725,Sagittarius Archer,(astrology) a person who is born while the sun is in Sagittarius
+14726,Sagittarius Sagittarius_the_Archer Archer,the ninth sign of the zodiac; the sun is in this sign from about November 22 to December 21
+14727,Sagittarius genus_Sagittarius,type genus of the Sagittariidae
+14728,Sahara Sahara_Desert,the world's largest desert (3,500,000 square miles) in northern Africa
+14729,Saharan,a Nilo-Saharan language spoken in parts of Chad
+14730,Saigon_cinnamon Cinnamomum_loureirii,tropical southeast Asian tree with aromatic bark; yields a bark used medicinally
+14731,Saimiri genus_Saimiri,squirrel monkeys
+14732,Saint-Bernard's-lily Anthericum_liliago,southern European plant commonly cultivated for its spikes of small starry greenish-white flowers
+14733,Saint-Mihiel St_Mihiel battle_of_St_Mihiel,a battle in the Meuse-Argonne operation in World War I (1918); the battle in which American troops launched their first offensive in France
+14734,Saint-Saens Charles_Camille_Saint-Saens,French pianist and composer (1835-1921)
+14735,Saint_Agnes's_Eve January_20,a Christian holy day
+14736,Saint_Anthony's_fire,any of several inflammatory or gangrenous skin conditions
+14737,Saint_Bernard St_Bernard,a Swiss alpine breed of large powerful dog with a thick coat of hair used as a rescue dog
+14738,Saint_Christopher St._Christopher Saint_Kitts St._Kitts,the largest of the islands comprising Saint Christopher-Nevis
+14739,Saint_Cloud St._Cloud,a town in central Minnesota on the Mississippi River; granite quarries
+14740,Saint_Emilion,full-bodied red wine from around the town of Saint Emilion in Bordeaux
+14741,Saint_Eustatius St._Eustatius,an island in the Netherlands Antilles
+14742,Saint_Francis Saint_Francis_River St._Francis St._Francis_River,a tributary of the Mississippi River that rises in Missouri and flows southeastward through Arkansas
+14743,Saint_John Saint_John_River St._John St._John_River,a river that rises in Maine and flows northeastward through New Brunswick to empty into the Bay of Fundy
+14744,Saint_John St._John,a port in eastern Canada; the largest city in New Brunswick
+14745,Saint_John's St._John's,a port and provincial capital of Newfoundland
+14746,Saint_Johns Saint_Johns_River St._Johns St._Johns_River,a river in northeastern Florida that flows northward to Jacksonville and then eastward to empty into the Atlantic Ocean
+14747,Saint_Joseph St._Joseph,a town in northwest Missouri on the Missouri River; in the 19th century it became the eastern terminus of the pony express
+14748,Saint_Joseph St_Joseph March_19,a Christian holy day
+14749,Saint_Kitts_and_Nevis Federation_of_Saint_Kitts_and_Nevis Saint_Christopher-Nevis St._Christopher-Nevis St._Kitts_and_Nevis,a country on several of the Leeward Islands; located to the east southeast of Puerto Rico; achieved independence from the United Kingdom in 1983
+14750,Saint_Lawrence Saint_Lawrence_River St._Lawrence St._Lawrence_River,a North American river; flows into the Gulf of Saint Lawrence and the North Atlantic
+14751,Saint_Lawrence_Seaway St._Lawrence_Seaway,a seaway involving the Saint Lawrence River and the Great Lakes that was developed jointly by Canada and the United States; oceangoing ships can travel as far west as Lake Superior
+14752,Saint_Louis St._Louis Gateway_to_the_West,the largest city in Missouri; a busy river port on the Mississippi River near its confluence with the Missouri River; was an important staging area for wagon trains westward in the 19th century
+14753,Saint_Lucia St._Lucia,a country on the island of Saint Lucia; gained independence from Great Britain in 1979
+14754,Saint_Lucia St._Lucia,a volcanic island in the Windward Isles to the south of Martinique
+14755,Saint_Martin St._Martin Saint_Maarten St._Maarten,an island in the western Leeward Islands; administered jointly by France and the Netherlands
+14756,Saint_Paul St._Paul capital_of_Minnesota,capital of the state of Minnesota; located in southeastern Minnesota on the Mississippi river adjacent to Minneapolis; one of the Twin Cities
+14757,Saint_Vincent St._Vincent,an island in the center of the Windward Islands; the largest of the islands comprising Saint Vincent and the Grenadines
+14758,Saint_Vincent_and_the_Grenadines St._Vincent_and_the_Grenadines,an island country in the central Windward Islands; achieved independence from the United Kingdom in 1979
+14759,Saintpaulia genus_Saintpaulia,east African herb with nodding flowers; widely cultivated
+14760,Saints_Peter_and_Paul June_29,first celebrated in the 3rd century
+14761,Saipan,the largest island in the Northern Marianas and the administrative center of the commonwealth of the Northern Mariana Islands in union with the United States
+14762,Saipan,US forces captured the island from the Japanese in July 1944; it was an important air base until the end of World War II
+14763,Sajama,a mountain peak in the Andes in Bolivia (21,391 feet high)
+14764,Sakharov Andrei_Sakharov Andrei_Dimitrievich_Sakharov,Soviet physicist and dissident; helped develop the first Russian hydrogen bomb; advocated nuclear disarmament and campaigned for human rights (1921-1989)
+14765,Saladin Salah-ad-Din_Yusuf_ibn-Ayyub,sultan of Syria and Egypt; reconquered Jerusalem from the Christians in 1187 but was defeated by Richard Coeur de Lion in 1191 (1137-1193)
+14766,Salafism Salafi_movement,a militant group of extremist Sunnis who believe themselves the only correct interpreters of the Koran and consider moderate Muslims to be infidels; seek to convert all Muslims and to insure that its own fundamentalist version of Islam will dominate the world
+14767,Salafist_Group Salafast_Group_for_Call_and_Combat GSPC,an Algerian extremist Islamic offshoot of the Armed Islamic Group; now the largest and most active armed terrorist group in Algeria that seeks to overthrow the government; a major source of support and recruitment for al-Qaeda operations in Europe and northern Africa
+14768,Salamandra genus_Salamandra,type genus of the Salamandridae
+14769,Salamandridae family_Salamandridae,salamanders
+14770,Salem,a city in northeastern Massachusetts; site of the witchcraft trials in 1692
+14771,Salem,a city in southern India
+14772,Salem capital_of_Oregon,capital of the state of Oregon in the northwestern part of the state on the Willamette River
+14773,Salerno,a battle in World War II; the port was captured by United States troops in September 1943
+14774,Salian_Frank Salian,a member of the tribe of Franks who settled in the Netherlands in the 4th century AD
+14775,Salic_law,the code of laws of the Salian Franks and other German tribes
+14776,Salicaceae family_Salicaceae willow_family,two genera of trees or shrubs having hairy catkins: Salix; Populus
+14777,Salicales order_Salicales,coextensive with the family Salicaceae
+14778,Salicornia genus_Salicornia,glassworts
+14779,Salientia order_Salientia Anura order_Anura Batrachia order_Batrachia,frogs, toads, tree toads
+14780,Salina,a town in central Kansas
+14781,Salinger J._D._Salinger Jerome_David_Salinger,United States writer (born 1919)
+14782,Salisbury_steak,ground beef patty usually with a sauce
+14783,Salish,a member of a group of North American Indians speaking a Salishan language and living on the northwest coast of North America
+14784,Salish Salishan,a family of Mosan language spoken in northwestern United States and western Canada
+14785,Salix genus_Salix,a large and widespread genus varying in size from small shrubs to large trees: willows
+14786,Salk Jonas_Salk Jonas_Edward_Salk,United States virologist who developed the Salk vaccine that is injected against poliomyelitis (born 1914)
+14787,Salk_vaccine IPV,a poliovirus vaccine consisting of inactivated polio virus that is injected subcutaneously to provide immunity to poliomyelitis
+14788,Sally_Lunn,a flat round slightly sweet teacake usually served hot
+14789,Salmacis,nymph who merged with Hermaphroditus to form one body
+14790,Salmo genus_Salmo,type genus of the Salmonidae: salmon and trout
+14791,Salmon Salmon_River,a tributary of the Snake River in Idaho
+14792,Salmonella_enteritidis Gartner's_bacillus,a form of salmonella that causes gastroenteritis in humans
+14793,Salmonella_typhimurium,a form of salmonella that causes food poisoning in humans
+14794,Salmonidae family_Salmonidae,salmon and trout
+14795,Salome,woman whose dancing beguiled Herod into giving her the head of John the Baptist
+14796,Salomon Haym_Salomon,American financier and American Revolutionary War patriot who helped fund the army during the American Revolution (1740?-1785)
+14797,Salpichroa genus_Salpichroa,herbs of temperate North and South America: cock's eggs
+14798,Salpidae family_Salpidae,a small family of tunicates in the class Thaliacea
+14799,Salpinctes genus_Salpinctes,a genus of Troglodytidae
+14800,Salsola genus_Salsola,chiefly Old World herbs or shrubs: saltworts
+14801,Salt_Lake_City capital_of_Utah,the capital and largest city of Utah; located near the Great Salt Lake in north central Utah; world capital of the Mormon Church
+14802,Salton_Sea,a saltwater lake in southeastern California
+14803,Saluki gazelle_hound,old breed of tall swift keen-eyed hunting dogs resembling greyhounds; from Egypt and southwestern Asia
+14804,Salvadora genus_Salvadora,genus of evergreen trees or shrubs; fruit is a drupe; grows in Africa through Arabia to India and China
+14805,Salvadoraceae family_Salvadoraceae Salvadora_family,a family of Old World shrubs and trees of order Gentianales; related to Oleaceae but having four stamens and four petals
+14806,Salvadoran Salvadorian Salvadorean,a native or inhabitant of El Salvador
+14807,Salvation_Army,a charitable and religious organization to evangelize and to care for the poor and homeless
+14808,Salvelinus genus_Salvelinus,brook trout
+14809,Salvinia genus_Salvinia,type genus of the Salviniaceae: water ferns
+14810,Salviniaceae family_Salviniaceae,water ferns
+14811,Salyut,either of two Soviet space stations launched in the 1970s
+14812,Salzburg,city in western Austria; a music center and birthplace of Mozart
+14813,Sam_Browne_belt,leather belt supported by a strap over the right shoulder
+14814,Sama-Veda,a collection of mantras and tunes for use with the Rig-Veda
+14815,Samaria,an ancient city in central Palestine founded in the 9th century BC as the capital of the northern Hebrew kingdom of Israel; the site is in present-day northwestern Jordan
+14816,Samaritan,a member of the people inhabiting Samaria in biblical times
+14817,Samarkand Samarcand,city in southern Uzbekistan; Tamerlane's opulent capital in the 14th century
+14818,Sambre Sambre_River,a river in western Europe that rises in northern France and flows generally east into Belgium where it joins the Meuse at Namur
+14819,Sambucus genus_Sambucus,elder; elderberry
+14820,Samhita,one of four collections of sacred texts
+14821,Samia genus_Samia,silkworm moths
+14822,Samnite,an Oscan-speaking member of an ancient people of Campania who clashed repeatedly with the early Romans
+14823,Samoa Independent_State_of_Samoa Western_Samoa Samoa_i_Sisifo,a constitutional monarchy on the western part of the islands of Samoa in the South Pacific
+14824,Samoa Samoan_Islands,a group of volcanic islands in the South Pacific midway between Hawaii and Australia; its climate and scenery and Polynesian culture make it a popular tourist stop
+14825,Samoan,a native or inhabitant of the Samoan Islands
+14826,Samolus genus_Samolus,genus of herbs usually growing in salt marshes: water pimpernels
+14827,Samoyed,a Samoyedic-speaking person in northwestern Siberia
+14828,Samoyed Samoyede,Siberian breed of white or cream-colored dog of the spitz family
+14829,Samoyedic Samoyed,the Uralic languages spoken by the Samoyed in northwestern Siberia
+14830,Samson,(Old Testament) a judge of Israel who performed herculean feats of strength against the Philistines until he was betrayed to them by his mistress Delilah
+14831,Samuel,(Old Testament) Hebrew prophet and judge who anointed Saul as king
+14832,San_Andreas_Fault,a major geological fault in California; runs from San Diego to San Francisco; the source of serious earthquakes
+14833,San_Angelo,a town in west central Texas; formerly a notorious frontier town
+14834,San_Antonio,a city of south central Texas; site of the Alamo; site of several military bases and a popular haven for vacationers
+14835,San_Bernardino,a city in southern California to the east of Los Angeles
+14836,San_Carlos_Apache,an Apache language
+14837,San_Diego,a picturesque city of southern California on San Diego Bay near the Mexican border; site of an important naval base
+14838,San_Diego_Bay,a bay of the Pacific in southern California
+14839,San_Fernando_Valley,a fertile valley in southern California to the north of Los Angeles; includes many residential communities
+14840,San_Francisco,a port in western California near the Golden Gate that is one of the major industrial and transportation centers; it has one of the world's finest harbors; site of the Golden Gate Bridge
+14841,San_Francisco_Bay,a bay of the Pacific in western California
+14842,San_Joaquin_River,a river in central California that rises in the Sierra Nevada and flows northwest to form a large delta with the Sacramento River
+14843,San_Joaquin_Valley,a vast valley in central California known for its rich farmland
+14844,San_Jose,a city in western California located at the southern end of San Francisco Bay to the south of San Francisco; a center for computer and electronics industries
+14845,San_Jose capital_of_Costa_Rica,the capital and largest city of Costa Rica
+14846,San_Jose_scale Aspidiotus_perniciosus,small east Asian insect naturalized in the United States that damages fruit trees
+14847,San_Juan,the capital and largest city of Puerto Rico
+14848,San_Juan_Hill,a hill in eastern Cuba (near Santiago de Cuba) that was captured during the Spanish-American War; "Theodore Roosevelt and his Rough Riders became famous for their charge up San Juan Hill"
+14849,San_Juan_Mountains,a mountain range in southwestern Colorado that is part of the Rocky Mountains
+14850,San_Luis_Potosi,a city in central Mexico
+14851,San_Marinese,a native or inhabitant of San Marino
+14852,San_Marino Republic_of_San_Marino,the smallest republic in the world; the oldest independent country in Europe (achieved independence in 301); located in the Apennines and completely surrounded by Italy
+14853,San_Marino capital_of_San_Marino,the capital and only city of San Marino
+14854,San_Mateo,a town in California to the south of San Francisco
+14855,San_Pablo,a town in western California to the north of Oakland on an arm of San Francisco Bay
+14856,San_Pedro_Sula,industrial city in northwestern Honduras
+14857,San_Salvador Salvadoran_capital,the capital and largest city of El Salvador; has suffered from recurrent earthquakes
+14858,San_Sebastian,a city in northern Spain on the Bay of Biscay near the French border; a fashionable seaside resort
+14859,Sana Sanaa Sana'a,the capital and largest city of Yemen; on the central plateau
+14860,Sanchez Ilich_Sanchez Ilich_Ramirez_Sanchez Carlos Carlos_the_Jackal Salim Andres_Martinez Taurus Glen_Gebhard Hector_Hevodidbon Michael_Assat,Venezuelan master terrorist raised by a Marxist-Leninist father; trained and worked with many terrorist groups (born in 1949)
+14861,Sand George_Sand Amandine_Aurore_Lucie_Dupin Baroness_Dudevant,French writer known for works concerning women's rights and independence (1804-1876)
+14862,Sandburg Carl_Sandburg,United States writer remembered for his poetry in free verse and his six volume biography of Abraham Lincoln (1878-1967)
+14863,Sangay,an inactive volcano in the Andes in central Ecuador; last erupted in 1946
+14864,Sanger Frederick_Sanger Fred_Sanger,English biochemist who determined the sequence of amino acids in insulin and who invented a technique to determine the genetic sequence of an organism (born in 1918)
+14865,Sanger Margaret_Sanger Margaret_Higgins_Sanger,United States nurse who campaigned for birth control and planned parenthood; she challenged Gregory Pincus to develop a birth control pill (1883-1966)
+14866,Sango,a trade language widely used in Chad
+14867,Sanguinaria genus_Sanguinaria,one species: bloodroot
+14868,Sanhedrin,the supreme judicial and ecclesiastical council of ancient Jerusalem
+14869,Sanicula genus_Sanicula,chiefly American herbs: sanicle
+14870,Sanskrit Sanskritic_language,(Hinduism) an ancient language of India (the language of the Vedas and of Hinduism); an official language of India although it is now used only for religious purposes
+14871,Sanskrit_literature,Hindu literature written in Sanskrit
+14872,Santa_Ana,a strong hot dry wind that blows in winter from the deserts of southern California toward the Pacific Coast
+14873,Santa_Ana,a city in southern California to the east of Long Beach
+14874,Santa_Ana,a city in western El Salvador
+14875,Santa_Anna Santa_Ana Antonio_Lopez_de_Santa_Anna Antonio_Lopez_de_Santa_Ana,Mexican general who tried to crush the Texas revolt and who lost battles to Winfield Scott and Zachary Taylor in the Mexican War (1795-1876)
+14876,Santa_Barbara,a town in southwestern California on the Pacific Ocean
+14877,Santa_Catalina Catalina_Island,an island resort in the Pacific off the southwestern coast of California
+14878,Santa_Clara,a city of west central California; residential area with light industry
+14879,Santa_Claus Santa Kriss_Kringle Father_Christmas Saint_Nicholas Saint_Nick St._Nick,the legendary patron saint of children; an imaginary being who is thought to bring presents to children at Christmas
+14880,Santa_Cruz,a town in western California on Monterey Bay; a tourist center
+14881,Santa_Cruz,a city in central Bolivia
+14882,Santa_Cruz_cypress Cupressus_abramsiana Cupressus_goveniana_abramsiana,rare California cypress taller than but closely related to gowen cypress and sometimes considered the same species
+14883,Santa_Fe capital_of_New_Mexico,capital of the state of New Mexico; located in north central New Mexico
+14884,Santa_Fe_Trail,a trail that extends from Missouri to New Mexico; an important route for settlers moving west in the 19th century
+14885,Santa_Gertrudis,Brahman and shorthorn crossbreed of red cattle; hardy in hot regions
+14886,Santa_Lucia_fir bristlecone_fir Abies_bracteata Abies_venusta,a pyramidal fir of southwestern California having spiny pointed leaves and cone scales with long spines
+14887,Santa_Maria_del_Tule,a town in southeastern Mexico near Oaxaca; site of Ahuehuete, a giant Montezuma cypress
+14888,Santalaceae family_Santalaceae sandalwood_family,chiefly tropical herbs or shrubs or trees bearing nuts or one-seeded fruit
+14889,Santalales order_Santalales,order of plants distinguished by having a one-celled inferior ovary; many are parasitic or partly parasitic usually on roots
+14890,Santalum genus_Santalum,parasitic trees of Indonesia and Malaysia
+14891,Santee,the Siouan language spoken by the Santee
+14892,Santee Santee_Sioux Santee_Dakota Eastern_Sioux,a member of the eastern branch of the Sioux
+14893,Santiago Santiago_de_Cuba,a naval battle in the Spanish-American War (1898); the United States fleet bottled up the Spanish ships in the harbor of Santiago de Cuba and destroyed them when they tried to escape
+14894,Santiago_de_Cuba Santiago,a port city in southeastern Cuba; industrial center
+14895,Santiago_de_los_Caballeros Santiago,city in the northern Dominican Republic
+14896,Santo_Domingo Ciudad_Trujillo capital_of_the_Dominican_Republic,the capital and largest city of the Dominican Republic; "Santo Domingo is the oldest continually inhabited European settlement in the Americas with the oldest cathedral and the oldest hospital and the oldest monastery in the Western Hemisphere"
+14897,Santolina genus_Santolina,genus of Mediterranean subshrubs with rayless flower heads
+14898,Santos,a port city in southwestern Brazil on an offshore island near Sao Paulo
+14899,Sanvitalia genus_Sanvitalia,small genus of tropical American annual herbs: creeping zinnia
+14900,Sao_Bernardo_do_Campo,a city in southeastern Brazil; an industrial suburb of Sao Paulo
+14901,Sao_Francisco,a river in eastern Brazil flowing into the Atlantic Ocean
+14902,Sao_Goncalo,an industrial city in southeastern Brazil across the bay from Rio de Janeiro
+14903,Sao_Joao_de_Meriti,a city in southeastern Brazil that is a residential suburb of Rio de Janeiro
+14904,Sao_Jose_dos_Campos,a city in southeastern Brazil to the northeast of Sao Paulo
+14905,Sao_Louis,a city on an offshore island in northeast Brazil
+14906,Sao_Paulo,an ultramodern city in southeastern Brazil; the largest city in South America
+14907,Sao_Thome_e_Principe_monetary_unit,monetary unit on Sao Tome e Principe
+14908,Sao_Tiago_Island,largest of the Cape Verde Islands in the Atlantic Ocean
+14909,Sao_Tome,capital of Sao Tome and Principe
+14910,Sao_Tome_and_Principe Democratic_Republic_of_Sao_Tome_and_Principe Sao_Tome_e_Principe Sao_Thome_e_Principe St._Thomas_and_Principe,island nation in the South Atlantic off the west coast of Africa; achieved independence from Portugal in 1975; has enormous offshore oil reserves
+14911,Saone Saone_River,a river in eastern France; rises in Lorraine and flows south to become the chief tributary of the Rhone
+14912,Sapindaceae family_Sapindaceae soapberry_family,chiefly tropical New and Old World deciduous and evergreen trees and shrubs bearing leathery drupes with yellow translucent flesh; most plants produce toxic saponins
+14913,Sapindales order_Sapindales,an order of dicotyledonous plants
+14914,Sapindus genus_Sapindus,type genus of the Sapindaceae
+14915,Sapir Edward_Sapir,anthropologist and linguist; studied languages of North American Indians (1884-1939)
+14916,Saponaria genus_Saponaria,mostly perennial Old World herbs
+14917,Sapotaceae family_Sapotaceae sapodilla_family,tropical trees or shrubs with milky juice and often edible fleshy fruit
+14918,Sappho,the Greek lyric poet of Lesbos; much admired although only fragments of her poetry have been preserved (6th century BC)
+14919,Sapporo,a commercial city in northern Japan on western Hokkaido
+14920,Saprolegnia genus_Saprolegnia,aquatic fungi growing chiefly on plant debris and animal remains
+14921,Saprolegniales order_Saprolegniales,order of chiefly aquatic fungi
+14922,Saqqara Saqqarah Sakkara,a town in northern Egypt; site of the oldest Egyptian pyramids
+14923,Saracen,(when used broadly) any Arab
+14924,Saracen,(historically) a member of the nomadic people of the Syrian and Arabian deserts at the time of the Roman Empire
+14925,Saracen,(historically) a Muslim who opposed the Crusades
+14926,Sarah,(Old Testament) the wife of Abraham and mother of Isaac
+14927,Sarajevo,capital and largest city of Bosnia; scene of the assassination of Francis Ferdinand in 1914 which precipitated World War I
+14928,Sarasota,a town in west central Florida on the Gulf of Mexico
+14929,Sarasvati,Hindu goddess of learning and the arts
+14930,Saratoga battle_of_Saratoga,a battle during the American Revolution (1777); the British under Burgoyne were defeated
+14931,Saratoga_Springs,a town in eastern New York State famed for its spa and its horse racing
+14932,Saratoga_spittlebug Aphrophora_saratogensis,feeds on pines in northern United States
+14933,Saratov,an industrial city in the European part of Russia
+14934,Sarawak,the largest state in Malaysia; located on the northwest of the island of Borneo
+14935,Sarawakian,a native or inhabitant of Sarawak
+14936,Sarazen Gene_Sarazen,United States golfer who was first to win all four major golf tournaments (1902-1999)
+14937,Sarcobatus genus_Sarcobatus,one species: greasewood
+14938,Sarcocephalus genus_Sarcocephalus,genus of tropical African trees and shrubs
+14939,Sarcochilus genus_Sarcochilus,diminutive epiphytic or lithophytic orchids with clumped short-stemmed foliage and arching racemes of colorful flowers; Australia and Polynesia to southeastern Asia
+14940,Sarcocystis genus_Sarcocystis,chief genus of the order Sarcosporidia
+14941,Sarcodes genus_Sarcodes,snow plant; in some classifications placed in family Pyrolaceae
+14942,Sarcodina class_Sarcodina,characterized by the formation of pseudopods for locomotion and taking food: Actinopoda; Rhizopoda
+14943,Sarcophaga genus_Sarcophaga,flesh flies
+14944,Sarcophilus genus_Sarcophilus,Tasmanian devil
+14945,Sarcoptes genus_Sarcoptes,type genus of the family Sarcoptidae: itch mites
+14946,Sarcoptidae family_Sarcoptidae,small whitish mites
+14947,Sarcorhamphus genus_Sarcorhamphus,usually containing only the king vulture
+14948,Sarcoscypha_coccinea scarlet_cup,a discomycete that is a harbinger of spring; the fruiting body is thin and tough and saucer-shaped (about the size of quarter to a half dollar) with a deep bright red upper surface and a whitish exterior
+14949,Sarcoscyphaceae family_Sarcoscyphaceae,family of fungi belonging to the order Pezizales
+14950,Sarcosomataceae,a type of ascomycetous fungus
+14951,Sarcosporidia order_Sarcosporidia,imperfectly known parasites of the muscles of vertebrates
+14952,Sarcostemma genus_Sarcostemma,succulent subshrubs or vines; tropical and subtropical India and Africa and Malaysia
+14953,Sarda genus_Sarda,bonitos
+14954,Sardina genus_Sardina genus_Sardinia,pilchards
+14955,Sardinia Sardegna,the Italian region on the island of Sardinia; the kingdom of Sardinia was the nucleus for uniting Italy during the 19th century
+14956,Sardinia Sardegna,an island in the Mediterranean to the west of Italy
+14957,Sardinian,a native or inhabitant of Sardinia
+14958,Sardinian,the Italian dialect spoken in Sardinia; sometimes considered a separate language with many loan words from Spanish
+14959,Sardinops genus_Sardinops,pilchards
+14960,Sardis,an ancient Greek city located in the western part of what is now modern Turkey; as the capital of Lydia it was the cultural center of Asia Minor; destroyed by Tamerlane in 1402
+14961,Sargasso_Sea,a vast area of the North Atlantic from the West Indies to the Azores that is dense with gulfweed
+14962,Sargent John_Singer_Sargent,United States painter (born in Italy) known for his society portraits (1856-1925)
+14963,Sarnoff David_Sarnoff,United States businessman who pioneered in radio and television broadcasting (1891-1971)
+14964,Saronic_Gulf Gulf_of_Aegina,a gulf of the Aegean on the southeastern coast of Greece
+14965,Saroyan William_Saroyan,United States writer of plays and short stories (1908-1981)
+14966,Sarpanitu Zirbanit Zarpanit,consort of Marduk
+14967,Sarpedon,(Greek mythology) a son of Zeus who became king of Lycia; fought on behalf of the Trojans in the Trojan War and was killed by Patroclus
+14968,Sarracenia genus_Sarracenia,pitcher plants
+14969,Sarraceniaceae family_Sarraceniaceae pitcher-plant_family,insectivorous plants
+14970,Sarraceniales order_Sarraceniales,plants that are variously modified to serve as insect traps: families Sarraceniaceae; Nepenthaceae; Droseraceae
+14971,Sartre Jean-Paul_Sartre,French writer and existentialist philosopher (1905-1980)
+14972,Saskatchewan,one of the three prairie provinces in west central Canada; "vast fields of wheat grow on Saskatchewan's prairies"
+14973,Saskatoon,a city in central Saskatchewan; the largest city in the province
+14974,Sassenach,the Scots' term for an English person
+14975,Satan Old_Nick Devil Lucifer Beelzebub the_Tempter Prince_of_Darkness,(Judeo-Christian and Islamic religions) chief spirit of evil and adversary of God; tempter of mankind; master of Hell
+14976,Satanist diabolist,an adherent of Satan or Satanism
+14977,Satie Erik_Satie Erik_Alfred_Leslie_Satie,French composer noted for his experimentalism and rejection of Romanticism (1866-1925)
+14978,Saturday Sabbatum Sat,the seventh and last day of the week; observed as the Sabbath by Jews and some Christians
+14979,Saturday_night_special,a cheap handgun that is easily obtained
+14980,Satureja genus_Satureja Satureia genus_Satureia,savory
+14981,Saturn,(Roman mythology) god of agriculture and vegetation; counterpart of Greek Cronus; "Saturday is Saturn's Day"
+14982,Saturn,a giant planet that is surrounded by three planar concentric rings of ice particles; the 6th planet from the sun
+14983,Saturnalia,an orgiastic festival in ancient Rome in honor of Saturn
+14984,Saturnia genus_Saturnia,type genus of the Saturniidae: emperor moth
+14985,Saturniidae family_Saturniidae,important and widely distributed family of moths including some of the largest insects known
+14986,Satyagraha,the form of nonviolent resistance initiated in India by Mahatma Gandhi in order to oppose British rule and to hasten political reforms
+14987,Satyridae family_Satyridae,a widely distributed family of butterflies common near the edges of woods
+14988,Saudi Saudi_Arabian,a native or inhabitant of Saudi Arabia
+14989,Saudi_Arabia Kingdom_of_Saudi_Arabia,an absolute monarchy occupying most of the Arabian Peninsula in southwest Asia; vast oil reserves dominate the economy
+14990,Saudi_Arabian_monetary_unit,monetary unit in Saudi Arabia
+14991,Saudi_Arabian_riyal riyal,the basic unit of money in Saudi Arabia
+14992,Sauk Sac,a member of the Algonquian people formerly living in Wisconsin in the Fox River valley and on the shores of Green Bay
+14993,Saul,(Old Testament) the first king of the Israelites who defended Israel against many enemies (especially the Philistines)
+14994,Sault_Sainte_Marie,a town of southern Ontario opposite northern Michigan
+14995,Sauria suborder_Sauria Lacertilia suborder_Lacertilia,true lizards; including chameleons and geckos
+14996,Saurischia order_Saurischia,extinct terrestrial reptiles: theropods (carnivorous); sauropods (herbivorous)
+14997,Sauromalus genus_Sauromalus,chuckwallas
+14998,Sauropoda suborder_Sauropoda,any of the sauropod dinosaurs
+14999,Sauropodomorpha suborder_Sauropodomorpha,gigantic herbivorous dinosaurs having huge bodies with long necks and small heads: Prosauropoda and Sauropoda (apatosaurus, diplodocus and titanosaurs)
+15000,Sauropterygia order_Sauropterygia,extinct marine reptiles: plesiosaurs; nothosaurs
+15001,Saurosuchus genus_Saurosuchus,early archosaurian carnivore
+15002,Saururaceae family_Saururaceae lizard's-tail_family,family of perennial aromatic herbs: genera Saururus, Anemopsis, Houttuynia
+15003,Saururus genus_Saururus,type genus of the Saururaceae: lizard's-tails
+15004,Saussurea genus_Saussurea,genus of herbs of temperate and cool regions of Eurasia
+15005,Sauterne Sauternes,semisweet golden-colored table or dessert wine from around Bordeaux in France; similar wine from California
+15006,Sauvignon_blanc,white wine grape grown in California
+15007,Sauvignon_blanc,a California wine
+15008,Sauvignon_grape,small blue-black grape of Medoc region of France highly prized in winemaking
+15009,Savannah,a port in eastern Georgia near the mouth of the Savannah river
+15010,Savannah Savannah_River,a river in South Carolina that flows southeast to the Atlantic
+15011,Savara,a member of the Dravidian people living in southern India
+15012,Savara,a Dravidian language spoken by the Savara in southeastern India (north of Madras)
+15013,Savitar,an important Hindu god; the sun in its life-giving aspect
+15014,Savonarola Girolamo_Savonarola,Italian religious and political reformer; a Dominican friar in Florence who preached against sin and corruption and gained a large following; he expelled the Medici from Florence but was later excommunicated and executed for criticizing the Pope (1452-1498)
+15015,Savoy,a geographical region of historical importance; a former duchy in what is now southwestern France, western Switzerland, and northwestern Italy
+15016,Savoyard,a person who performs in the operettas of Gilbert and Sullivan
+15017,Savoyard,a resident of Savoy
+15018,Sawan Sravana,the fifth month of the Hindu calendar
+15019,Sax Adolphe_Sax,a Belgian maker of musical instruments who invented the saxophone (1814-1894)
+15020,Saxe Hermann_Maurice_Saxe comte_de_Saxe Marshal_Saxe,a French marshal who distinguished himself in the War of the Austrian Succession (1696-1750)
+15021,Saxe-Coburg-Gotha,the name of the royal family that ruled Great Britain from 1901-1917; the name was changed to Windsor in 1917 in response to anti-German feelings in World War I
+15022,Saxe-gothea Saxegothea genus_Saxe-gothea genus_Saxegothea,one species: Prince Albert's yew
+15023,Saxicola genus_Saxicola,Old World chats
+15024,Saxifraga genus_Saxifraga,type genus of the Saxifragaceae; large genus of usually perennial herbs of Arctic and cool regions of northern hemisphere: saxifrage
+15025,Saxifragaceae family_Saxifragaceae saxifrage_family,a large and diverse family of evergreen or deciduous herbs; widely distributed in northern temperate and cold regions; sometimes includes genera of the family Hydrangeaceae
+15026,Saxo_Grammaticus,Danish historian who chronicled the history of Denmark (including the legend of Hamlet) (1150?-1220?)
+15027,Saxon,a member of a Germanic people who conquered England and merged with the Angles and Jutes to become Anglo-Saxons; dominant in England until the Norman Conquest
+15028,Saxony Sachsen Saxe,an area in Germany around the upper Elbe river; the original home of the Saxons
+15029,Sayan_Mountains,a range of mountains in southern Siberia to the west of Lake Baikal; contain important mineral deposits
+15030,Sayda Saida Sidon,the main city of ancient Phoenicia
+15031,Sayeret_Matkal Sayeret_Mat'kal sayeret,Israel's elite secret commando unit responsible for counterterrorist and top secret intelligence gathering and hostage rescue missions
+15032,Sayers Dorothy_Sayers Dorothy_L._Sayers Dorothy_Leigh_Sayers,English writer of detective fiction (1893-1957)
+15033,Sayornis genus_Sayornis,phoebes
+15034,Sazerac,a cocktail made with bourbon with bitters and Pernod and sugar served with lemon peel
+15035,Scandentia order_Scandentia,a small order comprising only the tree shrews: in some classifications tree shrews are considered either primates (and included in the suborder Prosimii) or true insectivores (and included in the order Insectivora)
+15036,Scandinavia,a group of culturally related countries in northern Europe; Finland and Iceland are sometimes considered Scandinavian
+15037,Scandinavia Scandinavian_Peninsula,the peninsula in northern Europe occupied by Norway and Sweden
+15038,Scandinavian Norse Northman,an inhabitant of Scandinavia
+15039,Scandinavian Scandinavian_language Nordic Norse North_Germanic North_Germanic_language,the northern family of Germanic languages that are spoken in Scandinavia and Iceland
+15040,Scandinavian_country Scandinavian_nation,any one of the countries occupying Scandinavia
+15041,Scandinavian_lox,salt-cured Scandinavian salmon
+15042,Scaphiopus genus_Scaphiopus,New World spadefoot toads
+15043,Scaphopoda class_Scaphopoda,small class of bilaterally symmetrical marine forms comprising the tooth shells
+15044,Scaphosepalum genus_Scaphosepalum,comprises some tropical American species usually placed in genus Masdevallia: diminutive plants with small flowers carried on one scape
+15045,Scarabaeidae family_Scarabaeidae,scarab or dung beetles
+15046,Scaramouch Scaramouche,a stock character in commedia dell'arte depicted as a boastful coward
+15047,Scardinius genus_Scardinius,rudds
+15048,Scaridae family_Scaridae,parrotfishes
+15049,Scartella genus_Scartella,a genus of Blenniidae
+15050,Sceliphron genus_Sceliphron,mud daubers
+15051,Sceloglaux genus_Sceloglaux,a genus of Strigidae
+15052,Sceloporus genus_Sceloporus,spiny lizards
+15053,Schadenfreude,delight in another person's misfortune
+15054,Schaffneria genus_Schaffneria,one species
+15055,Schaffneria_nigripes Asplenium_nigripes Scolopendrium_nigripes,a fern of the genus Schaffneria
+15056,Scheele Karl_Scheele Karl_Wilhelm_Scheele,Swedish chemist (born in Germany) who discovered oxygen before Priestley did (1742-1786)
+15057,Schefflera genus_Schefflera,large genus of shrubby and climbing tropical plants having showy digitately compound foliage
+15058,Scheldt Scheldt_River,a river that rises in France and flows northeast across Belgium and empties into the North Sea
+15059,Schenectady,a city of eastern New York on the Mohawk river; it prospered after the opening of the Erie Canal
+15060,Scheuchzeriaceae family_Scheuchzeriaceae Juncaginaceae family_Juncaginaceae arrow-grass_family,a family of monocotyledonous bog herbs of order Naiadales
+15061,Schiaparelli Elsa_Schiaparelli,fashion designer born in Italy who was noted for her use of synthetic materials and brilliant colors (1896-1973)
+15062,Schiaparelli Giovanni_Virginio_Schiaparelli,Italian astronomer who first noted lines (which he called canals) on the surface of Mars (1835-1910)
+15063,Schick_test,a skin test for immunity to diphtheria
+15064,Schiller Johann_Christoph_Friedrich_von_Schiller,German romantic writer (1759-1805)
+15065,Schinus genus_Schinus,genus of evergreen shrubs and trees of tropical and subtropical regions of South and Central America and Canary Islands and China
+15066,Schistosoma genus_Schistosoma,type genus of the family Schistosomatidae: blood flukes
+15067,Schistosomatidae family_Schistosomatidae,a family of Trematoda
+15068,Schizachyrium genus_Schizachyrium,overlaps the genus Andropogon
+15069,Schizaea genus_Schizaea,type genus of the Schizaeaceae cosmopolitan especially in tropics; small leptosporangiate ferns: curly grass fern
+15070,Schizaeaceae family_Schizaeaceae,small family of mainly tropical ferns
+15071,Schizomycetes class_Schizomycetes,a former classification
+15072,Schizophragma genus_Schizophragma,small genus of deciduous climbing and creeping shrubs with white flowers in flat clusters; sometimes placed in family Saxifragaceae
+15073,Schizophyta division_Schizophyta,former term for the Cyanophyta
+15074,Schizopoda,in former classifications a division of Malacostraca; superseded by the orders Mysidacea and Euphausiacea
+15075,Schizosaccharomyces genus_Schizosaccharomyces,type and only genus of Schizosaccharomycetaceae; comprises the fission yeasts
+15076,Schizosaccharomycetaceae family_Schizosaccharomycetaceae,a family of fungi belonging to order Endomycetales
+15077,Schleiden Matthias_Schleiden M._J._Schleiden,German physiologist and histologist who in 1838 formulated the cell theory (1804-1881)
+15078,Schlesinger Arthur_Schlesinger Arthur_Meier_Schlesinger,United States historian (1888-1965)
+15079,Schlesinger Arthur_Schlesinger Arthur_Schlesinger_Jr. Arthur_Meier_Schlesinger_Jr.,United States historian and advisor to President Kennedy (born in 1917)
+15080,Schliemann Heinrich_Schliemann,German archaeologist who discovered nine superimposed city sites of Troy; he also excavated Mycenae (1822-1890)
+15081,Schlumbergera genus_Schlumbergera,South American epiphytic or lithophytic cacti
+15082,Schmidt Helmut_Schmidt Helmut_Heinrich_Waldemar_Schmidt,German statesman who served as chancellor of Germany (born in 1918)
+15083,Schmidt_telescope Schmidt_camera,reflecting telescope that has plate that corrects for aberration so a wide area of sky can be photographed
+15084,Schnabel Artur_Schnabel,United States composer (born in Austria) and pianist noted for his interpretations of the works of Mozart and Beethoven and Schubert (1882-1951)
+15085,Scholastic,a Scholastic philosopher or theologian
+15086,Scholasticism,the system of philosophy dominant in medieval Europe; based on Aristotle and the Church Fathers
+15087,Schomburgkia genus_Schomburgkia,genus of tropical American epiphytic orchids with showy racemose flowers
+15088,Schonbein Christian_Schonbein Christian_Friedrich_Schonbein,German chemist who discovered ozone and developed guncotton as a propellant in firearms (1799-1868)
+15089,Schonberg Arnold_Schonberg Schoenberg Arnold_Schoenberg,United States composer and musical theorist (born in Austria) who developed atonal composition (1874-1951)
+15090,Schoolcraft Henry_Rowe_Schoolcraft,United States geologist and ethnologist and explorer who discovered the source of the Mississippi River (1793-1864)
+15091,Schoolman medieval_Schoolman,a scholar in one of the universities of the Middle Ages; versed in scholasticism
+15092,Schopenhauer Arthur_Schopenhauer,German pessimist philosopher (1788-1860)
+15093,Schreiber's_aster,a variety of aster
+15094,Schrodinger Erwin_Schrodinger,Austrian physicist who discovered the wave equation (1887-1961)
+15095,Schrodinger_equation Schrodinger_wave_equation,the fundamental equation of wave mechanics
+15096,Schubert Franz_Schubert Franz_Peter_Schubert Franz_Seraph_Peter_Schubert,Austrian composer known for his compositions for voice and piano (1797-1828)
+15097,Schulz Charles_Schulz Charles_M._Schulz Charles_Munroe_Schulz,United States cartoonist whose comic strip included the beagle Snoopy (1922-2000)
+15098,Schumann Clara_Josephine_Schumann,German pianist and composer of piano music; renowned for her interpretation of music, especially the music of her husband Robert Schumann (1819-1896)
+15099,Schumann Robert_Schumann Robert_Alexander_Schumann,German romantic composer known for piano music and songs (1810-1856)
+15100,Schumann-Heink Ernestine_Schumann-Heink,United States operatic contralto (1861-1936)
+15101,Schumpeter Joseph_Schumpeter Joseph_Alois_Schumpeter,United States economist (born in Czechoslovakia) (1883-1950)
+15102,Schutzstaffel SS,special police force in Nazi Germany founded as a personal bodyguard for Adolf Hitler in 1925; the SS administered the concentration camps
+15103,Schwann Theodor_Schwann,German physiologist and histologist who in 1838 and 1839 identified the cell as the basic structure of plant and animal tissue (1810-1882)
+15104,Schwann_cell,any cell that covers the nerve fibers in the peripheral nervous system and forms the myelin sheath
+15105,Schweitzer Albert_Schweitzer,French philosopher and physician and organist who spent most of his life as a medical missionary in Gabon (1875-1965)
+15106,Sciadopityaceae family_Sciadopityaceae,family comprising a single genus that until recently was considered part of Taxodiaceae
+15107,Sciadopitys genus_Sciadopitys,type and sole genus of Sciadopityaceae; Japanese umbrella pines
+15108,Sciaena genus_Sciaena,type genus of the Sciaenidae: croakers
+15109,Sciaenidae family_Sciaenidae,warm-water marine fishes including the drums and grunts and croakers and sea trout
+15110,Sciaenops genus_Sciaenops,a genus of Sciaenidae
+15111,Sciaridae family_Sciaridae,fungus gnats
+15112,Scientology Church_of_Scientology,a new religion founded by L. Ron Hubbard in 1955 and characterized by a belief in the power of a person's spirit to clear itself of past painful experiences through self-knowledge and spiritual fulfillment
+15113,Scilly_Islands Isles_of_Scilly,an archipelago of small islands off the southwestern coast of England near the entrance to the English Channel; formerly a haven for smugglers and pirates
+15114,Scincella genus_Scincella,a reptile genus of Scincidae
+15115,Scincidae family_Scincidae,skinks
+15116,Scincus genus_Scincus,type genus of Scincidae
+15117,Scindapsus genus_Scindapsus genus_Pothos,evergreen climbers with adhesive adventitious roots; southeastern Asia and Brazil
+15118,Scipio Scipio_Africanus Scipio_Africanus_Major Publius_Cornelius_Scipio Publius_Cornelius_Scipio_Africanus_Major Scipio_the_Elder,Roman general who commanded the invasion of Carthage in the second Punic War and defeated Hannibal at Zama (circa 237-183 BC)
+15119,Scirpus genus_Scirpus,rhizomatous perennial grasslike herbs
+15120,Sciuridae family_Sciuridae,a mammal family of true squirrels including: ground squirrels; marmots; chipmunks; flying squirrels; spermophiles
+15121,Sciuromorpha suborder_Sciuromorpha,large more or less primitive rodents: squirrels; marmots; gophers; beavers; etc.
+15122,Sciurus genus_Sciurus,type genus of the Sciuridae; typical moderate-sized arboreal squirrels
+15123,Scleranthus genus_Scleranthus,small genus of Old World weedy prostrate annuals: knawel
+15124,Scleroderma genus_Scleroderma,genus of poisonous fungi having hard-skinned fruiting bodies: false truffles
+15125,Scleroderma_bovista smooth_earthball,an earthball with a peridium that is firm dry and smooth when young but developing cracks when mature; pale orange-yellow when young and reddish brown at maturity
+15126,Scleroderma_citrinum Scleroderma_aurantium,an earthball fungus that is a dingy brownish yellow and a dark purplish interior; the peridium is covered with a pattern of small warts
+15127,Scleroderma_flavidium star_earthball,an earthball with a smooth upper surface that is at first buried in sand; the top of the fruiting body opens up to form segments like the ray of an umbel
+15128,Sclerodermataceae family_Sclerodermataceae,a family of fungi or order Sclerodermatales with a single-layered peridium; includes earthballs
+15129,Sclerodermatales order_Sclerodermatales,an order of fungi having a peridium surrounding a gleba (sometimes placed in subclass Homobasidiomycetes)
+15130,Scleropages genus_Scleropages,a genus of large freshwater fishes of Australia and Borneo
+15131,Scleroparei order_Scleroparei,scorpionfishes; sculpins; gurnards; greenlings; flying gurnards
+15132,Sclerotiniaceae family_Sclerotiniaceae,a fungus family of order Helotiales
+15133,Sclerotium genus_Sclerotium,form genus of sterile imperfect fungi; many form sclerotia; some cause sclerotium disease in plants
+15134,Scolopacidae family_Scolopacidae,sandpiper family: sandpipers; woodcocks; snipes; tattlers; curlews; godwits; dowitchers
+15135,Scolopax genus_Scolopax,type of the Scolopacidae: Old World woodcocks
+15136,Scolymus genus_Scolymus,small genus of thistlelike herbs of the Mediterranean region
+15137,Scolytidae family_Scolytidae Ipidae family_Ipidae,large family of bark-boring or wood-boring short-beaked beetles; very destructive to forest and fruit trees
+15138,Scolytus genus_Scolytus,type genus of the Scolytidae comprising numerous small bark beetles
+15139,Scomber genus_Scomber,type genus of the Scombridae
+15140,Scomberesocidae family_Scomberesocidae Scombresocidae family_Scombresocidae,only sauries
+15141,Scomberesox genus_Scomberesox Scombresox genus_Scombresox,a genus of Scomberesocidae
+15142,Scomberomorus genus_Scomberomorus,Spanish mackerels
+15143,Scomberomorus_maculatus,a large commercially important mackerel of the Atlantic coastal waters of North America
+15144,Scombridae family_Scombridae,marine food fishes: mackerels; chub mackerels; tuna
+15145,Scombroidea suborder_Scombroidea,mackerels; tunas; albacores; bonitos; swordfishes; sailfishes
+15146,Scopes John_Scopes John_Thomas_Scopes,Tennessee highschool teacher who violated a state law by teaching evolution; in a highly publicized trial in 1925 he was prosecuted by William Jennings Bryan and defended by Clarence Darrow (1900-1970)
+15147,Scopes_trial,a highly publicized trial in 1925 when John Thomas Scopes violated a Tennessee state law by teaching evolution in high school; Scopes was prosecuted by William Jennings Bryan and defended by Clarence Darrow; Scopes was convicted but the verdict was later reversed
+15148,Scophthalmus genus_Scophthalmus,a genus of Bothidae
+15149,Scopolia genus_Scopolia,genus of European perennial herbs yielding medicinal alkaloids
+15150,Scopolia_carniolica,herb that is a source of scopolamine
+15151,Scorpaena genus_Scorpaena,type genus of the Scorpaenidae: scorpionfishes
+15152,Scorpaenidae family_Scorpaenidae,scorpionfishes; rockfishes; lionfishes
+15153,Scorpaenoidea suborder_Scorpaenoidea,mail-cheeked fishes: scorpionfishes; gurnards
+15154,Scorpio Scorpio_the_Scorpion Scorpion,the eighth sign of the zodiac; the sun is in this sign from about October 23 to November 21
+15155,Scorpio Scorpion,(astrology) a person who is born while the sun is in Scorpio
+15156,Scorpionida order_Scorpionida,true scorpions
+15157,Scorpius Scorpio,a large zodiacal constellation between Libra and Sagittarius
+15158,Scorsese Martin_Scorsese,United States filmmaker (born in 1942)
+15159,Scot Scotsman Scotchman,a native or inhabitant of Scotland
+15160,Scotch Scotch_whiskey Scotch_whisky malt_whiskey malt_whisky Scotch_malt_whiskey Scotch_malt_whisky,whiskey distilled in Scotland; especially whiskey made from malted barley in a pot still
+15161,Scotch_and_soda,a highball with Scotch malt whiskey and club soda
+15162,Scotch_asphodel Tofieldia_pusilla,false asphodel having spikes of white flowers; of mountainous regions of Europe
+15163,Scotch_broth,a thick soup made from beef or mutton with vegetables and pearl barley
+15164,Scotch_egg,hard-cooked egg encased in sausage meat then breaded and deep-fried
+15165,Scotch_kiss,butterscotch candy kiss
+15166,Scotch_laburnum Alpine_golden_chain Laburnum_alpinum,an ornamental shrub or tree of the genus Laburnum
+15167,Scotch_pine Scots_pine Scotch_fir Pinus_sylvestris,medium large two-needled pine of northern Europe and Asia having flaking red-brown bark
+15168,Scotch_terrier Scottish_terrier Scottie,old Scottish breed of small long-haired usually black terrier with erect tail and ears
+15169,Scotch_woodcock,creamy scrambled eggs on toast spread with anchovy paste
+15170,Scotland,one of the four countries that make up the United Kingdom of Great Britain and Northern Ireland; located on the northern part of the island of Great Britain; famous for bagpipes and plaids and kilts
+15171,Scotland_Yard New_Scotland_Yard,the detective department of the metropolitan police force of London
+15172,Scotswoman Scotchwoman,a woman who is a Scot
+15173,Scott Dred_Scott,United States slave who sued for liberty after living in a non-slave state; caused the Supreme Court to declare the Missouri Compromise unconstitutional (1795?-1858)
+15174,Scott George_C._Scott,award-winning United States film actor (1928-1999)
+15175,Scott Robert_Scott Robert_Falcon_Scott,English explorer who reached the South Pole just a month after Amundsen; he and his party died on the return journey (1868-1912)
+15176,Scott Walter_Scott Sir_Walter_Scott,British author of historical novels and ballads (1771-1832)
+15177,Scott Winfield_Scott,United States general who was a hero of the War of 1812 and who defeated Santa Anna in the Mexican War (1786-1866)
+15178,Scottish Scots Scots_English,the dialect of English used in Scotland
+15179,Scottish_Gaelic Scots_Gaelic,the Gaelic of Scotland
+15180,Scottish_deerhound deerhound,very large and tall rough-coated dog bred for hunting deer; known as the royal dog of Scotland
+15181,Scout,a Boy Scout or Girl Scout
+15182,Scrabble,a board game in which words are formed from letters in patterns similar to a crossword puzzle; each letter has a value and those values are used to score the game
+15183,Scranton,an industrial city of northeastern Pennsylvania
+15184,Scriabin Aleksandr_Scriabin Aleksandr_Nikolayevich_Scriabin,Russian composer of orchestral and piano music (1872-1915)
+15185,Scribe Augustin_Eugene_Scribe,French playwright (1791-1861)
+15186,Scripps Edward_Wyllis_Scripps,United States newspaper publisher who founded an important press association; half-brother of James Edmund Scripps (1854-1926)
+15187,Scripps James_Edmund_Scripps,United States newspaper publisher and half-brother of Edward Wyllis Scripps (1835-1908)
+15188,Scrophularia genus_Scrophularia,type genus of Scrophulariaceae; named for the plants' supposed ability to cure scrofula: figworts
+15189,Scrophulariaceae family_Scrophulariaceae figwort_family foxglove_family,a family of dicotyledonous plants of the order Polemoniales; includes figwort and snapdragon and foxglove and toadflax and speedwell and mullein; in some classifications placed in the order Scrophulariales
+15190,Scrophulariales order_Scrophulariales,used in some classification systems; often included in the order Polemoniales
+15191,Sculptor,a faint constellation in the southern hemisphere near Phoenix and Cetus
+15192,Scutellaria genus_Scutellaria,an asterid dicot genus that includes the skullcaps
+15193,Scutigera genus_Scutigera,a genus of Scutigeridae
+15194,Scutigerella genus_Scutigerella,garden centipedes
+15195,Scutigeridae family_Scutigeridae,a family of Chilopoda
+15196,Scyliorhinidae family_Scyliorhinidae,small bottom-dwelling sharks
+15197,Scylla,(Greek mythology) a sea nymph transformed into a sea monster who lived on one side of a narrow strait; drowned and devoured sailors who tried to escape Charybdis (a whirlpool) on the other side of the strait
+15198,Scyphozoa class_Scyphozoa,coelenterates in which the polyp stage is absent or at least inconspicuous: jellyfishes
+15199,Scythia,an ancient area of Eurasia extending from the Black Sea to the Aral Sea that was populated by Scythians from the eighth to the fourth century BC
+15200,Scythian,a member of the ancient nomadic people inhabiting Scythia
+15201,Scythian,the Iranian language spoken by the ancient Scythians
+15202,Scythian_lamb Cibotium_barometz,Asiatic tree fern having dense matted hairs sometimes used as a styptic
+15203,Sea_Scout,a Boy Scout enrolled in programs for water activities
+15204,Sea_of_Azov Sea_of_Azof Sea_of_Azoff,a bay of the Black Sea between Russia and the Ukraine
+15205,Sea_of_Japan East_Sea,an arm of the Pacific bordered by Japan, Korea, North Korea, and Russia
+15206,Sea_of_Okhotsk,an arm of the Pacific to the east of Asia
+15207,Seaborg Glenn_T._Seaborg Glenn_Theodore_Seaborg,United States chemist who was one of the discoverers of plutonium (1912-1999)
+15208,Sealyham,a village in southwestern Wales where the Sealyham terrier was first bred
+15209,Sealyham_terrier Sealyham,a wire-haired terrier with short legs that was first bred in Sealyham
+15210,Seaman Elizabeth_Seaman Elizabeth_Cochrane_Seaman Nellie_Bly,muckraking United States journalist who exposed bad conditions in mental institutions (1867-1922)
+15211,Seanad_Eireann Seanad,the upper house of the parliament of the Irish Republic
+15212,Sears_Tower,a skyscraper built in Chicago in 1974; 1454 feet tall
+15213,Seattle,a major port of entry and the largest city in Washington; located in west central Washington on the protected waters of Puget Sound with the snow-capped peaks of the Cascade Range and Mount Rainier visible to the south and east; an aerospace and computer center; site of the University of Washington
+15214,Seattle_Slew,thoroughbred that won the triple crown in 1977
+15215,Sebastiana genus_Sebastiana,Mexican spurges
+15216,Sebastodes genus_Sebastodes,rockfishes
+15217,Sebastopol Sevastopol,a city in southern Ukraine on the Black Sea
+15218,Secale genus_Secale,cereal grass widely cultivated for its grain: rye
+15219,Secession,the withdrawal of eleven southern states from the Union in 1860 which precipitated the American Civil War
+15220,Second_Coming Second_Coming_of_Christ Second_Advent Advent Parousia,(Christian theology) the reappearance of Jesus as judge for the Last Judgment
+15221,Second_Crusade,a Crusade from 1145 to 1147 that failed because of internal disagreements among the crusaders and led to the loss of Jerusalem in 1187
+15222,Second_Empire,the imperial government of Napoleon III in France from 1852-1870
+15223,Second_Epistel_of_John II_John,the second New Testament epistle traditionally attributed to Saint John the Apostle
+15224,Second_Epistle_of_Paul_the_Apostle_to_Timothy Second_Epistle_to_Timothy II_Timothy,a New Testament book containing Saint Paul's second epistle to Timothy; contains advice on pastoral matters
+15225,Second_Epistle_of_Paul_the_Apostle_to_the_Corinthians Second_Epistle_to_the_Corinthians II_Corinthians,a New Testament book containing the second epistle from Saint Paul to the church at Corinth
+15226,Second_Epistle_of_Paul_the_Apostle_to_the_Thessalonians Second_Epistle_to_the_Thessalonians II_Thessalonians,a New Testament book containing Saint Paul's second epistle to the Thessalonians
+15227,Second_Epistle_of_Peter II_Peter,the second New Testament book traditionally attributed to Saint Peter the Apostle
+15228,Second_Lateran_Council,the second council of the Western Church in 1139 which put an end to the dogmatic errors of Arnold of Brescia
+15229,Second_Vatican_Council Vatican_II,the Vatican Council in 1962-1965 that abandoned the universal Latin liturgy and acknowledged ecumenism and made other reforms
+15230,Secotiaceae family_Secotiaceae,a family of fungi that have a stalk and cap and a wrinkled mass of tissue (the gleba) where spores are produced; are often dismissed as misshapen forms of other fungi
+15231,Secotiales order_Secotiales,an order of fungi belonging to the class Gasteromycetes
+15232,Secret_Intelligence_Service MI Military_Intelligence_Section_6,the government agency in the United Kingdom that is responsible for internal security and counterintelligence overseas
+15233,Secretariat,thoroughbred that won the triple crown in 1973
+15234,Secretary_General,a person who is a chief administrator (as of the United Nations)
+15235,Secretary_of_Agriculture Agriculture_Secretary,the person who holds the secretaryship of the Department of Agriculture; "the first Secretary of Agriculture was Norman J. Colman, who was appointed by Cleveland"
+15236,Secretary_of_Agriculture Agriculture_Secretary,the position of the head of the Department of Agriculture; "the post of Secretary of Agriculture was established in 1889"
+15237,Secretary_of_Commerce Commerce_Secretary,the person who holds the secretaryship of the Department of Commerce; "the first Commerce Secretary was William C. Redfield who was appointed by Wilson"
+15238,Secretary_of_Commerce Commerce_Secretary,the position of the head of the Department of Commerce; "the position of Commerce Secretary was created in 1913"
+15239,Secretary_of_Commerce_and_Labor,head of a former executive department created in 1903 and divided into two departments in 1913
+15240,Secretary_of_Defense Defense_Secretary,the person who holds the secretaryship of the Defense Department; "the first Defense Secretary was James V. Forrestal who was appointed by Truman"
+15241,Secretary_of_Defense Defense_Secretary,the position of the head of the Department of Defense; "the position of Defense Secretary was created in 1947"
+15242,Secretary_of_Education Education_Secretary,the person who holds the secretaryship of the Department of Education; "Carter appointed Shirley Hufstedler as the first Secretary of Education"
+15243,Secretary_of_Education Education_Secretary,the position of the head of the Education Department; "the post of Education Secretary was created in 1979"
+15244,Secretary_of_Energy Energy_Secretary,the person who holds the secretaryship of the Department of Energy; "the first Secretary of Energy was James R. Schlesinger who was appointed by Carter"
+15245,Secretary_of_Energy Energy_Secretary,the position of the head of the Department of Energy; "the post of Energy Secretary was created in 1977"
+15246,Secretary_of_Health_Education_and_Welfare,head of a former executive department created in 1953 and divided into two departments in 1979
+15247,Secretary_of_Health_and_Human_Services,the person who holds the secretaryship of the Department of Health and Human Services; "the first Secretary of Health and Human Services was Patricia Roberts Harris who was appointed by Carter"
+15248,Secretary_of_Health_and_Human_Services,the position of the head of the Department of Health and Human Services; "the post of Secretary of Health and Human Services was created by Congress in 1979"
+15249,Secretary_of_Housing_and_Urban_Development,the person who holds the secretaryship of the Department of Housing and Urban Development; "the first Secretary of Housing and Urban Development was Robert C. Weaver who was appointed by Johnson"
+15250,Secretary_of_Housing_and_Urban_Development,the position of the head of the Department of Housing and Urban Development; "the position of Secretary of Housing and Urban Development was created in 1966"
+15251,Secretary_of_Labor Labor_Secretary,the person who holds the secretaryship of the Department of Labor; "the first Labor Secretary was William B. Wilson who was appointed by President Wilson"
+15252,Secretary_of_Labor Labor_Secretary,the position of the head of the Department of Labor; "the post of Labor Secretary was created in 1913"
+15253,Secretary_of_State,the person who holds the secretaryship of the Department of State; "the first Secretary of State was Thomas Jefferson"
+15254,Secretary_of_State,the position of the head of the State Department; "the position of Secretary of State was established in 1789"
+15255,Secretary_of_Transportation Transportation_Secretary,the person who holds the secretaryship of the Department of Transportation; "Johnson appointed Alan S. Boyd as the first Transportation Secretary"
+15256,Secretary_of_Transportation Transportation_Secretary,the position of the head of the Department of Transportation; "the post of Transportation Secretary was created in 1966"
+15257,Secretary_of_Veterans_Affairs,the person who holds the secretaryship of the Department of Veterans Affairs; "Bush appointed Edward J. Derwinski as the first Secretary of Veterans Affairs"
+15258,Secretary_of_Veterans_Affairs,the position of the head of the Department of Veterans Affairs; "the post of Secretary of Veterans Affairs was created in 1989"
+15259,Secretary_of_War War_Secretary,head of a former executive department; combined with the Navy Secretary to form the Defense Secretary in 1947
+15260,Secretary_of_the_Interior Interior_Secretary,the person who holds the secretaryship of the Interior Department; "President Taylor appointed Thomas Ewing as the first Secretary of the Interior"
+15261,Secretary_of_the_Interior Interior_Secretary,the position of the head of the Department of the Interior; "the position of Interior Secretary was created in 1849"
+15262,Secretary_of_the_Navy Navy_Secretary,head of a former executive department; combined with the War Secretary to form the Defense Secretary in 1947
+15263,Secretary_of_the_Treasury Treasury_Secretary,the person who holds the secretaryship of the Treasury Department; "Alexander Hamilton was the first Secretary of the Treasury"
+15264,Secretary_of_the_Treasury Treasury_Secretary,the position of the head of the Treasury Department; "the position of Treasury Secretary was created in 1789"
+15265,Section_Eight,a soldier who received a Section Eight discharge as unfit for military service
+15266,Section_Eight,a discharge from the US Army based on unfitness or character traits deemed undesirable
+15267,Securities_and_Exchange_Commission SEC,an independent federal agency that oversees the exchange of securities to protect investors
+15268,Security_Council SC,a permanent council of the United Nations; responsible for preserving world peace
+15269,Security_Intelligence_Review_Committee SIRC,an agency of the Canadian government that oversees the activities of the Criminal Intelligence Services of Canada and has the power to intrude on the privacy of suspected terrorists or spies
+15270,Security_Service MI Military_Intelligence_Section_5,the government agency in the United Kingdom that is responsible for internal security and counterintelligence on British territory
+15271,Sedalia,a town in east central Missouri
+15272,Seder Passover_supper,(Judaism) the ceremonial dinner on the first night (or both nights) of Passover
+15273,Sedna,a planetoid of rock and ice about three-quarters the size of Pluto discovered in 2003; the most distant object known to orbit around the sun
+15274,Seeger Alan_Seeger,United States poet killed in World War I (1888-1916)
+15275,Seeger Pete_Seeger Peter_Seeger,United States folk singer who was largely responsible for the interest in folk music in the 1960s (born in 1919)
+15276,Seeing_Eye_dog,(trademark) a guide dog trained to guide a blind person
+15277,Segal George_Segal,United States sculptor (born in 1924)
+15278,Segovia Andres_Segovia,Spanish guitarist who made classical guitar a concert instrument (1893-1987)
+15279,Segway Segway_Human_Transporter Segway_HT,(trademark) a self-balancing personal transportation device with two wheels; can operate in any level pedestrian environment
+15280,Seidlitz_powder Seidlitz_powders Rochelle_powder,an effervescing salt containing sodium bicarbonate and Rochelle salt and tartaric acid; used as a cathartic
+15281,Seine Seine_River,a French river that flows through the heart of Paris and then northward into the English Channel
+15282,Seismosaurus genus_Seismosaurus,genus of large herbivorous dinosaurs of Cretaceous found in western North America
+15283,Seiurus genus_Seiurus,ovenbirds and water thrushes
+15284,Sekhet Eye_of_Ra,a lion-headed Egyptian goddess; typifies life-destroying power of the sun
+15285,Selaginella genus_Selaginella,type and sole genus of the Selaginellaceae; evergreen moss-like plants: spike moss and little club moss
+15286,Selaginellaceae family_Selaginellaceae,lesser club mosses: terrestrial chiefly tropical plants resembling mosses
+15287,Selaginellales order_Selaginellales,in some classifications included in Lycopodiales
+15288,Selangor,sultanate and one of the 13 states that constitute the Federation of Malaysia
+15289,Selar genus_Selar,big-eyed scad
+15290,Selective_Service Selective_Service_System SSS,an independent federal agency that administers compulsory military service
+15291,Selenarctos genus_Selenarctos,Asiatic black bears; in some classifications not a separate genus from Ursus
+15292,Selene,(Greek mythology) goddess of the Moon in ancient mythology; identified with Roman Luna
+15293,Selene genus_Selene,a genus of Carangidae
+15294,Selenicereus genus_Selenicereus,mostly epiphytic climbing cacti that bloom at night
+15295,Selenipedium genus_Selenipedium,genus of tall reedlike tropical American orchids; includes species with pods used locally as a substitute for vanilla
+15296,Seles Monica_Seles,United States tennis player (born in Yugoslavia in 1973)
+15297,Seleucus Seleucus_I Seleucus_I_Nicator,Macedonian general who accompanied Alexander the Great into Asia; founded a line of kings who reigned in Asia Minor until 65 BC (358-281 BC)
+15298,Seljuk,any one of the Turkish dynasties that ruled Asia Minor from the 11th to the 13th centuries; they successfully invaded Byzantium and defended the Holy Land against Crusaders
+15299,Selkirk Selcraig Alexander_Selkirk Alexander_Selcraig,Scottish sailor who was put ashore on a deserted island off the coast of Chile for five years (providing the basis for Daniel Defoe's novel about Robinson Crusoe) (1676-1721)
+15300,Selkirk_Mountains,a range of the Rocky Mountains in southeastern British Columbia
+15301,Selkup Ostyak-Samoyed,one of the people of mixed Ostyak and Samoyed origin in Siberia
+15302,Selkup Ostyak-Samoyed,the Uralic language spoken by the Ostyak-Samoyed
+15303,Sellers Peter_Sellers,English comic actor (1925-1980)
+15304,Selma,a town in central Alabama on the Alabama river; in 1965 it was the center of a drive to register Black voters
+15305,Selznick David_O._Selznick David_Oliver_Selznick,United States filmmaker noted for his film adaptations of popular novels (1902-1965)
+15306,Semarang Samarang,a port city is southern Indonesia; located in northern Java
+15307,Seminole,a member of the Muskhogean people who moved into Florida in the 18th century
+15308,Seminole,the Muskhogean language of the Seminole
+15309,Semite,a member of a group of Semitic-speaking peoples of the Middle East and northern Africa
+15310,Semitic,a major branch of the Afro-Asiatic language family
+15311,Semitic_deity,a deity worshipped by the ancient Semites
+15312,Sempach battle_of_Sempach,the Swiss Confederation escaped Hapsburg domination by their victory in 1386
+15313,Seneca,a member of the Iroquoian people formerly living in New York State south of Lake Ontario
+15314,Seneca,the Iroquoian language spoken by the Seneca
+15315,Seneca Lucius_Annaeus_Seneca,Roman statesman and philosopher who was an advisor to Nero; his nine extant tragedies are modeled on Greek tragedies (circa 4 BC - 65 AD)
+15316,Seneca_Lake Lake_Seneca,a glacial lake in central New York; the largest of the Finger Lakes
+15317,Seneca_snakeroot Seneka_snakeroot senga_root senega_root senega_snakeroot Polygala_senega,eastern North American plant having a terminal cluster of small white flowers and medicinal roots
+15318,Senecio genus_Senecio,enormous and diverse cosmopolitan genus of trees and shrubs and vines and herbs including many weeds
+15319,Senefelder Alois_Senefelder Aloys_Senefelder,German printer who invented lithography (1771-1834)
+15320,Senegal Republic_of_Senegal,a republic in northwestern Africa on the coast of the Atlantic; formerly a French colony but achieved independence in 1960
+15321,Senegal_gum,gum arabic from the vicinity of the Senegal river
+15322,Senegalese,a native or inhabitant of Senegal
+15323,Senegalese_franc,the basic unit of money in Senegal
+15324,Senhor,a Portuguese title of respect; equivalent to English `Mr'
+15325,Sennacherib,king of Assyria who invaded Judea twice and defeated Babylon and rebuilt Nineveh after it had been destroyed by Babylonians (died in 681 BC)
+15326,Sennenhunde,any of four Swiss breeds
+15327,Sennett Mack_Sennett,United States filmmaker (born in Canada) noted for slapstick movies (1880-1960)
+15328,Senor,a Spanish title or form of address for a man; similar to the English `Mr' or `sir'
+15329,Senora,a Spanish title or form of address for a married woman; similar to the English `Mrs' or `madam'
+15330,Senorita,a Spanish title or form of address used to or of an unmarried girl or woman; similar to the English `Miss'
+15331,Seoul capital_of_South_Korea,the capital of South Korea and the largest city of Asia; located in northwestern South Korea
+15332,Sephardi Sephardic_Jew,a Jew who is of Spanish or Portuguese or North African descent
+15333,Sepia genus_Sepia,type genus of the Sepiidae
+15334,Sepiidae family_Sepiidae,true cuttlefishes
+15335,September Sep Sept,the month following August and preceding October
+15336,September_elm red_elm Ulmus_serotina,autumn-flowering elm of southeastern United States
+15337,Septobasidiaceae family_Septobasidiaceae,a family of fungi belonging to the subdivision Basidiomycota
+15338,Septobasidium genus_Septobasidium,type genus of Septobasidiaceae: smooth shelf fungi usually having a well-developed sometimes thick-walled hypobasidium
+15339,Septuagesima Septuagesima_Sunday,the 3rd Sunday before Lent (or the 9th before Easter)
+15340,Septuagint,the oldest Greek version of the Old Testament; said to have been translated from the Hebrew by Jewish scholars at the request of Ptolemy II
+15341,Sequoia_National_Park,a national park in California that includes Mount Whitney
+15342,Sequoiadendron genus_Sequoiadendron,giant sequoias; sometimes included in the genus Sequoia; until recently placed in the Taxodiaceae
+15343,Sequoya Sequoyah George_Guess,Cherokee who created a notation for writing the Cherokee language (1770-1843)
+15344,Serbia Srbija,a historical region in central and northern Yugoslavia; Serbs settled the region in the 6th and 7th centuries
+15345,Serbia_and_Montenegro Union_of_Serbia_and_Montenegro Yugoslavia Federal_Republic_of_Yugoslavia Jugoslavija,a mountainous republic in southeastern Europe bordering on the Adriatic Sea; formed from two of the six republics that made up Yugoslavia until 1992; Serbia and Montenegro were known as the Federal Republic of Yugoslavia until 2003 when they adopted the name of the Union of Serbia and Montenegro
+15346,Serbian Serb,a member of a Slavic people who settled in Serbia and neighboring areas in the 6th and 7th centuries
+15347,Serbo-Croat Serbo-Croatian,the Slavic language of the Serbs and Croats; the Serbian dialect is usually written in the Cyrillic alphabet and the Croatian dialect is usually written in the Roman alphabet
+15348,Serengeti Serengeti_Plain,a vast plain in Tanzania to the west of the Great Rift Valley known for its wildlife
+15349,Serengeti_National_Park,a national park in Tanzania created in 1951 to protect the wildlife
+15350,Serenoa genus_Serenoa,one species: saw palmetto
+15351,Serer,a West African language closely related to Fula; spoken primarily in Senegal and Gambia
+15352,Sericocarpus genus_Sericocarpus,small genus of herbs of the eastern United States: white-topped asters
+15353,Serinus genus_Serinus,Old World finches; e.g. canaries and serins
+15354,Seriola genus_Seriola,a genus of Carangidae
+15355,Seriphidium genus_Seriphidium,woody plants grown chiefly for their silver or grey and often aromatic foliage; formerly included in the genus Artemisia
+15356,Seriphus genus_Seriphus,a genus of Sciaenidae
+15357,Serkin Rudolf_Serkin,United States concert pianist (born in Czechoslovakia) (1903-1991)
+15358,Sermon_on_the_Mount,the first major discourse delivered by Jesus (Matthew 5-7 and Luke 6:20-49)
+15359,Serpens,a constellation in the equatorial region of the northern hemisphere near Ophiuchus and Corona Borealis
+15360,Serpentes suborder_Serpentes Ophidia suborder_Ophidia,snakes
+15361,Serra Junipero_Serra Miguel_Jose_Serra,Spanish missionary who founded Franciscan missions in California (1713-1784)
+15362,Serranidae family_Serranidae,marine fishes: sea basses; sea perches; groupers; jewfish
+15363,Serranus genus_Serranus,type genus of the Serranidae: mostly small Pacific sea basses
+15364,Serrasalmus genus_Serrasalmus,piranhas
+15365,Serratia_marcescens,the type species of the genus Serratia; a species found in water and soil and milk and foods and insects; can cause infections of the endocardium and blood and wounds and urinary tract and respiratory tract; has been tested as a bioweapon
+15366,Serratula genus_Serratula,genus of Old World perennial herbs with spirally arranged toothed leaves
+15367,Sertoli_cell Sertoli's_cell,elongated cells found in the seminiferous tubules of the testis; apparently they nourish the spermatids
+15368,Sertularia genus_Sertularia,sessile hydroid that forms feathery colonies
+15369,Service Robert_William_Service,Canadian writer (born in England) who wrote about life in the Yukon Territory (1874-1958)
+15370,Sesamum genus_Sesamum,tropical African and Indian herbs
+15371,Seseli genus_Seseli,a rosid dicot genus that includes moon carrots
+15372,Sesotho Basuto,the dialect of Sotho spoken by the Basotho; an official language of Lesotho
+15373,Sessions Roger_Sessions Roger_Huntington_Sessions,United States composer who promoted 20th century music (1896-1985)
+15374,Set Seth,evil Egyptian god with the head of a beast that has high square ears and a long snout; brother and murderer of Osiris
+15375,Setaria genus_Setaria,annual or perennial grasses of warm regions: bristlegrasses
+15376,Sete_Quedas Guaira Guaira_Falls,a great waterfall on the border between Brazil and Paraguay
+15377,Seth,(Old Testament) third son of Adam and Eve; given by God in place of the murdered Abel
+15378,Seton Elizabeth_Seton Saint_Elizabeth_Ann_Bayley_Seton Mother_Seton,United States religious leader who was the first person born in the United States to be canonized (1774-1821)
+15379,Setophaga genus_Setophaga,a genus of Parulidae
+15380,Setubal,a port city on the Atlantic coast of Portugal to the southeast of Lisbon
+15381,Seurat Georges_Seurat Georges_Pierre_Seurat,French painter who developed pointillism (1859-1891)
+15382,Seven_Hills_of_Rome,the hills on which the ancient city of Rome was built
+15383,Seven_Wonders_of_the_Ancient_World Seven_Wonders_of_the_World,impressive monuments created in the ancient world that were regarded with awe
+15384,Seven_Years'_War,a war of England and Prussia against France and Austria (1756-1763); Britain and Prussia got the better of it
+15385,Seventh-Day_Adventism,Adventism that is strongly Protestant and observes Saturday as the Sabbath
+15386,Seventh_Avenue,an avenue in Manhattan that runs north and south
+15387,Seventh_Crusade,a Crusade initiated in 1248 after the loss of Jerusalem in 1244 and defeated in 1249
+15388,Severn River_Severn Severn_River,a river in England and Wales flowing into the Bristol Channel; the longest river in Great Britain
+15389,Severn Severn_River,a river in Ontario that flows northeast into Hudson Bay
+15390,Sevilla Seville,a city in southwestern Spain; a major port and cultural center; the capital of bullfighting in Spain
+15391,Seward William_Henry_Seward,United States politician who as Secretary of State in 1867 arranged for the purchase of Alaska from Russia (known at the time as Seward's Folly) (1801-1872)
+15392,Seward's_Folly,the transaction in 1867 in which the United States Secretary of State William Henry Seward purchased Alaska from Russia
+15393,Seward_Peninsula,a peninsula in western Alaska that projects westward into the Bering Sea just below the Arctic Circle
+15394,Sexton Anne_Sexton,United States poet (1928-1974)
+15395,Seychelles Republic_of_Seychelles,a republic on the Seychelles islands; achieved independence from the United Kingdom in 1976
+15396,Seychelles Seychelles_islands,a group of about 90 islands in the western Indian Ocean to the north of Madagascar
+15397,Seychelles_monetary_unit,monetary unit in Seychelles
+15398,Seychelles_rupee rupee,the basic unit of money in Seychelles; equal to 100 cents
+15399,Seychellois,a native or inhabitant of Seychelles
+15400,Seyhan Seyhan_River,a Turkish river flowing south southwest into the Mediterranean
+15401,Seymour Jane_Seymour,Queen of England as the third wife of Henry VIII and mother of Edward VI (1509-1537)
+15402,Sfax Safaqis,the second largest city in Tunisia; located in eastern Tunisia near a phosphate region
+15403,Sha'ban Shaaban,the eighth month of the Islamic calendar
+15404,Shah Shah_of_Iran,title for the former hereditary monarch of Iran
+15405,Shah_Jahan,Mogul emperor of India during whose reign the finest monuments of Mogul architecture were built (including the Taj Mahal at Agra) (1592-1666)
+15406,Shahaptian Sahaptin,a Penutian language spoken by the Shahaptian
+15407,Shahaptian Sahaptin Sahaptino,a member of a North American Indian people who lived in Oregon along the Columbia river and its tributaries in Washington and northern Idaho
+15408,Shahn Ben_Shahn Benjamin_Shahn,United States artist whose work reflected social and political themes (1898-1969)
+15409,Shaker,a member of Christian group practicing celibacy and communal living and common possession of property and separation from the world
+15410,Shakers United_Society_of_Believers_in_Christ's_Second_Appearing,a celibate and communistic Christian sect in the United States
+15411,Shakespeare William_Shakespeare Shakspere William_Shakspere Bard_of_Avon,English poet and dramatist considered one of the greatest English writers (1564-1616)
+15412,Shakespearean_sonnet Elizabethan_sonnet English_sonnet,a sonnet consisting three quatrains and a concluding couplet in iambic pentameter with the rhyme pattern abab cdcd efef gg
+15413,Shakespearian Shakespearean,a Shakespearean scholar
+15414,Shakti Sakti,the female or generative principle; wife of Siva and a benevolent form of Devi
+15415,Shaktism Saktism,a Hindu sect worshiping Shakti
+15416,Shaktism Saktism,worship of Shakti as the wife of Shiva
+15417,Shaktist,worshipper of Shakti
+15418,Shamash,the chief sun god; drives away winter and storms and brightens the earth with greenery; drives away evil and brings justice and compassion
+15419,Shang Shang_dynasty,the imperial dynasty ruling China from about the 18th to the 12th centuries BC
+15420,Shanghai,the largest city of China; located in the east on the Pacific; one of the largest ports in the world
+15421,Shankar Ravi_Shankar,Indian sitar player who popularized classical Indian music in the West (born in 1920)
+15422,Shannon Claude_Shannon Claude_E._Shannon Claude_Elwood_Shannon,United States electrical engineer who pioneered mathematical communication theory (1916-2001)
+15423,Shapley Harlow_Shapley,United States astronomer (1885-1972)
+15424,Shari Shari_River Chari Chari_River,an African river that flows northwest into Lake Chad
+15425,Sharpie,a pen with indelible ink that will write on any surface
+15426,Shasta,a member of the Indian people of northern California and southern Oregon
+15427,Shasta,the Shastan language spoken by the Shasta
+15428,Shasta Mount_Shasta,a volcanic mountain peak in the Cascade Range in northern California (14,162 feet high)
+15429,Shasta_salamander Hydromantes_shastae,primarily a cave dweller in the Mount Shasta area
+15430,Shastan,a group of languages of the Hokan family in California
+15431,Shavian,an admirer of G. B. Shaw or his works
+15432,Shavous Shabuoth Shavuoth Shavuot Pentecost Feast_of_Weeks,(Judaism) Jewish holy day celebrated on the sixth of Sivan to celebrate Moses receiving the Ten Commandments
+15433,Shaw Anna_Howard_Shaw,United States physician and suffragist (1847-1919)
+15434,Shaw Artie_Shaw Arthur_Jacob_Arshawsky,United States clarinetist and leader of a swing band (1910-2004)
+15435,Shaw G._B._Shaw George_Bernard_Shaw,British playwright (born in Ireland); founder of the Fabian Society (1856-1950)
+15436,Shaw Henry_Wheeler_Shaw Josh_Billings,United States humorist who wrote about rural life (1818-1885)
+15437,Shawn Ted_Shawn,United States dancer and choreographer who collaborated with Ruth Saint Denis (1891-1972)
+15438,Shawnee,a member of the Algonquian people formerly living along the Tennessee river
+15439,Shawnee,the Algonquian language spoken by the Shawnee
+15440,Shawnee_cake,form of johnnycake
+15441,Shawwal,the tenth month of the Islamic calendar
+15442,Shearer Moira_Shearer,Scottish ballet dancer and actress (born in 1926)
+15443,Shebat Shevat,the fifth month of the civil year: the eleventh month of the ecclesiastical year in the Jewish calendar (in January and February)
+15444,Sheetrock,a kind of plasterboard
+15445,Sheffield,a steel manufacturing city in northern England famous for its cutlery industry
+15446,Shelley Mary_Shelley Mary_Wollstonecraft_Shelley Mary_Godwin_Wollstonecraft_Shelley,English writer who created Frankenstein's monster and married Percy Bysshe Shelley (1797-1851)
+15447,Shelley Percy_Bysshe_Shelley,Englishman and romantic poet (1792-1822)
+15448,Shem,(Old Testament) eldest son of Noah
+15449,Shema,a liturgical prayer (considered to be the essence of Jewish religion) that is recited at least twice daily by adult Jewish males to declare their faith; "as soon as Leonard learned to talk he was taught to recite the first words of the Shema, the creed of Judaism which originated on Sinai with Moses and is recited daily"
+15450,Shen-pao Spiritual_Jewel,a member of the Taoist Trinity; identified with Lao-tse
+15451,Shenandoah_National_Park,a national park in Virginia for the Blue Ridge Mountains
+15452,Shenandoah_River,a river of northern Virginia that empties into the Potomac at Harpers Ferry
+15453,Shenandoah_Valley,a large valley between the Allegheny Mountains and the Blue Ridge Mountains in northern Virginia; site of numerous battles during the American Civil War
+15454,Shenyang Mukden Moukden Fengtien,a city in northeastern China
+15455,Shepard Alan_Shepard Alan_Bartlett_Shepard_Jr.,astronaut who made the first United States' suborbital rocket-powered flight in 1961 (1923-1998)
+15456,Shepard Sam_Shepard,United States author of surrealistic allegorical plays (born in 1943)
+15457,Sheraton,a furniture style that originated in England around 1800; simple in design with straight lines and classical ornamentation
+15458,Sheridan Richard_Brinsley_Sheridan,Irish playwright remembered for his satirical comedies of manners (1751-1816)
+15459,Sherlock_Holmes Holmes,a fictitious detective in stories by A. Conan Doyle
+15460,Sherman,a town in northeastern Texas near the Oklahoma border
+15461,Sherman Mount_Sherman,a peak in the Rocky Mountains in central Colorado (14,036 feet high)
+15462,Sherman Roger_Sherman,American Revolutionary leader and signer of the Declaration of Independence and the Articles of Confederation and the United States Constitution (1721-1793)
+15463,Sherman William_Tecumseh_Sherman,United States general who was commander of all Union troops in the West; he captured Atlanta and led a destructive march to the sea that cut the Confederacy in two (1820-1891)
+15464,Sherpa,a member of the Himalayan people living in Nepal and Tibet who are famous for their skill as mountaineers
+15465,Sherrington Sir_Charles_Scott_Sherrington,English physiologist who conducted research on reflex action (1857-1952)
+15466,Sherwood Robert_Emmet_Sherwood,United States playwright (1896-1955)
+15467,Sherwood_Forest,an ancient forest in central England; formerly a royal hunting ground; said to be the home of Robin Hood and his merry band
+15468,Shetland Shetland_Islands Zetland,an archipelago of about 100 islands in the North Atlantic off the north coast of Scotland
+15469,Shetland_pony,breed of very small pony with long shaggy mane and tail
+15470,Shetland_sheepdog Shetland_sheep_dog Shetland,a small sheepdog resembling a collie that was developed in the Shetland Islands
+15471,Shetland_wool,a wool obtained from sheep of the Shetland islands
+15472,Shevchenko Taras_Grigoryevich_Shevchenko,Ukranian poet (1814-1861)
+15473,Shiah Shia Shiah_Islam,one of the two main branches of orthodox Islam; mainly in Iran
+15474,Shih-Tzu,a Chinese breed of small dog similar to a Pekingese
+15475,Shiism,the branch of Islam that regards Ali as the legitimate successor to Mohammed and rejects the first three caliphs
+15476,Shiite Shi'ite Shiite_Muslim Shi'ite_Muslim Shia_Muslim,a member of the branch of Islam that regards Ali as the legitimate successor to Mohammed and rejects the first three caliphs
+15477,Shikoku,the smallest of the four main islands of Japan; to the south of Honshu and to the east of Kyushu; separated from Honshu by the Inland Sea; forested and mountainous
+15478,Shiloh battle_of_Shiloh battle_of_Pittsburgh_Landing,the second great battle of the American Civil War (1862); the battle ended with the withdrawal of Confederate troops but it was not a Union victory
+15479,Shimchath_Torah Simchat_Torah Simhath_Torah Simhat_Torah Simchas_Torah Rejoicing_over_the_Law Rejoicing_of_the_Law Rejoicing_in_the_Law,(Judaism) a Jewish holy day celebrated on the 22nd or 23rd of Tishri to celebrate the completion of the annual cycle of readings of the Torah
+15480,Shin_Bet General_Security_Services,the Israeli domestic counterintelligence and internal security agency; "the Shin Bet also handles overall security for Israel's national airline"
+15481,Shina,a Dardic language spoken in northern Kashmir
+15482,Shingon,a form of Buddhism emphasizing mystical symbolism of mantras and mudras and the Buddha's ideal which is inexpressible
+15483,Shining_Path Sendero_Luminoso SL,a terrorist group formed in Peru in the late 1960s as a splinter group from the communist party of Peru; is among the most ruthless guerilla organizations in the world; seeks to destroy Peruvian institutions and replace them with a Maoist peasant regime; is involved in the cocaine trade; "Shining Path has been responsible for 30,000 deaths"
+15484,Shinto,the native religion and former ethnic cult of Japan
+15485,Shinto Shintoism,the ancient indigenous religion of Japan lacking formal dogma; characterized by a veneration of nature spirits and of ancestors
+15486,Shintoist,a believer in Shintoism
+15487,Shiraz,a city in central southwestern Iran; ruins of ancient Persepolis are nearby
+15488,Shirer William_Lawrence_Shirer,United States broadcast journalist who was in Berlin at the outbreak of World War II (1904-1993)
+15489,Shirodkar's_operation purse-string_operation,a surgical procedure in which a suture is used to close the cervix in a pregnant woman; is performed when the cervix has failed to retain previous pregnancies
+15490,Shivaism Sivaism,a Hindu sect worshiping Shiva
+15491,Shivaism Sivaism,worship of Shiva one of the 3 chief gods of the Hindu pantheon
+15492,Shivaist,worshipper of Shiva
+15493,Shockley William_Shockley William_Bradford_Shockley,United States physicist (born in England) who contributed to the development of the electronic transistor (1910-1989)
+15494,Shona,a member of a Bantu tribe living in present-day Zimbabwe
+15495,Shona,a Bantu language spoken in Zimbabwe
+15496,Shorea genus_Shorea,genus of Indonesian and Malaysian timber trees rich in resin
+15497,Short's_aster Aster_shortii,perennial of southeastern United States having usually blue flowers
+15498,Shoshone,the language spoken by the Shoshone (belonging to the Uto-Aztecan family)
+15499,Shoshone Shoshoni,a member of the North American Indian people (related to the Aztecs) of the southwestern United States
+15500,Shoshonean Shoshonean_language Shoshonian Shoshonian_language,a subfamily of Uto-Aztecan languages spoken mainly in the southwestern United States
+15501,Shostakovich Dmitri_Shostakovich Dmitri_Dmitrievich_Shostakovich,Russian composer best known for his fifteen symphonies (1906-1975)
+15502,Shreveport,a city in northwest Louisiana on the Red River near the Texas border
+15503,Shrovetide,immediately preceding Lent
+15504,Shudra Sudra,a member of the lowest or worker Hindu caste
+15505,Shuha_Shinto Shua,any branch of Shinto other than Kokka
+15506,Shumard_oak Shumard_red_oak Quercus_shumardii,large deciduous red oak of southern and eastern United States having large seven-lobed to nine-lobed elliptical leaves, large acorns and medium hard coarse-grained wood
+15507,Shute Nevil_Shute Nevil_Shute_Norway,English novelist who settled in Australia after World War II (1899-1960)
+15508,Shylock,a merciless usurer in a play by Shakespeare
+15509,Sialia genus_Sialia,North American bluebirds
+15510,Sialidae family_Sialidae,an arthropod family including: alderflies
+15511,Sialis genus_Sialis,type genus of the Sialidae
+15512,Siamese_cat Siamese,a slender short-haired blue-eyed breed of cat having a pale coat with dark ears paws face and tail tip
+15513,Siamese_twin conjoined_twin,one of a pair of identical twins born with their bodies joined at some point
+15514,Sibelius Jean_Sibelius Johan_Julius_Christian_Sibelius,Finnish composer (1865-1957)
+15515,Siberia,a vast Asian region of Russia; famous for long cold winters
+15516,Siberian,a native or inhabitant of Siberia
+15517,Siberian_crab Siberian_crab_apple cherry_apple cherry_crab Malus_baccata,Asian wild crab apple cultivated in many varieties for it small acid usually red fruit used for preserving
+15518,Siberian_elm Chinese_elm dwarf_elm Ulmus_pumila,fast-growing shrubby Asian tree naturalized in United States for shelter or ornament
+15519,Siberian_husky,breed of sled dog developed in northeastern Siberia; they resemble the larger Alaskan malamutes
+15520,Siberian_larch Larix_siberica Larix_russica,medium-sized larch of northeastern Russia and Siberia having narrowly conic crown and soft narrow bright-green leaves; used in cultivation
+15521,Siberian_millet Setaria_italica_rubrofructa,millet having orange to reddish grains in long bristly spikes
+15522,Siberian_pea_tree Caragana_arborescens,large spiny shrub of eastern Asia having clusters of yellow flowers; often cultivated in shelterbelts and hedges
+15523,Siberian_spruce Picea_obovata,tall spruce of northern Europe and Asia; resembles Norway spruce
+15524,Siberian_wall_flower Erysimum_allionii Cheiranthus_allionii,showy erect biennial or short-lived perennial cultivated for its terminal racemes of orange-yellow flowers; sometimes placed in genus Cheiranthus
+15525,Sibley_tent,a light conical canvas tent erected on a tripod with ventilation at the top
+15526,Sicilian,a resident of Sicily
+15527,Sicilian_pizza,pizza made with a thick crust
+15528,Sicily Sicilia,the Italian region on the island of Sicily
+15529,Sicily Sicilia,the largest island in the Mediterranean
+15530,Sida genus_Sida,large genus of tropical subshrubs or herbs some of which yield fibers of mucilaginous substances
+15531,Sidalcea genus_Sidalcea,genus of showy plants of western North America having palmate leaves and variously colored racemose flowers
+15532,Siddons Sarah_Siddons Sarah_Kemble_Siddons,English actress noted for her performances in Shakespearean roles (1755-1831)
+15533,Sideritis genus_Sideritis,genus of woolly aromatic herbs or subshrubs or shrubs of Mediterranean region
+15534,Sidney Sir_Philip_Sidney,English poet (1554-1586)
+15535,Siege_Perilous,the legendary seat at King Arthur's Round Table reserved for the knight who would find the Holy Grail; it was fatal for anyone else to sit in it
+15536,Siegfried,(German mythology) mythical German warrior hero of the Nibelungenlied who takes possession of the accursed treasure of the Nibelungs by slaying the dragon that guards it and awakens Brynhild and is eventually killed; Sigurd is the Norse counterpart
+15537,Siegfried_line,German fortifications facing the Maginot Line
+15538,Siemens Ernst_Werner_von_Siemens,German electrical engineer (1816-1892)
+15539,Siemens Karl_Wilhelm_Siemens Sir_Charles_William_Siemens,engineer who was a brother of Ernst Werner von Siemens and who moved to England (1823-1883)
+15540,Sierra_Leone Republic_of_Sierra_Leone,a republic in West Africa; achieved independence from the United Kingdom in 1961
+15541,Sierra_Leone_monetary_unit,monetary unit in Sierra Leone
+15542,Sierra_Leonean,a native or inhabitant of Sierra Leone
+15543,Sierra_Madre_Occidental,a mountain range in northwestern Mexico that runs south from Arizona parallel to the Pacific coastline
+15544,Sierra_Madre_Oriental,a mountain range in northeastern Mexico the runs parallel to the coastline of the Gulf of Mexico
+15545,Sierra_Nevada,a mountain range in southern Spain along the Mediterranean coast to the east of Granada
+15546,Sierra_Nevada Sierra_Nevada_Mountains High_Sierra,a mountain range in eastern California; contains Mount Whitney
+15547,Sierra_lodgepole_pine Pinus_contorta_murrayana,tall subspecies of lodgepole pine
+15548,Sierra_plum Pacific_plum Prunus_subcordata,shrub of the Pacific coast of the United States bearing small red insipid fruit
+15549,Sif,(Norse mythology) wife of Thor and guardian of the home
+15550,Sigmodon genus_Sigmodon,American cotton rats
+15551,Signora,an Italian title or form of address for a married woman
+15552,Signorina,an Italian title or form of address for an unmarried woman
+15553,Sigurd,(Norse mythology) mythical Norse warrior hero who gains an accursed hoard of gold and was killed by Brynhild; Siegfried is the German counterpart
+15554,Sigyn,(Norse mythology) wife of Loki; held a cup over him during his punishment to spare him the pain of drops of poison
+15555,Sihasapa,a member of a group of Siouan people who constituted a division of the Teton Sioux
+15556,Sikh,an adherent of Sikhism
+15557,Sikhism,the doctrines of a monotheistic religion founded in northern India in the 16th century by Guru Nanak and combining elements of Hinduism and Islam
+15558,Sikkim,a state in northeastern India in the Himalaya Mountains between Nepal and Bhutan
+15559,Sikorsky Igor_Sikorsky Igor_Ivanovich_Sikorsky,United States industrialist (born in Russia) who designed the first four-engine airplane and the first mass-produced helicopter (1889-1972)
+15560,Silenus,the chief satyr in the service of Bacchus; father of Dionysus; usually depicted as drunk and jolly and riding a donkey
+15561,Silesia Slask Slezsko Schlesien,a region of central Europe rich in deposits of coal and iron ore; annexed by Prussia in 1742 but now largely in Poland
+15562,Silex,a vacuum coffee maker
+15563,Silicon_Valley,a region in California to the south of San Francisco that is noted for its concentration of high-technology industries
+15564,Silk_Road,an ancient trade route between China and the Mediterranean (4,000 miles); followed by Marco Polo in the 13th century to reach Cathay
+15565,Sillaginidae family_Sillaginidae,small family of small food fishes in shallow waters of the Pacific around Indonesia
+15566,Sillago genus_Sillago,type genus of the Sillaginidae
+15567,Sills Beverly_Sills Belle_Miriam_Silverman,United States operatic soprano (born in 1929)
+15568,Silphium genus_Silphium,tall North American perennial herbs
+15569,Silurian Silurian_period,from 425 million to 405 million years ago; first air-breathing animals
+15570,Siluridae family_Siluridae,Old World catfishes
+15571,Siluriformes order_Siluriformes,an order of fish belonging to the superorder Malacopterygii including catfishes
+15572,Silurus genus_Silurus,type genus of the Siluridae: catfishes
+15573,Silver_City,a town in southwestern New Mexico
+15574,Silver_Star_Medal Silver_Star,a United States military decoration for gallantry in action
+15575,Silverstein Shel_Silverstein Shelby_Silverstein,United States poet and cartoonist remembered for his stories and poems for children (1932-1999)
+15576,Silvia genus_Silvia,type genus of the Sylviidae: warblers
+15577,Silybum genus_Silybum,small genus of east African herbs
+15578,Simarouba genus_Simarouba,type genus of Simaroubaceae; tropical American trees and shrubs having a pale soft wood and bitter bark
+15579,Simaroubaceae family_Simaroubaceae quassia_family,chiefly tropical trees and shrubs with bitter bark having dry usually one-seeded winged fruit
+15580,Simenon Georges_Simenon Georges_Joseph_Christian_Simenon,French writer (born in Belgium) best known for his detective novels featuring Inspector Maigret (1903-1989)
+15581,Simeon,(Old Testament) the 2nd son of Jacob and one of the 12 patriarchs of Israel
+15582,Simon Herb_Simon Herbert_A._Simon Herbert_Alexander_Simon,United States economist and psychologist who pioneered in the development of cognitive science (1916-2001)
+15583,Simon Neil_Simon Marvin_Neil_Simon,United States playwright noted for light comedies (born in 1927)
+15584,Simon Paul_Simon,United States singer and songwriter (born in 1942)
+15585,Simon St._Simon Simon_Zelotes Simon_the_Zealot Simon_the_Canaanite,one of the twelve Apostles (first century)
+15586,Simon_Legree,the cruel slave dealer in an anti-slavery novel by Harriet Beecher Stowe
+15587,Simoniz,a brand of car polish
+15588,Simpson Mrs._Simpson Wallis_Warfield_Simpson Wallis_Warfield_Windsor Duchess_of_Windsor,United States divorcee whose marriage to Edward VIII created a constitutional crisis leading to his abdication
+15589,Simpson Sir_James_Young_Simpson,Scottish obstetrician and surgeon who pioneered in the use of ether and discovered the anesthetic effects of chloroform (1811-1870)
+15590,Simpson_Desert,a desert region of central Australia
+15591,Simuliidae family_Simuliidae,blackflies and sand flies
+15592,Simulium genus_Simulium,type genus of the Simuliidae: blackflies
+15593,Sin,(Akkadian) god of the Moon; counterpart of Sumerian Nanna
+15594,Sinai Mount_Sinai,a mountain peak in the southern Sinai Peninsula (7,500 feet high); it is believed to be the peak on which Moses received the Ten Commandments
+15595,Sinai Sinai_Desert,a desert on the Sinai Peninsula in northeastern Egypt
+15596,Sinai Sinai_Peninsula,a peninsula in northeastern Egypt; at north end of Red Sea
+15597,Sinanthropus genus_Sinanthropus,genus to which Peking man was formerly assigned
+15598,Sinapis genus_Sinapis,small genus of Old World herbs usually included in genus Brassica
+15599,Sinatra Frank_Sinatra Francis_Albert_Sinatra,United States singer and film actor (1915-1998)
+15600,Sinbad_the_Sailor Sinbad,in the Arabian Nights a hero who tells of the fantastic adventures he had in his voyages
+15601,Sinclair Clive_Sinclair Sir_Clive_Marles_Sinclair,English electrical engineer who founded a company that introduced many innovative products (born in 1940)
+15602,Sinclair Upton_Sinclair Upton_Beall_Sinclair,United States writer whose novels argued for social reform (1878-1968)
+15603,Sind,a region of southeastern Pakistan
+15604,Sindhi,a native or inhabitant of Sind
+15605,Sindhi,the Indic language of Sind which is spoken also in western India
+15606,Singapore Republic_of_Singapore,a country in southeastern Asia on the island of Singapore; achieved independence from Malaysia in 1965
+15607,Singapore Singapore_Island,an island to the south of the Malay Peninsula
+15608,Singapore capital_of_Singapore,the capital of Singapore; one of the world's biggest ports
+15609,Singapore_dollar,the basic unit of money in Singapore
+15610,Singaporean,an inhabitant of Singapore
+15611,Singer Isaac_Bashevis_Singer,United States writer (born in Poland) of Yiddish stories and novels (1904-1991)
+15612,Singer Isaac_M._Singer Isaac_Merrit_Singer,United States inventor of an improved chain-stitch sewing machine (1811-1875)
+15613,Sinhalese Singhalese,a native or inhabitant of Sri Lanka
+15614,Sinhalese Singhalese Sinhala,the Indic language spoken by the people of Sri Lanka
+15615,Sinitic Sinitic_language,a group of Sino-Tibetan languages
+15616,Sinn_Fein,an Irish republican political movement founded in 1905 to promote independence from England and unification of Ireland; became the political branch of the Irish Republican Army
+15617,Sinningia genus_Sinningia,genus of perennial tuberous herbs and shrubs of Central and South America
+15618,Sino-Tibetan Sino-Tibetan_language,the family of tonal languages spoken in eastern Asia
+15619,Sinologist,a student of Chinese history and language and culture
+15620,Sinology,the study of Chinese history and language and culture
+15621,Sinornis,sparrow-sized fossil bird of the Jurassic period to the Cretaceous period having a keeled breastbone and vestigial tail; found in China; considered possibly the second most primitive of all birds
+15622,Siouan Siouan_language,a family of North American Indian languages spoken by the Sioux
+15623,Sioux Siouan,a member of a group of North American Indian peoples who spoke a Siouan language and who ranged from Lake Michigan to the Rocky Mountains
+15624,Sioux_City,a city in northeastern Iowa where the Big Sioux River joins the Missouri
+15625,Sioux_Falls,largest city in South Dakota; located in southeastern South Dakota
+15626,Sipah-e-Sahaba,a vicious sectarian organization in Pakistan that persecutes Shiite Muslims and collaborates with al-Qaeda to attack foreigners and to disrupt the government of Pakistan
+15627,Siphonaptera order_Siphonaptera,fleas
+15628,Siphonophora order_Siphonophora,marine colonial hydrozoans
+15629,Sipuncula phylum_Sipuncula,peanut worms
+15630,Siqueiros David_Siqueiros David_Alfaro_Siqueiros,Mexican painter of murals depicting protest and revolution (1896-1974)
+15631,Sir,a title used before the name of knight or baronet
+15632,Sir_Barton,thoroughbred that won the triple crown in 1919
+15633,Siraj-ud-daula,Indian general and nawab of Bengal who opposed the colonization of India by England; he captured Calcutta in 1756 and many of his prisoners suffocated in a crowded room that became known as the Black Hole of Calcutta; he was defeated at the battle of Plassey by a group of Indian nobles in alliance with Robert Clive (1728-1757)
+15634,Siren,a sea nymph (part woman and part bird) supposed to lure sailors to destruction on the rocks where the nymphs lived; "Odysseus ordered his crew to plug their ears so they would not hear the Siren's fatal song"
+15635,Sirenia order_Sirenia,an animal order including: manatees; dugongs; Steller's sea cow
+15636,Sirenidae family_Sirenidae,sirens
+15637,Sirius Dog_Star Canicula Sothis,the brightest star in the sky; in Canis Major
+15638,Sison genus_Sison,genus including stone parsley
+15639,Sister,(Roman Catholic Church) a title given to a nun (and used as a form of address); "the Sisters taught her to love God"
+15640,Sistine_Chapel,the private chapel of the popes in Rome; it was built by and named after Sixtus IV in 1473
+15641,Sistrurus genus_Sistrurus,pygmy rattlesnakes
+15642,Sisyphus,(Greek legend) a king in ancient Greece who offended Zeus and whose punishment was to roll a huge boulder to the top of a steep hill; each time the boulder neared the top it rolled back down and Sisyphus was forced to start again
+15643,Sisyridae family_Sisyridae,an arthropod family of the order Neuroptera that includes spongeflies
+15644,Sisyrinchium genus_Sisyrinchium,chiefly North American grasslike herbs
+15645,Sita,wife of the Hindu god Rama; regarded as an ideal of womanhood
+15646,Sitka,a town in southeastern Alaska that was the capital of Russian America and served as the capital of Alaska from 1867 until 1906
+15647,Sitka_spruce Picea_sitchensis,a large spruce that grows only along the northwestern coast of the United States and Canada; has sharp stiff needles and thin bark; the wood has a high ratio of strength to weight
+15648,Sitka_willow silky_willow Salix_sitchensis,small shrubby tree of western North America (Alaska to Oregon)
+15649,Sitophylus genus_Sitophylus,a genus of Bruchidae
+15650,Sitotroga genus_Sitotroga,grain moths
+15651,Sitta genus_Sitta,type genus of the Sittidae
+15652,Sitter Willem_de_Sitter,Dutch astronomer who calculated the size of the universe and suggested that it is expanding (1872-1934)
+15653,Sittidae family_Sittidae,nuthatches
+15654,Sitting_Bull,a chief of the Sioux; took up arms against settlers in the northern Great Plains and against United States Army troops; he was present at the Battle of Little Bighorn (1876) when the Sioux massacred General Custer's troops (1831-1890)
+15655,Sitwell Dame_Edith_Sitwell Dame_Edith_Louisa_Sitwell,English poet (1887-1964)
+15656,Sium genus_Sium,perennial of wet and marshy places in the northern hemisphere: water parsnips
+15657,Siva Shiva,the auspicious one; a major divinity in the later Hindu pantheon
+15658,Sivan Siwan,the ninth month of the civil year; the third month of the ecclesiastical year in the Jewish calendar (in May and June)
+15659,Sivapithecus,fossil primates found in India
+15660,Sixteen_Personality_Factor_Questionnaire 16_PF,a self-report personality inventory developed by Raymond B. Cattell to measure the 16 personality dimensions that emerged from his factor analysis of a wide range of traits
+15661,Sixth_Crusade,a Crusade from 1228 to 1229 led by the Holy Roman Emperor Frederick II who fell ill and was excommunicated by the Pope; by negotiation Frederick II was able to crown himself king of Jerusalem
+15662,Sixtus_IV Francesco_della_Rovere,Italian pope from 1471 to 1484 who consented to the establishment of the Spanish Inquisition and built the Sistine Chapel (1414-1484)
+15663,Skagens_Odde Skaw,a cape on the northernmost tip of Jutland between the Skagerrak and the Kattegatt
+15664,Skagerrak Skagerak,a broad strait of the North Sea between Jutland and Norway
+15665,Skagit,a member of the Salish people in northwestern Washington
+15666,Skagit,a Salishan dialect spoken by the Skagit
+15667,Skagway,a town in southeastern Alaska at the northern end of the Inside Passage; a gateway to the Klondike during the Alaskan gold rush
+15668,Skanda,Hindu god of war
+15669,Skeat Walter_William_Skeat,English philologist (1835-1912)
+15670,Skinner Cornelia_Otis_Skinner,United States actress noted for her one-woman shows (1901-1979)
+15671,Skinner Fred_Skinner B._F._Skinner Burrhus_Frederic_Skinner,United States psychologist and a leading proponent of behaviorism (1904-1990)
+15672,Skinner Otis_Skinner,United States actor (1858-1942)
+15673,Skinnerian,a follower of the theories or methods of B. F. Skinner
+15674,Skopje Skoplje Uskub,capital of modern Macedonia
+15675,Skuld,goddess of fate: a dwarf who personified the future
+15676,Skye_terrier,Scottish breed of terrier with shaggy hair and long low body with short legs; native to the Isle of Skye
+15677,Skylab,United States space station; in orbit from 1973 to 1979
+15678,Slav,any member of the people of eastern Europe or Asian Russia who speak a Slavonic language
+15679,Slavic Slavic_language Slavonic Slavonic_language,a branch of the Indo-European family of languages
+15680,Slavic_people,group of people speaking a Slavonic language
+15681,Sleeping_Beauty,fairy story: princess under an evil spell who could be awakened only by a prince's kiss
+15682,Sloanea genus_Sloanea,genus of tropical hardwood timber trees
+15683,Sloppy_Joe,ground beef (not a patty) cooked in a spicy sauce and served on a bun
+15684,Slovak,a native or inhabitant of Slovakia
+15685,Slovak,the Slavic language spoken in Slovakia
+15686,Slovakia Slovak_Republic,a landlocked republic in central Europe; separated from the Czech Republic in 1993
+15687,Slovakian_monetary_unit,monetary unit in Slovakia
+15688,Slovene,a native of Slovenia
+15689,Slovene,the Slavic language of Slovenes
+15690,Slovenia Republic_of_Slovenia Slovenija,a mountainous republic in central Europe; formerly part of the Habsburg monarchy and Yugoslavia; achieved independence in 1991
+15691,Slovenian,a native or inhabitant of Slovenia
+15692,Small_Business_Administration SBA,an independent agency of the United States government that protects the interests of small businesses and ensures that they receive a fair share of government contracts
+15693,Small_Magellanic_Cloud,the smaller of the two Magellanic Clouds visible from the southern hemisphere
+15694,Smalley Richard_Smalley Richard_E._Smalley Richard_Errett_Smalley,American chemist who with Robert Curl and Harold Kroto discovered fullerenes and opened a new branch of chemistry (born in 1943)
+15695,Smetana Bedrich_Smetana,Czech composer (1824-1884)
+15696,Smilacaceae subfamily_Smilacaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+15697,Smilax genus_Smilax,sometimes placed in Smilacaceae
+15698,Smiledon genus_Smiledon,saber-toothed tigers
+15699,Smiledon_californicus,North American sabertooth; culmination of sabertooth development
+15700,Smitane,veloute or brown sauce with sauteed chopped onion and dry white wine and sour cream
+15701,Smith Adam_Smith,Scottish economist who advocated private enterprise and free trade (1723-1790)
+15702,Smith Bessie_Smith,United States blues singer (1894-1937)
+15703,Smith David_Smith David_Roland_Smith,United States sculptor (1906-1965)
+15704,Smith Ian_Smith Ian_Douglas_Smith,Rhodesian statesman who declared independence of Zimbabwe from Great Britain (born in 1919)
+15705,Smith John_Smith Captain_John_Smith,English explorer who helped found the colony at Jamestown, Virginia; was said to have been saved by Pocahontas (1580-1631)
+15706,Smith Joseph_Smith,religious leader who founded the Mormon Church in 1830 (1805-1844)
+15707,Smith Julia_Evelina_Smith,United States suffragist who refused to pay taxes until she could vote (1792-1886)
+15708,Smith Kate_Smith Kathryn_Elizabeth_Smith,United States singer noted for her rendition of patriotic songs (1909-1986)
+15709,Smolensk,a city in western Russia on the Dnieper River; scene of severe fighting in World War II
+15710,Smollett Tobias_Smollett Tobias_George_Smollett,Scottish writer of adventure novels (1721-1771)
+15711,Smuts Jan_Christian_Smuts,South African statesman and soldier (1870-1950)
+15712,Smyrnium genus_Smyrnium,Alexanders
+15713,Snake Snake_River,a tributary of the Columbia River that rises in Wyoming and flows westward; discovered in 1805 by the Lewis and Clark Expedition
+15714,Snead Sam_Snead Samuel_Jackson_Snead,United States golfer known for the graceful arc of his swing (1912-2002)
+15715,Snellen Hermann_Snellen,Dutch ophthalmologist who introduced the Snellen chart to study visual acuity (1834-1908)
+15716,Snellen_chart,display consisting of a printed card with letters and numbers in lines of decreasing size; used to test visual acuity
+15717,Snellen_test,a test of visual acuity using a Snellen chart
+15718,Sno-cat,a kind of snowmobile
+15719,Snoopy,a fictional beagle in a comic strip drawn by Charles Schulz
+15720,Snow C._P._Snow Charles_Percy_Snow Baron_Snow_of_Leicester,English writer of novels about moral dilemmas in academe (1905-1980)
+15721,SoHo South_of_Houston,a district in southwestern Manhattan noted for its shops and restaurants and galleries and artist's lofts
+15722,Soave,dry white Italian wine from Verona
+15723,Social_Democratic_Party,a political party in Germany and Britain (and elsewhere) founded in late 19th century; originally Marxist; now advocates the gradual transformation of capitalism into democratic socialism
+15724,Social_Development_Commission,the commission of the Economic and Social Council of the United Nations that is concerned with social development
+15725,Social_Security,social welfare program in the U.S.; includes old-age and survivors insurance and some unemployment insurance and old-age assistance
+15726,Social_Security_Administration SSA,an independent government agency responsible for the Social Security system
+15727,Social_Security_number,the number of a particular individual's Social Security account
+15728,Socialist_Labor_Party,a political party in the United States; formed in 1874 to advocate the peaceful introduction of socialism
+15729,Socialist_Party,a political party in the United States formed in 1900 to advocate socialism
+15730,Society_Islands,an island group of French Polynesia in the South Pacific to the east of Samoa
+15731,Society_of_Jesus Jesuit_order,a Roman Catholic order founded by Saint Ignatius of Loyola in 1534 to defend Catholicism against the Reformation and to do missionary work among the heathen; it is strongly committed to education and scholarship
+15732,Socinian,an adherent of the teachings of Socinus; a Christian who rejects the divinity of Christ and the Trinity and original sin; influenced the development of Unitarian theology
+15733,Socinus Faustus_Socinus Fausto_Paolo_Sozzini,Italian theologian who argued against Trinitarianism (1539-1604)
+15734,Socotra_begonia Begonia_socotrana,semi-tuberous begonia having peltate leaves and rose-pink flowers; Yemen
+15735,Socrates,ancient Athenian philosopher; teacher of Plato and Xenophon (470-399 BC)
+15736,Socratic_irony,admission of your own ignorance and willingness to learn while exposing someone's inconsistencies by close questioning
+15737,Socratic_method maieutic_method,a method of teaching by question and answer; used by Socrates to elicit truths from his students
+15738,Soddy Frederick_Soddy,English chemist whose work on radioactive disintegration led to the discovery of isotopes (1877-1956)
+15739,Sodom,(Old Testament) an ancient city near the Dead Sea that (along with Gomorrah) was destroyed by God for the wickedness of its inhabitants
+15740,Sofia Serdica Bulgarian_capital,capital and largest city of Bulgaria located in western Bulgaria
+15741,Soho,a city district of central London now noted for restaurants and nightclubs
+15742,Soissons battle_of_Soissons-Reims battle_of_the_Chemin-des-Dames battle_of_the_Aisne,a battle in World War I (May 1918); the Germans tried to attack before the American numbers were too great to defeat; the tactical success of the Germans proved to be a strategic failure
+15743,Sokoro,a Chadic language spoken in Chad
+15744,Sol,(Roman mythology) ancient Roman god; personification of the sun; counterpart of Greek Helios
+15745,Solanaceae family_Solanaceae potato_family,large and economically important family of herbs or shrubs or trees often strongly scented and sometimes narcotic or poisonous; includes the genera Solanum, Atropa, Brugmansia, Capsicum, Datura, Hyoscyamus, Lycopersicon, Nicotiana, Petunia, Physalis, and Solandra
+15746,Solandra genus_Solandra,shrubby climbers of tropical America
+15747,Solanopteris genus_Solanopteris,tropical American epiphytic ferns having rhizomes with tubers and roots as well as scales
+15748,Solanum genus_Solanum,type genus of the Solanaceae: nightshade; potato; eggplant; bittersweet
+15749,Solea genus_Solea,type genus of the Soleidae
+15750,Soledad,a city in northern Colombia; a suburb of Barranquilla
+15751,Soleidae family_Soleidae,soles
+15752,Solemnity_of_Mary January_1,(Roman Catholic Church) a holy day of obligation
+15753,Solenichthyes order_Solenichthyes,bellows fishes; shrimpfishes; cornetfishes; pipefishes; small order of chiefly tropical marine fishes of varied and bizarre form all having a small mouth at the end of a drawn-out tubular snout
+15754,Solenidae family_Solenidae,razor clams
+15755,Solenogastres order_Solenogastres Aplacophora order_Aplacophora,an order of Amphineura
+15756,Solenopsis genus_Solenopsis,fire ants
+15757,Solenostemon genus_Solenostemon,genus of shrubby often succulent herbs of tropical Africa and Asia; includes some plants often placed in genus Coleus
+15758,Solent,a strait of the English Channel between the coast of Hampshire and the Isle of Wight
+15759,Solferino battle_of_Solferino,an indecisive battle in 1859 between the French and Sardinians under Napoleon III and the Austrians under Francis Joseph I
+15760,Solidago genus_Solidago,goldenrod
+15761,Solingen,a city in west central Germany noted for cutlery
+15762,Solo_man,early man of late Pleistocene; skull resembles that of Neanderthal man but with smaller cranial capacity; found in Java
+15763,Solomon,(Old Testament) son of David and king of Israel noted for his wisdom (10th century BC)
+15764,Solomon's-seal,any of several plants of the genus Polygonatum having paired drooping yellowish-green flowers and a thick rootstock with scars shaped like Solomon's seal
+15765,Solomon_Islands,the southern Solomon Islands that since 1978 form an independent state in the British Commonwealth
+15766,Solomons Solomon_Islands,the northernmost islands are part of Papua New Guinea; the remainder form an independent state within the British Commonwealth
+15767,Solresol,an artificial language
+15768,Solvay Ernest_Solvay,Belgian chemist who developed the Solvay process and built factories exploiting it (1838-1922)
+15769,Solvay_process,an industrial process for producing sodium carbonate from sodium chloride and ammonia and carbon dioxide
+15770,Solway_Firth,a large firth on the west coast of Britain between England and Scotland
+15771,Solzhenitsyn Alexander_Isayevich_Solzhenitsyn Aleksandr_Solzhenitsyn Aleksandr_I._Solzhenitsyn,Soviet writer and political dissident whose novels exposed the brutality of Soviet labor camps (born in 1918)
+15772,Soma,personification of a sacred intoxicating drink used in Vedic ritual
+15773,Somali,the Cushitic language spoken by the Somali
+15774,Somali_peninsula Horn_of_Africa,a peninsula of northeastern Africa (the easternmost part of Africa) comprising Somalia and Djibouti and Eritrea and parts of Ethiopia
+15775,Somalia,a republic in extreme eastern Africa on the Somali peninsula; subject to tribal warfare
+15776,Somalian Somali,a member of a tall dark (mostly Muslim) people inhabiting Somalia
+15777,Somalian_monetary_unit,monetary unit in Somalia
+15778,Somalian_shilling shilling,the basic unit of money in Somalia; equal to 100 cents
+15779,Somateria genus_Somateria,eider ducks
+15780,Sombrero,one of the islands of Saint Christopher-Nevis
+15781,Somerset,a county in southwestern England on the Bristol Channel
+15782,Somme Somme_River Battle_of_the_Somme,battle of World War II (1944)
+15783,Somme Somme_River Battle_of_the_Somme,battle in World War I (1916)
+15784,Somrai Sibine,a Chadic language spoken in Chad
+15785,Son Word Logos,the divine word of God; the second person in the Trinity (incarnate in Jesus)
+15786,Sonchus genus_Sonchus,sow thistles
+15787,Sondheim Stephen_Sondheim,United States composer of musicals (born in 1930)
+15788,Song_of_Songs Song_of_Solomon Canticle_of_Canticles Canticles,an Old Testament book consisting of a collection of love poems traditionally attributed to Solomon but actually written much later
+15789,Songhai,a Nilo-Saharan language spoken by the Songhai in Mali and Niger
+15790,Sonora genus_Sonora,ground snakes
+15791,Sonora_gum,acidulous gum resin of the creosote bush
+15792,Sonora_lac,resembling lac; secreted by a scale living on twigs of certain Mexican shrubs; used locally as medicine
+15793,Sonoran_Desert,a desert in southwestern Arizona
+15794,Sonoran_lyre_snake Trimorphodon_lambda,of desert regions of southwestern North America
+15795,Sonoran_whipsnake Masticophis_bilineatus,both terrestrial and arboreal snake of United States southwest
+15796,Sontag Susan_Sontag,United States writer (born in 1933)
+15797,Sophist,any of a group of Greek philosophers and teachers in the 5th century BC who speculated on a wide range of subjects
+15798,Sophocles,one of the great tragedians of ancient Greece (496-406 BC)
+15799,Sophora genus_Sophora,cosmopolitan genus of trees and shrubs having odd-pinnate leaves and showy flowers; some species placed in genus Podalyria
+15800,Sorbian,a speaker of Sorbian
+15801,Sorbian Lusatian,a Slavonic language spoken in rural area of southeastern Germany
+15802,Sorbus genus_Sorbus,a genus of shrubs or trees of the family Rosaceae having feathery leaves
+15803,Sorensen Soren_Peter_Lauritz_Sorensen,Danish chemist who devised the pH scale (1868-1939)
+15804,Sorex genus_Sorex,type genus of the family Soricidae: shrews
+15805,Soricidae family_Soricidae,shrews
+15806,Sotho,a member of the Bantu people who inhabit Botswana, Lesotho, and northern South Africa and who speak the Sotho languages
+15807,Sotho,any of the mutually intelligible southern Bantu languages of the Sotho in Botswana and South Africa and Lesotho
+15808,Soubise white_onion_sauce,veloute sauce with sauteed chopped onions and whipping cream
+15809,Soufflot Jacques_Germain_Soufflot,French architect (1713-1780)
+15810,Sousa John_Philip_Sousa March_King,a United States bandmaster and composer of military marches (1854-1932)
+15811,Sousse Susa Susah,a port city in eastern Tunisia on the Mediterranean
+15812,South,the region of the United States lying to the south of the Mason-Dixon line
+15813,South-African_yellowwood Podocarpus_latifolius,erect or shrubby tree of Africa having ridged dark grey bark and rigid glossy medium to long leaves
+15814,South-Central_Dravidian,a Dravidian language spoken primarily in south central India
+15815,South_Africa Republic_of_South_Africa,a republic at the southernmost part of Africa; achieved independence from the United Kingdom in 1910; first European settlers were Dutch (known as Boers)
+15816,South_African,a native or inhabitant of South Africa
+15817,South_African_monetary_unit,monetary unit in South Africa
+15818,South_America,a continent in the western hemisphere connected to North America by the Isthmus of Panama
+15819,South_America,the nations of the South American continent collectively; "South America is an important market for goods from the United States"
+15820,South_American,a native or inhabitant of South America
+15821,South_American_Indian,a member of a native Indian group in South America
+15822,South_American_country South_American_nation,any one of the countries occupying the South American continent
+15823,South_American_poison_toad,a South American toad
+15824,South_American_sea_lion Otaria_Byronia,of the southern coast of South America
+15825,South_American_staghorn Platycerium_andinum,fern of Peru and Bolivia
+15826,South_Atlantic,that part of the Atlantic Ocean to the south of the equator
+15827,South_Australia,a state in south central Australia
+15828,South_Bend,a city in northern Indiana
+15829,South_Carolina,one of the British colonies that formed the United States
+15830,South_Carolina Palmetto_State SC S.C.,a state in the Deep South; one of the original 13 colonies
+15831,South_Carolinian,a native or resident of South Carolina
+15832,South_China_Sea,a tropical arm of the Pacific Ocean near southeastern Asia subject to frequent typhoons
+15833,South_Dakota Coyote_State Mount_Rushmore_State SD S.D.,a state in north central United States
+15834,South_Dakotan,a native or resident of South Dakota
+15835,South_Dravidian,a Dravidian language spoken primarily in southern India
+15836,South_Equatorial_Current,an equatorial current that flows west across the Pacific just south of the equator
+15837,South_Island,the larger but less populous of two main islands of New Zealand; separated from North Island by Cook Strait
+15838,South_Korea Republic_of_Korea,a republic in the southern half of the Korean Peninsula; established in 1948
+15839,South_Korean,a Korean from South Korea
+15840,South_Korean_monetary_unit,monetary unit in South Korea
+15841,South_Korean_won won,the basic unit of money in South Korea
+15842,South_Pacific,that part of the Pacific Ocean to the south of the equator
+15843,South_Platte South_Platte_River,a tributary of the Platte River
+15844,South_Pole,the southernmost point of the Earth's axis
+15845,South_Sea,any sea to the south of the equator (but especially the South Pacific)
+15846,South_Sea_Islands,any islands in the southern or southwestern of central parts of the Pacific Ocean
+15847,South_Temperate_Zone,Temperate Zone between the Antarctic Circle and the Tropic of Capricorn
+15848,South_Vietnam,a former country in southeastern Asia that existed from 1954 (after the defeat of the French at Dien Bien Phu) until 1975 when it was defeated and annexed by North Vietnam
+15849,South_Yorkshire,a metropolitan county in northern England
+15850,Southeast southeastern_United_States,the southeastern region of the United States
+15851,Southeast_Asia,a geographical division of Asia that includes Indochina plus Indonesia and the Philippines and Singapore
+15852,Southern_Baptist,a member of the Southern Baptist Convention
+15853,Southern_Baptist_Convention,an association of Southern Baptists
+15854,Southern_Cross Crux Crux_Australis,a small conspicuous constellation in the southern hemisphere in the Milky Way near Centaurus
+15855,Southern_Tai,a branch of the Tai languages
+15856,Southern_crab_apple flowering_crab Malus_angustifolia,small tree or shrub of southeastern United States; cultivated as an ornamental for its rose-colored blossoms
+15857,Southern_dewberry Rubus_trivialis,of southern North America
+15858,Southerner,an American who lives in the South
+15859,Southey Robert_Southey,English poet and friend of Wordsworth and Coleridge (1774-1843)
+15860,Southwest southwestern_United_States,the southwestern region of the United States generally including New Mexico, Arizona, Texas, California, and sometimes Utah and Colorado
+15861,Southwestern West_Saxon,a dialect of Middle English
+15862,Soutine Chaim_Soutine,French expressionist painter (born in Lithuania) (1893-1943)
+15863,Soviet_Russia Russia Russian_Soviet_Federated_Socialist_Republic,formerly the largest Soviet Socialist Republic in the USSR occupying eastern Europe and northern Asia
+15864,Soviet_Socialist_Republic,one of the states that formerly made up the former Union of Soviet Socialist Republics (1922-1991)
+15865,Soviet_Union Russia Union_of_Soviet_Socialist_Republics USSR,a former communist country in eastern Europe and northern Asia; established in 1922; included Russia and 14 other soviet socialist republics (Ukraine and Byelorussia and others); officially dissolved 31 December 1991
+15866,Soviets,the government of the Soviet Union; "the Soviets said they wanted to increase trade with Europe"
+15867,Soweto,a large collection of African townships to the southwest of Johannesburg in South Africa; inhabited solely by Black Africans
+15868,Space_Needle,a tower 605 feet tall in Seattle; a tourist attraction
+15869,Spain Kingdom_of_Spain Espana,a parliamentary monarchy in southwestern Europe on the Iberian Peninsula; a former colonial power
+15870,Spalacidae family_Spalacidae,mole rats
+15871,Spalax genus_Spalax,type genus of the Spalacidae
+15872,Spallanzani Lazzaro_Spallanzani,Italian physiologist who disproved the theory of spontaneous generation (1729-1799)
+15873,Spam,a canned meat made largely from pork
+15874,Spandau,a German machine gun
+15875,Spaniard,a native or inhabitant of Spain
+15876,Spanish,the Romance language spoken in most of Spain and the countries colonized by Spain
+15877,Spanish Spanish_people,the people of Spain
+15878,Spanish-American_War Spanish_War,a war between the United States and Spain in 1898
+15879,Spanish_American Hispanic_American Hispanic,an American whose first language is Spanish
+15880,Spanish_Armada Invincible_Armada,the great fleet sent from Spain against England by Philip II in 1588
+15881,Spanish_Civil_War,civil war in Spain in which Franco succeeded in overthrowing the republican government; during the war Spain became a battleground for fascists and socialists from all countries; 1936-1939
+15882,Spanish_Inquisition,an inquisition initiated in 1478 by King Ferdinand and Queen Isabella that guarded the orthodoxy of Catholicism in Spain (especially from the 15th to the 17th centuries); "the Spanish Inquisition was administered by both civil and church authorities which gave it ultimate power"; "Torquemada was the inquisitor general for the Spanish Inquisition"
+15883,Spanish_bayonet Yucca_aloifolia,a stiff yucca with a short trunk; found in the southern United States and tropical America; has rigid spine-tipped leaves and clusters of white flowers
+15884,Spanish_bayonet Yucca_baccata,tall yucca of the southwestern United States and Mexico having a woody stem and stiff swordlike pointed leaves and a large cluster of white flowers
+15885,Spanish_broom Spanish_gorse Genista_hispanica,erect shrub of southwestern Europe having racemes of golden yellow flowers
+15886,Spanish_broom weaver's_broom Spartium_junceum,tall thornless shrub having pale yellow flowers and flexible rushlike twigs used in basketry; of southwestern Europe and Mediterranean; naturalized in California
+15887,Spanish_cedar Spanish_cedar_tree Cedrela_odorata,tropical American tree yielding fragrant wood used especially for boxes
+15888,Spanish_dagger Yucca_carnerosana,arborescent yucca of southwestern United States and northern Mexico with sword-shaped leaves and white flowers
+15889,Spanish_dagger Yucca_gloriosa,yucca of southeastern United States similar to the Spanish bayonets but with shorter trunk and smoother leaves
+15890,Spanish_elm Equador_laurel salmwood cypre princewood Cordia_alliodora,large tropical American tree of the genus Cordia grown for its abundant creamy white flowers and valuable wood
+15891,Spanish_fly,green beetle of southern Europe
+15892,Spanish_grunt Haemulon_macrostomum,a kind of grunt
+15893,Spanish_heath Portuguese_heath Erica_lusitanica,erect dense shrub native to western Iberian peninsula having profuse white or pink flowers; naturalized in southwestern England
+15894,Spanish_iris xiphium_iris Iris_xiphium,bulbous iris of western Mediterranean region having usually violet-purple flowers
+15895,Spanish_lime Spanish_lime_tree honey_berry mamoncillo genip ginep Melicocca_bijuga Melicocca_bijugatus,tropical American tree bearing a small edible fruit with green leathery skin and sweet juicy translucent pulp
+15896,Spanish_mackerel,flesh of commercially important fishes especially of the Atlantic coastal waters of America
+15897,Spanish_mackerel,any of several large marine food fishes of the genus Scomberomorus
+15898,Spanish_mackerel Scomber_colias,medium-sized mackerel of temperate Atlantic and Gulf of Mexico
+15899,Spanish_monetary_unit,monetary unit in Spain
+15900,Spanish_moss old_man's_beard black_moss long_moss Tillandsia_usneoides,dense festoons of greenish-grey hairlike flexuous strands anchored to tree trunks and branches by sparse wiry roots; southeastern United States and West Indies to South America
+15901,Spanish_needles Bidens_bipinnata,common bur marigold of the eastern United States
+15902,Spanish_needles beggar-ticks,the seed of bur marigolds
+15903,Spanish_oak Quercus_texana,small deciduous tree having the trunk branched almost from the base with spreading branches; Texas and southern Oklahoma
+15904,Spanish_onion,large mild and succulent onion; often eaten raw
+15905,Spanish_oyster_plant Scolymus_hispanicus,a golden thistle of southwestern Europe cultivated for its edible sweet roots and edible leaves and stalks; its yellow flowers are used as a substitute for saffron
+15906,Spanish_paprika,a mild seasoning made from a variety of pimiento grown in Spain
+15907,Spanish_rice,spicy rice with tomatoes and onions and green peppers
+15908,Spanish_tamarind Vangueria_madagascariensis,shrubby tree of Madagascar occasionally cultivated for its edible apple-shaped fruit
+15909,Sparaxis genus_Sparaxis,deciduous perennial herbs of South Africa
+15910,Sparganiaceae family_Sparganiaceae bur-reed_family,coextensive with the genus Sparganium
+15911,Sparganium genus_Sparganium,type and sole genus of Sparganiaceae; marsh or aquatic herbs of temperate regions
+15912,Sparidae family_Sparidae,porgies; scups
+15913,Spark Muriel_Spark Dame_Muriel_Spark Muriel_Sarah_Spark,Scottish writer of satirical novels (born in 1918)
+15914,Sparmannia genus_Sparmannia,small genus of tropical African shrubs
+15915,Sparrow_Unit,a hit squad of the New People's Army in the Philippines
+15916,Sparta,an ancient Greek city famous for military prowess; the dominant city of the Peloponnesus prior to the 4th century BC
+15917,Spartan,a resident of Sparta
+15918,Spartina genus_Spartina,grass of freshwater swamps and salt marshes of Europe, Africa, America, and South Atlantic islands
+15919,Spartium genus_Spartium,one species: Spanish broom
+15920,Spassky Boris_Spassky Boris_Vasilevich_Spassky,Russian chess master who moved to Paris; world champion from 1969 to 1972 (born in 1937)
+15921,Spatangoida order_Spatangoida,heart-shaped sea urchins
+15922,Speaker,the presiding officer of a deliberative assembly; "the leader of the majority party is the Speaker of the House of Representatives"
+15923,Special_Air_Service SAS,a specialist regiment of the British army that is trained in commando techniques of warfare and used in clandestine operations (especially against terrorist groups)
+15924,Special_Branch,a government police department dealing with political security
+15925,Special_Forces U._S._Army_Special_Forces United_States_Army_Special_Forces,a division of the United States Army that is specially trained for guerilla fighting
+15926,Special_Olympics,an athletic contest modeled after the Olympic Games but intended for mentally or physically handicapped persons
+15927,Speer Albert_Speer,German Nazi architect who worked for Hitler (1905-1981)
+15928,Speke John_Speke John_Hanning_Speke,English explorer who with Sir Richard Burton was the first European to explore Lake Tanganyika; he also discovered Lake Victoria and named it (1827-1864)
+15929,Spencer Herbert_Spencer,English philosopher and sociologist who applied the theory of natural selection to human societies (1820-1903)
+15930,Spender Stephen_Spender Sir_Stephen_Harold_Spender,English poet and critic (1909-1995)
+15931,Spengler Oswald_Spengler,German philosopher who argued that cultures grow and decay in cycles (1880-1936)
+15932,Spenser Edmund_Spenser,English poet who wrote an allegorical romance celebrating Elizabeth I in the Spenserian stanza (1552-1599)
+15933,Spenserian_sonnet,a sonnet consisting of three quatrains and a concluding couplet in iambic pentameter with the rhyme pattern abab bcbd cdcd ee
+15934,Spenserian_stanza,a stanza with eight lines of iambic pentameter and a concluding Alexandrine with the rhyme pattern abab bcbc c; "the Spenserian stanza was introduced by Edmund Spenser in The Faerie Queene"
+15935,Spergula genus_Spergula,small genus of Old World annual herbs: corn spurry
+15936,Spergularia genus_Spergularia,chiefly maritime Eurasian herbs: sand spurry; sea spurry
+15937,Spermatophyta division_Spermatophyta,seed plants; comprises the Angiospermae (or Magnoliophyta) and Gymnospermae (or Gymnospermophyta); in some classification systems Spermatophyta is coordinate with Pteridophyta (spore producing plants having vascular tissue and roots) and Bryophyta (spore producing plants lacking vascular tissue and roots)
+15938,Sperry Elmer_Ambrose_Sperry,United States engineer and inventor of the gyrocompass (1860-1930)
+15939,Sphacelotheca genus_Sphacelotheca,genus of smut fungus
+15940,Sphaeralcea genus_Sphaeralcea,large genus of chiefly tropical herbs with showy flowers and mostly globose fruits: globe mallows
+15941,Sphaeriaceae family_Sphaeriaceae,parasitic fungi having globose and sometimes necked or beaked perithecia
+15942,Sphaeriales order_Sphaeriales,large order of ascomycetous fungi usually having a dark hard perithecia with definite ostioles; in more recent classifications often divided among several orders
+15943,Sphaerobolaceae family_Sphaerobolaceae,monotypic family of fungi in which the more or less spherical gleba is forcibly ejected at maturity
+15944,Sphaerocarpaceae family_Sphaerocarpaceae,liverworts with bilaterally symmetrical gametophytes; sometimes placed in the order Jungermanniales
+15945,Sphaerocarpales order_Sphaerocarpales,small order sometimes included in the order Jungermanniales
+15946,Sphaerocarpus genus_Sphaerocarpus Sphaerocarpos genus_Sphaerocarpos,type genus of Sphaerocarpaceae; liverworts with small many-lobed usually orbicular thallus
+15947,Sphagnales order_Sphagnales,coextensive with the genus Sphagnum; in some classifications isolated in a separate subclass
+15948,Sphecidae family_Sphecidae,mud daubers; some digger wasps
+15949,Sphecius genus_Sphecius,large solitary wasps: cicada killer
+15950,Sphecoidea superfamily_Sphecoidea,families Sphecidae and Stizidae
+15951,Sphecotheres genus_Sphecotheres,a genus of Old World orioles
+15952,Spheniscidae family_Spheniscidae,comprising all existing penguins
+15953,Sphenisciformes order_Sphenisciformes,penguins
+15954,Spheniscus genus_Spheniscus,type genus of the Spheniscidae: jackass penguins
+15955,Sphenodon genus_Sphenodon,coextensive with the order Rhynchocephalia: tuataras
+15956,Sphenopsida class_Sphenopsida Equisetatae class_Equisetatae,horsetails and related forms
+15957,Sphingidae family_Sphingidae,hawkmoths
+15958,Sphinx,(Greek mythology) a riddling winged monster with a woman's head and breast on a lion's body; daughter of Typhon
+15959,Sphyraena genus_Sphyraena,type and sole genus of the Sphyraenidae: barracuda
+15960,Sphyraenidae family_Sphyraenidae,monotypic family of large active fishes of tropical and subtropical waters: barracuda
+15961,Sphyrapicus genus_Sphyrapicus,a genus of Picidae
+15962,Sphyrna genus_Sphyrna,type genus of the Sphyrnidae
+15963,Sphyrnidae family_Sphyrnidae,hammerhead sharks; bonnethead sharks
+15964,Spica,the brightest star in Virgo
+15965,Spielberg Steven_Spielberg,United States filmmaker (born in 1947)
+15966,Spielmeyer-Vogt_disease juvenile_amaurotic_idiocy,a congenital progressive disorder of lipid metabolism having an onset at age 5 and characterized by blindness and dementia and early death
+15967,Spillane Mickey_Spillane Frank_Morrison_Spillane,United States writer of popular detective novels (born in 1918)
+15968,Spilogale genus_Spilogale,a genus of Mustelidae
+15969,Spinacia genus_Spinacia,spinach
+15970,Spinoza de_Spinoza Baruch_de_Spinoza Benedict_de_Spinoza,Dutch philosopher who espoused a pantheistic system (1632-1677)
+15971,Spinus genus_Spinus,in some classifications considered a subgenus of Carduelis: siskins and New World goldfinches
+15972,Spiraea genus_Spiraea,a dicotyledonous genus of the family Rosaceae
+15973,Spiranthes genus_Spiranthes,large cosmopolitan genus of white-flowered terrestrial orchids
+15974,Spirillaceae family_Spirillaceae,rigid spirally curved elongate bacteria
+15975,Spirochaeta genus_Spirochaeta,the type genus of the family Spirochaetaceae; a bacterium that is flexible, undulating, and chiefly aquatic
+15976,Spirochaetaceae family_Spirochaetaceae,large coarsely spiral bacteria; free-living in fresh or salt water or commensal in bodies of oysters
+15977,Spirochaetales order_Spirochaetales,higher bacteria; slender spiral rodlike forms
+15978,Spirodela genus_Spirodela,minute aquatic herbs floating on the water surface consisting of a shiny leaflike frond and 2-21 roots
+15979,Spirulidae family_Spirulidae,coextensive with the genus Spirula; included in the order Belemnoidea in some older classifications
+15980,Spitsbergen Spitzbergen,islands in the Svalbard archipelago to the east of northern Greenland; belonging to Norway
+15981,Spizella genus_Spizella,chipping sparrow; field sparrow; tree sparrow
+15982,Split,an old Croatian city on the Adriatic Sea
+15983,Spock Benjamin_Spock,United States pediatrician whose many books on child care influenced the upbringing of children around the world (1903-1998)
+15984,Spode,a brand of fine English porcelain
+15985,Spode Josiah_Spode,English potter who started a pottery famous for its bone china (1754-1827)
+15986,Spodoptera genus_Spodoptera,moths whose larvae are armyworms
+15987,Spodoptera_exigua,moth whose larvae are beet armyworms
+15988,Spodoptera_frugiperda,moth whose larvae are fall armyworms
+15989,Spokane,a city in eastern Washington near the Idaho border
+15990,Spondias genus_Spondias,tropical trees having one-seeded fruit
+15991,Spork,trademark for a plastic eating utensil that has both tines and a bowl like a spoon
+15992,Sporobolus genus_Sporobolus,cosmopolitan annual and perennial grasses (as dropseed or rush grass)
+15993,Sporozoa class_Sporozoa,strictly parasitic protozoans that are usually immobile; includes plasmodia and coccidia and piroplasms and malaria parasites
+15994,Spotsylvania,a village in northeastern Virginia where battles were fought during the American Civil War
+15995,Spotsylvania battle_of_Spotsylvania_Courthouse,a battle between the armies of Grant and Lee during the Wilderness Campaign
+15996,Spraguea genus_Spraguea,small genus of usually perennial herbs having deep woody taproots and flower heads of umbels or cymes
+15997,Springfield,a city of southwestern Missouri
+15998,Springfield,a city and manufacturing center in southwestern Massachusetts on the Connecticut River
+15999,Springfield capital_of_Illinois,capital of the state of Illinois
+16000,Spyeria genus_Spyeria,fritillaries
+16001,Squalidae family_Squalidae,dogfishes having a spine in each dorsal fin
+16002,Squalus genus_Squalus,spiny dogfishes
+16003,Squamata order_Squamata,diapsid reptiles: snakes and lizards
+16004,Squatina genus_Squatina,type genus of the Squatinidae: angel sharks
+16005,Squatinidae family_Squatinidae,bottom-dwelling ray-like sharks
+16006,Squillidae family_Squillidae,crustaceans that burrow in mud or under stones in shallow water along the seashore
+16007,Sri_Lanka Democratic_Socialist_Republic_of_Sri_Lanka Ceylon,a republic on the island of Ceylon; became independent of the United Kingdom in 1948
+16008,Sri_Lanka_rupee rupee,the basic unit of money in Sri Lanka; equal to 100 cents
+16009,Sri_Lankan,a native or inhabitant of Sri Lanka
+16010,Sri_Lankan_monetary_unit,monetary unit in Sri Lanka
+16011,St.-Bruno's-lily Paradisea_liliastrum,a variety of spiderwort
+16012,St._Andrew's_cross saltire,a cross resembling the letter x, with diagonal bars of equal length
+16013,St._Augustine Saint_Augustine,a resort city in northeastern Florida; the oldest city in the United States
+16014,St._Augustine_grass Stenotaphrum_secundatum buffalo_grass,low mat-forming grass of southern United States and tropical America; grown as a lawn grass
+16015,St._Denis Saint_Denis Ruth_Saint_Denis Ruth_St._Denis,United States dancer and choreographer who collaborated with Ted Shawn (1877-1968)
+16016,St._Elias_Range St._Elias_Mountains,a range of mountains between Alaska and the Yukon territory
+16017,St._George's capital_of_Grenada,the capital and largest city of Grenada
+16018,St._John's Saint_John's capital_of_Antigua_and_Barbuda,the capital and largest city of Antigua and Barbuda; located on the island of Antigua
+16019,St._Petersburg Leningrad Peterburg Petrograd Saint_Petersburg,a city in the European part of Russia; 2nd largest Russian city; located at the head of the Gulf of Finland; former capital of Russia
+16020,St._Petersburg Saint_Petersburg,a city in western Florida on Tampa Bay; a popular winter resort
+16021,St_Andrews's_cross Hypericum_crux_andrae,shrubby plant having yellow to apricot flowers with four petals arranged in a cross; southeastern United States: New York to Texas
+16022,St_John's_wort,any of numerous plants of the genus Hypericum having yellow flowers and transparently dotted leaves; traditionally gathered on St John's eve to ward off evil
+16023,St_Patrick's_Day Saint_Patrick's_Day March_17,a day observed by the Irish to commemorate the patron saint of Ireland
+16024,St_Peter's_wort Hypericum_tetrapterum Hypericum_maculatum,European perennial St John's wort; Ireland and France to western Siberia
+16025,Stachys genus_Stachys,large genus of usually woolly or hairy herbs or subshrubs or shrubs; temperate eastern hemisphere; tropical Australasia
+16026,Stael Madame_de_Stael Baronne_Anne_Louise_Germaine_Necker_de_Steal-Holstein,French romantic writer (1766-1817)
+16027,Staffa,an island in western Scotland in the Inner Hebrides to the west of Mull; site of Fingal's Cave
+16028,Staffordshire_bullterrier Staffordshire_bull_terrier,English breed of strong stocky dog having a broad skull and smooth coat
+16029,Stagira Stagirus,an ancient town of Greece where Aristotle was born
+16030,Stalin Joseph_Stalin Iosif_Vissarionovich_Dzhugashvili,Russian leader who succeeded Lenin as head of the Communist Party and created a totalitarian state by purging all opposition (1879-1953)
+16031,Stalinist,a follower of Stalin and Stalinism
+16032,Stalinization Stalinisation,social process of adopting (or being forced to adopt) the policies and practices of Joseph Stalin; "many Hungarians refused to take part in the Stalinization of their country"
+16033,Stamp_Act,an act passed by the British Parliament in 1756 that raised revenue from the American Colonies by a duty in the form of a stamp required on all newspapers and legal or commercial documents; opposition by the Colonies resulted in the repeal of the act in 1766
+16034,Standard_and_Poor's Standard_and_Poor's_Index,a broadly based stock market index
+16035,Standish Miles_Standish Myles_Standish,English colonist in America; leader of the Pilgrims in the early days of the Plymouth Colony (1584-1656)
+16036,Stanford Leland_Stanford,United States railroad executive and founder of Stanford University (1824-1893)
+16037,Stanford-Binet_test,revision of the Binet-Simon Scale
+16038,Stanford_University Stanford,a university in California
+16039,Stanislavsky Konstantin_Stanislavsky Konstantin_Sergeyevich_Stanislavsky Konstantin_Sergeevich_Alekseev,Russian actor and theater director who trained his actors to emphasize the psychological motivation of their roles (1863-1938)
+16040,Stanley Francis_Edgar_Stanley,United States inventor who built a steam-powered automobile (1849-1918)
+16041,Stanley Henry_M._Stanley Sir_Henry_Morton_Stanley John_Rowlands,Welsh journalist and explorer who led an expedition to Africa in search of David Livingstone and found him in Tanzania in 1871; he and Livingstone together tried to find the source of the Nile River (1841-1904)
+16042,Stanley_Steamer,a steam-powered automobile
+16043,Stanleya genus_Stanleya,prince's plume
+16044,Stanton Elizabeth_Cady_Stanton,United States suffragist and feminist; called for reform of the practices that perpetuated sexual inequality (1815-1902)
+16045,Stapelias_asterias,stapelia of Cape Province having mostly dark red-brown flowers with flat starlike corollas
+16046,Staphylaceae family_Staphylaceae bladdernut_family,a family of dicotyledonous plants of order Sapindales found mostly in the north temperate zone
+16047,Staphylea genus_Staphylea,a genus of small trees or shrubs of the family Staphylaceae
+16048,Staphylinidae family_Staphylinidae,rove beetles
+16049,Star_Chamber,a former English court that became notorious for its arbitrary methods and severe punishments
+16050,Star_of_David Shield_of_David Magen_David Mogen_David Solomon's_seal,a six-pointed star formed from two equilateral triangles; an emblem symbolizing Judaism
+16051,Starr Ringo_Starr Starkey Richard_Starkey,rock star and drummer for the Beatles (born in 1940)
+16052,Stars_and_Bars Confederate_flag,the first flag of the Confederate States of America
+16053,Stassano_furnace electric-arc_furnace,an electric furnace in which an electric arc provides the source of heat for making steel
+16054,State_Department,a department of government in one of the 50 states
+16055,Statehouse,a government building in which a state legislature meets
+16056,Staten_Island,a borough of New York City
+16057,States'_Rights_Democratic_Party Dixiecrats,a former political party in the United States; formed in 1948 by Democrats from southern states in order to oppose to the candidacy of Harry S Truman
+16058,States_General,assembly of the estates of an entire country especially the sovereign body of the Dutch republic from 16th to 18th centuries
+16059,Station_of_the_Cross,a representation of any of the 14 stages in Christ's journey to Calvary
+16060,Stations Stations_of_the_Cross,(Roman Catholic Church) a devotion consisting of fourteen prayers said before a series of fourteen pictures or carvings representing successive incidents during Jesus' passage from Pilate's house to his crucifixion at Calvary
+16061,Statistical_Commission,the commission of the Economic and Social Council of the United Nations that is concerned with statistical data from member nations
+16062,Statue_of_Liberty,a large monumental statue symbolizing liberty on Liberty Island in New York Bay
+16063,Stavanger,a port city in southwestern Norway; center for shipbuilding industry
+16064,Stayman,apple grown chiefly in the Shenandoah Valley
+16065,Stayman_Winesap,crisp tart apple; good for eating raw and suitable for cooking
+16066,Steatornis genus_Steatornis,type and sole genus of the family Steatornithidae
+16067,Steatornithidae family_Steatornithidae,oilbirds
+16068,Steele Sir_Richrd_Steele,English writer (1672-1729)
+16069,Steen Jan_Steen,Dutch genre painter (1626-1679)
+16070,Steffens Lincoln_Steffens Joseph_Lincoln_Steffens,United States journalist whose exposes in 1906 started an era of muckraking journalism (1866-1936)
+16071,Steganopus genus_Steganopus,a genus of Phalaropidae
+16072,Stegocephalia order_Stegocephalia,in former classifications a division of class Amphibia comprising all pre-Jurassic and some later extinct large salamandriform amphibia
+16073,Steichen Edward_Jean_Steichen,United States photographer who pioneered artistic photography (1879-1973)
+16074,Stein Gertrude_Stein,experimental expatriate United States writer (1874-1946)
+16075,Steinbeck John_Steinbeck John_Ernst_Steinbeck,United States writer noted for his novels about agricultural workers (1902-1968)
+16076,Steinberg Saul_Steinberg,United States cartoonist (born in Romania) noted for his caricatures of famous people (1914-1999)
+16077,Steinem Gloria_Steinem,United States feminist (born in 1934)
+16078,Steiner Rudolf_Steiner,Austrian philosopher who founded anthroposophy (1861-1925)
+16079,Steinman David_Barnard_Steinman,United States civil engineer noted for designing suspension bridges (including the George Washington Bridge) (1886-1960)
+16080,Steinmetz Charles_Proteus_Steinmetz,United States electrical engineer and inventor (born in Germany) (1865-1923)
+16081,Steinway Henry_Steinway Henry_Engelhard_Steinway Heinrich_Engelhard_Steinway,United States piano maker (born in Germany) who founded a famous piano manufacturing firm in New York (1797-1871)
+16082,Stella Frank_Stella Frank_Philip_Stella,United States minimalist painter (born in 1936)
+16083,Stellaria genus_Stellaria,common chickweed; stitchwort
+16084,Steller Georg_Wilhelm_Steller,German naturalist (1709-1746)
+16085,Steller's_sea_cow Hydrodamalis_gigas,extinct large sirenian mammal formerly found near the Asiatic coast of the Bering Sea
+16086,Steller_sea_lion Steller's_sea_lion Eumetopias_jubatus,largest sea lion; of the northern Pacific
+16087,Stellite,a very hard alloy of cobalt and chromium with cobalt as the principal ingredient; used to make cutting tools and for surfaces subject to heavy wear
+16088,Sten_gun,a lightweight British submachine gun
+16089,Stendhal Marie_Henri_Beyle,French writer whose novels were the first to feature psychological analysis of the character (1783-1842)
+16090,Stengel Casey_Stengel Charles_Dillon_Stengel,United States baseball manager (1890-1975)
+16091,Stenocarpus genus_Stenocarpus,small genus of timber trees; Australia to Malaysia
+16092,Stenochlaena genus_Stenochlaena,large tropical ferns; some epiphytic climbers and some terrestrial bog ferns; Africa; Asia; Australasia
+16093,Stenopelmatidae family_Stenopelmatidae,long-horned grasshoppers
+16094,Stenopelmatus genus_Stenopelmatus,sand crickets
+16095,Stenotaphrum genus_Stenotaphrum,lawn grasses
+16096,Stenotomus genus_Stenotomus,scups
+16097,Stenotus genus_Stenotus,genus of western North American low evergreen shrubs growing in dense tufts
+16098,Stentor,the mythical Greek warrior with an unusually loud voice who died after losing a shouting contest with Hermes
+16099,Stephanomeria genus_Stephanomeria,malheur wire lettuce
+16100,Stephen Sir_Leslie_Stephen,English writer (1832-1904)
+16101,Stephenson George_Stephenson,English railway pioneer who built the first passenger railway in 1825 (1781-1848)
+16102,Stercorariidae family_Stercorariidae,jaegers and skuas:
+16103,Stercorarius genus_Stercorarius,type genus of the Stercorariidae: jaegers
+16104,Sterculiaceae family_Sterculiaceae sterculia_family,a large family of plants of order Malvales
+16105,Stereospondyli order_Stereospondyli,formerly a suborder of Stegocephalia; amphibia having vertebrae whose component elements are fused into a single piece; "most vertebrates are stereospondylous"
+16106,Stern Isaac_Stern,United States concert violinist (born in Russia in 1920)
+16107,Sterna genus_Sterna,a genus of Sterninae
+16108,Sterne Laurence_Sterne,English writer (born in Ireland) (1713-1766)
+16109,Sterninae subfamily_Sterninae,terns
+16110,Sternotherus genus_Sternotherus,musk turtles
+16111,Sterope Asterope,(Greek mythology) one of the 7 Pleiades
+16112,Sterope Asterope,one of the stars in the star cluster Pleiades
+16113,Steuben Baron_Friedrich_Wilhelm_Ludolf_Gerhard_Augustin_von_Steuben,American Revolutionary leader (born in Prussia) who trained the troops under George Washington (1730-1794)
+16114,Stevens George_Stevens,United States filmmaker (1905-1975)
+16115,Stevens Smitty_Stevens S._Smith_Stevens Stanley_Smith_Stevens,United States psychologist and psychophysicist who proposed Stevens' power law to replace Fechner's law (1906-1973)
+16116,Stevens Wallace_Stevens,United States poet (1879-1955)
+16117,Stevens'_law power_law Stevens'_power_law,(psychophysics) the concept that the magnitude of a subjective sensation increases proportional to a power of the stimulus intensity
+16118,Stevenson Adlai_Stevenson Adlai_Ewing_Stevenson,United States politician and diplomat (1900-1968)
+16119,Stevenson Robert_Louis_Stevenson Robert_Louis_Balfour_Stevenson,Scottish author (1850-1894)
+16120,Stewart Dugald_Stewart,Scottish philosopher and follower of Thomas Reid (1753-1828)
+16121,Stewart Jimmy_Stewart James_Maitland_Stewart,United States film actor who portrayed incorruptible but modest heros (1908-1997)
+16122,Stheno,(Greek mythology) one of the three Gorgons
+16123,Stichaeidae family_Stichaeidae,pricklebacks
+16124,Sticherus genus_Sticherus,umbrella ferns; warm regions of Australia and New Zealand
+16125,Stictomys genus_Stictomys,mountain pacas
+16126,Stictopelia genus_Stictopelia,a genus of Columbidae
+16127,Stieglitz Alfred_Stieglitz,United States photographer (1864-1946)
+16128,Still's_disease juvenile_rheumatoid_arthritis,a form of rheumatoid arthritis that affects children; large joints become inflamed and bone growth may be retarded
+16129,Stillson_wrench,a large pipe wrench with L-shaped adjustable jaws that tighten as pressure on the handle is increased
+16130,Stilton,English blue cheese
+16131,Stilwell Joseph_Warren_Stilwell Vinegar_Joe_Stilwell Uncle_Joe,United States general who commanded the Allied forces in China and Burma and India during World War II (1883-1946)
+16132,Stinger,a portable low altitude surface-to-air missile system using infrared guidance and an impact fuse; fired from the shoulder
+16133,Stizidae family_Stizidae,cicada killers
+16134,Stizostedion genus_Stizostedion,pike-perches
+16135,Stockholm capital_of_Sweden,the capital and largest city of Sweden; located in southern Sweden on the Baltic; "the Nobel Prize is awarded in Stockholm"
+16136,Stockton Frank_Stockton Francis_Richard_Stockton,United States writer (1834-1902)
+16137,Stoic,a member of the ancient Greek school of philosophy founded by Zeno; "a Stoic achieves happiness by submission to destiny"
+16138,Stoicism,(philosophy) the philosophical system of the Stoics following the teachings of the ancient Greek philosopher Zeno
+16139,Stoker Bram_Stoker Abraham_Stoker,Irish writer of the horror novel about Dracula (1847-1912)
+16140,Stokesia genus_Stokesia,one species: stokes' aster
+16141,Stokowski Leopold_Stokowski Leopold_Antoni_Stanislaw_Stokowski,United States conductor (born in Britain) (1882-1977)
+16142,Stomatopoda order_Stomatopoda,mantis shrimps
+16143,Stone Edward_Durell_Stone,United States architect (1902-1978)
+16144,Stone Harlan_Fiske_Stone,United States jurist who served on the United States Supreme Court as chief justice (1872-1946)
+16145,Stone Harlan_Stone Harlan_F._Stone Harlan_Fisk_Stone,United States jurist who was named chief justice of the United States Supreme Court in 1941 by Franklin D. Roosevelt (1872-1946)
+16146,Stone I._F._Stone Isidor_Feinstein_Stone,United States journalist who advocated liberal causes (1907-1989)
+16147,Stone Lucy_Stone,United States feminist and suffragist (1818-1893)
+16148,Stone Oliver_Stone,United States filmmaker (born in 1946)
+16149,Stone_Age,(archeology) the earliest known period of human culture, characterized by the use of stone implements
+16150,Stonehenge,an ancient megalithic monument in southern England; probably used for ritual purposes
+16151,Stopes Marie_Stopes Marie_Charlotte_Carmichael_Stopes,birth-control campaigner who in 1921 opened the first birth control clinic in London (1880-1958)
+16152,Stoppard Tom_Stoppard Sir_Tom_Stoppard Thomas_Straussler,British dramatist (born in Czechoslovakia in 1937)
+16153,Storeria genus_Storeria,a genus of Colubridae
+16154,Stowe Harriet_Beecher_Stowe Harriet_Elizabeth_Beecher_Stowe,United States writer of a novel about slavery that advanced the abolitionists' cause (1811-1896)
+16155,Strachey Lytton_Strachey Giles_Lytton_Strachey,English biographer and leading member of the Bloomsbury Group (1880-1932)
+16156,Stradavarius Strad,a violin made by Antonio Stradivari or a member of his family
+16157,Stradivari Antonio_Stradivari Stradivarius Antonius_Stradivarius,Italian violin maker who developed the modern violin and created violins of unequaled tonal quality (1644?-1737)
+16158,Strait_of_Dover Strait_of_Calais Pas_de_Calais,the strait between the English Channel and the North Sea; shortest distance between England and the European continent
+16159,Strait_of_Georgia,the strait separating Vancouver Island from the Canadian mainland
+16160,Strait_of_Gibraltar,the strait between Spain and Africa
+16161,Strait_of_Hormuz Strait_of_Ormuz,a strategically important strait linking the Persian Gulf and the Gulf of Oman
+16162,Strait_of_Magellan,the strait separating South America from Tierra del Fuego and other islands to the south of the continent; discovered by Ferdinand Magellan in 1520; an important route around South America before the Panama Canal was built
+16163,Strait_of_Malacca,the strait between the Malay Peninsula and Sumatra; it connects the Pacific Ocean to the east with the Indian Ocean to the west and is an important shipping lane
+16164,Strait_of_Messina,the strait separating Sicily from the tip of Italy
+16165,Strand,a street in west central London famous for its theaters and hotels
+16166,Strasberg Lee_Strasberg Israel_Strassberg,United States actor and film director (born in Austria) who was a leader in developing method acting in the United States (1901-1982)
+16167,Strasbourg Strassburg,city on the Rhine in eastern France near the German border; an inland port
+16168,Strategic_Arms_Limitation_Talks SALT,negotiations between the United States and the Union of Soviet Socialist Republics opened in 1969 in Helsinki designed to limit both countries' stock of nuclear weapons
+16169,Stratford-on-Avon Stratford-upon-Avon,a town in central England on the River Avon; birthplace (and burial place) of William Shakespeare
+16170,Strauss Johann_Strauss Strauss_the_Elder,Austrian composer of waltzes (1804-1849)
+16171,Strauss Johann_Strauss Strauss_the_Younger,Austrian composer and son of Strauss the Elder; composed many famous waltzes and became known as the `waltz king' (1825-1899)
+16172,Strauss Richard_Strauss,German composer of many operas; collaborated with librettist Hugo von Hoffmannsthal to produce several operas (1864-1949)
+16173,Stravinsky,the music of Stravinsky; "Stravinsky no longer causes riots in the streets"
+16174,Stravinsky Igor_Stravinsky Igor_Fyodorovich_Stravinsky,composer who was born in Russia but lived in the United States after 1939 (1882-1971)
+16175,Streep Meryl_Streep,United States film actress (born in 1949)
+16176,Streisand Barbra_Streisand Barbra_Joan_Streisand,United States singer and actress (born in 1942)
+16177,Strekelia genus_Strekelia,a monocotyledonous genus of the amaryllis family
+16178,Strelitzia genus_Strelitzia,small genus of large perennial evergreen herbs having leaves resembling those of banana plants; sometimes placed in family Musaceae
+16179,Strelitziaceae family_Strelitziaceae strelitzia_family,woody plants with erect stems of tropical South America and South Africa and Madagascar; in some classifications included in the family Musaceae
+16180,Strepera genus_Strepera,bell magpies
+16181,Strepsirhini suborder_Strepsirhini,in some classifications either coextensive with the Lemuroidea or comprising the true lemurs
+16182,Streptococcus_anhemolyticus,a species of bacteria
+16183,Streptomyces_erythreus,source of the antibiotic erythromycin
+16184,Streptomyces_griseus,source of the antibiotic streptomycin
+16185,Streptomycetaceae family_Streptomycetaceae,higher bacteria typically aerobic soil saprophytes
+16186,Streptopelia genus_Streptopelia,turtledoves
+16187,Streptopelia_turtur,the common European wild dove noted for its plaintive cooing
+16188,Streptosolen genus_Streptosolen,one species: marmalade bush
+16189,Strickland William_Strickland,United States architect and student of Latrobe (1787-1854)
+16190,Strigidae family_Strigidae,a family of nocturnal birds of the order Strigiformes
+16191,Strigiformes order_Strigiformes,owls
+16192,Strindberg August_Strindberg Johan_August_Strindberg,Swedish dramatist and novelist (1849-1912)
+16193,Strix genus_Strix,owls lacking ear tufts
+16194,Strobilomyces genus_Strobilomyces,fungi similar to Boletus but with a shaggy scaly cap
+16195,Stroheim Erich_von_Stroheim,United States film actor (born in Austria) (1885-1957)
+16196,Stromateidae family_Stromateidae,butterfishes: harvest fishes; dollar fishes
+16197,Strombidae family_Strombidae,the family of conchs
+16198,Strombus genus_Strombus,type genus of the family Strombidae
+16199,Strongylodon genus_Strongylodon,genus of Polynesian or southeastern Asian shrubs or vines
+16200,Strophanthus_kombe,plant that is a source of strophanthin
+16201,Stropharia genus_Stropharia ring-stalked_fungus,genus of gill fungi with brown spores that is closely related to Agaricus; here placed in its own family Strophariaceae
+16202,Stropharia_ambigua,a gilled fungus with a long stalk and a yellow slimy cap from which fragments of the broken veil hang; gills are initially white but become dark brown as spores are released
+16203,Stropharia_hornemannii,a gilled fungus with a large slimy purple or olive cap; gills become purple with age; the stalk is long and richly decorated with pieces of the white sheath that extends up to a ring
+16204,Stropharia_rugoso-annulata,a large gilled fungus with a broad cap and a long stalk; the cap is dark brown; the white gills turn dark purplish brown with age; edible and choice
+16205,Strophariaceae family_Strophariaceae,sometimes included in family Agaricaceae
+16206,Struthio genus_Struthio,type genus of the Struthionidae: African ostriches
+16207,Struthionidae family_Struthionidae,tall terrestrial birds: ostriches
+16208,Struthioniformes order_Struthioniformes,a ratite bird order: ostriches and related extinct birds; known from the Pleistocene onward
+16209,Strymon genus_Strymon,large and widely distributed genus of hairstreak butterflies
+16210,Strymon_melinus,larvae are pests of various economic plants
+16211,Stuart,a member of the royal family that ruled Scotland and England
+16212,Stuart,the royal family that ruled Scotland from 1371-1714 and ruled England from 1603 to 1649 and again from 1660 to 1714
+16213,Stuart Gilbert_Stuart Gilbert_Charles_Stuart,United States painter best known for his portraits of George Washington (1755-1828)
+16214,Stubbs William_Stubbs,English historian noted for his constitutional history of medieval England (1825-1901)
+16215,Sturnella genus_Sturnella,a genus of passerine birds including the meadowlarks
+16216,Sturnidae family_Sturnidae,Old World starlings
+16217,Sturnus genus_Sturnus,type genus of the Sturnidae: common starlings
+16218,Stuttgart,a city in southwestern Germany famous for innovative architecture
+16219,Stuyvesant Peter_Stuyvesant Petrus_Stuyvesant,the last Dutch colonial administrator of New Netherland; in 1664 he was forced to surrender the colony to England (1592-1672)
+16220,Stylomecon genus_Stylomecon,one species: wind poppy
+16221,Stylophorum genus_Stylophorum,wood poppies
+16222,Styphelia genus_Styphelia,Australian heathlike shrubs
+16223,Styracaceae family_Styracaceae storax_family styrax_family,a widely distributed family of shrubs and trees of order Ebenales
+16224,Styrofoam,a light resilient foam of polystyrene
+16225,Styron William_Styron,United States writer best known for his novels (born in 1925)
+16226,Styx River_Styx,(Greek mythology) a river in Hades across which Charon carried dead souls
+16227,Sub-Saharan_Africa Black_Africa,the region of Africa to the south of the Sahara Desert
+16228,Subularia genus_Subularia,small genus of herbs of north temperate regions and mountains of tropical Africa
+16229,Succoth Sukkoth Succos Feast_of_Booths Feast_of_Tabernacles Tabernacles,a major Jewish festival beginning on the eve of the 15th of Tishri and commemorating the shelter of the Israelites during their 40 years in the wilderness
+16230,Suckling Sir_John_Suckling,English poet and courtier (1609-1642)
+16231,Sucre,the judicial capital and seat of the judiciary in Bolivia
+16232,Sudan Republic_of_the_Sudan Soudan,a republic in northeastern Africa on the Red Sea; achieved independence from Egypt and the United Kingdom in 1956
+16233,Sudan Soudan,a region of northern Africa to the south of the Sahara and Libyan deserts; extends from the Atlantic to the Red Sea
+16234,Sudanese,a native or inhabitant of Sudan
+16235,Sudanese_monetary_unit,monetary unit in the Sudan
+16236,Sudanese_pound pound,the basic unit of money in the Sudan; equal to 100 piasters
+16237,Sudbury,a city in south central Canada in Ontario; a major nickel mining center
+16238,Sue Eugene_Sue,French writer whose novels described the sordid side of city life (1804-1857)
+16239,Suez,a city in northeastern Egypt at the head of the Gulf of Suez and at the southern end of the Suez Canal
+16240,Suez_Canal,a ship canal in northeastern Egypt linking the Red Sea with the Mediterranean Sea
+16241,Sufi,a Muslim who represents the mystical dimension of Islam; a Muslim who seeks direct experience of Allah; mainly in Iran
+16242,Sufism,Islamic mysticism
+16243,Suharto,Indonesian statesman who seized power from Sukarno in 1967 (born in 1921)
+16244,Suidae family_Suidae,pigs; hogs; boars
+16245,Suillus genus_Suillus,a genus of fungi belonging to the family Boletaceae
+16246,Suillus_albivelatus,a short squat edible fungus with a reddish brown cap and white stalk; fruits under pines in the spring
+16247,Sukarno Achmad_Sukarno,Indonesian statesman who obtained the independence of Indonesia from the Netherlands in 1949 and served as president until ousted by Suharto in a coup d'etat (1901-1970)
+16248,Sukur,a Chadic language spoken south of Lake Chad
+16249,Sula genus_Sula,type genus of the Sulidae
+16250,Sulidae family_Sulidae,gannets and boobies
+16251,Sulla Lucius_Cornelius_Sulla_Felix,Roman general and dictator (138-78 BC)
+16252,Sullivan Anne_Sullivan Anne_Mansfield_Sullivan,United States educator who was the teacher and lifelong companion of Helen Keller (1866-1936)
+16253,Sullivan Arthur_Sullivan Arthur_Seymour_Sullivan Sir_Arthur_Sullivan,English composer of operettas who collaborated with the librettist William Gilbert (1842-1900)
+16254,Sullivan Ed_Sullivan Edward_Vincent_Sullivan,United States host on a well known television variety show (1902-1974)
+16255,Sullivan Harry_Stack_Sullivan,United States psychiatrist (1892-1949)
+16256,Sullivan Louis_Sullivan Louis_Henry_Sullivan Louis_Henri_Sullivan,United States architect known for his steel framed skyscrapers and for coining the phrase `form follows function' (1856-1924)
+16257,Sully Duc_de_Sully Maxmilien_de_Bethune,French statesman (1560-1641)
+16258,Sully Thomas_Sully,United States painter (born in England) of portraits and historical scenes (1783-1872)
+16259,Sumatra,a mountainous island in western Indonesia
+16260,Sumatran,a native or inhabitant of Sumatra
+16261,Sumer,an area in the southern region of Babylonia in present-day Iraq; site of the Sumerian civilization of city-states that flowered during the third millennium BC
+16262,Sumerian,a member of a people who inhabited ancient Sumer
+16263,Sumerology,the archeology of ancient Sumerians
+16264,Sumner William_Graham_Sumner,United States sociologist (1840-1910)
+16265,Sun_City,a residential suburb of Phoenix
+16266,Sun_River,a river in western Montana that flows south and east to join the Missouri River
+16267,Sun_Valley,a winter sports resort in south central Idaho
+16268,Sun_Yat-sen Sun_Yixian,Chinese statesman who organized the Kuomintang and led the revolution that overthrew the Manchu dynasty in 1911 and 1912 (1866-1925)
+16269,Sunbelt,states in the south and southwest that have a warm climate and tend to be politically conservative
+16270,Sunda_Islands,a chain of islands in the western Malay Archipelago
+16271,Sundacarpus genus_Sundacarpus,one species
+16272,Sundacarpus_amara Prumnopitys_amara Podocarpus_amara,a large fast-growing monoecious tropical evergreen tree having large glossy lanceolate leaves; of rain forests of Sumatra and Philippines to northern Queensland
+16273,Sundanese,the Indonesian language spoken on West Java
+16274,Sunday Billy_Sunday William_Ashley_Sunday,United States evangelist (1862-1935)
+16275,Sunday Lord's_Day Dominicus Sun,first day of the week; observed as a day of rest and worship by most Christians
+16276,Sunday_best Sunday_clothes,the best attire you have which is worn to church on Sunday
+16277,Sunday_school Sabbath_school,school meeting on Sundays for religious instruction
+16278,Sunderland,a port and industrial city in northeastern England
+16279,Sung Sung_dynasty Song Song_dynasty,the imperial dynasty of China from 960 to 1279; noted for art and literature and philosophy
+16280,Sunnah Sunna hadith,(Islam) the way of life prescribed as normative for Muslims on the basis of the teachings and practices of Muhammad and interpretations of the Koran
+16281,Sunni Sunni_Islam,one of the two main branches of orthodox Islam
+16282,Sunnite Sunni Sunni_Muslim,a member of the branch of Islam that accepts the first four caliphs as rightful successors to Muhammad
+16283,Superfund_program Superfund,the federal government's program to locate and investigate and clean up the worst uncontrolled and abandoned toxic waste sites nationwide; administered by the Environmental Protection Agency; "some have intimated that the Superfund's money may have turned into a political slush fund"
+16284,Superior,a town in northwest Wisconsin on Lake Superior across from Duluth
+16285,Supreme_Allied_Commander_Atlantic SACLANT,commanding officer of ACLANT; a general of the United States Army nominated by the President of the United States and approved by the North Atlantic Council
+16286,Supreme_Allied_Commander_Europe SACEUR,commanding officer of ACE; NATO's senior military commander in Europe
+16287,Supreme_Court Supreme_Court_of_the_United_States United_States_Supreme_Court,the highest federal court in the United States; has final appellate jurisdiction and has jurisdiction over all other courts in the nation
+16288,Supreme_Headquarters_Allied_Powers_Europe SHAPE,the supreme headquarters that advises NATO on military matters and oversees all aspects of the Allied Command Europe
+16289,Sur Tyre,a port in southern Lebanon on the Mediterranean Sea; formerly a major Phoenician seaport famous for silks
+16290,Surgeon_General,the head of the United States Public Health Service
+16291,Surgeon_General,the senior medical officer in an Army or Navy
+16292,Suricata genus_Suricata,meerkats
+16293,Surinam_cherry pitanga Eugenia_uniflora,Brazilian tree with spicy red fruit; often cultivated in California and Florida
+16294,Surinam_toad Pipa_pipa Pipa_americana,a South American toad; incubates its young in pits in the skin of its back
+16295,Suriname Republic_of_Suriname Surinam Dutch_Guiana Netherlands_Guiana,a republic in northeastern South America on the Atlantic; achieved independence from the Netherlands in 1975
+16296,Suriname_River Surinam_River,a river in Suriname that flows northward to the Atlantic
+16297,Surinamese_monetary_unit,monetary unit in Suriname
+16298,Surnia genus_Surnia,a genus of hawk-like owls
+16299,Surrey,a county in southeastern England on the Thames
+16300,Surya,an important god of later Hinduism; the sun god or the sun itself worshipped as the source of warmth and light
+16301,Sus genus_Sus,type genus of the Suidae
+16302,Susan_B_Anthony_dollar,a United States coin worth one dollar
+16303,Susanna Book_of_Susanna,an Apocryphal book consisting of text added to the Book of Daniel
+16304,Susquehanna Susquehanna_River,a river in the northeastern United States that rises in New York and flows southward through Pennsylvania and Maryland into Chesapeake Bay
+16305,Sussex,a county in southern England on the English Channel; formerly an Anglo-Saxon kingdom that was captured by Wessex in the 9th century
+16306,Sussex_spaniel,an English breed with short legs and a golden liver-colored coat
+16307,Sutherland Joan_Sutherland Dame_Joan_Sutherland,Australian operatic soprano (born in 1926)
+16308,Suva,the capital and largest city of Fiji (on Viti Levu island)
+16309,Svalbard,a Norwegian archipelago in the Arctic Ocean
+16310,Svengali,someone (usually maleficent) who tries to persuade or force another person to do his bidding
+16311,Svengali,the musician in a novel by George du Maurier who controls Trilby's singing hypnotically
+16312,Sverdrup Otto_Neumann_Sverdrup,Norwegian explorer who led expeditions into the Arctic (1855-1930)
+16313,Swahili,the most widely spoken Bantu languages; the official language of Kenya and Tanzania and widely used as a lingua franca in east and central Africa
+16314,Swainsona genus_Swainsona,a genus of Australian herbs and subshrubs: darling peas
+16315,Swammerdam Jan_Swammerdam,Dutch naturalist and microscopist who proposed a classification of insects and who was among the first to recognize cells in animals and was the first to see red blood cells (1637-1680)
+16316,Swan_River_daisy Brachycome_Iberidifolia,western Australian annual much cultivated for its flower heads with white or bluish to violet or variegated rays
+16317,Swan_River_everlasting rhodanthe Rhodanthe_manglesii Helipterum_manglesii,Australian annual everlasting having light pink nodding flower heads; sometimes placed in genus Helipterum
+16318,Swansea,a port city in southern Wales on an inlet of the Bristol Channel
+16319,Swanson Gloria_Swanson Gloria_May_Josephine_Svensson,United States actress in many silent films (1899-1983)
+16320,Swazi,a member of a southeast African people living in Swaziland and adjacent areas
+16321,Swazi,a Bantu language closely related to Zulu
+16322,Swaziland Kingdom_of_Swaziland,a landlocked monarchy in southeastern Africa; member of the commonwealth that achieved independence from the United Kingdom in 1968
+16323,Swaziland_monetary_unit,monetary unit in Swaziland
+16324,Swede,a native or inhabitant of Sweden
+16325,Sweden Kingdom_of_Sweden Sverige,a Scandinavian kingdom in the eastern part of the Scandinavian Peninsula
+16326,Swedenborg Svedberg Emanuel_Swedenborg Emanuel_Svedberg,Swedish theologian (1688-1772)
+16327,Swedish,a Scandinavian language that is the official language of Sweden and one of two official languages of Finland
+16328,Swedish_iron,wrought iron of high purity made in Sweden
+16329,Swedish_krona krona,the basic unit of money in Sweden
+16330,Swedish_massage,massage combined with a system of active and passive exercises for the muscles and joints
+16331,Swedish_meatball,meatballs simmered in stock
+16332,Swedish_monetary_unit,monetary unit in Sweden
+16333,Swedish_rye_bread Swedish_rye,a moist aromatic yeast-raised bread made with rye flour and molasses and orange rind
+16334,Sweet Henry_Sweet,English phonetician; one of the founders of modern phonetics (1845-1912)
+16335,Swertia genus_Swertia,genus of herbs of mountains of North America and Eurasia and Africa
+16336,Swietinia genus_Swietinia,tropical American mahogany trees
+16337,Swift Gustavus_Franklin_Swift,United States meat-packer who began the use of refrigerated railroad cars (1839-1903)
+16338,Swift Jonathan_Swift Dean_Swift,an English satirist born in Ireland (1667-1745)
+16339,Swinburne Algernon_Charles_Swinburne,English poet (1837-1909)
+16340,Swiss Swiss_people,the natives or inhabitants of Switzerland
+16341,Swiss_canton,one of the cantons of Switzerland
+16342,Swiss_cheese,hard pale yellow cheese with many holes from Switzerland
+16343,Swiss_franc,the basic unit of money in Switzerland
+16344,Swiss_mountain_pine mountain_pine dwarf_mountain_pine mugho_pine mugo_pine Pinus_mugo,low shrubby pine of central Europe with short bright green needles in bunches of two
+16345,Swiss_pine Swiss_stone_pine arolla_pine cembra_nut_tree Pinus_cembra,large five-needled European pine; yields cembra nuts and a resinous exudate
+16346,Swiss_steak,steak braised in tomato and onion mixture
+16347,Switzerland Swiss_Confederation Suisse Schweiz Svizzera,a landlocked federal republic in central Europe
+16348,Sydenham Thomas_Sydenham English_Hippocrates,English physician (1624-1689)
+16349,Sydenham's_chorea Saint_Vitus_dance St._Vitus_dance,chorea occurring chiefly in children and associated with rheumatic fever
+16350,Sydney,the largest Australian city located in southeastern Australia on the Tasman Sea; state capital of New South Wales; Australia's chief port
+16351,Sydney_Harbor_Bridge,a steel arch bridge in Sydney, Australia
+16352,Sylvanus Silvanus,(Roman mythology) god of woods and fields and flocks; Pan is the Greek counterpart
+16353,Sylvester_II Gerbert,French pope from 999 to 1003 who was noted for his great learning (945-1003)
+16354,Sylviidae family_Sylviidae,in some classifications considered a subfamily (Sylviinae) of the family Muscicapidae: Old World (true) warblers; American kinglets and gnatcatchers
+16355,Sylviinae subfamily_Sylviinae,alternative classification for the Old World warblers
+16356,Sylvilagus genus_Sylvilagus,North American rabbits
+16357,Symbion_pandora,only known species of Cycliophora; lives symbiotically attached to a lobster's lip by an adhesive disk and feeding by means of a hairy mouth ring; its complex life cycle includes asexual and sexual phases
+16358,Symonds John_Addington_Symonds,English writer (1840-1893)
+16359,Symons Arthur_Symons,English poet (1865-1945)
+16360,Symphalangus genus_Symphalangus,used in some classifications for the siamangs
+16361,Symphoricarpos genus_Symphoricarpos,deciduous shrubs of North America and Central America and China
+16362,Symphyla class_Symphyla,small class of minute arthropods; unimportant except for the garden centipede
+16363,Symphytum genus_Symphytum,comfrey
+16364,Symplocaceae family_Symplocaceae sweetleaf_family,a dicotyledonous family of order Ebenales
+16365,Symplocarpus genus_Symplocarpus,one species: skunk cabbage
+16366,Symplocus genus_Symplocus,type and sole genus of Symplocaceae including sweetleaf
+16367,Synagrops genus_Synagrops,a genus of Serranidae
+16368,Synanceja genus_Synanceja,stonefishes
+16369,Synapsida subclass_Synapsida,extinct reptiles of the Permian to Jurassic considered ancestral to mammals
+16370,Synaptomys genus_Synaptomys,bog lemmings
+16371,Synchytriaceae family_Synchytriaceae,a fungus family of order Chytridiales
+16372,Synchytrium genus_Synchytrium,simple parasitic fungi including pond scum parasites
+16373,Synentognathi order_Synentognathi,order of fishes having spineless fins; needlefishes; sauries; flying fishes; halfbeaks
+16374,Synercus genus_Synercus tribe_synercus,Cape buffalo
+16375,Synge J._M._Synge John_Millington_Synge Edmund_John_Millington_Synge,Irish poet and playwright whose plays are based on rural Irish life (1871-1909)
+16376,Syngnathidae family_Syngnathidae,pipefishes
+16377,Syngnathus genus_Syngnathus,type genus of the family Syngnathidae
+16378,Syngonium genus_Syngonium,epiphytic or terrestrial climbing shrubs of Central and South America; used as ornamental houseplants for their velvety foliage
+16379,Synodontidae family_Synodontidae,soft-finned bottom-dwelling fishes
+16380,Synoptic_Gospels Synoptics,the first three Gospels which describe events in Christ's life from a similar point of view
+16381,Syracuse,a city in central New York
+16382,Syracuse Siracusa,a city in southeastern Sicily that was founded by Corinthians in the 8th century BC
+16383,Syracuse siege_of_Syracuse,the Roman siege of Syracuse (214-212 BC) was eventually won by the Romans who sacked the city (killing Archimedes)
+16384,Syracuse siege_of_Syracuse,the Athenian siege of Syracuse (415-413 BC) was eventually won by Syracuse
+16385,Syria Syrian_Arab_Republic,an Asian republic in the Middle East at the east end of the Mediterranean; site of some of the world's most ancient centers of civilization
+16386,Syrian,a native or inhabitant of Syria
+16387,Syrian_Desert,a desert of northern Arabia occupying western Iraq, southern Syria, eastern Jordan, and northern Saudi Arabia
+16388,Syrian_bear Ursus_arctos_syriacus,yellowish-grey Syrian brown bear
+16389,Syrian_monetary_unit,monetary unit in Syria
+16390,Syrian_pound pound,the basic unit of money in Syria; equal to 100 piasters
+16391,Syringa genus_Syringa,genus of Old World shrubs or low trees having fragrant flowers in showy panicles: lilacs
+16392,Syrrhaptes genus_Syrrhaptes,a genus of Pteroclididae
+16393,Systeme_International_d'Unites Systeme_International SI_system SI SI_unit International_System_of_Units International_System,a complete metric system of units of measurement for scientists; fundamental quantities are length (meter) and mass (kilogram) and time (second) and electric current (ampere) and temperature (kelvin) and amount of matter (mole) and luminous intensity (candela); "Today the United States is the only country in the world not totally committed to the Systeme International d'Unites"
+16394,Syzygium genus_Syzygium,a tropical evergreen tree of the myrtle family native to the East Indies but cultivated elsewhere
+16395,Szechwan Sichuan Szechuan Szechwan_province,a populous province of south central China
+16396,Szell George_Szell,United States conductor (born in Hungary) (1897-1970)
+16397,Szent-Gyorgyi Albert_Szent-Gyorgyi Albert_von_Szent-Gyorgyi,United States biochemist (born in Hungary) who was the first to isolate vitamin C (1893-1986)
+16398,Szilard Leo_Szilard,United States physicist and molecular biologist who helped develop the first atom bomb and later opposed the use of all nuclear weapons (1898-1964)
+16399,T t,the 20th letter of the Roman alphabet
+16400,T-bar_lift T-bar Alpine_lift,a surface lift where riders hold a bar and are pulled up the hill on their skis
+16401,T-bone_steak,small steak from the thin end of the short loin containing a T-shaped bone and small piece of tenderloin
+16402,T-junction,a junction where two roads or pipes etc. meet to form a T
+16403,T-man,a special law-enforcement agent of the United States Treasury
+16404,T-network,a circuit formed by two equal series circuits with a shunt between them
+16405,T-square,a square used by draftsmen to draw parallel lines
+16406,TNT trinitrotoluene,explosive consisting of a yellow crystalline compound that is a flammable toxic derivative of toluene
+16407,TV_dinner,a meal that is prepared in advance and frozen; can be heated and served
+16408,T_cell T_lymphocyte,a small lymphocyte developed in the thymus; it orchestrates the immune system's response to infected or malignant cells
+16409,Ta'ziyeh,(Islam) a form of Iranian musical pageant that is the theatrical expression of religious passion; based on the Battle of Kerbala and performed annually (in Farsi)
+16410,Tabanidae family_Tabanidae,horseflies
+16411,Tabasco,a Mexican state on the Gulf of Campeche
+16412,Tabasco Tabasco_sauce,very spicy sauce (trade name Tabasco) made from fully-aged red peppers
+16413,Tabernacle,(Judaism) a portable sanctuary in which the Jews carried the Ark of the Covenant on their exodus
+16414,Tabernacle Mormon_Tabernacle,the Mormon temple
+16415,Tabernaemontana genus_Tabernaemontana,evergreen tropical trees and shrubs with milky sap
+16416,Tabora,a city in western Tanzania
+16417,Tabriz,an ancient city in northwestern Iran; known for hot springs
+16418,Tabuk,a city in northwestern Saudi Arabia
+16419,Tacca genus_Tacca,genus of tropical plants with creeping rootstocks and small umbellate flowers
+16420,Taccaceae family_Taccaceae,small family of tropical herbs
+16421,Tachinidae family_Tachinidae,parasites on other insects
+16422,Tachyglossidae family_Tachyglossidae,echidnas
+16423,Tachyglossus genus_Tachyglossus,type genus of the family Tachyglossidae
+16424,Tachypleus genus_Tachypleus,a genus of Limulidae
+16425,Tacitus Publius_Cornelius_Tacitus Gaius_Cornelius_Tacitus,Roman historian who wrote major works on the history of the Roman Empire (56-120)
+16426,Tacoma,a city in west central Washington on an arm of Puget Sound to the south of Seattle
+16427,Tacoma_Narrows_Bridge,a suspension bridge across Puget Sound at Tacoma
+16428,Taconic_Mountains,a range of the Appalachian Mountains along the eastern border of New York with Connecticut, Massachusetts, and Vermont
+16429,Tadarida genus_Tadarida,freetail bats
+16430,Tadorna genus_Tadorna,sheldrakes
+16431,Taegu Tegu,a city in southeastern South Korea
+16432,Taeniidae family_Taeniidae,a family of Cestoda
+16433,Taft Lorado_Taft,United States sculptor (1860-1936)
+16434,Taft William_Howard_Taft President_Taft,27th President of the United States and later chief justice of the United States Supreme Court (1857-1930)
+16435,Tagalog,a member of a people native to the Philippines chiefly inhabiting central Luzon around and including Manila
+16436,Tagalog,the language of the Tagalog on which Filipino is based
+16437,Tageteste genus_Tagetes,marigolds
+16438,Tagore Rabindranath_Tagore Sir_Rabindranath_Tagore,Indian writer and philosopher whose poetry (based on traditional Hindu themes) pioneered the use of colloquial Bengali (1861-1941)
+16439,Tagus Tagus_River,a European river; flows into the North Atlantic
+16440,Tahiti,an island in the south Pacific; the most important island in French Polynesia; made famous by Robert Louis Stevenson and Paul Gauguin
+16441,Tahitian,a native or inhabitant of Tahiti
+16442,Tahitian,the Oceanic language spoken on Tahiti
+16443,Tai,the most widespread and best known of the Kadai family of languages
+16444,Tai_Dam Black_Tai,a branch of the Tai languages
+16445,Tai_Long Shan,a branch of the Tai languages
+16446,Tai_Lue Xishuangbanna_Dai,a branch of the Tai languages
+16447,Tai_Nuea Chinese_Shan Dehong_Dai,a branch of the Tai languages
+16448,Tai_Yuan Kam_Muang,a branch of the Tai languages
+16449,Taichung,a city in Taiwan
+16450,Taif,a city in western Saudi Arabia to the east of Mecca
+16451,Taimyr_Peninsula Taymyr_Peninsula,a peninsula in northern Siberia
+16452,Taipei Taipeh capital_of_Taiwan,the capital of Nationalist China; located in northern Taiwan
+16453,Taiwan China Nationalist_China Republic_of_China,a government on the island of Taiwan established in 1949 by Chiang Kai-shek after the conquest of mainland China by the Communists led by Mao Zedong
+16454,Taiwan Formosa,an island in southeastern Asia 100 miles off the coast of mainland China in the South China Sea
+16455,Taiwan_dollar,the basic unit of money in Taiwan
+16456,Taiwanese,a native or inhabitant of Taiwan
+16457,Taiyuan,an ancient city in northeastern China noted for coal mining and steel production
+16458,Taj_Mahal,beautiful mausoleum at Agra built by the Mogul emperor Shah Jahan (completed in 1649) in memory of his favorite wife
+16459,Tajik Tadzhik,a native or inhabitant of Tajikistan and neighboring areas of Uzbekistan and Afghanistan and China
+16460,Tajik Tadzhik,an ethnic group (mostly Moslem) living in Tajikistan and neighboring areas of Uzbekistan and Afghanistan and China
+16461,Tajiki Tajik Tadzhik,the Iranian language of the Tajik that is closely related to Farsi; spoken in Iran and Tajikistan
+16462,Tajikistan Republic_of_Tajikistan Tadzhikistan Tadzhik Tadjik Tajik,a landlocked mountainous republic in southeast central Asia to the north of Afghanistan; formerly an Asian soviet
+16463,Tajikistani_monetary_unit,monetary unit in Tajikistan
+16464,Takakkaw,a waterfall in southeastern British Columbia; the highest waterfall in Canada (1250 feet high)
+16465,Takayasu's_arteritis pulseless_disease,disorder characterized by the absence of a pulse in both arms and in the carotid arteries
+16466,Takelma,a member of a North American Indian people of southwestern Oregon
+16467,Takilman Takelma,a Penutian language spoken by the Takelma
+16468,Taklimakan_Desert Taklamakan_Desert,a desert in western China
+16469,Talbot Fox_Talbot William_Henry_Fox_Talbot,English inventor and pioneer in photography who published the first book illustrated with photographs (1800-1877)
+16470,Taliban Taleban,a fundamentalist Islamic militia; in 1995 the Taliban militia took over Afghanistan and in 1996 took Kabul and set up an Islamic government; "the Taliban enforced a strict Muslim code of behavior"
+16471,Talinum genus_Talinum,genus of mainly American more-or-less succulent herbs
+16472,Tallahassee capital_of_Florida,capital of the state of Florida; located in northern Florida
+16473,Tallapoosa Tallapoosa_River,river that rises in northwestern Georgia and flows southwest through central Alabama to join the Coosa River near Montgomery and form the Alabama River
+16474,Tallchief Maria_Tallchief,United States ballerina who promoted American ballet through tours and television appearances (born in 1925)
+16475,Talleyrand Charles_Maurice_de_Talleyrand,French statesman (1754-1838)
+16476,Tallinn Tallin capital_of_Estonia,a port city on the Gulf of Finland that is the capital and largest city of Estonia
+16477,Tallis Thomas_Tallis,English organist and composer of church and secular music; was granted a monopoly in music printing with William Byrd (1505-1585)
+16478,Talmud,the collection of ancient rabbinic writings on Jewish law and tradition (the Mishna and the Gemara) that constitute the basis of religious authority in Orthodox Judaism
+16479,Talmudic_literature,(Judaism) ancient rabbinical writings
+16480,Talpidae family_Talpidae,moles
+16481,Tamale,a city in northern Ghana
+16482,Tamaricaceae family_Tamaricaceae tamarisk_family,family of desert shrubs and trees (mostly halophytes and xerophytes)
+16483,Tamarindus genus_Tamarindus,widely cultivated tropical trees originally of Africa
+16484,Tamarix genus_Tamarix,genus of deciduous shrubs or small trees of eastern Mediterranean regions and tropical Asia
+16485,Tamerlane Tamburlaine Timur Timur_Lenk,Mongolian ruler of Samarkand who led his nomadic hordes to conquer an area from Turkey to Mongolia (1336-1405)
+16486,Tamias genus_Tamias,chipmunks of eastern North America
+16487,Tamiasciurus genus_Tamiasciurus,American red squirrels
+16488,Tamil,a member of the mixed Dravidian and Caucasian people of southern India and Sri Lanka
+16489,Tamil,the Dravidian language spoken since prehistoric times by the Tamil in southern India and Sri Lanka
+16490,Tamil_Nadu Madras,a state in southeastern India on the Bay of Bengal (south of Andhra Pradesh); formerly Madras
+16491,Tamm Igor_Tamm Igor_Yevgeneevich_Tamm,Russian physicist (1895-1971)
+16492,Tammany_Hall Tammany_Society Tammany,a political organization within the Democratic Party in New York City (late 1800's and early 1900's) seeking political control by corruption and bossism
+16493,Tammuz Thammuz,the tenth month of the civil year; the fourth month of the ecclesiastic year (in June and July)
+16494,Tampa,a resort city in western Florida; located on Tampa Bay on the Gulf of Mexico
+16495,Tampa_Bay,an arm of the Gulf of Mexico in west central Florida
+16496,Tampax,tampon used to absorb menstrual flow
+16497,Tampere Tammerfors,an industrial city in south central Finland
+16498,Tampico,a port city in eastern Mexico
+16499,Tamus genus_Tamus,a genus of tuberous vines of the family Dioscoreaceae; has twining stems and heart-shaped leaves and axillary racemes
+16500,Tanacetum genus_Tanacetum,a large genus of plants resembling chrysanthemums; comprises some plants often included in other genera especially genus Chrysanthemum
+16501,Tanakh Tanach Hebrew_Scripture,the Jewish scriptures which consist of three divisions--the Torah and the Prophets and the Writings
+16502,Tancred,Norman leader in the First Crusade who played an important role in the capture of Jerusalem (1078-1112)
+16503,Tandy Jessica_Tandy,United States actress (born in England) who made many stage appearances, often with her husband Hume Cronyn (1909-1994)
+16504,Taney Roger_Taney Roger_Brooke_Taney,United States jurist who served as chief justice of the United States Supreme Court; remembered for his ruling that slaves and their descendants have no rights as citizens (1777-1864)
+16505,Tang Tang_dynasty,the imperial dynasty of China from 618 to 907
+16506,Tanga,a port city in northeastern Tanzania on the Indian Ocean
+16507,Tanganyika,a former state in East Africa; united with Zanzibar in 1964 to form Tanzania
+16508,Tange Kenzo_Tange,Japanese architect (born in 1913)
+16509,Tangier Tangiers,a city of northern Morocco at the west end of the Strait of Gibraltar; "the first tangerines were shipped from Tangier to Europe in 1841"
+16510,Tangier_pea Tangier_peavine Lalthyrus_tingitanus,North African annual resembling the sweet pea having showy but odorless flowers
+16511,Tangshan,an industrial city of northeastern China in Hebei province
+16512,Tanguy Yves_Tanguy,United States surrealist painter (born in France) (1900-1955)
+16513,Tannenberg battle_of_Tannenberg,a battle in World War I (1914); decisive German victory over the Russians
+16514,Tanoan Tanoan_language,a family of North American Indian language spoken in southwestern United States
+16515,Tantalus,(Greek mythology) a wicked king and son of Zeus; condemned in Hades to stand in water that receded when he tried to drink and beneath fruit that receded when he reached for it
+16516,Tantilla genus_Tantilla,black-headed snakes
+16517,Tantra Tantrism,doctrine of enlightenment as the realization of the oneness of one's self and the visible world; combines elements of Hinduism and paganism including magical and mystical elements like mantras and mudras and erotic rites; especially influential in Tibet
+16518,Tantrism,movement within Buddhism combining elements of Hinduism and paganism
+16519,Tantrist,an adherent of Tantrism
+16520,Tanzania United_Republic_of_Tanzania,a republic in eastern Africa
+16521,Tanzanian,a native or inhabitant of Tanzania
+16522,Tanzanian_monetary_unit,monetary unit in Tanzania
+16523,Tanzanian_shilling shilling,the basic unit of money in Tanzania; equal to 100 cents
+16524,Tao,the ultimate principle of the universe
+16525,Taoism,a Chinese sect claiming to follow the teaching of Lao-tzu but incorporating pantheism and sorcery in addition to Taoism
+16526,Taoism,religion adhering to the teaching of Lao-tzu
+16527,Taoism Daoism,philosophical system developed by Lao-tzu and Chuang-tzu advocating a simple honest life and noninterference with the course of natural events
+16528,Taoism Hsuan_Chiao,popular Chinese philosophical system based in teachings of Lao-tzu but characterized by a pantheism of many gods and the practices of alchemy and divination and magic
+16529,Taoist Tao,an adherent of any branch of Taoism
+16530,Taoist_Trinity,the three pure ones; the three chief gods of Taoism
+16531,Taos,a member of the Pueblo people living in northern New Mexico
+16532,Taos,an artist colony in northern New Mexico
+16533,Tapiridae family_Tapiridae,tapirs and extinct related forms
+16534,Tapirus genus_Tapirus,type genus of the Tapiridae
+16535,Tappan Arthur_Tappan,United States abolitionist (1786-1865)
+16536,Tappan_Zee_Bridge,a cantilever bridge across the Hudson River
+16537,Tara,a village in eastern Ireland (northwest of Dublin); seat of Irish kings until 6th century
+16538,Tarabulus Tripoli Tarabulus_Ash-Sham Trablous,a port city and commercial center in northwestern Lebanon on the Mediterranean Sea
+16539,Taracahitian,a member of a group of peoples of Mexico
+16540,Tarahumara,a member of the Taracahitian people of north central Mexico
+16541,Tarantino Quentin_Tarantino Quentin_Jerome_Tarantino,United States filmmaker (born in 1963)
+16542,Tarawa Bairiki,national capital of Kiribati
+16543,Tarawa Makin Tarawa-Makin,battles in World War II in the Pacific (November 1943); United States Marines took the islands from the Japanese after bitter fighting
+16544,Taraxacum genus_Taraxacum,an asterid dicot genus of the family Compositae including dandelions
+16545,Tarbell Ida_Tarbell Ida_M._Tarbell Ida_Minerva_Tarbell,United States writer remembered for her muckraking investigations into industries in the early 20th century (1857-1944)
+16546,Tardigrada class_Tardigrada,in some classifications considered a separate phylum: microscopic arachnid-like invertebrates living in water or damp moss having 4 pairs of legs and instead of a mouth a pair of stylets or needlelike piercing organs connected with the pharynx
+16547,Tareekh_e_Kasas Movement_for_Revenge,an organization of Muslims in India who killed Hindus in September 2002; believed to have ties with Muslim terrorists in Pakistan
+16548,Taricha genus_Taricha,Pacific newts
+16549,Tarkovsky Andrei_Tarkovsky Andrei_Arsenevich_Tarkovsky,Russian filmmaker (1932-1986)
+16550,Tarquin Tarquin_the_Proud Tarquinius Tarquinius_Superbus Lucius_Tarquinius_Superbus,according to legend, the seventh and last Etruscan king of Rome who was expelled for his cruelty (reigned from 534 to 510 BC)
+16551,Tarrietia genus_Tarrietia,small genus of east Asian and Australian timber trees
+16552,Tarsiidae family_Tarsiidae,coextensive with the genus Tarsius: tarsiers
+16553,Tarsioidea suborder_Tarsioidea,in some classifications assigned to the suborder Prosimii
+16554,Tarsius genus_Tarsius,type and sole genus of the family Tarsiidae
+16555,Tarsius_glis,a variety of tarsier
+16556,Tarsius_syrichta,a variety of tarsier
+16557,Tartary Tatary,the vast geographical region of Europe and Asia that was controlled by the Mongols in the 13th and 14th centuries; "under Genghis Khan Tartary extended as far east as the Pacific Ocean"
+16558,Tartu,a city of southeastern Estonia that was a member of the Hanseatic League
+16559,Tartuffe Tartufe,a hypocrite who pretends to religious piety (after the protagonist in a play by Moliere)
+16560,Tarzan,(sometimes used ironically) a man of great strength and agility (after the hero of a series of novels by Edgar Rice Burroughs)
+16561,Tarzan Tarzan_of_the_Apes,a man raised by apes who was the hero of a series of novels by Edgar Rice Burroughs
+16562,Tashkent Taskent capital_of_Uzbek,the capital of Uzbekistan
+16563,Tashmit Tashmitum,consort of Nabu
+16564,Tasman Abel_Tasman Abel_Janszoon_Tasman,Dutch navigator who was the first European to discover Tasmania and New Zealand (1603-1659)
+16565,Tasman_Sea,an arm of the southern Pacific Ocean between southeastern Australia and New Zealand
+16566,Tasman_dwarf_pine Microstrobos_niphophilus,small shrub or Tasmania having short stiff branches
+16567,Tasmania,an Australian state on the island of Tasmania
+16568,Tasmania,an island off the southeastern coast of Australia
+16569,Tasmanian_devil ursine_dasyure Sarcophilus_hariisi,small ferocious carnivorous marsupial having a mostly black coat and long tail
+16570,Tasso Torquato_Tasso,Italian poet who wrote an epic poem about the capture of Jerusalem during the First Crusade (1544-1595)
+16571,Tatahumara,the Uto-Aztecan language of the Tatahumara
+16572,Tatar,a member of the Turkic-speaking people living from the Volga to the Ural Mountains (the name has been attributed to many other groups)
+16573,Tatar,the Turkic language spoken by the Tatar living from the Volga to the Ural Mountains
+16574,Tatar Tartar Mongol_Tatar,a member of the Mongolian people of central Asia who invaded Russia in the 13th century
+16575,Tate Allen_Tate John_Orley_Allen_Tate,United States poet and critic (1899-1979)
+16576,Tati Jacques_Tati Jacques_Tatischeff,French filmmaker (1908-1982)
+16577,Tatum Art_Tatum Arthur_Tatum,United States jazz pianist who was almost completely blind; his innovations influenced many other jazz musicians (1910-1956)
+16578,Tatum Edward_Lawrie_Tatum,United States biochemist who discovered how genes act by regulating definite chemical events (1909-1975)
+16579,Taurotragus genus_Taurotragus,African antelopes: elands
+16580,Taurus,a zodiacal constellation in the northern hemisphere near Orion; between Aries and Gemini
+16581,Taurus Bull,(astrology) a person who is born while the sun is in Taurus
+16582,Taurus Taurus_the_Bull Bull,the second sign of the zodiac; the sun is in this sign from about April 20 to May 20
+16583,Tautoga genus_Tautoga,tautogs
+16584,Tautogolabrus genus_Tautogolabrus,a genus of Labridae
+16585,Tawney Richard_Henry_Tawney,English economist remembered for his studies of the development of capitalism (1880-1962)
+16586,Taxaceae family_Taxaceae yew_family,sometimes classified as member of order Taxales
+16587,Taxales order_Taxales,coextensive with the family Taxaceae: yews
+16588,Taxidea genus_Taxidea,in some classifications considered a genus of subfamily Melinae
+16589,Taxodiaceae subfamily_Taxodiaceae redwood_family,coniferous trees; traditionally considered an independent family though recently included in Cupressaceae in some classification systems
+16590,Taxodium genus_Taxodium,bald cypress; swamp cypress
+16591,Taxopsida class_Taxopsida Taxophytina subdivision_Taxophytina,yews: in some systems classified as a class (Taxopsida) and in others as a subdivision (Taxophytina) used in some classifications for one of five subdivisions of Gymnospermophyta
+16592,Taxus genus_Taxus,yews
+16593,Tay,a branch of the Tai languages
+16594,Tay-Sachs_disease Tay-Sachs Sachs_disease infantile_amaurotic_idiocy,a hereditary disorder of lipid metabolism occurring most frequently in individuals of Jewish descent in eastern Europe; accumulation of lipids in nervous tissue results in death in early childhood
+16595,Tayalic Atayalic,a language spoken by a Malaysian people on Formosa
+16596,Tayassu genus_Tayassu genus_Pecari,type genus of the Tayassuidae
+16597,Tayassuidae family_Tayassuidae,peccaries
+16598,Taylor Deems_Taylor Joseph_Deems_Taylor,United States composer and music critic (1885-1966)
+16599,Taylor Elizabeth_Taylor,United States film actress (born in England) who was a childhood star; as an adult she often co-starred with Richard Burton (born in 1932)
+16600,Taylor Zachary_Taylor President_Taylor,12th President of the United States; died in office (1784-1850)
+16601,Tazir_crime,(Islam) minor crimes committed by Muslims; crimes that are not mentioned in the Koran so judges are free to punish the offender in any appropriate way; "in some Islamic nations Tazir crimes are set by legislation"
+16602,Tbilisi Tiflis capital_of_Georgia,the capital and largest city of Georgia on the Kura river
+16603,Tchaikovsky Peter_Tchaikovsky Peter_Ilich_Tchaikovsky Pyotr_Tchaikovsky Pyotr_Ilych_Tchaikovsky,important Russian composer whose works are noted for their expressive melodies (1840-1893)
+16604,Te_Deum,an ancient liturgical hymn
+16605,Te_Kanawa Dame_Kiri_Te_Kanawa Dame_Kiri_Janette_Te_Kanawa,New Zealand operatic soprano (born in 1944)
+16606,Teach Edward_Teach Thatch Edward_Thatch Blackbeard,an English pirate who operated in the Caribbean and off the Atlantic coast of North America (died in 1718)
+16607,Teamsters_Union,an industrial union of truck drivers and chauffeurs and warehouse workers
+16608,Teapot_Dome Teapot_Dome_scandal,a government scandal involving a former United States Navy oil reserve in Wyoming that was secretly leased to a private oil company in 1921; became symbolic of the scandals of the Harding administration
+16609,Teasdale Sara_Teasdale,United States poet (1884-1933)
+16610,Tebaldi Renata_Tebaldi,Italian operatic soprano (born in 1922)
+16611,Tebet Tevet,the fourth month of the civil year; the tenth month of the ecclesiastical year (in December and January)
+16612,Technology_Administration,an agency in the Department of Commerce that works with United States industries to promote competitiveness and maximize the impact of technology on economic growth
+16613,Tecophilaeacea family_Tecophilaeacea,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+16614,Tectaria genus_Tectaria,terrestrial or epilithic ferns of tropical rain forests
+16615,Tectona genus_Tectona,small genus of southeastern Asian tropics: teak
+16616,Tecumseh Tecumtha,a famous chief of the Shawnee who tried to unite Indian tribes against the increasing white settlement (1768-1813)
+16617,Ted Teddy_boy,a tough youth of 1950's and 1960's wearing Edwardian style clothes
+16618,Teflon polytetrafluoroethylene,a material used to coat cooking utensils and in industrial applications where sticking is to be avoided
+16619,Tegucigalpa Honduran_capital,the capital and largest city of Honduras
+16620,Teheran Tehran capital_of_Iran Iranian_capital,the capital and largest city of Iran; located in northern Iran
+16621,Teiidae family_Teiidae,whiptails; etc.
+16622,Teilhard_de_Chardin Pierre_Teilhard_de_Chardin,French paleontologist and philosopher (1881-1955)
+16623,Tel_Aviv Tel_Aviv-Yalo Tel_Aviv-Jaffa,the largest city and financial center of Israel; located in western Israel on the Mediterranean
+16624,Telanthera genus_Telanthera,used in former classifications systems; now included in genus Alternanthera
+16625,Telemann Georg_Philipp_Telemann,German baroque composer (1681-1767)
+16626,Teleostei subclass_Teleostei,large diverse group of bony fishes; includes most living species
+16627,Teleprompter,a prompter for television performers
+16628,Telescopium,a small constellation in the southern hemisphere near Ara
+16629,Tell William_Tell,a Swiss patriot who lived in the early 14th century and who was renowned for his skill as an archer; according to legend an Austrian governor compelled him to shoot an apple from his son's head with his crossbow (which he did successfully without mishap)
+16630,Teller Edward_Teller,United States physicist (born in Hungary) who worked on the first atom bomb and the first hydrogen bomb (1908-2003)
+16631,Tellima genus_Tellima,genus of hardy perennials with palmately lobed leaves and long racemes of small nodding five-petaled flowers; western North America
+16632,Tellus,(Roman mythology) goddess of the earth; protector of marriage and fertility; identified with Greek Gaea
+16633,Telopea genus_Telopea,Australian evergreen shrubs: waratahs
+16634,Telosporidia subclass_Telosporidia,parasitic sporozoans that form spores containing one or more infective sporozoites
+16635,Telugu,a member of the people in southeastern India (Andhra Pradesh) who speak the Telugu language
+16636,Telugu,a Dravidian language spoken by the Telugu in southeastern India
+16637,Temnospondyli order_Temnospondyli,formerly a suborder of Stegocephalia; large Carboniferous and Permian amphibians having vertebrae in which some elements remain separate
+16638,Temperate_Zone,the part of the Earth's surface between the Arctic Circle and the Tropic of Cancer or between the Antarctic Circle and the Tropic of Capricorn; characterized by temperate climate
+16639,Temple_of_Apollo Oracle_of_Apollo Delphic_oracle oracle_of_Delphi,(Greek mythology) the oracle at Delphi where a priestess supposedly delivered messages from Apollo to those who sought advice; the messages were usually obscure or ambiguous
+16640,Temple_of_Artemis,a large temple at Ephesus that was said to be one of the seven wonders of the ancient world
+16641,Temple_of_Jerusalem Temple_of_Solomon,any of three successive temples in Jerusalem that served as the primary center for Jewish worship; the first temple contained the Ark of the Covenant and was built by Solomon in the 10th century BC and destroyed by Nebuchadnezzar in 586 BC; the second was built in 515 BC and the third was an enlargement by Herod the Great in 20 BC that was destroyed by the Romans during a Jewish revolt in AD 70; all that remains is the Wailing Wall
+16642,Templetonia genus_Templetonia,genus of Australian shrubs or subshrubs: coral bush
+16643,Temuco,a city in central Chile to the south of Concepcion
+16644,Tenebrionidae family_Tenebrionidae,a family of arthropods including darkling beetles and mealworms
+16645,Tenerife,a Spanish island in the Atlantic off the northwestern coast of Africa; the largest of the Canary Islands
+16646,Tennessean Volunteer,a native or resident of Tennessee
+16647,Tennessee Tennessee_River,a river formed by the confluence of two other rivers near Knoxville; it follows a U-shaped course to become a tributary of the Ohio River in western Kentucky
+16648,Tennessee Volunteer_State TN Tenn.,a state in east central United States
+16649,Tennessee_walker Tennessee_walking_horse Walking_horse Plantation_walking_horse,a horse marked by stamina and trained to move at a fast running walk
+16650,Tenniel Sir_John_Tenniel,English cartoonist (1820-1914)
+16651,Tennyson Alfred_Tennyson First_Baron_Tennyson Alfred_Lord_Tennyson,Englishman and Victorian poet (1809-1892)
+16652,Tenoretic,trade name for an antihypertensive drug consisting of a fixed combination of atenolol and a diuretic
+16653,Tenrecidae family_Tenrecidae,tenrecs and extinct related forms
+16654,Tentaculata class_Tentaculata,ctenophores have retractile tentacles
+16655,Tenthredinidae family_Tenthredinidae,sawflies
+16656,Tenzing_Norgay,Sherpa mountaineer guide who with Sir Edmund Hillary was one of the first to attain the summit of Mount Everest (1914-1986)
+16657,Tephrosia genus_Tephrosia,genus of tropical and subtropical herbs or shrubs: hoary peas
+16658,Tepic,a city in west central Mexico
+16659,Tera Pidlimdi Yamaltu,a three-tone Chadic language
+16660,Terebella genus_Terebella,type genus of Terebellidae; tube-forming marine polychete worms with many filamentous tentacles
+16661,Terebellidae family_Terebellidae,marine burrowing or tube-forming polychete worms usually having long thick bodies
+16662,Teredinidae family_Teredinidae,shipworms
+16663,Terence Publius_Terentius_Afer,dramatist of ancient Rome (born in Greece) whose comedies were based on works by Menander (190?-159 BC)
+16664,Terengganu,sultanate and one of the 13 states of the Federation of Malaysia
+16665,Teresa Mother_Teresa Theresa Mother_Theresa Agnes_Gonxha_Bojaxhiu,Indian nun and missionary in the Roman Catholic Church (born of Albanian parents in what is now Macedonia); dedicated to helping the poor in India (1910-1997)
+16666,Teresa_of_Avila Saint_Teresa_of_Avila,Spanish mystic and religious reformer; author of religious classics and a Christian saint (1515-1582)
+16667,Tereshkova Valentina_Tereshkova Valentina_Vladmirovna_Tereshkova,Soviet cosmonaut who was the first woman in space (born in 1937)
+16668,Termes genus_Termes,type genus of the Termitidae
+16669,Termitidae family_Termitidae,termites
+16670,Terpsichore,(Greek mythology) the Muse of the dance and of choral song
+16671,Terrapene genus_Terrapene,box turtles
+16672,Territorial_Army,British unit of nonprofessional soldiers organized for the defense of Great Britain
+16673,Terry Dame_Ellen_Terry Dame_Alice_Ellen_Terry,English actress (1847-1928)
+16674,Tertiary Tertiary_period,from 63 million to 2 million years ago
+16675,Tertry battle_of_Tertry,a battle in France in 687 among the descendants of Clovis
+16676,Tertullian Quintus_Septimius_Florens_Tertullianus,Carthaginian theologian whose writing influenced early Christian theology (160-230)
+16677,Tesla Nikola_Tesla,United States electrical engineer and inventor (born in Croatia but of Serbian descent) who discovered the principles of alternating currents and developed the first alternating-current induction motor and the Tesla coil and several forms of oscillators (1856-1943)
+16678,Tesla_coil,a step-up transformer with an air core; used to produce high voltages at high frequencies
+16679,Testacea order_Testacea,testacean rhizopods
+16680,Testament,either of the two main parts of the Christian Bible
+16681,Testudinidae family_Testudinidae,land tortoises
+16682,Testudo genus_Testudo,type genus of the Testudinidae
+16683,Tet,the New Year in Vietnam; observed for three days after the first full moon after January 20th
+16684,Tethys,(Greek mythology) a Titaness and sea goddess; wife of Oceanus
+16685,Teton Lakota Teton_Sioux Teton_Dakota,a member of the large western branch of Sioux people which was made up of several groups that lived on the plains
+16686,Teton_Range,a mountain range in northwest Wyoming; contains the Grand Teton
+16687,Tetraclinis genus_Tetraclinis,sandarac tree
+16688,Tetragonia genus_Tetragonia,New Zealand spinach
+16689,Tetragonurus genus_Tetragonurus,a genus of Stromateidae
+16690,Tetragrammaton,four Hebrew letters usually transliterated as YHWH (Yahweh) or JHVH (Jehovah) signifying the Hebrew name for God which the Jews regarded as too holy to pronounce
+16691,Tetraneuris genus_Tetraneuris,genus of hairy yellow-flowered plants of the western United States
+16692,Tetranychidae family_Tetranychidae,plant-feeding mites
+16693,Tetrao genus_Tetrao,type genus of the Tetraonidae: capercaillies
+16694,Tetraodontidae family_Tetraodontidae,puffers
+16695,Tetraonidae family_Tetraonidae,grouse
+16696,Tetrapturus genus_Tetrapturus,a genus of Istiophoridae
+16697,Tetrazzini,a pasta dish with cream sauce and mushrooms
+16698,Tettigoniidae family_Tettigoniidae,long-horned grasshoppers; katydids
+16699,Teucrium genus_Teucrium,large widely distributed genus of perennial herbs or shrubs or subshrubs; native to Mediterranean region to western Asia
+16700,Teutoburger_Wald battle_of_Teutoburger_Wald,a battle in 9 AD in which the Germans under Arminius annihilated three Roman Legions
+16701,Teuton,someone (especially a German) who speaks a Germanic language
+16702,Teuton,a member of the ancient Germanic people who migrated from Jutland to southern Gaul and were annihilated by the Romans
+16703,Teutonic_deity,(German mythology) a deity worshipped by the ancient Teutons
+16704,Teutonist,a specialist in the history of the Teutonic people or language (especially with respect to the Teutonic influence on the history of England)
+16705,Tewkesbury battle_of_Tewkesbury,the final battle of the War of the Roses in 1471 in which Edward IV defeated the Lancastrians
+16706,Texan,a native or resident of Texas
+16707,Texarkana,a town in northeast Texas adjacent to Texarkana, Arkansas
+16708,Texarkana,a town in southwest Arkansas on the Texas border adjacent to Texarkana, Texas
+16709,Texas Lone-Star_State TX Tex.,the second largest state; located in southwestern United States on the Gulf of Mexico
+16710,Texas_Independence_Day March_2,Texans celebrate the anniversary of Texas' declaration of independence from Mexico in 1836
+16711,Texas_Ranger Ranger,a member of the Texas state highway patrol; formerly a mounted lawman who maintained order on the frontier
+16712,Texas_bluebonnet Lupinus_texensis,closely resembles Lupinus subcarnosus; southwestern United States (Texas)
+16713,Texas_chachalaca Ortilis_vetula_macalli,of Mexico and Texas
+16714,Texas_fever,an infectious disease of cattle transmitted by the cattle tick
+16715,Texas_horned_lizard Phrynosoma_cornutum,of arid and semiarid open country
+16716,Texas_leaguer,(baseball) a fly ball that falls between and infielder and an outfielder
+16717,Texas_purple_spike Hexalectris_warnockii,orchid with slender nearly leafless reddish-brown stems with loose racemes of reddish-brown flowers; of open brushy woods of southeastern Arizona and central Texas
+16718,Texas_snowbell Texas_snowbells Styrax_texana,styrax of southwestern United States; a threatened species
+16719,Texas_star Lindheimera_texana,Texas annual with coarsely pinnatifid leaves; cultivated for its showy radiate yellow flower heads
+16720,Texas_storksbill Erodium_texanum,of prairies and desert areas of southwestern United States and Mexico
+16721,Texas_toad Bufo_speciosus,nocturnal burrowing toad of mesquite woodland and prairies of the United States southwest
+16722,Texas_tortoise,close relative to the desert tortoise; may be reclassified as a member of genus Xerobates
+16723,Thackeray William_Makepeace_Thackeray,English writer (born in India) (1811-1863)
+16724,Thai Siamese Central_Thai,a branch of the Tai languages
+16725,Thai Tai Siamese,a native or inhabitant of Thailand
+16726,Thai_monetary_unit,monetary unit in Thailand
+16727,Thailand Kingdom_of_Thailand Siam,a country of southeastern Asia that extends southward along the Isthmus of Kra to the Malay Peninsula; "Thailand is the official name of the former Siam"
+16728,Thalarctos genus_Thalarctos,polar bears; in some classifications not a separate genus from Ursus
+16729,Thalassoma genus_Thalassoma,a genus of Labridae
+16730,Thales Thales_of_Miletus,a presocratic Greek philosopher and astronomer (who predicted an eclipse in 585 BC) who was said by Aristotle to be the founder of physical science; he held that all things originated in water (624-546 BC)
+16731,Thalia,(Greek mythology) the Muse of comedy and pastoral poetry
+16732,Thalia,(Greek mythology) one of the three Graces
+16733,Thaliacea class_Thaliacea,small class of free-swimming tunicates; sometimes classified as an order
+16734,Thalictrum genus_Thalictrum,widely distributed genus of perennial herbs: meadow rue
+16735,Thallophyta,used only in former classifications: comprising what is now considered a heterogeneous assemblage of flowerless and seedless organisms: algae; bacteria; fungi; lichens
+16736,Thames River_Thames Thames_River,the longest river in England; flows eastward through London to the North Sea
+16737,Thamnophilus genus_Thamnophilus,a genus of Formicariidae
+16738,Thamnophis genus_Thamnophis,garter snakes
+16739,Thanatos,(Greek mythology) the Greek personification of death; son of Nyx
+16740,Thanksgiving Thanksgiving_Day,fourth Thursday in November in the United States; second Monday in October in Canada; commemorates a feast held in 1621 by the Pilgrims and the Wampanoag
+16741,Thar_Desert Great_Indian_Desert,a desert to the east of the Indus River in northwestern India and southeastern Pakistan
+16742,Tharp Twyla_Tharp,innovative United States dancer and choreographer (born in 1941)
+16743,Thatcher Margaret_Thatcher Margaret_Hilda_Thatcher Baroness_Thatcher_of_Kesteven Iron_Lady,British stateswoman; first woman to serve as Prime Minister (born in 1925)
+16744,Thatcherism,(England) the political policy of Margaret Thatcher
+16745,Thatcherite,an advocate of Thatcherism
+16746,The_Hague 's_Gravenhage Den_Haag,the site of the royal residence and the de facto capital in the western part of the Netherlands; seat of the International Court of Justice
+16747,The_Star-Spangled_Banner,a poem written by Francis Scott Key during the War of 1812 was set to music and adopted by Congress in 1931 as the national anthem of the United States
+16748,Thea Theia,(Greek mythology) the Titaness who was mother of Helios and Selene and Eos in ancient mythology
+16749,Theaceae family_Theaceae tea_family,a family of trees and shrubs of the order Parietales
+16750,Theban,an Egyptian inhabitant of ancient Thebes
+16751,Theban,a Greek inhabitant of ancient Thebes
+16752,Thebes,an ancient Egyptian city on the Nile River that flourished from the 22nd century BC to the 18th century BC; today the archeological remains include many splendid temples and tombs
+16753,Thebes,an ancient Greek city in Boeotia destroyed by Alexander the Great in 336 BC
+16754,Thecodontia order_Thecodontia,extinct terrestrial reptiles having teeth set in sockets; of the late Permian to Triassic
+16755,Thelephoraceae family_Thelephoraceae,fungi having leathery or membranous sporophores
+16756,Thelypteridaceae family_Thelypteridaceae,genera Thelypteris, Phegopteris, and others
+16757,Thelypteris genus_Thelypteris,marsh ferns: in some classification systems considered part of genus Dryopteris in family Dryopteridaceae
+16758,Thematic_Apperception_Test TAT,a projective technique using black-and-white pictures; subjects tell a story about each picture
+16759,Themis,(Greek mythology) the Titaness who was goddess of justice in ancient mythology
+16760,Themistocles,Athenian statesman who persuaded Athens to build a navy and then led it to victory over the Persians (527-460 BC)
+16761,Theobroma genus_Theobroma,cacao plants
+16762,Theodore_Roosevelt_Memorial_National_Park,a national park in North Dakota that includes the site of former President Theodore Roosevelt's ranch
+16763,Theodosius Theodosius_I Theodosius_the_Great Flavius_Theodosius,the last emperor of a united Roman Empire, he took control of the eastern empire and ended the war with the Visigoths; he became a Christian and in 391 banned all forms of pagan worship (346-395)
+16764,Theophrastaceae family_Theophrastaceae,family of mainly tropical American trees and shrubs similar to those of the Myrsinaceae; often included in the Myrsinaceae
+16765,Theophrastus,Greek philosopher who was a student of Aristotle and who succeeded Aristotle as the leader of the Peripatetics (371-287 BC)
+16766,Theraphosidae family_Theraphosidae,large tropical spiders; tarantulas
+16767,Therapsida order_Therapsida,extinct mammal-like reptiles found inhabiting all continents from the mid Permian to late Triassic
+16768,Theravada Theravada_Buddhism,one of two great schools of Buddhist doctrine emphasizing personal salvation through your own efforts; a conservative form of Buddhism that adheres to Pali scriptures and the non-theistic ideal of self purification to nirvana; the dominant religion of Sri Lanka (Ceylon) and Myanmar (Burma) and Thailand and Laos and Cambodia
+16769,Theridiidae family_Theridiidae,a family of comb-footed spiders
+16770,Thermidor,eleventh month of the Revolutionary calendar (July and August); the month of heat
+16771,Thermobia genus_Thermobia,a genus of Lepismatidae
+16772,Thermopsis genus_Thermopsis,genus of American and Asiatic showy rhizomatous herbs: bush peas
+16773,Thermopylae battle_of_Thermopylae,a famous battle in 480 BC; a Greek army under Leonidas was annihilated by the Persians who were trying to conquer Greece
+16774,Theropoda suborder_Theropoda,carnivorous saurischian dinosaurs with short forelimbs; Jurassic and Cretaceous
+16775,Theseus,(Greek mythology) a hero and king of Athens who was noted for his many great deeds: killed Procrustes and the Minotaur and defeated the Amazons and united Attica
+16776,Thespesia genus_Thespesia,a small genus of tropical trees including the portia tree
+16777,Thespis,Greek poet who is said to have originated Greek tragedy (sixth century BC)
+16778,Thessalia Thessaly,a fertile plain on the Aegean Sea in east central Greece; Thessaly was a former region of ancient Greece
+16779,Thessalian,a native or inhabitant of Thessaly
+16780,Thessalonian,a native or inhabitant of Thessalonica
+16781,Thessaloniki Salonika Salonica Thessalonica,a port city in northeastern Greece on an inlet of the Aegean Sea; second largest city of Greece
+16782,Thetis,(Greek mythology) one of the 50 Nereids; mother of Achilles by Peleus
+16783,Thevetia genus_Thevetia,genus of poisonous tropical American evergreen shrubs and trees having entire leaves and large cymose flowers
+16784,Thielavia genus_Thielavia,genus of fungi having spherical brown perithecia and some conidia borne in chains; cause root rot
+16785,Thiobacteriaceae family_Thiobacteriaceae,free-living coccoid to rod-shaped bacteria that derive energy from oxidizing sulfur or sulfur compounds
+16786,Thiosulfil,trade name for a sulfonamide antibacterial
+16787,Third_Crusade,a Crusade from 1189 to 1192 led by Richard I and the king of France that failed because an army torn by dissensions and fighting on foreign soil could not succeed against forces united by religious zeal
+16788,Third_Epistel_of_John III_John,the third New Testament epistle traditionally attributed to Saint John the Apostle
+16789,Third_Lateran_Council,the Lateran Council in 1179 that condemned the heresies of the Albigenses and the Waldenses
+16790,Third_Reich Nazi_Germany,the Nazi dictatorship under Hitler (1933-1945)
+16791,Third_World,underdeveloped and developing countries of Asia and Africa and Latin America collectively
+16792,Thirty_Years'_War,a series of conflicts (1618-1648) between Protestants and Catholics starting in Germany and spreading until France and Denmark and Sweden were opposing the Holy Roman Empire and Spain
+16793,Thlaspi genus_Thlaspi,herbs of temperate regions: pennycress
+16794,Tho,a branch of the Tai languages
+16795,Thomas Dylan_Thomas Dylan_Marlais_Thomas,Welsh poet (1914-1953)
+16796,Thomas Lowell_Thomas Lowell_Jackson_Thomas,a radio broadcast journalist during World War I and World War II noted for his nightly new broadcast (1892-1981)
+16797,Thomas Norman_Thomas Norman_Mattoon_Thomas,United States socialist who was a candidate for president six times (1884-1968)
+16798,Thomas Saint_Thomas St._Thomas doubting_Thomas Thomas_the_doubting_Apostle,the Apostle who would not believe the resurrection of Jesus until he saw Jesus with his own eyes
+16799,Thomas Seth_Thomas,United States clockmaker who introduced mass production (1785-1859)
+16800,Thomism,the comprehensive theological doctrine created by Saint Thomas Aquinas in the 13th century and still taught by the Dominicans
+16801,Thomomys genus_Thomomys,western pocket gophers
+16802,Thompson Benjamin_Thompson Count_Rumford,English physicist (born in America) who studied heat and friction; experiments convinced him that heat is caused by moving particles (1753-1814)
+16803,Thompson Homer_Thompson Homer_A._Thompson Homer_Armstrong_Thompson,United States classical archaeologist (born in Canada) noted for leading the excavation of the Athenian agora (1906-2000)
+16804,Thompson_Seedless,seedless green table grape of California
+16805,Thomson Elihu_Thomson,United States electrical engineer (born in England) who in 1892 formed a company with Thomas Edison (1853-1937)
+16806,Thomson George_Paget_Thomson Sir_George_Paget_Thomson,English physicist (son of Joseph John Thomson) who was a co-discoverer of the diffraction of electrons by crystals (1892-1975)
+16807,Thomson Joseph_John_Thomson Sir_Joseph_John_Thomson,English physicist who experimented with the conduction of electricity through gases and who discovered the electron and determined its charge and mass (1856-1940)
+16808,Thomson Virgil_Thomson Virgil_Garnett_Thomson,United States composer who collaborated with Gertrude Stein (1896-1989)
+16809,Thomson's_gazelle Gazella_thomsoni,East African gazelle; the smallest gazelle
+16810,Thor,(Norse mythology) god of thunder and rain and farming; pictured as wielding a hammer emblematic of the thunderbolt; identified with Teutonic Donar
+16811,Thoreau Henry_David_Thoreau,United States writer and social critic (1817-1862)
+16812,Thorndike Dame_Sybil_Thorndike,English actress (1882-1976)
+16813,Thorndike Edward_Lee_Thorndike,United States educational psychologist (1874-1949)
+16814,Thornton William_Thornton,American architect (1759-1828)
+16815,Thorpe Jim_Thorpe James_Francis_Thorpe,outstanding United States athlete (1888-1953)
+16816,Thorshavn,the administrative center of the Faroe Islands
+16817,Thoth,Egyptian Moon deity with the head of an ibis; god of wisdom and learning and the arts; scribe of the gods
+16818,Thousand_Island_dressing,mayonnaise with chili sauce or catsup and minced olives and peppers and hard-cooked egg
+16819,Thrace,an ancient country and wine producing region in the east of the Balkan Peninsula to the north of the Aegean Sea; colonized by ancient Greeks; later a Roman province; now divided between Bulgaria and Greece and Turkey
+16820,Thracian,an inhabitant of ancient Thrace
+16821,Thracian,a Thraco-Phrygian language spoken by the ancient people of Thrace but extinct by the early Middle Ages
+16822,Thraco-Phrygian,an extinct branch of the Indo-European language family thought by some to be related to Armenian
+16823,Thraupidae family_Thraupidae,tanagers
+16824,Threskiornis genus_Threskiornis,type genus of the Threskiornithidae
+16825,Threskiornithidae family_Threskiornithidae family_Ibidiidae,ibises
+16826,Thrinax genus_Thrinax,small to medium-sized fan palms
+16827,Thripidae family_Thripidae,thrips
+16828,Thryothorus genus_Thryothorus,Carolina wrens
+16829,Thucydides,ancient Greek historian remembered for his history of the Peloponnesian War (460-395 BC)
+16830,Thuja genus_Thuja,red cedar
+16831,Thujopsis genus_Thujopsis,one species; has close similarity to genus Thuja
+16832,Thule,a town in northwestern Greenland; during World War II a United States naval base was built there
+16833,Thule ultima_Thule,the geographical region believed by ancient geographers to be the northernmost land in the inhabited world
+16834,Thunbergia genus_Thunbergia,a genus of herbs or vines of the family Acanthaceae
+16835,Thunder_Bay,a port city in Ontario on Lake Superior
+16836,Thunnus genus_Thunnus,tunas: warm-blooded fishes
+16837,Thurber James_Thurber James_Grover_Thurber,United States humorist and cartoonist who published collections of essays and stories (1894-1961)
+16838,Thuringia,a historical region of southern Germany
+16839,Thursday Th,the fifth day of the week; the fourth working day
+16840,Thylacinus genus_Thylacinus,Tasmanian wolf
+16841,Thylogale genus_Thylogale,pademelons
+16842,Thymelaeaceae family_Thymelaeaceae daphne_family,family of trees and shrubs and herbs having tough bark that are found especially in Australia and tropical Africa
+16843,Thymus genus_Thymus,large genus of Old World mints: thyme
+16844,Thyreophora suborder_Thyreophora thyreophoran,armored dinosaurs: stegosaurs and ankylosaurs
+16845,Thysanocarpus genus_Thysanocarpus,small genus of herbs of upland regions of the Pacific coast of North America
+16846,Thysanoptera order_Thysanoptera,thrips
+16847,Thysanura order_Thysanura,firebrats; silverfish; machilids
+16848,Tiamat,(Akkadian) mother of the gods and consort of Apsu
+16849,Tianjin Tientsin T'ien-ching,a major industrial center in northeastern China on the Grand Canal near the Yellow Sea; 3rd largest city in China
+16850,Tiarella genus_Tiarella,small genus of North American herbs having mostly basal leaves and slender racemes of delicate white flowers
+16851,Tiber Tevere,a river of central Italy; flows through Rome to the Tyrrhenian Sea
+16852,Tiberius Tiberius_Claudius_Nero_Caesar_Augustus,son-in-law of Augustus who became a suspicious tyrannical Emperor of Rome after a brilliant military career (42 BC to AD 37)
+16853,Tibet Thibet Xizang Sitsang,an autonomous region of the Peoples Republic of China; located in the Himalayas
+16854,Tibetan,a native or inhabitant of Tibet
+16855,Tibetan,Himalayish language spoken in Tibet
+16856,Tibetan_mastiff,very large powerful rough-coated dog native to central Asia
+16857,Tibetan_terrier chrysanthemum_dog,breed of medium-sized terriers bred in Tibet resembling Old English sheepdogs with fluffy curled tails
+16858,Tibeto-Burman Tibeto-Burman_language,a branch of the Sino-Tibetan family of languages spoken from Tibet to the Malay Peninsula
+16859,Tibicen genus_Tibicen,harvest flies
+16860,Tichodroma genus_Tichodroma,wall creepers; in some classifications placed in family Sittidae
+16861,Ticino Tessin,an Italian-speaking region of southern Switzerland
+16862,Tidewater Tidewater_region,the coastal plain of the South: eastern parts of Virginia and North Carolina and South Carolina and Georgia
+16863,Tien-pao Heavenly_Jewel,a member of the Taoist Trinity
+16864,Tien_Shan Tyan_Shan,a major mountain range of central Asia; extends 1,500 miles
+16865,Tiepolo Giovanni_Battista_Tiepolo,Italian painter (1696-1770)
+16866,Tierra_del_Fuego,an archipelago off southern South America; separated from the continent by the Strait of Magellan; islands are administered by Chile and by Argentina
+16867,Tietze's_syndrome,syndrome characterized by swelling of rib cartilage (causing pain)
+16868,Tiffany Louis_Comfort_Tiffany,United States artist who developed Tiffany glass (1848-1933)
+16869,Tiffany_glass,a kind of opalescent colored glass that was used in the early 1900s for stained-glass windows and lamps
+16870,Tigris Tigris_River,an Asian river; a tributary of the Euphrates River
+16871,Tijuana,a Mexican city just to the south of San Diego on the Lower California peninsula; popular among American tourists for racetracks and bullfights
+16872,Tilapia genus_Tilapia,a genus of Cichlidae
+16873,Tilden Big_Bill_Tilden William_Tatem_Tilden_Jr.,United States tennis player who dominated men's tennis in the 1920s (1893-1953)
+16874,Tilia genus_Tilia,deciduous trees with smooth usually silver-grey bark of North America and Europe and Asia: lime trees; lindens; basswood
+16875,Tiliaceae family_Tiliaceae linden_family,chiefly trees and shrubs of tropical and temperate regions of especially southeastern Asia and Brazil; genera Tilia, Corchorus, Entelea, Grewia, Sparmannia
+16876,Tiliomycetes class_Tiliomycetes,category used in some systems to comprise the two orders Ustilaginales (smuts) and Uredinales (rusts)
+16877,Tillandsia genus_Tillandsia,large genus of epiphytic or terrestrial sparse-rooting tropical plants usually forming dense clumps or pendant masses
+16878,Tilletia genus_Tilletia,a genus of fungi belonging to the family Tilletiaceae
+16879,Tilletiaceae family_Tilletiaceae,a family of smut fungi having a simple promycelium bearing the spores in an apical cluster
+16880,Tillich Paul_Tillich Paul_Johannes_Tillich,United States theologian (born in Germany) (1886-1965)
+16881,Timalia genus_Timalia,type genus of the Timaliidae
+16882,Timaliidae family_Timaliidae,babblers
+16883,Timbuktu,a city in central Mali near the Niger river; formerly famous for its gold trade
+16884,Times_Square,the area of Manhattan around the intersection of Broadway and Seventh Avenue; heart of the New York theater district; site of annual celebration of New Year's
+16885,Timgad,an ancient town founded by the Romans; noted for extensive and well-preserved ruins
+16886,Timimoun,a town in central Algeria in the Atlas Mountains
+16887,Timor,an island in Indonesia in the Malay Archipelago; the largest and most eastern of the Lesser Sunda Islands
+16888,Timor_Sea,an arm of the eastern Indian Ocean between Timor and northern Australia
+16889,Timorese,a native or inhabitant of Timor
+16890,Timothy,a disciple of Saint Paul who became the leader of the Christian community at Ephesus
+16891,Tin_Pan_Alley,a city district (originally in New York) where composers and publishers of popular music do business
+16892,Tinamidae family_Tinamidae,comprising the tinamous
+16893,Tinamiformes order_Tinamiformes,coextensive with the family Tinamidae
+16894,Tinbergen Jan_Tinbergen,Dutch economist noted for his work in econometrics (1903-1994)
+16895,Tinbergen Nikolaas_Tinbergen,Dutch zoologist who showed that much animal behavior is innate and stereotyped (1907-1988)
+16896,Tinca genus_Tinca,tench
+16897,Tinea genus_Tinea,type genus of the Tineidae: clothes moths
+16898,Tineidae family_Tineidae,clothes moths
+16899,Tineoidea superfamily_Tineoidea,clothes moths; carpet moths; leaf miners
+16900,Tineola genus_Tineola,webbing clothes moths
+16901,Tingidae family_Tingidae,lace bugs
+16902,Tintoretto Jacopo_Robusti,Italian painter of the Venetian school (1518-1594)
+16903,Tipuana genus_Tipuana,one species: South American tree: tipu tree
+16904,Tipulidae family_Tipulidae,crane flies
+16905,Tirana Albanian_capital,the capital and largest city of Albania in the center of the country
+16906,Tiresias,(Greek mythology) the blind prophet of Thebes who revealed to Oedipus that Oedipus had murdered his father and married his mother
+16907,Tirich_Mir,a mountain in the Hindu Kush in Pakistan (25,230 feet high)
+16908,Tirso_de_Molina Gabriel_Tellez,Spanish dramatist who wrote the first dramatic treatment of the legend of Don Juan (1571-1648)
+16909,Tishah_b'Av Tishah_b'Ab Tisha_b'Av Tisha_b'Ab Ninth_of_Av Ninth_of_Ab Fast_of_Av Fast_of_Ab,(Judaism) a major fast day on the Jewish calendar commemorating the destruction of the temples in Jerusalem
+16910,Tishri,the first month of the civil year; the seventh month of the ecclesiastical year in the Jewish calendar (in September and October)
+16911,Tisiphone,one of the three Furies
+16912,Titan,(Greek mythology) any of the primordial giant gods who ruled the Earth until overthrown by Zeus; the Titans were offspring of Uranus (Heaven) and Gaea (Earth)
+16913,Titan,the largest of the satellites of Saturn; has a hazy nitrogen atmosphere
+16914,Titaness,(Greek mythology) any of the primordial giant goddesses who were offspring of Uranus (heaven) and Gaea (earth) in ancient mythology
+16915,Titania,(Middle Ages) the queen of the fairies in medieval folklore
+16916,Titanosauridae family_Titanosauridae,herbivorous dinosaurs of the Cretaceous
+16917,Titanosaurus genus_Titanosaurus,genus of herbivorous dinosaurs flourishing during the Cretaceous in South America
+16918,Titian Tiziano_Vecellio,old master of the Venetian school (1490-1576)
+16919,Tito Marshal_Tito Josip_Broz,Yugoslav statesman who led the resistance to German occupation during World War II and established a communist state after the war (1892-1980)
+16920,Titus,a Greek disciple and helper of Saint Paul
+16921,Titus Titus_Vespasianus_Augustus Titus_Flavius_Vespasianus,Emperor of Rome; son of Vespasian (39-81)
+16922,Tiu,god of war and sky; counterpart of Norse Tyr
+16923,Tivoli Tibur,a town twenty miles to the east of Rome (Tibur is the ancient name); a summer resort during the Roman empire; noted for its waterfalls
+16924,Tlingit,a member of a seafaring group of North American Indians living in southern Alaska
+16925,Tlingit,the Na-Dene language spoken by the Tlingit
+16926,Tobago,island in West Indies
+16927,Tobagonian,a native or inhabitant of the island of Tobago in the West Indies
+16928,Tobey Mark_Tobey,United States abstract painter influenced by oriental calligraphy (1890-1976)
+16929,Tobin James_Tobin,United States economist (1918-2002)
+16930,Tobit Book_of_Tobit,an Apocryphal book that was a popular novel for several centuries
+16931,Tocantins Tocantins_River,a river in eastern Brazil that flows generally north to the Para River
+16932,Tocharian,a branch of the Indo-European language family that originated in central Asia during the first millennium A.D.
+16933,Tocqueville Alexis_de_Tocqueville Alexis_Charles_Henri_Maurice_de_Tocqueville,French political writer noted for his analysis of American institutions (1805-1859)
+16934,Toda,a member of a pastoral people living in the Nilgiri Hills of southern India
+16935,Toda,the Dravidian language spoken by the Toda in southern India
+16936,Todd Sir_Alexander_Robertus_Todd Lord_Todd,Scottish chemist noted for his research into the structure of nucleic acids (born in 1907)
+16937,Todd Sweeney_Todd,fictional character in a play by George Pitt; a barber who murdered his customers
+16938,Todea genus_Todea,a genus of delicate ferns belonging to the family Osmundaceae
+16939,Todidae family_Todidae,a family of birds of the order Coraciiformes
+16940,Todus genus_Todus,type genus of the Todidae
+16941,Tofieldia genus_Tofieldia,genus of perennial herbs of cool temperate regions; sometimes placed in family Melanthiaceae
+16942,Togaviridae,a family of arboviruses carried by arthropods
+16943,Togo Togolese_Republic,a republic on the western coast of Africa on the Gulf of Guinea; formerly under French control
+16944,Togo_franc,the basic unit of money in Togo
+16945,Togolese,a native or inhabitant of Togo
+16946,Tojo Tojo_Hideki Tojo_Eiki,Japanese army officer who initiated the Japanese attack on Pearl Harbor and who assumed dictatorial control of Japan during World War II; he was subsequently tried and executed as a war criminal (1884-1948)
+16947,Tokay,Hungarian wine made from Tokay grapes
+16948,Tokay,variety of wine grape originally grown in Hungary; the prototype of vinifera grapes
+16949,Toklas Alice_B._Toklas,United States writer remembered as the secretary and companion of Gertrude Stein (1877-1967)
+16950,Tokyo Tokio Yeddo Yedo Edo Japanese_capital capital_of_Japan,the capital and largest city of Japan; the economic and cultural center of Japan
+16951,Toledo,an industrial city in northwestern Ohio on Lake Erie
+16952,Toledo,a city in central Spain on the Tagus river; famous for steel and swords since the first century
+16953,Tolkien J.R.R._Tolkien John_Ronald_Reuel_Tolkien,British philologist and writer of fantasies (born in South Africa) (1892-1973)
+16954,Tolmiea genus_Tolmiea,one species: pickaback plant
+16955,Tolstoy Leo_Tolstoy Count_Lev_Nikolayevitch_Tolstoy,Russian author remembered for two great novels (1828-1910)
+16956,Toltec,a member of the Nahuatl speaking people of central and southern Mexico
+16957,Tolypeutes genus_Tolypeutes,a genus of Dasypodidae
+16958,Tom_Sawyer,the boy hero of a novel by Mark Twain
+16959,Tom_Thumb,an imaginary hero of English folklore who was no taller than his father's thumb
+16960,Tom_Thumb,a very small person
+16961,Tom_and_Jerry,hot rum toddy with a beaten egg
+16962,Tombaugh Clyde_Tombaugh Clyde_William_Tombaugh,United States astronomer who discovered the planet Pluto (1906-1997)
+16963,Tombigbee Tombigbee_River,a river that rises in northeastern Mississippi and flows southward through western Alabama to join the Alabama River and form the Mobile River
+16964,Tomistoma genus_Tomistoma,a genus of Malayan crocodiles
+16965,Tommy_gun Thompson_submachine_gun,a .45-caliber submachine gun
+16966,Tonegawa_Susumu,Japanese molecular biologist noted for his studies of how the immune system produces antibodies (born in 1939)
+16967,Tonga,the language of the Tongan people of south central Africa (Zambia and Rhodesia)
+16968,Tonga Kingdom_of_Tonga Friendly_Islands,a monarchy on a Polynesian archipelago in the South Pacific; achieved independence from the United Kingdom in 1970
+16969,Tongan,a Polynesian native or inhabitant of Tonga
+16970,Tongan,the Polynesian language spoken by the Tongan people
+16971,Tongan_monetary_unit,monetary unit in Tonga
+16972,Toona genus_Toona,formerly included in genus Cedrela
+16973,Topeka capital_of_Kansas,the capital of the state of Kansas; located in eastern Kansas on the Kansas river
+16974,Torah,the whole body of the Jewish sacred writings and tradition including the oral tradition
+16975,Torah,(Judaism) the scroll of parchment on which the first five books of the Hebrew Scripture is written; is used in a synagogue during services
+16976,Torah Pentateuch Laws,the first of three divisions of the Hebrew Scriptures comprising the first five books of the Hebrew Bible considered as a unit
+16977,Toronto,the provincial capital and largest city in Ontario (and the largest city in Canada)
+16978,Torpedinidae family_Torpedinidae,electric rays
+16979,Torpediniformes order_Torpediniformes,rays with bodies shaped like torpedoes
+16980,Torquemada Tomas_de_Torquemada,the Spaniard who as Grand Inquisitor was responsible for the death of thousands of Jews and suspected witches during the Spanish Inquisition (1420-1498)
+16981,Torreon,a city in northern Mexico to the west of Monterrey
+16982,Torres_Strait,a strait between northeastern Australia and southern New Guinea that connects the Coral Sea with the Arafura Sea
+16983,Torrey_pine Torrey's_pine soledad_pine grey-leaf_pine sabine_pine Pinus_torreyana,medium-sized five-needled pine of southwestern California having long cylindrical cones
+16984,Torreya genus_Torreya,nutmeg-yews
+16985,Torricelli Evangelista_Torricelli,Italian physicist who invented the mercury barometer (1608-1647)
+16986,Torrid_Zone tropical_zone tropics,the part of the Earth's surface between the Tropic of Cancer and the Tropic of Capricorn; characterized by a hot climate
+16987,Tortricidae family_Tortricidae,leaf rollers and codling moths
+16988,Tory,a member of political party in Great Britain that has been known as the Conservative Party since 1832; was the opposition party to the Whigs
+16989,Tory,a supporter of traditional political and social institutions against the forces of reform; a political conservative
+16990,Tory,an American who favored the British side during the American Revolution
+16991,Toscanini Arturo_Toscanini,Italian conductor of many orchestras worldwide (1867-1957)
+16992,Tosk Tosk_dialect,the dialect of Albanian spoken in southern Albania and in areas of Greece and Italy
+16993,Toulon,a port city and naval base in southeastern France on the Mediterranean coast
+16994,Toulouse,a city on the Garonne River in southern France to the southeast of Bordeaux; a cultural center of medieval Europe
+16995,Toulouse-Lautrec Henri_Toulouse-Lautrec,French painter who portrayed life in the cafes and music halls of Montmartre (1864-1901)
+16996,Tour_de_France,a French bicycle race for professional cyclists that lasts three weeks and covers about 3,000 miles
+16997,Tourette Gilles_de_la_Tourette Georges_Gilles_de_la_Tourette,French neurologist (1857-1904)
+16998,Tourette's_syndrome Gilles_de_la_Tourette_syndrome,neurological disorder characterized by facial grimaces and tics and movements of the upper body and grunts and shouts and coprolalia
+16999,Tours,an industrial city in western France on the Loire River
+17000,Tower_of_Babel Babel,(Genesis 11:1-11) a tower built by Noah's descendants (probably in Babylon) who intended it to reach up to heaven; God foiled them by confusing their language so they could no longer understand one another
+17001,Tower_of_London,a fortress in London on the Thames; used as a palace and a state prison and now as a museum containing the crown jewels
+17002,Tower_of_Pharos,a great lighthouse (500 feet high) built at Alexandria in 285 BC
+17003,Town Ithiel_Town,United States architect who was noted for his design and construction of truss bridges (1784-1844)
+17004,Townes Charles_Townes Charles_Hard_Townes,United States physicist who developed the laser and maser principles for producing high-intensity radiation (1915-)
+17005,Townsend Francis_Everett_Townsend,United States social reformer who proposed an old-age pension sponsored by the federal government; his plan was a precursor to Social Security (1867-1960)
+17006,Townsendia genus_Townsendia,genus of western American low tufted herbs: Easter daisy
+17007,Toxicodendron genus_Toxicodendron,in some classifications: comprising those members of the genus Rhus having foliage that is poisonous to the touch; of North America and northern South America
+17008,Toxostoma genus_Toxostoma,thrashers
+17009,Toxotes genus_Toxotes,type genus of the Toxotidae
+17010,Toxotidae family_Toxotidae,archerfishes
+17011,Toynbee Arnold_Toynbee Arnold_Joseph_Toynbee,English historian who studied the rise and fall of civilizations looking for cyclical patterns (1889-1975)
+17012,Toyohashi,a Japanese city in southern Honshu on the Pacific shore
+17013,Toyonaki,a Japanese city in southern Honshu; main residential suburb of Osaka
+17014,Toyota,an industrial city of Japan in southern Honshu
+17015,Trachelospermum genus_Trachelospermum,genus of Asiatic woody vines with milky sap in leaves and stems
+17016,Tracheophyta division_Tracheophyta,in former classifications: comprising plants with a vascular system including ferns and fern allies as well as seed plants
+17017,Trachinotus genus_Trachinotus,a genus of Carangidae
+17018,Trachipteridae family_Trachipteridae,ribbonfishes
+17019,Trachipterus genus_Trachipterus,type genus of the Trachipteridae
+17020,Trachurus genus_Trachurus,the scads (particularly horse mackerels)
+17021,Tractarian,a follower of Tractarianism and supporter of the Oxford movement (which was expounded in pamphlets called `Tracts for the Times')
+17022,Tractarianism Puseyism,principles of the founders of the Oxford movement as expounded in pamphlets called `Tracts for the Times'
+17023,Tracy Spencer_Tracy,United States film actor who appeared in many films with Katharine Hepburn (1900-1967)
+17024,Tradescant John_Tradescant,English botanist who was one of the first to collect specimens of plants (1570-1638)
+17025,Tradescantia genus_Tradescantia,spiderworts
+17026,Trafalgar battle_of_Trafalgar,a naval battle in 1805 off the southwest coast of Spain; the French and Spanish fleets were defeated by the English under Nelson (who was mortally wounded)
+17027,Trafalgar_Square,a square in central London where there is a memorial to Admiral Nelson
+17028,Tragelaphus genus_Tragelaphus Strepsiceros genus_Strepsiceros,African antelopes: kudus; bongos; nyalas; bushbucks
+17029,Tragopogon genus_Tragopogon,genus of Old World herbs with linear entire leaves and yellow or purple flower heads
+17030,Tragulidae family_Tragulidae,chevrotains
+17031,Tragulus genus_Tragulus,type genus of the Tragulidae
+17032,Trajan Marcus_Ulpius_Traianus,Roman Emperor and adoptive son of Nerva; extended the Roman Empire to the east and conducted an extensive program of building (53-117)
+17033,Transcaucasia,a geographical region to the south of the Caucasus Mountains and to the north of Turkey that comprises Georgia and Armenia and Azerbaijan
+17034,Transfiguration Transfiguration_Day August_6,(Christianity) a church festival held in commemoration of the Transfiguration of Jesus
+17035,Transfiguration Transfiguration_of_Jesus,(New Testament) the sudden emanation of radiance from the person of Jesus
+17036,Transportation_Security_Administration TSA,an agency established in 2001 to safeguard United States transportation systems and insure safe air travel
+17037,Transvaal,a province of northeastern South Africa originally inhabited by Africans who spoke Bantu; colonized by the Boers
+17038,Transylvania,a historical plateau region in northwestern Romania that is separated from the rest of the country by the Transylvanian Alps; originally part of Hungary; incorporated into Romania at the end of World War I
+17039,Transylvanian_Alps,a range of the southern Carpathian Mountains extending across central Romania
+17040,Trapa genus_Trapa,small genus of Eurasian aquatic perennial herbs: water chestnut
+17041,Trapaceae family_Trapaceae,family comprising solely the genus Trapa; in some classifications treated as a subfamily or tribe of the family Onagraceae
+17042,Trapezium,a multiple star in the constellation of Orion
+17043,Trappist Cistercian,member of an order of monks noted for austerity and a vow of silence
+17044,Trasimeno battle_of_Trasimeno,a battle in central Italy where Hannibal defeated the Romans under Flaminius in 217 BC
+17045,Traubel Helen_Traubel,United States operatic soprano (1903-1972)
+17046,Trautvetteria genus_Trautvetteria,small genus of perennial herbs: false bugbane
+17047,Traverse_City,a town in northern Michigan on an arm of Lake Michigan
+17048,Treasury First_Lord_of_the_Treasury,the British cabinet minister responsible for economic strategy
+17049,Treasury Treasury_obligations,negotiable debt obligations of the United States government which guarantees that interest and principal payments will be paid on time
+17050,Treasury_bill T-bill,a short-term obligation that is not interest-bearing (it is purchased at a discount); can be traded on a discount basis for 91 days
+17051,Treasury_bond,a debt instrument with maturities of 10 years or longer
+17052,Treasury_note,securities with maturities of 1 to 10 years; sold for cash or in exchange for maturing issues or at auction
+17053,Treaty_of_Versailles,the treaty imposed on Germany by the Allied powers in 1920 after the end of World War I which demanded exorbitant reparations from the Germans
+17054,Tree Sir_Herbert_Beerbohm_Tree,English actor and theatrical producer noted for his lavish productions of Shakespeare (1853-1917)
+17055,Trema genus_Trema,an evergreen tree of the family Ulmaceae that grows in tropical America and Africa and Asia
+17056,Trematoda class_Trematoda,parasitic flatworms (including flukes)
+17057,Tremella genus_Tremella,fungi with yellowish gelatinous sporophores having convolutions resembling those of the brain
+17058,Tremella_foliacea,a jelly fungus with a fruiting body 5-15 cm broad and gelatinous in consistency; resembles a bunch of leaf lettuce; mostly water and brownish in color
+17059,Tremella_reticulata,a jelly fungus with an erect whitish fruiting body and a highly variable shape (sometimes resembling coral fungi)
+17060,Tremellaceae family_Tremellaceae,a family of basidiomycetous fungi of the order Tremellales that have the basidium divided longitudinally
+17061,Tremellales order_Tremellales,fungi varying from gelatinous to waxy or even horny in texture; most are saprophytic
+17062,Trent River_Trent Trent_River,a river in central England that flows generally northeastward to join with the Ouse River and form the Humber
+17063,Trentino-Alto_Adige,a region of northeastern Italy bordering Austria
+17064,Trento Trent,a city in northern Italy (northwest of Venice) on the River Adige; the site of the Council of Trent
+17065,Trenton capital_of_New_Jersey,capital of the state of New Jersey; located in western New Jersey on the Delaware river
+17066,Treponemataceae family_Treponemataceae,small spirochetes some parasitic or pathogenic
+17067,Trevelyan George_Macaulay_Trevelyan,English historian and son of Sir George Otto Trevelyan whose works include a social history of England and a biography of Garibaldi (1876-1962)
+17068,Trevelyan George_Otto_Trevelyan Sir_George_Otto_Trevelyan,English historian who wrote a history of the American revolution and a biography of his uncle Lord Macaulay (1838-1928)
+17069,Trevino Lee_Trevino Lee_Buck_Trevino Supermex,United States golfer (born in 1939)
+17070,Trevithick Richard_Trevithick,English engineer who built the first railway locomotive (1771-1833)
+17071,Triaenodon genus_Triaenodon,a genus of Triakidae
+17072,Triakidae family_Triakidae,small sharks with smooth skins and lacking spines on their dorsal fins
+17073,Trialeurodes genus_Trialeurodes,a genus of Aleyrodidae
+17074,Triangulum Triangle,a small northern constellation near Perseus between Andromeda and Aries
+17075,Triangulum_Australe Southern_Triangle,a small bright constellation in the polar region of the southern hemisphere near Circinus and Apus
+17076,Triassic Triassic_period,from 230 million to 190 million years ago; dinosaurs, marine reptiles; volcanic activity
+17077,Triatoma genus_Triatoma,conenoses
+17078,Tribes_of_Israel Twelve_Tribes_of_Israel,twelve kin groups of ancient Israel each traditionally descended from one of the twelve sons of Jacob
+17079,Tribolium genus_Tribolium,flour beetles
+17080,Tribonema genus_Tribonema genus_Conferva,type genus of Tribonemaceae
+17081,Tribonemaceae family_Tribonemaceae,simple filamentous freshwater yellow-green algae
+17082,Tribulus genus_Tribulus,annual or perennial herbs or subshrubs of warm regions
+17083,Trichechidae family_Trichechidae,comprising only the manatees
+17084,Trichechus genus_Trichecus,type and sole genus of the Trichechidae
+17085,Trichiuridae family_Trichiuridae,cutlassfishes
+17086,Trichoceros genus_Trichoceros,small genus of small epiphytic or terrestrial orchids of tropical South America
+17087,Trichodontidae family_Trichodontidae,two species of elongate compressed scaleless large-eyed fishes that live in sand or mud
+17088,Trichoglossus genus_Trichoglossus,a genus of Loriinae
+17089,Tricholoma genus_Tricholoma,agarics with white spores and a fleshy stalk and notched gills; of various colors both edible and inedible
+17090,Tricholoma_aurantium,an orange tan agaric whose gills become brown by maturity; has a strong odor and taste
+17091,Tricholoma_pardinum,a poisonous agaric having a pale cap with fine grey fibrils
+17092,Tricholoma_pessundatum,a mildly poisonous agaric with a viscid reddish brown cap and white gills and stalk
+17093,Tricholoma_sejunctum,an agaric with a cap that is coated with dark fibrils in the center and has yellowish margins
+17094,Tricholoma_vaccinum,an agaric with a cap that is densely covered with reddish fibrils and pale gills and stalk
+17095,Tricholoma_venenata,a poisonous white agaric
+17096,Tricholomataceae family_Tricholomataceae,a family of fungi belonging to the order Agaricales
+17097,Trichomanes genus_Trichomanes,bristle ferns; kidney ferns
+17098,Trichophaga genus_Trichophaga,carpet moths
+17099,Trichophyton genus_Trichophyton,a genus of fungus of the family Moniliaceae; causes ringworm and favus
+17100,Trichoptera order_Trichoptera,an order of insects consisting of caddis flies
+17101,Trichostema genus_Trichostema,genus of North American aromatic herbs or subshrubs: blue curls
+17102,Trichostigma genus_Trichostigma,a genus of erect or climbing shrubs found in tropical South America
+17103,Trichosurus genus_Trichosurus,a genus of Phalangeridae
+17104,Trichys genus_Trichys,a genus of Hystricidae
+17105,Tridacna genus_Tridacna,type genus of the family Tridacnidae: giant clams
+17106,Tridacnidae family_Tridacnidae,large marine hard-shell clams
+17107,Trifolium genus_Trifolium,any leguminous plant having leaves divided into three leaflets
+17108,Triga genus_Triga,type genus of the Triglidae
+17109,Triglidae family_Triglidae,in some classifications restricted to the gurnards and subdivided into the subfamilies Triglinae (true sea robins) and Peristediinae (armored sea robins)
+17110,Triglinae subfamily_Triglinae,in some classifications considered a subfamily of Triglidae comprising searobins having ordinary scales and no barbels (true searobins)
+17111,Triglochin genus_Triglochin,perennial or annual bog or marsh plants; includes arrow grass
+17112,Trigonella genus_Trigonella,Old World genus of frequently aromatic herbs
+17113,Trilby,singer in a novel by George du Maurier who was under the control of the hypnotist Svengali
+17114,Trilisa genus_Trilisa,genus of herbs of southern United States
+17115,Trilliaceae family_Trilliaceae trillium_family,small family of herbs having flowers with 3 petals and 3 sepals; in some classification systems considered a subfamily of the Liliaceae
+17116,Trilling Lionel_Trilling,United States literary critic (1905-1975)
+17117,Trimorphodon genus_Trimorphodon,lyre snakes
+17118,Trimurti,the triad of divinities of later Hinduism
+17119,Trinectes genus_Trinectes,a genus of Soleidae
+17120,Tringa genus_Tringa,a genus of Scolopacidae
+17121,Trinidad,an island in West Indies just off the northeastern coast of Venezuela
+17122,Trinidad_and_Tobago Republic_of_Trinidad_and_Tobago,an island republic in the West Indies off the northeastern coast of Venezuela; achieved independence from the United Kingdom in 1962
+17123,Trinidad_and_Tobago_dollar,the basic unit of money in Trinidad and Tobago
+17124,Trinidadian,inhabitant or native of Trinidad
+17125,Trinitarian,adherent of Trinitarianism
+17126,Trinitarianism,Christian doctrine stressing belief in the Trinity
+17127,Trinity Holy_Trinity Blessed_Trinity Sacred_Trinity,the union of the Father and Son and Holy Ghost in one Godhead
+17128,Trinity_River,a river in eastern Texas that is formed near Dallas and flows generally southeastward to Galveston Bay
+17129,Trinity_Sunday,eighth Sunday after Easter
+17130,Trionychidae family_Trionychidae,soft-shelled turtles
+17131,Trionyx genus_Trionyx,type genus of the Trionychidae
+17132,Triopidae family_Triopidae,a family of Notostraca
+17133,Triops genus_Triops,type genus of the family Triopidae: small crustaceans with a small third median eye
+17134,Triostium genus_Triostium,genus of Asiatic and North American herbs: feverroot
+17135,Triple_Frontier,the border area where Argentina and Brazil and Paraguay meet; an active South American center for contraband and drug trafficking and money laundering; a suspected locale for Islamic extremist groups
+17136,Tripleurospermum genus_Tripleurospermum,small genus comprising plants often included in genus Matricaria
+17137,Triplochiton genus_Triplochiton,small genus of tropical African trees with maplelike leaves
+17138,Tripoli Tarabulus_Al-Gharb capital_of_Libya,the capital and chief port and largest city of Libya; in northwestern Libya on the Mediterranean Sea; founded by the Phoenicians in the 7th century BC
+17139,Tristan Tristram,(Middle Ages) the nephew of the king of Cornwall who (according to legend) fell in love with his uncle's bride (Iseult) after they mistakenly drank a love potion that left them eternally in love with each other
+17140,Triticum genus_Triticum,annual cereal grasses from Mediterranean area; widely cultivated in temperate regions
+17141,Triton,(Greek mythology) a sea god; son of Poseidon
+17142,Triton,the largest moon of Neptune
+17143,Triturus genus_Triturus,chiefly aquatic salamanders
+17144,Trochilidae family_Trochilidae,hummingbirds
+17145,Trogium genus_Trogium,a genus of Psocidae
+17146,Troglodytes genus_Troglodytes,type genus of the Troglodytidae
+17147,Troglodytidae family_Troglodytidae,wrens
+17148,Trogonidae family_Trogonidae,coextensive with the order Trogoniformes
+17149,Trogoniformes order_Trogoniformes,trogons
+17150,Trojan Dardan Dardanian,a native of ancient Troy
+17151,Trojan_Horse Wooden_Horse,a large hollow wooden figure of a horse (filled with Greek soldiers) left by the Greeks outside Troy during the Trojan War
+17152,Trojan_War,(Greek mythology) a great war fought between Greece and Troy; the Greeks sailed to Troy to recover Helen of Troy, the beautiful wife of Menelaus who had been abducted by Paris; after ten years the Greeks (via the Trojan Horse) achieved final victory and burned Troy to the ground; "the story of the Trojan War is told in Homer's Iliad"
+17153,Trollius genus_Trollius,perennial herbs of north temperate regions: globeflowers
+17154,Trollope Anthony_Trollope,English writer of novels (1815-1882)
+17155,Trombicula genus_Trombicula,type genus of the family Trombiculidae
+17156,Trombiculidae family_Trombiculidae,mites
+17157,Trombidiidae family_Trombidiidae,mites
+17158,Trondheim Nidaros,a port in central Norway on Trondheim Fjord
+17159,Trondheim_Fjord Trondheim_Fiord,a long narrow inlet of the Norwegian Sea
+17160,Tropaeolaceae family_Tropaeolaceae nasturtium_family,coextensive with the genus Tropaeolum
+17161,Tropaeolum genus_Tropaeolum,a tropical American genus of dicotyledonous climbing or diffuse pungent herbs constituting the family Tropaeolaceae
+17162,Tropic_of_Cancer,a line of latitude about 23 degrees to the north of the equator
+17163,Tropic_of_Capricorn,a line of latitude about 23 degrees to the south of the equator
+17164,Tropidoclonion genus_Tropidoclonion,lined snakes
+17165,Trotsky Leon_Trotsky Lev_Davidovich_Bronstein,Russian revolutionary and Communist theorist who helped Lenin and built up the army; he was ousted from the Communist Party by Stalin and eventually assassinated in Mexico (1879-1940)
+17166,Trotskyism,the form of communism advocated by Leon Trotsky; calls for immediate worldwide revolution by the proletariat
+17167,Trotskyite Trotskyist Trot,radicals who support Trotsky's theory that socialism must be established throughout the world by continuing revolution
+17168,Troy Ilion Ilium,an ancient city in Asia Minor that was the site of the Trojan War
+17169,Truffaut Francois_Truffaut,French filmmaker (1932-1984)
+17170,Truman Harry_Truman Harry_S_Truman President_Truman,elected vice president in Roosevelt's 4th term; became 33rd President of the United States on Roosevelt's death in 1945 and was elected President in 1948; authorized the use of atomic bombs against Japan (1884-1972)
+17171,Truman_doctrine,President Truman's policy of providing economic and military aid to any country threatened by communism or totalitarian ideology
+17172,Trumbo Dalton_Trumbo,United States screenwriter who was blacklisted and imprisoned for refusing to cooperate with congressional investigations of communism in America (1905-1976)
+17173,Trumbull John_Trumbull,American painter of historical scenes (1756-1843)
+17174,Trumbull John_Trumbull,American satirical poet (1750-1831)
+17175,Trumbull Jonathan_Trumbull,American Revolutionary leader who as governor of Connecticut provided supplies for the Continental Army (1710-1785)
+17176,Truncocolumella genus_Truncocolumella,a genus of fungi belonging to the family Rhizopogonaceae
+17177,Truncocolumella_citrina,a fungus with a round yellow to orange fruiting body that is found on the surface of the ground or partially buried; has a distinctive sterile column extending into the spore-bearing tissue
+17178,Trusteeship_Council TC,a permanent council of the United Nations that commissions a country (or countries) to undertake the administration of a territory
+17179,Truth Sojourner_Truth,United States abolitionist and feminist who was freed from slavery and became a leading advocate of the abolition of slavery and for the rights of women (1797-1883)
+17180,Trypetidae family_Trypetidae Trephritidae family_Trephritidae,fruit flies; some leaf miners
+17181,Tsimshian,a member of a Penutian people who lived on rivers and a sound in British Columbia
+17182,Tsimshian,a Penutian language spoken by the Tsimshian
+17183,Tsouic,a Formosan language
+17184,Tsuga genus_Tsuga,hemlock; hemlock fir; hemlock spruce
+17185,Tsushima,a naval battle in the Russo-Japanese War (1905); the Japanese fleet defeated the Russian fleet in the Korean Strait
+17186,Tswana Bechuana Batswana,a member of a Bantu people living chiefly in Botswana and western South Africa
+17187,Tswana Setswana Sechuana,the dialect of Sotho spoken by the Tswana in Botswana
+17188,Tuamotu_Archipelago Paumotu_Archipelago Low_Archipelago,a group of about 80 coral islands in French Polynesia
+17189,Tuareg,a member of a nomadic Berber people of the Sahara
+17190,Tuareg,the dialect of Berber spoken by the Tuareg
+17191,Tuatha_De_Danann Tuatha_De,group of Celtic gods or demigods; ruled Ireland in the Golden Age
+17192,Tuber genus_Tuber,type genus of the Tuberaceae: fungi whose fruiting bodies are typically truffles
+17193,Tuberaceae family_Tuberaceae,family of fungi whose ascocarps resemble tubers and vary in size from that of an acorn to that of a large apple
+17194,Tuberales order_Tuberales,small order of fungi belonging to the subdivision Ascomycota having closed underground ascocarps
+17195,Tubercularia genus_Tubercularia,type genus of the Tuberculariaceae; fungi with nodules of red or pink conidia; some cause diebacks of woody plants
+17196,Tuberculariaceae family_Tuberculariaceae,large family of mainly saprophytic imperfect fungi
+17197,Tubman Harriet_Tubman,United States abolitionist born a slave on a plantation in Maryland and became a famous conductor on the Underground Railroad leading other slaves to freedom in the North (1820-1913)
+17198,Tubuai_Islands Austral_Islands,a chain of small islands in French Polynesia
+17199,Tubulidentata order_Tubulidentata,an order of Eutheria
+17200,Tucana,a large faint constellation in the southern hemisphere containing most of the Small Magellanic Cloud
+17201,Tuchman Barbara_Tuchman Barbara_Wertheim_Tuchman,United States historian (1912-1989)
+17202,Tucker Benjamin_Ricketson_Tucker,United States anarchist influential before World War I (1854-1939)
+17203,Tucker Sophie_Tucker,United States vaudevillian (born in Russia) noted for her flamboyant performances (1884-1966)
+17204,Tucson,a city in southeastern Arizona ringed by mountain ranges; long known as a winter and health resort but the population shift from industrial states to the Sunbelt resulted in rapid growth late in the 20th century
+17205,Tudor,a member of the dynasty that ruled England
+17206,Tudor Antony_Tudor,United States dancer and choreographer (born in England) (1909-1987)
+17207,Tudor House_of_Tudor,an English dynasty descended from Henry Tudor; Tudor monarchs ruled from Henry VII to Elizabeth I (from 1485 to 1603)
+17208,Tudor_arch four-centered_arch,a low elliptical or pointed arch; usually drawn from four centers
+17209,Tudor_architecture,a style of English-Gothic architecture popular during the Tudor period; characterized by half-timbered houses
+17210,Tuesday Tues,the third day of the week; the second working day
+17211,Tugela Tugela_Falls,a major waterfall in southern Africa; has more than one leap
+17212,Tuileries Tuileries_Gardens,formal gardens next to the Louvre in Paris
+17213,Tuileries Tuileries_Palace,palace and royal residence built for Catherine de Medicis in 1564 and burned down in 1871; all that remains today are the formal gardens
+17214,Tulipa genus_Tulipa,Eurasian perennial bulbous herbs
+17215,Tulipa_gesneriana,tall late blooming tulip
+17216,Tulostoma genus_Tulostoma Tulestoma genus_Tulestoma,type genus of the Tulostomaceae
+17217,Tulostomaceae family_Tulostomaceae Tulostomataceae family_Tulostomataceae,stalked puffballs
+17218,Tulostomatales order_Tulostomatales,an order of fungi belonging to the class Gasteromycetes
+17219,Tulsa,a major city of northeastern Oklahoma on the Arkansas river; once known as the oil capital of the world and still heavily involved in the oil and gas industries
+17220,Tulu,a member of a Dravidian people living on the southwestern coast of India
+17221,Tulu,a Dravidian language spoken by the Tulu
+17222,Tums,an antacid
+17223,Tunga genus_Tunga,a genus of Siphonaptera
+17224,Tungus Evenk,a member of the Tungus speaking people who are a nomadic people widely spread over eastern Siberia; related to the Manchu
+17225,Tungus Tunguz Evenki Ewenki,the Tungusic language of the Evenki in eastern Siberia
+17226,Tungusic,any member of a people speaking a language in the Tungusic family
+17227,Tungusic Tungusic_language,a family of Altaic languages spoken in Mongolia and neighboring areas
+17228,Tunguska Lower_Tunguska,a river that arises to the north of Lake Baikal and flows north and west to the Yenisei River
+17229,Tunguska Stony_Tunguska,a river in Siberia that flows northwest to become a tributary of the Yenisei River
+17230,Tunis capital_of_Tunisia,the capital and principal port of Tunisia
+17231,Tunisia Republic_of_Tunisia,a republic in northwestern Africa on the Mediterranean coast; achieved independence from France in 1956; "southern Tunisia is mostly desert"
+17232,Tunisian,a native or inhabitant of Tunisia
+17233,Tunisian_dinar dinar,the basic unit of money in Tunisia
+17234,Tunisian_dirham dirham,100 dirhams equal 1 dinar in Tunisia
+17235,Tunisian_monetary_unit,monetary unit in Tunisia
+17236,Tunney Gene_Tunney James_Joseph_Tunney,United States prizefighter who won the world heavyweight championship by defeating Jack Dempsey twice (1898-1978)
+17237,Tupac_Amaru_Revolutionary_Movement Movimiento_Revolucionario_Tupac_Anaru MRTA,a Marxist-Leninist terrorist organization in Peru; was formed in 1983 to overthrow the Peruvian government and replace it with a Marxist regime; has connections with the ELN in Bolivia
+17238,Tupac_Katari_Guerrilla_Army EGTK,a terrorist group that is the remnants of the original Bolivian insurgents trained by Che Guevara; attacks small unprotected targets such as power pylons or oil pipelines or government buildings
+17239,Tupaia genus_Tupaia,the type genus of the Tupaia: chief genus of tree shrews
+17240,Tupaiidae family_Tupaiidae,tree shrews; in some classifications tree shrews are considered prosimian primates
+17241,Tupelo,a town in northeast Mississippi
+17242,Tupi,a member of the South American Indian people living in Brazil and Paraguay
+17243,Tupi,the language spoken by the Tupi of Brazil and Paraguay
+17244,Tupi-Guarani Tupi-Guarani_language,a family of South American Indian languages
+17245,Tupinambis genus_Tupinambis,tejus
+17246,Tupungatito,an inactive volcano in central Chile; last erupted in 1959
+17247,Tupungato,a mountain in the Andes on the border between Argentina and Chile (22,310 feet high)
+17248,Turbellaria class_Turbellaria,free-living flatworms
+17249,Turdidae family_Turdidae,thrushes; in some classifications considered a subfamily (Turdinae) of the family Muscicapidae
+17250,Turdinae subfamily_Turdinae,alternative classification for the thrushes
+17251,Turdus genus_Turdus,type genus of the Turdidae
+17252,Turfan East_Tocharian Turfan_dialect,a dialect of Tocharian
+17253,Turgenev Ivan_Turgenev Ivan_Sergeevich_Turgenev,Russian writer of stories and novels and plays (1818-1883)
+17254,Turgot Anne_Robert_Jacques_Turgot,French economist who in 1774 was put in control of finances by Louis XVI; his proposals for reforms that involved abolishing feudal privileges made him unpopular with the aristocracy and in 1776 he was dismissed (1727-1781)
+17255,Turin Torino,capital city of the Piemonte region of northwestern Italy
+17256,Turing Alan_Turing Alan_Mathison_Turing,English mathematician who conceived of the Turing machine and broke German codes during World War II (1912-1954)
+17257,Turing_machine,a hypothetical computer with an infinitely long memory tape
+17258,Turk,a native or inhabitant of Turkey
+17259,Turk's-cap Turk's_cap-lily Lilium_superbum,lily of the eastern United States with orange to red maroon-spotted flowers
+17260,Turk's-cap martagon Lilium_martagon,lily with small dull purple flowers of northwestern Europe and northwestern Asia
+17261,Turk's_head,an ornamental knot that resembles a small turban
+17262,Turkey Republic_of_Turkey,a Eurasian republic in Asia Minor and the Balkans; on the collapse of the Ottoman Empire in 1918, the Young Turks, led by Kemal Ataturk, established a republic in 1923
+17263,Turkey_red alizarine_red,a bright orange-red color produced in cotton cloth with alizarine dye
+17264,Turki,any member of the peoples speaking a Turkic language
+17265,Turki Turkic Turko-Tatar Turkic_language,a subfamily of Altaic languages
+17266,Turkish,a Turkic language spoken by the Turks
+17267,Turkish_Delight,a jellied candy typically flavored with rose water
+17268,Turkish_Hizballah,an ethnic Kurdish group of Sunni extremists formed in the late 1980s in southeastern Turkey; seeks to replace Turkey's secular regime with an Islamic state and strict shariah law; responsible for bombings and the torture and murder of Turkish and Kurdish journalists and businessmen; receives support from Iran
+17269,Turkish_bath,a steam room where facilities are available for a bath followed by a shower and massage
+17270,Turkish_bath steam_bath vapor_bath vapour_bath,you sweat in a steam room before getting a rubdown and cold shower
+17271,Turkish_coffee,a drink made from pulverized coffee beans; usually sweetened
+17272,Turkish_monetary_unit,monetary unit in Turkey
+17273,Turkish_tobacco,a dark aromatic tobacco of eastern Europe that is used in cigarettes
+17274,Turkish_towel terry_towel,a bath towel with rough loose pile
+17275,Turkistan Turkestan,a historical region of central Asia that was a center for trade between the East and the West
+17276,Turkmen Turkoman Turcoman,the Turkic language spoken by the Turkoman
+17277,Turkmen_monetary_unit,monetary unit in Turkmenistan
+17278,Turkmenistan Turkomen Turkmen Turkmenia,a republic in Asia to the east of the Caspian Sea and to the south of Kazakhstan and to the north of Iran; an Asian soviet from 1925 to 1991
+17279,Turkoman Turkmen Turcoman,a member of a Turkic people living in Turkmenistan and neighboring areas
+17280,Turner Frederick_Jackson_Turner,United States historian who stressed the role of the western frontier in American history (1861-1951)
+17281,Turner Henry_Hubert_Turner,United States endocrinologist (1892-1970)
+17282,Turner Joseph_Mallord_William_Turner,English landscape painter whose treatment of light and color influenced the French impressionists (1775-1851)
+17283,Turner Nat_Turner,United States slave and insurrectionist who in 1831 led a rebellion of slaves in Virginia; he was captured and executed (1800-1831)
+17284,Turner's_syndrome,a chromosomal disorder in females who have only one X chromosome; marked by dwarfism and heart abnormalities and underdeveloped sex organs
+17285,Turnicidae family_Turnicidae,small Old World birds resembling but not related to true quail
+17286,Turnix genus_Turnix,type genus of the Turnicidae: button quail
+17287,Turpin Dick_Turpin,English highwayman (1706-1739)
+17288,Turritis genus_Turritis,closely related to and often included in genus Arabis
+17289,Tursiops genus_Tursiops,a genus of Delphinidae
+17290,Tuscaloosa,a university town in west central Alabama
+17291,Tuscan,a resident of Tuscany
+17292,Tuscan,a dialect of Italian spoken in Tuscany (especially Florence)
+17293,Tuscan_order,a Roman order that resembles the Doric order but without a fluted shaft
+17294,Tuscany Toscana,a region in central Italy
+17295,Tuscarora,a member of an Iroquois people who formerly lived in North Carolina and then moved to New York State and joined the Iroquois
+17296,Tuscarora,the Iroquoian language spoken by the Tuscarora
+17297,Tuskegee,a town in eastern Alabama
+17298,Tussaud Marie_Tussaud Madame_Tussaud Marie_Grosholtz,French modeler (resident in England after 1802) who made wax death masks of prominent victims of the French Revolution and toured Britain with her wax models; in 1835 she opened a permanent waxworks exhibition in London (1761-1850)
+17299,Tussilago genus_Tussilago,genus of low creeping yellow-flowered perennial herbs of north temperate regions: coltsfoots; in some classifications includes species often placed in other genera especially Homogyne and Petasites
+17300,Tutankhamen,Pharaoh of Egypt around 1358 BC; his tomb was discovered almost intact by Howard Carter in 1922
+17301,Tutelo,a member of the Siouan people of Virginia and North Carolina
+17302,Tutelo,the Siouan language spoken by the Tutelo
+17303,Tutsi Watutsi Watusi,a member of a Bantu speaking people living in Rwanda and Burundi
+17304,Tutu Desmond_Tutu,South African prelate and leader of the antiapartheid struggle (born in 1931)
+17305,Tuvalu,a small island republic on the Tuvalu islands; formerly part of the British colony of Gilbert and Ellice Islands until it withdrew in 1975 and became independent of the United Kingdom in 1978
+17306,Tuvalu Ellice_Islands,a group of coral islands in Micronesia to the southwest of Hawaii
+17307,Tuvalu_dollar,the basic unit of money in Tuvalu
+17308,Tuxtla_Gutierrez,a city in southeastern Mexico
+17309,Tweedledum_and_Tweedledee Tweedledee_and_Tweedledum,any two people who are hard to tell apart
+17310,Twelfth_night,eve of Twelfth day; evening of January 5
+17311,Twelfthtide,the season of Epiphany
+17312,Twin Twin_Falls,a waterfall in the Snake River in southern Idaho
+17313,Twin_Cities,nickname for Saint Paul and Minneapolis
+17314,Twin_Falls,a town on the Snake River in south central Idaho near the Twin Falls
+17315,Twinkie,a small sponge cake with a synthetic cream filling
+17316,Two_Kettle,a member of the Siouan people who constituted a division of the Teton Sioux
+17317,Tyche,(Greek mythology) the goddess of fortune; identified with Roman Fortuna
+17318,Tyke,a native of Yorkshire
+17319,Tylenchidae family_Tylenchidae,a family of Nematoda
+17320,Tylenchus genus_Tylenchus,type genus of the family Tylenchidae
+17321,Tyler,a town in northeast Texas
+17322,Tyler John_Tyler President_Tyler,elected vice president and became the 10th President of the United States when Harrison died (1790-1862)
+17323,Tympanuchus genus_Tympanuchus,prairie chickens
+17324,Tyndale William_Tyndale Tindale William_Tindale Tindal William_Tindal,English translator and Protestant martyr; his translation of the Bible into English (which later formed the basis for the King James Version) aroused ecclesiastical opposition; he left England in 1524 and was burned at the stake in Antwerp as a heretic (1494-1536)
+17325,Tyndall John_Tyndall,British physicist (born in Ireland) remembered for his experiments on the transparency of gases and the absorption of radiant heat by gases and the transmission of sound through the atmosphere; he was the first person to explain why the daylight sky is blue (1820-1893)
+17326,Tyndall_effect,the phenomenon in which light is scattered by very small particles in its path; it makes a beam of light visible; the scattered light is mainly blue
+17327,Tyne River_Tyne Tyne_River,a river in northern England that flows east to the North Sea
+17328,Typha genus_Typha,reed maces; cattails
+17329,Typhaceae family_Typhaceae cattail_family,perennial marsh plants with creeping rootstocks and long linear leaves
+17330,Typhlopidae family_Typhlopidae,blind snakes
+17331,Typhoeus,(Greek mythology) son of Gaea and Tartarus who created the whirlwinds; had a terrifying voice and 100 dragon heads that spurted fire
+17332,Typhon,(Greek mythology) a monster with a hundred heads who breathed out flames; son of Typhoeus and father of Cerberus and the Chimera and the Sphinx
+17333,Tyr Tyrr,(Norse mythology) god of war and strife and son of Odin; identified with Anglo-Saxon Tiu
+17334,Tyranni suborder_Tyranni,New World flycatchers; antbirds; oven birds; woodhewers
+17335,Tyrannidae superfamily_Tyrannidae,New World tyrant flycatchers most numerous in Central America and South America but also in the United States and Canada
+17336,Tyrannus genus_Tyrannus,type genus of the Tyrannidae: tyrant flycatchers
+17337,Tyrian_purple,a red-purple to deep purple dye obtained from snails or made synthetically
+17338,Tyrian_purple,a vivid purplish-red color; in ancient Rome and Byzantium, it was the color worn by an emperor or senior magistrate
+17339,Tyrol Tirol,a picturesque mountainous province of western Austria and northern Italy
+17340,Tyrolean,a native or inhabitant of the Tyrol
+17341,Tyrolean_Alps,a popular tourist area in the Tyrol
+17342,Tyrrhenian_Sea,an arm of the Mediterranean between Italy and the islands of Corsica and Sardinia and Sicily
+17343,Tyson Mike_Tyson Michael_Gerald_Tyson,United States prizefighter who was world heavyweight champion (born in 1966)
+17344,Tyto genus_Tyto,type and only genus of the family Tytonidae
+17345,Tytonidae family_Tytonidae,comprising only the barn owls
+17346,Tzara Tristan_Tzara Samuel_Rosenstock,French poet (born in Romania) who was one of the cofounders of the dada movement (1896-1963)
+17347,U u,the 21st letter of the Roman alphabet
+17348,UNIX UNIX_system UNIX_operating_system,trademark for a powerful operating system
+17349,UNIX_guru,an expert on the UNIX operating system
+17350,URL uniform_resource_locator universal_resource_locator,the address of a web page on the world wide web
+17351,USS_Cole,a United States destroyer; "17 sailors died as the result of a terrorist attack while the USS Cole was anchored in Aden"
+17352,Ubykh,an extinct Caucasian language spoken exclusively in Turkey
+17353,Uca genus_Uca,fiddler crabs
+17354,Udmurt Votyak,a member of the Finno-Ugric-speaking people living in eastern European Russia
+17355,Udmurt Votyak,the Finnic language spoken by the Votyak
+17356,Ufa,a city in the European part of Russia
+17357,Uganda Republic_of_Uganda,a landlocked republic in eastern Africa; achieved independence from the United Kingdom in 1962
+17358,Ugandan,a native or inhabitant of Uganda
+17359,Ugandan_monetary_unit,monetary unit in Uganda
+17360,Ugandan_shilling shilling,the basic unit of money in Uganda; equal to 100 cents
+17361,Ugaritic,an extinct Semitic language of northern Syria
+17362,Ugric Ugrian,one of the two branches of the Finno-Ugric family of languages; spoken in Hungary and northwestern Siberia
+17363,Uhland Johann_Ludwig_Uhland,German romantic poet (1787-1862)
+17364,Uighur Uigur Uygur,a member of a people who speak Uighur and live in Xinjiang and adjacent areas
+17365,Uighur Uigur Uygur,the Turkic language spoken by approximately 7,000,000 Uighur in extreme northwestern China
+17366,Uighur Uigur Uygur,the script (derived from Aramaic) used to write the Uighur language
+17367,Uintatheriidae family_Uintatheriidae,an extinct family of Dinocerata
+17368,Uintatherium genus_Uintatherium,type genus of the Uintatheriidae; extinct large herbivorous ungulates somewhat resembling elephants; from the Eocene in Wyoming
+17369,Ukraine Ukrayina,a republic in southeastern Europe; formerly a European soviet; the center of the original Russian state which came into existence in the ninth century
+17370,Ukrainian,the Slavic language spoken in the Ukraine
+17371,Ukranian,a native or inhabitant of the Ukraine
+17372,Ukranian_monetary_unit,monetary unit in Ukraine
+17373,Ulan_Bator Ulaanbaatar Urga Kulun capital_of_Mongolia,the capital and largest city of Mongolia
+17374,Ulanova Galina_Ulanova Galina_Sergeevna_Ulanova,Russian ballet dancer (1910-1998)
+17375,Ulex genus_Ulex,genus of Eurasian spiny shrubs: gorse
+17376,Ulfilas Bishop_Ulfilas Ulfila Bishop_Ulfila Wulfila Bishop_Wulfila,a Christian believed to be of Cappadocian descent who became bishop of the Visigoths in 341 and translated the Bible from Greek into Gothic; traditionally held to have invented the Gothic alphabet (311-382)
+17377,Ull Ullr,(Norse mythology) one of the Aesir known for his beauty and skill with bow and skis; son of Sif and stepson of Thor
+17378,Ulmaceae family_Ulmaceae elm_family,a dicot family of the order Urticales including: genera Ulmus, Celtis, Planera, Trema
+17379,Ulmus genus_Ulmus,type genus of family Ulmaceae; deciduous trees having simple serrate leaves; widely distributed in temperate regions
+17380,Ulster,a historic division of Ireland located in the northeastern part of the island; six of Ulster's nine counties are in Northern Ireland
+17381,Ulster_Defence_Association UDA,the major Protestant paramilitary group in Northern Ireland; responsible for bombing the homes of Catholics and for criminal racketeering and selling drugs
+17382,Ultrasuede,a synthetic suede cloth
+17383,Ulugh_Muztagh Ulugh_Muz_Tagh,a mountain in the Kunlun range in China (25,340 feet high)
+17384,Ulva genus_Ulva,type genus of the family Ulvaceae; green seaweed having a thallus two cells thick: sea lettuce
+17385,Ulvaceae family_Ulvaceae sea-lettuce_family,thin flat or tubular green algae
+17386,Ulvales order_Ulvales,an order of protoctist
+17387,Ulvophyceae class_Ulvophyceae,alternative name for the class Chlorophyceae in some classifications
+17388,Ulysses,(Roman mythology) Roman spelling for Odysseus
+17389,Uma,a benevolent aspect of Devi; `splendor'
+17390,Uma genus_Uma,fringe-toed lizard
+17391,Umayyad Ommiad Omayyad,the first dynasty of Arab caliphs whose capital was Damascus
+17392,Umbellales order_Umbellales,plants having umbels or corymbs of uniovulate flowers; includes the Umbelliferae (chiefly herbs) and Cornaceae (chiefly trees or shrubs)
+17393,Umbelliferae family_Umbelliferae Apiaceae family_Apiaceae carrot_family,plants having flowers in umbels: parsley; carrot; anise; caraway; celery; dill
+17394,Umbellularia genus_Umbellularia,aromatic evergreen trees of Pacific coast
+17395,Umbria,a mountainous region in central Italy
+17396,Umbrian,an extinct Italic language of ancient southern Italy
+17397,Umbrina genus_Umbrina,croakers
+17398,Umbundu,a Bantu language spoken in Angola
+17399,Umma_Tameer-e-Nau UTN,a nongovernmental organization of Pakistani scientists that has been a supporter of terrorism; has provided information about chemical and biological and nuclear warfare to Osama bin Laden and al-Qaeda and the Taliban
+17400,Ummah Umma Muslim_Ummah Islamic_Ummah Islam_Nation,the Muslim community or people, considered to extend from Mauritania to Pakistan; "moderate Muslims urge the Ummah to reject the terrorism of radical Muslims"
+17401,Uncle_Remus,the fictional storyteller of tales written in the Black Vernacular and set in the South; the tales were first collected and published in book form in 1880
+17402,Uncle_Sam,a personification of the United States government
+17403,Uncle_Tom,a servile black character in a novel by Harriet Beecher Stowe
+17404,Uncompahgre_Peak,the highest peak in the San Juan Mountains of southwestern Colorado (14,309 feet high)
+17405,Underground_Railroad Underground_Railway,secret aid to escaping slaves that was provided by abolitionists in the years before the American Civil War
+17406,Undset Sigrid_Undset,Norwegian novelist (1882-1949)
+17407,Unguiculata,in former classifications a major division of Mammalia comprising mammals with nails or claws; distinguished from hoofed mammals and cetaceans
+17408,Ungulata,in former classifications a major division of Mammalia comprising all hoofed mammals; now divided into the orders Perissodactyla (odd-toed ungulates) and Artiodactyla (even-toed ungulates)
+17409,Uniat Uniate Uniate_Christian,a member of the Uniat Church
+17410,Uniat_Church Uniate_Church,any of several churches in eastern Europe or the Middle East that acknowledge papal authority but retain their own liturgy
+17411,Unification_Church,a Christian church (with some Buddhist elements) founded in 1954 by Sun Myung Moon and known for staging mass weddings and other communal activities
+17412,Unio genus_Unio,type genus of the family Unionidae
+17413,Union North,the United States (especially the northern states during the American Civil War); "he has visited every state in the Union"; "Lee hoped to detach Maryland from the Union"; "the North's superior resources turned the scale"
+17414,Union_Army,the northern army during the American Civil War
+17415,Union_Jack Union_flag,national flag of the United Kingdom
+17416,Unionidae family_Unionidae,freshwater mussels found worldwide
+17417,Unitarian,adherent of Unitarianism
+17418,Unitarian_Church,the Protestant denomination that rejects the doctrine of the Trinity
+17419,Unitarianism,a non-doctrinal religion that stresses individual freedom of belief and rejects the Trinity
+17420,United_Arab_Emirate_dirham dirham,the basic unit of money in the United Arab Emirates; equal to 1,000 fils
+17421,United_Arab_Emirate_monetary_unit,monetary unit in the United Arab Emirates
+17422,United_Arab_Emirates,a federation of seven Arab emirates on the eastern Arabian peninsula; achieved independence from the United Kingdom in 1971; rich in oil reserves
+17423,United_Church_of_Christ,merger of the Congregational Christian Church and the Evangelical and Reformed Church in 1957
+17424,United_Kingdom UK U.K. Britain United_Kingdom_of_Great_Britain_and_Northern_Ireland Great_Britain,a monarchy in northwestern Europe occupying most of the British Isles; divided into England and Scotland and Wales and Northern Ireland; `Great Britain' is often used loosely to refer to the United Kingdom
+17425,United_Methodist_Church,union of the Wesleyan Methodist Church and the Evangelical United Brethren Church
+17426,United_Mine_Workers_of_America United_Mine_Workers,an industrial union of mine workers in North America
+17427,United_Nations UN,an organization of independent states formed in 1945 to promote international peace and security
+17428,United_Nations_Children's_Fund United_Nations_International_Children's_Emergency_Fund UNICEF,an agency of the United Nations responsible for programs to aid education and the health of children and mothers in developing countries
+17429,United_Nations_Crime_Prevention_and_Criminal_Justice Centre_for_International_Crime_Prevention,the United Nations office responsible for crime prevention and criminal justice and law reform
+17430,United_Nations_Day October_24,a day for celebrating the founding of the United Nations
+17431,United_Nations_Educational_Scientific_and_Cultural_Organization UNESCO,an agency of the United Nations that promotes education and communication and the arts
+17432,United_Nations_Office_for_Drug_Control_and_Crime_Prevention DCCP,an agency of the United Nations that promotes drug control and crime prevention
+17433,United_Nations_Secretariat,the administrative arm of the United Nations
+17434,United_Nations_agency UN_agency,an agency of the United Nations
+17435,United_Self-Defense_Force_of_Colombia United_Self-Defense_Group_of_Colombia Autodefensas_Unidas_de_Colombia AUC,a terrorist organization in Colombia formed in 1997 as an umbrella for local and regional paramilitary groups; is financed by earnings from narcotics and serves to protect the economic interests of its members; "the AUC conducted over 800 assassinations in one year"
+17436,United_States United_States_of_America America the_States US U.S. USA U.S.A.,North American republic containing 50 states - 48 conterminous states in North America plus Alaska in northwest North America and the Hawaiian Islands in the Pacific Ocean; achieved independence in 1776
+17437,United_States_Air_Force U._S._Air_Force US_Air_Force Air_Force USAF,the airforce of the United States of America; the agency that defends the United States through control and exploitation of air and space
+17438,United_States_Air_Force_Academy US_Air_Force_Academy,a school for training men and women to become officers in the United States Air Force
+17439,United_States_Army US_Army U._S._Army Army USA,the army of the United States of America; the agency that organizes and trains soldiers for land warfare
+17440,United_States_Army_Criminal_Investigation_Laboratory U.S._Army_Criminal_Investigation_Laboratory US_Army_Criminal_Investigation_Laboratory USACIL,a defense laboratory of the Criminal Investigation Command; the United States Army's primary forensic laboratory in support of criminal intelligence
+17441,United_States_Army_Rangers,a specially trained elite unit of the United States Army
+17442,United_States_Border_Patrol US_Border_Patrol,the mobile law enforcement arm of the Immigration and Naturalization Service that detects and prevents illegal entry of aliens into the United States
+17443,United_States_Cabinet US_Cabinet,a board to advise the President; members are the secretaries of executive departments; the United States constitution does not provide for the cabinet
+17444,United_States_Coast_Guard U._S._Coast_Guard US_Coast_Guard,an agency of the Department of Transportation responsible for patrolling shores and facilitating nautical commerce
+17445,United_States_Code U._S._Code,a consolidation and codification by subject matter of the general and permanent laws of the United States; is prepared and published by a unit of the United States House of Representatives
+17446,United_States_Constitution U.S._Constitution US_Constitution Constitution Constitution_of_the_United_States,the constitution written at the Constitutional Convention in Philadelphia in 1787 and subsequently ratified by the original thirteen states
+17447,United_States_Customary_System,the system of weights and measures based on the foot and pound and second and pint that dates back to colonial America but differs in some respects from the British Imperial System; today in the United States this system exists side by side with the SI system
+17448,United_States_Fish_and_Wildlife_Service US_Fish_and_Wildlife_Service FWS,an agency in the Department of the Interior that conserves and protects fish and wildlife and their habitats; assesses the environmental impact of pesticides and nuclear power site and hydroelectric dams and thermal pollution
+17449,United_States_Government_Printing_Office US_Government_Printing_Office Government_Printing_Office GPO,an agency of the legislative branch that provides printing and binding services for Congress and the departments and establishments of the federal government
+17450,United_States_House_of_Representatives U.S._House_of_Representatives US_House_of_Representatives House_of_Representatives U.S._House US_House,the lower legislative house of the United States Congress
+17451,United_States_Marine_Corps United_States_Marines Marine_Corps US_Marine_Corps USMC Marines,an amphibious division of the United States Navy
+17452,United_States_Marshals_Service US_Marshals_Service Marshals,the United States' oldest federal law enforcement agency is responsible today for protecting the Federal Judiciary and transporting federal prisoners and protecting federal witnesses and managing assets seized from criminals and generally ensuring the effective operation of the federal judicial system
+17453,United_States_Military_Academy US_Military_Academy,a school for training men and women to become officers in the United States Army
+17454,United_States_Mint U.S._Mint US_Mint,the mint that manufactures and distributes United States coins for circulation through Federal Reserve Banks; processes gold and silver bullion
+17455,United_States_Naval_Academy US_Naval_Academy,a school for training men and women to become officers in the United States Navy
+17456,United_States_Navy US_Navy USN Navy,the navy of the United States of America; the agency that maintains and trains and equips combat-ready naval forces
+17457,United_States_Post_Office US_Post_Office Post_Office PO,an independent agency of the federal government responsible for mail delivery (and sometimes telecommunications) between individuals and businesses in the United States
+17458,United_States_Postal_Inspection_Service US_Postal_Inspection_Service,the primary law enforcement arm of the United States Postal Service
+17459,United_States_Postal_Service US_Postal_Service USPS,an independent federal agency that provides mail processing and delivery service for individuals and businesses in the United States
+17460,United_States_Public_Health_Service PHS,an agency that serves as the office of Surgeon General; includes agencies whose mission is to improve the public health
+17461,United_States_Secret_Service US_Secret_Service USSS Secret_Service SS,the United States intelligence agency that protects current and former presidents and vice presidents and their immediate families and protects distinguished foreign visitors; detects and apprehends counterfeiters; suppresses forgery of government securities and documents
+17462,United_States_Senate U.S._Senate US_Senate Senate,the upper house of the United States Congress
+17463,United_States_Trade_Representative US_Trade_Representative,the executive agency that administers the President's policies on international trade
+17464,United_States_Virgin_Islands American_Virgin_Islands VI,more than 130 southeastern Virgin Islands; a dependent territory of the United States
+17465,United_States_dollar,the basic unit of money in the United States
+17466,United_States_dry_unit,a unit of measurement of capacity for dry substances officially adopted in the United States Customary System
+17467,United_States_government United_States U.S._government US_Government U.S.,the executive and legislative and judicial branches of the federal government of the United States
+17468,United_States_intelligence_agency,an intelligence service in the United States
+17469,United_States_liquid_unit,a liquid unit officially adopted in the United States Customary System
+17470,United_States_waters U.S._waters,territorial waters included within a distance of 12 nautical miles of the coasts of the United States and its territories; "ships operating in United States waters must adhere to United States laws and regulations"
+17471,University_of_California_at_Berkeley,a university in Berkeley, California
+17472,University_of_Chicago,a university in Chicago, Illinois
+17473,University_of_Michigan,a university in Ann Arbor, Michigan
+17474,University_of_Nebraska,a university in Lincoln, Nebraska
+17475,University_of_North_Carolina,a university in Chapel Hill, North Carolina
+17476,University_of_Pennsylvania Pennsylvania Penn,a university in Philadelphia, Pennsylvania
+17477,University_of_Pittsburgh,a university in Pittsburgh, Pennsylvania
+17478,University_of_Sussex Sussex_University,a red-brick university in Brighton, England
+17479,University_of_Texas,a university in Austin, Texas
+17480,University_of_Vermont,a university in Burlington, Vermont
+17481,University_of_Washington,a university in Seattle, Washington
+17482,University_of_West_Virginia,a university in Morgantown, West Virginia
+17483,University_of_Wisconsin,a university in Madison, Wisconsin
+17484,Unknown_Soldier,an unidentified soldier whose body is honored as a memorial
+17485,Untermeyer Louis_Untermeyer,United States writer (1885-1977)
+17486,Upanishad,a later sacred text of Hinduism of a mystical nature dealing with metaphysical questions; "the Vedanta philosophy developed from the pantheistic views of the Upanishads"
+17487,Updike John_Updike John_Hoyer_Updike,United States author (born 1932)
+17488,Upjohn Richard_Upjohn,United States architect (born in England) (1802-1878)
+17489,Upper_Egypt,one of the two main administrative districts of Egypt; extends south from Cairo to Sudan
+17490,Upper_Paleolithic,the time period during which only modern Homo sapiens was known to have existed; ended about 10,000 years BC
+17491,Upper_Peninsula,the peninsula between Lake Superior and Lake Michigan that forms the northwestern part of Michigan
+17492,Uppsala Upsala,a city in east central Sweden to the northwest of Stockholm
+17493,Upupa genus_Upupa,type genus of the Upupidae
+17494,Upupidae family_Upupidae,hoopoes
+17495,Ur,an ancient city of Sumer located on a former channel of the Euphrates River
+17496,Ural-Altaic,a (postulated) group of languages including many of the indigenous languages of Russia (but not Russian)
+17497,Uralic Uralic_language,a family of Ural-Altaic languages
+17498,Urals Ural_Mountains,a mountain range in western Russia extending from the Arctic to the Caspian Sea; forms part of the traditional boundary between Europe and Asia
+17499,Urania,(Greek mythology) the Muse of astronomy
+17500,Uranoscopidae family_Uranoscopidae,stargazers
+17501,Uranus,a giant planet with a ring of ice particles; the 7th planet from the sun has a blue-green color and many satellites; "Uranus was discovered by William Herschel in 1781"
+17502,Urban_II Odo Odo_of_Lagery Otho Otho_of_Lagery,French pope from 1088 to 1099 whose sermons called for the First Crusade (1042-1099)
+17503,Urban_V Guillaume_de_Grimoard,French pope from 1362 to 1370 who tried to reestablish the papacy in Rome but in 1367 returned to Avignon hoping to end the war between France and England; canonized in 1870 (1310-1370)
+17504,Urban_VI Bartolomeo_Prignano,Italian pope from 1378 to 1389 whose contested election began the Great Schism; he alienated his political allies by his ruthless treatment of his opponents (1318-1389)
+17505,Urban_VIII Maffeo_Barberini,Italian pope from 1623 to 1644 who sanctioned the condemnation of Galileo but later freed him (1568-1644)
+17506,Urbana,a university town in east central Illinois adjoining Champaign
+17507,Urd Urth,goddess of fate: a giantess who personified the past
+17508,Urdu,the official literary language of Pakistan, closely related to Hindi; widely used in India (mostly by Moslems); written in Arabic script
+17509,Uredinales order_Uredinales,rust fungi: parasitic fungi causing rust in plants; sometimes placed in
+17510,Urey Harold_Urey Harold_Clayton_Urey,United States chemist who discovered deuterium (1893-1981)
+17511,Urginea genus_Urginea,Mediterranean liliaceous plants; sometimes placed in family Hyacinthaceae
+17512,Uria genus_Uria,murres
+17513,Uriah,(Old Testament) the husband of Bathsheba and a soldier who was sent to die in battle so that king David could marry his wife (circa 10th century BC)
+17514,Urim_and_Thummim,lots thrown to determine God's answers to yes-no questions
+17515,Urmia Orumiyeh,a city on the western side of Lake Urmia in northwestern Iran
+17516,Urnula_craterium urn_fungus,an urn-shaped discomycete with a nearly black interior
+17517,Urochordata subphylum_Urochordata Urochorda subphylum_Urochorda Tunicata subphylum_Tunicata,tunicates
+17518,Urocyon genus_Urocyon,grey foxes
+17519,Urocystis genus_Urocystis,a genus of smut fungi belonging to the family Tilletiaceae
+17520,Urodella order_Urodella Caudata order_Caudata,salamanders; newts; congo snakes
+17521,Urophycis genus_Urophycis,hakes
+17522,Uropsilus genus_Uropsilus,shrew moles
+17523,Urosaurus genus_Urosaurus,a reptile genus of Iguanidae
+17524,Ursidae family_Ursidae,bears and extinct related forms
+17525,Ursus genus_Ursus,type genus of Ursidae: brown bears; in some classifications genus Ursus includes all bears
+17526,Urtica genus_Urtica,a nettle yielding fiber resembling flax
+17527,Urticaceae family_Urticaceae nettle_family,a family of plants of order Urticales including many nettles with stinging hairs
+17528,Urticales order_Urticales,an order of dicotyledonous plants including Moraceae and Urticaceae and Ulmaceae
+17529,Urubupunga Urubupunga_Falls,a waterfall in the Parana river in Brazil
+17530,Uruguay,a South American republic on the southeast coast of South America; achieved independence from Brazil in 1825
+17531,Uruguay_River,a South American river that arises in southern Brazil and flows south to the Rio de la Plata; the northern section forms the boundary between Argentina and Brazil and the southern section forms the boundary between Argentina and Uruguay
+17532,Uruguay_potato,similar to the common potato
+17533,Uruguay_potato Uruguay_potato_vine Solanum_commersonii,South American potato vine
+17534,Uruguayan,a native or inhabitant of Uruguay
+17535,Uruguayan_monetary_unit,monetary unit in Uruguay
+17536,Uruguayan_peso peso,the basic unit of money in Uruguay; equal to 100 centesimos
+17537,Ushas,Hindu goddess of dawn; daughter of the sky and sister of the night
+17538,Usnea genus_Usnea,widely distributed lichens usually having a greyish or yellow pendulous freely branched thallus
+17539,Usneaceae family_Usneaceae,fruticose lichens having prostrate or erect or pendulous thalli: genera Usnea, Evernia, Ramalina, Alectoria
+17540,Ussher James_Ussher Usher James_Usher,Irish prelate who deduced from the Bible that Creation occurred in the year 4004 BC (1581-1656)
+17541,Ustilaginaceae family_Ustilaginaceae,a fungus family of loose smuts
+17542,Ustilaginales order_Ustilaginales,parasitic fungi causing smuts; sometimes placed in class Tiliomycetes
+17543,Ustilaginoidea genus_Ustilaginoidea,genus of imperfect fungi causing plant diseases like smut
+17544,Ustilago genus_Ustilago,type genus of the Ustilaginaceae; genus comprising the loose smuts
+17545,Ustinov Sir_Peter_Ustinov Peter_Alexander_Ustinov,British actor and playwright (1921-2004)
+17546,Usuli,a religious movement by Persian Shiite Muslims in 17th century Iran that is opposed to the Akhbari; "Usuli Shiism produced the politically active caste of priests that is a distinctive feature of Iranian Shiism"
+17547,Uta genus_Uta,a reptile genus of Iguanidae
+17548,Utah Beehive_State Mormon_State UT Ut.,a state in the western United States; settled in 1847 by Mormons led by Brigham Young
+17549,Utahan,a native or resident of Utah
+17550,Ute,a member of the Shoshonean people of Utah and Colorado and New Mexico
+17551,Ute,the Shoshonean language spoken by the Utes
+17552,Utica,a city in central New York
+17553,Utica,an ancient city on the north coast of Africa (northwest of Carthage); destroyed by Arabs around 700 AD
+17554,Utnapishtim,favorite of the gods and grandfather of Gilgamish; survived the great flood and became immortal
+17555,Uto-Aztecan Uto-Aztecan_language,a family of American Indian languages
+17556,Utopia,a book written by Sir Thomas More (1516) describing the perfect society on an imaginary island
+17557,Utopia Zion Sion,an imaginary place considered to be perfect or ideal
+17558,Utopian,an idealistic (but usually impractical) social reformer; "a Utopian believes in the ultimate perfectibility of man"
+17559,Utopianism,the political orientation of a Utopian who believes in impossibly idealistic schemes of social perfection
+17560,Utrecht,a city in the central Netherlands
+17561,Utricularia genus_Utricularia,bladderworts: large genus of aquatic carnivorous plants; cosmopolitan in distribution
+17562,Utrillo Maurice_Utrillo,French painter noted for his paintings of Parisian street scenes (1883-1955)
+17563,Uttar_Pradesh,a state in northern India
+17564,Utu Utug,sun god; counterpart of Akkadian Shamash
+17565,Uvularia genus_Uvularia,genus of perennial rhizomatous herb of southern and southeastern United States
+17566,Uvulariaceae subfamily_Uvulariaceae,one of many subfamilies into which some classification systems subdivide the Liliaceae
+17567,Uzbek Uzbeg Uzbak Usbek Usbeg,a member of a Turkic people of Uzbekistan and neighboring areas
+17568,Uzbek Uzbeg Uzbak Usbek Usbeg,the Turkic language spoken by the Uzbek
+17569,Uzbekistan Republic_of_Uzbekistan Uzbek,a landlocked republic in west central Asia; formerly an Asian soviet
+17570,Uzbekistani_monetary_unit,monetary unit in Uzbekistan
+17571,Uzi,a type of submachine gun that is designed and manufactured in Israel; "the Uzi is used throughout the world as a police and special forces firearm"
+17572,V v,the 22nd letter of the Roman alphabet
+17573,V-8_juice,brand name for canned mixed vegetable juices
+17574,V-E_Day 8_May_1945,the date of Allied victory in Europe, World War II
+17575,V-J_Day 15_August_1945,the date of Allied victory over Japan, World War II
+17576,V-day Victory_Day,the day of a victory
+17577,VAT value-added_tax ad_valorem_tax,a tax levied on the difference between a commodity's price before taxes and its cost of production
+17578,VX_gas,a highly lethal nerve agent used in chemical warfare; a toxic liquid that penetrates the skin or lungs to disrupt the nervous system and stop respiration; in combat VX gas is deployed by detonating a container over the target area and can persist in the environment up to several weeks after release; "VX gas is one of those things we wish we could disinvent"
+17579,V_neck,the neck of a garment has the shape of the letter V
+17580,V_sign,a sign (for victory); making a V with the index and middle fingers
+17581,Vaccaria genus_Vaccaria,cow-cockles
+17582,Vaccinium genus_Vaccinium,evergreen or deciduous berry-bearing shrubs of northern hemisphere: cranberries; blueberries
+17583,Vaduz capital_of_Liechtenstein,the capital and largest city of Liechtenstein
+17584,Vaishnava,worshipper of Vishnu
+17585,Vaishnavism Vaisnavism,Hindu sect worshiping of Vishnu
+17586,Vaishnavism Vaisnavism Vishnuism,worship of Vishnu one of the 3 chief gods of the Hindu pantheon
+17587,Vaisya,a member of the mercantile and professional Hindu caste; the third of the four main castes
+17588,Vajra,Indra's thunderbolt
+17589,Valdez,a port on Alaska's southern coast from which oil is shipped to markets around the world
+17590,Valdosta,a town in southern Georgia near the Florida border
+17591,Valencia,an industrial city in northern Venezuela
+17592,Valencia,a city in eastern Spain on the Mediterranean; "Valencia is the third largest city in Spain"
+17593,Valencia_orange,variety of sweet orange cultivated extensively in Florida and California
+17594,Valenciennes,a town in northeastern France long noted for its lace industry
+17595,Valenciennes Valenciennes_lace,a type of bobbin lace with floral patterns
+17596,Valentine,a card sent or given (as to a sweetheart) on Saint Valentine's Day
+17597,Valentine_Day Valentine's_Day Saint_Valentine's_Day St_Valentine's_Day February_14,a day for the exchange of tokens of affection
+17598,Valeriana genus_Valeriana,genus of widely distributed perennial herbs and some shrubs
+17599,Valerianaceae family_Valerianaceae valerian_family,genus of mostly herbs having a characteristic fetid odor
+17600,Valerianella genus_Valerianella,genus of Old World annual herbs widely naturalized
+17601,Valhalla Walhalla,(Norse mythology) the hall in which the souls of heros slain in battle were received by Odin
+17602,Vali,(Norse mythology) one of the Aesir and avenger of Balder; son of Odin
+17603,Valkyrie,(Norse mythology) one of the maidens of Odin who chose heroes to be slain in battle and conducted them to Valhalla
+17604,Valle_D'Aosta,a region in northwestern Italy
+17605,Valletta Valetta capital_of_Malta,the capital of Malta; located on the northeastern coast of the island
+17606,Vallisneria genus_Vallisneria,eelgrass; eel grass
+17607,Valmy battle_of_Valmy,the French defeated the Austrian and Prussian troops in 1792 (with a famous cannonade from the French artillery)
+17608,Valois,French royal house from 1328 to 1589
+17609,Valparaiso,the chief port and second largest city of Chile; located on a wide harbor in central Chile
+17610,Van_Allen James_Alfred_Van_Allen,United States physicist who discovered two belts of charged particles from the solar wind trapped by the Earth's magnetic field (born in 1914)
+17611,Van_Allen_belt,a belt of charged particles (resulting from cosmic rays) above the Earth trapped by the Earth's magnetic field
+17612,Van_Buren Martin_Van_Buren President_Van_Buren,8th President of the United States (1782-1862)
+17613,Van_Doren Carl_Van_Doren Carl_Clinton_Van_Doren,United States writer and literary critic (1885-1950)
+17614,Van_Vleck John_Van_Vleck John_Hasbrouck_Van_Vleck,United States physicist (1899-1980)
+17615,Van_de_Graaff Robert_Van_de_Graaff Robert_Jemison_Van_de_Graaff,United States physicist (1901-1967)
+17616,Vanbrugh John_Vanbrugh Sir_John_Vanbrigh,English architect (1664-1726)
+17617,Vancouver,a town in southwestern Washington on the Columbia River across from Portland, Oregon
+17618,Vancouver,a port city in southwestern British Columbia on an arm of the Pacific Ocean opposite Vancouver Island; Canada's chief Pacific port and third largest city
+17619,Vancouver George_Vancouver,English navigator remembered for his exploration of the Pacific coast of North America (1757-1798)
+17620,Vancouver_Island,an island off southwestern Canada (off the southwestern coast of British Columbia); the largest island off the west coast of North America
+17621,Vandal,a member of the Germanic people who overran Gaul and Spain and North Africa and sacked Rome in 455
+17622,Vanderbilt Cornelius_Vanderbilt Commodore_Vanderbilt,United States financier who accumulated great wealth from railroad and shipping businesses (1794-1877)
+17623,Vandyke Van_Dyck Anthony_Vandyke Sir_Anthony_Vandyke,Flemish painter of numerous portraits (1599-1641)
+17624,Vandyke_brown,a moderate brown color
+17625,Vanellus genus_Vanellus,Eurasian lapwings
+17626,Vanessa genus_Vanessa,painted beauty and red admiral
+17627,Vangueria genus_Vangueria,tropical African and Asiatic trees and shrubs having one-seeded fruit
+17628,Vanir,(Norse mythology) group of ancient gods sometimes in conflict with the Aesir
+17629,Vanua_Levu,a volcanic island in the Fijis
+17630,Vanuatu Republic_of_Vanuatu New_Hebrides,a volcanic island republic in Melanesia; independent since 1980
+17631,Vanzetti Bartolomeo_Vanzetti,United States anarchist (born in Italy) who with Nicola Sacco was convicted of murder and in spite of world-wide protest was executed (1888-1927)
+17632,Varanidae family_Varanidae,monitor lizards
+17633,Varanus genus_Varanus,type and sole extant genus of the Varanidae
+17634,Varese Edgar_Varese,United States composer (born in France) whose music combines dissonance with complex rhythms and the use of electronic techniques (1883-1965)
+17635,Vargas Getulio_Dornelles_Vargas,Brazilian statesman who ruled Brazil as a virtual dictator (1883-1954)
+17636,Vargas_Llosa Mario_Vargas_Llosa Jorge_Mario_Pedro_Vargas_Llosa,Peruvian writer (born in 1936)
+17637,Varna,a port city in northeastern Bulgaria on the Black Sea
+17638,Varro Marcus_Terentius_Varro,Roman scholar (116-27 BC)
+17639,Varuna,in Vedism, god of the night sky who with his thousand eyes watches over human conduct and judges good and evil and punishes evildoers; often considered king of the Hindu gods and frequently paired with Mitra as an upholder of the world
+17640,Vasarely Viktor_Vasarely,French painter (born in Hungary) who was a pioneer of op art (1908-1997)
+17641,Vasari Giorgio_Vasari,Italian painter and art historian (1511-1574)
+17642,Vaseline,a trademarked brand of petroleum jelly
+17643,Vatican Vatican_Palace,the residence of the Catholic Pope in the Vatican City
+17644,Vatican_City Citta_del_Vaticano,the capital of the State of the Vatican City
+17645,Vatican_Council,each of two councils of the Roman Catholic Church
+17646,Vaughan Sarah_Vaughan,United States jazz singer noted for her complex bebop phrasing and scat singing (1924-1990)
+17647,Vaughan_Williams Ralph_Vaughan_Williams,English composer influenced by folk tunes and music of the Tudor period (1872-1958)
+17648,Vaux Calvert_Vaux,United States landscape architect (born in England) who designed Central Park (1824-1895)
+17649,Vayu,Hindu wind god
+17650,Veadar Adar_Sheni,included seven times in every 19 years
+17651,Veblen Oswald_Veblen,United States mathematician (1880-1960)
+17652,Veblen Thorstein_Veblen Thorstein_Bunde_Veblen,United States economist who wrote about conspicuous consumption (1857-1929)
+17653,Vedanga,Vedic texts from the fifth and fourth centuries BC dealing with phonetics and ritual injunctions and linguistics and grammar and etymology and lexicography and prosody and astronomy and astrology
+17654,Vedanta,(from the Sanskrit for `end of the Veda') one of six orthodox philosophical systems or viewpoints rooted in the Upanishads as opposed to Mimamsa which relies on the Vedas and Brahmanas
+17655,Vedic_literature Veda,(from the Sanskrit word for `knowledge') any of the most ancient sacred writings of Hinduism written in early Sanskrit; traditionally believed to comprise the Samhitas, the Brahmanas, the Aranyakas, and the Upanishads
+17656,Vedism,the form of Hinduism that revolves primarily around the mythic version and ritual ideologies in the Vedas
+17657,Vedist,a scholar of or an authority on the Vedas
+17658,Vega,the brightest star in the constellation Lyra
+17659,Vega Lope_de_Vega Lope_Felix_de_Vega_Carpio,prolific Spanish playwright (1562-1635)
+17660,Vela,a constellation in the southern hemisphere between Carina and Pyxis; "because of its configuration Vela is sometimes called `the Sails'"
+17661,Velazquez Diego_Rodriguez_de_Silva_y_Velazquez,Spanish painter (1599-1660)
+17662,Velcro,nylon fabric used as a fastening
+17663,Velveeta,trademark: soft processed American cheese
+17664,Vendemiaire,first month of the Revolutionary calendar (September and October); the month of the grape harvest
+17665,Veneridae family_Veneridae,hard-shell clams
+17666,Venetian,a resident of Venice
+17667,Venetian_blind,a window blind made of horizontal strips that overlap when closed
+17668,Venetian_glass,fine glassware made near Venice
+17669,Venetian_sumac wig_tree Cotinus_coggygria,Old World shrub having large plumes of yellowish feathery flowers resembling puffs of smoke
+17670,Veneto Venezia-Euganea Venetia,a region of northeastern Italy on the Adriatic
+17671,Venezuela Republic_of_Venezuela,a republic in northern South America on the Caribbean; achieved independence from Spain in 1811; rich in oil
+17672,Venezuelan,a native or inhabitant of Venezuela
+17673,Venezuelan_monetary_unit,monetary unit of Venezuela
+17674,Venice Venezia,the provincial capital of Veneto; built on 118 islands within a lagoon in the Gulf of Venice; has canals instead of streets; one of Italy's major ports and a famous tourist attraction
+17675,Venn John_Venn,English logician who introduced Venn diagrams (1834-1923)
+17676,Venn_diagram Venn's_diagram,a diagram that uses circles to represent mathematical or logical sets pictorially inside a rectangle (the universal set); elements that are common to more than one set are represented by intersections of the circles
+17677,Ventner Craig_Ventner J._Craig_Ventner,United States geneticist who published the complete base sequences for all the genes of a free-living organism, the influenza bacterium; later led team that developed a first draft of the entire human genome (born in 1946)
+17678,Ventose,sixth month of the Revolutionary calendar (February and March); the windy month
+17679,Venturi Robert_Venturi Robert_Charles_Venturi,United States architect (born in 1925)
+17680,Venturi_tube,a short tube inserted into a pipeline and used to measure the quantity of a liquid that is flowing in the pipeline
+17681,Venus,the second nearest planet to the sun; it is peculiar in that its rotation is slow and retrograde (in the opposite sense of the Earth and all other planets except Uranus); it is visible from Earth as an early `morning star' or an `evening star'; "before it was known that they were the same object the evening star was called Venus and the morning star was called Lucifer"
+17682,Venus Urania,goddess of love; counterpart of Greek Aphrodite
+17683,Venus genus_Venus,type genus of the family Veneridae: genus of edible clams with thick oval shells
+17684,Venus'_slipper Venus's_slipper Venus's_shoe,any of various orchids of the genus Paphiopedilum having slender flower stalks bearing 1 to several waxy flowers with pouchlike lips
+17685,Venus's_flower_basket,a deep-water marine sponge having a cylindrical skeleton of intricate glassy latticework; found in the waters of the East Indies and the eastern coast of Asia
+17686,Venus's_flytrap Venus's_flytraps Dionaea_muscipula,carnivorous plant of coastal plains of the Carolinas having sensitive hinged marginally bristled leaf blades that close and entrap insects
+17687,Venus's_girdle Cestum_veneris,ctenophore having a ribbon-shaped iridescent gelatinous body
+17688,Veps Vepse Vepsian,a member of a Finnish people of Russia
+17689,Veps Vepse Vepsian,a Finnic language spoken by the Veps
+17690,Veracruz,a major Mexican port on the Gulf of Mexico in the state of Veracruz
+17691,Veratrum genus_Veratrum,a genus of coarse poisonous perennial herbs; sometimes placed in subfamily Melanthiaceae
+17692,Verbascum genus_Verbascum,genus of coarse herbs and subshrubs mostly with woolly leaves
+17693,Verbenaceae family_Verbenaceae verbena_family vervain_family,family of New World tropical and subtropical herbs and shrubs and trees
+17694,Verbesina genus_Verbesina,herbs and shrubs of warm North America to Mexico; includes plants formerly placed in genus Actinomeris
+17695,Verdandi Verthandi,goddess of fate: an elf who personified the present
+17696,Verdi Giuseppe_Verdi Guiseppe_Fortunino_Francesco_Verdi,Italian operatic composer (1813-1901)
+17697,Verdicchio,a variety of white wine grape grown in Italy
+17698,Verdicchio,a dry white Italian wine made from Verdicchio grapes
+17699,Verdun battle_of_Verdun,a battle in World War I (1916); in some of the bloodiest fighting in World War I the German offensive was stopped
+17700,Verlaine Paul_Verlaine,French symbolist poet (1844-1896)
+17701,Vermeer Jan_Vermeer Jan_van_der_Meer,Dutch painter renowned for his use of light (1632-1675)
+17702,Vermont Green_Mountain_State VT Vt.,a state in New England
+17703,Vermonter,a native or resident of Vermont
+17704,Verne Jules_Verne,French writer who is considered the father of science fiction (1828-1905)
+17705,Verner Karl_Adolph_Verner,Danish philologist (1846-1896)
+17706,Verner's_law,a qualification of Grimm's law
+17707,Vernier Paul_Vernier,French mathematician who described the vernier scale (1580-1637)
+17708,Verona,a city in Veneto on the River Adige
+17709,Veronese Paolo_Veronese Paola_Caliari,Italian painter of the Venetian school (1528-1588)
+17710,Verpa bell_morel,a morel whose fertile portion resembles a bell and is attached to the stipe only at the top
+17711,Verpa_bohemica early_morel,resembles a thimble on a finger; the surface of the fertile portion is folded into wrinkles that extend from the top down; fruiting begins in spring before the leaves are out on the trees
+17712,Verpa_conica conic_Verpa,a morel with a fertile portion that has a relatively smooth surface; the stalk is fragile
+17713,Verrazano Giovanni_da_Verrazano Verrazzano Giovanni_da_Verrazzano,Florentine navigator who explored the eastern coast of North America (circa 1485-1528)
+17714,Verrazano-Narrows_Bridge,a suspension bridge across the Verrazano Narrows between Brooklyn and Staten Island
+17715,Verrazano_Narrows,a narrow channel of water separating Staten Island and Brooklyn
+17716,Versace Gianni_Versace,Italian fashion designer (1946-1997)
+17717,Versailles,a city in north central France near Paris; site of the Palace of Versailles that was built by Louis XIV in the 17th century
+17718,Versailles Palace_of_Versailles,a palace built in the 17th century for Louis XIV southwest of Paris near the city of Versailles
+17719,Vertebrata subphylum_Vertebrata Craniata subphylum_Craniata,fishes; amphibians; reptiles; birds; mammals
+17720,Verwoerd Hendrik_Verwoerd Hendrik_Frensch_Verwoerd,South African statesman who instituted the policy of apartheid (1901-1966)
+17721,Very_Reverend,a title of respect for various ecclesiastical officials (as cathedral deans and canons and others)
+17722,Very_light Very-light,a colored flare fired from a Very pistol
+17723,Very_pistol Verey_pistol,a pistol for firing Very-light flares
+17724,Vesalius Andreas_Vesalius,a Flemish surgeon who is considered the father of modern anatomy (1514-1564)
+17725,Vesey Denmark_Vesey,United States freed slave and insurrectionist in South Carolina who was involved in planning an uprising of slaves and was hanged (1767-1822)
+17726,Vesicaria genus_Vesicaria,small genus of chiefly Mediterranean herbs: bladderpods
+17727,Vespa genus_Vespa,type genus of the Vespidae: various hornets and yellow jackets
+17728,Vespasian Titus_Flavius_Sabinus_Vespasianus,Emperor of Rome and founder of the Flavian dynasty who consolidated Roman rule in Germany and Britain and reformed the army and brought prosperity to the empire; began the construction of the Colosseum (9-79)
+17729,Vespertilio genus_Vespertilio,a genus of Vespertilionidae
+17730,Vespertilionidae family_Vespertilionidae,the majority of common bats of temperate regions of the world
+17731,Vespidae family_Vespidae,an arthropod family of the order Hymenoptera including: yellow jackets; hornets; mason wasps
+17732,Vespucci Amerigo_Vespucci Americus_Vespucius,Florentine navigator who explored the coast of South America; America was named in his honor (1454-1512)
+17733,Vespula genus_Vespula,sometimes considered a subgenus of Vespa: social wasps
+17734,Vesta,(Roman mythology) goddess of the hearth and its fire whose flame was tended by vestal virgins; counterpart of Greek Hestia
+17735,Vesta,the brightest asteroid but the fourth to be discovered
+17736,Vestris Gaetan_Vestris,Italian dancing-master for Louis XVI who was considered the greatest dancer of his day; he was the first to discard the mask in mime (1729-1808)
+17737,Vesuvius Mount_Vesuvius Mt._Vesuvius,a volcano in southwestern Italy on the Mediterranean coast; a Plinian eruption in 79 AD buried Pompeii and killed Pliny the Elder; last erupted in 1944
+17738,Veterans_Day Veterans'_Day Armistice_Day November_11,a legal holiday in the United States; formerly Armistice Day but called Veterans' Day since 1954
+17739,Veterans_of_Foreign_Wars VFW,an organization of United States war veterans
+17740,Vetluga Vetluga_River,a river in central Russia; flows generally southward into the Volga
+17741,Viborg,a town of Denmark in north central Jutland
+17742,Vibrio_fetus,bacteria that cause abortion in sheep
+17743,Viburnum genus_Viburnum,deciduous or evergreen shrubs or small trees: arrow-wood; wayfaring tree
+17744,Vice_President_of_the_United_States,the vice president of the United States who presides over the United States Senate
+17745,Vicente_Lopez,an industrial suburb of Buenos Aires
+17746,Vichy,a town in central France (south of Paris) noted for hot mineral springs; was capital of the unoccupied part of France during World War II
+17747,Vichy_water,sparkling mineral water from springs at Vichy, France or water similar to it
+17748,Vicia genus_Vicia,widely distributed genus of annual or perennial and often climbing herbs
+17749,Vicksburg,a town in western Mississippi on bluffs above the Mississippi River to the west of Jackson; focus of an important campaign during the American Civil War as the Union fought to control the Mississippi River and so to cut the Confederacy into two halves
+17750,Vicksburg siege_of_Vicksburg,a decisive battle in the American Civil War (1863); after being besieged for nearly seven weeks the Confederates surrendered
+17751,Victor_Emanuel_II,king of Italy who completed the unification of Italy by acquiring Venice and Rome (1820-1878)
+17752,Victor_Emanuel_III,king of Italy who appointed Mussolini prime minister; he abdicated in 1946 and the monarchy was abolished (1869-1947)
+17753,Victoria,(Roman mythology) goddess of victory; counterpart of Greek Nike
+17754,Victoria,a town in southeast Texas to the southeast of San Antonio
+17755,Victoria,a state in southeastern Australia
+17756,Victoria,capital of the Canadian province of British Columbia on Vancouver Island
+17757,Victoria Queen_Victoria,queen of Great Britain and Ireland and empress of India from 1837 to 1901; the last Hanoverian ruler of England (1819-1901)
+17758,Victoria Victoria_Falls,a waterfall in the Zambezi River on the border between Zimbabwe and Zambia; diminishes seasonally
+17759,Victoria capital_of_Seychelles,port city and the capital of Seychelles
+17760,Victoria_Cross,a British military decoration for gallantry
+17761,Victoria_Day,a public holiday in Canada on the Monday on or before May 24th
+17762,Victoria_Land,a mountainous area of Antarctica bounded by the Ross Sea and Wilkes Land
+17763,Victoria_plum,a large red plum served as dessert
+17764,Victoria_sandwich Victoria_sponge,a cake consisting of two layers of sponge cake with a jelly filling in between
+17765,Victorian,a person who lived during the reign of Victoria
+17766,Victorian_age,a period in British history during the reign of Queen Victoria in the 19th century; her character and moral standards restored the prestige of the British monarchy but gave the era a prudish reputation
+17767,Victorian_architecture,a style of architecture used in Britain during the reign of Queen Victoria; characterized by massive construction and elaborate ornamentation
+17768,Victoriana,collection of materials of or characteristic of the Victorian era
+17769,Victrola,a brand of gramophone
+17770,Vicugna genus_Vicugna,a genus of Camelidae
+17771,Vidal Gore_Vidal Eugene_Luther_Vidal,United States writer (born in 1925)
+17772,Vidalia,a town in central Georgia; the origin of Vidalia onions
+17773,Vidalia_onion,sweet-flavored onion grown in Georgia
+17774,Vidua genus_Vidua,whydahs
+17775,Vienna Austrian_capital capital_of_Austria,the capital and largest city of Austria; located on the Danube in northeastern Austria; was the home of Beethoven and Brahms and Haydn and Mozart and Schubert and Strauss
+17776,Vienna_sausage,short slender frankfurter usually with ends cut off
+17777,Vienne,a town in south central France where is 1311-1313 the Roman Catholic Church held one of its councils
+17778,Vienne Council_of_Vienne,the council in 1311-1313 that dealt with alleged crimes of the Knights Templar, planned a new crusade, and took on the reformation of the clergy
+17779,Vientiane Laotian_capital capital_of_Laos,the capital and largest city of Laos
+17780,Vieques,a small island off the coast of Puerto Rico used for target practice by the United States Navy
+17781,Vietnam Socialist_Republic_of_Vietnam Viet_Nam Annam,a communist state in Indochina on the South China Sea; achieved independence from France in 1945
+17782,Vietnam_War Vietnam,a prolonged war (1954-1975) between the communist armies of North Vietnam who were supported by the Chinese and the armies of South Vietnam who were supported by the United States
+17783,Vietnamese Annamese,a native or inhabitant of Vietnam
+17784,Vietnamese Annamese Annamite,the Mon-Khmer language spoken in Vietnam
+17785,Vietnamese_monetary_unit,monetary unit in Vietnam
+17786,Vigee-Lebrun Elisabeth_Vigee-Lebrun Marie_Louise_Elisabeth_Vigee-Lebrun,French painter noted for her portraits (1755-1842)
+17787,Vigna genus_Vigna,genus of vines or erect herbs having trifoliate leaves and yellowish or purplish flowers; of warm or tropical regions; most species often placed in genus Phaseolus
+17788,Viking,any of the Scandinavian people who raided the coasts of Europe from the 8th to the 11th centuries
+17789,Villa Pancho_Villa Francisco_Villa Doroteo_Arango,Mexican revolutionary leader (1877-1923)
+17790,Villa-Lobos Heitor_Villa-Lobos,Brazilian composer (1887-1959)
+17791,Villahermosa Villa_Hermosa,a city in southeastern Mexico; the capital of the state of Tabasco
+17792,Villard Henry_Villard,United States railroad magnate and businessman (1835-1900)
+17793,Villon Francois_Villon,French poet (flourished around 1460)
+17794,Vilnius Vilna Vilno Wilno capital_of_Lithuania,the capital and largest city of Lithuania; located in southeastern Lithuania
+17795,Viminaria genus_Viminaria,one species: Australian leafless shrubs: swamp oak
+17796,Vina_del_Mar,a resort city on the Pacific in central Chile
+17797,Vinca genus_Vinca,periwinkles: low creeping evergreen perennials
+17798,Vincent's_angina Vincent's_infection trench_mouth,an acute communicable infection of the respiratory tract and mouth marked by ulceration of the mucous membrane
+17799,Vincetoxicum genus_Vincetoxicum,genus of chiefly tropical American vines having cordate leaves and large purple or greenish cymose flowers; supposedly having powers as an antidote
+17800,Vinogradoff Sir_Paul_Gavrilovich_Vinogradoff,British historian (born in Russia) (1854-1925)
+17801,Vinson Frederick_Moore_Vinson,United States jurist who served as chief justice of the Supreme Court (1890-1953)
+17802,Vinylite,any of various vinyl resins
+17803,Viola genus_Viola,large genus of flowering herbs of temperate regions
+17804,Violaceae family_Violaceae violet_family,a family of order Parietales including the genera Viola, Hybanthus, Hymenanthera, Melicytus
+17805,Vipera genus_Vipera,type genus of the Viperidae
+17806,Viperidae family_Viperidae,Old World vipers
+17807,Virchow Rudolf_Virchow Rudolf_Karl_Virchow,German pathologist who recognized that all cells come from cells by binary fission and who emphasized cellular abnormalities in disease (1821-1902)
+17808,Vireonidae family_Vireonidae,small insectivorous American songbirds
+17809,Virgil Vergil Publius_Vergilius_Maro,a Roman poet; author of the epic poem `Aeneid' (70-19 BC)
+17810,Virgilia genus_Virgilia,genus of South African trees having pinnate leaves and rose-purple flowers followed by leathery pods
+17811,Virgin_Birth Nativity,the theological doctrine that Jesus Christ had no human father; Christians believe that Jesus's birth fulfilled Old Testament prophecies and was attended by miracles; the Nativity is celebrated at Christmas
+17812,Virgin_Islands,a group of islands in northeastern West Indies (east of Puerto Rico) discovered by Christopher Columbus in 1493; owned by United States and Britain
+17813,Virgin_Islands_National_Park,a national park in the Virgin Islands having tropical plants and animals; sandy beaches and coral reefs
+17814,Virgin_Mary bloody_shame,a Bloody Mary made without alcohol
+17815,Virginia,one of the British colonies that formed the United States
+17816,Virginia,a town in northeastern Minnesota in the heart of the Mesabi Range
+17817,Virginia Old_Dominion Old_Dominion_State VA Va.,a state in the eastern United States; one of the original 13 colonies; one of the Confederate States in the American Civil War
+17818,Virginia_Beach,the largest city in Virginia; long overshadowed by Norfolk but growing rapidly since 1970; with 28 miles of public beaches tourism is a major factor in the economy; site of three United States Navy bases
+17819,Virginia_bluebell Virginia_cowslip Mertensia_virginica,smooth erect herb of eastern North America having entire leaves and showy blue flowers that are pink in bud
+17820,Virginia_chain_fern Woodwardia_virginica,North American fern
+17821,Virginia_creeper American_ivy woodbine Parthenocissus_quinquefolia,common North American vine with compound leaves and bluish-black berrylike fruit
+17822,Virginia_crownbeard frostweed frost-weed Verbesina_virginica,tall perennial herb having clusters of white flowers; the eastern United States
+17823,Virginia_deer white_tail whitetail white-tailed_deer whitetail_deer Odocoileus_Virginianus,common North American deer; tail has a white underside
+17824,Virginia_ham,a lean hickory-smoked ham; has dark red meat
+17825,Virginia_mallow Sida_hermaphrodita,tall handsome perennial herb of southeastern United States having maplelike leaves and white flowers
+17826,Virginia_oyster,common edible oyster of Atlantic coast of North America
+17827,Virginia_reel reel,an American country dance which starts with the couples facing each other in two lines
+17828,Virginia_snakeroot Virginia_serpentaria Virginia_serpentary Aristolochia_serpentaria,birthwort of the eastern United States woodlands
+17829,Virginia_spring_beauty Claytonia_virginica,small cormous perennial grown for its low rosette of succulent foliage and racemes of pink-tinged white flowers; eastern North America
+17830,Virginia_strawberry scarlet_strawberry Fragaria_virginiana,North American wild strawberry with sweet scarlet fruit; a source of many cultivated strawberries
+17831,Virginia_thimbleweed Anemone_virginiana,thimbleweed of central and eastern North America
+17832,Virginia_waterleaf Shawnee_salad shawny Indian_salad John's_cabbage Hydrophyllum_virginianum,showy perennial herb with white flowers; leaves sometimes used as edible greens in southeastern United States
+17833,Virginian,a native or resident of Virginia
+17834,Virginian_stock Virginia_stock Malcolmia_maritima,erect branching herb cultivated for its loose racemes of fragrant white or pink or red or lilac flowers; native to sands and sea cliffs of southwestern Greece and southern Albania
+17835,Virginian_witch_hazel Hamamelis_virginiana,common shrub of eastern North America having small yellow flowers after the leaves have fallen
+17836,Virgo,a large zodiacal constellation on the equator; between Leo and Libra
+17837,Virgo Virgin,(astrology) a person who is born while the sun is in Virgo
+17838,Virgo Virgo_the_Virgin Virgin,the sixth sign of the zodiac; the sun is in this sign from about August 23 to September 22
+17839,Visayan Bisayan,a member of the most numerous indigenous people of the Philippines
+17840,Visayan_Islands Bisayas,group of islands in the central Philippines
+17841,Viscaceae family_Viscaceae mistletoe_family,in some classifications considered a subfamily of Loranthaceae
+17842,Visconti Luchino_Visconti Don_Luchino_Visconti_Conte_di_Modrone,Italian filmmaker (1906-1976)
+17843,Viscum genus_Viscum,type genus of the Viscaceae: Old World evergreen shrubs parasitic on many trees including oaks but especially apple trees, poplars, aspens and cottonwoods
+17844,Vishnu,the sustainer; a Hindu divinity worshipped as the preserver of worlds
+17845,Visigoth,a member of the western group of Goths who sacked Rome and created a kingdom in present-day Spain and southern France
+17846,Vistula Vistula_River,a European river; flows into the Baltic Sea
+17847,Vitaceae family_Vitaceae Vitidaceae grapevine_family,a family of vines belonging to order Rhamnales
+17848,Vitharr Vithar Vidar,(Norse mythology) one of the Aesir; son of Odin; avenges his parent by slaying Fenrir at Ragnarok
+17849,Viti_Levu,a volcanic island in the Fijis
+17850,Vitis genus_Vitis,the type genus of the family Vitaceae; woody vines with simple leaves and small flowers; includes a wide variety of grapes
+17851,Vittaria genus_Vittaria,tropical epiphytic ferns with straplike fronds
+17852,Vittariaceae family_Vittariaceae,one of a number of families into which Polypodiaceae has been subdivided in some classification systems: genus Vittaria
+17853,Vitus St._Vitus,Christian martyr and patron of those who suffer from epilepsy and Sydenham's chorea (died around 300)
+17854,Vivaldi Antonio_Vivaldi Antonio_Lucio_Vivaldi,Italian baroque composer and violinist (1675-1741)
+17855,Viverra genus_Viverra,type genus of the family Viverridae
+17856,Viverricula genus_Viverricula,a genus of Viverridae
+17857,Viverridae family_Viverridae Viverrinae family_Viverrinae,genets; civets; mongooses
+17858,Viyella,a fabric made from a twilled mixture of cotton and wool
+17859,Vizcaino Sebastian_Vizcaino,Spanish explorer who was the first European to explore the California coast (1550-1615)
+17860,Vladivostok,a seaport in the Asian part of Russia
+17861,Vlaminck Maurice_de_Vlaminck,French painter and exponent of fauvism (1876-1958)
+17862,Vogul Mansi,a member of a nomadic people of the northern Urals
+17863,Volans,a small constellation in the polar region of the southern hemisphere near Dorado and Carina
+17864,Volapuk,one of the first artificial language constructed for use as an auxiliary international language; based largely on English but with some German and French and Latin roots
+17865,Volcano_Islands,a group of Japanese Islands in the northwestern Pacific Ocean to the north of the Marianas
+17866,Volga Volga_River,a Russian river; the longest river in Europe; flows into the Caspian Sea
+17867,Volgaic,a group of Finnic languages spoken around the Volga river
+17868,Volgograd Stalingrad Tsaritsyn,a city in the European part of Russia on the Volga; site of German defeat in World War II in the winter of 1942-43
+17869,Volkhov Volkhov_River,a river in northwestern Russia flowing generally north into Lake Ladoga
+17870,Volta,a river in Ghana that flows south to the Bight of Benin
+17871,Volta Count_Alessandro_Volta Conte_Alessandro_Volta Conte_Alessandro_Giuseppe_Antonio_Anastasio_Volta,Italian physicist after whom the volt is named; studied electric currents and invented the voltaic pile (1745-1827)
+17872,Voltaire Arouet Francois-Marie_Arouet,French writer who was the embodiment of 18th century Enlightenment (1694-1778)
+17873,Volund,(Norse mythology) a wonderful smith; identified with Anglo-Saxon Wayland and Teutonic Wieland
+17874,Volvaria genus_Volvaria,agarics having pink spores and a distinct volva
+17875,Volvaria_bombycina,a parasite on various trees
+17876,Volvariaceae family_Volvariaceae,a family of fungi belonging to the order Agaricales
+17877,Volvariella genus_Volvariella,an important genus of mushrooms in the Orient
+17878,Volvariella_bombycina,a mushroom with a dry yellowish to white fibrillose cap
+17879,Volvocaceae family_Volvocaceae,unicellular or colonial biflagellate free-swimming flagellates
+17880,Volvocales order_Volvocales,chiefly freshwater green algae; solitary or colonial
+17881,Volvox genus_Volvox,type genus of the Volvocaceae; minute pale green flagellates occurring in tiny spherical colonies; minute flagella rotate the colony about an axis
+17882,Vombatidae family_Vombatidae,wombats
+17883,Vonnegut Kurt_Vonnegut,United States writer whose novels and short stories are a mixture of realism and satire and science fiction (born in 1922)
+17884,Vouvray,a dry white French wine (either still or sparkling) made in the Loire valley
+17885,Voyageurs_National_Park,a national park in Minnesota having ancient rock outcroppings and evergreen forests
+17886,Voznesenski Andrei_Voznesenski,Russian poet (born in 1933)
+17887,Vuillard Edouard_Vuillard Jean_Edouard_Vuillard,French painter (1868-1940)
+17888,Vulcan,(Roman mythology) god of fire and metal working; counterpart of Greek Hephaestus
+17889,Vulgar_Latin,nonclassical Latin dialects spoken in the Roman Empire; source of Romance languages
+17890,Vulgate,the Latin edition of the Bible translated from Hebrew and Greek mainly by St. Jerome at the end of the 4th century; as revised in 1592 it was adopted as the official text for the Roman Catholic Church
+17891,Vulpecula,a constellation in the northern hemisphere near Cygnus and Sagitta
+17892,Vulpes genus_Vulpes,foxes
+17893,Vultur genus_Vultur,a bird that is usually restricted to the Andean condor
+17894,W w double-u,the 23rd letter of the Roman alphabet
+17895,WASP white_Anglo-Saxon_Protestant,a white person of Anglo-Saxon ancestry who belongs to a Protestant denomination
+17896,WATS WATS_line,a telephone line;long distance service at fixed rates for fixed zones; an acronym for wide area telephone service
+17897,Wabash Wabash_River,a tributary of the Ohio River that rises in western Ohio and flows southwestward across Indiana
+17898,Wac,a member of the Women's Army Corps
+17899,Waco,a city in east central Texas
+17900,Wade Virginia_Wade,English tennis player who won many women's singles titles (born in 1945)
+17901,Wagga_Wagga,a town on the Murrumbidgee River in New South Wales; agricultural trading center
+17902,Wagner,the music of Wagner; "they say that Hitler listened only to Wagner"
+17903,Wagner Otto_Wagner,Austrian architect and pioneer of modern architecture (1841-1918)
+17904,Wagner Richard_Wagner Wilhelm_Richard_Wagner,German composer of operas and inventor of the musical drama in which drama and spectacle and music are fused (1813-1883)
+17905,Wagnerian,a follower of the theories or an admirer of the music of Richard Wagner
+17906,Wagram,a town in northeastern Austria
+17907,Wagram battle_of_Wagram,a battle in the Napoleonic campaigns (1809); Napoleon defeated the Austrians
+17908,Wahhabi Wahabi,a member of a strictly orthodox Sunni Muslim sect from Saudi Arabia; strives to purify Islamic beliefs and rejects any innovation occurring after the 3rd century of Islam; "Osama bin Laden is said to be a Wahhabi Muslim"
+17909,Wahhabism Wahabism,a conservative and intolerant form of Islam that is practiced in Saudi Arabia; "Osama bin Laden and his followers practice Wahhabism"
+17910,Waikiki,a well-known beach and resort area on Oahu Island to the southeast of Honolulu
+17911,Wailing_Wall,a wall in Jerusalem; sacred to Jews as a place of prayer and lamentation; its stones are believed to have formed part of the Temple of Solomon
+17912,Wain John_Wain John_Barrington_Wain,English writer (1925-1994)
+17913,Waite Morrison_Waite Morrison_R._Waite Morrison_Remick_Waite,United States jurist who was appointed chief justice of the United States Supreme Court in 1874 by President Grant (1816-1888)
+17914,Wajda Andrzej_Wajda,Polish filmmaker (born in 1929)
+17915,Wakashan,a member of one of the peoples in British Columbia and Washington who speak the Wakashan language
+17916,Wakashan Wakashan_language,a family of North American Indian languages of British Columbia and Washington
+17917,Wake_Island Wake,an island in the western Pacific between Guam and Hawaii
+17918,Walapai Hualapai Hualpai,a member of a North American people formerly living in the Colorado river valley in Arizona
+17919,Walapai Hualapai Hualpai,the Yuman language spoken by the Walapai
+17920,Walbiri Warlpiri,a language of Australian aborigines
+17921,Waldenses Vaudois,a Christian sect of dissenters that originated in southern France in the late 12th century adopted Calvinist doctrines in the 16th century
+17922,Waldheim Kurt_Waldheim,Austrian diplomat who was Secretary General of the United Nations from 1972 to 1981; in 1986 he was elected president of Austria in spite of worldwide allegations that he had direct knowledge of Nazi atrocities during World War II (born in 1918)
+17923,Waldorf_salad,typically made of apples and celery with nuts or raisins and dressed with mayonnaise
+17924,Wales Cymru Cambria,one of the four countries that make up the United Kingdom of Great Britain and Northern Ireland; during Roman times the region was known as Cambria
+17925,Walesa Lech_Walesa,Polish labor leader and statesman (born in 1943)
+17926,Walker Alice_Walker Alice_Malsenior_Walker,United States writer (born in 1944)
+17927,Walker John_Walker,New Zealand runner who in 1975 became the first person to run a mile in less that 3 minutes and 50 seconds (born in 1952)
+17928,Walker_hound Walker_foxhound,an American breed of foxhound
+17929,Walkman,(trademark) a pocket-sized stereo system with light weight earphones
+17930,Wall_Street Wall_St.,a street in lower Manhattan where the New York Stock Exchange is located; symbol of American finance
+17931,Wall_Street the_Street,used to allude to the securities industry of the United States
+17932,Walla_Walla,a town in southeastern Washington near the Oregon border
+17933,Wallace Alfred_Russel_Wallace,English naturalist who formulated a concept of evolution that resembled Charles Darwin's (1823-1913)
+17934,Wallace Edgar_Wallace Richard_Horatio_Edgar_Wallace,English writer noted for his crime novels (1875-1932)
+17935,Wallace Sir_William_Wallace,Scottish insurgent who led the resistance to Edward I; in 1297 he gained control of Scotland briefly until Edward invaded Scotland again and defeated Wallace and subsequently executed him (1270-1305)
+17936,Wallenstein Albrecht_Eusebius_Wenzel_von_Wallenstein,Austrian general who fought for the Hapsburgs during the Thirty Years' War (1583-1634)
+17937,Waller Fats_Waller Thomas_Wright_Waller,United States jazz musician (1904-1943)
+17938,Walloon,a member of the French-speaking people living in Belgium
+17939,Walloon,a dialect of French spoken in Belgium and adjacent parts of France
+17940,Walloons,an ethnic group speaking a dialect of French and living in southern and eastern Belgium and neighboring parts of France
+17941,Walpole Horace_Walpole Horatio_Walpole Fourth_Earl_of_Orford,English writer and historian; son of Sir Robert Walpole (1717-1797)
+17942,Walpole Robert_Walpole Sir_Robert_Walpole First_Earl_of_Orford,Englishman and Whig statesman who (under George I) was effectively the first British prime minister (1676-1745)
+17943,Walpurgis_Night,eve of May Day
+17944,Walt_Disney_World,a large amusement park established in 1971 to the southwest of Orlando
+17945,Walt_Whitman_Bridge,a suspension bridge across the Delaware River
+17946,Walter Bruno_Walter,German conductor (1876-1962)
+17947,Walter_Mitty,fictional character created by James Thurber who daydreams about his adventures and triumphs
+17948,Walton E._T._S._Walton Ernest_Walton Ernest_Thomas_Sinton_Walton,Irish physicist who (with Sir John Cockcroft in 1931) first split an atom (1903-1995)
+17949,Walton Izaak_Walton,English writer remember for his treatise on fishing (1593-1683)
+17950,Walton William_Walton Sir_William_Walton Sir_William_Turner_Walton,English composer (1902-1983)
+17951,Wampanoag,a member of the Algonquian people of Rhode Island and Massachusetts who greeted the Pilgrims
+17952,Wanamaker John_Wanamaker,United States businessman whose business grew into one of the first department stores (1838-1922)
+17953,Wandering_Jew,a legendary Jew condemned to roam the world for mocking Jesus at the Crucifixion
+17954,Wankel_engine Wankel_rotary_engine epitrochoidal_engine,a rotary engine that is a four-stroke internal-combustion engine without reciprocating parts
+17955,War_Admiral,thoroughbred that won the triple crown in 1937
+17956,War_Department,a former executive department of the United States government; created in 1789 and combined with the Navy Department in 1947
+17957,War_of_1812,a war (1812-1814) between the United States and England which was trying to interfere with American trade with France
+17958,War_of_Greek_Independence,the Greeks rebelled against Turkish rule in 1821; with the support of England and France and Russia they won independence in 1828 at Navarino (although the country included only half its present size)
+17959,War_of_the_Austrian_Succession,Prussia and Austria fought over Silesia and most of the rest of Europe took sides; 1740-1748
+17960,War_of_the_Grand_Alliance War_of_the_League_of_Augsburg,an aggressive war waged by Louis XIV against Spain and the Holy Roman Empire and England and Holland and other states (1689-1697)
+17961,War_of_the_Roses Wars_of_the_Roses,struggle for the English throne (1455-1485) between the house of York (white rose) and the house of Lancaster (red rose) ending with the accession of the Tudor monarch Henry VII
+17962,War_of_the_Spanish_Succession,a general war in Europe (1701-1714) that broke out when Louis XIV installed his grandson on the throne of Spain; England and Holland hoped to limit Louis' power
+17963,Warburg Aby_Warburg Aby_Moritz_Warburg,German art historian (1866-1929)
+17964,Warburg Otto_Heinrich_Warburg,German biochemist who pioneered the use of chemical techniques in biological investigations; noted for studies of cellular respiration (1883-1970)
+17965,Ward Barbara_Ward Baroness_Jackson_of_Lodsworth,English economist and conservationist (1914-1981)
+17966,Ward Montgomery_Ward Aaron_Montgomery_Ward,United States businessman who in 1872 established a successful mail-order business (1843-1913)
+17967,Ward Mrs._Humphrey_Ward Mary_Augusta_Arnold_Ward,English writer of novels who was an active opponent of the women's suffrage movement (1851-1920)
+17968,Warhol Andy_Warhol,United States artist who was a leader of the Pop Art movement (1930-1987)
+17969,Warji,a Chadic language spoken in northern Nigeria
+17970,Warner Charles_Dudley_Warner,United States filmmaker who with his brothers founded the movie studio that produced the first talking picture (1881-1958)
+17971,Warren Earl_Warren,United States jurist who served as chief justice of the United States Supreme Court (1891-1974)
+17972,Warren Robert_Penn_Warren,United States writer and poet (1905-1989)
+17973,Warszawa Warsaw capital_of_Poland,the capital and largest city of Poland; located in central Poland
+17974,Warwick Earl_of_Warwick Richard_Neville Kingmaker,English statesman; during the War of the Roses he fought first for the house of York and secured the throne for Edward IV and then changed sides to fight for the house of Lancaster and secured the throne for Henry VI (1428-1471)
+17975,Washington Booker_T._Washington Booker_Taliaferro_Washington,United States educator who was born a slave but became educated and founded a college at Tuskegee in Alabama (1856-1915)
+17976,Washington Evergreen_State WA Wash.,a state in northwestern United States on the Pacific
+17977,Washington George_Washington President_Washington,1st President of the United States; commander-in-chief of the Continental Army during the American Revolution (1732-1799)
+17978,Washington Washington_D.C. American_capital capital_of_the_United_States,the capital of the United States in the District of Columbia and a tourist mecca; George Washington commissioned Charles L'Enfant to lay out the city in 1791
+17979,Washington's_Birthday February_22,the day on which George Washington is remembered
+17980,Washington_Monument,a stone obelisk built in Washington in 1884 to honor George Washington; 555 feet tall
+17981,Washingtonian,a native or resident of the city of Washington
+17982,Washingtonian,a native or resident of the state of Washington
+17983,Wassermann August_von_Wassermann,German bacteriologist who developed a diagnostic test for syphilis (1866-1925)
+17984,Wassermann_test Wasserman_reaction Wassermann,a blood test to detect syphilis; a complement fixation test is used to detect antibodies to the syphilis organism treponema; a positive reaction indicates the presence of antibodies and therefore syphilis infection
+17985,Waterbury,a city in west central Connecticut
+17986,Waterford,a port city in southern Ireland; famous for glass industry
+17987,Watergate Watergate_scandal,a political scandal involving abuse of power and bribery and obstruction of justice; led to the resignation of Richard Nixon in 1974
+17988,Waterhouse-Friderichsen_syndrome,syndrome associated with bacterial meningitis; marked by sudden high fever and skin discoloration and petechiae with hemorrhage into the adrenal glands and cardiovascular collapse
+17989,Waterloo,a town in central Belgium where in 1815 Napoleon met his final defeat
+17990,Waterloo Battle_of_Waterloo,the battle on 18 June 1815 in which Prussian and British forces under Blucher and the Duke of Wellington routed the French forces under Napoleon
+17991,Waters Ethel_Waters,United States actress and singer (1896-1977)
+17992,Watertown,a town in southeastern Wisconsin
+17993,Watertown,a town in northern New York
+17994,Watson James_Watson James_Dewey_Watson,United States geneticist who (with Crick in 1953) helped discover the helical structure of DNA (born in 1928)
+17995,Watson John_Broadus_Watson,United States psychologist considered the founder of behavioristic psychology (1878-1958)
+17996,Watson Thomas_Augustus_Watson,United States telephone engineer who assisted Alexander Graham Bell in his experiments (1854-1934)
+17997,Watt James_Watt,Scottish engineer and inventor whose improvements in the steam engine led to its wide use in industry (1736-1819)
+17998,Watteau Jean_Antoine_Watteau,French painter (1684-1721)
+17999,Watts Isaac_Watts,English poet and theologian (1674-1748)
+18000,Waugh Evelyn_Waugh Evelyn_Arthur_Saint_John_Waugh,English author of satirical novels (1903-1966)
+18001,Wausau,a town in north central Wisconsin
+18002,Wave,a member of the women's reserve of the United States Navy; originally organized during World War II but now no longer a separate branch
+18003,Wavell Archibald_Percival_Wavell First_Earl_Wavell,British field marshal in North Africa in World War II; he defeated the Italians before being defeated by the Germans (1883-1950)
+18004,Wayland Wayland_the_Smith Wieland,(European mythology) a supernatural smith and king of the elves; identified with Norse Volund
+18005,Wayne Anthony_Wayne Mad_Anthony_Wayne,American general during the American Revolution (1745-1796)
+18006,Wayne John_Wayne Duke_Wayne,United States film actor who played tough heroes (1907-1979)
+18007,Ways_and_Means_Committee,a permanent committee of the United States House of Representatives that makes recommendations to the US House on all bills that would raise revenue
+18008,Web_Map_Service Web_Map_Server,a computer program that produces maps of spatially referenced data dynamically from geographic information
+18009,Webb Beatrice_Webb Martha_Beatrice_Potter_Webb,English writer and a central member of the Fabian Society (1858-1943)
+18010,Webb Sidney_Webb Sidney_James_Webb First_Baron_Passfield,English sociologist and economist and a central member of the Fabian Society (1859-1947)
+18011,Weber Carl_Maria_von_Weber Baron_Karl_Maria_Friedrich_Ernst_von_Weber,German conductor and composer of romantic operas (1786-1826)
+18012,Weber E._H._Weber Ernst_Heinrich_Weber,German physiologist who studied sensory responses to stimuli and is considered the father of psychophysics (1795-1878)
+18013,Weber Max_Weber,United States abstract painter (born in Russia) (1881-1961)
+18014,Weber Max_Weber,German sociologist and pioneer of the analytic method in sociology (1864-1920)
+18015,Weber Wilhelm_Eduard_Weber,German physicist and brother of E. H. Weber; noted for his studies of terrestrial magnetism (1804-1891)
+18016,Weber's_law,(psychophysics) the concept that a just-noticeable difference in a stimulus is proportional to the magnitude of the original stimulus; "Weber's law explains why you don't notice your headlights are on in the daytime"
+18017,Webster Daniel_Webster,United States politician and orator (1782-1817)
+18018,Webster John_Webster,English playwright (1580-1625)
+18019,Webster Noah_Webster,United States lexicographer (1758-1843)
+18020,Weddell_Sea,an arm of the south Atlantic in Antarctica to the east of the Antarctic Peninsula
+18021,Wedgwood,a type of pottery made by Josiah Wedgwood and his successors; typically has a classical decoration in white on a blue background
+18022,Wedgwood Josiah_Wedgwood,English potter (1730-1795)
+18023,Wednesday Midweek Wed,the fourth day of the week; the third working day
+18024,Wegener Alfred_Lothar_Wegener,German geophysicist who proposed the theory of continental drift (1880-1930)
+18025,Wei Wei_dynasty,any of several imperial dynasties of China ruling from 220 to 265 and from 386 to 556
+18026,Weil Andre_Weil,United States mathematician (born in France) (1906-1998)
+18027,Weil Simone_Weil,French philosopher (1909-1943)
+18028,Weil's_disease,a severe form of leptospirosis in human beings
+18029,Weill Kurt_Weill,German composer; collaborated with Bertolt Brecht (1900-1950)
+18030,Weimar,a German city near Leipzig; scene of the adoption in 1919 of the constitution of the Weimar Republic that lasted until 1933
+18031,Weimar_Republic,the German republic founded at Weimar in 1919; "The Weimar Republic was overthrown in 1933 and replaced by the Third Reich"
+18032,Weimaraner,large breed of hound having a smooth greyish coat; originated in Germany
+18033,Weinberg Steven_Weinberg,United States theoretical physicist (born in 1933)
+18034,Weismann August_Friedrich_Leopold_Weismann,German biologist who was one of the founders of modern genetics; his theory of genetic transmission ruled out the possibility of transmitting acquired characteristics (1834-1914)
+18035,Weissbier white_beer wheat_beer,a general name for beers made from wheat by top fermentation; usually very pale and cloudy and effervescent
+18036,Weisshorn,a mountain in the Alps in Switzerland (14,804 feet high)
+18037,Weizenbier,a general name in southern Germany for wheat beers
+18038,Weizenbock,a German wheat beer of bock strength
+18039,Weizmann Chaim_Weizmann Chaim_Azriel_Weizmann,Israeli statesman who persuaded the United States to recognize the new state of Israel and became its first president (1874-1952)
+18040,Weld Theodore_Dwight_Weld,United States abolitionist (1803-1895)
+18041,Welles Orson_Welles George_Orson_Welles,United States actor and filmmaker (1915-1985)
+18042,Wellington Duke_of_Wellington First_Duke_of_Wellington Arthur_Wellesley Iron_Duke,British general and statesman; he defeated Napoleon at Waterloo; subsequently served as Prime Minister (1769-1852)
+18043,Wellington capital_of_New_Zealand,the capital of New Zealand
+18044,Wells H._G._Wells Herbert_George_Wells,prolific English writer best known for his science-fiction novels; he also wrote on contemporary social problems and wrote popular accounts of history and science (1866-1946)
+18045,Welsh Cymric,a Celtic language of Wales
+18046,Welsh Welsh_Black,a breed of dual-purpose cattle developed in Wales
+18047,Welsh_onion Japanese_leek Allium_fistulosum,Asiatic onion with slender bulbs; used as early green onions
+18048,Welsh_pony,breed of small ponies originally from Wales
+18049,Welsh_poppy Meconopsis_cambrica,widely cultivated west European plant with showy pale yellow flowers
+18050,Welsh_rarebit Welsh_rabbit rarebit,cheese melted with ale or beer served over toast
+18051,Welsh_springer_spaniel,a red-and-white breed slightly smaller than the English springer spaniel
+18052,Welsh_terrier,wire-haired terrier resembling Airedales but smaller; developed in Wales for hunting
+18053,Welshman Welsh Cambrian Cymry,a native or resident of Wales
+18054,Weltanschauung world_view,a comprehensive view of the world and human life
+18055,Welty Eudora_Welty,United States writer about rural southern life (1909-2001)
+18056,Welwitschiaceae family_Welwitschiaceae,in some classifications included in the Gnetaceae
+18057,Wembley,a southeastern part of Greater London that is the site of the English national soccer stadium
+18058,Wen_Ch'ang Wen-Ti,Chinese god of literature
+18059,Werdnig-Hoffman_disease,autosomal recessive disease in which the degeneration of spinal nerve cells and brain nerve cells leads to atrophy of skeletal muscles and flaccid paralysis; death usually occurs in early childhood
+18060,Werfel Franz_Werfel,United States writer (1890-1945)
+18061,Wernicke Karl_Wernicke,German neurologist best known for his studies of aphasia (1848-1905)
+18062,Wernicke's_aphasia fluent_aphasia receptive_aphasia sensory_aphasia impressive_aphasia,aphasia characterized by fluent but meaningless speech and severe impairment of the ability understand spoken or written words
+18063,Wernicke's_area Wernicke's_center,the auditory word center; located in the posterior part of the superior temporal convolution in most people
+18064,Wernicke's_encephalopathy,inflammatory degenerative disease of the brain caused by thiamine deficiency that is usually associated with alcoholism
+18065,Weser Weser_River,a river in northwestern Germany that flows northward to the North Sea near Bremerhaven
+18066,Wesley Charles_Wesley,English clergyman and brother of John Wesley who wrote many hymns (1707-1788)
+18067,Wesley John_Wesley,English clergyman and founder of Methodism (1703-1791)
+18068,Wesleyan,a follower of Wesleyanism
+18069,Wesleyan_Methodist_Church Wesleyan_Methodists,the original Methodist Church
+18070,Wesleyanism Wesleyism,evangelical principles taught by John Wesley
+18071,Wessex,a Saxon kingdom in southwestern England that became the most powerful English kingdom by the 10th century
+18072,West Benjamin_West,English painter (born in America) who became the second president of the Royal Academy (1738-1820)
+18073,West Mae_West,United States film actress (1892-1980)
+18074,West Occident,the countries of (originally) Europe and (now including) North America and South America
+18075,West Rebecca_West Dame_Rebecca_West Cicily_Isabel_Fairfield,British writer (born in Ireland) (1892-1983)
+18076,West western_United_States,the region of the United States lying to the west of the Mississippi River
+18077,West-sider,a resident of the west side of Manhattan in New York City
+18078,West_Africa,an area of western Africa between the Sahara Desert and the Gulf of Guinea
+18079,West_African,a group of languages spoken in the extreme western part of West Africa
+18080,West_Bank,an area between Israel and Jordan on the west bank of the Jordan river; populated largely by Palestinians
+18081,West_Bengal,a state in eastern India
+18082,West_Berlin,the part of Berlin under United States and British and French control until 1989
+18083,West_Berliner,an inhabitant of West Berlin
+18084,West_Chadic,a group of Chadic languages spoken in northern Nigeria; Hausa in the most important member
+18085,West_Coast,the western seaboard of the United States from Washington to southern California
+18086,West_Country,the southwestern part of England (including Cornwall and Devon and Somerset)
+18087,West_End,the part of west central London containing the main entertainment and shopping areas
+18088,West_Germanic West_Germanic_language,a branch of the Germanic languages
+18089,West_Germany Federal_Republic_of_Germany,a republic in north central Europe on the North Sea; established in 1949 from the zones of Germany occupied by the British and French and Americans after the German defeat; reunified with East Germany in 1990
+18090,West_Highland_white_terrier,small white long-coated terrier developed in Scotland
+18091,West_Indian,a native or inhabitant of the West Indies
+18092,West_Indian_jasmine pagoda_tree Plumeria_alba,tall sparingly branched conical tree having large fragrant yellow flowers with white centers
+18093,West_Indies the_Indies,the string of islands between North America and South America; a popular resort area
+18094,West_Malaysia Malaya Peninsular_Malaysia,the region of Malaysia on the Malay Peninsula; shares a land border with Thailand to the north
+18095,West_Midland,a dialect of Middle English
+18096,West_Nile_encephalitis,encephalitis caused by the West Nile virus; can be fatal in humans and horses and birds
+18097,West_Nile_virus West_Nile_encephalitis_virus,the flavivirus that causes West Nile encephalitis
+18098,West_Palm_Beach,a town in southeast Florida on the mainland opposite Palm Beach; founded as a commercial center for Palm Beach
+18099,West_Point,United States Army installation on the west bank of Hudson river to the north of New York City; site of United States Military Academy
+18100,West_Saxon,an inhabitant of Wessex
+18101,West_Saxon,a literary dialect of Old English
+18102,West_Sussex,a county in southern England on the English Channel
+18103,West_Virginia Mountain_State WV W.V.,a state in east central United States
+18104,West_Virginian,a native or resident of West Virginia
+18105,West_Yorkshire,a metropolitan county in northern England
+18106,Western horse_opera,a film about life in the western United States during the period of exploration and development
+18107,Western_Australia,a state containing the western third of Australia
+18108,Western_Australia_coral_pea Hardenbergia_comnptoniana,vigorous climber of the forests of western Australia; grown for their dense racemes of attractive bright rose-purple flowers
+18109,Western_Malayo-Polynesian,a western subfamily of Malayo-Polynesian languages
+18110,Western_Roman_Empire Western_Empire,the western part after the Roman Empire was divided in 395; it lasted only until 476
+18111,Western_Sahara Spanish_Sahara,an area in northwestern Africa with rich phosphate deposits; under Moroccan control since 1992
+18112,Western_Samoan_monetary_unit,monetary unit in Western Samoa
+18113,Western_box_turtle Terrapene_ornata,primarily a prairie turtle of western United States and northern Mexico
+18114,Western_culture Western_civilization,the modern culture of western Europe and North America; "when Ghandi was asked what he thought of Western civilization he said he thought it would be a good idea"
+18115,Western_diamondback Western_diamondback_rattlesnake Crotalus_atrox,largest and most dangerous North American snake; of southwestern United States and Mexico
+18116,Western_mountain_ash Sorbus_sitchensis,an ash of the western coast of North America
+18117,Western_pasqueflower Pulsatilla_occidentalis Anemone_occidentalis,of western North America
+18118,Western_ribbon_snake Thamnophis_proximus,yellow- or reddish-striped snake of temperate woodlands and grasslands to tropics
+18119,Western_sand_cherry Rocky_Mountains_cherry Prunus_besseyi,dwarf ornamental shrub of western United States having large black to red and yellow sweet edible fruit
+18120,Western_silvery_aster,a variety of aster
+18121,Westernization Westernisation,assimilation of Western culture; the social process of becoming familiar with or converting to the customs and practices of Western civilization
+18122,Westinghouse George_Westinghouse,United States inventor and manufacturer (1846-1914)
+18123,Westminster City_of_Westminster,a borough of Greater London on the Thames; contains Buckingham Palace and the Houses of Parliament and Westminster Abbey
+18124,Westminster_Abbey,a famous Gothic church of St. Peter in Westminster, London on the site of a former Benedictine monastery; "Westminster Abbey is the scene of the coronations of almost all English monarchs"; "Distinguished English subjects are buried in Westminster Abbey"
+18125,Weston Edward_Weston,United States photographer(1886-1958)
+18126,Weston_cell cadmium_cell,a standard voltaic cell (trademark Weston)
+18127,Wharton Edith_Wharton Edith_Newbold_Jones_Wharton,United States novelist (1862-1937)
+18128,Wheatley Phillis_Wheatley,American poet (born in Africa) who was the first recognized Black writer in America (1753-1784)
+18129,Wheatstone Sir_Charles_Wheatstone,English physicist and inventor who devised the Wheatstone bridge (1802-1875)
+18130,Wheatstone_bridge,a bridge used to measure resistances
+18131,Wheeler Sir_Mortimer_Wheeler Sir_Robert_Eric_Mortimer_Wheeler,Scottish archaeologist (1890-1976)
+18132,Wheeler_Peak,a mountain peak in northeastern New Mexico in the Rocky Mountains
+18133,Wheeling,a city in the northern panhandle of West Virginia on the Ohio river
+18134,Whig,a member of the political party that urged social reform in 18th and 19th century England; was the opposition party to the Tories
+18135,Whig,a supporter of the American Revolution
+18136,Whig,a member of the Whig Party that existed in the United States before the American Civil War
+18137,Whig_Party,a former political party in the United States; formed in 1834 in opposition to the Democratic Party; advocated a loose interpretation of the Constitution and high protective tariffs
+18138,Whipple's_penstemon Penstemon_whippleanus,wine and lavender to purple and black flowers in several clusters on the upper half of leafy stems; Montana south through the Rocky Mountains to Arizona and New Mexico
+18139,Whirlaway,thoroughbred that won the triple crown in 1941
+18140,Whistler James_Abbott_McNeill_Whistler,United States painter (1834-1903)
+18141,Whit-Tuesday Whitsun_Tuesday,the day after Whitmonday
+18142,White Andrew_D._White Andrew_Dickson_White,United States educator who in 1865 (with Ezra Cornell) founded Cornell University and served as its first president (1832-1918)
+18143,White E._B._White Elwyn_Brooks_White,United States writer noted for his humorous essays (1899-1985)
+18144,White Edward_White Edward_D._White Edward_Douglas_White_Jr.,United States jurist appointed chief justice of the United States Supreme Court in 1910 by President Taft; noted for his work on antitrust legislation (1845-1921)
+18145,White Patrick_White Patrick_Victor_Martindale_White,Australian writer (1912-1990)
+18146,White Stanford_White,United States architect (1853-1906)
+18147,White T._H._White Theodore_Harold_White,United States political journalist (1915-1986)
+18148,White White_River,a tributary of the Mississippi River that flows southeastward through northern Arkansas and southern Missouri
+18149,White White_person Caucasian,a Caucasian
+18150,White_House,the government building that serves as the residence and office of the President of the United States
+18151,White_House EXEC,the chief executive department of the United States government
+18152,White_Nile,a headstream of the Nile; joins the Blue Nile at Khartoum to form the Nile
+18153,White_Russian,a cocktail made with vodka, coffee liqueur, and milk or cream
+18154,White_Sea,a large inlet of the Barents Sea in the northwestern part of European Russia
+18155,White_Tai,a branch of the Tai languages
+18156,Whitehall,a wide street in London stretching from Trafalgar Square to the Houses of Parliament; site of many government offices
+18157,Whitehall,the British civil service
+18158,Whitehead Alfred_North_Whitehead,English philosopher and mathematician who collaborated with Bertrand Russell (1861-1947)
+18159,Whitehorse,the provincial capital of the Yukon Territory
+18160,Whitman Marcus_Whitman,United States frontier missionary who established a post in Oregon where Christianity and schooling and medicine were available to Native Americans (1802-1847)
+18161,Whitman Walt_Whitman,United States poet who celebrated the greatness of America (1819-1892)
+18162,Whitmonday Whitsun_Monday,the day after Whitsunday; a legal holiday in England and Wales and Ireland
+18163,Whitney Eli_Whitney,United States inventor of the mechanical cotton gin (1765-1825)
+18164,Whitney Mount_Whitney,the highest peak in the Sierra Nevada range in California (14,494 feet high)
+18165,Whitsun Whitsuntide Whitweek,Christian holiday; the week beginning on Whitsunday (especially the first 3 days)
+18166,Whittier John_Greenleaf_Whittier,United States poet best known for his nostalgic poems about New England (1807-1892)
+18167,Whittle Frank_Whittle Sir_Frank_Whittle,English aeronautical engineer who invented the jet aircraft engine (1907-1996)
+18168,Wicca,a community of followers of the Wicca religion
+18169,Wicca,the polytheistic nature religion of modern witchcraft whose central deity is a mother goddess; claims origins in pre-Christian pagan religions of western Europe
+18170,Wiccan witch,a believer in Wicca
+18171,Wichita,a member of the Caddo people formerly living between Kansas and central Texas
+18172,Wichita,the largest city in Kansas; located in southern Kansas on the Arkansas River
+18173,Wichita,the Caddoan language spoken by the Wichita
+18174,Wichita_Falls,a city in north central Texas near the Oklahoma border
+18175,Widal_test Widal's_test,a test for detecting typhoid fever and other salmonella infections
+18176,Wiener Norbert_Wiener,United States mathematician and founder of cybernetics (1894-1964)
+18177,Wiesbaden,a city in western Germany; a spa since Roman times
+18178,Wiesel Elie_Wiesel Eliezer_Wiesel,United States writer (born in Romania) who survived Nazi concentration camps and is dedicated to keeping alive the memory of the Holocaust (born in 1928)
+18179,Wiesenthal Samuel_Wiesenthal,Austrian investigator of Nazi war crimes (born in 1908)
+18180,Wiffle Wiffle_Ball,(trademark) a hollow plastic ball with cutouts
+18181,Wight Isle_of_Wight,an isle and county of southern England in the English Channel
+18182,Wigner Eugene_Wigner Eugene_Paul_Wigner,United States physicist (born in Hungary) noted for his work on the structure of the atom and its nucleus (1902-1995)
+18183,Wild_West,the western United States during its frontier period
+18184,Wild_West_Show Buffalo_Bill's_Wild_West_Show,a spectacular show organized in 1883 by William F. Cody that featured horseback riding and marksmanship on a large scale; toured the United States and Europe
+18185,Wilde Oscar_Wilde Oscar_Fingal_O'Flahertie_Wills_Wilde,Irish writer and wit (1854-1900)
+18186,Wilder Billy_Wilder Samuel_Wilder,United States filmmaker (born in Austria) whose dark humor infused many of the films he made (1906-2002)
+18187,Wilder Thornton_Wilder Thornton_Niven_Wilder,United States writer and dramatist (1897-1975)
+18188,Wilderness,a wooded region in northeastern Virginia near Spotsylvania where bloody but inconclusive battles were fought in the American Civil War
+18189,Wilderness_Campaign,American Civil War; a series of indecisive battles in Grant's campaign (1864) against Lee in which both armies suffered terrible losses
+18190,Wilhelm_II Kaiser_Wilhelm Kaiser_Bill,grandson of Queen Victoria and Kaiser of Germany from 1888 to 1918; he was vilified as causing World War I (1859-1941)
+18191,Wilkes Charles_Wilkes,United States explorer of Antarctica (1798-1877)
+18192,Wilkes John_Wilkes,English reformer who published attacks on George III and supported the rights of the American colonists (1727-1797)
+18193,Wilkes_Land,a coastal region of Antarctica on the Indian Ocean to the south of Australia; most of the territory is claimed by Australia
+18194,Wilkins George_Hubert_Wilkins,Australian who was the first to explore the Arctic by airplane (1888-1958)
+18195,Wilkins Maurice_Wilkins Maurice_Hugh_Frederick_Wilkins,English biochemist who helped discover the structure of DNA (1916-2004)
+18196,Wilkins Roy_Wilkins,United States civil rights leader (1901-1981)
+18197,Wilkinson Sir_Geoffrey_Wilkinson,English chemist honored for his research on pollutants in car exhausts (born in 1921)
+18198,Willamette Willamette_River,a river in western Oregon that flows north into the Columbia River near Portland
+18199,Willard Emma_Hart_Willard,United States educator who was an early campaigner for higher education for women (1787-1870)
+18200,Willard Frances_Elizabeth_Caroline_Willard,United States advocate of temperance and women's suffrage (1839-1898)
+18201,Willebrand von_Willebrand E._A._von_Willebrand Erik_von_Willebrand Erik_Adolf_von_Willebrand,Finnish physician who first described vascular hemophilia (1870-1949)
+18202,William_I William_the_Conqueror,duke of Normandy who led the Norman invasion of England and became the first Norman to be King of England; he defeated Harold II at the battle of Hastings in 1066 and introduced many Norman customs into England (1027-1087)
+18203,William_II William_Rufus,the second son of William the Conqueror who succeeded him as King of England (1056-1100)
+18204,William_III William_of_Orange,King of England and Scotland and Ireland; he married the daughter of James II and was invited by opponents of James II to invade England; when James fled, William III and Mary II were declared joint monarchs (1650-1702)
+18205,William_IV Sailor_King,King of England and Ireland; son of George III who ascended the throne after a long naval career (1765-1837)
+18206,William_and_Mary,joint monarchs of England; William III and Mary II
+18207,Williams Hank_Williams Hiram_Williams Hiram_King_Williams,United States country singer and songwriter (1923-1953)
+18208,Williams Roger_Williams,English clergyman and colonist who was expelled from Massachusetts for criticizing Puritanism; he founded Providence in 1636 and obtained a royal charter for Rhode Island in 1663 (1603-1683)
+18209,Williams Sir_Bernard_Williams Bernard_Arthur_Owen_Williams,English philosopher credited with reviving the field of moral philosophy (1929-2003)
+18210,Williams Ted_Williams Theodore_Samuel_Williams,United States baseball player noted as a hitter (1918-2002)
+18211,Williams Tennessee_Williams Thomas_Lanier_Williams,United States playwright (1911-1983)
+18212,Williams William_Carlos_Williams,United States poet (1883-1963)
+18213,Williams_syndrome,a rare congenital disorder associated with deletion of genetic material in chromosome 7; characterized by mental deficiency and some growth deficiency and elfin faces but an overly social personality and a remarkable gift for vocabulary
+18214,Williamstown,a town in northwestern Massachusetts
+18215,Willis Thomas_Willis,English physician who was a pioneer in the study of the brain (1621-1675)
+18216,Wilmington,a town in southeastern North Carolina on the Cape Fear River
+18217,Wilmington,the largest city in Delaware
+18218,Wilms'_tumor Wilms_tumour adenomyosarcoma nephroblastoma embryoma_of_the_kidney,malignant renal tumor of young children characterized by hypertension and blood in the urine and the presence of a palpable mass
+18219,Wilmut Ian_Wilmut,English geneticist who succeeded in cloning a sheep from a cell from an adult ewe (born in 1944)
+18220,Wilson Alexander_Wilson,Scottish ornithologist in the United States (1766-1813)
+18221,Wilson Charles_Thomson_Rees_Wilson,Scottish physicist who invented the cloud chamber (1869-1959)
+18222,Wilson E._O._Wilson Edward_Osborne_Wilson,United States entomologist who has generalized from social insects to other animals including humans (born in 1929)
+18223,Wilson Edmund_Wilson,United States literary critic (1895-1972)
+18224,Wilson Harriet_Wilson,author of the first novel by an African American that was published in the United States (1808-1870)
+18225,Wilson James_Wilson,American Revolutionary leader who was one of the signers of the Declaration of Independence (1742-1798)
+18226,Wilson John_Tuzo_Wilson,Canadian geophysicist who was a pioneer in the study of plate tectonics (1908-1993)
+18227,Wilson Mount_Wilson,a peak in the San Juan mountains of Colorado (14,246 feet high)
+18228,Wilson Robert_Woodrow_Wilson,United States physicist honored for his work on cosmic microwave radiation (born in 1918)
+18229,Wilson Sir_Angus_Wilson Angus_Frank_Johnstone_Wilson,English writer of novels and short stories (1913-1991)
+18230,Wilson Woodrow_Wilson Thomas_Woodrow_Wilson President_Wilson,28th President of the United States; led the United States in World War I and secured the formation of the League of Nations (1856-1924)
+18231,Wilson's_phalarope Steganopus_tricolor,breeds on the northern great plains of Canada
+18232,Wilson's_snipe Gallinago_gallinago_delicata,American snipe
+18233,Wilson's_warbler Wilson's_blackcap Wilsonia_pusilla,yellow wood warbler with a black crown
+18234,Wilton Wilton_carpet,a carpet woven on a Jacquard loom with loops like a Brussels carpet but having the loops cut to form a close velvety pile
+18235,Wimbledon,a suburb of London and the headquarters of the club where annual international tennis championships are played on grass courts
+18236,Winchester,a city in southern England; administrative center of Hampshire
+18237,Winchester,a shoulder rifle
+18238,Winchester_College,the oldest English public school; located in Winchester
+18239,Winckelmann Johann_Winckelmann Johann_Joachim_Winckelmann,German archaeologist and art historian said to be the father of archaeology (1717-1768)
+18240,Wind_Cave_National_Park,a national park in South Dakota featuring bison herds and limestone caverns
+18241,Windaus Adolf_Windaus,German chemist who studied steroids and cholesterol and discovered histamine (1876-1959)
+18242,Windhoek,capital of Namibia in the center of the country
+18243,Windows,(trademark) an operating system with a graphical user interface
+18244,Windsor,a city in southeastern Ontario on the Detroit River opposite Detroit
+18245,Windsor House_of_Windsor,the British royal family since 1917
+18246,Windsor_chair,straight chair having a shaped seat and a back of many spindles
+18247,Windsor_green,a light chrome green pigment
+18248,Windsor_knot,a wide triangular slipknot for tying a tie
+18249,Windsor_tie,a wide necktie worn in a loose bow
+18250,Windward_Islands Windward_Isles,a group of islands in the southeastern West Indies; the southern part of the Lesser Antilles
+18251,Windward_Passage,a channel between eastern Cuba and western Haiti that connects the Atlantic Ocean with the Caribbean Sea
+18252,Winesap,crisp apple with dark red skin
+18253,Winnebago,a member of the Siouan-speaking people formerly living in eastern Wisconsin south of Green Bay; ally of the Menomini and enemy of the Fox and Sauk people
+18254,Winnebago,the Siouan language spoken by the Winnebago
+18255,Winnipeg,the capital and largest city of Manitoba; located in southern Manitoba; known for severe winters
+18256,Winnipeg Lake_Winnipeg,a lake in southern Canada in Manitoba
+18257,Winslow Edward_Winslow,English colonial administrator who traveled to America on the Mayflower and served as the first governor of the Plymouth Colony (1595-1655)
+18258,Winston-Salem,a city of north central North Carolina
+18259,Winter_Olympic_Games Winter_Olympics,an Olympics for winter sports
+18260,Winteraceae family_Winteraceae winter's_bark_family,small family of chiefly tropical shrubs and trees of genera Drimys and Pseudowintera; sometimes included in Magnoliaceae
+18261,Wintun,a member of a North American Indian people living in the Sacramento valley in California
+18262,Wintun,a Copehan language spoken by the Wintun
+18263,Wisconsin Badger_State WI Wis. Wisc.,a midwestern state in north central United States
+18264,Wisconsin Wisconsin_River,a tributary of the Mississippi River in Wisconsin
+18265,Wisconsin_weeping_willow Salix_pendulina Salix_blanda Salix_pendulina_blanda,hybrid willow usually not strongly weeping in habit
+18266,Wisconsinite Badger,a native or resident of Wisconsin
+18267,Wisdom_of_Solomon Wisdom,an Apocryphal book consisting mainly of a meditation on wisdom; although ascribed to Solomon it was probably written in the first century BC
+18268,Wise Isaac_Mayer_Wise,United States religious leader (born in Bohemia) who united reform Jewish organizations in the United States (1819-1900)
+18269,Wise Stephen_Samuel_Wise,United States Jewish leader (born in Hungary) (1874-1949)
+18270,Wise_Men Magi,(New Testament) the sages who visited Jesus and Mary and Joseph shortly after Jesus was born; the Gospel According to Matthew says they were guided by a star and brought gifts of gold and frankincense and myrrh; because there were three gifts it is usually assumed that there were three of them
+18271,Wister Owen_Wister,United States writer (1860-1938)
+18272,Witherspoon John_Witherspoon,American Revolutionary leader and educator (born in Scotland) who signed of the Declaration of Independence and was president of the college that became Princeton University (1723-1794)
+18273,Wittgenstein Ludwig_Wittgenstein Ludwig_Josef_Johan_Wittgenstein,British philosopher born in Austria; a major influence on logic and logical positivism (1889-1951)
+18274,Witwatersrand Rand Reef,a rocky region in the southern Transvaal in northeastern South Africa; contains rich gold deposits and coal and manganese
+18275,Wobbly,a member of the Industrial Workers of the World
+18276,Wodehouse P._G._Wodehouse Pelham_Grenville_Wodehouse,English writer known for his humorous novels and stories (1881-1975)
+18277,Woden Wodan,chief god; counterpart of Norse Odin and Teutonic Wotan
+18278,Wolf Friedrich_August_Wolf,German classical scholar who claimed that the Iliad and Odyssey were composed by several authors (1759-1824)
+18279,Wolf Hugo_Wolf,Austrian composer (1860-1903)
+18280,Wolfe Thomas_Wolfe Thomas_Clayton_Wolfe,United States writer best known for his autobiographical novels (1900-1938)
+18281,Wolfe Tom_Wolfe Thomas_Wolfe Thomas_Kennerly_Wolfe_Jr.,United States writer who has written extensively on American culture (born in 1931)
+18282,Wolff Kaspar_Friedrich_Wolff,German anatomist (1733-1794)
+18283,Wolffia genus_Wolffia,minute rootless aquatic herbs having globular fronds floating on or near the water surface and bearing one flower per frond
+18284,Wolffiella genus_Wolffiella,minute rootless aquatic herbs having flat fronds floating on or below the water surface and bearing 1-2 flowers per frond; America and Africa
+18285,Wollaston William_Hyde_Wollaston,English chemist and physicist who discovered palladium and rhodium and demonstrated that static and current electricity are the same (1766-1828)
+18286,Wollemi_pine,newly discovered (1994) pine thought to have been long extinct; Australia; genus and species names not yet assigned
+18287,Wollstonecraft Mary_Wollstonecraft Mary_Wollstonecraft_Godwin,English writer and early feminist who denied male supremacy and advocated equal education for women; mother of Mary Shelley (1759-1797)
+18288,Wolof,the West African language of the Wolof in Senegal; related to Fula
+18289,Wolstonian_glaciation,the next-to-last Pleistocene glaciation in Britain and the deposits laid down at that time
+18290,Women's_Army_Corps WAC,an army corps that was organized in World War II but is no longer a separate branch of the United States Army
+18291,Wood Grant_Wood,United States painter noted for works based on life in the Midwest (1892-1942)
+18292,Wood Mrs._Henry_Wood Ellen_Price_Wood,English writer of novels about murders and thefts and forgeries (1814-1887)
+18293,Wood Natalie_Wood,United States film actress (1938-1981)
+18294,Wood Sir_Henry_Wood Sir_Henry_Joseph_Wood,English conductor (1869-1944)
+18295,Wood's_metal Wood's_alloy,a fusible alloy that is half bismuth plus lead, tin, and cadmium; melts at about 160 degrees Fahrenheit
+18296,Woodbury Helen_Laura_Sumner_Woodbury,United States social economist (1876-1933)
+18297,Woodhull Victoria_Clafin_Woodhull,United States advocate of women's suffrage; in 1872 she was the first woman to run for the United States presidency (1838-1927)
+18298,Woodward Bob_Woodward Robert_Woodward Robert_Burns_Woodward,United States chemist honored for synthesizing complex organic compounds (1917-1979)
+18299,Woodward C._Vann_Woodward Comer_Vann_Woodward,United States historian (1908-1999)
+18300,Woodwardia genus_Woodwardia,in some classification systems placed in family Polypodiaceae: chain ferns
+18301,Woolf Virginia_Woolf Adeline_Virginia_Stephen_Woolf,English author whose work used such techniques as stream of consciousness and the interior monologue; prominent member of the Bloomsbury Group (1882-1941)
+18302,Woollcott Alexander_Woollcott,United States drama critic and journalist (1887-1943)
+18303,Woolley Sir_Leonard_Woolley Sir_Charles_Leonard_Woolley,English archaeologist who supervised the excavations at Ur (1880-1960)
+18304,Woolworth Frank_Winfield_Woolworth,United States businessman who opened a shop in 1879 selling low-priced goods and built it into a national chain of stores (1852-1919)
+18305,Worcester,an industrial and university city in central Massachusetts to the west of Boston
+18306,Worcester,a cathedral city in west central England on the River Severn
+18307,Worcester Joseph_Emerson_Worcester,United States lexicographer who was accused of plagiarism by Noah Webster (1784-1865)
+18308,Worcester_sauce Worcestershire Worcestershire_sauce,a savory sauce of vinegar and soy sauce and spices
+18309,WordNet Princeton_WordNet,a machine-readable lexical database organized by meanings; developed at Princeton University
+18310,WordNet3.1,the latest publicly released version of WordNet
+18311,Word_of_God,a manifestation of the mind and will of God
+18312,Word_of_God,the message of the Gospel of Christ
+18313,Wordsworth William_Wordsworth,a romantic English poet whose work was inspired by the Lake District where he spent most of his life (1770-1850)
+18314,World_Council_of_Churches,an ecumenical organization of Protestant and eastern churches; intended to promote unity and cooperation in religious and secular matters
+18315,World_Cup,a soccer tournament held every four years between national soccer teams to determine a world champion
+18316,World_Health_Organization WHO W.H.O.,a United Nations agency to coordinate international health activities and to help governments improve health services
+18317,World_Meteorological_Organization WMO,the United Nations agency concerned with the international collection of meteorological data
+18318,World_Series,series that constitutes the playoff for the baseball championship; "we watched the World Series on TV"
+18319,World_Trade_Center WTC twin_towers,twin skyscrapers 110 stories high in New York City; built 1368 feet tall in 1970 to 1973; destroyed by a terrorist attack on September 11, 2001
+18320,World_Trade_Organization WTO,an international organization based in Geneva that monitors and enforces rules governing global trade
+18321,World_War_I World_War_1 Great_War First_World_War War_to_End_War,a war between the allies (Russia, France, British Empire, Italy, United States, Japan, Rumania, Serbia, Belgium, Greece, Portugal, Montenegro) and the Central Powers (Germany, Austria-Hungary, Turkey, Bulgaria) from 1914 to 1918
+18322,World_War_II World_War_2 Second_World_War,a war between the Allies (Australia, Belgium, Bolivia, Brazil, Canada, China, Colombia, Costa Rica, Cuba, Czechoslovakia, Dominican Republic, El Salvador, Ethiopia, France, Greece, Guatemala, Haiti, Honduras, India, Iran, Iraq, Luxembourg, Mexico, Netherlands, New Zealand, Nicaragua, Norway, Panama, Philippines, Poland, South Africa, United Kingdom, United States, USSR, Yugoslavia) and the Axis (Albania, Bulgaria, Finland, Germany, Hungary, Italy, Japan, Rumania, Slovakia, Thailand) from 1939 to 1945
+18323,World_Wide_Web WWW web,computer network consisting of a collection of internet sites that offer text and graphics and sound and animation resources through the hypertext transfer protocol
+18324,Wormian_bone sutural_bone,any of the tiny soft bones found in the sutures between cranial bones
+18325,Worth Charles_Frederick_Worth,French couturier (born in England) regarded as the founder of Parisian haute couture; noted for introducing the bustle (1825-1895)
+18326,Wotan,supreme Teutonic god; counterpart of Norse Odin and Anglo-Saxon Woden
+18327,Wouk Herman_Wouk,United States writer (born in 1915)
+18328,Wrangell-St._Elias_National_Park,the largest national park of the United States; located in Alaska
+18329,Wren Sir_Christopher_Wren,English architect who designed more than fifty London churches (1632-1723)
+18330,Wright Frances_Wright Fanny_Wright,United States early feminist (born in Scotland) (1795-1852)
+18331,Wright Frank_Lloyd_Wright,influential United States architect (1869-1959)
+18332,Wright Orville_Wright,United States aviation pioneer who (with his brother Wilbur Wright) invented the airplane (1871-1948)
+18333,Wright Richard_Wright,United States writer whose work is concerned with the oppression of African Americans (1908-1960)
+18334,Wright Wilbur_Wright,United States aviation pioneer who (with his brother Orville Wright) invented the airplane (1867-1912)
+18335,Wright Willard_Huntington_Wright S._S._Van_Dine,United States writer of detective novels (1888-1939)
+18336,Wroclaw Breslau,a city in southwestern Poland on the Oder
+18337,Wu Wu_dialect Shanghai_dialect,a dialect of Chinese spoken in the Yangtze delta
+18338,Wuhan,a city of central China on the Chang Jiang; the commercial and industrial center of central China
+18339,Wurlitzer Rudolf_Wurlitzer,United States businessman (born in Germany) who founded a company to make pipe organs (1831-1914)
+18340,Wurzburg Wuerzburg,a city of south central Germany
+18341,Wyatt James_Wyatt,English architect (1746-1813)
+18342,Wyatt Sir_Thomas_Wyatt Wyat Sir_Thomas_Wyat,English poet who introduced the sonnet form to English literature (1503-1542)
+18343,Wycherley William_Wycherley,English playwright noted for his humorous and satirical plays (1640-1716)
+18344,Wycliffe John_Wycliffe Wickliffe John_Wickliffe Wyclif John_Wyclif Wiclif John_Wiclif,English theologian whose objections to Roman Catholic doctrine anticipated the Protestant Reformation (1328-1384)
+18345,Wyeth Andrew_Wyeth,United States painter (born in 1917)
+18346,Wykeham William_of_Wykeham,English prelate and statesman; founded a college at Oxford and Winchester College in Winchester; served as chancellor of England and bishop of Winchester (1324-1404)
+18347,Wykehamist,a student enrolled in (or graduated from) Winchester College
+18348,Wyler William_Wyler,United States filmmaker (1902-1981)
+18349,Wylie Elinor_Morton_Hoyt_Wylie,United States poet (1885-1928)
+18350,Wynette Tammy_Wynette Tammy_Wynetter_Pugh,United States country singer (1942-1998)
+18351,Wynnea genus_Wynnea,a genus of fungi belonging to the family Sarcoscyphaceae
+18352,Wynnea_americana,a fungus composed of several apothecia that look like elongated rabbit ears; the sterile surface is dark brown and warty; the fertile surface is smooth and pinkish orange
+18353,Wynnea_sparassoides,a fungus with a long solid stalk embedded in soil and a yellow-brown head shaped like a cauliflower
+18354,Wyoming Equality_State WY Wyo.,a state in the western United States; mountainous in the west and north with the Great Plains in the east
+18355,Wyomingite,a native or resident of Wyoming
+18356,Wyrd Weird,fate personified; any one of the three Weird Sisters
+18357,Wyszynski Stefan_Wyszynski,Polish prelate who persuaded the Soviet to allow greater religious freedom in Poland (1901-1981)
+18358,X x ex,the 24th letter of the Roman alphabet
+18359,X-OR_circuit XOR_circuit XOR_gate,gate for exclusive OR; a circuit in a computer that fires only if only one of its inputs fire
+18360,X-linked_SCID X-SCID,SCID in male children resulting from mutation of a gene that codes for a protein on the surface of T cells that allows them to develop a growth factor receptor
+18361,X-linked_dominant_inheritance,hereditary pattern in which a dominant gene on the X chromosome causes a characteristic to be manifested in the offspring
+18362,X-linked_gene,a gene located on an X chromosome
+18363,X-linked_recessive_inheritance,hereditary pattern in which a recessive gene on the X chromosome results in the manifestation of characteristics in male offspring and a carrier state in female offspring
+18364,X-ray_diffraction,the scattering of X rays by the atoms of a crystal; the diffraction pattern shows structure of the crystal
+18365,X-ray_film,photographic film used to make X-ray pictures
+18366,X-ray_machine,an apparatus that provides a source of X rays
+18367,X-ray_therapy,the therapeutic use of X rays
+18368,X-ray_tube,a vacuum tube containing a metal target onto which a beam of electrons is directed at high energy for the generation of X rays
+18369,X-raying X-radiation,obtaining images by the use of X rays
+18370,XX,(genetics) normal complement of sex chromosomes in a female
+18371,XXX,(genetics) abnormal complement of three X chromosomes in a female
+18372,XXY,(genetics) abnormal complement of sex hormones in a male resulting in Klinefelter's syndrome
+18373,XY,(genetics) normal complement of sex hormones in a male
+18374,XYY,(genetics) abnormal complement of sex hormones in a male who has two Y chromosomes
+18375,X_chromosome,the sex chromosome that is present in both sexes: singly in males and doubly in females; "human females normally have two X chromosomes"
+18376,X_ray X-ray X-radiation roentgen_ray,electromagnetic radiation of short wavelength produced when high-speed electrons strike a solid target
+18377,Xanthium genus_Xanthium,coarse herbs having small heads of greenish flowers followed by burrs with hooked bristles
+18378,Xanthomonas genus_Xanthomonas,a genus of bacteria similar to Pseudomonas but producing a yellow pigment that is not soluble in water
+18379,Xanthophyceae class_Xanthophyceae,yellow-green algae
+18380,Xanthorrhoeaceae family_Xanthorrhoeaceae grass_tree_family,one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted
+18381,Xanthorroea genus_Xanthorroea,grass trees; sometimes placed in family Xanthorrhoeaceae
+18382,Xanthosoma genus_Xanthosoma,tropical American tuberous perennials
+18383,Xantusiidae family_Xantusiidae,night lizards
+18384,Xavier Saint_Francis_Xavier,Spanish missionary and Jesuit who establish missionaries in Japan and Ceylon and the East Indies (1506-1552)
+18385,Xenarthra suborder_Xenarthra,armadillos; American anteaters; sloths
+18386,Xenicidae family_Xenicidae Acanthisittidae family_Acanthisittidae,alternative names for the family comprising the New Zealand wrens
+18387,Xenicus genus_Xenicus,type genus for the Xenicidae
+18388,Xenophanes,Greek philosopher (560-478 BC)
+18389,Xenophon,Greek general and historian; student of Socrates (430-355 BC)
+18390,Xenopodidae family_Xenopodidae,in some classifications the family of the genus Xenopus which is otherwise included in the family Pipidae
+18391,Xenopus genus_Xenopus,an African clawed frog; in some classifications made the type genus of a separate family Xenopodidae
+18392,Xenorhyncus genus_Xenorhyncus,East Indian and Australian storks
+18393,Xenosauridae family_Xenosauridae,monotypic family of Mexican lizards
+18394,Xenosaurus genus_Xenosaurus,type and sole genus of Xenosauridae: slender-bodied Mexican lizards having the upper surface covered with tiny granules and tubercles
+18395,Xerobates genus_Xerobates,possible new genus for desert and Texas tortoises based on recent research
+18396,Xerophyllum genus_Xerophyllum,small genus of North American herbs having grasslike basal leaves: squaw grass; sometimes placed in family Melanthiaceae
+18397,Xerox xerographic_copier Xerox_machine,a duplicator (trade mark Xerox) that copies graphic matter by the action of light on an electrically charged photoconductive insulating surface in which the latent image is developed with a resinous powder
+18398,Xerxes_I Xerxes_the_Great,king of Persia who led a vast army against Greece and won the battle of Thermopylae but was eventually defeated (519-465 BC)
+18399,Xhosa,a member of the Negroid people of southern South Africa
+18400,Xhosa,a community of Negroid people in southern South Africa
+18401,Xhosa,a Bantu language closely related to Zulu
+18402,Xian Sian Singan Changan Hsian,a city of central China; capital of ancient Chinese empire 221-206 BC
+18403,Xinjiang Sinkiang Xinjiang_Uighur_Autonomous_Region,an autonomous province in far northwestern China on the border with Mongolia and Kazakhstan; the largest province in the People's Republic of China and the homeland of the Uighur people
+18404,Xiphias genus_Xiphias,type genus of the Xiphiidae
+18405,Xiphiidae family_Xiphiidae,comprising the common swordfishes
+18406,Xiphosura order_Xiphosura,horseshoe crabs and extinct forms
+18407,Xylaria genus_Xylaria,type genus of Xylariaceae; fungi with perithecia in the upper part of erect black woody stromata
+18408,Xylariaceae family_Xylariaceae,family of fungi characterized by dark brown to black spores
+18409,Xylocopa genus_Xylocopa,carpenter bees
+18410,Xylomelum genus_Xylomelum,small species of Australian trees or shrubs; grown for their fruit and flowers
+18411,Xylopia genus_Xylopia,tropical evergreen trees or shrubs; chiefly African
+18412,Xyphophorus genus_Xyphophorus,swordtails
+18413,Xyridaceae family_Xyridaceae yellow-eyed_grass_family,plants of tropical to temperate regions; usually in wet places
+18414,Xyridales order_Xyridales Commelinales order_Commelinales,an order of monocotyledonous herbs
+18415,Xyris genus_Xyris,chiefly American marsh plants, having usually yellow flowers
+18416,Y y wye,the 25th letter of the Roman alphabet
+18417,Y-linked_gene holandric_gene,a gene located on a Y chromosome
+18418,Y2K,the year 2000 in the Gregorian calendar
+18419,Y_chromosome,the sex chromosome that is carried by men; "human males normally have one X chromosome and one Y chromosome"
+18420,Yahi,a member of an extinct North American Indian people who lived in northern California
+18421,Yahi,the Yanan language spoken by the Yahi
+18422,Yahoo,one of a race of brutes resembling men but subject to the Houyhnhnms in a novel by Jonathan Swift
+18423,Yahoo,a widely used search engine for the web that finds information, news, images, products, finance
+18424,Yahweh YHWH Yahwe Yahveh YHVH Yahve Wahvey Jahvey Jahweh Jehovah JHVH,a name for the God of the Old Testament as transliterated from the Hebrew consonants YHVH
+18425,Yajur-Veda,a collection of sacrificial formulas and prayers
+18426,Yakima,a town in south central Washington
+18427,Yakut,a member of a Turkic people of northeastern Siberia (mainly in the Lena river basin)
+18428,Yakut,the Turkic language spoken by the Yakut
+18429,Yale Elihu_Yale,English philanthropist who made contributions to a college in Connecticut that was renamed in his honor (1649-1721)
+18430,Yale_University Yale,a university in Connecticut
+18431,Yalta,a resort city in Crimea in the southern Ukraine on the Black Sea; site of the Allied conference between Roosevelt, Stalin, and Churchill in February 1945
+18432,Yalta_Conference,a conference held in Yalta in February 1945 where Roosevelt, Stalin, and Churchill planned the final stages of World War II and agreed to the territorial division of Europe
+18433,Yalu Yalu_River,river in eastern Asia; rises in North Korea and flows southwest to Korea Bay (forming part of the border between North Korea and China)
+18434,Yalu_River,a battle in the Korean War (November 1950); when UN troops advanced north to the Yalu River 200,000 Chinese troops crossed the river and drove them back
+18435,Yama,Hindu god of death and lord of the underworld
+18436,Yamamoto Isoroku_Yamamoto,Japanese admiral who planned the attack on Pearl Harbor in 1941 (1884-1943)
+18437,Yamani Ahmed_Zoki_Yamani,Saudi Arabian minister of petroleum who was a central figure in the creation of OPEC (born in 1930)
+18438,Yamoussukro,capital of the Ivory Coast
+18439,Yana,a member of an extinct North American Indian people who lived in northern California
+18440,Yana,the Yanan language spoken by the Yana
+18441,Yanan,a language group of the Hokan family
+18442,Yang_Chen_Ning Chen_N._Yang,United States physicist (born in China) who collaborated with Tsung Dao Lee in disproving the principle of conservation of parity (born in 1922)
+18443,Yangon Rangoon,the capital and largest city of Myanmar; located in the south near the Irrawaddy river delta
+18444,Yankee Yank Northerner,an American who lives in the North (especially during the American Civil War)
+18445,Yankee Yank Yankee-Doodle,an American (especially to non-Americans)
+18446,Yaounde capital_of_Cameroon,the capital of Cameroon
+18447,Yastrzemski Carl_Yastrzemski,United States baseball player (born in 1939)
+18448,Yavapai,a member of a North American Indian people of central Arizona
+18449,Yavapai,the Yuman language spoken by the Yavapai
+18450,Yay,a branch of the Tai languages
+18451,Yazoo Yazoo_River,a river that rises in west central Mississippi and flows southwest to empty into the Mississippi River above Vicksburg
+18452,Yeats William_Butler_Yeats W._B._Yeats,Irish poet and dramatist (1865-1939)
+18453,Yellow_Sea Huang_Hai,part of the Pacific off the east coast of Asia
+18454,Yellowknife,a town in the Northwest Territories in northern Canada on the Great Slave Lake
+18455,Yellowstone Yellowstone_River,a tributary of the Missouri River that flows through the Yellowstone National Park
+18456,Yellowstone_National_Park,the first national park in the United States; located in the border area between Wyoming and Montana and Idaho; spectacular wilderness; famous for Old Faithful geyser and for buffalo and bears
+18457,Yemen Republic_of_Yemen,a republic on the southwestern shores of the Arabian Peninsula on the Indian Ocean; formed in 1990
+18458,Yemeni,a native or inhabitant of Yemen
+18459,Yemeni_fils fils,100 Yemeni fils are worth one Yemeni rial
+18460,Yemeni_monetary_unit,monetary unit in Yemen
+18461,Yemeni_rial rial,the basic unit of money in Yemen; equal to 100 fils
+18462,Yenisei Yenisei_River Yenisey Yenisey_River,a Russian river in Siberia; rises in mountains near the Mongolian border and flows generally northward into the Kara Sea
+18463,Yeniseian,a member of one of the groups living in the Yenisei river valley in western Siberia
+18464,Yerevan Jerevan Erivan capital_of_Armenia,capital of Armenia
+18465,Yerkes Robert_M._Yerkes Robert_Mearns_Yerkes,United States psychologist who studied the intelligence of primates (1876-1956)
+18466,Yersin Alexandre_Yersin Alexandre_Emile_Jean_Yersin,French bacteriologist born in Switzerland; was a student of Pasteur; discovered the plague bacillus (1863-1943)
+18467,Yersinia_pestis,a bacillus bacterium that causes the plague; aerosolized bacteria can be used as a bioweapon
+18468,Yerupaja,a mountain peak in the Andes in Peru (21,709 feet high)
+18469,Yevtushenko Yevgeni_Yevtushenko Yevgeni_Aleksandrovich_Yevtushenko,Russian poet who expressed the feelings of the post-Stalinist generation (born in 1933)
+18470,Yggdrasil Ygdrasil,(Norse mythology) a huge ash tree whose roots and branches hold the earth and Heaven and Hell together
+18471,Yiddish,a dialect of High German including some Hebrew and other words; spoken in Europe as a vernacular by many Jews; written in the Hebrew script
+18472,Ymir,(Norse mythology) the primeval giant slain by Odin and his brothers and from whose body they created the world: the sea from his blood; the earth from his flesh; the mountains from his bones; the sky from his skull
+18473,Yogacara,one of the main traditions of Mahayana Buddhism; holds that the mind is real but that objects are just ideas or states of consciousness
+18474,Yokohama,port city on southeastern Honshu in central Japan
+18475,Yokuts,a member of the North American Indian people of the San Joaquin Valley
+18476,Yom_Kippur Day_of_Atonement,(Judaism) a solemn and major fast day on the Jewish calendar; 10th of Tishri; its observance is one of the requirements of the Mosaic law
+18477,York House_of_York,the English royal house (a branch of the Plantagenet line) that reigned from 1461 to 1485; its emblem was a white rose
+18478,Yorkshire,a former large county in northern England; in 1974 it was divided into three smaller counties
+18479,Yorkshire_pudding,light puffy bread made of a puff batter and traditionally baked in the pan with roast beef
+18480,Yorkshire_terrier,very small breed having a long glossy coat of bluish-grey and tan
+18481,Yorktown,a historic village in southeastern Virginia to the north of Newport News; site of the last battle of the American Revolution
+18482,Yorktown siege_of_Yorktown,in 1781 the British under Cornwallis surrendered after a siege of three weeks by American and French troops; the surrender ended the American Revolution
+18483,Yoruba,a member of a West African people living chiefly in southwestern Nigeria
+18484,Yoruba Aku,a Kwa language spoken by the Yoruba in southwestern Nigeria
+18485,Yosemite Yosemite_Falls,a series of waterfalls in Yosemite National Park in California; is reduced to a trickle for part of each year
+18486,Yosemite_National_Park,a national park in California famous for its waterfalls and rock formations
+18487,Yosemite_toad Bufo_canorus,of high Sierra Nevada meadows and forest borders
+18488,Young Brigham_Young,United States religious leader of the Mormon Church after the assassination of Joseph Smith; he led the Mormon exodus from Illinois to Salt Lake City, Utah (1801-1877)
+18489,Young Cy_Young Danton_True_Young,United States baseball player and famous pitcher (1867-1955)
+18490,Young Edward_Young,English poet (1683-1765)
+18491,Young Loretta_Young,United States film and television actress (1913-2000)
+18492,Young Pres_Young Lester_Willis_Young,United States jazz tenor saxophonist (1909-1959)
+18493,Young Thomas_Young,British physicist and Egyptologist; he revived the wave theory of light and proposed a three-component theory of color vision; he also played an important role in deciphering the hieroglyphics on the Rosetta Stone (1773-1829)
+18494,Young Whitney_Young Whitney_Moore_Young_Jr.,United States civil rights leader (1921-1971)
+18495,Young's_modulus,a coefficient of elasticity applicable to the stretching of a wire
+18496,Young_Turk,a member of one or more of the insurgent groups in Turkey in the late 19th century who rebelled against the absolutism of Ottoman rule
+18497,Youngstown,a city in northeast Ohio
+18498,Ypres battle_of_Ypres first_battle_of_Ypres,battle in World War I (1914); heavy but indecisive fighting as the Allies and the Germans both tried to break through the lines of the others
+18499,Ypres battle_of_Ypres second_battle_of_Ypres,battle in World War I (1915); Germans wanted to try chlorine (a toxic yellow gas) as a weapon and succeeded in taking considerable territory from the Allied salient
+18500,Ypres battle_of_Ypres third_battle_of_Ypres,battle in World War I (1917); an Allied offensive which eventually failed because tanks bogged down in the waterlogged soil of Flanders; Germans introduced mustard gas which interfered with the Allied artillery
+18501,Yquem,a sweet white French wine
+18502,Yuan Yuan_dynasty Mongol_dynasty,the imperial dynasty of China from 1279 to 1368
+18503,Yucatan,a state of Mexico on the northern part of the Yucatan Peninsula
+18504,Yucatan Yucatan_Peninsula,a peninsula in Central America extending into the Gulf of Mexico between the Bay of Campeche and the Caribbean Sea
+18505,Yucatec Yucateco,a member of the Mayan people of the Yucatan peninsula in Mexico
+18506,Yucatec Yucateco,a Mayan language spoken by the Yucatec
+18507,Yue Yue_dialect Cantonese Cantonese_dialect,the dialect of Chinese spoken in Canton and neighboring provinces and in Hong Kong and elsewhere outside China
+18508,Yugoslav Jugoslav Yugoslavian Jugoslavian,a native or inhabitant of Yugoslavia
+18509,Yugoslavia,a former country of southeastern Europe bordering the Adriatic Sea; formed in 1918 and named Yugoslavia in 1929; controlled by Marshal Tito as a communist state until his death in 1980; "Tito's Yugoslavia included Slovenia, Croatia, Macedonia, Bosnia-Herzegovina, Serbia, and Montenegro"
+18510,Yugoslavian_dinar dinar,the basic unit of money in Yugoslavia
+18511,Yugoslavian_monetary_unit,monetary unit in Yugoslavia
+18512,Yukawa Hideki_Yukawa,Japanese mathematical physicist who proposed that nuclear forces are mediated by massive particles called mesons which are analogous to the photon in mediating electromagnetic forces (1907-1981)
+18513,Yukon Yukon_River,a North American river that flows westward from the Yukon Territory through central Alaska to the Bering Sea
+18514,Yukon Yukon_Territory,a territory in northwestern Canada; site of the Klondike gold rush in the 1890s
+18515,Yukon_white_birch Betula_neoalaskana,Alaskan birch with white to pale brown bark
+18516,Yule_log,large log traditionally burned at Christmas
+18517,Yuma,a member of the North American Indian people of Arizona and adjacent Mexico and California
+18518,Yuma,a town in southwestern Arizona on the Colorado River and the California border
+18519,Yuma,the Yuman language spoken by the Yuma
+18520,Yuman,a group of language of the Hokan family in Arizona and California and Mexico
+18521,Yunnan Yunnan_province,a province of southern China
+18522,Z z zee zed ezed izzard,the 26th letter of the Roman alphabet; "the British call Z zed and the Scots call it ezed but Americans call it zee"; "he doesn't know A from izzard"
+18523,ZIP_code ZIP postcode postal_code,a code of letters and digits added to a postal address to aid in the sorting of mail
+18524,Zaar Sayanci,a Chadic language spoken in northern Nigeria
+18525,Zabrze,an industrial city in southern Poland
+18526,Zaglossus genus_Zaglossus,a genus of Tachyglossidae
+18527,Zagreb,the capital of Croatia
+18528,Zaharias Babe_Zaharias Didrikson Babe_Didrikson Mildred_Ella_Didrikson Mildred_Ella_Didrikson_Zaharias,outstanding United States athlete (1914-1956)
+18529,Zairese Zairean,a native or inhabitant of Zaire
+18530,Zairese_monetary_unit,monetary unit in Zaire
+18531,Zalophus genus_Zalophus,sea lions
+18532,Zama battle_of_Zama,the battle in 202 BC in which Scipio decisively defeated Hannibal at the end of the second Punic War
+18533,Zambezi Zambezi_River,an African river; flows into the Indian Ocean
+18534,Zambia Republic_of_Zambia Northern_Rhodesia,a republic in central Africa; formerly controlled by Great Britain and called Northern Rhodesia until it gained independence within the commonwealth in 1964
+18535,Zambian,a native or inhabitant of Zambia
+18536,Zambian_kwacha kwacha,the basic unit of money in Zambia
+18537,Zambian_monetary_unit,monetary unit in Zambia
+18538,Zamboni,the trademark for a machine that smooths the ice in an ice-skating rink
+18539,Zamiaceae family_Zamiaceae zamia_family,a family of cycads often included in the family Cycadaceae: zamias
+18540,Zangwill Israel_Zangwill,English writer (1864-1926)
+18541,Zannichellia genus_Zannichellia,horned pondweed: completely submerged herbs; in some classifications included in Potamogetonaceae
+18542,Zannichelliaceae family_Zannichelliaceae,alternative classification for some genera included in Potamogetonaceae; one species
+18543,Zantedeschia genus_Zantedeschia,calla lily
+18544,Zanthoxylum genus_Zanthoxylum,deciduous or evergreen trees or shrubs: prickly ash
+18545,Zanuck Darryl_Zanuck Darryl_Francis_Zanuck,United States filmmaker whose works include the first full-length feature film with sound sequences (1902-1979)
+18546,Zanzibar,an island in the Indian Ocean off the east coast of Africa; part of the United Republic of Tanzania
+18547,Zanzibar_copal anime,a hard copal derived from an African tree
+18548,Zapata Emiliano_Zapata,Mexican revolutionary who led a revolt for agrarian reforms (1879-1919)
+18549,Zapodidae family_Zapodidae,jumping mice
+18550,Zapotec Zapotecan,a member of a large tribe of Mesoamericans living in southern Mexico whose civilization flourished around 300 to 900
+18551,Zapotec Zapotecan,the language of the Zapotec
+18552,Zapus genus_Zapus,type genus of the Zapodidae
+18553,Zaragoza Saragossa,an ancient city on the Ebro River in northeastern Spain; formerly the capital of Aragon
+18554,Zaria,a city in north central Nigeria; agricultural trading center
+18555,Zea genus_Zea,corn
+18556,Zealand Seeland Sjaelland,the largest island of Denmark and the site of Copenhagen
+18557,Zealander,a native or inhabitant of Zealand
+18558,Zealot,a member of an ancient Jewish sect in Judea in the first century who fought to the death against the Romans and who killed or persecuted Jews who collaborated with the Romans
+18559,Zechariah Zacharias,a Hebrew minor prophet of the late 6th century BC
+18560,Zechariah Zacharias Book_of_Zachariah,an Old Testament book telling the prophecies of Zechariah which are concerned mainly with the renewal of Israel after the Babylonian Captivity
+18561,Zeeman Pieter_Zeeman,Dutch physicist honored for his research on the influence of magnetism on radiation which showed that light is radiated by the motion of charged particles in an atom (1865-1943)
+18562,Zeidae family_Zeidae,a family of fish in the order Zeomorphi
+18563,Zeitgeist,the spirit of the time; the spirit characteristic of an age or generation
+18564,Zen Zen_Buddhism,school of Mahayana Buddhism asserting that enlightenment can come through meditation and intuition rather than faith; China and Japan
+18565,Zen Zen_Buddhism,a Buddhist doctrine that enlightenment can be attained through direct intuitive insight
+18566,Zen_Buddhist,an adherent of the doctrines of Zen Buddhism
+18567,Zenaidura genus_Zenaidura,mourning doves
+18568,Zeno Zeno_of_Citium,ancient Greek philosopher who founded the Stoic school (circa 335-263 BC)
+18569,Zeno Zeno_of_Elea,ancient Greek philosopher who formulated paradoxes that defended the belief that motion and change are illusory (circa 495-430 BC)
+18570,Zeomorphi order_Zeomorphi,dories
+18571,Zephaniah Sophonias,a Hebrew minor prophet of the late 7th century BC
+18572,Zephaniah Sophonias Book_of_Zephaniah,an Old Testament book telling the prophecies of Zephaniah which are concerned mainly with the approaching judgment by God upon the sinners of Judah
+18573,Zephyr,(Greek mythology) the Greek god of the west wind
+18574,Zeppelin Count_Ferdinand_von_Zeppelin,German inventor who designed and built the first rigid motorized dirigible (1838-1917)
+18575,Zeus,(Greek mythology) the supreme god of ancient Greek mythology; son of Rhea and Cronus whom he dethroned; husband and brother of Hera; brother of Poseidon and Hades; father of many gods; counterpart of Roman Jupiter
+18576,Zeus genus_Zeus,type genus of the family Zeidae
+18577,Zhou Zhou_dynasty Chou Chou_dynasty Chow Chow_dynasty,the imperial dynasty of China from 1122 to 221 BC; notable for the rise of Confucianism and Taoism
+18578,Zhou_En-lai Chou_En-lai,Chinese revolutionary and communist leader (1898-1976)
+18579,Zhu_Jiang Canton_River Chu_Kiang Pearl_River,a river in southeast China that flows into the South China Sea
+18580,Zhuang,a branch of the Tai languages
+18581,Zhukov Georgi_Zhukov Georgi_Konstantinovich_Zhukov,Soviet general who during World War II directed the counteroffensive at Stalingrad and relieved Leningrad and captured Berlin (1896-1974)
+18582,Ziegfeld Flo_Ziegfeld Florenz_Ziegfeld,United States theatrical producer noted for a series of extravagant revues known as the Ziegfeld Follies (1869-1932)
+18583,Ziegfeld_Follies,a series of extravagant revues produced by Flo Ziegfeld
+18584,Ziegler Karl_Waldemar_Ziegler,German chemist honored for his research on polymers (1898-1973)
+18585,Zigadenus genus_Zigadenus,genus of mostly North American poisonous plants; sometimes placed in family Melanthiaceae
+18586,Zimbabwe Republic_of_Zimbabwe Rhodesia Southern_Rhodesia,a landlocked republic in south central Africa formerly called Rhodesia; achieved independence from the United Kingdom in 1980
+18587,Zimbabwean,a native or inhabitant of Zimbabwe
+18588,Zimbabwean_dollar,the basic unit of money in Zimbabwe
+18589,Zimbalist Efrem_Zimbalist,United States violinist (born in Russia) (1889-1985)
+18590,Zinfandel,small black grape grown chiefly in California; transplanted from Europe
+18591,Zingiber genus_Zingiber,tropical Asiatic and Polynesian perennial plants: ginger
+18592,Zingiberaceae family_Zingiberaceae ginger_family,a family of tropical monocotyledonous plants of order Musales
+18593,Zinjanthropus genus_Zinjanthropus,genus to which Australopithecus boisei was formerly assigned
+18594,Zinnemann Fred_Zinnemann,United States filmmaker (born in Austria) (1907-1997)
+18595,Zinsser Hans_Zinsser,United States bacteriologist who helped develop immunization against typhus fever (1878-1940)
+18596,Zinzendorf Count_Nikolaus_Ludwig_von_Zinzendorf,German theologian (1700-1760)
+18597,Zion Sion,originally a stronghold captured by David (the 2nd king of the Israelites); above it was built a temple and later the name extended to the whole hill; finally it became a synonym for the city of Jerusalem; "the inhabitants of Jerusalem are personified as `the daughter of Zion'"
+18598,Zion_National_Park,a national park in Utah having huge canyons and gorges carved by mountain rivers
+18599,Zionism,a policy for establishing and developing a national homeland for Jews in Palestine
+18600,Zionism Zionist_movement,a movement of world Jewry that arose late in the 19th century with the aim of creating a Jewish state in Palestine
+18601,Zionist,a Jewish supporter of Zionism
+18602,Ziphiidae family_Ziphiidae Hyperodontidae family_Hyperodontidae,beaked whales; in some especially former classifications included in the family Physeteridae
+18603,Zizania genus_Zizania,wild rice
+18604,Ziziphus genus_Ziziphus,spiny chiefly tropical American and Asiatic shrubs: jujubes
+18605,Zoarces genus_Zoarces,type genus of the Zoarcidae
+18606,Zoarcidae family_Zoarcidae,eelpouts
+18607,Zola Emile_Zola,French novelist and critic; defender of Dreyfus (1840-1902)
+18608,Zollinger-Ellison_syndrome,syndrome consisting of intractable peptic ulceration with gastric hypersecretion and hyperacidity
+18609,Zomba,a city in southern Malawi; was the capital until 1971
+18610,Zonotrichia genus_Zonotrichia,large New World sparrows
+18611,Zoomastigina subclass_Zoomastigina,in some classifications considered a phylum of the kingdom Protista; holozoic or saprozoic flagellates
+18612,Zoroaster Zarathustra,Persian prophet who founded Zoroastrianism (circa 628-551 BC)
+18613,Zoroastrian,follower of Zoroaster and Zoroastrianism
+18614,Zoroastrianism Mazdaism,system of religion founded in Persia in the 6th century BC by Zoroaster; set forth in the Zend-Avesta; based on concept of struggle between light (good) and dark (evil)
+18615,Zostera genus_Zostera,(or in some classifications family Zosteraceae) small genus of widely distributed marine plants
+18616,Zosteraceae family_Zosteraceae eelgrass_family,used in some classifications: essentially equivalent to Potamogetonaceae
+18617,Zsigmondy Richard_Adolph_Zsigmondy,German chemist (born in Austria) honored for his research on colloidal solutions (1865-1929)
+18618,Zu Zubird,evil storm god represented as a black bird
+18619,Zuider_Zee,a former inlet of the North Sea in the northern coast of the Netherlands; sealed off from the sea in 1932 by a dam that created the IJsselmeer
+18620,Zukerman Pinchas_Zukerman,Israeli violinist (born in 1948)
+18621,Zulu,a member of the tall Negroid people of eastern South Africa; some live in KwaZulu-Natal under the traditional clan system but many now work in the cities
+18622,Zulu,a community of Negroid people in eastern South Africa
+18623,Zulu,a Bantu language of considerable literary importance in southeastern Africa
+18624,Zuni,a member of the Pueblo people living in western New Mexico
+18625,Zurich,the largest city in Switzerland; located in the northern part of the country; "Zurich is the center of the German-speaking part of Switzerland"
+18626,Zurvan,the Zoroastrian god of time
+18627,Zurvanism,a Zoroastrian sect that claims Zurvan was the ultimate source of the universe
+18628,Zurvanism,a heretical Zoroastrian doctrine holding that Zurvan was the ultimate source of the universe and that both Ahura Mazda and Ahriman were Zurvan's offspring
+18629,Zweig Stefan_Zweig,Austrian writer (1881-1942)
+18630,Zwingli Ulrich_Zwingli Huldreich_Zwingli,Swiss theologian whose sermons began the Reformation in Switzerland (1484-1531)
+18631,Zworykin Vladimir_Kosma_Zworykin,United States physicist who invented the iconoscope (1889-1982)
+18632,Zygnema genus_Zygnema,type genus of the family Zygnemataceae
+18633,Zygnemataceae family_Zygnemataceae,pond scums: common freshwater algae forming green slimy masses
+18634,Zygnematales order_Zygnematales Zygnemales order_Zygnemales,pond scums; desmids
+18635,Zygocactus genus_Zygocactus,small genus of Brazilian cacti having flat fleshy usually branched joints and showy red or pink flowers followed by red fleshy fruits
+18636,Zygomycetes class_Zygomycetes,class of fungi coextensive with subdivision Zygomycota
+18637,Zygomycota subdivision_Zygomycota Zygomycotina subdivision_Zygomycotina,division of fungi having sexually produced zygospores
+18638,Zygophyllaceae family_Zygophyllaceae bean-caper_family,small trees, shrubs, and herbs of warm arid and saline regions; often resinous; some poisonous: genera Zygophyllum, Tribulus, Guaiacum, Larrea
+18639,Zygophyllum genus_Zygophyllum,usually tropical herbs or shrubs having ill-smelling foliage and flower buds that are used as capers: bean capers
+18640,Zygoptera suborder_Zygoptera,damselflies
+18641,a_Kempis Thomas_a_Kempis,German ecclesiastic (1380-1471)
+18642,a_cappella_singing a_capella_singing,singing without instrumental accompaniment
+18643,a_la_carte,a menu having individual dishes listed with separate prices
+18644,aa,a dry form of lava resembling clinkers
+18645,aalii,a small Hawaiian tree with hard dark wood
+18646,aardvark ant_bear anteater Orycteropus_afer,nocturnal burrowing mammal of the grasslands of Africa that feeds on termites; sole extant representative of the order Tubulidentata
+18647,aardwolf Proteles_cristata,striped hyena of southeast Africa that feeds chiefly on insects
+18648,aba,a loose sleeveless outer garment made from aba cloth; worn by Arabs
+18649,aba,a fabric woven from goat hair and camel hair
+18650,abaca Manila_hemp Musa_textilis,Philippine banana tree having leafstalks that yield Manila hemp used for rope and paper etc
+18651,abacus,a tablet placed horizontally on top of the capital of a column as an aid in supporting the architrave
+18652,abacus,a calculator that performs arithmetic functions by manually sliding counters on rods or in grooves
+18653,abalone ear-shell,any of various large edible marine gastropods of the genus Haliotis having an ear-shaped shell with pearly interior
+18654,abampere abamp,a unit of current equal to 10 amperes
+18655,abandon wantonness unconstraint,the trait of lacking restraint or control; reckless freedom from inhibition or worry; "she danced with abandon"
+18656,abandoned_person,someone for whom hope has been abandoned
+18657,abandoned_ship derelict,a ship abandoned on the high seas
+18658,abandonment,the voluntary surrender of property (or a right to property) without attempting to reclaim it or give it away
+18659,abandonment forsaking desertion,the act of giving something up
+18660,abarticulation,dislocation of a joint
+18661,abasement degradation abjection,a low or downcast state; "each confession brought her into an attitude of abasement"- H.L.Menchken
+18662,abashment bashfulness,feeling embarrassed due to modesty
+18663,abasia,inability to walk
+18664,abasia_trepidans,abasia due to trembling of the legs
+18665,abatable_nuisance,a nuisance that can remedied (suppressed or extinguished or rendered harmless); "the continued existence of an abatable nuisance is not authorized under the law"
+18666,abatement,the act of abating; "laws enforcing noise abatement"
+18667,abatement_of_a_nuisance nuisance_abatement,(law) the removal or termination or destruction of something that has been found to be a nuisance
+18668,abator,a person who abates a nuisance
+18669,abattis abatis,a line of defense consisting of a barrier of felled or live trees with branches (sharpened or with barbed wire entwined) pointed toward the enemy
+18670,abattoir butchery shambles slaughterhouse,a building where animals are butchered
+18671,abaya,(Arabic) a loose black robe from head to toe; traditionally worn by Muslim women
+18672,abbacy,the jurisdiction or office of an abbot
+18673,abbe,a French abbot
+18674,abbess mother_superior prioress,the superior of a group of nuns
+18675,abbey,a church associated with a monastery or convent
+18676,abbey,a convent ruled by an abbess
+18677,abbey,a monastery ruled by an abbot
+18678,abbot archimandrite,the superior of an abbey of monks
+18679,abbreviation,a shortened form of a word or phrase
+18680,abbreviation,shortening something by omitting parts of it
+18681,abcoulomb,a unit of electrical charge equal to 10 coulombs
+18682,abdication stepping_down,a formal resignation and renunciation of powers
+18683,abdication stepping_down,the act of abdicating
+18684,abdicator,one who formally relinquishes an office or responsibility
+18685,abdomen venter stomach belly,the region of the body of a vertebrate between the thorax and the pelvis
+18686,abdominal abdominal_muscle ab,the muscles of the abdomen
+18687,abdominal_actinomycosis,a serious form of actinomycosis that affects the abdomen
+18688,abdominal_aorta,a branch of the descending aorta
+18689,abdominal_aortic_aneurysm AAA,an aneurysm of the abdominal aorta associated with old age and hypertension
+18690,abdominal_breathing,breathing in which most of the respiratory effort is done by the abdominal muscles; "abdominal breathing is practiced by singers"
+18691,abdominal_cavity abdomen,the cavity containing the major viscera; in mammals it is separated from the thorax by the diaphragm
+18692,abdominal_pregnancy,ectopic pregnancy in the abdominal cavity
+18693,abdominal_wall,a wall of the abdomen
+18694,abdominocentesis paracentesis,centesis of the belly to remove fluid for diagnosis
+18695,abdominoplasty tummy_tuck,cosmetic surgery of the abdomen to remove wrinkles and tighten the skin over the stomach
+18696,abdominousness paunchiness,the bodily property of a protruding belly
+18697,abducens_muscle lateral_rectus_muscle lateral_rectus rectus_lateralis,the ocular muscle whose contraction turns the eyeball outward
+18698,abducent abducent_nerve abducens abducens_nerve nervus_abducens sixth_cranial_nerve,a small motor nerve supplying the lateral rectus muscle of the eye
+18699,abduction,the criminal act of capturing and carrying away by force a family member; if a man's wife is abducted it is a crime against the family relationship and against the wife
+18700,abduction,(physiology) moving of a body part away from the central axis of the body
+18701,abductor abductor_muscle,a muscle that draws a body part away from the median line
+18702,abecedarian,a novice learning the rudiments of some subject
+18703,abecedarius,a poem having lines beginning with letters of the alphabet in regular order
+18704,abelia,any of various deciduous or evergreen ornamental shrubs of the genus Abelia having opposite simple leaves and cymes of small white or pink or purplish flowers; Asia and Mexico
+18705,abelmosk musk_mallow Abelmoschus_moschatus Hibiscus_moschatus,bushy herb of tropical Asia grown for its yellow or pink to scarlet blooms that resemble the hibiscus
+18706,aberrance aberrancy aberration deviance,a state or condition markedly different from the norm
+18707,aberrant,one whose behavior departs substantially from the norm of a group
+18708,aberration,a disorder in one's mental state
+18709,aberration distortion optical_aberration,an optical phenomenon resulting from the failure of a lens or mirror to produce a good image
+18710,abetalipoproteinemia,a rare inherited disorder of fat metabolism; characterized by severe deficiency of beta-lipoproteins and abnormal red blood cells (acanthocytes) and abnormally low cholesterol levels
+18711,abetment abettal instigation,the verbal act of urging on
+18712,abettor abetter,one who helps or encourages or incites another
+18713,abeyance suspension,temporary cessation or suspension
+18714,abfarad,a capacitance unit equal to one billion farads
+18715,abhenry,a unit of inductance equal to one billionth of a henry
+18716,abhorrence abomination detestation execration loathing odium,hate coupled with disgust
+18717,abhorrer,a signer of a 1679 address to Charles II in which those who petitioned for the reconvening of parliament were condemned and abhorred
+18718,abidance,the act of abiding (enduring without yielding)
+18719,abience,(psychology) an urge to withdraw or avoid a situation or an object
+18720,ability,the quality of being able to perform; a quality that permits or facilitates achievement or accomplishment
+18721,ability power,possession of the qualities (especially mental qualities) required to do something or get something done; "danger heightened his powers of discrimination"
+18722,abiogenesis autogenesis autogeny spontaneous_generation,a hypothetical organic phenomenon by which living organisms are created from nonliving matter
+18723,abiogenist,a believer in abiogenesis
+18724,abiotrophy,a loss of vitality and a degeneration of cells and tissues not due to any apparent injury
+18725,abjurer,a person who abjures
+18726,ablactation,the cessation of lactation
+18727,ablation,the erosive process that reduces the size of glaciers
+18728,ablation extirpation cutting_out excision,surgical removal of a body part or tissue
+18729,ablative ablative_case,the case indicating the agent in passive sentences or the instrument or manner or place of the action described by the verb
+18730,ablative_absolute,a constituent in Latin grammar; a noun and its modifier can function as a sentence modifier
+18731,ablaut,a vowel whose quality or length is changed to indicate linguistic distinctions (such as sing sang sung song)
+18732,able_seaman able-bodied_seaman,a seaman in the merchant marine; trained in special skills
+18733,ableism ablism able-bodiedism able-bodism,discrimination in favor of the able-bodied
+18734,ablepharia,a congenital absence of eyelids (partial or complete)
+18735,ablution,the ritual washing of a priest's hands or of sacred vessels
+18736,abnegation,the denial and rejection of a doctrine or belief; "abnegation of the Holy Trinity"
+18737,abnegation self-abnegation denial self-denial self-renunciation,renunciation of your own interests in favor of the interests of others
+18738,abnegator,one who gives up or relinquishes or renounces something
+18739,abnormal_psychology psychopathology,the branch of psychology concerned with abnormal behavior
+18740,abnormality abnormalcy,an abnormal physical condition resulting from defective genes or developmental deficiencies
+18741,abnormality freakishness,marked strangeness as a consequence of being abnormal
+18742,abnormality irregularity,behavior that breaches the rule or etiquette or custom or morality
+18743,abnormality mental_defectiveness,retardation sufficient to fall outside the normal range of intelligence
+18744,abocclusion,the condition in which the upper teeth do not touch the lower teeth when biting
+18745,abohm,a unit of resistance equal to a billionth of an ohm
+18746,abolition abolishment,the act of abolishing a system or practice or institution (especially abolishing slavery); "the abolition of capital punishment"
+18747,abolitionism,the doctrine that calls for the abolition of slavery
+18748,abolitionist emancipationist,a reformer who favors abolishing slavery
+18749,abomasum fourth_stomach,the fourth compartment of the stomach of a ruminant; the one where digestion takes place
+18750,abominable_snowman yeti,a large hairy humanoid creature said to live in the Himalayas
+18751,abomination,a person who is loathsome or disgusting
+18752,abomination,an action that is vicious or vile; an action that arouses disgust or abhorrence; "his treatment of the children is an abomination"
+18753,abominator loather,one who hates or loathes
+18754,abort,the act of terminating a project or procedure before it is completed; "I wasted a year of my life working on an abort"; "he sent a short message requesting an abort due to extreme winds in the area"
+18755,aborticide feticide,the act of destroying a fetus
+18756,abortifacient aborticide abortion-inducing_drug,a drug (or other chemical agent) that causes abortion
+18757,abortion,termination of pregnancy
+18758,abortion_pill mifepristone RU_486,an abortion-inducing drug (trade name RU 486) developed in France; when taken during the first five weeks of pregnancy it blocks the action of progesterone so that the uterus sloughs off the embryo
+18759,abortionist,a person (who should be a doctor) who terminates pregnancies
+18760,abortus,a human fetus whose weight is less than 0.5 kilogram when removed or expelled from the mother's body
+18761,about-face about_turn,act of pivoting 180 degrees, especially in a military formation
+18762,about-face volte-face reversal policy_change,a major change in attitude or principle or point of view; "an about-face on foreign policy"
+18763,above,an earlier section of a written text; "for instructions refer to the above"
+18764,abracadabra,gibberish and nonsense
+18765,abrachia,the condition of having no arms
+18766,abrader abradant,a tool or machine used for wearing down or smoothing or polishing
+18767,abrading_stone,a primitive stone artifact (usually made of sandstone) used as an abrader
+18768,abrasion attrition corrasion detrition,erosion by friction
+18769,abrasion scratch scrape excoriation,an abraded area where the skin is torn or worn off
+18770,abrasive abradant abrasive_material,a substance that abrades or wears down
+18771,abrasiveness,the quality of being sharply disagreeable
+18772,abridger abbreviator,one who shortens or abridges or condenses a written work
+18773,abrocome chinchilla_rat rat_chinchilla,ratlike rodent with soft fur and large ears of the Andes
+18774,abrogation repeal annulment,the act of abrogating; an official or legal cancellation
+18775,abrogator,an authority or official empowered to abolish or annul or repeal
+18776,abruptio_placentae,a disorder of pregnancy in which the placenta prematurely separates from the wall of the uterus
+18777,abruptness brusqueness curtness gruffness shortness,an abrupt discourteous manner
+18778,abruptness precipitateness precipitousness precipitance precipitancy suddenness,the quality of happening with headlong haste or without warning
+18779,abruptness precipitousness steepness,the property possessed by a slope that is very steep
+18780,abscess,symptom consisting of a localized collection of pus surrounded by inflamed tissue
+18781,abscessed_tooth,an abscess of a common kind in the tissue around a tooth
+18782,abscissa,the value of a coordinate on the horizontal axis
+18783,abscission,shedding of flowers and leaves and fruit following formation of scar tissue in a plant
+18784,abscission cutting_off,the act of cutting something off
+18785,absconder,a fugitive who runs away and hides to avoid arrest or prosecution
+18786,abscondment decampment,the act of running away secretly (as to avoid arrest)
+18787,abseiler rappeller,a person who descends down a nearly vertical face by using a doubled rope that is wrapped around the body and attached to some high point
+18788,absence,the time interval during which something or somebody is away; "he visited during my absence"
+18789,absence,the state of being absent; "he was surprised by the absence of any explanation"
+18790,absence,failure to be present
+18791,absence absence_seizure,the occurrence of an abrupt, transient loss or impairment of consciousness (which is not subsequently remembered), sometimes with light twitching, fluttering eyelids, etc.; common in petit mal epilepsy
+18792,absence_without_leave unauthorized_absence,unauthorized military absence
+18793,absentee,one that is absent or not in residence
+18794,absentee_ballot,(election) a ballot that is cast while absent (usually mailed in prior to election day)
+18795,absentee_rate,the percentage of workers who do not report to work
+18796,absenteeism,habitual absence from work
+18797,absentmindedness,preoccupation so great that the ordinary demands on attention are ignored
+18798,absinth absinthe,strong green liqueur flavored with wormwood and anise
+18799,absolute,something that is conceived or that exists independently and not in relation to other things; something that does not depend on anything else and is beyond human control; something that is not relative; "no mortal being can influence the absolute"
+18800,absolute_alcohol,pure ethyl alcohol (containing no more than 1% water)
+18801,absolute_ceiling,the maximum altitude at which an airplane can maintain horizontal flight
+18802,absolute_magnitude,(astronomy) the magnitude that a star would have if it were viewed from a distance of 10 parsecs (32.62 light years) from the earth
+18803,absolute_pitch perfect_pitch,the ability to identify the pitch of a tone
+18804,absolute_space,physical space independent of what occupies it
+18805,absolute_temperature,temperature measured on the absolute scale
+18806,absolute_threshold,the lowest level of stimulation that a person can detect
+18807,absolute_value numerical_value,a real number regardless of its sign
+18808,absolute_zero,(cryogenics) the lowest temperature theoretically attainable (at which the kinetic energy of atoms and molecules is minimal); 0 Kelvin or -273.15 centigrade or -459.67 Fahrenheit
+18809,absoluteness,the quality of being absolute; "the absoluteness of the pope's decree could not be challenged"
+18810,absolution,the condition of being formally forgiven by a priest in the sacrament of penance
+18811,absolution remission remittal remission_of_sin,the act of absolving or remitting; formal redemption as pronounced by a priest in the sacrament of penance
+18812,absolutism,the doctrine of an absolute being
+18813,absolutism totalitarianism totalism,the principle of complete and unrestricted power in government
+18814,absolutism tyranny despotism,dominance through threat of punishment and violence
+18815,absolutist,one who advocates absolutism
+18816,absolver,someone who grants absolution
+18817,absorbate,a material that has been or is capable of being absorbed
+18818,absorbency,the property of being absorbent
+18819,absorbent_cotton,cotton made absorbent by removal of the natural wax
+18820,absorbent_material absorbent,a material having capacity or tendency to absorb another substance
+18821,absorber,(physics) material in a nuclear reactor that absorbs radiation
+18822,absorption,(physics) the process in which incident radiated energy is retained without reflection or transmission on passing through a medium; "the absorption of photons by atoms or molecules"
+18823,absorption soaking_up,(chemistry) a process in which one substance permeates another; a fluid permeates or is dissolved by a liquid or solid
+18824,absorption_band,a dark band in the spectrum of white light that has been transmitted through a substance that exhibits absorption at selective wavelengths
+18825,absorption_coefficient coefficient_of_absorption absorptance,a measure of the rate of decrease in the intensity of electromagnetic radiation (as light) as it passes through a given substance; the fraction of incident radiant energy absorbed per unit mass or thickness of an absorber; "absorptance equals 1 minus transmittance"
+18826,absorption_indicator,an indicator used in reactions that involve precipitation
+18827,absorption_spectrum,the spectrum of electromagnetic radiation that has passed through a medium that absorbed radiation of certain wavelengths
+18828,absorption_unit,a unit for measuring absorption
+18829,absorptivity absorption_factor,(physics) the property of a body that determines the fraction of the incident radiation or sound flux absorbed or absorbable by the body
+18830,abstainer abstinent nondrinker,a person who refrains from drinking intoxicating beverages
+18831,abstainer ascetic,someone who practices self denial as a spiritual discipline
+18832,abstemiousness,restricted to bare necessities
+18833,abstemiousness,moderation in eating and drinking
+18834,abstinence,act or practice of refraining from indulging an appetite
+18835,abstinence abstention,the trait of abstaining (especially from alcohol)
+18836,abstractedness abstraction,preoccupation with something to the exclusion of all else
+18837,abstraction,an abstract painting
+18838,abstraction,the act of withdrawing or removing something
+18839,abstraction abstract,a concept or idea not associated with any specific instance; "he loved her only in the abstract--not in person"
+18840,abstraction abstract_entity,a general concept formed by extracting common features from specific examples
+18841,abstraction generalization generalisation,the process of formulating general concepts by abstracting common properties of instances
+18842,abstractionism abstract_art,an abstract genre of art; artistic content depends on internal form rather than pictorial representation
+18843,abstractionism unrealism,a representation having no reference to concrete objects or specific examples
+18844,abstractionist abstract_artist,a painter of abstract pictures
+18845,abstractness,the quality of being considered apart from a specific instance or object
+18846,abstractor abstracter,one who makes abstracts or summarizes information
+18847,absurd the_absurd,a situation in which life seems irrational and meaningless; "The absurd is the essential concept and the first truth"--Albert Camus
+18848,absurdity absurdness ridiculousness,a message whose content is at variance with reason
+18849,absurdity fatuity fatuousness silliness,a ludicrous folly; "the crowd laughed at the absurdity of the clown's behavior"
+18850,abulia aboulia,a loss of will power
+18851,abundance,(physics) the ratio of the number of atoms of a specific isotope of an element to the total number of isotopes present
+18852,abundance,(chemistry) the ratio of the total mass of an element in the earth's crust to the total mass of the earth's crust; expressed as a percentage or in parts per million
+18853,abundance copiousness teemingness,the property of a more than adequate quantity or supply; "an age of abundance"
+18854,abuse insult revilement contumely vilification,a rude expression intended to offend or hurt; "when a student made a stupid mistake he spared them no abuse"; "they yelled insults at the visiting team"
+18855,abuser maltreater,someone who abuses
+18856,abutment,point of contact between two objects or parts
+18857,abutment,a masonry support that touches and directly receives thrust or pressure of an arch or bridge
+18858,abutment_arch,an arch supported by an abutment
+18859,abutter,the owner of contiguous property
+18860,abvolt,a unit of potential equal to one-hundred-millionth of a volt
+18861,abwatt,a power unit equal to the power dissipated when 1 abampere flows across a potential difference of 1 abvolt (one ten-thousandth of a milliwatt)
+18862,abyss abysm,a bottomless gulf or pit; any unfathomable (or apparently unfathomable) cavity or chasm or void extending below (often used figuratively)
+18863,abyssal_zone,the deep sea (2000 meters or more) where there is no light
+18864,acacia,any of various spiny trees or shrubs of the genus Acacia
+18865,academia academe,the academic world
+18866,academic_administrator,an administrator in a college or university
+18867,academic_costume,a costume worn on formal occasions by the faculty or students of a university or college
+18868,academic_degree degree,an award conferred by a college or university signifying that the recipient has satisfactorily completed a course of study; "he earned his degree at Princeton summa cum laude"
+18869,academic_department,a division of a school that is responsible for a given subject
+18870,academic_freedom,the freedom of teachers and students to express their ideas in school without religious or political or institutional restrictions
+18871,academic_gown academic_robe judge's_robe,a gown worn by academics or judges
+18872,academic_program,(education) a program of education in liberal arts and sciences (usually in preparation for higher education)
+18873,academic_relation,a professional relation between instructors and those they instruct
+18874,academic_requirement,a requirement for admission to or completion of an academic program
+18875,academician,someone elected to honorary membership in an academy
+18876,academician academic faculty_member,an educator who works at a college or university
+18877,academician schoolman,a scholar who is skilled in academic disputation
+18878,academicianship,the position of member of an honorary academy
+18879,academy,a secondary school (usually private)
+18880,academy,a school for special training
+18881,academy,a learned establishment for the advancement of knowledge
+18882,academy honorary_society,an institution for the advancement of art or science or literature
+18883,acanthion,the craniometric point at the anterior extremity of the intermaxillary suture
+18884,acanthocephalan spiny-headed_worm,any of various worms living parasitically in intestines of vertebrates having a retractile proboscis covered with many hooked spines
+18885,acanthocyte,an abnormal red blood cell that has thorny projections of protoplasm
+18886,acanthocytosis,the presence of acanthocytes in the blood stream (as in abetalipoproteinemia)
+18887,acantholysis,a breakdown of a cell layer in the epidermis (as in pemphigus)
+18888,acanthoma skin_tumor,a neoplasm originating in the epidermis
+18889,acanthosis,an abnormal but benign thickening of the prickle-cell layer of the skin (as in psoriasis)
+18890,acanthosis_nigricans keratosis_nigricans,a skin disease characterized by dark wartlike patches in the body folds; can be benign or malignant
+18891,acanthus,any plant of the genus Acanthus having large spiny leaves and spikes or white or purplish flowers; native to Mediterranean region but widely cultivated
+18892,acardia,congenital absence of the heart (as in the development of some monsters)
+18893,acariasis acariosis acaridiasis,infestation with itch mites
+18894,acaricide acaracide,a chemical agent used to kill mites
+18895,acarid,very small free-living arachnid that is parasitic on animals or plants; related to ticks
+18896,acarine,mite or tick
+18897,acaroid_resin accaroid_resin accroides accroides_resin accroides_gum gum_accroides,an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper
+18898,acarophobia,a morbid fear of small insects and mites and worms
+18899,acarus genus_Acarus,any of several mites of the order Acarina
+18900,acatalectic,(prosody) a line of verse that has the full number of syllables
+18901,acataphasia,a disorder in which a lesion to the central nervous system leaves you unable to formulate a statement or to express yourself in an organized manner
+18902,acathexia,an inability to retain bodily secretions
+18903,acathexis,(psychoanalysis) a lack of cathexis; a condition in which significant objects or memories arouse no emotion in an individual
+18904,accelerando,a gradually increasing tempo of music; "my ear will not accept such violent accelerandos"
+18905,acceleration,(physics) a rate of increase of velocity
+18906,acceleration,an increase in rate of change; "modern science caused an acceleration of cultural change"
+18907,acceleration quickening speedup,the act of accelerating; increasing the speed
+18908,acceleration_unit,a unit for measuring acceleration
+18909,accelerator accelerator_pedal gas_pedal gas throttle gun,a pedal that controls the throttle valve; "he stepped on the gas"
+18910,accelerator particle_accelerator atom_smasher,a scientific instrument that increases the kinetic energy of charged particles
+18911,accelerator throttle throttle_valve,a valve that regulates the supply of fuel to the engine
+18912,accelerometer,an instrument for measuring the acceleration of aircraft or rockets
+18913,accent accent_mark,a diacritical mark used to indicate stress or placed above a vowel to indicate a special pronunciation
+18914,accent speech_pattern,distinctive manner of oral expression; "he couldn't suppress his contemptuous accent"; "she had a very clear speech pattern"
+18915,accentor,small sparrow-like songbird of mountainous regions of Eurasia
+18916,accentual_system prosodic_system,the system of accentuation used in a particular language
+18917,accentuation,the use or application of an accent; the relative prominence of syllables in a phrase or utterance
+18918,acceptability acceptableness,satisfactoriness by virtue of conforming to approved standards
+18919,acceptance,the state of being acceptable and accepted; "torn jeans received no acceptance at the country club"
+18920,acceptance,(contract law) words signifying consent to the terms of an offer (thereby creating a contract)
+18921,acceptance,the act of taking something that is offered; "her acceptance of the gift encouraged him"; "he anticipated their acceptance of his offer"
+18922,acceptance banker's_acceptance,banking: a time draft drawn on and accepted by a bank
+18923,acceptance_sampling,a statistical procedure for accepting or rejecting a batch of merchandise or documents; involves determining the maximum number of defects discovered in a sample before the entire batch is rejected
+18924,acceptation,acceptance as true or valid
+18925,acceptor,(chemistry) in the formation of a coordinate bond it is the compound to which electrons are donated
+18926,acceptor,the person (or institution) who accepts a check or draft and becomes responsible for paying the party named in the draft when it matures
+18927,access,the right to obtain or make use of or take advantage of something (as services or membership)
+18928,access,the act of approaching or entering; "he gained access to the building"
+18929,access access_code,a code (a series of characters or digits) that must be entered in some way (typed or dialed or spoken) to get the use of something (a telephone line or a computer or a local area network etc.)
+18930,access approach,a way of entering or leaving; "he took a wrong turn on the access to the bridge"
+18931,access memory_access,(computer science) the operation of reading or writing stored information
+18932,access_road slip_road,a short road giving access to an expressway; "in Britain they call an access road a slip road"
+18933,access_time,(computer science) the interval between the time data is requested by the system and the time the data is provided by the drive; "access time is the sum of seek time and rotational latency and command processing overhead"
+18934,accession,a process of increasing by addition (as to a collection or group); "the art collection grew through accession"
+18935,accession,(civil law) the right to all of that which your property produces whether by growth or improvement
+18936,accession addition,something added to what you already have; "the librarian shelved the new accessions"; "he was a new addition to the staff"
+18937,accession assenting,agreeing with or consenting to (often unwillingly); "accession to such demands would set a dangerous precedent"; "assenting to the Congressional determination"
+18938,accession rise_to_power,the act of attaining or gaining access to a new office or right or position (especially the throne); "Elizabeth's accession in 1558"
+18939,accessory accessary,someone who helps another person commit a crime
+18940,accessory accoutrement accouterment,clothing that is worn or carried, but not part of your main clothing
+18941,accessory appurtenance supplement add-on,a supplementary component that improves capability
+18942,accessory_after_the_fact,a person who gives assistance or comfort to someone known to be a felon or known to be sought in connection with the commission of a felony
+18943,accessory_before_the_fact,a person who procures or advises or commands the commission of a felony but who is not present at its perpetration
+18944,accessory_cephalic_vein vena_cephalica_accessoria,a vein that passes along the radial edge of the forearm and joins the cephalic vein near the elbow
+18945,accessory_during_the_fact,a person who witnesses a crime but does not try to prevent it
+18946,accessory_fruit pseudocarp,fruit containing much fleshy tissue besides that of the ripened ovary; as apple or strawberry
+18947,accessory_hemiazygos_vein accessory_hemiazygous_vein vena_hemiazygos_accessoria,a vein formed by the union of the 4th to 7th posterior intercostal veins; empties into the azygos vein
+18948,accessory_nerve spinal_accessory nervus_accessorius eleventh_cranial_nerve,arises from two sets of roots (cranial and spinal) that unite to form the nerve
+18949,accessory_vertebral_vein vena_vertebralis_accessoria,a vein that accompanies the vertebral vein but passes through the foramen of the transverse process of the 7th cervical vertebra and empties into the brachiocephalic vein
+18950,accident,an unfortunate mishap; especially one causing damage or injury
+18951,accident stroke fortuity chance_event,anything that happens suddenly or by chance without an apparent cause; "winning the lottery was a happy accident"; "the pregnancy was a stroke of bad luck"; "it was due to an accident or fortuity"
+18952,accidental,a musical notation that makes a note sharp or flat or natural although that is not part of the key signature
+18953,acclaim acclamation plaudits plaudit eclat,enthusiastic approval; "the book met with modest acclaim"; "he acknowledged the plaudits of the crowd"; "they gave him more eclat than he really deserved"
+18954,acclimatization acclimatisation acclimation,adaptation to a new climate (a new temperature or altitude or environment)
+18955,accommodating_lens_implant accommodating_IOL,a lens implant containing a hinge that allows for both near and far vision (thus mimicking the natural lens of a young person)
+18956,accommodation,a settlement of differences; "they reached an accommodation with Japan"
+18957,accommodation,in the theories of Jean Piaget: the modification of internal representations in order to accommodate a changing knowledge of reality
+18958,accommodation,living quarters provided for public convenience; "overnight accommodations are available"
+18959,accommodation,the act of providing something (lodging or seat or food) to meet a need
+18960,accommodation,(physiology) the automatic adjustment in focal length of the natural lens of the eye
+18961,accommodation_endorser,a person who endorses a promissory note without compensation or benefit but simply as a favor to the borrower
+18962,accommodation_ladder,(nautical) a portable ladder hung over the side of a vessel to give access to small boats alongside
+18963,accommodation_reflex,reflex changes in the eyes that enable an object to be focused on the retina
+18964,accompaniment concomitant attendant co-occurrence,an event or situation that happens at the same time as or in connection with another
+18965,accompaniment musical_accompaniment backup support,a musical part (vocal or instrumental) that supports or provides background for other musical parts
+18966,accompanist accompanyist,a person who provides musical accompaniment (usually on a piano)
+18967,accompanying_vein vena_comitans,a vein accompanying another structure; a vein may accompany an artery in such a way that the arterial pulses aid venous return
+18968,accomplice confederate,a person who joins with another in carrying out some plan (especially an unethical or illegal plan)
+18969,accomplishment achievement,the action of accomplishing something
+18970,accord,sympathetic compatibility
+18971,accord conformity accordance,concurrence of opinion; "we are in accord with your proposal"
+18972,accord_and_satisfaction,the settlement of a debt by paying less than the amount demanded in exchange for extinguishing the debt
+18973,accordance accordance_of_rights,the act of granting rights; "the accordance to Canada of rights of access"
+18974,accordion squeeze_box,a portable box-shaped free-reed instrument; the reeds are made to vibrate by air from the bellows controlled by the player
+18975,accordionist,a musician who plays the accordion
+18976,account,importance or value; "a person of considerable account"; "he predicted that although it is of small account now it will rapidly increase in importance"
+18977,account,the quality of taking advantage; "she turned her writing skills to good account"
+18978,account accounting account_statement,a statement of recent transactions and the resulting balance; "they send me an accounting every month"
+18979,account business_relationship,a formal contractual relationship established to provide for regular banking or brokerage or business services; "he asked to see the executive who handled his account"
+18980,account_executive account_representative registered_representative customer's_broker customer's_man,someone in charge of a client's account for an advertising agency or brokerage or other service business
+18981,account_payable payable,a liability account showing how much is owed for goods and services purchased on credit; "the problem was to match receivables and payables in the same currency"
+18982,accountability answerability answerableness,responsibility to someone or for some activity
+18983,accountancy accounting,the occupation of maintaining and auditing records and preparing financial reports for a business
+18984,accountant comptroller controller,someone who maintains and audits business accounts
+18985,accountantship,the position of accountant
+18986,accounting,a convincing explanation that reveals basic causes; "he was unable to give a clear accounting for his actions"
+18987,accounting,a system that provides quantitative information about finances
+18988,accounting accounting_system method_of_accounting,a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts
+18989,accounting_data,all the data (ledgers and journals and spreadsheets) that support a financial statement; can be hard copy or machine readable
+18990,accounting_firm,a firm of accountants who provide accounting and auditing services for a fee
+18991,accounting_principle accounting_standard,a principle that governs current accounting practice and that is used as a reference to determine the appropriate treatment of complex transactions
+18992,accounts_payable,a debtor's accounts of money he owes; normally arise from the purchase of products or services
+18993,accounts_receivable,a creditor's accounts of money owed to him; normally arise from the sale of products or services
+18994,accreditation,the act of granting credit or recognition (especially with respect to educational institution that maintains suitable standards); "a commission is responsible for the accreditation of medical schools"
+18995,accretion,something contributing to growth or increase; "he scraped away the accretions of paint"; "the central city surrounded by recent accretions"
+18996,accretion,(astronomy) the formation of a celestial object by the effect of gravity pulling together surrounding objects and gases
+18997,accretion,(biology) growth by addition as by the adhesion of parts or particles
+18998,accretion,(geology) an increase in land resulting from alluvial deposits or waterborne sediment
+18999,accretion,(law) an increase in a beneficiary's share in an estate (as when a co-beneficiary dies or fails to meet some condition or rejects the inheritance)
+19000,accretion accumulation,an increase by natural growth or addition
+19001,accrual_basis,a method of accounting in which each item is entered as it is earned or incurred regardless of when actual payments are received or made
+19002,acculturation assimilation,the process of assimilating new ideas into an existing cognitive structure
+19003,acculturation culture,all the knowledge and values shared by a society
+19004,accumulation,(finance) profits that are not paid out as dividends but are added to the capital base of the corporation
+19005,accumulation accrual accruement,the act of accumulating
+19006,accumulator accumulator_register,(computer science) a register that has a built-in adder that adds an input number to the contents of the register
+19007,accuracy,(mathematics) the number of significant figures given in a number; "the atomic clock enabled scientists to measure time with much greater accuracy"
+19008,accuracy truth,the quality of being near to the true value; "he was beginning to doubt the accuracy of his compass"; "the lawyer questioned the truth of my account"
+19009,accusation accusal,a formal charge of wrongdoing brought against a person; the act of imputing blame or guilt
+19010,accusation charge,an assertion that someone is guilty of a fault or offence; "the newspaper published charges that Jones was guilty of drunken driving"
+19011,accusative accusative_case objective_case,the case of nouns serving as the direct object of a verb
+19012,accused,a defendant in a criminal proceeding
+19013,accuser,someone who imputes guilt or blame
+19014,ace,one of four playing cards in a deck having a single pip on its face
+19015,ace,a serve that the receiver is unable to reach
+19016,ace adept champion sensation maven mavin virtuoso genius hotshot star superstar whiz whizz wizard wiz,someone who is dazzlingly skilled in any field
+19017,ace_of_clubs,the ace in the club suit
+19018,ace_of_diamonds,the ace in the diamond suit
+19019,ace_of_hearts,the ace in the heart suit
+19020,ace_of_spades,the ace in the spade suit; sometimes taken as a portent of death
+19021,acebutolol Sectral,an oral beta blocker (trade name Sectral) used in treating hypertension
+19022,acentric_chromosome,a chromosome lacking a centromere
+19023,acephalia acephaly acephalism,absence of the head (as in the development of some monsters)
+19024,acerate_leaf needle,the leaf of a conifer
+19025,acerbity,a sharp bitterness
+19026,acerbity tartness,a sharp sour taste
+19027,acerola barbados_cherry surinam_cherry West_Indian_cherry,acid red or yellow cherry-like fruit of a tropical American shrub very rich in vitamin C
+19028,acervulus,small asexual fruiting body resembling a cushion or blister consisting of a mat of hyphae that is produced on a host by some fungi
+19029,acetabulum cotyloid_cavity,the cup-shaped hollow in the hipbone into which the head of the femur fits to form a ball-and-socket joint
+19030,acetal,any organic compound formed by adding alcohol molecules to aldehyde molecules
+19031,acetaldehyde ethanal,a colorless volatile water-soluble liquid aldehyde used chiefly in the manufacture of acetic acid and perfumes and drugs
+19032,acetaldol,unsaturated aldol
+19033,acetamide ethanamide,a colorless solid amide of acetic acid used as a solvent and in the synthesis of organic compounds
+19034,acetaminophen Datril Tylenol Panadol Phenaphen Tempra Anacin_III,an analgesic for mild pain but not for inflammation; also used as an antipyretic; (Datril, Tylenol, Panadol, Phenaphen, Tempra, and Anacin III are trademarks of brands of acetaminophen tablets)
+19035,acetanilide acetanilid phenylacetamide,a white crystalline compound used as an analgesic and also as an antipyretic
+19036,acetate ethanoate,a salt or ester of acetic acid
+19037,acetate_disk phonograph_recording_disk,a disk coated with cellulose acetate
+19038,acetate_rayon acetate,a fabric made from fibers of cellulose acetate
+19039,acetic_acid ethanoic_acid,a colorless pungent liquid widely used in manufacturing plastics and pharmaceuticals
+19040,acetic_anhydride,a compound that is needed in order to refine opium into heroin
+19041,acetin,any of three liquid acetates that are formed when acetic acid and glycerin are heated together
+19042,acetoacetic_acid,unstable acid found in abnormal amounts in the blood and urine in some cases of impaired metabolism (as diabetes mellitus or starvation)
+19043,acetone propanone dimethyl_ketone,the simplest ketone; a highly flammable liquid widely used as an organic solvent and as material for making plastics
+19044,acetophenetidin acetphenetidin phenacetin,a white crystalline compound used as an analgesic and also as an antipyretic
+19045,acetum,a dilute solution of acetic acid that is used as a solvent (e.g. for a drug)
+19046,acetyl acetyl_group acetyl_radical ethanoyl_group ethanoyl_radical,the organic group of acetic acid (CH3CO-)
+19047,acetyl_chloride ethanoyl_chloride,colorless liquid acyl chloride (CH3COCl) that has a pungent odor
+19048,acetylation,the process of introducing an acetyl group into a compound; "the acetylation of cyclooxygenase-2 by aspirin"
+19049,acetylcholine,a neurotransmitter that is a derivative of choline; released at the ends of nerve fibers in the somatic and parasympathetic nervous systems
+19050,acetylene ethyne alkyne,a colorless flammable gas used chiefly in welding and in organic synthesis
+19051,ache aching,a dull persistent (usually moderately intense) pain
+19052,achene,small dry indehiscent fruit with the seed distinct from the fruit wall
+19053,achievability attainability attainableness,the state of being achievable
+19054,achiever winner success succeeder,a person with a record of successes; "his son would never be the achiever that his father was"; "only winners need apply"; "if you want to be a success you have to dress like a success"
+19055,achillea,any of several plants of the genus Achillea native to Europe and having small white flowers in flat-topped flower heads
+19056,achimenes hot_water_plant,any plant of the genus Achimenes having showy bell-shaped flowers that resemble gloxinias
+19057,achira indian_shot arrowroot Canna_indica Canna_edulis,canna grown especially for its edible rootstock from which arrowroot starch is obtained
+19058,achlorhydria,an abnormal deficiency or absence of free hydrochloric acid in the gastric juice; often associated with severe anemias and cancer of the stomach
+19059,acholia cholestasis,a condition in which little or no bile is secreted or the flow of bile into the digestive tract is obstructed
+19060,achondrite,a stony meteor lacking chondrules
+19061,achondroplasia achondroplasty osteosclerosis_congenita chondrodystrophy,an inherited skeletal disorder beginning before birth; cartilage is converted to bone resulting in dwarfism
+19062,achromatic_color achromatic_colour,a color lacking hue; white or grey or black
+19063,achromatic_lens,a compound lens system that forms an image free from chromatic aberration
+19064,achromatic_vision,vision using the rods
+19065,achromatin,the part of a cell nucleus that is relatively uncolored by stains or dyes
+19066,achromia,an absence of normal pigmentation especially in the skin (as in albinism) or in red blood cells
+19067,achylia achylia_gastrica,absence of gastric juices (partial or complete)
+19068,acicula,a needlelike part or structure of a plant or animal or crystal; as a spine or bristle or crystal
+19069,acid,any of various water-soluble compounds having a sour taste and capable of turning litmus red and reacting with a base to form a salt
+19070,acid back_breaker battery-acid dose dot Elvis loony_toons Lucy_in_the_sky_with_diamonds pane superman window_pane Zen,street name for lysergic acid diethylamide
+19071,acid-base_equilibrium acid-base_balance,(physiology) the normal equilibrium between acids and alkalis in the body; "with a normal acid-base balance in the body the blood is slightly alkaline"
+19072,acid-base_indicator,an indicator that changes color on going from acidic to basic solutions
+19073,acid_dye,dye in which the chromophore is part of a negative ion
+19074,acid_head,someone who takes LSD
+19075,acid_rain acid_precipitation,rain containing acids that form in the atmosphere when industrial gas emissions (especially sulfur dioxide and nitrogen oxides) combine with water
+19076,acid_test,a rigorous or crucial appraisal
+19077,acid_value,(chemistry) the amount of free acid present in fat as measured by the milligrams of potassium hydroxide needed to neutralize it; "as the glycerides in fat slowly decompose the acid value increases"
+19078,acidemia,a blood disorder characterized by an increased concentration of hydrogen ions in the blood (which falls below 7 on the pH scale)
+19079,acidic_hydrogen acid_hydrogen,a hydrogen atom in an acid that forms a positive ion when the acid dissociates
+19080,acidification,the process of becoming acid or being converted into an acid
+19081,acidimetry,volumetric analysis using standard solutions of acids to measure the amount of a base present
+19082,acidity,pH values below 7
+19083,acidity acidulousness,the taste experience when something acidic is taken into the mouth
+19084,acidophil acidophile,an organism that thrives in a relatively acid environment
+19085,acidophilus Lactobacillus_acidophilus,a bacterium that is used to make yogurt and to supplement probiotics
+19086,acidophilus_milk,milk fermented by bacteria; used to treat gastrointestinal disorders
+19087,acidosis,abnormally high acidity (excess hydrogen-ion concentration) of the blood and other body tissues
+19088,acinus,one of the small drupes making up an aggregate or multiple fruit like a blackberry
+19089,acinus,one of the small sacs or saclike dilations in a compound gland
+19090,ackee akee,red pear-shaped tropical fruit with poisonous seeds; flesh is poisonous when unripe or overripe
+19091,acknowledgment acknowledgement,a statement acknowledging something or someone; "she must have seen him but she gave no sign of acknowledgment"; "the preface contained an acknowledgment of those who had helped her"
+19092,aclinic_line magnetic_equator,an imaginary line paralleling the equator where a magnetic needle has no dip
+19093,acme height elevation peak pinnacle summit superlative meridian tiptop top,the highest level or degree attainable; the highest stage of development; "his landscapes were deemed the acme of beauty"; "the artist's gifts are at their acme"; "at the height of her career"; "the peak of perfection"; "summer was at its peak"; "...catapulted Einstein to the pinnacle of fame"; "the summit of his ambition"; "so many highest superlatives achieved by man"; "at the top of his profession"
+19094,acne,an inflammatory disease involving the sebaceous glands of the skin; characterized by papules or pustules or comedones
+19095,acne_rosacea rosacea,a skin disease of adults (more often women) in which blood vessels of the face enlarge resulting in a flushed appearance
+19096,acne_vulgaris,the most common form of acne; usually affects people from puberty to young adulthood
+19097,acolyte,someone who assists a priest or minister in a liturgical service; a cleric ordained in the highest of the minor orders in the Roman Catholic Church but not in the Anglican Church or the Eastern Orthodox Churches
+19098,aconite,any of various usually poisonous plants of the genus Aconitum having tuberous roots and palmately lobed leaves and blue or white flowers
+19099,acorea,absence of the pupil in an eye
+19100,acorn,fruit of the oak tree: a smooth thin-walled nut in a woody cup-shaped base
+19101,acorn_barnacle rock_barnacle Balanus_balanoides,barnacle that attaches to rocks especially in intertidal zones
+19102,acorn_squash,squash plant bearing small acorn-shaped fruits having yellow flesh and dark green or yellow rind with longitudinal ridges
+19103,acorn_squash,small dark green or yellow ribbed squash with yellow to orange flesh
+19104,acorn_tube,a small vacuum tube; used at high frequencies
+19105,acoustic,a remedy for hearing loss or deafness
+19106,acoustic_buoy,a buoy that can be heard (at night)
+19107,acoustic_delay_line sonic_delay_line,a delay line based on the time of propagation of sound waves
+19108,acoustic_device,a device for amplifying or transmitting sound
+19109,acoustic_guitar,sound is not amplified by electrical means
+19110,acoustic_modem,a modem that converts electrical signals to telephone tones and back again
+19111,acoustic_nerve auditory_nerve vestibulocochlear_nerve nervus_vestibulocochlearis eighth_cranial_nerve,a composite sensory nerve supplying the hair cells of the vestibular organ and the hair cells of the cochlea
+19112,acoustic_phenomenon,a physical phenomenon associated with the production or transmission of sound
+19113,acoustic_power sound_pressure_level,the physical intensity of sound
+19114,acoustic_radiation_pressure,(acoustics) the pressure exerted on a surface normal to the direction of propagation of a sound wave
+19115,acoustic_resistance acoustic_impedance acoustic_reactance,opposition to the flow of sound through a surface; acoustic resistance is the real component of acoustic impedance and acoustic reactance is the imaginary component
+19116,acoustic_storage,a storage device consisting of acoustic delay lines
+19117,acoustician,a physicist who specializes in acoustics
+19118,acoustics,the study of the physical properties of sound
+19119,acquaintance acquaintanceship,a relationship less intimate than friendship
+19120,acquaintance familiarity conversance conversancy,personal knowledge or information about someone or something
+19121,acquaintance friend,a person with whom you are acquainted; "I have trouble remembering the names of all my acquaintances"; "we are friends of the family"
+19122,acquiescence,acceptance without protest
+19123,acquired_hemochromatosis,hemochromatosis resulting from repeated transfusions or from excessive intake of foods containing iron
+19124,acquired_immunity,immunity to a particular disease that is not innate but has been acquired during life; immunity can be acquired by the development of antibodies after an attack of an infectious disease or by a pregnant mother passing antibodies through the placenta to a fetus or by vaccination
+19125,acquired_taste,a preference that is only acquired after considerable experience; "martinis are an acquired taste"
+19126,acquirer,a person who acquires something (usually permanently)
+19127,acquirer,a corporation gaining financial control over another corporation or financial institution through a payment in cash or an exchange of stock
+19128,acquirer,the financial institution that dispenses cash in automated teller machines and collects a fee from the bank that issued the credit card
+19129,acquiring getting,the act of acquiring something; "I envied his talent for acquiring"; "he's much more interested in the getting than in the giving"
+19130,acquisition,something acquired; "a recent acquisition by the museum"
+19131,acquisition,the act of contracting or assuming or acquiring possession of something; "the acquisition of wealth"; "the acquisition of one company by another"
+19132,acquisitiveness,strong desire to acquire and possess
+19133,acquittal,a judgment of not guilty
+19134,acquittance release,a legal document evidencing the discharge of a debt or obligation
+19135,acre,a unit of area (4840 square yards) used in English-speaking countries
+19136,acre-foot,the volume of water that would cover 1 acre to a depth of 1 foot; 43,560 cubic feet or 1233.5 cubic meters
+19137,acre_inch,one twelfth of an acre-foot
+19138,acreage land_area,an area of ground used for some particular purpose (such as building or farming); "he wanted some acreage to build on"
+19139,acridity,having an acrid smell
+19140,acridity acridness,extreme bitterness; "the acridity of alkali"
+19141,acridity acridness,the quality of being sharply disagreeable in language or tone
+19142,acroanesthesia acroanaesthesia,loss of sensation in the extremities
+19143,acrobat,an athlete who performs acts requiring skill and agility and coordination
+19144,acrobatic_stunt acrobatic_feat,a stunt performed by an acrobat
+19145,acrobatics aerobatics stunting stunt_flying,the performance of stunts while in flight in an aircraft
+19146,acrobatics tumbling,the gymnastic moves of an acrobat
+19147,acrocarp acrocarpous_moss,a moss in which the main axis is terminated by the archegonium (and hence the capsule)
+19148,acrocentric_chromosome,a chromosome with the centromere near one end so that one chromosomal arm is short and one is long
+19149,acrocyanosis Raynaud's_sign,cyanosis of the extremities; can occur when a spasm of the blood vessels is caused by exposure to cold or by strong emotion
+19150,acrodont,an animal having teeth consolidated with the summit of the alveolar ridge without sockets
+19151,acrogen,any flowerless plant such as a fern (pteridophyte) or moss (bryophyte) in which growth occurs only at the tip of the main stem
+19152,acromegaly acromegalia,enlargement of bones of hands and feet and face; often accompanied by headache and muscle pain and emotional disturbances; caused by overproduction of growth hormone by the anterior pituitary gland (due to a tumor)
+19153,acromicria acromikria,abnormally small extremities (underdeveloped fingers and toes)
+19154,acromion acromial_process,the outermost point of the spine of the shoulder blade
+19155,acromphalus,abnormal protrusion of the navel; sometimes the start of umbilical hernia
+19156,acromyotonia,myotonia of the extremities only; causes spastic deformity of the hand or foot
+19157,acronym initialism,a word formed from the initial letters of the several words in the name and pronounced as one word; "`NATO' is an initialism for North Atlantic Treaty Organization"; "the word `scuba' is an acronym for s(elf)-c(ontained) u(nderwater) b(reathing) a(pparatus)"
+19158,acrophobia,a morbid fear of great heights
+19159,acrophony,naming a letter of the alphabet by using a word whose initial sound is the sound represented by that letter
+19160,acropolis,the citadel in ancient Greek towns
+19161,acrosome,a process at the anterior end of a sperm cell that produces enzymes to facilitate penetration of the egg
+19162,acrostic,verse in which certain letters such as the first in each line form a word or message
+19163,acrylamide,a white crystalline amide of propenoic acid can damage the nervous system and is carcinogenic in laboratory animals; "they claimed that acrylamide is produced when certain carbohydrates are baked or fried at high temperatures"
+19164,acrylic,a synthetic fabric
+19165,acrylic acrylic_paint,used especially by artists
+19166,acrylic acrylic_resin acrylate_resin,a glassy thermoplastic; can be cast and molded or used in coatings and adhesives
+19167,acrylic_fiber acrylic,polymerized from acrylonitrile
+19168,acrylonitrile-butadiene-styrene ABS,any of a class of composite plastics used to make car bodies and cases for computers and other appliances
+19169,act,a manifestation of insincerity; "he put on quite an act for her benefit"
+19170,act,a subdivision of a play or opera or ballet
+19171,act deed human_action human_activity,something that people do or cause to happen
+19172,act enactment,a legal document codifying the result of deliberations of a committee or society or legislative body
+19173,act routine number turn bit,a short performance that is part of a longer program; "he did his act three times every evening"; "she had a catchy little routine"; "it was one of the best numbers he ever did"
+19174,act_of_God force_majeure vis_major inevitable_accident unavoidable_casualty,a natural and unavoidable catastrophe that interrupts the expected course of events; "he discovered that his house was not insured against acts of God"
+19175,actin,one of the proteins into which actomyosin can be split; can exist in either a globular or a fibrous form
+19176,acting playing playacting performing,the performance of a part or role in a drama
+19177,acting_out,a (usually irritating) impulsive and uncontrollable outburst by a problem child or a neurotic adult
+19178,acting_out,(psychiatry) the display of previously inhibited emotions (often in actions rather than words); considered to be healthy and therapeutic
+19179,actinia actinian actiniarian,any sea anemone or related animal
+19180,actinic_dermatitis,dermatitis caused exposure to sunlight
+19181,actinic_keratosis,an overgrowth of skin layers resulting from extended exposure to the sun
+19182,actinic_radiation actinic_ray,electromagnetic radiation that can produce photochemical reactions
+19183,actinide_series,(chemistry) a series of 15 radioactive elements with increasing atomic numbers from actinium to lawrencium
+19184,actinism,the property of radiation that enables it to produce photochemical effects
+19185,actinium Ac atomic_number_89,a radioactive element of the actinide series; found in uranium ores
+19186,actinoid actinide actinon,any of a series of radioactive elements with atomic numbers 89 through 103
+19187,actinolite,a green mineral of the amphibole group; calcium magnesium iron silicate
+19188,actinometer,an instrument for measuring the intensity of electromagnetic radiation (usually by the photochemical effect)
+19189,actinometry,measuring the intensity of electromagnetic radiation (especially of the sun's rays)
+19190,actinomyces,soil-inhabiting saprophytes and disease-producing plant and animal parasites
+19191,actinomycete,any bacteria (some of which are pathogenic for humans and animals) belonging to the order Actinomycetales
+19192,actinomycin,any of various red antibiotics isolated from soil bacteria
+19193,actinomycosis,disease of cattle that can be transmitted to humans; results from infection with actinomycetes; characterized by hard swellings that exude pus through long sinuses
+19194,actinomyxidian,parasites of worms
+19195,actinopod,protozoa having stiff rodlike radiating pseudopods
+19196,action,the series of events that form a plot; "his novels always have a lot of action"
+19197,action,the trait of being active and energetic and forceful; "a man of action"
+19198,action,an act by a government body or supranational organization; "recent federal action undermined the segregationist position"; "the United Nations must have the power to propose and organize action without being hobbled by irrelevant issues"; "the Union action of emancipating Southern slaves"
+19199,action,the most important or interesting work or activity in a specific area or field; "the action is no longer in technology stocks but in municipal bonds"; "gawkers always try to get as close to the action as possible"
+19200,action,something done (usually as opposed to something said); "there were stories of murders and other unnatural actions"
+19201,action action_mechanism,the operating part that transmits power to a mechanism; "the piano had a very stiff action"
+19202,action activity activeness,the state of being active; "his sphere of activity"; "he is out of action"
+19203,action_officer,the case officer designated to perform an act during a clandestine operation (especially in a hostile area)
+19204,action_potential,the local voltage change across the cell wall as a nerve impulse is transmitted
+19205,action_spectrum,the efficiency with which electromagnetic radiation produces a photochemical reaction plotted as a function of the wavelength of the radiation
+19206,activated_carbon activated_charcoal,powdered or granular carbon used for purifying by adsorption; given orally (as a slurry) it is an antidote for some kinds of poisons
+19207,activating_agent,(mineral extraction) a surface-active chemical used in flotation process to increase the attraction to a specific mineral
+19208,activation,stimulation of activity in an organism or chemical
+19209,activation,making active and effective (as a bomb)
+19210,activation_energy energy_of_activation,the energy that an atomic system must acquire before a process (such as an emission or reaction) can occur; "catalysts are said to reduce the energy of activation during the transition phase of a reaction"
+19211,activator,(biology) any agency bringing about activation; a molecule that increases the activity of an enzyme or a protein that increases the production of a gene product in DNA transcription
+19212,active,a person who is a participating member of an organization; "the club issues a list of members, both the actives and the retirees"
+19213,active_agent active,chemical agent capable of activity
+19214,active_air_defense,air defense by the use aircraft or missiles or artillery or electronic countermeasures
+19215,active_application,an application that is currently running and in the foreground
+19216,active_birth,childbirth during which the mother is encouraged to be an active participant
+19217,active_citizen,a citizen who takes an active role in the community (as in crime prevention and neighborhood watch)
+19218,active_immunity,a form of acquired immunity in which the body produces its own antibodies against disease-causing antigens
+19219,active_matrix_screen,a type of LCD screen used for some portable computers; there is a separate circuit for each pixel
+19220,active_placebo,a placebo used in experimental tests of a drug that has noticeable side effects; "an active placebo mimics the side effects of the experimental drug"
+19221,active_site,the part of an enzyme or antibody where the chemical reaction occurs
+19222,active_transport,transport of a substance (as a protein or drug) across a cell membrane against the concentration gradient; requires an expenditure of energy
+19223,active_trust,a trust in which the trustee must perform certain duties
+19224,active_voice active,the voice used to indicate that the grammatical subject of the verb is performing the action or causing the happening denoted by the verb; "`The boy threw the ball' uses the active voice"
+19225,activeness activity,the trait of being active; moving or acting rapidly and energetically; "the level of activity declines with age"
+19226,activism,a policy of taking direct action to achieve a political or social goal
+19227,activity,(chemistry) the capacity of a substance to take part in a chemical reaction; "catalytic activity"
+19228,activity,any specific behavior; "they avoided all recreational activity"
+19229,actomyosin,a protein complex in muscle fibers; composed of myosin and actin; shortens when stimulated and causes muscle contractions
+19230,actor doer worker,a person who acts and gets things done; "he's a principal actor in this affair"; "when you want something done get a doer"; "he's a miracle worker"
+19231,actor histrion player thespian role_player,a theatrical performer
+19232,actor's_agent theatrical_agent,a business agent for an actor
+19233,actor's_line speech words,words making up the dialogue of a play; "the actor forgot his speech"
+19234,actress,a female actor
+19235,actual_damages compensatory_damages general_damages,(law) compensation for losses that can readily be proven to have occurred and for which the injured party has the right to be compensated
+19236,actual_eviction,the physical ouster of a tenant from the leased premises; the tenant is relieved of any further duty to pay rent
+19237,actual_possession,(law) immediate and direct physical control over property
+19238,actual_sin,a sin committed of your own free will (as contrasted with original sin)
+19239,actuality,the state of actually existing objectively; "a hope that progressed from possibility to actuality"
+19240,actuarial_table statistical_table,a table of statistical data
+19241,actuator,a mechanism that puts something into automatic action
+19242,acuity visual_acuity sharp-sightedness,sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)
+19243,aculea,small spiny outgrowth on the wings of certain insects
+19244,aculeus,a stiff sharp-pointed plant process
+19245,aculeus,a sharp-pointed process especially a sting of a hymenopterous insect
+19246,acumen,a tapering point
+19247,acuminate_leaf,a leaf narrowing to a slender point
+19248,acupressure G-Jo shiatsu,treatment of symptoms by applying pressure with the fingers to specific pressure points on the body
+19249,acupuncture stylostixis,treatment of pain or disease by inserting the tips of needles at specific points on the skin
+19250,acute_accent acute ague,a mark placed above a vowel to indicate pronunciation
+19251,acute_angle,an angle less than 90 degrees but more than 0 degrees
+19252,acute_brain_disorder acute_organic_brain_syndrome,any disorder (as sudden confusion or disorientation) in an otherwise normal person that is due to reversible (temporary) impairment of brain tissues (as by head injuries or drugs or infection)
+19253,acute_gastritis,gastritis caused by ingesting an irritant (as too much aspirin)
+19254,acute_glaucoma closed-angle_glaucoma angle-closure_glaucoma,glaucoma in which the iris blocks the outflow of aqueous humor; "closed-angle glaucoma can cause a rapid buildup of high intraocular pressure that results in permanent visual damage in a couple of days"
+19255,acute_glossitis,glossitis resulting from injury or infection and characterized by swelling and pain
+19256,acute_hemorrhagic_encephalitis,encephalitis that resembles apoplexy due to blood extravasation
+19257,acute_leukemia,rapidly progressing leukemia
+19258,acute_lymphocytic_leukemia acute_lymphoblastic_leukemia,acute leukemia characterized by proliferation of immature lymphoblast-like cells in bone marrow, lymph nodes, spleen, and blood; most common in children
+19259,acute_myelocytic_leukemia acute_myeloid_leukemia,acute leukemia characterized by proliferation of granular leukocytes; most common in adolescents and young adults
+19260,acute_pyelonephritis,pyelonephritis resulting from the spread of a bladder infection
+19261,acute_renal_failure acute_kidney_failure,renal failure associated with burns or other trauma or with acute infection or obstruction of the urinary tract
+19262,acute_schizophrenic_episode reactive_schizophrenia,schizophrenia of abrupt onset and relatively short duration (a few weeks or months)
+19263,acute_triangle acute-angled_triangle,a triangle whose interior angles are all acute
+19264,acuteness,a sensitivity that is keen and highly developed; "dogs have a remarkable acuteness of smell"
+19265,acuteness,the quality of having a sharp edge or point
+19266,acuteness acuity sharpness keenness,a quick and penetrating intelligence; "he argued with great acuteness"; "I admired the keenness of his mind"
+19267,acyclovir Zovirax,an oral antiviral drug (trade name Zovirax) used to treat genital herpes; does not cure the disease but relieves the symptoms
+19268,acyl acyl_group,any group or radical of the form RCO- where R is an organic group; "an example of the acyl group is the acetyl group"
+19269,acyl_anhydrides acid_anhydrides,organic compounds that react with water to form an acid
+19270,acyl_halide acid_halide,organic compounds containing the group -COX where X is a halogen atom
+19271,acylation,the process of introducing an acyl group into a compound
+19272,ad advertisement advertizement advertising advertizing advert,a public promotion of some product or service
+19273,ad-lib,remark made spontaneously without prior preparation; "his ad-libs got him in trouble with the politicians"
+19274,adactylia adactyly adactylism,congenital absence of fingers and/or toes
+19275,adagio,(music) a composition played in adagio tempo (slowly and gracefully); "they played the adagio too quickly"
+19276,adagio,a slow section of a pas de deux requiring great skill and strength by the dancers
+19277,adamance obduracy unyieldingness,resoluteness by virtue of being unyielding and inflexible
+19278,adaptability,the ability to change (or be changed) to fit changed circumstances
+19279,adaptation,(physiology) the responsive adjustment of a sense organ (as the eye) to varying conditions (as of light)
+19280,adaptation adaption adjustment,the process of adapting to something (such as environmental conditions)
+19281,adaptation version,a written work (as a novel) that has been recast in a new form; "the play is an adaptation of a short novel"
+19282,adapter adaptor,device that enables something to be used in a way different from that for which it was intended or makes different pieces of apparatus compatible
+19283,adaptive_radiation,the development of many different forms from an originally homogeneous group of organisms as they fill different ecological niches
+19284,addax Addax_nasomaculatus,large antelope with lightly spiraled horns of desert regions of northern Africa
+19285,addend,a number that is added to another number (the augend)
+19286,addendum supplement postscript,textual matter that is added onto a publication; usually at the end
+19287,adder,a person who adds numbers
+19288,adder,a machine that adds numbers
+19289,adder common_viper Vipera_berus,small terrestrial viper common in northern Eurasia
+19290,adder's_tongue adder's_tongue_fern,ferns with fertile spikes shaped like a snake's tongue
+19291,addict,someone who is physiologically dependent on a substance; abrupt deprivation of the substance produces withdrawal symptoms
+19292,addict nut freak junkie junky,someone who is so ardently devoted to something that it resembles an addiction; "a golf addict"; "a car nut"; "a bodybuilding freak"; "a news junkie"
+19293,addiction,an abnormally strong craving
+19294,addiction,(Roman law) a formal award by a magistrate of a thing or person to another person (as the award of a debtor to his creditor); a surrender to a master; "under Roman law addiction was the justification for slavery"
+19295,addiction dependence dependance dependency habituation,being abnormally tolerant to and dependent on something that is psychologically or physically habit-forming (especially alcohol or narcotic drugs)
+19296,adding_machine totalizer totaliser,a calculator that performs simple arithmetic functions
+19297,addition,a suburban area laid out in streets and lots for a future residential area
+19298,addition,the act of adding one thing to another; "the addition of flowers created a pleasing effect"; "the addition of a leap day every four years"
+19299,addition add-on improver,a component that is added to something to improve it; "the addition of a bathroom was a major improvement"; "the addition of cinnamon improved the flavor"
+19300,addition increase gain,a quantity that is added; "there was an addition to property taxes this year"; "they recorded the cattle's gain in weight over a period of weeks"
+19301,addition_reaction,a chemical reaction in which one molecule is added to another
+19302,additive,something added to enhance food or gasoline or paint or medicine
+19303,additive_inverse,(mathematics) one of a pair of numbers whose sum is zero; the additive inverse of -5 is +5
+19304,addle-head addlehead loon birdbrain,a person with confused ideas; incapable of serious thought
+19305,address,the place where a person or organization can be found or communicated with
+19306,address,the manner of speaking to another individual; "he failed in his manner of address to the captain"
+19307,address,a sign in front of a house or business carrying the conventional form by which its location is described
+19308,address,the stance assumed by a golfer in preparation for hitting a golf ball
+19309,address computer_address reference,(computer science) the code that identifies where a piece of information is stored
+19310,address destination name_and_address,written directions for finding some location; written on letters or packages that are to be delivered to that location
+19311,address speech,the act of delivering a formal spoken communication to an audience; "he listened to an address on minor Roman poets"
+19312,addressee,one to whom something is addressed
+19313,addressing_machine Addressograph,a printer that automatically prints addresses on letters for mailing
+19314,adducer,a discussant who offers an example or a reason or a proof
+19315,adducing,citing as evidence or proof
+19316,adduct,a compound formed by an addition reaction
+19317,adduction,(physiology) moving of a body part toward the central axis of the body
+19318,adductor adductor_muscle,a muscle that draws a body part toward the median line
+19319,adelgid,any of various insects that feed and form galls on conifers
+19320,adenine A,(biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA
+19321,adenitis,inflammation of a gland or lymph node
+19322,adenocarcinoma glandular_cancer glandular_carcinoma,malignant tumor originating in glandular epithelium
+19323,adenoidectomy,surgical removal of the adenoids; commonly performed along with tonsillectomy
+19324,adenoma,a benign epithelial tumor of glandular origin
+19325,adenomatous_polyp,a polyp that consists of benign neoplastic tissue derived from glandular epithelium; "adenomatous polyps are visible protrusions that can develop on the mucosal surface of the colon or rectum"
+19326,adenomegaly,gland enlargement
+19327,adenopathy,a glandular disease or enlargement of glandular tissue (especially of the lymph glands)
+19328,adenosine,(biochemistry) a nucleoside that is a structural component of nucleic acids; it is present in all living cells in a combined form as a constituent of DNA and RNA and ADP and ATP and AMP
+19329,adenosine_deaminase ADA,an enzyme found in mammals that can catalyze the deamination of adenosine into inosine and ammonia; "ADA deficiency can lead to one form of severe combined immunodeficiency disease"; "the gene encoding ADA was one of the earlier human genes to be isolated and cloned for study"
+19330,adenosine_diphosphate ADP,an ester of adenosine that is converted to ATP for energy storage
+19331,adenosine_monophosphate AMP adenylic_acid,a nucleotide found in muscle cells and important in metabolism; reversibly convertible to ADP and ATP
+19332,adenosine_triphosphate ATP,a nucleotide derived from adenosine that occurs in muscle tissue; the major source of energy for cellular reactions
+19333,adenovirus,any of a group of viruses including those that in humans cause upper respiratory infections or infectious pinkeye
+19334,adeptness adroitness deftness facility quickness,skillful performance or ability without difficulty; "his quick adeptness was a product of good design"; "he was famous for his facility as an archer"
+19335,adequacy adequateness,the quality of being able to meet a need satisfactorily: "he questioned the adequacy of the usual sentimental interpretation of the Golden Rule"
+19336,ader_wax earth_wax mineral_wax ozokerite ozocerite,a waxy mineral that is a mixture of hydrocarbons and occurs in association with petroleum; some varieties are used in making ceresin and candles
+19337,adesite,dark greyish extrusive rock
+19338,adhesion,abnormal union of bodily tissues; most common in the abdomen
+19339,adhesion,a fibrous band of scar tissue that binds together normally separate anatomical structures
+19340,adhesion_contract contract_of_adhesion,a contract that heavily restricts one party while leaving the other free (as some standard form printed contracts); implies inequality in bargaining power
+19341,adhesive_bandage,bandage consisting of a medical dressing of plain absorbent gauze held in place by a plastic or fabric tape coated with adhesive
+19342,adhesive_material adhesive_agent adhesive,a substance that unites or bonds surfaces together
+19343,adhesive_tape,tape coated with adhesive
+19344,adhesiveness adhesion adherence bond,the property of sticking together (as of glue and wood) or the joining of surfaces of different composition; "the mutual adhesiveness of cells"; "a heated hydraulic press was required for adhesion"
+19345,adhocracy,an organization with little or no structure; "the choice between bureaucracy and adhocracy represents a common dilemma"; "the need for informational flexibility can lead to adhocracy"
+19346,adiabatic_process,(thermodynamics) any process that occurs without gain or loss of heat
+19347,adience,(psychology) an urge to accept or approach a situation or an object
+19348,adieu adios arrivederci auf_wiedersehen au_revoir bye bye-bye cheerio good-by goodby good-bye goodbye good_day sayonara so_long,a farewell remark; "they said their good-byes"
+19349,adipose_tissue fat fatty_tissue,a kind of body tissue containing stored fat that serves as a source of energy; it also cushions and insulates vital organs; "fatty tissue protected them from the severe cold"
+19350,adiposity adiposeness fattiness,having the property of containing fat; "he recommended exercise to reduce my adiposity"
+19351,adit,a nearly horizontal passage from the surface into a mine
+19352,adjacency contiguity contiguousness,the attribute of being so near as to be touching
+19353,adjective,a word that expresses an attribute of something
+19354,adjective,the word class that qualifies nouns
+19355,adjoining_room,a hotel room that shares a wall with another hotel room
+19356,adjournment,the act of postponing to another time or place
+19357,adjournment dissolution,the termination of a meeting
+19358,adjudication,the final judgment in a legal proceeding; the act of pronouncing judgment based on the evidence presented
+19359,adjudicator,a person who studies and settles conflicts and disputes
+19360,adjunct,a person who is an assistant or subordinate to another
+19361,adjunct,something added to another thing but not an essential part of it
+19362,adjunct,a construction that can be used to extend the meaning of a word or phrase but is not one of the main constituents of a sentence
+19363,adjuration,a solemn and earnest appeal to someone to do something
+19364,adjustable_wrench adjustable_spanner,can be changed to different settings
+19365,adjuster adjustor claims_adjuster claims_adjustor claim_agent,one who investigates insurance claims or claims for damages and recommends an effective settlement
+19366,adjusting_entry,an accounting entry made at the end of an accounting period to allocate items between accounting periods
+19367,adjustment accommodation fitting,making or becoming suitable; adjusting to circumstances
+19368,adjustment registration readjustment,the act of adjusting something to match a standard
+19369,adjutant aide aide-de-camp,an officer who acts as military assistant to a more senior officer
+19370,adjutant_bird adjutant adjutant_stork Leptoptilus_dubius,large Indian stork with a military gait
+19371,adjutant_general,a general's adjutant; chief administrative officer
+19372,adjuvant,an additive that enhances the effectiveness of medical treatment
+19373,admass,the segment of the public that is easily influenced by mass media (chiefly British)
+19374,administration disposal,a method of tending to or managing the affairs of a some group of people (especially the group's business affairs)
+19375,administration giving_medication,the act of administering medication
+19376,administration governance governing_body establishment brass organization organisation,the persons (or committees or departments etc.) who make up a body for the purpose of administering something; "he claims that the present administration is corrupt"; "the governance of an association is responsible to its members"; "he quickly became recognized as a member of the establishment"
+19377,administration judicature,the act of meting out justice according to the law
+19378,administrative_data_processing business_data_processing,data processing in accounting or business management
+19379,administrative_district administrative_division territorial_division,a district defined for administrative purposes
+19380,administrative_hearing,a hearing that takes place outside the judicial process before hearing examiners who have been granted judicial authority specifically for the purpose of conducting such hearings
+19381,administrative_law,the body of rules and regulations and orders and decisions created by administrative agencies of government
+19382,administrative_unit administrative_body,a unit with administrative responsibilities
+19383,administrator,the party appointed by a probate court to distribute the estate of someone who dies without a will or without naming an executor
+19384,administrator decision_maker,someone who administers a business
+19385,administrator executive,someone who manages a government agency or department
+19386,administrivia,the tiresome but essential details that must be taken care of and tasks that must be performed in running an organization; "he sets policy and leaves all the administrivia to his assistant"
+19387,admirability admirableness wonderfulness,admirable excellence
+19388,admiral,any of several brightly colored butterflies
+19389,admiral full_admiral,the supreme commander of a fleet; ranks above a vice admiral and below a fleet admiral
+19390,admiralty,the department in charge of the navy (as in Great Britain)
+19391,admiralty,the office of admiral
+19392,admiration appreciation,a favorable judgment; "a small token in admiration of your works"
+19393,admiration esteem,a feeling of delighted approval and liking
+19394,admirer,a person who admires; someone who esteems or respects or approves
+19395,admirer adorer,someone who admires a young woman; "she had many admirers"
+19396,admissibility,acceptability by virtue of being admissible
+19397,admission,an acknowledgment of the truth of something
+19398,admission admittance,the act of admitting someone to enter; "the surgery was performed on his second admission to the clinic"
+19399,admixture alloy,the state of impairing the quality or reducing the value of something
+19400,admixture intermixture,an additional ingredient that is added by mixing with the base; "the growing medium should be equal parts of sand and loam with an admixture of peat moss and cow manure"; "a large intermixture of sand"
+19401,admonisher monitor reminder,someone who gives a warning so that a mistake can be avoided
+19402,admonition admonishment monition,a firm rebuke
+19403,admonition monition warning word_of_advice,cautionary advice about something imminent (especially imminent danger or other unpleasantness); "a letter of admonition about the dangers of immorality"; "the warning was to beware of surprises"; "his final word of advice was not to play with matches"
+19404,adnexa annexa,accessory or adjoining anatomical parts or appendages to an organ (especially of the embryo); "Fallopian tubes and ovaries are adnexa of the uterus"
+19405,adnoun,an adjective used as a noun; "`meek' in `blessed are the meek' is an adnoun"
+19406,adobe,the clay from which adobe bricks are made
+19407,adobe adobe_brick,sun-dried brick; used in hot dry climates
+19408,adobe_lily pink_fritillary Fritillaria_pluriflora,California herb with pinkish purple flowers
+19409,adobo,a dish of marinated vegetables and meat or fish; served with rice
+19410,adolescence,the time period between the beginning of puberty and adulthood
+19411,adolescence,in the state that someone is in between puberty and adulthood
+19412,adolescent stripling teenager teen,a juvenile between the onset of puberty and maturity
+19413,adonis,any handsome young man
+19414,adoptee,someone (such as a child) who has been adopted
+19415,adoption,a legal proceeding that creates a parent-child relation between persons not related by blood; the adopted child is entitled to all privileges belonging to a natural child of the adoptive parents (including the right to inherit)
+19416,adoption acceptance acceptation espousal,the act of accepting with approval; favorable reception; "its adoption by society"; "the proposal found wide acceptance"
+19417,adoptive_parent adopter,a person who adopts a child of other parents as his or her own child
+19418,adorability adorableness,extreme attractiveness
+19419,adoration idolization idolisation,the act of admiring strongly
+19420,adoration latria,the worship given to God alone
+19421,adornment,a decoration of color or interest that is added to relieve plainness
+19422,adornment,the action of decorating yourself with something colorful and interesting
+19423,adoxography,fine writing in praise of trivial or base subjects; "Elizabethan schoolboys were taught adoxography, the art of eruditely praising worthless things"; "adoxography is particularly useful to lawyers"
+19424,adrenal_cortex,the cortex of the adrenal gland; secretes corticosterone and sex hormones
+19425,adrenal_gland adrenal suprarenal_gland,either of a pair of complex endocrine glands situated near the kidney
+19426,adrenal_medulla,the medulla of the adrenal gland; secretes epinephrine
+19427,adrenalectomy suprarenalectomy,surgical removal of one or both adrenal glands
+19428,adrenarche,the increase in activity of the adrenal glands just before puberty
+19429,adrenergic adrenergic_drug,drug that has the effects of epinephrine
+19430,adrenergic_agonist_eyedrop,a treatment for glaucoma; the eyedrops reduce intraocular pressure by decreasing the production of aqueous humor and increasing its drainage through the uveoscleral pathway
+19431,adrenocorticotropic_hormone adrenocorticotrophic_hormone ACTH adrenocorticotropin adrenocorticotrophin corticotropin corticotrophin,a hormone produced by the anterior pituitary gland that stimulates the adrenal cortex
+19432,adrenosterone,a steroid having androgenic activity; obtained from the cortex of the adrenal gland
+19433,adsorbate,a material that has been or is capable of being adsorbed
+19434,adsorbent adsorbent_material,a material having capacity or tendency to adsorb another substance
+19435,adsorption surface_assimilation,the accumulation of molecules of a gas to form a thin film on the surface of a solid
+19436,adulation,servile flattery; exaggerated and hypocritical praise
+19437,adult,any mature animal
+19438,adult grownup,a fully developed person from maturity onward
+19439,adult_body,the body of an adult human being
+19440,adult_education,a course (via lectures or correspondence) for adults who are not otherwise engaged in formal study
+19441,adult_female_body woman's_body,the body of an adult woman
+19442,adult_intelligence,the average IQ of the adults in a given population
+19443,adult_male_body man's_body,the body of an adult man
+19444,adult_respiratory_distress_syndrome ARDS wet_lung white_lung,acute lung injury characterized by coughing and rales; inflammation of the lungs which become stiff and fibrous and cannot exchange oxygen; occurs among persons exposed to irritants such as corrosive chemical vapors or ammonia or chlorine etc.
+19445,adulterant adulterator,any substance that lessens the purity or effectiveness of a substance; "it is necessary to remove the adulterants before use"
+19446,adulteration,the act of adulterating (especially the illicit substitution of one substance for another)
+19447,adulteration debasement,being mixed with extraneous material; the product of adulterating
+19448,adulterator,a changer who lessens the purity or effectiveness of a substance
+19449,adulterer fornicator,someone who commits adultery or fornication
+19450,adulteress fornicatress hussy jade loose_woman slut strumpet trollop,a woman adulterer
+19451,adultery criminal_conversation fornication,extramarital sex that willfully and maliciously interferes with marriage relations; "adultery is often cited as grounds for divorce"
+19452,adulthood,the state (and responsibilities) of a person who has attained maturity
+19453,adulthood maturity,the period of time in your life after your physical growth has stopped and you are fully developed
+19454,adumbration,a sketchy or imperfect or faint representation
+19455,advance cash_advance,an amount paid before it is earned
+19456,advance rise,increase in price or value; "the news caused a general advance on the stock market"
+19457,advance_death_benefit,a percentage of death benefits paid directly to policy holders having a short life expectancy (usually 6 months)
+19458,advancement progress,gradual improvement or growth or development; "advancement of knowledge"; "great progress in the arts"
+19459,advancer,someone who advances
+19460,advantage,(tennis) first point scored after deuce
+19461,advantage reward,benefit resulting from some event or action; "it turned out to my advantage"; "reaping the rewards of generosity"
+19462,advantage vantage,the quality of having a superior or more favorable position; "the experience gave him the advantage over me"
+19463,advection,(meteorology) the horizontal transfer of heat or other atmospheric properties
+19464,advent coming,arrival that has been awaited (especially of something momentous); "the advent of the computer"
+19465,adventitious_root,root growing in an unusual location e.g. from a stem
+19466,adventure escapade risky_venture dangerous_undertaking,a wild and exciting undertaking (not necessarily lawful)
+19467,adventure_story heroic_tale,a story of an adventure
+19468,adventurer venturer,a person who enjoys taking risks
+19469,adventuress,a woman adventurer
+19470,adventurism,recklessness in politics or foreign affairs
+19471,adventurousness venturesomeness,the trait of being adventurous
+19472,adverb,a word that modifies something other than a noun
+19473,adverb,the word class that qualifies verbs or clauses
+19474,adverbial,a word or group of words function as an adverb
+19475,adversary antagonist opponent opposer resister,someone who offers opposition
+19476,adversative_conjunction,the conjunctive relation of units that expresses the opposition of their meanings
+19477,adverse_opinion,an opinion concerning financial statements (usually based on an audit by a CPA) that the statements as a whole do not present results fairly or are not in conformity with the generally accepted accounting practices of the United States
+19478,adverse_witness hostile_witness,a witness whose relationship to the opposing party is such that his or her testimony may be prejudiced against the opposing party; "a hostile witness can be asked leading questions and cross-examined"
+19479,adversity,a stroke of ill fortune; a calamitous event; "a period marked by adversities"
+19480,adversity hardship hard_knocks,a state of misfortune or affliction; "debt-ridden farmers struggling with adversity"; "a life of hardship"
+19481,advertence advertency,the process of being heedful
+19482,advertiser advertizer adman,someone whose business is advertising
+19483,advertising publicizing,the business of drawing public attention to goods and services
+19484,advertising_agency ad_agency,an agency that designs advertisement to call public attention to its clients
+19485,advertising_campaign ad_campaign ad_blitz,an organized program of advertisements
+19486,advertising_department advertising_division,the division of a business that is responsible for advertising
+19487,advertorial,an advertisement that is written and presented in the style of an editorial or journalistic report
+19488,advice,a proposal for an appropriate course of action
+19489,advice_and_consent,a legal expression in the United States Constitution that allows the Senate to constrain the President's powers of appointment and treaty-making
+19490,advisability,the quality of being advisable; "they questioned the advisability of our policy"
+19491,advisee,someone who receives advice
+19492,adviser advisor consultant,an expert who gives advice; "an adviser helped students select their courses"; "the United States sent military advisors to Guatemala"
+19493,advisory,an announcement that usually advises or warns the public of some threat; "a frost advisory"
+19494,advisory_board planning_board,a board appointed to advise the chief administrator
+19495,advisory_service,a consulting service in which a CPA develops findings and conclusions and recommendations that are presented to the client for consideration and decision making
+19496,advocacy protagonism,active support of an idea or cause etc.; especially the act of pleading or arguing for something
+19497,advocate advocator proponent exponent,a person who pleads for a cause or propounds an idea
+19498,advocate counsel counselor counsellor counselor-at-law pleader,a lawyer who pleads cases in court
+19499,advowson,the right in English law of presenting a nominee to a vacant ecclesiastical benefice
+19500,adynamia,lack of strength or vigor (especially from illness)
+19501,adz adze,an edge tool used to cut and shape wood
+19502,adzuki_bean adsuki_bean Vigna_angularis Phaseolus_angularis,bushy annual widely grown in China and Japan for the flour made from its seeds
+19503,aeciospore,spore of a rust fungus formed in an aecium
+19504,aecium,fruiting body of some rust fungi bearing chains of aeciospores
+19505,aeolian_harp aeolian_lyre wind_harp,a harp having strings tuned in unison; they sound when wind passes over them
+19506,aeration,the process of exposing to air (so as to purify); "the aeration of the soil"
+19507,aeration,the act of charging a liquid with a gas making it effervescent
+19508,aerator,an apparatus for exposing something to the air (as sewage)
+19509,aerial_ladder,mechanically extendible ladder; used on a fire truck
+19510,aerial_torpedo,a torpedo designed to be launched from an airplane
+19511,aerialist,an acrobat who performs in the air (as on a rope or trapeze)
+19512,aerides,any orchid of the genus Aerides
+19513,aerie aery eyrie eyry,the lofty nest of a bird of prey (such as a hawk or eagle)
+19514,aerie aery eyrie eyry,any habitation at a high altitude
+19515,aerobe,an organism (especially a bacterium) that requires air or free oxygen for life
+19516,aerobics aerobic_exercise,exercise that increases the need for oxygen
+19517,aerobiosis,life sustained in the presence of air or oxygen
+19518,aerodontalgia,pain in the teeth that results from a change in air pressure (as in flying or mountain climbing)
+19519,aerodynamic_force,forces acting on airfoils in motion relative to the air (or other gaseous fluids)
+19520,aerodynamic_lift lift,the component of the aerodynamic forces acting on an airfoil that opposes gravity
+19521,aerolite,a stony meteorite consisting of silicate minerals
+19522,aerology,meteorology of the total extent of the atmosphere; especially the upper layers
+19523,aeromechanics aerodynamics,the branch of mechanics that deals with the motion of gases (especially air) and their effects on bodies in the flow
+19524,aeromedicine aerospace_medicine aviation_medicine,the study and treatment of disorders associated with flight (especially with space flight)
+19525,aeronautical_engineer,an engineer concerned with the design and construction of aircraft
+19526,aeronautical_engineering,the branch of engineering science concerned with the design and construction of aircraft
+19527,aeronautical_engineering,the activity of designing and constructing aircraft
+19528,aeronautics astronautics,the theory and practice of navigation through air or space
+19529,aerophagia,swallowing air (usually followed by belching and discomfort and flatulence)
+19530,aerophilately,the collection and study of airmail stamps
+19531,aerophile,a lover of aviation
+19532,aerosol,a cloud of solid or liquid particles in a gas
+19533,aerosol aerosol_container aerosol_can aerosol_bomb spray_can,a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)
+19534,aerospace,the atmosphere and outer space considered as a whole
+19535,aerospace_engineer,an engineer of aircraft and space vehicles
+19536,aeschynanthus,a plant of the genus Aeschynanthus having somewhat red or orange flowers and seeds having distinctive hairs at base and apex
+19537,aesthetic esthetic,(philosophy) a philosophical theory as to what is beautiful; "he despised the esthetic of minimalism"
+19538,aesthetics esthetics,(art) the branch of philosophy dealing with beauty and taste (emphasizing the evaluative criteria that are applied to art); "traditional aesthetics assumed the existence of universal and timeless criteria of artistic value"
+19539,affability affableness amiability amiableness bonhomie geniality,a disposition to be friendly and approachable (easy to talk to)
+19540,affair affaire intimacy liaison involvement amour,a usually secretive or illicit sexual relationship
+19541,affair occasion social_occasion function social_function,a vaguely specified social event; "the party was quite an affair"; "an occasion arranged to honor the president"; "a seemingly endless round of social functions"
+19542,affairs,transactions of professional or public interest; "news of current affairs"; "great affairs of state"
+19543,affect,the conscious subjective aspect of feeling or emotion
+19544,affectation mannerism pose affectedness,a deliberate pretense or exaggerated display
+19545,affected_role patient_role patient,the semantic role of an entity that is not the agent but is directly involved in or affected by the happening denoted by the verb in the clause
+19546,affectedness,the quality of being false or artificial (as to impress others)
+19547,affection affectionateness fondness tenderness heart warmness warmheartedness philia,a positive feeling of liking; "he had trouble expressing the affection he felt"; "the child won everyone's heart"; "the warmness of his welcome made us feel right at home"
+19548,affectionateness fondness lovingness warmth,a quality proceeding from feelings of affection or love
+19549,affective_disorder major_affective_disorder emotional_disorder emotional_disturbance,any mental disorder not caused by detectable organic abnormalities of the brain and in which a major disturbance of emotions is predominant
+19550,affenpinscher monkey_pinscher monkey_dog,European breed of small dog resembling a terrier with dark wiry hair and a tufted muzzle
+19551,affiant,a person who makes an affidavit
+19552,affidavit,written declaration made under oath; a written statement sworn to be true before someone legally authorized to administer an oath
+19553,affiliate,a subordinate or subsidiary associate; a person who is affiliated with another or with an organization
+19554,affiliate,a subsidiary or subordinate organization that is affiliated with another organization; "network affiliates"
+19555,affiliation,the act of becoming formally connected or joined; "welcomed the affiliation of the research center with the university"
+19556,affiliation association tie tie-up,a social or business relationship; "a valuable financial affiliation"; "he was sorry he had to sever his ties with other members of the team"; "many close associations with England"
+19557,affine,(anthropology) kin by marriage
+19558,affine_geometry,the geometry of affine transformations
+19559,affine_transformation,(mathematics) a transformation that is a combination of single transformations such as translation or rotation or reflection on an axis
+19560,affinity,(anthropology) kinship by marriage or adoption; not a blood relationship
+19561,affinity,(immunology) the attraction between an antigen and an antibody
+19562,affinity,inherent resemblance between persons or things
+19563,affinity,a natural attraction or feeling of kinship; "an affinity for politics"; "the mysterious affinity between them"; "James's affinity with Sam"
+19564,affinity chemical_attraction,the force attracting atoms to each other and binding them together in a molecule; "basic dyes have an affinity for wool and silk"
+19565,affinity kinship,a close connection marked by community of interests or similarity in nature or character; "found a natural affinity with the immigrants"; "felt a deep kinship with the other students"; "anthropology's kinship with the humanities"
+19566,affinity phylogenetic_relation,(biology) state of relationship between organisms or groups of organisms resulting in resemblance in structure or structural parts; "in anatomical structure prehistoric man shows close affinity with modern humans"
+19567,affirmation,(religion) a solemn declaration that serves the same purpose as an oath (if an oath is objectionable to the person on religious or ethical grounds)
+19568,affirmation,a judgment by a higher court that the judgment of a lower court was correct and should stand
+19569,affirmation assertion statement,the act of affirming or asserting or stating something
+19570,affirmative,a reply of affirmation; "he answered in the affirmative"
+19571,affirmative_action,a policy designed to redress past discrimination against women and minority groups through measures to improve their economic and educational opportunities; "affirmative action has been extremely controversial and was challenged in 1978 in the Bakke decision"
+19572,affirmative_pleading,any defensive pleading that affirms facts rather than merely denying the facts alleged by the plaintiff
+19573,affirmativeness,the agreeable quality of one who assents
+19574,affix,a linguistic element added to a word to produce an inflected or derived form
+19575,affixation,the result of adding an affix to a root word
+19576,affixation,formation of a word by means of an affix
+19577,afflatus,a strong creative impulse; divine inspiration; "divine afflatus"
+19578,affliction,a state of great suffering and distress due to adversity
+19579,affliction,a condition of suffering or distress due to ill health
+19580,affliction,a cause of great suffering and distress
+19581,affluence richness,abundant wealth; "they studied forerunners of richness or poverty"; "the richness all around unsettled him for he had expected to find poverty"
+19582,affluent,an affluent person; a person who is financially well off; "the so-called emerging affluents"
+19583,afforestation,the conversion of bare or cultivated land into forest (originally for the purpose of hunting)
+19584,affray altercation fracas,noisy quarrel
+19585,affray disturbance fray ruffle,a noisy fight
+19586,affricate affricate_consonant affricative,a composite speech sound consisting of a stop and a fricative articulated at the same point (as `ch' in `chair' and `j' in `joy')
+19587,affrication,the conversion of a simple stop consonant into an affricate
+19588,affusion,the act of baptizing someone by pouring water on their head
+19589,afghan,a blanket knitted or crocheted in strips or squares; sometimes used as a shawl
+19590,afghani,the basic unit of money in Afghanistan
+19591,afibrinogenemia,the absence of fibrinogen in the plasma leading to prolonged bleeding
+19592,aficionado,a fan of bull fighting
+19593,aficionado,a serious devotee of some particular music genre or musical performer
+19594,aflatoxin,a potent carcinogen from the fungus Aspergillus; can be produced and stored for use as a bioweapon
+19595,afropavo Congo_peafowl Afropavo_congensis,both sexes are brightly colored
+19596,after-shave after-shave_lotion,a fragrant lotion for a man's face after shaving
+19597,afterbirth,the placenta and fetal membranes that are expelled from the uterus after the baby is born
+19598,afterburner,a device that injects fuel into a hot exhaust for extra thrust
+19599,aftercare,care and treatment of a convalescent patient
+19600,afterdamp,a toxic mixture of gases (including carbon dioxide and carbon monoxide and nitrogen) after an explosion of firedamp in a mine
+19601,afterdeck,a deck abaft of midships
+19602,aftereffect,a delayed effect of a drug or therapy; "the drug had unexpected aftereffects"
+19603,aftereffect,any result that follows its cause after an interval
+19604,afterglow,a glow sometimes seen in the sky after sunset
+19605,afterglow,the pleasure of remembering some pleasant event; "he basked in the afterglow of his victory"
+19606,afterimage aftersensation,an image (usually a negative image) that persists after stimulation has ceased
+19607,afterlife hereafter,life after death
+19608,aftermath wake backwash,the consequences of an event (especially a catastrophic event); "the aftermath of war"; "in the wake of the accident no one knew how many had been injured"
+19609,afternoon,the part of the day between noon and evening; "he spent a quiet afternoon in the park"
+19610,afterpains,pains felt by a woman after her baby is born; associated with contractions of the uterus
+19611,afterpiece,a brief dramatic piece (usually comic) presented after a play
+19612,aftershaft,a supplementary feather (usually small) on the underside of the base of the shaft of some feathers in some birds
+19613,aftershock,a tremor (or one of a series of tremors) occurring after the main shock of an earthquake
+19614,aftertaste,an afterimage of a taste
+19615,afterthought,an addition that was not included in the original plan; "the garage was an afterthought"
+19616,afterworld,the place where you are after you die
+19617,agal,a cord (usually of goat's hair) that Arabs (especially Bedouins) wind around their heads to hold down the kaffiyeh
+19618,agalactia agalactosis,a condition in which milk is not secreted in the mother's breasts after her child has been delivered
+19619,agama,small terrestrial lizard of warm regions of the Old World
+19620,agamete,an asexual reproductive cell
+19621,agamid agamid_lizard,a lizard of the family Agamidae
+19622,agammaglobulinemia,a rare immunological disorder characterized by the virtual absence of gamma globulin in the blood and consequent susceptibility to infection
+19623,agapanthus lily_of_the_Nile,any of various plants of the genus Agapanthus having umbels of showy blue to purple flowers
+19624,agape,(Christian theology) the love of God or Christ for mankind
+19625,agape agape_love,selfless love of one person for another without sexual implications (especially love that is spiritual in nature)
+19626,agape love_feast,a religious meal shared as a sign of love and fellowship
+19627,agar agar-agar,a colloidal extract of algae; used especially in culture media and as a gelling agent in foods
+19628,agar nutrient_agar,any culture medium that uses agar as the gelling agent
+19629,agaric,a saprophytic fungus of the order Agaricales having an umbrellalike cap with gills on the underside
+19630,agaric Fomes_igniarius,fungus used in the preparation of punk for fuses
+19631,agate,an impure form of quartz consisting of banded chalcedony; used as a gemstone and for making mortars and pestles
+19632,agate_line line,space for one line of print (one column wide and 1/14 inch deep) used to measure advertising
+19633,agateware,pottery that is veined and mottled to resemble agate
+19634,agave century_plant American_aloe,tropical American plants with basal rosettes of fibrous sword-shaped leaves and flowers in tall spikes; some cultivated for ornament or for fiber
+19635,age,how long something has existed; "it was replaced because of its age"
+19636,age eld,a time of life (usually defined in years) at which some particular qualification or power arises; "she was now of school age"; "tall for his eld"
+19637,age-related_macular_degeneration AMD,macular degeneration that is age-related
+19638,age_class,people in the same age range
+19639,age_group age_bracket cohort,a group of people having approximately the same age
+19640,age_limit,regulation establishing the maximum age for doing something or holding some position
+19641,age_norm,the average age at which particular performances are expected to appear
+19642,age_of_consent,the minimum age for marrying without parental consent or the minimum age for consensual sexual relations; intercourse at an earlier age can result in a charge of assault or statutory rape; the age differs in different states of the Union
+19643,aged elderly,people who are old collectively; "special arrangements were available for the aged"
+19644,agedness senescence,the property characteristic of old age
+19645,ageism agism,discrimination on the basis of a person's age
+19646,agelessness,the quality of being timeless and eternal
+19647,agency,the state of being in action or exerting power; "the agency of providence"; "she has free agency"
+19648,agency,a business or organization that provides a particular service, especially the mediation of transactions between two parties
+19649,agency federal_agency government_agency bureau office authority,an administrative unit of government; "the Central Intelligence Agency"; "the Census Bureau"; "Office of Management and Budget"; "Tennessee Valley Authority"
+19650,agenda agendum order_of_business,a list of matters to be taken up (as at a meeting)
+19651,agenda docket schedule,a temporally organized plan for matters to be attended to
+19652,agenda_item,one of the items to be considered
+19653,agenesis agenesia,imperfect development; nondevelopment of a part
+19654,agent,a substance that exerts some force or effect
+19655,agent,a representative who acts on behalf of other persons or organizations
+19656,agent,an active and efficient cause; capable of producing a certain effect; "their research uncovered new disease agents"
+19657,agent factor broker,a businessman who buys or sells for another in exchange for a commission
+19658,agent federal_agent,any agent or representative of a federal agency or bureau
+19659,agent-in-place,an operative serving as a penetration into an intelligence target
+19660,agent_bank,a bank that acts as an agent for a foreign bank
+19661,agent_provocateur provocateur,a secret agent who incites suspected persons to commit illegal acts
+19662,agentive_role agent,the semantic role of the animate entity that instigates or causes the happening denoted by the verb in the clause
+19663,agerasia,youthful appearance in an old person
+19664,ageratum,any plant of the genus Ageratum having opposite leaves and small heads of blue or white flowers
+19665,agglomerate,volcanic rock consisting of large fragments fused together
+19666,agglomeration,a jumbled collection or mass
+19667,agglomeration,the act of collecting in a mass; the act of agglomerating
+19668,agglomerator,a device that causes material to gather into rounded balls; "a sonic agglomerator"
+19669,agglutination,a clumping of bacteria or red cells when held together by antibodies (agglutinins)
+19670,agglutination,the building of words from component morphemes that retain their form and meaning in the process of combining
+19671,agglutination agglutinating_activity,the coalescing of small particles that are suspended in solution; these larger masses are then (usually) precipitated
+19672,agglutination_test,a blood test used to identify unknown antigens; blood with the unknown antigen is mixed with a known antibody and whether or not agglutination occurs helps to identify the antigen; used in tissue matching and blood grouping and diagnosis of infections
+19673,agglutinin,an antibody that causes agglutination of a specific antigen
+19674,agglutinogen,any substance that acts as an antigen to cause agglutinin production
+19675,aggrandizement aggrandisement elevation,the act of increasing the wealth or prestige or power or scope of something; "the aggrandizement of the king"; "his elevation to cardinal"
+19676,aggravated_assault,a reckless attack with intent to injure seriously (as with a deadly weapon)
+19677,aggravation exacerbation,action that makes a problem or a disease (or its symptoms) worse; "the aggravation of her condition resulted from lack of care"
+19678,aggravation exasperation,an exasperated feeling of annoyance
+19679,aggravation irritation provocation,unfriendly behavior that causes anger or resentment
+19680,aggravator annoyance,an unpleasant person who is annoying or exasperating
+19681,aggregate,material such as sand or gravel used with cement and water to make concrete, mortar, or plaster
+19682,aggregate congeries conglomeration,a sum total of many heterogenous things taken together
+19683,aggregate_fruit multiple_fruit syncarp,fruit consisting of many individual small fruits or drupes derived from separate ovaries within a common receptacle: e.g. blackberry; raspberry; pineapple
+19684,aggression,a disposition to behave aggressively
+19685,aggression,the act of initiating hostilities
+19686,aggression,deliberately unfriendly behavior
+19687,aggression aggressiveness,a feeling of hostility that arouses thoughts of attack
+19688,aggression hostility,violent action that is hostile and usually unprovoked
+19689,aggressiveness,the quality of being bold and enterprising
+19690,aggressiveness belligerence pugnacity,a natural disposition to be hostile
+19691,aggressor,a confident assertive person who acts as instigator
+19692,aggro,(informal British usage) aggravation or aggression; "I skipped it because it was too much aggro"
+19693,agility legerity lightness lightsomeness nimbleness,the gracefulness of a person or animal that is quick and nimble
+19694,aging ageing senescence,the organic process of growing older and showing the effects of increasing age
+19695,agio agiotage premium exchange_premium,a fee charged for exchanging currencies
+19696,agitated_depression,a state of clinical depression in which the person exhibits irritability and restlessness
+19697,agitation,a mental state of extreme emotional disturbance
+19698,agitation,the feeling of being agitated; not calm
+19699,agitation,the act of agitating something; causing it to move around (usually vigorously)
+19700,agitation excitement turmoil upheaval hullabaloo,disturbance usually in protest
+19701,agitation ferment fermentation tempestuousness unrest,a state of agitation or turbulent change or development; "the political ferment produced new leadership"; "social unrest"
+19702,agitator fomenter,one who agitates; a political troublemaker
+19703,agitprop,political propaganda (especially communist propaganda) communicated via art and literature and cinema
+19704,aglet aiglet,metal or plastic sheath over the end of a shoelace or ribbon
+19705,aglet aiglet aiguilette,ornamental tagged cord or braid on the shoulder of a uniform
+19706,agnate patrikin patrilineal_kin patrisib patrilineal_sib,one related on the father's side
+19707,agnomen,an additional name or an epithet appended to a name (as in `Ferdinand the Great')
+19708,agnosia,inability to recognize objects by use of the senses
+19709,agnostic,a person who claims that they cannot have true knowledge about the existence of God (but does not deny that God might exist)
+19710,agnostic doubter,someone who is doubtful or noncommittal about something
+19711,agnosticism,a religious orientation of doubt; a denial of ultimate knowledge of the existence of God; "agnosticism holds that you can neither prove nor disprove God's existence"
+19712,agnosticism skepticism scepticism,the disbelief in any claims of ultimate knowledge
+19713,agon,a festivity in ancient Greece at which competitors contended for prizes
+19714,agonic_line,an imaginary line connecting points on the Earth's surface where the magnetic declination is zero
+19715,agonist,someone involved in a contest or battle (as in an agon)
+19716,agonist,a muscle that contracts while another relaxes; "when bending the elbow the biceps are the agonist"
+19717,agonist,(biochemistry) a drug that can combine with a receptor on a cell to produce a physiological reaction
+19718,agony suffering excruciation,a state of acute pain
+19719,agony torment torture,intense feelings of suffering; acute mental or physical pain; "an agony of doubt"; "the torments of the damned"
+19720,agony_aunt,a newspaper columnist who answers questions and offers advice on personal problems to people who write in
+19721,agony_column,a newspaper column devoted to personal problems
+19722,agora,100 agorot equal 1 shekel in Israel
+19723,agora,the marketplace in ancient Greece
+19724,agora public_square,a place of assembly for the people in ancient Greece
+19725,agoraphobia,a morbid fear of open spaces (as fear of being caught alone in some public place)
+19726,agouti Dasyprocta_aguti,agile long-legged rabbit-sized rodent of Central America and South America and the West Indies; valued as food
+19727,agranulocytosis agranulosis granulocytopenia,an acute blood disorder (often caused by radiation or drug therapy) characterized by severe reduction in granulocytes
+19728,agrapha,sayings of Jesus not recorded in the canonical Gospels
+19729,agraphia anorthography logagraphia,a loss of the ability to write or to express thoughts in writing because of a brain lesion
+19730,agreeableness agreeability,a temperamental disposition to be agreeable
+19731,agreeableness amenity,pleasantness resulting from agreeable conditions; "a well trained staff saw to the agreeableness of our accommodations"; "he discovered the amenities of reading at an early age"
+19732,agreement,the verbal act of agreeing
+19733,agreement accord,harmony of people's opinions or actions or characters; "the two parties were in agreement"
+19734,agreement arrangement,the thing arranged or agreed to; "they made arrangements to meet in Chicago"
+19735,agreement concord,the determination of grammatical inflection on the basis of word relations
+19736,agreement correspondence,compatibility of observations; "there was no agreement between theory and measurement"; "the results of two tests were in correspondence"
+19737,agreement understanding,the statement (oral or written) of an exchange of promises; "they had an agreement that they would not interfere in each other's business"; "there was an understanding between management and the workers"
+19738,agribusiness agriculture factory_farm,a large-scale farming enterprise
+19739,agricultural_laborer agricultural_labourer,a person who tills the soil for a living
+19740,agriculture,the class of people engaged in growing food
+19741,agriculturist agriculturalist cultivator grower raiser,someone concerned with the science or art or business of cultivating the soil
+19742,agrimonia agrimony,a plant of the genus Agrimonia having spikelike clusters of small yellow flowers
+19743,agrobiology,the study of plant nutrition and growth especially as a way to increase crop yield
+19744,agrology,science of soils in relation to crops
+19745,agromania,an intense desire to be alone or out in the open
+19746,agronomist,an expert in soil management and field-crop production
+19747,agronomy scientific_agriculture,the application of soil and plant sciences to land management and crop production
+19748,agrypnia,a vigil before certain feasts (as e.g. Easter)
+19749,agua agua_toad Bufo_marinus,largest known toad species; native to Central America; valuable destroyer of insect pests
+19750,ague,a fit of shivering or shaking
+19751,ague chills_and_fever,successive stages of chills and fever that is a symptom of malaria
+19752,ague_root ague_grass Aletris_farinosa,colicroot having a scurfy or granuliferous perianth and white flowers; southeastern United States
+19753,agueweed ague_weed five-flowered_gentian stiff_gentian Gentianella_quinquefolia Gentiana_quinquefolia,gentian of eastern North America having clusters of bristly blue flowers
+19754,ahimsa,a Buddhist and Hindu and especially Jainist doctrine holding that all forms of life are sacred and urging the avoidance of violence
+19755,aid assist assistance help,the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose; "he gave me an assist with the housework"; "could not walk without assistance"; "rescue party went to their aid"; "offered his help in unloading"
+19756,aid assistance help,a person or thing that is a resource that helps make something easier or possible to do; "visual aids in teaching"; "his job was to give technical assistance over the phone"
+19757,aid economic_aid financial_aid assistance financial_assistance economic_assistance,gift of money or other material help to support a person or cause; "economic assistance to depressed areas"
+19758,aide auxiliary,someone who acts as assistant
+19759,aide-memoire position_paper,a memorandum summarizing the items of an agreement (used especially in diplomatic communications)
+19760,aigrette aigret,a long plume (especially one of egret feathers) worn on a hat or a piece of jewelry in the shape of a plume
+19761,aikido,a Japanese martial art employing principles similar to judo
+19762,ailanthus,any of several deciduous Asian trees of the genus Ailanthus
+19763,ailanthus_silkworm Samia_cynthia,large green silkworm of the cynthia moth
+19764,aileron,an airfoil that controls lateral motion
+19765,ailment complaint ill,an often persistent bodily disorder or disease; a cause for complaining
+19766,ailurophobia,a morbid fear of cats
+19767,aim,the action of directing something at an object; "he took aim and fired"
+19768,aim object objective target,the goal intended to be attained (and which is believed to be attainable); "the sole object of her trip was to see her children"
+19769,aioli aioli_sauce garlic_sauce,garlic mayonnaise
+19770,air,once thought to be one of four elements composing the universe (Empedocles)
+19771,air,a mixture of gases (especially oxygen) required for breathing; the stuff that the wind consists of; "air pollution"; "a smell of chemicals in the air"; "open a window and let in some air"; "I need some fresh air"
+19772,air,the region above the ground; "her hand stopped in mid air"; "he threw the ball into the air"
+19773,air airwave,medium for radio and television broadcasting; "the program was on the air from 9 til midnight"; "the president used the airwaves to take his message to the people"
+19774,air aura atmosphere,a distinctive but intangible quality surrounding a person or thing; "an air of mystery"; "the house had a neglected air"; "an atmosphere of defeat pervaded the candidate's headquarters"; "the place had an aura of romance"
+19775,air-intake,a duct that admits air to be mixed with fuel
+19776,air-to-air_missile,a missile designed to be launched from one airplane at another
+19777,air-to-ground_missile air-to-surface_missile,a missile designed to be launched from an airplane at a target on the ground
+19778,air_alert,the time period during which military and civilian agencies are prepared for an enemy air attack
+19779,air_alert,the condition in which combat aircraft are airborne and ready for an operation; "aircraft in the Mideast are on air alert"
+19780,air_alert,the warning signal that begins a period of preparation for an enemy air attack
+19781,air_attache,a military attache who is a commissioned or warrant officer in an air force
+19782,air_bag,a safety restraint in an automobile; the bag inflates on collision and prevents the driver or passenger from being thrown forward
+19783,air_base air_station,a base for military aircraft
+19784,air_bladder swim_bladder float,an air-filled sac near the spinal column in many fishes that helps maintain buoyancy
+19785,air_bubble,a bubble of air
+19786,air_compressor,a compressor that takes in air at atmospheric pressure and delivers it at a higher pressure
+19787,air_conditioner A/C air-conditioner,an appliance designed to extract humidity from the air and thereby cool it; "we rarely turn on the air-conditioner"
+19788,air_conditioner air_conditioning,a system that keeps air cool and dry
+19789,air_cover,the use of military aircraft to provide protection against attack by enemy aircraft during ground or naval operations
+19790,air_cushion,the trapped air that supports a hovercraft a short distance above the water or ground
+19791,air_cushion air_spring,a mechanical device using confined air to absorb the shock of motion
+19792,air_cushion inflatable_cushion,a cushion usually made of rubber or plastic that can be inflated
+19793,air_defense,defensive measures designed to destroy attacking enemy aircraft or missiles or to nullify their effectiveness
+19794,air_embolism aeroembolism gas_embolism,obstruction of the circulatory system caused by an air bubble as, e.g., accidentally during surgery or hypodermic injection or as a complication from scuba diving
+19795,air_filter air_cleaner,a filter that removes dust from the air that passes through it
+19796,air_force airforce,the airborne branch of a country's armed forces
+19797,air_force_academy,an academy for training air force officers
+19798,air_force_officer commander,an officer in the airforce
+19799,air_group,a unit of the United States Air Force larger than a squadron and smaller than a wing
+19800,air_gun airgun air_rifle,a gun that propels a projectile by compressed air
+19801,air_hammer jackhammer pneumatic_hammer,a hammer driven by compressed air
+19802,air_hole,a hole that allows the passage of air
+19803,air_horn,a pneumatic horn
+19804,air_horn,air intake of a carburetor
+19805,air_lane flight_path airway skyway,a designated route followed by airplanes in flying from one airport to another
+19806,air_mail,mail that is sent by air transport
+19807,air_marshal sky_marshal,a person trained by the government in hijacking and terrorist tactics who (for security reasons) is a passenger aboard an airline flight
+19808,air_mass,a large body of air with uniform characteristics horizontally
+19809,air_mattress,a mattress that can be stored flat and inflated for use
+19810,air_passage air_duct airway,a duct that provides ventilation (as in mines)
+19811,air_plant epiphyte aerophyte epiphytic_plant,plant that derives moisture and nutrients from the air and rain; usually grows on another plant but not parasitic on it
+19812,air_pocket pocket air_hole,a local region of low pressure or descending air that causes a plane to lose height suddenly
+19813,air_pollution,pollution of the atmosphere; "air pollution reduced the visibility"
+19814,air_potato Dioscorea_bulbifera,yam of tropical Africa and Asia cultivated for it large tubers
+19815,air_pump vacuum_pump,a pump that moves air in or out of something
+19816,air_raid air_attack,an attack by armed planes on a surface target
+19817,air_reconnaissance,reconnaissance either by visual observation from the air or through the use of airborne sensors
+19818,air_sac,any of the thin-walled extensions of the tracheae of insects
+19819,air_sac,any of the membranous air-filled extensions of the lungs of birds
+19820,air_search_radar,a shipboard radar that searches for aircraft
+19821,air_shaft air_well,a shaft for ventilation
+19822,air_terminal airport_terminal,a terminal that serves air travelers or air freight
+19823,air_traffic,traffic created by the movement of aircraft
+19824,air_transportation air_transport,transportation by air
+19825,air_transportation_system,a transportation system for moving passengers or goods by air
+19826,air_travel aviation air,travel via aircraft; "air travel involves too much waiting in airports"; "if you've time to spare go by air"
+19827,air_traveler air_traveller,someone who travels by airplane
+19828,air_unit,a military unit that is part of the airforce
+19829,air_wave,a sound wave that is transmitted via air
+19830,airborne_patrol,a patrol provided by aircraft
+19831,airborne_transmission,a transmission mechanism in the which the infectious agent is spread as an aerosol and usually enters a person through the respiratory tract
+19832,airbrake,a vehicular brake that operates by compressed air; especially for heavy vehicles
+19833,airbrake dive_brake,a small parachute or articulated flap to reduce the speed of an aircraft
+19834,airbrush,an atomizer to spray paint by means of compressed air
+19835,airburst,an explosion in the atmosphere
+19836,airbus,a subsonic jet airliner operated over short distances
+19837,aircraft,a vehicle that can fly
+19838,aircraft_carrier carrier flattop attack_aircraft_carrier,a large warship that carries planes and has a long flat deck for takeoffs and landings
+19839,aircraft_engine,the engine that powers and aircraft
+19840,aircraft_landing airplane_landing,landing an aircraft
+19841,aircraftsman aircraftman,a noncommissioned officer in the British Royal Air Force
+19842,aircrew air_crew,the crew of an aircraft
+19843,aircrewman,a member of an aircrew
+19844,airdock hangar repair_shed,a large structure at an airport where aircraft can be stored and maintained
+19845,airdrop,delivery of supplies or equipment or personnel by dropping them by parachute from an aircraft; "until then, front line troops will be supplied by airdrop"
+19846,airfare,the fare charged for traveling by airplane
+19847,airfield landing_field flying_field field,a place where planes take off and land
+19848,airflow air_flow flow_of_air,the flow of air; "she adjusted the fan so that the airflow was directed right at her"
+19849,airfoil aerofoil control_surface surface,a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight
+19850,airframe,the framework and covering of an airplane or rocket (excluding the engines)
+19851,airhead,a flighty scatterbrained simpleton; "she's a total airhead"; "every airhead on a big salary rushed out to buy one"
+19852,airhead,a bridgehead seized by airborne troops
+19853,airiness,the property of something spacious and abounding in fresh air
+19854,airiness buoyancy,the property of something weightless and insubstantial
+19855,airiness delicacy,lightness in movement or manner
+19856,airing,a short excursion (a walk or ride) in the open air; "he took the dogs for an airing"
+19857,airing_cupboard,a warm cupboard where you put newly washed clothes until they are completely dry
+19858,airlift lift,transportation of people or goods by air (especially when other means of access are unavailable)
+19859,airline air_hose,a hose that carries air under pressure
+19860,airline airline_business airway,a commercial enterprise that provides scheduled flights for passengers
+19861,airliner,a commercial airplane that carries passengers
+19862,airlock air_lock,a chamber that provides access to space where air is under pressure
+19863,airmail,letters and packages that are transported by aircraft
+19864,airmail airpost,a system of conveying mail by aircraft
+19865,airmail_letter air_letter aerogram aerogramme,a letter sent by air mail
+19866,airmailer,a mailer for airmail
+19867,airplane aeroplane plane,an aircraft that has a fixed wing and is powered by propellers or jets; "the flight was delayed due to trouble with the airplane"
+19868,airplane_mechanics,the craft of building and repairing airplanes
+19869,airplane_propeller airscrew prop,a propeller that rotates to push against air
+19870,airport airdrome aerodrome drome,an airfield equipped with control tower and hangars as well as accommodations for passengers and cargo
+19871,airs pose,affected manners intended to impress others; "don't put on airs with me"
+19872,airship dirigible,a steerable self-propelled aircraft
+19873,airsickness air_sickness,motion sickness experienced while traveling by air (especially during turbulence)
+19874,airspace,the atmosphere above a nation that is deemed to be under its jurisdiction; "the plane was refused permission to enter Chinese airspace"
+19875,airspace air_space,the space in the atmosphere immediately above the earth
+19876,airspeed,the speed of an aircraft relative to the air in which it is flying
+19877,airstream,a relatively well-defined prevailing wind
+19878,airstrip flight_strip landing_strip strip,an airfield without normal airport facilities
+19879,airworthiness,fitness to fly; "the plane received a certificate of airworthiness"
+19880,aisle,a long narrow passage (as in a cave or woods)
+19881,aisle,part of a church divided laterally from the nave proper by rows of pillars or columns
+19882,aisle gangway,passageway between seating areas as in an auditorium or passenger vehicle or between areas of shelves of goods as in stores
+19883,aitchbone,a cut of beef including the H-shaped rump bone
+19884,akaryocyte akaryote acaryote,a cell without a nucleus (as an erythrocyte)
+19885,akee akee_tree Blighia_sapida,widely cultivated in tropical and subtropical regions for its fragrant flowers and colorful fruits; introduced in Jamaica by William Bligh
+19886,akinesis akinesia,motionlessness attributable to a temporary paralysis
+19887,akinetic_epilepsy,epilepsy characterized by akinesia
+19888,al-Fatah Fatah al-Asifa,a Palestinian political and military organization founded by Yasser Arafat in 1958 to work toward the creation of a Palestinian state; during the 1960s and 1970s trained terrorist and insurgent groups; "al-Fatah carried out numerous acts of international terrorism in western Europe and the Middle East in the 1970s"
+19889,al-Gama'a_al-Islamiyya Islamic_Group,a terrorist organization of militant Islamists organized into tiny cells of extreme fundamentalists; emerged during the 1970s mainly in Egyptian jails; "al-Gama'a al-Islamiyya uses force to push Egyptian society toward Islamic rule"
+19890,al-Jihad Egyptian_Islamic_Jihad Islamic_Jihad Vanguards_of_Conquest,an Islamic extremist group active since the late 1970s; seeks to overthrow the Egyptian government and replace it with an Islamic state; works in small underground cells; "the original Jihad was responsible for the assassination of Anwar Sadat in 1981"
+19891,al-Ma'unah,a radical insurgent Islamist group consisting of disaffected middle-class professionals in Malaysia who want to overthrow the government by violent means and set up an Islamic state
+19892,al-Muhajiroun,a hard-line extremist Islamic group in Great Britain who support bin Laden and other terrorist groups
+19893,al-Qaeda Qaeda al-Qa'ida al-Qaida al_Qaeda al_Qaida Base,a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries
+19894,al-Rashid_Trust,a terrorist group organized in 1996 after the Taliban took over Afghanistan and part of Osama bin Laden's international system; provides financial support for the Taliban and al-Qaeda and Jaish-i-Mohammed and assists Muslim militants around the world; established a network of madrasas and mosques in Afghanistan
+19895,al-Tawhid Al_Tawhid Divine_Unity,an Islamic terrorist cell that originated in Jordan but operates in Germany; goal is to attack Europe and Russia with chemical weapons
+19896,al-Ummah,a terrorist group formed in India in 1992; is believed to be responsible for bombings in southern India in 1998
+19897,al_Itihaad_al_Islamiya al-Itihaad_al-Islamiya Islamic_Unity AIAI,a fundamentalist Islamic group in Somalia who initially did fundraising for al-Qaeda; responsible for ambushing United States Army Rangers and for terrorist bombings in Ethiopia; believed to have branches in several countries
+19898,al_Sunna_Wal_Jamma Followers_of_the_Prophet,a resurgent Islamic fundamentalist organization based in Nigeria that is thought to be planning terrorist attacks
+19899,ala,a flat wing-shaped process or winglike part of an organism; "the alae of the nose"; "the alae of a maple seed"; "the flat petals of a pea blossom are alae"
+19900,ala,a wing of an insect
+19901,alabaster,a compact fine-textured, usually white gypsum used for carving
+19902,alabaster,a very light white
+19903,alabaster oriental_alabaster onyx_marble Mexican_onyx,a hard compact kind of calcite
+19904,alacrity briskness smartness,liveliness and eagerness; "he accepted with alacrity"; "the smartness of the pace soon exhausted him"
+19905,alalia,paralysis of the vocal cords resulting in an inability to speak
+19906,alanine,a crystalline amino acid that occurs in many proteins
+19907,alarm alert warning_signal alarum,an automatic signal (usually a sound) warning of danger
+19908,alarm dismay consternation,fear resulting from the awareness of danger
+19909,alarm warning_device alarm_system,a device that signals the occurrence of some undesirable event
+19910,alarm_clock alarm,a clock that wakes a sleeper at some preset time
+19911,alarmism,needless warnings
+19912,alarmist,a person who alarms others needlessly
+19913,alastrim variola_minor pseudosmallpox pseudovariola milk_pox white_pox West_Indian_smallpox Cuban_itch Kaffir_pox,a mild form of smallpox caused by a less virulent form of the virus
+19914,alb,a white linen liturgical vestment with sleeves; worn by priests
+19915,albacore,relatively small tuna with choice white flesh; major source of canned tuna
+19916,albacore long-fin_tunny Thunnus_alalunga,large pelagic tuna the source of most canned tuna; reaches 93 pounds and has long pectoral fins; found worldwide in tropical and temperate waters
+19917,albatross millstone,(figurative) something that hinders or handicaps; "she was an albatross around his neck"
+19918,albatross mollymawk,large web-footed birds of the southern hemisphere having long narrow wings; noted for powerful gliding flight
+19919,albedo reflective_power,the ratio of reflected to incident light
+19920,albinism,the congenital absence of pigmentation in the eyes and skin and hair
+19921,albino,a person with congenital albinism: white hair and milky skin; eyes are usually pink
+19922,albite white_feldspar,a widely distributed feldspar that forms rocks
+19923,albizzia albizia,any of numerous trees of the genus Albizia
+19924,albuca,any of various plants of the genus Albuca having large clusters of pale yellow flowers; South Africa
+19925,albuginea,whitish tunic
+19926,album,a book of blank pages with pockets or envelopes; for organizing photographs or stamp collections etc
+19927,album record_album,one or more recordings issued together; originally released on 12-inch phonograph records (usually with attractive record covers) and later on cassette audiotape and compact disc
+19928,albumin albumen,a simple water-soluble protein found in many animal tissues and liquids
+19929,albuminuria proteinuria,the presence of excessive protein (chiefly albumin but also globulin) in the urine; usually a symptom of kidney disorder
+19930,albuterol Ventolin Proventil,a bronchodilator (trade names Ventolin or Proventil) used for asthma and emphysema and other lung conditions; available in oral or inhalant forms; side effects are tachycardia and shakiness
+19931,alcalde,a mayor or chief magistrate of a Spanish town
+19932,alcazar,any of various Spanish fortresses or palaces built by the Moors
+19933,alchemist,one who was versed in the practice of alchemy and who sought an elixir of life and a panacea and an alkahest and the philosopher's stone
+19934,alchemy,a pseudoscientific forerunner of chemistry in medieval times
+19935,alcohol,any of a series of volatile hydroxyl compounds that are made from hydrocarbons by distillation
+19936,alcohol alcoholic_drink alcoholic_beverage intoxicant inebriant,a liquor or brew containing alcohol as the active agent; "alcohol (or drink) ruined him"
+19937,alcohol_abuse alcoholic_abuse alcoholism_abuse,excessive use of alcohol and alcoholic drinks
+19938,alcohol_group alcohol_radical,the chemical group -OH
+19939,alcohol_thermometer alcohol-in-glass_thermometer,thermometer consisting of a glass capillary tube marked with degrees Celsius or Fahrenheit and containing alcohol which rises or falls as it expands or contracts with changes in temperature
+19940,alcoholic alky dipsomaniac boozer lush soaker souse,a person who drinks alcohol to excess habitually
+19941,alcoholic_dementia alcohol_amnestic_disorder Korsakoff's_psychosis Korsakoff's_syndrome Korsakov's_psychosis Korsakov's_syndrome polyneuritic_psychosis,dementia observed during the last stages of severe chronic alcoholism; involves loss of memory for recent events although long term memory is intact
+19942,alcoholism alcohol_addiction inebriation drunkenness,habitual intoxication; prolonged and excessive intake of alcoholic drinks leading to a breakdown in health and an addiction to alcohol such that abrupt deprivation leads to severe withdrawal symptoms
+19943,alcove bay,a small recess opening off a larger room
+19944,aldehyde,any of a class of highly reactive chemical compounds; used in making resins and dyes and organic acids
+19945,aldehyde_group aldehyde_radical,the chemical group -CHO
+19946,alder,wood of any of various alder trees; resistant to underwater rot; used for bridges etc
+19947,alder alder_tree,north temperate shrubs or trees having toothed leaves and conelike fruit; bark is used in tanning and dyeing and the wood is rot-resistant
+19948,alder_blight,a disease of alders caused by the woolly alder aphid (a plant louse)
+19949,alder_buckthorn alder_dogwood Rhamnus_frangula,small tree common in Europe
+19950,alderfly alder_fly Sialis_lutaria,dark-colored insect having predaceous aquatic larvae
+19951,alderleaf_Juneberry alder-leaved_serviceberry Amelanchier_alnifolia,shrub or small tree of northwestern North America having fragrant creamy white flowers and small waxy purple-red fruits
+19952,alderman,a member of a municipal legislative body (as a city council); "aldermen usually represent city wards"
+19953,aldohexose,a monosaccharide sugar having six carbon atoms and an aldehyde group
+19954,aldol aldehyde-alcohol,an oily colorless liquid obtained by the condensation of two molecules of acetaldehyde; contains an alcohol group (-OH) and an aldehyde group (-CHO)
+19955,aldol_reaction,a reaction of aldehydes resulting in an aldol
+19956,aldose,a monosaccharide sugar that contains the aldehyde group or is hemiacetal
+19957,aldosterone,a corticosteroid hormone that is secreted by the cortex of the adrenal gland; regulates salt (sodium and potassium) and water balance
+19958,aldosteronism hyperaldosteronism,a condition caused by overproduction of aldosterone
+19959,ale,a general name for beer made with a top fermenting yeast; in some of the United States an ale is (by law) a brew of more than 4% alcohol by volume
+19960,aleatory_contract,a contract whose performance by one party depends on the occurrence of an uncertain contingent event (but if it is contingent on the outcome of a wager it is not enforceable)
+19961,alehouse,a tavern where ale is sold
+19962,alembic,an obsolete kind of container used for distillation; two retorts connected by a tube
+19963,alendronate Fosamax,a tablet (trade name Fosamax) prescribed to prevent or treat osteoporosis in women after menopause
+19964,aleph,the 1st letter of the Hebrew alphabet
+19965,aleph-null aleph-nought aleph-zero,the smallest infinite integer
+19966,alert alerting,a warning serves to make you more alert to danger
+19967,alert qui_vive,condition of heightened watchfulness or preparation for action; "bombers were put on alert during the crisis"
+19968,alertness alerting,a state of readiness to respond; "alerting was indicated by the desynchronization of the EEG"
+19969,alertness sharp-sightedness on_the_qui_vive,lively attentiveness
+19970,alethic_logic,the modal logic of necessity and possibility and contingency
+19971,aleurone,granular protein in outermost layer of endosperm of many seeds or cereal grains
+19972,alewife,flesh of shad-like fish abundant along the Atlantic coast or in coastal streams
+19973,alewife Alosa_pseudoharengus Pomolobus_pseudoharengus,shad-like food fish that runs rivers to spawn; often salted or smoked; sometimes placed in genus Pomolobus
+19974,alexandrite,a green variety of chrysoberyl used as a gemstone
+19975,alexic,a person with alexia
+19976,alfalfa,leguminous plant grown for hay or forage
+19977,alfalfa lucerne Medicago_sativa,important European leguminous forage plant with trifoliate leaves and blue-violet flowers grown widely as a pasture and hay crop
+19978,alfalfa_sprout,sprouted alfalfa seeds
+19979,alga algae,primitive chlorophyll-containing mainly aquatic eukaryotic organisms lacking true stems and roots and leaves
+19980,algarroba Prosopis_juliflora Prosopis_juliiflora,mesquite of Gulf Coast and Caribbean Islands from Mexico to Venezuela
+19981,algarroba algarrobilla algarobilla,mesquite pod used in tanning and dyeing
+19982,algebra,the mathematics of generalized arithmetical operations
+19983,algebraic_language,an algorithmic language having statements that resemble algebraic expressions
+19984,algebraic_number,root of an algebraic equation with rational coefficients
+19985,algebraist,a mathematician whose specialty is algebra
+19986,algidity,prostration characterized by cold and clammy skin and low blood pressure
+19987,algin alginic_acid,a gum used especially as a thickener or emulsifier
+19988,algolagnia algophilia,sexual pleasure derived from inflicting or experiencing pain
+19989,algometer,device for measuring pain caused by pressure
+19990,algometry,measuring sensitivity to pain or pressure
+19991,algophobia,a morbid fear of pain
+19992,algorism,the Arabic (or decimal) system of numeration
+19993,algorism,computation with Arabic figures
+19994,algorithm algorithmic_rule algorithmic_program,a precise rule (or set of rules) specifying how to solve some problem
+19995,algorithm_error,error resulting from the choice of the wrong algorithm or method for achieving the intended result
+19996,algorithmic_language,an artificial language designed to express algorithms
+19997,alias assumed_name false_name,a name that has been assumed temporarily
+19998,alibi,(law) a defense by an accused person purporting to show that he or she could not have committed the crime in question
+19999,alicyclic_compound,an aliphatic compound that contains a ring of atoms
+20000,alidade alidad,surveying instrument consisting of the upper movable part of a theodolite including the telescope and its attachments
+20001,alidade alidad,surveying instrument used with a plane table for drawing lines of sight on a distant object and for measuring angles
+20002,alien_absconder,a fugitive remaining in the United States after an immigration judge has ordered them deported; "the government has categorized more than 320,000 foreigners as alien absconders"
+20003,alienage alienism,the quality of being alien
+20004,alienation,(law) the voluntary and absolute transfer of title and possession of real property from one person to another; "the power of alienation is an essential ingredient of ownership"
+20005,alienation,the action of alienating; the action of causing to become unfriendly; "his behavior alienated the other students"
+20006,alienation disaffection estrangement,the feeling of being alienated from other people
+20007,alienation estrangement,separation resulting from hostility
+20008,alienation_of_affection,a tort based on willful and malicious interference with the marriage relation by a third party without justification or excuse
+20009,alienator,an unpleasant person who causes friendly people to become indifferent or unfriendly or hostile
+20010,alienee grantee,someone to whom the title of property is transferred
+20011,alienism,an obsolete term for the study and treatment of mental illness
+20012,alienist,a psychiatrist and specialist in the legal aspects of mental illness
+20013,alienor,someone from whom the title of property is transferred
+20014,alignment,the spatial property possessed by an arrangement or position of things in a straight line or in parallel lines
+20015,alignment,the act of adjusting or aligning the parts of a device in relation to each other
+20016,alimentary_canal alimentary_tract digestive_tube digestive_tract gastrointestinal_tract GI_tract,tubular passage of mucous membrane and muscle extending about 8.3 meters from mouth to anus; functions in digestion and elimination
+20017,alimentary_tract_smear,any of several cytologic smears obtained from different parts of the alimentary tract; obtained by specialized lavage techniques and used mainly to diagnose cancer in those parts
+20018,alimony maintenance,court-ordered support paid by one spouse to another after they are separated
+20019,aliphatic_compound,organic compound that is an alkane or alkene or alkyne or their derivative
+20020,aliquant aliquant_part,an integer that is not an exact divisor of some quantity; "5 is an aliquant part of 12"
+20021,aliquot aliquot_part,an integer that is an exact divisor of some quantity; "4 is an aliquot part of 12"
+20022,aliterate aliterate_person,a person who can read but is disinclined to derive information from literary sources
+20023,aliyah,(Judaism) the honor of being called up to the reading desk in the synagogue to read from the Torah; "he was called on for an aliyah"
+20024,aliyah,(Judaism) immigration of Jews to Israel; "students making aliyah"
+20025,alizarin alizarine,an orange-red crystalline compound used in making red pigments and in dyeing
+20026,alizarin_carmine alizarin_crimson alizarin_red,any of various acid dyes; used for dyeing wool scarlet red
+20027,alizarin_yellow,any of various yellow dyes; not related chemically to alizarin but applied in the same manner
+20028,alkahest alcahest universal_solvent,hypothetical universal solvent once sought by alchemists
+20029,alkalemia,a blood disorder characterized by a lower concentration of hydrogen ions in the blood (which rises above 7.45 on the pH scale)
+20030,alkali,a mixture of soluble salts found in arid soils and some bodies of water; detrimental to agriculture
+20031,alkali_grass Zigadenus_elegans,plant of western North America having grasslike leaves and greenish-white flowers
+20032,alkali_metal alkaline_metal,any of the monovalent metals of group I of the periodic table (lithium or sodium or potassium or rubidium or cesium or francium); "the hydroxides of the alkali metals are strongly alkaline"
+20033,alkali_poisoning,poisoning resulting from the ingestion of an alkali compound (as lye or ammonia)
+20034,alkalimetry,volumetric analysis using standard solutions of alkali to measure the amount of acid present
+20035,alkaline_earth alkaline-earth_metal,any of the bivalent metals of group II of the periodic table (calcium or strontium or barium or magnesium or beryllium)
+20036,alkalinity,pH values above 7
+20037,alkalinuria alkaluria,a condition in which the urine (which is normally slightly acidic) is alkaline
+20038,alkaloid,natural bases containing nitrogen found in plants
+20039,alkalosis,abnormally high alkalinity (low hydrogen-ion concentration) of the blood and other body tissues
+20040,alkapton alcapton homogentisic_acid,an acid formed as an intermediate product of the metabolism of tyrosine and phenylalanine
+20041,alkaptonuria alcaptonuria,a rare recessive metabolic anomaly marked by ochronosis and the presence of alkapton in the urine
+20042,alkene olefine olefin,any unsaturated aliphatic hydrocarbon
+20043,alkyd alkyd_resin,a durable synthetic resin widely used in adhesives and paints
+20044,alkyl alkyl_group alkyl_radical,any of a series of univalent groups of the general formula CnH2n+1 derived from aliphatic hydrocarbons
+20045,alkyl_halide haloalkane,organic compound in which halogen atoms have been substituted for hydrogen atoms in an alkane
+20046,alkylating_agent,an antineoplastic drug used to treat some forms of cancer
+20047,alkylbenzene,organic compound that has an alkyl group bound to a benzene ring
+20048,alkylbenzenesulfonate,sulfonate of alkyl benzene
+20049,all-or-none_law,(neurophysiology) a nerve impulse resulting from a weak stimulus is just as strong as a nerve impulse resulting from a strong stimulus
+20050,all-rounder all_arounder,a versatile person who is expert at many things; "she's the best all-rounder they've seen in years"
+20051,all_clear,a signal (usually a siren) that danger is over
+20052,all_clear,permission to proceed because obstacles have been removed
+20053,all_fours high-low-jack,card games in which points are won for taking the high or low or jack or game
+20054,alla_breve,a musical time signature indicating two or four half notes to a measure
+20055,allamanda,a plant of the genus Allamanda having large showy funnel-shaped flowers in terminal cymes
+20056,allantois,the vascular fetal membrane that lies below the chorion and develops from the hindgut in many embryonic higher vertebrates (reptiles, birds and mammals)
+20057,allegation,(law) a formal accusation against somebody (often in a court of law); "an allegation of malpractice"
+20058,allegation allegement,statements affirming or denying certain matters of fact that you are prepared to prove
+20059,allegiance fealty,the loyalty that citizens owe to their country (or subjects to their sovereign)
+20060,allegorizer allegoriser,someone who communicates in allegories
+20061,allegory,an expressive style that uses fictional characters and events to describe some subject by suggestive resemblances; an extended metaphor
+20062,allegretto,a quicker tempo than andante but not as fast as allegro
+20063,allegretto,a musical composition or musical passage to be performed at a somewhat quicker tempo than andante but not as fast as allegro
+20064,allegro,a brisk and lively tempo
+20065,allegro,a musical composition or musical passage to be performed quickly in a brisk lively manner
+20066,allegro_con_spirito,lively with spirit
+20067,allele allelomorph,(genetics) either of a pair (or series) of alternative forms of a gene that can occupy the same locus on a particular chromosome and that control the same character; "some alleles are dominant over others"
+20068,allemande allemande_sauce,egg-thickened veloute
+20069,allergen,any substance that can cause an allergy
+20070,allergic_eczema,eczema caused by an allergic reaction
+20071,allergic_rhinitis,rhinitis caused by an allergic reaction
+20072,allergist,a physician skilled in the diagnosis and treatment of allergies
+20073,allergology,the branch of medical science that studies the causes and treatment of allergies
+20074,allergy allergic_reaction,hypersensitivity reaction to a particular allergen; symptoms can vary greatly in intensity
+20075,allergy_diet,a diet designed to avoid the foods that you are allergic to
+20076,alleviator,a therapist who makes suffering more endurable
+20077,alley alleyway back_street,a narrow street with walls on both sides
+20078,alley_cat,a homeless cat
+20079,alliaceous_plant,bulbous plants having a characteristic pungent onion odor
+20080,alliance,a formal agreement establishing an association or alliance between nations or other groups to achieve a particular aim
+20081,alliance bond,a connection based on kinship or marriage or common interest; "the shifting alliances within a large family"; "their friendship constitutes a powerful bond between them"
+20082,alliance coalition alignment alinement,an organization of people (or countries) involved in a pact or treaty
+20083,alliance confederation,the state of being allied or confederated
+20084,allice_shad allis_shad allice allis Alosa_alosa,European shad
+20085,allies,an alliance of nations joining together to fight a common enemy
+20086,alligator,leather made from alligator's hide
+20087,alligator gator,either of two amphibious reptiles related to crocodiles but with shorter broader snouts
+20088,alligator_lizard,slim short-limbed lizard having a distinctive fold on each side that permits expansion; of western North America
+20089,alligator_snapping_turtle alligator_snapper Macroclemys_temmincki,large species having three ridges on its back; found in southeastern United States
+20090,alligator_weed alligator_grass Alternanthera_philoxeroides,prolific South American aquatic weed having grasslike leaves and short spikes of white flowers; clogs waterways with dense floating masses
+20091,alligator_wrench,a wrench with a v-shaped jaw and serrations on one side (resembles the open jaws of an alligator)
+20092,alligatorfish Aspidophoroides_monopterygius,small very elongate sea poachers
+20093,alliteration initial_rhyme beginning_rhyme head_rhyme,use of the same consonant at the beginning of each stressed syllable in a line of verse; "around the rock the ragged rascal ran"
+20094,alliterator,a speaker or writer who makes use of alliteration
+20095,allocation storage_allocation,(computer science) the assignment of particular areas of a magnetic disk to particular data or instructions
+20096,allocation_unit,a group of sectors on a magnetic disk that can be reserved for the use of a particular file
+20097,allocator distributor,a person with authority to allot or deal out or apportion
+20098,allocution,(rhetoric) a formal or authoritative address that advises or exhorts
+20099,allogamy,cross-fertilization in plants
+20100,allograph,a variant form of a grapheme, as `m' or `M' or a handwritten version of that grapheme
+20101,allograph,a signature written by one person for another
+20102,allomerism,(chemistry) variability in chemical composition without variation in crystalline form
+20103,allometry,the study of the relative growth of a part of an organism in relation to the growth of the whole
+20104,allomorph,any of several different crystalline forms of the same chemical compound; "calcium carbonate occurs in the allomorphs calcite and aragonite"
+20105,allomorph,a variant phonological representation of a morpheme; "the final sounds of `bets' and `beds' and `horses' and `oxen' are allomorphs of the English plural morpheme"
+20106,allopathy,the usual method of treating disease with remedies that produce effects differing from those produced by the disease itself
+20107,allopatry,the occurrence of related organisms in separate geographical areas with no overlap
+20108,allophone,(linguistics) any of various acoustically different forms of the same phoneme
+20109,allopurinol Zyloprim,a drug (trade name Zyloprim) used to treat gout and other conditions in which there is an excessive buildup of uric acid
+20110,allosaur allosaurus,late Jurassic carnivorous dinosaur; similar to but somewhat smaller than tyrannosaurus
+20111,allotment allocation,a share set aside for a specific purpose
+20112,allotment apportionment apportioning allocation parceling parcelling assignation,the act of distributing by allotting or apportioning; distribution according to a plan; "the apportionment of seats in the House of Representatives is based on the relative population of each state"
+20113,allotrope,a structurally different form of an element; "graphite and diamond are allotropes of carbon"
+20114,allotropy allotropism,the phenomenon of an element existing in two or more physical forms
+20115,allowance,a sum granted as reimbursement for expenses
+20116,allowance,an amount allowed or granted (as during a given period); "travel allowance"; "my weekly allowance of two eggs"; "a child's allowance should not be too generous"
+20117,allowance,the act of allowing; "He objected to the allowance of smoking in the dining room"
+20118,allowance adjustment,an amount added or deducted on the basis of qualifying circumstances; "an allowance for profit"
+20119,allowance leeway margin tolerance,a permissible difference; allowing some freedom to move within limits
+20120,alloy metal,a mixture containing two or more metallic elements or metallic and nonmetallic elements usually fused together or dissolving into each other when molten; "brass is an alloy of zinc and copper"
+20121,alloy_iron alloy_cast_iron,cast iron containing alloying elements (usually nickel or chromium or copper or molybdenum) to increase the strength or facilitate heat treatment
+20122,alloy_steel,steel who characteristics are determined by the addition of other elements in addition to carbon
+20123,allspice,deciduous shrubs having aromatic bark; eastern China; southwestern and eastern United States
+20124,allspice,ground dried berrylike fruit of a West Indian allspice tree; suggesting combined flavors of cinnamon and nutmeg and cloves
+20125,allspice allspice_tree pimento_tree Pimenta_dioica,aromatic West Indian tree that produces allspice berries
+20126,allspice_tree Pimenta_officinalis,tropical American tree having small white flowers and aromatic berries
+20127,allure allurement temptingness,the power to entice or attract through personal charm
+20128,allurement,attractiveness; "its allurement was its remoteness"
+20129,allusion,passing reference or indirect mention
+20130,allusiveness,a quality characterized by indirect reference
+20131,alluvial_fan alluvial_cone,a fan-shaped deposit where a fast flowing stream flattens out
+20132,alluvial_flat alluvial_plain,a flat resulting from repeated deposits of alluvial material by running water
+20133,alluvial_sediment alluvial_deposit alluvium alluvion,clay or silt or gravel carried by rushing streams and deposited where the stream slows down
+20134,alluvial_soil,a fine-grained fertile soil deposited by water flowing over flood plains or in river beds
+20135,alluvion,gradual formation of new land, by recession of the sea or deposit of sediment
+20136,ally,a friendly nation
+20137,ally friend,an associate who provides cooperation or assistance; "he's a good ally in fight"
+20138,allyl allyl_group allyl_radical,the univalent unsaturated organic radical C3H5; derived from propylene
+20139,allyl_alcohol propenyl_alcohol,an unsaturated primary alcohol present in wood spirit; use to make resins and plasticizers and pharmaceuticals
+20140,allyl_resin,a resin derived from allyl alcohol that hardens when cured; used as an adhesive
+20141,alma_mater,your alma mater is a school you graduated from
+20142,almanac,an annual publication containing tabular information in a particular field or fields arranged according to the calendar of a given year
+20143,almanac farmer's_calendar,an annual publication including weather forecasts and other miscellaneous information arranged according to the calendar of a given year
+20144,almandine,a purple variety of the ruby spinel
+20145,almandite almandine,a deep red garnet consisting of iron aluminum silicate
+20146,almond,oval-shaped edible seed of the almond tree
+20147,almond sweet_almond Prunus_dulcis Prunus_amygdalus Amygdalus_communis,small bushy deciduous tree native to Asia and North Africa having pretty pink blossoms and highly prized edible nuts enclosed in a hard green hull; cultivated in southern Australia and California
+20148,almond_cookie almond_crescent,very rich cookie containing ground almonds; usually crescent-shaped
+20149,almond_extract,flavoring made from almonds macerated in alcohol
+20150,almond_moth fig_moth Cadra_cautella,a moth whose larvae feed on and mat together with webbing various stored products of vegetable origin
+20151,almond_oil expressed_almond_oil sweet_almond_oil,pale yellow fatty oil expressed from sweet or bitter almonds
+20152,almond_tree,any of several small bushy trees having pink or white blossoms and usually bearing nuts
+20153,almond_willow black_Hollander Salix_triandra Salix_amygdalina,Old World willow with light green leaves cultivated for use in basketry
+20154,almoner medical_social_worker,an official in a British hospital who looks after the social and material needs of the patients
+20155,alms,money or goods contributed to the poor
+20156,alms-giving almsgiving,making voluntary contributions to aid the poor
+20157,alms_dish alms_tray,a tray for collecting the offering from a congregation
+20158,almsgiver,a person who gives alms
+20159,alocasia elephant's_ear elephant_ear,any plant of the genus Alocasia having large showy basal leaves and boat-shaped spathe and reddish berries
+20160,aloe,succulent plants having rosettes of leaves usually with fiber like hemp and spikes of showy flowers; found chiefly in Africa
+20161,aloes bitter_aloes,a purgative made from the leaves of aloe
+20162,aloha ciao,an acknowledgment that can be used to say hello or goodbye (aloha is Hawaiian and ciao is Italian)
+20163,aloneness loneliness lonesomeness solitariness,a disposition toward being alone
+20164,aloofness remoteness standoffishness withdrawnness,a disposition to be distant and unsympathetic in manner
+20165,alopecia,loss of hair (especially on the head) or loss of wool or feathers; in humans it can result from heredity or hormonal imbalance or certain diseases or drugs and treatments (chemotherapy for cancer)
+20166,alopecia_areata,patchy baldness
+20167,alp,any high mountain
+20168,alpaca,wool of the alpaca
+20169,alpaca,a thin glossy fabric made of the wool of the Lama pacos, or made of a rayon or cotton imitation of that wool
+20170,alpaca Lama_pacos,domesticated llama with long silky fleece; believed to be a domesticated variety of the guanaco
+20171,alpenstock,a stout staff with a metal point; used by mountain climbers
+20172,alpha,the beginning of a series or sequence; "the Alpha and Omega, the first and the last, the beginning and the end"--Revelations
+20173,alpha,the 1st letter of the Greek alphabet
+20174,alpha-beta_brass Muntz_metal yellow_metal,a brass that has more zinc and is stronger than alpha brass; used in making castings and hot-worked products
+20175,alpha-interferon,a form of interferon that is produced endogenously and commercially for its pharmacological effects (including regulation of the immune system and antiviral and antineoplastic effects)
+20176,alpha-linolenic_acid,a polyunsaturated fatty acid with 18 carbon atoms; the only omega-3 fatty acid found in vegetable products; it is most abundant in canola oil; a fatty acid essential for nutrition
+20177,alpha-naphthol,an isomer of naphthol used in dyes
+20178,alpha-naphthol_test Molisch's_test Molisch_test Molisch_reaction,biochemical indicator of the presence of carbohydrates in a solution; if carbohydrates are present a violet ring is formed by reaction with alpha-naphthol in the presence of sulfuric acid
+20179,alpha-tocopheral,a potent form of vitamin E obtained from germ oils or by synthesis
+20180,alpha_and_omega,the first and last; signifies God's eternity
+20181,alpha_and_omega,the basic meaning of something; the crucial part
+20182,alpha_blocker alpha-blocker alpha-adrenergic_blocker alpha-adrenergic_blocking_agent,any of various drugs that block alpha-adrenergic receptors; used in treating benign prostatic hyperplasia; relaxes the muscles of the prostate and bladder
+20183,alpha_brass,an alloy of brass and zinc; used mainly for cold working
+20184,alpha_bronze,an alloy of copper and tin that can be worked
+20185,alpha_decay,radioactive decay of an atomic nucleus that is accompanied by the emission of an alpha particle
+20186,alpha_fetoprotein alpha_foetoprotein AFP,an abnormally large amount of this fetoprotein in the fetus can signal an abnormality of the neural tube (as spina bifida or anencephaly)
+20187,alpha_globulin,a globulin in blood plasma or serum that is alkaline and has great electrophoretic mobility
+20188,alpha_iron,a magnetic allotrope of iron; stable below 906 degrees centigrade
+20189,alpha_particle,a positively charged particle that is the nucleus of the helium atom; emitted from natural or radioactive isotopes
+20190,alpha_privative,the negative prefix a- or un-
+20191,alpha_radiation alpha_ray,the radiation of alpha particles during radioactive decay
+20192,alpha_receptor alpha-adrenergic_receptor alpha-adrenoceptor,receptors postulated to exist on nerve cell membranes of the sympathetic nervous system in order to explain the specificity of certain agents that affect only some sympathetic activities (such as vasoconstriction and relaxation of intestinal muscles and contraction of smooth muscles)
+20193,alpha_rhythm alpha_wave,the normal brainwave in the electroencephalogram of a person who is awake but relaxed; occurs with a frequency of 8-12 hertz
+20194,alpha_software,a first release of a software product that is usually tested only by the developers
+20195,alpha_test,(computer science) a first test of an experimental product (such as computer software) carried out by the developer
+20196,alphabet,a character set that includes letters and is used to write a language
+20197,alphabet_soup,a confusing assortment; "Roosevelt created an alphabet soup of federal agencies"
+20198,alphabet_soup,soup that contains small noodles in the shape of letters of the alphabet
+20199,alphabetic_writing alphabetic_script,a writing system based on alphabetic characters
+20200,alphabetization alphabetisation,the act of putting in alphabetical order
+20201,alphabetizer alphabetiser,a literate person who can arrange items in alphabetical order
+20202,alphanumerics alphanumeric_characters,a character set that includes letters and digits and punctuation
+20203,alphavirus,an arbovirus of the family Togaviridae that can cause a variety of encephalitis in horses
+20204,alpine_ash mountain_oak Eucalyptus_delegatensis,tall timber tree with hard heavy pinkish or light brown wood
+20205,alpine_azalea mountain_azalea Loiseleuria_procumbens,creeping mat-forming evergreen shrub of high mountain regions of northern hemisphere grown for its rose-pink flowers
+20206,alpine_bearberry black_bearberry Arctostaphylos_alpina,deciduous creeping shrub bright red in autumn having black or blue-black berries; alpine and circumpolar
+20207,alpine_clover Trifolium_alpinum,European mountain clover with fragrant usually pink flowers
+20208,alpine_clubmoss Lycopodium_alpinum,a variety of club moss
+20209,alpine_coltsfoot Homogyne_alpina Tussilago_alpina,rhizomatous herb with purple-red flowers suitable for groundcover; sometimes placed in genus Tussilago
+20210,alpine_gold alpine_hulsea Hulsea_algida,low tufted plant having hairy stems each topped by a flower head with short narrow yellow rays; northwestern United States
+20211,alpine_goldenrod Solidago_multiradiata,goldenrod similar to narrow goldenrod but having bristly hairs on edges of leaf stalks; mountainous regions of western America
+20212,alpine_milk_vetch Astragalus_alpinus,perennial of mountainous areas of Eurasia and North America
+20213,alpine_salamander Salamandra_atra,ovoviviparous amphibian of the Alps
+20214,alpine_totara Podocarpus_nivalis,low wide-spreading coniferous shrub of New Zealand mountains
+20215,alpinist,a mountain climber who specializes in difficult climbs
+20216,alprazolam Xanax,an antianxiety agent (trade name Xanax) of the benzodiazepine class
+20217,alstroemeria,any of various South American plants of the genus Alstroemeria valued for their handsome umbels of beautiful flowers
+20218,altar,a raised structure on which gifts or sacrifices to a god are made
+20219,altar communion_table Lord's_table,the table in Christian churches where communion is given
+20220,altar_boy,a boy serving as an acolyte
+20221,altar_wine sacramental_wine,used in a communion service
+20222,altarpiece reredos,a painted or carved screen placed above and behind an altar or communion table
+20223,altazimuth,an instrument that measures the altitude and azimuth of celestial bodies; used in navigation
+20224,alter_ego,a very close and trusted friend who seems almost a part of yourself
+20225,alterability,the quality of being alterable
+20226,alteration modification adjustment,the act of making something different (as e.g. the size of a garment)
+20227,alternating_current AC alternating_electric_current,an electric current that reverses direction sinusoidally; "In the US most household current is AC at 60 cycles per second"
+20228,alternation,successive change from one thing or state to another and back again; "a trill is a rapid alternation between the two notes"
+20229,alternation_of_generations heterogenesis xenogenesis,the alternation of two or more different forms in the life cycle of a plant or animal
+20230,alternative_birth alternative_birthing,a method of childbirth that avoids intrusive high-tech medicine in favor of more natural and homely settings
+20231,alternative_energy,energy derived from sources that do not use up natural resources or harm the environment
+20232,alternative_medicine,the practice of medicine without the use of drugs; may involve herbal medicines or self-awareness or biofeedback or acupuncture
+20233,alternative_pleading pleading_in_the_alternative,a pleading that alleges facts so separate that it is difficult to determine which facts the person intends to rely on
+20234,alternator,an old term for an electric generator that produces alternating current (especially in automobiles)
+20235,althea althaea hollyhock,any of various plants of the genus Althaea; similar to but having smaller flowers than genus Alcea
+20236,altimeter,an instrument that measures the height above ground; used in navigation
+20237,altitude,the perpendicular distance from the base of a geometric figure to the opposite vertex (or side if parallel)
+20238,altitude height,elevation especially above sea level or above the earth's surface; "the altitude gave her a headache"
+20239,altitude_sickness,effects (as nosebleed or nausea) of oxygen deficiency in the blood and tissues at high altitudes
+20240,alto,a singer whose voice lies in the alto clef
+20241,alto,(of a musical instrument) the second highest instrument in a family of musical instruments
+20242,alto,the pitch range of the lowest female voice
+20243,alto_clef viola_clef,a clef that puts middle C on the third line of a staff
+20244,alto_relievo alto_rilievo high_relief,a sculptural relief in which forms extend out from the background to at least half their depth
+20245,alto_saxophonist altoist,a musician who plays the alto saxophone
+20246,altocumulus altocumulus_cloud,a cumulus cloud at an intermediate altitude of 2 or 3 miles
+20247,altostratus altostratus_cloud,a stratus cloud at an intermediate altitude of 2 or 3 miles
+20248,altruism selflessness,the quality of unselfish concern for the welfare of others
+20249,alula calypter,scalelike structure between the base of the wing and the halter of a two-winged fly
+20250,alum,a double sulphate of aluminum and potassium that is used as an astringent (among other things)
+20251,alum ammonia_alum ammonium_alum,a white crystalline double sulfate of aluminum: the ammonium double sulfate of aluminum
+20252,alum potassium_alum potash_alum,a white crystalline double sulfate of aluminum: the potassium double sulfate of aluminum
+20253,alumina aluminum_oxide aluminium_oxide,any of various forms of aluminum oxide occurring naturally as corundum
+20254,aluminate,a compound of alumina and a metallic oxide
+20255,aluminum aluminium Al atomic_number_13,a silvery ductile metallic element found primarily in bauxite
+20256,aluminum_bronze aluminium_bronze,an alloy of copper and aluminum with high tensile strength and resistance to corrosion
+20257,aluminum_business aluminum_industry,manufacturers of aluminum considered as a group
+20258,aluminum_chloride aluminium_chloride,a chloride used as a wood preservative or catalyst
+20259,aluminum_foil aluminium_foil tin_foil,foil made of aluminum
+20260,aluminum_hydroxide aluminium_hydroxide hydrated_aluminum_oxide hydrated_aluminium_oxide,white crystalline compound that occurs naturally as the mineral gibbsite
+20261,alumnus alumna alum graduate grad,a person who has received a degree from a school (high school or college or university)
+20262,alumroot alumbloom,any of several herbs of the genus Heuchera
+20263,alundum,a substance made of fused alumina
+20264,alveolar_arch,the part of the upper or lower jawbones in which the teeth are set
+20265,alveolar_artery arteria_alveolaris,a branch of the maxillary artery that supplies the alveolar process
+20266,alveolar_bed,lung tissue densely packed with alveoli
+20267,alveolar_consonant dental_consonant alveolar dental,a consonant articulated with the tip of the tongue near the gum ridge
+20268,alveolar_ectasia,abnormal enlargement of the air sacs in the lungs
+20269,alveolar_resorption,wasting of the bony socket
+20270,alveolar_rhabdomyosarcoma alveolar_rhabdosarcoma,form of rhabdomyosarcoma occurring mainly in adolescents and young adults
+20271,alveolar_ridge gum_ridge alveolar_process,a ridge that forms the borders of the upper and lower jaws and contains the sockets of the teeth
+20272,alveolitis,inflammation of the alveoli in the lungs caused by inhaling dust; with repeated exposure the condition may become chronic
+20273,alveolitis dry_socket,inflammation in the socket of a tooth; sometimes occurs after a tooth is extracted and a blood clot fails to form
+20274,alveolus air_sac air_cell,a tiny sac for holding air in the lungs; formed by the terminal dilation of tiny air passageways
+20275,alyssum madwort,any garden plant of the genus Alyssum having clusters of small yellow or white flowers
+20276,amabilis_fir white_fir Pacific_silver_fir red_silver_fir Christmas_tree Abies_amabilis,medium to tall fir of western North America having a conic crown and branches in tiers; leaves smell of orange when crushed
+20277,amalgam,a combination or blend of diverse things; "his theory is an amalgam of earlier ideas"
+20278,amalgam dental_amalgam,an alloy of mercury with another metal (usually silver) used by dentists to fill cavities in teeth; except for iron and platinum all metals dissolve in mercury and chemists refer to the resulting mercury mixtures as amalgams
+20279,amalgamation merger uniting,the combination of two or more commercial companies
+20280,amalgamator,a businessman who arranges an amalgamation of two or more commercial companies
+20281,amaranth,seed of amaranth plants used as a native cereal in Central and South America
+20282,amaranth,any of various plants of the genus Amaranthus having dense plumes of green or red flowers; often cultivated for food
+20283,amarelle,pale red sour cherry with colorless or nearly colorless juice
+20284,amarelle Prunus_cerasus_caproniana,any of several cultivated sour cherry trees bearing pale red fruit with colorless juice
+20285,amaretto,an Italian almond liqueur
+20286,amaryllis,bulbous plant having showy white to reddish flowers
+20287,amastia,absence of the mammary glands (either through surgery or developmental defect)
+20288,amateur,an athlete who does not play for pay
+20289,amateur,someone who pursues a study or sport as a pastime
+20290,amateurishness,something that demonstrates a lack of professional competency
+20291,amateurism,the conviction that people should participate in sports as a hobby (for the fun of it) rather than for money
+20292,amaurosis,partial or total loss of sight without pathology of the eye; caused by disease of optic nerve or retina or brain
+20293,amazon,mainly green tropical American parrots
+20294,amazon virago,a large strong and aggressive woman
+20295,ambages,(archaic) roundabout or mysterious ways of action
+20296,ambassador,an informal representative; "an ambassador of good will"
+20297,ambassador embassador,a diplomat of the highest rank; accredited as representative from one country to another
+20298,ambassadorship,the post of ambassador
+20299,ambassadress,a woman ambassador
+20300,amber,a hard yellowish to brownish translucent fossil resin; used for jewelry
+20301,amber gold,a deep yellow color; "an amber light illuminated the room"; "he admired the gold of her hair"
+20302,amber_lily Anthericum_torreyi,plant having basal grasslike leaves and a narrow open cluster of starlike yellowish-orange flowers atop a leafless stalk; southwestern United States; only species of Anthericum growing in North America
+20303,ambergris,waxy substance secreted by the sperm whale and found floating at sea or washed ashore; used in perfume
+20304,amberjack amberfish,any of several amber to coppery fork-tailed warm-water carangid fishes
+20305,ambiance ambience,the atmosphere of an environment
+20306,ambidexterity ambidextrousness,the property of being equally skillful with each hand
+20307,ambiguity,an expression whose meaning cannot be determined from its context
+20308,ambiguity equivocalness,unclearness by virtue of having more than one meaning
+20309,ambition ambitiousness,a strong drive for success
+20310,ambition aspiration dream,a cherished desire; "his ambition is to own his own business"
+20311,ambivalence ambivalency,mixed feelings or emotions
+20312,ambiversion,(psychology) a balanced disposition intermediate between extroversion and introversion
+20313,amble promenade saunter stroll perambulation,a leisurely walk (usually in some public place)
+20314,amblygonite,a white or grey mineral consisting of lithium aluminum phosphate; a source of lithium
+20315,amblyopia,visual impairment without apparent organic pathology
+20316,amboina_pine amboyna_pine Agathis_dammara Agathis_alba,native to the Moluccas and Philippines; a source of dammar resin
+20317,amboyna Andaman_redwood,mottled curly-grained wood of Pterocarpus indicus
+20318,ambrosia,fruit dessert made of oranges and bananas with shredded coconut
+20319,ambrosia nectar,(classical mythology) the food and drink of the gods; mortals who ate it became immortal
+20320,ambulacrum,one of the five areas on the undersurface of an echinoderm on which the tube feet are located
+20321,ambulance,a vehicle that takes people to and from hospitals
+20322,ambulance_chaser,an unethical lawyer who incites accident victims to sue
+20323,ambulant_plague ambulatory_plague pestis_ambulans,a mild form of bubonic plague
+20324,ambulation,walking about; "the hospital encouraged early ambulation"
+20325,ambulatory,a covered walkway (as in a cloister); "it has an ambulatory and seven chapels"
+20326,ambush ambuscade lying_in_wait trap,the act of concealing yourself and lying in wait to attack by surprise
+20327,ambusher,an attacker who waits in a concealed position to launch a surprise attack
+20328,ambystomid ambystomid_salamander,small to moderate-sized terrestrial or semiaquatic New World salamander
+20329,ameba amoeba,naked freshwater or marine or parasitic protozoa that form temporary pseudopods for feeding and locomotion
+20330,amebiasis amoebiasis amebiosis amoebiosis,infection by a disease-causing ameba
+20331,amebic_dysentery amoebic_dysentery,inflammation of the intestines caused by Endamoeba histolytica; usually acquired by ingesting food or water contaminated with feces; characterized by severe diarrhea
+20332,amelia,congenital absence of an arm or leg
+20333,amelioration melioration betterment,the act of relieving ills and changing for the better
+20334,ameloblast,a cell from which tooth enamel develops
+20335,amelogenesis,the developmental process of forming tooth enamel
+20336,amen_corner,area reserved for persons leading the responsive `amens'
+20337,amenability amenableness cooperativeness,the trait of being cooperative
+20338,amended_return,a tax return that corrects the information in an earlier return
+20339,amendment,a statement that is added to or revises or improves a proposal or document (a bill or constitution etc.)
+20340,amendment,the act of amending or correcting
+20341,amenorrhea amenorrhoea amenia,absence or suppression of normal menstrual flow
+20342,americium Am atomic_number_95,a radioactive transuranic metallic element; discovered by bombarding uranium with helium atoms
+20343,amethyst,a transparent purple variety of quartz; used as a gemstone
+20344,amethystine_python,a python having the color of amethyst
+20345,ametria,congenital absence of the uterus
+20346,ametropia,(ophthalmology) faulty refraction of light rays in the eye as in astigmatism or myopia
+20347,amicability amicableness,a disinclination to quarrel
+20348,amicability amicableness,having a disposition characterized by warmth and friendliness
+20349,amicus_curiae friend_of_the_court,an adviser to the court on some matter of law who is not a party to the case; usually someone who wants to influence the outcome of a lawsuit involving matters of wide public interest
+20350,amicus_curiae_brief,a brief presented by someone interested in influencing the outcome of a lawsuit but who is not a party to it
+20351,amide,any organic compound containing the group -CONH2
+20352,amigo,a friend or comrade
+20353,amine aminoalkane,a compound derived from ammonia by replacing hydrogen atoms by univalent hydrocarbon radicals
+20354,amino amino_group,the radical -NH2
+20355,amino_acid aminoalkanoic_acid,organic compounds containing an amino group and a carboxylic acid group; "proteins are composed of various proportions of about 20 common amino acids"
+20356,amino_plastic aminoplast amino_resin,a plastic (synthetic resin) made from amino compounds; used as an adhesive and as a coating for paper and textiles
+20357,aminoaciduria,abnormal presence of amino acids in the urine; usually a symptom of metabolic defects
+20358,aminobenzoic_acid,a derivative of benzoic acid
+20359,aminomethane,a methyl with the hydrogen atom replaced by an amino radical
+20360,aminophylline,a theophylline derivative that is used as a bronchodilator in the treatment of bronchial asthma, emphysema, and bronchitis
+20361,aminopyrine amidopyrine,a white crystalline substance used as an analgesic and antipyretic
+20362,amiodarone Cordarone,an antiarrhythmic drug (trade name Cordarone) that has potentially fatal side effects and is used to control serious heart rhythm problems only when safer agents have been ineffective
+20363,amitosis,the direct method of cell division characterized by simple division of the nucleus without formation of chromosomes
+20364,amitriptyline amitriptyline_hydrochloride Elavil,a tricyclic antidepressant drug (trade name Elavil) with serious side effects; interacts with many other medications
+20365,amity,a state of friendship and cordiality
+20366,amity cordiality,a cordial disposition
+20367,amlodipine_besylate Norvasc,a vasodilator (trade name Norvasc) taken in tablet form; prescribed for hypertension and angina pectoris
+20368,ammeter,a meter that measures the flow of electrical current in amperes
+20369,ammine,a complex inorganic compound that contains ammonia molecules
+20370,ammobium,any plant of the genus Ammobium having yellow flowers and silvery foliage
+20371,ammonia,a pungent gas compounded of nitrogen and hydrogen (NH3)
+20372,ammonia_clock,an atomic clock based on vibrational frequency of the nitrogen atom in the ammonia molecule
+20373,ammonia_water ammonia ammonium_hydroxide,a water solution of ammonia
+20374,ammoniac gum_ammoniac,the aromatic gum of the ammoniac plant
+20375,ammonification,impregnation with ammonia or a compound of ammonia
+20376,ammonite ammonoid,one of the coiled chambered fossil shells of extinct mollusks
+20377,ammonium ammonium_ion,the ion NH4 derived from ammonia; behaves in many respects like an alkali metal ion
+20378,ammonium_carbamate,a salt of carbamic acid that is used as a nitrogen fertilizer
+20379,ammonium_carbonate,a carbonate of ammonium; used in the manufacture of smelling salts and baking powder and ammonium compounds
+20380,ammonium_chloride sal_ammoniac,a white salt used in dry cells
+20381,ammonium_nitrate,used as an explosive and fertilizer and rocket propellant
+20382,ammoniuria,excessive ammonia in the urine
+20383,ammunition,any nuclear or chemical or biological material that can be used as a weapon of mass destruction
+20384,ammunition,information that can be used to attack or defend a claim or argument or viewpoint; "his admission provided ammunition for his critics"
+20385,ammunition ammo,projectiles to be fired from a gun
+20386,amnesia memory_loss blackout,partial or total loss of memory; "he has a total blackout for events of the evening"
+20387,amnesic amnesiac,a person suffering from amnesia
+20388,amnesty,a period during which offenders are exempt from punishment
+20389,amnesty pardon free_pardon,the formal act of liberating someone
+20390,amniocentesis amnio,(pregnancy) extraction by centesis of amniotic fluid from a pregnant woman (after the 15th week of pregnancy) to aid in the diagnosis of fetal abnormalities
+20391,amnion amniotic_sac amnios,thin innermost membranous sac enclosing the developing embryo of higher vertebrates (reptiles, birds and mammals)
+20392,amniote,any member of the Amniota
+20393,amniotic_cavity,the fluid-filled cavity that surrounds the developing embryo
+20394,amniotic_fluid amnionic_fluid waters,the serous fluid in which the embryo is suspended inside the amnion; "before a woman gives birth her waters break"
+20395,amobarbital,a barbiturate with sedative and hypnotic effects; used to relieve insomnia and as an anticonvulsant
+20396,amobarbital_sodium blue blue_angel blue_devil Amytal,the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic
+20397,amora,one of a group of rabbis (active AD 250-500) who discussed the Mishnaic law in the law schools of Palestine and Mesopotamia where they explained and applied earlier teachings and whose discussions are recorded in the Talmud; they emphasized the study of Torah and the importance of personal action and the fulfillment of the commandments
+20398,amoralism,the doctrine that moral distinctions are invalid
+20399,amoralist,someone who adheres to the doctrine that ordinary moral distinctions are invalid
+20400,amorality,the quality of being amoral
+20401,amorist,one dedicated to love and lovemaking especially one who writes about love
+20402,amorousness enamoredness,a feeling of love or fondness
+20403,amorousness eroticism erotism sexiness amativeness,the arousal of feelings of sexual desire
+20404,amorpha,any plant of the genus Amorpha having odd-pinnate leaves and purplish spicate flowers
+20405,amorphophallus,any plant of the genus Amorphophallus
+20406,amorphous_shape,an ill-defined or arbitrary shape
+20407,amortization amortisation,the reduction of the value of an asset by prorating its cost over a period of years
+20408,amortization amortisation,payment of an obligation in a series of installments or transfers
+20409,amount,the relative magnitude of something with reference to a criterion; "an adequate amount of food for four people"
+20410,amour_propre conceit self-love vanity,feelings of excessive pride
+20411,amoxicillin Amoxil Larotid Polymox Trimox Augmentin,an antibiotic; a semisynthetic oral penicillin (trade names Amoxil and Larotid and Polymox and Trimox and Augmentin) used to treat bacterial infections
+20412,amperage,the strength of an electrical current measured in amperes
+20413,ampere amp A,the basic unit of electric current adopted under the Systeme International d'Unites; "a typical household circuit carries 15 to 50 amps"
+20414,ampere international_ampere,a former unit of electric current (slightly smaller than the SI ampere)
+20415,ampere-hour,a unit of charge equal to 3600 coulombs
+20416,ampere-minute,a unit of charge equal to 60 coulombs
+20417,ampere-turn,a unit of magnetomotive force equal to the magnetomotive force produced by the passage of 1 ampere through 1 complete turn of a coil; equal to 1.257 gilberts
+20418,ampersand,a punctuation mark (&) used to represent conjunction (and)
+20419,amphetamine pep_pill upper speed,a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression
+20420,amphetamine_sulfate amphetamine_sulphate,a sulfate derivative of amphetamine that is used as a stimulant for the central nervous system
+20421,amphibia class_Amphibia,the class of vertebrates that live on land but breed in water; frogs; toads; newts; salamanders; caecilians
+20422,amphibian,cold-blooded vertebrate typically living on land but breeding in water; aquatic larvae undergo metamorphosis into adult form
+20423,amphibian amphibious_aircraft,an airplane designed to take off and land on water
+20424,amphibian amphibious_vehicle,a flat-bottomed motor vehicle that can travel on land or water
+20425,amphibian_family,any family of amphibians
+20426,amphibian_genus,any genus of amphibians
+20427,amphibious_assault,an amphibious operation attacking a land base that is carried out by troops that are landed by naval ships
+20428,amphibious_demonstration,an amphibious operation conducted for the purpose of deceiving the enemy and leading him into a course of action unfavorable to him
+20429,amphibious_landing,a military action of coordinated land, sea, and air forces organized for an invasion; "MacArthur staged a massive amphibious landing behind enemy lines"
+20430,amphibious_operation,a military operation by both land and sea forces
+20431,amphibole,a mineral or mineral variety belonging to the amphibole group
+20432,amphibole_group,a group of minerals with similar crystal structures containing a silicate chain and combinations of chiefly sodium and calcium and magnesium and iron and aluminum
+20433,amphibolite,a metamorphic rock composed chiefly of amphibole and plagioclase
+20434,amphibology amphiboly,an ambiguous grammatical construction; e.g., `they are flying planes' can mean either that someone is flying planes or that something is flying planes
+20435,amphibrach,a metrical unit with unstressed-stressed-unstressed syllables (e.g., `remember')
+20436,amphictyony,an association of neighboring states or tribes in ancient Greece; established originally to defend a common religious center
+20437,amphidiploid,(genetics) an organism or cell having a diploid set of chromosomes from each parent
+20438,amphidiploidy,the condition of being amphidiploid
+20439,amphigory nonsense_verse,nonsensical writing (usually verse)
+20440,amphimixis,union of sperm and egg in sexual reproduction
+20441,amphipod,a kind of malacostracan crustacean
+20442,amphisbaena,(classical mythology) a serpent with a head at each end of its body
+20443,amphitheater amphitheatre,a sloping gallery with seats for spectators (as in an operating room or theater)
+20444,amphitheater amphitheatre coliseum,an oval large stadium with tiers of seats; an arena in which contests and spectacles are held
+20445,amphitropous_ovule,a partly inverted ovule turned back 90 degrees on its stalk
+20446,amphiuma congo_snake congo_eel blind_eel,aquatic eel-shaped salamander having two pairs of very small feet; of still muddy waters in the southern United States
+20447,amphora,an ancient jar with two handles and a narrow neck; used to hold oil or wine
+20448,amphotericin,an antibiotic and antifungal agent
+20449,ampicillin Principen Polycillin SK-Ampicillin,semisynthetic penicillin (trade names Principen and Polycillin and SK-Ampicillin)
+20450,ampleness,the property of being more than sufficient; comfortable sufficiency; "the ampleness of her servings more than satisfied his hunger"
+20451,ampleness,the property of impressive largeness in size; "he admired the ampleness of its proportions"
+20452,amplexicaul_leaf,a leaf with its base clasping the stem
+20453,amplification,(electronics) the act of increasing voltage or power or current
+20454,amplification elaboration,addition of extra material or illustration or clarifying detail; "a few remarks added in amplification and defense"; "an elaboration of the sketch followed"
+20455,amplification gain,the amount of increase in signal power or voltage or current expressed as the ratio of output to input
+20456,amplifier,electronic equipment that increases strength of signals passing through it
+20457,amplitude,(physics) the maximum displacement of a periodic wave
+20458,amplitude,greatness of magnitude
+20459,amplitude bountifulness bounty,the property of copious abundance
+20460,amplitude_level,the level on a scale of amplitude
+20461,amplitude_modulation AM,modulation of the amplitude of the (radio) carrier wave
+20462,ampulla,the dilated portion of a canal or duct especially of the semicircular canals of the ear
+20463,ampulla,a flask that has two handles; used by Romans for wines or oils
+20464,amputation,a condition of disability resulting from the loss of one or more limbs
+20465,amputation,a surgical removal of all or part of a limb
+20466,amputator,a surgeon who removes part or all of a limb
+20467,amputee,someone who has had a limb removed by amputation
+20468,amrinone Inocor,a drug (trade name Inocor) used intravenously in heart failure; increases strength of contraction of myocardium
+20469,amulet talisman,a trinket or piece of jewelry usually hung about the neck and thought to be a magical protection against evil or disease
+20470,amusement,a feeling of delight at being entertained
+20471,amusement_arcade,an arcade featuring coin-operated game machines
+20472,amusement_park funfair pleasure_ground,a commercially operated park with stalls and shows for amusement
+20473,amygdala amygdaloid_nucleus corpus_amygdaloideum,an almond-shaped neural structure in the anterior part of the temporal lobe of the cerebrum; intimately connected with the hypothalamus and the hippocampus and the cingulate gyrus; as part of the limbic system it plays an important role in motivation and emotional behavior
+20474,amygdalin,a bitter cyanogenic glucoside extracted from the seeds of apricots and plums and bitter almonds
+20475,amygdaloid,volcanic rock in which rounded cavities formed by expanding gas have subsequently become filled with mineral deposits
+20476,amygdalotomy,psychosurgery in which amygdaloid fibers that mediate limbic system activity are severed (in cases of extreme uncontrollable violence)
+20477,amyl,a hydrocarbon radical that occurs in many organic compounds
+20478,amyl_alcohol,a mixture of 2 or more isomeric alcohols; used as a solvent and in organic synthesis
+20479,amyl_nitrate,a vasodilator that is sometimes used to treat angina pectoris
+20480,amylase,any of a group of proteins found in saliva and pancreatic juice and parts of plants; help convert starch to sugar
+20481,amyloid,a non-nitrogenous food substance consisting chiefly of starch; any substance resembling starch
+20482,amyloid,(pathology) a waxy translucent complex protein resembling starch that results from degeneration of tissue
+20483,amyloid_plaque amyloid_protein_plaque,a plaque consisting of tangles of amyloid protein in nervous tissue (a pathological mark of Alzheimer's disease)
+20484,amyloidosis,a disorder characterized by deposit of amyloid in organs or tissues; often secondary to chronic rheumatoid arthritis or tuberculosis or multiple myeloma
+20485,amylolysis,conversion of starch to sugar
+20486,amyotrophia amyotrophy,progressive wasting of muscle tissues
+20487,amyotrophic_lateral_sclerosis ALS Lou_Gehrig's_disease,thickening of tissue in the motor tracts of the lateral columns and anterior horns of the spinal cord; results in progressive muscle atrophy that starts in the limbs
+20488,amyxia,a condition in which no mucus in produced
+20489,ana,a collection of anecdotes about a person or place
+20490,anabiosis,suspended animation in organisms during periods of extreme drought from which they revive when moisture returns
+20491,anabolic_steroid,any of a group of synthetic steroid hormones used to stimulate muscle and bone growth; more than 100 have been developed and each requires a prescription to be used legally in the United States; sometimes used illicitly by athletes to increase their strength
+20492,anabolism constructive_metabolism,the synthesis in living organisms of more complex substances (e.g., living tissue) from simpler ones together with the storage of energy
+20493,anachronism,a person who seems to be displaced in time; who belongs to another age
+20494,anachronism,an artifact that belongs to another time
+20495,anachronism mistiming misdating,something located at a time when it could not have existed or occurred
+20496,anaclisis,(psychoanalysis) relationship marked by strong dependence on others; especially a libidinal attachment to e.g. a parental figure
+20497,anaclitic_depression,severe and progressive depression in infants who lose their mother and do not get a suitable substitute
+20498,anacoluthia anacoluthon,an abrupt change within a sentence from one syntactic structure to another
+20499,anaconda Eunectes_murinus,large arboreal boa of tropical South America
+20500,anadama_bread,a yeast-raised bread made of white flour and cornmeal and molasses
+20501,anadiplosis reduplication,repetition of the final words of a sentence or line at the beginning of the next
+20502,anaerobe,an organism (especially a bacterium) that does not require air or free oxygen to live
+20503,anaglyph,moving or still pictures in contrasting colors that appear three-dimensional when superimposed
+20504,anaglyph,anything carved in low relief
+20505,anaglyphy,the process of producing pictures in contrasting colors that appear three-dimensional when superimposed and viewed through spectacles with one red and one green lens
+20506,anagnost,a cleric in the minor orders of the Eastern Orthodox Church who reads the lessons aloud in the liturgy (analogous to the lector in the Roman Catholic Church)
+20507,anagoge,a mystical or allegorical interpretation (especially of Scripture)
+20508,anagram,a word or phrase spelled by rearranging the letters of another word or phrase
+20509,anagrams,a game whose object is to form words from a group of randomly chosen letters
+20510,anal_personality anal_retentive_personality,(psychoanalysis) a personality characterized by meticulous neatness and suspicion and reserve; said to be formed in early childhood by fixation during the anal stage of development (usually as a consequence of toilet training)
+20511,anal_sphincter sphincter_ani musculus_sphincter_ani,the sphincter muscle of the anus
+20512,anal_stage anal_phase,(psychoanalysis) the second sexual and social stage of a child's development during which bowel control is learned
+20513,analbuminemia,an abnormally low level of albumin in the blood serum
+20514,analects analecta,a collection of excerpts from a literary work
+20515,analeptic,a medication used as a stimulant to the central nervous system
+20516,analgesia,absence of the sense of pain without loss of consciousness
+20517,analgesic anodyne painkiller pain_pill,a medicine used to relieve pain
+20518,analog_clock,a clock that displays the time of day by the position of hands on a dial
+20519,analog_computer analogue_computer,a computer that represents information by variable quantities (e.g., positions or voltages)
+20520,analog_watch,a watch that represents time by the position of hands on a dial
+20521,analogist,someone who looks for analogies or who reasons by analogy
+20522,analogue analog parallel,something having the property of being analogous to something else
+20523,analogy,an inference that if things agree in some respects they probably agree in others
+20524,analogy,drawing a comparison in order to show a similarity in some respect; "the operation of a computer presents and interesting analogy to the working of the brain"; "the models show by analogy how matter is built up"
+20525,analphabet analphabetic,an illiterate person who does not know the alphabet
+20526,analysand,a person undergoing psychoanalysis
+20527,analysis,the use of closed-class words instead of inflections: e.g., `the father of the bride' instead of `the bride's father'
+20528,analysis,a form of literary criticism in which the structure of a piece of writing is analyzed
+20529,analysis,a branch of mathematics involving calculus and the theory of limits; sequences and series and integration and differentiation
+20530,analysis,an investigation of the component parts of a whole and their relations in making up the whole
+20531,analysis analytic_thinking,the abstract separation of a whole into its constituent parts in order to study the parts and their relations
+20532,analysis_of_variance ANOVA,a statistical method for making simultaneous comparisons between two or more means; a statistical method that yields values that can be tested to determine whether a significant relation exists between variables
+20533,analyst,an expert who studies financial data (on credit or securities or sales or financial patterns etc.) and recommends appropriate business actions
+20534,analyst,someone who is skilled at analyzing data
+20535,analyst psychoanalyst,a licensed practitioner of psychoanalysis
+20536,analytic_geometry analytical_geometry coordinate_geometry,the use of algebra to study geometric properties; operates on symbols defined in a coordinate system
+20537,analytical_balance chemical_balance,a beam balance of great precision used in quantitative chemical analysis
+20538,analytical_cubism,the early phase of cubism
+20539,analytical_review,an auditing procedure based on ratios among accounts and tries to identify significant changes
+20540,analyticity,the property of being analytic
+20541,analyzer analyser,an instrument that performs analyses
+20542,anamnestic_response anamnestic_reaction,renewed rapid production of an antibody on the second (or subsequent) encounter with the same antigen
+20543,anamorphism,metamorphism that occurs deep under the earth's surface; changes simple minerals into complex minerals
+20544,anamorphosis anamorphism,the evolution of one type of organism from another by a long series of gradual changes
+20545,anamorphosis anamorphism,a distorted projection or perspective; especially an image distorted in such a way that it becomes visible only when viewed in a special manner
+20546,anapest anapaest,a metrical unit with unstressed-unstressed-stressed syllables
+20547,anaphase,the stage of meiosis or mitosis when chromosomes move toward opposite ends of the nuclear spindle
+20548,anaphor,a word (such as a pronoun) used to avoid repetition; the referent of an anaphor is determined by its antecedent
+20549,anaphora,using a pronoun or similar word instead of repeating a word used earlier
+20550,anaphoric_pronoun,a pronoun that refers to an antecedent
+20551,anaphoric_relation,the relation between an anaphor and its antecedent
+20552,anaphrodisia,decline or absence of sexual desire
+20553,anaphylactic_shock,a severe and rapid and sometimes fatal hypersensitivity reaction to a substance (especially a vaccine or penicillin or shellfish or insect venom) to which the organism has become sensitized by previous exposure
+20554,anaphylaxis,hypersensitivity reaction to the ingestion or injection of a substance (a protein or drug) resulting from prior contact with a substance
+20555,anaplasia,loss of structural differentiation within a cell or group of cells often with increased capacity for multiplication, as in a malignant tumor
+20556,anaplasmosis,a disease of cattle that is transmitted by cattle ticks; similar to Texas fever
+20557,anapsid anapsid_reptile,primitive reptile having no opening in the temporal region of the skull; all extinct except turtles
+20558,anarchism,a political theory favoring the abolition of governments
+20559,anarchist nihilist syndicalist,an advocate of anarchism
+20560,anarchy lawlessness,a state of lawlessness and disorder (usually resulting from a failure of government)
+20561,anarthria,partial or total loss of articulate speech resulting from lesions of the central nervous system
+20562,anasarca,generalized edema with accumulation of serum in subcutaneous connective tissue
+20563,anaspid,extinct small freshwater jawless fish usually having a heterocercal tail and an armored head; of the Silurian and Devonian
+20564,anastalsis,muscular action of the alimentary tract in a direction opposite to peristalsis
+20565,anastigmat,compound lens or lens system designed to be free of astigmatism and able to form approximately point images
+20566,anastigmatic_lens,a lens designed to correct astigmatism
+20567,anastomosis inosculation,a natural or surgical joining of parts or branches of tubular structures so as to make or become continuous
+20568,anastomotic_vein vena_anastomotica,either of two communicating veins serving the brain
+20569,anastrophe inversion,the reversal of the normal order of words
+20570,anastylosis,the archeological reassembly of ruined monuments from fallen or decayed fragments (incorporating new materials when necessary)
+20571,anathema,a formal ecclesiastical curse accompanied by excommunication
+20572,anathema bete_noire,a detested person; "he is an anathema to me"
+20573,anathematization anathematisation,the formal act of pronouncing (someone or something) accursed
+20574,anatomical_reference anatomical,an expression that relates to anatomy
+20575,anatomist,an expert in anatomy
+20576,anatomy,a detailed analysis; "he studied the anatomy of crimes"
+20577,anatomy general_anatomy,the branch of morphology that deals with the structure of animals
+20578,anatotitan,one of the largest and most famous duck-billed dinosaurs
+20579,anatoxin toxoid,a bacterial toxin that has been weakened until it is no longer toxic but is strong enough to induce the formation of antibodies and immunity to the specific disease caused by the toxin; "diphtheria toxoid"
+20580,anatropous_ovule,a completely inverted ovule turned back 180 degrees on its stalk
+20581,ancestor ascendant ascendent antecedent root,someone from whom you are descended (but usually more remote than a grandparent)
+20582,ancestor_worship,worship of ancestors
+20583,ancestress,a woman ancestor
+20584,ancestry lineage derivation filiation,inherited properties shared with others of your bloodline
+20585,anchor anchorman anchorperson,a television reporter who coordinates a broadcast to which several correspondents contribute
+20586,anchor ground_tackle,a mechanical device that prevents a vessel from moving
+20587,anchor mainstay keystone backbone linchpin lynchpin,a central cohesive source of support and stability; "faith is his anchor"; "the keystone of campaign reform was the ban on soft money"; "he is the linchpin of this firm"
+20588,anchor_chain anchor_rope,the chain or rope that attaches an anchor to a vessel
+20589,anchor_light riding_light riding_lamp,a light in the rigging of a ship that is riding at anchor
+20590,anchorage,the condition of being secured to a base; "the plant needs a firm anchorage"; "the mother provides emotional anchorage for the entire family"
+20591,anchorage,a fee for anchoring
+20592,anchorage,the act of anchoring
+20593,anchorage anchorage_ground,place for vessels to anchor
+20594,anchorite hermit,one retired from society for religious reasons
+20595,anchovy,tiny fishes usually canned or salted; used for hors d'oeuvres or as seasoning in sauces
+20596,anchovy,small herring-like plankton-eating fishes often canned whole or as paste; abundant in tropical waters worldwide
+20597,anchovy_butter,butter blended with mashed anchovies
+20598,anchovy_dressing,vinaigrette and mashed anchovies
+20599,anchovy_paste,paste made primarily of anchovies; used in sauces and spreads
+20600,anchovy_pear anchovy_pear_tree Grias_cauliflora,West Indian tree bearing edible fruit resembling mango
+20601,anchovy_pear river_pear,West Indian fruit resembling the mango; often pickled
+20602,anchovy_pizza,tomato and cheese pizza with anchovies
+20603,anchovy_sauce,made of white sauce and mashed anchovies
+20604,anchusa,any of various Old World herbs of the genus Anchusa having one-sided clusters of trumpet-shaped flowers
+20605,ancien_regime,a political and social system that no longer governs (especially the system that existed in France before the French Revolution)
+20606,ancient,a person who lived in ancient times
+20607,ancient antediluvian,a very old person
+20608,ancient_history,a history of the ancient world
+20609,ancient_history,knowledge of some recent fact or event that has become so commonly known that it has lost its original pertinence
+20610,ancient_pine Pinus_longaeva,small slow-growing pine of western United States similar to the bristlecone pine; chocolate brown bark in plates and short needles in bunches of 5; crown conic but becoming rough and twisted; oldest plant in the world growing to 5000 years in cold semidesert mountain tops
+20611,ancientness antiquity,extreme oldness
+20612,ancients,people who lived in times long past (especially during the historical period before the fall of the Roman Empire in western Europe)
+20613,anconeous_muscle musculus_anconeus,the muscle that extends the forearm and abducts the ulna in pronation of the wrist
+20614,andante,a moderately slow tempo (a walking pace)
+20615,andante,a musical composition or musical passage to be performed moderately slow
+20616,andesite,a dark grey volcanic rock
+20617,andiron firedog dog dog-iron,metal supports for logs in a fireplace; "the andirons were too hot to touch"
+20618,andradite,a garnet consisting of calcium iron silicate and having any color ranging from yellow and green to brown and black; used as gemstone
+20619,andrena andrenid mining_bee,a bee that is a member of the genus Andrena
+20620,androecium,a male gametoecium
+20621,androgen androgenic_hormone,male sex hormone that is produced in the testes and responsible for typical male sexual characteristics
+20622,androgenesis androgeny,male parthenogenesis in which the embryo contains only paternal chromosomes due to the failure of the egg nucleus to participate in fertilization
+20623,androglossia,a woman's voice with male qualities
+20624,androgyny hermaphroditism bisexuality,showing characteristics of both sexes
+20625,android humanoid mechanical_man,an automaton that resembles a human being
+20626,andromeda,any of several shrubs of the genus Andromeda having leathery leaves and clusters of small flowers
+20627,andromeda Japanese_andromeda lily-of-the-valley_tree Pieris_japonica,broad-leaved evergreen Asiatic shrub with glossy leaves and drooping clusters of white flowers
+20628,androphobia,a morbid fear of men
+20629,androsterone,an androgenic hormone that is less active than testosterone
+20630,andryala,any plant of the genus Andryala having milky sap and heads of bright yellow flowers
+20631,anecdote,short account of an incident (especially a biographical one)
+20632,anecdotist raconteur,a person skilled in telling anecdotes
+20633,anechoic_chamber,a chamber having very little reverberation
+20634,anemia anaemia,a lack of vitality
+20635,anemia anaemia,a deficiency of red blood cells
+20636,anemic_anoxia,anoxia resulting from a decreased concentration of hemoglobin
+20637,anemic_hypoxia,hypoxia resulting from a decreased concentration of hemoglobin
+20638,anemography,recording anemometrical measurements
+20639,anemometer wind_gauge wind_gage,a gauge for recording the speed and direction of wind
+20640,anemometry,measuring wind speed and direction
+20641,anemone windflower,any woodland plant of the genus Anemone grown for its beautiful flowers and whorls of dissected leaves
+20642,anemone_fish,live associated with sea anemones
+20643,anencephaly anencephalia,a defect in brain development resulting in small or missing brain hemispheres
+20644,anergy,reduction or lack of an immune response to a specific antigen
+20645,anergy,inactivity and lack of energy
+20646,aneroid_barometer aneroid,a barometer that measures pressure without using fluids
+20647,anesthesia anaesthesia,loss of bodily sensation with or without loss of consciousness
+20648,anesthesiologist anesthetist anaesthetist,a specialist who administers an anesthetic to a patient before he is treated
+20649,anesthesiology,the branch of medical science that studies and applies anesthetics
+20650,anesthetic anaesthetic anesthetic_agent anaesthetic_agent,a drug that causes temporary loss of bodily sensations
+20651,anesthyl,a mixture of methyl and ethyl chloride; sprayed on as a local anesthetic
+20652,anestrus anestrum anoestrus anoestrum,applies to nonhuman mammals: a state or interval of sexual inactivity between two periods of estrus
+20653,aneuploidy,an abnormality involving a chromosome number that is not an exact multiple of the haploid number (one chromosome set is incomplete)
+20654,aneurysm aneurism,a cardiovascular disease characterized by a saclike widening of an artery resulting from weakening of the artery wall
+20655,angel,spiritual being attendant upon God
+20656,angel backer,invests in a theatrical production
+20657,angel's_trumpet Brugmansia_suaveolens Datura_suaveolens,South American plant cultivated for its very large nocturnally fragrant trumpet-shaped flowers
+20658,angel's_trumpet maikoa Brugmansia_arborea Datura_arborea,a South American plant that is cultivated for its large fragrant trumpet-shaped flowers
+20659,angel-wing_begonia Begonia_cocchinea,South American fibrous-rooted begonias having prominent basal leaf lobes suggesting angels' wings and racemes of coral-red flowers
+20660,angel_cake angel_food_cake,a light sponge cake made without egg yolks
+20661,angel_shark angelfish Squatina_squatina monkfish,sharks with broad flat bodies and winglike pectoral fins but that swim the way sharks do
+20662,angelfish,a butterfly fish of the genus Pomacanthus
+20663,angelica,candied stalks of the angelica plant
+20664,angelica,aromatic stems or leaves or roots of Angelica Archangelica
+20665,angelica angelique,any of various tall and stout herbs of the genus Angelica having pinnately compound leaves and small white or greenish flowers in compound umbels
+20666,angelim andelmin,any of several tropical American trees of the genus Andira
+20667,angelology,the branch of theology that is concerned with angels
+20668,angelus_bell angelus,the sound of a bell rung in Roman Catholic churches to announce the time when the Angelus should be recited
+20669,anger angriness,the state of being angry
+20670,anger choler ire,a strong emotion; a feeling that is oriented toward some real or supposed grievance
+20671,angiitis,inflammation of a blood vessel or lymph duct
+20672,angina,any disease of the throat or fauces marked by spasmodic attacks of intense suffocative pain
+20673,angina_pectoris angina,a heart condition marked by paroxysms of chest pain due to reduced oxygen to the heart
+20674,angiocardiogram,a series of X rays representing the action of the heart and its blood vessels after the injection of a radiopaque substance
+20675,angiocarp,tree bearing fruit enclosed in a shell or involucre or husk
+20676,angioedema atrophedema giant_hives periodic_edema Quincke's_edema,recurrent large circumscribed areas of subcutaneous edema; onset is sudden and it disappears within 24 hours; seen mainly in young women, often as an allergic reaction to food or drugs
+20677,angiogenesis,the formation of new blood vessels
+20678,angiogenesis_inhibitor,a drug that is designed to prevent the growth of blood vessels that nourish tumors
+20679,angiogram,an X-ray representation of blood vessels made after the injection of a radiopaque substance; "angiograms are produced by angiography"
+20680,angiography,roentgenographic examination of blood vessels after injection of a radiopaque contrast medium; produces an angiogram
+20681,angiologist,a physician who specializes in angiology
+20682,angiology,the branch of medical science that studies the blood and lymph vessels and their disorders
+20683,angioma,a tumor consisting of a mass of blood or lymphatic vessels
+20684,angiopathy,any disease of the blood vessels or lymph ducts
+20685,angioplasty,an operation to repair a damaged blood vessel or unblock a coronary artery
+20686,angiopteris giant_fern Angiopteris_evecta,highly variable species of very large primitive ferns of the Pacific tropical areas with high rainfall
+20687,angiosarcoma,a rare malignant neoplasm arising from vascular tissue; usually occurs in the breast and skin and is believed to originate from the endothelial cells of blood vessels
+20688,angioscope,a modified microscope used to study capillary vessels
+20689,angiosperm flowering_plant,plants having seeds in a closed ovary
+20690,angiospermous_tree flowering_tree,any tree having seeds and ovules contained in the ovary
+20691,angiospermous_yellowwood,any of various angiospermous trees having yellow wood
+20692,angiotelectasia,dilation and enlargement of arterioles
+20693,angiotensin angiotonin Hypertensin,any of several vasoconstrictor substances (trade name Hypertensin) that cause narrowing of blood vessels
+20694,angiotensin_I,a physiologically inactive form of angiotensin that is the precursor to angiotensin II
+20695,angiotensin_II,a potent vasopressor agent formed from angiotensin I
+20696,angiotensin_II_inhibitor,an agent that retards or restrains the action of angiotensin II
+20697,angiotensin_converting_enzyme angiotensin-converting_enzyme ACE,proteolytic enzyme that converts angiotensin I into angiotensin II
+20698,angle,the space between two lines or planes that intersect; the inclination of one line to another; measured in degrees or radians
+20699,angle_bracket angle_iron,an L-shaped metal bracket
+20700,angle_of_attack,the acute angle between the direction of the undisturbed relative wind and the chord of an airfoil
+20701,angle_of_extinction extinction_angle,the angle from its axis that a crystal must be rotated before appearing maximally dark when viewed in polarized light
+20702,angle_of_incidence incidence_angle,the angle that a line makes with a line perpendicular to the surface at the point of incidence
+20703,angle_of_reflection,the angle between a reflected ray and a line perpendicular to the reflecting surface at the point of incidence
+20704,angle_of_refraction,the angle between a refracted ray and a line perpendicular to the surface between the two media at the point of refraction
+20705,angled_loofah sing-kwa Luffa_acutangula,loofah of Pakistan; widely cultivated throughout tropics
+20706,angledozer,a bulldozer with an angled moldboard to push earth to one side
+20707,angler,a scheming person; someone who schemes to gain an advantage
+20708,angler troller,a fisherman who uses a hook and line
+20709,anglewing,nymphalid butterfly having angular notches on the outer edges of the forewings
+20710,angling,fishing with a hook and line (and usually a pole)
+20711,anglophile anglophil,an admirer of England and things English
+20712,anglophobe,a person who hates England and everything English
+20713,angostura_bark angostura,the bitter bark of a South American tree; used in medicines and liqueurs and bitters
+20714,angoumois_moth angoumois_grain_moth Sitotroga_cerealella,small moth whose larvae feed on kernels of stored grains
+20715,angrecum,any of various spectacular orchids of the genus Angraecum having dark green leathery leaves and usually nocturnally scented white or ivory flowers
+20716,angst,an acute but unspecific feeling of anxiety; usually reserved for philosophical anxiety about the world or about personal freedom
+20717,angstrom angstrom_unit A,a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation
+20718,anguid_lizard,any of a small family of lizards widely distributed in warm areas; all are harmless and useful as destroyers of e.g. slugs and insects
+20719,anguish,extreme distress of body or mind
+20720,anguish torment torture,extreme mental distress
+20721,angular_acceleration,(physics) the rate of change of the angular velocity of a rotating body
+20722,angular_artery arteria_angularis,the terminal branch of the facial artery
+20723,angular_distance,the angular separation between two objects as perceived by an observer; "he recorded angular distances between the stars"
+20724,angular_momentum,the product of the momentum of a rotating body and its distance from the axis of rotation; "any rotating body has an angular momentum about its center of mass"; "angular momentum makes the world go round"
+20725,angular_position,relation by which any position with respect to any other position is established
+20726,angular_shape angularity,a shape having one or more sharp angles
+20727,angular_unit,a unit of measurement for angles
+20728,angular_vein vena_angularis,a short vein formed by the supraorbital vein and the supratrochlear vein and continuing as the facial vein
+20729,angular_velocity,(physics) the rate of change of the angular position of a rotating body; usually expressed in radians per second or radians per minute
+20730,angularity,the property possessed by a shape that has angles
+20731,angulation,the precise measurement of angles
+20732,angulation,the act of making angulate (having corners)
+20733,angwantibo golden_potto Arctocebus_calabarensis,a kind of lemur
+20734,anhedonia,an inability to experience pleasure
+20735,anhidrosis anhydrosis,failure of the sweat glands
+20736,anhydride,a compound formed from one or more other compounds in a reaction resulting in removal of water
+20737,ani,black tropical American cuckoo
+20738,anil Indigofera_suffruticosa Indigofera_anil,shrub of West Indies and South America that is a source of indigo dye
+20739,anil indigo indigotin,a blue dye obtained from plants or made synthetically
+20740,aniline aniline_oil aminobenzine phenylamine,oily poisonous liquid amine obtained from nitrobenzene and used to make dyes and plastics and medicines
+20741,aniline_dye,any of many dyes made from aniline
+20742,anima,(Jungian psychology) the inner self (not the external persona) that is in touch with the unconscious
+20743,animal animate_being beast brute creature fauna,a living organism characterized by voluntary movement
+20744,animal_communication,communication between animals (of the same species)
+20745,animal_disease,a disease that typically does not affect human beings
+20746,animal_fancier,a person who breeds animals
+20747,animal_fat,any fat obtained from animals; "animal fat is high in saturated fatty acids"
+20748,animal_fiber animal_fibre,fiber derived from animals
+20749,animal_foot foot,the pedal extremity of vertebrates other than human beings
+20750,animal_glue,a protein gelatin obtained by boiling e.g. skins and hoofs of cattle and horses
+20751,animal_group,a group of animals
+20752,animal_husbandry,breeding and caring for farm animals
+20753,animal_leg,the leg of an animal
+20754,animal_material,material derived from animals
+20755,animal_oil,any oil obtained from animal substances
+20756,animal_order,the order of animals
+20757,animal_pigment,pigment occurring in animals
+20758,animal_product,a product made from animal material
+20759,animal_skin,the outer covering of an animal
+20760,animal_tissue,the tissue in the bodies of animals
+20761,animal_toxin zootoxin,a toxin resembling bacterial toxins in its antigenic properties that is found in the fluids of certain animals
+20762,animal_trainer handler,one who trains or exhibits animals
+20763,animal_virus,an animal pathogen that is a virus
+20764,animalcule animalculum,microscopic organism such as an amoeba or paramecium
+20765,animalism,the doctrine that human beings are purely animal in nature and lacking a spiritual nature
+20766,animalism physicality,preoccupation with satisfaction of physical drives and appetites
+20767,animality animal_nature,the physical (or animal) side of a person as opposed to the spirit or intellect
+20768,animalization,a depiction in the form of an animal
+20769,animateness aliveness liveness,the property of being animated; having animal life as distinguished from plant life
+20770,animation,the making of animated cartoons
+20771,animation life living aliveness,the condition of living or the state of being alive; "while there's life there's hope"; "life depends on many chemical and physical processes"
+20772,animation spiritedness invigoration brio vivification,quality of being active or spirited or alive and vigorous
+20773,animation vitality,the property of being able to survive and grow; "the vitality of a seed"
+20774,animatism,the attribution of consciousness and personality to natural phenomena such as thunderstorms and earthquakes and to objects such as plants and stones
+20775,animator,the technician who produces animated cartoons
+20776,animatronics,the construction of robots to look like animals (developed for Disneyland)
+20777,anime,a style of animation developed in Japan, characterized by stylized colorful art and often adult themes
+20778,anime gum_anime,any of various resins or oleoresins
+20779,animism,the doctrine that all natural objects and the universe itself have souls; "animism is common among primitive peoples"
+20780,animist,one who accepts the doctrine of animism
+20781,animosity animus bad_blood,a feeling of ill will arousing active hostility
+20782,anion,a negatively charged ion
+20783,anionic_compound,a compound characterized by an active anion
+20784,anionic_detergent anionic non-ionic_detergent,a class of synthetic detergents in which the molecules do not ionize in aqueous solutions
+20785,anise anise_plant Pimpinella_anisum,native to Egypt but cultivated widely for its aromatic seeds and the oil from them used medicinally and as a flavoring in cookery
+20786,anise aniseed anise_seed,liquorice-flavored seeds, used medicinally and in cooking and liquors
+20787,anise_cookie,cookie made without butter and flavored with anise seed
+20788,anise_hyssop Agastache_foeniculum,much-branched North American herb with an odor like fennel
+20789,anise_tree,any of several evergreen shrubs and small trees of the genus Illicium
+20790,aniseikonia,visual defect in which the shape and size of an ocular image differ in the two eyes
+20791,anisette anisette_de_Bordeaux,liquorice-flavored usually colorless sweet liqueur made from aniseed
+20792,anisogamete,either of a pair of unlike gametes especially those unlike in size
+20793,anisogamy,(biology) reproduction by the union or fusion of two differing gametes (especially differing in size)
+20794,anisometropia,difference in the refractive power of the two eyes
+20795,anisotropy,the property of being anisotropic; having a different value when measured in different directions
+20796,anjou,a pear with firm flesh and a green skin
+20797,ankle ankle_joint mortise_joint articulatio_talocruralis,a gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus
+20798,ankle_brace,a brace worn to strengthen the ankle
+20799,anklebone astragal astragalus talus,the bone in the ankle that articulates with the leg bones to form the ankle joint
+20800,anklet,a shoe for a child or woman that has a strap around the ankle
+20801,anklet ankle_bracelet,an ornament worn around the ankle
+20802,anklet anklets bobbysock bobbysocks,a sock that reaches just above the ankle
+20803,ankus,an elephant goad with a sharp spike and a hook
+20804,ankylosaur ankylosaurus,having the back covered with thick bony plates; thought to have walked with a sprawling gait resembling a lizard's
+20805,ankylosing_spondylitis Marie-Strumpell_disease rheumatoid_spondylitis,a chronic form of spondylitis primarily in males and marked by impaired mobility of the spine; sometimes leads to ankylosis
+20806,ankylosis anchylosis,abnormal adhesion and rigidity of the bones of a joint
+20807,anna,a former copper coin of Pakistan and India
+20808,annalist,a historian who writes annals
+20809,annals,reports of the work of a society or learned body etc
+20810,annals chronological_record,a chronological account of events in successive years
+20811,annealing tempering,hardening something by heat treatment
+20812,annelid annelid_worm segmented_worm,worms with cylindrical bodies segmented both internally and externally
+20813,annex annexe extension wing,an addition that extends a main building
+20814,annexation,the formal act of acquiring something (especially territory) by conquest or occupation; "the French annexation of Madagascar as a colony in 1896"; "a protectorate has frequently been a first step to annexation"
+20815,annexation appropriation,incorporation by joining or uniting
+20816,annihilation disintegration,total destruction; "bomb tests resulted in the annihilation of the atoll"
+20817,annihilation obliteration,destruction by annihilating something
+20818,annihilator,a total destroyer
+20819,anniversary day_of_remembrance,the date on which an event occurred in some previous year (or the celebration of it)
+20820,annotation annotating,the act of adding notes
+20821,annotator,a commentator who writes notes to a text
+20822,announcement proclamation annunciation declaration,a formal public statement; "the government made an announcement about changes in the drug war"; "a declaration of independence"
+20823,announcement promulgation,a public statement containing information about an event that has happened or is going to happen; "the announcement appeared in the local newspaper"; "the promulgation was written in English"
+20824,announcer,someone who proclaims a message publicly
+20825,announcer,reads news, commercials on radio or television
+20826,annoyance annoying irritation vexation,the act of troubling or annoying someone
+20827,annoyance bother botheration pain infliction pain_in_the_neck pain_in_the_ass,something or someone that causes trouble; a source of unhappiness; "washing dishes was a nuisance before we got a dish washer"; "a bit of a bother"; "he's not a friend, he's an infliction"
+20828,annoyance chafe vexation,anger produced by some annoying irritation
+20829,annual,(botany) a plant that completes its entire life cycle within the space of a year
+20830,annual yearly yearbook,a reference book that is published regularly once every year
+20831,annual_fern Jersey_fern Anogramma_leptophylla,small short-lived fern of Central and South America
+20832,annual_ring growth_ring,an annual formation of wood in plants as they grow
+20833,annual_salt-marsh_aster,a variety of aster
+20834,annuitant,the recipient of an annuity
+20835,annuity rente,income from capital investment paid in a series of regular payments; "his retirement fund was set up to be paid as an annuity"
+20836,annuity_in_advance,an annuity paid in a series of more or less equal payments at the beginning of equally spaced periods; "rent payable in advance constitutes an annuity in advance for the landlord"
+20837,annular_eclipse,only a thin outer disk of the sun can be seen
+20838,annular_scotoma,a circular scotoma surrounding the center of the field of vision
+20839,annulet,(heraldry) a charge in the shape of a small ring
+20840,annulet bandelet bandelette bandlet square_and_rabbet,molding in the form of a ring; at top of a column
+20841,annulment invalidation,(law) a formal termination (of a relationship or a judicial proceeding etc)
+20842,annulus skirt,(Fungi) a remnant of the partial veil that in mature mushrooms surrounds the stem like a collar
+20843,annum,(Latin) year; "per annum"
+20844,annunciator,an indicator that announces which electrical circuit has been active (as on a telephone switchboard)
+20845,anoa dwarf_buffalo Anoa_depressicornis,small buffalo of the Celebes having small straight horns
+20846,anode,the negatively charged terminal of a voltaic cell or storage battery that supplies current
+20847,anode,a positively charged electrode by which electrons leave an electrical device
+20848,anointer,one who anoints as a religious ceremony
+20849,anointing anointment,the act of applying oil or an oily liquid
+20850,anointing_of_the_sick extreme_unction last_rites,a Catholic sacrament; a priest anoints a dying person with oil and prays for salvation
+20851,anomalist,someone who has a special interest in exceptional cases
+20852,anomalistic_month,period between successive perigees; approximately 27.5546 days
+20853,anomalistic_year,time of the earth's revolution from perihelion to perihelion again; 365 days and 6 hr and 13 min and 53.1 sec
+20854,anomalops flashlight_fish,fish having a luminous organ beneath eye; of warm waters of the western Pacific and Puerto Rico
+20855,anomalopteryx Anomalopteryx_oweni,the smallest moa; slender moa about the size of a large turkey
+20856,anomaly,(astronomy) position of a planet as defined by its angular distance from its perihelion (as observed from the sun)
+20857,anomaly anomalousness,deviation from the normal or common order or form or rule
+20858,anomaly unusual_person,a person who is unusual
+20859,anomie anomy,personal state of isolation and anxiety resulting from a lack of social control and regulation
+20860,anomie anomy,lack of moral standards in a society
+20861,anonymity namelessness,the state of being anonymous
+20862,anonymous_ftp anonymous_file_transfer_protocol,a common way to make software available; users are allowed to log in as `guest' without a password and copy whatever has been made available
+20863,anopheline,any mosquito of the genus Anopheles
+20864,anopia,sightlessness (especially because of a structural defect in or the absence of an eye)
+20865,anorchism anorchidism anorchia,absence of one of both testes
+20866,anorexia,a prolonged disorder of eating due to loss of appetite
+20867,anorexia_nervosa,(psychiatry) a psychological disorder characterized by somatic delusions that you are too fat despite being emaciated
+20868,anorexic anorectic,a person suffering from anorexia nervosa
+20869,anorgasmia,absence of an orgasm in sexual relations
+20870,anorthite,rare plagioclastic feldspar occurring in many igneous rocks
+20871,anorthopia,distorted vision in which straight lines appear curved
+20872,anosmia,absence of the sense of smell (as by damage to olfactory nasal tissue or the olfactory nerve or by obstruction of the nasal passages)
+20873,anovulation,the absence of ovulation due to immaturity or post-maturity or pregnancy or oral contraceptive pills or dysfunction of the ovary
+20874,anoxemia,abnormally low oxygen content in arterial blood
+20875,anoxia,severe hypoxia; absence of oxygen in inspired gases or in arterial blood or in the tissues
+20876,anoxic_anoxia,anoxia resulting from defective oxygenation of the blood in the lungs
+20877,anseriform_bird,chiefly web-footed swimming birds
+20878,answer,the speech act of replying to a question
+20879,answer,the principal pleading by the defendant in response to plaintiff's complaint; in criminal law it consists of the defendant's plea of `guilty' or `not guilty' (or nolo contendere); in civil law it must contain denials of all allegations in the plaintiff's complaint that the defendant hopes to controvert and it can contain affirmative defenses or counterclaims
+20880,answer,a nonverbal reaction; "his answer to any problem was to get drunk"; "their answer was to sue me"
+20881,answer reply response,a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation; "I waited several days for his answer"; "he wrote replies to several of his critics"
+20882,answering_machine,an electronic device that answers the telephone and records messages
+20883,ant emmet pismire,social insect living in organized colonies; characteristically the males and fertile queen have wings during breeding season; wingless sterile females are the workers
+20884,ant_bear giant_anteater great_anteater tamanoir Myrmecophaga_jubata,large shaggy-haired toothless anteater with long tongue and powerful claws; of South America
+20885,ant_cow,excretes a honeylike substance eaten by ants
+20886,ant_lion antlion antlion_fly,winged insect resembling a dragonfly; the larvae (doodlebugs) dig conical pits where they wait to catch e.g. ants
+20887,ant_shrike,antbirds superficially resembling shrikes
+20888,ant_thrush,a kind of antbird
+20889,antacid gastric_antacid alkalizer alkaliser antiacid,an agent that counteracts or neutralizes acidity (especially in the stomach)
+20890,antagonism,the relation between opposing principles or forces or factors; "the inherent antagonism of capitalism and socialism"
+20891,antagonism,an actively expressed feeling of dislike and hostility
+20892,antagonism,(biochemistry) interference in or inhibition of the physiological action of a chemical substance by another having a similar structure
+20893,antagonist,a muscle that relaxes while another contracts; "when bending the elbow the triceps are the antagonist"
+20894,antagonist,a drug that neutralizes or counteracts the effects of another drug
+20895,antagonistic_muscle,(physiology) a muscle that opposes the action of another; "the biceps and triceps are antagonistic muscles"
+20896,antapex,the point opposite in direction from the solar apex; the point the solar system is moving away from
+20897,antbird ant_bird,any of various dull-colored South American birds that feeding on ants some following army ant swarms
+20898,ante,(poker) the initial contribution that each player makes to the pot
+20899,anteater New_World_anteater,any of several tropical American mammals of the family Myrmecophagidae which lack teeth and feed on ants and termites
+20900,antecedent,a preceding occurrence or cause or event
+20901,antecedent,the referent of an anaphor; a phrase or clause that is referred to by an anaphoric pronoun
+20902,antecedent forerunner,anything that precedes something similar in time; "phrenology was an antecedent of modern neuroscience"
+20903,antediluvian antediluvian_patriarch,any of the early patriarchs who lived prior to the Noachian deluge
+20904,antefix,carved ornament at the eaves of a tile roof concealing the joints between tiles
+20905,antelope,graceful Old World ruminant with long legs and horns directed upward and backward; includes gazelles; springboks; impalas; addax; gerenuks; blackbucks; dik-diks
+20906,antelope_squirrel whitetail_antelope_squirrel antelope_chipmunk Citellus_leucurus,small ground squirrel of western United States
+20907,antenna aerial transmitting_aerial,an electrical device that sends or receives radio or television signals
+20908,antenna feeler,sensitivity similar to that of a receptor organ; "he had a special antenna for public relations"
+20909,antenna feeler,one of a pair of mobile appendages on the head of e.g. insects and crustaceans; typically sensitive to touch and taste
+20910,antepenult antepenultima antepenultimate,the 3rd syllable of a word counting back from the end
+20911,anterior_cardinal_vein,a major drainage channel from the cephalic part of the body
+20912,anterior_cerebral_artery,one of two branches of the internal carotid artery; divides into two branches that serve (1) the thalamus and (2) parts of the frontal and parietal cortex
+20913,anterior_cerebral_vein vena_cerebri_anterior,accompanies the anterior cerebral artery and empties into the basal vein
+20914,anterior_facial_vein vena_facialis_anterior,a continuation of the angular vein; unites with the retromandibular vein before emptying into the internal jugular vein
+20915,anterior_fontanelle,corresponds to the bregma when bones have ossified
+20916,anterior_jugular_vein,arises below the chin from veins draining the lower face; joins the external jugular vein
+20917,anterior_meningeal_artery,branch of the anterior ethmoidal artery that supplies meninges in the anterior cranial fossa
+20918,anterior_pituitary anterior_pituitary_gland adenohypophysis,the anterior lobe of the pituitary body; primarily glandular in nature
+20919,anterior_serratus_muscle serratus_anterior musculus_serratus_anterior serratus_magnus,muscles that rotate the scapula and elevate the rib cage
+20920,anterior_synechia,adhesion between the iris and the cornea
+20921,anterior_temporal_artery arteria_temporalis_anterior,temporal artery that goes to the anterior part of the cerebral cortex of the temporal lobe
+20922,anterior_vertebral_vein vena_vertebralis_anterior,a vein that accompanies the ascending cervical artery and opens into the vertebral vein
+20923,anteriority,the quality of being in front or (in lower animals) toward the head
+20924,anterograde_amnesia posttraumatic_amnesia,loss of memory for events immediately following a trauma; sometimes in effect for events during and for a long time following the trauma
+20925,anteroom antechamber entrance_hall hall foyer lobby vestibule,a large entrance or reception room or area
+20926,anthem,a song of devotion or loyalty (as to a nation or school)
+20927,anther,the part of the stamen that contains pollen; usually borne on a stalk
+20928,antheridiophore,gametophore bearing antheridia as in certain mosses and liverworts
+20929,antheridium,the male sex organ of spore-producing plants; produces antherozoids; equivalent to the anther in flowers
+20930,antherozoid spermatozoid,a motile male gamete of a plant such as an alga or fern or gymnosperm
+20931,anthill formicary,a mound of earth made by ants as they dig their nest
+20932,anthologist,an editor who makes selections for an anthology
+20933,anthology,a collection of selected literary passages
+20934,anthophyllite,a dark brown mineral of the amphibole group; magnesium iron silicate
+20935,anthozoan actinozoan,sessile marine coelenterates including solitary and colonial polyps; the medusoid phase is entirely suppressed
+20936,anthracite anthracite_coal hard_coal,a hard natural coal that burns slowly and gives intense heat
+20937,anthracosis black_lung black_lung_disease coal_miner's_lung,lung disease caused by inhaling coal dust
+20938,anthrax,a disease of humans that is not communicable; caused by infection with Bacillus anthracis followed by septicemia
+20939,anthrax splenic_fever,a highly infectious animal disease (especially cattle and sheep); it can be transmitted to people
+20940,anthropocentrism anthropocentricity,an inclination to evaluate reality exclusively in terms of human values
+20941,anthropogenesis anthropogeny,the evolution or genesis of the human race
+20942,anthropoid,any member of the suborder Anthropoidea including monkeys and apes and hominids
+20943,anthropoid ape,person who resembles a nonhuman primate
+20944,anthropoid_ape,any tailless ape of the families Pongidae and Hylobatidae
+20945,anthropolatry worship_of_man,the worship of human beings
+20946,anthropologist,a social scientist who specializes in anthropology
+20947,anthropology,the social science that studies the origins and social relationships of human beings
+20948,anthropology_department department_of_anthropology,the academic department responsible for teaching and research in anthropology
+20949,anthropometry,measurement and study of the human body and its parts and capacities
+20950,anthropomorphism theanthropism,the representation of objects (especially a god) as having human form or traits
+20951,anthropophagy,human cannibalism; the eating of human flesh
+20952,anthroposophy,a system of beliefs and practices based on the philosophy of Rudolf Steiner; it claims to integrate the practical and psychological in child-centered education
+20953,anthurium tailflower tail-flower,any of various tropical American plants cultivated for their showy foliage and flowers
+20954,anti,a person who is opposed (to an action or policy or practice etc.); "the antis smelled victory after a long battle"
+20955,anti-American,a person who is opposed to the United States and its policies
+20956,anti-Catholicism,a religious orientation opposed to Catholicism
+20957,anti-G_suit G_suit,pressure suit worn by fliers and astronauts to counteract the forces of gravity and acceleration
+20958,anti-Semite Jew-baiter,someone who hates and would persecute Jews
+20959,anti-Semitism antisemitism,the intense dislike for and prejudice against Jewish people
+20960,anti-TNF_compound,a class of drugs that block the action of tumor necrosis factor (TNF); used in cases of rheumatoid arthritis because TNF instigates inflammation of the joints
+20961,anti-drug_law,a law forbidding the sale or use of narcotic drugs
+20962,anti-dumping_duty,a tariff imposed to prevent dumping
+20963,anti-inflammatory anti-inflammatory_drug,a medicine intended to reduce inflammation
+20964,anti-racketeering_law Racketeer_Influenced_and_Corrupt_Organizations_Act RICO_Act RICO,law intended to eradicate organized crime by establishing strong sanctions and forfeiture provisions
+20965,anti-submarine_rocket,a shipboard system to fire rockets at submarines
+20966,anti-takeover_defense,resistance to or defense against a hostile takeover
+20967,anti-virus_program,a computer program that checks a computer for viruses and prevents their spread
+20968,anti-war_movement,a campaign against entering or continuing a war
+20969,antiaircraft antiaircraft_gun flak flack pom-pom ack-ack ack-ack_gun,artillery designed to shoot upward at airplanes
+20970,antiaircraft_fire,firing at enemy aircraft
+20971,antialiasing,(computer graphics) a technique that is used to smooth jagged distortions in curves and diagonal lines so they appear smoother
+20972,antiarrhythmic antiarrhythmic_drug antiarrhythmic_medication,a drug used to treat an abnormal heart rhythm
+20973,antibacterial antibacterial_drug bactericide,any drug that destroys bacteria or inhibits their growth
+20974,antiballistic_missile ABM,a defensive missile designed to shoot down incoming intercontinental ballistic missiles; "the Strategic Arms Limitation Talks placed limits on the deployment of ABMs"
+20975,antibaryon,the antiparticle of a baryon; a hadron with a baryon number of -1
+20976,antibiosis,an association between organisms that is harmful to one of them or between organisms and a metabolic product of another
+20977,antibiotic antibiotic_drug,a chemical substance derivable from a mold or bacterium that can kill microorganisms and cure bacterial infections; "when antibiotics were first discovered they were called wonder drugs"
+20978,antibody,any of a large variety of proteins normally present in the body or produced in response to an antigen which it neutralizes, thus producing an immune response
+20979,antic joke prank trick caper put-on,a ludicrous or grotesque act done for fun and amusement
+20980,anticatalyst,(chemistry) a substance that retards a chemical reaction or diminishes the activity of a catalyst
+20981,anticholinergic anticholinergic_drug,a substance that opposes or blocks the action of acetylcholine
+20982,anticholinesterase,a medicine that inhibits cholinesterase by combining with it and so has a cholinergic effect
+20983,anticipation expectancy,an expectation
+20984,anticipation expectancy,something expected (as on the basis of a norm); "each of them had their own anticipations"; "an indicator of expectancy in development"
+20985,anticipation expectation,anticipating with confidence of fulfillment
+20986,anticipator anticipant,one who anticipates
+20987,anticipatory_breach constructive_breach,a breach of contract committed prior to the time of required performance
+20988,anticlimax,a disappointing decline after a previous rise; "the anticlimax of a brilliant career"
+20989,anticlimax bathos,a change from a serious subject to a disappointing one
+20990,anticoagulant anticoagulant_medication decoagulant,medicine that prevents or retards the clotting of blood
+20991,anticoagulation,the administration of an anticoagulant drug to retard coagulation of the blood
+20992,anticonvulsant anticonvulsant_drug antiepileptic antiepileptic_drug,a drug used to treat or prevent convulsions (as in epilepsy)
+20993,anticyclone,(meteorology) winds spiraling outward from a high pressure center; circling clockwise in the northern hemisphere and counterclockwise in the southern
+20994,antidepressant antidepressant_drug,any of a class of drugs used to treat depression; often have undesirable side effects
+20995,antidiabetic antidiabetic_drug,a drug used to treat diabetes mellitus
+20996,antidiarrheal antidiarrheal_drug,a drug used to control or stop diarrhea
+20997,antidiuretic antidiuretic_drug,a drug that limits the formation of urine
+20998,antidote counterpoison,a remedy that stops or controls the effects of a poison
+20999,antiemetic antiemetic_drug,a drug that prevents or alleviates nausea and vomiting
+21000,antiestablishmentarianism antiestablishmentism,the doctrine of opposition to the social and political establishment
+21001,antifeminist,someone who does not believe in the social or economic or political equality of men and women
+21002,antiferromagnetism,magnetic field creates parallel but opposing spins; varies with temperature
+21003,antiflatulent,any agent that reduces intestinal gas
+21004,antifouling_paint,a paint used to protect against the accumulation of barnacles etc. on underwater surfaces
+21005,antifreeze,a liquid added to the water in a cooling system to lower its freezing point
+21006,antifungal antifungal_agent fungicide antimycotic antimycotic_agent,any agent that destroys or prevents the growth of fungi
+21007,antigen,any substance (as a toxin or enzyme) that stimulates an immune response in the body (especially the production of antibodies)
+21008,antigenic_determinant determinant epitope,the site on the surface of an antigen molecule to which an antibody attaches itself
+21009,antigram,an anagram that means the opposite of the original word or phrase; "`restful' is the antigram of `fluster'"
+21010,antihemophilic_factor antihaemophilic_factor antihemophilic_globulin antihaemophilic_globulin factor_VIII Hemofil,a coagulation factor (trade name Hemofil) whose absence is associated with hemophilia A
+21011,antihero,a protagonist who lacks the characteristics that would make him a hero (or her a heroine)
+21012,antihistamine,a medicine used to treat allergies and hypersensitive reactions and colds; works by counteracting the effects of histamine on a receptor site
+21013,antihypertensive antihypertensive_drug,a drug that reduces high blood pressure
+21014,antiknock,any of various compounds that are added to gasoline to reduce engine knocking
+21015,antilepton,the antiparticle of a lepton
+21016,antilogarithm antilog,the number of which a given number is the logarithm
+21017,antimacassar,a piece of ornamented cloth that protects the back of a chair from hair oils
+21018,antimalarial antimalarial_drug,a medicinal drug used to prevent or treat malaria
+21019,antimatter,matter consisting of elementary particles that are the antiparticles of those making up normal substances
+21020,antimeson,the antiparticle of a meson
+21021,antimetabolite,an antineoplastic drug that inhibits the utilization of a metabolite
+21022,antimony Sb atomic_number_51,a metallic element having four allotropic forms; used in a wide variety of alloys; found in stibnite
+21023,antimuon positive_muon,the antiparticle of a muon; decays to positron and neutrino and antineutrino
+21024,antimycin,a crystalline antibiotic active against various fungi
+21025,antineoplastic antineoplastic_drug cancer_drug,any of several drugs that control or kill neoplastic cells; used in chemotherapy to kill cancer cells; all have unpleasant side effects that may include nausea and vomiting and hair loss and suppression of bone marrow function
+21026,antineoplastic_antibiotic,an antibiotic drug used as an antineoplastic in chemotherapy
+21027,antineutrino,the antiparticle of a neutrino
+21028,antineutron,the antiparticle of a neutron
+21029,antinode,(physics) the point of maximum displacement in a periodic system
+21030,antinomasia,substitution of a title for a name
+21031,antinomian,a follower of the doctrine of antinomianism
+21032,antinomianism,the theological doctrine that by faith and God's grace a Christian is freed from all laws (including the moral standards of the culture)
+21033,antinomy,a contradiction between two statements that seem equally reasonable
+21034,antioxidant,substance that inhibits oxidation or inhibits reactions promoted by oxygen or peroxides
+21035,antiparticle,a particle that has the same mass as another particle but has opposite values for its other properties; interaction of a particle and its antiparticle results in annihilation and the production of radiant energy
+21036,antipasto,a course of appetizers in an Italian meal
+21037,antipathy,the object of a feeling of intense aversion; something to be avoided; "cats were his greatest antipathy"
+21038,antipathy aversion distaste,a feeling of intense dislike
+21039,antiperspirant,an astringent substance applied to the skin to reduce perspiration
+21040,antiphon antiphony,a verse or song to be chanted or sung in response
+21041,antiphonary antiphonal,bound collection of antiphons
+21042,antiphony,alternate (responsive) singing by a choir in two parts
+21043,antiphrasis,the use of a word in a sense opposite to its normal sense (especially in irony)
+21044,antipodal antipodal_opposition diametrical_opposition,the relation of opposition along a diameter
+21045,antipode,direct opposite; "quiet: an antipode to focused busyness"
+21046,antipodes,any two places or regions on diametrically opposite sides of the Earth; "the North Pole and the South Pole are antipodes"
+21047,antipope,someone who is elected pope in opposition to another person who is held to be canonically elected; "the antipopes resided in Avignon during the Great Schism"
+21048,antiproton,an unstable negatively charged proton; the antiparticle of a proton
+21049,antiprotozoal antiprotozoal_drug,a medicinal drug used to fight diseases (like malaria) that are caused by protozoa
+21050,antipruritic,a substance that relieves or prevents itching
+21051,antipyresis,medication with antipyretics to treat a fever
+21052,antipyretic febrifuge,any medicine that lowers body temperature to prevent or alleviate fever
+21053,antiquark,the antiparticle of a quark
+21054,antiquary antiquarian archaist,an expert or collector of antiquities
+21055,antique,any piece of furniture or decorative object or the like produced in a former period and valuable because of its beauty or rarity
+21056,antiquity,the historic period preceding the Middle Ages in Europe
+21057,antiquity,an artifact surviving from the past
+21058,antiredeposition,the process of preventing redeposition
+21059,antisepsis asepsis,the process of inhibiting the growth and multiplication of microorganisms
+21060,antiseptic,a substance that destroys micro-organisms that carry disease without harming body tissues
+21061,antiserum,blood serum containing antibodies against specific antigens; provides immunity to a disease
+21062,antisocial_personality_disorder sociopathic_personality psychopathic_personality,a personality disorder characterized by amorality and lack of affect; capable of violent acts without guilt feelings (`psychopathic personality' was once widely used but was superseded by `sociopathic personality' to indicate the social aspects of the disorder, but now `antisocial personality disorder' is the preferred term)
+21063,antispasmodic spasmolytic antispasmodic_agent,a drug used to relieve or prevent spasms (especially of the smooth muscles)
+21064,antistrophe,the section of a choral ode answering a previous strophe in classical Greek drama; the second of two metrically corresponding sections in a poem
+21065,antisyphilitic,a drug (or other chemical agent) that is effective against syphilis
+21066,antitauon tau-plus_particle,an antilepton of very great mass
+21067,antithesis,exact opposite; "his theory is the antithesis of mine"
+21068,antithesis,the juxtaposition of contrasting words or ideas to give a feeling of balance
+21069,antitoxin,an antibody that can neutralize a specific toxin
+21070,antitrade_wind antitrade,winds blowing from west to east and lying above the trade winds in the tropics
+21071,antitrades,wind in the upper atmosphere blowing above but in the opposite direction from the trade winds
+21072,antitrust_case,a legal action brought against parties who are charged with limiting free competition in the market place
+21073,antitrust_legislation antitrust_law,law intended to promote free competition in the market place by outlawing monopolies
+21074,antitussive,any medicine used to suppress or relieve coughing
+21075,antitype,a person or thing represented or foreshadowed by an earlier type or symbol; especially a figure or event in the New Testament having a counterpart in the Old Testament; "Aaron and Jesus Christ are the type and antitype for the high priest who made atonement for the sins of the people"
+21076,antitype,an opposite or contrasting type
+21077,antivenin antivenene,an antitoxin that counteracts the effects of venom from the bite of a snake or insect or other animal
+21078,antiviral antiviral_agent antiviral_drug,any drug that destroys viruses
+21079,antler,deciduous horn of a member of the deer family
+21080,antler_moth Cerapteryx_graminis,European moth with white antler-like markings on the forewings; the larvae damage pastures and grasslands
+21081,antonym opposite_word opposite,a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other; "to him the antonym of `gay' was `depressed'"
+21082,antonymy,the semantic relation that holds between two words that can (in a given context) express opposite meanings
+21083,antrum,a natural cavity or hollow in a bone
+21084,anuresis anuria,inability to urinate
+21085,anus,the excretory opening at the end of the alimentary canal
+21086,anvil,a heavy block of iron or steel on which hot metals are shaped by hammering
+21087,anxiety,a vague unpleasant emotion that is experienced in anticipation of some (usually ill-defined) misfortune
+21088,anxiety anxiousness,(psychiatry) a relatively permanent state of worry and nervousness occurring in a variety of mental disorders, usually accompanied by compulsive behavior or attacks of panic
+21089,anxiety_attack,a sudden acute episode of intense anxiety and feelings of panic
+21090,anxiety_disorder,a cover term for a variety of mental disorders in which severe anxiety is a salient symptom
+21091,anxiety_hysteria,a form of hysteria having features of both conversion disorder and anxiety neurosis
+21092,anxiety_neurosis,characterized by diffuse anxiety and often somatic manifestations of fear
+21093,anxiousness disquiet,a feeling of mild anxiety about possible developments
+21094,any-and-all_bid,a takeover bid where the acquirer offers to buy any and all shares outstanding
+21095,ao_dai,the traditional dress of Vietnamese women consisting of a tunic with long sleeves and panels front and back; the tunic is worn over trousers
+21096,aorist,a verb tense in some languages (classical Greek and Sanskrit) expressing action (especially past action) without indicating its completion or continuation
+21097,aorta,the large trunk artery that carries blood from the left ventricle of the heart to branch arteries
+21098,aortic_aneurysm,an aneurysm of the aorta
+21099,aortic_arch,the part of the aorta that arches and turns downward
+21100,aortic_orifice,the orifice from the lower left chamber of the heart to the aorta
+21101,aortic_plexus,a plexus of lymph nodes in the lower portion of the abdominal aorta
+21102,aortic_stenosis,abnormal narrowing of the aortic valve
+21103,aortic_valve,a semilunar valve between the left ventricle and the aorta; prevents blood from flowing from the aorta back into the heart
+21104,aortitis,inflammation of the aorta
+21105,aoudad arui audad Barbary_sheep maned_sheep Ammotragus_lervia,wild sheep of northern Africa
+21106,apache,a Parisian gangster
+21107,apache_dance,a violent fast dance in French vaudeville (an apache is a member of the French underworld)
+21108,apache_devil_dance,a ritual dance of the Apache
+21109,apadana,the great hall in ancient Persian palaces
+21110,apar three-banded_armadillo Tolypeutes_tricinctus,South American armadillo with three bands of bony plates
+21111,apartheid,a social policy or racial segregation involving political and economic and legal discrimination against people who are not Whites; the former official policy in South Africa
+21112,apartment flat,a suite of rooms usually on one floor of an apartment house
+21113,apartment_building apartment_house,a building that is divided into apartments
+21114,apatetic_coloration,coloring serving as natural camouflage
+21115,apathy,an absence of emotion or enthusiasm
+21116,apathy indifference numbness spiritlessness,the trait of lacking enthusiasm for or interest in things generally
+21117,apatite,a common complex mineral consisting of calcium fluoride phosphate or calcium chloride phosphate; a source of phosphorus
+21118,apatosaur apatosaurus brontosaur brontosaurus thunder_lizard Apatosaurus_excelsus,huge quadrupedal herbivorous dinosaur common in North America in the late Jurassic
+21119,ape,any of various primates with short tails or no tail at all
+21120,ape-man,a person assumed to have been raised by apes
+21121,apercu,a short synopsis
+21122,aperea wild_cavy Cavia_porcellus,South American cavy; possibly ancestral to the domestic guinea pig
+21123,aperitif,alcoholic beverage taken before a meal as an appetizer
+21124,aperture,a natural opening in something
+21125,aperture,a device that controls amount of light admitted
+21126,aperture,an man-made opening; usually small
+21127,apery mimicry,the act of mimicking; imitative behavior
+21128,apetalous_flower,flower having no petals
+21129,apex solar_apex apex_of_the_sun's_way,the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars
+21130,aphaeresis apheresis,(linguistics) omission at the beginning of a word as in `coon' for `raccoon' or `till' for `until'
+21131,aphagia,loss of the ability to swallow
+21132,aphakia,absence of the natural lens of the eye (usually resulting from the removal of cataracts)
+21133,aphakic,someone afflicted by aphakia; someone lacking the natural lenses of the eyes
+21134,aphanite,fine-grained homogeneous rock (such as basalt) containing minerals undetectable by the naked eye
+21135,aphasia,inability to use or understand language (spoken or written) because of a brain lesion
+21136,aphasic,someone affected by aphasia or inability to use or understand language
+21137,aphelion,apoapsis in solar orbit; the point in the orbit of a planet or comet that is at the greatest distance from the sun
+21138,apheresis pheresis,a procedure in which blood is drawn and separated into its components by dialysis; some are retained and the rest are returned to the donor by transfusion
+21139,aphesis,the gradual disappearance of an initial (usually unstressed) vowel or syllable as in `squire' for `esquire'
+21140,aphid,any of various small plant-sucking insects
+21141,aphid_lion aphis_lion,carnivorous larva of lacewing flies
+21142,aphonia voicelessness,a disorder of the vocal organs that results in the loss of voice
+21143,aphorism apothegm apophthegm,a short pithy instructive saying
+21144,aphorist,someone who formulates aphorisms or who repeats aphorisms
+21145,aphrodisia,a desire for heterosexual intimacy
+21146,aphrodisiac,a drug or other agent that stimulates sexual desire
+21147,aphthous_ulcer,a blister on the mucous membranes of the lips or mouth or gastrointestinal tract
+21148,apiary bee_house,a shed containing a number of beehives
+21149,apical_placentation,where one or few ovules develop at the top of a simple or compound ovary
+21150,apishamore,a saddle blanket made of buffalo hide
+21151,aplasia,failure of some tissue or organ to develop
+21152,aplastic_anemia aplastic_anaemia,anemia characterized by pancytopenia resulting from failure of the bone marrow; can be caused by neoplasm or by toxic exposure
+21153,aplite,light-colored and fine-grained granitic rock consisting chiefly of quartz and feldspars
+21154,aplomb assuredness cool poise sang-froid,great coolness and composure under strain; "keep your cool"
+21155,apnea,transient cessation of respiration
+21156,apoapsis point_of_apoapsis,(astronomy) the point in an orbit farthest from the body being orbited
+21157,apocalypse,a cosmic cataclysm in which God destroys the ruling powers of evil
+21158,apocope,abbreviation of a word by omitting the final sound or sounds; "the British get `pud' from `pudding' by apocope"
+21159,apocrine_gland,a large sweat gland that produces both a fluid and an apocrine secretion; in human beings located in hairy regions of the body
+21160,apodeme,ridge-like ingrowth of the exoskeleton of an arthropod that supports internal organs and provides attachment points for muscles
+21161,apodiform_bird,nonpasserine bird having long wings and weak feet; spends much of its time in flight
+21162,apoenzyme,a protein that combines with a coenzyme to form an active enzyme
+21163,apogamy,(botany) development of an embryo without fertilization; especially the development in some ferns of a sporophyte from the gametophyte without fertilization
+21164,apogee,apoapsis in Earth orbit; the point in its orbit where a satellite is at the greatest distance from the Earth
+21165,apogee culmination,a final climactic stage; "their achievements stand as a culmination of centuries of development"
+21166,apojove,apoapsis in orbit around Jupiter
+21167,apolemia,large siphonophore of up to 50 ft long
+21168,apologetics,the branch of theology that is concerned with the defense of Christian doctrines
+21169,apologist vindicator justifier,a person who argues to defend or justify some policy or institution; "an apologist for capital punishment"
+21170,apology,an expression of regret at having caused trouble for someone; "he wrote a letter of apology to the hostess"
+21171,apology apologia,a formal written defense of something you believe in strongly
+21172,apology excuse,a poor example; "it was an apology for a meal"; "a poor excuse for an automobile"
+21173,apomict,a plant that reproduces or is reproduced by apomixis
+21174,apomixis,any of several kinds of reproduction without fertilization
+21175,apomorphine,a morphine derivative that is not as strong as morphine; used as an emetic and in small doses as a sedative
+21176,aponeurosis,any of the deeper and thicker fascia that attach muscles to bones; resemble flattened tendons
+21177,apophasis,mentioning something by saying it will not be mentioned
+21178,apophatism,the religious belief that God cannot be known but is completely `other' and must be described in negative terms (in terms of what God is not)
+21179,apophysis,(botany) a natural swelling or enlargement: at the base of the stalk or seta in certain mosses or on the cone scale of certain conifers
+21180,apophysis,(anatomy) a natural outgrowth or projection on an organ or body part such as the process of a vertebra
+21181,apoptosis programmed_cell_death caspase-mediated_cell_death,a type of cell death in which the cell uses specialized cellular machinery to kill itself; a cell suicide mechanism that enables metazoans to control cell number and eliminate cells that threaten the animal's survival
+21182,aposelene apolune,apoapsis in orbit around the moon
+21183,aposematic_coloration warning_coloration,conspicuous coloration or markings of an animal serving to warn off predators; "a skunk's aposematic coloration"
+21184,aposiopesis,breaking off in the middle of a sentence (as by writers of realistic conversations)
+21185,apostasy renunciation defection,the state of having rejected your religious beliefs or your political party or a cause (often in favor of opposing beliefs or causes)
+21186,apostasy tergiversation,the act of abandoning a party for cause
+21187,apostle,an ardent early supporter of a cause or reform; "an apostle of revolution"
+21188,apostleship,the position of apostle
+21189,apostolic_delegate,(Roman Catholic Church) a representative of the Holy See in a country that has no formal diplomatic relations with it
+21190,apostrophe,address to an absent or imaginary person
+21191,apostrophe,the mark (') used to indicate the omission of one or more letters from a printed word
+21192,apothecaries'_unit apothecaries'_weight,any weight unit used in pharmacy; an ounce is equal to 480 grains and a pound is equal to 12 ounces
+21193,apothecium,a cuplike ascocarp in many lichens and ascomycetous fungi
+21194,appalling,an experience that appalls; "is it better to view the appalling or merely hear of it?"
+21195,appanage apanage,any customary and rightful perquisite appropriate to your station in life; "for thousands of years the chair was an appanage of state and dignity rather than an article of ordinary use"
+21196,appanage apanage,a grant (by a sovereign or a legislative body) of resources to maintain a dependent member of a ruling family; "bishoprics were received as appanages for the younger sons of great families"
+21197,apparatchik,a humorous but derogatory term for an official of a large organization (especially a political organization); "Democratic apparatchiks"
+21198,apparatchik,a communist who was a member of the administrative system of a communist party
+21199,apparatus,(anatomy) a group of body parts that work together to perform a given function; "the breathing apparatus"
+21200,apparatus setup,equipment designed to serve a specific function
+21201,apparel wearing_apparel dress clothes,clothing in general; "she was refined in her choice of apparel"; "he always bought his clothes at the same store"; "fastidious about his dress"
+21202,apparel_chain,a chain of clothing stores
+21203,apparel_industry garment_industry fashion_industry fashion_business rag_trade,makers and sellers of fashionable clothing
+21204,apparent_motion motion apparent_movement movement,an optical illusion of motion produced by viewing a rapid succession of still pictures of a moving object; "the cinema relies on apparent motion"; "the succession of flashing lights gave an illusion of movement"
+21205,apparentness apparency,the property of being apparent
+21206,apparition,the appearance of a ghostlike figure; "I was recalled to the present by the apparition of a frightening specter"
+21207,apparition,an act of appearing or becoming visible unexpectedly; "natives were amazed at the apparition of this white stranger"
+21208,apparition phantom phantasm phantasma fantasm shadow,something existing in perception only; "a ghostly apparition at midnight"
+21209,apparition phantom phantasm phantasma fantasm specter spectre,a ghostly appearing figure; "we were unprepared for the apparition that confronted us"
+21210,appeal,(law) a legal proceeding in which the appellant resorts to a higher court for the purpose of obtaining a review of a lower court decision and a reversal of the lower court's judgment or the granting of a new trial; "their appeal was denied in the superior court"
+21211,appeal appealingness charm,attractiveness that interests or pleases or stimulates; "his smile was part of his appeal to her"
+21212,appeal_board appeals_board board_of_appeals,a board of officials that are not judicial but are appointed to hear appeals
+21213,appearance,the event of coming into sight
+21214,appearance,a mental representation; "I tried to describe his appearance to the police"
+21215,appearance,the act of appearing in public view; "the rookie made a brief appearance in the first period"; "it was Bernhardt's last appearance in America"
+21216,appearance appearing coming_into_court,formal attendance (in court or at a hearing) of a party in an action
+21217,appearance show,pretending that something is the case in order to make a good impression; "they try to keep up appearances"; "that ceremony is just for show"
+21218,appearance visual_aspect,outward or visible aspect of a person or thing
+21219,appeasement calming,the act of appeasing (as by acceding to the demands of)
+21220,appeaser,someone who tries to bring peace by acceding to demands; "An appeaser is one who feeds a crocodile--hoping it will eat him last"--Winston Churchill
+21221,appellant plaintiff_in_error,the party who appeals a decision of a lower court
+21222,appellate_court appeals_court court_of_appeals,a court whose jurisdiction is to review decisions of lower courts or agencies
+21223,appellation,a geographical indication used to identify where the grapes for a wine are grown
+21224,appellation denomination designation appellative,identifying word or words by which someone or something is called and classified or distinguished from others
+21225,appendage,a part that is joined to something larger
+21226,appendectomy appendicectomy,surgical removal of the vermiform appendix
+21227,appendicitis,inflammation of the vermiform appendix
+21228,appendicle,a small appendage
+21229,appendicular_artery arteria_appendicularis,the branch of the ileocolic artery that supplies the vermiform appendix
+21230,appendicular_skeleton,the part of the skeleton that includes the pectoral girdle and the pelvic girdle and the upper and lower limbs
+21231,appendicular_vein vena_appendicularis,a vein that accompanies the appendicular artery and empties into the ileocolic vein
+21232,appendicularia,free-swimming tadpole-shaped pelagic tunicate resembling larvae of other tunicates
+21233,appendix,supplementary material that is collected and appended at the back of a book
+21234,appendix vermiform_appendix vermiform_process cecal_appendage,a vestigial process that extends from the lower end of the cecum and that resembles a small pouch
+21235,apperception,the process whereby perceived qualities of an object are related to past experience
+21236,appetite appetency appetence,a feeling of craving something; "an appetite for life"; "the object of life is to satisfy as many appetencies as possible"- Granville Hicks
+21237,appetizer appetiser starter,food or drink to stimulate the appetite (usually served before a meal or as the first course)
+21238,appetizingness appetisingness,the property of stimulating the appetite
+21239,applause hand_clapping clapping,a demonstration of approval by clapping the hands together
+21240,apple,fruit with red or yellow or green skin and sweet to tart crisp whitish flesh
+21241,apple orchard_apple_tree Malus_pumila,native Eurasian tree widely cultivated in many varieties for its firm rounded edible fruits
+21242,apple_aphid green_apple_aphid Aphis_pomi,bright green aphid; feeds on and causes curling of apple leaves
+21243,apple_blight apple_canker,a disease of apple trees
+21244,apple_butter,thick dark spicy puree of apples
+21245,apple_dumpling,apples wrapped in pastry and baked
+21246,apple_fritter,fritter containing sliced apple
+21247,apple_geranium nutmeg_geranium Pelargonium_odoratissimum,geranium with round fragrant leaves and small white flowers
+21248,apple_jelly,jelly made from apple juice
+21249,apple_juice,the juice of apples
+21250,apple_maggot railroad_worm Rhagoletis_pomonella,larvae bore into and feed on apples
+21251,apple_mint applemint Mentha_rotundifolia Mentha_suaveolens,mint with apple-scented stems of southern and western Europe; naturalized in United States
+21252,apple_of_Peru shoo_fly Nicandra_physaloides,coarse South American herb grown for its blue-and-white flowers followed by a bladderlike fruit enclosing a dry berry
+21253,apple_of_discord,(classical mythology) a golden apple thrown into a banquet of the gods by Eris (goddess of discord--who had not been invited); the apple had `for the fairest' written on it and Hera and Athena and Aphrodite all claimed it; when Paris (prince of Troy) awarded it to Aphrodite it began a chain of events that led to the Trojan War
+21254,apple_orchard,a grove of apple trees
+21255,apple_pie,pie (with a top crust) containing sliced apples and sugar
+21256,apple_polisher bootlicker fawner groveller groveler truckler,someone who humbles himself as a sign of respect; who behaves as if he had no self-respect
+21257,apple_rust cedar-apple_rust Gymnosporangium_juniperi-virginianae,rust fungus causing rust spots on apples and pears etc
+21258,apple_tart,a small open pie filled with sliced apples and sugar
+21259,apple_tart,a tart filled with sliced apples and sugar
+21260,apple_tree,any tree of the genus Malus especially those bearing firm rounded edible fruits
+21261,apple_turnover,turnover with an apple filling
+21262,applecart,the planning that is disrupted when someone `upsets the applecart'
+21263,applecart,a handcart from which apples and other fruit are sold in the street
+21264,applejack,distilled from hard cider
+21265,applesauce apple_sauce,puree of stewed apples usually sweetened and spiced
+21266,applesauce_cake,moist spicy cake containing applesauce
+21267,applet,a Java application; an application program that uses the client's web browser to provide a user interface
+21268,applewood,wood of any of various apple trees of the genus Malus
+21269,appliance,durable goods for home or office use
+21270,appliance contraption contrivance convenience gadget gizmo gismo widget,a device or control that is very useful for a particular job
+21271,applicability pertinence pertinency,relevance by virtue of being applicable to the matter at hand
+21272,applicant applier,a person who requests or seeks something such as assistance or employment or admission
+21273,application,a verbal or written request for assistance or employment or admission to a school; "December 31 is the deadline for applications"
+21274,application,the action of putting something into operation; "the application of maximum thrust"; "massage has far-reaching medical applications"; "the application of indexes to tables of data"
+21275,application application_program applications_programme,a program that gives a computer instructions that provide the user with tools to accomplish a task; "he has tried several different word processing applications"
+21276,application coating covering,the work of applying something; "the doctor prescribed a topical application of iodine"; "a complete bleach requires several applications"; "the surface was ready for a coating of paint"
+21277,application diligence,a diligent effort; "it is a job requiring serious application"
+21278,application practical_application,the act of bringing something to bear; using it for a particular purpose; "he advocated the application of statistics to the problem"; "a novel application of electronics to medical diagnosis"
+21279,application-oriented_language problem-oriented_language,a language whose statements resemble terminology of the user
+21280,application_form,a form to use when making an application
+21281,applicator applier,a device for applying a substance
+21282,applied_mathematics applied_math,the branches of mathematics that are involved in the study of the physical or biological or sociological world
+21283,applied_psychology industrial_psychology,any of several branches of psychology that seek to apply psychological principles to practical problems of education or industry or marketing etc.
+21284,applique,a decorative design made of one material sewn over another
+21285,appointee,an official who is appointed
+21286,appointee appointment,a person who is appointed to a job or position
+21287,appointment,the job to which you are (or hope to be) appointed; "he applied for an appointment in the treasury"
+21288,appointment,(law) the act of disposing of property by virtue of the power of appointment; "she allocated part of the trust to her church by appointment"
+21289,appointment assignment designation naming,the act of putting a person into a non-elective position; "the appointment had to be approved by the whole committee"
+21290,appointment fitting,(usually in the plural) furnishings and equipment (especially for a ship or hotel)
+21291,appointment_book appointment_calendar,a book containing a calendar and space to keep a record of appointments
+21292,apposition,a grammatical relation between a word and a noun phrase that follows; "`Rudolph the red-nosed reindeer' is an example of apposition"
+21293,apposition,(biology) growth in the thickness of a cell wall by the deposit of successive layers of material
+21294,appraisal,an expert estimation of the quality, quantity, and other characteristics of someone or something
+21295,appraisal assessment,the classification of someone or something with respect to its worth
+21296,appraisal estimate estimation,a document appraising the value of something (as for insurance or taxation)
+21297,appraiser authenticator,one who determines authenticity (as of works of art) or who guarantees validity
+21298,appraiser valuator,one who estimates officially the worth or value or quality of things
+21299,appreciation,an expression of gratitude; "he expressed his appreciation in a short note"
+21300,appreciation,an increase in price or value; "an appreciation of 30% in the value of real estate"
+21301,appreciation grasp hold,understanding of the nature or meaning or quality or magnitude of something; "he has a good grasp of accounting practices"
+21302,appreciator,a person who is fully aware of something and understands it; "he is not an appreciator of our dilemma"
+21303,apprehender,a person who seizes or arrests (especially a person who seizes or arrests in the name of justice)
+21304,apprehension apprehensiveness dread,fearful expectation or anticipation; "the student looked around the examination room with apprehension"
+21305,apprehension arrest catch collar pinch taking_into_custody,the act of apprehending (especially apprehending a criminal); "the policeman on the beat got credit for the collar"
+21306,apprehension misgiving,painful expectation
+21307,apprentice learner prentice,works for an expert to learn a trade
+21308,apprenticeship,the position of apprentice
+21309,appro,an informal British abbreviation of approval; "he accepted it on appro"
+21310,approach,a close approximation; "the nearest approach to genius"
+21311,approach approach_shot,a relatively short golf shot intended to put the ball onto the putting green; "he lost the hole when his approach rolled over the green"
+21312,approach approaching,the event of one object coming closer to another
+21313,approach approaching coming,the temporal property of becoming nearer in time; "the approach of winter"
+21314,approach approaching coming,the act of drawing spatially closer to something; "the hunter's approach scattered the geese"
+21315,approach attack plan_of_attack,ideas or actions intended to deal with a problem or situation; "his approach to every problem is to draw up a list of pros and cons"; "an attack on inflation"; "his plan of attack was misguided"
+21316,approach_path approach glide_path glide_slope,the final path followed by an aircraft as it is landing
+21317,approach_trench communication_trench,a trench that provides protected passage between the rear and front lines of a defensive position
+21318,approachability accessibility,the attribute of being easy to meet or deal with
+21319,approbation,official approval
+21320,approbation,official recognition or approval
+21321,appropriateness,the quality of being specially suitable
+21322,appropriateness rightness,appropriate conduct; doing the right thing
+21323,appropriation,money set aside (as by a legislature) for a specific purpose
+21324,appropriation,a deliberate act of acquisition of something, often without the permission of the owner; "the necessary funds were obtained by the government's appropriation of the company's operating unit"; "a person's appropriation of property belonging to another is dishonest"
+21325,appropriation_bill,a legislative act proposing to authorize the expenditure of public funds for a specified purpose
+21326,appropriator,someone who takes for his or her own use (especially without permission)
+21327,approval,a feeling of liking something or someone good; "although she fussed at them, she secretly viewed all her children with approval"
+21328,approval commendation,a message expressing a favorable opinion; "words of approval seldom passed his lips"
+21329,approval favorable_reception favourable_reception,acceptance as satisfactory; "he bought it on approval"
+21330,approver,an authority with power to approve
+21331,approximate_range ballpark,near to the scope or range of something; "his answer wasn't even in the right ballpark"
+21332,approximation,an imprecise or incomplete account; "newspapers gave only an approximation of the actual events"
+21333,approximation,the quality of coming near to identity (especially close in quantity)
+21334,approximation bringing_close_together,the act of bringing near or bringing together especially the cut edges of tissue
+21335,apraxia,inability to make purposeful movements
+21336,apricot,downy yellow to rosy-colored fruit resembling a small peach
+21337,apricot apricot_tree,Asian tree having clusters of usually white blossoms and edible fruit resembling the peach
+21338,apricot_bar,fruit bar containing apricot jam
+21339,apricot_sauce,for Chinese dishes: apricot preserves and chutney
+21340,apron,(golf) the part of the fairway leading onto the green
+21341,apron,a paved surface where aircraft stand while not being used
+21342,apron,a garment of cloth or leather or plastic that is tied about the waist and worn to protect your clothing
+21343,apron_string,(usually used in the plural) a cord used to tie an apron at the waist
+21344,apse apsis,a domed or vaulted recess or projection on a building especially the east end of a church; usually contains the altar
+21345,aptitude,inherent ability
+21346,aptness appositeness,appropriateness for the occasion; "the phrase had considerable aptness"
+21347,aptness propensity,a disposition to behave in a certain way; "the aptness of iron to rust"; "the propensity of disease to spread"
+21348,aqua_regia nitrohydrochloric_acid,a yellow fuming corrosive mixture of nitric and hydrochloric acid that dissolves metals (including gold)
+21349,aqua_vitae ardent_spirits,strong distilled liquor or brandy
+21350,aquaculture,rearing aquatic animals or cultivating aquatic plants for food
+21351,aqualung Aqua-Lung scuba,a device (trade name Aqua-Lung) that lets divers breathe under water; scuba is an acronym for self-contained underwater breathing apparatus
+21352,aquamarine,a transparent variety of beryl that is blue green in color
+21353,aquanaut oceanaut,a skilled worker who can live in underwater installations and participate in scientific research
+21354,aquaphobia,a morbid fear of drowning
+21355,aquaplane,a board that is pulled by a speedboat as a person stands on it and skims over the top of the water
+21356,aquarium fish_tank marine_museum,a tank or pool or bowl filled with water for keeping live fish and underwater animals
+21357,aquatic,a plant that lives in or on water
+21358,aquatic_bird,wading and swimming and diving birds of either fresh or salt water
+21359,aquatic_fern water_fern,ferns that grow in water
+21360,aquatic_mammal,whales and dolphins; manatees and dugongs; walruses; seals
+21361,aquatic_plant water_plant hydrophyte hydrophytic_plant,a plant that grows partly or wholly in water whether rooted in the mud, as a lotus, or floating without anchorage, as the water hyacinth
+21362,aquatic_vertebrate,animal living wholly or chiefly in or on water
+21363,aquatint,an etching made by a process that makes it resemble a water color
+21364,aquatint,a method of etching that imitates the broad washes of a water color
+21365,aquavit akvavit,Scandinavian liquor usually flavored with caraway seeds
+21366,aqueduct,a conduit that resembles a bridge but carries water over a valley
+21367,aqueous_humor aqueous_humour,the limpid fluid within the eyeball between the cornea and the lens
+21368,aqueous_solution,a solution in water
+21369,aquifer,underground bed or layer yielding ground water for wells and springs etc
+21370,arabesque,position in which the dancer has one leg raised behind and arms outstretched in a conventional pose
+21371,arabesque,an ornament that interlaces simulated foliage in an intricate design
+21372,arability,the quality of land that is appropriate for cultivation
+21373,arachnid arachnoid,air-breathing arthropods characterized by simple eyes and four pairs of legs
+21374,arachnoid arachnoid_membrane,the middle of the 3 meninges
+21375,arachnophobia,a morbid fear of spiders
+21376,aragonite,a mineral form of crystalline calcium carbonate; dimorphic with calcite
+21377,aralia,any of various plants of the genus Aralia; often aromatic plants having compound leaves and small umbellate flowers
+21378,arame,an edible seaweed with a mild flavor
+21379,arariba Centrolobium_robustum,Brazilian tree with handsomely marked wood
+21380,araroba Goa_powder chrysarobin,a bitter yellow powder used to treat skin diseases
+21381,araucaria,any of several tall South American or Australian trees with large cones and edible seeds
+21382,arbiter arbitrator umpire,someone chosen to judge and decide a disputed issue; "the critic was considered to be an arbiter of modern literature"; "the arbitrator's authority derived from the consent of the disputants"; "an umpire was appointed to settle the tax case"
+21383,arbiter supreme_authority,someone with the power to settle matters at will; "she was the final arbiter on all matters of fashion"
+21384,arbitrage,a kind of hedged investment meant to capture slight differences in price; when there is a difference in the price of something on two different markets the arbitrageur simultaneously buys at the lower price and sells at the higher price
+21385,arbitrageur arbitrager arb,someone who engages in arbitrage (who purchases securities in one market for immediate resale in another in the hope of profiting from the price differential)
+21386,arbitration,(law) the hearing and determination of a dispute by an impartial referee agreed to by both parties (often used to settle disputes between labor and management)
+21387,arbitration arbitrament arbitrement,the act of deciding as an arbiter; giving authoritative judgment; "they submitted their disagreement to arbitration"
+21388,arbitration_clause,a clause in a contract providing for arbitration of disputes arising under the contract
+21389,arbor,tree (as opposed to shrub)
+21390,arbor arbour bower pergola,a framework that supports climbing plants; "the arbor provided a shady resting place in the park"
+21391,arboreal_salamander Aneides_lugubris,yellow-spotted brown salamander of California woodlands
+21392,arborescent_plant,having the shape or characteristics of a tree
+21393,arboretum botanical_garden,a facility where trees and shrubs are cultivated for exhibition
+21394,arboriculture tree_farming,the tending of and caring for trees
+21395,arborolatry tree-worship,the worship of trees
+21396,arborvitae,any of several Asian and North American conifers of the genera Thuja and Thujopsis
+21397,arbovirus arborvirus,a large heterogeneous group of RNA viruses divisible into groups on the basis of the virions; they have been recovered from arthropods, bats, and rodents; most are borne by arthropods; they are linked by the epidemiologic concept of transmission between vertebrate hosts by arthropod vectors (mosquitoes, ticks, sandflies, midges, etc.) that feed on blood; they can cause mild fevers, hepatitis, hemorrhagic fever, and encephalitis
+21398,arbutus,any of several evergreen shrubs of the genus Arbutus of temperate Europe and America
+21399,arc,a continuous portion of a circle
+21400,arc_cosecant arccosecant inverse_cosecant,the angle that has a cosecant equal to a given number
+21401,arc_cosine arccosine arccos inverse_cosine,the inverse function of the cosine; the angle that has a cosine equal to a given number
+21402,arc_cotangent arccotangent inverse_cotangent,the inverse function of the cotangent; the angle that has a cotangent equal to a given number
+21403,arc_lamp arc_light,a lamp that produces light when electric current flows across the gap between two electrodes
+21404,arc_secant arcsecant arcsec inverse_secant,the inverse function of the secant; the angle that has a secant equal to a given number
+21405,arc_sine arcsine arcsin inverse_sine,the inverse function of the sine; the angle that has a sine equal to a given number
+21406,arc_tangent arctangent arctan inverse_tangent,the inverse function of the tangent; the angle that has a tangent equal to a given number
+21407,arcade,a covered passageway with shops and stalls on either side
+21408,arcade colonnade,a structure composed of a series of arches supported by columns
+21409,arcella,an amoeba-like protozoan with a chitinous shell resembling an umbrella
+21410,arch,a curved shape in the vertical plane that spans an opening
+21411,arch,a curved bony structure supporting or enclosing organs (especially the inner sides of the feet)
+21412,arch,(architecture) a masonry construction (usually curved) for spanning an opening and supporting the weight above it
+21413,arch archway,a passageway under a curved masonry construction; "they built a triumphal arch to memorialize their victory"
+21414,arch_support,a support for the arch of the foot
+21415,archaebacteria archaebacterium archaeobacteria archeobacteria,considered ancient life forms that evolved separately from bacteria and blue-green algae
+21416,archaeopteryx archeopteryx Archaeopteryx_lithographica,extinct primitive toothed bird of the Jurassic period having a long feathered tail and hollow bones; usually considered the most primitive of all birds
+21417,archaeornis,extinct primitive toothed bird with a long feathered tail and three free clawed digits on each wing
+21418,archaism archaicism,the use of an archaic expression
+21419,archaist,a person who archaizes
+21420,archangel,an angel ranked above the highest rank in the celestial hierarchy
+21421,archbishop,a bishop of highest rank
+21422,archbishopric,the territorial jurisdiction of an archbishop
+21423,archdeacon,(Anglican Church) an ecclesiastical dignitary usually ranking just below a bishop
+21424,archdeaconry,the territorial jurisdiction of an archdeacon
+21425,archdiocese,the diocese of an archbishop
+21426,archduchess,a wife or widow of an archduke or a princess of the former ruling house of Austria
+21427,archduchy,the domain controlled by an archduke or archduchess
+21428,archduke,a sovereign prince of the former ruling house of Austria
+21429,archegonium,a female sex organ occurring in mosses, ferns, and most gymnosperms
+21430,archenteron,central cavity of the gastrula; becomes the intestinal or digestive cavity
+21431,archeological_remains remains,a relic that has been excavated from the soil
+21432,archeologist archaeologist,an anthropologist who studies prehistoric people and their culture
+21433,archeology archaeology,the branch of anthropology that studies prehistoric people and their cultures
+21434,archer bowman,a person who is expert in the use of a bow and arrow
+21435,archerfish Toxotes_jaculatrix,any of several small freshwater fishes that catch insects by squirting water at them and knocking them into the water; found in Indonesia and Australia
+21436,archery,the sport of shooting arrows with a bow
+21437,archespore archesporium,primitive cell or group of cells from which a mother cell develops
+21438,archiannelid,small primitive marine worm lacking external segmentation and resembling polychaete larvae
+21439,archidiaconate,office or position of an archdeacon
+21440,archil orchil,any of various lecanoras that yield the dye archil
+21441,archine,a Russian unit of length (71 cm)
+21442,archipallium paleocortex,the olfactory cortex of the cerebrum
+21443,archipelago,a group of many islands in a large body of water
+21444,architect designer,someone who creates plans to be used in making something (such as buildings)
+21445,architectonics tectonics,the science of architecture
+21446,architectural_engineering,the branch of engineering that deals with the construction of buildings (as distinguished from architecture as a design art)
+21447,architectural_ornament,(architecture) something added to a building to improve its appearance
+21448,architectural_style style_of_architecture type_of_architecture,architecture as a kind of art form
+21449,architecture,the discipline dealing with the principles of design and construction and ornamentation of fine buildings; "architecture and eloquence are mixed arts whose end is sometimes beauty and sometimes use"
+21450,architecture,an architectural product or work
+21451,architecture,the profession of designing buildings and environments with consideration for their esthetic effect
+21452,architeuthis giant_squid,largest mollusk known about but never seen (to 60 feet long)
+21453,architrave,the molding around a door or window
+21454,architrave,the lowest part of an entablature; rests immediately on the capitals of the columns
+21455,archive,a depository containing historical records and documents
+21456,archives,collection of records especially about an institution
+21457,archivist,a person in charge of collecting and cataloguing archives
+21458,archosaur archosaurian archosaurian_reptile,extinct reptiles including: dinosaurs; plesiosaurs; pterosaurs; ichthyosaurs; thecodonts
+21459,archpriest hierarch high_priest prelate primate,a senior clergyman and dignitary
+21460,arctic galosh golosh rubber gumshoe,a waterproof overshoe that protects shoes from water or snow
+21461,arctic_willow Salix_arctica,low creeping shrub of Arctic Europe and America
+21462,arctiid arctiid_moth,stout-bodied broad-winged moth with conspicuously striped or spotted wings; larvae are hairy caterpillars
+21463,arcuate_artery arteria_arcuata,curved artery in the foot
+21464,arcuate_artery_of_the_kidney,curved arteries of the kidney
+21465,arcuate_vein_of_the_kidney vena_arcuata_renis,veins that receive blood from interlobular veins of kidney and rectal venules
+21466,arcus arcus_senilis,a whitish deposit in the shape of an arc that is sometimes seen in the cornea
+21467,ardeb,a unit of dry measure used in Egypt
+21468,ardor ardour,intense feeling of love
+21469,ardor ardour elan zeal,a feeling of strong eagerness (usually in favor of a person or cause); "they were imbued with a revolutionary ardor"; "he felt a kind of religious zeal"
+21470,ardor ardour fervor fervour fervency fire fervidness,feelings of great warmth and intensity; "he spoke with great ardor"
+21471,arduousness strenuousness,extreme effortfulness
+21472,are ar,a unit of surface area equal to 100 square meters
+21473,area,a subject of study; "it was his area of specialization"; "areas of interest include..."
+21474,area,a part of a structure having some specific characteristic or function; "the spacious cooking area provided plenty of room for servants"
+21475,area country,a particular geographical region of indefinite boundary (usually serving some special purpose or distinguished by its people or culture or geography); "it was a mountainous area"; "Bible country"
+21476,area expanse surface_area,the extent of a 2-dimensional surface enclosed within a boundary; "the area of a rectangle"; "it was about 500 square feet in area"
+21477,area region,a part of an animal that has a special function or is supplied by a given artery or nerve; "in the abdominal region"
+21478,area_code,a number usually of 3 digits assigned to a telephone area as in the United States and Canada
+21479,area_of_cardiac_dullness,a triangular area of the front of the chest (determined by percussion); corresponds to the part of the heart not covered by the lungs
+21480,area_unit square_measure,a system of units used to measure areas
+21481,areaway,a passageway between buildings or giving access to a basement
+21482,areca,any of several tall tropical palms native to southeastern Asia having egg-shaped nuts
+21483,areflexia,absence of a reflex; a sign of possible nerve damage
+21484,arena,the central area of an ancient Roman amphitheater where contests and spectacles were held; especially an area that was strewn with sand
+21485,arena scene_of_action,a playing field where sports events take place
+21486,arena_theater theater_in_the_round,a theater arranged with seats around at least three sides of the stage
+21487,arenaceous_rock,a sedimentary rock composed of sand
+21488,arenavirus,animal viruses belonging to the family Arenaviridae
+21489,areola,small space in a tissue or body part such as the area between veins on a leaf or an insect's wing
+21490,areola ring_of_color,small circular area such as that around the human nipple or an inflamed area around a pimple or insect bite
+21491,areolar_tissue,fibrous connective tissue with the fibers arranged in a mesh or net
+21492,arete,a sharp narrow ridge found in rugged mountains
+21493,arethusa,any of several bog orchids of the genus Arethusa having 1 or 2 showy flowers
+21494,argali argal Ovis_ammon,wild sheep of semidesert regions in central Asia
+21495,argent,a metal tincture used in heraldry to give a silvery appearance
+21496,argentine,any of various small silver-scaled salmon-like marine fishes
+21497,argentinosaur,huge herbivorous dinosaur of Cretaceous found in Argentina
+21498,argentite,a valuable silver ore consisting of silver sulfide (Ag2S)
+21499,argil,a white clay (especially a white clay used by potters)
+21500,argillaceous_rock,a sedimentary rock formed from clay deposits
+21501,argillite,a sedimentary rock differing from shale in being bound by silica and from slate in having no slate cleavages
+21502,arginine,a bitter tasting amino acid found in proteins and necessary for nutrition; its absence from the diet leads to a reduced production of spermatozoa
+21503,argon Ar atomic_number_18,a colorless and odorless inert gas; one of the six inert gases; comprises approximately 1% of the earth's atmosphere
+21504,argonaut,someone engaged in a dangerous but potentially rewarding adventure
+21505,argosy,one or more large merchant ships
+21506,argument,a variable in a logical or mathematical expression whose value determines the dependent variable; if f(x)=y, x is the independent variable
+21507,argument argumentation debate,a discussion in which reasons are advanced for and against some proposition or proposal; "the argument over foreign aid goes on and on"
+21508,argument literary_argument,a summary of the subject or plot of a literary work or play or movie; "the editor added the argument to the poem"
+21509,argument parameter,(computer science) a reference or value that is passed to a function, procedure, subroutine, command, or program
+21510,argument statement,a fact or assertion offered as evidence that something is true; "it was a strong argument that his hypothesis was true"
+21511,argumentation logical_argument argument line_of_reasoning line,a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning; "I can't follow your line of reasoning"
+21512,argus argus_pheasant,large brilliantly patterned East Indian pheasant
+21513,argy-bargy argle-bargle,a verbal dispute; a wrangling argument
+21514,argyle argyll,a design consisting of a pattern of varicolored diamonds on a solid background (originally for knitted articles); patterned after the tartan of a clan in western Scotland
+21515,argyle argyll,a sock knitted or woven with an argyle design (usually used in the plural)
+21516,argyll argyle,a covered gravy holder of silver or other metal containing a detachable central vessel for hot water to keep the gravy warm
+21517,argyrodite,a rare steel-grey mineral consisting of silver and germanium and sulfur
+21518,aria,an elaborate song for solo voice
+21519,arianist,an adherent of Arianism (the belief that Jesus Christ was not truly God)
+21520,aridity aridness thirstiness,a deficiency of moisture (especially when resulting from a permanent absence of rainfall)
+21521,arietta short_aria,a short aria
+21522,aril,fleshy and usually brightly colored cover of some seeds that develops from the ovule stalk and partially or entirely envelops the seed
+21523,arioso,(music) a short recitative that is melodic but is not an aria
+21524,arista,bristlelike process near the tip of the antenna of certain flies
+21525,aristocrat blue_blood patrician,a member of the aristocracy
+21526,arithmancy,divination by means of numbers
+21527,arithmetic,the branch of pure mathematics dealing with the theory of numerical calculations
+21528,arithmetic_mean first_moment expectation expected_value,the sum of the values of a random variable divided by the number of values
+21529,arithmetic_operation,a mathematical operation involving numbers
+21530,arithmetic_progression,(mathematics) a progression in which a constant is added to each term in order to obtain the next term; "1-4-7-10-13- is the start of an arithmetic progression"
+21531,arithmetician,someone who specializes in arithmetic
+21532,arity,the number of arguments that a function can take
+21533,ark,a boat built by Noah to save his family and animals from the flood
+21534,ark_shell,marine bivalve mollusk having a heavy toothed shell with a deep boat-like inner surface
+21535,arm,a human limb; technically the part of the superior limb between the shoulder and the elbow but commonly used to refer to the whole superior limb
+21536,arm,the part of an armchair or sofa that supports the elbow and forearm of a seated person
+21537,arm branch limb,any projection that is thought to resemble a human arm; "the arm of the record player"; "an arm of the sea"; "a branch of the sewer"
+21538,arm's_length,a distance sufficient to exclude intimacy
+21539,arm-twisting,persuasion by the use of direct personal pressure; "some gentle arm-twisting produced the desired result"; "no amount of arm-twisting will get me to agree"
+21540,arm_bone,a bone in the arm
+21541,arm_exercise,exercise designed to strengthen the arm muscles
+21542,arm_guard arm_pad,a pad worn by football players and hockey goalkeepers
+21543,armada,a large fleet
+21544,armadillo,burrowing chiefly nocturnal mammal with body covered with strong horny plates
+21545,armament,weaponry used by military or naval force
+21546,armamentarium,the collection of equipment and methods used in the practice of medicine
+21547,armature,coil in which voltage is induced by motion through a magnetic field
+21548,armband,worn around arm as identification or to indicate mourning
+21549,armband,a band worn around the upper arm
+21550,armchair,chair with a support on each side for arms
+21551,armchair_liberal,a person of liberal ideals who takes no action to realize them
+21552,armed_forces_censorship,military censorship of personal communications to or from persons in the armed forces
+21553,armed_robbery heist holdup stickup,robbery at gunpoint
+21554,armet,a medieval helmet with a visor and a neck guard
+21555,armful,the quantity that can be contained in the arms
+21556,armhole,a hole through which you put your arm and where a sleeve can be attached
+21557,armiger,a nobleman entitled to bear heraldic arms
+21558,armiger armor-bearer,a squire carrying the armor of a knight
+21559,armilla,(archeology) a bracelet worn around the wrist or arm
+21560,armillary_sphere armilla,a celestial globe consisting of metal hoops; used by early astronomers to determine the positions of stars
+21561,arming armament equipping,the act of equiping with weapons in preparation for war
+21562,armistice cease-fire truce,a state of peace agreed to between opponents so they can discuss peace terms
+21563,armlet arm_band,a band worn around the arm for decoration
+21564,armoire,a large wardrobe or cabinet; originally used for storing weapons
+21565,armor armour,a military unit consisting of armored fighting vehicles
+21566,armor armour,protective covering made of metal and used in combat
+21567,armor armour,tough more-or-less rigid protective covering of an animal or plant
+21568,armor_plate armour_plate armor_plating plate_armor plate_armour,specially hardened steel plate used to protect fortifications or vehicles from enemy fire
+21569,armored_car armoured_car,an armor-plated truck with strong doors and locks used to transport money or valuables; "the paintings were delivered to the museum in an air-conditioned armored car"
+21570,armored_car armoured_car,a military combat vehicle on wheels with light armor (and usually a machine gun)
+21571,armored_catfish,South American catfish having the body covered with bony plates
+21572,armored_dinosaur,dinosaurs having bony armour
+21573,armored_personnel_carrier armoured_personnel_carrier APC,(military) an armored vehicle (usually equipped with caterpillar treads) that is used to transport infantry
+21574,armored_scale,insect having a firm covering of wax especially in the female
+21575,armored_searobin armored_sea_robin Peristedion_miniatum,sea robins having bony scutes on the body and barbels on the chin; found mostly on the continental slope
+21576,armored_vehicle armoured_vehicle,a vehicle that is protected by armor plate
+21577,armorer armourer,a worker skilled in making armor or arms; "a sword made by a famous English armorer"
+21578,armorer armourer,a manufacturer of firearms
+21579,armorer armourer artificer,an enlisted man responsible for the upkeep of small arms and machine guns etc.
+21580,armory armoury arsenal,a place where arms are manufactured
+21581,armory armoury inventory,a collection of resources; "he dipped into his intellectual armory to find an answer"
+21582,armpit axilla axillary_cavity axillary_fossa,the hollow under the arm where it is joined to the shoulder; "they were up to their armpits in water"
+21583,armrest,a support for the arm
+21584,arms_control,a limitation on the size and armament of the armed forces of a country
+21585,arms_deal,a deal to provide military arms
+21586,arms_manufacturer,someone who manufactures arms and munitions
+21587,arms_race,a competition between nations to have the most powerful armaments
+21588,army,a large number of people united for some specific purpose
+21589,army regular_army ground_forces,a permanent organization of the military land forces of a nation or state
+21590,army_ant driver_ant legionary_ant,tropical nomadic ant that preys mainly on other insects
+21591,army_attache,a military attache who is a commissioned or warrant officer in an army
+21592,army_base,a large base of operations for an army
+21593,army_brat,the child of a career officer of the United States Army
+21594,army_cutworm Chorizagrotis_auxiliaris,larvae (of a noctuid moth) that travel in large groups and destroy grains and alfalfa in the midwestern states
+21595,army_engineer military_engineer,a member of the military who is trained in engineering and construction work
+21596,army_officer,an officer in the armed forces; "he's a retired army officer"
+21597,army_unit,a military unit that is part of an army
+21598,armyworm,larva of fungus gnat that feed on cereals and other grains; they march in large companies in regular order when the food is exhausted
+21599,armyworm Pseudaletia_unipuncta,moth whose destructive larvae travel in multitudes
+21600,armyworm army_worm Pseudaletia_unipuncta,noctuid moth larvae that travel in multitudes destroying especially grass and grain
+21601,arnica,used especially in treating bruises
+21602,arnica,any of various rhizomatous usually perennial plants of the genus Arnica
+21603,arnica,an ointment used in treating bruises
+21604,aroeira_blanca Schinus_chichita,small resinous tree or shrub of Brazil
+21605,aroma fragrance perfume scent,a distinctive odor that is pleasant
+21606,aromatherapy,the therapeutic use of aromatic plant extracts and essential oils in baths or massage
+21607,aromatic_aster,a variety of aster
+21608,aromatic_compound,a hydrocarbon containing one or more benzene rings that are characteristic of the benzene series of compounds
+21609,aromatic_hydrocarbon,a hydrocarbon that contains one or more benzene rings that are characteristic of the benzene series of organic compounds
+21610,arousal,a state of heightened physiological activity
+21611,arousal,awakening from sleep
+21612,arousal rousing,the act of arousing; "the purpose of art is the arousal of emotions"
+21613,arpeggio,a chord whose notes are played in rapid succession rather than simultaneously
+21614,arpent,a former French unit of area; equal approximately to an acre
+21615,arquebus harquebus hackbut hagbut,an obsolete firearm with a long barrel
+21616,arrack arak,any of various strong liquors distilled from the fermented sap of toddy palms or from fermented molasses
+21617,arraignment,a legal document calling someone to court to answer an indictment
+21618,arrangement,an orderly grouping (of things or persons) considered as a unit; the result of arranging; "a flower arrangement"
+21619,arrangement arranging transcription,the act of arranging and adapting a piece of music
+21620,arrangement organization organisation system,an organized structure for arranging or classifying; "he changed the arrangement of the topics"; "the facts were familiar but it was in the organization of them that he was original"; "he tried to understand their system of classification"
+21621,arranger adapter transcriber,a musician who adapts a composition for particular voices or instruments or for another style of performance
+21622,array,an orderly arrangement; "an array of troops in battle order"
+21623,array,an impressive display; "it was a bewildering array of books"; "his tools were in an orderly array on the basement wall"
+21624,array,an arrangement of aerials spaced to give desired directional characteristics
+21625,array raiment regalia,especially fine or decorative clothing
+21626,arrears,the state of being behind in payments; "an account in arrears"
+21627,arrears,an unpaid overdue debt
+21628,arrest check halt hitch stay stop stoppage,the state of inactivity following an interruption; "the negotiations were in arrest"; "held them in check"; "during the halt he got some lunch"; "the momentary stay enabled him to escape the blow"; "he spent the entire stop in his seat"
+21629,arrested_development fixation infantile_fixation regression,an abnormal state in which development has stopped prematurely
+21630,arrester arrester_hook,a restraint that slows airplanes as they land on the flight deck of an aircraft carrier
+21631,arrival,the act of arriving at a certain place; "they awaited her arrival"
+21632,arrival arriver comer,someone who arrives (or has arrived)
+21633,arrival reaching,accomplishment of an objective
+21634,arrival_gate,gate where passengers disembark
+21635,arrival_time time_of_arrival,the time at which a public conveyance is scheduled to arrive at a given destination
+21636,arroba,a unit of weight used in some Spanish speaking countries
+21637,arroba,a liquid measure (with different values) used in some Spanish speaking countries
+21638,arrogance haughtiness hauteur high-handedness lordliness,overbearing pride evidenced by a superior manner toward inferiors
+21639,arrogator,a person who through conceit makes pretentious claims to rights or advantages that he or she is not entitled to or to qualities that he or she does not possess
+21640,arrow,a projectile with a straight thin shaft and an arrowhead on one end and stabilizing vanes on the other; intended to be shot from a bow
+21641,arrow pointer,a mark to indicate a direction or relation
+21642,arrow_arum,an aquatic plant of the genus Peltandra; North America
+21643,arrow_grass Triglochin_maritima,tufted perennial found in shallow water or marshland; sometimes poisons livestock
+21644,arrow_leaved_aster,a variety of aster
+21645,arrow_wood Viburnum_recognitum,closely related to southern arrow wood; grows in the eastern United States from Maine to Ohio and Georgia
+21646,arrow_wood southern_arrow_wood Viburnum_dentatum,deciduous shrub of eastern North America having blue-black berries and tough pliant wood formerly used to make arrows
+21647,arrowhead,the pointed head or striking tip of an arrow
+21648,arrowleaf_groundsel Senecio_triangularis,perennial with sharply toothed triangular leaves on leafy stems bearing a cluster of yellow flower heads; moist places in mountains of western North America
+21649,arrowroot,a nutritive starch obtained from the root of the arrowroot plant
+21650,arrowroot American_arrowroot obedience_plant Maranta_arundinaceae,white-flowered West Indian plant whose root yields arrowroot starch
+21651,arrowsmith,a maker of arrows
+21652,arrowworm chaetognath,any worm of the Chaetognatha; transparent marine worm with horizontal lateral and caudal fins and a row of movable curved spines at each side of the mouth
+21653,arroyo,a stream or brook
+21654,arroyo_willow Salix_lasiolepis,shrubby willow of the western United States
+21655,arroz_con_pollo,rice and chicken cooked together Spanish style; highly seasoned especially with saffron
+21656,arse arsehole asshole bunghole,vulgar slang for anus
+21657,arsenal armory armoury,all the weapons and equipment that a country has
+21658,arsenal armory armoury,a military structure where arms and ammunition and other military equipment are stored and training is given in the use of arms
+21659,arsenate,a salt or ester of arsenic acid
+21660,arsenic As atomic_number_33,a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar
+21661,arsenic arsenic_trioxide arsenous_anhydride arsenous_oxide white_arsenic ratsbane,a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer
+21662,arsenic_acid,an acid formed from arsenic pentoxide
+21663,arsenical,a pesticide or drug containing arsenic
+21664,arsenide,a compound of arsenic with a more positive element
+21665,arsenopyrite mispickel,a silver-white or grey ore of arsenic
+21666,arsine,a poisonous colorless flammable gas used in organic synthesis and to dope transistors and as a poison gas in warfare
+21667,arson incendiarism fire-raising,malicious burning to destroy property; "the British term for arson is fire-raising"
+21668,arsonist incendiary firebug,a criminal who illegally sets fire to property
+21669,art artistic_creation artistic_production,the creation of beautiful or significant things; "art does not need to be innovative to be good"; "I was never any good at art"; "he said that architecture is the art of wasting space beautifully"
+21670,art artistry prowess,a superior skill that you can learn by study and practice and observation; "the art of conversation"; "it's quite an art"
+21671,art fine_art,the products of human creativity; works of art collectively; "an art exhibition"; "a collection of fine art"
+21672,art_class,a class in which you learn to draw or paint
+21673,art_collection,a collection of art works
+21674,art_critic,a critic of paintings
+21675,art_dealer,a dealer in works of art requiring esthetic evaluation
+21676,art_department,the academic department responsible for teaching art and art appreciation
+21677,art_director,the director in charge of the artistic features of a theatrical production (costumes and scenery and lighting)
+21678,art_editor,an editor who is responsible for illustrations and layouts in printed matter
+21679,art_exhibition,an exhibition of art objects (paintings or statues)
+21680,art_form,(architecture) a form of artistic expression (such as writing or painting or architecture)
+21681,art_historian,a historian of art
+21682,art_history,the academic discipline that studies the development of painting and sculpture
+21683,art_nouveau,a French school of art and architecture popular in the 1890s; characterized by stylized natural forms and sinuous outlines of such objects as leaves and vines and flowers
+21684,art_paper,a high-quality paper (usually having a filler of china clay)
+21685,art_school,a school specializing in art
+21686,art_student,someone studying to be an artist
+21687,art_teacher,someone who teaches art
+21688,artemisia,any of various composite shrubs or herbs of the genus Artemisia having aromatic green or greyish foliage
+21689,arterial_blood,blood found in arteries; "except for the pulmonary artery the arterial blood is rich in oxygen"
+21690,arterial_blood_gases,measurement of the pH level and the oxygen and carbon dioxide concentrations in arterial blood; important in diagnosis of many respiratory diseases
+21691,arterial_plaque,a fatty deposit inside an arterial wall; characteristic of atherosclerosis
+21692,arterial_pressure,the pressure of the circulating blood on the arteries; "arterial pressure is the product of cardiac output and vascular resistance"
+21693,arterial_road,a major or main route
+21694,arteriectasis arteriectasia,an abnormal distension of an artery
+21695,arteriogram,an X ray of an artery filled with a contrast medium
+21696,arteriography,roentgenographic examination of arteries
+21697,arteriole arteriola capillary_artery,one of the small thin-walled arteries that end in capillaries
+21698,arteriolosclerosis,sclerosis of the arterioles
+21699,arteriosclerosis arterial_sclerosis hardening_of_the_arteries induration_of_the_arteries coronary-artery_disease,sclerosis of the arterial walls
+21700,arteriosclerosis_obliterans,a stage of arteriosclerosis involving closure of blood vessels
+21701,arteritis,inflammation of an artery
+21702,artery,a major thoroughfare that bears important traffic
+21703,artery arteria arterial_blood_vessel,a blood vessel that carries blood from the heart to the body
+21704,artery_of_the_penis_bulb arteria_bulbi_penis,a branch of the internal pudendal artery of males that supplies the bulb of the penis
+21705,artery_of_the_vestibule_bulb arteria_bulbi_vestibuli,a branch of the internal pudendal artery in females that supplies the bulb of the vestibule
+21706,artesian_well,a well drilled through impermeable strata into strata that receive water from a higher altitude so there is pressure to force the water to flow upward
+21707,artfulness,the quality of being adroit in taking unfair advantage
+21708,arthralgia,pain in a joint or joints
+21709,arthritic,a person afflicted with arthritis; "the hands of an elderly arthritic"
+21710,arthritis,inflammation of a joint or joints
+21711,arthrocentesis,removal of fluid from a joint by centesis
+21712,arthrodesis,the surgical fixation of a joint which is intended to result in bone fusion
+21713,arthrogram,an X ray of a joint after the injection of a contrast medium
+21714,arthrography,roentgenographic examination of a joint after injection of radiopaque contrast medium; produces an arthrogram
+21715,arthromere,any of the segments in the body of a jointed animal like an arthropod
+21716,arthropathy,a pathology or abnormality of a joint
+21717,arthroplasty,surgical reconstruction or replacement of a malformed or degenerated joint
+21718,arthropod,invertebrate having jointed limbs and a segmented body with an exoskeleton made of chitin
+21719,arthropod_family,any of the arthropods
+21720,arthropod_genus,a genus of arthropods
+21721,arthroscope,a type of endoscope that is inserted into a joint for visual examination
+21722,arthroscopy,a minimally invasive operation to repair a damaged joint; the surgeon examines the joint with an arthroscope while making repairs through a small incision
+21723,arthrospore,a body that resembles a spore but is not an endospore; produced by some bacteria
+21724,arthrospore,one of a string of thick walled vegetative resting cells formed by some algae and fungi
+21725,artichoke globe_artichoke,a thistlelike flower head with edible fleshy leaves and heart
+21726,artichoke globe_artichoke artichoke_plant Cynara_scolymus,Mediterranean thistlelike plant widely cultivated for its large edible flower head
+21727,artichoke_heart,the tender fleshy center of the immature artichoke flower
+21728,article,(grammar) a determiner that may indicate the specificity of reference of a noun phrase
+21729,article,nonfictional prose forming an independent part of a publication
+21730,article,one of a class of artifacts; "an article of clothing"
+21731,article clause,a separate section of a legal document (as a statute or contract or will)
+21732,article_of_commerce,an article that is offered for sale
+21733,article_of_faith credendum,(Christianity) any of the sections into which a creed or other statement of doctrine is divided
+21734,articles_of_agreement shipping_articles,a contract between crew and captain of a ship
+21735,articles_of_incorporation,a legal document that creates a corporation; it is filed with a state by the founders of a corporation and is governed by the laws of the state
+21736,articular_muscle,a muscle that inserts directly onto the capsule of a joint
+21737,articulated_ladder,a ladder consisting of segments (usually four) that are held together by joints that can lock in place
+21738,articulation,the aspect of pronunciation that involves bringing articulatory organs together so as to shape the sounds of speech
+21739,articulation,the act of joining things in such a way that motion is possible
+21740,articulation join joint juncture junction,the shape or manner in which things come together and a connection is made
+21741,articulation voice,expressing in coherent verbal form; "the articulation of my feelings"; "I gave voice to my feelings"
+21742,articulator,someone who pronounces words
+21743,articulator,a movable speech organ
+21744,articulatory_system,the system of joints in the body
+21745,artifact artefact,a man-made object taken as a whole
+21746,artificial_blood,a liquid that can carry large amounts of oxygen and can serve as a temporary substitute for blood
+21747,artificial_flower,a handmade imitation of a blossom
+21748,artificial_heart,a pump that replaces the natural heart
+21749,artificial_horizon gyro_horizon flight_indicator,a navigational instrument based on a gyroscope; it artificially provides a simulated horizon for the pilot
+21750,artificial_insemination AI,the introduction of semen into the oviduct or uterus by some means other than sexual intercourse
+21751,artificial_intelligence AI,the branch of computer science that deal with writing computer programs that can solve problems creatively; "workers in AI hope to imitate or duplicate intelligence in computers and robots"
+21752,artificial_joint,a metal or plastic part that is surgically implanted to replace a natural joint (possibly elbow or wrist but usually hip or knee)
+21753,artificial_kidney hemodialyzer,a machine that uses dialysis to remove impurities and waste products from the bloodstream before returning the blood to the patient's body
+21754,artificial_language,a language that is deliberately created for a specific purpose
+21755,artificial_respiration,an emergency procedure whereby breathing is maintained artificially
+21756,artificial_skin,a synthetic covering with two layers used experimentally to treat burn victims
+21757,artificiality,the quality of being produced by people and not occurring naturally
+21758,artillery artillery_unit,an army unit that uses big guns
+21759,artillery heavy_weapon gun ordnance,large but transportable armament
+21760,artillery_fire cannon_fire,fire delivered by artillery
+21761,artillery_plant Pilea_microphylla,tropical American stingless nettle that discharges its pollen explosively
+21762,artillery_shell,a shell fired by artillery
+21763,artilleryman cannoneer gunner machine_gunner,a serviceman in the artillery
+21764,artisan's_lien,lien permitting an artisan to retain possession of a piece of work until has been paid for
+21765,artist creative_person,a person whose creative work shows sensitivity and imagination
+21766,artist's_loft,a factory loft that has been converted into an artist's workroom and living area
+21767,artist's_model sitter,a person who poses for a painter or sculptor
+21768,artist's_workroom atelier,a studio especially for an artist or designer
+21769,artiste,a public performer (a dancer or singer)
+21770,artistic_movement art_movement,a group of artists who agree on general principles
+21771,artistic_style idiom,the style of a particular artist or school or movement; "an imaginative orchestral idiom"
+21772,artlessness,ingenuousness by virtue of being free from artful deceit
+21773,artlessness innocence ingenuousness naturalness,the quality of innocent naivete
+21774,arts_and_crafts,the arts of decorative design and handicraft; "they sponsored arts and crafts in order to encourage craftsmanship in an age of mass production"
+21775,artwork art graphics nontextual_matter,photographs or other visual representations in a printed publication; "the publisher was responsible for all the artwork in the book"
+21776,arum,starch resembling sago that is obtained from cuckoopint root
+21777,arum aroid,any plant of the family Araceae; have small flowers massed on a spadix surrounded by a large spathe
+21778,arytenoid arytaenoid arytenoid_cartilage,either of two small cartilages at the back of the larynx to which the vocal folds are attached
+21779,asafetida asafoetida,the brownish gum resin of various plants; has strong taste and odor; formerly used as an antispasmodic
+21780,asana,(Hinduism) a posture or manner of sitting (as in the practice of yoga)
+21781,asarabacca Asarum_europaeum,thick creeping evergreen herb of western Europe
+21782,asbestos,a fibrous amphibole; used for making fireproof articles; inhaling fibers can cause asbestosis or lung cancer
+21783,asbestos_abatement,the removal of asbestos from a public building
+21784,asbestosis,lung disease caused by inhaling asbestos particles
+21785,ascariasis,infestation of the human intestine with Ascaris roundworms
+21786,ascendant ascendent,position or state of being dominant or in control; "that idea was in the ascendant"
+21787,ascender,someone who ascends
+21788,ascender,a lowercase letter that has a part extending above other lowercase letters
+21789,ascender,(printing) the part of tall lowercase letters that extends above the other lowercase letters
+21790,ascending_aorta,the ascending part of the aorta as it emerges from the left ventricle
+21791,ascending_artery arteria_ascendens,the branch of the ileocolic artery that supplies the ascending colon
+21792,ascending_colon,the part of the large intestine that ascends from the cecum to the transverse colon
+21793,ascending_node,the point at which an orbit crosses the ecliptic plane going north
+21794,ascension,(astronomy) the rising of a star above the horizon
+21795,ascent acclivity rise raise climb upgrade,an upward slope or grade (as in a road); "the car couldn't make it up the rise"
+21796,asceticism,the doctrine that through renunciation of worldly pleasures it is possible to achieve a high spiritual or intellectual state
+21797,asceticism ascesis,rigorous self-denial and active self-restraint
+21798,ascidian,minute sedentary marine invertebrate having a saclike body with siphons through which water enters and leaves
+21799,ascidian_tadpole,free-swimming larva of ascidians; they have a tail like a tadpole that contains the notochord
+21800,ascites,accumulation of serous fluid in peritoneal cavity
+21801,asclepiad,any plant of the family Asclepiadaceae
+21802,ascocarp,mature fruiting body of an ascomycetous fungus
+21803,ascolichen,a lichen in which the fungus component is an ascomycete
+21804,ascoma,an ascocarp having the spore-bearing layer of cells (the hymenium) on a broad disklike receptacle
+21805,ascomycete ascomycetous_fungus,any fungus of the class Ascomycetes (or subdivision Ascomycota) in which the spores are formed inside an ascus
+21806,ascospore,sexually produced fungal spore formed within an ascus
+21807,ascot,a cravat with wide square ends; secured with an ornamental pin
+21808,ascus,saclike structure in which ascospores are formed through sexual reproduction of ascomycetes
+21809,asepsis antisepsis sterility sterileness,(of non-living objects) the state of being free of pathogenic organisms
+21810,asexual_reproduction agamogenesis,reproduction without the fusion of gametes
+21811,asexuality sexlessness,having no evident sex or sex organs
+21812,ash,the residue that remains when something is burned
+21813,ash,strong elastic wood of any of various ash trees; used for furniture and tool handles and sporting goods such as baseball bats
+21814,ash ash_tree,any of various deciduous pinnate-leaved ornamental or timber trees of the genus Fraxinus
+21815,ash-key,winged seed of the ash tree
+21816,ash-pan,a receptacle fitted beneath the grate in which ashes collect and are removed
+21817,ash_grey ash_gray silver silver_grey silver_gray,a light shade of grey
+21818,ashcake ash_cake corn_tash,corn bread wrapped in cabbage leaves and baked in hot ashes (southern)
+21819,ashcan trash_can garbage_can wastebin ash_bin ash-bin ashbin dustbin trash_barrel trash_bin,a bin that holds rubbish until it is collected
+21820,ashlar,a rectangular block of hewn stone used for building purposes
+21821,ashram,a place of religious retreat modeled after the Indian ashram
+21822,ashram,(India) a place of religious retreat for Hindus
+21823,ashtray,a receptacle for the ash from smokers' cigars or cigarettes
+21824,aside,a line spoken by an actor to the audience but not intended for others on the stage
+21825,asininity,the quality of being asinine; stupidity combined with stubbornness
+21826,asking_price selling_price,the price at which something is offered for sale
+21827,asp Egyptian_cobra Naja_haje,cobra used by the Pharaohs as a symbol of their power over life and death
+21828,asp asp_viper Vipera_aspis,of southern Europe; similar to but smaller than the adder
+21829,asparaginase Elspar,antineoplastic drug (trade name Elspar) sometimes used to treat lymphoblastic leukemia
+21830,asparagine,a crystalline amino acid found in proteins and in many plants (e.g., asparagus)
+21831,asparagus,edible young shoots of the asparagus plant
+21832,asparagus edible_asparagus Asparagus_officinales,plant whose succulent young shoots are cooked and eaten as a vegetable
+21833,asparagus_bean yard-long_bean Vigna_unguiculata_sesquipedalis Vigna_sesquipedalis,South American bean having very long succulent pods
+21834,asparagus_bed,a bed in which asparagus is growing
+21835,asparagus_fern Asparagus_setaceous Asparagus_plumosus,a fernlike plant native to South Africa
+21836,aspartame,an artificial sweetener made from aspartic acid; used as a calorie-free sweetener
+21837,aspartic_acid,a crystalline amino acid found in proteins and occurring naturally in sugar beets and sugar cane
+21838,aspect,the beginning or duration or completion or repetition of the action of a verb
+21839,aspect,a characteristic to be considered
+21840,aspect facet,a distinct feature or element in a problem; "he studied every facet of the question"
+21841,aspect_ratio,the ratio of the width to the height of a tv picture
+21842,aspen,any of several trees of the genus Populus having leaves on flattened stalks so that they flutter in the lightest wind
+21843,asper,20 aspers equal 1 kurus in Turkey
+21844,aspergill aspersorium,a short-handled device with a globe containing a sponge; used for sprinkling holy water
+21845,aspergillosis,an opportunistic infection by a fungus of the genus Aspergillus; characterized by inflammation and lesions of the ear and other organs
+21846,aspergillosis,disease especially in agricultural workers caused by inhalation of Aspergillus spores causing lumps in skin and ears and respiratory organs
+21847,aspergillosis brooder_pneumonia,severe respiratory disease of birds that takes the form of an acute rapidly fatal pneumonia in young chickens and turkeys
+21848,asperity grimness hardship rigor rigour severity severeness rigorousness rigourousness,something hard to endure; "the asperity of northern winters"
+21849,asperity sharpness,harshness of manner
+21850,aspersion calumny slander defamation denigration,an abusive attack on a person's character or good name
+21851,aspersion slur,a disparaging remark; "in the 19th century any reference to female sexuality was considered a vile aspersion"; "it is difficult for a woman to understand a man's sensitivity to any slur on his virility"
+21852,aspersion sprinkling,the act of sprinkling water in baptism (rare)
+21853,aspersorium,the basin or other vessel that holds holy water in Roman Catholic Churches
+21854,asphalt,mixed asphalt and crushed gravel or sand; used especially for paving but also for roofing
+21855,asphalt mineral_pitch,a dark bituminous substance found in natural beds and as residue from petroleum distillation; consists mainly of hydrocarbons
+21856,asphodel,any of various chiefly Mediterranean plants of the genera Asphodeline and Asphodelus having linear leaves and racemes of white or pink or yellow flowers
+21857,asphyxia,a condition in which insufficient or no oxygen and carbon dioxide are exchanged on a ventilatory basis; caused by choking or drowning or electric shock or poison gas
+21858,aspic,savory jelly based on fish or meat stock used as a mold for meats or vegetables
+21859,aspidistra cast-iron_plant bar-room_plant Aspidistra_elatio,evergreen perennial with large handsome basal leaves; grown primarily as a foliage houseplant
+21860,aspirant aspirer hopeful wannabe wannabee,an ambitious and aspiring young person; "a lofty aspirant"; "two executive hopefuls joined the firm"; "the audience was full of Madonna wannabes"
+21861,aspirate,a consonant pronounced with aspiration
+21862,aspiration,a manner of articulation involving an audible release of breath
+21863,aspiration,a will to succeed
+21864,aspiration_pneumonia,inflammation of the lungs caused by inhaling or choking on vomitus; may occur during unconsciousness (anesthesia or drunkenness or seizure or cardiac arrest)
+21865,aspirator,a pump that draws air or another gas through a liquid
+21866,aspirin acetylsalicylic_acid Bayer Empirin St._Joseph,the acetylated derivative of salicylic acid; used as an analgesic anti-inflammatory drug (trade names Bayer, Empirin, and St. Joseph) usually taken in tablet form; used as an antipyretic; slows clotting of the blood by poisoning platelets
+21867,aspirin_powder headache_powder,a powdered form of aspirin
+21868,ass,a pompous fool
+21869,ass,hardy and sure-footed animal smaller and with longer ears than the horse
+21870,assailability,vulnerability to forceful attack
+21871,assassin,a member of a secret order of Muslims (founded in the 12th century) who terrorized and killed Christian Crusaders
+21872,assassin assassinator bravo,a murderer (especially one who kills a prominent political figure) who kills by a surprise attack and often is hired to do the deed; "his assassins were hunted down like animals"; "assassinators of kings and emperors"
+21873,assassin_bug reduviid,a true bug: long-legged predacious bug living mostly on other insects; a few suck blood of mammals
+21874,assassination,murder of a public figure by surprise attack
+21875,assault,close fighting during the culmination of a military attack
+21876,assault,a threatened or attempted physical attack by someone who appears to be able to cause bodily harm if not stopped
+21877,assault_gun,an armored vehicle with the chassis of a tank (but no turret) and a large gun; used as an antitank weapon and to support infantry
+21878,assault_rifle assault_gun,any of the automatic rifles or semiautomatic rifles with large magazines designed for military use
+21879,assay,a substance that is undergoing an analysis of its components
+21880,assay,a written report of the results of an analysis of the composition of some substance
+21881,assay,a quantitative or qualitative test of a substance (especially an ore or a drug) to determine its components; frequently used to test for the presence or concentration of infectious agents or antibodies etc.
+21882,assay check,an appraisal of the state of affairs; "they made an assay of the contents"; "a check on its dependability under stress"
+21883,assayer,an analyst who assays (performs chemical tests on) metals
+21884,assegai assagai,the slender spear of the Bantu-speaking people of Africa
+21885,assembler assembly_program,a program to convert assembly language into machine language
+21886,assembly,a group of persons who are gathered together for a common purpose
+21887,assembly,a unit consisting of components that have been fitted together
+21888,assembly,a group of machine parts that fit together to form a self-contained unit
+21889,assembly assemblage gathering,the social act of assembling; "they demanded the right of assembly"
+21890,assembly_hall,a hall where many people can congregate
+21891,assembly_language,a low-level programing language; close approximation to machine language
+21892,assembly_plant,a factory where manufactured parts are assembled into a finished product
+21893,assemblyman,someone who is a member of a legislative assembly
+21894,assemblywoman,a woman assemblyman
+21895,assent acquiescence,agreement with a statement or proposal to do something; "he gave his assent eagerly"; "a murmur of acquiescence from the assembly"
+21896,assenter,a person who assents
+21897,asserter declarer affirmer asseverator avower,someone who claims to speak the truth; "a bold asserter"; "a declarer of his intentions"; "affirmers of traditional doctrine"; "an asseverator of strong convictions"; "an avower of his own great intelligence"
+21898,assertion averment asseveration,a declaration that is made emphatically (as if no supporting evidence were necessary)
+21899,assertiveness self-assertiveness,aggressive self-assurance; given to making bold assertions
+21900,assertiveness_training,a method of psychotherapy that reinforces you for stating negative and positive feelings directly
+21901,assessee,a person (or property) that is assessed
+21902,assessment,an amount determined as payable; "the assessment for repairs outraged the club's membership"
+21903,assessment,the market value set on assets
+21904,asset plus,a useful or valuable quality
+21905,assets,anything of material value or usefulness that is owned by a person or company
+21906,asshole bastard cocksucker dickhead shit mother_fucker motherfucker prick whoreson son_of_a_bitch SOB,insulting terms of address for people who are stupid or irritating or ridiculous
+21907,assibilation,the development of a consonant phoneme into a sibilant
+21908,assiduity assiduousness concentration,great and constant diligence and attention
+21909,assignation tryst,a secret rendezvous (especially between lovers)
+21910,assignee,(law) the party to whom something is assigned (e.g., someone to whom a right or property is legally transferred)
+21911,assignment,the instrument by which a claim or right or interest or property is transferred from one person to another
+21912,assignment,an undertaking that you have been assigned to do (as by an instructor)
+21913,assignment assigning,the act of distributing something to designated places or persons; "the first task is the assignment of an address to each datum"
+21914,assignment duty_assignment,a duty that you are assigned to perform (especially in the armed forces); "hazardous duty"
+21915,assignor,(law) the party who makes an assignment
+21916,assimilation,the state of being assimilated; people of different backgrounds come to see themselves as part of a larger national family
+21917,assimilation,a linguistic process by which a sound becomes similar to an adjacent sound
+21918,assimilation,in the theories of Jean Piaget: the application of a general schema to a particular instance
+21919,assimilation absorption,the social process of absorbing one cultural group into harmony with another
+21920,assimilation absorption,the process of absorbing nutrients into the body after digestion
+21921,assist,(sports) the act of enabling another player to make a good play
+21922,assistant helper help supporter,a person who contributes to the fulfillment of a need or furtherance of an effort or purpose; "my invaluable assistant"; "they hired additional help to finish the work"
+21923,assistant_professor,a teacher or lower rank than an associate professor
+21924,assisted_suicide,suicide of a terminally ill person that involves an assistant who serves to make dying as painless and dignified as possible
+21925,assize,the regulation of weights and measures of articles offered for sale
+21926,assize,an ancient writ issued by a court of assize to the sheriff for the recovery of property
+21927,assizes court_of_assize court_of_assize_and_nisi_prius,the county courts of England (replaced in 1971 by Crown courts)
+21928,associability associableness,the capability of being easily associated or joined or connected in thought
+21929,associate,a person with subordinate membership in a society, institution, or commercial enterprise; "associates in the law firm bill at a lower rate than do partners"
+21930,associate,a person who joins with others in some activity or endeavor; "he had to consult his associate before continuing"
+21931,associate,any event that usually accompanies or is closely connected with another; "first was the lightning and then its thunderous associate"
+21932,associate_degree associate,a degree granted by a two-year college on successful completion of the undergraduates course of studies
+21933,associate_professor,a teacher lower in rank than a full professor but higher than an assistant professor
+21934,associateship,the position of associate (as in an office or academy)
+21935,association,the state of being connected together as in memory or imagination; "his association of his father with being beaten was too strong to break"
+21936,association,a relation resulting from interaction or dependence; "flints were found in association with the prehistoric remains of the bear"; "the host is not always injured by association with a parasite"
+21937,association,(chemistry) any process of combination (especially in solution) that depends on relatively weak chemical bonding
+21938,association,a formal organization of people or groups of people; "he joined the Modern Language Association"
+21939,association,(ecology) a group of organisms (plants and animals) that live together in a certain geographical region and constitute a community with a few dominant species
+21940,association,the act of consorting with or joining with others; "you cannot be convicted of criminal guilt by association"
+21941,association connection connexion,the process of bringing ideas or events together in memory or imagination; "conditioning is a form of learning by association"
+21942,association_area association_cortex,cortical areas that are neither motor or sensory but are thought to be involved in higher processing of information
+21943,associationism association_theory,(psychology) a theory that association is the basic principle of mental activity
+21944,assonance vowel_rhyme,the repetition of similar vowels in the stressed syllables of successive words
+21945,assortative_mating,mating of individuals having more traits in common than likely in random mating
+21946,assortment mixture mixed_bag miscellany miscellanea variety salmagundi smorgasbord potpourri motley,a collection containing a variety of sorts of things; "a great assortment of cars was on display"; "he had a variety of disorders"; "a veritable smorgasbord of religions"
+21947,assumed_name fictitious_name Doing_Business_As DBA,(law) a name under which a corporation conducts business that is not the legal name of the corporation as shown in its articles of incorporation
+21948,assumption,the act of assuming or taking for granted; "your assumption that I would agree was unwarranted"
+21949,assumption laying_claim,the act of taking possession of or power over something; "his assumption of office coincided with the trouble in Cuba"; "the Nazi assumption of power in 1934"; "he acquired all the company's assets for ten million dollars and the assumption of the company's debts"
+21950,assumption supposition supposal,a hypothesis that is taken for granted; "any society is built upon certain assumptions"
+21951,assurance,a British term for some kinds of insurance
+21952,assurance,a statement intended to inspire confidence; "the President's assurances were not respected"
+21953,assurance pledge,a binding commitment to do or give or refrain from something; "an assurance of help when needed"; "signed a pledge never to reveal the secret"
+21954,assurance self-assurance confidence self-confidence authority sureness,freedom from doubt; belief in yourself and your abilities; "his assurance in his superiority did not make him popular"; "after that failure he lost his confidence"; "she spoke with authority"
+21955,astasia,inability to stand due to muscular incoordination
+21956,astatic_coils,an arrangement of coils used in sensitive electrical instruments; the coils are arranged to give zero resultant external magnetic field when a current passes through them and to have zero electromotive force induced in them by an external magnetic field
+21957,astatic_galvanometer,has a moving magnet and astatic coils arranged to cancel the effect of the Earth's magnetic field
+21958,astatine At atomic_number_85,a highly unstable radioactive element (the heaviest of the halogen series); a decay product of uranium and thorium
+21959,aster,any of various chiefly fall-blooming herbs of the genus Aster with showy daisylike flowers
+21960,aster,star-shaped structure formed in the cytoplasm of a cell having fibers like rays that surround the centrosome during mitosis
+21961,astereognosis tactile_agnosia,a loss of the ability to recognize objects by handling them
+21962,asterid_dicot_family,family of more or less advanced dicotyledonous herbs and some trees and shrubs
+21963,asterid_dicot_genus,genus of more or less advanced dicotyledonous herbs and some trees and shrubs
+21964,asterion,the craniometric point at the junction of the lamboid suture and the occipitomastoid suture and the parietomastoid suture
+21965,asterisk star,a star-shaped character * used in printing
+21966,asterism,(mineralogy) a star-shaped figure with six rays that is seen in some crystal structures under reflected or transmitted light
+21967,asterism,(astronomy) a cluster of stars (or a small constellation)
+21968,asteroid,any of numerous small celestial bodies composed of rock and metal that move around the sun (mainly between the orbits of Mars and Jupiter)
+21969,asteroid_belt,the region of interplanetary space between Mars and Jupiter where most asteroids are found
+21970,asthenia astheny,an abnormal loss of strength
+21971,asthenic_type ectomorphy,slender, weak, and lightweight
+21972,asthenosphere,the lower layer of the crust
+21973,asthma asthma_attack bronchial_asthma,respiratory disorder characterized by wheezing; usually of allergic origin
+21974,asthmatic,a person suffering from asthma; "she is a chronic asthmatic"; "the painful gasps of a dying asthmatic"
+21975,astigmatism astigmia,(ophthalmology) impaired eyesight resulting usually from irregular conformation of the cornea; common in nearsighted people
+21976,astigmatism astigmia,(optics) defect in an optical system in which light rays from a single point fail to converge in a single focal point
+21977,astilbe,any plant of the genus Astilbe having compound leaves and showy panicles of tiny colorful flowers
+21978,astonishment amazement,the feeling that accompanies something extremely surprising; "he looked at me in astonishment"
+21979,astrakhan,the fur of young lambs
+21980,astrantia masterwort,any plant of the genus Astrantia
+21981,astraphobia,a morbid fear of thunder and lightning
+21982,astringency astringence,a sharp astringent taste; the taste experience when a substance causes the mouth to pucker
+21983,astringency stypsis,the ability to contract or draw together soft body tissues to check blood flow or restrict secretion of fluids
+21984,astringent astringent_drug styptic,a drug that causes contraction of body tissues and canals
+21985,astrocyte,comparatively large neuroglial cell
+21986,astrodome,a transparent dome on top of an airplane where the navigator can make celestial observations
+21987,astrodynamics,the branch of astronomy that studies the motion of natural and artificial bodies in space
+21988,astrogator,the navigator of a spacecraft
+21989,astroglia macroglia,tissue consisting of large stellate neuroglial cells
+21990,astrolabe,an early form of sextant
+21991,astrolatry worship_of_heavenly_bodies,the worship of planets or stars
+21992,astrologer astrologist,someone who predicts the future by the positions of the planets and sun and Moon
+21993,astrology star_divination,a pseudoscience claiming divination by the positions of the planets and sun and moon
+21994,astrometry,the branch of astronomy that deals with the measurement of the position and motion of celestial bodies
+21995,astronaut spaceman cosmonaut,a person trained to travel in a spacecraft; "the Russians called their astronauts cosmonauts"
+21996,astronomer uranologist stargazer,a physicist who studies astronomy
+21997,astronomical_telescope,any telescope designed to collect and record electromagnetic radiation from cosmic sources
+21998,astronomy uranology,the branch of physics that studies celestial bodies and the universe as a whole
+21999,astronomy_satellite,a satellite equipped with a telescope to observe infrared radiation
+22000,astronomy_unit,a linear unit used for astronomical distances
+22001,astrophysicist,an astronomer who studies the physical properties of celestial bodies
+22002,astrophysics,the branch of astronomy concerned with the physical and chemical properties of celestial bodies
+22003,astuteness profundity profoundness depth deepness,the intellectual ability to penetrate deeply into ideas
+22004,asymmetry dissymmetry imbalance,(mathematics) a lack of symmetry
+22005,asymptote,a straight line that is the limiting value of a curve; can be considered as tangent at infinity; "the asymptote of the curve"
+22006,asynchronism asynchrony desynchronization desynchronisation desynchronizing,the relation that exists when things occur at unrelated times; "the stimulus produced a desynchronizing of the brain waves"
+22007,asynchronous_operation,operations that occur without a regular or predictable time relation to other events
+22008,asynchronous_transfer_mode ATM,a means of digital communications that is capable of very high speeds; suitable for transmission of images or voice or video as well as data; "ATM is used for both LAN and WAN"
+22009,asynclitism obliquity,the presentation during labor of the head of the fetus at an abnormal angle
+22010,asyndeton,the omission of conjunctions where they would normally be used
+22011,asynergy asynergia,absence of coordination of organs or body parts that usually work together harmoniously
+22012,asystole cardiac_arrest cardiopulmonary_arrest,absence of systole; failure of the ventricles of the heart to contract (usually caused by ventricular fibrillation) with consequent absence of the heart beat leading to oxygen lack and eventually to death
+22013,at,100 at equal 1 kip in Laos
+22014,at_home,a reception held in your own home
+22015,atactic_abasia ataxic_abasia,abasia due to ataxia of the legs
+22016,ataraxia,peace of mind
+22017,atavism reversion throwback,a reappearance of an earlier characteristic
+22018,atavist throwback,an organism that has the characteristics of a more primitive type of that organism
+22019,ataxia ataxy dyssynergia motor_ataxia,inability to coordinate voluntary muscle movements; unsteady movements and staggering gait
+22020,atelectasis,collapse of an expanded lung (especially in infants); also failure of pulmonary alveoli to expand at birth
+22021,ateleiosis ateliosis,a form of infantilism characterized by physical underdevelopment but normal intelligence
+22022,atenolol Tenormin,an oral beta blocker (trade name Tenormin) used in treating hypertension and angina; has adverse side effects (depression and exacerbation of congestive heart failure etc.)
+22023,athanor,a furnace that feeds itself so as to maintain a uniform temperature; used by alchemists
+22024,atheism,a lack of belief in the existence of God or gods
+22025,atheist,someone who does not believe in the existence of a god
+22026,athenaeum atheneum,a literary or scientific association for the promotion of learning
+22027,athenaeum atheneum,a place where reading materials are available
+22028,atherogenesis,the formation of atheromas on the walls of the arteries as in atherosclerosis
+22029,atheroma,a fatty deposit in the intima (inner lining) of an artery; can obstruct blood flow
+22030,atherosclerosis coronary_artery_disease,a stage of arteriosclerosis involving fatty deposits (atheromas) inside the arterial walls, thus narrowing the arteries
+22031,athetosis,a continuous succession of slow, writhing, involuntary movements of the hands and feet and other body parts
+22032,athlete jock,a person trained to compete in sports
+22033,athlete's_heart,enlarged heart commonly found among athletes trained for endurance
+22034,athletic_contest athletic_competition athletics,a contest between athletes
+22035,athletic_facility,a facility for athletic events
+22036,athletic_game,a game involving athletic activity
+22037,athletic_sock sweat_sock varsity_sock,a sock worn for athletic events
+22038,athletic_supporter supporter suspensor jockstrap jock,a support for the genitals worn by men engaging in strenuous exercise
+22039,athletic_training,the course of practice and exercise and diet undertaken by an athlete
+22040,athletic_type mesomorphy,muscular and big-boned
+22041,athleticism strenuosity,intense energy; "his music is characterized by a happy athleticism"
+22042,athletics,participation in sports events as an extracurricular activity
+22043,atlas atlas_vertebra,the 1st cervical vertebra
+22044,atlas book_of_maps map_collection,a collection of maps in book form
+22045,atlas telamon,a figure of a man used as a supporting column
+22046,atlas_moth Atticus_atlas,giant saturniid moth widespread in Asia; sometimes cultured for silk
+22047,atmometer evaporometer,an instrument that measures rate of evaporation of water
+22048,atmosphere,the envelope of gases surrounding any celestial body
+22049,atmosphere air,the mass of air surrounding the Earth; "there was great heat as the comet entered the atmosphere"; "it was exposed to the air"
+22050,atmosphere ambiance ambience,a particular environment or surrounding influence; "there was an atmosphere of excitement"
+22051,atmosphere atmospheric_state,the weather or climate at some place; "the atmosphere was thick with fog"
+22052,atmospheric_electricity,electrical discharges in the atmosphere
+22053,atmospheric_phenomenon,a physical phenomenon associated with the atmosphere
+22054,atmospheric_pressure air_pressure pressure,the pressure exerted by the atmosphere
+22055,atole,eaten as mush or as a thin gruel
+22056,atoll,an island consisting of a circular coral reef surrounding a lagoon
+22057,atom,(physics and chemistry) the smallest component of an element having the chemical properties of the element
+22058,atom molecule particle corpuscle mote speck,(nontechnical usage) a tiny piece of anything
+22059,atom_bomb atomic_bomb A-bomb fission_bomb plutonium_bomb,a nuclear weapon in which enormous energy is released by nuclear fission (splitting the nuclei of a heavy element like uranium 235 or plutonium 239)
+22060,atomic_clock,a timepiece that derives its time scale from the vibration of atoms or molecules
+22061,atomic_cocktail,an oral dose of radioactive substance used in treatment and diagnosis of cancer
+22062,atomic_energy nuclear_energy,the energy released by a nuclear reaction
+22063,atomic_mass atomic_weight relative_atomic_mass,(chemistry) the mass of an atom of a chemical element expressed in atomic mass units
+22064,atomic_mass_unit,unit of mass for expressing masses of atoms or molecules
+22065,atomic_number,the order of an element in Mendeleyev's table of the elements; equal to the number of protons in the nucleus or electrons in the neutral state of an atom of an element
+22066,atomic_pile atomic_reactor pile chain_reactor,a nuclear reactor that uses controlled nuclear fission to generate energy
+22067,atomic_power nuclear_power,nuclear energy regarded as a source of electricity for the power grid (for civilian use)
+22068,atomic_spectrum,(physics) a spectrum of radiation caused by electron transitions within an atom; the series of spectrum lines is characteristic of the element
+22069,atomic_theory,a theory of the structure of the atom
+22070,atomic_warhead nuclear_warhead thermonuclear_warhead nuke,the warhead of a missile designed to deliver an atom bomb
+22071,atomism,(psychology) a theory that reduces all mental phenomena to simple elements (sensations and feelings) that form complex ideas by association
+22072,atomism atomic_theory atomist_theory atomistic_theory,(chemistry) any theory in which all matter is composed of tiny discrete finite indivisible indestructible particles; "the ancient Greek philosophers Democritus and Epicurus held atomic theories of the universe"
+22073,atomization atomisation,annihilation by reducing something to atoms
+22074,atomization atomisation fragmentation,separating something into fine particles
+22075,atomizer atomiser spray sprayer nebulizer nebuliser,a dispenser that turns a liquid (such as perfume) into a fine mist
+22076,atonality atonalism,the absence of a key; alternative to the diatonic system
+22077,atonement expiation satisfaction,compensation for a wrong; "we were unable to get satisfaction from the local store"
+22078,atonicity atony atonia amyotonia,lack of normal muscular tension or tonus
+22079,atopic_dermatitis atopic_eczema,a severe form of dermatitis characterized by atopy
+22080,atopognosia atopognosis,absence or loss of topognosia; inability to locate correctly a point of touch
+22081,atorvastatin Lipitor,an oral drug (trade name Lipitor) that is effective in lowering triglycerides; potent in reducing LDL cholesterol because higher doses can be given
+22082,atrazine,a synthetic compound derived from triazine that is widely used as an agricultural herbicide; "atrazine is thought to cause cancer and is banned in some European countries"
+22083,atresia,an abnormal condition in which a normal opening or tube in the body (as the urethra) is closed or absent
+22084,atrial_artery,the branch of the coronary artery that supplies the muscles of the atria
+22085,atrial_fibrillation,fibrillation of the muscles of the atria of the heart
+22086,atrial_septal_defect,an abnormal opening between the left and right atria of the heart
+22087,atrioventricular_bundle bundle_of_His atrioventricular_trunk truncus_atrioventricularis,a bundle of modified heart muscle that transmits the cardiac impulse from the atrioventricular node to the ventricles causing them to contract
+22088,atrioventricular_nodal_rhythm nodal_rhythm,the normal cardiac rhythm when the heart is controlled by the atrioventricular node
+22089,atrioventricular_node,a node of specialized heart muscle located in the septal wall of the right atrium; receives impulses from the sinoatrial node and transmits them to atrioventricular bundle
+22090,atrioventricular_valve,either of two heart valves through which blood flows from the atria to the ventricles; prevents return of blood to the atrium
+22091,atrium,any chamber that is connected to other chambers or passageways (especially one of the two upper chambers of the heart)
+22092,atrium,the central area in a building; open to the sky
+22093,atrium_cordis atrium_of_the_heart,the upper chamber of each half of the heart
+22094,atrocity atrociousness barbarity barbarousness heinousness,the quality of being shockingly cruel and inhumane
+22095,atrocity inhumanity,an act of atrocious cruelty
+22096,atrophy wasting wasting_away,a decrease in size of an organ caused by disease or disuse
+22097,atrophy withering,any weakening or degeneration (especially through lack of use)
+22098,atropine,a poisonous crystalline alkaloid extracted from the nightshade family; used as an antispasmodic and to dilate the eye pupil; also administered in large amounts as an antidote for organophosphate nerve agents or organophosphate insecticides
+22099,attache,a specialist assigned to the staff of a diplomatic mission
+22100,attache_case attache,a shallow and rectangular briefcase
+22101,attachment,a writ authorizing the seizure of property that may be needed for the payment of a judgment in a judicial proceeding
+22102,attachment,a supplementary part or accessory
+22103,attachment adherence adhesion,faithful support for a cause or political party or religion; "attachment to a formal agenda"; "adherence to a fat-free diet"; "the adhesion of Seville was decisive"
+22104,attachment affixation,the act of attaching or affixing something
+22105,attachment bond,a connection that fastens things together
+22106,attachment fond_regard,a feeling of affection for a person or an institution
+22107,attack,a sudden occurrence of an uncontrollable condition; "an attack of diarrhea"
+22108,attack,the onset of a corrosive or destructive process (as by a chemical agent); "the film was sensitive to attack by acids"; "open to attack by the elements"
+22109,attack,strong criticism; "he published an unexpected attack on my work"
+22110,attack,an offensive move in a sport or game; "they won the game with a 10-hit attack in the 9th inning"
+22111,attack attempt,the act of attacking; "attacks on women increased last year"; "they made an attempt on his life"
+22112,attack onslaught onset onrush,(military) an offensive against an enemy (using weapons); "the attack began at dawn"
+22113,attack tone-beginning,a decisive manner of beginning a musical tone or phrase
+22114,attack_dog,a watchdog trained to attack on command
+22115,attack_submarine,a military submarine designed and armed to attack enemy shipping
+22116,attacker aggressor assailant assaulter,someone who attacks
+22117,attainder civil_death,cancellation of civil rights
+22118,attainment,the act of achieving an aim; "the attainment of independence"
+22119,attainment,arrival at a new stage; "his attainment of puberty was delayed by malnutrition"
+22120,attar atar athar ottar,essential oil or perfume obtained from flowers
+22121,attar_of_roses rose_oil,a volatile fragrant oil obtained from fresh roses by steam distillation
+22122,attempt effort endeavor endeavour try,earnest and conscientious activity intended to do or accomplish something; "made an effort to cover all the reading material"; "wished him luck in his endeavor"; "she gave it a good try"
+22123,attendance,the frequency with which a person is present; "a student's attendance is an important factor in her grade"
+22124,attendance,the number of people that are present; "attendance was up by 50 per cent"
+22125,attendance attending,the act of being present (at a meeting or event etc.)
+22126,attendance_check,a call of students' names in a classroom
+22127,attendant attender attendee meeter,a person who is present and participates in a meeting; "he was a regular attender at department meetings"; "the gathering satisfied both organizers and attendees"
+22128,attendant attender tender,someone who waits on or tends to or attends to the needs of another
+22129,attention,a general interest that leads people to want to know more; "She was the center of attention"
+22130,attention,the faculty or power of mental concentration; "keeping track of all the details requires your complete attention"
+22131,attention,a motionless erect stance with arms at the sides and feet together; assumed by military personnel during drill or review; "the troops stood at attention"
+22132,attention,a courteous act indicating affection; "she tried to win his heart with her many attentions"
+22133,attention attending,the process whereby a person concentrates on some features of the environment to the (relative) exclusion of others
+22134,attention_deficit_disorder ADD attention_deficit_hyperactivity_disorder ADHD hyperkinetic_syndrome minimal_brain_dysfunction minimal_brain_damage MBD,a condition (mostly in boys) characterized by behavioral and learning disorders
+22135,attention_span,the length of time you can concentrate on some idea or activity
+22136,attentiveness,the trait of being considerate and thoughtful of others
+22137,attentiveness,the trait of being observant and paying attention
+22138,attentiveness heed regard paying_attention,paying particular notice (as to children or helpless people); "his attentiveness to her wishes"; "he spends without heed to the consequences"
+22139,attenuation,the property of something that has been weakened or reduced in thickness or density
+22140,attenuation fading,weakening in force or intensity; "attenuation in the volume of the sound"
+22141,attenuator,an electrical device for attenuating the strength of an electrical signal
+22142,attestation,the action of bearing witness
+22143,attestation,the evidence by which something is attested
+22144,attestation_service attestation_report,a consulting service in which a CPA expresses a conclusion about the reliability of a written statement that is the responsibility of someone else
+22145,attester attestant,someone who affirms or vouches for the correctness or truth or genuineness of something
+22146,attic,(architecture) a low wall at the top of the entablature; hides the roof
+22147,attic bean bonce noodle noggin dome,informal terms for a human head
+22148,attic_fan,a fan that blows heated air out of the attic of a building
+22149,attire garb dress,clothing of a distinctive style or for a particular occasion; "formal attire"; "battle dress"
+22150,attitude,position of aircraft or spacecraft relative to a frame of reference (the horizon or direction of motion)
+22151,attitude,a theatrical pose created for effect; "the actor struck just the right attitude"
+22152,attitude mental_attitude,a complex mental state involving beliefs and feelings and values and dispositions to act in certain ways; "he had the attitude that work was fun"
+22153,attorney-client_privilege,the right of a lawyer to refuse to divulge confidential information from his client
+22154,attorney_general,the chief law officer of a country or state
+22155,attorneyship,the position of attorney
+22156,attosecond,one quintillionth (10^-18) of a second; one thousandth of a femtosecond
+22157,attraction,an entertainment that is offered to the public
+22158,attraction attractive_force,the force by which one object attracts another
+22159,attraction attractiveness,the quality of arousing interest; being attractive or something that attracts; "her personality held a strange attraction for him"
+22160,attraction attractor attracter attractive_feature magnet,a characteristic that provides pleasure and attracts; "flowers are an attractor for bees"
+22161,attractive_nuisance,anything on your premises that might attract children into danger or harm; "their swimming pool is an attractive nuisance; they should fence it in"
+22162,attractiveness,sexual allure
+22163,attractor attracter,(physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system
+22164,attribute,an abstraction belonging to or characteristic of an entity
+22165,attribution ascription,assigning some quality or character to a person or thing; "the attribution of language to birds"; "the ascription to me of honors I had not earned"
+22166,attribution ascription,assigning to a cause or source; "the attribution of lighting to an expression of God's wrath"; "he questioned the attribution of the painting to Picasso"
+22167,attributive_genitive attributive_genitive_case,a word in the genitive case that is used as an attributive adjective; "an example of the attributive genetive is `John's' in `John's mother'"
+22168,attrition,a wearing down to weaken or destroy; "a war of attrition"
+22169,attrition,the act of rubbing together; wearing something down by friction
+22170,attrition contrition contriteness,sorrow for sin arising from fear of damnation
+22171,attrition_rate rate_of_attrition,the rate of shrinkage in size or number
+22172,atypical_pneumonia primary_atypical_pneumonia mycoplasmal_pneumonia,an acute respiratory disease marked by high fever and coughing; caused by mycoplasma; primarily affecting children and young adults
+22173,atypicality untypicality,any state that is not typical
+22174,au_pair,a young foreigner who lives with a family in return for doing light housework
+22175,au_pair_girl,a foreign girl serving as an au pair
+22176,auction auction_bridge,a variety of bridge in which tricks made in excess of the contract are scored toward game; now generally superseded by contract bridge
+22177,auction auction_sale vendue,the public sale of something to the highest bidder
+22178,auction_block block,a platform from which an auctioneer sells; "they put their paintings on the block"
+22179,auction_house,a firm that conducts auctions
+22180,auctioneer,an agent who conducts an auction
+22181,audacity audaciousness,aggressive boldness or unmitigated effrontery; "he had the audacity to question my decision"
+22182,audacity audaciousness temerity,fearless daring
+22183,audibility audibleness,quality or fact or degree of being audible or perceptible by the ear
+22184,audible,a football play is changed orally after both teams have assumed their positions at the line of scrimmage
+22185,audience,the part of the general public interested in a source of information or entertainment; "every artist needs an audience"; "the broadcast reached an audience of millions"
+22186,audience,a gathering of spectators or listeners at a (usually public) performance; "the audience applauded"; "someone in the audience began to cough"
+22187,audile,one whose mental imagery is auditory rather than visual or motor
+22188,audio,the sound elements of television
+22189,audio audio_frequency,an audible acoustic wave frequency
+22190,audio sound,the audible part of a transmitted signal; "they always raise the audio for commercials"
+22191,audio_CD audio_compact_disc,compact discs used to reproduce sound (voice and music)
+22192,audio_amplifier,an amplifier that increases the amplitude of reproduced sound
+22193,audio_lingual_acquisition,system of language acquisition focusing intensively on listening and speaking
+22194,audio_system sound_system,a system of electronic equipment for recording or reproducing sound
+22195,audiocassette,a cassette for audiotape
+22196,audiogram,a graphical representation of a person's auditory sensitivity to sound
+22197,audiology audiometry,the measurement of hearing
+22198,audiometer sonometer,an instrument used to measure the sensitivity of hearing
+22199,audiometry,measuring sensitivity of hearing
+22200,audiotape,a tape recording of sound
+22201,audiotape,magnetic tape for use in recording sound
+22202,audiovisual audiovisual_aid,materials using sight or sound to present information; "language tapes and videocassettes and other audiovisuals"
+22203,audit,a methodical examination or review of a condition or situation; "he made an audit of all the plants on his property"; "an energy efficiency audit"; "an email log audit"
+22204,audit_program audit_programme,a listing of audit procedures to be performed in completing an audit
+22205,audited_account audit,an inspection of the accounting procedures and records by a trained accountant or CPA
+22206,audition tryout,a test of the suitability of a performer
+22207,auditor,a student who attends a course but does not take it for credit
+22208,auditor,a qualified accountant who inspects the accounting records and practices of a business or other organization
+22209,auditorium,the area of a theater or concert hall where the audience sits
+22210,auditory_agnosia,inability to recognize or understand the meaning of spoken words
+22211,auditory_aphasia acoustic_aphasia word_deafness,an impairment in understanding spoken language that is not attributable to hearing loss
+22212,auditory_apparatus,all of the components of the organ of hearing including the outer and middle and inner ears
+22213,auditory_area auditory_cortex,the cortical area that receives auditory information from the medial geniculate body
+22214,auditory_center,the part of the brain (in a fold of the cerebral cortex of the temporal lobe on both sides of the brain) that receives impulses from the ear by way of the auditory nerve
+22215,auditory_communication,communication that relies on hearing
+22216,auditory_hallucination acousma,illusory auditory perception of strange nonverbal sounds
+22217,auditory_image,a mental image that is similar to an auditory perception
+22218,auditory_meatus acoustic_meatus ear_canal auditory_canal external_auditory_canal,either of the passages in the outer ear from the auricle to the tympanic membrane
+22219,auditory_ossicle,ossicles of the middle ear that transmit acoustic vibrations from the eardrum to the inner ear
+22220,auditory_perception sound_perception,the perception of sound as a meaningful phenomenon
+22221,auditory_system,the sensory system for hearing
+22222,augend,a number to which another number (the addend) is added
+22223,auger gimlet screw_auger wimble,hand tool for boring holes
+22224,augite,dark-green to black glassy mineral of the pyroxene group containing large amounts of aluminum and iron and magnesium
+22225,augmentation,the amount by which something increases
+22226,augmentation,the statement of a theme in notes of greater duration (usually twice the length of the original)
+22227,augmentation,the act of augmenting
+22228,augur auspex,(ancient Rome) a religious official who interpreted omens to guide public policy
+22229,augury sign foretoken preindication,an event that is experienced as indicating important things to come; "he hoped it was an augury"; "it was a sign from God"
+22230,auk,black-and-white short-necked web-footed diving bird of northern seas
+22231,auklet,any of several small auks of the northern Pacific coasts
+22232,auld_langsyne langsyne old_times good_old_days,past times remembered with nostalgia
+22233,aunt auntie aunty,the sister of your father or mother; the wife of your uncle
+22234,aura,a sensation (as of a cold breeze or bright light) that precedes the onset of certain disorders such as a migraine attack or epileptic seizure
+22235,aura aureole halo nimbus glory gloriole,an indication of radiant light drawn around the head of a saint
+22236,aureole corona,the outermost region of the sun's atmosphere; visible as a white halo during a solar eclipse
+22237,auricle atrial_auricle auricula_atrii,a small conical pouch projecting from the upper anterior part of each atrium of the heart
+22238,auricle pinna ear,the externally visible cartilaginous structure of the external ear
+22239,auricula auricular_appendage auricular_appendix,a pouch projecting from the top front of each atrium of the heart
+22240,auricula bear's_ear Primula_auricula,yellow-flowered primrose native to Alps; commonly cultivated
+22241,auricular_artery arteria_auricularis,artery that supplies blood to the ear
+22242,auricular_vein vena_auricularis,one of two veins serving the ear region
+22243,auriculare auricular_point,the craniometric point at the center of the opening of the external acoustic meatus
+22244,aurochs urus Bos_primigenius,large recently extinct long-horned European wild ox; considered one of the ancestors of domestic cattle
+22245,aurora,an atmospheric phenomenon consisting of bands of light caused by charged solar particles following the earth's magnetic lines of force
+22246,aurora_australis southern_lights,the aurora of the southern hemisphere
+22247,aurora_borealis northern_lights,the aurora of the northern hemisphere
+22248,auscultation,listening to sounds within the body (usually with a stethoscope)
+22249,auspice,a favorable omen
+22250,auspices protection aegis,kindly endorsement and guidance; "the tournament was held under the auspices of the city council"
+22251,auspiciousness propitiousness,the favorable quality of strongly indicating a successful result
+22252,austenite,a solid solution of ferric carbide or carbon in iron; cools to form pearlite or martensite
+22253,austenitic_steel,steel that has enough nickel and chromium or manganese to retain austenite at atmospheric temperatures
+22254,austereness severity severeness,extreme plainness
+22255,austerity asceticism nonindulgence,the trait of great self-denial (especially refraining from worldly pleasures)
+22256,austral,the basic unit of money in Argentina; equal to 100 centavos
+22257,australopithecine,any of several extinct humanlike bipedal primates with relatively small brains of the genus Australopithecus; from 1 to 4 million years ago
+22258,autacoid autocoid,any physiologically active internal secretion especially one of uncertain classification
+22259,autarky autarchy,economic independence as a national policy
+22260,auteur,a filmmaker who has a personal style and keeps creative control over his or her works
+22261,authentication certification,validating the authenticity of something or someone
+22262,authentication hallmark assay-mark,a mark on an article of trade to indicate its origin and authenticity
+22263,authenticity genuineness legitimacy,undisputed credibility
+22264,authoress,a woman author
+22265,authoring_language,software that can be used to develop interactive computer programs without the technically demanding task of computer programming
+22266,authoritarian dictator,a person who behaves in a tyrannical manner; "my boss is a dictator who makes everyone work overtime"
+22267,authoritarian_state authoritarian_regime,a government that concentrates political power in an authority not responsible to the people
+22268,authority,(usually plural) persons who exercise (administrative) control over others; "the authorities have issued a curfew"
+22269,authority,an expert whose views are taken as definitive; "he is an authority on corporate law"
+22270,authority,an authoritative written work; "this book is the final authority on the life of Milton"
+22271,authority authorization authorisation potency dominance say-so,the power or right to give orders or make decisions; "he has the authority to issue warrants"; "deputies are given authorization to make arrests"; "a place of potency in the state"
+22272,authority authorization authorisation sanction,official permission or approval; "authority for the program was renewed several times"
+22273,authority_figure,someone who is regarded as an authority by someone else
+22274,authorization authorisation empowerment,the act of conferring legality or sanction or formal warrant
+22275,authorized_shares authorized_stock capital_stock,the maximum number of shares authorized under the terms of a corporation's articles of incorporation
+22276,authorizer authoriser,an authority who authorizes (people or actions); "the agents report back to their authorizers"
+22277,authorship paternity,the act of initiating a new idea or theory or writing; "the authorship of the theory is disputed"
+22278,autism,(psychiatry) an abnormal absorption with the self; marked by communication disorders and short attention span and inability to treat others as people
+22279,auto-da-fe,the burning to death of heretics (as during the Spanish Inquisition)
+22280,auto_accessory,an accessory for an automobile
+22281,auto_limitation,social control achieved as a manifestation of self-will or general consent
+22282,auto_mechanics,the craft of building and repairing automobiles
+22283,auto_part car_part,a component of an automobile; "his business is auto parts"
+22284,auto_racing car_racing,the sport of racing automobiles
+22285,autoantibody,an antibody acting against tissues of the organism that produces it
+22286,autobahn,an expressway in a German-speaking country
+22287,autobiographer,someone who writes their own biography
+22288,autobiography,a biography of yourself
+22289,autocatalysis,catalysis in which the catalyst is one of the products of the reaction
+22290,autochthon,the earliest known inhabitants of a region
+22291,autoclave sterilizer steriliser,a device for heating substances above their boiling point; used to manufacture chemicals or to sterilize surgical instruments
+22292,autocracy,a political theory favoring unlimited authority by a single individual
+22293,autocracy autarchy,a political system governed by a single individual
+22294,autodidact,a person who has taught himself
+22295,autoeroticism autoerotism,using you own body as a sexual object
+22296,autofluorescence,self-induced fluorescence
+22297,autofocus,an optical device for focussing a camera or other instrument automatically
+22298,autogamy,self-fertilization in plants
+22299,autogenic_therapy autogenic_training autogenics,training patients in self-induced relaxation
+22300,autogiro autogyro gyroplane,an aircraft that is supported in flight by unpowered rotating horizontal wings (or blades); forward propulsion is provided by a conventional propeller
+22301,autograft autoplasty,tissue that is taken from one site and grafted to another site on the same person; "skin from his thigh replaced the burned skin on his arms"
+22302,autograph,something written by one's own hand
+22303,autograph John_Hancock,a person's own signature
+22304,autograph_album,an album for autographs
+22305,autoimmune_disease autoimmune_disorder,any of a large group of diseases characterized by abnormal functioning of the immune system that causes your immune system to produce antibodies against your own tissues
+22306,autoimmunity,production of antibodies against the tissues of your own body; produces autoimmune disease or hypersensitivity reactions
+22307,autoinjector,a hypodermic syringe to use in injecting yourself with a liquid; "United States troops now carry atropine and autoinjectors in their first-aid kits to use in case of organophosphate nerve agent poisoning"
+22308,autoloader self-loader,a firearm that reloads itself
+22309,autolysis self-digestion,lysis of plant or animal tissue by an internal process
+22310,automat,a vending machine from which you can get food
+22311,automat,a cafeteria where food is served from machines
+22312,automatic_choke,a choke that automatically controls the flow of air to the carburetor
+22313,automatic_data_processing ADP,data processing by a computer
+22314,automatic_firearm automatic_gun automatic_weapon,a firearm that reloads itself and keeps firing until the trigger is released
+22315,automatic_pilot autopilot,a cognitive state in which you act without self-awareness; "she went about her chores on automatic pilot"; "too much of the writing seems to have been done on automatic pilot"; "she talked and he dozed and my mind went on autopilot"
+22316,automatic_pistol automatic,a pistol that will keep firing until the ammunition is gone or the trigger is released
+22317,automatic_rifle automatic machine_rifle,light machine gun
+22318,automatic_transmission automatic_drive,a transmission that automatically changes the gears according to the speed of the car
+22319,automation,the condition of being automatically operated or controlled; "automation increases productivity"
+22320,automation,equipment used to achieve automatic control or operation; "this factory floor is a showcase for automation and robotic equipment"
+22321,automation mechanization mechanisation,the act of implementing the control of equipment with advanced technology; usually involving electronic hardware; "automation replaces human workers by machines"
+22322,automatism,any reaction that occurs automatically without conscious thought or reflection (especially the undirected behavior seen in psychomotor epilepsy)
+22323,automaton robot golem,a mechanism that can move automatically
+22324,automaton zombi zombie,someone who acts or responds in a mechanical or apathetic way; "only an automaton wouldn't have noticed"
+22325,automobile_engine,the engine that propels an automobile
+22326,automobile_factory auto_factory car_factory,a factory where automobiles are manufactured
+22327,automobile_horn car_horn motor_horn horn hooter,a device on an automobile for making a warning noise
+22328,automobile_industry,the manufacturers of automobiles considered collectively
+22329,automobile_insurance car_insurance,insurance against loss due to theft or traffic accidents
+22330,automobile_loan auto_loan car_loan,a personal loan to purchase an automobile
+22331,automobile_mechanic auto-mechanic car-mechanic mechanic grease_monkey,someone whose occupation is repairing and maintaining automobiles
+22332,automobile_race auto_race car_race,a race between (usually high-performance) automobiles
+22333,automobile_traffic car_traffic,cars coming and going
+22334,automotive_engineer,an engineer concerned with the design and construction of automobiles
+22335,automotive_technology automotive_engineering,the activity of designing and constructing automobiles
+22336,automysophobia,a morbid fear of being dirty
+22337,autonomic_ganglion,any of the ganglia of the autonomic system whose unmyelinated fibers innervate the internal organs
+22338,autonomic_nervous_system ANS,the part of the nervous system of vertebrates that controls involuntary actions of the smooth muscles and heart and glands
+22339,autonomic_plexus plexus_autonomici,a plexus of sympathetic and parasympathetic nerve fibers
+22340,autonomy liberty,immunity from arbitrary exercise of authority: political independence
+22341,autonomy self-direction self-reliance self-sufficiency,personal independence
+22342,autophyte autophytic_plant autotroph autotrophic_organism,plant capable of synthesizing its own food from simple organic substances
+22343,autopilot automatic_pilot robot_pilot,a navigational device that automatically keeps ships or planes or spacecraft on a steady course
+22344,autoplasty,surgical repair by using tissue from another part of the patient's own body
+22345,autopsy necropsy postmortem post-mortem PM postmortem_examination post-mortem_examination,an examination and dissection of a dead body to determine cause of death or the changes produced by disease
+22346,autoradiograph,a radiogram produced by radiation emitted by the specimen being photographed
+22347,autoradiography,producing a radiograph by means of the radiation emitted from the specimen being photographed
+22348,autoregulation,(physiology) processes that maintain a generally constant physiological state in a cell or organism
+22349,autosexing,(especially of domestic fowl) breeding to reveal differential sex characteristics at hatching
+22350,autosomal_dominant_disease autosomal_dominant_disorder,a disease caused by a dominant mutant gene on an autosome
+22351,autosomal_recessive_disease autosomal_recessive_defect,a disease caused by the presence of two recessive mutant genes on an autosome
+22352,autosome somatic_chromosome,any chromosome that is not a sex chromosome; appear in pairs in body cells but as single chromosomes in spermatozoa
+22353,autostrada,an expressway in an Italian-speaking country
+22354,autosuggestion auto-suggestion self-suggestion,a system for self-improvement developed by Emile Coue which was popular in the 1920s and 1930s
+22355,autotelism,belief that a work of art is an end in itself or its own justification
+22356,autotomy,spontaneous removal or casting off of a body part (as the tail of a lizard or claw of a lobster) especially when the organism is injured or under attack
+22357,autotype autotypy,process for producing permanent prints in a carbon pigment
+22358,autumn_crocus meadow_saffron naked_lady Colchicum_autumnale,bulbous autumn-flowering herb with white, purple or lavender-and-white flowers; native to western and central Europe
+22359,autumn_sneezeweed Helenium_autumnale,North American perennial with bright yellow late summer flowers
+22360,autumnal_equinox,(astronomy) the equinoctial point that lies in the constellation of Virgo
+22361,autumnal_equinox September_equinox fall_equinox,September 22
+22362,auxesis,growth from increase in cell size without cell division
+22363,auxiliary_airfield,an airfield that functions in a subsidiary capacity
+22364,auxiliary_boiler donkey_boiler,(nautical) an extra boiler (as a ship's boiler that is used while the ship is in port)
+22365,auxiliary_cell,a terrorist cell responsible for logistics; usually large and less compartmentalized than other terrorist cells
+22366,auxiliary_engine donkey_engine,(nautical) a small engine (as one used on board ships to operate a windlass)
+22367,auxiliary_operation off-line_operation,a operation performed by off-line equipment not under the control of the central processing unit
+22368,auxiliary_pump donkey_pump,a supplementary pump available if needed
+22369,auxiliary_research_submarine,a submarine for research purposes
+22370,auxiliary_storage external_storage secondary_storage,a data storage device that is not the main memory of a computer
+22371,auxiliary_verb,a verb that combines with another verb in a verb phrase to help form tense, mood, voice, or condition of the verb it combines with
+22372,auxin,a plant hormone that promotes root formation and bud growth
+22373,avadavat amadavat,red Asian weaverbirds often kept as cage birds
+22374,avail help service,a means of serving; "of no avail"; "there's no help for it"
+22375,avalanche,a slide of large masses of snow and ice and mud down a mountain
+22376,avalanche,a sudden appearance of an overwhelming number of things; "the program brought an avalanche of mail"
+22377,avalanche_lily Erythronium_montanum,perennial herb having large white flowers marked with orange; found near the snow line in the northwestern United States
+22378,avant-garde vanguard van new_wave,any creative group active in the innovation and application of new concepts and techniques in a given field (especially in the arts)
+22379,avaram tanner's_cassia Senna_auriculata Cassia_auriculata,evergreen Indian shrub with vivid yellow flowers whose bark is used in tanning; sometimes placed in genus Cassia
+22380,avarice avariciousness covetousness cupidity,extreme greed for material wealth
+22381,avarice greed covetousness rapacity avaritia,reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)
+22382,avatar,the manifestation of a Hindu deity (especially Vishnu) in human or superhuman or animal form; "some Hindus consider Krishna to be an avatar of the god Vishnu"
+22383,avenger retaliator,someone who takes vengeance
+22384,avens,any of various perennials of the genus Geum having usually pinnate basal leaves and variously colored flowers
+22385,avenue,a line of approach; "they explored every avenue they could think of"; "it promises to open new avenues to understanding"
+22386,avenue boulevard,a wide street or thoroughfare
+22387,average,(sports) the ratio of successful performances to opportunities
+22388,average,an intermediate scale value regarded as normal or usual; "he is about average in height"; "the snowfall this month is below average"
+22389,average norm,a statistic describing the location of a distribution; "it set the norm for American homes"
+22390,average_cost,total cost for all units bought (or produced) divided by the number of units
+22391,averageness,the state of being that is average; indicates normality but with connotations of mediocrity
+22392,averageness mediocrity,ordinariness as a consequence of being average and not outstanding
+22393,aversion averting,the act of turning yourself (or your gaze) away; "averting her gaze meant that she was angry"
+22394,aversion_therapy,any technique of behavior modification that uses unpleasant stimuli in a controlled fashion to alter behavior in a therapeutic way; primarily used for alcoholism or drug abuse (but with little success)
+22395,aversive_conditioning,conditioning to avoid an aversive stimulus
+22396,aversive_stimulus,any negative stimulus to which an organism will learn to make a response that avoids it
+22397,averting,the act of preventing something from occurring; "averting danger was his responsibility"
+22398,aviary bird_sanctuary volary,a building where birds are kept
+22399,aviation,the operation of aircraft to provide transportation
+22400,aviation air_power,the aggregation of a country's military aircraft
+22401,aviation airmanship,the art of operating aircraft
+22402,aviator aeronaut airman flier flyer,someone who operates an aircraft
+22403,aviatrix airwoman aviatress,a woman aviator
+22404,avifauna,the birds of a particular region or period
+22405,avionics,science and technology of electronic systems and devices for aeronautics and astronautics; "avionics has become even more important with the development of the space program"
+22406,avitaminosis hypovitaminosis,any of several diseases caused by deficiency of one or more vitamins
+22407,avo,100 avos equal 1 pataca in Macao
+22408,avocado alligator_pear avocado_pear aguacate,a pear-shaped tropical fruit with green or blackish skin and rich yellowish pulp enclosing a single large seed
+22409,avocado avocado_tree Persea_Americana,tropical American tree bearing large pulpy green fruits
+22410,avocation by-line hobby pursuit sideline spare-time_activity,an auxiliary activity
+22411,avocet,long-legged web-footed black-and-white shorebird with slender upward-curving bill
+22412,avoidance turning_away shunning dodging,deliberately avoiding; keeping away from or preventing from happening
+22413,avoirdupois avoirdupois_weight,a system of weights based on the 16-ounce pound (or 7,000 grains)
+22414,avoirdupois_unit,any of the units of the avoirdupois system of weights
+22415,avowal avouchment affirmation,a statement asserting the existence or the truth of something
+22416,avower,someone who admits or acknowledges openly and boldly
+22417,avulsion,an abrupt change in the course of a stream that forms the boundary between two parcels of land resulting in the loss of part of the land of one landowner and a consequent increase in the land of another
+22418,avulsion,a forcible tearing or surgical separation of one body part from another
+22419,awakening wakening waking_up,the act of waking; "it was an early awakening"; "it was the waking up he hated most"
+22420,award accolade honor honour laurels,a tangible symbol signifying approval or distinction; "an award for bravery"
+22421,award awarding,a grant made by a law court; "he criticized the awarding of compensation by the court"
+22422,awareness consciousness cognizance cognisance knowingness,having knowledge of; "he had no awareness of his mistakes"; "his sudden consciousness of the problem he faced"; "their intelligence and general knowingness was impressive"
+22423,awareness sentience,state of elementary or undifferentiated consciousness; "the crash intruded on his awareness"
+22424,away_game road_game,a game played away from home
+22425,awayness,the state of being elsewhere than in particular place
+22426,awe,an overwhelming feeling of wonder or admiration; "he stared over the edge with a feeling of awe"
+22427,awfulness dreadfulness horridness terribleness,a quality of extreme unpleasantness
+22428,awkwardness clumsiness,the carriage of someone whose movements and posture are ungainly or inelegant
+22429,awkwardness clumsiness gracelessness stiffness,the inelegance of someone stiff and unrelaxed (as by embarrassment)
+22430,awkwardness clumsiness ineptness ineptitude maladroitness slowness,unskillfulness resulting from a lack of training
+22431,awkwardness cumbersomeness unwieldiness,trouble in carrying or managing caused by bulk or shape; "the movers cursed the unwieldiness of the big piano"
+22432,awkwardness nuisance_value,the quality of an embarrassing situation; "he sensed the awkwardness of his proposal"
+22433,awl,a pointed tool for marking surfaces or for punching small holes
+22434,awlwort Subularia_aquatica,small aquatic plant having tufted awl-shaped leaves in a basal rosette and minute white flowers; circumboreal
+22435,awn,slender bristlelike appendage found on the bracts of grasses
+22436,awning sunshade sunblind,a canopy made of canvas to shelter people or things from rain or sun
+22437,awnless_bromegrass Bromus_inermis,drought-resistant perennial with awns lacking or very short and long creeping rhizomes; Europe and temperate Asia
+22438,ax axe,an edge tool with a heavy bladed head mounted across a handle
+22439,ax_handle axe_handle,the handle of an ax
+22440,ax_head axe_head,the cutting head of an ax
+22441,axial_muscle,a skeletal muscle of the trunk or head
+22442,axial_rotation axial_motion roll,rotary motion of an object around its own axis; "wheels in axial rotation"
+22443,axial_skeleton,the part of the skeleton that includes the skull and spinal column and sternum and ribs
+22444,axil,the upper angle between an axis and an offshoot such as a branch or leafstalk
+22445,axile_placentation,ovules are borne at or around the center of a compound ovary on an axis formed from joined septa
+22446,axillary_artery arteria_axillaris,the part of the main artery of the arm that lies in the armpit and is continuous with the subclavian artery above and the brachial artery below
+22447,axillary_node,any of the lymph glands of the armpit; fights infections in the neck and chest and arm regions
+22448,axillary_vein vena_axillaris,a continuation of the basilic vein and brachial vein that becomes the subclavian vein
+22449,axiology,the study of values and value judgments
+22450,axiom,(logic) a proposition that is not susceptible of proof or disproof; its truth is assumed to be self-evident
+22451,axis,the main stem or central part about which plant organs or plant parts such as branches are arranged
+22452,axis,a straight line through a body or figure that satisfies certain conditions
+22453,axis axis_of_rotation,the center around which something rotates
+22454,axis axis_vertebra,the 2nd cervical vertebra; serves as a pivot for turning the head
+22455,axle,a shaft on which a wheel rotates
+22456,axle_bar,an iron bar that serves as an axletree
+22457,axle_grease,a thick heavy grease used to lubricate axles
+22458,axletree,a dead axle on a carriage or wagon that has terminal spindles on which the wheels revolve
+22459,axolemma,outer membrane covering an axon
+22460,axolotl mud_puppy Ambystoma_mexicanum,larval salamander of mountain lakes of Mexico that usually lives without metamorphosing
+22461,axon axone,long nerve fiber that conducts away from the cell body of the neuron
+22462,axseed crown_vetch Coronilla_varia,European herb resembling vetch; naturalized in the eastern United States; having umbels of pink-and-white flowers and sharp-angled pods
+22463,ayah,(in India) a native nursemaid who looks after children
+22464,ayapana Ayapana_triplinervis Eupatorium_aya-pana,low spreading tropical American shrub with long slender leaves used to make a mildly stimulating drink resembling tea; sometimes placed in genus Eupatorium
+22465,ayatollah,a high-ranking Shiite religious leader who is regarded as an authority on religious law and its interpretation and who has political power as well
+22466,aye-aye Daubentonia_madagascariensis,nocturnal lemur with long bony fingers and rodent-like incisor teeth closely related to the lemurs
+22467,ayin,the 16th letter of the Hebrew alphabet
+22468,azadirachtin,insecticide
+22469,azalea,any of numerous ornamental shrubs grown for their showy flowers of various colors
+22470,azathioprine Imuran,an immunosuppressive drug (trade name Imuran) used to prevent rejection of a transplanted organ
+22471,azide,a chemical compound containing the azido group combined with an element or radical
+22472,azido_group azido_radical,the univalent group N3- derived from hydrazoic acid
+22473,azimuth AZ,the azimuth of a celestial body is the angle between the vertical plane containing it and the plane of the meridian
+22474,azithromycin Zithromax,a systemic antibacterial medicine (trade name Zithromax) that is prescribed to treat bacterial infections in many different parts of the body
+22475,azo_dye,any dye containing one or more azo groups
+22476,azo_group azo_radical,the bivalent group -N=N- united to two hydrocarbon groups
+22477,azote,an obsolete name for nitrogen
+22478,azoturia,excess of urea in the urine
+22479,aztreonam Azactam,an antibiotic (trade name Azactam) used against severe infections; has minimal side effects
+22480,azure cerulean sapphire lazuline sky-blue,a light shade of blue
+22481,azure_aster,a variety of aster
+22482,azurite,blue carbonate of copper; blue malachite
+22483,azygos_vein azygous_vein vena_azygos,one of a system of veins that drain the thoracic and abdominal walls; arises as a continuation of the right ascending lumbar vein and terminates in the superior vena cava
+22484,azymia,absence of an enzyme
+22485,b-meson,exceedingly short-lived meson
+22486,baa,the cry made by sheep
+22487,baa-lamb,child's word for a sheep or lamb
+22488,baas,South African term for `boss'
+22489,baba,a small cake leavened with yeast
+22490,baba_au_rhum rum_baba,a baba soaked in rum
+22491,babassu babassu_palm coco_de_macao Orbignya_phalerata Orbignya_spesiosa Orbignya_martiana,tall feather palm of northern Brazil with hard-shelled nuts yielding valuable oil and a kind of vegetable ivory
+22492,babassu_nut,hard-shelled nut of the babassu palm
+22493,babassu_oil babacu_oil,fatty oil from kernels of babassu nuts similar to coconut oil
+22494,babbitting,lining a surface or bearing with Babbitt metal
+22495,babble babbling lallation,gibberish resembling the sounds of a baby
+22496,babbler cackler,any of various insectivorous Old World birds with a loud incessant song; in some classifications considered members of the family Muscicapidae
+22497,babel,a confusion of voices and other sounds
+22498,babirusa babiroussa babirussa Babyrousa_Babyrussa,Indonesian wild pig with enormous curved canine teeth
+22499,babka,a coffee cake flavored with orange rind and raisins and almonds
+22500,baboon,large terrestrial monkeys having doglike muzzles
+22501,babu baboo,used as a Hindi courtesy title; equivalent to English `Mr'
+22502,babushka,a woman's headscarf folded into a triangle and tied under the chin; worn by Russian peasant women
+22503,baby,an unborn child; a human fetus; "I felt healthy and very feminine carrying the baby"; "it was great to feel my baby moving about inside"
+22504,baby,the youngest member of a group (not necessarily young); "the baby of the family"; "the baby of the Supreme Court"
+22505,baby,a very young mammal; "baby rabbits"
+22506,baby,a project of personal concern to someone; "this project is his baby"
+22507,baby babe infant,a very young child (birth to 1 year) who has not yet begun to walk or talk; "the baby began to cry again"; "she held the baby in her arms"; "it sounds simple, but when you have your own baby it is all so different"
+22508,baby's_breath babies'-breath Gypsophila_paniculata,tall plant with small lance-shaped leaves and numerous tiny white or pink flowers
+22509,baby's_tears baby_tears Helxine_soleirolia Soleirolia_soleirolii,prostrate or creeping Corsican herb with moss-like small round short-stemmed leaves
+22510,baby_bed baby's_bed,a small bed for babies; enclosed by sides to prevent the baby from falling
+22511,baby_blue-eyes Nemophila_menziesii,delicate California annual having blue flowers marked with dark spots
+22512,baby_boom baby-boom_generation,the larger than expected generation in United States born shortly after World War II
+22513,baby_boomer boomer,a member of the baby boom generation in the 1950s; "they expanded the schools for a generation of baby boomers"
+22514,baby_buggy baby_carriage carriage perambulator pram stroller go-cart pushchair pusher,a small vehicle with four wheels in which a baby or child is pushed around
+22515,baby_buster buster,a person born in the generation following the baby boom when the birth rate fell dramatically
+22516,baby_doctor pediatrician pediatrist paediatrician,a specialist in the care of babies
+22517,baby_farmer,someone who runs an establishment that houses and cares for babies for a fee
+22518,baby_grand baby_grand_piano parlor_grand parlor_grand_piano parlour_grand parlour_grand_piano,a small grand piano
+22519,baby_oil,an ointment for babies
+22520,baby_powder,powder used to prevent a baby's diaper from chafing
+22521,baby_shoe,a shoe designed to be worn by infants
+22522,baby_talk babytalk,the developing speech of a young child
+22523,baby_talk babytalk motherese,an adult's imitation of the speech of a young child
+22524,babyminder baby_minder minder,a person who looks after babies (usually in the person's own home) while the babys' parents are working
+22525,babysitter baby-sitter sitter,a person engaged to care for children when the parents are not home
+22526,babysitting baby_sitting,the work of a baby sitter; caring for children when their parents are not home
+22527,baccalaureate,a farewell sermon to a graduating class at their commencement ceremonies
+22528,baccarat chemin_de_fer,a card game played in casinos in which two or more punters gamble against the banker; the player wins who holds 2 or 3 cards that total closest to nine
+22529,bacchant,(classical mythology) a priest or votary of Bacchus
+22530,bacchant bacchanal,a drunken reveller; a devotee of Bacchus
+22531,bacchante,(classical mythology) a priestess or votary of Bacchus
+22532,bachelor unmarried_man,a man who has never been married
+22533,bachelor's_degree baccalaureate,an academic degree conferred on someone who has successfully completed undergraduate studies
+22534,bachelor_girl bachelorette,a young unmarried woman who lives alone
+22535,bachelor_party,stag party held for a bachelor (usually on the night before he is married)
+22536,bachelorhood,the time of a man's life prior to marriage
+22537,bachelorhood,the state of being an unmarried man
+22538,bacillus B,aerobic rod-shaped spore-producing bacterium; often occurring in chainlike formations; found primarily in soil
+22539,bacitracin,a polypeptide antibiotic of known chemical structure effective against several types of Gram-positive organisms; usually applied locally
+22540,back,(football) a person who plays in the backfield
+22541,back,the part of a garment that covers the back of your body; "they pinned a `kick me' sign on his back"
+22542,back,(American football) the position of a player on a football team who is stationed behind the line of scrimmage
+22543,back backrest,a support that you can lean against while sitting; "the back of the dental chair was adjustable"
+22544,back dorsum,the posterior part of a human (or animal) body from the neck to the end of the spine; "his back was nicely tanned"
+22545,back rear,the part of something that is furthest from the normal viewer; "he stood at the back of the stage"; "it was hidden in the rear of the store"
+22546,back-formation,a word invented (usually unwittingly by subtracting an affix) on the assumption that a familiar word derives from it
+22547,back_brace,a brace worn to support the back
+22548,back_burner,reduced priority; "dozens of cases were put on the back burner"
+22549,back_channel,an alternative to the regular channels of communication that is used when agreements must be made secretly (especially in diplomacy or government); "they negotiated via a back channel"
+22550,back_circle,a feat in which an acrobat arches the back from a prone position and bends the knees until the toes touch the head
+22551,back_door backdoor,an undocumented way to get access to a computer system or the data it contains
+22552,back_door backdoor,a secret or underhand means of access (to a place or a position); "he got his job through the back door"
+22553,back_door backdoor back_entrance,an entrance at the rear of a building
+22554,back_exercise,exercise designed to strengthen the back muscles
+22555,back_judge,a football official
+22556,back_matter end_matter,written matter following the main text of a book
+22557,back_of_beyond,a very remote and inaccessible place; "you'd have to go to the back of beyond to find one of those"
+22558,back_porch,a porch for the back door
+22559,back_room,a room located in the rear of an establishment; usually accessible only to privileged groups
+22560,back_tooth posterior,a tooth situated at the back of the mouth
+22561,backache,an ache localized in the back
+22562,backband,a broad band that passes over the back of a horse and supports the shafts of a vehicle
+22563,backbeat,a loud steady beat
+22564,backbench,any of the seats occupied by backbenchers in the House of Commons
+22565,backbencher,a member of the House of Commons who is not a party leader
+22566,backbend,an acrobatic feat in which the trunk is bent backward from a standing position until the hands touch the floor
+22567,backblast back-blast,backfire from a recoilless weapon
+22568,backboard,a board used to support the back of someone or something
+22569,backboard basketball_backboard,a raised vertical board with basket attached; used to play basketball; "he banked the shot off the backboard"
+22570,backbone,the part of a network that connects other networks together; "the backbone is the part of a communication network that carries the heaviest traffic"
+22571,backbone grit guts moxie sand gumption,fortitude and determination; "he didn't have the guts to try it"
+22572,backdrop background backcloth,scenery hung at back of stage
+22573,backfield,the offensive football players who line up behind the linemen
+22574,backfire,a loud noise made by the explosion of fuel in the manifold or exhaust of an internal combustion engine
+22575,backfire,a fire that is set intentionally in order to slow an approaching forest fire or grassfire by clearing a burned area in its path
+22576,backfire boomerang,a miscalculation that recoils on its maker
+22577,backflow backflowing,a flow that returns toward its source
+22578,backgammon,a board game for two players; pieces move according to throws of the dice
+22579,backgammon_board,the board on which backgammon is played
+22580,background,relatively unimportant or inconspicuous accompanying situation; "when the rain came he could hear the sound of thunder in the background"
+22581,background,a person's social heritage: previous experience or training; "he is a lawyer with a sports background"
+22582,background background_knowledge,information that is essential to understanding a situation or problem; "the embassy filled him in on the background of the incident"
+22583,background background_signal,extraneous signals that can be confused with the phenomenon to be observed or measured; "they got a bad connection and could hardly hear one another over the background signals"
+22584,background desktop screen_background,(computer science) the area of the screen in graphical user interfaces against which icons and windows appear
+22585,background ground,the part of a scene (or picture) that lies behind objects in the foreground; "he posed her against a background of rolling hills"
+22586,background_noise ground_noise,extraneous noise contaminating sound measurements that cannot be separated from the desired signal
+22587,background_processing backgrounding,the execution of low priority programs while higher priority programs are not using the processing system
+22588,background_radiation,radiation coming from sources other than those being observed
+22589,backgrounder,a press conference or interview in which a government official explains to reporters the background of an action or policy; "the secretary gave us a backgrounder on public health issues"
+22590,backhand backhand_stroke backhand_shot,a return made with the back of the hand facing the direction of the stroke
+22591,backhand_drive,a hard straight return made on the backhand side
+22592,backhander,a backhanded blow
+22593,backhoe,an excavator whose shovel bucket is attached to a hinged boom and is drawn backward to move earth
+22594,backing backup championship patronage,the act of providing approval and support; "his vigorous backing of the conservatives got him in trouble with progressives"
+22595,backing mount,something forming a back that is added for strengthening
+22596,backlash,an adverse reaction to some political or social occurrence; "there was a backlash of intolerance"
+22597,backlighting,lighting from behind
+22598,backlog,the large log at the back of a hearth fire
+22599,backlog,an accumulation of jobs not done or materials not processed that are yet to be dealt with (especially unfilled customer orders for products or services)
+22600,backpack back_pack knapsack packsack rucksack haversack,a bag carried by a strap on your back or shoulder
+22601,backpacker packer,a hiker who wears a backpack
+22602,backpacking_tent pack_tent,a tent that can be carried in a backpack
+22603,backplate,plate armor protecting the back; worn as part of a cuirass
+22604,backroom,the meeting place of a group of leaders who make their decisions via private negotiations
+22605,backroom_boy brain_truster,an expert adviser involved in making important decisions but usually lacking official status
+22606,backsaw back_saw,a handsaw that is stiffened by metal reinforcement along the upper edge
+22607,backscratcher,someone who is willing to trade favors or services for mutual advantage
+22608,backscratcher,a long-handled scratcher for scratching your back
+22609,backseat,a secondary or inferior position or status; "tennis has had to take a backseat while his work is so demanding"
+22610,backseat,a seat at the back of a vehicle (especially the seat at the back of an automobile)
+22611,backseat_driver,a meddler who insists on giving unwanted advice
+22612,backslapper,someone who demonstrates enthusiastic or excessive cordiality
+22613,backsliding lapse lapsing relapse relapsing reversion reverting,a failure to maintain a higher state
+22614,backspace_character,a control character that indicates moving a space to the left
+22615,backspace_key backspace backspacer,the typewriter key used for back spacing
+22616,backspin,spin (usually of a moving ball) that retards or reverses the forward motion
+22617,backstairs,a second staircase at the rear of a building
+22618,backstay,a stay that supports the back of something
+22619,backstitch,an overlapping stitch made by starting the next stitch at the middle of the preceding one
+22620,backstop,(baseball) a fence or screen (as behind home plate) to prevent the ball from traveling out of the playing field
+22621,backstop,a precaution in case of an emergency; "he acted as a backstop in case anything went wrong"
+22622,backstroke,a swimming stroke that resembles the crawl except the swimmer lies on his or her back
+22623,backstroker,someone who swims the backstroke
+22624,backswimmer Notonecta_undulata,predaceous aquatic insect that swims on its back and may inflict painful bites
+22625,backsword,a sword with only one cutting edge
+22626,backup,an accumulation caused by clogging or a stoppage; "a traffic backup on the main street"; "he discovered a backup in the toilet"
+22627,backup computer_backup,(computer science) a copy of a file or directory on a separate storage device; "he made a backup in case the original was accidentally damaged or erased"
+22628,backup_file,(computer science) a computer file dedicated to storing and updating computer backups
+22629,backup_system,a computer system for making backups
+22630,backwater,a body of water that was created by a flood or tide or by being held or forced back by a dam; "the bayous and backwaters are breeding grounds for mosquitos"
+22631,backwater,a place or condition in which no development or progress is occurring; "the country is an economic backwater"
+22632,backwoods back_country boondocks hinterland,a remote and undeveloped area
+22633,backyard,the grounds in back of a house
+22634,bacon,back and sides of a hog salted and dried or smoked; usually sliced thin and fried
+22635,bacon-lettuce-tomato_sandwich BLT,sandwich filled with slices of bacon and tomato with lettuce
+22636,bacon_and_eggs,eggs (fried or scrambled) served with bacon
+22637,bacon_rind,the rind of bacon
+22638,bacon_strip,a slice of bacon
+22639,bacteremia bacteriemia bacteriaemia,transient presence of bacteria (or other microorganisms) in the blood
+22640,bacteria bacterium,(microbiology) single-celled or noncellular spherical or spiral or rod-shaped organisms lacking chlorophyll that reproduce by fission; important as pathogens and for biochemical properties; taxonomy is difficult; often considered to be plants
+22641,bacteria_bed,layer of sand or gravel used to expose sewage effluent to air and the action of microorganisms
+22642,bacteria_family,a family of bacteria
+22643,bacteria_genus,a genus of bacteria
+22644,bacteria_order,an order of bacteria
+22645,bacteria_species,a species of bacteria
+22646,bacterial_toxin,any endotoxin or exotoxin formed in or elaborated by bacterial cells
+22647,bactericide bacteriacide,any chemical agent that destroys bacteria
+22648,bacteriochlorophyll,a substance in photosensitive bacteria that is related to but different from chlorophyll of higher plants
+22649,bacteriologist,a biologist who studies bacteria
+22650,bacteriology,the branch of medical science that studies bacteria in relation to disease
+22651,bacteriolysis,dissolution or destruction of bacteria
+22652,bacteriophage phage,a virus that is parasitic (reproduces itself) in bacteria; "phage uses the bacterium's machinery and energy to produce more phage until the bacterium is destroyed and phage is released to invade surrounding bacteria"
+22653,bacteriostasis,inhibition of the growth of bacteria
+22654,bacteriostat,a chemical or biological material that inhibits bacterial growth
+22655,bacteroid,a rodlike bacterium (especially any of the rod-shaped or branched bacteria in the root nodules of nitrogen-fixing plants)
+22656,bad badness,that which is below standard or expectations as of ethics or decency; "take the bad with the good"
+22657,bad_block,(computer science) a block (usually one sector) that cannot reliably hold data
+22658,bad_check bad_cheque,a check that is dishonored on presentation because of insufficient funds; "issuing a bad check is a form of larceny"
+22659,bad_debt,a debt that is unlikely to be repaid
+22660,bad_egg,(old-fashioned slang) a bad person
+22661,bad_fairy,a fairy that tends to cause harm
+22662,bad_guy,any person who is not on your side
+22663,bad_luck mischance mishap,an unpredictable outcome that is unfortunate; "if I didn't have bad luck I wouldn't have any luck at all"
+22664,bad_manners ill-breeding,impoliteness resulting from ignorance
+22665,bad_person,a person who does harm to others
+22666,bad_temper ill_temper,a persisting angry mood
+22667,bad_weather inclemency inclementness,weather unsuitable for outdoor activities
+22668,baddeleyite,a mineral consisting of zirconium oxide
+22669,badge,an emblem (a small piece of plastic or cloth or metal) that signifies your status (rank or membership or affiliation etc.); "they checked everyone's badge before letting them in"
+22670,badge,any feature that is regarded as a sign of status (a particular power or quality or rank); "wearing a tie was regarded as a badge of respectability"
+22671,badger,sturdy carnivorous burrowing mammal with strong claws; widely distributed in the northern hemisphere
+22672,badgering worrying torment bedevilment,the act of harassing someone
+22673,badinage,frivolous banter
+22674,badlands,deeply eroded barren land
+22675,badminton,a game played on a court with light long-handled rackets used to volley a shuttlecock over a net
+22676,badminton_court,the court on which badminton is played
+22677,badminton_equipment,equipment for playing the game of badminton
+22678,badminton_racket badminton_racquet battledore,a light long-handled racket used by badminton players
+22679,badness severity severeness,used of the degree of something undesirable e.g. pain or weather
+22680,baedeker,any of a series of travel guidebooks published by the German firm founded by Karl Baedeker
+22681,baffle baffle_board,a flat plate that controls or directs the flow of fluid or energy
+22682,baffled,people who are frustrated and perplexed; "the children's faces clearly expressed the frustration of the baffled"
+22683,bag,the quantity of game taken in a particular period (usually by one person); "his bag included two deer"
+22684,bag,a flexible container with a single opening; "he stuffed his laundry into a large bag"
+22685,bag bagful,the quantity that a bag will hold; "he ate a large bag of popcorn"
+22686,bag handbag pocketbook purse,a container used for carrying money and small personal items or accessories (especially by women); "she reached into her bag and found a comb"
+22687,bag old_bag,an ugly or ill-tempered woman; "he was romancing the old bag for her money"
+22688,bag traveling_bag travelling_bag grip suitcase,a portable rectangular container for carrying clothes; "he carried his small bag onto the plane with him"
+22689,bag_lady,a homeless woman who carries all her possessions with her in shopping bags
+22690,bag_of_tricks,a supply of ways of accomplishing something; "every good mechanic has a large bag of tricks"
+22691,bagasse,the dry dusty pulp that remains after juice is extracted from sugar cane or similar plants
+22692,bagassosis bagascosis,alveolitis caused by inhaling bagasse (sugarcane dust)
+22693,bagatelle,a light piece of music for piano
+22694,bagatelle bar_billiards,a table game in which short cues are used to knock balls into holes that are guarded by wooden pegs; penalties are incurred if the pegs are knocked over
+22695,bagatelle fluff frippery frivolity,something of little value or significance
+22696,bagel beigel,(Yiddish) glazed yeast-raised doughnut-shaped roll with hard crust
+22697,baggage,a worthless or immoral woman
+22698,baggage,the portable equipment and supplies of an army
+22699,baggage luggage,cases used to carry belongings when traveling
+22700,baggage_car luggage_van,a railway car where passengers' bags are carried
+22701,baggage_claim,an area in an airport where arriving passengers can collect the luggage that has been carried in the hold of the aircraft
+22702,baggageman,an attendant who takes care of baggage
+22703,bagger,a machine for putting objects or substances into bags
+22704,bagman,a racketeer assigned to collect or distribute payoff money
+22705,bagpipe,a tubular wind instrument; the player blows air into a bag and squeezes it out through the drone
+22706,baguet baguette,narrow French stick loaf
+22707,baht tical,the basic unit of money in Thailand
+22708,bail,the legal system that allows an accused person to be temporarily released from custody (usually on condition that a sum of money guarantees their appearance at trial); "he is out on bail"
+22709,bail bail_bond bond,(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial; "the judge set bail at $10,000"; "a $10,000 bond was furnished by an alderman"
+22710,bailee,the agent to whom property involved in a bailment is delivered
+22711,bailey,the outer courtyard of a castle
+22712,bailey,the outer defensive wall that surrounds the outer courtyard of a castle
+22713,bailiff,an officer of the court who is employed to execute writs and processes and make arrests etc.
+22714,bailiffship,the office of bailiff
+22715,bailiwick,the area over which a bailiff has jurisdiction
+22716,bailment,the delivery of personal property in trust by the bailor to the bailee
+22717,bailor,the person who delivers personal property (goods or money) in trust to the bailee in a bailment
+22718,bain-marie,a large pan that is filled with hot water; smaller pans containing food can be set in the larger pan to keep food warm or to cook food slowly
+22719,bairn,a child: son or daughter
+22720,bait come-on hook lure sweetener,anything that serves as an enticement
+22721,bait decoy lure,something used to lure fish or other animals into danger so they can be trapped or killed
+22722,bait_and_switch,a deceptive way of selling that involves advertising a product at a very low price in order to attract customers who are then persuaded to switch to a more expensive product
+22723,bait_casting,the single-handed rod casting of a relatively heavy (artificial) bait
+22724,baiting,harassment especially of a tethered animal
+22725,baiza baisa,1,000 baiza equal 1 riyal-omani in Oman
+22726,baize,a bright green fabric napped to resemble felt; used to cover gaming tables
+22727,baked_Alaska,cake covered with ice cream and meringue browned quickly in an oven
+22728,baked_goods,foods (like breads and cakes and pastries) that are cooked in an oven
+22729,baked_potato,potato that has been cooked by baking it in an oven
+22730,baker,someone who bakes commercially
+22731,baker bread_maker,someone who bakes bread or cake
+22732,baker's_eczema,allergic eczema caused by flour or other ingredients handled by bakers
+22733,baker's_yeast brewer's_yeast Saccharomyces_cerevisiae,used as a leaven in baking and brewing
+22734,bakery bakeshop bakehouse,a workplace where baked goods (breads and cakes and pastries) are produced or sold
+22735,baking,making bread or cake or pastry etc.
+22736,baking,cooking by dry heat in an oven
+22737,baking-powder_biscuit,leavened with baking powder
+22738,baking_powder,any of various powdered mixtures used in baking as a substitute for yeast
+22739,baklava,rich Middle Eastern cake made of thin layers of flaky pastry filled with nuts and honey
+22740,balaclava balaclava_helmet,a cap that is close-fitting and woolen and covers all of the head but the face
+22741,balagan,a word for chaos or fiasco borrowed from modern Hebrew (where it is a loan word from Russian); "it was utter and complete balagan!"
+22742,balalaika,a stringed instrument that has a triangular body and three strings
+22743,balance,a state of equilibrium
+22744,balance,the difference between the totals of the credit and debit sides of an account
+22745,balance,equality between the totals of the credit and debit sides of an account
+22746,balance,a scale for weighing; depends on pull of gravity
+22747,balance equilibrium equipoise counterbalance,equality of distribution
+22748,balance-of-payments_problem,an economic problem caused by payments for imports being greater than receipts for exports
+22749,balance_beam beam,a gymnastic apparatus used by women gymnasts
+22750,balance_of_payments balance_of_international_payments,a system of recording all of a country's economic transactions with the rest of the world over a period of one year; "a favorable balance of payments exists when more payments are coming in than going out"
+22751,balance_of_power,an equilibrium of power between nations
+22752,balance_of_trade trade_balance visible_balance trade_gap,the difference in value over a period of time of a country's imports and exports of merchandise; "a nation's balance of trade is favorable when its exports exceed its imports"
+22753,balance_sheet,a record of the financial situation of an institution on a particular date by listing its assets and the claims against those assets
+22754,balance_wheel balance,a wheel that regulates the rate of movement in a machine; especially a wheel oscillating against the hairspring of a timepiece to regulate its beat
+22755,balanced_budget,a budget is balanced when current expenditures are equal to receipts
+22756,balanced_diet,a diet that contains adequate amounts of all the necessary nutrients required for healthy growth and activity
+22757,balancer,an acrobat who balances himself in difficult positions
+22758,balanitis,inflammation of the head of the penis
+22759,balanoposthitis,inflammation of both the head of the penis and the foreskin
+22760,balas balas_ruby,a pale rose-colored variety of the ruby spinel
+22761,balata balata_tree beefwood bully_tree Manilkara_bidentata,a tropical hardwood tree yielding balata gum and heavy red timber
+22762,balata gutta_balata,when dried yields a hard substance used e.g. in golf balls
+22763,balboa,the basic unit of money in Panama; equal to 100 centesimos
+22764,balbriggan,a cotton knit fabric used for underwear
+22765,balcony,an upper floor projecting from the rear over the main floor in an auditorium
+22766,balcony,a platform projecting from the wall of a building and surrounded by a balustrade or railing or parapet
+22767,bald-faced_hornet white-faced_hornet Vespula_maculata,North American hornet
+22768,bald_cypress swamp_cypress pond_bald_cypress southern_cypress Taxodium_distichum,common cypress of southeastern United States having trunk expanded at base; found in coastal swamps and flooding river bottoms
+22769,bald_eagle American_eagle Haliaeetus_leucocephalus,a large eagle of North America that has a white head and dark wings and body
+22770,baldachin,ornamented canopy supported by columns or suspended from a roof or projected from a wall (as over an altar)
+22771,balderdash fiddle-faddle piffle,trivial nonsense
+22772,baldhead baldpate baldy skinhead skin,a person whose head is bald or shaved
+22773,baldness phalacrosis,the condition of having no hair on the top of the head
+22774,baldric baldrick,a wide (ornamented) belt worn over the right shoulder to support a sword or bugle by the left hip
+22775,bale,a large bundle bound for storage or transport
+22776,baleen_whale whalebone_whale,whale with plates of whalebone along the upper jaw for filtering plankton from the water
+22777,baling_wire,wire used to make bales
+22778,balk,an illegal pitching motion while runners are on base
+22779,balk baulk,the area on a billiard table behind the balkline; "a player with ball in hand must play from the balk"
+22780,balker baulker noncompliant,a person who refuses to comply
+22781,balkiness,likely to stop abruptly and unexpectedly
+22782,balkline baulk-line string_line,line across a billiard table behind which the cue balls are placed at the start of a game
+22783,ball,the people assembled at a lavish formal dance; "the ball was already emptying out before the fire alarm sounded"
+22784,ball,a more or less rounded anatomical body or mass; "the ball at the base of the thumb"; "he stood on the balls of his feet"
+22785,ball,a spherical object used as a plaything; "he played with his rubber ball in the bathtub"
+22786,ball,round object that is hit or thrown or kicked in games; "the ball travelled 90 mph on his serve"; "the mayor threw out the first ball"; "the ball rolled into the corner pocket"
+22787,ball,a pitch that is not in the strike zone; "he threw nine straight balls before the manager yanked him"
+22788,ball clod glob lump clump chunk,a compact mass; "a ball of mud caught him on the shoulder"
+22789,ball formal,a lavish dance requiring formal attire
+22790,ball globe orb,an object with a spherical shape; "a ball of fire"
+22791,ball-and-socket_joint,a joint that can rotate within a socket
+22792,ball-and-socket_joint spheroid_joint cotyloid_joint enarthrodial_joint enarthrosis articulatio_spheroidea,a freely moving joint in which a sphere on the head of one bone fits into a rounded cavity in the other bone
+22793,ball-buster ball-breaker,a demanding woman who destroys men's confidence
+22794,ball-buster ball-breaker,a job or situation that is demanding and arduous and punishing; "Vietnam was a ball-breaker"
+22795,ball-peen_hammer,a hammer with one round and one flat end; used in working metal
+22796,ball_and_chain,heavy iron ball attached to a prisoner by a chain
+22797,ball_bearing needle_bearing roller_bearing,bearings containing small metal balls
+22798,ball_boy,a boy who retrieves balls for tennis players
+22799,ball_carrier runner,(football) the player who is carrying (and trying to advance) the ball on an offensive play
+22800,ball_cartridge,a general purpose cartridge having a primer and a ball and a full charge of powder
+22801,ball_field baseball_field diamond,the baseball playing field
+22802,ball_game ballgame,a field game played with a ball (especially baseball)
+22803,ball_gown,the most formal gown; worn to a ball
+22804,ball_hawk,a team athlete who is skilled at stealing or catching the ball
+22805,ball_hawking,a skillful maneuver in catching balls or in stealing the ball from the opposing team
+22806,ball_valve,any valve that checks flow by the seating of a ball
+22807,ballad lay,a narrative song with a recurrent refrain
+22808,ballad lay,a narrative poem of popular origin
+22809,ballade,a poem consisting of 3 stanzas and an envoy
+22810,ballast,coarse gravel laid to form a bed for streets and railroads
+22811,ballast,an attribute that tends to give stability in character and morals; something that steadies the mind or feelings
+22812,ballast,any heavy material used to stabilize a ship or airship
+22813,ballast light_ballast,an electrical device for starting and regulating fluorescent and discharge lamps
+22814,ballast_resistor ballast barretter,a resistor inserted into a circuit to compensate for changes (as those arising from temperature fluctuations)
+22815,ballcock ball_cock,floating ball that controls level in a water tank
+22816,balldress,a suit or dress for formal occasions
+22817,ballerina danseuse,a female ballet dancer
+22818,ballet,music written for a ballet
+22819,ballet concert_dance,a theatrical representation of a story that is performed to music by trained dancers
+22820,ballet_company,a company that produces ballets
+22821,ballet_dancer,a trained dancer who is a member of a ballet company
+22822,ballet_master,a man who directs and teaches and rehearses dancers for a ballet company
+22823,ballet_mistress,a woman who directs and teaches and rehearses dancers for a ballet company
+22824,ballet_position,classical position of the body and especially the feet in ballet
+22825,ballet_skirt tutu,very short skirt worn by ballerinas
+22826,balletomane,a ballet enthusiast
+22827,balletomania,extraordinary enthusiasm for ballets
+22828,ballgame new_ballgame,a particular situation that is radically different from the preceding situation; "HDTV looks the same but it's really a whole new ballgame"
+22829,ballistic_galvanometer,a moving-coil galvanometer that measures electric charge
+22830,ballistic_identification ballistic_fingerprinting bullet_fingerprinting,identification of the gun that fired a bullet from an analysis of the unique marks that every gun makes on the bullet it fires and on the shell ejected from it
+22831,ballistic_missile,a missile that is guided in the first part of its flight but falls freely as it approaches target
+22832,ballistic_pendulum,a physical pendulum consisting of a large mass suspended from a rod; when it is struck by a projectile its displacement is used to measure the projectile's velocity
+22833,ballistics,the science of flight dynamics
+22834,ballistics ballistic_trajectory,the trajectory of an object in free flight
+22835,ballistocardiogram,a graphical recording made by a ballistocardiograph
+22836,ballistocardiograph cardiograph,a medical instrument that measures the mechanical force of cardiac contractions and the amount of blood passing through the heart during a specified period by measuring the recoil of the body as blood is pumped from the ventricles
+22837,balloon,small thin inflatable rubber bag with narrow neck
+22838,balloon,large tough nonrigid bag filled with gas or heated air
+22839,balloon_bomb Fugo,a bomb carried by a balloon; "In World War II the Japanese launched balloon bombs against North America"
+22840,balloon_flower scented_penstemon Penstemon_palmeri,fragrant puffed-up white to reddish-pink flowers in long narrow clusters on erect stems; Arizona to New Mexico and Utah
+22841,balloon_sail,any light loose sail
+22842,balloon_vine heart_pea Cardiospermum_halicacabum,woody perennial climbing plant with large ornamental seed pods that resemble balloons; tropical India and Africa and America
+22843,balloonfish Diodon_holocanthus,similar to but smaller than porcupinefish
+22844,ballooning,flying in a balloon
+22845,balloonist,someone who flies a balloon
+22846,ballot,a document listing the alternatives that is used in voting
+22847,ballot_box,a box where voters deposit their ballots
+22848,ballottement,a palpatory technique for feeling a floating object in the body (especially for determining the position of a fetus by feeling the rebound of the fetus after a quick digital tap on the wall of the uterus)
+22849,ballpark park,a facility in which ball games are played (especially baseball games); "take me out to the ballpark"
+22850,ballplayer baseball_player,an athlete who plays baseball
+22851,ballpoint ballpoint_pen ballpen Biro,a pen that has a small metal ball as the point of transfer of ink to paper
+22852,ballroom dance_hall dance_palace,large room used mainly for dancing
+22853,ballroom_dancing ballroom_dance,any of a variety of social dances performed by couples in a ballroom
+22854,ballup balls-up cockup mess-up,something badly botched or muddled
+22855,ballyhoo hoopla hype plug,blatant or sensational promotion
+22856,balm,any of various aromatic resinous substances used for healing and soothing
+22857,balm_of_Gilead,a fragrant oleoresin
+22858,balm_of_gilead Commiphora_meccanensis,small evergreen tree of Africa and Asia; leaves have a strong aromatic odor when bruised
+22859,balminess softness,the quality of weather that is deliciously mild and soothing; "the day's heat faded into balminess"; "the climate had the softness of the south of France"
+22860,balmoral,a sturdy laced walking shoe
+22861,baloney boloney bilgewater bosh drool humbug taradiddle tarradiddle tommyrot tosh twaddle,pretentious or silly talk or writing
+22862,balsa Ochroma_lagopus,forest tree of lowland Central America having a strong very light wood; used for making floats and rafts and in crafts
+22863,balsa balsa_wood,strong lightweight wood of the balsa tree used especially for floats
+22864,balsa_raft Kon_Tiki,a light raft made of balsa
+22865,balsam,any of various fragrant oleoresins used in medicines and perfumes
+22866,balsam,any seed plant yielding balsam
+22867,balsam,an ointment containing a fragrant resin
+22868,balsam_apple Momordica_balsamina,a tropical Old World flowering vine with red or orange warty fruit
+22869,balsam_fir balm_of_Gilead Canada_balsam Abies_balsamea,medium-sized fir of northeastern North America; leaves smell of balsam when crushed; much used for pulpwood and Christmas trees
+22870,balsam_of_Peru,dark brown syrupy balsam from the Peruvian balsam tree used especially in dressing wounds and treating certain skin diseases
+22871,balsam_pear Momordica_charantia,tropical Old World vine with yellow-orange fruit
+22872,balsam_poplar hackmatack tacamahac Populus_balsamifera,poplar of northeastern North America with broad heart-shaped leaves
+22873,balsam_willow Salix_pyrifolia,small shrubby tree of eastern North America having leaves exuding an odor of balsam when crushed
+22874,balsam_woolly_aphid Adelges_piceae,a variety of adelgid
+22875,balsamroot,a plant of the genus Balsamorhiza having downy leaves in a basal rosette and yellow flowers and long balsam-scented taproots
+22876,baluster,one of a number of closely spaced supports for a railing
+22877,bamboo,the hard woody stems of bamboo plants; used in construction and crafts and fishing poles
+22878,bamboo,woody tropical grass having hollow woody stems; mature canes used for construction and furniture
+22879,bamboo_curtain,an ideological barrier around communist China especially in the 1950s and 1960s
+22880,bamboo_fern Coniogramme_japonica,fast-growing sturdy Japanese fern; cultivated for their attractive broad dark-green pinnate fronds
+22881,bamboo_palm Raffia_vinifera,a palm of the genus Raffia
+22882,bamboo_shoot,edible young shoots of bamboo
+22883,ban,100 bani equal 1 leu in Moldova
+22884,ban,100 bani equal 1 leu in Romania
+22885,ban banning forbiddance forbidding,an official prohibition or edict against something
+22886,banana,elongated crescent-shaped yellow fruit with soft sweet flesh
+22887,banana banana_tree,any of several tropical and subtropical treelike herbs of the genus Musa having a terminal crown of large entire leaves and usually bearing hanging clusters of elongated fruits
+22888,banana_boat,a ship designed to transport bananas
+22889,banana_bread,moist bread containing banana pulp
+22890,banana_oil,a liquid ester derived from amyl alcohol; has the odor of bananas
+22891,banana_passion_fruit Passiflora_mollissima,cultivated for fruit
+22892,banana_peel banana_skin,the skin of a banana (especially when it is stripped off and discarded); "he slipped on a banana skin and almost fell"
+22893,banana_quit,any of several honeycreepers
+22894,banana_republic,a small country (especially in Central America) that is politically unstable and whose economy is dominated by foreign companies and depends on one export (such as bananas)
+22895,banana_split,a banana split lengthwise and topped with scoops of ice cream and sauces and nuts and whipped cream
+22896,band,instrumentalists not including string players
+22897,band,a range of frequencies between two limits
+22898,band,a driving belt in machinery
+22899,band,a thin flat strip or loop of flexible material that goes around or over something else, typically to hold it together or as a decoration
+22900,band,a restraint put around something to hold it together
+22901,band,a thin flat strip of flexible material that is worn around the body or one of the limbs (especially to decorate the body)
+22902,band banding stria striation,a stripe or stripes of contrasting color; "chromosomes exhibit characteristic bands"; "the black and yellow banding of bees and wasps"
+22903,band banding stripe,an adornment consisting of a strip of a contrasting color or material
+22904,band ring,a strip of material attached to the leg of a bird to identify it (as in studies of bird migration)
+22905,band-tailed_pigeon band-tail_pigeon bandtail Columba_fasciata,wild pigeon of western North America; often mistaken for the now extinct passenger pigeon
+22906,band_aid quick_fix quickie quicky,hurried repair
+22907,bandage patch,a piece of soft material that covers and protects an injured part of the body
+22908,bandanna bandana,large and brightly colored handkerchief; often used as a neckerchief
+22909,bandbox,a light cylindrical box for holding light articles of attire (especially hats)
+22910,banded_gecko,any of several geckos with dark bands across the body and differing from typical geckos in having movable eyelids; of United States southwest and Florida Gulf Coast
+22911,banded_krait banded_adder Bungarus_fasciatus,sluggish krait banded with black and yellow
+22912,banded_palm_civet Hemigalus_hardwickii,an East Indian civet
+22913,banded_purple white_admiral Limenitis_arthemis,North American butterfly with blue-black wings crossed by a broad white band
+22914,banded_sand_snake Chilomeniscus_cinctus,a sand snake of southwestern United States; lives in fine to coarse sand or loamy soil in which it `swims'; banding resembles that of coral snakes
+22915,banded_stilt Cladorhyncus_leucocephalum,web-footed Australian stilt with reddish-brown pectoral markings
+22916,banderilla,a decorated dart that is implanted in the neck or shoulders of the bull during a bull fight
+22917,banderillero,the bullfighter who implants decorated darts (banderillas) into the neck or shoulders of the bull during a bull fight
+22918,bandicoot,any of various agile ratlike terrestrial marsupials of Australia and adjacent islands; insectivorous and herbivorous
+22919,bandicoot_rat mole_rat,burrowing scaly-tailed rat of India and Ceylon
+22920,bandit brigand,an armed thief who is (usually) a member of a band
+22921,banditry,the practice of plundering in gangs
+22922,bandleader,the leader of a dance band
+22923,bandmaster,the conductor of a band
+22924,bandoleer bandolier,a broad cartridge belt worn over the shoulder by soldiers
+22925,bandoneon,a type of concertina popular in South America
+22926,bandsaw band_saw,an endless saw consisting of a toothed metal band that is driven around two wheels
+22927,bandsman,a player in a band (especially a military band)
+22928,bandstand outdoor_stage stand,a platform where a (brass) band can play in the open air
+22929,bandwagon,a popular trend that attracts growing support; "when they saw how things were going everybody jumped on the bandwagon"
+22930,bandwagon,a large ornate wagon for carrying a musical band; "the gaudy bandwagon led the circus parade"
+22931,bandwagon_effect,the phenomenon of a popular trend attracting even greater popularity; "in periods of high merger activity there is a bandwagon effect with more and more firms seeking to engage in takeover activity"; "polls are accused of creating a bandwagon effect to benefit their candidate"
+22932,bandwidth,a data transmission rate; the maximum amount of information (bits/second) that can be transmitted along a channel
+22933,bane curse scourge nemesis,something causing misery or death; "the bane of my life"
+22934,baneberry,a poisonous berry of a plant of the genus Actaea
+22935,baneberry cohosh herb_Christopher,a plant of the genus Actaea having acrid poisonous berries
+22936,bang boot charge rush flush thrill kick,the swift release of a store of affective force; "they got a great bang out of it"; "what a boot!"; "he got a quick rush from injecting heroin"; "he does it for kicks"
+22937,bang clap eruption blast bam,a sudden very loud noise
+22938,bang fringe,a border of hair that is cut short and hangs across the forehead
+22939,bangalore_torpedo,a metal pipe filled with explosive, used to detonate land mines or to clear a path through barbed wire
+22940,banger,(British informal) pork sausage
+22941,banging,a continuing very loud noise
+22942,bangle bauble gaud gewgaw novelty fallal trinket,cheap showy jewelry or ornament on clothing
+22943,banishment ostracism Coventry,the state of being banished or ostracized (excluded from society by general consent); "the association should get rid of its elderly members--not by euthanasia, of course, but by Coventry"
+22944,banishment proscription,rejection by means of an act of banishing or proscribing someone
+22945,banjo,a stringed instrument of the guitar family that has long neck and circular body
+22946,bank,a supply or stock held in reserve for future use (especially in emergencies)
+22947,bank,the funds held by a gambling house or the dealer in some gambling games; "he tried to break the bank at Monte Carlo"
+22948,bank,sloping land (especially the slope beside a body of water); "they pulled the canoe up on the bank"; "he sat on the bank of the river and watched the currents"
+22949,bank,a long ridge or pile; "a huge bank of earth"
+22950,bank,an arrangement of similar objects in a row or in tiers; "he operated a bank of switches"
+22951,bank,a flight maneuver; aircraft tips laterally about its longitudinal axis (especially in turning); "the plane went into a steep bank"
+22952,bank bank_building,a building in which the business of banking transacted; "the bank is on the corner of Nassau and Witherspoon"
+22953,bank cant camber,a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force
+22954,bank-depositor_relation,the responsibility of a bank to act in the best interests of the depositors
+22955,bank_account,a fund that a customer has entrusted to a bank and from which the customer can make withdrawals; "he moved his bank account to a new bank"
+22956,bank_card,a credit card issued by a bank
+22957,bank_charter,a charter authorizing the operation of a bank
+22958,bank_closing,act of closing down a bank because of a fiscal emergency or failure
+22959,bank_commissioner,a commissioner appointed to supervise banks; a state superintendent of banks
+22960,bank_draft banker's_draft,a draft drawn by a bank against funds deposited in another bank
+22961,bank_examination,an examination of the affairs and records of a bank by a state or federal bank examiner
+22962,bank_examiner,an examiner appointed to audit the accounts of banks in a given jurisdiction
+22963,bank_failure,the inability of a bank to meet its credit obligations
+22964,bank_gravel pit-run_gravel pit_run,gravel as found in natural deposits
+22965,bank_guard,a security guard at a bank
+22966,bank_holding_company,a holding company owning or controlling one or more banks
+22967,bank_holiday,any of several weekdays when banks are closed; a legal holiday in Britain
+22968,bank_identification_number BIN ABA_transit_number,an identification number consisting of a two-part code assigned to banks and savings associations; the first part shows the location and the second identifies the bank itself
+22969,bank_loan,a loan made by a bank; to be repaid with interest on or before a fixed date
+22970,bank_manager,manager of a branch office of a bank
+22971,bank_martin bank_swallow sand_martin Riparia_riparia,swallow of the northern hemisphere that nests in tunnels dug in clay or sand banks
+22972,bank_rate,the discount rate fixed by a central bank
+22973,bank_robber,a robber of banks
+22974,bank_run,the concerted action of depositors who try to withdraw their money from a bank because they think it will fail
+22975,bank_shot,a basketball shot that bounces off of the backboard before passing through the hoop
+22976,bank_statement,a periodic statement prepared by a bank for each client; "I wish my bank statement arrived earlier in the month"
+22977,bank_withdrawal,the withdrawal of money from your account at a bank
+22978,bankbook passbook,a record of deposits and withdrawals and interest held by depositors at certain banks
+22979,banker,a financier who owns or is an executive in a bank
+22980,banker,the person in charge of the bank in a gambling game
+22981,banking,engaging in the business of keeping money for savings and checking accounts or for exchange or for issuing loans and credit etc.
+22982,banking,transacting business with a bank; depositing or withdrawing funds or requesting a loan etc.
+22983,banking_game,any gambling game in which bets are laid against the gambling house or the dealer
+22984,banking_industry banking_system,banks collectively
+22985,bankroll roll,a roll of currency notes (often taken as the resources of a person or business etc.); "he shot his roll on a bob-tailed nag"
+22986,bankrupt insolvent,someone who has insufficient assets to cover their debts
+22987,bankruptcy,a state of complete lack of some abstract property; "spiritual bankruptcy"; "moral bankruptcy"; "intellectual bankruptcy"
+22988,bankruptcy,a legal process intended to insure equality among the creditors of a corporation declared to be insolvent
+22989,bankruptcy failure,inability to discharge all your debts as they come due; "the company had to declare bankruptcy"; "fraudulent loans led to the failure of many banks"
+22990,banksia,any shrub or tree of the genus Banksia having alternate leathery leaves apetalous yellow flowers often in showy heads and conelike fruit with winged seeds
+22991,banksia_rose Rosa_banksia,Chinese evergreen climbing rose with yellow or white single flowers
+22992,banner streamer,long strip of cloth or paper used for decoration or advertising
+22993,banning-order,an order that bans something
+22994,bannister banister balustrade balusters handrail,a railing at the side of a staircase or balcony to prevent people from falling
+22995,bannock,a flat bread made of oat or barley flour; common in New England and Scotland
+22996,banns,a public announcement of a proposed marriage
+22997,banquet feast,a ceremonial dinner party for many people
+22998,banquet feast spread,a meal that is well prepared and greatly enjoyed; "a banquet for the graduating seniors"; "the Thanksgiving feast"; "they put out quite a spread"
+22999,banquette,an upholstered bench
+23000,banshee banshie,(Irish folklore) a female spirit who wails to warn of impending death
+23001,bantam,any of various small breeds of fowl
+23002,bantamweight,weighs 115-126 pounds
+23003,bantamweight,an amateur boxer who weighs no more than 119 pounds
+23004,banteng banting tsine Bos_banteng,wild ox of the Malay Archipelago
+23005,banter raillery give-and-take backchat,light teasing repartee
+23006,banyan banian,a loose fitting jacket; originally worn in India
+23007,banyan banyan_tree banian banian_tree Indian_banyan East_Indian_fig_tree Ficus_bengalensis,East Indian tree that puts out aerial shoots that grow down into the soil forming additional trunks
+23008,banzai,a Japanese cheer of enthusiasm or triumph
+23009,banzai_attack banzai_charge,a mass attack of troops without concern for casualties; originated by Japanese who accompanied it with yells of `banzai'
+23010,baobab monkey-bread_tree Adansonia_digitata,African tree having an exceedingly thick trunk and fruit that resembles a gourd and has an edible pulp called monkey bread
+23011,bap,a small loaf or roll of soft bread
+23012,baptism,a Christian sacrament signifying spiritual cleansing and rebirth; "most churches baptize infants but some insist on adult baptism"
+23013,baptismal_font baptistry baptistery font,bowl for baptismal water
+23014,bar,(meteorology) a unit of pressure equal to a million dynes per square centimeter; "unfortunately some writers have used bar for one dyne per square centimeter"
+23015,bar,a submerged (or partly submerged) ridge in a river or along a shore; "the boat ran aground on a submerged bar in the river"
+23016,bar,a horizontal rod that serves as a support for gymnasts as they perform exercises
+23017,bar,a heating element in an electric fire; "an electric fire with three bars"
+23018,bar,(law) a railing that encloses the part of the courtroom where the judges and lawyers sit and the case is tried; "spectators were not allowed past the bar"
+23019,bar,a counter where you can obtain food or drink; "he bought a hot dog and a coke at the bar"
+23020,bar,an obstruction (usually metal) placed at the top of a goal; "it was an excellent kick but the ball hit the bar"
+23021,bar,a rigid piece of metal or wood; usually used as a fastening or obstruction or weapon; "there were bars in the windows to prevent escape"
+23022,bar_bit,a bit for horses that is a solid bar of metal
+23023,bar_chart bar_graph,a chart with bars whose lengths are proportional to quantities
+23024,bar_code Universal_Product_Code,code consisting of a series of vertical bars of variable width that are scanned by a laser; printed on consumer product packages to identify the item for a computer that provides the price and registers inventory information
+23025,bar_examination bar_exam,an examination conducted at regular intervals to determine whether a candidate is qualified to practice law in a given jurisdiction; "applicants may qualify to take the New York bar examination by graduating from an approved law school"; "he passed the bar exam on his third try"
+23026,bar_fly,a drinker who frequents bars
+23027,bar_line,a vertical line before the accented beat marking the boundary between musical bars
+23028,bar_magnet,a magnet in the form of a bar with magnetic poles at each end
+23029,bar_mask,a catcher's mask with bars
+23030,bar_mitzvah,(Judaism) an initiation ceremony marking the 13th birthday of a Jewish boy and signifying the beginning of religious responsibility; "a bar mitzvah is an important social event"
+23031,bar_printer,an impact printer that uses a bar to carry the type slugs
+23032,bar_sinister bend_sinister,a mark of bastardy; lines from top right to bottom left
+23033,bar_soap,soap in the form of a bar
+23034,barb,the pointed part of barbed wire
+23035,barb,a subsidiary point facing opposite from the main point that makes an arrowhead or spear hard to remove
+23036,barb,one of the parallel filaments projecting from the main shaft of a feather
+23037,barbados_cherry acerola Surinam_cherry West_Indian_cherry Malpighia_glabra,tropical American shrub bearing edible acid red fruit resembling cherries
+23038,barbarization barbarisation,an act that makes people primitive and uncivilized
+23039,barbasco joewood Jacquinia_keyensis,West Indian shrub or small tree having leathery saponaceous leaves and extremely hard wood
+23040,barbecue barbeque,meat that has been barbecued or grilled in a highly seasoned sauce
+23041,barbecue barbeque,a cookout in which food is cooked over an open fire; especially a whole animal carcass roasted on a spit
+23042,barbecue barbeque,a rack to hold meat for cooking over hot charcoal usually out of doors
+23043,barbecue_pit,a pit where wood or charcoal is burned to make a bed of hot coals suitable for barbecuing meat
+23044,barbecue_sauce,spicy sweet and sour sauce usually based on catsup or chili sauce
+23045,barbecued_spareribs spareribs,baked or roasted with a spicy sauce
+23046,barbecued_wing,chicken wings cooked in barbecue sauce
+23047,barbecuing,roasting a large piece of meat on a revolving spit out of doors over an open fire
+23048,barbed_wire barbwire,strong wire with barbs at regular intervals used to prevent passage
+23049,barbel feeler,slender tactile process on the jaws of a fish
+23050,barbell,a bar to which heavy discs are attached at each end; used in weightlifting
+23051,barber,a hairdresser who cuts hair and shaves beards as a trade
+23052,barber's_pole,striped pole outside a barbershop
+23053,barber_chair,a large fixed adjustable chair in which barbers seat their customers
+23054,barberry,any of numerous plants of the genus Berberis having prickly stems and yellow flowers followed by small red berries
+23055,barbershop,a shop where men can get their hair cut
+23056,barbershop_quartet,an unaccompanied quartet of (usually male) voices singing sentimental songs in four-part harmony
+23057,barbet,small brightly colored stout-billed tropical bird having short weak wings
+23058,barbette,(formerly) a mound of earth inside a fort from which heavy gun can be fired over the parapet
+23059,barbette_carriage,a gun carriage elevated so that the gun can be fired over the parapet
+23060,barbican barbacan,a tower that is part of a defensive structure (such as a castle)
+23061,barbital veronal barbitone diethylbarbituric_acid diethylmalonylurea,a barbiturate used as a hypnotic
+23062,barbiturate,organic compound having powerful soporific effect; overdose can be fatal
+23063,barbituric_acid malonylurea,a white crystalline acid derived from pyrimidine; used in preparing barbiturate drugs
+23064,barbu Polydactylus_virginicus,found along western Atlantic coast
+23065,barcarole barcarolle,a boating song sung by Venetian gondoliers
+23066,bard,a lyric poet
+23067,bard,an ornamental caparison for a horse
+23068,bardolatry,the idolization of William Shakespeare
+23069,bare_bone,bone stripped of flesh
+23070,bare_bones,(plural) the most basic facts or elements; "he told us only the bare bones of the story"
+23071,bareboat,a vessel (such as a yacht) that can be chartered without a captain or crew or provisions
+23072,bareboating,boating by chartering a bareboat and providing your own crew and provisions; "we saved money by bareboating"
+23073,bareness,the state of being unclothed and exposed (especially of a part of the body)
+23074,bareness starkness,an extreme lack of furnishings or ornamentation; "I was struck by the starkness of my father's room"
+23075,bargain buy steal,an advantageous purchase; "she got a bargain at the auction"; "the stock was a real buy at that price"
+23076,bargain deal,an agreement between parties (usually arrived at after discussion) fixing obligations of each; "he made a bargain with the devil"; "he rose to prominence through a series of shady deals"
+23077,bargain_hunter,a shopper who hunts for bargains
+23078,bargain_rate cheapness cut_rate cut_price,a price below the standard price
+23079,bargainer,negotiator of the terms of a transaction; "he is a hard bargainer"
+23080,bargaining,the negotiation of the terms of a transaction or agreement
+23081,bargaining_chip,leverage in the form of an inducement or a concession useful in successful negotiations
+23082,barge flatboat hoy lighter,a flatbottom boat for carrying heavy loads (especially on canals)
+23083,barge_pole,a long pole used to propel or guide a barge; "I wouldn't touch it with a barge pole"
+23084,bargello flame_stitch,needlepoint embroidery stitch that produces zigzag lines
+23085,barilla Halogeton_souda,Algerian plant formerly burned to obtain calcium carbonate
+23086,baritone baritone_horn,the second lowest brass wind instrument
+23087,baritone baritone_voice,the second lowest adult male singing voice
+23088,baritone barytone,a male singer
+23089,barium Ba atomic_number_56,a soft silvery metallic element of the alkali earth group; found in barite
+23090,barium_dioxide barium_peroxide,a white toxic powder obtained by heating barium oxide in air
+23091,barium_enema,enema in which a contrast medium (usually barium sulfate) is injected into the rectum and X-rays are taken to search for lesions
+23092,barium_hydroxide,white poisonous crystals; made by dissolving barium oxide in water
+23093,barium_monoxide barium_oxide barium_protoxide,an oxide of barium; a whitish toxic powder
+23094,barium_sulphate barium_sulfate blanc_fixe,a white insoluble radiopaque powder used as a pigment
+23095,bark,tough protective covering of the woody stems and roots of trees and other woody plants
+23096,bark,a noise resembling the bark of a dog
+23097,bark,the sound made by a dog
+23098,bark barque,a sailing ship with 3 (or more) masts
+23099,bark-louse bark_louse,any of several insects living on the bark of plants
+23100,bark_beetle,small beetle that bores tunnels in the bark and wood of trees; related to weevils
+23101,barker,someone who stands in front of a show (as at a carnival) and gives a loud colorful sales talk to potential customers
+23102,barking_frog robber_frog Hylactophryne_augusti,of southwest United States and Mexico; call is like a dog's bark
+23103,barley,cultivated since prehistoric times; grown for forage and grain
+23104,barley barleycorn,a grain of barley
+23105,barley-sugar barley_candy,a brittle transparent candy made by melting and cooling cane sugar
+23106,barley_grass wall_barley Hordeum_murinum,European annual grass often found as a weed in waste ground especially along roadsides and hedgerows
+23107,barley_water,broth used to feed infants
+23108,barleycorn,a grain of barley
+23109,barmaid,a female bartender
+23110,barmbrack,a rich currant cake or bun
+23111,barn,an outlying farm building for storing grain or animal feed and housing farm animals
+23112,barn b,(physics) a unit of nuclear cross section; the effective circular area that one particle presents to another as a target for an encounter
+23113,barn_dance,a dance party featuring country dancing
+23114,barn_door,the large sliding door of a barn
+23115,barn_owl Tyto_alba,mottled buff and white owl often inhabiting barns and other structures; important in rodent control
+23116,barn_spider Araneus_cavaticus,an orange and tan spider with darkly banded legs that spins an orb web daily; "the barn spider was made famous in E. B. White's book `Charlotte's Web'"
+23117,barn_swallow chimney_swallow Hirundo_rustica,common swallow of North America and Europe that nests in barns etc.
+23118,barnacle cirriped cirripede,marine crustaceans with feathery food-catching appendages; free-swimming as larvae; as adults form a hard shell and live attached to submerged surfaces
+23119,barnacle_goose barnacle Branta_leucopsis,European goose smaller than the brant; breeds in the far north
+23120,barnburner,someone who burns down a barn
+23121,barnburner,an impressively successful event; "the rock concert was a real barnburner"
+23122,barndoor,an opaque adjustable flap on a lamp fixture; used in photography to cut off light from particular areas
+23123,barndoor_skate Raja_laevis,one of the largest skates (to 5 feet); an active skate easy to hook
+23124,barnful,the quantity that a barn will hold
+23125,barnstormer playactor play-actor trouper,an actor who travels around the country presenting plays
+23126,barnstormer stunt_flier stunt_pilot,a pilot who travels around the country giving exhibits of stunt flying and parachuting
+23127,barnyard,a yard adjoining a barn
+23128,barnyard_grass barn_grass barn_millet Echinochloa_crusgalli,a coarse annual panic grass; a cosmopolitan weed; occasionally used for hay or grazing
+23129,barograph,a recording barometer; automatically records on paper the variations in atmospheric pressure
+23130,barometer,an instrument that measures atmospheric pressure
+23131,barometric_pressure,atmospheric pressure as indicated by a barometer
+23132,baron,a nobleman (in various countries) of varying rank
+23133,baron,a British peer of the lowest rank
+23134,baron big_businessman business_leader king magnate mogul power top_executive tycoon,a very wealthy or powerful businessman; "an oil baron"
+23135,baronduki baranduki barunduki burunduki Eutamius_asiaticus Eutamius_sibiricus,terrestrial Siberian squirrel
+23136,baroness,a noblewoman who holds the rank of baron or who is the wife or widow of a baron
+23137,baronet Bart,a member of the British order of honor; ranks below a baron but above a knight; "since he was a baronet he had to be addressed as Sir Henry Jones, Bart."
+23138,baronetage,the collective body of baronets
+23139,baronetage,the state of a baronet
+23140,baronetcy,the title of a baron
+23141,baronetcy barony,the rank or dignity or position of a baronet or baroness
+23142,barong,a knife resembling a cleaver; used in the Philippines
+23143,barony,the estate of a baron
+23144,barony,the domain of a baron
+23145,baroque baroqueness,elaborate and extensive ornamentation in decorative art and architecture that flourished in Europe in the 17th century
+23146,baroreceptor,a sensory receptor that responds to pressure
+23147,barosaur barosaurus,a dinosaur that could grow to be as tall as a building five stories tall
+23148,barouche,a horse-drawn carriage having four wheels; has an outside seat for the driver and facing inside seats for two couples and a folding top
+23149,barrack,a building or group of buildings used to house military personnel
+23150,barracouta snoek,a large marine food fish common on the coasts of Australia, New Zealand, and southern Africa
+23151,barracuda,any voracious marine fish of the genus Sphyraena having an elongated cylindrical body and large mouth with projecting lower jaw and long strong teeth
+23152,barrage barrage_fire battery bombardment shelling,the heavy fire of artillery to saturate an area rather than hit a specific target; "they laid down a barrage in front of the advancing troops"; "the shelling went on for hours without pausing"
+23153,barrage bombardment outpouring onslaught,the rapid and continuous delivery of linguistic communication (spoken or written); "a barrage of questions"; "a bombardment of mail complaining about his mistake"
+23154,barrage_balloon,an elongated tethered balloon or blimp with cables or net suspended from it to deter enemy planes that are flying low
+23155,barrage_jamming,electronic jamming over a wide range of frequencies simultaneously
+23156,barramundi giant_perch giant_seaperch Asian_seabass white_seabass Lates_calcarifer,a species of large perch noted for its sporting and eating qualities; lives in marine, estuary, and freshwater habitats
+23157,barrator barrater,someone guilty of barratry
+23158,barratry,the crime of a judge whose judgment is influenced by bribery
+23159,barratry,(maritime law) a fraudulent breach of duty by the master of a ship that injures the owner of the ship or its cargo; includes every breach of trust such as stealing or sinking or deserting the ship or embezzling the cargo
+23160,barratry,the offense of vexatiously persisting in inciting lawsuits and quarrels
+23161,barred_owl Strix_varia,large owl of eastern North America having its breast and abdomen streaked with brown
+23162,barrel barrelful,the quantity that a barrel (of any size) will hold
+23163,barrel bbl,any of various units of capacity; "a barrel of beer is 31 gallons and a barrel of oil is 42 gallons"
+23164,barrel cask,a cylindrical container that holds liquids
+23165,barrel drum,a bulging cylindrical shape; hollow with flat ends
+23166,barrel gun_barrel,a tube through which a bullet travels when a gun is fired
+23167,barrel_cactus,a cactus of the genus Ferocactus: unbranched barrel-shaped cactus having deep ribs with numerous spines and usually large funnel-shaped flowers followed by dry fruits
+23168,barrel_knot blood_knot,a knot used for tying fishing leaders together; the ends of the two leaders are wrapped around each other two or three times
+23169,barrel_organ grind_organ hand_organ,a musical instrument that makes music by rotation of a cylinder studded with pegs
+23170,barrel_roll,a roll in which the plane follows a spiral course
+23171,barrel_vault,the simplest form of vault; a single continuous arch
+23172,barrelfish black_rudderfish Hyperglyphe_perciformis,blackish fish of New England waters
+23173,barrelhouse honky-tonk,a cheap drinking and dancing establishment
+23174,barrels,the amount that many barrels might hold
+23175,barren waste wasteland,an uninhabited wilderness that is worthless for cultivation; "the barrens of central Africa"; "the trackless wastes of the desert"
+23176,barren_ground_caribou Rangifer_arcticus,of tundra of northern Canada; in some classifications included in the species Rangifer tarandus
+23177,barrenness,the state (usually of a woman) of having no children or being unable to have children
+23178,barrenwort bishop's_hat Epimedium_grandiflorum,slow-growing creeping plant with semi-evergreen leaves on erect wiry stems; used as ground cover
+23179,barrette,a pin for holding women's hair in place
+23180,barricade,a barrier (usually thrown up hastily) to impede the advance of an enemy; "they stormed the barricade"
+23181,barrier,anything serving to maintain separation by obstructing vision or access
+23182,barrier,a structure or object that impedes free movement
+23183,barrier roadblock,any condition that makes it difficult to make progress or to achieve an objective; "intolerance is a barrier to understanding"
+23184,barrier_island,a long narrow sandy island (wider than a reef) running parallel to the shore
+23185,barrier_reef,a long coral reef near and parallel to the shore
+23186,barring blackball,the act of excluding someone by a negative vote or veto
+23187,barrio,a Spanish-speaking quarter in a town or city (especially in the United States)
+23188,barrio,an urban area in a Spanish-speaking country
+23189,barrister,a British or Canadian lawyer who speaks in the higher courts of law on behalf of either the defense or prosecution
+23190,barroom bar saloon ginmill taproom,a room or establishment where alcoholic drinks are served over a counter; "he drowned his sorrows in whiskey at the bar"
+23191,barrow barrowful,the quantity that a barrow will hold
+23192,barrow garden_cart lawn_cart wheelbarrow,a cart for carrying small loads; has handles and one or more wheels
+23193,bartender barman barkeep barkeeper mixologist,an employee who mixes and serves alcoholic drinks at a bar
+23194,barter swap swop trade,an equal exchange; "we had no money so we had to live by barter"
+23195,barterer,a trader who exchanges goods and not money
+23196,bartlett bartlett_pear,juicy yellow pear
+23197,bartonia Mentzelia_lindleyi,annual grown especially for its fragrant golden nocturnal flowers
+23198,barycenter,(astronomy) the common center of mass around which two or more bodies revolve
+23199,barye bar_absolute microbar,the absolute unit of pressure equal to one dyne per square centimeter
+23200,baryon heavy_particle,any of the elementary particles having a mass equal to or greater than that of a proton and that participate in strong interactions; a hadron with a baryon number of +1
+23201,baryon_number,a number equal to the difference between the number of baryons and the number of antibaryons in any subatomic structure; it is conserved in all types of particle interactions
+23202,baryta,any of several compounds of barium
+23203,bas_relief low_relief basso_relievo basso_rilievo,a sculptural relief in which forms extend only slightly from the background; no figures are undercut
+23204,basal_body_temperature basal_temperature,body temperature in the morning before rising or moving about or eating anything
+23205,basal_body_temperature_method_of_family_planning basal_body_temperature_method,natural family planning in which the fertile period of the woman's menstrual cycle is inferred by noting the rise in basal body temperature that typically occurs with ovulation
+23206,basal_ganglion,any of several masses of subcortical grey matter at the base of each cerebral hemisphere that seem to be involved in the regulation of voluntary movement
+23207,basal_metabolic_rate BMR,the rate at which heat is produced by an individual in a resting state
+23208,basal_metabolism,the amount of energy required to maintain the body of an individual in a resting state
+23209,basal_placentation,where one or few ovules develop at the base of a simple or compound ovary
+23210,basal_vein vena_basalis,a large vein passing along the medial surface of the temporal lobe and emptying into the great cerebral vein
+23211,basalt,the commonest type of solidified lava; a dense dark grey fine-grained igneous rock that is composed chiefly of plagioclase feldspar and pyroxene
+23212,bascule,a structure or device in which one end is counterbalanced by the other (on the principle of the seesaw)
+23213,base,the bottom side of a geometric figure from which the altitude can be constructed; "the base of the triangle"
+23214,base,the bottom or lowest part; "the base of the mountain"
+23215,base,(anatomy) the part of an organ nearest its point of attachment; "the base of the skull"
+23216,base,the principal ingredient of a mixture; "glycerinated gelatin is used as a base for many ointments"; "he told the painter that he wanted a yellow base with just a hint of green"; "everything she cooked seemed to have rice as the base"
+23217,base,a flat bottom on which something is intended to sit; "a tub should sit on its own base"
+23218,base,(electronics) the part of a transistor that separates the emitter from the collector
+23219,base alkali,any of various water-soluble compounds capable of turning litmus blue and reacting with an acid to form a salt and water; "bases include oxides and hydroxides of metals and ammonia"
+23220,base bag,a place that the runner must touch before scoring; "he scrambled to get back to the bag"
+23221,base base_of_operations,installation from which a military force initiates operations; "the attack wiped out our forward bases"
+23222,base home,the place where you are stationed and from which missions start and end
+23223,base pedestal stand,a support or foundation; "the base of the lamp"
+23224,base radix,(numeration system) the positive integer that is equivalent to one in the next higher counting place; "10 is the radix of the decimal system"
+23225,base_hit safety,(baseball) the successful act of striking a baseball in such a way that the batter reaches base safely
+23226,base_metal,a metal that is common and not considered precious; "lead, iron, copper, tin, and zinc are base metals"
+23227,base_on_balls walk pass,(baseball) an advance to first base by a batter who receives four balls; "he worked the pitcher for a base on balls"
+23228,base_pair,one of the pairs of chemical bases joined by hydrogen bonds that connect the complementary strands of a DNA molecule or of an RNA molecule that has two strands; the base pairs are adenine with thymine and guanine with cytosine in DNA and adenine with uracil and guanine with cytosine in RNA
+23229,base_rate,the interest rate set by the Bank of England for lending to other banks
+23230,base_runner runner,a baseball player on the team at bat who is on base (or attempting to reach a base)
+23231,baseball,a ball used in playing baseball
+23232,baseball baseball_game ball,a ball game played with a bat and ball between two teams of nine players; teams take turns at bat trying to score runs; "he played baseball in high school"; "there was a baseball game on every empty lot"; "there was a desire for National League ball in the area"; "play ball!"
+23233,baseball_bat lumber,an implement used in baseball by the batter
+23234,baseball_cap jockey_cap golf_cap,a cap with a bill
+23235,baseball_card,a trading card with a picture of a baseball player and information about his playing record
+23236,baseball_clinic,a meeting at which baseball players receive special evaluation and instruction; "a summer baseball clinic for promising young players"
+23237,baseball_club ball_club club nine,a team of professional baseball players who play and travel together; "each club played six home games with teams in its own division"
+23238,baseball_coach baseball_manager,a coach of baseball players
+23239,baseball_diamond diamond infield,the area of a baseball field that is enclosed by 3 bases and home plate
+23240,baseball_equipment,equipment used in playing baseball
+23241,baseball_glove glove baseball_mitt mitt,the handwear used by fielders in playing baseball
+23242,baseball_league,a league of baseball teams
+23243,baseball_play,(baseball) a play executed by a baseball team
+23244,baseball_score,the score of a baseball game
+23245,baseball_season,the season when baseball is played
+23246,baseball_swing swing cut,in baseball; a batter's attempt to hit a pitched ball; "he took a vicious cut at the ball"
+23247,baseball_team,a team that plays baseball
+23248,baseboard mopboard skirting_board,a molding covering the joint formed by a wall and the floor
+23249,baseline,an imaginary line or standard by which things are measured or compared; "the established a baseline for the budget"
+23250,baseline,the lines a baseball player must follow while running the bases
+23251,basement,the ground floor facade or interior in Renaissance architecture
+23252,basement cellar,the lowermost portion of a structure partly or wholly below ground level; often used for storage
+23253,baseness sordidness contemptibility despicableness despicability,unworthiness by virtue of lacking higher values
+23254,basenji,small smooth-haired breed of African origin having a tightly curled tail and the inability to bark
+23255,bash do brawl,an uproarious party
+23256,basic staple,(usually in the plural) a necessary commodity for which demand is constant
+23257,basic_assumption constatation self-evident_truth,an assumption that is basic to an argument
+23258,basic_cognitive_process,cognitive processes involved in obtaining and storing knowledge
+23259,basic_dye basic_color basic_colour,a dye that is considered to be a base because the chromophore is part of a positive ion
+23260,basic_iron,pig iron containing a high percentage of phosphorus; used in making steel by a process that removes the phosphorus
+23261,basic_point_defense_missile_system,a shipboard missile system
+23262,basic_slag,slag produced in making steel; low in silica but having large amounts of calcium phosphate; useful as fertilizer
+23263,basic_training,the initial period of training for new military personnel; involves intense physical activity and behavioral discipline
+23264,basics rudiments,a statement of fundamental facts or principles
+23265,basidiocarp,the fruiting body of a basidiomycete which bears its spores on special cells
+23266,basidiolichen,a lichen in which the fungus component is a basidiomycete
+23267,basidiomycete basidiomycetous_fungi,any of various fungi of the subdivision Basidiomycota
+23268,basidiospore,a sexually produced fungal spore borne on a basidium
+23269,basidium,a small club-shaped structure typically bearing four basidiospores at the ends of minute projections; unique to basidiomycetes
+23270,basil,any of several Old World tropical aromatic annual or perennial herbs of the genus Ocimum
+23271,basil sweet_basil,leaves of the common basil; used fresh or dried
+23272,basil_balm Monarda_clinopodia,perennial herb of North America (New York to Illinois and mountains of Alaska) having aromatic leaves and clusters of yellowish-pink balls
+23273,basil_mint Pycnanthemum_virginianum,perennial herb of the eastern United States having inconspicuous greenish flowers and narrow leaves that are very aromatic when bruised
+23274,basil_thyme basil_balm mother_of_thyme Acinos_arvensis Satureja_acinos,fragrant European mint having clusters of small violet-and-white flowers; naturalized especially in eastern North America
+23275,basilar_artery arteria_basilaris,an unpaired artery; supplies the pons and cerebellum and the back part of the cerebrum and the inner ear
+23276,basilar_membrane,a membrane in the cochlea that supports the organ of Corti
+23277,basileus,a ruler of the eastern Roman Empire
+23278,basilic_vein vena_basilica,a vein that drains the back of the hand and forearm and empties into the axillary vein
+23279,basilica,an early Christian church designed like a Roman basilica; or a Roman Catholic church or cathedral accorded certain privileges; "the church was raised to the rank of basilica"
+23280,basilica Roman_basilica,a Roman building used for public administration
+23281,basilisk,(classical mythology) a serpent (or lizard or dragon) able to kill with its breath or glance
+23282,basilisk,ancient brass cannon
+23283,basilisk,small crested arboreal lizard able to run on its hind legs; of tropical America
+23284,basin,a natural depression in the surface of the land often with a lake at the bottom of it; "the basin of the Great Salt Lake"
+23285,basin,a bowl-shaped vessel; usually used for holding food or liquids; "she mixed the dough in a large basin"
+23286,basin basinful,the quantity that a basin will hold; "a basinful of water"
+23287,basinet,a medieval steel helmet
+23288,basis base,the most important or necessary part of something; "the basis of this drink is orange juice"
+23289,basis base foundation fundament groundwork cornerstone,the fundamental assumptions from which something is begun or developed or calculated or explained; "the whole argument rested on a basis of conjecture"
+23290,basivertebral_vein vena_basivertebralis,one of a number of veins draining the spongy substance of the vertebrae and emptying into the anterior internal vertebral venous plexus
+23291,basket basketball_hoop hoop,horizontal circular metal hoop supporting a net through which players try to throw the basketball
+23292,basket basketful,the quantity contained in a basket
+23293,basket field_goal,a score in basketball made by throwing the ball through the hoop
+23294,basket handbasket,a container that is usually woven and has handles
+23295,basket_fern Drynaria_rigidula,giant epiphytic or lithophytic fern; Asia to Polynesia and Australia
+23296,basket_fern toothed_sword_fern Nephrolepis_pectinata,tropical American fern cultivated for its finely divided greyish-green foliage; West Indies and southern Mexico to Peru and Brazil
+23297,basket_flower Centaurea_americana,annual of southwestern United States cultivated for its purple flower heads and its bracts that resemble small baskets
+23298,basket_hilt,a hilt with a basket-shaped guard for the hand
+23299,basket_oak cow_oak Quercus_prinus Quercus_montana,medium to large deciduous tree of the eastern United States; its durable wood is used as timber or split and woven into baskets or chair seats
+23300,basket_star basket_fish,any starfish-like animal of the genera Euryale or Astrophyton or Gorgonocephalus having slender complexly branched interlacing arms radiating from a central disc
+23301,basket_weave,a cloth woven of two or more threads interlaced to suggest the weave of a basket
+23302,basketball,an inflated ball used in playing basketball
+23303,basketball basketball_game hoops,a game played on a court by two opposing teams of 5 players; points are scored by throwing the ball through an elevated horizontal hoop
+23304,basketball_clinic,a meeting at which basketball players receive special evaluation and instruction
+23305,basketball_coach,a coach of basketball players
+23306,basketball_court,the court on which basketball is played
+23307,basketball_equipment,sports equipment used in playing basketball
+23308,basketball_league,a league of basketball teams
+23309,basketball_play,a play executed by a basketball team
+23310,basketball_player basketeer cager,an athlete who plays basketball
+23311,basketball_score,the score in a basketball game
+23312,basketball_season,the season when basketball is played
+23313,basketball_shot,throwing the basketball toward the hoop; "his shot hit the rim and bounced out"
+23314,basketball_team five,a team that plays basketball
+23315,basketry,the craft of basket making
+23316,basketweaver basketmaker,someone skilled in weaving baskets
+23317,basking_shark Cetorhinus_maximus,large harmless plankton-eating northern shark; often swims slowly or floats at the sea surface
+23318,basophil basophile,a leukocyte with basophilic granules easily stained by basic stains
+23319,basophilia,the tendency of cells to stain with basic dyes; "cytoplasmic basophilia"
+23320,bass,the lowest part of the musical range
+23321,bass,the member with the lowest range of a family of musical instruments
+23322,bass,nontechnical name for any of numerous edible marine and freshwater spiny-finned fishes
+23323,bass bass_part,the lowest part in polyphonic music
+23324,bass bass_voice basso,the lowest adult male singing voice
+23325,bass basso,an adult male singer with the lowest voice
+23326,bass_clarinet,a large clarinet whose range is an octave below the B-flat clarinet
+23327,bass_clef F_clef,a clef that puts the F below middle C on the fourth line of a staff
+23328,bass_drum gran_casa,a large drum with two heads; makes a sound of indefinite but very low pitch
+23329,bass_fiddle bass_viol bull_fiddle double_bass contrabass string_bass,largest and lowest member of the violin family
+23330,bass_guitar,the guitar with six strings that has the lowest pitch
+23331,bass_horn sousaphone tuba,the lowest brass wind instrument
+23332,bassarisk cacomistle cacomixle coon_cat raccoon_fox ringtail ring-tailed_cat civet_cat miner's_cat Bassariscus_astutus,raccoon-like omnivorous mammal of Mexico and the southwestern United States having a long bushy tail with black and white rings
+23333,basset basset_hound,smooth-haired breed of hound with short legs and long ears
+23334,basset_horn,a tenor clarinet; pitched in the key of F below the B-flat clarinet
+23335,bassine,coarse leaf fiber from palmyra palms used in making brushes and brooms
+23336,bassinet,a perambulator that resembles a bassinet
+23337,bassinet,a basket (usually hooded) used as a baby's bed
+23338,bassist,a musician who play the bass viol
+23339,basso_profundo,a very deep bass voice
+23340,bassoon,a double-reed instrument; the tenor of the oboe family
+23341,bassoonist,a musician who plays the bassoon
+23342,basswood linden,soft light-colored wood of any of various linden trees; used in making crates and boxes and in carving and millwork
+23343,bast bast_fiber,strong woody fibers obtained especially from the phloem of from various plants
+23344,bastard by-blow love_child illegitimate_child illegitimate whoreson,the illegitimate offspring of unmarried parents
+23345,bastard mongrel,derogatory term for a variation that is not genuine; something irregular or inferior or of dubious origin; "the architecture was a kind of bastard suggesting Gothic but not true Gothic"
+23346,bastard_feverfew Parthenium_hysterophorus,tropical American annual weed with small radiate heads of white flowers; adventive in southern United States
+23347,bastard_indigo Tephrosia_purpurea,East Indian shrub
+23348,bastard_lignum_vitae Guaiacum_sanctum,small evergreen tree of the southern United States and West Indies a source of lignum vitae wood
+23349,bastard_pennyroyal Trichostema_dichotomum,aromatic plant of the eastern United States
+23350,bastard_toadflax Comandra_pallida,woody creeping parasite of western North America having numerous thick powdery leaves and panicles of small dull-white flowers
+23351,bastard_wing alula spurious_wing,tuft of small stiff feathers on the first digit of a bird's wing
+23352,bastardization,declaring or rendering bastard; "the annulment of their marriage resulted in the bastardization of their children"
+23353,bastardization bastardisation,an act that debases or corrupts
+23354,bastardy illegitimacy bar_sinister,the status of being born to parents who were not married
+23355,baste basting basting_stitch tacking,a loose temporary sewing stitch to hold layers of fabric together
+23356,baster,a cook who bastes roasting meat with melted fat or gravy
+23357,baster,a tube with a rubber bulb used to take up and release melted fat or gravy in order to moisten roasting meat
+23358,baster tacker,a sewer who fastens a garment with long loose stitches
+23359,bastille,a jail or prison (especially one that is run in a tyrannical manner)
+23360,bastinado,a cudgel used to give someone a beating on the soles of the feet
+23361,bastinado falanga,a form of torture in which the soles of the feet are beaten with whips or cudgels
+23362,basting,moistening a roast as it is cooking
+23363,bastion,a group that defends a principle; "a bastion against corruption"; "the last bastion of communism"
+23364,bastion,projecting part of a rampart or other fortification
+23365,bastion citadel,a stronghold into which people could go for shelter during a battle
+23366,bastnasite bastnaesite,a yellow-to-brown mineral that is a source of rare earth elements
+23367,basuco,low-grade cocaine mixed with coca paste and cannabis
+23368,bat,a club used for hitting a ball in various games
+23369,bat at-bat,(baseball) a turn trying to get a hit; "he was at bat when it happened"; "he got four hits in four at-bats"
+23370,bat chiropteran,nocturnal mouselike mammal with forelimbs modified to form membranous wings and anatomical adaptations for echolocation by which they navigate
+23371,bat_boy,(baseball) a boy who takes care of bats and other baseball equipment
+23372,bat_mitzvah bath_mitzvah bas_mitzvah,(Judaism) an initiation ceremony marking the 12th birthday of a Jewish girl and signifying the beginning of religious responsibility
+23373,batch,all the loaves of bread baked at the same time
+23374,batch clutch,a collection of things or persons to be handled together
+23375,batch deal flock good_deal great_deal hatful heap lot mass mess mickle mint mountain muckle passel peck pile plenty pot quite_a_little raft sight slew spate stack tidy_sum wad,(often followed by `of') a large number or amount or extent; "a batch of letters"; "a deal of trouble"; "a lot of money"; "he made a mint on the stock market"; "see the rest of the winners in our huge passel of photos"; "it must have cost plenty"; "a slew of journalists"; "a wad of money"
+23376,batch_processing,the serial execution of computer programs
+23377,batfish,bottom-dweller of warm western Atlantic coastal waters having a flattened scaleless body that crawls about on fleshy pectoral and pelvic fins
+23378,bath,an ancient Hebrew liquid measure equal to about 10 gallons
+23379,bath,a vessel containing liquid in which something is immersed (as to process it or to maintain it at a constant temperature or to lubricate it); "she soaked the etching in an acid bath"
+23380,bath,a soaking and washing in a bathtub; "he has a good bath every morning"
+23381,bath_asparagus Prussian_asparagus Ornithogalum_pyrenaicum,Old World star of Bethlehem having edible young shoots
+23382,bath_chair,a wheelchair usually pushed by an attendant, as at a spa
+23383,bath_linen,linens for use in the bathroom
+23384,bath_mat,a heavy towel or mat to stand on while drying yourself after a bath
+23385,bath_oil,a scented oil added to your bath water
+23386,bath_salts,a preparation that softens or scents a bath
+23387,bath_towel,a large towel; to dry yourself after a bath
+23388,bath_water,water used for a bath
+23389,bathe,the act of swimming for pleasure or recreation; "the Englishman said he had a good bathe"
+23390,bather,a person who takes a bath; "the bathers enjoyed the cool water"
+23391,bathhouse bagnio,a building containing public baths
+23392,bathhouse bathing_machine,a building containing dressing rooms for bathers
+23393,bathing,immersing the body in water or sunshine
+23394,bathing_cap swimming_cap,a tight-fitting cap that keeps hair dry while swimming
+23395,batholith batholite pluton plutonic_rock,large mass of intrusive igneous rock believed to have solidified deep within the earth
+23396,bathos,triteness or triviality of style
+23397,bathrobe,a loose-fitting robe of towelling; worn after a bath or swim
+23398,bathroom,a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet
+23399,bathroom_cleaner,a preparation for cleaning bathrooms
+23400,bathroom_fixture,any fixture in a bathroom
+23401,bathtub bathing_tub tub,a relatively large open container that you fill with water and use to wash the body
+23402,bathtub_gin,homemade gin especially that made illegally
+23403,bathymeter bathometer,an instrument that measures the depth of water
+23404,bathymetry plumbing,measuring the depths of the oceans
+23405,bathyscaphe bathyscaph bathyscape,navigable deep diving vessel for underwater exploration
+23406,bathysphere,spherical deep diving apparatus (lowered by a cable) for underwater exploration
+23407,batik,a dyed fabric; a removable wax is used where the dye is not wanted
+23408,batiste,a thin plain-weave cotton or linen fabric; used for shirts or dresses
+23409,batman,an orderly assigned to serve a British military officer
+23410,baton,a short staff carried by some officials to symbolize an office or an authority
+23411,baton,a hollow metal rod that is wielded or twirled by a drum major or drum majorette
+23412,baton,a hollow cylinder passed from runner to runner in a relay race
+23413,baton wand,a thin tapered rod used by a conductor to lead an orchestra or choir
+23414,baton_twirler twirler,someone who twirls a baton
+23415,batrachomyomachia,a silly altercation
+23416,battalion,an army unit usually consisting of a headquarters and three or more companies
+23417,battalion large_number multitude plurality pack,a large indefinite number; "a battalion of ants"; "a multitude of TV antennas"; "a plurality of religions"
+23418,batten,a strip fixed to something to hold it firm
+23419,batter,a liquid or semiliquid mixture, as of flour, eggs, and milk, used in cooking
+23420,batter hitter slugger batsman,(baseball) a ballplayer who is batting
+23421,batter's_box,an area on a baseball diamond (on either side of home plate) marked by lines within which the batter must stand when at bat
+23422,battering banging,the act of subjecting to strong attack
+23423,battering_ram,a ram used to break down doors of fortified buildings
+23424,battery,group of guns or missile launchers operated together at one place
+23425,battery,a unit composed of the pitcher and catcher
+23426,battery,a collection of related things intended for use together; "took a battery of achievement tests"
+23427,battery assault_and_battery,an assault in which the assailant makes physical contact
+23428,battery electric_battery,a device that produces electricity; may have several primary or secondary cells arranged in parallel or series
+23429,battery stamp_battery,a series of stamps operated in one mortar for crushing ores
+23430,battery_acid electrolyte_acid,dilute sulfuric acid used in storage batteries
+23431,batting,(baseball) the batter's attempt to get on base
+23432,batting batten,stuffing made of rolls or sheets of cotton wool or synthetic fiber
+23433,batting_average,(an extension of the baseball term) the proportion of times some effort succeeds; "the salesman's batting average was 7 out of 12"
+23434,batting_average hitting_average,(baseball) a measure of a batter's performance; the number of base hits divided by the number of official times at bat; "Ted Williams once had a batting average above .400"
+23435,batting_cage cage,a movable screen placed behind home base to catch balls during batting practice
+23436,batting_coach,(baseball) someone who teaches batters how to bat better
+23437,batting_glove,a glove worn by batters in baseball to give a firmer grip on the bat
+23438,batting_helmet,a helmet worn by the batter in baseball
+23439,batting_order card lineup,(baseball) a list of batters in the order in which they will bat; "the managers presented their cards to the umpire at home plate"
+23440,battle conflict fight engagement,a hostile meeting of opposing military forces in the course of a war; "Grant won a decisive victory in the battle of Chickamauga"; "he lost his romantic ideas about war when he got into a real engagement"
+23441,battle-ax battle-axe,a sharp-tongued domineering wife
+23442,battle-ax battle-axe,a broadax used as a weapon
+23443,battle_cruiser,a cruiser of maximum speed and firepower
+23444,battle_damage combat_casualty,loss of military equipment in battle
+23445,battle_dress,a military uniform designed for field service
+23446,battle_fatigue combat_fatigue combat_neurosis shell_shock,a mental disorder caused by stress of active warfare
+23447,battle_flag,a flag that leads troops into battle
+23448,battle_fleet,a fleet of warships prepared for battle
+23449,battle_group,an army unit usually consisting of five companies
+23450,battle_line,the line along which warring troops meet
+23451,battle_of_wits,a contest in which intelligence rather than violence is used
+23452,battle_plan,plan for conducting a battle
+23453,battle_sight battlesight,an arrangement of sights that makes possible the rapid aiming of a firearm at short ranges
+23454,battledore battledore_and_shuttlecock,an ancient racket game
+23455,battlefield battleground field_of_battle field_of_honor field,a region where a battle is being (or has been) fought; "they made a tour of Civil War battlefields"
+23456,battlefront front front_line,the line along which opposing armies face each other
+23457,battlement crenelation crenellation,a rampart built around the top of a castle with regular gaps for firing arrows or guns
+23458,battleship battlewagon,large and heavily armoured warship
+23459,battue,a hunt in which beaters force the game to flee in the direction of the hunter
+23460,batwing,one of a pair of swinging doors (as at the entrance to a western saloon)
+23461,bauble,a mock scepter carried by a court jester
+23462,baud baud_rate,(computer science) a data transmission rate (bits/second) for modems
+23463,bauxite,a clay-like mineral; the chief ore of aluminum; composed of aluminum oxides and aluminum hydroxides; used as an abrasive and catalyst
+23464,bawbee,an old Scottish coin of little value
+23465,bawdry bawdy,lewd or obscene talk or writing; "it was smoking-room bawdry"; "they published a collection of Elizabethan bawdy"
+23466,bawler,a loud weeper; "their new baby is a real bawler"
+23467,bay,the sound of a hound on the scent
+23468,bay,a compartment on a ship between decks; often used as a hospital; "they put him in the sick bay"
+23469,bay,a compartment in an aircraft used for some specific purpose; "he opened the bomb bay"
+23470,bay,a horse of a moderate reddish-brown color
+23471,bay embayment,an indentation of a shoreline larger than a cove but smaller than a gulf
+23472,bay_leaf,dried leaf of the bay laurel
+23473,bay_myrtle puckerbush Myrica_cerifera,evergreen aromatic shrubby tree of southeastern United States having small hard berries thickly coated with white wax used for candles
+23474,bay_rum,an aromatic liquid originally obtained by distilling the leaves of the bayberry tree with rum
+23475,bay_scallop,muscle of small choice shallow-water scallops
+23476,bay_scallop Pecten_irradians,a small scallop inhabiting shallow waters and mud flats of the Atlantic coast of North America
+23477,bay_willow laurel_willow Salix_pentandra,European willow tree with shining leathery leaves; widely naturalized in the eastern United States
+23478,bay_window bow_window,a window that sticks out from the outside wall of a house
+23479,baya Ploceus_philippinus,common Indian weaverbird
+23480,bayat,an oath of allegiance to an emir
+23481,bayberry bay-rum_tree Jamaica_bayberry wild_cinnamon Pimenta_acris,West Indian tree; source of bay rum
+23482,bayberry candleberry swamp_candleberry waxberry Myrica_pensylvanica,deciduous aromatic shrub of eastern North America with grey-green wax-coated berries
+23483,bayberry_wax bayberry_tallow,a fragrant green wax obtained from the wax myrtle and used in making candles
+23484,bayonet,a knife that can be fixed to the end of a rifle and used as a weapon
+23485,bayou,a swampy arm or slow-moving outlet of a lake (term used mainly in Mississippi and Louisiana)
+23486,bazaar bazar,a street of small shops (especially in Orient)
+23487,bazaar bazar,a shop where a variety of goods are sold
+23488,bazaar fair,a sale of miscellany; often for charity; "the church bazaar"
+23489,bazooka,a portable rocket launcher used by infantrymen as an antitank weapon
+23490,bdellium,aromatic gum resin; similar to myrrh
+23491,be-all_and_end-all be_all_and_end_all,the essential factor; the all-important element; the supreme aim; "profit is the be-all and end-all of business"
+23492,beach,an area of sand sloping down to the water of a sea or lake
+23493,beach_ball beachball,large and light ball; for play at the seaside
+23494,beach_erosion,the erosion of beaches
+23495,beach_flea sand_hopper sandhopper sand_flea,small amphipod crustaceans that hop like fleas; common on ocean beaches
+23496,beach_grass,tough grasses with strong roots that can grow on exposed sandy shores
+23497,beach_heather poverty_grass Hudsonia_tomentosa,small heathlike plant covered with white down growing on beaches in northeastern North America
+23498,beach_house,a house built on or near a beach
+23499,beach_pancake Abronia_maritima,plant having hemispherical heads of wine-red flowers; found in coastal dunes from California to Mexico
+23500,beach_pea sea_pea Lathyrus_maritimus Lathyrus_japonicus,wild pea of seashores of north temperate zone having tough roots and purple flowers and useful as a sand binder
+23501,beach_plum,small dark purple fruit used especially in jams and pies
+23502,beach_plum beach_plum_bush Prunus_maritima,seacoast shrub of northeastern North America having showy white blossoms and edible purple fruit
+23503,beach_sand_verbena pink_sand_verbena Abronia_umbellata,prostrate herb having heads of deep pink to white flowers; found in coastal dunes from British Columbia to Baja California
+23504,beach_strawberry Chilean_strawberry Fragaria_chiloensis,wild strawberry of western United States and South America; source of many varieties of cultivated strawberries
+23505,beach_towel,very large towel to dry yourself after swimming
+23506,beach_wagon station_wagon wagon estate_car beach_waggon station_waggon waggon,a car that has a long body and rear door with space behind rear seat
+23507,beachcomber,a vagrant living on a beach
+23508,beachfront,a strip of land running along a beach
+23509,beachhead,a bridgehead on the enemy's shoreline seized by an amphibious operation; "the Germans were desperately trying to contain the Anzio beachhead"
+23510,beachhead foothold,an initial accomplishment that opens the way for further developments; "the town became a beachhead in the campaign to ban smoking outdoors"; "they are presently attempting to gain a foothold in the Russian market"
+23511,beachwear,clothing to be worn at a beach
+23512,beacon beacon_fire,a fire (usually on a hill or tower) that can be seen from a distance
+23513,beacon lighthouse beacon_light pharos,a tower with a light that gives warning of shoals to passing ships
+23514,bead,a small ball with a hole through the middle
+23515,bead_tree jumby_bean jumby_tree Ormosia_monosperma,small tree of West Indies and northeastern Venezuela having large oblong pointed leaflets and panicles of purple flowers; seeds are black or scarlet with black spots
+23516,beaded_lizard Mexican_beaded_lizard Heloderma_horridum,lizard with black and yellowish beadlike scales; of western Mexico
+23517,beading bead beadwork astragal,a beaded molding for edging or decorating furniture
+23518,beading beadwork,ornamentation with beads
+23519,beading_plane,a plane with a concave blade for making moulding with beadwork
+23520,beadle,a minor parish official who serves a ceremonial function
+23521,beads string_of_beads,several beads threaded together on a string
+23522,beadsman bedesman,a person who is paid to pray for the soul of another
+23523,beagle,a small short-legged smooth-coated breed of hound
+23524,beagling,hunting rabbits with beagles
+23525,beak,a beaklike, tapering tip on certain plant structures
+23526,beak,beaklike mouth of animals other than birds (e.g., turtles)
+23527,beak bill neb nib pecker,horny projecting mouth of a bird
+23528,beak honker hooter nozzle snoot snout schnozzle schnoz,informal terms for the nose
+23529,beaked_hazelnut Corylus_cornuta,hazel of western United States with conspicuous beaklike involucres on the nuts
+23530,beaked_salmon sandfish Gonorhynchus_gonorhynchus,fish of sandy areas of western Pacific and Indian oceans having an angular snout for burrowing into sand
+23531,beaked_whale,any of several whales inhabiting all oceans and having beaklike jaws with vestigial teeth in the upper jaw
+23532,beaker,a flatbottomed jar made of glass or plastic; used for chemistry
+23533,beaker,a cup (usually without a handle)
+23534,beam,(nautical) breadth amidships
+23535,beam,the broad side of a ship; "they sighted land on the port beam"
+23536,beam,long thick piece of wood or metal or concrete, etc., used in construction
+23537,beam beam_of_light light_beam ray ray_of_light shaft shaft_of_light irradiation,a column of light (as from a beacon)
+23538,beam ray electron_beam,a group of nearly parallel lines of electromagnetic radiation
+23539,beam-ends,(nautical) at the ends of the transverse deck beams of a vessel; "on her beam-ends" means heeled over on the side so that the deck is almost vertical
+23540,beam_balance,a balance consisting of a lever with two equal arms and a pan suspended from each arm
+23541,bean,any of various seeds or fruits that are beans or resemble beans
+23542,bean bean_plant,any of various leguminous plants grown for their edible seeds and pods
+23543,bean edible_bean,any of various edible seeds of plants of the family Leguminosae used for food
+23544,bean_caper Syrian_bean_caper Zygophyllum_fabago,perennial shrub of the eastern Mediterranean region and southwestern Asia having flowers whose buds are used as capers
+23545,bean_counter,an accountant or bureaucrat who is believed to place undue emphasis on the control of expenditures
+23546,bean_curd tofu,cheeselike food made of curdled soybean milk
+23547,bean_dip,a dip made of cooked beans
+23548,bean_sprout,any of various sprouted beans: especially mung beans or lentils or edible soybeans
+23549,bean_tostada,a flat tortilla topped with refried beans
+23550,bean_tree,any of several trees having seedpods as fruits
+23551,bean_trefoil stinking_bean_trefoil Anagyris_foetida,shrub with trifoliate leaves and yellow flowers followed by backward curving seed pods; leaves foetid when crushed
+23552,bean_weevil Acanthoscelides_obtectus,larvae live in and feed on growing or stored beans
+23553,beanbag,a small cloth bag filled with dried beans; thrown in games
+23554,beanball beaner,a baseball deliberately thrown at the batter's head
+23555,beanfeast,an annual dinner party given by an employer for the employees
+23556,beanie beany,a small skullcap; formerly worn by schoolboys and college freshmen
+23557,beanstalk,stem of a bean plant
+23558,bear,an investor with a pessimistic market outlook; an investor who expects prices to fall and so sells now in order to buy later at a lower price
+23559,bear,massive plantigrade carnivorous or omnivorous mammals with long shaggy coats and strong claws
+23560,bear's-paw_fern Aglaomorpha_meyeniana,epiphytic fern with large fronds; Taiwan and Philippines
+23561,bear's_breech bear's_breeches sea_holly Acanthus_mollis,widely cultivated southern European acanthus with whitish purple-veined flowers
+23562,bear_claw,an incised design resembling the claw of a bear; used in Native American pottery
+23563,bear_claw,claw of a bear; often used in jewelry
+23564,bear_claw bear_paw,almond-flavored yeast-raised pastry shaped in an irregular semicircle resembling a bear's claw
+23565,bear_cub,a young bear
+23566,bear_grass Nolina_microcarpa,stemless plant with tufts of grasslike leaves and erect panicle of minute creamy white flowers; southwestern United States and Mexico
+23567,bear_grass Yucca_glauca,yucca of west central United States having a clump of basal grasslike leaves and a central stalk with a terminal raceme of small whitish flowers
+23568,bear_grass Yucca_smalliana,yucca of southern United States having a clump of basal grasslike leaves and a central stalk with a terminal raceme of small whitish flowers
+23569,bear_hug,a wrestling hold with arms locked tightly around the opponent
+23570,bear_hug,a takeover bid so attractive that the directors of the target company must approve it or risk shareholder protest
+23571,bear_market,a market characterized by falling prices for securities
+23572,bear_oak Quercus_ilicifolia,shrubby oak of southeastern United States usually forming dense thickets
+23573,bearberry,chiefly evergreen subshrubs of northern to Arctic areas
+23574,bearberry possum_haw winterberry Ilex_decidua,deciduous shrub of southeastern and central United States
+23575,bearberry_willow Salix_uva-ursi,dwarf prostrate mat-forming shrub of Arctic and alpine regions of North America and Greenland having deep green elliptic leaves that taper toward the base
+23576,beard,a tuft or growth of hairs or bristles on certain plants such as iris or grasses
+23577,beard,a person who diverts suspicion from someone (especially a woman who accompanies a male homosexual in order to conceal his homosexuality)
+23578,beard,hairy growth on or near the face of certain mammals
+23579,beard face_fungus whiskers,the hair growing on the lower part of a man's face
+23580,beard_lichen beard_moss Usnea_barbata,greenish grey pendulous lichen growing on trees
+23581,beard_worm pogonophoran,slender animal with tentacles and a tubelike outer covering; lives on the deep ocean bottom
+23582,bearded_iris,any of numerous wild or cultivated irises with hairlike structures on the falls (the drooping sepals)
+23583,bearded_seal squareflipper_square_flipper Erignathus_barbatus,medium-sized greyish to yellow seal with bristles each side of muzzle; of the Arctic Ocean
+23584,bearded_vulture lammergeier lammergeyer Gypaetus_barbatus,the largest Eurasian bird of prey; having black feathers hanging around the bill
+23585,bearded_wheatgrass Agropyron_subsecundum,a wheatgrass with straight terminal awns on the flowering glumes
+23586,beardless_iris,any of numerous wild or cultivated irises having no hairs on the drooping sepals (the falls)
+23587,bearer,a messenger who bears or presents; "a bearer of good tidings"
+23588,bearing,relevant relation or interconnection; "those issues have no bearing on our situation"
+23589,bearing,a rotating support placed between moving parts to allow them to move easily
+23590,bearing comportment presence mien,dignified manner or conduct
+23591,bearing heading aim,the direction or path along which something moves or along which it lies
+23592,bearing_brass,a brass bushing or a lining for a bearing
+23593,bearing_rein checkrein,a rein designed to keep the horse's head in the desired position
+23594,bearing_wall,any wall supporting a floor or the roof of a building
+23595,bearnaise,a sauce like hollandaise but made with white wine and tarragon and shallots instead of lemon juice
+23596,bearskin,the pelt of a bear (sometimes used as a rug)
+23597,bearskin busby shako,tall hat; worn by some British soldiers on ceremonial occasions
+23598,beast wolf savage brute wildcat,a cruelly rapacious person
+23599,beast_of_burden jument,an animal such as a donkey or ox or elephant used for transporting loads or doing other heavy work
+23600,beastliness,unpleasant nastiness; used especially of nasty weather
+23601,beastliness meanness,the quality of being deliberately mean
+23602,beat,a single pulsation of an oscillation produced by adding two waves of different frequencies; has a frequency equal to the difference between the two oscillations
+23603,beat,the sound of stroke or blow; "he heard the beat of a drum"
+23604,beat,a regular rate of repetition; "the cox raised the beat"
+23605,beat,a stroke or blow; "the signal was two beats on the steam pipe"
+23606,beat,the act of beating to windward; sailing as close as possible to the direction from which the wind is blowing
+23607,beat round,a regular route for a sentry or policeman; "in the old days a policeman walked a beat and knew all his people by name"
+23608,beat_generation beats beatniks,a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop)
+23609,beater,a worker who rouses wild game from under cover for a hunter
+23610,beater,an implement for beating
+23611,beatification,the action of rendering supremely blessed and extremely happy
+23612,beatification,(Roman Catholic Church) an act of the Pope who declares that a deceased person lived a holy life and is worthy of public veneration; a first step toward canonization
+23613,beating thrashing licking drubbing lacing trouncing whacking,the act of inflicting corporal punishment with repeated blows
+23614,beating whipping,the act of overcoming or outdoing
+23615,beating-reed_instrument reed_instrument reed,a musical instrument that sounds by means of a vibrating reed
+23616,beatnik beat,a member of the beat generation; a nonconformist in dress and behavior
+23617,beats_per_minute bpm metronome_marking M.M.,the pace of music measured by the number of beats occurring in 60 seconds
+23618,beau_geste,a gracious (but usually meaningless) gesture
+23619,beaugregory Pomacentrus_leucostictus,a blue and yellow damselfish of Bermuda and Florida and the West Indies
+23620,beautician cosmetician,someone who works in a beauty parlor
+23621,beautification,the act of making something more beautiful
+23622,beauty,the qualities that give pleasure to the senses
+23623,beauty beaut,an outstanding example of its kind; "his roses were beauties"; "when I make a mistake it's a beaut"
+23624,beauty_bush Kolkwitzia_amabilis,Chinese deciduous shrub with yellow-throated pinkish flowers and bristly fruit; often cultivated as an ornamental
+23625,beauty_consultant,someone who gives you advice about your personal appearance
+23626,beauty_sleep,sleep before midnight
+23627,beauty_spot,a spot that is worn on a lady's face for adornment
+23628,beauty_treatment,enhancement of someone's personal beauty
+23629,beaver,a full beard
+23630,beaver,a movable piece of armor on a medieval helmet used to protect the lower face
+23631,beaver,large semiaquatic rodent with webbed hind feet and a broad flat tail; construct complex dams and underwater lodges
+23632,beaver beaver_fur,the soft brown fur of the beaver
+23633,beaver castor,a hat made with the fur of a beaver (or similar material)
+23634,beaver_board,a light wallboard made of compressed wood pulp
+23635,beaver_rat,amphibious rat of Australia and New Guinea
+23636,beck,a beckoning gesture
+23637,becket,(nautical) a short line with an eye at one end and a knot at the other; used to secure loose items on a ship
+23638,becomingness,the quality of being becoming
+23639,bed,(geology) a stratum of rock (especially sedimentary rock); "they found a bed of sandstone"
+23640,bed,the flat surface of a printing press on which the type form is laid in the last stage of producing a newspaper or magazine or book etc.
+23641,bed,a foundation of earth or rock supporting a road or railroad track; "the track bed had washed away"
+23642,bed,a plot of ground in which plants are growing; "the gardener planted a bed of roses"
+23643,bed,a piece of furniture that provides a place to sleep; "he sat on the edge of the bed"; "the room had only a bed and chair"
+23644,bed bottom,a depression forming the ground under a body of water; "he searched for treasure on the ocean bed"
+23645,bed-wetting,enuresis during sleep; especially common in children (who usually outgrow it)
+23646,bed_and_breakfast bed-and-breakfast,an overnight boardinghouse with breakfast
+23647,bed_check,a check that everyone is in bed by the time they should be
+23648,bed_ground bed-ground bedground,an area on which a drove of cattle or sheep can sleep for a night
+23649,bed_jacket,a lightweight jacket worn over bedclothes (as when sitting in bed)
+23650,bed_linen,linen or cotton articles for a bed (as sheets and pillowcases)
+23651,bed_pillow,a soft pillow for use on a bed
+23652,bedbug bed_bug chinch Cimex_lectularius,bug of temperate regions that infests especially beds and feeds on human blood
+23653,bedclothes bed_clothing bedding,coverings that are used on a bed
+23654,bedder bedding_plant,an ornamental plant suitable for planting in a flowerbed
+23655,bedding_material bedding litter,material used to provide a bed for animals
+23656,bedfellow,a temporary associate; "politics makes strange bedfellows"
+23657,bedfellow,a person with whom you share a bed
+23658,bedlamite,an archaic term for a lunatic
+23659,bedpan,a shallow vessel used by a bedridden patient for defecation and urination
+23660,bedpost,any of 4 vertical supports at the corners of a bedstead
+23661,bedrest bed_rest,confinement to bed continuously (as in the case of some sick or injured persons)
+23662,bedrock,solid unweathered rock lying beneath surface deposits of soil
+23663,bedroll,bedding rolled up for carrying
+23664,bedroom sleeping_room sleeping_accommodation chamber bedchamber,a room used primarily for sleeping
+23665,bedroom_community,a community where many commuters live
+23666,bedroom_furniture,furniture intended for use in a bedroom
+23667,bedroom_suite bedroom_set,a suite of furniture for the bedroom
+23668,bedside,space by the side of a bed (especially the bed of a sick or dying person); "the doctor stood at her bedside"
+23669,bedside_manner,manner or conduct of a physician in the presence of a patient
+23670,bedsitting_room bedsitter bedsit,a furnished sitting room with sleeping accommodations (and some plumbing)
+23671,bedsore pressure_sore decubitus_ulcer,a chronic ulcer of the skin caused by prolonged pressure on it (as in bedridden patients)
+23672,bedspread bedcover bed_cover bed_covering counterpane spread,decorative cover for a bed
+23673,bedspring,(usually in the plural) one of the springs holding up the mattress of a bed
+23674,bedstead bedframe,the framework of a bed
+23675,bedstraw,any of several plants of the genus Galium
+23676,bedtime,the time you go to bed
+23677,bedwetter bed_wetter wetter,someone suffering from enuresis; someone who urinates while asleep in bed
+23678,bee,a social gathering to carry out some communal task or to hold competitions
+23679,bee,any of numerous hairy-bodied insects including social and solitary species
+23680,bee_balm beebalm Monarda_fistulosa,perennial herb of North America
+23681,bee_balm beebalm bergamot_mint oswego_tea Monarda_didyma,perennial aromatic herb of eastern North America having variously colored tubular flowers in dense showy heads
+23682,bee_beetle,European beetle; infests beehives
+23683,bee_eater,colorful chiefly tropical Old World bird having a strong graceful flight; feeds on especially bees
+23684,bee_fly,hairy nectar-eating fly that resembles a bee; larvae are parasitic on larvae of bees and related insects
+23685,bee_moth wax_moth Galleria_mellonella,moth whose larvae live in and feed on bee honeycombs
+23686,bee_orchid Ophrys_apifera,European orchid whose flowers resemble bumble bees in shape and color
+23687,bee_sting,a sting inflicted by a bee
+23688,beebread ambrosia,a mixture of nectar and pollen prepared by worker bees and fed to larvae
+23689,beech beech_tree,any of several large deciduous trees with rounded spreading crowns and smooth grey bark and small sweet edible triangular nuts enclosed in burs; north temperate regions
+23690,beech beechwood,wood of any of various beech trees; used for flooring and containers and plywood and tool handles
+23691,beech_fern,any fern of the genus Phegopteris having deeply cut triangular fronds
+23692,beechnut,small sweet triangular nut of any of various beech trees
+23693,beef beef_cattle,cattle that are reared for their meat
+23694,beef boeuf,meat from an adult domestic bovine
+23695,beef_Bourguignonne boeuf_Bourguignonne,beef and mushrooms and onions stewed in red wine and seasonings
+23696,beef_Stroganoff,sauteed strips of beef and mushrooms in sour cream sauce served with noodles
+23697,beef_Wellington filet_de_boeuf_en_croute,rare-roasted beef tenderloin coated with mushroom paste in puff pastry
+23698,beef_broth beef_stock,a stock made with beef
+23699,beef_burrito,a burrito with a beef filling
+23700,beef_fondue boeuf_fondu_bourguignon,cubes of beef cooked in hot oil and then dipped in various tasty sauces
+23701,beef_goulash,meat is browned before stewing
+23702,beef_jerky,strips of dried beef
+23703,beef_loin,cut of meat from a loin of beef
+23704,beef_neck,a cut of beef from the neck of the animal
+23705,beef_roast roast_beef,cut of beef suitable for roasting
+23706,beef_stew,a stew made with beef
+23707,beef_tallow,tallow obtained from a bovine animal
+23708,beef_tea Bovril,an extract of beef (given to people who are ill)
+23709,beef_tenderloin,beef loin muscle
+23710,beef_tongue,the tongue of a cow eaten as meat
+23711,beefcake,a photograph of a muscular man in minimal attire
+23712,beefsteak,a beef steak usually cooked by broiling
+23713,beefsteak_begonia kidney_begonia Begonia_erythrophylla Begonia_feastii,rhizomatous begonia with roundish fleshy leaves reddish colored beneath
+23714,beefsteak_fungus Fistulina_hepatica,a popular edible fungus with a cap the color of liver or raw meat; abundant in southeastern United States
+23715,beefsteak_plant Perilla_frutescens_crispa,plant grown for its ornamental red or purple foliage
+23716,beefsteak_plant beef_plant Iresine_herbstii Iresine_reticulata,South American plant having green to purple or red branches with green to purple ornamental foliage and spikes of insignificant woolly flowers with dry membranous bracts
+23717,beefsteak_tomato,any of several large tomatoes with thick flesh
+23718,beefwood,any of several heavy hard reddish chiefly tropical woods of the families Casuarinaceae and Proteaceae; some used for cabinetwork
+23719,beefwood,any of several Australian trees of the genus Casuarina yielding heavy hard red wood used in cabinetwork
+23720,beefwood Grevillea_striata,tree yielding hard heavy reddish wood
+23721,beehive,a hairdo resembling a beehive
+23722,beehive,any workplace where people are very busy
+23723,beehive hive,a structure that provides a natural habitation for bees; as in a hollow tree
+23724,beehive hive,a man-made receptacle that houses a swarm of bees
+23725,beekeeper apiarist apiculturist,a farmer who keeps bees for their honey
+23726,beekeeping apiculture,the cultivation of bees on a commercial scale for the production of honey
+23727,beeline,the most direct route; "he made a beeline for the bathroom"
+23728,beep bleep,a short high tone produced as a signal or warning
+23729,beeper pager,an electronic device that generates a series of beeps when the person carrying it is being paged
+23730,beer,a general name for alcoholic beverages made by fermenting a cereal (or mixture of cereals) flavored with hops
+23731,beer_barrel beer_keg,a barrel that holds beer
+23732,beer_bottle,a bottle that holds beer
+23733,beer_can,a can that holds beer
+23734,beer_drinker ale_drinker,someone whose favorite drink is beer or ale
+23735,beer_garden,tavern with an outdoor area (usually resembling a garden) where beer and other alcoholic drinks are served
+23736,beer_glass,a relatively large glass for serving beer
+23737,beer_hall,a hall or barroom featuring beer and (usually) entertainment
+23738,beer_mat,a drip mat placed under a glass of beer
+23739,beer_mug stein,a mug intended for serving beer
+23740,beeswax,a yellow to brown wax secreted by honeybees to build honeycombs
+23741,beet beetroot,round red root vegetable
+23742,beet common_beet Beta_vulgaris,biennial Eurasian plant usually having a swollen edible root; widely cultivated as a food crop
+23743,beet_armyworm Spodoptera_exigua,moth larva that eats foliage of beets and other vegetables
+23744,beet_blight,a disease of beet plants
+23745,beet_green,young leaves of the beetroot
+23746,beet_sugar,sugar made from sugar beets
+23747,beet_sugar,sugar from sugar beets used as sweetening agent
+23748,beetle,insect having biting mouthparts and front wings modified to form horny covers overlying the membranous rear wings
+23749,beetroot Beta_vulgaris_rubra,beet having a massively swollen red root; widely grown for human consumption
+23750,befoulment defilement pollution,the state of being polluted
+23751,beggar mendicant,a pauper who lives by begging
+23752,beggar's_lice beggar_lice,Eurasian and North American plants having small prickly nutlets that stick to clothing
+23753,beggar-my-neighbor beggar-my-neighbour strip-Jack-naked,a card game for two players in which the object is to win all of the other player's cards
+23754,beggar-my-neighbor_policy beggar-my-neighbour_policy beggar-my-neighbor_strategy beggar-my-neighbour_strategy,a policy of promoting oneself at the expense of others; used especially of national policy; "the United States has pursued a beggar-my-neighbor policy"
+23755,beggarman,a man who is a beggar
+23756,beggarweed Desmodium_tortuosum Desmodium_purpureum,West Indian forage plant cultivated in southern United States as forage and to improve soil
+23757,beggarwoman,a woman who is a beggar
+23758,beggary begging mendicancy,a solicitation for money or food (especially in the street by an apparently penniless person)
+23759,beggary mendicancy mendicity,the state of being a beggar or mendicant; "they were reduced to mendicancy"
+23760,beginning,the event consisting of the start of something; "the beginning of the war"
+23761,beginning,the first part or section of something; "`It was a dark and stormy night' is a hackneyed beginning for a story"
+23762,beginning commencement first outset get-go start kickoff starting_time showtime offset,the time at which something is supposed to begin; "they got an early start"; "she knew from the get-go that he was the man for her"
+23763,beginning origin root rootage source,the place where something begins, where it springs into being; "the Italian beginning of the Renaissance"; "Jupiter was the origin of the radiation"; "Pittsburgh is the source of the Ohio River"; "communism's Russian root"
+23764,beginning start commencement,the act of starting something; "he was responsible for the beginning of negotiations"
+23765,begonia,any of numerous plants of the genus Begonia grown for their attractive glossy asymmetrical leaves and colorful flowers in usually terminal cymes or racemes
+23766,beguilement distraction,an entertainment that provokes pleased interest and distracts you from worries and vexations
+23767,beguine,music written in the bolero rhythm of the beguine dance
+23768,beguine,a ballroom dance that originated in the French West Indies; similar to the rumba
+23769,begum,a Muslim woman of high rank in India or Pakistan
+23770,behalf,for someone's benefit (usually expressed as `in behalf' rather than `on behalf' and usually with a possessive); "in your behalf"; "campaigning in his own behalf"; "spoke a good word in his friend's behalf"
+23771,behalf,as the agent of or on someone's part (usually expressed as `on behalf of' rather than `in behalf of'); "the guardian signed the contract on behalf of the minor child"; "this letter is written on behalf of my client"
+23772,behavior behaviour,the action or reaction of something (as a machine or substance) under specified circumstances; "the behavior of small particles can be studied in experiments"
+23773,behavior behaviour,(psychology) the aggregate of the responses or reactions or movements made by an organism in any situation
+23774,behavior behaviour conduct doings,manner of acting or controlling yourself
+23775,behavior_therapy behavior_modification,psychotherapy that seeks to extinguish or inhibit abnormal or maladaptive behavior by reinforcing desired behavior and extinguishing undesired behavior
+23776,behaviorism behaviourism behavioristic_psychology behaviouristic_psychology,an approach to psychology that emphasizes observable measurable behavior
+23777,behaviorist behaviourist,a psychologist who subscribes to behaviorism
+23778,behest,an authoritative command or request
+23779,beige ecru,a very light brown
+23780,being beingness existence face_of_the_earth,the state or fact of existing; "a point of view gradually coming into being"; "laws in existence for centuries"; "he appeared on the face of the earth one day"
+23781,bel_canto,a style of operatic singing
+23782,bel_esprit,a witty or clever person with a fine mind
+23783,belay,something to which a mountain climber's rope can be secured
+23784,belaying_pin,a wood or metal bar to which a rope can be secured (as on a ship or in mountain climbing)
+23785,belch belching burp burping eructation,a reflex that expels gas noisily from the stomach through the mouth
+23786,belching,the forceful expulsion of something from inside; "the belching of smoke from factory chimneys"
+23787,beldam beldame,a woman of advanced age
+23788,belemnite,a conical calcareous fossil tapering to a point at one end and with a conical cavity at the other end containing (when unbroken) a small chambered phragmocone from the shell of any of numerous extinct cephalopods of the family Belemnitidae
+23789,belfry,a room (often at the top of a tower) where bells are hung
+23790,belief,any cognitive content held as true
+23791,believer truster,a supporter who accepts something as true
+23792,believer worshiper worshipper,a person who has religious faith
+23793,believing,the cognitive process that leads to convictions; "seeing is believing"
+23794,belittling,the act of belittling
+23795,bell,the flared opening of a tubular device
+23796,bell,a hollow device made of metal that makes a ringing sound when struck
+23797,bell bell_shape campana,the shape of a bell
+23798,bell ship's_bell,(nautical) each of the eight half-hour units of nautical time signaled by strokes of a ship's bell; eight bells signals 4:00, 8:00, or 12:00 o'clock, either a.m. or p.m.
+23799,bell toll,the sound of a bell being struck; "saved by the bell"; "she heard the distant toll of church bells"
+23800,bell-like_call,a birdcall that resembles the tone of a bell
+23801,bell_apple sweet_cup water_lemon yellow_granadilla,the edible yellow fruit of the Jamaica honeysuckle
+23802,bell_arch,a round arch resting on corbels
+23803,bell_book,a logbook in which all orders concerning the main engines of a ship are recorded
+23804,bell_buoy gong_buoy,a buoy with a bell on it
+23805,bell_captain,the supervisor of bellboys in a hotel
+23806,bell_cote bell_cot,a small shelter for bells; has a gable or shed roof
+23807,bell_deck,a floor under the bells of an open belfry
+23808,bell_founder,a person who casts metal bells
+23809,bell_foundry,a foundry where bells are cast
+23810,bell_gable,an extension of a gable that serves as a bell cote
+23811,bell_heather heather_bell fine-leaved_heath Erica_cinerea,common low European shrub with purple-red flowers
+23812,bell_jar bell_glass,a bell-shaped glass cover used to protect and display delicate objects or to cover scientific apparatus or to contain gases
+23813,bell_metal,bronze with 3 or 4 parts copper to 1 part tin; used in making bells
+23814,bell_pepper,large bell-shaped sweet pepper in green or red or yellow or orange or black varieties
+23815,bell_push,a button that is pushed to ring a bell
+23816,bell_ringer,someone who plays musical handbells
+23817,bell_ringer bull's_eye mark home_run,something that exactly succeeds in achieving its goal; "the new advertising campaign was a bell ringer"; "scored a bull's eye"; "hit the mark"; "the president's speech was a home run"
+23818,bell_ringing,the sound of someone playing a set of bells
+23819,bell_ringing carillon carillon_playing,playing a set of bells that are (usually) hung in a tower
+23820,bell_seat balloon_seat,a seat that has a bell shape (on some 18th century chairs)
+23821,bell_tent,a bell-shaped tent
+23822,bell_tower,a tower that supports or shelters a bell
+23823,belladonna,an alkaloidal extract or tincture of the poisonous belladonna plant that is used medicinally
+23824,belladonna belladonna_plant deadly_nightshade Atropa_belladonna,perennial Eurasian herb with reddish bell-shaped flowers and shining black berries; extensively grown in United States; roots and leaves yield atropine
+23825,belladonna_lily naked_lady Amaryllis_belladonna,amaryllis of South Africa often cultivated for its fragrant white or rose flowers
+23826,bellarmine longbeard long-beard greybeard,a stoneware drinking jug with a long neck; decorated with a caricature of Cardinal Bellarmine (17th century)
+23827,bellbird,any of several tropical American birds of the genus Procnias having a bell-like call
+23828,bellbottom_trousers bell-bottoms bellbottom_pants,(used in the plural) trousers with legs that flare; worn by sailors; absurdly wide hems were fashionable in the 1960s
+23829,bellboy bellman bellhop,someone employed as an errand boy and luggage carrier around hotels
+23830,belle,a young woman who is the most charming and beautiful of several rivals; "she was the belle of the ball"
+23831,belles-lettres belles_lettres,creative writing valued for esthetic content
+23832,bellicosity bellicoseness,a natural disposition to fight
+23833,belligerence belligerency,hostile or warlike attitude or nature
+23834,bellow bellowing holla holler hollering hollo holloa roar roaring yowl,a very loud utterance (like the sound of an animal); "his bellow filled the hallway"
+23835,bellows,(used in the plural) a mechanical device that blows a strong current of air; used to make a fire burn more fiercely or to sound a musical instrument
+23836,bellpull,a handle or cord that is pulled to ring a doorbell or a servant's bell etc.
+23837,bellwether,someone who assumes leadership of a movement or activity
+23838,bellwether,sheep that leads the herd often wearing a bell
+23839,bellwort merry_bells wild_oats,any of various plants of the genus Uvularia having yellowish drooping bell-shaped flowers
+23840,belly,a part that bulges deeply; "the belly of a sail"
+23841,belly,the hollow inside of something; "in the belly of the ship"
+23842,belly,the underpart of the body of certain vertebrates such as snakes or fish
+23843,belly paunch,a protruding abdomen
+23844,belly_dance belly_dancing danse_du_ventre,a Middle Eastern dance in which the dancer makes sensuous movements of the hips and abdomen
+23845,belly_dancer exotic_belly_dancer exotic_dancer,a woman who performs a solo belly dance
+23846,belly_flop belly_flopper belly_whop belly_whopper,a dive in which the abdomen bears the main force of impact with the water
+23847,belly_laugh sidesplitter howler thigh-slapper scream wow riot,a joke that seems extremely funny
+23848,bellyband,a cloth band that is worn around the waist (as on infants until the navel has healed)
+23849,bellyband,a strap around the belly of a draft animal holding the shafts of a wagon
+23850,bellyful,an undesirable overabundance; "a bellyful of your complaints"
+23851,belonging,happiness felt in a secure relationship; "with his classmates he felt a sense of belonging"
+23852,beloved dear dearest honey love,a beloved person; used as terms of endearment
+23853,belt,an elongated region where a specific condition or characteristic is found; "a belt of high pressure"
+23854,belt,endless loop of flexible material between two rotating shafts or pulleys
+23855,belt,a band to tie or buckle around the body (usually at the waist)
+23856,belt belt_ammunition belted_ammunition,ammunition (usually of small caliber) loaded in flexible linked strips for use in a machine gun
+23857,belt_buckle,the buckle used to fasten a belt
+23858,belt_maker,a maker of belts
+23859,belted_kingfisher Ceryle_alcyon,greyish-blue North American kingfisher with a chestnut band on its chest
+23860,belted_sandfish Serranus_subligarius,found in warm shallow waters of western Atlantic
+23861,belting,the material of which belts are made
+23862,beltway bypass ring_road ringway,a highway that encircles an urban area so that traffic does not have to pass through the center
+23863,beluga hausen white_sturgeon Acipenser_huso,valuable source of caviar and isinglass; found in Black and Caspian seas
+23864,beluga_caviar,roe of beluga sturgeon usually from Russia; highly valued
+23865,belvedere,a gazebo sited to command a fine view
+23866,ben,a mountain or tall hill; "they were climbing the ben"
+23867,bench,the reserve players on a team; "our team has a strong bench"
+23868,bench,(law) the seat for judges in a courtroom
+23869,bench,a long seat for more than one person
+23870,bench_clamp,a clamp used to hold work in place on a workbench
+23871,bench_hook,any of various stops on a workbench against which work can be pushed (as while chiseling or planing)
+23872,bench_lathe,lathe mounted on a workbench
+23873,bench_press,a small punch press mounted on a workbench
+23874,bench_press,a weightlift in which you lie on your back on a bench and press weights upward
+23875,bench_warmer,(sports) a substitute who seldom plays
+23876,bench_warrant arrest_warrant,a warrant authorizing law enforcement officials to apprehend an offender and bring that person to court
+23877,benchmark,a standard by which something can be measured or judged; "his painting sets the benchmark of quality"
+23878,benchmark bench_mark,a surveyor's mark on a permanent object of predetermined position and elevation used as a reference point
+23879,bend bend_dexter,diagonal line traversing a shield from the upper right corner to the lower left
+23880,bend crook twist turn,a circular segment of a curve; "a bend in the road"; "a crook in the path"
+23881,bend curve,curved segment (of a road or river or railroad track etc.)
+23882,bendability pliability,the property of being easily bent without breaking
+23883,bender,a tool for bending; "he used pliers as a bender"
+23884,bending,the act of bending something
+23885,bending bend,movement that causes the formation of a curve
+23886,benedick benedict,a newly married man (especially one who has long been a bachelor)
+23887,benedictine,a French liqueur originally made by Benedictine monks
+23888,benediction blessing,a ceremonial prayer invoking divine protection
+23889,benefaction,a contribution of money or assistance
+23890,benefactive_role beneficiary,the semantic role of the intended recipient who benefits from the happening denoted by the verb in the clause
+23891,benefactor helper,a person who helps people or institutions (especially with financial help)
+23892,benefactress,a woman benefactor
+23893,benefice ecclesiastical_benefice,an endowed church office giving income to its holder
+23894,beneficence,doing good; feeling beneficent
+23895,beneficence,the quality of being kind or helpful or generous
+23896,beneficiary donee,the recipient of funds or other benefits
+23897,benefit,financial assistance in time of need
+23898,benefit,a performance to raise money for a charitable cause
+23899,benefit welfare,something that aids or promotes well-being; "for the benefit of all"
+23900,benefit_concert,a concert given for the benefit of some charitable cause
+23901,benefit_of_clergy,sanction by a religious rite; "they are living together without benefit of clergy"
+23902,benevolence,disposition to do good
+23903,benevolence,an inclination to do kind or charitable acts
+23904,benevolence benefaction,an act intending or showing kindness and good will
+23905,benign_prostatic_hyperplasia BPH,enlarged prostate; appears to be part of the natural aging process
+23906,benign_tumor benign_tumour nonmalignant_tumor nonmalignant_tumour nonmalignant_neoplasm,a tumor that is not cancerous
+23907,benignity benignancy graciousness,the quality of being kind and gentle
+23908,benison,a spoken blessing
+23909,bennet white_avens Geum_canadense,North American white-flowered avens
+23910,bennet white_avens Geum_virginianum,avens of Virginia having pale or greenish yellow flowers
+23911,bent,an area of grassland unbounded by fences or hedges
+23912,bent bent_grass bent-grass,grass for pastures and lawns especially bowling and putting greens
+23913,bent knack hang,a special way of doing something; "he had a bent for it"; "he had a special knack for getting into trouble"; "he couldn't get the hang of it"
+23914,bent set,a relatively permanent inclination to react in a particular way; "the set of his mind was obvious"
+23915,bent_hang,a hang performed with the elbows bent
+23916,benthos,organisms (plants and animals) that live at or near the bottom of a sea
+23917,benthos benthic_division benthonic_zone,a region including the bottom of the sea and the littoral zones
+23918,bentonite,an absorbent aluminum silicate clay formed from volcanic ash
+23919,bentwood,wood that is steamed until it becomes pliable and then is shaped for use in making furniture; "bentwood chairs"
+23920,benzene benzine benzol,a colorless liquid hydrocarbon; highly flammable; carcinogenic; the simplest of the aromatic compounds
+23921,benzene_formula benzene_ring benzene_nucleus Kekule_formula,a closed chain of 6 carbon atoms with hydrogen atoms attached
+23922,benzoate,any salt or ester of benzoic acid
+23923,benzoate_of_soda sodium_benzoate,a white crystalline salt used as a food preservative and antiseptic
+23924,benzocaine ethyl_aminobenzoate,a white crystalline ester used as a local anesthetic
+23925,benzodiazepine,any of several similar lipophilic amines used as tranquilizers or sedatives or hypnotics or muscle relaxants; chronic use can lead to dependency
+23926,benzofuran coumarone cumarone,a colorless oily compound extracted from coal tar and used in manufacturing synthetic resins
+23927,benzoic_acid,a white crystalline solid occurring in many resins
+23928,benzoin gum_benzoin benjamin gum_benjamin asa_dulcis,gum resin used especially in treating skin irritation
+23929,benzoyl_group benzoyl_radical,the univalent radical derived from benzoic acid
+23930,benzoyl_peroxide,a white crystalline peroxide used in bleaching (flour or oils or fats) and as a catalyst for free radical reactions
+23931,benzyl benzyl_group benzyl_radical,the univalent radical derived from toluene
+23932,bequest legacy,(law) a gift of personal property by will
+23933,berating blowing_up,a severe rebuke; "he deserved the berating that the coach gave him"
+23934,bereaved bereaved_person,a person who has suffered the death of someone they loved; "the bereaved do not always need to be taken care of"
+23935,beret,a cap with no brim or bill; made of soft cloth
+23936,bergamot bergamot_orange Citrus_bergamia,small tree with pear-shaped fruit whose oil is used in perfumery; Italy
+23937,bergamot_mint lemon_mint eau_de_cologne_mint Mentha_citrata,mint with leaves having perfume like that of the bergamot orange
+23938,bergenia,any plant of the genus Bergenia; valued as an evergreen ground cover and for the spring blossoms
+23939,beriberi,avitaminosis caused by lack of thiamine (vitamin B1)
+23940,berk,a stupid person who is easy to take advantage of
+23941,berkelium Bk atomic_number_97,a radioactive transuranic element; discovered by bombarding americium with helium
+23942,berlin,a limousine with a glass partition between the front and back seats
+23943,berm,a narrow ledge or shelf typically at the top or bottom of a slope
+23944,beroe,delicately iridescent thimble-shaped ctenophores
+23945,berry,a small fruit having any of various structures, e.g., simple (grape or blueberry) or aggregate (blackberry or raspberry)
+23946,berry,any of numerous small and pulpy edible fruits; used as desserts or in making jams and jellies and preserves
+23947,berserker berserk,one of the ancient Norse warriors legendary for working themselves into a frenzy before a battle and fighting with reckless savagery and insane fury
+23948,berth bunk built_in_bed,a bed on a ship or train; usually in tiers
+23949,beryl,the chief source of beryllium; colored transparent varieties are valued as gems
+23950,beryllium Be glucinium atomic_number_4,a light strong brittle grey toxic bivalent metallic element
+23951,beryllium_bronze,a copper-base alloy containing beryllium
+23952,besieger,an energetic petitioner
+23953,besieger,an enemy who lays siege to your position
+23954,besom,a broom made of twigs tied together on a long handle
+23955,best,the supreme effort one can make; "they did their best"
+23956,best topper,the person who is most outstanding or excellent; someone who tops all others; "he could beat the best of them"
+23957,best_evidence_rule,a rule of evidence requiring that to prove the content of a writing or recording or photograph the original is required
+23958,best_friend,the one friend who is closest to you
+23959,best_man,the principal groomsman at a wedding
+23960,best_seller bestseller,a book that has had a large and rapid sale
+23961,bestiality,the stupid brutal quality of a beast
+23962,bestiality zooerastia zooerasty sodomy,sexual activity between a person and an animal
+23963,bestiary,a medieval book (usually illustrated) with allegorical and amusing descriptions of real and fabled animals
+23964,bestowal bestowment,a gift that is bestowed or conferred
+23965,bestowal bestowment conferral conferment,the act of conferring an honor or presenting a gift
+23966,bet wager,the act of gambling; "he did it on a bet"
+23967,beta,the 2nd letter of the Greek alphabet
+23968,beta-carotene,an isomer of carotene that is found in dark green and dark yellow fruits and vegetables
+23969,beta-hydroxybutyric_acid,beta derivative of hydroxybutyric acid that is found in the blood and urine in some cases of impaired metabolism
+23970,beta-interferon,a form of interferon that is produced by fibroblasts and have antiviral effects; used in the treatment of multiple sclerosis
+23971,beta-naphthol,an isomer of naphthol used in rubber as an antioxidant
+23972,beta_blocker beta-blocking_agent beta-adrenergic_blocker beta-adrenergic_blocking_agent,any of various drugs used in treating hypertension or arrhythmia; decreases force and rate of heart contractions by blocking beta-adrenergic receptors of the autonomic nervous system
+23973,beta_blocker_eyedrop,a treatment for glaucoma; the eyedrops reduce intraocular pressure by reducing the production of aqueous humor
+23974,beta_cell,a cell that produces insulin in the isles of Langerhans in the pancreas
+23975,beta_decay,radioactive decay of an atomic nucleus that is accompanied by the emission of a beta particle
+23976,beta_endorphin,an endorphin produced by the pituitary gland that suppresses pain
+23977,beta_iron,an allotrope of iron that is the same as alpha iron except that it is nonmagnetic; stable between 768 and 906 degrees centigrade
+23978,beta_particle,a high-speed electron or positron emitted in the decay of a radioactive isotope
+23979,beta_radiation beta_ray electron_radiation,radiation of beta particles during radioactive decay
+23980,beta_receptor beta-adrenergic_receptor beta-adrenoceptor,receptors postulated to exist on nerve cell membranes of the sympathetic nervous system in order to explain the specificity of certain agents that affect only some sympathetic activities (such as vasodilation and increased heart beat)
+23981,beta_rhythm beta_wave,the normal brainwave in the encephalogram of a person who is awake and alert; occurs with a frequency between 12 and 30 hertz
+23982,beta_software,software that has not yet been released but has received an alpha test and still has more bugs than a regular release; "beta software is usually available only to particular users who will test it"
+23983,beta_test,(computer science) a second test of an experimental product (such as computer software) carried out by an outside organization
+23984,betaine,a sweet tasting alkaloid that occurs in sugar beets
+23985,betatron induction_accelerator,accelerates a continuous beam of electrons to high speeds by means of the electric field produced by changing magnetic flux
+23986,betel betel_pepper Piper_betel,Asian pepper plant whose leaves are chewed with betel nut (seed of the betel palm) by southeast Asians
+23987,betel_leaf betel,a leaf of a vine from the betel pepper
+23988,betel_nut areca_nut,seed of betel palm; chewed with leaves of the betel pepper and lime as a digestive stimulant and narcotic in southeastern Asia
+23989,betel_palm Areca_palm Areca_catechu,southeastern Asian palm bearing betel nuts (scarlet or orange single-seeded fruit with a fibrous husk)
+23990,beth,the 2nd letter of the Hebrew alphabet
+23991,bethel,a house of worship (especially one for sailors)
+23992,betrayal,the quality of aiding an enemy
+23993,betrothal espousal,the act of becoming betrothed or engaged
+23994,betrothal troth engagement,a mutual promise to marry
+23995,betrothed,the person to whom you are engaged
+23996,better,a superior person having claim to precedence; "the common man has been kept in his place by his betters"
+23997,better,the superior one of two alternatives; "chose the better of the two"
+23998,better,something superior in quality or condition or effect; "a change for the better"
+23999,betterment,an improvement that adds to the value of a property or facility
+24000,betting_shop,a licensed bookmaker's shop that is not at the race track
+24001,bettong,short-nosed rat kangaroo
+24002,bettor better wagerer punter,someone who bets
+24003,bevatron,a cyclotron that accelerates protons up to several billion electron volts
+24004,bevel bevel_square,a hand tool consisting of two rules that are hinged together so you can draw or measure angles of any size
+24005,bevel cant chamfer,two surfaces meeting at an angle different from 90 degrees
+24006,bevel_gear pinion_and_crown_wheel pinion_and_ring_gear,gears that mesh at an angle
+24007,beverage drink drinkable potable,any liquid suitable for drinking; "may I take your beverage order?"
+24008,bevy,a large gathering of people of a particular type; "he was surrounded by a bevy of beauties in bathing attire"; "a bevy of young beach boys swarmed around him"
+24009,bevy,a flock of birds (especially when gathered close together on the ground); "we were visited at breakfast by a bevy of excited ducks"
+24010,bewilderment obfuscation puzzlement befuddlement mystification bafflement bemusement,confusion resulting from failure to understand
+24011,bewitchery beguilement animal_magnetism,magnetic personal charm
+24012,bey,(formerly) a title of respect for a man in Turkey or Egypt; "he introduced me to Ahmet Bey"
+24013,bey,the governor of a district or province in the Ottoman Empire
+24014,bezant bezzant byzant solidus,a gold coin of the Byzantine Empire; widely circulated in Europe in the Middle Ages
+24015,bezel,a sloping edge on a cutting tool
+24016,bezoar_goat pasang Capra_aegagrus,wild goat of Iran and adjacent regions
+24017,bhakti,(Hinduism) loving devotion to a deity leading to salvation and nirvana; open to all persons independent of caste or sex
+24018,bhang,a preparation of the leaves and flowers of the hemp plant; much used in India
+24019,bi-fold_door,an interior door
+24020,bialy bialystoker,flat crusty-bottomed onion roll
+24021,bias prejudice preconception,a partiality that prevents objective consideration of an issue or situation
+24022,biauriculate_heart,a heart (as of mammals and birds and reptiles) having two auricles
+24023,bib,top part of an apron; covering the chest
+24024,bib,a napkin tied under the chin of a child while eating
+24025,bib-and-tucker,an attractive outfit; "she wore her best bib-and-tucker"
+24026,bible,a book regarded as authoritative in its field
+24027,bibliographer,someone trained in compiling bibliographies
+24028,bibliography,a list of writings with time and place of publication (such as the writings of a single author or the works referred to in preparing a document etc.)
+24029,bibliolatry Bible-worship,the worship of the Bible
+24030,bibliomania,preoccupation with the acquisition and possession of books
+24031,bibliophile booklover book_lover,someone who loves (and usually collects) books
+24032,bibliopole bibliopolist,a dealer in secondhand books (especially rare or curious books)
+24033,bibliotheca,a collection of books
+24034,bibliotics,the scientific study of documents and handwriting etc. especially to determine authorship or authenticity
+24035,bibliotist,someone who engages in bibliotics
+24036,bicameral_script,a script having two distinct cases
+24037,bicarbonate hydrogen_carbonate,a salt of carbonic acid (containing the anion HCO3) in which one hydrogen atom has been replaced; an acid carbonate
+24038,bicarbonate_of_soda sodium_hydrogen_carbonate sodium_bicarbonate baking_soda saleratus,a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid
+24039,bicentennial bicentenary,the 200th anniversary (or the celebration of it)
+24040,biceps,any skeletal muscle having two origins (but especially the muscle that flexes the forearm)
+24041,biceps_brachii musculus_biceps_brachii biceps_humeri,a muscle that flexes and supinates the forearm
+24042,bichromate dichromate,a salt of the hypothetical dichromic acid
+24043,bicker bickering spat tiff squabble pettifoggery fuss,a quarrel about petty points
+24044,bicolor_lespediza ezo-yama-hagi Lespedeza_bicolor,Asian shrub having conspicuous racemose rose-purple flowers widely used as an ornamental and in erosion control and as a source of feed for wild birds
+24045,bicorn bicorne,a cocked hat with the brim turned up to form two points
+24046,bicycle bike wheel cycle,a wheeled vehicle that has two wheels and is moved by foot pedals
+24047,bicycle-built-for-two tandem_bicycle tandem,a bicycle with two sets of pedals and two seats
+24048,bicycle_chain,a chain that transmits the power from the pedals to the rear wheel of a bicycle
+24049,bicycle_clip trouser_clip,a clip worn around a cyclist's ankles that keeps trousers from becoming caught in the bicycle chain
+24050,bicycle_pump,a small pump that fills bicycle tires with air
+24051,bicycle_race bike_race,a race between people riding bicycles
+24052,bicycle_rack,a rack for parking bicycles
+24053,bicycle_seat saddle,a seat for the rider of a bicycle
+24054,bicycle_traffic,bicycles coming and going
+24055,bicycle_wheel,the wheel of a bicycle
+24056,bicycling,riding a bicycle
+24057,bid bidding,(bridge) the number of tricks a bridge player is willing to contract to make
+24058,bid play,an attempt to get something; "they made a futile play for power"; "he made a bid to gain attention"
+24059,bid tender,a formal proposal to buy at a specified price
+24060,bid_price,(stock market) the price at which a broker is willing to buy a certain security
+24061,bidder,someone who makes a bid at cards
+24062,bidder,someone who makes an offer
+24063,bidding summons,a request to be present; "they came at his bidding"
+24064,bidding_contest,a series of competing bids
+24065,bidet,a basin for washing genitals and anal area
+24066,biennial,(botany) a plant having a life cycle that normally takes two seasons from germination to death to complete; flowering biennials usually bloom and fruit in the second season
+24067,bier,a coffin along with its stand; "we followed the bier to the graveyard"
+24068,bier,a stand to support a corpse or a coffin prior to burial
+24069,bifocals,(plural) eyeglasses having two focal lengths, one for near vision and the other for far vision
+24070,bifurcation,a bifurcating branch (one or both of them)
+24071,bifurcation,the place where something divides into two branches
+24072,bifurcation,the act of splitting into two branches
+24073,big-bang_theory big_bang_theory,(cosmology) the theory that the universe originated sometime between 10 billion and 20 billion years ago from the cataclysmic explosion of a small volume of matter at extremely high density and temperature
+24074,big-cone_spruce big-cone_douglas_fir Pseudotsuga_macrocarpa,douglas fir of California having cones 4-8 inches long
+24075,big-eared_bat Megaderma_lyra,large carnivorous Old World bat with very large ears
+24076,big-tree_plum Prunus_mexicana,small tree of southwestern United States having purplish-red fruit sometimes cultivated as an ornamental for its large leaves
+24077,big_H hell_dust nose_drops smack thunder skag scag,street names for heroin
+24078,big_band,a large dance or jazz band usually featuring improvised solos by lead musicians
+24079,big_bang,(cosmology) the cosmic explosion that is hypothesized to have marked the origin of the universe
+24080,big_board,the large display board at the New York Stock Exchange that reports on stocks traded on the exchange
+24081,big_brother,an older brother
+24082,big_brown_bat Eptesicus_fuscus,rather large North American brown bat; widely distributed
+24083,big_business,commercial enterprises organized and financed on a scale large enough to influence social and political policies; "big business is growing so powerful it is difficult to regulate it effectively"
+24084,big_cat cat,any of several large cats typically able to roar and living in the wild
+24085,big_deal,anything of great importance or consequence
+24086,big_game,large animals that are hunted for sport
+24087,big_sagebrush blue_sage Seriphidium_tridentatum Artemisia_tridentata,aromatic shrub of arid regions of western North America having hoary leaves
+24088,big_science,scientific research that requires massive capital investment but is expected to yield very significant results
+24089,big_shellbark big_shellbark_hickory big_shagbark king_nut king_nut_hickory Carya_laciniosa,hickory of the eastern United States resembling the shagbark but having a much larger nut
+24090,big_shot big_gun big_wheel big_cheese big_deal big_enchilada big_fish head_honcho,an important influential person; "he thinks he's a big shot"; "she's a big deal in local politics"; "the Qaeda commander is a very big fish"
+24091,big_sister,an older sister
+24092,big_spender high_roller,one who spends lavishly and ostentatiously on entertainment; "the last of the big spenders"
+24093,big_stick,a display of force or power; "speak softly but carry a big stick"
+24094,big_time,the highest level of an occupation (especially in entertainment)
+24095,big_toe great_toe hallux,the first largest innermost toe
+24096,bigamist,someone who marries one person while already legally married to another
+24097,bigamy,the state of having two spouses at the same time
+24098,bigamy,the offense of marrying someone while you have a living spouse from whom no valid divorce has occurred
+24099,bigeye,red fishes of American coastal tropical waters having very large eyes and rough scales
+24100,bigeye_scad big-eyed_scad goggle-eye Selar_crumenophthalmus,of Atlantic coastal waters; commonly used for bait
+24101,biggin,a child's tight-fitting cap; often ties under the chin
+24102,bighead,any of various diseases of animals characterized by edema of the head and neck
+24103,bigheartedness,the quality of being kind and generous
+24104,bighorn bighorn_sheep cimarron Rocky_Mountain_bighorn Rocky_Mountain_sheep Ovis_canadensis,wild sheep of mountainous regions of western North America having massive curled horns
+24105,bight,a loop in a rope
+24106,bight,a bend or curve (especially in a coastline)
+24107,bight,a broad bay formed by an indentation in the shoreline; "the Bight of Benin"; "the Great Australian Bight"
+24108,bight,the middle part of a slack rope (as distinguished from its ends)
+24109,bignoniad,any woody plant of the family Bignoniaceae
+24110,bigos,a Polish stew of cabbage and meat
+24111,bigot,a prejudiced person who is intolerant of any opinions differing from his own
+24112,bigotry dogmatism,the intolerance and prejudice of a bigot
+24113,bigram,a word that is written with two letters in an alphabetic writing system
+24114,bijou,a small and delicately worked piece
+24115,bijugate_leaf bijugous_leaf twice-pinnate,a pinnate leaf having two pairs of leaflets
+24116,bikini two-piece,a woman's very brief bathing suit
+24117,bikini_pants,(used in the plural) small and tight-fitting underpants; worn by women
+24118,bilabial,a consonant that is articulated using both lips; /p/ or /b/ or /w/
+24119,bilateral_contract,a contract involving mutual promises (each party is both promisor and promisee)
+24120,bilateral_descent,line of descent traced through both the maternal and paternal sides of the family
+24121,bilaterality bilateralism bilateral_symmetry,the property of being symmetrical about a vertical plane
+24122,bilberry thin-leaved_bilberry mountain_blue_berry Viccinium_membranaceum,erect blueberry of western United States having solitary flowers and somewhat sour berries
+24123,bilberry whortleberry European_blueberry,blue-black berries similar to American blueberries
+24124,bilberry whortleberry whinberry blaeberry Viccinium_myrtillus,erect European blueberry having solitary flowers and blue-black berries
+24125,bile gall,a digestive juice secreted by the liver and stored in the gallbladder; aids in the digestion of fats
+24126,bile_acid,any of the steroid acids generated in the liver and stored with bile
+24127,bile_salt,a salt of bile acid and a base; functions as an emulsifier of lipids and fatty acids
+24128,bilge,where the sides of the vessel curve in to form the bottom
+24129,bilge bilge_water,water accumulated in the bilge of a ship
+24130,bilge_keel,either of two lengthwise fins attached along the outside of a ship's bilge; reduces rolling
+24131,bilge_pump,a pump to remove bilgewater
+24132,bilge_well,(nautical) a well where seepage drains to be pumped away
+24133,bilges,in a vessel with two hulls, an enclosed area between the frames at each side
+24134,biliary_ductule,excretory ducts of the liver; empty into the hepatic ducts
+24135,bilimbi Averrhoa_bilimbi,East Indian evergreen tree bearing very acid fruit
+24136,bilingual bilingualist,a person who speaks two languages fluently
+24137,bilingual_dictionary,a dictionary giving equivalent words in two languages
+24138,bilingualism,the ability to speak two languages colloquially
+24139,biliousness,gastric distress caused by a disorder of the liver or gall bladder
+24140,bilirubin hematoidin haematoidin,an orange-yellow pigment in the bile that forms as a product of hemoglobin; excess amounts in the blood produce the yellow appearance observed in jaundice
+24141,bill,a list of particulars (as a playbill or bill of fare)
+24142,bill,the entertainment offered at a public presentation
+24143,bill account invoice,an itemized statement of money owed for goods shipped or services rendered; "he paid his bill and left"; "send me an account of what I owe"
+24144,bill billhook,a cutting tool with a sharp edge; "he used a bill to prune branches off of the tree"
+24145,bill measure,a statute in draft before it becomes law; "they held a public hearing on the bill"
+24146,bill note government_note bank_bill banker's_bill bank_note banknote Federal_Reserve_note greenback,a piece of paper money (especially one issued by a central bank); "he peeled off five one-thousand-zloty notes"
+24147,bill peak eyeshade visor vizor,a brim that projects to the front to shade the eyes; "he pulled down the bill of his cap and trudged ahead"
+24148,bill_of_Particulars,the particular events to be dealt with in a criminal trial; advises the defendant and the court of the facts the defendant will be required to meet
+24149,bill_of_attainder,a legislative act finding a person guilty of treason or felony without a trial; "bills of attainder are prohibited by the Constitution of the United States"
+24150,bill_of_entry,a list of goods received at a customhouse for export or import
+24151,bill_of_goods,communication (written or spoken) that persuades someone to accept something untrue or undesirable; "they tried to sell me a bill of goods about a secondhand car"
+24152,bill_of_goods,a consignment of merchandise
+24153,bill_of_health,a certificate saying that a departing ship's company is healthy (to be presented at the next port of arrival)
+24154,bill_of_lading waybill,a receipt given by the carrier to the shipper acknowledging receipt of the goods being shipped and specifying the terms of delivery
+24155,bill_of_review,a proceeding brought to obtain an explanation or an alteration or a reversal of a decree by the court that rendered it
+24156,bill_of_sale,a deed transferring personal property
+24157,bill_poster poster bill_sticker,someone who pastes up bills or placards on walls or billboards
+24158,billabong,a stagnant pool of water in the bed of a stream that flows intermittently
+24159,billabong,a branch of a river made by water flowing from the main stream only when the water level is high
+24160,billboard hoarding,large outdoor signboard
+24161,billet,lodging for military personnel (especially in a private home)
+24162,billfish,giant warm-water game fish having a prolonged and rounded toothless upper jaw
+24163,billiard_ball,ball used in playing billiards
+24164,billiard_marker,a device for keeping the score in a game of billiards
+24165,billiard_player,someone who plays billiards
+24166,billiard_room billiard_saloon billiard_parlor billiard_parlour billiard_hall,a room in which billiards is played
+24167,billiards,any of several games played on rectangular cloth-covered table (with cushioned edges) in which long tapering cue sticks are used to propel ivory (or composition) balls
+24168,billion one_million_million 1000000000000,the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen
+24169,billion one_thousand_million 1000000000,the number that is represented as a one followed by 9 zeros
+24170,billionaire,a very rich person whose material wealth is valued at more than a billion dollars
+24171,billionth,position 1,000,000,000 in a countable series of things
+24172,billow surge,a large sea wave
+24173,billy billy_goat he-goat,male goat
+24174,billy_buttons,any of various plants of the genus Craspedia grown for their downy foliage and globose heads of golden flowers; Australia and New Zealand
+24175,billyo billyoh billy-ho all_get_out,an unimaginably large amount; "British say `it rained like billyo' where Americans say `it rained like all get out'"
+24176,bilocation,the ability (said of certain Roman Catholic saints) to exist simultaneously in two locations
+24177,bilocular_capsule,a capsule divided into two cells or compartments
+24178,biltong,meat that is salted and cut into strips and dried in the sun
+24179,bimbo,a young woman indulged by rich and powerful older men
+24180,bimester,a period of 2 months
+24181,bimetal,material made by bonding together sheets of two different metals
+24182,bimetallic_strip,a strip consisting of two metals that bends with a rise in temperature
+24183,bimetallism,a monetary standard under which the basic unit of currency is defined by stated amounts of two metals (usually gold and silver) with values set at a predetermined ratio
+24184,bimetallist,an advocate of bimetallism
+24185,bimillennium bimillenary,the 2000th anniversary (or the celebration of it)
+24186,bimillennium bimillenary,a span of 2000 years
+24187,bimonthly,a periodical that is published twice a month or every two months (either 24 or 6 issues per year)
+24188,bin,a container; usually has a lid
+24189,bin binful,the quantity contained in a bin
+24190,bin_Laden Osama_bin_Laden Usama_bin_Laden,Arab terrorist who established al-Qaeda (born in 1957)
+24191,bin_liner,a plastic bag used to line a trash or garbage bin
+24192,binary binary_program,a pre-compiled, pre-linked program that is ready to run under a given operating system; a binary for one operating system will not run on a different operating system; "the same source code can be compiled to produce different binaries for different operating systems"
+24193,binary_code,code using a string of 8 binary digits to represent characters
+24194,binary_compound,chemical compound composed of only two elements
+24195,binary_digit,either 0 or 1 in binary notation
+24196,binary_file,(computer science) a computer file containing machine-readable information that must be read by an application; characters use all 8 bits of each byte
+24197,binary_notation,any notation that uses 2 characters (usually 0 and 1)
+24198,binary_numeration_system pure_binary_numeration_system binary_number_system binary_system,a positional system of numeration that uses binary digits and a radix of two
+24199,binary_star binary double_star,a system of two stars that revolve around each other under their mutual gravitation
+24200,bind,something that hinders as if with bonds
+24201,binder,something used to bind separate particles together or facilitate adhesion to a surface
+24202,binder ligature,something used to tie or bind
+24203,binder reaper_binder,a machine that cuts grain and binds it in sheaves
+24204,binder ring-binder,holds loose papers or magazines
+24205,binder's_board binder_board,a cardboard used by bookbinders to make covers for books
+24206,bindery,a workshop where books are bound
+24207,binding,the capacity to attract and hold something
+24208,binding,strip sewn over or along an edge for reinforcement or decoration
+24209,binding book_binding cover back,the protective covering on the front, back, and spine of a book; "the book had a leather binding"
+24210,binding_energy separation_energy,the energy required to separate particles from a molecule or atom or nucleus; equals the mass defect
+24211,bindweed,any of several vines of the genera Convolvulus and Calystegia having a twining habit
+24212,bing_cherry,dark red or blackish sweet cherry
+24213,binnacle,a nonmagnetic housing for a ship's compass (usually in front of the helm)
+24214,binocular_microscope,a light microscope adapted to the use of both eyes
+24215,binocular_vision,vision involving the use of both eyes
+24216,binoculars field_glasses opera_glasses,(plural) an optical instrument designed for simultaneous use by both eyes
+24217,binomial,(mathematics) a quantity expressed as a sum or difference of two terms; a polynomial with two terms
+24218,binomial_distribution Bernoulli_distribution,a theoretical distribution of the number of successes in a finite set of independent trials with a constant probability of success
+24219,binomial_theorem,a theorem giving the expansion of a binomial raised to a given power
+24220,binturong bearcat Arctictis_bintourong,arboreal civet of Asia having a long prehensile tail and shaggy black hair
+24221,bioassay bio-assay,appraisal of the biological activity of a substance by testing its effect on an organism and comparing the result with some agreed standard
+24222,biocatalyst,a biochemical catalyst such as an enzyme
+24223,biochemical_mechanism,a chemical mechanism involved in vital processes occurring in living organisms
+24224,biochemist,someone with special training in biochemistry
+24225,biochemistry,the organic chemistry of compounds and processes occurring in organisms; the effort to understand biology within the context of chemistry
+24226,biochip,a microchip that uses tiny strands of DNA to latch onto and quickly recognize thousands of genes at a time; intended for use in a biological environment
+24227,bioclimatology,the study of effects of climate on living organisms
+24228,biodegradable_pollution,pollution that is rendered harmless by natural processes and so causes no permanent harm
+24229,biodiversity,the diversity of plant and animal life in a particular habitat (or in the world as a whole); "a high level of biodiversity is desirable"
+24230,bioelectricity,electric phenomena in animals or plants
+24231,bioethics,the branch of ethics that studies moral values in the biomedical sciences
+24232,biofeedback,a training program in which a person is given information about physiological processes (heart rate or blood pressure) that is not normally available with the goal of gaining conscious control of them
+24233,biogenesis biogeny,the production of living organisms from other living organisms
+24234,biogeographical_region,an area of the Earth determined by distribution of flora and fauna
+24235,biogeography,dealing with the geographical distribution of animals and plants
+24236,biographer,someone who writes an account of a person's life
+24237,biography life life_story life_history,an account of the series of events making up a person's life
+24238,biohazard,hazard to humans or the environment resulting from biological agents or conditions
+24239,biohazard_suit,a loose one-piece garment worn to protect the wearer against dangerous biological or chemical agents
+24240,biological_agent biohazard,any bacterium or virus or toxin that could be used in biological warfare
+24241,biological_clock,an innate mechanism in living organisms that controls the periodicity of many physiological functions
+24242,biological_defense biological_defence biodefense biodefence,procedures involved in taking defensive measures against attacks using biological agents
+24243,biological_group,a group of plants or animals
+24244,biological_research,scientific research conducted by biologists
+24245,biological_time,the time of various biological processes
+24246,biological_warfare BW biological_attack biologic_attack bioattack,the use of bacteria or viruses or toxins to destroy men and animals or food
+24247,biological_warfare_defense biological_warfare_defence BW_defense BW_defence,defense against biological warfare
+24248,biologism,use of biological principles in explaining human especially social behavior
+24249,biologist life_scientist,(biology) a scientist who studies living organisms
+24250,biology,characteristic life processes and phenomena of living organisms; "the biology of viruses"
+24251,biology biological_science,the science that studies living organisms
+24252,biology_department department_of_biology,the academic department responsible for teaching and research in biology
+24253,biology_lab biology_laboratory bio_lab,a laboratory for biological research
+24254,bioluminescence,luminescence produced by physiological processes (as in the firefly)
+24255,biomass,plant materials and animal waste used as fuel
+24256,biomass,the total mass of living matter in a given unit area
+24257,biome,a major biotic community characterized by the dominant forms of plant life and the prevailing climate
+24258,biomedical_science,the application of the principles of the natural sciences to medicine
+24259,biomedicine,the branch of medical science that applies biological and physiological principles to clinical practice
+24260,biomedicine,the branch of medical science that studies the ability of organisms to withstand environmental stress (as in space travel)
+24261,biometric_identification biometric_authentication identity_verification,the automatic identification of living individuals by using their physiological and behavioral characteristics; "negative identification can only be accomplished through biometric identification"; "if a pin or password is lost or forgotten it can be changed and reissued but a biometric identification cannot"
+24262,biometrics biometry biostatistics,a branch of biology that studies biological phenomena and observations by means of statistical analysis
+24263,bionics,application of biological principles to the study and design of engineering systems (especially electronic systems)
+24264,biont,a discrete unit of living matter
+24265,biophysicist,a physicist who applies the methods of physics to biology
+24266,biophysics,physics as applied to biological problems
+24267,biopiracy,biological theft; illegal collection of indigenous plants by corporations who patent them for their own use
+24268,biopsy,examination of tissues or liquids from the living body to determine the existence or cause of a disease
+24269,bioremediation,the branch of biotechnology that uses biological process to overcome environmental problems
+24270,bioremediation,the act of treating waste or pollutants by the use of microorganisms (as bacteria) that can break down the undesirable substances
+24271,biosafety,safety from exposure to infectious agents
+24272,biosafety_level,the level of safety from exposure to infectious agents; depends on work practices and safety equipment and facilities
+24273,biosafety_level_1,exposure only to infectious agents that do not ordinarily cause human disease
+24274,biosafety_level_2,exposure to infectious agents that can cause disease in humans but whose potential for transmission is limited
+24275,biosafety_level_3,exposure to infectious agents that can be transmitted by the respiratory route and which can cause serious infection
+24276,biosafety_level_4,exposure to exotic infectious agents that pose a high risk of life-threatening disease and can be transmitted as an aerosol and for which there is no vaccine or therapy
+24277,bioscope,a South African movie theater
+24278,bioscope,a kind of early movie projector
+24279,biosphere,the regions of the surface and atmosphere of the Earth (or other planet) where living organisms exist
+24280,biosynthesis biogenesis,production of a chemical compound by a living organism
+24281,biosystematics biosystematy,use of data (e.g. cytogenetic or biochemical) to assess taxonomic relations especially within an evolutionary framework
+24282,biota biology,all the plant and animal life of a particular region
+24283,biotechnology bioengineering ergonomics,the branch of engineering science in which biological science is used to study the relation between workers and their environments
+24284,biotechnology biotech,the branch of molecular biology that studies the use of microorganisms to perform specific industrial processes; "biotechnology produced genetically altered bacteria that solved the problem"
+24285,bioterrorism biological_terrorism,terrorism using the weapons of biological warfare
+24286,biotin vitamin_H,a B vitamin that aids in body growth
+24287,biotite,dark brown to black mica found in igneous and metamorphic rock
+24288,biotype,organisms sharing a specified genotype or the genotype (or peculiarities) so shared
+24289,bioweapon biological_weapon bioarm,any weapon usable in biological warfare; "they feared use of the smallpox virus as a bioweapon"
+24290,biped,an animal with two feet
+24291,bipedalism,the bodily attribute of being bipedal; having two feet; "bipedalism made the human form of birth possible"
+24292,bipinnate_leaf,a leaf having pinnate leaflets; as ferns
+24293,biplane,old fashioned airplane; has two wings one above the other
+24294,biplane_flying_fish four-wing_flying_fish,having both pectoral and pelvic fins enlarged
+24295,bipolar_disorder manic_depression manic_depressive_illness manic-depressive_psychosis,a mental disorder characterized by episodes of mania and depression
+24296,biprism,an optical device for obtaining interference fringes
+24297,biquadrate biquadratic quartic fourth_power,an algebraic equation or function of the fourth degree
+24298,biquadratic biquadratic_polynomial quartic_polynomial,a polynomial of the fourth degree
+24299,biquadratic_equation biquadratic,an equation of the fourth degree
+24300,birch,hard close-grained wood of any of various birch trees; used especially in furniture and interior finishes and plywood
+24301,birch birch_rod,a switch consisting of a twig or a bundle of twigs from a birch tree; used to hit people as punishment; "my father never spared the birch"
+24302,birch birch_tree,any betulaceous tree or shrub of the genus Betula having a thin peeling bark
+24303,birch_beer,carbonated drink containing an extract from bark of birch trees
+24304,birch_leaf_miner Fenusa_pusilla,small black sawfly native to Europe but established in eastern United States; larvae mine the leaves of birches causing serious defoliation
+24305,birchbark_canoe birchbark birch_bark,a canoe made with the bark of a birch tree
+24306,bird,warm-blooded egg-laying vertebrates characterized by feathers and forelimbs modified as wings
+24307,bird fowl,the flesh of a bird or fowl (wild or domestic) used as food
+24308,bird's-eye_bush Ochna_serrulata,shrub with narrow-elliptic glossy evergreen leaves and yellow flowers with leathery petaloid sepals
+24309,bird's-eye_maple,maple wood having a wavy grain with eyelike markings
+24310,bird's-foot_fern Pellaea_mucronata Pellaea_ornithopus,cliff brake of California and Baja California having purple-brown leafstalks
+24311,bird's-foot_violet pansy_violet Johnny-jump-up wood_violet Viola_pedata,common violet of the eastern United States with large pale blue or purple flowers resembling pansies
+24312,bird's-nest_fungus,any of various fungi of the family Nidulariaceae having a cup-shaped body containing several egg-shaped structure enclosing the spores
+24313,bird's_eye_view panoramic_view,a situation or topic as if viewed from an altitude or distance
+24314,bird's_foot,the foot of a bird
+24315,bird's_foot_trefoil Trigonella_ornithopodioides,Old World herb related to fenugreek
+24316,bird's_foot_trefoil bird's_foot_clover babies'_slippers bacon_and_eggs Lotus_corniculatus,European forage plant having claw-shaped pods introduced in America
+24317,bird's_nest bird_nest birdnest,nest where birds lay their eggs and hatch their young
+24318,bird's_nest_fern Asplenium_nidus,tropical Old World or Australian epiphytic fern frequently forming tufts in tree crotches
+24319,bird_cherry bird_cherry_tree,any of several small-fruited cherry trees frequented or fed on by birds
+24320,bird_dog,a gun dog trained to locate or retrieve birds
+24321,bird_family,a family of warm-blooded egg-laying vertebrates characterized by feathers and forelimbs modified as wings
+24322,bird_fancier,a person with a strong interest in birds
+24323,bird_feed bird_food birdseed,food given to birds; usually mixed seeds
+24324,bird_feeder birdfeeder feeder,an outdoor device that supplies food for wild birds
+24325,bird_genus,a genus of birds
+24326,bird_louse biting_louse louse,wingless insect with mouth parts adapted for biting; mostly parasitic on birds
+24327,bird_of_paradise,any of numerous brilliantly colored plumed birds of the New Guinea area
+24328,bird_of_paradise Strelitzia_reginae,ornamental plant of tropical South Africa and South America having stalks of orange and purplish-blue flowers resembling a bird
+24329,bird_of_paradise poinciana Caesalpinia_gilliesii Poinciana_gilliesii,a tropical flowering shrub having bright orange or red flowers; sometimes placed in genus Poinciana
+24330,bird_of_passage,any bird that migrates seasonally
+24331,bird_of_prey raptor raptorial_bird,any of numerous carnivorous birds that hunt and kill other animals
+24332,bird_pepper Capsicum_frutescens_baccatum Capsicum_baccatum,plant bearing very small and very hot oblong red fruits; includes wild forms native to tropical America; thought to be ancestral to the sweet pepper and many hot peppers
+24333,bird_shot buckshot duck_shot,small lead shot for shotgun shells
+24334,bird_watcher birder,a person who identifies and studies birds in their natural habitats
+24335,birdbath,an ornamental basin (usually in a garden) for birds to bathe in
+24336,birdcage,a cage in which a bird can be kept
+24337,birdcage_mask,a catcher's mask with a strong wire face
+24338,birdcall,a device for imitating a birdcall
+24339,birdcall call birdsong song,the characteristic sound produced by a bird; "a bird will not learn its song unless it hears it at an early age"
+24340,birdhouse,a shelter for birds
+24341,birdie,(golf) a score of one stroke under par on a hole
+24342,birdlime lime,a sticky adhesive that is smeared on small branches to capture small birds
+24343,birdnesting,hunting for birds' nests to get the eggs
+24344,biretta berretta birretta,a stiff cap with ridges across the crown; worn by Roman Catholic clergy
+24345,birling logrolling,rotating a log rapidly in the water (as a competitive sport)
+24346,birr,the basic unit of money in Ethiopia; equal to 100 cents
+24347,birth,the time when something begins (especially life); "they divorced after the birth of the child"; "his election signaled the birth of a new age"
+24348,birth,a baby born; an offspring; "the overall rate of incidence of Down's syndrome is one in every 800 births"
+24349,birth nativity nascency nascence,the event of being born; "they celebrated the birth of their first child"
+24350,birth-control_campaigner birth-control_reformer,a social reformer who advocates birth control and family planning
+24351,birth_canal,a passage in the uterus and vagina through which a fetus passes during vaginal birth
+24352,birth_certificate,a copy of the official document giving details of a person's birth
+24353,birth_control birth_prevention family_planning,limiting the number of children born
+24354,birth_defect congenital_anomaly congenital_defect congenital_disorder congenital_abnormality,a defect that is present at birth
+24355,birth_pangs labor_pains labour_pains,a regularly recurrent spasm of pain that is characteristic of childbirth
+24356,birth_trauma,physical injury to an infant during the birth process
+24357,birth_trauma,emotional injury inflicted on an infant by events incident to birth that is alleged to appear in symbolic form in patients with mental illness
+24358,birthday,an anniversary of the day on which a person was born (or the celebration of it)
+24359,birthday natal_day,the date on which a person was born
+24360,birthday_cake,decorated cake served at a birthday party
+24361,birthday_card,a card expressing a birthday greeting
+24362,birthday_party,a party held on the anniversary of someone's birth
+24363,birthday_present birthday_gift,a present given in celebration of a person's birthday
+24364,birthmark nevus,a blemish on the skin that is formed before birth
+24365,birthplace cradle place_of_origin provenance provenience,where something originated or was nurtured in its early existence; "the birthplace of civilization"
+24366,birthplace place_of_birth,the place where someone was born
+24367,birthrate birth_rate fertility fertility_rate natality,the ratio of live births in an area to the population of that area; expressed per 1000 population per year
+24368,birthright,a right or privilege that you are entitled to at birth; "free public education is the birthright of every American child"
+24369,birthright,personal characteristics that are inherited at birth
+24370,birthright patrimony,an inheritance coming by right of birth (especially by primogeniture)
+24371,birthwort Aristolochia_clematitis,creeping plant having curving flowers thought to resemble fetuses; native to Europe; naturalized Great Britain and eastern North America
+24372,biryani biriani,an Indian dish made with highly seasoned rice and meat or fish or vegetables
+24373,biscuit,small round bread leavened with baking-powder or soda
+24374,bise bize,a dry cold north wind in southeastern France
+24375,bisection,dividing into two equal parts
+24376,biserial_correlation_coefficient biserial_correlation,a correlation coefficient in which one variable is many-valued and the other is dichotomous
+24377,bisexual bisexual_person,a person who is sexually attracted to both sexes
+24378,bisexuality,sexual activity with both men and women
+24379,bishop,a senior member of the Christian clergy having spiritual and administrative authority; appointed in Christian churches to oversee priests or ministers; considered in some churches to be successors of the twelve Apostles of Christ
+24380,bishop,port wine mulled with oranges and cloves
+24381,bishop,(chess) a piece that can be moved diagonally over unoccupied squares of the same color
+24382,bishop_pine bishop's_pine Pinus_muricata,two-needled or three-needled pinon mostly of northwestern California coast
+24383,bishopry episcopate,the office and dignity of a bishop
+24384,bismuth Bi atomic_number_83,a heavy brittle diamagnetic trivalent metallic element (resembles arsenic and antimony chemically); usually recovered as a by-product from ores of other metals
+24385,bison,any of several large humped bovids having shaggy manes and large heads and short horns
+24386,bisque,a thick cream soup made from shellfish
+24387,bister bistre,a water-soluble brownish-yellow pigment made by boiling wood soot
+24388,bistro,a small informal restaurant; serves wine
+24389,bit,a unit of measurement of information (from binary + digit); the amount of information in a system having two equiprobable states; "there are 8 bits in a byte"
+24390,bit,the part of a key that enters a lock and lifts the tumblers
+24391,bit,piece of metal held in horse's mouth by reins and used to control the horse while riding; "the horse was not accustomed to a bit"
+24392,bit,the cutting part of a drill; usually pointed and threaded and is replaceable in a brace or bitstock or drill press; "he looked around for the right size bit"
+24393,bit chip flake fleck scrap,a small fragment of something broken off from the whole; "a bit of rock caught him in the eye"
+24394,bit_field,a field containing only binary characters
+24395,bit_part minor_role,a small role
+24396,bitartrate,an acid tartrate; a hydrogen tartrate
+24397,bitch,an unpleasant difficulty; "this problem is a real bitch"
+24398,bitch,female of any member of the dog family
+24399,bitchery,aggressive remarks and behavior like that of a spiteful malicious woman
+24400,bite,a wound resulting from biting by an animal or a person
+24401,bite,(angling) an instance of a fish taking the bait; "after fishing for an hour he still had not had a bite"
+24402,bite,a portion removed from the whole; "the government's weekly bite from my paycheck"
+24403,bite chomp,the act of gripping or chewing off with the teeth and jaws
+24404,bite collation snack,a light informal meal
+24405,bite_plate biteplate,a removable dental appliance that is worn in the palate for diagnostic or therapeutic purposes
+24406,biter,someone who bites
+24407,bitewing,a dental X-ray film that can be held in place by the teeth during radiography
+24408,bitmap electronic_image,an image represented as a two dimensional array of brightness values for pixels
+24409,bitok,a Russian dish made with patties of ground meat (mixed with onions and bread and milk) and served with a sauce of sour cream
+24410,bits_per_inch bpi,a measure of how densely information is packed on a storage medium
+24411,bits_per_second bps,(computer science) the rate at which data is transferred (as by a modem)
+24412,bitt_pin,a pin through the bitthead to keep the mooring lines from slipping off
+24413,bitter,English term for a dry sharp-tasting ale with strong flavor of hops (usually on draft)
+24414,bitter bitterness,the taste experience when quinine or coffee is taken into the mouth
+24415,bitter_almond Prunus_dulcis_amara Amygdalus_communis_amara,almond trees having white blossoms and poisonous nuts yielding an oil used for flavoring and for medicinal purposes
+24416,bitter_almond_oil,pale yellow essential oil obtained from bitter almonds by distillation from almond cake or meal
+24417,bitter_betch Vicia_orobus,European perennial toxic vetch
+24418,bitter_cassava manioc mandioc mandioca tapioca_plant gari Manihot_esculenta Manihot_utilissima,cassava with long tuberous edible roots and soft brittle stems; used especially to make cassiri (an intoxicating drink) and tapioca
+24419,bitter_chocolate baking_chocolate cooking_chocolate,pure unsweetened chocolate used in baking and icings and sauces and candy
+24420,bitter_dock broad-leaved_dock yellow_dock Rumex_obtusifolius,European dock with broad obtuse leaves and bitter rootstock common as a weed in North America
+24421,bitter_end,the final extremity (however unpleasant it may be); "he was determined to fight to the bitter end"
+24422,bitter_end,(nautical) the inboard end of a line or cable especially the end that is wound around a bitt
+24423,bitter_lemon,tart lemon-flavored carbonated drink
+24424,bitter_orange Seville_orange sour_orange,highly acidic orange used especially in marmalade
+24425,bitter_pea,any of several spiny shrubs of the genus Daviesia having yellow flowers and triangular seeds; Australia
+24426,bitter_principle,any one of several hundred compounds having a bitter taste; not admitting of chemical classification
+24427,bittercress bitter_cress,any of various herbs of the genus Cardamine, having usually pinnate leaves and racemes of white, pink or purple flowers; cosmopolitan except Antarctic
+24428,bittern,relatively small compact tawny-brown heron with nocturnal habits and a booming cry; found in marshes
+24429,bitterness acrimony acerbity jaundice tartness thorniness,a rough and bitter manner
+24430,bitterness bitter,the property of having a harsh unpleasant taste
+24431,bitternut bitternut_hickory bitter_hickory bitter_pignut swamp_hickory Carya_cordiformis,hickory of the eastern United States having a leaves with 7 or 9 leaflets and thin-shelled very bitter nuts
+24432,bitterroot Lewisia_rediviva,showy succulent ground-hugging plant of Rocky Mountains regions having deep to pale pink flowers and fleshy farinaceous roots; the Montana state flower
+24433,bitters,alcoholic liquor flavored with bitter herbs and roots
+24434,bittersweet American_bittersweet climbing_bittersweet false_bittersweet staff_vine waxwork shrubby_bittersweet Celastrus_scandens,twining shrub of North America having yellow capsules enclosing scarlet seeds
+24435,bittersweet bittersweet_nightshade climbing_nightshade deadly_nightshade poisonous_nightshade woody_nightshade Solanum_dulcamara,poisonous perennial Old World vine having violet flowers and oval coral-red berries; widespread weed in North America
+24436,bittersweet_chocolate semi-sweet_chocolate dark_chocolate,chocolate liquor with cocoa butter and small amounts of sugar and vanilla; lecithin is usually added
+24437,bitterwood_tree,any of various trees or shrubs of the family Simaroubaceae having wood and bark with a bitter taste
+24438,bitthead,the upper end of a bitt
+24439,bitumastic,a protective coating of asphalt and filter used on structural metals that are exposed to weathering
+24440,bitumen,any of various naturally occurring impure mixtures of hydrocarbons
+24441,bituminous_coal soft_coal,rich in tarry hydrocarbons; burns readily with a smoky yellow flame
+24442,bivalve pelecypod lamellibranch,marine or freshwater mollusks having a soft body with platelike gills enclosed within two shells hinged together
+24443,biweekly,a periodical that is published twice a week or every two weeks (either 104 or 26 issues per year)
+24444,black,(board games) the darker pieces
+24445,black,black clothing (worn as a sign of mourning); "the widow wore black"
+24446,black blackness inkiness,the quality or state of the achromatic color of least lightness (bearing the least resemblance to white)
+24447,black-and-tan_coonhound,American breed of large powerful hound dogs used for hunting raccoons and other game
+24448,black-backed_gull great_black-backed_gull cob Larus_marinus,white gull having a black back and wings
+24449,black-billed_cuckoo Coccyzus_erythropthalmus,North American cuckoo; builds a nest and rears its own young
+24450,black-body_radiation blackbody_radiation,the electromagnetic radiation that would be radiated from an ideal black body; the distribution of energy in the radiated spectrum of a black body depends only on temperature and is determined by Planck's radiation law
+24451,black-capped_chickadee blackcap Parus_atricapillus,chickadee having a dark crown
+24452,black-crowned_night_heron Nycticorax_nycticorax,night heron of both Old and New Worlds
+24453,black-eyed_Susan Rudbeckia_hirta Rudbeckia_serotina,the state flower of Maryland; of central and southeastern United States; having daisylike flowers with dark centers and yellow to orange rays
+24454,black-eyed_Susan black-eyed_Susan_vine Thunbergia_alata,tropical African climbing plant having yellow flowers with a dark purple center
+24455,black-eyed_pea cowpea,eaten fresh as shell beans or dried
+24456,black-footed_albatross gooney gooney_bird goonie goony Diomedea_nigripes,a variety of albatross with black feet
+24457,black-footed_ferret ferret Mustela_nigripes,musteline mammal of prairie regions of United States; nearly extinct
+24458,black-fronted_bush_shrike Chlorophoneus_nigrifrons,a kind of bush shrike
+24459,black-headed_snake,small secretive ground-living snake; found from central United States to Argentina
+24460,black-necked_cobra spitting_cobra Naja_nigricollis,aggressive cobra widely distributed in Africa; rarely bites but spits venom that may cause blindness
+24461,black-necked_grebe eared_grebe Podiceps_nigricollis,small grebe with yellow ear tufts and a black neck; found in Eurasia and southern Africa as well as western United States
+24462,black-necked_stilt Himantopus_mexicanus,stilt of southwestern United States to northern South America having black plumage extending from the head down the back of the neck
+24463,black-stem_spleenwort black-stemmed_spleenwort little_ebony_spleenwort,fern of tropical America: from southern United States to West Indies and Mexico to Brazil
+24464,black-tailed_deer blacktail_deer blacktail Odocoileus_hemionus_columbianus,mule deer of western Rocky Mountains
+24465,black-winged_stilt Himantopus_himantopus,stilt of Europe and Africa and Asia having mostly white plumage but with black wings
+24466,black_and_gold_garden_spider Argiope_aurantia,a widely distributed North American garden spider
+24467,black_and_white monochrome,a black-and-white photograph or slide
+24468,black_ash basket_ash brown_ash hoop_ash Fraxinus_nigra,vigorous spreading North American tree having dark brown heavy wood; leaves turn gold in autumn
+24469,black_bamboo kuri-chiku Phyllostachys_nigra,small bamboo having thin green culms turning shining black
+24470,black_bass,widely distributed and highly prized American freshwater game fishes (sunfish family)
+24471,black_bean turtle_bean,black-seeded bean of South America; usually dried
+24472,black_bee German_bee,dark-colored ill-tempered honeybee supposedly of German origin
+24473,black_beech Nothofagus_solanderi,New Zealand forest tree
+24474,black_belt,a person who attained the rank of expert in the martial arts (judo or karate)
+24475,black_belt,a black sash worn to show expert standards in the martial arts (judo or karate)
+24476,black_bile melancholy,a humor that was once believed to be secreted by the kidneys or spleen and to cause sadness and melancholy
+24477,black_birch river_birch red_birch Betula_nigra,birch of swamps and river bottoms throughout the eastern United States having reddish-brown bark
+24478,black_body blackbody full_radiator,a hypothetical object capable of absorbing all the electromagnetic radiation falling on it; "a black body maintained at a constant temperature is a full radiator at that temperature because the radiation reaching and leaving it must be in equilibrium"
+24479,black_box,equipment that records information about the performance of an aircraft during flight
+24480,black_bread pumpernickel,bread made of coarse rye flour
+24481,black_bream Chrysophrys_australis,important dark-colored edible food and game fish of Australia
+24482,black_bryony black_bindweed Tamus_communis,common European twining vine with tuberous roots and cordate leaves and red berries
+24483,black_buffalo Ictiobus_niger,fish of the lower Mississippi
+24484,black_calla Arum_palaestinum,ornamental plant of Middle East cultivated for its dark purple spathe
+24485,black_caraway nutmeg_flower Roman_coriander Nigella_sativa,herb of the Mediterranean region having pungent seeds used like those of caraway
+24486,black_carpet_beetle,a carpet beetle that is solid black in color
+24487,black_catechu catechu,extract of the heartwood of Acacia catechu used for dyeing and tanning and preserving fishnets and sails; formerly used medicinally
+24488,black_cherry black_cherry_tree rum_cherry Prunus_serotina,large North American wild cherry with round black sour edible fruit
+24489,black_cohosh black_snakeroot rattle-top Cimicifuga_racemosa,North American bugbane found from Maine and Ontario to Wisconsin and south to Georgia
+24490,black_comedy,comedy that uses black humor
+24491,black_cottonwood Western_balsam_poplar Populus_trichocarpa,cottonwood of western North America with dark green leaves shining above and rusty or silvery beneath
+24492,black_crappie Pomoxis_nigromaculatus,a crappie that is black
+24493,black_currant,small black berries used in jams and jellies
+24494,black_currant European_black_currant Ribes_nigrum,widely cultivated current bearing edible black aromatic berries
+24495,black_cypress_pine red_cypress_pine Callitris_endlicheri Callitris_calcarata,Australian tree with small flattened scales as leaves and numerous dark brown seed; valued for its timber and resin
+24496,black_disease sheep_rot liver_rot distomatosis,a disease of the liver (especially in sheep and cattle) caused by liver flukes and their by-products
+24497,black_duck Anas_rubripes,a dusky duck of northeastern United States and Canada
+24498,black_economy,a hidden sector of the economy where private cash transactions go unreported; "no one knows how large the black economy really is"
+24499,black_eye,a bad reputation; "his behavior gave the whole family a black eye"
+24500,black_felt_cup,a common name for a variety of Sarcosomataceae
+24501,black_flag pirate_flag Jolly_Roger blackjack,a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship
+24502,black_fox,red fox in the color phase when its pelt is mostly black
+24503,black_grama Bouteloua_eriopoda,a pasture grass (especially of western coastal regions of North America)
+24504,black_grouse,grouse of which the male is bluish-black
+24505,black_guillemot Cepphus_grylle,northern Atlantic guillemot
+24506,black_haw Viburnum_prunifolium,upright deciduous shrub having frosted dark-blue fruit; east and east central North America
+24507,black_hole,a region of space resulting from the collapse of a star; extremely high gravitational field
+24508,black_horehound black_archangel fetid_horehound stinking_horehound Ballota_nigra,ill-smelling European herb with rugose leaves and whorls of dark purple flowers
+24509,black_huckleberry Gaylussacia_baccata,low shrub of the eastern United States bearing shiny black edible fruit; best known of the huckleberries
+24510,black_humor black_humour,the juxtaposition of morbid and farcical elements (in writing or drama) to give a disturbing effect
+24511,black_ice,a thin coating of ice (as from freezing mist) on a road or sidewalk; nearly invisible but very hazardous
+24512,black_kite Milvus_migrans,dark Old World kite feeding chiefly on carrion
+24513,black_knot,disease of plum and cherry trees characterized by black excrescences on the branches
+24514,black_locust,strong stiff wood of a black-locust tree; very resistant to decay
+24515,black_locust yellow_locust Robinia_pseudoacacia,large thorny tree of eastern and central United States having pinnately compound leaves and drooping racemes of white flowers; widely naturalized in many varieties in temperate regions
+24516,black_maire Olea_cunninghamii,northern Zealand tree having dense hard light-brown wood
+24517,black_mallee black_sally black_gum Eucalytus_stellulata,a small mallee with rough dark-colored bark toward the butt; yields a red eucalyptus kino gum
+24518,black_mamba Dendroaspis_augusticeps,a highly venomous southern African mamba dreaded because of its quickness and readiness to bite
+24519,black_mangrove Aegiceras_majus,an Australian tree resembling the black mangrove of the West Indies and Florida
+24520,black_mangrove Avicennia_marina,a mangrove of the West Indies and the southern Florida coast; occurs in dense thickets and has numerous short roots that bend up from the ground
+24521,black_market,people who engage in illicit trade
+24522,black_market,an illegal market in which goods or currencies are bought and sold in violation of rationing or controls
+24523,black_marketeer,someone who engages illegally in trade in scarce or controlled commodities
+24524,black_marlin Makaira_mazara Makaira_marlina,large game fish in the Pacific Ocean; may reach 1000 pounds
+24525,black_medick hop_clover yellow_trefoil nonesuch_clover Medicago_lupulina,prostrate European herb with small yellow flowers and curved black pods; naturalized in North America
+24526,black_morel Morchella_conica conic_morel Morchella_angusticeps narrowhead_morel,a morel whose pitted fertile body is attached to the stalk with little free skirt around it; the fertile body is grey when young and black in old age
+24527,black_mulberry Morus_nigra,European mulberry having dark foliage and fruit
+24528,black_music African-American_music,music created by African-American musicians; early forms were songs that had a melodic line and a strong rhythmic beat with repeated choruses
+24529,black_mustard Brassica_nigra,widespread Eurasian annual plant cultivated for its pungent seeds; a principal source of table mustard
+24530,black_nightshade common_nightshade poisonberry poison-berry Solanum_nigrum,Eurasian herb naturalized in America having white flowers and poisonous hairy foliage and bearing black berries that are sometimes poisonous but sometimes edible
+24531,black_oak yellow_oak quercitron quercitron_oak Quercus_velutina,medium to large deciduous timber tree of the eastern United States and southeastern Canada having dark outer bark and yellow inner bark used for tanning; broad five-lobed leaves are bristle-tipped
+24532,black_olive ripe_olive,olives picked ripe and cured in brine then dried or pickled or preserved canned or in oil
+24533,black_opal,a dark colored opal with internal reflections of green or red
+24534,black_operation,a covert operation not attributable to the organization carrying it out
+24535,black_pea Lathyrus_niger,perennial of Europe and North Africa; foliage turns black in drying
+24536,black_pepper,pepper that is ground from whole peppercorns with husks on
+24537,black_pine Pinus_nigra,large two-needled timber pine of southeastern Europe
+24538,black_poplar Populus_nigra,large European poplar
+24539,black_raspberry blackcap blackcap_raspberry thimbleberry Rubus_occidentalis,raspberry native to eastern North America having black thimble-shaped fruit
+24540,black_rat roof_rat Rattus_rattus,common household pest originally from Asia that has spread worldwide
+24541,black_rat_snake blacksnake pilot_blacksnake mountain_blacksnake Elaphe_obsoleta,large harmless shiny black North American snake
+24542,black_rhinoceros Diceros_bicornis,African rhino; in danger of extinction
+24543,black_root_rot_fungus Xylaria_mali,fungus causing black root rot in apples
+24544,black_rot,a fungous disease causing darkening and decay of the leaves of fruits and vegetables
+24545,black_sage wooly_blue_curls California_romero Trichostema_lanatum,an aromatic plant with wooly leaves found in southern California and Mexico
+24546,black_salsify viper's_grass scorzonera Scorzonera_hispanica,perennial south European herb having narrow entire leaves and solitary yellow flower heads and long black edible roots shaped like carrots
+24547,black_sea_bass black_bass Centropistes_striata,bluish black-striped sea bass of the Atlantic coast of the United States
+24548,black_sheep,sheep with a black coat
+24549,black_spleenwort Asplenium_adiantum-nigrum,spleenwort of Europe and Africa and Asia having pinnate fronds and yielding an astringent
+24550,black_spot,any of several fungous diseases of plants that produce small black spots on the plant
+24551,black_spruce Picea_mariana spruce_pine,small spruce of boggy areas of northeastern North America having spreading branches with dense foliage; inferior wood
+24552,black_squirrel,fox squirrel or grey squirrel in the black color phase
+24553,black_stork Ciconia_nigra,Old World stork that is glossy black above and white below
+24554,black_swan Cygnus_atratus,large Australian swan having black plumage and a red bill
+24555,black_tea,fermented tea leaves
+24556,black_tie,a black bow tie worn with a dinner jacket
+24557,black_turnstone Arenaria-Melanocephala,common turnstone of the Pacific coast of North America
+24558,black_vulture Aegypius_monachus,of southern Eurasia and northern Africa
+24559,black_vulture carrion_crow Coragyps_atratus,American vulture smaller than the turkey buzzard
+24560,black_walnut,American walnut having a very hard and thick woody shell
+24561,black_walnut black_walnut_tree black_hickory Juglans_nigra,North American walnut tree with hard dark wood and edible nut
+24562,black_wattle Acacia_auriculiformis,Australian tree that yields tanning materials
+24563,black_widow Latrodectus_mactans,venomous New World spider; the female is black with an hourglass-shaped red mark on the underside of the abdomen
+24564,blackberry,large sweet black or very dark purple edible aggregate fruit of any of various bushes of the genus Rubus
+24565,blackberry blackberry_bush,bramble with sweet edible black or dark purple berries that usually do not separate from the receptacle
+24566,blackberry-lily leopard_lily Belamcanda_chinensis,garden plant whose capsule discloses when ripe a mass of seeds resembling a blackberry
+24567,blackbird merl merle ouzel ousel European_blackbird Turdus_merula,common black European thrush
+24568,blackboard chalkboard,sheet of slate; for writing with chalk
+24569,blackboard_eraser,an eraser that removes chalk marks from blackboard
+24570,blackbuck black_buck Antilope_cervicapra,common Indian antelope with a dark back and spiral horns
+24571,blackcap Silvia_atricapilla,small brownish-grey warbler with a black crown
+24572,blackcock black_cock,male black grouse
+24573,blackening darkening,changing to a darker color
+24574,blackface,the makeup (usually burnt cork) used by a performer in order to imitate a Negro
+24575,blackfish,female salmon that has recently spawned
+24576,blackfly bean_aphid Aphis_fabae,blackish aphid that infests e.g. beans and sugar beets
+24577,blackfly black_fly buffalo_gnat,small blackish stout-bodied biting fly having aquatic larvae; sucks the blood of birds as well as humans and other mammals
+24578,blackfoot_daisy Melampodium_leucanthum,bushy subshrub having flower heads that resemble asters with broad white rays; found in desert areas of Arizona east to Kansas and south to Mexico
+24579,blackhead comedo,a black-tipped plug clogging a pore of the skin
+24580,blackheart,any of various diseases in which the central tissues blacken
+24581,blackheart blackheart_cherry,heart cherry with dark flesh and skin cherry
+24582,blackjack cosh sap,a piece of metal covered by leather with a flexible handle; used for hitting people
+24583,blackjack twenty-one vingt-et-un,a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21
+24584,blackjack_oak blackjack jack_oak Quercus_marilandica,a common scrubby deciduous tree of central and southeastern United States having dark bark and broad three-lobed (club-shaped) leaves; tends to form dense thickets
+24585,blacklist black_book shitlist,a list of people who are out of favor
+24586,blackmail,extortion of money by threats to divulge discrediting information
+24587,blackmailer extortioner extortionist,a criminal who extorts money from someone by threatening to expose embarrassing information about them
+24588,blackmouth_bass Synagrops_bellus,small marine fish with black mouth and gill cavity
+24589,blackout,a suspension of radio or tv broadcasting
+24590,blackout,the failure of electric power for a general region
+24591,blackout,a momentary loss of consciousness
+24592,blackout brownout dimout,darkness resulting from the extinction of lights (as in a city invisible to enemy aircraft)
+24593,blackpoll Dendroica_striate,North American warbler having a black-and-white head
+24594,blacksmith,a smith who forges and shapes iron with a hammer and anvil
+24595,blacksnake black_racer Coluber_constrictor,blackish racer of the eastern United States that grows to six feet
+24596,blacktail_jackrabbit Lepus_californicus,the common jackrabbit of grasslands and open areas of western United States; has large black-tipped ears and black streak on the tail
+24597,blacktail_prairie_dog Cynomys_ludovicianus,tail is black tipped
+24598,blackthorn pear_haw pear_hawthorn Crataegus_calpodendron Crataegus_tomentosa,erect and almost thornless American hawthorn with somewhat pear-shaped berries
+24599,blackthorn sloe Prunus_spinosa,a thorny Eurasian bush with plumlike fruits
+24600,blacktip_shark sandbar_shark Carcharhinus_limbatus,widely distributed shallow-water shark with fins seemingly dipped in ink
+24601,blacktop blacktopping,a black bituminous material used for paving roads or other areas; usually spread over crushed rock
+24602,blackwash,a wash that colors a surface black
+24603,blackwash black_lotion,a mixture of calomel and limewater that is used on syphilitic sores
+24604,blackwater,any of several human or animal diseases characterized by dark urine resulting from rapid breakdown of red blood cells
+24605,blackwater_fever,severe and often fatal malaria characterized by kidney damage resulting in dark urine
+24606,blackwood,very dark wood of any of several blackwood trees
+24607,blackwood blackwood_tree,any of several hardwood trees yielding very dark-colored wood
+24608,bladder,a bag that fills with air
+24609,bladder vesica,a distensible membranous sac (usually containing liquid or gas)
+24610,bladder_campion Silene_uniflora Silene_vulgaris,perennial of Arctic Europe having large white flowers with inflated calyx
+24611,bladder_disorder,a disorder of the urinary bladder
+24612,bladder_fern,any fern of the genus Cystopteris characterized by a hooded indusium or bladderlike membrane covering the sori
+24613,bladder_senna Colutea_arborescens,yellow-flowered European shrub cultivated for its succession of yellow flowers and very inflated bladdery pods and as a source of wildlife food
+24614,bladder_sphincter musculus_sphincter_vesicae,the sphincter muscle of the urinary bladder; made up of a thickened muscular layer of bladder around the urethral opening
+24615,bladder_stone cystolith,a calculus formed in the bladder
+24616,bladder_worm,encysted saclike larva of the tapeworm
+24617,bladderpod,annual or perennial herbs with inflated seed pods; some placed in genus Lesquerella
+24618,bladderpod,any of several plants of the genus Physaria having racemose yellow flowers and inflated pods
+24619,bladderpod,any of several hairy North American herbs having yellow racemose flowers and inflated pods
+24620,bladderwort,any of numerous aquatic carnivorous plants of the genus Utricularia some of whose leaves are modified as small urn-shaped bladders that trap minute aquatic animals
+24621,bladderwrack Ascophyllum_nodosum,similar to and found with black rockweed
+24622,bladderwrack black_rockweed bladder_fucus tang Fucus_vesiculosus,a common rockweed used in preparing kelp and as manure
+24623,blade,a dashing young man; "gay young blades bragged of their amorous adventures"
+24624,blade,something long and thin resembling a blade of grass; "a blade of lint on his suit"
+24625,blade,a cut of beef from the shoulder blade
+24626,blade,a broad flat body part (as of the shoulder or tongue)
+24627,blade,the part of the skate that slides on the ice
+24628,blade,the flat part of a tool or weapon that (usually) has a cutting edge
+24629,blade leaf_blade,especially a leaf of grass or the broad portion of a leaf as distinct from the petiole
+24630,blade vane,flat surface that rotates and pushes against air or water
+24631,blade_roast,a roast cut from the blade
+24632,blahs,a general feeling of boredom and dissatisfaction
+24633,blain,an inflammatory swelling or sore
+24634,blame rap,a reproach for some lapse or misdeed; "he took the blame for it"; "it was a bum rap"
+24635,blame_game,accusations exchanged among people who refuse to accept sole responsibility for some undesirable event
+24636,blamelessness inculpability inculpableness guiltlessness,a state of innocence
+24637,blameworthiness culpability culpableness,a state of guilt
+24638,blanc,a white sauce of fat, broth, and vegetables (used especially with braised meat)
+24639,blancmange,sweet almond-flavored milk pudding thickened with gelatin or cornstarch; usually molded
+24640,bland_diet ulcer_diet,a diet of foods that are not irritating; "he ate a bland diet because of his colitis"
+24641,blandishment cajolery palaver,flattery intended to persuade
+24642,blandishment wheedling,the act of urging by means of teasing or flattery
+24643,blandness,the trait of exhibiting no personal embarrassment or concern; "the blandness of his confession enraged the judge"
+24644,blandness insipidity insipidness,lacking any distinctive or interesting taste property
+24645,blank,a piece of material ready to be made into something
+24646,blank dummy blank_shell,a cartridge containing an explosive charge but no bullet
+24647,blank_check blank_cheque,a check that has been signed but with the amount payable left blank
+24648,blank_endorsement endorsement_in_blank,an endorsement on commercial paper naming no payee and so payable to the bearer
+24649,blank_verse,unrhymed verse (usually in iambic pentameter)
+24650,blanket,a layer of lead surrounding the highly reactive core of a nuclear reactor
+24651,blanket cover,bedding that keeps a person warm in bed; "he pulled the covers over his head and went to sleep"
+24652,blanket mantle,anything that covers; "there was a blanket of snow"
+24653,blanket_flower Indian_blanket fire_wheel fire-wheel Gaillardia_pulchella,annual of central United States having showy long-stalked yellow flower heads marked with scarlet or purple in the center
+24654,blanket_stitch,a strong reinforcing stitch for edges of blanket and other thick material; similar to buttonhole stitch
+24655,blankness,the state of being blank; void; emptiness
+24656,blanquillo tilefish,important marine food fishes
+24657,blare blaring cacophony clamor din,a loud harsh or strident noise
+24658,blarney coaxing soft_soap sweet_talk,flattery designed to gain favor
+24659,blasphemer,a person who speaks disrespectfully of sacred things
+24660,blasphemy,blasphemous language (expressing disrespect for God or for something sacred)
+24661,blast,an explosion (as of dynamite)
+24662,blast,a very long fly ball
+24663,blast_furnace,a furnace for smelting of iron from iron oxide ores; combustion is intensified by a blast of air
+24664,blast_trauma,injury caused the explosion of a bomb (especially in enclosed spaces)
+24665,blastema,a mass of undifferentiated cells from which an organ or body part develops
+24666,blaster chargeman,a workman employed to blast with explosives
+24667,blasting_cap,a small tube filled with detonating substances; used to detonate high explosives
+24668,blasting_gelatin,mixture of guncotton with nitroglycerin
+24669,blastocoel blastocoele blastocele segmentation_cavity cleavage_cavity,the fluid-filled cavity inside a blastula
+24670,blastocyst blastodermic_vessicle,the blastula of a placental mammal in which some differentiation of cells has occurred
+24671,blastocyte,an undifferentiated embryonic cell
+24672,blastoderm germinal_disc blastodisc germinal_area,a layer of cells on the inside of the blastula
+24673,blastoff shot,the launching of a missile or spacecraft to a specified destination
+24674,blastogenesis,asexual reproduction by budding
+24675,blastogenesis,theory that inherited characteristics are transmitted by germ plasm
+24676,blastoma blastocytoma embryonal_carcinosarcoma,a tumor composed of immature undifferentiated cells
+24677,blastomere,any cell resulting from cleavage of a fertilized egg
+24678,blastomycete,any of various yeastlike budding fungi of the genus Blastomyces; cause disease in humans and other animals
+24679,blastomycosis,any of several infections of the skin or mucous membrane caused by Blastomyces
+24680,blastopore,the opening into the archenteron
+24681,blastula blastosphere,early stage of an embryo produced by cleavage of an ovum; a liquid-filled sphere whose wall is composed of a single layer of cells; during this stage (about eight days after fertilization) implantation in the wall of the uterus occurs
+24682,blatancy,the property of being both obvious and offensive; "the blatancy of his attempt to whitewash the crime was unforgivable"
+24683,blather blatherskite,foolish gibberish
+24684,blaxploitation,the exploitation of black people (especially with regard to stereotyped roles in movies)
+24685,blaze,a light-colored marking; "they chipped off bark to mark the trail with blazes"; "the horse had a blaze between its eyes"
+24686,blaze blazing,a strong flame that burns brightly; "the blaze spread rapidly"
+24687,blazer sport_jacket sport_coat sports_jacket sports_coat,lightweight single-breasted jacket; often striped in the colors of a club or school
+24688,blazing_star Mentzelia_livicaulis Mentzelia_laevicaulis,biennial of southwestern United States having white stems and toothed leaves that is grown for its large pale yellow flowers that open in early morning
+24689,blazing_star button_snakeroot gayfeather gay-feather snakeroot,any of various North American plants of the genus Liatris having racemes or panicles of small discoid flower heads
+24690,bleach,the whiteness that results from removing the color from something; "a complete bleach usually requires several applications"
+24691,bleach,the act of whitening something by bleaching it (exposing it to sunlight or using a chemical bleaching agent)
+24692,bleach_liquor,a solution containing bleaching agents that is used to bleach textiles or paper pulp
+24693,bleacher,a worker who bleaches (cloth or flour etc.)
+24694,bleachers,(used in the plural) an outdoor grandstand without a roof; patrons are exposed to the sun as linens are when they are bleached
+24695,bleaching_agent bleach blanching_agent whitener,an agent that makes things white or colorless
+24696,bleaching_clay bleaching_earth,an adsorbent clay that will remove coloring from oils
+24697,bleaching_powder chlorinated_lime chloride_of_lime,a white powder comprised of calcium hydroxide and chloride and hypochlorite and used to bleach and/or disinfect
+24698,bleakness desolation bareness nakedness,a bleak and desolate atmosphere; "the nakedness of the landscape"
+24699,bleat,the sound of sheep or goats (or any sound resembling this)
+24700,bleeding hemorrhage haemorrhage,the flow of blood from a ruptured blood vessel
+24701,bleeding_heart,someone who is excessively sympathetic toward those who claim to be exploited or underprivileged
+24702,bleeding_heart lyreflower lyre-flower Dicentra_spectabilis,garden plant having deep-pink drooping heart-shaped flowers
+24703,bleeding_tooth Nerita_peloronta,gastropod having reddish toothlike projections around the shell opening; of the Caribbean area
+24704,blemish defect mar,a mark or flaw that spoils the appearance of something (especially on a person's body); "a facial blemish"
+24705,blend,an occurrence of thorough mixing
+24706,blend blending,the act of blending components together thoroughly
+24707,blend portmanteau_word portmanteau,a new word formed by joining two others and combining their meanings; "`smog' is a blend of `smoke' and `fog'"; "`motel' is a portmanteau word made by combining `motor' and `hotel'"; "`brunch' is a well-known portmanteau"
+24708,blended_whiskey blended_whisky,mixture of two or more whiskeys or of a whiskey and neutral spirits
+24709,blender liquidizer liquidiser,an electrically powered mixer with whirling blades that mix or chop or liquefy foods
+24710,blennioid_fish blennioid,elongated mostly scaleless marine fishes with large pectoral fins and reduced pelvic fins
+24711,blenny combtooth_blenny,small usually scaleless fishes with comb-like teeth living about rocky shores; are territorial and live in holes between rocks
+24712,blepharism,condition in which a person blinks continuously
+24713,blepharitis,inflammation of the eyelids characterized by redness and swelling and dried crusts
+24714,blepharospasm,spasm of the eyelid muscle resulting in closure of the eye
+24715,blessed_event happy_event,the live birth of a child
+24716,blessed_thistle sweet_sultan Cnicus_benedictus,annual of Mediterranean to Portugal having hairy stems and minutely spiny-toothed leaves and large heads of yellow flowers
+24717,blessedness beatitude beatification,a state of supreme happiness
+24718,blessing approval approving,the formal act of approving; "he gave the project his blessing"; "his decision merited the approval of any sensible person"
+24719,blessing benediction,the act of praying for divine protection
+24720,blessing boon,a desirable state; "enjoy the blessings of peace"; "a spanking breeze is a boon to sailors"
+24721,bletia,any of various orchids of the genus Bletia having pseudobulbs and erect leafless racemes of large purple or pink flowers
+24722,bleu blue_cheese,cheese containing a blue mold
+24723,bleu_cheese_dressing blue_cheese_dressing,creamy dressing containing crumbled blue cheese
+24724,blewits Clitocybe_nuda,edible agaric that is pale lilac when young; has a smooth moist cap
+24725,blight,a state or condition being blighted
+24726,blight,any plant disease resulting in withering without rotting
+24727,blight_canker,a phase of fire blight in which cankers appear
+24728,blighty_wound,a wound that would cause an English soldier to be sent home from service abroad
+24729,blimp sausage_balloon sausage,a small nonrigid airship used for observation or as a barrage balloon
+24730,blind,people who have severe visual impairments, considered as a group; "he spent hours reading to the blind"
+24731,blind,a hiding place sometimes used by hunters (especially duck hunters); "he waited impatiently in the blind"
+24732,blind screen,a protective covering that keeps things out or hinders sight; "they had just moved in and had not put up blinds yet"
+24733,blind_alley,(figurative) a course of action that is unproductive and offers no hope of improvement; "all the clues led the police into blind alleys"; "so far every road that we've been down has turned out to be a blind alley"
+24734,blind_alley cul_de_sac dead-end_street impasse,a street with only one way in or out
+24735,blind_corner,a street corner that you cannot see around as you are driving
+24736,blind_curve blind_bend,a curve or bend in the road that you cannot see around as you are driving
+24737,blind_date,a participant in a blind date (someone you meet for the first time when you have a date with them)
+24738,blind_date,a date with a stranger; "she never goes on blind dates"
+24739,blind_flying blind_landing,using only instruments for flying an aircraft because you cannot see through clouds or mists etc.
+24740,blind_person,a person with a severe visual impairment
+24741,blind_side,the side on which your vision is limited or obstructed
+24742,blind_snake worm_snake,wormlike burrowing snake of warm regions having vestigial eyes
+24743,blind_spot,a subject about which you are ignorant or prejudiced and fail to exercise good judgment; "golf is one of his blind spots and he's proud of it"
+24744,blind_spot optic_disc optic_disk,the point where the optic nerve enters the retina; not sensitive to light
+24745,blind_stitching,stitching that is not easily seen or noticed
+24746,blind_trust,a trust that enables a person to avoid possible conflict of interest by transferring assets to a fiduciary; the person establishing the trust gives up the right to information about the assets
+24747,blindfold,a cloth used to cover the eyes
+24748,blindman's_bluff blindman's_buff,a children's game in which a blindfolded player tries to catch and identify other players
+24749,blindness sightlessness cecity,the state of being blind or lacking sight
+24750,blindworm slowworm Anguis_fragilis,small burrowing legless European lizard with tiny eyes; popularly believed to be blind
+24751,bling bling_bling,flashy, ostentatious jewelry; "the rapper was loaded with bling"
+24752,blini bliny,Russian pancake of buckwheat flour and yeast; usually served with caviar and sour cream
+24753,blink eye_blink blinking wink winking nictitation nictation,a reflex that closes and opens the eyes rapidly
+24754,blink_of_an_eye flash heartbeat instant jiffy split_second trice twinkling wink New_York_minute,a very short time (as the time it takes the eye to blink or the heart to beat); "if I had the chance I'd do it in a flash"
+24755,blinker flasher,a light that flashes on and off; used as a signal or to send messages
+24756,blinker turn_signal turn_indicator trafficator,a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn
+24757,blinks blinking_chickweed water_chickweed Montia_lamprosperma,small Indian lettuce of northern regions
+24758,blintz blintze,(Judaism) thin pancake folded around a filling and fried or baked
+24759,blip,a sudden minor shock or meaningless interruption; "the market had one bad blip today"; "you can't react to the day-to-day blips"; "renewed jitters in the wake of a blip in retail sales"
+24760,blip pip radar_target,a radar echo displayed so as to show the position of a reflecting surface
+24761,bliss blissfulness cloud_nine seventh_heaven walking_on_air,a state of extreme happiness
+24762,blister,a flaw on a surface resulting when an applied substance does not adhere (as an air bubble in a coat of paint)
+24763,blister,(botany) a swelling on a plant similar to that on the skin
+24764,blister bulla bleb,(pathology) an elevation of the skin filled with serous fluid
+24765,blister_beetle meloid,beetle that produces a secretion that blisters the skin
+24766,blister_blight,a disease of Scotch pines
+24767,blister_blight,a disease of tea plants
+24768,blister_copper,an impure form of copper having a black blistered surface
+24769,blister_pack bubble_pack,packaging in which a product is sealed between a cardboard backing and clear plastic cover
+24770,blister_rust Cronartium_ribicola,fungus causing white pine blister rust and having a complex life cycle requiring a plant of genus Ribes as alternate host
+24771,blister_rust white-pine_rust white_pine_blister_rust,any of several diseases of pines caused by rust fungi of the genus Cronartium and marked by destructive invasion of bark and sapwood and producing blisters externally
+24772,blitz blitzkrieg,a swift and violent military offensive with intensive aerial bombardment
+24773,blizzard snowstorm,a storm with widespread snowfall accompanied by strong winds
+24774,bloat,swelling of the rumen or intestinal tract of domestic animals caused by excessive gas
+24775,bloater,large fatty herring lightly salted and briefly smoked
+24776,blob,an indistinct shapeless form
+24777,bloc axis,a group of countries in special alliance
+24778,block,(computer science) a sector or group of sectors that function as the smallest data unit permitted; "since blocks are often defined as a single sector, the terms `block' and `sector' are sometimes used interchangeably"
+24779,block,a number or quantity of related things dealt with as a unit; "he reserved a large block of seats"; "he held a large block of the company's stock"
+24780,block,housing in a large building that is divided into separate units; "there is a block of classrooms in the west wing"
+24781,block,a solid piece of something (usually having flat rectangular sides); "the pyramids were built with large stone blocks"
+24782,block city_block,a rectangular area in a city surrounded by streets and usually containing several buildings; "he lives in the next block"
+24783,block cube,a three-dimensional shape with six square or rectangular sides
+24784,block mental_block,an inability to remember or think of something you normally can do; often caused by emotional tension; "I knew his name perfectly well but I had a temporary block"
+24785,block_and_tackle,pulley blocks with associated rope or cable
+24786,block_diagram,a diagram showing the interconnections between the components of system (especially an electronic system)
+24787,block_grant,a grant of federal money to state and local governments to support social welfare programs; "block grants reduce federal responsibility for social welfare"
+24788,block_letter block_capital,a plain hand-drawn letter
+24789,block_plane,a small plane used on end grains of wood
+24790,block_vote,a vote proportional in magnitude to the number of people that a delegate represents
+24791,blockade,prevents access or progress
+24792,blockade encirclement,a war measure that isolates some area of importance to the enemy
+24793,blockade-runner,a ship that runs through or around a naval blockade
+24794,blockage block closure occlusion stop stoppage,an obstruction in a pipe or tube; "we had to call a plumber to clear out the blockage in the drainpipe"
+24795,blockage closure occlusion,the act of blocking
+24796,blockbuster,a large bomb used to demolish extensive areas (as a city block)
+24797,blockbuster megahit smash_hit,an unusually successful hit with widespread popularity and huge sales (especially a movie or play or recording or novel)
+24798,blocker,a football player whose responsibility is to block players attempting to stop an offensive play
+24799,blocker blocking_agent,a class of drugs that inhibit (block) some biological process
+24800,blockhouse,a stronghold that is reinforced for protection from enemy fire; with apertures for defensive fire
+24801,blocking block,the act of obstructing or deflecting someone's movements
+24802,blogger,a person who keeps and updates a blog
+24803,blolly West_Indian_snowberry Chiococca_alba,evergreen climbing shrub of southern Florida and West Indies grown for its racemes of fragrant white to creamy flowers followed by globose white succulent berries
+24804,blond blonde,a person with fair skin and hair
+24805,blond blonde,a light grayish yellow to near white
+24806,blood,people viewed as members of a group; "we need more young blood in this organization"
+24807,blood,the fluid (red in vertebrates) that is pumped through the body by the heart and contains plasma, blood cells, and platelets; "blood carries oxygen and nutrients to the tissues and carries away waste products"; "the ancients believed that blood was the seat of the emotions"
+24808,blood,temperament or disposition; "a person of hot blood"
+24809,blood-brain_barrier,a mechanism that creates a barrier between brain tissues and circulating blood; serves to protect the central nervous system; "the brain was protected from the large molecules of the virus by the blood-brain barrier"
+24810,blood-oxygenation_level_dependent_functional_magnetic_resonance_imaging BOLD_FMRI,functional magnetic resonance imaging that relies on intrinsic changes in hemoglobin oxygenation
+24811,blood_agar,a culture medium containing whole blood as the nutrient
+24812,blood_bank,a place for storing whole blood or blood plasma; "the Red Cross created a blood bank for emergencies"
+24813,blood_blister,blister containing blood or bloody serum usually caused by an injury
+24814,blood_brother,a male sworn (usually by a ceremony involving the mingling of blood) to treat another as his brother
+24815,blood_brotherhood,the friendship characteristic of blood brothers
+24816,blood_cell blood_corpuscle corpuscle,either of two types of cells (erythrocytes and leukocytes) and sometimes including platelets
+24817,blood_clam,red-blooded clam
+24818,blood_clot grume,a semisolid mass of coagulated red and white blood cells
+24819,blood_coagulation blood_clotting,a process in which liquid blood is changed into a semisolid mass (a blood clot)
+24820,blood_count,the number of red and white corpuscles in a blood sample
+24821,blood_count,the act of estimating the number of red and white corpuscles in a blood sample
+24822,blood_cup fairy_cup Peziza_coccinea,a scarlet European fungus with cup-shaped ascocarp
+24823,blood_disease blood_disorder,a disease or disorder of the blood
+24824,blood_donor,someone who gives blood to be used for transfusions
+24825,blood_dyscrasia,any abnormal condition of the blood
+24826,blood_extravasation,the leakage of blood from a vessel into tissues surrounding it; can occur in injuries or burns or allergic reactions
+24827,blood_flower swallowwort Asclepias_curassavica,tropical herb having orange-red flowers followed by pods suggesting a swallow with outspread wings; a weed throughout the tropics
+24828,blood_group blood_type,human blood cells (usually just the red blood cells) that have the same antigens
+24829,blood_lily,any of various deciduous or evergreen herbs of the genus Haemanthus; South Africa and Namibia
+24830,blood_meal,the dried and powdered blood of animals
+24831,blood_money,compensation paid to the family of a murdered person
+24832,blood_money,a reward for information about a murderer
+24833,blood_money,paid to a hired murderer
+24834,blood_poisoning septicemia septicaemia,invasion of the bloodstream by virulent microorganisms from a focus of infection
+24835,blood_pressure,the pressure of the circulating blood against the walls of the blood vessels; results from the systole of the left ventricle of the heart; sometimes measured for a quick evaluation of a person's health; "adult blood pressure is considered normal at 120/80 where the first number is the systolic pressure and the second is the diastolic pressure"
+24836,blood_relation blood_relative cognate sib,one related by blood or origin; especially on sharing an ancestor with another
+24837,blood_sausage blood_pudding black_pudding,a black sausage containing pig's blood and other ingredients
+24838,blood_spavin,spavin caused by distension of the veins
+24839,blood_sport,sport that involves killing animals (especially hunting)
+24840,blood_sugar blood_glucose,glucose in the bloodstream
+24841,blood_test,a serologic analysis of a sample of blood
+24842,blood_typing,determining a person's blood type by serological methods
+24843,blood_vessel,a vessel in which blood circulates
+24844,bloodbath bloodletting bloodshed battue,indiscriminate slaughter; "a bloodbath took place when the leaders of the plot surrendered"; "ten days after the bloodletting Hitler gave the action its name"; "the valley is no stranger to bloodshed and murder"; "a huge prison battue was ordered"
+24845,bloodberry blood_berry rougeberry rouge_plant Rivina_humilis,bushy houseplant having white to pale pink flowers followed by racemes of scarlet berries; tropical Americas
+24846,bloodguilt,the state of being guilty of bloodshed and murder
+24847,bloodhound sleuthhound,a breed of large powerful hound of European origin having very acute smell and used in tracking
+24848,bloodiness,the state of being bloody
+24849,bloodiness bloodthirstiness,a disposition to shed blood
+24850,bloodleaf,any plant of the genus Iresine having colored foliage
+24851,bloodletting,formerly used as a treatment to reduce excess blood (one of the four humors of medieval medicine)
+24852,bloodlust,a desire for bloodshed
+24853,bloodmobile,a motor vehicle equipped to collect blood donations
+24854,bloodroot puccoon redroot tetterwort Sanguinaria_canadensis,perennial woodland native of North America having a red root and red sap and bearing a solitary lobed leaf and white flower in early spring and having acrid emetic properties; rootstock used as a stimulant and expectorant
+24855,bloodshed gore,the shedding of blood resulting in murder; "he avenged the bloodshed of his kinsmen"
+24856,bloodstain,a discoloration caused by blood
+24857,bloodstock,thoroughbred horses (collectively)
+24858,bloodstone heliotrope,green chalcedony with red spots that resemble blood
+24859,bloodstream blood_stream,the blood flowing through the circulatory system
+24860,bloodwood_tree kiaat Pterocarpus_angolensis,deciduous South African tree having large odd-pinnate leaves and profuse fragrant orange-yellow flowers; yields a red juice and heavy strong durable wood
+24861,bloodworm,a segmented marine worm with bright red body; often used for bait
+24862,bloodwort,any of various plants of the family Haemodoraceae; roots contain a deep red coloring matter
+24863,bloom bloom_of_youth salad_days,the best time of youth
+24864,bloom blush flush rosiness,a rosy color (especially in the cheeks) taken as a sign of good health
+24865,bloomer,a flower that blooms in a particular way; "a night bloomer"
+24866,bloomers pants drawers knickers,(used in the plural) underpants worn by women; "she was afraid that her bloomers might have been showing"
+24867,blooming bloom,the organic process of bearing flowers; "you will stop all bloom if you let the flowers go to seed"
+24868,blossoming flowering florescence inflorescence anthesis efflorescence,the time and process of budding and unfolding of blossoms
+24869,blot smear smirch spot stain,an act that brings discredit to the person who does it; "he made a huge blot on his copybook"
+24870,blotch splodge splotch,an irregularly shaped spot
+24871,blotter day_book police_blotter rap_sheet charge_sheet,the daily written record of events (as arrests) in a police station
+24872,blotting_paper blotter,absorbent paper used to dry ink
+24873,blouse,a top worn by women
+24874,blow,a powerful stroke with the fist or a weapon; "a blow on the head"
+24875,blow bump,an impact (as from a collision); "the bump threw him off the bicycle"
+24876,blow puff,forceful exhalation through the nose or mouth; "he gave his nose a loud blow"; "he blew out all the candles with a single puff"
+24877,blow_gas blowing_gas,the gas leaving a generator during a blow period
+24878,blowback,misinformation resulting from the recirculation into the source country of disinformation previously planted abroad by that country's intelligence service
+24879,blowback backfire,the backward escape of gases and unburned gunpowder after a gun is fired
+24880,blower,a device that produces a current of air
+24881,blowfish sea_squab puffer pufferfish,delicacy that is highly dangerous because of a potent nerve poison in ovaries and liver
+24882,blowfly blow_fly,large usually hairy metallic blue or green fly; lays eggs in carrion or dung or wounds
+24883,blowgun blowpipe blowtube blow_tube,a tube through which darts can be shot by blowing
+24884,blowhole,the spiracle of a cetacean located far back on the skull
+24885,blowing,processing that involves blowing a gas
+24886,blowout,a sudden malfunction of a part or apparatus; "the right front tire had a blowout"; "as a result of the blowout we lost all the lights"
+24887,blowtorch torch blowlamp,a burner that mixes air and gas to produce a very hot flame
+24888,blowtube blow_tube blowpipe,a tube that directs air or gas into a flame to concentrate heat
+24889,blubber,an insulating layer of fat under the skin of whales and other large marine mammals; used as a source of oil
+24890,blubberer,someone who sniffles and weeps with loud sobs
+24891,blucher,a high shoe with laces over the tongue
+24892,bludgeon,a club used as a weapon
+24893,bludgeoner,an assailant who uses a bludgeon
+24894,blue,any organization or party whose uniforms or badges are blue; "the Union army was a vast blue"
+24895,blue,blue clothing; "she was wearing blue"
+24896,blue,any of numerous small butterflies of the family Lycaenidae
+24897,blue blueness,blue color or pigment; resembling the color of the clear sky in the daytime; "he had eyes of bright blue"
+24898,blue-eyed_African_daisy Arctotis_stoechadifolia Arctotis_venusta,bushy perennial of South Africa with white or violet flowers; in its native region often clothes entire valley sides in a sheet of color
+24899,blue-eyed_Mary Collinsia_verna,eastern United States plant with whorls of blue-and-white flowers
+24900,blue-eyed_grass,plant with grasslike foliage and delicate blue flowers
+24901,blue-headed_vireo Vireo_solitarius_solitarius,common vireo of northeastern North America with bluish slaty-grey head
+24902,blue_ash Fraxinus_quadrangulata,ash of central and southern United States with bluish-green foliage and hard brown wood
+24903,blue_baby,an infant born with a bluish color; usually has a defective heart
+24904,blue_book,a report published by the British government; bound in blue
+24905,blue_book,a register of persons who are socially prominent
+24906,blue_book,a blue booklet used in universities for writing examinations
+24907,blue_catfish blue_cat blue_channel_catfish blue_channel_cat,a large catfish of the Mississippi valley
+24908,blue_cheese_dressing Roquefort_dressing,vinaigrette containing crumbled Roquefort or blue cheese
+24909,blue_chip,a blue poker chip with the highest value
+24910,blue_chip blue-chip_stock,a common stock of a nationally known company whose value and dividends are reliable; typically have high price and low yield; "blue chips are usually safe investments"
+24911,blue_cohosh blueberry_root papooseroot papoose_root squawroot squaw_root Caulophyllum_thalictrioides Caulophyllum_thalictroides,tall herb of eastern North America and Asia having blue berrylike fruit and a thick knotty rootstock formerly used medicinally
+24912,blue_columbine Aquilegia_caerulea Aquilegia_scopulorum_calcarea,columbine of the Rocky Mountains having long-spurred blue flowers
+24913,blue_crab,Atlantic crab; most common source of fresh crabmeat
+24914,blue_crab Callinectes_sapidus,bluish edible crab of Atlantic and Gulf Coasts of North America
+24915,blue_curls,any of several plants of the genus Trichostema having whorls of small blue flowers
+24916,blue_daisy blue_marguerite Felicia_amelloides,hairy South African or Australian subshrub that has daisylike flowers with blue rays
+24917,blue_elder blue_elderberry Sambucus_caerulea,shrub or small tree of western United States having white flowers and blue berries; fruit used in wines and jellies
+24918,blue_false_indigo Baptisia_australis,wild indigo of the eastern United States having racemes of blue flowers
+24919,blue_flag Iris_versicolor,a common iris of the eastern United States having blue or blue-violet flowers; root formerly used medicinally
+24920,blue_fleabane Erigeron_acer,widespread weed with pale purple-blue flowers
+24921,blue_fox,a variety of Arctic fox having a pale grey winter coat
+24922,blue_goose Chen_caerulescens,North American wild goose having dark plumage in summer but white in winter
+24923,blue_grama Bouteloua_gracilis,a pasture grass of western North America
+24924,blue_gum fever_tree Eucalyptus_globulus,tall fast-growing timber tree with leaves containing a medicinal oil; young leaves are bluish
+24925,blue_jasmine blue_jessamine curly_clematis marsh_clematis Clematis_crispa,climber of southern United States having bluish-purple flowers
+24926,blue_jay jaybird Cyanocitta_cristata,common jay of eastern North America; bright blue with grey breast
+24927,blue_law,a statute regulating work on Sundays
+24928,blue_lotus Nymphaea_caerulea,blue Egyptian lotus: held sacred by the Egyptians
+24929,blue_lotus Nymphaea_stellata,blue lotus of India and southeastern Asia
+24930,blue_marlin Makaira_nigricans,largest marlin; may reach 2000 pounds; found worldwide in warm seas
+24931,blue_mockingbird Melanotis_caerulescens,mockingbird of Mexico
+24932,blue_mold_fungus Peronospora_tabacina,fungus causing a serious disease in tobacco plants characterized by bluish-grey mildew on undersides of leaves
+24933,blue_moon,a long time; "something that happens once in blue moon almost never happens"
+24934,blue_murder,an extravagantly loud outcry; "she screamed blue murder"
+24935,blue_note,a flattened third or seventh
+24936,blue_orchid Vanda_caerulea,famous orchid of northern India having large pale to deep lilac-blue flowers
+24937,blue_pea butterfly_pea Clitoria_turnatea,vine of tropical Asia having pinnate leaves and bright blue flowers with yellow centers
+24938,blue_peafowl Pavo_cristatus,peafowl of India and Ceylon
+24939,blue_peter,a blue flag with a white square in the center indicates that the vessel is ready to sail
+24940,blue_pike blue_pickerel blue_pikeperch blue_walleye Strizostedion_vitreum_glaucum,variety inhabiting the Great Lakes
+24941,blue_pimpernel blue_skullcap mad-dog_skullcap mad-dog_weed Scutellaria_lateriflora,an American mint that yields a resinous exudate used especially formerly as an antispasmodic
+24942,blue_point_Siamese,Siamese cat having a bluish cream-colored body and dark grey points
+24943,blue_poppy Meconopsis_betonicifolia,Chinese perennial having mauve-pink to bright sky blue flowers in drooping cymes
+24944,blue_racer Coluber_constrictor_flaviventris,bluish-green blacksnake found from Ohio to Texas
+24945,blue_ribbon cordon_bleu,an honor or award gained for excellence
+24946,blue_ribbon_commission blue_ribbon_committee,an independent and exclusive commission of nonpartisan statesmen and experts formed to investigate some important governmental issue
+24947,blue_sage Salvia_azurea,blue-flowered sage of dry prairies of the eastern United States
+24948,blue_sage Salvia_reflexa Salvia_lancifolia,sage of western North America to Central America having violet-blue flowers; widespread in cultivation
+24949,blue_sage mealy_sage Salvia_farinacea,Texas sage having intensely blue flowers
+24950,blue_shark great_blue_shark Prionace_glauca,slender cosmopolitan, pelagic shark; blue body shades to white belly; dangerous especially during maritime disasters
+24951,blue_sky blue blue_air wild_blue_yonder,the sky as viewed during daylight; "he shot an arrow into the blue"
+24952,blue_sky_law,a state law regulating the sale of securities in an attempt to control the sale of securities in fraudulent enterprises
+24953,blue_star Amsonia_tabernaemontana,subshrubs of southeastern United States forming slow-growing clumps and having blue flowers in short terminal cymes
+24954,blue_succory cupid's_dart Catananche_caerulea,south European plant having dark-eyed flowers with flat blue rays
+24955,blue_tit tomtit Parus_caeruleus,widely distributed European titmouse with bright cobalt blue wings and tail and crown of the head
+24956,blue_toadflax old-field_toadflax Linaria_canadensis,North American plant having racemes of blue-violet flowers
+24957,blue_vitriol blue_copperas blue_stone chalcanthite,hydrated blue crystalline form of copper sulfate
+24958,blue_wall_of_silence blue_wall wall_of_silence,the secrecy of police officers who lie or look the other way to protect other police officers; "the blue wall cracked when some officers refused to take part in the cover-up"
+24959,blue_whale sulfur_bottom Balaenoptera_musculus,largest mammal ever known; bluish-grey migratory whalebone whale mostly of southern hemisphere
+24960,blueberry,sweet edible dark-blue berries of either low-growing or high-growing blueberry plants
+24961,blueberry blueberry_bush,any of numerous shrubs of the genus Vaccinium bearing blueberries
+24962,blueberry_pie,pie containing blueberries and sugar
+24963,blueberry_yogurt,yogurt with sweetened blueberries or blueberry jam
+24964,bluebird,blue North American songbird
+24965,bluebonnet buffalo_clover Texas_bluebonnet Lupinus_subcarnosus,low-growing annual herb of southwestern United States (Texas) having silky foliage and blue flowers; a leading cause of livestock poisoning in the southwestern United States
+24966,bluebottle Calliphora_vicina,blowfly with iridescent blue body; makes a loud buzzing noise in flight
+24967,bluecoat,a person dressed all in blue (as a soldier or sailor)
+24968,bluefin bluefin_tuna,flesh of very large tuna
+24969,bluefin bluefin_tuna horse_mackerel Thunnus_thynnus,largest tuna; to 1500 pounds; of mostly temperate seas: feed in polar regions but breed in tropics
+24970,bluefish,fatty bluish flesh of bluefish
+24971,bluefish Pomatomus_saltatrix,bluish warm-water marine food and game fish that follow schools of small fishes into shallow waters
+24972,bluegill Lepomis_macrochirus,important edible sunfish of eastern and central United States
+24973,bluegrass,a type of country music played at a rapid tempo on banjos and guitars
+24974,bluegrass blue_grass,any of various grasses of the genus Poa
+24975,bluehead Thalassoma_bifasciatum,small Atlantic wrasse the male of which has a brilliant blue head
+24976,bluejack_oak turkey_oak Quercus_incana,small semi-evergreen shrubby tree of southeastern United States having hairy young branchlets and leaves narrowing to a slender bristly point
+24977,bluejacket navy_man sailor sailor_boy,a serviceman in the navy
+24978,bluepoint blue_point,oysters originally from Long Island Sound but now from anywhere along the northeastern seacoast; usually eaten raw
+24979,bluepoint blue_point,small edible oyster typically from the southern shore of Long Island
+24980,blueprint,photographic print of plans or technical drawings etc.
+24981,blueprint design pattern,something intended as a guide for making something else; "a blueprint for a house"; "a pattern for a skirt"
+24982,blueprint_paper,sensitized paper used to make blueprints
+24983,blues,a type of folksong that originated among Black Americans at the beginning of the 20th century; has a melancholy sound from repeated use of blue notes
+24984,blues blue_devils megrims vapors vapours,a state of depression; "he had a bad case of the blues"
+24985,bluestem blue_stem Andropogon_furcatus Andropogon_gerardii,tall grass with smooth bluish leaf sheaths grown for hay in the United States
+24986,bluestocking bas_bleu,a woman having literary or intellectual interests
+24987,bluestone,bluish-grey sandstone used for paving and building
+24988,bluethroat Erithacus_svecicus,songbird of northern Europe and Asia
+24989,bluethroat_pikeblenny Chaenopsis_ocellata,found from Florida to Cuba
+24990,bluetick,a very fast American hound; white mottled with bluish grey
+24991,bluetongue,a viral disease of sheep and cattle that is transmitted by biting midges
+24992,blueweed blue_devil blue_thistle viper's_bugloss Echium_vulgare,a coarse prickly European weed with spikes of blue flowers; naturalized in United States
+24993,bluewing blue-winged_teal Anas_discors,American teal
+24994,bluff,a high steep bank (usually formed by river erosion)
+24995,bluff,pretense that your position is stronger than it really is; "his bluff succeeded in getting him accepted"
+24996,bluff four_flush,the act of bluffing in poker; deception by a false show of confidence in the strength of your cards
+24997,bluffer four-flusher,a person who tries to bluff other people
+24998,bluffness,good-natured frankness
+24999,bluing blueing,a process that makes something blue (or bluish)
+25000,bluing blueing blue,used to whiten laundry or hair or give it a bluish tinge
+25001,bluish_green blue_green teal,a blue-green color or pigment; "they painted it a light shade of bluish green"
+25002,blunder blooper bloomer bungle pratfall foul-up fuckup flub botch boner boo-boo,an embarrassing mistake
+25003,blunderbuss,a short musket of wide bore with a flared muzzle
+25004,blunt_file,a file with parallel edges
+25005,blunt_trauma,injury incurred when the human body hits or is hit by a large outside object (as a car)
+25006,bluntness,the quality of being direct and outspoken; "the bluntness of a Yorkshireman"
+25007,blur fuzz,a hazy or indistinct representation; "it happened so fast it was just a blur"; "he tried to clear his head of the whisky fuzz"
+25008,blush flush,sudden reddening of the face (as from embarrassment or guilt or shame or modesty)
+25009,blush_wine pink_wine rose rose_wine,pinkish table wine from red grapes whose skins were removed after fermentation began
+25010,blushing_mushroom blusher Amanita_rubescens,yellowish edible agaric that usually turns red when touched
+25011,bluster,noisy confusion and turbulence; "he was awakened by the bluster of their preparations"
+25012,bluster,a violent gusty wind
+25013,boa,any of several chiefly tropical constrictors with vestigial hind limbs
+25014,boa_constrictor Constrictor_constrictor,very large boa of tropical America and West Indies
+25015,boar,an uncastrated male hog
+25016,board,a committee having supervisory powers; "the board has seven members"
+25017,board,a flat piece of material designed for a special purpose; "he nailed boards across the windows"
+25018,board gameboard,a flat portable surface (usually rectangular) designed for board games; "he got out the board and set up the pieces"
+25019,board plank,a stout length of sawn timber; made in a wide variety of sizes and used for many purposes
+25020,board table,food or meals in general; "she sets a fine table"; "room and board"
+25021,board_foot,the volume of a piece of wood 1 foot square and 1 inch thick
+25022,board_game,a game played on a specially designed board
+25023,board_measure,a system of units for measuring lumber based on the board foot
+25024,board_meeting committee_meeting,a meeting for administrative purposes
+25025,board_member,a member of a governing board
+25026,board_of_regents,a committee of university officers who have general supervision over the welfare and conduct of students
+25027,board_of_selectmen,a board of officials elected to administer the public business of a New England town
+25028,board_of_trustees,a governing board elected or appointed to direct the policies of an educational institution
+25029,board_rule,a measure used in computing board feet
+25030,boarder,someone who forces their way aboard ship; "stand by to repel boarders"
+25031,boarder,a pupil who lives at school during term time
+25032,boarding,a structure of boards
+25033,boarding embarkation embarkment,the act of passengers and crew getting aboard a ship or aircraft
+25034,boarding_card boarding_pass,a pass that allows you to board a ship or plane
+25035,boarding_house boardinghouse,a private house that provides accommodations and meals for paying guests
+25036,boarding_school,a private school where students are lodged and fed as well as taught
+25037,boardroom council_chamber,a room where a committee meets (such as the board of directors of a company)
+25038,boards,(used in the plural) the stage of a theater; "most actors love to stride the boards"
+25039,boards,(used in the plural) the boarding that surrounds an ice hockey rink
+25040,boardwalk,a walkway made of wooden boards; usually at seaside
+25041,boarfish,fish with large eyes and long snouts
+25042,boarfish Capros_aper,fish with a projecting snout
+25043,boarhound,large hound used in hunting wild boars
+25044,boast boasting self-praise jactitation,speaking of yourself in superlatives
+25045,boastfulness vainglory,outspoken conceit
+25046,boat,a small vessel for travel on water
+25047,boat_deck,the upper deck on which lifeboats are stored
+25048,boat_hook,pole-handled hook used to pull or push boats
+25049,boat_race,a race between people rowing or driving boats
+25050,boat_racing,the sport of racing boats
+25051,boat_train,a train taking passengers to or from a port
+25052,boat_whistle,a whistle on a boat that is sounded as a warning
+25053,boatbill boat-billed_heron broadbill Cochlearius_cochlearius,tropical American heron related to night herons
+25054,boatbuilder,a person who builds boats
+25055,boater leghorn Panama Panama_hat sailor skimmer straw_hat,a stiff hat made of straw with a flat crown
+25056,boathouse,a shed at the edge of a river or lake; used to store boats
+25057,boating yachting,water travel for pleasure
+25058,boatload shipload carload,the amount of cargo that can be held by a boat or ship or a freight car; "he imported wine by the boatload"
+25059,boatman boater waterman,someone who drives or rides in a boat
+25060,boatmanship,skill in handling boats
+25061,boatswain bos'n bo's'n bosun bo'sun,a petty officer on a merchant ship who controls the work of other seamen
+25062,boatswain's_chair bosun's_chair,a seat consisting of a board and a rope; used while working aloft or over the side of a ship
+25063,boatyard,a place where boats are built or maintained or stored
+25064,bob,a hair style for women and children; a short haircut all around
+25065,bob,a hanging weight, especially a metal ball on a string
+25066,bob,a short abrupt inclination (as of the head); "he gave me a short bob of acknowledgement"
+25067,bob bobber cork bobfloat,a small float usually made of cork; attached to a fishing line
+25068,bobbin spool reel,a winder around which thread or tape or film or other flexible materials can be wound
+25069,bobble,the momentary juggling of a batted or thrown baseball; "the second baseman made a bobble but still had time to throw the runner out"
+25070,bobby,an informal term for a British policeman
+25071,bobby_pin hairgrip grip,a flat wire hairpin whose prongs press tightly together; used to hold bobbed hair in place; "in Britain they call a bobby pin a grip"
+25072,bobbysoxer bobby-socker,an adolescent girl wearing bobby socks (common in the 1940s)
+25073,bobcat bay_lynx Lynx_rufus,small lynx of North America
+25074,bobolink ricebird reedbird Dolichonyx_oryzivorus,migratory American songbird
+25075,bobsled bobsleigh,formerly two short sleds coupled together
+25076,bobsled bobsleigh bob,a long racing sled (for 2 or more people) with a steering mechanism
+25077,bobsledding,riding on a bobsled
+25078,bobtail bob dock,a short or shortened tail of certain animals
+25079,bobwhite bobwhite_quail partridge,a popular North American game bird; named for its call
+25080,bocce bocci boccie,Italian bowling played on a long narrow dirt court
+25081,bocce_ball bocci_ball boccie_ball,wooden ball that is bowled in the Italian game of bocce
+25082,bocconia tree_celandine Bocconia_frutescens,small Central American tree having loose racemes of purple-tinted green flowers
+25083,bock bock_beer,a very strong lager traditionally brewed in the fall and aged through the winter for consumption in the spring
+25084,bodega,a small Hispanic shop selling wine and groceries
+25085,bodice,part of a dress above the waist
+25086,bodice_ripper,a romantic novel containing scenes in which the heroine is sexually violated
+25087,bodily_process body_process bodily_function activity,an organic process that takes place in the body; "respiratory activity"
+25088,bodily_property,an attribute of the body
+25089,bodkin,formerly a long hairpin; usually with an ornamental head
+25090,bodkin,a small sharp-pointed tool for punching holes in leather or fabric
+25091,bodkin threader,a blunt needle for threading ribbon through loops
+25092,body,an individual 3-dimensional object that has mass and that is distinguishable from other objects; "heavenly body"
+25093,body,a collection of particulars considered as a system; "a body of law"; "a body of doctrine"; "a body of precedents"
+25094,body,a group of persons associated by some common tie or occupation and regarded as an entity; "the whole body filed out of the auditorium"; "the student body"; "administrative body"
+25095,body,the central message of a communication; "the body of the message was short"
+25096,body,the main mass of a thing
+25097,body,the external structure of a vehicle; "the body of the car was badly rusted"
+25098,body dead_body,a natural object consisting of a dead animal or person; "they found the body in the lake"
+25099,body organic_structure,the entire physical structure of an organism (an animal, plant, or human being); "he felt as if his whole body were on fire"
+25100,body_English,a motion of the body by a player as if to make an object already propelled go in the desired direction
+25101,body_armor body_armour suit_of_armor suit_of_armour coat_of_mail cataphract,armor that protects the wearer's whole body
+25102,body_bag personnel_pouch human_remains_pouch,a bag in which the body of a dead soldier is placed
+25103,body_count,a count of troops killed in an operation or time period; "the daily body count increased as the war went on"
+25104,body_covering,any covering for the body or a body part
+25105,body_hair,short hair growing over a person's body
+25106,body_image,an individual's idea as assessment of his or her own body; "some teenagers are obsessed with their body image"
+25107,body_language,communication via the movements or attitudes of the body
+25108,body_length,the length of your body
+25109,body_lotion,lotion applied to the body after bathing
+25110,body_louse cootie Pediculus_corporis,a parasitic louse that infests the body of human beings
+25111,body_mass_index BMI,a measure of someone's weight in relation to height; to calculate one's BMI, multiply one's weight in pounds and divide that by the square of one's height in inches; overweight is a BMI greater than 25; obese is a BMI greater than 30
+25112,body_odor body_odour B.O.,malodorousness resulting from a failure to bathe
+25113,body_of_water water,the part of the earth's surface covered with water (such as a river or lake or ocean); "they invaded our territorial waters"; "they were sitting by the water's edge"
+25114,body_pad,a pad worn by hockey goalkeeper
+25115,body_part,any part of an organism such as an organ or extremity
+25116,body_plethysmograph,plethysmograph consisting of a chamber surrounding the entire body; used in studies of respiration
+25117,body_servant,a valet or personal maid
+25118,body_stocking,a one-piece tight-fitting undergarment for women that covers the torso (and may have sleeves and legs)
+25119,body_substance,the substance of the body
+25120,body_temperature blood_heat,temperature of the body; normally 98.6 F or 37 C in humans; usually measured to obtain a quick evaluation of a person's health
+25121,body_type somatotype,a category of physique
+25122,body_waste excretion excreta excrement excretory_product,waste matter (as urine or sweat but especially feces) discharged from the body
+25123,body_weight,the weight of a person's body
+25124,bodybuilder muscle_builder muscle-builder musclebuilder muscleman,someone who does special exercises to develop a brawny musculature
+25125,bodybuilding anaerobic_exercise muscle_building musclebuilding,exercise that builds muscles through tension
+25126,bodyguard,a group of men who escort and protect some important person
+25127,bodyguard escort,someone who escorts and protects a prominent person
+25128,bodywork,the exterior body of a motor vehicle
+25129,bodywork,the work of making or repairing vehicle bodies
+25130,boffin,(British slang) a scientist or technician engaged in military research
+25131,bog peat_bog,wet spongy ground of decomposing vegetation; has poorer drainage than a swamp; soil is unfit for cultivation but can be cut and dried and used for fuel
+25132,bog_asphodel,either of two herbaceous rushlike bog plants having small yellow flowers and grasslike leaves; north temperate regions
+25133,bog_aster,a variety of aster
+25134,bog_bilberry bog_whortleberry moor_berry Vaccinium_uliginosum_alpinum,an evergreen shrub with leathery leaves
+25135,bog_pimpernel Anagallis_tenella,small creeping European herb having delicate pink flowers
+25136,bog_rein_orchid bog_candles Habenaria_dilatata,orchid with spikes of many fragrant white flowers on erect leafy stems; of wet or boggy ground through most of the West and northern North America
+25137,bog_rose wild_pink dragon's_mouth Arethusa_bulbosa,a bog orchid with usually a solitary fragrant magenta pink blossom with a wide gaping corolla; Canada
+25138,bog_rosemary moorwort Andromeda_glaucophylla,wiry evergreen shrub having pendent clusters of white or pink flowers; of wet acidic areas in Arctic and Canada to northeastern United States
+25139,bog_soil,poorly drained soils on top of peat and under marsh or swamp vegetation
+25140,bog_spavin,spavin caused by collection of fluids
+25141,bog_star Parnassia_palustris,plant having ovate leaves in a basal rosette and white starlike flowers netted with green
+25142,bogey,(golf) a score of one stroke over par on a hole
+25143,bogey bogy bogie,an evil spirit
+25144,bogeyman bugbear bugaboo boogeyman booger,an imaginary monster used to frighten children
+25145,bogy bogie bogey,an unidentified (and possibly enemy) aircraft
+25146,bohemia,a group of artists and writers with real or pretended artistic or intellectual aspirations and usually an unconventional life style
+25147,bohemian,a nonconformist writer or artist who lives an unconventional life
+25148,bohemianism,conduct characteristic of a bohemian
+25149,bohrium Bh element_107 atomic_number_107,a transuranic element
+25150,boil furuncle,a painful sore with a hard core filled with pus
+25151,boil_smut Ustilago_maydis,a common smut attacking Indian corn causing greyish white swellings that rupture to expose a black spore mass
+25152,boiled_dinner New_England_boiled_dinner,corned beef simmered with onions and cabbage and usually other vegetables
+25153,boiled_egg coddled_egg,egg cooked briefly in the shell in gently boiling water
+25154,boiler steam_boiler,sealed vessel where water is converted to steam
+25155,boilerplate,standard formulations uniformly found in certain types of legal documents or news stories
+25156,boilerplate,thick plate iron used in the production of boilers
+25157,boiling,the application of heat to change something from a liquid to a gas
+25158,boiling stewing simmering,cooking in a liquid that has been brought to a boil
+25159,boiling_point,being highly angry or excited; ready to boil over; "after an hour of waiting I was at the boiling point"
+25160,boiling_point boil,the temperature at which a liquid boils at sea level; "they brought the water to a boil"
+25161,boiling_water_reactor BWR,a nuclear reactor that uses water as a coolant and moderator; the water boils in the reactor core and the steam produced can drive a steam turbine
+25162,boisterousness,a turbulent and stormy state of the sea
+25163,boisterousness,the property of being noisy and lively and unrestrained
+25164,bok_choy bok_choi,elongated head of dark green leaves on thick white stalks
+25165,bok_choy bok_choi pakchoi pak_choi Chinese_white_cabbage Brassica_rapa_chinensis,Asiatic plant grown for its cluster of edible white stalks with dark green leaves
+25166,bola,a rope with weights attached to the ends; is thrown to entangle the legs of an animal; of South American origin
+25167,boldface bold_face bold,a typeface with thick heavy lines
+25168,boldness daring hardiness hardihood,the trait of being willing to undertake things that involve risk or danger; "the proposal required great boldness"; "the plan required great hardiness of heart"
+25169,boldness nerve brass face cheek,impudent aggressiveness; "I couldn't believe her boldness"; "he had the effrontery to question my honesty"
+25170,boldness strikingness,the quality of standing out strongly and distinctly
+25171,bole,a soft oily clay used as a pigment (especially a reddish brown pigment)
+25172,bolero,music written in the rhythm of the bolero dance
+25173,bolero,a short jacket; worn mostly by women
+25174,bolero,a Spanish dance in triple time accompanied by guitar and castanets
+25175,bolete,any fungus of the family Boletaceae
+25176,bolide fireball,an especially luminous meteor (sometimes exploding)
+25177,bolivar,the basic unit of money in Venezuela; equal to 100 centimos
+25178,bolivia,a form of canasta in which sequences can be melded
+25179,boliviano,the basic unit of money in Bolivia; equal to 100 centavos
+25180,boll,the rounded seed-bearing capsule of a cotton or flax plant
+25181,boll_weevil Anthonomus_grandis,greyish weevil that lays its eggs in cotton bolls destroying the cotton
+25182,bollard bitt,a strong post (as on a wharf or quay or ship for attaching mooring lines); "the road was closed to vehicular traffic with bollards"
+25183,bollock bullock_block,a pulley-block at the head of a topmast
+25184,bollworm,any of various moth caterpillars that destroy cotton bolls
+25185,bolo bolo_knife,long heavy knife with a single edge; of Philippine origin
+25186,bolo_tie bolo bola_tie bola,a cord fastened around the neck with an ornamental clasp and worn as a necktie
+25187,bologna Bologna_sausage,large smooth-textured smoked sausage of beef and veal and pork
+25188,bolognese_pasta_sauce,sauce for pasta; contains mushrooms and ham and chopped vegetables and beef and tomato paste
+25189,bologram bolograph,record or recording made by a bolometer
+25190,bolometer,an instrument that measures heat radiation; extremely sensitive
+25191,bolster long_pillow,a pillow that is often put across a bed underneath the regular pillows
+25192,bolt,a roll of cloth or wallpaper of a definite length
+25193,bolt,a sliding bar in a breech-loading firearm that ejects an empty cartridge and replaces it and closes the breech
+25194,bolt,a screw that screws into a nut to form a fastener
+25195,bolt,a sudden abandonment (as from a political party)
+25196,bolt deadbolt,the part of a lock that is engaged or withdrawn with a key
+25197,bolt-hole,a hole through which an animal may bolt when pursued into its burrow or den
+25198,bolt_cutter,an implement for cutting bolts
+25199,bolti Tilapia_nilotica,important food fish of the Nile and other rivers of Africa and Asia Minor
+25200,bolus,a small round soft mass (as of chewed food)
+25201,bolus,a large pill; used especially in veterinary medicine
+25202,bomb,an explosive device fused to explode under specific conditions
+25203,bomb_blast,the explosion of a bomb
+25204,bomb_calorimeter bomb,strong sealed vessel for measuring heat of combustion
+25205,bomb_rack,a device on an aircraft for carrying bombs
+25206,bomb_shelter air-raid_shelter bombproof,a chamber (often underground) reinforced against bombing and provided with food and living facilities; used during air raids
+25207,bomb_site,an area in a town that has been devastated by bombs; "they opened a parking lot on the bomb site"
+25208,bombardier,a noncommissioned officer in the British artillery
+25209,bombardier,the member of a bomber crew responsible for using the bombsight and releasing the bombs on the target
+25210,bombardier_beetle,beetle that ejects audibly a pungent vapor when disturbed
+25211,bombardment,the act (or an instance) of subjecting a body or substance to the impact of high-energy particles (as electrons or alpha rays)
+25212,bombardon bombard,a large shawm; the bass member of the shawm family
+25213,bombast fustian rant claptrap blah,pompous or pretentious talk or writing
+25214,bombazine,a twilled fabric used for dresses; the warp is silk and the weft is worsted; "black bombazine is frequently used for mourning garments"
+25215,bomber,a person who plants bombs
+25216,bomber,a military aircraft that drops bombs during flight
+25217,bomber grinder hero hero_sandwich hoagie hoagy Cuban_sandwich Italian_sandwich poor_boy sub submarine submarine_sandwich torpedo wedge zep,a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States
+25218,bomber_crew bomber_aircrew,the crew of a bomber
+25219,bomber_jacket,a jacket gathered into a band at the waist
+25220,bombie,an unexploded bomblet; "unexploded bomblets known in Laos as `bombies' caused farmers to fear cultivating their fields"
+25221,bombing,the use of bombs for sabotage; a tactic frequently used by terrorists
+25222,bombing bombardment,an attack by dropping bombs
+25223,bombing_run,that part of the flight that begins with the approach to the target; includes target acquisition and ends with the release of the bombs
+25224,bomblet cluster_bomblet,one of the smaller bombs that are released from a cluster bomb
+25225,bombshell,an entertainer who has a sensational effect; "she was a blonde bombshell"
+25226,bombshell,an explosive bomb or artillery shell
+25227,bombshell thunderbolt thunderclap,a shocking surprise; "news of the attack came like a bombshell"
+25228,bombsight,a sighting device in an aircraft for aiming bombs
+25229,bombycid bombycid_moth silkworm_moth,moderate-sized Asiatic moth whose larvae feed on mulberry leaves and produce silk
+25230,bon_mot mot,a clever remark
+25231,bon_voyage send-off,an organized expression of goodwill at the start of a trip or new venture
+25232,bonanza,an especially rich vein of precious ore
+25233,bonbon,a candy that usually has a center of fondant or fruit or nuts coated in chocolate
+25234,bond bond_certificate,a certificate of debt (usually interest-bearing or discounted) that is issued by a government or corporation in order to raise money; the issuer is required to pay a fixed sum annually until maturity and then a fixed sum to repay the principal
+25235,bond bond_paper,a superior quality of strong durable white writing paper; originally made for printing documents
+25236,bond_issue,bonds sold by a corporation or government agency at a particular time and identifiable by date of maturity
+25237,bond_rating,an evaluation by a rating company of the probability that a particular bond issue will default; "the bonds of highest quality are said to have bond ratings of AAA"
+25238,bond_servant,someone bound to labor without wages
+25239,bond_trading bond-trading_activity,trading in bonds (usually by a broker on the floor of an exchange)
+25240,bondage,the state of being under the control of a force or influence or abstract power; "he was in bondage to fear"; "he sought release from his bondage to Satan"; "a self freed from the bondage of time"
+25241,bondage,sexual practice that involves physically restraining (by cords or handcuffs) one of the partners
+25242,bondage slavery thrall thralldom thraldom,the state of being under the control of another person
+25243,bonded_labor,a practice in which employers give high-interest loans to workers whose entire families then labor at low wages to pay off the debt; the practice is illegal in the United States
+25244,bondholder,a holder of bonds issued by a government or corporation
+25245,bonding,a close personal relationship that forms between people (as between husband and wife or parent and child)
+25246,bonding,(dentistry) a technique for repairing a tooth; resinous material is applied to the surface of the tooth where it adheres to the tooth's enamel
+25247,bonding soldering,fastening firmly together
+25248,bondman bondsman,a male bound to serve without wages
+25249,bondman bondsman,a male slave
+25250,bondsman bondswoman,someone who signs a bond as surety for someone else
+25251,bonduc bonduc_tree Caesalpinia_bonduc Caesalpinia_bonducella,tropical tree with large prickly pods of seeds that resemble beans and are used for jewelry and rosaries
+25252,bonduc_nut nicker_nut nicker_seed,hard shiny grey seed of a bonduc tree; used for making e.g. jewelry
+25253,bondwoman bondswoman bondmaid,a female bound to serve without wages
+25254,bondwoman bondswoman bondmaid,a female slave
+25255,bone ivory pearl off-white,a shade of white the color of bleached bones
+25256,bone os,rigid connective tissue that makes up the skeleton of vertebrates
+25257,bone osseous_tissue,the porous calcified substance from which bones are made
+25258,bone-ash_cup cupel refractory_pot,a small porous bowl made of bone ash used in assaying to separate precious metals from e.g. lead
+25259,bone-headed_dinosaur,bipedal herbivorous dinosaurs with bony crowns
+25260,bone_age,a person's age measured by matching their bone development (as shown by X rays) with bone development of an average person of known chronological age
+25261,bone_ash,ash left when bones burn; high in calcium phosphate; used as fertilizer and in bone china
+25262,bone_black bone_char animal_black animal_charcoal,black substance containing char in the form of carbonized bone; used as a black pigment
+25263,bone_cell,a cell that is part of a bone
+25264,bone_china,fine porcelain that contains bone ash
+25265,bone_fat,fatty matter in bones extracted with solvents or by boiling or steaming; used chiefly in candles and cheap soaps and in lubricating greases
+25266,bone_of_contention,the subject of a dispute; "the real bone of contention, as you know, is money"
+25267,bone_oil,the liquid portion of bone fat; used as a lubricant and in leather manufacture
+25268,bone_oil Dippel's_oil,dark-colored ill-smelling oil obtained by carbonizing bone; used especially in sheep dips and in denaturing alcohol
+25269,bone_spavin,spavin caused by a bony growth
+25270,bonefish Albula_vulpes,slender silvery marine fish found in tropical mud flats and mangrove lagoons
+25271,bonemeal,fertilizer made of ground bones
+25272,bones castanets clappers finger_cymbals,(used in the plural) a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance
+25273,boneset agueweed thoroughwort Eupatorium_perfoliatum,perennial herb of southeastern United States having white-rayed flower heads; formerly used as in folk medicine
+25274,bonesetter,someone (not necessarily a licensed physician) who sets broken bones
+25275,boneshaker,any wheeled vehicle that is dilapidated and uncomfortable; "that old bike without rubber tires was a real boneshaker"
+25276,bonfire balefire,a large outdoor fire that is lighted as a signal or in celebration
+25277,bong,a dull resonant sound as of a bell
+25278,bongo Tragelaphus_eurycerus Boocercus_eurycerus,large forest antelope of central Africa having a reddish-brown coat with white stripes and spiral horns
+25279,bongo bongo_drum,a small drum; played with the hands
+25280,bonheur,(French) happiness and good humor
+25281,bonito,flesh of mostly Pacific food fishes of the genus Sarda of the family Scombridae; related to but smaller than tuna
+25282,bonito,any of various scombroid fishes intermediate in size and characteristics between mackerels and tunas
+25283,bonito oceanic_bonito Katsuwonus_pelamis,fish whose flesh is dried and flaked for Japanese cookery; may be same species as skipjack tuna
+25284,bonito_shark blue_pointed Isurus_glaucus,common blue-grey shark of southwest Pacific; sport and food fish
+25285,bonnet poke_bonnet,a hat tied under the chin
+25286,bonnet_macaque bonnet_monkey capped_macaque crown_monkey Macaca_radiata,Indian macaque with a bonnet-like tuft of hair
+25287,bonsai,a dwarfed ornamental tree or shrub grown in a tray or shallow pot
+25288,bonus fillip,anything that tends to arouse; "his approval was an added fillip"
+25289,bonus incentive,an additional payment (or other remuneration) to employees as a means of increasing output
+25290,bony_fish,any fish of the class Osteichthyes
+25291,bony_labyrinth osseous_labyrinth,cavity in the petrous part of the temporal bone that contains the membranous labyrinth
+25292,bonyness boniness emaciation gauntness maceration,extreme leanness (usually caused by starvation or disease)
+25293,boo hoot Bronx_cheer hiss raspberry razzing razz snort bird,a cry or noise made to express displeasure or contempt
+25294,booboisie,class consisting of all those who are considered boobs
+25295,booby,small tropical gannet having a bright bill or bright feet or both
+25296,booby_prize,a prize given to one who finishes last in a contest
+25297,boodle bread cabbage clams dinero dough gelt kale lettuce lolly lucre loot moolah pelf scratch shekels simoleons sugar wampum,informal terms for money
+25298,booger,dried nasal mucus
+25299,boogie boogie-woogie,an instrumental version of the blues (especially for piano)
+25300,boojum_tree cirio Fouquieria_columnaris Idria_columnaris,candlewood of Mexico and southwestern California having tall columnar stems and bearing honey-scented creamy yellow flowers
+25301,book,a collection of playing cards satisfying the rules of a card game
+25302,book,a written work or composition that has been published (printed on pages bound together); "I am reading a good book on economics"
+25303,book,a major division of a long written composition; "the book of Isaiah"
+25304,book,a number of sheets (ticket or stamps etc.) bound together on one edge; "he bought a book of stamps"
+25305,book rule_book,a collection of rules or prescribed standards on the basis of which decisions are made; "they run things by the book around here"
+25306,book volume,physical objects consisting of a number of pages bound together; "he used a large book as a doorstop"
+25307,book_agent,a book salesman
+25308,book_bag,a bag in which students carry their books
+25309,book_fair bookfair,fair organized by publishers or booksellers to promote the sale of books
+25310,book_fair bookfair,bazaar at which books are sold or auctioned off in order to raise funds for a worthy cause
+25311,book_jacket dust_cover dust_jacket dust_wrapper,a paper jacket for a book; a jacket on which promotional information is usually printed
+25312,book_lung,organ in many arachnids containing many thin folds of membrane resembling the leaves of a book
+25313,book_of_knowledge,an elementary encyclopedia dealing with general knowledge
+25314,book_review,a critical review of a book (usually a recently published book)
+25315,book_scorpion Chelifer_cancroides,minute arachnid sometimes found in old papers
+25316,book_token,a gift voucher that can be exchanged for books costing up to an amount given on the voucher
+25317,book_value,the value at which an asset is carried on a balance sheet; equals cost minus accumulated depreciation
+25318,bookbinder,a worker whose trade is binding books
+25319,bookbindery,a bookbinder's workshop; a place for binding books
+25320,bookbinding,the craft of binding books
+25321,bookcase,a piece of furniture with shelves for storing books
+25322,bookclub,a club that people join in order to buy selected books at reduced prices
+25323,bookdealer book_seller,a dealer in books; a merchant who sells books
+25324,bookend,a support placed at the end of a row of books to keep them upright (on a shelf or table)
+25325,booker booking_agent,someone who engages a person or company for performances
+25326,booking reservation,the act of reserving (a place or passage) or engaging the services of (a person or group); "wondered who had made the booking"
+25327,bookishness,exaggerated studiousness
+25328,bookkeeper,someone who records the transactions of a business
+25329,bookkeeping clerking,the activity of recording business transactions
+25330,booklet brochure folder leaflet pamphlet,a small book usually having a paper cover
+25331,booklouse book_louse deathwatch Liposcelis_divinatorius,minute wingless psocopterous insects injurious to books and papers
+25332,bookmaker,a maker of books; someone who edits or publishes or binds books
+25333,bookmaker bookie,a gambler who accepts and pays off bets (especially on horse races)
+25334,bookmark bookmarker,a marker (a piece of paper or ribbon) placed between the pages of a book to mark the reader's place
+25335,bookmobile,a van with shelves of books; serves as a mobile library or bookstore
+25336,bookplate ex_libris,a label identifying the owner of a book in which it is pasted
+25337,bookseller,the proprietor of a bookstore
+25338,bookshelf,a shelf on which to keep books
+25339,bookshop bookstore bookstall,a shop where books are sold
+25340,bookworm,someone who spends a great deal of time reading
+25341,boolean_operation binary_operation binary_arithmetic_operation,an operation that follows the rules of Boolean algebra; each operand and the result take one of two values
+25342,boom,a state of economic prosperity
+25343,boom,any of various more-or-less horizontal spars or poles used to extend the foot of a sail or for handling cargo or in mooring
+25344,boom bonanza gold_rush gravy godsend manna_from_heaven windfall bunce,a sudden happening that brings good fortune (as a sudden opportunity to make money); "the demand for testing has created a boom for those unregulated laboratories where boxes of specimen jars are processed like an assembly line"
+25345,boom microphone_boom,a pole carrying an overhead microphone projected over a film or tv set
+25346,boom roar roaring thunder,a deep prolonged loud noise
+25347,boom_town,a town enjoying sudden prosperity
+25348,boomerang throwing_stick throw_stick,a curved piece of wood; when properly thrown will return to thrower
+25349,boondoggle,work of little or no value done merely to look busy
+25350,boorishness,the manner of a rude or insensitive person
+25351,boorishness uncouthness,inelegance by virtue of being an uncouth boor
+25352,boost,the act of giving a push; "he gave her a boost over the fence"
+25353,boost encouragement,the act of giving hope or support to someone
+25354,booster booster_amplifier booster_station relay_link relay_station relay_transmitter,an amplifier for restoring the strength of a transmitted signal
+25355,booster booster_dose booster_shot recall_dose,an additional dose that makes sure the first dose was effective
+25356,booster booster_rocket booster_unit takeoff_booster takeoff_rocket,the first stage of a multistage rocket
+25357,booster shoplifter lifter,a thief who steals goods that are in a store
+25358,boot,protective casing for something that resembles a leg
+25359,boot,footwear that covers the whole foot and lower leg
+25360,boot,a form of foot torture in which the feet are encased in iron and slowly crushed
+25361,boot the_boot iron_boot iron_heel,an instrument of torture that is used to heat or crush the foot and leg
+25362,boot_camp,camp for training military recruits
+25363,bootblack shoeblack,a person who polishes shoes and boots
+25364,bootee bootie,a slipper that is soft and wool (for babies)
+25365,booth,a table (in a restaurant or bar) surrounded by two high-backed benches
+25366,booth,a small shop at a fair; for selling goods or entertainment
+25367,booth cubicle stall kiosk,small area set off by walls for special use
+25368,boothose,protective stockings worn with or in place of boots
+25369,bootjack,has V-shaped notch for pulling off boots
+25370,bootlace,a long lace for fastening boots
+25371,bootleg,the part of a boot above the instep
+25372,bootlegger moonshiner,someone who makes or sells illegal liquor
+25373,bootlegging,the act of selling illegally or without permission; "the bootlegging of videotapes is common in Asia"
+25374,bootlegging,the act of making or transporting alcoholic liquor for sale illegally; "the Prohibition amendment made bootlegging profitable"
+25375,bootmaker boot_maker,a maker of boots
+25376,bootstrap,a strap that is looped and sewn to the top of a boot for pulling it on
+25377,bop bebop,an early form of modern jazz (originating around 1940)
+25378,borage,an herb whose leaves are used to flavor sauces and punches; young leaves can be eaten in salads or cooked
+25379,borage tailwort Borago_officinalis,hairy blue-flowered European annual herb long used in herbal medicine and eaten raw as salad greens or cooked like spinach
+25380,borate,a salt or ester of boric acid
+25381,borax,an ore of boron consisting of hydrated sodium borate; used as a flux or cleansing agent
+25382,bordelaise,brown sauce with beef marrow and red wine
+25383,border,a strip forming the outer edge of something; "the rug had a wide blue border"
+25384,border_patrol,a group of officers who patrol the borders of a country
+25385,border_patrolman,someone who patrols the borders of a country
+25386,borderer,an inhabitant of a border area (especially the border between Scotland and England)
+25387,borderland border_district march marchland,district consisting of the area on either side of a border or boundary of a country or an area; "the Welsh marches between England and Wales"
+25388,borderline_intelligence,the minimal IQ required for someone to function normally and independently in the world (without some form of institutional assistance)
+25389,borderline_schizophrenia latent_schizophrenia,schizophrenia characterized by mild symptoms or by some preexisting tendency to schizophrenia
+25390,bore bore-hole drill_hole,a hole or passage made by a drill; usually made for exploratory purposes
+25391,bore dullard,a person who evokes boredom
+25392,bore gauge caliber calibre,diameter of a tube or gun barrel
+25393,bore_bit borer rock_drill stone_drill,a drill for penetrating rock
+25394,boredom ennui tedium,the feeling of being bored by something tedious
+25395,boric_acid boracic_acid,any of various acids containing boron and oxygen
+25396,boric_acid orthoboric_acid,a white or colorless slightly acid solid that is soluble in water and ethanol; used in the manufacture of glass and paper and adhesives and in detergents and as a flux in welding; also used as an antiseptic and food preservative
+25397,boring drilling oil_production,the act of drilling a hole in the earth in the hope of producing petroleum
+25398,boringness dreariness insipidness insipidity,extreme dullness; lacking spirit or interest
+25399,born-again_Christian,a Christian who has experienced a dramatic conversion to faith in Jesus
+25400,bornite peacock_ore,a mineral consisting of sulfides of copper and iron that is found in copper deposits
+25401,boron B atomic_number_5,a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder
+25402,boron_chamber,an ionization chamber lined with boron or filled with boron trifluoride gas for counting low velocity neutrons
+25403,boron_counter_tube,a proportional counter tube for counting neutrons
+25404,boron_trifluoride,a pungent colorless gas
+25405,borosilicate,a salt of boric and silicic acids
+25406,borough,one of the administrative divisions of a large city
+25407,borough,an English town that forms the constituency of a member of parliament
+25408,borough_English,a former English custom by which the youngest son inherited land to the exclusion of his older brothers
+25409,borrelia,cause of e.g. European and African relapsing fever
+25410,borrow_pit,a pit created to provide earth that can be used as fill at another site
+25411,borrower,someone who receives something on the promise to return it or its equivalent
+25412,borrowing,obtaining funds from a lender
+25413,borrowing adoption,the appropriation (of ideas or words etc) from another source; "the borrowing of ancient motifs was very apparent"
+25414,borrowing_cost,the cost of borrowing something
+25415,borsch borsh borscht borsht borshch bortsch,a Russian or Polish soup usually containing beet juice as a foundation
+25416,borscht_circuit borsht_circuit borscht_belt borsht_belt,(informal) a resort area in the Catskill Mountains of New York that was patronized primarily by Jewish guests; "many comedians learned their trade playing the borscht circuit"
+25417,borstal,formerly a British reform school for youths considered too young to send to prison
+25418,borzoi Russian_wolfhound,tall fast-moving dog breed
+25419,bosc,greenish-yellow pear
+25420,bosk,a small wooded area
+25421,bosom,the chest considered as the place where secret thoughts are kept; "his bosom was bursting with the secret"
+25422,bosom,a person's breast or chest
+25423,bosom,cloth that covers the chest or breasts
+25424,boson,any particle that obeys Bose-Einstein statistics but not the Pauli exclusion principle; all nuclei with an even mass number are bosons
+25425,boss,a person who exercises control and makes decisions; "he is his own boss now"
+25426,boss hirer,a person responsible for hiring workers; "the boss hired three more men for the new job"
+25427,bossism,domination of a political organization by a party boss
+25428,bot,botfly larva; typically develops inside the body of a horse or sheep or human
+25429,bota,a wine bottle made of leather
+25430,botanical,a drug made from part of a plant (as the bark or root or leaves)
+25431,botanist phytologist plant_scientist,a biologist specializing in the study of plants
+25432,botany phytology,the branch of biology that studies plants
+25433,botfly,stout-bodied hairy dipterous fly whose larvae are parasites on humans and other mammals
+25434,bottle,a glass or plastic vessel used for storing drinks or other liquids; typically cylindrical without handles and with a narrow neck that can be plugged or capped
+25435,bottle bottleful,the quantity contained in a bottle
+25436,bottle feeding_bottle nursing_bottle,a vessel fitted with a flexible teat and filled with milk or formula; used as a substitute for breast feeding infants and very young children
+25437,bottle-nosed_whale bottlenose_whale bottlenose Hyperoodon_ampullatus,northern Atlantic beaked whale with a bulbous forehead
+25438,bottle-tree bottle_tree,an Australian tree of the genus Brachychiton
+25439,bottle_bank,a place where bottles can be deposited for recycling
+25440,bottle_bill,a statute that would require merchants to reclaim used bottles
+25441,bottle_collection,a collection of bottles; "her bottle collection is arranged on glass shelves in the window"
+25442,bottle_collection,the activity of collecting bottles; "bottle collection is a hobby of hers"
+25443,bottle_collection,collecting bottles for reuse
+25444,bottle_gourd calabash Lagenaria_siceraria,Old World climbing plant with hard-shelled bottle-shaped gourds as fruits
+25445,bottle_green,dark to moderate or greyish green
+25446,bottle_opener,an opener for removing caps or corks from bottles
+25447,bottlebrush,a cylindrical brush on a thin shaft that is used to clean bottles
+25448,bottlecap,a cap that seals a bottle
+25449,bottled_water,drinking water (often spring water) that is put into bottles and offered for sale
+25450,bottleneck,the narrow part of a bottle near the top
+25451,bottlenose_dolphin bottle-nosed_dolphin bottlenose,any of several dolphins with rounded forehead and well-developed beak; chiefly of northern Atlantic and Mediterranean
+25452,bottler,a manufacturer that makes and bottles beverages
+25453,bottling_plant,a plant where beverages are put into bottles with caps
+25454,bottom,the lowest part of anything; "they started at the bottom of the hill"
+25455,bottom bottom_of_the_inning,the second half of an inning; while the home team is at bat
+25456,bottom freighter merchantman merchant_ship,a cargo ship; "they did much of their overseas trade in foreign bottoms"
+25457,bottom underside undersurface,the lower side of anything
+25458,bottom-feeder,a scavenger that feeds low on the food chain
+25459,bottom-feeder bottom-dweller,a fish that lives and feeds on the bottom of a body of water
+25460,bottom_dog,a person of low status
+25461,bottom_feeder,an opportunist who profits from the misfortunes of others
+25462,bottom_fermentation,a slow kind of alcoholic fermentation at a temperature low enough that the yeast cells can sink to the bottom of the fermenting liquid; used in the production of lager
+25463,bottom_fermenting_yeast,brewer's yeast used in bottom fermentation of lager
+25464,bottom_line,the last line in an audit; the line that shows profit or loss
+25465,bottom_line,the decisive point
+25466,bottom_lurkers,a fish that lurks on the bottom of a body of water
+25467,bottom_quark beauty_quark,a quark with a charge of -1/3 and a mass about 10,000 times that of an electron
+25468,bottom_rot,fungous disease of lettuce that first rots lower leaves and spreads upward
+25469,bottom_rot_fungus Corticium_solani,fungus causing bottom rot in lettuce
+25470,bottom_round,cut from the round; suitable for pot roast
+25471,bottomland bottom,low-lying alluvial land near a river
+25472,bottomlessness,the property of being very deep; without limit
+25473,botulin botulinus_toxin botulismotoxin,potent bacterial toxin produced by the bacterium Clostridium botulinum that causes botulism; can be used as a bioweapon
+25474,botulinum_toxin,any of several neurotoxins that are produced by the anaerobic bacterium Clostridium botulinum; causes muscle paralysis
+25475,botulinum_toxin_A Botox,a neurotoxin (trade name Botox) that is used clinically in small quantities to treat strabismus and facial spasms and other neurological disorders characterized by abnormal muscle contractions; is also used by cosmetic surgeons to smooth frown lines temporarily
+25476,botulinus botulinum Clostridium_botulinum,anaerobic bacterium producing botulin the toxin that causes botulism
+25477,botulism,food poisoning from ingesting botulin; not infectious; affects the CNS; can be fatal if not treated promptly
+25478,boucle,a fabric of uneven yarn that has an uneven knobby effect
+25479,boudoir,a lady's bedroom or private sitting room
+25480,bouffant,a woman's hairstyle in which the hair gives a puffy appearance
+25481,bougainvillea,any of several South American ornamental woody vines of the genus Bougainvillea having brilliant red or purple flower bracts; widely grown in warm regions
+25482,bough,any of the larger branches of a tree
+25483,bouillabaisse,highly seasoned Mediterranean soup or stew made of several kinds of fish and shellfish with tomatoes and onions or leeks and seasoned with saffron and garlic and herbs
+25484,bouillon,a clear seasoned broth
+25485,bouillon_cube,a cube of evaporated seasoned meat extract
+25486,boulder bowlder,a large smooth mass of rock detached from its place of origin
+25487,boulevardier,a visitor of a city boulevard (especially in Paris)
+25488,boulle boule buhl,an inlaid furniture decoration; tortoiseshell and yellow and white metal form scrolls in cabinetwork
+25489,bounce bounciness,the quality of a substance that is able to rebound
+25490,bounce bouncing,rebounding from an impact (or series of impacts)
+25491,bouncer chucker-out,a person whose duty is to throw troublemakers out of a bar or public meeting
+25492,bouncing_betty,an antipersonnel land mine
+25493,bouncing_putty,a soft elastic silicone polymer that increases in elasticity with the application of force; used in the center of golf balls and as shock-absorbent padding
+25494,bound_morpheme bound_form,a morpheme that occurs only as part of a larger construction; eg an -s at the end of plural nouns
+25495,boundary bound bounds,the line or plane indicating the limit or extent of something
+25496,boundary edge bound,a line determining the limits of an area
+25497,boundary_condition,(mathematics) a condition specified for the solution to a set of differential equations
+25498,boundary_layer,the layer of slower flow of a fluid past a surface
+25499,boundary_line border borderline delimitation mete,a line that indicates a boundary
+25500,bounder leaper,someone who bounds or leaps (as in competition)
+25501,bounty bounteousness,generosity evidenced by a willingness to give freely
+25502,bounty premium,payment or reward (especially from a government) for acts such as catching criminals or killing predatory animals or enlisting in the military
+25503,bounty_hunter,someone who pursues fugitives or criminals for whom a reward is offered
+25504,bounty_hunter,a hunter who kills predatory wild animals in order to collect a bounty
+25505,bouquet corsage posy nosegay,an arrangement of flowers that is usually given as a present
+25506,bouquet fragrance fragrancy redolence sweetness,a pleasingly sweet olfactory property
+25507,bourbon,whiskey distilled from a mash of corn and malt and rye and aged in charred oak barrels
+25508,bourgeois burgher,a member of the middle class
+25509,bourguignon bourguignon_sauce Burgundy_sauce,reduced red wine with onions and parsley and thyme and butter
+25510,bourn bourne,an archaic term for a boundary
+25511,bourn bourne,an archaic term for a goal or destination
+25512,bourtree black_elder common_elder elderberry European_elder Sambucus_nigra,a common shrub with black fruit or a small tree of Europe and Asia; fruit used for wines and jellies
+25513,boustrophedon,an ancient writing system: having alternate lines written in opposite directions; literally `as the ox ploughs'
+25514,bout,a period of illness; "a bout of fever"; "a bout of depression"
+25515,bout,a contest or fight (especially between boxers or wrestlers)
+25516,boutique dress_shop,a shop that sells women's clothes and jewelry
+25517,boutonniere,a flower that is worn in a buttonhole
+25518,bovid,hollow-horned ruminants
+25519,bovine,any of various members of the genus Bos
+25520,bovine_spongiform_encephalitis BSE mad_cow_disease,a fatal disease of cattle that affects the central nervous system; causes staggering and agitation
+25521,bow,a decorative interlacing of ribbons
+25522,bow,a weapon for shooting arrows, composed of a curved piece of resilient wood with a taut cord to propel the arrow
+25523,bow,a slightly curved piece of resilient wood with taut horsehair strands; used in playing certain stringed instruments
+25524,bow,a stroke with a curved piece of wood with taut horsehair strands that is used in playing stringed instruments
+25525,bow arc,something curved in shape
+25526,bow bowing obeisance,bending the head or body or knee as a sign of reverence or submission or shame or greeting
+25527,bow bowknot,a knot with two loops and loose ends; used to tie shoelaces
+25528,bow curtain_call,an appearance by actors or performers at the end of the concert or play in order to acknowledge the applause of the audience
+25529,bow fore prow stem,front part of a vessel or aircraft; "he pointed the bow of the boat toward the finish line"
+25530,bow-wow,the bark of a dog
+25531,bow_and_arrow,a weapon consisting of arrows and the bow to shoot them
+25532,bow_leg bow_legs bandy_legs,outward curvature of the legs
+25533,bow_tie bow-tie bowtie,a man's tie that ties in a bow
+25534,bowdlerization bowdlerisation,written material that has been bowdlerized
+25535,bowdlerization bowdlerisation,the act of deleting or modifying all passages considered to be indecent
+25536,bowed_stringed_instrument string,stringed instruments that are played with a bow; "the strings played superlatively well"
+25537,bowel_movement movement bm,a euphemism for defecation; "he had a bowel movement"
+25538,bowels,the center of the Earth
+25539,bower_actinidia tara_vine Actinidia_arguta,climbing Asiatic vine having long finely serrate leaves and racemes of white flowers followed by greenish-yellow edible fruit
+25540,bowerbird catbird,any of various birds of the Australian region whose males build ornamented structures resembling bowers in order to attract females
+25541,bowfin grindle dogfish Amia_calva,primitive long-bodied carnivorous freshwater fish with a very long dorsal fin; found in sluggish waters of North America
+25542,bowhead bowhead_whale Greenland_whale Balaena_mysticetus,large-mouthed Arctic whale
+25543,bowing,managing the bow in playing a stringed instrument; "the violinist's bowing was excellent"
+25544,bowl,a wooden ball (with flattened sides so that it rolls on a curved course) used in the game of lawn bowling
+25545,bowl,a round vessel that is open at the top; used chiefly for holding food or liquids
+25546,bowl,a dish that is round and open at the top for serving foods
+25547,bowl bowlful,the quantity contained in a bowl
+25548,bowl pipe_bowl,a small round container that is open at the top for holding tobacco
+25549,bowl trough,a concave shape with an open top
+25550,bowleg bow_leg bandyleg bandy_leg genu_varum tibia_vara,a leg bowed outward at the knee (or below the knee)
+25551,bowler,a cricketer who delivers the ball to the batsman in cricket
+25552,bowler,a player who rolls balls down an alley at pins
+25553,bowler_hat bowler derby_hat derby plug_hat,a felt hat that is round and hard with a narrow brim
+25554,bowline bowline_knot,a loop knot that neither slips nor jams
+25555,bowling,a game in which balls are rolled at an object or group of objects with the aim of knocking them over or moving them
+25556,bowling,(cricket) the act of delivering a cricket ball to the batsman
+25557,bowling,the playing of a game of tenpins or duckpins etc
+25558,bowling_alley,a building that contains several alleys for bowling
+25559,bowling_alley alley skittle_alley,a lane down which a bowling ball is rolled toward pins
+25560,bowling_ball bowl,a large ball with finger holes used in the sport of bowling
+25561,bowling_equipment,equipment used in bowling
+25562,bowling_green,a field of closely mowed turf for playing bowls
+25563,bowling_league,a league of bowling teams
+25564,bowling_pin pin,a club-shaped wooden object used in bowling; set up in triangular groups of ten as the target
+25565,bowling_score,the score in a bowling match
+25566,bowling_shoe,a special shoe worn when bowling
+25567,bowsprit,a spar projecting from the bow of a vessel
+25568,bowstring,the string of an archer's bow
+25569,bowstring_hemp,hemp obtained from the sansevieria
+25570,bowstring_hemp,strong fiber that resembles hemp; obtained from sansevieria and used for e.g. cordage
+25571,box,a rectangular drawing; "the flowchart contained many boxes"
+25572,box,any one of several designated areas on a ball field where the batter or catcher or coaches are positioned; "the umpire warned the batter to stay in the batter's box"
+25573,box,separate partitioned area in a public place for a few people; "the sentry stayed in his box to avoid the cold"
+25574,box,a (usually rectangular) container; may have a lid; "he rummaged through a box of spare parts"
+25575,box,a blow with the hand (usually on the ear); "I gave him a good box on the ear"
+25576,box box_seat,the driver's seat on a coach; "an armed guard sat in the box with the driver"
+25577,box boxful,the quantity contained in a box; "he gave her a box of chocolates"
+25578,box boxwood,evergreen shrubs or small trees
+25579,box loge,private area in a theater or grandstand where a small group can watch the performance; "the royal box was empty"
+25580,box_beam box_girder,a beam built up from boards; has a hollow rectangular cross section
+25581,box_calf,black calfskin leather tanned with chromium salts
+25582,box_camera box_Kodak,a simple camera shaped like a rectangular box
+25583,box_coat,a short coat that hangs loosely from the shoulders
+25584,box_elder ash-leaved_maple Acer_negundo,common shade tree of eastern and central United States
+25585,box_huckleberry Gaylussacia_brachycera,creeping evergreen shrub of southeastern United States having small shiny boxlike leaves and flavorless berries
+25586,box_kite,a kite shaped like a box open at both ends
+25587,box_number,a mailing address to which answers to a newspaper ad can be sent
+25588,box_office,total admission receipts for an entertainment
+25589,box_office ticket_office ticket_booth,the office where tickets of admission are sold
+25590,box_pleat,a flat double pleat made by folding under the fabric on either side of it
+25591,box_seat,a special seat in a theater or grandstand box
+25592,box_spring,a coiled bedspring in a frame that is covered with cloth
+25593,box_turtle box_tortoise,chiefly terrestrial turtle of North America; shell can be closed tightly
+25594,box_wrench box_end_wrench,a wrench with a closed loop (a socket) that fits over a nut or bolt head
+25595,boxcar,a freight car with roof and sliding doors in the sides
+25596,boxcars,(usually plural) an expression used when two dice are thrown and both come up showing six spots
+25597,boxer,a breed of stocky medium-sized short-haired dog with a brindled coat and square-jawed muzzle developed in Germany
+25598,boxer pugilist,someone who fights with his fists for sport
+25599,boxfish trunkfish,any of numerous small tropical fishes having body and head encased in bony plates
+25600,boxing pugilism fisticuffs,fighting with the fists
+25601,boxing_equipment,equipment used in boxing
+25602,boxing_glove glove,boxing equipment consisting of big and padded coverings for the fists of the fighters; worn for the sport of boxing
+25603,boxing_match,a match between boxers; usually held in a boxing ring
+25604,boxing_ring prize_ring,a square ring where boxers fight
+25605,boxwood Turkish_boxwood,very hard tough close-grained light yellow wood of the box (particularly the common box); used in delicate woodwork: musical instruments and inlays and engraving blocks
+25606,boy,a friendly informal reference to a grown man; "he likes to play golf with the boys"
+25607,boy_scout,a man who is considered naive
+25608,boy_wonder,an extremely talented young male person
+25609,boycott,a group's refusal to have commercial dealings with some organization in protest against its policies
+25610,boyfriend fellow beau swain,a man who is the lover of a man or woman; "if I'd known he was her boyfriend I wouldn't have asked"; "When the law changed, Pet could finally married his long-time boyfriend Jim"
+25611,boyhood,the childhood of a boy
+25612,boyishness,being characteristic of a boy
+25613,boysenberry,large raspberry-flavored fruit; cross between blackberries and raspberries
+25614,boysenberry boysenberry_bush,cultivated hybrid bramble of California having large dark wine-red fruit with a flavor resembling raspberries
+25615,brace,either of two punctuation marks ({ or }) used to enclose textual material
+25616,brace,a rope on a square-rigged ship that is used to swing a yard about and secure it
+25617,brace,a support that steadies or strengthens something else; "he wore a brace on his knee"
+25618,brace bitstock,a carpenter's tool having a crank handle for turning and a socket to hold a bit for boring
+25619,brace braces orthodontic_braces,an appliance that corrects dental irregularities
+25620,brace bracing,a structural member used to stiffen a framework
+25621,brace suspender gallus,elastic straps that hold trousers up (usually used in the plural)
+25622,brace_and_bit,a drill consisting of a bit and a brace to hold and turn it
+25623,brace_wrench,a wrench shaped like a brace (has a handle shaped like a crank) and a socket head
+25624,bracelet bangle,jewelry worn around the wrist for decoration
+25625,bracelet_wood Jacquinia_armillaris,small West Indian shrub or tree with hard glossy seeds patterned yellow and brown that are used to make bracelets
+25626,bracer armguard,a protective covering for the wrist or arm that is used in archery and fencing and other sports
+25627,bracer pick-me-up,a tonic or restorative (especially a drink of liquor)
+25628,bracero,a Mexican laborer who worked in the United States on farms and railroads in order to ease labor shortages during World War II
+25629,brachial_artery arteria_brachialis,the main artery of the upper arm; a continuation of the axillary artery; bifurcates into the radial and ulnar arteries at the elbow
+25630,brachial_plexus plexus_brachialis,a network of nerves formed by cervical and thoracic spinal nerves and supplying the arm and parts of the shoulder
+25631,brachial_vein vena_brachialis,two veins in either arm that accompany the brachial artery and empty into the axillary vein
+25632,brachiation,swinging by the arms from branch to branch
+25633,brachiocephalic_vein innominate_vein vena_brachiocephalica,veins formed by the union of the internal jugular and subclavian veins
+25634,brachiopod lamp_shell lampshell,marine animal with bivalve shell having a pair of arms bearing tentacles for capturing food; found worldwide
+25635,brachium,(biology) a branching or armlike part of an animal
+25636,brachycephalic,an adult with a short broad head
+25637,brachycephaly brachycephalism,the quality of being brachycephalic
+25638,brachydactyly brachydactylia,abnormal shortness of fingers and toes
+25639,brachyuran,typical crabs
+25640,bracken Pteridium_esculentum,fern of southeastern Asia; not hardy in cold temperate regions
+25641,bracken pasture_brake brake Pteridium_aquilinum,large coarse fern often several feet high; essentially weed ferns; cosmopolitan
+25642,bracket,a category falling within certain defined limits
+25643,bracket angle_bracket,either of two punctuation marks (`<' or `>') used in computer programming and sometimes used to enclose textual material
+25644,bracket square_bracket,either of two punctuation marks ([ or ]) used to enclose textual material
+25645,bracket wall_bracket,a support projecting from a wall (as to hold a shelf)
+25646,bracket_creep,a movement into a higher tax bracket as taxable income increases
+25647,bracket_fungus shelf_fungus,a woody fungus that forms shelflike sporophores on tree trunks and wood structures
+25648,brackishness,the quality of being salty, as the saltiness of water
+25649,bract,a modified leaf or leaflike part just below and protecting an inflorescence
+25650,bracteole bractlet,a small bract
+25651,brad,a small nail
+25652,bradawl pricker,an awl for making small holes for brads or small screws
+25653,bradycardia,abnormally slow heartbeat
+25654,brae,a slope or hillside
+25655,brag bragging crow crowing vaporing line-shooting gasconade,an instance of boastful talk; "his brag is worse than his fight"; "whenever he won we were exposed to his gasconade"
+25656,braggadocio bluster rodomontade rhodomontade,vain and empty boasting
+25657,bragger braggart boaster blowhard line-shooter vaunter,a very boastful and talkative person
+25658,brahman brahmin,a member of a social and cultural elite (especially a descendant of an old New England family); "a Boston brahman"
+25659,brahman brahmin,a member of the highest of the four Hindu varnas; "originally all brahmans were priests"
+25660,brahman brahmin,the highest of the four varnas: the priestly or sacerdotal category
+25661,braid gold_braid braiding,trimming used to decorate clothes or curtains
+25662,braid plait tress twist,a hairdo formed by braiding or twisting the hair
+25663,brail,a small net used to draw fish into a boat
+25664,brail,a small rope (one of several) used to draw a sail in
+25665,braille,a point system of writing in which patterns of raised dots represent letters and numerals
+25666,brain,the brain of certain animals used as meat
+25667,brain brainpower learning_ability mental_capacity mentality wit,mental ability; "he's got plenty of brains but no common sense"
+25668,brain encephalon,that part of the central nervous system that includes all the higher nervous centers; enclosed within the skull; continuous with the spinal cord
+25669,brain_cell,a nerve cell in the brain
+25670,brain_coral,massive reef-building coral having a convoluted and furrowed surface
+25671,brain_damage,injury to the brain that impairs its functions (especially permanently); can be caused by trauma to the head, infection, hemorrhage, inadequate oxygen, genetic abnormality, etc.
+25672,brain_death cerebral_death,death when respiration and other reflexes are absent; consciousness is gone; organs can be removed for transplantation before the heartbeat stops
+25673,brain_disorder encephalopathy brain_disease,any disorder or disease of the brain
+25674,brain_drain,depletion or loss of intellectual and technical personnel
+25675,brain_science,the branch of neuroscience concerned with the brain
+25676,brain_surgery,any surgical procedure involving the brain
+25677,brain_tumor brain_tumour,a tumor in the brain
+25678,brainstem brain-stem brain_stem,the part of the brain continuous with the spinal cord and comprising the medulla oblongata and pons and midbrain and parts of the hypothalamus
+25679,brainstorming,a group problem-solving technique in which members spontaneously share ideas and solutions; "we had an intense brainstorming session today"
+25680,brainwashing,forcible indoctrination into a new set of attitudes and beliefs
+25681,brainwave brain_wave cortical_potential,(neurophysiology) rapid fluctuations of voltage between parts of the cerebral cortex that are detectable with an electroencephalograph
+25682,brainworker brain-worker,someone whose profession involves using his head to solve problems
+25683,braising,cooking slowly in fat in a closed pot with little moisture
+25684,brake,any of various ferns of the genus Pteris having pinnately compound leaves and including several popular houseplants
+25685,brake,an area thickly overgrown usually with one kind of plant
+25686,brake,anything that slows or hinders a process; "she wan not ready to put the brakes on her life with a marriage"; "new legislation will put the brakes on spending"
+25687,brake,a restraint used to slow or stop a vehicle
+25688,brake_band,a band that can be tightened around a shaft to stop its rotation
+25689,brake_cylinder hydraulic_brake_cylinder master_cylinder,a cylinder that contains brake fluid that is compressed by a piston
+25690,brake_disk,a disk or plate that is fixed to the wheel; pressure is applied to it by the brake pads
+25691,brake_drum drum,a hollow cast iron cylinder attached to the wheel that forms part of the brakes
+25692,brake_failure,brakes fail to stop a vehicle
+25693,brake_lining,the lining on the brake shoes that comes in contact with the brake drum
+25694,brake_pad,one of the pads that apply friction to both sides of the brake disk
+25695,brake_pedal,foot pedal that moves a piston in the master brake cylinder
+25696,brake_shoe shoe skid,a restraint provided when the brake linings are moved hydraulically against the brake drum to retard the wheel's rotation
+25697,brake_system brakes,a braking device consisting of a combination of interacting parts that work to slow a motor vehicle
+25698,brakeman,a railroad employee responsible for a train's brakes
+25699,bramble,any of various rough thorny shrubs or vines
+25700,bramble_bush,any prickly shrub of the genus Rubus bearing edible aggregate fruits
+25701,brambling Fringilla_montifringilla,Eurasian finch
+25702,bran,broken husks of the seeds of cereal grains that are separated from the flour by sifting
+25703,bran,food prepared from the husks of cereal grains
+25704,bran_flake,wheat flake including the bran
+25705,bran_muffin,muffin containing bran
+25706,branch,a division of a stem, or secondary stem arising from the main stem of a plant
+25707,branch,a stream or river connected to a larger one
+25708,branch leg ramification,a part of a forked or branching shape; "he broke off one of the branches"
+25709,branch subdivision arm,a division of some larger or more complex organization; "a branch of Congress"; "botany is a branch of biology"; "the Germanic branch of Indo-European languages"
+25710,branch_line spur_track spur,a railway line connected to a trunk line
+25711,branch_water,pure natural water from a stream or brook; often distinguished from soda water
+25712,branched_chain,an open chain of atoms with one or more side chains attached to it
+25713,branching ramification fork forking,the act of branching out or dividing into branches
+25714,branchiopod_crustacean branchiopod branchiopodan,aquatic crustaceans typically having a carapace and many pairs of leaflike appendages used for swimming as well as respiration and feeding
+25715,branchlet twig sprig,a small branch or division of a branch (especially a terminal division); usually applied to branches of the current or preceding year
+25716,brand,identification mark on skin, made by burning
+25717,brand firebrand,a piece of wood that has been burned or is burning
+25718,brand make,a recognizable kind; "there's a new brand of hero in the movies now"; "what make of car is that?"
+25719,brand-name_drug proprietary_drug,a drug that has a trade name and is protected by a patent (can be produced and sold only by the company holding the patent)
+25720,brand-newness,the property of being very new
+25721,brandy,distilled from wine or fermented fruit juice
+25722,brandy_sling,a sling made with brandy
+25723,brandyball,a British candy flavored with brandy
+25724,brandysnap,a gingersnap flavored with brandy
+25725,brant brant_goose brent brent_goose,small dark geese that breed in the north and migrate southward
+25726,brashness,the trait of being rash and hasty
+25727,brass,an alloy of copper and zinc
+25728,brass,an ornament or utensil made of brass
+25729,brass brass_instrument,a wind instrument that consists of a brass tube (usually of variable length) that is blown by means of a cup-shaped or funnel-shaped mouthpiece
+25730,brass memorial_tablet plaque,a memorial made of brass
+25731,brass_band,a group of musicians playing only brass and percussion instruments
+25732,brass_buttons Cotula_coronopifolia,South African herb with golden-yellow globose flower heads; naturalized in moist areas along coast of California; cultivated as an ornamental
+25733,brass_family,(music) the family of brass instruments
+25734,brass_hat,a high-ranking military officer
+25735,brass_knucks knucks brass_knuckles knuckles knuckle_duster,(used in the plural) a small metal weapon; worn over the knuckles on the back of the hand
+25736,brass_monkey,a metal stand that formerly held cannon balls on sailing ships
+25737,brass_ring,a rich opportunity or a prize; "he missed the brass ring at the Miami convention"
+25738,brass_section brass,the section of a band or orchestra that plays brass instruments
+25739,brassard,armor plate that protects the arm
+25740,brassavola,any of various tropical American orchids with usually solitary fleshy leaves and showy white to green nocturnally fragrant blossoms solitary or in racemes of up to 7
+25741,brasserie,a small restaurant serving beer and wine as well as food; usually cheap
+25742,brassie,(formerly) a golfing wood with a face more elevated that a driver but less than a spoon
+25743,brassiere bra bandeau,an undergarment worn by women to support their breasts
+25744,brattice,a partition (often temporary) of planks or cloth that is used to control ventilation in a mine
+25745,bratwurst brat,a small pork sausage
+25746,bravado bluster,a swaggering show of courage
+25747,brave,a North American Indian warrior
+25748,brave,people who are brave; "the home of the free and the brave"
+25749,bravo,a cry of approval as from an audience at the end of great performance
+25750,bravura,brilliant and showy technical skill; "in a final bravura the ballerina appeared to be floating in water"; "the music ends with a display of bravura"
+25751,brawl free-for-all,a noisy fight in a crowd
+25752,brawler,a fighter (especially one who participates in brawls)
+25753,brawn brawniness muscle muscularity sinew heftiness,possessing muscular strength
+25754,bray,the cry of an ass
+25755,brazier brasier,large metal container in which coal or charcoal is burned; warms people who must stay outside for long times
+25756,brazil_nut brazil,three-sided tropical American nut with white oily meat and hard brown shell
+25757,brazil_nut brazil-nut_tree Bertholletia_excelsa,tall South American tree bearing brazil nuts
+25758,brazilian_ironwood Caesalpinia_ferrea,thornless tree yielding heavy wood
+25759,brazilwood,heavy wood of various brazilwood trees; used for violin bows and as dyewoods
+25760,brazilwood peachwood peach-wood pernambuco_wood Caesalpinia_echinata,tropical tree with prickly trunk; its heavy red wood yields a red dye and is used for cabinetry
+25761,breach,an opening (especially a gap in a dike or fortification)
+25762,breach,a failure to perform some promised act or obligation
+25763,breach_of_contract,a breach of a legal duty; failure to do something that is required in a contract
+25764,breach_of_duty,a breach of due care
+25765,breach_of_promise,failure to keep a promise (of marriage)
+25766,breach_of_the_covenant_of_warranty,a failure of the seller's guarantee of good title
+25767,breach_of_trust,violation (either through fraud or negligence) by a trustee of a duty that equity requires of him
+25768,breach_of_trust_with_fraudulent_intent,larceny after trust rather than after unlawful taking
+25769,breach_of_warranty,a breach that occurs when an item is deficient according to the terms of a warranty
+25770,bread breadstuff staff_of_life,food made from dough of flour or meal and usually raised with yeast or baking powder and then baked
+25771,bread-bin breadbox,a container used to keep bread or cake in
+25772,bread_and_butter_pickle,thinly sliced sweet pickles
+25773,bread_dough,any of various doughs for bread
+25774,bread_knife,a knife used to cut bread
+25775,bread_mold Rhizopus_nigricans,a mold of the genus Rhizopus
+25776,bread_sauce,creamy white sauce made with bread instead of flour and seasoned with cloves and onion
+25777,breadbasket,a geographic region serving as the principal source of grain
+25778,breadbasket,a basket for serving bread
+25779,breadboard bread_board,a wooden or plastic board on which dough is kneaded or bread is sliced
+25780,breadcrumb,crumb of bread; used especially for coating or thickening
+25781,breadfruit,a large round seedless or seeded fruit with a texture like bread; eaten boiled or baked or roasted or ground into flour; the roasted seeds resemble chestnuts
+25782,breadfruit breadfruit_tree Artocarpus_communis Artocarpus_altilis,native to Pacific islands and having edible fruit with a texture like bread
+25783,breadline bread_line,a queue of people waiting for free food
+25784,breadroot Indian_breadroot pomme_blanche pomme_de_prairie Psoralea_esculenta,densely hairy perennial of central North America having edible tuberous roots
+25785,breadstick bread-stick,a crisp stick-shaped roll; often served with soup
+25786,breadstuff,flour or meal or grain used in baking bread
+25787,breadth comprehensiveness largeness,the capacity to understand a broad range of topics; "a teacher must have a breadth of knowledge of the subject"; "a man distinguished by the largeness and scope of his views"
+25788,breadwinner,one whose earnings are the primary source of support for their dependents
+25789,break,the occurrence of breaking; "the break in the dam threatened the valley"
+25790,break,an abrupt change in the tone or register of the voice (as at puberty or due to emotion); "then there was a break in her voice"
+25791,break,the opening shot that scatters the balls in billiards or pool
+25792,break,a sudden dash; "he made a break for the open door"
+25793,break break_of_serve,(tennis) a score consisting of winning a game when your opponent was serving; "he was up two breaks in the second set"
+25794,break breakout jailbreak gaolbreak prisonbreak prison-breaking,an escape from jail; "the breakout was carefully planned"
+25795,break good_luck happy_chance,an unexpected piece of good luck; "he finally got his big break"
+25796,break interruption disruption gap,an act of delaying or interrupting the continuity; "it was presented without commercial breaks"; "there was a gap in his account"
+25797,break_dancing break_dance,a form of solo dancing that involves rapid acrobatic moves in which different parts of the body touch the ground; normally performed to the rhythm of rap music
+25798,break_seal,a seal that must be broken when first used and cannot easily be resealed; "it was stored in a tube with a break seal"
+25799,breakable,an article that is fragile and easily broken; "pack the breakables separately"
+25800,breakableness,the consistency of something that breaks under pressure
+25801,breakage,the quantity broken; "the total breakage was huge"
+25802,breakage,reimbursement for goods damaged while in transit or in use
+25803,breakage break breaking,the act of breaking something; "the breakage was unavoidable"
+25804,breakaway breaking_away,the act of breaking away or withdrawing from; "there was a breakaway by the discontented members"; "a breaking away from family and neighborhood"
+25805,breakax breakaxe break-axe Sloanea_jamaicensis,West Indian timber tree having very hard wood
+25806,breakdown crack-up,a mental or physical breakdown
+25807,breakdown equipment_failure,a cessation of normal operation; "there was a power breakdown"
+25808,breakdown partitioning,an analysis into mutually exclusive categories
+25809,breaker ledgeman,a quarry worker who splits off blocks of stone
+25810,breakfast,the first meal of the day (usually in the morning)
+25811,breakfast_area breakfast_nook,a place for light meals (usually near a kitchen); "the breakfast nook had a built in table and seats"
+25812,breakfast_food,any food (especially cereal) usually served for breakfast
+25813,breakfast_table,a table where breakfast is eaten
+25814,breakfast_time,the customary or habitual hour for eating breakfast
+25815,breaking_away,departing hastily
+25816,breaking_off abruption,an instance of sudden interruption
+25817,breaking_point,(psychology) stress at which a person breaks down or a situation becomes crucial
+25818,breaking_point,the degree of tension or stress at which something breaks
+25819,breakthrough,a penetration of a barrier such as an enemy's defense
+25820,breakthrough,making an important discovery
+25821,breakwater groin groyne mole bulwark seawall jetty,a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away
+25822,bream freshwater_bream,flesh of various freshwater fishes of North America or of Europe
+25823,bream sea_bream,flesh of any of various saltwater fishes of the family Sparidae or the family Bramidae
+25824,breast,the part of an animal's body that corresponds to a person's chest
+25825,breast bosom knocker boob tit titty,either of two soft fleshy milk-secreting glandular organs on the chest of a woman
+25826,breast chest,the front of the trunk from the neck to the abdomen; "he beat his breast in anger"
+25827,breast white_meat,meat carved from the breast of a fowl
+25828,breast_cancer,cancer of the breast; one of the most common malignancies in women in the US
+25829,breast_drill,a portable drill with a plate that is pressed against the chest to force the drill point into the work
+25830,breast_implant,an implant for cosmetic purposes to replace a breast that has been surgically removed
+25831,breast_of_lamb poitrine_d'agneau,a cut of lamb including the breastbone and attached muscles dressed as meat
+25832,breast_of_veal,usually stuffed and roasted
+25833,breast_pocket,a pocket inside of a man's coat
+25834,breastplate aegis egis,armor plate that protects the chest; the front part of a cuirass
+25835,breaststroke,a swimming stroke; the arms are extended together in front of the head and swept back on either side accompanied by a frog kick
+25836,breaststroker,someone who swims the breaststroke
+25837,breath,the air that is inhaled and exhaled in respiration; "his sour breath offended her"
+25838,breath,a slight movement of the air; "there wasn't a breath of air in the room"
+25839,breath,the process of taking in and expelling air during breathing; "he took a deep breath and dived into the pool"; "he was fighting to his last breath"
+25840,breath breather breathing_place breathing_space breathing_spell breathing_time,a short respite
+25841,breath_of_fresh_air,a welcome relief; "the new management was like a breath of fresh air"
+25842,breathalyzer breathalyser,a device that measures chemicals (especially the alcohol content) in a person's expired breath
+25843,breathing external_respiration respiration ventilation,the bodily process of inhalation and exhalation; the process of taking in oxygen from inhaled air and releasing carbon dioxide by exhalation
+25844,breathing_device breathing_apparatus breathing_machine ventilator,a device that facilitates breathing in cases of respiratory failure
+25845,breathing_room breathing_space,sufficient room for easy breathing or movement; "moved to the country to find breathing room"
+25846,breccia,a rudaceous rock consisting of sharp fragments embedded in clay or sand
+25847,breech rear_of_barrel rear_of_tube,opening in the rear of the barrel of a gun where bullets can be loaded
+25848,breech_delivery breech_birth breech_presentation,delivery of an infant whose feet or buttocks appear first
+25849,breechblock breech_closer,a metal block in breech-loading firearms that is withdrawn to insert a cartridge and replaced to close the breech before firing
+25850,breechcloth breechclout loincloth,a garment that provides covering for the loins
+25851,breeches knee_breeches knee_pants knickerbockers knickers,(used in the plural) trousers ending above the knee
+25852,breeches_buoy,a life buoy in the form of a ring with short breeches for support; used to transfer people from a ship
+25853,breechloader,a gun that is loaded at the breech
+25854,breed,a special type; "Google represents a new breed of entrepreneurs"
+25855,breed strain stock,a special variety of domesticated animals within a species; "he experimented on a particular breed of white rats"; "he created a new strain of sheep"
+25856,breeder stock_breeder,a person who breeds animals
+25857,breeder_reactor,a nuclear reactor that produces more fissile material than it burns
+25858,breeding,the production of animals or plants by inbreeding or hybridization
+25859,breeding bringing_up fostering fosterage nurture raising rearing upbringing,helping someone grow up to be an accepted member of the community; "they debated whether nature or nurture was more important"
+25860,breeding genteelness gentility,elegance by virtue of fineness of manner and expression
+25861,breeding_ground,a place where animals breed
+25862,breeze zephyr gentle_wind air,a slight wind (usually refreshing); "the breeze was cooled by the lake"; "as he waited he could feel the air on his neck"
+25863,breeziness jauntiness,a breezy liveliness; "a delightful breeziness of manner"
+25864,breeziness windiness,a mildly windy state of the air
+25865,bregma,the craniometric point at the junction of the sagittal and coronal sutures at the top of the cranium
+25866,brethren,(plural) the lay members of a male religious order
+25867,breve,a diacritical mark (U-shaped) placed over a vowel to indicate a short sound
+25868,brevet,a document entitling a commissioned officer to hold a higher rank temporarily (but without higher pay)
+25869,breviary,(Roman Catholic Church) a book of prayers to be recited daily certain priests and members of religious orders
+25870,brevity,the use of brief expressions
+25871,brevity briefness transience,the attribute of being brief or fleeting
+25872,brew brewage,drink made by steeping and boiling and fermenting rather than distilling
+25873,brewer,the owner or manager of a brewery
+25874,brewer beer_maker,someone who brews beer or ale from malt and hops and water
+25875,brewer's_mole hair-tailed_mole Parascalops_breweri,mole of eastern North America
+25876,brewer's_yeast,yeast used in fermenting beer
+25877,brewery,a plant where beer is brewed by fermentation
+25878,brewing,the production of malt beverages (as beer or ale) from malt and hops by grinding and boiling them and fermenting the result with yeast
+25879,brewpub,a combination brewery and restaurant; beer is brewed for consumption on the premises and served along with food
+25880,briar briar_pipe,a pipe made from the root (briarroot) of the tree heath
+25881,briard,old French breed of large strong usually black dogs having a long tail and long wavy and slightly stiff coat
+25882,briarroot,hard woody root of the briar Erica arborea
+25883,briarwood brierwood brier-wood,wood from the hard woody root of the briar Erica arborea; used to make tobacco pipes
+25884,bribe payoff,payment made to a person in a position of trust to corrupt his judgment
+25885,briber suborner,someone who pays (or otherwise incites) you to commit a wrongful act
+25886,bribery graft,the practice of offering something (usually money) in order to gain an illicit advantage
+25887,bric-a-brac knickknack nicknack knickknackery whatnot,miscellaneous curios
+25888,brick,a good fellow; helpful and trustworthy
+25889,brick,rectangular block of clay baked by the sun or in a kiln; used as a building or paving material
+25890,brick_cheese,semisoft sweet American cheese from whole milk in a brick form
+25891,brick_red,a bright reddish-brown color
+25892,brick_trowel mason's_trowel,a trowel used in masonry
+25893,brickbat,a fragment of brick used as a weapon
+25894,brickbat,blunt criticism
+25895,brickkiln,a kiln for making bricks
+25896,bricklayer,a craftsman skilled in building with bricks
+25897,bricklayer's_hammer,a hammer used in laying bricks
+25898,bricklaying,the craft of laying bricks
+25899,bricks_and_mortar,building material consisting of bricks laid with mortar between them
+25900,brickwork,masonry done with bricks and mortar
+25901,brickyard brickfield,a place where bricks are made and sold
+25902,bricolage,construction of something by whatver material are available
+25903,bridal espousal,archaic terms for a wedding or wedding feast
+25904,bridal_gown wedding_gown wedding_dress,a gown worn by the bride at a wedding
+25905,bridal_wreath bridal-wreath Francoa_ramosa,Chilean evergreen shrub having delicate spikes of small white flowers
+25906,bridal_wreath bridal-wreath Saint_Peter's_wreath St._Peter's_wreath Spiraea_prunifolia,shrub having copious small white flowers in spring
+25907,bride,a woman participant in her own marriage ceremony
+25908,bride,a woman who has recently been married
+25909,bride-gift,a wedding present to the bride
+25910,bride_price,money or property given (in some societies) by the bridegroom to the family of his bride
+25911,bridesmaid maid_of_honor,an unmarried woman who attends the bride at a wedding
+25912,bridge,something resembling a bridge in form or function; "his letters provided a bridge across the centuries"
+25913,bridge,the hard ridge that forms the upper part of the nose; "her glasses left marks on the bridge of her nose"
+25914,bridge,a wooden support that holds the strings up
+25915,bridge,any of various card games based on whist for four players
+25916,bridge bridge_circuit,a circuit consisting of two branches (4 arms arranged in a diamond configuration) across which a meter is connected
+25917,bridge bridge_deck,an upper deck where a ship is steered and the captain stands
+25918,bridge bridgework,a denture anchored to teeth on either side of missing teeth
+25919,bridge nosepiece,the link between two lenses; rests on the nose
+25920,bridge span,a structure that allows people or vehicles to cross an obstacle such as a river or canal or railway etc.
+25921,bridge_agent,an operative who acts as a courier or go-between from a case officer to a secret agent in a hostile area
+25922,bridge_hand,the cards held in a game of bridge
+25923,bridge_partner,one of a pair of bridge players who are on the same side of the game
+25924,bridge_player hand,a card player in a game of bridge; "we need a 4th hand for bridge"
+25925,bridge_whist,the earliest form of bridge; the dealer could name the trump suit
+25926,bridged-T,a circuit consisting of a T-network with an additional shunt bridging the two series circuits
+25927,bridgehead,a defensive post at the end of a bridge nearest to the enemy
+25928,bridgehead foothold,an area in hostile territory that has been captured and is held awaiting further troops and supplies; "an attempt to secure a bridgehead behind enemy lines"; "the only foothold left for British troops in Europe was Gibraltar"
+25929,bridle,headgear for a horse; includes a headstall and bit and reins to give the rider or driver control
+25930,bridle check curb,the act of restraining power or action or limiting excess; "his common sense is a bridle to his quick temper"
+25931,bridle_path bridle_road,a path suitable for riding or leading horses (but not for cars)
+25932,bridoon,a bit resembling a snaffle bit; used with a separate curb
+25933,brief,a condensed written summary or abstract
+25934,brief legal_brief,a document stating the facts and points of law of a client's case
+25935,briefcase,a case with a handle; for carrying papers or files or books
+25936,briefcase_bomb,a bomb consisting of an explosive and timer hidden inside a briefcase
+25937,briefcase_computer,a portable computer housed in a box that resembles a briefcase
+25938,briefing,detailed instructions, as for a military operation
+25939,briefness,the temporal property of being very short
+25940,briefs Jockey_shorts,(used in the plural) short tight-fitting underpants (trade name Jockey shorts)
+25941,brier,a thorny stem or twig
+25942,brier brierpatch brier_patch,tangled mass of prickly plants
+25943,brig,two-masted sailing vessel square-rigged on both masts
+25944,brig,a penal institution (especially on board a ship)
+25945,brigade,army unit smaller than a division
+25946,brigadier brigadier_general,a general officer ranking below a major general
+25947,brigandine,a medieval coat of chain mail consisting of metal rings sewn onto leather or cloth
+25948,brigantine hermaphrodite_brig,two-masted sailing vessel square-rigged on the foremast and fore-and-aft rigged on the mainmast
+25949,brightness,the location of a visual perception along a continuum from black to white
+25950,brightness cleverness smartness,intelligence as manifested in being quick and witty
+25951,brightness_constancy,the tendency for a visual object to be perceived as having the same brightness under widely different conditions of illumination
+25952,brill Scophthalmus_rhombus,European food fish
+25953,brilliance genius,unusual mental ability
+25954,brilliant_pebble,a code name for a small computerized heat-seeking missile that was supposed to intercept and destroy enemy missiles
+25955,brilliantine,a pomade to make the hair manageable and lustrous
+25956,brim,a circular projection that sticks outward from the crown of a hat
+25957,brim rim lip,the top edge of a vessel or other container
+25958,brimstone native_sulfur native_sulphur,an old name for sulfur
+25959,brine,a strong solution of salt and water used for pickling
+25960,brine_shrimp Artemia_salina,common to saline lakes
+25961,brininess salinity,the relative proportion of salt in a solution
+25962,brink,the edge of a steep place
+25963,brink threshold verge,a region marking a boundary
+25964,brinkmanship,the policy of pushing a dangerous situation to the brink of disaster (to the limits of safety)
+25965,brioche,a light roll rich with eggs and butter and somewhat sweet
+25966,briquette briquet,a block made from charcoal or coal dust and burned as fuel
+25967,brisance,the shattering or crushing effect of a sudden release of energy as in an explosion
+25968,brisket,a cut of meat from the breast or lower chest especially of beef
+25969,brisling sprat Clupea_sprattus,small herring processed like a sardine
+25970,bristle,a stiff fiber (coarse hair or filament); natural or synthetic
+25971,bristle,a stiff hair
+25972,bristle_brush,a brush that is made with the short stiff hairs of an animal or plant
+25973,bristle_fern filmy_fern,any fern of the genus Trichomanes having large pinnatifid often translucent fronds; most are epiphytic on tree branches and twigs or terrestrial on mossy banks
+25974,bristlecone_pine Rocky_Mountain_bristlecone_pine Pinus_aristata,small slow-growing upland pine of western United States (Rocky Mountains) having dense branches with fissured rust-brown bark and short needles in bunches of 5 and thorn-tipped cone scales; among the oldest living things some over 4500 years old
+25975,bristlegrass bristle_grass,grasses of grasslands and woodlands having large gracefully arching spikes with long bristles beneath each spikelet
+25976,bristletail,small wingless insect with a long bristlelike tail
+25977,bristly_locust rose_acacia moss_locust Robinia_hispida,large shrub or small tree of the eastern United States having bristly stems and large clusters of pink flowers
+25978,bristly_sarsaparilla bristly_sarsparilla dwarf_elder Aralia_hispida,bristly herb of eastern and central North America having black fruit and medicinal bark
+25979,brit britt,the young of a herring or sprat or similar fish
+25980,brit britt,minute crustaceans forming food for right whales
+25981,britches,(used in the plural) informal term for breeches
+25982,brittle toffee toffy,caramelized sugar cooled in thin sheets
+25983,brittle_bladder_fern brittle_fern fragile_fern Cystopteris_fragilis,delicate fern widely distributed in North America and European having thin pinnatifid fronds with brittle stems
+25984,brittle_maidenhair brittle_maidenhair_fern Adiantum_tenerum,tropical American fern with broad pinnae; widely cultivated
+25985,brittle_star brittle-star serpent_star,an animal resembling a starfish with fragile whiplike arms radiating from a small central disc
+25986,brittlebush brittle_bush incienso Encelia_farinosa,fragrant rounded shrub of southwestern United States and adjacent Mexico having brittle stems and small crowded blue-green leaves and yellow flowers; produces a resin used in incense and varnish and in folk medicine
+25987,brittleness crispness crispiness,firm but easily broken
+25988,broad,slang term for a woman; "a broad is a woman who can throw a mean punch"
+25989,broad-leaved_everlasting_pea perennial_pea Lathyrus_latifolius,perennial climber of central and southern Europe having purple or pink or white flowers; naturalized in North America
+25990,broad-leaved_montia Montia_cordifolia,succulent plant with mostly basal leaves; stem bears 1 pair of broadly ovate or heart-shaped leaves and a loose raceme of 3-10 white flowers; western North America
+25991,broad-leaved_plantain common_plantain white-man's_foot whiteman's_foot cart-track_plant Plantago_major,common European perennial naturalized worldwide; a troublesome weed
+25992,broad-leaved_twayblade Listera_convallarioides,small orchid with two elliptic leaves and a slender raceme of small green flowers; western North America
+25993,broad-mindedness,an inclination to tolerate or overlook opposing or shocking opinions or behavior
+25994,broad_arrow,an arrowhead mark identifying British government property
+25995,broad_arrow,a mark shaped like an arrowhead; used to mark convicts' clothing
+25996,broad_arrow,an arrow with a wide barbed head
+25997,broad_bean broad-bean broad-bean_plant English_bean European_bean field_bean Vicia_faba,Old World upright plant grown especially for its large flat edible seeds but also as fodder
+25998,broad_bean fava_bean horsebean,seed of the broad-bean plant
+25999,broad_bean horse_bean,a bean plant cultivated for use animal fodder
+26000,broad_beech_fern southern_beech_fern Phegopteris_hexagonoptera Dryopteris_hexagonoptera Thelypteris_hexagonoptera,beech fern of North American woodlands having straw-colored stripes
+26001,broad_buckler-fern Dryopteris_dilatata,European shield fern
+26002,broad_gauge,a railroad track (or its width) broader than the standard 56.5 inches
+26003,broad_hatchet,a short-handled hatchet with a broad blade opposite a hammerhead
+26004,broad_interpretation judicial_activism,an interpretation of the U.S. constitution holding that the spirit of the times and the needs of the nation can legitimately influence judicial decisions (particularly decisions of the Supreme Court)
+26005,broad_jump long_jump,the act of jumping as far as possible from a running start
+26006,broad_leaved_centaury,a variety of centaury with broad leaves
+26007,broadax broadaxe,a large ax with a broad cutting blade
+26008,broadbill,small birds of the Old World tropics having bright plumage and short wide bills
+26009,broadcast,message that is transmitted by radio or television
+26010,broadcast program programme,a radio or television show; "did you see his program last night?"
+26011,broadcast_area,the area over which a radio or tv transmission can be received
+26012,broadcast_journalist,a journalist who broadcasts on radio or television
+26013,broadcast_medium broadcasting,a medium that disseminates via telecommunications
+26014,broadcaster,someone who broadcasts on radio or television
+26015,broadcaster spreader,a mechanical device for scattering something (seed or fertilizer or sand etc.) in all directions
+26016,broadcasting,taking part in a radio or tv program
+26017,broadcasting_company,a company that manages tv or radio stations
+26018,broadcasting_station broadcast_station,a station equipped to broadcast radio or television programs
+26019,broadcasting_studio,a studio where broadcasts originate
+26020,broadcloth,a densely textured woolen fabric with a lustrous finish
+26021,broadcloth,a closely woven silk or synthetic fabric with a narrow crosswise rib
+26022,broadening,the action of making broader; "the broadening of travel"
+26023,broadloom,a carpet woven on a wide loom to obviate the need for seams
+26024,broadside,all of the armament that is fired from one side of a warship
+26025,broadside,the whole side of a vessel from stem to stern; "the ship was broadside to the dock"
+26026,broadside,the simultaneous firing of all the armament on one side of a warship
+26027,broadsword,a sword with a broad blade and (usually) two cutting edges; used to cut rather than stab
+26028,broadtail,the fur of a very young karakul lamb
+26029,broadtail caracul karakul,hardy coarse-haired sheep of central Asia; lambs are valued for their soft curly black fur
+26030,brocade,thick heavy expensive material with a raised pattern
+26031,broccoli,branched green undeveloped flower heads
+26032,broccoli Brassica_oleracea_italica,plant with dense clusters of tight green flower buds
+26033,broccoli_raab broccoli_rabe Brassica_rapa_ruvo,plant grown for its pungent edible leafy shoots
+26034,broccoli_rabe broccoli_raab,slightly bitter dark green leaves and clustered flower buds
+26035,brochette,a small spit or skewer
+26036,brocket,small South American deer with unbranched antlers
+26037,brocket,male red deer in its second year
+26038,brodiaea,any of several plants of the genus Brodiaea having basal grasslike leaves and globose flower heads on leafless stems resembling those of genus Allium
+26039,brogan brogue clodhopper work_shoe,a thick and heavy shoe
+26040,broil broiling grilling,cooking by direct exposure to radiant heat (as over a fire or under a grill)
+26041,broiler,flesh of a small young chicken not over 2 1/2 lb suitable for broiling
+26042,broiler,an oven or part of a stove used for broiling
+26043,broken_arch,an arch with a gap at the apex; the gap is usually filled with some decoration
+26044,broken_heart,devastating sorrow and despair; "he is recovering from a broken heart"; "a broken heart languishes here"
+26045,broken_home,a family in which the parents have separated or divorced
+26046,broker-dealer,a financial specialist who trades for his own account and so acts both as a broker and principal
+26047,brokerage,the business of a broker; charges a fee to arrange a contract between two parties
+26048,brokerage brokerage_firm securities_firm,a stock broker's business; charges a fee to act as intermediary between buyer and seller
+26049,brokerage_account,a fund that a customer has entrusted to a securities brokerage; "you can't get a brokerage account unless you have $20,000"
+26050,brokerage_house brokerage,place where a broker conducts his business
+26051,brome bromegrass,any of various woodland and meadow grasses of the genus Bromus; native to temperate regions
+26052,bromic_acid,an unstable acid used as an oxidizing agent
+26053,bromide,any of the salts of hydrobromic acid; formerly used as a sedative but now generally replaced by safer drugs
+26054,bromine Br atomic_number_35,a nonmetallic heavy volatile corrosive dark brown liquid element belonging to the halogens; found in sea water
+26055,bromoform tribromomethane,colorless liquid haloform CHBr3
+26056,bromophenol_blue bromphenol_blue tetrabromo-phenolsulfonephthalein,a dye used as an acid-base indicator
+26057,bromothymol_blue bromthymol_blue,a dye used as an acid-base indicator
+26058,brompheniramine_maleate Dimetane,antihistamine (trade name Dimetane) used to treat hypersensitivity reactions (as rhinitis)
+26059,brompton_stock Matthiola_incana,European plant with racemes of sweet-scented flowers; widely cultivated as an ornamental
+26060,bronchial_artery,arteries that accompany the bronchioles
+26061,bronchial_vein vena_bronchialis,veins serving the bronchi; empty into the azygos vein
+26062,bronchiole,any of the smallest bronchial ducts; ending in alveoli
+26063,bronchiolitis,inflammation of the membranes lining the bronchioles
+26064,bronchitis,inflammation of the membranes lining the bronchial tubes
+26065,bronchodilator,a drug that relaxes and dilates the bronchial passageways and improves the passages of air into the lungs
+26066,bronchopneumonia bronchial_pneumonia,pneumonia characterized by acute inflammation of the walls of the bronchioles
+26067,bronchoscope,a slender tubular instrument used to examine the bronchial tubes
+26068,bronchospasm,a spasm of the bronchi that makes exhalation difficult and noisy; associated with asthma and bronchitis
+26069,bronchus bronchial_tube,either of the two main branches of the trachea
+26070,bronco bronc broncho,an unbroken or imperfectly broken mustang
+26071,bronco_busting,breaking a bronco to saddle
+26072,bronze,an alloy of copper and tin and sometimes other elements; also any copper-base alloy containing other elements in place of tin
+26073,bronze,a sculpture made of bronze
+26074,bronze_age,(classical mythology) the third age of the world, marked by war and violence
+26075,bronze_medal,a trophy made of bronze (or having the appearance of bronze) that is usually awarded for winning third place in a competition
+26076,brooch broach breastpin,a decorative pin worn by women
+26077,brood,the young of an animal cared for at one time
+26078,brood_bitch,a bitch used for breeding
+26079,brood_hen broody broody_hen setting_hen sitter,a domestic hen ready to brood
+26080,brooding incubation,sitting on eggs so as to hatch them by the warmth of the body
+26081,broodmare stud_mare,a female horse used for breeding
+26082,brook creek,a natural stream of water smaller than a river (and often a tributary of a river); "the creek dried up every summer"
+26083,brook_thistle Cirsium_rivulare,of central and southwestern Europe
+26084,brook_trout speckled_trout,a delicious freshwater food fish
+26085,brook_trout speckled_trout Salvelinus_fontinalis,North American freshwater trout; introduced in Europe
+26086,brooklet,a small brook
+26087,brooklime American_brooklime Veronica_americana,plant of western North America and northeastern Asia having prostrate stems with dense racemes of pale violet to lilac flowers
+26088,brooklime European_brooklime Veronica_beccabunga,European plant having low-lying stems with blue flowers; sparsely naturalized in North America
+26089,brookweed Samolus_parviflorus Samolus_floribundus,American water pimpernel
+26090,brookweed Samolus_valerandii,water pimpernel of Europe to China
+26091,broom,any of various shrubs of the genera Cytisus or Genista or Spartium having long slender branches and racemes of yellow flowers
+26092,broom,a cleaning implement for sweeping; bundle of straws or twigs attached to a long handle
+26093,broom_beard_grass prairie_grass wire_grass Andropogon_scoparius Schizachyrium_scoparium,handsome hardy North American grass with foliage turning pale bronze in autumn
+26094,broom_closet,a small room for storing brooms and other cleaning equipment
+26095,broom_grass,any of several grasses of the genus Andropogon; used in broom making
+26096,broom_sedge Andropogon_virginicus,tall tufted grass of southeastern United States
+26097,broom_tree needle_furze petty_whin Genista_anglica,prickly yellow-flowered shrub of the moors of New England and Europe
+26098,broomcorn Sorghum_vulgare_technicum,tall grasses grown for the elongated stiff-branched panicle used for brooms and brushes
+26099,broomcorn_millet hog_millet Panicum_miliaceum,extensively cultivated in Europe and Asia for its grain and in United States sometimes for forage
+26100,broomstick broom_handle,the handle of a broom
+26101,broomweed broom-weed Gutierrezia_texana,annual of southwestern United States having rigid woody branches with sticky foliage and yellow flowers
+26102,broth,a thin soup of meat or fish or vegetable stock
+26103,broth stock,liquid in which meat and vegetables are simmered; used as a basis for e.g. soups or sauces; "she made gravy with a base of beef stock"
+26104,broth_of_a_boy broth_of_a_man,an outstanding person; as if produced by boiling down a savory broth
+26105,brother,a male person who is a fellow member (of a fraternity or religion or other group); "none of his brothers would betray him"
+26106,brother blood_brother,a male with the same parents as someone else; "my brother still lives with our parents"
+26107,brother comrade,used as a term of address for those male persons engaged in the same movement; "Greetings, comrade!"
+26108,brother-in-law,a brother by marriage
+26109,brotherhood,the kinship relation between a male offspring and the siblings
+26110,brotherhood,the feeling that men should treat one another like brothers
+26111,brotherhood fraternity sodality,people engaged in a particular occupation; "the medical fraternity"
+26112,brotula,deep-sea fishes
+26113,brougham,light carriage; pulled by a single horse
+26114,brougham,a sedan that has no roof over the driver's seat
+26115,brouhaha,a confused disturbance far greater than its cause merits
+26116,brow forehead,the part of the face above the eyes
+26117,brow_ptosis,sagging eyebrows
+26118,brown brownness,an orange of low brightness and saturation
+26119,brown_Betty,baked pudding of apples and breadcrumbs
+26120,brown_algae,algae having the chlorophyll masked by brown and yellow pigments
+26121,brown_bat,any of numerous medium to small insectivorous bats found worldwide in caves and trees and buildings
+26122,brown_bear bruin Ursus_arctos,large ferocious bear of Eurasia
+26123,brown_bells Fritillaria_micrantha Fritillaria_parviflora,California herb with brownish-purple or greenish bell-shaped flowers
+26124,brown_bread Boston_brown_bread,dark steamed bread made of cornmeal wheat and flour with molasses and soda and milk or water
+26125,brown_bullhead,freshwater catfish of eastern United States
+26126,brown_butter beurre_noisette,clarified butter browned slowly and seasoned with vinegar or lemon juice and capers
+26127,brown_creeper American_creeper Certhia_americana,a common creeper in North America with a down-curved bill
+26128,brown_cup,a variety of sclerotinia
+26129,brown_hyena strand_wolf Hyaena_brunnea,of southern Africa
+26130,brown_lacewing hemerobiid hemerobiid_fly,small dark-colored lacewing fly
+26131,brown_lemming Lemmus_trimucronatus,of northwestern Canada and Alaska
+26132,brown_pine Rockingham_podocarp Podocarpus_elatus,large Australian tree with straight-grained yellow wood that turns brown on exposure
+26133,brown_rat Norway_rat Rattus_norvegicus,common domestic rat; serious pest worldwide
+26134,brown_rice,unpolished rice retaining the yellowish-brown outer layer
+26135,brown_root_rot_fungus Thielavia_basicola,fungus causing brown root rot in plants of the pea and potato and cucumber families
+26136,brown_rot,any of certain fungous diseases of plants characterized by browning and decay of tissues
+26137,brown_rot_gummosis gummosis,disease of citrus trees caused by the fungus Phytophthora citrophthora
+26138,brown_sauce sauce_Espagnole,bouillon or beef stock thickened with butter and flour roux and variously seasoned with herbs or Worcestershire etc.
+26139,brown_snail Helix_aspersa,serious garden pest having a brown shell with paler zigzag markings; nearly cosmopolitan in distribution
+26140,brown_soft_scale Coccus_hesperidum,pest on citrus trees
+26141,brown_study,a state of deep absorption or thoughtfulness
+26142,brown_sugar,unrefined or only partly refined sugar
+26143,brown_thrasher brown_thrush Toxostoma_rufums,common large songbird of eastern United States having reddish-brown plumage
+26144,brown_trout salmon_trout Salmo_trutta,speckled trout of European rivers; introduced in North America
+26145,brownie,square or bar of very rich chocolate cake usually with nuts
+26146,brownie_mix,a commercial mix for making brownies
+26147,brownish_yellow,a yellow color of low lightness with a brownish tinge
+26148,brownstone,a reddish brown sandstone; used in buildings
+26149,brownstone,a row house built of brownstone; reddish brown in color
+26150,browntail brown-tail_moth Euproctis_phaeorrhoea,small brown and white European moth introduced into eastern United States; pest of various shade and fruit trees
+26151,browse,vegetation (such as young shoots, twigs, and leaves) that is suitable for animals to eat; "a deer needs to eat twenty pounds of browse every day"
+26152,browse browsing,reading superficially or at random
+26153,browse browsing,the act of feeding by continual nibbling
+26154,browser,a viewer who looks around casually without seeking anything in particular
+26155,browser web_browser,a program used to view HTML documents
+26156,brucellosis contagious_abortion Bang's_disease,an infectious disease of domestic animals often resulting in spontaneous abortion; transmittable to human beings
+26157,brucellosis undulant_fever Malta_fever Gibraltar_fever Rock_fever Mediterranean_fever,infectious bacterial disease of human beings transmitted by contact with infected animals or infected meat or milk products; characterized by fever and headache
+26158,brucine,a bitter alkaloid poison resembling strychnine and extracted from nux vomica
+26159,bruin,a conventional name for a bear used in tales following usage in the old epic `Reynard the Fox'
+26160,bruise contusion,an injury that doesn't break the skin but results in some discoloration
+26161,brunch,combination breakfast and lunch; usually served in late morning
+26162,brunch_coat,a woman's short housecoat or wrapper
+26163,brunet brunette,a person with dark (brown) hair
+26164,brunt,main force of a blow etc; "bore the brunt of the attack"
+26165,brush,conducts current between rotating and stationary parts of a generator or motor
+26166,brush,an implement that has hairs or bristles firmly set into a handle
+26167,brush,a bushy tail or part of a bushy tail (especially of the fox)
+26168,brush,contact with something dangerous or undesirable; "I had a brush with danger on my way to work"; "he tried to avoid any brushes with the police"
+26169,brush brushing,the act of brushing your teeth; "the dentist recommended two brushes a day"
+26170,brush brushing,the act of brushing your hair; "he gave his hair a quick brush"
+26171,brush brushwood coppice copse thicket,a dense growth of bushes
+26172,brush clash encounter skirmish,a minor short-term fight
+26173,brush light_touch,momentary contact
+26174,brush-off,a curt or disdainful rejection
+26175,brush-tailed_phalanger Trichosurus_vulpecula,bushy-tailed phalanger
+26176,brush-tailed_porcupine brush-tail_porcupine,porcupine with a tuft of large beaded bristles on the tail
+26177,brush_cut,a short haircut with hairs standing up like a brush
+26178,brush_discharge,discharge between electrodes creating visible streamers of ionized particles
+26179,brush_fire,an uncontrolled fire that consumes brush and shrubs and bushes
+26180,brush_turkey Alectura_lathami,black megapode of wooded regions of Australia and New Guinea
+26181,brushwood,the wood from bushes or small branches; "they built a fire of brushwood"
+26182,brushwork,an artist's distinctive technique of applying paint with a brush
+26183,brussels_sprout Brassica_oleracea_gemmifera,plant grown for its stout stalks of edible small green heads resembling diminutive cabbages
+26184,brussels_sprouts,the small edible cabbage-like buds growing along a stalk of the brussels sprout plant
+26185,brutality barbarity barbarism savagery,a brutal barbarous savage act
+26186,brutalization brutalisation,the condition of being treated in a cruel and savage manner
+26187,brutalization brutalisation,the activity of treating someone savagely or viciously
+26188,brutalization brutalisation animalization animalisation,an act that makes people cruel or lacking normal human qualities
+26189,bruxism,involuntarily or unconsciously clenching or grinding the teeth, typically during sleep
+26190,bryanthus,procumbent Old World mat-forming evergreen shrub with racemes of pinkish-white flowers
+26191,bryony briony,a vine of the genus Bryonia having large leaves and small flowers and yielding acrid juice with emetic and purgative properties
+26192,bryophyte nonvascular_plant,any of numerous plants of the division Bryophyta
+26193,bryozoan polyzoan sea_mat sea_moss moss_animal,sessile aquatic animal forming mossy colonies of small polyps each having a curved or circular ridge bearing tentacles; attach to stones or seaweed and reproduce by budding
+26194,bubble,a hollow globule of gas (e.g., air or carbon dioxide)
+26195,bubble,an impracticable and illusory idea; "he didn't want to burst the newcomer's bubble"
+26196,bubble,a dome-shaped covering made of transparent glass or plastic
+26197,bubble_and_squeak,leftover cabbage fried with cooked potatoes and sometimes meat
+26198,bubble_bath,a bath in which you add something to foam and scent the bath water
+26199,bubble_chamber,an instrument that records the tracks of ionizing particles
+26200,bubble_dance,a solo dance similar to a fan dance except large balloons are used instead of fans
+26201,bubble_gum,a kind of chewing gum that can be blown into bubbles
+26202,bubble_gum_dermatitis,an allergic contact dermatitis developed around the lips of children who chew bubble gum
+26203,bubble_jet_printer bubble-jet_printer bubblejet,a kind of ink-jet printer
+26204,bubble_shell,marine gastropod mollusk having a very small thin shell
+26205,bubbler,any of various devices in which air or some other gas is bubbled through a liquid
+26206,bubbliness effervescence frothiness,the property of giving off bubbles
+26207,bubo,a lymph node that is inflamed and swollen because of plague or gonorrhea or tuberculosis
+26208,bubonic_plague pestis_bubonica glandular_plague,the most common form of the plague in humans; characterized by chills, prostration, delirium and the formation of buboes in the armpits and groin; does not spread from person to person
+26209,buccal_artery arteria_buccalis,a branch of the maxillary artery that supplies blood to the buccinator muscle and the cheek
+26210,buccal_cavity,the cavity between the jaws and the cheeks
+26211,buck,mature male of various mammals (especially deer or antelope)
+26212,buck-and-wing,a solo tap dance emphasizing sharp taps
+26213,buck_fever,nervous excitement of an inexperienced hunter
+26214,buck_sergeant,a sergeant of the lowest rank in the military
+26215,buckboard,an open horse-drawn carriage with four wheels; has a seat attached to a flexible board between the two axles
+26216,bucket bucketful,the quantity contained in a bucket
+26217,bucket pail,a roughly cylindrical vessel that is open at the top
+26218,bucket_seat,a low single seat as in cars or planes
+26219,bucket_shop,an unethical or overly aggressive brokerage firm
+26220,bucket_shop,(formerly) a cheap saloon selling liquor by the bucket
+26221,buckeye horse_chestnut conker,the inedible nutlike seed of the horse chestnut
+26222,bucking_bronco,a wild horse that is vicious and difficult or impossible to break in
+26223,buckle,fastener that fastens together two ends of a belt or strap; often has loose prong
+26224,buckler_mustard Biscutalla_laevigata,plant of southeastern Europe having yellow flowers like those of mustard and pods with open valves resembling bucklers
+26225,buckleya Buckleya_distichophylla,parasitic shrub of the eastern United States having opposite leaves and insignificant greenish flowers followed by oily dull green olivelike fruits
+26226,buckminsterfullerene buckyball,a spheroidal fullerene; the first known example of a fullerene
+26227,buckram,a coarse cotton fabric stiffened with glue; used in bookbinding and to stiffen clothing
+26228,bucksaw,a saw that is set in a frame in the shape of an H; used with both hands to cut wood that is held in a sawbuck
+26229,buckskin,a soft yellowish suede leather originally from deerskin but now usually from sheepskin
+26230,buckskin,horse of a light yellowish dun color with dark mane and tail
+26231,buckskins,(used in the plural) breeches made of buckskin
+26232,buckthorn,a shrub or shrubby tree of the genus Rhamnus; fruits are source of yellow dyes or pigments
+26233,buckthorn,any shrub or small tree of the genus Bumelia
+26234,buckthorn_berry yellow_berry,fruit of various buckthorns yielding dyes or pigments
+26235,bucktooth,a large projecting front tooth
+26236,buckwheat,grain ground into flour
+26237,buckwheat Polygonum_fagopyrum Fagopyrum_esculentum,a member of the genus Fagopyrum; annual Asian plant with clusters of small pinkish white flowers and small edible triangular seeds which are used whole or ground into flour
+26238,buckwheat_cake,a pancake made with buckwheat flour
+26239,bud,a swelling on a plant stem consisting of overlapping immature leaves or petals
+26240,bud,a partially opened flower
+26241,bud_brush bud_sagebrush Artemis_spinescens,a perennial that is valuable as sheep forage in the United States
+26242,budding,reproduction of some unicellular organisms (such as yeasts) by growth and specialization followed by the separation by constriction of a part of the parent
+26243,buddy brother chum crony pal sidekick,a close friend who accompanies his buddies in their activities
+26244,buddy_system,a cooperative practice of pairing two or more people together for mutual assistance or safety (especially in recreational swimming)
+26245,budgerigar budgereegah budgerygah budgie grass_parakeet lovebird shell_parakeet Melopsittacus_undulatus,small Australian parakeet usually light green with black and yellow markings in the wild but bred in many colors
+26246,budget,a sum of money allocated for a particular purpose; "the laboratory runs on a budget of a million a year"
+26247,budget,a summary of intended expenditures along with proposals for how to meet them; "the president submitted the annual budget to Congress"
+26248,budget_cut,the act of reducing budgeted expenditures
+26249,budget_deficit,an excess of expenditures over revenues
+26250,buff,a soft thick undyed leather from the skins of e.g. buffalo or oxen
+26251,buff,bare skin; "swimming in the buff means to swim naked"
+26252,buff buffer,an implement consisting of soft material mounted on a block; used for polishing (as in manicuring)
+26253,buffalo,meat from an American bison
+26254,buffalo_bur Solanum_rostratum,North American nightshade with prickly foliage and racemose yellow flowers
+26255,buffalo_carpet_beetle Anthrenus_scrophulariae,a small black and red and white carpet beetle
+26256,buffalo_clover Trifolium_reflexum Trifolium_stoloniferum,clover of western United States
+26257,buffalo_fish buffalofish,any of several large suckers of the Mississippi valley
+26258,buffalo_grass Buchloe_dactyloides,short grass growing on dry plains of central United States (where buffalo roam)
+26259,buffalo_nut elk_nut oil_nut,oily drupaceous fruit of rabbitwood
+26260,buffalo_wing,crisp spicy chicken wings
+26261,buffalofish,large carp-like North American fish
+26262,buffel_grass Cenchrus_ciliaris Pennisetum_cenchroides,erect tussock-forming perennial bur grass used particularly in South Africa and Australia for pasture and forage
+26263,buffer,(chemistry) an ionic compound that resists changes in its pH
+26264,buffer buffer_storage buffer_store,(computer science) a part of RAM used for temporary storage of data that is waiting to be sent to a device; used to compensate for differences in the rate of flow of data between components of a computer system
+26265,buffer fender,a cushion-like device that reduces shock due to an impact
+26266,buffer polisher,a power tool used to buff surfaces
+26267,buffer_solution,a solution containing a buffer
+26268,buffer_state buffer_country,a small neutral state between two rival powers
+26269,buffer_zone buffer,a neutral zone between two rival powers that is created in order to diminish the danger of conflict
+26270,buffered_aspirin Bufferin,aspirin coated with a substance capable of neutralizing acid (trade name Bufferin)
+26271,buffet,a meal set out on a buffet at which guests help themselves
+26272,buffet counter sideboard,a piece of furniture that stands at the side of a dining room; has shelves and drawers
+26273,buffing_wheel,a wheel that is covered with soft material
+26274,bufflehead butterball dipper Bucephela_albeola,small North American diving duck; males have bushy head plumage
+26275,buffoonery clowning japery frivolity harlequinade prank,acting like a clown or buffoon
+26276,bufo,any toad of the genus Bufo
+26277,bug,a small hidden microphone; for listening secretly
+26278,bug,general term for any insect or similar creeping or crawling invertebrate
+26279,bug glitch,a fault or defect in a computer program, system, or machine
+26280,bugaboo,a source of concern; "the old bugaboo of inflation still bothers them"
+26281,bugbane,a plant of the genus Cimicifuga having flowers in long racemes or panicles reported to be distasteful to insects
+26282,bugbear hobgoblin,an object of dread or apprehension; "Germany was always a bugbear for France"; "A foolish consistency is the hobgoblin of little minds"--Ralph Waldo Emerson
+26283,bugger_all fuck_all Fanny_Adams sweet_Fanny_Adams,little or nothing at all; "I asked for a raise and they gave me bugger-all"; "I know sweet Fanny Adams about surgery"
+26284,bugginess,the state of having bugs
+26285,buggy roadster,a small lightweight carriage; drawn by a single horse
+26286,buggy_whip,a horsewhip once used by a driver of a buggy; "since buggies have been replaced by cars the buggy whip has become a symbol for anything that is hopelessly outmoded"
+26287,bugle,a tubular glass or plastic bead sewn onto clothing for decoration
+26288,bugle,a brass instrument without valves; used for military calls and fanfares
+26289,bugle bugleweed,any of various low-growing annual or perennial evergreen herbs native to Eurasia; used for ground cover
+26290,bugle_call,a signal broadcast by the sound of a bugle
+26291,bugler,someone who plays a bugle
+26292,bugleweed Lycopus_virginicus,a mildly narcotic and astringent aromatic herb having small whitish flowers; eastern United States
+26293,bugloss alkanet Anchusa_officinalis,perennial or biennial herb cultivated for its delicate usually blue flowers
+26294,builder,a person who creates a business or who organizes and develops a country; "empire builder"
+26295,builder constructor,someone who contracts for and supervises construction (as of a building)
+26296,builder detergent_builder,a substance added to soaps or detergents to increase their cleansing action
+26297,building,the occupants of a building; "the entire building complained about the noise"
+26298,building edifice,a structure that has a roof and walls and stands more or less permanently in one place; "there was a three-story building on the corner"; "it was an imposing edifice"
+26299,building_block,a block of material used in construction work
+26300,building_code,set of standards established and enforced by local government for the structural safety of buildings
+26301,building_complex complex,a whole structure (as a building) made up of interconnected or related structures
+26302,building_material,material used for constructing buildings
+26303,building_permit,a document authorizing the holder to construct a building of a particular kind on a particular lot
+26304,building_society,British equivalent of United States savings and loan association
+26305,building_supply_store building_supply_house,a store where builders can purchase materials for building houses and related structures
+26306,buildup,the result of the process of accumulation; "the buildup of leaves blocked the drain pipes"
+26307,buildup,highly favorable publicity and praise; "his letter of recommendation gave her a terrific buildup"
+26308,buildup,the act of building up an accumulation; "I envied his rapid buildup of assets"; "a military buildup in preparation for the invasion"
+26309,built-in_bed,a bed that is built in and fixed to a wall
+26310,bulb,anything with a round shape resembling a teardrop
+26311,bulb,a modified bud consisting of a thickened globular underground stem serving as a reproductive structure
+26312,bulb,a rounded dilation or expansion in a canal or vessel or organ
+26313,bulb,a rounded part of a cylindrical instrument (usually at one end); "the bulb of a syringe"
+26314,bulbar_conjunctiva conjunctival_layer_of_bulb tunica_conjunctiva_bulbi,the part of the conjunctiva covering the anterior face of the sclera and the surface epithelium of the cornea
+26315,bulbil bulblet,small bulb or bulb-shaped growth arising from the leaf axil or in the place of flowers
+26316,bulblet_fern bulblet_bladder_fern berry_fern Cystopteris_bulbifera,North American fern often bearing bulbils on the leaflets
+26317,bulbous_iris,any of various irises having a rootstock formed like a bulb
+26318,bulbous_plant,plant growing from a bulb
+26319,bulbul,nightingale spoken of in Persian poetry
+26320,bulge bump hump swelling gibbosity gibbousness jut prominence protuberance protrusion extrusion excrescence,something that bulges out or is protuberant or projects from its surroundings; "the gun in his pocket made an obvious bulge"; "the hump of a camel"; "he stood on the rocky prominence"; "the occipital protuberance was well developed"; "the bony excrescence between its horns"
+26321,bulgur bulghur bulgur_wheat,parched crushed wheat
+26322,bulgur_pilaf,pilaf made with bulgur wheat instead of rice and usually without meat
+26323,bulimarexia binge-purge_syndrome binge-vomit_syndrome bulima_nervosa,a disorder of eating in which the person alternates between strong craving for food and aversion to food; characterized by excessive eating followed by periods of fasting or self-induced vomiting
+26324,bulimia,pathologically insatiable hunger (especially when caused by brain lesions)
+26325,bulimia binge-eating_syndrome,a disorder of eating seen among young women who go on eating binges and then feel guilt and depression and self-condemnation
+26326,bulimic,a person suffering from bulimia
+26327,bulk,the property possessed by a large mass
+26328,bulk mass volume,the property of something that is great in magnitude; "it is cheaper to buy it in bulk"; "he received a mass of correspondence"; "the volume of exports"
+26329,bulk_mail,mail consisting of large numbers of identical items (circulars or advertisements) sent to individual addresses at less than 1st-class rates and paid for in one lot
+26330,bulk_modulus,the ratio of the change in pressure acting on a volume to the fractional change in volume
+26331,bulkhead,a partition that divides a ship or plane into compartments
+26332,bulkiness massiveness,an unwieldy largeness
+26333,bull,an investor with an optimistic market outlook; an investor who expects prices to rise and so buys now for resale later
+26334,bull,uncastrated adult male of domestic cattle
+26335,bull,mature male of various mammals of which the female is called `cow'; e.g. whales or elephants or especially cattle
+26336,bull,a serious and ludicrous blunder; "he made a bad bull of the assignment"
+26337,bull bruiser strapper Samson,a large and strong and heavyset man; "he was a bull of a man"; "a thick-skinned bruiser ready to give as good as he got"
+26338,bull cop copper fuzz pig,uncomplimentary terms for a policeman
+26339,bull papal_bull,a formal proclamation issued by the pope (usually written in antiquated characters and sealed with a leaden bulla)
+26340,bull's_eye,in target shooting: a score made by hitting the center of the target; "in repeated sets of five shots his numbers of bull's-eyes varied"
+26341,bull's_eye bull,the center of a target
+26342,bull_market,a market characterized by rising prices for securities
+26343,bull_mastiff,large powerful breed developed by crossing the bulldog and the mastiff
+26344,bull_neck,a thick short powerful neck
+26345,bull_nose,a disease of pigs resulting in swelling of the snout
+26346,bull_session,an informal discussion (usually among men)
+26347,bull_shark cub_shark Carcharhinus_leucas,a most common shark in temperate and tropical coastal waters worldwide; heavy-bodied and dangerous
+26348,bull_snake bull-snake,any of several large harmless rodent-eating North American burrowing snakes
+26349,bull_thistle boar_thistle spear_thistle Cirsium_vulgare Cirsium_lanceolatum,European thistle with rather large heads and prickly leaves; extensively naturalized as a weed in the United States
+26350,bull_tongue,a heavy plow with a single wide blade; used chiefly in cotton fields
+26351,bulla,the round leaden seal affixed to a papal bull
+26352,bullace Prunus_insititia,small wild or half-domesticated Eurasian plum bearing small ovoid fruit in clusters
+26353,bullbrier greenbrier catbrier horse_brier horse-brier brier briar Smilax_rotundifolia,a very prickly woody vine of the eastern United States growing in tangled masses having tough round stems with shiny leathery leaves and small greenish flowers followed by clusters of inedible shiny black berries
+26354,bulldog English_bulldog,a sturdy thickset short-haired breed with a large head and strong undershot lower jaw; developed originally in England for bull baiting
+26355,bulldog_ant,any of the large fierce Australian ants of the genus Myrmecia
+26356,bulldog_clip alligator_clip,a clip with a spring that closes the metal jaws
+26357,bulldog_wrench,a wrench designed to provide a firm grip on something
+26358,bulldozer dozer,large powerful tractor; a large blade in front flattens areas of ground
+26359,bullet slug,a projectile that is fired from a gun
+26360,bullet_hole,a hole made by a bullet passing through it
+26361,bullet_train bullet,a high-speed passenger train
+26362,bullethead,a head shaped like a bullet
+26363,bulletin,a brief report (especially an official statement issued for immediate publication or broadcast)
+26364,bulletin_board notice_board,a board that hangs on a wall; displays announcements
+26365,bulletin_board_system bulletin_board electronic_bulletin_board bbs,a computer that is running software that allows users to leave messages and access information of general interest
+26366,bulletproof_vest,a vest capable of resisting the impact of a bullet
+26367,bullfight corrida,a Spanish or Portuguese or Latin American spectacle; a matador baits and (usually) kills a bull in an arena before many spectators
+26368,bullfighter toreador,someone who fights bulls
+26369,bullfighting tauromachy,the activity at a bullfight
+26370,bullfinch Pyrrhula_pyrrhula,common European finch mostly black and white with red throat and breast
+26371,bullfrog Rana_catesbeiana,largest North American frog; highly aquatic with a deep-pitched voice
+26372,bullhead,freshwater sculpin with a large flattened bony-plated head with hornlike spines
+26373,bullhead bullhead_catfish,any of several common freshwater catfishes of the United States
+26374,bullhorn loud_hailer loud-hailer,a portable loudspeaker with built-in microphone and amplifier
+26375,bullion,a mass of precious metal
+26376,bullion,gold or silver in bars or ingots
+26377,bullnose bullnosed_plane,a small carpenter's plane with the cutting edge near the front
+26378,bullock,young bull
+26379,bullock steer,castrated bull
+26380,bullock's_heart Jamaica_apple,large heart-shaped tropical fruit with soft acid pulp
+26381,bullock's_heart bullock's_heart_tree bullock_heart Annona_reticulata,small tropical American tree bearing a bristly heart-shaped acid tropical fruit
+26382,bullpen,a place on a baseball field where relief pitchers can warm up during a game
+26383,bullpen detention_cell detention_centre,a large cell where prisoners (people awaiting trial or sentence or refugees or illegal immigrants) are confined together temporarily
+26384,bullring,a stadium where bullfights take place
+26385,bullshit bull Irish_bull horseshit shit crap dogshit,obscene words for unacceptable behavior; "I put up with a lot of bullshit from that jerk"; "what he said was mostly bull"
+26386,bullshot,a cocktail made with vodka and beef bouillon or consomme
+26387,bullterrier bull_terrier,a powerful short-haired terrier originated in England by crossing the bulldog with terriers
+26388,bully,a hired thug
+26389,bully tough hooligan ruffian roughneck rowdy yob yobo yobbo,a cruel and brutal fellow
+26390,bully_beef corned_beef corn_beef,beef cured or pickled in brine
+26391,bully_pulpit,a public office of sufficiently high rank that it provides the holder with an opportunity to speak out and be listened to on any matter; "the American presidency is a bully pulpit"
+26392,bullyboy,a swaggering tough; usually one acting as an agent of a political faction
+26393,bullying intimidation,the act of intimidating a weaker person to make them do something
+26394,bulrush bullrush common_rush soft_rush Juncus_effusus,tall rush with soft erect or arching stems found in Eurasia, Australia, New Zealand, and common in North America
+26395,bulwark,a fencelike structure around a deck (usually plural)
+26396,bumblebee humblebee,robust hairy social bee of temperate regions
+26397,bumboat,a small boat that ferries supplies and commodities for sale to a larger ship at anchor
+26398,bumf bumph,reading materials (documents, written information) that you must read and deal with but that you think are extremely boring
+26399,bummer,an experience that is irritating or frustrating or disappointing; "having to stand in line so long was a real bummer"
+26400,bummer,a bad reaction to a hallucinogenic drug
+26401,bump,a lump on the body caused by a blow
+26402,bumper,a glass filled to the brim (especially as a toast); "we quaffed a bumper of ale"
+26403,bumper,a mechanical device consisting of bars at either end of a vehicle to absorb shock and prevent serious damage
+26404,bumper_car Dodgem,a small low-powered electrically powered vehicle driven on a special platform where there are many others to be dodged
+26405,bumper_guard,vertical bars attached to a bumper to prevent locking bumpers with another vehicle
+26406,bumper_jack,a jack for lifting a motor vehicle by the bumper
+26407,bumpiness,the texture of a surface that has many bumps
+26408,bumptiousness cockiness pushiness forwardness,offensive boldness and assertiveness
+26409,bun roll,small rounded bread either plain or sweet
+26410,buna buna_rubber,made by polymerizing butadiene
+26411,bunch clump cluster clustering,a grouping of a number of similar things; "a bunch of trees"; "a cluster of admirers"
+26412,bunch lot caboodle,any collection in its entirety; "she bought the whole caboodle"
+26413,bunchberry dwarf_cornel crackerberry pudding_berry Cornus_canadensis,creeping perennial herb distinguished by red berries and clustered leaf whorls at the tips of shoots; Greenland to Alaska
+26414,bunchgrass bunch_grass,any of various grasses of many genera that grow in tufts or clumps rather than forming a sod or mat; chiefly of western United States
+26415,bunco bunco_game bunko bunko_game con confidence_trick confidence_game con_game hustle sting flimflam,a swindle in which you cheat at gambling or persuade a person to buy worthless property
+26416,bundle sheaf,a package of several things tied together for carrying or storing
+26417,bundling,a onetime custom during courtship of unmarried couples occupying the same bed without undressing
+26418,bundling,the act of binding something into a bundle
+26419,bundling,the act of shoving hastily; "she complained about bundling the children off to school"
+26420,bunfight bun-fight,(Briticism) a grand formal party on an important occasion
+26421,bung spile,a plug used to close a hole in a barrel or flask
+26422,bungalow cottage,a small house with a single story
+26423,bungee bungee_cord,an elasticized rope
+26424,bunghole,a hole in a barrel or cask; used to fill or empty it
+26425,bungler blunderer fumbler bumbler stumbler sad_sack botcher butcher fuckup,someone who makes mistakes because of incompetence
+26426,bunion,a painful swelling of the bursa of the first joint of the big toe
+26427,bunji-bunji Flindersia_schottiana,Australian timber tree whose bark yields a poison
+26428,bunk,a rough bed (as at a campsite)
+26429,bunk bunkum buncombe guff rot hogwash,unacceptable behavior (especially ludicrously false statements)
+26430,bunk feed_bunk,a long trough for feeding cattle
+26431,bunk_bed bunk,beds built one above the other
+26432,bunker,a large container for storing fuel; "the ship's bunkers were full of coal"
+26433,bunker dugout,a fortification of earth; mostly or entirely below ground
+26434,bunker sand_trap trap,a hazard on a golf course
+26435,bunker_mentality,defensiveness resulting from repeated attacks; "after so many suicide bombings the Israelis have to resist developing a bunker mentality"
+26436,bunkmate,someone who occupies the same sleeping quarters as yourself
+26437,bunny bunny_girl,a young waitress in a nightclub whose costume includes the tail and ears of a rabbit
+26438,bunny bunny_rabbit,(usually informal) especially a young rabbit
+26439,bunny_hug,a syncopated ballroom dance formerly popular in the US
+26440,bunsen_burner bunsen etna,a gas burner used in laboratories; has an air valve to regulate the mixture of gas and air
+26441,bunt,(baseball) the act of hitting a baseball lightly without swinging the bat
+26442,bunt Tilletia_caries,fungus that destroys kernels of wheat by replacing them with greasy masses of smelly spores
+26443,bunt stinking_smut,disease of wheat characterized by replacement of the grains with greasy masses of smelly smut spores
+26444,bunt stinking_smut Tilletia_foetida,similar to Tilletia caries
+26445,buntal,fine white Philippine fiber from stalks of unopened leaves of talipot palms; used in making hats
+26446,bunter,a batter who bunts
+26447,bunting,a loosely woven fabric used for flags, etc.
+26448,bunting,any of numerous seed-eating songbirds of Europe or North America
+26449,bunya_bunya,nut tasting like roasted chestnuts; a staple food of Australian aborigines
+26450,bunya_bunya bunya_bunya_tree Araucaria_bidwillii,Australian conifer bearing two-inch seeds tasting like roasted chestnuts; among the aborigines the tree is hereditary property protected by law
+26451,bunyavirus,an animal virus belonging to the family Bunyaviridae; can be used as a bioweapon
+26452,buoy,bright-colored; a float attached by rope to the seabed to mark channels in a harbor or underwater hazards
+26453,buoyancy,the tendency to float in water or other liquid
+26454,buoyancy perkiness,cheerfulness that bubbles to the surface
+26455,bur burr,seed vessel having hooks or prickles
+26456,bur burr,small bit used in dentistry or surgery
+26457,bur_marigold burr_marigold beggar-ticks beggar's-ticks sticktight,any of several plants of the genus Bidens having yellow flowers and prickly fruits that cling to fur and clothing
+26458,bur_oak burr_oak mossy-cup_oak mossycup_oak Quercus_macrocarpa,medium to large deciduous oak of central and eastern North America with ovoid acorns deeply immersed in large fringed cups; yields tough close-grained wood
+26459,bur_reed,marsh plant having elongated linear leaves and round prickly fruit
+26460,burbot eelpout ling cusk Lota_lota,elongate freshwater cod of northern Europe and Asia and North America having barbels around its mouth
+26461,burden,the central idea that is expanded in a document or discourse
+26462,burden load encumbrance incumbrance onus,an onerous or difficult concern; "the burden of responsibility"; "that's a load off my mind"
+26463,burden_of_proof,the duty of proving a disputed charge
+26464,burdensomeness heaviness onerousness oppressiveness,unwelcome burdensome difficulty
+26465,burdock clotbur,any of several erect biennial herbs of temperate Eurasia having stout taproots and producing burs
+26466,bureau_de_change,(French) an establishment where you can exchange foreign money
+26467,bureaucracy,a government that is administered primarily by bureaus that are staffed with nonelective officials
+26468,bureaucracy,any organization in which action is obstructed by insistence on unnecessary procedures and red tape
+26469,bureaucracy bureaucratism,nonelective government officials
+26470,bureaucrat administrative_official,an official of a bureaucracy
+26471,bureaucratic_procedure red_tape,needlessly time-consuming procedure
+26472,burette buret,measuring instrument consisting of a graduated glass tube with a tap at the bottom; used for titration
+26473,burg,colloquial American term for a town; "I've lived in this burg all my life"
+26474,burgess burgher,a citizen of an English borough
+26475,burgh,a borough in Scotland
+26476,burglar,a thief who enters a building with intent to steal
+26477,burglar_alarm,a loud warning signal produced by a burglar alarm; "they could hear the burglar alarm a mile away"
+26478,burglar_alarm,a warning device that is tripped off by the occurrence of a burglary
+26479,burglary,entering a building unlawfully with intent to commit a felony or to steal valuable property
+26480,burgomaster,a mayor of a municipality in Germany or Holland or Flanders or Austria
+26481,burgoo,a gathering at which burgoo stew is served
+26482,burgoo,thick spicy stew of whatever meat and whatever vegetables are available; southern United States
+26483,burgrass bur_grass,a grass of the genus Cenchrus
+26484,burgrave,a nobleman ruling a German castle and surrounding grounds by hereditary right
+26485,burgrave,the military governor of a German town in the 12th and 13th centuries
+26486,burgundy,a dark purplish-red to blackish-red color
+26487,burial entombment inhumation interment sepulture,the ritual placing of a corpse in a grave
+26488,burial_chamber sepulcher sepulchre sepulture,a chamber that is used as a grave
+26489,burial_garment,cloth used to cover a corpse in preparation for burial
+26490,burial_mound grave_mound barrow tumulus,(archeology) a heap of earth placed over prehistoric tombs
+26491,burin,a chisel of tempered steel with a sharp point; used for engraving
+26492,burl,the wood cut from a tree burl or outgrowth; often used decoratively in veneer
+26493,burl,a large rounded outgrowth on the trunk or branch of a tree
+26494,burlap gunny,coarse jute fabric
+26495,burlesque,a theatrical entertainment of broad and earthy humor; consists of comic skits and short turns (and sometimes striptease)
+26496,burn,an injury caused by exposure to heat or chemicals or radiation
+26497,burn,damage inflicted by fire
+26498,burn burn_mark,a place or area that has been burned (especially on a person's body)
+26499,burn burning,pain that feels hot as if it were on fire
+26500,burn_bag,a bag into which secret documents are placed before being burned
+26501,burn_center,a center where patients with severe burns can be treated
+26502,burn_plant Aloe_vera,very short-stemmed plant with thick leaves with soothing mucilaginous juice; leaves develop spiny margins with maturity; native to Mediterranean region; grown widely in tropics and as houseplants
+26503,burner,the heating elements of a stove or range on which pots and pans are placed for cooking; "the electric range had one large burner and three smaller one"
+26504,burner,an apparatus for burning fuel (or refuse); "a diesel engine is an oil burner"
+26505,burning,a form of torture in which cigarettes or cigars or other hot implements are used to burn the victim's skin
+26506,burning burning_at_the_stake,execution by fire
+26507,burning combustion,the act of burning something; "the burning of leaves was prohibited by a town ordinance"
+26508,burning_bush,(Old Testament) the bush that burned without being consumed and from which God spoke to Moses
+26509,burnous burnoose burnouse,a long hooded cloak woven of wool in one piece; worn by Arabs and Moors
+26510,burnt_sienna,a reddish-brown pigment produced by roasting sienna
+26511,burnt_umber,dark brown pigment obtained by heating umber
+26512,burnup,a high-speed motorcycle race on a public road
+26513,burnup,the amount of fuel used up (as in a nuclear reactor)
+26514,burp_gun machine_pistol,a fully automatic pistol; a small submachine gun
+26515,burqa burka,a loose garment (usually with veiled holes for the eyes) worn by Muslim women especially in India and Pakistan; "the Taliban forced all women to wear the burqa"
+26516,burr,rotary file for smoothing rough edges left on a workpiece
+26517,burr,rough projection left on a workpiece after drilling or cutting
+26518,burrawong Macrozamia_communis Macrozamia_spiralis,large attractive palmlike evergreen cycad of New South Wales
+26519,burrfish,any of several fishes having rigid flattened spines
+26520,burrito,a flour tortilla folded around a filling
+26521,burro,small donkey used as a pack animal
+26522,burrow tunnel,a hole made by an animal, usually for shelter
+26523,bursa,a small fluid-filled sac located between movable parts of the body especially at joints
+26524,bursa_omentalis omental_bursa lesser_peritoneal_cavity,an isolated part of the peritoneal cavity that is dorsal to the stomach
+26525,bursar,the treasurer at a college or university
+26526,bursary,the treasury of a public institution or religious order
+26527,bursitis,inflammation of a bursa; frequently in the shoulder
+26528,burst fit,a sudden flurry of activity (often for no obvious reason); "a burst of applause"; "a fit of housecleaning"
+26529,burthen,a variant of `burden'
+26530,burweed_marsh_elder false_ragweed Iva_xanthifolia,tall annual marsh elder common in moist rich soil in central North America that can cause contact dermatitis; produces much pollen that is a major cause of hay fever
+26531,burying burial,concealing something under the ground
+26532,bus autobus coach charabanc double-decker jitney motorbus motorcoach omnibus passenger_vehicle,a vehicle carrying many passengers; used for public transport; "he always rode the bus to work"
+26533,bus jalopy heap,a car that is old and unreliable; "the fenders had fallen off that old bus"
+26534,bus_company bus_service,a public utility providing local transportation
+26535,bus_fare carfare,the fare charged for riding a bus or streetcar
+26536,bus_lane,a traffic lane intended for buses only
+26537,bus_line,an organization responsible for operating a bus transportation system
+26538,bus_route,the route regularly followed by a passenger bus
+26539,bus_stop,a place on a bus route where buses stop to discharge and take on passengers
+26540,bus_terminal bus_depot bus_station coach_station,a terminal that serves bus passengers
+26541,bus_ticket,a ticket good for a ride on a bus
+26542,bus_topology bus,the topology of a network whose components are connected by a busbar
+26543,bus_traffic,buses coming and going
+26544,busbar bus,an electrical conductor that makes a common connection between several circuits; "the busbar in this computer can transmit data either way between any two components of the system"
+26545,busboy waiter's_assistant,a restaurant attendant who sets tables and assists waiters and clears away dirty dishes
+26546,bush,a large wilderness area
+26547,bush_bean,a bean plant whose bushy growth needs no supports
+26548,bush_clover lespedeza,shrubby or herbaceous plants widely used for forage, soil improvement, and especially hay in southern United States
+26549,bush_hibiscus Radyera_farragei Hibiscus_farragei,southern and western Australian shrub with unlobed or shallowly lobed toothed leaves and purple flowers; sometimes placed in genus Hibiscus
+26550,bush_honeysuckle Diervilla_lonicera,spreading bush of northeastern United States having small clusters of fragrant green and yellow flowers
+26551,bush_honeysuckle Diervilla_sessilifolia,bush honeysuckle of southeastern United States having large crowded clusters of sulfur-yellow flowers
+26552,bush_honeysuckle Tartarian_honeysuckle Lonicera_tatarica,a honeysuckle shrub of southern Russia to central Asia
+26553,bush_jacket,a loose fitting jacket; resembles a shirt with four patch pockets and a belt
+26554,bush_nasturtium Tropaeolum_minus,annual with deep yellow flowers smaller than the common garden nasturtium
+26555,bush_pea,any of various plants of the genus Thermopsis having trifoliate leaves and yellow or purple racemose flowers
+26556,bush_poppy tree_poppy,evergreen shrub of southwestern United States and Mexico often cultivated for its fragrant golden yellow flowers
+26557,bush_shrike,an African shrike
+26558,bush_vetch Vicia_sepium,European purple-flowered with slender stems; occurs as a weed in hedges
+26559,bush_violet browallia,any of several herbs of the genus Browallia cultivated for their blue or violet or white flowers
+26560,bush_willow Combretum_appiculatum,small deciduous tree of the Transvaal having spikes of yellow flowers
+26561,bush_willow Combretum_erythrophyllum,small South African tree having creamy yellow fragrant flowers usually growing on stream banks
+26562,bushbuck guib Tragelaphus_scriptus,antelope with white markings like a harness and twisted horns
+26563,bushel,a British imperial capacity measure (liquid or dry) equal to 4 pecks
+26564,bushel,a United States dry measure equal to 4 pecks or 2152.42 cubic inches
+26565,bushel_basket,a basket large enough to hold a bushel
+26566,bushing,an insulating liner in an opening through which conductors pass
+26567,bushing cylindrical_lining,a cylindrical metal lining used to reduce friction
+26568,bushman,a dweller in the Australian bush country
+26569,bushman's_poison ordeal_tree Acocanthera_oppositifolia Acocanthera_venenata,evergreen shrub or tree of South Africa
+26570,bushtit bush_tit,active grey titmice of western North America
+26571,bushwhacker,a Confederate guerrilla during the American Civil War
+26572,bushy_aster Aster_dumosus,stiff perennial of the eastern United States having small linear leaves and numerous tiny white flower heads
+26573,business,an immediate objective; "gossip was the main business of the evening"
+26574,business,a rightful concern or responsibility; "it's none of your business"; "mind your own business"
+26575,business,the volume of commercial activity; "business is good today"; "show me where the business was today"
+26576,business business_sector,business concerns collectively; "Government and business could not agree"
+26577,business concern business_concern business_organization business_organisation,a commercial or industrial enterprise and the people who constitute it; "he bought his brother's business"; "a small mom-and-pop business"; "a racially integrated business concern"
+26578,business stage_business byplay,incidental activity performed by an actor for dramatic effect; "his business with the cane was hilarious"
+26579,business_activity commercial_activity,activity undertaken as part of a commercial enterprise
+26580,business_address,the address at which a business is located
+26581,business_agent,an agent who handles business affairs for another; especially one who deals with employers
+26582,business_card,a card on which are printed the person's name and business affiliation
+26583,business_college,a school for teaching the clerical aspects of business and commerce
+26584,business_cycle trade_cycle,recurring fluctuations in economic activity consisting of recession and recovery and growth and decline
+26585,business_deduction,tax write-off for expenses of doing business
+26586,business_department,a division of a business firm
+26587,business_district downtown,the central area or commercial center of a town or city; "the heart of Birmingham's downtown"
+26588,business_editor,the newspaper editor responsible for business news
+26589,business_expense trade_expense,ordinary and necessary expenses incurred in a taxpayer's business or trade
+26590,business_index,a statistical compilation that provides a context for economic or financial conditions; "this business index is computed relative to the base year of 2005"
+26591,business_interruption_insurance,insurance that provides protection for the loss of profits and continuing fixed expenses resulting from a break in commercial activities due to the occurrence of a peril
+26592,business_letter,a letter dealing with business
+26593,business_life professional_life,a career in industrial or commercial or professional activities
+26594,business_loan commercial_loan,a bank loan granted for the use of a business
+26595,business_lunch,lunch (usually at a restaurant) where business is discussed and the cost is charged as a business expense
+26596,business_news,news about businesses and investments
+26597,business_people businesspeople,people who transact business (especially business executives)
+26598,business_relation,a relation between different business enterprises
+26599,business_school,a graduate school offering study leading to a degree of Master in Business Administration
+26600,business_suit,a suit of clothes traditionally worn by businessmen
+26601,business_traveler,a traveler whose expenses are paid by the business he works for
+26602,businessman man_of_affairs,a person engaged in commercial or industrial business (especially an owner or executive)
+26603,businessmen business_community,the body of individuals who manage businesses
+26604,businessperson bourgeois,a capitalist who engages in industrial commercial enterprise
+26605,businesswoman,a female businessperson
+26606,busker,a person who entertains people for money in public places (as by singing or dancing), usually while asking for money
+26607,buskin combat_boot desert_boot half_boot top_boot,a boot reaching halfway up to the knee
+26608,busload,the quantity of cargo or the number of passengers that a bus can carry
+26609,busman bus_driver,someone who drives a bus
+26610,busman's_holiday,a holiday where you do the same things you do at work
+26611,buspirone BuSpar,a drug (trade name BuSpar) designed specifically for anxiety
+26612,bust,a sculpture of the head and shoulders of a person
+26613,bust tear binge bout,an occasion for excessive eating or drinking; "they went on a bust that lasted three days"
+26614,bust-up,a serious quarrel (especially one that ends a friendship)
+26615,bust-up_takeover,a leveraged buyout in which the target company's assets are sold to repay the loan that financed the takeover
+26616,bustard,large heavy-bodied chiefly terrestrial game bird capable of powerful swift flight; classified with wading birds but frequents grassy steppes
+26617,buster,a robust child
+26618,buster,a person (or thing) that breaks up or overpowers something; "dam buster"; "sanction buster"; "crime buster"
+26619,buster bronco_buster broncobuster,a person who breaks horses
+26620,bustier,a close-fitting and strapless top without sleeves that is worn by women either as lingerie or for evening dress
+26621,bustle,a framework worn at the back below the waist for giving fullness to a woman's skirt
+26622,bustle hustle flurry ado fuss stir,a rapid active commotion
+26623,busybody nosy-parker nosey-parker quidnunc,a person who meddles in the affairs of others
+26624,busyness hum,the state of being or appearing to be actively engaged in an activity; "they manifested all the busyness of a pack of beavers"; "there is a constant hum of military preparation"
+26625,busywork make-work,active work of little value; "while he was waiting he filled the days with busywork"
+26626,butacaine butacaine_sulfate,a white crystalline ester that is applied to mucous membranes as a local anesthetic
+26627,butadiene,a gaseous hydrocarbon C4H6; used in making synthetic rubbers
+26628,butane,occurs in natural gas; used in the manufacture of rubber and fuels
+26629,butanone methyl_ethyl_ketone,colorless soluble flammable liquid ketone used as a solvent for resins and as a paint remover and in lacquers and cements and adhesives and cleaning fluids and celluloid
+26630,butch dike dyke,(slang) offensive term for a lesbian who is noticeably masculine
+26631,butcher,a brutal indiscriminate murderer
+26632,butcher meatman,a retailer of meat
+26633,butcher slaughterer,a person who slaughters or dresses meat for market
+26634,butcher's_broom Ruscus_aculeatus,shrub with stiff flattened stems resembling leaves (cladophylls); used for making brooms
+26635,butcher_board butcher_block,a thick wooden slab formed by bonding together thick laminated strips of unpainted hardwood
+26636,butcher_knife,a large sharp knife for cutting or trimming meat
+26637,butcher_paper,a strong wrapping paper that resists penetration by blood or meat fluids
+26638,butcher_shop meat_market,a shop in which meat and poultry (and sometimes fish) are sold
+26639,butcherbird,shrikes that impale their prey on thorns
+26640,butcherbird,large carnivorous Australian bird with the shrike-like habit of impaling prey on thorns
+26641,butchery butchering,the business of a butcher
+26642,buteonine,any hawk of the genus Buteo
+26643,butler pantryman,a manservant (usually the head servant of a household) who has charge of wines and the table
+26644,butt,the part of a plant from which the roots spring or the part of a stalk or trunk nearest the roots
+26645,butt,a large cask (especially one holding a volume equivalent to 2 hogsheads or 126 gallons)
+26646,butt butt_end,thick end of the handle
+26647,butt goat laughingstock stooge,a victim of ridicule or pranks
+26648,butt stub,the small unused part of something (especially the end of a cigarette that is left after smoking)
+26649,butt_hinge,a hinge mortised flush into the edge of the door and jamb
+26650,butt_joint butt,a joint made by fastening ends together without overlapping
+26651,butt_shaft,a blunt arrow without a barb; an arrow used for target practice
+26652,butt_weld butt-weld,a butt joint that is welded
+26653,butt_welding butt-welding,creating a butt joint by welding
+26654,butte,a hill that rises abruptly from the surrounding region; has a flat top and sloping sides
+26655,butter,a fighter who strikes the opponent with his head
+26656,butter,an edible emulsion of fat globules made by churning milk or cream; for cooking and table use
+26657,butter_cookie,cookie containing much butter
+26658,butter_dish,a small dish (often with a cover) for holding butter at the table
+26659,butter_knife,a small knife with a dull blade; for cutting or spreading butter
+26660,butterbur bog_rhubarb Petasites_hybridus Petasites_vulgaris,small Eurasian herb having broad leaves and lilac-pink rayless flowers; found in moist areas
+26661,buttercrunch,lettuce with delicate and relatively crunchy leaves
+26662,buttercup butterflower butter-flower crowfoot goldcup kingcup,any of various plants of the genus Ranunculus
+26663,buttercup_squash,plant bearing somewhat drum-shaped fruit having dark green rind with greyish markings
+26664,buttercup_squash,drum-shaped squash with dark green rind marked in silver or grey
+26665,butterfat,the fatty substance of milk from which butter is made
+26666,butterfingers,someone who drops things (especially one who cannot catch a ball)
+26667,butterfish,any of numerous small flat Atlantic food fish having smooth skin
+26668,butterfish stromateid_fish stromateid,small marine fish with a short compressed body and feeble spines
+26669,butterfly,diurnal insect typically having a slender body with knobbed antennae and broad colorful wings
+26670,butterfly butterfly_stroke,a swimming stroke in which the arms are thrown forward together out of the water while the feet kick up and down
+26671,butterfly_bush buddleia,tropical shrub having clusters of white or violet or yellow flowers
+26672,butterfly_effect,the phenomenon whereby a small change at one place in a complex system can have large effects elsewhere, e.g., a butterfly flapping its wings in Rio de Janeiro might change the weather in Chicago
+26673,butterfly_fish,small usually brilliantly colored tropical marine fishes having narrow deep bodies with large broad fins; found worldwide
+26674,butterfly_flower Bauhinia_monandra,shrub or small tree of Dutch Guiana having clusters of pink flowers streaked with purple
+26675,butterfly_flower poor_man's_orchid schizanthus,any plant of the genus Schizanthus having finely divided leaves and showy variegated flowers
+26676,butterfly_orchid,any orchid of the genus Psychopsis: spectacular large tiger-striped orchids
+26677,butterfly_orchid Encyclia_tampensis Epidendrum_tampense,orchid of Florida and the Bahamas having showy brightly colored flowers; sometimes placed in genus Epidendrum
+26678,butterfly_orchid butterfly_orchis Epidendrum_venosum Encyclia_venosa,Mexican epiphytic orchid having pale green or yellow-green flowers with white purple-veined lip
+26679,butterfly_orchid butterfly_orchis Orchis_papilionaceae,Mediterranean orchid having usually purple flowers with a fan-shaped spotted or striped rose-red lip
+26680,butterfly_pea Centrosema_virginianum,large-flowered weakly twining or prostrate vine of New Jersey to tropical eastern North America, sometimes cultivated for its purple and white flowers
+26681,butterfly_pea Clitoria_mariana,large-flowered wild twining vine of southeastern and central United States having pale blue flowers
+26682,butterfly_plant Phalaenopsis_amabilis,orchid having large elliptic to obovate fleshy leaves and fragrant pink-and-white flowers dotted with red
+26683,butterfly_ray,a stingray with a short tail and a broad fin
+26684,butterfly_valve,a valve in a carburetor that consists of a disc that turns and acts as a throttle
+26685,butterfly_weed orange_milkweed chigger_flower chiggerflower pleurisy_root tuber_root Indian_paintbrush Asclepias_tuberosa,erect perennial of eastern and southern United States having showy orange flowers
+26686,butterhead_lettuce,lettuce with relatively soft leaves in a loose head; easily broken or bruised
+26687,buttermilk,residue from making butter from sour raw milk; or pasteurized milk curdled by adding a culture
+26688,buttermilk_biscuit soda_biscuit,very tender biscuit partially leavened with buttermilk and soda
+26689,buttermilk_pancake,a pancake made with buttermilk
+26690,butternut,oily egg-shaped nut of an American tree of the walnut family
+26691,butternut butternut_tree white_walnut Juglans_cinerea,North American walnut tree having light-brown wood and edible nuts; source of a light-brown dye
+26692,butternut_squash,buff-colored squash with a long usually straight neck and sweet orange flesh
+26693,butternut_squash Cucurbita_maxima,plant bearing buff-colored squash having somewhat bottle-shaped fruit with fine-textured edible flesh and a smooth thin rind
+26694,butterscotch,a hard brittle candy made with butter and brown sugar
+26695,butterweed,any of several yellow-flowered plants of the genus Packera; often placed in genus Senecio
+26696,butterweed ragwort Senecio_glabellus,American ragwort with yellow flowers
+26697,butterwort,any of numerous carnivorous bog plants of the genus Pinguicula having showy purple or yellow or white flowers and a rosette of basal leaves coated with a sticky secretion to trap small insects
+26698,buttery,a teashop where students in British universities can purchase light meals
+26699,buttinsky,a meddler who tends to butt in
+26700,buttock cheek,either of the two large fleshy masses of muscular tissue that form the human rump
+26701,buttocks nates arse butt backside bum buns can fundament hindquarters hind_end keister posterior prat rear rear_end rump stern seat tail tail_end tooshie tush bottom behind derriere fanny ass,the fleshy part of the human body that you sit on; "he deserves a good kick in the butt"; "are you going to sit on your fanny and do nothing?"
+26702,button,any of various plant parts that resemble buttons
+26703,button,a round flat badge displaying information and suitable for pinning onto a garment; "they passed out campaign buttons for their candidate"
+26704,button,any artifact that resembles a button
+26705,button,a round fastener sewn to shirts and coats etc to fit through buttonholes
+26706,button_accordion,an accordion with buttons rather than keys
+26707,button_fern Pellaea_rotundifolia,fern of New Zealand and Australia having trailing fronds with dark green buttonlike leaflets
+26708,button_fern Tectaria_cicutaria,Jamaican fern having round buttonlike bulbils
+26709,button_pink Dianthus_latifolius,much-branched pink with flowers in clusters; closely related to sweet William
+26710,button_quail button-quail bustard_quail hemipode,small quail-like terrestrial bird of southern Eurasia and northern Africa that lacks a hind toe; classified with wading birds but inhabits grassy plains
+26711,button_snakeroot Eryngium_aquaticum,coarse prickly perennial eryngo with aromatic roots; southeastern United States; often confused with rattlesnake master
+26712,button_tree button_mangrove Conocarpus_erectus,evergreen tree or shrub with fruit resembling buttons and yielding heavy hard compact wood
+26713,buttonhole button_hole,a hole through which buttons are pushed
+26714,buttonhole_stitch,a reinforcing looped stitch for edges, as around a buttonhole
+26715,buttonhook,a hook for pulling a button through a buttonhole
+26716,buttress buttressing,a support usually of stone or brick; supports the wall of a building
+26717,butty,a sandwich; "a bacon butty"
+26718,butut butat,100 bututs equal 1 dalasi in Gambia
+26719,butyl,a hydrocarbon radical (C4H9)
+26720,butyl_alcohol butanol,a flammable alcohol derived from butanes and used for solvents
+26721,butyl_nitrite isobutyl_nitrite,a colorless pungent liquid sometimes used as a stimulant drug by drug abusers
+26722,butyl_rubber,synthetic rubber made by polymerizing isobutylene
+26723,butylene butene,any of three isomeric hydrocarbons C4H8; all used in making synthetic rubbers
+26724,butyric_acid butanoic_acid,an unpleasant smelling fatty acid found especially in butter
+26725,butyrin,any of three glycerides of butyric acid
+26726,buxomness,the bodily property of being attractively plump and vigorous and (of women) full-bosomed
+26727,buy-and-bust_operation,an undercover operation by narcotics detectives to catch unsuspecting drug dealers
+26728,buyer purchaser emptor vendee,a person who buys
+26729,buyer's_market buyers'_market soft_market,a market in which more people want to sell than want to buy
+26730,buying purchasing,the act of buying; "buying and selling fill their days"; "shrewd purchasing requires considerable knowledge"
+26731,buyout,acquisition of a company by purchasing a controlling percentage of its stock
+26732,buyout_bid,a bid to buy all of a person's holdings
+26733,buzz,a confusion of activity and gossip; "the buzz of excitement was so great that a formal denial was issued"
+26734,buzz bombilation bombination,sound of rapid vibration; "the buzz of a bumble bee"
+26735,buzz_bomb robot_bomb flying_bomb doodlebug V-1,a small jet-propelled winged missile that carries a bomb
+26736,buzzard Buteo_buteo,the common European short-winged hawk
+26737,buzzard turkey_buzzard turkey_vulture Cathartes_aura,a New World vulture that is common in South America and Central America and the southern United States
+26738,buzzer,a signaling device that makes a buzzing sound
+26739,buzzword cant,stock phrases that have become nonsense through endless repetition
+26740,by-and-by,an indefinite time in the future; "he'll get around to it in the sweet by-and-by"
+26741,by-catch bycatch,unwanted marine creatures that are caught in the nets while fishing for another species; "thousands of dolphins and porpoises and whales are killed as part of the by-catch each year"
+26742,by-election bye-election,a special election between regular elections
+26743,by-line credit_line,a line giving the name of the writer of a story or article
+26744,by-product byproduct,a secondary and sometimes unexpected consequence
+26745,by-product byproduct spin-off,a product made during the manufacture of something else
+26746,bye pass,an automatic advance to the next round in a tournament without playing an opponent; "he had a bye in the first round"
+26747,bygone water_under_the_bridge,past events to be put aside; "let bygones be bygones"
+26748,bylaw,a rule adopted by an organization in order to regulate its own affairs and the behavior of its members
+26749,bypass,a surgically created shunt (usually around a damaged part)
+26750,bypass_condenser bypass_capacitor,a capacitor that provides low impedance over certain (high) frequencies
+26751,byssus beard,tuft of strong filaments by which e.g. a mussel makes itself fast to a fixed surface
+26752,bystander,a nonparticipant spectator
+26753,byte,a sequence of 8 bits (enough to represent one character of alphanumeric data) processed as a single unit of information
+26754,byway bypath byroad,a side road little traveled (as in the countryside)
+26755,cab,a compartment at the front of a motor vehicle or locomotive where driver sits
+26756,cab cabriolet,small two-wheeled horse-drawn carriage; with two seats and a folding hood
+26757,cab hack taxi taxicab,a car driven by a person whose job is to take passengers where they want to go in exchange for money
+26758,cab_fare taxi_fare,the fare charged for riding in a taxicab
+26759,cabal faction junto camarilla,a clique (often secret) that seeks power usually through intrigue
+26760,cabala cabbala cabbalah kabala kabbala kabbalah qabala qabalah,an esoteric or occult matter resembling the Kabbalah that is traditionally secret
+26761,cabalist,a member of a cabal
+26762,cabalist kabbalist,an expert who is highly skilled in obscure or difficult or esoteric matters
+26763,cabana,a small tent used as a dressing room beside the sea or a swimming pool
+26764,cabaret floorshow floor_show,a series of acts at a night club
+26765,cabaret nightclub night_club club nightspot,a spot that is open late at night and that provides entertainment (as singers or dancers) as well as dancing and food and drink; "don't expect a good meal at a cabaret"; "the gossip columnist got his information by visiting nightclubs every night"; "he played the drums at a jazz club"
+26766,cabbage chou,any of various types of cabbage
+26767,cabbage cultivated_cabbage Brassica_oleracea,any of various cultivars of the genus Brassica oleracea grown for their edible leaves or flowers
+26768,cabbage_bark cabbage-bark_tree cabbage_tree Andira_inermis,tree with shaggy unpleasant-smelling toxic bark and yielding strong durable wood; bark and seeds used as a purgative and vermifuge and narcotic
+26769,cabbage_butterfly,white butterfly whose larvae (cabbageworms) feed on cabbage
+26770,cabbage_palm Euterpe_oleracea,Brazilian palm of genus Euterpe whose leaf buds are eaten like cabbage when young
+26771,cabbage_palm Roystonea_oleracea,West Indian palm with leaf buds that are edible when young
+26772,cabbage_palm cabbage_tree Livistona_australis,Australian palm with leaf buds that are edible when young
+26773,cabbage_palmetto cabbage_palm Sabal_palmetto,low-growing fan-leaved palm of coastal southern United States having edible leaf buds
+26774,cabbage_tree grass_tree Cordyline_australis,elegant tree having either a single trunk or a branching trunk each with terminal clusters of long narrow leaves and large panicles of fragrant white, yellow or red flowers; New Zealand
+26775,cabbageworm Pieris_rapae,toxic green larva of a cabbage butterfly
+26776,caber,a heavy wooden pole (such as the trunk of a young fir) that is tossed as a test of strength (in the Highlands of northern Scotland)
+26777,cabin,a small house built of wood; usually in a wooded area
+26778,cabin,small room on a ship or boat where people sleep
+26779,cabin,the enclosed compartment of an aircraft or spacecraft where passengers are carried
+26780,cabin_boy,a young man acting as a servant on a ship
+26781,cabin_car caboose,a car on a freight train for use of the train crew; usually the last car on the train
+26782,cabin_class second_class economy_class,a class of accommodations on a ship or train or plane that are less expensive than first class accommodations
+26783,cabin_cruiser cruiser pleasure_boat pleasure_craft,a large motorboat that has a cabin and plumbing and other conveniences necessary for living on board
+26784,cabin_liner,a liner with cabins for passengers
+26785,cabinet,persons appointed by a head of state to head executive departments of government and act as official advisers
+26786,cabinet,a piece of furniture resembling a cupboard with doors and shelves and drawers; for storage or display
+26787,cabinet console,housing for electronic instruments, as radio or television
+26788,cabinet locker storage_locker,a storage compartment for clothes and valuables; usually it has a lock
+26789,cabinet_minister,a person who is a member of the cabinet
+26790,cabinet_minister,the job of a senior minister who is a member of the cabinet
+26791,cabinet_wood,moderately dense wood used for cabinetwork; "teak and other heavy cabinet wood"
+26792,cabinetmaker furniture_maker,a woodworker who specializes in making furniture
+26793,cabinetmaking joinery,the craft of a joiner
+26794,cabinetwork,woodwork finished by hand by a cabinetmaker
+26795,cabinetwork cabinetry,the craft of making furniture (especially furniture of high quality)
+26796,cable,a very strong thick rope made of twisted hemp or steel wire
+26797,cable cable_length cable's_length,a nautical unit of depth
+26798,cable cable_television cable_system cable_television_service,a television system that transmits over cables
+26799,cable cablegram overseas_telegram,a telegram sent abroad
+26800,cable line transmission_line,a conductor for transmitting electrical or optical signals or electric power
+26801,cable_car car,a conveyance for passengers or freight on a cable railway; "they took a cable car to the top of the mountain"
+26802,cable_railway funicular funicular_railway,a railway up the side of a mountain pulled by a moving cable and having counterbalancing ascending and descending cars
+26803,cable_television cable,television that is transmitted over cable directly to the receiver
+26804,cabochon,a highly polished gem that is cut convexly but without facets
+26805,cabotage,the exclusive right of a country to control the air traffic within its borders
+26806,cabotage,navigation in coastal waters
+26807,cabstand taxistand taxi_rank,a place where taxis park while awaiting customers; "in England the place where taxis wait to be hired is called a `taxi rank'"
+26808,cacao cacao_tree chocolate_tree Theobroma_cacao,tropical American tree producing cacao beans
+26809,cacao_bean cocoa_bean,seed of the cacao tree; ground roasted beans are source of chocolate
+26810,cache,a hidden storage space (for money or provisions or weapons)
+26811,cache memory_cache,(computer science) RAM memory that is set aside as a specialized buffer storage that is continually updated; used to optimize data transfers between system elements with different characteristics
+26812,cachet,a seal on a letter
+26813,cachet lettre_de_cachet,a warrant formerly issued by a French king who could warrant imprisonment or death in a signed letter under his seal
+26814,cachet seal seal_of_approval,an indication of approved or superior status
+26815,cachexia cachexy wasting,any general reduction in vitality and strength of body and mind resulting from a debilitating chronic disease
+26816,cachinnation,loud convulsive laughter
+26817,cachou,a scented lozenge used to sweeten the breath (e.g. to conceal the odor of tobacco)
+26818,cacique cazique,black-and-red or black-and-yellow orioles of the American tropics
+26819,cackle,the sound made by a hen after laying an egg
+26820,cackle,a loud laugh suggestive of a hen's cackle
+26821,cackler,a hen that has just laid an egg and emits a shrill squawk
+26822,cacodemon cacodaemon,an evil spirit
+26823,cacodyl cacodyl_group cacodyl_radical arsenic_group,the univalent group derived from arsine
+26824,cacodyl tetramethyldiarsine,a poisonous oily liquid with a garlicky odor composed of 2 cacodyl groups; undergoes spontaneous combustion in dry air
+26825,cacogenesis,inability to produce hybrids that are both viable and fertile
+26826,cacophony,loud confusing disagreeable sounds
+26827,cactus,any succulent plant of the family Cactaceae native chiefly to arid regions of the New World and usually having spines
+26828,cactus_mouse Peromyscus_eremicus,burrowing mouse of desert areas of southwestern United States
+26829,cactus_wren,large harsh-voiced American wren of arid regions of the United States southwest and Mexico
+26830,cad bounder blackguard dog hound heel,someone who is morally reprehensible; "you dirty dog"
+26831,cadaster cadastre,a public register showing the details of ownership and value of land; made for the purpose of taxation
+26832,cadaver corpse stiff clay remains,the dead body of a human being; "the cadaver was intended for dissection"; "the end of the police search was the discovery of a corpse"; "the murderer confessed that he threw the stiff in the river"; "honor comes to bless the turf that wraps their clay"
+26833,cadaverine,a colorless toxic ptomaine with an unpleasant odor formed during the putrefaction of animal tissue
+26834,caddie golf_caddie,an attendant who carries the golf clubs for a player
+26835,caddis_fly caddis-fly caddice_fly caddice-fly,small moth-like insect having two pairs of hairy membranous wings and aquatic larvae
+26836,caddisworm strawworm,larva of the caddis fly; constructs a case of silk covered with sand or plant debris
+26837,caddy tea_caddy,a can for storing tea
+26838,cadence,the close of a musical section
+26839,cadence cadency,a recurrent rhythmical series
+26840,cadenza,a brilliant solo passage occurring near the end of a piece of music
+26841,cadet plebe,a military trainee (as at a military academy)
+26842,cadetship,the position of cadet
+26843,cadmium Cd atomic_number_48,a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores
+26844,cadmium_orange,orange-hued cadmium yellow pigment
+26845,cadmium_sulfide,a yellow sulfide used chiefly as a pigment
+26846,cadmium_yellow,pigment of cadmium sulfide and barium sulfate varying in hue from lemon yellow to orange
+26847,cadmium_yellow_pale,pale-hued cadmium yellow pigment
+26848,cadre,a nucleus of military personnel capable of expansion
+26849,caduceus,an insignia used by the medical profession; modeled after the staff of Hermes
+26850,caecilian blindworm,any of the small slender limbless burrowing wormlike amphibians of the order Gymnophiona; inhabit moist soil in tropical regions
+26851,caesium_clock,an atomic clock based on the energy difference between two states of the caesium nucleus in a magnetic field
+26852,caesura,a pause or interruption (as in a conversation); "after an ominous caesura the preacher continued"
+26853,caesura,a break or pause (usually for sense) in the middle of a verse line
+26854,cafe coffeehouse coffee_shop coffee_bar,a small restaurant where drinks and snacks are sold
+26855,cafe_au_lait,equal parts of coffee and hot milk
+26856,cafe_noir demitasse,small cup of strong black coffee without milk or cream
+26857,cafe_royale coffee_royal,black coffee with Cognac and lemon peel and sugar
+26858,cafeteria,a restaurant where you serve yourself and pay a cashier
+26859,cafeteria_facility,(usually plural) facilities for providing food for employees or visitors
+26860,cafeteria_tray,a tray for carrying your food in a cafeteria
+26861,caff,informal British term for a cafe
+26862,caffe_latte latte,strong espresso coffee with a topping of frothed steamed milk
+26863,caffein_addiction,an addiction to caffein
+26864,caffeine caffein,a bitter alkaloid found in coffee and tea that is responsible for their stimulating effects
+26865,caffeine_addict caffein_addict,someone addicted to caffeine
+26866,caffeinism caffeine_intoxication,poisoning resulting from excessive intake of caffeine containing products
+26867,caftan kaftan,a woman's dress style that imitates the caftan cloaks worn by men in the Near East
+26868,caftan kaftan,a (cotton or silk) cloak with full sleeves and sash reaching down to the ankles; worn by men in the Levant
+26869,cage,something that restricts freedom as a cage restricts movement
+26870,cage,the net that is the goal in ice hockey
+26871,cage coop,an enclosure made or wire or metal bars in which birds or animals can be kept
+26872,cagoule,lightweight parka; waterproof
+26873,cahoot,collusion; "in cahoots with"
+26874,caiman cayman,a semiaquatic reptile of Central and South America that resembles an alligator but has a more heavily armored belly
+26875,caiman_lizard,crocodile-like lizard of South America having powerful jaws for crushing snails and mussels
+26876,cairn,a mound of stones piled up as a memorial or to mark a boundary or path
+26877,cairn cairn_terrier,small rough-haired breed of terrier from Scotland
+26878,cairngorm smoky_quartz,a smoky yellow or brown quartz
+26879,caisson,a two-wheeled military vehicle carrying artillery ammunition
+26880,caisson ammunition_chest,a chest to hold ammunition
+26881,caisson pneumatic_caisson cofferdam,large watertight chamber used for construction under water
+26882,caitiff,a cowardly and despicable person
+26883,cajan_pea pigeon_pea dahl,small highly nutritious seed of the tropical pigeon-pea plant
+26884,cake,baked goods made from or based on a mixture of flour, sugar, eggs, and fat
+26885,cake bar,a block of solid substance (such as soap or wax); "a bar of chocolate"
+26886,cake_mix,a commercial mix for making a cake
+26887,cakewalk,a strutting dance based on a march; was performed in minstrel shows; originated as a competition among Black dancers to win a cake
+26888,cakewalk,an easy accomplishment; "winning the tournament was a cakewalk for him"; "invading Iraq won't be a cakewalk"
+26889,calaba Santa_Maria_tree Calophyllum_calaba,West Indian tree having racemes of fragrant white flowers and yielding a durable timber and resinous juice
+26890,calabar-bean_vine Physostigma_venenosum,tropical African woody vine yielding calabar beans
+26891,calabar_bean ordeal_bean,dark brown highly poisonous seed of the calabar-bean vine; source of physostigmine and used in native witchcraft
+26892,calabash,round gourd of the calabash tree
+26893,calabash calabash_pipe,a pipe for smoking; has a curved stem and a large bowl made from a calabash gourd
+26894,calabash calabash_tree Crescentia_cujete,tropical American evergreen that produces large round gourds
+26895,caladenia,any of various orchids of the genus Caladenia
+26896,caladium,any plant of the genus Caladium cultivated for their ornamental foliage variously patterned in white or pink or red
+26897,calamine_lotion,a lotion consisting of a liquid preparation containing calamine; used to treat itching or mild skin irritations
+26898,calamint,perennial aromatic herbs growing in hedgerows or scrub or open woodlands from western Europe to central Asia and in North America
+26899,calamity catastrophe disaster tragedy cataclysm,an event resulting in great loss and misfortune; "the whole city was affected by the irremediable calamity"; "the earthquake was a disaster"
+26900,calamus,any tropical Asian palm of the genus Calamus; light tough stems are a source of rattan canes
+26901,calamus,the aromatic root of the sweet flag used medicinally
+26902,calamus_oil,carcinogenic oil from calamus root used as a perfume
+26903,calanthe,any of various showy orchids of the genus Calanthe having white or yellow or rose-colored flowers and broad leaves folded lengthwise
+26904,calash caleche,a woman's large folded hooped hood; worn in the 18th century
+26905,calash caleche calash_top,the folding hood of a horse-drawn carriage
+26906,calcarine_sulcus calcarine_fissure,a sulcus in the mesial surface of the occipital lobe of the cerebrum
+26907,calceolaria slipperwort,any garden plant of the genus Calceolaria having flowers with large inflated slipper-shaped lower lip
+26908,calceus,a shoe covering the ankle; worn by ancient Romans
+26909,calcification,tissue hardened by deposition of lime salts
+26910,calcification,an inflexible and unchanging state; "the calcification of negotiations"
+26911,calcification,a process that impregnates something with calcium (or calcium salts)
+26912,calcimine,a water-base paint containing zinc oxide and glue and coloring; used as a wash for walls and ceilings
+26913,calcination,the conversion of metals into their oxides as a result of heating to a high temperature
+26914,calcite,a common mineral consisting of crystallized calcium carbonate; a major constituent of limestone
+26915,calcitonin thyrocalcitonin,thyroid hormone that tends to lower the level of calcium in the blood plasma and inhibit resorption of bone
+26916,calcium Ca atomic_number_20,a white metallic element that burns with a brilliant light; the fifth most abundant element in the earth's crust; an important component of most plants and animals
+26917,calcium-cyanamide cyanamide,a compound used as a fertilizer and as a source of nitrogen compounds
+26918,calcium_bicarbonate,a bicarbonate that is a major cause of hard water
+26919,calcium_blocker calcium-channel_blocker,any of a class of drugs that block the flow of the electrolyte calcium (either in nerve cell conduction or smooth muscle contraction of the heart); has been used in the treatment of angina or arrhythmia or hypertension or migraine
+26920,calcium_carbide,a grey salt of calcium (CaC) used in making acetylene
+26921,calcium_carbonate,a salt found in nature as chalk or calcite or aragonite or limestone
+26922,calcium_chloride,a deliquescent salt; used in de-icing and as a drying agent
+26923,calcium_hydride hydrolith,a saltlike binary compound (CaH2) used as a reducing agent and source of hydrogen
+26924,calcium_hydroxide lime slaked_lime hydrated_lime calcium_hydrate caustic_lime lime_hydrate,a caustic substance produced by heating limestone
+26925,calcium_hypochlorite,any hypochlorite of calcium; used as a bleaching agent
+26926,calcium_ion factor_IV,ion of calcium; a factor in the clotting of blood
+26927,calcium_lactate,a white crystalline salt made by the action of lactic acid on calcium carbonate; used in foods (as a baking powder) and given medically as a source of calcium
+26928,calcium_nitrate,a deliquescent salt that is soluble in water; sometimes used as a source of nitrogen in fertilizers
+26929,calcium_oxide quicklime lime calx calcined_lime fluxing_lime unslaked_lime burnt_lime,a white crystalline oxide used in the production of calcium hydroxide
+26930,calcium_phosphate,a phosphate of calcium; a main constituent of animal bones
+26931,calcium_stearate calcium_octadecanoate,an insoluble calcium salt of stearic acid and palmitic acid; it is formed when soap is mixed with water that contains calcium ions and is the scum produced in regions of hard water
+26932,calcium_sulphate calcium_sulfate,a white salt (CaSO4)
+26933,calculation computation computing,the procedure of calculating; determining something by mathematical or logical methods
+26934,calculation computation figuring reckoning,problem solving that involves numbers or quantities
+26935,calculation deliberation,planning something carefully and intentionally; "it was the deliberation of his act that was insulting"
+26936,calculator calculating_machine,a small machine that is used for mathematical calculations; can be mechanical or electronic
+26937,calculator reckoner figurer estimator computer,an expert at calculation (or at operating calculating machines)
+26938,calculus concretion,a hard lump produced by the concretion of mineral salts; found in hollow organs or ducts of the body; "renal calculi can be very painful"
+26939,calculus infinitesimal_calculus,the branch of mathematics that is concerned with limits and with the differentiation and integration of functions
+26940,calculus_of_variations,the calculus of maxima and minima of definite integrals
+26941,caldera,a large crater caused by the violent explosion of a volcano that collapses into a depression
+26942,caldron cauldron,a very large pot that is used for boiling
+26943,calefaction incalescence,the property of being warming
+26944,calendar,a system of timekeeping that defines the beginning and length and divisions of the year
+26945,calendar,a tabular array of the days (usually for one year)
+26946,calendar,a list or register of events (appointments or social events or court cases etc); "I have you on my calendar for next Monday"
+26947,calendar_day civil_day,a day reckoned from midnight to midnight
+26948,calendar_month month,one of the twelve divisions of the calendar year; "he paid the bill last month"
+26949,calendar_year civil_year,the year (reckoned from January 1 to December 31) according to Gregorian calendar
+26950,calender,a machine that smooths or glazes paper or cloth by pressing it between plates or passing it through rollers
+26951,calendula,any of numerous chiefly annual herbs of the genus Calendula widely cultivated for their yellow or orange flowers; often used for medicinal and culinary purposes
+26952,calf,young of various large placental mammals e.g. whale or giraffe or elephant or buffalo
+26953,calf,young of domestic cattle
+26954,calf calfskin,fine leather from the skin of a calf
+26955,calf sura,the muscular back part of the shank
+26956,calf's-foot_jelly,a savory jelly made with gelatin obtained by boiling calves' feet
+26957,calf's_brain,the brain of a calf eaten as meat
+26958,calf's_tongue,the tongue of a calf eaten as meat
+26959,calf_roping,capturing a calf with a lasso and binding its feet
+26960,calibration standardization standardisation,the act of checking or adjusting (by comparison with a standard) the accuracy of a measuring instrument; "the thermometer needed calibration"
+26961,caliche,nitrate-bearing rock or gravel of the sodium nitrate deposits of Chile and Peru
+26962,caliche hardpan,crust or layer of hard subsoil encrusted with calcium-carbonate occurring in arid or semiarid regions
+26963,calico,coarse cloth with a bright print
+26964,californium Cf atomic_number_98,a radioactive transuranic element; discovered by bombarding curium with alpha particles
+26965,caliper calliper,an instrument for measuring the distance between two points (often used in the plural)
+26966,caliph calif kaliph kalif khalif khalifah,the civil and religious leader of a Muslim state considered to be a representative of Allah on earth; "many radical Muslims believe a Khalifah will unite all Islamic lands and people and subjugate the rest of the world"
+26967,caliphate,the territorial jurisdiction of a caliph
+26968,caliphate,the office of a caliph
+26969,calisaya Cinchona_officinalis Cinchona_ledgeriana Cinchona_calisaya,Peruvian shrub or small tree having large glossy leaves and cymes of fragrant yellow to green or red flowers; cultivated for its medicinal bark
+26970,calisthenics callisthenics,the practice of calisthenic exercises; "calisthenics is recommended for general good health"
+26971,calisthenics callisthenics,light exercises designed to promote general fitness; "several different calisthenics were illustrated in the video"
+26972,calk calkin,a metal cleat on the bottom front of a horseshoe to prevent slipping
+26973,call,a demand for a show of hands in a card game; "after two raises there was a call"
+26974,call,a request; "many calls for Christmas stories"; "not many calls for buggywhips"
+26975,call,an instruction that interrupts the program being executed; "Pascal performs calls by simply giving the name of the routine to be executed"
+26976,call,a brief social visit; "senior professors' wives no longer make afternoon calls on newcomers"; "the characters in Henry James' novels are forever paying calls on each other, usually in the parlor of some residence"
+26977,call,a visit in an official or professional capacity; "the pastor's calls on his parishioners"; "the salesman's call on a customer"
+26978,call,(sports) the decision made by an umpire or referee; "he was ejected for protesting the call"
+26979,call claim,a demand especially in the phrase "the call of duty"
+26980,call phone_call telephone_call,a telephone connection; "she reported several anonymous calls"; "he placed a phone call to London"; "he heard the phone ringing but didn't want to take the call"
+26981,call-back,a return call
+26982,call-back,the recall of an employee after a layoff
+26983,call-board,a bulletin board backstage in a theater
+26984,call-in,a telephone call to a radio station or a television station in which the caller participates in the on-going program
+26985,call-out,a challenge to a fight or duel
+26986,call_center call_centre,a center equipped to handle a large volume of telephone calls (especially for taking orders or serving customers)
+26987,call_fire,fire delivered on a specific target in response to a request from the supported unit
+26988,call_forwarding,lets you transfer your incoming calls to any telephone that you can dial direct
+26989,call_girl,a female prostitute who can be hired by telephone
+26990,call_loan demand_loan,a loan that is repayable on demand
+26991,call_mark call_number pressmark,a mark consisting of characters written on a book; used to indicate shelf location
+26992,call_option,an option to buy
+26993,call_option call,the option to buy a given stock (or stock index or commodity future) at a given price before a given date
+26994,call_up,an order to report for military duty
+26995,call_waiting,a way of letting you know that someone else is calling when you are using your telephone
+26996,calla_lily calla arum_lily Zantedeschia_aethiopica,South African plant widely cultivated for its showy pure white spathe and yellow spadix
+26997,caller,an investor who buys a call option
+26998,caller,the bettor in a card game who matches the bet and calls for a show of hands
+26999,caller,someone who proclaims or summons in a loud voice; "the callers were mothers summoning their children home for dinner"
+27000,caller,the person who convenes a meeting; "who is the caller of this meeting?"
+27001,caller caller-out,a person who announces the changes of steps during a dance; "you need a fiddler and a caller for country dancing"
+27002,caller caller-up phoner telephoner,the person initiating a telephone call; "there were so many callers that he finally disconnected the telephone"
+27003,caller company,a social or business visitor; "the room was a mess because he hadn't expected company"
+27004,caller_ID,a small display that will show you the telephone number of the party calling you
+27005,calliandra,any of various shrubs and small trees valued for their fine foliage and attractive spreading habit and clustered white to deep pink or red flowers
+27006,calligrapher calligraphist,someone skilled in penmanship
+27007,calligraphy penmanship chirography,beautiful handwriting
+27008,calling_card,a distinguishing characteristic or behavior; "bombs are a terrorist's calling cards"
+27009,calling_card phone_card,a card that is used instead of cash to make telephone calls
+27010,calling_card visiting_card card,a printed or written greeting that is left to indicate that you have visited
+27011,calling_into_question demand_for_explanation,a challenge to defend what someone has said
+27012,calliope steam_organ,a musical instrument consisting of a series of steam whistles played from a keyboard
+27013,calliopsis Coreopsis_tinctoria,North American annual widely cultivated for its yellow flowers with purple-red to brownish centers; in some classifications placed in a subgenus Calliopsis
+27014,callithump callathump callithump_parade,a noisy boisterous parade
+27015,callosity callus,an area of skin that is thick or hard from continual pressure or friction (as the sole of the foot)
+27016,callosotomy callosectomy,severing the corpus callosum so that communication between the cerebral hemispheres is interrupted (in cases of severe intractable epilepsy)
+27017,callowness jejuneness juvenility,lacking and evidencing lack of experience of life
+27018,callus,bony tissue formed during the healing of a fractured bone
+27019,callus,(botany) an isolated thickening of tissue, especially a stiff protuberance on the lip of an orchid
+27020,calm_air calm,wind moving at less than 1 knot; 0 on the Beaufort scale
+27021,calmness,an absence of strong winds or rain
+27022,calmness,a feeling of calm; an absence of agitation or excitement
+27023,calomel mercurous_chloride,a tasteless colorless powder used medicinally as a cathartic
+27024,calorie gram_calorie small_calorie,unit of heat defined as the quantity of heat required to raise the temperature of 1 gram of water by 1 degree centigrade at atmospheric pressure
+27025,calorie_chart,a list of foods and information about their caloric content
+27026,calorimeter,a measuring instrument that determines quantities of heat
+27027,calorimetry,measurement of quantities of heat
+27028,calosoma,any beetle of the genus Calosoma
+27029,calpac calpack kalpac,a high-crowned black cap (usually made of felt or sheepskin) worn by men in Turkey and Iran and the Caucasus
+27030,calque calque_formation loan_translation,an expression introduced into one language by translating it from another language; "`superman' is a calque for the German `Ubermensch'"
+27031,caltrop devil's_weed Tribulus_terestris,tropical annual procumbent poisonous subshrub having fruit that splits into five spiny nutlets; serious pasture weed
+27032,calumet peace_pipe pipe_of_peace,a highly decorated ceremonial pipe of Amerindians; smoked on ceremonial occasions (especially as a token of peace)
+27033,calvaria skullcap,the dome of the skull
+27034,calvary martyrdom,any experience that causes intense suffering
+27035,calves'_feet,feet of calves used as food; usually jellied
+27036,calves'_liver calf's_liver,liver of a calf used as meat
+27037,calving,giving birth to a calf
+27038,calyculus caliculus calycle,a small cup-shaped structure (as a taste bud or optic cup or cavity of a coral containing a polyp)
+27039,calypso fairy-slipper Calypso_bulbosa,rare north temperate bog orchid bearing a solitary white to pink flower marked with purple at the tip of an erect reddish stalk above 1 basal leaf
+27040,calyptra,the hood or cap covering the calyx of certain plants: e.g., the California poppy
+27041,calyx,(botany) the whorl of sepals of a flower collectively forming the outer floral envelope or layer of the perianth enclosing and supporting the developing bud; usually green
+27042,cam,a rotating disk shaped to convert circular into linear motion
+27043,camail aventail ventail,a medieval hood of mail suspended from a basinet to protect the head and neck
+27044,camas camass quamash camosh camash,any of several plants of the genus Camassia; North and South America
+27045,camber,a slight convexity (as of the surface of a road)
+27046,camber,the alignment of the wheels of a motor vehicle closer together at the bottom than at the top
+27047,camber_arch,an arch with a straight horizontal extrados and a slightly arched intrados
+27048,cambium,a formative one-cell layer of tissue between xylem and phloem in most vascular plants that is responsible for secondary growth
+27049,cambium,the inner layer of the periosteum
+27050,cambric,a finely woven white linen
+27051,cambric_tea,a beverage for children containing hot water and milk and sugar and a small amount of tea
+27052,camcorder,a portable television camera and videocassette recorder
+27053,camel,cud-chewing mammal used as a draft or saddle animal in desert regions
+27054,camel's_hair camelhair,a soft tan cloth made with the hair of a camel
+27055,camel_racing,the sport of racing camels
+27056,camellia camelia,any of several shrubs or small evergreen trees having solitary white or pink or reddish flowers
+27057,camelpox,a viral disease of camels closely related to smallpox; "with a little genetic engineering camelpox could be used as a bioweapon"
+27058,cameo,engraving or carving in low relief on a stone (as in a brooch or ring)
+27059,camera photographic_camera,equipment for taking photographs (usually consisting of a lightproof box with a lens at one end and light-sensitive film at the other)
+27060,camera_angle,the point of view of a camera
+27061,camera_care,keeping a camera in good working order
+27062,camera_lens optical_lens,a lens that focuses the image in a camera
+27063,camera_lucida,an optical device consisting of an attachment that enables an observer to view simultaneously the image and a drawing surface for sketching it
+27064,camera_obscura,a darkened enclosure in which images of outside objects are projected through a small aperture or lens onto a facing surface
+27065,camera_tripod,a tripod used to support a camera
+27066,cameraman camera_operator cinematographer,a photographer who operates a movie camera
+27067,camise,a loose shirt or tunic; originally worn in the Middle Ages
+27068,camisole,a short negligee
+27069,camisole underbodice,a short sleeveless undergarment for women
+27070,camlet,a garment made of camlet fabric
+27071,camlet,a fabric of Asian origin; originally made of silk and camel's hair
+27072,camomile_tea,tea-like drink made from camomile leaves and flowers
+27073,camouflage,device or stratagem for concealment or deceit
+27074,camouflage camo,fabric dyed with splotches of green and brown and black and tan; intended to make the wearer of a garment made of this fabric hard to distinguish from the background
+27075,camp,a group of people living together in a camp; "the whole camp laughed at his mistake"
+27076,camp,something that is considered amusing not because of its originality but because of its unoriginality; "the living room was pure camp"
+27077,camp,a penal institution (often for forced labor); "China has many camps for political prisoners"
+27078,camp,temporary lodgings in the country for travelers or vacationers; "level ground is best for parking and camp areas"
+27079,camp encampment cantonment bivouac,temporary living quarters specially built by the army for soldiers; "wherever he went in the camp the men were grumbling"
+27080,camp refugee_camp,shelter for persons displaced by war or political oppression or for religious beliefs
+27081,camp summer_camp,a site where care and activities are provided for children during the summer months; "city kids get to see the country at a summer camp"
+27082,camp_chair,a light folding chair
+27083,camp_follower,a prostitute who provides service to military personnel
+27084,camp_follower,a follower who is not a member of an ingroup
+27085,camp_meeting,religious (usually evangelistic) meeting held in a large tent or outdoors and lasting several days
+27086,campaign cause crusade drive movement effort,a series of actions advancing a principle or tending toward a particular end; "he supported populist campaigns"; "they worked in the cause of world peace"; "the team was ready for a drive toward the pennant"; "the movement to end slavery"; "contributed to the war effort"
+27087,campaign hunting_expedition safari,an overland journey by hunters (especially in Africa)
+27088,campaign military_campaign,several related operations aimed at achieving a particular goal (usually within geographical and temporal constraints)
+27089,campaign_hat,a broad-brimmed felt hat with a high crown; formerly worn by the United States Army and Marine personnel
+27090,campaigner candidate nominee,a politician who is running for public office
+27091,campaigning candidacy candidature electioneering political_campaign,the campaign of a candidate to be elected
+27092,campanile belfry,a bell tower; usually stands alone unattached to a building
+27093,campanula bellflower,any of various plants of the genus Campanula having blue or white bell-shaped flowers
+27094,camper,someone living temporarily in a tent or lodge for recreation
+27095,camper camping_bus motor_home,a recreational vehicle equipped for camping out while traveling
+27096,camper_trailer,a trailer equipped for occupancy (especially for holiday trips)
+27097,campfire,a small outdoor fire for warmth or cooking (as at a camp)
+27098,camphor,a resin obtained from the camphor tree; used in making celluloid and liniment
+27099,camphor_daisy Haplopappus_phyllocephalus,annual of southern United States and Mexico having bristly leaves and pale yellow flowers
+27100,camphor_dune_tansy Tanacetum_camphoratum,densely hairy plant with rayless flowers; San Francisco Bay area
+27101,camphor_ice,a cerate made of camphor and wax and spermaceti and castor oil
+27102,camphor_oil,oil distilled from camphor resin
+27103,camphor_tree Cinnamomum_camphora,large evergreen tree of warm regions whose aromatic wood yields camphor
+27104,camping encampment bivouacking tenting,the act of encamping and living in tents in a camp
+27105,campmate,someone who lives in the same camp you do
+27106,campsite campground camping_site camping_ground bivouac encampment camping_area,a site where people on holiday can pitch a tent
+27107,campstool,a folding stool
+27108,campus,a field on which the buildings of a university are situated
+27109,campylotropous_ovule,a curved ovule with the micropyle almost touching the funiculus
+27110,camshaft,an engine shaft with cams attached to it
+27111,camwood African_sandalwood Baphia_nitida,small shrubby African tree with hard wood used as a dyewood yielding a red dye
+27112,can can_buoy,a buoy with a round bottom and conical top
+27113,can canful,the quantity contained in a can
+27114,can tin tin_can,airtight sealed metal container for food or drink or paint etc.
+27115,can_of_worms,a source of unpredictable trouble and complexity
+27116,can_opener tin_opener,a device for cutting cans open
+27117,canal,(astronomy) an indistinct surface feature of Mars once thought to be a system of channels; they are now believed to be an optical illusion
+27118,canal,long and narrow strip of water made for boats or for irrigation
+27119,canal_boat narrow_boat narrowboat,a long boat that carries freight and is narrow enough to be used in canals
+27120,canal_of_Schlemm Schlemm's_canal sinus_venosus_sclerae,a circular canal in the eye that drains aqueous humor from the anterior chamber of the eye into the anterior ciliary veins
+27121,canaliculus,a small canal or duct as in some bones and parts of plants
+27122,canalization canalisation,the production of a canal or a conversion to canals
+27123,canape,an appetizer consisting usually of a thin slice of bread or toast spread with caviar or cheese or other savory food
+27124,canard,a deliberately misleading fabrication
+27125,canary,a female singer
+27126,canary canary_bird,any of several small Old World finches
+27127,canary_grass birdseed_grass Phalaris_canariensis,Canary Islands grass; seeds used as feed for caged birds
+27128,canary_seed,a mixture of seeds used to feed caged birds
+27129,canary_yellow canary,a moderate yellow with a greenish tinge
+27130,canarybird_flower canarybird_vine canary_creeper Tropaeolum_peregrinum,a climber having flowers that are the color of canaries
+27131,canasta basket_rummy meld,a form of rummy using two decks of cards and four jokers; jokers and deuces are wild; the object is to form groups of the same rank
+27132,canavanine,an amino acid found in the jack bean
+27133,cancan,a high-kicking dance of French origin performed by a female chorus line
+27134,cancellation,the speech act of revoking or annulling or making void
+27135,cancellation,the act of cancelling; calling off some arrangement
+27136,cancer malignant_neoplastic_disease,any malignant growth or tumor caused by abnormal and uncontrolled cell division; it may spread to other parts of the body through the lymphatic system or the blood stream
+27137,cancer_cell,a cell that is part of a malignant tumor
+27138,cancer_juice,a milky substance found in certain cancerous growths
+27139,cancerweed cancer_weed Salvia_lyrata,sage of eastern United States
+27140,cancroid squamous_cell_carcinoma,the most common form of skin cancer
+27141,candelabrum candelabra,branched candlestick; ornamental; has several lights
+27142,candelilla Euphorbia_antisyphilitica,wax-coated shrub of northern Mexico and southwestern United States
+27143,candelilla Pedilanthus_bracteatus Pedilanthus_pavonis,wax-coated Mexican shrub related to Euphorbia antisyphilitica
+27144,candelilla_wax,a hard brown wax that occurs as a coating on candelilla shrubs
+27145,candid_camera,a miniature camera with a fast lens
+27146,candida,any of the yeastlike imperfect fungi of the genus Candida
+27147,candidate prospect,someone who is considered for something (for an office or prize or honor etc.)
+27148,candidiasis moniliasis monilia_disease,an infection caused by fungi of the genus Monilia or Candida (especially Candida albicans)
+27149,candied_apple candy_apple taffy_apple caramel_apple toffee_apple,an apple that is covered with a candy-like substance (usually caramelized sugar)
+27150,candied_citrus_peel,strips of citrus peel cooked in a sugar syrup
+27151,candied_fruit succade crystallized_fruit,fruit cooked in sugar syrup and encrusted with a sugar crystals
+27152,candle candela cd standard_candle,the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin
+27153,candle taper wax_light,stick of wax with a wick in the middle
+27154,candlelight candle_flame,the light provided by a burning candle
+27155,candlemaker,a person who makes or sells candles
+27156,candlenut,seed of candlenut tree; source of soil used in varnishes
+27157,candlenut varnish_tree Aleurites_moluccana,large tree native to southeastern Asia; the nuts yield oil used in varnishes; nut kernels strung together are used locally as candles
+27158,candlepin,a bowling pin that is thin by comparison with a tenpin
+27159,candlepins candlepin_bowling,a bowling game using slender bowling pins
+27160,candlepower light_intensity,luminous intensity measured in candelas
+27161,candlesnuffer,an implement with a small cup at the end of a handle; used to extinguish the flame of a candle
+27162,candlestick candle_holder,a holder with sockets for candles
+27163,candlewick,loops of soft yarn are cut to give a tufted pattern
+27164,candlewick,the wick of a candle
+27165,candlewood,any of several resinous trees or shrubs often burned for light
+27166,candor candour candidness frankness directness forthrightness,the quality of being honest and straightforward in attitude and speech
+27167,candy confect,a rich sweet made of flavored sugar and often combined with fruit or nuts
+27168,candy_bar,a candy shaped as a bar
+27169,candy_cane,a hard candy in the shape of a rod (usually with stripes)
+27170,candy_corn,a small yellow and white candy shaped to resemble a kernel of corn
+27171,candy_egg,egg-shaped candy
+27172,candy_striper,a volunteer worker in a hospital
+27173,candy_thermometer,a thermometer used to determine the temperature of candy syrups during cooking
+27174,candytuft,any of various flowering plants of the genus Iberis cultivated for their showy clusters of white to red or purple flowers; native to Mediterranean region
+27175,cane,a strong slender often flexible stem as of bamboos, reeds, rattans, or sugar cane
+27176,cane,a stick that people can lean on to help them walk
+27177,cane,a stiff switch used to hit students as punishment
+27178,cane_blight,a disease affecting the canes of various bush fruits (e.g., raspberries or currants)
+27179,cane_sugar,sucrose obtained from sugar cane
+27180,cane_sugar,sugar from sugarcane used as sweetening agent
+27181,canebrake,a dense growth of cane (especially giant cane)
+27182,canebrake_rattlesnake canebrake_rattler Crotalus_horridus_atricaudatus,southern variety
+27183,canella canella_bark white_cinnamon,highly aromatic inner bark of the Canella winterana used as a condiment and a tonic
+27184,canfield,a form of solitaire that involves gambling
+27185,cangue,an instrument of punishment formerly used in China for petty criminals; consists of a heavy wooden collar enclosing the neck and arms
+27186,canicola_fever,an acute feverish disease in people and in dogs marked by gastroenteritis and mild jaundice
+27187,canine canid,any of various fissiped mammals with nonretractile claws and typically long muzzles
+27188,canine canine_tooth eyetooth eye_tooth dogtooth cuspid,one of the four pointed conical teeth (two in each jaw) located between the incisors and the premolars
+27189,canine_chorea chorea,chorea in dogs
+27190,canine_distemper,a viral disease of young dogs characterized by high fever and respiratory inflammation
+27191,canistel canistel_tree Pouteria_campechiana_nervosa,tropical tree of Florida and West Indies yielding edible fruit
+27192,canistel eggfruit,ovoid orange-yellow mealy sweet fruit of Florida and West Indies
+27193,canister cannister tin,metal container for storing dry foods such as tea or flour
+27194,canker,a fungal disease of woody plants that causes localized damage to the bark
+27195,canker canker_sore,an ulceration (especially of the lips or lining of the mouth)
+27196,cankerworm,green caterpillar of a geometrid moth; pest of various fruit and shade trees
+27197,canna,any plant of the genus Canna having large sheathing leaves and clusters of large showy flowers
+27198,canna_lily Canna_generalis,plants grown for their large bright yellow to red flowers
+27199,cannabin cannabis_resin,a resin obtained from the hemp plant; thought to be the active narcotic agent in marijuana
+27200,cannabis hemp,any plant of the genus Cannabis; a coarse bushy annual with palmate leaves and clusters of small green flowers; yields tough fibers and narcotic drugs
+27201,cannabis marijuana marihuana ganja,the most commonly used illicit drug; considered a soft drug, it consists of the dried leaves of the hemp plant; smoked or chewed for euphoric effect
+27202,canned_food canned_foods canned_goods tinned_goods,food preserved by canning
+27203,canned_hunt,a hunt for animals that have been raised on game ranches until they are mature enough to be killed for trophy collections
+27204,canned_meat tinned_meat,meat preserved in a can or tin
+27205,cannel_coal,a bituminous coal that burns with a luminous flame
+27206,cannelloni,tubular pasta filled with meat or cheese
+27207,cannery,a factory where food is canned
+27208,cannibal man-eater anthropophagus anthropophagite,a person who eats human flesh
+27209,cannibalism,the practice of eating the flesh of your own kind
+27210,cannikin,a wooden bucket
+27211,cannikin,a small can
+27212,cannon,heavy gun fired from a tank
+27213,cannon,(Middle Ages) a cylindrical piece of armor plate to protect the arm
+27214,cannon,heavy automatic gun fired from an airplane
+27215,cannon,a large artillery gun that is usually on wheels
+27216,cannon shank,lower part of the leg extending from the hock to the fetlock in hoofed mammals
+27217,cannon_bone,greatly developed metatarsal or metacarpal bone in the shank or cannon part of the leg in hoofed mammals
+27218,cannon_cracker,a large firecracker
+27219,cannon_fodder fodder fresh_fish,soldiers who are regarded as expendable in the face of artillery fire
+27220,cannonade drumfire,intense and continuous artillery fire
+27221,cannonball cannon_ball round_shot,a solid projectile that in former times was fired from a cannon
+27222,cannula,a small flexible tube inserted into a body cavity for draining off fluid or introducing medication
+27223,cannulation canulation cannulization cannulisation canulization canulisation intubation,the insertion of a cannula or tube into a hollow body organ
+27224,canoe,small and light boat; pointed at both ends; propelled with a paddle
+27225,canoeist paddler,someone paddling a canoe
+27226,canola_oil canola,vegetable oil made from rapeseed; it is high in monounsaturated fatty acids
+27227,canon,a priest who is a member of a cathedral chapter
+27228,canon,a contrapuntal piece of music in which a melody in one part is imitated exactly in other parts
+27229,canon,a rule or especially body of rules or principles generally established as valid and fundamental in a field of art or philosophy; "the neoclassical canon"; "canons of polite society"
+27230,canon,a complete list of saints that have been recognized by the Roman Catholic Church
+27231,canon,a collection of books accepted as holy scripture especially the books of the Bible recognized by any Christian church as genuine and inspired
+27232,canon_law ecclesiastical_law,the body of codified laws governing the affairs of a Christian church
+27233,canonical_hour,(Roman Catholic Church) one of seven specified times for prayer
+27234,canonist,a specialist in canon law
+27235,canonization canonisation,(Roman Catholic and Eastern Orthodox Church) the act of admitting a deceased person into the canon of saints
+27236,canopic_jar canopic_vase,a jar used in ancient Egypt to contain entrails of an embalmed body
+27237,canopy,the transparent covering of an aircraft cockpit
+27238,canopy,the umbrellalike part of a parachute that fills with air
+27239,canopy,a covering (usually of cloth) that serves as a roof to shelter an area from the weather
+27240,cant pious_platitude,insincere talk about religion or morals
+27241,cant_hook,a peavey having a hook instead of a spike; used for handling logs
+27242,cantala Cebu_maguey manila_maguey,hard fiber used in making coarse twine; from Philippine agave plants
+27243,cantaloup cantaloupe,the fruit of a cantaloup vine; small to medium-sized melon with yellowish flesh
+27244,cantaloupe cantaloup cantaloupe_vine cantaloup_vine Cucumis_melo_cantalupensis,a variety of muskmelon vine having fruit with a tan rind and orange flesh
+27245,cantata oratorio,a musical composition for voices and orchestra based on a religious text
+27246,canteen,sells food and personal items to personnel at an institution or school or camp etc.
+27247,canteen,a recreation room in an institution
+27248,canteen,restaurant in a factory; where workers can eat
+27249,canteen,a flask for carrying water; used by soldiers or travelers
+27250,canteen mobile_canteen,a restaurant outside; often for soldiers or policemen
+27251,canter lope,a smooth three-beat gait; between a trot and a gallop
+27252,canthus,either of the corners of the eye where the upper and lower eyelids meet
+27253,canticle,a hymn derived from the Bible
+27254,cantilever,projecting horizontal beam fixed at one end only
+27255,cantilever_bridge,bridge constructed of two cantilevers that meet in the middle
+27256,cantillation,liturgical chanting
+27257,cantle,the back of a saddle seat
+27258,canto,the highest part (usually the melody) in a piece of choral music
+27259,canto,a major division of a long poem
+27260,canton,a small administrative division of a country
+27261,cantor hazan,the official of a synagogue who conducts the liturgical part of the service and sings or chants the prayers intended to be performed as solos
+27262,cantus_firmus,a pre-existing melody used as the basis for a polyphonic composition; originally drawn from plainchant, but later drawn from other sources
+27263,canvas canvass,the setting for a narrative or fictional or dramatic account; "the crowded canvas of history"; "the movie demanded a dramatic canvas of sound"
+27264,canvas canvass,an oil painting on canvas fabric
+27265,canvas canvass,the mat that forms the floor of the ring in which boxers or professional wrestlers compete; "the boxer picked himself up off the canvas"
+27266,canvas canvass,a heavy, closely woven fabric (used for clothing or chairs or sails or tents)
+27267,canvas_tent canvas canvass,a tent made of canvas fabric
+27268,canvasback canvasback_duck Aythya_valisineria,North American wild duck valued for sport and food
+27269,canvasser,a person who takes or counts votes
+27270,canyon canon,a ravine formed by a river in an area with little rainfall
+27271,canyon_oak canyon_live_oak maul_oak iron_oak Quercus_chrysolepis,medium-sized evergreen of southwestern United States and northwestern Mexico with oblong leathery often spiny-edged leaves
+27272,canyon_treefrog Hyla_arenicolor,a small chiefly ground dweller that stays within easy jumping distance of water; of United States southwest and northern Mexico
+27273,canyonside,the steeply sloping side of a canyon
+27274,cap,something serving as a cover or protection
+27275,cap,a top (as for a bottle)
+27276,cap,a tight-fitting headdress
+27277,cap pileus,a fruiting structure resembling an umbrella or a cone that forms the top of a stalked fleshy fungus such as a mushroom
+27278,cap_opener,a bottle opener to pry off caps
+27279,cap_screw,a threaded screw for machine parts; screws into a tapped hole
+27280,capability capableness,the quality of being capable -- physically or intellectually or legally; "he worked to the limits of his capability"
+27281,capability capableness potentiality,an aptitude that may be developed
+27282,capability capacity,the susceptibility of something to a particular treatment; "the capability of a metal to be fused"
+27283,capaciousness roominess,intellectual breadth; "the very capaciousness of the idea meant that agreement on fundamentals was unnecessary"; "his unselfishness gave him great intellectual roominess"
+27284,capaciousness roominess spaciousness commodiousness,spatial largeness and extensiveness (especially inside a building); "the capaciousness of Santa's bag astounded the child"; "roominess in this size car is always a compromise"; "his new office lacked the spaciousness that he had become accustomed to"
+27285,capacitance electrical_capacity capacity,an electrical phenomenon whereby an electric charge is stored
+27286,capacitance_unit,a measure of the capacity of a circuit component to store charge
+27287,capacitor capacitance condenser electrical_condenser,an electrical device characterized by its capacity to store an electric charge
+27288,capacity,(computer science) the amount of information (in bytes) that can be stored on a disk drive; "the capacity of a hard disk drive is usually expressed in megabytes"
+27289,capacity,capability to perform or produce; "among his gifts is his capacity for true altruism"; "limited runway capacity"; "a great capacity for growth"
+27290,capacity,tolerance for alcohol; "he had drunk beyond his capacity"
+27291,capacity,the maximum production possible; "the plant is working at 80 per cent capacity"
+27292,capacity,a specified function; "he was employed in the capacity of director"; "he should be retained in his present capacity at a higher salary"
+27293,capacity content,the amount that can be contained; "the gas tank has a capacity of 12 gallons"
+27294,capacity mental_ability,the power to learn or retain knowledge; in law, the ability to understand the facts and significance of your behavior
+27295,caparison trapping housing,stable gear consisting of a decorated covering for a horse, especially (formerly) for a warhorse
+27296,cape mantle,a sleeveless garment like a cloak but shorter
+27297,cape ness,a strip of land projecting into a body of water
+27298,cape_aloe Aloe_ferox,much-branched South African plant with reddish prickly succulent leaves
+27299,cape_forget-me-not Anchusa_capensis,anchusa of southern Africa having blue flowers with white throats
+27300,cape_forget-me-not Anchusa_riparia,anchusa of southern Africa having blue to red-purple flowers
+27301,cape_gooseberry purple_ground_cherry Physalis_peruviana,annual of tropical South America having edible purple fruits
+27302,cape_jasmine cape_jessamine Gardenia_jasminoides Gardenia_augusta,evergreen shrub widely cultivated for its large fragrant waxlike white flowers and glossy leaves
+27303,cape_marigold sun_marigold star_of_the_veldt,any of several South African plants grown for the profusion of usually yellow daisylike flowers and mounds of aromatic foliage
+27304,cape_yellowwood African_yellowwood Podocarpus_elongatus,South African tree or shrub having a rounded crown
+27305,capelin capelan caplin,very small northern fish; forage for sea birds and marine mammals and other fishes
+27306,capeline_bandage,bandage that covers the head or an amputation stump like a cap
+27307,caper,any of numerous plants of the genus Capparis
+27308,caper,pickled flower buds used as a pungent relish in various dishes and sauces
+27309,caper capriole,a playful leap or hop
+27310,caper job,a crime (especially a robbery); "the gang pulled off a bank job in St. Louis"
+27311,caper_sauce,allemande sauce with capers
+27312,caper_spurge myrtle_spurge mole_plant Euphorbia_lathyris,poisonous Old World spurge; adventive in America; seeds yield a purgative oil
+27313,caper_tree Jamaica_caper_tree Capparis_cynophallophora,shrub of southern Florida to West Indies
+27314,caper_tree bay-leaved_caper Capparis_flexuosa,shrub or small tree of southern Florida to Central and South America
+27315,capercaillie capercailzie horse_of_the_wood Tetrao_urogallus,large black Old World grouse
+27316,capful,the quantity that a cap will hold
+27317,capillarity capillary_action,a phenomenon associated with surface tension and resulting in the elevation or depression of liquids in capillaries
+27318,capillary capillary_tube capillary_tubing,a tube of small internal diameter; holds liquid by capillary action
+27319,capillary capillary_vessel,any of the minute blood vessels connecting arterioles with venules
+27320,capillary_bed,a layer of tissue densely packed with capillaries
+27321,capital,wealth in the form of money or property owned by a person or business and human resources of economic value
+27322,capital,a center that is associated more than any other with some activity or product; "the crime capital of Italy"; "the drug capital of Columbia"
+27323,capital,a seat of government
+27324,capital capital_letter uppercase upper-case_letter majuscule,one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis; "printers once kept the type for capitals and for small letters in separate cases; capitals were kept in the upper half of the type case and so became known as upper-case letters"
+27325,capital chapiter cap,the upper part of a column that supports the entablature
+27326,capital working_capital,assets available for use in the production of further assets
+27327,capital_account,(economics) that part of the balance of payments recording a nation's outflow and inflow of financial securities
+27328,capital_account,(finance) an account of the net value of a business at a specified date
+27329,capital_expenditure,the cost of long-term improvements
+27330,capital_gain,the amount by which the selling price of an asset exceeds the purchase price; the gain is realized when the asset is sold
+27331,capital_gains_tax,a tax on capital gains; "he avoided the capital gains tax by short selling"
+27332,capital_levy,a tax on capital or property
+27333,capital_loss,the amount by which the purchase price of an asset exceeds the selling price; the loss is realized when the asset is sold
+27334,capital_offense,a crime so serious that capital punishment is considered appropriate
+27335,capital_ship,a warship of the first rank in size and armament
+27336,capital_stock,the book value of the outstanding shares of a corporation
+27337,capitalism capitalist_economy,an economic system based on private ownership of capital
+27338,capitalist,a conservative advocate of capitalism
+27339,capitalist,a person who invests capital in a business (especially a large business)
+27340,capitalization capitalisation,writing in capital letters
+27341,capitalization capitalisation,an estimation of the value of a business
+27342,capitalization capitalisation,the act of capitalizing on an opportunity
+27343,capitalization capitalisation,the sale of capital stock
+27344,capitate capitate_bone os_capitatum,the wrist bone with a rounded head shape that articulates with the 3rd metacarpus
+27345,capitation,a tax levied on the basis of a fixed amount per person
+27346,capitol,a building occupied by a state legislature
+27347,capitulation,a document containing the terms of surrender
+27348,capitulation,a summary that enumerates the main parts of a topic
+27349,capitulation fall surrender,the act of surrendering (usually under agreed conditions); "they were protected until the capitulation of the fort"
+27350,capitulum,an arrangement of leafy branches forming the top or head of a tree
+27351,capitulum head,a dense cluster of flowers or foliage; "a head of cauliflower"; "a head of lettuce"
+27352,capo,the head of a branch of an organized crime syndicate
+27353,capon,flesh of a castrated male chicken
+27354,capon,castrated male chicken
+27355,capote hooded_cloak,a long cloak with a hood that can be pulled over the head
+27356,capote hooded_coat,a long overcoat with a hood that can be pulled over the head
+27357,cappuccino cappuccino_coffee coffee_cappuccino,equal parts of espresso and hot milk topped with cinnamon and nutmeg and usually whipped cream
+27358,capric_acid decanoic_acid,a fatty acid found in animal oils and fats; has an unpleasant smell resembling goats
+27359,capriccio,an instrumental composition that doesn't adhere to rules for any specific musical form and is played with improvisation
+27360,caprice impulse whim,a sudden desire; "he bought it on an impulse"
+27361,capriciousness unpredictability,the quality of being guided by sudden unpredictable impulses
+27362,caprifig Ficus_carica_sylvestris,wild variety of the common fig used to facilitate pollination of certain figs
+27363,caprimulgiform_bird,long-winged nonpasserine birds
+27364,capriole,(dressage) a vertical jump of a trained horse with a kick of the hind legs at the top of the jump
+27365,caproic_acid hexanoic_acid,a fatty acid found in animal oils and fats or made synthetically; smells like goats
+27366,caprylic_acid,a fatty acid having a rancid taste; found in butter and other fats and oils
+27367,capsaicin,colorless pungent crystalline compound derived from capsicum; source of the hotness of hot peppers of the genus Capsicum such as chili and cayenne and jalapeno
+27368,capsicum pepper capsicum_pepper_plant,any of various tropical plants of the genus Capsicum bearing peppers
+27369,capsid,the outer covering of protein surrounding the nucleic acid of a virus
+27370,capsizing,(nautical) the event of a boat accidentally turning over in the water
+27371,capstan,a windlass rotated in a horizontal plane around a vertical axis; used on ships for weighing anchor or raising heavy sails
+27372,capstone copestone coping_stone stretcher,a stone that forms the top of wall or building
+27373,capsule,a dry dehiscent seed vessel or the spore-containing structure of e.g. mosses
+27374,capsule,a structure that encloses a body part
+27375,capsule,a small container
+27376,capsule,a pill in the form of a small rounded gelatinous container with medicine inside
+27377,captain,an officer holding a rank below a major but above a lieutenant
+27378,captain chieftain,the leader of a group of people; "a captain of industry"
+27379,captain headwaiter maitre_d'hotel maitre_d',a dining-room attendant who is in charge of the waiters and the seating of customers
+27380,captain police_captain police_chief,a policeman in charge of a precinct
+27381,captain senior_pilot,the pilot in charge of an airship
+27382,captain skipper,the naval officer in command of a military ship
+27383,captain's_chair,a wooden armchair with a saddle seat and a low back that has vertical spindles
+27384,captainship captaincy,the post of captain
+27385,caption,taking exception; especially a quibble based on a captious argument; "a mere caption unworthy of a reply"
+27386,caption legend,brief description accompanying an illustration
+27387,captivation enchantment enthrallment fascination,a feeling of great liking for something wonderful and unusual
+27388,captive,a person held in the grip of a strong emotion or passion
+27389,captive,an animal that is confined
+27390,captive_finance_company,a finance company owned by a manufacturer to finance dealers' inventories or to make loans to consumers buying the company's products
+27391,captivity imprisonment incarceration immurement,the state of being imprisoned; "he was held in captivity until he died"; "the imprisonment of captured soldiers"; "his ignominious incarceration in the local jail"; "he practiced the immurement of his enemies in the castle dungeon"
+27392,captopril Capoten,a drug (trade name Capoten) that blocks the formation of angiotensin in the kidneys resulting in vasodilation; used in the treatment of hypertension and congestive heart failure
+27393,captor capturer,a person who captures and holds people or animals
+27394,capture,a process whereby a star or planet holds an object in its gravitational field
+27395,capture,any process in which an atomic or nuclear system acquires an additional particle
+27396,capture,the removal of an opponent's piece from the chess board
+27397,capture gaining_control seizure,the act of forcibly dispossessing an owner of property
+27398,capture seizure,the act of taking of a person by force
+27399,capuchin,a hooded cloak for women
+27400,capuchin ringtail Cebus_capucinus,monkey of Central America and South America having thick hair on the head that resembles a monk's cowl
+27401,capulin Mexican_black_cherry,Mexican black cherry
+27402,capulin capulin_tree Prunus_capuli,Mexican black cherry tree having edible fruit
+27403,caput,a headlike protuberance on an organ or structure; "the caput humeri is the head of the humerus which fits into a cavity in the scapula"
+27404,capybara capibara Hydrochoerus_hydrochaeris,pig-sized tailless South American amphibious rodent with partly webbed feet; largest living rodent
+27405,car auto automobile machine motorcar,a motor vehicle with four wheels; usually propelled by an internal combustion engine; "he needs a car to get to work"
+27406,car elevator_car,where passengers ride up and down; "the car was on the top floor"
+27407,car gondola,the compartment that is suspended from an airship and that carries personnel and the cargo and the power plant
+27408,car railcar railway_car railroad_car,a wheeled vehicle adapted to the rails of railroad; "three cars had jumped the rails"
+27409,car-ferry,a ferry that transports motor vehicles
+27410,car_battery automobile_battery,a lead-acid storage battery in a motor vehicle; usually a 12-volt battery of six cells; the heart of the car's electrical system
+27411,car_bomb,a bomb placed in a car and wired to explode when the ignition is started or by remote control or by a timing device
+27412,car_boot_sale boot_sale,an outdoor sale at which people sell things from the trunk of their car
+27413,car_care,keeping a car in good working order
+27414,car_carrier,a trailer that can be loaded with new cars for delivery to sales agencies
+27415,car_company auto_company,a company that makes and sells automobiles
+27416,car_dealer,a firm that sells and buys cars
+27417,car_door,the door of a car
+27418,car_manufacturer car_maker carmaker auto_manufacturer auto_maker automaker,a business engaged in the manufacture of automobiles
+27419,car_mirror,a mirror that the driver of a car can use
+27420,car_pool,a small group of car drivers who arrange to take turns driving while the others are passengers
+27421,car_rental hire_car rent-a-car self-drive u-drive you-drive,a rented car; "she picked up a hire car at the airport and drove to her hotel"
+27422,car_seat,a seat in a car
+27423,car_sickness,motion sickness experienced while traveling in a car
+27424,car_tire automobile_tire auto_tire rubber_tire,a tire consisting of a rubber ring around the rim of an automobile wheel
+27425,car_train,a train that transports passengers and their automobiles
+27426,car_wheel,a wheel that has a tire and rim and hubcap; used to propel the car
+27427,car_window,a window in a car
+27428,carabao,water buffalo of the Philippines
+27429,carabiner karabiner snap_ring,an oblong metal ring with a spring clip; used in mountaineering to attach a rope to a piton or to connect two ropes
+27430,caracal desert_lynx Lynx_caracal,of deserts of northern Africa and southern Asia
+27431,caracara,any of various long-legged carrion-eating hawks of South America and Central America
+27432,caracolito Ruptiliocarpon_caracolito,large Costa Rican tree having light-colored wood suitable for cabinetry; similar to the African lepidobotrys in wood structure as well as in fruit and flowers and leaves and seeds; often classified in other families
+27433,carafe decanter,a bottle with a stopper; for serving wine or water
+27434,carambola carambola_tree Averrhoa_carambola,East Indian tree bearing deeply ridged yellow-brown fruit
+27435,carambola star_fruit,deeply ridged yellow-brown tropical fruit; used raw as a vegetable or in salad or when fully ripe as a dessert
+27436,caramel,firm chewy candy made from caramelized sugar and butter and milk
+27437,caramel caramelized_sugar,burnt sugar; used to color and flavor food
+27438,carancha Polyborus_plancus,South American caracara
+27439,caranday caranda caranda_palm wax_palm Copernicia_australis Copernicia_alba,South American palm yielding a wax similar to carnauba wax
+27440,carangid_fish carangid,a percoid fish of the family Carangidae
+27441,carapace shell cuticle shield,hard outer covering or case of certain organisms such as arthropods and turtles
+27442,carat,a unit of weight for precious stones = 200 mg
+27443,caravan train wagon_train,a procession (of wagons or mules or camels) traveling together in single file; "we were part of a caravan of almost a thousand camels"; "they joined the wagon train for safety"
+27444,caravanning,the practice of taking holidays in a caravan
+27445,caravansary caravanserai khan caravan_inn,an inn in some eastern countries with a large courtyard that provides accommodation for caravans
+27446,caraway,leaves used sparingly in soups and stews
+27447,caraway Carum_carvi,a Eurasian plant with small white flowers yielding caraway seed
+27448,caraway_seed,aromatic seeds of the caraway plant; used widely as seasoning
+27449,caraway_seed_bread,bread containing caraway seeds
+27450,carbamate,a salt (or ester) of carbamic acid
+27451,carbamic_acid,an acid that is known only by virtue of its salts (as ammonium carbamate) or its esters (as urethane)
+27452,carbide,a binary compound of carbon with a more electropositive element
+27453,carbine,light automatic rifle
+27454,carbineer carabineer carabinier,a soldier (historically a mounted soldier) who is armed with a carbine
+27455,carbohydrate saccharide sugar,an essential structural component of living cells and source of energy for animals; includes simple sugars with small molecules as well as macromolecular substances; are classified according to the number of monosaccharide groups they contain
+27456,carbohydrate_loading carbo_loading,a diet of foods high in starch that increases carbohydrate reserves in muscles; "carbo loading is used by endurance athletes just before competing"
+27457,carbolic_acid phenol hydroxybenzene oxybenzene phenylic_acid,a toxic white soluble crystalline acidic derivative of benzene; used in manufacturing and as a disinfectant and antiseptic; poisonous if taken internally
+27458,carbomycin,a colorless basic antibiotic that inhibits the growth of Gram-positive organisms
+27459,carbon C atomic_number_6,an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds
+27460,carbon carbon_copy,a copy made with carbon paper
+27461,carbon_arc_lamp carbon_arc,has carbon electrodes
+27462,carbon_atom,an atom of carbon
+27463,carbon_black lampblack soot smut crock,a black colloidal substance consisting wholly or principally of amorphous carbon and used to make pigments and ink
+27464,carbon_cycle,the organic circulation of carbon from the atmosphere into organisms and back again
+27465,carbon_cycle,a thermonuclear reaction in the interior of stars
+27466,carbon_dioxide CO2 carbonic_acid_gas,a heavy odorless colorless gas formed during respiration and by the decomposition of organic substances; absorbed from the air by plants in photosynthesis
+27467,carbon_disulfide,a toxic colorless flammable liquid (CS2); used in the manufacture of rayon and cellophane and carbon tetrachloride and as a solvent for rubber
+27468,carbon_monoxide carbon_monoxide_gas CO,an odorless very poisonous gas that is a product of incomplete combustion of carbon
+27469,carbon_monoxide_poisoning,a toxic condition that results from inhaling and absorbing carbon monoxide gas; "carbon monoxide combines with hemoglobin and displaces oxygen in the blood"
+27470,carbon_nanotube nanotube,a fullerene molecule having a cylindrical or toroidal shape
+27471,carbon_paper carbon,a thin paper coated on one side with a dark waxy substance (often containing carbon); used to transfer characters from the original to an under sheet of paper
+27472,carbon_process,a process of printing on paper coated with bichromated gelatin containing pigment
+27473,carbon_steel,steel whose characteristics are determined by the amount of carbon it contains
+27474,carbon_tetrachloride carbon_tet tetrachloromethane perchloromethane,a colorless nonflammable liquid used as a solvent for fats and oils; because of its toxicity its use as a cleaning fluid or fire extinguisher has declined
+27475,carbon_tetrahalide,compounds composed of 1 carbon and 4 halogen molecules
+27476,carbonado,a piece of meat (or fish) that has been scored and broiled
+27477,carbonado black_diamond,an inferior dark diamond used in industry for drilling and polishing
+27478,carbonara,sauce for pasta; contains eggs and bacon or ham and grated cheese
+27479,carbonate,a salt or ester of carbonic acid (containing the anion CO3)
+27480,carbonation,saturation with carbon dioxide (as soda water)
+27481,carbonic_acid,a weak acid known only in solution; formed when carbon dioxide combines with water
+27482,carbonization carbonisation,the destructive distillation of coal (as in coke ovens)
+27483,carbonnade_flamande Belgian_beef_stew,beef stewed in beer seasoned with garlic and served with boiled potatoes
+27484,carbonyl,a compound containing metal combined with carbon monoxide
+27485,carbonyl_group,the bivalent radical CO
+27486,carborundum,an abrasive composed of silicon carbide crystals
+27487,carboxyl carboxyl_group,the univalent radical -COOH; present in and characteristic of organic acids
+27488,carboxylic_acid,an organic acid characterized by one or more carboxyl groups
+27489,carboxymethyl_cellulose,an acid derivative of cellulose
+27490,carboy,a large bottle for holding corrosive liquids; usually cushioned in a special container
+27491,carbuncle,deep-red cabochon garnet cut without facets
+27492,carbuncle,an infection larger than a boil and with several openings for discharge of pus
+27493,carburetor carburettor,mixes air with gasoline vapor prior to explosion
+27494,carcase carcass,the dead body of an animal especially one slaughtered and dressed for food
+27495,carcinogen,any substance that produces cancer
+27496,carcinoid,a small tumor (benign or malignant) arising from the mucosa of the gastrointestinal tract; usually associated with excessive secretion of serotonin
+27497,carcinoma,any malignant tumor derived from epithelial tissue; one of the four major types of cancer
+27498,carcinoma_in_situ preinvasive_cancer,a cluster of malignant cells that has not yet invaded the deeper epithelial tissue or spread to other parts of the body
+27499,carcinosarcoma,a malignant neoplasm composed of carcinoma and sarcoma extensively intermixed
+27500,card,thin cardboard, usually rectangular
+27501,card,a rectangular piece of stiff paper used to send messages (may have printed greetings or pictures); "they sent us a card from Miami"
+27502,card,one of a set of small pieces of stiff paper marked in various ways and used for playing games or for telling fortunes; "he collected cards and traded them with the other boys"
+27503,card identity_card,a card certifying the identity of the bearer; "he had to show his card to get in"
+27504,card scorecard,(golf) a record of scores (as in golf); "you have to turn in your card to get a handicap"
+27505,card_catalog card_catalogue,a library catalog in which each publication is described on a separate file card
+27506,card_game cards,a game played with playing cards
+27507,card_index card_catalog card_catalogue,an alphabetical listing of items (e.g., books in a library) with a separate card for each item
+27508,card_player,someone who plays (or knows how to play) card games
+27509,card_table,a table for playing cards (as in a casino)
+27510,card_table,a small light table with folding legs; can be folded for storage
+27511,card_trick,a trick performed with playing cards
+27512,cardamom cardamon Elettaria_cardamomum,rhizomatous herb of India having aromatic seeds used as seasoning
+27513,cardamom cardamon cardamum,aromatic seeds used as seasoning like cinnamon and cloves especially in pickles and barbecue sauces
+27514,cardboard composition_board,a stiff moderately thick paper
+27515,cardcase,a small case for carrying business cards
+27516,cardholder,a person who holds a credit card or debit card
+27517,cardholder,a player who holds a card or cards in a card game
+27518,cardia,the opening into the stomach and that part of the stomach connected to the esophagus
+27519,cardiac_arrhythmia arrhythmia,an abnormal rate of muscle contractions in the heart
+27520,cardiac_cycle,the complete cycle of events in the heart from the beginning of one heart beat to the beginning of the next; an electrical impulse conducted through the heart muscle that constricts the atria which is followed by constriction of the ventricles; "the cardiac cycle can be shown on an electrocardiogram"
+27521,cardiac_glycoside cardiac_glucoside,obtained from a number of plants and used to stimulate the heart in cases of heart failure
+27522,cardiac_massage heart_massage,an emergency procedure that employs rhythmic compression of the heart (either through the chest wall or, during surgery, directly to the heart) in an attempt to maintain circulation during cardiac arrest
+27523,cardiac_monitor heart_monitor,a piece of electronic equipment for continual observation of the function of the heart
+27524,cardiac_muscle heart_muscle,the muscle tissue of the heart; adapted to continued rhythmic contraction
+27525,cardiac_output,the amount of blood pumped out by the ventricles in a given period of time; "a resting adult has a cardiac output of about three quarts a minute"
+27526,cardiac_plexus plexus_cardiacus,a plexus of nerves supplying the heart and nearby structures
+27527,cardiac_rhythm heart_rhythm,the rhythm of a beating heart
+27528,cardiac_sphincter,the valve between the distal end of the esophagus and the stomach; the physiological sphincter at the esophagogastric junction
+27529,cardiac_tamponade,mechanical compression of the heart resulting from large amounts of fluid collecting in the pericardial space and limiting the heart's normal range of motion
+27530,cardigan,knitted jacket that is fastened up the front with buttons or a zipper
+27531,cardinal,(Roman Catholic Church) one of a group of more than 100 prominent bishops in the Sacred College who advise the Pope and elect new Popes
+27532,cardinal cardinal_grosbeak Richmondena_Cardinalis Cardinalis_cardinalis redbird,crested thick-billed North American finch having bright red plumage in the male
+27533,cardinal carmine,a variable color averaging a vivid red
+27534,cardinal_compass_point,one of the four main compass points
+27535,cardinal_flower Indian_pink Lobelia_cardinalis,North American lobelia having brilliant red flowers
+27536,cardinal_number cardinal,the number of elements in a mathematical set; denotes a quantity but not the order
+27537,cardinal_tetra Paracheirodon_axelrodi,small bright red and blue aquarium fish from streams in Brazil and Colombia
+27538,cardinal_vein,any of the major venous channels in primitive adult vertebrates and in embryos of higher vertebrates
+27539,cardinal_virtue,one of the seven preeminent virtues
+27540,cardinalfish,small red fishes of coral reefs and inshore tropical waters
+27541,cardinality,(mathematics) the number of elements in a set or group (considered as a property of that grouping)
+27542,cardinalship cardinalate,the office of cardinal; "following the scandal, the cardinal resigned his cardinalate"
+27543,cardiogenic_shock,shock caused by cardiac arrest
+27544,cardiograph electrocardiograph,medical instrument that records electric currents associated with contractions of the heart
+27545,cardiography electrocardiography,diagnostic procedure consisting of recording the activity of the heart electronically with a cardiograph (and producing a cardiogram)
+27546,cardioid,an epicycloid in which the rolling circle equals the fixed circle
+27547,cardioid_microphone cardioid_mike,a directional microphone with a cardioid pattern of sensitivity
+27548,cardiologist heart_specialist heart_surgeon,a specialist in cardiology; a specialist in the structure and function and disorders of the heart
+27549,cardiology,the branch of medicine dealing with the heart and its diseases
+27550,cardiomegaly megalocardia megacardia enlarged_heart,an abnormal enlargement of the heart; "mild cardiomegaly is common in athletes"
+27551,cardiomyopathy myocardiopathy,a disorder (usually of unknown origin) of the heart muscle (myocardium)
+27552,cardiopulmonary_exercise,exercise intended to strengthen the circulatory system
+27553,cardiopulmonary_resuscitation CPR cardiac_resuscitation mouth-to-mouth_resuscitation kiss_of_life,an emergency procedure consisting of external cardiac massage and artificial respiration; the first treatment for a person who has collapsed and has no pulse and has stopped breathing; attempts to restore circulation of the blood and prevent death or brain damage due to lack of oxygen
+27554,cardiospasm,a spasm of the cardiac sphincter (between the esophagus and the stomach); if the cardiac sphincter does not relax during swallowing the passage of food into the stomach is obstructed
+27555,cardiovascular_disease,a disease of the heart or blood vessels
+27556,carditis,inflammation of the heart
+27557,cardoon,only parts eaten are roots and especially stalks (blanched and used as celery); related to artichokes
+27558,cardoon Cynara_cardunculus,southern European plant having spiny leaves and purple flowers cultivated for its edible leafstalks and roots
+27559,cardroom,a room for gambling on card games
+27560,cardsharp card_sharp cardsharper card_sharper sharper sharpie sharpy card_shark,a professional card player who makes a living by cheating at card games
+27561,care,a cause for feeling concern; "his major care was the illness of his wife"
+27562,care attention aid tending,the work of providing treatment for or attending to someone or something; "no medical care was required"; "the old car needs constant attention"
+27563,care charge tutelage guardianship,attention and management implying responsibility for safety; "he is in the care of a bodyguard"
+27564,care maintenance upkeep,activity involved in maintaining something in good working order; "he wrote the manual on car care"
+27565,career calling vocation,the particular occupation for which you are trained
+27566,career life_history,the general progression of your working or professional life; "the general had had a distinguished career"; "he had a long career in the law"
+27567,career_counseling,counseling on career opportunities
+27568,career_girl,a woman who is a careerist
+27569,career_man,a man who is a careerist
+27570,careerism,the practice of advancing your career at the expense of your personal integrity
+27571,careerist,a professional who is intent on furthering his or her career by any possible means and often at the expense of their own integrity
+27572,carefreeness,the trait of being without worry or responsibility
+27573,carefreeness insouciance lightheartedness lightsomeness,the cheerful feeling you have when nothing is troubling you
+27574,carefulness,the quality of being careful and painstaking; "I admired the carefulness of his work"
+27575,caregiver,a person who is responsible for attending to the needs of a child or dependent adult
+27576,carelessness sloppiness,the quality of not being careful or taking pains
+27577,caress,a gentle affectionate stroking (or something resembling it); "he showered her with caresses"; "soft music was a fond caress"; "the caresses of the breeze played over his face"
+27578,caressing cuddling fondling hugging kissing necking petting smooching snuggling,affectionate play (or foreplay without contact with the genital organs)
+27579,caret,a mark used by an author or editor to indicate where something is to be inserted into a text
+27580,caretaker,an official who performs the duties of an office temporarily; "he acted as a caretaker until a new president could be elected"
+27581,caretaker,a custodian who is hired to take care of something (property or a person)
+27582,carful,the quantity that a car will hold
+27583,cargo lading freight load loading payload shipment consignment,goods carried by a large vehicle
+27584,cargo_area cargo_deck cargo_hold hold storage_area,the space in a ship or aircraft for storing cargo
+27585,cargo_container,a large container for freight
+27586,cargo_cult,(Melanesia) the followers of one of several millenarian cults that believe salvation will come in the form of wealth (`cargo') brought by westerners; some ascribe divine attributes to westerners on first contact (especially to missionaries)
+27587,cargo_cult,a religious cult that anticipates a time of joy, serenity, and justice when salvation comes
+27588,cargo_door,door used to load or unload cargo
+27589,cargo_hatch,hatch opening into the cargo compartment
+27590,cargo_helicopter,a helicopter that carries cargo
+27591,cargo_liner,a liner that carries cargo
+27592,cargo_ship cargo_vessel,a ship designed to carry cargo
+27593,carhop,a waiter at a drive-in restaurant
+27594,carib_wood Sabinea_carinalis,small Dominican tree bearing masses of large crimson flowers before the fine pinnate foliage emerges
+27595,caribou reindeer Greenland_caribou Rangifer_tarandus,Arctic deer with large antlers in both sexes; called `reindeer' in Eurasia and `caribou' in North America
+27596,caricature imitation impersonation,a representation of a person that is exaggerated for comic effect
+27597,caricature_plant Graptophyllum_pictum,tropical Old World shrub having purple or red tubular flowers and leaf markings resembling the profile of a human face
+27598,caricaturist,someone who parodies in an exaggerated manner
+27599,carillon,set of bells hung in a bell tower
+27600,carillonneur,a musician who plays a carillon
+27601,carina,any of various keel-shaped structures or ridges such as that on the breastbone of a bird or that formed by the fused petals of a pea blossom
+27602,carina_fornicis,ridge on the lower surface of the fornix of the brain
+27603,carinate carinate_bird flying_bird,birds having keeled breastbones for attachment of flight muscles
+27604,carioca,music composed for dancing the carioca
+27605,carioca,a lively ballroom dance that resembles the samba
+27606,carissa,a shrub of the genus Carissa having fragrant white flowers and plumlike red to purple-black fruits
+27607,carissa_plum natal_plum,edible scarlet plumlike fruit of a South African plant
+27608,carjacking,the violent theft of an occupied car
+27609,carline_thistle,a thistle of the genus Carlina
+27610,carload,a gathering of passengers sufficient to fill an automobile
+27611,carminative,medication that prevents the formation of gas in the alimentary tract or eases its passing
+27612,carnal_abuse,any lascivious contact by an adult with the sexual organs of a child (especially not involving sexual intercourse)
+27613,carnallite,a white or reddish mineral consisting of hydrous chlorides of potassium and magnesium; used as a fertilizer and as a source of potassium and magnesium
+27614,carnassial_tooth,the last upper premolar and first lower molar teeth of a carnivore; having sharp edges for cutting flesh
+27615,carnation,a pink or reddish-pink color
+27616,carnation clove_pink gillyflower Dianthus_caryophyllus,Eurasian plant with pink to purple-red spice-scented usually double flowers; widely cultivated in many varieties and many colors
+27617,carnauba carnauba_palm wax_palm Copernicia_prunifera Copernicia_cerifera,Brazilian fan palm having an edible root; source of a useful leaf fiber and a brittle yellowish wax
+27618,carnauba_wax carnauba,hard yellowish to brownish wax from leaves of the carnauba palm used especially in floor waxes and polishes
+27619,carnelian cornelian,a translucent red or orange variety of chalcedony
+27620,carnival,a festival marked by merrymaking and processions
+27621,carnival fair funfair,a traveling show; having sideshows and rides and games of skill etc.
+27622,carnivore,a terrestrial or aquatic flesh-eating mammal; "terrestrial carnivores have four or five clawed digits on each limb"
+27623,carnivore,any animal that feeds on flesh; "Tyrannosaurus Rex was a large carnivore"; "insectivorous plants are considered carnivores"
+27624,carnivorous_bat microbat,typically having large ears and feeding primarily on insects; worldwide in distribution
+27625,carnivorous_plant,plants adapted to attract and capture and digest primarily insects but also other small animals
+27626,carnosaur,large carnivorous bipedal dinosaur having huge claws
+27627,carnotite,a yellow radioactive mineral; an ore of uranium and radium and vanadium
+27628,carob carob_bean algarroba_bean algarroba locust_bean locust_pod,long pod containing small beans and sweetish edible pulp; used as animal feed and source of a chocolate substitute
+27629,carob carob_powder Saint-John's-bread,powder from the ground seeds and pods of the carob tree; used as a chocolate substitute
+27630,carob carob_tree carob_bean_tree algarroba Ceratonia_siliqua,evergreen Mediterranean tree with edible pods; the biblical carob
+27631,carob_bar,a bar of candy made with carob powder
+27632,caroche,a luxurious carriage suitable for nobility in the 16th and 17th century
+27633,carol,a joyful song (usually celebrating the birth of Christ)
+27634,carol Christmas_carol,joyful religious song celebrating the birth of Christ
+27635,caroler caroller,a singer of carols
+27636,caroling,singing joyful religious songs (especially at Christmas)
+27637,carom cannon,a shot in billiards in which the cue ball contacts one object ball and then the other
+27638,carotene,yellow or orange-red fat-soluble pigments in plants
+27639,carotenemia xanthemia,excess carotene in the blood stream; can cause the skin to turn a pale yellow or red color
+27640,carotenoid,any of a class of highly unsaturated yellow to red pigments occurring in plants and animals
+27641,carotid_artery arteria_carotis,either of two major arteries of the neck and head; branches from the aorta
+27642,carotid_body,a chemoreceptor located near the bifurcations of the carotid arteries; monitors oxygen content of the blood and helps control respiration
+27643,carotid_plexus plexus_caroticus,a plexus of nerves surrounding the internal carotid artery
+27644,carouse carousal bender toot booze-up,revelry in drinking; a merry drinking party
+27645,carousel carrousel luggage_carousel luggage_carrousel,a conveyer belt that carries luggage to be claimed by air travelers
+27646,carousel carrousel merry-go-round roundabout whirligig,a large, rotating machine with seats for children to ride or amusement
+27647,carp,the lean flesh of a fish that is often farmed; can be baked or braised
+27648,carp,any of various freshwater fish of the family Cyprinidae
+27649,carpal_bone carpal wrist_bone,any of the eight small bones of the wrist of primates
+27650,carpal_tunnel,a passageway in the wrist through which nerves and the flexor muscles of the hands pass
+27651,carpal_tunnel_syndrome,a painful disorder caused by compression of a nerve in the carpal tunnel; characterized by discomfort and weakness in the hands and fingers and by sensations of tingling, burning or numbness
+27652,carpel,a simple pistil or one element of a compound pistil
+27653,carpenter,a woodworker who makes or repairs wooden objects
+27654,carpenter's_hammer claw_hammer clawhammer,a hammer with a cleft at one end for pulling nails
+27655,carpenter's_kit tool_kit,a set of carpenter's tools
+27656,carpenter's_level,a straight bar of light metal with a spirit level in it
+27657,carpenter's_mallet,a short-handled mallet with a wooden head used to strike a chisel or wedge
+27658,carpenter's_rule,a rule used by a carpenter
+27659,carpenter's_square,a steel square used by carpenters; larger than a try square
+27660,carpenter_ant,ant that nests in decaying wood in which it bores tunnels for depositing eggs
+27661,carpenter_bee,large solitary bee that lays eggs in tunnels bored into wood or plant stems
+27662,carpenteria Carpenteria_californica,California evergreen shrub having glossy opposite leaves and terminal clusters of a few fragrant white flowers
+27663,carpentry woodworking woodwork,the craft of a carpenter: making things out of wood
+27664,carper niggler,someone who constantly criticizes in a petty way
+27665,carpet,a natural object that resembles or suggests a carpet; "a carpet of flowers"; "the larvae of some moths spin a web that resembles a carpet"
+27666,carpet_beater rug_beater,implement for beating dust out of carpets
+27667,carpet_beetle carpet_bug,small beetle whose larvae are household pests feeding on woolen fabrics
+27668,carpet_bombing area_bombing saturation_bombing,an extensive and systematic bombing intended to devastate a large target
+27669,carpet_knight,a knight who spends his time in luxury and idleness (knighted on the carpet at court rather than on the field of battle)
+27670,carpet_loom,a loom for weaving carpeting
+27671,carpet_moth tapestry_moth Trichophaga_tapetzella,larvae feed on carpets and other woolens
+27672,carpet_pad rug_pad underlay underlayment,a pad placed under a carpet
+27673,carpet_shark Orectolobus_barbatus,shark of the western Pacific with flattened body and mottled skin
+27674,carpet_snake Python_variegatus Morelia_spilotes_variegatus,Australian python with a variegated pattern on its back
+27675,carpet_sweeper sweeper,a cleaning implement with revolving brushes that pick up dirt as the implement is pushed over a carpet
+27676,carpet_tack,a tack used to nail down carpets
+27677,carpetbag,traveling bag made of carpet; widely used in 19th century
+27678,carpetbagger,an outsider who seeks power or success presumptuously; "after the Civil War the carpetbaggers from the north tried to take over the south"
+27679,carpetweed Indian_chickweed Molluga_verticillata,annual prostrate mat-forming weed having whorled leaves and small greenish-white flowers; widespread throughout North America
+27680,carpophore,a slender stalk that furnishes an axis for a carpel
+27681,carport car_port,garage for one or two cars consisting of a flat roof supported on poles
+27682,carpospore,a nonmotile spore of red algae
+27683,carrack carack,a large galleon sailed in the Mediterranean as a merchantman
+27684,carrageenin carrageenan,a colloidal extract from carrageen seaweed and other red algae
+27685,carrel carrell cubicle stall,small individual study area in a library
+27686,carriage,a machine part that carries something else
+27687,carriage bearing posture,characteristic way of bearing one's body; "stood with good posture"
+27688,carriage equipage rig,a vehicle with wheels drawn by one or more horses
+27689,carriage_bolt,a roundheaded bolt for timber; threaded along part of the shank; inserted into holes already drilled
+27690,carriage_return,the operation that prepares for the next character to be printed or displayed as the first character on a line
+27691,carriage_trade,trade from upper-class customers
+27692,carriage_wrench,a wrench designed for use with carriage bolts
+27693,carriageway,one of the two sides of a motorway where traffic travels in one direction only usually in two or three lanes
+27694,carrick_bend,a knot used to connect the ends of two large ropes or hawsers
+27695,carrick_bitt,either of a pair of strong posts that support a windlass on a ship's deck
+27696,carrier,an inactive substance that is a vehicle for a radioactive tracer of the same substance and that assists in its recovery after some chemical reaction
+27697,carrier,a self-propelled wheeled vehicle designed specifically to carry something; "refrigerated carriers have revolutionized the grocery business"
+27698,carrier,a rack attached to a vehicle; for carrying luggage or skis or the like
+27699,carrier,(genetics) an organism that possesses a recessive gene whose effect is masked by a dominant allele; the associated trait is not apparent but can be passed on to offspring
+27700,carrier bearer toter,someone whose employment involves carrying something; "the bonds were transmitted by carrier"
+27701,carrier common_carrier,a person or firm in the business of transporting people or goods or messages
+27702,carrier immune_carrier,(medicine) a person (or animal) who has some pathogen to which he is immune but who can pass it on to others
+27703,carrier newsboy,a boy who delivers newspapers
+27704,carrier_pigeon,a homing pigeon used to carry messages
+27705,carrier_wave carrier,a radio wave that can be modulated in order to transmit a signal
+27706,carrion,the dead and rotting body of an animal; unfit for human food
+27707,carron_oil,an ointment formerly used to treat burns
+27708,carrot,deep orange edible root of the cultivated carrot plant
+27709,carrot,orange root; important source of carotene
+27710,carrot,promise of reward as in "carrot and stick"; "used the carrot of subsidized housing for the workers to get their vote"
+27711,carrot cultivated_carrot Daucus_carota_sativa,perennial plant widely cultivated as an annual in many varieties for its long conical orange edible roots; temperate and tropical regions
+27712,carrot_juice,usually freshly squeezed juice of carrots
+27713,carrot_pudding,pudding made with grated carrots
+27714,carrot_stick,a stick of carrot eaten raw
+27715,carry,the act of carrying something
+27716,carry-over carry-forward,the accumulated and undivided profits of a corporation after provision has been made for dividends and reserves
+27717,carryall holdall tote tote_bag,a capacious bag or basket
+27718,carrycot,box-shaped baby bed with handles (for a baby to sleep in while being carried)
+27719,carrying_charge,charge made for carrying an account or for merchandise sold on an installment plan
+27720,carrying_cost carrying_charge,the opportunity cost of unproductive assets; the expense incurred by ownership
+27721,cart,a heavy open wagon usually having two wheels and drawn by an animal
+27722,cartage carting,the work of taking something away in a cart or truck and disposing of it
+27723,carte_blanche,complete freedom or authority to act
+27724,carter,someone whose work is driving carts
+27725,carthorse cart_horse drayhorse,draft horse kept for pulling carts
+27726,cartilage gristle,tough elastic tissue; mostly converted to bone in adults
+27727,cartilage_bone,any bone that develops within cartilage rather than a fibrous tissue
+27728,cartilaginification,abnormal formation of cartilage from other tissues; observed in some Asians
+27729,cartilaginous_fish chondrichthian,fishes in which the skeleton may be calcified but not ossified
+27730,cartilaginous_structure,body structure given shape by cartilage
+27731,cartilaginous_tube,a duct with cartilaginous walls
+27732,cartload,the quantity that a cart holds
+27733,cartographer map_maker,a person who makes maps
+27734,carton,a box made of cardboard; opens by flaps on top
+27735,carton cartonful,the quantity contained in a carton
+27736,cartoon animated_cartoon toon,a film made by photographing a series of cartoon drawings to give the illusion of movement when projected in rapid sequence
+27737,cartoon sketch,a humorous or satirical drawing published in a newspaper or magazine
+27738,cartoonist,a person who draws cartoons
+27739,cartouche cartouch,a cartridge (usually with paper casing)
+27740,cartridge,a module designed to be inserted into a larger piece of equipment; "he loaded a cartridge of fresh tape into the tape deck"
+27741,cartridge,ammunition consisting of a cylindrical casing containing an explosive charge and a bullet; fired from a rifle or handgun
+27742,cartridge pickup,an electro-acoustic transducer that is the part of the arm of a record player that holds the needle and that is removable
+27743,cartridge_belt,a broad belt with loops or pockets for holding ammunition
+27744,cartridge_brass,an alloy of copper and zinc (containing about 30% zinc) that is wrought into cartridges or tubing
+27745,cartridge_ejector ejector,a mechanism in a firearm that ejects the empty shell case after firing
+27746,cartridge_extractor cartridge_remover extractor,a mechanism in a firearm that pulls an empty shell case out of the chamber and passes it to the ejector
+27747,cartridge_fuse,a fuse cased in a tube
+27748,cartridge_holder cartridge_clip clip magazine,a metal frame or container holding cartridges; can be inserted into an automatic gun
+27749,cartridge_paper,thick white paper for pencil and ink drawings
+27750,cartridge_paper,paper for making cartridge cases
+27751,cartwheel,a wheel that has wooden spokes and a metal rim
+27752,cartwheel,acrobatic revolutions with the body turned sideways and the arms and legs outstretched like the spokes of a wheel
+27753,cartwright,a workman who makes and repairs carts and wagons
+27754,caruncle caruncula,an outgrowth on a plant or animal such as a fowl's wattle or a protuberance near the hilum of certain seeds
+27755,carvedilol,beta blocker that can reduce the progression of heart failure in individuals whose disease is not advanced
+27756,carving,a sculpture created by removing material (as wood or ivory or stone) in order to create a desired shape
+27757,carving cutting,removing parts from hard material to create a desired pattern or shape
+27758,carving_fork,a large fork used in carving cooked meat
+27759,carving_knife,a large knife used to carve cooked meat
+27760,caryatid,a supporting column carved in the shape of a person
+27761,caryophyllaceous_plant,a plant of the family Caryophyllaceae
+27762,caryophylloid_dicot_family,family of relatively early dicotyledonous plants including mostly flowers
+27763,caryophylloid_dicot_genus,genus of relatively early dicotyledonous plants including mostly flowers
+27764,casaba casaba_melon,melon having yellowish rind and whitish flesh
+27765,cascade,a small waterfall or series of small waterfalls
+27766,cascade,a succession of stages or operations or processes or units; "progressing in severity as though a cascade of genetic damage was occurring"; "separation of isotopes by a cascade of processes"
+27767,cascade_everlasting Ozothamnus_secundiflorus Helichrysum_secundiflorum,shrub with white woolly branches and woolly leaves having fragrant flowers forming long sprays; flowers suitable for drying; sometimes placed in genus Helichrysum
+27768,cascade_liquefier,an apparatus used to liquefy air or oxygen etc.
+27769,cascade_penstemon Penstemon_serrulatus,whorls of deep blue to dark purple flowers at tips of erect leafy stems; moist places from British Columbia to Oregon
+27770,cascade_transformer,a number of transformers in series; provides a high-voltage source
+27771,cascades_frog Rana_cascadae,mountain frog found near water; of United States Northwest to California
+27772,cascara cascara_sagrada chittam_bark chittem_bark,dried bark of the cascara buckthorn used as a laxative
+27773,cascara_buckthorn bearberry bearwood chittamwood chittimwood Rhamnus_purshianus,shrubby tree of the Pacific coast of the United States; yields cascara sagrada
+27774,cascarilla Croton_eluteria,West Indian shrub with aromatic bark
+27775,cascarilla_bark eleuthera_bark sweetwood_bark,aromatic bark of cascarilla; used as a tonic and for making incense
+27776,case,a specific state of mind that is temporary; "a case of the jitters"
+27777,case,a person requiring professional services; "a typical case was the suburban housewife described by a marriage counselor"
+27778,case,a problem requiring investigation; "Perry Mason solved the case of the missing heir"
+27779,case,a statement of facts and reasons used to support an argument; "he stated his case clearly"
+27780,case,the actual state of things; "that was not the case"
+27781,case,a portable container for carrying several objects; "the musicians left their instrument cases backstage"
+27782,case caseful,the quantity contained in a case
+27783,case compositor's_case typesetter's_case,(printing) the receptacle in which a compositor has his type, which is divided into compartments for the different letters, spaces, or numbers; "for English, a compositor will ordinarily have two such cases, the upper case containing the capitals and the lower case containing the small letters"
+27784,case display_case showcase vitrine,a glass container used to store and display items in a shop or museum or home
+27785,case grammatical_case,nouns or pronouns or adjectives (often marked by inflection) related in some way to other words in a sentence
+27786,case instance example,an occurrence of something; "it was a case of bad judgment"; "another instance occurred yesterday"; "but there is always the famous example of the Smiths"
+27787,case pillowcase slip pillow_slip,bed linen consisting of a cover for a pillow; "the burglar carried his loot in a pillowcase"
+27788,case-fatality_proportion,the number of cases of a disease ending in death divided by the number of cases of the disease; usually expressed as a percentage or as the number of deaths per 1000 cases
+27789,case-hardened_steel,steel with a surface that is much harder than the interior metal
+27790,case-to-infection_proportion case-to-infection_ratio,the number of cases of a disease divided by the number of infections with the agent that causes the disease
+27791,case_agreement,agreement in grammatical case between words in the same construction
+27792,case_history,detailed record of the background of a person or group under study or treatment
+27793,case_knife,a metal blade with a handle; used as cutlery
+27794,case_knife sheath_knife,a knife with a fixed blade that is carried in a sheath
+27795,case_law precedent common_law,(civil law) a law established by following earlier judicial decisions
+27796,case_load,the number of cases handled in a given period of time (as by a court or agency)
+27797,case_officer,an operative who also serves as an official staffer of an intelligence service
+27798,case_shot canister canister_shot,a metallic cylinder packed with shot and used as ammunition in a firearm
+27799,case_study,a careful study of some social unit (as a corporation or division within a corporation) that attempts to determine what factors led to its success or failure
+27800,case_study,a detailed analysis of a person or group from a social or psychological or medical point of view
+27801,casebook,a book in which detailed written records of a case are kept and which are a source of information for subsequent work
+27802,casein,a milk protein used in making e.g. plastics and adhesives
+27803,casein_glue,made from casein; used for e.g. plywood and cabinetwork
+27804,casein_paint casein,a water-base paint made with a protein precipitated from milk
+27805,casemaking_clothes_moth Tinea_pellionella,the larvae live in tubes of its food material fastened with silk that it spins
+27806,casement,a window sash that is hinged (usually on one side)
+27807,casement_window,a window with one or more casements
+27808,casern,military barracks in a garrison town
+27809,casework,close sociological study of a maladjusted person or family for diagnosis and treatment
+27810,caseworm,insect larva that constructs a protective case around its body
+27811,cash hard_cash hard_currency,money in the form of bills or coins; "there is a desperate shortage of hard cash"
+27812,cash immediate_payment,prompt payment for goods or services in currency or by check
+27813,cash_account,an account with a securities brokerage whose transactions are settled on a cash basis
+27814,cash_bar,a counter at a large party where you can purchase drinks by the glass
+27815,cash_basis,a method of accounting in which each item is entered as payments are received or made
+27816,cash_card cashcard,a credit card that entitles the holder to receive cash
+27817,cash_crop,a readily salable crop that is grown and gathered for the market (as vegetables or cotton or tobacco)
+27818,cash_equivalent,a highly liquid debt instrument with maturities of less than three months
+27819,cash_flow,the excess of cash revenues over cash outlays in a give period of time (not including non-cash expenses)
+27820,cash_machine cash_dispenser automated_teller_machine automatic_teller_machine automated_teller automatic_teller ATM,an unattended machine (outside some banks) that dispenses money when a personal coded card is used
+27821,cash_register register,a cashbox with an adding machine to register transactions; used in shops to add up the bill
+27822,cash_surrender_value,the amount that the insurance company will pay on a given life insurance policy if the policy is cancelled prior to the death of the insured
+27823,cashbox money_box till,a strongbox for holding cash
+27824,cashew cashew_nut,kidney-shaped nut edible only when roasted
+27825,cashew cashew_tree Anacardium_occidentale,tropical American evergreen tree bearing kidney-shaped nuts that are edible only when roasted
+27826,cashier,a person responsible for receiving payments for goods and services (as in a shop or restaurant)
+27827,cashier's_check treasurer's_check cashier's_cheque treasurer's_cheque,a check issued by the officer of a bank on the banks own account (not that of a private person); "cashier's checks are as good as cash"
+27828,cashmere,the wool of the Kashmir goat
+27829,cashmere,a soft fabric made from the wool of the Cashmere goat
+27830,casing,the outermost covering of a pneumatic tire
+27831,casing case,the enclosing frame around a door or window opening; "the casings had rotted away and had to be replaced"
+27832,casino cassino,a card game in which cards face up on the table are taken with eligible cards in the hand
+27833,casino gambling_casino,a public building for gambling and entertainment
+27834,cask caskful,the quantity a cask will hold
+27835,casket jewel_casket,small and often ornate box for holding jewels or other valuables
+27836,caspase,any of a group of proteases that mediate apoptosis
+27837,casque,(15-16th century) any armor for the head; usually ornate without a visor
+27838,casquet casquetel,a light open casque without a visor or beaver
+27839,cassareep,a flavoring made by boiling down the juice of the bitter cassava; used in West Indian cooking
+27840,cassava casava,any of several plants of the genus Manihot having fleshy roots yielding a nutritious starch
+27841,cassava cassava_starch manioc manioca,a starch made by leaching and drying the root of the cassava plant; the source of tapioca; a staple food in the tropics
+27842,cassava manioc,cassava root eaten as a staple food after drying and leaching; source of tapioca
+27843,casserole,food cooked and served in a casserole
+27844,casserole,large deep dish in which food can be cooked and served
+27845,cassette,a container that holds a magnetic tape used for recording or playing sound or video
+27846,cassette_deck,a tape deck for playing and recording cassette tapes
+27847,cassette_player,electronic equipment for playing cassettes
+27848,cassette_recorder,a recorder for recording or playing cassettes
+27849,cassette_tape,a cassette that contains magnetic tape
+27850,cassia,any of various trees or shrubs of the genus Cassia having pinnately compound leaves and usually yellow flowers followed by long seedpods
+27851,cassia cassia-bark_tree Cinnamomum_cassia,Chinese tree with aromatic bark; yields a less desirable cinnamon than Ceylon cinnamon
+27852,cassia_bark Chinese_cinnamon,aromatic bark of the cassia-bark tree; less desirable as a spice than Ceylon cinnamon bark
+27853,cassiri,a drink resembling beer; made from fermented cassava juice
+27854,cassiterite,a hard heavy dark mineral that is the chief source of tin
+27855,cassock,a black garment reaching down to the ankles; worn by priests or choristers
+27856,cassowary,large black flightless bird of Australia and New Guinea having a horny head crest
+27857,cast cast_of_characters dramatis_personae,the actors in a play
+27858,cast casting,object formed by a mold
+27859,cast mold mould stamp,the distinctive form in which a thing is made; "pottery of this cast was found throughout the region"
+27860,cast plaster_cast plaster_bandage,bandage consisting of a firm covering (often made of plaster of Paris) that immobilizes broken bones while they heal
+27861,cast roll,the act of throwing dice
+27862,cast_iron,an alloy of iron containing so much carbon that it is brittle and so cannot be wrought but must be shaped by casting
+27863,castaway shipwreck_survivor,a shipwrecked person
+27864,caste,social status or position conferred by a system based on class; "lose caste by doing work beneath one's station"
+27865,caste,(Hinduism) a hereditary social class among Hindus; stratified according to ritual purity
+27866,caste,a social class separated from others by distinctions of hereditary rank or profession or wealth
+27867,caste,in some social insects (such as ants) a physically distinct individual or group of individuals specialized to perform certain functions in the colony
+27868,caste_system,a social structure in which classes are determined by heredity
+27869,caster,a worker who casts molten metal into finished products
+27870,caster castor,a shaker with a perforated top for sprinkling powdered sugar
+27871,caster castor,a pivoting roller attached to the bottom of furniture or trucks or portable machines to make them movable
+27872,castigation chastisement,verbal punishment
+27873,castigation earful bawling_out chewing_out upbraiding going-over dressing_down,a severe scolding
+27874,castile_soap,a good hard soap made from olive oil and sodium hydroxide
+27875,casting,the choice of actors to play particular roles in a play or movie
+27876,casting cast,the act of throwing a fishing line out over the water by means of a rod and reel
+27877,casting_lots drawing_lots sortition,making a chance decision by using lots (straws or pebbles etc.) that are thrown or drawn
+27878,casting_vote,the deciding vote cast by the presiding officer to resolve a tie
+27879,castle,a large building formerly occupied by a ruler and fortified against attack
+27880,castle castling,interchanging the positions of the king and a rook
+27881,castle rook,(chess) the piece that can move any number of unoccupied squares in a direction parallel to the sides of the chessboard
+27882,castor-oil_plant castor_bean_plant palma_christi palma_christ Ricinus_communis,large shrub of tropical Africa and Asia having large palmate leaves and spiny capsules containing seeds that are the source of castor oil and ricin; widely naturalized throughout the tropics
+27883,castor_bean,the toxic seed of the castor-oil plant; source of castor oil
+27884,castor_oil,a purgative extracted from the seed of the castor-oil plant; used in paint and varnish as well as medically
+27885,castor_sugar caster_sugar,very finely granulated sugar that was formerly sprinkled from a castor
+27886,castration,surgical removal of the testes or ovaries (usually to inhibit hormone secretion in cases of breast cancer in women or prostate cancer in men); "bilateral castration results in sterilization"
+27887,castration emasculation,neutering a male animal by removing the testicles
+27888,castration_anxiety,(psychoanalysis) anxiety resulting from real or imagined threats to your sexual functions; originally applied only to men but can in principle apply to women
+27889,castrato,a male singer who was castrated before puberty and retains a soprano or alto voice
+27890,casualness familiarity,a casual manner
+27891,casualty,someone injured or killed or captured or missing in a military engagement
+27892,casualty,a decrease of military personnel or equipment
+27893,casualty injured_party,someone injured or killed in an accident
+27894,casuarina,any of various trees and shrubs of the genus Casuarina having jointed stems and whorls of scalelike leaves; some yield heavy hardwood
+27895,casuist sophist,someone whose reasoning is subtle and often specious
+27896,casuistry,argumentation that is specious or excessively subtle and intended to be misleading
+27897,casuistry,moral philosophy based on the application of general ethical principles to resolve moral dilemmas
+27898,casus_belli,an event used to justify starting a war
+27899,cat,a spiteful woman gossip; "what a cat she is!"
+27900,cat true_cat,feline mammal usually having thick soft fur and no ability to roar: domestic cats; wildcats
+27901,cat's-claw catclaw black_bead Pithecellobium_unguis-cati,erect shrub with small if any spines having racemes of white to yellow flowers followed by curved pointed pods and black shiny seeds; West Indies and Florida
+27902,cat's-ear,any of several plants of the genus Calochortus having flowers with petals shaped like cat's ears
+27903,cat's-ear California_dandelion capeweed gosmore Hypochaeris_radicata,European weed widely naturalized in North America having yellow flower heads and leaves resembling a cat's ears
+27904,cat's-paw,a hitch in the middle of rope that has two eyes into which tackle can be hooked
+27905,cat's-tail bullrush bulrush nailrod reed_mace reedmace Typha_latifolia,tall marsh plant with cylindrical seed heads that explode when mature shedding large quantities of down; its long flat leaves are used for making mats and chair seats; of North America, Europe, Asia and North Africa
+27906,cat's_cradle,a game played with string looped over the fingers
+27907,cat's_eye,any of various gems (as chrysoberyl or chalcedony) that reflect light when cut in a rounded shape
+27908,cat's_foot cat's_feet pussytoes Antennaria_dioica,low-growing perennial herb having leaves with whitish down and clusters of small white flowers
+27909,cat-o'-nine-tails cat,a whip with nine knotted cords; "British sailors feared the cat"
+27910,cat_and_mouse cat_and_rat,a game for children in which the players form a circle and join hands; they raise their hands to let a player inside the circle or lower their hands to bar a second player who is chasing the first
+27911,cat_box,a receptacle for cat excrement
+27912,cat_fancier,a person who breeds and cares for cats
+27913,cat_flea Ctenocephalides_felis,flea that breeds chiefly on cats and dogs and rats
+27914,cat_food,food prepared for cats
+27915,cat_rig,rig of a catboat
+27916,cat_scratch_disease,a disease thought to be transmitted to humans by a scratch from a cat
+27917,cat_shark,small bottom-dwelling sharks with cat-like eyes; found along continental slopes
+27918,cat_thyme marum Teucrium_marum,Mediterranean germander having small hairy leaves and reddish purple flowers; attractive to cats
+27919,catabiosis,normal aging of cells
+27920,catabolism katabolism dissimilation destructive_metabolism,breakdown in living organisms of more complex substances into simpler ones together with release of energy
+27921,catachresis,strained or paradoxical use of words either in error (as `blatant' to mean `flagrant') or deliberately (as in a mixed metaphor: `blind mouths')
+27922,catacomb,an underground tunnel with recesses where bodies were buried (as in ancient Rome)
+27923,catafalque,a decorated bier on which a coffin rests in state during a funeral
+27924,catalase,enzyme found in most plant and animal cells that functions as an oxidative catalyst; decomposes hydrogen peroxide into oxygen and water
+27925,catalectic,(prosody) a line of verse that lacks a syllable in the last metrical foot
+27926,catalepsy,a trancelike state with loss of voluntary motion and failure to react to stimuli
+27927,cataleptic,a person suffering from catalepsy
+27928,catalexis,the absence of a syllable in the last foot of a line or verse
+27929,catalog catalogue,a complete list of things; usually arranged systematically; "it does not pretend to be a catalog of his achievements"
+27930,catalog catalogue,a book or pamphlet containing an enumeration of things; "he found it in the Sears catalog"
+27931,cataloged_procedure,a set of control statements that have been placed in a library and can be retrieved by name
+27932,cataloger cataloguer,a librarian who classifies publications according to a categorial system
+27933,catalpa Indian_bean,tree of the genus Catalpa with large leaves and white flowers followed by long slender pods
+27934,catalufa Priacanthus_arenatus,brightly colored carnivorous fish of western Atlantic and West Indies waters
+27935,catalysis contact_action,acceleration of a chemical reaction induced the presence of material that is chemically unchanged at the end of the reaction; "of the top 50 commodity chemicals, 30 are created directly by catalysis and another 6 are made from raw materials that are catalytically produced"
+27936,catalyst,something that causes an important event to happen; "the invasion acted as a catalyst to unite the country"
+27937,catalyst accelerator,(chemistry) a substance that initiates or accelerates a chemical reaction without itself being affected
+27938,catalytic_converter,a converter that uses a platinum-iridium catalyst to oxidize pollutants and carbon monoxide into carbon dioxide and water; an antipollution device on an automotive exhaust system
+27939,catalytic_cracker cat_cracker,a chemical reactor for converting oils with high boiling points into fuels with lower boiling points in the presence of a catalyst
+27940,catamaran,a boat with two parallel hulls held together by single deck
+27941,catamite,a boy who submits to a sexual relationship with a man
+27942,catananche,any of several plants of the genus Catananche having long-stalked heads of blue or yellow flowers
+27943,cataphasia,a speech disorder in which the same word is repeated several times in succession
+27944,cataphatism,the religious belief that God has given enough clues to be known to humans positively and affirmatively (e.g., God created Adam `in his own image')
+27945,cataphyll,a reduced or scarcely developed leaf at the start of a plant's life (i.e., cotyledons) or in the early stages of leaf development
+27946,cataplasia,(biology) degenerative reversion of cells or tissue to a less differentiated or more primitive form
+27947,catapult arbalest arbalist ballista bricole mangonel onager trebuchet trebucket,an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles
+27948,catapult launcher,a device that launches aircraft from a warship
+27949,cataract,an eye disease that involves the clouding or opacification of the natural lens of the eye
+27950,cataract,a large waterfall; violent rush of water over a precipice
+27951,cataract_surgery,eye surgery that involves removing all or part of the lens and replacing it with an intraocular lens implant
+27952,catarrh,inflammation of the nose and throat with increased production of mucus
+27953,catarrhal_fever,any of several disease of livestock marked by fever and edema of the respiratory tract
+27954,catastrophe cataclysm,a sudden violent change in the earth's surface
+27955,catastrophe disaster,a state of extreme (usually irremediable) ruin and misfortune; "lack of funds has resulted in a catastrophe for our school system"; "his policies were a disaster"
+27956,catastrophic_illness,severe illness requiring prolonged hospitalization or recovery; usually involves high costs for hospitals and doctors and medicines
+27957,catatonia,extreme tonus; muscular rigidity; a common symptom in catatonic schizophrenia
+27958,catatonic_schizophrenia catatonic_type_schizophrenia catatonia,a form of schizophrenia characterized by a tendency to remain in a fixed stuporous state for long periods; the catatonia may give way to short periods of extreme excitement
+27959,catbird grey_catbird gray_catbird Dumetella_carolinensis,North American songbird whose call resembles a cat's mewing
+27960,catboat,a sailboat with a single mast set far forward
+27961,catcall,a cry expressing disapproval
+27962,catch,anything that is caught (especially if it is worth catching); "he shared his catch with the others"
+27963,catch,a break or check in the voice (usually a sign of strong emotion)
+27964,catch,a fastener that fastens or locks a door or window
+27965,catch,a cooperative game in which a ball is passed back and forth; "he played catch with his son in the backyard"
+27966,catch gimmick,a drawback or difficulty that is not readily evident; "it sounds good but what's the catch?"
+27967,catch grab snatch snap,the act of catching an object with the hands; "Mays made the catch with his back to the plate"; "he made a grab for the ball before it landed"; "Martin's snatch at the bridle failed and the horse raced away"; "the infielder's snap and throw was a single motion"
+27968,catch haul,the quantity that was caught; "the catch was only 10 fish"
+27969,catch match,a person regarded as a good matrimonial prospect
+27970,catch stop,a restraint that checks the motion of something; "he used a book as a stop to hold the door open"
+27971,catch_crop,a crop that grows quickly (e.g. lettuce) and can be planted between two regular crops grown in successive seasons or between two rows of crops in the same season
+27972,catchall,an enclosure or receptacle for odds and ends
+27973,catcher,the position on a baseball team of the player who is stationed behind home plate and who catches the balls that the pitcher throws; "a catcher needs a lot of protective equipment"; "a catcher plays behind the plate"
+27974,catcher backstop,(baseball) the person who plays the position of catcher
+27975,catcher's_mask,a mask to protect the face of the catcher in baseball
+27976,catching,(baseball) playing the position of catcher on a baseball team
+27977,catching contracting,becoming infected; "catching cold is sometimes unavoidable"; "the contracting of a serious illness can be financially catastrophic"
+27978,catchment,a structure in which water is collected (especially a natural drainage area)
+27979,catchphrase catch_phrase,a phrase that has become a catchword
+27980,catechesis,oral religious instruction (as before baptism or confirmation)
+27981,catechetical_instruction,teaching religious principles by questions and answers
+27982,catechin,a tannic acid that is extracted from black catechu as a white crystalline substance
+27983,catechism,a series of question put to an individual (such as a political candidate) to elicit their views
+27984,catechism,an elementary book summarizing the principles of a Christian religion; written as questions and answers
+27985,catechist,one who instructs catechumens in preparation for baptism (especially one using a catechism)
+27986,catecholamine,any of a group of chemicals including epinephrine and norepinephrine that are produced in the medulla of the adrenal gland
+27987,catechu Jerusalem_thorn Acacia_catechu,East Indian spiny tree having twice-pinnate leaves and yellow flowers followed by flat pods; source of black catechu
+27988,catechumen neophyte,a new convert being taught the principles of Christianity by a catechist
+27989,categorem categoreme,a categorematic expression; a term capable of standing alone as the subject or predicate of a logical proposition; "names are called categorems"
+27990,categorical_imperative,the moral principle that behavior should be determined by duty
+27991,categorization categorisation classification compartmentalization compartmentalisation assortment,the act of distributing things into classes or categories of the same type
+27992,category,a general concept that marks divisions or coordinations in a conceptual scheme
+27993,catena,a chain of connected ideas or passages or objects so arranged that each member is closely related to the preceding and following members (especially a series of patristic comments elucidating Christian dogma)
+27994,catenary,the curve theoretically assumed by a perfectly flexible and inextensible cord of uniform density and cross section hanging freely from two fixed points
+27995,caterer,someone who provides food and service (as for a party)
+27996,catering,providing food and services
+27997,caterpillar,a wormlike and often brightly colored and hairy or spiny larva of a butterfly or moth
+27998,caterwaul,the yowling sound made by a cat in heat
+27999,catfish mudcat,flesh of scaleless food fish of the southern United States; often farmed
+28000,catfish siluriform_fish,any of numerous mostly freshwater bottom-living fishes of Eurasia and North America with barbels like whiskers around the mouth
+28001,catgut goat's_rue wild_sweet_pea Tephrosia_virginiana,perennial subshrub of eastern North America having downy leaves yellowish and rose flowers and; source of rotenone
+28002,catgut gut,a strong cord made from the intestines of sheep and used in surgery
+28003,catharsis katharsis abreaction,(psychoanalysis) purging of emotional tensions
+28004,catharsis katharsis purgation,purging the body by the use of a cathartic to stimulate evacuation of the bowels
+28005,cathedra bishop's_throne,a throne that is the official chair of a bishop
+28006,cathedral,any large and important church
+28007,cathedral duomo,the principal Christian church building of a bishop's diocese
+28008,catherine_wheel pinwheel,a circular firework that spins round and round emitting colored fire
+28009,catheter,a thin flexible tube inserted into the body to permit introduction or withdrawal of fluids or to keep the passageway open
+28010,catheterization catheterisation,the operation of introducing a catheter into the body
+28011,cathexis charge,(psychoanalysis) the libidinal energy invested in some idea or person or object; "Freud thought of cathexis as a psychic analog of an electrical charge"
+28012,cathode,the positively charged terminal of a voltaic cell or storage battery that supplies current
+28013,cathode,a negatively charged electrode that is the source of electrons entering an electrical device
+28014,cathode-ray_tube CRT,a vacuum tube in which a hot cathode emits a beam of electrons that pass through a high voltage anode and are focused or deflected before hitting a phosphorescent screen
+28015,cathode_ray,a beam of electrons emitted by the cathode of an electrical discharge tube
+28016,cation,a positively charged ion
+28017,cationic_detergent invert_soap,a class of synthetic detergents in which the surface-active part of the molecule is the cation
+28018,catkin ament,a cylindrical spikelike inflorescence
+28019,catling,a long double-edged knife used for amputations
+28020,catmint catnip Nepeta_cataria,hairy aromatic perennial herb having whorls of small white purple-spotted flowers in a terminal spike; used in the past as a domestic remedy; strongly attractive to cats
+28021,catoptrics,branch of optics dealing with formation of images by mirrors
+28022,catostomid,a cypriniform fish of the family Catostomidae
+28023,catsup ketchup cetchup tomato_ketchup,thick spicy sauce made from tomatoes
+28024,catsup_bottle ketchup_bottle,a bottle that holds catsup
+28025,cattail,tall erect herbs with sword-shaped leaves; cosmopolitan in fresh and salt marshes
+28026,cattalo beefalo,hardy breed of cattle resulting from crossing domestic cattle with the American buffalo; yields leaner beef than conventional breeds
+28027,cattiness bitchiness spite spitefulness nastiness,malevolence by virtue of being malicious or spiteful or nasty
+28028,cattle cows kine oxen Bos_taurus,domesticated bovine animals as a group regardless of sex or age; "so many head of cattle"; "wait till the cows come home"; "seven thin and ill-favored kine"- Bible; "a team of oxen"
+28029,cattle_breeding,breeding cattle
+28030,cattle_cake,a concentrated feed for cattle; processed in the form of blocks or cakes
+28031,cattle_car,a freight car for transporting cattle
+28032,cattle_drive,driving a bovine herd (as cows or bulls or steers)
+28033,cattle_egret Bubulcus_ibis,small white egret widely distributed in warm regions often found around grazing animals
+28034,cattle_guard cattle_grid,a bridge over a ditch consisting of parallel metal bars that allow pedestrians and vehicles to pass, but not cattle
+28035,cattle_trail,a trail over which cattle were driven to market
+28036,cattleman cow_man beef_man,a man who raises (or tends) cattle
+28037,cattleship cattle_boat,a cargo ship for the transport of livestock
+28038,cattley_guava purple_strawberry_guava Psidium_cattleianum Psidium_littorale_longipes,small tropical shrubby tree bearing deep red oval fruit
+28039,cattleya,any orchid of the genus Cattleya characterized by a three-lobed lip enclosing the column; among the most popular and most extravagantly beautiful orchids known
+28040,catty cattie,any of various units of weight used in southeastern Asia (especially a Chinese measure equal to 500 grams)
+28041,catwalk,narrow platform extending out into an auditorium; "models displayed clothes on a catwalk at the fashion show"
+28042,catwalk,narrow pathway high in the air (as above a stage or between parts of a building or along a bridge)
+28043,caucus,a closed political meeting
+28044,cauda,any taillike structure
+28045,caudal_anesthesia caudal_anaesthesia caudal_block,regional anesthesia resulting from injection of an anesthetic into the caudal end of the spinal canal; now largely replaced by epidural anesthesia
+28046,caudal_appendage,tail especially of a mammal posterior to and above the anus
+28047,caudate_nucleus caudate,a tail-shaped basal ganglion located in a lateral ventricle of the brain
+28048,caudex,woody stem of palms and tree ferns
+28049,caul veil embryonic_membrane,the inner membrane of embryos in higher vertebrates (especially when covering the head at birth)
+28050,cauliflower,compact head of white undeveloped flowers
+28051,cauliflower Brassica_oleracea_botrytis,a plant having a large edible head of crowded white flower buds
+28052,cauliflower_ear,an auricle deformed by injury; common among boxers
+28053,caulk caulking,a waterproof filler and sealant that is used in building and repair to make watertight
+28054,causal_agent cause causal_agency,any entity that produces an effect or is responsible for events or results
+28055,causalgia,a burning pain in a limb along the course of a peripheral nerve; usually associated with skin changes
+28056,causality,the relation between causes and effects
+28057,cause,events that provide the generative force that is the origin of something; "they are trying to determine the cause of the crash"
+28058,cause reason grounds,a justification for something existing or happening; "he had no cause to complain"; "they had good reason to rejoice"
+28059,cause_celebre,an incident that attracts great public attention
+28060,cause_of_action,a claim sufficient to demand judicial attention; the facts that give rise to right of action
+28061,cause_of_death killer,the causal agent resulting in death; "heart disease is the biggest killer in the United States"
+28062,causeway,a road that is raised above water or marshland or sand
+28063,causing causation,the act of causing something to happen
+28064,caustic,any chemical substance that burns or destroys living tissue
+28065,cautery cauterant,an instrument or substance used to destroy tissue for medical reasons (eg removal of a wart) by burning it with a hot iron or an electric current or a caustic or by freezing it
+28066,cautery cauterization cauterisation,the act of coagulating blood and destroying tissue with a hot iron or caustic agent or by freezing
+28067,caution cautiousness carefulness,the trait of being cautious; being attentive to possible danger; "a man of caution"
+28068,caution caveat,a warning against certain acts; "a caveat against unfair practices"
+28069,caution precaution care forethought,judiciousness in avoiding harm or danger; "he exercised caution in opening the door"; "he handled the vase with care"
+28070,cautious_statement,a statement made with careful qualifications
+28071,cavalcade,a procession of people traveling on horseback
+28072,cavalier chevalier,a gallant or courtly gentleman
+28073,cavalier_hat slouch_hat,a soft felt hat with a wide flexible brim
+28074,cavalry,a highly mobile army unit
+28075,cavalry horse_cavalry horse,troops trained to fight on horseback; "500 horse led the attack"
+28076,cavalry_horse,horse trained for battle
+28077,cavalry_sword saber sabre,a stout sword with a curved blade and thick back
+28078,cavalryman trooper,a soldier in a motorized army unit
+28079,cavalryman trooper,a soldier mounted on horseback; "a cavalryman always takes good care of his mount"
+28080,cave,a geological formation consisting of an underground enclosure with access from the surface of the ground or from the sea
+28081,cave_in subsidence,the sudden collapse of something into a hollow beneath it
+28082,cave_myotis Myotis_velifer,small bat of southwest United States that lives in caves etc.
+28083,caveat,(law) a formal notice filed with a court or officer to suspend a proceeding until filer is given a hearing; "a caveat filed against the probate of a will"
+28084,caveat_emptor,a commercial principle that without a warranty the buyer takes upon himself the risk of quality
+28085,caveman cave_man cave_dweller troglodyte,someone who lives in a cave
+28086,cavern,any large dark enclosed space; "his eyes were dark caverns"
+28087,cavern,a large cave or a large chamber in a cave
+28088,cavernous_sinus sinus_cavernosus,either of a pair of large venous sinuses in the cranial cavity
+28089,cavetto,a concave molding shaped like a quarter circle in cross section
+28090,caviar caviare,salted roe of sturgeon or other large fish; usually served as an hors d'oeuvre
+28091,cavity bodily_cavity cavum,(anatomy) a natural hollow or sinus within the body
+28092,cavity caries dental_caries tooth_decay,soft decayed area in a tooth; progressive decay can lead to the death of a tooth
+28093,cavity enclosed_space,space that is surrounded by something
+28094,cavity_wall,a wall formed of two thicknesses of masonry with a space between them
+28095,cavy,short-tailed rough-haired South American rodent
+28096,caw,the sound made by corvine birds
+28097,cayenne cayenne_pepper,a long and often twisted hot red pepper
+28098,cayenne cayenne_pepper chili_pepper chilli_pepper long_pepper jalapeno Capsicum_annuum_longum,plant bearing very hot and finely tapering long peppers; usually red
+28099,cayenne cayenne_pepper red_pepper,ground pods and seeds of pungent red peppers of the genus Capsicum
+28100,cayuse Indian_pony,a small native range horse
+28101,cease,(`cease' is a noun only in the phrase `without cease') end
+28102,cecropia cecropia_moth Hyalophora_cecropia,North American silkworm moth; larvae feed on the leaves of forest trees
+28103,cecum caecum blind_gut,the cavity in which the large intestine begins and into which the ileum opens; "the appendix is an offshoot of the cecum"
+28104,cedar cedar_tree,any of numerous trees of the family Cupressaceae that resemble cedars
+28105,cedar cedar_tree true_cedar,any cedar of the genus Cedrus
+28106,cedar cedarwood,durable aromatic wood of any of numerous cedar trees; especially wood of the red cedar often used for cedar chests
+28107,cedar_chest,a chest made of cedar
+28108,cedar_elm Ulmus_crassifolia,elm of southern United States and Mexico having spreading pendulous corky branches
+28109,cedar_of_Lebanon Cedrus_libani,cedar of Lebanon and northwestern Syria that attains great age and height
+28110,cedar_waxwing cedarbird Bombycilla_cedrorun,widely distributed over temperate North America
+28111,cedi,the basic unit of money in Ghana
+28112,cedilla,a diacritical mark (,) placed below the letter c to indicate that it is pronounced as an s
+28113,cefadroxil Ultracef,a cephalosporin antibiotic (trade name Ultracef)
+28114,cefoperazone Cefobid,a parenteral cephalosporin (trade name Cefobid) used for severe infections
+28115,cefotaxime Claforan,a parenteral cephalosporin (trade name Claforan) used for severe infections of the lungs or throat or ears or urinary tract
+28116,ceftazidime Fortaz Tazicef,a parenteral cephalosporin (trade names Fortaz and Tazicef) used to treat moderate infections
+28117,ceftriaxone Rocephin,a parenteral cephalosporin (trade name Rocephin) used for severe infection of the lungs or throat or ears or urinary tract
+28118,cefuroxime Ceftin Zinacef,a cephalosporin that can be given parenterally (trade name Zinacef) or orally by tablets (trade name Ceftin); indicated for infections of the lungs or throat or ears or urinary tract or meninges
+28119,ceibo crybaby_tree cry-baby_tree common_coral_tree Erythrina_crista-galli,small South American spiny tree with dark crimson and scarlet flowers solitary or clustered
+28120,ceilidh,an informal social gathering at which there is Scottish or Irish folk music and singing and folk dancing and story telling
+28121,ceiling,maximum altitude at which a plane can fly (under specified conditions)
+28122,ceiling,(meteorology) altitude of the lowest layer of clouds
+28123,ceiling,the overhead upper surface of a covered space; "he hated painting the ceiling"
+28124,ceiling roof cap,an upper limit on what is allowed; "he put a ceiling on the number of women who worked for him"; "there was a roof on salaries"; "they established a cap for prices"
+28125,celandine greater_celandine swallowwort swallow_wort Chelidonium_majus,perennial herb with branched woody stock and bright yellow flowers
+28126,celandine_poppy wood_poppy Stylophorum_diphyllum,perennial herb native to woodland of the eastern United States having yellow flowers
+28127,celebrant,an officiating priest celebrating the Eucharist
+28128,celebrant celebrator celebrater,a person who is celebrating
+28129,celebration festivity,any joyous diversion
+28130,celebration jubilation,a joyful occasion for special festivities to mark some happy event
+28131,celebration solemnization solemnisation,the public performance of a sacrament or solemn ceremony with all appropriate ritual; "the celebration of marriage"
+28132,celebrity famous_person,a widely known person; "he was a baseball celebrity"
+28133,celecoxib Celebrex,a Cox-2 inhibitor (trade name Celebrex) that relieves pain and inflammation without harming the digestive tract
+28134,celeriac celery_root,thickened edible aromatic root of a variety of celery plant
+28135,celeriac celery_root knob_celery root_celery turnip-rooted_celery Apium_graveolens_rapaceum,grown for its thickened edible aromatic root
+28136,celerity quickness rapidity rapidness speediness,a rate that is rapid
+28137,celery,stalks eaten raw or cooked or used as seasoning
+28138,celery cultivated_celery Apium_graveolens_dulce,widely cultivated herb with aromatic leaf stalks that are eaten raw or cooked
+28139,celery_blight,a fungous leaf spot disease of the celery plant
+28140,celery_pine,Australasian evergreen conifer having a graceful head of foliage resembling celery that is composed of phyllodes borne in the axils of scalelike leaves
+28141,celery_salt,ground celery seed and salt
+28142,celery_seed,seed of the celery plant used as seasoning
+28143,celery_stick,celery stalks cut into small sticks
+28144,celery_top_pine celery-topped_pine Phyllocladus_asplenifolius,medium tall celery pine of Tasmania
+28145,celesta,a musical instrument consisting of graduated steel plates that are struck by hammers activated by a keyboard
+28146,celestial_body heavenly_body,natural objects visible in the sky
+28147,celestial_equator equinoctial_circle equinoctial_line equinoctial,the great circle on the celestial sphere midway between the celestial poles
+28148,celestial_globe,a globe that is a spherical model of the heavens
+28149,celestial_guidance,a method of controlling the flight of a missile or spacecraft by reference to the positions of celestial bodies
+28150,celestial_hierarchy,the collective body of angels
+28151,celestial_mechanics,the branch of astronomy concerned with the application of Newton's laws of motion to the motions of heavenly bodies
+28152,celestial_navigation astronavigation,navigating according to the positions of the stars
+28153,celestial_point,a point in the heavens (on the celestial sphere)
+28154,celestial_sphere sphere empyrean firmament heavens vault_of_heaven welkin,the apparent surface of the imaginary sphere on which celestial bodies appear to be projected
+28155,celestite,a mineral consisting of strontium sulphate
+28156,celiac_disease,a disorder in children and adults; inability to tolerate wheat protein (gluten); symptoms include foul-smelling diarrhea and emaciation; often accompanied by lactose intolerance
+28157,celiac_trunk celiac_artery truncus_celiacus arteria_celiaca,an artery that originates from the abdominal aorta just below the diaphragm and branches into the left gastric artery and the common hepatic artery and the splenic artery
+28158,celibacy,an unmarried status
+28159,celibate,an unmarried person who has taken a religious vow of chastity
+28160,celiocentesis,removal of fluid from the abdomen by centesis
+28161,celioma,an abdominal tumor
+28162,celioscopy,endoscopic examination of the abdomen through the abdominal wall
+28163,cell,any small compartment; "the cells of a honeycomb"
+28164,cell,(biology) the basic structural and functional unit of all organisms; they may exist as independent units of life (as in monads) or may form colonies or tissues as in higher plants and animals
+28165,cell cadre,a small unit serving as part of or as the nucleus of a larger political movement
+28166,cell cubicle,small room in which a monk or nun lives
+28167,cell electric_cell,a device that delivers an electric current as the result of a chemical reaction
+28168,cell jail_cell prison_cell,a room where a prisoner is kept
+28169,cell-mediated_immune_response,an immune response (chiefly against viral or fungal invasions or transplanted tissue) that involves T cells
+28170,cell_division cellular_division,the process in reproduction and growth by which a cell divides to form daughter cells
+28171,cell_membrane cytomembrane plasma_membrane,a thin membrane (a double layer of lipids) enclosing the cytoplasm of a cell; proteins in the membrane control passage of ions (like sodium or potassium or calcium) in and out of the cell; "all cells have a cell membrane"
+28172,cell_theory cell_doctrine,(biology) the theory that cells form the fundamental structural and functional units of all living organisms; proposed in 1838 by Matthias Schleiden and by Theodor Schwann
+28173,cell_wall,a rigid layer of polysaccharides enclosing the membrane of plant and prokaryotic cells; maintains the shape of the cell and serves as a protective barrier
+28174,cellar wine_cellar,storage space where wines are stored
+28175,cellarage,a charge for storing goods in a cellar
+28176,cellarage,a storage area in a cellar
+28177,cellblock ward,a division of a prison (usually consisting of several cells)
+28178,cellist violoncellist,someone who plays a violoncello
+28179,cello violoncello,a large stringed instrument; seated player holds it upright while playing
+28180,cellophane,a transparent paperlike product that is impervious to moisture and used to wrap candy or cigarettes etc.
+28181,cellular_slime_mold,differing from true slime molds in being cellular and nucleate throughout the life cycle
+28182,cellular_telephone cellular_phone cellphone cell mobile_phone,a hand-held mobile radiotelephone for use in an area divided into small sections, each with its own short-range transmitter/receiver
+28183,cellularity,the state of having cells
+28184,cellulite,lumpy deposits of body fat especially on women's thighs etc.
+28185,cellulitis,an inflammation of body tissue (especially that below the skin) characterized by fever and swelling and redness and pain
+28186,celluloid,highly flammable substance made from cellulose nitrate and camphor; used in e.g. motion-picture and X-ray film; its use has decreased with the development of nonflammable thermoplastics
+28187,cellulose,a polysaccharide that is the chief constituent of all plant tissues and fibers
+28188,cellulose_acetate,an ester of acetic acid; used in fibers and fabrics; photographic films and varnishes
+28189,cellulose_ester,any ester of cellulose with an acid
+28190,cellulose_nitrate nitrocellulose guncotton nitrocotton,a nitric acid ester; used in lacquers and explosives
+28191,cellulose_tape Scotch_tape Sellotape,transparent or semitransparent adhesive tape (trade names Scotch tape and Sellotape) used for sealing or attaching or mending
+28192,cellulose_triacetate triacetate,cellulose acetate that is relatively slow to burn; used instead of celluloid for motion-picture film
+28193,cellulose_xanthate viscose,a cellulose ester obtained by treating cellulose with caustic soda
+28194,cellulosic,a plastic made from cellulose (or a derivative of cellulose)
+28195,celom coelom celoma,a cavity in the mesoderm of an embryo that gives rise in humans to the pleural cavity and pericardial cavity and peritoneal cavity
+28196,celtuce,leaves having celery-like stems eaten raw or cooked
+28197,celtuce stem_lettuce Lactuca_sativa_asparagina,lettuce valued especially for its edible stems
+28198,cembra_nut cedar_nut,the seed of the Swiss pine
+28199,cement,any of various materials used by dentists to fill cavities in teeth
+28200,cement,concrete pavement is sometimes referred to as cement; "they stood on the grey cement beside the pool"
+28201,cement,a building material that is a powder made of a mixture of calcined limestone and clay; used with water and sand or gravel to make concrete and mortar
+28202,cement,something that hardens to act as adhesive material
+28203,cementite iron_carbide,a chemical compound that is a constituent of steel and cast iron; very hard and brittle
+28204,cementum cement,a specialized bony substance covering the root of a tooth
+28205,cemetery graveyard burial_site burial_ground burying_ground memorial_park necropolis,a tract of land used for burials
+28206,cenobite coenobite,a member of a religious order living in common
+28207,cenogenesis kenogenesis caenogenesis cainogenesis kainogenesis,introduction during embryonic development of characters or structure not present in the earlier evolutionary history of the strain or species (such as the addition of the placenta in mammalian evolution)
+28208,cenotaph empty_tomb,a monument built to honor people whose remains are interred elsewhere or whose remains cannot be recovered
+28209,censer thurible,a container for burning incense (especially one that is swung on a chain in a religious ritual)
+28210,censor,someone who censures or condemns
+28211,censor,a person who is authorized to read publications or correspondence or to watch theatrical performances and suppress in whole or in part anything considered obscene or politically unacceptable
+28212,censoring censorship,deleting parts of publications or correspondence or theatrical performances
+28213,censoring censorship security_review,counterintelligence achieved by banning or deleting any information of value to the enemy
+28214,censure animadversion,harsh criticism or disapproval
+28215,census nose_count nosecount,a periodic count of the population
+28216,census_taker enumerator,someone who collects census data by visiting individual homes
+28217,cent,a fractional monetary unit of several countries
+28218,centas,100 centas equal 1 litas in Lithuania
+28219,centaur,(classical mythology) a mythical being that is half man and half horse
+28220,centaury,any of various plants of the genus Centaurium
+28221,centaury,any plant of the genus Centaurea
+28222,centavo,a fractional monetary unit of several countries: El Salvador and Sao Tome and Principe and Brazil and Argentina and Bolivia and Colombia and Cuba and the Dominican Republic and Ecuador and El Salvador and Guatemala and Honduras and Mexico and Nicaragua and Peru and the Philippines and Portugal
+28223,centenarian,someone who is at least 100 years old
+28224,centennial centenary,the 100th anniversary (or the celebration of it)
+28225,center,(ice hockey) the person who plays center on a hockey team
+28226,center,(basketball) the person who plays center on a basketball team
+28227,center,the middle of a military or naval formation; "they had to reinforce the center"
+28228,center,politically moderate persons; centrists
+28229,center,the position on a hockey team of the player who participates in the face off at the beginning of the game
+28230,center,(American football) the position of the player on the line of scrimmage who puts the ball in play; "it is a center's responsibility to get the football to the quarterback"
+28231,center,a position on a basketball team of the player who participates in the jump that starts the game
+28232,center centre,a place where some particular activity is concentrated; "they received messages from several centers"
+28233,center centre,the sweet central portion of a piece of candy that is enclosed in chocolate or some other covering
+28234,center centre,a building dedicated to a particular activity; "they were raising money to build a new center for research"
+28235,center centre center_of_attention centre_of_attention,the object upon which interest and attention focuses; "his stories made him the center of the party"
+28236,center centre middle heart eye,an area that is approximately central within some larger region; "it is in the center of town"; "they ran forward into the heart of the struggle"; "they were in the eye of the storm"
+28237,center centre midpoint,a point equidistant from the ends of a line or the extremities of a figure
+28238,center centre nerve_center nerve_centre,a cluster of nerve cells governing a specific bodily process; "in most people the speech center is in the left hemisphere"
+28239,center snapper,(football) the person who plays center on the line of scrimmage and snaps the ball to the quarterback; "the center fumbled the handoff"
+28240,center_bit centre_bit,a bit with a sharp center point for guidance and two side cutters
+28241,center_field centerfield,the fielding position of the player on a baseball team who is expected to field balls in the central third of the outfield
+28242,center_field centerfield center,the piece of ground in the outfield directly ahead of the catcher; "he hit the ball to deep center"
+28243,center_fielder centerfielder,the person who plays center field
+28244,center_of_buoyancy centre_of_buoyancy center_of_immersion centre_of_immersion,(physics) the center of mass of the immersed part of ship or other floating object
+28245,center_of_curvature centre_of_curvature,the center of the circle of curvature
+28246,center_of_flotation centre_of_flotation,the center of gravity of a floating object
+28247,center_of_gravity centre_of_gravity,the point within something at which gravity can be considered to act; in uniform gravity it is equal to the center of mass
+28248,center_of_mass centre_of_mass,point representing the mean position of the matter in a body
+28249,center_punch,a tool with a conical point that is used to make indentations in metal (especially to mark points for drilling)
+28250,center_spread centre_spread,the spread at the center of a magazine
+28251,center_stage centre_stage,a position of prominence or importance
+28252,center_stage centre_stage,the central area on a theater stage
+28253,centerboard centreboard drop_keel sliding_keel,a retractable fin keel used on sailboats to prevent drifting to leeward
+28254,centerfold centrefold,a magazine center spread; especially a foldout of a large photograph or map or other feature
+28255,centering snap,(American football) putting the ball in play by passing it (between the legs) to a back; "the quarterback fumbled the snap"
+28256,centerline center_line,a line that bisects a plane figure
+28257,centerpiece centrepiece,the central or most important feature; "education was the centerpiece of the Democratic Party's political platform"
+28258,centerpiece centrepiece,something placed at the center of something else (as on a table)
+28259,centesimo,a fractional monetary unit of several countries: Panama and Italy and Uruguay and Chile
+28260,centesis,(surgery) the act of puncturing a body cavity or organ with a hollow needle in order to draw out fluid
+28261,centiliter centilitre cl,a metric unit of volume equal to one hundredth of a liter
+28262,centime,a fractional monetary unit of several countries: France and Algeria and Belgium and Burkina Faso and Burundi and Cameroon and Chad and the Congo and Gabon and Haiti and the Ivory Coast and Luxembourg and Mali and Morocco and Niger and Rwanda and Senegal and Switzerland and Togo
+28263,centimeter centimetre cm,a metric unit of length equal to one hundredth of a meter
+28264,centimo,a fractional monetary unit of Venezuela and Costa Rica and Equatorial Guinea and Paraguay and Spain
+28265,centipede,chiefly nocturnal predacious arthropod having a flattened body of 15 to 173 segments each with a pair of legs, the foremost pair being modified as prehensors
+28266,centner,in some European countries: a unit of weight equivalent to 50 kilograms
+28267,central telephone_exchange exchange,a workplace that serves as a telecommunications facility where lines from telephones can be connected together to permit communication
+28268,central_artery_of_the_retina arteria_centralis_retinae,a branch of the ophthalmic artery; enters the eyeball with the optic nerve
+28269,central_bank,a government monetary authority that issues currency and regulates the supply of credit and holds the reserves of other banks and sells new issues of securities for the government
+28270,central_chimpanzee Pan_troglodytes_troglodytes,black-faced chimpanzees of central Africa; closely related to eastern chimpanzees
+28271,central_gyrus,either of two gyri on either side of the central sulcus
+28272,central_heating,a heating system in which air or water is heated at a central furnace and sent through the building via vents or pipes and radiators
+28273,central_nervous_system CNS systema_nervosum_centrale,the portion of the vertebrate nervous system consisting of the brain and spinal cord
+28274,central_processing_unit CPU C.P.U. central_processor processor mainframe,(computer science) the part of a computer (a microprocessor chip) that does most of the data processing; "the CPU and the memory form the central part of a computer to which the peripherals are attached"
+28275,central_scotoma,a scotoma that involves the fixation point
+28276,central_vein_of_retina vena_centrales_retinae,vein formed by the union of the retinal veins; accompanies central arteries of the retina in the optic nerve
+28277,central_vein_of_suprarenal_gland vena_centralis_glandulae_suprarenalis,a single draining vein; on the right it empties into the inferior vena cava; on the left it empties into the left renal vein
+28278,central_veins_of_liver venae_centrales_hepatis,terminal branches of the hepatic veins that lie in the hepatic lobules and receive blood from the liver sinusoids
+28279,central_vision,vision using the fovea and parafovea; the middle part of the visual field
+28280,centralism,the political policy of concentrating power in a central organization
+28281,centrality,the property of being central
+28282,centralization centralisation,the act of consolidating power under a central control
+28283,centralization centralisation,gathering to a center
+28284,centrex,(CENTRal EXchange) a kind of telephone exchange
+28285,centrifugal_force,the outward force on a body moving in a curved path around another body
+28286,centrifugal_pump,a pump that use centrifugal force to discharge fluid into a pipe
+28287,centrifugation,the process of separating substances of different densities by the use of a centrifuge
+28288,centrifuge extractor separator,an apparatus that uses centrifugal force to separate particles from a suspension
+28289,centriole,one of a pair of small cylindrical cell organelles near the nucleus in animal cells; composed of nine triplet microtubules and form the asters during mitosis
+28290,centripetal_acceleration,the acceleration toward the center that holds a satellite in elliptical orbit
+28291,centripetal_force,the inward force on a body moving in a curved path around another body
+28292,centrism moderatism,a political philosophy of avoiding the extremes of left and right by taking a moderate position or course of action
+28293,centrist middle_of_the_roader moderate moderationist,a person who takes a position in the political center
+28294,centroid,the center of mass of an object of uniform density
+28295,centromere kinetochore,a specialized condensed region of each chromosome that appears during mitosis where the chromatids are held together to form an X shape; "the centromere is difficult to sequence"
+28296,centrosome central_body,small region of cytoplasm adjacent to the nucleus; contains the centrioles and serves to organize the microtubules
+28297,centrum,the main body of a vertebra
+28298,centurion,(ancient Rome) the leader of 100 soldiers
+28299,century,a period of 100 years
+28300,cephalexin Keflex Keflin Keftab,an oral cephalosporin (trade names Keflex and Keflin and Keftab) commonly prescribe for mild to moderately severe infections of the skin or ears or throat or lungs or urinary tract
+28301,cephalhematoma cephalohematoma,a collection of blood under the scalp of a newborn; caused by pressure during birth
+28302,cephalic_index breadth_index cranial_index,ratio (in percent) of the maximum breadth to the maximum length of a skull
+28303,cephalic_vein vena_cephalica,a large vein of the arm that empties into the axillary vein
+28304,cephalochordate,fish-like animals having a notochord rather than a true spinal column
+28305,cephaloglycin Kafocin,antibiotic related to cephalosporin but no longer in common use
+28306,cephalometry,measurement of human heads
+28307,cephalopod cephalopod_mollusk,marine mollusk characterized by well-developed head and eyes and sucker-bearing tentacles
+28308,cephaloridine,a broad spectrum semisynthetic antibiotic produced by modifying cephalosporin
+28309,cephalosporin Mefoxin,one of several broad spectrum antibiotic substances obtained from fungi and related to penicillin (trade names Mefoxin); addition of side chains has produced semisynthetic antibiotics with greater antibacterial activity
+28310,cephalothin,a semisynthetic analogue of cephalosporin
+28311,ceramic,an artifact made of hard brittle material produced from nonmetallic minerals by firing at high temperatures
+28312,ceramic_ware,utensils made from ceramic material
+28313,ceramics,the art of making and decorating pottery
+28314,ceras,one of the often brightly colored and branching hornlike structures on the back of the nudibranch (and other related mollusks) that serve as gills
+28315,cerate,a hard medicated paste made of lard or oil mixed with wax or resin
+28316,ceratodus,extinct lungfish
+28317,ceratopsian horned_dinosaur,any of several four-footed herbivorous dinosaurs with enormous beaked skulls; of the late Cretaceous in North America and Mongolia
+28318,ceratosaur ceratosaurus,primitive medium-sized theropod; swift-running bipedal carnivorous dinosaur having grasping hands with sharp claws and a short horn between the nostrils; Jurassic in North America
+28319,ceratozamia,a small cycad of the genus Ceratozamia having a short scaly woody trunk and fernlike foliage and woody cones; Mexico
+28320,cercaria,tadpole-shaped parasitic larva of a trematode worm; tail disappears in adult stage
+28321,cere,the fleshy, waxy covering at the base of the upper beak of some birds
+28322,cereal,a breakfast food prepared from grain
+28323,cereal cereal_grass,grass whose starchy grains are used as food: wheat; rice; rye; oats; maize; buckwheat; millet
+28324,cereal_bowl,a bowl for holding breakfast cereal
+28325,cereal_box,a paper box in which breakfast cereals are sold
+28326,cereal_oat Avena_sativa,widely cultivated in temperate regions for its edible grains
+28327,cerebellar_artery arteria_cerebelli,an artery that supplies the cerebellum
+28328,cerebellar_hemisphere,either of two lateral lobes of the cerebellum
+28329,cerebellar_vein vena_cerebellum,the veins draining the cerebellum
+28330,cerebellum,a major division of the vertebrate brain; situated above the medulla oblongata and beneath the cerebrum in humans
+28331,cerebral_aneurysm,an aneurysm of the carotid artery
+28332,cerebral_aqueduct Sylvian_aqueduct aqueductus_cerebri,a canal connecting the third and fourth ventricles
+28333,cerebral_artery arteria_cerebri,any of the arteries supplying blood to the cerebral cortex
+28334,cerebral_cortex cerebral_mantle pallium cortex,the layer of unmyelinated neurons (the grey matter) forming the cortex of the cerebrum
+28335,cerebral_edema brain_edema,swelling of the brain due to the uptake of water in the neuropile and white matter
+28336,cerebral_hemorrhage,bleeding from a ruptured blood vessel in the brain
+28337,cerebral_palsy spastic_paralysis,a loss or deficiency of motor control with involuntary spasms caused by permanent brain damage present at birth
+28338,cerebral_thrombosis,a blood clot in a cerebral artery or vein
+28339,cerebral_vein vena_cerebri,any of several veins serving the cerebral hemispheres of the brain
+28340,cerebrospinal_meningitis epidemic_meningitis brain_fever cerebrospinal_fever,meningitis caused by bacteria and often fatal
+28341,cerebrum,anterior portion of the brain consisting of two hemispheres; dominant part of the brain in humans
+28342,cerecloth,a waterproof waxed cloth once used as a shroud
+28343,ceremoniousness,a ceremonial manner
+28344,ceremony,the proper or conventional behavior on some solemn occasion; "an inaugural ceremony"
+28345,ceremony,any activity that is performed in an especially solemn elaborate or formal way; "the ceremony of smelling the cork and tasting the wine"; "he makes a ceremony of addressing his golf ball"; "he disposed of it without ceremony"
+28346,ceremony ceremonial ceremonial_occasion observance,a formal event performed on a special occasion; "a ceremony commemorating Pearl Harbor"
+28347,ceresin,a white wax extracted from ozokerite
+28348,ceriman Monstera_deliciosa,tropical American vine having roots that hang like cords and cylindrical fruit with a pineapple and banana flavor
+28349,ceriman monstera,tropical cylindrical fruit resembling a pinecone with pineapple-banana flavor
+28350,cerise cherry cherry_red,a red the color of ripe cherries
+28351,cerium Ce atomic_number_58,a ductile grey metallic element of the lanthanide series; used in lighter flints; the most abundant of the rare-earth group
+28352,cerivastatin Baycol,an oral drug (trade name Baycol) to reduce blood cholesterol levels
+28353,cero pintado kingfish Scomberomorus_regalis,large edible mackerel of temperate United States coastal Atlantic waters
+28354,cerotic_acid hexacosanoic_acid,a white solid fatty acid found in waxes (such as beeswax)
+28355,cert,an absolute certainty; "it's a dead cert"
+28356,certainty,the state of being certain; "his certainty reassured the others"
+28357,certainty sure_thing foregone_conclusion,something that is certain; "his victory is a certainty"
+28358,certificate certification credential credentials,a document attesting to the truth of certain stated facts
+28359,certificate_of_deposit CD,a debt instrument issued by a bank; usually pays interest
+28360,certificate_of_incorporation,state approval of the articles of incorporation of a corporation
+28361,certification enfranchisement,the act of certifying or bestowing a franchise on
+28362,certified_check certified_cheque,a check containing certification that the person who issued the check has sufficient funds on deposit to cover payment
+28363,certified_milk,milk from dairies regulated by an authorized medical milk commission
+28364,certified_public_accountant CPA,an accountant who has passed certain examinations and met all other statutory and licensing requirements of a United States state to be certified by that state; "in addition to accounting and auditing, CPAs also prepare tax returns for individuals and corporations"
+28365,certiorari writ_of_certiorari,a common law writ issued by a superior court to one of inferior jurisdiction demanding the record of a particular case
+28366,certitude cocksureness overconfidence,total certainty or greater certainty than circumstances warrant
+28367,cerulean_blue,light greenish-blue pigment consisting essentially of oxides of cobalt and tin
+28368,cerumen earwax,a soft yellow wax secreted by glands in the ear canal
+28369,cerussite white_lead_ore,a mineral consisting of lead carbonate that is an important source of lead
+28370,cervical_artery areteria_cervicalis,an artery that supplies the muscles of the neck
+28371,cervical_canal canalis_cervicis_uteri,a spindle-shaped canal extending from the uterus to the vagina
+28372,cervical_cap,a contraceptive device consisting of a small thimble-shaped cup that is placed over the uterine cervix to prevent the entrance of spermatozoa
+28373,cervical_disc_syndrome cervical_root_syndrome,an abnormal condition resulting from compression of spinal nerve roots in the neck region; involves neck pains and muscular weakness and paresthesia
+28374,cervical_glands cervical_glands_of_the_uterus glandulae_cervicales_uteri,mucus-secreting glands in the mucosa of the uterine cervix
+28375,cervical_nerve,any of eight pairs of spinal nerves emerging from the cervical section of the spinal cord
+28376,cervical_plexus plexus_cervicalis,a nerve plexus lying beneath the sternocleidomastoid muscle
+28377,cervical_smear Pap_smear Papanicolaou_smear,a sample of secretions and superficial cells of the uterine cervix and uterus; examined with a microscope to detect any abnormal cells
+28378,cervical_vein deep_cervical_vein vena_cervicalis_profunda,a vein that accompanies an artery of the same name
+28379,cervical_vertebra neck_bone,one of 7 vertebrae in the human spine located in the neck region
+28380,cervicitis,inflammation of the uterine cervix
+28381,cervicofacial_actinomycosis lumpy_jaw,the commonest and least severe form of actinomycosis; affects the face and neck regions
+28382,cervix uterine_cervix cervix_uteri,necklike opening to the uterus
+28383,cesarean_delivery caesarean_delivery caesarian_delivery cesarean_section cesarian_section caesarean_section caesarian_section C-section cesarean cesarian caesarean caesarian abdominal_delivery,the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)
+28384,cesium caesium Cs atomic_number_55,a soft silver-white ductile metallic element (liquid at normal temperatures); the most electropositive and alkaline metal
+28385,cesium_137,a radioactive isotope of cesium used in radiation therapy
+28386,cessation surcease,a stopping; "a cessation of the thunder"
+28387,cession ceding,the act of ceding
+28388,cesspool cesspit sink sump,a covered cistern; waste water and sewage flow into it
+28389,cetacean cetacean_mammal blower,large aquatic carnivorous mammal with fin-like forelimbs no hind limbs, including: whales; dolphins; porpoises; narwhals
+28390,cetrimide,a cationic detergent that is a powerful disinfectant
+28391,cgs cgs_system,system of measurement based on centimeters and grams and seconds
+28392,cha-cha cha-cha-cha,a modern ballroom dance from Latin America; small steps and swaying movements of the hips
+28393,chabazite chabasite,a group of minerals of the zeolite family consisting of a hydrous silicate of calcium and aluminum
+28394,chachalaca,slender arboreal guan resembling a wild turkey; native to Central America and Mexico; highly regarded as game birds
+28395,chachka tsatske tshatshke tchotchke,(Yiddish) an inexpensive showy trinket
+28396,chachka tsatske tshatshke tchotchke tchotchkeleh,(Yiddish) an attractive, unconventional woman
+28397,chacma chacma_baboon Papio_ursinus,greyish baboon of southern and eastern Africa
+28398,chad,a small piece of paper that is supposed to be removed when a hole is punched in a card or paper tape
+28399,chador chadar chaddar chuddar,a cloth used as a head covering (and veil and shawl) by Muslim and Hindu women
+28400,chaenactis,any of several United States plants having long stalks of funnel-shaped white or yellow flowers
+28401,chaeta,a stiff chitinous seta or bristle especially of an annelid worm
+28402,chaetodon,any fish of the genus Chaetodon
+28403,chafe,soreness and warmth caused by friction; "he had a nasty chafe on his knee"
+28404,chafeweed wood_cudweed Gnaphalium_sylvaticum,weedy perennial of north temperate regions having woolly foliage and dirty white flowers in a leafy spike
+28405,chaff,foil in thin strips; ejected into the air as a radar countermeasure
+28406,chaff husk shuck stalk straw stubble,material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds
+28407,chaffinch Fringilla_coelebs,small European finch with a cheerful song
+28408,chaffweed bastard_pimpernel false_pimpernel,weedy plant having short dry chafflike leaves
+28409,chafing,soreness or irritation of the skin caused by friction
+28410,chafing_dish,a metal pan over a heater; used to cook or to keep things warm at the table
+28411,chafing_gear,covering (usually rope or canvas) of a line or spar to protect it from friction
+28412,chagrin humiliation mortification,strong feelings of embarrassment
+28413,chain,a unit of length
+28414,chain,(business) a number of similar establishments (stores or restaurants or banks or hotels or theaters) under one ownership
+28415,chain,a linked or connected series of objects; "a chain of daisies"
+28416,chain,anything that acts as a restraint
+28417,chain,a series of (usually metal) rings or links fitted into one another to make a flexible ligament
+28418,chain chemical_chain,(chemistry) a series of linked atoms (generally in an organic molecule)
+28419,chain concatenation,a series of things depending on each other as if linked together; "the chain of command"; "a complicated concatenation of circumstances"
+28420,chain string strand,a necklace made by stringing objects together; "a string of beads"; "a strand of pearls"
+28421,chain-smoker,a heavy smoker (usually of cigarettes) who lights one off of another
+28422,chain_fern,a fern of the genus Woodwardia having the sori in chainlike rows
+28423,chain_gang,a gang of convicts chained together
+28424,chain_letter,a letter that is sent successively to several people
+28425,chain_mail ring_mail mail chain_armor chain_armour ring_armor ring_armour,(Middle Ages) flexible armor made of interlinked metal rings
+28426,chain_pickerel chain_pike Esox_niger,common in quiet waters of eastern United States
+28427,chain_printer,an impact printer that carries the type slugs by links of a revolving chain
+28428,chain_reaction,a self-sustaining nuclear reaction; a series of nuclear fissions in which neutrons released by splitting one atom leads to the splitting of others
+28429,chain_reaction,a series of chemical reactions in which the product of one is a reactant in the next
+28430,chain_saw chainsaw,portable power saw; teeth linked to form an endless chain
+28431,chain_stitch,the most basic of all crochet stitches made by pulling a loop of yarn through another loop
+28432,chain_stitch,a looped stitch resembling the links of a chain; used in embroidery and in sewing
+28433,chain_store,one of a chain of retail stores under the same management and selling the same merchandise
+28434,chain_tongs,a pipe wrench used for turning large pipes; an adjustable chain circles the pipe with its ends connected to the head whose teeth engage the pipe
+28435,chain_wrench,another name for chain tongs
+28436,chainlink_fence,a fence of steel wires woven into a diamond pattern
+28437,chair,a particular seat in an orchestra; "he is second chair violin"
+28438,chair,a seat for one person, with a support for the back; "he put his coat over the back of the chair and sat down"
+28439,chair_of_state,a ceremonial chair for an exalted or powerful person
+28440,chairlift chair_lift,a ski lift on which riders (skiers or sightseers) are seated and carried up or down a mountainside; seats are hung from an endless overhead cable
+28441,chairman_of_the_board,the chairman of the board of directors of a corporation
+28442,chairmanship,the position of chairman
+28443,chaise shay,a carriage consisting of two wheels and a calash top; drawn by a single horse
+28444,chaise_longue chaise daybed,a long chair; for reclining
+28445,chaja Chauna_torquata,largest crested screamer; native to southern Brazil and Argentina
+28446,chalaza,basal part of a plant ovule opposite the micropyle; where integument and nucellus are joined
+28447,chalaza,one of two spiral bands of tissue connecting the egg yolk to the enclosing membrane at either end of the shell
+28448,chalazion Meibomian_cyst,a small sebaceous cyst of the eyelid resulting when a Meibomian gland is blocked
+28449,chalcedony calcedony,a milky or greyish translucent to transparent quartz
+28450,chalcid_fly chalcidfly chalcid chalcid_wasp,any of various tiny insects whose larvae are parasites on eggs and larvae of other insects; many are beneficial in destroying injurious insects
+28451,chalcis_fly,a variety of chalcid fly
+28452,chalcocite copper_glance,a heavy grey mineral that is an ore of copper
+28453,chalcopyrite copper_pyrites,a yellow copper ore (CuFeS2) made up of copper and iron sulfide
+28454,chaldron,a British imperial capacity measure (liquid or dry) equal to 36 bushels
+28455,chalet,a Swiss house with a sloping roof and wide eaves or a house built in this style
+28456,chalice goblet,a bowl-shaped drinking vessel; especially the Eucharistic cup
+28457,chalice_vine trumpet_flower cupflower Solandra_guttata,Mexican evergreen climbing plant having large solitary funnel-shaped fragrant yellow flowers with purple-brown ridges in the throat
+28458,chalk,a soft whitish calcite
+28459,chalk,a pure flat white with little reflectance
+28460,chalk,a piece of calcite or a similar substance, usually in the shape of a crayon, that is used to write or draw on blackboards or other flat surfaces
+28461,chalk_dust,dust resulting from writing with a piece of chalk; "chalk dust covered the teacher's hands"
+28462,chalk_line snap_line snapline,a chalked string used in the building trades to make a straight line on a vertical surface
+28463,chalk_talk,a talk that uses a blackboard and chalk
+28464,chalkpit chalk_pit,a quarry for chalk
+28465,challah hallah,(Judaism) a loaf of white bread containing eggs and leavened with yeast; often formed into braided loaves and glazed with eggs before baking
+28466,challenge,a demanding or stimulating situation; "they reacted irrationally to the challenge of Russian power"
+28467,challenge,a call to engage in a contest or fight
+28468,challenge,a formal objection to the selection of a particular person as a juror
+28469,challenge,questioning a statement and demanding an explanation; "his challenge of the assumption that Japan is still our enemy"
+28470,challenge,a demand by a sentry for a password or identification
+28471,challis,a soft lightweight fabric (usually printed)
+28472,chamber,a deliberative or legislative or administrative or judicial assembly; "the upper chamber is the senate"
+28473,chamber,an enclosed volume in the body; "the chambers of his heart were healthy"
+28474,chamber,a room where a judge transacts business
+28475,chamber,a natural or artificial enclosed space
+28476,chamber_music,serious music performed by a small group of musicians
+28477,chamber_of_commerce,an association of businessmen to protect and promote business interests
+28478,chamber_orchestra,small orchestra; usually plays classical music
+28479,chambered_nautilus pearly_nautilus nautilus,cephalopod of the Indian and Pacific oceans having a spiral shell with pale pearly partitions
+28480,chamberlain,the treasurer of a municipal corporation
+28481,chamberlain,an officer who manages the household of a king or nobleman
+28482,chambermaid fille_de_chambre,a maid who is employed to clean and care for bedrooms (now primarily in hotels)
+28483,chamberpot potty thunder_mug,a receptacle for urination or defecation in the bedroom
+28484,chambray,a lightweight fabric woven with white threads across a colored warp
+28485,chameleon,a changeable or inconstant person
+28486,chameleon chamaeleon,lizard of Africa and Madagascar able to change skin color and having a projectile tongue
+28487,chameleon_tree_frog,a form of tree toad
+28488,chamfer_bit,a bit that is used for beveling
+28489,chamfer_plane,a plane that makes a beveled edge
+28490,chamois Rupicapra_rupicapra,hoofed mammal of mountains of Eurasia having upright horns with backward-hooked tips
+28491,chamois chamois_leather chammy chammy_leather shammy shammy_leather,a soft suede leather formerly from the skin of the chamois antelope but now from sheepskin
+28492,chamois_cloth,a piece of chamois used for washing windows or cars
+28493,chamois_cress Pritzelago_alpina Lepidium_alpina,small tufted perennial herb of mountains of central and southern Europe having very small flowers of usually leafless stems; sometimes placed in genus Lepidium
+28494,chamomile camomile Chamaemelum_nobilis Anthemis_nobilis,Eurasian plant with apple-scented foliage and white-rayed flowers and feathery leaves used medicinally; in some classification systems placed in genus Anthemis
+28495,chamosite,a greenish grey or black silicate of iron and aluminum
+28496,champagne bubbly,a white sparkling wine either produced in Champagne or resembling that produced there
+28497,champagne_cup,a punch containing a sparkling wine
+28498,champerty,an unethical agreement between an attorney and client that the attorney would sue and pay the costs of the client's suit in return for a portion of the damages awarded; "soliciting personal injury cases may constitute champerty"
+28499,champion champ title-holder,someone who has won first place in a competition
+28500,champion fighter hero paladin,someone who fights for a cause
+28501,championship,a competition at which a champion is chosen
+28502,championship title,the status of being a champion; "he held the title for two years"
+28503,chanar chanal Geoffroea_decorticans,thorny shrub or small tree common in central Argentina having small orange or yellow flowers followed by edible berries
+28504,chance,a risk involving danger; "you take a chance when you let her drive"
+28505,chance-medley,an unpremeditated killing of a human being in self defense
+28506,chancel sanctuary bema,area around the altar of a church for the clergy and choir; often enclosed by a lattice or railing
+28507,chancellery,a government building housing the office of a chancellor
+28508,chancellor,the honorary or titular head of a university
+28509,chancellor premier prime_minister,the person who is head of government (in several countries)
+28510,chancellorship,the office of chancellor
+28511,chancery,an office of archives for public or ecclesiastic records; a court of public records
+28512,chancery court_of_chancery,a court with jurisdiction in equity
+28513,chancre,a small hard painless nodule at the site of entry of a pathogen (as syphilis)
+28514,chancroid,infectious venereal ulcer
+28515,chandelier pendant pendent,branched lighting fixture; often ornate; hangs from the ceiling
+28516,chandelle,a flight maneuver consisting of a steep climbing turn executed to gain altitude while changing direction
+28517,chandler,a retail dealer in provisions and supplies
+28518,chandler,a maker (and seller) of candles and soap and oils and paints
+28519,chandlery,candles and other commodities sold by a chandler
+28520,chandlery,a storeroom where candles are kept
+28521,chanfron chamfron testiere frontstall front-stall,medieval plate armor to protect a horse's head
+28522,change,a relational difference between states; especially between states before and after some event; "he attributed the change to their marriage"
+28523,change,coins of small denomination regarded collectively; "he had a pocketful of change"
+28524,change,the balance of money received when the amount you tender is greater than the amount due; "I paid with a twenty and pocketed the change"
+28525,change,money received in return for its equivalent in a larger denomination or a different currency; "he got change for a twenty and used it to pay the taxi driver"
+28526,change,the result of alteration or modification; "there were marked changes in the lining of the lungs"; "there had been no change in the mountains"
+28527,change,a thing that is different; "he inspected several changes before selecting one"
+28528,change,a different or fresh set of clothes; "she brought a change in her overnight bag"
+28529,change,the action of changing something; "the change of government had no impact on the economy"; "his change on abortion cost him the election"
+28530,change alteration modification,an event that occurs when something passes from one state or phase to another; "the change was intended to increase sales"; "this storm is certainly a change for the worse"; "the neighborhood had undergone few modifications since his last visit years ago"
+28531,change-up change-of-pace change-of-pace_ball off-speed_pitch,a baseball thrown with little velocity when the batter is expecting a fastball
+28532,change_of_color,an act that changes the light that something reflects
+28533,change_of_course,a change in the direction that you are moving
+28534,change_of_direction reorientation,the act of changing the direction in which something is oriented
+28535,change_of_integrity,the act of changing the unity or wholeness of something
+28536,change_of_location travel,a movement through space that changes the location of something
+28537,change_of_magnitude,the act of changing the amount or size of something
+28538,change_of_shape,an action that changes the shape of something
+28539,change_of_state,the act of changing something into something different in essential characteristics
+28540,change_ringing,ringing tuned bells in a fixed order that is continually changing
+28541,changeableness changeability,the quality of being changeable; having a marked tendency to change; "the changeableness of the weather"
+28542,changelessness,the property of remaining unchanged
+28543,changelessness unchangeability unchangeableness unchangingness,the quality of being unchangeable; having a marked tendency to remain unchanged
+28544,changeling,a child secretly exchanged for another in infancy
+28545,changer modifier,a person who changes something; "an inveterate changer of the menu"
+28546,channel,a deep and relatively narrow body of water (as in a river or a harbor or a strait linking two larger bodies) that allows the best passage for vessels; "the ship went aground in the channel"
+28547,channel,a passage for water (or other fluids) to flow through; "the fields were crossed with irrigation channels"; "gutters carried off the rainwater into a series of channels under the street"
+28548,channel communication_channel line,(often plural) a means of communication or access; "it must go through official channels"; "lines of communication were set up between the two firms"
+28549,channel television_channel TV_channel,a television station and its programs; "a satellite TV channel"; "surfing through the channels"; "they offer more than one hundred channels"
+28550,channel transmission_channel,a path over which electrical signals can pass; "a channel is typically what you rent from a telephone company"
+28551,channel_capacity,the maximum data rate that can be attained over a given channel
+28552,channel_catfish channel_cat Ictalurus_punctatus,freshwater food fish common throughout central United States
+28553,channelization channelisation canalization canalisation,management through specified channels of communication
+28554,channels,official routes of communication; "you have to go through channels"
+28555,chanson_de_geste,Old French epic poems
+28556,chant,a repetitive song in which as many syllables as necessary are assigned to a single tone
+28557,chanter melody_pipe,reed pipe with finger holes on which the melody is played
+28558,chanterelle chantarelle Cantharellus_cibarius,widely distributed edible mushroom rich yellow in color with a smooth cap and a pleasant apricot aroma
+28559,chantey chanty sea_chantey shanty,a rhythmical work song originally sung by sailors
+28560,chantry,an endowment for the singing of Masses
+28561,chantry,a chapel endowed for singing Masses for the soul of the donor
+28562,chaos,the formless and disordered state of matter before the creation of the cosmos
+28563,chaos,(physics) a dynamical system that is extremely sensitive to its initial conditions
+28564,chaos pandemonium bedlam topsy-turvydom topsy-turvyness,a state of extreme confusion and disorder
+28565,chap,a crack in a lip caused usually by cold
+28566,chap,(usually in the plural) leather leggings without a seat; joined by a belt; often have flared outer flaps; worn over trousers by cowboys to protect their legs
+28567,chap fellow feller fella lad gent blighter cuss bloke,a boy or man; "that chap is your host"; "there's a fellow at the door"; "he's a likable cuss"; "he's a good bloke"
+28568,chaparral_mallow Malacothamnus_fasciculatus Sphaeralcea_fasciculata,shrub of coastal ranges of California and Baja California having hairy branches and spikes of numerous mauve flowers; sometimes placed in genus Sphaeralcea
+28569,chaparral_pea stingaree-bush Pickeringia_montana,spiny evergreen xerophytic shrub having showy rose and purple flowers and forming dense thickets; of dry rocky mountain slopes of California
+28570,chapatti chapati,flat pancake-like bread cooked on a griddle
+28571,chapel,a place of worship that has its own altar
+28572,chapel_service chapel,a service conducted in a place of worship that has its own altar; "he was late for chapel"
+28573,chaperon chaperone,one who accompanies and supervises a young woman or gatherings of young people
+28574,chaplain,a clergyman ministering to some institution
+28575,chaplaincy chaplainship,the position of chaplain
+28576,chapman,archaic term for an itinerant peddler
+28577,chapter,any distinct period in history or in a person's life; "the industrial revolution opened a new chapter in British history"; "the divorce was an ugly chapter in their relationship"
+28578,chapter,an ecclesiastical assembly of the monks in a monastery or even of the canons of a church
+28579,chapter,a local branch of some fraternity or association; "he joined the Atlanta chapter"
+28580,chapter,a series of related events forming an episode; "a chapter of disasters"
+28581,chapter,a subdivision of a written work; usually numbered and titled; "he read a chapter every night before falling asleep"
+28582,chapterhouse,a building attached to a monastery or cathedral; used as a meeting place for the chapter
+28583,chapterhouse fraternity_house frat_house,a house used as a residence by a chapter of a fraternity
+28584,char,a charred substance
+28585,char charr,any of several small trout-like fish of the genus Salvelinus
+28586,characin characin_fish characid,any freshwater fish of the family Characinidae
+28587,character,good repute; "he is a man of character"
+28588,character,(genetics) an attribute (structural or functional) that is determined by a gene or group of genes
+28589,character eccentric type case,a person of a specified kind (usually with many eccentricities); "a real character"; "a strange character"; "a friendly eccentric"; "the capable type"; "a mental case"
+28590,character fiber fibre,the inherent complex of attributes that determines a persons moral and ethical actions and reactions; "education has for its object the formation of character"- Herbert Spencer
+28591,character graph grapheme graphic_symbol,a written symbol that is used to represent speech; "the Greek alphabet has 24 characters"
+28592,character reference character_reference,a formal recommendation by a former employer to a potential future employer describing the person's qualifications and dependability; "requests for character references are all too often answered evasively"
+28593,character role theatrical_role part persona,an actor's portrayal of someone in a play; "she played the part of Desdemona"
+28594,character_actor,an actor who specializes in playing supporting roles
+28595,character_assassination assassination blackwash,an attack intended to ruin someone's reputation
+28596,character_printer character-at-a-time_printer serial_printer,a printer that prints a single character at a time
+28597,character_set,an ordered list of characters that are used together in writing or printing
+28598,character_witness,a witness who testifies under oath as to the good reputation of another person in the community where that person lives
+28599,characteristic,the integer part (positive or negative) of the representation of a logarithm; in the expression log 643 = 2.808 the characteristic is 2
+28600,characteristic,a distinguishing quality
+28601,characteristic device_characteristic,any measurable property of a device measured under closely specified conditions
+28602,characteristic_curve characterisic_function,(electronics) graph showing how a particular characteristic of a device varies with other parameters
+28603,characterization characterisation,the act of describing distinctive characteristics or essential features; "the media's characterization of Al Gore as a nerd"
+28604,charade,a word acted out in an episode of the game of charades
+28605,charades,guessing game in which one player pantomimes a word or phrase for others to guess
+28606,charcoal,a drawing made with a stick of black carbon material
+28607,charcoal charcoal_grey charcoal_gray oxford_grey oxford_gray,a very dark grey color
+28608,charcoal fusain,a stick of black carbon material used for drawing
+28609,charcoal wood_coal,a carbonaceous material obtained by heating wood or other organic matter in the absence of air
+28610,charcoal_burner,a worker whose job is to make charcoal
+28611,charcoal_burner,a stove that burns charcoal as fuel
+28612,charcuterie,a delicatessen that specializes in meats
+28613,chard Swiss_chard spinach_beet leaf_beet,long succulent whitish stalks with large green leaves
+28614,chard Swiss_chard spinach_beet leaf_beet chard_plant Beta_vulgaris_cicla,beet lacking swollen root; grown as a vegetable for its edible leaves and stalks
+28615,charge,financial liabilities (such as a tax); "the charges against the estate"
+28616,charge,the price charged for some article or service; "the admission charge"
+28617,charge,a person committed to your care; "the teacher led her charges across the street"
+28618,charge,an impetuous rush toward someone or something; "the wrestler's charge carried him past his adversary"; "the battle began with a cavalry charge"
+28619,charge bearing heraldic_bearing armorial_bearing,heraldry consisting of a design or image depicted on a shield
+28620,charge billing,request for payment of a debt; "they submitted their charges at the end of each month"
+28621,charge burster bursting_charge explosive_charge,a quantity of explosive to be set off at one time; "this cartridge has a powder charge of 50 grains"
+28622,charge complaint,(criminal law) a pleading describing some wrong or offense; "he was arrested on a charge of larceny"
+28623,charge electric_charge,the quantity of unbalanced electricity in a body (either positive or negative) and construed as an excess or deficiency of electrons; "the battery needed a fresh charge"
+28624,charge-exchange_accelerator,an accelerator in which high-energy ions escape from plasma following charge exchange
+28625,charge_d'affaires,the official temporarily in charge of a diplomatic mission in the absence of the ambassador
+28626,charge_of_quarters,an enlisted man who handles his unit's administrative matters after hours
+28627,charge_unit quantity_unit,a measure of the quantity of electricity (determined by the amount of an electric current and the time for which it flows)
+28628,charger battery_charger,a device that can hold a rechargeable battery by means of an electrical cable
+28629,charger courser,formerly a strong swift horse ridden into battle
+28630,chariot,a two-wheeled horse-drawn battle vehicle; used in war and races in ancient Egypt and Greece and Rome
+28631,chariot,a light four-wheel horse-drawn ceremonial carriage
+28632,chariot_race,a race between ancient chariots
+28633,charioteer,the driver of a chariot
+28634,charisma personal_appeal personal_magnetism,a personal attractiveness or interestingness that enables you to influence others
+28635,charitable_trust public_trust,a trust created for charitable or religious or educational or scientific purposes
+28636,charitableness,generosity as manifested by practicing charity (as for the poor or unfortunate)
+28637,charity,a foundation created to promote the public good (not for assistance to any particular individuals)
+28638,charity,an institution set up to provide help to the needy
+28639,charity,an activity or gift that benefits the public at large
+28640,charity brotherly_love,a kindly and lenient attitude toward people
+28641,charlatanism quackery,the dishonesty of a charlatan
+28642,charley_horse charley-horse,a muscular cramp (especially in the thigh or calf) following vigorous exercise
+28643,charlotte,a mold lined with cake or crumbs and filled with fruit or whipped cream or custard
+28644,charlotte_russe,lady fingers enclosing Bavarian cream
+28645,charm,(physics) one of the six flavors of quark
+28646,charm good_luck_charm,something believed to bring good luck
+28647,charm_campaign,a campaign of flattery and friendliness (by a company, politician, etc.) to become more popular and gain support
+28648,charm_quark,a quark with an electric charge of +2/3 and a mass 2900 times that of an electron and a charm of +1
+28649,charmer beguiler,a person who charms others (usually by personal attractiveness)
+28650,charnel_house charnel,a vault or building where corpses or bones are deposited
+28651,charred_pancake_cup,a common name for a variety of Sarcosomataceae
+28652,chart,(usually plural) a listing of best-selling recorded music; "number 2 on the charts"
+28653,chart,a map designed to assist navigation by air or sea
+28654,chart graph,a visual display of information
+28655,charter,a contract to hire or lease transportation
+28656,charter,a document incorporating an institution and specifying its rights; includes the articles of incorporation and the certificate of incorporation
+28657,charter_member,one of the original members when an organization was founded
+28658,charter_school,an experimental public school for kindergarten through grade 12; created and organized by teachers and parents and community leaders; operates independently of other schools
+28659,chartered_accountant,a British or Canadian accountant who is a member of a professional body that has a royal charter
+28660,charterhouse,a Carthusian monastery
+28661,chartist technical_analyst,a stock market analyst who tries to predict market trends from graphs of recent prices of securities
+28662,charwoman char cleaning_woman cleaning_lady woman,a human female employed to do housework; "the char will clean the carpet"; "I have a woman who comes in four hours a day while I write"
+28663,chase,a rectangular metal frame used in letterpress printing to hold together the pages or columns of composed type that are printed at one time
+28664,chaser,a drink to follow immediately after another drink
+28665,chasm,a deep opening in the earth's surface
+28666,chasse sashay,(ballet) quick gliding steps with one foot always leading
+28667,chassis,a metal mounting for the circuit components of an electronic device
+28668,chassis,the skeleton of a motor vehicle consisting of a steel frame supported on springs that holds the body and motor
+28669,chasteness restraint simplicity simpleness,lack of ornamentation; "the room was simply decorated with great restraint"
+28670,chastity celibacy sexual_abstention,abstaining from sexual relations (as because of religious vows)
+28671,chasuble,a long sleeveless vestment worn by a priest when celebrating Mass
+28672,chat confab confabulation schmooze schmoose,an informal conversation
+28673,chat_room chatroom,a site on the internet where a number of users can communicate in real time (typically one dedicated to a particular topic)
+28674,chateau,an impressive country house (or castle) in France
+28675,chatelaine,the mistress of a chateau or large country house
+28676,chatelaine,a chain formerly worn at the waist by women; for carrying a purse or bunch of keys etc.
+28677,chattel personal_chattel movable,personal as opposed to real property; any tangible movable property (furniture or domestic animals or a car etc)
+28678,chattel_mortgage,a loan to buy some personal item; the item (or chattel) is security for the loan
+28679,chatter chattering,the rapid series of noises made by the parts of a machine
+28680,chatter chattering,the high-pitched continuing noise made by animals (birds or monkeys)
+28681,chatter_mark,marks on a glaciated rock caused by the movement of a glacier
+28682,chatter_mark,a mark made by a chattering tool on the surface of a workpiece
+28683,chatterer babbler prater chatterbox magpie spouter,an obnoxious and foolish and loquacious talker
+28684,chauffeur,a man paid to drive a privately owned car
+28685,chauffeuse,a woman chauffeur
+28686,chaulmoogra chaulmoogra_tree chaulmugra Hydnocarpus_kurzii Taraktagenos_kurzii Taraktogenos_kurzii,East Indian tree with oily seeds yield chaulmoogra oil used to treat leprosy
+28687,chaulmoogra_oil,an oil from chaulmoogra trees; used in treatment of skin diseases and leprosy
+28688,chauvinism jingoism superpatriotism ultranationalism,fanatical patriotism
+28689,chauvinist,a person with a prejudiced belief in the superiority of his or her own kind
+28690,chauvinist jingoist jingo flag-waver hundred-percenter patrioteer,an extreme bellicose nationalist
+28691,cheap_money,credit available at low rates of interest
+28692,cheap_shot,an unnecessarily aggressive and unfair remark directed at a defenseless person
+28693,cheap_shot,an illegal and unsportsmanlike act of unnecessary violence; "he called a penalty on them when the lineman took a cheap shot at the quarterback"
+28694,cheapjack,a peddler of inferior goods
+28695,cheapness tackiness tat sleaze,tastelessness by virtue of being cheap and vulgar
+28696,cheapskate tightwad,a miserly person
+28697,cheat cheating,a deception for profit to yourself
+28698,chebab,a Palestinian juvenile 10-15 years old who fights against the Israelis
+28699,check,a textile pattern of squares or crossed lines (resembling a checkerboard); "she wore a skirt with checks"
+28700,check,obstructing an opponent in ice hockey
+28701,check,(chess) a direct attack on an opponent's king
+28702,check bank_check cheque,a written order directing a bank to pay money; "he paid all his bills by check"
+28703,check checkout check-out_procedure,the act of inspecting or verifying; "they made a check of their equipment"; "the pilot ran through the check-out procedure"
+28704,check chip,a mark left after a small piece has been chopped or broken off of something
+28705,check chit tab,the bill in a restaurant; "he asked the waiter for the check"
+28706,check-in,the act of reporting your presence (as at an airport or a hotel)
+28707,check_character,a character that is added to the end of a block of transmitted data and used to check the accuracy of the transmission
+28708,check_girl hatcheck_girl,a female checker
+28709,check_mark check tick,a mark indicating that something has been noted or completed etc.; "as he called the role he put a check mark by each student's name"
+28710,check_register,a register of checks issued (usually in numeric order)
+28711,checkbook chequebook,a book issued to holders of checking accounts
+28712,checker,an attendant who checks coats or baggage
+28713,checker,one who checks the correctness of something
+28714,checker chequer,one of the flat round pieces used in playing the game of checkers
+28715,checkerbloom wild_hollyhock Sidalcea_malviflora,perennial purple-flowered wild mallow of western North America that is also cultivated
+28716,checkerboard checker_board,a board having 64 squares of two alternating colors
+28717,checkered_whiptail Cnemidophorus_tesselatus,markings are darker and more marked than in western whiptail; from southeastern Colorado to eastern Chihuahua
+28718,checkers draughts,a checkerboard game for two players who each have 12 pieces; the object is to jump over and so capture the opponent's pieces
+28719,checking_account chequing_account current_account,a bank account against which the depositor can draw checks that are payable on demand
+28720,checking_program,a program that examines other computer programs for syntax errors
+28721,checklist,a list of items (names or tasks etc.) to be checked or consulted
+28722,checkmate,complete victory
+28723,checkmate mate,a chess move constituting an inescapable and indefensible attack on the opponent's king
+28724,checkout checkout_counter,a counter in a supermarket where you pay for your purchases
+28725,checkout checkout_time,the latest time for vacating a hotel room; "the checkout here is 12 noon"
+28726,checkout_line,a queue of people waiting to pay for purchases
+28727,checkpoint,a place (as at a frontier) where travellers are stopped for inspection and clearance
+28728,checkroom left-luggage_office,a room where baggage or parcels are checked
+28729,checksum,a digit representing the sum of the digits in an instance of digital data; used to check whether errors have occurred in transmission or storage
+28730,checkup medical_checkup medical_examination medical_exam medical health_check,a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person
+28731,cheddar cheddar_cheese Armerican_cheddar American_cheese,hard smooth-textured cheese; originally made in Cheddar in southwestern England
+28732,cheddar_pink Diangus_gratianopolitanus,mat-forming perennial of central Europe with large fragrant pink or red flowers
+28733,cheek,either side of the face below the eyes
+28734,cheek_muscle buccinator_muscle musculus_buccinator,a muscle that flattens the cheek and retracts the angle of the mouth
+28735,cheek_pouch,a membranous pouch inside the mouth of many rodents (as a gopher)
+28736,cheekbone zygomatic_bone zygomatic malar malar_bone jugal_bone os_zygomaticum,the arch of bone beneath the eye that forms the prominence of the cheek
+28737,cheekpiece,either of two straps of a bridle that connect the bit to the headpiece
+28738,cheep peep,the short weak cry of a young bird
+28739,cheer,a cry or shout of approval
+28740,cheerer,a spectator who shouts encouragement
+28741,cheerfulness blitheness,a feeling of spontaneous good spirits; "his cheerfulness made everyone feel better"
+28742,cheerfulness cheer sunniness sunshine,the quality of being cheerful and dispelling gloom; "flowers added a note of cheerfulness to the drab room"
+28743,cheering shouting,encouragement in the form of cheers from spectators; "it's all over but the shouting"
+28744,cheerleader,an enthusiastic and vocal supporter; "he has become a cheerleader for therapeutic cloning"
+28745,cheerleader,someone who leads the cheers by spectators at a sporting event
+28746,cheerlessness uncheerfulness,a feeling of dreary or pessimistic sadness
+28747,cheese,a solid food prepared from the pressed curd of milk
+28748,cheese_cutter,a kitchen utensil (board or handle) with a wire for cutting cheese
+28749,cheese_dip,a dip made of cheeses
+28750,cheese_fondue,fondue made of cheese melted in wine for dipping bread and sometimes fruits
+28751,cheese_pizza,pizza with lots of cheese
+28752,cheese_press,a press for shaping cheese curd
+28753,cheese_rind,the rind of a cheese
+28754,cheese_sauce,white sauce with grated cheese
+28755,cheese_souffle,puffy dish of cheese and eggs (whites beaten separately) and white sauce
+28756,cheese_spread,spread made of cheese mixed with butter or cream or cream cheese and seasonings
+28757,cheeseboard cheese_tray,tray on which cheeses are served
+28758,cheeseburger,a hamburger with melted cheese on it
+28759,cheesecake,made with sweetened cream cheese and eggs and cream baked in a crumb crust
+28760,cheesecake,a photograph of an attractive woman in minimal attire
+28761,cheesecloth,a coarse loosely woven cotton gauze; originally used to wrap cheeses
+28762,cheesemonger,someone who sells cheese
+28763,cheetah chetah Acinonyx_jubatus,long-legged spotted cat of Africa and southwestern Asia having nonretractile claws; the swiftest mammal; can be trained to run down game
+28764,chef,a professional cook
+28765,chef's_salad,the combination salad prepared as a particular chef's specialty
+28766,cheilitis,inflammation and cracking of the skin of the lips
+28767,cheilosis perleche,a disorder of the lips marked by scaling and fissures at the corners of the mouth; caused by a deficiency of riboflavin
+28768,chela,a Hindu disciple of a swami
+28769,chelate chelate_compound,a heterocyclic compound having a metal ion attached by coordinate bonds to at least two nonmetal ions
+28770,chelation,(medicine) the process of removing a heavy metal from the bloodstream by means of a chelate as in treating lead or mercury poisoning
+28771,chelation,the process of forming a ring by forming one or more hydrogen bonds
+28772,chelicera,either of the first pair of fang-like appendages near the mouth of an arachnid; often modified for grasping and piercing
+28773,chelonian chelonian_reptile,a reptile of the order Chelonia
+28774,chemical chemical_substance,material produced by or used in a reaction involving changes in atoms or molecules
+28775,chemical_agent,an agent that produces chemical reactions
+28776,chemical_analysis qualitative_analysis,the act of decomposing a substance into its constituent elements
+28777,chemical_bomb gas_bomb,a bomb laden with chemical agents that are released when the bomb explodes
+28778,chemical_bond bond,an electrical force linking atoms
+28779,chemical_defense chemical_defence,procedures involved in taking defensive measures against attacks using chemical agents
+28780,chemical_element element,any of the more than 100 known substances (of which 92 occur naturally) that cannot be separated into simpler substances and that singly or in combination constitute all matter
+28781,chemical_energy,that part of the energy in a substance that can be released by a chemical reaction
+28782,chemical_engineering,the branch of engineering that is concerned with the design and construction and operation of the plants and machinery used in industrial chemical processes
+28783,chemical_engineering,the activity of applying chemistry to the solution of practical problems
+28784,chemical_equilibrium equilibrium,a chemical reaction and its reverse proceed at equal rates
+28785,chemical_industry,the manufacturers of chemicals considered collectively
+28786,chemical_irritant,a substance producing irritation
+28787,chemical_notation,a notation used by chemists to express technical facts in chemistry
+28788,chemical_phenomenon,any natural phenomenon involving chemistry (as changes to atoms or molecules)
+28789,chemical_plant,an industrial plant where chemicals are produced
+28790,chemical_process chemical_change chemical_action,(chemistry) any process determined by the atomic and molecular composition and structure of the substances involved
+28791,chemical_property,a property used to characterize materials in reactions that change their identity
+28792,chemical_reaction reaction,(chemistry) a process in which one or more substances are changed into others; "there was a chemical reaction of the lime with the ground water"
+28793,chemical_reactor,an apparatus for holding substances that are undergoing a chemical reaction
+28794,chemical_terrorism,terrorism using the chemical agents of chemical warfare; can undermine the personal security of citizens; "a good agent for chemical terrorism should be colorless and odorless and inexpensive and readily available and not detectable until symptoms are experienced"
+28795,chemical_warfare chemical_operations,warfare using chemical agents to kill or injure or incapacitate the enemy
+28796,chemical_weapon,chemical substances that can be delivered using munitions and dispersal devices to cause death or severe harm to people and animals and plants
+28797,chemiluminescence,luminescence resulting from a chemical reaction as the oxidation of luciferin in fireflies
+28798,chemise sack shift,a loose-fitting dress hanging straight from the shoulders without a waist
+28799,chemise shimmy shift slip teddy,a woman's sleeveless undergarment
+28800,chemisorption chemosorption,adsorption (especially when irreversible) by means of chemical instead of physical forces; "chemisorption of gaseous nitrogen on iron catalysts"
+28801,chemist,a scientist who specializes in chemistry
+28802,chemistry,the chemical composition and properties of a substance or object; "the chemistry of soil"
+28803,chemistry chemical_science,the science of matter; the branch of the natural sciences dealing with the composition of substances and their properties and reactions
+28804,chemistry interpersonal_chemistry alchemy,the way two individuals relate to each other; "their chemistry was wrong from the beginning -- they hated each other"; "a mysterious alchemy brought them together"
+28805,chemistry_department department_of_chemistry,the academic department responsible for teaching and research in chemistry
+28806,chemistry_lab chemistry_laboratory chem_lab,a laboratory for research in chemistry
+28807,chemoreceptor,a sensory receptor that responds to chemical stimuli
+28808,chemosis,edema of the mucous membrane of the eyeball and eyelid lining
+28809,chemosurgery,use of chemical to destroy diseased or malignant tissue; used in treatment of skin cancer
+28810,chemosynthesis,synthesis of carbohydrate from carbon dioxide and water; limited to certain bacteria and fungi
+28811,chemotaxis,movement by a cell or organism in reaction to a chemical stimulus
+28812,chemotherapy,the use of chemical agents to treat or control disease (or mental illness)
+28813,chenille,a heavy fabric woven with chenille cord; used in rugs and bedspreads
+28814,chenille chenille_cord,a soft tufted cord used in embroidery
+28815,cheoplastic_metal,any alloy that fuses at low temperatures and can be used molding artificial teeth
+28816,cherimoya cherimolla,large tropical fruit with leathery skin and soft pulp; related to custard apples
+28817,cherimoya cherimoya_tree Annona_cherimola,small tropical American tree bearing round or oblong fruit
+28818,chernozemic_soil,a rich black loam of Russia
+28819,cheroot,a cigar with both ends cut flat
+28820,cherry,wood of any of various cherry trees especially the black cherry
+28821,cherry,a red fruit with a single hard stone
+28822,cherry cherry_tree,any of numerous trees and shrubs producing a small fleshy round fruit with a single hard stone; many also produce a valuable hardwood
+28823,cherry-tree_gum,exudation from trees of the Prunus genus; resembles gum arabic
+28824,cherry_bomb,a red ball-shaped firecracker with high explosive power
+28825,cherry_laurel laurel_cherry Prunus_laurocerasus,frequently cultivated Eurasian evergreen shrub or small tree having showy clusters of white flowers and glossy foliage and yielding oil similar to bitter almond oil
+28826,cherry_laurel laurel_cherry mock_orange wild_orange Prunus_caroliniana,small flowering evergreen tree of southern United States
+28827,cherry_pepper Capsicum_annuum_cerasiforme,plant bearing small rounded usually pungent fruits
+28828,cherry_plum myrobalan myrobalan_plum Prunus_cerasifera,small Asiatic tree bearing edible red or yellow fruit
+28829,cherry_stone,the stone seed of a cherry
+28830,cherry_tomato,small red to yellow tomatoes
+28831,cherry_tomato Lycopersicon_esculentum_cerasiforme,plant bearing small red to yellow fruit
+28832,cherrystone cherrystone_clam,small quahog larger than a littleneck; eaten raw or cooked as in e.g. clams casino
+28833,cherrystone cherrystone_clam,a half-grown quahog
+28834,chert,variety of silica containing microcrystalline quartz
+28835,cherub,a sweet innocent baby
+28836,cherub,an angel of the second order whose gift is knowledge; usually portrayed as a winged child
+28837,chervil,fresh ferny parsley-like leaves used as a garnish with chicken and veal and omelets and green salads and spinach
+28838,chervil beaked_parsley Anthriscus_cereifolium,aromatic annual Old World herb cultivated for its finely divided and often curly leaves for use especially in soups and salads
+28839,chess cheat Bromus_secalinus,weedy annual native to Europe but widely distributed as a weed especially in wheat
+28840,chess chess_game,a board game for two players who move their 16 pieces according to specific rules; the object is to checkmate the opponent's king
+28841,chess_club,a club of people to play chess
+28842,chess_master,a chess player of great skill
+28843,chess_match,a match between chess players
+28844,chess_move,the act of moving a chess piece
+28845,chess_player,someone who plays the game of chess
+28846,chess_set,checkerboard and a set of 32 pieces used to play chess
+28847,chessboard chess_board,a checkerboard used to play chess
+28848,chessman chess_piece,any of 16 white and 16 black pieces used in playing the game of chess
+28849,chest,box with a lid; used for storage; usually large and sturdy
+28850,chest_cavity thoracic_cavity,the cavity in the vertebrate body enclosed by the ribs between the diaphragm and the neck and containing the lungs and heart
+28851,chest_of_drawers chest bureau dresser,furniture with drawers for keeping clothes
+28852,chest_pain,pain in the chest
+28853,chest_protector,protective garment consisting of a pad worn in baseball by catchers and by football players
+28854,chest_register chest_voice chest_tone,the lower ranges of the voice in speaking or singing
+28855,chesterfield,an overstuffed davenport with upright armrests
+28856,chesterfield,a fitted overcoat with a velvet collar
+28857,chestnut,wood of any of various chestnut trees of the genus Castanea
+28858,chestnut,edible nut of any of various chestnut trees of the genus Castanea
+28859,chestnut,the brown color of chestnuts
+28860,chestnut,a small horny callus on the inner surface of a horse's leg
+28861,chestnut,a dark golden-brown or reddish-brown horse
+28862,chestnut chestnut_tree,any of several attractive deciduous trees yellow-brown in autumn; yield a hard wood and edible nuts in a prickly bur
+28863,chestnut_blight chestnut_canker chestnut-bark_disease,a disease of American chestnut trees
+28864,chestnut_oak,an oak having leaves resembling those of chestnut trees
+28865,chetrum,100 chetrums equal 1 ngultrum in Bhutan
+28866,cheval-de-frise chevaux-de-frise,defensive structure consisting of a movable obstacle composed of barbed wire or spikes attached to a wooden frame; used to obstruct cavalry
+28867,cheval_glass,a full length mirror mounted in a frame in which it can be tilted
+28868,chevron,an inverted V-shaped charge
+28869,chevron stripe stripes grade_insignia,V-shaped sleeve badge indicating military rank and service; "they earned their stripes in Kuwait"
+28870,chevrotain mouse_deer,very small hornless deer-like ruminant of tropical Asia and west Africa
+28871,chew chaw cud quid plug wad,a wad of something chewable as tobacco
+28872,chew chewing mastication manduction,biting and grinding food in your mouth so it becomes soft enough to swallow
+28873,chewer,someone who chews (especially someone who chews tobacco)
+28874,chewing_gum gum,a preparation (usually made of sweetened chicle) for chewing
+28875,chewink cheewink Pipilo_erythrophthalmus,common towhee of eastern North America
+28876,chi khi,the 22nd letter of the Greek alphabet
+28877,chiaroscuro,a monochrome picture made by using several different shades of the same color
+28878,chiasma chiasm decussation,an intersection or crossing of two tracts in the form of the letter X
+28879,chiasmus,inversion in the second of two parallel phrases
+28880,chic chicness chichi modishness smartness stylishness swank last_word,elegance by virtue of being fashionable
+28881,chicane,a bridge hand that is void of trumps
+28882,chicane,a movable barrier used in motor racing; sometimes placed before a dangerous corner to reduce speed as cars pass in single file
+28883,chichi,someone who dresses in a trendy fashionable way
+28884,chichipe Lemaireocereus_chichipe,tall treelike Mexican cactus with edible red fruit
+28885,chick biddy,young bird especially of domestic fowl
+28886,chickadee,any of various small grey-and-black songbirds of North America
+28887,chickasaw_plum hog_plum hog_plum_bush Prunus_angustifolia,small native American shrubby tree bearing small edible yellow to reddish fruit
+28888,chicken,a foolhardy competition; a dangerous activity that is continued until one competitor becomes afraid and stops
+28889,chicken Gallus_gallus,a domestic fowl bred for flesh or eggs; believed to have been developed from the red jungle fowl
+28890,chicken poulet volaille,the flesh of a chicken used for food
+28891,chicken_Kiev,pounded chicken cutlets rolled around butter (that has been seasoned with herbs) and then covered with crumbs and fried
+28892,chicken_Marengo,braised chicken with onions and mushrooms in a wine and tomato sauce
+28893,chicken_Tetrazzini,chicken prepared in a cream sauce with mushrooms and served over pasta; usually topped with cheese
+28894,chicken_and_rice,rice and chicken cooked together with or without other ingredients and variously seasoned
+28895,chicken_broth chicken_stock,a stock made with chicken
+28896,chicken_cacciatore chicken_cacciatora hunter's_chicken,chicken casserole prepared with tomatoes and mushrooms and herbs in the Italian style
+28897,chicken_casserole,chicken cooked and served in a casserole
+28898,chicken_coop coop hencoop henhouse,a farm building for housing poultry
+28899,chicken_cordon_bleu,thin slices of chicken stuffed with cheese and ham and then sauteed
+28900,chicken_farm,farm where chickens are raised for sale
+28901,chicken_feed scratch,dry mash for poultry
+28902,chicken_hawk hen_hawk,nontechnical term for any hawks said to prey on poultry
+28903,chicken_leg chicken_drumstick,the lower joint of the leg of a chicken
+28904,chicken_liver,liver of a chicken used as meat
+28905,chicken_louse shaft_louse Menopon_palladum Menopon_gallinae,a louse parasitic on poultry
+28906,chicken_manure,chicken excreta used as fertilizer
+28907,chicken_mousse,mousse made with chicken
+28908,chicken_paprika chicken_paprikash,chicken simmered in broth with onions and paprika then mixed with sour cream
+28909,chicken_provencale,chicken cooked in a sauce made with tomatoes, garlic, and olive oil
+28910,chicken_roundworm Ascaridia_galli,intestinal parasite of domestic fowl
+28911,chicken_salad,salad composed primarily of chopped chicken meat
+28912,chicken_sandwich,a sandwich made with a filling of sliced chicken
+28913,chicken_scratch,cramped or illegible handwriting
+28914,chicken_snake,large North American snake
+28915,chicken_soup,soup made from chicken broth
+28916,chicken_stew,a stew made with chicken
+28917,chicken_taco,a taco with a chicken filling
+28918,chicken_wing,the wing of a chicken
+28919,chicken_wire,a galvanized wire network with a hexagonal mesh; used to build fences
+28920,chicken_yard hen_yard chicken_run fowl_run,an enclosed yard for keeping poultry
+28921,chickenpox varicella,an acute contagious disease caused by herpes varicella zoster virus; causes a rash of vesicles on the face and body
+28922,chickenshit,a false statement that is considered to indicate timidity or fear
+28923,chickeree Douglas_squirrel Tamiasciurus_douglasi,far western United States counterpart of the red squirrel
+28924,chickpea chickpea_plant Egyptian_pea Cicer_arietinum,Asiatic herb cultivated for its short pods with one or two edible seeds
+28925,chickpea garbanzo,the seed of the chickpea plant
+28926,chickpea garbanzo,large white roundish Asiatic legume; usually dried
+28927,chickweed,any of various plants of the genus Stellaria
+28928,chickweed_phlox sand_phlox Phlox_bifida Phlox_stellaria,low mat-forming herb of rocky places in United States
+28929,chicle chicle_gum,gum-like substance from the sapodilla
+28930,chicory chicory_root,the dried root of the chicory plant: used as a coffee substitute
+28931,chicory chicory_root,root of the chicory plant roasted and ground to substitute for or adulterate coffee
+28932,chicory curly_endive,crisp spiky leaves with somewhat bitter taste
+28933,chicory succory chicory_plant Cichorium_intybus,perennial Old World herb having rayed flower heads with blue florets cultivated for its root and its heads of crisp edible leaves used in salads
+28934,chicory_escarole endive escarole,variety of endive having leaves with irregular frilled edges
+28935,chiding scolding objurgation tongue-lashing,rebuking a person harshly
+28936,chief_executive_officer CEO chief_operating_officer,the corporate executive responsible for the operations of the firm; reports to a board of directors; may appoint other managers (including a president)
+28937,chief_financial_officer CFO,the corporate executive having financial authority to make appropriations and authorize expenditures for a firm
+28938,chief_justice,the judge who presides over a supreme court
+28939,chief_of_staff,the senior officer of a service of the armed forces
+28940,chief_petty_officer,a person with the senior noncommissioned naval rank
+28941,chieftaincy chieftainship,the position of chieftain
+28942,chiffon,a sheer fabric of silk or rayon
+28943,chiffon_cake,very light cake
+28944,chiffonier commode,a tall elegant chest of drawers
+28945,chigetai dziggetai Equus_hemionus_hemionus,Mongolian wild ass
+28946,chignon,a roll of hair worn at the nape of the neck
+28947,chigoe chigger chigoe_flea Tunga_penetrans,small tropical flea; the fertile female burrows under the skin of the host including humans
+28948,chilblain chilblains pernio,inflammation of the hands and feet caused by exposure to cold and moisture
+28949,child,a member of a clan or tribe; "the children of Israel"
+28950,child baby,an immature childish person; "he remained a child in practical matters as long as he lived"; "stop being a baby!"
+28951,child kid,a human offspring (son or daughter) of any age; "they had three children"; "they were able to send their kids to college"
+28952,child kid youngster minor shaver nipper small_fry tiddler tike tyke fry nestling,a young person of either sex; "she writes books for children"; "they're just kids"; "`tiddler' is a British term for youngster"
+28953,child's_body,the body of a human child
+28954,child's_game,a game enjoyed by children
+28955,child's_room,a bedroom for a child
+28956,child_abuse,the physical or emotional or sexual mistreatment of children
+28957,child_neglect,failure of caretakers to provide adequate emotional and physical care for a child
+28958,child_pornography kiddie_porn kiddy_porn,the illegal use of children in pornographic pictures or films
+28959,child_prodigy infant_prodigy wonder_child,a prodigy whose talents are recognized at an early age; "Mozart was a child prodigy"
+28960,child_support,court-ordered support paid by one spouse to the other who has custody of the children after the parents are separated
+28961,child_welfare_agency child_welfare_service,an administrative unit responsible for social work concerned with the welfare and vocational training of children
+28962,childbirth childbearing accouchement vaginal_birth,the parturition process in human beings; having a baby; the process of giving birth to a child
+28963,childbirth-preparation_class,a course that teaches pregnant women to use breathing and concentration and exercise techniques to use during labor
+28964,childcare child_care,a service involving care for other people's children
+28965,childhood,the time of person's life when they are a child
+28966,childhood puerility,the state of a child between infancy and adolescence
+28967,childishness puerility,a property characteristic of a child
+28968,childlessness,the condition of being without offspring
+28969,chili chili_con_carne,ground beef and chili peppers or chili powder often with tomatoes and kidney beans
+28970,chili chili_pepper chilli chilly chile,very hot and finely tapering pepper of special pungency
+28971,chili_dog,a hotdog with chili con carne on it
+28972,chili_powder,powder made of ground chili peppers mixed with e.g. cumin and garlic and oregano
+28973,chili_sauce,tomatoes and onions and peppers (sweet or hot) simmered with vinegar and sugar and various seasonings
+28974,chili_vinegar,fiery vinegar flavored with chili peppers
+28975,chill iciness gelidity,coldness due to a cold environment
+28976,chill pall,a sudden numbing dread
+28977,chill shivering,a sensation of cold that often marks the start of an infection and the development of a fever
+28978,chilliness coolness nip,the property of being moderately cold; "the chilliness of early morning"
+28979,chimaera,a deep-sea fish with a tapering body, smooth skin, and long threadlike tail
+28980,chime bell gong,a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument
+28981,chimera chimaera,a grotesque product of the imagination
+28982,chimney,a vertical flue that provides a path through which smoke from a fire is carried away through the wall or roof of a building
+28983,chimney_breast,walls that project out from the wall of a room and surround the chimney base
+28984,chimney_corner inglenook,a corner by a fireplace
+28985,chimney_plant chimney_bellflower Campanula_pyramidalis,bellflower of southeastern Europe
+28986,chimney_swift chimney_swallow Chateura_pelagica,American swift that nests in e.g. unused chimneys
+28987,chimneypot,a short earthenware pipe on the top of a chimney to increase the draft
+28988,chimneystack,the part of the chimney that is above the roof; usually has several flues
+28989,chimneysweeper chimneysweep sweep,someone who cleans soot from chimneys
+28990,chimpanzee chimp Pan_troglodytes,intelligent somewhat arboreal ape of equatorial African forests
+28991,chin mentum,the protruding part of the lower jaw
+28992,chin_rest,a rest on which a violinist can place the chin
+28993,chin_strap,a strap attached to a hat; passes under the chin and holds the hat in place
+28994,china,high quality porcelain originally made only in China
+28995,china_cabinet china_closet,a cabinet (usually with glass doors) for storing and displaying china
+28996,china_clay china_stone kaolin kaoline porcelain_clay terra_alba,a fine usually white clay formed by the weathering of aluminous minerals (as feldspar); used in ceramics and as an absorbent and as a filler (e.g., in paper)
+28997,china_pink rainbow_pink Dianthus_chinensis,Chinese pink with deeply toothed rose-lilac flowers with a purplish eye; usually raised as an annual
+28998,chinaberry chinaberry_tree China_tree Persian_lilac pride-of-India azederach azedarach Melia_azederach Melia_azedarach,tree of northern India and China having purple blossoms and small inedible yellow fruits; naturalized in the southern United States as a shade tree
+28999,chinaware china,dishware made of high quality porcelain
+29000,chincapin chinkapin chinquapin,small nut of either of two small chestnut trees of the southern United States; resembles a hazelnut
+29001,chinch_bug Blissus_leucopterus,small black-and-white insect that feeds on cereal grasses
+29002,chincherinchee wonder_flower Ornithogalum_thyrsoides,South African perennial with long-lasting spikes of white blossoms that are shipped in to Europe and America for use as winter cut flowers
+29003,chinchilla,the expensive silvery grey fur of the chinchilla
+29004,chinchilla,a thick twilled fabric of wool and cotton
+29005,chinchilla Chinchilla_laniger,small rodent with soft pearly grey fur; native to the Andes but bred in captivity for fur
+29006,chine,cut of meat or fish including at least part of the backbone
+29007,chine,backbone of an animal
+29008,chinese_mustard indian_mustard leaf_mustard gai_choi Brassica_juncea,Asiatic mustard used as a potherb
+29009,chink,a narrow opening as e.g. between planks in a wall
+29010,chink Chinaman,(ethnic slur) offensive term for a person of Chinese descent
+29011,chink click clink,a short light metallic sound
+29012,chinning_bar,a horizontal bar on which you can chin yourself
+29013,chino,a coarse twilled cotton fabric frequently used for uniforms
+29014,chinoiserie,a style in art reflecting Chinese influence; elaborately decorated and intricately patterned
+29015,chinook chinook_salmon king_salmon quinnat_salmon Oncorhynchus_tshawytscha,large Pacific salmon valued as food; adults die after spawning
+29016,chinook chinook_wind snow_eater,a warm dry wind blowing down the eastern slopes of the Rockies
+29017,chinook_salmon chinook king_salmon,pink or white flesh of large Pacific salmon
+29018,chinos,(plural) trousers made with chino cloth
+29019,chinquapin_oak chinkapin_oak yellow_chestnut_oak Quercus_muehlenbergii,medium-sized deciduous tree of the eastern United States that yields a strong durable wood
+29020,chintz,a brightly printed and glazed cotton fabric
+29021,chip,a triangular wooden float attached to the end of a log line
+29022,chip chip_shot,(golf) a low running approach shot
+29023,chip chipping splintering,the act of chipping something
+29024,chip cow_chip cow_dung buffalo_chip,a piece of dried bovine dung
+29025,chip crisp potato_chip Saratoga_chip,a thin crisp slice of potato fried in deep fat
+29026,chip microchip micro_chip silicon_chip microprocessor_chip,electronic equipment consisting of a small crystal of a silicon semiconductor fabricated to carry out a number of electronic functions in an integrated circuit
+29027,chip poker_chip,a small disk-shaped counter used to represent money when gambling
+29028,chipboard hardboard,a cheap hard material made from wood chips that are pressed together and bound with synthetic resin
+29029,chipmunk,a burrowing ground squirrel of western America and Asia; has cheek pouches and a light and dark stripe running down the body
+29030,chipolata,a small thin sausage
+29031,chipotle,a ripe jalapeno that has been dried for use in cooking
+29032,chipping_sparrow Spizella_passerina,small North American finch common in urban areas
+29033,chiralgia,a pain in the hand that is not traumatic
+29034,chiropodist foot_doctor podiatrist,a specialist in care for the feet
+29035,chiropractic,a method of treatment that manipulates body structures (especially the spine) to relieve low back pain or even headache or high blood pressure
+29036,chiropractor,a therapist who practices chiropractic
+29037,chirp,a sharp sound made by small birds or insects
+29038,chirpiness,cheerful and lively
+29039,chirrup twitter,a series of chirps
+29040,chisel,an edge tool with a flat steel blade with a cutting edge
+29041,chisel_steel,steel used in making chisels
+29042,chit,a dismissive term for a girl who is immature or who lacks respect; "she was incensed that this chit of a girl should dare to make a fool of her in front of the class"; "she's a saucy chit"
+29043,chitchat chit-chat chit_chat small_talk gab gabfest gossip tittle-tattle chin_wag chin-wag chin_wagging chin-wagging causerie,light informal conversation for social occasions
+29044,chitin,a tough semitransparent horny substance; the principal component of the exoskeletons of arthropods and the cell walls of certain fungi
+29045,chiton,a woolen tunic worn by men and women in ancient Greece
+29046,chiton coat-of-mail_shell sea_cradle polyplacophore,primitive elongated bilaterally symmetrical marine mollusk having a mantle covered with eight calcareous plates
+29047,chitterlings chitlins chitlings,small intestines of hogs prepared as food
+29048,chivalry gallantry politesse,courtesy towards women
+29049,chivalry knightliness,the medieval principles governing knighthood and knightly conduct
+29050,chives,cylindrical leaves used fresh as a mild onion-flavored seasoning
+29051,chives chive cive schnittlaugh Allium_schoenoprasum,perennial having hollow cylindrical leaves used for seasoning
+29052,chlamydia,a sexually transmitted infection caused by bacteria of the genus Chlamydia
+29053,chlamydia,coccoid rickettsia infesting birds and mammals; cause infections of eyes and lungs and genitourinary tract
+29054,chlamydospore,thick-walled asexual resting spore of certain fungi and algae
+29055,chlamys,a short mantle or cape fastened at the shoulder; worn by men in ancient Greece
+29056,chloasma melasma mask_of_pregnancy,a tan discoloration of a woman's face that is associated with pregnancy or with the use of oral contraceptives
+29057,chloral_hydrate,a colorless crystalline drug used as a sedative; irritates the stomach and can be addictive
+29058,chlorambucil Leukeran,an alkylating agent (trade name Leukeran) used to treat some kinds of cancer
+29059,chloramine chloramine-T,any of several compounds containing chlorine and nitrogen; used as an antiseptic in wounds
+29060,chloramphenicol Chloromycetin,an oral antibiotic (trade name Chloromycetin) used to treat serious infections (especially typhoid fever)
+29061,chlorate,any salt of chloric acid
+29062,chlordiazepoxide Librium Libritabs,a tranquilizer (trade names Librium and Libritabs) used in the treatment of alcoholism
+29063,chlorella,any alga of the genus Chlorella
+29064,chlorenchyma,parenchyma whose cells contain chloroplasts
+29065,chlorhexidine,a long-lasting liquid antiseptic; used by surgeons to wash their hands before performing surgery
+29066,chloric_acid,(HClO3) a strong unstable acid with an acrid odor found in chlorate salts
+29067,chloride,any compound containing a chlorine atom
+29068,chloride,any salt of hydrochloric acid (containing the chloride ion)
+29069,chlorination,the addition or substitution of chlorine in organic compounds
+29070,chlorination,disinfection of water by the addition of small amounts of chlorine or a chlorine compound
+29071,chlorine Cl atomic_number_17,a common nonmetallic element belonging to the halogens; best known as a heavy yellow irritating toxic gas; used to purify water and as a bleaching agent and disinfectant; occurs naturally only as a salt (as in sea water)
+29072,chlorine_dioxide,an explosive gas (ClO2) used chiefly in bleaching paper or starch or soap or flour and in water purification
+29073,chlorine_water,an aqueous solution of chlorine used as a bleaching agent
+29074,chlorinity,a measure of the quantity of chlorine or other halides in water (especially seawater)
+29075,chlorite,a generally green or black mineral; it occurs as a constituent of many rocks typically in the form of a flat crystal
+29076,chloroacetophenone CN_gas,a tear gas that is weaker than CS gas but lasts longer
+29077,chlorobenzene,a colorless volatile flammable liquid with an almond odor that is made from chlorine and benzene; used as a solvent and in the production of phenol and DDT and other organic compounds
+29078,chlorobenzylidenemalononitrile CS_gas,a tear gas that is stronger than CN gas but wears off faster; can be deployed by grenades or cluster bombs; can cause skin burns and fatal pulmonary edema
+29079,chlorofluorocarbon CFC,a fluorocarbon with chlorine; formerly used as a refrigerant and as a propellant in aerosol cans; "the chlorine in CFCs causes depletion of atmospheric ozone"
+29080,chloroform trichloromethane,a volatile liquid haloform (CHCl3); formerly used as an anesthetic; "chloroform was the first inhalation anesthetic"
+29081,chlorophyll chlorophyl,any of a group of green pigments found in photosynthetic organisms; there are four naturally occurring forms
+29082,chlorophyll_a,a blue-black plant pigment having a blue-green alcohol solution; found in all higher plants
+29083,chlorophyll_b,a dark-green plant pigment having a brilliant green alcohol solution; generally characteristic of higher plants
+29084,chlorophyll_c chlorofucin,the chlorophyll present in brown algae, diatoms, and flagellates
+29085,chlorophyll_d,the chlorophyll found (together with chlorophyll a) in red algae
+29086,chloropicrin nitrochloroform,a heavy colorless insoluble liquid compound that causes tears and vomiting; used as a pesticide and as tear gas
+29087,chloroplast,plastid containing chlorophyll and other pigments; in plants that carry out photosynthesis
+29088,chloroprene,derivative of butadiene used in making neoprene by polymerization
+29089,chloroquine,an antimalarial drug used to treat malaria and amebic dysentery and systemic lupus erythematosus
+29090,chlorosis greensickness,iron deficiency anemia in young women; characterized by weakness and menstrual disturbances and a green color to the skin
+29091,chlorothiazide Diuril,a diuretic drug (trade name Diuril) used in the treatment of edema and hypertension
+29092,chlorous_acid,(HClO2) a strongly oxidizing acid; known only in solution
+29093,chlorpheniramine_maleate Coricidin Chlor-Trimeton,an antihistamine (trade names Coricidin and Chlor-Trimeton)
+29094,chlorpromazine Thorazine,a drug (trade name Thorazine) derived from phenothiazine that has antipsychotic effects and is used as a sedative and tranquilizer
+29095,chlorpyrifos,a common organophosphate insecticide
+29096,chlortetracycline Aureomycin,a yellow crystalline antibiotic (trade name Aureomycin) used to treat certain bacterial and rickettsial diseases
+29097,chlorthalidone Hygroton Thalidone,a diuretic (trade names Hygroton and Thalidone) used to control hypertension and conditions that cause edema; effective in lowering blood pressure to prevent heart attacks
+29098,choanocyte collar_cell,any of the flagellated cells in sponges having a collar of cytoplasm around the flagellum; they maintain a flow of water through the body
+29099,choc,colloquial British abbreviation; "a box of chocs"
+29100,choc-ice,colloquial British abbreviation for chocolate ice cream
+29101,chock wedge,a block of wood used to prevent the sliding or rolling of a heavy object
+29102,chocolate,a food made from roasted ground cacao beans
+29103,chocolate coffee deep_brown umber burnt_umber,a medium brown to dark-brown color
+29104,chocolate_bar,a bar of chocolate candy
+29105,chocolate_cake,cake containing chocolate
+29106,chocolate_candy,candy made with chocolate
+29107,chocolate_chip_cookie Toll_House_cookie,cookies containing chocolate chips
+29108,chocolate_eclair,eclair topped with chocolate
+29109,chocolate_egg,egg-shaped chocolate candy
+29110,chocolate_fondue,fondue made of chocolate melted with milk or cream for dipping fruits
+29111,chocolate_fudge,fudge made with chocolate or cocoa
+29112,chocolate_ice_cream,ice cream flavored with chocolate
+29113,chocolate_kiss,a kiss that consists of a conical bite-sized piece of chocolate
+29114,chocolate_liquor,the liquid or paste that is produced when cocoa beans are roasted and ground; the basis of all chocolate
+29115,chocolate_milk,milk flavored with chocolate syrup
+29116,chocolate_mousse,dessert mousse made with chocolate
+29117,chocolate_pudding,sweet chocolate flavored custard-like pudding usually thickened with flour rather than eggs
+29118,chocolate_sauce chocolate_syrup,sauce made with unsweetened chocolate or cocoa and sugar and water
+29119,choice pick selection,the person or thing chosen or selected; "he was my pick for mayor"
+29120,choice selection option pick,the act of choosing or selecting; "your choice of colors was unfortunate"; "you can take your pick"
+29121,choice_morsel tidbit titbit,a small tasty bit of food
+29122,choir,a chorus that sings as part of a religious ceremony
+29123,choir,the area occupied by singers; the part of the chancel between sanctuary and nave
+29124,choir consort,a family of similar musical instrument playing together
+29125,choir_loft,a gallery in a church occupied by the choir
+29126,choir_school schola_cantorum,a school that is part of a cathedral or monastery where boys with singing ability can receive a general education
+29127,choirboy,a boy who sings in a choir
+29128,choirmaster precentor cantor,the musical director of a choir
+29129,choke,a valve that controls the flow of air into the carburetor of a gasoline engine
+29130,choke choke_coil choking_coil,a coil of low resistance and high inductance used in electrical circuits to pass direct current and attenuate alternating current
+29131,chokecherry,the fruit of the chokecherry tree
+29132,chokecherry chokecherry_tree Prunus_virginiana,a common wild cherry of eastern North America having small bitter black berries favored by birds
+29133,chokedamp blackdamp,the atmosphere in a mine following an explosion; high in carbon dioxide and incapable of supporting life
+29134,chokehold choke_hold,a restraining hold; someone loops the arm around the neck of another person in a tight grip, usually from behind; "he grabbed the woman in a chokehold, demanded her cash and jewelry, and then fled"
+29135,chokepoint,a point of congestion or blockage; "the bridge is always a chokepoint at rush hour"
+29136,choker,an unfortunate person who is unable to perform effectively because of nervous tension or agitation; "he could win if he wasn't a choker"
+29137,choker collar dog_collar neckband,necklace that fits tightly around a woman's neck
+29138,choker ruff ruffle neck_ruff,a high tight collar
+29139,chokey choky,British slang (dated) for a prison
+29140,choking,a condition caused by blocking the airways to the lungs (as with food or swelling of the larynx)
+29141,choking strangling strangulation throttling,the act of suffocating (someone) by constricting the windpipe; "no evidence that the choking was done by the accused"
+29142,cholangiography,roentgenographic examination of the bile ducts after a contrast medium has been injected
+29143,cholangitis,inflammation of the bile ducts
+29144,cholecystectomy,surgical removal of the gall bladder (usually for relief of gallstone pain)
+29145,cholecystitis,inflammation of the gall bladder
+29146,cholecystokinin,a gastrointestinal hormone that stimulates the secretion of pancreatic enzymes and the contraction and emptying of the gall bladder; its release is stimulated by the presence of fatty acids and amino acids in the small intestine
+29147,cholelithiasis,the presence of gallstones in the gallbladder
+29148,cholelithotomy,removal of gallstone through an incision in the gallbladder
+29149,cholera Asiatic_cholera Indian_cholera epidemic_cholera,an acute intestinal infection caused by ingestion of contaminated water or food
+29150,cholera_infantum,often fatal form of gastroenteritis occurring in children; not true cholera but having similar symptoms
+29151,cholera_morbus collywobbles,severe gastroenteritis of unknown etiology; characterized by severe colic and vomiting and diarrhea
+29152,cholesterol cholesterin,an animal sterol that is normally synthesized by the liver; the most abundant steroid in animal tissues
+29153,cholic_acid,an insoluble crystalline acid present in bile
+29154,choline,a B-complex vitamin that is a constituent of lecithin; essential in the metabolism of fat
+29155,cholinesterase,an enzyme that hydrolyses acetylcholine (into choline and acetic acid)
+29156,cholla Opuntia_cholla,arborescent cacti having very spiny cylindrical stem segments; southwestern United States and Mexico
+29157,chomping,the act of chewing noisily
+29158,chon,100 chon equal 1 won in South Korea
+29159,chon,100 chon equal 1 won in North Korea
+29160,chondrin,a substance that resembles gelatin and is obtained by boiling cartilage in water
+29161,chondrite,a rock of meteoric origin containing chondrules
+29162,chondroma,a common benign tumor of cartilage cells
+29163,chondrosarcoma,a malignant neoplasm of cartilage cells
+29164,chondrule,small granule (of e.g. chrysolite) found in some meteoric rocks
+29165,choo-choo,a child's word for locomotive
+29166,chop,the irregular motion of waves (usually caused by wind blowing in a direction opposite to the tide); "the boat headed into the chop"
+29167,chop,a small cut of meat including part of a rib
+29168,chop,a jaw; "I'll hit him on the chops"
+29169,chop chop_shot,a tennis return made with a downward motion that puts backspin on the ball
+29170,chop chopper,a grounder that bounces high in the air
+29171,chop-suey_greens,succulent and aromatic young dark green leaves used in Chinese and Vietnamese and Japanese cooking
+29172,chop-suey_greens tong_ho shun_giku Chrysanthemum_coronarium_spatiosum,grown for its succulent edible leaves used in Asian cooking
+29173,chop_shop,a place where stolen cars are disassembled for their parts
+29174,chop_suey,meat or fish stir-fried with vegetables (e.g., celery, onions, peppers or bean sprouts) seasoned with ginger and garlic and soy sauce; served with rice; created in the United States and frequently served in Chinese restaurants there
+29175,chopine platform,a woman's shoe with a very high thick sole
+29176,chopped_steak chop_steak chopsteak hamburger_steak beef_patty,a patty of ground cooked beef
+29177,chopper pearly,informal terms for a human `tooth'
+29178,choppiness roughness rough_water,used of the sea during inclement or stormy weather
+29179,chopping_block,a steady wooden block on which food can be cut or diced or wood can be split
+29180,chopping_board cutting_board,a wooden board where meats or vegetables can be cut
+29181,chopstick,one of a pair of slender sticks used as oriental tableware to eat food with
+29182,choragus,(ancient Greece) leader of a group or festival; leader of a chorus
+29183,choral_ode,ode sung by the chorus in classical Greek drama
+29184,chorale choral,a stately Protestant (especially Lutheran) hymn tune
+29185,chorale_prelude,a composition for organ using a chorale as a basis for variations
+29186,chord,a straight line connecting two points on a curve
+29187,chord,a combination of three or more notes that blend harmoniously when sounded together
+29188,chordamesoderm chordomesoderm,the area of mesoderm that forms the notochord
+29189,chordate,any animal of the phylum Chordata having a notochord or spinal column
+29190,chordate_family,any family in the phylum Chordata
+29191,chordate_genus,any genus in the phylum Chordata
+29192,chorditis,inflammation of the spermatic cord
+29193,chorditis,inflammation of the vocal cords
+29194,chordophone,a stringed instrument of the group including harps, lutes, lyres, and zithers
+29195,chorea,any of several degenerative nervous disorders characterized by spasmodic movements of the body and limbs
+29196,choreic_abasia,abasia related to abnormal movements of the legs
+29197,choreographer,someone who creates new dances
+29198,choreography,the representation of dancing by symbols as music is represented by notes
+29199,choreography,a notation used by choreographers
+29200,chorioallantois chorioallantoic_membrane,the very vascular fetal membrane composed of the fused chorion and adjacent wall of the allantois
+29201,choriomeningitis,a cerebral meningitis with cellular infiltration of the meninges
+29202,chorion,the outermost membranous sac enclosing the embryo in higher vertebrates (reptiles, birds and mammals)
+29203,chorionic_villus,one of the tiny villi that stick out of the fetal chorion and combine with the mother's uterine tissue to form the placenta
+29204,chorionic_villus_sampling chorionic_villus_biopsy,a prenatal test to detect birth defects at an early stage of pregnancy; tissue from the chorionic villi is assayed
+29205,chorioretinitis,inflammation of the choroid layer behind the retina
+29206,chorister,a singer in a choir
+29207,chorizo,a spicy Spanish pork sausage
+29208,choroid choroid_coat,a highly vascular membrane in the eye between the retina and the sclera; a dark pigmentation minimizes the scattering of light inside the eye
+29209,choroid_plexus plexus_choroideus,a vascular plexus of the cerebral ventricles that regulate intraventricular pressure
+29210,choroid_vein vena_choroidea,either of two veins serving the choroid coat of the eye
+29211,choroidal_artery arteria_choroidea,an artery that supplies the choroid plexus
+29212,choropleth_map,a map that uses graded differences in shading or color or the placing of symbols inside defined areas on the map in order to indicate the average values of some property or quantity in those areas
+29213,chortle chuckle,a soft partly suppressed laugh
+29214,chorus,a group of people assembled to sing together
+29215,chorus,any utterance produced simultaneously by a group; "a chorus of boos"
+29216,chorus Greek_chorus,a company of actors who comment (by speaking or singing in unison) on the action in a classical Greek play
+29217,chorus chorus_line,a body of dancers or singers who perform together
+29218,chorus_frog,any of several small North American frogs having a loud call
+29219,chorus_girl showgirl chorine,a woman who dances in a chorus line
+29220,chosen,one who is the object of choice; who is given preference; "she was Mama's chosen"
+29221,chosen elect,an exclusive group of people; "one of the elect who have power inside the government"
+29222,chosen_people,any people believing themselves to be chosen by God
+29223,chough,a European corvine bird of small or medium size with red legs and glossy black plumage
+29224,chow chow_chow,breed of medium-sized dogs with a thick coat and fluffy curled tails and distinctive blue-black tongues; believed to have originated in northern China
+29225,chow chuck eats grub,informal terms for a meal
+29226,chow_line,a queue of people waiting for food to be served (especially at a military camp)
+29227,chow_mein,chop suey served with fried noodles
+29228,chowchow,chopped pickles in mustard sauce
+29229,chowchow,a Chinese preserve of mixed fruits and ginger
+29230,chowder,a thick soup or stew made with milk and bacon and onions and potatoes
+29231,chrestomathy,a selection of passages from different authors that is compiled as an aid in learning a language
+29232,chrism chrisom sacramental_oil holy_oil,a consecrated ointment consisting of a mixture of oil and balsam
+29233,christella,any of several tropical ferns of the genus Christella having thin brittle fronds
+29234,christening,giving a Christian name at baptism
+29235,chromate,any salt or ester of chromic acid
+29236,chromatic_aberration,an optical aberration in which the image has colored fringes
+29237,chromatic_color chromatic_colour spectral_color spectral_colour,a color that has hue
+29238,chromatic_scale,a 12-note scale including all the semitones of the octave
+29239,chromatid,one of two identical strands into which a chromosome splits during mitosis
+29240,chromatin chromatin_granule,the readily stainable substance of a cell nucleus consisting of DNA and RNA and various proteins; during mitotic division it condenses into chromosomes
+29241,chromatism,hallucinatory perception of colored lights
+29242,chromatism,abnormal pigmentation
+29243,chromatogram,the recording (column or paper strip) on which the constituents of a mixture are adsorbed in chromatography
+29244,chromatography,a process used for separating mixtures by virtue of differences in absorbency
+29245,chrome,another word for chromium when it is used in dyes or pigments
+29246,chrome-nickel_steel Elinvar,Elinvar is a trademark for a kind of steel used for watch springs because its elasticity is constant over a wide range of temperatures
+29247,chrome-tungsten_steel,a steel alloy made with chromium and tungsten
+29248,chrome_alum,a violet-colored salt used in hide tanning and as a mordant in dyeing
+29249,chrome_green,any of a class of green pigments consisting of chrome yellow and iron blue
+29250,chrome_green,a brilliant green color
+29251,chrome_red,a red pigment used in paints; basic lead chromate
+29252,chrome_yellow,any of several yellow pigments consisting of normal lead chromate and other lead compounds
+29253,chromesthesia chromaesthesia,a form of synesthesia in which nonvisual stimulation results in the experience of color sensations
+29254,chromic_acid,an unstable acid known only in solution and as chromate salts
+29255,chromite,a brownish-black mineral; the major source of chromium
+29256,chromium Cr atomic_number_24,a hard brittle multivalent metallic element; resistant to corrosion and tarnishing
+29257,chromoblastomycosis,a fungal infection characterized by itchy warty nodules on the skin
+29258,chromogen,a compound that can be converted to a pigment
+29259,chromolithography,single- or multi-color lithography
+29260,chromophore,the chemical group that gives color to a molecule
+29261,chromoplast,plastid containing pigments other than chlorophyll usually yellow or orange carotenoids
+29262,chromosomal_aberration chromosomal_anomaly chrosomal_abnormality chromosonal_disorder,any change in the normal structure or number of chromosomes; often results in physical or mental abnormalities
+29263,chromosome,a threadlike strand of DNA in the cell nucleus that carries the genes in a linear order; "humans have 22 chromosome pairs plus two sex chromosomes"
+29264,chromosphere,a gaseous layer of the sun's atmosphere (extending from the photosphere to the corona) that is visible during a total eclipse of the sun
+29265,chronic_bronchitis,a form of bronchitis characterized by excess production of sputum leading to a chronic cough and obstruction of air flow
+29266,chronic_gastritis,persistent gastritis can be a symptom of a gastric ulcer or pernicious anemia or stomach cancer or other disorders
+29267,chronic_glaucoma open-angle_glaucoma,glaucoma caused by blockage of the canal of Schlemm; produces gradual loss of peripheral vision; "open-angle glaucoma is the most common type of glaucoma"
+29268,chronic_glossitis,glossitis with atrophy of tongue tissue; sometimes accompanies pernicious anemia
+29269,chronic_leukemia,slowly progressing leukemia
+29270,chronic_lymphocytic_leukemia,chronic leukemia characterized by lymphoblast-like cells; more common in older men
+29271,chronic_myelocytic_leukemia myeloid_leukemia,chronic leukemia characterized by granular leukocytes; more common in older people
+29272,chronic_obstructive_pulmonary_disease,a nonreversible lung disease that is a combination of emphysema and chronic bronchitis; usually patients have been heavy cigarette smokers
+29273,chronic_pyelonephritis,pyelonephritis that develops slowly and can lead to renal failure if untreated; often associated with a kidney stone or with narrowing of the urinary passageways
+29274,chronic_renal_failure chronic_kidney_failure,renal failure that can result from a variety of systemic disorders
+29275,chronic_wasting_disease,a wildlife disease (akin to bovine spongiform encephalitis) that affects deer and elk
+29276,chronicler,someone who writes chronicles
+29277,chronograph,an accurate timer for recording time
+29278,chronological_age,age measured by the time (years and months) that something or someone has existed; "his chronological age was 71 years"
+29279,chronology,an arrangement of events in time
+29280,chronology,a record of events in the order of their occurrence
+29281,chronology,the determination of the actual temporal sequence of past events
+29282,chronometer,an accurate clock (especially used in navigation)
+29283,chronoscope,an instrument for accurate measurements of small intervals of time
+29284,chrysalis,pupa of a moth or butterfly enclosed in a cocoon
+29285,chrysanthemum,the flower of a chrysanthemum plant
+29286,chrysanthemum,any of numerous perennial Old World herbs having showy brightly colored flower heads of the genera Chrysanthemum, Argyranthemum, Dendranthema, Tanacetum; widely cultivated
+29287,chrysoberyl,a rare hard yellow green mineral consisting of beryllium aluminate in crystal form; used as a gemstone
+29288,chrysolite,a brown or yellow-green olivine found in igneous and metamorphic rocks and used as a gemstone
+29289,chrysoprase,a green variety of chalcedony valued as a gemstone
+29290,chrysotherapy,the use of chemicals containing gold for treating diseases (such as rheumatoid arthritis)
+29291,chrysotile,a grey or green fibrous mineral; an important source of commercial asbestos
+29292,chub Leuciscus_cephalus,European freshwater game fish with a thick spindle-shaped body
+29293,chub_mackerel tinker Scomber_japonicus,small mackerel found nearly worldwide
+29294,chubbiness pudginess tubbiness rolypoliness,the property of having a plump and round body
+29295,chuck,the part of a forequarter from the neck to the ribs and including the shoulder blade
+29296,chuck,a holding device consisting of adjustable jaws that center a workpiece in a lathe or center a tool in a drill
+29297,chuck-will's-widow Caprimulgus_carolinensis,large whippoorwill-like bird of the southern United States
+29298,chuck_short_ribs,between the chuck and the brisket
+29299,chuck_wagon,a wagon equipped with a cookstove and provisions (for cowboys)
+29300,chuckwalla Sauromalus_obesus,a herbivorous lizard that lives among rocks in the arid parts of southwestern United States and Mexico
+29301,chufa yellow_nutgrass earth_almond ground_almond rush_nut Cyperus_esculentus,European sedge having small edible nutlike tubers
+29302,chug,the dull explosive noise made by an engine
+29303,chukka chukka_boot,a shoe that comes up to the ankle and is laced through two or three pairs of eyelets; often made of suede
+29304,chukker chukka,(polo) one of six divisions into which a polo match is divided
+29305,chum,bait consisting of chopped fish and fish oils that are dumped overboard to attract fish
+29306,chum_salmon chum Oncorhynchus_keta,a large Pacific salmon with small spots on its back; an important food fish
+29307,chumminess camaraderie comradeliness comradery comradeship,the quality of affording easy familiarity and sociability
+29308,chump fool gull mark patsy fall_guy sucker soft_touch mug,a person who is gullible and easy to take advantage of
+29309,chunga seriema Chunga_burmeisteri,Argentinian Cariama
+29310,chunk,a substantial amount; "we won a chunk of money"
+29311,chunnel Channel_Tunnel,the railroad tunnel between France and England under the English Channel
+29312,church,the body of people who attend or belong to a particular local church; "our church is hosting a picnic next week"
+29313,church Christian_church,one of the groups of Christians who have their own beliefs and forms of worship
+29314,church church_building,a place for public (especially Christian) worship; "the church was empty"
+29315,church-state,a state ruled by religious authority
+29316,church_bell,a bell in a church tower (usually sounded to summon people to church); "church bells were ringing all over town"
+29317,church_calendar ecclesiastical_calendar,a calendar of the Christian year indicating the dates of fasts and festivals
+29318,church_hat,a fanciful hat of the kind worn by Black women for Sunday worship
+29319,church_key,can opener that has a triangular pointed end that pierces the tops of cans
+29320,church_mouse,a fictional mouse created by Lewis Carroll
+29321,church_officer,a church official
+29322,church_roll,a list of the members of church
+29323,church_school parochial_school,a private religious school run by a church or parish
+29324,church_service church,a service conducted in a house of worship; "don't be late for church"
+29325,church_tower,the tower of a church
+29326,church_year Christian_year,the year in the ecclesiastical calendar; especially feast days and special seasons
+29327,churchgoer church_member,a religious person who goes to church regularly
+29328,churchwarden,an officer in the Episcopal church who helps a parish priest with secular matters
+29329,churchyard God's_acre,the yard associated with a church
+29330,churidars,tight trousers worn by people from the Indian subcontinent (typically with a kameez or kurta)
+29331,churn butter_churn,a vessel in which cream is agitated to separate butterfat from buttermilk
+29332,chute slide slideway sloping_trough,sloping channel through which things can descend
+29333,chutney Indian_relish,a spicy condiment made of chopped fruits or vegetables cooked in vinegar and sugar with ginger and spices
+29334,chutzpa chutzpah hutzpah,(Yiddish) unbelievable gall; insolence; audacity
+29335,chutzpanik,(Yiddish) a person characterized by chutzpa
+29336,chyle,a milky fluid consisting of lymph and emulsified fats; formed in the small intestine during digestion of ingested fats
+29337,chylomicron,a microscopic particle of triglycerides produced in the intestines during digestion; in the bloodstream they release their fatty acids into the blood
+29338,chyme,a semiliquid mass of partially digested food that passes from the stomach through the pyloric sphincter into the duodenum
+29339,cicada cicala,stout-bodied insect with large membranous wings; male has drum-like organs for producing a high-pitched drone
+29340,cicada_killer Sphecius_speciosis,large black or rust-colored wasp that preys on cicadas
+29341,cicero,a linear unit of the size of type slightly larger than an em
+29342,cicerone,a guide who conducts and informs sightseers
+29343,cichlid cichlid_fish,freshwater fishes of tropical America and Africa and Asia similar to American sunfishes; some are food fishes; many small ones are popular in aquariums
+29344,cider cyder,a beverage made from juice pressed from apples
+29345,cider_gum Eucalypt_gunnii,small to medium-sized tree of Tasmania
+29346,cider_mill,mill that extracts juice from apples to make apple cider
+29347,cider_vinegar,vinegar made from cider
+29348,ciderpress,a press that is used to extract the juice from apples
+29349,cigar,a roll of tobacco for smoking
+29350,cigar-box_cedar,fragrant wood much used for cigar boxes
+29351,cigar_band,a narrow paper band around a cigar
+29352,cigar_box,a box for holding cigars
+29353,cigar_butt,small part of a cigar that is left after smoking
+29354,cigar_cutter,an implement for cutting the tip off of a cigar
+29355,cigar_lighter cigarette_lighter pocket_lighter,a lighter for cigars or cigarettes
+29356,cigar_smoker,a smoker of cigars
+29357,cigarette cigaret coffin_nail butt fag,finely ground tobacco wrapped in paper; for smoking
+29358,cigarette_burn,a burn mark left by a smoldering cigarette; "a cigarette burn on the edge of the table"
+29359,cigarette_butt,small part of a cigarette that is left after smoking
+29360,cigarette_case,a small flat case for holding cigarettes; can be carried in a purse or a pocket
+29361,cigarette_holder,a tube that holds a cigarette while it is being smoked
+29362,cigarette_paper rolling_paper,a strong tissue paper that burns evenly and is sufficiently porous to control the burning of the tobacco in a cigarette
+29363,cigarette_smoker,a smoker of cigarettes
+29364,cigarillo,small cigar or cigarette wrapped in tobacco instead of paper
+29365,ciliary_artery arteria_ciliaris,one of several arteries supplying the choroid coat of the eye
+29366,ciliary_body,the part of the tunic of the eye between the choroid coat and the iris; "the ciliary body produces aqueous humor"
+29367,ciliary_veins venae_ciliares,small veins coming from the ciliary body
+29368,ciliate ciliated_protozoan ciliophoran,a protozoan with a microscopic appendage extending from the surface of the cell
+29369,cilium,a hairlike projection from the surface of a cell; provides locomotion in free-swimming unicellular organisms
+29370,cimetidine Tagamet,a drug (trade name Tagamet) used to treat peptic ulcers by decreasing the secretion of stomach acid
+29371,cinch,a form of all fours in which the players bid for the privilege of naming trumps
+29372,cinch breeze picnic snap duck_soup child's_play pushover walkover piece_of_cake,any undertaking that is easy to do; "marketing this product will be no picnic"
+29373,cinch girth,stable gear consisting of a band around a horse's belly that holds the saddle in place
+29374,cinchona chinchona,any of several trees of the genus Cinchona
+29375,cinchona cinchona_bark Peruvian_bark Jesuit's_bark,medicinal bark of cinchona trees; source of quinine and quinidine
+29376,cinchona_tree Cinchona_pubescens,small tree of Ecuador and Peru having very large glossy leaves and large panicles of fragrant pink flowers; cultivated for its medicinal bark
+29377,cinchonine,an alkaloid derivative of the bark of cinchona trees that is used as an antimalarial drug
+29378,cinder clinker,a fragment of incombustible matter left after a wood or coal or charcoal fire
+29379,cinder_block clinker_block breeze_block,a light concrete building block made with cinder aggregate; "cinder blocks are called breeze blocks in Britain"
+29380,cinder_pig,pig iron containing a substantial proportion of slag
+29381,cinder_track,a racetrack paved with fine cinders
+29382,cinema movie_theater movie_theatre movie_house picture_palace,a theater where films are shown
+29383,cinema_verite,a movie that shows ordinary people in actual activities without being controlled by a director
+29384,cineraria Pericallis_cruenta Senecio_cruentus,herb of Canary Islands widely cultivated for its blue or purple or red or variegated daisylike flowers
+29385,cingulate_gyrus gyrus_cinguli,a long curved structure on the medial surface of the cerebral hemispheres; the cortical part of the limbic system
+29386,cingulum,(anatomy) an encircling structure (as the ridge around the base of a tooth)
+29387,cinnabar,a heavy reddish mineral consisting of mercuric sulfide; the chief source of mercury
+29388,cinnabar cinnabar_moth Callimorpha_jacobeae,large red-and-black European moth; larvae feed on leaves of ragwort; introduced into United States to control ragwort
+29389,cinnabar_chanterelle Cantharellus_cinnabarinus,mushroom with a distinctive pink to vermillion fruiting body
+29390,cinnamon,spice from the dried aromatic bark of the Ceylon cinnamon tree; used as rolled strips or ground
+29391,cinnamon Ceylon_cinnamon Ceylon_cinnamon_tree Cinnamomum_zeylanicum,tropical Asian tree with aromatic yellowish-brown bark; source of the spice cinnamon
+29392,cinnamon cinnamon_bark,aromatic bark used as a spice
+29393,cinnamon_bark,aromatic bark of Saigon cinnamon used medicinally as a carminative
+29394,cinnamon_bear,reddish-brown color phase of the American black bear
+29395,cinnamon_bread,bread flavored with cinnamon often containing raisins
+29396,cinnamon_fern fiddlehead fiddlehead_fern Osmunda_cinnamonea,New World fern having woolly cinnamon-colored spore-bearing fronds in early spring later surrounded by green fronds; the early uncurling fronds are edible
+29397,cinnamon_roll cinnamon_bun cinnamon_snail,rolled dough spread with cinnamon and sugar (and raisins) then sliced before baking
+29398,cinnamon_stone essonite hessonite,a garnet ranging in color from yellow to brown
+29399,cinnamon_toast,buttered toast with sugar and cinnamon (and nutmeg and grated lemon peel)
+29400,cinnamon_vine Chinese_yam Dioscorea_batata,hardy Chinese vine naturalized in United States and cultivated as an ornamental climber for its glossy heart-shaped cinnamon-scented leaves and in the tropics for its edible tubers
+29401,cinquefoil,an ornamental carving consisting of five arcs arranged in a circle
+29402,cinquefoil five-finger,any of a numerous plants grown for their five-petaled flowers; abundant in temperate regions; alleged to have medicinal properties
+29403,cipher cypher,a message written in a secret code
+29404,cipher cypher cryptograph secret_code,a secret method of writing
+29405,cipher cypher nobody nonentity,a person of no influence
+29406,ciprofloxacin Cipro,an oral antibiotic (trade name Cipro) used against serious bacterial infections of the skin or respiratory tract or urinary tract or bones or joints
+29407,circadian_rhythm,a daily cycle of activity observed in many living organisms
+29408,circle,something approximating the shape of a circle; "the chairs were arranged in a circle"
+29409,circle,ellipse in which the two axes are of equal length; a plane curve generated by one point moving at a constant distance from a fixed point; "he calculated the circumference of the circle"
+29410,circle dress_circle,a curved section or tier of seats in a hall or theater or opera house; usually the first tier above the orchestra; "they had excellent seats in the dress circle"
+29411,circle round,any circular or rotating mechanism; "the machine punched out metal circles"
+29412,circle_of_Willis,a ring of arteries at the base of the brain
+29413,circle_of_curvature osculating_circle,the circle that touches a curve (on the concave side) and whose radius is the radius of curvature
+29414,circlet,a small circle
+29415,circlet,decorated metal band worn around the head
+29416,circuit,an established itinerary of venues or events that a particular group of people travel to; "she's a familiar name on the club circuit"; "on the lecture circuit"; "the judge makes a circuit of the courts in his district"; "the international tennis circuit"
+29417,circuit,(law) a judicial division of a state or the United States (so-called because originally judges traveled and held court in different locations); one of the twelve groups of states in the United States that is covered by a particular circuit court of appeals
+29418,circuit electrical_circuit electric_circuit,an electrical device that provides a path for electrical current to flow
+29419,circuit_board circuit_card board card plug-in add-in,a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities
+29420,circuit_breaker breaker,a device that trips like a switch and opens the circuit when overloaded
+29421,circuit_court_of_appeals,one of the twelve federal United States courts of appeals that cover a group of states known as a `circuit'
+29422,circuitry,electronic equipment consisting of a system of circuits
+29423,circular handbill bill broadside broadsheet flier flyer throwaway,an advertisement (usually printed on a page or in a leaflet) intended for wide distribution; "he mailed the circular to all subscribers"
+29424,circular_measure,measurement of angles in radians
+29425,circular_plane compass_plane,a plane with a flexible face that can plane concave or convex surfaces
+29426,circular_saw buzz_saw,a power saw that has a steel disk with cutting teeth on the periphery; rotates on a spindle
+29427,circularity disk_shape,the roundness of a 2-dimensional figure
+29428,circularization circularisation,circulating printed notices as a means of advertising
+29429,circulating_decimal recurring_decimal repeating_decimal,a decimal with a sequence of digits that repeats itself indefinitely
+29430,circulation,(library science) the count of books that are loaned by a library over a specified period
+29431,circulation,number of copies of a newspaper or magazine that are sold; "by increasing its circulation the newspaper hoped to increase its advertising"
+29432,circulation,movement through a circuit; especially the movement of blood through the heart and blood vessels
+29433,circulation,free movement or passage (as of cytoplasm within a cell or sap through a plant); "ocean circulation is an important part of global climate"; "a fan aids air circulation"
+29434,circulation,the dissemination of copies of periodicals (as newspapers or magazines)
+29435,circulation,the spread or transmission of something (as news or money) to a wider group or area
+29436,circulatory_failure,failure of the cardiovascular system to supply adequate amounts of blood to body tissues
+29437,circulatory_system cardiovascular_system,the organs and tissues involved in circulating blood and lymph through the body
+29438,circumcision,the act of circumcising performed on males eight days after birth as a Jewish and Muslim religious rite
+29439,circumcision,the act of circumcising; surgical removal of the foreskin of males
+29440,circumduction,a circular movement of a limb or eye
+29441,circumference,the length of the closed curve of a circle
+29442,circumference circuit,the boundary line encompassing an area or object; "he had walked the full circumference of his land"; "a danger to all races over the whole circumference of the globe"
+29443,circumference perimeter,the size of something as given by the distance around it
+29444,circumflex,a diacritical mark (^) placed above a vowel in some languages to indicate a special phonetic quality
+29445,circumflex_artery,any of several paired curving arteries
+29446,circumflex_artery_of_the_thigh arteria_circumflexa_femoris,an artery that supplies the hip joint and thigh muscles
+29447,circumflex_femoral_vein vena_circumflexus_femoris,either of two veins that accompany arteries of the same name serving the hip and thigh
+29448,circumflex_humeral_artery arteria_circumflexa_humeri,an artery that supplies the shoulder joint and shoulder muscles
+29449,circumflex_iliac_artery arteria_circumflexa_ilium,an artery that supplies the lower abdominal walls and skin and the sartorius muscle
+29450,circumflex_iliac_vein vena_circumflexa_ilium,accompanies the artery of the same name
+29451,circumflex_scapular_artery arteria_circumflexa_scapulae,an artery that serves the muscles of the shoulder and scapular area
+29452,circumflex_vein vena_circumflexa,any of several curved parallel veins accompanying arteries of the same name
+29453,circumlocution indirect_expression,an indirect way of expressing something
+29454,circumlocution periphrasis ambage,a style that involves indirect ways of expressing things
+29455,circumnavigation,traveling around something (by ship or plane); "Magellan's circumnavigation of the earth proved that it is a globe"
+29456,circumscription,the act of circumscribing
+29457,circumspection caution,the trait of being circumspect and prudent
+29458,circumstance,a condition that accompanies or influences some event or activity
+29459,circumstance,formal ceremony about important occasions; "pomp and circumstance"
+29460,circumstance condition consideration,information that should be kept in mind when making a decision; "another consideration is the time it would take"
+29461,circumstances,a person's financial situation (good or bad); "he found himself in straitened circumstances"
+29462,circumstantial_evidence indirect_evidence,evidence providing only a basis for inference about the fact in dispute
+29463,circumvention,the act of evading by going around
+29464,circumvolution,the act of turning or winding or folding around a central axis
+29465,circus,a travelling company of entertainers; including trained animals; "he ran away from home to join the circus"
+29466,circus,(antiquity) an open-air stadium for chariot races and gladiatorial games
+29467,circus,an arena consisting of an oval or circular area enclosed by tiers of seats and usually covered by a tent; "they used the elephants to help put up the circus"
+29468,circus,a performance given by a traveling company of acrobats, clowns, and trained animals; "the children always love to go to the circus"
+29469,circus carnival,a frenetic disorganized (and often comic) disturbance suggestive of a large public entertainment; "it was so funny it was a circus"; "the whole occasion had a carnival atmosphere"
+29470,circus_acrobat,an acrobat who performs acrobatic feats in a circus
+29471,circus_tent big_top round_top top,a canvas tent to house the audience at a circus performance; "he was afraid of a fire in the circus tent"; "they had the big top up in less than an hour"
+29472,cirque corrie cwm,a steep-walled semicircular basin in a mountain; may contain a lake
+29473,cirrhosis cirrhosis_of_the_liver,a chronic disease interfering with the normal functioning of the liver; the major cause is chronic alcoholism
+29474,cirrocumulus cirrocumulus_cloud,a cloud at a high altitude consisting of a series of regularly arranged small clouds resembling ripples
+29475,cirrostratus cirrostratus_cloud,a thin uniform layer of hazy cloud at high altitude
+29476,cirrus,a slender flexible animal appendage as on barnacles or crinoids or many insects; often tactile
+29477,cirrus cirrhus,usually coiled
+29478,cirrus cirrus_cloud,a wispy white cloud (usually of fine ice crystals) at a high altitude (4 to 8 miles)
+29479,cisco lake_herring Coregonus_artedi,important food fish of cold deep lakes of North America
+29480,cistern,an artificial reservoir for storing liquids; especially an underground tank for storing rainwater
+29481,cistern water_tank,a tank that holds the water used to flush a toilet
+29482,cisterna cistern,a sac or cavity containing fluid especially lymph or cerebrospinal fluid
+29483,citation,(law) the act of citing (as of spoken words or written passages or legal precedents etc.)
+29484,citation,a summons that commands the appearance of a party at a proceeding
+29485,citation cite acknowledgment credit reference mention quotation,a short note recognizing a source of information or of a quoted passage; "the student's essay failed to list several important citations"; "the acknowledgments are usually printed at the front of a book"; "the article includes mention of similar clinical cases"
+29486,citation commendation,an official award (as for bravery or service) usually given as formal public statement
+29487,citation_form main_entry_word entry_word,the form of a word that heads a lexical entry and is alphabetized in a dictionary
+29488,citizen,a native or naturalized member of a state or other political community
+29489,citizenry people,the body of citizens of a state or country; "the Spanish people"
+29490,citizenship,the status of a citizen with rights and duties
+29491,citizenship,conduct as a citizen; "award for good citizenship"
+29492,citrange,more aromatic and acid tasting than oranges; used in beverages and marmalade
+29493,citrange citrange_tree Citroncirus_webberi,more aromatic and acidic than oranges
+29494,citrate,a salt or ester of citric acid
+29495,citric_acid,a weak water-soluble acid found in many fruits (especially citrus fruits); used as a flavoring agent
+29496,citrine,semiprecious yellow quartz resembling topaz
+29497,citron,large lemonlike fruit with thick aromatic rind; usually preserved
+29498,citron citron_tree Citrus_medica,thorny evergreen small tree or shrub of India widely cultivated for its large lemonlike fruits that have thick warty rind
+29499,citronwood,wood of a citron tree
+29500,citrophilous_mealybug citrophilus_mealybug Pseudococcus_fragilis,destructive especially to citrus
+29501,citrulline,an amino acid that does not occur in proteins but is an intermediate in the conversion of ornithine to arginine
+29502,citrus citrus_fruit citrous_fruit,any of numerous fruits of the genus Citrus having thick rind and juicy pulp; grown in warm regions
+29503,citrus citrus_tree,any of numerous tropical usually thorny evergreen trees of the genus Citrus having leathery evergreen leaves and widely cultivated for their juicy edible fruits having leathery aromatic rinds
+29504,citrus_mealybug Planococcus_citri,feeds on a wide variety of cultivated plants but especially destructive to citrus
+29505,citrus_whitefly Dialeurodes_citri,whitefly that attacks citrus trees
+29506,cittern cithern cither citole gittern,a 16th century musical instrument resembling a guitar with a pear-shaped soundbox and wire strings
+29507,city,an incorporated administrative district established by state charter; "the city raised the tax rate"
+29508,city metropolis,people living in a large densely populated municipality; "the city voted for Republicans in 1994"
+29509,city metropolis urban_center,a large and densely populated urban area; may include several independent administrative districts; "Ancient Troy was a great city"
+29510,city_center city_centre central_city,the central part of a city
+29511,city_council,a municipal body that can pass ordinances and appropriate funds etc.
+29512,city_desk city_room,the editorial department of a newspaper that edits the local news
+29513,city_district,a district of a town or city
+29514,city_editor,the newspaper editor in charge of editing local news
+29515,city_father,an important municipal official
+29516,city_hall,a building that houses administrative offices of a municipal government
+29517,city_limit city_limits,the limits of the area occupied by a city or town
+29518,city_line,the boundary of a city
+29519,city_man,a financier who works in one of the banks in the City of London
+29520,city_planning town_planning urban_planning,determining and drawing up plans for the future physical arrangement and condition of a community
+29521,city_slicker city_boy,a city dweller with sophisticated manners and clothing
+29522,city_state city-state,a state consisting of a sovereign city
+29523,city_university,an urban university in a large city
+29524,cityscape,a viewpoint toward a city or other heavily populated area; "the dominant character of the cityscape is it poverty"
+29525,cityscape,painting depicting a city or urban area
+29526,civet civet_cat,cat-like mammal typically secreting musk used in perfumes
+29527,civic_center municipal_center down_town,the center of a city
+29528,civic_duty civic_responsibility,the responsibilities of a citizen
+29529,civic_leader civil_leader,a leader in municipal affairs
+29530,civic_pride civic_spirit,pride in your city
+29531,civics,the social science of municipal affairs
+29532,civies civvies,civilian garb as opposed to a military uniform
+29533,civil_action,legal action to protect a private civil right or to compel a civil remedy (as distinguished from criminal prosecution)
+29534,civil_authority civil_officer,a person who exercises authority over civilian affairs
+29535,civil_censorship,military censorship of civilian communications (correspondence or printed matter of films) entering or leaving of circulating within territories controlled by armed forces
+29536,civil_contempt,a failure to follow a court order that benefits someone else
+29537,civil_death,the legal status of a person who is alive but who has been deprived of the rights and privileges of a citizen or a member of society; the legal status of one sentenced to life imprisonment
+29538,civil_defense,activities organized by civilians for their own protection in time of war or disaster
+29539,civil_disobedience,a group's refusal to obey a law because they believe the law is immoral (as in protest against discrimination); "Thoreau wrote a famous essay justifying civil disobedience"
+29540,civil_engineer,an engineer trained to design and construct and maintain public works (roads or bridges or harbors etc.)
+29541,civil_engineering,the branch of engineering concerned with the design and construction of such public works as dams or bridges
+29542,civil_law,the body of laws established by a state or nation for its own regulation
+29543,civil_libertarian,a libertarian who is actively concerned with the protection of civil liberties
+29544,civil_liberty,fundamental individual right protected by law and expressed as immunity from unwarranted governmental interference
+29545,civil_liberty political_liberty,one's freedom to exercise one's rights as guaranteed under the laws of the country
+29546,civil_marriage,a marriage performed by a government official rather than by a clergyman
+29547,civil_order polity,the form of government of a social organization
+29548,civil_right,right or rights belonging to a person by reason of citizenship including especially the fundamental freedoms and privileges guaranteed by the 13th and 14th amendments and subsequent acts of Congress including the right to legal and social and economic equality
+29549,civil_rights_leader civil_rights_worker civil_rights_activist,a leader of the political movement dedicated to securing equal opportunity for members of minority groups
+29550,civil_servant,a public official who is a member of the civil service
+29551,civil_service,government workers; usually hired on the basis of competitive examinations
+29552,civil_suit,a lawsuit alleging violations of civil law by the defendant
+29553,civil_time standard_time local_time,the official time in a local region (adjusted for location around the Earth); established by law or custom
+29554,civil_union,a voluntary union for life (or until divorce) of adult parties of the same sex; "parties to a civil union have all the same benefits, protections, and responsibilities under Vermont law as spouses in a marriage"
+29555,civil_war,a war between factions in the same country
+29556,civilian,a nonmilitary citizen
+29557,civilian_clothing civilian_dress civilian_garb plain_clothes,ordinary clothing as distinguished from uniforms, work clothes, clerical garb, etc.
+29558,civility,formal or perfunctory politeness
+29559,civilization civilisation,the social process whereby societies achieve an advanced stage of development and organization
+29560,civilization civilisation,a society in an advanced state of social development (e.g., with complex legal and political and religious organizations); "the people slowly progressed from barbarism to civilization"
+29561,clabber,raw milk that has soured and thickened
+29562,clack clap,a sharp abrupt noise as if two objects hit together; may be repeated
+29563,clack_valve clack clapper_valve,a simple valve with a hinge on one side; allows fluid to flow in only one direction
+29564,clade,a group of biological taxa or species that share features inherited from a common ancestor
+29565,cladistics cladistic_analysis,a taxonomic system of classifying species based on the branching patterns of cladograms that are built to infer phylogenetic relations
+29566,cladode cladophyll phylloclad phylloclade,a flattened stem resembling and functioning as a leaf
+29567,cladogram,a tree diagram used to illustrate phylogenetic relationships
+29568,claim,an assertion that something is true or factual; "his claim that he was innocent"; "evidence contradicted the government's claims"
+29569,claim,an assertion of a right (as to money or property); "his claim asked for damages"
+29570,claim,demand for something as rightful or due; "they struck in support of their claim for a shorter work day"
+29571,claim title,an informal right to something; "his claim on her attentions"; "his title to fame"
+29572,claim_form,a form to use when filing a claim
+29573,claim_jumper,one who illegally occupies property to which another has a legal claim
+29574,claimant,someone who claims a benefit or right or title; "claimants of unemployment compensation"; "he was a claimant to the throne"
+29575,claiming_race,a horse race in which each owner declares before the race at what price his horse will be offered for sale after the race
+29576,clairvoyance second_sight extrasensory_perception E.S.P. ESP,apparent power to perceive things that are not present to the senses
+29577,clairvoyant,someone who has the power of clairvoyance
+29578,clam,flesh of either hard-shell or soft-shell clams
+29579,clam,burrowing marine mollusk living on sand or mud; the shell closes with viselike firmness
+29580,clam_chowder,chowder containing clams
+29581,clam_dip,a dip made of clams and soft cream cheese
+29582,clambake,a cookout at the seashore where clams and fish and other foods are cooked--usually on heated stones covered with seaweed
+29583,clamber,an awkward climb; "reaching the crest was a real clamber"
+29584,clammy_locust Robinia_viscosa,small rough-barked locust of southeastern United States having racemes of pink flowers and glutinous branches and seeds
+29585,clammyweed Polanisia_graveolens Polanisia_dodecandra,strong-scented herb common in southern United States covered with intermixed gland and hairs
+29586,clamor clamoring clamour clamouring hue_and_cry,loud and persistent outcry from many people; "he ignored the clamor of the crowd"
+29587,clamp clinch,a device (generally used by carpenters) that holds things firmly together
+29588,clampdown,sudden restriction on an activity
+29589,clamshell,the shell of a clam
+29590,clamshell grapple,a dredging bucket with hinges like the shell of a clam
+29591,clandestine_operation,an intelligence operation so planned and executed as to insure concealment
+29592,clang clangor clangour clangoring clank clash crash,a loud resonant repeating noise; "he could hear the clang of distant bells"
+29593,clanger,a conspicuous mistake whose effects seem to reverberate; "he dropped a clanger"
+29594,clannishness cliquishness exclusiveness,tendency to associate with only a select group
+29595,clansman clanswoman clan_member,a member of a clan
+29596,clapboard weatherboard weatherboarding,a long thin board with one edge thicker than the other; used as siding by lapping one board over the board below
+29597,clapper applauder,someone who applauds
+29598,clapper tongue,metal striker that hangs inside a bell and makes a sound by hitting the side
+29599,clapperboard,photographic equipment used to synchronize sound and motion picture; boards held in front of a movie camera are banged together
+29600,claque,a group of followers hired to applaud at a performance
+29601,clarence,a closed carriage with four wheels and seats for four passengers
+29602,claret,a dark purplish-red color
+29603,claret red_Bordeaux,dry red Bordeaux or Bordeaux-like wine
+29604,claret_cup,a punch made of claret and brandy with lemon juice and sugar and sometimes sherry or curacao and fresh fruit
+29605,clarification elucidation illumination,an interpretation that removes obstacles to understanding; "the professor's clarification helped her to understand the textbook"
+29606,clarified_butter drawn_butter,butter made clear by heating and removing the sediment of milk solids
+29607,clarinet,a single-reed instrument with a straight tube
+29608,clarinet_section,the section of a band or orchestra that plays clarinets
+29609,clarinetist clarinettist,a musician who plays the clarinet
+29610,clarion,a medieval brass instrument with a clear shrill tone
+29611,clarity lucidity lucidness pellucidity clearness limpidity,free from obscurity and easy to understand; the comprehensibility of clear expression
+29612,claro,a cigar made with light-colored tobacco
+29613,clary Salvia_sclarea,aromatic herb of southern Europe; cultivated in Great Britain as a potherb and widely as an ornamental
+29614,clary_sage,fresh leaves used in omelets and fritters and with lamb
+29615,clary_sage Salvia_clarea,stout Mediterranean sage with white or pink or violet flowers; yields oil used as a flavoring and in perfumery
+29616,clash,a state of conflict between colors; "her dress was a disturbing clash of colors"
+29617,clash friction,a state of conflict between persons
+29618,clasp,a fastener (as a buckle or hook) that is used to hold two things together
+29619,clasp clench clutch clutches grasp grip hold,the act of grasping; "he released his clasp on my arm"; "he has a strong grip for an old man"; "she kept a firm hold on the railing"
+29620,clasp_knife jackknife,a large knife with one or more folding blades
+29621,class,(biology) a taxonomic group containing one or more orders
+29622,class,elegance in dress or behavior; "she has a lot of class"
+29623,class category family,a collection of things sharing a common attribute; "there are two classes of detergents"
+29624,class division,a league ranked by quality; "he played baseball in class D for two years"; "Princeton is in the NCAA Division 1-AA"
+29625,class form grade course,a body of students who are taught together; "early morning classes are always sleepy"
+29626,class stratum social_class socio-economic_class,people having the same social, economic, or educational status; "the working class"; "an emerging professional class"
+29627,class year,a body of students who graduate together; "the class of '97"; "she was in my year at Hoehandle High"
+29628,class_Cyanobacteria Cyanophyceae class_Cyanophyceae,photosynthetic bacteria found in fresh and salt water, having chlorophyll a and phycobilins; once thought to be algae: blue-green algae
+29629,class_act,someone who shows impressive and stylish excellence
+29630,class_action class-action_suit,a lawsuit brought by a representative member of a large group of people on behalf of all members of the group
+29631,class_feeling,feelings of envy and resentment of one social or economic class for toward another
+29632,class_list honours_list,a list issued by examiners that categorizes students according to the class of honours they achieved in their degree examinations
+29633,class_structure,the organization of classes within a society
+29634,class_struggle class_war class_warfare,conflict between social or economic classes (especially between the capitalist and proletariat classes)
+29635,classic,an artist who has created classic works
+29636,classic,a creation of the highest excellence
+29637,classic_hemochromatosis idiopathic_hemochromatosis,inherited form of hemochromatosis
+29638,classical_Latin,the language of educated people in ancient Rome; "Latin is a language as dead as dead can be. It killed the ancient Romans--and now it's killing me"
+29639,classical_architecture Greco-Roman_architecture,architecture influenced by the ancient Greeks or Romans
+29640,classical_ballet,a style of ballet based on precise conventional steps performed with graceful and flowing movements
+29641,classical_conditioning,conditioning that pairs a neutral stimulus with a stimulus that evokes a reflex; the stimulus that evokes the reflex is given whether or not the conditioned response occurs until eventually the neutral stimulus comes to evoke the reflex
+29642,classical_mechanics Newtonian_mechanics,the branch of mechanics based on Newton's laws of motion
+29643,classical_music classical serious_music,traditional genre of music conforming to an established form and appealing to critical interest and developed musical taste
+29644,classical_mythology,the system of mythology of the Greeks and Romans together; much of Roman mythology (especially the gods) was borrowed from the Greeks
+29645,classical_style,the artistic style of ancient Greek art with its emphasis on proportion and harmony
+29646,classicism classicalism,a movement in literature and art during the 17th and 18th centuries in Europe that favored rationality and restraint and strict forms; "classicism often derived its models from the ancient Greeks and Romans"
+29647,classicist,an artistic person who adheres to classicism
+29648,classicist classical_scholar,a student of ancient Greek and Latin
+29649,classics,study of the literary works of ancient Greece and Rome
+29650,classification,restriction imposed by the government on documents or weapons that are available only to certain authorized people
+29651,classification categorization categorisation,a group of people or things arranged by class or category
+29652,classification categorization categorisation sorting,the basic cognitive process of arranging into classes or categories
+29653,classification_system,a system for classifying things
+29654,classified_ad classified_advertisement classified,a short ad in a newspaper or magazine (usually in small print) and appearing along with other ads of the same type
+29655,classified_stock,common stock classified as A or B where A has certain advantages (e.g., voting power) that B does not
+29656,classifier,a person who creates classifications
+29657,classifier,a word or morpheme used in some languages in certain contexts (such as counting) to indicate the semantic class to which the counted item belongs
+29658,classroom schoolroom,a room in a school where lessons take place
+29659,classroom_project,a school task requiring considerable effort
+29660,classwork,the part of a student's work that is done in the classroom
+29661,clast,(geology) a constituent fragment of a clastic rock
+29662,clastic_rock,(geology) a rock composed of broken pieces of older rocks
+29663,clatter,a rattling noise (often produced by rapid movement); "the shutters clattered against the house"; "the clatter of iron wheels on cobblestones"
+29664,clause,(grammar) an expression including a subject and predicate functioning as a part of a complex sentence
+29665,claustrophobe,a person suffering from claustrophobia
+29666,claustrophobia,a morbid fear of being closed in a confined space
+29667,claustrum,a layer of grey matter in the brain adjacent to the lenticular nucleus
+29668,clavichord,an early stringed instrument like a piano but with more delicate sound
+29669,clavicle collarbone,bone linking the scapula and sternum
+29670,clavier Klavier,a stringed instrument that has a keyboard
+29671,claw,sharp curved horny process on the toe of a bird or some mammals or reptiles
+29672,claw,a bird's foot
+29673,claw chela nipper pincer,a grasping structure on the limb of a crustacean or other arthropods
+29674,claw_hatchet,a hatchet that has a cleft for pulling nails
+29675,clawback,finding a way to take money back from people that they were given in another way; "the Treasury will find some clawback for the extra benefits members received"
+29676,clawfoot pes_cavus,a deformity of the foot characterized by an abnormally high arch and hyperextension of the toes which gives the foot the appearance of a claw
+29677,clay,a very fine-grained soil that is plastic when moist but hard when fired
+29678,clay-colored_robin Turdus_greyi,robin of Mexico and Central America
+29679,clay_pigeon,target used in skeet or trapshooting
+29680,clay_pipe,a pipe made of clay
+29681,claymore,a large double-edged broadsword; formerly used by Scottish Highlanders
+29682,claymore_mine claymore,an antipersonnel land mine whose blast is aimed at the oncoming enemy
+29683,claystone,fine-grained rock consisting of compacted clay particles
+29684,clean_and_jerk clean,a weightlift in which the barbell is lifted to shoulder height and then jerked overhead
+29685,clean_bill_of_health,an assurance that someone is healthy or something is in good condition; "the doctor gave him a clean bill of health"
+29686,clean_bomb,an atom bomb leaving little or no radioactive contamination
+29687,clean_room white_room,a room that is virtually free of dust or bacteria; used in laboratory work and in assembly or repair of precision equipment
+29688,cleaner,someone whose occupation is cleaning
+29689,cleaner dry_cleaner,the operator of dry-cleaning establishment
+29690,cleaners dry_cleaners,shop where dry cleaning is done
+29691,cleaning cleansing cleanup,the act of making something clean; "he gave his shoes a good cleaning"
+29692,cleaning_implement cleaning_device cleaning_equipment,any of a large class of implements used for cleaning
+29693,cleaning_pad,a pad used as a cleaning implement
+29694,cleanliness,the habit of keeping free of superficial imperfections
+29695,cleanliness,diligence in keeping clean
+29696,cleanness,the state of being clean; without dirt or other impurities
+29697,cleanness,without moral defects
+29698,cleansing_agent cleanser cleaner,a preparation used in cleaning something
+29699,cleanup cleanup_position cleanup_spot,(baseball) the fourth position in the batting order (usually filled by the best batter on the team)
+29700,clear,the state of being free of suspicion; "investigation showed that he was in the clear"
+29701,clear-air_turbulence,strong turbulence in an otherwise cloudless region that subjects aircraft to violent updrafts or downdrafts
+29702,clear_and_present_danger,a standard for judging when freedom of speech can be abridged; "no one has a right to shout `fire' in a crowded theater when there is no fire because such an action would pose a clear and present danger to public safety"
+29703,clear_liquid_diet,a diet of fluids with minimal residues (fat-free broth or strained fruit juices or gelatin); cannot be used for more than one day postoperative
+29704,clearance,the distance by which one thing clears another; the space between them
+29705,clearance,permission to proceed; "the plane was given clearance to land"
+29706,clearance_sale inventory-clearance_sale,a sale to reduce inventory
+29707,clearing,the act of freeing from suspicion
+29708,clearing clarification,the act of removing solid particles from a liquid
+29709,clearing glade,a tract of land with few or no trees in the middle of a wooded area
+29710,clearing_house,a central collection place where banks exchange checks or drafts; participants maintain an account against which credits or debits are posted
+29711,clearness clarity uncloudedness,the quality of clear water; "when she awoke the clarity was back in her eyes"
+29712,clearway,a road on which you are not allowed to stop (unless you have a breakdown)
+29713,cleat,a metal or leather projection (as from the sole of a shoe); prevents slipping
+29714,cleat,a fastener (usually with two projecting horns) around which a rope can be secured
+29715,cleat,a strip of wood or metal used to strengthen the surface to which it is attached
+29716,cleats,shoes with leather or metal projections on the soles; "the football players all wore cleats"
+29717,cleavage,the state of being split or cleft; "there was a cleavage between the liberal and conservative members"
+29718,cleavage,the breaking of a chemical bond in a molecule resulting in smaller molecules
+29719,cleavage,the line formed by a groove between two parts (especially the separation between a woman's breasts)
+29720,cleavage,the act of cleaving or splitting
+29721,cleavage segmentation,(embryology) the repeated division of a fertilised ovum
+29722,cleaver meat_cleaver chopper,a butcher's knife having a large square blade
+29723,cleavers clivers goose_grass catchweed spring_cleavers Galium_aparine,annual having the stem beset with curved prickles; North America and Europe and Asia
+29724,clef,a musical notation written on a staff indicating the pitch of the notes following it
+29725,cleft,a split or indentation in something (as the palate or chin)
+29726,cleft_foot,a deformity in which the space between the third and fourth toes extends up into the foot
+29727,cleft_lip harelip cheiloschisis,a congenital cleft in the middle of the upper lip
+29728,cleft_palate,a congenital fissure of the hard palate
+29729,cleistogamy,the production of small nonopening self-pollinating flowers
+29730,cleistothecium cleistocarp,closed spore-bearing structure of some fungi (especially Aspergillaceae and Erysiphaceae) from which spores are released only by decay or disintegration
+29731,clematis,any of various ornamental climbing plants of the genus Clematis usually having showy flowers
+29732,clemency mercifulness mercy,leniency and compassion shown toward offenders by a person or agency charged with administering justice; "he threw himself on the mercy of the court"
+29733,clementine,a mandarin orange of a deep reddish orange color and few seeds
+29734,clementine clementine_tree,a variety of mandarin orange that is grown around the Mediterranean and in South Africa
+29735,clerestory clearstory,part of an interior wall rising above the adjacent roof with windows admitting light
+29736,clergy,in Christianity, clergymen collectively (as distinguished from the laity)
+29737,clergyman reverend man_of_the_cloth,a member of the clergy and a spiritual leader of the Christian Church
+29738,cleric churchman divine ecclesiastic,a clergyman or other person in religious orders
+29739,clerical_collar Roman_collar dog_collar,a stiff white collar with no opening in the front; a distinctive symbol of the clergy
+29740,clericalism,a policy of supporting the influence and power of the clergy in secular or political matters
+29741,clericalist,one who advocates clericalism
+29742,clerid_beetle clerid,predacious on other insects; usually brightly colored or metallic
+29743,clerihew,a witty satiric verse containing two rhymed couplets and mentioning a famous person; "`The president is George W. Bush, Who is happy to sit on his tush, While sending his armies to fight, For anything he thinks is right' is a clerihew"
+29744,clerk,an employee who performs clerical work (e.g., keeps records or accounts)
+29745,clerkship,the job of clerk
+29746,clever_Dick clever_clogs,an intellectual who is ostentatiously and irritatingly knowledgeable
+29747,clevis,a coupler shaped like the letter U with holes through each end so a bolt or pin can pass through the holes to complete the coupling; used to attach a drawbar to a plow or wagon or trailer etc.
+29748,clew,a ball of yarn or cord or thread
+29749,clews,the cords used to suspend a hammock
+29750,click mouse_click,depression of a button on a computer mouse; "a click on the right button for example"
+29751,click-clack,a succession of clicks
+29752,click_beetle skipjack snapping_beetle,able to right itself when on its back by flipping into the air with a clicking sound
+29753,clickety-clack clickety-click,a fast and rhythmic click-clack; "the clickety-clack of the typewriters"
+29754,client,a person who seeks the advice of a lawyer
+29755,client-centered_therapy,a method of psychotherapy developed by Carl Rogers in which the client determines the focus and pace of each session
+29756,clientage,relation of a client to a patron
+29757,clientele patronage business,customers collectively; "they have an upper class clientele"
+29758,cliff drop drop-off,a steep high face of rock; "he stood on a high cliff overlooking the town"; "a steep drop"
+29759,cliff_brake cliff-brake rock_brake,any of several small lithophytic ferns of tropical and warm temperate regions
+29760,cliff_diving,diving into the water from a steep overhanging cliff
+29761,cliff_dweller,a member of the Anasazi people living in the southwestern United States who built rock or adobe dwellings on ledges in the sides of caves
+29762,cliff_dwelling,a rock and adobe dwelling built on sheltered ledges in the sides of a cliff; "the Anasazi built cliff dwellings in the southwestern United States"
+29763,cliff_rose sea_pink Armeria_maritima,tufted thrift of seacoasts and mountains of north temperate zone; occasionally grown as a ground cover
+29764,cliff_swallow Hirundo_pyrrhonota,North American swallow that lives in colonies and builds bottle-shaped mud nests on cliffs and walls
+29765,cliffhanger,a contest whose outcome is uncertain up to the very end
+29766,cliffhanger,an episode that ends in suspense
+29767,climacteric,a period in a man's life corresponding to menopause
+29768,climate clime,the weather in some location averaged over some long period of time; "the dank climate of southern Wales"; "plants from a cold clime travel best in winter"
+29769,climate mood,the prevailing psychological state; "the climate of opinion"; "the national mood had changed radically since the last election"
+29770,climate_change global_climate_change,a change in the world's climate
+29771,climatic_zone,any of the geographical zones loosely divided according to prevailing climate and latitude
+29772,climatologist,someone who is expert in climatology
+29773,climatology,meteorology of climates and their phenomena
+29774,climax,the most severe stage of a disease
+29775,climax,arrangement of clauses in ascending order of forcefulness
+29776,climax culmination,the decisive moment in a novel or play; "the deathbed scene is the climax of the play"
+29777,climax flood_tide,the highest point of anything conceived of as growing or developing or unfolding; "the climax of the artist's career"; "in the flood tide of his success"
+29778,climb climbing mounting,an event that involves rising to a higher point (as in altitude or temperature or intensity etc.)
+29779,climb mount,the act of climbing something; "it was a difficult climb to the top"
+29780,climber,a vine or climbing plant that readily grows up a support or over other plants
+29781,climber,someone who climbs as a sport; especially someone who climbs mountains; "the lead climber looked strong still but his partner often slumped in his ropes"
+29782,climbing_bird's_nest_fern Microsorium_punctatum,tropical Africa to Australasia and Polynesia
+29783,climbing_corydalis Corydalis_claviculata Fumaria_claviculata,annual vine with decompound leaves and racemes of yellow and pink flowers
+29784,climbing_fern,any of several ferns of the genus Lygodium that climb by twining
+29785,climbing_frame,a framework of bars or logs for children to climb on
+29786,climbing_fumitory Allegheny_vine Adlumia_fungosa Fumaria_fungosa,vine with feathery leaves and white or pinkish flowers; sometimes placed in genus Fumaria
+29787,climbing_hempweed climbing_boneset wild_climbing_hempweed climbing_hemp-vine Mikania_scandens,herb of tropical America having vanilla-scented flowers; climbs up trees
+29788,climbing_hydrangea Hydrangea_anomala,deciduous climber with aerial roots having white to creamy flowers in fairly flat heads
+29789,climbing_hydrangea Hydrangea_petiolaris,deciduous climber with aerial roots having large flat flower heads
+29790,climbing_hydrangea Schizophragma_hydrangeoides,climbing shrub with adhesive aerial roots having opposite leaves and small white flowers in terminal cymes; Himalayas to Taiwan and Japan
+29791,climbing_maidenhair climbing_maidenhair_fern snake_fern Lygodium_microphyllum,tropical fern widespread in Old World; naturalized in Jamaica and Florida
+29792,climbing_onion Bowiea_volubilis,much-branched leafless twining South African herb cultivated as an ornamental for its bright green stems growing from large aboveground bulbs
+29793,climbing_perch Anabas_testudineus A._testudineus,a small perch of India whose gills are modified to allow it to breathe air; has spiny pectoral fins that enable it to travel on land
+29794,climbing_salamander,any of several North American salamanders adapted for climbing with well-developed limbs and long somewhat squared-off toes
+29795,clinch,the flattened part of a nail or bolt or rivet
+29796,clinch,(boxing) the act of one boxer holding onto the other to avoid being hit and to rest momentarily
+29797,clinch clench,a small slip noose made with seizing
+29798,clincher,a tool used to clinch nails or bolts or rivets
+29799,clincher decisive_factor,a point or fact or remark that settles something conclusively
+29800,clincher determiner determining_factor,an argument that is conclusive
+29801,cling clingstone,fruit (especially peach) whose flesh adheres strongly to the pit
+29802,cling_film clingfilm Saran_Wrap,a thin plastic film made of saran (trade name Saran Wrap) that sticks to itself; used for wrapping food
+29803,clingfish,very small (to 3 inches) flattened marine fish with a sucking disc on the abdomen for clinging to rocks etc.
+29804,clinic,a medical establishment run by a group of medical specialists
+29805,clinic,meeting for diagnosis of problems and instruction or remedial work in a particular activity
+29806,clinic,a healthcare facility for outpatient care
+29807,clinical_anatomy applied_anatomy,the practical application of anatomical knowledge to diagnosis and treatment
+29808,clinical_psychology,the branch of psychology concerned with the treatment of abnormal mentation and behavior
+29809,clinical_thermometer mercury-in-glass_clinical_thermometer,a mercury thermometer designed to measure the temperature of the human body; graduated to cover a range a few degrees on either side of the normal body temperature
+29810,clinical_trial clinical_test,a rigorously controlled test of a new drug or a new invasive medical device on human subjects; in the United States it is conducted under the direction of the FDA before being made available for general clinical use
+29811,clinician,a practitioner (of medicine or psychology) who does clinical work instead of laboratory experiments
+29812,clinid clinid_fish,mostly small blennioid fishes of coral reefs and seagrass beds
+29813,clinker clinker_brick,a hard brick used as a paving stone
+29814,clinocephaly clinocephalism,a congenital defect in which the top of the head is depressed (concave instead of convex)
+29815,clinodactyly,a congenital defect in which one or more toes or fingers are abnormally positioned
+29816,clinometer inclinometer,an instrument used by surveyors in order to measure an angle of inclination or elevation
+29817,clintonia Clinton's_lily,any temperate liliaceous plant of the genus Clintonia having broad basal leaves and white or yellowish or purplish flowers followed by blue or black berries
+29818,clip,an article of jewelry that can be clipped onto a hat or dress
+29819,clip,any of various small fasteners used to hold loose articles together
+29820,clip,a sharp slanting blow; "he gave me a clip on the ear"
+29821,clip clipping snip,the act of clipping or snipping
+29822,clip-clop clippety-clop clop clopping clunking clumping,the sound of a horse's hoofs hitting on a hard surface
+29823,clip-on,a device (as an earring, sunglasses, microphone etc.) that is attached by clips
+29824,clip_art,ready-made pieces of computerized graphic art that can be used to decorate a document
+29825,clip_artist,a swindler who fleeces the victim
+29826,clip_joint,a place of entertainment where high prices are charged for poor entertainment
+29827,clip_lead,a short piece of wire with alligator clips on both ends
+29828,clipboard,a small writing board with a clip at the top for holding papers
+29829,clipper,shears for cutting grass or shrubbery (often used in the plural)
+29830,clipper,scissors for cutting hair or finger nails (often used in the plural)
+29831,clipper clipper_ship,a fast sailing ship used in former times
+29832,clipping newspaper_clipping press_clipping cutting press_cutting,an excerpt cut from a newspaper or magazine; "he searched through piles of letters and clippings"
+29833,clique coterie ingroup inner_circle pack camp,an exclusive circle of people with a common purpose
+29834,clitoral_vein vena_clitoridis,veins that serve the clitoris
+29835,clitoridectomy female_circumcision,excision of the clitoris
+29836,clitoris clit button,a female sexual organ homologous to the penis
+29837,cloaca,(zoology) the cavity (in birds, reptiles, amphibians, most fish, and monotremes but not mammals) at the end of the digestive tract into which the intestinal, genital, and urinary tracts open
+29838,cloak,anything that covers or conceals
+29839,cloak,a loose outer garment
+29840,cloakmaker furrier,someone whose occupation is making or repairing fur garments
+29841,cloakroom,a private lounge off of a legislative chamber
+29842,cloakroom coatroom,a room where coats and other articles can be left temporarily
+29843,cloche,a low transparent cover put over young plants to protect them from cold
+29844,cloche,a woman's close-fitting hat that resembles a helmet
+29845,clock,a timepiece that shows the time of day
+29846,clock-watching,paying excessive attention to the clock (in anticipation of stopping work)
+29847,clock_face clock_dial,the face of a clock showing hours and minutes of the day
+29848,clock_golf,a form of golf in which you putt from positions arranged on the circumference of a circle around the hole
+29849,clock_pendulum,a physical pendulum used to regulate a clockwork mechanism
+29850,clock_radio,a radio that includes a clock that can be set to turn it on automatically
+29851,clock_time time,a reading of a point in time as given by a clock; "do you know what time it is?"; "the time is 10 o'clock"
+29852,clock_tower,a tower with a large clock visible high up on an outside face
+29853,clock_watcher,a worker preoccupied with the arrival of quitting time
+29854,clocking,the time taken to traverse a measured course; "it was a world record clocking"
+29855,clocksmith clockmaker,someone whose occupation is making or repairing clocks and watches
+29856,clockwork,any mechanism of geared wheels that is driven by a coiled spring; resembles the works of a mechanical clock
+29857,clockwork_universe,the view that the universe resembles a clock built by God and ticking along according to Newtonian mechanics
+29858,clofibrate Atromid-S,a drug (trade name Atromid-S) that reduces lipids in the blood serum; used to treat some cardiovascular diseases
+29859,clog,any object that acts as a hindrance or obstruction
+29860,clog geta patten sabot,footwear usually with wooden soles
+29861,clog_dance clog_dancing clog,a dance performed while wearing shoes with wooden soles; has heavy stamping steps
+29862,clog_dancer,someone who does clog dancing
+29863,cloisonne,enamelware in which colored areas are separated by thin metal strips
+29864,cloister,a courtyard with covered walks (as in religious institutions)
+29865,clomiphene clomiphene_citrate Clomid,a fertility drug (trade name Clomid) that is used to stimulate ovulation and that has been associated with multiple births
+29866,clomipramine,a tricyclic antidepressant drug
+29867,clone clon,a group of genetically identical cells or organisms derived from a single cell or individual by some kind of asexual reproduction
+29868,clonidine Catapres,an antihypertensive (trade name Catapres) that can be administered orally or via transdermal patches
+29869,cloning,a general term for the research activity that creates a copy of some biological entity (a gene or organism or cell)
+29870,clonus,convulsion characterized by alternating contractions and relaxations
+29871,clopidogrel_bisulfate Plavix,a blood thinner (trade name Plavix) approved for the treatment of mild heart attacks; works by preventing blood platelets from sticking together to form clots that would restrict blood flow
+29872,close-order_drill,(military) military drill of troops in standard marching (shoulder-to-shoulder)
+29873,close-quarter_fighting,hand-to-hand fighting at close quarters
+29874,close_call close_shave squeak squeaker narrow_escape,something achieved (or escaped) by a narrow margin
+29875,close_order,a military formation for drill or marching
+29876,close_quarters,a situation of being uncomfortably close to someone or something
+29877,close_support,close-in firing by one unit against an enemy engaged by another unit
+29878,close_supporting_fire,fire on enemy troops or weapons or positions that are near the supported unit and are the most immediate and serious threat to it
+29879,closed-circuit_television,a television system that is not used for broadcasting but is connected by cables to designated monitors (as in a factory or theater)
+29880,closed-end_fund closed-end_investment_company,a regulated investment company that issues a fixed number of shares which are listed on a stock market
+29881,closed-heart_surgery,heart surgery in which a small incision is made (the chest cavity is not opened)
+29882,closed_chain ring,(chemistry) a chain of atoms in a molecule that forms a closed loop
+29883,closed_circuit loop,a complete electrical circuit around which current flows or a signal circulates
+29884,closed_corporation close_corporation private_corporation privately_held_corporation,a corporation owned by a few people; shares have no public market
+29885,closed_couplet,a rhymed couplet that forms a complete syntactic unit
+29886,closed_curve,a curve (such as a circle) having no endpoints
+29887,closed_gentian blind_gentian Gentiana_clausa,similar to Gentiana andrewsii but with larger flowers
+29888,closed_gentian blind_gentian bottle_gentian Gentiana_andrewsii,gentian of eastern North America having tubular blue or white flowers that open little if at all
+29889,closed_interval bounded_interval,an interval that includes its endpoints
+29890,closed_loop closed-loop_system,a control system with a feedback loop that is active
+29891,closed_primary,a primary in which only registered members of a particular political party can vote; "closed primaries strengthen party unity"
+29892,closed_shop,a company that hires only union members
+29893,closed_universe,(cosmology) a universe that is spatially closed and in which there is sufficient matter to halt the expansion that began with the big bang; the visible matter is only 10 percent of the matter required for closure but there may be large amounts of dark matter
+29894,closely_held_corporation,stock is publicly traded but most is held by a few shareholders who have no plans to sell
+29895,closeness intimacy,a feeling of being intimate and belonging together; "their closeness grew as the night wore on"
+29896,closeness secretiveness,characterized by a lack of openness (especially about one's actions or purposes)
+29897,closeout,a sale intended to dispose of all remaining stock
+29898,closer,a person who closes something; "whoever is the closer has to turn out the lights and lock up"
+29899,closer finisher,(baseball) a relief pitcher who can protect a lead in the last inning or two of the game
+29900,closet,a small private room for study or prayer
+29901,closet_auger,a snake used to unblock toilets
+29902,closet_drama,drama more suitable for reading that for performing
+29903,closet_queen,a negative term for a homosexual man who chooses not to reveal his sexual orientation
+29904,closeup,a photograph taken at close range
+29905,closeup_lens,a photographic lens with a short focal length used to take pictures at short ranges
+29906,closing closure,approaching a particular destination; a coming closer; a narrowing of a gap; "the ship's rapid rate of closing gave them little time to avoid a collision"
+29907,closing_price,(stock market) the price of the last transaction completed during a day's trading session
+29908,closing_time,the regular time of day when an establishment closes to the public
+29909,clostridium clostridia,spindle-shaped bacterial cell especially one swollen at the center by an endospore
+29910,clostridium_perfringens,anaerobic Gram-positive rod bacterium that produces epsilon toxin; can be used as a bioweapon
+29911,closure closedown closing shutdown,termination of operations; "they regretted the closure of the day care center"
+29912,closure cloture gag_rule gag_law,a rule for limiting or ending debate in a deliberative body
+29913,closure law_of_closure,a Gestalt principle of organization holding that there is an innate tendency to perceive incomplete objects as complete and to close or fill gaps and to perceive asymmetric stimuli as symmetric
+29914,closure_by_compartment guillotine,closure imposed on the debate of specific sections of a bill
+29915,clot coagulum,a lump of material formed from the content of a liquid
+29916,cloth_cap flat_cap,a flat woolen cap with a stiff peak
+29917,cloth_covering,a covering made of cloth
+29918,clothes_closet clothespress,a closet where clothes are stored
+29919,clothes_dryer clothes_drier,a dryer that dries clothes wet from washing
+29920,clothes_hamper laundry_basket clothes_basket voider,a hamper that holds dirty clothes to be washed or wet clothes to be dried
+29921,clothes_moth,any of several small yellowish or buff-colored moths whose larvae eat organic matter e.g. woolens
+29922,clothes_tree coat_tree coat_stand,an upright pole with pegs or hooks on which to hang clothing
+29923,clothesbrush,a brush used for cleaning clothing
+29924,clotheshorse,a framework on which to hang clothes (as for drying)
+29925,clothesline,a cord on which clothes are hung to dry
+29926,clothespin clothes_pin clothes_peg,wood or plastic fastener; for holding clothes on a clothesline
+29927,clothier haberdasher,a merchant who sells men's clothing
+29928,clothing article_of_clothing vesture wear wearable habiliment,a covering designed to be worn on a person's body
+29929,clothing_store haberdashery haberdashery_store mens_store,a store where men's clothes are sold
+29930,clotted_cream Devonshire_cream,thick cream made from scalded milk
+29931,clotting_time,the time it takes for a sample of blood to clot; used to diagnose some clotting disorders
+29932,cloud,a cause of worry or gloom or trouble; "the only cloud on the horizon was the possibility of dissent by the French"
+29933,cloud,suspicion affecting your reputation; "after that mistake he was under a cloud"
+29934,cloud,out of touch with reality; "his head was in the clouds"
+29935,cloud,any collection of particles (e.g., smoke or dust) or gases that is visible
+29936,cloud,a visible mass of water or ice particles suspended at a considerable altitude
+29937,cloud-cuckoo-land,an imaginary place where you say people are when they seem optimistically out of touch with reality
+29938,cloud_bank,a layer of clouds seen from a distance
+29939,cloud_chamber Wilson_cloud_chamber,apparatus that detects the path of high-energy particles passing through a supersaturated vapor; each particle ionizes molecules along its path and small droplets condense on them to produce a visible track
+29940,cloud_grass Agrostis_nebulosa,Spanish grass with light feathery panicles grown for dried bouquets
+29941,cloudberry dwarf_mulberry bakeapple baked-apple_berry salmonberry Rubus_chamaemorus,creeping raspberry of north temperate regions with yellow or orange berries
+29942,cloudiness cloud_cover overcast,the state of the sky when it is covered by clouds
+29943,cloudiness murkiness muddiness,the quality of being cloudy
+29944,cloudiness overcast,gloomy semidarkness caused by cloud cover
+29945,clouding clouding_up,the process whereby water particles become visible in the sky
+29946,cloudlessness,the lightness of a sunny day when there are no clouds in the sky
+29947,clout,a target used in archery
+29948,clout_nail clout,a short nail with a flat head; used to attach sheet metal to wood
+29949,clove,aromatic flower bud of a clove tree; yields a spice
+29950,clove,spice from dried unopened flower bud of the clove tree; used whole or ground
+29951,clove clove_tree Syzygium_aromaticum Eugenia_aromaticum Eugenia_caryophyllatum,moderate sized very symmetrical red-flowered evergreen widely cultivated in the tropics for its flower buds which are source of cloves
+29952,clove garlic_clove,one of the small bulblets that can be split off of the axis of a larger garlic bulb
+29953,clove_hitch,a knot used to fasten a line temporarily to a post or spar
+29954,clove_oil oil_of_cloves,essential oil obtained from cloves and used to flavor medicines
+29955,cloven_foot cloven_hoof,a hoof divided into two parts at its distal extremity (as of ruminants or swine)
+29956,cloven_hoof cloven_foot,the mark of Satan
+29957,clover trefoil,a plant of the genus Trifolium
+29958,clover-leaf_roll,yeast-raised dinner roll made by baking three small balls of dough in each cup of a muffin pan
+29959,clover_fern pepperwort,any of several water ferns of the genus Marsilea having four leaflets
+29960,cloverleaf,an interchange that does not require left-hand turns
+29961,clowder,a group of cats
+29962,clown buffoon,a rude or vulgar fool
+29963,clown buffoon goof goofball merry_andrew,a person who amuses others by ridiculous behavior
+29964,clown_anemone_fish Amphiprion_percula,an anemone fish of the genus Amphiprion
+29965,clozapine Clozaril,an antipsychotic drug (trade name Clozaril) used as a sedative and for treatment-resistant schizophrenia; know to have few side effects
+29966,cloze_procedure cloze_test,a test for diagnosing reading ability; words are deleted from a prose passage and the reader is required to fill in the blanks
+29967,club,a playing card in the minor suit that has one or more black trefoils on it; "he led a small club"; "clubs were trumps"
+29968,club,stout stick that is larger at one end; "he carried a club in self defense"; "he felt as if he had been hit with a club"
+29969,club social_club society guild gild lodge order,a formal association of people with similar interests; "he joined a golf club"; "they formed a small lunch society"; "men from the fraternal order will staff the soup kitchen today"
+29970,club_car lounge_car,railroad car having a bar and tables and lounge chairs
+29971,club_drug,a controlled substance that is usually taken by young people at dance clubs and raves
+29972,club_fungus,a club-shaped coral fungus
+29973,club_member,someone who is a member of a club
+29974,club_moss club-moss lycopod,primitive evergreen moss-like plant with spores in club-shaped strobiles
+29975,club_sandwich three-decker triple-decker,made with three slices of usually toasted bread
+29976,clubbing,a condition in which the ends of toes and fingers become wide and thick; a symptom of heart or lung disease
+29977,clubfoot talipes,congenital deformity of the foot usually marked by a curled shape or twisted position of the ankle and heel and toes
+29978,clubhouse club,a building that is occupied by a social club; "the clubhouse needed a new roof"
+29979,clubroom,a room used for the activities of a club
+29980,clubroot_fungus Plasmodiophora_brassicae,a fungus resembling slime mold that causes swellings or distortions of the roots of cabbages and related plants
+29981,cluck clucking,the sound made by a hen (as in calling her chicks)
+29982,clue clew cue,evidence that helps to solve a problem
+29983,clumber clumber_spaniel,a thickset spaniel with longish silky hair
+29984,clumsy_person,a person with poor motor coordination
+29985,clunch,hardened clay
+29986,clupeid_fish clupeid,any of numerous soft-finned schooling food fishes of shallow waters of northern seas
+29987,clusia,an aromatic tree of the genus Clusia having large white or yellow or pink flowers
+29988,cluster_bomb,bomb consisting of a canister that is dropped from a plane and that opens to release a cluster of bomblets (usually fragmentation bombs) over a wide area; "cluster bombs cannot be targeted precisely"
+29989,cluster_of_differentiation_4 CD4,a glycoprotein that is found primarily on the surface of helper T cells; "CD4 is a receptor for HIV in humans"
+29990,cluster_of_differentiation_8 CD8,a membrane glycoprotein that is found primarily on the surface of cytotoxic T cells
+29991,clustered_bellflower Campanula_glomerata,bellflower of Europe to temperate Asia having dense spikes of violet-blue to white flowers
+29992,clustered_lady's_slipper Cypripedium_fasciculatum,clusters of several short stems each having 2 broad leaves and 2-4 drooping brownish to greenish flowers with pouches mottled with purple; British Columbia to central California and northern Colorado
+29993,clustered_poppy_mallow Callirhoe_triangulata,densely hairy perennial having mostly triangular basal leaves and rose-purple flowers in panicled clusters
+29994,clutch,a tense critical situation; "he is a good man in the clutch"
+29995,clutch,a number of birds hatched at the same time
+29996,clutch,a coupling that connects or disconnects driving and driven parts of a driving mechanism; "this year's model has an improved clutch"
+29997,clutch clutch_pedal,a pedal or lever that engages or disengages a rotating shaft and a driving mechanism; "he smoothely released the clutch with one foot and stepped on the gas with the other"
+29998,clutch_bag clutch,a woman's strapless purse that is carried in the hand
+29999,clutter,unwanted echoes that interfere with the observation of signals on a radar screen
+30000,clutter jumble muddle fuddle mare's_nest welter smother,a confused multitude of things
+30001,clypeus,a shield-like plate on the front of an insect's head
+30002,co-beneficiary,one of two or more beneficiaries of the same benefit
+30003,co-discoverer,someone who is the first of two or more people to discover something
+30004,co-ed college_girl,a female student at a coeducational college or university
+30005,co-option co-optation,the selection of a new member (usually by a vote of the existing membership)
+30006,co-option co-optation,the act of appointing summarily (with or without the appointee's consent)
+30007,co-star,one of two actors who are given equal status as stars in a play or film
+30008,coach four-in-hand coach-and-four,a carriage pulled by four horses with one driver
+30009,coach manager handler,(sports) someone in charge of training an athlete or a team
+30010,coach private_instructor tutor,a person who gives private instruction (as in singing, acting, etc.)
+30011,coach_horse,strong draft horse for drawing coaches
+30012,coach_house carriage_house remise,a small building for housing coaches and carriages and other vehicles
+30013,coachbuilder,a craftsman who makes the bodies of motor vehicles
+30014,coaching coaching_job,the job of a professional coach
+30015,coachman,a man who drives a coach (or carriage)
+30016,coachwhip coachwhip_snake Masticophis_flagellum,a whipsnake of southern United States and Mexico; tail resembles a braided whip
+30017,coadjutor,an assistant to a bishop
+30018,coagulant coagulator,an agent that produces coagulation
+30019,coagulase,an enzyme that induces coagulation
+30020,coagulation_factor clotting_factor,any of the factors in the blood whose actions are essential for blood coagulation
+30021,coal,fossil fuel consisting of carbonized vegetable matter deposited in the Carboniferous period
+30022,coal_black ebony jet_black pitch_black sable soot_black,a very dark black
+30023,coal_car,freight car with fixed sides and no roof; for transporting coal
+30024,coal_chute,a chute for coal
+30025,coal_gas,gaseous mixture produced by distillation of bituminous coal and used for heating and lighting
+30026,coal_house,a shed for storing coal
+30027,coal_industry,the producers of coal considered collectively
+30028,coal_mine coalpit,a mine where coal is dug from the ground
+30029,coal_miner collier pitman,someone who works in a coal mine
+30030,coal_seam,a seam of coal
+30031,coal_shovel,a hand shovel for shoveling coal
+30032,coal_tar,a tar formed from distillation of bituminous coal; coal tar can be further distilled to give various aromatic compounds
+30033,coalbin coalhole,a bin for holding coal
+30034,coalescence coalescency coalition concretion conglutination,the union of diverse things into one body or form or group; the growing together of parts
+30035,coalface,the part of a coal seam that is being cut
+30036,coalfield,a region where there is coal underground
+30037,coaling_station,a seaport where ships can take on supplies of coal
+30038,coalition fusion,the state of being combined into one body
+30039,coalman,someone who delivers coal
+30040,coaming,a raised framework around a hatchway on a ship to keep water out
+30041,coarctation,(biology) a narrowing or constriction of a vessel or canal; especially a congenital narrowing of the aorta
+30042,coarseness commonness grossness vulgarity vulgarism raunch,the quality of lacking taste and refinement
+30043,coarseness graininess granularity,the quality of being composed of relatively large particles
+30044,coarseness nubbiness tweediness,looseness or roughness in texture (as of cloth)
+30045,coast,a slope down which sleds may coast; "when it snowed they made a coast on the golf course"
+30046,coast,the area within view; "the coast is clear"
+30047,coast_boykinia Boykinia_elata Boykinia_occidentalis,plant with leaves mostly at the base and openly branched clusters of small white flowers; western North America
+30048,coast_lily Lilium_maritinum,orange-flowered lily of Pacific coast of United States
+30049,coast_live_oak California_live_oak Quercus_agrifolia,highly variable often shrubby evergreen oak of coastal zone of western North America having small thick usually spiny-toothed dark-green leaves
+30050,coast_rhododendron Rhododendron_californicum,medium-sized rhododendron of Pacific coast of North America having large rosy brown-spotted flowers
+30051,coastal_diving_bird,gull family; skimmer family; jaeger family; auk family
+30052,coastal_plain,a plain adjacent to a coast
+30053,coastal_rein_orchid Habenaria_greenei,stout orchid of central California to northern Washington having racemes of white fragrant bilaterally symmetrical flowers
+30054,coaster,a resident of a coastal area
+30055,coaster,someone who coasts
+30056,coaster,a covering (plate or mat) that protects the surface of a table (i.e., from the condensation on a cold glass or bottle)
+30057,coaster_brake,a brake on a bicycle that engages with reverse pressure on the pedals
+30058,coastguard,a military service responsible for the safety of maritime traffic in coastal waters
+30059,coastguardsman,a member of a coastguard
+30060,coastland,land in a coastal area
+30061,coastline,the outline of a coast
+30062,coat,an outer garment that has sleeves and covers the body from shoulder down; worn outdoors
+30063,coat pelage,growth of hair or wool or fur covering the body of an animal
+30064,coat_button,a button on a coat
+30065,coat_closet,a closet for storing outerwear
+30066,coat_hanger clothes_hanger dress_hanger,a hanger that is shaped like a person's shoulders and used to hang garments on
+30067,coat_of_arms arms blazon blazonry,the official symbols of a family, state, etc.
+30068,coat_of_paint,a layer of paint covering something else
+30069,coatdress,a dress that is tailored like a coat and buttons up the front
+30070,coatee,a short close-fitting coat
+30071,coati coati-mondi coati-mundi coon_cat Nasua_narica,omnivorous mammal of Central America and South America
+30072,coating,a heavy fabric suitable for coats
+30073,coating coat,a thin layer covering something; "a second coat of paint"
+30074,coating finish finishing,a decorative texture or appearance of a surface (or the substance that gives it that appearance); "the boat had a metallic finish"; "he applied a coat of a clear finish"; "when the finish is too thin it is difficult to apply evenly"
+30075,coatrack coat_rack hatrack,a rack with hooks for temporarily holding coats and hats
+30076,coattail,the loose back flap of a coat that hangs below the waist
+30077,coattails_effect,(politics) the consequence of one popular candidate in an election drawing votes for other members of the same political party; "he counted on the coattails effect to win him the election"
+30078,coauthor joint_author,a writer who collaborates with others in writing something
+30079,coaxial_cable coax coax_cable,a transmission line for high-frequency signals
+30080,cob,stocky short-legged harness horse
+30081,cob,adult male swan
+30082,cobalt Co atomic_number_27,a hard ferromagnetic silver-white bivalent or trivalent metallic element; a trace element in plant and animal nutrition
+30083,cobalt_60,a radioactive isotope of cobalt with mass number 60; a source of exceptionally intense gamma rays; used in radiation therapy
+30084,cobalt_blue cobalt_ultramarine,greenish-blue pigment consisting essentially of cobalt oxide and alumina
+30085,cobaltite,a rare silvery-white mineral; important ore of cobalt
+30086,cobber,Australian term for a pal
+30087,cobble cobblestone sett,rectangular paving stone with curved top; once used to make roads
+30088,cobbler,tall sweetened iced drink of wine or liquor with fruit
+30089,cobbler shoemaker,a person who makes or repairs shoes
+30090,cobblers,nonsense; "I think that is a load of cobblers"
+30091,cobblers,a man's testicles (from Cockney rhyming slang: cobbler's awl rhymes with ball)
+30092,cobia Rachycentron_canadum sergeant_fish,large dark-striped tropical food and game fish related to remoras; found worldwide in coastal to open waters
+30093,cobnut filbert Corylus_avellana Corylus_avellana_grandis,small nut-bearing tree much grown in Europe
+30094,cobra,venomous Asiatic and African elapid snakes that can expand the skin of the neck into a hood
+30095,cobweb,a fabric so delicate and transparent as to resemble a web of a spider
+30096,cobweb,a dense elaborate spider web that is more efficient than the orb web
+30097,cobweb gossamer,filaments from a web that was spun by a spider
+30098,coca,dried leaves of the coca plant (and related plants that also contain cocaine); chewed by Andean people for their stimulating effect
+30099,cocaine cocain,a narcotic (alkaloid) extracted from coca leaves; used as a surface anesthetic or taken for pleasure; can become powerfully addictive
+30100,cocaine_addict,a person addicted to cocaine
+30101,cocaine_addiction,an addiction to cocaine
+30102,cocarboxylase thiamine_pyrophosphate,a coenzyme important in respiration in the Krebs cycle
+30103,coccid_insect,scale insects and mealybugs
+30104,coccidioidomycosis coccidiomycosis valley_fever desert_rheumatism,an infection of the lungs and skin characterized by excessive sputum and nodules
+30105,coccidiosis,(veterinary medicine) infestation with coccidia
+30106,coccidium eimeria,parasitic on the digestive epithelium of vertebrates and higher invertebrates
+30107,coccobacillus,a bacterial cell intermediate in morphology between a coccus and a bacillus; a very short bacillus
+30108,coccus cocci,any spherical or nearly spherical bacteria
+30109,coccygeal_nerve nervus_coccygeus,the lowest pair of spinal nerves
+30110,coccygeal_plexus plexus_coccygeus,a small plexus formed by the fifth sacral and coccygeal nerves
+30111,coccygeal_vertebra caudal_vertebra,one of 4 vertebrae in the human coccyx
+30112,coccyx tail_bone,the end of the vertebral column in humans and tailless apes
+30113,cochin cochin_china,Asian breed of large fowl with dense plumage and feathered legs
+30114,cochineal,a red dyestuff consisting of dried bodies of female cochineal insects
+30115,cochineal_insect cochineal Dactylopius_coccus,Mexican red scale insect that feeds on cacti; the source of a red dye
+30116,cochlea,the snail-shaped tube (in the inner ear coiled around the modiolus) where sound vibrations are converted into nerve impulses by the organ of Corti
+30117,cochon_de_lait suckling_pig,whole young pig suitable for roasting
+30118,cock,adult male bird
+30119,cock prick dick shaft pecker tool putz,obscene terms for penis
+30120,cock rooster,adult male chicken
+30121,cock's_eggs Salpichroa_organifolia Salpichroa_rhomboidea,weedy vine of Argentina having solitary white flowers followed by egg-shaped white or yellow fruit
+30122,cock-a-doodle-doo,an imitation of the crow of a cock
+30123,cock-a-leekie cocky-leeky,soup made from chicken boiled with leeks
+30124,cock_of_the_rock Rupicola_peruviana,bird of the Andes similar to Rupicola rupicola
+30125,cock_of_the_rock Rupicola_rupicola,tropical bird of northern South America the male having brilliant red or orange plumage and an erectile disklike crest
+30126,cock_sucking blowjob,slang for fellatio
+30127,cockade,an ornament (such as a knot of ribbon or a rosette) usually worn on the hat
+30128,cockateel cockatiel cockatoo_parrot Nymphicus_hollandicus,small grey Australian parrot with a yellow crested head
+30129,cockatoo,white or light-colored crested parrot of the Australian region; often kept as cage birds
+30130,cockatrice,monster hatched by a reptile from a cock's egg; able to kill with a glance
+30131,cockchafer May_bug May_beetle Melolontha_melolontha,any of various large European beetles destructive to vegetation as both larvae and adult
+30132,cocked_hat,hat with opposing brims turned up and caught together to form points
+30133,cocker_spaniel English_cocker_spaniel cocker,a small breed with wavy silky hair; originally developed in England
+30134,cockerel,a young domestic cock; not older than one year
+30135,cockfight,a match in a cockpit between two fighting cocks heeled with metal gaffs
+30136,cockfighting,participation in the sport of matching gamecocks in a cockfight
+30137,cockhorse,anything used as a toy horse (such as a rocking horse or one knee of an adult)
+30138,cockle,common edible European bivalve
+30139,cockle,common edible, burrowing European bivalve mollusk that has a strong, rounded shell with radiating ribs
+30140,cocklebur cockle-bur cockleburr cockle-burr,any coarse weed of the genus Xanthium having spiny burrs
+30141,cockleshell,a small light flimsy boat
+30142,cockloft,a small loft or garret
+30143,cockney,the nonstandard dialect of natives of the east end of London
+30144,cockpit,a pit for cockfights
+30145,cockpit,seat where the driver sits while driving a racing car
+30146,cockpit,compartment where the pilot sits while flying the aircraft
+30147,cockroach roach,any of numerous chiefly nocturnal insects; some are domestic pests
+30148,cockscomb common_cockscomb Celosia_cristata Celosia_argentea_cristata,garden annual with featherlike spikes of red or yellow flowers
+30149,cockscomb coxcomb,a cap worn by court jesters; adorned with a strip of red
+30150,cockspur Pisonia_aculeata,small spiny West Indian tree
+30151,cockspur_thorn cockspur_hawthorn Crataegus_crus-galli,eastern United States hawthorn with long straight thorns
+30152,cocksucker,a person who performs fellatio
+30153,cocktail,a short mixed drink
+30154,cocktail,an appetizer served as a first course at a meal
+30155,cocktail_dress sheath,a dress suitable for formal occasions
+30156,cocktail_lounge,a barroom in a hotel or restaurant where cocktails are served
+30157,cocktail_party,an afternoon party at which cocktails are served
+30158,cocktail_sauce seafood_sauce,usually catsup with horseradish and lemon juice
+30159,cocktail_shaker,a shaker for mixing cocktails
+30160,coco_plum coco_plum_tree cocoa_plum icaco Chrysobalanus_icaco,small tropical American tree bearing edible plumlike fruit
+30161,cocoa,powder of ground roasted cacao beans with most of the fat removed
+30162,cocoa chocolate hot_chocolate drinking_chocolate,a beverage made from cocoa powder and milk and sugar; usually drunk hot
+30163,cocoa_butter,a yellow-white fat from cocoa beans
+30164,cocoa_butter,the vegetable fat from the cacao that is extracted from chocolate liquor; the basis for white chocolate
+30165,cocoa_plum coco_plum icaco,plum-shaped whitish to almost black fruit used for preserves; tropical American
+30166,cocoa_powder,the powdery remains of chocolate liquor after cocoa butter is removed; used in baking and in low fat and low calorie recipes and as a flavoring for ice cream
+30167,cocobolo Dalbergia_retusa,a valuable timber tree of tropical South America
+30168,coconut cocoanut,large hard-shelled oval nut with a fibrous husk containing thick white meat surrounding a central cavity filled (when fresh) with fluid or milk
+30169,coconut coconut_meat,the edible white meat of a coconut; often shredded for use in e.g. cakes and curries
+30170,coconut coconut_palm coco_palm coco cocoa_palm coconut_tree Cocos_nucifera,tall palm tree bearing coconuts as fruits; widely planted throughout the tropics
+30171,coconut_cake,cake containing shredded coconut in batter and frosting
+30172,coconut_macaroon,macaroon containing coconut
+30173,coconut_milk coconut_cream,white liquid obtained from compressing fresh coconut meat
+30174,coconut_milk coconut_water,clear to whitish fluid from within a fresh coconut
+30175,coconut_oil copra_oil,oil from coconuts
+30176,cocoon,silky envelope spun by the larvae of many insects to protect pupas and by spiders to protect eggs
+30177,cocooning,retreating to the seclusion of your home (as for privacy or escape)
+30178,cocotte,a small casserole in which individual portions can be cooked and served
+30179,cocozelle,squash resembling zucchini
+30180,cocozelle Italian_vegetable_marrow,squash plant having dark green fruit with skin mottled with light green or yellow
+30181,cocuswood cocoswood granadilla_wood,wood of the granadilla tree used for making musical instruments especially clarinets
+30182,cod codfish,lean white flesh of important North Atlantic food fish; usually baked or poached
+30183,cod codfish,major food fish of Arctic and cold-temperate waters
+30184,cod-liver_oil cod_liver_oil,an oil obtained from the livers of cod and similar fishes; taken orally as a source of vitamins A and D
+30185,cod_oil,an inferior cod-liver oil that is used in leather manufacturing
+30186,code,a coding system used for transmitting messages requiring brevity or secrecy
+30187,code codification,a set of rules or principles or laws (especially written ones)
+30188,code computer_code,(computer science) the symbolic arrangement of data or instructions in a computer program or the set of such instructions
+30189,code_flag nautical_signal_flag,one of an international code of flag signals used between ships
+30190,code_of_conduct code_of_behavior,a set of conventional principles and expectations that are considered binding on any person who is a member of a particular group
+30191,codefendant co-defendant,a defendant who has been joined together with one or more other defendants in a single action
+30192,codeine,derivative of opium; used as an antitussive (to relieve coughing) and an analgesic (to relieve pain)
+30193,codetalker windtalker,a secret agent who was one of the Navajos who devised and used a code based on their native language; the code was unbroken by the Japanese during World War II
+30194,codex,an official list of chemicals or medicines etc.
+30195,codex leaf-book,an unbound manuscript of some ancient classic (as distinguished from a scroll)
+30196,codfish_ball codfish_cake,usually made of flaked salt cod and mashed potatoes
+30197,codger old_codger,used affectionately to refer to an eccentric but amusing old man
+30198,codicil,a supplement to a will; a testamentary instrument intended to alter an already executed will
+30199,codification,the act of codifying; arranging in a systematic order
+30200,coding_system,a system of signals used to represent letters or numbers in transmitting messages
+30201,codling,young codfish
+30202,codling_moth codlin_moth Carpocapsa_pomonella,a small grey moth whose larvae live in apples and English walnuts
+30203,codon,a specific sequence of three adjacent nucleotides on a strand of DNA or RNA that specifies the genetic code information for synthesizing a particular amino acid
+30204,codpiece,(15th-16th century) a flap for the crotch of men's tight-fitting breeches
+30205,coeducation,education of men and women in the same institutions
+30206,coefficient,a constant number that serves as a measure of some property or characteristic
+30207,coefficient_of_concordance,a coefficient of agreement (concordance) between different sets of rank orderings of the same set of things
+30208,coefficient_of_elasticity modulus_of_elasticity elastic_modulus,(physics) the ratio of the applied stress to the change in shape of an elastic body
+30209,coefficient_of_expansion expansivity,the fractional change in length or area or volume per unit change in temperature at a given constant pressure
+30210,coefficient_of_friction,the ratio of the weight of an object being moved along a surface and the force that maintains contact between the object and the surface
+30211,coefficient_of_mutual_induction mutual_inductance,a measure of the induction between two circuits; the ratio of the electromotive force in a circuit to the corresponding change of current in a neighboring circuit; usually measured in henries
+30212,coefficient_of_reflection reflection_factor reflectance reflectivity,the fraction of radiant energy that is reflected from a surface
+30213,coefficient_of_self_induction self-inductance,the ratio of the electromotive force produced in a circuit by self-induction to the rate of change of current producing it, expressed in henries
+30214,coefficient_of_viscosity absolute_viscosity dynamic_viscosity,a measure of the resistance to flow of a fluid under an applied force
+30215,coelacanth Latimeria_chalumnae,fish thought to have been extinct since the Cretaceous period but found in 1938 off the coast of Africa
+30216,coelenterate cnidarian,radially symmetrical animals having saclike bodies with only one opening and tentacles with stinging structures; they occur in polyp and medusa forms
+30217,coelenterate_family,a family of coelenterates
+30218,coelenterate_genus,a genus of coelenterates
+30219,coelenteron,the saclike body cavity of a coelenterate
+30220,coelogyne,any of various orchids of the genus Coelogyne with: clusters of fragrant lacy snow-white flowers; salmon-pink solitary flowers; chainlike racemes of topaz and chocolate brown flowers; spikes of delicate white spice-scented flowers; emerald green flowers marked with blue-black
+30221,coelophysis,one of the oldest known dinosaurs; late Triassic; cannibalistic
+30222,coelostat,optical device used to follow the path of a celestial body and reflect its light into a telescope; has a movable and a fixed mirror
+30223,coenzyme,a small molecule (not a protein but sometimes a vitamin) essential for the activity of some enzymes
+30224,coenzyme_A,a coenzyme present in all living cells; essential to metabolism of carbohydrates and fats and some amino acids
+30225,coercion,the act of compelling by force of authority
+30226,coevals contemporaries generation,all the people living at the same time or of approximately the same age
+30227,coexistence,existing peacefully together
+30228,coextension,equality of extension or duration
+30229,cofactor,a substance (as a coenzyme) that must join with another to produce a given result
+30230,coffee coffee_tree,any of several small trees and shrubs native to the tropical Old World yielding coffee beans
+30231,coffee java,a beverage consisting of an infusion of ground coffee beans; "he ordered a cup of coffee"
+30232,coffee-table_book,an elaborate oversize book suitable for displaying on a coffee table
+30233,coffee_bean coffee_berry coffee,a seed of the coffee tree; ground to make coffee
+30234,coffee_blight,a blight affecting the coffee plant
+30235,coffee_break tea_break,a snack taken during a break in the work day; "a ten-minute coffee break"; "the British have tea breaks"
+30236,coffee_can,a can for storing ground coffee
+30237,coffee_cup,a cup from which coffee is drunk
+30238,coffee_fern Pellaea_andromedifolia,evergreen fern of California and Baja California
+30239,coffee_filter,filter (usually of paper) that passes the coffee and retains the coffee grounds
+30240,coffee_fungus Pellicularia_koleroga,fungus causing a disease in coffee and some other tropical plants
+30241,coffee_grounds,the dregs remaining after brewing coffee
+30242,coffee_liqueur,coffee-flavored liqueur
+30243,coffee_maker,a kitchen appliance for brewing coffee automatically
+30244,coffee_mill coffee_grinder,a mill that grinds roasted coffee beans
+30245,coffee_mug,a mug intended for serving coffee
+30246,coffee_ring,ring-shaped coffeecake with fruits or nuts and often iced
+30247,coffee_senna mogdad_coffee styptic_weed stinking_weed Senna_occidentalis Cassia_occidentalis,very leafy malodorous tropical weedy shrub whose seeds have been used as an adulterant for coffee; sometimes classified in genus Cassia
+30248,coffee_stall,a stand (usually movable) selling hot coffee and food (especially at night)
+30249,coffee_substitute,a drink resembling coffee that is sometimes substituted for it
+30250,coffee_table cocktail_table,low table where magazines can be placed and coffee or cocktails are served
+30251,coffee_urn,an urn in which coffee is made and kept hot
+30252,coffeeberry California_buckthorn California_coffee Rhamnus_californicus,evergreen shrub of western United States bearing small red or black fruits
+30253,coffeecake coffee_cake,a cake or sweet bread usually served with coffee
+30254,coffeepot,tall pot in which coffee is brewed
+30255,coffer,a chest especially for storing valuables
+30256,coffer caisson lacunar,an ornamental sunken panel in a ceiling or dome
+30257,coffin casket,box in which a corpse is buried or cremated
+30258,cofounder,one of a group of founders
+30259,cog,a subordinate who performs an important but routine function; "he was a small cog in a large machine"
+30260,cog sprocket,tooth on the rim of gear wheel
+30261,cog_railway rack_railway,railway for steep mountains; a cogwheel on the locomotive engages cogs on a center rail to provide traction
+30262,cogency,persuasive relevance
+30263,cogency validity rigor rigour,the quality of being valid and rigorous
+30264,cogitation,a carefully considered thought about something; "his cogitations were dutifully recorded in his daybook"
+30265,cogitation study,attentive consideration and meditation; "after much cogitation he rejected the offer"
+30266,cognate cognate_word,a word is cognate with another if both derive from the same word in an ancestral language
+30267,cognition knowledge noesis,the psychological result of perception and learning and reasoning
+30268,cognitive_factor,something immaterial (as a circumstance or influence) that contributes to producing a result
+30269,cognitive_neuroscience,the branch of neuroscience that studies the biological foundations of mental phenomena
+30270,cognitive_neuroscientist,a cognitive scientist who studies the neurophysiological foundations of mental phenomena
+30271,cognitive_psychology,an approach to psychology that emphasizes internal mental processes
+30272,cognitive_science,the field of science concerned with cognition; includes parts of cognitive psychology and linguistics and computer science and cognitive neuroscience and philosophy of mind
+30273,cognitive_scientist,a scientist who studies cognitive processes
+30274,cognitive_semantics conceptual_semantics semasiology,the branch of semantics that studies the cognitive aspects of meaning
+30275,cognitive_state state_of_mind,the state of a person's cognitive processes
+30276,cognizance,range or scope of what is perceived
+30277,cognizance ken,range of what one can know or understand; "beyond my ken"
+30278,cohabitation,the act of living together and having a sexual relationship (especially without being married)
+30279,coherence coherency,logical and orderly and consistent relation of parts
+30280,coherence coherency cohesion cohesiveness,the state of cohering or sticking together
+30281,cohesion,(botany) the process in some plants of parts growing together that are usually separate (such as petals)
+30282,cohesion,(physics) the intermolecular force that holds together the molecules in a solid or liquid
+30283,cohesiveness glueyness gluiness gumminess tackiness ropiness viscidity viscidness,the property of being cohesive and sticky
+30284,coho cohoe coho_salmon blue_jack silver_salmon Oncorhynchus_kisutch,small salmon of northern Pacific coasts and the Great Lakes
+30285,cohort,a company of companions or supporters
+30286,cohort,a band of warriors (originally a unit of a Roman Legion)
+30287,cohune-nut_oil cohune_oil cohune_fat,semisolid fat from nuts of the cohune palm; used in cooking and soap making
+30288,cohune_nut,nut of the cohune palm having hard white shells like those of ivory nuts
+30289,cohune_palm Orbignya_cohune cohune,tropical American feather palm whose large nuts yield valuable oil and a kind of vegetable ivory
+30290,coif,a skullcap worn by nuns under a veil or by soldiers under a hood of mail or formerly by British sergeants-at-law
+30291,coiffeur,a man hairdresser
+30292,coiffeuse,a woman hairdresser
+30293,coil,a transformer that supplies high voltage to spark plugs in a gasoline engine
+30294,coil,a contraceptive device placed inside a woman's womb
+30295,coil,tubing that is wound in a spiral
+30296,coil,reactor consisting of a spiral of insulated wire that introduces inductance into a circuit
+30297,coil spiral volute whorl helix,a structure consisting of something wound in a continuous series of loops; "a coil of rope"
+30298,coil whorl roll curl curlicue ringlet gyre scroll,a round shape formed by a series of concentric circles (as formed by leaves or flower petals)
+30299,coil_spring volute_spring,a spring in the shape of a coil
+30300,coin,a flat metal piece (usually a disc) used as money
+30301,coin_box,the part of a slot machine that serves as a receptacle for the coins
+30302,coin_collection,a collection of coins
+30303,coin_silver,a silver of the degree of purity established for making legal silver coins
+30304,coin_slot,a slot through which coins can be inserted into a slot machine
+30305,coinage mintage specie metal_money,coins collectively
+30306,coincidence,the quality of occupying the same position or area in space; "he waited for the coincidence of the target and the cross hairs"
+30307,coincidence happenstance,an event that might have been arranged although it was really accidental
+30308,coiner,a maker of counterfeit coins
+30309,coiner,someone who is a source of new words or new expressions
+30310,coiner minter moneyer,a skilled worker who coins or stamps money
+30311,coinsurance,insurance issued jointly by two or more underwriters
+30312,coir,stiff coarse fiber from the outer husk of a coconut
+30313,coitus_interruptus withdrawal_method withdrawal pulling_out onanism,a method of birth control in which coitus is initiated but the penis is deliberately withdrawn before ejaculation
+30314,coke,carbon fuel produced by distillation of coal
+30315,coke blow nose_candy snow C,street names for cocaine
+30316,col gap,a pass between mountain peaks
+30317,cola dope,carbonated drink flavored with extract from kola nuts (`dope' is a southernism in the United States)
+30318,cola_extract,a flavoring extracted from the kola nut
+30319,colander cullender,bowl-shaped strainer; used to wash or drain foods
+30320,colchicine,an analgesic drug derived from the saffron plant and used to treat gout
+30321,cold coldness,the sensation produced by low temperatures; "he shivered from the cold"; "the cold helped clear his head"
+30322,cold common_cold,a mild viral infection involving the nose and respiratory passages (but not the lungs); "will they never find a cure for the common cold?"
+30323,cold-water_flat,an apartment without modern conveniences
+30324,cold_cathode,a cathode that is a source of electrons without being heated
+30325,cold_cereal dry_cereal,a cereal that is not heated before serving
+30326,cold_chisel set_chisel,narrow chisel made of steel; used to cut stone or bricks
+30327,cold_comfort,very limited consolation or empathy; "he told me that time heals all wounds but that was cold comfort to me"
+30328,cold_cream coldcream face_cream vanishing_cream,a cream used cosmetically (mostly by women) for softening and cleaning the skin
+30329,cold_cuts,sliced assorted cold meats
+30330,cold_duck,pink sparkling wine originally from Germany
+30331,cold_feet,timidity that prevents the continuation of a course of action; "I was going to tell him but I got cold feet"
+30332,cold_fish,an aloof unemotional person
+30333,cold_frame,protective covering consisting of a wooden frame with a glass top in which small plants are protected from the cold
+30334,cold_front polar_front,the front of an advancing mass of colder air
+30335,cold_fusion,nuclear fusion at or near room temperatures; claims to have discovered it are generally considered to have been mistaken
+30336,cold_medicine,medicine intended to relieve the symptoms of the common cold
+30337,cold_rubber,a rubber made at low temperatures (5 degrees Centigrade) which is tougher than conventional rubber and is often used in car tires
+30338,cold_spell cold_snap,a spell of cold weather
+30339,cold_storage,in a state of abeyance or postponement
+30340,cold_storage,refrigerated storage for preservation
+30341,cold_sweat,the physical condition of concurrent perspiration and chill; associated with fear
+30342,cold_turkey,a blunt expression of views; "I told him cold turkey"
+30343,cold_turkey,complete and abrupt withdrawal of all addictive drugs or anything else on which you have become dependent; "he quit smoking cold turkey"; "she quit her job cold turkey"
+30344,cold_war,a state of political hostility between countries using means short of armed warfare
+30345,cold_water,disparagement of a plan or hope or expectation; "she poured cold water on the whole idea of going to Africa"
+30346,cold_wave,a wave of unusually cold weather
+30347,cold_weather,a period of unusually cold weather
+30348,coldness cold low_temperature frigidity frigidness,the absence of heat; "the coldness made our breath visible"; "come in out of the cold"; "cold is a vasoconstrictor"
+30349,coldness coolness frigidity frigidness iciness chilliness,a lack of affection or enthusiasm; "a distressing coldness of tone and manner"
+30350,coleslaw slaw,basically shredded cabbage
+30351,coleus flame_nettle,any of various Old World tropical plants of the genus Coleus having multicolored decorative leaves and spikes of blue flowers
+30352,colic intestinal_colic gripes griping,acute abdominal pain (especially in infants)
+30353,colic_artery arteria_colica,arteries that supply blood to the colon
+30354,colic_vein vena_colica,vein serving the large intestine
+30355,colicroot colic_root crow_corn star_grass unicorn_root,any of several perennials of the genus Aletris having grasslike leaves and bitter roots reputed to cure colic
+30356,coliphage,a bacteriophage that infects the bacterium Escherichia coli
+30357,colitis inflammatory_bowel_disease,inflammation of the colon
+30358,collaboration coaction,act of working jointly; "they worked either in collaboration or independently"
+30359,collaboration collaborationism quislingism,act of cooperating traitorously with an enemy that is occupying your country
+30360,collaborator collaborationist quisling,someone who collaborates with an enemy occupying force
+30361,collaborator cooperator partner pardner,an associate in an activity or endeavor or sphere of common interest; "the musician and the librettist were collaborators"; "sexual partners"
+30362,collage,any collection of diverse things; "a collage of memories"
+30363,collage montage,a paste-up made by sticking together pieces of paper or photographs to form an artistic image; "he used his computer to make a collage of pictures superimposed on a map"
+30364,collage_film,a movie that juxtaposes different kinds of footage
+30365,collagen,a fibrous scleroprotein in bone and cartilage and tendon and other connective tissue; yields gelatin on boiling
+30366,collagenase,any enzyme that catalyzes the hydrolysis of collagen and gelatin
+30367,collapse,a natural event caused by something suddenly falling down or caving in; "the roof is in danger of collapse"; "the collapse of the old star under its own gravity"
+30368,collapse prostration,an abrupt failure of function or complete physical exhaustion; "the commander's prostration demoralized his men"
+30369,collar,(zoology) an encircling band or marking around the neck of any animal
+30370,collar,anything worn or placed about the neck; "the thief was forced to wear a heavy wooden collar"; "a collar of flowers was placed about the neck of the winning horse"
+30371,collar,a short ring fastened over a rod or shaft to limit, guide, or secure a machine part
+30372,collar,a band of leather or rope that is placed around an animal's neck as a harness or to identify it
+30373,collar leash,a figurative restraint; "asked for a collar on program trading in the stock market"; "kept a tight leash on his emotions"; "he's always gotten a long leash"
+30374,collar neckband,a band that fits around the neck and is usually folded over
+30375,collar shoe_collar,the stitching that forms the rim of a shoe or boot
+30376,collar_blight,a disease affecting the trunks of pear and apple trees
+30377,collard,variety of kale having smooth leaves
+30378,collards collard_greens,kale that has smooth leaves
+30379,collared_lizard,any of several robust long-tailed lizards with collars of two dark bands; of central and western United States and northern Mexico
+30380,collared_peccary javelina Tayassu_angulatus Tayassu_tajacu Peccari_angulatus,dark grey peccary with an indistinct white collar; of semi desert areas of Mexico and southwestern United States
+30381,collared_pika Ochotona_collaris,similar to little chief hare and may be same species
+30382,collateral,a security pledged for the repayment of a loan
+30383,collateral_damage,(euphemism) inadvertent casualties and destruction inflicted on civilians in the course of military operations
+30384,collation,assembling in proper numerical or logical sequence
+30385,collation,careful examination and comparison to note points of disagreement
+30386,colleague co-worker fellow_worker workfellow,an associate that one works with
+30387,colleague confrere fellow,a person who is member of one's class or profession; "the surgeon consulted his colleagues"; "he sent e-mail to his fellow hackers"
+30388,collect,a short prayer generally preceding the lesson in the Church of Rome or the Church of England
+30389,collect_call,a telephone call that the receiving party is asked to pay for
+30390,collectible collectable,things considered to be worth collecting (not necessarily valuable or antique)
+30391,collection aggregation accumulation assemblage,several things grouped together or considered as a whole
+30392,collection collecting assembling aggregation,the act of gathering something together
+30393,collection compendium,a publication containing a variety of works
+30394,collective,members of a cooperative enterprise
+30395,collective_bargaining,negotiation between an employer and trade union
+30396,collective_farm,a farm operated collectively
+30397,collective_noun,a noun that is singular in form but refers to a group of people or things
+30398,collective_security,a system for international peace
+30399,collectivism,a political theory that the people should own the means of production
+30400,collectivist leftist left-winger,a person who belongs to the political left
+30401,collectivization collectivisation,the organization of a nation or economy on the basis of collectivism
+30402,collector,a crater that has collected cosmic material hitting the earth
+30403,collector,the electrode in a transistor through which a primary flow of carriers leaves the region between the electrodes
+30404,collector aggregator,a person who collects things
+30405,collector gatherer accumulator,a person who is employed to collect payments (as for rent or taxes)
+30406,collector's_item showpiece piece_de_resistance,the outstanding item (the prize piece or main exhibit) in a collection
+30407,colleen,an Irish girl
+30408,college,an institution of higher education created to educate and grant degrees; often a part of a university
+30409,college,the body of faculty and students of a college
+30410,college,a complex of buildings in which an institution of higher education is housed
+30411,college_level,the level of education that college students are assumed to have attained
+30412,college_student university_student,a student enrolled in a college or university
+30413,collegian college_man college_boy,a student (or former student) at a college or university
+30414,collembolan springtail,any of numerous minute wingless primitive insects possessing a special abdominal appendage that allows the characteristic nearly perpetual springing pattern; found in soil rich in organic debris or on the surface of snow or water
+30415,collet,a band or collar that holds an individual stone in a jewelry setting
+30416,collet collet_chuck,a cone-shaped chuck used for holding cylindrical pieces in a lathe
+30417,collider,an accelerator in which two beams of particles are forced to collide head on
+30418,collie,a silky-coated sheepdog with a long ruff and long narrow head developed in Scotland
+30419,colliery pit,a workplace consisting of a coal mine plus all the buildings and equipment connected with it
+30420,colligation,the connection of isolated facts by a general hypothesis
+30421,collimation,the accurate adjustment of the line of sight of a telescope
+30422,collimator,a small telescope attached to a large telescope to use in setting the line of the larger one
+30423,collimator,optical device consisting of a tube containing a convex achromatic lens at one end and a slit at the other with the slit at the focus of the lens; light rays leave the slit as a parallel beam
+30424,collins Tom_Collins,tall iced drink of liquor (usually gin) with fruit juice
+30425,collision,an accident resulting from violent impact of a moving object; "three passengers were killed in the collision"; "the collision of the two ships resulted in a serious oil spill"
+30426,collision,a conflict of opposed ideas or attitudes or goals; "a collision of interests"
+30427,collision hit,(physics) a brief event in which two or more bodies come together; "the collision of the particles resulted in an exchange of energy and a change of direction"
+30428,collision_course,a course of a moving object that will lead to a collision if it continues unchanged
+30429,collision_course,a course of action (following a given idea) that will lead to conflict if it continues unabated
+30430,collocation,a grouping of words in a sentence
+30431,collodion,a colorless syrupy solution of pyroxylin in ether and alcohol; used as a coating for wounds or photographic films
+30432,colloid,a mixture with properties between those of a solution and fine suspension
+30433,colloquialism,a colloquial expression; characteristic of spoken or written communication that seeks to imitate informal speech
+30434,colloquium,an academic meeting or seminar usually led by a different lecturer and on a different topic at each meeting
+30435,colloquium,an address to an academic meeting or seminar
+30436,colloquy,a conversation especially a formal one
+30437,colloquy,formal conversation
+30438,collotype collotype_printing photogelatin_process,a photomechanical printing process that uses a glass plate with a gelatin surface that carries the image to be reproduced; can be used with one or more colors
+30439,collusion,secret agreement
+30440,colobus colobus_monkey,arboreal monkey of western and central Africa with long silky fur and reduced thumbs
+30441,cologne cologne_water eau_de_cologne,a perfumed liquid made of essential oils and alcohol
+30442,colon,a punctuation mark (:) used after a word introducing a series or an example or an explanation (or after the salutation of a business letter)
+30443,colon,the part of the large intestine between the cecum and the rectum; it extracts moisture from food residues before they are excreted
+30444,colon Costa_Rican_colon,the basic unit of money in Costa Rica; equal to 100 centimos
+30445,colon El_Salvadoran_colon,the basic unit of money in El Salvador; equal to 100 centavos
+30446,colon_cancer,a malignant tumor of the colon; early symptom is bloody stools
+30447,colonel,a commissioned military officer in the United States Army or Air Force or Marines who ranks above a lieutenant colonel and below a brigadier general
+30448,colonial,a resident of a colony
+30449,colonialism,exploitation by a stronger country of weaker one; the use of the weaker country's resources to strengthen and enrich the stronger country
+30450,colonialist,a believer in colonialism
+30451,colonic_irrigation colonic,a water enema given to flush out the colon
+30452,colonization colonisation settlement,the act of colonizing; the establishment of colonies; "the British colonization of America"
+30453,colonizer coloniser,someone who helps to found a colony
+30454,colonnade,structure consisting of a row of evenly spaced columns
+30455,colonoscope,an elongated fiberoptic endoscope for examining the entire colon from cecum to rectum
+30456,colonoscopy,visual examination of the colon (with a colonoscope) from the cecum to the rectum; requires sedation
+30457,colony,a place where a group of people with the same interest or occupation are concentrated; "a nudist colony"; "an artists' colony"
+30458,colony,(microbiology) a group of organisms grown from a single parent cell
+30459,colony,a group of organisms of the same type living or growing together
+30460,colony dependency,a geographical area politically controlled by a distant country
+30461,colony settlement,a body of people who settle far from home but maintain ties with their homeland; inhabitants remain nationals of their home state but are not literally under the home state's system of government; "the American colony in Paris"
+30462,colophon,a publisher's emblem printed in a book (usually on the title page)
+30463,colophony,translucent brittle substance produced from pine oleoresin; used especially in varnishes and inks and on the bows of stringed instruments
+30464,color colour,(physics) the characteristic of quarks that determines their role in the strong interaction; "each flavor of quarks comes in three colors"
+30465,color colour,the appearance of objects (or light sources) described in terms of a person's perception of their hue and lightness (or brightness) and saturation
+30466,color colour coloration colouration,the timbre of a musical sound; "the recording fails to capture the true color of the original music"
+30467,color colour coloring colouring,a visual attribute of things that results from the light they emit or transmit or reflect; "a white color is made up of many different wavelengths of light"
+30468,color colour vividness,interest and variety and intensity; "the Puritan Period was lacking in color"; "the characters were delineated with exceptional vividness"
+30469,color-blind_person,a person unable to distinguish differences in hue
+30470,color_bar colour_bar color_line colour_line Jim_Crow,barrier preventing blacks from participating in various activities with whites
+30471,color_barrier,the barrier preventing Blacks from participating in various activities with whites
+30472,color_bearer standard-bearer,the soldier who carries the standard of the unit in military parades or in battle
+30473,color_blindness colour_blindness color_vision_deficiency colour_vision_deficiency,genetic inability to distinguish differences in hue
+30474,color_chart,a chart displaying colors
+30475,color_circle color_wheel,a chart in which complementary colors (or their names) are arranged on opposite sides of a circle
+30476,color_code,system using colors to designate classifications
+30477,color_constancy colour_constancy,the tendency for a color to look the same under widely different viewing conditions
+30478,color_guard,a ceremonial escort for the (regimental) colors
+30479,color_of_law colour_of_law,a mere semblance of legal right; something done with the apparent authority of law but actually in contravention of law; "the plaintiff claimed that under color of law the officer had deprived him of his civil rights"
+30480,color_property,an attribute of color
+30481,color_scheme colour_scheme,a planned combination of colors; "the color scheme for this room was determined by an interior decorator"
+30482,color_sergeant,a sergeant in a color guard who carries one of the colors
+30483,color_television colour_television color_television_system colour_television_system color_TV colour_TV,a television that transmits images in color
+30484,color_tube colour_tube color_television_tube colour_television_tube color_TV_tube colour_TV_tube,a television tube that displays images in full color
+30485,color_vision chromatic_vision trichromacy,the normal ability to see colors
+30486,color_wash colour_wash,a wash of whitewash or other water-base paint tinted with a colored pigment
+30487,coloration colouration,appearance with regard to color; "her healthy coloration"
+30488,coloration colouration,choice and use of colors (as by an artist)
+30489,coloratura,singing with florid ornamentation
+30490,coloratura coloratura_soprano,a lyric soprano who specializes in coloratura vocal music
+30491,colorcast colourcast,a television program that is broadcast in color
+30492,colored_hearing colored_audition,a form of chromesthesia in which experiences of color accompany auditory stimuli
+30493,colorimeter tintometer,a measuring instrument used in colorimetric analysis to determine the quantity of a substance from the color it yields with specific reagents
+30494,colorimetry colorimetric_analysis,quantitative chemical analysis by color using a colorimeter
+30495,coloring colouring,the act or process of changing the color of something
+30496,coloring colouring food_coloring food_colouring food_color food_colour,a digestible substance used to give color to food; "food color made from vegetable dyes"
+30497,coloring_book,a picture book with line drawings intended to be colored with crayons by children
+30498,coloring_material colouring_material color colour,any material used for its color; "she used a different color for the trim"
+30499,colorist,a painter able to achieve special effects with color
+30500,colorlessness colourlessness achromatism achromaticity,the visual property of being without chromatic color
+30501,colors colours,a distinguishing emblem; "his tie proclaimed his school colors"
+30502,colors colours,a flag that shows its nationality
+30503,colossus behemoth giant heavyweight titan,a person of exceptional importance and reputation
+30504,colostomy,a surgical operation that creates an opening from the colon to the surface of the body to function as an anus
+30505,colostrum foremilk,milky fluid secreted for the first day or two after parturition
+30506,colour_supplement,(British) a magazine that is printed in color and circulated with a newspaper (especially on weekends)
+30507,colpitis,inflammation of the vagina
+30508,colpocele vaginocele,hernia projecting into the vagina
+30509,colpocystitis,inflammation of the vagina and bladder
+30510,colpoxerosis,a condition in which the vagina is unusually dry
+30511,colt,a young male horse under the age of four
+30512,colter coulter,a sharp steel wedge that precedes the plow and cuts vertically through the soil
+30513,coltsfoot Tussilago_farfara,perennial herb with large rounded leaves resembling a colt's foot and yellow flowers appearing before the leaves do; native to Europe but now nearly cosmopolitan; used medicinally especially formerly
+30514,colubrid_snake colubrid,mostly harmless temperate-to-tropical terrestrial or arboreal or aquatic snakes
+30515,columbarium,a sepulchral vault or other structure having recesses in the walls to receive cinerary urns
+30516,columbarium cinerarium,a niche for a funeral urn containing the ashes of the cremated dead
+30517,columbian_mammoth Mammuthus_columbi,a variety of mammoth
+30518,columbiform_bird,a cosmopolitan order of land birds having small heads and short legs with four unwebbed toes
+30519,columbine aquilegia aquilege,a plant of the genus Aquilegia having irregular showy spurred flowers; north temperate regions especially mountains
+30520,columbite-tantalite coltan,a valuable black mineral combining niobite and tantalite; used in cell phones and computer chips
+30521,columbium,a former name for niobium
+30522,columbo American_columbo deer's-ear deer's-ears pyramid_plant American_gentian,any of various tall perennial herbs constituting the genus Frasera; widely distributed in warm dry upland areas of California, Oregon, and Washington
+30523,columella,a small column (or structure resembling a column) that is a part of a plant or animal
+30524,column,a vertical array of numbers or other information; "he added a column of numbers"
+30525,column,a line of units following one after another
+30526,column,a page or text that is vertically divided; "the newspaper devoted several columns to the subject"; "the bookkeeper used pages that were divided into columns"
+30527,column,any tubular or pillar-like supporting structure in the body
+30528,column chromatography_column,a vertical glass tube used in column chromatography; a mixture is poured in the top and washed through a stationary substance where components of the mixture are adsorbed selectively to form colored bands
+30529,column editorial newspaper_column,an article giving opinions or perspectives
+30530,column pillar,a vertical cylindrical structure standing alone and not supporting anything (such as a monument)
+30531,column pillar,(architecture) a tall vertical cylindrical structure standing upright and used to support a structure
+30532,column tower pillar,anything that approximates the shape of a column or tower; "the test tube held a column of white powder"; "a tower of dust rose above the horizon"; "a thin pillar of smoke betrayed their campsite"
+30533,column_chromatography,chromatography that uses selective adsorption by a column of powders
+30534,column_inch inch,a unit of measurement for advertising space
+30535,columnar_cell columnar_epithelial_cell,an epithelial cell that is shaped like a column; some have cilia
+30536,columnea,tropical plant having thick hairy somewhat toothed leaves and solitary or clustered yellow to scarlet flowers; many cultivated for their flowers and ornamental foliage
+30537,columniation,(architecture) the arrangement of columns (especially freestanding columns) in a structure
+30538,columnist editorialist,a journalist who writes editorials
+30539,coma,(botany) a usually terminal tuft of bracts (as in the pineapple) or tuft of hairs (especially on certain seeds)
+30540,coma,(astronomy) the luminous cloud of particles surrounding the frozen nucleus of a comet; forms as the comet approaches the sun and is warmed
+30541,coma comatoseness,a state of deep and often prolonged unconsciousness; usually the result of disease or injury
+30542,comb,any of several tools for straightening fibers
+30543,comb,a flat device with narrow pointed teeth on one edge; disentangles or arranges hair
+30544,comb,ciliated comb-like swimming plate of a ctenophore
+30545,comb cockscomb coxcomb,the fleshy red crest on the head of the domestic fowl and other gallinaceous birds
+30546,comb combing,the act of drawing a comb through hair; "his hair needed a comb"
+30547,comb-footed_spider theridiid,spider having a comb-like row of bristles on each hind foot
+30548,comb-out,the act of carefully weeding out unwanted things or people; "the department got a good comb-out"
+30549,comb-out teasing,the act of removing tangles from you hair with a comb
+30550,combat armed_combat,an engagement fought between two military forces
+30551,combat_ceiling service_ceiling,altitude above which a plane cannot climb faster than a given rate
+30552,combat_mission,a mission to capture or defend something
+30553,combat_pay,extra pay for soldiers engaged in active combat
+30554,combat_pilot,airplane pilot who fights in an action between two military forces
+30555,combat_zone combat_area,a military area where combat forces operate
+30556,combat_zone tenderloin,a city district known for its vice and high crime rate
+30557,combatant battler belligerent fighter scrapper,someone who fights (or is fighting)
+30558,combativeness militance militancy,a militant aggressiveness
+30559,comber,a person who separates and straightens the fibers of cotton or wool
+30560,comber,a long curling sea wave
+30561,comber,a machine that separates and straightens the fibers of cotton or wool
+30562,combination,a coordinated sequence of chess moves
+30563,combination,a sequence of numbers or letters that opens a combination lock; "he forgot the combination to the safe"
+30564,combination,a group of people (often temporary) having a common purpose; "they were a winning combination"
+30565,combination,an alliance of people or corporations or countries for a special purpose (formerly to achieve some antisocial end but now for general political or economic purposes)
+30566,combination,a collection of things that have been combined; an assemblage of separate parts or qualities
+30567,combination,the act of arranging elements into specified groups without regard to order
+30568,combination combining compounding,the act of combining things to form a new whole
+30569,combination_in_restraint_of_trade,(law) any monopoly or contract or combination or conspiracy intended to restrain commerce (which are illegal according to antitrust laws of the United States)
+30570,combination_lock,lock that can be opened only by turning dials in a special sequence
+30571,combination_plane,a woodworking plane that has interchangeable cutters of various shapes
+30572,combination_salad,containing meat or chicken or cheese in addition to greens and vegetables
+30573,combine,harvester that heads and threshes and cleans grain while moving across the field
+30574,combined_operation,a military operation carried out cooperatively by two or more allied nations or a military operation carried out by coordination of sea, land, and air forces
+30575,combining combine,an occurrence that results in things being united
+30576,combining_form,a bound form used only in compounds; "`hemato-' is a combining form in words like `hematology'"
+30577,combretum,any of numerous shrubs or small trees of the genus Combretum having spikes of small flowers
+30578,combustibility combustibleness burnability,the quality of being capable of igniting and burning
+30579,combustible combustible_material,a substance that can be burned to provide heat or power
+30580,combustion,a state of violent disturbance and excitement; "combustion grew until revolt was unavoidable"
+30581,combustion burning,a process in which a substance reacts with oxygen to give heat and light
+30582,comeback,return by a celebrity to some previously successful activity
+30583,comedian,an actor in a comedy
+30584,comedian comic,a professional performer who tells jokes and performs comical acts
+30585,comedienne,a female actor in a comedy
+30586,comedienne,a female comedian
+30587,comedown,decline to a lower status or level
+30588,comedy,light and humorous drama with a happy ending
+30589,comedy_ballet,a ballet that stresses the drama with features of comedy
+30590,comeliness fairness loveliness beauteousness,the quality of being good looking and attractive
+30591,comer,someone with a promising future
+30592,comestible edible eatable pabulum victual victuals,any substance that can be used as food
+30593,comet,(astronomy) a relatively small extraterrestrial body consisting of a frozen mass that travels around the sun in a highly elliptical orbit
+30594,comfit,candy containing a fruit or nut
+30595,comfort,satisfaction or physical well-being provided by a person or thing; "his friendship was a comfort"; "a padded chair was one of the room's few comforts"
+30596,comfort,a feeling of freedom from worry or disappointment
+30597,comfort,assistance, such as that provided to an enemy or to a known criminal; "it gave comfort to the enemy"
+30598,comfort comfortableness,a state of being relaxed and feeling no pain; "he is a man who enjoys his comfort"; "she longed for the comfortableness of her armchair"
+30599,comfort_food,food that is simply prepared and gives a sense of wellbeing; typically food with a high sugar or carbohydrate content that is associated with childhood or with home cooking
+30600,comfort_woman ianfu,a woman forced into prostitution for Japanese servicemen during World War II; "she wrote a book about her harsh experiences as a comfort woman"
+30601,comfort_zone,the temperature range (between 28 and 30 degrees Centigrade) at which the naked human body is able to maintain a heat balance without shivering or sweating
+30602,comfortableness,a feeling of being at ease in a relationship
+30603,comforter pacifier baby's_dummy teething_ring,device used for an infant to suck or bite on
+30604,comforts creature_comforts amenities conveniences,things that make you comfortable and at ease; "all the comforts of home"
+30605,comfrey cumfrey,perennial herbs of Europe and Iran; make rapidly growing groundcover for shaded areas
+30606,comfrey healing_herb,leaves make a popular tisane; young leaves used in salads or cooked
+30607,comic_book,a magazine devoted to comic strips
+30608,comic_opera opera_bouffe bouffe opera_comique,opera with a happy ending and in which some of the text is spoken
+30609,comic_strip cartoon_strip strip funnies,a sequence of drawings telling a story in a newspaper or comic book
+30610,comicality,the quality of being comical
+30611,coming_attraction,a movie that is advertised to draw customers
+30612,comity,a state or atmosphere of harmony or mutual civility and respect
+30613,comity_of_nations,courteous respect by one nation for the laws and institutions of another
+30614,comma,a punctuation mark (,) used to indicate the separation of elements within the grammatical structure of a sentence
+30615,comma comma_butterfly Polygonia_comma,anglewing butterfly with a comma-shaped mark on the underside of each hind wing
+30616,comma_bacillus Vibrio_comma,comma-shaped bacteria that cause Asiatic cholera
+30617,command,a position of highest authority; "the corporation has just undergone a change in command"
+30618,command,a military unit or region under the control of a single officer
+30619,command,the power or authority to command; "an admiral in command"
+30620,command,availability for use; "the materials at the command of the potters grew"
+30621,command bid bidding dictation,an authoritative direction or instruction to do something
+30622,command control mastery,great skillfulness and knowledge of some subject or activity; "a good command of French"
+30623,command_guidance,a method of controlling the flight of a missile by commands originating from the ground or from another missile
+30624,command_language query_language search_language,a source language consisting of procedural operators that invoke functions to be executed
+30625,command_line,commands that a user types in order to run an application
+30626,command_line_interface CLI,a user interface in which you type commands instead of choosing them from a menu or selecting an icon
+30627,command_module,a space module in which astronauts can live and control the spacecraft and communicate with earth
+30628,command_post general_headquarters GHQ,military headquarters from which a military commander controls and organizes the forces
+30629,command_processing_overhead_time command_processing_overhead command_overhead overhead,(computer science) the processing time required by a device prior to the execution of a command
+30630,commander,a commissioned naval officer who ranks above a lieutenant commander and below a captain
+30631,commander,someone in an official position of authority who can command or control others
+30632,commander_in_chief commander-in-chief generalissimo,the officer who holds the supreme command; "in the U.S. the president is the commander in chief"
+30633,commandership commandery,the position or office of commander
+30634,commanding_officer commandant commander,an officer in command of a military unit
+30635,commandment,something that is commanded
+30636,commando,an amphibious military unit trained for raids into enemy territory
+30637,commando ranger,a member of a military unit trained as shock troops for hit-and-run raids
+30638,commedia_dell'arte,Italian comedy of the 16th to 18th centuries improvised from standardized situations and stock characters
+30639,commelina,any plant of the genus Commelina
+30640,commemoration memorialization memorialisation,a ceremony to honor the memory of someone or something
+30641,commemorative,an object (such as a coin or postage stamp) made to mark an event or honor a person
+30642,commencement commencement_exercise commencement_ceremony graduation graduation_exercise,an academic exercise in which diplomas are conferred
+30643,commencement_day degree_day,the day on which university degrees are conferred
+30644,commensal,either of two different animal or plant species living in close association but not interdependent
+30645,commensalism,the relation between two different kinds of organisms when one receives benefits from the other without damaging it
+30646,commensurateness correspondence proportionateness,the relation of corresponding in degree or size or amount
+30647,comment commentary,a written explanation or criticism or illustration that is added to a book or other textual material; "he wrote an extended comment on the proposal"
+30648,commentator reviewer,a writer who reports and analyzes events of the day
+30649,commerce,social exchange, especially of opinions, attitudes, etc.
+30650,commerce commercialism mercantilism,transactions (sales and purchases) having the objective of supplying commodities (goods and services)
+30651,commercial commercial_message,a commercially sponsored ad on radio or television
+30652,commercial_art,art used for commercial purposes (as in advertising)
+30653,commercial_artist,an illustrator who is supported by advertising
+30654,commercial_bank full_service_bank,a financial institution that accepts demand deposits and makes loans and provides other services for the public
+30655,commercial_bribery,bribery of a purchasing agent in order to induce the agent to enter into a transaction
+30656,commercial_credit,credit granted by a bank to a business concern for commercial purposes
+30657,commercial_document commercial_instrument,a document of or relating to commerce
+30658,commercial_enterprise,an enterprise connected with commerce
+30659,commercial_enterprise business_enterprise business,the activity of providing goods and services involving financial and commercial and industrial aspects; "computers are now widely used in business"
+30660,commercial_finance_company commercial_credit_company,a finance company that makes loans to manufacturers and wholesalers
+30661,commercial_letter_of_credit,a letter of credit given to a business concern for commercial purposes
+30662,commercial_paper,an unsecured and unregistered short-term obligation issued by an institutional borrower to investors who have temporarily idle cash
+30663,commercial_treaty,a treaty governing commerce between two or more nations
+30664,commercialization commercialisation,the act of commercializing something; involving something in commerce; "my father considered the commercialization of Christmas to be a sacrilege"; "the government tried to accelerate the commercialization of this development"; "both companies will retain control over the commercialization of their own products"
+30665,commination,prayers proclaiming God's anger against sinners; read in the Church of England on Ash Wednesday
+30666,commination,a threat of divine punishment or vengeance
+30667,comminuted_fracture,fracture in which the bone is splintered or crushed
+30668,commiseration pity ruth pathos,a feeling of sympathy and sorrow for the misfortunes of others; "the blind are too often objects of pity"
+30669,commissar political_commissar,an official of the Communist Party who was assigned to teach party principles to a military unit
+30670,commissariat provisions provender viands victuals,a stock or supply of foods
+30671,commissary,a snack bar in a film studio
+30672,commissary,a retail store that sells equipment and provisions (usually to military personnel)
+30673,commission,the state of being in good working order and ready for operation; "put the ships into commission"; "the motor was out of commission"
+30674,commission,a fee for services rendered based on a percentage of an amount received or collected or agreed to be paid (as distinguished from a salary); "he works on commission"
+30675,commission charge direction,a formal statement of a command or injunction to do something; "the judge's charge to the jury"
+30676,commission commissioning,the act of granting authority to undertake certain functions
+30677,commission military_commission,an official document issued by a government and conferring on the recipient the rank of an officer in the armed forces
+30678,commission_plan,a municipal government that combines legislative and executive authority in the members of a commission
+30679,commissionaire,a uniformed doorman
+30680,commissioned_military_officer,a commissioned officer in the Army or Air Force or Marine Corps
+30681,commissioned_naval_officer,a commissioned officer in the navy
+30682,commissioned_officer,a military officer holding a commission
+30683,commissioner,a member of a commission
+30684,commissioner,a government administrator
+30685,commissure,a bundle of nerve fibers passing from one side to the other of the brain or spinal cord
+30686,commitment,an engagement by contract involving financial obligation; "his business commitments took him to London"
+30687,commitment allegiance loyalty dedication,the act of binding yourself (intellectually or emotionally) to a course of action; "his long commitment to public service"; "they felt no loyalty to a losing team"
+30688,commitment committal consignment,the official act of consigning a person to confinement (as in a prison or mental hospital)
+30689,commitment dedication,a message that makes a pledge
+30690,committal_service,service committing a body to the grave; "the committal service will be held next Monday"
+30691,committedness commitment,the trait of sincere and steadfast fixity of purpose; "a man of energy and commitment"
+30692,committee citizens_committee,a self-constituted organization to promote something
+30693,committee commission,a special group delegated to consider some matter; "a committee is a group that keeps minutes and loses hours" - Milton Berle
+30694,committee_member,a member of a committee
+30695,committeeman,a man who is a member of committee
+30696,committeewoman,a woman who is a member of a committee
+30697,commodity trade_good good,articles of commerce
+30698,commodity_brokerage,a brokerage firm dealing in commodities
+30699,commodity_exchange commodities_exchange commodities_market,an exchange for buying and selling commodities for future delivery
+30700,commodore,a commissioned naval officer who ranks above a captain and below a rear admiral; the lowest grade of admiral
+30701,common-law_marriage,a marriage relationship created by agreement and cohabitation rather than by ceremony
+30702,common_American_shad Alosa_sapidissima,shad of Atlantic coast of North America; naturalized to Pacific coast
+30703,common_European_dogwood red_dogwood blood-twig pedwood Cornus_sanguinea,European deciduous shrub turning red in autumn having dull white flowers
+30704,common_European_earwig Forficula_auricularia,sometimes destructive to cultivated bulbs
+30705,common_European_jay Garullus_garullus,fawn-colored jay with black-and-white crest and blue-and-black wings
+30706,common_St_John's_wort tutsan Hypericum_androsaemum,deciduous bushy Eurasian shrub with golden yellow flowers and reddish-purple fruits from which a soothing salve is made in Spain
+30707,common_ageratum Ageratum_houstonianum,small tender herb grown for its fluffy brushlike blue to lavender blooms
+30708,common_alder European_black_alder Alnus_glutinosa Alnus_vulgaris,medium-sized tree with brown-black bark and woody fruiting catkins; leaves are hairy beneath
+30709,common_allamanda golden_trumpet Allamanda_cathartica,vigorous evergreen climbing plant of South America having glossy leathery foliage and golden yellow flowers
+30710,common_amsinckia Amsinckia_intermedia,annual of western United States with coiled spikes of yellow-orange coiled flowers
+30711,common_apricot Prunus_armeniaca,temperate zone tree bearing downy yellow to rosy fruits
+30712,common_arrowhead,a weed
+30713,common_ax common_axe Dayton_ax Dayton_axe,an ax with a long handle and a head that has one cutting edge and one blunt side
+30714,common_bamboo Bambusa_vulgaris,extremely vigorous bamboo having thin-walled culms striped green and yellow; so widely cultivated that native area is uncertain
+30715,common_barberry European_barberry Berberis_vulgaris,upright deciduous European shrub widely naturalized in United States having clusters of juicy berries
+30716,common_barley Hordeum_vulgare,grass yielding grain used for breakfast food and animal feed and in malt beverages
+30717,common_basil sweet_basil Ocimum_basilicum,annual or perennial of tropical Asia having spikes of small white flowers and aromatic leaves; one of the most important culinary herbs; used in salads, casseroles, sauces and some liqueurs
+30718,common_bean,any of numerous beans eaten either fresh or dried
+30719,common_bean common_bean_plant Phaseolus_vulgaris,the common annual twining or bushy bean plant grown for its edible seeds or pods
+30720,common_bearberry red_bearberry wild_cranberry mealberry hog_cranberry sand_berry sandberry mountain_box bear's_grape creashak Arctostaphylos_uva-ursi,evergreen mat-forming shrub of North America and northern Eurasia having small white flowers and red berries; leaves turn red in autumn
+30721,common_beech European_beech Fagus_sylvatica,large European beech with minutely-toothed leaves; widely planted as an ornamental in North America
+30722,common_bile_duct bile_duct,a duct formed by the hepatic and cystic ducts; opens into the duodenum
+30723,common_booklouse Trogium_pulsatorium,a variety of booklouse
+30724,common_box European_box Buxus_sempervirens,large slow-growing evergreen shrub or small tree with multiple stems; extensively used for hedges or borders and topiary figures
+30725,common_brant_goose Branta_bernicla,the best known variety of brant goose
+30726,common_broom Scotch_broom green_broom Cytisus_scoparius,deciduous erect spreading broom native to western Europe; widely cultivated for its rich yellow flowers
+30727,common_burdock lesser_burdock Arctium_minus,a plant that is ubiquitous in all but very acid soil; found in most of Europe and North Africa
+30728,common_buttercup Ranunculus_bulbosus,perennial Old World buttercup with golden to sulphur yellow flowers in late spring to early summer; naturalized in North America
+30729,common_calamint Calamintha_sylvatica Satureja_calamintha_officinalis,mint-scented perennial of central and southern Europe
+30730,common_camas Camassia_quamash,plant having a large edible bulb and linear basal leaves and racemes of light to deep violet-blue star-shaped flowers on tall green scapes; western North America
+30731,common_canary Serinus_canaria,native to the Canary Islands and Azores; popular usually yellow cage bird noted for its song
+30732,common_caper Capparis_spinosa,prostrate spiny shrub of the Mediterranean region cultivated for its greenish flower buds which are pickled
+30733,common_cardinal_vein,the major return channels to the heart; formed by anastomosis of the anterior and posterior cardinal veins
+30734,common_carline_thistle Carlina_vulgaris,Eurasian thistle growing in sand dunes and dry chalky soils
+30735,common_carotid_artery common_carotid,runs upward in the neck and divides into the external and internal carotid arteries
+30736,common_chickweed Stellaria_media,a common low-growing annual garden weed with small white flowers; cosmopolitan; so-called because it is eaten by chickens
+30737,common_chord triad,a three-note major or minor chord; a note and its third and fifth tones
+30738,common_comfrey boneset Symphytum_officinale,European herb having small white, pink or purple flowers; naturalized as a weed in North America
+30739,common_corn_salad lamb's_lettuce Valerianella_olitoria Valerianella_locusta,widely cultivated as a salad crop and pot herb; often a weed
+30740,common_cotton_grass Eriophorum_angustifolium,having densely tufted white cottony or downlike glumes
+30741,common_daisy English_daisy Bellis_perennis,low-growing Eurasian plant with yellow central disc flowers and pinkish-white outer ray flowers
+30742,common_dandelion Taraxacum_ruderalia Taraxacum_officinale,Eurasian plant widely naturalized as a weed in North America; used as salad greens and to make wine
+30743,common_denominator,an integer that is a common multiple of the denominators of two or more fractions
+30744,common_denominator,an attribute that is common to all members of a category
+30745,common_divisor common_factor common_measure,an integer that divides two (or more) other integers evenly
+30746,common_dogbane spreading_dogbane rheumatism_weed Apocynum_androsaemifolium,North American perennial having pinkish flowers in loose cymes; used in folk medicine for pain or inflammation in joints
+30747,common_dolphin Delphinus_delphis,black-and-white dolphin that leaps high out of the water
+30748,common_duckweed lesser_duckweed Lemna_minor,of temperate regions except eastern Asia and Australia
+30749,common_eel freshwater_eel,eels that live in fresh water as adults but return to sea to spawn; found in Europe and America; marketed both fresh and smoked
+30750,common_eland Taurotragus_oryx,dark fawn-colored eland of southern and eastern Africa
+30751,common_evening_primrose German_rampion Oenothera_biennis,a coarse biennial of eastern North America with yellow flowers that open in the evening; naturalized in Europe
+30752,common_facial_vein,vein formed by union of facial vein and the retromandibular vein and emptying into the jugular vein
+30753,common_fate law_of_common_fate,a Gestalt principle of organization holding that aspects of perceptual field that move or function in a similar manner will be perceived as a unit
+30754,common_fennel Foeniculum_vulgare,strongly aromatic with a smell of aniseed; leaves and seeds used for seasoning
+30755,common_flat_pea native_holly Playlobium_obtusangulum,low spreading evergreen shrub of southern Australia having triangular to somewhat heart-shaped foliage and orange-yellow flowers followed by flat winged pods
+30756,common_four-o'clock marvel-of-Peru Mirabilis_jalapa Mirabilis_uniflora,common garden plant of North America having fragrant red or purple or yellow or white flowers that open in late afternoon
+30757,common_foxglove fairy_bell fingerflower finger-flower fingerroot finger-root Digitalis_purpurea,tall leafy European biennial or perennial having spectacular clusters of large tubular pink-purple flowers; leaves yield drug digitalis and are poisonous to livestock
+30758,common_fraction simple_fraction,the quotient of two integers
+30759,common_front,a movement in which several individuals or groups with different interests join together; "the unions presented a common front at the bargaining table"
+30760,common_garden_cress garden_pepper_cress pepper_grass pepperwort Lepidium_sativum,annual herb used as salad green and garnish
+30761,common_garter_snake Thamnophis_sirtalis,a garter snake that is widespread in North America
+30762,common_ginger Canton_ginger stem_ginger Zingiber_officinale,tropical Asian plant widely cultivated for its pungent root; source of gingerroot and powdered ginger
+30763,common_good commonweal,the good of a community
+30764,common_grape_hyacinth Muscari_neglectum,prolific species having particularly beautiful dark blue flowers
+30765,common_ground,a basis agreed to by all parties for reaching a mutual understanding
+30766,common_gum_cistus Cistus_ladanifer Cistus_ladanum,shrub having white flowers and viscid stems and leaves yielding a fragrant oleoresin used in perfumes especially as a fixative
+30767,common_heath Epacris_impressa,spindly upright shrub of southern Australia and Tasmania having white to rose or purple-red flowers
+30768,common_heath blunt-leaf_heath Epacris_obtusifolia,small erect shrub of Australia and Tasmania with fragrant ivory flowers
+30769,common_hop common_hops bine European_hop Humulus_lupulus,European twining plant whose flowers are used chiefly to flavor malt liquors; cultivated in America
+30770,common_horehound white_horehound Marrubium_vulgare,European aromatic herb with hairy leaves and numerous white flowers in axillary cymes; leaves yield a bitter extract use medicinally and as flavoring
+30771,common_horsetail field_horsetail Equisetum_arvense,of Eurasia and Greenland and North America
+30772,common_hyacinth Hyacinthus_orientalis,widely grown for its fragrance and its white, pink, blue, or purplish flowers
+30773,common_iguana iguana Iguana_iguana,large herbivorous tropical American arboreal lizards with a spiny crest along the back; used as human food in Central America and South America
+30774,common_iliac_artery,terminal branches of the abdominal aorta
+30775,common_iliac_vein,formed by the internal and external iliac veins; unites with its fellow from the opposite side of the body to form the inferior vena cava
+30776,common_jasmine true_jasmine jessamine Jasminum_officinale,a climbing deciduous shrub with fragrant white or yellow or red flowers used in perfume and to flavor tea
+30777,common_juniper Juniperus_communis,densely branching shrub or small tree having pungent blue berries used to flavor gin; widespread in northern hemisphere; only conifer on coasts of Iceland and Greenland
+30778,common_kingsnake Lampropeltis_getulus,widespread in United States except northern regions; black or brown with yellow bands
+30779,common_knowledge,anything generally known to everyone
+30780,common_laburnum golden_chain golden_rain Laburnum_anagyroides,an ornamental shrub or tree of the genus Laburnum; often cultivated for Easter decorations
+30781,common_lady's-slipper showy_lady's-slipper showy_lady_slipper Cypripedium_reginae Cypripedium_album,pale pink wild orchid of northeastern America having an inflated pouchlike lip
+30782,common_law case_law precedent,a system of jurisprudence based on judicial precedents rather than statutory laws; "common law originated in the unwritten laws of England and was later applied in the United States"
+30783,common_lilac Syringa_vulgaris,large European lilac naturalized in North America having heart-shaped ovate leaves and large panicles of highly fragrant lilac or white flowers
+30784,common_limpet Patella_vulgata,marine limpet
+30785,common_logarithm,a logarithm to the base 10
+30786,common_louse Pediculus_humanus,head or body louse
+30787,common_lynx Lynx_lynx,of northern Eurasia
+30788,common_mackerel shiner Scomber_scombrus,important food fish of the northern Atlantic and Mediterranean; its body is greenish-blue with dark bars and small if any scales
+30789,common_madia common_tarweed Madia_elegans,California annual having red-brown spots near the base of its yellow flower rays
+30790,common_maidenhair Venushair Venus'-hair_fern southern_maidenhair Venus_maidenhair Adiantum_capillus-veneris,delicate maidenhair fern with slender shining black leaf stalks; cosmopolitan
+30791,common_mallow Malva_neglecta,annual Old World plant with clusters of pink or white flowers; naturalized in United States
+30792,common_marigold pot_marigold ruddles Scotch_marigold Calendula_officinalis,the common European annual marigold
+30793,common_matrimony_vine Duke_of_Argyll's_tea_tree Lycium_barbarum Lycium_halimifolium,deciduous erect or spreading shrub with spiny branches and violet-purple flowers followed by orange-red berries; southeastern Europe to China
+30794,common_measure common_meter,the usual (iambic) meter of a ballad
+30795,common_milkwort gand_flower Polygala_vulgaris,small European perennial with numerous branches having racemes of blue, pink or white flowers; formerly reputed to promote human lactation
+30796,common_moonseed Canada_moonseed yellow_parilla Menispermum_canadense,a woody vine of eastern North America having large oval leaves and small white flowers and purple to blue-black fruits
+30797,common_morel Morchella_esculenta sponge_mushroom sponge_morel,an edible and choice morel with a globular to elongate head with an irregular pattern of pits and ridges
+30798,common_morning_glory Ipomoea_purpurea,pantropical annual climbing herb with funnel-shaped blue, purple, pink or white flowers
+30799,common_morning_glory Ipomoea_tricolor,annual or perennial climbing herb of Central America having sky-blue flowers; most commonly cultivated morning glory
+30800,common_mosquito Culex_pipiens,common house mosquito
+30801,common_mugwort Artemisia_vulgaris,European tufted aromatic perennial herb having hairy red or purple stems and dark green leaves downy white below and red-brown florets
+30802,common_mullein great_mullein Aaron's_rod flannel_mullein woolly_mullein torch Verbascum_thapsus,tall-stalked very woolly mullein with densely packed yellow flowers; ancient Greeks and Romans dipped the stalks in tallow for funeral torches
+30803,common_multiple,an integer that is a multiple of two or more other integers
+30804,common_murre Uria_aalge,the most frequent variety of murre
+30805,common_myrtle Myrtus_communis,European shrub with white or rosy flowers followed by black berries
+30806,common_newt Triturus_vulgaris,small semiaquatic salamander
+30807,common_noun,a noun that denotes any or all members of a class
+30808,common_nutcracker Nucifraga_caryocatactes,Old World nutcracker
+30809,common_oak English_oak pedunculate_oak Quercus_robur,medium to large deciduous European oak having smooth leaves with rounded lobes; yields hard strong light-colored wood
+30810,common_opossum Didelphis_virginiana Didelphis_marsupialis,omnivorous opossum of the eastern United States; noted for feigning death when in danger; esteemed as food in some areas; considered same species as the crab-eating opossum of South America
+30811,common_osier hemp_willow velvet_osier Salix_viminalis,willow with long flexible twigs used in basketry
+30812,common_pitcher_plant huntsman's_cup huntsman's_cups Sarracenia_purpurea,perennial bog herb having dark red flowers and decumbent broadly winged pitchers forming a rosette; of northeastern North America and naturalized in Europe especially Ireland
+30813,common_plum Prunus_domestica,any of various widely distributed plums grown in the cooler temperate areas
+30814,common_polypody adder's_fern wall_fern golden_maidenhair golden_polypody sweet_fern Polypodium_vulgare,mat-forming lithophytic or terrestrial fern with creeping rootstocks and large pinnatifid fronds found throughout North America and Europe and Africa and east Asia
+30815,common_pond-skater Gerris_lacustris,a variety of water strider
+30816,common_privet Ligustrum_vulgare,deciduous semi-evergreen shrub used for hedges
+30817,common_purslane pussley pussly verdolagas Portulaca_oleracea,weedy trailing mat-forming herb with bright yellow flowers cultivated for its edible mildly acid leaves eaten raw or cooked especially in Indian and Greek and Middle Eastern cuisine; cosmopolitan
+30818,common_raccoon common_racoon coon ringtail Procyon_lotor,North American raccoon
+30819,common_ragweed Ambrosia_artemisiifolia,annual weed with finely divided foliage and spikes of green flowers; common in North America; introduced elsewhere accidentally
+30820,common_room,a sitting room (usually at school or university)
+30821,common_roundworm Ascaris_lumbricoides,intestinal parasite of humans and pigs
+30822,common_sage ramona Salvia_officinalis,shrubby plant with aromatic greyish-green leaves used as a cooking herb
+30823,common_scoter Melanitta_nigra,a variety of scoter
+30824,common_sense good_sense gumption horse_sense sense mother_wit,sound practical judgment; "Common sense is not so common"; "he hasn't got the sense God gave little green apples"; "fortunately she had the good sense to run away"
+30825,common_shiner silversides Notropis_cornutus,the common North American shiner
+30826,common_shrew Sorex_araneus,common American shrew
+30827,common_sickle_pine Falcatifolium_falciforme,small tropical rain forest tree of Indonesia and Malaysia
+30828,common_snapping_turtle snapper Chelydra_serpentina,large-headed turtle with powerful hooked jaws found in or near water; prone to bite
+30829,common_speedwell gypsyweed Veronica_officinalis,common hairy European perennial with pale blue or lilac flowers in axillary racemes
+30830,common_spindle_tree Euonymus_europaeus,small erect deciduous shrub having tough white wood and cathartic bark and fruit
+30831,common_spoonbill Platalea_leucorodia,pure white crested spoonbill of southern Eurasia and northeastern Africa
+30832,common_spotted_orchid Dactylorhiza_fuchsii Dactylorhiza_maculata_fuchsii,European orchid having lanceolate leaves spotted purple and pink to white or mauve flowers spotted or lined deep red or purple
+30833,common_staghorn_fern elkhorn_fern Platycerium_bifurcatum Platycerium_alcicorne,commonly cultivated fern of Australia and southeastern Asia and Polynesia
+30834,common_starling Sturnus_vulgaris,gregarious bird having plumage with dark metallic gloss; builds nests around dwellings and other structures; naturalized worldwide
+30835,common_stinkhorn Phallus_impudicus,a common fungus formerly used in preparing a salve for rheumatism
+30836,common_stock common_shares ordinary_shares,stock other than preferred stock; entitles the owner to a share of the corporation's profits and a share of the voting power in shareholder elections; "over 40 million Americans invest in common stocks"
+30837,common_stock_equivalent,preferred stock or convertible bonds or warrants that can be converted into common stock
+30838,common_sunflower mirasol Helianthus_annuus,annual sunflower grown for silage and for its seeds which are a source of oil; common throughout United States and much of North America
+30839,common_teasel Dipsacus_fullonum,teasel with lilac flowers native to Old World but naturalized in North America; dried flower heads used to raise a nap on woolen cloth
+30840,common_thyme Thymus_vulgaris,common aromatic garden perennial native to the western Mediterranean; used in seasonings and formerly as medicine
+30841,common_time four-four_time quadruple_time common_measure,a time signature indicating four beats to the bar
+30842,common_tobacco Nicotiana_tabacum,tall erect South American herb with large ovate leaves and terminal clusters of tubular white or pink flowers; cultivated for its leaves
+30843,common_touch,the property of appealing to people in general (usually by appearing to have qualities in common with them)
+30844,common_unicorn_plant devil's_claw common_devil's_claw elephant-tusk proboscis_flower ram's_horn Proboscidea_louisianica,annual of southern United States to Mexico having large whitish or yellowish flowers mottled with purple and a long curving beak
+30845,common_valerian garden_heliotrope Valeriana_officinalis,tall rhizomatous plant having very fragrant flowers and rhizomes used medicinally
+30846,common_vetchling meadow_pea yellow_vetchling Lathyrus_pratensis,scrambling perennial Eurasian wild pea having yellowish flowers and compressed seed pods; cultivated for forage
+30847,common_wallaby Macropus_agiles,a small wallaby having a height of 30 inches
+30848,common_wart,a benign growth (often with a rough surface)
+30849,common_wasp Vespula_vulgaris,a variety of vespid wasp
+30850,common_water_snake banded_water_snake Natrix_sipedon Nerodia_sipedon,in some classifications placed in the genus Nerodia; western United States snake that seldom ventures far from water
+30851,common_watercress Rorippa_nasturtium-aquaticum Nasturtium_officinale,perennial Eurasian cress growing chiefly in springs or running water having fleshy pungent leaves used in salads or as a potherb or garnish; introduced in North America and elsewhere
+30852,common_wheat Triticum_aestivum,widely cultivated in temperate regions in many varieties for its commercially important grain
+30853,common_white_dogwood eastern_flowering_dogwood Cornus_florida,deciduous tree; celebrated for its large white or pink bracts and stunning autumn color that is followed by red berries
+30854,common_winterberry_holly,a holly shrub
+30855,common_wolffia Wolffia_columbiana,smallest flowering plants known; of the Americas
+30856,common_wood_sorrel cuckoo_bread shamrock Oxalis_acetosella,Eurasian plant with heart-shaped trifoliate leaves and white purple-veined flowers
+30857,common_wormwood absinthe old_man lad's_love Artemisia_absinthium,aromatic herb of temperate Eurasia and North Africa having a bitter taste used in making the liqueur absinthe
+30858,common_year 365_days,a year that is not a leap year
+30859,common_yellowthroat Maryland_yellowthroat Geothlypis_trichas,an American warbler
+30860,common_yellowwood bastard_yellowwood Afrocarpus_falcata,medium-sized tree of South Africa
+30861,common_zebra Burchell's_zebra Equus_Burchelli,of the plains of central and eastern Africa
+30862,commonage,property held in common
+30863,commonality commonness,sharing of common attributes
+30864,commonalty commonality commons,a class composed of persons lacking clerical or noble rank
+30865,commoner common_man common_person,a person who holds no title
+30866,commonness commonplaceness everydayness,ordinariness as a consequence of being frequent and commonplace
+30867,commonness expectedness,the state of being that is commonly observed
+30868,commonplace_book,a notebook in which you enter memorabilia
+30869,commons common_land,a pasture subject to common use
+30870,commonwealth,the official name of some states in the United States (Massachusetts and Pennsylvania and Virginia and Kentucky) and associated territories (Puerto Rico)
+30871,commonwealth,a world organization of autonomous states that are united in allegiance to a central power but are not subordinate to it or to one another
+30872,commonwealth_country,any of the countries in the British Commonwealth
+30873,commotion din ruction ruckus rumpus tumult,the act of making a noisy disturbance
+30874,communalism,the practice of communal living and common ownership
+30875,communalism,loyalty and commitment to the interests of your own minority or ethnic group rather than to society as a whole
+30876,commune,the smallest administrative district of several European countries
+30877,commune,a body of people or families living together and sharing everything
+30878,communicable_disease,a disease that can be communicated from one person to another
+30879,communicant,a person entitled to receive Communion
+30880,communicating_artery arteria_communicans,any of three arteries in the brain that make up the circle of Willis
+30881,communication,a connection allowing access between persons or places; "how many lines of communication can there be among four people?"; "a secret passageway provided communication between the two rooms"
+30882,communication,something that is communicated by or to or between people or groups
+30883,communication communicating,the activity of communicating; the activity of conveying information; "they could not act without official communication from Moscow"
+30884,communication_system,a system for communicating
+30885,communication_system communication_equipment,facility consisting of the physical plants and equipment for disseminating information
+30886,communications communication_theory,the discipline that studies the principles of transmiting information and the methods by which it is delivered (as print or radio or television etc.); "communications is his major field of study"
+30887,communications_intelligence COMINT,technical and intelligence information derived from foreign communications by other than the intended recipients
+30888,communications_satellite,an artificial satellite that relays signals back to earth; moves in a geostationary orbit
+30889,communications_technology,the activity of designing and constructing and maintaining communication systems
+30890,communicativeness,the trait of being communicative
+30891,communicator,a person who communicates with others
+30892,communion,(Christianity) a group of Christians with a common religious faith who practice the same rites
+30893,communion sharing,sharing thoughts and feelings
+30894,communism,a form of socialism that abolishes private ownership
+30895,communism,a political theory favoring collectivism in a classless society
+30896,communist commie,a socialist who advocates communism
+30897,communist_economy,the managed economy of a communist state
+30898,community,common ownership; "they shared a community of possessions"
+30899,community,a group of nations having common interests; "they hoped to join the NATO community"
+30900,community,a group of people living in a particular local area; "the team is drawn from all parts of the community"
+30901,community,a group of people having a religion, ethnic, profession, or other particular characteristic in common; "he was well known throughout the Catholic community"; "the news spread rapidly through the medical community"; "they formed a community of scientists"
+30902,community biotic_community,(ecology) a group of interdependent organisms inhabiting the same region and interacting with each other
+30903,community community_of_interests,agreement as to goals; "the preachers and the bootleggers found they had a community of interests"
+30904,community_center civic_center,a center where the members of a community can gather for social or cultural activities
+30905,community_chest,a charity supported by individual subscriptions; defrays the demands on a community for social welfare
+30906,community_college,a nonresidential junior college offering a curriculum fitted to the needs of the community
+30907,community_of_scholars,the body of individuals holding advanced academic degrees
+30908,community_property,property and income belonging jointly to a married couple
+30909,community_service,an unpaid service for the benefit of the public that is performed by lawbreakers as part (or all) of their sentence
+30910,community_service public_service,a service that is performed for the benefit of the public or its institutions
+30911,communization communisation,a change from private property to public property owned by the community
+30912,communization communisation,the organization of a nation of the basis of communism
+30913,commutability transmutability,the quality of being commutable
+30914,commutation,a warrant substituting a lesser punishment for a greater one
+30915,commutation commuting,the travel of a commuter
+30916,commutation re-sentencing,(law) the reduction in severity of a punishment imposed by law
+30917,commutation_ticket season_ticket,a ticket good for several trips or to attend a season of entertainments; sold at a reduced rate
+30918,commutator,switch for reversing the direction of an electric current
+30919,commute,a regular journey of some distance to and from your place of work; "there is standing room only on the high-speed commute"
+30920,commuter,someone who travels regularly from home in a suburb to work in a city
+30921,commuter commuter_train,a passenger train that is ridden primarily by passengers who travel regularly from one place to another
+30922,commuter_traffic,traffic created by people going to or returning from work
+30923,compact compact_car,a small and economical car
+30924,compact powder_compact,a small cosmetics case with a mirror; to be carried in a woman's purse
+30925,compact-disk_burner CD_burner,recording equipment for making compact disks
+30926,compact_disk compact_disc CD,a digitally encoded recording on an optical disk that is smaller than a phonograph record; played back by a laser
+30927,compaction compression concretion densification,an increase in the density of something
+30928,compactness,the consistency of a compact solid
+30929,companion,one paid to accompany or assist or live with another
+30930,companion comrade fellow familiar associate,a friend who is frequently in the company of another; "drinking companions"; "comrades in arms"
+30931,companion fellow_traveler fellow_traveller,a traveler who accompanies you
+30932,companionability companionableness,suitability to be a companion
+30933,companionway,a stairway or ladder that leads from one deck to another on a ship
+30934,company,small military unit; usually two or three platoons
+30935,company,a social gathering of guests or companions; "the house was filled with company when I arrived"
+30936,company,a unit of firefighters including their equipment; "a hook-and-ladder company"
+30937,company,an institution created to conduct business; "he only invests in large well-established companies"; "he started the company in his garage"
+30938,company companionship fellowship society,the state of being with someone; "he missed their company"; "he enjoyed the society of his friends"
+30939,company troupe,organization of performers and associated personnel (especially theatrical); "the traveling company all stayed at the same hotel"
+30940,company_man,an employee whose first loyalty is to the company rather than to fellow workers
+30941,company_name,the name by which a corporation is identified
+30942,company_operator,an operator who works for a company
+30943,company_union,a union of workers for a single company; a union not affiliated with a larger union
+30944,comparative comparative_degree,the comparative form of an adjective or adverb; "`faster' is the comparative of the adjective `fast'"; "`less famous' is the comparative degree of the adjective `famous'"; "`more surely' is the comparative of the adverb `surely'"
+30945,comparative_anatomist,anatomist who compares the anatomy of different animals
+30946,comparative_anatomy,the study of anatomical features of animals of different species
+30947,comparative_literature,study of literary works from different cultures (often in translation)
+30948,comparative_negligence,(law) negligence allocated between the plaintiff and the defendant with a corresponding reduction in damages paid to the plaintiff
+30949,comparative_psychology animal_psychology,the branch of psychology concerned with the behavior of animals
+30950,comparison,relation based on similarities and differences
+30951,comparison compare equivalence comparability,qualities that are comparable; "no comparison between the two books"; "beyond compare"
+30952,comparison comparing,the act of examining resemblances; "they made a comparison of noise levels"; "the fractions selected for comparison must require pupils to consider both numerator and denominator"
+30953,compartment,a space into which an area is subdivided
+30954,compartment,a partitioned section, chamber, or separate room within a larger enclosed area
+30955,compartment_pressure,the air pressure maintained in an air-tight compartment (as in an aircraft)
+30956,compartmentalization compartmentalisation,a mild state of dissociation
+30957,compass,drafting instrument used for drawing circles
+30958,compass,navigational instrument for finding directions
+30959,compass range reach grasp,the limit of capability; "within the compass of education"
+30960,compass_card mariner's_compass,compass in the form of a card that rotates so that 0 degrees or North points to magnetic north
+30961,compass_plant compass_flower,any of several plants having leaves so arranged on the axis as to indicate the cardinal points of the compass
+30962,compass_point point,any of 32 horizontal directions indicated on the card of a compass; "he checked the point on his compass"
+30963,compass_saw,a handsaw with a narrow triangular blade for cutting curves
+30964,compassion compassionateness,a deep awareness of and sympathy for another's suffering
+30965,compassion pity,the humane quality of understanding the suffering of others and wanting to do something about it
+30966,compassionate_leave,(military) leave granted in an emergency such as family sickness or death
+30967,compatibility,a feeling of sympathetic understanding
+30968,compatibility,capability of existing or performing in harmonious or congenial combination
+30969,compatible_software,application software programs that share common conventions so they can be utilized together
+30970,compatible_software,software that can run on different computers without modification
+30971,compatriot,a person from your own country
+30972,compendium,a concise but comprehensive summary of a larger work
+30973,compensating_balance offsetting_balance,a minimum credit balance that a bank may require a borrower to keep on deposit as a condition for granting a loan; a common requirement for establishing a line of credit at a bank; "the compensating balance increases the effective interest rate to the bank since the net amount loaned is reduced but the interest paid is unchanged"
+30974,compensation,(psychiatry) a defense mechanism that conceals your undesirable shortcomings by exaggerating desirable behaviors
+30975,compensation,something (such as money) given or received as payment or reparation (as for a service or loss or injury)
+30976,compensatory_time,time off that is granted to a worker as compensation for working overtime
+30977,compere,British term for someone who introduces television acts or cabarets etc
+30978,competence competency,the quality of being adequately or well qualified physically and intellectually
+30979,competence_hearing,a hearing to determine legal capacity (to determine whether the defendant can understand the charges and cooperate with a lawyer in preparing a defense)
+30980,competition,a business relation in which two parties compete to gain customers; "business competition can be fiendish at times"
+30981,competition contention rivalry,the act of competing as for profit or a prize; "the teams were in fierce contention for first place"
+30982,competitiveness fight,an aggressive willingness to compete; "the team was full of fight"
+30983,compilation compiling,the act of compiling (as into a single book or file or list); "the job of compiling the inventory took several hours"
+30984,compilation digest,something that is compiled (as into a single book or file)
+30985,compiler,a person who compiles information (as for reference purposes)
+30986,compiler compiling_program,(computer science) a program that decodes instructions written in a higher order language and produces an assembly language program
+30987,complacency complacence self-complacency self-satisfaction,the feeling you have when you are satisfied with yourself; "his complacency was absolutely disgusting"
+30988,complaint,(formerly) a loud cry (or repeated cries) of pain or rage or sorrow
+30989,complaint,an expression of grievance or resentment
+30990,complaint,(civil law) the first pleading of the plaintiff setting out the facts on which the claim for relief is based
+30991,complaisance compliance compliancy obligingness deference,a disposition or tendency to yield to the will of others
+30992,complement,one of a series of enzymes in the blood serum that are part of the immune response
+30993,complement,a complete number or quantity; "a full complement"
+30994,complement,a word or phrase used to complete a grammatical construction
+30995,complement,either of two parts that mutually complete each other
+30996,complement accompaniment,something added to complete or embellish or make perfect; "a fine wine is a perfect complement to the dinner"; "wild rice was served as an accompaniment to the main dish"
+30997,complement full_complement,number needed to make up a whole force; "a full complement of workers"
+30998,complement_fixation,an immune response in which an antigen-antibody combination inactivates a complement (so it is unavailable to participate in a second antigen-antibody combination)
+30999,complement_fixation_test,a blood test in which a sample of serum is exposed to a particular antigen and complement in order to determine whether or not antibodies to that particular antigen are present; used as a diagnostic test
+31000,complementarity,a relation between two opposite states or principles that together exhaust the possibilities
+31001,complementarity,the interrelation of reciprocity whereby one thing supplements or depends on the other; "the complementarity of the sexes"
+31002,complementary_DNA cDNA,single-stranded DNA that is complementary to messenger RNA or DNA that has been synthesized from messenger RNA by reverse transcriptase
+31003,complementary_angles,two angles whose sum is a right angle
+31004,complementary_color complementary,either one of two chromatic colors that when mixed together give white (in the case of lights) or grey (in the case of pigments); "yellow and blue are complementaries"
+31005,complementary_distribution complementation,(linguistics) a distribution of related speech sounds or forms in such a way that they only appear in different contexts
+31006,complementary_medicine,the practice of medicine that combines traditional medicine with alternative medicine
+31007,complementation,the grammatical relation of a word or phrase to a predicate
+31008,complete_blood_count CBC blood_profile,counting the number of white and red blood cells and the number of platelets in 1 cubic millimeter of blood
+31009,complete_fracture,break involving the entire width of the bone
+31010,completeness,the state of being complete and entire; having everything that is needed
+31011,completeness,(logic) an attribute of a logical system that is so constituted that a contradiction arises if any proposition is introduced that cannot be derived from the axioms of the system
+31012,completion culmination closing windup mop_up,a concluding action
+31013,completion pass_completion,(American football) a successful forward pass in football
+31014,complex,(psychoanalysis) a combination of emotions and impulses that have been rejected from awareness but still influence a person's behavior
+31015,complex composite,a conceptual whole made up of complicated and related parts; "the complex of shopping malls, houses, and roads created a new town"
+31016,complex coordination_compound,a compound described in terms of the central atom to which other atoms are bound or coordinated
+31017,complex_absence,an absence seizure accompanied by other abnormalities (atonia or automatisms or vasomotor changes)
+31018,complex_conjugate,either of two complex numbers whose real parts are identical and whose imaginary parts differ only in sign
+31019,complex_fraction compound_fraction,a fraction with fractions in the numerator or denominator
+31020,complex_instruction_set_computing complex_instruction_set_computer CISC,(computer science) a kind of computer architecture that has a large number of instructions hard coded into the CPU chip
+31021,complex_number complex_quantity imaginary_number imaginary,(mathematics) a number of the form a+bi where a and b are real numbers and i is the square root of -1
+31022,complex_plane,a geometric representation of the complex numbers established by the real axis and the orthogonal imaginary axis; it can be thought of as a modified Cartesian plane, with the real part of a complex number represented by a displacement along the x-axis, and the imaginary part by a displacement along the y-axis
+31023,complex_sentence,a sentence composed of at least one main clause and one subordinate clause
+31024,complexifier,someone makes things complex
+31025,complexion,a combination that results from coupling or interlinking; "diphthongs are complexions of vowels"
+31026,complexion,a point of view or general attitude or inclination; "he altered the complexion of his times"; "a liberal political complexion"
+31027,complexion,texture and appearance of the skin of the face
+31028,complexion,(obsolete) a combination of elements (of dryness and warmth or of the four humors) that was once believed to determine a person's health and temperament
+31029,complexion skin_color skin_colour,the coloring of a person's face
+31030,complexity complexness,the quality of being intricate and compounded; "he enjoyed the complexity of modern computers"
+31031,complicatedness complication knottiness tortuousness,puzzling complexity
+31032,complication,any disease or disorder that occurs during the course of (or because of) another disease; "bed sores are a common complication in cases of paralysis"
+31033,complication,a situation or condition that is complex or confused; "her coming was a serious complication"
+31034,complication,the act or process of complicating
+31035,complication ramification,a development that complicates a situation; "the court's decision had many unforeseen ramifications"
+31036,complicity,guilt as an accomplice in a crime or offense
+31037,compliment,a remark (or act) expressing praise and admiration
+31038,compline complin,last of the seven canonical hours just before retiring
+31039,component constituent element,an artifact that is one of the individual parts of which a composite entity is made up; especially a part that can be separated from or attached to a system; "spare components for cars"; "a component or constituent element of a system"
+31040,component constituent element factor ingredient,an abstract part of something; "jealousy was a component of his character"; "two constituents of a musical composition are melody and harmony"; "the grammatical elements of a sentence"; "a key factor in her success"; "humor: an effective ingredient of a speech"
+31041,composer,someone who composes music as a profession
+31042,composing composition,musical creation
+31043,composite composite_plant,considered the most highly evolved dicotyledonous plants, characterized by florets arranged in dense heads that resemble single flowers
+31044,composite_material,strong lightweight material developed in the laboratory; fibers of more than one kind are bonded together chemically
+31045,composite_number,an integer that is divisible without remainder by at least one positive integer other than itself and one
+31046,compositeness,the property of being a composite number
+31047,composition,a mixture of ingredients
+31048,composition,something that is created by arranging several things to form a unified whole; "he envied the composition of their faculty"
+31049,composition composing,the spatial property resulting from the arrangement of parts in relation to each other and to the whole; "harmonious composition is essential in a serious work of art"
+31050,composition paper report theme,an essay (especially one written as an assignment); "he got an A on his composition"
+31051,compositor typesetter setter typographer,one who sets written material into type
+31052,compost,a mixture of decaying vegetation and manure; used as a fertilizer
+31053,compost_heap compost_pile,a heap of manure and vegetation and other organic residues that are decaying to become compost
+31054,composure calm calmness equanimity,steadiness of mind under stress; "he accepted their problems with composure and she with equanimity"
+31055,compote fruit_compote,dessert of stewed or baked fruit
+31056,compound,a whole formed by a union of two or more elements or parts
+31057,compound,an enclosure of residences and other building (especially in the Orient)
+31058,compound chemical_compound,(chemistry) a substance formed by chemical union of two or more elements or ingredients in definite proportion by weight
+31059,compound_eye,in insects and some crustaceans: composed of many light-sensitive elements each forming a portion of an image
+31060,compound_fracture open_fracture,bone fracture associated with lacerated soft tissue or an open wound
+31061,compound_interest,interest calculated on both the principal and the accrued interest
+31062,compound_leaf,a leaf composed of a number of leaflets on a common stalk
+31063,compound_lens,a lens system consisting of two or more lenses on the same axis
+31064,compound_lever,a pair of levers hinged at the fulcrum
+31065,compound_microscope,light microscope that has two converging lens systems: the objective and the eyepiece
+31066,compound_morphology,the part of grammar that deals with combinations of simple words into compound words
+31067,compound_number,a quantity expressed in two different units; "one hour and ten minutes"
+31068,compound_pistil,consists of two or more fused carpels
+31069,compound_sentence,a sentence composed of at least two coordinate independent clauses
+31070,comprehensibility understandability,the quality of comprehensible language or thought
+31071,comprehension,an ability to understand the meaning or importance of something (or the knowledge acquired as a result); "how you can do that is beyond my comprehension"; "he was famous for his comprehension of American literature"
+31072,comprehensive_examination comprehensive comp,an intensive examination testing a student's proficiency in some special field of knowledge; "she took her comps in English literature"
+31073,comprehensive_school composite_school,a large British or Canadian secondary school for children of all abilities
+31074,comprehensiveness fullness,completeness over a broad scope
+31075,compress,a cloth pad or dressing (with or without medication) applied firmly to some part of the body (to relieve discomfort or reduce fever)
+31076,compressed_air,air at a pressure greater than that of the atmosphere; "compressed air is often used to power machines"
+31077,compressed_gas,gas at a high pressure that can be used as a propellant
+31078,compressibility squeezability sponginess,the property of being able to occupy less space
+31079,compression,encoding information while reducing the bandwidth or bits required
+31080,compression compressing,applying pressure
+31081,compression condensation contraction,the process or result of becoming smaller or pressed together; "the contraction of a gas on cooling"
+31082,compression_bandage tourniquet,bandage that stops the flow of blood from an artery by applying pressure
+31083,compression_fracture,fracture in which the bone collapses (especially in short bones such as vertebrae)
+31084,compressor,a mechanical device that compresses gasses
+31085,compromise,an accommodation in which both sides make concessions; "the newly elected congressmen rejected a compromise because they considered it `business as usual'"
+31086,compromise via_media,a middle way between two extremes
+31087,compromise_verdict,a verdict resulting from improper compromises between jurors on material issues
+31088,compromiser,a negotiator willing to compromise; "Henry Clay was known as the Great Compromiser"
+31089,compsognathus,very small bipedal carnivorous dinosaur of the late Jurassic in Bavaria
+31090,comptrollership,the position of comptroller
+31091,compulsion coercion,using force to cause something to occur; "though pressed into rugby under compulsion I began to enjoy the game"; "they didn't have to use coercion"
+31092,compulsion irresistible_impulse,an urge to do or say something that might be better left undone or unsaid; "he felt a compulsion to babble on about the accident"
+31093,compulsion obsession,an irrational motive for performing trivial or repetitive actions, even against your will; "her compulsion to wash her hands repeatedly"
+31094,compulsive,a person with a compulsive disposition; someone who feels compelled to do certain things
+31095,compulsiveness compulsivity,the trait of acting compulsively
+31096,compulsory_process,the right of a defendant to have a court use its subpoena power to compel the appearance of material witnesses before the court
+31097,compunction remorse self-reproach,a feeling of deep regret (usually for some misdeed)
+31098,computational_linguist,someone trained in computer science and linguistics who uses computers for natural language processing
+31099,computational_linguistics,the use of computers for linguistic research and applications
+31100,computer computing_machine computing_device data_processor electronic_computer information_processing_system,a machine for performing calculations automatically
+31101,computer-aided_design CAD,software used in art and architecture and engineering and manufacturing to assist in precision drawing
+31102,computer_accessory,an accessory for a computer; "when you add in all the computer accessories you are going to need the computer gets pretty expensive"
+31103,computer_architecture,the art of assembling logical elements into a computing device; the specification of the relation between parts of a computer system
+31104,computer_architecture architecture,(computer science) the structure and organization of a computer's hardware or system software; "the architecture of a computer's system software"
+31105,computer_business,a business that manufactures and sells computers
+31106,computer_circuit,a circuit that is part of a computer
+31107,computer_dealer,a firm that sells and buys computers
+31108,computer_expert computer_guru,an authority on computers and computing
+31109,computer_file,(computer science) a file maintained in computer-readable form
+31110,computer_game video_game,a game played against a computer
+31111,computer_graphics,the pictorial representation and manipulation of data by a computer
+31112,computer_industry,the manufacturers of computers considered collectively
+31113,computer_keyboard keypad,a keyboard that is a data input device for computers; arrangement of keys is modelled after the typewriter keyboard
+31114,computer_language computer-oriented_language machine_language machine-oriented_language,a programming language designed for use on a specific class of computers
+31115,computer_memory_unit,a unit for measuring computer memory
+31116,computer_monitor,a device that displays signals on a computer screen
+31117,computer_network,(computer science) a network of computers
+31118,computer_operation machine_operation,an elementary operation that a computer is designed and built to perform
+31119,computer_paper,paper folded to permit continuous printing controlled by a computer
+31120,computer_science computing,the branch of engineering science that studies (with the aid of computers) computable processes and structures
+31121,computer_scientist,a scientist who specializes in the theory of computation and the design of computers
+31122,computer_screen computer_display,a screen used to display the output of a computer to the user
+31123,computer_store,a store that sells computers to the small businessperson or personal user
+31124,computer_system computing_system automatic_data_processing_system ADP_system ADPS,a system of one or more computers and associated software with common storage
+31125,computer_technology,the activity of designing and constructing and programming computers
+31126,computer_user,a person who uses computers for work or entertainment or communication or business
+31127,computerization cybernation,the control of processes by computer
+31128,computerized_axial_tomography_scanner CAT_scanner,a tomograph that constructs a 3-D model of an object by combining parallel planes
+31129,computerized_tomography computed_tomography CT computerized_axial_tomography computed_axial_tomography CAT,a method of examining body organs by scanning them with X rays and using a computer to construct a series of cross-sectional scans along a single axis
+31130,con,an argument opposed to a proposal
+31131,conacaste elephant's_ear Enterolobium_cyclocarpa,tropical South American tree having a wide-spreading crown of bipinnate leaves and coiled ear-shaped fruits; grown for shade and ornament as well as valuable timber
+31132,concatenation,the state of being linked together as in a chain; union in a linked series
+31133,concatenation,the linking together of a consecutive series of symbols or events or ideas etc; "it was caused by an improbable concatenation of circumstances"
+31134,concatenation,the act of linking together as in a series or chain
+31135,concave_polygon,a polygon such that there is a straight line that cuts it in four or more points
+31136,concave_polyhedron,a polyhedron some of whose plane sections are concave polygons
+31137,concave_shape concavity incurvation incurvature,a shape that curves or bends inward
+31138,concavity concaveness,the property possessed by a concave shape
+31139,concealment concealing hiding,the activity of keeping something secret
+31140,conceit,an elaborate poetic image or a far-fetched comparison of very dissimilar things
+31141,conceit,a witty or ingenious turn of phrase; "he could always come up with some inspired off-the-wall conceit"
+31142,conceit,an artistic device or effect; "the architect's brilliant conceit was to build the house around the tree"
+31143,conceit conceitedness vanity,the trait of being unduly vain and conceited; false pride
+31144,conceivableness conceivability,the state of being conceivable
+31145,concentrate,a concentrated form of a foodstuff; the bulk is reduced by removing water
+31146,concentrate,a concentrated example of something; "the concentrate of contemporary despair"
+31147,concentrated_fire massed_fire,fire from two or more weapons directed at a single target or area (as fire by batteries of two or more warships)
+31148,concentration,increase in density
+31149,concentration,the strength of a solution; number of molecules of a substance in a given volume
+31150,concentration,bringing together military forces
+31151,concentration,strengthening the concentration (as of a solute in a mixture) by removing diluting material
+31152,concentration density denseness tightness compactness,the spatial property of being crowded together
+31153,concentration engrossment absorption immersion,complete attention; intense mental effort
+31154,concentration_camp,a situation characterized by crowding and extremely harsh conditions
+31155,concentration_camp stockade,a penal camp where political prisoners or prisoners of war are confined (usually under harsh conditions)
+31156,concentration_gradient,a gradient in concentration of a solute as a function of distance through a solution; "the movement of a solute down its concentration gradient is called diffusion"
+31157,concentricity,the quality of having the same center (as circles inside one another)
+31158,concept conception construct,an abstract or general idea inferred or derived from specific instances
+31159,concept_album,an album whose recordings are unified by some theme (instrumental or lyrical or narrative or compositional)
+31160,conception,the act of becoming pregnant; fertilization of an ovum by a spermatozoon
+31161,conceptualism,the doctrine that the application of a general term to various objects indicates the existence of a mental entity that mediates the application
+31162,conceptualization conceptualisation conceptuality,an elaborated concept
+31163,conceptualization conceptualisation formulation,inventing or contriving an idea or explanation and formulating it mentally
+31164,concern,a feeling of sympathy for someone or something; "She felt strong concern for those less fortunate"
+31165,concern,something that interests you because it is important or affects you; "the safety of the ship is the captain's concern"
+31166,concern care fear,an anxious feeling; "care had aged him"; "they hushed it up out of fear of public reaction"
+31167,concern worry headache vexation,something or someone that causes anxiety; a source of unhappiness; "New York traffic is a constant concern"; "it's a major worry"
+31168,concert,a performance of music by players or singers not involving theatrical staging
+31169,concert-goer music_lover,someone who attends concerts
+31170,concert_band military_band,a group of musicians playing brass and woodwind and percussion instruments
+31171,concert_grand concert_piano,a grand piano suitable for concert performances
+31172,concert_hall,a hall where concerts are given
+31173,concert_pitch philharmonic_pitch international_pitch,the pitch used to tune instruments for concert performances; usually assigns 440 Hz to the A above middle C
+31174,concertina,coiled barbed wire used as an obstacle
+31175,concertina,free-reed instrument played like an accordion by pushing its ends together to force air through the reeds
+31176,concertinist,a person who plays the concertina
+31177,concerto,a composition for orchestra and a soloist
+31178,concerto_grosso,a baroque composition for orchestra and a group of solo instruments
+31179,concession,a point conceded or yielded; "they won all the concessions they asked for"
+31180,concession conceding yielding,the act of conceding or yielding
+31181,concession grant,a contract granting the right to operate a subsidiary business; "he got the beer concession at the ball park"
+31182,concessionaire concessioner,someone who holds or operates a concession
+31183,conch,any of various edible tropical marine gastropods of the genus Strombus having a brightly-colored spiral shell with large outer lip
+31184,concha,(anatomy) a structure that resembles a shell in shape
+31185,conchfish Astropogon_stellatus,found in West Indies; lives in mantle cavity of a living conch
+31186,conchologist,a collector and student of mollusc shells
+31187,conchology shell_collecting,the collection and study of mollusc shells
+31188,concierge,a French caretaker of apartments or a hotel; lives on the premises and oversees people entering and leaving and handles mail and acts as janitor or porter
+31189,conciliation,the state of manifesting goodwill and cooperation after being reconciled; "there was a brief period of conciliation but the fighting soon resumed"
+31190,conciliation,any of various forms of mediation whereby disputes may be settled short of arbitration
+31191,conciliator make-peace pacifier peacemaker reconciler,someone who tries to bring peace
+31192,conciseness concision pithiness succinctness,terseness and economy in writing and speaking achieved by expressing a great deal in just a few words
+31193,conclave,a confidential or secret meeting
+31194,conclusion,a final settlement; "the conclusion of a business deal"; "the conclusion of the peace treaty"
+31195,conclusion,an intuitive assumption; "jump to a conclusion"
+31196,conclusion end close closing ending,the last section of a communication; "in conclusion I want to say..."
+31197,conclusion ratiocination,the proposition arrived at by logical reasoning (such as the proposition that must follow from the major and minor premises of a syllogism)
+31198,concoction,an occurrence of an unusual mixture; "it suddenly spewed out a thick green concoction"
+31199,concoction,the invention of a scheme or story to suit some purpose; "his testimony was a concoction"; "she has no peer in the concoction of mystery stories"
+31200,concoction mixture intermixture,any foodstuff made by combining different ingredients; "he volunteered to taste her latest concoction"; "he drank a mixture of beer and lemonade"
+31201,concomitance,occurrence or existence together or in connection with one another
+31202,concordance,an index of all main words in a book along with their immediate contexts
+31203,concourse,a wide hallway in a building where people can walk
+31204,concourse confluence,a coming together of people
+31205,concrete,a strong hard building material composed of sand and gravel and cement and water
+31206,concrete_jungle,an area in a city with large modern buildings that is perceived as dangerous and unpleasant
+31207,concrete_mixer cement_mixer,a machine with a large revolving drum in which cement is mixed with other materials to make concrete
+31208,concreteness,the quality of being concrete (not abstract)
+31209,concretion,the formation of stonelike objects within a body organ (e.g., the kidneys)
+31210,concretism concrete_representation,a representation of an abstract idea in concrete terms
+31211,concubinage,cohabitation without being legally married
+31212,concubine courtesan doxy paramour,a woman who cohabits with an important man
+31213,concurrence coincidence conjunction co-occurrence,the temporal property of two things happening at the same time; "the interval determining the coincidence gate is adjustable"
+31214,concurrence concurrency,agreement of results or opinions
+31215,concurrence concurrency,acting together, as agents or circumstances or events
+31216,concurrence meeting_of_minds,a state of cooperation
+31217,concurrent_negligence,(law) negligence of two of more persons acting independently; the plaintiff may sue both together or separately
+31218,concurrent_operation,two or more operations performed at the same time (or within a give interval)
+31219,concurring_opinion,an opinion that agrees with the court's disposition of the case but is written to express a particular judge's reasoning
+31220,concussion,injury to the brain caused by a blow; usually resulting in loss of consciousness
+31221,concussion,any violent blow
+31222,condemnation,the condition of being strongly disapproved of; "he deserved nothing but condemnation"
+31223,condemnation,(law) the act of condemning (as land forfeited for public use) or judging to be unfit for use (as a food product or an unsafe building)
+31224,condensate,a product of condensation
+31225,condensation,the process of changing from a gaseous to a liquid or solid state
+31226,condensation,(psychoanalysis) an unconscious process whereby two ideas or images combine into a single symbol; especially in dreams
+31227,condensation abridgement abridgment capsule,a shortened version of a written work
+31228,condensation condensate,atmospheric moisture that has condensed because of cold
+31229,condensation_pump diffusion_pump,vacuum pump used to obtain a high vacuum
+31230,condensed_milk,sweetened evaporated milk
+31231,condenser,an apparatus that converts vapor into liquid
+31232,condenser,a hollow coil that condenses by abstracting heat
+31233,condenser optical_condenser,lens used to concentrate light on an object
+31234,condenser_microphone capacitor_microphone condenser_mike capacitor_mike,microphone consisting of a capacitor with one plate fixed and the other forming the diaphragm moved by sound waves
+31235,condensing condensation,the act of increasing the density of something
+31236,condescension condescendingness,affability to your inferiors and temporary disregard for differences of position or rank; "the queen's condescension was intended to make us feel comfortable"
+31237,condescension disdain patronage,a communication that indicates lack of respect by patronizing the recipient
+31238,condescension superciliousness disdainfulness,the trait of displaying arrogance by patronizing those considered inferior
+31239,condiment,a preparation (a sauce or relish or spice) to enhance flavor or enjoyment; "mustard and ketchup are condiments"
+31240,condition,an illness, disease, or other medical problem; "a heart condition"; "a skin condition"
+31241,condition,a mode of being or form of existence of a person or thing; "the human condition"
+31242,condition experimental_condition,the procedure that is varied in order to estimate a variable's effect by comparison with a control condition
+31243,condition precondition stipulation,an assumption on which rests the validity or effect of something else
+31244,condition shape,the state of (good) health (especially in the phrases `in condition' or `in shape' or `out of condition' or `out of shape')
+31245,condition status,a state at a particular time; "a condition (or state) of disrepair"; "the current status of the arms negotiations"
+31246,condition strings term,(usually plural) a statement of what is required as part of an agreement; "the contract set out the conditions of the lease"; "the terms of the treaty were generous"
+31247,conditional_contract,a contract whose performance depends on a fact or event that affects legal relations
+31248,conditional_probability contingent_probability,the probability that an event will occur given that one or more other events have occurred
+31249,conditional_reflex conditioned_reflex acquired_reflex conditional_reaction conditioned_reaction conditional_response conditioned_response,an acquired response that is under the control of (conditional on the occurrence of) a stimulus
+31250,conditional_sale,a security interest taken by the seller in return for credit
+31251,conditional_sale,a sale in which the buyer receives title to the property only upon the performance of some condition (usually the full payment of the purchase price)
+31252,conditionality,the state of being conditional
+31253,conditioned_avoidance conditioned_avoidance_response,a conditioned response that anticipates the occurrence of an aversive stimulus
+31254,conditioned_emotional_response CER conditioned_emotion,an emotional response that has been acquired by conditioning
+31255,conditioned_stimulus,the stimulus that is the occasion for a conditioned response
+31256,conditioner,a trainer of athletes
+31257,conditioner,a substance used in washing (clothing or hair) to make things softer
+31258,conditioner,exercise that conditions the body; "farm work can be a good conditioner"
+31259,conditioning,a learning process in which an organism's behavior becomes dependent on the occurrence of a stimulus in its environment
+31260,conditions,the prevailing context that influences the performance or the outcome of a process; "there were wide variations in the conditions of observation"
+31261,conditions,the set of circumstances that affect someone's welfare; "hazardous working conditions"; "harsh living conditions"
+31262,condolence commiseration,an expression of sympathy with another's grief; "they sent their condolences"
+31263,condom rubber safety safe prophylactic,contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse
+31264,condominium,housing consisting of a complex of dwelling units (as an apartment house) in which each unit is individually owned
+31265,condominium condo,one of the dwelling units in a condominium
+31266,condonation,a pardon by treating the offender as if the offense had not occurred
+31267,condor,the largest flying birds in the western hemisphere
+31268,conductance,a material's capacity to conduct electricity; measured as the reciprocal of electrical resistance
+31269,conductance_unit,a measure of a material's ability to conduct an electrical charge
+31270,conducting,the way of administering a business
+31271,conducting,the direction of an orchestra or choir; "he does not use a baton for conducting"
+31272,conduction conductivity,the transmission of heat or electricity or sound
+31273,conduction_anesthesia conduction_anaesthesia nerve_block_anesthesia nerve_block_anaesthesia block_anesthesia block_anaesthesia,anesthesia of an area supplied by a nerve; produced by an anesthetic agent applied to the nerve
+31274,conduction_aphasia associative_aphasia,aphasia in which the lesion is assumed to be in the association tracts connecting the various language centers in the brain; patient's have difficulty repeating a sentence just heard
+31275,conductive_hearing_loss conduction_deafness middle-ear_deafness,hearing loss due to problems with the bones of the middle ear
+31276,conductor,a substance that readily conducts e.g. electricity and heat
+31277,conductor,the person who collects fares on a public conveyance
+31278,conductor,a device designed to transmit electricity, heat, etc.
+31279,conductor music_director director,the person who leads a musical group
+31280,conductress,a woman conductor
+31281,conduit,a passage (a pipe or tunnel) through which water or electric wires can pass; "the computers were connected through a system of conduits"
+31282,condylar_process condyloid_process mandibular_condyle,the condyle of the ramus of the mandible that articulates with the skull
+31283,condyle,a round bump on a bone where it forms a joint with another bone
+31284,condylion,the craniometric point at the tip of the mandibular condyle
+31285,cone,any cone-shaped artifact
+31286,cone cone_cell retinal_cone,a visual receptor cell in the retina that is sensitive to bright light and to color
+31287,cone conoid cone_shape,a shape whose base is a circle and whose sides taper up to a point
+31288,cone strobilus strobile,cone-shaped mass of ovule- or spore-bearing scales or bracts
+31289,cone_clutch cone_friction_clutch,a friction clutch in which the frictional surfaces are cone-shaped
+31290,cone_pepper Capsicum_annuum_conoides,plant bearing erect pungent conical red or yellow or purple fruits; sometimes grown as an ornamental
+31291,coneflower,any of various plants of the genus Rudbeckia cultivated for their large usually yellow daisies with prominent central cones
+31292,coneflower,a wildflower of the genus Ratibida
+31293,coneflower,any of various perennials of the eastern United States having thick rough leaves and long-stalked showy flowers with drooping rays and a conelike center
+31294,conenose cone-nosed_bug conenose_bug big_bedbug kissing_bug,large bloodsucking bug
+31295,coney Epinephelus_fulvus,black-spotted usually dusky-colored fish with reddish fins
+31296,confabulation,(psychiatry) a plausible but imagined memory that fills in gaps in what is remembered
+31297,confection concoction,the act of creating something (a medicine or drink or soup etc.) by compounding or mixing a variety of components
+31298,confectioner candymaker,someone who makes candies and other sweets
+31299,confectionery,candy and other sweets considered collectively; "the business decided to concentrate on confectionery and soft drinks"
+31300,confectionery,the occupation and skills of a confectioner
+31301,confectionery confectionary candy_store,a confectioner's shop
+31302,confederate collaborator henchman partner_in_crime,someone who assists in a plot
+31303,confederation alliance,the act of forming an alliance or confederation
+31304,confederation confederacy federation,a union of political organizations
+31305,conferee,a person on whom something is bestowed; "six honorary were conferred; the conferees were..."
+31306,conferee,a member of a conference
+31307,conference,a prearranged meeting for consultation or exchange of information or discussion (especially one with a formal agenda)
+31308,conference group_discussion,a discussion among participants who have an agreed (serious) topic
+31309,conference_call,a telephone call in which more than two people participate
+31310,conference_center conference_house,a center where conferences can be conducted
+31311,conference_room,a room in which a conference can be held
+31312,conference_table council_table council_board,the table that conferees sit around as they hold a meeting
+31313,conferrer,someone who converses or confers (as in a conference)
+31314,conferva,any of various algae of the genus Tribonema; algae with branching filaments that form scum in still or stagnant fresh water
+31315,confervoid_algae,algae resembling confervae especially in having branching filaments
+31316,confession,an admission of misdeeds or faults
+31317,confession,a public declaration of your faith
+31318,confession,the document that spells out the belief system of a given church (especially the Reformation churches of the 16th century)
+31319,confession,a written document acknowledging an offense and signed by the guilty party
+31320,confession,(Roman Catholic Church) the act of a penitent disclosing his sinfulness before a priest in the sacrament of penance in the hope of absolution
+31321,confession_of_judgment confession_of_judgement cognovit_judgment cognovit_judgement,a judgment entered after a written confession by the debtor without the expense of ordinary legal proceedings
+31322,confessional,a booth where a priest sits to hear confessions
+31323,confessor,someone who confesses (discloses information damaging to themselves)
+31324,confessor,a priest who hears confession and gives absolution
+31325,confetti,small pieces or streamers of colored paper that are thrown around on festive occasions (as at a wedding)
+31326,confidant intimate,someone to whom private matters are confided
+31327,confidante,a female confidant
+31328,confidence,a state of confident hopefulness that events will be favorable; "public confidence in the economy"
+31329,confidence,a feeling of trust (in someone or something); "I have confidence in our team"; "confidence is always borrowed, never owned"
+31330,confidence,a secret that is confided or entrusted to another; "everyone trusted him with their confidences"; "the priest could not reveal her confidences"
+31331,confidence trust,a trustful relationship; "he took me into his confidence"; "he betrayed their trust"
+31332,confidence_man con_man con_artist,a swindler who exploits the confidence of his victim
+31333,confidential_adviser-advisee_relation,the responsibility of a confidential adviser to act in the best interest of the advisee
+31334,confidentiality,the state of being secret; "you must respect the confidentiality of your client's communications"
+31335,confidentiality,discretion in keeping secret information
+31336,configuration constellation,an arrangement of parts or elements; "the outcome depends on the configuration of influences at the time"
+31337,confinement,the state of being confined; "he was held in confinement"
+31338,confinement,the act of restraining of a person's liberty by confining them
+31339,confines,a bounded scope; "he stayed within the confines of the city"
+31340,confirmation,information that confirms or verifies
+31341,confirmation,a ceremony held in the synagogue (usually at Pentecost) to admit as adult members of the Jewish community young men and women who have successfully completed a course of study in Judaism
+31342,confirmation,a sacrament admitting a baptized person to full participation in the church
+31343,confirmation verification check substantiation,additional proof that something that was believed (some fact or hypothesis or theory) is correct; "fossils provided further confirmation of the evolutionary theory"
+31344,confirmation_hearing,a hearing held by the US Senate to gather information on whether to approve or reject candidates for high federal office who are nominated by the president
+31345,confiscation arrogation,seizure by the government
+31346,confit,a piece of meat (especially a duck) cooked slowly in its own fat
+31347,confiture,preserved or candied fruit
+31348,conflagration inferno,a very intense and uncontrolled fire
+31349,conflict,a state of opposition between persons or ideas or interests; "his conflict of interest made him ineligible for the post"; "a conflict of loyalties"
+31350,conflict,opposition in a work of drama or fiction between characters or forces (especially an opposition that motivates the development of the plot); "this form of conflict is essential to Mann's writing"
+31351,conflict,opposition between two simultaneous but incompatible feelings; "he was immobilized by conflict and indecision"
+31352,conflict,an incompatibility of dates or events; "he noticed a conflict in the dates of the two meetings"
+31353,conflict struggle battle,an open clash between two opposing groups (or individuals); "the harder the conflict the more glorious the triumph"--Thomas Paine; "police tried to control the battle between the pro- and anti-abortion mobs"
+31354,conflict_of_interest,a situation in which a public official's decisions are influenced by the official's personal interests
+31355,confluence conflux merging,a flowing together
+31356,confluence meeting,a place where things merge or flow together (especially rivers); "Pittsburgh is located at the confluence of the Allegheny and Monongahela rivers"
+31357,conformal_projection orthomorphic_projection,a map projection in which a small area is rendered in its true shape
+31358,conformation,a symmetrical arrangement of the parts of a thing
+31359,conformational_entropy,entropy calculated from the probability that a state could be reached by chance alone
+31360,conformist,someone who conforms to established standards of conduct (especially in religious matters)
+31361,conformity conformance,correspondence in form or appearance
+31362,conformity conformation compliance abidance,acting according to certain accepted standards; "their financial statements are in conformity with generally accepted accounting practices"
+31363,conformity conformism,orthodoxy in thoughts and belief
+31364,confrontation,a bold challenge
+31365,confrontation,discord resulting from a clash of ideas or opinions
+31366,confrontation,a focussed comparison; bringing together for a careful comparison
+31367,confrontation encounter showdown face-off,a hostile disagreement face-to-face
+31368,confrontation opposition,the act of hostile groups opposing each other; "the government was not ready for a confrontation with the unions"; "the invaders encountered stiff opposition"
+31369,confusion,disorder resulting from a failure to behave predictably; "the army retreated in confusion"
+31370,confusion,an act causing a disorderly combination of elements with identities lost and distinctions blended; "the confusion of tongues at the Tower of Babel"
+31371,confusion discombobulation,a feeling of embarrassment that leaves you confused
+31372,confusion mental_confusion confusedness muddiness disarray,a mental state characterized by a lack of clear and orderly thought and behavior; "a confusion of impressions"
+31373,confusion mix-up,a mistake that results from taking one thing to be another; "he changed his name in order to avoid confusion with the notorious outlaw"
+31374,confutation,the speech act of refuting conclusively
+31375,confutation,evidence that refutes conclusively
+31376,conga,music composed for dancing the conga
+31377,conga,a Latin American dance of 3 steps and a kick by people in single file
+31378,conga_line,a line of people in single file performing the conga dance
+31379,conge congee,(architecture) a concave molding
+31380,conge congee,formal permission to depart; "he gave me his conge"
+31381,conge congee,an abrupt and unceremonious dismissal
+31382,congealment congelation,the process of congealing; solidification by (or as if by) freezing
+31383,congee jook,a Chinese rice gruel eaten for breakfast
+31384,congener,a minor chemical constituent that gives a wine or liquor its distinctive character
+31385,congener,a whole (a thing or person) of the same kind or category as another; "lard was also used, though its congener, butter, was more frequently employed"; "the American shopkeeper differs from his European congener"
+31386,congeniality,a congenial disposition
+31387,congenialness congeniality,compatibility between persons
+31388,congenital_afibrinogenemia,a rare congenital disorder of blood coagulation in which no fibrinogen is found in the blood plasma
+31389,congenital_heart_defect,a birth defect involving the heart
+31390,conger conger_eel,large dark-colored scaleless marine eel found in temperate and tropical coastal waters; some used for food
+31391,congestion,excessive accumulation of blood or other fluid in a body part
+31392,congestion over-crowding,excessive crowding; "traffic congestion"
+31393,congestive_heart_failure,inability to pump enough blood to avoid congestion in the tissues
+31394,conglomerate empire,a group of diverse companies under common ownership and run as a single organization
+31395,conglomeration conglobation,a rounded spherical form
+31396,conglomeration conglobation,an occurrence combining miscellaneous things into a (more or less) rounded mass
+31397,congo_copal congo_gum,copal found usually as a fossil
+31398,congo_red,a red-brown azo dye especially as a chemical pH indicator (congo red is red in basic and blue in acidic solutions)
+31399,congou congo congou_tea English_breakfast_tea,black tea grown in China
+31400,congratulation felicitation,(usually plural) an expression of pleasure at the success or good fortune of another; "I sent them my sincere congratulations on their marriage"
+31401,congratulation felicitation,the act of acknowledging that someone has an occasion for celebration
+31402,congregant,a member of a congregation (especially that of a church or synagogue)
+31403,congregation,an assemblage of people or animals or things collected together; "a congregation of children pleaded for his autograph"; "a great congregation of birds flew over"
+31404,congregation congregating,the act of congregating
+31405,congregation fold faithful,a group of people who adhere to a common faith and habitually attend a given church
+31406,congress,a national legislative assembly
+31407,congress,a meeting of elected or appointed representatives
+31408,congress_boot congress_shoe congress_gaiter,an ankle high shoe with elastic gussets in the sides
+31409,congressional_district,a territorial division of a state; entitled to elect one member to the United States House of Representatives
+31410,congressman congresswoman representative,a member of the United States House of Representatives
+31411,congruity congruousness congruence,the quality of agreeing; being suitable and appropriate
+31412,conic_projection conical_projection,a map projection of the globe onto a cone with its point over one of the earth's poles
+31413,conic_section conic,(geometry) a curve generated by the intersection of a plane and a circular cone
+31414,conical_buoy nun nun_buoy,a buoy resembling a cone
+31415,conidiophore,a specialized fungal hypha that produces conidia
+31416,conidium conidiospore,an asexually produced fungal spore formed on a conidiophore
+31417,conifer coniferous_tree,any gymnospermous tree or shrub bearing cones
+31418,conima,a gum resin from the poison hemlock, Conium maculatum
+31419,conjecture,reasoning that involves the formation of conclusions from incomplete evidence
+31420,conjugal_right,the right of married persons to the enjoyment of association and sympathy and confidence and domestic happiness and the comfort of living together and eating meals at the same table and profiting from joint property right and the intimacies of domestic relations
+31421,conjugal_visitation_right conjugal_visitation,the legal right in a prison for the inmate and spouse to have sexual intercourse
+31422,conjugate_solution conjugate,a mixture of two partially miscible liquids A and B produces two conjugate solutions: one of A in B and another of B in A
+31423,conjugated_protein compound_protein,a protein complex combining amino acids with other substances
+31424,conjugation,the inflection of verbs
+31425,conjugation,the complete set of inflected forms of a verb
+31426,conjugation,a class of verbs having the same inflectional forms
+31427,conjunction,the grammatical relation between linguistic units (words or phrases or clauses) that are connected by a conjunction
+31428,conjunction alignment,(astronomy) apparent meeting or passing of two or more celestial bodies in the same degree of the zodiac
+31429,conjunction conjunctive connective continuative,an uninflected function word that serves to conjoin words or phrases or clauses or sentences
+31430,conjunctiva,a transparent lubricating mucous membrane that covers the eyeball and the under surface of the eyelid
+31431,conjunctival_veins venae_conjunctivales,veins draining the conjunctiva
+31432,conjunctivitis pinkeye,inflammation of the conjunctiva of the eye
+31433,conjuncture,a critical combination of events or circumstances
+31434,conjurer conjuror conjure_man,a witch doctor who practices conjury
+31435,conjuring conjuration conjury invocation,calling up a spirit or devil
+31436,conk,informal term for the nose
+31437,connecting_flight,a flight with an intermediate stop and a change of aircraft (possibly a change of airlines)
+31438,connecting_rod,a rod that transmits motion (especially one that connects a rotating wheel to a reciprocating shaft)
+31439,connecting_room,a hotel room that shares a wall with an adjoining room and is connected by a private door
+31440,connection,(usually plural) a person who is influential and to whom you are connected in some way (as by family or friendship); "he has powerful connections"
+31441,connection,a supplier (especially of narcotics)
+31442,connection connexion,shifting from one form of transportation to another; "the plane was late and he missed his connection in Atlanta"
+31443,connection connexion connectedness,a relation between things or events (as in the case of one causing the other or sharing features with it); "there was a connection between eating that pickle and having that nightmare"
+31444,connection connexion connector connecter connective,an instrumentality that connects; "he soldered the connection"; "he didn't have the right connector between the amplifier and the speakers"
+31445,connection connexion link,a connecting shape
+31446,connection link connectedness,the state of being connected; "the connection between church and state is inescapable"
+31447,connective_tissue,tissue of mesodermal origin consisting of e.g. collagen fibroblasts and fatty cells; supports organs and fills spaces between them and forms tendons and ligaments
+31448,connectivity,the property of being connected or the degree to which something has connections
+31449,conning_tower,an armored pilothouse on a warship
+31450,conning_tower,a raised bridge on a submarine; often used for entering and exiting
+31451,connivance collusion,agreement on a secret plot
+31452,connivance secret_approval tacit_consent,(law) tacit approval of someone's wrongdoing
+31453,connoisseur cognoscente,an expert able to appreciate a field; especially in the fine arts
+31454,connotation,an idea that is implied or suggested
+31455,conodont,the tiny fossil cone-shaped tooth of a primitive vertebrate of order Conodonta
+31456,conodont,small (2 inches long) extinct eellike fish with a finned tail and a notochord and having cone-shaped teeth containing cellular bone; late Cambrian to late Triassic; possible predecessor of the cyclostomes
+31457,conqueror vanquisher,someone who is victorious by force of arms
+31458,conquest,success in mastering something difficult; "the conquest of space"
+31459,conquest conquering subjection subjugation,the act of conquering
+31460,conquistador,an adventurer (especially one who led the Spanish conquest of Mexico and Peru in the 16th century)
+31461,consanguinity blood_kinship cognation,(anthropology) related by blood
+31462,conscience,a feeling of shame when you do something immoral; "he has no conscience about his cruelty"
+31463,conscience,conformity to one's own sense of right conduct; "a person of unflagging conscience"
+31464,conscience scruples moral_sense sense_of_right_and_wrong,motivation deriving logically from ethical or moral principles that govern a person's thoughts and actions
+31465,conscience_money,payment made voluntarily to reduce guilt over dishonest dealings
+31466,conscientious_objector CO,one who refuses to serve in the armed forces on grounds of conscience
+31467,conscientiousness,the quality of being in accord with the dictates of conscience
+31468,conscientiousness painstakingness,the trait of being painstaking and careful
+31469,consciousness,an alert cognitive state in which you are aware of yourself and your situation; "he lost consciousness"
+31470,conscription muster draft selective_service,compulsory military service
+31471,consecration,a solemn commitment of your life or your time to some cherished purpose (to a service or a goal); "his consecration to study"
+31472,consecration,(religion) sanctification of something by setting it apart (usually with religious rites) as dedicated to God; "the Cardinal attended the consecration of the church"
+31473,consensus,agreement in the judgment or opinion reached by a group as a whole; "the lack of consensus reflected differences in theoretical positions"; "those rights and obligations are based on an unstated consensus"
+31474,consent,permission to do something; "he indicated his consent"
+31475,consent_decree,an agreement between two parties that is sanctioned by the court; for example, a company might agree to stop certain questionable practices without admitting guilt
+31476,consequence aftermath,the outcome of an event especially as relative to an individual
+31477,consequence effect outcome result event issue upshot,a phenomenon that follows and is caused by some previous phenomenon; "the magnetic effect was greater when the rod was lengthwise"; "his decision had depressing consequences for business"; "he acted very wise after the event"
+31478,consequence import moment,having important effects or influence; "decisions of great consequence are made by the president himself"; "virtue is of more moment than security"; "that result is of no consequence"
+31479,conservancy,a commission with jurisdiction over fisheries and navigation in a port or river
+31480,conservancy,the official conservation of trees and soil and rivers etc.
+31481,conservation,(physics) the maintenance of a certain quantities unchanged during chemical reactions or physical transformations
+31482,conservation,the preservation and careful management of the environment and of natural resources
+31483,conservation preservation,an occurrence of improvement by virtue of preventing loss or injury or other change
+31484,conservation_of_charge conservation_of_electricity,the principle that the total electric charge of a system remains constant despite changes inside the system
+31485,conservation_of_energy law_of_conservation_of_energy first_law_of_thermodynamics,the fundamental principle of physics that the total energy of an isolated system is constant despite internal changes
+31486,conservation_of_mass conservation_of_matter law_of_conservation_of_mass law_of_conservation_of_matter,a fundamental principle of classical physics that matter cannot be created or destroyed in an isolated system
+31487,conservation_of_momentum,the principle that the total linear momentum in a closed system is constant and is not affected by processes occurring inside the system
+31488,conservatism conservativism,a political or theological orientation advocating the preservation of the best in society and opposing radical changes
+31489,conservative conservativist,a person who is reluctant to accept changes and new ideas
+31490,conservator,someone appointed by a court to assume responsibility for the interests of a minor or incompetent person
+31491,conservator-ward_relation,the responsibility of a conservator to act in the best interests of the ward
+31492,conservatory,the faculty and students of a school specializing in one of the fine arts
+31493,conservatory conservatoire,a schoolhouse with special facilities for fine arts
+31494,conservatory hothouse indoor_garden,a greenhouse in which plants are arranged in a pleasing manner
+31495,conserve preserve conserves preserves,fruit preserved by cooking with sugar
+31496,consideration,a discussion of a topic (as in a meeting); "consideration of the traffic problem took more than an hour"
+31497,consideration,the process of giving careful thought to something
+31498,consideration considerateness thoughtfulness,kind and considerate regard for others; "he showed no consideration for her feelings"
+31499,consideration thoughtfulness,a considerate and thoughtful act
+31500,consignee,the person to whom merchandise is delivered over
+31501,consigner consignor,the person who delivers over or commits merchandise
+31502,consignment,the delivery of goods for sale or disposal
+31503,consistency,logical coherence and accordance with the facts; "a rambling argument that lacked any consistency"
+31504,consistency,(logic) an attribute of a logical system that is so constituted that none of the propositions deducible from the axioms contradict one another
+31505,consistency consistence,a harmonious uniformity or agreement among things or parts
+31506,consistency consistence substance body,the property of holding together and retaining its shape; "wool has more body than rayon"; "when the dough has enough consistency it is ready to bake"
+31507,consistory,a church tribunal or governing body
+31508,consolation comfort solace,the act of consoling; giving relief in affliction; "his presence was a consolation to her"
+31509,consolation solace solacement,the comfort you feel when consoled in times of disappointment; "second place was no consolation to him"
+31510,console,a scientific instrument consisting of displays and an input device that an operator can use to monitor and control a system (especially a computer system)
+31511,console,an ornamental scroll-shaped bracket (especially one used to support a wall fixture); "the bust of Napoleon stood on a console"
+31512,console_table console,a small table fixed to a wall or designed to stand against a wall
+31513,consolidation,something that has consolidated into a compact mass; "he dropped the consolidation into the acid bath"
+31514,consolidation,combining into a solid mass
+31515,consolidation integration,the act of combining into an integral whole; "a consolidation of two corporations"; "after their consolidation the two bills were passed unanimously"; "the defendants asked for a consolidation of the actions against them"
+31516,consomme,clear soup usually of beef or veal or chicken
+31517,consonance consonant_rhyme,the repetition of consonants (or consonant patterns) especially at the ends of words
+31518,consonance harmoniousness,the property of sounding harmonious
+31519,consonant,a letter of the alphabet standing for a spoken consonant
+31520,consonant,a speech sound that is not a vowel
+31521,consonant_system consonantal_system,the system of consonants used in a particular language
+31522,consort,the husband or wife of a reigning monarch
+31523,consortium pool syndicate,an association of companies for some definite purpose
+31524,conspecific,an organism belonging to the same species as another organism
+31525,conspectus,an overall summary
+31526,conspicuous_consumption,buying expensive services and products in order to flaunt your wealth
+31527,conspicuousness,the state of being conspicuous
+31528,conspicuousness,high visibility
+31529,conspiracy cabal,a plot to carry out some harmful or illegal act (especially a political plot)
+31530,conspiracy confederacy,a group of conspirators banded together to achieve some harmful or illegal purpose
+31531,conspiracy confederacy,a secret agreement between two or more people to perform an unlawful act
+31532,conspiracy_of_silence,a conspiracy not to talk about some situation or event; "there was a conspiracy of silence about police brutality"
+31533,conspirator coconspirator plotter machinator,a member of a conspiracy
+31534,constable,a lawman with less authority and jurisdiction than a sheriff
+31535,constable police_constable,a police officer of the lowest rank
+31536,constancy,faithfulness and dependability in personal attachments (especially sexual fidelity)
+31537,constancy perceptual_constancy,(psychology) the tendency for perceived objects to give rise to very similar perceptual experiences in spite of wide variations in the conditions of observation
+31538,constancy stability,the quality of being enduring and free from change or variation; "early mariners relied on the constancy of the trade winds"
+31539,constant,a number representing a quantity assumed to have a fixed value in a specified mathematical context; "the velocity of light is a constant"
+31540,constant constant_quantity invariable,a quantity that does not vary
+31541,constantan Eureka,an alloy of copper and nickel with high electrical resistance and a low temperature coefficient; used as resistance wire
+31542,constellation,a configuration of stars as seen from the earth
+31543,constipation irregularity,irregular and infrequent or difficult evacuation of the bowels; can be a symptom of intestinal obstruction or diverticulitis
+31544,constituency,the body of voters who elect a representative for their area
+31545,constituent,a member of a constituency; a citizen who is represented in a government by officials for whom he or she votes; "needs continued support by constituents to be re-elected"
+31546,constituent grammatical_constituent,(grammar) a word or phrase or clause forming part of a larger grammatical construction
+31547,constitution composition physical_composition makeup make-up,the way in which someone or something is composed
+31548,constitution establishment formation organization organisation,the act of forming or establishing something; "the constitution of a PTA group last year"; "it was the establishment of his reputation"; "he still remembers the organization of the club"
+31549,constitutional,a regular walk taken as a form of exercise
+31550,constitutionalism,a constitutional system of government (usually with a written constitution)
+31551,constitutionalism,advocacy of a system of government according to constitutional principles
+31552,constitutionalist,an advocate of constitutional government
+31553,constraint,the act of constraining; the threat or use of force to control the thoughts or behavior of others
+31554,constraint restraint,the state of being physically constrained; "dogs should be kept under restraint"
+31555,constriction,the action or process of compressing
+31556,constriction bottleneck chokepoint,a narrowing that reduces the flow through a channel
+31557,constriction coarctation,tight or narrow compression
+31558,constriction tightness,a tight feeling in some part of the body; "he felt a constriction in her chest"; "she felt an alarming tightness in her chest"; "emotion caused a constriction of his throat"
+31559,constrictor,any of various large nonvenomous snakes that kill their prey by crushing it in its coils
+31560,construal,an interpretation of the meaning of something; the act of construing
+31561,construction,drawing a figure satisfying certain conditions as part of solving a problem or proving a theorem; "the assignment was to make a construction that could be used in proving the Pythagorean theorem"
+31562,construction building,the commercial activity involved in repairing old structures or constructing new ones; "their main business is home construction"; "workers in the building trades"
+31563,construction building,the act of constructing something; "during the construction we had to take a detour"; "his hobby was the building of boats"
+31564,construction grammatical_construction expression,a group of words that form a constituent of a sentence and are considered as a single unit; "I concluded from his awkward constructions that he was a foreigner"
+31565,construction mental_synthesis,the creation of a construct; the process of combining ideas into a congruous object of thought
+31566,construction twist,an interpretation of a text or action; "they put an unsympathetic construction on his conduct"
+31567,construction_industry housing_industry,an industry that builds housing
+31568,construction_paper,paper suitable for drawing and making cutouts
+31569,construction_worker hard_hat,a worker skilled in building offices or dwellings etc.
+31570,constructive_fraud legal_fraud,comprises all acts or omissions or concealments involving breach of equitable or legal duty or trust or confidence
+31571,constructive_possession,(law) having the power and intention to have and control property but without direct control or actual presence upon it
+31572,constructive_trust involuntary_trust,a trust created by a court (regardless of the intent of the parties) to benefit a party that has been wrongfully deprived of its rights
+31573,constructiveness,the quality of serving to build or improve
+31574,constructivism,an abstractionist artistic movement in Russia after World War I; industrial materials were used to construct nonrepresentational objects
+31575,constructivist,an artist of the school of constructivism
+31576,consubstantiation,the doctrine of the High Anglican Church that after the consecration of the Eucharist the substance of the body and blood of Christ coexists with the substance of the consecrated bread and wine
+31577,consuetude,a custom or usage that has acquired the force of law
+31578,consuetudinary consuetudinal,a manual describing the customs of a particular group (especially the ceremonial practices of a monastic order)
+31579,consul,a diplomat appointed by a government to protect its commercial interests and help its citizens in a foreign country
+31580,consulate,diplomatic building that serves as the residence or workplace of a consul
+31581,consulship,the post of consul
+31582,consultancy,the practice of giving expert advice within a particular field; "a business management consultancy"
+31583,consultation,a conference between two or more people to consider a particular question; "frequent consultations with his lawyer"; "a consultation of several medical specialists"
+31584,consultation audience interview,a conference (usually with someone important); "he had a consultation with the judge"; "he requested an audience with the king"
+31585,consulting_firm consulting_company,a firm of experts providing professional advice to an organization for a fee
+31586,consulting_service,service provided by a professional advisor (e.g., a lawyer or doctor or CPA etc.)
+31587,consumer,a person who uses goods or services
+31588,consumer_credit,a line of credit extended for personal or household use
+31589,consumer_finance_company small_loan_company,a finance company that makes loans to people who have trouble getting a bank loan
+31590,consumer_goods,goods (as food or clothing) intended for direct use or consumption
+31591,consumer_price_index CPI cost-of-living_index,an index of the cost of all goods and services to a typical consumer
+31592,consumer_research,marketing research that yields information about the motives and needs of different classes of consumers
+31593,consumerism,the theory that an increasing consumption of goods is economically beneficial
+31594,consumerism,a movement advocating greater protection of the interests of consumers
+31595,consummation,the completion of marriage by sexual intercourse
+31596,consummation,the act of bringing to completion or fruition
+31597,consumption economic_consumption usance use use_of_goods_and_services,(economics) the utilization of economic goods to satisfy needs or in manufacturing; "the consumption of energy has increased steadily"
+31598,consumption ingestion intake uptake,the process of taking food into the body through the mouth (as by eating)
+31599,consumption using_up expenditure,the act of consuming something
+31600,consumptive lunger tubercular,a person with pulmonary tuberculosis
+31601,contact,the state or condition of touching or of being in immediate proximity; "litmus paper turns red on contact with an acid"
+31602,contact,close interaction; "they kept in daily contact"; "they claimed that they had been in contact with extraterrestrial beings"
+31603,contact contact_lens,a thin curved glass or plastic lens designed to fit over the cornea in order to correct vision or to deliver medication
+31604,contact impinging striking,the physical coming together of two or more things; "contact with the pier scraped paint from the hull"
+31605,contact middleman,a person who is in a position to give you special assistance; "he used his business contacts to get an introduction to the governor"
+31606,contact physical_contact,the act of touching physically; "her fingers came in contact with the light switch"
+31607,contact tangency,(electronics) a junction where things (as two electrical conductors) touch or are in physical contact; "they forget to solder the contacts"
+31608,contact touch,a communicative interaction; "the pilot made contact with the base"; "he got in touch with his colleagues"
+31609,contact_dermatitis,a delayed type of allergic reaction of the skin resulting from skin contact with a specific allergen (such as poison ivy)
+31610,contact_microphone contact_mike,a microphone designed to be used in contact with a source of sound (or with a resonating surface)
+31611,contact_print,a print made by exposing a photosensitive surface to direct contact with a photographic negative
+31612,contact_sport,a sport that necessarily involves body contact between opposing players
+31613,contadino,an Italian farmer
+31614,contagion infection,the communication of an attitude or emotional state among a number of people; "a contagion of mirth"; "the infection of his enthusiasm for poetry"
+31615,contagious_disease contagion,any disease easily transmitted by contact
+31616,container,any object that can be used to hold things (especially a large metal boxlike object of standardized dimensions that can be loaded from one form of transport to another)
+31617,container_ship containership container_vessel,a cargo ship designed to hold containerized cargoes; "the weight of the documentation of all the consignments on board a contemporary container ship can exceed 90 pounds"
+31618,containerful,the quantity that a container will hold
+31619,containment,a policy of creating strategic alliances in order to check the expansion of a hostile power or ideology or to force it to negotiate peacefully; "containment of communist expansion was a central principle of United States' foreign policy from 1947 to the 1975"
+31620,containment,(physics) a system designed to prevent the accidental release of radioactive material from a reactor
+31621,containment,the act of containing; keeping something from spreading; "the containment of the AIDS epidemic"; "the containment of the rebellion"
+31622,contaminant contamination,a substance that contaminates
+31623,contamination pollution,the act of contaminating or polluting; including (either intentionally or accidentally) unwanted substances or factors
+31624,contamination taint,the state of being contaminated
+31625,contemplation,a long and thoughtful observation
+31626,contemplation reflection reflexion rumination musing thoughtfulness,a calm, lengthy, intent consideration
+31627,contemplative,a person devoted to the contemplative life
+31628,contemporaneity contemporaneousness,the quality of belonging to the same period of time
+31629,contemporary coeval,a person of nearly the same age as another
+31630,contempt,a willful disobedience to or disrespect for the authority of a court or legislative body
+31631,contempt disdain scorn despite,lack of respect accompanied by a feeling of intense dislike; "he was held in contempt"; "the despite in which outsiders were held is legendary"
+31632,contempt disrespect,a manner that is generally disrespectful and contemptuous
+31633,contempt scorn,open disrespect for a person or thing
+31634,contempt_of_Congress,deliberate obstruction of the operation of the federal legislative branch
+31635,contempt_of_court,disrespect for the rules of a court of law
+31636,contemptuousness,the manifestation of scorn and contempt; "every subordinate sensed his contemptuousness and hated him in return"
+31637,content,the proportion of a substance that is contained in a mixture or alloy etc.
+31638,content cognitive_content mental_object,the sum or range of what has been perceived, discovered, or learned
+31639,content contents,(usually plural) everything that is included in a collection and that is held or included in something; "he emptied the contents of his pockets"; "the two groups were similar in content"
+31640,content_word open-class_word,a word to which an independent meaning can be assigned
+31641,contentedness content,the state of being contented with your situation in life; "he relaxed in sleepy contentedness"; "they could read to their heart's content"
+31642,contention,a point asserted as part of an argument
+31643,contentment,happiness with one's situation in life
+31644,contents table_of_contents,a list of divisions (chapters or articles) and the pages on which they start
+31645,contest,a struggle between rivals
+31646,contest competition,an occasion on which a winner is selected from among two or more contestants
+31647,contestant,a person who participates in competitions
+31648,contestee,a winner (of a race or an election etc.) whose victory is contested
+31649,contester,someone who contests an outcome (of a race or an election etc.)
+31650,context circumstance setting,the set of facts or circumstances that surround a situation or event; "the historical context"
+31651,context linguistic_context context_of_use,discourse that surrounds a language unit and helps to determine its interpretation
+31652,contextual_definition,a definition in which the term is used by embedding it in a larger expression containing its explanation; "a contextual definition of `legal duty' might be `X has a legal duty to do Y means that X is required to do Y by a contract relationship that would be upheld in a court of law'"
+31653,contextualism,any doctrine emphasizing the importance of the context in solving problems or establishing the meaning of terms
+31654,continence,voluntary control over urinary and fecal discharge
+31655,continence continency,the exercise of self constraint in sexual matters
+31656,continent,one of the large landmasses of the earth; "there are seven continents"; "pioneers had to cross the continent on foot"
+31657,continental_breakfast petit_dejeuner,a breakfast that usually includes a roll and coffee or tea
+31658,continental_divide,the watershed of a continent (especially the watershed of North America formed by a series of mountain ridges extending from Alaska to Mexico)
+31659,continental_drift,the gradual movement and formation of continents (as described by plate tectonics)
+31660,continental_glacier,a glacier that spreads out from a central mass of ice
+31661,continental_shelf,the relatively shallow (up to 200 meters) seabed surrounding a continent
+31662,continental_slope bathyal_zone bathyal_district,the steep descent of the seabed from the continental shelf to the abyssal zone
+31663,contingency,the state of being contingent on something
+31664,contingency_fee,a fee that is payable only if the outcome is successful (as for an attorney's services)
+31665,contingency_procedure,an alternative to the normal procedure; triggered if an unusual but anticipated situation arises
+31666,contingent,a gathering of persons representative of some larger group; "each nation sent a contingent of athletes to the Olympics"
+31667,contingent detail,a temporary military unit; "the peacekeeping force includes one British contingent"
+31668,continuance continuation,the act of continuing an activity without interruption
+31669,continuant_consonant continuant,consonant articulated by constricting (but not closing) the vocal tract
+31670,continued_fraction,a fraction whose numerator is an integer and whose denominator is an integer plus a fraction whose numerator is an integer and whose denominator is an integer plus a fraction and so on
+31671,continuing_education,a program of instruction designed primarily for adult students who participate part-time
+31672,continuing_trespass,trespass that is not transient or intermittent but continues as long as the offending object remains; "dumping his garbage on my land was a case of continuing trespass"
+31673,continuity,uninterrupted connection or union
+31674,continuity,a detailed script used in making a film in order to avoid discontinuities from shot to shot
+31675,continuity persistence,the property of a continuous and connected period of time
+31676,continuousness ceaselessness incessancy incessantness,the quality of something that continues without end or interruption
+31677,continuum,a continuous nonspatial whole or extent or succession in which no part or portion is distinct or distinguishable from adjacent parts
+31678,conto,1 conto equals 1,000 escudos in Portugal
+31679,contortion deformation,the act of twisting or deforming the shape of something (e.g., yourself)
+31680,contortionist,an acrobat able to twist into unusual positions
+31681,contour,a feature (or the order or arrangement of features) of anything having a complex structure; "the contours of the melody"; "it defines a major contour of this administration"
+31682,contour contour_line,a line drawn on a map connecting points of equal height
+31683,contour_feather,feathers covering the body of an adult bird and determining its shape
+31684,contour_language,a tone language that uses pitch changes
+31685,contour_map relief_map,a map having contour lines through points of equal elevation
+31686,contraband,goods whose importation or exportation or possession is prohibited by law
+31687,contrabassoon contrafagotto double_bassoon,the bassoon that is the largest instrument in the oboe family
+31688,contraception contraceptive_method,birth control by the use of devices (diaphragm or intrauterine device or condom) or drugs or surgery
+31689,contraceptive preventive preventative contraceptive_device prophylactic_device birth_control_device,an agent or device intended to prevent conception
+31690,contract,a binding agreement between two or more persons that is enforceable by law
+31691,contract contract_bridge,a variety of bridge in which the bidder receives points toward game only for the number of tricks he bid
+31692,contract declaration,(contract bridge) the highest bid becomes the contract setting the number of tricks that the bidder must make
+31693,contract_killing,a murder carried out on agreement with a hired killer
+31694,contract_law,that branch of jurisprudence that studies the rights and obligations of parties entering into contracts
+31695,contract_offer,offer by an employer to contract to pay an employee at a given rate
+31696,contractile_organ contractor,a bodily organ that contracts
+31697,contractility,the capability or quality of shrinking or contracting, especially by muscle fibers and even some other forms of living matter
+31698,contraction,a word formed from two or more words by omitting or combining some sounds; "`won't' is a contraction of `will not'"; "`o'clock' is a contraction of `of the clock'"
+31699,contraction,the act of decreasing (something) in size or volume or quantity or scope
+31700,contraction muscular_contraction muscle_contraction,(physiology) a shortening or tensing of a part or organ (especially of a muscle or muscle fiber)
+31701,contractor,(law) a party to a contract
+31702,contractor,someone (a person or firm) who contracts to build things
+31703,contractor declarer,the bridge player in contract bridge who wins the bidding and can declare which suit is to be trumps
+31704,contracture,an abnormal and usually permanent contraction of a muscle
+31705,contradiction,opposition between two conflicting forces or ideas
+31706,contradiction,the speech act of contradicting someone; "he spoke as if he thought his claims were immune to contradiction"
+31707,contradiction contradiction_in_terms,(logic) a statement that is necessarily false; "the statement `he is brave and he is not brave' is a contradiction"
+31708,contradictoriness,the relation that exists when opposites cannot coexist
+31709,contradictory,two propositions are contradictories if both cannot be true (or both cannot be false) at the same time
+31710,contradistinction,a distinction drawn on the basis of contrast; "sculpture in contradistinction to painting"
+31711,contrail condensation_trail,an artificial cloud created by an aircraft; caused either by condensation due to the reduction in air pressure above the wing surface or by water vapor in the engine exhaust
+31712,contraindication,(medicine) a reason that makes it inadvisable to prescribe a particular drug or employ a particular procedure or treatment
+31713,contralto,a woman singer having a contralto voice
+31714,contralto alto,the lowest female singing voice
+31715,contrapuntist,a composer who specializes in counterpoint
+31716,contrarian,an investor who deliberately decides to go against the prevailing wisdom of other investors
+31717,contrariety,the relation between contraries
+31718,contrariness perversity perverseness,deliberate and stubborn unruliness and resistance to guidance or discipline
+31719,contrary,exact opposition; "public opinion to the contrary he is not guilty"
+31720,contrary,a logical relation such that two propositions are contraries if both cannot be true but both can be false
+31721,contrast,the perceptual effect of the juxtaposition of very different colors
+31722,contrast,the range of optical density and tone on a photographic negative or print (or the extent to which adjacent areas on a television screen differ in brightness)
+31723,contrast,the act of distinguishing by comparing differences
+31724,contrast direct_contrast,the opposition or dissimilarity of things that are compared; "in contrast to"; "by contrast"
+31725,contrast_medium contrast_material,a substance that is opaque to x-rays; when administered it allows a radiologist to examine the organ or tissue it fills
+31726,contretemps,an awkward clash; "he tried to smooth over his contretemps with the policeman"
+31727,contribution,an amount of money contributed; "he expected his contribution to be repaid with interest"
+31728,contribution,a writing for publication especially one of a collection of writings as an article or story
+31729,contribution donation,a voluntary gift (as of money or service or ideas) made to some worthwhile cause
+31730,contribution donation,act of giving in common with others for a common purpose especially to a charity
+31731,contribution part share,the effort contributed by a person in bringing about a result; "I am proud of my contribution in advancing the project"; "they all did their share of the work"
+31732,contributor,a writer whose work is published in a newspaper or magazine or as part of a book
+31733,contributory_negligence,(law) behavior by the plaintiff that contributes to the harm resulting from the defendant's negligence; "in common law any degree of contributory negligence would bar the plaintiff from collecting damages"
+31734,contrivance,an artificial or unnatural or obviously contrived arrangement of details or parts etc.; "the plot contained too many improbable contrivances to be believable"
+31735,contrivance,the faculty of contriving; inventive skill; "his skillful contrivance of answers to every problem"
+31736,contrivance stratagem dodge,an elaborate or deceitful scheme contrived to deceive or evade; "his testimony was just a contrivance to throw us off the track"
+31737,control,a relation of constraint of one entity (thing or person or group) by another; "measures for the control of disease"; "they instituted controls over drinking on campus"
+31738,control,a spiritual agency that is assumed to assist the medium during a seance
+31739,control,the economic policy of controlling or limiting or curbing prices or wages etc.; "they wanted to repeal all the legislation that imposed economic controls"
+31740,control,power to direct or determine; "under control"
+31741,control,(physiology) regulation or maintenance of a function or action or reflex etc; "the timing and control of his movements were unimpaired"; "he had lost control of his sphincters"
+31742,control,the activity of managing or exerting control over something; "the control of the mob by the police was admirable"
+31743,control controller,a mechanism that controls the operation of a machine; "the speed controller on his turntable was not working properly"; "I turned the controls over to her"
+31744,control_account,an account that shows totals of amounts entered in a subsidiary ledger
+31745,control_center,the operational center for a group of related activities; "the general in command never left the control center"
+31746,control_character ASCII_control_character,ASCII characters to indicate carriage return or tab or backspace; typed by depressing a key and the control key at the same time
+31747,control_circuit negative_feedback_circuit,a feedback circuit that subtracts from the input
+31748,control_condition control,a standard against which other conditions can be compared in a scientific experiment; "the control condition was inappropriate for the conclusions he wished to draw"
+31749,control_experiment,an experiment designed to control for variables affecting the results of another experiment
+31750,control_freak,someone with a compulsive desire to exert control over situations and people
+31751,control_key command_key,(computer science) the key on a computer keyboard that is used (in combination with some other key) to type control characters
+31752,control_operation control_function,an operation that controls the recording or processing or transmission of interpretation of data; "a control operation started the data processing"
+31753,control_panel instrument_panel control_board board panel,electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices; "he checked the instrument panel"; "suddenly the board lit up like a Christmas tree"
+31754,control_rod,a steel or aluminum rod that can be moved up or down to control the rate of the nuclear reaction
+31755,control_room,a room housing control equipment (as in a recording studio)
+31756,control_stock,shares owned by shareholders who have a controlling interest
+31757,control_system,a system for controlling the operation of another system
+31758,control_tower,a tower with an elevated workspace enclosed in glass for the visual observation of aircraft around an airport
+31759,controlled_substance,a drug or chemical substance whose possession and use are controlled by law
+31760,controllership,the position of controller
+31761,controlling_interest,ownership of more than 50% of a corporation's voting shares
+31762,controversy contention contestation disputation disceptation tilt argument arguing,a contentious speech act; a dispute where there is strong disagreement; "they were involved in a violent argument"
+31763,contumacy,willful refusal to appear before a court or comply with a court order; can result in a finding of contempt of court
+31764,contumacy,obstinate rebelliousness and insubordination; resistance to authority
+31765,contusion,the action of bruising; "the bruise resulted from a contusion"
+31766,conurbation urban_sprawl sprawl,an aggregation or continuous network of urban communities
+31767,convalescence recuperation recovery,gradual healing (through rest) after sickness or injury
+31768,convalescent,a person who is recovering from illness
+31769,convection,(meteorology) the vertical movement of heat or other properties by massive motion within the atmosphere
+31770,convection,the transfer of heat through a fluid (liquid or gas) caused by molecular motion
+31771,convector,a space heater that transfers heat to the surrounding air by convection
+31772,convener,the member of a group whose duty it is to convene meetings
+31773,convenience,the state of being suitable or opportune; "chairs arranged for his own convenience"
+31774,convenience,the quality of being useful and convenient; "they offered the convenience of an installment plan"
+31775,convenience_food,any packaged dish or food that can be prepared quickly and easily as by thawing or heating
+31776,convenience_store,a store selling a limited variety of food and pharmaceutical items; open long hours for the convenience of customers
+31777,convent,a community of people in a religious order (especially nuns) living together
+31778,convent,a religious residence especially for nuns
+31779,conventicle,a secret unauthorized meeting for religious worship
+31780,conventicle meetinghouse,a building for religious assembly (especially Nonconformists, e.g., Quakers)
+31781,convention,a large formal assembly; "political convention"
+31782,convention,(diplomacy) an international agreement
+31783,convention convening,the act of convening
+31784,convention normal pattern rule formula,something regarded as a normative example; "the convention of not naming the main character"; "violence is the rule not the exception"; "his formula for impressing visitors"
+31785,conventionality,conformity with conventional thought and behavior
+31786,conventionality,unoriginality as a result of being too conventional
+31787,conventionality convention conventionalism,orthodoxy as a consequence of being conventional
+31788,conventionalization conventionalisation,the act of conventionalizing; conforming to a conventional style
+31789,conventioneer,someone who attends a convention
+31790,convergence,the occurrence of two or more things coming together
+31791,convergence convergency,the approach of an infinite series to a finite limit
+31792,convergence converging convergency,the act of converging (coming closer)
+31793,convergent_thinking,thinking that brings together information focussed on solving a problem (especially solving problems that have a single correct solution)
+31794,converging_lens convex_lens,lens such that a beam of light passing through it is brought to a point or focus
+31795,conversation,the use of speech for informal exchange of views or ideas or information etc.
+31796,conversation_piece,something interesting that stimulates conversation
+31797,conversation_stopper stopper,a remark to which there is no polite conversational reply
+31798,conversationalist conversationist schmoozer,someone skilled at conversation
+31799,converse,a proposition obtained by conversion
+31800,conversion,(psychiatry) a defense mechanism represses emotional conflicts which are then converted into physical symptoms that have no organic basis
+31801,conversion,a change of religion; "his conversion to the Catholic faith"
+31802,conversion,interchange of subject and predicate of a proposition
+31803,conversion,a change in the units or form of an expression: "conversion from Fahrenheit to Centigrade"
+31804,conversion,act of exchanging one type of money or security for another
+31805,conversion,the act of changing from one use or function or purpose to another
+31806,conversion,a successful free throw or try for point after a touchdown
+31807,conversion rebirth spiritual_rebirth,a spiritual enlightenment causing a person to lead a new life
+31808,conversion transition changeover,an event that results in a transformation
+31809,conversion_disorder conversion_reaction conversion_hysteria,a mental disorder characterized by the conversion of mental conflict into somatic forms (into paralysis or anesthesia having no apparent cause)
+31810,conversion_factor,factor by which a quantity that is expressed in one set of units must be multiplied in order to convert it into another set of units
+31811,convert,a person who has been converted to another religious or political belief
+31812,converter convertor,a device for changing one substance or form or state into another
+31813,convertibility,the quality of being exchangeable (especially the ability to convert a currency into gold or other currencies without restriction)
+31814,convertible,a car that has top that can be folded or removed
+31815,convertible convertible_security,a corporate security (usually bonds or preferred stock) that can be exchanged for another form of security (usually common stock)
+31816,convertible sofa_bed,a sofa that can be converted into a bed
+31817,convertible_bond,a bond that can be converted to other securities under certain conditions
+31818,convex_polygon,a polygon such that no side extended cuts any other side or vertex; it can be cut by a straight line in at most two points
+31819,convex_polyhedron,a polyhedron any plane section of which is a convex polygon
+31820,convex_shape convexity,a shape that curves or bulges outward
+31821,convexity convexness,the property possessed by a convex shape
+31822,conveyance,document effecting a property transfer
+31823,conveyance conveyance_of_title conveyancing conveying,act of transferring property title from one person to another
+31824,conveyance imparting impartation,the transmission of information
+31825,conveyance transport,something that serves as a means of transportation
+31826,conveyancer,a lawyer who specializes in the business of conveying properties
+31827,conveyer conveyor,a person who conveys (carries or transmits); "the conveyer of good tidings"
+31828,conveyer_belt conveyor_belt conveyer conveyor transporter,a moving belt that transports objects (as in a factory)
+31829,convict,a person who has been convicted of a criminal offense
+31830,convict con inmate yard_bird yardbird,a person serving a sentence in a jail or prison
+31831,conviction judgment_of_conviction condemnation sentence,(criminal law) a final judgment of guilty in a criminal case and the punishment that is imposed; "the conviction came as no surprise"
+31832,conviction strong_belief article_of_faith,an unshakable belief in something without need for proof or evidence
+31833,convincingness,the power of argument or evidence to cause belief
+31834,conviviality joviality,a jovial nature
+31835,convocation,a group gathered in response to a summons
+31836,convocation calling_together,the act of convoking
+31837,convolution,the action of coiling or twisting or winding together
+31838,convolvulus,any of numerous plants of the genus Convolvulus
+31839,convoy,a procession of land vehicles traveling together
+31840,convoy,a collection of merchant ships with an escort of warships
+31841,convoy,the act of escorting while in transit
+31842,convulsion,violent uncontrollable contractions of muscles
+31843,convulsion,a physical disturbance such as an earthquake or upheaval
+31844,convulsion turmoil upheaval,a violent disturbance; "the convulsions of the stock market"
+31845,coo,the sound made by a pigeon
+31846,cook,someone who cooks food
+31847,cookbook cookery_book,a book of recipes and cooking directions
+31848,cooker,a utensil for cooking
+31849,cookfire,a fire for cooking
+31850,cookhouse,a detached or outdoor shelter for cooking; "the circus used a tent as their cookhouse"
+31851,cookie,a short line of text that a web site puts on your computer's hard drive when you access the web site
+31852,cookie cooky,the cook on a ranch or at a camp
+31853,cookie cooky biscuit,any of various small flat sweet cakes (`biscuit' is the British term)
+31854,cookie_cutter,a kitchen utensil used to cut a sheet of cookie dough into desired shapes before baking
+31855,cookie_jar cooky_jar,a jar in which cookies are kept (and sometimes money is hidden)
+31856,cookie_jar_reserve,a hidden reserve that can be used to adjust quarterly earning reports
+31857,cookie_sheet baking_tray,a cooking utensil consisting of a flat rectangular metal sheet used for baking cookies or biscuits
+31858,cooking cookery preparation,the act of preparing something (as food) by the application of heat; "cooking can be a great art"; "people are needed who have experience in cookery"; "he left the preparation of meals to his wife"
+31859,cooking_apple,an apple used primarily in cooking for pies and applesauce etc
+31860,cooking_oil,any of numerous vegetable oils used in cooking
+31861,cooking_utensil cookware,a kitchen utensil made of material that does not melt easily; used for cooking
+31862,cookout,an informal meal cooked and eaten outdoors
+31863,cookstove,a stove for cooking (especially a wood- or coal-burning kitchen stove)
+31864,cool,the quality of being at a refreshingly low temperature; "the cool of early morning"
+31865,cool_jazz,jazz that is restrained and fluid and marked by intricate harmonic structures often lagging slightly behind the beat
+31866,cool_medium cold_medium,a medium that usually, but not always, provides little involvement together with substantial stimulus; includes speech, television, cartoons
+31867,coolant,a fluid agent (gas or liquid) that produces cooling; especially one used to cool a system by transferring heat away from one part to another; "he added more coolant to the car's radiator"; "the atomic reactor used a gas coolant"; "lathe operators use an emulsion of oil and water as a coolant for the cutting tool"
+31868,coolant_system,a cooling system that uses a fluid to transfer heat from one place to another
+31869,cooler,an iced drink especially white wine and fruit juice
+31870,cooler ice_chest,a refrigerator for cooling liquids
+31871,cooler tank,a cell for violent prisoners
+31872,coolie cooly,(ethnic slur) an offensive name for an unskilled Asian laborer
+31873,cooling chilling temperature_reduction,the process of becoming cooler; a falling temperature
+31874,cooling_system cooling,a mechanism for keeping something cool; "the cooling was overhead fans"
+31875,cooling_system engine_cooling_system,equipment in a motor vehicle that cools the engine
+31876,cooling_tower,a cooling system used in industry to cool hot water (by partial evaporation) before reusing it as a coolant
+31877,coolness imperturbability imperturbableness,calm and unruffled self-assurance; "he performed with all the coolness of a veteran"
+31878,coolness nervelessness,fearless self-possession in the face of danger
+31879,coon,an eccentric or undignified rustic; "I'll be a gone coon when the battle starts"
+31880,coondog,any dog trained to hunt raccoons
+31881,coonhound,any of several breeds of hound developed for hunting raccoons
+31882,coonskin_cap coonskin,a raccoon cap with the tail hanging down the back
+31883,coontie Florida_arrowroot Seminole_bread Zamia_pumila,small tough woody zamia of Florida and West Indies and Cuba; roots and half-buried stems yield an arrowroot
+31884,cooper barrel_maker,a craftsman who makes or repairs wooden barrels or tubs
+31885,cooperation,joint operation or action; "their cooperation with us was essential for the success of our mission"
+31886,cooperation,the practice of cooperating; "economic cooperation"; "they agreed on a policy of cooperation"
+31887,cooperative,an association formed and operated for the benefit of those using it
+31888,cooperative co-op,a jointly owned commercial enterprise (usually organized by farmers or consumers) that produces and distributes goods and services and is run for the benefit of its owners
+31889,coordinate co-ordinate,a number that identifies a position relative to an axis
+31890,coordinate_axis,one of the fixed reference lines of a coordinate system
+31891,coordinate_bond dative_bond,a covalent bond in which both electrons are provided by one of the atoms
+31892,coordinate_clause,a clause in a complex sentence that is grammatically equivalent to the main clause and that performs the same grammatical function
+31893,coordinate_system frame_of_reference reference_system reference_frame,a system that uses coordinates to establish position
+31894,coordinated_universal_time UTC,Greenwich Mean Time updated with leap seconds
+31895,coordinating_conjunction,the coordination by conjunction of linguistic units of the same status
+31896,coordinating_conjunction,a conjunction (like `and' or `or') that connects two identically constructed grammatical constituents
+31897,coordination,the grammatical relation of two constituents having the same grammatical form
+31898,coordination,the skillful and effective interaction of movements
+31899,coordination,being of coordinate importance, rank, or degree
+31900,coordination,the regulation of diverse elements into an integrated and harmonious operation
+31901,coordinator co-ordinator,someone whose task is to see that work goes harmoniously
+31902,coot,slate-black slow-flying birds somewhat resembling ducks
+31903,cooter river_cooter Pseudemys_concinna,large river turtle of the southern United States and northern Mexico
+31904,copaiba copaiba_balsam balsam_capivi,an oleoresin used in varnishes and ointments
+31905,copal,a brittle aromatic resin used in varnishes
+31906,copalite copaline fossil_copal,partly mineralized copal dug from the ground
+31907,copartner,a joint partner (as in a business enterprise)
+31908,copartnership,a partnership in which employees get a share of the profits in addition to their wages
+31909,cope,a long cloak; worn by a priest or bishop on ceremonial occasions
+31910,copepod copepod_crustacean,minute marine or freshwater crustaceans usually having six pairs of limbs on the thorax; some abundant in plankton and others parasitic on fish
+31911,copilot co-pilot,a relief pilot on an airplane
+31912,coping_saw,a handsaw with a taut thin blade; used for cutting small curves in wood
+31913,copolymer,a polymer consisting of two or more different monomers
+31914,copout,a failure to face some difficulty squarely
+31915,copper,a copper penny
+31916,copper,any of various small butterflies of the family Lycaenidae having coppery wings
+31917,copper Cu atomic_number_29,a ductile malleable reddish-brown corrosion-resistant diamagnetic metallic element; occurs in various minerals but is the only metal that occurs abundantly in large masses; used as an electrical and thermal conductor
+31918,copper copper_color,a reddish-brown color resembling the color of polished copper
+31919,copper-base_alloy,any alloy whose principal component is copper
+31920,copper_beech purple_beech Fagus_sylvatica_atropunicea Fagus_purpurea Fagus_sylvatica_purpurea,variety of European beech with shining purple or copper-colored leaves
+31921,copper_mine,a mine where copper is dug from the ground
+31922,copper_oxide,an oxide of copper
+31923,copper_rockfish Sebastodes_caurinus,a rockfish of the Pacific coastal waters of North America
+31924,copper_sulfate copper_sulphate cupric_sulfate cupric_sulphate,a copper salt made by the action of sulfuric acid on copper oxide
+31925,copperhead Agkistrodon_contortrix,common coppery brown pit viper of upland eastern United States
+31926,copperhead Denisonia_superba,venomous but sluggish reddish-brown snake of Australia
+31927,copperplate,a graceful style of handwriting based on the writing used on copperplate engravings
+31928,copperplate,a print made from an engraved copperplate
+31929,copperplate copperplate_engraving,an engraving consisting of a smooth plate of copper that has been etched or engraved
+31930,coppersmith,someone who makes articles from copper
+31931,copperware,utensils made with copper
+31932,copra,the dried meat of the coconut from which oil is extracted
+31933,coprolalia,an uncontrollable use of obscene language; often accompanied by mental disorders
+31934,coprolite,fossil excrement; petrified dung
+31935,coprolith fecalith faecalith stercolith,a hard mass of fecal matter
+31936,coprophagy coprophagia,eating feces; in human a symptom of some kinds of insanity
+31937,copula copulative linking_verb,an equating verb (such as `be' or `become') that links the subject with the complement of a sentence
+31938,copulative_conjunction,the conjunctive relation of units that expresses the addition of their meanings
+31939,copy,material suitable for a journalistic account; "catastrophes make good copy"
+31940,copy,a thing made to be similar or identical to another thing; "she made a copy of the designer dress"; "the clone was a copy of its ancestor"
+31941,copy written_matter,matter to be printed; exclusive of graphical materials
+31942,copy_editing,putting something into a form suitable for a printer
+31943,copy_editor copyreader text_editor,an editor who prepares text for publication
+31944,copybook,a book containing models of good penmanship; used in teaching penmanship
+31945,copycat imitator emulator ape aper,someone who copies the words or behavior of another
+31946,copyhold,a medieval form of land tenure in England; a copyhold was a parcel of land granted to a peasant by the lord of the manor in return for agricultural services
+31947,copyholder,mechanical device used in printing; holds the copy for the compositor
+31948,copying,an act of copying
+31949,copyist scribe scrivener,someone employed to make written copies of documents and manuscripts
+31950,copyright right_of_first_publication,a document granting exclusive right to publish and sell literary or musical or artistic work
+31951,copyright_infringement infringement_of_copyright,a violation of the rights secured by a copyright
+31952,copywriter,a person employed to write advertising or publicity copy
+31953,coq_au_vin,chicken and onions and mushrooms braised in red wine and seasonings
+31954,coquette flirt vamp vamper minx tease prickteaser,a seductive woman who uses her sex appeal to exploit men
+31955,coquilla_nut,nut having a hard hazel-brown shell used like vegetable ivory
+31956,coquille,seafood served in a scallop shell
+31957,coquille,a dish in the form of a scallop shell
+31958,coquilles_Saint-Jacques,scallops in white wine sauce served in scallop shells
+31959,cor_pulmonale,enlargement of the right ventricle of the heart due to disease of the lungs or of the pulmonary blood vessels
+31960,coraciiform_bird,chiefly short-legged arboreal nonpasserine birds that nest in holes
+31961,coracle,a small rounded boat made of hides stretched over a wicker frame; still used in some parts of Great Britain
+31962,coral,unfertilized lobster roe; reddens in cooking; used as garnish or to color sauces
+31963,coral,a variable color averaging a deep pink
+31964,coral,marine colonial polyp characterized by a calcareous skeleton; masses in a variety of shapes often forming reefs
+31965,coral red_coral precious_coral,the hard stony skeleton of a Mediterranean coral that has a delicate red or pink color and is used for jewelry
+31966,coral-root_bittercress coralroot coralwort Cardamine_bulbifera Dentaria_bulbifera,European bittercress having a knotted white rootstock
+31967,coral_bean_tree Erythrina_corallodendrum,deciduous shrub having racemes of deep red flowers and black-spotted red seeds
+31968,coral_bush flame_bush Templetonia_retusa,Australian shrub having simple obovate leaves and brilliant scarlet flowers
+31969,coral_drops Bessera_elegans,half-hardy Mexican herb cultivated for its drooping terminal umbels of showy red-and-white flowers
+31970,coral_fungus,any of numerous fungi of the family Clavariaceae often brightly colored that grow in often intricately branched clusters like coral
+31971,coral_gem Lotus_berthelotii,low-growing much-branched perennial of Canary Islands having orange-red to scarlet or purple flowers; naturalized in United States
+31972,coral_necklace Illecebrum_verticullatum,glabrous annual with slender taproot and clusters of white flowers; western Europe especially western Mediterranean and Atlantic coastal areas
+31973,coral_pea,any of various Australian climbing plants of the genus Kennedia having scarlet flowers
+31974,coral_reef,a reef consisting of coral consolidated into limestone
+31975,coral_root,a wildflower of the genus Corallorhiza growing from a hard mass of rhizomes associated with a fungus that aids in absorbing nutrients from the forest floor
+31976,coral_snake Old_World_coral_snake,any of various venomous elapid snakes of Asia and Africa and Australia
+31977,coral_snake harlequin-snake New_World_coral_snake,any of several venomous New World snakes brilliantly banded in red and black and either yellow or white; widely distributed in South America and Central America
+31978,coral_tree erythrina,any of various shrubs or shrubby trees of the genus Erythrina having trifoliate leaves and racemes of scarlet to coral red flowers and black seeds; cultivated as an ornamental
+31979,coral_vine Kennedia_coccinea,prostrate or twining woody vine with small leathery leaves and umbels of red flowers; Australia and Tasmania
+31980,coralbells Heuchera_sanguinea,perennial plant of the western United States having bright red flowers in feathery spikes; used as an ornamental
+31981,coralberry Indian_currant Symphoricarpos_orbiculatus,North American deciduous shrub cultivated for it abundant clusters of coral-red berrylike fruits
+31982,coralberry spiceberry Ardisia_crenata,shrub with coral-red berries; Japan to northern India
+31983,coralwood coral-wood red_sandalwood Barbados_pride peacock_flower_fence Adenanthera_pavonina,East Indian tree with racemes of yellow-white flowers; cultivated as an ornamental
+31984,corbel truss,(architecture) a triangular bracket of brick or stone (usually of slight extent)
+31985,corbel_arch,(architecture) an arch constructed of masonry courses that are corbelled until they meet
+31986,corbel_step corbie-step corbiestep crow_step,(architecture) a step on the top of a gable wall
+31987,corbie_gable,(architecture) a gable having corbie-steps or corbel steps
+31988,corbina Menticirrhus_undulatus,bluish-grey whiting of California coast
+31989,corchorus,any of various plants of the genus Corchorus having large leaves and cymose clusters of yellow flowers; a source of jute
+31990,cord,a unit of amount of wood cut for burning; 128 cubic feet
+31991,cord,a line made of twisted fibers or threads; "the bundle was tied with a cord"
+31992,cord corduroy,a cut pile fabric with vertical ribs; usually made of cotton
+31993,cord electric_cord,a light insulated conductor for household use
+31994,cord_blood,blood obtained from the umbilical cord at birth
+31995,cordage,the amount of wood in an area as measured in cords
+31996,cordage,the ropes in the rigging of a ship
+31997,cordate_leaf,a heart-shaped leaf
+31998,cordgrass cord_grass,any of several perennial grasses of the genus Spartina; some important as coastal soil binders
+31999,cordial_reception hospitality,kindness in welcoming guests or strangers
+32000,cordierite,a blue mineral of magnesium and iron and aluminum and silicon and oxygen; often used as a gemstone
+32001,cordite,explosive powder (nitroglycerin and guncotton and petrolatum) dissolved in acetone and dried and extruded in brown cords
+32002,corditis,inflammation of the spermatic cord
+32003,cordoba,the basic unit of money in Nicaragua; equal to 100 centavos
+32004,cordon,a series of sentinels or of military posts enclosing or guarding some place or thing
+32005,cordon,cord or ribbon worn as an insignia of honor or rank
+32006,cordon,adornment consisting of an ornamental ribbon or cord
+32007,cordon_bleu,a chef famous for his great skill
+32008,cordovan,a fine leather originally made in Cordoba, Spain
+32009,cords corduroys,cotton trousers made of corduroy cloth
+32010,corduroy,a road made of logs laid crosswise
+32011,cordwood,firewood cut and stacked in cords; wood sold by the cord
+32012,core,a cylindrical sample of soil or rock obtained with a hollow drill
+32013,core,the central part of the Earth
+32014,core,the center of an object; "the ball has a titanium core"
+32015,core,the chamber of a nuclear reactor containing the fissile material where the reaction takes place
+32016,core,a bar of magnetic material (as soft iron) that passes through a coil and serves to increase the inductance of the coil
+32017,core magnetic_core,(computer science) a tiny ferrite toroid formerly used in a random access memory to store one bit of data; now superseded by semiconductor memories; "each core has three wires passing through it, providing the means to select and detect the contents of each bit"
+32018,core nucleus core_group,a small group of indispensable persons or things; "five periodicals make up the core of their publishing program"
+32019,core_bit,a hollow drilling bit that is the cutting part of a core drill; allows core samples to be taken
+32020,core_drill,a drill that removes a cylindrical core from the drill hole
+32021,core_dump,(computer science) dump of the contents of the chief registers in the CPU; usually used for debugging
+32022,coreference,the grammatical relation between two words that have a common referent
+32023,coreid_bug coreid,a true bug
+32024,coreligionist,someone having the same religion as another person
+32025,coreopsis tickseed tickweed tick-weed,any of numerous plants of the genus Coreopsis having a profusion of showy usually yellow daisylike flowers over long periods; North and South America
+32026,corer,a device for removing the core from apples
+32027,corespondent co-respondent,the codefendant charged with adultery with the estranged spouse in a divorce proceeding
+32028,corgi Welsh_corgi,either of two Welsh breeds of long-bodied short-legged dogs with erect ears and a fox-like head
+32029,coriander Chinese_parsley cilantro,parsley-like herb used as seasoning or garnish
+32030,coriander coriander_plant Chinese_parsley cilantro Coriandrum_sativum,Old World herb with aromatic leaves and seed resembling parsley
+32031,coriander coriander_seed,dried coriander seeds used whole or ground
+32032,cork,outer bark of the cork oak; used for stoppers for bottles etc.
+32033,cork bottle_cork,the plug in the mouth of a bottle (especially a wine bottle)
+32034,cork_oak Quercus_suber,medium-sized evergreen oak of southern Europe and northern Africa having thick corky bark that is periodically stripped to yield commercial cork
+32035,cork_tree Erythrina_vespertilio,prickly Australian coral tree having soft spongy wood
+32036,cork_tree Phellodendron_amurense,deciduous tree of China and Manchuria having a turpentine aroma and handsome compound leaves turning yellow in autumn and deeply fissured corky bark
+32037,corkage,a charge added at a restaurant for every bottle of wine served that was not bought on the premises
+32038,corkboard,a heat-insulating building material consisting of cork granules that are made into sheets by compressing and baking
+32039,corker,(dated slang) a remarkable or excellent thing or person; "that story was a corker"
+32040,corker,a machine that is used to put corks in bottles
+32041,corkscrew bottle_screw,a bottle opener that pulls corks
+32042,corkwood corkwood_tree Leitneria_floridana,very small deciduous dioecious tree or shrub of damp habitats in southeastern United States having extremely light wood
+32043,corm,solid swollen underground bulb-shaped stem or stem base and serving as a reproductive structure
+32044,cormorant Phalacrocorax_carbo,large voracious dark-colored long-necked seabird with a distensible pouch for holding fish; used in Asia to catch fish
+32045,cormous_plant,plant growing from a corm
+32046,corn,the dried grains or kernels or corn used as animal feed or ground for meal
+32047,corn,(Great Britain) any of various cereal plants (especially the dominant crop of the region--wheat in Great Britain or oats in Scotland and Ireland)
+32048,corn,something sentimental or trite; "that movie was pure corn"
+32049,corn clavus,a hard thickening of the skin (especially on the top or sides of the toes) caused by the pressure of ill-fitting shoes
+32050,corn edible_corn,ears of corn that can be prepared and served for human food
+32051,corn maize Indian_corn Zea_mays,tall annual cereal grass bearing kernels on large ears: widely cultivated in America in many varieties; the principal cereal in Mexico and Central and South America since pre-Columbian times
+32052,corn_borer European_corn_borer_moth corn_borer_moth Pyrausta_nubilalis,native to Europe; in America the larvae bore into the stem and crown of corn and other plants
+32053,corn_borer Pyrausta_nubilalis,larva of the European corn borer moth; a serious pest of maize
+32054,corn_cake,baked in a pan or on a griddle (southern and midland)
+32055,corn_chamomile field_chamomile corn_mayweed Anthemis_arvensis,European white-flowered weed naturalized in North America
+32056,corn_chip,thin piece of cornmeal dough fried
+32057,corn_chowder,chowder containing corn
+32058,corn_cockle corn_campion crown-of-the-field Agrostemma_githago,European annual having large trumpet-shaped reddish-purple flowers and poisonous seed; a common weed in grainfields and beside roadways; naturalized in America
+32059,corn_dab corn_dodger dodger,small oval cake of corn bread baked or fried (chiefly southern)
+32060,corn_dance,a rain dance of Amerindians
+32061,corn_earworm cotton_bollworm tomato_fruitworm tobacco_budworm vetchworm Heliothis_zia,larva of a noctuid moth; highly destructive to especially corn and cotton and tomato crops
+32062,corn_exchange,an exchange where grains are bought and sold
+32063,corn_flake,crisp flake made from corn
+32064,corn_fritter,fritter containing corn or corn kernels
+32065,corn_gluten,gluten prepared from corn
+32066,corn_gluten_feed,a feed consisting primarily of corn gluten
+32067,corn_lily,any of several South African plants of the genus Ixia having grasslike leaves and clusters of showy variously colored lily-like flowers; widely cultivated
+32068,corn_marigold field_marigold Chrysanthemum_segetum,European herb with bright yellow flowers; a common weed in grain fields
+32069,corn_mint field_mint Mentha_arvensis,European mint naturalized in United States
+32070,corn_muffin,cornbread muffin
+32071,corn_oil,oil from the germs of corn grains
+32072,corn_poppy field_poppy Flanders_poppy Papaver_rhoeas,annual European poppy common in grain fields and often cultivated
+32073,corn_pudding,pudding made of corn and cream and egg
+32074,corn_salad,a plant of the genus Valerianella
+32075,corn_snake red_rat_snake Elaphe_guttata,large harmless snake of southeastern United States; often on farms
+32076,corn_snow,granular snow formed by alternate thawing and freezing
+32077,corn_speedwell Veronica_arvensis,erect or procumbent blue-flowered annual found in waste places of Europe and America
+32078,corn_spurry corn_spurrey Spergula_arvensis,small European weed with whorled leaves and white flowers
+32079,corn_sugar,dextrose made by hydrolysis of cornstarch
+32080,corn_sugar,dextrose used as sweetening agent
+32081,corn_syrup,syrup prepared from corn
+32082,corn_whiskey corn_whisky corn,whiskey distilled from a mash of not less than 80 percent corn
+32083,cornbread,bread made primarily of cornmeal
+32084,corncob corn_cob,the hard cylindrical core that bears the kernels of an ear of corn
+32085,corncrake land_rail Crex_crex,common Eurasian rail that frequents grain fields
+32086,corncrib,a crib for storing and drying ears of corn
+32087,cornea,the transparent dome-shaped anterior portion of the outer covering of the eye; it covers the iris and pupil and is continuous with the sclera
+32088,corned_beef_hash,hash made with corned beef
+32089,cornelian_cherry Cornus_mas,deciduous European shrub or small tree having bright red fruit
+32090,corner,a temporary monopoly on a kind of commercial trade; "a corner on the silver market"
+32091,corner,a projecting part where two sides or edges meet; "he knocked off the corners"
+32092,corner,the point where three areas or surfaces meet or intersect; "the corners of a cube"
+32093,corner,a remote area; "in many corners of the world they still practice slavery"
+32094,corner,a place off to the side of an area; "he tripled to the rightfield corner"; "the southeastern corner of the Mediterranean"
+32095,corner,the point where two lines meet or intersect; "the corners of a rectangle"
+32096,corner box,a predicament from which a skillful or graceful escape is impossible; "his lying got him into a tight corner"
+32097,corner nook,an interior angle formed by two meeting walls; "a piano was in one corner of the room"
+32098,corner quoin,(architecture) solid exterior angle of a building; especially one formed by a cornerstone
+32099,corner street_corner turning_point,the intersection of two streets; "standing on the corner watching all the girls go by"
+32100,corner_kick,a free kick from the corner awarded to the other side when a player has sent the ball behind his own goal line
+32101,corner_pocket,a pocket at the corner of a billiard table
+32102,corner_post,a square post supporting a structural member at the corner of a building
+32103,cornerback,a defensive football player stationed outside the linebackers
+32104,cornerstone,a stone in the exterior of a large and important building; usually carved with a date and laid with appropriate ceremonies
+32105,cornerstone,a stone at the outer corner of two intersecting masonry walls
+32106,cornet horn trumpet trump,a brass musical instrument with a brilliant tone; has a narrow tube and a flared bell and is played by means of valves
+32107,cornetfish,slender tropical fish with a long tubular snout and bony plates instead of scales
+32108,cornfield corn_field,a field planted with corn
+32109,cornflower bachelor's_button bluebottle Centaurea_cyanus,an annual Eurasian plant cultivated in North America having showy heads of blue or purple or pink or white flowers
+32110,cornhusk,the husk of an ear of corn
+32111,cornhusker,a worker who husks corn
+32112,cornhusking,the act of removing the husks from ears of corn
+32113,cornice,a molding at the corner between the ceiling and the top of a wall
+32114,cornice,the topmost projecting part of an entablature
+32115,cornice valance valance_board pelmet,a decorative framework to conceal curtain fixtures at the top of a window casing
+32116,cornmeal Indian_meal,coarsely ground corn
+32117,cornpone pone,cornbread often made without milk or eggs and baked or fried (southern)
+32118,cornsilk corn_silk,each of the long filamentous styles that grow as a silky tuft at the tip of an ear of Indian corn
+32119,cornsmut corn_smut,a smut fungus attacking Indian corn
+32120,cornstalk corn_stalk,the stalk of a corn plant
+32121,cornstarch cornflour,starch prepared from the grains of corn; used in cooking as a thickener
+32122,cornu,(anatomy) any structure that resembles a horn in shape
+32123,corolla,(botany) the whorl of petals of a flower that collectively form an inner floral envelope or layer of the perianth; "we cultivate the flower for its corolla"
+32124,corollary,a practical consequence that follows naturally; "blind jealousy is a frequent corollary of passionate love"
+32125,corollary,(logic) an inference that follows directly from the proof of another proposition
+32126,corona,(botany) the trumpet-shaped or cup-shaped outgrowth of the corolla of a daffodil or narcissus flower
+32127,corona,one or more circles of light seen around a luminous object
+32128,corona,(anatomy) any structure that resembles a crown in shape
+32129,corona,a long cigar with blunt ends
+32130,corona_discharge corona corposant St._Elmo's_fire Saint_Elmo's_fire Saint_Elmo's_light Saint_Ulmo's_fire Saint_Ulmo's_light electric_glow,an electrical discharge accompanied by ionization of surrounding atmosphere
+32131,coronal_suture sutura_coronalis,the suture between the parietal and frontal bones of the skull
+32132,coronary_artery arteria_coronaria,the artery that branches from the aorta to supply blood to the heart
+32133,coronary_bypass coronary_bypass_surgery coronary_artery_bypass_graft CABG,open-heart surgery in which the rib cage is opened and a section of a blood vessel is grafted from the aorta to the coronary artery to bypass the blocked section of the coronary artery and improve the blood supply to the heart
+32134,coronary_care_unit,a hospital unit specially staffed and equipped to treat patients with serious cardiac problems
+32135,coronary_heart_disease,a heart disease due to an abnormality of the arteries that supply blood and oxygen to the heart
+32136,coronary_insufficiency cardiac_insufficiency,inadequate blood flow to the heart muscles; can cause angina pectoris
+32137,coronary_occlusion,occlusion of a coronary artery caused either by progressive atherosclerosis or by a blood clot
+32138,coronary_sinus sinus_coronarius,a short sinus receiving most of the veins of the heart; empties into the right atrium
+32139,coronary_thrombosis coronary,obstruction of blood flow in a coronary artery by a blood clot (thrombus)
+32140,coronation enthronement enthronization enthronisation investiture,the ceremony of installing a new monarch
+32141,coroner medical_examiner,a public official who investigates by inquest any death not due to natural causes
+32142,coronet,a small crown; usually indicates a high rank but below that of sovereign
+32143,coronet,margin between the skin of the pastern and the horn of the hoof
+32144,coronilla,any of various plants of the genus Coronilla having purple or pink or yellow flowers in long axillary heads or umbels
+32145,coronion,the craniometric point at the tip of the coronoid process of the mandible
+32146,coronoid_process processus_coronoideus,a sharp triangular process projecting from a bone
+32147,coronoid_process_of_the_mandible,the coronoid process that provides an attachment for the temporal muscle
+32148,corozo corozo_palm,any of several tropical American palms bearing corozo nuts
+32149,corporal,a noncommissioned officer in the Army or Air Force or Marines
+32150,corporal_punishment,the infliction of physical injury on someone convicted of committing a crime
+32151,corporate_bond,a bond issued by a corporation; carries no claim to ownership and pays no dividends but payments to bondholders have priority over payments to stockholders; "a corporate bond is a safer investment than common stock in the same company"
+32152,corporate_executive business_executive,an executive in a business corporation
+32153,corporate_finance,the financial activities of corporation
+32154,corporate_investor,a company that invests in (acquires control of) other companies
+32155,corporation corp,a business firm whose articles of incorporation have been approved in some state
+32156,corporation_law,that branch of jurisprudence that studies the laws governing corporations
+32157,corporatism,control of a state or organization by large interest groups; "individualism is in danger of being swamped by a kind of corporatism"
+32158,corporatist,a supporter of corporatism
+32159,corps,a body of people associated together; "diplomatic corps"
+32160,corps army_corps,an army unit usually consisting of two or more divisions and their support
+32161,corps_de_ballet ensemble,the chorus of a ballet company
+32162,corpulence overweight stoutness adiposis,the property of excessive fatness
+32163,corpus,a collection of writings; "he edited the Hemingway corpus"
+32164,corpus,the main part of an organ or other bodily structure
+32165,corpus_callosum,a broad transverse nerve tract connecting the two cerebral hemispheres
+32166,corpus_delicti,the body of evidence that constitute the offence; the objective proof that a crime has been committed (sometimes mistakenly thought to refer to the body of a homicide victim)
+32167,corpus_luteum,yellow endocrine tissue that forms in a ruptured Graafian follicle following the release of an ovum; it degenerates after a few days unless pregnancy has begun
+32168,corpus_striatum striatum striate_body,a striped mass of white and grey matter located in front of the thalamus in each cerebral hemisphere; consists of the caudate nucleus and the lenticular nucleus
+32169,corpuscular_radiation particulate_radiation,a stream of atomic or subatomic particles that may be charged positively (e.g. alpha particles) or negatively (e.g. beta particles) or not at all (e.g. neutrons)
+32170,corpuscular_theory corpuscular_theory_of_light,(physics) the theory that light is transmitted as a stream of particles
+32171,correction,something substituted for an error
+32172,correction,a drop in stock market activity or stock prices following a period of increases; "market runups are invariably followed by a correction"
+32173,correction,treatment of a specific defect; "the correction of his vision with eye glasses"
+32174,correction chastening chastisement,a rebuke for making a mistake
+32175,correction fudge_factor,a quantity that is added or subtracted in order to increase the accuracy of a scientific measure
+32176,correction rectification,the act of offering an improvement to replace a mistake; setting right
+32177,correctional_institution,a penal institution maintained by the government
+32178,correctional_rehabilitation,providing penal custody or probation or parole for convicted offenders
+32179,corrections,the social control of offenders through a system of imprisonment and rehabilitation and probation and parole
+32180,corrections department_of_corrections,the department of local government that is responsible for managing the treatment of convicted offenders; "for a career in corrections turn to the web site of the New Jersey Department of Corrections"
+32181,corrective restorative,a device for treating injury or disease
+32182,correctness, the quality of conformity to social expectations
+32183,correctness rightness,conformity to fact or truth
+32184,correlate correlative,either of two or more related or complementary variables
+32185,correlation correlational_statistics,a statistical relation between two or more variables such that systematic changes in the value of one variable are accompanied by systematic changes in the other
+32186,correlation correlativity,a reciprocal relation between two or more things
+32187,correlation_coefficient coefficient_of_correlation correlation,a statistic representing how closely two variables co-vary; it can vary from -1 (perfect negative correlation) through 0 (no correlation) to +1 (perfect positive correlation); "what is the correlation between those two variables?"
+32188,correlation_matrix,a matrix giving the correlations between all pairs of data sets
+32189,correlation_table,a two-way tabulation of the relations between correlates; row headings are the scores on one variable and column headings are the scores on the second variables and a cell shows how many times the score on that row was associated with the score in that column
+32190,correlational_analysis,the use of statistical correlation to evaluate the strength of the relations between variables
+32191,correspondence,communication by the exchange of letters
+32192,correspondence_course,a course offered (by mail) by a correspondence school
+32193,correspondence_school,a school that teaches nonresident students by mail
+32194,correspondent letter_writer,someone who communicates by means of letters
+32195,correspondent newspaperman newspaperwoman newswriter pressman,a journalist employed to provide news stories for newspapers or broadcast media
+32196,corridor,an enclosed passageway; rooms usually open onto it
+32197,corrigenda,a list of printing errors in a book along with their corrections
+32198,corrigendum,a printer's error; to be corrected
+32199,corroborating_evidence,additional evidence or evidence of different kind that supports a proof already offered in a proceeding
+32200,corrosion,a state of deterioration in metals caused by oxidation or chemical action
+32201,corrosion corroding erosion,erosion by chemical action
+32202,corrosive,a substance having the tendency to cause corrosion (such a strong acids or alkali)
+32203,corrugated_board corrugated_cardboard,cardboard with corrugations (can be glued to flat cardboard on one or both sides)
+32204,corrugated_fastener wiggle_nail,a small strip of corrugated steel with sharp points on one side; hammered across wood joints in rough carpentry
+32205,corrugated_iron,usually galvanized sheet iron or sheet steel shaped into straight parallel ridges and hollows
+32206,corrugation,a ridge on a corrugated surface
+32207,corrugation,the act of shaping into parallel ridges and grooves
+32208,corruptibility,the capability of being corrupted
+32209,corruption,decay of matter (as by rot or oxidation)
+32210,corruption,inducement (as of a public official) by improper means (as bribery) to violate duty (as by commiting a felony); "he was held on charges of corruption and racketeering"
+32211,corruption degeneracy depravation depravity putrefaction,moral perversion; impairment of virtue and moral principles; "the luxury and corruption among the upper classes"; "moral degeneracy followed intellectual degeneration"; "its brothels, its opium parlors, its depravity"; "Rome had fallen into moral putrefaction"
+32212,corruption subversion,destroying someone's (or some group's) honesty or loyalty; undermining moral integrity; "corruption of a minor"; "the big city's subversion of rural innocence"
+32213,corruptness,the state of being corrupt
+32214,corruptness corruption,lack of integrity or honesty (especially susceptibility to bribery); use of a position of trust for dishonest gain
+32215,corsair,a swift pirate ship (often operating with official sanction)
+32216,corsair Barbary_pirate,a pirate along the Barbary Coast
+32217,corselet corslet,a piece of body armor for the trunk; usually consists of a breastplate and back piece
+32218,corset girdle stays,a woman's close-fitting foundation garment
+32219,cortege,a funeral procession
+32220,cortege retinue suite entourage,the group following and attending to some important person
+32221,cortex,the tissue forming the outer layer of an organ or structure in plant or animal
+32222,cortical_area cortical_region,any of various regions of the cerebral cortex
+32223,cortical_cataract,a cataract that affects the lens cortex
+32224,cortical_epilepsy focal_epilepsy,epilepsy in which the attacks begins with an isolated disturbance of cerebral function (as a twitching of a limb or an illusory sensation or a mental disturbance)
+32225,corticosteroid corticoid adrenal_cortical_steroid,a steroid hormone produced by the adrenal cortex or synthesized; administered as drugs they reduce swelling and decrease the body's immune response; "adrenal cortical steroids are used to treat many different conditions"
+32226,corticosterone,secreted by the adrenal cortex; involved in regulating water and electrolyte balance in the body
+32227,cortina,a cobwebby partial veil consisting of silky fibrils
+32228,cortisone Cortone_Acetate,a corticosteroid hormone (trade name Cortone Acetate) normally produced by the adrenal cortex; is converted to hydrocortisone
+32229,corundom corundum,very hard mineral used as an abrasive
+32230,coruscation,a sudden or striking display of brilliance; "coruscations of great wit"
+32231,corvee,unpaid labor (as for the maintenance of roads) required by a lord of his vassals in lieu of taxes
+32232,corvette,a highly maneuverable escort warship; smaller than a destroyer
+32233,corvine_bird,birds of the crow family
+32234,corydalis,a plant of the genus Corydalis with beautiful compound foliage and spurred tubular flowers
+32235,corymb,flat-topped or convex inflorescence in which the individual flower stalks grow upward from various points on the main stem to approximately the same height; outer flowers open first
+32236,corynebacterium,any species of the genus Corynebacterium
+32237,coryphantha,a cactus of the genus Coryphantha
+32238,corythosaur corythosaurus,duck-billed dinosaur with nasal passages that expand into a crest like a hollow helmet
+32239,cos cos_lettuce romaine romaine_lettuce,lettuce with long dark-green leaves in a loosely packed elongated head
+32240,cos_lettuce romaine_lettuce Lactuca_sativa_longifolia,lettuce with long dark-green spoon-shaped leaves
+32241,coscoroba,large white South American bird intermediate in some respects between ducks and swans
+32242,cosecant cosec,ratio of the hypotenuse to the opposite side of a right-angled triangle
+32243,cosigner,a signer in addition to the principal signer (to verify the authenticity of the principal signature or to provide surety)
+32244,cosigner cosignatory,one of two or more signers of the same document (as a treaty or declaration)
+32245,cosine cos,ratio of the adjacent side to the hypotenuse of a right-angled triangle
+32246,cosmetic,a toiletry designed to beautify the body
+32247,cosmetic_dentistry,the branch of dentistry dealing with the appearance of the teeth
+32248,cosmetic_surgeon plastic_surgeon,a surgeon who beautifies the body (especially the face)
+32249,cosmetician,someone who sells or applies cosmetics
+32250,cosmetologist,an expert in the use of cosmetics
+32251,cosmetology,the practice of beautifying the face and hair and skin
+32252,cosmic_background_radiation CBR cosmic_microwave_background_radiation CMBR cosmic_microwave_background CMB,(cosmology) the cooled remnant of the hot big bang that fills the entire universe and can be observed today with an average temperature of about 2.725 kelvin
+32253,cosmic_dust,clouds of particles or gases occurring throughout interstellar space
+32254,cosmic_radiation,radiation coming from outside the solar system
+32255,cosmic_ray,highly penetrating ionizing radiation of extraterrestrial origin; consisting chiefly of protons and alpha particles; collision with atmospheric particles results in rays and particles of many kinds
+32256,cosmic_time,the time covered by the physical formation and development of the universe
+32257,cosmid,(genetics) a large vector that is made from a bacteriophage and used to clone genes or gene fragments
+32258,cosmographer cosmographist,a scientist knowledgeable about cosmography
+32259,cosmography,the science that maps the general features of the universe; describes both heaven and earth (but without encroaching on geography or astronomy)
+32260,cosmography,a representation of the earth or the heavens; "the cosmography of Ptolemy"
+32261,cosmolatry,the worship of the cosmos
+32262,cosmological_constant,an arbitrary constant in the equations of general relativity theory
+32263,cosmologist,an astronomer who studies the evolution and space-time relations of the universe
+32264,cosmology,the metaphysical study of the origin and nature of the universe
+32265,cosmology cosmogony cosmogeny,the branch of astrophysics that studies the origin and evolution and structure of the universe
+32266,cosmopolitan cosmopolite,a sophisticated person who has travelled in many countries
+32267,cosmos cosmea,any of various mostly Mexican herbs of the genus Cosmos having radiate heads of variously colored flowers and pinnate leaves; popular fall-blooming annuals
+32268,cosmotron,a large proton synchrotron; uses frequency modulation of an electric field to accelerate protons
+32269,cost,the total spent for goods or services including money and time and labor
+32270,cost-benefit_analysis,an analysis of the cost effectiveness of different alternatives in order to see whether the benefits outweigh the costs
+32271,cost-of-living_allowance,an allowance for changes in the consumer price index
+32272,cost-of-living_benefit,a benefit that goes to anyone whose money receipts increase automatically as prices rise
+32273,cost-plus_contract,a contract in which the contractor is paid his total cost plus a stated percentage of profit
+32274,cost-pull_inflation,inflation caused by an increase in the costs of production
+32275,cost_accountant,a specialist in the systematic recording and analysis of the costs incident to production
+32276,cost_accounting,keeping account of the costs of items in production
+32277,cost_analysis,breaking down the costs of some operation and reporting on each factor separately
+32278,cost_cutting,the act of cutting costs
+32279,cost_ledger,ledger showing the accumulated costs classified in various ways
+32280,cost_of_capital capital_cost,the opportunity cost of the funds employed as the result of an investment decision; the rate of return that a business could earn if it chose another investment with equivalent risk
+32281,cost_of_living,average cost of basic necessities of life (as food and shelter and clothing); "a rise in the cost of living reflects the rate of inflation"
+32282,cost_overrun,excess of cost over budget; "the cost overrun necessitated an additional allocation of funds in the budget"
+32283,costa,a riblike part of a plant or animal (such as a middle rib of a leaf or a thickened vein of an insect wing)
+32284,costal_cartilage,the cartilages that connect the sternum and the ends of the ribs; its elasticity allows the chest to move in respiration
+32285,costal_groove,groove between the ribs where the nerves and blood vessels are
+32286,costermonger barrow-man barrow-boy,a hawker of fruit and vegetables from a barrow
+32287,costia Costia_necatrix,a flagellate that is the cause of the frequently fatal fish disease costiasis
+32288,costiasis,a fatal disease of freshwater fish caused by a flagellated protozoan invading the skin
+32289,costing,cost accounting
+32290,costliness dearness preciousness,the quality possessed by something with a great price or value
+32291,costmary,leaves used sparingly (because of bitter overtones) in sauces and soups and stuffings
+32292,costmary alecost bible_leaf mint_geranium balsam_herb Tanacetum_balsamita Chrysanthemum_balsamita,tansy-scented Eurasian perennial herb with buttonlike yellow flowers; used as potherb or salad green and sometimes for potpourri or tea or flavoring; sometimes placed in genus Chrysanthemum
+32293,costoaxillary_vein,one of several veins connecting intercostal veins with the lateral thoracic vein or the thoracoepigastric vein
+32294,costochondritis,inflammation at the junction of a rib and its cartilage
+32295,costs,pecuniary reimbursement to the winning party for the expenses of litigation
+32296,costume,the prevalent fashion of dress (including accessories and hair style as well as garments)
+32297,costume,unusual or period attire not characteristic of or appropriate to the time and place; "in spite of the heat he insisted on his woolen costume"
+32298,costume,the attire characteristic of a country or a time or a social class; "he wore his national costume"
+32299,costume,the attire worn in a play or at a fancy dress ball; "he won the prize for best costume"
+32300,costumier costumer costume_designer,someone who designs or supplies costumes (as for a play or masquerade)
+32301,costus_oil,a yellow volatile essential oil obtained from costusroot; used in perfumes
+32302,costusroot Saussurea_costus Saussurea_lappa,annual herb of the eastern Himalayas (Kashmir) having purple florets and a fragrant root that yields a volatile oil used in perfumery and for preserving furs
+32303,cosy tea_cosy cozy tea_cozy,a padded cloth covering to keep a teapot warm
+32304,cot camp_bed,a small bed that folds up for storage or transport
+32305,cotangent cotan,ratio of the adjacent to the opposite side of a right-angled triangle
+32306,cote,a small shelter for domestic animals (as sheep or pigeons)
+32307,cotenant,one of two or more tenants holding title to the same property
+32308,cotillion cotilion,a ball at which young ladies are presented to society
+32309,cotillion cotilion,a lively dance originating in France in the 18th century
+32310,cotinga chatterer,passerine bird of New World tropics
+32311,cotoneaster,any shrub of the genus Cotoneaster: erect or creeping shrubs having richly colored autumn foliage and many small white to pinkish flowers followed by tiny red or black fruits
+32312,cottage_cheese pot_cheese farm_cheese farmer's_cheese,mild white cheese made from curds of soured skim milk
+32313,cottage_industry,small-scale industry that can be carried on at home by family members using their own equipment
+32314,cottage_pie,a dish of minced meat topped with mashed potatoes
+32315,cottage_pink grass_pink Dianthus_plumarius,European pink cultivated for its very fragrant pink or rosy flowers
+32316,cottage_tent,a tent providing shelter for a family
+32317,cottage_tulip,any of several long-stemmed tulips that flower in May; have egg-shaped variously colored flowers
+32318,cottager cottage_dweller,someone who lives in a cottage
+32319,cotter cottar,a peasant farmer in the Scottish Highlands
+32320,cotter cottar,fastener consisting of a wedge or pin inserted through a slot to hold two other pieces together
+32321,cotter cottier,a medieval English villein
+32322,cotter_pin,a cotter consisting of a split pin that is secured (after passing through a hole) by splitting the ends apart
+32323,cotton,thread made of cotton fibers
+32324,cotton,fabric woven from cotton fibers
+32325,cotton cotton_fiber cotton_wool,soft silky fibers from cotton plants in their raw state
+32326,cotton cotton_plant,erect bushy mallow plant or small tree bearing bolls containing seeds with many long hairy fibers
+32327,cotton_ball,a fungus disease of cranberries
+32328,cotton_candy spun_sugar candyfloss,a candy made by spinning sugar that has been boiled to a high temperature
+32329,cotton_flannel Canton_flannel,a stout cotton fabric with nap on only one side
+32330,cotton_gin gin,a machine that separates the seeds from raw cotton fibers
+32331,cotton_grass cotton_rush,any sedge of the genus Eriophorum; north temperate bog plants with tufted spikes
+32332,cotton_mill,a textile mill for making cotton textiles
+32333,cotton_mouse Peromyscus_gossypinus,large dark mouse of southeastern United States
+32334,cotton_rat Sigmodon_hispidus,destructive long-haired burrowing rat of southern North America and Central America
+32335,cotton_rose Confederate_rose Confederate_rose_mallow Hibiscus_mutabilis,Chinese shrub or small tree having white or pink flowers becoming deep red at night; widely cultivated; naturalized in southeastern United States
+32336,cotton_rose cudweed filago,any plant of the genus Filago having capitate clusters of small woolly flower heads
+32337,cotton_stainer,a true bug: bug that damages and stains the lint of developing cotton
+32338,cotton_strain,feeds primarily on cotton
+32339,cotton_thistle woolly_thistle Scotch_thistle Onopordum_acanthium Onopordon_acanthium,biennial Eurasian white hairy thistle having pale purple flowers; naturalized in North America
+32340,cottonseed,seed of cotton plants; source of cottonseed oil
+32341,cottonseed_cake cotton_cake,the solid matter remaining after oil has been pressed from cottonseeds
+32342,cottonseed_oil,edible oil pressed from cottonseeds
+32343,cottonweed,any of various plants of the genus Froelichia found in sandy soils and on rocky slopes in warmer regions of America; grown for their spikes of woolly white flowers
+32344,cottonwick Haemulon_malanurum,of warm Atlantic waters
+32345,cottonwood,any of several North American trees of the genus Populus having a tuft of cottony hairs on the seed
+32346,cotyledon seed_leaf,embryonic leaf in seed-bearing plants
+32347,coucal,Old World ground-living cuckoo having a long dagger-like hind claw
+32348,couch,a flat coat of paint or varnish used by artists as a primer
+32349,couch,a narrow bed on which a patient lies during psychiatric or psychoanalytic treatment
+32350,couch_potato,an idler who spends much time on a couch (usually watching television)
+32351,couchette,a compartment on a European passenger train; contains 4 to 6 berths for sleeping
+32352,coude_telescope coude_system,a reflecting telescope so constructed that the light is led to a plate holder or spectrograph
+32353,cougar puma catamount mountain_lion painter panther Felis_concolor,large American feline resembling a lion
+32354,cough coughing,a sudden noisy expulsion of air from the lungs that clears the air passages; a common symptom of upper respiratory infection or bronchitis or pneumonia or tuberculosis
+32355,cough_drop troche pastille pastil,a medicated lozenge used to soothe the throat
+32356,coughing_up,the act of expelling (food or phlegm) by coughing
+32357,coulisse,a timber member grooved to take a sliding panel
+32358,coulisse wing_flat,a flat situated in the wings
+32359,coulomb C ampere-second,a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second
+32360,coumarone-indene_resin coumarone_resin,a thermoplastic resin obtained by polymerization of indene and coumarone; used in coatings and paint and asphalt tile
+32361,council,(Christianity) an assembly of theologians and bishops and other representatives of different churches or dioceses that is convened to regulate matters of discipline or doctrine
+32362,council,a body serving in an administrative capacity; "student council"
+32363,council,a meeting of people for consultation; "emergency council"
+32364,council_member councillor,a member of a council
+32365,council_tax,a tax levied on households by local authorities; based on the estimated value of the property and the number of people living in it
+32366,councillorship councilorship,the position of council member
+32367,councilman,a man who is a council member
+32368,councilwoman,a woman who is a council member
+32369,counselor counsellor,someone who has supervisory duties at a summer camp
+32370,counselor counsellor,someone who gives advice about problems
+32371,counselorship counsellorship,the position of counselor
+32372,count,the total number counted; "a blood count"
+32373,count,a nobleman (in various countries) having rank equal to a British earl
+32374,count counting numeration enumeration reckoning tally,the act of counting; reciting numbers in ascending order; "the counting continued for several hours"
+32375,count_noun,a noun that forms plurals
+32376,count_palatine,a count who exercised royal authority in his own domain
+32377,count_per_minute counts/minute,frequency per minute
+32378,countdown,counting backward from an arbitrary number to indicate the time remaining before some event (such as launching a space vehicle)
+32379,countenance physiognomy phiz visage kisser smiler mug,the human face (`kisser' and `smiler' and `mug' are informal terms for `face' and `phiz' is British)
+32380,countenance visage,the appearance conveyed by a person's face; "a pleasant countenance"; "a stern visage"
+32381,counter,a person who counts things
+32382,counter,(computer science) a register whose contents go through a regular series of states (usually states indicating consecutive integers)
+32383,counter,game equipment (as a piece of wood, plastic, or ivory) used for keeping a count or reserving a space in various card or board games
+32384,counter,table consisting of a horizontal surface over which business is transacted
+32385,counter heel_counter,a piece of leather forming the back of a shoe or boot; "a counter may be used to stiffen the material around the heel and to give support to the foot"
+32386,counter tabulator,a calculator that keeps a record of the number of times something happens
+32387,counter-sabotage,counterintelligence designed to detect and counteract sabotage
+32388,counter_check,a blank check provided by a bank for the convenience of customers who are making withdrawals
+32389,counter_conditioning,conditioning in which a second incompatible response is conditioned to an already conditioned stimulus; "counter conditioning lies behind many of the procedures used in behavior therapy"
+32390,counter_tube,a measuring instrument for counting individual ionizing events
+32391,counterargument,an argument offered in opposition to another argument
+32392,counterattack countermove,an attack by a defending force against an attacking enemy force in order to regain lost ground or cut off enemy advance units etc.
+32393,counterattack counterplay,(chess) an attack that is intended to counter the opponent's advantage in another part of the board
+32394,counterattraction,a rival attraction
+32395,counterbalance offset,a compensating equivalent
+32396,counterbattery_fire,fire delivered to neutralize or destroy indirect fire weapon systems
+32397,counterblast,a vigorous and unrestrained response; "her tirade provoked a counterblast from her husband"
+32398,counterblow,a return blow; a retaliatory blow
+32399,counterbombardment,bombardment intended to destroy or neutralize enemy weapons
+32400,counterbore countersink countersink_bit,a bit for enlarging the upper part of a hole
+32401,countercharge,a charge brought by an accused person against the accuser
+32402,countercharge,a retaliatory charge
+32403,countercheck,a check that restrains another check
+32404,countercheck double_check,something that checks the correctness of a previous check
+32405,counterclaim,a claim filed in opposition to another claim in a legal action
+32406,countercoup,a sudden and decisive overthrow of a government that gained power by a coup d'etat
+32407,counterculture,a culture with lifestyles and values opposed to those of the established culture
+32408,countercurrent crosscurrent,actions counter to the main group activity; "political crosscurrents disrupted the conference"
+32409,counterdemonstration,a demonstration held in opposition to another demonstration; "supporters of the president organized a counterdemonstration in his support"
+32410,counterdemonstrator,someone who demonstrates in opposition to another demonstration
+32411,counterespionage,spying on the spies
+32412,counterexample,refutation by example
+32413,counterfactuality,the quality of being contrary to fact
+32414,counterfeit forgery,a copy that is represented as the original
+32415,counterfire,fire intended to neutralize or destroy enemy weapons
+32416,counterglow gegenschein,a faint spot of light in the night sky that appears directly opposite the position of the sun; a reflection of sunlight by micrometeoric material in space
+32417,counterintelligence,intelligence activities concerned with identifying and counteracting the threat to security posed by hostile intelligence organizations or by individuals engaged in espionage or sabotage or subversion or terrorism
+32418,counterirritant,a medicine applied locally to produce superficial inflammation in order to reduce deeper inflammation
+32419,countermand,a contrary command cancelling or reversing a previous command
+32420,countermarch,(military) a march in the reverse direction or back along the same route
+32421,countermeasure,an action taken to offset another action
+32422,countermine,(military) a tunnel dug to defeat similar activities by the enemy
+32423,countermortar_fire,mortar fire intended to destroy or neutralize enemy weapons
+32424,counteroffensive,a large scale offensive (more than a counterattack) undertaken by a defending force to seize the initiative from an attacking force
+32425,counteroffer,an offer made by someone who has rejected a prior offer
+32426,counterpart opposite_number vis-a-vis,a person or thing having the same function or characteristics as another
+32427,counterpart similitude twin,a duplicate copy
+32428,counterperson counterwoman counterman,someone who attends a counter (as in a diner)
+32429,counterplea,a plaintiff's reply to a defendant's plea
+32430,counterplot counterplan,a plot intended to subvert another plot
+32431,counterpoint,a musical form involving the simultaneous sound of two or more melodies
+32432,counterpreparation_fire,intensive prearranged fire delivered when the immanence of enemy attack is discovered
+32433,counterproposal,a proposal offered as an alternative to an earlier proposal
+32434,counterpunch parry counter,a return punch (especially by a boxer)
+32435,counterreformation,a reformation intended to counter the results of a prior reformation
+32436,counterrevolution,a revolution whose aim is to reverse the changes introduced by a previous revolution
+32437,counterrevolutionist counter-revolutionist counterrevolutionary,a revolutionary whose aim is to reverse the changes introduced by an earlier revolution
+32438,countershot,a return shot; a retaliatory shot
+32439,countersignature countersign,a second confirming signature endorsing a document already signed
+32440,countersink,a hole (usually in wood) with the top part enlarged so that a screw or bolt will fit into it and lie below the surface
+32441,counterspy mole,a spy who works against enemy espionage
+32442,counterstain,a stain of contrasting color that is used when the principal stain does not show the structure clearly
+32443,countersubversion,the aspect of counterintelligence designed to detect and prevent subversive activities
+32444,countersuit,a suit brought against someone who has sued you
+32445,countertenor,a male singer with a voice above that of a tenor
+32446,countertenor alto,the highest adult male singing voice
+32447,counterterrorism,a strategy intended to prevent or counter terrorism
+32448,counterterrorist,someone who attempts to prevent terrorism
+32449,countertop,the top side of a counter
+32450,countertransference,the psychoanalyst's displacement of emotion onto the patient or more generally the psychoanalyst's emotional involvement in the therapeutic interaction
+32451,countervailing_duty,a duty imposed to offset subsidies by foreign governments
+32452,counterweight counterbalance counterpoise balance equalizer equaliser,a weight that balances another weight
+32453,countess,female equivalent of a count or earl
+32454,countinghouse,office used by the accountants of a business
+32455,country rural_area,an area outside of cities and towns; "his poetry celebrated the slower pace of life in the country"
+32456,country state land,the territory occupied by a nation; "he returned to the land of his birth"; "he visited several European countries"
+32457,country-dance country_dancing contredanse contra_danse contradance,a type of folk dance in which couples are arranged in sets or face one another in a line
+32458,country_borage Coleus_aromaticus Coleus_amboinicus Plectranthus_amboinicus,an aromatic fleshy herb of India and Ceylon to South Africa; sometimes placed in genus Plectranthus
+32459,country_club,a suburban club for recreation and socializing
+32460,country_doctor,a doctor who practices in the country (rather than in a city) usually remote from a modern hospital; "do country doctors still make house calls?"
+32461,country_house,a house (usually large and impressive) on an estate in the country
+32462,country_music country_and_western C_and_W,a simple style of folk music heard mostly in the southern United States; usually played on stringed instruments
+32463,country_people countryfolk,people living in the same country; compatriots
+32464,country_people countryfolk,people raised in or living in a rural environment; rustics
+32465,country_store general_store trading_post,a retail store serving a sparsely populated region; usually stocked with a wide variety of merchandise
+32466,countryman,a man from your own country
+32467,countryman ruralist,a man who lives in the country and has country ways
+32468,countryseat,an estate in the country
+32469,countryside,rural regions
+32470,countrywoman,a woman who lives in the country and has country ways
+32471,countrywoman,a woman from your own country
+32472,county,(United States) the largest administrative district within a state; "the county plans to build a new road"
+32473,county,(United Kingdom) a region created by territorial division for the purpose of local government; "the county has a population of 12,345 people"
+32474,county_agent agricultural_agent extension_agent,an advisor employed by the government to assist people in rural areas with methods of farming and home economics
+32475,county_council,the elected governing body of a county
+32476,county_line,the boundary between two counties
+32477,county_palatine,the territory of a count palatine
+32478,county_seat county_courthouse,the town or city that is the seat of government for a county
+32479,county_town shire_town,the town or city that is the seat of government for a shire
+32480,coup,a brilliant and notable success
+32481,coup_d'etat coup putsch takeover,a sudden and decisive change of government illegally or by force
+32482,coup_de_theatre,a dramatic surprise
+32483,coup_de_theatre,a sensational bit of stagecraft
+32484,coup_de_theatre,a highly successful theatrical production
+32485,coupe,a car with two doors and front seats and a luggage compartment
+32486,couple,a small indefinite number; "he's coming for a couple of days"
+32487,couple,(physics) something joined by two equal and opposite forces that act along parallel lines
+32488,couple mates match,a pair of people who live together; "a married couple from Chicago"
+32489,couple pair twosome twain brace span yoke couplet distich duo duet dyad duad,two items of the same kind
+32490,couple twosome duo duet,a pair who associate with one another; "the engaged couple"; "an inseparable twosome"
+32491,couplet,a stanza consisting of two successive lines of verse; usually rhymed
+32492,coupling coupler,a mechanical device that serves to connect the ends of adjacent objects
+32493,coupling mating pairing conjugation union sexual_union,the act of pairing a male and female for reproductive purposes; "the casual couplings of adolescents"; "the mating of some species occurs only in the spring"
+32494,coupon,a test sample of some substance
+32495,coupon voucher,a negotiable certificate that can be detached and redeemed as needed
+32496,coupon_bond bearer_bond,a bond issued with detachable coupons that must be presented to the issuer for interest payments
+32497,courage courageousness bravery braveness,a quality of spirit that enables you to face danger or pain without showing fear
+32498,courante,a court dance of the 16th century; consisted of short advances and retreats
+32499,courbaril Hymenaea_courbaril,West Indian locust tree having pinnate leaves and panicles of large white or purplish flowers; yields very hard tough wood
+32500,courbaril_copal,resin from the courbaril tree
+32501,coureur_de_bois,a French Canadian trapper
+32502,courlan Aramus_guarauna,wading bird of South America and Central America
+32503,course,part of a meal served at one time; "she prepared a three course meal"
+32504,course,facility consisting of a circumscribed area of land or water laid out for a sport; "the course had only nine holes"; "the course was less than a mile"
+32505,course course_of_action,a mode of action; "if you persist in that course you will surely fail"; "once a nation is embarked on a course of action it becomes extremely difficult for any retraction to take place"
+32506,course course_of_study course_of_instruction class,education imparted in a series of lessons or meetings; "he took a course in basket weaving"; "flirting is not unknown in college classes"
+32507,course line,a connected series of events or actions or developments; "the government took a firm course"; "historians can only point out those lines for which evidence is available"
+32508,course row,(construction) a layer of masonry; "a course of bricks"
+32509,course trend,general line of orientation; "the river takes a southern course"; "the northeastern trend of the coast"
+32510,course_catalog course_catalogue prospectus,a catalog listing the courses offered by a college or university
+32511,course_of_lectures,a series of lectures dealing with a subject
+32512,course_of_study program programme curriculum syllabus,an integrated course of academic studies; "he was admitted to a new program at the university"
+32513,course_session class_period recitation,a regularly scheduled session as part of a course of study
+32514,courser,a huntsman who hunts small animals with fast dogs that use sight rather than scent to follow their prey
+32515,courser,a dog trained for coursing
+32516,courser,swift-footed terrestrial plover-like bird of southern Asia and Africa; related to the pratincoles
+32517,coursework,work assigned to and done by a student during a course of study; usually it is evaluated as part of the student's grade in the course
+32518,coursing,hunting with dogs (usually greyhounds) that are trained to chase game (such as hares) by sight instead of by scent
+32519,court,the residence of a sovereign or nobleman; "the king will visit the duke's court"
+32520,court,a specially marked horizontal area within which a game is played; "players had to reserve a court in advance"
+32521,court courtroom,a room in which a lawcourt sits; "television cameras were admitted in the courtroom"
+32522,court courtyard,an area wholly or partly surrounded by walls or buildings; "the house was built around an inner court"
+32523,court homage,respectful deference; "pay court to the emperor"
+32524,court lawcourt court_of_law law_court court_of_justice,a tribunal that is presided over by a magistrate or by one or more judges who administer justice according to the laws
+32525,court royal_court,the family and retinue of a sovereign or prince
+32526,court royal_court,the sovereign and his advisers who are the governing power of a state
+32527,court tribunal judicature,an assembly (including one or more judges) to conduct judicial business
+32528,court-martial,a military court to try members of the armed services who are accused of serious breaches of martial law
+32529,court-martial,a trial that is conducted by a military court
+32530,court_game,an athletic game played on a court
+32531,court_order,a writ issued by a court of law requiring a person to do something or to refrain from doing something
+32532,court_plaster,a plaster composed of isinglass on silk; formerly used to dress superficial wounds
+32533,courtesy,a courteous or respectful or considerate remark
+32534,courtesy,a courteous or respectful or considerate act
+32535,courtesy good_manners,a courteous manner
+32536,courthouse,a government building that houses the offices of a county government
+32537,courthouse,a building that houses judicial courts
+32538,courtier,an attendant at the court of a sovereign
+32539,courtliness,elegance suggestive of a royal court
+32540,courtly_love,(Middle Ages) a highly conventionalized code of conduct for lovers
+32541,courtship wooing courting suit,a man's courting of a woman; seeking the affections of a woman (usually with the hope of marriage); "its was a brief and intense courtship"
+32542,couscous,a spicy dish that originated in northern Africa; consists of pasta steamed with a meat and vegetable stew
+32543,couscous,a pasta made in northern Africa of crushed and steamed semolina
+32544,cousin first_cousin cousin-german full_cousin,the child of your aunt or uncle
+32545,couth,(used facetiously) refinement
+32546,couture,high fashion designing and dressmaking
+32547,couturier fashion_designer clothes_designer designer,someone who designs clothing
+32548,couvade,a custom among some peoples whereby the husband of a pregnant wife is put to bed at the time of bearing the child
+32549,couverture,chocolate that contains at least 32 percent cocoa butter
+32550,covalence covalency,valence characterized by the sharing of electrons in a chemical compound; the number of pairs of electrons an atom can share
+32551,covalent_bond,a chemical bond that involves sharing a pair of electrons between atoms in a molecule
+32552,covariance,(statistics) the mean value of the product of the deviations of two variates from their respective means
+32553,covariation,(statistics) correlated variation
+32554,cove,small or narrow cave in the side of a cliff or mountain
+32555,cove,a small inlet
+32556,coven,an assembly of witches; usually 13 witches
+32557,covenant,(Bible) an agreement between God and his people in which God makes certain promises and requires certain behavior from them in return
+32558,covenant compact concordat,a signed written agreement between two or more parties (nations) to perform some action
+32559,cover,a false identity and background (especially one created for an undercover agent); "her new name and passport are cover for her next assignment"
+32560,cover cover_version cover_song,a recording of a song that was first recorded or made popular by somebody else; "they made a cover of a Beatles' song"
+32561,cover covering screening masking,the act of concealing the existence of something by obstructing the view of it; "the cover concealed their guns from enemy aircraft"
+32562,cover covering_fire,fire that makes it difficult for the enemy to fire on your own individuals or formations; "artillery provided covering fire for the withdrawal"
+32563,cover-up,concealment that attempts to prevent something scandalous from becoming public
+32564,cover_charge cover,a fixed charge by a restaurant or nightclub over and above the charge for food and drink
+32565,cover_crop,crop planted to prevent soil erosion and provide green manure
+32566,cover_girl pin-up lovely,a very pretty girl who works as a photographer's model
+32567,cover_glass cover_slip,a small and very thin piece of glass used to cover the specimen on a microscope slide
+32568,cover_plate,covering consisting of a plate used to cover over or close in a chamber or receptacle
+32569,coverage,the extent to which something is covered; "the dictionary's coverage of standard English is excellent"
+32570,coverage insurance_coverage,the total amount and type of insurance carried
+32571,coverage reporting reportage,the news as presented by reporters for newspapers or radio or television; "they accused the paper of biased coverage of race relations"
+32572,coverall,a loose-fitting protective garment that is worn over other clothing
+32573,covered_bridge,a bridge whose passageway is protected by a roof and enclosing sides
+32574,covered_couch,a litter with a cover for privacy
+32575,covered_option,a put or call option backed by the shares underlying the option
+32576,covered_smut,a smut fungus causing a smut disease of grains in which the spore masses are covered or held together by the grain membranes
+32577,covered_wagon Conestoga_wagon Conestoga prairie_wagon prairie_schooner,a large wagon with broad wheels and an arched canvas top; used by the United States pioneers to cross the prairies in the 19th century
+32578,covering,an artifact that covers something else (usually to protect or shelter or conceal it)
+32579,covering,the act of protecting something by covering it
+32580,covering natural_covering cover,a natural object that covers or envelops; "under a covering of dust"; "the fox was flushed from its cover"
+32581,covering_letter cover_letter,a letter sent along with other documents to provide additional information
+32582,covering_material,a material used by builders to cover surfaces
+32583,coverlet,a decorative bedspread (usually quilted)
+32584,covert,a flock of coots
+32585,covert_operation,an intelligence operation so planned as to permit plausible denial by the sponsor
+32586,covetousness,an envious eagerness to possess something
+32587,covey,a small collection of people
+32588,covey,a small flock of grouse or partridge
+32589,cow,a large unpleasant woman
+32590,cow,mature female of mammals of which the male is called `bull'
+32591,cow moo-cow,female of domestic cattle: "`moo-cow' is a child's term"
+32592,cow_manure,cow excreta used as fertilizer
+32593,cow_parsley wild_chervil Anthriscus_sylvestris,coarse erect biennial Old World herb introduced as a weed in eastern North America
+32594,cow_parsnip hogweed Heracleum_sphondylium,tall coarse plant having thick stems and cluster of white to purple flowers
+32595,cow_pasture,a pasture for cows
+32596,cow_pen cattle_pen corral,a pen for cattle
+32597,cow_pie cowpie,fecal matter of a cow
+32598,cow_pony,a light saddle horse trained for herding cattle
+32599,cow_shark six-gilled_shark Hexanchus_griseus,large primitive shark widely distributed in warm seas
+32600,cow_town cowtown,a small town in a cattle-raising area of western North America
+32601,cowage,pods of the cowage plant or the stinging hairs covering them; used as a vermifuge when mixed with e.g. honey
+32602,cowage velvet_bean Bengal_bean Benghal_bean Florida_bean Mucuna_pruriens_utilis Mucuna_deeringiana Mucuna_aterrima Stizolobium_deeringiana,the annual woody vine of Asia having long clusters of purplish flowers and densely hairy pods; cultivated in southern United States for green manure and grazing
+32603,coward,a person who shows fear or timidity
+32604,cowardice cowardliness,the trait of lacking courage
+32605,cowbarn cowshed cow_barn cowhouse byre,a barn for cows
+32606,cowbell,a bell hung around the neck of cow so that the cow can be easily located
+32607,cowberry mountain_cranberry lingonberry lingenberry lingberry foxberry Vaccinium_vitis-idaea,low evergreen shrub of high north temperate regions of Europe and Asia and America bearing red edible berries
+32608,cowbird,North American blackbird that follows cattle and lays eggs in other birds' nests
+32609,cowboy,someone who is reckless or irresponsible (especially in driving vehicles)
+32610,cowboy cowpuncher puncher cowman cattleman cowpoke cowhand cowherd,a hired hand who tends cattle and performs other duties on horseback
+32611,cowboy rodeo_rider,a performer who gives exhibitions of riding and roping and bulldogging
+32612,cowboy_boot,a boot with a high arch and fancy stitching; worn by American cowboys
+32613,cowboy_hat ten-gallon_hat,a hat with a wide brim and a soft crown; worn by American ranch hands
+32614,cowfish Lactophrys_quadricornis,trunkfish having hornlike spines over the eyes
+32615,cowgirl,a woman cowboy
+32616,cowherb cow_cockle Vaccaria_hispanica Vaccaria_pyramidata Saponaria_vaccaria,European annual with pale rose-colored flowers; cultivated flower or self-sown grainfield weed; introduced in North America; sometimes classified as a soapwort
+32617,cowhide,the hide of a cow
+32618,cowhide,a heavy flexible whip braided from leather made from the hide of a cow
+32619,cowhide cowskin,leather made from the hide of a cow
+32620,cowl,a loose hood or hooded robe (as worn by a monk)
+32621,cowlick,a tuft of hair that grows in a different direction from the rest of the hair and usually will not lie flat
+32622,cownose_ray cow-nosed_ray Rhinoptera_bonasus,large ray found along eastern coast of North America
+32623,cowpea black-eyed_pea,fruit or seed of the cowpea plant
+32624,cowpea cowpea_plant black-eyed_pea Vigna_unguiculata Vigna_sinensis,sprawling Old World annual cultivated especially in southern United States for food and forage and green manure
+32625,cowpen_daisy golden_crownbeard golden_crown_beard butter_daisy Verbesina_encelioides Ximenesia_encelioides,coarse greyish-green annual yellow-flowered herb; southwestern United States to Mexico
+32626,cowpox vaccinia,a viral disease of cattle causing a mild skin disease affecting the udder; formerly used to inoculate humans against smallpox
+32627,cowrie cowry,any of numerous tropical marine gastropods of the genus Cypraea having highly polished usually brightly marked shells
+32628,cows'_milk,milk obtained from dairy cows
+32629,cowslip paigle Primula_veris,early spring flower common in British isles having fragrant yellow or sometimes purple flowers
+32630,coxcomb cockscomb,a conceited dandy who is overly impressed by his own accomplishments
+32631,coxsackievirus Coxsackie_virus,enterovirus causing a disease resembling poliomyelitis but without paralysis
+32632,coxswain cox,the helmsman of a ship's boat or a racing crew
+32633,coydog,offspring of a coyote and a dog
+32634,coyness demureness,the affectation of being demure in a provocative way
+32635,coyol coyol_palm Acrocomia_vinifera,tropical American palm having edible nuts and yielding a useful fiber
+32636,coyote,someone who smuggles illegal immigrants into the United States (usually across the Mexican border)
+32637,coyote,a forest fire fighter who is sent to battle remote and severe forest fires (often for days at a time)
+32638,coyote prairie_wolf brush_wolf Canis_latrans,small wolf native to western North America
+32639,coyote_brush coyote_bush chaparral_broom kidney_wort Baccharis_pilularis,widely spreading evergreen shrub of southwestern United States with flower heads in a leafy panicle
+32640,coypu nutria Myocastor_coypus,aquatic South American rodent resembling a small beaver; bred for its fur
+32641,coziness cosiness snugness,a state of warm snug comfort
+32642,crab,decapod having eyes on short stalks and a broad flattened carapace with a small abdomen folded under the thorax and pincers
+32643,crab,a stroke of the oar that either misses the water or digs too deeply; "he caught a crab and lost the race"
+32644,crab crabby_person,a quarrelsome grouch
+32645,crab crabmeat,the edible flesh of any of various crabs
+32646,crab-eating_dog crab-eating_fox Dusicyon_cancrivorus,wild dog of northern South America
+32647,crab-eating_macaque croo_monkey Macaca_irus,monkey of southeast Asia, Borneo and the Philippines
+32648,crab-eating_opossum,South American opossum
+32649,crab-eating_raccoon Procyon_cancrivorus,a South American raccoon
+32650,crab_Louis,lettuce and crabmeat dressed with sauce Louis
+32651,crab_apple crabapple,small sour apple; suitable for preserving; "crabapples make a tangy jelly"
+32652,crab_apple crabapple cultivated_crab_apple,any of numerous varieties of crab apples cultivated for their small acidic (usually bright red) fruit used for preserves or as ornamentals for their blossoms
+32653,crab_cactus Thanksgiving_cactus Zygocactus_truncatus Schlumbergera_truncatus,South American jointed cactus with usually red flowers; often cultivated as a houseplant; sometimes classified as genus Schlumbergera
+32654,crab_cocktail,a cocktail of cold cooked crabmeat and a sauce
+32655,crab_legs,legs of especially Alaska king crabs
+32656,crab_louse pubic_louse crab Phthirius_pubis,a louse that infests the pubic region of the human body
+32657,crabapple_jelly,a tart apple jelly made from crab apples
+32658,crabbiness crabbedness crossness,a disposition to be ill-tempered
+32659,crabeater_seal crab-eating_seal,silvery grey Antarctic seal subsisting on crustaceans
+32660,crabgrass crab_grass finger_grass,grasses with creeping stems that root freely; a pest in lawns
+32661,crack,a blemish resulting from a break without complete separation of the parts; "there was a crack in the mirror"
+32662,crack cleft crevice fissure scissure,a long narrow opening
+32663,crack crack_cocaine tornado,a purified and potent form of cocaine that is smoked rather than snorted; highly addictive
+32664,crack cracking snap,a sudden sharp noise; "the crack of a whip"; "he heard the cracking of the ice"; "he can hear the snap of a twig"
+32665,crack fling go pass whirl offer,a usually brief attempt; "he took a crack at it"; "I gave it a whirl"
+32666,crack_addict binger,someone addicted to crack cocaine
+32667,crack_willow brittle_willow snap_willow Salix_fragilis,large willow tree with stiff branches that are easily broken
+32668,crackdown,severely repressive actions
+32669,cracked-wheat_bread,bread made with cracked wheat that has been ground fine
+32670,cracked_wheat,grains of wheat that have been crushed into small pieces
+32671,cracker,a programmer who cracks (gains unauthorized access to) computers, typically to do malicious things; "crackers are often mistakenly called hackers"
+32672,cracker,a thin crisp wafer made of flour and water with or without leavening and shortening; unsweetened or semisweet
+32673,cracker snapper cracker_bonbon,a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends
+32674,cracker_crumbs,crumbs of crackers used especially for coating or thickening
+32675,cracking,the process whereby heavy molecules of naphtha or petroleum are broken down into hydrocarbons of lower molecular weight (especially in the oil-refining process)
+32676,crackle crackleware crackle_china,glazed china with a network of fine cracks on the surface
+32677,crackle crackling crepitation,the sharp sound of snapping noises
+32678,cracklings,the crisp residue left after lard has been rendered
+32679,crackpot crank nut nut_case fruitcake screwball,a whimsically eccentric person
+32680,cradle,birth of a person; "he was taught from the cradle never to cry"
+32681,cradle,a baby bed with sides and rockers
+32682,cradle_cap,a dermatitis of the scalp that is common in infants
+32683,craft,a vehicle designed for navigation in or on water or air or through outer space
+32684,craft craftiness cunning foxiness guile slyness wiliness,shrewdness as demonstrated by being skilled in deception
+32685,craft craftsmanship workmanship,skill in an occupation or trade
+32686,craft trade,people who perform a particular kind of skilled work; "he represented the craft of brewers"; "as they say in the trade"
+32687,craft_fair,a fair at which objects made by craftsmen are offered for sale
+32688,craft_union,a labor union whose membership is restricted to workers in a particular craft
+32689,craftiness deceitfulness guile,the quality of being crafty
+32690,craftsman,a professional whose work is consistently of high quality; "as an actor he was a consummate craftsman"
+32691,craftsman artisan journeyman artificer,a skilled worker who practices some trade or handicraft
+32692,craftsman crafter,a creator of great skill in the manual arts; "the jewelry was made by internationally famous craftsmen"
+32693,crag,a steep rugged rock or cliff
+32694,crake,any of several short-billed Old World rails
+32695,crammer,a student who crams
+32696,crammer,a teacher who is paid to cram students for examinations
+32697,crammer,a special school where students are crammed
+32698,crammer,a textbook designed for cramming
+32699,cramp,a clamp for holding pieces of wood together while they are glued
+32700,cramp cramp_iron,a strip of metal with ends bent at right angles; used to hold masonry together
+32701,crampon crampoon,a hinged pair of curved iron bars; used to raise heavy objects
+32702,crampon crampoon climbing_iron climber,an iron spike attached to the shoe to prevent slipping on ice when walking or climbing
+32703,cran,a capacity unit used for measuring fresh herring
+32704,cranberry,any of numerous shrubs of genus Vaccinium bearing cranberries
+32705,cranberry,very tart red berry used for sauce or juice
+32706,cranberry_bush cranberry_tree American_cranberry_bush highbush_cranberry Viburnum_trilobum,deciduous North American shrub or small tree having three-lobed leaves and red berries
+32707,cranberry_culture,the cultivation of cranberries
+32708,cranberry_juice,the juice of cranberries (always diluted and sweetened)
+32709,cranberry_sauce,sauce made of cranberries and sugar
+32710,crane,lifts and moves heavy objects; lifting tackle is suspended from a pivoted boom that rotates around a vertical axis
+32711,crane,large long-necked wading bird of marshes and plains in many parts of the world
+32712,crane_fly daddy_longlegs,long-legged slender flies that resemble large mosquitoes but do not bite
+32713,cranesbill crane's_bill,any of numerous geraniums of the genus Geranium
+32714,cranial_cavity intracranial_cavity,the cavity enclosed by the cranium
+32715,cranial_nerve,any of the 12 paired nerves that originate in the brain stem
+32716,craniology,the scientific study of the skulls of various human races
+32717,craniometer,an instrument for measuring skull sizes
+32718,craniometric_point,a landmark on the skull from which craniometric measurements can be taken
+32719,craniometry,the branch of physical anthropology dealing with the study and measurement of dry skulls after removal of its soft parts
+32720,craniotomy,a surgical opening through the skull
+32721,cranium braincase brainpan,the part of the skull that encloses the brain
+32722,crank starter,a hand tool consisting of a rotating shaft with parallel handle
+32723,crank_call,a hostile telephone call (from a crank)
+32724,crank_handle starting_handle,crank used to start an engine
+32725,crank_letter,a hostile (usually anonymous) letter
+32726,crankcase,housing for a crankshaft
+32727,crankiness crotchetiness contrariness grumpiness,a fussy and eccentric disposition
+32728,crankshaft,a rotating shaft driven by (or driving) a crank
+32729,cranny,a small opening or crevice (especially in a rock face or wall)
+32730,crap dirt shit shite poop turd,obscene terms for feces
+32731,crap_shooting crapshoot crap_game,playing craps
+32732,crapaud South_American_bullfrog Leptodactylus_pentadactylus,large toothed frog of South America and Central America resembling the bullfrog
+32733,crape crepe French_pancake,small very thin pancake
+32734,crape_fern Prince-of-Wales_fern Prince-of-Wales_feather Prince-of-Wales_plume Leptopteris_superba Todea_superba,New Zealand with pinnate fronds and a densely woolly stalks; sometimes included in genus Todea
+32735,crape_jasmine crepe_jasmine crepe_gardenia pinwheel_flower East_Indian_rosebay Adam's_apple Nero's_crown coffee_rose Tabernaemontana_divaricate,tropical shrub having glossy foliage and fragrant nocturnal flowers with crimped or wavy corollas; northern India to Thailand
+32736,crape_myrtle crepe_myrtle crepe_flower Lagerstroemia_indica,ornamental shrub from eastern India commonly planted in the southern United States
+32737,crappie,small sunfishes of the genus Pomoxis of central United States rivers
+32738,crappie,small sunfishes of central United States rivers
+32739,craps,a gambling game played with two dice; a first throw of 7 or 11 wins and a first throw of 2, 3, or 12 loses and a first throw of any other number must be repeated to win before a 7 is thrown, which loses the bet and the dice
+32740,craps snake_eyes,expressions used when when two dice are thrown and both come up showing one spot
+32741,crapshoot,a risky and uncertain venture; "getting admitted to the college of your choice has become a crapshoot"
+32742,crapshooter,a gambler who plays the game of craps
+32743,crash,(computer science) an event that causes a computer system to become inoperative; "the crash occurred during a thunderstorm and the system has been down ever since"
+32744,crash collapse,a sudden large decline of business or the prices of stocks (especially one that causes additional failures)
+32745,crash smash,the act of colliding with something; "his crash through the window"; "the fullback's smash into the defensive line"
+32746,crash wreck,a serious accident (usually involving one or more vehicles); "they are still investigating the crash of the TWA plane"
+32747,crash_barrier,a strong protective barrier that is erected around a racetrack or in the middle of a dual-lane highway in order to reduce the likelihood of severe accidents
+32748,crash_course crash_program crash_programme,a rapid and intense course of training or research (usually undertaken in an emergency); "he took a crash course in Italian on his way to Italy"; "his first job was a crash course in survival and in learning how to get along with people"; "a crash programme is needed to create new jobs"
+32749,crash_dive,a rapid descent by a submarine
+32750,crash_helmet,a padded helmet worn by people riding bicycles or motorcycles; protects the head in case of accidents
+32751,crash_landing,an emergency landing under circumstances where a normal landing is impossible (usually damaging the aircraft)
+32752,crassness crassitude,the quality of being crass--devoid of refinement
+32753,crate,a rugged box (usually made of wood); used for shipping
+32754,crate crateful,the quantity contained in a crate
+32755,crater,a bowl-shaped depression formed by the impact of a meteorite or bomb
+32756,craton,the part of a continent that is stable and forms the central mass of the continent; typically Precambrian
+32757,cravat,neckwear worn in a slipknot with long ends overlapping vertically in front
+32758,cravenness,meanspirited cowardice
+32759,craving,an intense desire for some particular thing
+32760,craw crop,a pouch in many birds and some lower animals that resembles a stomach for storage and preliminary maceration of food
+32761,crawl,a very slow movement; "the traffic advanced at a crawl"
+32762,crawl crawling creep creeping,a slow mode of locomotion on hands and knees or dragging the body; "a crawl was all that the injured man could manage"; "the traffic moved at a creep"
+32763,crawl front_crawl Australian_crawl,a swimming stroke; arms are moved alternately overhead accompanied by a flutter kick
+32764,crawler creeper,a person who crawls or creeps along the ground
+32765,crawlspace crawl_space,low space beneath a floor of a building; gives workers access to wiring or plumbing
+32766,crayfish crawfish crawdad crawdaddy,small freshwater decapod crustacean that resembles a lobster
+32767,crayfish crawfish crawdad ecrevisse,tiny lobster-like crustaceans usually boiled briefly
+32768,crayon wax_crayon,writing implement consisting of a colored stick of composition wax used for writing and drawing
+32769,craze,a fine crack in a glaze or other surface
+32770,craze delirium frenzy fury hysteria,state of violent mental agitation
+32771,craziness daftness flakiness,informal terms for insanity
+32772,crazy loony looney nutcase weirdo,someone deranged and possibly dangerous
+32773,crazy_quilt,a patchwork quilt without a design
+32774,creak creaking,a squeaking sound; "the creak of the floorboards gave him away"
+32775,cream,the part of milk containing the butterfat
+32776,cream ointment emollient,toiletry consisting of any of various substances in the form of a thick liquid that have a soothing and moisturizing effect when applied to the skin
+32777,cream pick,the best people or things in a group; "the cream of England's young men were killed in the Great War"
+32778,cream-colored_courser Cursorius_cursor,courser of desert and semidesert regions of the Old World
+32779,cream-of-tartar_tree sour_gourd Adansonia_gregorii,Australian tree having an agreeably acid fruit that resembles a gourd
+32780,cream_cheese,soft unripened cheese made of sweet milk and cream
+32781,cream_of_tartar tartar potassium_bitartrate potassium_hydrogen_tartrate,a salt used especially in baking powder
+32782,cream_pitcher creamer,a small pitcher for serving cream
+32783,cream_puff chou,puff filled with cream or custard
+32784,cream_sauce,white sauce made with cream
+32785,cream_soda,sweet carbonated drink flavored with vanilla
+32786,creamcups Platystemon_californicus,California plant with small pale yellow flowers
+32787,creamery,a workplace where dairy products (butter and cheese etc.) are produced or sold
+32788,creaminess soupiness,the property of having the thickness of heavy cream
+32789,creatine creatin,an amino acid that does not occur in proteins but is found in the muscle tissue of vertebrates both in the free form and as phosphocreatine; supplies energy for muscle contraction
+32790,creating_by_mental_acts,the act of creating something by thinking
+32791,creating_by_removal,the act of creating by removing something
+32792,creating_from_raw_materials,the act of creating something that is different from the materials that went into it
+32793,creation,an artifact that has been brought into existence by someone
+32794,creation conception,the event that occurred at the beginning of something; "from its creation the plan was doomed to failure"
+32795,creation creative_activity,the human act of creating
+32796,creation_science,an effort to give scientific support for the truth of the account of Creation given in the Book of Genesis
+32797,creationism,the literal belief in the account of Creation given in the Book of Genesis; "creationism denies the theory of evolution of species"
+32798,creativity creativeness creative_thinking,the ability to create
+32799,creator,a person who grows or makes or invents things
+32800,creature tool puppet,a person who is controlled by others and is used to perform unpleasant or dishonest tasks for someone else
+32801,creature wight,a human being; `wight' is an archaic term
+32802,creche,a representation of Christ's nativity in the stable at Bethlehem
+32803,creche foundling_hospital,a hospital where foundlings (infant children of unknown parents) are taken in and cared for
+32804,credence acceptance,the mental attitude that something is believable and should be accepted as true; "he gave credence to the gossip"; "acceptance of Newtonian mechanics was unquestioned for 200 years"
+32805,credenza credence,a kind of sideboard or buffet
+32806,credibility credibleness believability,the quality of being believable or trustworthy
+32807,credit,money available for a client to borrow
+32808,credit,an entry on a list of persons who contributed to a film or written work; "the credits were given at the end of the film"
+32809,credit,used in the phrase `to your credit' in order to indicate an achievement deserving praise; "she already had several performances to her credit"
+32810,credit course_credit,recognition by a college or university that a course of studies has been successfully completed; typically measured in semester hours
+32811,credit credit_entry,an accounting entry acknowledging income or capital items
+32812,credit deferred_payment,arrangement for deferred payment for goods and services
+32813,credit_account charge_account open_account,credit extended by a business to a customer
+32814,credit_analyst,an analyst who studies the financial statements and financial history of applicants for credit in order to evaluate their creditworthiness
+32815,credit_application,an application for a line of credit
+32816,credit_bureau,a private firm that maintains consumer credit data files and provides credit information to authorized users for a fee
+32817,credit_card charge_card charge_plate plastic,a card (usually plastic) that assures a seller that the person using it has a satisfactory credit rating and that the issuer will see to it that the seller receives payment for the merchandise delivered; "do you take plastic?"
+32818,credit_crunch liquidity_crisis squeeze,a state in which there is a short supply of cash to lend to businesses and consumers and interest rates are high
+32819,credit_line line_of_credit bank_line line personal_credit_line personal_line_of_credit,the maximum credit that a customer is allowed
+32820,credit_order bill-me_order,an order that is received without payment; requires billing at a later date
+32821,credit_rating credit,an estimate, based on previous dealings, of a person's or an organization's ability to fulfill their financial commitments
+32822,credit_side,account of payments received; usually the right side of a financial statement
+32823,credit_system,a system for allowing people to purchase things on credit
+32824,credit_union,a cooperative depository financial institution whose members can obtain loans from their combined savings
+32825,creditor,a person to whom money is owed by a debtor; someone to whom an obligation exists
+32826,credits,a list of acknowledgements of those who contributed to the creation of a film (usually run at the end of the film)
+32827,creditworthiness,trustworthiness with money as based on a person's credit history; a general qualification for borrowing
+32828,credulity,tendency to believe readily
+32829,credulousness gullibility,tendency to believe too readily and therefore to be easily deceived
+32830,creed credo,any system of principles or beliefs
+32831,creel,a wicker basket used by anglers to hold fish
+32832,creep,a slow longitudinal movement or deformation
+32833,creep,a pen that is fenced so that young animals can enter but adults cannot
+32834,creep weirdo weirdie weirdy spook,someone unpleasantly strange or eccentric
+32835,creep_feed,feed given to young animals isolated in a creep
+32836,creeper,any plant (as ivy or periwinkle) that grows by creeping
+32837,creeper tree_creeper,any of various small insectivorous birds of the northern hemisphere that climb up a tree trunk supporting themselves on stiff tail feathers and their feet
+32838,creepiness,an uneasy sensation as of insects creeping on your skin
+32839,creeping_St_John's_wort Hypericum_calycinum,creeping evergreen shrub with bright yellow star-shaped summer flowers; useful as ground cover
+32840,creeping_bellflower Campanula_rapunculoides,erect European herb with creeping rootstocks and nodding spikelike racemes of blue to violet flowers
+32841,creeping_bent creeping_bentgrass Agrostis_palustris,common pasture or lawn grass spread by long runners
+32842,creeping_bugle Ajuga_reptans,low rhizomatous European carpeting plant having spikes of blue flowers; naturalized in parts of United States
+32843,creeping_buttercup creeping_crowfoot Ranunculus_repens,perennial European herb with long creeping stolons
+32844,creeping_fern Hartford_fern Lygodium_palmatum,delicate fern of the eastern United States having a twining stem and palmately-lobed sterile fronds and forked fertile fronds
+32845,creeping_juniper Juniperus_horizontalis,low to prostrate shrub of Canada and northern United States; bronzed purple in winter
+32846,creeping_oxalis creeping_wood_sorrel Oxalis_corniculata,creeping much-branched mat-forming weed; cosmopolitan
+32847,creeping_snowberry moxie_plum maidenhair_berry Gaultheria_hispidula,slow-growing procumbent evergreen shrublet of northern North America and Japan having white flowers and numerous white fleshy rough and hairy seeds
+32848,creeping_soft_grass Holcus_mollis,European perennial grass with soft velvety foliage
+32849,creeping_spike_rush Eleocharis_palustris,cylindrical-stemmed sedge
+32850,creeping_willow Salix_repens,small trailing bush of Europe and Asia having straggling branches with silky green leaves of which several varieties are cultivated
+32851,creeping_zinnia Sanvitalia_procumbens,low-branching leafy annual with flower heads resembling zinnias; found in southwestern United States and Mexico to Guatemala
+32852,creeps,a disease of cattle and sheep attributed to a dietary deficiency; characterized by anemia and softening of the bones and a slow stiff gait
+32853,creeps,a feeling of fear and revulsion; "he gives me the creeps"
+32854,creepy-crawlies,feelings of dislike and anxiety; "the cave gave me the creepy-crawlies"
+32855,creepy-crawly,an animal that creeps or crawls (such as worms or spiders or insects)
+32856,cremains,the remains of a dead body after cremation
+32857,cremation,the incineration of a dead body
+32858,crematory crematorium,a mortuary where corpses are cremated
+32859,crematory crematorium cremation_chamber,a furnace where a corpse can be burned and reduced to ashes
+32860,creme_anglais,custard sauce flavored with vanilla or a liqueur
+32861,creme_brulee,custard sprinkled with sugar and broiled
+32862,creme_caramel,baked custard topped with caramel
+32863,creme_de_cacao,sweet liqueur flavored with vanilla and cacao beans
+32864,creme_de_fraise,strawberry-flavored liqueur
+32865,creme_de_menthe,sweet green or white mint-flavored liqueur
+32866,crenate_leaf,a leaf having a scalloped margin
+32867,crenel crenelle,a notch or open space between two merlons in a crenelated battlement
+32868,crenelation crenellation,the action of constructing ramparts with gaps for firing guns or arrows
+32869,creole,a mother tongue that originates from contact between two languages
+32870,creole-fish Paranthias_furcifer,deep-sea fish of tropical Atlantic
+32871,creosol,a colorless to yellow aromatic liquid that is a constituent of creosote
+32872,creosote,a colorless or yellowish oily liquid obtained by distillation of wood tar; used as an antiseptic
+32873,creosote coal-tar_creosote,a dark oily liquid obtained by distillation of coal tar; used as a preservative for wood
+32874,creosote_bush coville hediondilla Larrea_tridentata,desert shrub of southwestern United States and New Mexico having persistent resinous aromatic foliage and small yellow flowers
+32875,crepe crape,a soft thin light fabric with a crinkled surface
+32876,crepe crepe_paper,paper with a crinkled texture; usually colored and used for decorations
+32877,crepe_Suzette,crepes flamed in a sweet orange-and-lemon flavored liqueur sauce
+32878,crepe_de_Chine,a very thin crepe of silk or silklike fabric
+32879,crepe_fern king_fern Todea_barbara,fern of rain forests of tropical Australia and New Zealand and South Africa
+32880,crepe_rubber,crude natural rubber; used mainly for shoe soles
+32881,crepitation_rale,the crackling sound heard on auscultation when patients with respiratory diseases inhale; associated with tuberculosis and pneumonia and congestive heart failure
+32882,crescendo,(music) a gradual increase in loudness
+32883,crescent,any shape resembling the curved shape of the moon in its first or last quarters
+32884,crescent_roll croissant,very rich flaky crescent-shaped roll
+32885,crescent_wrench,an adjustable wrench designed to fit hexagonal nuts with the adjusting screw built into the head of the wrench
+32886,cresol methyl_phenol,any of three poisonous colorless isomeric phenols; derived from coal or wood tar; used as a disinfectant
+32887,cress,pungent leaves of any of numerous cruciferous herbs
+32888,cress cress_plant,any of various plants of the family Cruciferae with edible leaves that have a pungent taste
+32889,crest,the top line of a hill, mountain, or wave
+32890,crest,(heraldry) in medieval times, an emblem used to decorate a helmet
+32891,crest,a showy growth of e.g. feathers or skin on the head of a bird or other animal
+32892,crested_cariama seriema Cariama_cristata,Brazilian Cariama; sole representative of the genus Cariama
+32893,crested_coral_root Hexalectris_spicata,orchid with yellowish-brown flowers with dark veins; southeastern Arizona to the eastern United States
+32894,crested_myna Acridotheres_tristis,dark brown crested bird of southeastern Asia
+32895,crested_screamer,distinguished from the horned screamer by a feathery crest on the back of the head
+32896,crested_wheatgrass crested_wheat_grass fairway_crested_wheat_grass Agropyron_cristatum,Eurasian grass grown in United States great plains area for forage and erosion control
+32897,cretinism,severe hypothyroidism resulting in physical and mental stunting
+32898,cretonne,an unglazed heavy fabric; brightly printed; used for slipcovers and draperies
+32899,crevalle_jack jack_crevalle Caranx_hippos,fish of western Atlantic and Gulf of Mexico
+32900,crevasse,a deep fissure
+32901,crevice cranny crack fissure chap,a long narrow depression in a surface
+32902,crew,the team of men manning a racing shell
+32903,crew,the men and women who man a vehicle (ship, aircraft, etc.)
+32904,crew_cut butch flattop,a closely cropped haircut; usually for men or boys
+32905,crew_neck crew_neckline,a plain straight neckline opening from shoulder to shoulder of sweaters
+32906,crewelwork,embroidery done with loosely twisted worsted yarn
+32907,crewman,a member of a work crew
+32908,crewman crew_member,a member of a flight crew
+32909,crib,a bin or granary for storing grains
+32910,crib,the cards discarded by players at cribbage
+32911,crib cot,baby bed with high sides made of slats
+32912,cribbage crib,a card game (usually for two players) in which each player is dealt six cards and discards one or two
+32913,cribbage_board,a board with pegs and regularly spaced holes for holding the pegs; used for keeping the score in a game of cribbage
+32914,crick kink rick wrick,a painful muscle spasm especially in the neck or back (`rick' and `wrick' are British)
+32915,cricket,leaping insect; male makes chirping noises by rubbing the forewings together
+32916,cricket,a game played with a ball and bat by two teams of 11 players; teams take turns trying to score runs
+32917,cricket-bat_willow Salix_alba_caerulea,Eurasian willow tree having greyish leaves and ascending branches
+32918,cricket_ball,the ball used in playing cricket
+32919,cricket_bat bat,the club used in playing cricket; "a cricket bat has a narrow handle and a broad flat end for hitting"
+32920,cricket_equipment,sports equipment used in playing cricket
+32921,cricket_frog,either of two frogs with a clicking call
+32922,cricket_match,a match between two cricket teams
+32923,cricketer,an athlete who plays cricket
+32924,crier,a peddler who shouts to advertise the goods he sells
+32925,crime,an evil act not necessarily punishable by law; "crimes of the heart"
+32926,crime criminal_offense criminal_offence law-breaking,(criminal law) an act punishable by law; usually considered an evil act; "a long record of crimes"
+32927,crime_rate,the ratio of crimes in an area to the population of that area; expressed per 1000 population per year
+32928,crime_wave,a sudden rise in the crime rate
+32929,criminal felon crook outlaw malefactor,someone who has committed a crime or has been legally convicted of a crime
+32930,criminal_contempt,an act of disrespect that impedes the administration of justice
+32931,criminal_court,a court having jurisdiction over criminal cases
+32932,criminal_law,the body of law dealing with crimes and their punishment
+32933,criminal_negligence culpable_negligence,(law) recklessly acting without reasonable caution and putting another person at risk of injury or death (or failing to do something with the same consequences)
+32934,criminal_possession,(law) possession for which criminal sanctions are provided because the property may not lawfully be possessed or may not be possessed under certain circumstances
+32935,criminal_record record,a list of crimes for which an accused person has been previously convicted; "he ruled that the criminal record of the defendant could not be disclosed to the court"; "the prostitute had a record a mile long"
+32936,criminal_suit,a lawsuit alleging violations of criminal law by the defendant
+32937,criminalism criminality criminalness,the state of being a criminal
+32938,criminalization criminalisation,legislation that makes something illegal; "the criminalization of marijuana"
+32939,criminologist,a specialist in criminology
+32940,criminology,the scientific study of crime and criminal behavior and law enforcement
+32941,crimp,a lock of hair that has been artificially waved or curled
+32942,crimp crimper,someone who tricks or coerces men into service as sailors or soldiers
+32943,crimson ruby deep_red,a deep and vivid red color
+32944,crimson_clover Italian_clover Trifolium_incarnatum,southern European annual with spiky heads of crimson flower; extensively cultivated in United States for forage
+32945,cringle eyelet loop grommet grummet,fastener consisting of a metal ring for lining a small hole to permit the attachment of cords or lines
+32946,crinkleroot crinkle-root crinkle_root pepper_root toothwort Cardamine_diphylla Dentaria_diphylla,North American herb with pungent scaly or toothed roots
+32947,crinoid,primitive echinoderms having five or more feathery arms radiating from a central disk
+32948,crinoline,a full stiff petticoat made of crinoline fabric
+32949,crinoline,a stiff coarse fabric used to stiffen hats or clothing
+32950,criollo,a Spanish American of pure European stock (usually Spanish); "Mexico is a country of mestizos, criollos, and indigenes"
+32951,criollo,cocoa of superior quality
+32952,cripple,someone who is unable to walk normally because of an injury or disability to the legs or back
+32953,crisis,an unstable situation of extreme danger or difficulty; "they went bankrupt during the economic crisis"
+32954,crisis,a crucial stage or turning point in the course of something; "after the crisis the patient either dies or gets better"
+32955,crisis_intervention,psychotherapy that focuses on acute critical situations (depressive episodes or attempted suicides or drug overdoses) with the aim of restoring the person to the level of functioning before the crisis
+32956,crisphead_lettuce iceberg_lettuce iceberg,lettuce with crisp tightly packed light-green leaves in a firm head; "iceberg is still the most popular lettuce"
+32957,crispness,an expressive style that is direct and to the point; "the crispness of his reply"
+32958,crispness,a pleasing firmness and freshness; "crispness of new dollar bills"; "crispness of fresh lettuce"
+32959,crisscross cross mark,a marking that consists of lines that cross each other
+32960,cristobalite,a white mineral consisting of silica; found in volcanic rocks
+32961,criterion standard,the ideal in terms of which something can be judged; "they live by the standards of their community"
+32962,criterium crit,a bicycle race held on a short course (usually less than 5 km or 3 miles)
+32963,crith,the weight of a liter of hydrogen (at 0 centigrade and 760 millimeters pressure)
+32964,critic,a person who is professionally engaged in the analysis and interpretation of works of art
+32965,critic,anyone who expresses a reasoned judgment of something
+32966,critic,someone who frequently finds fault or makes harsh and unfair judgments
+32967,critical_angle,the smallest angle of incidence for which light is totally reflected
+32968,critical_appraisal critical_analysis,an appraisal based on careful analytical evaluation
+32969,critical_mass,the minimum amount (of something) required to start or maintain a venture; "the battle for the computer market has now reached critical mass"; "there is now a critical mass of successful women to take the lead"; "they sold the business because it lacked critical mass"
+32970,critical_mass,the minimum mass of fissionable material that can sustain a chain reaction
+32971,criticality,a critical state; especially the point at which a nuclear reaction is self-sustaining
+32972,criticality criticalness cruciality,a state of critical urgency
+32973,criticism critique,a serious examination and judgment of something; "constructive criticism is always appreciated"
+32974,criticism literary_criticism,a written evaluation of a work of literature
+32975,criticism unfavorable_judgment,disapproval expressed by pointing out faults or shortcomings; "the senator received severe criticism from his opponent"
+32976,critter,a regional term for `creature' (especially for domestic animals)
+32977,croak croaking,a harsh hoarse utterance (as of a frog)
+32978,croaker,the lean flesh of a saltwater fish caught along Atlantic coast of southern U.S.
+32979,croaker,any of several fishes that make a croaking noise
+32980,crochet crocheting,needlework done by interlocking looped stitches with a hooked needle
+32981,crochet_needle crochet_hook,a needle with a hook on the end; used in crocheting
+32982,crochet_stitch,any one of a number of stitches made by pulling a loop of yarn through another loop with a crochet needle
+32983,crocheting,creating a garment of needlework
+32984,crock,nonsense; foolish talk; "that's a crock"
+32985,crock earthenware_jar,an earthen jar (made of baked clay)
+32986,crockery dishware,tableware (eating and serving dishes) collectively
+32987,crocket,an architectural ornament of curved foliage used at the edge of a spire or gable
+32988,crocodile,large voracious aquatic reptile having a long snout with massive jaws and sharp teeth and a body covered with bony plates; of sluggish tropical waters
+32989,crocodile_bird Pluvianus_aegyptius,African courser that feeds on insect parasites on crocodiles
+32990,crocodile_tears,a hypocritical display of sorrow; false or insincere weeping; "the secretaries wept crocodile tears over the manager's dilemma"; "politicians shed crocodile tears over the plight of the unemployed"
+32991,crocodilian_reptile crocodilian,extant archosaurian reptile
+32992,crocolite,a rare lead chromite mineral that forms bright orange crystals
+32993,crocus,any of numerous low-growing plants of the genus Crocus having slender grasslike leaves and white or yellow or purple flowers; native chiefly to the Mediterranean region but widely cultivated
+32994,croft,a small farm worked by a crofter
+32995,crofter,an owner or tenant of a small farm in Great Britain
+32996,cronyism,favoritism shown to friends and associates (as by appointing them to positions without regard for their qualifications)
+32997,crook shepherd's_crook,a long staff with one end being hook shaped
+32998,crooked-stemmed_aster,a variety of aster
+32999,crookedness,having or distinguished by crooks or curves or bends or angles
+33000,crookedness deviousness,the quality of being deceitful and underhanded
+33001,crookneck crookneck_squash summer_crookneck,yellow squash with a thin curved neck and somewhat warty skin
+33002,crooner balladeer,a singer of popular ballads
+33003,crooning,singing in a soft low tone; "her crooning soon put the child to sleep"
+33004,crooning,the act of singing popular songs in a sentimental manner
+33005,crop,a cultivated plant that is grown commercially on a large scale
+33006,crop,a collection of people or things appearing together; "the annual crop of students brings a new crop of ideas"
+33007,crop,the output of something in a season; "the latest crop of fashions is about to hit the stores"
+33008,crop,the stock or handle of a whip
+33009,crop harvest,the yield from plants in a single growing season
+33010,crop-dusting spraying,the dispersion of fungicides or insecticides or fertilizer on growing crops (often from a low-flying aircraft)
+33011,crop_failure,the failure of crops to produce a marketable surplus
+33012,croquet,a game in which players hit a wooden ball through a series of hoops; the winner is the first to traverse all the hoops and hit a peg
+33013,croquet_ball,a wooden ball used in playing croquet
+33014,croquet_equipment,sports equipment used in playing croquet
+33015,croquet_mallet,a mallet used to strike the ball in croquet
+33016,croquette,minced cooked meats (or vegetables) in thick white sauce; breaded and deep-fried
+33017,crore,the number that is represented as a one followed by 7 zeros; ten million
+33018,crosier crozier,a staff surmounted by a crook or cross carried by bishops as a symbol of pastoral office
+33019,cross,a wooden structure consisting of an upright post with a transverse piece
+33020,cross crown_of_thorns,any affliction that causes great suffering; "that is his cross to bear"; "he bears his afflictions like a crown of thorns"
+33021,cross-classification cross-division,classification according to more than one attribute at the same time; "the cross-classification of cases was done by age and sex"
+33022,cross-country_riding cross-country_jumping,riding horses across country over obstructions to demonstrate horsemanship
+33023,cross-country_skiing,the sport of skiing across the countryside (rather than downhill)
+33024,cross-examination,(law) close questioning of a hostile witness in a court of law to discredit or throw a new light on the testimony already provided in direct examination
+33025,cross-examiner cross-questioner,someone who questions a witness carefully (especially about testimony given earlier)
+33026,cross-eye crossed_eye convergent_strabismus esotropia,strabismus in which one or both eyes turn inward toward the nose
+33027,cross-fertilization cross-fertilisation,fertilization by the union of male and female gametes from different individual of the same species
+33028,cross-fertilization cross-fertilisation,interchange between different cultures or different ways of thinking that is mutually productive and beneficial; "the cross-fertilization of science and the creative arts"
+33029,cross-leaved_heath bell_heather Erica_tetralix,dwarf European shrub with rose-colored flowers
+33030,cross-link cross-linkage,a side bond that links two adjacent chains of atoms in a complex molecule
+33031,cross-pollination,fertilization by transfer of pollen from the anthers of one flower to the stigma of another
+33032,cross-pollination,stimulating influence among diverse elements; "the cross-pollination of the arts"
+33033,cross-purpose,a contrary aim; "at cross-purposes"
+33034,cross-question,a question asked in cross-examination
+33035,cross-reference cross-index,a reference at one place in a work to information at another place in the same work
+33036,cross-stitch,two stitches forming a cross or X
+33037,cross-stitch,embroidery done with pairs of stitches that cross each other
+33038,cross_bit,a rock drill having cruciform cutting edges; used in mining
+33039,cross_bun hot_cross_bun,moderately sweet raised roll containing spices and raisins and citron and decorated with a cross-shaped sugar glaze
+33040,cross_country,a long race run over open country
+33041,cross_hair cross_wire,either of two fine mutually perpendicular lines that cross in the focus plane of an optical instrument and are use for sighting or calibration; "he had the target in his cross hairs"
+33042,cross_section,a section created by a plane cutting a solid perpendicular to its longest axis
+33043,cross_section,a sample meant to be representative of a whole population
+33044,cross_section,(physics) the probability that a particular interaction (as capture or ionization) will take place between particles; measured in barns
+33045,cross_street,a street intersecting a main street (usually at right angles) and continuing on both sides of it
+33046,cross_vine trumpet_flower quartervine quarter-vine Bignonia_capreolata,woody flowering vine of southern United States; stems show a cross in transverse section
+33047,crossbar,a horizontal bar that goes across something
+33048,crossbar,game equipment consisting of a horizontal bar to be jumped or vaulted over
+33049,crossbar,long thin horizontal crosspiece between two vertical posts
+33050,crossbench,any of the seats in the House of Commons used by members who do not vote regularly with either the government or the Opposition
+33051,crossbencher,a member of the House of Commons who does not vote regularly with either the government or the Opposition
+33052,crossbill Loxia_curvirostra,finch with a bill whose tips cross when closed
+33053,crossbones,two crossed bones (or a representation of two crossed bones) used as a symbol danger or death
+33054,crossbow,a bow fixed transversely on a wooden stock grooved to direct the arrow (quarrel)
+33055,crosscheck,an instance of confirming something by considering information from several sources
+33056,crosscheck,an illegal check (chopping at an opponent's arms or stick)
+33057,crosscut,a diagonal path
+33058,crosscut_saw crosscut_handsaw cutoff_saw,handsaw that cuts at right angles to the grain (or major axis)
+33059,crosse,a long racket with a triangular frame; used in playing lacrosse
+33060,crossfire,a lively or heated interchange of ideas and opinions
+33061,crossfire,fire from two or more points so that the lines of fire cross
+33062,crosshairs,a center of interest; "the war on terrorism has put Saddam Hussein in the crosshairs"
+33063,crosshead,metal block that connects to a piston; it slides on parallel guides and moves a connecting rod back and forth
+33064,crossheading crosshead,a heading of a subsection printed within the body of the text
+33065,crossing,a point where two lines (paths or arcs etc.) intersect
+33066,crossing,a voyage across a body of water (usually across the Atlantic Ocean)
+33067,crossing,traveling across
+33068,crossing crosswalk crossover,a path (often marked) where something (as a street or railroad) can be crossed to get from one side to the other
+33069,crossing_guard,someone who helps people (especially children) at a traffic crossing
+33070,crossing_over crossover,the interchange of sections between pairing homologous chromosomes during the prophase of meiosis
+33071,crossjack mizzen_course,the lowermost sail on a mizzenmast
+33072,crossopterygian lobefin lobe-finned_fish,any fish of the order Crossopterygii; most known only in fossil form
+33073,crossover,the appropriation of a new style (especially in popular music) by combining elements of different genres in order to appeal to a wider audience; "a jazz-classical crossover album"
+33074,crossover_voter crossover,a voter who is registered as a member of one political party but who votes in the primary of another party
+33075,crosspiece,a transverse brace
+33076,crossroads,a point where a choice must be made; "Freud's work stands at the crossroads between psychology and neurology"
+33077,crosstalk XT,the presence of an unwanted signal via an accidental coupling
+33078,crosswind,wind blowing across the path of a ship or aircraft
+33079,crossword_puzzle crossword,a puzzle in which words corresponding to numbered clues are to be found and written in to squares in the puzzle
+33080,crotalaria rattlebox,any of various plants of the genus Crotalaria having inflated pods within which the seeds rattle; used for pasture and green-manure crops
+33081,crotaphion,the tip of the greater wing of the sphenoid bone
+33082,crotch fork,the angle formed by the inner sides of the legs where they join the human trunk
+33083,crotchet,a small tool or hooklike implement
+33084,croton Codiaeum_variegatum,grown in many varieties for their brightly colored foliage; widely cultivated as a houseplant
+33085,croton Croton_tiglium,tropical Asiatic shrub; source of croton oil
+33086,croton_oil,viscid acrid brownish-yellow oil from the seeds of Croton tiglium having a violent cathartic action
+33087,crottle crottal crotal,any of several lichens of the genus Parmelia from which reddish brown or purple dyes are made
+33088,crouch,the act of bending low with the limbs close to the body
+33089,croup spasmodic_laryngitis,a disease of infants and young children; harsh coughing and hoarseness and fever and difficult breathing
+33090,croupier,someone who collects and pays bets at a gaming table
+33091,croupier's_rake,a small rake used by a croupier to move chips around on the table
+33092,crouton,a small piece of toasted or fried bread; served in soup or salads
+33093,crow,the cry of a cock (or an imitation of it)
+33094,crow,black birds having a raucous call
+33095,crow's_foot crow's_feet laugh_line,a wrinkle in the skin at the outer corner of your eyes
+33096,crow's_nest,platform for a lookout at or near the top of a mast
+33097,crow_garlic false_garlic field_garlic stag's_garlic wild_garlic Allium_vineale,pungent Old World wild onion
+33098,crow_pheasant Centropus_sinensis,common coucal of India and China
+33099,crowbait crow-bait,an emaciated horse likely soon to become carrion and so attractive to crows
+33100,crowbar wrecking_bar pry pry_bar,a heavy iron lever with one end forged into a wedge
+33101,crowberry,a low evergreen shrub with small purple flowers and black berrylike fruit
+33102,crowd,a large number of things or people considered together; "a crowd of insects assembled around the flowers"
+33103,crowd crew gang bunch,an informal body of friends; "he still hangs out with the same crowd"
+33104,crowd_control,activity of controlling a crowd
+33105,crowding,a situation in which people or things are crowded together; "he didn't like the crowding on the beach"
+33106,crown,an English coin worth 5 shillings
+33107,crown,the part of a tooth above the gum that is covered with enamel
+33108,crown,a wreath or garland worn on the head to signify victory
+33109,crown,the part of a hat (the vertex) that covers the crown of the head
+33110,crown crest,the center of a cambered road
+33111,crown crownwork jacket jacket_crown cap,(dentistry) dental appliance consisting of an artificial crown for a broken or decayed tooth; "tomorrow my dentist will fit me for a crown"
+33112,crown diadem,an ornamental jeweled headdress signifying sovereignty
+33113,crown treetop,the upper branches and leaves of a tree or other plant
+33114,crown_daisy Chrysanthemum_coronarium,shrubby annual of the Mediterranean region with yellowish-white flowers
+33115,crown_fire,a forest fire that advances with great speed jumping from crown to crown ahead of the ground fire
+33116,crown_gall,a bacterial disease of plants (especially pome and stone fruits and grapes and roses) which forms excrescences on the stem near the ground
+33117,crown_glass,a glass blown into a globe which is later flattened and spun to form a disk
+33118,crown_imperial Fritillaria_imperialis,Eurasian herb with a cluster of leaves and orange-red bell-shaped flowers at the top of the stem
+33119,crown_jewel,the most desirable assets of a corporation; "their crown jewels figured prominently in the takeover attempt"
+33120,crown_jewel,a precious stone that is a valuable part of a sovereign's regalia
+33121,crown_jewels,regalia (jewelry and other paraphernalia) worn by a sovereign on state occasions
+33122,crown_lens,a lens made of optical crown glass
+33123,crown_of_thorns,a mock crown made of thorn branches that Roman soldiers placed on Jesus before the Crucifixion
+33124,crown_of_thorns Christ_thorn Christ_plant Euphorbia_milii,somewhat climbing bushy spurge of Madagascar having long woody spiny stems with few leaves and flowers with scarlet bracts
+33125,crown_prince,a male heir apparent to a throne
+33126,crown_princess,the wife of a crown prince
+33127,crown_princess,a female heir apparent to a throne
+33128,crown_saw,a saw having teeth around the edge of a hollow cylinder
+33129,crown_wart,a fungous disease of alfalfa which forms white excrescences at the base of the stem
+33130,crownbeard crown-beard crown_beard,any plant of the genus Verbesina having clustered white or yellow flower heads
+33131,crucian_carp Carassius_carassius Carassius_vulgaris,European carp closely resembling wild goldfish
+33132,crucible melting_pot,a vessel made of material that does not melt easily; used for high temperature chemical reactions
+33133,crucible_steel,steel made by the mixture of molten wrought iron, charcoal, and other substances in a crucible
+33134,crucifer cruciferous_plant,any of various plants of the family Cruciferae
+33135,cruciferous_vegetable,a vegetable of the mustard family: especially mustard greens; various cabbages; broccoli; cauliflower; brussels sprouts
+33136,crucifix,a gymnastic exercise performed on the rings when the gymnast supports himself with both arms extended horizontally
+33137,crucifix rood rood-tree,representation of the cross on which Jesus died
+33138,crucifix_fish,sea catfish of the Caribbean area
+33139,crucifixion,the act of executing by a method widespread in the ancient world; the victim's hands and feet are bound or nailed to a cross
+33140,crucifixion excruciation,the infliction of extremely painful punishment or suffering
+33141,crud,heavy wet snow that is unsuitable for skiing
+33142,crud,an ill-defined bodily ailment; "he said he had the crud and needed a doctor"
+33143,crudeness crudity gaucheness,an impolite manner that is vulgar and lacking tact or refinement; "the whole town was famous for its crudeness"
+33144,crudeness crudity primitiveness primitivism rudeness,a wild or unrefined state
+33145,crudeness roughness,an unpolished unrefined quality; "the crudeness of frontier dwellings depressed her"
+33146,crudites,raw vegetables cut into bite-sized strips and served with a dip
+33147,cruel_and_unusual_punishment,punishment prohibited by the 8th amendment to the U.S. Constitution; includes torture or degradation or punishment too severe for the crime committed
+33148,cruel_plant Araujia_sericofera,robust twining shrub having racemes of fragrant white or pink flowers with flat spreading terminal petals that trap nocturnal moths and hold them until dawn
+33149,cruelty cruelness harshness,the quality of being cruel and causing tension or annoyance
+33150,cruelty inhuman_treatment,a cruel act; a deliberate infliction of pain and suffering
+33151,cruelty mercilessness pitilessness ruthlessness,feelings of extreme heartlessness
+33152,cruet crewet,bottle that holds wine or oil or vinegar for the table
+33153,cruet-stand,a stand for cruets containing various condiments
+33154,cruise sail,an ocean trip taken for pleasure
+33155,cruise_control,control mechanism for keeping an automobile at a set speed
+33156,cruise_missile,an unmanned aircraft that is a self-contained bomb
+33157,cruise_ship cruise_liner,a passenger ship used commercially for pleasure cruises
+33158,cruiser,a large fast warship; smaller than a battleship and larger than a destroyer
+33159,cruiser police_cruiser patrol_car police_car prowl_car squad_car,a car in which policemen cruise the streets; equipped with radiotelephonic communications to headquarters
+33160,cruller twister,small friedcake formed into twisted strips and fried; richer than doughnuts
+33161,crumb,a very small quantity of something; "he gave only a crumb of information about his plans"; "there were few crumbs of comfort in the report"
+33162,crumb,small piece of e.g. bread or cake
+33163,crumb_cake,cake or coffeecake topped with a mixture of sugar and butter and flour
+33164,crumbliness friability,excessive breakableness
+33165,crumpet,a thick soft cake with a porous texture; cooked on a griddle
+33166,crunch,a critical situation that arises because of a shortage (as a shortage of time or money or resources); "an end-of-the year crunch"; "a financial crunch"
+33167,crunch,the sound of something crunching; "he heard the crunch of footsteps on the gravel path"
+33168,crupper,a strap from the back of a saddle passing under the horse's tail; prevents saddle from slipping forward
+33169,crus,the leg from the knee to foot
+33170,cruse,small jar; holds liquid (oil or water)
+33171,crush crunch compaction,the act of crushing
+33172,crush jam press,a dense crowd of people
+33173,crushed_leather crush,leather that has had its grain pattern accentuated
+33174,crusher,a device that crushes something
+33175,crust Earth's_crust,the outer layer of the Earth
+33176,crust gall impertinence impudence insolence cheekiness freshness,the trait of being rude and impertinent; inclined to take liberties
+33177,crust incrustation encrustation,a hard outer layer that covers something
+33178,crustacean,any mainly aquatic arthropod usually having a segmented body and chitinous exoskeleton
+33179,crustal_movement tectonic_movement,movement resulting from or causing deformation of the earth's crust
+33180,crustose_thallus,thin crusty lichen thallus; adheres closely to or is embedded in the surface on which it grows
+33181,crutch,a wooden or metal staff that fits under the armpit and reaches to the ground; used by disabled person while walking
+33182,crutch,anything that serves as an expedient; "he uses drugs as a psychological crutch"
+33183,crux crux_of_the_matter,the most important point
+33184,cry,the characteristic utterance of an animal; "animal cries filled the night"
+33185,cry,a fit of weeping; "had a good cry"
+33186,cry outcry call yell shout vociferation,a loud utterance; often in protest or opposition; "the speaker was interrupted by loud cries from the rear of the audience"
+33187,cry yell,a loud utterance of emotion (especially when inarticulate); "a cry of rage"; "a yell of pain"
+33188,cryesthesia cryaesthesia,hypersensitivity to cold
+33189,crying weeping tears,the process of shedding tears (usually accompanied by sobs or other inarticulate sounds); "I hate to hear the crying of a child"; "she was in tears"
+33190,cryoanesthesia cryoanaesthesia,insensibility resulting from cold
+33191,cryobiology,the branch of biology that studies the effects of low temperatures on living tissues or organs or organisms
+33192,cryocautery,an instrument for destroying tissue by freezing it
+33193,cryocautery,application of a substance that destroys tissue by freezing it
+33194,cryogen,a liquid that boils at below -160 C and is used as a refrigerant
+33195,cryogenics cryogeny,the branch of physics that studies the phenomena that occur at very low temperatures
+33196,cryolite Greenland_spar,a white mineral consisting of fluorides of aluminum and sodium; a source of fluorine
+33197,cryometer,a thermometer designed to measure low temperatures
+33198,cryonics,the freezing of a seriously ill or recently deceased person to stop tissues from decomposing; the body is preserved until new medical cures are developed that might bring the person back to life; "cryonics is more science fiction than serious science"
+33199,cryophobia,a morbid fear of freezing
+33200,cryoscope,a measuring instrument for measuring freezing and melting points
+33201,cryostat,a thermostat that operates at very low temperatures
+33202,cryosurgery,the use of extreme cold (usually liquid nitrogen) to destroy unwanted tissue (warts or cataracts or skin cancers)
+33203,crypt,a cellar or vault or underground burial chamber (especially beneath a church)
+33204,cryptanalysis cryptanalytics cryptography cryptology,the science of analyzing and deciphering codes and ciphers and cryptograms
+33205,cryptanalyst cryptographer cryptologist,decoder skilled in the analysis of codes and cryptograms
+33206,cryptic_coloration,coloring that conceals or disguises an animal's shape
+33207,cryptobiosis,a state in which an animal's metabolic activities come to a reversible standstill
+33208,cryptococcosis,a fungal infection characterized by nodular lesions--first in the lungs and spreading to the nervous system
+33209,cryptocoryne water_trumpet,any plant of the genus Cryptocoryne; evergreen perennials growing in fresh or brackish water; tropical Asia
+33210,cryptogam,formerly recognized taxonomic group including all flowerless and seedless plants that reproduce by means of spores: ferns, mosses, algae, fungi
+33211,cryptogram cryptograph secret_writing,a piece of writing in code or cipher
+33212,cryptograph,a device for deciphering codes and ciphers
+33213,cryptography coding secret_writing steganography,act of writing in code or cipher
+33214,cryptomonad cryptophyte,common in fresh and salt water appearing along the shore as algal blooms
+33215,cryptorchidy cryptorchidism cryptorchism,failure of one or both testes to move into the scrotum as the male fetus develops
+33216,crystal,a solid formed by the solidification of a chemical and having a highly regular atomic structure
+33217,crystal,a crystalline element used as a component in various electronic devices
+33218,crystal,glassware made of quartz
+33219,crystal crystallization,a rock formed by the solidification of a substance; has regularly repeating internal structure; external plane faces
+33220,crystal watch_crystal watch_glass,a protective cover that protects the face of a watch
+33221,crystal_ball,a glass or crystal globe used in crystal gazing by fortunetellers
+33222,crystal_counter,a counter tube in which an ionizing event increases conductivity
+33223,crystal_detector,a detector consisting of a fine wire in contact with a galena crystal; acts as a rectifier
+33224,crystal_gazing,staring into a crystal ball to arouse visions of future or distant events
+33225,crystal_microphone crystal_mike,a microphone in which sound waves vibrate a piezoelectric crystal that generates a varying voltage
+33226,crystal_oscillator quartz_oscillator,an oscillator that produces electrical oscillations at a frequency determined by the physical characteristics of a piezoelectric quartz crystal
+33227,crystal_pickup,a cartridge in which an output voltage is produced by the vibration of a piezoelectric crystal
+33228,crystal_set,an early radio receiver using a crystal detector
+33229,crystallite,any of numerous minute rudimentary crystalline bodies of unknown composition found in glassy igneous rock
+33230,crystallization,a mental synthesis that becomes fixed or concrete by a process resembling crystal formation
+33231,crystallization crystallisation crystallizing,the formation of crystals
+33232,crystallized_ginger,strips of gingerroot cooked in sugar syrup and coated with sugar
+33233,crystallographer,a specialist in crystallography
+33234,crystallography,the branch of science that studies the formation and structure of crystals
+33235,ctene comb-plate,a locomotor organ consisting of a row of strong cilia whose bases are fused
+33236,ctenidium,comb-like respiratory structure serving as the gill of certain mollusks
+33237,ctenophore comb_jelly,biradially symmetrical hermaphroditic solitary marine animals resembling jellyfishes having for locomotion eight rows of cilia arranged like teeth in a comb
+33238,ctenophore_family,a family of ctenophores
+33239,ctenophore_genus,a genus of ctenophores
+33240,cub greenhorn rookie,an awkward and inexperienced youth
+33241,cub lad laddie sonny sonny_boy,a male child (a familiar term of address to a boy)
+33242,cub young_carnivore,the young of certain carnivorous mammals such as the bear or wolf or lion
+33243,cubby cubbyhole snuggery snug,a small secluded room
+33244,cubbyhole pigeonhole,a small compartment
+33245,cube,any of several tropical American woody plants of the genus Lonchocarpus whose roots are used locally as a fish poison and commercially as a source of rotenone
+33246,cube regular_hexahedron,a hexahedron with six equal squares as faces
+33247,cube square_block,a block in the (approximate) shape of a cube
+33248,cube third_power,the product of three equal terms
+33249,cube_root,a number that when multiplied three times equals a given number
+33250,cubeb,spicy fruit of the cubeb vine; when dried and crushed is used medicinally or in perfumery and sometimes smoked in cigarettes
+33251,cubeb cubeb_cigarette,a cigarette containing cubeb
+33252,cubeb cubeb_vine Java_pepper Piper_cubeba,tropical southeast Asian shrubby vine bearing spicy berrylike fruits
+33253,cubic_foot cu_ft,the volume equal to a cube one foot on each side
+33254,cubic_inch cu_in,the volume equal to a cube one inch on each side
+33255,cubic_kilometer cubic_kilometre,a unit of capacity equal to the volume of a cube one kilometer on each edge
+33256,cubic_millimeter cubic_millimetre,a metric measure of volume or capacity equal to a cube 1 millimeter on each edge
+33257,cubic_yard yard,a unit of volume (as for sand or gravel)
+33258,cubicity,the property of resembling a cube
+33259,cubism,an artistic movement in France beginning in 1907 that featured surfaces of geometrical planes
+33260,cubist,an artist who adheres to the principles of cubism
+33261,cubit,an ancient unit of length based on the length of the forearm
+33262,cubitiere,body armor that protects the elbow
+33263,cubitus,the arm from the elbow to the fingertips
+33264,cuboid,a rectangular parallelepiped
+33265,cuboid_bone,the cube shaped bone on the outer side of the tarsus
+33266,cuboidal_cell cuboidal_epithelial_cell,an epithelial cell that shaped like a cube
+33267,cucking_stool ducking_stool,an instrument of punishment consisting of a chair in which offenders were ducked in water
+33268,cuckold,a man whose wife committed adultery
+33269,cuckoldom,the state of a husband whose wife has committed adultery
+33270,cuckoldry,the practice of making cuckolds; sexual conquests of married women
+33271,cuckoo,any of numerous European and North American birds having pointed wings and a long tail
+33272,cuckoo-bumblebee,a bee that is parasitic in the nests of bumblebees
+33273,cuckoo_clock,clock that announces the hours with a sound like the call of the cuckoo
+33274,cuckoopint lords-and-ladies jack-in-the-pulpit Arum_maculatum,common European arum with lanceolate spathe and short purple spadix; emerges in early spring; source of a starch called arum
+33275,cuculiform_bird,birds having zygodactyl feet (except for the touracos)
+33276,cucumber cucumber_vine Cucumis_sativus,a melon vine of the genus Cucumis; cultivated from earliest times for its cylindrical green fruit
+33277,cucumber cuke,cylindrical green fruit with thin green rind and white flesh eaten as a vegetable; related to melons
+33278,cucumber_tree Magnolia_acuminata,American deciduous magnolia having large leaves and fruit like a small cucumber
+33279,cucurbit,any plant of the family Cucurbitaceae
+33280,cud rechewed_food,food of a ruminant regurgitated to be chewed again
+33281,cuddle nestle snuggle,a close and affectionate (and often prolonged) embrace
+33282,cuddy,the galley or pantry of a small ship
+33283,cudgel,a club that is used as a weapon
+33284,cudweed,any of numerous plants of the genus Gnaphalium having flowers that can be dried without loss of form or color
+33285,cue,an actor's line that immediately precedes and serves as a reminder for some action or speech
+33286,cue cue_stick pool_cue pool_stick,sports implement consisting of a tapering rod used to strike a cue ball in pool or billiards
+33287,cue_ball,the ball that the billiard player or pool player strikes with his cue
+33288,cuff turnup,the lap consisting of a turned-back hem encircling the end of the sleeve or leg
+33289,cufflink,jewelry consisting of one of a pair of linked buttons used to fasten the cuffs of a shirt
+33290,cuirass,medieval body armor that covers the chest and back
+33291,cuirassier,a cavalryman equipped with a cuirass
+33292,cuisine culinary_art,the practice or manner of preparing food or the food so prepared
+33293,cuisse,armor plate that protects the thigh
+33294,cul cul_de_sac dead_end,a passage with access only at one end
+33295,culdoscope,a specialized endoscope for visually examining a woman's pelvic organs
+33296,culdoscopy,endoscopic examination of a woman's pelvic organs by the insertion of a culdoscope through the vagina
+33297,cull reject,the person or thing that is rejected or set aside as inferior in quality
+33298,cullis,a gutter in a roof
+33299,culm,stem of plants of the Gramineae
+33300,culmination,(astronomy) a heavenly body's highest celestial point above an observer's horizon
+33301,culotte,a divided skirt
+33302,cult,followers of an exclusive system of beliefs and practices
+33303,cult,followers of an unorthodox, extremist, or false religion or sect who often live outside of conventional society under the direction of a charismatic leader
+33304,cult,a religion or sect that is generally considered to be unorthodox, extremist, or false; "it was a satanic cult"
+33305,cult cultus religious_cult,a system of religious beliefs and rituals; "devoted to the cultus of the Blessed Virgin"
+33306,cult_of_personality,intense devotion to a particular person
+33307,cultism,devotion to the doctrine or a cult or to the practices of a cult
+33308,cultist,a member of an unorthodox cult who generally lives outside of conventional society under the direction of a charismatic leader
+33309,cultist,a member of a religious cult
+33310,cultivar,a variety of a plant developed from a natural species and maintained under cultivation
+33311,cultivated_land farmland plowland ploughland tilled_land tillage tilth,arable land that is worked by plowing and sowing and raising crops
+33312,cultivated_parsnip,European biennial having a long fusiform root that has been made palatable through cultivation
+33313,cultivated_plant,plants that are grown for their produce
+33314,cultivated_rice Oryza_sativa,yields the staple food of 50 percent of world's population
+33315,cultivation,the process of fostering the growth of something; "the cultivation of bees for honey"
+33316,cultivation,socialization through training and education to develop one's mind or manners; "her cultivation was remarkable"
+33317,cultivation,the act of raising or growing plants (especially on a large scale)
+33318,cultivation,(agriculture) production of food by preparing the land to grow crops (especially on a large scale)
+33319,cultivator tiller,a farm implement used to break up the surface of the soil (for aeration and weed control and conservation of moisture)
+33320,cultural_attache,an attache who is a specialist in cultural matters
+33321,cultural_movement,a group of people working together to advance certain cultural goals
+33322,culturati,people interested in culture and cultural activities
+33323,culture,the attitudes and behavior that are characteristic of a particular social group or organization; "the developing drug culture"; "the reason that the agency is doomed to inaction has something to do with the FBI culture"
+33324,culture,the tastes in art and manners that are favored by a social group
+33325,culture,(biology) the growing of microorganisms in a nutrient medium (such as gelatin or agar); "the culture of cells in a Petri dish"
+33326,culture,the raising of plants or animals; "the culture of oysters"
+33327,culture civilization civilisation,a particular society at a particular time and place; "early Mayan civilization"
+33328,culture_medium medium,(bacteriology) a nutrient substance (solid or liquid) that is used to cultivate micro-organisms
+33329,culture_shock,a condition of disorientation affecting someone who is suddenly exposed to an unfamiliar culture or way of life or set of attitudes
+33330,culverin,a heavy cannon with a long barrel used in the 16th and 17th centuries
+33331,culverin,a medieval musket
+33332,culvert,a transverse and totally enclosed drain under a road or railway
+33333,cumin Cuminum_cyminum,dwarf Mediterranean annual long cultivated for its aromatic seeds
+33334,cumin cumin_seed,aromatic seeds of the cumin herb of the carrot family
+33335,cummerbund,a broad pleated sash worn as formal dress with a tuxedo
+33336,cummings e._e._cummings Edward_Estlin_Cummings,United States writer noted for his typographically eccentric poetry (1894-1962)
+33337,cumulative_preferred cumulative_preferred_stock,preferred stock whose dividends if omitted accumulate until paid out
+33338,cumulative_vote,an election in which each person has as many votes as there are positions to be filled and they can all be cast for one candidate or can be distributed in any manner
+33339,cumulonimbus cumulonimbus_cloud thundercloud,a dark cloud of great vertical extent charged with electricity; associated with thunderstorms
+33340,cumulus cumulus_cloud,a globular cloud
+33341,cuneate_leaf,a wedge-shaped leaf having the acute angle at the base
+33342,cuneiform,an ancient wedge-shaped script used in Mesopotamia and Persia
+33343,cunner bergall Tautogolabrus_adspersus,common in north Atlantic coastal waters of the United States
+33344,cunnilingus cunnilinctus,oral stimulation of the vulva or clitoris
+33345,cunning,crafty artfulness (especially in deception)
+33346,cunt bitch,a person (usually but not necessarily a woman) who is thoroughly disliked; "she said her son thought Hillary was a bitch"
+33347,cunt puss pussy slit snatch twat,obscene terms for female genitals
+33348,cup,any cup-shaped concavity; "bees filled the waxen cups with honey"; "he wore a jock strap with a metal cup"; "the cup of her bra"
+33349,cup,a United States liquid unit equal to 8 fluid ounces
+33350,cup,cup-shaped plant organ
+33351,cup,a punch served in a pitcher instead of a punch bowl
+33352,cup,the hole (or metal container in the hole) on a golf green; "he swore as the ball rimmed the cup and rolled away"; "put the flag back in the cup"
+33353,cup,a small open container usually used for drinking; usually has a handle; "he put the cup back in the saucer"; "the handle of the cup was missing"
+33354,cup cupful,the quantity a cup will hold; "he drank a cup of coffee"; "he borrowed a cup of sugar"
+33355,cup loving_cup,a large metal vessel with two handles that is awarded as a trophy to the winner of a competition; "the school kept the cups is a special glass case"
+33356,cup_final,the final match of any cup competition (such as the annual final of the English soccer competition at Wembley)
+33357,cup_hook,hook (usually on the underside of a shelf) for hanging cups
+33358,cup_of_tea bag dish,an activity that you like or at which you are superior; "chemistry is not my cup of tea"; "his bag now is learning to play golf"; "marriage was scarcely his dish"
+33359,cup_tie,an eliminating game between teams in a cup competition
+33360,cupbearer,the attendant (usually an officer of a nobleman's household) whose duty is to fill and serve cups of wine
+33361,cupboard closet,a small room (or recess) or cabinet used for storage space
+33362,cupboard_love,a show of affection motivated by selfishness
+33363,cupcake,small cake baked in a muffin tin
+33364,cupflower nierembergia,any of various plants of the genus Nierembergia having upturned bell-shaped flowers
+33365,cupid,a symbol for love in the form of a cherubic naked boy with wings and a bow and arrow
+33366,cupola,a vertical cylindrical furnace for melting iron for casting
+33367,cupola,a roof in the form of a dome
+33368,cuppa cupper,a cup of tea
+33369,cupping,a treatment in which evacuated cups are applied to the skin to draw blood through the surface
+33370,cuprite,a mineral consisting of cuprous oxide that is a source of copper
+33371,cupronickel,a 60/40 alloy of copper and nickel
+33372,cupule,a sucker on the feet of certain flies
+33373,cupule acorn_cup,cup-shaped structure of hardened bracts at the base of an acorn
+33374,cur,a cowardly and despicable person
+33375,cur mongrel mutt,an inferior dog or one of mixed breed
+33376,curability curableness,capability of being cured or healed
+33377,curacao curacoa,flavored with sour orange peel
+33378,curacy,the position of a curate
+33379,curandera,a Mexican woman who practices healing techniques inherited from the Mayans
+33380,curandero,a Mexican man who practices healing techniques inherited from the Mayans
+33381,curassow,large crested arboreal game bird of warm parts of the Americas having long legs and tails; highly esteemed as game and food
+33382,curate minister_of_religion minister parson pastor rector,a person authorized to conduct religious worship; "clergymen are usually called ministers in Protestant churches"
+33383,curator conservator,the custodian of a collection (as a museum or library)
+33384,curatorship,the position of curator
+33385,curb curb_bit,a horse's bit with an attached chain or strap to check the horse
+33386,curb curbing kerb,an edge between a sidewalk and a roadway consisting of a line of curbstones (usually forming part of a gutter)
+33387,curb_market,a stock market for trading in securities not listed on the New York Stock Exchange
+33388,curb_roof,a roof with two or more slopes on each side of the ridge
+33389,curb_service,service provided to customers who remain in their vehicles
+33390,curbside,the side of a sidewalk that is bordered by a curb; "policemen stood at intervals along the curbside"
+33391,curbstone kerbstone,a paving stone forming part of a curb
+33392,curd,a coagulated liquid resembling milk curd; "bean curd"; "lemon curd"
+33393,curd,coagulated milk; used to make cheese; "Little Miss Muffet sat on a tuffet eating some curds and whey"
+33394,curdling clotting coagulation,the process of forming semisolid lumps in a liquid
+33395,curettage curettement,surgery to remove tissue or growths from a bodily cavity (as the uterus) by scraping with a curette
+33396,curette curet,a surgical instrument shaped like a scoop to remove tissue from a bodily cavity
+33397,curfew,the time that the curfew signal is sounded
+33398,curfew,a signal (usually a bell) announcing the start of curfew restrictions
+33399,curfew,an order that after a specific time certain activities (as being outside on the streets) are prohibited
+33400,curie Ci,a unit of radioactivity equal to the amount of a radioactive isotope that decays at the rate of 37,000,000,000 disintegrations per second
+33401,curio curiosity oddity oddment peculiarity rarity,something unusual -- perhaps worthy of collecting
+33402,curiosa,books on strange or unusual subjects (especially erotica)
+33403,curiosity wonder,a state in which you want to learn more about something
+33404,curiousness inquisitiveness,a state of active curiosity
+33405,curium Cm atomic_number_96,a radioactive transuranic metallic element; produced by bombarding plutonium with helium nuclei
+33406,curled_leaf_pondweed curly_pondweed Potamogeton_crispus,European herb naturalized in the eastern United States and California
+33407,curler hair_curler roller crimper,a mechanical device consisting of a cylindrical tube around which the hair is wound to curl it; "a woman with her head full of curlers is not a pretty sight"
+33408,curlew,large migratory shorebirds of the sandpiper family; closely related to woodcocks but having a down-curved bill
+33409,curlew_sandpiper Calidris_Ferruginea,Old World sandpiper with a curved bill like a curlew
+33410,curliness waviness,(of hair) a tendency to curl
+33411,curling,a game played on ice in which heavy stones with handles are slid toward a target
+33412,curling_iron,a cylindrical metal home appliance that heats a lock of hair that has been curled around it
+33413,curly-coated_retriever,an English breed having a tightly curled black or liver-colored coat; retrieves game from land or water
+33414,curly-heads Clematis_ochreleuca,shrubby clematis of the eastern United States having curly foliage
+33415,curly_grass curly_grass_fern Schizaea_pusilla,rare small fern of northeastern North America having numerous slender spiraling fronds and forming dense tufts
+33416,curlycup_gumweed Grindelia_squarrosa,perennial gumweed of western and central North America
+33417,curmudgeon,a crusty irascible cantankerous old person full of stubborn ideas
+33418,currant,small dried seedless raisin grown in the Mediterranean region and California; used in cooking
+33419,currant,any of several tart red or black berries used primarily for jellies and jams
+33420,currant currant_bush,any of various deciduous shrubs of the genus Ribes bearing currants
+33421,currawong bell_magpie,bluish black fruit-eating bird with a bell-like call
+33422,currency,the metal or paper medium of exchange that is presently used
+33423,currency,general acceptance or use; "the currency of ideas"
+33424,current electric_current,a flow of electricity through a conductor; "the current was measured in amperes"
+33425,current stream,a steady flow of a fluid (usually from natural causes); "the raft floated downstream on the current"; "he felt a stream of air"; "the hose ejected a stream of water"
+33426,current_account,that part of the balance of payments recording a nation's exports and imports of goods and services and transfer payments
+33427,current_intelligence,intelligence of all types and forms of immediate interest; usually disseminated without delays for evaluation or interpretation
+33428,current_unit,a measure of the amount of electric charge flowing past a circuit point at a specific time
+33429,currentness currency up-to-dateness,the property of belonging to the present time; "the currency of a slang term"
+33430,curriculum_vitae CV resume,a summary of your academic and work history
+33431,currier,a craftsman who curries leather for use
+33432,curry,(East Indian cookery) a pungent dish of vegetables or meats flavored with curry powder and usually eaten with rice
+33433,curry_powder,pungent blend of cumin and ground coriander seed and turmeric and other spices
+33434,curry_sauce,allemande sauce with curry powder and coconut milk instead of stock
+33435,currycomb,a square comb with rows of small teeth; used to curry horses
+33436,curse curse_word expletive oath swearing swearword cuss,profane or obscene expression usually of surprise or anger; "expletives were deleted"
+33437,curse torment,a severe affliction
+33438,cursed_crowfoot celery-leaved_buttercup Ranunculus_sceleratus,annual herb growing in marshy places
+33439,cursor pointer,(computer science) indicator consisting of a movable spot of light (an icon) on a visual display; moving it allows the user to point to commands or screen positions
+33440,curtailment,the temporal property of being cut short
+33441,curtain,any barrier to communication or vision; "a curtain of secrecy"; "a curtain of trees"
+33442,curtain drape drapery mantle pall,hanging cloth used as a blind (especially for a window)
+33443,curtain_lecture,a private lecture to a husband by his wife
+33444,curtain_raiser,a short play presented before the main play
+33445,curtain_raiser,any preliminary activity
+33446,curtain_ring,a circular ring for holding up a curtain
+33447,curtate_cycloid,a cycloid generated by a point inside the rolling circle
+33448,curtsy curtsey,bending the knees; a gesture of respect made by women
+33449,curvaceousness shapeliness voluptuousness,the quality of having a well-rounded body
+33450,curvature,(medicine) a curving or bending; often abnormal; "curvature of the spine"
+33451,curvature,the rate of change (at a point) of the angle between a curve and a tangent to the curve
+33452,curvature curve,the property possessed by the curving of a line or surface
+33453,curve,a line on a graph representing data
+33454,curve curve_ball breaking_ball bender,a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter
+33455,curve curved_shape,the trace of a point whose direction of motion changes
+33456,curvet vaulting,a light leap by a horse in which both hind legs leave the ground before the forelegs come down
+33457,curvilinear_correlation nonlinear_correlation skew_correlation,any correlation in which the rates of change of the variables is not constant
+33458,curvilinear_regression,the relation between variables when the regression equation is nonlinear (quadratic or higher order)
+33459,cuscus,woolly-haired monkey-like arboreal marsupial of New Guinea and northern Australia
+33460,cush-cush Dioscorea_trifida,tropical American yam with small yellow edible tubers
+33461,cushaw,globose or ovoid squash with striped grey and green warty rind
+33462,cushaw Cucurbita_mixta Cucurbita_argyrosperma,plant bearing squash having globose to ovoid fruit with variously striped grey and green and white warty rinds
+33463,cushion,the layer of air that supports a hovercraft or similar vehicle
+33464,cushion,a soft bag filled with air or a mass of padding such as feathers or foam rubber etc.
+33465,cushion_flower pincushion_hakea Hakea_laurina,tall straggling shrub with large globose crimson-yellow flowers; western Australia
+33466,cusk,the lean flesh of a cod-like fish of North Atlantic waters
+33467,cusk torsk Brosme_brosme,large edible marine fish of northern coastal waters; related to cod
+33468,cusk-eel,elongate compressed somewhat eel-shaped fishes
+33469,cusp,small elevation on the grinding surface of a tooth
+33470,cusp,point formed by two intersecting arcs (as from the intrados of a Gothic arch)
+33471,cusp leaflet,a thin triangular flap of a heart valve
+33472,cuspidation,a decoration using cusps
+33473,cussedness orneriness,meanspirited disagreeable contrariness
+33474,custard,sweetened mixture of milk and eggs baked or boiled or frozen
+33475,custard_apple,the fruit of any of several tropical American trees of the genus Annona having soft edible pulp
+33476,custard_apple custard_apple_tree,any of several tropical American trees bearing fruit with soft edible pulp
+33477,custard_pie,a prop consisting of an open pie filled with real or artificial custard; thrown in slapstick comedies
+33478,custodial_account,a brokerage firm account that parents have created for a minor
+33479,custodian keeper steward,one having charge of buildings or grounds or animals
+33480,custodianship,the position of custodian
+33481,custody,holding by the police; "the suspect is in custody"
+33482,custody_battle,litigation to settle custody of the children of a divorced couple
+33483,custody_case,a legal action to determine custody (usually of children following a divorce)
+33484,custom,habitual patronage; "I have given this tailor my custom for many years"
+33485,custom tradition,a specific practice of long standing
+33486,custom usage usance,accepted or habitual practice
+33487,custom-made custom-built,an item made to the customer's specifications
+33488,customer client,someone who pays for goods or services
+33489,customer_agent,a foreign purchaser who buys goods outright for resale
+33490,customhouse customshouse,a government building where customs are collected and where ships are cleared to enter or leave the country
+33491,customs customs_duty custom impost,money collected under a tariff
+33492,customs_union,an association of nations to promote free trade within the union and set common tariffs for nations that are not members
+33493,cut,a step on some scale; "he is a cut above the rest"
+33494,cut,a share of the profits; "everyone got a cut of the earnings"
+33495,cut,(film) an immediate transition from one shot to the next; "the cut from the accident scene to the hospital seemed too abrupt"
+33496,cut,the style in which a garment is cut; "a dress of traditional cut"
+33497,cut,a canal made by erosion or excavation
+33498,cut,the act of reducing the amount or number; "the mayor proposed extensive cuts in the city budget"
+33499,cut,an unexcused absence from class; "he was punished for taking too many cuts in his math class"
+33500,cut cut_of_meat,a piece of meat that has been cut from an animal carcass
+33501,cut cutting,the division of a deck of cards before dealing; "he insisted that we give him the last cut before every deal"; "the cutting of the cards soon became a ritual"
+33502,cut cutting,the act of penetrating or opening open with a sharp edge; "his cut in the lining revealed the hidden jewels"
+33503,cut cutting,the act of cutting something into parts; "his cuts were skillful"; "his cutting of the cake made a terrible mess"
+33504,cut cutting cutting_off,the act of shortening something by chopping off the ends; "the barber gave him a good cut"
+33505,cut gash,a trench resembling a furrow that was made by erosion or excavation
+33506,cut gash slash slice,a wound made by cutting; "he put a bandage over the cut"
+33507,cut track,a distinct selection of music from a recording or a compact disc; "he played the first cut on the cd"; "the title track of the album"
+33508,cut undercut,(sports) a stroke that puts reverse spin on the ball; "cuts do not bother a good tennis player"
+33509,cut-in insert,(broadcasting) a local announcement inserted into a network program
+33510,cut-in insert,(film) a still picture that is introduced and that interrupts the action of a film
+33511,cut_glass,glass decorated by cutting or grinding facets
+33512,cut_of_beef,cut of meat from beef cattle
+33513,cut_of_lamb,cut of meat from a lamb
+33514,cut_of_mutton,cut of meat from a mature sheep
+33515,cut_of_pork,cut of meat from a hog or pig
+33516,cut_of_veal,cut of meat from a calf
+33517,cutaneous_anthrax malignant_pustule,a form of anthrax infection that begins as papule that becomes a vesicle and breaks with a discharge of toxins; symptoms of septicemia are severe with vomiting and high fever and profuse sweating; the infection is often fatal
+33518,cutaneous_leishmaniasis Old_World_leishmaniasis oriental_sore tropical_sore Delhi_boil Aleppo_boil,leishmaniasis of the skin; characterized by ulcerative skin lesions
+33519,cutaneous_sensation haptic_sensation skin_sensation,a sensation localized on the skin
+33520,cutaneous_vein vena_cutanea,one of a number of veins in the subcutaneous tissue that empty into deep veins
+33521,cutaway,a man's coat cut diagonally from the waist to the back of the knees
+33522,cutaway cutaway_drawing cutaway_model,a representation (drawing or model) of something in which the outside is omitted to reveal the inner parts
+33523,cutback,a reduction in quantity or rate
+33524,cutch kutch,tannin extract derived from any of several mangrove barks of Pacific areas
+33525,cuticle,the dead skin at the base of a fingernail or toenail
+33526,cuticula,the outer body wall of an insect
+33527,cutin,(biochemistry) a waxy transparent material that occurs in the cuticle of plants and consists of highly polymerized esters of fatty acids
+33528,cutlas cutlass,a short heavy curved sword with one edge; formerly used by sailors
+33529,cutlassfish frost_fish hairtail,long-bodied marine fishes having a long whiplike scaleless body and sharp teeth; closely related to snake mackerel
+33530,cutleaved_coneflower Rudbeckia_laciniata,tall leafy plant with erect branches ending in large yellow flower heads with downward-arching rays; grow in Rocky Mountains south to Arizona and east to the Atlantic coast
+33531,cutler,a dealer in cutlery
+33532,cutlery eating_utensil,tableware implements for cutting and eating food
+33533,cutlet scallop scollop escallop,thin slice of meat (especially veal) usually fried or broiled
+33534,cutoff,a designated limit beyond which something cannot function or must be terminated
+33535,cutoff,a device that terminates the flow in a pipe
+33536,cutout,a switch that interrupts an electric circuit in the event of an overload
+33537,cutout,a photograph from which the background has been cut away
+33538,cutout,a part that is cut out or is intended to be cut out
+33539,cutter,someone whose work is cutting (as e.g. cutting cloth for garments)
+33540,cutter,a sailing vessel with a single mast set further back than the mast of a sloop
+33541,cutter carver,someone who carves the meat
+33542,cutter cutlery cutting_tool,a cutting implement; a tool for cutting
+33543,cutthroat,someone who murders by cutting the victim's throat
+33544,cutting,a piece cut off from the main part of something
+33545,cutting slip,a part (sometimes a root or leaf or bud) removed from a plant to propagate a new plant through rooting or grafting
+33546,cutting thinning,the act of diluting something; "the cutting of whiskey with water"; "the thinning of paint with turpentine"
+33547,cutting_angle,the angle between the face of a cutting tool and the surface of the work
+33548,cutting_implement,a tool used for cutting or slicing
+33549,cutting_room,a room where films or tapes are edited (by cutting out unwanted parts)
+33550,cuttlefish cuttle,ten-armed oval-bodied cephalopod with narrow fins as long as the body and a large calcareous internal shell
+33551,cutty_stool,a low stool; formerly in Scotland, a seat in a church where an offender was publicly rebuked
+33552,cutwork,embroidery in which the design is outlined in a buttonhole stitch and the intervening material is cut away
+33553,cutworm,North American moth whose larvae feed on young plant stems cutting them off at the ground
+33554,cy_pres rule_of_cy_pres cy_pres_doctrine,a rule that when literal compliance is impossible the intention of a donor or testator should be carried out as nearly as possible
+33555,cyan,a primary subtractive color for light; has a blue-green color
+33556,cyanamide cyanamid,a weak soluble dibasic acid (the parent acid of cyanamide salts)
+33557,cyanic_acid,a colorless poisonous volatile liquid acid that hydrolyzes readily to ammonia and carbon dioxide
+33558,cyanide,an extremely poisonous salt of hydrocyanic acid
+33559,cyanide_poisoning,poisoning due to ingesting or inhaling cyanide; common in smoke from fires and in industrial chemicals
+33560,cyanide_process,an industrial process for extracting gold and silver by treating ore with a sodium cyanide solution
+33561,cyanine_dye,any of a class of dyes containing a -CH= group linking two heterocyclic rings containing nitrogen; used as sensitizers in photography
+33562,cyano_group cyano_radical cyanide_group cyanide_radical,the monovalent group -CN in a chemical compound
+33563,cyanobacteria blue-green_algae,predominantly photosynthetic prokaryotic organisms containing a blue pigment in addition to chlorophyll; occur singly or in colonies in diverse habitats; important as phytoplankton
+33564,cyanogen,a colorless toxic gas with a pungent almond odor; has been used in chemical warfare
+33565,cyanohydrin,any organic compound in which the cyano radical -CN and the hydroxyl radical -OH are attached to the same carbon atom
+33566,cyanosis,a bluish discoloration of the skin and mucous membranes
+33567,cyanuric_acid,a trimer of cyanic acid
+33568,cyber-terrorism cyberwar,an assault on electronic communication networks
+33569,cyber-terrorist cyberpunk,a programmer who breaks into computer systems in order to steal or change or destroy information as a form of cyber-terrorism
+33570,cyberart,art that is produced with the help of computer hardware and software
+33571,cybercafe,a cafe whose customers sit at computer terminals and log on to the internet while they eat and drink
+33572,cybercrime,crime committed using a computer and the internet to steal a person's identity or sell contraband or stalk victims or disrupt operations with malevolent programs
+33573,cyberculture,the culture that emerges from the use of computers for communication and entertainment and business
+33574,cybernaut,a computer user who uses the internet; someone who explores cyberspace
+33575,cybernetics,(biology) the field of science concerned with processes of communication and control (especially the comparison of these processes in biological and artificial systems)
+33576,cyberphobia,irrational fear of computers or technology
+33577,cyberpunk,a writer of science fiction set in a lawless subculture of an oppressive society dominated by computer technology
+33578,cyberpunk,a genre of fast-paced science fiction involving oppressive futuristic computerized societies
+33579,cybersex,sexual arousal involving communication on the internet
+33580,cyborg bionic_man bionic_woman,a human being whose body has been taken over in whole or in part by electromechanical devices; "a cyborg is a cybernetic organism"
+33581,cycad,any tropical gymnosperm of the order Cycadales; having unbranched stems with a crown of fernlike leaves
+33582,cyclamen Cyclamen_purpurascens,Mediterranean plant widely cultivated as a houseplant for its showy dark green leaves splotched with silver and nodding white or pink to reddish flowers with reflexed petals
+33583,cycle,a series of poems or songs on the same theme; "Schubert's song cycles"
+33584,cycle,a periodically repeated sequence of events; "a cycle of reprisal and retaliation"
+33585,cycle oscillation,a single complete execution of a periodically repeated phenomenon; "a year constitutes a cycle of the seasons"
+33586,cycle rhythm round,an interval during which a recurring sequence of events occurs; "the never-ending cycle of the seasons"
+33587,cycle_of_rebirth,(Hinduism) repeated rebirth in new forms
+33588,cyclic_neutropenia,neutropenia that occurs periodically
+33589,cyclic_redundancy_check,an error correction code that is recorded in each sector of a magnetic disk and used to catch errors in the data
+33590,cyclicity periodicity,the quality of recurring at regular intervals
+33591,cycling,the sport of traveling on a bicycle or motorcycle
+33592,cyclist bicyclist bicycler wheeler biker,a person who rides a bicycle
+33593,cyclobenzaprine Flexeril,muscle relaxant (trade name Flexeril) used for muscle spasms or acute injury
+33594,cyclodestructive_surgery,an eye operation that treats glaucoma by destroying the ciliary body with a laser
+33595,cyclohexanol,a colorless oily alcohol that smells like camphor
+33596,cyclohexanol_phthalate,the cyclohexanol ester of phthalic acid
+33597,cycloid,a line generated by a point on a circle rolling along a straight line
+33598,cyclone,(meteorology) rapid inward circulation of air masses about a low pressure center; circling counterclockwise in the northern hemisphere and clockwise in the southern
+33599,cyclone,a violent rotating windstorm
+33600,cyclooxygenase Cox,either of two related enzymes that control the production of prostaglandins and are blocked by aspirin
+33601,cyclooxygenase-1 Cox-1,an enzyme that regulates prostaglandins that are important for the health of the stomach lining and kidneys; "an unfortunate side effect of NSAIDs is that they block Cox-1"
+33602,cyclooxygenase-2 Cox-2,an enzyme that makes prostaglandins that cause inflammation and pain and fever; "the beneficial effects of NSAIDs result from their ability to block Cox-2"
+33603,cyclopean_masonry,a primitive style of masonry characterized by use of massive stones of irregular shape and size
+33604,cyclopia,a developmental abnormality in which there is only one eye
+33605,cyclopropane,a colorless flammable gas sometimes used as an inhalation anesthetic
+33606,cyclops water_flea,minute free-swimming freshwater copepod having a large median eye and pear-shaped body and long antennae used in swimming; important in some food chains and as intermediate hosts of parasitic worms that affect man e.g. Guinea worms
+33607,cycloserine,an antibiotic that is especially active against the tubercle bacillus
+33608,cyclosis streaming,the circulation of cytoplasm within a cell
+33609,cyclostome,primitive aquatic vertebrate
+33610,cyclostyle,a writing implement with a small toothed wheel that cuts small holes in a stencil
+33611,cyclothymia cyclothymic_disorder cyclic_disorder,a mild bipolar disorder that persists over a long time
+33612,cyclotron,an accelerator that imparts energies of several million electron-volts to rapidly moving particles
+33613,cygnet,a young swan
+33614,cylinder,a surface generated by rotating a parallel line around a fixed line
+33615,cylinder,a solid bounded by a cylindrical surface and two parallel planes (the bases)
+33616,cylinder,a cylindrical container for oxygen or compressed air
+33617,cylinder piston_chamber,a chamber within which piston moves
+33618,cylinder_head,a detachable plate that covers the closed end of a cylinder chamber in a reciprocating engine or pump
+33619,cylinder_lock,a lock in which a cylinder rotates to move a bolt; tumblers are pins; inserting the key lifts and aligns the pins to free the cylinder to rotate
+33620,cylindricality cylindricalness,the roundness of a 3-dimensional cylinder
+33621,cyma cymatium,(architecture) a molding for a cornice; in profile it is shaped like an S (partly concave and partly convex)
+33622,cyma_recta,a cyma in which the upper section is concave and the lower section is convex
+33623,cymbal,a percussion instrument consisting of a concave brass disk; makes a loud crashing sound when hit with a drumstick or when two are struck together
+33624,cymbalist,a performer on the cymbals
+33625,cymbid cymbidium,any of various plants of the genus Cymbidium having narrow leaves and a long drooping cluster of numerous showy and variously colored boat-shaped flowers; extensively hybridized and cultivated as houseplants and important florists' flowers
+33626,cyme,more or less flat-topped cluster of flowers in which the central or terminal flower opens first
+33627,cymene,any of three isotopes of a colorless aromatic liquid hydrocarbon occurring in the volatile oil of cumin and thyme and used in the manufacture of synthetic resins
+33628,cymling pattypan_squash,squash plant having flattened round fruit with a scalloped edge; usually greenish white
+33629,cymule,a small cyme, generally with few flowers
+33630,cynancum,any of various mostly giant tropical lianas of Africa and Madagascar having greenish or purple flowers and long smooth pods; roots formerly used as an emetic
+33631,cynic faultfinder,someone who is critical of the motives of others
+33632,cynicism,a cynical feeling of distrust
+33633,cynodont,small carnivorous reptiles
+33634,cynophobia,a morbid fear of dogs
+33635,cynosure,something that provides guidance (as Polaris guides mariners); "let faith be your cynosure to walk by"
+33636,cynosure,something that strongly attracts attention and admiration; "if he was the cynosure of all eyes he didn't notice"
+33637,cynthia_moth Samia_cynthia Samia_walkeri,large Asiatic moth introduced into the United States; larvae feed on the ailanthus
+33638,cypress,wood of any of various cypress trees especially of the genus Cupressus
+33639,cypress cypress_tree,any of numerous evergreen conifers of the genus Cupressus of north temperate regions having dark scalelike leaves and rounded cones
+33640,cypress_pine,any of several evergreen trees or shrubs of Australia and northern New Caledonia
+33641,cypress_sedge Carex_pseudocyperus,tufted sedge of temperate regions; nearly cosmopolitan
+33642,cypress_spurge Euphorbia_cyparissias,Old World perennial having foliage resembling cypress; naturalized as a weed in the United States
+33643,cypress_vine star-glory Indian_pink Ipomoea_quamoclit Quamoclit_pennata,tropical American annual climber having red (sometimes white) flowers and finely dissected leaves; naturalized in United States and elsewhere
+33644,cyprinid cyprinid_fish,soft-finned mainly freshwater fishes typically having toothless jaws and cycloid scales
+33645,cypriniform_fish,a soft-finned fish of the order Cypriniformes
+33646,cyprinodont,any member of the family Cyprinodontidae
+33647,cypripedia,a plant or flower of the genus Cypripedium
+33648,cyproheptadine Periactin,an antihistamine (trade name Periactin) used to treat some allergic reactions
+33649,cyrilla leatherwood white_titi Cyrilla_racemiflora,shrub or small tree of southeastern United States to West Indies and Brazil; grown for the slender racemes of white flowers and orange and crimson foliage
+33650,cyst,a closed sac that develops abnormally in some body structure
+33651,cysteine,an amino acid containing sulfur that is found in most proteins; oxidizes on exposure to air to form cystine
+33652,cystic_artery arteria_cystica,a branch of the hepatic artery; supplies the gall bladder and the surface of the liver
+33653,cystic_fibrosis CF fibrocystic_disease_of_the_pancreas pancreatic_fibrosis mucoviscidosis,the most common hereditary disease; the child's lungs and intestines and pancreas become clogged with thick mucus; caused by defect in a single gene; no cure is known
+33654,cystic_fibrosis_transport_regulator CFTR,the gene that is mutated in cystic fibrosis
+33655,cystic_vein vena_cystica,vein that drains the gallbladder
+33656,cystine,a crystalline amino acid found in proteins (especially keratin); discovered in bladder stones
+33657,cystitis,inflammation of the urinary bladder and ureters
+33658,cystocele colpocystocele,hernia in which the urinary bladder protrudes through the wall of the vagina; sometimes occurs after childbirth
+33659,cystoid_macular_edema,a specific pattern of swelling in the central retina
+33660,cystoplegia cystoparalysis,paralysis of the urinary bladder
+33661,cytoarchitecture cytoarchitectonics,the cellular composition of a bodily structure
+33662,cytochrome,(biochemistry) a class of hemoprotein whose principal biological function is electron transfer (especially in cellular respiration)
+33663,cytochrome_c,the most abundant and stable cytochrome; involved in energy transfer
+33664,cytogenesis cytogeny,the origin and development and variation of cells
+33665,cytogeneticist,a geneticist who specializes in the cellular components associated with heredity
+33666,cytogenetics,the branch of biology that studies the cellular aspects of heredity (especially the chromosomes)
+33667,cytokine,any of various protein molecules secreted by cells of the immune system that serve to regulate the immune system
+33668,cytokinesis,organic process consisting of the division of the cytoplasm of a cell following karyokinesis bringing about the separation into two daughter cells
+33669,cytologic_specimen,a specimen used for cytologic examination and diagnosis
+33670,cytologist,a biologist who studies the structure and function of cells
+33671,cytology,the branch of biology that studies the structure and function of cells
+33672,cytolysin,a substance that partly or completely destroys animal cells
+33673,cytolysis,pathological breakdown of cells by the destruction of their outer membrane
+33674,cytomegalovirus CMV,any of a group of herpes viruses that enlarge epithelial cells and can cause birth defects; can affect humans with impaired immunological systems
+33675,cytopenia,a deficiency of some cellular element of the blood
+33676,cytophotometer,a photometer that can be used to locate and identify chemical compounds in a cell by measuring the intensity of the light that passes through stained sections of the cytoplasm
+33677,cytophotometry,the study of chemical compounds inside a cell by means of a cytophotometer
+33678,cytoplasm cytol,the protoplasm of a cell excluding the nucleus; is full of proteins that control cell metabolism
+33679,cytoplast,the intact cytoplasmic content of a cell
+33680,cytosine C,a base found in DNA and RNA and derived from pyrimidine; pairs with guanine
+33681,cytoskeleton,a microscopic network of actin filaments and microtubules in the cytoplasm of many living cells that gives the cell shape and coherence
+33682,cytosol,the aqueous part of the cytoplasm within which various particles and organelles are suspended
+33683,cytostome,mouth of a protozoan
+33684,cytotoxic_drug,any drug that has a toxic effect on cells; commonly used in chemotherapy to inhibit the proliferation of cancerous cells
+33685,cytotoxicity,the degree to which something is toxic to living cells
+33686,cytotoxin,any substance that has a toxic effect on cells
+33687,czar,a person having great power
+33688,czar tsar tzar,a male monarch or emperor (especially of Russia prior to 1917)
+33689,czarina tsarina tzarina czaritza tsaritsa,the wife or widow of a czar
+33690,da'wah dawah,missionary work for Islam
+33691,da_Gamma Vasco_da_Gamma Gamma,Portuguese navigator who led an expedition around the Cape of Good Hope in 1497; he sighted and named Natal on Christmas Day before crossing the Indian Ocean (1469-1524)
+33692,dab splash splatter,a small quantity of something moist or liquid; "a dab of paint"; "a splatter of mud"; "just a splash of whiskey"
+33693,dabbler dilettante sciolist,an amateur who engages in an activity without serious intentions and who pretends to have knowledge
+33694,dabbling_duck dabbler,any of numerous shallow-water ducks that feed by upending and dabbling
+33695,dabchick little_grebe Podiceps_ruficollis,small European grebe
+33696,dace Leuciscus_leuciscus,small European freshwater fish with a slender bluish-green body
+33697,dacha,Russian country house
+33698,dachshund dachsie badger_dog,small long-bodied short-legged German breed of dog having a short sleek coat and long drooping ears; suited for following game into burrows
+33699,dacite,a grey volcanic rock containing plagioclase and quartz and other crystalline minerals
+33700,dacoit dakoit,a member of an armed gang of robbers
+33701,dacoity dakoity,robbery by a gang of armed dacoits
+33702,dacryocystitis,inflammation of the lacrimal sac causing obstruction of the tube draining tears into the nose
+33703,dacryon,the craniometric point at the junction of the anterior border of the lacrimal bone with the frontal bone
+33704,dactyl,a metrical unit with stressed-unstressed-unstressed syllables
+33705,dactylomegaly,abnormally large fingers or toes
+33706,dad dada daddy pa papa pappa pop,an informal term for a father; probably derived from baby talk
+33707,dada dadaism,a nihilistic art movement (especially in painting) that flourished in Europe early in the 20th century; based on irrationality and negation of the accepted laws of beauty
+33708,dado,the section of a pedestal between the base and the surbase
+33709,dado,a rectangular groove cut into a board so that another piece can fit into it
+33710,dado_plane,a plane for making a dado groove
+33711,daemon demigod,a person who is part mortal and part god
+33712,daffodil Narcissus_pseudonarcissus,any of numerous varieties of Narcissus plants having showy often yellow flowers with a trumpet-shaped central crown
+33713,daffodil_garlic flowering_onion Naples_garlic Allium_neopolitanum,European onion with white flowers
+33714,dagame lemonwood_tree Calycophyllum_candidissimum,source of a tough elastic wood
+33715,dagga Cape_dagga red_dagga wilde_dagga Leonotis_leonurus,relatively nontoxic South African herb smoked like tobacco
+33716,dagger obelisk,a character used in printing to indicate a cross reference or footnote
+33717,dagger sticker,a short knife with a pointed blade used for piercing or stabbing
+33718,daggerboard,a removable centerboard on a small sailboat that can be lowered into the water to serve as a keel
+33719,daguerreotype,a photograph made by an early photographic process; the image was produced on a silver plate sensitized to iodine and developed in mercury vapor
+33720,dahlia Dahlia_pinnata,any of several plants of or developed from the species Dahlia pinnata having tuberous roots and showy rayed variously colored flower heads; native to the mountains of Mexico and Central America and Colombia
+33721,daily,a newspaper that is published every day
+33722,daily_double,a single bet on two horse races in the same day
+33723,daily_variation,fluctuations that occur between one day and the next
+33724,daintiness delicacy fineness,the quality of being beautiful and delicate in appearance; "the daintiness of her touch"; "the fineness of her features"
+33725,dainty delicacy goody kickshaw treat,something considered choice to eat
+33726,daiquiri rum_cocktail,a cocktail made with rum and lime or lemon juice
+33727,dairy dairy_farm,a farm where dairy products are produced
+33728,dairy_cattle dairy_cow milch_cow milk_cow milcher milker,cattle that are reared for their milk
+33729,dairy_product,milk and butter and cheese
+33730,dairying dairy_farming,the business of a dairy
+33731,dairymaid milkmaid,a woman who works in a dairy
+33732,dairyman,a man who works in a dairy
+33733,dairyman dairy_farmer,the owner or manager of a dairy
+33734,dais podium pulpit rostrum ambo stump soapbox,a platform raised above the surrounding level to give prominence to the person on it
+33735,daisy,any of numerous composite plants having flower heads with well-developed ray flowers usually arranged in a single whorl
+33736,daisy_chain,(figurative) a series of associated things or people or experiences
+33737,daisy_chain,flower chain consisting of a string of daisies linked by their stems; worn by students on class day at some schools
+33738,daisy_cutter,a batted or served ball that skims along close to the ground
+33739,daisy_fleabane Erigeron_annuus,widely naturalized white-flowered North American herb
+33740,daisy_print_wheel daisy_wheel,a wheel around which is a set of print characters that make a typing impression on paper
+33741,daisybush daisy-bush daisy_bush,any of various mostly Australian attractively shaped shrubs of the genus Olearia grown for their handsome and sometimes fragrant evergreen foliage and profusion of daisy flowers with white or purple or blue rays
+33742,daisyleaf_grape_fern daisy-leaved_grape_fern Botrychium_matricariifolium,of North America and Eurasia
+33743,daisywheel_printer,a printer that uses a daisy print wheel
+33744,dalasi,the basic unit of money in Gambia
+33745,dale,an open river valley (in a hilly area)
+33746,dalesman,a person who lives in the dales of northern England
+33747,daleth,the 4th letter of the Hebrew alphabet
+33748,dalliance dawdling trifling,the deliberate act of delaying and playing instead of working
+33749,dallier dillydallier dilly-dallier mope lounger,someone who wastes time
+33750,dallisgrass dallis_grass paspalum Paspalum_dilatatum,tall tufted perennial tropical American grass naturalized as pasture and forage grass in southern United States
+33751,dalmatian coach_dog carriage_dog,a large breed having a smooth white coat with black or brown spots; originated in Dalmatia
+33752,dam,female parent of an animal especially domestic livestock
+33753,dam dike dyke,a barrier constructed to contain the flow of water or to keep out the sea
+33754,damage equipment_casualty,loss of military equipment
+33755,damage harm hurt scathe,the act of damaging something or someone
+33756,damage harm impairment,the occurrence of a change for the worse
+33757,damage_control,an effort to minimize or curtail damage or loss
+33758,damages amends indemnity indemnification restitution redress,a sum of money paid in compensation for loss or injury
+33759,damascene,a design produced by inlaying gold or silver into steel
+33760,damask,a table linen made from linen with a damask pattern
+33761,damask,a fabric of linen or cotton or silk or wool with a reversible pattern woven into it
+33762,damask_rose summer_damask_rose Rosa_damascena,large hardy very fragrant pink rose; cultivated in Asia Minor as source of attar of roses; parent of many hybrids
+33763,damask_violet Dame's_violet sweet_rocket Hesperis_matronalis,long cultivated herb having flowers whose scent is more pronounced in the evening; naturalized throughout Europe to Siberia and into North America
+33764,dame doll wench skirt chick bird,informal terms for a (young) woman
+33765,dame madam ma'am lady gentlewoman,a woman of refinement; "a chauffeur opened the door of the limousine for the grand lady"
+33766,dammar gum_dammar damar dammar_resin,any of various hard resins from trees of the family Dipterocarpaceae and of the genus Agathis; especially the amboyna pine
+33767,damn darn hoot red_cent shit shucks tinker's_damn tinker's_dam,something of little value; "his promise is not worth a damn"; "not worth one red cent"; "not worth shucks"
+33768,damnation,the act of damning
+33769,damnation eternal_damnation,the state of being condemned to eternal punishment in Hell
+33770,damned,people who are condemned to eternal punishment; "he felt he had visited the realm of the damned"
+33771,damourite,a variety of muscovite
+33772,damp dampness moistness,a slight wetness
+33773,damp-proof_course damp_course,a course of some impermeable material laid in the foundation walls of building near the ground to prevent dampness from rising into the building
+33774,dampener moistener,a device that dampens or moistens something; "he used a dampener to moisten the shirts before he ironed them"
+33775,damper,a movable iron plate that regulates the draft in a stove or chimney or furnace
+33776,damper,a depressing restraint; "rain put a damper on our picnic plans"
+33777,damper muffler,a device that decreases the amplitude of electronic, mechanical, acoustical, or aerodynamic oscillations
+33778,damper_block piano_damper,damper consisting of a small felted block that drops onto a piano string to stop its vibration
+33779,damping_off,a plant disease caused by a fungus; diseased condition of seedlings in excessive moisture
+33780,damping_off_fungus Pythium_debaryanum,fungus causing damping off disease in seedlings
+33781,damsel demoiselle damoiselle damosel damozel,a young unmarried woman
+33782,damselfish demoiselle,small brilliantly colored tropical marine fishes of coral reefs
+33783,damselfly,slender non-stinging insect similar to but smaller than the dragonfly but having wings folded when at rest
+33784,damson damson_plum,dark purple plum of the damson tree
+33785,damson_plum damson_plum_tree Prunus_domestica_insititia,plum tree long cultivated for its edible fruit
+33786,danaid danaid_butterfly,large tropical butterfly with degenerate forelegs and an unpleasant taste
+33787,dance,a party of people assembled for dancing
+33788,dance,a party for social dancing
+33789,dance,an artistic form of nonverbal communication
+33790,dance_band band dance_orchestra,a group of musicians playing popular music for dancing
+33791,dance_floor,a bare floor polished for dancing
+33792,dance_lesson,a lesson in dancing
+33793,dance_music,music to dance to
+33794,dance_music danceroom_music ballroom_music,a genre of popular music composed for ballroom dancing
+33795,dance_school,a school where students are taught to dance
+33796,dance_step step,a sequence of foot movements that make up a particular dance; "he taught them the waltz step"
+33797,dancer professional_dancer terpsichorean,a performer who dances professionally
+33798,dancer social_dancer,a person who participates in a social gathering arranged for dancing (as a ball)
+33799,dancing dance terpsichore saltation,taking a series of rhythmical steps (and movements) in time to music
+33800,dancing-master dance_master,a professional teacher of dancing
+33801,dancing_partner,one of a pair of people who dance together
+33802,dancing_school,a school in which students learn to dance
+33803,dandelion blowball,any of several herbs of the genus Taraxacum having long tap roots and deeply notched leaves and bright yellow flowers followed by fluffy seed balls
+33804,dandelion_green,the foliage of the dandelion plant
+33805,dandelion_green,edible leaves of the common dandelion collected from the wild; used in salads and in making wine
+33806,dander,small scales from animal skins or hair or bird feathers that can cause allergic reactions in some people
+33807,dander hackles,a feeling of anger and animosity; "having one's hackles or dander up"
+33808,dandruff,a condition in which white scales of dead skin are shed by the scalp
+33809,dandruff,loose scales shed from the scalp; "I could see the dandruff on her shoulders"
+33810,dandy dude fop gallant sheik beau swell fashion_plate clotheshorse,a man who is much concerned with his dress and appearance
+33811,danger,a cause of pain or injury or loss; "he feared the dangers of traveling by air"
+33812,danger,the condition of being susceptible to harm or injury; "you are in no danger"; "there was widespread danger of disease"
+33813,danger,a dangerous place; "He moved out of danger"
+33814,danger_line,a line beyond which it is dangerous to go
+33815,danger_zone,a dangerous area
+33816,dangerousness,the quality of not being safe
+33817,dangleberry dangle-berry Gaylussacia_frondosa,huckleberry of the eastern United States with pink flowers and sweet blue fruit
+33818,dangling_modifier misplaced_modifier,a word or phrase apparently modifying an unintended word because of its placement in a sentence: e.g., `when young' in `when young, circuses appeal to all of us'
+33819,dangling_participle,a participle (usually at the beginning of a sentence) apparently modifying a word other than the word intended: e.g., `flying across the country' in `flying across the country the Rockies came into view'
+33820,danish danish_pastry,light sweet yeast-raised roll usually filled with fruits or cheese
+33821,dankness clamminess,unpleasant wetness
+33822,danse_macabre dance_of_death,a medieval dance in which a skeleton representing death leads a procession of others to the grave
+33823,danseur danseur_noble,a male ballet dancer who is the partner of a ballerina
+33824,daphne,any of several ornamental shrubs with shiny mostly evergreen leaves and clusters of small bell-shaped flowers
+33825,daphnia water_flea,minute freshwater crustacean having a round body enclosed in a transparent shell; moves about like a flea by means of hairy branched antennae
+33826,dapple-grey dapple-gray dappled-grey dappled-gray,grey with a mottled pattern of darker grey markings
+33827,dapsone,antibacterial drug used to treat leprosy and some kinds of skin diseases
+33828,daraf,a unit of elastance equal to the reciprocal of a farad
+33829,dare daring,a challenge to do something dangerous or foolhardy; "he could never refuse a dare"
+33830,daredevil madcap hothead swashbuckler lunatic harum-scarum,a reckless impetuous irresponsible person
+33831,daredevilry daredeviltry,boldness as manifested in rash and daredevil behavior
+33832,dark darkness,absence of light or illumination
+33833,dark darkness,an unenlightened state; "he was in the dark concerning their intentions"; "his lectures dispelled the darkness"
+33834,dark-eyed_junco slate-colored_junco Junco_hyemalis,common North American junco having grey plumage and eyes with dark brown irises
+33835,dark_adaptation,the process of adjusting the eyes to low levels of illumination; cones adapt first; rods continue to adapt for up to four hours
+33836,dark_blue navy navy_blue,a dark shade of blue
+33837,dark_bread whole_wheat_bread whole_meal_bread brown_bread,bread made with whole wheat flour
+33838,dark_comedy,a comedy characterized by grim or satiric humor; a comedy having gloomy or disturbing elements
+33839,dark_ground_illumination dark_field_illumination,a form of microscopic examination of living material by scattered light; specimens appear luminous against a dark background
+33840,dark_horse,a political candidate who is not well known but could win unexpectedly
+33841,dark_horse,a racehorse about which little is known
+33842,dark_lantern bull's-eye,a lantern with a single opening and a sliding panel that can be closed to conceal the light
+33843,dark_matter,(cosmology) a hypothetical form of matter that is believed to make up 90 percent of the universe; it is invisible (does not absorb or emit light) and does not collide with atomic particles but exerts gravitational force
+33844,dark_meat,the flesh of the legs of fowl used as food
+33845,dark_red,a red color that reflects little light
+33846,darkling_beetle darkling_groung_beetle tenebrionid,sluggish hard-bodied black terrestrial weevil whose larvae feed on e.g. decaying plant material or grain
+33847,darkness,having a dark or somber color
+33848,darkness dark shadow,an unilluminated area; "he moved off into the darkness"
+33849,darkness duskiness swarthiness,a swarthy complexion
+33850,darkroom,a room in which photographs are developed
+33851,darling favorite favourite pet dearie deary ducky,a special loved one
+33852,darling_pea poison_bush,either of two Australian plants of the genus Swainsona that are poisonous to sheep
+33853,darmstadtium Ds element_110 atomic_number_110,a radioactive transuranic element
+33854,darnel tare bearded_darnel cheat Lolium_temulentum,weedy annual grass often occurs in grainfields and other cultivated land; seeds sometimes considered poisonous
+33855,darner,a person who mends by darning
+33856,darning,the act of mending a hole in a garment with crossing threads
+33857,darning_needle embroidery_needle,a long needle with an eye large enough for heavy darning or embroidery thread
+33858,dart,a small narrow pointed missile that is thrown or shot
+33859,dart,a tapered tuck made in dressmaking
+33860,dart_player,someone who plays the game of darts
+33861,dartboard dart_board,a circular board of wood or cork used as the target in the game of darts
+33862,darter,a person or other animal that moves abruptly and rapidly; "squirrels are darters"
+33863,darts,a game in which small pointed missiles are thrown at a dartboard
+33864,dash,a footrace run at top speed; "he is preparing for the 100-yard dash"
+33865,dash bolt,the act of moving with great haste; "he made a dash for the door"
+33866,dash dah,the longer of the two telegraphic signals used in Morse code
+33867,dash elan flair panache style,distinctive and stylish elegance; "he wooed her with the confident dash of a cavalry officer"
+33868,dash sprint,a quick run
+33869,dash-pot,a mechanical damper; the vibrating part is attached to a piston that moves in a chamber filled with liquid
+33870,dashboard fascia,instrument panel on an automobile or airplane containing dials and controls
+33871,dashiki daishiki,a loose and brightly colored African shirt
+33872,dastard,a despicable coward
+33873,dastardliness,despicable cowardice
+33874,dasymeter,densimeter consisting of a thin glass globe that is weighed in a gas to determine its density
+33875,dasyure,any of several more or less arboreal marsupials somewhat resembling martens
+33876,dasyurid_marsupial dasyurid,small carnivorous nocturnal marsupials of Australia and Tasmania
+33877,data information,a collection of facts from which conclusions may be drawn; "statistical data"
+33878,data_conversion,conversion from one way of encoding data to another way
+33879,data_converter,converter for changing information from one code to another
+33880,data_encryption,(computer science) the encryption of data for security purposes
+33881,data_hierarchy,an arrangement of data consisting of sets and subsets such that every subset of a set is of lower rank than the set
+33882,data_input_device input_device,a device that can be used to insert data into a computer or other computational device
+33883,data_mining,data processing using sophisticated data search capabilities and statistical algorithms to discover patterns and correlations in large preexisting databases; a way to discover new meaning in data
+33884,data_multiplexer,a multiplexer that permits two or more data sources to share a common transmission medium
+33885,data_processing,(computer science) a series of operations on data by a computer in order to retrieve or transform or classify information
+33886,data_rate,the rate at which circuits or other devices operate when handling digital information
+33887,data_structure,(computer science) the organization of data (and its storage allocations in a computer)
+33888,data_system information_system,system consisting of the network of all communication channels used within an organization
+33889,database,an organized body of related information
+33890,database_management,creation and maintenance of a database
+33891,database_management_system DBMS,a software system that facilitates the creation and maintenance and use of an electronic database
+33892,date,the particular day, month, or year (usually according to the Gregorian calendar) that an event occurred; "he tried to memorizes all the dates for his history class"
+33893,date,a particular day specified as the time something happens; "the date of the election is set by law"; "we hope to get together at an early date"; "Mother's Day is always on the same date"
+33894,date,the present; "they are up to date"; "we haven't heard from them to date"
+33895,date,sweet edible fruit of the date palm with a single long woody seed
+33896,date appointment engagement,a meeting arranged in advance; "she asked how to avoid kissing at the end of a date"
+33897,date day_of_the_month,the specified day of the month; "what is the date today?"
+33898,date escort,a participant in a date; "his date never stopped talking"
+33899,date-nut_bread,bread containing chopped dates and nuts
+33900,date_bar,fruit bar containing chopped dates
+33901,date_bread,bread containing chopped dates
+33902,date_palm Phoenix_dactylifera,tall tropical feather palm tree native to Syria bearing sweet edible fruit
+33903,date_plum Diospyros_lotus,an Asiatic persimmon tree cultivated for its small yellow or purplish-black edible fruit much valued by Afghan tribes
+33904,date_rape,rape in which the rapist is known to the victim (as when they are on a date together)
+33905,dateline,a line at the beginning of a news article giving the date and place of origin of the news dispatch
+33906,dateline date_line International_Date_Line,an imaginary line on the surface of the earth following (approximately) the 180th meridian
+33907,dating geological_dating,use of chemical analysis to estimate the age of geological specimens
+33908,dative dative_case,the category of nouns serving as the indirect object of a verb
+33909,datum data_point,an item of factual information derived from measurement or research
+33910,daub,material used to daub walls
+33911,daub,an unskillful painting
+33912,dauber,an unskilled painter
+33913,daughter girl,a female human offspring; "her daughter cared for her in her old age"
+33914,daughter-in-law,the wife of your son
+33915,daughter_cell,a cell formed by the division or budding of another cell; "anthrax grows by dividing into two daughter cells that are generally identical"
+33916,dauntlessness intrepidity,resolute courageousness
+33917,dauphin,formerly, the eldest son of the King of France and direct heir to the throne
+33918,davallia,any fern of the genus Davallia; having scaly creeping rhizomes
+33919,davenport,a small decorative writing desk
+33920,davenport,a large sofa usually convertible into a bed
+33921,davit,a crane-like device (usually one of a pair) for suspending or lowering equipment (as a lifeboat)
+33922,dawdler drone laggard lagger trailer poke,someone who takes more time than necessary; someone who lags behind
+33923,dawn,an opening time period; "it was the dawn of the Roman Empire"
+33924,dawn dawning morning aurora first_light daybreak break_of_day break_of_the_day dayspring sunrise sunup cockcrow,the first light of day; "we got up before dawn"; "they talked until morning"
+33925,dawn morning,the earliest period; "the dawn of civilization"; "the morning of the world"
+33926,day,an era of existence or influence; "in the day of the dinosaurs"; "in the days of the Roman Empire"; "in the days of sailing ships"; "he was a successful pianist in his day"
+33927,day,the period of time taken by a particular planet (e.g. Mars) to make a complete rotation on its axis; "how long is a day on Jupiter?"
+33928,day,a day assigned to a particular purpose or observance; "Mother's Day"
+33929,day,the recurring hours when you are not sleeping (especially those when you are working); "my day began early this morning"; "it was a busy day on the stock exchange"; "she called it a day and went to bed"
+33930,day,some point or period in time; "it should arrive any day now"; "after that day she never trusted him again"; "those were the days"; "these days it is not unusual"
+33931,day,a period of opportunity; "he deserves his day in court"; "every dog has his day"
+33932,day daytime daylight,the time after sunrise and before sunset while it is light outside; "the dawn turned night into day"; "it is easier to make the repairs in the daytime"
+33933,day twenty-four_hours twenty-four_hour_period 24-hour_interval solar_day mean_solar_day,time for Earth to make a complete rotation on its axis; "two days later they left"; "they put on two performances every day"; "there are 30,000 passengers per day"
+33934,day_boarder,a schoolchild at a boarding school who has meals at school but sleeps at home
+33935,day_camp,a camp providing care and activities for children during the daytime
+33936,day_game,a game played in daylight
+33937,day_jessamine Cestrum_diurnum,West Indian evergreen shrub having clusters of funnel-shaped white flowers that are fragrant by day
+33938,day_laborer day_labourer,a laborer who works by the day; for daily wages
+33939,day_lily daylily,any of numerous perennials having tuberous roots and long narrow bladelike leaves and usually yellow lily-like flowers that bloom for only a day
+33940,day_nursery day_care_center,a nursery for the supervision of preschool children while the parents work
+33941,day_of_the_week,any one of the seven days in a week
+33942,day_off,a day when you are not required to work; "Thursday is his day off"
+33943,day_return,a return ticket (at reduced fare) for traveling both ways in the same day
+33944,day_school,a school giving instruction during the daytime
+33945,day_school,a private school taking day students only
+33946,day_school,a school building without boarding facilities
+33947,day_shift,the work shift during the day (as 8 a.m. to 4 p.m.)
+33948,day_shift day_watch,workers who work during the day (as 8 a.m. to 4 p.m.)
+33949,daybed divan_bed,an armless couch; a seat by day and a bed by night
+33950,daybook journal,a ledger in which transactions have been recorded as they occurred
+33951,daybook ledger,an accounting journal as a physical object; "he bought a new daybook"
+33952,dayboy,a day boarder who is a boy
+33953,daycare day_care,childcare during the day while parents work
+33954,daydreamer woolgatherer,someone who indulges in idle or absentminded daydreaming
+33955,daygirl,a day boarder who is a girl
+33956,daylight,light during the daytime
+33957,daylight-saving_time daylight-savings_time daylight_saving daylight_savings,time during which clocks are set one hour ahead of local standard time; widely adopted during summer to provide extra daylight in the evenings
+33958,daylight_vision photopic_vision,normal vision in daylight; vision with sufficient illumination that the cones are active and hue is perceived
+33959,days years,the time during which someone's life continues; "the monarch's last days"; "in his final years"
+33960,daze fog haze,confusion characterized by lack of clarity
+33961,daze shock stupor,the feeling of distress and disbelief that you have when something bad happens accidentally; "his mother's death left him in a daze"; "he was numb with shock"
+33962,dazzle,brightness enough to blind partially and temporarily
+33963,de-escalation,(war) a reduction in intensity (of a crisis or a war)
+33964,de-iodinase,an enzyme that removes the iodine radical
+33965,de-iodination,the removal of iodine atoms from organic compounds
+33966,deVries De_Vries Hugo_deVries Hugo_De_Vries,Dutch botanist who rediscovered Mendel's laws and developed the mutation theory of evolution (1848-1935)
+33967,de_Gaulle General_de_Gaulle Charles_de_Gaulle General_Charles_de_Gaulle Charles_Andre_Joseph_Marie_de_Gaulle,French general and statesman who became very popular during World War II as the leader of the Free French forces in exile (1890-1970)
+33968,de_Kooning Willem_de_Kooning,United States painter (born in the Netherlands) who was a leading American exponent of abstract expressionism (1904-1997)
+33969,de_Mille Agnes_de_Mille Agnes_George_de_Mille,United States dancer and choreographer who introduced formal dance to a wide audience (1905-1993)
+33970,de_Saussure Ferdinand_de_Saussure Saussure,Swiss linguist and expert in historical linguistics whose lectures laid the foundations for synchronic linguistics (1857-1913)
+33971,de_Valera Eamon_de_Valera,Irish statesman (born in the United States); as president of the Irish Free State he was responsible for the new constitution of 1937 that created the state of Eire (1882-1975)
+33972,de_facto_segregation,segregation (especially in schools) that happens in fact although not required by law
+33973,de_jure_segregation,segregation that is imposed by law
+33974,de_la_Mare Walter_de_la_Mare Walter_John_de_la_Mare,English poet remembered for his verse for children (1873-1956)
+33975,deacon,a cleric ranking just below a priest in Christian churches; one of the Holy Orders
+33976,deacon Protestant_deacon,a Protestant layman who assists the minister
+33977,deaconess,a woman deacon
+33978,deactivation defusing,the act of deactivating or making ineffective (as a bomb)
+33979,deactivation inactivation,breaking up a military unit (by transfers or discharges)
+33980,dead,a time when coldness (or some other quality associated with death) is intense; "the dead of winter"
+33981,dead,people who are no longer living; "they buried the dead"
+33982,dead-air_space,an unventilated area where no air circulates
+33983,dead-man's-fingers dead-men's-fingers Xylaria_polymorpha,the fruiting bodies of the fungi of the genus Xylaria
+33984,dead-man's_float prone_float,a floating position with the face down and arms stretched forward
+33985,dead_air,an inadvertent interruption in a broadcast during which there is no sound
+33986,dead_axle,an axle that carries a wheel but without power to drive it
+33987,dead_center dead_centre,the position of a crank when it is in line with the connecting rod and not exerting torque
+33988,dead_drop,a drop used for the clandestine exchange of intelligence information; "a dead drop avoids the need for an intelligence officer and a spy to be present at the same time"
+33989,dead_duck,something doomed to failure; "he finally admitted that the legislation was a dead duck"; "the idea of another TV channel is now a dead duck"; "as theories go, that's a dead duck"
+33990,dead_hand dead_hand_of_the_past mortmain,the oppressive influence of past events or decisions
+33991,dead_heat,a tie in a race
+33992,dead_language,a language that is no longer learned as a native language
+33993,dead_letter dead_mail,mail that can neither be delivered nor returned
+33994,dead_letter non-issue,the state of something that has outlived its relevance
+33995,dead_load,a constant load on a structure (e.g. a bridge) due to the weight of the supported structure itself
+33996,dead_metaphor frozen_metaphor,a metaphor that has occurred so often that it has become a new meaning of the expression (e.g., `he is a snake' may once have been a metaphor but after years of use it has died and become a new sense of the word `snake')
+33997,dead_nettle,any of various plants of the genus Lamium having clusters of small usually purplish flowers with two lips
+33998,dead_person dead_soul deceased_person deceased decedent departed,someone who is no longer alive; "I wonder what the dead person would have done"
+33999,dead_reckoning,navigation without the aid of celestial observations
+34000,dead_weight,an oppressive encumbrance
+34001,dead_weight,a heavy motionless weight
+34002,deadbeat_dad,a father who willfully defaults on his obligation to provide financial support for his offspring
+34003,deadeye,a dead shot
+34004,deadeye,(nautical) a round hardwood disk with holes and a grooved perimeter used to tighten a shroud
+34005,deadhead,a nonenterprising person who is not paying his way; "the deadheads on the payroll should be eased out as fast as possible"
+34006,deadhead,a train or bus or taxi traveling empty
+34007,deadlight,a strong shutter over a ship's porthole that is closed in stormy weather
+34008,deadline,the point in time at which something must be completed
+34009,deadliness lethality,the quality of being deadly
+34010,deadlock dead_end impasse stalemate standstill,a situation in which no progress can be made or no advancement is possible; "reached an impasse on the negotiations"
+34011,deadness,the physical property of something that has lost its elasticity; "he objected to the deadness of the tennis balls"
+34012,deadness,the inanimate property of something that has died
+34013,deadwood,a branch or a part of a tree that is dead
+34014,deaf,people who have severe hearing impairments; "many of the deaf use sign language"
+34015,deaf-mutism deaf-muteness,congenital deafness that results in inability to speak
+34016,deaf_person,a person with a severe auditory impairment
+34017,deafness hearing_loss,partial or complete loss of hearing
+34018,deal,a plank of softwood (fir or pine board)
+34019,deal,the type of treatment received (especially as the result of an agreement); "he got a good deal on his car"
+34020,deal,the act of distributing playing cards; "the deal was passed around the table clockwise"
+34021,deal,the act of apportioning or distributing something; "the captain was entrusted with the deal of provisions"
+34022,deal trade business_deal,a particular instance of buying or selling; "it was a package deal"; "I had no further trade with him"; "he's a master of the business deal"
+34023,dealer,a seller of illicit goods; "a dealer in stolen goods"
+34024,dealer,the person who distributes the playing cards in a card game
+34025,dealer,a firm engaged in trading
+34026,dealfish Trachipterus_arcticus,deep-sea ribbonfish
+34027,dealignment,a process whereby voters are moved toward nonpartisanship thus weakening the structure of political parties
+34028,dealing,method or manner of conduct in relation to others; "honest dealing"
+34029,dealings traffic,social or verbal interchange (usually followed by `with')
+34030,deamination deaminization,removal of the amino radical from an amino acid or other amino compound
+34031,dean,(Roman Catholic Church) the head of the College of Cardinals
+34032,dean,an administrator in charge of a division of a university or college
+34033,dean doyen,a man who is the senior member of a group; "he is the dean of foreign correspondents"
+34034,deanery,the official residence of a dean
+34035,deanship deanery,the position or office of a dean
+34036,dearth famine shortage,an acute insufficiency
+34037,dearth paucity,an insufficient quantity or number
+34038,death,the absence of life or state of being dead; "he seemed more content in death than he had ever been in life"
+34039,death,the permanent end of all life functions in an organism or part of an organism; "the animal died a painful death"
+34040,death,the act of killing; "he had two deaths on his conscience"
+34041,death decease expiry,the event of dying or departure from life; "her death came as a terrible shock"; "upon your decease the capital will pass to your grandchildren"
+34042,death dying demise,the time when something ends; "it was the death of all his plans"; "a dying of old hopes"
+34043,death last,the time at which life ends; continuing until dead; "she stayed until his death"; "a struggle to the last"
+34044,death's-head_moth Acherontia_atropos,European hawkmoth with markings on the back resembling a human skull
+34045,death's_head,a human skull (or a representation of a human skull) used as a symbol of death
+34046,death-roll,a list of persons killed in a war or other disaster
+34047,death_adder Acanthophis_antarcticus,venomous Australian snake resembling an adder
+34048,death_benefit,insurance or pension money payable to a beneficiary of a deceased
+34049,death_camas zigadene,any of various plants of the genus Zigadenus having glaucous leaves and terminal racemes of mostly white flowers; all are poisonous
+34050,death_camp,a concentration camp where prisoners are likely to die or be killed
+34051,death_cap death_cup death_angel destroying_angel Amanita_phalloides,extremely poisonous usually white fungus with a prominent cup-shaped base; differs from edible Agaricus only in its white gills
+34052,death_house death_row,the cellblock in a prison where those condemned to death await execution
+34053,death_instinct death_wish Thanatos,(psychoanalysis) an unconscious urge to die
+34054,death_knell,an omen of death or destruction
+34055,death_knell death_bell,a bell rung to announce a death
+34056,death_mask,a cast taken from the face of a dead person
+34057,death_seat,the car seat beside the driver of an automobile; believed to be the most dangerous place to sit in a car in case of an accident
+34058,death_squad,a clandestine military or paramilitary team who murder political dissidents or petty criminals (usually with the government's tacit approval)
+34059,death_toll,the number of deaths resulting from some particular cause such as an accident or a battle or a natural disaster
+34060,death_warrant,a warrant to execute the death sentence
+34061,deathbed,the last few hours before death
+34062,deathbed,the bed on which a person dies
+34063,deathblow coup_de_grace,the blow that kills (usually mercifully)
+34064,deathrate death_rate mortality mortality_rate fatality_rate,the ratio of deaths in an area to the population of that area; expressed per 1000 per year
+34065,deathtrap,any structure that is very unsafe; where people are likely to be killed
+34066,deathwatch_beetle deathwatch Xestobium_rufovillosum,bores through wood making a ticking sound popularly thought to presage death
+34067,debacle,flooding caused by a tumultuous breakup of ice in a river during the spring or summer
+34068,debacle fiasco,a sudden and violent collapse
+34069,debarkation disembarkation disembarkment,the act of passengers and crew getting off of a ship or aircraft
+34070,debarment,the state of being debarred (excluded from enjoying certain possessions or rights or practices)
+34071,debarment,the act of prevention by legal means; "they achieved his debarment from holding public office"
+34072,debaser degrader,a person who lowers the quality or character or value (as by adding cheaper metal to coins)
+34073,debate disputation public_debate,the formal presentation of a stated proposition and the opposition to it (usually followed by a vote)
+34074,debater arguer,someone who engages in debate
+34075,debenture,a certificate or voucher acknowledging a debt
+34076,debilitation enervation enfeeblement exhaustion,serious weakening and loss of energy
+34077,debit debit_entry,an accounting entry acknowledging sums that are owing
+34078,debit_card,a card (usually plastic) that enables the holder to withdraw money or to have the cost of purchases charged directly to the holder's bank account
+34079,debit_side,account of payments owed; usually the left side of a financial statement
+34080,debridement,surgical removal of foreign material and dead tissue from a wound in order to prevent infection and promote healing
+34081,debriefing,report of a mission or task
+34082,debris dust junk rubble detritus,the remains of something that has been destroyed or broken up
+34083,debris_surge debris_storm,the sudden spread of dust and debris from a collapsing building; "the destruction of the building produced an enormous debris surge"
+34084,debt,the state of owing something (especially money); "he is badly in debt"
+34085,debt,money or goods or services owed by one person to another
+34086,debt,an obligation to pay or do something
+34087,debt_instrument obligation certificate_of_indebtedness,a written promise to repay a debt
+34088,debt_limit debt_ceiling,the maximum borrowing power of a governmental entity
+34089,debtor debitor,a person who owes a creditor; someone who has the obligation of paying a debt
+34090,debugger,a program that helps in locating and correcting programming errors
+34091,debut,the presentation of a debutante in society
+34092,debutante deb,a young woman making her debut into society
+34093,decade decennary decennium,a period of 10 years
+34094,decadent,a person who has fallen into a decadent state (morally or artistically)
+34095,decaffeinated_coffee decaf,coffee with the caffeine removed
+34096,decagon,a polygon with 10 sides and 10 angles
+34097,decahedron,any polyhedron having ten plane faces
+34098,decal decalcomania,either a design that is fixed to some surface or a paper bearing the design which is to be transferred to the surface
+34099,decalcification,loss of calcium from bones or teeth
+34100,decalcomania,the art of transfering designs from specially prepared paper to a wood or glass or metal surface
+34101,decalescence,phenomenon that occurs when a metal is being heated and there is a sudden slowing in the rate of temperature increase; slowing is caused by a change in the internal crystal structure of the metal
+34102,decameter dekameter decametre dekametre dam dkm,a metric unit of length equal to ten meters
+34103,decampment,breaking camp
+34104,decantation,the act of gently pouring off a clear liquor (as from its original bottle) without disturbing the lees
+34105,decapitation beheading,execution by cutting off the victim's head
+34106,decapitation beheading,killing by cutting off the head
+34107,decapod,cephalopods having eight short tentacles plus two long ones
+34108,decapod_crustacean decapod,crustaceans characteristically having five pairs of locomotor appendages each joined to a segment of the thorax
+34109,decarboxylase,any of the enzymes that hydrolize the carboxyl group
+34110,decarboxylation,the process of removing a carboxyl group from a chemical compound (usually replacing it with hydrogen)
+34111,decasyllable,a verse line having ten syllables
+34112,decathlon,an athletic contest consisting of ten different events
+34113,decay,an inferior state resulting from the process of decaying; "the corpse was in an advanced state of decay"; "the house had fallen into a serious state of decay and disrepair"
+34114,decay,the process of gradually becoming inferior
+34115,decay decline,a gradual decrease; as of stored charge or current
+34116,decay decomposition,the organic phenomenon of rotting
+34117,decay radioactive_decay disintegration,the spontaneous disintegration of a radioactive substance along with the emission of ionizing radiation
+34118,deceiver cheat cheater trickster beguiler slicker,someone who leads you to believe something that is not true
+34119,deceleration,(physics) a rate of decrease in velocity
+34120,deceleration,the act of decelerating; decreasing the speed; "he initiated deceleration by braking"
+34121,deceleration slowing retardation,a decrease in rate of change; "the deceleration of the arms race"
+34122,decency,the quality of conforming to standards of propriety and morality
+34123,decency,the quality of being polite and respectable
+34124,decentralization decentalisation,the social process in which population and industry moves from urban centers to outlying districts
+34125,decentralization decentralisation,the spread of power away from the center to local branches or governments
+34126,deception deceit dissembling dissimulation,the act of deceiving
+34127,deceptiveness obliquity,the quality of being deceptive
+34128,decibel dB,a logarithmic unit of sound intensity; 10 times the logarithm of the ratio of the sound intensity to some reference intensity
+34129,decidua,the epithelial tissue of the endometrium
+34130,deciduous_holly,a holly tree
+34131,deciduous_plant,a plant having foliage that is shed annually at the end of the growing season
+34132,decigram dg,1/10 gram
+34133,decile,(statistics) any of nine points that divided a distribution of ranked scores into equal intervals where each interval contains one-tenth of the scores
+34134,deciliter decilitre dl,a metric unit of volume equal to one tenth of a liter
+34135,decimal,a number in the decimal system
+34136,decimal_digit,a digit from 0 to 9 in decimal notation
+34137,decimal_fraction decimal,a proper fraction whose denominator is a power of 10
+34138,decimal_notation,any notation that uses 10 different characters (usually the digits 0 to 9)
+34139,decimal_numeration_system decimal_number_system decimal_system,a positional system of numeration that uses decimal digits and a base of ten
+34140,decimal_point percentage_point point,the dot at the left of a decimal fraction
+34141,decimalization decimalisation,the act of changing to a decimal system; "the decimalization of British currency"
+34142,decimation,destroying or killing a large part of the population (literally every tenth person as chosen by lot)
+34143,decimeter decimetre dm,a metric unit of length equal to one tenth of a meter
+34144,decipherer,a reader capable of reading and interpreting illegible or obscure text
+34145,decision,(boxing) a victory won on points when no knockout has occurred; "had little trouble in taking a unanimous decision over his opponent"
+34146,decision,the outcome of a game or contest; "the team dropped three decisions in a row"
+34147,decision determination conclusion,a position or opinion or judgment reached after consideration; "a decision unfavorable to the opposition"; "his conclusion took the evidence into account"; "satisfied with the panel's determination"
+34148,decision determination conclusion,the act of making up your mind about something; "the burden of decision was his"; "he drew his conclusions quickly"
+34149,decision_making deciding,the cognitive process of reaching a decision; "a good executive must be good at decision making"
+34150,decision_table,a table of all contingencies and the actions to be taken for each
+34151,decisiveness decision,the trait of resoluteness as evidenced by firmness of character or purpose; "a man of unusual decisiveness"
+34152,deck,a porch that resembles the deck on a ship
+34153,deck,street name for a packet of illegal drugs
+34154,deck,any of various platforms built into a vessel
+34155,deck-house,a superstructure on the upper deck of a ship
+34156,deck_chair beach_chair,a folding chair for use outdoors; a wooden frame supports a length of canvas
+34157,deck_tennis,game played mainly on board ocean liners; players toss a ring back and forth over a net that is stretched across a small court
+34158,decker,(often used in combinations) something constructed with multiple levels; "they rode in a double-decker bus"
+34159,deckhand roustabout,a member of a ship's crew who performs manual labor
+34160,deckle,(paper making) a frame used to form paper pulp into sheets
+34161,deckle_edge deckle,rough edge left by a deckle on handmade paper or produced artificially on machine-made paper
+34162,declamation,recitation of a speech from memory with studied gestures and intonation as an exercise in elocution or rhetoric
+34163,declamation,vehement oratory
+34164,declaration,a statement of taxable goods or of dutiable properties
+34165,declaration,(law) unsworn statement that can be admitted in evidence in a legal transaction; "his declaration of innocence"
+34166,declaration,a statement that is emphatic and explicit (spoken or written)
+34167,declaration_of_estimated_tax estimated_tax_return,return required of a taxpayer whose tax withheld from income does not meet the tax liability for the year
+34168,declarative_sentence declaratory_sentence,a sentence (in the indicative mood) that makes a declaration
+34169,declassification,reduction or removal by the government of restrictions on a classified document or weapon
+34170,declension,the inflection of nouns and pronouns and adjectives in Indo-European languages
+34171,declension,a class of nouns or pronouns or adjectives in Indo-European languages having the same (or very similar) inflectional forms; "the first declension in Latin"
+34172,declination celestial_latitude dec,(astronomy) the angular distance of a celestial body north or to the south of the celestial equator; expressed in degrees; used with right ascension to specify positions on the celestial sphere
+34173,declination regrets,a polite refusal of an invitation
+34174,decline declination,a condition inferior to an earlier condition; a gradual falling off from a better state
+34175,decline diminution,change toward something smaller or lower
+34176,declinometer transit_declinometer,an instrument for measuring magnetic declination
+34177,deco art_deco,a style of design that was popular in the 1920s and 1930s; marked by stylized forms and geometric designs adapted to mass production
+34178,decoction,(pharmacology) the extraction of water-soluble drug substances by boiling
+34179,decoction_process decoction_mashing,(brewing) a process in which part of the mash is removed and boiled and then returned
+34180,decoder,a machine that converts a coded text into ordinary language
+34181,decoder decipherer,the kind of intellectual who converts messages from a code to plain text
+34182,decoding decryption decipherment,the activity of making clear or converting from code into plain text; "a secret key or password is required for decryption"
+34183,decolletage,a low-cut neckline on a woman's dress
+34184,decolonization decolonisation,the action of changing from colonial to independent status
+34185,decomposition decomposition_reaction chemical_decomposition_reaction,(chemistry) separation of a substance into two or more substances that may differ from each other and from the original substance
+34186,decomposition disintegration,in a decomposed state
+34187,decomposition rot rotting putrefaction breakdown,(biology) the process of decay caused by bacterial or fungal action
+34188,decomposition vector_decomposition,the analysis of a vector field
+34189,decompound_leaf,a leaf having divisions that are themselves compound
+34190,decompression,restoring compressed information to its normal form for use or display
+34191,decompression decompressing,relieving pressure (especially bringing a compressed person gradually back to atmospheric pressure)
+34192,decompression_sickness aeroembolism air_embolism gas_embolism caisson_disease bends,pain resulting from rapid change in pressure
+34193,decongestant,a drug that decreases pulmonary congestion
+34194,deconstruction deconstructionism,a philosophical theory of criticism (usually of literature or film) that seeks to expose deep-seated contradictions in a work by delving below its surface meaning
+34195,deconstructivism,a school of architecture based on the philosophical theory of deconstruction
+34196,decontamination,the removal of contaminants
+34197,decoration,the act of decorating something (in the hope of making it more attractive)
+34198,decoration laurel_wreath medal medallion palm ribbon,an award for winning a championship or commemorating some other event
+34199,decoration ornament ornamentation,something used to beautify
+34200,decorativeness,an appearance that serves to decorate and make something more attractive
+34201,decorator ornamentalist,someone who decorates
+34202,decortication,removal of the outer covering of an organ or part
+34203,decorum decorousness,propriety in manners and conduct
+34204,decoupage,art produced by decorating a surface with cutouts and then coating it with several layers of varnish or lacquer
+34205,decoupage,the art of decorating a surface with shapes or pictures and then coating it with varnish or lacquer
+34206,decoy steerer,a beguiler who leads someone into danger (usually as part of a plot)
+34207,decrease decrement,a process of becoming smaller or shorter
+34208,decrease decrement,the amount by which something decreases
+34209,decrease diminution reduction step-down,the act of decreasing or reducing something
+34210,decrease lessening drop-off,a change downward; "there was a decrease in his temperature as the fever subsided"; "there was a sharp drop-off in sales"
+34211,decree edict fiat order rescript,a legally binding command or decision entered on the court record (as if issued by a court or judge); "a friend in New Mexico said that the order caused no trouble out there"
+34212,decree_nisi,a decree issued on a first petition for divorce; becomes absolute at some later date
+34213,decrepitation,the crackling or breaking up of certain crystals when they are heated
+34214,decrepitude dilapidation,a state of deterioration due to old age or long use
+34215,decrescendo diminuendo,(music) a gradual decrease in loudness
+34216,decriminalization decriminalisation,legislation that makes something legal that was formerly illegal
+34217,decubitus,a reclining position (as in a bed)
+34218,decumary Decumaria_barbata Decumaria_barbara,woody climber of southeastern United States having white flowers in compound terminal clusters
+34219,dedicated_file_server,(computer science) a file server that can be used only as a file server
+34220,dedication,a ceremony in which something (as a building) is dedicated to some goal or purpose
+34221,dedication,complete and wholehearted fidelity
+34222,dedication inscription,a short message (as in a book or musical work or on a photograph) dedicating it to someone or something
+34223,dedifferentiation,the loss of specialization in form or function
+34224,deductible,(taxes) an amount that can be deducted (especially for the purposes of calculating income tax)
+34225,deductible,a clause in an insurance policy that relieves the insurer of responsibility to pay the initial loss up to a stated amount
+34226,deduction deductive_reasoning synthesis,reasoning from the general to the particular (or from cause to effect)
+34227,deduction discount,an amount or percentage deducted
+34228,deduction entailment implication,something that is inferred (deduced or entailed or implied); "his resignation had political implications"
+34229,deed deed_of_conveyance title,a legal document signed and sealed and delivered to effect a transfer of property and to show the legal right to possess it; "he signed the deed"; "he kept the title to his car in the glove compartment"
+34230,deed_poll,a deed made and executed by only one party
+34231,deep,the central and most intense or profound part; "in the deep of night"; "in the deep of winter"
+34232,deep,literary term for an ocean; "denizens of the deep"
+34233,deep-dish_pie cobbler,a pie made of fruit with rich biscuit dough usually only on top of the fruit
+34234,deep-freeze Deepfreeze deep_freezer freezer,electric refrigerator (trade name Deepfreeze) in which food is frozen and stored for long periods of time
+34235,deep-sea_diver,a diver in the deeper parts of the sea
+34236,deep_fording,fording at a deep place in the stream
+34237,deep_freeze,temporary inactivity or suspension; "the legislation has now been revived after ten years in the deep freeze"
+34238,deep_middle_cerebral_vein,accompanies the middle cerebral artery deep in the Sylvian fissure; empties into the basal vein
+34239,deep_pockets,(plural) a source of substantial wealth; "a patron of the arts should have deep pockets"
+34240,deep_space,any region in space outside the solar system
+34241,deep_supporting_fire,fire on objectives not in the immediate vicinity of your forces but with the objective of destroying enemy reserves and weapons and interfering with the enemy command and supply and communications
+34242,deep_temporal_vein,temporal veins that empty into the pterygoid plexus
+34243,deep_water,serious trouble
+34244,deepening,a process of becoming deeper and more profound
+34245,deepness,a low pitch that is loud and voluminous
+34246,deepness profundity profoundness,the quality of being physically deep; "the profundity of the mine was almost a mile"
+34247,deepwater_pipefish Cosmocampus_profundus,a fish 8 inches long; found from eastern Florida to western Caribbean
+34248,deepwater_squirrelfish Holocentrus_bullisi,a squirrelfish found from South Carolina to Bermuda and Gulf of Mexico
+34249,deer cervid,distinguished from Bovidae by the male's having solid deciduous antlers
+34250,deer_fern Blechnum_spicant,fern with erect fronds of Europe and western North America; often cultivated for deer browse
+34251,deer_grass meadow_beauty,any of several plants of the genus Rhexia usually having pink-purple to magenta flowers; eastern North America
+34252,deer_hunter,hunter of deer
+34253,deer_hunting deer_hunt,hunting deer
+34254,deer_mouse Peromyscus_maniculatus,brownish New World mouse; most widely distributed member of the genus
+34255,deer_mushroom Pluteus_cervinus,a small edible agaric with a slender stalk; usually found on rotting hardwoods
+34256,deer_trail,a trail worn by the passage of deer
+34257,deerberry squaw_huckleberry Vaccinium_stamineum,small branching blueberry common in marshy areas of the eastern United States having greenish or yellowish unpalatable berries reputedly eaten by deer
+34258,deerskin,leather from the hide of a deer
+34259,deerstalker,a tight-fitting hat with visors front and back; formerly worn by hunters
+34260,deerstalking,stalking deer
+34261,defacement disfigurement disfiguration mutilation,the act of damaging the appearance or surface of something; "the defacement of an Italian mosaic during the Turkish invasion"; "he objected to the dam's massive disfigurement of the landscape"
+34262,defalcation,the sum of money that is misappropriated
+34263,defamation calumny calumniation obloquy traducement hatchet_job,a false accusation of an offense or a malicious misrepresentation of someone's words or actions
+34264,defamer maligner slanderer vilifier libeler backbiter traducer,one who attacks the reputation of another by slander or libel
+34265,default,loss due to not showing up; "he lost the game by default"
+34266,default nonpayment nonremittal,act of failing to meet a financial obligation
+34267,default_judgment default_judgement judgment_by_default judgement_by_default,a judgment entered in favor of the plaintiff when the defendant defaults (fails to appear in court)
+34268,default_option default,an option that is selected automatically unless an alternative is specified
+34269,defaulter,someone who fails to make a required appearance in court
+34270,defaulter,a contestant who forfeits a match
+34271,defaulter deadbeat,someone who fails to meet a financial obligation
+34272,defeat licking,an unsuccessful ending to a struggle or contest; "it was a narrow defeat"; "the army's only defeat"; "they suffered a convincing licking"
+34273,defeated discomfited,people who are defeated; "the Romans had no pity for the defeated"
+34274,defeatism,acceptance of the inevitability of defeat
+34275,defeatist negativist,someone who is resigned to defeat without offering positive suggestions
+34276,defecation laxation shitting,the elimination of fecal waste through the anus
+34277,defecation_reflex rectal_reflex,normal response to the presence of feces in the rectum
+34278,defecator voider shitter,a person who defecates
+34279,defect,an imperfection in a bodily system; "visual defects"; "this device permits detection of defects in the lungs"
+34280,defect fault flaw,an imperfection in an object or machine; "a flaw caused the crystal to shatter"; "if there are any defects you should send it back to the manufacturer"
+34281,defect shortcoming,a failing or deficiency; "that interpretation is an unfortunate defect of our lack of information"
+34282,defective_pleading,any pleading that fails to conform in form or substance to minimum standards of accuracy or sufficiency
+34283,defectiveness faultiness,the state of being defective
+34284,defendant suspect,a person or institution against whom an action is brought in a court of law; the person being sued or accused
+34285,defender guardian protector shielder,a person who cares for persons or property
+34286,defender withstander,a fighter who holds out against attack
+34287,defenestration,the act of throwing someone or something out of a window
+34288,defense defence,protection from harm; "sanitation is the best defense against disease"
+34289,defense defence,the act of defending someone or something against attack or injury; "a good boxer needs a good defense"; "defense against hurricanes is an urgent problem"
+34290,defense defence defending_team,(sports) the team that is trying to prevent the other team from scoring; "his teams are always good on defense"
+34291,defense defence defense_force defence_force,an organization of defenders that provides resistance against attack; "he joined the defense against invasion"
+34292,defense defence defense_team defense_lawyers,the defendant and his legal advisors collectively; "the defense called for a mistrial"
+34293,defense defence defensive_measure,(military) military action or resources protecting a country against potential enemies; "they died in the defense of Stalingrad"; "they were developed for the defense program"
+34294,defense defence denial demurrer,a defendant's answer or plea denying the truth of the charges against him; "he gave evidence for the defense"
+34295,defense defence vindication,the justification for some act or belief; "he offered a persuasive defense of the theory"
+34296,defense_attorney defense_lawyer,the lawyer representing the defendant
+34297,defense_contractor,a contractor concerned with the development and manufacture of systems of defense
+34298,defense_laboratory,a laboratory devoted to research and development for national defense
+34299,defense_mechanism defense_reaction defence_mechanism defence_reaction defense defence,(psychiatry) an unconscious process that tries to reduce the anxiety associated with instinctive desires
+34300,defense_program defense_policy defence_program defence_policy,a program for defending a country against its enemies
+34301,defense_system defence_system,the weaponry available for the defense of a region
+34302,defenselessness defencelessness unprotectedness,the property of being helpless in the face of attack
+34303,defensibility,capability of being defended; "they built their castles with an eye to their defensibility"; "client complaints create a felt need for the defensibility of individual actions"
+34304,defensive defensive_attitude,an attitude of defensiveness (especially in the phrase `on the defensive')
+34305,defensive_structure defense defence,a structure used to defend against attack; "the artillery battered down the defenses"
+34306,defensiveness,excessive sensitivity to criticism; "his defensiveness was manifested in hurt silence"; "the fear of being sued for malpractice has magnified physicians' defensiveness"
+34307,deference respect,a courteous expression (by word or deed) of esteem or regard; "his deference to her wishes was very flattering"; "be sure to give my respects to the dean"
+34308,deference respect respectfulness,courteous regard for people's feelings; "in deference to your wishes"; "out of respect for his privacy"
+34309,deferral recess,a state of abeyance or suspended business
+34310,defervescence,abatement of a fever as indicated by a reduction in body temperature
+34311,defiance,a hostile challenge
+34312,defiance,a defiant act
+34313,defiance rebelliousness,intentionally contemptuous behavior or attitude
+34314,defibrillation,treatment by stopping fibrillation of heart muscles (usually by electric shock delivered by a defibrillator)
+34315,defibrillator,an electronic device that administers an electric shock of preset voltage to the heart through the chest wall in an attempt to restore the normal rhythm of the heart during ventricular fibrillation
+34316,deficiency_disease,any disease caused by a lack of an essential nutrient (as a vitamin or mineral)
+34317,deficit,a deficiency or failure in neurological or mental functioning; "the people concerned have a deficit in verbal memory"; "they have serious linguistic deficits"
+34318,deficit,(sports) the score by which a team or individual is losing
+34319,deficit,an excess of liabilities over assets (usually over a certain period); "last year there was a serious budgetary deficit"
+34320,deficit shortage shortfall,the property of being an amount by which something is less than expected or required; "new blood vessels bud out from the already dilated vascular bed to make up the nutritional deficit"
+34321,deficit_spending compensatory_spending pump_priming,spending money raised by borrowing; used by governments to stimulate their economy
+34322,defilade,the arrangement of defensive fortifications to protect against enemy fire
+34323,defile gorge,a narrow pass (especially one between mountains)
+34324,definite_article,a determiner (as `the' in English) that indicates specificity of reference
+34325,definite_integral,the integral of a function over a definite interval
+34326,definite_quantity,a specific measure of amount
+34327,definition,a concise explanation of the meaning of a word or phrase or symbol
+34328,definition,clarity of outline; "exercise had given his muscles superior definition"
+34329,definitive_host,the host in which the sexual reproduction of a parasite takes place
+34330,deflagration,combustion that propagates through a gas or along the surface of an explosive at a rapid rate driven by the transfer of heat
+34331,deflation,(geology) the erosion of soil as a consequence of sand and dust and loose rocks being removed by the wind; "a constant deflation of the desert landscape"
+34332,deflation,a contraction of economic activity resulting in a decline of prices
+34333,deflation,the act of letting the air out of something
+34334,deflationary_spiral,an episode of deflation in which prices and wages decrease at an increasing rate and currency gains in value
+34335,deflator,a statistical factor designed to remove the effect of inflation; inflation adjusted variables are in constant dollars
+34336,deflection deflexion,the movement of the pointer or pen of a measuring instrument from its zero position
+34337,deflection deflexion bending,the property of being bent or deflected
+34338,deflection deflexion refraction,the amount by which a propagating wave is bent
+34339,deflection warp,a twist or aberration; especially a perverse or abnormal way of judging or acting
+34340,deflector,a device intended to turn aside the flow of something (water or air or smoke etc)
+34341,defloration,an act that despoils the innocence or beauty of something
+34342,defloration,the act of depriving a woman of her virginity (especially by rupturing the hymen through sexual intercourse)
+34343,defoliant,a chemical that is sprayed on plants and causes their leaves to fall off
+34344,defoliation,the loss of foliage
+34345,defoliation,causing the leaves of trees and other plants to fall off (as by the use of chemicals)
+34346,defoliator,an insect that strips the leaves from plants
+34347,deforestation,the state of being clear of trees
+34348,deforestation disforestation,the removal of trees
+34349,deformation,alteration in the shape or dimensions of an object as a result of the application of stress to it
+34350,deformity malformation misshapenness,an affliction in which some part of the body is misshapen or malformed
+34351,defroster deicer,heater that removes ice or frost (as from a windshield or a refrigerator or the wings of an airplane)
+34352,degaussing,the process of making a (steel) ship's hull nonmagnetic by producing an opposing magnetic field
+34353,degeneracy degeneration decadence decadency,the state of being degenerate in mental or moral qualities
+34354,degeneration devolution,the process of declining from a higher to a lower level of effective power or vitality or essential quality
+34355,degeneration retrogression,passing from a more complex to a simpler biological form
+34356,degenerative_disorder,condition leading to progressive loss of function
+34357,degradation debasement,changing to a lower state (a less respected state)
+34358,degree,a unit of temperature on a specified scale; "the game was played in spite of the 40-degree temperature"
+34359,degree,the highest power of a term or variable
+34360,degree,the seriousness of something (e.g., a burn or crime); "murder in the second degree"; "a second degree burn"
+34361,degree arcdegree,a measure for arcs and angles; "there are 360 degrees in a circle"
+34362,degree grade level,a position on a scale of intensity or amount or quality; "a moderate grade of intelligence"; "a high level of care is required"; "it is all a matter of degree"
+34363,degree level stage point,a specific identifiable position in a continuum or series or especially in a process; "a remarkable degree of frankness"; "at what stage are the social sciences?"
+34364,degree_Fahrenheit F,a degree on the Fahrenheit scale of temperature
+34365,degree_centigrade degree_Celsius C,a degree on the centigrade scale of temperature
+34366,degree_day,a unit used in estimating fuel requirements for heating a building
+34367,degree_of_a_polynomial,the degree of the term in the polynomial that has the highest degree
+34368,degree_of_a_term,the sum of the exponents of the variables in the term
+34369,degree_of_freedom,one of the minimum number of parameters needed to describe the state of a physical system
+34370,degree_of_freedom,(statistics) an unrestricted variable in a frequency distribution
+34371,degree_program,a course of study leading to an academic degree
+34372,degressive_tax,any tax in which the rate decreases as the amount subject to taxation increases
+34373,dehiscence,(biology) release of material by splitting open of an organ or tissue; the natural bursting open at maturity of a fruit or other reproductive body to release seeds or spores or the bursting open of a surgically closed wound
+34374,dehumanization dehumanisation,the act of degrading people with respect to their best qualities; "science has been blamed for the dehumanization of modern life"
+34375,dehumidifier,an applicance to extract moisture from the air and make the environment more comfortable; "in summer, we need to run the dehumidifier in the basement"
+34376,dehydrated_food dehydrated_foods,food preserved by dehydration
+34377,dehydration,depletion of bodily fluids
+34378,dehydration desiccation,dryness resulting from the removal of water
+34379,dehydration desiccation drying_up evaporation,the process of extracting moisture
+34380,deictic deictic_word,a word specifying identity or spatial or temporal location from the perspective of a speaker or hearer in the context in which the communication occurs; "words that introduce particulars of the speaker's and hearer's shared cognitive field into the message"- R.Rommetveit
+34381,deification,the condition of being treated like a god
+34382,deification,an embodiment of the qualities of a god; "the capitalists' deification of capital"
+34383,deification exaltation apotheosis,the elevation of a person (as to the status of a god)
+34384,deinocheirus,lightly built medium-sized theropod with long limbs and neck
+34385,deinonychus,swift agile wolf-sized bipedal dinosaur having a large curved claw on each hind foot; of the Cretaceous
+34386,deipnosophist,someone skilled at informal chitchat
+34387,deism free_thought,the form of theological rationalism that believes in God on the basis of reason without reference to revelation
+34388,deist,a person who believes that God created the universe and then abandoned it
+34389,deity divinity god immortal,any supernatural being worshipped as controlling some part of the world or some aspect of life or who is the personification of a force
+34390,deixis,the function of pointing or specifying from the perspective of a participant in an act of speech or writing; aspects of a communication whose interpretation depends on knowledge of the context in which the communication occurs
+34391,deja_vu,the experience of thinking that a new situation had occurred before
+34392,dejection,a state of melancholy depression
+34393,dekagram decagram dkg dag,10 grams
+34394,dekaliter dekalitre decaliter decalitre dal dkl,a metric unit of volume or capacity equal to 10 liters
+34395,dekko,British slang for a look
+34396,delavirdine Rescriptor,a non-nucleoside reverse transcriptase inhibitor (trade name Rescriptor) used to treat AIDS and HIV
+34397,delay hold time_lag postponement wait,time during which some action is awaited; "instant replay caused too long a delay"; "he ordered a hold in the action"
+34398,delay holdup,the act of delaying; inactivity resulting in something being put off until a later time
+34399,delay_line,a circuit designed to introduce a calculated delay into the transmission of a signal
+34400,delayed_action,a mechanism that automatically delays the release of a camera shutter for a fixed period of time so that the photographer can appear in the picture
+34401,delayed_allergy type_IV_allergic_reaction,an allergic reaction that becomes apparent only hours after contact
+34402,delayer,a person who delays; to put off until later or cause to be late
+34403,delectability deliciousness lusciousness toothsomeness,extreme appetizingness
+34404,delegacy,the appointment of a delegate
+34405,delegate,a person appointed or elected to represent others
+34406,delegating delegation relegating relegation deputation,authorizing subordinates to make certain decisions
+34407,deletion,(genetics) the loss or absence of one or more nucleotides from a chromosome
+34408,deletion,the act of deleting something written or printed
+34409,deletion excision cut,the omission that is made when an editorial change shortens a written passage; "an editor's deletions frequently upset young authors"; "both parties agreed on the excision of the proposed clause"
+34410,delf,an excavation; usually a quarry or mine
+34411,delft,a style of glazed earthenware; usually white with blue decoration
+34412,deliberate_defense deliberate_defence,a defense organized before contact is made with the enemy and while time for organization is available; usually includes a fortified zone (with pillboxes) and communication systems
+34413,deliberation,(usually plural) discussion of all sides of a question; "the deliberations of the jury"
+34414,deliberation deliberateness,the trait of thoughtfulness in action or decision; "he was a man of judicial deliberation"
+34415,deliberation weighing advisement,careful consideration; "a little deliberation would have deterred them"
+34416,deliberative_assembly,an assembly of people for the purpose of unhurried consideration and discussion
+34417,delicacy diplomacy discreetness finesse,subtly skillful handling of a situation
+34418,delicacy discretion,refined taste; tact
+34419,delicacy slightness,smallness of stature
+34420,delicatessen deli food_shop,a shop selling ready-to-eat food products
+34421,delicatessen delicatessen_food,ready-to-eat food products
+34422,delight delectation,a feeling of extreme pleasure or satisfaction; "his delight to see her was obvious to all"
+34423,delineation depiction limning line_drawing,a drawing of the outlines of forms or objects
+34424,delinquency,nonpayment of a debt when due
+34425,delinquency dereliction willful_neglect,a tendency to be negligent and uncaring; "he inherited his delinquency from his father"; "his derelictions were not really intended as crimes"; "his adolescent protest consisted of willful neglect of all his responsibilities"
+34426,delinquency juvenile_delinquency,an antisocial misdeed in violation of the law by a minor
+34427,delinquent juvenile_delinquent,a young offender
+34428,delirium,a usually brief state of excitement and mental confusion often accompanied by hallucinations
+34429,delirium_tremens DTs,acute delirium caused by alcohol poisoning
+34430,deliverable,something that can be provided as the product of development; "under this contract the deliverables include both software and hardware"
+34431,deliverer,a person who gives up or transfers money or goods
+34432,delivery,the event of giving birth; "she had a difficult delivery"
+34433,delivery bringing,the act of delivering or distributing something (as goods or mail); "his reluctant delivery of bad news"
+34434,delivery livery legal_transfer,the voluntary transfer of something (title or possession) from one party to another
+34435,delivery obstetrical_delivery,the act of delivering a child
+34436,delivery_truck delivery_van panel_truck,a van suitable for delivering goods or services to customers
+34437,deliveryman delivery_boy deliverer,someone employed to make deliveries
+34438,dell dingle,a small wooded hollow
+34439,delphinium,any plant of the genus Delphinium having palmately divided leaves and showy spikes of variously colored spurred flowers; some contain extremely poisonous substances
+34440,delta,an object shaped like an equilateral triangle
+34441,delta,a low triangular area of alluvial deposits where a river divides before entering a larger body of water; "the Mississippi River delta"; "the Nile delta"
+34442,delta,the 4th letter of the Greek alphabet
+34443,delta_iron,an allotrope of iron that is stable between 1403 degrees centigrade and the melting point (= 1532 degrees)
+34444,delta_ray,an electron ejected from matter by ionizing radiation
+34445,delta_rhythm delta_wave,the normal brainwave in the encephalogram of a person in deep dreamless sleep; occurs with high voltage and low frequency (1 to 4 hertz)
+34446,delta_wing,an airplane with wings that give it the appearance of an isosceles triangle
+34447,deltoid deltoid_muscle musculus_deltoideus,a large triangular muscle covering the shoulder joint and serving to abduct and flex and extend and rotate the arm
+34448,deltoid_leaf,a simple leaf shaped like a capital delta
+34449,deltoid_tuberosity deltoid_eminence,a bump on the outside of the humerus where the deltoid muscle attaches
+34450,delusion hallucination,a mistaken or unfounded opinion or idea; "he has delusions of competence"; "his dreams of vast wealth are a hallucination"
+34451,delusion illusion head_game,the act of deluding; deception by creating illusory ideas
+34452,delusion psychotic_belief,(psychology) an erroneous belief that is held in the face of evidence to the contrary
+34453,delusional_disorder,any mental disorder in which delusions play a significant role
+34454,delusions_of_grandeur,a delusion (common in paranoia) that you are much greater and more powerful and influential than you really are
+34455,delusions_of_persecution,a delusion (common in paranoia) that others are out to get you and frustrate and embarrass you or inflict suffering on you; a complicated conspiracy is frequently imagined
+34456,demagnetization demagnetisation,the process of removing magnetization
+34457,demagogue demagog rabble-rouser,a political leader who seeks support by appealing to popular passions and prejudices
+34458,demagoguery demagogy,impassioned appeals to the prejudices and emotions of the populace
+34459,demand,the ability and desire to purchase goods and services; "the automobile reduced the demand for buggywhips"; "the demand exceeded the supply"
+34460,demand,an urgent or peremptory request; "his demands for attention were unceasing"
+34461,demand,the act of demanding; "the kidnapper's exorbitant demands for money"
+34462,demand-pull_inflation,inflation caused by an increase in demand or in the supply of money
+34463,demand_deposit,a bank deposit from which withdrawals can be made without notice
+34464,demand_feeding,feeding a baby or animal whenever it shows a need
+34465,demand_for_identification,as by a sentry
+34466,demand_note,a note payable on demand
+34467,demander,a person who makes demands
+34468,demantoid,a green andradite used as a gemstone
+34469,demarche,a move or step or maneuver in political or diplomatic affairs
+34470,demeanor demeanour behavior behaviour conduct deportment,(behavioral attributes) the way a person behaves toward other people
+34471,demeclocycline_hydrochloride Declomycin,tetracycline antibacterial (trade name Declomycin) effective in the treatment of some bacterial and rickettsial and other infections
+34472,dementia dementedness,mental deterioration of organic or functional origin
+34473,demerara,a light brown raw cane sugar from Guyana
+34474,demerara demerara_rum,dark rum from Guyana
+34475,demerara demerara_sugar,light brown cane sugar; originally from Guyana
+34476,demerit,a mark against a person for misconduct or failure; usually given in school or armed forces; "ten demerits and he loses his privileges"
+34477,demerit fault,the quality of being inadequate or falling short of perfection; "they discussed the merits and demerits of her novel"; "he knew his own faults much better than she did"
+34478,demiglace demi-glaze,sauce Espagnole with extra beef stock simmered down and seasoned with dry wine or sherry
+34479,demigod superman Ubermensch,a person with great powers and abilities
+34480,demijohn,large bottle with a short narrow neck; often has small handles at neck and is enclosed in wickerwork
+34481,demilitarized_zone DMZ,a zone from which military forces or operations or installations are prohibited; "tensions exist on both sides of the demilitarized zone separating North Korea and South Korea"
+34482,demimondaine,a female prostitute
+34483,demimonde,a class of woman not considered respectable because of indiscreet or promiscuous behavior
+34484,demineralization demineralisation,abnormal loss of mineral salts (especially from bone)
+34485,demineralization demineralisation,the removal of minerals and mineral salts from a liquid (especially from water)
+34486,demister,heater that removes mist from the windshield of a car
+34487,demitasse,small coffee cup; for serving black coffee
+34488,demiurge,a subordinate deity, in some philosophies the creator of the universe
+34489,demobilization demobilisation,act of changing from a war basis to a peace basis including disbanding or discharging troops; "demobilization of factories"; "immediate demobilization of the reserves"
+34490,democracy,the political orientation of those who favor government by the people or by their elected representatives
+34491,democracy republic commonwealth,a political system in which the supreme power lies in a body of citizens who can elect people to represent them
+34492,democrat,an advocate of democratic principles
+34493,democratization democratisation,the action of making something democratic
+34494,demodulation,(electronics) the reception of a signal by extracting it from the carrier wave
+34495,demographer demographist population_scientist,a scientist who studies the growth and density of populations and their vital statistics
+34496,demographic,a statistic characterizing human populations (or segments of human populations broken down by age or sex or income etc.)
+34497,demography human_ecology,the branch of sociology that studies the characteristics of human populations
+34498,demolition,the act of demolishing; "the demolition of the huge tower was quite a spectacle"
+34499,demon,someone extremely diligent or skillful; "he worked like a demon to finish the job on time"; "she's a demon at math"
+34500,demonetization demonetisation,ending something (e.g. gold or silver) as no longer the legal tender of a country
+34501,demoniac,someone who acts as if possessed by a demon
+34502,demonization demonisation,to represent as diabolically evil; "the demonization of our enemies"
+34503,demonstrability provability,capability of being demonstrated or logically proved
+34504,demonstration,a show of military force or preparedness; "he confused the enemy with feints and demonstrations"
+34505,demonstration demo,a visual presentation showing how something works; "the lecture was accompanied by dramatic demonstrations"; "the lecturer shot off a pistol as a demonstration of the startle response"
+34506,demonstration manifestation,a public display of group feelings (usually of a political nature); "there were violent demonstrations against the war"
+34507,demonstration monstrance,proof by a process of argument or a series of proposition proving an asserted conclusion
+34508,demonstrative_pronoun demonstrative,a pronoun that points out an intended referent
+34509,demonstrativeness,tending to express your feelings freely
+34510,demonstrator,a teacher or teacher's assistant who demonstrates the principles that are being taught
+34511,demonstrator protester,someone who participates in a public display of group feeling
+34512,demonstrator sales_demonstrator,someone who demonstrates an article to a prospective buyer
+34513,demoralization demoralisation,a state of disorder and confusion; "his inconsistency resulted in the demoralization of his staff"
+34514,demoralization demoralisation,depression resulting from an undermining of your morale
+34515,demoralization demoralisation,destroying the moral basis for a doctrine or policy
+34516,demotion,act of lowering in rank or position
+34517,demulcent,a medication (in the form of an oil or salve etc.) that soothes inflamed or injured skin
+34518,demur demurral demurrer,(law) a formal objection to an opponent's pleadings
+34519,demureness,the trait of behaving with reserve and decorum
+34520,demurrage,a charge required as compensation for the delay of a ship or freight car or other cargo beyond its scheduled time of departure
+34521,demurrage,detention of a ship or freight car or other cargo beyond its scheduled time of departure
+34522,demurrer,(law) any pleading that attacks the legal sufficiency of the opponent's pleadings
+34523,demyelination,loss of the myelin covering of some nerve fibers resulting in their impaired function
+34524,demythologization demythologisation,the restatement of a message (as a religious one) in rational terms
+34525,den,a unit of 8 to 10 cub scouts
+34526,den,a room that is comfortable and secluded
+34527,den_mother,someone who plays the role of a den mother; "he serves as den mother to all the freshmen in this dormitory"; "she's the den mother to new secretaries"
+34528,den_mother,a woman who supervises a den of Cub Scouts
+34529,denationalization denationalisation privatization privatisation,changing something from state to private ownership or control
+34530,denaturant,any substance that serves as a denaturing agent
+34531,denatured_alcohol,ethyl alcohol that is unfit for drinking but is still useful for other purposes
+34532,denazification de-Nazification,social process of removing Nazis from official positions and giving up any allegiance to Nazism; "denazification was a slow process"
+34533,dendrite,short fiber that conducts toward the cell body of the neuron
+34534,dendrobium,a plant of the genus Dendrobium having stems like cane and usually showy racemose flowers
+34535,dendrology,the study of wooden plants
+34536,dengue dengue_fever dandy_fever breakbone_fever,an infectious disease of the tropics transmitted by mosquitoes and characterized by rash and aching head and joints
+34537,denial,(psychiatry) a defense mechanism that denies painful thoughts
+34538,denial,the act of refusing to comply (as with a request); "it resulted in a complete denial of his privileges"
+34539,denial disaffirmation,the act of asserting that something alleged is not true
+34540,denier,a unit of measurement for the fineness of silk or nylon or rayon; "with an evening dress one wears 10 denier stockings"
+34541,denier,any of various former European coins of different denominations
+34542,denier,one who denies
+34543,denigration belittling,a belittling comment
+34544,denim dungaree jean,a coarse durable twill-weave cotton fabric
+34545,denizen,a plant or animal naturalized in a region; "denizens of field and forest"; "denizens of the deep"
+34546,denomination,a group of religious congregations having its own organization and a distinctive faith
+34547,denomination,a class of one kind of unit in a system of numbers or measures or weights or money; "he flashed a fistful of bills of large denominations"
+34548,denominationalism,the tendency, in Protestantism, to separate into religious denominations or to advocate such separations
+34549,denominator,the divisor of a fraction
+34550,denotatum,an actual object referred to by a linguistic expression
+34551,denouement,the outcome of a complex sequence of events
+34552,denouement,the final resolution of the main complication of a literary or dramatic work
+34553,dense-leaved_elodea Elodea_densa Egeria_densa,aquatic plant with deep green foliage useful to oxygenate an aquarium; sometimes placed in genus Egeria
+34554,dense_blazing_star Liatris_pycnostachya,perennial of southeastern and central United States having very dense spikes of purple flowers; often cultivated for cut flowers
+34555,denseness dumbness slow-wittedness,the quality of being mentally slow and limited
+34556,densimeter densitometer,a measuring instrument for determining density or specific gravity
+34557,densitometer,a measuring instrument for determining optical or photographic density
+34558,densitometry,measuring the optical density of a substance by shining light on it and measuring its transmission
+34559,density denseness,the amount per unit size
+34560,dent,an appreciable consequence (especially a lessening); "it made a dent in my bank account"
+34561,dent ding gouge nick,an impression in a surface (as made by a blow)
+34562,dent_corn Zea_mays_indentata,corn whose kernels contain both hard and soft starch and become indented at maturity
+34563,dental_anatomy,the branch of gross anatomy concerning with the morphology of teeth
+34564,dental_appliance,a device to repair teeth or replace missing teeth
+34565,dental_assistant,an assistant to a dentist
+34566,dental_care,care for the teeth
+34567,dental_floss floss,a soft thread for cleaning the spaces between the teeth
+34568,dental_gold,an alloy of gold used in dentistry
+34569,dental_hygienist,someone trained to provide preventive dental service (cleaning teeth or taking x-rays)
+34570,dental_implant,an implant that replaces a natural tooth
+34571,dental_plaque bacterial_plaque,a film of mucus and bacteria deposited on the teeth that encourages the development of dental caries
+34572,dental_practice,the practice of dentistry
+34573,dental_procedure,a procedure employed by a dentist
+34574,dental_school school_of_dentistry,a graduate school offering study leading to degrees in dentistry
+34575,dental_surgeon,a dentist qualified to perform surgical procedures
+34576,dental_surgery,the branch of dentistry involving surgical procedures
+34577,dental_technician denturist,someone who makes dental appliances (bridges and dentures)
+34578,dentate_leaf,a leaf having a toothed margin
+34579,dentate_nucleus,a large laminar nucleus of grey matter within the white matter of each cerebral hemisphere
+34580,denticle,small pointed ridge on the exoskeleton of an arthropod
+34581,denticulate_leaf,a leaf having a finely toothed margin; minutely dentate
+34582,dentifrice,a substance for cleaning the teeth; applied with a toothbrush
+34583,dentine dentin,a calcareous material harder and denser than bone that comprises the bulk of a tooth
+34584,dentine dentin,bone (calcified tissue) surrounding the pulp cavity of a tooth
+34585,dentist tooth_doctor dental_practitioner,a person qualified to practice dentistry
+34586,dentist's_drill burr_drill,a high speed drill that dentists use to cut into teeth
+34587,dentistry dental_medicine odontology,the branch of medicine dealing with the anatomy and development and diseases of the teeth
+34588,dentition teeth,the kind and number and arrangement of teeth (collectively) in a person or animal
+34589,denture dental_plate plate,a dental appliance that artificially replaces missing teeth
+34590,denudation stripping uncovering baring husking,the removal of covering
+34591,denunciation denouncement,a public act of denouncing
+34592,deodar deodar_cedar Himalayan_cedar Cedrus_deodara,tall East Indian cedar having spreading branches with nodding tips; highly valued for its appearance as well as its timber
+34593,deodorant deodourant,a toiletry applied to the skin in order to mask unpleasant odors
+34594,deontic_logic,the modal logic of obligation and permissibility
+34595,deossification,the loss of the mineral content of bone tissue
+34596,deoxyadenosine,a nucleoside component of DNA; composed of adenosine and deoxyribose
+34597,deoxyadenosine_monophosphate A,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34598,deoxycytidine cytidine,a nucleoside component of DNA; composed of cytosine and deoxyribose
+34599,deoxycytidine_monophosphate C,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34600,deoxyguanosine guanosine,a nucleoside component of DNA; composed of guanine and deoxyribose
+34601,deoxyguanosine_monophosphate G,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34602,deoxyribonucleic_acid desoxyribonucleic_acid DNA,(biochemistry) a long linear polymer found in the nucleus of a cell and formed from nucleotides and shaped like a double helix; associated with the transmission of genetic information; "DNA is the king of molecules"
+34603,deoxyribose,a sugar that is a constituent of nucleic acids
+34604,deoxythymidine thymidine,a nucleoside component of DNA; composed of thymine and deoxyribose
+34605,deoxythymidine_monophosphate T,one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)
+34606,departer leaver goer,someone who leaves
+34607,department,the territorial and administrative division of some countries (such as France)
+34608,department,a specialized sphere of knowledge; "baking is not my department"; "his work established a new department of literature"
+34609,department section,a specialized division of a large organization; "you'll find it in the hardware department"; "she got a job in the historical section of the Treasury"
+34610,department_head,the head of a department
+34611,department_of_computer_science,the academic department responsible for teaching and research in computer science
+34612,department_store emporium,a large retail store organized into departments offering a variety of merchandise; commonly part of a retail chain
+34613,departure going going_away leaving,the act of departing
+34614,departure_gate,gate where passengers embark
+34615,departure_lounge,lounge where passengers can await departure
+34616,departure_tax,a tax that is levied when you are departing a country by land or sea or air
+34617,departure_time time_of_departure,the time at which a public conveyance is scheduled to depart from a given point of origin
+34618,dependability dependableness reliability reliableness,the quality of being dependable or reliable
+34619,dependant dependent,a person who relies on another person for support (especially financial support)
+34620,dependence dependance dependency,the state of relying on or being controlled by someone or something else
+34621,dependent_variable,(statistics) a variable in a logical or mathematical expression whose value depends on the independent variable; "if f(x)=y, y is the dependent variable"
+34622,depersonalization depersonalisation,(existentialism) a loss of personal identity; a feeling of being an anonymous cog in an impersonal social machine
+34623,depersonalization depersonalisation depersonalization_disorder depersonalisation_disorder depersonalization_neurosis depersonalisation_neurosis,emotional dissociative disorder in which there is loss of contact with your own personal reality accompanied by feelings of unreality and strangeness
+34624,depersonalization depersonalisation reification,representing a human being as a physical thing deprived of personal qualities or individuality; "according to Marx, treating labor as a commodity exemplified the reification of the individual"
+34625,depicting depiction portraying portrayal,a representation by picture or portraiture
+34626,depiction delineation portrayal,representation by drawing or painting etc
+34627,depigmentation,absence or loss of pigmentation (or less than normal pigmentation) in the skin or hair
+34628,depilation epilation,the act of removing hair (as from an animal skin)
+34629,depilatory,a chemical (usually a sulfide) used to remove hair or wool or bristles from hides
+34630,depilatory depilator epilator,a cosmetic for temporary removal of undesired hair
+34631,depletion,the state of being depleted
+34632,depletion,the act of decreasing something markedly
+34633,deployment,the distribution of forces in preparation for battle or work
+34634,depolarization depolarisation,a loss of polarity or polarization
+34635,depopulation,the condition of having reduced numbers of inhabitants (or no inhabitants at all)
+34636,deportation,the expulsion from a country of an undesirable alien
+34637,deposit,money given as security for an article acquired for temporary use; "his deposit was refunded when he returned the car"
+34638,deposit,a payment given as a guarantee that an obligation will be met
+34639,deposit bank_deposit,money deposited in a bank or some similar institution
+34640,deposit deposition,the act of putting something somewhere
+34641,deposit sedimentation alluviation,the phenomenon of sediment or gravel accumulating
+34642,deposition,(law) a pretrial interrogation of a witness; usually conducted in a lawyer's office
+34643,deposition deposit,the natural process of laying down a deposit of something
+34644,deposition dethronement,the act of deposing someone; removing a powerful person from a position or office
+34645,depositor,a person who has deposited money in a bank or similar institution
+34646,depository deposit depositary repository,a facility where things can be deposited for storage or safekeeping
+34647,depository_financial_institution bank banking_concern banking_company,a financial institution that accepts deposits and channels the money into lending activities; "he cashed a check at the bank"; "that bank holds the mortgage on my home"
+34648,depravity turpitude,a corrupt or depraved or degenerate act or practice; "the various turpitudes of modern society"
+34649,deprecation,a prayer to avert or remove some evil or disaster
+34650,deprecation denigration,the act of expressing disapproval (especially of yourself)
+34651,depreciation,a decrease in price or value; "depreciation of the dollar against the yen"
+34652,depreciation wear_and_tear,decrease in value of an asset due to obsolescence or use
+34653,depreciation_allowance,an allowance for loss due to depreciation
+34654,depreciation_charge,an amount periodically charged to expense or against revenue in compensation for depreciation of property
+34655,depredation predation,an act of plundering and pillaging and marauding
+34656,depressed_fracture,fracture of the skull where the bone is pushed in
+34657,depression,a mental state characterized by a pessimistic sense of inadequacy and a despondent lack of activity
+34658,depression,angular distance below the horizon (especially of a celestial object)
+34659,depression,sad feelings of gloom and inadequacy
+34660,depression,pushing down; "depression of the space bar on the typewriter"
+34661,depression impression imprint,a concavity in a surface produced by pressing; "he left the impression of his fingers in the soft mud"
+34662,depression slump economic_crisis,a long-term economic state characterized by unemployment and low prices and low levels of trade and investment
+34663,depressive,someone suffering psychological depression
+34664,depressive_disorder clinical_depression depression,a state of depression and anhedonia so severe as to require clinical intervention
+34665,depressor,a device used by physician to press a part down or aside
+34666,depressor depressor_muscle,any skeletal muscle that draws a body part down
+34667,depressor depressor_nerve,any nerve whose activity tends to reduce the activity or tone of the body part it serves
+34668,depth,(usually plural) a low moral state; "he had sunk to the depths of addiction"
+34669,depth,the attribute or quality of being deep, strong, or intense; "the depth of his breathing"; "the depth of his sighs"; "the depth of his emotion"
+34670,depth,degree of psychological or intellectual profundity
+34671,depth deepness,the extent downward or backward or inward; "the depth of the water"; "depth of a shelf"; "depth of a closet"
+34672,depth_charge depth_bomb,a bomb that explodes at a preset depth under water; antisubmarine device
+34673,depth_finder,navigational instrument used to measure the depth of a body of water (as by ultrasound or radar)
+34674,depth_gauge depth_gage,a gauge for measuring the depth of grooves or holes or other concavities
+34675,depths,(plural) the deepest and most remote part; "from the depths of darkest Africa"; "signals received from the depths of space"
+34676,deputation commission delegation delegacy mission,a group of representatives or delegates
+34677,deputy,a member of the lower chamber of a legislative assembly (such as in France)
+34678,deputy deputy_sheriff,someone authorized to exercise the powers of sheriff in emergencies
+34679,deputy lieutenant,an assistant with power to act when his superior is absent
+34680,deputy surrogate,a person appointed to represent or act on behalf of others
+34681,derailment,an accident in which a train runs off its track
+34682,derangement mental_unsoundness unbalance,a state of mental disturbance and disorientation
+34683,deregulation deregulating,the act of freeing from regulation (especially from governmental regulations)
+34684,derelict,a person without a home, job, or property
+34685,dereliction,willful negligence
+34686,derision,contemptuous laughter
+34687,derision ridicule,the act of deriding or treating with contempt
+34688,derivation,(descriptive linguistics) the process whereby new words are formed from existing words or bases by affixation; "`singer' from `sing' or `undo' from `do' are examples of derivations"
+34689,derivation,the source or origin from which something derives (i.e. comes or issues); "he prefers shoes of Italian derivation"; "music of Turkish derivation"
+34690,derivation,a line of reasoning that shows how a conclusion follows logically from accepted propositions
+34691,derivation,drawing of fluid or inflammation away from a diseased part of the body
+34692,derivation,drawing off water from its main channel as for irrigation
+34693,derivation,the act of deriving something or obtaining something from a source or origin
+34694,derivational_morphology,the part of grammar that deals with the derivations of words
+34695,derivative,a compound obtained from, or regarded as derived from, another compound
+34696,derivative,(linguistics) a word that is derived from another word; "`electricity' is a derivative of `electric'"
+34697,derivative_instrument derivative,a financial instrument whose value is based on another security
+34698,derived_function derivative differential_coefficient differential first_derivative,the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx
+34699,deriving derivation etymologizing,(historical linguistics) an explanation of the historical origins of a word or phrase
+34700,dermabrasion,removal of scars or tattoos by anesthetizing the skin surface and then sanding or scraping off some of the outer skin layer
+34701,dermatitis,inflammation of the skin; skin becomes itchy and may develop blisters
+34702,dermatoglyphic,the lines that form patterns on the skin (especially on the fingertips and the palms of the hands and the soles of the feet)
+34703,dermatoglyphics,the study of the whorls and loops and arches in the fingertips and on the palms of the hand and the soles of the feet; "some criminologists specialize in dermatoglyphics"
+34704,dermatologist skin_doctor,a doctor who specializes in the physiology and pathology of the skin
+34705,dermatology,the branch of medicine dealing with the skin and its diseases
+34706,dermatome,a surgical instrument used to cut very thin slices of skin
+34707,dermatomycosis dermatophytosis,fungal infection of the skin (especially of moist parts covered by clothing)
+34708,dermatomyositis,myositis characterized by weakness of limb and neck muscles and much muscle pain and swelling accompanied by skin rash affecting cheeks and eyelids and neck and chest and limbs; progression and severity vary among individuals
+34709,dermatosis,disorder involving lesions or eruptions of the skin (in which there is usually no inflammation)
+34710,dermis corium derma,the deep vascular inner layer of the skin
+34711,dermoid_cyst,a cystic tumor (usually benign) with a wall lined with epithelium and a cavity containing other material
+34712,derogation,(law) the partial taking away of the effectiveness of a law; a partial repeal or abolition of a law; "any derogation of the common law is to be strictly construed"
+34713,derrick,a framework erected over an oil well to allow drill tubes to be raised and lowered
+34714,derrick,a simple crane having lifting tackle slung from a boom
+34715,derring-do,brave and heroic feats
+34716,derringer,a pocket pistol of large caliber with a short barrel
+34717,derris,any of various usually woody vines of the genus Derris of tropical Asia whose roots yield the insecticide rotenone; several are sources of native fish and arrow poisons
+34718,derris_root tuba_root Derris_elliptica,woody vine having bright green leaves and racemes of rose-tinted white flowers; the swollen roots contain rotenone
+34719,derv,diesel oil used in cars and lorries with diesel engines; from d(iesel) e(ngine) r(oad) v(ehicle)
+34720,dervish,an ascetic Muslim monk; a member of an order noted for devotional exercises involving bodily movements
+34721,desalination desalinization desalinisation,the removal of salt (especially from sea water)
+34722,descant discant,a decorative musical accompaniment (often improvised) added above a basic melody
+34723,descendant descendent,a person considered as descended from some ancestor
+34724,descendants posterity,all of the offspring of a given progenitor; "we must secure the benefits of freedom for ourselves and our posterity"
+34725,descender,someone who descends
+34726,descender,a lowercase letter that has a part extending below other lowercase letters
+34727,descender,(printing) the part of lowercase letters that extends below the other lowercase letters
+34728,descending_aorta,the descending part of the aorta that branches into the thoracic and abdominal aortae
+34729,descending_colon,the part of the large intestine that descends from the transverse colon to the sigmoid colon
+34730,descending_node,the point at which an orbit crosses the ecliptic plane going south
+34731,descent,a movement downward
+34732,descent,the act of changing your location in a downward direction
+34733,descent declivity fall decline declination declension downslope,a downward slope or bend
+34734,descent line_of_descent lineage filiation,the kinship relation between an individual and the individual's progenitors
+34735,description,the act of describing something
+34736,description,sort or variety; "every description of book was there"
+34737,description verbal_description,a statement that represents something in words
+34738,descriptive_adjective qualifying_adjective,an adjective that ascribes to its noun the value of an attribute of that noun (e.g., `a nervous person' or `a musical speaking voice')
+34739,descriptive_grammar,a grammar that is produced by descriptive linguistics
+34740,descriptive_linguistics,a description (at a given point in time) of a language with respect to its phonology and morphology and syntax and semantics without value judgments
+34741,descriptivism,(ethics) a doctrine holding that moral statements have a truth value
+34742,descriptivism,(linguistics) a doctrine supporting or promoting descriptive linguistics
+34743,descriptor,a piece of stored information that is used to identify an item in an information storage and retrieval system
+34744,desensitization desensitisation,the process of reducing sensitivity; "the patient was desensitized to the allergen"
+34745,desensitization_technique desensitisation_technique desensitization_procedure desensitisation_procedure systematic_desensitization systematic_desensitisation,a technique used in behavior therapy to treat phobias and other behavior problems involving anxiety; client is exposed to the threatening situation under relaxed conditions until the anxiety reaction is extinguished
+34746,desert,arid land with little or no vegetation
+34747,desert,(usually plural) a person's deservingness of or entitlement to reward or punishment
+34748,desert_four_o'clock Colorado_four_o'clock maravilla Mirabilis_multiflora,wildflower having vibrant deep pink tubular evening-blooming flowers; found in sandy and desert areas from southern California to southern Colorado and into Mexico
+34749,desert_holly Atriplex_hymenelytra,handsome low saltbush of arid southwestern United States and Mexico having blue-green prickly-edged leaves often used for Christmas decoration
+34750,desert_iguana Dipsosaurus_dorsalis,small long-tailed lizard of arid areas of southwestern United States and northwestern Mexico
+34751,desert_mariposa_tulip Calochortus_kennedyi,mariposa with clusters of bell-shaped vermilion or orange or yellow flowers atop short stems; southern California to Arizona and Mexico
+34752,desert_paintbrush Castilleja_chromosa,most common paintbrush of western United States dry lands; having erect stems ending in dense spikes of bright orange to red flowers
+34753,desert_pea Sturt_pea Sturt's_desert_pea Clianthus_formosus Clianthus_speciosus,sprawling shrubby perennial noted for its scarlet black-marked flowers; widely distributed in dry parts of Australia
+34754,desert_plant xerophyte xerophytic_plant xerophile xerophilous_plant,plant adapted for life with a limited supply of water; compare hydrophyte and mesophyte
+34755,desert_plume prince's-plume Stanleya_pinnata Cleome_pinnata,perennial of southwestern United States having leathery blue-green pinnatifid leaves and thick plumelike spikes of yellow flowers; sometimes placed in genus Cleome
+34756,desert_sand_verbena Abronia_villosa,soft-haired sticky plant with heads of bright pink trumpet-shaped flowers; found in sandy desert soil; after ample rains may carpet miles of desert with pink from the southwestern United States to northern Mexico
+34757,desert_selaginella Selaginella_eremophila,prostrate spikemoss; California
+34758,desert_soil desertic_soil,a type of soil that develops in arid climates
+34759,desert_sunflower Gerea_canescens,slender hairy plant with few leaves and golden-yellow flower heads; sandy desert areas of southeastern California to southwestern Utah and western Arizona and northwestern Mexico
+34760,desert_tortoise Gopherus_agassizii,burrowing tortoise of the arid western United States and northern Mexico; may be reclassified as a member of genus Xerobates
+34761,desert_willow Chilopsis_linearis,evergreen shrubby tree resembling a willow of dry regions of southwestern North America having showy purplish flowers and long seed pods
+34762,deserter apostate renegade turncoat recreant ratter,a disloyal person who betrays or deserts his cause or religion or political party or friend etc.
+34763,deserter defector,a person who abandons their duty (as on a military post)
+34764,desertification,the gradual transformation of habitable land into desert; is usually caused by climate change or by destructive use of the land; "the dust storms in Korea are the result of rapid desertification in China"
+34765,desertion abandonment defection,withdrawing support or help despite allegiance or responsibility; "his abandonment of his wife and children left them penniless"
+34766,deservingness merit meritoriousness,the quality of being deserving (e.g., deserving assistance); "there were many children whose deservingness he recognized and rewarded"
+34767,desiccant drying_agent drier siccative,a substance that promotes drying (e.g., calcium oxide absorbs water and is used to remove moisture)
+34768,desideratum,something desired as a necessity; "the desiderata for a vacation are time and money"
+34769,design,a preliminary sketch indicating the plan for something; "the design of a building"
+34770,design designing,the act of working out the form of something (as by making a sketch or outline or plan); "he contributed to the design of a new instrument"
+34771,design pattern figure,a decorative or artistic work; "the coach had a design on the doors"
+34772,design plan,an arrangement scheme; "the awkward design of the keyboard made operation difficult"; "it was an excellent design for living"; "a plan for seating guests"
+34773,design_criteria,criteria that designers should meet in designing some system or device; "the job specifications summarized the design criteria"
+34774,designated_driver,the member of a party who is designated to refrain from alcohol and so is sober when it is time to drive home
+34775,designated_hitter,a ballplayer who is designated to bat in place of the pitcher
+34776,designation identification,the act of designating or identifying something
+34777,designatum,something (whether existing or not) that is referred to by a linguistic expression
+34778,designer intriguer,a person who devises plots or intrigues; "he is believed to be the principal designer of the terrorist bombing attack"
+34779,designer_drug,a psychoactive drug deliberately synthesized to avoid anti-drug laws; mimics the effects of a banned drug; law was revised in 1986 to ban designer drugs
+34780,desipramine,a tricyclic antidepressant drug that activates the psychomotor system
+34781,desirability desirableness,the quality of being worthy of desiring
+34782,desire,something that is desired
+34783,desire,the feeling that accompanies an unsatisfied state
+34784,desire,an inclination to want things; "a man of many desires"
+34785,desire_to_know lust_for_learning thirst_for_knowledge,curiosity that motivates investigation and study
+34786,desk,a piece of furniture with a writing surface and usually drawers or other compartments
+34787,desk_clerk hotel_desk_clerk hotel_clerk,a hotel receptionist
+34788,desk_dictionary collegiate_dictionary,an abridged dictionary of a size convenient to hold in the hand
+34789,desk_officer,a military officer who is not assigned to active duty
+34790,desk_phone,a telephone set that sits on a desk or table
+34791,desk_sergeant deskman station_keeper,the police sergeant on duty in a police station
+34792,desktop,the top of a desk
+34793,desktop_computer,a personal computer small enough to fit conveniently in an individual workspace
+34794,desktop_publishing,(computer science) the use of microcomputers with graphics capacity to produce printed materials
+34795,desmid,freshwater green algae
+34796,desorption,changing from an adsorbed state on a surface to a gaseous or liquid state
+34797,despair,the feeling that everything is wrong and nothing will turn out well; "they moaned in despair and dismay"; "one harsh word would send her into the depths of despair"
+34798,despair desperation,a state in which all hope is lost or absent; "in the depths of despair"; "they were rescued from despair at the last minute"; "courage born of desperation"
+34799,desperado desperate_criminal,a bold outlaw (especially on the American frontier)
+34800,desperate,a person who is frightened and in need of help; "they prey on the hopes of the desperate"
+34801,desperate_measure,desperate actions taken as a means to an end; "he had to resort to desperate measures"
+34802,desperate_straits dire_straits,a state of extreme distress
+34803,desperation,desperate recklessness; "it was a policy of desperation"
+34804,despisal despising,a feeling of scornful hatred
+34805,despite,contemptuous disregard; "she wanted neither favor nor despite"
+34806,despondency despondence heartsickness disconsolateness,feeling downcast and disheartened and hopeless
+34807,desquamation peeling shedding,loss of bits of outer skin by peeling or shedding or coming off in scales
+34808,dessert sweet afters,a dish served as the last course of a meal
+34809,dessert_plate,a small plate on which dessert can be served
+34810,dessert_spoon,a spoon larger than a teaspoon and smaller than a tablespoon
+34811,dessert_wine,still sweet wine often served with dessert or after a meal
+34812,dessertspoon dessertspoonful,as much as a dessert spoon will hold
+34813,dessiatine,a former Russian unit of area equal to 2.7 acres
+34814,destabilization,an event that causes a loss of equilibrium (as of a ship or aircraft)
+34815,destabilization destabilisation,the action of destabilizing; making something less stable (especially of a government or country or economy)
+34816,destalinization de-Stalinization destalinisation de-Stalinisation,social process of neutralizing the influence of Joseph Stalin by revising his policies and removing monuments dedicated to him and renaming places named in his honor; "his statue was demolished as part of destalinization"
+34817,destination terminus,the ultimate goal for which something is done
+34818,destiny fate,the ultimate agency regarded as predetermining the course of events (often personified as a woman); "we are helpless in the face of destiny"
+34819,destiny fate,an event (or a course of events) that will inevitably happen in the future
+34820,destitution,a state without friends or money or prospects
+34821,destroyer guided_missile_destroyer,a small fast lightly armored but heavily armed warship
+34822,destroyer ruiner undoer waster uprooter,a person who destroys or ruins or lays waste to; "a destroyer of the environment"; "jealousy was his undoer"; "uprooters of gravestones"
+34823,destroyer_escort,warship smaller than a destroyer; designed to escort fleets or convoys
+34824,destroying_angel Amanita_verna,fungus similar to Amanita phalloides
+34825,destructibility,vulnerability to destruction
+34826,destruction demolition wipeout,an event (or the result of an event) that completely destroys something
+34827,destruction devastation,the termination of something by causing so much damage to it that it cannot be repaired or no longer exists
+34828,destruction_fire,fire delivered for the sole purpose of destroying material objects
+34829,destructive_distillation,heating a solid substance in a closed container and collecting the volatile products
+34830,destructiveness,the quality of causing destruction
+34831,desuetude,a state of inactivity or disuse
+34832,detached_house single_dwelling,a house that stands alone
+34833,detachment,a small unit of troops of special composition
+34834,detachment disengagement,the act of releasing from an attachment or connection
+34835,detail,a crew of workers selected for a particular task; "a detail was sent to remove the fallen trees"
+34836,detail,extended treatment of particulars; "the essay contained too much detail"
+34837,detail item point,an isolated fact that is considered separately from the whole; "several of the details are similar"; "a point of information"
+34838,detail particular item,a small part that can be considered separately from the whole; "it was perfect in all details"
+34839,details inside_information,true confidential information; "after the trial he gave us the real details"
+34840,detainee political_detainee,some held in custody
+34841,detection catching espial spying spotting,the act of detecting something; catching sight of something
+34842,detection detecting detective_work sleuthing,a police investigation to determine the perpetrator; "detection is hard on the feet"
+34843,detection sensing,the perception that something has occurred or some state exists; "early detection can often lead to a cure"
+34844,detective,an investigator engaged or employed in obtaining information not easily available to the public
+34845,detective investigator tec police_detective,a police officer who investigates crimes
+34846,detective_agency,an agency that makes inquiries for its clients
+34847,detective_novel mystery_novel,novel in which the reader is challenged to solve a puzzle before the detective explains it at the end
+34848,detective_story,a narrative about someone who investigates crimes and obtains evidence leading to their resolution
+34849,detector,electronic equipment that detects the presence of radio signals or radioactivity
+34850,detector demodulator,rectifier that extracts modulation from a radio carrier wave
+34851,detector sensor sensing_element,any device that receives a signal or stimulus (as heat or pressure or light or motion etc.) and responds to it in a distinctive manner
+34852,detente,the easing of tensions or strained relations (especially between nations)
+34853,detention,a punishment in which a student must stay at school after others have gone home; "the detention of tardy pupils"
+34854,detention detainment hold custody,a state of being confined (usually for a short time); "his detention was politically motivated"; "the prisoner is on hold"; "he is in the custody of police"
+34855,detention_basin,a storage site (such as a small reservoir) that delays the flow of water downstream
+34856,detention_home detention_house house_of_detention detention_camp,an institution where juvenile offenders can be held temporarily (usually under the supervision of a juvenile court)
+34857,detergency detergence,detergent quality; the quality of having cleansing power
+34858,detergent,a surface-active chemical widely used in industry and laundering
+34859,detergent,a cleansing agent that differs from soap but can also emulsify oils and hold dirt in suspension
+34860,deterioration decline_in_quality declension worsening,process of changing to an inferior state
+34861,deterioration impairment,a symptom of reduced quality or strength
+34862,determent deterrence intimidation,a communication that makes you afraid to try something
+34863,determinant,a square matrix used to solve simultaneous equations
+34864,determinant determiner determinative determining_factor causal_factor,a determining or causal element or factor; "education is an important determinant of one's outlook on life"
+34865,determinateness definiteness,the quality of being predictable with great confidence
+34866,determination,deciding or controlling something's outcome or nature; "the determination of grammatical inflections"
+34867,determination finding,the act of determining the properties of something, usually by research or calculation; "the determination of molecular structures"
+34868,determination purpose,the quality of being determined to do or achieve something; firmness of purpose; "his determination showed in his every movement"; "he is a man of purpose"
+34869,determiner determinative,one of a limited class of noun modifiers that determine the referents of noun phrases
+34870,determinism,(philosophy) a philosophical theory holding that all events are inevitable consequences of antecedent sufficient causes; often understood as denying the possibility of free will
+34871,deterrence,the act or process of discouraging actions or preventing occurrences by instilling fear or doubt or anxiety
+34872,detonating_fuse,a fuse containing an explosive
+34873,detonation,the act of detonating an explosive
+34874,detonator detonating_device cap,a mechanical or electrical explosive device or a small amount of explosive; can be used to initiate the reaction of a disrupting explosive
+34875,detour roundabout_way,a roundabout road (especially one that is used temporarily while a main route is blocked)
+34876,detox,the hospital ward or clinic in which patients are detoxified
+34877,detoxification,a treatment for addiction to drugs or alcohol intended to remove the physiological effects of the addictive substances
+34878,detoxification,treatment for poisoning by neutralizing the toxic properties (normally a function of the liver)
+34879,detraction,the act of discrediting or detracting from someone's reputation (especially by slander); "let it be no detraction from his merits to say he is plainspoken"
+34880,detraction petty_criticism,a petty disparagement
+34881,detractor disparager depreciator knocker,one who disparages or belittles the worth of something
+34882,detribalization detribalisation,the act of causing tribal people to abandon their customs and adopt urban ways of living
+34883,detribalization detribalisation,the decline or termination of tribal organization
+34884,detriment hurt,a damage or loss
+34885,detritus,loose material (stone fragments and silt etc) that is worn away from rocks
+34886,detumescence,diminution of swelling; the subsidence of anything swollen
+34887,deuce,a tie in tennis or table tennis that requires winning two successive points to win the game
+34888,deuce two,one of the four playing cards in a deck that have two spots
+34889,deus_ex_machina,any active agent who appears unexpectedly to solve an insoluble difficulty
+34890,deuteranopia Daltonism green-blindness,dichromacy characterized by a lowered sensitivity to green light resulting in an inability to distinguish green and purplish-red
+34891,deuterium heavy_hydrogen,an isotope of hydrogen which has one neutron (as opposed to zero neutrons in hydrogen)
+34892,deuteron,the nucleus of deuterium; consists of one proton and one neutron; used as a bombarding particle in accelerators
+34893,deutzia,any of various shrubs of the genus Deutzia having usually toothed opposite leaves and shredding bark and white or pink flowers in loose terminal clusters
+34894,devaluation,an official lowering of a nation's currency; a decrease in the value of a country's currency relative to that of foreign countries
+34895,devaluation,the reduction of something's value or worth
+34896,devastation,the feeling of being confounded or overwhelmed; "her departure left him in utter devastation"
+34897,devastation desolation,the state of being decayed or destroyed
+34898,devastation desolation,an event that results in total destruction
+34899,developer,someone who develops real estate (especially someone who prepares a site for residential or commercial use)
+34900,developer,photographic equipment consisting of a chemical solution for developing film
+34901,developing_country,a country that is poor and whose citizens are mostly agricultural workers but that wants to become more advanced socially and economically
+34902,development,a state in which things are improving; the result of developing (as in the early part of a game of chess); "after he saw the latest development he changed his mind and became a supporter"; "in chess your should take care of your development before moving your queen"
+34903,development,a district that has been developed to serve some purpose; "such land is practical for small park developments"
+34904,development,a recent event that has some relevance for the present situation; "recent developments in Iraq"; "what a revolting development!"
+34905,development,(music) the section of a composition or movement (especially in sonata form) where the major musical themes are developed and elaborated
+34906,development,act of improving by expanding or enlarging or refining; "he congratulated them on their development of a plan to meet the emergency"; "they funded research and development"
+34907,development developing,processing a photosensitive material in order to make an image visible; "the development and printing of his pictures took only two hours"
+34908,development evolution,a process in which something passes by degrees to a different stage (especially a more advanced or mature stage); "the development of his ideas took many years"; "the evolution of Greek civilization"; "the slow development of her skill as a writer"
+34909,developmental_age,a measure of a child's development (in body size or motor skill or psychological function) expressed in terms of age norms
+34910,developmental_anatomy,the branch of anatomy that studies structural changes of an individual from fertilization to maturity
+34911,developmental_learning,learning that takes place as a normal part of cognitive development
+34912,developmental_psychology genetic_psychology child_psychology,the branch of psychology that studies the social and mental development of children
+34913,deviated_nasal_septum,abnormal shift in location of the nasal septum; a common condition causing obstruction of the nasal passages and difficulty in breathing and recurrent nosebleeds
+34914,deviated_septum,abnormal displacement of any wall that separates two chambers (usually in the nasal cavity)
+34915,deviation,the difference between an observed value and the expected value of a variable or function
+34916,deviation,the error of a compass due to local magnetic disturbances
+34917,deviation deviance,deviate behavior
+34918,deviation divergence departure difference,a variation that deviates from the standard or norm; "the deviation from the mean"
+34919,deviationism,ideological defection from the party line (especially from orthodox communism)
+34920,deviationist,an ideological defector from the party line (especially from orthodox communism)
+34921,device,something in an artistic work designed to achieve a particular effect
+34922,device,any ornamental pattern or design (as in embroidery)
+34923,device,an emblematic design (especially in heraldry); "he was recognized by the device on his shield"
+34924,device,an instrumentality invented for a particular purpose; "the device is small enough to wear on your wrist"; "a device intended to conserve water"
+34925,device gimmick twist,any clever maneuver; "he would stoop to any device to win a point"; "it was a great sales gimmick"; "a cheap promotions gimmick for greedy businessmen"
+34926,devices,an inclination or desire; used in the plural in the phrase `left to your own devices'; "eventually the family left the house to the devices of this malevolent force"; "the children were left to their own devices"
+34927,devil deuce dickens,a word used in exclamations of confusion; "what the devil"; "the deuce with it"; "the dickens you say"
+34928,devil fiend demon daemon daimon,an evil supernatural being
+34929,devil's_advocate,someone who takes the worse side just for the sake of argument
+34930,devil's_cigar,a common name for a variety of Sarcosomataceae
+34931,devil's_food devil's_food_cake,very dark chocolate cake
+34932,devil's_tongue snake_palm umbrella_arum Amorphophallus_rivieri,foul-smelling somewhat fleshy tropical plant of southeastern Asia cultivated for its edible corms or in the greenhouse for its large leaves and showy dark red spathe surrounding a large spadix
+34933,devil's_urn,a common name for a variety of Sarcosomataceae
+34934,devil_ray Mobula_hypostoma,small manta (to 4 feet) that travels in schools
+34935,devil_worshiper,someone who worships devils
+34936,deviled_egg stuffed_egg,halved hard-cooked egg with the yolk mashed with mayonnaise and seasonings and returned to the white
+34937,deviltry devilry,wicked and cruel behavior
+34938,devilwood American_olive Osmanthus_americanus,small tree of southern United States having panicles of dull white flowers followed by dark purple fruits
+34939,deviousness obliqueness,the quality of being oblique and rambling indirectly
+34940,devisal contrivance,the act of devising something
+34941,devise,a will disposing of real property
+34942,devise,(law) a gift of real property by will
+34943,devisee,someone to whom property (especially realty) is devised by will
+34944,devising fashioning making,the act that results in something coming to be; "the devising of plans"; "the fashioning of pots and pans"; "the making of measurements"; "it was already in the making"
+34945,devisor,someone who devises real property in a will
+34946,devitalization devitalisation,the act of reducing the vitality of something
+34947,devoir,formal expression of respect
+34948,devolution devolvement,the delegation of authority (especially from a central to a regional government)
+34949,devotion,commitment to some purpose; "the devotion of his time and wealth to science"
+34950,devotion,(usually plural) religious observance or prayers (usually spoken silently); "he returned to his devotions"
+34951,devotion devotedness,feelings of ardent love; "their devotion to each other was beautiful"
+34952,devotion veneration cultism,religious zeal; the willingness to serve God
+34953,devotional,a short religious service
+34954,devourer,someone who eats greedily or voraciously
+34955,devoutness religiousness,piety by virtue of being devout
+34956,dew,water that has condensed on a cool surface overnight from water vapor in the air; "in the morning the grass was wet with dew"
+34957,dew_point,the temperature at which the water vapor in the air becomes saturated and condensation begins
+34958,dewberry,blackberry-like fruits of any of several trailing blackberry bushes
+34959,dewberry dewberry_bush running_blackberry,any of several trailing blackberry brambles especially of North America
+34960,dewdrop,a drop of dew
+34961,dewlap,a hanging fold of loose skin on an elderly person's neck
+34962,dexamethasone Decadron Dexamethasone_Intensol Dexone Hexadrol Oradexon,a corticosteroid drug (trade names Decadron or Dexamethasone Intensol or Dexone or Hexadrol or Oradexon) used to treat allergies or inflammation
+34963,dexterity manual_dexterity sleight,adroitness in using the hands
+34964,dextrin,any of various polysaccharides obtained by hydrolysis of starch; a tasteless and odorless gummy substance that is used as a thickening agent and in adhesives and in dietary supplements
+34965,dextroamphetamine_sulphate Dexedrine,an isomer of amphetamine (trade name Dexedrine) used as a central nervous system stimulant
+34966,dextrocardia,abnormal condition where the heart is located toward the right side of the chest
+34967,dextrorotation clockwise_rotation,rotation to the right
+34968,dextrose dextroglucose grape_sugar,an isomer of glucose that is found in honey and sweet fruits
+34969,dhak dak palas Butea_frondosa Butea_monosperma,East Indian tree bearing a profusion of intense vermilion velvet-textured blooms and yielding a yellow dye
+34970,dhawa dhava,an Indian tree of the family Combretaceae that is a source of timber and gum
+34971,dhobi_itch,fungal infection attacking moist parts of the body
+34972,dhole Cuon_alpinus,fierce wild dog of the forests of central and southeast Asia that hunts in packs
+34973,dhoti,a long loincloth worn by Hindu men
+34974,dhow,a lateen-rigged sailing vessel used by Arabs
+34975,di-iodotyrosine,tyrosine with two iodine atoms added
+34976,diabetes,a polygenic disease characterized by abnormally high glucose levels in the blood; any of several metabolic disorders marked by excessive urination and persistent thirst
+34977,diabetes_insipidus,a rare form of diabetes resulting from a deficiency of vasopressin (the pituitary hormone that regulates the kidneys); characterized by the chronic excretion of large amounts of pale dilute urine which results in dehydration and extreme thirst
+34978,diabetes_mellitus DM,diabetes caused by a relative or absolute deficiency of insulin and characterized by polyuria; "when doctors say `diabetes' they usually mean `diabetes mellitus'"
+34979,diabetic,someone who has diabetes
+34980,diabetic_coma Kussmaul's_coma,coma that can develop in inadequately treated cases of diabetes mellitus
+34981,diabetic_diet,a diet designed to help control the symptoms of diabetes
+34982,diabetic_retinopathy,retinopathy involving damage to the small blood vessels in the retina; results from chronically high blood glucose levels in people with poorly controlled diabetes
+34983,diabolatry demonolatry devil-worship,the acts or rites of worshiping devils
+34984,diabolism demonism Satanism,a belief in and reverence for devils (especially Satan)
+34985,diacritical_mark diacritic,a mark added to a letter to indicate a special pronunciation
+34986,diagnosis diagnosing,identifying the nature or cause of some phenomenon
+34987,diagnostic_procedure diagnostic_technique,a procedure followed in making a medical diagnosis
+34988,diagnostic_program,a program that recognizes and explains faults in the equipment or mistakes in a computer program
+34989,diagnostic_test diagnostic_assay,an assay conducted for diagnostic purposes
+34990,diagnostician pathologist,a doctor who specializes in medical diagnosis
+34991,diagonal,(geometry) a straight line connecting any two vertices of a polygon that are not adjacent
+34992,diagonal,an oblique line of squares of the same color on a checkerboard; "the bishop moves on the diagonals"
+34993,diagonal,(mathematics) a set of entries in a square matrix running diagonally either from the upper left to lower right entry or running from the upper right to lower left entry
+34994,diagonal bias,a line or cut across a fabric that is not at right angles to a side of the fabric
+34995,diagonal_matrix,a square matrix with all elements not on the main diagonal equal to zero
+34996,diagonalization diagonalisation,changing a square matrix to diagonal form (with all non-zero elements on the principal diagonal); "the diagonalization of a normal matrix by a unitary transformation"
+34997,diagram,a drawing intended to explain how something works; a drawing showing the relation between the parts
+34998,diakinesis,the final stage of the prophase of meiosis
+34999,dial,the control on a radio or television set that is used for tuning
+35000,dial,the circular graduated indicator on various measuring instruments
+35001,dial,the face of a timepiece; graduated to show the hours
+35002,dial telephone_dial,a disc on a telephone that is rotated a fixed distance for each number called
+35003,dial_telephone dial_phone,a telephone with a dial for registering the number to be called
+35004,dialect idiom accent,the usage or vocabulary that is characteristic of a specific group of people; "the immigrants spoke an odd dialect of English"; "he has a strong German accent"; "it has been said that a language is a dialect with an army and navy"
+35005,dialect_atlas linguistic_atlas,an atlas showing the distribution of distinctive linguistic features
+35006,dialect_geography linguistic_geography,the study of the geographical distribution of linguistic features
+35007,dialectic,a contradiction of ideas that serves as the determining factor in their interaction; "this situation created the inner dialectic of American history"
+35008,dialectic,any formal system of reasoning that arrives at the truth by the exchange of logical arguments
+35009,dialectical_materialism,the materialistic philosophy of Karl Marx and Friedrich Engels
+35010,dialectician,a logician skilled in dialectic
+35011,dialectics,a rationale for dialectical materialism based on change through the conflict of opposing forces
+35012,dialectology,the branch of philology that is devoted to the study of dialects
+35013,dialog_box panel,(computer science) a small temporary window in a graphical user interface that appears in order to request information from the user; after the information has been provided the user dismisses the box with `okay' or `cancel'
+35014,dialogue dialog,the lines spoken by characters in drama or fiction
+35015,dialogue dialog,a literary composition in the form of a conversation between two people; "he has read Plato's Dialogues in the original Greek"
+35016,dialogue dialog duologue,a conversation between two persons
+35017,dialysis,separation of substances in solution by means of their unequal diffusion through semipermeable membranes
+35018,dialyzer dialysis_machine,a medical instrument for separating substances in solution by unequal diffusion through semipermeable membranes
+35019,diamagnet,a substance that exhibits diamagnetism
+35020,diamagnetism,phenomenon exhibited by materials like copper or bismuth that become magnetized in a magnetic field with a polarity opposite to the magnetic force; unlike iron they are slightly repelled by a magnet
+35021,diamante,fabric covered with glittering ornaments such as sequins or rhinestones
+35022,diameter,a straight line connecting the center of a circle with two points on its perimeter (or the center of a sphere with two points on its surface)
+35023,diameter diam,the length of a straight line passing through the center of a circle and connecting two points on the circumference
+35024,diamine,any organic compound containing two amino groups
+35025,diamond,a transparent piece of diamond that has been cut and polished and is valued as a precious gem
+35026,diamond,a playing card in the minor suit that has one or more red rhombuses on it; "he led a small diamond"; "diamonds were trumps"
+35027,diamond adamant,very hard native crystalline carbon valued as a gem
+35028,diamond_jubilee,an anniversary celebrating the passage of 60 years
+35029,diamond_point,a very hard small point made from a diamond
+35030,diamond_wedding_anniversary diamond_wedding,the 60th wedding anniversary
+35031,diamondback diamondback_rattlesnake Crotalus_adamanteus,large deadly rattlesnake with diamond-shaped markings
+35032,diamondback_terrapin Malaclemys_centrata,of marshes along Atlantic and Gulf Coasts of United States
+35033,diapason diapason_stop,either of the two main stops on a pipe organ
+35034,diapedesis,passage of blood cells (especially white blood cells) through intact capillary walls and into the surrounding tissue
+35035,diapensia,any boreal low-growing evergreen plant of the genus Diapensia
+35036,diaper,a fabric (usually cotton or linen) with a distinctive woven pattern of small repeated figures
+35037,diaper nappy napkin,garment consisting of a folded cloth drawn up between the legs and fastened at the waist; worn by infants to catch excrement
+35038,diaper_rash diaper_dermatitis,dermatitis of the thighs and buttocks of infants; supposedly caused by ammonia in the urine in the child's diapers
+35039,diapheromera Diapheromera_femorata,a variety of stick insect
+35040,diaphone,a foghorn that makes a signal consisting of two tones
+35041,diaphoretic,used to produce perspiration
+35042,diaphragm,electro-acoustic transducer that vibrates to receive or produce sound waves
+35043,diaphragm midriff,(anatomy) a muscular partition separating the abdominal and thoracic cavities; functions in respiration
+35044,diaphragm pessary contraceptive_diaphragm,a contraceptive device consisting of a flexible dome-shaped cup made of rubber or plastic; it is filled with spermicide and fitted over the uterine cervix
+35045,diaphragm stop,a mechanical device in a camera that controls size of aperture of the lens; "the new cameras adjust the diaphragm automatically"
+35046,diaphysis shaft,the main (mid) section of a long bone
+35047,diapir,a domed rock formation where a core of rock has moved upward and pierced through the more brittle overlying strata
+35048,diapsid diapsid_reptile,reptile having a pair of openings in the skull behind each eye
+35049,diarchy dyarchy,a form of government having two joint rulers
+35050,diarist diary_keeper journalist,someone who keeps a diary or journal
+35051,diarrhea diarrhoea looseness_of_the_bowels looseness,frequent and watery bowel movements; can be a symptom of infection or food poisoning or colitis or a gastrointestinal tumor
+35052,diary,a personal journal (as a physical object)
+35053,diary journal,a daily written record of (usually personal) experiences and observations
+35054,diaspora,the body of Jews (or Jewish communities) outside Palestine or modern Israel
+35055,diaspora,the dispersion or spreading of something that was originally localized (as a people or language or culture)
+35056,diastasis,separation of an epiphysis from the long bone to which it is normally attached without fracture of the bone
+35057,diastema,a gap or vacant space between two teeth
+35058,diastole,the widening of the chambers of the heart between two contractions when the chambers fill with blood
+35059,diastolic_pressure,the blood pressure (as measured by a sphygmomanometer) after the contraction of the heart while the chambers of the heart refill with blood
+35060,diastrophism,the process of deformation that produces continents and ocean basins in the earth's crust
+35061,diathermy,a method of physical therapy that involves generating local heat in body tissues by high-frequency electromagnetic currents
+35062,diathermy_machine,a medical instrument for local heating of bodily tissues for medical purposes
+35063,diathesis,constitutional predisposition to a particular disease or abnormality
+35064,diatom,microscopic unicellular marine or freshwater colonial alga having cell walls impregnated with silica
+35065,diatomaceous_earth diatomite kieselguhr,a light soil consisting of siliceous diatom remains and often used as a filtering material
+35066,diatonic_scale,a scale with eight notes in an octave; all but two are separated by whole tones
+35067,diazepam Valium,a tranquilizer (trade name Valium) used to relieve anxiety and relax muscles; acts by enhancing the inhibitory actions of the neurotransmitter GABA; can also be used as an anticonvulsant drug in cases of nerve agent poisoning
+35068,diazonium,the univalent cation R-N:N- (where R is an aromatic hydrocarbon); found in salts that are used in manufacturing azo dyes
+35069,diazoxide Hyperstat,vasodilator (trade name Hyperstat) used to treat severe hypertension
+35070,dibasic_acid,an acid containing two replaceable hydrogen atoms per molecule
+35071,dibasic_salt,a salt derived by replacing two hydrogen atoms per molecule
+35072,dibble dibber,a wooden hand tool with a pointed end; used to make holes in the ground for planting seeds or bulbs
+35073,dibranchiate dibranchiate_mollusk dibranch,cephalopods having two gills
+35074,dibs,a claim of rights; "I have dibs on that last slice of pizza"
+35075,dibucaine,a local anesthetic that is administered by injection
+35076,dicamptodon dicamptodontid,salamanders found near cold streams throughout the year
+35077,dice_cup dice_box,a small container (open at one end) in which dice are shaken by hand and from which they are thrown
+35078,dicer,a mechanical device used for dicing food
+35079,dichloride bichloride,a compound containing two chlorine atoms per molecule
+35080,dichlorodiphenyltrichloroethane DDT,an insecticide that is also toxic to animals and humans; banned in the United States since 1972
+35081,dichondra Dichondra_micrantha,a creeping perennial herb with hairy stems and orbicular to reniform leaves and small white to greenish flowers; used as a grass substitute in warm regions
+35082,dichotomization dichotomisation,the act of dividing into two sharply different categories
+35083,dichotomy duality,being twofold; a classification into two opposed parts or subclasses; "the dichotomy between eastern and western culture"
+35084,dichroism,pleochroism of a crystal so that it exhibits two different colors when viewed from two different directions
+35085,dichromacy dichromatism dichromatopsia dichromia dichromasy,a deficiency of color vision in which the person can match any given hue by mixing only two other wavelengths of light (as opposed to the three wavelengths needed by people with normal color vision)
+35086,dichromat,a person with any of the various forms of dichromacy
+35087,dichromic_acid,the hypothetical acid (H2Cr2O7) from which dichromates are derived; known only in solution and in the form of dichromate salts
+35088,dick gumshoe hawkshaw,someone who is a detective
+35089,dickey dickie dicky dickey-seat dickie-seat dicky-seat,a small third seat in the back of an old-fashioned two-seater
+35090,dickey dickie dicky shirtfront,a man's detachable insert (usually starched) to simulate the front of a shirt
+35091,dickeybird dickey-bird dickybird dicky-bird,small bird; adults talking to children sometimes use these words to refer to small birds
+35092,diclofenac_potassium Cataflam,a nonsteroidal anti-inflammatory drug (trade name Cataflam)
+35093,diclofenac_sodium Voltaren,a nonsteroidal anti-inflammatory drug (trade name Voltaren) that is administered only orally
+35094,dicloxacillin Dynapen,antibacterial (trade name Dynapen) used to treat staphylococcal infections that are resistant to penicillin
+35095,dicot dicotyledon magnoliopsid exogen,flowering plant with two cotyledons; the stem grows by deposit on its outside
+35096,dicot_family magnoliopsid_family,family of flowering plants having two cotyledons (embryonic leaves) in the seed which usually appear at germination
+35097,dicot_genus magnoliopsid_genus,genus of flowering plants having two cotyledons (embryonic leaves) in the seed which usually appear at germination
+35098,dictate,an authoritative rule
+35099,dictate,a guiding principle; "the dictates of reason"
+35100,dictation,speech intended for reproduction in writing
+35101,dictation,matter that has been dictated and transcribed; a dictated passage; "he signed and mailed his dictation without bothering to read it"
+35102,dictator,a speaker who dictates to a secretary or a recording machine
+35103,dictator potentate,a ruler who is unconstrained by law
+35104,dictatorship absolutism authoritarianism Caesarism despotism monocracy one-man_rule shogunate Stalinism totalitarianism tyranny,a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)
+35105,dictionary lexicon,a reference book containing an alphabetical list of words with information about them
+35106,dictionary_definition,a definition that reports the standard uses of a word or phrase or symbol
+35107,dictostylium,any slime mold of the genus Dictostylium
+35108,dictyopterous_insect,cockroaches and mantids
+35109,dicumarol dicoumarol,an anticoagulant drug that has now been largely replaced by warfarin
+35110,dicynodont,a kind of therapsid
+35111,didacticism,communication that is suitable for or intended to be instructive; "the didacticism expected in books for the young"; "the didacticism of the 19th century gave birth to many great museums"
+35112,dideoxycytosine ddC DDC zalcitabine,an antiviral drug used to combat HIV infection
+35113,dideoxyinosine ddI DDI didanosine,an antiviral drug used to combat HIV infection
+35114,die,a cutting tool that is fitted into a diestock and used for cutting male (external) screw threads on screws or bolts or pipes or rods
+35115,die,a device used for shaping metal
+35116,die dice,a small cube with 1 to 6 spots on the six faces; used in gambling to generate random numbers
+35117,dieback,a disease of plants characterized by the gradual dying of the young shoots starting at the tips and progressing to the larger branches
+35118,dielectric_heating,heating of an insulator by a high-frequency electric field
+35119,diemaker diesinker die-sinker,someone who makes dies
+35120,diencephalon interbrain betweenbrain thalmencephalon,the posterior division of the forebrain; connects the cerebral hemispheres with the mesencephalon
+35121,dieresis diaeresis,a diacritical mark (two dots) placed over a vowel to indicate that it does not form a diphthong with an adjacent vowel
+35122,diesel diesel_engine diesel_motor,an internal-combustion engine that burns heavy oil
+35123,diesel-electric_locomotive diesel-electric,a locomotive driven by the electric current generated by a diesel engine
+35124,diesel-hydraulic_locomotive diesel-hydraulic,a locomotive driven by a hydraulic transmission system powered by a diesel engine
+35125,diesel_locomotive,a locomotive driven by a diesel engine
+35126,diesel_oil diesel_fuel,a heavy mineral oil used as fuel in diesel engines
+35127,diestock,a device that holds the dies that cut external threads on metal cylinders
+35128,diestrus diestrum,(of animals having several estrous cycles in one breeding season) a state or interval of sexual inactivity or quiescence between periods of activity
+35129,diet,a legislative assembly in certain countries (e.g., Japan)
+35130,diet,a prescribed selection of foods
+35131,diet,the usual food and drink consumed by an organism (person or animal)
+35132,diet dieting,the act of restricting your food intake (or your intake of particular foods)
+35133,dietary,a regulated daily food allowance
+35134,dietary_supplement,something added to complete a diet or to make up for a dietary deficiency
+35135,dieter,a person who diets
+35136,dietetics,the scientific study of food preparation and intake
+35137,diethylaminoethyl_cellulose DEAE_cellulose,used for chromatography
+35138,diethylstilbesterol DES stilbesterol,synthetic nonsteroid with the properties of estrogen; formerly used to treat menstrual problems but was found to be associated with vaginal cancers in the daughters of women so treated during pregnancy
+35139,diethylstilbestrol diethylstilboestrol stilbestrol stilboestrol DES,a potent estrogen used in medicine and in feed for livestock and poultry
+35140,dietician dietitian,a specialist in the study of diet and nutrition
+35141,difference,a significant change; "the difference in her is amazing"; "his support made a real difference"
+35142,difference,the quality of being unlike or dissimilar; "there are many differences between jazz and rock"
+35143,difference_threshold differential_threshold difference_limen differential_limen,the smallest change in stimulation that a person can detect
+35144,differentia,distinguishing characteristics (especially in different species of a genus)
+35145,differential,a quality that differentiates between similar things
+35146,differential_analyzer,an analog computer designed to solve differential equations
+35147,differential_blood_count,counting the number of specific types of white blood cells found in 1 cubic millimeter of blood; may be included as part of a complete blood count
+35148,differential_calculus method_of_fluxions,the part of calculus that deals with the variation of a function with respect to changes in the independent variable (or variables) by means of the concepts of derivative and differential
+35149,differential_diagnosis,a systematic method of diagnosing a disorder (e.g., headache) that lacks unique symptoms or signs
+35150,differential_equation,an equation containing differentials of a function
+35151,differential_gear differential,a bevel gear that permits rotation of two shafts at different speeds; used on the rear axle of automobiles to allow wheels to rotate at different speeds on curves
+35152,differential_psychology,the branch of psychology that studies measurable differences between individuals
+35153,differentiation,the mathematical process of obtaining the derivative of a function
+35154,differentiation distinction,a discrimination between things as different and distinct on the basis of their characteristics or attributes; "it is necessary to make a distinction between love and infatuation"
+35155,differentiator discriminator,a person who (or that which) differentiates
+35156,difficulty,a condition or state of affairs almost beyond one's ability to deal with and requiring great effort to bear or overcome; "grappling with financial difficulties"
+35157,difficulty,a factor causing trouble in achieving a positive result or tending to produce a negative result; "serious difficulties were encountered in obtaining a pure reagent"
+35158,difficulty difficultness,the quality of being difficult; "they agreed about the difficulty of the climb"
+35159,diffidence self-doubt self-distrust,lack of self-confidence
+35160,difflugia,a protozoan with an ovoid shell of cemented sand grains
+35161,diffraction,when light passes sharp edges or goes through narrow slits the rays are deflected and produce fringes of light and dark bands
+35162,diffraction_grating grating,optical device consisting of a surface with many parallel grooves in it; disperses a beam of light (or other electromagnetic radiation) into its wavelengths to produce its spectrum
+35163,diffuse_nebula gaseous_nebula,a cluster of stars within an intricate cloud of gas and dust
+35164,diffuseness,the spatial property of being spread out over a wide area or through a large volume
+35165,diffuser diffusor,baffle that distributes sound waves evenly
+35166,diffuser diffusor,optical device that distributes the light of a lamp evenly
+35167,diffusion,(physics) the process in which there is movement of a substance from an area of high concentration of that substance to an area of lower concentration
+35168,diffusion,the spread of social institutions (and myths and skills) from one society to another
+35169,diflunisal Dolobid,nonsteroidal anti-inflammatory (trade name Dolobid) used to treat arthritis and other inflammatory conditions
+35170,dig,a small gouge (as in the cover of a book); "the book was in good condition except for a dig in the back cover"
+35171,dig excavation archeological_site,the site of an archeological exploration; "they set up camp next to the dig"
+35172,dig jab,the act of touching someone suddenly with your finger or elbow; "she gave me a sharp dig in the ribs"
+35173,digest,a periodical that summarizes the news
+35174,digester,autoclave consisting of a vessel in which plant or animal materials are digested
+35175,digestibility digestibleness,the property of being easy to digest
+35176,digestion,the process of decomposing organic matter (as in sewage) by bacteria or by chemical action or heat
+35177,digestion,the organic process by which food is converted into substances that can be absorbed into the body
+35178,digestion,learning and coming to understand ideas and information; "his appetite for facts was better than his digestion"
+35179,digestive,any substance that promotes digestion
+35180,digestive_gland,any gland having ducts that pour secretions into the digestive tract
+35181,digestive_juice digestive_fluid,secretions that aid digestion
+35182,digestive_system gastrointestinal_system systema_alimentarium systema_digestorium,the system that makes food absorbable into the body
+35183,digger,a laborer who digs
+35184,digger_wasp,solitary wasp that digs nests in the soil and stocks them with paralyzed insects for the larvae
+35185,diggings digs,an excavation for ore or precious stones or for archaeology
+35186,diggings digs domiciliation lodgings pad,temporary living quarters
+35187,digit dactyl,a finger or toe in human beings or corresponding body part in other vertebrates
+35188,digit figure,one of the elements that collectively form a system of numeration; "0 and 1 are digits"
+35189,digital-analog_converter digital-to-analog_converter,device for converting digital signals into analogue signals
+35190,digital_arteries arteria_digitalis,arteries in the hand and foot that supply the fingers and toes
+35191,digital_audiotape DAT,a digital tape recording of sound
+35192,digital_camera,a camera that encodes an image digitally and store it for later reproduction
+35193,digital_clock,a clock that displays the time of day digitally
+35194,digital_communication data_communication,electronic transmission of information that has been encoded digitally (as for storage and processing by computers)
+35195,digital_communications_technology,the design and construction of communications technology that transmits information in digital form
+35196,digital_computer,a computer that represents information by numerical (binary) digits
+35197,digital_display alphanumeric_display,a display that gives the information in the form of characters (numbers or letters)
+35198,digital_photography,a photographic method that stores the image digitally for later reproduction
+35199,digital_plethysmograph,plethysmograph applied to a digit of the hand or foot to measure skin blood flow
+35200,digital_subscriber_line DSL,a generic name for digital lines that are provided by telephone companies to their local subscribers and that carry data at high speeds
+35201,digital_vein vena_digitalis,one of the veins serving the fingers or toes
+35202,digital_voltmeter,an electronic voltmeter that gives readings in digits
+35203,digital_watch,a watch with a digital display
+35204,digitalis digitalis_glycoside digitalin,a powerful cardiac stimulant obtained from foxglove
+35205,digitalization digitalisation,the administration of digitalis for the treatment of certain heart disorders
+35206,digitigrade_mammal digitigrade,an animal that walks so that only the toes touch the ground as e.g. dogs and cats and horses
+35207,digitization digitisation,conversion of analog information into digital information
+35208,digitizer digitiser analog-digital_converter analog-to-digital_converter,device for converting analogue signals into digital signals
+35209,digitoxin,digitalis preparation used to treat congestive heart failure or cardiac arrhythmia
+35210,dignity,high office or rank or station; "he respected the dignity of the emissaries"
+35211,dignity lordliness gravitas,formality in bearing and appearance; "he behaved with great dignity"
+35212,dignity self-respect self-regard self-worth,the quality of being worthy of esteem or respect; "it was beneath his dignity to cheat"; "showed his true dignity when under pressure"
+35213,digoxin Lanoxin,digitalis preparation (trade name Lanoxin) used to treat congestive heart failure or cardiac arrhythmia; helps the heart beat more forcefully
+35214,digraph digram,two successive letters (especially two letters used to represent a single sound: `sh' in `shoe')
+35215,digression aside excursus divagation parenthesis,a message that departs from the main subject
+35216,digression excursion,wandering from the main path of a journey
+35217,dihybrid,a hybrid produced by parents that differ only at two gene loci that have two alleles each
+35218,dihybrid_cross,hybridization using two traits with two alleles each
+35219,dihydrostreptomycin,antibiotic consisting of a hydrogenated form of streptomycin; used against tuberculosis and tularemia and Gram-negative organisms
+35220,dik-dik,any of several small antelopes of eastern Africa of the genus Madoqua; the size of a large rabbit
+35221,dika_bread,somewhat astringent paste prepared by grinding and heating seeds of the African wild mango; a staple food of some African peoples
+35222,dika_nut,edible oil-rich seed of wild mango
+35223,dilapidation ruin,the process of becoming dilapidated
+35224,dilatation distension distention,the state of being stretched beyond normal dimensions
+35225,dilation,a lengthy discussion (spoken or written) on a particular topic
+35226,dilation dilatation,the act of expanding an aperture; "the dilation of the pupil of the eye"
+35227,dilation_and_curettage dilatation_and_curettage D_and_C,a surgical procedure usually performed under local anesthesia in which the cervix is dilated and the endometrial lining of the uterus is scraped with a curet; performed to obtain tissue samples or to stop prolonged bleeding or to remove small tumors or to remove fragments of placenta after childbirth or as a method of abortion
+35228,dilator,a muscle or nerve that dilates or widens a body part
+35229,dilator,a drug that causes dilation
+35230,dilator dilater,a surgical instrument that is used to dilate or distend an opening or an organ
+35231,dilatoriness procrastination,slowness as a consequence of not getting around to it
+35232,dilatory_plea,a plea that delays the action without settling the cause of action; it can challenge the jurisdiction or claim disability of the defendant etc. (such defenses are usually raised in the defendant's answer)
+35233,dildo,a vibrating device that substitutes for an erect penis to provide vaginal stimulation
+35234,dilemma quandary,state of uncertainty or perplexity especially as requiring a choice between equally unfavorable options
+35235,diligence,conscientiousness in paying proper attention to a task; giving the degree of care required in a given situation
+35236,diligence industriousness industry,persevering determination to perform a task; "his diligence won him quick promotions"; "frugality and industry are still regarded as virtues"
+35237,dill Anethum_graveolens,aromatic Old World herb having aromatic threadlike foliage and seeds used as seasoning
+35238,dill dill_weed,aromatic threadlike foliage of the dill plant used as seasoning
+35239,dill_pickle,pickle preserved in brine or vinegar flavored with dill seed
+35240,dill_seed,seed of the dill plant used as seasoning
+35241,dillenia,any of several evergreen trees or shrubs of the genus Dillenia grown for their foliage and nodding flowers resembling magnolias which are followed by fruit that is used in curries and jellies and preserves
+35242,dilleniid_dicot_family,family of more or less advanced dicotyledonous trees and shrubs and herbs
+35243,dilleniid_dicot_genus,genus of more or less advanced dicotyledonous trees and shrubs and herbs
+35244,diltiazem Cardizem,a calcium blocker (trade name Cardizem) used in treating hypertension or angina or heart failure
+35245,dilutant diluent thinner,a diluting agent
+35246,dilution,a diluted solution
+35247,dilution,weakening (reducing the concentration) by the addition of water or a thinner
+35248,dim_sum,traditional Chinese cuisine; a variety of foods (including several kinds of steamed or fried dumplings) are served successively in small portions
+35249,dime,a United States coin worth one tenth of a dollar
+35250,dime_bag dime,street name for a packet of illegal drugs that is sold for ten dollars
+35251,dime_novel penny_dreadful,a melodramatic paperback novel
+35252,dimenhydrinate Dramamine,antihistamine and antiemetic (trade name Dramamine) used to treat motion sickness
+35253,dimension,one of three Cartesian coordinates that determine a position in space
+35254,dimension,the magnitude of something in a particular direction (especially length or width or height)
+35255,dimensionality,the spatial property of having dimensions; "all matter has dimensionality"
+35256,dimer,a compound whose molecules are composed of two identical monomers
+35257,dimethylglyoxime,a compound used in analysis as a precipitant for palladium or nickel
+35258,dimetrodon,carnivorous dinosaur of the Permian in North America having a crest or dorsal sail
+35259,diminution,the statement of a theme in notes of lesser duration (usually half the length of the original)
+35260,diminutive,a word that is formed with a suffix (such as -let or -kin) to indicate smallness
+35261,diminutiveness minuteness petiteness tininess weeness,the property of being very small in size; "hence the minuteness of detail in the painting"
+35262,dimity,a strong cotton fabric with a raised pattern; used for bedcovers and curtains
+35263,dimmer,a rheostat that varies the current through an electric light in order to control the level of illumination
+35264,dimness duskiness,the state of being poorly illuminated
+35265,dimness faintness,the quality of being dim or lacking contrast
+35266,dimness subduedness,the property of lights or sounds that lack brilliance or are reduced in intensity
+35267,dimorphism,(chemistry) the property of certain substances that enables them to exist in two distinct crystalline forms
+35268,dimorphism,(biology) the existence of two forms of individual within the same animal species (independent of sex differences)
+35269,dimple,any slight depression in a surface; "there are approximately 336 dimples on a golf ball"
+35270,dimple,a small natural hollow in the cheek or chin; "His dimple appeared whenever he smiled"
+35271,dimpled_chad pregnant_chad dimple,a chad that has been punched or dimpled but all four corners are still attached
+35272,dimwit nitwit half-wit doofus,a stupid incompetent person
+35273,diner,a person eating a meal (especially in a restaurant)
+35274,diner,a restaurant that resembles a dining car
+35275,dinette,a small area off of a kitchen that is used for dining
+35276,ding,a ringing sound
+35277,ding-dong,the noise made by a bell
+35278,dingbat,a silly empty-headed person; "you would be a dingbat even to try it"; "yet here he was with an upper class dingbat who just happened to be married to his sister"
+35279,dinghy dory rowboat,a small boat of shallow draft with cross thwarts for seats and rowlocks for oars with which it is propelled
+35280,dinginess dinge,discoloration due to dirtiness
+35281,dingo warrigal warragal Canis_dingo,wolflike yellowish-brown wild dog of Australia
+35282,dining,the act of eating dinner
+35283,dining-hall,a large room at a college or university; used especially for dining
+35284,dining-room_attendant restaurant_attendant,someone employed to provide service in a dining room
+35285,dining-room_furniture,furniture intended for use in a dining room
+35286,dining-room_suite dining-room_set dining_room_suite dining_room_set,a suite of furniture for the dining room
+35287,dining-room_table,dining-room furniture consisting of a table on which meals can be served
+35288,dining_area,an area arranged for dining; "they put up tents for the dining area"
+35289,dining_car diner dining_compartment buffet_car,a passenger car where food is served in transit
+35290,dining_room dining-room,a room used for dining
+35291,dining_table board,a table at which meals are served; "he helped her clear the dining table"; "a feast was spread upon the board"
+35292,dinky dinkey,a small locomotive
+35293,dinner,the main meal of the day served in the evening or at midday; "dinner will be at 8"; "on Sundays they had a large dinner when they returned from church"
+35294,dinner dinner_party,a party of people assembled to have dinner together; "guests should never be late to a dinner party"
+35295,dinner_bell,a bell rung to announce that dinner has been served
+35296,dinner_dress dinner_gown formal evening_gown,a gown for evening wear
+35297,dinner_jacket tux tuxedo black_tie,semiformal evening dress for men
+35298,dinner_napkin,a large napkin used when dinner is served
+35299,dinner_pail dinner_bucket,a pail in which a workman carries his lunch or dinner
+35300,dinner_plate,a plate from which a diner eats during the main course of a meal
+35301,dinner_service dinner_set,a table service for serving dinner
+35302,dinner_table,the dining table where dinner is served and eaten
+35303,dinner_theater dinner_theatre,a theater at which dinner is included in the price of admission
+35304,dinnertime suppertime,the customary or habitual hour for the evening meal
+35305,dinnerware,the tableware (plates and platters and serving bowls etc.) used in serving a meal
+35306,dinoceras uintathere,a variety of dinocerate
+35307,dinocerate,an extinct ungulate
+35308,dinoflagellate,chiefly marine protozoa having two flagella; a chief constituent of plankton
+35309,dinosaur,any of numerous extinct terrestrial reptiles of the Mesozoic era
+35310,dint,interchangeable with `means' in the expression `by means of'
+35311,diocesan,a bishop having jurisdiction over a diocese
+35312,diocese bishopric episcopate,the territorial jurisdiction of a bishop
+35313,diode rectifying_tube rectifying_valve,a thermionic tube having two electrodes; used as a rectifier
+35314,diode semiconductor_diode junction_rectifier crystal_rectifier,a semiconductor that consists of a p-n junction
+35315,diol glycol dihydric_alcohol,any of a class of alcohols having 2 hydroxyl groups in each molecule
+35316,dioon,any cycad of the genus Dioon; handsome palmlike cycads with robust crowns of leaves and rugged trunks
+35317,diopter dioptre,a unit of measurement of the refractive power of a lens which is equal to the reciprocal of the focal length measured in meters; used by oculists
+35318,diorite,a granular crystalline intrusive rock
+35319,dioxide,an oxide containing two atoms of oxygen in the molecule
+35320,dioxin,any of several toxic or carcinogenic hydrocarbons that occur as impurities in herbicides
+35321,dip,a depression in an otherwise level surface; "there was a dip in the road"
+35322,dip,tasty mixture or liquid into which bite-sized foods are dipped
+35323,dip,a brief immersion
+35324,dip,a candle that is made by repeated dipping in a pool of wax or tallow
+35325,dip,a gymnastic exercise on the parallel bars in which the body is lowered and raised by bending and straightening the arms
+35326,dip angle_of_dip magnetic_dip magnetic_inclination inclination,(physics) the angle that a magnetic needle makes with the plane of the horizon
+35327,dip plunge,a brief swim in water
+35328,diphenhydramine Benadryl,antihistamine (trade name Benadryl) used to treat allergic reactions involving the nasal passages (hay fever) and also to treat motion sickness
+35329,diphenylbutyl_piperidine,a group of antipsychotic drugs used mainly in the treatment of schizophrenia
+35330,diphenylhydantoin phenytoin Dilantin,an anticonvulsant drug (trade name Dilantin) used to treat epilepsy and that is not a sedative
+35331,diphtheria,acute contagious infection caused by the bacterium Corynebacterium diphtheriae; marked by the formation of a false membrane in the throat and other air passages causing difficulty in breathing
+35332,diphthong,a vowel sound that starts near the articulatory position for one vowel and moves toward the position for another
+35333,diplegia,paralysis of corresponding parts on both sides of the body
+35334,diplococcus,Gram-positive bacteria usually occurring in pairs
+35335,diplodocus,a huge quadrupedal herbivore with long neck and tail; of late Jurassic in western North America
+35336,diploic_vein vena_diploica,one of the veins serving the spongy part of the cranial bones
+35337,diploid,(genetics) an organism or cell having the normal amount of DNA per cell; i.e., two sets of chromosomes or twice the haploid number
+35338,diploidy,the condition of being diploid
+35339,diploma sheepskin,a document certifying the successful completion of a course of study
+35340,diplomacy diplomatic_negotiations,negotiation between nations
+35341,diplomat,a person who deals tactfully with others
+35342,diplomat diplomatist,an official engaged in international negotiations
+35343,diplomate,medical specialist whose competence has been certified by a diploma granted by an appropriate professional group
+35344,diplomatic_building,government building in which diplomats live or work
+35345,diplomatic_immunity,exemption from taxation or normal processes of law that is offered to diplomatic personnel in a foreign country
+35346,diplomatic_mission,a mission serving diplomatic ends
+35347,diplomatic_pouch,a mail pouch that is sealed shut and that is used to carry communications between a legation and its home office
+35348,diplomatic_service diplomatic_corps corps_diplomatique,the body of diplomatic personnel
+35349,diplopia double_vision,visual impairment in which an object is seen as two objects; "diplopia often disappears when one eye is covered"
+35350,diplotene,the fourth stage of the prophase of meiosis
+35351,dipole,a pair of equal and opposite electric charges or magnetic poles separated by a small distance
+35352,dipole dipole_antenna,an aerial half a wavelength long consisting of two rods connected to a transmission line at the center
+35353,dipole_molecule,a molecule that is a permanent dipole
+35354,dipole_moment,the moment of a dipole
+35355,dipper,a ladle that has a cup with a long handle
+35356,dipsomania alcoholism potomania,an intense persistent desire to drink alcoholic beverages to excess
+35357,dipstick,a graduated rod dipped into a container to indicate the fluid level
+35358,dipterocarp,tree of the family Dipterocarpaceae
+35359,dipterous_insect two-winged_insects dipteran dipteron,insects having usually a single pair of functional wings (anterior pair) with the posterior pair reduced to small knobbed structures and mouth parts adapted for sucking or lapping or piercing
+35360,diptych,a painting or carving (especially an altarpiece) on two panels (usually hinged like a book)
+35361,direct-grant_school,formerly a school that charged tuition fees and also received government grants in return for admitting certain non-paying students who were nominated by the local authorities
+35362,direct_action,a protest action by labor or minority groups to obtain their demands
+35363,direct_antonym,antonyms that are commonly associated (e.g., `wet' and `dry')
+35364,direct_current DC direct_electric_current,an electric current that flows in one direction steadily
+35365,direct_discourse direct_quotation,a report of the exact words used in a discourse (e.g., "he said `I am a fool'")
+35366,direct_dye substantive_dye,dye with a high affinity for cellulose fibers (cotton or rayon etc.)
+35367,direct_evidence,evidence (usually the testimony of a witness) directly related to the fact in dispute
+35368,direct_examination,(law) the initial questioning of a witness by the party that called the witness
+35369,direct_fire,fire delivered on a target that is visible to the person aiming it
+35370,direct_flight,a flight with one or more intermediate stops but no change of aircraft
+35371,direct_loan,a loan by a lender to a customer without the use of a third party; direct lending gives the lender greater discretion in making loans
+35372,direct_mail,advertising sent directly to prospective customers via the mail
+35373,direct_mailer,a distributor who uses direct mail to sell merchandise
+35374,direct_marketing,marketing via a promotion delivered directly to the individual prospective customer
+35375,direct_object object_of_the_verb,the object that receives the direct action of the verb
+35376,direct_primary,a primary where voters directly select the candidates who will run for office
+35377,direct_sum,a union of two disjoint sets in which every element is the sum of an element from each of the disjoint sets
+35378,direct_support,a mission requiring one force to support another specific force and authorizing it to answer directly the supported force's request for assistance
+35379,direct_supporting_fire,fire delivered in support of part of a force (as opposed to general supporting fire delivered in support of the force as a whole)
+35380,direct_tax,a tax paid directly by the person or organization on whom it is levied
+35381,direct_tide,the occurrence of high tide on one side of the earth coinciding with high tide on the opposite side
+35382,direct_transmission,a transmission mechanism in which the infectious agent is transferred directly into the body via touching or biting or kissing or sexual intercourse or by droplets entering the eye or nose or mouth
+35383,direct_trust express_trust,a trust created by the free and deliberate act of the parties involved (usually on the basis of written documentation)
+35384,directed_study,a course of study that is supervised and controlled by a specialist in the subject; "he registered for directed study"; "he got credit for directed study"; "he did directed study"
+35385,directed_verdict,a verdict entered by the court in a jury trial without consideration by the jury; "there cannot be a directed verdict of guilty in a criminal trial"
+35386,direction,the spatial relation between something and the course along which it points or moves; "he checked the direction and velocity of the wind"
+35387,direction,a general course along which something has a tendency to develop; "I couldn't follow the direction of his thoughts"; "his ideals determined the direction of his career"; "they proposed a new direction for the firm"
+35388,direction instruction,a message describing how something is to be done; "he gave directions faster than she could follow them"
+35389,direction way,a line leading to a place or point; "he looked the other direction"; "didn't know the way home"
+35390,direction_finder,radio; determines the direction of incoming radio waves
+35391,directional_antenna,an antenna that transmits or receives signals only in a narrow angle
+35392,directional_microphone directional_mike,a microphone that is designed to receive sound from a particular direction
+35393,directionality,the property of being directional or maintaining a direction; "the directionality of written English is from left to right"
+35394,directive,a pronouncement encouraging or banning some activity; "the boss loves to send us directives"
+35395,directivity directionality,the property of a microphone or antenna of being more sensitive in one direction than in another; "the antenna received signals with no directivity"
+35396,directivity directiveness,the quality of being directive
+35397,directness straightness,trueness of course toward a goal; "rivaling a hawk in directness of aim"
+35398,director,member of a board of directors
+35399,director manager managing_director,someone who controls resources and expenditures
+35400,director theater_director theatre_director,someone who supervises the actors and directs the action in the production of a show
+35401,director-stockholder_relation,the responsibility of corporate directors to act in the best interests of stockholders
+35402,directorate board_of_directors,a group of persons chosen to govern the affairs of a corporation or other large institution
+35403,directorship,the position of a director of a business concern
+35404,directory,(computer science) a listing of the files stored in memory (usually on a hard disk)
+35405,directory,an alphabetical list of names and addresses
+35406,dirge coronach lament requiem threnody,a song or hymn of mourning composed or performed as a memorial to a dead person
+35407,diriment_impediment,(canon law) an impediment that invalidates a marriage (such as the existence of a prior marriage)
+35408,dirk,a relatively long dagger with a straight blade
+35409,dirndl,a full skirt with a gathered waistband
+35410,dirndl,a dress with a tight bodice and full skirt
+35411,dirt filth grime soil stain grease grunge,the state of being covered with unclean things
+35412,dirt_track,a racetrack that is not paved
+35413,dirtiness,the state of containing dirty impurities
+35414,dirtiness uncleanness,the state of being unsanitary
+35415,dirty_bomb,an atom bomb that leaves considerable radioactive contamination
+35416,dirty_joke dirty_story blue_joke blue_story,an indelicate joke
+35417,dirty_linen dirty_laundry,personal matters that could be embarrassing if made public
+35418,dirty_old_man,a middle-aged man with lecherous inclinations
+35419,dirty_pool,conduct that is unfair or unethical or unsportsmanlike
+35420,dirty_trick,an unkind or aggressive trick
+35421,dirty_tricks,underhand commercial or political behavior designed to discredit an opponent
+35422,dirty_war,an offensive conducted by secret police or the military of a regime against revolutionary and terrorist insurgents and marked by the use of kidnapping and torture and murder with civilians often being the victims; "thousands of people disappeared and were killed during Argentina's dirty war in the late 1970s"
+35423,dirty_word,a word that is considered to be unmentionable; "`failure' is a dirty word to him"
+35424,disa,any orchid of the genus Disa; beautiful orchids with dark green leaves and usually hooded flowers; much prized as emblematic flowers in their native regions
+35425,disability disablement handicap impairment,the condition of being unable to perform as a consequence of physical or mental unfitness; "reading disability"; "hearing impairment"
+35426,disability_benefit,insurance benefits paid in case of disability
+35427,disability_check disability_payment,a monthly payment made to someone who has become disabled and is unable to work
+35428,disability_insurance,social insurance for the disabled
+35429,disability_of_walking,a disability that interferes with or prevents walking
+35430,disabled handicapped,people collectively who are crippled or otherwise physically handicapped; "technology to help the elderly and the disabled"
+35431,disaccharidase,an enzyme that catalyzes the hydrolysis of disaccharides into monosaccharides
+35432,disaccharide,any of a variety of carbohydrates that yield two monosaccharide molecules on complete hydrolysis
+35433,disadvantage,the quality of having an inferior or less favorable position
+35434,disaffection,disloyalty to the government or to established authority; "the widespread disaffection of the troops"
+35435,disagreeableness,the quality of being disagreeable and unpleasant
+35436,disagreeableness,an ill-tempered and offensive disposition
+35437,disagreement,the speech act of disagreeing or arguing or disputing
+35438,disagreement dissension dissonance,a conflict of people's opinions or actions or characters
+35439,disambiguation,clarification that follows from the removal of ambiguity
+35440,disambiguator,(computer science) a natural language processing application that tries to determine the intended meaning of a word or phrase by examining the linguistic context in which it is used
+35441,disappearance,ceasing to exist; "he regretted the disappearance of Greek from school curricula"; "what was responsible for the disappearance of the rainforest?"; "the disappearance of resistance at very low temperatures"
+35442,disappearance,the event of passing out of sight
+35443,disappearance disappearing,the act of leaving secretly or without explanation
+35444,disappointment dashing_hopes,an act (or failure to act) that disappoints someone
+35445,disappointment letdown,a feeling of dissatisfaction that results when your expectations are not realized; "his hopes were so high he was doomed to disappointment"
+35446,disapprobation condemnation,an expression of strong disapproval; pronouncing as wrong or morally culpable; "his uncompromising condemnation of racism"
+35447,disapproval,a feeling of disliking something or what someone is doing
+35448,disapproval,the expression of disapproval
+35449,disapproval,the act of disapproving or condemning
+35450,disarming disarmament,act of reducing or depriving of arms; "the disarmament of the aggressor nations must be complete"
+35451,disarray disorderliness,untidiness (especially of clothing and appearance)
+35452,disassociation,the state of being unconnected in memory or imagination; "I could not think of him in disassociation from his wife"
+35453,disassortative_mating,mating of individuals having traits more dissimilar than likely in random mating
+35454,disaster,an act that has disastrous consequences
+35455,disaster_area,a region whose population is affected by a general disaster
+35456,disavowal disclaimer,denial of any connection with or knowledge of
+35457,disbandment,the act of disbanding; "the orchestra faced the prospect of disbandment"
+35458,disbarment,the act of expelling a lawyer from the practice of law
+35459,discard,anything that is cast aside or discarded
+35460,discard,(cards) the act of throwing out a useless card or of failing to follow suit
+35461,discard throwing_away,getting rid something that is regarded as useless or undesirable
+35462,discernability legibility,distinctness that makes perception easy
+35463,discernment perceptiveness,perception of that which is obscure
+35464,discharge,the sudden giving off of energy
+35465,discharge emission,a substance that is emitted or released
+35466,discharge emission expelling,any of several bodily processes by which substances go out of the body; "the discharge of pus"
+35467,discharge firing firing_off,the act of discharging a gun
+35468,discharge outpouring run,the pouring forth of a fluid
+35469,discharge spark arc electric_arc electric_discharge,electrical conduction through a gas in an applied electric field
+35470,discharge venting,the act of venting
+35471,discharge_lamp,a lamp that generates light by a discharge between two electrodes in a gas
+35472,discharge_pipe,a pipe through which fluids can be discharged
+35473,discina,any fungus of the genus Discina
+35474,disciple adherent,someone who believes and helps to spread the doctrine of another
+35475,discipleship,the position of disciple
+35476,discipline,a system of rules of conduct or method of practice; "he quickly learned the discipline of prison routine"; "for such a plan to work requires discipline"
+35477,discipline,the trait of being well behaved; "he insisted on discipline among the troops"
+35478,discipline,training to improve strength or self-control
+35479,discipline correction,the act of disciplining; "the offenders deserved the harsh discipline they received"
+35480,discipline subject subject_area subject_field field field_of_study study bailiwick,a branch of knowledge; "in what discipline is his doctorate?"; "teachers should be well trained in their subject"; "anthropology is the study of human beings"
+35481,disclaimer,(law) a voluntary repudiation of a person's legal claim to something
+35482,disclosure revelation revealing,the speech act of making something evident
+35483,disco disco_music,popular dance music (especially in the late 1970s); melodic with a regular bass beat; intended mainly for dancing at discotheques
+35484,disco discotheque,a public dance hall for dancing to recorded popular music
+35485,discography,a descriptive catalog of musical recordings
+35486,discoid_lupus_erythematosus DLE,a chronic skin disease occurring primarily in women between the ages of 20 and 40; characterized by an eruption of red lesions over the cheeks and bridge of the nose
+35487,discoloration discolouration,the act of changing the natural color of something by making it duller or dingier or unnatural or faded
+35488,discomfiture discomposure disconcertion disconcertment,anxious embarrassment
+35489,discomfort soreness irritation,an uncomfortable feeling of mental painfulness or distress
+35490,discomfort uncomfortableness,the state of being tense and feeling pain
+35491,discomposure,a temperament that is perturbed and lacking in composure
+35492,discomycete cup_fungus,any fungus that is a member of the subclass Discomycetes
+35493,disconnection disjunction,the act of breaking a connection
+35494,discontentment discontent discontentedness,a longing for something better than the present situation
+35495,discontinuance discontinuation,the act of discontinuing or breaking off; an interruption (temporary or permanent)
+35496,discontinuity,lack of connection or continuity
+35497,discord discordance,strife resulting from a lack of agreement
+35498,discord dissension,disagreement among those expected to cooperate
+35499,discord strife,lack of agreement or harmony
+35500,discordance discord,a harsh mixture of sounds
+35501,discount price_reduction deduction,the act of reducing the selling price of merchandise
+35502,discount_business,the business of selling merchandise at a discount
+35503,discount_chain,a chain of discount stores
+35504,discount_house discount_store discounter wholesale_house,a sales outlet offering goods at a discounted price
+35505,discount_rate,the rate of interest set by the Federal Reserve that member banks are charged when they borrow money through the Federal Reserve System
+35506,discount_rate discount bank_discount,interest on an annual basis deducted in advance on a loan
+35507,discouragement,the expression of opposition and disapproval
+35508,discouragement,the act of discouraging; "the discouragement of petty theft"
+35509,discouragement disheartenment dismay,the feeling of despair in the face of obstacles
+35510,discourse,extended verbal expression in speech or writing
+35511,discourtesy offense offence offensive_activity,a lack of politeness; a failure to show regard for others; wounding the feelings or others
+35512,discourtesy rudeness,a manner that is rude and insulting
+35513,discovered_check,a check on the opponent's king that is delivered by moving a piece out of the line of attack by a queen or rook or bishop
+35514,discovery,(law) compulsory pretrial disclosure of documents relevant to a case; enables one side in a litigation to elicit information from the other side concerning the facts in the case
+35515,discovery,something that is discovered
+35516,discovery breakthrough find,a productive insight
+35517,discovery find uncovering,the act of discovering something
+35518,discrepancy disagreement divergence variance,a difference between conflicting facts or claims or opinions; "a growing divergence of opinion"
+35519,discrepancy variance variant,an event that departs from expectations
+35520,discreteness distinctness separateness severalty,the state of being several and distinct
+35521,discretion,freedom to act or judge on one's own
+35522,discretion discernment,the trait of judging wisely and objectively; "a man of discernment"
+35523,discretion discreetness circumspection prudence,knowing how to avoid embarrassment or distress; "the servants showed great tact and discretion"
+35524,discretionary_trust,a trust that gives the trustee discretion to pay the beneficiary as much of the trust income as the trustee believes appropriate
+35525,discrimination favoritism favouritism,unfair treatment of a person or group on the basis of prejudice
+35526,discrimination secernment,the cognitive process whereby two or more stimuli are distinguished
+35527,discriminative_stimulus cue,a stimulus that provides information about what to do
+35528,discursiveness,the quality of being discursive
+35529,discus,an athletic competition in which a disk-shaped object is thrown as far as possible
+35530,discus saucer,a disk used in throwing competitions
+35531,discussant,a participant in a formal discussion
+35532,discussion give-and-take word,an exchange of views on some topic; "we had a good discussion"; "we had a word or two about it"
+35533,discussion treatment discourse,an extended communication (often interactive) dealing with some particular topic; "the book contains an excellent discussion of modal logic"; "his treatment of the race question is badly biased"
+35534,disease,an impairment of health or a condition of abnormal functioning
+35535,disease_of_the_neuromuscular_junction,a disease characterized by impairment of neuromuscular junctions
+35536,disembarrassment,something that extricates you from embarrassment
+35537,disembowelment evisceration,the act of removing the bowels or viscera; the act of cutting so as to cause the viscera to protrude
+35538,disenchantment disillusion disillusionment,freeing from false belief or illusions
+35539,disenfranchisement,the act of withdrawing certification or terminating a franchise
+35540,disengagement fallback pullout,to break off a military action with an enemy
+35541,disentangler unraveler unraveller,a person who removes tangles; someone who takes something out of a tangled state
+35542,disequilibrium,loss of equilibrium attributable to an unstable situation in which some forces outweigh others
+35543,disestablishment,the act terminating an established state of affairs; especially ending a connection with the Church of England
+35544,disesteem,the state in which esteem has been lost
+35545,disfavor disfavour,the state of being out of favor; "he is in disfavor with the king"
+35546,disfavor disfavour dislike disapproval,an inclination to withhold approval from some person or group
+35547,disfigurement disfiguration deformity,an appearance that has been spoiled or is misshapen; "there were distinguishing disfigurements on the suspect's back"; "suffering from facial disfiguration"
+35548,disfluency,lack of skillfulness in speaking or writing
+35549,disfranchisement,the discontinuation of a franchise; especially the discontinuation of the right to vote
+35550,disgruntlement,a feeling of sulky discontent
+35551,disguise,any attire that modifies the appearance in order to conceal the wearer's identity
+35552,disguise camouflage,an outward semblance that misrepresents the true nature of something; "the theatrical notion of disguise is always associated with catastrophe in his stories"
+35553,disguise camouflage,the act of concealing the identity of something by modifying its appearance; "he is a master of disguise"
+35554,disgust,strong feelings of dislike
+35555,disgustingness distastefulness nauseatingness sickeningness unsavoriness,extreme unpalatability to the mouth
+35556,disgustingness unsavoriness,the property of being extremely unacceptable to the mind
+35557,dish,a particular item of prepared food; "she prepared a special dish for dinner"
+35558,dish,a piece of dishware normally used as a container for holding or serving food; "we gave them a set of dishes for a wedding present"
+35559,dish dish_aerial dish_antenna saucer,directional antenna consisting of a parabolic reflector for microwave or radio frequency radiation
+35560,dish dishful,the quantity that a dish will hold; "they served me a dish of rice"
+35561,dish_rack,a rack for holding dishes as dishwater drains off of them
+35562,dishabille deshabille,the state of being carelessly or partially dressed
+35563,disharmony inharmoniousness,a lack of harmony
+35564,disheartenment,a communication that leaves you disheartened or daunted
+35565,dishonesty,the quality of being dishonest
+35566,dishonesty knavery,lack of honesty; acts of lying or cheating or stealing
+35567,dishonor dishonour,a state of shame or disgrace; "he was resigned to a life of dishonor"
+35568,dishonor dishonour,lacking honor or integrity
+35569,dishonorable_discharge,a discharge from the armed forces for a grave offense (as sabotage or espionage or cowardice or murder)
+35570,dishonorableness dishonourableness,the quality of not deserving honor or respect
+35571,dishpan,large pan for washing dishes
+35572,dishrag dishcloth,a cloth for washing dishes
+35573,dishtowel dish_towel tea_towel,a towel for drying dishes
+35574,dishwasher,someone who washes dishes
+35575,dishwasher dish_washer dishwashing_machine,a machine for washing dishes
+35576,dishwasher_detergent dishwashing_detergent dishwashing_liquid,a low-sudsing detergent designed for use in dishwashers
+35577,dishwashing washup,the act of washing dishes
+35578,dishwater,water in which dishes and cooking utensils are washed
+35579,disincentive deterrence,a negative motivational influence
+35580,disinclination,that toward which you are inclined to feel dislike; "his disinclination for modesty is well known"
+35581,disinfectant germicide antimicrobic antimicrobial,an agent (as heat or radiation or a chemical) that destroys microorganisms that might carry disease
+35582,disinfection,treatment to destroy harmful microorganisms
+35583,disinfestation,the activity of getting rid of vermin
+35584,disinflation,a reduction of prices intended to improve the balance of payments
+35585,disinformation,misinformation that is deliberately disseminated in order to influence or confuse rivals (foreign enemies or business competitors etc.)
+35586,disingenuousness,the quality of being disingenuous and lacking candor
+35587,disinheritance,the act by a donor that terminates the right of a person to inherit
+35588,disintegration,a loss (or serious disruption) of organization in some system; "a disintegration of personality"
+35589,disinterest neutrality,tolerance attributable to a lack of involvement
+35590,disinterestedness,freedom from bias or from selfish motives
+35591,disinvestment,the withdrawal of capital from a country or corporation
+35592,disjointedness,lacking order or coherence
+35593,disjunction disjuncture disconnection disconnectedness,state of being disconnected
+35594,disjunctive_conjunction,the conjunctive relation of units that expresses the disjunction of their meanings
+35595,disk disc,a flat circular plate
+35596,disk disc saucer,something with a round shape resembling a flat circular plate; "the moon's disk hung in a cloudless sky"
+35597,disk_access,memory access to the computer disk on which information is stored
+35598,disk_brake disc_brake,hydraulic brake in which friction is applied to both sides of a spinning disk by the brake pads
+35599,disk_cache,a cache that stores copies of frequently used disk sectors in random access memory (RAM) so they can be read without accessing the slower disk
+35600,disk_clutch,a friction clutch in which the frictional surfaces are disks
+35601,disk_controller,(computer science) a circuit or chip that translates commands into a form that can control a hard disk drive
+35602,disk_drive disc_drive hard_drive Winchester_drive,computer hardware that holds and spins a magnetic or optical disk and reads and writes information on it
+35603,disk_error,error resulting from malfunction of a magnetic disk
+35604,disk_file,(computer science) a computer file stored on a magnetic disk and identified by a unique label
+35605,disk_harrow disc_harrow,a harrow with a series of disks set on edge at an angle
+35606,disk_jockey disc_jockey d.j. DJ,a person who announces and plays popular recorded music
+35607,disk_overhead overhead,(computer science) the disk space required for information that is not data but is used for location and timing
+35608,disk_pack disc_pack,(computer science) a portable pack of magnetic disks used in a disk storage device
+35609,disk_space disc_space,(computer science) the space available on a magnetic disk
+35610,diskette floppy floppy_disk,a small plastic magnetic disk enclosed in a stiff envelope with a radial slit; used to store data or programs for a microcomputer; "floppy disks are noted for their relatively slow speed and small capacity and low price"
+35611,dislike,a feeling of aversion or antipathy; "my dislike of him was instinctive"
+35612,dislocation,a displacement of a part (especially a bone) from its normal position (as in the shoulder or the vertebral column)
+35613,dislocation breakdown,the act of disrupting an established order so it fails to continue; "the social dislocations resulting from government policies"; "his warning came after the breakdown of talks in London"
+35614,dislocation disruption,an event that results in a displacement or discontinuity
+35615,dislodgment dislodgement,forced removal from a position of advantage
+35616,disloyalty,the quality of being disloyal
+35617,dismantling dismantlement disassembly,the act of taking something apart (as a piece of machinery); "Russia and the United States discussed the dismantling of their nuclear weapons"
+35618,dismemberment taking_apart,the removal of limbs; being cut to pieces
+35619,dismissal,permission to go; the sending away of someone
+35620,dismissal dismission discharge firing liberation release sack sacking,the termination of someone's employment (leaving them free to depart)
+35621,dismissal dismission pink_slip,official notice that you have been fired from your job
+35622,dismount,the act of dismounting (a horse or bike etc.)
+35623,disobedience,the trait of being unwilling to obey
+35624,disobedience noncompliance,the failure to obey
+35625,disorder,a disturbance of the peace or of public order
+35626,disorder upset,a physical condition in which there is a disturbance of normal functioning; "the doctor prescribed some medicine for the disorder"; "everyone gets stomach upsets from time to time"
+35627,disorderliness disorder,a condition in which things are not in their expected places; "the files are in complete disorder"
+35628,disorderly_conduct disorderly_behavior disturbance_of_the_peace breach_of_the_peace,any act of molesting, interrupting, hindering, agitating, or arousing from a state of repose or otherwise depriving inhabitants of the peace and quiet to which they are entitled
+35629,disorganization disorganisation,the disturbance of a systematic arrangement causing disorder and confusion; "the disorganization of the enemy troops by a flank attack"
+35630,disorganization disorganisation disarrangement,a condition in which an orderly system has been disrupted
+35631,disorientation,confusion (usually transient) about where you are and how to proceed; uncertainty as to direction; "his disorientation was the result of inattention"
+35632,disorientation freak_out,a wild delusion (especially one induced by a hallucinogenic drug)
+35633,disownment disowning,refusal to acknowledge as one's own
+35634,disparagement depreciation derogation,a communication that belittles somebody or something
+35635,disparagement dispraise,the act of speaking contemptuously of
+35636,disparateness distinctiveness,utter dissimilarity
+35637,disparity,inequality or difference in some respect
+35638,dispassion dispassionateness dryness,objectivity and detachment; "her manner assumed a dispassion and dryness very unlike her usual tone"
+35639,dispatch despatch,killing a person or animal
+35640,dispatch despatch communique,an official report (usually sent in haste)
+35641,dispatch despatch expedition expeditiousness,the property of being prompt and efficient; "it was done with dispatch"
+35642,dispatch despatch shipment,the act of sending off something
+35643,dispatch_case dispatch_box,case consisting of an oblong container (usually having a lock) for carrying dispatches or other valuables
+35644,dispatch_rider,a messenger who carries military dispatches (usually on a motorcycle)
+35645,dispatcher,employee of a transportation company who controls the departures of vehicles according to weather conditions and in the interest of efficient service
+35646,dispensability dispensableness,the quality possessed by something that you can get along without
+35647,dispensary,clinic where medicine and medical supplies are dispensed
+35648,dispensation,a share that has been dispensed or distributed
+35649,dispensation,an exemption from some rule or obligation
+35650,dispensation,the act of dispensing (giving out in portions)
+35651,dispenser,a person who dispenses
+35652,dispenser,a container so designed that the contents can be used in prescribed amounts
+35653,dispersed_phase dispersed_particles,(of colloids) a substance in the colloidal state
+35654,dispersing_phase dispersion_medium dispersing_medium,(of colloids) a substance in which another is colloidally dispersed
+35655,dispersion dispersal dissemination diffusion,the act of dispersing or diffusing something; "the dispersion of the troops"; "the diffusion of knowledge"
+35656,dispersion scattering,spreading widely or driving off
+35657,displaced_fracture,fracture in which the two ends of the broken bone are separated from one another
+35658,displaced_person DP stateless_person,a person forced to flee from home or country
+35659,displacement,(psychiatry) a defense mechanism that transfers affect or reaction from the original object to some more acceptable one
+35660,displacement,act of removing from office or employment
+35661,displacement deracination,to move something from its natural environment
+35662,displacement displacement_reaction,(chemistry) a reaction in which an elementary substance displaces and sets free a constituent element from a compound
+35663,display,behavior that makes your feelings public; "a display of emotion"
+35664,display,exhibiting openly in public view; "a display of courage"
+35665,display exhibit showing,something shown to the public; "the museum had many exhibits of oriental art"
+35666,display presentation,a visual representation of something
+35667,display show,something intended to communicate a particular impression; "made a display of strength"; "a show of impatience"; "a good show of looking interested"
+35668,display video_display,an electronic device that represents information in visual form
+35669,display_adapter display_adaptor,(computer science) an electronic device that converts information in memory to video output to a display
+35670,display_panel display_board board,a vertical surface on which information can be displayed to public view
+35671,display_window shop_window shopwindow show_window,a window of a store facing onto the street; used to display merchandise for sale in the store
+35672,displeasure,the feeling of being displeased or annoyed or dissatisfied with someone or something
+35673,disposable,an item that can be disposed of after it has been used
+35674,disposable_income,income (after taxes) that is available to you for saving or spending
+35675,disposal,the power to use something or someone; "used all the resources at his disposal"
+35676,disposal disposition,the act or means of getting rid of something
+35677,disposal electric_pig garbage_disposal,a kitchen appliance for disposing of garbage
+35678,disposition,a natural or acquired habit or characteristic tendency in a person or thing; "a swelling with a disposition to rupture"
+35679,disposition temperament,your usual mood; "he has a happy disposition"
+35680,disproof falsification refutation,any evidence that helps to establish the falsity of something
+35681,disproportion,lack of proportion; imbalance among the parts of something
+35682,disputant controversialist eristic,a person who disputes; who is good at or enjoys controversy
+35683,dispute contravention,coming into conflict with
+35684,dispute difference difference_of_opinion conflict,a disagreement or argument about something important; "he had a dispute with his wife"; "there were irreconcilable differences"; "the familiar conflict between Republicans and Democrats"
+35685,disqualification,unfitness that bars you from participation
+35686,disqualification,the act of preventing someone from participating by finding them unqualified
+35687,disquiet unease uneasiness,the trait of seeming ill at ease
+35688,disquisition,an elaborate analytical or explanatory essay or discussion
+35689,disregard neglect,lack of attention and due care
+35690,disregard neglect,willful lack of care and attention
+35691,disrepair,in need of repairs
+35692,disreputable_person,someone lacking public esteem
+35693,disrepute discredit,the state of being held in low esteem; "your actions will bring discredit to your name"; "because of the scandal the school has fallen into disrepute"
+35694,disrespect,a disrespectful mental attitude
+35695,disrespect discourtesy,an expression of lack of respect
+35696,disrupting_explosive bursting_explosive,a high explosive that is used to damage the target that is under attack
+35697,disruption perturbation,the act of causing disorder
+35698,dissatisfaction,the feeling of being displeased and discontent; "he was never slow to express his dissatisfaction with the service he received"
+35699,dissection,a minute and critical analysis
+35700,dissection,detailed critical analysis or examination one part at a time (as of a literary work)
+35701,dissection,cutting so as to separate into pieces
+35702,dissemination airing public_exposure spreading,the opening of a subject to widespread discussion and debate
+35703,dissemination diffusion,the property of being diffused or dispersed
+35704,dissent,(law) the difference of one judge's opinion from that of the majority; "he expressed his dissent in a contrary opinion"
+35705,dissent,a difference of opinion
+35706,dissenter dissident protester objector contestant,a person who dissents from some established policy
+35707,dissenting_opinion,an opinion that disagrees with the court's disposition of the case
+35708,dissertation thesis,a treatise advancing a new point of view resulting from research; usually a requirement for an advanced academic degree
+35709,disservice ill_service ill_turn,an act intended to help that turns out badly; "he did them a disservice"
+35710,dissidence,disagreement; especially disagreement with the government
+35711,dissilience,the emergence of seeds as seed pods burst open when they are ripe
+35712,dissimilarity unsimilarity,the quality of being dissimilar
+35713,dissimilation,a linguistic process by which one of two similar sounds in a word becomes less like the other; "the Old French MARBRE became the English MARBLE by dissimilation"
+35714,dissipation,breaking up and scattering by dispersion; "the dissipation of the mist"
+35715,dissociation,(chemistry) the temporary or reversible process in which a molecule or ion is broken down into smaller molecules or ions
+35716,dissociation,the act of removing from association
+35717,dissociation disassociation,a state in which some integrated part of a person's life becomes separated from the rest of the personality and functions independently
+35718,dissociation_constant,the equilibrium constant for a reversible dissociation
+35719,dissociative_disorder,dissociation so severe that the usually integrated functions of consciousness and perception of self break down
+35720,dissolubility solubleness,the property of being dissoluble; "he measure the dissolubility of sugar in water"
+35721,dissoluteness incontinence self-gratification,indiscipline with regard to sensuous pleasures
+35722,dissolution breakup,the termination or disintegration of a relationship (between persons or nations)
+35723,dissolution disintegration,separation into component parts
+35724,dissolution_of_marriage,an annulment of a marriage
+35725,dissolve,(film) a gradual transition from one scene to the next; the next scene is gradually superimposed as the former scene fades out
+35726,dissolving dissolution,the process of going into solution; "the dissolving of salt in water"
+35727,dissonance,disagreeable sounds
+35728,dissuasion,a communication that dissuades you
+35729,dissuasion,persuading not to do or believe something; talking someone out of a belief or an intended course of action
+35730,distaff,the sphere of work by women
+35731,distaff,the staff on which wool or flax is wound before spinning
+35732,distal_muscular_dystrophy,a form of muscular dystrophy that sets in between 40 and 60 years of age and is characterized by weakness and wasting of the muscles of the hands and forearms and lower legs; inheritance is autosomal dominant
+35733,distance,a remote point in time; "if that happens it will be at some distance in the future"; "at a distance of ten years he had forgotten many of the details"
+35734,distance,a distant region; "I could see it in the distance"
+35735,distance,the property created by the space between two objects or points
+35736,distance aloofness,indifference by personal withdrawal; "emotional distance"
+35737,distance length,size of the gap between two places; "the distance from New York to Chicago"; "he determined the length of the shortest line segment joining the two points"
+35738,distance space,the interval between two times; "the distance from birth to death"; "it all happened in the space of 10 minutes"
+35739,distance_vision,vision for objects that a 20 feet or more from the viewer
+35740,distemper,any of various infectious viral diseases of animals
+35741,distemper,paint made by mixing the pigments with water and a binder
+35742,distemper,a painting created with paint that is made by mixing the pigments with water and a binder
+35743,distemper,a method of painting in which the pigments are mixed with water and a binder; used for painting posters or murals or stage scenery
+35744,distention distension,the act of expanding by pressure from within
+35745,distillate distillation,a purified liquid produced by condensation from a vapor during distilling; the product of distilling
+35746,distillation distillment,the process of purifying a liquid by boiling it and condensing its vapors
+35747,distilled_water,water that has been purified by distillation
+35748,distiller,someone who distills alcoholic liquors
+35749,distillery still,a plant and works where alcoholic drinks are made by distillation
+35750,distinction,an honor awarded to someone in recognition of achievement or superiority; "she graduated with the highest distinction"
+35751,distinction,a distinguishing difference between similar things or people; "he learned the distinction between gold and lead"
+35752,distinctness sharpness,the quality of being sharp and clear
+35753,distorted_shape distortion,a shape resulting from distortion
+35754,distortion,a change (usually undesired) in the waveform of an acoustic or analog electrical signal; the difference between two measurements of a signal (as between the input and output signal); "heavy metal guitar players use vacuum tube amplifiers to produce extreme distortion"
+35755,distortion,the mistake of misrepresenting the facts
+35756,distortion deformation,a change for the worse
+35757,distortion overrefinement straining torture twisting,the act of distorting something so it seems to mean something it was not intended to mean
+35758,distortionist,a painter who introduces distortions
+35759,distraction,an obstacle to attention
+35760,distraction,mental turmoil; "he drives me to distraction"
+35761,distraction misdirection,the act of distracting; drawing someone's attention away from something; "conjurers are experts at misdirection"
+35762,distress,a state of adversity (danger or affliction or need); "a ship in distress"; "she was the classic maiden in distress"
+35763,distress,extreme physical pain; "the patient appeared to be in distress"
+35764,distress distraint,the seizure and holding of property as security for payment of a debt or satisfaction of a claim; "Originally distress was a landlord's remedy against a tenant for unpaid rents or property damage but now the landlord is given a landlord's lien"
+35765,distress hurt suffering,psychological suffering; "the death of his wife caused him great distress"
+35766,distress_signal distress_call,an internationally recognized signal sent out by a ship or plane indicating that help is needed
+35767,distributary,a branch of a river that flows away from the main stream and does not rejoin it
+35768,distributed_data_processing remote-access_data_processing teleprocessing,data processing in which some of the functions are performed in different places and connected by transmission facilities
+35769,distributed_fire,fire dispersed so as to engage effectively an area target
+35770,distribution,the commercial activity of transporting and selling goods from a producer to a consumer
+35771,distribution,the act of distributing or spreading or apportioning
+35772,distribution dispersion,the spatial or geographic property of being scattered about over a range, area, or volume; "worldwide in distribution"; "the distribution of nerve fibers"; "in complementary distribution"
+35773,distribution statistical_distribution,(statistics) an arrangement of values of a variable showing their observed or theoretical frequency of occurrence
+35774,distribution_agreement,a contract governing the marketing of an item of merchandise
+35775,distribution_channel channel,a way of selling a company's product either directly or via distributors; "possible distribution channels are wholesalers or small retailers or retail chains or direct mailers or your own stores"
+35776,distribution_cost,any cost incurred by a producer or wholesaler or retailer or distributor (as for advertising and shipping etc)
+35777,distribution_law,(chemistry) the total energy in an assembly of molecules is not distributed equally but is distributed around an average value according to a statistical distribution
+35778,distribution_list,list of names to whom a communication should be sent
+35779,distributive_shock,shock caused by poor distribution of the blood flow
+35780,distributor,a company that markets merchandise; "his company is a large distributor of software products"
+35781,distributor distributer,someone who markets merchandise
+35782,distributor distributer electrical_distributor,electrical device that distributes voltage to the spark plugs of a gasoline engine in the order of the firing sequence
+35783,distributor_cam,the cam inside the distributor that rotates to contact spark plug terminals in the correct order
+35784,distributor_cap,the cap of the distributor that holds in place the wires from the distributor to the spark plugs
+35785,distributor_housing,the housing that supports the distributor cam
+35786,distributor_point breaker_point point,a contact in the distributor; as the rotor turns its projecting arm contacts them and current flows to the spark plugs
+35787,district territory territorial_dominion dominion,a region marked off for administrative or other purposes
+35788,district_attorney DA,an official prosecutor for a judicial district
+35789,district_line,the boundary between two districts
+35790,district_manager,a manager who supervises the sales activity for a district
+35791,distrust distrustfulness mistrust,the trait of not trusting others
+35792,disturbance,the act of disturbing something or someone; setting something in motion
+35793,disturbance disruption commotion flutter hurly_burly to-do hoo-ha hoo-hah kerfuffle,a disorderly outburst or tumult; "they were amazed by the furious disturbance they had caused"
+35794,disturbance perturbation upset,an unhappy and worried mental state; "there was too much anger and disturbance"; "she didn't realize the upset she caused me"
+35795,disturber,a troubler who interrupts or interferes with peace and quiet; someone who causes disorder and commotion
+35796,disulfiram Antabuse,a drug (trade name Antabuse) used in the treatment of alcoholism; causes nausea and vomiting if alcohol is ingested
+35797,disunion,the termination or destruction of union
+35798,disunity,lack of unity (usually resulting from dissension)
+35799,disyllable dissyllable,a word having two syllables
+35800,dita dita_bark devil_tree Alstonia_scholaris,evergreen tree of eastern Asia and Philippines having large leathery leaves and small green-white flowers in compact cymes; bark formerly used medicinally
+35801,ditch,any small natural waterway
+35802,ditch,a long narrow excavation in the earth
+35803,ditch_digger mud_digger,a laborer who digs ditches
+35804,ditch_reed common_reed carrizo Phragmites_communis,tall North American reed having relative wide leaves and large plumelike panicles; widely distributed in moist areas; used for mats, screens and arrow shafts
+35805,ditch_spade long-handled_spade,a spade with a long handle for digging narrow ditches
+35806,dither pother fuss tizzy flap,an excited state of agitation; "he was in a dither"; "there was a terrible flap about the theft"
+35807,dithering,the process of representing intermediate colors by patterns of tiny colored dots that simulate the desired color
+35808,dithyramb,a wildly enthusiastic speech or piece of writing
+35809,dithyramb,(ancient Greece) a passionate hymn (usually in honor of Dionysus)
+35810,dittany_of_crete cretan_dittany crete_dittany hop_marjoram winter_sweet Origanum_dictamnus,dwarf aromatic shrub of Crete
+35811,ditto_mark ditto,a mark used to indicate the word above it should be repeated
+35812,ditty,a short simple song (or the words of a poem intended to be sung)
+35813,ditty_bag,kit used by sailors and soldiers
+35814,diuresis,increased secretion of urine; if not due to increased liquid intake or to the action of a diuretic drug it can be a symptom of diabetes mellitus
+35815,diuretic_drug diuretic water_pill,any substance that tends to increase the flow of urine, which causes the body to get rid of excess water
+35816,diurnal_variation,fluctuations that occur during each day
+35817,divan,a long backless sofa (usually with pillows against a wall)
+35818,divan diwan,a Muslim council of state
+35819,divan diwan,a collection of Persian or Arabic poems (usually by one author)
+35820,divan diwan,a Muslim council chamber or law court
+35821,divarication,branching at a wide angle
+35822,dive diving,a headlong plunge into water
+35823,dive nose_dive nosedive,a steep nose-down descent by an aircraft
+35824,dive-bombing,a bombing run in which the bomber releases the bomb while flying straight toward the target
+35825,dive_bomber,a bomber that releases its bombs during a steep dive toward the target
+35826,diver frogman underwater_diver,someone who works underwater
+35827,diver plunger,someone who dives (into water)
+35828,divergence divergency,an infinite series that has no limit
+35829,divergence divergency,the act of moving away in different direction from a common point; "an angle is formed by the divergence of two straight lines"
+35830,divergent_thinker,a thinker who moves away from the problem as stated and often has novel ideas and solutions
+35831,divergent_thinking out-of-the-box_thinking,thinking that moves away in diverging directions so as to involve a variety of aspects and which sometimes lead to novel ideas and solutions; associated with creativity
+35832,diverging_lens concave_lens,a lens such that a parallel beam of light passing through it is caused to diverge or spread out
+35833,diverseness diversity multifariousness variety,noticeable heterogeneity; "a diversity of possibilities"; "the range and variety of his work is amazing"
+35834,diversification,the condition of being varied; "that restaurant's menu lacks diversification; every day it is the same"
+35835,diversification variegation,the act of introducing variety (especially in investments or in the variety of goods and services offered); "my broker recommended a greater diversification of my investments"; "he limited his losses by diversification of his product line"
+35836,diversion deviation digression deflection deflexion divagation,a turning aside (of your course or attention or concern); "a diversion from the main highway"; "a digression into irrelevant details"; "a deflection from his goal"
+35837,diversion diversionary_attack,an attack calculated to draw enemy defense away from the point of the principal attack
+35838,diversion recreation,an activity that diverts or amuses or stimulates; "scuba diving is provided as a diversion for tourists"; "for recreation he wrote poetry and solved crossword puzzles"; "drug abuse is often regarded as a form of recreation"
+35839,diversionary_landing,an amphibious diversionary attack
+35840,diversity,the condition or result of being changeable
+35841,diverticulitis,inflammation of a diverticulum in the digestive tract (especially the colon); characterized by painful abdominal cramping and fever and constipation
+35842,diverticulosis,presence of multiple diverticula in the walls of the colon
+35843,diverticulum,a herniation through the muscular wall of a tubular organ (especially the colon)
+35844,divertimento serenade,a musical composition in several movements; has no fixed form
+35845,divestiture,an order to an offending party to rid itself of property; it has the purpose of depriving the defendant of the gains of wrongful behavior; "the court found divestiture to be necessary in preventing a monopoly"
+35846,divestiture,the sale by a company of a product line or a subsidiary or a division
+35847,divi-divi,twisted seed pods of the divi-divi tree; source of tannin
+35848,divi-divi Caesalpinia_coriaria,small thornless tree or shrub of tropical America whose seed pods are a source of tannin
+35849,divide,a serious disagreement between two groups of people (typically producing tension or hostility)
+35850,divided_highway dual_carriageway,a highway divided down the middle by a barrier that separates traffic going in different directions; "in Britain they call a divided highway a dual carriageway"
+35851,dividend,a number to be divided by another number
+35852,dividend,that part of the earnings of a corporation that is distributed to its shareholders; usually paid quarterly
+35853,dividend,a bonus; something extra (especially a share of a surplus)
+35854,dividend_warrant,an order of payment (such as a check payable to a shareholder) in which a dividend is paid
+35855,divider,a person who separates something into parts or groups
+35856,divider,a drafting instrument resembling a compass that is used for dividing lines into equal segments or for transferring measurements
+35857,divination,successful conjecture by unusual insight or good luck
+35858,divination foretelling soothsaying fortune_telling,the art or gift of prophecy (or the pretense of prophecy) by supernatural means
+35859,divine_guidance inspiration,(theology) a special influence of a divinity on the minds of human beings; "they believe that the books of Scripture were written under divine guidance"
+35860,divine_law,a law that is believed to come directly from God
+35861,divine_messenger,a messenger from God; "angel of death"
+35862,divine_right divine_right_of_kings,the doctrine that kings derive their right to rule directly from God and are not accountable to their subjects; rebellion is the worst of political crimes; "the doctrine of the divine right of kings was enunciated by the Stuarts in Britain in the 16th century"
+35863,diviner,someone who claims to discover hidden knowledge with the aid of supernatural powers
+35864,diving diving_event,an athletic competition that involves diving into water
+35865,diving_bell,diving apparatus for underwater work; has an open bottom and is supplied with compressed air
+35866,diving_board,a springboard from which swimmers can dive
+35867,diving_duck,any of various ducks of especially bays and estuaries that dive for their food
+35868,diving_petrel,any of several small diving birds of southern hemisphere seas; somewhat resemble auks
+35869,diving_suit diving_dress,a weighted and hermetically sealed garment supplied with air; worn by underwater divers
+35870,divining_rod dowser dowsing_rod waterfinder water_finder,forked stick that is said to dip down to indicate underground water or oil
+35871,divinity,the quality of being divine; "ancient Egyptians believed in the divinity of the Pharaohs"
+35872,divinity divinity_fudge,white creamy fudge made with egg whites
+35873,divisibility,the quality of being divisible; the capacity to be divided into parts or divided among a number of persons
+35874,division,(biology) a group of organisms forming a subdivision of a larger category
+35875,division,(botany) taxonomic unit of plants corresponding to a phylum
+35876,division,an administrative unit in government or business
+35877,division,an army unit large enough to sustain combat; "two infantry divisions were held in reserve"
+35878,division,an arithmetic operation that is the inverse of multiplication; the quotient of two numbers is computed
+35879,division,the act or process of dividing
+35880,division air_division,a unit of the United States Air Force usually comprising two or more wings
+35881,division naval_division,a group of ships of similar type
+35882,division partition partitioning segmentation sectionalization sectionalisation,the act of dividing or partitioning; separation by the creation of a boundary that divides or keeps apart
+35883,division variance,discord that splits a group
+35884,division_Archaebacteria,in some classifications considered a kingdom
+35885,division_Eubacteria,one-celled monerans having simple cells with rigid walls and (in motile types) flagella
+35886,divisor,the number by which a dividend is divided
+35887,divisor factor,one of two or more integers that can be exactly divided into another integer; "what are the 4 factors of 6?"
+35888,divorce divorcement,the legal dissolution of a marriage
+35889,divorce_court,a court having jurisdiction over the termination of marriage contracts
+35890,divorce_lawyer,a lawyer specializing in actions for divorce or annulment
+35891,divorcee grass_widow,a divorced woman or a woman who is separated from her husband
+35892,divot,(golf) the cavity left when a piece of turf is cut from the ground by the club head in making a stroke; "it was a good drive but the ball ended up in a divot"
+35893,divot,a piece of turf dug out of a lawn or fairway (by an animals hooves or a golf club)
+35894,divulgence divulgement,the act of disclosing something that was secret or private
+35895,divvy,short for dividend; especially one paid by a cooperative society
+35896,dixie,a large metal pot (12 gallon camp kettle) for cooking; used in military camps
+35897,dizziness giddiness lightheadedness vertigo,a reeling sensation; a feeling that you are about to fall
+35898,do doh ut,the syllable naming the first (tonic) note of any major scale in solmization
+35899,do-si-do,a square-dance figure; two dancers approach each other and circle back to back before returning to their original places
+35900,dobra,the basic unit of money on Sao Tome e Principe
+35901,dobson dobsonfly dobson_fly Corydalus_cornutus,large soft-bodied insect having long slender mandibles in the male; aquatic larvae often used as bait
+35902,docent,a teacher at some universities
+35903,docility,the trait of being agreeably submissive and manageable
+35904,dock,an enclosure in a court of law where the defendant sits during the trial
+35905,dock,the solid bony part of the tail of an animal as distinguished from the hair
+35906,dock dockage docking_facility,landing in a harbor next to a pier where ships are loaded and unloaded or repaired; may have gates to let water in or out; "the ship arrived at the dock more than a day late"
+35907,dock loading_dock,a platform where trucks or trains can be loaded or unloaded
+35908,dock sorrel sour_grass,any of certain coarse weedy plants with long taproots, sometimes used as table greens or in folk medicine
+35909,dockage docking_fee,a fee charged for a vessel to use a dock
+35910,docket,(law) the calendar of a court; the list of cases to be tried or a summary of the court's activities
+35911,docking moorage dockage tying_up,the act of securing an arriving vessel with ropes
+35912,dockside,the region adjacent to a boat dock
+35913,dockyard,an establishment on the waterfront where vessels are built or fitted out or repaired
+35914,docosahexaenoic_acid,an omega-3 fatty acid with 22 carbon atoms; found in fish (especially tuna and bluefish)
+35915,doctor,children take the roles of physician or patient or nurse and pretend they are at the physician's office; "the children explored each other's bodies by playing the game of doctor"
+35916,doctor Dr.,a person who holds Ph.D. degree (or the equivalent) from an academic institution; "she is a doctor of philosophy in physics"
+35917,doctor doc physician MD Dr. medico,a licensed medical practitioner; "I felt so bad I went to see my doctor"
+35918,doctor's_degree doctorate,one of the highest earned academic degrees conferred by a university
+35919,doctor-patient_relation,the responsibility of a physician to act in the best interests of the patient
+35920,doctorfish doctor-fish Acanthurus_chirurgus,surgeon fish of the West Indies
+35921,doctorspeak,medical jargon
+35922,doctrine philosophy philosophical_system school_of_thought ism,a belief (or system of beliefs) accepted as authoritative by some group or school
+35923,doctrine_of_analogy analogy,the religious belief that between creature and creator no similarity can be found so great but that the dissimilarity is always greater; any analogy between God and humans will always be inadequate
+35924,document,a written account of ownership or obligation
+35925,document,anything serving as a representation of a person's thinking by means of symbolic marks
+35926,document written_document papers,writing that provides information (especially information of an official nature)
+35927,documentary docudrama documentary_film infotainment,a film or TV program presenting the facts about a person or event
+35928,documentation certification corroboration,confirmation that some fact or statement is true through the use of documentary evidence
+35929,documentation support,documentary validation; "his documentation of the results was excellent"; "the strongest support for this view is the work of Jones"
+35930,dodder,a leafless annual parasitic vine of the genus Cuscuta having whitish or yellow filamentous stems; obtain nourishment through haustoria
+35931,dodderer,one who dodders from old age and weakness
+35932,doddle,an easy task
+35933,dodecagon,a twelve-sided polygon
+35934,dodecahedron,any polyhedron having twelve plane faces
+35935,dodge,a quick evasive movement
+35936,dodge dodging scheme,a statement that evades the question by cleverness or trickery
+35937,dodger fox slyboots,a shifty deceptive person
+35938,dodo Raphus_cucullatus,extinct heavy flightless bird of Mauritius related to pigeons
+35939,dodo fogy fogey fossil,someone whose style is out of fashion
+35940,doe,mature female of mammals of which the male is called `buck'
+35941,doeskin,soft leather from deerskin or lambskin
+35942,doeskin,a fine smooth soft woolen fabric
+35943,dog,informal term for a man; "you lucky dog"
+35944,dog domestic_dog Canis_familiaris,a member of the genus Canis (probably descended from the common wolf) that has been domesticated by man since prehistoric times; occurs in many breeds; "the dog barked all night"
+35945,dog's_breakfast dog's_dinner,a poor job; a mess; "they made a real dog's breakfast of that job"
+35946,dog's_mercury dog_mercury Mercurialis_perennis,European perennial weedy plant with greenish flowers
+35947,dog-day_cicada harvest_fly,its distinctive song is heard during July and August
+35948,dog-ear,a corner of a page turned down to mark your place
+35949,dog_biscuit,a hard biscuit for dogs
+35950,dog_bite,a bite inflicted by a dog
+35951,dog_breeding,breeding dogs
+35952,dog_catcher,an employee of a municipal pound who is hired to round up stray dogs and cats
+35953,dog_collar,a collar for a dog
+35954,dog_days canicule canicular_days,the hot period between early July and early September; a period of inactivity
+35955,dog_fennel Eupatorium_capillifolium,weedy plant of southeastern United States having divided leaves and long clusters of greenish flowers
+35956,dog_flea Ctenocephalides_canis,flea that attacks dogs and cats
+35957,dog_food,food prepared for dogs
+35958,dog_grass couch_grass quackgrass quack_grass quick_grass witch_grass witchgrass Agropyron_repens,European grass spreading rapidly by creeping rhizomes; naturalized in North America as a weed
+35959,dog_in_the_manger,someone who prevents you from enjoying something that they themselves have no need for
+35960,dog_laurel dog_hobble switch-ivy Leucothoe_fontanesiana Leucothoe_editorum,fast-growing evergreen shrub of southeastern United States having arching interlaced branches and racemes of white flowers
+35961,dog_paddle,an elementary swimming stroke imitating a swimming dog
+35962,dog_racing,a race between dogs; usually an occasion for betting on the outcome
+35963,dog_rose Rosa_canina,prickly wild rose with delicate pink or white scentless flowers; native to Europe
+35964,dog_shit dog_do doggy_do dog_turd,fecal droppings from a dog
+35965,dog_show,a competitive exhibition of dogs
+35966,dog_stinkhorn Mutinus_caninus,a stinkhorn having a stalk without a cap; the slimy gleba is simply plastered on its surface near the apex where winged insects can find it
+35967,dog_tag,military identification tag worn on a chain around the neck
+35968,dog_tag,metal plate on a dog collar bearing its registration number
+35969,dog_violet heath_violet Viola_canina,Old World leafy-stemmed blue-flowered violet
+35970,dog_wrench,a wrench with a handle shaped like a crank
+35971,dogbane,any of several poisonous perennial plants of the genus Apocynum having acrid milky juice and bell-shaped white or pink flowers and a very bitter root
+35972,dogcart,a cart drawn by a dog
+35973,doge,formerly the chief magistrate in the republics of Venice and Genoa
+35974,dogfight,a fiercely disputed contest; "their rancor dated from a political dogfight between them"; "a real dogfight for third place"; "a prolonged dogfight over their rival bids for the contract"
+35975,dogfight,an aerial engagement between fighter planes
+35976,dogfight,a violent fight between dogs (sometimes organized illegally for entertainment and gambling)
+35977,dogfighter,a fighter pilot who engages in an aerial dogfights
+35978,dogfish,any of several small sharks
+35979,doggedness perseverance persistence persistency tenacity tenaciousness pertinacity,persistent determination
+35980,doggerel doggerel_verse jingle,a comic verse of irregular measure; "he had heard some silly doggerel that kept running through his mind"
+35981,doggie_bag doggy_bag,a bag for food that a customer did not eat at a restaurant; the transparent pretense is that the food is taken home to feed the customer's dog
+35982,doghouse,an idiomatic term for being in disfavor; "in the doghouse"
+35983,dogie dogy leppy,motherless calf in a range herd of cattle
+35984,dogleg,angle that resembles the hind leg of a dog
+35985,dogleg,a golf hole with a sharp angle in the fairway
+35986,dogma,a doctrine or code of beliefs accepted as authoritative; "he believed all the Marxist dogma"
+35987,dogma tenet,a religious doctrine that is proclaimed as true without proof
+35988,dogmatist doctrinaire,a stubborn person of arbitrary or arrogant opinions
+35989,dogsbody,a worker who has to do all the unpleasant or boring jobs that no one else wants to do
+35990,dogsled dog_sled dog_sleigh,a sled pulled by dogs
+35991,dogtooth,a carved pyramidal ornament; used in 13th century England
+35992,dogtooth_violet dogtooth dog's-tooth_violet,perennial woodland spring-flowering plant; widely cultivated
+35993,dogtrot,a steady trot like that of a dog
+35994,dogwatch,either of two short watches: from 4-6 pm or 6-8 pm
+35995,dogwood,hard tough wood of any dogwood of the genus Cornus; resembles boxwood
+35996,dogwood dogwood_tree cornel,a tree of shrub of the genus Cornus often having showy bracts resembling flowers
+35997,doily doyley doyly,a small round piece of linen placed under a dish or bowl
+35998,dol,a unit of pain intensity
+35999,dolce_far_niente,carefree idleness
+36000,doldrums,a belt of calms and light winds between the northern and southern trade winds of the Atlantic and Pacific
+36001,dole,a share of money or food or clothing that has been charitably given
+36002,dole pogy pogey,money received from the state
+36003,dolefulness,sadness caused by grief or affliction
+36004,dolichocephalic,an adult with a long narrow head
+36005,dolichocephaly dolichocephalism,the quality of being dolichocephalic
+36006,doliolum,free-swimming oceanic tunicate with a barrel-shaped transparent body
+36007,doll dolly,a small replica of a person; used as a toy
+36008,dollar,the basic monetary unit in many countries; equal to 100 cents
+36009,dollar,a United States coin worth one dollar; "the dollar coin has never been popular in the United States"
+36010,dollar dollar_bill one_dollar_bill buck clam,a piece of paper money worth one dollar
+36011,dollar dollar_mark dollar_sign,a symbol of commercialism or greed; "he worships the almighty dollar"; "the dollar sign means little to him"
+36012,dollar_diplomacy,diplomacy influenced by economic considerations
+36013,dollar_mark dollar_sign,a mark ($) written before a number to indicate that it stands for the number of dollars
+36014,dollar_volume turnover,the volume measured in dollars; "the store's dollar volume continues to rise"
+36015,dollarfish Poronotus_triacanthus,small food fish of Atlantic coast
+36016,dollhouse doll's_house,a house so small that it is likened to a child's plaything
+36017,dollhouse doll's_house,a small model of a house used as a toy by children
+36018,dollop,a small measure (usually of food)
+36019,dolly,conveyance consisting of a wheeled support on which a camera can be mounted
+36020,dolly,conveyance consisting of a wheeled platform for moving heavy objects
+36021,dolman,a woman's cloak with dolman sleeves
+36022,dolman dolman_jacket,a hussar's jacket worn over the shoulders
+36023,dolman_sleeve,a sleeve with a large armhole and tight cuff
+36024,dolmas stuffed_grape_leaves,well-seasoned rice (with nuts or currants or minced lamb) simmered or braised in stock
+36025,dolmen cromlech portal_tomb,a prehistoric megalithic tomb typically having two large upright stones and a capstone
+36026,dolomite,a kind of sedimentary rock resembling marble or limestone but rich in magnesium carbonate
+36027,dolomite bitter_spar,a light colored mineral consisting of calcium magnesium carbonate; a source of magnesium; used as a ceramic and as fertilizer
+36028,dolor dolour,(poetry) painful grief
+36029,dolphin,any of various small toothed whales with a beaklike snout; larger than porpoises
+36030,dolphin_kick,a swimming kick; an up and down kick of the feet together
+36031,dolphin_oil,an unsaturated fatty oil obtained from dolphins and used as a fine lubricant
+36032,dolphin_striker martingale,spar under the bowsprit of a sailboat
+36033,dolphinfish dolphin mahimahi,large slender food and game fish widely distributed in warm seas (especially around Hawaii)
+36034,dolphinfish mahimahi,the lean flesh of a saltwater fish found in warm waters (especially in Hawaii)
+36035,domain demesne land,territory over which rule or control is exercised; "his domain extended into Europe"; "he made it the law of the land"
+36036,domain domain_of_a_function,(mathematics) the set of values of the independent variable for which a function is defined
+36037,domain_name,strings of letters and numbers (separated by periods) that are used to name organizations and computers and addresses on the internet; "domain names are organized hierarchically with the more generic parts to the right"
+36038,domatium,a part of a plant (e.g., a leaf) that has been modified to provide protection for insects or mites or fungi
+36039,dombeya,any of various shrubs or small trees of the genus Dombeya grown for their rounded clusters of exquisite often sweet-scented flowers usually hanging beneath the leaves
+36040,dome,a concave shape whose distinguishing characteristic is that the concavity faces downward
+36041,dome,a hemispherical roof
+36042,dome domed_stadium covered_stadium,a stadium that has a roof
+36043,domestic domestic_help house_servant,a servant who is paid to perform menial tasks around the household
+36044,domestic_animal domesticated_animal,any of various animals that have been tamed and made fit for a human environment
+36045,domestic_ass donkey Equus_asinus,domestic beast of burden descended from the African wild ass; patient but stubborn
+36046,domestic_carp Cyprinus_carpio,large Old World freshwater bottom-feeding fish introduced into Europe from Asia; inhabits ponds and sluggish streams and often raised for food; introduced into United States where it has become a pest
+36047,domestic_cat house_cat Felis_domesticus Felis_catus,any domesticated member of the genus Felis
+36048,domestic_flight,a flight that begins and ends in the same country
+36049,domestic_fowl fowl poultry,a domesticated gallinaceous bird thought to be descended from the red jungle fowl
+36050,domestic_goat Capra_hircus,any of various breeds of goat raised for milk or meat or wool
+36051,domestic_llama Lama_peruana,used in the Andes as a beast of burden and source of wool; considered a domesticated variety of the guanaco
+36052,domestic_partner significant_other spousal_equivalent spouse_equivalent,a person (not necessarily a spouse) with whom you cohabit and share a long-term sexual relationship
+36053,domestic_pigeon,domesticated pigeon raised for sport or food
+36054,domestic_prelate,(Roman Catholic Church) a priest who is an honorary member of the papal household
+36055,domestic_sheep Ovis_aries,any of various breeds raised for wool or edible meat or skin
+36056,domestic_silkworm_moth domesticated_silkworm_moth Bombyx_mori,stocky creamy-white Asiatic moth found almost entirely under human care; the source of most of the silk commerce
+36057,domestic_terrorism,terrorism practiced in your own country against your own people; "the 1995 bombing of a federal building in Oklahoma City was an instance of domestic terrorism"
+36058,domestic_violence,violence or physical abuse directed toward your spouse or domestic partner or other members of a household
+36059,domestication,adaptation to intimate association with human beings
+36060,domestication,accommodation to domestic life; "her explorer husband resisted all her attempts at domestication"
+36061,domesticity,the quality of being domestic or domesticated; "a royal family living in unpretentious domesticity"
+36062,domesticity,domestic activities or life; "making a hobby of domesticity"
+36063,domicile legal_residence,(law) the residence where you have your permanent home or principal establishment and to where, whenever you are absent, you intend to return; every person is compelled to have one and only one domicile at a time; "what's his legal residence?"
+36064,dominance,the organic phenomenon in which one of a pair of alleles present in a genotype is expressed in the phenotype and the other allele of the pair is not
+36065,dominance ascendance ascendence ascendancy ascendency control,the state that exists when one person or group has power over another; "her apparent dominance of her husband was really her attempt to make him pay attention to her"
+36066,dominant,(music) the fifth note of the diatonic scale
+36067,dominant_allele dominant,an allele that produces the same phenotype whether its paired allele is identical or different
+36068,dominant_gene,gene that produces the same phenotype in the organism whether or not its allele identical; "the dominant gene for brown eyes"
+36069,domination,social control by dominating
+36070,domination mastery supremacy,power to dominate or defeat; "mastery of the seas"
+36071,dominatrix,a dominating woman (especially one who plays that role in a sadomasochistic sexual relationship)
+36072,dominion rule,dominance or power through legal authority; "France held undisputed dominion over vast areas of Africa"; "the rule of Caesar"
+36073,domino,a loose hooded cloak worn with a half mask as part of a masquerade costume
+36074,domino,a small rectangular block used in playing the game of dominoes; the face of each block has two equal areas that can bear 0 to 6 dots
+36075,domino half_mask eye_mask,a mask covering the upper part of the face but with holes for the eyes
+36076,domino_effect,the consequence of one event setting off a chain of similar events (like a falling domino causing a whole row of upended dominos to fall)
+36077,domino_theory,the political theory that if one nation comes under communist control then neighboring nations will also come under communist control
+36078,dominoes dominos,any of several games played with small rectangular blocks
+36079,dominus dominie domine dominee,a clergyman; especially a settled minister or parson
+36080,domoic_acid,a neurotoxin that is deadly for humans; found in various marine algae
+36081,don father,the head of an organized crime family
+36082,don't-know,a person who responds `I don't know' in a public opinion poll; "70% in favor, 13% opposed and 17% don't-knows"
+36083,dong,the basic unit of money in Vietnam
+36084,dongle,(computer science) an electronic device that must be attached to a computer in order for it to use protected software
+36085,donkey,the symbol of the Democratic Party; introduced in cartoons by Thomas Nast in 1874
+36086,donkey_jacket,a short thick jacket; often worn by workmen
+36087,donna,an Italian woman of rank
+36088,donor,(medicine) someone who gives blood or tissue or an organ to be used in another person (the host)
+36089,donor giver presenter bestower conferrer,person who makes a gift of property
+36090,donor_card,a card that you carry on your person and that authorizes the use of your organs for transplantation after your death
+36091,doo-wop,a genre (usually a cappella) of Black vocal-harmony music of the 1950s that evolved in New York City from gospel singing; characterized by close four-part harmonies; the name derived from some of the nonsense syllables sung by the backup
+36092,doodad doohickey doojigger gimmick gizmo gismo gubbins thingamabob thingumabob thingmabob thingamajig thingumajig thingmajig thingummy whatchamacallit whatchamacallum whatsis widget,something unspecified whose name is either forgotten or not known; "she eased the ball-shaped doodad back into its socket"; "there may be some great new gizmo around the corner that you will want to use"
+36093,doodia rasp_fern,any fern of the genus Doodia having pinnate fronds with sharply dentate pinnae
+36094,doodlebug,a small motor vehicle
+36095,doodlebug ant_lion antlion,the larva of any of several insects
+36096,doom doomsday day_of_reckoning end_of_the_world,an unpleasant or disastrous destiny; "everyone was aware of the approaching doom but was helpless to avoid it"; "that's unfortunate but it isn't the end of the world"
+36097,doomed lost,people who are destined to die soon; "the agony of the doomed was in his voice"
+36098,door,anything providing a means of access (or escape); "we closed the door to Haitian immigrants"; "education is the door to success"
+36099,door,a structure where people live or work (usually ordered along a street or road); "the office next door"; "they live two doors up the street from us"
+36100,door,a room that is entered via a door; "his office is the third door down the hall on the left"
+36101,door,a swinging or sliding barrier that will close the entrance to a room or building or vehicle; "he knocked on the door"; "he slammed the door as he left"
+36102,door_prize,tickets are passed out at the entrance to a dance or party or other social function and a prize is awarded to the holder of the winning ticket
+36103,doorbell bell buzzer,a push button at an outer door that gives a ringing or buzzing signal when pushed
+36104,doorframe doorcase,the frame that supports a door
+36105,doorjamb doorpost,a jamb for a door
+36106,doorkeeper doorman door_guard hall_porter porter gatekeeper ostiary,someone who guards an entrance
+36107,doorkeeper ostiary ostiarius,the lowest of the minor Holy Orders in the unreformed Western Church but now suppressed by the Roman Catholic Church
+36108,doorknob doorhandle,a knob used to release the catch when opening a door (often called `doorhandle' in Great Britain)
+36109,doorlock,a lock on an exterior door
+36110,doormat welcome_mat,a mat placed outside an exterior door for wiping the shoes before entering
+36111,doornail,a nail with a large head; formerly used to decorate doors
+36112,doorplate,a nameplate fastened to a door; indicates the person who works or lives there
+36113,doorsill doorstep threshold,the sill of a door; a horizontal piece of wood or stone that forms the bottom of a doorway and offers support when passing through a doorway
+36114,doorstop doorstopper,a stop that keeps open doors from moving
+36115,doorway door room_access threshold,the entrance (the space in a wall) through which you enter or leave a room or building; the space that a door can close; "he stuck his head in the doorway"
+36116,dooryard,a yard outside the front or rear door of a house
+36117,dopa dihydroxyphenylalanine,amino acid that is formed in the liver and converted into dopamine in the brain
+36118,dopamine Dopastat Intropin,a monoamine neurotransmitter found in the brain and essential for the normal functioning of the central nervous system; as a drug (trade names Dopastat and Intropin) it is used to treat shock and hypotension
+36119,dope poop the_skinny low-down,slang terms for inside information; "is that the straight dope?"
+36120,dope_sheet scratch_sheet,a racing publication giving information on horses and the outcomes of horse races
+36121,doppelganger,a ghostly double of a living person that haunts its living counterpart
+36122,dorbeetle,Old World dung beetle that flies with a droning sound
+36123,dormancy quiescence quiescency,a state of quiet (but possibly temporary) inaction; "the volcano erupted after centuries of dormancy"
+36124,dormant_account,a savings account showing no activity (other than posting interest) for some specified period; "the dormant account reverted to the state under escheat laws"
+36125,dormer dormer_window,a gabled extension built out from a sloping roof to accommodate a vertical window
+36126,dormer_window,the window in a gabled extension built to accommodate a window
+36127,dormitory dorm residence_hall hall student_residence,a college or university building containing living quarters for students
+36128,dormitory dormitory_room dorm_room,a large sleeping room containing several beds
+36129,dormouse,small furry-tailed squirrel-like Old World rodent that becomes torpid in cold weather
+36130,dorsal_fin,unpaired median fin on the backs of fishes and some other aquatic vertebrates that help to maintain balance
+36131,dorsal_root dorsal_horn posterior_root posterior_horn,one of two roots of a spinal nerve that passes dorsally from the spinal cord and that consists of sensory fibers
+36132,dorsal_scapular_vein vena_scapularis_dorsalis,vein that is a tributary of the subclavian vein or external jugular vein and accompanies the descending scapular artery
+36133,dorsiflexion,the act of bending backward (of the body or a body part)
+36134,dorsum,the back of the body of a vertebrate or any analogous surface (as the upper or outer surface of an organ or appendage or part); "the dorsum of the foot"
+36135,dory,marine fishes widely distributed in mid-waters and deep slope waters
+36136,dose dosage,the quantity of an active agent (substance or radiation) taken in or absorbed at any one time
+36137,dose dosage,a measured portion of medicine taken at any one time
+36138,dose_rate,the quantity of radiation absorbed per unit time
+36139,dosemeter dosimeter,a measuring instrument for measuring doses of ionizing radiation (X-rays or radioactivity)
+36140,dosimetry,measuring the dose of radiation emitted by a radioactive source
+36141,dossal dossel,an ornamental hanging of rich fabric hung behind the altar of a church or at the sides of a chancel
+36142,dosser street_person,someone who sleeps in any convenient place
+36143,dossier,a collection of papers containing detailed information about a particular person or subject (usually a person's record)
+36144,dot dit,the shorter of the two telegraphic signals used in Morse code
+36145,dot-com dot_com dot_com_company,a company that operates its business primarily on the internet using a URL that ends in `.com'
+36146,dot_matrix,a rectangular matrix of dots from which written characters can be formed
+36147,dot_matrix_printer matrix_printer dot_printer,a printer that represents each character as a pattern of dots from a dot matrix
+36148,dotage second_childhood senility,mental infirmity as a consequence of old age; sometimes shown by foolish infatuations
+36149,dotard,an oldster in his dotage; someone whose age has impaired his intellect
+36150,dotted_gayfeather Liatris_punctata,herb with many stems bearing narrow slender wands of crowded rose-lavender flowers; central United States and Canada to Texas and northern Mexico
+36151,dotted_line,a line made up of dots or dashes; often used to indicate where you are supposed to sign a contract; "just sign on the dotted line"
+36152,dotterel dotrel Charadrius_morinellus Eudromias_morinellus,rare plover of upland areas of Eurasia
+36153,dottle,the residue of partially burnt tobacco left caked in the bowl of a pipe after smoking
+36154,double,a quantity that is twice as great as another; "36 is the double of 18"
+36155,double image look-alike,someone who closely resembles a famous person (especially an actor); "he could be Gingrich's double"; "she's the very image of her mother"
+36156,double stunt_man stunt_woman,a stand-in for movie stars to perform dangerous stunts; "his first job in Hollywood was as a double for Clark Gable"
+36157,double two-base_hit two-bagger two-baser,a base hit on which the batter stops safely at second base; "he hit a double to deep centerfield"
+36158,double-bitted_ax double-bitted_axe Western_ax Western_axe,an ax that has cutting edges on both sides of the head
+36159,double-blind_procedure double-blind_experiment double-blind_study,an experimental procedure in which neither the subjects of the experiment nor the persons administering the experiment know the critical aspects of the experiment; "a double-blind procedure is used to guard against both experimenter bias and placebo effects"
+36160,double-bogey,(golf) a score of two strokes over par for a hole
+36161,double-breasted_jacket,a jacket having fronts that overlap enough for two separate rows of buttons
+36162,double-breasted_suit,a suit with a double-breasted jacket
+36163,double-crosser double-dealer two-timer betrayer traitor,a person who says one thing and does another
+36164,double-hung_window,a window having two sashes that slide up and down
+36165,double-prop double-propeller_plane twin-prop twin-propeller-plane,a propeller plane with an engine that drives two propellers in opposite directions (for stability)
+36166,double-reed_instrument double_reed,a woodwind that has a pair of joined reeds that vibrate together
+36167,double-spacing,typing that leaves alternate lines blank
+36168,double_Dutch,an incomprehensible talk
+36169,double_Dutch,the difficult version of jump rope in which players jump over two ropes that are swung in a crisscross manner by two turners
+36170,double_Gloucester,a smooth firm mild orange-red cheese
+36171,double_agent,a spy who works for two mutually antagonistic countries
+36172,double_bar,notation marking the end of principal parts of a musical composition; two adjacent bar lines
+36173,double_bed,a bed wide enough to accommodate two sleepers
+36174,double_bind,(psychology) an unresolvable dilemma; situation in which a person receives contradictory messages from a person who is very powerful
+36175,double_blind,a test procedure in which the identity of those receiving the intervention is concealed from both the administrators and the subjects until after the test is completed; designed to reduce or eliminate bias in the results
+36176,double_boiler double_saucepan,two saucepans, one fitting inside the other
+36177,double_bond,a covalent bond in which two pairs of electrons are shared between two atoms
+36178,double_chin buccula,a fold of fatty tissue under the chin
+36179,double_clinch,a clinch with two loops
+36180,double_cream,fresh soft French cheese containing at least 60% fat
+36181,double_creme heavy_whipping_cream,cream with a fat content of 48% or more
+36182,double_crochet double_stitch,a kind of crochet stitch
+36183,double_cross double-crossing,an act of betrayal; "he gave us the old double cross"; "I could no longer tolerate his impudent double-crossing"
+36184,double_dagger double_obelisk diesis,a character used in printing to indicate a cross reference or footnote
+36185,double_damages,twice the amount that a court would normally find the injured party entitled to
+36186,double_date,a date in which two couples participate
+36187,double_decomposition double_decomposition_reaction metathesis,a chemical reaction between two compounds in which parts of each are interchanged to form two new compounds (AB+CD=AD+CB)
+36188,double_digit,a two-digit integer; from 10 to 99
+36189,double_dipper,someone who draws two incomes from the government (usually by combining a salary and a pension)
+36190,double_dipping,two incomes received from the same source (as by holding a government job and receiving a government pension)
+36191,double_door,two vertical doors that meet in the middle of the door frame when closed
+36192,double_dribble,an illegal dribble in basketball (the player uses both hands to dribble or the player starts to dribble a second time after coming to a stop)
+36193,double_eagle,(golf) a score of three strokes under par on a hole
+36194,double_eagle,a former gold coin in the United States worth 20 dollars
+36195,double_entendre,an ambiguity with one interpretation that is indelicate
+36196,double_entry double-entry_bookkeeping,bookkeeper debits the transaction to one account and credits it to another
+36197,double_fault,(tennis) two successive faults in serving resulting in the loss of the point
+36198,double_first,a first-class honours degree in two subjects
+36199,double_flat,a musical notation of two flats in front of a note indicating that it is to be lowered by two semitones
+36200,double_glazing,a window with two panes of glass and a space between them; reduces heat and noise transmission through the window
+36201,double_helix,a pair of parallel helices intertwined about a common axis; "the shape of the DNA molecule is a double helix"
+36202,double_indemnity,a clause in an insurance policy that provides for double the face value of the policy in the case of accidental death
+36203,double_jeopardy,the prosecution of a defendant for a criminal offense for which he has already been tried; prohibited in the fifth amendment to the United States Constitution
+36204,double_knit,a knit fabric similar to jersey that is made with two sets of needles producing a double thickness joined by interlocking stitches
+36205,double_leg_circle,a gymnastic exercise performed on the pommel horse when the gymnast (with legs together) swings his legs in a circle while alternating hands on the pommels
+36206,double_negative,an affirmative constructed from two negatives; "A not unwelcome outcome"
+36207,double_negative,a grammatically substandard but emphatic negative; "I don't never go"
+36208,double_play,the act of getting two players out on one play
+36209,double_pneumonia,lobar pneumonia involving both lungs
+36210,double_quotes,a pair of quotation marks
+36211,double_reed,a pair of joined reeds that vibrate together to produce the sound in some woodwinds
+36212,double_refraction birefringence,splitting a ray into two parallel rays polarized perpendicularly
+36213,double_replacement_reaction,a chemical reaction between two compounds where the positive ion of one compound is exchanged with the positive ion of another compound
+36214,double_reverse,(American football) a running play in which a first reverse is followed by a second reverse
+36215,double_rhyme,a two-syllable rhyme; "`ended' and `blended' form a double rhyme"
+36216,double_salt,a solution of two simple salts that forms a single substance on crystallization
+36217,double_sharp,a musical notation of two sharps in front of a note indicating that it is to be raised by two semitones
+36218,double_standard,an ethical or moral code that applies more strictly to one group than to another
+36219,double_standard_of_sexual_behavior,a code that permits greater sexual freedom for men than for women (associated with the subordination of women)
+36220,double_stopping,stopping two strings and producing two notes at the same time
+36221,double_take,a delayed reaction indicating surprise
+36222,double_talk,deliberately unintelligible gibberish
+36223,double_time,a fast marching pace (180 steps/min) or slow jog
+36224,double_time,a doubled wage (for working overtime)
+36225,doubler,an electronic device that doubles the voltage or the frequency of an input signal
+36226,doubles,badminton played with two players on each side
+36227,doubles,tennis played with two players on each side
+36228,doublespeak,any language that pretends to communicate but actually does not
+36229,doublet,a man's close-fitting jacket; worn during the Renaissance
+36230,doublethink,believing two contradictory ideas at the same time
+36231,doubleton,(bridge) a pair of playing cards that are the only cards in their suit in the hand dealt to a player
+36232,doubletree,a crossbar on a wagon or carriage to which two whiffletrees are attached in order to harness two horses abreast
+36233,doubling,increase by a factor of two; "doubling with a computer took no time at all"
+36234,doubling double,raising the stakes in a card game by a factor of 2; "I decided his double was a bluff"
+36235,doubloon,a former Spanish gold coin
+36236,doubly_transitive_verb doubly_transitive_verb_form,a transitive verb that takes both a direct and an indirect object
+36237,doubt dubiousness doubtfulness question,uncertainty about the truth or factuality or existence of something; "the dubiousness of his claim"; "there is no question about the validity of the enterprise"
+36238,doubt uncertainty incertitude dubiety doubtfulness dubiousness,the state of being unsure of something
+36239,doubting_Thomas,someone who demands physical evidence in order to be convinced (especially when this demand is out of place)
+36240,douche,irrigation with a jet of water or medicated solution into or around a body part (especially the vagina) to treat infections or cleanse from odorous contents
+36241,douche douche_bag,a small syringe with detachable nozzles; used for vaginal lavage and enemas
+36242,dough,a flour mixture stiff enough to knead or roll
+36243,doughboy,an American infantryman in World War I
+36244,doughboy,a rounded lump of dough that is deep-fried and served as hot bread; "the doughboy was a predecessor of the doughnut"
+36245,doughnut donut sinker,a small ring-shaped friedcake
+36246,douglas_fir,strong durable timber of a douglas fir
+36247,douglas_fir,tall evergreen timber tree of western North America having resinous wood and short needles
+36248,douroucouli Aotus_trivirgatus,nocturnal monkey of Central America and South America with large eyes and thick fur
+36249,dove,an emblem of peace
+36250,dove,any of numerous small pigeons
+36251,dove peacenik,someone who prefers negotiations to armed conflict in the conduct of foreign relations
+36252,dove's_foot_geranium Geranium_molle,western geranium with small pink flowers; a common weed on lawns and in vacant lots
+36253,dovecote columbarium columbary,a birdhouse for pigeons
+36254,dovetail dovetail_joint,a mortise joint formed by interlocking tenons and mortises
+36255,dovetail_plane,a woodworking plane designed to make the grooves for dovetail joints
+36256,dovishness,any political orientation favoring compromise to avoid conflict
+36257,dowager,a widow holding property received from her deceased husband
+36258,dowager's_hump,abnormal spinal curvature that results when osteoporosis causes the spine to collapse; seen most often in elderly women
+36259,dowdiness drabness homeliness,having a drab or dowdy quality; lacking stylishness or elegance
+36260,dowdy pandowdy,deep-dish apple dessert covered with a rich crust
+36261,dowel dowel_pin joggle,a fastener that is inserted into holes in two adjacent pieces and holds them together
+36262,doweling,fastening by dowels
+36263,dower,a life estate to which a wife is entitled on the death of her husband
+36264,dowitcher,shorebird of the sandpiper family that resembles a snipe
+36265,down,(usually plural) a rolling treeless highland with little soil
+36266,down,(American football) a complete play to advance the football; "you have four downs to gain ten yards"
+36267,down down_feather,soft fine feathers
+36268,down pile,fine soft dense hair (as the fine short hair of cattle or deer or the wool of sheep or the undercoat of certain dogs)
+36269,down-and-out,a person who is destitute; "he tried to help the down-and-out"
+36270,down-bow,a downward stroke from the heel to the tip of the bow
+36271,down_payment deposit,a partial payment made at the time of purchase; the balance to be paid later
+36272,down_quark,a stable quark with an electric charge of -1/3 and a mass 607 times that of an electron
+36273,downbeat,the first beat of a musical measure (as the conductor's arm moves downward)
+36274,downcast,a ventilation shaft through which air enters a mine
+36275,downdraft,a strong downward air current
+36276,downfall ruin ruination,failure that results in a loss of position or reputation
+36277,downgrade,the property possessed by a slope or surface that descends
+36278,downheartedness dejectedness low-spiritedness lowness dispiritedness,a feeling of low spirits; "he felt responsible for her lowness of spirits"
+36279,downhill,the downward slope of a hill
+36280,downhill,a ski race down a trail
+36281,downiness featheriness fluffiness,a light softness
+36282,downpour cloudburst deluge waterspout torrent pelter soaker,a heavy rain
+36283,downrightness straightforwardness,the quality of being direct and straightforward; "what some people take for rudeness is really straightforwardness"
+36284,downshift,a change from a financially rewarding but stressful career to a less well paid but more fulfilling one
+36285,downshift,a change to a lower gear in a car or bicycle
+36286,downside,a negative aspect of something that is generally positive; "there is a downside even to motherhood"
+36287,downspin,a swift and dangerous downturn
+36288,downstage,the front half of the stage (as seen from the audience)
+36289,downstroke,a stroke normally made in a downward direction
+36290,downswing,a swing downward of a golf club
+36291,downtick,a transaction in the stock market at a price below the price of the preceding transaction
+36292,downtime,a period of time when something (as a machine or factory) is not operating (especially as a result of malfunctions)
+36293,downturn downswing,a worsening of business or economic activity; "the market took a downturn"
+36294,downy_birch white_birch Betula_pubescens,European birch with dull white to pale brown bark and somewhat drooping hairy branches
+36295,downy_brome downy_bromegrass downy_cheat downy_chess cheatgrass drooping_brome Bromus_tectorum,annual or winter annual grass with softly hairy leaves of the Mediterranean
+36296,downy_ground_cherry strawberry_tomato Physalis_pubescens,decorative American annual having round fleshy yellow berries enclosed in a bladderlike husk
+36297,downy_manzanita woolly_manzanita Arctostaphylos_tomentosa,erect openly branched California shrub whose twigs are woolly when young
+36298,downy_mildew false_mildew,any of various fungi of the family Peronosporaceae parasitic on e.g. grapes and potatoes and melons
+36299,downy_wood_mint Blephilia_celiata,a variety of wood mint
+36300,downy_woodpecker,small North American woodpecker with black and white plumage and a small bill
+36301,downy_yellow_violet Viola_pubescens,violet of eastern North America having softly pubescent leaves and stems and clear yellow flowers with brown-purple veins
+36302,dowry dowery dower portion,money or property brought by a woman to her husband at marriage
+36303,dowse dowsing rhabdomancy,searching for underground water or minerals by using a dowsing rod
+36304,doxastic_logic,the modal logic of belief and disbelief
+36305,doxazosin Cardura,an antihypertensive drug (trade name Cardura) that works by relaxing blood vessels so that blood passes through them more easily; it is also used to treat benign prostatic hyperplasia
+36306,doxepin doxepin_hydrochloride Adapin Sinequan,a tricyclic antidepressant (trade names Adapin and Sinequan) with numerous side effects (dry mouth and sedation and gastrointestinal disturbances)
+36307,doxology,a hymn or verse in Christian liturgy glorifying God
+36308,doxorubicin,an antibiotic used as an anticancer drug
+36309,doxycycline Vibramycin,an antibiotic derived from tetracycline that is effective against many infections; "Vibramycin is the trade name of doxycycline"
+36310,doyenne,a woman who is the senior member of a group
+36311,doze drowse,a light fitful sleep
+36312,draba,any of numerous low-growing cushion-forming plants of the genus Draba having rosette-forming leaves and terminal racemes of small flowers with scapose or leafy stems; fruit is a dehiscent oblong or linear silique
+36313,dracaena,an agave that is often cultivated for its decorative foliage
+36314,drachma Greek_drachma,formerly the basic unit of money in Greece
+36315,dracontium,any plant of the genus Dracontium; strongly malodorous tropical American plants usually with gigantic leaves
+36316,draft,a regulator for controlling the flow of air in a fireplace
+36317,draft bill_of_exchange order_of_payment,a document ordering the payment of money; drawn by one person or bank on another
+36318,draft draft_copy,any of the various versions in the development of a written work; "a preliminary draft"; "the final draft of the constitution"
+36319,draft draught,a current of air (usually coming into a chimney or room or vehicle)
+36320,draft draught,the depth of a vessel's keel below the surface (especially when loaded)
+36321,draft draught,a dose of liquid medicine; "he took a sleeping draft"
+36322,draft draught drawing,the act of moving a load by drawing or pulling
+36323,draft draught potation tipple,a serving of drink (usually alcoholic) drawn from a keg; "they served beer on draft"
+36324,draft rough_drawing,a preliminary sketch of a design or picture
+36325,draft_animal,an animal used for pulling heavy loads
+36326,draft_beer draught_beer,beer drawn from a keg
+36327,draft_board,a board to select personnel for involuntary military service
+36328,draft_dodger draft_evader,someone who is drafted and illegally refuses to serve
+36329,draft_horse draught_horse dray_horse,horse adapted for drawing heavy loads
+36330,draftee conscript inductee,someone who is drafted into military service
+36331,drafter,a writer of a draft
+36332,drafting,writing a first version to be filled out and polished later
+36333,drafting mechanical_drawing,the craft of drawing blueprints
+36334,drafting_board drawing_board,a smooth board on which paper is placed for making drawings
+36335,drafting_instrument,an instrument used by a draftsman in making drawings
+36336,drafting_table drawing_table,a worktable with adjustable top
+36337,draftsman draughtsman draftsperson,a skilled worker who draws plans of buildings or machines
+36338,draftsman drawer,an artist skilled at drawing
+36339,drag,something that slows or delays progress; "taxation is a drag on the economy"; "too many laws are a drag on the use of new land"
+36340,drag,something tedious and boring; "peeling potatoes is a drag"
+36341,drag,clothing that is conventionally worn by the opposite sex (especially women's clothing when worn by a man); "he went to the party dressed in drag"; "the waitresses looked like missionaries in drag"
+36342,drag,the act of dragging (pulling with force); "the drag up the hill exhausted him"
+36343,drag retarding_force,the phenomenon of resistance to motion through a fluid
+36344,drag_coefficient coefficient_of_drag,the ratio of the drag on a body moving through air to the product of the velocity and the surface area of the body
+36345,dragee,silvery candy beads used for decorating cakes
+36346,dragee,sugar-coated nut or fruit piece
+36347,dragee,pill that is a sugar-coated medicated candy
+36348,dragnet,a system of coordinated measures for apprehending (criminals or other individuals); "caught in the police dragnet"
+36349,dragoman,an interpreter and guide in the Near East; in the Ottoman Empire in the 18th and 19th centuries a translator of European languages for the Turkish and Arab authorities and most dragomans were Greek (many reached high positions in the government)
+36350,dragon firedrake,a creature of Teutonic mythology; usually represented as breathing fire and having a reptilian body and sometimes wings
+36351,dragon flying_dragon flying_lizard,any of several small tropical Asian lizards capable of gliding by spreading winglike membranes on each side of the body
+36352,dragon tartar,a fiercely vigilant and unpleasant woman
+36353,dragon's_blood,a dark red resinous substance derived from various trees and used in photoengraving
+36354,dragon_arum green_dragon Dracunculus_vulgaris,European arum resembling the cuckoopint
+36355,dragon_tree Dracaena_draco,tall tree of the Canary Islands; source of dragon's blood
+36356,dragonet,small often brightly colored scaleless marine bottom-dwellers; found in tropical and warm temperate waters of Europe and America
+36357,dragonfly darning_needle devil's_darning_needle sewing_needle snake_feeder snake_doctor mosquito_hawk skeeter_hawk,slender-bodied non-stinging insect having iridescent wings that are outspread at rest; adults and nymphs feed on mosquitoes etc.
+36358,dragonhead dragon's_head Dracocephalum_parviflorum,American herb having sharply serrate lanceolate leaves and spikes of blue to violet flowers
+36359,dragoon,a member of a European military unit formerly composed of heavily armed cavalrymen
+36360,drain,tube inserted into a body cavity (as during surgery) to remove unwanted material
+36361,drain,a gradual depletion of energy or resources; "a drain on resources"; "a drain of young talent by emigration"
+36362,drain drainage,emptying something accomplished by allowing liquid to run out of it
+36363,drain drainpipe waste_pipe,a pipe through which liquid is carried away
+36364,drain_basket,a filter in a sink drain; traps debris but passes water
+36365,drainage_ditch,a ditch for carrying off excess water or sewage
+36366,drainage_system,a system of watercourses or drains for carrying off excess water
+36367,drainboard draining_board,a board beside a kitchen sink and inclined to drain into the sink
+36368,drainplug,a removable plug for holding water in a tub or basin
+36369,drake,adult male of a wild or domestic duck
+36370,dram,1/16 ounce or 1.771 grams
+36371,dram,the basic unit of money in Armenia
+36372,dram drachm drachma,a unit of apothecary weight equal to an eighth of an ounce or to 60 grains
+36373,drama,the literary genre of works intended for the theater
+36374,drama,the quality of being arresting or highly emotional
+36375,drama dramatic_event,an episode that is turbulent or highly emotional
+36376,drama_critic theater_critic,a critic of theatrical performances
+36377,dramatic_composition dramatic_work,a play for performance on the stage or television or in a movie etc.
+36378,dramatic_irony,(theater) irony that occurs when the meaning of the situation is understood by the audience but not by the characters in the play
+36379,dramatic_production dramatic_performance,the act of performing a drama; "the group joined together in a dramatic production"
+36380,dramatics,participation in theatrical productions as an extracurricular activity
+36381,dramatist playwright,someone who writes plays
+36382,dramatization dramatisation,conversion into dramatic form; "the play was a dramatization of a short story"
+36383,dramatization dramatisation,a dramatic representation
+36384,dramaturgy dramatic_art dramatics theater theatre,the art of writing and producing plays
+36385,drape,the manner in which fabric hangs or falls; "she adjusted the drape of her skirt"
+36386,drape,a sterile covering arranged over a patient's body during a medical examination or during surgery in order to reduce the possibility of contamination
+36387,draper,a dealer in fabrics and sewing materials (and sometimes in clothing and drygoods)
+36388,drapery,cloth gracefully draped and arranged in loose folds
+36389,draw,a gully that is shallower than a ravine
+36390,draw,a playing card or cards dealt or taken from the pack; "he got a pair of kings in the draw"
+36391,draw draw_play,(American football) the quarterback moves back as if to pass and then hands the ball to the fullback who is running toward the line of scrimmage
+36392,draw draw_poker,poker in which a player can discard cards and receive substitutes from the dealer; "he played only draw and stud"
+36393,draw haul haulage,the act of drawing or hauling something; "the haul up the hill went very slowly"
+36394,draw lot,anything (straws or pebbles etc.) taken or chosen at random; "the luck of the draw"; "they drew lots for it"
+36395,draw standoff tie,the finish of a contest in which the score is tied and the winner is undecided; "the game ended in a draw"; "their record was 3 wins, 6 losses and a tie"
+36396,drawback,the quality of being a hindrance; "he pointed out all the drawbacks to my plan"
+36397,drawbar,a strong metal bar bearing a hook to attach something to be pulled
+36398,drawbridge lift_bridge,a bridge that can be raised to block passage or to allow boats or ships to pass beneath it
+36399,drawee,the person (or bank) who is expected to pay a check or draft when it is presented for payment
+36400,drawer,the person who writes a check or draft instructing the drawee to pay someone else
+36401,drawer,a boxlike container in a piece of furniture; made so as to slide in and out
+36402,drawers underdrawers shorts boxers boxershorts,underpants worn by men
+36403,drawing,an illustration that is drawn by hand and published in a book, magazine, or newspaper; "it is shown by the drawing in Fig. 7"
+36404,drawing,a representation of forms or objects on a surface by means of lines; "drawings of abstract forms"; "he did complicated pen-and-ink drawings like medieval miniatures"
+36405,drawing draftsmanship drafting,the creation of artistic pictures or diagrams; "he learned drawing from his father"
+36406,drawing drawing_off,act of getting or draining something such as electricity or a liquid from a source; "the drawing of water from the well"
+36407,drawing_card draw attraction attractor attracter,an entertainer who attracts large audiences; "he was the biggest drawing card they had"
+36408,drawing_card loss_leader leader,a featured article of merchandise sold at a loss in order to draw customers
+36409,drawing_chalk,colored chalks used by artists
+36410,drawing_paper,paper that is specially prepared for use in drafting
+36411,drawing_power,the capacity for attracting people (customers or supporters)
+36412,drawing_room,a private compartment on a sleeping car with three bunks and a toilet
+36413,drawing_room withdrawing_room,a formal room where visitors can be received and entertained
+36414,drawknife drawshave,a woodworker's knife to shave surfaces
+36415,drawl,a slow speech pattern with prolonged vowels
+36416,drawler,someone who speaks with a drawl
+36417,drawnwork,ornamental needlework done by drawing threads to form lacelike patterns
+36418,drawstring drawing_string string,a tie consisting of a cord that goes through a seam around an opening; "he pulled the drawstring and closed the bag"
+36419,drawstring_bag,a bag that is closed at the top with a drawstring
+36420,dray camion,a low heavy horse cart without sides; used for haulage
+36421,dreadlock,one of many long thin braids of hair radiating from the scalp; popularized by Rastafarians
+36422,dreadnought dreadnaught,battleship that has big guns all of the same caliber
+36423,dream,someone or something wonderful; "this dessert is a dream"
+36424,dream,a state of mind characterized by abstraction and release from reality; "he went about his work as if in a dream"
+36425,dream dreaming,imaginative thoughts indulged in while awake; "he lives in a dream that has nothing to do with reality"
+36426,dream dreaming,a series of mental images and emotions occurring during sleep; "I had a dream about you last night"
+36427,dreamer,someone who is dreaming
+36428,dredge,a power shovel to remove material from a channel or riverbed
+36429,dredger,a barge (or a vessel resembling a barge) that is used for dredging
+36430,dredging_bucket,a bucket for lifting material from a channel or riverbed
+36431,dreg,a small amount of residue
+36432,dregs settlings,sediment that has settled at the bottom of a liquid
+36433,drenching soaking souse sousing,the act of making something completely wet; "he gave it a good drenching"
+36434,dress frock,a one-piece garment for a woman; has skirt and bodice
+36435,dress_blues dress_whites,a dress uniform for formal occasions
+36436,dress_code,a set of rules specifying the correct manner of dress while on the premises of the institution (or specifying what manner of dress is prohibited)
+36437,dress_hat high_hat opera_hat silk_hat stovepipe top_hat topper beaver,a man's hat with a tall crown; usually covered with silk or with beaver fur
+36438,dress_rack,a rack used primarily to display dresses for sale in a store
+36439,dress_rehearsal,a full uninterrupted rehearsal in costumes shortly before the first performance
+36440,dress_shirt evening_shirt,a man's white shirt (with a starch front) for evening wear (usually with a tuxedo)
+36441,dress_suit full_dress tailcoat tail_coat tails white_tie white_tie_and_tails,formalwear consisting of full evening dress for men
+36442,dress_uniform,a military uniform worn on formal occasions
+36443,dressage,maneuvers of a horse in response to body signals by the rider
+36444,dressed_ore concentrate,the desired mineral that is left after impurities have been removed from mined ore
+36445,dresser,a person who dresses in a particular way; "she's an elegant dresser"; "he's a meticulous dresser"
+36446,dresser,a cabinet with shelves
+36447,dresser actor's_assistant,a wardrobe assistant for an actor
+36448,dressing,processes in the conversion of rough hides into leather
+36449,dressing bandaging binding,the act of applying a bandage
+36450,dressing grooming,the activity of getting dressed; putting on clothes
+36451,dressing medical_dressing,a cloth covering for a wound or sore
+36452,dressing salad_dressing,savory dressings for salads; basically of two kinds: either the thin French or vinaigrette type or the creamy mayonnaise type
+36453,dressing_case,a small piece of luggage for carrying brushes and bottles and toilet articles while traveling
+36454,dressing_gown robe-de-chambre lounging_robe,a robe worn before dressing or while lounging
+36455,dressing_room,a room in which you can change clothes
+36456,dressing_sack dressing_sacque,a woman's loose jacket; worn while dressing
+36457,dressing_station aid_station,(military) a station located near a combat area for giving first aid to the wounded
+36458,dressing_table dresser vanity toilet_table,low table with mirror or mirrors where one sits while dressing or applying makeup
+36459,dressmaker modiste needlewoman seamstress sempstress,someone who makes or mends dresses
+36460,dressmaker's_model,someone who models dresses
+36461,dressmaking,the craft of making dresses
+36462,drey,the nest of a squirrel
+36463,dribble dribbling,the propulsion of a ball by repeated taps or kicks
+36464,dribbler,a basketball player who is dribbling the ball to advance it
+36465,dribbler driveller slobberer drooler,a person who dribbles; "that baby is a dribbler; he needs a bib"
+36466,dried_apricot,apricots preserved by drying
+36467,dried_fruit,fruit preserved by drying
+36468,drift,a process of linguistic change over a period of time
+36469,drift,the gradual departure from an intended course due to external influences (as a ship or plane)
+36470,drift,a large mass of material that is heaped up by the wind or by water currents
+36471,drift heading gallery,a horizontal (or nearly horizontal) passageway in a mine; "they dug a drift parallel with the vein"
+36472,drift impetus impulsion,a force that moves something along
+36473,drift purport,the pervading meaning or tenor; "caught the general drift of the conversation"
+36474,drift trend movement,a general tendency to change (as of opinion); "not openly liberal but that is the trend of the book"; "a broad movement of the electorate to the right"
+36475,drift_ice,masses of ice floating in the open sea
+36476,drift_net,a large fishnet supported by floats; it drifts with the current
+36477,driftage,the deviation (by a vessel or aircraft) from its intended course due to drifting
+36478,driftfish,larger butterfishes of the western Atlantic from the New York area to the northern Gulf of Mexico
+36479,driftfish,small (6 inches) tropical butterfishes found worldwide
+36480,drifting,aimless wandering from place to place
+36481,driftwood,wood that is floating or that has been washed ashore
+36482,drill,a tool with a sharp point and cutting edges for making holes in hard materials (usually rotating rapidly or by repeated blows)
+36483,drill,(military) the training of soldiers to march (as in ceremonial parades) or to perform the manual of arms
+36484,drill Mandrillus_leucophaeus,similar to the mandrill but smaller and less brightly colored
+36485,drill_master drill_instructor,a noncommissioned officer who instructs recruits in military marching and discipline
+36486,drill_press,a machine tool with a separate, upright stand; an electric drill is pressed into the work automatically or with a hand lever
+36487,drill_rig drilling_rig oilrig oil_rig,rig used in drilling for oil or gas
+36488,drill_site,workplace that is the site of a drill hole
+36489,drill_steel drill_rod,carbon steel used for rock drills and dowels
+36490,drilling boring,the act of drilling
+36491,drilling_bit drill_bit,a bit used in drilling for oil
+36492,drilling_mud drilling_fluid,a mixture of clays and chemicals and water; pumped down the drill pipe to lubricate and cool the drilling bit and to flush out the cuttings and to strengthen the sides of the hole
+36493,drilling_pipe,a series of tubes (joined by screwed collars) that connect a drilling platform to the drilling bit; rotates the bit and supplies drilling mud
+36494,drilling_platform offshore_rig,drilling rig consisting of an offshore platform (floating or fixed to the sea bed) from which many oil wells can be bored radially
+36495,drink,any large deep body of water; "he jumped into the drink and had to be rescued"
+36496,drink,a single serving of a beverage; "I asked for a hot drink"; "likes a drink before dinner"
+36497,drink drinking boozing drunkenness crapulence,the act of drinking alcoholic beverages to excess; "drink was his downfall"
+36498,drinker,a person who drinks liquids
+36499,drinker imbiber toper juicer,a person who drinks alcoholic beverages (especially to excess)
+36500,drinking imbibing imbibition,the act of consuming liquids
+36501,drinking_age,the age at which is legal for a person to buy alcoholic beverages
+36502,drinking_bout,a long period of drinking
+36503,drinking_fountain water_fountain bubbler,a public fountain to provide a jet of drinking water
+36504,drinking_song,a song celebrating the joys of drinking; sung at drinking parties
+36505,drinking_vessel,a vessel intended for drinking
+36506,drinking_water,water suitable for drinking
+36507,drip drip_mold drip_mould,(architecture) a projection from a cornice or sill designed to protect the area below from rainwater (as over a window or doorway)
+36508,drip dripping,the sound of a liquid falling drop by drop; "the constant sound of dripping irritated him"
+36509,drip trickle dribble,flowing in drops; the formation and falling of drops of liquid; "there's a drip through the roof"
+36510,drip_coffee,coffee made by passing boiling water through a perforated container packed with finely ground coffee
+36511,drip_culture,a hydroponic method of growing plants by allowing nutrient solutions to drip slowly onto an inert medium in which the plants are growing
+36512,drip_feed,the administration of a solution (blood or saline or plasma etc.) one drop at a time
+36513,drip_loop,a downward hanging loop in a line that runs to a building; "when it rained water would fall from the drip loop before it reached the building"
+36514,drip_mat,a small mat placed under a glass to protect a surface from condensation
+36515,drip_pan,pan under a refrigerator for collecting liquid waste
+36516,drip_pot,a coffeepot for making drip coffee
+36517,drippiness,the physical property of being soft and drippy
+36518,dripping drippage,a liquid (as water) that flows in drops (as from the eaves of house)
+36519,dripping_pan drip_pan,pan for catching drippings under roasting meat
+36520,drippings,fat that exudes from meat and drips off while it is being roasted or fried
+36521,dripstone,the form of calcium carbonate found in stalactites and stalagmites
+36522,dripstone hoodmold hoodmould,a protective drip that is made of stone
+36523,drive,a physiological state corresponding to a strong need or desire
+36524,drive,the trait of being highly motivated; "his drive and energy exhausted his co-workers"
+36525,drive,(computer science) a device that writes data onto or reads data from a storage medium
+36526,drive,a mechanism by which force or power is transmitted in a machine; "a variable speed drive permitted operation through a range of speeds"
+36527,drive,(sports) a hard straight return (as in tennis or squash)
+36528,drive,the act of driving a herd of animals overland
+36529,drive driving,hitting a golf ball off of a tee with a driver; "he sliced his drive out of bounds"
+36530,drive parkway,a wide scenic road planted with trees; "the riverside drive offers many exciting scenic views"
+36531,drive ride,a journey in a vehicle (usually an automobile); "he took the family for a drive in his new car"
+36532,drive thrust driving_force,the act of applying force to propel something; "after reaching the desired velocity the drive is cut off"
+36533,drive-by_killing,homicide committed by shooting from a moving automobile
+36534,drive-by_shooting,shooting someone from a car as it is driven past the victim
+36535,drive-in,any installation designed to accommodate patrons in their automobiles
+36536,drive_line drive_line_system,mechanism that transmits power from the engine to the driving wheels of a motor vehicle
+36537,drivel garbage,a worthless message
+36538,driveller jabberer,someone whose talk is trivial drivel
+36539,driven_well tube_well,a well made by driving a tube into the earth to a stratum that bears water
+36540,driver,someone who drives animals that pull a vehicle
+36541,driver,a golfer who hits the golf ball with a driver
+36542,driver,the operator of a motor vehicle
+36543,driver device_driver,(computer science) a program that determines how a computer will communicate with a peripheral device
+36544,driver number_one_wood,a golf club (a wood) with a near vertical face that is used for hitting long shots from the tee
+36545,driver's_license driver's_licence driving_license driving_licence,a license authorizing the bearer to drive a motor vehicle
+36546,driveshaft,a rotating shaft that transmits power from the engine to the point of application
+36547,driveway drive private_road,a road leading up to a private house; "they parked in the driveway"
+36548,driving,the act of controlling and steering the movement of a vehicle or animal
+36549,driving_belt,a belt that carries motion from a motor to the machinery
+36550,driving_iron one_iron,(golf) the long iron with the most nearly vertical face
+36551,driving_school,a school where people are taught to drive automobiles
+36552,driving_wheel,a wheel that drives a motor vehicle (transforms torque into a tractive force)
+36553,drizzle mizzle,very light rain; stronger than mist but less than a shower
+36554,drogue,a funnel-shaped device towed as a target by an airplane
+36555,drogue drogue_chute drogue_parachute,a parachute used to decelerate an object that is moving rapidly
+36556,drogue_parachute,a small parachute that pulls the main parachute from its storage pack
+36557,drollery clowning comedy funniness,a comic incident or series of incidents
+36558,drollery waggery,a quaint and amusing jest
+36559,dromaeosaur,a kind of maniraptor
+36560,dronabinol,psychoactive substance present in marijuana; used therapeutically to control nausea associated with cancer therapy
+36561,drone,stingless male bee in a colony of social bees (especially honeybees) whose sole function is to mate with the queen
+36562,drone drone_pipe bourdon,a pipe of the bagpipe that is tuned to produce a single continuous tone
+36563,drone pilotless_aircraft radio-controlled_aircraft,an aircraft without a pilot that is operated by remote control
+36564,drool dribble drivel slobber,saliva spilling from the mouth
+36565,drop,a predetermined hiding place for the deposit and distribution of illicit goods (such as drugs or stolen property)
+36566,drop,a central depository where things can be left or picked up
+36567,drop,the act of dropping something; "they expected the drop would be successful"
+36568,drop bead pearl,a shape that is spherical and small; "he studied the shapes of low-viscosity drops"; "beads of sweat on his forehead"
+36569,drop dip fall free_fall,a sudden sharp decrease in some quantity; "a drop of 57 points on the Dow Jones index"; "there was a drop in pressure in the pulmonary artery"; "a dip in prices"; "when that became known the price of their stock went into free fall"
+36570,drop drib driblet,a small indefinite quantity (especially of a liquid); "he had a drop too much to drink"; "a drop of each sample was analyzed"; "there is not a drop of pity in that man"; "years afterward, they would pay the blood-money, driblet by driblet"--Kipling
+36571,drop fall,a free and rapid descent by the force of gravity; "it was a miracle that he survived the drop from that height"
+36572,drop-down_menu,a menu of options that appears below the item when the computer user clicks on it
+36573,drop-leaf,a hinged leaf on a table that can be raised and supported by a bracket
+36574,drop-leaf_table,a table that has a drop-leaf to enlarge its surface
+36575,drop-off_charge,a fee added for returning a rented car to a location different from the one where it was rented
+36576,drop_arch,a blunt pointed arch drawn from two centers within the span
+36577,drop_biscuit,biscuit made from dough with enough milk that it can be dropped from a spoon
+36578,drop_cloth,a large piece of cloth laid over the floor or furniture while a room is being painted
+36579,drop_curtain drop_cloth drop,a curtain that can be lowered and raised onto a stage from the flies; often used as background scenery
+36580,drop_forge drop_hammer drop_press,device for making large forgings
+36581,drop_scone griddlecake Scotch_pancake,a scone made by dropping a spoonful of batter on a griddle
+36582,drop_shot dink,a soft return so that the tennis ball drops abruptly after crossing the net
+36583,drop_zone dropping_zone,an agreed area where military supplies are dropped to ground troops
+36584,dropkick,(football) kicking (as for a field goal) in which the football is dropped and kicked as it touches the ground
+36585,dropkicker,a football kicker who drops the ball and kicks it just as it reaches the ground
+36586,droplet,a tiny drop
+36587,dropline drop_line stepped_line stagger_head staggered_head stephead,a headline with the top line flush left and succeeding lines indented to the right
+36588,dropout,someone who withdraws from a social group or environment
+36589,dropout,someone who quits school before graduation
+36590,dropper eye_dropper,pipet consisting of a small tube with a vacuum bulb at one end for drawing liquid in and releasing it a drop at a time; "she used an eye dropper to administer medication to the eyes"
+36591,droppings dung muck,fecal matter of animals
+36592,dropseed drop-seed,a grass of the genus Sporobolus
+36593,droshky drosky,an open horse-drawn carriage with four wheels; formerly used in Poland and Russia
+36594,drosophila Drosophila_melanogaster,small fruit fly used by Thomas Hunt Morgan in studying basic mechanisms of inheritance
+36595,drought drouth,a prolonged shortage; "when England defeated Pakistan it ended a ten-year drought"
+36596,drought drouth,a shortage of rainfall; "farmers most affected by the drought hope that there may yet be sufficient rain early in the growing season"
+36597,drove,a group of animals (a herd or flock) moving together
+36598,drove drove_chisel,a stonemason's chisel with a broad edge for dressing stone
+36599,drove horde swarm,a moving crowd
+36600,drudge peon navvy galley_slave,a laborer who is obliged to do menial work
+36601,drudgery plodding grind donkeywork,hard monotonous routine work
+36602,drug,a substance that is used as a medicine or narcotic
+36603,drug_addict junkie junky,a narcotics addict
+36604,drug_addiction white_plague,an addiction to a drug (especially a narcotic drug)
+36605,drug_baron drug_lord,a person who controls an organization dealing in illegal drugs
+36606,drug_bust drugs_bust,seizure of illegal drugs by the police
+36607,drug_cartel,an illicit cartel formed to control the production and distribution of narcotic drugs; "drug cartels sometimes finance terrorist organizations"
+36608,drug_cocktail highly_active_antiretroviral_therapy HAART,a combination of protease inhibitors taken with reverse transcriptase inhibitors; used in treating AIDS and HIV
+36609,drug_company pharmaceutical_company pharma,a company that makes and sells pharmaceuticals
+36610,drug_of_abuse street_drug,a drug that is taken for nonmedicinal reasons (usually for mind-altering effects); drug abuse can lead to physical and mental damage and (with some substances) dependence and addiction
+36611,drug_traffic drug_trafficking narcotraffic,traffic in illegal drugs
+36612,drug_user substance_abuser user,a person who takes drugs
+36613,drug_war,conflict between law enforcement and those who deal in illegal drugs
+36614,drugget,a rug made of a coarse fabric having a cotton warp and a wool filling
+36615,drugstore apothecary's_shop chemist's chemist's_shop pharmacy,a retail shop where medicine and other articles are sold
+36616,druidism,the system of religion and philosophy taught by the Druids and their rites and ceremonies
+36617,drum,the sound of a drum; "he could hear the drums before he heard the fifes"
+36618,drum drumfish,small to medium-sized bottom-dwelling food and game fishes of shallow coastal and fresh waters that make a drumming noise
+36619,drum membranophone tympan,a musical percussion instrument; usually consists of a hollow cylinder with a membrane stretched across each end
+36620,drum metal_drum,a cylindrical metal container used for shipping or storage of liquids
+36621,drum_brake,hydraulic brake in which friction is applied to the inside of a spinning drum by the brake shoe
+36622,drum_major,the leader of a marching band or drum corps
+36623,drum_majorette majorette,a female baton twirler who accompanies a marching band
+36624,drum_majorette majorette,a female drum major
+36625,drum_printer,a line printer in which the type is mounted on a rotating drum that contains a full character set for each printing position
+36626,drum_sander electric_sander sander smoother,a power tool used for sanding wood; an endless loop of sandpaper is moved at high speed by an electric motor
+36627,drumbeat,(military) the beating of a drum as a signal for lowering the flag at sundown
+36628,drumbeat,a vehement and vociferous advocacy of a cause; "the warmongers kept up their drumbeat on Iraq"
+36629,drumhead head,a membrane that is stretched taut over a drum
+36630,drumhead_court-martial,a military court convened to hear urgent charges of offenses committed in action
+36631,drumlin,a mound of glacial drift
+36632,drummer,someone who plays a drum
+36633,drumming,the act of playing drums; "he practiced his drumming several hours every day"
+36634,drumstick,the lower joint of the leg of a fowl
+36635,drumstick,a stick used for playing a drum
+36636,drunk,someone who is intoxicated
+36637,drunk-and-disorderly,someone arrested on the charge of being drunk and disorderly; "they delivered the drunk-and-disorderlies to the county jail"
+36638,drunkard drunk rummy sot inebriate wino,a chronic drinker
+36639,drunken_reveler drunken_reveller bacchanal bacchant,someone who engages in drinking bouts
+36640,drunkenness inebriation inebriety intoxication tipsiness insobriety,a temporary state resulting from excessive consumption of alcohol
+36641,drupe stone_fruit,fleshy indehiscent fruit with a single seed: e.g. almond; peach; plum; cherry; elderberry; olive; jujube
+36642,drupelet,a small part of an aggregate fruit that resembles a drupe
+36643,drusen,(plural) an eye disease resulting from small accumulations of hyaline bodies underneath the retina
+36644,dry prohibitionist,a reformer who opposes the use of intoxicating beverages
+36645,dry-bulb_thermometer,an ordinary thermometer with a dry bulb; used to measure the air temperature
+36646,dry-gulching,the act of killing from ambush
+36647,dry-wood_termite,any of various termites that live in and feed on dry wood that is not connected with the soil
+36648,dry_battery,a voltaic battery consisting of two or more dry cells
+36649,dry_cell,a small Leclanche cell containing no free liquid; the electrolyte is a paste and the negative zinc pole forms the container of the cell; used in flashlights, portable radios, etc.
+36650,dry_cleaning,the act of cleaning (fabrics) with a solvent other than water
+36651,dry_dock drydock graving_dock,a large dock from which water can be pumped out; used for building ships or for repairing a ship below its waterline
+36652,dry_fly,a fly (fisherman's lure) that skims the surface of the water
+36653,dry_gangrene cold_gangrene mumification_necrosis mummification,(pathology) gangrene that develops in the presence of arterial obstruction and is characterized by dryness of the dead tissue and a dark brown color
+36654,dry_ice,solidified carbon dioxide; dry ice sublimates at -78.5 C and is used mainly as a refrigerant
+36655,dry_kiln,a kiln for drying and seasoning lumber
+36656,dry_masonry,masonry without mortar
+36657,dry_nurse,a nurse who cares for but does not suckle an infant
+36658,dry_plate dry_plate_process,a former photographic method that used a glass plate coated with a light-sensitive gelatinous emulsion
+36659,dry_point,a print produced by dry point engraving
+36660,dry_point,a steel needle for engraving without acid on a bare copper plate
+36661,dry_rot,a crumbling and drying of timber or bulbs or potatoes or fruit caused by a fungus
+36662,dry_rot,a fungus causing dry rot
+36663,dry_season,one of the two seasons in tropical climates
+36664,dry_unit dry_measure,a unit of capacity for dry commodities (as fruit or grain)
+36665,dry_vermouth French_vermouth,dry pale amber variety
+36666,dry_wall dry-stone_wall,a stone wall made with stones fitted together without mortar
+36667,dry_walling,the activity of building stone walls without mortar
+36668,dryad wood_nymph,a deity or nymph of the woods
+36669,dryer drier,an appliance that removes moisture
+36670,drygoods soft_goods,textiles or clothing and related merchandise
+36671,drying_oil,an oil that hardens in air due to oxidation and is often used as a paint or varnish base
+36672,dryland_blueberry dryland_berry Vaccinium_pallidum,low deciduous shrub of the eastern United States bearing dark blue sweet berries
+36673,dryness waterlessness xerotes,the condition of not containing or being covered by a liquid (especially water)
+36674,dryopithecine,considered a possible ancestor to both anthropoid apes and humans
+36675,drypis,spiny-leaved perennial herb of southern Europe having terminal clusters of small flowers
+36676,dscDNA,double-stranded cDNA
+36677,du_Maurier Daphne_du_Maurier Dame_Daphne_du_Maurier,English writer of melodramatic novels (1907-1989)
+36678,du_Maurier George_du_Maurier George_Louis_Palmella_Busson_du_Maurier,English writer and illustrator; grandfather of Daphne du Maurier (1834-1896)
+36679,dual_scan_display,a type of passive matrix display in which the top and bottom half of the screen are refreshed simultaneously
+36680,dualism,the doctrine that reality consists of two basic opposing elements, often taken to be mind and matter (or mind and body), or good and evil
+36681,dualist,an adherent of dualism
+36682,duality,(geometry) the interchangeability of the roles of points and planes in the theorems of projective geometry
+36683,duality wave-particle_duality,(physics) the property of matter and electromagnetic radiation that is characterized by the fact that some properties can be explained best by wave theory and others by particle theory
+36684,dub,the new sounds added by dubbing
+36685,dubbin,tallow mixed with oil; used to make leather soft and waterproof
+36686,dubbing,a new soundtrack that is added to a film
+36687,dubnium Db hahnium element_105 atomic_number_105,a transuranic element
+36688,ducat,formerly a gold coin of various European countries
+36689,duce,leader; "Mussolini was called Il Duce"
+36690,duchess,the wife of a duke or a woman holding ducal title in her own right
+36691,duchy dukedom,the domain controlled by a duke or duchess
+36692,duck,flesh of a duck (domestic or wild)
+36693,duck,a heavy cotton fabric of plain weave; used for clothing and tents
+36694,duck,small wild or domesticated web-footed broad-billed swimming bird usually having a depressed body and short legs
+36695,duck duck's_egg,(cricket) a score of nothing by a batsman
+36696,duck_down,down of the duck
+36697,duck_hunter,hunter of ducks
+36698,duck_pate,a pate made from duck liver
+36699,duck_sauce hoisin_sauce,a thick sweet and pungent Chinese condiment
+36700,duckboard,a boardwalk laid across muddy ground
+36701,ducking duck_hunting,hunting ducks
+36702,duckling,flesh of a young domestic duck
+36703,duckling,young duck
+36704,duckpin,a bowling pin that is short and squat by comparison with a tenpin
+36705,duckpins,a bowling game using a pin smaller than a tenpin but proportionately wider
+36706,ducks_and_drakes,a game in which a flat stone is bounced along the surface of calm water
+36707,duckweed,any small or minute aquatic plant of the family Lemnaceae that float on or near the surface of shallow ponds
+36708,duct,a continuous tube formed by a row of elongated cells lacking intervening end walls
+36709,duct,an enclosed conduit for a fluid
+36710,duct epithelial_duct canal channel,a bodily passage or tube lined with epithelial cells and conveying a secretion or other substance; "the tear duct was obstructed"; "the alimentary canal"; "poison is released through a channel in the snake's fangs"
+36711,duct_tape,a wide silvery adhesive tape intended to seal joints in sheet metal duct work but having many other uses; "duct tape holds the world together"
+36712,ductility ductileness,the malleability of something that can be drawn into threads or wires or hammered into thin sheets
+36713,ductule ductulus,a very small duct
+36714,ductus_arteriosus,a blood vessel in a fetus that bypasses pulmonary circulation by connecting the pulmonary artery directly to the ascending aorta; normally closes at birth
+36715,dude_ranch,a holiday resort offering ranch activities (riding and camping)
+36716,dudeen,a clay pipe with a short stem
+36717,dudgeon high_dudgeon,a feeling of intense indignation (now used only in the phrase `in high dudgeon')
+36718,due,a payment that is due (e.g., as the price of membership); "the society dropped him for non-payment of dues"
+36719,due,that which is deserved or owed; "give the devil his due"
+36720,due_care ordinary_care reasonable_care,the care that a reasonable man would exercise under the circumstances; the standard for determining legal duty
+36721,due_process due_process_of_law,(law) the administration of justice according to established rules and principles; based on the principle that a person cannot be deprived of life or liberty or property without appropriate legal procedures and safeguards
+36722,duel,any struggle between two skillful opponents (individuals or groups)
+36723,duel affaire_d'honneur,a prearranged fight with deadly weapons by two people (accompanied by seconds) in order to settle a quarrel over a point of honor
+36724,dueler dueller duelist duellist,a person who fights duels
+36725,duenna,a woman chaperon
+36726,duet duette duo,two performers or singers who perform together
+36727,duet duette duo,a musical composition for two performers
+36728,duff plum_duff,a stiff flour pudding steamed or boiled usually and containing e.g. currants and raisins and citron
+36729,duffel duffle,a coarse heavy woolen fabric
+36730,duffel_bag duffle_bag duffel duffle,a large cylindrical bag of heavy cloth; for carrying personal belongings
+36731,duffel_coat duffle_coat,a warm coat made of duffel; usually has a hood and fastens with toggles
+36732,duffer,an incompetent or clumsy person; "as a golfer he was only a duffer"
+36733,dug,an udder or breast or teat
+36734,dugong Dugong_dugon,sirenian tusked mammal found from eastern Africa to Australia; the flat tail is bilobate
+36735,dugout,either of two low shelters on either side of a baseball diamond where the players and coaches sit during the game
+36736,dugout_canoe dugout pirogue,a canoe made by hollowing out and shaping a large log
+36737,duke,a nobleman (in various countries) of high rank
+36738,duke,a British peer of the highest rank
+36739,dukedom,the dignity or rank or position of a duke
+36740,dulciana,the organ stop having a tone of soft sweet string quality
+36741,dulcimer,a stringed instrument used in American folk music; an elliptical body and a fretted fingerboard and three strings
+36742,dulcimer,a trapezoidal zither whose metal strings are struck with light hammers
+36743,dullness,the quality of lacking interestingness; "the stories were of a dullness to bring a buffalo to its knees"
+36744,dullness,a lack of visual brightness; "the brightness of the orange sky was reflected in the dullness of the orange sea"
+36745,dullness,lack of sensibility; "there was a dullness in his heart"; "without him the dullness of her life crept into her work no matter how she tried to compartmentalize it."
+36746,dullness bluntness,without sharpness or clearness of edge or point; "the dullness of the pencil made his writing illegible"
+36747,dullness obtuseness,the quality of being slow to understand
+36748,dulse Rhodymenia_palmata,coarse edible red seaweed
+36749,dumb_bomb gravity_bomb,a bomb that falls because of gravity and is not guided to a target
+36750,dumb_cane mother-in-law_plant mother-in-law's_tongue Dieffenbachia_sequine,an evergreen plant with large showy dark green leaves; contains a poison that swells the tongue and throat hence the name
+36751,dumbbell,an exercising weight; two spheres connected by a short bar that serves as a handle
+36752,dumbbell dummy dope boob booby pinhead,an ignorant or foolish person
+36753,dumbwaiter food_elevator,a small elevator used to convey food (or other goods) from one floor of a building to another
+36754,dumdum dumdum_bullet,a soft-nosed small-arms bullet that expands when it hits a target and causes a gaping wound
+36755,dummy,a figure representing the human form
+36756,dummy silent_person,a person who does not talk
+36757,dummy_whist,a form of whist with three players; four hands are dealt with the hand opposite the dealer being face up
+36758,dump,(computer science) a copy of the contents of a computer storage device; sometimes used in debugging programs
+36759,dump,a place where supplies can be stored; "an ammunition dump"
+36760,dump garbage_dump trash_dump rubbish_dump wasteyard waste-yard dumpsite,a piece of land where waste materials are dumped
+36761,dump_routine,a routine that writes from an internal store to some external medium
+36762,dump_truck dumper tipper_truck tipper_lorry tip_truck tipper,truck whose contents can be emptied without handling; the front end of the platform can be pneumatically raised so that the load is discharged by gravity
+36763,dumpcart,a cart that can be tilted to empty contents without handling
+36764,dumpiness squattiness,a short and stout physique
+36765,dumping,selling goods abroad at a price below that charged in the domestic market
+36766,dumpling,dessert made by baking fruit wrapped in pastry
+36767,dumpling dumplings,small balls or strips of boiled or steamed dough
+36768,dumps mopes,an informal expression for a mildly depressed state; "in the dumps"; "have the mopes"
+36769,dun,horse of a dull brownish grey color
+36770,dun greyish_brown grayish_brown fawn,a color or pigment varying around a light grey-brown color; "she wore dun"
+36771,dunce dunderhead numskull blockhead bonehead lunkhead hammerhead knucklehead loggerhead muttonhead shithead dumbass fuckhead,a stupid person; these words are used to express a low opinion of someone's intelligence
+36772,dunce_cap dunce's_cap fool's_cap,a cone-shaped paper hat formerly placed on the head of slow or lazy pupils
+36773,dundathu_pine queensland_kauri smooth_bark_kauri Agathis_robusta,Australian timber tree resembling the kauri but having wood much lighter in weight and softer
+36774,dune sand_dune,a ridge of sand created by the wind; found in deserts or near lakes and oceans
+36775,dune_buggy beach_buggy,a recreational vehicle with large tires used on beaches or sand dunes
+36776,dune_cycling,bicycling or motorcycling on sand dunes
+36777,dung_beetle,any of numerous beetles that roll balls of dung on which they feed and in which they lay eggs
+36778,dungeon,a dark cell (usually underground) where prisoners can be confined
+36779,dunghill,a foul or degraded condition
+36780,dunghill midden muckheap muckhill,a heap of dung or refuse
+36781,dunk dunk_shot stuff_shot,a basketball shot in which the basketball is propelled downward into the basket
+36782,dunker,an eater who dips food into a liquid before eating it; "he was a dunker--he couldn't eat a doughnut without a cup of coffee to dunk it in"
+36783,dunker,a basketball player who is able to make dunk shots
+36784,duodecimal_digit,a digit from 0 to 11 in duodecimal notation
+36785,duodecimal_notation,any notation that uses 12 different characters
+36786,duodecimal_number_system duodecimal_system,a positional system of numeration that uses duodecimal digits and a radix of twelve
+36787,duodenal_ulcer,a peptic ulcer of the duodenum
+36788,duodenum,the part of the small intestine between the stomach and the jejunum
+36789,duologue,a part of the script in which the speaking roles are limited to two actors
+36790,duple_time,musical time with two beats in each bar
+36791,duplex_apartment duplex,an apartment having rooms on two floors that are connected by a staircase
+36792,duplex_house duplex semidetached_house,a house with two units sharing a common wall
+36793,duplicate duplication,a copy that corresponds to an original exactly; "he made a duplicate for the files"
+36794,duplication gemination,the act of copying or making a duplicate (or duplicates) of something; "this kind of duplication is wasteful"
+36795,duplicator copier,apparatus that makes copies of typed, written or drawn material
+36796,duplicity double-dealing,acting in bad faith; deception by pretending to entertain one set of intentions while acting under the influence of another
+36797,dura_mater dura,the outermost (and toughest) of the 3 meninges
+36798,durables durable_goods consumer_durables,consumer goods that are not destroyed by use
+36799,durance,imprisonment (especially for a long time)
+36800,duration continuance,the period of time during which something continues
+36801,duration continuance,the property of enduring or continuing in time
+36802,duration length,continuance in time; "the ceremony was of short duration"; "he complained about the length of time required"
+36803,durative durative_aspect,the aspect of a verb that expresses its duration
+36804,durbar,the room in the palace of a native prince of India in which audiences and receptions occur
+36805,duress,compulsory force or threat; "confessed under duress"
+36806,durian,huge fruit native to southeastern Asia `smelling like Hell and tasting like Heaven'; seeds are roasted and eaten like nuts
+36807,durian durion durian_tree Durio_zibethinus,tree of southeastern Asia having edible oval fruit with a hard spiny rind
+36808,durmast Quercus_petraea Quercus_sessiliflora,deciduous European oak valued for its tough elastic wood
+36809,durra doura dourah Egyptian_corn Indian_millet Guinea_corn,sorghums of dry regions of Asia and North Africa
+36810,durum durum_wheat hard_wheat Triticum_durum Triticum_turgidum macaroni_wheat,wheat with hard dark-colored kernels high in gluten and used for bread and pasta; grown especially in southern Russia, North Africa, and northern central North America
+36811,dusky-footed_wood_rat,a wood rat with dusky feet
+36812,dusky-footed_woodrat Neotoma_fuscipes,host to Lyme disease tick (Ixodes pacificus) in northern California
+36813,dusky_salamander,common North American salamander mottled with dull brown or greyish-black
+36814,dusky_shark Carcharhinus_obscurus,relatively slender blue-grey shark; nearly worldwide in tropical and temperate waters
+36815,dust,free microscopic particles of solid material; "astronomers say that the empty space between planets actually contains measurable amounts of dust"
+36816,dust,fine powdery material such as dry earth or pollen that can be blown about in the air; "the furniture was covered with dust"
+36817,dust_bag vacuum_bag,a bag into which dirt is sucked by a vacuum cleaner
+36818,dust_bowl,a region subject to dust storms; especially the central region of United States subject to dust storms in the 1930s
+36819,dust_cloud,a cloud of dust suspended in the air
+36820,dust_contamination,state of being contaminated with dust
+36821,dust_contamination,the act of contaminating with dust particles
+36822,dust_cover,a removable plastic protective covering for a piece of equipment
+36823,dust_cover dust_sheet,a large piece of cloth used to cover furniture that is not in use for a long period
+36824,dust_devil,a miniature whirlwind strong enough to whip dust and leaves and litter into the air
+36825,dust_storm duster sandstorm sirocco,a windstorm that lifts up clouds of dust or sand; "it was the kind of duster not experienced in years"
+36826,dustcloth dustrag duster,a piece of cloth used for dusting
+36827,duster,a pitch thrown deliberately close to the batter
+36828,duster gaberdine gabardine smock dust_coat,a loose coverall (coat or frock) reaching down to the ankles
+36829,dustiness,the state of being covered with dust
+36830,dustmop dust_mop dry_mop,a dry swab for dusting floors
+36831,dustpan,a short-handled receptacle into which dust can be swept
+36832,dustpan dustpanful,the quantity that a dustpan will hold
+36833,dusty_miller Centaurea_cineraria Centaurea_gymnocarpa,a plant having leaves and stems covered with down that resembles dust
+36834,dusty_miller Senecio_cineraria Cineraria_maritima,stiff much-branched perennial of the Mediterranean region having very white woolly stems and leaves
+36835,dusty_miller beach_wormwood old_woman Artemisia_stelleriana,herb with greyish leaves found along the east coast of North America; used as an ornamental plant
+36836,dusty_miller silver-lace silver_lace Tanacetum_ptarmiciflorum Chrysanthemum_ptarmiciflorum,shrubby perennial of the Canary Islands having white flowers and leaves and hairy stems covered with dustlike down; sometimes placed in genus Chrysanthemum
+36837,dutch_auction,a method of selling in which the price is reduced until a buyer is found
+36838,dutifulness,piety by virtue of devotion to duty
+36839,duty,work that you are obliged to perform for moral or legal reasons; "the duties of the job"
+36840,duty responsibility obligation,the social force that binds you to the courses of action demanded by that force; "we must instill a sense of duty in our children"; "every right implies a responsibility; every opportunity, an obligation; every possession, a duty"- John D.Rockefeller Jr
+36841,duty tariff,a government tax on imports or exports; "they signed a treaty to lower duties on trade between their countries"
+36842,dwarf,a plant or animal that is atypically small
+36843,dwarf midget nanus,a person who is markedly small
+36844,dwarf-white_trillium snow_trillium early_wake-robin,a low perennial white-flowered trillium found in the southeastern United States
+36845,dwarf_astilbe Astilbe_chinensis_pumila,mat-forming evergreen Asiatic plant with finely cut leaves and small pink to burgundy flowers; grown as ground cover
+36846,dwarf_banana Musa_acuminata,low-growing Asian banana tree cultivated especially in the West Indies for its clusters of edible yellow fruit
+36847,dwarf_bilberry dwarf_blueberry Vaccinium_caespitosum,low-growing tufted deciduous shrub of northern and alpine North America having pink to coral-red flowers followed by sweet blue berries
+36848,dwarf_buckeye bottlebrush_buckeye,a spreading shrub with pink flowers; found in southeastern United States
+36849,dwarf_chinkapin_oak dwarf_chinquapin_oak dwarf_oak Quercus_prinoides,deciduous shrubby tree of northeastern and central United States having a sweet edible nut and often forming dense thickets
+36850,dwarf_dandelion Krigia_dandelion Krigia_bulbosa,small yellow-flowered herb resembling dandelions of central and southeastern United States
+36851,dwarf_elder danewort Sambucus_ebulus,dwarf herbaceous elder of Europe having pink flowers and a nauseous odor
+36852,dwarf_flowering_almond Prunus_glandulosa,small Chinese shrub with smooth unfurrowed dark red fruit grown especially for its red or pink or white flowers
+36853,dwarf_golden_chinkapin Chrysolepis_sempervirens,evergreen shrub similar to golden chinkapin; mountains of California
+36854,dwarf_grey_willow dwarf_gray_willow sage_willow Salix_tristis,willow shrub of dry places in the eastern United States having long narrow leaves canescent beneath
+36855,dwarf_hulsea Hulsea_nana,similar to but smaller than alpine hulsea
+36856,dwarf_iris Iris_cristata,low-growing summer-flowering iris of northeastern United States
+36857,dwarf_iris vernal_iris Iris_verna,low-growing spring-flowering American iris with bright blue-lilac flowers
+36858,dwarf_juniper savin Juniperus_sabina,procumbent or spreading juniper
+36859,dwarf_maple Rocky-mountain_maple Acer_glabrum,small maple of northwestern North America
+36860,dwarf_pipefish Syngnathus_hildebrandi,small (4 inches) fish found off the Florida Gulf Coast
+36861,dwarf_sperm_whale Kogia_simus,very small (to 8 feet) sperm whale of central coasts of Atlantic and Pacific
+36862,dwarf_spurge Euphorbia_exigua,European erect or depressed annual weedy spurge adventive in northeastern United States
+36863,dwarf_sumac mountain_sumac black_sumac shining_sumac Rhus_copallina,common nonpoisonous shrub of eastern North America with compound leaves and green paniculate flowers followed by red berries
+36864,dwarf_tulip Tulipa_armena Tulipa_suaveolens,small early blooming tulip
+36865,dwarf_willow Salix_herbacea,widely distributed boreal shrubby willow with partially underground creeping stems and bright green glossy leaves
+36866,dwarfishness,smallness of stature
+36867,dwarfism nanism,a genetic abnormality resulting in short stature
+36868,dwelling home domicile abode habitation dwelling_house,housing that someone is living in; "he built a modest dwelling near the pond"; "they raise money to provide homes for the homeless"
+36869,dwindling dwindling_away,a becoming gradually less; "there is no greater sadness that the dwindling away of a family"
+36870,dyadic_operation,an operation on exactly two operands
+36871,dybbuk dibbuk,(Jewish folklore) a demon that enters the body of a living person and controls that body's behavior
+36872,dye dyestuff,a usually soluble substance for staining or coloring e.g. fabrics or hair
+36873,dye-works,a workshop where dyeing is done
+36874,dyeing,the use of dye to change the color of something permanently
+36875,dyer,someone whose job is to dye cloth
+36876,dyer's_rocket dyer's_mignonette weld Reseda_luteola,European mignonette cultivated as a source of yellow dye; naturalized in North America
+36877,dyer's_weed Solidago_rugosa,eastern North American herb whose yellow flowers are (or were) used in dyeing
+36878,dyer's_woad Isatis_tinctoria,European biennial formerly grown for the blue coloring matter yielded by its leaves
+36879,dyer's_woodruff Asperula_tinctoria,creeping European perennial having red or pinkish-white flowers and red roots sometimes used as a substitute for madder in dyeing
+36880,dyewood,any wood from which dye is obtained
+36881,dynamic_balance,(aeronautics) the state of equilibrium in which centrifugal forces due to a rotating mass (e.g., a propeller) do not produce force in the shaft and so vibration is reduced
+36882,dynamic_electricity current_electricity,a flow of electric charge
+36883,dynamical_system,(physics) a phase space together with a transformation of that space
+36884,dynamics kinetics,the branch of mechanics concerned with the forces that cause motions of bodies
+36885,dynamism,any of the various theories or doctrines or philosophical systems that attempt to explain the phenomena of the universe in terms of some immanent force or energy
+36886,dynamism pizzazz pizzaz oomph zing,the activeness of an energetic personality
+36887,dynamite,an explosive containing nitrate sensitized with nitroglycerin absorbed on wood pulp
+36888,dynamiter dynamitist,a person who uses dynamite in a revolutionary cause
+36889,dynamo,generator consisting of a coil (the armature) that rotates between the poles of an electromagnet (the field magnet) causing a current to flow in the armature
+36890,dynamometer ergometer,measuring instrument designed to measure power
+36891,dynast,a hereditary ruler
+36892,dynasty,a sequence of powerful leaders in the same family
+36893,dyne,a unit of force equal to the force that imparts an acceleration of 1 cm/sec/sec to a mass of 1 gram
+36894,dysaphia,a disorder in the sense of touch
+36895,dysarthria,impaired articulatory ability resulting from defects in the peripheral motor nerves or in the speech musculature
+36896,dyscalculia,impaired ability to learn grade-appropriate mathematics
+36897,dyschezia,difficulty in defecating (usually as a consequence of long continued voluntary suppression of the urge to defecate)
+36898,dyscrasia,an abnormal or physiologically unbalanced state of the body
+36899,dysentery,an infection of the intestines marked by severe diarrhea
+36900,dysfunction disfunction,(medicine) any disturbance in the functioning of an organ or body part or a disturbance in the functioning of a social group; "erectile dysfunction"; "sexual relationship dysfunction"
+36901,dysgenesis,infertility between hybrids
+36902,dysgenics cacogenics,the study of the operation of factors causing degeneration in the type of offspring produced
+36903,dysgraphia,impaired ability to learn to write
+36904,dyskinesia,abnormality in performing voluntary muscle movements
+36905,dyslectic dyslexic,a person who has dyslexia
+36906,dyslexia,impaired ability to learn to read
+36907,dyslogia,impaired ability to express ideas verbally; usually resulting from difficulties of reasoning (as in feeblemindedness or certain psychoses)
+36908,dysmenorrhea,painful menstruation
+36909,dysomia,impairment of the sense of smell
+36910,dysosmia parosamia olfactory_impairment,a disorder in the sense of smell
+36911,dyspeptic,a person suffering from indigestion
+36912,dysphagia,condition in which swallowing is difficult or painful
+36913,dysphasia,an impairment of language (especially speech production) that is usually due to brain damage
+36914,dysphemism,an offensive or disparaging expression that is substituted for an inoffensive one; "his favorite dysphemism was to ask for axle grease when he wanted butter"
+36915,dysphonia,speech disorder attributable to a disorder of phonation
+36916,dysphoria,abnormal depression and discontent
+36917,dysplasia,abnormal development (of organs or cells) or an abnormal structure resulting from such growth
+36918,dyspnea dyspnoea,difficult or labored respiration
+36919,dysprosium Dy atomic_number_66,a trivalent metallic element of the rare earth group; forms compounds that are highly magnetic
+36920,dysthymia dysthymic_depression,mild chronic depression; "I thought she had just been in a bad mood for thirty years, but the doctor called it dysthymia"
+36921,dystopia,state in which the conditions of life are extremely bad as from deprivation or oppression or terror
+36922,dystopia,a work of fiction describing an imaginary place where life is extremely bad because of deprivation or oppression or terror
+36923,dystrophy,any degenerative disorder resulting from inadequate or faulty nutrition
+36924,dysuria,painful or difficult urination
+36925,e,the base of the natural system of logarithms; approximately equal to 2.718282...
+36926,e-commerce,commerce conducted electronically (as on the internet)
+36927,eager_beaver busy_bee live_wire sharpie sharpy,an alert and energetic person
+36928,eagerness avidity avidness keenness,a positive feeling of wanting to push ahead with something
+36929,eagle,(golf) a score of two strokes under par on a hole
+36930,eagle,a former gold coin in the United States worth 10 dollars
+36931,eagle,an emblem representing power; "the Roman eagle"
+36932,eagle bird_of_Jove,any of various large keen-sighted diurnal birds of prey noted for their broad wings and strong soaring flight
+36933,eagle_ray,powerful free-swimming tropical ray noted for `soaring' by flapping winglike fins; usually harmless but has venomous tissue near base of the tail as in stingrays
+36934,eaglet,a young eagle
+36935,ear,attention to what is said; "he tried to get her ear"
+36936,ear,good hearing; "he had a keen ear"; "a good ear for pitch"
+36937,ear,the sense organ for hearing and equilibrium
+36938,ear spike capitulum,fruiting spike of a cereal plant especially corn
+36939,ear_doctor ear_specialist otologist,a physician who specializes in the ear and its diseases
+36940,ear_hole,a hole (as in a helmet) for sound to reach the ears
+36941,earache otalgia,an ache localized in the middle or inner ear
+36942,eardrum tympanum tympanic_membrane myringa,the membrane in the ear that vibrates to sound
+36943,eared_seal,pinniped mammal having external ear flaps and hind limbs used for locomotion on land; valued for its soft underfur
+36944,earflap earlap,one of two flaps attached to a cap to keep the ears warm
+36945,earful,an outpouring of gossip
+36946,earl,a British peer ranking below a marquess and above a viscount
+36947,earldom,the dignity or rank or position of an earl or countess
+36948,earldom,the domain controlled by an earl or count or countess
+36949,earleaved_umbrella_tree Magnolia_fraseri,small erect deciduous tree with large leaves in coiled formations at branch tips
+36950,earless_lizard,any of several slender lizards without external ear openings: of plains of western United States and Mexico
+36951,earless_seal true_seal hair_seal,any of several seals lacking external ear flaps and having a stiff hairlike coat with hind limbs reduced to swimming flippers
+36952,earliness,quality of coming early or earlier in time
+36953,earlobe ear_lobe,the fleshy pendulous part of the external human ear
+36954,early-morning_hour,an hour early in the morning
+36955,early_bird,a person who arrives early before others do
+36956,early_bird,a person who gets up very early in the morning
+36957,early_coral_root pale_coral_root Corallorhiza_trifida,plant having clumps of nearly leafless pale yellowish to greenish stems bearing similarly colored flowers with white lower lips; northern New Mexico north through South Dakota and Washington to Alaska
+36958,early_spider_orchid Ophrys_sphegodes,spring-blooming spider orchid having a flower with yellow or green or pink sepals and a broad brown velvety lip
+36959,early_warning_radar,a radar that is part of an early warning system
+36960,early_warning_system,a network of radar installations designed to detect enemy missiles or aircraft while there is still time to intercept them
+36961,earmark,identification mark on the ear of a domestic animal
+36962,earmuff,either of a pair of ear coverings (usually connected by a headband) that are worn to keep the ears warm in cold weather
+36963,earned_run,a run that was not scored as the result of an error by the other team
+36964,earned_run_average ERA,(baseball) a measure of a pitcher's effectiveness; calculated as the average number of earned runs allowed by the pitcher for every nine innings pitched
+36965,earner wage_earner,someone who earn wages in return for their labor
+36966,earnest,something of value given by one person to another to bind a contract
+36967,earnest_money arles,money given by a buyer to a seller to bind a contract
+36968,earnestness seriousness sincerity,an earnest and sincere feeling
+36969,earning_per_share,the portion of a company's profit allocated to each outstanding share of common stock
+36970,earphone earpiece headphone phone,electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear; "it was not the typing but the earphones that she disliked"
+36971,earplug,an earphone that is inserted into the ear canal
+36972,earplug,a plug of cotton, wax, or rubber that is fitted into the ear canal for protection against the entry of water or loud noise
+36973,earring,jewelry to ornament the ear; usually clipped to the earlobe or fastened through a hole in the lobe
+36974,earshot earreach hearing,the range within which a voice can be heard; "the children were told to stay within earshot"
+36975,earth,once thought to be one of four elements composing the universe (Empedocles)
+36976,earth ground,the loose soft material that makes up a large part of the land surface; "they dug into the earth outside the church"
+36977,earth-god earth_god,a god of fertility and vegetation
+36978,earth-goddess earth_goddess,a goddess of fertility and vegetation
+36979,earth_color,a colored mineral used as a pigment
+36980,earth_mother,the earth conceived of as the female principle of fertility
+36981,earth_science,any of the sciences that deal with the earth or its parts
+36982,earthball false_truffle puffball hard-skinned_puffball,any of various fungi of the genus Scleroderma having hard-skinned subterranean fruiting bodies resembling truffles
+36983,earthenware,ceramic ware made of porous clay fired at low heat
+36984,earthnut Conopodium_denudatum,a common European plant having edible tubers with the flavor of roasted chestnuts
+36985,earthquake,a disturbance that is extremely disruptive; "selling the company caused an earthquake among the employees"
+36986,earthquake quake temblor seism,shaking and vibration at the surface of the earth resulting from underground movement along a fault plane or from volcanic activity
+36987,earthstar,any fungus of the family Geastraceae; in form suggesting a puffball whose outer peridium splits into the shape of a star
+36988,earthtongue earth-tongue,any club-shaped fungus of the genus Geoglossum
+36989,earthwork,an earthen rampart
+36990,earthworm angleworm fishworm fishing_worm wiggler nightwalker nightcrawler crawler dew_worm red_worm,terrestrial worm that burrows into and helps aerate soil; often surfaces when the ground is cool or wet; used as bait by anglers
+36991,earwig,any of numerous insects of the order Dermaptera having elongate bodies and slender many-jointed antennae and a pair of large pincers at the rear of the abdomen
+36992,ease comfort,a freedom from financial difficulty that promotes a comfortable state; "a life of luxury and ease"; "he had all the material comforts of this world"
+36993,ease easiness simplicity simpleness,freedom from difficulty or hardship or effort; "he rose through the ranks with apparent ease"; "they put it into containers for ease of transportation"; "the very easiness of the deed held her back"
+36994,ease informality,freedom from constraint or embarrassment; "I am never at ease with strangers"
+36995,easel,an upright tripod for displaying something (usually an artist's canvas)
+36996,easement,(law) the privilege of using something that is not your own (as using another's land as a right of way to your own land)
+36997,easiness,the quality of being easy in behavior or style; "there was an easiness between them"; "a natural easiness of manner"
+36998,easiness relaxation,a feeling of refreshing tranquility and an absence of tension or worry; "the easiness we feel when sleeping"
+36999,easing easement alleviation relief,the act of reducing something unpleasant (as pain or annoyance); "he asked the nurse for relief from the constant pain"
+37000,easing moderation relief,a change for the better
+37001,east,the direction corresponding to the eastward cardinal compass point
+37002,east,a location in the eastern part of a country, region, or city
+37003,east due_east eastward E,the cardinal compass point that is at 90 degrees
+37004,east-west_direction,in a direction parallel with lines of latitude
+37005,east_African_cedar Juniperus_procera,tropical African timber tree with fragrant wood
+37006,east_by_north EbN,the compass point that is one point north of due east
+37007,east_by_south EbS,the compass point that is one point south of due east
+37008,east_northeast ENE,the compass point midway between northeast and east
+37009,east_side,the side that is on the east
+37010,east_southeast ESE,the compass point midway between east and southeast
+37011,east_wind easter easterly,a wind from the east
+37012,eastern_chimpanzee Pan_troglodytes_schweinfurthii,long-haired chimpanzees of east-central Africa; closely related to the central chimpanzees
+37013,eastern_chipmunk hackee striped_squirrel ground_squirrel Tamias_striatus,small striped semiterrestrial eastern American squirrel with cheek pouches
+37014,eastern_coral_snake Micrurus_fulvius,ranges from Central America to southeastern United States
+37015,eastern_cottontail Sylvilagus_floridanus,widely distributed in United States except northwest and far west regions
+37016,eastern_cricket_frog Acris_gryllus,a cricket frog of eastern United States
+37017,eastern_dasyure Dasyurus_quoll,a variety of dasyure
+37018,eastern_fence_lizard pine_lizard Sceloporus_undulatus,small active lizard of United States and north to British Columbia
+37019,eastern_grey_squirrel eastern_gray_squirrel cat_squirrel Sciurus_carolinensis,common medium-large squirrel of eastern North America; now introduced into England
+37020,eastern_ground_snake Potamophis_striatula Haldea_striatula,in some classifications placed in genus Haldea; small reddish-grey snake of eastern North America
+37021,eastern_hemisphere orient,the hemisphere that includes Eurasia and Africa and Australia
+37022,eastern_hemlock Canadian_hemlock spruce_pine Tsuga_canadensis,common forest tree of the eastern United States and Canada; used especially for pulpwood
+37023,eastern_indigo_snake Drymarchon_corais_couperi,a variety of indigo snake
+37024,eastern_kingbird,a kingbird that breeds in North America and winters in tropical America; distinguished by a white band on the tip of the tail
+37025,eastern_lowland_gorilla Gorilla_gorilla_grauri,a kind of gorilla
+37026,eastern_meadowlark Sturnella_magna,a meadowlark of eastern North America
+37027,eastern_narrow-mouthed_toad Gastrophryne_carolinensis,small toad of southeastern United States
+37028,eastern_pipistrel Pipistrellus_subflavus,one of the smallest bats of eastern North America
+37029,eastern_poison_oak Toxicodendron_quercifolium Rhus_quercifolia Rhus_toxicodenedron,poisonous shrub of southeastern United States causing a rash on contact
+37030,eastern_red-backed_salamander Plethodon_cinereus,common salamander of eastern North America
+37031,eastern_red_cedar red_cedar red_juniper Juniperus_virginiana,small juniper found east of Rocky Mountains having a conic crown, brown bark that peels in shreds, and small sharp needles
+37032,eastern_woodrat Neotoma_floridana,large greyish-brown wood rat of the southeastern United States
+37033,easterner,an inhabitant of an eastern area; especially of the U.S.
+37034,easy_chair lounge_chair overstuffed_chair,a comfortable upholstered armchair
+37035,easy_money,the economic condition in which credit is easy to secure
+37036,easy_money gravy_train,income obtained with a minimum of effort
+37037,easy_street,financial security
+37038,easygoingness,being without worry or concern
+37039,eatage forage pasture pasturage grass,bulky food like grass or hay for browsing or grazing horses or cattle
+37040,eater,any green goods that are good to eat; "these apples are good eaters"
+37041,eater feeder,someone who consumes food for nourishment
+37042,eating feeding,the act of consuming food
+37043,eating_apple dessert_apple,an apple used primarily for eating raw without cooking
+37044,eating_disorder,a disorder of the normal eating routine
+37045,eau_de_vie,strong coarse brandy
+37046,eaves,the overhang at the lower edge of a roof
+37047,eavesdropper,a secret listener to private conversations
+37048,ebb ebbing wane,a gradual decline (in size or strength or power or number)
+37049,ebb reflux,the outward flow of the tide
+37050,ebbtide,the tide while water is flowing out
+37051,eblis,(Islam) the principal evil jinni in Islamic mythology
+37052,ebony,hard dark-colored heartwood of the ebony tree; used in cabinetwork and for piano keys
+37053,ebony ebony_tree Diospyros_ebenum,tropical tree of southern Asia having hard dark-colored heartwood used in cabinetwork
+37054,ebony_spleenwort Scott's_Spleenwort Asplenium_platyneuron,common North American fern with polished black stripes
+37055,eburnation,a change that occurs in degenerative joint disease in which bone is converted into a dense smooth substance resembling ivory
+37056,ecarte,a card game for 2 players; played with 32 cards and king high
+37057,ecce_homo,a representation (a picture or sculpture) of Jesus wearing a crown of thorns
+37058,eccentric eccentric_person flake oddball geek,a person with an unusual or odd personality
+37059,eccentricity,(geometry) a ratio describing the shape of a conic section; the ratio of the distance between the foci to the length of the major axis; "a circle is an ellipse with zero eccentricity"
+37060,eccentricity,a circularity that has a different center or deviates from a circular path
+37061,eccentricity,strange and unconventional behavior
+37062,ecchymosis,the purple or black-and-blue area resulting from a bruise
+37063,ecchymosis,the escape of blood from ruptured blood vessels into the surrounding tissue to form a purple or black-and-blue spot on the skin
+37064,ecclesiastical_attire ecclesiastical_robe,attire that is appropriate to wear in a church
+37065,ecclesiastical_mode Gregorian_mode church_mode medieval_mode,any of a system of modes used in Gregorian chants up until 1600; derived historically from the Greek mode
+37066,ecclesiastical_province,the district within the jurisdiction of an archbishop or a metropolitan or one of the territorial divisions of an ecclesiastical order; "the general of the Jesuits has several provinces under him"
+37067,ecclesiasticism,religion appropriate to a church and to ecclesiastical principles and practices
+37068,ecclesiasticism,excessive adherence to ecclesiastical forms and activities; "their ecclesiasticism overwhelmed their religion"
+37069,ecclesiology,the branch of theology concerned with the nature and the constitution and the functions of a church
+37070,eccrine_gland,a small sweat gland that produces only a fluid; restricted to the human skin
+37071,echelon,status in a society or organization; "the upper echelon"
+37072,echelon,a body of troops arranged in a line
+37073,echelon,a diffraction grating consisting of a pile of plates of equal thickness arranged stepwise with a constant offset
+37074,echidna spiny_anteater anteater,a burrowing monotreme mammal covered with spines and having a long snout and claws for hunting ants and termites; native to New Guinea
+37075,echidna spiny_anteater anteater,a burrowing monotreme mammal covered with spines and having a long snout and claws for hunting ants and termites; native to Australia
+37076,echinocactus barrel_cactus,any cactus of the genus Echinocactus; strongly ribbed and very spiny; southwestern United States to Brazil
+37077,echinococcosis hydatid_disease hydatidosis,infestation with larval echinococci (tapeworms)
+37078,echinococcus,tapeworms whose larvae are parasitic in humans and domestic animals
+37079,echinoderm,marine invertebrates with tube feet and five-part radially symmetrical bodies
+37080,echinoderm_family,a family of echinoderms
+37081,echinoderm_genus,a genus of echinoderms
+37082,echinus,ovolo molding between the shaft and the abacus of a Doric column
+37083,echo,a reply that repeats what has just been said
+37084,echo,a reflected television or radio or radar beam
+37085,echo,a close parallel of a feeling, idea, style, etc.; "his contention contains more than an echo of Rousseau"; "Napoleon III was an echo of the mighty Emperor but an infinitely better man"
+37086,echo,an imitation or repetition; "the flower arrangement was created as an echo of a client's still life"
+37087,echo reverberation sound_reflection replication,the repetition of a sound resulting from reflection of the sound waves; "she could hear echoes of her own footsteps"
+37088,echo_chamber,an enclosed space for producing reverberation of a sound
+37089,echocardiogram,a graphical image of the heart produced by an echocardiograph
+37090,echocardiograph,a sonograph that creates an image of the heart and its abnormalities
+37091,echocardiography,a noninvasive diagnostic procedure that uses ultrasound to study to structure and motions of the heart
+37092,echoencephalogram,a graphical image of the brain produced by an echoencephalograph
+37093,echoencephalograph,a sonograph that creates an image of the brain and its abnormalities
+37094,echoencephalography,a noninvasive diagnostic procedure that uses ultrasound to study the anatomy of the brain
+37095,echolalia,an infant's repetition of sounds uttered by others
+37096,echolalia,(psychiatry) mechanical and meaningless repetition of the words of another person (as in schizophrenia)
+37097,echolocation echo_sounding,determining the location of something by measuring the time it takes for an echo to return from it
+37098,echovirus,any of a group of viruses associated with various diseases including viral meningitis and mild respiratory disorders and diarrhea in newborn infants
+37099,eclair,oblong cream puff
+37100,eclampsia,a toxic condition characterized by convulsions and possibly coma during or immediately after pregnancy
+37101,eclat,brilliant or conspicuous success or effect; "the eclat of a great achievement"
+37102,eclectic eclecticist,someone who selects according to the eclectic method
+37103,eclecticism eclectic_method,making decisions on the basis of what seems best instead of following some single doctrine or style
+37104,eclipse occultation,one celestial body obscures another
+37105,ecliptic,the great circle representing the apparent annual path of the sun; the plane of the Earth's orbit around the sun; makes an angle of about 23 degrees with the equator; "all of the planets rotate the sun in approximately the same ecliptic"
+37106,eclogue bucolic idyll idyl,a short poem descriptive of rural or pastoral life
+37107,ecobabble,using the technical language of ecology to make the user seem ecologically aware
+37108,ecologist,a biologist who studies the relation between organisms and their environment
+37109,ecology,the environment as it relates to living organisms; "it changed the ecology of the island"
+37110,ecology bionomics environmental_science,the branch of biology concerned with the relations between organisms and their environment
+37111,econometrician econometrist,an economist who uses statistical and mathematical methods
+37112,econometrics,the application of mathematics and statistics to the study of economic and financial data
+37113,economic_condition,the condition of the economy
+37114,economic_geography,the branch of geography concerned with the production and distribution of commodities
+37115,economic_geology,the branch of geology that deals with economically valuable geological materials
+37116,economic_growth,steady growth in the productive capacity of the economy (and so a growth of national income)
+37117,economic_libertarian,a libertarian who advocates maximizing individual rights and minimizing the role of the state
+37118,economic_mobilization economic_mobilisation,mobilization of the economy
+37119,economic_policy,a government policy for maintaining economic growth and tax revenues
+37120,economic_process,any process affecting the production and development and management of material wealth
+37121,economic_rent rent,the return derived from cultivated land in excess of that derived from the poorest land cultivated under similar conditions
+37122,economic_strangulation,punishment of a group by cutting off commercial dealings with them; "the economic strangulation of the Jews by the Nazi Party"
+37123,economic_theory,(economics) a theory of commercial activities (such as the production and consumption of goods)
+37124,economics economic_science political_economy,the branch of social science that deals with the production and distribution and consumption of goods and services and their management
+37125,economics_department department_of_economics,the academic department responsible for teaching and research in economics
+37126,economics_profession,the body of professional economists
+37127,economist economic_expert,an expert in the science of economics
+37128,economizer economiser,a frugal person who limits spending and avoids waste
+37129,economy,the efficient use of resources; "economy of effort"
+37130,economy economic_system,the system of production and distribution and consumption
+37131,economy saving,an act of economizing; reduction in cost; "it was a small economy to walk to work every day"; "there was a saving of 50 cents"
+37132,economy thriftiness,frugality in the expenditure of money or resources; "the Scots are famous for their economy"
+37133,economy_of_scale,the saving in cost of production that is due to mass production
+37134,ecosystem,a system formed by the interaction of a community of organisms with their physical environment
+37135,ecoterrorism ecological_terrorism eco-warfare ecological_warfare,violence carried out to further the political or social objectives of the environmentalists
+37136,ecotourism,tourism to exotic or threatened ecosystems to observe wildlife or to help preserve nature
+37137,ecphonesis exclamation,an exclamatory rhetorical device; "O tempore! O mores"
+37138,ecstasy rapture,a state of elated bliss
+37139,ecstasy rapture transport exaltation raptus,a state of being carried away by overwhelming emotion; "listening to sweet music in a perfect rapture"- Charles Dickens
+37140,ectasia ectasis,dilatation or distension of a hollow organ
+37141,ectoderm exoderm ectoblast,the outer germ layer that develops into skin and nervous tissue
+37142,ectomorph,a person with a thin body
+37143,ectoparasite ectozoan ectozoon epizoan epizoon,any external parasitic organism (as fleas)
+37144,ectopia,abnormal position of a part or organ (especially at the time of birth)
+37145,ectopic_pregnancy extrauterine_pregnancy ectopic_gestation extrauterine_gestation eccyesis metacyesis,pregnancy resulting from gestation elsewhere than in the uterus
+37146,ectoplasm,(spiritualism) a substance supposed to emanate from the body of the medium during a trance
+37147,ectoplasm,the outer granule-free layer of cytoplasm
+37148,ectoproct,sessile mossy aquatic animal having the anus of the polyp outside the crown of tentacles
+37149,ectrodactyly,congenital abnormality involving the absence of some fingers or toes
+37150,ecumenical_council,(early Christian church) one of seven gatherings of bishops from around the known world under the presidency of the Pope to regulate matters of faith and morals and discipline; "the first seven councils through 787 are considered to be ecumenical councils by both the Roman Catholic church and the Eastern Orthodox church but the next fourteen councils are considered ecumenical only by the Roman Catholic church"
+37151,ecumenical_movement,a movement aimed to promote understanding and cooperation among Christian churches; aimed ultimately at universal Christian unity
+37152,ecumenism ecumenicism ecumenicalism,(Christianity) the doctrine of the ecumenical movement that promotes cooperation and better understanding among different religious denominations: aimed at universal Christian unity
+37153,ecumenism oecumenism,a movement promoting union between religions (especially between Christian churches)
+37154,eczema,generic term for inflammatory conditions of the skin; particularly with vesiculation in the acute stages
+37155,eczema_herpeticum,eczema characterized by a feverish condition and widespread eruption of vesicles; most common in children
+37156,eczema_vaccinatum Kaposi's_varicelliform_eruption,a now rare complication of vaccinia superimposed on atopic dermatitis with high fever and generalized vesicles and papulovesicles
+37157,edacity esurience rapaciousness rapacity voracity voraciousness,extreme gluttony
+37158,edacity esurience ravenousness voracity voraciousness,excessive desire to eat
+37159,edaphosaurus,heavy-bodied reptile with a dorsal sail or crest; of the late Paleozoic
+37160,eddy twist,a miniature whirlpool or whirlwind resulting when the current of a fluid doubles back on itself
+37161,edelweiss Leontopodium_alpinum,alpine perennial plant native to Europe having leaves covered with whitish down and small flower heads held in stars of glistening whitish bracts
+37162,edema oedema hydrops dropsy,swelling from excessive accumulation of watery fluid in cells, tissues, or serous cavities
+37163,edentate,primitive terrestrial mammal with few if any teeth; of tropical Central America and South America
+37164,edge,a slight competitive advantage; "he had an edge on the competition"
+37165,edge,the outside limit of an object or area or surface; a place farthest away from the center of something; "the edge of the leaf is wavy"; "she sat on the edge of the bed"; "the water's edge"
+37166,edge,a sharp side formed by the intersection of two surfaces of an object; "he rounded the edges of the box"
+37167,edge border,the boundary of a surface
+37168,edge sharpness,the attribute of urgency in tone of voice; "his voice had an edge to it"
+37169,edge_tool,any cutting tool with a sharp cutting edge (as a chisel or knife or plane or gouge)
+37170,edger,a person who puts finishing edges on a garment
+37171,edger,garden tool for cutting grass around the edges of a yard
+37172,edginess uneasiness inquietude disquietude,feelings of anxiety that make you tense and irritable
+37173,edging,border consisting of anything placed on the edge to finish something (such as a fringe on clothing or on a rug)
+37174,edibility edibleness,the property of being fit to eat
+37175,edible-pod_pea edible-podded_pea Pisum_sativum_macrocarpon,a variety of pea plant producing peas having soft thick edible pods lacking the fibrous inner lining of the common pea
+37176,edible_banana Musa_paradisiaca_sapientum,widely cultivated species of banana trees bearing compact hanging clusters of commercially important edible yellow fruit
+37177,edible_cockle Cardium_edule,common edible European cockle
+37178,edible_fat,oily or greasy matter making up the bulk of fatty tissue in animals and in seeds and other plant tissue
+37179,edible_fruit,edible reproductive body of a seed plant especially one having sweet flesh
+37180,edible_mussel Mytilus_edulis,a mussel with a dark shell that lives attached to rocks
+37181,edible_nut,a hard-shelled seed consisting of an edible kernel or meat enclosed in a woody or leathery shell
+37182,edible_sea_urchin Echinus_esculentus,a sea urchin that can be eaten
+37183,edible_seed,many are used as seasoning
+37184,edible_snail Helix_pomatia,one of the chief edible snails
+37185,edict,a formal or authoritative proclamation
+37186,edification sophistication,uplifting enlightenment
+37187,editing redaction,putting something (as a literary work or a legislative bill) into acceptable form
+37188,edition,all of the identical copies of something offered to the public at the same time; "the first edition appeared in 1920"; "it was too late for the morning edition"; "they issued a limited edition of Bach recordings"
+37189,edition,an issue of a newspaper; "he read it in yesterday's edition of the Times"
+37190,edition,the form in which a text (especially a printed book) is published
+37191,editor editor_in_chief,a person responsible for the editorial aspects of publication; the person who determines the final content of a text (especially of a newspaper or magazine)
+37192,editor_program editor,(computer science) a program designed to perform such editorial functions as rearrangement or modification or deletion of data
+37193,editorial_department,the department of a publishing business that edits material for publication
+37194,editorship,the position of editor
+37195,edmontosaurus,duck-billed dinosaur from Canada found as a fossilized mummy with skin
+37196,education,knowledge acquired by learning and instruction; "it was clear that he had a very broad education"
+37197,education,the gradual process of acquiring knowledge; "education is a preparation for life"; "a girl's education was less important than a boy's"
+37198,education,the profession of teaching (especially at a school or college or university)
+37199,education instruction teaching pedagogy didactics educational_activity,the activities of educating or instructing; activities that impart knowledge or skill; "he received no formal education"; "our instruction was carefully programmed"; "good classroom teaching is seldom rewarded"
+37200,education training breeding,the result of good upbringing (especially knowledge of correct social behavior); "a woman of breeding and refinement"
+37201,educational_institution,an institution dedicated to education
+37202,educational_program,a program for providing education
+37203,educationist educationalist,a specialist in the theory of education
+37204,educator pedagogue pedagog,someone who educates young people
+37205,edutainment,entertainment that is intended to be educational
+37206,eel,the fatty flesh of eel; an elongate fish found in fresh water in Europe and America; large eels are usually smoked or pickled
+37207,eel,voracious snakelike marine or freshwater fishes with smooth slimy usually scaleless skin and having a continuous vertical fin but no ventral fins
+37208,eelblenny,eellike fishes found in subarctic coastal waters
+37209,eelgrass grass_wrack sea_wrack Zostera_marina,submerged marine plant with very long narrow leaves found in abundance along North Atlantic coasts
+37210,eelpout pout,marine eellike mostly bottom-dwelling fishes of northern seas
+37211,eelworm,any of various small free-living plant-parasitic roundworms
+37212,eeriness ghostliness,strangeness by virtue of being mysterious and inspiring fear
+37213,effacement,shortening of the uterine cervix and thinning of its walls as it is dilated during labor
+37214,effacement self-effacement,withdrawing into the background; making yourself inconspicuous
+37215,effect,a symptom caused by an illness or a drug; "the effects of sleep loss"; "the effect of the anesthetic"
+37216,effect,an impression (especially one that is artificial or contrived); "he just did it for effect"
+37217,effect essence burden core gist,the central meaning or theme of a speech or literary work
+37218,effect force,(of a law) having legal validity; "the law is still in effect"
+37219,effecter effector,one who brings about a result or event; one who accomplishes a purpose
+37220,effectiveness effectivity effectualness effectuality,power to be effective; the quality of being able to bring about an effect
+37221,effector,a nerve fiber that terminates on a muscle or gland and stimulates contraction or secretion
+37222,effector,an organ (a gland or muscle) that becomes active in response to nerve impulses
+37223,effects personal_effects,property of a personal character that is portable but not used in business; "she left some of her personal effects in the house"; "I watched over their effects until they returned"
+37224,effeminacy effeminateness sissiness softness womanishness unmanliness,the trait of being effeminate (derogatory of a man); "the students associated science with masculinity and arts with effeminacy"; "Spartans accused Athenians of effeminateness"; "he was shocked by the softness of the atmosphere surrounding the young prince, arising from the superfluity of the femininity that guided him"
+37225,effendi,a former Turkish term of respect; especially for government officials
+37226,effervescence,the process of bubbling as gas escapes
+37227,efficacy efficaciousness,capacity or power to produce a desired effect; "concern about the safety and efficacy of the vaccine"
+37228,efficiency,the ratio of the output to the input of any system
+37229,efficiency,skillfulness in avoiding wasted time and effort; "she did the work with great efficiency"
+37230,efficiency_apartment,a furnished apartment with a kitchenette and bathroom
+37231,efficiency_expert efficiency_engineer,an expert in increasing the efficient use of machines and personnel
+37232,effigy image simulacrum,a representation of a person (especially in the form of sculpture); "the coin bears an effigy of Lincoln"; "the emperor's tomb had his image carved in stone"
+37233,effleurage,a rhythmic stroking; "effleurage of the abdomen is used in the Lamaze method of childbirth"
+37234,efflorescence bloom,a powdery deposit on a surface
+37235,effluent wastewater sewer_water,water mixed with waste matter
+37236,effluvium,a foul-smelling outflow or vapor (especially a gaseous waste)
+37237,effort elbow_grease exertion travail sweat,use of physical or mental energy; hard work; "he got an A for effort"; "they managed only with great exertion"
+37238,effortfulness,the quality of requiring deliberate effort
+37239,effortlessness,the quality of requiring little effort; "such effortlessness is achieved only after hours of practice"
+37240,effusion,flow under pressure
+37241,effusion gush outburst blowup ebullition,an unrestrained expression of emotion
+37242,effusiveness expansiveness expansivity,a friendly open trait of a talkative person
+37243,eft,a newt in its terrestrial stage of development
+37244,egalitarian equalitarian,a person who believes in the equality of all people
+37245,egalitarianism equalitarianism,the doctrine of the equality of mankind and the desirability of political and economic and social equality
+37246,egality egalite,social and political equality; "egality represents an extreme leveling of society"
+37247,egg,animal reproductive body consisting of an ovum or embryo together with nutritive and protective envelopes; especially the thin-shelled reproductive body laid by e.g. female birds
+37248,egg eggs,oval reproductive body of a fowl (especially a hen) used as food
+37249,egg-and-dart egg-and-anchor egg-and-tongue,a decorative molding; a series of egg-shaped figures alternating with another shape
+37250,egg_cream,made of milk and flavored syrup with soda water
+37251,egg_foo_yong egg_fu_yung,omelet containing onions and celery and chopped meat or fish
+37252,egg_noodle,narrow strip of pasta dough made with eggs
+37253,egg_roll spring_roll,minced vegetables and meat wrapped in a pancake and fried
+37254,egg_timer,a sandglass that runs for three minutes; used to time the boiling of eggs
+37255,egg_white white albumen ovalbumin,the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water; "she separated the whites from the yolks of several eggs"
+37256,egg_yolk yolk,the yellow spherical part of an egg that is surrounded by the albumen
+37257,eggar egger,moth having nonfunctional mouthparts as adults; larvae feed on tree foliage and spin egg-shaped cocoons
+37258,eggbeater eggwhisk,a mixer for beating eggs or whipping cream
+37259,eggcup egg_cup,dishware consisting of a small cup for serving a boiled egg
+37260,eggdrop_soup,made by stirring beaten eggs into a simmering broth
+37261,egghead,an intellectual; a very studious and academic person; "in spite of her love of reading she denied being an egghead"
+37262,eggnog,a punch made of sweetened milk or cream mixed with eggs and usually alcoholic liquor
+37263,eggplant aubergine brinjal eggplant_bush garden_egg mad_apple Solanum_melongena,hairy upright herb native to southeastern Asia but widely cultivated for its large glossy edible fruit commonly used as a vegetable
+37264,eggplant aubergine mad_apple,egg-shaped vegetable having a shiny skin typically dark purple but occasionally white or yellow
+37265,eggs_Benedict,toasted English muffin topped with ham and a poached egg (or an oyster) and hollandaise sauce
+37266,eggshake,a milkshake with egg in it
+37267,ego,(psychoanalysis) the conscious mind
+37268,ego egotism self-importance,an inflated feeling of pride in your superiority to others
+37269,ego_ideal,(psychoanalysis) the part of the ego that contains an ideal of personal excellence toward which a person strives
+37270,egocentric egoist,a self-centered person with little regard for others
+37271,egoism,(ethics) the theory that the pursuit of your own welfare in the basis of morality
+37272,egoism egocentrism self-interest self-concern self-centeredness,concern for your own interests and welfare
+37273,egomania,an intense and irresistible love for yourself and concern for your own needs
+37274,egomaniac,an abnormally egotistical person
+37275,egotism self-importance swelled_head,an exaggerated opinion of your own importance
+37276,egotist egoist swellhead,a conceited and self-centered person
+37277,egress egression emergence,the act of coming (or going) out; becoming apparent
+37278,egress emersion,(astronomy) the reappearance of a celestial body after an eclipse
+37279,egret,any of various usually white herons having long plumes during breeding season
+37280,eicosapentaenoic_acid,an omega-3 fatty acid with 20 carbon atoms; found in fish (especially tuna and bluefish)
+37281,eider eider_duck,duck of the northern hemisphere much valued for the fine soft down of the females
+37282,eiderdown,down of the eider duck
+37283,eiderdown duvet continental_quilt,a soft quilt usually filled with the down of the eider
+37284,eidos,(anthropology) the distinctive expression of the cognitive or intellectual character of a culture or a social group
+37285,eigenvalue eigenvalue_of_a_matrix eigenvalue_of_a_square_matrix characteristic_root_of_a_square_matrix,(mathematics) any number such that a given square matrix minus that number times the identity matrix has a zero determinant
+37286,eight 8 VIII eighter eighter_from_Decatur octad ogdoad octonary octet,the cardinal number that is the sum of seven and one
+37287,eight-spot eight,one of four playing cards in a deck with eight pips on the face
+37288,eight_ball,a black pool ball bearing the number 8; should be the last to go in certain pool games
+37289,eighteen 18 XVIII,the cardinal number that is the sum of seventeen and one
+37290,eighteenth,position 18 in a countable series of things
+37291,eighth,position eight in a countable series of things
+37292,eighth_note quaver,a musical note having the time value of an eighth of a whole note
+37293,eighties 1880s,the decade from 1880 to 1889
+37294,eighties 1980s,the decade from 1980 to 1989
+37295,eighties mid-eighties,the time of life between 80 and 90
+37296,eightieth,position 80 in a countable series of things
+37297,eightpence,a coin worth eight pennies
+37298,eightpenny_nail,a nail 2.5 inches long
+37299,eightsome,a Scottish reel for eight dancers
+37300,eighty 80 LXXX fourscore,the cardinal number that is the product of ten and eight
+37301,einsteinium Es E atomic_number_99,a radioactive transuranic element produced by bombarding plutonium with neutrons
+37302,eisegesis,personal interpretation of a text (especially of the Bible) using your own ideas
+37303,eisteddfod,any of several annual Welsh festivals involving artistic competitions (especially in singing)
+37304,eitchen_midden midden kitchen_midden,(archeology) a mound of domestic refuse containing shells and animal bones marking the site of a prehistoric settlement
+37305,ejaculation,the discharge of semen in males
+37306,ejaculation interjection,an abrupt emphatic exclamation expressing emotion
+37307,ejaculator,a man who ejaculates semen
+37308,ejaculator,a speaker who utters a sudden exclamation
+37309,ejaculatory_duct,a part of the seminal duct formed by the duct from the seminal vesicle and the vas deferens; passes through the prostate gland
+37310,ejection exclusion expulsion riddance,the act of forcing out someone or something; "the ejection of troublemakers by the police"; "the child's expulsion from school"
+37311,ejection_seat ejector_seat capsule,a pilot's seat in an airplane that can be forcibly ejected in the case of an emergency; then the pilot descends by parachute
+37312,elaborateness elaboration intricacy involution,marked by elaborately complex detail
+37313,elaboration working_out,developing in intricate and painstaking detail
+37314,elaidic_acid,a monounsaturated fatty acid that has the same structure as oleic acid except that it is a trans fatty acid; the major trans fatty acid in margarine and fried foods
+37315,elan,enthusiastic and assured vigor and liveliness; "a performance of great elan and sophistication"
+37316,eland,either of two large African antelopes of the genus Taurotragus having short spirally twisted horns in both sexes
+37317,elapid elapid_snake,any of numerous venomous fanged snakes of warmer parts of both hemispheres
+37318,elapsed_time,the time that elapses while some event is occurring
+37319,elasmobranch selachian,any of numerous fishes of the class Chondrichthyes characterized by a cartilaginous skeleton and placoid scales: sharks; rays; skates
+37320,elastance electrical_elastance,the reciprocal of capacitance
+37321,elastance_unit,the reciprocal of capacitance
+37322,elastase,a pancreatic enzyme that catalyzes the hydrolysis of elastin
+37323,elastic,a fabric made of yarns containing an elastic material
+37324,elastic_bandage,a bandage containing stretchable material that can apply local pressure
+37325,elastic_device,any flexible device that will return to its original shape when stretched
+37326,elastic_energy elastic_potential_energy,potential energy that is stored when a body is deformed (as in a coiled spring)
+37327,elastic_tissue,connective tissue consisting chiefly of elastic fibers found in the dermis of the skin and in the walls of veins and arteries and in some tendons and ligaments
+37328,elasticity snap,the tendency of a body to return to its original shape after it has been stretched or compressed; "the waistband had lost its snap"
+37329,elasticity_of_shear,the elasticity of a body that has been pulled out of shape by a shearing force
+37330,elastin,a fibrous scleroprotein found in elastic tissues such as the walls of arteries
+37331,elastomer,any of various elastic materials that resemble rubber (resumes its original shape when a deforming force is removed)
+37332,elastosis,breakdown of elastic tissue (as the loss of elasticity in the skin of elderly people that results from degeneration of connective tissue)
+37333,elaterid_beetle elater elaterid,any of various widely distributed beetles
+37334,elation,an exhilarating psychological state of pride and optimism; an absence of depression
+37335,elation high_spirits lightness,a feeling of joy and pride
+37336,elbow,a length of pipe with a sharp bend in it
+37337,elbow,a sharp bend in a road or river
+37338,elbow,the part of a sleeve that covers the elbow joint; "his coat had patches over the elbows"
+37339,elbow,the joint of a mammal or bird that corresponds to the human elbow
+37340,elbow elbow_joint human_elbow cubitus cubital_joint articulatio_cubiti,hinge joint between the forearm and upper arm and the corresponding joint in the forelimb of a quadruped
+37341,elbow_pad,protective garment consisting of a pad worn over the elbow by football and hockey players
+37342,elbowing,jostling with the elbows; "elbowing is a foul in basketball"
+37343,elder,any of various church officers
+37344,elder elderberry_bush,any of numerous shrubs or small trees of temperate and subtropical northern hemisphere having white flowers and berrylike fruit
+37345,elder senior,a person who is older than you are
+37346,elder_statesman,any influential person whose advice is highly respected
+37347,elder_statesman,an elderly statesman whose advice is sought be government leaders
+37348,elderberry,berrylike fruit of an elder used for e.g. wines and jellies
+37349,eldership,the office of elder
+37350,eldest_hand elder_hand,the card player on the dealer's left
+37351,elecampane Inula_helenium,tall coarse Eurasian herb having daisylike yellow flowers with narrow petals whose rhizomatous roots are used medicinally
+37352,elected_official,official who won the office in a free election
+37353,election,the status or fact of being elected; "they celebrated his election"
+37354,election,the predestination of some individuals as objects of divine mercy (especially as conceived by Calvinists)
+37355,election,a vote to select the winner of a position or political office; "the results of the election will be announced tonight"
+37356,election,the act of selecting someone or something; the exercise of deliberate choice; "her election of medicine as a profession"
+37357,election_commission,a commission delegated to supervise an election
+37358,election_fraud,misrepresentation or alteration of the true results of an election
+37359,electioneering bell_ringing canvassing,persuasion of voters in a political campaign
+37360,elective_course elective,a course that the student can select from among alternatives
+37361,electoral_college,the body of electors who formally elect the United States president and vice president
+37362,electorate,the body of enfranchised citizens; those qualified to vote
+37363,electric electric_automobile electric_car,a car that is powered by electricity
+37364,electric-discharge_lamp gas-discharge_lamp,an electric lamp in which the light comes from an electric discharge between two electrodes in a glass tube
+37365,electric_bell,a bell activated by the magnetic effect of an electric current
+37366,electric_bill,a bill for money owed for electricity used
+37367,electric_blanket,a blanket containing and electric heating element that can be controlled to the desired temperature by a rheostat
+37368,electric_burn,a burn caused by heat produced by an electric current
+37369,electric_catfish Malopterurus_electricus,freshwater catfish of the Nile and tropical central Africa having an electric organ
+37370,electric_chair chair death_chair hot_seat,an instrument of execution by electrocution; resembles an ordinary seat for one person; "the murderer was sentenced to die in the chair"
+37371,electric_clock,a clock using a small electric motor
+37372,electric_dipole electric_doublet,a dipole with equal and opposite electric charges
+37373,electric_dipole_moment,the dipole moment in an electric dipole
+37374,electric_drill,a rotating power drill powered by an electric motor
+37375,electric_eel Electrophorus_electric,eel-shaped freshwater fish of South America having electric organs in its body
+37376,electric_fan blower,a fan run by an electric motor
+37377,electric_field,a field of force surrounding a charged particle
+37378,electric_frying_pan,a frying pan heated by electricity
+37379,electric_furnace,any furnace in which the heat is provided by an electric current
+37380,electric_guitar,a guitar whose sound is amplified by electrical means
+37381,electric_hammer,a hammer driven by electric motor
+37382,electric_heater electric_fire,a small electric space heater
+37383,electric_lamp,a lamp powered by electricity
+37384,electric_locomotive,a locomotive that is powered by an electric motor
+37385,electric_main,a main that distributes electricity
+37386,electric_meter power_meter,a meter for measuring the amount of electric power used
+37387,electric_mixer,a food mixer powered by an electric motor
+37388,electric_motor,a motor that converts electricity to mechanical work
+37389,electric_organ electronic_organ Hammond_organ organ,(music) an electronic simulation of a pipe organ
+37390,electric_potential potential potential_difference potential_drop voltage,the difference in electrical charge between two points in a circuit expressed in volts
+37391,electric_range,a kitchen range in which the heat for cooking is provided by electric power
+37392,electric_ray crampfish numbfish torpedo,any sluggish bottom-dwelling ray of the order Torpediniformes having a rounded body and electric organs on each side of the head capable of emitting strong electric discharges
+37393,electric_refrigerator fridge,a refrigerator in which the coolant is pumped around by an electric motor
+37394,electric_resistance electrical_resistance impedance resistance resistivity ohmic_resistance,a material's opposition to the flow of electric current; measured in ohms
+37395,electric_shock,trauma caused by the passage of electric current through the body (as from contact with high voltage lines or being struck by lightning); usually involves burns and abnormal heart rhythm and unconsciousness
+37396,electric_shock,the use of electricity to administer punishment or torture; "they used cattle prods to administer electric shocks"
+37397,electric_shock electrical_shock shock,a reflex response to the passage of electric current through the body; "subjects received a small electric shock when they made the wrong response"; "electricians get accustomed to occasional shocks"
+37398,electric_socket,a socket into which a lightbulb can be inserted
+37399,electric_toothbrush,a toothbrush with an electric motor in the handle that vibrates the head of the brush
+37400,electric_typewriter,a typewriter powered by an electric motor
+37401,electrical_cable,a cable that provides an electrical connection for telephone or television or power stations
+37402,electrical_conduction,the passage of electricity through a conductor
+37403,electrical_contact,contact that allows current to pass from one conductor to another
+37404,electrical_converter,converter that converts alternating current into direct current or vice versa
+37405,electrical_device,a device that produces or is powered by electricity
+37406,electrical_discharge,a discharge of electricity
+37407,electrical_disturbance,electrical signals produced by unwanted sources (atmospherics or receiver noise or unwanted transmitters)
+37408,electrical_engineer,a person trained in practical applications of the theory of electricity
+37409,electrical_engineering EE,the branch of engineering science that studies the uses of electricity and the equipment for power generation and distribution and the control of machines and communication
+37410,electrical_line_of_force,a line of force in an electrical field
+37411,electrical_phenomenon,a physical phenomenon involving electricity
+37412,electrical_power electric_power wattage,the product of voltage and current
+37413,electrical_system,equipment in a motor vehicle that provides electricity to start the engine and ignite the fuel and operate the lights and windshield wiper and heater and air conditioner and radio
+37414,electrical_system electrical_plant,utility that provides electricity
+37415,electrical_work,the craft of an electrician
+37416,electrician lineman linesman,a person who installs or repairs electrical or telephone lines
+37417,electricity,a physical phenomenon associated with stationary or moving electrons and protons
+37418,electricity,keen and shared excitement; "the stage crackled with electricity whenever she was on it"
+37419,electricity electrical_energy power,energy made available by the flow of electric charge through a conductor; "they built a car that runs on electricity"; "The power went oout around midnight"
+37420,electrification,the activity of thrilling or markedly exciting some person or group
+37421,electrification,the act of providing electricity; "the electrification of rural Tennessee"
+37422,electro-acoustic_transducer,a transducer that converts electrical to acoustic energy or vice versa
+37423,electrocardiogram cardiogram EKG ECG,a graphical recording of the cardiac cycle produced by an electrocardiograph
+37424,electrocautery,application of a needle heated by an electric current to destroy tissue (as to remove warts)
+37425,electrochemistry,branch of chemistry that deals with the chemical action of electricity and the production of electricity by chemical reactions
+37426,electroconvulsive_therapy electroshock electroshock_therapy ECT,the administration of a strong electric current that passes through the brain to induce convulsions and coma
+37427,electrocution,killing by electric shock
+37428,electrocution burning,execution by electricity
+37429,electrocutioner,an executioner who uses electricity to kill the condemned person
+37430,electrode,a conductor used to make electrical contact with some part of a circuit
+37431,electrodeposition,the deposition of a substance on an electrode by the action of electricity (especially by electrolysis)
+37432,electrodynamometer,measuring instrument that uses the interaction of the magnetic fields of two coils to measure current or voltage or power
+37433,electroencephalogram encephalogram EEG,a graphical record of electrical activity of the brain; produced by an electroencephalograph
+37434,electroencephalograph,medical instrument that records electric currents generated by the brain
+37435,electrograph,an apparatus for the electrical transmission of pictures
+37436,electrograph,electrical device used for etching by electrolytic means
+37437,electrologist,someone skilled in the use of electricity to remove moles or warts or hair roots
+37438,electrolysis,(chemistry) a chemical decomposition reaction produced by passing an electric current through a solution containing ions
+37439,electrolysis,removing superfluous or unwanted hair by passing an electric current through the hair root
+37440,electrolyte,a solution that conducts electricity; "the proper amount and distribution of electrolytes in the body is essential for health"
+37441,electrolyte_balance,an equilibrium between the amounts of electrolytes (as calcium and sodium and potassium) that is essential for normal health and functioning
+37442,electrolytic electrolytic_capacitor electrolytic_condenser,a fixed capacitor consisting of two electrodes separated by an electrolyte
+37443,electrolytic_cell,a cell containing an electrolyte in which an applied voltage causes a reaction to occur that would not occur otherwise (such as the breakdown of water into hydrogen and oxygen)
+37444,electromagnet,a temporary magnet made by coiling wire around an iron core; when current flows in the coil the iron becomes a magnet
+37445,electromagnetic_delay_line,a delay line based on the time of propagation of electromagnetic waves
+37446,electromagnetic_interaction,an interaction between charged elementary particles that is intermediate in strength between the strong and weak interactions; mediated by photons
+37447,electromagnetic_intrusion,the deliberate insertion of electromagnetic energy into transmission paths with the objective of confusing or deceiving operators
+37448,electromagnetic_radiation electromagnetic_wave nonparticulate_radiation,radiation consisting of waves of energy associated with electric and magnetic fields resulting from the acceleration of an electric charge
+37449,electromagnetic_spectrum,the entire frequency range of electromagnetic waves
+37450,electromagnetic_unit emu,any of various systems of units for measuring electricity and magnetism
+37451,electromagnetism,magnetism produced by an electric current; "electromagnetism was discovered when it was observed that a copper wire carrying an electric current can magnetize pieces of iron or steel near it"
+37452,electromagnetism electromagnetics,the branch of physics concerned with electromagnetic phenomena
+37453,electromechanical_device,a mechanical device that is operated by electricity
+37454,electrometer,meter to measure electrostatic voltage differences; draws no current from the source
+37455,electromotive_series electromotive_force_series electrochemical_series,a serial arrangement of metallic elements or ions according to their electrode potentials determined under specified conditions; the order shows the tendency of one metal to reduce the ions of any other metal below it in the series
+37456,electromyogram EMG,a graphical record of electric currents associated with muscle contractions
+37457,electromyograph,a medical instrument that records the electrical waves associated with the activity of skeletal muscles
+37458,electromyography,diagnosis of neuromuscular disorders with the use of an electromyograph
+37459,electron negatron,an elementary particle with negative charge
+37460,electron_accelerator,collider that consists of an accelerator that collides electrons and positrons
+37461,electron_gun,the electrode that is the source of electrons in a cathode-ray tube or electron microscope; consists of a cathode that emits a stream of electrons and the electrostatic or electromagnetic apparatus that focuses it
+37462,electron_microscope,a microscope that is similar in purpose to a light microscope but achieves much greater resolving power by using a parallel beam of electrons to illuminate the object instead of a beam of light
+37463,electron_microscopy,microscopy with the use of electron microscopes
+37464,electron_multiplier,a vacuum tube that amplifies a flow of electrons
+37465,electron_optics,the branch of electronics that deals with beams of electrons and their focusing and deflection by magnetic fields
+37466,electron_shell,a grouping of electrons surrounding the nucleus of an atom; "the chemical properties of an atom are determined by the outermost electron shell"
+37467,electron_spin_resonance ESR electron_paramagnetic_resonance,microwave spectroscopy in which there is resonant absorption of radiation by a paramagnet
+37468,electron_volt eV,a unit of energy equal to the work done by an electron accelerated through a potential difference of 1 volt
+37469,electronegativity negativity,(chemistry) the tendency of an atom or radical to attract electrons in the formation of an ionic bond
+37470,electronic_balance,a balance that generates a current proportional to the displacement of the pan
+37471,electronic_communication,communication by computer
+37472,electronic_converter,(telecommunication) converter for converting a signal from one frequency to another
+37473,electronic_counter-countermeasures ECCM,electronic warfare undertaken to insure effective friendly use of the electromagnetic spectrum in spite of the enemy's use of electronic warfare
+37474,electronic_countermeasures ECM,electronic warfare undertaken to prevent or reduce an enemy's effective use of the electromagnetic spectrum
+37475,electronic_data_processing EDP,automatic data processing by electronic means without the use of tabulating cards or punched tapes
+37476,electronic_database on-line_database computer_database electronic_information_service,(computer science) a database that can be accessed by computers
+37477,electronic_deception,the deliberate use of electromagnetic energy in a manner intended to convey misleading information
+37478,electronic_device,a device that accomplishes its purpose electronically
+37479,electronic_equipment,equipment that involves the controlled conduction of electrons (especially in a gas or vacuum or semiconductor)
+37480,electronic_fetal_monitor electronic_foetal_monitor fetal_monitor foetal_monitor,an electronic monitor that monitors fetal heartbeat and the mother's uterine contractions during childbirth
+37481,electronic_instrument electronic_musical_instrument,a musical instrument that generates sounds electronically
+37482,electronic_mail e-mail email,(computer science) a system of world-wide electronic communication in which a computer user can compose a message at one terminal that can be regenerated at the recipient's terminal when the recipient logs in; "you cannot send packages by electronic mail"
+37483,electronic_reconnaissance,the detection and identification and evaluation and location of foreign electromagnetic radiations (other than radioactive)
+37484,electronic_signal,a signal generated by electronic means
+37485,electronic_surveillance,surveillance by electronic means (e.g. television)
+37486,electronic_text,text that is in a form that computer can store or display on a computer screen
+37487,electronic_voltmeter,a voltmeter whose sensitivity is increased by amplification
+37488,electronic_warfare EW,military action involving the use of electromagnetic energy to determine or exploit or reduce or prevent hostile use of the electromagnetic spectrum
+37489,electronic_warfare-support_measures ESM,electronic warfare undertaken under direct control of an operational commander to locate sources of radiated electromagnetic energy for the purpose of immediate threat recognition
+37490,electronics,the branch of physics that deals with the emission and effects of electrons and with the use of electronic devices
+37491,electronics_company,a company that makes and sells electronic instruments
+37492,electronics_industry,the manufacturers of electronic products considered collectively
+37493,electronics_intelligence ELINT,intelligence derived from electromagnetic radiations from foreign sources (other than radioactive sources)
+37494,electrophoresis cataphoresis dielectrolysis ionophoresis,the motion of charged particles in a colloid under the influence of an electric field; particles with a positive charge go to the cathode and negative to the anode
+37495,electrophorus,a simple electrostatic generator that generates repeated charges of static electricity
+37496,electroplate,any artifact that has been plated with a thin coat of metal by electrolysis
+37497,electroplater,a plater who uses electrolysis
+37498,electroretinogram,a graphical recording of the electrical activity of the retina that results when light is flashed into the eye
+37499,electroscope,measuring instrument that detects electric charge; two gold leaves diverge owing to repulsion of charges with like sign
+37500,electrosleep,unconsciousness brought about by the passage of a low voltage electric current through the brain
+37501,electrostatic_charge,the electric charge at rest on the surface of an insulated body (which establishes and adjacent electrostatic field)
+37502,electrostatic_field,electric field associated with static electric charges
+37503,electrostatic_generator electrostatic_machine Wimshurst_machine Van_de_Graaff_generator,electrical device that produces a high voltage by building up a charge of static electricity
+37504,electrostatic_precipitation,a process that removes suspended dust particles from a gas by applying a high voltage electrostatic charge to the particles and collecting them on charged plates
+37505,electrostatic_printer,a printer that uses an electric charge to deposit toner on paper
+37506,electrostatic_unit,any of various units of electricity based on forces of interaction between electric charges
+37507,electrostatics,the branch of physics that deals with static electricity
+37508,electrosurgery,surgery performed with electrical devices (as in electrocautery)
+37509,electrotherapist,someone who specializes in the treatment of disease by electricity
+37510,electrotherapy galvanism electric_healing electrical_healing,the therapeutic application of electricity to the body (as in the treatment of various forms of paralysis)
+37511,electrum,an alloy of gold and silver
+37512,elegance,a quality of neatness and ingenious simplicity in the solution of a problem (especially in science or mathematics); "the simplicity and elegance of his invention"
+37513,elegance,a refined quality of gracefulness and good taste; "she conveys an aura of elegance and gentility"
+37514,elegant_Habenaria Habenaria_elegans,slender inland rein orchid similar to coastal rein orchid but with pale greenish-yellow flowers
+37515,elegant_brodiaea Brodiaea_elegans,brodiaea having an umbel of violet or blue-violet flowers atop a leafless stalk; northern Oregon to southern California
+37516,elegiac_stanza,a quatrain in iambic pentameter with abab rhyme scheme
+37517,elegist,the author of a mournful poem lamenting the dead
+37518,elegy lament,a mournful poem; a lament for the dead
+37519,element,one of four substances thought in ancient and medieval cosmology to constitute the physical universe; "the alchemists believed that there were four elements"
+37520,element,the situation in which you are happiest and most effective; "in your element"
+37521,element,a straight line that generates a cylinder or cone
+37522,element,the most favorable environment for a plant or animal; "water is the element of fishes"
+37523,element_of_a_cone,a straight line joining the apex and a point on the base
+37524,element_of_a_cylinder,a straight line running the length of the cylinder
+37525,elementary_education,education in elementary subjects (reading and writing and arithmetic) provided to young students at a grade school
+37526,elementary_geometry parabolic_geometry Euclidean_geometry,(mathematics) geometry based on Euclid's axioms
+37527,elementary_particle fundamental_particle,(physics) a particle that is less complex than an atom; regarded as constituents of all matter
+37528,elements,violent or severe weather (viewed as caused by the action of the four elements); "they felt the full fury of the elements"
+37529,elemi gum_elemi,fragrant resin obtain from trees of the family Burseraceae and used as incense
+37530,eleostearic_acid elaeostearic_acid,a crystalline unsaturated fatty acid
+37531,elephant,the symbol of the Republican Party; introduced in cartoons by Thomas Nast in 1874
+37532,elephant,five-toed pachyderm
+37533,elephant's-foot,any plant of the genus Elephantopus having heads of blue or purple flowers; America
+37534,elephant's-foot tortoise_plant Hottentot_bread_vine Hottentot's_bread_vine Dioscorea_elephantipes,South African vine having a massive rootstock covered with deeply fissured bark
+37535,elephant_bird aepyornis,huge (to 9 ft.) extinct flightless bird of Madagascar
+37536,elephant_seal sea_elephant,either of two large northern Atlantic earless seals having snouts like trunks
+37537,elephant_tree Bursera_microphylla,small tree or shrub of the southwestern United States having a spicy odor and odd-pinnate leaves and small clusters of white flowers
+37538,elephantiasis,hypertrophy of certain body parts (usually legs and scrotum); the end state of the disease filariasis
+37539,elephantiasis_neuromatosa,hypertrophy of a limb
+37540,elephantiasis_scroti chyloderma,swelling of the scrotum resulting from chronic lymphatic obstruction
+37541,elevated_railway elevated_railroad elevated el overhead_railway,a railway that is powered by electricity and that runs on a track that is raised above the street level
+37542,elevation,distance of something above a reference point (such as sea level); "there was snow at the higher elevations"
+37543,elevation,(ballet) the height of a dancer's leap or jump; "a dancer of exceptional elevation"
+37544,elevation,drawing of an exterior of a structure
+37545,elevation EL altitude ALT,angular distance above the horizon (especially of a celestial object)
+37546,elevation lift raising,the event of something being raised upward; "an elevation of the temperature in the afternoon"; "a raising of the land resulting from volcanic activity"
+37547,elevator,the airfoil on the tailplane of an aircraft that makes it ascend or descend
+37548,elevator lift,lifting device consisting of a platform or cage that is raised and lowered mechanically in a vertical shaft in order to move people from one floor to another in a building
+37549,elevator_girl,a girl employed to operate an elevator
+37550,elevator_man elevator_boy liftman,a man employed to operate an elevator; "in England they call an elevator man a liftman"
+37551,elevator_operator,an operator of an elevator
+37552,elevator_shaft,a vertical shaft in a building to permit the passage of an elevator from floor to floor
+37553,eleven 11 XI,the cardinal number that is the sum of ten and one
+37554,eleven-plus 11-plus,(formerly in Britain) an examination taken by 11 and 12 year old students to select suitable candidates for grammar school
+37555,eleventh,position 11 in a countable series of things
+37556,eleventh_hour last_minute,the latest possible moment; "money became available at the eleventh hour"; "at the last minute the government changed the rules"
+37557,elf hob gremlin pixie pixy brownie imp,(folklore) fairies that are somewhat mischievous
+37558,elf_cup,apothecium of a fungus of the family Pezizaceae
+37559,eligibility,the quality or state of being eligible; "eligibility of a candidate for office"; "eligibility for a loan"
+37560,elimination,the act of removing an unknown mathematical quantity by combining equations
+37561,elimination evacuation excretion excreting voiding,the bodily process of discharging waste matter
+37562,elimination liquidation,the murder of a competitor
+37563,elimination reasoning_by_elimination,analysis of a problem into alternative possibilities followed by the systematic rejection of unacceptable alternatives
+37564,elimination riddance,the act of removing or getting rid of something
+37565,elimination_reaction,a chemical reaction in which a molecule decomposes to two different molecules
+37566,elimination_tournament,a tournament in which losers are eliminated in successive rounds
+37567,eliminator,an agent that eliminates something
+37568,elision,omission of a sound between two words (usually a vowel and the end of one word or the beginning of the next)
+37569,elite elite_group,a group or class of persons enjoying superior intellectual or social or economic status
+37570,elitism,the attitude that society should be governed by an elite group of individuals
+37571,elitist,someone who believes in rule by an elite group
+37572,elixir,a sweet flavored liquid (usually containing a small amount of alcohol) used in compounding medicines to be taken by mouth in order to mask an unpleasant taste
+37573,elixir,a substance believed to cure all ills
+37574,elixir_of_life,a hypothetical substance believed to maintain life indefinitely; once sought by alchemists
+37575,elk moose Alces_alces,large northern deer with enormous flattened antlers in the male; called `elk' in Europe and `moose' in North America
+37576,ell,an extension at the end and at right angles to the main building
+37577,ellipse oval,a closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it; "the sums of the distances from the foci to any point on an ellipse is constant"
+37578,ellipsis eclipsis,omission or suppression of parts of words or sentences
+37579,ellipsoid,a surface whose plane sections are all ellipses or circles; "the Earth is an ellipsoid"
+37580,elliptic_geometry Riemannian_geometry,(mathematics) a non-Euclidean geometry that regards space as like a sphere and a line as like a great circle; "Bernhard Riemann pioneered elliptic geometry"
+37581,elliptic_leaf,a simple leaf shaped like an ellipse
+37582,elm elm_tree,any of various trees of the genus Ulmus: important timber or shade trees
+37583,elm elmwood,hard tough wood of an elm tree; used for e.g. implements and furniture
+37584,elocution,an expert manner of speaking involving control of voice and gesture
+37585,elocutionist,a public speaker trained in voice production and gesture and delivery
+37586,elongation,the quality of being elongated
+37587,elongation,the act of lengthening something
+37588,elongation extension,an addition to the length of something
+37589,elopement,the act of running away with a lover (usually to get married)
+37590,eloquence fluency smoothness,powerful and effective language; "his eloquence attracted a large congregation"; "fluency in spoken and written English is essential"; "his oily smoothness concealed his guilt from the police"
+37591,elsholtzia,any of various aromatic herbs of the genus Elsholtzia having blue or purple flowers in one-sided spikes
+37592,eluate,a liquid solution that results from elution
+37593,elucidation,an act of explaining that serves to clear up and cast light on
+37594,elusiveness,the quality of being difficult to grasp or pin down; "the author's elusiveness may at times be construed as evasiveness"
+37595,elution,the process of extracting one material from another by washing with a solvent to remove adsorbed material from an adsorbent (as in washing of loaded ion-exchange resins to remove captured ions); used to obtain uranium ions
+37596,elver,young eel; may be sauteed or batter-fried
+37597,elver,young eel
+37598,elves,an acronym for emissions of light and very low frequency perturbations due to electromagnetic pulse sources; extremely bright extremely short (less than a msec) electrical flashes forming a huge ring (up to 400 km diameter) in the ionosphere
+37599,em em_quad mutton_quad,a quad with a square body; "since `em quad' is hard to distinguish from `en quad', printers sometimes called it a `mutton quad'"
+37600,em pica_em pica,a linear unit (1/6 inch) used in printing
+37601,emanation,something that is emitted or radiated (as a gas or an odor or a light, etc.)
+37602,emanation rise procession,(theology) the origination of the Holy Spirit at Pentecost; "the emanation of the Holy Spirit"; "the rising of the Holy Ghost"; "the doctrine of the procession of the Holy Spirit from the Father and the Son"
+37603,emancipation,freeing someone from the control of another; especially a parent's relinquishing authority and control over a minor child
+37604,emancipator manumitter,someone who frees others from bondage; "Lincoln is known as the Great Emancipator"
+37605,emarginate_leaf,a leaf having a notch at the apex
+37606,emasculation,loss of power and masculinity
+37607,embalmer,a mortician who treats corpses with preservatives
+37608,embalmment,preservation (of a dead body) by treating with balsams and drugs and other chemicals
+37609,embankment,a long artificial mound of stone or earth; built to hold back water or to support a road or as protection
+37610,embargo trade_embargo trade_stoppage,a government order imposing a trade barrier
+37611,embarrassment,the state of being embarrassed (usually by some financial inadequacy); "he is currently suffering financial embarrassments"
+37612,embarrassment,the shame you feel when your inadequacy or guilt is made public
+37613,embarrassment,some event that causes someone to be embarrassed; "the outcome of the vote was an embarrassment for the liberals"
+37614,embassy,an ambassador and his entourage collectively
+37615,embassy,a diplomatic building where ambassadors live or work
+37616,embellishment,a superfluous ornament
+37617,embellishment embroidery,elaboration of an interpretation by the use of decorative (sometimes fictitious) detail; "the mystery has been heightened by many embellishments in subsequent retellings"
+37618,ember coal,a hot fragment of wood or coal that is left from a fire and is glowing or smoldering
+37619,embezzlement peculation defalcation misapplication misappropriation,the fraudulent appropriation of funds or property entrusted to your care but actually owned by someone else
+37620,embezzler defalcator peculator,someone who violates a trust by taking (money) for his own use
+37621,embitterment,the state of being embittered; "the embitterment that resulted from the loss of his job never left him"
+37622,emblem,special design or visual object representing a quality, type, group, etc.
+37623,emblem allegory,a visible symbol representing an abstract idea
+37624,embodiment,giving concrete form to an abstract concept
+37625,embodiment incarnation avatar,a new personification of a familiar idea; "the embodiment of hope"; "the incarnation of evil"; "the very avatar of cunning"
+37626,embolectomy,surgical removal of an embolus (usually from an artery)
+37627,embolism,occlusion of a blood vessel by an embolus (a loose clot or air bubble or other particle)
+37628,embolism intercalation,an insertion into a calendar
+37629,embolus,an abnormal particle (e.g. an air bubble or part of a clot) circulating in the blood
+37630,embrace,the state of taking in or encircling; "an island in the embrace of the sea"
+37631,embrace bosom,a close affectionate and protective acceptance; "his willing embrace of new ideas"; "in the bosom of the family"
+37632,embrace embracing embracement,the act of clasping another person in the arms (as in greeting or affection)
+37633,embroiderer,someone who ornaments with needlework
+37634,embroideress,a woman embroiderer
+37635,embroidery fancywork,decorative needlework
+37636,embryo,(botany) a minute rudimentary plant contained within a seed or an archegonium
+37637,embryo conceptus fertilized_egg,an animal organism in the early stages of growth and differentiation that in higher forms merge into fetal stages but in lower forms terminate in commencement of larval life
+37638,embryologist,a physician who specializes in embryology
+37639,embryology,the branch of biology that studies the formation and early development of living organisms
+37640,embryonal_carcinoma,malignant neoplasm of the testis
+37641,embryonal_rhabdomyosarcoma embryonal_rhabdosarcoma,form of rhabdomyosarcoma occurring mainly in infants and children
+37642,embryonic_cell formative_cell,a cell of an embryo
+37643,embryonic_stem-cell_research,biological research on stem cells derived from embryos and on their use in medicine
+37644,embryonic_tissue,tissue in an embryo
+37645,emendation,a correction by emending; a correction resulting from critical editing
+37646,emerald,a green transparent form of beryl; highly valued as a gemstone
+37647,emerald,a transparent piece of emerald that has been cut and polished and is valued as a precious gem
+37648,emerald,the green color of an emerald
+37649,emerald_shiner Notropis_atherinoides,small blunt-nosed fish of Great Lakes and Mississippi valley with a greenish luster
+37650,emergence egress issue,the becoming visible; "not a day's difference between the emergence of the andrenas and the opening of the willow catkins"
+37651,emergence emersion,the act of emerging
+37652,emergence outgrowth growth,the gradual beginning or coming forth; "figurines presage the emergence of sculpture in Greece"
+37653,emergency,a state in which martial law applies; "the governor declared a state of emergency"
+37654,emergency exigency pinch,a sudden unforeseen crisis (usually involving danger) that requires immediate action; "he never knew what to do in an emergency"
+37655,emergency_medicine,the branch of medicine concerned with the prompt diagnosis and treatment of injuries or trauma or sudden illness
+37656,emergency_procedure,(medicine) a procedure adopted to meet an emergency (especially a medical emergency)
+37657,emergency_room ER,a room in a hospital or clinic staffed and equipped to provide emergency care to persons requiring immediate medical treatment
+37658,emergent_evolution,the appearance of entirely new properties at certain critical stages in the course of evolution
+37659,emeritus,a professor or minister who is retired from assigned duties
+37660,emery,a hard grey-black mineral consisting of corundum and either hematite or magnetite; used as an abrasive (especially as a coating on paper)
+37661,emery_cloth,cloth covered with powdered emery
+37662,emery_paper sandpaper,stiff paper coated with powdered emery or sand
+37663,emery_stone emery_rock,a mixture of emery dust and a binder; can be molded into grindstones
+37664,emesis_basin,a basin used by bedridden patients for vomiting
+37665,emetic vomit vomitive nauseant,a medicine that induces nausea and vomiting
+37666,emigrant emigre emigree outgoer,someone who leaves one country to settle in another
+37667,emigration out-migration expatriation,migration from a place (especially migration from your native country in order to settle in another)
+37668,eminence distinction preeminence note,high status importance owing to marked superiority; "a scholar of great eminence"
+37669,eminence_grise,(French) a person who exercises power or influence in certain areas without holding an official position; "the President's wife is an eminence grise in matters of education"
+37670,eminent_domain,the right of the state to take private property for public use; the Fifth Amendment that was added to the Constitution of the United States requires that just compensation be made
+37671,emir amir emeer ameer,an independent ruler or chieftain (especially in Africa or Arabia)
+37672,emirate,the domain controlled by an emir
+37673,emirate,the office of an emir
+37674,emissary envoy,someone sent on a mission to represent the interests of someone else
+37675,emissary_vein vena_emissaria,one of several connecting veins in the scalp and head that drain blood from sinuses in the dura mater to veins outside the skull
+37676,emission,the release of electrons from parent atoms
+37677,emission,the occurrence of a flow of water (as from a pipe)
+37678,emission emanation,the act of emitting; causing to flow forth
+37679,emission_spectrum,spectrum of electromagnetic radiation emitted by a self-luminous source
+37680,emitter,the electrode in a transistor where electrons originate
+37681,emmenagogue,any agent that promotes menstrual discharge
+37682,emmer starch_wheat two-grain_spelt Triticum_dicoccum,hard red wheat grown especially in Russia and Germany; in United States as stock feed
+37683,emmetropia,(ophthalmology) the normal refractive condition of the eye in which there is clear focus of light on the retina
+37684,emolument,compensation received by virtue of holding an office or having employment (usually in the form of wages or fees); "a clause in the U.S. constitution prevents sitting legislators from receiving emoluments from their own votes"
+37685,emoticon,a representation of a facial expression (as a smile or frown) created by typing a sequence of characters in sending email; ":-( and :-) are emoticons"
+37686,emotion,any strong feeling
+37687,emotional_arousal,the arousal of strong emotions and emotional behavior
+37688,emotional_person,a person subject to strong states of emotion
+37689,emotional_state spirit,the state of a person's emotions (especially with regard to pleasure or dejection); "his emotional state depended on her opinion"; "he was in good spirits"; "his spirit rose"
+37690,emotionality emotionalism,emotional nature or quality
+37691,emotionlessness impassivity impassiveness phlegm indifference stolidity unemotionality,apathy demonstrated by an absence of emotional reactions
+37692,empathy,understanding and entering into another's feelings
+37693,emperor,the male ruler of an empire
+37694,emperor,red table grape of California
+37695,emperor emperor_moth Saturnia_pavonia,large moth of temperate forests of Eurasia having heavily scaled transparent wings
+37696,emperor_butterfly emperor,large richly colored butterfly
+37697,emperor_penguin Aptenodytes_forsteri,the largest penguin; an Antarctic penguin
+37698,emphasis,special and significant stress by means of position or repetition e.g.
+37699,emphasis accent,special importance or significance; "the red light gave the central figure increased emphasis"; "the room was decorated in shades of grey with distinctive red accents"
+37700,emphasizing accenting accentuation,the act of giving special importance or significance to something
+37701,emphysema pulmonary_emphysema,an abnormal condition of the lungs marked by decreased respiratory function; associated with smoking or chronic bronchitis or old age
+37702,empire,a monarchy with an emperor as head of state
+37703,empire,a group of countries under a single authority; "the British created a great empire"
+37704,empire imperium,the domain ruled by an emperor or empress; the region over which imperial dominion is exercised
+37705,empirical_formula,a chemical formula showing the ratio of elements in a compound rather than the total number of atoms
+37706,empirical_research,an empirical search for knowledge
+37707,empiricism,the application of empirical methods in any art or science
+37708,empiricism empiricist_philosophy sensationalism,(philosophy) the doctrine that knowledge derives from experience
+37709,empiricist,a philosopher who subscribes to empiricism
+37710,emplacement,military installation consisting of a prepared position for siting a weapon
+37711,employable,a person who is qualified and ready to work
+37712,employee,a worker who is hired to perform a job
+37713,employee-owned_enterprise employee-owned_business,a commercial enterprise owned by the people who work for it
+37714,employee_ownership,ownership of a business by the people who work for it
+37715,employee_savings_plan,a plan that allows employees to contribute to an investment pool managed the employer
+37716,employee_stock_ownership_plan ESOP,a program under which employees regularly accumulate shares and may ultimately assume control of the company
+37717,employee_turnover turnover_rate turnover,the ratio of the number of workers that had to be replaced in a given time period to the average number of workers
+37718,employer,a person or firm that employs workers
+37719,employment employ,the state of being employed or having a job; "they are looking for employment"; "he was in the employ of the city"
+37720,employment engagement,the act of giving someone a job
+37721,employment work,the occupation for which you are paid; "he is looking for employment"; "a lot of people are out of work"
+37722,employment_agency employment_office,an agency that finds people to fill particular jobs or finds jobs for unemployed people
+37723,employment_agent,someone who runs an employment agency
+37724,employment_contract employment_agreement,contract between employer and employee
+37725,empress,a woman emperor or the wife of an emperor
+37726,emptiness,the state of containing nothing
+37727,emptiness,having an empty stomach
+37728,empty,a container that has been emptied; "return all empties to the store"
+37729,empty_nester,a parent whose children have grown up and left home
+37730,emptying voidance evacuation,the act of removing the contents of something
+37731,empyema,a collection of pus in a body cavity (especially in the lung cavity)
+37732,emu Dromaius_novaehollandiae Emu_novaehollandiae,large Australian flightless bird similar to the ostrich but smaller
+37733,emulation,ambition to equal or excel
+37734,emulation,(computer science) technique of one machine obtaining the same results as another
+37735,emulation,effort to equal or surpass another
+37736,emulsifier,a surface-active agent that promotes the formation of an emulsion
+37737,emulsion,(chemistry) a colloid in which both phases are liquids; "an oil-in-water emulsion"
+37738,emulsion photographic_emulsion,a light-sensitive coating on paper or film; consists of fine grains of silver bromide suspended in a gelatin
+37739,en nut,half the width of an em
+37740,en_passant,(chess) a chess pawn that is moved two squares can be captured by an opponent's pawn commanding the square that was passed
+37741,enabling_act enabling_clause,a provision in a law that confers on appropriate officials the power to implement or enforce the law
+37742,enabling_legislation,legislation that gives appropriate officials the authority to implement or enforce the law
+37743,enactment passage,the passing of a law by a legislative body
+37744,enalapril Vasotec,an ACE inhibitor (trade name Vasotec) that blocks the formation of angiotensin in the kidney and so results in vasodilation; administered after heart attacks
+37745,enallage,a substitution of part of speech or gender or number or tense etc. (e.g., editorial `we' for `I')
+37746,enamel,a colored glassy compound (opaque or partially opaque) that is fused to the surface of metal or glass or pottery for decoration or protection
+37747,enamel,a paint that dries to a hard glossy finish
+37748,enamel,any smooth glossy coating that resembles ceramic glaze
+37749,enamel tooth_enamel,hard white substance covering the crown of a tooth
+37750,enamelware,cooking utensil of enameled iron
+37751,enamine,an amine containing the double bond linkage -C=C-N-
+37752,enanthem enanthema,eruption on a mucous membrane (as the inside of the mouth) occurring as a symptom of a disease
+37753,enantiomorph enantiomer,either one of a pair of compounds (crystals or molecules) that are mirror images on each other but are not identical
+37754,enantiomorphism mirror-image_relation,the relation of opposition between crystals or molecules that are reflections of one another
+37755,enate matrikin matrilineal_kin matrisib matrilineal_sib,one related on the mother's side
+37756,encainide Enkaid,antiarrhythmic drug (trade name Enkaid) used to treat life-threatening arrhythmias but increases the risk of sudden death in heart attack patients
+37757,encapsulation,the condition of being enclosed (as in a capsule); "the encapsulation of tendons in membranous sheaths"
+37758,encapsulation,the process of enclosing (as in a capsule)
+37759,encasement incasement,the act of enclosing something in a case
+37760,encaustic,a paint consisting of pigment mixed with melted beeswax; it is fixed with heat after application
+37761,encephalartos,any of numerous cycads of the genus Encephalartos having stout cylindrical trunks and a terminal crown of long often spiny pinnate leaves
+37762,encephalitis cephalitis phrenitis,inflammation of the brain usually caused by a virus; symptoms include headache and neck pain and drowsiness and nausea and fever (`phrenitis' is no longer in scientific use)
+37763,encephalocele,protrusion of brain tissue through a congenital fissure in the skull
+37764,encephalogram pneumoencephalogram,an X ray of the brain made by replacing spinal fluid with a gas (usually oxygen) to improve contrast
+37765,encephalography,roentgenography of the brain after spinal fluid has been replaced by a gas (usually oxygen); produces an encephalogram
+37766,encephalomyelitis,inflammation of the brain and spinal cord
+37767,enchanter,a sorcerer or magician
+37768,enchanter's_nightshade,any of several erect perennial rhizomatous herbs of the genus Circaea having white flowers that open at dawn; northern hemisphere
+37769,enchantment bewitchment,a magical spell
+37770,enchantment spell trance,a psychological state induced by (or as if induced by) a magical incantation
+37771,enchantress temptress siren Delilah femme_fatale,a woman who is considered to be dangerously seductive
+37772,enchantress witch,a female sorcerer or magician
+37773,enchilada,tortilla with meat filling baked in tomato sauce seasoned with chili
+37774,enchondroma,benign slow-growing tumor of cartilaginous cells at the ends of tubular bones (especially in the hands and feet)
+37775,enclave,an enclosed territory that is culturally distinct from the foreign territory that surrounds it
+37776,enclosure,a structure consisting of an area that has been enclosed for some purpose
+37777,enclosure enclosing envelopment inclosure,the act of enclosing something inside something else
+37778,enclosure inclosure,something (usually a supporting document) that is enclosed in an envelope with a covering letter
+37779,enclosure natural_enclosure,a naturally enclosed space
+37780,encoding encryption,the activity of converting data or information into code
+37781,encolure,the mane of a horse
+37782,encomium eulogy panegyric paean pean,a formal expression of praise
+37783,encompassment,including entirely
+37784,encopresis,involuntary defecation not attributable to physical defects or illness
+37785,encore,an extra or repeated performance; usually given in response to audience demand
+37786,encounter coming_upon,a casual meeting with a person or thing
+37787,encounter_group,a meeting of people to develop mutual understanding by freely expressing emotions
+37788,encouragement,the feeling of being encouraged
+37789,encouragement,the expression of approval and support
+37790,encumbrance incumbrance,a charge against property (as a lien or mortgage)
+37791,encyclical encyclical_letter,a letter from the pope sent to all Roman Catholic bishops throughout the world
+37792,encyclopedia cyclopedia encyclopaedia cyclopaedia,a reference work (often in several volumes) containing articles on various topics (often arranged in alphabetical order) dealing with the entire range of human knowledge or with some particular specialty
+37793,encyclopedist encyclopaedist,a person who compiles information for encyclopedias
+37794,end,(football) the person who plays at one end of the line of scrimmage; "the end managed to hold onto the pass"
+37795,end,one of two places from which people are communicating to each other; "the phone rang at the other end"; "both ends wrote at the same time"
+37796,end,the surface at either extremity of a three-dimensional object; "one end of the box was marked `This side up'"
+37797,end,a boundary marking the extremities of something; "the end of town"
+37798,end,a final part or section; "we have given it at the end of the section since it involves the calculus"; "Start at the beginning and go on until you come to the end"
+37799,end,the part you are expected to play; "he held up his end"
+37800,end,(American football) a position on the line of scrimmage; "no one wanted to play end"
+37801,end destruction death,a final state; "he came to a bad end"; "the so-called glorious experiment came to an inglorious end"
+37802,end ending,the point in time at which something ends; "the end of the year"; "the ending of warranty period"
+37803,end last,the final stage or concluding parts of an event or occurrence; "the end was exciting"; "I had to miss the last of the movie"
+37804,end remainder remnant oddment,a piece of cloth that is left over after the rest has been used or sold
+37805,end terminal,either extremity of something that has length; "the end of the pier"; "she knotted the end of the thread"; "they rode to the end of the line"; "the terminals of the anterior arches of the fornix"
+37806,end-all,the ultimate goal; "human beings are not the end-all of evolution"
+37807,end-plate endplate motor_end_plate,the flattened end of a motor neuron that transmits neural impulses to a muscle
+37808,end_man,a man at one end of a row of people
+37809,end_man corner_man,a man at one end of line of performers in a minstrel show; carries on humorous dialogue with the interlocutor
+37810,end_organ,a specialized structure at the peripheral end of some motor or sensory nerve fibers
+37811,end_point endpoint termination terminus,a place where something ends or is complete
+37812,end_product output,final product; the things produced
+37813,end_run sweep,(American football) an attempt to advance the ball by running around the end of the line
+37814,end_user,the ultimate user for which something is intended
+37815,endameba,any ameba of the genus Endamoeba
+37816,endangered_species,a species whose numbers are so small that the species is at risk of extinction
+37817,endarterectomy,surgical removal of the inner lining of an artery that is clogged with atherosclerosis
+37818,endarteritis,inflammation of the inner lining of an artery
+37819,endearment,the act of showing affection
+37820,endemic,a plant that is native to a certain limited area; "it is an endemic found only this island"
+37821,endemic endemic_disease,a disease that is constantly present to a greater or lesser degree in people of a certain class or in people living in a particular location
+37822,endgame end_game,the final stages of an extended process of negotiation; "the diplomatic endgame"
+37823,endgame end_game,the final stages of a chess game after most of the pieces have been removed from the board
+37824,ending conclusion finish,event whose occurrence ends something; "his death marked the ending of an era"; "when these final episodes are broadcast it will be the finish of the show"
+37825,ending termination,the end of a word (a suffix or inflectional ending or final morpheme); "I don't like words that have -ism as an ending"
+37826,endive witloof Cichorium_endivia,widely cultivated herb with leaves valued as salad green; either curly serrated leaves or broad flat ones that are usually blanched
+37827,endlessness,the property of being (or seeming to be) without end
+37828,endocarditis,inflammation of the endocardium and heart valves
+37829,endocardium,the membrane that lines the cavities of the heart and forms part of the heart valves
+37830,endocervicitis,inflammation of the mucous lining of the uterine cervix
+37831,endocranium,membrane lining the inside of the skull
+37832,endocrine_gland endocrine ductless_gland,any of the glands of the endocrine system that secrete hormones directly into the bloodstream
+37833,endocrine_system,the system of glands that produce endocrine secretions that help to control bodily metabolic activity
+37834,endocrinologist,physician who specializes in the diagnosis and treatment of conditions affecting the endocrine system
+37835,endocrinology,the branch of medicine dealing with the endocrine glands and their secretions
+37836,endoderm entoderm endoblast entoblast hypoblast,the inner germ layer that develops into the lining of the digestive and respiratory systems
+37837,endodontics endodontia,the branch of dentistry dealing with diseases of the dental pulp
+37838,endodontist,a dentist specializing in diseases of the dental pulp and nerve
+37839,endoergic_reaction,a nuclear reaction occurring with absorption of energy
+37840,endogamy intermarriage inmarriage,marriage within one's own tribe or group as required by custom or law
+37841,endogenous_depression,a state of depression for which there is no apparent precipitating cause
+37842,endogeny,a geological phenomenon below the surface of the earth
+37843,endolymph,the bodily fluid that fills the membranous labyrinth of the inner ear
+37844,endometrial_carcinoma endometrial_cancer,cancer of the uterine lining
+37845,endometriosis adenomyosis,the presence of endometrium elsewhere than in the lining of the uterus; causes premenstrual pain and dysmenorrhea
+37846,endometrium,(pregnancy) the mucous membrane that lines the uterus; thickens under hormonal control and (if pregnancy does not occur) is shed in menstruation; if pregnancy occurs it is shed along with the placenta at parturition
+37847,endomorph,a heavy person with a soft and rounded body
+37848,endomorphy pyknic_type,round, fat, and heavy
+37849,endoneurium,delicate connective tissue around individual nerve fibers in nerve
+37850,endonuclease,a nuclease that cleaves nucleic acids at interior bonds and so produces fragments of various sizes
+37851,endoparasite entoparasite entozoan entozoon endozoan,any of various parasites that live in the internal organs of animals (especially intestinal worms)
+37852,endoplasm,the inner portion of the cytoplasm of a cell
+37853,endorphin,a neurochemical occurring naturally in the brain and having analgesic properties
+37854,endorsement indorsement,a signature that validates something; "the cashier would not cash the check without an endorsement"
+37855,endorsement indorsement,the act of endorsing; "a star athlete can make a lot of money from endorsements"
+37856,endorsement indorsement blurb,a promotional statement (as found on the dust jackets of books); "the author got all his friends to write blurbs for his book"
+37857,endorser indorser,a person who transfers his ownership interest in something by signing a check or negotiable security
+37858,endoscope,a long slender medical instrument for examining the interior of a bodily organ or performing minor surgery
+37859,endoscopy,visual examination of the interior of a hollow body organ by use of an endoscope
+37860,endoskeleton,the internal skeleton; bony and cartilaginous structure (especially of vertebrates)
+37861,endosperm,nutritive tissue surrounding the embryo within seeds of flowering plants
+37862,endospore,a small asexual spore that develops inside the cell of some bacteria and algae
+37863,endospore-forming_bacteria,a group of true bacteria
+37864,endosteum,vascular membrane that lines the inner surface of long bones
+37865,endothelium,an epithelium of mesoblastic origin; a thin layer of flattened cells that lines the inside of some body cavities
+37866,endothermic_reaction,a chemical reaction accompanied by the absorption of heat
+37867,endotoxin,a toxin that is confined inside the microorganisms and is released only when the microorganisms are broken down or die
+37868,endotracheal_tube,a catheter that is inserted into the trachea through the mouth or nose in order to maintain an open air passage or to deliver oxygen or to permit the suctioning of mucus or to prevent aspiration of the stomach contents
+37869,endowment,the act of endowing with a permanent source of income; "his generous endowment of the laboratory came just in the nick of time"
+37870,endowment endowment_fund,the capital that provides income for an institution
+37871,endowment gift talent natural_endowment,natural abilities or qualities
+37872,endowment_insurance,life insurance for a specified amount which is payable to the insured person at the expiration of a certain period of time or to a designated beneficiary immediately upon the death of the insured
+37873,endurance,the power to withstand hardship or stress; "the marathon tests a runner's endurance"
+37874,endurance_riding,riding for long hours over long distances
+37875,enema clyster,an injection of a liquid through the anus to stimulate evacuation; sometimes used for diagnostic purposes
+37876,enemy,an opposing military force; "the enemy attacked at dawn"
+37877,enemy,any hostile group of people; "he viewed lawyers as the real enemy"
+37878,enemy foe foeman opposition,an armed adversary (especially a member of an opposing military force); "a soldier must be prepared to kill his enemies"
+37879,energid protoplast,a biological unit consisting of a nucleus and the body of cytoplasm with which it interacts
+37880,energizer energiser,a device that supplies electrical energy
+37881,energizer energiser vitalizer vitaliser animator,someone who imparts energy and vitality and spirit to other people
+37882,energizing activating activation,the activity of causing to have energy and be active
+37883,energy,any source of usable power; "the DOE is responsible for maintaining the energy policy"
+37884,energy free_energy,(physics) a thermodynamic quantity equivalent to the capacity of a physical system to do work; the units of energy are joules or ergs; "energy can take a wide variety of forms"
+37885,energy muscularity vigor vigour vim,an imaginative lively style (especially style of writing); "his writing conveys great energy"; "a remarkable muscularity of style"
+37886,energy push get-up-and-go,enterprising or ambitious drive; "Europeans often laugh at American energy"
+37887,energy vigor vigour zip,forceful exertion; "he plays tennis with great energy"; "he's full of zip"
+37888,energy vim vitality,a healthy capacity for vigorous activity; "jogging works off my excess energy"; "he seemed full of vim and vigor"
+37889,energy_level energy_state,a definite stable energy that a physical system can have; used especially of the state of electrons in atoms or molecules; "according to quantum theory only certain energy levels are possible"
+37890,enervation,lack of vitality; "an enervation of mind greater than any fatigue"
+37891,enervation,surgical removal of a nerve
+37892,enfant_terrible,a person whose unconventional behavior embarrasses others
+37893,enfeoffment,under the feudal system, the deed by which a person was given land in exchange for a pledge of service
+37894,enfilade enfilade_fire,gunfire directed along the length rather than the breadth of a formation
+37895,enflurane Ethrane,a nonflammable liquid (trade name Ethrane) used as an inhalation general anesthetic
+37896,enforcement,the act of enforcing; ensuring observance of or obedience to
+37897,enfranchisement,freedom from political subjugation or servitude
+37898,engagement booking,employment for performers or performing groups that lasts for a limited period of time; "the play had bookings throughout the summer"
+37899,engagement mesh meshing interlocking,contact by fitting together; "the engagement of the clutch"; "the meshing of gears"
+37900,engagement participation involvement involution,the act of sharing in the activities of a group; "the teacher tried to increase his students' engagement in class activities"
+37901,engagement_ring,a ring given and worn as a sign of betrothal
+37902,engelmannia,common erect hairy perennial of plains and prairies of southern and central United States having flowers that resemble sunflowers
+37903,engine,something used to achieve a purpose; "an engine of change"
+37904,engine,an instrument or machine that is used in warfare, such as a battering ram, catapult, artillery piece, etc.; "medieval engines of war"
+37905,engine,motor that converts thermal energy to mechanical work
+37906,engine_block cylinder_block block,a metal casting containing the cylinders and cooling ducts of an engine; "the engine had to be replaced because the block was cracked"
+37907,engine_failure,engine does not run
+37908,engineer applied_scientist technologist,a person who uses scientific knowledge to solve practical problems
+37909,engineer locomotive_engineer railroad_engineer engine_driver,the operator of a railway locomotive
+37910,engineer's_chain,a unit of length (100 ft)
+37911,engineering,the practical application of technical and scientific knowledge to commerce or industry
+37912,engineering engine_room,a room (as on a ship) in which the engine is located
+37913,engineering engineering_science applied_science technology,the discipline dealing with the art or science of applying scientific knowledge to practical problems; "he had trouble deciding which branch of engineering to study"
+37914,enginery,machinery consisting of engines collectively
+37915,engorgement,congestion with blood; "engorgement of the breast"
+37916,engorgement,eating ravenously or voraciously to satiation
+37917,engram memory_trace,a postulated biochemical change (presumably in neural tissue) that represents a memory
+37918,engraver,a skilled worker who can inscribe designs or writing onto a surface by carving or etching
+37919,engraver,a printmaker who prints from an engraved printing plate
+37920,engraving,a print made from an engraving
+37921,engraving,a block or plate or other hard surface that has been engraved
+37922,engraving etching,making engraved or etched plates and printing designs from them
+37923,enhancement sweetening,an improvement that makes something more agreeable
+37924,enigma_canon enigmatic_canon enigmatical_canon riddle_canon,a canon in which the entrances of successive parts were indicated by cryptic symbols and devices (popular in the 15th and 16th centuries)
+37925,enjambment enjambement,the continuation of a syntactic unit from one line of verse into the next line without a pause
+37926,enjoyableness,pleasantness resulting from something that can be enjoyed; "the enjoyableness of an afternoon at the beach"
+37927,enjoyer,a person who delights in having or using or experiencing something
+37928,enjoyment,the pleasure felt when having a good time
+37929,enjoyment delectation,act of receiving pleasure from something
+37930,enkephalin,an endorphin having opiate qualities that occurs in the brain and spinal cord and elsewhere
+37931,enlargement,the state of being enlarged
+37932,enlargement blowup magnification,a photographic print that has been enlarged
+37933,enlarger,photographic equipment consisting of an optical projector used to enlarge a photograph
+37934,enlightenment,education that results in understanding and the spread of knowledge
+37935,enlisted_man,a male enlisted person in the armed forces
+37936,enlisted_person,a serviceman who ranks below a commissioned officer
+37937,enlisted_woman,a female enlisted person in the armed forces
+37938,enlistment,the act of enlisting (as in a military service)
+37939,enlistment hitch term_of_enlistment tour_of_duty duty_tour tour,a period of time spent in military service
+37940,ennoblement,the state of being noble
+37941,ennoblement,the act of raising someone to the nobility
+37942,enol,an organic compound that contains a hydroxyl group bonded to a carbon atom which in turn is doubly bonded to another carbon atom
+37943,enologist oenologist fermentologist,a specialist in wine making
+37944,enology oenology,the art of wine making
+37945,enophile oenophile,someone who appreciates wine
+37946,enormity,vastness of size or extent; "in careful usage the noun enormity is not used to express the idea of great size"; "universities recognized the enormity of their task"
+37947,enormity,the quality of extreme wickedness
+37948,enormity,an act of extreme wickedness
+37949,enormousness grandness greatness immenseness immensity sizeableness vastness wideness,unusual largeness in size or extent or number
+37950,enosis,the union of Greece and Cyprus (which is the goal of a group of Greek Cypriots)
+37951,enough sufficiency,an adequate quantity; a quantity that is large enough to achieve a purpose; "enough is as good as a feast"; "there is more than a sufficiency of lawyers in this country"
+37952,enrichment,a gift that significantly increases the recipient's wealth
+37953,enrichment,act of making fuller or more meaningful or rewarding
+37954,enrollee,a person who enrolls in (or is enrolled in) a class or course of study
+37955,ensemble,a group of musicians playing or singing together; "a string ensemble"
+37956,ensemble,a coordinated outfit (set of clothing)
+37957,ensemble supporting_players,a cast other than the principals
+37958,ensemble tout_ensemble,an assemblage of parts or details (as in a work of art) considered as forming a whole
+37959,ensiform_leaf,a sword-shaped leaf; as of iris
+37960,ensign,a person who holds a commissioned rank in the United States Navy or the United States Coast Guard; below lieutenant junior grade
+37961,ensign,colors flown by a ship to show its nationality
+37962,enslavement,the act of making slaves of your captives
+37963,enslavement captivity,the state of being a slave; "So every bondman in his own hand bears the power to cancel his captivity"--Shakespeare
+37964,entablature,(architecture) the structure consisting of the part of a classical temple above the columns between a capital and the roof
+37965,entail,land received by fee tail
+37966,entail,the act of entailing property; the creation of a fee tail from a fee simple
+37967,entasis,a slight convexity in the shaft of a column; compensates for the illusion of concavity that viewers experience when the sides are perfectly straight
+37968,entelechy,(Aristotle) the state of something that is fully realized; actuality as opposed to potentiality
+37969,entellus hanuman Presbytes_entellus Semnopithecus_entellus,langur of southern Asia; regarded as sacred in India
+37970,entente entente_cordiale,an informal alliance between countries
+37971,entente entente_cordiale,a friendly understanding between political powers
+37972,enteric-coated_aspirin,aspirin that is treated to pass through the stomach unaltered and to dissolve in the intestines
+37973,enteric_bacteria enterobacteria enterics entric,rod-shaped Gram-negative bacteria; most occur normally or pathogenically in intestines of humans and other animals
+37974,enteritis,inflammation of the intestine (especially the small intestine); usually characterized by diarrhea
+37975,enterobiasis,an infestation with or a resulting infection caused by the pinworm Enterobius vermicularis; occurs especially in children
+37976,enterokinase,enzyme in the intestinal juice that converts inactive trypsinogen into active trypsin
+37977,enterolith,a calculus occurring in the intestines
+37978,enterolithiasis,the presence of calculi in the intestines
+37979,enteron,the alimentary canal (especially of an embryo or a coelenterate)
+37980,enteropathy,a disease of the intestinal tract
+37981,enteroptosis,an abnormally downward position of the intestines in the abdominal cavity
+37982,enterostenosis,abnormal narrowing of the intestine
+37983,enterostomy enterotomy,surgical operation that creates a permanent opening through the abdominal wall into the intestine
+37984,enterotoxemia,a disease of cattle and sheep that is attributed to toxins absorbed from the intestines
+37985,enterotoxin,a cytotoxin specific for the cells of the intestinal mucosa
+37986,enterovirus,any of a group of picornaviruses that infect the gastrointestinal tract and can spread to other areas (especially the nervous system)
+37987,enterprise,an organization created for business ventures; "a growing enterprise must have a bold leader"
+37988,enterprise endeavor endeavour,a purposeful or industrious undertaking (especially one that requires effort or boldness); "he had doubts about the whole enterprise"
+37989,enterprise enterprisingness initiative go-ahead,readiness to embark on bold new ventures
+37990,enterprise_zone,a city district where development receives special tax advantages
+37991,entertainer,a person who tries to please or amuse
+37992,entertainment amusement,an activity that is diverting and that holds the attention
+37993,entertainment_center,a wall unit containing sound and television systems
+37994,entertainment_deduction,deduction allowed for some (limited) kinds of entertainment for business purposes
+37995,entertainment_industry show_business show_biz,those involved in providing entertainment: radio and television and films and theater
+37996,enthusiasm,a feeling of excitement
+37997,enthusiasm,a lively interest; "enthusiasm for his program is growing"
+37998,enthusiast partisan partizan,an ardent and enthusiastic supporter of some person or activity
+37999,enticement temptation,the act of influencing by exciting hope or desire; "his enticements were shameless"
+38000,entire_leaf,a leaf having a smooth margin without notches or indentations
+38001,entirety entireness integrality totality,the state of being total and complete; "he read the article in its entirety"; "appalled by the totality of the destruction"
+38002,entitlement,right granted by law or contract (especially a right to benefits); "entitlements make up the major part of the federal budget"
+38003,entity,that which is perceived or known or inferred to have its own distinct existence (living or nonliving)
+38004,entomion,the craniometric point at the tip of the angular part of the parietal bone that articulates with the temporal bone
+38005,entomologist bugologist bug-hunter,a zoologist who studies insects
+38006,entomology bugology,the branch of zoology that studies insects
+38007,entomophobia,a morbid fear of insects
+38008,entopic_pregnancy,pregnancy resulting from normal gestation in the uterus
+38009,entoproct,any of various moss-like aquatic animals usually forming branching colonies; each polyp having a both mouth and anus within a closed ring of tentacles
+38010,entr'acte,the interlude between two acts of a play
+38011,entrance entering,a movement into or inward
+38012,entrance entering entry ingress incoming,the act of entering; "she made a grand entrance"
+38013,entrance entranceway entryway entry entree,something that provides access (to get in or get out); "they waited at the entrance to the garden"; "beggars waited just outside the entryway to the cathedral"
+38014,entrance_examination entrance_exam,examination to determine a candidate's preparation for a course of studies
+38015,entrance_fee admission admission_charge admission_fee admission_price price_of_admission entrance_money,the fee charged for admission
+38016,entrancement ravishment,a feeling of delight at being filled with wonder and enchantment
+38017,entrant,someone who enters; "new entrants to the country must go though immigration procedures"
+38018,entrant,one who enters a competition
+38019,entrant,a commodity that enters competition with established merchandise; "a well publicized entrant is the pocket computer"
+38020,entrapment,a defense that claims the defendant would not have broken the law if not tricked into doing it by law enforcement officials
+38021,entreaty prayer appeal,earnest or urgent request; "an entreaty to stop the fighting"; "an appeal for help"; "an appeal to the public to keep calm"
+38022,entrecote,cut of meat taken from between the ribs
+38023,entree,an entrance, especially a theatrical entrance onto a stage or as if onto a stage; "she made a graceful entree into the ballroom"
+38024,entree access accession admission admittance,the right to enter
+38025,entree main_course,the principal dish of a meal
+38026,entrenching_tool trenching_spade,a hand shovel carried by infantrymen for digging trenches
+38027,entrenchment intrenchment,an entrenched fortification; a position protected by trenches
+38028,entrepot transshipment_center,a port where merchandise can be imported and then exported without paying import duties; "Bahrain has been an entrepot of trade between Arabia and India since the second millennium BC"
+38029,entrepreneur enterpriser,someone who organizes a business venture and assumes the risk for it
+38030,entry,an item inserted in a written record
+38031,entry accounting_entry ledger_entry,a written record of a commercial transaction
+38032,enucleation,surgical removal of something without cutting into it; "the enucleation of the tumor"
+38033,enumeration numbering,a numbered list
+38034,enunciation diction,the articulation of speech regarded from the point of view of its intelligibility to the audience
+38035,enuresis urinary_incontinence,inability to control the flow of urine and involuntary urination
+38036,envelope,a curve that is tangent to each of a family of curves
+38037,envelope,a natural covering (as by a fluid); "the spacecraft detected an envelope of gas around the comet"
+38038,envelope,the maximum operating capability of a system (especially an aircraft); "test pilots try to push the envelope"
+38039,envelope,a flat (usually rectangular) container for a letter, thin package, etc.
+38040,envelope,any wrapper or covering
+38041,envelope gasbag,the bag containing the gas in a balloon
+38042,environment,the totality of surrounding conditions; "he longed for the comfortable environment of his living room"
+38043,environment environs surroundings surround,the area in which something exists or lives; "the country--the flat agricultural surround"
+38044,environmental_condition,the state of the environment
+38045,environmentalism,the philosophical doctrine that environment is more important than heredity in determining intellectual growth
+38046,environmentalism,the activity of protecting the environment from pollution or destruction
+38047,environmentalist conservationist,someone who works to protect the environment from destruction or pollution
+38048,environs purlieu,an outer adjacent area of any place
+38049,envoy envoi,a brief stanza concluding certain forms of poetry
+38050,envoy envoy_extraordinary minister_plenipotentiary,a diplomat having less authority than an ambassador
+38051,envy enviousness,a feeling of grudging admiration and desire to have something that is possessed by another
+38052,envy invidia,spite and resentment at seeing the success of another (personified as one of the deadly sins)
+38053,enzyme,any of several complex proteins that are produced by cells and act as catalysts in specific biochemical reactions
+38054,enzyme-linked-immunosorbent_serologic_assay ELISA,an assay that relies on an enzymatic conversion reaction and is used to detect the presence of specific substances (such as enzymes or viruses or antibodies or bacteria)
+38055,enzymologist,a person who is trained in or engaged in enzymology
+38056,enzymology,the branch of biochemistry dealing with the chemical nature and biological activity of enzymes
+38057,eohippus dawn_horse,earliest horse; extinct primitive dog-sized four-toed Eocene animal
+38058,eolith,a crude stone artifact (as a chipped flint); possibly the earliest tools
+38059,eon aeon,the longest division of geological time
+38060,eon aeon,an immeasurably long period of time; "oh, that happened eons ago"
+38061,eon aeon,(Gnosticism) a divine power or nature emanating from the Supreme Being and playing various roles in the operation of the universe
+38062,eoraptor,a theropod dinosaur of the genus Eoraptor
+38063,eosin bromeosin,a red fluorescent dye resulting from the action of bromine on fluorescein; used in cosmetics and as a biological stain for studying cell structures
+38064,eosinopenia,a decrease in the number of eosinophils in the blood
+38065,eosinophil eosinophile,a leukocyte readily stained with eosin
+38066,eosinophilia,a symptom of allergic states; increased eosinophils in the blood
+38067,epacris,any heathlike evergreen shrub of the genus Epacris grown for their showy and crowded spikes of small bell-shaped or tubular flowers
+38068,epanalepsis,repetition after intervening words
+38069,epanaphora anaphora,repetition of a word or phrase at the beginning of successive clauses
+38070,epanodos,recapitulation of the main ideas of a speech (especially in reverse order)
+38071,epanodos,repetition of a group of words in reverse order
+38072,epanorthosis,immediate rephrasing for intensification or justification; "Seems, madam! Nay, it is"
+38073,eparch,a bishop or metropolitan in charge of an eparchy in the Eastern Church
+38074,eparch,the governor or prefect of an eparchy in ancient Greece
+38075,eparchy,a province in ancient Greece
+38076,eparchy exarchate,a diocese of the Eastern Orthodox Church
+38077,epaulet epaulette,adornment consisting of an ornamental cloth pad worn on the shoulder
+38078,epauliere,armor plate that protects the shoulder
+38079,epee,a fencing sword similar to a foil but with a heavier blade
+38080,ependyma,thin epithelial membrane lining the ventricles of the brain and the spinal cord canal
+38081,epenthesis,the insertion of a vowel or consonant into a word to make its pronunciation easier; "the insertion of a vowel in the plural of the word `bush' is epenthesis"
+38082,epergne,a large table centerpiece with branching holders for fruit or sweets or flowers
+38083,ephah epha,an ancient Hebrew unit of dry measure equal to about a bushel
+38084,ephedra joint_fir,jointed and nearly leafless desert shrub having reduced scalelike leaves and reddish fleshy seeds
+38085,ephedrine,white odorless powdered or crystalline alkaloid from plants of the genus Ephedra (especially Ephedra sinica) or made synthetically; used as a bronchodilator to treat bronchitis and asthma
+38086,ephemera,something transitory; lasting a day
+38087,ephemerality ephemeralness fleetingness,the property of lasting for a very short time
+38088,ephemerid ephemeropteran,short-lived insect
+38089,ephemeris,an annual publication containing astronomical tables that give the positions of the celestial bodies throughout the year; "today computers calculate the ephemerides"
+38090,ephemeron ephemeral,anything short-lived, as an insect that lives only for a day in its winged form
+38091,epic_poem heroic_poem epic epos,a long narrative poem telling of a hero's deeds
+38092,epicalyx false_calyx calycle calyculus,a group of bracts simulating a calyx as in a carnation or hibiscus
+38093,epicanthus epicanthic_fold,a vertical fold of skin over the nasal canthus; typical for many east Asian peoples; sometimes occurs in Down's syndrome
+38094,epicardia,the short part of the esophagus extending downward from the diaphragm to the stomach
+38095,epicardium visceral_pericardium,the innermost of the two layers of the pericardium
+38096,epicarp exocarp,outermost layer of the pericarp of fruits as the skin of a peach or grape
+38097,epicenter epicentre,the point on the Earth's surface directly above the focus of an earthquake
+38098,epicondyle,a projection on a bone above a condyle serving for the attachment of muscles and ligaments
+38099,epicondylitis,painful inflammation of the muscles and soft tissues around an epicondyle
+38100,epicranium,the muscle and aponeurosis and skin covering the cranium
+38101,epicure gourmet gastronome bon_vivant epicurean foodie,a person devoted to refined sensuous enjoyment (especially good food and drink)
+38102,epicureanism,a doctrine of hedonism that was defended by several ancient Greek philosophers
+38103,epicurism,the disposition and habits of an epicure
+38104,epicycle,a circle that rolls around (inside or outside) another circle; generates an epicycloid or hypocycloid
+38105,epicyclic_train epicyclic_gear_train,a system of epicyclic gears in which at least one wheel axis itself revolves about another fixed axis
+38106,epicycloid,a line generated by a point on a circle rolling around another circle
+38107,epideictic_oratory,a type of oratory used to eulogize or condemn a person or group of people; "Pericles' funeral oration for Athenians killed in the Peloponnesian War is a famous example of epideictic oratory"
+38108,epidemic,a widespread outbreak of an infectious disease; many people are infected at the same time
+38109,epidemic_disease,any infectious disease that develops and spreads rapidly to many people
+38110,epidemic_pleurodynia epidemic_myalgia myosis diaphragmatic_pleurisy Bornholm_disease,an acute infectious disease occurring in epidemic form and featuring paroxysms of pain (usually in the chest)
+38111,epidemiologist,a medical scientist who studies the transmission and control of epidemic diseases
+38112,epidemiology,the branch of medical science dealing with the transmission and control of disease
+38113,epidendron,any of various orchids of the genus Epidendrum
+38114,epidermal_cell,any of the cells making up the epidermis
+38115,epidermis cuticle,the outer layer of the skin covering the exterior body surface of vertebrates
+38116,epidiascope,an optical projector that gives images of both transparent and opaque objects
+38117,epididymis,a convoluted tubule in each testis; carries sperm to vas deferens
+38118,epididymitis,painful inflammation of the epididymis
+38119,epidural_anesthesia epidural_anaesthesia epidural,regional anesthesia resulting from injection of an anesthetic into the epidural space of the spinal cord; sensation is lost in the abdominal and genital and pelvic areas; used in childbirth and gynecological surgery
+38120,epidural_injection,injection of an anesthetic substance into the epidural space of the spinal cord in order to produce epidural anesthesia
+38121,epigastric_artery arteria_epigastrica,one of three arteries supplying the anterior walls of the abdomen
+38122,epigastric_vein,veins serving the anterior walls of the abdomen
+38123,epigastrium,the region lying on or over the stomach (just below the sternum)
+38124,epigenesis,a geological change in the mineral content of rock after the rock has formed
+38125,epiglottis,a flap of cartilage that covers the windpipe while swallowing
+38126,epiglottitis,inflammation of the epiglottis; characterized by fever and a severe sore throat and difficulty in swallowing
+38127,epigone epigon,an inferior imitator of some distinguished writer, artist, or musician
+38128,epigram quip,a witty saying
+38129,epigraph,a quotation at the beginning of some piece of writing
+38130,epigraph,an engraved inscription
+38131,epigraphy,the study of ancient inscriptions
+38132,epikeratophakia,using a piece of donated corneal tissue to repair the eye of someone who has had a cataract removed; "epikeratophakia gave her a living contact lens"
+38133,epilating_wax,a mixture of resins and waxes to remove cosmetically undesirable hair; mixture is applied hot to the surface and after cooling is pulled away taking the hairs with it
+38134,epilation,loss of hair; the result of removing hair
+38135,epilepsy,a disorder of the central nervous system characterized by loss of consciousness and convulsions
+38136,epileptic,a person who has epilepsy
+38137,epileptic_seizure,convulsions accompanied by impaired consciousness
+38138,epilogue epilog,a short speech (often in verse) addressed directly to the audience by an actor at the end of a play
+38139,epilogue epilog,a short passage added at the end of a literary work; "the epilogue told what eventually happened to the main characters"
+38140,epinephrine epinephrin adrenaline Adrenalin,a catecholamine secreted by the adrenal medulla in response to stress (trade name Adrenalin); stimulates autonomic nerve action
+38141,epiphany,a divine manifestation
+38142,epiphenomenon,a secondary phenomenon that is a by-product of another phenomenon
+38143,epiphora epistrophe,repetition of the ends of two or more successive sentences, verses, etc.
+38144,epiphyllum orchid_cactus,any cactus of the genus Epiphyllum having flattened jointed irregularly branching stems and showy tubular flowers
+38145,epiphysis,the end of a long bone; initially separated from the main bone by a layer of cartilage that eventually ossifies so the parts become fused
+38146,epiplexis,a rhetorical device in which the speaker reproaches the audience in order to incite or convince them
+38147,episcia,any plant of the genus Episcia; usually creeping and stoloniferous and of cascading habit; grown for their colorful foliage and flowers
+38148,episcleral_veins venae_episclerales,small veins in the sclera near the corneal margin; empty into the anterior ciliary veins
+38149,episcleritis,inflammation of the sclera of the eye
+38150,episcopacy episcopate,the collective body of bishops
+38151,episcopate,the term of office of a bishop
+38152,episiotomy,surgical incision of the perineum to enlarge the vagina and so facilitate delivery during childbirth
+38153,episode,a happening that is distinctive in a series of related events
+38154,episode,a brief section of a literary or dramatic work that forms part of a connected series
+38155,episode installment instalment,a part of a broadcast serial
+38156,episodic_memory personal_memory,memory for episodes in your own life
+38157,episome,DNA that is not incorporated into the genome but is replicated together with the genome (especially in bacterial cells)
+38158,epispadias,a congenital abnormality in males in which the urethra is on the upper surface of the penis
+38159,episteme,the body of ideas that determine the knowledge that is intellectually certain at any particular time
+38160,epistemic_logic,the modal logic of knowledge and uncertainty and ignorance
+38161,epistemologist,a specialist in epistemology
+38162,epistemology,the philosophical theory of knowledge
+38163,epistle,a specially long, formal letter
+38164,epitaph,a summary statement of commemoration for a dead person
+38165,epitaph,an inscription on a tombstone or monument in memory of the person buried there
+38166,epitaxy,growing a crystal layer of one mineral on the crystal base of another mineral in such a manner that its crystalline orientation is the same as that of the substrate
+38167,epithalamium,an ode honoring a bride and bridegroom
+38168,epithelial_cell,one of the closely packed cells forming the epithelium
+38169,epithelioma,a malignant tumor of the epithelial tissue
+38170,epithelium epithelial_tissue,membranous tissue covering internal organs and other internal surfaces of the body
+38171,epithet,descriptive word or phrase
+38172,epitome,a brief abstract (as of an article or book)
+38173,epoch,a unit of geological time that is a subdivision of a period and is itself divided into ages
+38174,epoch date_of_reference,(astronomy) an arbitrarily fixed date that is the point in time relative to which information (as coordinates of a celestial body) is recorded
+38175,eponym,the person for whom something is named; "Constantine I is the eponym for Constantinople"
+38176,eponym,the name derived from a person (real or imaginary); "Down's syndrome is an eponym for the English physician John Down"
+38177,eponymy,the derivation of a general name from that of a famous person
+38178,epos,a body of poetry that conveys the traditions of a society by treating some epic theme
+38179,epoxy epoxy_resin epoxy_glue,a thermosetting resin; used chiefly in strong adhesives and coatings and laminates
+38180,epsilon,the 5th letter of the Greek alphabet
+38181,epsilon_toxin Clostridium_perfringens_epsilon_toxin,a bacterial toxin produced by clostridium perfringens; causes intense abdominal cramps and diarrhea that begins 8-22 hours after consumption of foods containing large numbers of these bacteria
+38182,eptatretus,a fossil hagfish of the genus Eptatretus
+38183,equal-area_projection equal-area_map_projection,a map projection in which quadrilaterals formed by meridians and parallels have an area on the map proportional to their area on the globe
+38184,equal_opportunity,the right to equivalent opportunities for employment regardless of race or color or sex or national origin
+38185,equal_protection_of_the_laws,a right guaranteed by the Fourteenth Amendment to the US Constitution and by the due-process clause of the Fifth Amendment
+38186,equal_sign,a sign indicating that the quantities on either side are equal
+38187,equal_temperament,the division of the scale based on an octave that is divided into twelve exactly equal semitones; "equal temperament is the system commonly used in keyboard instruments"
+38188,equality,the quality of being the same in quantity or measure or value or status
+38189,equality equivalence equation par,a state of being essentially equal or equivalent; equally balanced; "on a par with the best"
+38190,equality_before_the_law,the right to equal protection of the laws
+38191,equalization equalisation leveling,the act of making equal or uniform
+38192,equalizer,a score that makes the match even
+38193,equalizer equaliser,electronic equipment that reduces frequency distortion
+38194,equalizing_dividend,a dividend paid to compensate shareholders for losses resulting from a change in the dividend schedule
+38195,equatability,capability of being equated
+38196,equation,a mathematical statement that two expressions are equal
+38197,equation equating,the act of regarding as equal
+38198,equator,a circle dividing a sphere or other surface into two usually equal and symmetrical parts
+38199,equator,an imaginary line around the Earth forming the great circle that is equidistant from the north and south poles; "the equator is the boundary between the northern and southern hemispheres"
+38200,equatorial,a telescope whose mounting has only two axes of motion, one parallel to the Earth's axis and the other one at right angles to it
+38201,equatorial_current,any of the ocean currents that flow westward at the equator
+38202,equerry,an official charged with the care of the horses of princes or nobles
+38203,equerry,a personal attendant of the British royal family
+38204,equestrian_sport,a sport that tests horsemanship
+38205,equidistribution,a flat distribution having equal frequencies of occurrence
+38206,equilateral,a figure whose sides are all equal
+38207,equilateral_triangle equiangular_triangle,a three-sided regular polygon
+38208,equilibration,stabilization by bringing into equilibrium
+38209,equilibrium,a stable situation in which forces cancel one another
+38210,equilibrium labyrinthine_sense vestibular_sense sense_of_balance sense_of_equilibrium,a sensory system located in structures of the inner ear that registers the orientation of the head
+38211,equilibrium_constant,(chemistry) the ratio of concentrations when equilibrium is reached in a reversible reaction (when the rate of the forward reaction equals the rate of the reverse reaction)
+38212,equilibrium_law law_of_chemical_equilibrium,(chemistry) the principle that (at chemical equilibrium) in a reversible reaction the ratio of the rate of the forward reaction to the rate of the reverse reaction is a constant for that reaction
+38213,equine equid,hoofed mammals having slender legs and a flat coat with a narrow mane along the back of the neck
+38214,equine_distemper strangles,an acute bacterial disease of horses characterized by inflammation of the mucous membranes
+38215,equine_encephalitis equine_encephalomyelitis,encephalitis caused by a virus that is transmitted by a mosquito from an infected horse
+38216,equinoctial_point equinox,(astronomy) either of the two celestial points at which the celestial equator intersects the ecliptic
+38217,equinox,either of two times of the year when the sun crosses the plane of the earth's equator and day and night are of equal length
+38218,equipment,an instrumentality needed for an undertaking or to perform a service
+38219,equity,the difference between the market value of a property and the claims held against it
+38220,equity,the ownership interest of shareholders in a corporation
+38221,equivalence,essential equality and interchangeability
+38222,equivalent,a person or thing equal to another in value or measure or force or effect or significance etc; "send two dollars or the equivalent in stamps"
+38223,equivalent equivalent_weight combining_weight eq,the atomic weight of an element that has the same combining capacity as a given weight of another element; the standard is 8 for oxygen
+38224,equivalent-binary-digit_factor,the average number of binary digits needed to express one radix digit in a numeration system that is not binary; on the average a number that can be expressed in N decimal digits takes 3.3N binary digits
+38225,equivocation prevarication evasiveness,intentionally vague or ambiguous
+38226,equivocation tergiversation,falsification by means of vague or ambiguous language
+38227,era epoch,a period marked by distinctive character or reckoned from a fixed point or event
+38228,era geological_era,a major division of geological time; an era is usually divided into two or more periods
+38229,eradication obliteration,the complete destruction of every trace of something
+38230,erasable_programmable_read-only_memory EPROM,(computer science) a read-only memory chip that can be erased by ultraviolet light and programmed again with new data
+38231,eraser,an implement used to erase something
+38232,erasure,a correction made by erasing; "there were many erasures in the typescript"
+38233,erasure,a surface area where something has been erased; "another word had been written over the erasure"
+38234,erbium Er atomic_number_68,a trivalent metallic element of the rare earth group; occurs with yttrium
+38235,erect_bugle blue_bugle Ajuga_genevensis,upright rhizomatous perennial with bright blue flowers; southern Europe
+38236,erectile_dysfunction male_erecticle_dysfunction ED,impotence resulting from a man's inability to have or maintain an erection of his penis
+38237,erectile_organ,an organ containing erectile tissue
+38238,erectile_tissue,vascular tissue capable of filling with blood and becoming rigid
+38239,erecting erection,the act of building or putting up
+38240,erecting_prism,a right-angled optical prism used to turn an inverted image upright
+38241,erection,a structure that has been erected
+38242,erection hard-on,an erect penis
+38243,erectness uprightness,the property of being upright in posture
+38244,eremite,a Christian recluse
+38245,eremitism,monasticism characterized by solitude in which the social dimension of life is sacrificed to the primacy of religious experience
+38246,erethism,an abnormally high degree of irritability or sensitivity to stimulation of an organ or body part
+38247,erg,a cgs unit of work or energy; the work done by a force of one dyne acting over a distance of one centimeter
+38248,ergodicity,an attribute of stochastic systems; generally, a system that tends in probability to a limiting form that is independent of the initial conditions
+38249,ergonovine Ergotrate_Maleate,an alkaloid derived from ergot (trade name Ergotrate Maleate) that is less toxic than ergot; induces muscular contraction of the uterus and is administered after childbirth or abortion
+38250,ergosterol,a plant sterol that is converted into vitamin D by ultraviolet radiation
+38251,ergot,a plant disease caused by the ergot fungus
+38252,ergot Claviceps_purpurea,a fungus that infects various cereal plants forming compact black masses of branching filaments that replace many grains of the plant; source of medicinally important alkaloids and of lysergic acid
+38253,ergotamine,an alkaloid derived from ergot that is less toxic than ergot; causes constriction of blood vessels and is used to treat migraine
+38254,ergotism,poisoning by ingestion of ergot-infected grain products; characterized by thirst and diarrhea and nausea and cramping and vomiting and abnormal cardiac rhythms; in severe cases it can cause seizures and gangrene of the limbs
+38255,ergotropism,an affinity for work
+38256,erica true_heath,any plant of the genus Erica
+38257,eriogonum,any plant of the genus Eriogonum with small clustered flowers
+38258,eristic,the art of logical disputation (especially if specious)
+38259,ermine,the expensive white fur of the ermine
+38260,ermine shorttail_weasel Mustela_erminea,mustelid of northern hemisphere in its white winter coat
+38261,ern erne grey_sea_eagle gray_sea_eagle European_sea_eagle white-tailed_sea_eagle Haliatus_albicilla,bulky greyish-brown eagle with a short wedge-shaped white tail; of Europe and Greenland
+38262,erogenous_zone,any area of the body especially sensitive to sexual stimulation
+38263,erose_leaf,a leaf having a jagged margin as though gnawed
+38264,erosion,condition in which the earth's surface is worn away by the action of water and wind
+38265,erosion,a gradual decline of something; "after the accounting scandal there was an erosion of confidence in the auditors"
+38266,erosion eroding eating_away wearing wearing_away,(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)
+38267,erotic,an erotic person
+38268,eroticism erotism,a state of anticipation of sexuality
+38269,errancy,(Christianity) holding views that disagree with accepted doctrine; especially disagreement with papal infallibility; "he denies the errancy of the Catholic Church"
+38270,errancy,fallibility as indicated by erring or a tendency to err
+38271,errand,a short trip that is taken in the performance of a necessary task or mission
+38272,erroneousness error,inadvertent incorrectness
+38273,error computer_error,(computer science) the occurrence of an incorrect result produced by a computer
+38274,error erroneous_belief,a misconception resulting from incorrect information
+38275,error misplay,(baseball) a failure of a defensive player to make an out when normal play would have sufficed
+38276,error mistake,part of a statement that is not correct; "the book was full of errors"
+38277,error wrongdoing,departure from what is ethically acceptable
+38278,error_correction_code ECC,(telecommunication) a coding system that incorporates extra parity bits in order to detect errors
+38279,ersatz,an artificial or inferior substitute or imitation
+38280,eruditeness erudition learnedness learning scholarship encyclopedism encyclopaedism,profound scholarly knowledge
+38281,eruption,symptom consisting of a breaking out and becoming visible
+38282,eruption,the emergence of a tooth as it breaks through the gum
+38283,eruption eructation extravasation,(of volcanos) pouring out fumes or lava (or a deposit so formed)
+38284,erwinia,rod-shaped motile bacteria that attack plants
+38285,eryngo eringo,any plant of the genus Eryngium
+38286,erysipelas,an acute streptococcal infection characterized by deep-red inflammation of the skin and mucous membranes
+38287,erythema,abnormal redness of the skin resulting from dilation of blood vessels (as in sunburn or inflammation)
+38288,erythema_multiforme,a red rash caused by hypersensitivity to a drug or disease or other allergen
+38289,erythema_nodosum,skin condition characterized by tender red nodules on the shins and legs
+38290,erythema_nodosum_leprosum ENL,an inflammatory complication of leprosy that results in painful skin lesions on the arms and legs and face
+38291,erythrite cobalt_bloom,a reddish mineral consisting of hydrated cobalt arsenate in monoclinic crystalline form and used in coloring glass; usually found in veins bearing cobalt and arsenic
+38292,erythroblast,a nucleated cell in bone marrow from which red blood cells develop
+38293,erythroblastosis,a blood disease characterized by the abnormal presence of erythroblasts in the blood
+38294,erythroblastosis_fetalis,severe anemia in newborn babies; the result of Rh incompatibility between maternal and fetal blood; typically occurs when the child of an Rh-negative mother inherits Rh-positive blood from the father; can be diagnosed before birth by amniocentesis
+38295,erythrocyte_sedimentation_rate ESR sedimentation_rate sed_rate,the rate at which red blood cells settle out in a tube of blood under standardized conditions; a high rate usually indicates the presence of inflammation
+38296,erythroderma,any skin disorder involving abnormal redness
+38297,erythromycin Erythrocin E-Mycin Ethril Ilosone Pediamycin,an antibiotic (trade name Erythrocin or E-Mycin or Ethril or Ilosone or Pediamycin) obtained from the actinomycete Streptomyces erythreus; effective against many Gram-positive bacteria and some Gram-negative
+38298,erythropoiesis,the process of producing red blood cells by the stem cells in the bone marrow
+38299,erythropoietin,a glycoprotein secreted by the kidneys that stimulates the production of red blood cells
+38300,escadrille,a small squadron
+38301,escadrille,an air force squadron typically containing six airplanes (as in France during World War I)
+38302,escalade,an act of scaling by the use of ladders (especially the walls of a fortification)
+38303,escalader,someone who gains access by the use of ladders
+38304,escalation,an increase to counteract a perceived discrepancy; "higher wages caused an escalation of prices"; "there was a gradual escalation of hostilities"
+38305,escalator moving_staircase moving_stairway,a stairway whose steps move continuously on a circulating belt
+38306,escalator_clause escalator,a clause in a contract that provides for an increase or a decrease in wages or prices or benefits etc. depending on certain conditions (as a change in the cost of living index)
+38307,escalope_de_veau_Orloff,lightly sauteed veal cutlets spread with a Soubise sauce and liver paste then sprinkled with grated Parmesan and baked briefly
+38308,escapade lark,any carefree episode
+38309,escape,a plant originally cultivated but now growing wild
+38310,escape,an avoidance of danger or difficulty; "that was a narrow escape"
+38311,escape,a means or way of escaping; "hard work was his escape from worry"; "they installed a second hatch as an escape"; "their escape route"
+38312,escape escapism,an inclination to retreat from unpleasant realities through diversion or fantasy; "romantic novels were her escape from the stress of daily life"; "his alcohol problem was a form of escapism"
+38313,escape flight,the act of escaping physically; "he made his escape from the mental hospital"; "the canary escaped from its cage"; "his flight was an indication of his guilt"
+38314,escape leak leakage outflow,the discharge of a fluid from some container; "they tried to stop the escape of gas from the damaged pipe"; "he had to clean up the leak"
+38315,escape_hatch,hatchway that provides a means of escape in an emergency
+38316,escape_mechanism,a form of behavior that evades unpleasant realities
+38317,escape_velocity,the minimum velocity needed to escape a gravitational field
+38318,escape_wheel,gear that engages a rocking lever
+38319,escapee,someone who escapes
+38320,escapement,mechanical device that regulates movement
+38321,escapist dreamer wishful_thinker,a person who escapes into a world of fantasy
+38322,escapologist escape_expert,an entertainer who is expert in the art of escaping
+38323,escapology,the study of methods of escaping (especially as a form of entertainment)
+38324,escargot snail,edible terrestrial snail usually served in the shell with a sauce of melted butter and garlic
+38325,escarpment escarp scarp protective_embankment,a steep artificial slope in front of a fortification
+38326,escarpment scarp,a long steep slope or cliff at the edge of a plateau or ridge; usually formed by erosion
+38327,eschar,a dry scab formed on the skin following a burn or cauterization of the skin
+38328,eschatologist,a theologian who specializes in eschatology
+38329,eschatology,the branch of theology that is concerned with such final things as death and Last Judgment; Heaven and Hell; the ultimate destiny of humankind
+38330,escheat,a reversion to the state (as the ultimate owner of property) in the absence of legal heirs
+38331,escheat,the property that reverts to the state
+38332,escherichia,a genus of enteric bacteria
+38333,escolar Lepidocybium_flavobrunneum,large snake mackerel with rings like spectacles around its eyes
+38334,escort,an attendant who is employed to accompany someone
+38335,escort accompaniment,the act of accompanying someone or something in order to protect them
+38336,escrow,a written agreement (or property or money) delivered to a third party or put in trust by one party to a contract to be returned after fulfillment of some condition
+38337,escrow_funds,funds held in escrow
+38338,escutcheon,(nautical) a plate on a ship's stern on which the name is inscribed
+38339,escutcheon scutcheon,a shield; especially one displaying a coat of arms
+38340,esker,(geology) a long winding ridge of post glacial gravel and other sediment; deposited by meltwater from glaciers or ice sheets
+38341,esmolol Brevibloc,intravenous beta blocker (trade name Brevibloc) that acts for only a short time; used primarily for cardiac arrhythmias
+38342,esophageal_smear,alimentary tract smear of material obtained from the esophagus
+38343,esophageal_veins oesophageal_veins venae_esophageae,small veins from the esophagus emptying into the brachiocephalic vein or the azygos veins
+38344,esophagitis oesophagitis,inflammation of the esophagus; often caused by gastroesophageal reflux
+38345,esophagogastric_junction oesophagogastric_junction,the junction between the esophagus and the stomach epithelium
+38346,esophagoscope oesophagoscope,an optical instrument for examining the inside of the esophagus
+38347,esophagus oesophagus gorge gullet,the passage between the pharynx and the stomach
+38348,esoterica,secrets known only to an initiated minority
+38349,espadrille,a sandal with a sole made of rope or rubber and a cloth upper part
+38350,espalier,a trellis on which ornamental shrub or fruit tree is trained to grow flat
+38351,espionage,the systematic use of spies to get military or political secrets
+38352,espionage_agent,someone employed to spy on another country or business competitor
+38353,espionage_network,a network of spies
+38354,esplanade,a long stretch of open level ground (paved or grassy) for walking beside the seashore
+38355,espresso,strong black coffee brewed by forcing hot water under pressure through finely ground coffee beans
+38356,espresso_maker,a coffee maker that forces live steam under pressure through dark roasted coffee grounds
+38357,espresso_shop,a cafe where espresso is served
+38358,esprit,liveliness of mind or spirit
+38359,esprit_de_corps morale team_spirit,the spirit of a group that makes the members want the group to succeed
+38360,esprit_de_l'escalier,a witty remark that occurs to you too late
+38361,esquire,(Middle Ages) an attendant and shield bearer to a knight; a candidate for knighthood
+38362,essay,an analytic or interpretive literary composition
+38363,essay,a tentative attempt
+38364,essayist litterateur,a writer of literary works
+38365,essence,any substance possessing to a high degree the predominant properties of a plant or drug or other natural product from which it is extracted
+38366,essential_amino_acid,an amino acid that is required by animals but that they cannot synthesize; must be supplied in the diet
+38367,essential_condition sine_qua_non,a prerequisite
+38368,essential_hypertension hyperpiesia hyperpiesis,persistent and pathological high blood pressure for which no specific cause can be found
+38369,essential_oil volatile_oil,an oil having the odor or flavor of the plant from which it comes; used in perfume and flavorings
+38370,essential_thrombocytopenia,the primary form of thrombocytopenia (rather than a shortage of platelets caused by other conditions such as tuberculosis or chemical suppression of bone marrow etc.)
+38371,essential_tremor,tremor of unknown cause (usually of the hands and head) that develops in older people; often mistaken for Parkinsonism but is not life-threatening and can usually be kept under control
+38372,essentiality essentialness,basic importance
+38373,established_church,the church that is recognized as the official church of a nation
+38374,establishment,any large organization
+38375,establishment,a public or private structure (business or governmental or educational) including buildings and equipment for business or residence
+38376,establishment ecesis,(ecology) the process by which a plant or animal becomes established in a new habitat
+38377,establishment validation,the cognitive process of establishing a valid proof
+38378,establishmentarianism establishmentism,the doctrine of supporting the social or political establishment
+38379,estaminet,a small (and usually shabby) cafe selling wine and beer and coffee
+38380,estate,everything you own; all of your assets (whether real property or personal property) and liabilities
+38381,estate land landed_estate acres demesne,extensive landed property (especially in the country) retained by the owner for his own use; "the family owned a large estate on Long Island"
+38382,estate_of_the_realm estate the_three_estates,a major social class or order of persons regarded collectively as part of the body politic of the country (especially in the United Kingdom) and formerly possessing distinct political rights
+38383,estazolam ProSom,a frequently prescribed sleeping pill (trade name ProSom)
+38384,esteem regard respect,the condition of being honored (esteemed or respected or well regarded); "it is held in esteem"; "a man who has earned high regard"
+38385,ester,organic compound formed by reaction between an acid and an alcohol with elimination of water
+38386,esthete aesthete,one who professes great sensitivity to the beauty of art and nature
+38387,esthetician aesthetician,a worker skilled in giving beauty treatments (manicures and facials etc.)
+38388,esthetician aesthetician,a philosopher who specializes in the nature of beauty
+38389,estimate,a statement indicating the likely cost of some job; "he got an estimate from the car repair shop"
+38390,estimate estimation,the respect with which a person is held; "they had a high estimation of his ability"
+38391,estimate estimation,a judgment of the qualities of something or somebody; "many factors are involved in any estimate of human life"; "in my estimation the boy is innocent"
+38392,estimate estimation approximation idea,an approximate calculation of quantity or degree or worth; "an estimate of what it would cost"; "a rough idea how long it would take"
+38393,estimated_tax,income tax paid periodically on income that is not subject to withholding taxes; based on the taxpayer's predicted tax liability
+38394,estivation aestivation,(zoology) cessation or slowing of activity during the summer; especially slowing of metabolism in some animals during a hot or dry period
+38395,estivation aestivation,(botany) the arrangement of sepals and petals in a flower bud before it opens
+38396,estoppel,a rule of evidence whereby a person is barred from denying the truth of a fact that has already been settled
+38397,estradiol oestradiol,the most powerful female hormone that occurs naturally; synthesized and used to treat estrogen deficiency and breast cancer
+38398,estradiol_patch,a transdermal patch that allows estradiol to be absorbed into the blood stream; used in treating estrogen deficiency and in hormone replacement therapy
+38399,estriol oestriol,a naturally occurring estrogenic hormone; a synthetic form is used to treat estrogen deficiency
+38400,estrogen oestrogen,a general term for female steroid sex hormones that are secreted by the ovary and responsible for typical female sexual characteristics
+38401,estrogen_antagonist tamoxifen,an antagonist for estrogen that is used in the treatment of breast cancer
+38402,estrone oestrone theelin Estronol,a naturally occurring weak estrogenic hormone secreted by the mammalian ovary; synthesized (trade name Estronol) and used to treat estrogen deficiency
+38403,estrus oestrus heat rut,applies to nonhuman mammals: a state or period of heightened sexual arousal and activity
+38404,estuary,the wide part of a river where it nears the sea; fresh and salt water mix
+38405,eta,the 7th letter of the Greek alphabet
+38406,etagere,a piece of furniture with open shelves for displaying small ornaments
+38407,etamine etamin,a soft cotton or worsted fabric with an open mesh; used for curtains or clothing etc.
+38408,etanercept Enbrel,a genetically engineered anti-TNF compound (trade name Enbrel) consisting of receptors that bind TNF; it is injected twice a week in the treatment of rheumatoid arthritis
+38409,etcetera,additional unspecified odds and ends; more of the same; "his report was full of etceteras"
+38410,etcher,someone who etches
+38411,etching,an impression made from an etched plate
+38412,etching,an etched plate made with the use of acid
+38413,eternal_life life_eternal,life without beginning or end
+38414,eternity,a seemingly endless time interval (waiting)
+38415,eternity infinity,time without end
+38416,eternity timelessness timeless_existence,a state of eternal existence believed in some religions to characterize the afterlife
+38417,ethacrynic_acid Edecrin,diuretic (trade name Edecrin) used to treat edema
+38418,ethane C2H6,a colorless odorless alkane gas used as fuel
+38419,ethchlorvynol Placidyl,a mild sedative-hypnotic drug (trade name Placidyl)
+38420,ether,any of a class of organic compounds that have two hydrocarbon groups linked by an oxygen atom
+38421,ether aether,a medium that was once supposed to fill all space and to support the propagation of electromagnetic waves
+38422,ether ethoxyethane divinyl_ether vinyl_ether diethyl_ether ethyl_ether,a colorless volatile highly flammable liquid formerly used as an inhalation anesthetic
+38423,ethernet,a type of network technology for local area networks; coaxial cable carries radio frequency signals between computers at a rate of 10 megabits per second
+38424,ethernet_cable,any of several types of coaxial cable used in ethernets
+38425,ethic ethical_code,a system of principles governing morality and acceptable conduct
+38426,ethic moral_principle value-system value_orientation,the principles of right and wrong that are accepted by an individual or a social group; "the Puritan ethic"; "a person with old-fashioned values"
+38427,ethical_motive ethics morals morality,motivation based on ideas of right and wrong
+38428,ethicism,a doctrine that ethics and ethical ideas are valid and important; "his ethicism often led him to moralize"
+38429,ethicist ethician,a philosopher who specializes in ethics
+38430,ethics moral_philosophy,the philosophical study of moral values and rules
+38431,ethics_committee ethics_panel,a committee appointed to consider ethical issues
+38432,ethmoid ethmoid_bone,one of the eight bones of the cranium; a small bone filled with air spaces that forms part of the eye sockets and the nasal cavity
+38433,ethmoid_sinus ethmoidal_sinus sinus_ethmoidales,a sinus of the meatuses of the nasal cavity (behind the bridge of the nose)
+38434,ethmoidal_artery arteria_ethmoidalis,a branch of the ophthalmic artery supplying structures in and around the nasal capsule
+38435,ethmoidal_vein vena_ethmoidalis,veins that drain the ethmoidal sinuses and empty into the superior ophthalmic vein
+38436,ethnarch,the ruler of a province (as in the Roman Empire and Byzantine Empire) or certain religious rulers with secular authority; "the election of Makarios III to archbishop gave him the status of the ethnarch of Cyprus"
+38437,ethnic,a person who is a member of an ethnic group
+38438,ethnic_cleansing,the mass expulsion and killing of one ethnic or religious group in an area by another ethnic or religious group in that area
+38439,ethnic_group ethnos,people of the same race or nationality who share a distinctive culture
+38440,ethnic_joke,a joke at the expense of some ethnic group
+38441,ethnic_minority,a group that has different national or cultural traditions from the majority of the population
+38442,ethnic_slur,a slur on someone's race or language
+38443,ethnicity,an ethnic quality or affiliation resulting from racial or cultural ties; "ethnicity has a strong influence on community status relations"
+38444,ethnocentrism,belief in the superiority of one's own ethnic group
+38445,ethnographer,an anthropologist who does ethnography
+38446,ethnography descriptive_anthropology,the branch of anthropology that provides scientific description of individual human societies
+38447,ethnologist,an anthropologist who studies ethnology
+38448,ethnology,the branch of anthropology that deals with the division of humankind into races and with their origins and distribution and distinctive characteristics
+38449,ethologist,a zoologist who studies the behavior of animals in their natural habitats
+38450,ethology,the branch of zoology that studies the behavior of animals in their natural habitats
+38451,ethos,(anthropology) the distinctive spirit of a culture or an era; "the Greek ethos"
+38452,ethosuximide Emeside Zarontin,an anticonvulsant drug (trade names Emeside and Zarontin) used to treat petit mal epilepsy
+38453,ethyl ethyl_group ethyl_radical,the univalent hydrocarbon radical C2H5 derived from ethane by the removal of one hydrogen atom
+38454,ethyl_acetate,a fragrant colorless flammable volatile liquid ester made from ethanol and acetic acid; used in flavorings and perfumes and as a solvent for plastics
+38455,ethyl_alcohol ethanol fermentation_alcohol grain_alcohol,the intoxicating agent in fermented and distilled liquors; used pure or denatured as a solvent or in medicines and colognes and cleaning solutions and rocket fuel; proposed as a renewable clean-burning additive to gasoline
+38456,ethyl_chloride,a colorless flammable gas used as a local surface anesthetic
+38457,ethylene ethene,a flammable colorless gaseous alkene; obtained from petroleum and natural gas and used in manufacturing many other chemicals; sometimes used as an anesthetic
+38458,ethylene_glycol glycol ethanediol,a sweet but poisonous syrupy liquid used as an antifreeze and solvent
+38459,ethylenediaminetetraacetic_acid EDTA,a complex molecule used medically to chelate metal ions in cases of lead or heavy metal poisoning
+38460,etiolation,a pale and sickly appearance; "his etiolation signaled years in prison"
+38461,etiolation,the act of weakening by stunting the growth or development of something; "the etiolation of the critical tradition"
+38462,etiolation,(botany) the act of causing a plant to develop without chlorophyll by growing it without exposure to sunlight; "the etiolation of celery"
+38463,etiologist aetiologist,a specialist in the etiology of diseases
+38464,etiology aetiology,the cause of a disease
+38465,etiology aetiology,the philosophical study of causation
+38466,etiquette,rules governing socially acceptable behavior
+38467,etodolac Lodine,a nonsteroidal anti-inflammatory drug (trade name Lodine)
+38468,etude,a short composition for a solo instrument; intended as an exercise or to demonstrate technical virtuosity
+38469,etui,small ornamental ladies' bag for small articles
+38470,etymological_dictionary,a dictionary giving the historical origins of each word
+38471,etymologist,a lexicographer who specializes in etymology
+38472,etymology,a history of a word
+38473,etymology,the study of the sources and development of words
+38474,etymon root,a simple form inferred as the common basis from which related words in several languages can be derived by linguistic processes
+38475,eubacteria eubacterium true_bacteria,a large group of bacteria having rigid cell walls; motile types have flagella
+38476,eucalyptus,wood of any of various eucalyptus trees valued as timber
+38477,eucalyptus eucalypt eucalyptus_tree,a tree of the genus Eucalyptus
+38478,eucalyptus_gum eucalyptus_kino red_gum,reddish-brown dried gummy exudation from any of several trees of the genus Eucalyptus especially Eucalyptus camaldulensis
+38479,eucalyptus_oil,an essential oil obtained from the leaves of eucalypts
+38480,euchre five_hundred,a card game similar to ecarte; each player is dealt 5 cards and the player making trump must take 3 tricks to win a hand
+38481,eudemon eudaemon good_spirit,a benevolent spirit
+38482,eudemonism endaemonism,an ethical system that evaluates actions by reference to personal well-being through a life based on reason
+38483,eudiometer,measuring instrument consisting of a graduated glass tube for measuring volume changes in chemical reactions between gases
+38484,eugenics,the study of methods of improving genetic qualities by selective breeding (especially as applied to human mating)
+38485,euglena,minute single-celled green freshwater organism having a single flagella; often classed as algae
+38486,euglenoid euglenophyte euglenid,marine and freshwater green or colorless flagellate organism
+38487,eukaryote eucaryote,an organism with cells characteristic of all life forms except primitive microorganisms such as bacteria; i.e. an organism with `good' or membrane-bound nuclei in its cells
+38488,eulogist panegyrist,an orator who delivers eulogies or panegyrics
+38489,eulogy eulogium,a formal expression of praise for someone who has died recently
+38490,eunuch castrate,a man who has been castrated and is incapable of reproduction; "eunuchs guarded the harem"
+38491,euphemism,an inoffensive or indirect expression that is substituted for one that is considered offensive or too harsh
+38492,euphonium,a bass horn (brass wind instrument) that is the tenor of the tuba family
+38493,euphorbium gum_eurphorbium,an acrid brown gum resin now used mainly in veterinary medicine
+38494,euphoria euphory,a feeling of great (usually exaggerated) elation
+38495,euphoriant,a psychoactive drug that tends to produce elation and euphoria
+38496,euphuism,any artificially elegant style of language
+38497,euphuism,an elegant style of prose of the Elizabethan period; characterized by balance and antithesis and alliteration and extended similes with and allusions to nature and mythology
+38498,eupnea eupnoea,normal relaxed breathing
+38499,euro,the basic monetary unit of most members of the European Union (introduced in 1999); in 2002 twelve European nations (Germany, France, Belgium, Luxembourg, the Netherlands, Italy, Spain, Portugal, Ireland, Greece, Austria, Finland) adopted the euro as their basic unit of money and abandoned their traditional currencies
+38500,europium Eu atomic_number_63,a bivalent and trivalent metallic element of the rare earth group
+38501,eurypterid,large extinct scorpion-like arthropod considered related to horseshoe crabs
+38502,eurythmy eurhythmy eurythmics eurhythmics,the interpretation in harmonious bodily movements of the rhythm of musical compositions; used to teach musical understanding
+38503,eusporangium,a sporangium that arises from a group of epidermal cells
+38504,eutectic,a mixture of substances having a minimum melting point
+38505,eutectoid_steel,a steel that contains 0.9% carbon (the eutectic point); a carbon steel with 0.9% carbon is pure pearlite
+38506,euthanasia mercy_killing,the act of killing someone painlessly (especially someone suffering from an incurable illness)
+38507,euthenics,the study of methods of improving human well-being and efficient functioning by improving environmental conditions
+38508,eutrophication,excessive nutrients in a lake or other body of water, usually caused by runoff of nutrients (animal waste, fertilizers, sewage) from the land, which causes a dense growth of plant life; the decomposition of the plants depletes the supply of oxygen, leading to the death of animal life; "he argued that the controlling factor in eutrophication is not nitrate but phosphate"
+38509,evacuation,the act of evacuating; leaving a place in an orderly fashion; especially for protection
+38510,evacuee,a person who has been evacuated from a dangerous place
+38511,evaluation rating,act of ascertaining or fixing the value or worth of
+38512,evaluation valuation rating,an appraisal of the value of something; "he set a high valuation on friendship"
+38513,evaluator judge,an authority who is able to estimate worth or quality
+38514,evanescence,the event of fading and gradually vanishing from sight; "the evanescence of the morning mist"
+38515,evangelicalism,stresses the importance of personal conversion and faith as the means of salvation
+38516,evangelism,zealous preaching and advocacy of the gospel
+38517,evangelist revivalist gospeler gospeller,a preacher of the Christian gospel
+38518,evaporated_milk,milk concentrated by evaporation
+38519,evaporative_cooler,a cooling system that cools by evaporation
+38520,evaporite,the sediment that is left after the evaporation of seawater
+38521,evasion,the act of physically escaping from something (an opponent or a pursuer or an unpleasant situation) by some adroit maneuver
+38522,evasion equivocation,a statement that is not literally false but that cleverly avoids an unpleasant truth
+38523,evasion escape dodging,nonperformance of something distasteful (as by deceit or trickery) that you are supposed to do; "his evasion of his clear duty was reprehensible"; "that escape from the consequences is possible but unattractive"
+38524,evasion nonpayment,the deliberate act of failing to pay money; "his evasion of all his creditors"; "he was indicted for nonpayment"
+38525,evasive_answer,(law) an answer by a defendant that fails to admit or deny the allegations set forth in the complaint
+38526,eve,the period immediately before something; "on the eve of the French Revolution"
+38527,eve,the day before; "he always arrives on the eve of her departure"
+38528,even-pinnate_leaf abruptly-pinnate_leaf,a pinnate leaf with a pair of leaflets at the apex
+38529,even-toed_ungulate artiodactyl artiodactyl_mammal,placental mammal having hooves with an even number of functional toes on each foot
+38530,even_spacing,regularity of spacing
+38531,evening,a later concluding time period; "it was the evening of the Roman Empire"
+38532,evening,the early part of night (from dinner until bedtime) spent in a special way; "an evening at the opera"
+38533,evening eve even eventide,the latter part of the day (the period of decreasing daylight from late afternoon until nightfall); "he enjoyed the evening light across the lake"
+38534,evening-snow Linanthus_dichotomus,small California annual with white flowers
+38535,evening_bag,a handbag used with evening wear
+38536,evening_grosbeak Hesperiphona_vespertina,North American grosbeak
+38537,evening_primrose,any of several plants of the family Onagraceae
+38538,evening_shift,workers who work during the evening (as 4 p.m. to midnight)
+38539,evening_shift swing_shift,the work shift during the evening (as 4 p.m. to midnight)
+38540,evening_star Hesperus Vesper,a planet (usually Venus) seen at sunset in the western sky
+38541,evenness,the parity of even numbers (divisible by two)
+38542,evenness,the quality of being balanced
+38543,evenness invariability,a quality of uniformity and lack of variation
+38544,event,a phenomenon located at a single point in space-time; the fundamental observational entity in relativity theory
+38545,event,something that happens at a given place and time
+38546,event case,a special set of circumstances; "in that event, the first possibility is excluded"; "it may rain in which case the picnic will be canceled"
+38547,event_planner,someone who plans social events as a profession (usually for government or corporate officials)
+38548,eventration,protrusion of the intestine through the abdominal wall
+38549,eventuality contingency contingence,a possible event or occurrence or result
+38550,evergreen evergreen_plant,a plant having foliage that persists and remains green throughout the year
+38551,evergreen_bittersweet Euonymus_fortunei_radicans Euonymus_radicans_vegetus,broad and bushy Asiatic twining shrub with pinkish fruit; many subspecies or varieties
+38552,evergreen_blueberry Vaccinium_myrsinites,shrub of the eastern United States having shining evergreen leaves and bluish-black fruit
+38553,evergreen_huckleberry Vaccinium_ovatum,stiff bushy evergreen shrub of western North America having sour black berries and glossy green foliage used in floral arrangements
+38554,evergreen_thorn Crataegus_oxyacantha,evergreen hawthorn of southeastern Europe
+38555,everlasting everlasting_flower,any of various plants of various genera of the family Compositae having flowers that can be dried without loss of form or color
+38556,everlasting_pea,any of several perennial vines of the genus Lathyrus
+38557,everlastingness,the property of lasting forever
+38558,eversion,the position of being turned outward; "the eversion of the foot"
+38559,everyman,the ordinary person
+38560,eviction constructive_eviction,action by a landlord that compels a tenant to leave the premises (as by rendering the premises unfit for occupancy); no physical expulsion or legal process is involved
+38561,eviction dispossession legal_ouster,the expulsion of someone (such as a tenant) from the possession of land by process of law
+38562,evidence,(law) all the means by which any alleged matter of fact whose truth is investigated at judicial trial is established or disproved
+38563,evidence,an indication that makes something evident; "his trembling was evidence of his fear"
+38564,evidence grounds,your basis for belief or disbelief; knowledge on which to base belief; "the evidence that smoking causes lung cancer is very compelling"
+38565,evil,that which causes harm or destruction or misfortune; "the evil that men do lives after them; the good is oft interred with their bones"- Shakespeare
+38566,evil evilness,the quality of being morally wrong in principle or practice; "attempts to explain the origin of evil in the world"
+38567,evil immorality wickedness iniquity,morally objectionable behavior
+38568,evil_eye,a look that is believed to have the power of inflicting harm
+38569,evil_spirit,a spirit tending to cause harm
+38570,evisceration,surgical removal of an organ (or the contents of an organ) from a patient
+38571,evisceration,altering something (as a legislative act or a statement) in such a manner as to reduce its value; "the adoption of their amendments would have amounted to an evisceration of the act"
+38572,evocation,imaginative re-creation
+38573,evocation induction elicitation,stimulation that calls up (draws forth) a particular class of behaviors; "the elicitation of his testimony was not easy"
+38574,evocation summoning,calling up supposed supernatural forces by spells and incantations
+38575,evoked_potential,the electrical response of the central nervous system produced by an external stimulus; "he measured evoked potentials with an electroencephalogram"
+38576,evolution organic_evolution phylogeny phylogenesis,(biology) the sequence of events involved in the evolutionary development of a species or taxonomic group of organisms
+38577,evolutionary_trend,a general direction of evolutionary change
+38578,evolutionist,a person who believes in organic evolution
+38579,ewe,female sheep
+38580,ex-boyfriend,a man who is no longer a woman's boyfriend
+38581,ex-gambler,a former gambler
+38582,ex-husband ex,a man who was formerly a certain woman's husband
+38583,ex-mayor,a former mayor
+38584,ex-president,a former president
+38585,ex-spouse,a person who was formerly a spouse
+38586,ex-wife ex,a woman who was formerly a particular man's wife; "all his exes live in Texas"
+38587,exabit Ebit Eb,a unit of information equal to 1000 petabits or 10^18 bits
+38588,exabyte EB,a unit of information equal to 1000 petabytes or 10^18 bytes
+38589,exabyte exbibyte EB EiB,a unit of information equal to 1024 pebibytes or 2^60 bytes
+38590,exacerbation,violent and bitter exasperation; "his foolishness was followed by an exacerbation of their quarrel"
+38591,exacta perfecta,a bet that you can pick the first and second finishers in the right order
+38592,exaction,act of demanding or levying by force or authority; "exaction of tribute"; "exaction of various dues and fees"
+38593,exactness exactitude,the quality of being exact; "he demanded exactness in all details"; "a man of great exactitude"
+38594,exaggeration,the act of making something more noticeable than usual; "the dance involved a deliberate exaggeration of his awkwardness"
+38595,exaggeration overstatement magnification,making to seem more important than it really is
+38596,exaltation,the location of a planet in the zodiac at which it is believed to exert its maximum influence
+38597,exaltation,a flock of larks (especially a flock of larks in flight overhead)
+38598,examen,a critical study (as of a writer's work)
+38599,examen examination,a detailed inspection of your conscience (as done daily by Jesuits)
+38600,examination exam test,a set of questions or exercises evaluating skill or knowledge; "when the test was stolen the professor had to make a new set of questions"
+38601,examination scrutiny,the act of examining something closely (as for mistakes)
+38602,examination testing,the act of giving students or candidates a test (as by questions) to determine what they know or have learned
+38603,examiner inspector,an investigator who observes carefully; "the examiner searched for clues"
+38604,examiner tester quizzer,someone who administers a test to determine your qualifications
+38605,example deterrent_example lesson object_lesson,punishment intended as a warning to others; "they decided to make an example of him"
+38606,example illustration instance representative,an item of information that is typical of a class or group; "this patient provides a typical example of the syndrome"; "there is an example on page 10"
+38607,exanthem exanthema skin_eruption,eruption on the skin occurring as a symptom of a disease
+38608,exanthema_subitum roseola_infantum roseola_infantilis pseudorubella,a viral disease of infants and young children; characterized by abrupt high fever and mild sore throat; a few days later there is a faint pinkish rash that lasts for a few hours to a few days
+38609,exarch,a bishop in one of several Eastern Orthodox Churches in North America
+38610,exarch,a bishop in eastern Christendom who holds a place below a patriarch but above a metropolitan
+38611,exarch,a viceroy who governed a large province in the Roman Empire
+38612,exasperation,actions that cause great irritation (or even anger)
+38613,exbibit Eibit,a unit of information equal to 1024 pebibits or 2^60 bits
+38614,excavation,a hole in the ground made by excavating
+38615,excavation digging dig,the act of digging; "there's an interesting excavation going on near Princeton"
+38616,excavator,a workman who excavates for foundations of buildings or for quarrying
+38617,exceedance,(geology) the probability that an earthquake will generate a level of ground motion that exceeds a specified reference level during a given exposure time; "the concept of exceedance can be applied to any type of environmental risk modeling"
+38618,excellence,the quality of excelling; possessing good qualities in high degree
+38619,excellence excellency,an outstanding feature; something in which something or someone excels; "a center of manufacturing excellence"; "the use of herbs is one of the excellencies of French cuisine"
+38620,excelsior wood_shavings,thin curly wood shavings used for packing or stuffing
+38621,exception,grounds for adverse criticism; "his authority is beyond exception"
+38622,exception,an instance that does not conform to a rule or generalization; "all her children were brilliant; the only exception was her last child"; "an exception tests the rule"
+38623,exception exclusion elision,a deliberate act of omission; "with the exception of the children, everyone was told the news"
+38624,excerpt excerption extract selection,a passage selected from a larger work; "he presented excerpts from William James' philosophical writings"
+38625,excess excessiveness inordinateness,immoderation as a consequence of going beyond sufficient or permitted limits
+38626,excess surplus surplusage nimiety,a quantity much larger than is needed
+38627,exchange,chemical process in which one atom or ion or group changes places with another
+38628,exchange,a mutual expression of views (especially an unpleasant one); "they had a bitter exchange"
+38629,exchange,a workplace for buying and selling; open only to members
+38630,exchange,the act of giving something in return for something received; "deductible losses on sales or exchanges of property are allowable"
+38631,exchange,(chess) gaining (or losing) a rook in return for a knight or bishop; "black lost the exchange"
+38632,exchange,(chess) the capture by both players (usually on consecutive moves) of pieces of equal value; "the endgame began after the exchange of queens"
+38633,exchange interchange,the act of changing one thing for another thing; "Adam was promised immortality in exchange for his disobedience"; "there was an interchange of prisoners"
+38634,exchange interchange,reciprocal transfer of equivalent sums of money (especially the currencies of different countries); "he earns his living from the interchange of currency"
+38635,exchange_traded_fund ETF,a mutual fund that is traded on a stock exchange
+38636,exchange_transfusion,slow removal of a person's blood and its replacement with equal amounts of a donor's blood
+38637,exchangeability interchangeability interchangeableness fungibility,the quality of being capable of exchange or interchange
+38638,exchanger money_changer,one whose business is to exchange the money of one country for that of another country
+38639,excise excise_tax,a tax that is measured by the amount of business done (not on property or income from real estate)
+38640,excitability excitableness volatility,being easily excited
+38641,excitability irritability,excessive sensitivity of an organ or body part
+38642,excitation excitement,something that agitates and arouses; "he looked forward to the excitements of the day"
+38643,excitation innervation irritation,the neural or electrical arousal of an organ or muscle or gland
+38644,excitement excitation inflammation fervor fervour,the state of being emotionally aroused and worked up; "his face was flushed with excitement and his hands trembled"; "he tried to calm those who were in a state of extreme inflammation"
+38645,exclamation,a loud complaint or protest or reproach
+38646,exclamation exclaiming,an abrupt excited utterance; "she gave an exclamation of delight"; "there was much exclaiming over it"
+38647,exclamation_mark exclamation_point,a punctuation mark (!) used after an exclamation
+38648,exclusion,the state of being excluded
+38649,exclusionary_rule,a rule that provides that otherwise admissible evidence cannot be used in a criminal trial if it was the result of illegal police conduct
+38650,exclusive scoop,a news report that is reported first by one news organization; "he got a scoop on the bribery of city officials"
+38651,excogitation,thinking something out with care in order to achieve complete understanding of it
+38652,excogitator,a thinker who considers carefully and thoroughly
+38653,excommunication excision,the act of banishing a member of a church from the communion of believers and the privileges of the church; cutting a person off from a religious society
+38654,excommunication exclusion censure,the state of being excommunicated
+38655,excoriation,severe censure
+38656,excrescence,(pathology) an abnormal outgrowth or enlargement of some part of the body
+38657,excretory_organ urinary_organ,an organ that separates waste substances from the blood and discharges them
+38658,exculpation,the act of freeing from guilt or blame
+38659,excursion jaunt outing junket pleasure_trip expedition sashay,a journey taken for pleasure; "many summer excursions to the shore"; "it was merely a pleasure trip"; "after cautious sashays into the field"
+38660,excursion_rate,a reduced rate for a round-trip ticket
+38661,excuse,a note explaining an absence; "he had to get his mother to write an excuse for him"
+38662,excuse alibi exculpation self-justification,a defense of some offensive behavior or some failure to keep a promise etc.; "he kept finding excuses to stay"; "every day he had a new alibi for not getting a job"; "his transparent self-justification was unacceptable"
+38663,execration,the object of cursing or detestation; that which is execrated
+38664,execration condemnation curse,an appeal to some supernatural power to inflict evil on someone or some group
+38665,executability,capability of being executed; "the job is executable for two million dollars"; "this contract is not executable"
+38666,executant,a performer (usually of musical works)
+38667,execution executing capital_punishment death_penalty,putting a condemned person to death
+38668,execution execution_of_instrument,(law) the completion of a legal instrument (such as a contract or deed) by signing it (and perhaps sealing and delivering it) so that it becomes legally binding and enforceable
+38669,execution implementation carrying_out,the act of accomplishing some aim or executing some order; "the agency was created for the implementation of the policy"
+38670,execution instruction_execution,(computer science) the process of carrying out an instruction by a computer
+38671,execution writ_of_execution,a routine court order that attempts to enforce the judgment that has been granted to a plaintiff by authorizing a sheriff to carry it out
+38672,execution_speed,(computer science) the speed with which a computational device can execute instructions; measured in MIPS
+38673,executioner public_executioner,an official who inflicts capital punishment in pursuit of a warrant
+38674,executive,persons who administer the law
+38675,executive executive_director,a person responsible for the administration of a business
+38676,executive_agency,an agency of the executive branch of government
+38677,executive_branch Executive_Office_of_the_President,the branch of the United States government that is responsible for carrying out the laws
+38678,executive_clemency,the power (usually of a president or governor) to pardon or commute the sentence of someone convicted in that jurisdiction
+38679,executive_council,a council that shares the supreme executive power
+38680,executive_department,a federal department in the executive branch of the government of the United States
+38681,executive_officer,the officer second in command
+38682,executive_secretary,a secretary having administrative duties and responsibilities
+38683,executive_session closed_session,a session (usually of a legislative body) that is closed to the public
+38684,executive_vice_president,a vice president holding executive power
+38685,executor,a person appointed by a testator to carry out the terms of the will
+38686,executor-heir_relation,the responsibility of an executor (or administrator) of an estate to act in the best interests of the heir
+38687,executrix,a woman executor
+38688,exegesis,an explanation or critical interpretation (especially of the Bible)
+38689,exegete,a person skilled in exegesis (especially of religious texts)
+38690,exemplar example model good_example,something to be imitated; "an exemplar of success"; "a model of clarity"; "he is the very model of a modern major general"
+38691,exemplification illustration,showing by example
+38692,exemption,a deduction allowed to a taxpayer because of his status (having certain dependents or being blind or being over 65 etc.); "additional exemptions are allowed for each dependent"
+38693,exemption freedom,immunity from an obligation or duty
+38694,exemption immunity granting_immunity,an act exempting someone; "he was granted immunity from prosecution"
+38695,exenteration,surgical removal of the organs within a body cavity (as those of the pelvis)
+38696,exercise,(usually plural) a ceremony that involves processions and speeches; "academic exercises"
+38697,exercise,an action, often used negatively and without consequences; "an exercise in futility"; "an exercise in cheap talk"
+38698,exercise example,a task performed or problem solved in order to develop skill or understanding; "you must work the examples at the end of each chapter in the textbook"
+38699,exercise exercising physical_exercise physical_exertion workout,the activity of exerting your muscles in various ways to keep fit; "the doctor recommended regular exercise"; "he did some exercising"; "the physical exertion required by his work kept him fit"
+38700,exercise practice drill practice_session recitation,systematic training by multiple repetitions; "practice makes perfect"
+38701,exercise_bike exercycle,an exercise device resembling a stationary bike
+38702,exercise_device,a device designed to provide exercise for the user
+38703,exfiltration_operation,a clandestine rescue operation to bring a defector or refugee or an operative and family out of danger
+38704,exfoliation,the peeling off in flakes or scales of bark or dead skin; "exfoliation is increased by sunburn"
+38705,exhalation expiration breathing_out,the act of expelling air from the lungs
+38706,exhaust exhaust_fumes fumes,gases ejected from an engine as waste products
+38707,exhaust exhaust_system,system consisting of the parts of an engine through which burned gases or steam are discharged
+38708,exhaust_fan,a fan that moves air out of an enclosure
+38709,exhaust_manifold,a manifold that receives exhaust gases from the cylinders and conducts them to the exhaust pipe
+38710,exhaust_pipe,a pipe through which burned gases travel from the exhaust manifold to the muffler
+38711,exhaust_valve,a valve through which burned gases from a cylinder escape into the exhaust manifold
+38712,exhaustion,extreme fatigue
+38713,exhaustion,the act of exhausting something entirely
+38714,exhibit,an object or statement produced before a court of law and referred to while giving evidence
+38715,exhibition,the act of exhibiting; "a remarkable exhibition of musicianship"
+38716,exhibition exposition expo,a collection of things (goods or works of art etc.) for public display
+38717,exhibition_game practice_game,a game whose outcome is not recorded in the season's standing
+38718,exhibition_hall exhibition_area,a large hall for holding exhibitions
+38719,exhibition_season,the time before the regular games begin when football or baseball teams play practice games
+38720,exhibitionism,extravagant and conspicuous behavior intended to attract attention to yourself
+38721,exhibitionism immodesty,the perverse act of exposing and attracting attention to your own genitals
+38722,exhibitionist flasher,someone with a compulsive desire to expose the genitals
+38723,exhibitionist show-off,someone who deliberately behaves in such a way as to attract attention
+38724,exhibitor exhibitioner shower,someone who organizes an exhibit for others to see
+38725,exhilaration excitement,the feeling of lively and cheerful joy; "he could hardly conceal his excitement when she agreed"
+38726,exhortation,a communication intended to urge or persuade the recipients to take some action
+38727,exhortation incitement,the act of exhorting; an earnest attempt at persuasion
+38728,exhumation disinterment digging_up,the act of digging something up out of the ground (especially a corpse) where it has been buried
+38729,exigency,a pressing or urgent situation; "the health-care exigency"
+38730,exile deportation expatriation transportation,the act of expelling a person from their native land; "men in exile dream of hope"; "his deportation to a penal colony"; "the expatriation of wealthy farmers"; "the sentence was one of transportation for life"
+38731,exile deportee,a person who is expelled from home or country by authority
+38732,exile expatriate expat,a person who is voluntarily absent from home or country; "American expatriates"
+38733,existential_quantifier existential_operator,a logical quantifier of a proposition that asserts the existence of at least one thing for which the proposition is true
+38734,existentialism existential_philosophy existentialist_philosophy,(philosophy) a 20th-century philosophical movement chiefly in Europe; assumes that people are entirely free and thus responsible for what they make of themselves
+38735,existentialist existentialist_philosopher existential_philosopher,a philosopher who emphasizes freedom of choice and personal responsibility but who regards human existence in a hostile universe as unexplainable
+38736,exit,the act of going out
+38737,exit issue outlet way_out,an opening that permits escape or release; "he blocked the way out"; "the canyon had only one issue"
+38738,exit_poll,a poll of voters as they leave the voting place; usually taken by news media in order to predict the outcome of an election
+38739,exobiology space_biology astrobiology,the branch of biology concerned with the effects of outer space on living organisms and the search for extraterrestrial life
+38740,exocrine_gland exocrine duct_gland,a gland that secretes externally through a duct
+38741,exode,a farcical afterpiece in the ancient Roman theater
+38742,exodontics exodontia,the branch of dentistry dealing with extraction of teeth
+38743,exodontist,a dentist specializing in the extraction of teeth
+38744,exodus hegira hejira,a journey by a large group to escape from a hostile environment
+38745,exoergic_reaction,a nuclear reaction accompanied by the evolution of energy
+38746,exogamy intermarriage,marriage to a person belonging to a tribe or group other than your own as required by custom or law
+38747,exogenous_depression reactive_depression,an inappropriate state of depression that is precipitated by events in the person's life (to be distinguished from normal grief)
+38748,exogenous_obesity,obesity caused by overeating
+38749,exomphalos,an umbilical hernia at birth in which some abdominal organs push into the umbilical cord
+38750,exon coding_DNA,sequence of a gene's DNA that transcribes into protein structures; "exons are interspersed with introns"
+38751,exoneration,the condition of being relieved from blame or obligation
+38752,exonuclease,a nuclease that releases one nucleotide at a time (serially) beginning at one of a nucleic acid
+38753,exophthalmos,protrusion of the eyeball from the socket
+38754,exorbitance outrageousness,excessive excess
+38755,exorcism dispossession,freeing from evil spirits
+38756,exorcist,one of the minor orders in the unreformed Western Church but now suppressed in the Roman Catholic Church
+38757,exorcist exorciser,someone who practices exorcism
+38758,exordium,(rhetoric) the introductory section of an oration or discourse
+38759,exoskeleton,the exterior protective or supporting structure or shell of many animals (especially invertebrates) including bony or horny parts such as nails or scales or hoofs
+38760,exosphere,the outermost atmospheric layer
+38761,exostosis,a benign outgrowth from a bone (usually covered with cartilage)
+38762,exotherm,a compound that gives off heat during its formation and absorbs heat during its decomposition
+38763,exothermic_reaction,a chemical reaction accompanied by the evolution of heat
+38764,exoticism exoticness exotism,the quality of being exotic; "he loved the exoticism of Egypt"
+38765,exotoxin,a toxin that is secreted by microorganisms into the surrounding medium
+38766,expanse,a wide and open space or area as of surface or land or sky
+38767,expansion,a function expressed as a sum or product of terms; "the expansion of (a+b)^2 is a^2 + 2ab + b^2"
+38768,expansion enlargement,the act of increasing (something) in size or volume or quantity or scope
+38769,expansion enlargement elaboration,a discussion that provides additional information
+38770,expansion expanding_upon,adding information or detail
+38771,expansion_bit expansive_bit,a bit with a cutting blade that can be adjusted to different sizes
+38772,expansion_bolt,a bolt that has an attachment that expands as the bolt is driven into a surface
+38773,expansionism,the doctrine of expanding the territory or the economic influence of a country
+38774,expansiveness expansivity,a quality characterized by magnificence of scale or the tendency to expand; "the expansiveness of their extravagant life style was soon curtailed"
+38775,expatiation,a discussion (spoken or written) that enlarges on a topic or theme at length or in detail
+38776,expectation,the feeling that something is about to happen
+38777,expectation outlook prospect,belief about (or mental picture of) the future
+38778,expectedness,ordinariness as a consequence of being expected and not surprising
+38779,expectorant expectorator,a medicine promoting expectoration
+38780,expectoration,the process of coughing up and spitting out
+38781,expedience expediency,the quality of being suited to the end in view
+38782,expedient,a means to an end; not necessarily a principled or ethical one
+38783,expedition,an organized group of people undertaking a journey for a particular purpose; "an expedition was sent to explore Mars"
+38784,expedition,a journey organized for a particular purpose
+38785,expedition military_expedition hostile_expedition,a military campaign designed to achieve a specific objective in a foreign country
+38786,expending expenditure,the act of spending money for goods or services
+38787,expense,money spent to perform work and usually reimbursed by an employer; "he kept a careful record of his expenses at the meeting"
+38788,expense,a detriment or sacrifice; "at the expense of"
+38789,expense disbursal disbursement,amounts paid for goods and services that may be currently tax deductible (as opposed to capital expenditures)
+38790,expense_account travel_and_entertainment_account,an account to which salespersons or executives can charge travel and entertainment expenses
+38791,expense_record,a written record of money spent
+38792,expensiveness,the quality of being high-priced
+38793,experience,an event as apprehended; "a surprising experience"; "that painful experience certainly got our attention"
+38794,experience,the content of direct observation or participation in an event; "he had a religious experience"; "he recalled the experience vividly"
+38795,experience,the accumulation of knowledge or skill that results from direct participation in events or activities; "a man of experience"; "experience is the best teacher"
+38796,experiment,a venture at something new or different; "as an experiment he decided to grow a beard"
+38797,experiment experimentation,the testing of an idea; "it was an experiment in living"; "not all experimentation is done in laboratories"
+38798,experiment experimentation,the act of conducting a controlled test or investigation
+38799,experimental_method,the use of controlled observations and measurements to test hypotheses
+38800,experimental_procedure,the specific techniques used in conducting a particular experiment
+38801,experimental_psychology psychonomics,the branch of psychology that uses experimental methods to study psychological issues
+38802,experimentalism,an orientation that favors experimentation and innovation; "the children of psychologists are often raised in an atmosphere of experimentalism"
+38803,experimentalism,an empirical doctrine that advocates experimental principles
+38804,experimenter,a person who enjoys testing innovative ideas; "she was an experimenter in new forms of poetry"
+38805,experimenter,a research worker who conducts experiments
+38806,experimenter_bias,(psychology) bias introduced by an experimenter whose expectations about the outcome of the experiment can be subtly communicated to the participants in the experiment
+38807,expert,a person with special knowledge or ability who performs skillfully
+38808,expert_witness,a witness who has knowledge not normally possessed by the average person concerning the topic that he is to testify about
+38809,expertness expertise,skillfulness by virtue of possessing special knowledge
+38810,expiation atonement propitiation,the act of atoning for sin or wrongdoing (especially appeasing a deity)
+38811,explanans,(logic) statements that explain the explicandum; the explanatory premises
+38812,explanation,the act of explaining; making something plain or intelligible; "I heard his explanation of the accident"
+38813,explanation,thought that makes something comprehensible
+38814,explanation account,a statement that makes something comprehensible by describing the relevant structure or operation or circumstances etc.; "the explanation was very simple"; "I expected a brief account"
+38815,expletive,a word or phrase conveying no independent meaning but added to fill out a sentence or metrical line
+38816,explicandum explanandum,(logic) a statement of something (a fact or thing or expression) to be explained
+38817,explication,the act of making clear or removing obscurity from the meaning of a word or symbol or expression etc.
+38818,explication,a detailed explanation of the meaning of something
+38819,explication_de_texte,a method of literary criticism that analyzes details of a text in order to reveal its structure and meaning
+38820,explicit_definition,a definition that gives an exact equivalent of the term defined
+38821,explicitness,clarity as a consequence of being explicit
+38822,exploitation development,the act of making some area of land or water more profitable or productive or useful; "the development of Alaskan resources"; "the exploitation of copper deposits"
+38823,exploitation victimization victimisation using,an act that exploits or victimizes someone (treats them unfairly); "capitalistic exploitation of the working class"; "paying Blacks less and charging them more is a form of victimization"
+38824,exploiter user,a person who uses something or someone selfishly or unethically
+38825,exploration,a systematic consideration; "he called for a careful exploration of the consequences"
+38826,exploration,a careful systematic search
+38827,exploration geographic_expedition,to travel for the purpose of discovery
+38828,explorer adventurer,someone who travels into little known regions (especially for some scientific purpose)
+38829,explorer's_gentian Gentiana_calycosa,tufted sometimes sprawling perennial with blue flowers spotted with green; western North America
+38830,explosion,a sudden great increase; "the population explosion"; "the information explosion"
+38831,explosion,the noise caused by an explosion; "the explosion was heard a mile away"
+38832,explosion,a sudden outburst; "an explosion of laughter"; "an explosion of rage"
+38833,explosion,a golf shot from a bunker that typically moves sand as well as the golf ball
+38834,explosion burst,the act of exploding or bursting; "the explosion of the firecrackers awoke the children"; "the burst of an atom bomb creates enormous radiation aloft"
+38835,explosion detonation blowup,a violent release of energy caused by a chemical or nuclear reaction
+38836,explosive,a chemical substance that undergoes a rapid chemical change (with the production of gas) on being heated or struck
+38837,explosive_compound,a compound that is explosive
+38838,explosive_detection_system EDS,a rapid automatic system to detect plastic explosives in passengers' luggage using X-ray technology and computers; designed for use in airports
+38839,explosive_device,device that bursts with sudden violence from internal energy
+38840,explosive_mixture,a mixture that is explosive
+38841,explosive_trace_detection ETD,a system for screening luggage in airports; an agent passes a swab around or inside luggage and then runs the swab through a machine that can detect trace amounts of explosives
+38842,explosive_unit,any unit for measuring the force of explosions
+38843,exponent,someone who expounds and interprets or explains
+38844,exponent power index,a mathematical notation indicating the number of times a quantity is multiplied by itself
+38845,exponential exponential_function,a function in which an independent variable appears as an exponent
+38846,exponential_curve,a graph of an exponential function
+38847,exponential_decay exponential_return,a decrease that follows an exponential function
+38848,exponential_equation,an equation involving exponential functions of a variable
+38849,exponential_expression,a mathematical expression consisting of a constant (especially e) raised to some power
+38850,exponential_series,a series derived from the expansion of an exponential expression
+38851,exponentiation involution,the process of raising a quantity to some assigned power
+38852,export exportation,commodities (goods or services) sold to a foreign country
+38853,export_credit,a credit opened by an importer with a bank in an exporter's country to finance an export operation
+38854,export_duty,a duty imposed on exports
+38855,exporter,a businessperson who transports goods abroad (for sale)
+38856,exporting exportation,the commercial activity of selling and shipping goods to a foreign country
+38857,expose unmasking,the exposure of an impostor or a fraud; "he published an expose of the graft and corruption in city government"
+38858,exposition,an account that sets forth the meaning or intent of a writing or discourse; "we would have understood the play better if there had been some initial exposition of the background"
+38859,exposition,(music) the section of a movement (especially in sonata form) where the major musical themes first occur
+38860,exposition expounding,a systematic interpretation or explanation (usually written) of a specific topic
+38861,expositor expounder,a person who explains
+38862,expostulation,an exclamation of protest or remonstrance or reproof
+38863,expostulation remonstrance remonstration objection,the act of expressing earnest opposition or protest
+38864,exposure,the intensity of light falling on a photographic film or plate; "he used the wrong exposure"
+38865,exposure,the disclosure of something secret; "they feared exposure of their campaign plans"
+38866,exposure,aspect resulting from the direction a building or window faces; "the studio had a northern exposure"
+38867,exposure,vulnerability to the elements; to the action of heat or cold or wind or rain; "exposure to the weather"; "they died from exposure"
+38868,exposure,the act of exposing film to light
+38869,exposure,presentation to view in an open or public manner; "the exposure of his anger was shocking"
+38870,exposure,abandoning without shelter or protection (as by leaving an infant out in the open)
+38871,exposure,the act of subjecting someone to an influencing experience; "she denounced the exposure of children to pornography"
+38872,exposure_therapy,a form of behavior therapy in which a survivor confronts feelings or phobias or anxieties about a traumatic event and relives it in the therapy situation
+38873,express express_mail,mail that is distributed by a rapid and efficient system
+38874,express expressage,rapid transport of goods
+38875,express limited,public transport consisting of a fast train or bus that makes only a few scheduled stops; "he caught the express to New York"
+38876,expression,(genetics) the process of expressing a gene
+38877,expression,the act of forcing something out by squeezing or pressing; "the expression of milk from her breast"
+38878,expression look aspect facial_expression face,the feelings expressed on a person's face; "a sad expression"; "a look of triumph"; "an angry face"
+38879,expression manifestation reflection reflexion,expression without words; "tears are an expression of grief"; "the pulse is a reflection of the heart's condition"
+38880,expression verbal_expression verbalism,the communication (in speech or writing) of your beliefs or opinions; "expressions of good will"; "he helped me find verbal expression for my ideas"; "the idea was immediate but the verbalism took hours"
+38881,expressionism,an art movement early in the 20th century; the artist's subjective expression of inner experiences was emphasized; an inner feeling was expressed through a distorted rendition of reality
+38882,expressionist,an artist who is an adherent of expressionism
+38883,expressive_style style,a way of expressing something (in language or art or music etc.) that is characteristic of a particular person or group of people or period; "all the reporters were expected to adopt the style of the newspaper"
+38884,expressiveness,the quality of being expressive
+38885,expressway freeway motorway pike state_highway superhighway throughway thruway,a broad highway designed for high-speed traffic
+38886,expropriation,taking out of an owner's hands (especially taking property by public authority)
+38887,expulsion projection ejection forcing_out,the act of expelling or projecting or ejecting
+38888,expunction expunging erasure,deletion by an act of expunging or erasing
+38889,expurgation castration,the deletion of objectionable parts from a literary work
+38890,expurgator bowdlerizer bowdleriser,a person who edits a text by removing obscene or offensive words or passages; "Thomas Bowdler was a famous expurgator"
+38891,exquisiteness,extreme beauty of a delicate sort
+38892,extemporization extemporisation improvisation,a performance given extempore without planning or preparation
+38893,extended_care_facility,a medical institution that provides prolonged care (as in cases of prolonged illness or rehabilitation from acute illness)
+38894,extended_family,a family consisting of the nuclear family and their blood relatives
+38895,extended_order,a military formation for skirmishing; as widely separated as the tactical situation permits
+38896,extended_time_scale slow_time_scale,(simulation) the time scale used in data processing when the time-scale factor is greater than one
+38897,extension,a mutually agreed delay in the date set for the completion of a job or payment of a debt; "they applied for an extension of the loan"
+38898,extension,the ability to raise the working leg high in the air; "the dancer was praised for her uncanny extension"; "good extension comes from a combination of training and native ability"
+38899,extension,act of stretching or straightening out a flexed limb
+38900,extension,act of expanding in scope; making more widely available; "extension of the program to all in need"
+38901,extension extension_service university_extension,an educational opportunity provided by colleges and universities to people who are not enrolled as regular students
+38902,extension filename_extension file_name_extension,a string of characters beginning with a period and followed by one or more letters; the optional second part of a PC computer filename; "most applications provide extensions for the files they create"; "most BASIC files use the filename extension .BAS"
+38903,extension lengthiness prolongation,amount or degree or range to which something extends; "the wire has an extension of 50 feet"
+38904,extension telephone_extension extension_phone,an additional telephone set that is connected to the same telephone line
+38905,extension_cord,an electric cord used to extend the length of a power cord
+38906,extension_course,a course offered as part of an extension service
+38907,extension_ladder,a ladder whose length can be extended
+38908,extensor_muscle extensor,a skeletal muscle whose contraction extends or stretches a body part
+38909,extent,the point or degree to which something extends; "the extent of the damage"; "the full extent of the law"; "to a certain extent she was right"
+38910,extent,the distance or area or volume over which something extends; "the vast extent of the desert"; "an orchard of considerable extent"
+38911,extenuation mitigation,a partial excuse to mitigate censure; an attempt to represent an offense as less serious than it appears by showing mitigating circumstances
+38912,extenuation mitigation palliation,to act in such a way as to cause an offense to seem less serious
+38913,exterior_angle external_angle,the supplement of an interior angle of a polygon
+38914,exterior_door outside_door,a doorway that allows entrance to or exit from a building
+38915,extermination liquidation,the act of exterminating
+38916,exterminator terminator eradicator,someone who exterminates (especially someone whose occupation is the extermination of troublesome rodents and insects)
+38917,extern medical_extern,a nonresident doctor or medical student; connected with a hospital but not living there
+38918,external,outward features; "he enjoyed the solemn externals of religion"
+38919,external-combustion_engine,a heat engine in which ignition occurs outside the chamber (cylinder or turbine) in which heat is converted to mechanical energy
+38920,external_body_part,any body part visible externally
+38921,external_carotid_artery external_carotid,the branch of the carotid artery that supplies blood to the face and tongue and external parts of the head
+38922,external_drive,a drive with its own power supply and fan mounted outside the computer system enclosure and connected to the computer by a cable
+38923,external_ear outer_ear,the part of the ear visible externally
+38924,external_gill,occurs in some mollusks and in tadpoles and other immature amphibians
+38925,external_iliac_artery,the outer branch of the common iliac artery on either side of the body; becomes the femoral artery
+38926,external_iliac_vein,a continuation of the femoral vein; unites with the internal iliac vein to form the common iliac vein
+38927,external_jugular_vein,formed by the junction of the posterior auricular and the retromandibular veins; empties into the subclavian vein
+38928,external_nasal_vein vena_nasalis_externa,one of the veins that drain the external nose and empty into the angular or facial vein
+38929,external_oblique_muscle musculus_obliquus_externus_abdominis abdominal_external_oblique_muscle oblique,a diagonally arranged abdominal muscle on either side of the torso
+38930,external_organ,an organ that is situated on or near the surface of the body
+38931,externalization externalisation,attributing to outside causes
+38932,externalization externalisation exteriorization exteriorisation,embodying in an outward form
+38933,exteroception,sensitivity to stimuli originating outside of the body
+38934,exteroceptor,any receptor that responds to stimuli outside the body
+38935,extinction,no longer active; extinguished; "the extinction of the volcano"
+38936,extinction,the reduction of the intensity of radiation as a consequence of absorption and radiation
+38937,extinction defunctness,no longer in existence; "the extinction of a species"
+38938,extinction experimental_extinction,a conditioning process in which the reinforcer is removed and a conditioned response becomes independent of the conditioned stimulus
+38939,extinction extermination,complete annihilation; "they think a meteor cause the extinction of the dinosaurs"
+38940,extinction extinguishing quenching,the act of extinguishing; causing to stop burning; "the extinction of the lights"
+38941,extirpation excision deracination,the act of pulling up or out; uprooting; cutting off from existence
+38942,extortion,an exorbitant charge
+38943,extortion,unjust exaction (as by the misuse of authority); "the extortion by dishonest officials of fees for performing their sworn duty"
+38944,extortion,the felonious act of extorting money (as by threats of violence)
+38945,extra,an additional edition of a newspaper (usually to report a crisis)
+38946,extra duplicate,something additional of the same kind; "he always carried extras in case of an emergency"
+38947,extra_dividend,a dividend paid in addition to the regular dividend
+38948,extra_innings,overtime play until one team is ahead at the end of an inning; e.g. baseball
+38949,extra_large,a garment size for a very large person
+38950,extracapsular_surgery,cataract surgery in which only the front of the lens is removed; the back of the lens capsule remains intact and provides support for the lens implant
+38951,extracellular_fluid ECF,liquid containing proteins and electrolytes including the liquid in blood plasma and interstitial fluid; "the body normally has about 15 quarts of extracellular fluid"
+38952,extraction,the process of obtaining something from a mixture or compound by chemical or physical or mechanical means
+38953,extraction,the action of taking out something (especially using effort or force); "the dentist gave her a local anesthetic prior to the extraction"
+38954,extractor,an instrument for extracting tight-fitting components
+38955,extracurricular_activity,educational activities not falling within the scope of the regular curriculum
+38956,extradition,the surrender of an accused or convicted person by one state or country to another (usually under the provisions of a statute or treaty)
+38957,extrados,the exterior curve of an arch
+38958,extramarital_sex free_love,sexual intercourse between individuals who are not married to one another
+38959,extraneousness,unrelatedness by virtue of falling outside the matter at hand
+38960,extraordinariness,the quality of being extraordinary and not commonly encountered
+38961,extrapolation,(mathematics) calculation of the value of a function outside the range of known values
+38962,extrapolation,an inference about the future (or about some hypothetical situation) based on known facts and observations
+38963,extrasystole,a premature systole resulting in a momentary cardiac arrhythmia
+38964,extraterrestrial_being extraterrestrial alien,a form of life assumed to exist outside the Earth or its atmosphere
+38965,extraterrestrial_object estraterrestrial_body,a natural object existing outside the earth and outside the earth's atmosphere
+38966,extravagance extravagancy,the quality of exceeding the appropriate limits of decorum or probability or truth; "we were surprised by the extravagance of his description"
+38967,extravagance prodigality lavishness highlife high_life,excessive spending
+38968,extravagance prodigality profligacy,the trait of spending extravagantly
+38969,extravaganza,any lavishly staged or spectacular entertainment
+38970,extravasation,an extravasated liquid (blood or lymph or urine); the product of extravasation
+38971,extravasation,the process of exuding or passing out of a vessel into surrounding tissues; said of blood or lymph or urine
+38972,extraversion extroversion,(psychology) an extroverted disposition; concern with what is outside the self
+38973,extreme,the furthest or highest degree of something; "he carried it to extremes"
+38974,extreme_point extreme extremum,the point located farthest from the middle of something
+38975,extremely_high_frequency EHF,30 to 300 gigahertz
+38976,extremely_low_frequency ELF,below 3 kilohertz
+38977,extremeness,the quality of being extreme
+38978,extremism,any political theory favoring immoderate uncompromising policies
+38979,extremist,a person who holds extreme views
+38980,extremity,an extreme condition or state (especially of adversity or disease)
+38981,extremity,the greatest or utmost degree; "the extremity of despair"
+38982,extremity,the outermost or farthest region or point
+38983,extremity,that part of a limb that is farthest from the torso
+38984,extremity appendage member,an external body part that projects from the body; "it is important to keep the extremities warm"
+38985,extremum peak,the most extreme possible amount or value; "voltage peak"
+38986,extrinsic_fraud collateral_fraud,fraud that prevents a party from knowing their rights or from having a fair opportunity of presenting them at trial
+38987,extropy,the prediction that human intelligence and technology will enable life to expand in an orderly way throughout the entire universe
+38988,extrovert extravert,(psychology) a person concerned more with practical realities than with inner thoughts and feelings
+38989,extrusion expulsion,squeezing out by applying pressure; "an unexpected extrusion of toothpaste from the bottom of the tube"; "the expulsion of pus from the pimple"
+38990,exuberance,joyful enthusiasm
+38991,exuberance enthusiasm ebullience,overflowing with eager enjoyment or approval
+38992,exudate exudation,a substance that oozes out from plant pores
+38993,exudation transudation,the process of exuding; the slow escape of liquids from blood vessels through pores or breaks in the cell membranes
+38994,exultation jubilance jubilancy jubilation,a feeling of extreme joy
+38995,exultation rejoicing jubilation,the utterance of sounds expressing great joy
+38996,exurbia,a residential area outside of a city and beyond suburbia
+38997,exuviae,cast-off skins or coverings of various organisms during ecdysis
+38998,eyas,an unfledged or nestling hawk
+38999,eye,attention to what is seen; "he tried to catch her eye"
+39000,eye,good discernment (either visually or as if visually); "she has an eye for fresh talent"; "he has an artist's eye"
+39001,eye,a small hole or loop (as in a needle); "the thread wouldn't go through the eye"
+39002,eye oculus optic,the organ of sight
+39003,eye-beaming,a radiant glance of the eye; "he pretended profundity by eye-beamings at people"
+39004,eye-catcher,a striking person or thing that attracts attention
+39005,eye-lotion eyewash collyrium,lotion consisting of a solution used as a cleanser for the eyes
+39006,eye_bank,a place for storing and preserving corneas that are obtained from human corpses immediately after death; used for corneal transplantation to patients with corneal defects
+39007,eye_candy,visual images that are pleasing to see but are intellectually undemanding; "he wanted to put some eye candy on their web site"
+39008,eye_chart,a chart that is read from a fixed distance; used as a test of vision
+39009,eye_clinic,a clinic where specialist care for a patient's eyes
+39010,eye_condition,the condition of the optical properties of the eye
+39011,eye_contact,a meeting of the eyes between two people that expresses meaningful nonverbal communication; "it was a mere glance, but the eye contact was enough to tell her that he was desperate to leave"
+39012,eye_contact,contact that occurs when two people look directly at each other; "a teacher should make eye contact with the students"
+39013,eye_dialect,the use of misspellings to identify a colloquial or uneducated speaker
+39014,eye_disease,any disease of the eye
+39015,eye_movement,the movement of the eyes
+39016,eye_opener,an alcoholic drink intended to wake one up early in the morning
+39017,eye_opener,something surprising and revealing
+39018,eye_operation eye_surgery,any surgical procedure involving the eyes
+39019,eye_rhyme,an imperfect rhyme (e.g., `love' and `move')
+39020,eye_socket orbit cranial_orbit orbital_cavity,the bony cavity in the skull containing the eyeball
+39021,eyeball orb,the ball-shaped capsule containing the vertebrate eye
+39022,eyebrow brow supercilium,the arch of hair above each eye
+39023,eyebrow_pencil,makeup provided by a cosmetic pencil that is used to darken the eyebrows
+39024,eyecup eyebath eye_cup,a small vessel with a rim curved to fit the orbit of the eye; use to apply medicated or cleansing solution to the eyeball; "an eyecup is called an eyebath in Britain"
+39025,eyedness,the property of favoring one eye over the other (as in taking aim)
+39026,eyedrop eye-drop,a drop from an eye dropper
+39027,eyedrop eye-drop,a method of irrigating the eye used by ophthalmologists
+39028,eyeful,a strikingly beautiful woman; "she was a statuesque redheaded eyeful"
+39029,eyeful,a full view; a good look; "they wanted to see violence and they got an eyeful"
+39030,eyeglass_wearer,a person who wears spectacles in order to see better
+39031,eyelash lash cilium,any of the short curved hairs that grow from the edges of the eyelids
+39032,eyelessness,blindness due to loss of the eyes
+39033,eyelet eyehole,a small hole (usually round and finished around the edges) in cloth or leather for the passage of a cord or hook or bar
+39034,eyelid lid palpebra,either of two folds of skin that can be moved to cover or open the eye; "his lids would stay open no longer"
+39035,eyeliner,makeup applied to emphasize the shape of the eyes
+39036,eyepatch patch,a protective cloth covering for an injured eye
+39037,eyepiece ocular,combination of lenses at the viewing end of optical instruments
+39038,eyes,opinion or judgment; "in the eyes of the law"; "I was wrong in her eyes"
+39039,eyeshadow,makeup consisting of a cosmetic substance used to darken the eyes
+39040,eyesight seeing sightedness,normal use of the faculty of vision
+39041,eyesore,something very ugly and offensive
+39042,eyespot ocellus,an eyelike marking (as on the wings of some butterflies); usually a spot of color inside a ring of another color
+39043,eyestrain asthenopia,a tiredness of the eyes caused by prolonged close work by a person with an uncorrected vision problem
+39044,eyewitness,a spectator who can describe what happened
+39045,eyrir,100 aurar equal 1 krona in Iceland
+39046,fa,the syllable naming the fourth (subdominant) note of the diatonic scale in solmization
+39047,fa_la fal_la,meaningless syllables in the refrain of a partsong
+39048,fable parable allegory apologue,a short moral story (often with animal characters)
+39049,fabric cloth material textile,artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers; "the fabric in the curtains was light and semitransparent"; "woven cloth originated in Mesopotamia around 5000 BC"; "she measured off enough material for a dress"
+39050,fabrication assembly,the act of constructing something (as a piece of machinery)
+39051,fabrication fiction fable,a deliberately false or improbable account
+39052,fabrication fictionalization fictionalisation,writing in a fictional form
+39053,fabrication manufacture manufacturing,the act of making something (a product) from raw materials; "the synthesis and fabrication of single crystals"; "an improvement in the manufacture of explosives"; "manufacturing is vital to Great Britain"
+39054,fabulist,a person who tells or invents fables
+39055,facade frontage frontal,the face or front of a building
+39056,facade window_dressing,a showy misrepresentation intended to conceal something unpleasant
+39057,face,a part of a person that is used to refer to a person; "he looked out at a roomful of faces"; "when he returned to work he met many new faces"
+39058,face,the part of an animal corresponding to the human face
+39059,face,status in the eyes of others; "he lost face"
+39060,face,the general outward appearance of something; "the face of the city is changing"
+39061,face,the striking or working surface of an implement
+39062,face,the side upon which the use of a thing depends (usually the most prominent surface of an object); "he dealt the cards face down"
+39063,face,a vertical surface of a building or cliff
+39064,face human_face,the front of the human head from the forehead to the chin and ear to ear; "he washed his face"; "I wish I had seen the look on his face when he got the news"
+39065,face-amount_certificate_company,a regulated investment company that pays a stated amount to certificate holders on a stated maturity date
+39066,face-off,(ice hockey) the method of starting play; a referee drops the puck between two opposing players
+39067,face_angle,the angle formed by two edges of a polyhedral angle
+39068,face_card picture_card court_card,one of the twelve cards in a deck bearing a picture of a face
+39069,face_guard,face mask consisting of a strong wire mesh on the front of football helmets
+39070,face_lift facelift face_lifting,a renovation that improves the outward appearance (as of a building) but usually does not involve major changes; "give your home a facelift"; "more than a facelift, the new model marks a fundamental change of direction"
+39071,face_lift facelift lift face_lifting cosmetic_surgery rhytidectomy rhytidoplasty nip_and_tuck,plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised; "some actresses have more than one face lift"
+39072,face_mask,mask that provides a protective covering for the face in such sports as baseball or football or hockey
+39073,face_powder,cosmetic powder for the face
+39074,face_recognition,the visual perception of familiar faces
+39075,face_recognition facial_recognition automatic_face_recognition,biometric identification by scanning a person's face and matching it against a library of known faces; "they used face recognition to spot known terrorists"
+39076,face_saver face_saving,an act that avoids a loss of face (of dignity or prestige)
+39077,face_time,work time spent at the location of or in the presence of other people; "instead of working on the problem at home he devoted face time to it at the office"
+39078,face_value,the apparent worth as opposed to the real worth
+39079,face_veil,a piece of more-or-less transparent material that covers the face
+39080,faceplate,a protective covering for the front of a machine or device (as a door lock or computer component)
+39081,facer,(a dated Briticism) a serious difficulty with which one is suddenly faced
+39082,facet,a smooth surface (as of a bone or cut gemstone)
+39083,facet_plane,the plane of a facet of an object (as of a cube)
+39084,facetiousness,playful humor
+39085,facial,care for the face that usually involves cleansing and massage and the application of cosmetic creams
+39086,facial facial_nerve nervus_facialis seventh_cranial_nerve,cranial nerve that supplies facial muscles
+39087,facial_artery arteria_facialis external_maxillary_artery,an artery that originates in the external carotid and gives off branches that supply the neck and face
+39088,facial_expression facial_gesture,a gesture executed with the facial muscles
+39089,facial_hair,hair on the face (especially on the face of a man)
+39090,facial_index,the ratio (in percent) of the maximum width to the maximum height of the face
+39091,facial_muscle,any of the skeletal muscles of the face
+39092,facial_profiling,identification of criminals and terrorist by means of videotapes of their faces; "facial profiling is a new form of airport security"
+39093,facial_tissue,tissue paper suitable for use on the face
+39094,facial_vein vena_facialis,any of several veins draining the face
+39095,facilitation,the condition of being made easy (or easier); "social facilitation is an adaptive condition"
+39096,facilitation,(neurophysiology) phenomenon that occurs when two or more neural impulses that alone are not enough to trigger a response in a neuron combine to trigger an action potential
+39097,facilitation,act of assisting or making easier the progress or improvement of something
+39098,facilitator,someone who makes progress easier
+39099,facility,something designed and created to serve a particular function and to afford a particular convenience or service; "catering facilities"; "toilet facilities"; "educational facilities"
+39100,facility,a service that an organization or a piece of equipment offers you; "a cell phone with internet facility"
+39101,facility installation,a building or place that provides a particular service or is used for a particular industry; "the assembly plant is an enormous facility"
+39102,facility readiness,a natural effortlessness; "they conversed with great facility"; "a happy readiness of conversation"--Jane Austen
+39103,facing,a lining applied to the edge of a garment for ornamentation or strengthening
+39104,facing cladding,a protective covering that protects the outside of a building
+39105,facing veneer,an ornamental coating to a building
+39106,facsimile autotype,an exact copy or reproduction
+39107,facsimile facsimile_machine fax,duplicator that transmits the copy by wire or radio
+39108,fact,an event known to have happened or something known to have existed; "your fears have no basis in fact"; "how much of the story is fact and how much fiction is hard to tell"
+39109,fact,a statement or assertion of verified information about something that is the case or has happened; "he supported his argument with an impressive array of facts"
+39110,fact,a concept whose truth can be proved; "scientific hypotheses are not facts"
+39111,fact,a piece of information about circumstances that exist or events that have occurred; "first you must collect all the facts of the case"
+39112,faction sect,a dissenting clique
+39113,factoid,something resembling a fact; unverified (often invented) information that is given credibility because it appeared in print
+39114,factoid,a brief (usually one sentence and usually trivial) news item
+39115,factor,any of the numbers (or symbols) that form a product when multiplied together
+39116,factor,anything that contributes causally to a result; "a number of factors determined the outcome"
+39117,factor,an independent variable in statistics
+39118,factor_analysis,any of several methods for reducing correlational data to a smaller number of dimensions or factors; beginning with a correlation matrix a small number of components or factors are extracted that are regarded as the basic variables that account for the interrelations observed in the data
+39119,factor_of_proportionality constant_of_proportionality,the constant value of the ratio of two proportional quantities x and y; usually written y = kx, where k is the factor of proportionality
+39120,factorial,the product of all the integers up to and including a given integer; "1, 2, 6, 24, and 120 are factorials"
+39121,factorization factorisation factoring,(mathematics) the resolution of an expression into factors such that when multiplied together they give the original expression
+39122,factory mill manufacturing_plant manufactory,a plant consisting of one or more buildings with facilities for manufacturing
+39123,factory_price,price charged for goods picked up at the factory
+39124,factory_ship,a whaling ship equipped to process whale products at sea
+39125,factory_whistle,a whistle at a factory that is sounded to announce times for starting or stopping work
+39126,factotum,a servant employed to do a variety of jobs
+39127,factuality factualness,the quality of being actual or based on fact; "the realm of factuality must be distinguished from the realm of imagination"
+39128,facula,a bright spot on a planet
+39129,facula solar_facula,a large bright spot on the sun's photosphere occurring most frequently in the vicinity of sunspots
+39130,faculty mental_faculty module,one of the inherent cognitive or perceptual powers of the mind
+39131,fad craze furor furore cult rage,an interest followed with exaggerated zeal; "he always follows the latest fads"; "it was all the rage that season"
+39132,fad_diet,a reducing diet that enjoys temporary popularity
+39133,faddist,a person who subscribes to a variety of fads
+39134,fade disappearance,gradually ceasing to be visible
+39135,fadeout,a gradual temporary loss of a transmitted signal due to electrical disturbances
+39136,fading_away,gradually diminishing in brightness or loudness or strength
+39137,fado,a sad Portuguese folksong
+39138,fag_end,the frayed end of a length of cloth or rope
+39139,fag_end tail tail_end,the time of the last part of something; "the fag end of this crisis-ridden century"; "the tail of the storm"
+39140,fagot faggot,a bundle of sticks and branches bound together
+39141,fagot faggot fag fairy nance pansy queen queer poof poove pouf,offensive term for a homosexual man
+39142,fagot_stitch faggot_stitch,the stitch that ties a group of parallel threads together in fagoting
+39143,fagoting faggoting,embroidery in which groups of parallel threads are tied together with fagot stitches
+39144,faience,glazed earthenware decorated with opaque colors
+39145,fail-safe,a mechanism capable of returning to a safe state in case there is a failure or malfunction
+39146,failing flunk,failure to reach a minimum required performance; "his failing the course led to his disqualification"; "he got two flunks on his report"
+39147,failing weakness,a flaw or weak point; "he was quick to point out his wife's failings"
+39148,faille,a ribbed woven fabric of silk or rayon or cotton
+39149,failure,lack of success; "he felt that his entire life had been a failure"; "that year there was a crop failure"
+39150,failure,loss of ability to function normally; "kidney failure"
+39151,failure,an event that does not accomplish its intended purpose; "the surprise party was a complete failure"
+39152,failure,an act that fails; "his failure to pass the test"
+39153,failure,an unexpected omission; "he resented my failure to return his call"; "the mechanic's failure to check the brakes"
+39154,failure loser nonstarter unsuccessful_person,a person with a record of failing; someone who loses consistently
+39155,faineance idleness,the trait of being idle out of a reluctance to work
+39156,faint swoon syncope deliquium,a spontaneous loss of consciousness caused by insufficient blood to the brain
+39157,faintheartedness faintness,the trait of lacking boldness and courage; "faintness of heart and infirmity of purpose"
+39158,faintness,a feeling of faintness and of being ready to swoon
+39159,faintness,the property of being without strength; "the faintness or potency of the feeling"
+39160,faintness,barely audible
+39161,fair,gathering of producers to promote business; "world fair"; "trade fair"; "book fair"
+39162,fair,a competitive exhibition of farm products; "she won a blue ribbon for her baking at the county fair"
+39163,fair-trade_act,formerly a state law that protected manufacturers from price-cutting by allowing them to set minimum retail prices for their merchandise; eliminated by the United States Congress in 1975
+39164,fair-trade_agreement,an agreement (illegal in the United States) between the manufacturer of a trademarked item of merchandise and its retail distributors to sell the item at a price at or above the price set by the manufacturer
+39165,fair_ball,(baseball) a ball struck with the bat so that it stays between the lines (the foul lines) that define the width of the playing field
+39166,fair_catch,(American football) a catch of a punt on the fly by a defensive player who has signalled that he will not run and so should not be tackled
+39167,fair_chance sporting_chance,a reasonable probability of success
+39168,fair_copy,a clean copy of a corrected draft
+39169,fair_deal square_deal,fair treatment
+39170,fair_hearing,a hearing that is granted in extraordinary situations where the normal judicial process would be inadequate to secure due process because the person would be harmed or denied their rights before a judicial remedy became available (as in deportation or loss of welfare benefits)
+39171,fair_trade,trade that satisfies certain criteria on the supply chain of the goods involved, usually including fair payment for producers; often with other social and environmental considerations
+39172,fair_trade,trade that is conducted legally
+39173,fair_use,the conditions under which you can use material that is copyrighted by someone else without paying royalties
+39174,fair_weather sunshine temperateness,moderate weather; suitable for outdoor activities
+39175,fairground,an open area for holding fairs or exhibitions or circuses
+39176,fairlead,a pulley-block used to guide a rope forming part of a ship's rigging to avoid chafing
+39177,fairness equity,conformity with rules or standards; "the judge recognized the fairness of my claim"
+39178,fairness fair-mindedness candor candour,ability to make judgments free from discrimination or dishonesty
+39179,fairness_commission,a commission delegated to ensure opportunities for the expression of opposing views
+39180,fairway,the usual course taken by vessels through a harbor or coastal waters
+39181,fairway,a tract of ground free of obstacles to movement
+39182,fairway,the area between the tee and putting green where the grass is cut short
+39183,fairy faery faerie fay sprite,a small being, human in form, playful and having magical powers
+39184,fairy-ring_mushroom Marasmius_oreades,mushroom that grows in a fairy ring
+39185,fairy_bluebird bluebird,fruit-eating mostly brilliant blue songbird of the East Indies
+39186,fairy_cup Mitella_diphylla,miterwort of northeastern North America usually with two opposite leaves on erect flowering stems that terminate in erect racemes of white flowers
+39187,fairy_godmother,a generous benefactor
+39188,fairy_godmother,a female character in some fairy stories who has magical powers and can bring unexpected good fortune to the hero or heroine
+39189,fairy_light,a small colored light used for decoration (especially at Christmas)
+39190,fairy_ring fairy_circle,a ring of fungi marking the periphery of the perennial underground growth of the mycelium
+39191,fairy_shrimp,small freshwater branchiopod having a transparent body with many appendages; swims on its back
+39192,fairy_swallow,fancy domestic pigeon having blue-and-white plumage and heavily muffed feet
+39193,fairyland faerie faery,the enchanted realm of fairies
+39194,fairytale fairy_tale fairy_story,a story about fairies; told to amuse children
+39195,fairytale fairy_tale fairy_story cock-and-bull_story song_and_dance,an interesting but highly implausible story; often told as an excuse
+39196,fait_accompli accomplished_fact,an irreversible accomplishment
+39197,faith,loyalty or allegiance to a cause or a person; "keep the faith"; "they broke faith with their investors"
+39198,faith trust,complete confidence in a person or plan etc; "he cherished the faith of a good woman"; "the doctor-patient relationship is based on trust"
+39199,faith_healing faith_cure,care provided through prayer and faith in God
+39200,faithful,any loyal and steadfast following
+39201,faithlessness falseness fickleness inconstancy,unfaithfulness by virtue of being unreliable or treacherous
+39202,fake sham postiche,something that is a counterfeit; not what it seems to be
+39203,fake_book,a fake in the form of an imitation book; used to fill bookcases of people who wish to appear scholarly
+39204,fakery,the act of faking (or the product of faking)
+39205,fakir fakeer faqir faquir,a Muslim or Hindu mendicant monk who is regarded as a holy man
+39206,falafel felafel,small croquette of mashed chick peas or fava beans seasoned with sesame seeds
+39207,falangist phalangist,a Spanish member of General Franco's political party
+39208,falchion,a short broad slightly convex medieval sword with a sharp point
+39209,falciform_ligament,a ligament that attaches part of the liver to the diaphragm and the abdominal wall
+39210,falcon,diurnal birds of prey having long pointed powerful wings adapted for swift flight
+39211,falcon-gentle falcon-gentil,female falcon especially a female peregrine falcon
+39212,falconer hawker,a person who breeds and trains hawks and who follows the sport of falconry
+39213,falconry,the art of training falcons to hunt and return
+39214,fall,a movement downward; "the rise and fall of the tides"
+39215,fall,a lapse into sin; a loss of innocence or of chastity; "a fall from virtue"
+39216,fall autumn,the season when the leaves fall from the trees; "in the fall of 1973"
+39217,fall downfall,a sudden decline in strength or number or importance; "the fall of the House of Hapsburg"
+39218,fall pin,when a wrestler's shoulders are forced to the mat
+39219,fall-blooming_hydrangea Hydrangea_paniculata,deciduous shrub or small tree with pyramidal flower clusters
+39220,fall_armyworm Spodoptera_frugiperda,larva of a migratory American noctuid moth; destroys grasses and small grains
+39221,fall_cankerworm,green or brown white-striped looper; larva of Alsophila pometaria
+39222,fall_dandelion arnica_bud Leontodon_autumnalis,fall-blooming European herb with a yellow flower; naturalized in the United States
+39223,fall_webworm Hyphantria_cunea,a variety of webworm
+39224,fallaciousness,result of a fallacy or error in reasoning
+39225,fallacy false_belief,a misconception resulting from incorrect reasoning
+39226,fallboard fall-board,the hinged protective covering that protects the keyboard of a piano when it is not being played
+39227,faller,a person who falls; "one of them was safe but they were unable to save the faller"; "a faller among thieves"
+39228,fallibility,the likelihood of making errors
+39229,fallout radioactive_dust,the radioactive particles that settle to the ground after a nuclear explosion
+39230,fallout_shelter,a shelter to protect occupants from the fallout from an atomic bomb
+39231,fallow,cultivated land that is not seeded for one or more growing seasons
+39232,fallow_deer Dama_dama,small Eurasian deer
+39233,falls,the petals or sepals of a flower that bend downward (especially the outer perianth of an iris)
+39234,false_alarm,a warning that is given about something that fails to occur
+39235,false_alumroot fringe_cups Tellima_grandiflora,plant growing in clumps with mostly basal leaves and cream-colored or pale pink fringed flowers in several long racemes; Alaska to coastal central California and east to Idaho
+39236,false_asphodel,a plant of the genus Tofieldia having linear chiefly basal leaves and small spicate flowers
+39237,false_azalea fool's_huckleberry Menziesia_ferruginea,straggling shrub of northwestern North America having foliage with a bluish tinge and umbels of small bell-shaped flowers
+39238,false_bottom,a horizontal structure that partitions a ship or box (especially one built close to the actual bottom)
+39239,false_bracken Culcita_dubia,resembles Pteridium aquilinum; of Queensland, Australia
+39240,false_buckthorn chittamwood chittimwood shittimwood black_haw Bumelia_lanuginosa,deciduous tree of southeastern United States and Mexico
+39241,false_bugbane Trautvetteria_carolinensis,tall perennial of the eastern United States having large basal leaves and white summer flowers
+39242,false_chamomile,any of various autumn-flowering perennials having white or pink to purple flowers that resemble asters; wild in moist soils from New Jersey to Florida and Texas
+39243,false_deathcap Amanita_mappa,agaric often confused with the death cup
+39244,false_dragonhead false_dragon_head obedient_plant Physostegia_virginiana,North American plant having a spike of two-lipped pink or white flowers
+39245,false_face,a mask worn as part of a masquerade costume
+39246,false_foxglove Aureolaria_pedicularia Gerardia_pedicularia,multi-stemmed North American annual having solitary axillary dark golden-yellow flowers resembling those of the foxglove; sometimes placed in genus Gerardia
+39247,false_foxglove Aureolaria_virginica Gerardia_virginica,sparsely branched North American perennial with terminal racemes of bright yellow flowers resembling those of the foxglove; sometimes placed in genus Gerardia
+39248,false_gavial Tomistoma_schlegeli,crocodile of southeast Asia similar to but smaller than the gavial
+39249,false_goatsbeard Astilbe_biternata,North American astilbe with panicles of creamy white flowers
+39250,false_gromwell,any of several North American perennial herbs with hairy foliage and small yellowish or greenish flowers
+39251,false_heather golden_heather Hudsonia_ericoides,North American decumbent evergreen heathlike plant with yellow flowers
+39252,false_imprisonment,(law) confinement without legal authority
+39253,false_indigo bastard_indigo Amorpha_californica,an erect to spreading hairy shrub of the Pacific coast of the United States having racemes of red to indigo flowers
+39254,false_indigo bastard_indigo Amorpha_fruticosa,dense shrub of moist riverbanks and flood plains of the eastern United States having attractive fragrant foliage and dense racemes of dark purple flowers
+39255,false_lily_of_the_valley Maianthemum_bifolium,small white-flowered plant of western Europe to Japan
+39256,false_lily_of_the_valley Maianthemum_canadense,small two-leaved herb of the northern United States and parts of Canada having racemes of small fragrant white flowers
+39257,false_lupine golden_pea yellow_pea Thermopsis_macrophylla,western United States bushy herb having yellow pea-like flowers
+39258,false_mallow,an American plant of the genus Malvastrum
+39259,false_miterwort false_mitrewort Tiarella_unifoliata,plant with tiny white flowers hanging in loose clusters on leafy stems; moist woods from Alaska to central California and east to Montana
+39260,false_morel,a fungus of the family Helvellaceae
+39261,false_nettle bog_hemp,any of several flowering weeds of the genus Boehmeria lacking stinging hairs
+39262,false_pregnancy pseudocyesis,physiological state in which a woman exhibits symptoms of pregnancy but is not pregnant
+39263,false_pretense false_pretence,(law) an offense involving intent to defraud and false representation and obtaining property as a result of that misrepresentation
+39264,false_return,an incorrect income tax return
+39265,false_rue_anemone false_rue Isopyrum_biternatum,slender erect perennial of eastern North America having tuberous roots and pink-tinged white flowers; resembles meadow rue
+39266,false_saber-toothed_tiger,North American cat of the Miocene and Pliocene; much earlier and less specialized than members of the genus Smiledon
+39267,false_sago fern_palm Cycas_circinalis,southeastern Indian cycad with palmlike foliage
+39268,false_scorpion pseudoscorpion,small nonvenomous arachnid resembling a tailless scorpion
+39269,false_tamarisk German_tamarisk Myricaria_germanica,Eurasian shrub resembling the tamarisk
+39270,false_teeth,a removable denture
+39271,false_truffle,any of various fungi of the family Rhizopogonaceae having subterranean fruiting bodies similar to the truffle
+39272,false_vampire false_vampire_bat,any New or Old World carnivorous bat erroneously thought to suck blood but in fact feeding on insects
+39273,false_verdict,a manifestly unjust verdict; not true to the evidence
+39274,false_vocal_cord false_vocal_fold superior_vocal_cord ventricular_fold vestibular_fold,either of the upper two vocal cords that are not involved in vocalization
+39275,false_wintergreen Pyrola_americana Pyrola_rotundifolia_americana,evergreen of eastern North America with leathery leaves and numerous white flowers
+39276,falsehood falsity untruth,a false statement
+39277,falsetto,a male singing voice with artificially high tones in an upper register
+39278,falsie,padding that is worn inside a brassiere
+39279,falsification falsehood,the act of rendering something false as by fraudulent changes (of documents or measures etc.) or counterfeiting
+39280,falsification falsifying disproof refutation refutal,the act of determining that something is false
+39281,falsification misrepresentation,a willful perversion of facts
+39282,falsifier,someone who falsifies
+39283,falsity falseness,the state of being false or untrue; "argument could not determine its truth or falsity"
+39284,falun_gong,a spiritual movement that began in China in the latter half of the 20th century and is based on Buddhist and Taoist teachings and practices
+39285,fame,favorable public reputation
+39286,fame celebrity renown,the state or quality of being widely honored and acclaimed
+39287,familial_hypercholesterolemia,congenital disorder characterized by high levels of cholesterol and early development of atherosclerosis
+39288,familiar,a person attached to the household of a high official (as a pope or bishop) who renders service in return for support
+39289,familiar familiar_spirit,a spirit (usually in animal form) that acts as an assistant to a witch or wizard
+39290,familiarity,usualness by virtue of being familiar or well known
+39291,familiarity impropriety indecorum liberty,an act of undue intimacy
+39292,familiarity intimacy closeness,close or warm friendship; "the absence of fences created a mysterious intimacy in which no one knew privacy"
+39293,familiarization familiarisation,the experience of becoming familiar with something
+39294,family,(biology) a taxonomic group containing one or more genera; "sharks belong to the fish family"
+39295,family family_line folk kinfolk kinsfolk sept phratry,people descended from a common ancestor; "his family has lived in Massachusetts since the Mayflower"
+39296,family family_unit,primary social group; parents and children; "he wanted to have a good job before starting a family"
+39297,family fellowship,an association of people who share common beliefs or activities; "the message was addressed not just to employees but to every member of the company family"; "the church welcomed new members into its fellowship"
+39298,family household house home menage,a social unit living together; "he moved his family to Virginia"; "It was a good Christian household"; "I waited until the whole house was asleep"; "the teacher asked how many people made up his home"; "the family refused to accept his will"
+39299,family_Bible,a large Bible with pages to record marriages and births
+39300,family_business,a corporation that is entirely owned by the members of a single family
+39301,family_court domestic_relations_court court_of_domestic_relations,a court in some states in the United States that has jurisdiction over family disputes (especially those involving children)
+39302,family_doctor,a general practitioner who treats all the family members
+39303,family_history,part of a patient's medical history in which questions are asked in an attempt to find out whether the patient has hereditary tendencies toward particular diseases
+39304,family_man,a man whose family is of major importance in his life
+39305,family_practice family_medicine,medical practice that provides health care regardless of age or sex while placing emphasis on the family unit
+39306,family_room,a recreation room in a private house
+39307,family_therapy,any of several therapeutic approaches in which a family is treated as a whole
+39308,famine,a severe shortage of food (as through crop failure) resulting in violent hunger and starvation and death
+39309,famotidine Pepcid,a histamine blocker (trade name Pepcid) used to treat peptic ulcers and gastritis and esophageal reflux
+39310,famulus,a close attendant (as to a scholar)
+39311,fan,a device for creating a current of air by movement of a surface or surfaces
+39312,fan buff devotee lover,an ardent follower and admirer
+39313,fan_belt,a belt driven by the crankshaft that drives a fan that pulls air through the radiator
+39314,fan_blade,blade of a rotating fan
+39315,fan_dance,a solo dance in which large fans are manipulated to suggest or reveal nakedness
+39316,fan_letter,a letter that is a piece of fan mail
+39317,fan_mail,mail sent to public figures from their admirers; "he hired someone to answer his fan mail"
+39318,fan_palm,palm having palmate or fan-shaped leaves
+39319,fan_tracery,the carved tracery on fan vaulting
+39320,fan_vaulting,an elaborate system of vaulting in which the ribs diverge like fans
+39321,fanaloka Fossa_fossa,civet of Madagascar
+39322,fanatic fiend,a person motivated by irrational enthusiasm (as for a cause); "A fanatic is one who can't change his mind and won't change the subject"--Winston Churchill
+39323,fanaticism fanatism zealotry,excessive intolerance of opposing views
+39324,fancier enthusiast,a person having a strong liking for something
+39325,fancy,imagination or fantasy; held by Coleridge to be more casual and superficial than true imagination; "never had the wildest flights of fancy imagined such magnificence"
+39326,fancy_dress masquerade masquerade_costume,a costume worn as a disguise at a masquerade party
+39327,fancy_goods,goods that are chiefly ornamental
+39328,fancy_man paramour,a woman's lover
+39329,fandango,a provocative Spanish courtship dance in triple time; performed by a man and a woman playing castanets
+39330,fandom,the fans of a sport or famous person
+39331,fang,an appendage of insects that is capable of injecting venom; usually evolved from the legs
+39332,fang,canine tooth of a carnivorous animal; used to seize and tear its prey
+39333,fang,hollow or grooved tooth of a venomous snake; used to inject its poison
+39334,fanion,a small flag used by surveyors or soldiers to mark a position
+39335,fanjet fan-jet fanjet_engine turbojet turbojet_engine turbofan turbofan_engine,a jet engine in which a fan driven by a turbine provides extra air to the burner and gives extra thrust
+39336,fanjet fan-jet turbofan turbojet,an airplane propelled by a fanjet engine
+39337,fanlight,a semicircular window over a door or window; usually has sash bars like the ribs of a fan
+39338,fanny_pack butt_pack,a waist pack worn with the pouch in back
+39339,fantail,an overhang consisting of the fan-shaped part of the deck extending aft of the sternpost of a ship
+39340,fantan fan_tan,a Chinese gambling game; a random number of counters are placed under a bowl and you gamble on how many will be left (0, 1, 2, or 3 modulo 4)
+39341,fantan sevens parliament,a card game in which you play your sevens and other cards in sequence in the same suit as the sevens; you win if you are the first to use all your cards
+39342,fantasia,a musical composition of a free form usually incorporating several familiar themes
+39343,fantasist,a creator of fantasies
+39344,fantast futurist,someone who predicts the future
+39345,fantasy phantasy,fiction with a large amount of imagination in it; "she made a lot of money writing romantic fantasies"
+39346,fantasy phantasy,imagination unrestricted by reality; "a schoolgirl fantasy"
+39347,fantasy_life phantasy_life,an imaginary life lived in a fantasy world
+39348,fantasy_world phantasy_world fairyland,something existing solely in the imagination (but often mistaken for reality)
+39349,fantods,an ill-defined state of irritability and distress
+39350,far_cry,distance estimated in terms of the audibility of a cry; "it's a far cry from here"
+39351,far_cry,a disappointing disparity; "it was a far cry from what he had expected"
+39352,farad F,the capacitance of a capacitor that has an equal and opposite charge of 1 coulomb on each plate and a voltage difference of 1 volt between the plates
+39353,farandole,a lively dance from Provence; all the dancers join hands and execute various figures
+39354,farce farce_comedy travesty,a comedy characterized by broad satire and improbable situations
+39355,fardel,a burden (figuratively in the form of a bundle)
+39356,fare,a paying (taxi) passenger
+39357,fare,the food and drink that are regularly served or consumed
+39358,fare transportation,the sum charged for riding in a public conveyance
+39359,fare-stage,a section along the route of a bus for which the fare is the same
+39360,fare-thee-well,state of perfection; the utmost degree; "they polished the furniture to a fare-thee-well"
+39361,fare_increase,increase in the sum charged for riding in a public conveyance
+39362,farewell leave leave-taking parting,the act of departing politely; "he disliked long farewells"; "he took his leave"; "parting is such sweet sorrow"
+39363,farewell word_of_farewell,an acknowledgment or expression of goodwill at parting
+39364,farfalle bowtie_pasta,pasta shaped with scalloped edges and pinched in the middle, suggestive of a bow tie
+39365,farina,fine meal made from cereal grain especially wheat; often used as a cooked cereal or in puddings
+39366,farkleberry sparkleberry Vaccinium_arboreum,shrub or small tree of eastern United States having black inedible berries
+39367,farm,workplace consisting of farm buildings and cultivated land as a unit; "it takes several people to work the farm"
+39368,farm_bill,a statute that would regulate farm production and prices
+39369,farm_boy,a boy who has grown up on a farm
+39370,farm_building,a building on a farm
+39371,farm_girl,a girl who has grown up on a farm
+39372,farm_horse dobbin,a quiet plodding workhorse
+39373,farm_machine,a machine used in farming
+39374,farm_team farm_club,a minor-league team that is owned by a major-league team (especially in baseball)
+39375,farmer husbandman granger sodbuster,a person who operates a farm
+39376,farmer's_lung thresher's_lung,alveolitis caused by an allergic reaction to fungal spores in the dust that is inhaled from moldy hay
+39377,farmer's_market green_market greenmarket,an open-air marketplace for farm products
+39378,farmerette,a woman working on a farm
+39379,farmhand fieldhand field_hand farm_worker,a hired hand on a farm
+39380,farmhouse,house for a farmer and family
+39381,farming agriculture husbandry,the practice of cultivating the land or raising stock
+39382,farming land,agriculture considered as an occupation or way of life; "farming is a strenuous life"; "there's no work on the land any more"
+39383,farmland farming_area,a rural area where farming is practiced
+39384,farmplace farm-place farmstead,a farm together with its buildings
+39385,farmstead,the buildings and adjacent grounds of a farm
+39386,farmyard,an area adjacent to farm buildings
+39387,farness remoteness farawayness,the property of being remote
+39388,faro,a card game in which players bet against the dealer on the cards he will draw from a dealing box
+39389,farrier horseshoer,a person who shoes horses
+39390,farrow farrowing,the production of a litter of pigs
+39391,fart farting flatus wind breaking_wind,a reflex that expels intestinal gas through the anus
+39392,farthing,a former British bronze coin worth a quarter of a penny
+39393,farthingale,a hoop worn beneath a skirt to extend it horizontally; worn by European women in the 16th and 17th centuries
+39394,fartlek,a method of athletic training (especially for runners) in which strenuous effort and normal effort alternate in a continuous exercise
+39395,fasces,bundle of rods containing an axe with the blade protruding; in ancient Rome it was a symbol of a magistrate's power; in modern Italy it is a symbol of fascism
+39396,fascia facia,a sheet or band of fibrous connective tissue separating or binding together muscles and organs etc
+39397,fascicle fascicule,an installment of a printed work
+39398,fasciculation,muscular twitching of contiguous groups of muscle fibers
+39399,fascination,the capacity to attract intense interest; "he held the children spellbound with magic tricks and other fascinations"
+39400,fascination captivation,the state of being intensely interested (as by awe or terror)
+39401,fascioliasis fasciolosis,infestation with the liver fluke Fasciola hepatica; liver damage sometimes occurs; related to liver rot
+39402,fasciolopsiasis,infestation with the large intestinal fluke Fasciolopsis buski; common in eastern Asia
+39403,fascism,a political theory advocating an authoritarian hierarchical government (as opposed to democracy or liberalism)
+39404,fascist,an adherent of fascism or other authoritarian views
+39405,fascista,an Italian fascist under Mussolini
+39406,fashion,the latest and most admired style in clothes and cosmetics and behavior
+39407,fashion,consumer goods (especially clothing) in the current mode
+39408,fashion,characteristic or habitual practice
+39409,fashion_consultant fashionmonger,someone who advises you about fashionable clothing
+39410,fashion_plate,a plate illustrating the latest fashion in dress
+39411,fast fasting,abstaining from food
+39412,fast_break,(basketball) a rapid dash to get a shot as soon as possible after taking possession of the ball
+39413,fast_buck quick_buck,quick or easy earnings; "they are traders out to make a fast buck"
+39414,fast_day,a day designated for fasting
+39415,fast_food,inexpensive food (hamburgers or chicken or milkshakes) prepared and served quickly
+39416,fast_lane,a hectic and pressured lifestyle often characterized by recklessness or dissipation; "life in fashion's fast lane has taught her a lot"
+39417,fast_lane,the traffic lane for vehicles that are moving rapidly
+39418,fast_reactor,nuclear reactor in which nuclear fissions are caused by fast neutrons because little or no moderator is used
+39419,fast_time_scale,(simulation) the time scale used in data processing when the time-scale factor is less than one
+39420,fast_track,a rapid means of achieving a goal; "they saw independence as the fast track to democracy"; "he took a fast track to the top of the corporate ladder"; "the company went off the fast track when the stock market dropped"
+39421,fastball heater smoke hummer bullet,(baseball) a pitch thrown with maximum velocity; "he swung late on the fastball"; "he showed batters nothing but smoke"
+39422,fastener,a person who fastens or makes fast; "he found the door fastened and wondered who the fastener was"
+39423,fastener fastening holdfast fixing,restraint that attaches to something or holds something in place
+39424,fastening attachment,the act of fastening things together
+39425,fastidiousness,the trait of being meticulous about matters of taste or style; "neatness and fastidiousness of dress"
+39426,fastnacht,doughnut traditionally eaten on Shrove Tuesday
+39427,fastness fixedness fixity fixture secureness,the quality of being fixed in place as by some firm attachment
+39428,fat,a soft greasy substance occurring in organic tissue and consisting of a mixture of lipids (mostly triglycerides); "pizza has too much fat"
+39429,fat-soluble_vitamin,any vitamin that is soluble in fats
+39430,fat_cat,a wealthy and privileged person
+39431,fat_cell adipose_cell,cells composed of fat
+39432,fat_chance slim_chance,little or no chance of success
+39433,fat_embolism,serious condition in which fat blocks an artery; fat can enter the blood stream after a long bone is fractured or if adipose tissue is injured or as a result of a fatty liver
+39434,fat_farm,a health spa that specializes in helping people lose weight
+39435,fat_metabolism,a metabolic process that breaks down ingested fats into fatty acids and glycerol and then into simpler compounds that can be used by cells of the body
+39436,fata_morgana,a mirage in the Strait of Messina (attributed to the Arthurian sorcerer Morgan le Fay)
+39437,fatal_accident casualty,an accident that causes someone to die
+39438,fatalism,a submissive mental attitude resulting from acceptance of the doctrine that everything that happens is predetermined and inevitable
+39439,fatalism,a philosophical doctrine holding that all events are predetermined in advance for all time and human beings are powerless to change them
+39440,fatalist determinist predestinarian predestinationist,anyone who submits to the belief that they are powerless to change their destiny
+39441,fatality,the quality of being able to cause death or fatal disasters
+39442,fatality human_death,a death resulting from an accident or a disaster; "a decrease in the number of automobile fatalities"
+39443,fatback,salt pork from the back of a hog carcass
+39444,fathead goof goofball bozo jackass goose cuckoo twat zany,a man who is a stupid incompetent fool
+39445,father,a person who holds an important or distinguished position in some organization; "the tennis fathers ruled in her favor"; "the city fathers endorsed the proposal"
+39446,father male_parent begetter,a male parent (also used as a term of address to your father); "his father was born in Atlanta"
+39447,father-figure,a man (often a powerful or influential man) who arouses emotions usually felt for your real father and with whom you identify psychologically
+39448,father-in-law,the father of your spouse
+39449,father_figure father_surrogate,a man who takes over all the functions of the real father
+39450,fatherhood,the status of a religious leader
+39451,fatherhood,the status of a father
+39452,fatherhood paternity,the kinship relation between an offspring and the father
+39453,fatherland homeland motherland mother_country country_of_origin native_land,the country where you were born
+39454,fatherliness paternal_quality,the benignity and protectiveness of or befitting a father; "the gentleness and fatherliness of the strange old man eased her fears"
+39455,fathom fthm,a linear unit of measurement (equal to 6 feet) for water depth
+39456,fathom fthm,(mining) a unit of volume (equal to 6 cubic feet) used in measuring bodies of ore
+39457,fatigability,susceptibility to fatigue; a tendency to get tired or lose strength
+39458,fatigue,used of materials (especially metals) in a weakened state caused by long stress; "metal fatigue"
+39459,fatigue,(always used with a modifier) boredom resulting from overexposure to something; "he was suffering from museum fatigue"; "after watching TV with her husband she had a bad case of football fatigue"; "the American public is experiencing scandal fatigue"; "political fatigue"
+39460,fatigue weariness tiredness,temporary loss of strength and energy resulting from hard physical or mental work; "he was hospitalized for extreme fatigue"; "growing fatigue was apparent from the decline in the execution of their athletic skills"; "weariness overcame her after twelve hours and she fell asleep"
+39461,fatigue_crack,a crack in metal resulting from metal fatigue
+39462,fatigue_duty fatigue,labor of a nonmilitary kind done by soldiers (cleaning or digging or draining or so on); "the soldiers were put on fatigue to teach them a lesson"; "they were assigned to kitchen fatigues"
+39463,fatigue_fracture stress_fracture,fracture resulting from excessive activity rather than a specific injury
+39464,fatigue_party,a group of soldiers on fatigue duty
+39465,fatigues,military uniform worn by military personnel when doing menial labor
+39466,fatness fat blubber avoirdupois,excess bodily weight; "she disliked fatness in herself as well as in others"
+39467,fatso fatty fat_person roly-poly butterball,a rotund individual
+39468,fattism fatism,discrimination against people who are overweight
+39469,fatty_acid,any of a class of aliphatic monocarboxylic acids that form part of a lipid molecule and can be derived from fat by hydrolysis; fatty acids are simple molecules built around a series of carbon atoms linked together in a chain of 12 to 22 carbon atoms
+39470,fatty_liver,yellow discoloration as a result of the accumulation of certain fats (triglycerides) in the liver; can be caused by alcoholic cirrhosis or pregnancy or exposure to certain toxins
+39471,fatwa,a ruling on a point of Islamic law that is given by a recognized authority
+39472,fatwah,(Islam) a legal opinion or ruling issued by an Islamic scholar; "bin Laden issued three fatwahs calling upon Muslims to take up arms against the United States"
+39473,faubourg,a New Orleans district lying outside the original city limits; used in combination with the names of various quarters of the city; "in Faubourg Sainte-Marie"
+39474,fauces,the passage between the back of the mouth and the pharynx
+39475,faucet spigot,a regulator for controlling the flow of a liquid from a reservoir
+39476,fauld,a piece of armor plate below the breastplate
+39477,fault,(electronics) equipment failure attributable to some defect in a circuit (loose connection or insulation failure or short circuit etc.); "it took much longer to find the fault than to fix it"
+39478,fault,responsibility for a bad situation or event; "it was John's fault"
+39479,fault,(sports) a serve that is illegal (e.g., that lands outside the prescribed area); "he served too many double faults"
+39480,fault faulting geological_fault shift fracture break,(geology) a crack in the earth's crust resulting from the displacement of one side with respect to the other; "they built it right over a geological fault"; "he studied the faulting of the earth's crust"
+39481,fault_line,(geology) line determined by the intersection of a geological fault and the earth's surface
+39482,faultfinding carping,persistent petty and unjustified criticism
+39483,faultlessness impeccability,the quality of being without an error or fault
+39484,faun,ancient Italian deity in human shape, with horns, pointed ears and a goat's tail; equivalent to Greek satyr
+39485,fauna zoology,all the animal life in a particular region or period; "the fauna of China"; "the zoology of the Pliocene epoch"
+39486,fauteuil,an upholstered armchair
+39487,fauvism,an art movement launched in 1905 whose work was characterized by bright and nonnatural colors and simple forms; influenced the expressionists
+39488,faux_pas gaffe solecism slip gaucherie,a socially awkward or tactless act
+39489,fava_bean broad_bean,shell beans cooked as lima beans
+39490,favism,anemia resulting from eating fava beans; victims have an inherited blood abnormality and enzyme deficiency
+39491,favor favour,a feeling of favorable regard
+39492,favor favour,an inclination to approve; "that style is in favor this season"
+39493,favor favour,an advantage to the benefit of someone or something; "the outcome was in his favor"
+39494,favor favour,an act of gracious kindness
+39495,favorableness favourableness advantageousness positivity positiveness profitableness,the quality of being encouraging or promising of a successful outcome
+39496,favorite favourite,something regarded with special favor or liking; "that book is one of my favorites"
+39497,favorite_son,a United States politician favored mainly in his or her home state
+39498,favoritism favouritism,an inclination to favor some person or group
+39499,favus,a contagious fungal infection of the scalp; occurs mainly in Africa and the Middle East
+39500,fawn,a young deer
+39501,fawn_lily Erythronium_californicum,California dogtooth violet with creamy white flowers sometimes yellow-tinged
+39502,fear fearfulness fright,an emotion experienced in anticipation of some specific pain or danger (usually accompanied by a desire to flee or fight)
+39503,fear reverence awe veneration,a feeling of profound respect for someone or something; "the fear of God"; "the Chinese reverence for the dead"; "the French treat food with gentle reverence"; "his respect for the law bordered on veneration"
+39504,fearfulness,the trait of being afraid
+39505,fearlessness,the trait of feeling no fear
+39506,fearlessness bravery,feeling no fear
+39507,feasibility feasibleness,the quality of being doable
+39508,feast,something experienced with great delight; "a feast for the eyes"
+39509,feast_day fete_day,a day designated for feasting
+39510,feasting banqueting,eating an elaborate meal (often accompanied by entertainment)
+39511,feat effort exploit,a notable achievement; "he performed a great feat"; "the book was her finest effort"
+39512,feather feathering,turning an oar parallel to the water between pulls
+39513,feather plume plumage,the light horny waterproof structure forming the external covering of birds
+39514,feather_ball Mammillaria_plumosa,a low tuberculate cactus with white feathery spines; northeastern Mexico
+39515,feather_bed featherbed,a mattress stuffed with feathers
+39516,feather_boa boa,a long thin fluffy scarf of feathers or fur
+39517,feather_palm,palm having pinnate or featherlike leaves
+39518,feather_reed_grass feathertop Calamagrostis_acutiflora,a variety of reed grass
+39519,feather_star comatulid,free-swimming stalkless crinoid with ten feathery arms; found on muddy sea bottoms
+39520,featherbedding,the practice (usually by a labor union) of requiring an employer to hire more workers than are required
+39521,featheredge,a thin tapering edge
+39522,featherfoil feather-foil,a plant of the genus Hottonia
+39523,feathertop feathertop_grass Pennistum_villosum,northeastern tropical African plant having feathery panicles
+39524,featherweight,an amateur boxer who weighs no more than 126 pounds
+39525,featherweight,weighs 126-139 pounds
+39526,featherweight,a professional boxer who weighs between 123 and 126 pounds
+39527,feature,an article of merchandise that is displayed or advertised more than other articles
+39528,feature characteristic,a prominent attribute or aspect of something; "the map showed roads and other features"; "generosity is one of his best characteristics"
+39529,feature feature_article,a special or prominent article in a newspaper or magazine; "they ran a feature on retirement planning"
+39530,feature feature_film,the principal (full-length) film in a program at a movie theater; "the feature tonight is `Casablanca'"
+39531,feature lineament,the characteristic parts of a person's face: eyes and nose and mouth and chin; "an expression of pleasure crossed his features"; "his lineaments were very regular"
+39532,feature_of_speech feature,(linguistics) a distinctive characteristic of a linguistic unit that serves to distinguish it from other units of the same kind
+39533,fecal_impaction,accumulation of hardened feces in the rectum or lower colon which the person cannot move
+39534,fecal_matter faecal_matter feces faeces BM stool ordure dejection,solid excretory product evacuated from the bowels
+39535,fecal_occult_test faecal_occult_test stool_test,a test performed at home in which you collect specimens of your stool that are tested for traces of blood; used to detect colorectal cancers
+39536,fecklessness,worthlessness due to being feeble and ineffectual
+39537,fecula,excreta (especially of insects)
+39538,feculence,something that is feculent
+39539,fecundity fruitfulness,the intellectual productivity of a creative imagination
+39540,fedayeen,(plural) Arab guerrillas who operate mainly against Israel
+39541,fedelline,extremely fine pasta thinner than vermicelli
+39542,federal_court,a court establish by the authority of a federal government
+39543,federal_deficit,an excess of the federal government's spending over its revenue; "federal deficits can cause inflation"
+39544,federal_department federal_office department_of_the_federal_government,a department of the federal government of the United States
+39545,federal_district,a district set apart as the seat of government of a federation
+39546,federal_government,a government with strong central powers
+39547,federal_savings_bank FSB,a federally chartered savings bank
+39548,federal_tax_lien,lien of the United States on all property of a taxpayer who fails to pay the federal government the taxes for which he or she is liable
+39549,federalism,the idea of a federal organization of more or less self-governing units
+39550,federalist,an advocate of federalism
+39551,federalization federalisation,the state of being under federal control; "the federalization of postal service"
+39552,federalization federalisation,the act of being put under federal control
+39553,federation,an organization formed by merging several groups or parties
+39554,federation,the act of constituting a political unity out of a number of separate states or colonies or provinces so that each member retains the management of its internal affairs
+39555,fedora felt_hat homburg Stetson trilby,a hat made of felt with a creased crown
+39556,fee,a fixed charge for a privilege or for professional services
+39557,fee,an interest in land capable of being inherited
+39558,fee_simple,a fee without limitation to any class of heirs; they can sell it or give it away
+39559,fee_splitting,payment (usually by doctors or lawyers) of part of the fee in return for the referral
+39560,fee_tail,a fee limited to a particular line of heirs; they are not free to sell it or give it away
+39561,feeblemindedness,severe mental deficiency
+39562,feebleness tenuity,the quality of lacking intensity or substance; "a shrill yet sweet tenuity of voice"- Nathaniel Hawthorne
+39563,feed provender,food for domestic livestock
+39564,feed_grain,grain grown for cattle feed
+39565,feedback,the process in which part of the output of a system is returned to its input in order to regulate its further output
+39566,feedback,response to an inquiry or experiment
+39567,feedback_circuit feedback_loop,a circuit that feeds back some of the output to the input of a system
+39568,feeder,an animal that feeds on a particular source of food; "a bark feeder"; "a mud feeder"
+39569,feeder,an animal being fattened or suitable for fattening
+39570,feeder tributary confluent affluent,a branch that flows into the main stream
+39571,feeder_line,a branching path off of a main transportation line (especially an airline)
+39572,feeding alimentation,the act of supplying food and nourishment
+39573,feedlot,a building where livestock are fattened for market
+39574,feedstock,the raw material that is required for some industrial process
+39575,feel,an intuitive awareness; "he has a feel for animals"; "it's easy when you get the feel of it"
+39576,feel,manual stimulation of the genital area for sexual pleasure; "the girls hated it when he tried to sneak a feel"
+39577,feeling,a physical sensation that you experience; "he had a queasy feeling"; "I had a strange feeling in my leg"; "he lost all feeling in his arm"
+39578,feeling,the experiencing of affective and emotional states; "she had a feeling of euphoria"; "he had terrible feelings of guilt"; "I disliked him and the feeling was mutual"
+39579,feeling intuitive_feeling,an intuitive understanding of something; "he had a great feeling for music"
+39580,feelings,emotional or moral sensitivity (especially in relation to personal principles or dignity); "the remark hurt his feelings"
+39581,feijoa feijoa_bush,South American shrub having edible greenish plumlike fruit
+39582,feijoa pineapple_guava,dark-green kiwi-sized tropical fruit with white flesh; used chiefly for jellies and preserves
+39583,feint,any distracting or deceptive maneuver (as a mock attack)
+39584,feist fice,a nervous belligerent little mongrel dog
+39585,feldspar felspar,any of a group of hard crystalline minerals that consist of aluminum silicates of potassium or sodium or calcium or barium
+39586,felicity felicitousness,pleasing and appropriate manner or style (especially manner or style of expression)
+39587,feline felid,any of various lithe-bodied roundheaded fissiped mammals, many with retractile claws
+39588,fell,the act of felling something (as a tree)
+39589,fell felled_seam,seam made by turning under or folding together and stitching the seamed materials to avoid rough edges
+39590,fellah,an agricultural laborer in Arab countries
+39591,fellatio fellation,oral stimulation of the penis
+39592,felloe felly,rim (or part of the rim) into which spokes are inserted
+39593,fellow,a member of a learned society; "he was elected a fellow of the American Physiological Association"
+39594,fellow dude buster,an informal form of address for a man; "Say, fellow, what are you doing?"; "Hey buster, what's up?"
+39595,fellow_traveler fellow_traveller,a communist sympathizer (but not a member of the Communist Party)
+39596,fellowship,money granted (by a university or foundation or other agency) for advanced study or research
+39597,felo-de-se,an act of deliberate self destruction
+39598,felon whitlow,a purulent infection at the end of a finger or toe in the area surrounding the nail
+39599,felony,a serious crime (such as murder or arson)
+39600,felt,a fabric made of compressed matted animal fibers
+39601,felt-tip_pen felt-tipped_pen felt_tip Magic_Marker,a pen with a writing tip made of felt (trade name Magic Marker)
+39602,felt_fern tongue_fern Pyrrosia_lingua Cyclophorus_lingua,east Asian fern having fronds shaped like tongues; sometimes placed in genus Cyclophorus
+39603,felt_fungus Septobasidium_pseudopedicellatum,fungus that frequently encircles twigs and branches of various trees especially citrus trees in southern United States
+39604,felucca,a fast narrow sailing ship of the Mediterranean
+39605,felwort gentianella_amarella,gentian of Europe and China having creamy white flowers with fringed corollas
+39606,female,an animal that produces gametes (ova) that can be fertilized by male gametes (spermatozoa)
+39607,female female_person,a person who belongs to the sex that can have babies
+39608,female_aristocrat,a woman who is an aristocrat
+39609,female_body,the body of a female human being
+39610,female_bonding,the formation of a close personal relationship between women
+39611,female_chest bust,the chest of a woman
+39612,female_child girl little_girl,a youthful female person; "the baby was a girl"; "the girls were just learning to ride a tricycle"
+39613,female_genitalia female_genitals female_genital_organ fanny,external female sex organs; "in England `fanny' is vulgar slang for female genitals"
+39614,female_internal_reproductive_organ,the reproductive organs of a woman
+39615,female_mammal,animals that nourish their young with milk
+39616,female_offspring,a child who is female
+39617,female_reproductive_system,the reproductive system of females
+39618,female_sibling,a person's sister
+39619,femaleness feminineness,the properties characteristic of the female sex
+39620,feminine,a gender that refers chiefly (but not exclusively) to females or to objects classified as female
+39621,femininity muliebrity,the trait of behaving in ways considered typical for women
+39622,feminism,a doctrine that advocates equal rights for women
+39623,feminist women's_rightist women's_liberationist libber,a supporter of feminism
+39624,feminist_movement feminism women's_liberation_movement women's_lib,the movement aimed at equal rights for women
+39625,feminization feminisation,the process of becoming feminized; the development of female characteristics (loss of facial hair or breast enlargement) in a male because of hormonal disorders or castration
+39626,femoral_artery arteria_femoralis,the chief artery of the thigh; a continuation of the external iliac artery
+39627,femoral_nerve nervus_femoralis anterior_crural_nerve,one of a pair of nerves that originate from lumbar nerves and supply the muscles and skin of the anterior part of the thigh
+39628,femoral_pulse,pulse of the femoral artery (felt in the groin)
+39629,femoral_vein vena_femoralis,a vein that accompanies the femoral artery in the same sheath; a continuation of the popliteal vein; becomes the external iliac vein
+39630,femtochemistry,the branch of chemistry that studies elementary (often very fast) chemical reactions as they occur; the experimental methods are often based on the use of femtosecond laser pulses
+39631,femtometer femtometre fermi,a metric unit of length equal to one quadrillionth of a meter
+39632,femtosecond,one quadrillionth (10^-15) of a second; one thousandth of a picosecond
+39633,femtovolt,a unit of potential equal to one quadrillionth of a volt (or one thousandth of a nanosecond)
+39634,femur thighbone femoris,the longest and thickest bone of the human skeleton; extends from the pelvis to the knee
+39635,fen,100 fen equal 1 yuan in China
+39636,fen_orchid fen_orchis Liparis_loeselii,small terrestrial orchid of eastern North America and Europe having two nearly basal leaves and dull yellow-green racemose flowers
+39637,fence,a dealer in stolen property
+39638,fence fencing,a barrier that serves to enclose an area
+39639,fence-sitter,a person who won't take sides in a controversy
+39640,fence_line,a boundary line created by a fence
+39641,fence_lizard,spiny lizard often seen basking on fences in the United States and northern Mexico
+39642,fence_mending,social action to improve poor relations (especially in politics); "they moved forward from a period of fence mending to substantive changes in the country"
+39643,fencer swordsman,someone skilled at fencing
+39644,fencing,the art or sport of fighting with swords (especially the use of foils or epees or sabres to score points under a set of rules)
+39645,fencing_mask fencer's_mask,a face mask made of fine mesh that is worn over a fencer's face
+39646,fencing_material fencing,material for building fences
+39647,fencing_sword,a sword used in the sport of fencing
+39648,fender,a low metal guard to confine falling coals to a hearth
+39649,fender buffer cowcatcher pilot,an inclined metal frame at the front of a locomotive to clear the track
+39650,fender wing,a barrier that surrounds the wheels of a vehicle to block splashing water or mud; "in Britain they call a fender a wing"
+39651,fender-bender,a collision between motor vehicles that produces minor damage
+39652,fenestra,a small opening covered with membrane (especially one in the bone between the middle and inner ear)
+39653,fenestra_ovalis fenestra_vestibuli oval_window fenestra_of_the_vestibule,fenestra that has the base of the stapes attached to it
+39654,fenestra_rotunda fenestra_cochleae round_window fenestra_of_the_cochlea,fenestra leading into the cochlea
+39655,fenestration,the arrangement of windows in a building
+39656,fenestration,surgical procedure that creates a new fenestra to the cochlea in order to restore hearing lost because of osteosclerosis
+39657,feng_shui,rules in Chinese philosophy that govern spatial arrangement and orientation in relation to patterns of yin and yang and the flow of energy (qi); the favorable or unfavorable effects are taken into consideration in designing and siting buildings and graves and furniture
+39658,fennel,any of several aromatic herbs having edible seeds and leaves and stems
+39659,fennel,fennel seeds are ground and used as a spice or as an ingredient of a spice mixture
+39660,fennel Florence_fennel finocchio,aromatic bulbous stem base eaten cooked or raw in salads
+39661,fennel common_fennel,leaves used for seasoning
+39662,fennel_flower Nigella_hispanica,nigella of Spain and southern France
+39663,fennel_seed,aromatic anis-scented seeds
+39664,fenoprofen fenoprofen_calcium Nalfon,a nonsteroidal anti-inflammatory drug (trade name Nalfon) used in the treatment of arthritis and other painful inflammatory disorders
+39665,fenugreek Greek_clover Trigonella_foenumgraecum,annual herb or southern Europe and eastern Asia having off-white flowers and aromatic seeds used medicinally and in curry
+39666,fenugreek fenugreek_seed,aromatic seeds used as seasoning especially in curry
+39667,fer-de-lance Bothrops_atrops,large extremely venomous pit viper of Central America and South America
+39668,fergusonite,a dark mineral consisting of oxides of yttrium and erbium and tantalum and other minerals
+39669,feria,a weekday on which no festival or holiday is celebrated; "in the middle ages feria was used with a prefixed ordinal number to designate the day of the week, so `secunda feria' meant Monday, but Sunday and Saturday were always called by their names, Dominicus and Sabbatum, and so feria came to mean an ordinary weekday"
+39670,feria,(in Spanish speaking regions) a local festival or fair, usually in honor of some patron saint
+39671,fermata,a musical notation (over a note or chord or rest) that indicates it is to be prolonged by an unspecified amount
+39672,fermata,(music) a prolongation of unspecified length on a note or chord or rest
+39673,ferment,a substance capable of bringing about fermentation
+39674,fermion,any particle that obeys Fermi-Dirac statistics and is subject to the Pauli exclusion principle
+39675,fermium Fm atomic_number_100,a radioactive transuranic metallic element produced by bombarding plutonium with neutrons
+39676,fern,any of numerous flowerless and seedless vascular plants having true roots from a rhizome and fronds that uncurl upward; reproduce by spores
+39677,fern_ally,pteridophytes of other classes than Filicopsida
+39678,fern_family,families of ferns and fern allies
+39679,fern_genus,genera of ferns and fern allies
+39680,fern_seed,the asexual spore of ferns that resembles dust; once thought to be seeds and to make the possessor invisible
+39681,ferociousness brutality viciousness savagery,the trait of extreme cruelty
+39682,ferocity fierceness furiousness fury vehemence violence wildness,the property of being wild or turbulent; "the storm's violence"
+39683,ferret,domesticated albino variety of the European polecat bred for hunting rats and rabbits
+39684,ferret_badger,small ferret-like badger of southeast Asia
+39685,ferric_oxide,a red oxide of iron
+39686,ferricyanic_acid,a brown unstable acid formed from ferricyanide
+39687,ferricyanide,salt of ferricyanic acid obtained by oxidation of a ferrocyanide
+39688,ferrimagnetism,a phenomenon in ferrites where there can be incomplete cancellation of antiferromagnetic arranged spins giving a net magnetic moment
+39689,ferrite,a solid solution in which alpha iron is the solvent
+39690,ferritin,a protein containing 20% iron that is found in the intestines and liver and spleen; it is one of the chief forms in which iron is stored in the body
+39691,ferrocerium,a pyrophoric alloy of iron with cerium; used for lighter flints
+39692,ferrocyanic_acid,a white unstable acid formed from ferrocyanide salts
+39693,ferrocyanide,salt of ferrocyanic acid usually obtained by a reaction of a cyanide with iron sulphate
+39694,ferromagnetism,phenomenon exhibited by materials like iron (nickel or cobalt) that become magnetized in a magnetic field and retain their magnetism when the field is removed
+39695,ferrule collet,a metal cap or band placed on a wooden pole to prevent splitting
+39696,ferry ferryboat,a boat that transports people or vehicles across a body of water and operates on a regular schedule
+39697,ferry ferrying,transport by boat or aircraft
+39698,ferryman,a man who operates a ferry
+39699,fertile_period fertile_phase,the time in the menstrual cycle when fertilization is most likely to be possible (7 days before to 7 days after ovulation)
+39700,fertility fecundity,the state of being fertile; capable of producing offspring
+39701,fertility_drug,a drug used to increase a woman's fertility
+39702,fertilization fertilisation fecundation dressing,making fertile as by applying fertilizer or manure
+39703,fertilization fertilisation fecundation impregnation,creation by the physical union of male and female gametes; of sperm and ova in an animal or pollen and ovule in a plant
+39704,fertilization_membrane,the membrane that forms around a fertilized ovum and prevents penetration by additional spermatozoon
+39705,fertilizer fertiliser plant_food,any substance such as manure or a mixture of nitrates used to make soil more fertile
+39706,ferule,a switch (a stick or cane or flat paddle) used to punish children
+39707,fescue fescue_grass meadow_fescue Festuca_elatior,grass with wide flat leaves cultivated in Europe and America for permanent pasture and hay and for lawns
+39708,fesse fess,(heraldry) an ordinary consisting of a broad horizontal band across a shield
+39709,fester suppurating_sore,a sore that has become inflamed and formed pus
+39710,festering suppuration maturation,(medicine) the formation of morbific matter in an abscess or a vesicle and the discharge of pus
+39711,festination,involuntary shortening of stride and quickening of gait that occurs in some diseases (e.g., Parkinson's disease)
+39712,festival,a day or period of time set aside for feasting and celebration
+39713,festival fete,an organized series of acts and performances (usually in one place); "a drama festival"
+39714,festoon,a curtain of fabric draped and bound at intervals to form graceful curves
+39715,festoon,an embellishment consisting of a decorative representation of a string of flowers suspended between two points; used on pottery or in architectural work
+39716,festoon festoonery,flower chains suspended in curves between points as a decoration
+39717,festschrift,a collection of writings published in honor of a scholar
+39718,fetal_age fertilization_age gestational_age,the age of an embryo counting from the time of fertilization
+39719,fetal_alcohol_syndrome FAS,a congenital medical condition in which body deformation occurs or facial development or mental ability is impaired because the mother drinks alcohol during pregnancy
+39720,fetal_circulation foetal_circulation,the system of blood vessels and structures through which blood moves in a fetus
+39721,fetal_distress foetal_distress,an abnormal condition of a fetus; usually discovered during pregnancy and characterized by an abnormal heart rhythm
+39722,fetal_membrane,any membrane that functions for the protection or nourishment or respiration or excretion of a developing fetus
+39723,fetal_movement foetal_movement,motion of a fetus within the uterus (usually detected by the 16th week of pregnancy)
+39724,fetch,the action of fetching
+39725,fete feast fiesta,an elaborate party (often outdoors)
+39726,feterita federita Sorghum_vulgare_caudatum,a Sudanese sorghum having exceptionally large soft white grains
+39727,fetid_bugbane foetid_bugbane Cimicifuga_foetida,bugbane of Siberia and eastern Asia having ill-smelling green-white flowers
+39728,fetish,a form of sexual desire in which gratification depends to an abnormal degree on some object or item of clothing or part of the body; "common male fetishes are breasts, legs, hair, shoes, and underwear"
+39729,fetish fetich,excessive or irrational devotion to some activity; "made a fetish of cleanliness"
+39730,fetishism fetichism,a belief in the magical power of fetishes (or the worship of a fetish)
+39731,fetishism fetichism,sexual arousal or gratification resulting from handling a fetish (or a specific part of the body other than the sexual organs)
+39732,fetishist,one who engages in fetishism (especially of a sexual nature)
+39733,fetlock,projection behind and above a horse's hoof
+39734,fetlock fetlock_joint,the joint between the cannon bone and the pastern
+39735,fetology foetology,the branch of medicine concerned with the fetus in the uterus
+39736,fetometry foetometry,measurement of a fetus (especially the diameter of the head)
+39737,fetoprotein foetoprotein,any of several antigens that occur naturally in the fetus and sometimes in adults with cancer
+39738,fetoscope foetoscope,a stethoscope placed on the pregnant woman's abdomen to listen for the fetal heartbeat
+39739,fetoscopy foetoscopy,prenatal diagnosis that allows direct observation of a fetus in the uterus and the withdrawal of fetal blood
+39740,fetter hobble,a shackle for the ankles or feet
+39741,fetterbush fetter_bush shiny_lyonia Lyonia_lucida,showy evergreen shrub of southeastern United States with shiny leaves and angled branches and clusters of pink to reddish flowers that resemble an umbel
+39742,fetterbush mountain_fetterbush mountain_andromeda Pieris_floribunda,ornamental evergreen shrub of southeastern United States having small white bell-shaped flowers
+39743,fettle,a state of fitness and good health; "in fine fettle"
+39744,fettuccine fettuccini,pasta in flat strips wider than linguine
+39745,fettuccine_Alfredo,fettuccine in cream sauce with cheese
+39746,fetus foetus,an unborn or unhatched vertebrate in the later stages of development showing the main recognizable features of the mature animal
+39747,feud,a bitter quarrel between two parties
+39748,feudal_lord seigneur seignior,a man of rank in the ancient regime
+39749,feudalism feudal_system,the social system that developed in Europe in the 8th century; vassals were protected by lords who they had to serve in war
+39750,fever,intense nervous anticipation; "in a fever of resentment"
+39751,fever febrility febricity pyrexia feverishness,a rise in the temperature of the body; frequently a symptom of infection
+39752,fever_pitch,a state of extreme excitement; "the crowd was at fever pitch"
+39753,fever_tree,any of several trees having leaves or bark used to allay fever or thought to indicate regions free of fever
+39754,fever_tree Acacia_xanthophloea,African tree supposed to mark healthful regions
+39755,fever_tree Georgia_bark bitter-bark Pinckneya_pubens,ornamental shrub or small tree of swampy areas in southwestern United States having large pink or white sepals and yielding Georgia bark for treating fever
+39756,feverfew Tanacetum_parthenium Chrysanthemum_parthenium,bushy aromatic European perennial herb having clusters of buttonlike white-rayed flower heads; valued traditionally for medicinal uses; sometimes placed in genus Chrysanthemum
+39757,feverroot horse_gentian tinker's_root wild_coffee Triostium_perfoliatum,coarse weedy American perennial herb with large usually perfoliate leaves and purple or dull red flowers
+39758,few,a small elite group; "it was designed for the discriminating few"
+39759,few-flowered_leek Allium_paradoxum,leek producing bulbils instead of flowers; Russia and Iran
+39760,fewness,the quality of being small in number
+39761,fez tarboosh,a felt cap (usually red) for a man; shaped like a flat-topped cone with a tassel that hangs from the crown
+39762,fiance groom-to-be,a man who is engaged to be married
+39763,fiancee bride-to-be,a woman who is engaged to be married
+39764,fiat_money,money that the government declares to be legal tender although it cannot be converted into standard specie
+39765,fib story tale tarradiddle taradiddle,a trivial lie; "he told a fib about eating his spinach"; "how can I stop my child from telling stories?"
+39766,fibbing paltering,a trivial act of lying or being deliberately unclear
+39767,fiber fibre,a slender and greatly elongated substance capable of being spun into yarn
+39768,fiber fibre,any of several elongated, threadlike cells (especially a muscle fiber or a nerve fiber)
+39769,fiber fibre vulcanized_fiber,a leatherlike material made by compressing layers of paper or cloth
+39770,fiber-optic_transmission_system fibre-optic_transmission_system FOTS,a communication system using fiber optic cables
+39771,fiber_bundle fibre_bundle fascicle fasciculus,a bundle of fibers (especially nerve fibers)
+39772,fiber_optic_cable fibre_optic_cable,a cable made of optical fibers that can transmit large amounts of information at the speed of light
+39773,fiber_optics fiberoptics fibre_optics fibreoptics,the transmission of light signals via glass fibers
+39774,fiberboard fibreboard particle_board,wallboard composed of wood chips or shavings bonded together with resin and compressed into rigid sheets
+39775,fiberglass fibreglass,a covering material made of glass fibers in resins
+39776,fiberscope,a flexible medical instrument involving fiber optics that is used to examine internal organs
+39777,fibril filament strand,a very slender natural or synthetic fiber
+39778,fibrillation,muscular twitching involving individual muscle fibers acting without coordination
+39779,fibrillation,act or process of forming fibrils
+39780,fibrin,a white insoluble fibrous protein formed by the action of thrombin on fibrinogen when blood clots; it forms a network that traps red cells and platelets
+39781,fibrinase factor_XIII,in the clotting of blood thrombin catalyzes factor XIII into its active form (fibrinase) which causes fibrin to form a stable clot
+39782,fibrinogen factor_I,a protein present in blood plasma; converts to fibrin when blood clots
+39783,fibrinolysis,a normal ongoing process that dissolves fibrin and results in the removal of small blood clots; "drugs causing fibrinolysis have been utilized therapeutically"
+39784,fibrinopeptide,peptide released from the amino end of fibrinogen by the action of thrombin to form fibrin during clotting of the blood
+39785,fibroadenoma,benign and movable and firm and not tender tumor of the breast; common in young women and caused by high levels of estrogen
+39786,fibroblast,a cell from which connective tissue develops
+39787,fibrocartilage,cartilage that is largely composed of fibers like those in ordinary connective tissue
+39788,fibrocystic_breast_disease fibrocystic_disease_of_the_breast cystic_breast_disease cystic_mastitis,the presence of one or more cysts in a breast
+39789,fibroid_tumor fibroid,benign tumor containing fibrous tissue (especially in the uterus)
+39790,fibroma,nonmalignant tumor of connective tissue
+39791,fibromyositis,local inflammation of muscle and connective tissue
+39792,fibrosis,development of excess fibrous connective tissue in an organ
+39793,fibrositis,inflammation of white fibrous tissues (especially muscle sheaths)
+39794,fibrosity fibrousness,the quality of being fibrous
+39795,fibrous-rooted_begonia,any of numerous begonias having fibrous rather than tuberous or rhizomatous roots
+39796,fibrous_astrocyte,star-shaped cells with long processes; found in the white matter of the brain and spinal cord
+39797,fibrous_dysplasia_of_bone,a disturbance in which bone that is undergoing lysis is replaced by an abnormal proliferation of fibrous tissue resulting in bone lesions or skin lesions
+39798,fibrous_tissue,tissue consisting of or containing fibers in both animals and plants
+39799,fibula calf_bone,the outer and thinner of the two bones of the human leg between the knee and ankle
+39800,fichu,a lightweight triangular scarf worn by a woman
+39801,fiction,a literary work based on the imagination and not necessarily on fact
+39802,fictional_animal,animals that exist only in fiction (usually in children's stories)
+39803,fictional_character fictitious_character character,an imaginary person represented in a work of fiction (play or film or story); "she is the main character in the novel"
+39804,fictionalization fictionalisation,a literary work based partly or wholly on fact but written as if it were fiction
+39805,fiddleneck Phacelia_tanacetifolia,hairy annual of California to Mexico with crowded cymes of small blue to lilac or mauve flowers
+39806,fiddler_crab,burrowing crab of American coastal regions having one claw much enlarged in the male
+39807,fiddlestick violin_bow,a bow used in playing the violin
+39808,fidelity,accuracy with which an electronic system reproduces the sound or image of its input signal
+39809,fidelity faithfulness,the quality of being faithful
+39810,fidget fidgetiness restlessness,a feeling of agitation expressed in continual motion; "he's got the fidgets"; "waiting gave him a feeling of restlessness"
+39811,fiduciary,a person who holds assets in trust for a beneficiary; "it is illegal for a fiduciary to misappropriate money for personal gain"
+39812,fiduciary_duty,the legal duty of a fiduciary to act in the best interests of the beneficiary
+39813,fiduciary_relation,the legal relation that exists when one person justifiably places reliance on another whose aid or protection is sought in some matter
+39814,fief feoff,a piece of land held under the feudal system
+39815,fiefdom,the domain controlled by a feudal lord
+39816,fiefdom,an organization that is controlled by a dominant person or group
+39817,field,a geographic region (land or sea) under which something valuable is found; "the diamond fields of South Africa"
+39818,field,a piece of land cleared of trees and usually enclosed; "he planted a field of wheat"
+39819,field,somewhere (away from a studio or office or library or laboratory) where practical work is done or data is collected; "anthropologists do much of their work in the field"
+39820,field,(computer science) a set of one or more adjacent characters comprising a unit of information
+39821,field,(mathematics) a set of elements such that addition and multiplication are commutative and associative and multiplication is distributive over addition and there are two elements 0 and 1; "the set of all rational numbers is a field"
+39822,field,all of the horses in a particular horse race
+39823,field,all the competitors in a particular contest or sporting event
+39824,field field_of_force force_field,the space around a radiating body within which its electromagnetic oscillations can exert force on another similar body not in contact with it
+39825,field field_of_operation line_of_business,a particular kind of commercial enterprise; "they are outstanding in their field"
+39826,field field_of_operations theater theater_of_operations theatre theatre_of_operations,a region in which active military operations are in progress; "the army was in the field awaiting action"; "he served in the Vietnam theater for three years"
+39827,field field_of_view,the area that is visible (as through an optical instrument)
+39828,field-effect_transistor FET,a transistor in which most current flows in a channel whose effective resistance can be controlled by a transverse electric field
+39829,field-emission_microscope,electron microscope used to observe the surface structure of a solid
+39830,field-grade_officer field_officer FO,an officer holding the rank of major or lieutenant colonel or colonel
+39831,field-sequential_color_television field-sequential_color_TV field-sequential_color_television_system field-sequential_color_TV_system,an early form of color TV in which successive fields are scanned in three primary colors
+39832,field_artillery field_gun,movable artillery (other than antiaircraft) used by armies in the field (especially for direct support of front-line troops)
+39833,field_bindweed wild_morning-glory Convolvulus_arvensis,weakly climbing European perennial with white or pink flowers; naturalized in North America and an invasive weed
+39834,field_brome Bromus_arvensis,annual grass of Europe and temperate Asia
+39835,field_capacity,the maximum amount of water that a particular soil can hold
+39836,field_chickweed field_mouse-ear Cerastium_arvense,densely tufted perennial chickweed of north temperate zone
+39837,field_coil field_winding,the electric coil around a field magnet that produces the magneto motive force to set up the flux in an electric machine
+39838,field_corn,corn grown primarily for animal feed or market grain
+39839,field_cricket Acheta_assimilis,common American black cricket; attacks crops and also enters dwellings
+39840,field_crop,a crop (other than fruits or vegetables) that is grown for agricultural purposes; "cotton, hay, and grain are field crops"
+39841,field_day,(military) a day for military exercises and display
+39842,field_day,a day for outdoor athletic competition
+39843,field_day,a time of unusual pleasure and success
+39844,field_day outing picnic,a day devoted to an outdoor social gathering
+39845,field_emission,the emission of electrons that are stripped from parent atoms by a high electric field
+39846,field_event,a competition that takes place on a field rather than on a running track
+39847,field_game,an outdoor game played on a field of specified dimensions
+39848,field_glass glass spyglass,a small refracting telescope
+39849,field_goal,a score in American football; a score made by kicking the ball between the opponents' goal posts
+39850,field_guide,a guidebook describing natural objects of some type that might be encountered in the field; "a field guide to mushrooms"
+39851,field_hockey hockey,a game resembling ice hockey that is played on an open field; two opposing teams use curved hockey sticks try to drive a ball into the opponents' net
+39852,field_hockey_ball,ball used in playing field hockey
+39853,field_hospital,a temporary military hospital near the battle lines
+39854,field_house,an athletic facility where athletes prepare for sport
+39855,field_house sports_arena,a building for indoor sports
+39856,field_judge,a football official
+39857,field_lens,the lens that is farthest from the eye in an optical device with more than one lens
+39858,field_magnet,a magnet that provides a magnetic field in a dynamo or electric motor
+39859,field_marshal,an officer holding the highest rank in the army
+39860,field_mouse fieldmouse,any nocturnal Old World mouse of the genus Apodemus inhabiting woods and fields and gardens
+39861,field_mustard wild_mustard charlock chadlock Brassica_kaber Sinapis_arvensis,weedy Eurasian plant often a pest in grain fields
+39862,field_of_fire,the area that a weapon or group of weapons can cover effectively with gun fire from a given position
+39863,field_of_honor,the scene of a duel
+39864,field_pansy heartsease Viola_arvensis,common Old World viola with creamy often violet-tinged flowers
+39865,field_pea,seed of the field pea plant
+39866,field_pea,coarse small-seeded pea often used as food when young and tender
+39867,field_pea field-pea_plant Austrian_winter_pea Pisum_sativum_arvense Pisum_arvense,variety of pea plant native to the Mediterranean region and North Africa and widely grown especially for forage
+39868,field_pennycress French_weed fanweed penny_grass stinkweed mithridate_mustard Thlaspi_arvense,foetid Eurasian weed having round flat pods; naturalized throughout North America
+39869,field_press_censorship,security review of news (including all information or material intended for dissemination to the public) subject to the jurisdiction of the armed forces
+39870,field_pussytoes,a variety of pussytoes
+39871,field_ration,rations issued for United States troops in the field
+39872,field_scabious Scabiosa_arvensis,perennial having bluish-lilac flowers; introduced in the eastern United States
+39873,field_soybean,seeds used as livestock feed
+39874,field_spaniel,large usually black hunting and retrieving spaniel with a dense flat or slightly wavy coat; cross between cocker and Sussex spaniel
+39875,field_sparrow Spizella_pusilla,common North American finch of brushy pasturelands
+39876,field_speedwell Veronica_agrestis,European plant with minute axillary blue flowers on long stalks; widely naturalized in America
+39877,field_strength field_intensity,the vector sum of all the forces exerted by an electrical or magnetic field (on a unit mass or unit charge or unit magnetic pole) at a given point in the field
+39878,field_strength_unit,an electromagnetic unit of magnetic intensity
+39879,field_tent,a canvas tent for use in the field
+39880,field_theory,(physics) a theory that explains a physical phenomenon in terms of a field and the manner in which it interacts with matter or with other fields
+39881,field_thistle Cirsium_discolor,stout North American thistle with purplish-pink flower heads
+39882,field_trial,a contest between gun dogs to determine their proficiency in pointing and retrieving
+39883,field_trial,a test of young hunting dogs to determine their skill in pointing and retrieving
+39884,field_trial field_test,a test of the performance of some new product under the conditions in which it will be used
+39885,field_trip,a group excursion (to a museum or the woods or some historic place) for firsthand examination
+39886,field_work,an investigation carried out in the field rather than in a laboratory or headquarters
+39887,field_wormwood Artemisia_campestris,European wormwood similar to common wormwood in its properties
+39888,fielder,a member of the baseball team that is in the field instead of at bat
+39889,fielder fieldsman,a member of the cricket team that is fielding rather than batting
+39890,fielder's_choice,a play made on a ground ball in which the fielder chooses to put out an advancing runner instead of the batter
+39891,fieldfare snowbird Turdus_pilaris,medium-sized Eurasian thrush seen chiefly in winter
+39892,fielding,(baseball) handling the ball while playing in the field
+39893,fielding_average,(baseball) a measure of a fielder's performance; the number of assists and putouts divided by the number of chances
+39894,fieldstone,stone that occurs naturally in fields; often used as building material
+39895,fieldwork,a temporary fortification built by troops in the field
+39896,fieldworker,a researcher who works in the field
+39897,fieri_facias,a writ ordering a levy on the belongings of a debtor to satisfy the debt
+39898,fieriness,a passionate and quick-tempered nature
+39899,fieriness red_heat,the heat or the color of fire
+39900,fiesta_flower Pholistoma_auritum Nemophila_aurita,straggling California annual herb with deep purple or violet flowers; sometimes placed in genus Nemophila
+39901,fife,a small high-pitched flute similar to a piccolo; has a shrill tone and is used chiefly to accompany drums in a marching band
+39902,fife_rail,the railing surrounding the mast of a sailing vessel
+39903,fifteen 15 XV,the cardinal number that is the sum of fourteen and one
+39904,fifteenth,position 15 in a countable series of things
+39905,fifth,position five in a countable series of things; "he was fifth out of several hundred runners"
+39906,fifth,a quantity of liquor equal to one fifth of a United States gallon
+39907,fifth,the musical interval between one note and another five notes away from it
+39908,fifth_column Trojan_horse,a subversive group that supports the enemy and engages in espionage or sabotage; an enemy in your midst
+39909,fifth_columnist saboteur,a member of a clandestine subversive organization who tries to help a potential invader
+39910,fifth_wheel,a steering bearing that enables the front axle of a horse-drawn wagon to rotate
+39911,fifth_wheel deadwood,someone or something that is unwanted and unneeded
+39912,fifth_wheel spare,an extra car wheel and tire for a four-wheel vehicle
+39913,fifties 1950s,the decade from 1950 to 1959
+39914,fifties mid-fifties,the time of life between 50 and 60
+39915,fiftieth,position 50 in a countable series of things
+39916,fifty 50 L,the cardinal number that is the product of ten and five
+39917,fifty_dollar_bill fifty,a United States bill worth 50 dollars
+39918,fifty_percent,a half expressed as a percentage
+39919,fig,fleshy sweet pear-shaped yellowish or purple multiple fruit eaten fresh or preserved or dried
+39920,fig common_fig common_fig_tree Ficus_carica,Mediterranean tree widely cultivated for its edible fruit
+39921,fig-bird,greenish-yellow Australian oriole feeding chiefly on figs and other fruits
+39922,fig_leaf,a leaf from a fig tree
+39923,fig_leaf,a covering consisting of anything intended to conceal something regarded as shameful
+39924,fig_marigold pebble_plant,any of several South African plants of the genus Mesembryanthemum cultivated for showy pink or white flowers
+39925,fig_tree,any moraceous tree of the tropical genus Ficus; produces a closed pear-shaped receptacle that becomes fleshy and edible when mature
+39926,fight,an intense verbal dispute; "a violent fight over the bill is expected in the Senate"
+39927,fight,a boxing or wrestling match; "the fight was on television last night"
+39928,fight fighting combat scrap,the act of fighting; any contest or struggle; "a fight broke out at the hockey game"; "there was fighting in the streets"; "the unhappy couple got into a terrible scrap"
+39929,fighter fighter_aircraft attack_aircraft,a high-speed military or naval airplane designed to destroy enemy aircraft in the air
+39930,fighter_pilot,a military or naval pilot of fighter planes
+39931,fighting_chair,a fixed chair from which a saltwater angler can fight a hooked fish
+39932,figment,a contrived or fantastic idea; "a figment of the imagination"
+39933,figural_blindness,inability to see shapes and contours
+39934,figuration,representing figuratively as by emblem or allegory
+39935,figuration,decorating with a design
+39936,figure,a combination of points and lines and planes that form a visible palpable shape
+39937,figure,an amount of money expressed numerically; "a figure of $17 was suggested"
+39938,figure,a unitary percept having structure and coherence that is the object of attention and that stands out against a ground
+39939,figure,the impression produced by a person; "he cut a fine figure"; "a heroic figure"
+39940,figure,a model of a bodily form (especially of a person); "he made a figure of Santa Claus"
+39941,figure,a predetermined set of movements in dancing or skating; "she made the best score on compulsory figures"
+39942,figure fig,a diagram or picture illustrating textual material; "the area covered can be seen from Figure 2"
+39943,figure_eight,a skating figure that carves an 8 in the ice
+39944,figure_eight figure_8 figure_of_eight,a two-dimensionsal figure having the shape of the number eight
+39945,figure_eight figure_of_eight,a knot having the shape of the numeral 8; tied in a rope that has been passed through a hole or pulley and that prevents the rope from coming loose
+39946,figure_loom figured-fabric_loom,a loom for weaving figured fabrics
+39947,figure_of_merit,a numerical expression representing the efficiency of a given system, material, or procedure
+39948,figure_skate,an ice skate worn for figure skating; has a slightly curved blade and a row of jagged points at the front of the blade
+39949,figure_skating,ice skating where the skates trace outlines of selected figures
+39950,figured_bass basso_continuo continuo thorough_bass,a bass part written out in full and accompanied by numbers to indicate the chords to be played
+39951,figurehead,figure on the bow of some sailing vessels
+39952,figurine statuette,a small carved or molded figure
+39953,figwort,any of numerous tall coarse woodland plants of the genus Scrophularia
+39954,filaggrin,the main protein of the keratohyalin granules; "the specific target of the immune response in rheumatoid arthritis is filaggrin"
+39955,filament,the stalk of a stamen
+39956,filament,a thin wire (usually tungsten) that is heated white hot by the passage of an electric current
+39957,filament filum,a threadlike structure (as a chainlike series of cells)
+39958,filaria,slender threadlike roundworms living in the blood and tissues of vertebrates; transmitted as larvae by biting insects
+39959,filariasis,a disease caused by nematodes in the blood or tissues of the body causing blockage of lymphatic vessels
+39960,filature,a bobbin used in spinning silk into thread
+39961,file,a steel hand tool with small sharp teeth on some or all of its surfaces; used for smoothing wood or metal
+39962,file data_file,a set of related records (either written or electronic) kept together
+39963,file file_cabinet filing_cabinet,office furniture consisting of a container for keeping papers in order
+39964,file single_file Indian_file,a line of persons or things ranged one behind the other
+39965,file_allocation_table,the part of a floppy disk or hard disk where information is stored about the location of each piece of information on the disk (and about the location of unusable areas of the disk)
+39966,file_clerk filing_clerk filer,a clerk who is employed to maintain the files of an organization
+39967,file_folder,folder that holds papers together in a filing cabinet
+39968,file_server,(computer science) a digital computer that provides workstations on a network with controlled access to shared resources
+39969,file_system filing_system,a system of classifying into files (usually arranged alphabetically)
+39970,file_transfer_protocol FTP,protocol that allows users to copy files between their local system and any system they can reach on the network
+39971,filefish,narrow flattened warm-water fishes with leathery skin and a long file-like dorsal spine
+39972,filename file_name computer_filename computer_file_name,(computer science) the name given to a computer file in order to distinguish it from other files; may contain an extension that indicates the type of file
+39973,filer,a party who files a notice with a law court
+39974,filet,lace having a square mesh
+39975,filet_mignon,small steak cut from the thick end of a beef tenderloin
+39976,filial_duty,duty of a child to its parents
+39977,filial_love,the love of a child for a parent
+39978,filibuster,(law) a tactic for delaying or obstructing legislation by making long speeches
+39979,filibuster filibusterer,a legislator who gives long speeches in an effort to delay or obstruct legislation that he (or she) opposes
+39980,filicide,a parent who murders his own son or daughter
+39981,filicide,the murder of your own son or daughter
+39982,filigree filagree fillagree,delicate and intricate ornamentation (usually in gold or silver or other fine twisted wire)
+39983,filing,a fragment rubbed off by the use of a file
+39984,filing,the entering of a legal document into the public record; "he filed a complaint"; "he filed his tax return"
+39985,filing,the act of using a file (as in shaping or smoothing an object)
+39986,filing,preservation and methodical arrangement as of documents and papers etc.; "I have some filing to do"
+39987,fill,a quantity sufficient to satisfy; "he ate his fill of potatoes"; "she had heard her fill of gossip"
+39988,filler,used for filling cracks or holes in a surface
+39989,filler,100 filler equal 1 forint in Hungary
+39990,filler,copy to fill space between more important articles in the layout of a magazine or newspaper
+39991,filler,the tobacco used to form the core of a cigar
+39992,fillet filet,a boneless steak cut from the tenderloin of beef
+39993,fillet filet fish_fillet fish_filet,a longitudinal slice or boned side of a fish
+39994,fillet stopping,fastener consisting of a narrow strip of welded metal used to join steel members
+39995,filling,flow into something (as a container)
+39996,filling,a food mixture used to fill pastry or sandwiches etc.
+39997,filling,(dentistry) a dental appliance consisting of any of various substances (as metal or plastic) inserted into a prepared cavity in a tooth; "when he yawned I could see the gold fillings in his teeth"; "an informal British term for `filling' is `stopping'"
+39998,filling,the act of filling something
+39999,filling fill,any material that fills a space or container; "there was not enough fill for the trench"
+40000,filly,a young female horse under the age of four
+40001,film,a thin coating or layer; "the table was covered with a film of dust"
+40002,film cinema celluloid,a medium that disseminates moving pictures; "theater pieces transferred to celluloid"; "this story would be good cinema"; "film coverage of sporting events"
+40003,film photographic_film,photographic material consisting of a base of celluloid covered with a photographic emulsion; used to make negatives or transparencies
+40004,film plastic_film,a thin sheet of (usually plastic and usually transparent) material used to wrap or cover things
+40005,film_advance,a mechanism for advancing film in a camera or projector
+40006,film_clip,a strip of motion picture film used in a telecast
+40007,film_company,a company that makes, advertises, and distributes movies
+40008,film_director director,the person who directs the making of a film
+40009,film_editing cutting,the activity of selecting the scenes to be shown and putting them together to create a film
+40010,film_festival,a cinematic festival that features films (usually films produced during the past year)
+40011,film_industry movie_industry,the entertainment industries involved in producing and distributing movies
+40012,film_maker filmmaker film_producer movie_maker,a producer of motion pictures
+40013,film_noir,a movie that is marked by a mood of pessimism, fatalism, menace, and cynical characters; "film noir was applied by French critics to describe American thriller or detective films in the 1940s"
+40014,film_star movie_star,a star who plays leading roles in the cinema
+40015,filmdom screenland screen,the personnel of the film industry; "a star of stage and screen"
+40016,filming cinematography motion-picture_photography,the act of making a film
+40017,filmy_fern film_fern,any fern of the genus Hymenophyllum growing in tropical humid regions and having translucent leaves
+40018,filovirus,animal viruses belonging to the family Filoviridae
+40019,fils,a fractional monetary unit in Bahrain and Iraq and Jordan and Kuwait; equal to one thousandth of a dinar
+40020,filter,an electrical device that alters the frequency spectrum of signals passing through it
+40021,filter,device that removes something from whatever passes through it
+40022,filter-tipped_cigarette,a cigarette with a filter tip
+40023,filter_bed,filter consisting of a layer of sand or gravel for filtering water
+40024,filter_paper,a porous unsized paper used for filtering
+40025,filter_tip,an air filter on the end of a cigarette; contains material that filters the smoke
+40026,filth crud skank,any substance considered disgustingly foul or unpleasant
+40027,filth filthiness foulness nastiness,a state characterized by foul or disgusting dirt and refuse
+40028,filthiness,moral corruption or pollution; "this deformity and filthiness of sin"
+40029,filthy_lucre,shameful profit; "he would sell his soul for filthy lucre"
+40030,filtrate,the product of filtration; a gas or liquid that has been passed through a filter
+40031,filtration,the process whereby fluids pass through a filter or a filtering medium
+40032,filtration,the act of changing a fluid by passing it through a filter
+40033,filtration_surgery,eye surgery that opens a passage allowing excess aqueous humor to drain into surrounding tissues; a treatment for glaucoma
+40034,fimbria,thin projections forming a fringe (especially around the ovarian end of the Fallopian tube)
+40035,fin,a stabilizer on a ship that resembles the fin of a fish
+40036,fin,organ of locomotion and balance in fishes and some other aquatic animals
+40037,fin_de_siecle,the end of a century, especially the 19th century
+40038,fin_keel,a metal plate projecting from the keel of a shallow vessel to give it greater lateral stability
+40039,finagler wangler,a deceiver who uses crafty misleading methods
+40040,final,the final match between the winners of all previous matches in an elimination tournament
+40041,final_cause,(philosophy) the end or purpose of a thing or process
+40042,final_cut,the final edited version of a movie as approved by the director and producer
+40043,final_examination final_exam final,an examination administered at the end of an academic term
+40044,final_judgment final_decision,a judgment disposing of the case before the court; after the judgment (or an appeal from it) is rendered all that remains is to enforce the judgment
+40045,final_period,the final division into which the play of a game is divided
+40046,finale close closing_curtain finis,the concluding part of any performance
+40047,finale coda,the closing section of a musical composition
+40048,finalist,a contestant who reaches the final stages of a competition
+40049,finality conclusiveness decisiveness,the quality of being final or definitely settled; "the finality of death"
+40050,finalization finalisation,the act of finalizing
+40051,finance,the branch of economics that studies the management of money and other assets
+40052,finance,the management of money and credit and banking and investments
+40053,finance,the commercial activity of providing funds and capital
+40054,finance_committee,a committee appointed to consider financial issues
+40055,finance_company,a financial institution (often affiliated with a holding company or manufacturer) that makes loans to individuals or businesses
+40056,finance_minister minister_of_finance,the minister responsible for state finances
+40057,financial_analyst securities_analyst,an analyst who studies the financial performance of corporations
+40058,financial_audit,an attestation that the client's financial statement is accurate
+40059,financial_center,the part of a city where financial institutions are centered
+40060,financial_condition,the condition of (corporate or personal) finances
+40061,financial_forecast,a forecast of the expected financial position and the results of operations and cash flows based on expected conditions
+40062,financial_gain,the amount of monetary gain
+40063,financial_institution financial_organization financial_organisation,an institution (public or private) that collects funds (from the public or other institutions) and invests them in financial assets
+40064,financial_loss,loss of money or decrease in financial value
+40065,financier moneyman,a person skilled in large scale financial transactions
+40066,financing funding,the act of financing
+40067,finback finback_whale fin_whale common_rorqual Balaenoptera_physalus,large flat-headed whalebone whale having deep furrows along the throat; of Atlantic and Pacific
+40068,finch,any of numerous small songbirds with short stout bills adapted for crushing seeds
+40069,finder,someone who comes upon something after searching
+40070,finder discoverer spotter,someone who is the first to observe something
+40071,finder viewfinder view_finder,optical device that helps a user to find the target of interest
+40072,finder's_fee,a fee that is paid to someone who finds a source of financial backing or to someone who brings people together for business purposes; "the agency got a finder's fee when their candidate was hired as the new CEO"
+40073,finding,something that is found; "the findings in the gastrointestinal tract indicate that he died several hours after dinner"; "an area rich in archaeological findings"
+40074,finding,the decision of a court on issues of fact or law
+40075,finding_of_law conclusion_of_law,a finding as to the applicability of a rule of law to particular facts
+40076,findings,a collection of tools and other articles used by an artisan to make jewelry or clothing or shoes
+40077,fine mulct amercement,money extracted as a penalty
+40078,fine-tooth_comb fine-toothed_comb,a comb with teeth set close together
+40079,fine-tooth_comb fine-toothed_comb,a method of examining in minute detail; "he went over the contract with a fine-tooth comb looking for loopholes"
+40080,fine_arts beaux_arts,the study and creation of visual works of art
+40081,fine_print small_print,the part of a contract that contains reservations and qualifications that are often printed in small type; "don't sign a contract without reading the fine print"
+40082,fine_spray,precipitation in very small drops
+40083,fine_structure,the presence of groups of closely spaced spectrum lines observed in the atomic spectrum of certain elements; "the fine structure results from slightly different energy levels"
+40084,fineness choiceness,the quality of being very good indeed; "the inn is distinguished by the fineness of its cuisine"
+40085,fineness powderiness,having a very fine texture; "the fineness of the sand on the beach"
+40086,fineness thinness,the property of being very narrow or thin; "he marvelled at the fineness of her hair"
+40087,finery,elaborate or showy attire and accessories
+40088,fines_herbes,a mixture of finely chopped fresh herbs; "an omelet flavored with fines herbes"
+40089,finger,any of the terminal members of the hand (sometimes excepting the thumb); "her fingers were long and thin"
+40090,finger,one of the parts of a glove that provides covering for a finger or thumb
+40091,finger fingerbreadth finger's_breadth digit,the length of breadth of a finger used as a linear measure
+40092,finger-painting,a painting produced by spreading paint with the fingers
+40093,finger-painting,painting by using the fingers to spread the paint
+40094,finger-pointing fingerpointing,the imputation of blame; "they want all the finger-pointing about intelligence failures to stop"
+40095,finger-roll,a basketball shot that rolls off the tips of the fingers into the basket
+40096,finger_bowl,small bowl for rinsing the fingers at table
+40097,finger_food,food to be eaten with the fingers
+40098,finger_grass,any grass of the genus Chloris; occurs in short grassland especially on waste ground or poor soils
+40099,finger_hole,one of a series of holes in a woodwind instrument; pitch changes when a finger covers it
+40100,finger_hole,a hole for inserting a finger
+40101,finger_millet ragi ragee African_millet coracan corakan kurakkan Eleusine_coracana,East Indian cereal grass whose seed yield a somewhat bitter flour, a staple in the Orient
+40102,finger_paint fingerpaint,paint that has the consistency of jelly
+40103,finger_plate escutcheon scutcheon,a flat protective covering (on a door or wall etc) to prevent soiling by dirty fingers
+40104,finger_scan finger_scanning,biometric identification by automatically scanning a person's fingerprints electronically
+40105,finger_spelling fingerspelling,an alphabet of manual signs
+40106,finger_wave,a wave made with the fingers
+40107,fingerboard,a narrow strip of wood on the neck of some stringed instruments (violin or cello or guitar etc) where the strings are held against the wood with the fingers
+40108,fingering,the placement of the fingers for playing different notes (or sequences of notes) on a musical instrument
+40109,fingering,touching something with the fingers
+40110,fingerling,a young or small fish
+40111,fingermark fingerprint,a smudge made by a (dirty) finger
+40112,fingernail,the nail at the end of a finger
+40113,fingerpost fingerboard,a guidepost resembling a hand with a pointing index finger
+40114,fingerprint,a generic term for any identifying characteristic; "that tax bill had the senator's fingerprints all over it"
+40115,fingerprint,a print made by an impression of the ridges in the skin of a finger; often used for biometric identification in criminal investigations
+40116,fingerprint_expert fingerprint_specialist fingerprint_man,a specialist in identifying fingerprints
+40117,fingerprinting,the procedure of taking inked impressions of a person's fingerprints for the purpose of identification
+40118,fingerstall cot,a sheath worn to protect a finger
+40119,fingertip,the end (tip) of a finger
+40120,finial,an ornament at the top of a spire or gable; usually a foliated fleur-de-lis
+40121,finish,designated event that concludes a contest (especially a race); "excitement grew as the finish neared"; "my horse was several lengths behind at the finish"; "the winner is the team with the most points at the finish"
+40122,finish,the downfall of someone (as of persons on one side of a conflict); "booze will be the finish of him"; "it was a fight to the finish"
+40123,finish,(wine tasting) the taste of a wine on the back of the tongue (as it is swallowed); "the wine has a nutty flavor and a pleasant finish"
+40124,finish destination goal,the place designated as the end (as of a race or journey); "a crowd assembled at the finish"; "he was nearly exhausted as their destination came into view"
+40125,finish finishing,the act of finishing; "his best finish in a major tournament was third"; "the speaker's finishing was greeted with applause"
+40126,finish_coat finishing_coat,the final coating of (eg., paint, plaster, varnish, etc.); "we can't paint until they put on the finishing coat"
+40127,finisher,a racing driver who finishes a race
+40128,finisher,a painter who applies a finishing coat
+40129,finisher,a worker who performs the last step in a manufacturing process
+40130,finisher,a race car that finishes a race
+40131,finisher,an animal that wins in a contest of speed
+40132,finishing_line finish_line,a line indicating the location of the finish of a race
+40133,finishing_school,a private school for girls that emphasizes training in cultural and social activities
+40134,finishing_touch capstone copestone,a final touch; a crowning achievement; a culmination
+40135,finiteness finitude boundedness,the quality of being finite
+40136,fink snitch snitcher stoolpigeon stool_pigeon stoolie sneak sneaker canary,someone acting as an informer or decoy for the police
+40137,finnan_haddie finnan_haddock finnan smoked_haddock,haddock usually baked but sometimes broiled with lots of butter
+40138,fipple,a wooden plug forming a flue pipe (as the mouthpiece of a recorder)
+40139,fipple_flute fipple_pipe recorder vertical_flute,a tubular wind instrument with 8 finger holes and a fipple mouthpiece
+40140,fir,nonresinous wood of a fir tree
+40141,fir fir_tree true_fir,any of various evergreen trees of the genus Abies; chiefly of upland areas
+40142,fir_clubmoss mountain_clubmoss little_clubmoss Lycopodium_selago,of northern Europe and America; resembling a miniature fir
+40143,fir_cone,the seed-producing cone of a fir tree
+40144,fire,once thought to be one of four elements composing the universe (Empedocles)
+40145,fire,fuel that is burning and is used as a means for cooking; "put the kettle on the fire"; "barbecue over an open fire"
+40146,fire,a severe trial; "he went through fire and damnation"
+40147,fire,the event of something burning (often destructive); "they lost everything in the fire"
+40148,fire,a fireplace in which a relatively small fire is burning; "they sat by the fire and talked"
+40149,fire attack flak flack blast,intense adverse criticism; "Clinton directed his fire at the Republican Party"; "the government has come under attack"; "don't give me any flak"
+40150,fire firing,the act of firing weapons or artillery at an enemy; "hold your fire until you can see the whites of their eyes"; "they retreated in the face of withering enemy fire"
+40151,fire flame flaming,the process of combustion of inflammable materials producing heat and light and (often) smoke; "fire was one of our ancestors' first discoveries"
+40152,fire-bellied_toad Bombina_bombina,toad of central and eastern Europe having red or orange patches mixed with black on its underside
+40153,fire-eater fire-swallower,a performer who pretends to swallow fire
+40154,fire-eater hothead,a belligerent grouch
+40155,fire-on-the-mountain painted_leaf Mexican_fire_plant Euphorbia_cyathophora,poinsettia of United States and eastern Mexico; often confused with Euphorbia heterophylla
+40156,fire_alarm,a shout or bell to warn that fire has broken out
+40157,fire_alarm smoke_alarm,an alarm that is tripped off by fire or smoke
+40158,fire_and_brimstone,(Old Testament) God's means of destroying sinners; "his sermons were full of fire and brimstone"
+40159,fire_ant,omnivorous ant of tropical and subtropical America that can inflict a painful sting
+40160,fire_bell,a bell rung to give a fire alarm
+40161,fire_blight pear_blight,a disease blackening the leaves of pear and apple trees
+40162,fire_brigade,British name for a fire department
+40163,fire_brigade fire_company,a private or temporary organization of individuals equipped to fight fires
+40164,fire_chief fire_marshal,the head of a fire department
+40165,fire_code,set of standards established and enforced by government for fire prevention and safety in case of fire as in fire escapes etc
+40166,fire_control,preparation for the delivery of shellfire on a target
+40167,fire_control_radar,naval radar that controls the delivery of fire on a military target
+40168,fire_control_system,naval weaponry consisting of a system for controlling the delivery of fire on a military target
+40169,fire_department,the department of local government responsible for preventing and extinguishing fires
+40170,fire_door,a fire-resistant door that can be closed to stop the spread of a fire
+40171,fire_drill,an exercise intended to train people in duties and escape procedures to be followed in case of fire
+40172,fire_engine fire_truck,any of various large trucks that carry firemen and equipment to the site of a fire
+40173,fire_escape emergency_exit,a stairway (often on the outside of a building) that permits exit in the case of fire or other emergency
+40174,fire_extinguisher extinguisher asphyxiator,a manually operated device for extinguishing small fires
+40175,fire_hose,a large hose that carries water from a fire hydrant to the site of the fire
+40176,fire_insurance,insurance against loss due to fire
+40177,fire_iron,metal fireside implements
+40178,fire_marshall,an official who is responsible for the prevention and investigation of fires
+40179,fire_opal girasol,an opal with flaming orange and yellow and red colors
+40180,fire_pink Silene_virginica,perennial herb of eastern North America, having red flowers with narrow notched petals
+40181,fire_pit,a pit whose floor is incandescent lava; "the fire pit of the crater"
+40182,fire_sale,a sale of assets at very low prices typically when the seller faces bankruptcy
+40183,fire_sale,a sale of merchandise supposedly damaged by fire
+40184,fire_screen fireguard,a metal screen before an open fire for protection (especially against flying sparks)
+40185,fire_ship,a weapon consisting of a ship carrying explosives that is set adrift to destroy enemy ships
+40186,fire_station firehouse,a station housing fire apparatus and firemen
+40187,fire_tongs coal_tongs,tongs for taking hold of burning coals
+40188,fire_tower,a watchtower where a lookout is posted to watch for fires
+40189,fire_trench,a trench especially constructed for the delivery of small-arms fire
+40190,fire_walker,someone who walks barefoot on burning coals
+40191,fire_walking,the ceremony of walking barefoot over hot stones or a bed of embers
+40192,fire_warden forest_fire_fighter ranger,an official who is responsible for managing and protecting an area of forest
+40193,fire_watcher,(during World War II in Britain) someone whose duty was to watch for fires caused by bombs dropped from the air
+40194,fire_watching,(during World War II in Britain) watching for fires started by bombs that dropped from the sky
+40195,firearm piece small-arm,a portable gun; "he wore his firearm in a shoulder holster"
+40196,fireball,a ball of fire (such as the sun or a ball-shaped discharge of lightning)
+40197,fireball,the luminous center of a nuclear explosion
+40198,firebase,an artillery base to support advancing troops
+40199,fireboat,a boat equipped to fight fires on ships or along a waterfront
+40200,firebox,a furnace (as on a steam locomotive) in which fuel is burned
+40201,firebrat Thermobia_domestica,lives in warm moist areas e.g. around furnaces
+40202,firebreak fireguard,a narrow field that has been cleared to check the spread of a prairie fire or forest fire
+40203,firebrick,brick made of fire clay; used for lining e.g. furnaces and chimneys
+40204,firebug,a true bug: brightly colored bug that can exude a stain
+40205,fireclay,a heat-resistant clay
+40206,firecracker cracker banger,firework consisting of a small explosive charge and fuse in a heavy paper casing
+40207,firedamp,a mixture of gases (mostly methane) that form in coal mines and become explosive when mixed with air
+40208,firefly fire_beetle Pyrophorus_noctiluca,tropical American click beetle having bright luminous spots
+40209,firefly lightning_bug,nocturnal beetle common in warm regions having luminescent abdominal organs
+40210,firelight,the light of a fire (especially in a fireplace)
+40211,firelighter,(a piece of) a substance that burns easily and can be used to start a coal or coke fire
+40212,fireman,play in which children pretend to put out a fire
+40213,fireman firefighter fire_fighter fire-eater,a member of a fire department who tries to extinguish fires
+40214,fireman's_ax fireman's_axe,an ax that has a long handle and a head with one cutting edge and a point on the other side
+40215,fireman's_carry,the act of carrying a person over your shoulder
+40216,fireplace hearth open_fireplace,an open recess in a wall at the base of a chimney where a fire can be built; "the fireplace was so large you could walk inside it"; "he laid a fire in the hearth and lit it"; "the hearth was black with the charcoal of many fires"
+40217,fireplug fire_hydrant plug,an upright hydrant for drawing water to use in fighting a fire
+40218,firepower,(military) the relative capacity for delivering fire on a target
+40219,firestone,a piece of flint that is struck to light a fire
+40220,firestone,a sandstone that withstands intense heat; used to line fireplaces and furnaces and kilns
+40221,firestorm,a storm in which violent winds are drawn into the column of hot air rising over a severely bombed area
+40222,firestorm,an outburst of controversy; "the incident triggered a political firestorm"
+40223,firetrap,a building that would be hard to escape from if it were to catch fire
+40224,firewall,(computing) a security system consisting of a combination of hardware and software that limits the exposure of a computer or computer network to attack from crackers; commonly used on local area networks that are connected to the internet
+40225,firewall,a fireproof (or fire-resistant) wall designed to prevent the spread of fire through a building or a vehicle
+40226,firewall,(colloquial) the application of maximum thrust; "he moved the throttle to the firewall"
+40227,firewater,any strong spirits (such as strong whisky or rum)
+40228,fireweed Erechtites_hieracifolia,an American weedy plant with small white or greenish flowers
+40229,fireweed giant_willowherb rosebay_willowherb wickup Epilobium_angustifolium,tall North American perennial with creeping rootstocks and narrow leaves and spikes of pinkish-purple flowers occurring in great abundance in burned-over areas or recent clearings; an important honey plant
+40230,firewood,wood used for fuel; "they collected and cut their own firewood"
+40231,firework pyrotechnic,(usually plural) a device with an explosive that burns at a low rate and with colored flames; can be used to illuminate areas or send signals etc.
+40232,firing_chamber gun_chamber,chamber that is the part of a gun that receives the charge
+40233,firing_line,the line from which soldiers deliver fire
+40234,firing_line,the most advanced and responsible group in an activity; "the firing line is where the action is"
+40235,firing_pin,striker that ignites the charge by striking the primer
+40236,firing_range target_range,a practice range for target practice
+40237,firing_squad firing_party,a squad formed to fire volleys at a military funeral or to carry out a military execution
+40238,firkin,a British unit of capacity equal to 9 imperial gallons
+40239,firkin,a small wooden keg
+40240,firm house business_firm,the members of a business organization that owns or operates one or more establishments; "he worked for a brokerage house"
+40241,firm_omelet,eggs beaten with milk or cream and cooked until set
+40242,firmer_chisel,a chisel with a thin blade for woodworking
+40243,firmness,the property of being unyielding to the touch
+40244,firmness soundness,the muscle tone of healthy tissue; "his muscular firmness"
+40245,firmware microcode,(computer science) coded instructions that are stored permanently in read-only memory
+40246,first first-class_honours_degree,an honours degree of the highest class
+40247,first number_one,the first or highest in an ordering or series; "He wanted to be the first"
+40248,first number_one number_1,the first element in a countable series; "the first of the month"
+40249,first-aid_kit,kit consisting of a set of bandages and medicines for giving first aid
+40250,first-aid_station,a station providing emergency care or treatment before regular medical aid can be obtained
+40251,first-degree_burn,burn causing redness of the skin surface
+40252,first-nighter,someone habitually a spectator at the openings of theatrical productions
+40253,first-order_correlation,a partial correlation in which the effects of only one variable are removed (held constant)
+40254,first-place_finish,a finish in first place (as in a race)
+40255,first-rater,one who is first-rate
+40256,first_aid,emergency care given before regular medical aid can be obtained
+40257,first_base,the base that must be touched first by a base runner in baseball
+40258,first_base,the initial stage in accomplishing something; "we didn't get to first base with that approach"
+40259,first_base first,the fielding position of the player on a baseball team who is stationed at first of the bases in the infield (counting counterclockwise from home plate)
+40260,first_baseman first_sacker,(baseball) the person who plays first base
+40261,first_blush,at the first glimpse or impression; "at first blush the idea possesses considerable intuitive appeal but on closer examination it fails"
+40262,first_cause prime_mover primum_mobile,an agent that is the cause of all things but does not itself have a cause; "God is the first cause"
+40263,first_class,the highest rank in a classification
+40264,first_class,the most expensive accommodations on a ship or train or plane
+40265,first_class 1st_class first-class_mail 1st-class_mail,mail that includes letters and postcards and packages sealed against inspection
+40266,first_degree,a degree of one; "all of the terms in a linear equation are of the first degree"
+40267,first_estate Lords_Spiritual,the clergy in France and the heads of the church in Britain
+40268,first_gear first low_gear low,the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving
+40269,first_half,the first of two halves of play
+40270,first_in_first_out FIFO,inventory accounting in which the oldest items (those first acquired) are assumed to be the first sold
+40271,first_lady,the leading woman in an art or profession
+40272,first_lady,the wife of a chief executive
+40273,first_law_of_motion Newton's_first_law_of_motion Newton's_first_law,a body remains at rest or in motion with a constant velocity unless acted upon by an external force
+40274,first_lieutenant 1st_lieutenant,a commissioned officer in the Army or Air Force or Marines ranking above a 2nd lieutenant and below a captain
+40275,first_mortgage,a mortgage that has priority over all mortgages and liens except those imposed by law
+40276,first_name given_name forename,the name that precedes the surname
+40277,first_offender,someone convicted for the first time
+40278,first_period,the first division into which the play of a game is divided
+40279,first_person,pronouns and verbs used to refer to the speaker or writer of the language in which they occur
+40280,first_quarter,the first fourth of the Moon's period of revolution around the Earth
+40281,first_reading,the first presentation of a bill in a legislature
+40282,first_sergeant sergeant_first_class,a sergeant in the Army above the rank of staff sergeant and below master sergeant
+40283,first_step initiative opening_move opening,the first of a series of actions
+40284,first_strike,the initial use of nuclear weapons to attack a country that also has nuclear weapons; considered feasible only when the attacker can destroy the other country's ability to retaliate; "the Pakistani president promised no first strike against India"
+40285,first_trimester,time period extending from the first day of the last menstrual period through 12 weeks of gestation
+40286,first_water,the highest quality gems
+40287,firstborn eldest,the offspring who came first in the order of birth
+40288,firth,a long narrow estuary (especially in Scotland)
+40289,fisc,a state treasury or exchequer or a royal treasury; originally the public treasury of Rome or the emperor's private purse
+40290,fiscal_policy,a government policy for dealing with the budget (especially with taxation and borrowing)
+40291,fiscal_year financial_year,any accounting period of 12 months
+40292,fish,the flesh of fish used as food; "in Japan most fish is eaten raw"; "after the scare about foot-and-mouth disease a lot of people started eating fish instead of meat"; "they have a chef who specializes in fish"
+40293,fish,any of various mostly cold-blooded aquatic vertebrates usually having scales and breathing through gills; "the shark is a large fish"; "in the living room there was a tank of colorful fish"
+40294,fish-liver_oil fish_oil,a fatty oil obtained from the livers of various fish
+40295,fish_and_chips,fried fish and french-fried potatoes
+40296,fish_cake fish_ball,a fried ball or patty of flaked fish and mashed potatoes
+40297,fish_chowder,chowder containing fish
+40298,fish_doctor Gymnelis_viridis,brightly colored scaleless Arctic eelpout
+40299,fish_family,any of various families of fish
+40300,fish_farm,a workplace (usually a pond) where fish are raised for food
+40301,fish_fly fish-fly,similar to but smaller than the dobsonfly; larvae are used as fishing bait
+40302,fish_fry,a cookout where fried fish is the main course
+40303,fish_genus,any of various genus of fish
+40304,fish_geranium bedding_geranium zonal_pelargonium Pelargonium_hortorum,an upright geranium having scalloped leaves with a broad color zone inside the margin and white or pink or red flowers
+40305,fish_glue,gelatinous substance obtained by boiling skins fins and bones of fish
+40306,fish_house_punch,a punch made of rum and brandy and water or tea sweetened with sugar syrup
+40307,fish_joint,a butt joint formed by bolting fish plates to the sides of two rails or beams
+40308,fish_knife,a small table knife with a spatula blade used for eating fish
+40309,fish_ladder,a series of ascending pools providing a passage for salmon to swim upstream past a dam
+40310,fish_loaf,flaked fish baked in a loaf with bread crumbs and various seasonings
+40311,fish_louse,a kind of copepod
+40312,fish_meal,ground dried fish used as fertilizer and as feed for domestic livestock
+40313,fish_mousse,mousse made with fish
+40314,fish_scale,scale of the kind that covers the bodies of fish
+40315,fish_slice,a food turner with a broad blade used for turning or serving fish or other food that is cooked in a frying pan
+40316,fish_species,a species of fish
+40317,fish_steak,cross-section slice of a large fish
+40318,fish_stew,a stew made with fish
+40319,fish_stick fish_finger,a long fillet of fish breaded and fried
+40320,fishbone,a bone of a fish
+40321,fishbowl fish_bowl goldfish_bowl,a transparent bowl in which small fish are kept
+40322,fisher pekan fisher_cat black_cat Martes_pennanti,large dark brown North American arboreal carnivorous mammal
+40323,fisherman fisher,someone whose occupation is catching fish
+40324,fisherman's_bend,a knot for tying a line to a spar or ring
+40325,fisherman's_knot true_lover's_knot truelove_knot,a knot for tying the ends of two lines together
+40326,fisherman's_lure fish_lure,(angling) any bright artificial bait consisting of plastic or metal mounted with hooks and trimmed with feathers
+40327,fishery piscary,a workplace where fish are caught and processed and sold
+40328,fishhook,a sharp barbed hook for catching fish
+40329,fishing,the occupation of catching fish for a living
+40330,fishing sportfishing,the act of someone who fishes as a diversion
+40331,fishing_boat fishing_smack fishing_vessel,a vessel for fishing; often has a well to keep the catch alive
+40332,fishing_eagle Haliaeetus_leucorhyphus,of southeast Europe and central Asia
+40333,fishing_expedition,an investigation undertaken in the hope (but not the stated purpose) of discovering information
+40334,fishing_gear tackle fishing_tackle fishing_rig rig,gear used in fishing
+40335,fishing_license fishing_licence fishing_permit,a license authorizing the bearer to fish during a specified period of time
+40336,fishing_line,a length of cord to which the leader and float and sinker and hook are attached
+40337,fishing_rod fishing_pole,a rod of wood or steel or fiberglass that is used in fishing to extend the fishing line
+40338,fishing_season,the season during which it is legal to catch fish
+40339,fishmonger fishwife,someone who sells fish
+40340,fishnet fishing_net,a net that will enclose fish when it is pulled in
+40341,fishpaste,a paste of fish or shellfish
+40342,fishplate,metal plate bolted along sides of two rails or beams
+40343,fishpole_bamboo gosan-chiku hotei-chiku Phyllostachys_aurea,small bamboo of southeastern China having slender culms flexuous when young
+40344,fishpond,a freshwater pond with fish
+40345,fishtail_bit blade_bit,a drilling bit with cutting edges usually hardened against wear
+40346,fishtail_palm,attractive East Indian palm having distinctive bipinnate foliage
+40347,fission,reproduction of some unicellular organisms by division of the cell into two more or less equal parts
+40348,fission nuclear_fission,a nuclear reaction in which a massive nucleus splits into smaller nuclei with the simultaneous release of energy
+40349,fissiparity,reproduction of some multicellular organisms by division, as in the case of some starfish
+40350,fissiparity,the tendency to break into parts; "the fissiparity of religious sects"
+40351,fissiped_mammal fissiped,terrestrial carnivores; having toes separated to the base: dogs; cats; bears; badgers; raccoons
+40352,fissure,(anatomy) a long narrow slit or groove that divides an organ into lobes
+40353,fissure_of_Rolando Rolando's_fissure central_sulcus sulcus_centralis,a brain fissure extending upward on the lateral surface of both hemispheres; separates the frontal and parietal lobes
+40354,fissure_of_Sylvius Sylvian_fissure lateral_cerebral_sulcus sulcus_lateralis_cerebri,the deepest and most prominent of the cortical fissures; separates the frontal lobes and temporal lobes in both hemispheres
+40355,fist clenched_fist,a hand with the fingers clenched in the palm (as for hitting)
+40356,fistfight fisticuffs slugfest,a fight with bare fists
+40357,fistmele,about seven inches; the breadth of a fist with the thumb stuck out (used especially in archery to give the correct distance of the string from the bow)
+40358,fistula sinus,an abnormal passage leading from a suppurating cavity to the body surface
+40359,fistulous_withers fistula,a chronic inflammation of the withers of a horse
+40360,fit,the manner in which something fits; "I admired the fit of her coat"
+40361,fit tantrum scene conniption,a display of bad temper; "he had a fit"; "she threw a tantrum"; "he made a scene"
+40362,fitfulness jerkiness,the quality of being spasmodic and irregular
+40363,fitment,any of the items furnishing or equipping a room (especially built-in furniture); "she liked the kitchen fitments"
+40364,fitness,the quality of being qualified
+40365,fitness fittingness,the quality of being suitable; "they had to prove their fitness for the position"
+40366,fitness physical_fitness,good physical condition; being in shape or in condition
+40367,fits_and_starts,repeated bursts of activity; "they worked in fits and starts"
+40368,fitted_sheet contour_sheet,a sheet (usually with elastic edges) tailored to fit a particular mattress
+40369,fitter,someone who fits a garment to a particular person
+40370,fitting,a small and often standardized accessory to a larger system
+40371,fitting try-on trying_on,putting clothes on to see whether they fit
+40372,five 5 V cinque quint quintet fivesome quintuplet pentad fin Phoebe Little_Phoebe,the cardinal number that is the sum of four and one
+40373,five-hitter 5-hitter,a game in which a pitcher allows the opposing team 5 hits
+40374,five-point_bishop's_cap Mitella_pentandra,small plant with leaves in a basal cluster and tiny greenish flowers in slender racemes; northwestern North America to California and Colorado
+40375,five-spot Nemophila_maculata,California annual having white flowers with a deep purple blotch on each petal
+40376,five-spot five,a playing card or a domino or a die whose upward face shows five pips
+40377,five_hundred 500 D,the cardinal number that is the product of one hundred and five
+40378,five_spice_powder,Chinese seasoning made by grinding star anise and fennel and pepper and cloves and cinnamon
+40379,fivepence,a coin worth five cents
+40380,fiver five-spot five_dollar_bill,a United States bill worth 5 dollars
+40381,fives,a game resembling handball; played on a court with a front wall and two side walls
+40382,fix,something craved, especially an intravenous injection of a narcotic drug; "she needed a fix of chocolate"
+40383,fix,an exemption granted after influence (e.g., money) is brought to bear; "collusion resulted in tax fixes for gamblers"
+40384,fix hole jam mess muddle pickle kettle_of_fish,informal terms for a difficult situation; "he got into a terrible fix"; "he made a muddle of his marriage"
+40385,fixation,the activity of fastening something firmly in position
+40386,fixation fixing,(histology) the preservation and hardening of a tissue sample to retain as nearly as possible the same relations they had in the living body
+40387,fixative,a compound (such as ethanol or formaldehyde) that fixes tissues and cells for microscopic study
+40388,fixative,a varnish dissolved in alcohol and sprayed over pictures to prevent smudging
+40389,fixed-combination_drug,drug containing fixed amounts of two or more ingredients
+40390,fixed-cycle_operation,an operation that is completed in a specified number of regularly timed execution cycles
+40391,fixed-point_notation fixed-point_representation_system,a radix numeration system in which the location of the decimal point is fixed by convention
+40392,fixed-point_number,a number represented in fixed-point notation
+40393,fixed_charge fixed_cost fixed_costs,a periodic charge that does not vary with business volume (as insurance or rent or mortgage payments etc.)
+40394,fixed_intonation,the intonation of keyboard instruments where the pitch of each note is fixed and cannot be varied by the performer
+40395,fixed_oil fatty_oil,nonvolatile animal or plant oil
+40396,fixed_phagocyte,a phagocyte that does not circulate in the blood but is fixed in the liver or spleen or bone marrow etc.
+40397,fixed_star,any star in the Ptolemaic theory of planetary motion
+40398,fixedness unalterability,the quality of being fixed and unchangeable; "the fixedness of his gaze upset her"
+40399,fixer influence_peddler,someone who intervenes with authorities for a person in trouble (usually using underhand or illegal methods for a fee)
+40400,fixer-upper,a house or other dwelling in need of repair (usually offered for sale at a low price)
+40401,fixing_agent fixer,a chemical compound that sets or fixes something (as a dye or a photographic image)
+40402,fixings trimmings,the accessories that normally accompany (something or some activity); "an elaborate formal dinner with all the fixings"; "he bought a Christmas tree and trimmings to decorate it"
+40403,fixture,an object firmly fixed in place (especially in a household)
+40404,fizgig,a firework that fizzes as it moves
+40405,fizz,an effervescent beverage (usually alcoholic)
+40406,fjord fiord,a long narrow inlet of the sea between steep cliffs; common in Norway
+40407,flab,loose or flaccid body fat
+40408,flabbiness limpness flaccidity,a flabby softness
+40409,flaccid_bladder,a urinary bladder disorder resulting from interruption of the reflex arc normally associated with voiding urine; absence of bladder sensation and over-filling of the bladder and inability to urinate voluntarily
+40410,flaccid_paralysis,weakness or loss of muscle tone resulting from injury or disease of the nerves innervating the muscles
+40411,flag,emblem usually consisting of a rectangular piece of cloth of distinctive design
+40412,flag,a conspicuously marked or shaped tail
+40413,flag flagstone,stratified stone that splits into pieces suitable as paving stones
+40414,flag signal_flag,a rectangular piece of fabric used as a signalling device
+40415,flag_captain,the captain of a flagship
+40416,flag_officer,a senior naval officer above the rank of captain
+40417,flag_rank,the rank of a flag officer
+40418,flag_smut,smut affecting leaves and stems of cereals and other grasses
+40419,flag_smut_fungus,a smut fungus causing a smut in cereals and other grasses that chiefly affects leaves and stems and is characterized chains of sori within the plant tissue that later rupture releasing black masses of spores
+40420,flag_waving jingoism,an appeal intended to arouse patriotic emotions
+40421,flagellant,a person who is whipped or whips himself for sexual gratification
+40422,flagellant,a person who whips himself as a religious penance
+40423,flagellate flagellate_protozoan flagellated_protozoan mastigophoran mastigophore,a usually nonphotosynthetic free-living protozoan with whiplike appendages; some are pathogens of humans and other animals
+40424,flagellated_cell,any cell or one-celled organism equipped with a flagellum
+40425,flagellation,beating as a source of erotic or religious stimulation
+40426,flagellum,a lash-like appendage used for locomotion (e.g., in sperm cells and some bacteria and protozoa)
+40427,flageolet haricot,a French bean variety with light-colored seeds; usually dried
+40428,flageolet treble_recorder shepherd's_pipe,a small fipple flute with four finger holes and two thumb holes
+40429,flagfish American_flagfish Jordanella_floridae,a fish with a dark-blue back and whitish sides with red stripes; found in swamps and streams of Florida
+40430,flagging,flagstones collectively; "there was a pile of flagging waiting to be laid in place"
+40431,flagging,a walk of flagstones; "the flagging in the garden was quite imaginative"
+40432,flagon,a large metal or pottery vessel with a handle and spout; used to hold alcoholic beverages (usually wine)
+40433,flagpole flagstaff,a tall staff or pole on which a flag is raised
+40434,flagship,the chief one of a related group; "it is their flagship newspaper"
+40435,flagship,the ship that carries the commander of a fleet and flies his flag
+40436,flail,an implement consisting of handle with a free swinging stick at the end; used in manual threshing
+40437,flair genius,a natural talent; "he has a flair for mathematics"; "he has a genius for interior decorating"
+40438,flak_catcher flak flack_catcher flack,a slick spokesperson who can turn any criticism to the advantage of their employer
+40439,flakiness,having or breaking into thin crisp flakes
+40440,flambeau,a flaming torch (such as are used in processions at night)
+40441,flamboyance floridness floridity showiness,extravagant elaborateness; "he wrote with great flamboyance"
+40442,flame-out,the failure of a jet engine caused by an interruption of the fuel supply or by faulty combustion
+40443,flame-out,a complete or conspicuous failure; "the spectacular flame-out of the company's stock cost many people their life savings"
+40444,flame_cell,organ of excretion in flatworms
+40445,flame_fish flamefish Apogon_maculatus,a cardinalfish found in tropical Atlantic coastal waters
+40446,flame_flower flame-flower flameflower Talinum_aurantiacum,plant with fleshy roots and erect stems with narrow succulent leaves and one reddish-orange flower in each upper leaf axil; southwestern United States; Indians once cooked the fleshy roots
+40447,flame_pea,any of several small shrubs or twining vines having entire or lobed leaves and racemes of yellow to orange-red flowers; Australia
+40448,flame_tokay,purplish-red table grape
+40449,flame_tree broad-leaved_bottletree Brachychiton_australis,north Australian tree having white flowers and broad leaves
+40450,flame_tree fire_tree Christmas_tree Nuytsia_floribunda,a terrestrial evergreen shrub or small tree of western Australia having brilliant yellow-orange flowers; parasitic on roots of grasses
+40451,flame_tree flame_durrajong Brachychiton_acerifolius Sterculia_acerifolia,south Australian tree having panicles of brilliant scarlet flowers
+40452,flamen,a priest who served a particular deity in ancient Rome
+40453,flamenco,guitar music composed for dancing the flamenco
+40454,flamenco gypsy_dancing,a style of dancing characteristic of the Andalusian Gypsies; vigorous and rhythmic with clapping and stamping of feet
+40455,flamethrower,a weapon that squirts ignited fuel for several yards
+40456,flamingo,large pink to scarlet web-footed wading bird with down-bent bill; inhabits brackish lakes
+40457,flamingo_flower flamingo_plant Anthurium_andraeanum Anthurium_scherzerianum,commonly cultivated anthurium having bright scarlet spathe and spadix
+40458,flammability inflammability,the quality of being easily ignited and burning rapidly
+40459,flan,open pastry filled with fruit or custard
+40460,flange rim,a projection used for strength or for attaching to another object
+40461,flank,a subfigure consisting of a side of something
+40462,flank,a cut from the fleshy part of an animal's side between the ribs and the leg
+40463,flank,the side between ribs and hipbone
+40464,flank wing,the side of military or naval formation; "they attacked the enemy's right flank"
+40465,flank_steak,a cut of beef from the flank of the animal
+40466,flanker,a soldier who is a member of a detachment assigned to guard the flanks of a military formation
+40467,flanker_back flanker,a back stationed wide of the scrimmage line; used as a pass receiver
+40468,flannel,a soft light woolen fabric; used for clothing
+40469,flannel gabardine tweed white,(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth
+40470,flannelbush flannel_bush California_beauty,any of several handsome evergreen shrubs of California and northern Mexico having downy lobed leaves and showy yellow flowers
+40471,flannelette,a cotton fabric imitating flannel
+40472,flap,a movable piece of tissue partly connected to the body
+40473,flap,any broad thin and limber covering attached at one edge; hangs loose or projects freely; "he wrote on the flap of the envelope"
+40474,flap flapping flutter fluttering,the motion made by flapping up and down
+40475,flap flaps,a movable airfoil that is part of an aircraft wing; used to increase lift or drag
+40476,flapper,a young woman in the 1920s who flaunted her unconventional conduct and dress
+40477,flare,reddening of the skin spreading outward from a focus of infection or irritation
+40478,flare,a sudden recurrence or worsening of symptoms; "a colitis flare"; "infection can cause a lupus flare"
+40479,flare,a sudden burst of flame
+40480,flare,am unwanted reflection in an optical system (or the fogging of an image that is caused by such a reflection)
+40481,flare,a sudden outburst of emotion; "she felt a flare of delight"; "she could not control her flare of rage"
+40482,flare,a device that produces a bright light for warning or illumination or identification
+40483,flare,(baseball) a fly ball hit a short distance into the outfield
+40484,flare flair,a shape that spreads outward; "the skirt had a wide flare"
+40485,flare flash,a burst of light used to communicate or illuminate
+40486,flare_pass flare,a short forward pass to a back who is running toward the sidelines; "he threw a flare to the fullback who was tackled for a loss"
+40487,flare_path,an airstrip outline with lights to guide an airplane pilot in landing
+40488,flare_star,a red dwarf star in which luminosity can change several magnitudes in a few minutes
+40489,flash,a sudden intense burst of radiant energy
+40490,flash,a sudden brilliant understanding; "he had a flash of intuition"
+40491,flash,a momentary brightness
+40492,flash,a bright patch of color used for decoration or identification; "red flashes adorned the airplane"; "a flash sewn on his sleeve indicated the unit he belonged to"
+40493,flash flashing,a short vivid experience; "a flash of emotion swept over him"; "the flashings of pain were a warning"
+40494,flash photoflash flash_lamp flashgun flashbulb flash_bulb,a lamp for providing momentary light to take a photograph
+40495,flash-forward,a transition (in literary or theatrical works or films) to a later event or scene that interrupts the normal chronological development of the story
+40496,flash_camera,a camera with a photoflash attachment
+40497,flash_card flashcard,a card with words or numbers or pictures that is flashed to a class by the teacher
+40498,flash_flood flashflood,a sudden local flood of great volume and short duration
+40499,flash_in_the_pan,someone who enjoys transient success but then fails
+40500,flash_memory,nonvolatile storage that can be electrically erased and programmed anew
+40501,flash_point flashpoint,point at which something is ready to blow up
+40502,flash_point flashpoint,the lowest temperature at which the vapor of a combustible liquid can be ignited in air
+40503,flash_welding flash_butt_welding,butt welding by creating an electric arc between the two pieces which melts and joins them; used for joining segments of metal pipe
+40504,flashback,an unexpected but vivid recurrence of a past experience (especially a recurrence of the effects of an hallucinogenic drug taken much earlier)
+40505,flashback,a transition (in literary or theatrical works or films) to an earlier event or scene that interrupts the normal chronological development of the story
+40506,flashboard flashboarding,boarding place along the top of a dam to increase its height
+40507,flasher,an electrical device that automatically turns a lamp on and off (as for an advertising display)
+40508,flashiness garishness gaudiness loudness brashness meretriciousness tawdriness glitz,tasteless showiness
+40509,flashing,sheet metal shaped and attached to a roof for strength and weatherproofing
+40510,flashlight torch,a small portable battery-powered electric lamp
+40511,flashlight_battery,a small dry battery containing dry cells; used to power flashlights
+40512,flashlight_fish Photoblepharon_palpebratus,fish of deep dark waters having a light organ below each eye
+40513,flashover,an unintended electric discharge (as over or around an insulator)
+40514,flask,bottle that has a narrow neck
+40515,flask flaskful,the quantity a flask will hold
+40516,flat,a level tract of land; "the salt flats of Utah"
+40517,flat,a musical notation indicating one half step lower than the note named
+40518,flat,a shallow box in which seedlings are started
+40519,flat,scenery consisting of a wooden frame covered with painted canvas; part of a stage setting
+40520,flat flat_tire,a deflated pneumatic tire
+40521,flat-coated_retriever,an English breed having a shiny black or liver-colored coat; retrieves game from land or water
+40522,flat-topped_white_aster,a variety of aster
+40523,flat_arch straight_arch,an arch with mutually supporting voussoirs that has a straight horizontal extrados and intrados
+40524,flat_bench,a bench on which a weightlifter lies to do exercises
+40525,flat_bone,part of the sirloin next to the wedge bone
+40526,flat_coat ground primer priming primer_coat priming_coat undercoat,the first or preliminary coat of paint or size applied to a surface
+40527,flat_file,a file with two flat surfaces
+40528,flat_panel_display FPD,a type of video display that is thin and flat; commonly used in laptop computers
+40529,flat_pea Platylobium_formosum,evergreen shrub having almost heart-shaped foliage and bright yellow pea-like flowers followed by flat pods with flat wings; Australia and Tasmania
+40530,flat_pea narrow-leaved_everlasting_pea Lathyrus_sylvestris,European perennial with mottled flowers of purple and pink; sometimes cultivated for fodder or as green manure
+40531,flat_tip_screwdriver,a screwdriver with a flat wedge-shaped tip that fits into a slot in the head of a screw
+40532,flatbed,an open truck bed or trailer with no sides; used to carry large heavy objects
+40533,flatbed_press cylinder_press,a printing press where the type is carried on a flat bed under a cylinder that holds paper and rolls over the type
+40534,flatbread,any of various breads made from usually unleavened dough
+40535,flatbrod,the thin wafer-like bread of Scandinavia
+40536,flatcar flatbed flat,freight car without permanent sides or roof
+40537,flatfish,sweet lean whitish flesh of any of numerous thin-bodied fish; usually served as thin fillets
+40538,flatfish,any of several families of fishes having flattened bodies that swim along the sea floor on one side of the body with both eyes on the upper side
+40539,flatfoot patrolman,a policeman who patrols a given region
+40540,flatfoot splayfoot pes_planus,a foot afflicted with a fallen arch; abnormally flattened and spread out
+40541,flathead,food fish of the Indonesian region of the Pacific; resembles gurnards
+40542,flathead,pallid bottom-dwelling flat-headed fish with large eyes and a duck-like snout
+40543,flathead_catfish mudcat goujon shovelnose_catfish spoonbill_catfish Pylodictus_olivaris,large catfish of central United States having a flattened head and projecting jaw
+40544,flatiron,an iron that was heated by placing it on a stove
+40545,flatlet,a tiny flat
+40546,flatmate,an associate who shares an apartment with you
+40547,flatness,a want of animation or brilliance; "the almost self-conscious flatness of Hemingway's style"
+40548,flatness,a deficiency in flavor; "it needed lemon juice to sharpen the flatness of the dried lentils"
+40549,flatness lusterlessness lustrelessness mat matt matte,the property of having little or no contrast; lacking highlights or gloss
+40550,flats,footwear (shoes or slippers) with no heel (or a very low heel)
+40551,flatterer adulator,a person who uses flattery
+40552,flattery,excessive or insincere praise
+40553,flatulence flatulency gas,a state of excessive gas in the alimentary canal
+40554,flatware,tableware that is relatively flat and fashioned as a single piece
+40555,flatware silver,silverware eating utensils
+40556,flatwork flat_wash,ironing that can be done mechanically
+40557,flatworm platyhelminth,parasitic or free-living worms having a flattened body
+40558,flaunt,the act of displaying something ostentatiously; "his behavior was an outrageous flaunt"
+40559,flavin,a ketone that forms the nucleus of certain natural yellow pigments like riboflavin
+40560,flavivirus,animal viruses belonging to the family Flaviviridae
+40561,flavone,a colorless crystalline compound that is part of a number of white or yellow plant pigments
+40562,flavonoid,any of a large class of plant pigments having a chemical structure based on or similar to flavone
+40563,flavor flavour,(physics) the six kinds of quarks
+40564,flavorer flavourer flavoring flavouring seasoner seasoning,something added to food primarily for the savor it imparts
+40565,flavorlessness flavourlessness savorlessness savourlessness tastelessness,the property of having no flavor
+40566,flavorsomeness flavoursomeness savoriness,having an appetizing flavor
+40567,flaw,defect or weakness in a person's character; "he had his flaws, but he was great nonetheless"
+40568,flaw,an imperfection in a plan or theory or legal document that causes it to fail or that reduces its effectiveness
+40569,flax,fiber of the flax plant that is made into thread and woven into linen fabric
+40570,flax,plant of the genus Linum that is cultivated for its seeds and for the fibers of its stem
+40571,flax_rust flax_rust_fungus Melampsora_lini,fungus causing flax rust
+40572,flea,any wingless bloodsucking parasitic insect noted for ability to leap
+40573,flea_beetle,any small leaf beetle having enlarged hind legs and capable of jumping
+40574,flea_bite,sting inflicted by a flea
+40575,flea_bite,a very minor inconvenience
+40576,flea_market,an open-air street market for inexpensive or secondhand articles
+40577,fleabag,a run-down hotel
+40578,fleabane,any of several North American plants of the genus Erigeron having daisylike flowers; formerly believed to repel fleas
+40579,fleabane feabane_mullet Pulicaria_dysenterica,hairy perennial Eurasian herb with yellow daisylike flowers reputed to destroy or drive away fleas
+40580,fleapit,an old shabby movie theater
+40581,fleawort psyllium Spanish_psyllium Plantago_psyllium,plantain of Mediterranean regions whose seeds swell and become gelatinous when moist and are used as a mild laxative
+40582,flecainide Tambocor,oral antiarrhythmic medication (trade name Tambocor) used as a last resort in treating arrhythmias; increases the risk of sudden death in heart attack patients
+40583,fledgling fledgeling,young bird that has just fledged or become capable of flying
+40584,fleece,the wool of a sheep or similar animal
+40585,fleece,a soft bulky fabric with deep pile; used chiefly for clothing
+40586,fleer,contempt expressed by mockery in looks or words
+40587,fleet,group of aircraft operating together under the same ownership
+40588,fleet,group of motor vehicles operating together under the same ownership
+40589,fleet,a group of steamships operating together under the same ownership
+40590,fleet,a group of warships organized as a tactical unit
+40591,fleet_admiral five-star_admiral,an admiral of the highest rank
+40592,fleet_ballistic_missile_submarine,a submarine carrying ballistic missiles
+40593,fleetness,rapidity of movement; "fleetness of foot"
+40594,flesh,the soft tissue of the body of a vertebrate: mainly muscle tissue and fat
+40595,flesh_fly Sarcophaga_carnaria,fly whose larvae feed on carrion or the flesh of living animals
+40596,flesh_wound,a wound that does not damage important internal organs or shatter any bones
+40597,fleshiness obesity corpulency,more than average fatness
+40598,fleur-de-lis fleur-de-lys,(heraldry) charge consisting of a conventionalized representation of an iris
+40599,flex,the act of flexing; "he gave his biceps a flex to impress the ladies"
+40600,flexibility flexibleness,the property of being flexible; easily bent or shaped
+40601,flexibility flexibleness,the quality of being adaptable or variable; "he enjoyed the flexibility of his working arrangement"
+40602,flexion flexure,act of bending a joint; especially a joint between the bones of a limb so that the angle between them is decreased
+40603,flexor_muscle flexor,a skeletal muscle whose contraction bends a joint
+40604,flexure flection flexion,the state of being flexed (as of a joint)
+40605,flibbertigibbet foolish_woman,a female fool
+40606,flick,a light sharp contact (usually with something flexible); "he gave it a flick with his finger"; "he felt the flick of a whip"
+40607,flick,a short stroke
+40608,flicker,North American woodpecker
+40609,flicker spark glint,a momentary flash of light
+40610,flickertail Richardson_ground_squirrel Citellus_richardsoni,of sagebrush and grassland areas of western United States and Canada
+40611,flier flyer,someone who travels by air
+40612,flies,(theater) the space over the stage (out of view of the audience) used to store scenery (drop curtains)
+40613,flight,a flock of flying birds
+40614,flight,a formation of aircraft in flight
+40615,flight,an air force unit smaller than a squadron
+40616,flight,passing above and beyond ordinary bounds; "a flight of fancy"; "flights of rhetoric"; "flights of imagination"
+40617,flight,a scheduled trip by plane between designated airports; "I took the noon flight to Chicago"
+40618,flight flight_of_stairs flight_of_steps,a stairway (set of steps) between one floor or landing and the next
+40619,flight flying,an instance of traveling by air; "flying was still an exciting adventure for him"
+40620,flight_control,control from ground stations of airplanes in flight by means of messages transmitted to the pilot electronically
+40621,flight_deck landing_deck,the upper deck of an aircraft carrier; used as a runway
+40622,flight_engineer,the flight crewman responsible for mechanical operation while in flight
+40623,flight_feather pinion quill quill_feather,any of the larger wing or tail feathers of a bird
+40624,flight_line,place where airplanes are parked and the maintenance hangars (but not the runways or taxiways)
+40625,flight_maneuver airplane_maneuver,a maneuver executed by an aircraft
+40626,flight_path,the path of a rocket or projectile or aircraft through the air
+40627,flight_simulator trainer,simulator consisting of a machine on the ground that simulates the conditions of flying a plane
+40628,flight_surgeon,a medical officer specializing in aviation medicine
+40629,flightiness arbitrariness whimsicality whimsy whimsey capriciousness,the trait of acting unpredictably and more from whim or caprice than from reason or judgment; "I despair at the flightiness and whimsicality of my memory"
+40630,flimsiness shoddiness,the property of weakness by virtue of careless construction
+40631,flinders,bits and splinters and fragments; "it would have shattered in flinders long before it did that damage"
+40632,fling,the act of flinging
+40633,flint,a hard kind of stone; a form of silica more opaque than chalcedony
+40634,flint_corn flint_maize Yankee_corn Zea_mays_indurata,corn having kernels with a hard outer layer enclosing the soft endosperm
+40635,flintlock,an obsolete gunlock that has flint embedded in the hammer; the flint makes a spark that ignites the charge
+40636,flintlock firelock,a muzzle loader that had a flintlock type of gunlock
+40637,flintstone,pebbles of flint used in masonry construction
+40638,flip,hot or cold alcoholic mixed drink containing a beaten egg
+40639,flip,a sudden, quick movement; "with a flip of the wrist"; "the fish flipped over"
+40640,flip,a dive in which the diver somersaults before entering the water
+40641,flip toss,the act of flipping a coin
+40642,flip-flop,an electronic circuit that can assume either of two stable states
+40643,flip-flop,a backward somersault
+40644,flip-flop thong,a backless sandal held to the foot by a thong between the big toe and the second toe
+40645,flip_chart,a chart with several sheets hinged at the top; sheets can be flipped over to present information sequentially
+40646,flip_side,a different aspect of something (especially the opposite aspect); "the flip side of your positive qualities sometimes get out of control"; "on the flip side of partnerships he talked about their competition"
+40647,flippancy light-mindedness,inappropriate levity; "her mood changed and she was all lightness and joy"
+40648,flipper,the flat broad limb of aquatic animals specialized for swimming
+40649,flipper fin,a shoe for swimming; the paddle-like front is an aid in swimming (especially underwater)
+40650,flirt flirting flirtation coquetry dalliance toying,playful behavior intended to arouse sexual interest
+40651,flit,a secret move (to avoid paying debts); "they did a moonlight flit"
+40652,flit dart,a sudden quick movement
+40653,flitch,fish steak usually cut from a halibut
+40654,flitch side_of_bacon,salted and cured abdominal wall of a side of pork
+40655,float,the time interval between the deposit of a check in a bank and its payment
+40656,float,the number of shares outstanding and available for trading by the public
+40657,float,an elaborate display mounted on a platform carried by a truck (or pulled by a truck) in a procession or parade
+40658,float,something that floats on the surface of water
+40659,float plasterer's_float,a hand tool with a flat face used for smoothing and finishing the surface of plaster or cement or stucco
+40660,floater,a debt instrument with a variable interest rate tied to some other interest rate (e.g. the rate paid by T-bills)
+40661,floater,an employee who is reassigned from job to job as needed
+40662,floater,a voter who votes illegally at different polling places in the same election
+40663,floater,a swimmer who floats in the water
+40664,floater,an object that floats or is capable of floating
+40665,floater floating_policy,an insurance policy covering loss of movable property (e.g. jewelry) regardless of its location
+40666,floating natation,the act of someone who floats on the water
+40667,floating-moss Salvinia_rotundifolia Salvinia_auriculata,free-floating aquatic ferns
+40668,floating-point_notation floating-point_representation_system,a radix numeration system in which the location of the decimal point is indicated by an exponent of the radix; in the floating-point representation system, 0.0012 is represented as 0.12-2 where -2 is the exponent
+40669,floating-point_number,a number represented in floating-point notation
+40670,floating-point_operation flop,an arithmetic operation performed on floating-point numbers; "this computer can perform a million flops per second"
+40671,floating_dock floating_dry_dock,dry dock that can be submerged under a vessel and then raised
+40672,floating_fern Ceratopteris_thalictroides,pantropical aquatic fern
+40673,floating_fern water_sprite Ceratopteris_pteridioides,aquatic fern of tropical America often used in aquariums
+40674,floating_mine marine_mine,an explosive mine designed to destroy ships that bump into it
+40675,floatplane pontoon_plane,a seaplane equipped with pontoons for landing or taking off from water
+40676,floccose_chanterelle Cantharellus_floccosus,a mildly poisonous fungus with a fruiting body shaped like a hollow trumpet
+40677,flocculation,the process of flocculating; forming woolly cloudlike aggregations
+40678,floccule floc,a small loosely aggregated mass of flocculent material suspended in or precipitated from a liquid
+40679,flock,a church congregation guided by a pastor
+40680,flock,a group of birds
+40681,flock fold,a group of sheep or goats
+40682,flogger scourger,a torturer who flogs or scourges (especially an official whose duty is to whip offenders)
+40683,flood floodlight flood_lamp photoflood,light that is a source of artificial illumination having a broad beam; used in photography
+40684,flood flowage,the act of flooding; filling to overflowing
+40685,flood inundation deluge alluvion,the rising of a body of water and its overflowing onto normally dry land; "plains fertilized by annual inundations"
+40686,flood inundation deluge torrent,an overwhelming number or amount; "a flood of requests"; "a torrent of abuse"
+40687,flood overflow outpouring,a large flow
+40688,flood_control,(engineering) the art or technique of trying to control rivers with dams etc in order to minimize the occurrence of floods
+40689,flood_tide flood rising_tide,the occurrence of incoming water (between a low tide and the following high tide); "a tide in the affairs of men which, taken at the flood, leads on to fortune" -Shakespeare
+40690,flooded_gum,any of several Australian gum trees growing on moist or alluvial soil
+40691,floodgate,something that restrains a flood or outpouring; "suspension of surveillance opened the floodgates to illegal immigrants"
+40692,floodhead,a wall of water rushing ahead of the flood; "we were lucky to be safe when the floodheads hit"
+40693,floodplain flood_plain,a low plain adjacent to a river that is formed chiefly of river sediment and is subject to flooding
+40694,floor,the lower inside surface of any hollow structure; "the floor of the pelvis"; "the floor of the cave"
+40695,floor,the ground on which people and animals move about; "the fire spared the forest floor"
+40696,floor,the bottom surface of any lake or other body of water
+40697,floor,the occupants of a floor; "the whole floor complained about the lack of heat"
+40698,floor,the parliamentary right to address an assembly; "the chairman granted him the floor"
+40699,floor,the legislative hall where members debate and vote and conduct other business; "there was a motion from the floor"
+40700,floor base,a lower limit; "the government established a wage floor"
+40701,floor flooring,the inside lower horizontal surface (as of a room, hallway, tent, or other structure); "they needed rugs to cover the bare floors"; "we spread our sleeping bags on the dry floor of the tent"
+40702,floor level storey story,a structure consisting of a room or set of rooms at a single position along a vertical scale; "what level is the office on?"
+40703,floor trading_floor,a large room in a exchange where the trading is done; "he is a floor trader"
+40704,floor_cover floor_covering,a covering for a floor
+40705,floor_joist,joist that supports a floor
+40706,floor_lamp,a lamp that stands on the floor
+40707,floor_leader,the legislator who organizes his party's strategy
+40708,floor_plan,scale drawing of a horizontal section through a building at a given level; contrasts with elevation
+40709,floor_wax,a preparation containing wax and used to polish and preserve the finish of floors
+40710,floorboard,the floor of an automobile
+40711,floorboard floor_board,a board in the floor
+40712,flooring,building material used in laying floors
+40713,floorwalker shopwalker,an employee of a retail store who supervises sales personnel and helps with customer problems; "a floorwalker is called a shopwalker in Britain"
+40714,flop bust fizzle,a complete failure; "the play was a dismal flop"
+40715,flop collapse,the act of throwing yourself down; "he landed on the bed with a great flop"
+40716,flop dud washout,someone who is unsuccessful
+40717,flophouse dosshouse,a cheap lodging house
+40718,floral_leaf,a modified leaf that is part of a flower
+40719,florest's_cineraria Pericallis_hybrida,herb derived from Pericallis cruenta and widely cultivated in a variety of profusely flowering forms with florets from white to pink to red or purple or violet or blue
+40720,floret floweret,a diminutive flower (especially one that is part of a composite flower)
+40721,florida_selaginella Selaginella_eatonii,occurs widely in Florida
+40722,florilegium garland miscellany,an anthology of short literary pieces and poems and ballads etc.
+40723,florist,someone who grows and deals in flowers; "the florist made up an attractive bouquet"
+40724,florist florist_shop flower_store,a shop where flowers and ornamental plants are sold
+40725,florist's_chrysanthemum florists'_chrysanthemum mum Dendranthema_grandifloruom Chrysanthemum_morifolium,of China
+40726,florist's_gloxinia Sinningia_speciosa Gloxinia_spesiosa,South American herb cultivated in many varieties as a houseplant for its large handsome leaves and large variously colored bell-shaped flowers
+40727,floss,a soft loosely twisted thread used in embroidery
+40728,flotation floatation,the phenomenon of floating (remaining on the surface of a liquid without sinking)
+40729,flotation floatation,financing a commercial enterprise by bond or stock shares
+40730,flotilla,a United States Navy fleet consisting of two or more squadrons of small warships
+40731,flotilla,a fleet of small craft
+40732,flotsam jetsam,the floating wreckage of a ship
+40733,flounce,the act of walking with exaggerated jerky motions
+40734,flounder,flesh of any of various American and European flatfish
+40735,flounder,any of various European and non-European marine flatfish
+40736,flour,fine powdery foodstuff obtained by grinding and sifting the meal of a cereal grain
+40737,flour_beetle flour_weevil,an insect that infests flour and stored grains
+40738,flour_bin,a bin for holding flour
+40739,flour_mill,a mill for grinding grain into flour
+40740,flourish,an ornamental embellishment in writing
+40741,flourish,a showy gesture; "she entered with a great flourish"
+40742,flourish,a display of ornamental speech or language
+40743,flourish brandish,the act of waving
+40744,flourish fanfare tucket,(music) a short lively tune played on brass instruments; "he entered to a flourish of trumpets"; "her arrival was greeted with a rousing fanfare"
+40745,flow,any uninterrupted stream or discharge
+40746,flow flow_rate rate_of_flow,the amount of fluid that flows in a given time
+40747,flow flowing,the motion characteristic of fluids (liquids or gases)
+40748,flow stream,the act of flowing or streaming; continuous progression
+40749,flow_chart flowchart flow_diagram flow_sheet,a diagram of the sequence of operations in a computer program or an accounting system
+40750,flowage,gradual internal motion or deformation of a solid body (as by heat); "rock fracture and rock flowage are different types of geological deformation"
+40751,flowage,a body of water that has been created by deliberately flooding an area; "many campsites were located near the flowage"
+40752,flower,a plant cultivated for its blooms or blossoms
+40753,flower bloom blossom,reproductive organ of angiosperm plants especially one having showy or colorful parts
+40754,flower prime peak heyday bloom blossom efflorescence flush,the period of greatest prosperity or productivity
+40755,flower-of-an-hour flowers-of-an-hour bladder_ketmia black-eyed_Susan Hibiscus_trionum,annual weedy herb with ephemeral yellow purple-eyed flowers; Old World tropics; naturalized as a weed in North America
+40756,flower_arrangement floral_arrangement,a decorative arrangement of flowers
+40757,flower_bud,a bud from which only a flower or flowers develop
+40758,flower_chain,flowers strung together in a chain
+40759,flower_cluster,an inflorescence consisting of a cluster of flowers
+40760,flower_garden,a garden featuring flowering plants
+40761,flower_gardening floriculture,the cultivation of flowering plants
+40762,flower_girl,a woman who sells flowers in the street
+40763,flower_girl,a young girl who carries flowers in a (wedding) procession
+40764,flower_head,a shortened compact cluster of flowers so arranged that the whole gives the effect of a single flower as in clover or members of the family Compositae
+40765,flower_people hippies hipsters,a youth subculture (mostly from the middle class) originating in San Francisco in the 1960s; advocated universal love and peace and communes and long hair and soft drugs; favored acid rock and progressive rock music
+40766,flower_power,a counterculture of young people in the US during the 1960s and 70s
+40767,flowerbed flower_bed bed_of_flowers,a bed in which flowers are growing
+40768,flowering_almond Prunus_triloba,deciduous Chinese shrub or small tree with often trilobed leaves grown for its pink-white flowers
+40769,flowering_almond oriental_bush_cherry Prunus_japonica,woody oriental plant with smooth unfurrowed red fruit grown especially for its white or pale pink blossoms
+40770,flowering_ash Fraxinus_cuspidata,shrubby ash of southwestern United States having fragrant white flowers
+40771,flowering_ash Fraxinus_dipetala,shrubby California ash with showy off-white flowers
+40772,flowering_cherry,any of several shrubs or trees of the genus Prunus cultivated for their showy white or pink single or double blossoms
+40773,flowering_fern Helminthostachys_zeylanica,Australasian fern with clusters of sporangia on stems of fertile fronds
+40774,flowering_fern osmund,any fern of the genus Osmunda: large ferns with creeping rhizomes; naked sporangia are on modified fronds that resemble flower clusters
+40775,flowering_maple,an ornamental plant of the genus Abutilon having leaves that resemble maple leaves
+40776,flowering_quince,Asiatic ornamental shrub with spiny branches and pink or red blossoms
+40777,flowering_raspberry purple-flowering_raspberry Rubus_odoratus thimbleberry,shrubby raspberry of eastern North America having showy rose to purplish flowers and red or orange thimble-shaped fruit
+40778,flowering_shrub,shrub noted primarily for its flowers
+40779,flowering_tobacco Jasmine_tobacco Nicotiana_alata,South American ornamental perennial having nocturnally fragrant greenish-white flowers
+40780,flowering_wintergreen gaywings bird-on-the-wing fringed_polygala Polygala_paucifolia,common trailing perennial milkwort of eastern North America having leaves like wintergreen and usually rosy-purple flowers with winged sepals
+40781,floxuridine,antineoplastic drug used to treat some cancers; can cause loss of hair
+40782,fluctuation,a wave motion; "the fluctuations of the sea"
+40783,fluctuation wavering,the quality of being unsteady and subject to changes; "he kept a record of price fluctuations"
+40784,flue,a conduit to carry off smoke
+40785,flue_pipe flue labial_pipe,organ pipe whose tone is produced by air passing across the sharp edge of a fissure or lip
+40786,flue_stop,an organ stop with the tone of a flue pipe
+40787,fluency,skillfulness in speaking or writing
+40788,fluency volubility articulateness,the quality of being facile in speech and writing
+40789,fluff,any light downy material
+40790,fluff,a blunder (especially an actor's forgetting the lines)
+40791,fluffy_omelet,souffle-like omelet made by beating and adding the whites separately
+40792,flugelhorn fluegelhorn,a brass instrument resembling a cornet but with a wider bore
+40793,fluid,a substance that is fluid at room temperature and pressure
+40794,fluid,continuous amorphous matter that tends to flow and to conform to the outline of its container: a liquid or a gas
+40795,fluid_drive,an automotive power coupling
+40796,fluid_flywheel,a kind of fluid coupling in which the flywheel is the driving rotor
+40797,fluid_mechanics hydraulics,study of the mechanics of fluids
+40798,fluidity fluidness,a changeable quality; "a charming Oriental fluidity of manner"; "a certain fluidness in his perception of time made him an unpredictable colleague"; "demographers try to predict social fluidity"
+40799,fluidity fluidness liquidity liquidness runniness,the property of flowing easily; "adding lead makes the alloy easier to cast because the melting point is reduced and the fluidity is increased"; "they believe that fluidity increases as the water gets warmer"
+40800,fluidounce fluid_ounce,a British imperial unit of capacity or volume (liquid or dry) equal to 8 fluid drams or 28.416 cubic centimeters (1.734 cubic inches)
+40801,fluidounce fluid_ounce,a United States unit of capacity or volume equal to 1.804 cubic inches
+40802,fluidram fluid_dram fluid_drachm drachm,a British imperial capacity measure (liquid or dry) equal to 60 minims or 3.5516 cubic centimeters
+40803,fluidram fluid_dram fluid_drachm drachm,a unit of capacity or volume in the apothecary system equal to one eighth of a fluid ounce
+40804,fluke,a barb on a harpoon or arrow
+40805,fluke,either of the two lobes of the tail of a cetacean
+40806,fluke flue,flat bladelike projection on the arm of an anchor
+40807,fluke trematode trematode_worm,parasitic flatworms having external suckers for attaching to a host
+40808,flume,watercourse that consists of an open artificial chute filled with water for power or for carrying logs
+40809,flummery,a bland custard or pudding especially of oatmeal
+40810,flunitrazepan Rohypnol,a depressant and tranquilizer (trade name Rohypnol) often used in the commission of sexual assault; legally available in Europe and Mexico and Colombia
+40811,flunky flunkey stooge yes-man,a person of unquestioning obedience
+40812,fluorapatite,a form of apatite in which fluorine predominates over chlorine
+40813,fluorescein fluoresceine fluorescent_dye resorcinolphthalein,a yellow dye that is visible even when highly diluted; used as an absorption indicator when silver nitrate solution is added to sodium chloride in order to precipitate silver chloride (turns pink when no chloride ions are left in solution and negative fluorescein ions are then absorbed)
+40814,fluorescein_isothiocyanate fluorescein_isocyanate,a fluorochrome commonly conjugated with antibodies for use in indirect immunofluorescence
+40815,fluorescence,light emitted during absorption of radiation of some other (invisible) wavelength
+40816,fluorescence_microscopy,light microscopy in which the specimen is irradiated at wavelengths that excite fluorochromes
+40817,fluorescent fluorescent_fixture,a lighting fixture that uses a fluorescent lamp
+40818,fluorescent_lamp,lamp consisting of a tube coated on the inside with a fluorescent material; mercury vapor in the tube emits ultraviolet radiation that is converted to visible radiation by the fluorescent material
+40819,fluoridation fluoridization fluoridisation,the addition of a fluoride to the water supply (to prevent dental decay)
+40820,fluoride,a salt of hydrofluoric acid
+40821,fluorine F atomic_number_9,a nonmetallic univalent element belonging to the halogens; usually a yellow irritating toxic flammable gas; a powerful oxidizing agent; recovered from fluorite or cryolite or fluorapatite
+40822,fluorite fluorspar fluor,a soft mineral (calcium fluoride) that is fluorescent in ultraviolet light; chief source of fluorine
+40823,fluoroboric_acid,an acid of fluorine and boron
+40824,fluoroboride,a salt of fluoroboric acid
+40825,fluorocarbon,a halocarbon in which some hydrogen atoms have been replaced by fluorine; used in refrigerators and aerosols
+40826,fluorocarbon_plastic,a plastic made with fluorocarbon
+40827,fluorochrome,any of various fluorescent substances used in fluorescence microscopy to stain specimens
+40828,fluoroform trifluoromethane,colorless gas haloform CHF3 (similar to chloroform)
+40829,fluoroscope roentgenoscope,an X-ray machine that combines an X-ray source and a fluorescent screen to enable direct observation
+40830,fluoroscopy,examination of body structures using a fluoroscope
+40831,fluorosis,a pathological condition resulting from an excessive intake of fluorine (usually from drinking water)
+40832,fluorouracil,an antimetabolite used to treat certain cancers
+40833,fluosilicate,salt of fluosilicic acid
+40834,fluosilicic_acid hydrofluosilicic_acid,an unstable poisonous corrosive acid known primarily in the form of its salts
+40835,fluoxetine fluoxetine_hydrocholoride Prozac Sarafem,a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade names Prozac or Sarafem); it is thought to work by increasing the activity of serotonin in the brain
+40836,fluphenazine,tranquilizer used to treat psychotic disorders
+40837,flurazepam flurazepam_hydrochloride Dalmane,tranquilizer (trade name Dalmane) used to treat insomnia
+40838,flurbiprofen Ansaid,a nonsteroidal anti-inflammatory drug (trade name Ansaid) that is administered only orally
+40839,flurry snow_flurry,a light brief snowfall and gust of wind (or something resembling that); "he had to close the window against the flurries"; "there was a flurry of chicken feathers"
+40840,flush,a poker hand with all 5 cards in the same suit
+40841,flush gush outpouring,a sudden rapid flow (as of water); "he heard the flush of a toilet"; "there was a little gush of blood"; "she attacked him with an outpouring of words"
+40842,flush_toilet lavatory,a toilet that is cleaned of waste by the flow of water through it
+40843,flushless_toilet,a toilet that relies on bacteria to break down waste matter (instead of using water)
+40844,flute flute_glass champagne_flute,a tall narrow wineglass
+40845,flute fluting,a groove or furrow in cloth etc (particularly a shallow concave groove on the shaft of a column)
+40846,flute transverse_flute,a high-pitched woodwind instrument; a slender tube closed at one end with finger holes on one end and an opening near the closed end across which the breath is blown
+40847,flutist flautist flute_player,someone who plays the flute
+40848,flutter,abnormally rapid beating of the auricles of the heart (especially in a regular rhythm); can result in heart block
+40849,flutter_kick,a swimming kick; the legs are moved rapidly up and down without bending the knees
+40850,fluvastatin Lescol,least expensive statin drug (trade name Lescol); usually taken orally at bedtime
+40851,flux,the rate of flow of energy or particles across a given surface
+40852,flux,a substance added to molten metals to bond with impurities that can then be readily removed
+40853,flux,excessive discharge of liquid from a cavity or organ (as in watery diarrhea)
+40854,flux,in constant change; "his opinions are in flux"; "the newness and flux of the computer industry"
+40855,flux fluxion,a flow or discharge
+40856,flux state_of_flux,a state of uncertainty about what should be done (usually following some important event) preceding the establishment of a new direction of action; "the flux following the death of the emperor"
+40857,flux_applicator,an applicator for applying flux (as in soldering)
+40858,flux_density flux,(physics) the number of changes in energy flow across a given surface per unit area
+40859,flux_density_unit,a measure of the amount of flux per unit of cross sectional area
+40860,flux_unit magnetic_flux_unit,a measure of the strength of a magnetic field per unit area
+40861,fluxmeter,meter that measures magnetic flux by the current it generates in a coil
+40862,fly,fisherman's lure consisting of a fishhook decorated to look like an insect
+40863,fly,two-winged insects characterized by active flight
+40864,fly fly_ball,(baseball) a hit that flies up in the air
+40865,fly fly_front,an opening in a garment that is closed by a zipper or by buttons concealed under a fold of cloth
+40866,fly-by-night,a debtor who flees to avoid paying
+40867,fly-fishing,angling with an artificial fly as a lure
+40868,fly_agaric Amanita_muscaria,poisonous (but rarely fatal) woodland fungus having a scarlet cap with white warts and white gills
+40869,fly_ash,fine solid particles of ash that are carried into the air when fuel is combusted
+40870,fly_casting,casting an artificial fly as a lure
+40871,fly_gallery fly_floor,a narrow raised platform at the side of a stage in a theater; stagehands can work the ropes controlling equipment in the flies
+40872,fly_in_the_ointment,an inconvenience that detracts from the usefulness of something
+40873,fly_orchid,any of several dwarf creeping orchids with small bizarre insect-like hairy flowers on slender stalks
+40874,fly_orchid Ophrys_insectifera Ophrys_muscifera,European orchid whose flowers resemble flies
+40875,fly_poison Amianthum_muscaetoxicum Amianthum_muscitoxicum,all parts of plant are highly toxic; bulb pounded and used as a fly poison; sometimes placed in subfamily Melanthiaceae
+40876,fly_rod,a long flexible fishing rod used in fly fishing
+40877,fly_tent,a tent with a fly front
+40878,flycatching_warbler,any of numerous American wood warblers that feed on insects caught on the wing
+40879,flying_boat,a large seaplane that floats with its fuselage in the water rather than on pontoons
+40880,flying_bridge flybridge fly_bridge monkey_bridge,the highest navigational bridge on a ship; a small (often open) deck above the pilot house
+40881,flying_buttress arc-boutant,a buttress that stands apart from the main structure and connected to it by an arch
+40882,flying_carpet,(Asian folktale) an imaginary carpet that will fly people anywhere they wish to go
+40883,flying_colors flying_colours,complete success; "they passed inspection with flying colors"
+40884,flying_fish,tropical marine fishes having enlarged winglike fins used for brief gliding flight
+40885,flying_fox,large bat with a head that resembles the head of a fox
+40886,flying_gecko fringed_gecko Ptychozoon_homalocephalum,a gecko that has membranous expansions along the sides of its body and limbs and tail that enable it to glide short distances
+40887,flying_gurnard flying_robin butterflyfish,tropical fish with huge fanlike pectoral fins for underwater gliding; unrelated to searobins
+40888,flying_jib,the outermost of two or more jibs
+40889,flying_lemur flying_cat colugo,arboreal nocturnal mammal of southeast Asia and the Philippines resembling a lemur and having a fold of skin on each side from neck to tail that is used for long gliding leaps
+40890,flying_mare,a wrestling maneuver
+40891,flying_mouse,tiny flying phalanger
+40892,flying_phalanger flying_opossum flying_squirrel,nocturnal phalangers that move with gliding leaps using parachute-like folds of skin along the sides of the body
+40893,flying_school,a school for teaching students to fly airplanes
+40894,flying_squad,a mobile group of trained people (police or executives or officials) able to move quickly in the case of emergencies
+40895,flying_start running_start,a racing start in which the contestants are already in full motion when they pass the starting line
+40896,flying_start running_start,a quick and auspicious beginning
+40897,flying_visit,a visit that last for only a very short time; "he wanted to hear all about my flying visit to his old stamping grounds"
+40898,flyleaf,a blank leaf in the front or back of a book
+40899,flyover fly-by flypast,a flight at a low altitude (usually of military aircraft) over spectators on the ground
+40900,flypaper,paper that is poisoned or coated with a sticky substance to kill flies
+40901,flyspeck,a tiny dark speck made by the excrement of a fly
+40902,flytrap,a trap for catching flies
+40903,flyweight,weighs no more than 115 pounds
+40904,flyweight,an amateur boxer who weighs no more than 112 pounds
+40905,flywheel,regulator consisting of a heavy wheel that stores kinetic energy and smooths the operation of a reciprocating engine
+40906,foal,a young horse
+40907,foam,a lightweight material in cellular form; made by introducing gas bubbles during manufacture
+40908,foam froth,a mass of small bubbles formed in or on a liquid; "the beer had a thick head of foam"
+40909,foam_rubber,spongy rubber; made by introducing air bubbles before vulcanization and used for cushioning or upholstery
+40910,foamflower coolwart false_miterwort false_mitrewort Tiarella_cordifolia,stoloniferous white-flowered spring-blooming woodland plant
+40911,foaminess,the property of being foamy
+40912,fob,an adornment that hangs from a watch chain
+40913,fob watch_chain watch_guard,short chain or ribbon attaching a pocket watch to a man's vest
+40914,fob watch_pocket,a vest pocket to hold a pocket watch
+40915,focal_distance focal_length,the distance from a lens to its focus
+40916,focal_infection,bacterial infection limited to a specific organ or region especially one causing symptoms elsewhere
+40917,focal_ratio f_number stop_number speed,the ratio of the focal length to the diameter of a (camera) lens system
+40918,focal_seizure,transitory disturbance in motor or sensory function resulting from abnormal cortical activity
+40919,focalization focalisation,the confinement of an infection to a limited area
+40920,focalization focalisation focusing,the act of bringing into focus
+40921,focus,a fixed reference point on the concave side of a conic section
+40922,focus,maximum clarity or distinctness of an idea; "the controversy brought clearly into focus an important difference of opinion"
+40923,focus,maximum clarity or distinctness of an image rendered by an optical system; "in focus"; "out of focus"
+40924,focus focal_point,a point of convergence of light (or other radiation) or a point from which it diverges
+40925,focus focal_point nidus,a central point or locus of an infection in an organism; "the focus of infection"
+40926,focus focusing focussing focal_point direction centering,the concentration of attention or energy on something; "the focus of activity shifted to molecular biology"; "he had no direction in his life"
+40927,fodder,coarse food (especially for livestock) composed of entire plants or the leaves and stalks of a cereal crop
+40928,foe enemy,a personal enemy; "they had been political foes for years"
+40929,fog,droplets of water vapor suspended in the air near the ground
+40930,fog fogginess murk murkiness,an atmosphere in which visibility is reduced because of a cloud of some substance
+40931,fogbank,a large mass of fog on the sea (as seen from a distance)
+40932,foghorn,a warning device consisting of a horn that generates a loud low tone
+40933,foghorn fogsignal,a loud low warning signal that can be heard by fogbound ships
+40934,foglamp,headlight that provides strong beam for use in foggy weather
+40935,fohn foehn,a warm dry wind that blows down the northern slopes of the Alps
+40936,foible,the weaker part of a sword's blade from the forte to the tip
+40937,foie_gras pate_de_foie_gras,a pate made from goose liver (marinated in Cognac) and truffles
+40938,foil,a piece of thin and flexible sheet metal; "the photographic film was wrapped in foil"
+40939,foil,a light slender flexible sword tipped by a button
+40940,foil enhancer,anything that serves by contrast to call attention to another thing's good qualities; "pretty girls like plain friends as foils"
+40941,foil transparency,picture consisting of a positive photograph or drawing on a transparent base; viewed with a projector
+40942,fold crease plication flexure crimp bend,an angular or rounded shape made by folding; "a fold in the napkin"; "a crease in his trousers"; "a plication on her blouse"; "a flexure of the colon"; "a bend of his elbow"
+40943,fold folding,a geological process that causes a bend in a stratum of rock
+40944,fold folding,the act of folding; "he gave the napkins a double fold"
+40945,fold plica,a folded part (as in skin or muscle)
+40946,fold sheepfold sheep_pen sheepcote,a pen for sheep
+40947,folder,covering that is folded over to protect the contents
+40948,folderal falderol frill gimcrackery gimcrack nonsense trumpery,ornamental objects of no great value
+40949,folderol rubbish tripe trumpery trash wish-wash applesauce codswallop,nonsensical talk or writing
+40950,folding_chair,a chair that can be folded flat for storage
+40951,folding_door accordion_door,an interior door that opens by folding back in sections (rather than by swinging on hinges)
+40952,folding_saw,a saw with a toothed blade that folds into a handle (the way a pocketknife folds)
+40953,foldout gatefold,an oversize page that is folded in to a book or magazine
+40954,foliation,(geology) the arrangement of leaflike layers in a rock
+40955,foliation,the production of foil by cutting or beating metal into thin leaves
+40956,foliation,the work of coating glass with metal foil
+40957,foliation foliage,(architecture) leaf-like architectural ornament
+40958,foliation leafing,(botany) the process of forming leaves
+40959,folie_a_deux,the simultaneous occurrence of symptoms of a mental disorder (as delusions) in two persons who are closely related (as siblings or man and wife)
+40960,folio,a book (or manuscript) consisting of large sheets of paper folded in the middle to make two leaves or four pages; "the first folio of Shakespeare's plays"
+40961,folium,a thin layer or stratum of (especially metamorphic) rock
+40962,folk folks common_people,people in general (often used in the plural); "they're just country folk"; "folks around here drink moonshine"; "the common people determine the group character and preserve its customs from one generation to the next"
+40963,folk_art,genre of art of unknown origin that reflects traditional values of a society
+40964,folk_dancer,someone who does folk dances
+40965,folk_dancing folk_dance,a style of dancing that originated among ordinary people (not in the royal courts)
+40966,folk_etymology,a popular but erroneous etymology
+40967,folk_music ethnic_music folk,the traditional and typically anonymous music that is an expression of the life of people in a community
+40968,folk_poet,a folk writer who composes in verse
+40969,folk_singer jongleur minstrel poet-singer troubadour,a singer of folk songs
+40970,folk_song folksong folk_ballad,a song that is traditionally sung by the common people of a region and forms part of their culture
+40971,folk_writer,a writer of folktales
+40972,folklore,the unwritten lore (stories and proverbs and riddles and songs) of a culture
+40973,folks,your parents; "he wrote to his folks every day"
+40974,folktale folk_tale,a tale circulated by word of mouth among the common folk
+40975,follicle,any small spherical group of cells containing a cavity
+40976,follicle-stimulating_hormone FSH,a gonadotropic hormone that is secreted by the anterior pituitary and stimulates growth of Graafian follicles in female mammals, and activates the cells in male mammals that form sperm
+40977,folliculitis,inflammation of a hair follicle
+40978,follies,a revue with elaborate costuming
+40979,follow-on,an immediate second innings forced on a cricket team scoring a prescribed number of runs fewer than its opponents in the first innings
+40980,follow-through,the act of carrying a stroke to its natural completion; "his follow-through was straight down the line toward the target"; "squash can be dangerous if your opponent has a long follow-through"
+40981,follow-through,carrying some project or intention to full completion; "I appreciated his follow-through on his promise"
+40982,follow-up followup,a piece of work that exploits or builds on earlier work; "his new software is a follow-up to the programs they started with"
+40983,follow-up followup,an activity that continues something that has already begun or that repeats something that has already been done
+40984,follow-up followup reexamination review,a subsequent examination of a patient for the purpose of monitoring earlier treatment
+40985,follower,someone who travels behind or pursues another
+40986,follower,a person who accepts the leadership of another
+40987,following followers,a group of followers or enthusiasts
+40988,folly foolery tomfoolery craziness lunacy indulgence,foolish or senseless behavior
+40989,folly foolishness craziness madness,the quality of being rash and foolish; "trying to drive through a blizzard is the height of folly"; "adjusting to an insane society is total foolishness"
+40990,folly foolishness unwiseness,the trait of acting stupidly or rashly
+40991,fomentation,a substance used as a warm moist medicinal compress or poultice
+40992,fomentation,application of warm wet coverings to a part of the body to relieve pain and inflammation
+40993,fomentation instigation,deliberate and intentional triggering (of trouble or discord)
+40994,fomite vehicle,any inanimate object (as a towel or money or clothing or dishes or books or toys etc.) that can transmit infectious agents from one person to another
+40995,fondant,candy made of a thick creamy sugar paste
+40996,fondler,a molester who touches the intimate parts of the victim; "the woman charged that her jailer was a fondler"; "not all fondlers are sexual perverts"
+40997,fondness fancy partiality,a predisposition to like something; "he had a fondness for whiskey"; "she had dismissed him quite brutally, relegating him to the status of a passing fancy, or less"
+40998,fondue fondu,cubes of meat or seafood cooked in hot oil and then dipped in any of various sauces
+40999,fondue fondu,hot cheese or chocolate melted to the consistency of a sauce into which bread or fruits are dipped
+41000,font fount typeface face case,a specific size and style of type within a type family
+41001,font_cartridge cartridge_font,any font that is contained in a cartridge that can be plugged into a computer printer
+41002,fontanelle fontanel soft_spot,any membranous gap between the bones of the cranium in an infant or fetus
+41003,food food_for_thought intellectual_nourishment,anything that provides mental stimulus for thinking
+41004,food nutrient,any substance that can be metabolized by an animal to give energy and build tissue
+41005,food solid_food,any solid substance (as opposed to liquid) that is used as a source of nourishment; "food and drink"
+41006,food_additive artificial_additive,an additive to food intended to improve its flavor or appearance or shelf-life
+41007,food_allergy,allergic reaction to a substance ingested in food
+41008,food_bank,a place where food is contributed and made available to those in need; "they set up a food bank for the flood victims"
+41009,food_cache,food in a secure or hidden storage place
+41010,food_chain,(ecology) a community of organisms where each member is eaten in turn by another member
+41011,food_company,a company that processes and sells food
+41012,food_court,an area (as in a shopping mall) where fast food is sold (usually around a common eating area)
+41013,food_faddist,a person who adheres briefly to different diets
+41014,food_fish,any fish used for food by human beings
+41015,food_hamper,a hamper for packing and transporting food
+41016,food_manufacturer,a person who manufactures food products
+41017,food_poisoning gastrointestinal_disorder,illness caused by poisonous or contaminated food
+41018,food_processor,a kitchen appliance with interchangeable blades; used for shredding or blending or chopping or slicing food
+41019,food_pyramid,(ecology) a hierarchy of food chains with the principal predator at the top; each level preys on the level below
+41020,food_stamp,a government-issued stamp that can be used in exchange for food
+41021,food_web food_cycle,(ecology) a community of organisms where there are several interrelated food chains
+41022,foodstuff food_product,a substance that can be used or prepared for use as food
+41023,fool sap saphead muggins tomfool,a person who lacks good judgment
+41024,fool's_errand,a fruitless mission
+41025,fool's_paradise,an illusory state of wellbeing
+41026,fool's_parsley lesser_hemlock Aethusa_cynapium,European weed naturalized in America that resembles parsley but causes nausea and poisoning when eaten
+41027,foolscap,a size of paper used especially in Britain
+41028,foot,a member of a surveillance team who works on foot or rides as a passenger
+41029,foot,the lower part of anything; "curled up on the foot of the bed"; "the foot of the page"; "the foot of the list"; "the foot of the mountain"
+41030,foot,a support resembling a pedal extremity; "one foot of the chair was on the carpet"
+41031,foot,travel by walking; "he followed on foot"; "the swiftest of foot"
+41032,foot ft,a linear unit of length equal to 12 inches or a third of a yard; "he is six feet tall"
+41033,foot human_foot pes,the part of the leg of a human being below the ankle joint; "his bare feet projected from his trousers"; "armored from head to foot"
+41034,foot invertebrate_foot,any of various organs of locomotion or attachment in invertebrates
+41035,foot-and-mouth_disease hoof-and-mouth_disease,acute contagious disease of cloven-footed animals marked by ulcers in the mouth and around the hoofs
+41036,foot-lambert ft-L,a former luminance unit equal to one lumen per square foot
+41037,foot-pound,a unit of work equal to a force of one pound moving through a distance of one foot
+41038,foot-poundal,a unit of work equal to a force of one poundal moving through a distance of one foot
+41039,foot-ton,2240 foot-pounds
+41040,foot_brake,hydraulic brake operated by pressing on a foot pedal
+41041,foot_rot,plant disease in which the stem or trunk rots at the base
+41042,foot_rot,contagious degenerative infection of the feet of hoofed animals (especially cattle and sheep)
+41043,foot_rule,a ruler one foot long
+41044,footage,a rate of charging by the linear foot of work done
+41045,footage,film that has been shot; "they had stock footage of lightning, tornados, and hurricanes"; "he edited the news footage"
+41046,football,the inflated oblong ball used in playing American football
+41047,football football_game,any of various games played with a ball (round or oval) in which two teams try to kick or carry or propel the ball into each other's goal
+41048,football_coach,a coach of football players
+41049,football_field gridiron,the playing field on which football is played
+41050,football_helmet,a padded helmet with a face mask to protect the head of football players
+41051,football_hero,a football player who has achieved a reputation for success
+41052,football_league,a league of football teams
+41053,football_official,an official who enforces the rules at a football game
+41054,football_play,(American football) a play by the offensive team
+41055,football_player footballer,an athlete who plays American football
+41056,football_score,the score in a football game
+41057,football_season,the season when football is played
+41058,football_stadium,a stadium where football games are held
+41059,football_team eleven,a team that plays football
+41060,footbath,a small bathtub for warming or washing or disinfecting the feet
+41061,footboard,a narrow platform on which to stand or brace the feet
+41062,footboard,a vertical board or panel forming the foot of a bedstead
+41063,footbridge overcrossing pedestrian_bridge,a bridge designed for pedestrians
+41064,footcandle,a unit of illuminance on a surface that is everywhere 1 foot from a point source of 1 candle
+41065,footedness,the property of favoring one foot over the other (as in kicking a ball)
+41066,footer,(used only in combinations) the height or length of something in feet; "he is a six-footer"; "the golfer sank a 40-footer"; "his yacht is a 60-footer"
+41067,footfall footstep step,the sound of a step of someone walking; "he heard footsteps on the porch"
+41068,footfault,a fault that occurs when the server in tennis fails to keep both feet behind the baseline
+41069,foothill,a relatively low hill on the lower slope of a mountain
+41070,foothold footing,a place providing support for the foot in standing or climbing
+41071,footing basis ground,a relation that provides the foundation for something; "they were on a friendly footing"; "he worked on an interim basis"
+41072,footing terms,status with respect to the relations between people or groups; "on good terms with her in-laws"; "on a friendly footing"
+41073,footlights,theater light at the front of a stage that illuminate the set and actors
+41074,footlocker locker,a trunk for storing personal possessions; usually kept at the foot of a bed (as in a barracks)
+41075,footman,a man employed as a servant in a large establishment (as a palace) to run errands and do chores
+41076,footnote footer,a printed note placed below the text on a printed page
+41077,footpad padder,a highwayman who robs on foot
+41078,footplate,the platform in the cab of a locomotive on which the engineer stands to operate the controls
+41079,footprint,a trace suggesting that something was once present or felt or otherwise important; "the footprints of an earlier civilization"
+41080,footprint,the area taken up by some object; "the computer had a desktop footprint of 10 by 16 inches"
+41081,footprint footmark step,a mark of a foot or shoe on a surface; "the police made casts of the footprints in the soft earth outside the window"
+41082,footprint_evidence,evidence in the form of footprints; "there was footprint evidence that he had been at the scene of the crime"
+41083,footrace foot_race run,a race run on foot; "she broke the record for the half-mile run"
+41084,footstep,the act of taking a step in walking
+41085,footstep pace step stride,the distance covered by a step; "he stepped off ten paces from the old tree and began to dig"
+41086,footsteps-of-spring Sanicula_arctopoides,sanicle of northwestern United States and British Columbia having yellow flowers
+41087,footstool footrest ottoman tuffet,a low seat or a stool to rest the feet of a seated person
+41088,footwall,the lower wall of an inclined fault
+41089,footwear,clothing worn on a person's feet
+41090,footwear footgear,covering for a person's feet
+41091,footwork,the manner of using the feet
+41092,footwork,skillful maneuvering or dealing; "she needs some fancy footwork to cover all those lies"
+41093,foppishness dandyism,the manner and dress of a fop or dandy
+41094,forager,someone who hunts for food and provisions; "in Japan a fungus forager can earn a good living"
+41095,foraging forage,the act of searching for food and provisions
+41096,foram foraminifer,marine microorganism having a calcareous shell with openings where pseudopods protrude
+41097,foramen hiatus,a natural opening or perforation through a bone or a membranous structure
+41098,foramen_magnum,the large opening at the base of the cranium through which the spinal cord passes
+41099,foray,an initial attempt (especially outside your usual areas of competence); "scientists' forays into politics"
+41100,foray raid maraud,a sudden short attack
+41101,forbearance,a delay in enforcing rights or claims or privileges; refraining from acting; "his forbearance to reply was alarming"
+41102,forbidden_fruit,originally an apple from the tree of knowledge of good and evil in the Garden of Eden; it is now used to refer to anything that is tempting but dangerous (as sexuality)
+41103,force,(physics) the influence that produces a change in a physical quantity; "force equals mass times acceleration"
+41104,force,a group of people having the power of effective action; "he joined forces with a band of adventurers"
+41105,force,a powerful effect or influence; "the force of his eloquence easily persuaded them"
+41106,force forcefulness strength,physical energy or intensity; "he hit with all the force he could muster"; "it was destroyed by the strength of the gale"; "a government has not the vitality and forcefulness of a living man"
+41107,force personnel,group of people willing to obey orders; "a public force is necessary to give security to the rights of citizens"
+41108,force_out force-out force_play force,a putout of a base runner who is required to run; the putout is accomplished by holding the ball while touching the base to which the runner must advance before the runner reaches that base; "the shortstop got the runner at second on a force"
+41109,force_pump,pump used to force a liquid up and expel it under pressure
+41110,force_unit,a unit of measurement of physical force
+41111,forced_feeding gavage,feeding that consists of the delivery of a nutrient solution (as through a nasal tube) to someone who cannot or will not eat
+41112,forced_landing emergency_landing,an unscheduled airplane landing that is made under circumstances (engine failure or adverse weather) not under the pilot's control
+41113,forcemeat farce,mixture of ground raw chicken and mushrooms with pistachios and truffles and onions and parsley and lots of butter and bound with eggs
+41114,forceps,an extractor consisting of a pair of pincers used in medical treatment (especially for the delivery of babies)
+41115,forceps_delivery,delivery in which forceps are inserted through the vagina and used to grasp the head of the fetus and pull it through the birth canal; since the forceps can injure the fetus this procedure has generally given way to cesarean deliveries
+41116,ford crossing,a shallow area in a stream that can be forded
+41117,ford fording,the act of crossing a stream or river by wading or in a car or on a horse
+41118,fore-and-aft_rig,rig in which the principal sails are fore-and-aft
+41119,fore-and-aft_sail,any sail not set on a yard and whose normal position is in a fore-and-aft direction
+41120,fore-and-after,sailing vessel with a fore-and-aft rig
+41121,fore-topmast,the topmast next above the foremast
+41122,fore-topsail,the topsail on a foremast
+41123,fore_edge foredge,the part of a book that faces inward when the book is shelved; the part opposite the spine
+41124,fore_plane,a carpenter's plane intermediate between a jack plane and a jointer plane
+41125,forearm,the part of the superior limb between the elbow and the wrist
+41126,forebear forbear,a person from whom you are descended
+41127,foreboding,an unfavorable omen
+41128,foreboding premonition presentiment boding,a feeling of evil to come; "a steadily escalating sense of foreboding"; "the lawyer had a presentiment that the judge would dismiss the case"
+41129,forebrain prosencephalon,the anterior portion of the brain; the part of the brain that develops from the anterior part of the neural tube
+41130,forecaster predictor prognosticator soothsayer,someone who makes predictions of the future (usually on the basis of special knowledge)
+41131,forecastle fo'c'sle,living quarters consisting of a superstructure in the bow of a merchant ship where the crew is housed
+41132,foreclosure,the legal proceedings initiated by a creditor to repossess the collateral for loan that is in default
+41133,forecourt,the outer or front court of a building or of a group of buildings
+41134,foredeck,the deck between the bridge and the forecastle
+41135,forefather,person from an earlier time who contributed to the tradition shared by some group; "our forefathers brought forth a great nation"
+41136,forefather father sire,the founder of a family; "keep the faith of our forefathers"
+41137,forefoot,a front foot of a quadruped
+41138,forefront head,the part in the front or nearest the viewer; "he was in the forefront"; "he was at the head of the column"
+41139,foregone_conclusion matter_of_course,an inevitable ending
+41140,foreground,the part of a scene that is near the viewer
+41141,foreground,(computer science) a window for an active application
+41142,foreground_processing foregrounding,the execution of a program that preempts the use of the processing system
+41143,forehand forehand_stroke forehand_shot,(sports) a return made with the palm of the hand facing the direction of the stroke (as in tennis or badminton or squash)
+41144,forehand_drive,(sports) hard straight return made on the forehand side (as in tennis or badminton or squash)
+41145,foreign_agent,a spy for a foreign country
+41146,foreign_aid,aid (such as economic or military assistance) provided to one nation by another
+41147,foreign_bill foreign_draft,a bill of exchange that is drawn in one country and made payable in another
+41148,foreign_correspondent,a journalist who sends news reports and commentary from a foreign country for publication or broadcast
+41149,foreign_country,any state of which one is not a citizen; "working in a foreign country takes a bit of getting used to"
+41150,foreign_direct_investment,investing in United States businesses by foreign citizens (often involves stock ownership of the business)
+41151,foreign_direct_investment,a joint venture between a foreign company and a United States company
+41152,foreign_exchange,the system by which one currency is exchanged for another; enables international transactions to take place
+41153,foreign_legion,a military unit composed of foreign volunteers who serve the state
+41154,foreign_minister secretary_of_state,a government minister for foreign relations
+41155,foreign_policy,a policy governing international relations
+41156,foreigner alien noncitizen outlander,a person who comes from a foreign country; someone who does not owe allegiance to your country
+41157,foreigner outsider,someone who is excluded from or is not a member of a group
+41158,foreignness strangeness curiousness,the quality of being alien or not native; "the strangeness of a foreigner"
+41159,foreland,land forming the forward margin of something
+41160,foreleg,the forelimb of a quadruped
+41161,forelimb,the front limb (or the homologous structure in other animals, such as a flipper or wing)
+41162,forelock,a lock of hair growing (or falling) over the forehead
+41163,forelock foretop,a lock of a horse's mane that grows forward between the ears
+41164,foreman,a man who is foreperson of a jury
+41165,foreman chief gaffer honcho boss,a person who exercises control over workers; "if you want to leave early you have to ask the foreman"
+41166,foremanship,the position of foreman
+41167,foremast,the mast nearest the bow in vessels with two or more masts
+41168,foremother,a woman ancestor
+41169,forensic_medicine forensic_pathology,the branch of medical science that uses medical knowledge for legal purposes; "forensic pathology provided the evidence that convicted the murderer"
+41170,forensics,scientific tests or techniques used in the investigation of crimes
+41171,forepaw,front paw; analogous to the human hand
+41172,foreperson,the presiding member of the jury and the one who speaks on their behalf
+41173,foreplay arousal stimulation,mutual sexual fondling prior to sexual intercourse
+41174,forequarter,the front half of a side of meat
+41175,foresail,the lowest sail on the foremast of a square-rigged vessel
+41176,foreshank,a cut of meat from the upper part of a front leg
+41177,foreshock,a tremor preceding an earthquake
+41178,foreshore,the part of the seashore between the highwater mark and the low-water mark
+41179,foresight foresightedness foresightfulness,providence by virtue of planning prudently for the future
+41180,forest wood woods,the trees and other plants in a large densely wooded area
+41181,forest woodland timberland timber,land that is covered with trees and shrubs
+41182,forest_fire,an uncontrolled fire in a wooded area
+41183,forest_goat spindle_horn Pseudoryx_nghetinhensis,cow-like creature with the glossy coat of a horse and the agility of a goat and the long horns of an antelope; characterized as a cow that lives the life of a goat
+41184,forest_red_gum Eucalypt_tereticornis,tall tree of Queensland and New South Wales and Victoria
+41185,forest_tent_caterpillar Malacosoma_disstria,larvae of a gregarious North American moth that spins a web resembling a carpet rather than a tent; serious defoliator of deciduous trees
+41186,forestay,an adjustable stay from the foremast to the deck or bowsprit; controls the bending of the mast
+41187,forester tree_farmer arboriculturist,someone trained in forestry
+41188,forestiera,any plant of the genus Forestiera
+41189,forestry,the science of planting and caring for forests and the management of growing timber
+41190,foretaste,an early limited awareness of something yet to occur
+41191,foretop,a platform at the head of a foremast
+41192,forewarning premonition,an early warning about a future event
+41193,forewing fore-wing fore_wing,either of the anterior pair of wings on an insect that has four wings
+41194,forewoman,a woman in charge of a group of workers
+41195,forewoman forelady,a woman who is foreperson of a jury
+41196,foreword preface prolusion,a short introductory essay preceding the text of a book
+41197,forfeit forfeiture,something that is lost or surrendered as a penalty
+41198,forfeit forfeiture,a penalty for a fault or mistake that involves losing or giving up something; "the contract specified forfeits if the work was not completed on time"
+41199,forfeit forfeiture sacrifice,the act of losing or surrendering something as a penalty for a mistake or fault or failure to perform etc.
+41200,forge,furnace consisting of a special hearth where metal is heated before shaping
+41201,forge smithy,a workplace where metal is worked by heating and hammering
+41202,forger,someone who operates a forge
+41203,forger counterfeiter,someone who makes copies illegally
+41204,forgery,criminal falsification by making or altering an instrument with intent to defraud
+41205,forget-me-not mouse_ear Myosotis_scorpiodes,small perennial herb having bright blue or white flowers
+41206,forgetfulness,unawareness caused by neglectful or heedless failure to remember; "his forgetfulness increased as he grew older"
+41207,forgetfulness,tendency to forget
+41208,forging,shaping metal by heating and hammering
+41209,forgiveness,compassionate feelings that support a willingness to forgive
+41210,forgiveness pardon,the act of excusing a mistake or offense
+41211,forgivingness kindness,tendency to be kind and forgiving
+41212,forint,the basic unit of money in Hungary
+41213,fork,an agricultural tool used for lifting or digging; has a handle and metal prongs
+41214,fork,cutlery used for serving and eating food
+41215,fork crotch,the region of the angle formed by the junction of two branches; "they took the south fork"; "he climbed into the crotch of a tree"
+41216,forked_lightning chain_lightning,a form of lightning that moves rapidly in a zigzag path with one end divided (fork-like)
+41217,forklift,a small industrial vehicle with a power operated forked platform in front that can be inserted under loads to lift and move them
+41218,forlorn_hope,a hopeless or desperate enterprise
+41219,forlornness loneliness desolation,sadness resulting from being forsaken or abandoned
+41220,form,an arrangement of the elements in a composition or discourse; "the essay was in the form of a dialogue"; "he first sketches the plot in outline form"
+41221,form,a printed document with spaces in which to write; "he filled out his tax form"
+41222,form,an ability to perform well; "he was at the top of his form"; "the team was off form last night"
+41223,form,a particular mode in which something is manifested; "his resentment took the form of extreme hostility"
+41224,form,a mold for setting concrete; "they built elaborate forms for pouring the foundation"
+41225,form shape cast,the visual appearance of something or someone; "the delicate cast of his features"
+41226,form shape pattern,a perceptual structure; "the composition presents problems for students of musical form"; "a visual pattern must include not only objects but the spaces between them"
+41227,form variant strain var.,(biology) a group of organisms within a species that differ in trivial ways from similar groups; "a new strain of microorganisms"
+41228,form word_form signifier descriptor,the phonological or orthographic sound or appearance of a word that can be used to describe or identify something; "the inflected forms of a word can be represented by a stem and a list of inflections to be attached"
+41229,form_division,an artificial taxonomic category for organisms of which the true relationships are obscure
+41230,form_family,(biology) an artificial taxonomic category for organisms of which the true relationships are obscure
+41231,form_genus,(biology) an artificial taxonomic category for organisms of which the true relationships are obscure
+41232,form_genus,an artificial taxonomic category established on the basis of morphological resemblance for organisms of obscure true relationships especially fossil forms
+41233,form_letter,a letter that is printed in multiple copies and mailed to a list of recipients
+41234,formal_garden,a garden laid out on regular lines with plants arranged in symmetrical locations or in geometrical designs
+41235,formal_semantics,the branch of semantics that studies the logical aspects of meaning
+41236,formaldehyde methanal,a colorless poisonous gas; made by the oxidation of methanol
+41237,formalin formol,a 10% solution of formaldehyde in water; used as a disinfectant or to preserve biological specimens
+41238,formalism,(philosophy) the philosophical theory that formal (logical or mathematical) statements have no meaning but that its symbols (regarded as physical entities) exhibit a form that has useful applications
+41239,formalism,the doctrine that formal structure rather than content is what should be represented
+41240,formalism,the practice of scrupulous adherence to prescribed or external forms
+41241,formality,compliance with formal rules; "courtroom formality"
+41242,formality formalities,a requirement of etiquette or custom; "a mere formality"
+41243,formality formalness,a manner that strictly observes all forms and ceremonies; "the formality of his voice made the others pay him close attention"
+41244,formalization formalisation,the act of making formal (as by stating formal rules governing classes of expressions)
+41245,formalwear eveningwear evening_dress evening_clothes,attire to wear on formal occasions in the evening
+41246,format,the general appearance of a publication
+41247,format formatting data_format data_formatting,the organization of information according to preset specifications (usually for computer processing)
+41248,formation,natural process that causes something to form; "the formation of gas in the intestine"; "the formation of crystals"; "the formation of pseudopods"
+41249,formation,an arrangement of people or things acting as a unit; "a defensive formation"; "a formation of planes"
+41250,formation,a particular spatial arrangement
+41251,formation,creation by mental activity; "the formation of sentences"; "the formation of memories"
+41252,formation shaping,the act of fabricating something in a particular shape
+41253,formative,minimal language unit that has a syntactic (or morphological) function
+41254,formatted_capacity,(computer science) the usable capacity of a disk drive; the amount of space that is left after the sector headings and boundary definitions and timing information have been added by formatting the disk
+41255,former,the first of two or the first mentioned of two; "Tom and Dick were both heroes but only the former is remembered today"
+41256,formic_acid,a colorless pungent fuming vesicatory liquid acid HCOOH found naturally in ants and many plants or made catalytically from carbon monoxide and steam; used in finishing textiles and paper and in the manufacture of insecticides and fumigants
+41257,formication,hallucinated sensation that insects or snakes are crawling over the skin; a common side-effect of extensive use of cocaine or amphetamines
+41258,formidability toughness,impressive difficulty
+41259,formula,a liquid food for infants
+41260,formula,a conventionalized statement expressing some fundamental principle
+41261,formula chemical_formula,a representation of a substance using symbols for its constituent elements
+41262,formula expression,a group of symbols that make a mathematical statement
+41263,formulary pharmacopeia,(pharmacology) a book containing a compilation of pharmaceutical products with their formulas and methods of preparation; "postexposure prophylaxis is an integral part of the pharmacopeia in preventing severe disease after acute infections"
+41264,formulation expression,the style of expressing yourself; "he suggested a better formulation"; "his manner of expression showed how much he cared"
+41265,formulation preparation,a substance prepared according to a formula; "the physician prescribed a commercial preparation of the medicine"
+41266,fornication,voluntary sexual intercourse between persons not married to each other
+41267,fornix,generally any arch shaped structure (but often it refers to the arched roof of an anatomical space)
+41268,fornix trigonum_cerebrale,an arched bundle of white fibers at the base of the brain by which the hippocampus of each hemisphere projects to the contralateral hippocampus and to the thalamus and mamillary bodies
+41269,forsaking giving_up,the act of forsaking
+41270,forsythia,any of various early blooming oleaceous shrubs of the genus Forsythia; native to eastern Asia and southern Europe but widely cultivated for their branches of bright yellow bell-shaped flowers
+41271,forte,a musical composition or musical passage to be performed loudly
+41272,forte,the stronger part of a sword blade between the hilt and the foible
+41273,forte strong_suit long_suit metier specialty speciality strong_point strength,an asset of special worth or utility; "cooking is his forte"
+41274,forties 1940s,the decade from 1940 to 1949
+41275,forties mid-forties,the time of life between 40 and 50
+41276,fortieth,position 40 in a countable series of things
+41277,fortification,the art or science of strengthening defenses
+41278,fortification,the addition of an ingredient for the purpose of enrichment (as the addition of alcohol to wine or the addition of vitamins to food)
+41279,fortification munition,defensive structure consisting of walls or mounds built around a stronghold to strengthen it
+41280,fortified_wine,wine to which alcohol (usually grape brandy) has been added
+41281,fortissimo,a musical composition or musical passage to be performed very loudly
+41282,fortitude,strength of mind that enables one to endure adversity with courage
+41283,fortnight two_weeks,a period of fourteen consecutive days; "most major tennis tournaments last a fortnight"
+41284,fortress fort,a fortified defensive structure
+41285,fortuitousness,the quality of happening accidentally and by lucky chance
+41286,fortune,a large amount of wealth or prosperity
+41287,fortune destiny fate luck lot circumstances portion,your overall circumstances or condition in life (including everything that happens to you); "whatever my fortune may be"; "deserved a better fate"; "has a happy lot"; "the luck of the Irish"; "a victim of circumstances"; "success that was her portion"
+41288,fortune_cookie,thin folded wafer containing a maxim on a slip of paper
+41289,fortune_hunter,a person who seeks wealth through marriage
+41290,fortuneteller fortune_teller,a person who foretells your personal future
+41291,fortunetelling,the practice of predicting people's futures (usually for payment)
+41292,forty 40 XL,the cardinal number that is the product of ten and four
+41293,forty-five,a .45-caliber pistol
+41294,forty-niner,a miner who took part in the California gold rush in 1849
+41295,forum,a public meeting or assembly for open discussion
+41296,forum assembly meeting_place,a public facility to meet for open discussion
+41297,forward,the person who plays the position of forward in certain games, such as basketball, soccer, or hockey
+41298,forward,a position on a basketball, soccer, or hockey team
+41299,forward_pass aerial,a pass to a receiver downfield from the passer
+41300,forwarding,the act of sending on to another destination; "the forwarding of mail to a new address is done automatically"; "the forwarding of resumes to the personnel department"
+41301,forwarding furtherance promotion,the advancement of some enterprise; "his experience in marketing resulted in the forwarding of his career"
+41302,forwardness,an advanced stage; "the forwardness of the harvest this year"; "the arts are in no kind of forwardness in this matter"
+41303,foryml,(chemistry) the negative univalent acyl radical CHO that occurs in aldehydes
+41304,fossa fossa_cat Cryptoprocta_ferox,largest carnivore of Madagascar; intermediate in some respects between cats and civets
+41305,fossil,the remains (or an impression) of a plant or animal that existed in a past geological age and that has been excavated from the soil
+41306,fossil_fuel,fuel consisting of the remains of organisms preserved in rocks in the earth's crust with high carbon and hydrogen content
+41307,fossilization fossilisation,the process of fossilizing a plant or animal that existed in some earlier age; the process of being turned to stone
+41308,fossilization fossilisation,becoming inflexible or out of date
+41309,fossorial_foot,foot adapted for digging as in moles
+41310,fossorial_mammal,a burrowing mammal having limbs adapted for digging
+41311,foster-brother foster_brother,your foster brother is a male who is not a son of your parents but who is raised by your parents
+41312,foster-child foster_child fosterling,a child who is raised by foster parents
+41313,foster-daughter foster_daughter,someone who is raised as a daughter although not related by birth
+41314,foster-father foster_father,a man who is a foster parent
+41315,foster-mother foster_mother,a woman who is a foster parent and raises another's child
+41316,foster-nurse,a nurse who raises another woman's child as her own
+41317,foster-parent foster_parent,a person who acts as parent and guardian for a child in place of the child's natural parents but without legally adopting the child
+41318,foster-sister foster_sister,your foster sister is a female who is not a daughter of your parents but who is raised by your parents
+41319,foster-son foster_son,someone who is raised as a son although not related by birth
+41320,foster_care,supervised care for delinquent or neglected children usually in an institution or substitute home
+41321,foster_family,the family of a fosterling
+41322,foster_home,a household in which an orphaned or delinquent child is placed (usually by a social-service agency)
+41323,fostering fosterage,encouragement; aiding the development of something
+41324,fothergilla witch_alder,any of several deciduous low-growing shrubs of the genus Fothergilla having showy brushlike spikes of white flowers in spring and fiery red and orange autumn color; grows from Alabama to the Allegheny Mountains
+41325,foul,an act that violates the rules of a sport
+41326,foul-weather_gear,protective garment that is intended to keep the wearer dry and warm in bad weather
+41327,foul_ball,(baseball) a ball struck with the bat so that it does not stay between the lines (the foul lines) that define the width of the playing field
+41328,foul_line,a line from which basketball players take penalty shots
+41329,foul_line,a line across a bowling alley that a bowler must not cross
+41330,foul_line,lines through 1st and 3rd base indicating the boundaries of a baseball field
+41331,foul_play,unfair or dishonest behavior (especially involving violence)
+41332,foul_shot free_throw penalty_free_throw charity_toss charity_throw charity_shot,an unhindered basketball shot from the foul line; given to penalize the other team for committing a foul
+41333,foulard,a light plain-weave or twill-weave silk or silklike fabric (usually with a printed design)
+41334,foulness,disgusting wickedness and immorality; "he understood the foulness of sin"; "his display of foulness deserved severe punishment"; "mouths which speak such foulness must be cleansed"
+41335,foulness raininess,(of weather) the badness of the weather; "they were wearied with the foulness of the weather"
+41336,found,food and lodging provided in addition to money; "they worked for $30 and found"
+41337,foundation,the basis on which something is grounded; "there is little foundation for his objections"
+41338,foundation,an institution supported by an endowment
+41339,foundation base fundament foot groundwork substructure understructure,lowest support of a structure; "it was built on a base of solid rock"; "he stood at the foot of the tower"
+41340,foundation grounding,education or instruction in the fundamentals of a field of knowledge; "he lacks the foundation necessary for advanced study"; "a good grounding in mathematics"
+41341,foundation_garment foundation,a woman's undergarment worn to give shape to the contours of the body
+41342,foundation_stone,a stone laid at a ceremony to mark the founding of a new building
+41343,founder,a worker who makes metal castings
+41344,founder beginner founding_father father,a person who founds or establishes some institution; "George Washington is the father of his country"
+41345,foundering going_under,(of a ship) sinking
+41346,foundling abandoned_infant,a child who has been abandoned and whose parents are unknown
+41347,foundress,a woman founder
+41348,foundry metalworks,factory where metal castings are produced
+41349,foundry_proof,a proof taken from a form before duplicate plates are made
+41350,fountain,a structure from which an artificially produced jet of water arises
+41351,fountain fount,a plumbing fixture that provides a flow of water
+41352,fountain jet,an artificially produced flow of water
+41353,fountain_grass Pennisetum_ruppelii Pennisetum_setaceum,tall perennial ornamental grass with long nodding flower plumes of tropical Africa and Asia
+41354,fountain_pen,a pen that is supplied with ink from a reservoir in its barrel
+41355,fountainhead headspring head,the source of water from which a stream arises; "they tracked him back toward the head of the stream"
+41356,four 4 IV tetrad quatern quaternion quaternary quaternity quartet quadruplet foursome Little_Joe,the cardinal number that is the sum of three and one
+41357,four-hitter 4-hitter,a game in which a pitcher allows the opposing team 4 hits
+41358,four-in-hand,a long necktie that is tied in a slipknot with one end hanging in front of the other
+41359,four-letter_word four-letter_Anglo-Saxon_word,any of several short English words (often having 4 letters) generally regarded as obscene or offensive
+41360,four-lined_plant_bug four-lined_leaf_bug Poecilocapsus_lineatus,yellow or orange leaf bug with four black stripes down the back; widespread in central and eastern North America
+41361,four-minute_man,someone who has run the mile in less that 4 minutes
+41362,four-part_harmony,harmony in which each chord has four notes that create four melodic lines
+41363,four-poster,a bed with posts at the four corners that can be used to support a canopy or curtains
+41364,four-pounder,an artillery gun that throws a shot weighing four pounds
+41365,four-spot four,a playing card or domino or die whose upward face shows four pips
+41366,four-stroke_engine four-stroke_internal-combustion_engine,an internal-combustion engine in which an explosive mixture is drawn into the cylinder on the first stroke and is compressed and ignited on the second stroke; work is done on the third stroke and the products of combustion are exhausted on the fourth stroke
+41367,four-tailed_bandage,a bandage consisting of a strip of cloth split in two on both ends; the central part is placed under the chin to restrict motion of the mandible and the tails are tied over the top of the head
+41368,four-wheel_drive 4WD,a motor vehicle with a four-wheel drive transmission system
+41369,four-wheel_drive 4WD,a transmission that provides power directly to all four wheels of a motor vehicle
+41370,four-wheeler,a hackney carriage with four wheels
+41371,four_o'clock,any of several plants of the genus Mirabilis having flowers that open in late afternoon
+41372,fourpence groat,a former English silver coin worth four pennies
+41373,fourpenny_nail,a nail 1.5 inches long
+41374,fourteen 14 XIV,the cardinal number that is the sum of thirteen and one
+41375,fourteenth,position 14 in a countable series of things
+41376,fourth,following the third position; number four in a countable series
+41377,fourth,the musical interval between one note and another four notes away from it
+41378,fourth_dimension time,the fourth coordinate that is required (along with three spatial dimensions) to specify a physical event
+41379,fourth_estate,the press, including journalists, newspaper writers, photographers
+41380,fourth_ventricle,an irregular ventricle between the third ventricle and the central canal of the spinal cord
+41381,fovea fovea_centralis,area consisting of a small depression in the retina containing cones and where vision is most acute
+41382,foveal_vision,vision with the fovea
+41383,fowl_cholera,an acute diarrheal disease (especially of chickens) caused by the microorganism that causes hemorrhagic septicemia
+41384,fowl_pest,either of two acute viral diseases of domestic fowl; characterized by refusal to eat and high temperature and discoloration of the comb
+41385,fowler,someone who hunts wild birds for food
+41386,fowling_piece,a light shotgun used for fowling
+41387,fox,the grey or reddish-brown fur of a fox
+41388,fox,alert carnivorous mammal with pointed muzzle and ears and a bushy tail; most are predators that do not hunt in packs
+41389,fox-trot foxtrot,a ballroom dance in quadruple time; combines short and long and fast and slow steps fixed sequences
+41390,fox_grape,purplish-black wild grape of the eastern United States with tough skins that slip easily from the flesh; cultivated in many varieties
+41391,fox_grape Vitis_labrusca,native grape of northeastern United States; origin of many cultivated varieties e.g. Concord grapes
+41392,fox_hunter,a mounted hunter who follows the hounds in pursuit of a fox
+41393,fox_hunting foxhunt,mounted hunters follow hounds in pursuit of a fox
+41394,fox_squirrel eastern_fox_squirrel Sciurus_niger,exceptionally large arboreal squirrel of eastern United States
+41395,fox_terrier,small lively black-and-white terriers formerly used to dig out foxes
+41396,foxglove digitalis,any of several plants of the genus Digitalis
+41397,foxhole fox_hole,a small dugout with a pit for individual shelter against enemy fire
+41398,foxhound,medium-sized glossy-coated hounds developed for hunting foxes
+41399,foxtail foxtail_grass,grasses of the genera Alopecurus and Setaria having dense silky or bristly brushlike flowering spikes
+41400,foxtail_grass Lycopodium_alopecuroides,ground pine thickly covered with bristly leaves; widely distributed in barren sandy or peaty moist coastal regions of eastern and southeastern United States
+41401,foxtail_millet Italian_millet Hungarian_grass Setaria_italica,coarse drought-resistant annual grass grown for grain, hay, and forage in Europe and Asia and chiefly for forage and hay in United States
+41402,foxtail_orchid,any of various orchids of the genus Rhyncostylis having pink- to purple-marked white flowers in a dense cylindrical raceme
+41403,fractal,(mathematics) a geometric pattern that is repeated at every scale and so cannot be represented by classical geometry
+41404,fractal_geometry,(mathematics) the geometry of fractals; "Benoit Mandelbrot pioneered fractal geometry"
+41405,fraction,a component of a mixture that has been separated by a fractional process
+41406,fraction,the quotient of two rational numbers
+41407,fraction,a small part or item forming a piece of a whole
+41408,fractional_currency,paper currency in denominations less than the basic monetary unit
+41409,fractional_distillation,fractionation of a liquid by distillation
+41410,fractional_monetary_unit subunit,a monetary unit that is valued at a fraction (usually one hundredth) of the basic monetary unit
+41411,fractionation,separation into portions
+41412,fractionation fractional_process,a process that uses heat to separate a substance into its components
+41413,fracture break,breaking of hard tissue such as bone; "it was a nasty fracture"; "the break seems to have been caused by a fall"
+41414,fracture crack cracking,the act of cracking something
+41415,fragility breakability frangibleness frangibility,quality of being easily damaged or destroyed
+41416,fragility delicacy,lack of physical strength
+41417,fragment,a piece broken off or cut off of something else; "a fragment of rock"
+41418,fragment,an incomplete piece; "fragments of a play"
+41419,fragmentation,the disintegration of social norms governing behavior and thought and social relationships
+41420,fragmentation,(computer science) the condition of a file that is broken up and stored in many different locations on a magnetic disk; "fragmentation slows system performance because it takes extra time to locate and assemble the parts of the fragmented file"
+41421,fragmentation,the scattering of bomb fragments after the bomb explodes
+41422,fragmentation_bomb antipersonnel_bomb anti-personnel_bomb daisy_cutter,a bomb with only 10 to 20 per cent explosive and the remainder consisting of casings designed to break into many small high-velocity fragments; most effective against troops and vehicles
+41423,fragrant_agrimony Agrimonia_procera,fragrant European perennial herb found at woodland margins on moist soils
+41424,fragrant_cliff_fern fragrant_shield_fern fragrant_wood_fern Dryopteris_fragrans,fern or northern Eurasia and North America having fragrant fronds
+41425,fragrant_orchid Gymnadenia_conopsea,European orchid having dense spikes of fragrant pink or lilac or red flowers with conspicuous spurs
+41426,fragrant_sumac lemon_sumac Rhus_aromatica,sweet-scented sumac of eastern America having ternate leaves and yellowish-green flowers in spikes resembling catkins followed by red hairy fruits
+41427,frail,the weight of a frail (basket) full of raisins or figs; between 50 and 75 pounds
+41428,frail,a basket for holding dried fruit (especially raisins or figs)
+41429,frailty vice,moral weakness
+41430,fraise,a ruff for the neck worn in the 16th century
+41431,fraise,sloping or horizontal rampart of pointed stakes
+41432,frame,a single drawing in a comic strip
+41433,frame,an application that divides the user's display into two or more windows that can be scrolled independently
+41434,frame,a single one of a series of still transparent pictures forming a cinema, television or video film
+41435,frame,the framework for a pair of eyeglasses
+41436,frame,one of the ten divisions into which bowling is divided
+41437,frame framing,a framework that supports and protects a picture or a mirror; "the frame enhances but is not itself the subject of attention"; "the frame was much more valuable than the miror it held"
+41438,frame-up setup,an act that incriminates someone on a false charge
+41439,frame_buffer,(computer science) a buffer that stores the contents of an image pixel by pixel
+41440,frame_of_reference frame,a system of assumptions and standards that sanction behavior and give it meaning
+41441,framer,someone who makes frames (as for pictures)
+41442,framer,someone who writes a new law or plan; "the framers of the Constitution"
+41443,framework fabric,the underlying structure; "providing a factual framework for future research"; "it is part of the fabric of society"
+41444,framework frame,a structure supporting or containing something
+41445,framing,formulation of the plans and important details; "the framing of judicial decrees"
+41446,franc,the basic monetary unit in many countries; equal to 100 centimes
+41447,franc-tireur,a sharpshooter (in the French army)
+41448,franchise,an authorization to sell a company's goods or services in a particular place
+41449,franchise dealership,a business established or operated under an authorization to sell or distribute a company's goods or services in a particular area
+41450,franchise enfranchisement,a statutory right or privilege granted to a person or group by a government (especially the rights of citizenship and the right to vote)
+41451,franchise_tax,a tax that is imposed by states on corporations; it depends both on the net worth of the corporation and on its net income attributable to activities within the state
+41452,francium Fr atomic_number_87,a radioactive element of the alkali-metal group discovered as a disintegration product of actinium
+41453,frangipane,pastry with a creamy almond-flavored filling
+41454,frangipani frangipanni,any of various tropical American deciduous shrubs or trees of the genus Plumeria having milky sap and showy fragrant funnel-shaped variously colored flowers
+41455,frank frankfurter hotdog hot_dog dog wiener wienerwurst weenie,a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll
+41456,frank_breech frank_breech_delivery,position of a fetus in which the buttocks are present at the maternal pelvic outlet
+41457,frankfurter_bun hotdog_bun,a long bun shaped to hold a frankfurter
+41458,frankincense olibanum gum_olibanum thus,an aromatic gum resin obtained from various Arabian or East African trees; formerly valued for worship and for embalming and fumigation
+41459,franking_machine,a machine that automatically stamps letters or packages passing through it and computes the total charge
+41460,franklin,a landowner (14th and 15th centuries) who was free but not of noble birth
+41461,frankness outspokenness,the trait of being blunt and outspoken
+41462,frappe,liqueur poured over shaved ice
+41463,frappe,thick milkshake containing ice cream
+41464,fraternal_twin dizygotic_twin,either of two twins who developed from two separate fertilized eggs
+41465,fraternity frat,a social club for male undergraduates
+41466,fraternization fraternisation,associating with others in a brotherly or friendly way; especially with an enemy
+41467,fratricide,a person who murders their brother or sister
+41468,fratricide,the murder of your sibling
+41469,fraud,intentional deception resulting in injury to another person
+41470,fraud fraudulence dupery hoax humbug put-on,something intended to deceive; deliberate trickery intended to gain an advantage
+41471,fraud_in_fact positive_fraud,actual deceit; concealing something or making a false representation with an evil intent to cause injury to another
+41472,fraud_in_law,fraud that is presumed from the circumstances although the one who commits it need not have had any evil intent
+41473,fraud_in_the_factum,fraud that arises from a disparity between the instrument intended to be executed and the instrument actually executed; e.g., leading someone to sign the wrong contract
+41474,fraud_in_the_inducement,fraud which intentionally causes a person to execute an instrument or make an agreement or render a judgment; e.g., misleading someone about the true facts
+41475,fraudulence deceit,the quality of being fraudulent
+41476,fraudulence duplicity,a fraudulent or duplicitous representation
+41477,fraxinella dittany burning_bush gas_plant Dictamnus_alba,Eurasian perennial herb with white flowers that emit flammable vapor in hot weather
+41478,frazzle,a state of extreme exhaustion; "he was worn to a frazzle"
+41479,freak monster monstrosity lusus_naturae,a person or animal that is markedly unusual or deformed
+41480,freckle lentigo,a small brownish spot (of the pigment melanin) on the skin
+41481,free free_people,people who are free; "the home of the free and the brave"
+41482,free-liver,someone who gratifies physical appetites (especially for food and drink) with more than the usual freedom
+41483,free-reed,a reed that does not fit closely over the aperture
+41484,free-reed_instrument,a wind instrument with a free reed
+41485,free_agency,(sports) the state of a professional athlete who is free to negotiate a contract to play for any team
+41486,free_agent,(sports) a professional athlete who is free to sign a contract to play for any team
+41487,free_agent free_spirit freewheeler,someone acting freely or even irresponsibly
+41488,free_association,a thought process in which ideas (words or images) suggest other ideas in a sequence
+41489,free_central_placentation,where ovules develop on a central column in a compound ovary lacking septa or with septa at base only
+41490,free_electron,electron that is not attached to an atom or ion or molecule but is free to move under the influence of an electric field
+41491,free_fall,the ideal falling motion of something subject only to a gravitational field
+41492,free_hand blank_check,freedom to do as you see fit; "many have doubts about giving him a free hand to attack"
+41493,free_house,a public house that is not controlled by a brewery and so is free to sell different brands of beer and ale
+41494,free_kick,(soccer) a place kick that is allowed for a foul or infringement by the other team
+41495,free_list,a list of commodities that are not subject to tariffs
+41496,free_living,a lifestyle given to easy indulgence of the appetites
+41497,free_lunch,something acquired without effort or payment or obligation; "there is no free lunch in politics or Hollywood"
+41498,free_morpheme free_form,a morpheme that can occur alone
+41499,free_nerve_ending,microscopic sensory nerve endings in the skin that are not connected to any specific sensory receptor
+41500,free_phagocyte,a phagocyte that circulates in the blood
+41501,free_port,a port open on equal terms to all commercial vessels
+41502,free_port free_zone,an area adjoining a port where goods that are intended for reshipment can be received and stored without payment of duties
+41503,free_press,a press not restricted or controlled by government censorship regarding politics or ideology
+41504,free_radical radical,an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule; "in the body free radicals are high-energy particles that ricochet wildly and damage cells"
+41505,free_rein play,the removal of constraints; "he gave free rein to his impulses"; "they gave full play to the artist's talent"
+41506,free_state,any state prohibiting slavery prior to the American Civil War
+41507,free_throw_lane,a lane on a basketball court extending from the end line to 15 feet in front of the backboard; players may not enter this lane during a free throw
+41508,free_time spare_time,time that is free from duties or responsibilities
+41509,free_trade,international trade free of government interference
+41510,free_trader,an advocate of unrestricted international trade
+41511,free_verse vers_libre,unrhymed verse without a consistent metrical pattern
+41512,free_will discretion,the power of making free choices unconstrained by external agencies
+41513,freebie freebee,something that is free (usually provided as part of a promotional scheme); "the road map was a freebie"
+41514,freeboard_deck,the uppermost watertight deck
+41515,freedman freedwoman,a person who has been freed from slavery
+41516,freedom,the condition of being free; the power to act or speak or think without externally imposed restraints
+41517,freedom_from_cruel_and_unusual_punishment,a right guaranteed by the 8th amendment to the US Constitution
+41518,freedom_from_discrimination,immunity from discrimination on the basis of race or sex or nationality or religion or age; guaranteed by federal laws of the United States
+41519,freedom_from_double_jeopardy,a civil right guaranteed by the Fifth Amendment to the US Constitution
+41520,freedom_from_involuntary_servitude,a civil right guaranteed by the 13th amendment to the US Constitution
+41521,freedom_from_search_and_seizure,a right guaranteed by the 4th amendment to the US Constitution
+41522,freedom_from_self-incrimination privilege_against_self_incrimination,the civil right (guaranteed by the Fifth Amendment to the United States Constitution) to refuse to answer questions or otherwise give testimony against yourself
+41523,freedom_of_assembly,the right to peaceably assemble and to petition the government for redress of grievances; guaranteed by the First Amendment to the US Constitution
+41524,freedom_of_religion,a civil right guaranteed by the First Amendment to the US Constitution
+41525,freedom_of_speech,a civil right guaranteed by the First Amendment to the US Constitution
+41526,freedom_of_the_press,a right guaranteed by the First Amendment to the US Constitution
+41527,freedom_of_the_seas,the right of merchant ships to travel freely in international waters
+41528,freedom_of_thought,the right to hold unpopular ideas
+41529,freedom_rider,one of an interracial group of civil rights activists who rode buses through parts of the South in order to protest racial segregation
+41530,freedom_to_bear_arms,a right guaranteed by the 2nd amendment to the US Constitution
+41531,freehold,an estate held in fee simple or for life
+41532,freehold,tenure by which land is held in fee simple or for life
+41533,freeholder,the owner of a freehold
+41534,freelancer freelance free-lance free_lance independent self-employed_person,a writer or artist who sells services to different employers without a long-term contract with any of them
+41535,freeloader,someone who takes advantage of the generosity of others
+41536,freemail,a service providing free email delivery in exchange for exposure to advertising
+41537,freeman freewoman,a person who is not a serf or a slave
+41538,freemasonry,a natural or instinctive fellowship between people of similar interests; "he enjoyed the freemasonry of the Press"
+41539,freesia,any of several plants of the genus Freesia valued for their one-sided clusters of usually fragrant yellow or white or pink tubular flowers
+41540,freestone,fruit (especially peach) whose flesh does not adhere to the pit
+41541,freestyle,a race (as in swimming) in which each contestant has a free choice of the style to use
+41542,freetail free-tailed_bat freetailed_bat,small swift insectivorous bat with leathery ears and a long tail; common in warm regions
+41543,freethinker,a person who rejects religion
+41544,freeware,software that is provided without charge
+41545,freewheel,a clutch (as on the rear wheel of a bicycle) that allows wheels to turn freely (as in coasting)
+41546,freeze,fixing (of prices or wages etc) at a particular level; "a freeze on hiring"
+41547,freeze freezing,the withdrawal of heat to change something from a liquid to a solid
+41548,freeze frost,weather cold enough to cause freezing
+41549,freeze halt,an interruption or temporary suspension of progress or movement; "a halt in the arms race"; "a nuclear freeze"
+41550,freeze-drying lyophilization lyophilisation,a method of drying food or blood plasma or pharmaceuticals or tissue without destroying their physical structure; material is frozen and then warmed in a vacuum so that the ice sublimes
+41551,freezing_mixture,a mixture of substances (usually salt and ice) to obtain a temperature below the freezing point of water
+41552,freezing_point melting_point,the temperature below which a liquid turns into a solid
+41553,freight freightage,transporting goods commercially at rates cheaper than express rates
+41554,freight freightage freight_rate,the charge for transporting something by common carrier; "we pay the freight"; "the freight rate is usually cheaper"
+41555,freight_agent,an employee of a freight carrier who directs the receipt and delivery of goods
+41556,freight_car,a railway car that carries freight
+41557,freight_elevator service_elevator,an elevator designed for carrying freight
+41558,freight_liner liner_train,a long-distance express freight train between industrial centers and seaports with facilities for rapid loading and unloading of goods
+41559,freight_train rattler,a railroad train consisting of freight cars
+41560,french_fries french-fried_potatoes fries chips,strips of potato fried in deep fat
+41561,frequency absolute_frequency,the number of observations in a given statistical category
+41562,frequency frequence oftenness,the number of occurrences within a given time period; "the frequency of modulation was 40 cycles per second"; "the frequency of his seizures increased as he grew older"
+41563,frequency relative_frequency,the ratio of the number of observations in a statistical category to the total number of observations
+41564,frequency-response_curve frequency-response_characteristic,(electronics) a graph of frequency response with signal amplitude or gain plotted against frequency
+41565,frequency_band waveband,a band of adjacent radio frequencies (e.g., assigned for transmitting radio or television signals)
+41566,frequency_distribution,a distribution of observed frequencies of occurrence of the values of a variable
+41567,frequency_modulation FM,modulation of the frequency of the (radio) carrier wave
+41568,frequency_response,(electronics) a curve representing the output-to-input ratio of a transducer as a function of frequency
+41569,frequentative,a verb form that serves to express frequent repetition of an action
+41570,fresco,a mural done with watercolors on wet plaster
+41571,fresco,a durable method of painting on a wall by using watercolors on wet plaster
+41572,fresh_bean,beans eaten before they are ripe as opposed to dried
+41573,fresh_breeze,wind moving 19-24 knots; 5 on the Beaufort scale
+41574,fresh_food fresh_foods,food that is not preserved by canning or dehydration or freezing or smoking
+41575,fresh_gale,wind moving 39-46 knots; 8 on the Beaufort scale
+41576,fresh_start clean_slate tabula_rasa,an opportunity to start over without prejudice
+41577,fresh_water freshwater,water that is not salty
+41578,freshener,anything that freshens
+41579,freshet spate,the occurrence of a water flow resulting from sudden rain or melting snow
+41580,freshman fresher,a first-year undergraduate
+41581,freshman_class,the first class in college or high school
+41582,freshness,the property of being pure and fresh (as if newly made); not stale or deteriorated; "she loved the freshness of newly baked bread"; "the freshness of the air revived him"
+41583,freshness glow,an alert and refreshed state
+41584,freshness novelty,originality by virtue of being refreshingly novel
+41585,freshwater_bass,North American food and game fish
+41586,freshwater_bass bass,any of various North American freshwater fish with lean flesh (especially of the genus Micropterus)
+41587,freshwater_bream bream,any of various usually edible freshwater percoid fishes having compressed bodies and shiny scales; especially (but not exclusively) of the genus Lepomis
+41588,freshwater_fish,flesh of fish from fresh water used as food
+41589,freshwater_mussel freshwater_clam,bivalve mollusk abundant in rivers of central United States
+41590,fret,a small bar of metal across the fingerboard of a musical instrument; when the string is stopped by a finger at the metal bar it will produce a note of the desired pitch
+41591,fret Greek_fret Greek_key key_pattern,an ornamental pattern consisting of repeated vertical and horizontal lines (often in relief); "there was a simple fret at the top of the walls"
+41592,fret stew sweat lather swither,agitation resulting from active worry; "don't get in a stew"; "he's in a sweat about exams"
+41593,friar mendicant,a male member of a religious order that originally relied solely on alms
+41594,friar's-cowl Arisarum_vulgare,tuberous perennial having a cowl-shaped maroon or violet-black spathe; Mediterranean; Canaries; Azores
+41595,friar's_lantern ignis_fatuus jack-o'-lantern will-o'-the-wisp,a pale light sometimes seen at night over marshy ground
+41596,friary,a monastery of friars
+41597,fricandeau,larded veal braised and glazed in its own juices
+41598,fricassee,pieces of chicken or other meat stewed in gravy with e.g. carrots and onions and served with noodles or dumplings
+41599,fricative_consonant fricative spirant,a continuant consonant produced by breath moving against a narrowing of the vocal tract
+41600,friction detrition rubbing,effort expended in moving one object over another with pressure
+41601,friction rubbing,the resistance encountered when one body is moved in contact with another
+41602,friction_clutch,a clutch in which one part turns the other by the friction between them
+41603,friction_tape insulating_tape,a water-resistant adhesive tape used to insulate exposed electrical conductors
+41604,fried_egg,eggs cooked by sauteing in oil or butter; sometimes turned and cooked on both sides
+41605,fried_rice Chinese_fried_rice,boiled rice mixed with scallions and minced pork or shrimp and quickly scrambled with eggs
+41606,friedcake,small cake in the form of a ring or twist or ball or strip fried in deep fat
+41607,friend,a person you know well and regard with affection and trust; "he was my best friend at the university"
+41608,friendlessness,being without friends
+41609,friendliness,a feeling of liking for another person; enjoyment in their company
+41610,friendliness,a friendly disposition
+41611,friendly,troops belonging to or allied with your own military forces; "friendlies came to their rescue"
+41612,friendly_fire fratricide,fire that injures or kills an ally
+41613,friendly_takeover,a takeover that is welcomed by the management of the target company
+41614,friendship friendly_relationship,the state of being friends (or friendly)
+41615,friendship_plant panamica panamiga Pilea_involucrata,low stingless nettle of Central and South America having velvety brownish-green toothed leaves and clusters of small green flowers
+41616,frieze,an architectural ornament consisting of a horizontal sculptured band between the architrave and the cornice
+41617,frieze,a heavy woolen fabric with a long nap
+41618,frigate,a medium size square-rigged warship of the 18th and 19th centuries
+41619,frigate,a United States warship larger than a destroyer and smaller than a cruiser
+41620,frigate_bird man-of-war_bird,long-billed warm-water seabird with wide wingspan and forked tail
+41621,frightfulness,the quality of being frightful
+41622,frigidity frigidness,sexual unresponsiveness (especially of women) and inability to achieve orgasm during intercourse
+41623,frijole,Mexican bean; usually dried
+41624,frill,(paleontology) a bony plate that curves upward behind the skull of many ceratopsian dinosaurs
+41625,frill flounce ruffle furbelow,a strip of pleated material used as a decoration or a trim
+41626,frill ruff,an external body part consisting of feathers or hair about the neck of a bird or other animal
+41627,frilled_lizard Chlamydosaurus_kingi,large arboreal insectivorous Australian lizard with a ruff of skin around the neck
+41628,fringe,a social group holding marginal or extreme views; "members of the fringe believe we should be armed with guns at all times"
+41629,fringe,an ornamental border consisting of short lengths of hanging threads or tassels
+41630,fringe interference_fringe,one of the light or dark bands produced by the interference and diffraction of light
+41631,fringe-toed_lizard Uma_notata,with long pointed scales around toes; of deserts of United States and Mexico
+41632,fringe_benefit perquisite perk,an incidental benefit awarded for certain types of employment (especially if it is regarded as a right); "a limousine is one of the fringe benefits of the job"
+41633,fringe_bush Chionanthus_virginicus,small bushy tree of southeastern United States having profuse clusters of white flowers
+41634,fringe_tree,any of various small decorative flowering trees or shrubs of the genus Chionanthus
+41635,fringed_gentian,any of various herbs of the genus Gentianopsis having the margins of the corolla lobes fringed; sometimes included in genus Gentiana
+41636,fringed_grass_of_Parnassus Parnassia_fimbriata,bog plant with broadly heart-shaped basal leaves and cream-colored or white saucer-shaped flowers with fringed petals; west of Rocky Mountains from Alaska to New Mexico
+41637,fringed_loosestrife Lysimachia_ciliatum,of North America
+41638,fringed_orchis fringed_orchid,any of several summer-flowering American orchids distinguished by a fringed or lacerated lip
+41639,fringed_pink Dianthus_supurbus,Eurasian perennial pink having fragrant lilac or rose flowers with deeply fringed margins
+41640,fringed_poppy_mallow Callirhoe_digitata,perennial poppy mallow of United States southern plains states having rose-red or rose-purple flowers
+41641,fringepod lacepod,annual herb having pinnatifid basal leaves and slender racemes of small white flowers followed by one-seeded winged silicles
+41642,frisk frisking,the act of searching someone for concealed weapons or illegal drugs; "he gave the suspect a quick frisk"
+41643,friskiness frolicsomeness sportiveness,lively high-spirited playfulness
+41644,frisson shiver chill quiver shudder thrill tingle,an almost pleasurable sensation of fright; "a frisson of surprise shot through him"
+41645,fritillary,butterfly with brownish wings marked with black and silver
+41646,fritillary checkered_lily,any liliaceous plant of the genus Fritillaria having nodding variously colored flowers
+41647,frittata,Italian omelet with diced vegetables and meats; cooked until bottom is set then inverted into another pan to cook the top
+41648,fritter,small quantity of fried batter containing fruit or meat or vegetables
+41649,fritter_batter,batter for making fritters
+41650,frivolity frivolousness,the trait of being frivolous; not serious or sensible
+41651,frizz,the condition of being formed into small tight curls; "her hair was in a frizz"
+41652,frock,a long, loose outer garment
+41653,frock,a habit worn by clerics
+41654,frock_coat,a man's coat having knee-length skirts front and back; worn in the 19th century
+41655,frog,a decorative loop of braid or cord
+41656,frog Gaul,a person of French descent
+41657,frog toad toad_frog anuran batrachian salientian,any of various tailless stout-bodied amphibians with long hind limbs for leaping; semiaquatic and terrestrial species
+41658,frog's_lettuce,very similar to Potamogeton; of western Africa, Asia, and Europe
+41659,frog_kick,a swimming kick; knees are drawn upward and outward so the legs can be brought together when fully extended
+41660,frog_legs,hind legs of frogs used as food; resemble chicken and cooked as chicken
+41661,frog_orchid,any of several green orchids of the genus Habenaria
+41662,frog_orchid Coeloglossum_viride,orchid having hooded long-bracted green to yellow-green flowers suffused with purple
+41663,frogbit frog's-bit Hydrocharis_morsus-ranae,European floating plant with roundish heart-shaped leaves and white flowers
+41664,frogfish,fish having a frog-like mouth with a lure on the snout
+41665,froghopper,a variety of spittlebug
+41666,frogmouth,insectivorous bird of Australia and southeastern Asia having a wide frog-like mouth
+41667,frond,compound leaf of a fern or palm or cycad
+41668,front,a sphere of activity involving effort; "the Japanese were active last week on the diplomatic front"; "they advertise on many different fronts"
+41669,front,(meteorology) the atmospheric phenomenon created at the boundary between two different air masses
+41670,front,the part of something that is nearest to the normal viewer; "he walked to the front of the stage"
+41671,front,the outward appearance of a person; "he put up a bold front"
+41672,front,the side that is seen or that goes first
+41673,front front_end forepart,the side that is forward or prominent
+41674,front-porch_campaigning front-porch_campaign,a campaign in which the candidate makes speeches but does not travel; "William McKinley's dignified front-porch campaign won him the presidency in 1896"; "her approach was the opposite of a passive front-porch campaign"
+41675,front-runner favorite favourite,a competitor thought likely to win
+41676,front_bench,any of the front seats in the House of Commons that are reserved for ministers or former ministers
+41677,front_burner,top priority; "the work was moved to the front burner in order to meet deadlines"
+41678,front_door front_entrance,exterior door (at the entrance) at the front of a building
+41679,front_man front figurehead nominal_head straw_man strawman,a person used as a cover for some questionable activity
+41680,front_matter prelims,written matter preceding the main text of a book
+41681,front_porch,a porch for the front door
+41682,front_projector,a projector for digital input
+41683,front_tooth anterior,a tooth situated at the front of the mouth; "his malocclusion was caused by malposed anteriors"
+41684,front_yard,the yard in front of a house; between the house and the street
+41685,frontage,the direction in which something (such as a building) faces
+41686,frontage,the extent of land abutting on a street or water
+41687,frontage_road service_road,a local road that runs parallel to an expressway and allows local traffic to gain access to property
+41688,frontal,a drapery that covers the front of an altar
+41689,frontal_bone os_frontale forehead,the large cranial bone forming the front part of the cranium: includes the upper part of the orbits
+41690,frontal_eminence,either prominence of the frontal bone above each orbit
+41691,frontal_gyrus,any of the convolutions of the outer surface of the frontal lobe of the cerebrum
+41692,frontal_lobe frontal_cortex,that part of the cerebral cortex in either hemisphere of the brain lying directly behind the forehead
+41693,frontal_sinus,one of a pair of cavities in the frontal bone
+41694,frontal_suture sutura_frontalis,the suture between two halves of the frontal bone (usually obliterated by the age of 6)
+41695,frontbencher,a member of the House of Commons who is a minister in the government or who holds an official position in an opposition party
+41696,frontier,a wilderness at the edge of a settled area of a country; "the individualism of the frontier in Andrew Jackson's day"
+41697,frontier,an international boundary or the area (often fortified) immediately inside the boundary
+41698,frontier,an undeveloped field of study; a topic inviting research and development; "he worked at the frontier of brain science"
+41699,frontier_settlement outpost,a settlement on the frontier of civilization
+41700,frontiersman backwoodsman mountain_man,a man who lives on the frontier
+41701,frontierswoman,a woman who lives on the frontier
+41702,frontispiece,an ornamental facade
+41703,frontispiece,front illustration facing the title page of a book
+41704,frontlet frontal,an adornment worn on the forehead
+41705,frost hoar hoarfrost rime,ice crystals forming a white deposit (especially on objects outside)
+41706,frost icing,the formation of frost or ice on a surface
+41707,frost_heave frost_heaving,upthrust of ground or pavement caused by the freezing of moist soil
+41708,frostbite cryopathy,destruction of tissue by freezing and characterized by tingling, blistering and possibly gangrene
+41709,frosted_bat Vespertilio_murinus,common Eurasian bat with white-tipped hairs in its coat
+41710,frostiness,coldness as evidenced by frost
+41711,frostiness hoariness,a silvery-white color
+41712,frosting icing ice,a flavored sugar topping used to coat and decorate cakes
+41713,frostweed frost-weed frostwort Helianthemum_canadense Crocanthemum_canadense,perennial of the eastern United States having early solitary yellow flowers followed by late petalless flowers; so-called because ice crystals form on it during first frosts
+41714,frottage,masturbation by rubbing against another person (as in a crowd)
+41715,frotteur,someone who masturbates by rubbing against another person (as in a crowd)
+41716,frown scowl,a facial expression of dislike or displeasure
+41717,frown_line,a facial wrinkle associated with frowning
+41718,frozen_custard soft_ice_cream,dessert resembling ice cream but with a boiled custard base
+41719,frozen_dessert,any of various desserts prepared by freezing
+41720,frozen_food frozen_foods,food preserved by freezing
+41721,frozen_orange_juice orange-juice_concentrate,orange juice that has been concentrated and frozen
+41722,frozen_pudding,a chilled dessert consisting of a mixture of custard and nuts and (sometimes) liquor
+41723,frozen_yogurt,a soft frozen dessert of sweetened flavored yogurt
+41724,fructification,the bearing of fruit
+41725,fructification,organs of fruiting (especially the reproductive parts of ferns and mosses)
+41726,fructose fruit_sugar levulose laevulose,a simple sugar found in honey and in many ripe fruits
+41727,fructosuria,the presence of levulose is the urine; "fructosuria is a harmless condition"
+41728,frugality frugalness,prudence in avoiding waste
+41729,fruit,the ripened reproductive body of a seed plant
+41730,fruit,the consequence of some effort or action; "he lived long enough to see the fruit of his policies"
+41731,fruit_bar,cookies containing chopped fruits either mixed in the dough or spread between layers of dough then baked and cut in bars
+41732,fruit_bat megabat,large Old World bat of warm and tropical regions that feeds on fruit
+41733,fruit_cocktail,a mixture of sliced or diced fruits
+41734,fruit_custard,a custard containing fruit
+41735,fruit_drink ade,a sweetened beverage of diluted fruit juice
+41736,fruit_fly pomace_fly,any of numerous small insects whose larvae feed on fruits
+41737,fruit_grower,someone who grows fruit commercially
+41738,fruit_juice fruit_crush,drink produced by squeezing or crushing fruit
+41739,fruit_machine,a coin-operated gambling machine that produces random combinations of symbols (usually pictures of different fruits) on rotating dials; certain combinations win money for the player
+41740,fruit_of_the_poisonous_tree,a rule that once primary evidence is determined to have been illegally obtained any secondary evidence following from it may also not be used
+41741,fruit_punch,a punch made of fruit juices mixed with water or soda water (with or without alcohol)
+41742,fruit_salad,salad composed of fruits
+41743,fruit_tree,tree bearing edible fruit
+41744,fruitage,the yield of fruit; "a tree highly recommended for its fruitage"
+41745,fruitcake,a rich cake containing dried fruit and nuts and citrus peel and so on
+41746,fruiterer,a person who sells fruit
+41747,fruitfulness fecundity,the quality of something that causes or assists healthy growth
+41748,fruiting_body,an organ specialized for producing spores
+41749,fruition,the condition of bearing fruit
+41750,fruition,enjoyment derived from use or possession
+41751,fruitlessness,a lack of creative imagination
+41752,fruitlessness aridity barrenness,the quality of yielding nothing of value
+41753,fruitlet,a diminutive fruit, especially one that is part of a multiple fruit
+41754,fruitwood,wood of various fruit trees (as apple or cherry or pear) used especially in cabinetwork
+41755,frumenty,sweet spiced porridge made from hulled wheat
+41756,frump dog,a dull unattractive unpleasant girl or woman; "she got a reputation as a frump"; "she's a real dog"
+41757,frustration,a feeling of annoyance at being hindered or criticized; "her constant complaints were the main source of his frustration"
+41758,frustration defeat,the feeling that accompanies an experience of being thwarted in attaining your goals
+41759,frustration thwarting foiling,an act of hindering someone's plans or efforts
+41760,frustum,a truncated cone or pyramid; the part that is left when a cone or pyramid is cut by a plane parallel to the base and the apical part is removed
+41761,fry_cook,a cook who specializes in fried foods
+41762,fryer frier pullet,flesh of a medium-sized young chicken suitable for frying
+41763,frying sauteing,cooking in fat or oil in a pan or griddle
+41764,frying_pan frypan skillet,a pan used for frying foods
+41765,fuchsia,any of various tropical shrubs widely cultivated for their showy drooping purplish or reddish or white flowers; Central and South America and New Zealand and Tahiti
+41766,fuck fucking screw screwing ass nooky nookie piece_of_ass piece_of_tail roll_in_the_hay shag shtup,slang for sexual intercourse
+41767,fucker,a stupid despised man
+41768,fucoid,a fossilized cast or impression of algae of the order Fucales
+41769,fucoid fucoid_algae,any of various algae of the family Fucaceae
+41770,fucus,any member of the genus Fucus
+41771,fuddy-duddy,a conservative who is old-fashioned or dull in attitude or appearance; "you may accuse me of being and old fuddy-duddy trying to stop young people having fun"
+41772,fudge,soft creamy candy
+41773,fuel,a substance that can be consumed to produce energy; "more fuel is needed during the winter months"; "they developed alternative fuels for aircraft"
+41774,fuel-air_explosive FAE,a device consisting of a container of fuel and two explosive charges; the first charge bursts open the fuel container at a predetermined height and spreads the fuel in a cloud that mixes with atmospheric oxygen; the second charge detonates the cloud which creates an enormous blast wave and incinerates whatever is below
+41775,fuel_cell,cell that produces electricity by oxidation of fuel (hydrogen and oxygen or zinc and air); often used in electric cars
+41776,fuel_filter,a filter in the fuel line that screens out dirt and rust particles from the fuel
+41777,fuel_gauge fuel_indicator,an indicator of the amount of fuel remaining in a vehicle
+41778,fuel_injection fuel_injection_system,mechanical system to inject atomized fuel directly into the cylinders of an internal-combustion engine; avoids the need for a carburetor
+41779,fuel_level,the amount of fuel remaining
+41780,fuel_line gas_line petrol_line,a pipe that carries gasoline from a tank to a gasoline engine; "the car wouldn't start because dirt clogged the gas line"
+41781,fuel_oil heating_oil,a petroleum product used for fuel
+41782,fuel_system,equipment in a motor vehicle or aircraft that delivers fuel to the engine
+41783,fueling refueling,the activity of supplying or taking on fuel
+41784,fug,(British informal) an airless smoky smelly atmosphere
+41785,fugacity,the tendency of a gas to expand or escape
+41786,fugacity fugaciousness,the lack of enduring qualities (used chiefly of plant parts)
+41787,fugitive fugitive_from_justice,someone who is sought by law officers; someone trying to elude justice
+41788,fugitive runaway fleer,someone who flees from an uncongenial situation; "fugitives from the sweatshops"
+41789,fugleman,a leader and organizer and spokesman (especially a political leader); "a fugleman for the radical right"
+41790,fugu,a blowfish highly prized as a delicacy in Japan but highly dangerous because the skin and organs are poisonous
+41791,fugue,a dreamlike state of altered consciousness that may last for hours or days
+41792,fugue,a musical form consisting of a theme repeated a fifth above or a fourth below its first statement
+41793,fugue psychogenic_fugue,dissociative disorder in which a person forgets who they are and leaves home to create a new life; during the fugue there is no memory of the former life; after recovering there is no memory for events during the dissociative state
+41794,fuji fuji_cherry Prunus_incisa,shrubby Japanese cherry tree having pale pink blossoms
+41795,fulcrum,the pivot about which a lever turns
+41796,fulfillment fulfilment,a feeling of satisfaction at having achieved your desires
+41797,fulfillment fulfilment,the act of consummating something (a desire or promise etc)
+41798,full-dress_uniform,the naval or military uniform that is specified by regulations to be worn on ceremonial occasions
+41799,full-wave_rectifier,rectifier that converts the negative half wave of an alternating current into a positive half wave
+41800,full_blood,descent from parents both of one pure breed
+41801,full_employment,the economic condition when everyone who wishes to work at the going wage rate for their type of labor is employed
+41802,full_faith_and_credit,a guarantee to pay interest and principal on debt; usually issued by the United States Treasury
+41803,full_house,a poker hand with 3 of a kind and a pair
+41804,full_metal_jacket,a lead bullet that is covered with a jacket of a harder metal (usually copper)
+41805,full_moon full-of-the-moon full_phase_of_the_moon full,the time when the Moon is fully illuminated; "the moon is at the full"
+41806,full_nelson,a wrestling hold in which the holder puts both arms under the opponent's arms and exerts pressure on the back of the neck (illegal in amateur wrestling)
+41807,full_page,something that covers an entire page; "the ad took up a full page"
+41808,full_professor,a professor of the highest rank
+41809,full_skirt,a long skirt gathered at the waist
+41810,fullback,(football) the running back who plays the fullback position on the offensive team
+41811,fullback,(American football) an offensive position in the backfield
+41812,fuller,a workman who fulls (cleans and thickens) freshly woven cloth for a living
+41813,fuller's_earth,an absorbent soil resembling clay; used in fulling (shrinking and thickening) woolen cloth and as an adsorbent
+41814,fuller's_teasel Dipsacus_sativus,similar to the common teasel and similarly used; widespread in Europe and North Africa and western Asia; naturalized in United States
+41815,fullerene,a form of carbon having a large molecule consisting of an empty cage of sixty or more carbon atoms
+41816,fullness,the condition of being filled to capacity
+41817,fullness mellowness richness,the property of a sensation that is rich and pleasing; "the music had a fullness that echoed through the hall"; "the cheap wine had no body, no mellowness"; "he was well aware of the richness of his own appearance"
+41818,fullness voluminosity voluminousness,greatness of volume
+41819,fulmar fulmar_petrel Fulmarus_glacialis,heavy short-tailed oceanic bird of polar regions
+41820,fulminate,a salt or ester of fulminic acid
+41821,fulmination,the act of exploding with noise and violence; "his fulminations frightened the horses"
+41822,fulmination diatribe,thunderous verbal attack
+41823,fulminic_acid,(CNOH) an unstable acid occurring mainly in the form of explosive salts and esters that is isomeric with cyanic acid
+41824,fulsomeness oiliness oleaginousness smarminess unctuousness unction,smug self-serving earnestness
+41825,fulvic_acid,a yellow to yellow-brown humic substance that is soluble in water under all pH conditions; "they measured the fluvial fulvic acid"
+41826,fumaric_acid,a colorless crystalline acid with a fruity taste; used in making polyester resins
+41827,fumble muff,(sports) dropping the ball
+41828,fumed_oak,oak given a weathered appearance by exposure to fumes of ammonia; used for cabinetwork
+41829,fumewort fumeroot Corydalis_solida,herb of northern Europe and Asia having erect racemes of red flowers
+41830,fumigant,a chemical substance used in fumigation
+41831,fumigation,the application of a gas or smoke to something for the purpose of disinfecting it
+41832,fumigator,someone whose job is to fumigate
+41833,fumigator,a device that generates a gas for the purpose of disinfecting or eradicating pests
+41834,fumitory fumewort fumeroot Fumaria_officinalis,delicate European herb with greyish leaves and spikes of purplish flowers; formerly used medicinally
+41835,fun,violent and excited activity; "she asked for money and then the fun began"
+41836,fun merriment playfulness,activities that are enjoyable or amusing; "I do it for the fun of it"; "he is fun to have around"
+41837,fun play sport,verbal wit or mockery (often at another's expense but not to be taken seriously); "he became a figure of fun"; "he said it in sport"
+41838,funambulism tightrope_walking,walking on a tightrope or slack rope
+41839,funambulist tightrope_walker,an acrobat who performs on a tightrope or slack rope
+41840,function,a relation such that one thing is dependent on another; "height is a function of age"; "price is a function of supply and demand"
+41841,function,a formal or official social gathering or ceremony; "it was a black-tie function"
+41842,function mathematical_function single-valued_function map mapping,(mathematics) a mathematical relation such that each element of a given set (the domain of the function) is associated with an element of another set (the range of the function)
+41843,function office part role,the actions and activities assigned to or required or expected of a person or group; "the function of a teacher"; "the government must do its part"; "play its role"
+41844,function purpose role use,what something is used for; "the function of an auger is to bore holes"; "ballet is beautiful but what use is it?"
+41845,function_call,a call that passes control to a subroutine; after the subroutine is executed control returns to the next instruction in main program
+41846,function_word closed-class_word,a word that is uninflected and serves a grammatical function but has little identifiable meaning
+41847,functional_anatomy physiological_anatomy morphophysiology,the study of anatomy in its relation to function
+41848,functional_disorder,disorder showing symptoms for which no physiological or anatomical cause can be identified
+41849,functional_genomics,the branch of genomics that determines the biological function of the genes and their products
+41850,functional_illiterate,a person with some ability to read and write but not enough for daily practical needs
+41851,functional_magnetic_resonance_imaging fMRI,a form of magnetic resonance imaging of the brain that registers blood flow to functioning areas of the brain
+41852,functionalism,a psychology based on the assumption that all mental process are useful to an organism in adapting to the environment
+41853,functionalism,any doctrine that stresses utility or purpose
+41854,functionalist,an adherent of functionalism
+41855,functionality,capable of serving a purpose well; "software with greater functionality"
+41856,fund monetary_fund,a reserve of money set aside for some purpose
+41857,fund-raising_campaign fund-raising_drive fund-raising_effort,a campaign to raise money for some cause
+41858,fundamental,any factor that could be considered important to the understanding of a particular business; "fundamentals include a company's growth, revenues, earnings, management, and capital structure"
+41859,fundamental fundamental_frequency first_harmonic,the lowest tone of a harmonic series
+41860,fundamental_analysis fundamentals_analysis,(stock exchange) the use of fundamentals as an investment strategy
+41861,fundamental_law organic_law constitution,law determining the fundamental political principles of a government
+41862,fundamental_quantity fundamental_measure,one of the four quantities that are the basis of systems of measurement
+41863,fundamentalism,a form of Protestantism that takes the interpretation of every word in the sacred texts as literal truth
+41864,fundamentalism,the strict adherence to the basic principles or doctrines of a religion, ideology, etc.
+41865,fundamentalist,an adherent of fundamentalist principles
+41866,fundamentalist,a supporter of fundamentalism
+41867,fundamentals basics fundamental_principle basic_principle bedrock,principles from which other truths can be derived; "first you must learn the fundamentals"; "let's get down to basics"
+41868,fundraiser,someone who solicits financial contributions
+41869,fundraiser,a social function that is held for the purpose of raising money
+41870,funds finances monetary_resource cash_in_hand pecuniary_resource,assets in the form of money
+41871,fundus,(anatomy) the base of a hollow organ or that part of the organ farthest from its opening; "the uterine fundus"; "the fundus of the stomach"
+41872,funeral obsequy,a ceremony at which a dead person is buried or cremated; "hundreds of people attended his funeral"
+41873,funeral_home funeral_parlor funeral_parlour funeral_chapel funeral_church funeral-residence,a mortuary where those who knew the deceased can come to pay their last respects
+41874,funeral_march dead_march,a slow march to be played for funeral processions
+41875,fungal_infection mycosis,an inflammatory condition caused by a fungus
+41876,fungible,a commodity that is freely interchangeable with another in satisfying an obligation
+41877,fungus,an organism of the kingdom Fungi lacking chlorophyll and feeding on organic matter; ranging from unicellular or multicellular organisms to spore-bearing syncytia
+41878,fungus_family,includes lichen families
+41879,fungus_genus,includes lichen genera
+41880,fungus_gnat,mosquito-like insect whose larvae feed on fungi or decaying vegetation
+41881,fungus_gnat sciara sciarid,minute blackish gregarious flies destructive to mushrooms and seedlings
+41882,fungus_order,the order of fungi
+41883,funicle funiculus,the stalk of a plant ovule or seed
+41884,funiculitis,inflammation of a funiculus (especially an inflammation of the spermatic cord)
+41885,funiculus,any of several body structure resembling a cord
+41886,funk,an earthy type of jazz combining it with blues and soul; has a heavy bass line that accentuates the first beat in the bar
+41887,funk blue_funk,a state of nervous depression; "he was in a funk"
+41888,funk_hole,dugout as a place of safe retreat (when in a funk)
+41889,funnel,a conically shaped utensil having a narrow tube at the small end; used to channel the flow of substances into a container with a small mouth
+41890,funnel,(nautical) smokestack consisting of a shaft for ventilation or the passage of smoke (especially the smokestack of a ship)
+41891,funnel funnel_shape,a conical shape with a wider and a narrower opening at the two ends
+41892,funnel_web,a funnel-shaped spider web; the funnel-web spider perches in the center of the web
+41893,funny_bone crazy_bone,a point on the elbow where the ulnar nerve passes near the surface; a sharp tingling sensation results when the nerve is knocked against the bone; "the funny bone is not humerus"
+41894,funny_story good_story funny_remark funny,an account of an amusing incident (usually with a punch line); "she told a funny story"; "she made a funny"
+41895,funny_wagon,an ambulance used to transport patients to a mental hospital
+41896,funrun fun_run,a footrace run for fun (often including runners who are sponsored for a charity)
+41897,fur,a garment made of animal pelts or synthetic fur
+41898,fur,dense coat of fine silky hairs on mammals (e.g., cat or seal or weasel)
+41899,fur pelt,the dressed hairy coat of a mammal
+41900,fur-piece,a neckpiece made of fur
+41901,fur_coat,a coat made of fur
+41902,fur_hat,a hat made of fur
+41903,fur_seal,an eared seal of the northern Pacific
+41904,fur_seal,eared seal of the southern hemisphere; the thick soft underfur is the source of sealskin; "the male fur seal is much larger than the female"
+41905,furan furane furfuran,a colorless toxic flammable liquid used in the synthesis of nylon
+41906,furcation forking,the place where something divides into branches
+41907,furcula,a forked bone formed by the fusion of the clavicles of most birds
+41908,furfural furfuraldehyde,a liquid aldehyde with a penetrating odor; made from plant hulls and corncobs; used in making furan and as a solvent
+41909,furlong,a unit of length equal to 220 yards
+41910,furlough,a temporary leave of absence from military duty
+41911,furnace,an enclosed chamber in which heat is produced to heat buildings, destroy refuse, smelt or refine ores, etc.
+41912,furnace_lining refractory,lining consisting of material with a high melting point; used to line the inside walls of a furnace
+41913,furnace_room,a room (usually in the basement of a building) that contains a furnace for heating the building
+41914,furnishing,(usually plural) the instrumentalities (furniture and appliances and other movable accessories including curtains and rugs) that make a home (or other area) livable
+41915,furnishing,the act of providing a house or room with furniture and other removable items such as shelves, carpets, appliances, etc.
+41916,furnishing trappings,(usually plural) accessory wearing apparel
+41917,furniture piece_of_furniture article_of_furniture,furnishings that make a room or other area ready for occupancy; "they had too much furniture for the small apartment"; "there was only one piece of furniture in the room"
+41918,furniture_company,a company that sells furniture
+41919,furor furore,a sudden outburst (as of protest)
+41920,furosemide Lasix,commonly used diuretic (trade name Lasix) used to treat hypertension and edema
+41921,furring,a furlike coating of matter as on the tongue
+41922,furring_strip furring,strip used to give a level surface for attaching wallboard
+41923,furrow,a long shallow trench in the ground (especially one made by a plow)
+41924,furtiveness sneakiness stealthiness,a disposition to be sly and stealthy and to do things surreptitiously
+41925,furunculosis,acute skin disease characterized by the presence of many furuncles
+41926,fury rage madness,a feeling of intense anger; "hell hath no fury like a woman scorned"; "his face turned red with rage"
+41927,fusarium_wilt,wilt caused by fungi of the genus Fusarium
+41928,fuschia,a dark purplish-red color
+41929,fuse electrical_fuse safety_fuse,an electrical device that can interrupt the flow of electrical current when it is overloaded
+41930,fuse fuze fusee fuzee primer priming,any igniter that is used to initiate the burning of a propellant
+41931,fusee fuzee,a colored flare used as a warning signal by trucks and trains
+41932,fusee fuzee,a friction match with a large head that will stay alight in the wind
+41933,fusee_drive fusee,a spirally grooved spindle in a clock that counteracts the diminishing power of the uncoiling mainspring
+41934,fusel_oil,a mixture of amyl alcohols and propanol and butanol formed from distillation of fermented liquors
+41935,fuselage,the central body of an airplane that is designed to accommodate the crew and passengers (or cargo)
+41936,fusible_metal,an alloy with a low melting point and used as solder and in safety plugs and sprinkler fuses
+41937,fusil,a light flintlock musket
+41938,fusilier,(formerly) a British infantryman armed with a light flintlock musket
+41939,fusillade salvo volley burst,rapid simultaneous discharge of firearms; "our fusillade from the left flank caught them by surprise"
+41940,fusion,the merging of adjacent sounds or syllables or words
+41941,fusion,the act of fusing (or melting) together
+41942,fusion merger unification,an occurrence that involves the production of a union
+41943,fusion nuclear_fusion nuclear_fusion_reaction,a nuclear reaction in which nuclei combine to form more massive nuclei with the simultaneous release of energy
+41944,fusion optical_fusion,the combining of images from the two eyes to form a single visual percept
+41945,fusion spinal_fusion,correction of an unstable part of the spine by joining two or more vertebrae; usually done surgically but sometimes done by traction or immobilization
+41946,fusion_cooking,cooking that combines ingredients and techniques and seasonings from different cuisines
+41947,fuss trouble bother hassle,an angry disturbance; "he didn't want to make a fuss"; "they had labor trouble"; "a spot of bother"
+41948,fussiness,unnecessary elaborateness in details
+41949,fustian,a strong cotton and linen fabric with a slight nap
+41950,futility,uselessness as a consequence of having no practical result
+41951,futon,mattress consisting of a pad of cotton batting that is used for sleeping on the floor or on a raised frame
+41952,futtock_shroud,shroud that is part of a ship's rigging
+41953,future,bulk commodities bought or sold at an agreed price for delivery at a specified future date
+41954,future future_tense,a verb tense that expresses actions or states in the future
+41955,future hereafter futurity time_to_come,the time yet to come
+41956,future_date,a particular day in the future that is specified as the time something will happen
+41957,future_perfect future_perfect_tense,a perfective tense used to describe action that will be completed in the future; "`I will have finished' is an example of the future perfect"
+41958,future_progressive future_progressive_tense,a progressive tense used to express action that will be on-going in the future; "`I will be running' is an example of the future progressive"
+41959,futures_contract,an agreement to buy or sell a specific amount of a commodity or financial instrument at a particular price on a stipulated future date; the contract can be sold before the settlement date
+41960,futures_exchange futures_market forward_market,a commodity exchange where futures contracts are traded
+41961,futurism,an artistic movement in Italy around 1910 that tried to express the energy and values of the machine age
+41962,futurism,the position that the meaning of life should be sought in the future
+41963,futurist,a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) will be fulfilled in the future
+41964,futurity,the quality of being in or of the future
+41965,futurology futuristics,the study or prediction of future developments on the basis of existing conditions
+41966,fuzz,the first beard of an adolescent boy
+41967,fuzzy_logic,a form of mathematical logic in which truth can assume a continuum of values between 0 and 1
+41968,g gee g-force,a unit of force equal to the force exerted by gravity; used to indicate the force to which a body is subjected when it is accelerated
+41969,gabapentin Neurontin,an anticonvulsant (trade name Neurontin) used to control some types of seizures in the treatment of epilepsy; also used to manage neuralgia caused by shingles
+41970,gabardine,a firm durable fabric with a twill weave
+41971,gabbro,one of a family of granular intrusive rocks
+41972,gable gable_end gable_wall,the vertical triangular wall between the sloping ends of gable roof
+41973,gable_roof saddle_roof saddleback saddleback_roof,a double sloping roof with a ridge and gables at each end
+41974,gaboon_viper Bitis_gabonica,large heavy-bodied brilliantly marked and extremely venomous west African viper
+41975,gadabout,a restless seeker after amusement or social companionship
+41976,gaddi,a cushion on a throne for a prince in India
+41977,gadfly,any of various large flies that annoy livestock
+41978,gadgeteer,a person who delights in designing or building or using gadgets
+41979,gadgetry,appliances collectively; "laborsaving gadgetry"
+41980,gadoid gadoid_fish,a soft-finned fish of the family Gadidae
+41981,gadolinite ytterbite,a mineral that is a source of rare earths; consists of silicates of iron and beryllium and cerium and yttrium and erbium
+41982,gadolinium Gd atomic_number_64,a ductile silvery-white ductile ferromagnetic trivalent metallic element of the rare earth group
+41983,gaff,a sharp metal spike or spur that is fastened to the leg of a gamecock
+41984,gaff,a spar rising aft from a mast to support the head of a quadrilateral fore-and-aft sail
+41985,gaff,an iron hook with a handle; used for landing large fish
+41986,gaff_topsail fore-and-aft_topsail,a triangular fore-and-aft sail with its foot along the gaff and its luff on the topmast
+41987,gaffer,an electrician responsible for lighting on a movie or tv set
+41988,gaffsail gaff-headed_sail,a quadrilateral fore-and-aft sail suspended from a gaff
+41989,gag muzzle,restraint put into a person's mouth to prevent speaking or shouting
+41990,gag_law,any law that limits freedom of the press
+41991,gag_order,a court order restricting information or comment by the participants involved in a lawsuit; "imposing a gag order on members of the press violates the First Amendment"
+41992,gaggle,a flock of geese
+41993,gagman gagster gagwriter,someone who writes comic material for public performers
+41994,gagman standup_comedian,a comedian who uses gags
+41995,gaiety merriment,a gay feeling
+41996,gaiety playfulness,a festive merry feeling
+41997,gaillardia,any plant of western America of the genus Gaillardia having hairy leaves and long-stalked flowers in hot vibrant colors from golden yellow and copper to rich burgundy
+41998,gain,the amount by which the revenue of a business exceeds its cost of operating
+41999,gainer,a person who gains (gains an advantage or gains profits); "she was clearly the gainer in that exchange"
+42000,gainer full_gainer,a dive in which the diver throws the feet forward to complete a full backward somersault and enters the water feet first and facing away from the diving board
+42001,gainer weight_gainer,a person who gains weight
+42002,gait,a horse's manner of moving
+42003,gait,a person's manner of walking
+42004,gaiter,a shoe covering the ankle with elastic gores in the sides
+42005,gaiter,legging consisting of a cloth or leather covering for the leg from the knee to the ankle
+42006,gal,a unit of gravitational acceleration equal to one centimeter per second per second (named after Galileo)
+42007,gal,alliterative term for girl (or woman)
+42008,gala gala_affair jamboree blowout,a gay festivity
+42009,galactagogue,agent that induces milk secretion
+42010,galactocele,a cystic tumor containing milk or a milky substance (especially in the mammary glands)
+42011,galactose brain_sugar,a simple sugar found in lactose
+42012,galactosemia,a genetic disease (autosomal recessive) in which an enzyme needed to metabolize galactose is deficient or absent; typically develops shortly after birth
+42013,galactosis,the secretion of milk
+42014,galago bushbaby bush_baby,agile long-tailed nocturnal African lemur with dense woolly fur and large eyes and ears
+42015,galangal Alpinia_galanga,southeastern Asian perennial with aromatic roots
+42016,galantine,boned poultry stuffed then cooked and covered with aspic; served cold
+42017,galanty_show shadow_show shadow_play,a drama executed by throwing shadows on a wall
+42018,galax galaxy wandflower beetleweed coltsfoot Galax_urceolata,tufted evergreen perennial herb having spikes of tiny white flowers and glossy green round to heart-shaped leaves that become coppery to maroon or purplish in fall
+42019,galaxy,a splendid assemblage (especially of famous people)
+42020,galaxy extragalactic_nebula,(astronomy) a collection of star systems; any of the billions of systems each having many stars and nebulae and dust; "`extragalactic nebula' is a former name for `galaxy'"
+42021,galbanum gum_albanum,a bitter aromatic gum resin that resembles asafetida
+42022,galbulus,the seed-producing cone of a cypress tree
+42023,gale,a strong wind moving 45-90 knots; force 7 to 10 on Beaufort scale
+42024,galea,an organ shaped like a helmet; usually a vaulted and enlarged petal as in Aconitum
+42025,galena,soft blue-grey mineral; lead sulfide; a major source of lead
+42026,galere rogue's_gallery,a coterie of undesirable people
+42027,galingale galangal Cyperus_longus,European sedge having rough-edged leaves and spikelets of reddish flowers and aromatic roots
+42028,gall,a skin sore caused by chafing
+42029,gall,abnormal swelling of plant tissue caused by insects or microorganisms or injury
+42030,gall_midge gallfly gall_gnat,fragile mosquito-like flies that produce galls on plants
+42031,gall_wasp gallfly cynipid_wasp cynipid_gall_wasp,small solitary wasp that produces galls on oaks and other plants
+42032,gallamine Flaxedil,neuromuscular blocking agent (trade name Flaxedil) used as a muscle relaxant in the administration of anesthesia
+42033,gallantry,polite attentiveness to women
+42034,gallbladder gall_bladder,a muscular sac attached to the liver that stores bile (secreted by the liver) until it is needed for digestion
+42035,galleon,a large square-rigged sailing ship with three or more masts; used by the Spanish for commerce and war from the 15th to 18th centuries
+42036,gallery,spectators at a golf or tennis match
+42037,gallery,a long usually narrow room used for some specific purpose; "shooting gallery"
+42038,gallery,a covered corridor (especially one extending along the wall of a building and supported with arches or columns)
+42039,gallery,narrow recessed balcony area along an upper floor on the interior of a building; usually marked by a colonnade
+42040,gallery art_gallery picture_gallery,a room or series of rooms where works of art are exhibited
+42041,galley,a large medieval vessel with a single deck propelled by sails and oars with guns at stern and prow; a complement of 1,000 men; used mainly in the Mediterranean for war and trading
+42042,galley,(classical antiquity) a crescent-shaped seagoing vessel propelled by oars
+42043,galley,the kitchen area for food preparation on an airliner
+42044,galley ship's_galley caboose cookhouse,the area for food preparation on a ship
+42045,galley_proof,a proof taken before the type is broken up to print pages
+42046,galley_slave,a slave condemned to row in a galley
+42047,gallfly,any of various insects that deposit their eggs in plants causing galls in which the larvae feed
+42048,gallic_acid,a colorless crystalline acid obtained from tannin
+42049,gallinaceous_bird gallinacean,heavy-bodied largely ground-feeding domestic or game birds
+42050,gallinule marsh_hen water_hen swamphen,any of various small aquatic birds of the genus Gallinula distinguished from rails by a frontal shield and a resemblance to domestic hens
+42051,gallium Ga atomic_number_31,a rare silvery (usually trivalent) metallic element; brittle at low temperatures but liquid above room temperature; occurs in trace amounts in bauxite and zinc ores
+42052,gallon Imperial_gallon congius,a British imperial capacity measure (liquid or dry) equal to 4 quarts or 4.545 liters
+42053,gallon gal,United States liquid unit equal to 4 quarts or 3.785 liters
+42054,gallop,a fast gait of a horse; a two-beat stride during which all four legs are off the ground simultaneously
+42055,gallop_rhythm cantering_rhythm,cardiac rhythm characterized by the presence of an extra sound; can indicate a heart abnormality
+42056,gallows,an instrument of execution consisting of a wooden frame from which a condemned person is executed by hanging
+42057,gallows_bird,a person who deserves to be hanged
+42058,gallows_tree gallows-tree gibbet gallous,alternative terms for gallows
+42059,gallstone bilestone,a calculus formed in the gall bladder or its ducts
+42060,galoot,a disreputable or clumsy man
+42061,galvanic_skin_response GSR psychogalvanic_response electrodermal_response electrical_skin_response Fere_phenomenon Tarchanoff_phenomenon,a change in the electrical properties of the skin in response to stress or anxiety; can be measured either by recording the electrical resistance of the skin or by recording weak currents generated by the body
+42062,galvanism,electricity produced by chemical action
+42063,galvanization galvanisation,stimulation with a galvanic current
+42064,galvanization galvanisation,stimulation that arouses a person to lively action; "the unexpected news produced a kind of galvanization of the whole team"
+42065,galvanization galvanisation,either the work of covering with metal by the use of a galvanic current or the coating of iron with zinc to protect it from rusting
+42066,galvanized_iron,iron that is coated with zinc to protect it from rust
+42067,galvanizer galvaniser,a skilled worker who coats iron or steel with zinc
+42068,galvanizer galvaniser inspirer,a leader who stimulates and excites people to action
+42069,galvanometer,meter for detecting or comparing or measuring small electric currents
+42070,gam,a herd of whales
+42071,gambist,a musician who performs upon the viola da gamba
+42072,gambit,a chess move early in the game in which the player sacrifices minor pieces in order to obtain an advantageous position
+42073,gambit ploy,an opening remark intended to secure an advantage for the speaker
+42074,gamble,money that is risked for possible monetary gain
+42075,gamble,a risky act or venture
+42076,gambler,a person who wagers money on the outcome of games or sporting events
+42077,gambler risk_taker,someone who risks loss or injury in the hope of gain or excitement
+42078,gambling gaming play,the act of playing for stakes in the hope of winning (including the payment of a price for a chance to win a prize); "his gambling cost him a fortune"; "there was heavy play at the blackjack table"
+42079,gambling_contract,a contract whose performance by one party is contingent on the outcome of a bet; unenforceable by statute in most jurisdictions
+42080,gambling_house gambling_den gambling_hell gaming_house,a public building in which a variety of games of chance can be played (operated as a business)
+42081,gambling_system,a system of rules for placing bets that is believed to lead to winning; "he has a perfect gambling system at roulette"
+42082,gamboge,a gum resin used as a yellow pigment and a purgative
+42083,gamboge lemon lemon_yellow maize,a strong yellow color
+42084,gamboge_tree Garcinia_hanburyi Garcinia_cambogia Garcinia_gummi-gutta,low spreading tree of Indonesia yielding an orange to brown gum resin (gamboge) used as a pigment when powdered
+42085,gambrel gambrel_roof,a gable roof with two slopes on each side and the lower slope being steeper
+42086,game,(tennis) a division of play during which one player serves
+42087,game,(games) the score at a particular point or the score needed to win; "the game is 6 all"; "he is serving for the game"
+42088,game,the flesh of wild animals that is used for food
+42089,game,the game equipment needed in order to play a particular game; "the child received several games for his birthday"
+42090,game,animal hunted for food or sport
+42091,game,frivolous or trifling behavior; "for actors, memorizing lines is no game"; "for him, life is all fun and games"
+42092,game,a single play of a sport or other contest; "the game lasted two hours"
+42093,game,a contest with rules to determine a winner; "you need four people to play this game"
+42094,game,an amusement or pastime; "they played word games"; "he thought of his painting as a game that filled his empty time"; "his life was all fun and games"
+42095,game biz,your occupation or line of work; "he's in the plumbing game"; "she's in show biz"
+42096,game_bird,any bird (as grouse or pheasant) that is hunted for sport
+42097,game_equipment,equipment or apparatus used in playing a game
+42098,game_fish sport_fish,any fish providing sport for the angler
+42099,game_fowl,any of several breeds reared for cockfighting
+42100,game_law,a regulation intended to manage or preserve game animals
+42101,game_misconduct,(ice hockey) a penalty that suspends a player for the remainder of a game (but allows the team to send in a substitute for the suspended player)
+42102,game_of_chance gambling_game,a game that involves gambling
+42103,game_plan,(figurative) a carefully thought out strategy for achieving an objective in war or politics or business or personal affairs; "newscasters speculated about the President's game plan for an invasion"
+42104,game_plan,(sports) a plan for achieving an objective in some sport
+42105,game_show giveaway,a television or radio program in which contestants compete for awards
+42106,game_theory theory_of_games,(economics) a theory of competition stated in terms of gains and losses among opposing players
+42107,gamebag,a canvas or leather bag for carrying game (especially birds) killed by a hunter
+42108,gamecock fighting_cock,a cock bred and trained for fighting
+42109,gamekeeper game_warden,a person employed to take care of game and wildlife
+42110,gamelan,a traditional Indonesian ensemble typically including many tuned percussion instruments including bamboo xylophones and wooden or bronze chimes and gongs
+42111,games-master games-mistress,the teacher in charge of games at a school
+42112,gamesmanship,the use of dubious (although not technically illegal) methods to win a game
+42113,gametangium,cell or organ in which gametes develop
+42114,gamete,a mature sexual reproductive cell having a single set of unpaired chromosomes
+42115,gametocyte,an immature animal or plant cell that develops into a gamete by meiosis
+42116,gametoecium,gametangia and surrounding bracts
+42117,gametogenesis,the development and maturation of sex cells through meiosis
+42118,gametophore,a modified branch bearing gametangia as in the thalloid liverworts
+42119,gametophyte,the gamete-bearing individual or phase in the life cycle of a plant having alternation of generations
+42120,gamine,a homeless girl who roams the streets
+42121,gamine,a girl of impish appeal
+42122,gaminess raciness ribaldry spiciness,behavior or language bordering on indelicacy
+42123,gaming_card,one of a set of cards used in gambling games
+42124,gaming_table,a table used for gambling; may be equipped with a gameboard and slots for chips
+42125,gamma,a unit of magnetic field strength equal to one-hundred-thousandth of an oersted
+42126,gamma,the 3rd letter of the Greek alphabet
+42127,gamma-interferon,a form of interferon that is produced by T cells and macrophages; involved in the activation of phagocytes
+42128,gamma_acid,a crystalline acid used to make azo dyes
+42129,gamma_aminobutyric_acid GABA,an amino acid that is found in the central nervous system; acts as an inhibitory neurotransmitter
+42130,gamma_globulin human_gamma_globulin,a plasma protein containing the immunoglobulins that are responsible for immune responses
+42131,gamma_hydroxybutyrate GHB,a club drug available in liquid or powder form is taken orally (frequently combined with alcohol); used to incapacitate individuals for the commission of sexual assault and rape
+42132,gamma_iron,a nonmagnetic allotrope of iron that is the basis of austenite; stable between 906 and 1403 degrees centigrade
+42133,gamma_radiation gamma_ray,electromagnetic radiation emitted during radioactive decay and having an extremely short wavelength
+42134,gammon,hind portion of a side of bacon
+42135,gammopathy,a disturbance in the synthesis of immunoglobulins; proteins having antibody activity increase greatly in the blood
+42136,gamp brolly,colloquial terms for an umbrella
+42137,gamut,the entire scale of musical notes
+42138,gamut,a complete extent or range: "a face that expressed a gamut of emotions"
+42139,gander,mature male goose
+42140,gandy_dancer,a laborer in a railroad maintenance gang
+42141,gang,tool consisting of a combination of implements arranged to work together
+42142,gang crew work_party,an organized group of workmen
+42143,gang pack ring mob,an association of criminals; "police tried to break up the gang"; "a pack of thieves"
+42144,ganger,the foreman of a work gang
+42145,ganglion,an encapsulated neural structure consisting of a collection of cell bodies or neurons
+42146,ganglion_cell gangliocyte,a nerve cell whose body is outside the central nervous system; "damage to ganglion cells in the retina may play a role in the development of glaucoma"
+42147,gangplank gangboard gangway,a temporary bridge for getting on and off a vessel at dockside
+42148,gangrene sphacelus slough,necrotic tissue; a mortified or gangrenous part or mass
+42149,gangsaw,a power saw that has several parallel blades making simultaneous cuts
+42150,gangsta,(Black English) a member of a youth gang
+42151,gangster mobster,a criminal who is a member of gang
+42152,gangway,a temporary passageway of planks (as over mud on a building site)
+42153,gannet,large heavily built seabird with a long stout bill noted for its plunging dives for fish
+42154,ganoid ganoid_fish,primitive fishes having thick bony scales with a shiny covering
+42155,ganoin ganoine,shiny substance that resemble enamel and is secreted by the corium of certain fishes (especially ganoid fishes) and composes the outer layer of their scales
+42156,gantlet,the convergence of two parallel railroad tracks in a narrow place; the inner rails cross and run parallel and then diverge so a train remains on its own tracks at all times
+42157,gantry gauntry,a framework of steel bars raised on side supports to bridge over or around something; can display railway signals above several tracks or can support a traveling crane etc.
+42158,gap,a difference (especially an unfortunate difference) between two opinions or two views or two situations
+42159,gap crack,a narrow opening; "he opened the window a crack"
+42160,gap spread,a conspicuous disparity or difference as between two figures; "gap between income and outgo"; "the spread between lending and borrowing costs"
+42161,gape,an expression of openmouthed astonishment
+42162,gape,a stare of amazement (usually with the mouth open)
+42163,gapped_scale,a musical scale with fewer than seven notes
+42164,gar garfish garpike billfish Lepisosteus_osseus,primitive predaceous North American fish covered with hard scales and having long jaws with needlelike teeth
+42165,garage,an outbuilding (or part of a building) for housing automobiles
+42166,garage service_department,a repair shop where cars and trucks are serviced and repaired
+42167,garage_sale yard_sale,an outdoor sale of used personal or household items held on the seller's premises
+42168,garageman's_lien,the extension of a mechanic's lien to include payment for work on automobiles
+42169,garambulla,small berrylike fruit
+42170,garambulla garambulla_cactus Myrtillocactus_geometrizans,arborescent cactus of western Mexico bearing a small oblong edible berrylike fruit
+42171,garbage,a receptacle where waste can be discarded; "she tossed the moldy bread into the garbage"
+42172,garbage refuse food_waste scraps,food that is discarded (as from a kitchen)
+42173,garbage_collection garbage_pickup trash_collection trash_pickup,the collection and removal of garbage
+42174,garbage_heap junk_heap rubbish_heap scrapheap trash_heap junk_pile trash_pile refuse_heap,an accumulation of refuse and discarded matter
+42175,garbage_man garbageman garbage_collector garbage_carter garbage_hauler refuse_collector dustman,someone employed to collect and dispose of refuse
+42176,garbage_truck dustcart,a truck for collecting domestic refuse; "in Britain a garbage truck is called a dustcart"
+42177,garboard garboard_plank garboard_strake,the first wale laid next to the keel of a wooden ship
+42178,garbology,the study of a society by analyzing its garbage
+42179,garden,the flowers or vegetables or fruits or herbs that are cultivated in a garden
+42180,garden,a yard or lawn adjoining a house
+42181,garden,a plot of ground where plants are cultivated
+42182,garden_angelica archangel Angelica_Archangelica,a biennial cultivated herb; its stems are candied and eaten and its roots are used medicinally
+42183,garden_centipede garden_symphilid symphilid Scutigerella_immaculata,minute arthropod often infesting the underground parts of truck-garden and greenhouse crops
+42184,garden_cress,cress cultivated for salads and garnishes
+42185,garden_forget-me-not Myosotis_sylvatica,small biennial to perennial herb of Europe, northern Africa and western Asia having blue, purple or white flowers
+42186,garden_hose,a hose used for watering a lawn or garden
+42187,garden_huckleberry wonderberry sunberry Solanum_nigrum_guineese Solanum_melanocerasum Solanum_burbankii,improved garden variety of black nightshade having small edible orange or black berries
+42188,garden_lettuce common_lettuce Lactuca_sativa,annual or perennial garden plant having succulent leaves used in salads; widely grown
+42189,garden_nasturtium Indian_cress Tropaeolum_majus,strong-growing annual climber having large flowers of all shades of orange from orange-red to yellowish orange and seeds that are pickled and used like capers
+42190,garden_orache mountain_spinach Atriplex_hortensis,Asiatic plant resembling spinach often used as a potherb; naturalized in Europe and North America
+42191,garden_party lawn_party fete_champetre,a party of people assembled for social interaction out of doors
+42192,garden_pea,the flattened to cylindric inflated multi-seeded fruit of the common pea plant
+42193,garden_pea garden_pea_plant common_pea Pisum_sativum,plant producing peas usually eaten fresh rather than dried
+42194,garden_plant,any of a variety of plants usually grown especially in a flower or herb garden
+42195,garden_rake,a rake used by gardeners
+42196,garden_roller,heavy cast-iron cylinder used to flatten lawns
+42197,garden_snail,any of several inedible snails of the genus Helix; often destructive pests
+42198,garden_spade,a spade used by gardeners
+42199,garden_spider Aranea_diademata,a spider common in European gardens
+42200,garden_strawberry cultivated_strawberry Fragaria_ananassa,widely cultivated
+42201,garden_tool lawn_tool,used for working in gardens or yards
+42202,garden_trowel,a trowel used by gardeners
+42203,garden_webworm Loxostege_similalis,a variety of webworm
+42204,gardener,someone employed to work in a garden
+42205,gardener nurseryman,someone who takes care of a garden
+42206,gardenia,any of various shrubs and small trees of the genus Gardenia having large fragrant white or yellow flowers
+42207,gardening horticulture,the cultivation of plants
+42208,garganey Anas_querquedula,small Eurasian teal
+42209,gargle,the sound produced while gargling
+42210,gargle mouthwash,a medicated solution used for gargling and rinsing the mouth
+42211,gargoyle,a spout that terminates in a grotesquely carved figure of a person or animal
+42212,gargoyle,an ornament consisting of a grotesquely carved figure of a person or animal
+42213,garibaldi,a loose high-necked blouse with long sleeves; styled after the red flannel shirts worn by Garibaldi's soldiers
+42214,garishness gaudiness,strident color or excessive ornamentation
+42215,garland_flower Daphne_cneorum,widely cultivated low evergreen shrub with dense clusters of fragrant pink to deep rose flowers
+42216,garlic Allium_sativum,bulbous herb of southern Europe widely naturalized; bulb breaks up into separate strong-flavored cloves
+42217,garlic ail,aromatic bulb used as seasoning
+42218,garlic_bread,French or Italian bread sliced and spread with garlic butter then crisped in the oven
+42219,garlic_butter,butter seasoned with mashed garlic
+42220,garlic_chive,large flat leaves used as chive is used
+42221,garlic_chive Chinese_chive Oriental_garlic Allium_tuberosum,a plant of eastern Asia; larger than Allium schoenoprasum
+42222,garlic_mustard hedge_garlic sauce-alone jack-by-the-hedge Alliaria_officinalis,European herb that smells like garlic
+42223,garlic_press,a press for extracting juice from garlic
+42224,garlic_salt,ground dried garlic and salt
+42225,garment,an article of clothing; "garments of the finest silk"
+42226,garment_bag,a suitcase that unfolds to be hung up
+42227,garment_cutter,someone who cuts cloth etc. to measure in making garments
+42228,garmentmaker garment-worker garment_worker,a person who makes garments
+42229,garnet,any of a group of hard glassy minerals (silicates of various metals) used as gemstones and as an abrasive
+42230,garnet_lac,lac refined by treating with solvent; garnet-colored
+42231,garnierite,a green mineral consisting of hydrated nickel magnesium silicate; a source of nickel
+42232,garnish,something (such as parsley) added to a dish for flavor or decoration
+42233,garnish,any decoration added as a trimming or adornment
+42234,garnishee,a wage earner who is served with a garnishment
+42235,garnishment,a court order to an employer to withhold all or part of an employee's wages and to send the money to the court or to the person who won a lawsuit against the employee
+42236,garrison,the troops who maintain and guard a fortified place
+42237,garrison fort,a fortified military post where troops are stationed
+42238,garrison_cap overseas_cap,a wedge-shaped wool or cotton cap; worn as part of a uniform
+42239,garrote garotte garrotte iron_collar,an instrument of execution for execution by strangulation
+42240,garroter garrotter strangler throttler choker,someone who kills by strangling
+42241,garrulity garrulousness loquaciousness loquacity talkativeness,the quality of being wordy and talkative
+42242,garter supporter,a band (usually elastic) worn around the leg to hold up a stocking (or around the arm to hold up a sleeve)
+42243,garter_belt suspender_belt,a wide belt of elastic with straps hanging from it; worn by women to hold up stockings
+42244,garter_snake grass_snake,any of numerous nonvenomous longitudinally-striped viviparous North American and Central American snakes
+42245,garter_stitch,a knitting stitch that results in a pattern of horizontal ridges formed by knitting both sides (instead of purling one side)
+42246,gas,a fluid in the gaseous state having neither independent shape nor volume and being able to expand indefinitely
+42247,gas gaseous_state,the state of matter distinguished from the solid and liquid states by: relatively low density and viscosity; relatively great expansion and contraction with changes in pressure and temperature; the ability to diffuse readily; and the spontaneous tendency to become distributed uniformly throughout any container
+42248,gas-cooled_reactor,a nuclear reactor using gas as a coolant
+42249,gas-discharge_tube,a tube in which an electric discharge takes place through a gas
+42250,gas-turbine_ship,a ship powered by a gas turbine
+42251,gas_bracket,a pipe with one or more burners projecting from a wall
+42252,gas_burner gas_jet,burner such that combustible gas issues from a nozzle to form a steady flame
+42253,gas_chamber death_chamber,instrument of execution consisting of a sealed chamber into which poison gas is introduced; used to kill people or animals
+42254,gas_company gas_service,a public utility that provides gas
+42255,gas_constant universal_gas_constant R,(physics) the universal constant in the gas equation: pressure times volume = R times temperature; equal to 8.3143 joules per kelvin per mole
+42256,gas_engine,an internal-combustion engine similar to a gasoline engine but using natural gas instead of gasoline vapor
+42257,gas_fitter,a workman who installs and repairs gas fixtures and appliances
+42258,gas_fitting,the fitting (pipes or valves or meters) that convey gas from the gas main to the gas fixtures of a building
+42259,gas_fixture,a device to convey illuminating gas from the pipe to the gas burner
+42260,gas_furnace,a furnace that burns gas
+42261,gas_gangrene clostridial_myonecrosis emphysematous_gangrene emphysematous_phlegmon gangrenous_emphysema gas_phlegmon progressive_emphysematous_necrosis,(pathology) a deadly form of gangrene usually caused by clostridium bacteria that produce toxins that cause tissue death; can be used as a bioweapon
+42262,gas_gun,a gun that fires gas shells
+42263,gas_guzzler,a car with relatively low fuel efficiency
+42264,gas_heat,heating system that burns natural gas
+42265,gas_heater,a heater that burns gas for heat
+42266,gas_holder gasometer,a large gas-tight spherical or cylindrical tank for holding gas to be used as fuel
+42267,gas_lamp,a lamp that burns illuminating gas
+42268,gas_line,a queue of vehicles waiting to purchase gasoline
+42269,gas_line,a pipeline used to transport natural gas; "the workmen broke through the gas line"
+42270,gas_main,a main that distributes gas
+42271,gas_maser,a maser in which microwave radiation interacts with gas molecules
+42272,gas_meter gasometer,a meter for measuring the amount of gas flowing through a particular pipe
+42273,gas_oil,an oil formed through distillation of petroleum of intermediate boiling range and viscosity
+42274,gas_oven,a cremation chamber fueled by gas
+42275,gas_oven,a domestic oven fueled by gas
+42276,gas_pressure,the pressure exerted by a gas
+42277,gas_pump gasoline_pump petrol_pump island_dispenser,a pump in a service station that draws gasoline from underground storage tanks
+42278,gas_range gas_stove gas_cooker,a range with gas rings and an oven for cooking with gas
+42279,gas_ring,gas burner consisting of a circular metal pipe with several small holes through which gas can escape to be burned
+42280,gas_shell,(military) bomb consisting of an explosive projectile filled with a toxic gas that is released when the bomb explodes
+42281,gas_system,facility (plant and equipment) for providing natural-gas service
+42282,gas_tank gasoline_tank petrol_tank,a tank for holding gasoline to supply a vehicle
+42283,gas_thermometer air_thermometer,thermometer that measures temperature by changes in the pressure of a gas kept at constant volume
+42284,gas_turbine,turbine that converts the chemical energy of a liquid fuel into mechanical energy by internal combustion; gaseous products of the fuel (which is burned in compressed air) are expanded through a turbine
+42285,gas_well,a well that yields or has yielded natural gas
+42286,gasbag windbag,a boring person who talks a great deal about uninteresting topics
+42287,gaseousness,having the consistency of a gas
+42288,gasfield,a region where there is natural gas underground
+42289,gasification,the process of changing into gas; "coal gas is produced by the gasification of coal"
+42290,gasket,seal consisting of a ring for packing pistons or sealing a pipe joint
+42291,gaskin,lower part of a horse's thigh between the hock and the stifle
+42292,gaslight,light yielded by the combustion of illuminating gas
+42293,gasman,someone employed by a gas company
+42294,gasmask respirator gas_helmet,a protective mask with a filter; protects the face and lungs against poisonous gases
+42295,gasohol,a gasoline substitute consisting of 90% gasoline and 10% grain alcohol from corn
+42296,gasoline gasolene gas petrol,a volatile flammable mixture of hydrocarbons (hexane and heptane and octane etc.) derived from petroleum; used mainly as a fuel in internal-combustion engines
+42297,gasoline_engine petrol_engine,an internal-combustion engine that burns gasoline; most automobiles are driven by gasoline engines
+42298,gasoline_gauge gasoline_gage gas_gauge gas_gage petrol_gauge petrol_gage,gauge that indicates the amount of gasoline left in the gasoline tank of a vehicle
+42299,gasoline_station gas_station filling_station petrol_station,a service station that sells gasoline
+42300,gasoline_tax,a tax on every gallon of gasoline sold
+42301,gasp pant,a short labored intake of breath with the mouth open; "she gave a gasp and fainted"
+42302,gassing,the process of interacting with gas
+42303,gassing,the deliberate act of poisoning some person or animal with gas
+42304,gasteromycete gastromycete,any fungus of the class Gasteromycetes
+42305,gastrectomy,surgical removal of all or part of the stomach
+42306,gastric_artery arteria_gastrica,the arteries that supply the walls of the stomach
+42307,gastric_digestion,the process of breaking down proteins by the action of the gastric juice in the stomach
+42308,gastric_juice gastric_acid,digestive secretions of the stomach glands consisting chiefly of hydrochloric acid and mucin and the enzymes pepsin and rennin and lipase
+42309,gastric_lavage,washing out the stomach with sterile water or a saltwater solution; removes blood or poisons; "when the doctor ordered a gastric lavage the hospital pumped out my stomach"
+42310,gastric_smear,alimentary tract smear of material obtained from the stomach
+42311,gastric_ulcer,a peptic ulcer of the stomach
+42312,gastric_vein vena_gastrica,one of several veins draining the stomach walls
+42313,gastrin,polypeptide hormone secreted by the mucous lining of the stomach; when peptides and amino acids are present in the small intestine the secretion of gastric acid is stimulated
+42314,gastritis,inflammation of the lining of the stomach; nausea and loss of appetite and discomfort after eating
+42315,gastrocnemius gastrocnemius_muscle,the muscle in the back part of the leg that forms the greater part of the calf; responsible for the plantar flexion of the foot
+42316,gastroenteritis stomach_flu intestinal_flu,inflammation of the stomach and intestines; can be caused by Salmonella enteritidis
+42317,gastroenterologist,a physician who specializes in diseases of the gastrointestinal tract
+42318,gastroenterology,the branch of medicine that studies the gastrointestinal tract and its diseases
+42319,gastroenterostomy,surgical creation of an opening between the stomach wall and the small intestines; performed when the normal opening has been eliminated
+42320,gastroesophageal_reflux esophageal_reflux oesophageal_reflux,reflux of stomach contents into the esophagus
+42321,gastrogavage,feeding a nutrient solution into the stomach through a tube through a surgically created opening
+42322,gastrointestinal_hormone GI_hormones,hormones that affect gastrointestinal functioning
+42323,gastromy,surgical incision into the stomach
+42324,gastronomy,a particular style of cookery (as of a region); "New England gastronomy"
+42325,gastronomy,the art and practice of choosing and preparing and eating good food
+42326,gastroomental_vein gastroepiploic_vein vena_gastroomentalis,one of two veins serving the great curvature of the stomach
+42327,gastropod univalve,a class of mollusks typically having a one-piece coiled shell and flattened muscular foot with a head bearing stalked eyes
+42328,gastroscope,a type of endoscope for visually examining the stomach
+42329,gastroscopy,visual examination of the stomach by means of a gastroscope inserted through the esophagus
+42330,gastrostomy,surgical creation of an opening through the abdominal wall into the stomach (as for gastrogavage)
+42331,gastrula,double-walled stage of the embryo resulting from invagination of the blastula; the outer layer of cells is the ectoderm and the inner layer differentiates into the mesoderm and endoderm
+42332,gastrulation,the process in which a gastrula develops from a blastula by the inward migration of cells
+42333,gasworks,the workplace where coal gas is manufactured
+42334,gat rod,a gangster's pistol
+42335,gate,total admission receipts at a sports event
+42336,gate,passageway (as in an air terminal) where passengers can embark or disembark
+42337,gate,a movable barrier in a fence or wall
+42338,gate logic_gate,a computer circuit with several inputs but only one output that can be activated by particular combinations of inputs
+42339,gateau,any of various rich and elaborate cakes
+42340,gatecrasher crasher unwelcome_guest,someone who gets in (to a party) without an invitation or without paying
+42341,gatehouse,a house built at a gateway; usually the gatekeeper's residence
+42342,gatekeeper,someone who controls access to something; "there are too many gatekeepers between the field officers and the chief"
+42343,gateleg_table,a drop-leaf table with the drop-leaves supported by hinged legs
+42344,gatepost,either of two posts that bound a gate
+42345,gateway,an entrance that can be closed by a gate
+42346,gateway_drug,a habit-forming drug that is not addictive but its use may lead to the use of other addictive drugs; "one college athlete recently called beer a gateway drug for young people"
+42347,gather gathering,sewing consisting of small folds or puckers made by pulling tight a thread in a line of stitching
+42348,gather gathering,the act of gathering something
+42349,gathered_skirt,a skirt whose fabric is drawn together around the waist
+42350,gatherer,a person who gathers; "they were a society of hunters and gatherers"
+42351,gathering assemblage,a group of persons together in one place
+42352,gathering_place,a favorite haunt where people gather
+42353,gaucho,a cowboy of the South American pampas
+42354,gaudery pomp,cheap or pretentious or vain display
+42355,gaudy,(Britain) a celebratory reunion feast or entertainment held a college
+42356,gauge,the distance between the rails of a railway or between the wheels of a train
+42357,gauge,the thickness of wire
+42358,gauge gage,a measuring instrument for measuring and indicating a quantity such as the thickness of wire or the amount of rain etc.
+42359,gauge standard_of_measurement,accepted or approved instance or example of a quantity or quality against which others are judged or measured or compared
+42360,gauge_boson,a particle that mediates the interaction of two elementary particles
+42361,gauntlet gantlet,to offer or accept a challenge; "threw down the gauntlet"; "took up the gauntlet"
+42362,gauntlet gantlet,a glove with long sleeve
+42363,gauntlet gantlet,a form of punishment in which a person is forced to run between two lines of men facing each other and armed with clubs or whips to beat the victim
+42364,gauntlet gantlet metal_glove,a glove of armored leather; protects the hand
+42365,gaur Bibos_gaurus,wild ox of mountainous areas of eastern India
+42366,gauss,a unit of magnetic flux density equal to 1 maxwell per square centimeter
+42367,gauze gauze_bandage,(medicine) bleached cotton cloth of plain weave used for bandages and dressings
+42368,gauze netting veiling,a net of transparent fabric with a loose open weave
+42369,gavel,a small mallet used by a presiding officer or a judge
+42370,gavial Gavialis_gangeticus,large fish-eating Indian crocodilian with a long slender snout
+42371,gaviiform_seabird,seabirds of the order Gaviiformes
+42372,gavotte,music composed in quadruple time for dancing the gavotte
+42373,gavotte,an old formal French dance in quadruple time
+42374,gawker,a spectator who stares stupidly without intelligent awareness
+42375,gawkiness ungainliness,the carriage of someone whose movements and posture are extremely ungainly and inelegant
+42376,gay_liberation_movement gay_lib,the movement aimed at liberating homosexuals from legal or social or economic oppression
+42377,gayal mithan Bibos_frontalis,ox of southeast Asia sometimes considered a domesticated breed of the gaur
+42378,gazania,any plant of the genus Gazania valued for their showy daisy flowers
+42379,gaze regard,a long fixed look; "he fixed his paternal gaze on me"
+42380,gazebo summerhouse,a small roofed building affording shade and rest
+42381,gazelle,small swift graceful antelope of Africa and Asia having lustrous eyes
+42382,gazette,a newspaper or official journal
+42383,gazetteer,a journalist who writes for a gazette
+42384,gazetteer,a geographical dictionary (as at the back of an atlas)
+42385,gazpacho,a soup made with chopped tomatoes and onions and cucumbers and peppers and herbs; served cold
+42386,gean mazzard mazzard_cherry,wild or seedling sweet cherry used as stock for grafting
+42387,gear gear_mechanism,a mechanism for transmitting motion for some specific purpose (as the steering gear of a vehicle)
+42388,gear gear_wheel geared_wheel cogwheel,a toothed wheel that engages another toothed mechanism in order to change the speed or direction of transmitted motion
+42389,gear paraphernalia appurtenance,equipment consisting of miscellaneous articles needed for a particular operation or sport etc.
+42390,gearbox gear_box gear_case,the shell (metal casing) in which a train of gears is sealed
+42391,gearing gear geartrain power_train train,wheelwork consisting of a connected set of rotating gears by which force is transmitted or motion or torque is changed; "the fool got his tie caught in the geartrain"
+42392,gearset,a set of gears
+42393,gearshift gearstick shifter gear_lever,a mechanical device for engaging and disengaging gears; "in Britain they call a gearshift a gear lever"
+42394,gebang_palm Corypha_utan Corypha_gebanga,large-leaved palm of Malay to Philippines and northern Australia; leaves used for thatching or plaiting into containers
+42395,gecko,any of various small chiefly tropical and usually nocturnal insectivorous terrestrial lizards typically with immovable eyelids; completely harmless
+42396,gee-gee,a word for horse used by children or in adult slang
+42397,geebung,any of numerous shrubs and small trees having hard narrow leaves and long-lasting yellow or white flowers followed by small edible but insipid fruits
+42398,geek,a carnival performer who does disgusting acts
+42399,geezer,a man who is (usually) old and/or eccentric
+42400,gefilte_fish fish_ball,well-seasoned balls of ground fish and eggs and crushed crumbs simmered in fish stock
+42401,geisha geisha_girl,a Japanese woman trained to entertain men with conversation and singing and dancing
+42402,gel colloidal_gel,a colloid in a more solid form than a sol
+42403,gel hair_gel,jellylike substance used in hair styling
+42404,gelatin gel,a thin translucent membrane used over stage lights for color effects
+42405,gelatin gelatine,a colorless water-soluble glutinous protein obtained from animal tissues such as bone and skin
+42406,gelatin jelly,an edible jelly (sweet or pungent) made with gelatin and used as a dessert or salad base or a coating for foods
+42407,gelatin_dessert,jellied dessert made with gelatin and fruit juice or water
+42408,gelatinousness glutinosity glutinousness,the property of having a viscosity like jelly
+42409,gelding,castrated male horse
+42410,gelechiid gelechiid_moth,small slender-winged moths whose larvae are agricultural pests
+42411,gelignite gelly,a type of dynamite in which the nitroglycerin is absorbed in a base of wood pulp and sodium or potassium nitrate
+42412,gem gemstone stone,a crystalline rock that can be cut and polished for jewelry; "he had the gem set in a ring for his wife"; "she had jewels made of all the rarest stones"
+42413,gem treasure,art highly prized for its beauty or perfection
+42414,gem_cutter,one who cuts and shapes precious stones
+42415,gemfibrozil Lopid,medication (trade name Lopid) used to lower the levels of triglyceride in the blood
+42416,geminate,a doubled or long consonant; "the `n' in `thinness' is a geminate"
+42417,gemination,the doubling of a word or phrase (as for rhetorical effect)
+42418,gemma,small asexual reproductive structure in e.g. liverworts and mosses that detaches from the parent and develops into a new individual
+42419,gemmule,the physically discrete element that Darwin proposed as responsible for heredity
+42420,gempylid,snake mackerels; elongated marine fishes with oily flesh; resembles mackerels; found worldwide
+42421,gemsbok gemsbuck Oryx_gazella,large South African oryx with a broad black band along its flanks
+42422,gen,informal term for information; "give me the gen on your new line of computers"
+42423,gendarme,a French policeman
+42424,gendarmerie gendarmery,French police force; a group of gendarmes or gendarmes collectively
+42425,gender grammatical_gender,a grammatical category in inflected languages governing the agreement between nouns and pronouns and adjectives; in some languages it is quite arbitrary but in Indo-European languages it is usually based on sex or animateness
+42426,gender_agreement,agreement in grammatical gender between words in the same construction
+42427,gender_identity,your identity as it is experienced with regard to your individuality as male or female; awareness normally begin in infancy and is reinforced during adolescence
+42428,gender_role,the overt expression of attitudes that indicate to others the degree of your maleness or femaleness; "your gender role is the public expression of your gender identity"
+42429,gene cistron factor,(genetics) a segment of DNA that is involved in producing a polypeptide chain; it can include regions preceding and following the coding DNA as well as introns between the exons; it is considered a unit of heredity; "genes were formerly called factors"
+42430,gene_chip DNA_chip,a microchip that holds DNA probes that form half of the DNA double helix and can recognize DNA from samples being tested
+42431,gene_expression,conversion of the information encoded in a gene first into messenger RNA and then to a protein
+42432,genealogist,an expert in genealogy
+42433,genealogy,the study or investigation of ancestry and family history
+42434,genealogy family_tree,successive generations of kin
+42435,general,a fact about the whole (as opposed to particular); "he discussed the general but neglected the particular"
+42436,general full_general,a general officer of the highest rank
+42437,general superior_general,the head of a religious order or congregation
+42438,general-purpose_bomb GP_bomb,a large bomb (500 to 2,000 pounds that is 50% explosive) whose explosion creates a blast and whose metal casing creates some fragmentation effect
+42439,general_anesthesia general_anaesthesia,a state of total unconsciousness resulting from anesthetic drugs (as for a major surgical operation)
+42440,general_anesthetic general_anaesthetic,an anesthetic that anesthetizes the entire body and causes loss of consciousness
+42441,general_delivery poste_restante,the part of a post office that handles mail for persons who call for it
+42442,general_election,a national or state election; candidates are chosen in all constituencies
+42443,general_ledger,the ledger that contains all of the financial accounts of a business; contains offsetting debit and credit accounts (including control accounts)
+42444,general_lien,a lien on all the property owned by a debtor and not just a specific property
+42445,general_manager,the highest ranking manager
+42446,general_officer,officers in the Army or Air Force or Marines above the rank of colonel
+42447,general_practitioner GP,a physician who is not a specialist but treats all illnesses
+42448,general_relativity general_theory_of_relativity general_relativity_theory Einstein's_general_theory_of_relativity,a generalization of special relativity to include gravity (based on the principle of equivalence)
+42449,general_staff,military officers assigned to assist a senior officer in planning military policy
+42450,general_verdict,an ordinary verdict declaring which party prevails without any special findings of fact
+42451,generality,the quality of being general or widespread or having general applicability
+42452,generalization generalisation generality,an idea or conclusion having general application; "he spoke in broad generalities"
+42453,generalization generalisation induction inductive_reasoning,reasoning from detailed facts to general principles
+42454,generalization generalisation stimulus_generalization stimulus_generalisation,(psychology) transfer of a response learned to one stimulus to a similar stimulus
+42455,generalized_anxiety_disorder GAD anxiety_reaction,an anxiety disorder characterized by chronic free-floating anxiety and such symptoms as tension or sweating or trembling or lightheadedness or irritability etc that has lasted for more than six months
+42456,generally_accepted_accounting_principles GAAP,a collection of rules and procedures and conventions that define accepted accounting practice; includes broad guidelines as well as detailed procedures
+42457,generalship,the leadership ability of a military general
+42458,generalship generalcy,the office and authority of a general
+42459,generation,a stage of technological development or innovation; "the third generation of computers"
+42460,generation,the normal time between successive generations; "they had to wait a generation for that prejudice to fade"
+42461,generation,group of genetically related organisms constituting a single step in the line of descent
+42462,generation,the production of heat or electricity; "dams were built for the generation of electricity"
+42463,generation multiplication propagation,the act of producing offspring or multiplying by such production
+42464,generation_X gen_X,the generation following the baby boom (especially Americans and Canadians born in the 1960s and 1970s)
+42465,generation_gap,a difference between the views of young people and their parents
+42466,generative_grammar,(linguistics) a type of grammar that describes syntax in terms of a set of logical rules that can generate all and only the infinite number of grammatical sentences in a language and assigns them all the correct structural description
+42467,generator,an electronic device for producing a signal voltage
+42468,generator,an apparatus that produces a vapor or gas
+42469,generator,engine that converts mechanical energy into electrical energy by electromagnetic induction
+42470,generator source author,someone who originates or causes or initiates something; "he was the generator of several complaints"
+42471,generic,any product that can be sold without a brand name
+42472,generic generic_wine,wine that does not meet the minimum qualifications and standards for use of a designation by appellation of origin (where the grapes are grown) or by varietal content; may only be labeled by proprietary (made-up) name, by general color (such as `vin rouge', `vino rosso', `rotwein', `red wine', etc.), or by general class (as `vin ordinaire', `vin de table', `vino da tavola', `tafelwein', `table wine', etc.)
+42473,generic_drug,when the patent protection for a brand-name drug expires generic versions of the drug can be offered for sale if the FDA agrees; "generic drugs are usually cheaper than brand-name drugs"
+42474,generic_noun,a noun that does not specify either masculine or feminine gender
+42475,generosity generousness,the trait of being willing to give your money or time
+42476,generosity unselfishness,acting generously
+42477,genesis generation,a coming into being
+42478,genet Genetta_genetta,agile Old World viverrine having a spotted coat and long ringed tail
+42479,genetic_code,the ordering of nucleotides in DNA molecules that carries the genetic information in living cells
+42480,genetic_counseling,guidance for prospective parents on the likelihood of genetic disorders in their future children
+42481,genetic_disease genetic_disorder genetic_abnormality genetic_defect congenital_disease inherited_disease inherited_disorder hereditary_disease hereditary_condition,a disease or disorder that is inherited genetically
+42482,genetic_engineering gene-splicing recombinant_DNA_technology,the technology of preparing recombinant DNA in vitro by cutting up DNA molecules and splicing together fragments from more than one organism
+42483,genetic_map,graphical representation of the arrangement of genes on a chromosome
+42484,genetic_marker,a specific gene that produces a recognizable trait and can be used in family or population studies
+42485,genetic_profiling genetic_fingerprinting,the procedure of analyzing the DNA in samples of a person's body tissue or body fluid for the purpose of identification
+42486,genetic_screening,analyzing a group of people to determine genetic susceptibility to a particular disease; "genetic screening of infants for phenylketonuria"
+42487,geneticism,the belief that all human characteristics are determined genetically
+42488,geneticist,a biologist who specializes in genetics
+42489,genetics genetic_science,the branch of biology that studies heredity and variation in organisms
+42490,geneva Holland_gin Hollands,gin made in the Netherlands
+42491,genicular_vein vena_genus,veins that drain blood from structures around the knee; empty into the popliteal vein
+42492,geniculate_body,one of four small oval masses that protrude slightly from the underside of the thalamus and function as synaptic centers on the way to the cerebral cortex
+42493,genie jinni jinnee djinni djinny djinn,(Islam) an invisible spirit mentioned in the Koran and believed by Muslims to inhabit the earth and influence mankind by appearing in the form of humans or animals
+42494,genip Spanish_lime,round one-inch Caribbean fruit with green leathery skin and sweet juicy translucent pulp; eaten like grapes
+42495,genipa,any tree of the genus Genipa bearing yellow flowers and edible fruit with a thick rind
+42496,genipap genipap_fruit,a succulent orange-sized tropical fruit with a thick rind
+42497,genipap_fruit jagua marmalade_box Genipa_Americana,tree of the West Indies and northern South America bearing succulent edible orange-sized fruit
+42498,genital_herpes herpes_genitalis,an infection caused by herpes simplex virus type 2 (HSV-2) that is usually transmitted by sexual contact; marked by recurrent attacks of painful eruptions on the skin and mucous membranes of the genital area
+42499,genital_personality,(psychoanalysis) the mature personality which is not dominated by infantile pleasure drives
+42500,genital_stage genital_phase,(psychoanalysis) the fifth sexual and social stage in a person's development occurring during adolescence; interest focuses on sexual activity
+42501,genital_torture,blunt or penetrating trauma or rape (vaginal or anal)
+42502,genital_wart venereal_wart condyloma_acuminatum verruca_acuminata,a small benign wart on or around the genitals and anus
+42503,genitalia genital_organ genitals private_parts privates crotch,external sex organ
+42504,genitive genitive_case possessive possessive_case,the case expressing ownership
+42505,genitor,a natural father or mother
+42506,genius mastermind brain brainiac Einstein,someone who has exceptional intellectual ability and originality; "Mozart was a child genius"; "he's smart but he's no Einstein"
+42507,genius wizardry,exceptional creative ability
+42508,genius_loci,the special atmosphere of a place
+42509,genius_loci,the guardian spirit of a place
+42510,genlisea,rootless carnivorous swamp plants having at the base of the stem a rosette of foliage and leaves consisting of slender tubes swollen in the middle to form traps; each tube passes into two long spirally twisted arms with stiff hairs
+42511,genocide race_murder racial_extermination,systematic killing of a racial or cultural group
+42512,genoise,rich and delicate Italian sponge cake
+42513,genome,the ordering of genes in a haploid set of chromosomes of a particular organism; the full DNA sequence of an organism; "the human genome contains approximately three billion chemical base pairs"
+42514,genomics,the branch of genetics that studies organisms in terms of their genomes (their full DNA sequences)
+42515,genotype,a group of organisms sharing a specific genetic constitution
+42516,genotype genetic_constitution,the particular alleles at specified loci present in an organism
+42517,genre,a kind of literary or artistic work
+42518,genre,a class of art (or artistic endeavor) having a characteristic form or technique
+42519,genre_painter,a painter of scenes from everyday life
+42520,genre_painting,a genre depicting everyday life
+42521,gent,informal abbreviation of `gentleman'
+42522,gentamicin Garamycin,an antibiotic (trade name Garamycin) that is derived from an actinomycete; used in treating infections of the urinary tract
+42523,gentian,any of various plants of the family Gentianaceae especially the genera Gentiana and Gentianella and Gentianopsis
+42524,gentian_violet crystal_violet,a green crystal (violet in water) used as a dye or stain or bactericide or fungicide or anthelmintic or burn treatment
+42525,gentianella Gentiana_acaulis,low-growing alpine plant cultivated for its dark glossy green leaves in basal rosettes and showy solitary bell-shaped blue flowers
+42526,gentile,a person who is not a member of one's own religion; used in this sense by Mormons and Hindus
+42527,gentile,a Christian; "Christians refer to themselves as gentiles"
+42528,gentile non-Jew goy,a Christian as contrasted with a Jew
+42529,gentle_breeze,wind moving 8-12 knots; 3 on the Beaufort scale
+42530,gentlefolk,people of good family and breeding and high social status
+42531,gentleman,a man of refinement
+42532,gentleman-at-arms,one of 40 gentlemen who attend the British sovereign on state occasions
+42533,gentlemen's_agreement,a personal agreement based on honor and not legally binding
+42534,gentleness softness mildness,acting in a manner that is gentle and mild and even-tempered; "his fingers have learned gentleness"; "suddenly her gigantic power melted into softness for the baby"; "even in the pulpit there are moments when mildness of manner is not enough"
+42535,gentrification,the restoration of run-down urban areas by the middle class (resulting in the displacement of low-income residents)
+42536,gentry aristocracy,the most powerful members of a society
+42537,genuflection genuflexion,the act of bending the knees in worship or reverence
+42538,genuineness,the state of being genuine
+42539,genus,(biology) taxonomic group containing one or more species
+42540,genus,a general kind of something; "ignore the genus communism"
+42541,genus_Abelia,chiefly east Asian shrubs
+42542,genus_Acacia,large genus of shrubs and trees and some woody vines of Central and South America, Africa, Australia and Polynesia: wattle; mimosa
+42543,genus_Acanthus,bear's breeches
+42544,genus_Achillea,perennial often aromatic and sometimes mat-forming herbs of north temperate regions: yarrow; milfoil
+42545,genus_Achimenes,genus of tropical perennial American herbs
+42546,genus_Actinomyces,type genus of the family Actinomycetaceae
+42547,genus_Addax,genus of antelopes of northern African deserts
+42548,genus_Aegyptopithecus,a genus of Hominoidea
+42549,genus_Aepyornis,type genus of the Aepyornidae: elephant birds
+42550,genus_Aerides,epiphytic orchids of tropical Asia having stiff leaves and fragrant white flowers in arching racemes
+42551,genus_Aeschynanthus,large genus of East Indian ornamental woody epiphytic plants
+42552,genus_Afropavo,Congo peafowl
+42553,genus_Agama,type genus of the Agamidae
+42554,genus_Agapanthus,small genus of South African evergreen or deciduous plants; sometimes placed in the family or subfamily Alliaceae
+42555,genus_Agave,type genus of the Agavaceae; in some classifications considered a genus of Amaryllidaceae
+42556,genus_Ageratum,genus of tropical American herbs grown for their flowers
+42557,genus_Agrimonia,genus of herbs found chiefly in north temperate regions having pinnate leaves and yellow flowers followed by bristly fruit
+42558,genus_Ailanthus,small genus of east Asian and Chinese trees with odd-pinnate leaves and long twisted samaras
+42559,genus_Albizia genus_Albizzia,large genus of unarmed trees and shrubs of Old World tropics
+42560,genus_Albuca,genus of bulbous plants of South Africa; sometimes placed in subfamily Hyacinthaceae
+42561,genus_Allamanda,genus of tropical American woody vines
+42562,genus_Alligator,type genus of the Alligatoridae
+42563,genus_Allosaurus genus_Antrodemus,carnivorous dinosaur of North America; late Jurassic
+42564,genus_Alocasia,tropical Asiatic herbs similar to Colocasia but distinguished by a large sterile spadix
+42565,genus_Aloe,large genus of chiefly African liliaceous plants; in some systems placed in family Aloeaceae
+42566,genus_Alstroemeria,genus of showy South American herbs with leafy stems; sometimes placed in family Alstroemeriaceae or in family Amaryllidaceae
+42567,genus_Althaea,hollyhocks; in some classification systems synonymous with genus Alcea
+42568,genus_Amaryllis,type genus of the Amaryllidaceae; bulbous flowering plants of southern Africa
+42569,genus_Ambrosia,comprising the ragweeds; in some classification considered the type genus of a separate family Ambrosiaceae
+42570,genus_Ammobium,small genus of Australian herbs grown for their flowers
+42571,genus_Amoeba,protozoan inhabiting moist soils or bottom vegetation in fresh or salt water
+42572,genus_Amorpha,American herbs or shrubs usually growing in dry sunny habitats on prairies and hillsides
+42573,genus_Amorphophallus,genus of large tropical east Asian cormous aroids: devil's tongue; snake palm
+42574,genus_Amphioxus,type genus of the Amphioxidae
+42575,genus_Amphiuma,congo snakes
+42576,genus_Anatotitan,genus of large duck-billed dinosaurs; late Cretaceous
+42577,genus_Anchusa,rough and hairy Old World herbs
+42578,genus_Andrena,a solitary burrowing short-tongued bee
+42579,genus_Andromeda,low-growing shrubs of northern regions of northern hemisphere
+42580,genus_Andryala,a genus of hardy hairy latex-producing perennials of Mediterranean area
+42581,genus_Anemone,perennial herbs with tuberous roots and beautiful flowers; of north and south temperate regions
+42582,genus_Angelica,biennial or perennial herbs of the northern hemisphere; have a taproot
+42583,genus_Angiopteris,one species: tree fern
+42584,genus_Angrecum Angraecum genus_Angraecum,genus of tropical Old World epiphytic orchids with showy flowers sometimes grotesque
+42585,genus_Anhinga,type genus of the Anhingidae
+42586,genus_Ankylosaurus,armored herbivorous dinosaurs of the Cretaceous
+42587,genus_Anoa,a genus of mammals of the family Bovidae
+42588,genus_Anomalops,type genus of the family Anomalopidae
+42589,genus_Anomalopteryx,small moas
+42590,genus_Anthurium,large genus of often epiphytic evergreen tropical American plants often cultivated as houseplants
+42591,genus_Apatosaurus genus_Brontosaurus,large quadrupedal herbivorous dinosaurs with very long neck and tail; late Jurassic
+42592,genus_Appendicularia,a genus of chordates in the class Larvacea
+42593,genus_Apteryx,type genus of the Apterygidae: kiwis
+42594,genus_Aquilegia,columbine
+42595,genus_Aralia,type genus of Araliaceae; large widely distributed genus of shrubs and trees and vines: spikenard; Hercules'-club
+42596,genus_Araucaria,a genus of the araucaria family
+42597,genus_Arbutus,large evergreen shrubs and trees of southern Europe and western North America: strawberry tree; madrona
+42598,genus_Arcella,type genus of the Arcellidae
+42599,genus_Archaeopteryx genus_Archeopteryx,a genus of fossil birds
+42600,genus_Archaeornis,a genus of fossil bird
+42601,genus_Architeuthis,giant squid
+42602,genus_Areca,a monocotyledonous genus of palm trees
+42603,genus_Arethusa,genus of bog orchids of North America and Japan
+42604,genus_Argemone,prickly poppies
+42605,genus_Argentinosaurus,enormous dinosaur of the middle Cretaceous found in Argentina
+42606,genus_Arnica,large genus of herbs of north temperate and Arctic regions
+42607,genus_Artemisia,usually aromatic shrubs or herbs of north temperate regions and South Africa and western South America: wormwood; sagebrush; mugwort; tarragon
+42608,genus_Arum,type genus of the Araceae: tuberous perennial herbs of Europe and Asia with usually heart-shaped leaves
+42609,genus_Asparagus,large genus of Old World perennial herbs with erect or spreading or climbing stems and small scalelike leaves and inconspicuous flowers; sometimes placed in family Asparagaceae
+42610,genus_Aspidistra,genus of eastern Asiatic herbs; sometimes placed in the family Convallariaceae
+42611,genus_Aster,large genus of herbs widely cultivated for their daisylike flowers
+42612,genus_Astilbe,chiefly Asiatic perennials: spirea
+42613,genus_Astrantia,a genus of Eurasian herbs of the family Umbelliferae with aromatic roots and palmate leaves and showy flowers
+42614,genus_Australopithecus Australopithecus,extinct genus of African hominid
+42615,genus_Ayapana,genus of tropical American herbs sometimes included in genus Eupatorium
+42616,genus_Babesia genus_Piroplasma,type genus of the family Babesiidae
+42617,genus_Bacillus,type genus of the Bacillaceae; includes many saprophytes important in decay of organic matter and a number of parasites
+42618,genus_Banksia,important genus of Australian evergreen shrubs or trees with alternate leathery leaves and yellowish flowers
+42619,genus_Barosaurus,huge quadrupedal herbivorous dinosaur; late Jurassic
+42620,genus_Begonia,large genus of tropical succulent plants widely cultivated
+42621,genus_Bergenia,genus of perennial spring-blooming rhizomatous herbs with thick evergreen leaves; eastern Asia
+42622,genus_Beroe,coextensive with the class Nuda
+42623,genus_Bison,sometimes considered a subgenus of genus Bos: American buffalo
+42624,genus_Bletia,genus of tropical American terrestrial orchids with large purple or pink flowers
+42625,genus_Bocconia,tropical American trees or shrubs closely related to genus Macleaya
+42626,genus_Borrelia,small flexible parasitic spirochetes having three to five wavy spirals
+42627,genus_Bougainvillea Bougainvillaea genus_Bougainvillaea,ornamental tropical woody vines
+42628,genus_Brassavola,genus of tropical American epiphytic or lithophytic rhizomatous orchids
+42629,genus_Brodiaea,genus of western United States bulbous plants with basal leaves and variously colored flowers; sometimes placed in family Alliaceae
+42630,genus_Browallia,small genus of tropical South American annuals
+42631,genus_Bryanthus,a genus allied to and once included in genus Phyllodoce
+42632,genus_Bryonia,climbing perennial herbs: bryony
+42633,genus_Buckleya,small genus of Asiatic and American parasitic shrubs
+42634,genus_Buddleia,shrubs or trees of warm regions
+42635,genus_Bufo,type genus of the Bufonidae; common toads of New and Old Worlds
+42636,genus_Cabassous,solely the tatouay
+42637,genus_Caiman,caimans
+42638,genus_Caladenia,terrestrial orchids of Australia to New Caledonia
+42639,genus_Caladium,small genus of tropical South American tuberous perennials with large variously colored leaves
+42640,genus_Calamus,distinctive often spiny-stemmed palms found as climbers in tropical and subtropical forest
+42641,genus_Calanthe,large and widely distributed genus of terrestrial orchids
+42642,genus_Calceolaria,large genus of tropical American herbs and shrubs with showy cymose flowers
+42643,genus_Calendula,marigold
+42644,genus_Calliandra,genus of pinnate-leaved shrubs and small trees of tropical and subtropical North and South America and India and West Africa
+42645,genus_Calosoma,genus of large predaceous ground beetles that feed on injurious caterpillars
+42646,genus_Calypso,one species found throughout much of northern North America and Eurasia
+42647,genus_Camellia,tropical Asiatic evergreen shrubs or small trees
+42648,genus_Campanula,large genus of herbs grown for their blossoms: bellflowers
+42649,genus_Candida,a genus of yeastlike imperfect fungi; sometimes included in genus Monilia of the family Moniliaceae
+42650,genus_Canella,one species
+42651,genus_Canna,type and sole genus of the Cannaceae: perennial lily-like herbs of New World tropics
+42652,genus_Cannabis,hemp: genus of coarse annuals native to central Asia and widely naturalized in north temperate regions; in some classifications included in the family Moraceae
+42653,genus_Capsicum Capsicum,chiefly tropical perennial shrubby plants having many-seeded fruits: sweet and hot peppers
+42654,genus_Caragana,large genus of Asiatic deciduous shrubs or small trees
+42655,genus_Carissa,Old World genus of tropical evergreen usually spiny shrubs
+42656,genus_Carpenteria,one species; sometimes placed in family Saxifragaceae
+42657,genus_Cassia Cassia,some genus Cassia species often classified as members of the genus Senna or genus Chamaecrista
+42658,genus_Casuarina,genus of trees and shrubs widely naturalized in southern United States and West Indies; coextensive with the family Casuarinaceae and order Casuarinales
+42659,genus_Catalpa,a dicotyledonous genus of plants belonging to the family Bignoniaceae; has large flowers (white or mottled) and long terete pods
+42660,genus_Catananche,genus of Mediterranean herbs: cupid's dart
+42661,genus_Cathaya,one species; related to Pseudotsuga and Larix
+42662,genus_Cattleya,large and highly valued genus of beautiful tropical American epiphytic or lithophytic orchids; the typical orchids; known in many varieties
+42663,genus_Cerastes Aspis genus_Aspis,horned vipers
+42664,genus_Ceratodus,type genus of the Ceratodontidae: extinct genus of lungfishes
+42665,genus_Ceratosaurus,primitive saurischian carnivorous dinosaurs
+42666,genus_Ceratozamia,small genus of Mexican cycads; sometimes classified in family Cycadaceae
+42667,genus_Chaenactis,genus of flowering herbs of western United States
+42668,genus_Chaetodon,type genus of the Chaetodontidae
+42669,genus_Chimaera,type genus of the Chimaeridae
+42670,genus_Chinchilla,type genus of the Chinchillidae
+42671,genus_Chiton,a genus of Polyplacophora
+42672,genus_Chlamydia,type genus of the family Chlamydiaceae: disease-causing parasites
+42673,genus_Chlorella,nonmotile unicellular green algae potentially important as source of high-grade protein and B-complex vitamins
+42674,genus_Chlorophyllum,a genus of fungus belonging to the family Lepiotaceae
+42675,genus_Christella,medium to large terrestrial ferns of tropical forests of Old World to Americas
+42676,genus_Chrysanthemum,in some classifications many plants usually assigned to the genus Chrysanthemum have been divided among other genera: e.g. Argyranthemum; Dendranthema; Leucanthemum; Tanacetum
+42677,genus_Chunga,a genus of Cariamidae
+42678,genus_Cicada,type genus of the Cicadidae: cicadas
+42679,genus_Cinchona genus_Chinchona,large genus of trees of Andean region of South America having medicinal bark
+42680,genus_Citrus,orange; lemon; lime; etc.
+42681,genus_Clematis,large genus of deciduous or evergreen woody vines or erect herbs
+42682,genus_Cleome Cleome,tropical and subtropical annual or perennial herbs or low shrubs
+42683,genus_Clianthus,genus of semi-prostrate Australasian shrubs or vines
+42684,genus_Clintonia,sometimes placed in family Convallariaceae
+42685,genus_Clostridium,anaerobic or micro-aerophilic rod-shaped or spindle-shaped saprophytes; nearly cosmopolitan in soil, animal intestines, and dung
+42686,genus_Clusia,tropical American aromatic trees or shrubs; often epiphytic; some stranglers
+42687,genus_Coccus,type genus of the Coccidae
+42688,genus_Coelogyne,large diverse genus of tropical Asiatic epiphytic orchids
+42689,genus_Coelophysis,late Triassic carnivorous saurischian dinosaurs
+42690,genus_Coleus,genus of Old World tropical plants cultivated for their variegated leaves; various plants sometimes placed in genera Plectranthus or Solenostemon
+42691,genus_Colobus,a genus of Cercopithecidae
+42692,genus_Columnea,genus of tropical American subshrubs and lianas
+42693,genus_Combretum,type genus of the Combretaceae: tropical and subtropical small shrubs and trees
+42694,genus_Commelina,type genus of the Commelinaceae; large genus of herbs of branching or creeping habit: day flower; widow's tears
+42695,genus_Compsognathus,a reptile genus of Theropoda
+42696,genus_Convolvulus,genus of mostly climbing or scrambling herbs and shrubs: bindweed
+42697,genus_Coreopsis,genus of American plants widely cultivated for their flowers
+42698,genus_Coronilla,genus of Old World shrubs and herbs
+42699,genus_Corozo,a monocotyledonous genus of tropical American palm trees
+42700,genus_Corynebacterium,the type genus of the family Corynebacteriaceae which is widely distributed in nature; the best known are parasites and pathogens of humans and domestic animals
+42701,genus_Coryphantha,mainly globose cacti of southwestern United States and Mexico covered with many nodules; superficially resembling and formerly included in genus Mammillaria
+42702,genus_Corythosaurus,genus of duck-billed dinosaurs of late Cretaceous
+42703,genus_Coscoroba,a genus of Anatidae
+42704,genus_Cosmos,genus of tropical American plants cultivated for their colorful flowers
+42705,genus_Costia,a genus of flagellate protoctist
+42706,genus_Cotinga,type genus of the Cotingidae: cotingas
+42707,genus_Cotoneaster,genus of deciduous or evergreen Old World shrubs widely cultivated
+42708,genus_Crocus,a monocotyledonous genus of the family Iridaceae
+42709,genus_Crotalaria,large genus of herbs with simple leaves and racemes of yellow flowers; mainly of tropical Africa
+42710,genus_Croton,tropical shrubs and herbs; source of croton oil
+42711,genus_Cryptocoryne,water trumpet; aquatic herbs having broad leaves and long slender spathes; often used as aquarium plants
+42712,genus_Cyclamen,genus of widely cultivated flowering Eurasian herbs with centrally depressed rounded tubers and rounded heart-shaped leaves
+42713,genus_Cyclops,copepod water fleas
+42714,genus_Cymbidium,genus of tropical epiphytic or terrestrial Old World orchids; one of the most popular orchid genera
+42715,genus_Cynancum,genus of perennial tropical African lianas
+42716,genus_Cyrilla,one species: trees and shrubs having flowers with acute or twisted petals and wingless fruit
+42717,genus_Dahlia,genus of perennial tuberous plants of Mexico and Central America
+42718,genus_Daphne,usually evergreen Eurasian shrubs
+42719,genus_Daphnia,water fleas
+42720,genus_Davallia,Old World tropical fern; in some classification systems placed directly in family Polypodiaceae
+42721,genus_Deinocheirus,a reptile genus of Ornithomimida
+42722,genus_Deinonychus,advanced bipedal carnivorous dinosaur
+42723,genus_Delphinium,large genus of chiefly perennial erect branching herbs of north temperate regions some poisonous
+42724,genus_Dendrobium,large genus and variable genus of chiefly epiphytic or lithophytic orchids of tropical and subtropical Asia and Australasia
+42725,genus_Derris,genus of Old World tropical shrubs and woody vines
+42726,genus_Deutzia,genus of ornamental mostly deciduous shrubs native to Asia and Central America; widespread in cultivation; sometimes placed in family Saxifragaceae
+42727,genus_Diapensia,type genus of Diapensiaceae
+42728,genus_Diapheromera,a genus of Phasmidae
+42729,genus_Dicamptodon,type genus of the Dicamptodontidae
+42730,genus_Dichondra,genus of chiefly tropical prostrate perennial herbs with creeping stems that root at the nodes
+42731,genus_Dictostylium,genus of slime molds that grow on dung and decaying vegetation
+42732,genus_Difflugia,genus of protozoans related to ameba
+42733,genus_Digitalis,genus of Eurasian herbs having alternate leaves and racemes of showy bell-shaped flowers
+42734,genus_Dillenia,East Indian and Australian shrubs and trees having panicles of large white or yellow flowers
+42735,genus_Dimetrodon,a reptile genus of Pelycosauria
+42736,genus_Diomedea,type of the Diomedeidae
+42737,genus_Dioon,small genus of arborescent cycads of Mexico and Central America; sometimes classified in family Cycadaceae
+42738,genus_Diplococcus,a genus of bacteria
+42739,genus_Diplodocus,a reptile genus of the suborder Sauropoda
+42740,genus_Disa,genus of showy tropical African terrestrial orchids
+42741,genus_Discina,a genus of fungi of the family Helvellaceae with a cup-shaped or saucer-shaped fruiting body and ornamented spores
+42742,genus_Doliolum,type genus of the Doliolidae
+42743,genus_Dombeya,genus of African shrubs or small trees
+42744,genus_Doodia Doodia,in some classification systems placed in family Polypodiaceae; small terrestrial colony-forming ferns of Australasia
+42745,genus_Draba,large genus of low tufted herbs of temperate and Arctic regions
+42746,genus_Dracaena,Old World tropical plants with branches ending in tufts of sword-shaped leaves; in some classifications considered a genus of Liliaceae
+42747,genus_Dracontium,small genus of tropical American cormous herbs
+42748,genus_Drosophila,a genus of Drosophilidae
+42749,genus_Drypis,one species
+42750,genus_Dugong,type genus of the Dugongidae comprising only the dugongs
+42751,genus_Echinocactus,globular or cylindrical cacti; southwestern United States to Brazil
+42752,genus_Echinococcus,tapeworms
+42753,genus_Edaphosaurus,type genus of the Edaphosauridae
+42754,genus_Edmontosaurus,duck-billed dinosaurs of Canada
+42755,genus_Eimeria,type genus of the family Eimeriidae; includes serious pathogens
+42756,genus_Elsholtzia,genus of Asiatic and African aromatic herbs
+42757,genus_Encephalartos,genus of arborescent African cycads; sometimes classified in family Cycadaceae
+42758,genus_Engelmannia,one species: North American herbs that resemble sunflowers
+42759,genus_Eoraptor,primitive theropod found in Argentina; early Triassic
+42760,genus_Epacris,type genus of the Epacridaceae: Australian heath
+42761,genus_Ephedra,type and sole genus of Ephedraceae: tropical and subtropical evergreen shrubby or creeping plants native to dry and inhospitable regions
+42762,genus_Epiphyllum,small genus of tropical American (mainly Central America) cacti
+42763,genus_Episcia,genus of tropical American herbs having soft hairy foliage
+42764,genus_Eptatretus,a genus of fossil fish of the family Myxinidae
+42765,genus_Erechtites,coarse herbs with whitish discoid flower heads and silky pappus
+42766,genus_Erica,large genus of low much-branched woody evergreens ranging from prostrate subshrubs to trees: true heaths
+42767,genus_Eriogonum,North American herbs of the buckwheat family
+42768,genus_Erwinia,a genus of bacteria
+42769,genus_Erythrina,genus of attractive tropical shrubs or trees with usually red flowers
+42770,genus_Escherichia,a genus of bacteria
+42771,genus_Eucalyptus,tall trees native to the Australian region; source of timber and medicinal oils from the aromatic leaves
+42772,genus_Euglena,type genus of the family Euglenaceae: green algae with a single flagellum
+42773,genus_Feijoa,small South American shrubs or trees
+42774,genus_Filago,genus of small woolly herbs
+42775,genus_Forestiera,genus of often spiny American shrubs and trees
+42776,genus_Forsythia,forsythia
+42777,genus_Fothergilla Fothergilla,small genus of deciduous shrubs of the southeastern United States
+42778,genus_Freesia,cormous perennial herbs; native to South Africa
+42779,genus_Fuchsia,large genus of decorative tropical shrubs with pendulous tetramerous flowers
+42780,genus_Fucus,type genus of the family Fucaceae: cartilaginous brown algae
+42781,genus_Fusarium,a form genus of mostly plant parasites some of which cause dry rot; in humans a species can cause inflammation of cornea leading to blindness
+42782,genus_Gaillardia,genus of western American hairy herbs with showy flowers
+42783,genus_Galago,bush babies
+42784,genus_Galax,evergreen herbs of southeastern United States
+42785,genus_Galictis,alternative name for the genus Grison
+42786,genus_Gardenia,large genus of attractive Old World tropical shrubs and small trees
+42787,genus_Gastrolobium,genus of Australian evergreen shrubs poisonous to livestock: poison bush
+42788,genus_Gazania,genus of tomentose tropical African herbs with milky sap
+42789,genus_Genipa,tropical American evergreen trees or shrubs bearing yellow flowers and succulent edible fruit with a thick rind
+42790,genus_Genlisea,small genus of carnivorous plants of tropical African swamps
+42791,genus_Geranium,genus of mostly North American geraniums: cranesbills
+42792,genus_Gerardia,genus of annual or perennial herbs with showy pink or purple or yellow flowers; plants often assigned to genera Aureolaria or Agalinis
+42793,genus_Gesneria,large genus of tropical American herbs having showy tubular flowers
+42794,genus_Giardia,flagellates parasitic in intestines of vertebrates
+42795,genus_Ginkgo,sole surviving genus of the Ginkgoaceae
+42796,genus_Gladiolus,gladiolas
+42797,genus_Gliricidia,small genus of low-branching profusely flowering trees of tropical America
+42798,genus_Globigerina,type genus of the family Globigerinidae
+42799,genus_Gloriosa,sometimes placed in family Colchicaceae; one species: glory lily
+42800,genus_Glossina,type genus of the Glossinidae: tsetse flies
+42801,genus_Gloxinia,small genus of tropical American herbs with leafy stems and axillary flowers
+42802,genus_Gnetum,type genus of the Gnetaceae; small trees or shrubs usually with climbing jointed stems and terminal spikes of flowers with orange-red seeds clustered in rough cones
+42803,genus_Gorilla,gorillas
+42804,genus_Grampus,grampus
+42805,genus_Grevillea,large genus of Australian shrubs and trees having usually showy orange or red flowers
+42806,genus_Grison,a genus of Mustelidae
+42807,genus_Gyromitra,a genus of fungi of the family Helvellaceae with a fertile portion that is tan to brown
+42808,genus_Halogeton,a caryophyllaceous genus of the family Chenopodiaceae
+42809,genus_Hamelia,evergreen tropical American shrubs or small trees
+42810,genus_Harpullia,genus of tropical Asiatic and African trees
+42811,genus_Helianthemum,widely distributed evergreen or semi-evergreen shrublets; America; Europe and North Africa to Asia Minor and central Asia
+42812,genus_Helianthus,genus of tall erect or branched American annual or perennial herbs with showy flowers: sunflowers
+42813,genus_Heliophila,genus of South African flowering herbs and subshrubs
+42814,genus_Heliopsis,oxeye
+42815,genus_Helvella,type genus of the Helvellaceae
+42816,genus_Hepatica,small genus of perennial herbs of north temperate regions; allied to genus Anemone
+42817,genus_Herrerasaurus,primitive theropod found in Argentina; early Triassic
+42818,genus_Hibiscus,large genus of tropical and subtropical herbs and shrubs and trees often grown as ornamentals for their profusion of large flowers in a variety of colors
+42819,genus_Hippeastrum,bulbous flowering plants of tropical America
+42820,genus_Hippopotamus,type genus of the Hippopotamidae
+42821,genus_Homo,type genus of the family Hominidae
+42822,genus_Hovea,genus of Australian evergreen shrubs
+42823,genus_Hoya,large genus of climbing shrubs of Australia and Asia and Polynesia
+42824,genus_Hyacinthus,sometimes placed in family Hyacinthaceae as the type genus
+42825,genus_Hyaena,type genus of the Hyaenidae
+42826,genus_Hydra,hydras
+42827,genus_Hydrangea,type genus of Hydrangeaceae; large genus of shrubs and some trees and vines with white or pink or blue flower clusters; sometimes placed in family Saxifragaceae
+42828,genus_Hydrilla,one species
+42829,genus_Ibero-mesornis,a genus of fossil bird of the subclass Archaeornithes
+42830,genus_Ibis,ibises
+42831,genus_Ichthyosaurus,type genus of the Ichthyosauridae
+42832,genus_Ichthyostega,second earliest fossil amphibian ever found; of the Devonian; found in Greenland
+42833,genus_Idesia,one species
+42834,genus_Iguana,type genus of the Iguanidae
+42835,genus_Iguanodon,type genus of the Iguanodontidae
+42836,genus_Impatiens,annual or perennial herbs with stems more or less succulent; cosmopolitan except for South America, Australia, and New Zealand
+42837,genus_Indri,type genus of the Indriidae
+42838,genus_Inga,genus of tropical trees or shrubs
+42839,genus_Inula,genus of Old World herbs or subshrubs: elecampane
+42840,genus_Iris,large genus of perennials that develop from bulbs or rhizomes
+42841,genus_Iva,small genus of American herbs or shrubs; in some classifications placed in a separate family Ambrosiaceae
+42842,genus_Jabiru,jabirus
+42843,genus_Junco,American finches
+42844,genus_Kalmia,erect evergreen shrubs: mountain laurel
+42845,genus_Keteleeria,a genus of keteleeria
+42846,genus_Klebsiella,a genus of bacteria
+42847,genus_Kniphofia,genus of showy clump-forming African herbs with grasslike leaves; sometimes placed in family Aloeaceae
+42848,genus_Kohleria,genus of tropical American shrubs
+42849,genus_Krigia,small herbs closely related to chicory: dwarf dandelions
+42850,genus_Lactobacillus,type genus of the family Lactobacillaceae
+42851,genus_Laelia,large genus of mostly epiphytic or lithophytic Central and South American orchids of various sizes
+42852,genus_Lansium,a dicotyledonous genus of the family Meliaceae
+42853,genus_Lecanopteris,epiphytic ferns of southeastern Asia to New Guinea
+42854,genus_Lecanora,type genus of Lecanoraceae; crustaceous lichens
+42855,genus_Leipoa,mallee fowl
+42856,genus_Lemur,type genus of the Lemuridae
+42857,genus_Lepidobotrys,a genus of dicotyledonous trees belonging to the family Lepidobotryaceae
+42858,genus_Lepiota,agarics with white spores that includes several edible and poisonous mushrooms: parasol mushrooms
+42859,genus_Leptospira,very slender aerobic spirochetes; free-living or parasitic in mammals
+42860,genus_Lespedeza,genus of shrubs or herbs of tropical Asia and Australia and the eastern United States
+42861,genus_Leucocytozoon genus_Leucocytozoan,a genus of protoctist
+42862,genus_Leucothoe,American and Asiatic deciduous and evergreen shrubs
+42863,genus_Liparis,genus of terrestrial and epiphytic orchids; pantropical to temperate
+42864,genus_Liquidambar Liquidambar,sweet gum
+42865,genus_Listeria,a genus of aerobic motile bacteria of the family Corynebacteriaceae containing small Gram-positive rods
+42866,genus_Litchi,Chinese trees
+42867,genus_Lithops,genus of stemless South African succulents
+42868,genus_Loasa,genus of tropical American prickly herbs or subshrubs
+42869,genus_Lobelia,in some classifications considered the type genus of a separate family Lobeliaceae
+42870,genus_Loligo,squids
+42871,genus_Lomatia,small genus of low-growing evergreens of Chile and Australia; some yield dyes
+42872,genus_Loris,type genus of the Lorisidae
+42873,genus_Luffa,dishcloth gourds
+42874,genus_Lychnis,genus of plants strongly resembling those of genus Silene: catchfly
+42875,genus_Lynx,lynxes
+42876,genus_Macadamia,trees or shrubs; Madagascar to Australia
+42877,genus_Macrotus,leafnose bats
+42878,genus_Macrozamia,genus of large evergreen Australian cycads; sometimes classified in family Cycadaceae
+42879,genus_Magnolia,shrubs or trees of North America or Asia having entire evergreen or deciduous leaves; among most ancient of angiosperm genera
+42880,genus_Malope,small genus of chiefly European herbs
+42881,genus_Mammillaria,large genus of cacti characterized chiefly by nipple-shaped protuberances or tubercles on their surface
+42882,genus_Manta,a genus of Mobulidae
+42883,genus_Mantis,type genus of the Mantidae: mantises
+42884,genus_Maranta,herbs of tropical America
+42885,genus_Martynia,in some classifications includes the unicorn plants
+42886,genus_Masdevallia,large genus of tropical American mostly epiphytic orchids whose flowers have sepals fused at the base forming a tube; includes orchids sometimes placed in genera Dracula and Dryadella and Scaphosepalum
+42887,genus_Maxillaria,large genus of tropical American epiphytic orchids with persistent leathery leaves and single-flowered scapes
+42888,genus_Megalosaurus,type genus of the Megalosauridae
+42889,genus_Melilotus,Old World herbs: the sweet clovers
+42890,genus_Mesohippus,a genus of Equidae
+42891,genus_Metasequoia,genus of deciduous conifers comprising both living and fossil forms; 1 extant species: dawn redwood of China; variously classified as member of Pinaceae or Taxodiaceae
+42892,genus_Millettia,genus of trees and shrubs of the Old World tropics
+42893,genus_Mimosa,genus of spiny woody shrubs or trees; named for their apparent imitation of animal sensitivity to light and heat and movement
+42894,genus_Mola,type genus of the Molidae
+42895,genus_Moloch,genus of Australian desert lizard
+42896,genus_Monarda,wild bergamot, horsemint, beebalm
+42897,genus_Monilia,genus of parasitic yeastlike imperfect fungi having spherical or oval conidia in branched chains; some species usually placed in other genera especially genus Candida
+42898,genus_Mononychus,authorities disagree over whether to classify the genus as bird or dinosaur
+42899,genus_Monstera,tropical American climbing plant with deeply incised leaves
+42900,genus_Montezuma,one species: medium-sized evergreen tree of Puerto Rico or Mexico
+42901,genus_Mucor,type genus of the Mucoraceae; genus of molds having cylindrical or pear-shaped sporangia not limited in location to points where rhizoids develop
+42902,genus_Mucuna Stizolobium genus_Stizolobium,genus of tropical herbs and woody vines having trifoliate leaves and showy flowers in axillary clusters
+42903,genus_Mutisia,genus of South American shrubs or lianas having large flower heads with feathery pappuses
+42904,genus_Mycobacterium,nonmotile Gram-positive aerobic bacteria
+42905,genus_Mycoplasma,type and sole genus of the family Mycoplasmataceae
+42906,genus_Mylodon,type genus of the Mylodontidae; sometimes included in family Megatheriidae
+42907,genus_Nanomia,a genus of Siphonophora
+42908,genus_Narcissus,Old World perennial bulbous herbs
+42909,genus_Nautilus,type genus and sole recent representative of the family Nautilidae
+42910,genus_Nemophila,genus of ornamental chiefly California herbs: baby blue-eyes
+42911,genus_Nephthytis,small genus of tropical western African creeping or twining herbs
+42912,genus_Nerita,type genus of the Neritidae
+42913,genus_Neritina,a genus of Neritidae
+42914,genus_Nierembergia,genus of tropical American erect or creeping herbs with solitary flowers
+42915,genus_Nigella,erect annual Eurasian herbs
+42916,genus_Noctiluca,a genus of protoctist
+42917,genus_Nostoc,type genus of the family Nostocaceae: freshwater blue-green algae
+42918,genus_Nothosaurus,a genus of Nothosauria
+42919,genus_Notornis,a genus of Rallidae
+42920,genus_Octopus,type genus of the family Octopodidae
+42921,genus_Odontoglossum,large and important genus of tropical American mostly epiphytic orchids; some of the most widely grown species are often placed in other genera
+42922,genus_Ommastrephes,a genus of Decapoda
+42923,genus_Oncidium,large genus of showy epiphytic or lithophytic or terrestrial orchids of tropical and subtropical America
+42924,genus_Orchis,type genus of the orchid family; hardy terrestrial orchids of the temperate the northern hemisphere
+42925,genus_Origanum,a genus of aromatic mints of the family Labiatae
+42926,genus_Oryx,African antelopes: oryxes
+42927,genus_Osmunda,type genus of the Osmundaceae
+42928,genus_Othonna,genus of western African herbs or shrubs
+42929,genus_Oxalis,type genus of the Oxalidaceae; large genus of plants having leaves that resemble clover and variously colored flowers usually clustered in umbels
+42930,genus_Pachysandra,evergreen perennial procumbent subshrubs or herbs
+42931,genus_Palometa,a genus of Stromateidae
+42932,genus_Pandanus,type genus of the Pandanaceae (as screw pines)
+42933,genus_Paramecium,freshwater ciliate with an oval body and long deep oral groove
+42934,genus_Parnassia,genus of bog herbs of Arctic and northern temperate regions
+42935,genus_Paspalum,a genus of perennial grasses of warm regions
+42936,genus_Pavonia,genus of tropical hairy shrubs or herbs of tropics and subtropics especially South America
+42937,genus_Pecopteris,genus of Carboniferous fossil ferns
+42938,genus_Pecten,type genus of the family Pectinidae: sea and bay scallops
+42939,genus_Peperomia,large genus of small tropical usually succulent herbs
+42940,genus_Peripatus,type genus of Peripatidae; onychophorans of chiefly New World tropical regions
+42941,genus_Petunia Petunia,annual or perennial herbs or shrubs of tropical South America
+42942,genus_Phacelia,American herbs with usually pinnatifid leaves and blue or purple or white flowers in scorpioid cymes
+42943,genus_Phaius,genus of Asiatic and Australian terrestrial orchids
+42944,genus_Phalanger,type genus of the family Phalangeridae: cuscuses
+42945,genus_Phenacomys,North American voles
+42946,genus_Philadelphus,mock orange: type and sole genus of the subfamily Philadelphaceae; sometimes placed in family Saxifragaceae
+42947,genus_Philodendron,any of several tropical American climbing plants with smooth shiny evergreen leaves
+42948,genus_Phlomis,large genus of Old World aromatic herbs or subshrubs or shrubs having often woolly leaves
+42949,genus_Phlox,herbaceous to shrubby evergreen or deciduous annuals or perennials, diffuse (spreading) or caespitose (tufted or matted); from Alaska and western Canada to Mexico
+42950,genus_Physa,type genus of the Physidae; freshwater air-breathing snails
+42951,genus_Physostegia,genus of North American perennial herbs
+42952,genus_Pisanosaurus,primitive ornithischian dinosaur found in Argentina; early Triassic
+42953,genus_Pistia,one species: water lettuce
+42954,genus_Pitta,type genus of the Pittidae; a large genus of birds of southern Asia and Australia and adjacent islands
+42955,genus_Plasmodium,type genus of the family Plasmodiidae
+42956,genus_Plectranthus,large genus of ornamental flowering plants; includes some plants often placed in the genus Coleus
+42957,genus_Plesiosaurus,a reptile genus of suborder Plesiosauria
+42958,genus_Pleurothallis,large genus of epiphytic or lithophytic orchids of tropical America
+42959,genus_Plumbago,shrubs and herbs and woody vines of warm regions: leadwort
+42960,genus_Pogonia,small but widely distributed genus of orchids closely related to genus Cleistes;: of damp or boggy areas of north temperate zone
+42961,genus_Polemonium,type genus of the Polemoniaceae
+42962,genus_Portulaca,genus of mainly tropical fleshy or trailing herbs
+42963,genus_Potamogale,type genus of the family Potamogalidae: otter shrews
+42964,genus_Primula,very large and important genus of plants of temperate Europe and Asia having showy flowers
+42965,genus_Proconsul,genus of extinct primitive African primates of the Miocene epoch; sometimes considered a subgenus of Dryopithecus
+42966,genus_Protea,type genus of Proteaceae; tropical African shrubs
+42967,genus_Protoavis,extinct primitive birds of the Triassic period; 70 million years before archaeopteryx
+42968,genus_Protoceratops,small horned dinosaurs
+42969,genus_Protohippus,a genus of Equidae
+42970,genus_Psilophyton,type genus of the Psilophytaceae: genus of small wiry herbaceous Paleozoic plants with underground rhizomes and apical sporangia
+42971,genus_Psittacosaurus,most primitive genus of horned dinosaurs; early Cretaceous
+42972,genus_Pteropogon,genus of Australian and South African herbs including some from genus Helipterum
+42973,genus_Pyracantha,Eurasian evergreen thorny shrubs bearing red or orange-red berries
+42974,genus_Pyrola,short-stemmed perennial herbs of cool or temperate regions: wintergreen; shinleaf
+42975,genus_Pyrrhuloxia,large showy finches related to cardinals
+42976,genus_Pythium,destructive root-parasitic fungi
+42977,genus_Python,Old World boas
+42978,genus_Quassia,tropical trees and shrubs with pinnate leaves and large scarlet flowers; bark is medicinal
+42979,genus_Rauwolfia genus_Rauvolfia,pantropical genus of somewhat poisonous shrubs and small trees
+42980,genus_Ravenala,woody tropical plants with tall trunks; sometimes placed in family Musaceae
+42981,genus_Regnellidium,one species of aquatic or semiaquatic fern
+42982,genus_Reseda,Old World genus of herbs having racemose flowers: mignonette; dyer's rocket
+42983,genus_Rhea,type genus of the Rheidae; large tall flightless South American birds similar to but smaller than ostriches
+42984,genus_Rhinoceros,type genus of the Rhinocerotidae
+42985,genus_Rhizoctinia form_genus_Rhizoctinia,form genus of imperfect fungi some species of which are now placed in genera Pellicularia and Corticium because their perfect stages have been found
+42986,genus_Rhizopus,a genus of rot-causing fungi having columnar hemispherical aerial sporangia anchored to the substrate by rhizoids
+42987,genus_Rhodanthe,genus of xerophytic herbs and shrubs of South Africa and Australia; sometimes included in genus Helipterum
+42988,genus_Rhododendron,large genus of evergreen shrubs native to cooler regions of the northern hemisphere having showy flowers
+42989,genus_Rickettsia,can cause typhus and Rocky Mountain spotted fever in humans
+42990,genus_Rivulus,killifish
+42991,genus_Roccella,chiefly fruticose maritime rock-inhabiting lichens
+42992,genus_Roridula,insectivorous undershrubs of South Africa; in some classifications placed in the family Droseraceae
+42993,genus_Sabbatia,genus of smooth slender North American herbs with showy flowers
+42994,genus_Sagitta,chief genus of Chaetognatha including the largest arrowworms
+42995,genus_Saiga,Eurasian antelopes: saigas
+42996,genus_Salmonella,a genus of bacteria
+42997,genus_Salpa,type (perhaps sole) genus of the Salpidae
+42998,genus_Salpiglossis,small genus of herbs of the southern Andes having large showy flowers
+42999,genus_Salvia,large genus of shrubs and subshrubs of the mint family varying greatly in habit: sage
+43000,genus_Sansevieria,Old World tropical herbaceous perennial of the agave family; in some classifications considered a genus of Liliaceae
+43001,genus_Sargassum,a genus of protoctist
+43002,genus_Sassafras,a genus of sassafras
+43003,genus_Scabiosa,annual or perennial herbs or subshrubs; mainly Mediterranean
+43004,genus_Scarabaeus,type genus of the Scarabaeidae
+43005,genus_Schizanthus,Chilean herbs with orchid-like flowers
+43006,genus_Schizopetalon,small genus of South American herbs grown for its flowers
+43007,genus_Sciara,type genus of the Sciaridae: fungus gnat
+43008,genus_Scilla,sometimes placed in subfamily Hyacinthaceae
+43009,genus_Sclerotinia,large genus of ascomycetous fungi including various destructive plant pathogens
+43010,genus_Scorzonera,genus of narrow-leaved European herbs
+43011,genus_Sedum,large genus of rock plants having thick fleshy leaves
+43012,genus_Senna,genus of shrubs and trees and herbs many of which are often classified as members of the genus Cassia
+43013,genus_Sequoia,redwoods; until recently considered a genus of a separate family Taxodiaceae
+43014,genus_Serratia Serratia,a genus of motile peritrichous bacteria that contain small Gram-negative rod
+43015,genus_Sesbania,small genus of tropical and subtropical leguminous herbs or shrubs or trees
+43016,genus_Shigella,a genus of bacteria
+43017,genus_Shortia,evergreen perennial herbs of North America and eastern Asia: oconee bells
+43018,genus_Silene,large widely distributed genus of plants having mostly showy flowers of various colors: campion; catchfly
+43019,genus_Sinornis,a genus of fossil birds
+43020,genus_Siren,a genus of Sirenidae
+43021,genus_Sisymbrium,genus of Old World annual or biennial or perennial herbs with racemose flowers; many are considered to be weeds
+43022,genus_Sivapithecus,extinct primates; lower Pliocene
+43023,genus_Sobralia,genus of tropical American orchids
+43024,genus_Sorghum Sorghum,annual or perennial tropical and subtropical cereal grasses: sorghum
+43025,genus_Spadella,marine worms resembling the sagittas but with a broader body and only one pair of lateral fins
+43026,genus_Spathiphyllum,evergreen rhizomatous perennials of tropical America and Philippines and Indonesia
+43027,genus_Sphagnum,a large genus constituting the order Sphagnales: atypical mosses of temperate bogs with leaves that can hold much water
+43028,genus_Spirillum,a genus of bacteria
+43029,genus_Spirogyra,a genus of protoctist
+43030,genus_Spirula,genus of small cephalopods with many-chambered spiral shells resembling those of the extinct belemnites
+43031,genus_Squilla,type genus of the family Squillidae
+43032,genus_Stanhopea,genus of tropical American epiphytic orchids
+43033,genus_Stapelia,genus of foul-smelling plants resembling cacti; found from Africa to East India
+43034,genus_Staphylococcus,includes many pathogenic species
+43035,genus_Staurikosaurus,primitive ornithischian dinosaur found in Brazil
+43036,genus_Stegosaurus,quadrupedal armored herbivore of the Jurassic and Cretaceous
+43037,genus_Stelis,genus of small caespitose orchids of tropical America
+43038,genus_Stenopterygius,a reptile genus of Ichthyosauridae
+43039,genus_Stentor,trumpet-shaped protozoa with a ciliated spiral feeding funnel
+43040,genus_Stephanotis,genus of Old World tropical woody vines
+43041,genus_Sterculia,type genus of the Sterculiaceae: deciduous or evergreen trees of Old and New World tropics and subtropics
+43042,genus_Stevia,genus of shrubs and herbs of tropical and warm Americas
+43043,genus_Streptocarpus,large genus of usually stemless African or Asian herbs: Cape primrose
+43044,genus_Streptococcus,a genus of bacteria
+43045,genus_Streptomyces,type genus of the family Streptomycetaceae
+43046,genus_Strophanthus,genus of tropical Asiatic and African shrubs and woody vines and small trees
+43047,genus_Struthiomimus,small toothless saurischian dinosaurs; later Cretaceous period in Canada
+43048,genus_Styracosaurus,genus of horned dinosaurs
+43049,genus_Styrax,deciduous or evergreen shrubs and small trees
+43050,genus_Suksdorfia,small genus of rhizomatous herbs of northwestern America and South America
+43051,genus_Taenia,type genus of the family Taeniidae: tapeworms
+43052,genus_Tamandua,lesser anteater
+43053,genus_Tarpon,tarpons
+43054,genus_Tenrec,type genus of the family Tenrecidae: tenrecs
+43055,genus_Teredo,type genus of the family Teredinidae
+43056,genus_Tetrahymena,protozoa having four membranous ciliary organelles
+43057,genus_Thiobacillus,a genus of bacteria
+43058,genus_Thrips,type genus of the Thripidae
+43059,genus_Thyrsopteris,one species
+43060,genus_Tithonia,genus of robust herbs of Mexico and Central America: Mexican sunflower
+43061,genus_Tortrix,type genus of the Tortricidae
+43062,genus_Trachodon,a reptile genus of the suborder Euronithopoda
+43063,genus_Tragopan,a genus of Phasianidae
+43064,genus_Treponema,type genus of Treponemataceae: anaerobic spirochetes with an undulating rigid body; parasitic in warm-blooded animals
+43065,genus_Triceratops,genus of herbivorous horned dinosaurs
+43066,genus_Trichodesmium,a genus of blue-green algae
+43067,genus_Trichomonas,flagellates parasitic in alimentary or genitourinary tracts of vertebrates and invertebrates including humans
+43068,genus_Trillium,deciduous perennial herbs; sometimes placed in family Liliaceae
+43069,genus_Trogon,type genus of the Trogonidae
+43070,genus_Turreae,genus of trees and shrubs of tropical Africa and Asia and Australia
+43071,genus_Tyrannosaurus,includes a single species
+43072,genus_Ursinia,genus of South African herbs and shrubs cultivated as ornamentals
+43073,genus_Utahraptor,advanced bipedal carnivorous dinosaur
+43074,genus_Vanda,genus of showy epiphytic orchids of Himalayas to Malaysia
+43075,genus_Vanilla,large genus of tropical climbing orchids; Old and New Worlds
+43076,genus_Velociraptor,advanced carnivorous theropod
+43077,genus_Verbena,type genus of the Verbenaceae; genus of herbaceous perennials and subshrubs
+43078,genus_Vernonia,genus of New World tropical herbs or shrubs with terminal cymose heads of tubular flowers
+43079,genus_Veronica,widespread genus of herbs with pink or white or blue or purple flowers: speedwell
+43080,genus_Verticillium,genus of imperfect fungi having conidia borne singly at the apex of whorled branchlets; cause wilt diseases
+43081,genus_Vibrio,a genus of bacteria
+43082,genus_Vireo,type genus of the Vireonidae
+43083,genus_Vorticella,ciliated protozoans that have a goblet-shaped body with a retractile stalk
+43084,genus_Weigela,east Asian flowering shrubs
+43085,genus_Welwitschia genus_Welwitchia,type and sole genus of Welwitschiaceae
+43086,genus_Wisteria,Asiatic deciduous woody vine having large drooping racemes of white or bluish or purple or pinkish flowers and velvety pods; widely grown as an ornamental
+43087,genus_Woodsia,genus of small to medium-sized usually rock-inhabiting ferns of temperate and cold regions; in some classification systems placed in Polypodiaceae
+43088,genus_Wyethia,coarse leafy perennial plants resembling sunflowers found especially in the western United States
+43089,genus_Xeranthemum,genus of annual densely hairy herbs of Mediterranean to southwestern Asia
+43090,genus_Xylosma,genus of tropical American and Asiatic spiny evergreen trees and shrubs
+43091,genus_Yucca,tropical American plants with stiff lancelike leaves and spikes of white blossoms; sometimes considered a genus of Amaryllidaceae
+43092,genus_Zamia,genus of small evergreen tropical and subtropical American cycads
+43093,genus_Zinnia,genus of annual or perennial plants of tropical America having solitary heads of brightly colored flowers
+43094,genus_Zoysia Zoisia genus_Zoisia,lawn grasses native to southeastern Asia and New Zealand; grown especially in warm regions
+43095,geocentric_parallax diurnal_parallax,the parallax of a celestial body using two points on the surface of the earth as the earth rotates
+43096,geochemistry,the chemistry of the earth's crust
+43097,geode,(mineralogy) a hollow rock or nodule with the cavity usually lined with crystals
+43098,geodesic geodesic_line,(mathematics) the shortest line between two points on a mathematically defined surface (as a straight line on a plane or an arc of a great circle on a sphere)
+43099,geodesic_dome,a lightweight dome constructed of interlocking polygons; invented by R. Buckminster Fuller
+43100,geodesy,the branch of geology that studies the shape of the earth and the determination of the exact position of geographical points
+43101,geoduck,a large edible clam found burrowing deeply in sandy mud along the Pacific coast of North America; weighs up to six pounds; has siphons that can extend to several feet and cannot be withdrawn into the shell
+43102,geographer,an expert on geography
+43103,geographic_point geographical_point,a point on the surface of the Earth
+43104,geographical_area geographic_area geographical_region geographic_region,a demarcated area of the Earth
+43105,geographical_indication GI,(law) a name or sign used on certain products which corresponds to a specific geographical location or origin
+43106,geography geographics,study of the earth's surface; includes people's responses to topography and climate and soil and vegetation
+43107,geological_formation formation,(geology) the geological features of the earth
+43108,geological_horizon,a layer of rock with a particular composition (especially of fossils); for dating the stratum
+43109,geological_phenomenon,a natural phenomenon involving the structure or composition of the earth
+43110,geological_process geologic_process,(geology) a natural process whereby geological features are modified
+43111,geological_time geologic_time,the time of the physical formation and development of the earth (especially prior to human history)
+43112,geologist,a specialist in geology
+43113,geology,a science that deals with the history of the earth as recorded in rocks
+43114,geomancer,one who practices geomancy
+43115,geomancy,divination by means of signs connected with the earth (as points taken at random or the arrangement of particles thrown down at random or from the configuration of a region and its relation to another)
+43116,geometer geometrician,a mathematician specializing in geometry
+43117,geometric_mean,the mean of n numbers expressed as the n-th root of their product
+43118,geometric_pace,a modern version of the Roman pace now taken to be 5 feet
+43119,geometric_progression,(mathematics) a progression in which each term is multiplied by a constant in order to obtain the next term; "1-4-16-64-256- is the start of a geometric progression"
+43120,geometric_series,a geometric progression written as a sum
+43121,geometrid geometrid_moth,slender-bodied broad-winged moth whose larvae are called measuring worms
+43122,geometry,the pure mathematics of points and lines and curves and surfaces
+43123,geometry_teacher,someone who teaches geometry
+43124,geophagy geophagia,eating earth, clay, chalk; occurs in some primitive tribes, sometimes in cases of nutritional deficiency or obsessive behavior
+43125,geophysicist,a geologist who uses physical principles to study the properties of the earth
+43126,geophysics geophysical_science,geology that uses physical principles to study properties of the earth
+43127,geophyte,a perennial plant that propagates by underground bulbs or tubers or corms
+43128,geopolitics,the study of the effects of economic geography on the powers of the state
+43129,geordie,the nonstandard dialect of natives of Newcastle-upon-Tyne
+43130,georgette,a thin silk dress material
+43131,geostationary_orbit,a geosynchronous orbit that is fixed with respect to a position on the Earth
+43132,geostrategy,the branch of geopolitics dealing with strategy
+43133,geosynchronous_orbit,a circular orbit around the Earth having a period of 24 hours
+43134,geothermal_energy,energy derived from the heat in the interior of the earth
+43135,geotropism,an orienting response to gravity
+43136,geranium,any of numerous plants of the family Geraniaceae
+43137,gerardia,any plant of the genus Gerardia
+43138,gerbil gerbille,small Old World burrowing desert rodent with long soft pale fur and hind legs adapted for leaping
+43139,gerenuk Litocranius_walleri,slender East African antelope with slim neck and backward-curving horns
+43140,geriatrics gerontology,the branch of medical science that deals with diseases and problems specific to old people
+43141,germ,a small apparently simple structure (as a fertilized egg) from which new tissue can develop into a complete organism
+43142,germ_layer,(embryology) any of the 3 layers of cells differentiated in embryos following gastrulation
+43143,germ_plasm plasm,the protoplasm of the germ cells that contains chromosomes and genes
+43144,germ_pore,a pore in the outer wall of a spore or pollen grain through which the germ tube or pollen tube makes its exit on germination
+43145,germ_theory,(medicine) the theory that all contagious diseases are caused by microorganisms
+43146,germ_tube,(botany) a slender tubular outgrowth from a spore in germination
+43147,germ_warfare bacteriological_warfare,the use of harmful bacteria as a weapon
+43148,germander,any of various plants of the genus Teucrium
+43149,germander_speedwell bird's_eye Veronica_chamaedrys,Old World plant with axillary racemes of blue-and-white flowers
+43150,germaneness,pertinence by virtue of a close relation to the matter at hand
+43151,germanite,a rare reddish-grey mineral consisting of a copper iron germanium sulfide
+43152,germanium Ge atomic_number_32,a brittle grey crystalline element that is a semiconducting metalloid (resembling silicon) used in transistors; occurs in germanite and argyrodite
+43153,germination,the origin of some development; "the germination of their discontent"
+43154,germination sprouting,the process whereby seeds or spores sprout and begin to grow
+43155,gerontocracy,a political system governed by old men
+43156,gerontologist geriatrician,a specialist in gerontology
+43157,gerrymander,an act of gerrymandering (dividing a voting area so as to give your own party an unfair advantage)
+43158,gerund,a noun formed from a verb (such as the `-ing' form of an English verb when used as a noun)
+43159,gesneria,any plant of the genus Gesneria
+43160,gesneriad,any of numerous tropical or subtropical small shrubs or treelets or epiphytic vines of the family Gesneriaceae: African violet; Cape primroses; gloxinia
+43161,gesso,gypsum or plaster of Paris spread on a surface to make it suitable for painting or gilding (or a surface so prepared)
+43162,gestalt,a configuration or pattern of elements so unified as a whole that it cannot be described merely as a sum of its parts
+43163,gestation,the conception and development of an idea or plan
+43164,gestation gestation_period,the period during which an embryo develops (about 266 days in humans)
+43165,gesticulation,a deliberate and vigorous gesture or motion
+43166,gesture,something done as an indication of intention; "a political gesture"; "a gesture of defiance"
+43167,gesture,motion of hands or body to emphasize or help to express a thought or feeling
+43168,gesture motion,the use of movements (especially of the hands) to communicate familiar or prearranged signals
+43169,get,a return on a shot that seemed impossible to reach and would normally have resulted in a point for the opponent
+43170,get-well_card,a card expressing get-well wishes
+43171,getaway lam,a rapid escape (as by criminals); "the thieves made a clean getaway"; "after the expose he had to take it on the lam"
+43172,geyser,a spring that discharges hot water and steam
+43173,gharry,a horse-drawn carriage in India
+43174,ghastliness grimness gruesomeness luridness,the quality of being ghastly
+43175,ghat,stairway in India leading down to a landing on the water
+43176,ghatti ghatti_gum,an Indian gum from the dhawa tree; used as a substitute for gum arabic
+43177,ghee,clarified butter used in Indian cookery
+43178,gherkin,any of various small cucumbers pickled whole
+43179,gherkin,small prickly cucumber
+43180,ghetto,any segregated mode of living or working that results from bias or stereotyping; "the relative security of the gay ghetto"; "no escape from the ghetto of the typing pool"
+43181,ghetto,formerly the restricted quarter of many European cities in which Jews were required to live; "the Warsaw ghetto"
+43182,ghetto,a poor densely populated city district occupied by a minority ethnic group linked together by economic hardship and social restrictions
+43183,ghetto_blaster boom_box,a portable stereo
+43184,ghillie gillie,a shoe without a tongue and with decorative lacing up the instep
+43185,ghost,the visible disembodied soul of a dead person
+43186,ghost shade spook wraith specter spectre,a mental representation of some haunting experience; "he looked like he had seen a ghost"; "it aroused specters from his past"
+43187,ghost_dance,a religious dance of Native Americans looking for communication with the dead
+43188,ghost_town,a deserted settlement (especially in western United States)
+43189,ghost_word,a word form that has entered the language through the perpetuation of an error
+43190,ghostwriter ghost,a writer who gives the credit of authorship to someone else
+43191,ghoul,an evil spirit or ghost
+43192,ghrelin,a gastrointestinal hormone produced by epithelial cells lining the fundus of the stomach; appears to be a stimulant for appetite and feeding, but is also a strong stimulant of growth hormone secretion from the anterior pituitary
+43193,giant,an imaginary figure of superhuman size and strength; appears in folklore and fairy tales
+43194,giant,an unusually large enterprise; "Walton built a retail giant"
+43195,giant,any creature of exceptional size
+43196,giant goliath behemoth monster colossus,someone or something that is abnormally large and powerful
+43197,giant hulk heavyweight whale,a very large person; impressive in size or qualities
+43198,giant_armadillo tatou tatu Priodontes_giganteus,about three feet long exclusive of tail
+43199,giant_bamboo kyo-chiku Dendrocalamus_giganteus,immense tropical southeast Asian bamboo with tough hollow culms that resemble tree trunks
+43200,giant_buttercup Laccopetalum_giganteum,spectacular perennial native of wet montane grasslands of Peru; formerly included in genus Ranunculus
+43201,giant_cane cane_reed Arundinaria_gigantea,tall grass of southern United States growing in thickets
+43202,giant_chinkapin golden_chinkapin Chrysolepis_chrysophylla Castanea_chrysophylla Castanopsis_chrysophylla,small ornamental evergreen tree of Pacific Coast whose glossy yellow-green leaves are yellow beneath; bears edible nuts
+43203,giant_clam Tridacna_gigas,a large clam inhabiting reefs in the southern Pacific and weighing up to 500 pounds
+43204,giant_cockroach,large tropical American cockroaches
+43205,giant_conch Strombus_gigas,a large variety of conch
+43206,giant_coreopsis Coreopsis_gigantea,large treelike shrub having feathery leaves and clusters of large yellow flower heads; coastal southern California
+43207,giant_crab Macrocheira_kaempferi,very large deep-water Japanese crab
+43208,giant_eland Taurotragus_derbianus,large dark striped eland of western equatorial Africa
+43209,giant_foxtail,two species of coarse annual foxtails that are naturalized weeds in United States
+43210,giant_hornet Vespa_crabro,European hornet introduced into the United States
+43211,giant_hyssop,any of a number of aromatic plants of the genus Agastache
+43212,giant_kangaroo great_grey_kangaroo Macropus_giganteus,very large greyish-brown Australian kangaroo formerly abundant in open wooded areas
+43213,giant_moa Dinornis_giganteus,the largest moa; about 12 feet high
+43214,giant_northwest_shipworm Bankia_setaceae,giant shipworm of the Pacific coast of North America
+43215,giant_panda panda panda_bear coon_bear Ailuropoda_melanoleuca,large black-and-white herbivorous mammal of bamboo forests of China and Tibet; in some classifications considered a member of the bear family or of a separate family Ailuropodidae
+43216,giant_petrel giant_fulmar Macronectes_giganteus,large brownish petrel chiefly of Antarctic seas
+43217,giant_puffball Calvatia_gigantea,huge edible puffball up to 2 feet diameter and 25 pounds in weight
+43218,giant_red_paintbrush Castilleja_miniata,wildflower of western North America having ragged clusters of crimson or scarlet flowers
+43219,giant_reed Arundo_donax,large rhizomatous perennial grasses found by riversides and in ditches having jointed stems and large grey-white feathery panicles
+43220,giant_ryegrass Elymus_condensatus Leymus_condensatus,stout perennial grass of western North America
+43221,giant_salamander Megalobatrachus_maximus,large (up to more than three feet) edible salamander of Asia
+43222,giant_schnauzer,a large schnauzer
+43223,giant_scrambling_fern Diplopterygium_longissimum,large scrambling fern forming large patches to 18 feet high; Pacific region and China
+43224,giant_sequoia big_tree Sierra_redwood Sequoiadendron_giganteum Sequoia_gigantea Sequoia_Wellingtonia,extremely lofty evergreen of southern end of western foothills of Sierra Nevada in California; largest living organism
+43225,giant_silkworm_moth silkworm_moth,any silkworm moth of the family Saturniidae
+43226,giant_star giant,a very bright star of large diameter and low density (relative to the Sun)
+43227,giant_star_grass Cynodon_plectostachyum,perennial grass having stems 3 to 4 feet high; used especially in Africa and India for pasture and hay
+43228,giant_sunflower tall_sunflower Indian_potato Helianthus_giganteus,very tall American perennial of central and the eastern United States to Canada having edible tuberous roots
+43229,giant_taro Alocasia_macrorrhiza,large evergreen with extremely large erect or spreading leaves; cultivated widely in tropics for its edible rhizome and shoots; used in wet warm regions as a stately ornamental
+43230,giant_timber_bamboo madake ku-chiku Phyllostachys_bambusoides,large bamboo having thick-walled culms; native of China and perhaps Japan; widely grown elsewhere
+43231,giant_tortoise,very large tortoises of the Galapagos and Seychelles islands
+43232,giant_water_bug,large water bug with piercing and sucking mouthparts; feeds on young fishes
+43233,giantess,a female giant
+43234,giantism gigantism overgrowth,excessive size; usually caused by excessive secretion of growth hormone from the pituitary gland
+43235,giardia,a suspected cause of diarrhea in humans
+43236,giardiasis,infection of the intestines with protozoa found in contaminated food and water; characterized by diarrhea and nausea and flatulence and abdominal discomfort
+43237,gib,a castrated tomcat
+43238,gibberellic_acid,a crystalline acid associated with gibberellin
+43239,gibberellin,a plant hormone isolated from a fungus; used in promoting plant growth
+43240,gibberish gibber,unintelligible talking
+43241,gibbon Hylobates_lar,smallest and most perfectly anthropoid arboreal ape having long arms and no tail; of southern Asia and East Indies
+43242,gibbsite,white crystalline mineral consisting of aluminum hydroxide; a constituent of bauxite and a source of alumina
+43243,gibibit Gibit,a unit of information equal to 1024 mebibits or 2^30 (1,073,741,824) bits
+43244,giblet giblets,edible viscera of a fowl
+43245,giddiness silliness,an impulsive scatterbrained manner
+43246,gidgee stinking_wattle Acacia_cambegei,scrubby Australian acacia having extremely foul-smelling blossoms
+43247,gift,something acquired without compensation
+43248,gift_horse,a gift (usually of inferior quality) that should be accepted uncritically; "it wasn't much, but don't look a gift horse in the mouth"
+43249,gift_shop novelty_shop,a shop that sells miscellaneous articles appropriate as gifts
+43250,gift_tax,a tax imposed on transfers of property by gift during the lifetime of the giver
+43251,gift_wrap,attractive wrapping paper suitable for wrapping gifts
+43252,gift_wrapping,ornamental wrapping for gifts
+43253,gig,a cluster of hooks (without barbs) that is drawn through a school of fish to hook their bodies; used when fish are not biting
+43254,gig,long and light rowing boat; especially for racing
+43255,gig,tender that is a light ship's boat; often for personal use of captain
+43256,gig,small two-wheeled horse-drawn carriage; with two seats and no hood
+43257,gig,a booking for musicians; "they played a gig in New Jersey"
+43258,gigabit Gbit Gb,a unit of information equal to 1000 megabits or 10^9 (1,000,000,000) bits
+43259,gigabyte G GB,a unit of information equal to 1000 megabytes or 10^9 (1,000,000,000) bytes
+43260,gigabyte gibibyte G GB GiB,a unit of information equal to 1024 mebibytes or 2^30 (1,073,741,824) bytes
+43261,gigahertz GHz gigacycle_per_second gigacycle Gc,1,000,000,000 periods per second
+43262,gigantism giantism,excessive largeness of stature
+43263,giggle,a foolish or nervous laugh
+43264,gigolo,a man who has sex with and is supported by a woman
+43265,gilbert Gb Gi,a unit of magnetomotive force equal to 0.7958 ampere-turns
+43266,gilded_flicker Colaptes_chrysoides,southwestern United States bird like the yellow-shafted flicker but lacking the red neck
+43267,gilder,someone whose occupation is to apply an overlay of gold or gilt
+43268,gildhall,the meeting place of a medieval guild
+43269,gilding_metal,a brass that is rich in copper; used to make articles that were to be gilded
+43270,gilgai_soil,soil in the melon holes of Australia
+43271,gill,a British imperial capacity unit (liquid or dry) equal to 5 fluid ounces or 142.066 cubic centimeters
+43272,gill,a United States liquid unit equal to 4 fluid ounces
+43273,gill branchia,respiratory organ of aquatic animals that breathe oxygen dissolved in water
+43274,gill lamella,any of the radiating leaflike spore-producing structures on the underside of the cap of a mushroom or similar fungus
+43275,gill_arch branchial_arch gill_bar,one of the bony or cartilaginous arches on each side of the pharynx that support the gills of fishes and aquatic amphibians
+43276,gill_fungus,a basidiomycete with gills
+43277,gill_net,a flat fishnet suspended vertically in the water to entangle fish by their gills
+43278,gill_slit branchial_cleft gill_cleft,one of a series of slit openings in the pharynxes of fishes and aquatic amphibians through which water passes
+43279,gillie,a young male attendant on a Scottish Highlander chief
+43280,gilt gilding,a coating of gold or of something that looks like gold
+43281,gimbal,an appliance that allows an object (such as a ship's compass) to remain horizontal even as its support tips
+43282,gimel,the 3rd letter of the Hebrew alphabet
+43283,gimlet,a cocktail made of gin or vodka and lime juice
+43284,gimmickry,a collection of gimmicks
+43285,gin,strong liquor flavored with juniper berries
+43286,gin gin_rummy knock_rummy,a form of rummy in which a player can go out if the cards remaining in their hand total less than 10 points
+43287,gin_and_it,a cocktail made of gin and sweet vermouth
+43288,gin_and_tonic,gin and quinine water
+43289,gin_rickey,a rickey made with gin
+43290,gin_sling,a sling made with gin
+43291,ginger,perennial plants having thick branching aromatic rhizomes and leafy reedlike stems
+43292,ginger gingerroot,pungent rhizome of the common ginger plant; used fresh as a seasoning especially in Asian cookery
+43293,ginger powdered_ginger,dried ground gingerroot
+43294,ginger_ale ginger_pop,ginger-flavored carbonated drink
+43295,ginger_beer,carbonated slightly alcoholic drink flavored with fermented ginger
+43296,gingerbread,cake flavored with ginger
+43297,gingerbread_man,gingerbread cut in the shape of a person
+43298,gingerol,derived from ginger; source of the hotness of ginger
+43299,gingersnap ginger_snap snap ginger_nut,a crisp round cookie flavored with ginger
+43300,gingham,a clothing fabric in a plaid weave
+43301,gingiva gum,the tissue (covered by mucous membrane) of the jaws that surrounds the bases of the teeth
+43302,gingivitis,inflammation of the gums
+43303,ginkgo gingko maidenhair_tree Ginkgo_biloba,deciduous dioecious Chinese tree having fan-shaped leaves and fleshy yellow seeds; exists almost exclusively in cultivation especially as an ornamental street tree
+43304,ginseng,aromatic root of ginseng plants
+43305,ginseng nin-sin Panax_ginseng Panax_schinseng Panax_pseudoginseng,Chinese herb with palmately compound leaves and small greenish flowers and forked aromatic roots believed to have medicinal powers
+43306,gipsywort gypsywort Lycopus_europaeus,hairy Eurasian herb with two-lipped white flowers
+43307,giraffe camelopard Giraffa_camelopardalis,tallest living quadruped; having a spotted coat and small horns and very long neck and legs; of savannahs of tropical Africa
+43308,girandole girandola,an ornate candle holder; often with a mirror
+43309,girder,a beam made usually of steel; a main support in a structure
+43310,girdle,an encircling or ringlike structure
+43311,girdle cincture sash waistband waistcloth,a band of material around the waist that strengthens a skirt or trousers
+43312,girl,a friendly informal reference to a grown woman; "Mrs. Smith was just one of the girls"
+43313,girl miss missy young_lady young_woman fille,a young female; "a young lady of 18"
+43314,girl_Friday,a female assistant who has a range of duties
+43315,girl_wonder,an extremely talented young female person
+43316,girlfriend,any female friend; "Mary and her girlfriend organized the party"
+43317,girlfriend girl lady_friend,a girl or young woman with whom a man is romantically involved; "his girlfriend kicked him out"
+43318,girlhood maidenhood maidhood,the childhood of a girl
+43319,girlishness,being characteristic of a girl
+43320,giro,a British financial system in which a bank or a post office transfers money from one account to another when they receive authorization to do so
+43321,giro giro_cheque,a check given by the British government to someone who is unemployed; it can be cashed either at a bank or at the post office
+43322,giro_account,an account at a post office that can be used in similar ways to an account at a bank
+43323,girth,the distance around a person's body
+43324,gitana,a Spanish female Gypsy
+43325,gitano,a Spanish male Gypsy
+43326,give spring springiness,the elasticity of something that can be stretched and returns to its original length
+43327,give-and-go,a basketball maneuver; one offensive player passes the ball to another, then runs toward the basket to take a return pass
+43328,giveaway,a gift of public land or resources for the private gain of a limited group
+43329,giveaway,an unintentional disclosure
+43330,given presumption precondition,an assumption that is taken for granted
+43331,givenness,the quality of being granted as a supposition; of being acknowledged or assumed
+43332,giver,someone who devotes himself completely; "there are no greater givers than those who give themselves"
+43333,giving,the imparting of news or promises etc.; "he gave us the news and made a great show of the giving"; "giving his word of honor seemed to come too easily"
+43334,giving,disposing of property by voluntary transfer without receiving value in return; "the alumni followed a program of annual giving"
+43335,giving gift,the act of giving
+43336,giving_up yielding surrender,a verbal act of admitting defeat
+43337,gizzard ventriculus gastric_mill,thick-walled muscular pouch below the crop in many birds and reptiles for grinding food
+43338,glabella mesophyron,a smooth prominence of the frontal bone between and above the eyebrows; the most forward projecting point of the forehead in the midline at the level of the supraorbital ridges
+43339,glacial_boulder,a boulder that has been carried by a glacier to a place far distant from its place of origin
+43340,glaciation,the condition of being covered with glaciers or masses of ice; the result of glacial action; "Agassiz recognized marks of glaciation all over northern Europe"
+43341,glaciation,the process of covering the earth with glaciers or masses of ice
+43342,glacier,a slowly moving mass of ice
+43343,glacier_lily snow_lily Erythronium_grandiflorum,dogtooth violet of western North America having bright yellow flowers
+43344,glad_hand,a warm welcome; may be insincere
+43345,glade_mallow Napaea_dioica,tall coarse American herb having palmate leaves and numerous small white dioecious flowers; found wild in most alluvial soils of eastern and central United States
+43346,gladiator,(ancient Rome) a professional combatant or a captive who entertained the public by engaging in mortal combat
+43347,gladiolus corpus_sternum,the large central part of the breastbone
+43348,gladiolus gladiola glad sword_lily,any of numerous plants of the genus Gladiolus native chiefly to tropical and South Africa having sword-shaped leaves and one-sided spikes of brightly colored funnel-shaped flowers; widely cultivated
+43349,gladness gladfulness gladsomeness,experiencing joy and pleasure
+43350,glamor glamour,alluring beauty or charm (often with sex-appeal)
+43351,glamorization glamorisation glamourization glamourisation,the act of glamorizing; making something or someone more beautiful (often in a superficial way)
+43352,glance glimpse coup_d'oeil,a quick look
+43353,gland secretory_organ secretor secreter,any of various organs that synthesize substances needed by the body and release it through ducts or directly into the bloodstream
+43354,glanders,a destructive and contagious bacterial disease of horses that can be transmitted to humans
+43355,glandular_disease gland_disease glandular_disorder adenosis,a disorder of the glands of the body
+43356,glans,a small rounded structure; especially that at the end of the penis or clitoris
+43357,glans_clitoridis,small mass of erectile tissue at the end of the body of the clitoris
+43358,glans_penis,the conical mass of erectile tissue that forms the head of the penis
+43359,glare blaze brilliance,a light within the field of vision that is brighter than the brightness to which the eyes are adapted; "a glare of sunlight"
+43360,glare glower,an angry stare
+43361,glasnost,a policy of the Soviet government allowing freer discussion of social problems
+43362,glass,a brittle transparent solid with irregular atomic structure
+43363,glass,glassware collectively; "She collected old glass"
+43364,glass drinking_glass,a container made of glass for holding liquids while drinking
+43365,glass glassful,the quantity a glass will hold
+43366,glass_ceiling,a ceiling based on attitudinal or organizational bias in the work force that prevents minorities and women from advancing to leadership positions
+43367,glass_cutter,a tool for cutting glass
+43368,glass_cutter glass-cutter,someone who cuts or grinds designs on glass
+43369,glass_cutter glass-cutter glassworker glazier glazer,someone who cuts flat glass to size
+43370,glass_eye,prosthesis consisting of an artificial eye made of glass
+43371,glass_lizard glass_snake joint_snake,snakelike lizard of Europe and Asia and North America with vestigial hind limbs and the ability to regenerate its long fragile tail
+43372,glass_sponge,a siliceous sponge (with glassy spicules) of the class Hyalospongiae
+43373,glass_wool,glass fibers spun and massed into bundles resembling wool
+43374,glassblower,someone skilled in blowing bottles from molten glass
+43375,glasses_case,a case for carrying spectacles
+43376,glassmaker,someone who makes glass
+43377,glassware glasswork,an article of tableware made of glass
+43378,glassworks,a workplace where glass is made
+43379,glasswort samphire Salicornia_europaea,fleshy maritime plant having fleshy stems with rudimentary scalelike leaves and small spikes of minute flowers; formerly used in making glass
+43380,glaucoma,an eye disease that damages the optic nerve and impairs vision (sometimes progressing to blindness); "contrary to popular belief, glaucoma is not always caused by elevated intraocular pressure"
+43381,glauconite,a green mineral consisting of hydrated silicate of potassium or iron or magnesium or aluminum; found in greensand
+43382,glaze,any of various thin shiny (savory or sweet) coatings applied to foods
+43383,glaze,a glossy finish on a fabric
+43384,glaze,a coating for ceramics, metal, etc.
+43385,gleam gleaming glimmer,a flash of light (especially reflected light)
+43386,gleam gleaming glow lambency,an appearance of reflected light
+43387,gleaner,someone who picks up grain left in the field by the harvesters
+43388,gleaner,someone who gathers something in small pieces (e.g. information) slowly and carefully
+43389,gleba,fleshy spore-bearing inner mass of e.g. a puffball or stinkhorn
+43390,glebe,plot of land belonging to an English parish church or an ecclesiastical office
+43391,glebe_house,a parsonage (especially one provided for the holder of a benefice)
+43392,glee_club,a club organized to sing together
+43393,gleet,a thin morbid discharge as from a wound or especially chronic gonorrhea
+43394,glen,a narrow secluded valley (in the mountains)
+43395,glenoid_fossa glenoid_cavity,the concavity in the head of the scapula that receives the head of the humerus to form the shoulder joint
+43396,glenoid_fossa mandibular_fossa,a deep concavity in the temporal bone at the root of the zygomatic arch that receives the condyle of the mandible
+43397,glibness slickness,a kind of fluent easy superficiality; "the glibness of a high-pressure salesman"
+43398,glide gliding sailplaning soaring sailing,the activity of flying a glider
+43399,glider sailplane,aircraft supported only by the dynamic action of air against its surfaces
+43400,gliding_joint articulatio_plana,a freely moving joint in which the articulations allow only gliding motions
+43401,glimpse,a vague indication; "he caught only a glimpse of the professor's meaning"
+43402,glimpse,a brief or incomplete view; "from the window he could catch a glimpse of the lake"
+43403,glint,a spatially localized brightness
+43404,glioblastoma spongioblastoma,a fast-growing malignant brain tumor composed of spongioblasts; nearly always fatal
+43405,glioma,a tumor of the brain consisting of neuroglia
+43406,glipizide Glucotrol,an oral antidiabetic drug (trade name Glucotrol) that stimulates the release of insulin from the pancreas
+43407,gliricidia,any of several small deciduous trees valued for their dark wood and dense racemes of nectar-rich pink flowers grown in great profusion on arching branches; roots and bark and leaves and seeds are poisonous
+43408,glissade,(ballet) a gliding or sliding step in ballet
+43409,glissando,a rapid series of ascending or descending notes on the musical scale
+43410,glitter glister glisten scintillation sparkle,the quality of shining with a bright reflected light
+43411,glitter sparkle coruscation,the occurrence of a small flash or spark
+43412,gloat gloating glee,malicious satisfaction
+43413,global_aphasia total_aphasia,loss of all ability to communicate
+43414,global_warming,an increase in the average temperature of the earth's atmosphere (especially a sustained increase that causes climatic changes)
+43415,globalization globalisation,growth to a global or worldwide scale; "the globalization of the communication industry"
+43416,globe,a sphere on which a map (especially of the earth) is represented
+43417,globe_amaranth bachelor's_button Gomphrena_globosa,tropical American herb having rose to red or purple flowers that can be dried without losing color
+43418,globe_lily fairy_lantern,any of several plants of the genus Calochortus having egg-shaped flowers
+43419,globe_mallow false_mallow,genus of coarse herbs and subshrubs of arid North and South America having pink or scarlet flowers and globose fruits
+43420,globe_pepper,round sweet pepper
+43421,globe_thistle,any of various plants of the genus Echinops having prickly leaves and dense globose heads of bluish flowers
+43422,globeflower globe_flower,any of several plants of the genus Trollius having globose yellow flowers
+43423,globetrotter world_traveler,someone who travels widely and often
+43424,globigerina,marine protozoan having a rounded shell with spiny processes
+43425,globin hematohiston haematohiston,a colorless protein obtained by removing heme from hemoglobin; the oxygen carrying compound in red blood cells
+43426,globule,a small globe or ball
+43427,globulin,a family of proteins found in blood and milk and muscle and in plant seed
+43428,glochidium glochid,a barbed spine or bristle (often tufted on cacti)
+43429,glockenspiel orchestral_bells,a percussion instrument consisting of a set of graduated metal bars mounted on a frame and played with small hammers
+43430,glogg,Scandinavian punch made of claret and aquavit with spices and raisins and orange peel and sugar
+43431,glomerule,a compacted or sessile cyme
+43432,glomerulonephritis,nephritis marked by inflammation of the glomeruli of the kidney; characterized by decreased production of urine and by the presence of blood and protein in the urine and by edema
+43433,glomerulus,a small intertwined group of capillaries in the malpighian body; it filters the blood during urine formation
+43434,gloom gloominess glumness,an atmosphere of depression and melancholy; "gloom pervaded the office"
+43435,gloom gloominess somberness sombreness,a feeling of melancholy apprehension
+43436,gloom somberness sombreness,a state of partial or total darkness; "he struck a match to dispel the gloom"
+43437,gloominess lugubriousness sadness,the quality of excessive mournfulness and uncheerfulness
+43438,glop,any gummy shapeless matter; usually unpleasant
+43439,glorification,the act of glorifying (as in worship); "the glorification of God"
+43440,gloriosa glory_lily climbing_lily creeping_lily Gloriosa_superba,any plant of the genus Gloriosa of tropical Africa and Asia; a perennial herb climbing by means of tendrils at leaf tips having showy yellow to red or purple flowers; all parts are poisonous
+43441,glory glorification,a state of high honor; "he valued glory above life itself"
+43442,glory resplendence resplendency,brilliant radiant beauty; "the glory of the sunrise"
+43443,glory_hole lazaretto,a small locker at the stern of a boat or between decks of a ship
+43444,glory_pea clianthus,any of various shrubs or vines of the genus Clianthus having compound leaves and pea-like red flowers in drooping racemes
+43445,gloss rubric,an explanation or definition of an obscure word in a text
+43446,glossalgia glossodynia,pain in the tongue
+43447,glossarist,a scholiast who writes glosses or glossaries
+43448,glossary gloss,an alphabetical list of technical terms in some specialized field of knowledge; usually published as an appendix to a text on that field
+43449,glossitis,inflammation of the tongue
+43450,glossolalia,repetitive nonmeaningful speech (especially that associated with a trance state or religious fervor)
+43451,glossopharyngeal_nerve nervus_glossopharyngeus ninth_cranial_nerve,sensory nerve to the pharynx and back of the tongue; motor fibers innervate muscles that elevate the pharynx and larynx; includes parasympathetic fibers to the otic ganglion
+43452,glossoptosis,abnormal downward or back placement of the tongue
+43453,glossy,a photograph that is printed on smooth shiny paper
+43454,glossy_snake Arizona_elegans,nocturnal burrowing snake of western United States with shiny tan scales
+43455,glottal_stop glottal_plosive glottal_catch,a stop consonant articulated by releasing pressure at the glottis; as in the sudden onset of a vowel
+43456,glottis,the vocal apparatus of the larynx; the true vocal folds and the space between them where the voice tone is generated
+43457,glottochronology,the determination of how long ago different languages evolved from a common source language; "he mapped the glottochronology of the Romance languages"
+43458,glove,handwear: covers the hand and wrist
+43459,glove_anesthesia,a mental disorder involving loss of sensitivity in the hand and wrist; "since no combination of nerves serve this area a glove anesthesia is clearly psychogenic in origin"
+43460,glove_compartment,compartment on the dashboard of a car
+43461,glove_leather,leather suitable for making gloves
+43462,glow,a steady even light without flames
+43463,glow,a feeling of considerable warmth; "the glow of new love"; "a glow of regret"
+43464,glow_lamp,a gas-discharge tube with a hot cathode; used in stroboscopes
+43465,glow_tube,a gas-discharge tube consisting of a cold cathode and a diode in a tube filled with gas; the color of the glow depends on the particular gas
+43466,glowworm,the luminous larva or wingless grub-like female of a firefly
+43467,gloxinia,any of several plants of the genera Gloxinia or Sinningia (greenhouse gloxinias) having showy bell-shaped flowers
+43468,glucagon,a hormone secreted by the pancreas; stimulates increases in blood sugar levels in the blood (thus opposing the action of insulin)
+43469,glucocorticoid,a steroid hormone that is produced by the adrenal cortex of animals; affects functioning of gonads and has anti-inflammatory activity
+43470,glucosamine,an amino derivative of glucose that is a component of many polysaccharides
+43471,glucose,a monosaccharide sugar that has several forms; an important source of physiological energy
+43472,glucose_tolerance_test,test of the body's ability to metabolize carbohydrates; used in the diagnosis of hypoglycemia and diabetes mellitus
+43473,glucoside,a glycoside derived from glucose
+43474,glucosuria,the presence of abnormally high levels of glucose in the urine
+43475,glue gum mucilage,cement consisting of a sticky substance that is used as an adhesive
+43476,glume,small dry membranous bract found in inflorescences of Gramineae and Cyperaceae
+43477,gluon,a gauge boson that mediates strong interaction among quarks
+43478,glut oversupply surfeit,the quality of being so overabundant that prices fall
+43479,glutamate,a salt or ester of glutamic acid
+43480,glutamic_acid glutaminic_acid,an amino acid occurring in proteins; important in the nitrogen metabolism of plants; used in monosodium glutamate to enhance the flavor of meats
+43481,glutamic_oxalacetic_transaminase glutamic_oxaloacetic_transaminase,an enzyme involved in transamination
+43482,glutamine,a crystalline amino acid occurring in proteins; important in protein metabolism
+43483,glutathione_peroxidase,an enzyme in the body that is a powerful scavenger of free radicals
+43484,gluteal_artery arteria_glutes,branches of the internal iliac artery that supply the hip joint and gluteal region
+43485,gluteal_vein vena_gluteus,veins draining the gluteal muscles on either side of the body
+43486,glutelin,a simple protein found in the seeds of cereals
+43487,gluten,a protein substance that remains when starch is removed from cereal grains; gives cohesiveness to dough
+43488,gluten-free_diet,diet prescribed to treat celiac disease; eliminates such foods as wheat and rye and oats and beans and cabbage and turnips and cucumbers that are rich in gluten
+43489,gluten_bread,bread made with gluten flour
+43490,glutethimide Doriden,sedative (trade name Doriden) used to treat some sleep disorders
+43491,gluteus gluteus_muscle gluteal_muscle glute,any one of three large skeletal muscles that form the buttock and move the thigh
+43492,gluteus_maximus,the outermost of the three gluteal muscles
+43493,gluteus_medius,the middle of the three gluteal muscles
+43494,gluteus_minimus,the innermost of the three gluteal muscles
+43495,glutton Gulo_gulo wolverine,musteline mammal of northern Eurasia
+43496,glutton gourmand gourmandizer trencherman,a person who is devoted to eating and drinking to excess
+43497,gluttony,habitual eating to excess
+43498,gluttony overeating gula,eating to excess (personified as one of the deadly sins)
+43499,glyburide DiaBeta Micronase,an oral antidiabetic drug (trade names DiaBeta and Micronase) that stimulates the release of insulin from the pancreas
+43500,glyceraldehyde glyceric_aldehyde,a sweet crystalline aldehyde formed by the breakdown of sugars
+43501,glyceric_acid,a syrupy acid obtained by oxidation of glycerol or glyceraldehyde
+43502,glyceride acylglycerol,an ester of glycerol and fatty acids that occurs naturally as fats and fatty oils; "fresh fats contain glycerides of fatty acids and very little free acid"
+43503,glycerin_jelly,a mixture of glycerin and gelatin that is used in histology for mounting specimens
+43504,glycerinated_gelatin,a gelatinous preparation made from gelatin and glycerin and water; used as a base for ointments and suppositories
+43505,glycerite glycerole,a medicine made by mixing a substance in glycerin
+43506,glycerogelatin glycerogel,a medicated skin preparation made from glycerin and glycerinated gelatin
+43507,glycerol glycerin glycerine,a sweet syrupy trihydroxy alcohol obtained by saponification of fats and oils
+43508,glyceryl,a trivalent radical derived from glycerol by removing the three hydroxyl radicals
+43509,glyceryl_ester,an ester of glycerol
+43510,glycine,the simplest amino acid found in proteins and the principal amino acid in sugar cane
+43511,glycogen animal_starch,one form in which body fuel is stored; stored primarily in the liver and broken down into glucose when needed by the body
+43512,glycogenesis,the formation in animals of glycogen from glucose
+43513,glycogenesis,the conversion of glucose to glycogen when the glucose in the blood exceeds the demand
+43514,glycolic_acid glycollic_acid hydroxyacetic_acid,a translucent crystalline compound found in sugar cane and sugar beets and unripe grapes
+43515,glycolysis,a metabolic process that breaks down carbohydrates and sugars through a series of reactions to either pyruvic acid or lactic acid and releases energy for the body in the form of ATP
+43516,glycoprotein,a conjugated protein having a carbohydrate component
+43517,glycoside,a group of compounds derived from monosaccharides
+43518,glycosuria,the presence of abnormally high levels of sugar in the urine
+43519,glyph,glyptic art in the form of a symbolic figure carved or incised in relief
+43520,glyptic_art glyptography,carvings or engravings (especially on precious stones)
+43521,glyptics lithoglyptics,the art of engraving on precious stones
+43522,glyptography,carving or engraving (especially on stones)
+43523,gnat,any of various small biting flies: midges; biting midges; black flies; sand flies
+43524,gnat,(British usage) mosquito
+43525,gnatcatcher,very small North American and South American warblers
+43526,gnathion,the most inferior point of the mandible in the midline
+43527,gnathostome,a vertebrate animal possessing true jaws
+43528,gneiss,a laminated metamorphic rock similar to granite
+43529,gnetum Gnetum_gnemon,small tropical tree with tiered branches and divaricate branchlets having broad glossy dark green leaves; exploited for its edible young leaves and seeds that provide a fine flour
+43530,gnocchi,(Italian) a small dumpling made of potato or flour or semolina that is boiled or baked and is usually served with a sauce or with grated cheese
+43531,gnome,a short pithy saying expressing a general truth
+43532,gnome dwarf,a legendary creature resembling a tiny old man; lives in the depths of the earth and guards buried treasure
+43533,gnomon,indicator provided by the stationary arm whose shadow indicates the time on the sundial
+43534,gnosis,intuitive knowledge of spiritual truths; said to have been possessed by ancient Gnostics
+43535,gnu wildebeest,large African antelope having a head with horns like an ox and a long tufted tail
+43536,go go_game,a board game for two players who place counters on a grid; the object is to surround and so capture the opponent's counters
+43537,go spell tour turn,a time period for working (after which you will be relieved by someone else); "it's my go"; "a spell of work"
+43538,go-getter whizz-kid whiz-kid ball_of_fire,someone whose career progresses rapidly
+43539,go-kart,a small low motor vehicle with four wheels and an open framework; used for racing
+43540,go-slow,a form of protest by workers in which they deliberately slow down in order to cause problem from their employers
+43541,go_board,a board used for playing go
+43542,goa_bean,Old World tropical bean
+43543,goad goading prod prodding urging spur spurring,a verbalization that encourages you to attempt something; "the ceaseless prodding got on his nerves"
+43544,goal,game equipment consisting of the place toward which players of a game try to advance a ball or puck in order to score points
+43545,goal,a successful attempt at scoring; "the winning goal came with less than a minute left to play"
+43546,goal end,the state of affairs that a plan is intended to achieve and that (when achieved) terminates behavior intended to achieve it; "the ends justify the means"
+43547,goal-kick,(rugby) an attempt to kick a goal
+43548,goal-kick,(association football) a kick by the defending side after the attacking side sends the ball over the goal-line
+43549,goal_line,a line marking each end of the playing field or pitch; where the goals stand
+43550,goalkeeper goalie goaltender netkeeper,the defensive position on an ice hockey or soccer or lacrosse team who stands in front of the goal and tries to prevent opposing players from scoring
+43551,goalkeeper goalie goaltender netkeeper netminder,the soccer or hockey player assigned to protect the goal
+43552,goalmouth,(sports) the area immediately in front of the goal
+43553,goalpost,one of a pair of posts (usually joined by a crossbar) that are set up as a goal at each end of a playing field
+43554,goat caprine_animal,any of numerous agile ruminants related to sheep but having a beard and straight horns
+43555,goat's_rue goat_rue Galega_officinalis,tall bushy European perennial grown for its pinnate foliage and slender spikes of blue flowers; sometimes used medicinally
+43556,goat_antelope,bovid related to goats but having antelope-like features: mountain goats; gorals; serows; chamois; gnu goats
+43557,goat_cheese chevre,made from goats' milk
+43558,goat_grass Aegilops_triuncalis,European grass naturalized as a weed in North America; sharp-pointed seeds cause injury when eaten by livestock
+43559,goat_herder goatherd,a person who tends a flock of goats
+43560,goat_willow florist's_willow pussy_willow Salix_caprea,much-branched Old World willow having large catkins and relatively large broad leaves
+43561,goatee,a small chin beard trimmed to a point; named for its resemblance to a goat's beard
+43562,goatfish red_mullet surmullet Mullus_surmuletus,brightly colored tropical fishes with chin barbels
+43563,goats'_milk,the milk of a goat
+43564,goatsfoot goat's_foot Oxalis_caprina,short-stemmed South African plant with bluish flowers
+43565,goatskin,the hide of a goat
+43566,goatsucker nightjar caprimulgid,mainly crepuscular or nocturnal nonpasserine birds with mottled greyish-brown plumage and large eyes; feed on insects
+43567,gob,a lump of slimy stuff; "a gob of phlegm"
+43568,gobbet,a lump or chunk of raw meat
+43569,gobble,the characteristic sound made by a turkey cock
+43570,gobbledygook,incomprehensible or pompous jargon of specialists
+43571,gobbler,a hasty eater who swallows large mouthfuls
+43572,goblet,a drinking glass with a base and stem
+43573,goblet_cell,an epithelial cell that secretes mucous
+43574,goblin hob hobgoblin,(folklore) a small grotesque supernatural creature that makes trouble for human beings
+43575,goby gudgeon,small spiny-finned fish of coastal or brackish waters having a large head and elongated tapering body having the ventral fins modified as a sucker
+43576,god,a man of such superior qualities that he seems like a deity to other people; "he was a god among men"
+43577,godchild,an infant who is sponsored by an adult (the godparent) at baptism
+43578,goddaughter,a female godchild
+43579,goddess,a female deity
+43580,godfather,any man who serves as a sponsor for a child at baptism
+43581,godfather,someone having a relation analogous to that of a male sponsor to his godchild
+43582,godliness,piety by virtue of being a godly person
+43583,godmother,any woman who serves as a sponsor for a child at baptism
+43584,godown,(in India and Malaysia) a warehouse
+43585,godparent,a person who sponsors someone (the godchild) at baptism
+43586,godson,a male godchild
+43587,godwit,large wading bird that resembles a curlew; has a long slightly upturned bill
+43588,goethite gothite,a red or yellow or brown mineral; an oxide of iron that is a common constituent of rust
+43589,gofer,an employee whose duties include running errands
+43590,goffer gauffer,an ornamental frill made by pressing pleats
+43591,goffer gauffer goffering_iron gauffering_iron,an iron used to press pleats and ridges
+43592,goffer gopher,a zealously energetic person (especially a salesman)
+43593,goggles,(plural) tight-fitting spectacles worn to protect the eyes
+43594,going sledding,advancing toward a goal; "persuading him was easy going"; "the proposal faces tough sledding"
+43595,going-out-of-business_sale,a sale of all the tangible assets of a business that is about to close; "during the Great Depression going-out-of-business sales were very common"
+43596,going-over,a careful and thorough inspection
+43597,going_ashore,debarkation from a boat or ship
+43598,goiter goitre struma thyromegaly,abnormally enlarged thyroid gland; can result from underproduction or overproduction of hormone or from a deficiency of iodine in the diet
+43599,goitrogen,any substance (such as thiouracil) that induces the formation of a goiter
+43600,gold,coins made of gold
+43601,gold,great wealth; "Whilst that for which all virtue now is sold, and almost every vice--almighty gold"--Ben Jonson
+43602,gold,something likened to the metal in brightness or preciousness or superiority etc.; "the child was as good as gold"; "she has a heart of gold"
+43603,gold Au atomic_number_79,a soft yellow malleable ductile (trivalent and univalent) metallic element; occurs mainly as nuggets in rocks and alluvial deposits; does not react with most chemicals but is attacked by chlorine and aqua regia
+43604,gold-crowned_kinglet Regulus_satrata,American golden-crested kinglet
+43605,gold-tail_moth Euproctis_chrysorrhoea,white furry-bodied European moth with a yellow tail tuft
+43606,gold_coast,a rich neighborhood noted for expensive homes and luxurious living; usually along a coastal area; "Chicago's gold coast is along Lake Michigan"
+43607,gold_digger,a woman who associates with or marries a rich man in order to get valuables from him through gifts or a divorce settlement
+43608,gold_dust,the particles and flakes (and sometimes small nuggets) of gold obtained in placer mining
+43609,gold_fern Pityrogramma_chrysophylla,fern of West Indies and South America having fronds with bright golden-yellow undersides
+43610,gold_fever,greed and the contagious excitement of a gold rush
+43611,gold_foil,foil made of gold
+43612,gold_leaf,a very thin form of gold foil
+43613,gold_medal,a trophy made of gold (or having the appearance of gold) that is usually awarded for winning first place in a competition
+43614,gold_miner gold_digger gold_panner,a miner who digs or pans for gold in a gold field
+43615,gold_of_pleasure Camelina_sativa,annual European false flax having small white flowers; cultivated since Neolithic times as a source of fiber and for its oil-rich seeds; widely naturalized in North America
+43616,gold_plate,tableware that is plated with gold
+43617,gold_plate,a thin plating of gold on something
+43618,gold_rush,a large migration of people to a newly discovered gold field
+43619,gold_standard,a monetary standard under which the basic unit of currency is defined by a stated quantity of gold
+43620,gold_standard,a paragon of excellence; "academic education is the gold standard against which other educational activity is pejoratively judged"
+43621,goldbeater gold-beater,an artisan who beats gold into gold leaf
+43622,goldbrick,a soldier who performs his duties without proper care or effort
+43623,goldbrick,a brick-shaped block that looks like gold but is not
+43624,goldbrick,anything that is supposed to be valuable but turns out to be worthless
+43625,goldbrick goof-off ne'er-do-well good-for-nothing no-account good-for-naught,an idle worthless person
+43626,goldcrest golden-crested_kinglet Regulus_regulus,European kinglet with a black-bordered yellow crown patch
+43627,golden-beard_penstemon Penstemon_barbatus,plant of southwestern United States having long open clusters of scarlet flowers with yellow hairs on lower lip
+43628,golden_age,a time period when some activity or skill was at its peak; "it was the golden age of cinema"
+43629,golden_age,any period (sometimes imaginary) of great peace and prosperity and happiness
+43630,golden_algae,algae having the pigments chlorophyll and carotene and xanthophyll
+43631,golden_aster,any of several shrubby herbs or subshrubs of the genus Chrysopsis having bright golden-yellow flower heads that resemble asters; throughout much of United States and into Canada
+43632,golden_barrel_cactus Echinocactus_grusonii,large cactus of east central Mexico having golden to pale yellow flowers and spines
+43633,golden_calf,(Old Testament) an idol made by Aaron for the Israelites to worship; destroyed by Moses; it is now used to refer to anything worshipped undeservedly
+43634,golden_calla,any of several callas of the genus Zantedeschia having yellow spathes
+43635,golden_clematis Clematis_tangutica,Chinese clematis with serrate leaves and large yellow flowers
+43636,golden_club Orontium_aquaticum,aquatic plant of the southeastern United States having blue-green leaves and a spadix resembling a club covered with tiny yellow flowers
+43637,golden_cup Mexican_tulip_poppy Hunnemania_fumariifolia,native of Mexican highlands grown for its glossy clear yellow flowers and blue-grey finely dissected foliage
+43638,golden_eagle Aquila_chrysaetos,large eagle of mountainous regions of the northern hemisphere having a golden-brown head and neck
+43639,golden_fern Pityrogramma_calomelanos_aureoflava,tropical American fern having fronds with light golden undersides
+43640,golden_fern leather_fern Acrostichum_aureum,stout tropical swamp fern (especially tropical America) having large fronds with golden yellow sporangia covering the undersides
+43641,golden_fig Florida_strangler_fig strangler_fig wild_fig Ficus_aurea,a strangler tree native to southern Florida and West Indies; begins as an epiphyte eventually developing many thick aerial roots and covering enormous areas
+43642,golden_glow double_gold hortensia Rudbeckia_laciniata_hortensia,very tall branching herb with showy much-doubled yellow flower heads
+43643,golden_groundsel golden_ragwort Packera_aurea Senecio_aureus,weedy herb of the eastern United States to Texas having golden-yellow flowers; sometimes becomes invasive; sometimes placed in genus Senecio
+43644,golden_hamster Syrian_hamster Mesocricetus_auratus,small light-colored hamster often kept as a pet
+43645,golden_handshake,a lucrative severance agreement offered to an employee (usually as an incentive to retire)
+43646,golden_larch Pseudolarix_amabilis,Chinese deciduous conifer resembling a larch with golden yellow leaves
+43647,golden_mean,the middle between extremes
+43648,golden_mole,mole of southern Africa having iridescent guard hairs mixed with the underfur
+43649,golden_oriole Oriolus_oriolus,bright yellow songbird with black wings
+43650,golden_parachute,giving top executives lucrative benefits that must be paid by the acquirer if they are discharged after a takeover
+43651,golden_pheasant Chrysolophus_pictus,brightly colored crested pheasant of mountains of western and central Asia
+43652,golden_plover,plovers of Europe and America having the backs marked with golden-yellow spots
+43653,golden_polypody serpent_fern rabbit's-foot_fern Phlebodium_aureum Polypodium_aureum,tropical American fern with brown scaly rhizomes cultivated for its large deeply lobed deep bluish-green fronds; sometimes placed in genus Polypodium
+43654,golden_pothos pothos ivy_arum Epipremnum_aureum Scindapsus_aureus,evergreen liana widely cultivated for its variegated foliage
+43655,golden_retriever,an English breed having a long silky golden coat
+43656,golden_rule,any important rule; "the golden rule of teaching is to be clear"
+43657,golden_saxifrage golden_spleen,any of various low aquatic herbs of the genus Chrysosplenium
+43658,golden_section golden_mean,the proportional relation between two divisions of line or two dimension of a plane figure such that short : long :: long : (short + long)
+43659,golden_shiner Notemigonus_crysoleucas,shiner of eastern North America having golden glints; sometimes also called `bream'
+43660,golden_shower_tree drumstick_tree purging_cassia pudding_pipe_tree canafistola canafistula Cassia_fistula,deciduous or semi-evergreen tree having scented sepia to yellow flowers in drooping racemes and pods whose pulp is used medicinally; tropical Asia and Central and South America and Australia
+43661,golden_star golden_stars Bloomeria_crocea,California plant having grasslike leaves and showy orange flowers
+43662,golden_thistle,any of several spiny Mediterranean herbs of the genus Scolymus having yellow flower heads
+43663,golden_wattle Acacia_pycnantha,shrubby Australian tree having clusters of fragrant golden yellow flowers; widely cultivated as an ornamental
+43664,golden_wedding_anniversary,the 50th wedding anniversary
+43665,golden_willow Salix_alba_vitellina Salix_vitellina,European willow having greyish leaves and yellow-orange twigs used in basketry
+43666,golden_yarrow Eriophyllum_lanatum,greyish woolly leafy perennial with branched stems ending in leafless stalks bearing golden-yellow flower heads; dry areas western North America
+43667,golden_years,the time of life after retirement from active work
+43668,goldenbush,a plant of the genus Haplopappus
+43669,goldenbush,any of various much-branched yellow-flowered shrubs of the genus Chrysothamnus; western North America
+43670,goldeneye golden-eyed_fly,a variety of green lacewing
+43671,goldeneye whistler Bucephela_clangula,large-headed swift-flying diving duck of Arctic regions
+43672,goldenrod,any of numerous chiefly summer-blooming and fall-blooming North American plants especially of the genus Solidago
+43673,goldenseal golden_seal yellow_root turmeric_root Hydrastis_Canadensis,perennial herb of northeastern United States having a thick knotted yellow rootstock and large rounded leaves
+43674,goldfield,a district where gold is mined
+43675,goldfields Lasthenia_chrysostoma,small slender woolly annual with very narrow opposite leaves and branches bearing solitary golden-yellow flower heads; southwestern Oregon to Baja California and Arizona; often cultivated
+43676,goldfinch Carduelis_carduelis,small European finch having a crimson face and yellow-and-black wings
+43677,goldfish Carassius_auratus,small golden or orange-red freshwater fishes of Eurasia used as pond or aquarium fishes
+43678,goldfish_bowl fish_bowl fishbowl,a state of affairs in which you have no privacy; "the president lives in a goldfish bowl"
+43679,goldilocks goldilocks_aster Aster_linosyris Linosyris_vulgaris,early-flowering perennial of southern and southeastern Europe with flower heads resembling those of goldenrod
+43680,goldmine gold_mine,a good source of something that is desired
+43681,goldmine gold_mine,a mine where gold ore is found
+43682,goldsmith goldworker gold-worker,an artisan who makes jewelry and other objects out of gold
+43683,goldstone,aventurine spangled densely with fine gold-colored particles
+43684,goldthread golden_thread Coptis_groenlandica Coptis_trifolia_groenlandica,low-growing perennial of North America woodlands having trifoliate leaves and yellow rootstock and white flowers
+43685,golem,(Jewish folklore) an artificially created human being that is given life by supernatural means
+43686,golf golf_game,a game played on a large open course with 9 or 18 holes; the object is use as few strokes as possible in playing all the holes
+43687,golf-club_head club_head club-head clubhead,(golf) the head of the club which strikes the ball
+43688,golf_bag,golf equipment consisting of a bag for carrying golf clubs and balls
+43689,golf_ball,a small hard ball used in playing golf; dimpled to reduce wind resistance
+43690,golf_club,a club of people to play golf
+43691,golf_club golf-club golfclub club,golf equipment used by a golfer to hit a golf ball
+43692,golf_course links_course,course consisting of a large landscaped area for playing golf
+43693,golf_equipment,sports equipment used in playing golf
+43694,golf_glove,a glove worn by golfers to give a firm grip on the handle of the golf club
+43695,golf_lesson,a lesson in playing golf
+43696,golf_pro professional_golfer,someone who earns a living by playing or teaching golf
+43697,golf_range driving_range,a practice range for practicing golf shots
+43698,golf_stroke golf_shot swing,the act of swinging a golf club at a golf ball and (usually) hitting it
+43699,golf_widow,a wife who is left alone much of the time because her husband is playing golf
+43700,golfcart golf_cart,a small motor vehicle in which golfers can ride between shots
+43701,golfer golf_player linksman,someone who plays the game of golf
+43702,golfing,playing golf; "he goes south every winter for the golfing"
+43703,goliard,a wandering scholar in medieval Europe; famed for intemperance and riotous behavior and the composition of satirical and ribald Latin songs
+43704,goliath_frog Rana_goliath,largest living frog; up to a foot and weighing up to 10 lbs; Africa
+43705,golliwog golliwogg,a grotesque black doll
+43706,gomphothere,extinct elephants of Central American and South America; of the Miocene and Pleistocene
+43707,gonad sex_gland,a gland in which gametes (sex cells) are produced
+43708,gonadotropin gonadotrophin gonadotropic_hormone gonadotrophic_hormone,hormone secreted by the anterior pituitary gland and placenta; stimulates the gonads and controls reproductive activity
+43709,goncalo_alves Astronium_fraxinifolium,tall tropical American timber tree especially abundant in eastern Brazil; yields hard strong durable zebrawood with straight grain and dark strips on a pinkish to yellowish ground; widely used for veneer and furniture and heavy construction
+43710,gondang_wax fig_wax,a hard cream-colored wax obtained from a Javanese fig tree
+43711,gondola,long narrow flat-bottomed boat propelled by sculling; traditionally used on canals of Venice
+43712,gondola_car gondola,a low flat-bottomed freight car with fixed sides but no roof
+43713,gondolier gondoliere,a (Venetian) boatman who propels a gondola
+43714,goner toast,a person in desperate straits; someone doomed; "I'm a goner if this plan doesn't work"; "one mistake and you're toast"
+43715,gong tam-tam,a percussion instrument consisting of a metal plate that is struck with a softheaded drumstick
+43716,gonif goniff ganef ganof,(Yiddish) a thief or dishonest person or scoundrel (often used as a general term of abuse)
+43717,goniometer,direction finder that determines the angular direction of incoming radio signals
+43718,gonion,the craniometric point on either side at the apex of the lower jaw
+43719,gonioscopy,an examination of the front part of the eye to check the angle where the iris meets the cornea; it is used to distinguish between open-angle glaucoma and closed-angle glaucoma
+43720,gonococcus Neisseria_gonorrhoeae,the pus-producing bacterium that causes gonorrhea
+43721,gonorrhea gonorrhoea clap,a common venereal disease caused by the bacterium Neisseria gonorrhoeae; symptoms are painful urination and pain around the urethra
+43722,good,benefit; "for your own good"; "what's the good of worrying?"
+43723,good goodness,that which is pleasing or valuable or useful; "weigh the good against the bad"; "among the highest goods of all are happiness and self-realization"
+43724,good goodness,moral excellence or admirableness; "there is much good to be found in people"
+43725,good-king-henry allgood fat_hen wild_spinach Chenopodium_bonus-henricus,European plant naturalized in North America; often collected from the wild as a potherb
+43726,good-temperedness good-humoredness good-humouredness good-naturedness,a cheerful willingness to be obliging
+43727,good_Samaritan,a person who voluntarily offers help or sympathy in times of trouble
+43728,good_afternoon afternoon,a conventional expression of greeting or farewell
+43729,good_authority,testimony by someone who should know; "I have it on good authority"
+43730,good_continuation continuation law_of_continuation,a Gestalt principle of organization holding that there is an innate tendency to perceive a line as continuing its established direction
+43731,good_egg,(old-fashioned slang) a good person
+43732,good_faith straightness,having honest intentions; "he acted in good faith"; "doubt was expressed as to the good faith of the immigrants"
+43733,good_form,behavior that conforms to social conventions of the time; "it is not good form to brag about winning"
+43734,good_fortune luckiness good_luck,an auspicious state resulting from favorable outcomes
+43735,good_guy,any person who is on your side
+43736,good_health healthiness,the state of being vigorous and free from bodily or mental disease
+43737,good_humor good_humour good_temper amiability,a cheerful and agreeable mood
+43738,good_luck fluke good_fortune,a stroke of luck
+43739,good_morning morning,a conventional expression of greeting or farewell
+43740,good_nature,a cheerful, obliging disposition
+43741,good_night,a conventional expression of farewell
+43742,good_old_boy good_ole_boy good_ol'_boy,a white male Southerner with an unpretentious convivial manner and conservative or intolerant attitudes and a strong sense of fellowship with and loyalty to other members of his peer group
+43743,good_part,a place of especial strength
+43744,good_person,a person who is good to other people
+43745,good_time blast,a highly pleasurable or exciting experience; "we had a good time at the party"; "celebrating after the game was a blast"
+43746,good_weather,weather suitable for outdoor activities
+43747,good_will goodwill,(accounting) an intangible asset valued according to the advantage or reputation a business has acquired (over and above its tangible assets)
+43748,good_will goodwill,the friendly hope that something will succeed
+43749,good_word,good news
+43750,goody-goody,a person who behaves extremely well in order to please a superior
+43751,googly wrong_'un bosie bosie_ball,a cricket ball bowled as if to break one way that actually breaks in the opposite way
+43752,googol,a cardinal number represented as 1 followed by 100 zeros (ten raised to the power of a hundred)
+43753,googolplex,a cardinal number represented as 1 followed by a googol of zeros (ten raised to the power of a googol)
+43754,goosander Mergus_merganser,common merganser of Europe and North America
+43755,goose,flesh of a goose (domestic or wild)
+43756,goose,web-footed long-necked typically gregarious migratory aquatic birds usually larger and less aquatic than ducks
+43757,goose_barnacle gooseneck_barnacle Lepas_fascicularis,stalked barnacle that attaches to ship bottoms or floating timbers
+43758,goose_down,down of the goose
+43759,goose_grass Texas_millet Panicum_Texanum,annual weedy grass used for hay
+43760,goose_grease,grease derived from geese
+43761,goose_liver,liver of a goose used as meat
+43762,goose_step,a manner of marching with legs straight and swinging high
+43763,gooseberry,currant-like berry used primarily in jams and jellies
+43764,gooseberry gooseberry_bush Ribes_uva-crispa Ribes_grossularia,spiny Eurasian shrub having greenish purple-tinged flowers and ovoid yellow-green or red-purple berries
+43765,goosefish angler anglerfish angler_fish monkfish lotte allmouth Lophius_Americanus,fishes having large mouths with a wormlike filament attached for luring prey
+43766,goosefoot,any of various weeds of the genus Chenopodium having small greenish flowers
+43767,gooseneck,something in a thin curved form (like the neck of a goose)
+43768,gooseneck_loosestrife Lysimachia_clethroides_Duby,a variety of the loosestrife herb
+43769,gopher pocket_gopher pouched_rat,burrowing rodent of the family Geomyidae having large external cheek pouches; of Central America and southwestern North America
+43770,gopher_hole,a hole in the ground made by gophers
+43771,gopher_snake Pituophis_melanoleucus,bull snake of western North America that invades rodent burrows
+43772,gopher_tortoise gopher_turtle gopher Gopherus_polypemus,burrowing edible land tortoise of southeastern North America
+43773,goral Naemorhedus_goral,small goat antelope with small conical horns; of southern Asian mountains
+43774,gore,coagulated blood from a wound
+43775,gore panel,a piece of cloth that is generally triangular or tapering; used in making garments or umbrellas or sails
+43776,gorge,a deep ravine (usually with a river running through it)
+43777,gorgerin necking,the molding at the top of a column
+43778,gorget,armor plate that protects the neck
+43779,gorgonian gorgonian_coral,corals having a horny or calcareous branching skeleton
+43780,gorgonzola,Italian blue cheese
+43781,gorilla Gorilla_gorilla,largest anthropoid ape; terrestrial and vegetarian; of forests of central west Africa
+43782,gorse furze whin Irish_gorse Ulex_europaeus,very spiny and dense evergreen shrub with fragrant golden-yellow flowers; common throughout western Europe
+43783,goshawk Accipiter_gentilis,large hawk of Eurasia and North America used in falconry
+43784,gosling,young goose
+43785,gospel,a doctrine that is believed to be of great importance; "Newton's writings were gospel for those who followed"
+43786,gospel gospel_singing,folk music consisting of a genre of a cappella music originating with Black slaves in the United States and featuring call and response; influential on the development of other genres of popular music (especially soul)
+43787,gospel gospel_truth,an unquestionable truth; "his word was gospel"
+43788,gossamer,a gauze fabric with an extremely fine texture
+43789,gossip comment scuttlebutt,a report (often malicious) about the behavior of other people; "the divorce caused much gossip"
+43790,gossip gossiper gossipmonger rumormonger rumourmonger newsmonger,a person given to gossiping and divulging personal information about others
+43791,gossip_columnist,a journalist who writes a column of gossip about celebrities
+43792,gossiping gossipmongering,a conversation that spreads personal information about other people
+43793,gouache,an opaque watercolor prepared with gum
+43794,gouache,a watercolor executed with opaque watercolors mixed with gum
+43795,gouge,and edge tool with a blade like a trough for cutting channels or grooves
+43796,gouge,the act of gouging
+43797,gouger,an attacker who gouges out the antagonist's eye
+43798,goulash Hungarian_goulash gulyas,a rich meat stew highly seasoned with paprika
+43799,gourd,any of numerous inedible fruits with hard rinds
+43800,gourd calabash,bottle made from the dried shell of a bottle gourd
+43801,gourd gourd_vine,any vine of the family Cucurbitaceae that bears fruits with hard rinds
+43802,gourde,the basic unit of money in Haiti
+43803,gourmandism,the disposition and habits of a gourmand
+43804,gout gouty_arthritis urarthritis,a painful inflammation of the big toe and foot caused by defects in uric acid metabolism resulting in deposits of the acid and its salts in the blood and joints
+43805,governed,the body of people who are citizens of a particular government; "governments derive their just powers from the consent of the governed"--Declaration of Independence
+43806,governess,a woman entrusted with the care and supervision of a child (especially in a private home)
+43807,governing_board,a board that manages the affairs of an institution
+43808,government,(government) the system or form by which a community or other political unit is governed; "tyrannical government"
+43809,government authorities regime,the organization that is the governing authority of a political unit; "the government reduced taxes"; "the matter was referred to higher authorities"
+43810,government governing governance government_activity administration,the act of governing; exercising authority; "regulations for the governing of state prisons"; "he had considerable experience of government"
+43811,government-in-exile,a temporary government moved to or formed in a foreign land by exiles who hope to rule when their country is liberated
+43812,government_agent,a representative or official of a government or administrative department of a government
+43813,government_bond,a bond that is an IOU of the United States Treasury; considered the safest security in the investment world
+43814,government_building,a building that houses a branch of government
+43815,government_department,a department of government
+43816,government_income government_revenue,income available to the government
+43817,government_office,an office where government employees work
+43818,government_officials officialdom,people elected or appointed to administer a government
+43819,government_security agency_security,a security issued by United States government agencies or the Farm Credit System
+43820,governor,the head of a state government
+43821,governor regulator,a control that maintains a steady speed in a machine (as by controlling the supply of fuel)
+43822,governor's_plum governor_plum Madagascar_plum ramontchi batoko_palm Flacourtia_indica,small shrubby tree of Madagascar cultivated in tropical regions as a hedge plant and for its deep red acid fruits resembling small plums
+43823,governor's_race campaign_for_governor,a race for election to the governorship
+43824,governor_general,a governor of high rank
+43825,governorship,the office of governor
+43826,gowen_cypress Cupressus_goveniana,small sometimes shrubby tree native to California; often used as an ornamental; in some classification systems includes the pygmy cypress and the Santa Cruz cypress
+43827,gown,the members of a university as distinguished from the other residents of the town in which the university is located; "the relations between town and gown are always sensitive"
+43828,gown,a woman's dress, usually with a close-fitting bodice and a long flared skirt, often worn on formal occasions
+43829,gown robe,outerwear consisting of a long flowing garment used for official or ceremonial occasions
+43830,gown surgical_gown scrubs,protective garment worn by surgeons during operations
+43831,grab,a mechanical device for gripping an object
+43832,grab_bag,an assortment of miscellaneous items
+43833,grab_bag,a container from which a person draws a wrapped item at random without knowing the contents
+43834,grab_bar,a bar attached parallel to a wall to provide a handgrip for steadying yourself
+43835,grab_sample,a single sample or measurement taken at a specific time or over as short a period as feasible
+43836,grabber,an unpleasant person who grabs inconsiderately
+43837,grace blessing thanksgiving,a short prayer of thanks before a meal; "their youngest son said grace"
+43838,grace good_will goodwill,a disposition to kindness and compassion; "the victor's grace in treating the vanquished"
+43839,grace grace_of_God free_grace,(Christian theology) the free and unmerited favor or beneficence of God; "God's grace is manifested in the salvation of sinners"; "there but for the grace of God go I"
+43840,grace grace_period,a period of time past the deadline for fulfilling an obligation during which a penalty that would be imposed for being late is waived, especially an extended period granted as a special favor; "The payment had originally been due on April 1 but we had a grace period which expired in June."
+43841,grace gracility,elegance and beauty of movement or expression; "a beautiful figure which she used in subtle movements of unparalleled grace"
+43842,grace saving_grace state_of_grace,(Christian theology) a state of sanctification by God; the state of one who is under such divine influence; "the conception of grace developed alongside the conception of sin"; "it was debated whether saving grace could be obtained outside the membership of the church"; "the Virgin lived in a state of grace"
+43843,grace_cup,cup to be passed around for the final toast after a meal
+43844,grace_note appoggiatura acciaccatura,an embellishing note usually written in smaller size
+43845,gracefulness,beautiful carriage
+43846,gracelessness ungracefulness,an unpleasant lack of grace in carriage or form or movement or expression
+43847,gracilariid gracilariid_moth,small dull or metallic-colored tineoid moths whose larvae mine in plant leaves
+43848,graciousness,excellence of manners or social conduct
+43849,grackle crow_blackbird,long-tailed American blackbird having iridescent black plumage
+43850,grad grade,one-hundredth of a right angle
+43851,gradable_opposition,an opposition that is capable of being graded
+43852,gradation graduation,the act of arranging in grades
+43853,gradation step,relative position in a graded series; "always a step behind"; "subtle gradations in color"; "keep in step with the fashions"
+43854,grade,the gradient of a slope or road or other surface; "the road had a steep grade"
+43855,grade,a variety of cattle produced by crossbreeding with a superior breed
+43856,grade gradation,a degree of ablaut
+43857,grade ground_level,the height of the ground on which something stands; "the base of the tower was below grade"
+43858,grade level tier,a relative position or degree of value in a graded group; "lumber of the highest grade"
+43859,grade_point,a numerical value assigned to a letter grade received in a course taken at a college or university multiplied by the number of credit hours awarded for the course
+43860,grade_point_average GPA,a measure of a student's academic achievement at a college or university; calculated by dividing the total number of grade points received by the total number attempted
+43861,grade_school grammar_school elementary_school primary_school,a school for young children; usually the first 6 or 8 grades
+43862,grade_separation,a crossing that uses an underpass or overpass
+43863,grader,a judge who assigns grades to something
+43864,gradient,a graded change in the magnitude of some physical quantity or dimension
+43865,gradient slope,the property possessed by a line or surface that departs from the horizontal; "a five-degree gradient"
+43866,grading leveling,changing the ground level to a smooth horizontal or gently sloping surface
+43867,gradual,(Roman Catholic Church) an antiphon (usually from the Book of Psalms) immediately after the epistle at Mass
+43868,graduality gradualness,the quality of being gradual or of coming about by gradual stages
+43869,gradualness gentleness,the property possessed by a slope that is very gradual
+43870,graduate,a measuring instrument for measuring fluid volume; a glass container (cup or cylinder or flask) whose sides are marked with or divided into amounts
+43871,graduate_nurse trained_nurse,someone who has completed the course of study (including hospital practice) at a nurses training school
+43872,graduate_school grad_school,a school in a university offering study leading to degrees beyond the bachelor's degree
+43873,graduate_student grad_student postgraduate,a student who continues studies after graduation
+43874,graduated_cylinder,a cylindrical graduate
+43875,graduating_class,the body of students who graduate together this year
+43876,graduation,a line (as on a vessel or ruler) that marks a measurement; "the ruler had 16 graduations per inch"
+43877,graduation,the successful completion of a program of study
+43878,graffito graffiti,a rude decoration inscribed on rocks or walls
+43879,graft grafting,the act of grafting something onto something else
+43880,graft transplant,(surgery) tissue or organ transplanted from a donor to a recipient; in some cases the patient can be both donor and recipient
+43881,graham_bread,bread made of graham (whole wheat) flour
+43882,graham_cracker,semisweet whole-wheat cracker
+43883,grail,the object of any prolonged endeavor
+43884,grail Holy_Grail Sangraal,(legend) chalice used by Christ at the Last Supper
+43885,grain,the side of leather from which the hair has been removed
+43886,grain,1/60 dram; equals an avoirdupois grain or 64.799 milligrams
+43887,grain,1/7000 pound; equals a troy grain or 64.799 milligrams
+43888,grain,a cereal grass; "wheat is a grain that is grown in Kansas"
+43889,grain,a relatively small granular particle of a substance; "a grain of sand"; "a grain of sugar"
+43890,grain,the smallest possible unit of anything; "there was a grain of truth in what he said"; "he does not have a grain of sense"
+43891,grain,the direction, texture, or pattern of fibers found in wood or leather or stone or in a woven fabric; "saw the board across the grain"
+43892,grain caryopsis,dry seed-like fruit produced by the cereal grasses: e.g. wheat, barley, Indian corn
+43893,grain food_grain cereal,foodstuff prepared from the starchy grains of cereal grasses
+43894,grain metric_grain,a weight unit used for pearls or diamonds: 50 mg or 1/4 carat
+43895,grain_merchant,a merchant who deals in food grains
+43896,grain_moth,moth whose larvae feed on grain
+43897,grain_sorghum,any of several sorghums cultivated primarily for grain
+43898,grainfield grain_field,a field where grain is grown
+43899,graining woodgraining,a texture like that of wood
+43900,grains_of_paradise Guinea_grains Guinea_pepper melagueta_pepper Aframomum_melegueta,West African plant bearing pungent peppery seeds
+43901,grainy_club,a variety of grainy club mushrooms
+43902,gram gramme gm g,a metric unit of weight equal to one thousandth of a kilogram
+43903,gram_atom gram-atomic_weight,the quantity of an element whose weight in grams is numerically equal to the atomic weight of the element
+43904,gram_molecule mole mol,the molecular weight of a substance expressed in grams; the basic unit of amount of substance adopted under the Systeme International d'Unites
+43905,grama grama_grass gramma gramma_grass,pasture grass of plains of South America and western North America
+43906,gramicidin,an antibiotic produced by a soil bacterium; used chiefly as an antiseptic in treating local infections produced by Gram-positive bacteria
+43907,gramineous_plant graminaceous_plant,cosmopolitan herbaceous or woody plants with hollow jointed stems and long narrow leaves
+43908,grammar,the branch of linguistics that deals with syntax and morphology (and sometimes also deals with semantics)
+43909,grammar_school,a secondary school emphasizing Latin and Greek in preparation for college
+43910,grammarian syntactician,a linguist who specializes in the study of grammar and syntax
+43911,grammatical_category syntactic_category,(grammar) a category of words having the same grammatical properties
+43912,grammatical_meaning,the meaning of a word that depends on its role in a sentence; varies with inflectional form
+43913,grammatical_relation,a linguistic relation established by grammar
+43914,grammatical_rule rule_of_grammar,a linguistic rule for the syntax of grammatical utterances
+43915,gramophone acoustic_gramophone,an antique record player; the sound of the vibrating needle is amplified acoustically
+43916,grampus Grampus_griseus,slaty-grey blunt-nosed dolphin common in northern seas
+43917,granadilla,the egg-shaped edible fruit of tropical American vines related to passionflowers
+43918,granadilla giant_granadilla Passiflora_quadrangularis,tropical American passionflower yielding the large granadilla fruit
+43919,granadilla purple_granadillo Passiflora_edulis,Brazilian passionflower cultivated for its deep purple fruit
+43920,granadilla sweet_granadilla Passiflora_ligularis,considered best for fruit
+43921,granadilla_tree granadillo Brya_ebenus,West Indian tree yielding a fine grade of green ebony
+43922,granadilla_wood,dark red hardwood derived from the cocobolo and used in making musical instruments e.g. clarinets
+43923,granary garner,a storehouse for threshed grain or animal feed
+43924,grand_circle,a gymnastic exercise performed on the horizontal bar by swinging around it with the body fully extended
+43925,grand_dragon,a high ranking person in the Ku Klux Klan
+43926,grand_duchess,the wife of a grand duke or a woman holding that rank in her own right
+43927,grand_duchy,the domain controlled by a grand duke or grand duchess
+43928,grand_duke,a prince who rules a territory
+43929,grand_jury,a jury to inquire into accusations of crime and to evaluate the grounds for indictments
+43930,grand_larceny grand_theft,larceny of property having a value greater than some amount (the amount varies by locale)
+43931,grand_mal generalized_seizure epilepsia_major,a seizure during which the patient becomes unconscious and has convulsions over the entire body
+43932,grand_mal_epilepsy grand_mal generalized_epilepsy epilepsia_major,epilepsy in which the attacks involve loss of consciousness and tonic spasms of the musculature followed by generalized jerking
+43933,grand_mufti,the chief mufti of a district
+43934,grand_opera,opera in which all the text is sung
+43935,grand_piano grand,a piano with the strings on a horizontal harp-shaped frame; usually supported by three legs
+43936,grand_slam,winning all of the tricks in a hand of bridge
+43937,grand_total,the sum of the sums of several groups of numbers
+43938,grand_tour,an extended cultural tour of Europe taken by wealthy young Englishmen (especially in the 18th century) as part of their education
+43939,grand_tour,a sightseeing tour of a building or institution
+43940,grandchild,a child of your son or daughter
+43941,granddaughter,a female grandchild
+43942,grande_dame,a middle-aged or elderly woman who is stylish and highly respected
+43943,grandee,a nobleman of highest rank in Spain or Portugal
+43944,grandfather gramps granddad grandad granddaddy grandpa,the father of your father or mother
+43945,grandfather_clause,an exemption based on circumstances existing prior to the adoption of some policy; used to enfranchise illiterate whites in south after the American Civil War
+43946,grandfather_clock longcase_clock,a pendulum clock enclosed in a tall narrow case
+43947,grandiosity magniloquence ornateness grandiloquence rhetoric,high-flown style; excessive use of verbal ornamentation; "the grandiosity of his prose"; "an excessive ornateness of language"
+43948,grandma grandmother granny grannie gran nan nanna,the mother of your father or mother
+43949,grandmaster,a player of exceptional or world class skill in chess or bridge
+43950,grandparent,a parent of your father or mother
+43951,grandson,a male grandchild
+43952,grandstand,the audience at a stadium or racetrack
+43953,grandstand covered_stand,a stand at a racecourse or stadium consisting of tiers with rows of individual seats that are under a protective roof
+43954,grandstander,someone who performs with an eye to the applause from spectators in the grandstand
+43955,grange,an outlying farm
+43956,granite,plutonic igneous rock having visibly crystalline texture; generally composed of feldspar and mica and quartz
+43957,granite,something having the quality of granite (unyielding firmness); "a man of granite"
+43958,graniteware,a kind of stone-grey enamelware
+43959,granny,an old woman
+43960,granny's_bonnets Aquilegia_vulgaris,common European columbine having variously colored (white or blue to purple or red) short-spurred flowers; naturalized in United States
+43961,granny_knot granny,a reef knot crossed the wrong way and therefore insecure
+43962,granola,cereal made of especially rolled oats with dried fruits and nuts and honey or brown sugar
+43963,granola_bar,cookie bar made of granola
+43964,grant,any monetary aid
+43965,grant,a right or privilege that has been granted
+43966,grant assignment,(law) a transfer of property by deed of conveyance
+43967,grant subsidization subsidisation,the act of providing a subsidy
+43968,grant-in-aid,a grant to a person or school for some educational project
+43969,grant-in-aid,a grant from a central government to a local government
+43970,grantee,a recipient of a grant
+43971,granter,a person who grants or gives something
+43972,grantor,a person who makes a grant in legal form; "conveyed from grantor to grantee"
+43973,granular_pearlite globular_pearlite,if steel or iron cool very slowly the cementite may occur in globules instead of in layers
+43974,granulated_sugar,sugar in the form of small grains
+43975,granulation,the act of forming something into granules or grains; "the granulation of medicines"
+43976,granulation granulation_tissue,new connective tissue and tiny blood vessels that form on the surfaces of a wound during the healing process
+43977,granule,a tiny grain
+43978,granulocyte,a leukocyte that has granules in its cytoplasm
+43979,granuloma,a tumor composed of granulation tissue resulting from injury or inflammation or infection
+43980,granuloma_inguinale granuloma_venereum,a venereal disease caused by a bacterium of the genus Calymmatobacterium; characterized by a pimply rash of the skin in the genital and groin region
+43981,granville_wilt,a bacterial wilt of tobacco plants
+43982,grape,any of various juicy fruit of the genus Vitis with green or purple skins; grow in clusters
+43983,grape grapevine grape_vine,any of numerous woody vines of genus Vitis bearing clusters of edible berries
+43984,grape-leaf_begonia maple-leaf_begonia Begonia_dregei,tuberous or semi-tuberous South African begonia having shallowly lobed ovate leaves and small white flowers
+43985,grape_arbor grape_arbour,an arbor where grapes are grown
+43986,grape_fern,a fern of the genus Botrychium having a fertile frond bearing small grapelike clusters of spore cases
+43987,grape_hyacinth,any of various early flowering spring hyacinths native to Eurasia having dense spikes of rounded blue flowers resembling bunches of small grapes
+43988,grape_jelly,jelly made from grape juice
+43989,grape_juice,the juice of grapes
+43990,grape_louse grape_phylloxera Phylloxera_vitifoleae,destructive to various grape plants
+43991,grapefruit,large yellow fruit with somewhat acid juicy pulp; usual serving consists of a half
+43992,grapefruit Citrus_paradisi,citrus tree bearing large round edible fruit having a thick yellow rind and juicy somewhat acid pulp
+43993,grapefruit_juice,the juice of grapefruits
+43994,grapefruit_peel,strips of grapefruit peel cooked in sugar syrup and coated with sugar
+43995,grapeshot grape,a cluster of small projectiles fired together from a cannon to produce a hail of shot
+43996,grapevine pipeline word_of_mouth,gossip spread by spoken communication; "the news of their affair was spread by word of mouth"
+43997,graph graphical_record graphical_recording,a visual representation of the relations between certain quantities, represented as points, plotted with reference to a set of axes
+43998,graph_paper,paper that has lines to permit drawing graphs
+43999,graphic computer_graphic,an image that is generated by a computer
+44000,graphic_art,the arts of drawing or painting or printmaking
+44001,graphic_design,visual communication by a skillful combination of text and pictures in advertisements, magazines, books, etc.
+44002,graphic_designer designer,someone who specializes in graphic design
+44003,graphical_user_interface GUI,a user interface based on graphics (icons and pictures and menus) instead of text; uses a mouse as well as a keyboard as an input device
+44004,graphics,the drawings and photographs in the layout of a book
+44005,graphite black_lead plumbago,used as a lubricant and as a moderator in nuclear reactors
+44006,graphologist handwriting_expert,a specialist in inferring character from handwriting
+44007,graphology,the study of handwriting (especially as an indicator of the writer's character or disposition)
+44008,grapnel grapnel_anchor,a light anchor for small boats
+44009,grapnel grapple grappler grappling_hook grappling_iron,a tool consisting of several hooks for grasping and holding; often thrown with a rope
+44010,grappa,Italian brandy made from residue of grapes after pressing
+44011,grasping,understanding with difficulty; "the lecture was beyond his most strenuous graspings"
+44012,grasping taking_hold seizing prehension,the act of gripping something firmly with the hands (or the tentacles)
+44013,grass,narrow-leaved green herbage: grown as lawns; used as pasture for grazing animals; cut and dried as hay
+44014,grass-leaved_golden_aster,a variety of golden aster
+44015,grass_fern ribbon_fern Vittaria_lineata,epiphytic fern found in lowland forests of tropical America
+44016,grass_frog Rana_temporaria,a common semiterrestrial European frog
+44017,grass_pea Indian_pea khesari Lathyrus_sativus,European annual grown for forage; seeds used for food in India and for stock elsewhere
+44018,grass_pink Calopogon_pulchellum Calopogon_tuberosum,an orchid
+44019,grass_poly hyssop_loosestrife Lythrum_hyssopifolia,annual with small solitary pink flowers; originally of Europe but widely naturalized in moist areas
+44020,grass_roots,the essential foundation or source; "the problem was attacked at the grass roots"
+44021,grass_roots,the common people at a local level (as distinguished from the centers of political activity)
+44022,grass_skirt,a skirt made of long blades of grass
+44023,grass_snake ring_snake ringed_snake Natrix_natrix,harmless European snake with a bright yellow collar; common in England
+44024,grass_tree Australian_grass_tree,any of several Australian evergreen perennials having short thick woody stems crowned by a tuft of grasslike foliage and yielding acaroid resins
+44025,grass_vetch grass_vetchling Lathyrus_nissolia,annual European vetch with red flowers
+44026,grass_widower divorced_man,a man who is divorced from (or separated from) his wife
+44027,grassfinch grass_finch,usually brightly-colored Australian weaverbirds; often kept as cage birds
+44028,grassfire prairie_fire,an uncontrolled fire in a grassy area
+44029,grasshopper,a cocktail made of creme de menthe and cream (sometimes with creme de cacao)
+44030,grasshopper hopper,terrestrial plant-eating insect with hind legs adapted for leaping
+44031,grasshopper_mouse,insectivorous mouse of western North America
+44032,grassland,land where grass or grasslike vegetation grows and is the dominant form of plant life
+44033,grassy_death_camas Zigadenus_venenosus Zigadenus_venenosus_gramineus,plant of western North America to Mexico; poisonous especially to grazing animals
+44034,grate,a harsh rasping sound made by scraping something
+44035,grate grating,a barrier that has parallel or crossed bars blocking a passage but admitting air
+44036,grate grating,a frame of iron bars to hold a fire
+44037,grated_cheese,hard or semihard cheese grated
+44038,gratefulness thankfulness appreciativeness,warm friendly feelings of gratitude
+44039,grater,utensil with sharp perforations for shredding foods (as vegetables or cheese)
+44040,gratification,the act or an instance of satisfying
+44041,gratification satisfaction,state of being gratified or satisfied; "dull repetitious work gives no gratification"; "to my immense gratification he arrived on time"
+44042,gratitude,a feeling of thankfulness and appreciation; "he was overwhelmed with gratitude for their help"
+44043,gratuity,an award (as for meritorious service) given without claim or obligation
+44044,gratuity tip pourboire baksheesh bakshish bakshis backsheesh,a relatively small amount of money given for services rendered (as by a waiter)
+44045,grave,death of a person; "he went to his grave without forgiving me"; "from cradle to grave"
+44046,grave tomb,a place for the burial of a corpse (especially beneath the ground and marked by a tombstone); "he put flowers on his mother's grave"
+44047,grave_accent grave,a mark (`) placed above a vowel to indicate pronunciation
+44048,gravedigger,a person who earns a living by digging graves
+44049,gravel crushed_rock,rock fragments and pebbles
+44050,gravel_pit,a quarry for gravel
+44051,gravelweed Verbesina_helianthoides,perennial herb with yellow flowers; southern and south central United States
+44052,graveness gravity sobriety soberness somberness sombreness,a manner that is serious and solemn
+44053,graver graving_tool pointel pointrel,a tool used by an engraver
+44054,graverobber,someone who steals valuables from graves or crypts
+44055,graverobber ghoul body_snatcher,someone who takes bodies from graves and sells them for anatomical dissection
+44056,gravestone headstone tombstone,a stone that is used to mark a grave
+44057,graveyard_watch middle_watch midwatch night_watch,a watch during the night (as from midnight to 8 a.m.)
+44058,gravida,the number of the pregnancy that a woman is in; "in her third pregnancy a woman is said to be gravida three"
+44059,gravida,a pregnant woman
+44060,gravidity gravidness gravidation,technical terms for pregnancy
+44061,gravimeter gravity_meter,a measuring instrument for measuring variations in the gravitational field of the earth
+44062,gravimetric_analysis,quantitative analysis by weight
+44063,gravitation,movement downward resulting from gravitational attraction; "irrigation by gravitation rather than by pumps"
+44064,gravitation,a figurative movement toward some attraction; "the gravitation of the middle class to the suburbs"
+44065,gravitational_collapse,the implosion of a star resulting from its own gravity; the result is a smaller and denser celestial object
+44066,gravitational_constant universal_gravitational_constant constant_of_gravitation G,(physics) the universal constant relating force to mass and distance in Newton's law of gravitation
+44067,gravitational_field,a field of force surrounding a body of finite mass
+44068,gravitational_interaction,a weak interaction between particles that results from their mass; mediated by gravitons
+44069,gravitational_mass,(physics) the mass of a body as measured by its gravitational attraction for other bodies
+44070,graviton,a gauge boson that mediates the (extremely weak) gravitational interactions between particles
+44071,gravity gravitation gravitational_attraction gravitational_force,(physics) the force of attraction between all masses in the universe; especially the attraction of the earth's mass for bodies near its surface; "the more remote the body the less the gravity"; "the gravitation between two bodies is proportional to the product of their masses and inversely proportional to the square of the distance between them"; "gravitation cannot be held responsible for people falling in love"--Albert Einstein
+44072,gravity solemnity,a solemn and dignified feeling
+44073,gravity-assist,(spaceflight) a trajectory that passes close to a planetary body in order to gain energy from its gravitational field
+44074,gravity_gradient,a gradient in the gravitational forces acting on different parts of a nonspherical object; "the gravity gradient of the moon causes the ocean tides on Earth"
+44075,gravity_wave gravitation_wave,(physics) a wave that is hypothesized to propagate gravity and to travel at the speed of light
+44076,gravure,a printing plate used in the process of gravure
+44077,gravure,the act of intaglio printing
+44078,gravure photogravure heliogravure,an intaglio print produced by gravure
+44079,gravy,a sauce made by adding stock, flour, or other ingredients to the juice and fat that drips from cooking meats
+44080,gravy pan_gravy,the seasoned but not thickened juices that drip from cooking meats; often a little water is added
+44081,gravy_boat gravy_holder sauceboat boat,a dish (often boat-shaped) for serving gravy or sauce
+44082,gray Gy,the SI unit of energy absorbed from ionizing radiation; equal to the absorption of one joule of radiation energy by one kilogram of matter; one gray equals 100 rad
+44083,gray grayness grey greyness,a neutral achromatic color midway between white and black
+44084,graze,a superficial abrasion
+44085,graze grazing,the act of grazing
+44086,grazier,a rancher who grazes cattle or sheep for market
+44087,grazing shaving skimming,the act of brushing against while passing
+44088,grazing_fire,fire approximately parallel to the ground; the center of the cone of fire does rise above 1 meter from the ground
+44089,grease lubricating_oil,a thick fatty oil (especially one used to lubricate machinery)
+44090,grease_gun gun,a hand-operated pump that resembles a pistol; forces grease into parts of a machine
+44091,greasepaint,a greasy substance used as makeup by actors
+44092,greaseproof_paper,paper that is impermeable to oil or grease; used in cooking
+44093,greaser wetback taco,(ethnic slur) offensive term for a person of Mexican descent
+44094,greasewood black_greasewood Sarcobatus_vermiculatus,low hardy much-branched spiny shrub common in alkaline soils of western America
+44095,greasiness oiliness oleaginousness,consisting of or covered with oil
+44096,greasy_spoon,a small restaurant specializing in short-order fried foods
+44097,great,a person who has achieved distinction and honor in some field; "he is one of the greats of American music"
+44098,great-aunt grandaunt,an aunt of your father or mother
+44099,great-nephew grandnephew,a son of your niece or nephew
+44100,great-niece grandniece,a daughter of your niece or nephew
+44101,great-uncle granduncle,an uncle of your father or mother
+44102,great_Solomon's-seal Polygonatum_biflorum Polygonatum_commutatum,North American perennial herb with smooth foliage and drooping tubular greenish flowers
+44103,great_St_John's_wort Hypericum_ascyron Hypericum_pyramidatum,perennial shrub having large star-shaped yellow flowers in narrowly pyramidal cymes
+44104,great_ape pongid,any of the large anthropoid apes of the family Pongidae
+44105,great_auk Pinguinus_impennis,large flightless auk of rocky islands off northern Atlantic coasts; extinct
+44106,great_barracuda Sphyraena_barracuda,large (up to 6 ft) greyish-brown barracuda highly regarded as a food and sport fish; may be dangerous to swimmers
+44107,great_blue_heron Ardea_herodius,large American heron having bluish-grey plumage
+44108,great_bowerbird Chlamydera_nuchalis,large bowerbird of northern Australia
+44109,great_burdock greater_burdock cocklebur Arctium_lappa,burdock having heart-shaped leaves found in open woodland, hedgerows and rough grassland of Europe (except extreme N) and Asia Minor; sometimes cultivated for medicinal and culinary use
+44110,great_bustard Otis_tarda,largest European land bird
+44111,great_care,more attention and consideration than is normally bestowed by prudent persons; "the pilot exercised great care in landing"
+44112,great_cerebral_vein vena_cerebri_magna,a cerebral vein formed by the two internal cerebral veins and continuing into the sinus rectus
+44113,great_circle,a circular line on the surface of a sphere formed by intersecting it with a plane passing through the center
+44114,great_crested_grebe Podiceps_cristatus,large Old World grebe with black ear tufts
+44115,great_duckweed water_flaxseed Spirodela_polyrrhiza,cosmopolitan except South America and New Zealand and some oceanic islands
+44116,great_grandchild,a child of your grandson or granddaughter
+44117,great_granddaughter,a daughter of your grandson or granddaughter
+44118,great_grandfather,a father of your grandparent
+44119,great_grandmother,a mother of your grandparent
+44120,great_grandparent,a parent of your grandparent
+44121,great_grandson,a son of your grandson or granddaughter
+44122,great_grey_owl great_gray_owl Strix_nebulosa,large dish-faced owl of northern North America and western Eurasia
+44123,great_gross 1728,a cardinal number equal to one dozen gross
+44124,great_hall,the principal hall in a castle or mansion; can be used for dining or entertainment
+44125,great_horned_owl Bubo_virginianus,brown North American horned owl
+44126,great_knapweed greater_knapweed Centaurea_scabiosa,tall European perennial having purple flower heads
+44127,great_lobelia blue_cardinal_flower Lobelia_siphilitica,tall erect and very leafy perennial herb of eastern North America having dense spikes of blue flowers
+44128,great_millet kaffir kafir_corn kaffir_corn Sorghum_bicolor,important for human and animal food; growth habit and stem form similar to Indian corn but having sawtooth-edged leaves
+44129,great_plains_paintbrush Castilleja_sessiliflora,hairy plant with pinkish flowers; Great Plains to northern Mexico
+44130,great_ragweed Ambrosia_trifida,a coarse annual with some leaves deeply and palmately three-cleft or five-cleft
+44131,great_seal,the principal seal of a government, symbolizing authority or sovereignty
+44132,great_skua Catharacta_skua,large brown skua of the northern Atlantic
+44133,great_snipe woodcock_snipe Gallinago_media,Old World snipe larger and darker than the whole snipe
+44134,great_white_heron Ardea_occidentalis,large white heron of Florida and the Florida Keys
+44135,great_white_heron Casmerodius_albus,widely distributed Old World white egret
+44136,great_white_shark white_shark man-eater man-eating_shark Carcharodon_carcharias,large aggressive shark widespread in warm seas; known to attack humans
+44137,great_year Platonic_year,time required for one complete cycle of the precession of the equinoxes, about 25,800 years
+44138,great_yellow_gentian Gentiana_lutea,robust European perennial having clusters of yellow flowers
+44139,great_yellowcress Rorippa_amphibia Nasturtium_amphibium,perennial herb found on streams and riversides throughout Europe except extreme north and Mediterranean; sometimes placed in genus Nasturtium
+44140,greatcoat overcoat topcoat,a heavy coat worn over clothes in winter
+44141,greater_butterfly_orchid Platanthera_chlorantha Habenaria_chlorantha,south European orchid with dark green flowers that are larger and less fragrant than Platanthera bifolia; sometimes placed in genus Habenaria
+44142,greater_kudu Tragelaphus_strepsiceros,a variety of kudu
+44143,greater_masterwort Astrantia_major,European herb with aromatic roots and leaves in a basal tuft and showy compound umbels of white to rosy flowers
+44144,greater_omentum gastrocolic_omentum caul,part of the peritoneum attached to the stomach and to the colon and covering the intestines
+44145,greater_pichiciego Burmeisteria_retusa,of southern South America
+44146,greater_prairie_chicken Tympanuchus_cupido,the most common variety of prairie chicken
+44147,greater_scaup Aythya_marila,large scaup of North America having a greenish iridescence on the head of the male
+44148,greater_spearwort Ranunculus_lingua,semiaquatic European crowfoot with leaves shaped like spears
+44149,greater_water_parsnip Sium_latifolium,large stout white-flowered perennial found wild in shallow fresh water; Europe
+44150,greater_whitethroat whitethroat Sylvia_communis,greyish-brown Old World warbler with a white throat and underparts
+44151,greater_yellowlegs Tringa_melanoleuca,a variety of yellowlegs
+44152,greatest_common_divisor greatest_common_factor highest_common_factor,the largest integer that divides without remainder into a set of integers
+44153,greatness illustriousness,the property possessed by something or someone of outstanding importance or eminence
+44154,greave jambeau,armor plate that protects legs below the knee
+44155,greaves crackling,the residue that remains after animal fat has been rendered
+44156,grebe,small compact-bodied almost completely aquatic bird that builds floating nests; similar to loons but smaller and with lobate rather than webbed feet
+44157,greed,excessive desire to acquire or possess more (especially more material wealth) than one needs or deserves
+44158,greediness hoggishness piggishness,an excessive desire for food
+44159,greediness voraciousness rapaciousness,an excessive desire for wealth (usually in large amounts); "the greediness of lawyers"
+44160,green greenness viridity,green color or pigment; resembling the color of growing grass
+44161,green putting_green putting_surface,an area of closely cropped grass surrounding the hole on a golf course; "the ball rolled across the green and into the bunker"
+44162,green-tailed_towhee Chlorura_chlorura,towhee of the Rocky Mountains
+44163,green_June_beetle figeater,large greenish June beetle of southern United States
+44164,green_adder's_mouth Malaxis-unifolia Malaxis_ophioglossoides,North American orchid having a solitary leaf and flowers with threadlike petals
+44165,green_alder Alnus_veridis,shrub of mountainous areas of Europe
+44166,green_alder Alnus_veridis_crispa Alnus_crispa,North American shrub with light green leaves and winged nuts
+44167,green_algae chlorophyte,algae that are clear green in color; often growing on wet ricks or damp wood or the surface of stagnant water
+44168,green_arrow_arum tuckahoe Peltandra_virginica,perennial herb of the eastern United States having arrowhead-shaped leaves and an elongate pointed spathe and green berries
+44169,green_ash Fraxinus_pennsylvanica_subintegerrima,a variety of red ash having glossy branchlets and lower leaf surfaces
+44170,green_bean,a common bean plant cultivated for its slender green edible pods
+44171,green_bean,immature bean pod eaten as a vegetable
+44172,green_bristlegrass green_foxtail rough_bristlegrass bottle-grass bottle_grass Setaria_viridis,European foxtail naturalized in North America; often a troublesome weed
+44173,green_card,a card that identifies the bearer as an alien with permanent resident status in the United States; "he was surprised to discover that green cards are no longer green"
+44174,green_douglas_fir douglas_spruce douglas_pine douglas_hemlock Oregon_fir Oregon_pine Pseudotsuga_menziesii,lofty douglas fir of northwestern North America having short needles and egg-shaped cones
+44175,green_dragon Arisaema_dracontium,early spring-flowering plant of eastern North America resembling the related jack-in-the-pulpit but having digitate leaves, slender greenish yellow spathe and elongated spadix
+44176,green_frog spring_frog Rana_clamitans,similar to bullfrog; found in or near marshes and ponds; of United States and Canada
+44177,green_gentian Frasera_speciosa Swertia_speciosa,tall herb with panicles of white flowers flushed with green; northwestern United States; sometimes placed in genus Swertia
+44178,green_gland,one of a pair of glands (believed to have excretory functions) in some crustaceans near the base of the large antennae
+44179,green_gold,a gold alloy (at least 14 karat gold with silver or silver and cadmium) that has a green appearance
+44180,green_hellebore Helleborus_viridis,deciduous plant with large deep green pedate leaves and nodding saucer-shaped green flowers
+44181,green_lacewing chrysopid stink_fly,pale green unpleasant-smelling lacewing fly having carnivorous larvae
+44182,green_light,permission to proceed with a project or to take action; "the gave the green light for construction to begin"
+44183,green_light go-ahead,a signal to proceed
+44184,green_lizard Lacerta_viridis,a common Eurasian lizard about a foot long
+44185,green_mamba,green phase of the black mamba
+44186,green_manure,a growing crop that is plowed under to enrich soil
+44187,green_mayonnaise sauce_verte,mayonnaise with tarragon or dill and chopped watercress and spinach or cucumber
+44188,green_monkey African_green_monkey Cercopithecus_aethiops_sabaeus,common savannah monkey with greenish-grey back and yellow tail
+44189,green_mushroom_pimple,a variety of mushroom pimple
+44190,green_olive,olives picked green and pickled in brine; infrequently stuffed with e.g. pimento
+44191,green_onion spring_onion scallion,a young onion before the bulb has enlarged; eaten in salads
+44192,green_paper,a preliminary report of government proposals that is published in order to stimulate discussion
+44193,green_pea garden_pea,fresh pea
+44194,green_pea_soup potage_St._Germain,made of fresh green peas and stock with shredded lettuce onion and celery
+44195,green_peach_aphid,yellowish green aphid that is especially destructive to peaches
+44196,green_peafowl Pavo_muticus,peafowl of southeast Asia
+44197,green_pepper,a sweet pepper that becomes red when ripe
+44198,green_revolution,the introduction of pesticides and high-yield grains and better management during the 1960s and 1970s which greatly increased agricultural productivity
+44199,green_salad,tossed salad composed primarily of salad greens
+44200,green_smut false_smut,disease of rice; grains covered by a green powder consisting of conidia
+44201,green_smut_fungus Ustilaginoidea_virens,fungus causing green smut in rice
+44202,green_snake,any of numerous African colubrid snakes
+44203,green_snake grass_snake,either of two North American chiefly insectivorous snakes that are green in color
+44204,green_soybean,seeds shelled and cooked as lima beans
+44205,green_spleenwort Asplenium_viride,a small fern with slim green fronds; widely distributed in cool parts of northern hemisphere
+44206,green_tea,tea leaves that have been steamed and dried without fermenting
+44207,green_thumb green_fingers,a special ability to make plants grow
+44208,green_turtle Chelonia_mydas,large tropical turtle with greenish flesh used for turtle soup
+44209,green_woodpecker Picus_viridis,woodpecker of Europe and western Asia
+44210,greenbelt greenway,a belt of parks or rural land surrounding a town or city
+44211,greenbottle greenbottle_fly,blowfly with brilliant coppery green body
+44212,greenery verdure,green foliage
+44213,greeneye,bottom-dwellers having large eyes with metallic green luster
+44214,greenfly,greenish aphid; pest on garden and crop plants
+44215,greengage greengage_plum,sweet green or greenish-yellow variety of plum
+44216,greengrocer,a grocer who sells fresh fruits and vegetables
+44217,greengrocery,groceries sold by a greengrocer
+44218,greengrocery,a greengrocer's grocery store
+44219,greenhouse glasshouse,a building with glass walls and roof; for the cultivation and exhibition of plants under controlled conditions
+44220,greenhouse_effect greenhouse_warming,warming that results when solar radiation is trapped by the atmosphere; caused by atmospheric gases that allow sunshine to pass through but absorb heat that is radiated back from the warmed surface of the earth
+44221,greenhouse_gas greenhouse_emission,a gas that contributes to the greenhouse effect by absorbing infrared radiation
+44222,greenhouse_whitefly Trialeurodes_vaporariorum,whitefly that inhabits greenhouses
+44223,greenish_blue aqua aquamarine turquoise cobalt_blue peacock_blue,a shade of blue tinged with green
+44224,greenish_yellow,a shade of yellow tinged with green
+44225,greenishness,the property of being somewhat green
+44226,greenling,food fish of the northern Pacific
+44227,greenmail,(corporation) the practice of purchasing enough shares in a firm to threaten a takeover and thereby forcing the owners to buy those shares back at a premium in order to stay in business
+44228,greenness,the state of not being ripe
+44229,greenness verdancy verdure,the lush appearance of flourishing vegetation
+44230,greenockite cadmium_sulphide,ore of cadmium; a rare yellowish mineral consisting of cadmium sulphide in crystalline form
+44231,greenroom,a backstage room in a theater where performers rest or have visitors
+44232,greens green leafy_vegetable,any of various leafy plants or their leaves and stems eaten as vegetables
+44233,greensand,an olive-green sandstone containing glauconite
+44234,greenshank Tringa_nebularia,large European sandpiper with greenish legs
+44235,greenskeeper,someone responsible for the maintenance of a golf course
+44236,greenstick_fracture,a partial fracture of a bone (usually in children); the bone is bent but broken on only one side
+44237,greenwing green-winged_teal Anas_crecca,common teal of Eurasia and North America
+44238,greenwood,woodlands in full leaf; "the greenwood was Robin Hood's home"
+44239,greeter saluter welcomer,a person who greets; "the newcomers were met by smiling greeters"
+44240,greeting salutation,(usually plural) an acknowledgment or expression of good will (especially on meeting)
+44241,greeting_card,a card sent to express personal greetings
+44242,gregarine,vermiform protozoans parasitic in insects and other invertebrates
+44243,gregariousness,the quality of being gregarious--having a dislike of being alone
+44244,greisen,a granitic rock composed of quartz and mica
+44245,grenade,a small explosive bomb thrown by hand or fired from a missile
+44246,grenadier grenade_thrower,an infantryman equipped with grenades
+44247,grenadier rattail rattail_fish,deep-sea fish with a large head and body and long tapering tail
+44248,grenadine,thin syrup made from pomegranate juice; used in mixed drinks
+44249,grevillea,any shrub or tree of the genus Grevillea
+44250,grevy's_zebra Equus_grevyi,zebra with less continuous stripes
+44251,grey gray,any organization or party whose uniforms or badges are grey; "the Confederate army was a vast grey"
+44252,grey gray,clothing that is a grey color; "he was dressed in grey"
+44253,grey gray,horse of a light gray or whitish color
+44254,grey_alder gray_alder Alnus_incana,native to Europe but introduced in America
+44255,grey_area gray_area,an intermediate area; a topic that is not clearly one thing or the other
+44256,grey_birch gray_birch American_grey_birch American_gray_birch Betula_populifolia,medium-sized birch of eastern North America having white or pale grey bark and valueless wood; occurs often as a second-growth forest tree
+44257,grey_flounder gray_flounder Etropus_rimosus,flounder found from North Carolina to Florida and the eastern Gulf of Mexico
+44258,grey_fox gray_fox Urocyon_cinereoargenteus,dark grey American fox; from Central America through southern United States
+44259,grey_goldenrod gray_goldenrod Solidago_nemoralis,a dyer's weed of Canada and the eastern United States having yellow flowers sometimes used in dyeing
+44260,grey_kingbird gray_kingbird petchary Tyrannus_domenicensis_domenicensis,a kingbird that breeds in the southeastern United States and winters in tropical America; similar to but larger than the eastern kingbird
+44261,grey_lemming gray_lemming red-backed_lemming,Old World lemming
+44262,grey_market gray_market,an unofficial market in which goods are bought and sold at prices lower than the official price set by a regulatory agency
+44263,grey_matter gray_matter grey_substance gray_substance substantia_grisea,greyish nervous tissue containing cell bodies as well as fibers; forms the cerebral cortex consisting of unmyelinated neurons
+44264,grey_polypody gray_polypody resurrection_fern Polypodium_polypodioides,fern growing on rocks or tree trunks and having fronds greyish and scurfy below; Americas and South Africa
+44265,grey_poplar gray_poplar Populus_canescens,large rapidly growing poplar with faintly lobed dentate leaves grey on the lower surface; native to Europe but introduced and naturalized elsewhere
+44266,grey_skate gray_skate Raja_batis,common European skate used as food
+44267,grey_snapper gray_snapper mangrove_snapper Lutjanus_griseus,found in shallow waters off the coast of Florida
+44268,grey_sole gray_sole,greyish-white flesh of a flatfish
+44269,grey_whale gray_whale devilfish Eschrichtius_gibbosus Eschrichtius_robustus,medium-sized greyish-black whale of the northern Pacific
+44270,grey_willow gray_willow Salix_cinerea,Eurasian shrubby willow with whitish tomentose twigs
+44271,greyback grayback Limnodromus_griseus,a dowitcher with a grey back
+44272,greyhen grayhen grey_hen gray_hen heath_hen,female black grouse
+44273,greyhound,a tall slender dog of an ancient breed noted for swiftness and keen sight; used as a racing dog
+44274,greyhound_racing,the sport of racing greyhounds
+44275,greylag graylag greylag_goose graylag_goose Anser_anser,common grey wild goose of Europe; ancestor of many domestic breeds
+44276,grid,a pattern of regularly spaced horizontal and vertical lines
+44277,grid control_grid,an electrode placed between the cathode and anode of a vacuum tube to control the flow of electrons through the tube
+44278,grid gridiron,a cooking utensil of parallel metal bars; used to grill fish or meat
+44279,grid storage-battery_grid,a perforated or corrugated metal plate used in a storage battery as a conductor and support for the active material
+44280,grid_metal,a kind of hard lead that is used for grids in storage batteries
+44281,griddle,cooking utensil consisting of a flat heated surface (as on top of a stove) on which food is cooked
+44282,gridlock,a traffic jam so bad that no movement is possible
+44283,grief heartache heartbreak brokenheartedness,intense sorrow caused by loss of a loved one (especially by death)
+44284,grief sorrow,something that causes great unhappiness; "her death was a great grief to John"
+44285,grievance,an allegation that something imposes an illegal obligation or denies some legal right or causes injustice
+44286,grievance,a complaint about a (real or imaginary) wrong that causes resentment and is grounds for action
+44287,griffon Brussels_griffon Belgian_griffon,breed of various very small compact wiry-coated dogs of Belgian origin having a short bearded muzzle
+44288,griffon wire-haired_pointing_griffon,breed of medium-sized long-headed dogs with downy undercoat and harsh wiry outer coat; originated in Holland but largely developed in France
+44289,griffon_vulture griffon Gyps_fulvus,large vulture of southern Europe and northern Africa having pale plumage with black wings
+44290,grigri gres-gris greegree,an African amulet
+44291,grill grille grillwork,a framework of metal bars used as a partition or a grate; "he cooked hamburgers on the grill"
+44292,grille radiator_grille,grating that admits cooling air to car's radiator
+44293,grillroom grill,a restaurant where food is cooked on a grill
+44294,grimace face,a contorted facial expression; "she made a grimace at the prospect"
+44295,griminess grubbiness,the state of being grimy
+44296,grimoire,a manual of black magic (for invoking spirits and demons)
+44297,grind,the grade of particle fineness to which a substance is ground; "a coarse grind of coffee"
+44298,grind mill pulverization pulverisation,the act of grinding to a powder or dust
+44299,grinder,a machine tool that polishes metal
+44300,grinding,material resulting from the process of grinding; "vegetable grindings clogged the drain"
+44301,grinding,a harsh and strident sound (as of the grinding of gears)
+44302,grinding abrasion attrition detrition,the wearing down of rock particles by friction due to water or wind or ice
+44303,grinding_wheel emery_wheel,a wheel composed of abrasive material; used for grinding
+44304,grindstone,a revolving stone shaped like a disk; used to grind or sharpen or polish edge tools
+44305,gringo,a Latin American (disparaging) term for foreigners (especially Americans and Englishmen)
+44306,grinner,a person who grins
+44307,griot,a storyteller in West Africa; perpetuates the oral traditions of a family or village
+44308,grip,worker who moves the camera around while a film or television show is being made
+44309,grip grasp,an intellectual hold or understanding; "a good grip on French history"; "they kept a firm grip on the two top priorities"; "he was in the grip of a powerful emotion"; "a terrible power had her in its grasp"
+44310,grip traction adhesive_friction,the friction between a body and the surface on which it moves (as between an automobile tire and the road)
+44311,gripe kick beef bitch squawk,informal terms for objecting; "I have a gripe about the service here"
+44312,gripsack,a small suitcase
+44313,grisaille,chiaroscuro painting or stained glass etc., in shades of grey imitating the effect of relief
+44314,griseofulvin Fulvicin,a kind of penicillin (a fungicidal antibiotic with the trade name Fulvicin) produced by molds of the genus Penicillium
+44315,grison Grison_vittatus Galictis_vittatus,carnivore of Central America and South America resembling a weasel with a greyish-white back and dark underparts
+44316,grissino,a long slender crusty breadstick
+44317,grist,grain intended to be or that has been ground
+44318,gristmill,a mill for grinding grain (especially the customer's own grain)
+44319,grit gritrock gritstone,a hard coarse-grained siliceous sandstone
+44320,grits hominy_grits,coarsely ground hulled corn boiled as a breakfast dish in the southern United States
+44321,grivet Cercopithecus_aethiops,white and olive green East African monkey with long white tufts of hair beside the face
+44322,grizzle,a grey wig
+44323,grizzly grizzly_bear silvertip silver-tip Ursus_horribilis Ursus_arctos_horribilis,powerful brownish-yellow bear of the uplands of western North America
+44324,groan moan,an utterance expressing pain or disapproval
+44325,groaner,a person who groans
+44326,groats,the hulled and crushed grain of various cereals
+44327,grocer,a retail merchant who sells foodstuffs (and some household supplies)
+44328,grocery foodstuff,(usually plural) consumer goods sold by a grocer
+44329,grocery_bag,a sack for holding customer's groceries
+44330,grocery_boy,a delivery boy for groceries
+44331,grocery_list,a list of groceries to be purchased
+44332,grocery_list shopping_list,a list of heterogenous items that someone wants; "the union came to the table with a whole grocery list of demands"
+44333,grocery_store grocery food_market market,a marketplace where groceries are sold; "the grocery store included a meat market"
+44334,groenendael,black-coated sheepdog with a heavily plumed tail
+44335,grog,rum cut with water
+44336,grogginess,a dazed and staggering state caused by alcohol
+44337,grogginess,a groggy state resulting from weariness
+44338,grogginess stupor stupefaction semiconsciousness,marginal consciousness; "his grogginess was caused as much by exhaustion as by the blows"; "someone stole his wallet while he was in a drunken stupor"
+44339,grogram,a coarse fabric of silk mixed with wool or mohair and often stiffened with gum
+44340,groin,a curved edge formed by two intersecting vaults
+44341,groin inguen,the crease at the junction of the inner part of the thigh with the trunk together with the adjacent region and often including the external genitals
+44342,groined_vault,two barrel vaults intersecting at right angles
+44343,gromwell Lithospermum_officinale,European perennial branching plant; occurs in hedgerows and at the edge of woodlands
+44344,groom bridegroom,a man participant in his own marriage ceremony
+44345,groom bridegroom,a man who has recently been married
+44346,groomsman,a male attendant of the bridegroom at a wedding
+44347,groove channel,a long narrow furrow cut either by a natural process (such as erosion) or by a tool (as e.g. a groove in a phonograph record)
+44348,groove vallecula,(anatomy) any furrow or channel on a bodily structure or part
+44349,groover,a device that makes grooves by cutting or punching
+44350,grooving rifling,the cutting of spiral grooves on the inside of the barrel of a firearm
+44351,grope,the act of groping; and instance of groping
+44352,gros_point,a needlepoint stitch covering two horizontal and two vertical threads
+44353,gros_point,needlepoint embroidery done with large stitches
+44354,grosbeak grossbeak,any of various finches of Europe or America having a massive and powerful bill
+44355,groschen,100 groschen equal 1 schilling in Austria
+44356,grosgrain,a silk or silklike fabric with crosswise ribs
+44357,gross 144,twelve dozen
+44358,gross revenue receipts,the entire amount of income before any deductions are made
+44359,gross_anatomy macroscopic_anatomy,the study of the structure of the body and its parts without the use of a microscope
+44360,gross_domestic_product GDP,the measure of an economy adopted by the United States in 1991; the total market values of goods and services produced by workers and capital within a nation's borders during a given period (usually 1 year)
+44361,gross_estate,the total valuation of the estate's assets at the time of the person's death
+44362,gross_national_product GNP,former measure of the United States economy; the total market value of goods and services produced by all citizens and capital during a given period (usually 1 yr)
+44363,gross_profit gross_profit_margin margin,(finance) the net sales minus the cost of goods and services sold
+44364,gross_sales gross_revenue sales,income (at invoice values) received for goods and services over some given period of time
+44365,grosz,100 groszy equal 1 zloty in Poland
+44366,grotesque,art characterized by an incongruous mixture of parts of humans and animals interwoven with plants
+44367,grotesqueness grotesquery grotesquerie,ludicrous or incongruous unnaturalness or distortion
+44368,grotto grot,a small cave (usually with attractive features)
+44369,grouch grump crank churl crosspatch,a bad-tempered person
+44370,ground,a position to be won or defended in battle (or as if in battle); "they gained ground step by step"; "they fought to regain the lost ground"
+44371,ground,a relatively homogeneous percept extending back of the figure on which attention is focused
+44372,ground,(art) the surface (as a wall or canvas) prepared to take the paint for a painting
+44373,ground earth,a connection between an electrical device and a large conducting body, such as the earth (which is taken to be at zero voltage)
+44374,ground-controlled_approach GCA,aircraft landing in bad weather in which the pilot is talked down by ground control using precision approach radar
+44375,ground-shaker seismosaur,huge herbivorous dinosaur of the Cretaceous found in western North America
+44376,ground_attack,an attack by ground troops
+44377,ground_bait,bait scattered on the water to attract fish
+44378,ground_bass,a short melody in the bass that is constantly repeated
+44379,ground_beef hamburger,beef that has been ground
+44380,ground_beetle carabid_beetle,predacious shining black or metallic terrestrial beetle that destroys many injurious insects
+44381,ground_cable,a mooring cable; runs from a buoy to a mooring anchor
+44382,ground_cedar dwarf_juniper Juniperus_communis_depressa,a procumbent variety of the common juniper
+44383,ground_cedar staghorn_moss Lycopodium_complanatum,a variety of club moss
+44384,ground_cherry husk_tomato,any of numerous cosmopolitan annual or perennial herbs of the genus Physalis bearing edible fleshy berries enclosed in a bladderlike husk; some cultivated for their flowers
+44385,ground_control,a communication system for sending continuous radio messages to an airplane pilot who is making a ground-controlled approach to landing
+44386,ground_crew ground-service_crew,the crew of technicians and mechanics who service aircraft on the ground
+44387,ground_effect,apparent increase in aerodynamic lift experienced by an aircraft flying close to the ground
+44388,ground_fir princess_pine tree_clubmoss Lycopodium_obscurum,a variety of club moss
+44389,ground_fire,a forest fire that burns the humus; may not appear on the surface
+44390,ground_floor,becoming part of a venture at the beginning (regarded as position of advantage); "he got in on the ground floor"
+44391,ground_floor first_floor ground_level,the floor of a building that is at or nearest to the level of the ground around the building
+44392,ground_glass,particulate glass made by grinding and used as an abrasive
+44393,ground_glass,glass that diffuses light due to a rough surface produced by abrasion or etching
+44394,ground_ivy alehoof field_balm gill-over-the-ground runaway_robin Glechoma_hederaceae Nepeta_hederaceae,trailing European aromatic plant of the mint family having rounded leaves and small purplish flowers often grown in hanging baskets; naturalized in North America; sometimes placed in genus Nepeta
+44395,ground_loop,a sharp uncontrollable turn made by an airplane while moving along the ground
+44396,ground_pine Christmas_green,any of several club mosses having long creeping stems and erect branches
+44397,ground_pine yellow_bugle Ajuga_chamaepitys,low-growing annual with yellow flowers dotted red; faintly aromatic of pine resin; Europe, British Isles and North Africa
+44398,ground_pink fringed_pink moss_pink Linanthus_dianthiflorus,low wiry-stemmed branching herb or southern California having fringed pink flowers
+44399,ground_plan,a floor plan for the ground level of a building
+44400,ground_rattler massasauga Sistrurus_miliaris,small pygmy rattlesnake
+44401,ground_rent,payment for the right to occupy and improve a piece of land
+44402,ground_roller,Madagascan roller with terrestrial and crepuscular habits that feeds on e.g. insects and worms
+44403,ground_rose Rosa_spithamaea,low-growing bristly shrub of southern Oregon and California with creeping rootstocks and usually corymbose flowers
+44404,ground_rule,(baseball) a special rule (as in baseball) dealing with situations that arise due to the nature of the playing grounds
+44405,ground_sloth megathere,gigantic extinct terrestrial sloth-like mammal of the Pliocene and Pleistocene in America
+44406,ground_snake Sonora_semiannulata,small shy brightly-ringed terrestrial snake of arid or semiarid areas of western North America
+44407,ground_squirrel gopher spermophile,any of various terrestrial burrowing rodents of Old and New Worlds; often destroy crops
+44408,ground_state,(physics) the lowest energy state of an atom or other particle
+44409,ground_stroke,a tennis return made by hitting the ball after it has bounced once
+44410,ground_swell,an obvious change of public opinion or political sentiment that occurs without leadership or overt expression; "there was a ground swell of antiwar sentiment"
+44411,ground_swell heavy_swell,a broad and deep undulation of the ocean
+44412,ground_water spring_water well_water,underground water that is held in the soil and in pervious rocks
+44413,ground_wave,a radio wave propagated on or near the earth's surface
+44414,ground_zero,the target of a projectile (as a bomb or missile)
+44415,ground_zero,the site of the World Trade Center before it was destroyed
+44416,ground_zero,the point of detonation (or above or below) of a nuclear weapon
+44417,groundbreaking groundbreaking_ceremony,the ceremonial breaking of the ground to formally begin a construction project
+44418,groundcover ground_cover,low-growing plants planted in deep shade or on a steep slope where turf is difficult to grow
+44419,groundcover ground_cover,small plants other than saplings growing on a forest floor
+44420,grounder ground_ball groundball hopper,(baseball) a hit that travels along the ground
+44421,groundfish bottom_fish,fish that live on the sea bottom (particularly the commercially important gadoid fish like cod and haddock, or flatfish like flounder)
+44422,groundhog woodchuck Marmota_monax,reddish brown North American marmot
+44423,grounding earthing,fastening electrical equipment to earth
+44424,groundlessness idleness,the quality of lacking substance or value; "the groundlessness of their report was quickly recognized"
+44425,groundling,in Elizabethan theater: a playgoer in the cheap standing section
+44426,groundmass,(geology) the matrix of fine-grained crystalline material in which larger crystals are embedded
+44427,groundnut groundnut_vine Indian_potato potato_bean wild_bean Apios_americana Apios_tuberosa,a North American vine with fragrant blossoms and edible tubers; important food crop of Native Americans
+44428,groundnut potato_bean wild_bean,nutlike tuber; important food of Native Americans
+44429,grounds,dregs consisting of solid particles (especially of coffee) that form a residue; "it is a Middle Eastern custom to read your future in your coffee grounds"
+44430,grounds,a tract of land cleared for some special purposes (recreation or burial etc.)
+44431,groundsel Senecio_vulgaris,Eurasian weed with heads of small yellow flowers
+44432,groundsel_tree groundsel_bush consumption_weed cotton-seed_tree Baccharis_halimifolia,a shrub of salt marshes of eastern and south central North America and West Indies; fruit is surrounded with white plumelike hairy tufts
+44433,groundsheet ground_cloth,a waterproofed piece of cloth spread on the ground (as under a tent) to protect from moisture
+44434,groundsman groundskeeper groundkeeper,someone who maintains the grounds (of an estate or park or athletic field)
+44435,groundspeed,the speed of an aircraft relative to the ground
+44436,groundwork,preliminary preparation as a basis or foundation; "we are prepared today because of groundwork that was done ten years ago"
+44437,group grouping,any number of entities (members) considered as a unit
+44438,group mathematical_group,a set that is closed, associative, has an identity element and every element has an inverse
+44439,group radical chemical_group,(chemistry) two or more atoms bound together as a single unit and forming part of a molecule
+44440,group_action,action taken by a group of people
+44441,group_captain,a commissioned officer (especially one in the Royal Air Force) equivalent in rank to a colonel in the army
+44442,group_dynamics,the branch of social psychology that studies the psychodynamics of interaction in social groups
+44443,group_insurance,insurance that is purchased by a group (such as the employees of a company) usually at a reduced rate to individual members of the group
+44444,group_participation,participation by all members of a group
+44445,group_practice,(medicine) the practice of medicine by a group of physicians who share their premises and other resources
+44446,group_theory,the branch of mathematics dealing with groups
+44447,group_therapy group_psychotherapy,psychotherapy in which a small group of individuals meet with a therapist; interactions among the members are considered to be therapeutic
+44448,grouper,flesh of a saltwater fish similar to sea bass
+44449,grouper,usually solitary bottom sea basses of warm seas
+44450,groupie,an enthusiastic young fan (especially a young woman who follows rock groups around)
+44451,grouping,the activity of putting things together in groups
+44452,grouping pigeonholing,a system for classifying things into groups
+44453,groupthink,decision making by a group (especially in a manner that discourages creativity or individual responsibility)
+44454,groupware,software that can be used by a group of people who are working on the same information but may be distributed in space
+44455,grouse,flesh of any of various grouse of the family Tetraonidae; usually roasted; flesh too dry to broil
+44456,grouse,popular game bird having a plump body and feathered legs and feet
+44457,grouseberry grouse-berry grouse_whortleberry Vaccinium_scoparium,shrub of northwestern North America bearing red berries
+44458,grout,a thin mortar that can be poured and used to fill cracks in masonry or brickwork
+44459,grove,a small growth of trees without underbrush
+44460,grove woodlet orchard plantation,garden consisting of a small cultivated wood without undergrowth
+44461,growing,(electronics) the production of (semiconductor) crystals by slow crystallization from the molten state
+44462,growing_pains,pain in muscles or joints sometimes experienced by children and often attributed to rapid growth
+44463,growing_pains,emotional distress arising during adolescence
+44464,growing_pains,problems that arise in enlarging an enterprise (especially in the early stages)
+44465,growing_season,the season during which a crop grows best
+44466,growl growling,the sound of growling (as made by animals)
+44467,growler,a speaker whose voice sounds like a growl
+44468,growler,a small iceberg or ice floe just large enough to be hazardous for shipping
+44469,growling,a gruff or angry utterance (suggestive of the growling of an animal)
+44470,growth,(pathology) an abnormal proliferation of tissue (as in a tumor)
+44471,growth,a progression from simpler to more complex forms; "the growth of culture"
+44472,growth,something grown or growing; "a growth of hair"
+44473,growth,vegetation that has grown; "a growth of trees"; "the only growth was some salt grass"
+44474,growth growing maturation development ontogeny ontogenesis,(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level; "he proposed an indicator of osseous development in children"
+44475,growth_factor,a protein that is involved in cell differentiation and growth
+44476,growth_hormone-releasing_factor GHRF,a releasing factor that accelerates the secretion of growth hormone by the anterior pituitary body
+44477,growth_industry,an industry that is growing rapidly
+44478,growth_rate rate_of_growth,the rate of increase in size per unit time
+44479,growth_stock,stock of a corporation that has had faster than average gains in earnings and is expected to continue to
+44480,grub,a soft thick wormlike larva of certain beetles and other insects
+44481,grubby Myxocephalus_aenaeus,small sculpin of the coast of New England
+44482,grubstake,funds advanced to a prospector or to someone starting a business in return for a share of the profits
+44483,grudge score grievance,a resentment strong enough to justify retaliation; "holding a grudge"; "settling a score"
+44484,gruel,a thin porridge (usually oatmeal or cornmeal)
+44485,gruffness hoarseness huskiness,a throaty harshness
+44486,grugru gri-gri grugru_palm macamba Acrocomia_aculeata,tropical American feather palm having a swollen spiny trunk and edible nuts
+44487,grugru_nut,nut of Brazilian or West Indian palms
+44488,grumble grumbling murmur murmuring mutter muttering,a complaint uttered in a low and indistinct tone
+44489,grume,a thick viscous liquid
+44490,grunt,an unskilled or low-ranking soldier or other worker; "infantrymen in Vietnam were called grunts"; "he went from grunt to chairman in six years"
+44491,grunt,medium-sized tropical marine food fishes that utter grunting sounds when caught
+44492,grunt oink,the short low gruff noise of the kind made by hogs
+44493,grunter,a person who grunts
+44494,gryphon griffin griffon,winged monster with the head of an eagle and the body of a lion
+44495,guacamole,a dip made of mashed avocado mixed with chopped onions and other seasonings
+44496,guadalupe_fur_seal Arctocephalus_philippi,a fur seal of the Pacific coast of California and southward
+44497,guaiac_wood guaiacum_wood,heartwood of a palo santo; yields an aromatic oil used in perfumes
+44498,guaiacum,medicinal resin from the lignum vitae tree
+44499,guama Inga_laurina,tropical tree of Central America and West Indies and Puerto Rico having spikes of white flowers; used as shade for coffee plantations
+44500,guan,any of several large turkey-like game birds of the family Cracidae; native to jungles of tropical America; resembling the curassows and valued as food
+44501,guanabenz Wytensin,antihypertensive drug (trade name Wytensin) that reduces blood pressure by its effect on the central nervous system
+44502,guanaco Lama_guanicoe,wild llama
+44503,guanine G,a purine base found in DNA and RNA; pairs with cytosine
+44504,guano,the excrement of sea birds; used as fertilizer
+44505,guano_bat Mexican_freetail_bat Tadarida_brasiliensis,the common freetail bat of southern United States having short velvety fur; migrates southward for winter
+44506,guar cluster_bean Cyamopsis_tetragonolobus Cyamopsis_psoraloides,drought-tolerant herb grown for forage and for its seed which yield a gum used as a thickening agent or sizing material
+44507,guar_gum,a gum from seeds of the guar plant; used to thicken foods and as sizing for paper and cloth
+44508,guarani,the basic unit of money in Paraguay; equal to 100 centimos
+44509,guarantee,an unconditional commitment that something will happen or that something is true; "there is no guarantee that they are not lying"
+44510,guarantee guaranty,a collateral agreement to answer for the debt of another in case that person defaults
+44511,guarantee warrant warrantee warranty,a written assurance that some product or service will be provided or will meet certain specifications
+44512,guarantor surety warrantor warranter,one who provides a warrant or guarantee to another
+44513,guard,the person who plays the position of guard on a basketball team
+44514,guard,a person who keeps watch over something or someone
+44515,guard,the person who plays that position on a football team; "the left guard was injured on the play"
+44516,guard,a military unit serving to protect some place or person
+44517,guard,a posture of defence in boxing or fencing; "keep your guard up"
+44518,guard,(American football) a position on the line of scrimmage; "guards must be good blockers"
+44519,guard,a position on a basketball team
+44520,guard safety safety_device,a device designed to prevent injury or accidents
+44521,guard's_van,the car on a train that is occupied by the guard
+44522,guard_boat,a boat that is on guard duty (as in a harbor) around a fleet of warships
+44523,guard_duty guard sentry_duty sentry_go,the duty of serving as a sentry; "he was on guard that night"
+44524,guard_hair,coarse hairs that form the outer fur and protect the underfur of certain mammals
+44525,guard_ship,a warship (at anchor or under way) required to maintain a higher degree of readiness than others in its squadron
+44526,guardhouse,a military facility that serves as the headquarters for military police and in which military prisoners can be detained
+44527,guardian_spirit guardian_angel,an angel believed to have special affection for a particular individual
+44528,guardianship keeping safekeeping,the responsibility of a guardian or keeper; "he left his car in my keeping"
+44529,guardroom,a cell in which soldiers who are prisoners are confined
+44530,guardroom,a room used by soldiers on guard
+44531,guardsman,a soldier who is a member of a unit called `the guard' or `guards'
+44532,guava,tropical fruit having yellow skin and pink pulp; eaten fresh or used for e.g. jellies
+44533,guava strawberry_guava yellow_cattley_guava Psidium_littorale,small tropical shrubby tree bearing small yellowish fruit
+44534,guava true_guava guava_bush Psidium_guajava,small tropical American shrubby tree; widely cultivated in warm regions for its sweet globular yellow fruit
+44535,guayule Parthenium_argentatum,much-branched subshrub with silvery leaves and small white flowers of Texas and northern Mexico; cultivated as a source of rubber
+44536,gudgeon Gobio_gobio,small slender European freshwater fish often used as bait by anglers
+44537,guelder_rose European_cranberrybush European_cranberry_bush crampbark cranberry_tree Viburnum_opulus,deciduous thicket-forming Old World shrub with clusters of white flowers and small bright red berries
+44538,guenon guenon_monkey,small slender African monkey having long hind limbs and tail and long hair around the face
+44539,guerdon,a reward or payment
+44540,guereza Colobus_guereza,a colobus monkey with a reddish brown coat and white silky fringes down both sides of the body
+44541,gueridon,a small round table
+44542,guerrilla guerilla irregular insurgent,a member of an irregular armed force that fights a stronger force by sabotage and harassment
+44543,guerrilla_force guerilla_force,an irregular armed force that fights by sabotage and harassment; often rural and organized in large groups
+44544,guerrilla_theater street_theater,dramatization of a social issue; enacted outside in a park or on the street
+44545,guess conjecture supposition surmise surmisal speculation hypothesis,a message expressing an opinion based on incomplete evidence
+44546,guess guesswork guessing shot dead_reckoning,an estimate based on little or no information
+44547,guesser,a person who guesses
+44548,guessing_game,a game in which participants compete to identify some obscurely indicated thing
+44549,guesstimate guestimate,an estimate that combines reasoning with guessing
+44550,guest,a customer of a hotel or restaurant etc.
+44551,guest invitee,a visitor to whom hospitality is extended
+44552,guest_night,an evening when members of a club or college can bring their friends as guests
+44553,guest_of_honor,the person in whose honor a gathering is held
+44554,guest_worker guestworker,a person with temporary permission to work in another country; "a Moroccan guestworker in Canada was accused of aiding terrorists"
+44555,guesthouse,a house separate from the main house; for housing guests
+44556,guestroom,a bedroom that is kept for the use of guests
+44557,guffaw belly_laugh,a burst of deep loud hearty laughter
+44558,guidance counsel counseling counselling direction,something that provides direction or advice as to a decision or course of action
+44559,guidance steering,the act of guiding or showing the way
+44560,guidance_system guidance_device,a system of equipment for automatically guiding the path of a vehicle (especially a missile)
+44561,guide,someone who shows the way by leading or advising
+44562,guide,a structure or marking that serves to direct the motion or positioning of something
+44563,guide_dog,a dog trained to guide the blind
+44564,guide_rope,a rope used to guide the movement of the load of a crane
+44565,guide_word guideword catchword,a word printed at the top of the page of a dictionary or other reference book to indicate the first or last item on that page
+44566,guidebook guide,something that offers basic information or instruction
+44567,guided_missile,a rocket-propelled missile whose path can be controlled during flight either by radio signals or by internal homing devices
+44568,guided_missile_cruiser,a cruiser that carries guided missiles
+44569,guided_missile_frigate,a frigate that carries guided missiles
+44570,guideline,a light line that is used in lettering to help align the letters
+44571,guidepost guideline rule_of_thumb,a rule or principle that provides guidance to appropriate behavior
+44572,guild_socialism,a form of socialist theory advocating state ownership of industry but managements by guilds of workers
+44573,guilder gulden florin,the basic unit of money in Suriname; equal to 100 cents
+44574,guilder gulden florin Dutch_florin,formerly the basic unit of money in the Netherlands; equal to 100 cents
+44575,guildhall,the hall of a guild or corporation
+44576,guillemot,small black or brown speckled auks of northern seas
+44577,guilloche,an architectural decoration formed by two intersecting wavy bands
+44578,guillotine,instrument of execution that consists of a weighted blade between two vertical poles; used for beheading people
+44579,guilt guiltiness,the state of having committed an offense
+44580,guilt guilty_conscience guilt_feelings guilt_trip,remorse caused by feeling responsible for some offense
+44581,guilt_by_association,the attribution of guilt (without proof) to individuals because the people they associate with are guilty
+44582,guilt_pang,pangs of feeling guilty
+44583,guimpe,a piece of starched cloth covering the shoulders of a nun's habit
+44584,guimpe,a short blouse with sleeves that is worn under a jumper or pinafore dress
+44585,guinea,a former British gold coin worth 21 shillings
+44586,guinea_fowl guinea Numida_meleagris,a west African bird having dark plumage mottled with white; native to Africa but raised for food in many parts of the world
+44587,guinea_gold,22-karat gold from which guinea coins were made
+44588,guinea_gold_vine guinea_flower,any of several Australasian evergreen vines widely cultivated in warm regions for their large bright yellow single flowers
+44589,guinea_hen,flesh of a guinea fowl (especially of hens)
+44590,guinea_hen,female guinea fowl
+44591,guinea_pig Cavia_cobaya,stout-bodied nearly tailless domesticated cavy; often kept as a pet and widely used in research
+44592,guise pretense pretence pretext,an artful or simulated semblance; "under the guise of friendship he betrayed them"
+44593,guitar,a stringed instrument usually having six strings; played by strumming or plucking
+44594,guitar_pick,a plectrum used to pluck a guitar
+44595,guitarfish,primitive tropical bottom-dwelling ray with a guitar-shaped body
+44596,guitarist guitar_player,a musician who plays the guitar
+44597,gulag,a Russian prison camp for political prisoners
+44598,gulch flume,a narrow gorge with a stream running through it
+44599,gulf,an arm of a sea or ocean partly enclosed by land; larger than a bay
+44600,gulf,a deep wide chasm
+44601,gulf disconnect disconnection,an unbridgeable disparity (as from a failure of understanding); "he felt a gulf between himself and his former friends"; "there is a vast disconnect between public opinion and federal policy"
+44602,gulfweed sargassum sargasso Sargassum_bacciferum,brown algae with rounded bladders forming dense floating masses in tropical Atlantic waters as in the Sargasso Sea
+44603,gull seagull sea_gull,mostly white aquatic bird having long pointed wings and short legs
+44604,gully,deep ditch cut by running water (especially after a prolonged downpour)
+44605,gulp draft draught swig,a large and hurried swallow; "he finished it at a single gulp"
+44606,gulp gulping,a spasmodic reflex of the throat made as if in swallowing
+44607,gulper guzzler,a drinker who swallows large amounts greedily
+44608,gulping swilling guzzling,the drinking of large mouthfuls rapidly
+44609,gum,any of various substances (soluble in water) that exude from certain plants; they are gelatinous when moist but harden on drying
+44610,gum-lac,an inferior lac produced by lac insects in Madagascar
+44611,gum_arabic gum_acacia,gum from an acacia tree; used as a thickener (especially in candies and pharmaceuticals)
+44612,gum_ball,a ball of chewing gum with a coating of colored sugar
+44613,gum_butea butea_gum butea_kino Bengal_kino,dried juice of the dhak tree; used as an astringent
+44614,gum_resin,a mixture of resin and gum
+44615,gum_tree gum,any of various trees of the genera Eucalyptus or Liquidambar or Nyssa that are sources of gum
+44616,gumbo,a soup or stew thickened with okra pods
+44617,gumbo gumbo_soil,any of various fine-grained silty soils that become waxy and very sticky mud when saturated with water
+44618,gumbo okra,long mucilaginous green pods; may be simmered or sauteed but used especially in soups and stews
+44619,gumbo-limbo Bursera_simaruba,tropical American tree yielding a reddish resin used in cements and varnishes
+44620,gumboil,a boil or abscess on the gums
+44621,gumdrop,a jellied candy coated with sugar crystals
+44622,gumma,a small rubbery granuloma that is characteristic of an advanced stage of syphilis
+44623,gummed_label sticker paster,an adhesive label
+44624,gummite,a gummy orange mixture of uranium oxides and silicates occurring naturally in the hydration and oxidation of pitchblende
+44625,gummosis,pathological production of gummy exudates in citrus and various stone-fruit trees
+44626,gumweed gum_plant tarweed rosinweed,any of various western American plants of the genus Grindelia having resinous leaves and stems formerly used medicinally; often poisonous to livestock
+44627,gumwood gum,wood or lumber from any of various gum trees especially the sweet gum
+44628,gun,a weapon that discharges a missile at high velocity (especially from a metal tube or barrel)
+44629,gun,the discharge of a firearm as signal or as a salute in military ceremonies; "two runners started before the gun"; "a twenty gun salute"
+44630,gun_carriage,a framework on which a gun is mounted for firing
+44631,gun_case,a case for storing a gun
+44632,gun_control,efforts to regulate or control sales of guns
+44633,gun_deck,formerly any deck other than the weather deck having cannons from end to end
+44634,gun_emplacement weapons_emplacement,an emplacement for a gun
+44635,gun_enclosure gun_turret turret,a self-contained weapons platform housing guns and capable of rotation
+44636,gun_microphone shotgun_microphone gun_mike shotgun_mike,a highly directional microphone with a long barrel; can be directed from a distance
+44637,gun_muzzle muzzle,the open circular discharging end of a gun
+44638,gun_pendulum,a ballistic pendulum consisting of a suspended gun; the velocity of a projectile in the bore of a gun can be measured by the recoil when the gun is discharged
+44639,gun_room,military quarters of midshipmen and junior officers on a British warship
+44640,gun_smoke,smoke created by the firing of guns
+44641,gun_trigger trigger,lever that activates the firing mechanism of a gun
+44642,gunboat,a small shallow-draft boat carrying mounted guns; used by costal patrols
+44643,gunfight gunplay shootout,a fight involving shooting small arms with the intent to kill or frighten
+44644,gunfire gunshot,the act of shooting a gun; "the gunfire endangered innocent bystanders"; "they retreated in the face of withering enemy fire"
+44645,gunflint,the piece of flint that provides the igniting spark in a flintlock weapon
+44646,gunite,a mixture of cement and sand and water that is sprayed on a surface under pneumatic pressure
+44647,gunlock firing_mechanism,the action that ignites the charge in a firearm
+44648,gunman gun,a person who shoots a gun (as regards their ability)
+44649,gunman gunslinger hired_gun gun gun_for_hire triggerman hit_man hitman torpedo shooter,a professional killer who uses a gun
+44650,gunmetal,a type of bronze used for parts subject to wear or corrosion (especially corrosion by sea water)
+44651,gunnel bracketed_blenny,small eellike fishes common in shallow waters of the northern Atlantic
+44652,gunnery,guns collectively
+44653,gunnery_sergeant,a noncommissioned officer ranking above a staff sergeant in the marines
+44654,gunnysack gunny_sack burlap_bag,a bag made of burlap
+44655,gunpowder powder,a mixture of potassium nitrate, charcoal, and sulfur in a 75:15:10 ratio which is used in gunnery, time fuses, and fireworks
+44656,gunrunner arms-runner,a smuggler of guns
+44657,gunrunning,the smuggling of guns and ammunition into a country secretly and illegally
+44658,gunsight gun-sight,a sight used for aiming a gun
+44659,gunsmith,someone who makes or repairs guns
+44660,gunwale gunnel gun_rest,wale at the top of the side of boat; topmost planking of a wooden vessel
+44661,guppy rainbow_fish Lebistes_reticulatus,small freshwater fish of South America and the West Indies; often kept in aquariums
+44662,gurgle,the bubbling sound of water flowing from a bottle with a narrow neck
+44663,gurnard,bottom-dwelling coastal fishes with spiny armored heads and fingerlike pectoral fins used for crawling along the sea bottom
+44664,gurney,a metal stretcher with wheels
+44665,guru,a recognized leader in some field or of some movement; "a guru of genomics"
+44666,guru,a Hindu or Buddhist religious leader and spiritual teacher
+44667,gusher,an oil well with a strong natural flow so that pumping is not necessary
+44668,gusset gusset_plate,a metal plate used to strengthen a joist
+44669,gusset inset,a piece of material used to strengthen or enlarge a garment
+44670,gust blast blow,a strong current of air; "the tree was bent almost double by the gust"
+44671,gusto relish zest zestfulness,vigorous and enthusiastic enjoyment
+44672,gut,a narrow channel or strait
+44673,gut_issue hot-button_issue,an issue that elicits strong emotional reactions
+44674,gutlessness,the trait of lacking courage and determination; fearful of loss or injury
+44675,gutsiness pluck pluckiness,the trait of showing courage and determination in spite of possible loss or injury
+44676,gutta-percha,a whitish rubber derived from the coagulated milky latex of gutta-percha trees; used for insulation of electrical cables
+44677,gutta-percha_tree,one of several East Indian trees yielding gutta-percha
+44678,gutta-percha_tree Palaquium_gutta,one of several East Indian trees yielding gutta-percha
+44679,gutter,a worker who guts things (fish or buildings or cars etc.)
+44680,gutter,a tool for gutting fish
+44681,gutter sewer toilet,misfortune resulting in lost effort or money; "his career was in the gutter"; "all that work went down the sewer"; "pensions are in the toilet"
+44682,gutter trough,a channel along the eaves or on the roof; collects and carries away rainwater
+44683,gutter_press,press that engages in sensational journalism (especially concerning the private lives of public figures)
+44684,guttural guttural_consonant pharyngeal pharyngeal_consonant,a consonant articulated in the back of the mouth or throat
+44685,guvnor,(British slang) boss
+44686,guy cat hombre bozo sod,an informal term for a youth or man; "a nice guy"; "the guy's only doing it for some doll"; "the poor sod couldn't even buy a drink"
+44687,guy guy_cable guy_wire guy_rope,a cable, wire, or rope that is used to brace something (especially a tent)
+44688,guyot,a seamount of volcanic origin (especially in the Pacific Ocean)
+44689,guzzler,someone who drinks heavily (especially alcoholic beverages); "he's a beer guzzler every night"
+44690,gym_rat,someone who spends all leisure time playing sports or working out in a gymnasium or health spa
+44691,gym_shoe sneaker tennis_shoe,a canvas shoe with a pliable rubber sole
+44692,gym_suit,clothes prescribed for wear while participating in gymnastic exercise
+44693,gymkhana,a meet at which riders and horses display a range of skills and aptitudes
+44694,gymnasium gym,athletic facility equipped for sports or physical training
+44695,gymnast,an athlete who is skilled in gymnastics
+44696,gymnastic_apparatus exerciser,sports equipment used in gymnastic exercises
+44697,gymnastic_exercise,(gymnastics) an exercise designed to develop and display strength and agility and balance (usually performed with or on some gymnastic apparatus)
+44698,gymnastics gymnastic_exercise,a sport that involves exercises intended to display strength and balance and agility
+44699,gymnosophist,member of a Hindu sect practicing gymnosophy (especially nudism)
+44700,gymnosophy,the doctrine of a sect of Hindu philosophers who practiced nudity and asceticism and meditation
+44701,gymnosperm,plants of the class Gymnospermae having seeds not enclosed in an ovary
+44702,gymnosperm_family,a family of gymnosperms
+44703,gymnosperm_genus,a genus of gymnosperms
+44704,gymnospermous_tree,any tree of the division Gymnospermophyta
+44705,gymnospermous_yellowwood,any of various gymnospermous trees having yellow wood
+44706,gymslip,a sleeveless tunic worn by English girls as part of a school uniform
+44707,gynecocracy gynarchy,a political system governed by a woman
+44708,gynecologist gynaecologist woman's_doctor,a specialist in gynecology
+44709,gynecology gynaecology,the branch of medicine that deals with the diseases and hygiene of women
+44710,gynecomastia,excessive development of the breasts in males; usually the result of hormonal imbalance or treatment with certain drugs (including some antihypertensives)
+44711,gyneolatry gynaeolatry woman-worship,the worship of women
+44712,gynobase,the enlarged receptacle in which the pistil is borne
+44713,gynoecium,a female gametoecium
+44714,gynogenesis,female parthenogenesis in which the embryo contains only maternal chromosomes due to the failure of the sperm to fuse with the egg nucleus
+44715,gynophobia,a morbid fear of women
+44716,gynophore,the stalk of a pistil that raises it above the receptacle
+44717,gynostegium,the crown of the stamen in plants of the genus Asclepias
+44718,gyp gip,(sometimes offensive) an act of swindling or cheating
+44719,gypsum,a common white or colorless mineral (hydrated calcium sulphate) used to make cements and plasters (especially plaster of Paris)
+44720,gypsy gipsy,a person who resembles a Gypsy in leading an unconventional, nomadic way of life
+44721,gypsy_cab,a taxicab that cruises for customers although it is licensed only to respond to calls
+44722,gypsy_moth gipsy_moth Lymantria_dispar,European moth introduced into North America; a serious pest of shade trees
+44723,gyration whirling,the act of rotating in a circle or spiral
+44724,gyrfalcon gerfalcon Falco_rusticolus,large and rare Arctic falcon having white and dark color phases
+44725,gyro,a Greek sandwich: sliced roast lamb with onion and tomato stuffed into pita bread
+44726,gyrocompass,a compass that does not depend on magnetism but uses a gyroscope instead
+44727,gyromitra,any fungus of the genus Gyromitra
+44728,gyroscope gyro,rotating mechanism in the form of a universally mounted spinning wheel that offers resistance to turns in any direction
+44729,gyrostabilizer gyrostabiliser,a stabilizer consisting of a heavy gyroscope that spins on a vertical axis; reduces side-to-side rolling of a ship or plane
+44730,gyrus convolution,a convex fold or elevation in the surface of the brain
+44731,habanera,music composed in duple time for dancing the habanera
+44732,habanera,a Cuban dance in duple time
+44733,habeas_corpus,the civil right to obtain a writ of habeas corpus as protection against illegal imprisonment
+44734,habeas_corpus writ_of_habeas_corpus,a writ ordering a prisoner to be brought before a judge
+44735,haberdashery men's_furnishings,the drygoods sold by a haberdasher
+44736,habergeon,(Middle Ages) a light sleeveless coat of chain mail worn under the hauberk
+44737,habit,the general form or mode of growth (especially of a plant or crystal); "a shrub of spreading habit"
+44738,habit,a distinctive attire worn by a member of a religious order
+44739,habit riding_habit,attire that is typically worn by a horseback rider (especially a woman's attire)
+44740,habit use,(psychology) an automatic pattern of behavior in reaction to a specific situation; may be inherited or acquired through frequent repetition; "owls have nocturnal habits"; "she had a habit twirling the ends of her hair"; "long use had hardened him to it"
+44741,habit wont,an established custom; "it was their habit to dine at 7 every evening"
+44742,habitability habitableness,suitability for living in or on
+44743,habitat home_ground,the type of environment in which an organism or group normally lives or occurs; "a marine habitat"; "he felt safe on his home grounds"
+44744,habitation,the native habitat or home of an animal or plant
+44745,habitual_abortion,repeated spontaneous abortion (often for no known reason)
+44746,habituation,a general accommodation to unchanging environmental conditions
+44747,habitude,habitual mode of behavior
+44748,habitus,person's predisposition to be affected by something (as a disease); "the consumptive habitus"
+44749,hacek wedge,a diacritical mark (an inverted circumflex) placed above certain letters (such as the letter c) to indicate pronunciation
+44750,hacienda,a large estate in Spanish-speaking countries
+44751,hacienda,the main house on a ranch or large estate
+44752,hack,a tool (as a hoe or pick or mattock) used for breaking up the surface of the soil
+44753,hack,a horse kept for hire
+44754,hack,a saddle horse used for transportation rather than sport etc.
+44755,hack drudge hacker,one who works hard at boring tasks
+44756,hack hack_writer literary_hack,a mediocre and disdained writer
+44757,hack jade nag plug,an old or over-worked horse
+44758,hackberry nettle_tree,any of various trees of the genus Celtis having inconspicuous flowers and small berrylike fruits
+44759,hacker,someone who plays golf poorly
+44760,hacker,a programmer for whom computing is its own reward; may enjoy the challenge of breaking into other computers but does no harm; "true hackers subscribe to a code of ethics and look down upon crackers"
+44761,hackle,long slender feather on the necks of e.g. turkeys and pheasants
+44762,hackney,a compact breed of harness horse
+44763,hackney hackney_carriage hackney_coach,a carriage for hire
+44764,hacksaw hack_saw metal_saw,saw used with one hand for cutting metal
+44765,hackwork,professional work done according to formula
+44766,haddock,lean white flesh of fish similar to but smaller than cod; usually baked or poached or as fillets sauteed or fried
+44767,haddock Melanogrammus_aeglefinus,important food fish on both sides of the Atlantic; related to cod but usually smaller
+44768,hadron,any elementary particle that interacts strongly with other particles
+44769,hadrosaur hadrosaurus duck-billed_dinosaur,any of numerous large bipedal ornithischian dinosaurs having a horny duck-like bill and webbed feet; may have been partly aquatic
+44770,haemoproteid,related to malaria parasite and having a phase in the viscera of various birds
+44771,haemosporidian,minute protozoans parasitic at some stage of the life cycle in blood cells of vertebrates including many pathogens
+44772,hafnium Hf atomic_number_72,a grey tetravalent metallic element that resembles zirconium chemically and is found in zirconium minerals; used in filaments for its ready emission of electrons
+44773,haft helve,the handle of a weapon or tool
+44774,hag beldam beldame witch crone,an ugly evil-looking old woman
+44775,hagberry,small cherry much liked by birds
+44776,hagberry_tree European_bird_cherry common_bird_cherry Prunus_padus,small European cherry tree closely resembling the American chokecherry
+44777,hagfish hag slime_eels,eellike cyclostome having a tongue with horny teeth in a round mouth surrounded by eight tentacles; feeds on dead or trapped fishes by boring into their bodies
+44778,haggis,made of sheep's or calf's viscera minced with oatmeal and suet and onions and boiled in the animal's stomach
+44779,haggle haggling wrangle wrangling,an instance of intense argument (as in bargaining)
+44780,haggler,an intense bargainer
+44781,hagiographer hagiographist hagiologist,the author of a worshipful or idealizing biography
+44782,hagiography,a biography that idealizes or idolizes the person (especially a person who is a saint)
+44783,hagiolatry hierolatry,the worship of saints
+44784,hagiology,literature narrating the lives (and legends) of the saints
+44785,haik haick,an outer garment consisting of a large piece of white cloth; worn by men and women in northern Africa
+44786,haiku,an epigrammatic Japanese verse form of three short lines
+44787,hail,precipitation of ice pellets when there are strong rising air currents
+44788,hail,many objects thrown forcefully through the air; "a hail of pebbles"; "a hail of bullets"
+44789,hail,enthusiastic greeting
+44790,hailstone,small pellet of ice that falls during a hailstorm
+44791,hailstorm,a storm during which hail falls
+44792,hair,a covering for the body (or parts of it) consisting of a dense growth of threadlike structures (as on the human head); helps to prevent heat loss; "he combed his hair"; "each hair consists of layers of dead keratinized cells"
+44793,hair,a filamentous projection or process on an organism
+44794,hair fuzz tomentum,filamentous hairlike growth on a plant; "peach fuzz"
+44795,hair pilus,any of the cylindrical filaments characteristically growing from the epidermis of a mammal; "there is a hair in my soup"
+44796,hair's-breadth hairsbreadth hair whisker,a very small distance or space; "they escaped by a hair's-breadth"; "they lost the election by a whisker"
+44797,hair-raiser chiller,excitation that makes your hair stand up or that chills your bones; "the movie was an old-fashioned hair-raiser"
+44798,hair_care haircare hairdressing,care for the hair: the activity of washing or cutting or curling or arranging the hair
+44799,hair_cell,a sensory epithelial cell present in the organ of Corti
+44800,hair_coloring,coloring of the hair; "her hair-coloring was unusual: a very pale gold"
+44801,hair_coloring,the act of dyeing or tinting one's hair
+44802,hair_dye hair_coloring tint,a dye for coloring the hair
+44803,hair_follicle,a small tubular cavity containing the root of a hair; small muscles and sebaceous glands are associated with them
+44804,hair_of_the_dog,an alcoholic drink supposed to cure a hangover
+44805,hair_shirt,an uncomfortable shirt made of coarse animal hair; worn next to the skin as a penance
+44806,hair_slide,a decorative hinged clip that girls and women put in their hair to hold it in place
+44807,hair_space,(printing) the narrowest of the spaces used to separate words or letters
+44808,hair_spray,toiletry consisting of a commercial preparation that is sprayed on the hair to hold it in place
+44809,hair_stroke,a very fine line in writing or printing
+44810,hair_trigger,a gun trigger that responds with little pressure
+44811,hairball hair_ball trichobezoar,a compact mass of hair that forms in the alimentary canal (especially in the stomach of animals as a result of licking fur)
+44812,hairbrush,a brush used to groom a person's hair
+44813,haircloth hair,cloth woven from horsehair or camelhair; used for upholstery or stiffening in garments
+44814,haircut,the style in which hair has been cut
+44815,haircut,the act of cutting the hair
+44816,hairdo hairstyle hair_style coiffure coif,the arrangement of the hair (especially a woman's hair)
+44817,hairdresser hairstylist stylist styler,someone who cuts or beautifies hair
+44818,hairdressing hair_tonic hair_oil hair_grease,a toiletry for the hair
+44819,hairiness pilosity,the quality of having hair
+44820,hairlessness,the quality of not having hair
+44821,hairlessness depilation,the condition of being void of hair
+44822,hairline,a very thin line
+44823,hairline,the natural margin formed by hair on the head
+44824,hairline_fracture capillary_fracture,a fracture without separation of the fragments and the line of the break being very thin
+44825,hairnet,a small net that some women wear over their hair to keep it in place
+44826,hairpiece false_hair postiche,a covering or bunch of human or artificial hair used for disguise or adornment
+44827,hairpin,a double pronged pin used to hold women's hair in place
+44828,hairpin_bend,a U-shaped bend in a road
+44829,hairsplitter,a disputant who makes unreasonably fine distinctions
+44830,hairsplitting word-splitting,making too fine distinctions of little importance; "they didn't take his hairsplitting seriously"
+44831,hairspring,a fine spiral spring that regulates the movement of the balance wheel in a timepiece
+44832,hairstreak hairstreak_butterfly,small butterflies having striped markings under the wings
+44833,hairweaving,the act of interweaving a hairpiece with your own hair
+44834,hairy-legged_vampire_bat Diphylla_ecaudata,similar in size and habits to Desmodus rotundus; of tropical America including southern California and Texas
+44835,hairy_darling_pea Swainsona_greyana Swainsona_grandiflora,shrubby perennial of southern Australia having downy or woolly stems and undersides of leaves and racemes of red to pink flowers
+44836,hairy_golden_aster prairie_golden_aster Heterotheca_villosa Chrysopsis_villosa,hairy perennial with yellow flower heads in branched clusters; found almost everywhere in dry places from Canada to west central and western United States; sometimes placed in genus Chrysopsis
+44837,hairy_honeysuckle Lonicera_hirsuta,twining deciduous shrub with hairy leaves and spikes of yellow-orange flowers; northeastern America
+44838,hairy_root,a phase of crown gall (especially in apples) during which there is abnormal development of fine fibrous roots
+44839,hairy_spurge Euphorbia_hirsuta,much-branched hirsute weed native to northeastern North America
+44840,hairy_tongue furry_tongue black_tongue,a benign side effect of some antibiotics; dark overgrowth of the papillae of the tongue
+44841,hairy_vetch hairy_tare Vicia_villosa,European vetch much cultivated as forage and cover crops
+44842,hairy_willowherb codlins-and-cream Epilobium_hirsutum,plant of Europe and Asia having purplish-red flowers and hairy stems and leaves; introduced into North America
+44843,hairy_wood_mint Blephilia_hirsuta,a variety of wood mint
+44844,hajj haj hadj,the fifth pillar of Islam is a pilgrimage to Mecca during the month of Dhu al-Hijja; at least once in a lifetime a Muslim is expected to make a religious journey to Mecca and the Kaaba; "for a Muslim the hajj is the ultimate act of worship"
+44845,hajji,a general term used by foreign soldiers to refer to the Iraqi people; "to American soldiers, the hajji are the alien people from whom the enemy emerges"
+44846,hajji hadji haji,an Arabic term of respect for someone who has made the pilgrimage to Mecca
+44847,hake,the lean flesh of a fish similar to cod
+44848,hake,any of several marine food fishes related to cod
+44849,hakim,a Muslim ruler or governor or judge
+44850,hakim hakeem,a Muslim physician
+44851,halal,(Islam) meat from animals that have been slaughtered in the prescribed way according to the shariah
+44852,halberd,a pike fitted with an ax head
+44853,halberdier,a guard who carries a halberd (as a symbol of his duty)
+44854,halcyon,a mythical bird said to breed at the time of the winter solstice in a nest floating on the sea and to have the power of calming the winds and waves
+44855,haler heller,100 halers equal 1 koruna Slovakia
+44856,haler heller,100 halers equal 1 koruna in Czech Republic
+44857,half,one of two divisions into which some games or performances are divided: the two divisions are separated by an interval
+44858,half-and-half,half milk and half light cream; contains 10% to 18% butterfat
+44859,half-and-half_dressing,half mayonnaise and half vinaigrette seasoned with minced garlic and mashed anchovies and grated Parmesan cheese; especially good for combination salads
+44860,half-breed,an offensive term for an offspring of parents of different racial group (especially of Caucasian and American Indian ancestry)
+44861,half-caste,an offensive term for the offspring of parents of different racial groups or cultures
+44862,half-century,a period of 50 years
+44863,half-cock,confusion resulting from lack of preparation
+44864,half-holiday,a day on which half is free from work or duty
+44865,half-hour 30_minutes,a half of an hour
+44866,half-intensity,half the maximum intensity
+44867,half-length,a portrait showing the body from only the waist up
+44868,half-light,a greyish light (as at dawn or dusk or in dim interiors)
+44869,half-mast half-staff,a position some distance below the top of a mast to which a flag is lowered in mourning or to signal distress
+44870,half-moon,the time at which the Moon is at first or last quarter when half its face is illuminated
+44871,half-moon lunula lunule,the crescent-shaped area at the base of the human fingernail
+44872,half-pay,reduced wage paid to someone who is not working full time
+44873,half-term,a short vacation about halfway through a school term; "he came to visit at half-term"
+44874,half-truth,a partially true statement intended to deceive or mislead
+44875,half_binding,book binding in which the spine and part of the sides are bound in one material and the rest in another
+44876,half_blood,one of siblings who have only one parent in common
+44877,half_cross_stitch,a single cross stitch at a diagonal
+44878,half_crown,an English coin worth half a crown
+44879,half_dollar fifty-cent_piece,a United States coin worth half of a dollar
+44880,half_eagle,a former gold coin in United States worth 5 dollars
+44881,half_gainer,a dive in which the diver throws the feet forward and up to complete a half backward somersault and enters the water facing the diving board
+44882,half_hatchet,a hatchet with a half axe head
+44883,half_hitch,a knot used to fasten a rope temporarily to an object; usually tied double
+44884,half_life half-life,the time required for something to fall to half its initial value (in particular, the time for half the atoms in a radioactive substance to disintegrate)
+44885,half_mile 880_yards,a unit of length equal to half of 1 mile
+44886,half_nelson,a wrestling hold in which the holder puts an arm under the opponent's arm and exerts pressure on the back of the neck
+44887,half_note minim,a musical note having the time value of half a whole note
+44888,half_page,something that covers (the top or bottom) half of a page
+44889,half_pound,8 ounces avoirdupois
+44890,half_rest,a musical rest having the time value of half a whole rest or equal in duration to two beats in common time
+44891,half_sister half-sister stepsister,a sister who has only one parent in common with you
+44892,half_sole,shoe sole extending from the shank to the toe
+44893,half_title bastard_title,a first page of some books displaying only the title of the book
+44894,half_track,a motor vehicle propelled by half tracks; frequently used by the military
+44895,half_track,a track that goes around only rear wheels
+44896,half_volley,a tennis return made by hitting the ball immediately after it bounces
+44897,halfback,(football) the running back who plays the offensive halfback position
+44898,halfback,(American football) an offensive back usually positioned behind the quarterback and to the side of the fullback
+44899,halfbeak,tropical and subtropical marine and freshwater fishes having an elongated body and long protruding lower jaw
+44900,halfpenny ha'penny,an English coin worth half a penny
+44901,halfpennyworth ha'p'orth,the amount that can be bought for a halfpenny
+44902,halftime,an intermission between the first and second half of a game
+44903,halftone,a print obtained from photoengraving
+44904,halftone halftone_engraving photoengraving,an engraving used to reproduce an illustration
+44905,halibut,lean flesh of very large flatfish of Atlantic or Pacific
+44906,halibut holibut,marine food fish of the northern Atlantic or northern Pacific; the largest flatfish and one of the largest teleost fishes
+44907,halibut-liver_oil,a fatty oil from halibut livers that is used as a source of vitamin A
+44908,halide,a salt of any halogen acid
+44909,halite rock_salt,naturally occurring crystalline sodium chloride
+44910,halitosis,offensive breath
+44911,halitus exhalation,exhaled breath
+44912,hall,a large building used by a college or university for teaching or research; "halls of learning"
+44913,hall,a large room for gatherings or entertainment; "lecture hall"; "pool hall"
+44914,hall,a large building for meetings or entertainment
+44915,hall_of_residence,a university dormitory
+44916,hall_pass,written permission from a teacher for a student to be out the classroom and in the halls of the school
+44917,hallelujah,a shout or song of praise to God
+44918,hallmark trademark earmark stylemark,a distinctive characteristic or attribute
+44919,halloo,a shout to attract attention; "he gave a great halloo but no one heard him"
+44920,hallstand,a piece of furniture where coats and hats and umbrellas can be hung; usually has a mirror
+44921,hallucination,illusory perception; a common symptom of severe mental disorder
+44922,hallucination,an object perceived during a hallucinatory episode; "he refused to believe that the angel was a hallucination"
+44923,hallucinogen hallucinogenic_drug psychedelic_drug psychodelic_drug,a psychoactive drug that induces hallucinations or altered sensory experiences
+44924,hallucinosis,a mental state in which the person has continual hallucinations
+44925,hallway hall,an interior passage or corridor onto which rooms open; "the elevators were at the end of the hall"
+44926,halma,a board game in which players try to move their pieces into their opponent's bases
+44927,halo,a circle of light around the sun or moon
+44928,halo_blight,a blight affecting the leaves of oats and other grasses
+44929,halo_blight halo_spot bean_blight,a blight of bean plants
+44930,halobacteria halobacterium halobacter,halophiles in saline environments such as the Dead Sea or salt flats
+44931,halocarbon,one of various compounds of carbon and any of the halogens
+44932,haloform,compounds with the formula CHX3, where X is a halogen atom
+44933,halogen,any of five related nonmetallic elements (fluorine or chlorine or bromine or iodine or astatine) that are all monovalent and readily form negative ions
+44934,halogeton Halogeton_glomeratus,a coarse annual herb introduced into North America from Siberia; dangerous to sheep and cattle on western rangelands because of its high oxalate content
+44935,halon,a compound in which the hydrogen atoms of a hydrocarbon have been replaced by bromine and other halogen atoms; very stable; used in fire extinguishers although it is thought to release bromine that depletes the ozone layer
+44936,haloperidol Haldol,tranquilizer (trade name Haldol) used to treat some psychotic disorders and Tourette's syndrome
+44937,halophile halophil,archaebacteria requiring a salt-rich environment for growth and survival
+44938,halophyte,plant growing naturally in very salty soil
+44939,halothane,a nonflammable inhalation anesthetic that produces general anesthesia; used along with analgesics and muscle relaxants for many types of surgical procedures
+44940,halter,a woman's top that fastens behind the back and neck leaving the back and arms uncovered
+44941,halter hackamore,rope or canvas headgear for a horse, with a rope for leading
+44942,halter haltere balancer,either of the rudimentary hind wings of dipterous insects; used for maintaining equilibrium during flight
+44943,halyard halliard,a rope for raising or lowering a sail or flag
+44944,ham,a licensed amateur radio operator
+44945,ham ham_actor,an unskilled actor who overacts
+44946,ham jambon gammon,meat cut from the thigh of a hog (usually smoked)
+44947,ham_and_eggs,eggs (scrambled or fried) served with ham
+44948,ham_hock,a small cut of meat from the leg just above the foot
+44949,ham_sandwich,a sandwich made with a filling of sliced ham
+44950,hamadryad,the nymph or spirit of a particular tree
+44951,hamadryad king_cobra Ophiophagus_hannah Naja_hannah,large cobra of southeastern Asia and the East Indies; the largest venomous snake; sometimes placed in genus Naja
+44952,hamamelid_dicot_family,family of mostly woody dicotyledonous flowering plants with flowers often unisexual and often borne in catkins
+44953,hamamelid_dicot_genus,genus of mostly woody relatively primitive dicotyledonous flowering plants with flowers often unisexual and often borne in catkins
+44954,hamartoma,a focal growth that resembles a neoplasm but results from faulty development in an organ
+44955,hamate hamate_bone unciform_bone os_hamatum,the wrist bone in line with the 4th and 5th fingers
+44956,hamburger beefburger burger,a sandwich consisting of a fried cake of minced beef served on a bun, often with other ingredients
+44957,hamburger_bun hamburger_roll,a round bun shaped to hold a hamburger patty
+44958,hame,stable gear consisting of either of two curved supports that are attached to the collar of a draft horse and that hold the traces
+44959,hamelia,any of several flowering tropical or subtropical shrubs of the genus Hamelia
+44960,hamlet crossroads,a community of people smaller than a village
+44961,hammer,a heavy metal sphere attached to a flexible wire; used in the hammer throw
+44962,hammer,a striker that is covered in felt and that causes the piano strings to vibrate
+44963,hammer,a hand tool with a heavy rigid head and a handle; used to deliver an impulsive force by striking
+44964,hammer cock,the part of a gunlock that strikes the percussion cap when the trigger is pulled
+44965,hammer pound hammering pounding,the act of pounding (delivering repeated heavy blows); "the sudden hammer of fists caught him off guard"; "the pounding of feet on the hallway"
+44966,hammer power_hammer,a power tool for drilling rocks
+44967,hammer_and_sickle,the emblem on the flag of the Soviet Union
+44968,hammer_throw,an athletic competition in which a heavy metal ball that is attached to a flexible wire is hurled as far as possible
+44969,hammerhead,the striking part of a hammer
+44970,hammerhead hammerhead_shark,medium-sized live-bearing shark with eyes at either end of a flattened hammer-shaped head; worldwide in warm waters; can be dangerous
+44971,hammerlock,a wrestling hold in which the opponent's arm is twisted up behind his back
+44972,hammertoe,a deformed toe which is bent in a clawlike arch
+44973,hamming overacting,poor acting by a ham actor
+44974,hammock sack,a hanging bed of canvas or rope netting (usually suspended between two trees); swings easily
+44975,hamper,a basket usually with a cover
+44976,hamster,short-tailed Old World burrowing rodent with large cheek pouches
+44977,hamstring hamstring_tendon,one of the tendons at the back of the knee
+44978,hand,a unit of length equal to 4 inches; used in measuring horses; "the horse stood 20 hands"
+44979,hand,a member of the crew of a ship; "all hands on deck"
+44980,hand,a position given by its location to the side of an object; "objections were voiced on every hand"
+44981,hand,a round of applause to signify approval; "give the little lady a great big hand"
+44982,hand,one of two sides of an issue; "on the one hand..., but on the other hand..."
+44983,hand,ability; "he wanted to try his hand at singing"
+44984,hand,a rotating pointer on the face of a timepiece; "the big hand counts the minutes"
+44985,hand,terminal part of the forelimb in certain vertebrates (e.g. apes or kangaroos); "the kangaroo's forearms seem undeveloped but the powerful five-fingered hands are skilled at feinting and clouting"- Springfield (Mass.) Union
+44986,hand deal,the cards held in a card game by a given player at any given time; "I didn't hold a good hand all evening"; "he kept trying to see my hand"
+44987,hand helping_hand,physical assistance; "give me a hand with the chores"
+44988,hand manus mitt paw,the (prehensile) extremity of the superior limb; "he had the hands of a surgeon"; "he extended his mitt"
+44989,hand-held_computer hand-held_microcomputer,a portable battery-powered computer small enough to be carried in your pocket
+44990,hand-me-down,outgrown garment passed down from one person to another
+44991,hand_ax hand_axe,a stone tool with a cutting edge; the stone is held in the hand and used for chopping
+44992,hand_blower blow_dryer blow_drier hair_dryer hair_drier,a hand-held electric blower that can blow warm air onto the hair; used for styling hair
+44993,hand_brake emergency emergency_brake parking_brake,a brake operated by hand; usually operates by mechanical linkage
+44994,hand_calculator pocket_calculator,a calculator small enough to hold in the hand or carry in a pocket
+44995,hand_cheese,any cheese originally molded by hand
+44996,hand_cream,moisturizing cream for the hands
+44997,hand_drill handheld_drill,a small portable drill held and operated by hand
+44998,hand_fern Doryopteris_pedata,tropical American fern with coarsely lobed to palmatifid fronds
+44999,hand_glass hand_mirror,a mirror intended to be held in the hand
+45000,hand_glass simple_microscope magnifying_glass,light microscope consisting of a single convex lens that is used to produce an enlarged image; "the magnifying glass was invented by Roger Bacon in 1250"
+45001,hand_grenade,a grenade designed to be thrown by hand
+45002,hand_lotion,lotion used to soften the hands
+45003,hand_luggage,luggage that is light enough to be carried by hand
+45004,hand_mower,a lawn mower that is operated by hand
+45005,hand_pump,a pump worked by hand
+45006,hand_puppet glove_puppet glove_doll,a puppet with a cloth body and hollow head; fits over the hand
+45007,hand_shovel,a shovel that is operated by hand
+45008,hand_throttle,a hand-operated lever that controls the throttle valve
+45009,hand_tool,a tool used with workers' hands
+45010,hand_towel face_towel,a small towel used to dry the hands or face
+45011,hand_truck truck,a handcart that has a frame with two low wheels and a ledge at the bottom and handles at the top; used to move crates or other heavy objects
+45012,handball,a small rubber ball used in playing the game of handball
+45013,handball,a game played in a walled court or against a single wall by two or four players who strike a rubber ball with their hands
+45014,handball_court,the court on which handball is played
+45015,handbarrow,a rectangular frame with handles at both ends; carried by two people
+45016,handbell,a bell that is held in the hand
+45017,handbook enchiridion vade_mecum,a concise reference book providing specific information about a subject or location
+45018,handbow,a bow drawn by hand as distinguished from a crossbow
+45019,handbreadth handsbreadth,any unit of length based on the breadth of the human hand
+45020,handcar,a small railroad car propelled by hand or by a small motor
+45021,handcart pushcart cart go-cart,wheeled vehicle that can be pushed by a person; may have one or two or four wheels; "he used a handcart to carry the rocks away"; "their pushcart was piled high with groceries"
+45022,handclap,a clap of the hands to indicate approval
+45023,handcuff cuff handlock manacle,shackle that consists of a metal loop that can be locked around the wrist; usually used in pairs
+45024,handedness laterality,the property of using one hand more than the other
+45025,handful fistful,the quantity that can be held in the hand
+45026,handful smattering,a small number or amount; "only a handful of responses were received"
+45027,handhold,an appendage to hold onto
+45028,handicap,advantage given to a competitor to equalize chances of winning
+45029,handicapped_person,a person who has some condition that markedly restricts their ability to function physically or mentally or socially
+45030,handicraft,a craft that requires skillful hands
+45031,handicraft handcraft handiwork handwork,a work produced by hand labor
+45032,handiness,skillfulness with the hands; "he can do any sort of work requiring handiness and dexterity"
+45033,handiness accessibility availability availableness,the quality of being at hand when needed
+45034,handkerchief hankie hanky hankey,a square piece of cloth used for wiping the eyes or nose or as a costume accessory
+45035,handle grip handgrip hold,the appendage to an object that is designed to be held in order to use or move it; "he grabbed the hammer by the handle"; "it was an old briefcase but it still had a good grip"
+45036,handlebar,the shaped bar used to steer a bicycle
+45037,handler,an agent who handles something or someone; "the senator's campaign handlers"
+45038,handline hand_line,a fishing line managed principally by hand
+45039,handling,manual (or mechanical) carrying or moving or delivering or working with something
+45040,handling manipulation,the action of touching with the hands (or the skillful use of the hands) or by the use of mechanical means
+45041,handling_cost handling_charge,the cost of handling (especially the cost of packaging and mailing an order)
+45042,handloom,a loom powered by hand
+45043,handmaid handmaiden,a personal maid or female attendant
+45044,handmaid handmaiden servant,in a subordinate position; "theology should be the handmaiden of ethics"; "the state cannot be a servant of the church"
+45045,handoff,(American football) a play in which one player hands the ball to a teammate
+45046,handout,giving money or food or clothing to a needy person
+45047,handout press_release release,an announcement distributed to members of the press in order to supplement or replace an oral presentation
+45048,handover,act of relinquishing property or authority etc; "the handover of occupied territory"
+45049,handrest,a support for the hand
+45050,hands custody,(with `in') guardianship over; in divorce cases it is the right to house and care for and discipline a child; "my fate is in your hands"; "too much power in the president's hands"; "your guests are now in my custody"; "the mother was awarded custody of the children"
+45051,handsaw hand_saw carpenter's_saw,a saw used with one hand for cutting wood
+45052,handsaw_fish,a soft-finned fish of the genus Alepisaurus
+45053,handset French_telephone,telephone set with the mouthpiece and earpiece mounted on a single handle
+45054,handshake shake handshaking handclasp,grasping and shaking a person's hand (as to acknowledge an introduction or to agree on a contract)
+45055,handsomeness good_looks,the quality of having regular well-defined features (especially of a man)
+45056,handspike,a metal bar (or length of pipe) used as a lever
+45057,handspring,an acrobatic feat in which a person goes from a standing position to a handstand and back again
+45058,handstamp rubber_stamp,a stamp (usually made of rubber) for imprinting a mark or design by hand
+45059,handstand,the act of supporting yourself by your hands alone in an upside down position
+45060,handwear hand_wear,clothing for the hands
+45061,handwheel,a wheel worked by hand
+45062,handwheel,control consisting of a wheel whose rim serves as the handle by which a part is operated
+45063,handwriting,the activity of writing by hand; "handwriting can be slow and painful for one with arthritis"
+45064,handwriting hand script,something written by hand; "she recognized his handwriting"; "his hand was illegible"
+45065,handyman jack_of_all_trades odd-job_man,a man skilled in various odd jobs and other small tasks
+45066,hang,the way a garment hangs; "he adjusted the hang of his coat"
+45067,hang,a gymnastic exercise performed on the rings or horizontal bar or parallel bars when the gymnast's weight is supported by the arms
+45068,hang-up,an emotional preoccupation
+45069,hang-up hitch rub snag,an unforeseen obstacle
+45070,hang_glider,a rider of a hang glider
+45071,hang_glider,a glider resembling a large kite; the rider hangs from it while descending from a height
+45072,hang_gliding,gliding in a hang glider
+45073,hangar_queen,an airplane with a bad maintenance record
+45074,hanger,a worker who hangs something
+45075,hanger,anything from which something can be hung
+45076,hanging,a form of capital punishment; victim is suspended by the neck from a gallows or gibbet until dead; "in those days the hanging of criminals was a public entertainment"
+45077,hanging wall_hanging,decoration that is hung (as a tapestry) on a wall or over a window; "the cold castle walls were covered with hangings"
+45078,hanging_chad,a chad that is incompletely removed and hanging by one corner
+45079,hanging_fly,any of various mecopterous insects of the family Bittacidae
+45080,hanging_wall,the upper wall of an inclined fault
+45081,hangman,an executioner who hangs the condemned person
+45082,hangman's_rope hangman's_halter halter hemp hempen_necktie,a rope that is used by a hangman to execute persons who have been condemned to death by hanging
+45083,hangnail agnail,a loose narrow strip of skin near the base of a fingernail; tearing it produces a painful sore that is easily infected
+45084,hangover holdover,something that has survived from the past; "a holdover from the sixties"; "hangovers from the 19th century"
+45085,hangover katzenjammer,disagreeable aftereffects from the use of drugs (especially alcohol)
+45086,hank,a coil of rope or wool or yarn
+45087,hank_panky,illicit sexual intercourse
+45088,hankering yen,a yearning for something or to do something
+45089,hansom hansom_cab,a two-wheeled horse-drawn covered carriage with the driver's seat above and behind the passengers
+45090,hao,10 hao equal 1 dong in Vietnam
+45091,hap,an accidental happening; "he recorded all the little haps and mishaps of his life"
+45092,haploid,(genetics) an organism or cell having only one complete set of chromosomes
+45093,haploidy,the condition of being haploid
+45094,haplosporidian,parasite in invertebrates and lower vertebrates of no known economic importance
+45095,haplotype,(genetics) a combination of alleles (for different genes) that are located closely together on the same chromosome and that tend to be inherited together
+45096,happening occurrence occurrent natural_event,an event that happens
+45097,happiness,emotions experienced when in a state of well-being
+45098,happiness felicity,state of well-being characterized by emotions ranging from contentment to intense joy
+45099,happy_hour,the time of day when a bar sells alcoholic drinks at a reduced price
+45100,haptoglobin,a protein in plasma that binds free hemoglobin and removes it (as from wounds)
+45101,harakiri hara-kiri harikari seppuku,ritual suicide by self-disembowelment on a sword; practiced by samurai in the traditional Japanese society
+45102,harangue rant ranting,a loud bombastic declamation expressed with strong emotion
+45103,haranguer,a public speaker who delivers a loud or forceful or angry speech
+45104,harasser,a persistent tormentor
+45105,harasser harrier,a persistent attacker; "the harassers were not members of the regular army"
+45106,harassing_fire,fire designed to disturb the rest of enemy troops and to curtail movement and to lower enemy morale
+45107,harassment molestation,the act of tormenting by continued persistent attacks and criticism
+45108,harassment torment,a feeling of intense annoyance caused by being tormented; "so great was his harassment that he wanted to destroy his tormentors"
+45109,harbinger forerunner predecessor herald precursor,something that precedes and indicates the approach of something or someone
+45110,harbor harbour,a place of refuge and comfort and security
+45111,harbor_patrol,patrol of officers who police a harbor area
+45112,harbor_porpoise herring_hog Phocoena_phocoena,the common porpoise of the northern Atlantic and Pacific
+45113,harbor_seal common_seal Phoca_vitulina,small spotted seal of coastal waters of the northern hemisphere
+45114,harborage harbourage,(nautical) a place of refuge (as for a ship)
+45115,hard-boiled_egg hard-cooked_egg,an egg boiled gently until both the white and the yolk solidify
+45116,hard-shell_crab,edible crab that has not recently molted and so has a hard shell
+45117,hard_beech Nothofagus_truncata,tall New Zealand tree yielding very hard wood
+45118,hard_candy,candy that is brittle; "you can break a tooth on that hard candy"
+45119,hard_cheese,bad luck
+45120,hard_cider,alcoholic drink from fermented cider; `cider' and `cyder' are European (especially British) usages for the fermented beverage
+45121,hard_copy,(computer science) matter that is held in a computer and is typed or printed on paper; "he ran off a hard copy of the report"
+45122,hard_core,the most dedicated and intensely loyal nucleus of a group or movement
+45123,hard_currency,a currency that is not likely to depreciate suddenly in value; "the countries agreed to conduct their bilateral trade in hard currency, replacing previous barter arrangements"; "Germany once had a solid economy, good fiscal and monetary policies, and a hard currency"
+45124,hard_disc hard_disk fixed_disk,a rigid magnetic disk mounted permanently in a drive unit
+45125,hard_drug,a narcotic that is considered relatively strong and likely to cause addiction
+45126,hard_fern,any of several ferns of the genus Blechnum
+45127,hard_hat tin_hat safety_hat,a lightweight protective helmet (plastic or metal) worn by construction workers
+45128,hard_lead,unrefined lead that is hard because of the impurities it contains
+45129,hard_lead antimonial_lead,a lead alloy that contains about 5% antimony
+45130,hard_line,a firm and uncompromising stance or position; "the governor took a hard line on drugs"
+45131,hard_news,news that deals with serious topics or events
+45132,hard_palate,the bony part of the roof of the mouth
+45133,hard_right,the extreme right wing
+45134,hard_roll Vienna_roll,yeast-raised roll with a hard crust
+45135,hard_rubber vulcanite ebonite,a hard nonresilient rubber formed by vulcanizing natural rubber
+45136,hard_rush Juncus_inflexus,tall rush of temperate regions
+45137,hard_sauce,butter and sugar creamed together with brandy or other flavoring and served with rich puddings
+45138,hard_sell,forceful and insistent advertising
+45139,hard_shoulder,a paved strip beside a motorway (for stopping in emergencies)
+45140,hard_solder,solder that contains copper; melts at a relatively high temperature; used for brazing
+45141,hard_steel,steel with more than 0.3% carbon
+45142,hard_tick ixodid,ticks having a hard shield on the back and mouth parts that project from the head
+45143,hard_time,a term served in a maximum security prison
+45144,hard_time rough_sledding,a difficulty that can be overcome with effort; "we had a hard time getting here"; "analysts predicted rough sledding for handset makers"
+45145,hard_times,a time of difficulty
+45146,hard_water,water that contains mineral salts (as calcium and magnesium ions) that limit the formation of lather with soap
+45147,hardback hardcover,a book with cardboard or cloth or leather covers
+45148,hardbake,a British sweet made with molasses and butter and almonds
+45149,hardball,a no-nonsense attitude in business or politics; "they play hardball in the Senate"
+45150,hardball,baseball as distinguished from softball
+45151,hardening,abnormal hardening or thickening of tissue
+45152,hardening,the act of making something harder (firmer or tighter or more compact)
+45153,hardening solidifying solidification set curing,the process of becoming hard or solid by cooling or drying or crystallization; "the hardening of concrete"; "he tested the set of the glue"
+45154,hardinggrass Harding_grass toowomba_canary_grass Phalaris_aquatica Phalaris_tuberosa,perennial grass of Australia and South Africa; introduced in North America as forage grass
+45155,hardliner,a conservative who is uncompromising
+45156,hardness,the property of being rigid and resistant to pressure; not easily scratched; measured on Mohs scale
+45157,hardness,a quality of water that contains dissolved mineral salts that prevent soap from lathering; "the costs of reducing hardness depend on the relative amounts of calcium and magnesium compounds that are present"
+45158,hardness ruggedness,the quality of being difficult to do; "he assigned a series of problems of increasing hardness"; "the ruggedness of his exams caused half the class to fail"
+45159,hardship,something that causes or entails suffering; "I cannot think it a hardship that more indulgence is allowed to men than to women"- James Boswell; "the many hardships of frontier life"
+45160,hardstem_bulrush hardstemmed_bulrush Scirpus_acutus,widely distributed North American sedge having rigid olive green stems
+45161,hardtack,a mountain mahogany
+45162,hardtack pilot_biscuit pilot_bread sea_biscuit ship_biscuit,very hard unsalted biscuit or bread; a former ship's staple
+45163,hardtop,a car that resembles a convertible but has a fixed rigid top
+45164,hardware,major items of military weaponry (as tanks or missile)
+45165,hardware computer_hardware,(computer science) the mechanical, magnetic, electronic, and electrical components making up a computer system
+45166,hardware ironware,instrumentalities (tools or implements) made of metal
+45167,hardware_error,error resulting from a malfunction of some physical component of the computer
+45168,hardware_store ironmonger ironmonger's_shop,a store selling hardware; "in Great Britain they used to call a hardware store an ironmonger's shop"
+45169,hardwood,the wood of broad-leaved dicotyledonous trees (as distinguished from the wood of conifers)
+45170,hare,swift timid long-eared mammal larger than a rabbit having a divided upper lip and long hind legs; young born furred and with open eyes
+45171,hare's-foot_bristle_fern Trichomanes_boschianum,a variety of bristle fern
+45172,hare's-foot_fern,either of two ferns of the genus Davallia having a soft grey hairy rootstock
+45173,hare_wallaby kangaroo_hare,small Australian wallaby that resembles a hare and has persistent teeth
+45174,harebell bluebell Campanula_rotundifolia,perennial of northern hemisphere with slender stems and bell-shaped blue flowers
+45175,harem hareem seraglio serail,living quarters reserved for wives and concubines and female relatives in a Muslim household
+45176,haricot,a French variety of green bean plant bearing light-colored beans
+45177,haricot_vert haricots_verts French_bean,very small and slender green bean
+45178,harlequin,a clown or buffoon (after the Harlequin character in the commedia dell'arte)
+45179,harlequin_opal,a reddish opal with small patches of brilliant color
+45180,harmattan,a dusty wind from the Sahara that blows toward the western coast of Africa during the winter
+45181,harmfulness injuriousness,destructiveness that causes harm or injury
+45182,harmfulness noisomeness noxiousness,the quality of being noxious
+45183,harmonic,a tone that is a component of a complex sound
+45184,harmonic,any of a series of musical tones whose frequencies are integral multiples of the frequency of a fundamental
+45185,harmonic_mean,the mean of n numbers expressed as the reciprocal of the arithmetic mean of the reciprocals of the numbers
+45186,harmonic_motion,a periodic motion in which the displacement is either symmetrical about a point or is the sum of such motions
+45187,harmonic_progression,(mathematics) a progression of terms whose reciprocals form an arithmetic progression
+45188,harmonica mouth_organ harp mouth_harp,a small rectangular free-reed instrument having a row of free reeds set back in air holes and played by blowing into the desired hole
+45189,harmonics,the study of musical sound
+45190,harmonium organ reed_organ,a free-reeded instrument with a piano keyboard in which air is forced through the reeds by bellows
+45191,harmonization harmonisation,a piece of harmonized music
+45192,harmonization harmonisation,singing in harmony
+45193,harmonizer harmoniser,a musician who sings or plays in harmony
+45194,harmonizer harmoniser,a mediator who brings one thing into harmonious agreement with another
+45195,harmony,an agreeable sound property
+45196,harmony concord concordance,a harmonious state of things in general and of their properties (as of colors and sounds); congruity of parts with one another and with the whole
+45197,harmony concord concordance,agreement of opinions
+45198,harmony harmoniousness,compatibility in opinion and action
+45199,harmony musical_harmony,the structure of music with respect to the composition and progression of chords
+45200,harness,a support consisting of an arrangement of straps for holding something to the body (especially one supporting a person suspended from a parachute)
+45201,harness,stable gear consisting of an arrangement of leather straps fitted to a draft animal so that it can be attached to and pull a cart
+45202,harness_horse,horse used for pulling vehicles
+45203,harness_race harness_racing,a horse race between people riding in sulkies behind horses that are trotting or pacing
+45204,harnessed_antelope,any of several antelopes of the genus Tragelaphus having striped markings resembling a harness
+45205,harp,a pair of curved vertical supports for a lampshade
+45206,harp,a chordophone that has a triangular frame consisting of a sounding board and a pillar and a curved neck; the strings stretched between the neck and the soundbox are plucked with the fingers
+45207,harp_seal Pagophilus_groenlandicus,common Arctic seal; the young are all white
+45208,harpist harper,someone who plays the harp
+45209,harpoon,a spear with a shaft and barbed point for throwing; used for catching large fish or whales; a strong line is attached to it
+45210,harpoon_gun,a cannon or similar gun that fires harpoons
+45211,harpoon_line,a strong rope for making the catch fast to the harpooner's boat
+45212,harpoon_log,a cylindrical log with a device that registers distance
+45213,harpooner harpooneer,someone who launches harpoons
+45214,harpsichord cembalo,a clavier with strings that are plucked by plectra mounted on pivots
+45215,harpsichordist,someone who plays the harpsichord
+45216,harpulla Harpullia_cupanioides,fast-growing tree of India and East Indies yielding a wood used especially for building
+45217,harpullia,any of various tree of the genus Harpullia
+45218,harpy harpy_bat tube-nosed_bat tube-nosed_fruit_bat,any of various fruit bats of the genus Nyctimene distinguished by nostrils drawn out into diverging tubes
+45219,harpy harpy_eagle Harpia_harpyja,large black-and-white crested eagle of tropical America
+45220,harridan,a scolding (even vicious) old woman
+45221,harrier,a hound that resembles a foxhound but is smaller; used to hunt rabbits
+45222,harrier,hawks that hunt over meadows and marshes and prey on small terrestrial animals
+45223,harrier_eagle short-toed_eagle,any of numerous large Old World hawks intermediate in some respects between typical hawks and typical eagles
+45224,harrow,a cultivator that pulverizes or smooths the soil
+45225,harshness abrasiveness scratchiness,the roughness of a substance that causes abrasions
+45226,harshness roughness,the quality of being harsh or rough or grating to the senses
+45227,hart stag,a male deer, especially an adult male red deer
+45228,hart's-tongue hart's-tongue_fern Asplenium_scolopendrium Phyllitis_scolopendrium,Eurasian fern with simple lanceolate fronds
+45229,hart's-tongue hart's-tongue_fern Olfersia_cervina Polybotrya_cervina Polybotria_cervina,tropical American terrestrial fern with leathery lanceolate fronds; sometimes placed in genus Polybotrya
+45230,hartebeest,a large African antelope with lyre-shaped horns that curve backward
+45231,harvest,the consequence of an effort or activity; "they gathered a harvest of examples"; "a harvest of love"
+45232,harvest harvest_time,the season for gathering crops
+45233,harvest harvesting harvest_home,the gathering of a ripened crop
+45234,harvest-lice Agrimonia_eupatoria,erect perennial Old World herb of dry grassy habitats
+45235,harvest_mite chigger jigger redbug,larval mite that sucks the blood of vertebrates including human beings causing intense irritation
+45236,harvest_moon,the full moon nearest the September equinox
+45237,harvest_mouse Micromyx_minutus,small reddish-brown Eurasian mouse inhabiting e.g. cornfields
+45238,harvester reaper,someone who helps to gather the harvest
+45239,harvester reaper,farm machine that gathers a food crop from the fields
+45240,harvestfish Paprilus_alepidotus,butterfish up to a foot long of Atlantic waters from Chesapeake Bay to Argentina
+45241,harvestman daddy_longlegs Phalangium_opilio,spiderlike arachnid with a small rounded body and very long thin legs
+45242,has-been back-number,someone who is no longer popular
+45243,hash,chopped meat mixed with potatoes and browned
+45244,hash_head,a user of hashish
+45245,hash_house,an inexpensive restaurant
+45246,hashish hasheesh haschisch hash,purified resinous extract of the hemp plant; used as a hallucinogen
+45247,haslet,heart and liver and other edible viscera especially of hogs; usually chopped and formed into a loaf and braised
+45248,hasp,a fastener for a door or lid; a hinged metal plate is fitted over a staple and is locked with a pin or padlock
+45249,hassium Hs element_108 atomic_number_108,a radioactive transuranic element
+45250,hassle scuffle tussle dogfight rough-and-tumble,disorderly fighting
+45251,hassock,a cushion for kneeling on (as when praying in church)
+45252,hastate_leaf,a leaf shaped like a spearhead with flaring pointed lobes at the base
+45253,haste hastiness hurry hurriedness precipitation,overly eager speed (and possible carelessness); "he soon regretted his haste"
+45254,haste hurry rush rushing,the act of moving hurriedly and in a careless manner; "in his haste to leave he forgot his book"
+45255,hastiness,hasty impulsiveness
+45256,hasty_defense hasty_defence,a defense organized while in contact with the enemy or when time is limited
+45257,hasty_pudding,sweetened porridge made of tapioca or flour or oatmeal cooked quickly in milk or water
+45258,hasty_pudding,cornmeal mush served with sweetening (maple syrup or brown sugar)
+45259,hat,an informal term for a person's role; "he took off his politician's hat and talked frankly"
+45260,hat chapeau lid,headdress that protects the head from bad weather; has shaped crown and usually a brim
+45261,hat_trick,(sports) three consecutive scores by one player or three scores in one game (as in cricket or ice hockey etc.)
+45262,hatband,a band around the crown of a hat just above the brim
+45263,hatbox,a round piece of luggage for carrying hats
+45264,hatch,a movable barrier covering a hatchway
+45265,hatch hatching,the production of young from an egg
+45266,hatch hatching crosshatch hachure,shading consisting of multiple crossing lines
+45267,hatchback,a car having a hatchback door
+45268,hatchback hatchback_door liftgate hatch,a sloping rear car door that is lifted to open
+45269,hatchel heckle,a comb for separating flax fibers
+45270,hatchery,a place where eggs are hatched under artificial conditions (especially fish eggs); "the park authorities operated a trout hatchery"
+45271,hatchet,a small ax with a short handle used with one hand (usually to chop wood)
+45272,hatchet_man enforcer,one whose job it is to execute unpleasant tasks for a superior
+45273,hatchet_man iceman,a professional killer
+45274,hatchling,any recently hatched animal (especially birds)
+45275,hatchway opening scuttle,an entrance equipped with a hatch; especially a passageway between decks of a ship
+45276,hate hatred,the emotion of intense dislike; a feeling of dislike so strong that it demands action
+45277,hate_mail,mail that expresses the writer's dislike or hatred (usually in offensive language)
+45278,hatefulness obnoxiousness objectionableness,the quality of being hateful
+45279,hatemonger,one who arouses hatred for others
+45280,hater,a person who hates
+45281,hatful,as many or as much as a hat will hold
+45282,hatha_yoga,yogic exercises (popular in the West) that combine difficult postures (which force the mind to withdraw from the outside world) with controlled breathing
+45283,hatmaker hatter milliner modiste,someone who makes and sells hats
+45284,hatpin,a long sturdy pin used by women to secure a hat to their hair
+45285,hauberk byrnie,a long (usually sleeveless) tunic of chain mail formerly worn as defensive armor
+45286,hauler haulier,a haulage contractor
+45287,hauling trucking truckage,the activity of transporting goods by truck
+45288,haulm halm,stems of beans and peas and potatoes and grasses collectively as used for thatching and bedding
+45289,haunch,the hip and buttock and upper thigh in human beings
+45290,haunch,the loin and leg of a quadruped
+45291,haunt hangout resort repair stamping_ground,a frequently visited place
+45292,hausmannite,a mineral consisting of manganese tetroxide; a source of manganese
+45293,haustorium,a root-like attachment in parasitic plants that penetrates and obtains food from the host
+45294,haute_couture high_fashion high_style,trend-setting fashions
+45295,haute_cuisine,(French) an elaborate and skillful manner of preparing food
+45296,havelock,a cloth covering for a service cap with a flap extending over the back of the neck to protect the neck from direct rays of the sun
+45297,haven oasis,a shelter serving as a place of safety or sanctuary
+45298,havoc mayhem,violent and needless disturbance
+45299,haw,the nictitating membrane of a horse
+45300,hawala,an underground banking system based on trust whereby money can be made available internationally without actually moving it or leaving a record of the transaction; "terrorists make extensive use of hawala"
+45301,hawfinch Coccothraustes_coccothraustes,a common large finch of Eurasia
+45302,hawk,diurnal bird of prey typically having short rounded wings and a long tail
+45303,hawk war_hawk,an advocate of an aggressive policy on foreign relations
+45304,hawk's-beard hawk's-beards,any of various plants of the genus Crepis having loose heads of yellow flowers on top of a long branched leafy stem; northern hemisphere
+45305,hawk_nose,a nose curved downward like the beak of a hawk
+45306,hawk_owl Surnia_ulula,grey-and-white diurnal hawk-like owl of northern parts of the northern hemisphere
+45307,hawkbit,any of various common wildflowers of the genus Leontodon; of temperate Eurasia to Mediterranean regions
+45308,hawkishness,any political orientation favoring aggressive policies
+45309,hawkmoth hawk_moth sphingid sphinx_moth hummingbird_moth,any of various moths with long narrow forewings capable of powerful flight and hovering over flowers to feed
+45310,hawksbill_turtle hawksbill hawkbill tortoiseshell_turtle Eretmochelys_imbricata,pugnacious tropical sea turtle with a hawk-like beak; source of food and the best tortoiseshell
+45311,hawkweed,any of various plants of the genus Pilosella
+45312,hawkweed,any of numerous often hairy plants of the genus Hieracium having yellow or orange flowers that resemble the dandelion
+45313,hawse hawsehole hawsepipe,the hole that an anchor rope passes through
+45314,hawser,large heavy rope for nautical use
+45315,hawser_bend,a knot uniting the ends of two lines
+45316,hawthorn haw,a spring-flowering shrub or small tree of the genus Crataegus
+45317,hay,grass mowed and cured for use as fodder
+45318,hay-scented hay-scented_fern scented_fern boulder_fern Dennstaedtia_punctilobula,fern of eastern North America with pale green fronds and an aroma like hay
+45319,hay_bale,a bale of hay
+45320,hay_fever pollinosis,a seasonal rhinitis resulting from an allergic reaction to pollen
+45321,haycock,a small cone-shaped pile of hay that has been left in the field until it is dry enough to carry to the hayrick
+45322,hayfield meadow,a field where grass or alfalfa are grown to be made into hay
+45323,hayfork,a long-handled fork for turning or lifting hay
+45324,haying,the harvesting of hay
+45325,haying haying_time,the season for cutting and drying and storing grass as fodder
+45326,hayloft haymow mow,a loft in a barn where hay is stored
+45327,haymaker hay_conditioner,a farm machine that treats hay to cause more rapid and even drying
+45328,haymaker knockout_punch KO_punch Sunday_punch,a hard punch that renders the opponent unable to continue boxing
+45329,haymaking,taking full advantage of an opportunity while it lasts
+45330,haymaking,cutting grass and curing it to make hay
+45331,haymow,a mass of hay piled up in a barn for preservation
+45332,hayrack,a rack that holds hay for feeding livestock
+45333,hayrack hayrig,a frame attached to a wagon to increase the amount of hay it can carry
+45334,haystack hayrick rick,a stack of hay
+45335,haywire,wire for tying up bales of hay
+45336,hazard,an obstacle on a golf course
+45337,hazard jeopardy peril risk endangerment,a source of danger; a possibility of incurring loss or misfortune; "drinking alcohol is a health hazard"
+45338,hazard_insurance,insurance that provides protection against certain risks such as storms or fires
+45339,hazardousness perilousness,the state of being dangerous
+45340,haze,atmospheric moisture or dust or smoke that causes reduced visibility
+45341,hazel,the fine-grained wood of a hazelnut tree (genus Corylus) and the hazel tree (Australian genus Pomaderris)
+45342,hazel,a shade of brown that is yellowish or reddish; it is a greenish shade of brown when used to describe the color of someone's eyes
+45343,hazel hazel_tree Pomaderris_apetala,Australian tree grown especially for ornament and its fine-grained wood and bearing edible nuts
+45344,hazel_mouse Muscardinus_avellanarius,a variety of dormouse
+45345,hazelnut filbert cobnut cob,nut of any of several trees of the genus Corylus
+45346,hazelnut hazel hazelnut_tree,any of several shrubs or small trees of the genus Corylus bearing edible nuts enclosed in a leafy husk
+45347,haziness,vagueness attributable to being not clearly defined
+45348,haziness mistiness steaminess vaporousness vapourousness,cloudiness resulting from haze or mist or vapor
+45349,he,the 5th letter of the Hebrew alphabet
+45350,head,the tip of an abscess (where the pus accumulates)
+45351,head,the length or height based on the size of a human or animal head; "he is two heads taller than his little sister"; "his horse won by a head"
+45352,head,the pressure exerted by a fluid; "a head of steam"
+45353,head,an individual person; "tickets are $5 per head"
+45354,head,a user of (usually soft) drugs; "the office was full of secret heads"
+45355,head,a rounded compact mass; "the head of a comet"
+45356,head,the foam or froth that accumulates at the top when you pour an effervescent liquid into a container; "the beer had a large head of foam"
+45357,head,the top of something; "the head of the stairs"; "the head of the page"; "the head of the list"
+45358,head,the front of a military formation or procession; "the head of the column advanced boldly"; "they were at the head of the attack"
+45359,head,the rounded end of a bone that fits into a rounded cavity in another bone to form a joint; "the head of the humerus"
+45360,head,that part of a skeletal muscle that is away from the bone that it moves
+45361,head,(usually plural) the obverse side of a coin that usually bears the representation of a person's head; "call heads or tails!"
+45362,head,the striking part of a tool; "the head of the hammer"
+45363,head,(nautical) a toilet on board a boat or ship
+45364,head,a projection out from one end; "the head of the nail"; "a pinhead is the head of a pin"
+45365,head,a single domestic animal; "200 head of cattle"
+45366,head caput,the upper part of the human body or the front part of the body in animals; contains the face and brains; "he stuck his head out the window"
+45367,head chief top_dog,a person who is in charge; "the head of the whole operation"
+45368,head head_word,(grammar) the word in a grammatical constituent that plays the same grammatical role as the whole constituent
+45369,head_blight,a blight of the heads of cereals
+45370,head_cabbage,any of several varieties of cabbage having a large compact globular head; may be steamed or boiled or stir-fried or used raw in coleslaw
+45371,head_cabbage head_cabbage_plant Brassica_oleracea_capitata,any of various cultivated cabbage plants having a short thick stalk and large compact head of edible usually green leaves
+45372,head_cold,a common cold affecting the nasal passages and resulting in congestion and sneezing and headache
+45373,head_count headcount,number of people in a particular group
+45374,head_covering veil,a garment that covers the head and face
+45375,head_crash,(computer science) a crash of a read/write head in a hard disk drive (usually caused by contact of the head with the surface of the magnetic disk)
+45376,head_gasket,a gasket to seal a cylinder head
+45377,head_gate,a gate upstream from a lock or canal that is used to control the flow of water at the upper end
+45378,head_lettuce Lactuca_sativa_capitata,distinguished by leaves arranged in a dense rosette that develop into a compact ball
+45379,head_linesman,a football official in charge of recording yardage gained or lost
+45380,head_louse Pediculus_capitis,infests the head and body of humans
+45381,head_nurse,the person in charge of nursing in a medical institution
+45382,head_of_household,the head of a household or family or tribe
+45383,head_of_state chief_of_state,the chief public representative of a country who may also be the head of government
+45384,head_register head_voice head_tone,the higher ranges of the voice in speaking or singing; the vibrations of sung notes are felt in the head
+45385,head_sea,a sea in which the waves are running directly against the course of the ship
+45386,head_shop,a shop specializing in articles of interest to drug users; "he bought some roach clips and hashish pipes at the head shop"
+45387,head_smut Sphacelotheca_reiliana,smut fungus attacking heads of corn or sorghum and causing a covered smut
+45388,headache head_ache cephalalgia,pain in the head caused by dilation of cerebral arteries or muscle contractions or a reaction to drugs
+45389,headband,a band worn around or over the head; "the earphones were held in place by a headband"
+45390,headboard,a vertical board or panel forming the head of a bedstead
+45391,headcheese,sausage or jellied loaf made of chopped parts of the head meat and sometimes feet and tongue of a calf or pig
+45392,headdress headgear,clothing for the head
+45393,header,a framing member crossing and supporting the ends of joists, studs, or rafters so as to transfer their weight to parallel joists, studs, or rafters
+45394,header,a machine that cuts the heads off grain and moves them into a wagon
+45395,header,(soccer) the act of hitting the ball with your head
+45396,header,a headlong jump (or fall); "he took a header into the shrubbery"
+45397,header coping cope,brick that is laid sideways at the top of a wall
+45398,header lintel,horizontal beam used as a finishing piece over a door or window
+45399,headfast,a mooring line that secures the bow of a boat or ship to a wharf
+45400,headful,the quantity of information that a head will hold; "he has a headful of baseball statistics"
+45401,headful,a covering over the surface of your head; "a headful of tight curls"; "a headful of lice"
+45402,headgear,the hoist at the pithead of a mine
+45403,headgear,stable gear consisting of any part of a harness that fits about the horse's head
+45404,headhunter,a recruiter of personnel (especially for corporations)
+45405,headhunter head-shrinker,a savage who cuts off and preserves the heads of enemies as trophies
+45406,heading header head,a line of text serving to indicate what the passage below it is about; "the heading seemed to have little to do with the text"
+45407,headlight headlamp,a powerful light with reflector; attached to the front of an automobile or locomotive
+45408,headline newspaper_headline,the heading or caption of a newspaper article
+45409,headliner star,a performer who receives prominent billing
+45410,headlinese,using the abbreviated style of headline writers
+45411,headlock,a wrestling hold in which the opponent's head is locked between the crook of your elbow and the side of your body
+45412,headman tribal_chief chieftain chief,the head of a tribe or clan
+45413,headmaster schoolmaster master,presiding officer of a school
+45414,headmastership,the position of headmaster
+45415,headmistress,a woman headmaster
+45416,headmistressship,the position of headmistress
+45417,headpiece,a protective helmet for the head
+45418,headpin kingpin,the front bowling pin in the triangular arrangement of ten pins
+45419,headquarters,(plural) a military unit consisting of a commander and the headquarters staff
+45420,headquarters HQ military_headquarters,the military installation from which a commander performs the functions of command; "the general's headquarters were a couple of large tents"
+45421,headquarters central_office main_office home_office home_base,(usually plural) the office that serves as the administrative center of an enterprise; "many companies have their headquarters in New York"
+45422,headquarters_staff,military staff stationed at headquarters
+45423,headrace,a waterway that feeds water to a mill or water wheel or turbine
+45424,headrest,a rest for the head
+45425,headrest head_restraint,a cushion attached to the top of the back of an automobile's seat to prevent whiplash
+45426,headroom dynamic_headroom,the capacity of a system to reproduce loud sounds without distortion
+45427,headroom headway clearance,vertical space available to allow easy passage under something
+45428,heads-up,a warning message; "he sent a heads-up to the District Attorney"
+45429,headsail,any sail set forward of the foremast of a vessel
+45430,headscarf,a kerchief worn over the head and tied under the chin
+45431,headset,receiver consisting of a pair of headphones
+45432,headshake headshaking,the act of turning your head left and right to signify denial or disbelief or bemusement; "I could tell from their headshakes that they didn't believe me"
+45433,headship,the position of headmaster or headmistress
+45434,headship,the position of head
+45435,headshot,a photograph of a person's head
+45436,headshot,an attempt to put the soccer ball into the net by using the head
+45437,headshot,a shot aimed at a person's head
+45438,headsman headman,an executioner who beheads the condemned person
+45439,headspace,the volume left at the top of a filled container (bottle or jar or tin) before sealing
+45440,headstall headpiece,the band that is the part of a bridle that fits around a horse's head
+45441,headstand,an acrobatic feat in which a person balances on the head (usually with the help of the hands)
+45442,headstock,the stationary support in a machine or power tool that supports and drives a revolving part (as a chuck or the spindle on a lathe)
+45443,headstream,a stream that forms the source of a river
+45444,headwater,the source of a river; "the headwaters of the Nile"
+45445,headway head,forward movement; "the ship made little headway against the gale"
+45446,headwind,wind blowing opposite to the path of a ship or aircraft
+45447,headword,a word placed at the beginning of a line or paragraph (as in a dictionary entry)
+45448,headword head_word,a content word that can be qualified by a modifier
+45449,healing,the natural process by which the body repairs itself
+45450,health,the general condition of body and mind; "his delicate health"; "in poor health"
+45451,health wellness,a healthy state of wellbeing free from disease; "physicians should be held responsible for the health of their patients"
+45452,health_care,social insurance for the ill and injured
+45453,health_food,any natural or prepared food popularly believed to promote good health
+45454,health_hazard,hazard to the health of those exposed to it
+45455,health_insurance,insurance against loss due to ill health
+45456,health_maintenance_organization HMO,group insurance that entitles members to services of participating hospitals and clinics and physicians
+45457,health_profession,the body of individuals whose work helps to maintain the health of their clients
+45458,health_professional primary_care_provider PCP health_care_provider caregiver,a person who helps in identifying or preventing or treating illness or disability
+45459,health_spa spa health_club,a place of business with equipment and facilities for exercising and improving physical fitness
+45460,healthcare health_care,the preservation of mental and physical health by preventing or treating illness through services offered by the health profession
+45461,healthcare_delivery health_care_delivery care_delivery,the provision of health care
+45462,healthfulness,the quality of promoting good health
+45463,hearer listener auditor attender,someone who listens attentively
+45464,hearing,a session (of a committee or grand jury) in which witnesses are called and testimony is taken; "the investigative committee will hold hearings in Chicago"
+45465,hearing,(law) a proceeding (usually by a court) where evidence is taken for the purpose of determining an issue of fact and reaching a decision based on that evidence
+45466,hearing audience,an opportunity to state your case and be heard; "they condemned him without a hearing"; "he saw that he had lost his audience"
+45467,hearing audition auditory_sense sense_of_hearing auditory_modality,the ability to hear; the auditory faculty; "his hearing was impaired"
+45468,hearing_aid deaf-aid,an electronic device that amplifies sound and is worn to compensate for poor hearing
+45469,hearing_aid ear_trumpet,a conical acoustic device formerly used to direct sound to the ear of a hearing-impaired person
+45470,hearing_dog,dog trained to assist the deaf by signaling the occurrence of certain sounds
+45471,hearing_examiner hearing_officer,an official appointed by a government agency to conduct an investigation or administrative hearing so that the agency can exercise its statutory powers
+45472,hearing_impairment hearing_disorder,impairment of the sense of hearing
+45473,hearsay_evidence,evidence based on what someone has told the witness and not of direct knowledge
+45474,hearsay_rule,a rule that declares not admissible as evidence any statement other than that by a witness
+45475,hearse,a vehicle for carrying a coffin to a church or a cemetery; formerly drawn by horses but now usually a motor vehicle
+45476,heart,a plane figure with rounded sides curving inward at the top and intersecting at the bottom; conventionally used on playing cards and valentines; "he drew a heart and called it a valentine"
+45477,heart,a firm rather dry variety meat (usually beef or veal); "a five-pound beef heart will serve six"
+45478,heart,a playing card in the major suit that has one or more red hearts on it; "he led the queen of hearts"; "hearts were trumps"
+45479,heart bosom,the locus of feelings and intuitions; "in your heart you know it is true"; "her story would melt your bosom"
+45480,heart mettle nerve spunk,the courage to carry on; "he kept fighting on pure spunk"; "you haven't got the heart for baseball"
+45481,heart pump ticker,the hollow muscular organ located behind the sternum and between the lungs; its rhythmic contractions move the blood through the body; "he stood still, his heart thumping wildly"
+45482,heart spirit,an inclination or tendency of a certain kind; "he had a change of heart"
+45483,heart-leaved_aster Aster_cordifolius,perennial wood aster of eastern North America
+45484,heart-lung_machine,a pump to maintain circulation during heart surgery; diverts blood from the heart and oxygenates it and then pumps it through the body
+45485,heart-to-heart,an intimate talk in private; "he took me aside for a little heart-to-heart"
+45486,heart_attack,a sudden severe instance of abnormal heart function
+45487,heart_block Adams-Stokes_syndrome Stokes-Adams_syndrome atrioventricular_block,recurrent sudden attacks of unconsciousness caused by impaired conduction of the impulse that regulates the heartbeat
+45488,heart_cherry oxheart oxheart_cherry,any of several cultivated sweet cherries having sweet juicy heart-shaped fruits
+45489,heart_cherry oxheart oxheart_cherry,large heart-shaped sweet cherry with soft flesh
+45490,heart_disease cardiopathy,a disease of the heart
+45491,heart_failure coronary_failure,inability of the heart to pump enough blood to sustain normal bodily functions
+45492,heart_murmur cardiac_murmur murmur,an abnormal sound of the heart; sometimes a sign of abnormal function of the heart valves
+45493,heart_surgery,any surgical procedure involving the heart
+45494,heart_urchin,sea urchin having a heart-shaped body in a rigid spiny shell
+45495,heart_valve,an implant that replaces a natural cardiac valve
+45496,heart_valve cardiac_valve,a valve to control one-way flow of blood
+45497,heartbeat,an animating or vital unifying force; "New York is the commercial heartbeat of America"
+45498,heartbreaker,a charming person who is irresponsible in emotional relationships
+45499,heartbreaker,a narrow defeat or a defeat at the last minute
+45500,heartburn pyrosis,a painful burning sensation in the chest caused by gastroesophageal reflux (backflow from the stomach irritating the esophagus); symptomatic of an ulcer or a diaphragmatic hernia or other disorder
+45501,heartburning,intense resentment; "his promotion caused much heartburning among his rivals"
+45502,hearth fireside,an area near a fireplace (usually paved and extending out into a room); "they sat on the hearth and warmed themselves before the fire"
+45503,hearth fireside,home symbolized as a part of the fireplace; "driven from hearth and home"; "fighting in defense of their firesides"
+45504,hearth_money Peter's_pence,an annual contribution made by Roman Catholics to support the papal see
+45505,hearthrug,a rug spread out in front of a fireplace
+45506,hearthstone,a stone that forms a hearth
+45507,heartiness wholeheartedness,the quality of hearty sincerity
+45508,heartland,the central region of a country or continent; especially a region that is important to a country or to a culture
+45509,heartleaf heart-leaf Asarum_shuttleworthii,wild ginger having persistent heart-shaped pungent leaves; West Virginia to Alabama
+45510,heartleaf heart-leaf Asarum_virginicum,evergreen low-growing perennial having mottled green and silvery-grey heart-shaped pungent leaves; Virginia to South Carolina
+45511,heartleaf_arnica Arnica_cordifolia,wildflower with heart-shaped leaves and broad yellow flower heads; of alpine areas west of the Rockies from Alaska to southern California
+45512,heartleaf_manzanita Arctostaphylos_andersonii,erect California shrub having leaves with heart-shaped lobes at the base
+45513,heartlessness coldheartedness hardheartedness,an absence of concern for the welfare of others
+45514,heartrot,any plant disease in which the central part of a plant rots (especially in trees)
+45515,hearts Black_Maria,a form of whist in which players avoid winning tricks containing hearts or the queen of spades
+45516,heartseed Cardiospermum_grandiflorum,herbaceous vine of tropical America and Africa
+45517,heartstrings,your deepest feelings of love and compassion; "many adoption cases tug at the heartstrings"
+45518,heartthrob,an object of infatuation
+45519,heartwood duramen,the older inactive central wood of a tree or woody plant; usually darker and denser than the surrounding sapwood
+45520,heat,a preliminary race in which the winner advances to a more important race
+45521,heat heat_energy,a form of energy that is transferred by a difference in temperature
+45522,heat warmth,the sensation caused by heat energy
+45523,heat warmth passion,the trait of being intensely emotional
+45524,heat-seeking_missile,a missile with a guidance system that directs it toward targets emitting infrared radiation (as the emissions of a jet engine)
+45525,heat_content total_heat enthalpy H,(thermodynamics) a thermodynamic quantity equal to the internal energy of a system plus the product of its volume and pressure; "enthalpy is the amount of energy in a system capable of doing mechanical work"
+45526,heat_dissipation,dissipation of heat
+45527,heat_engine,any engine that makes use of heat to do work
+45528,heat_exchanger,device that transfers heat from one liquid to another without allowing them to mix
+45529,heat_exhaustion heat_prostration,a condition marked by dizziness and nausea and weakness caused by depletion of body fluids and electrolytes
+45530,heat_flash,a flash of intense heat (as released by an atomic explosion)
+45531,heat_lamp infrared_lamp,electric heater consisting of a high-power incandescent lamp that emits infrared radiation; "the bathroom could be warmed by an infrared lamp"
+45532,heat_lightning,bright flashes of light near the horizon without thunder (especially on hot evenings); usually attributed to distant lightning that is reflected by clouds
+45533,heat_of_condensation,heat liberated by a unit mass of gas at its boiling point as it condenses into a liquid; "the heat of condensation is equal to the heat of vaporization"
+45534,heat_of_dissociation,the heat required for a fluid substance to break up into simpler constituents
+45535,heat_of_formation,the heat evolved or absorbed during the formation of one mole of a substance from its component elements
+45536,heat_of_fusion,heat absorbed by a unit mass of a solid at its melting point in order to convert the solid into a liquid at the same temperature; "the heat of fusion is equal to the heat of solidification"
+45537,heat_of_solidification,heat liberated by a unit mass of liquid at its freezing point when it solidifies
+45538,heat_of_solution,the heat evolved or absorbed when one mole of a substance is dissolved in a large volume of a solvent
+45539,heat_of_sublimation,heat absorbed by a unit mass of material when it changes from a solid to a gaseous state
+45540,heat_of_vaporization heat_of_vaporisation,heat absorbed by a unit mass of a material at its boiling point in order to convert the material into a gas at the same temperature
+45541,heat_pump,apparatus that extracts heat from a liquid that is at a higher temperature than its surroundings; can be used to transfer heat from a reservoir outside in order to heat a building
+45542,heat_ray,a ray that produces a thermal effect
+45543,heat_shield,a protective covering that protects a spacecraft from overheating on reentry
+45544,heat_sink,a metal conductor specially designed to conduct (and radiate) heat
+45545,heat_wave,a wave of unusually hot weather
+45546,heater warmer,device that heats water or supplies warmth to a room
+45547,heath,a low evergreen shrub of the family Ericaceae; has small bell-shaped pink or purple flowers
+45548,heath heathland,a tract of level wasteland; uncultivated land with sandy soil and scrubby vegetation
+45549,heath_aster Aster_arenosus,common North American perennial with heathlike foliage and small white flower heads
+45550,heath_aster Aster_ericoides,common much-branched North American perennial with heathlike foliage and small starry white flowers
+45551,heath_hen Tympanuchus_cupido_cupido,extinct prairie chicken
+45552,heath_pea earth-nut_pea earthnut_pea tuberous_vetch Lathyrus_tuberosus,European herb bearing small tubers used for food and in Scotland to flavor whiskey
+45553,heathen pagan gentile infidel,a person who does not acknowledge your god
+45554,heather ling Scots_heather broom Calluna_vulgaris,common Old World heath represented by many varieties; low evergreen grown widely in the northern hemisphere
+45555,heather_mixture heather,interwoven yarns of mixed colors producing muted greyish shades with flecks of color
+45556,heating warming,the process of becoming warmer; a rising temperature
+45557,heating_element,the component of a heater or range that transforms fuel or electricity into heat
+45558,heating_pad hot_pad,heater consisting of electrical heating elements contained in a flexible pad
+45559,heating_system heating_plant heating heat,utility to warm a building; "the heating system wasn't working"; "they have radiant heating"
+45560,heatstroke heat_hyperpyrexia,collapse caused by exposure to excessive heat
+45561,heaume,a large medieval helmet supported on the shoulders
+45562,heave,(geology) a horizontal dislocation
+45563,heave heaving,an upward movement (especially a rhythmical rising and falling); "the heaving of waves on a rough sea"
+45564,heave heaving,the act of lifting something with great effort
+45565,heave heaving,throwing something heavy (with great effort); "he gave it a mighty heave"; "he was not good at heaving passes"
+45566,heave retch,an involuntary spasm of ineffectual vomiting; "a bad case of the heaves"
+45567,heaver,a workman who heaves freight or bulk goods (especially at a dockyard)
+45568,heaver,a bar used as a lever (as in twisting rope)
+45569,heaves broken_wind,a chronic emphysema of the horse that causes difficult expiration and heaving of the flanks
+45570,heavier-than-air_craft,a non-buoyant aircraft that requires a source of power to hold it aloft and to propel it
+45571,heaviness,persisting sadness; "nothing lifted the heaviness of her heart after her loss"
+45572,heaviness weightiness,the property of being comparatively great in weight; "the heaviness of lead"
+45573,heavy,an actor who plays villainous roles
+45574,heavy,a serious (or tragic) role in a play
+45575,heavy_cream,contains more than 36% butterfat
+45576,heavy_hitter,an influential person who works hard to promote the causes they are interested in
+45577,heavy_lifting,difficult work; "the boss hoped the plan would succeed but he wasn't willing to do the heavy lifting"
+45578,heavy_metal,a metal of relatively high density (specific gravity greater than about 5) or of high relative atomic weight (especially one that is poisonous like mercury or lead)
+45579,heavy_metal heavy_metal_music,loud and harsh sounding rock music with a strong beat; lyrics usually involve violent or fantastic imagery
+45580,heavy_spar barite barytes barium_sulphate,a white or colorless mineral (BaSO4); the main source of barium
+45581,heavy_water deuterium_oxide,water containing a substantial proportion of deuterium atoms, used in nuclear reactors
+45582,heavyheartedness,a feeling of dispirited melancholy
+45583,heavyweight,an amateur boxer who weighs no more than 201 pounds
+45584,heavyweight,a wrestler who weighs more than 214 pounds
+45585,heavyweight,a professional boxer who weighs more than 190 pounds
+45586,hebephrenia hebephrenic_schizophrenia disorganized_schizophrenia disorganized_type_schizophrenia,a form of schizophrenia characterized by severe disintegration of personality including erratic speech and childish mannerisms and bizarre behavior; usually becomes evident during puberty; the most common diagnostic category in mental institutions
+45587,hebetude,mental lethargy or dullness
+45588,hecatomb,a great sacrifice; an ancient Greek or Roman sacrifice of 100 oxen
+45589,heckelphone basset_oboe,an oboe pitched an octave below the ordinary oboe
+45590,heckler badgerer,someone who tries to embarrass you with gibes and questions and objections
+45591,heckling barracking,shouting to interrupt a speech with which you disagree
+45592,hectare,(abbreviated `ha') a unit of surface area equal to 100 ares (or 10,000 square meters)
+45593,hectogram hg,100 grams
+45594,hectograph heliotype,duplicator consisting of a gelatin plate from which ink can be taken to make a copy
+45595,hectoliter hectolitre hl,a metric unit of volume or capacity equal to 100 liters
+45596,hectometer hectometre hm,a metric unit of length equal to 100 meters
+45597,hedge hedgerow,a fence formed by a row of closely planted shrubs or bushes
+45598,hedge hedging,any technique designed to reduce or eliminate financial risk; for example, taking two positions that will offset each other if prices change
+45599,hedge hedging,an intentionally noncommittal or ambiguous statement; "when you say `maybe' you are just hedging"
+45600,hedge_bindweed wild_morning-glory Calystegia_sepium Convolvulus_sepium,common Eurasian and American wild climber with pink flowers; sometimes placed in genus Convolvulus
+45601,hedge_fund hedgefund,a flexible investment company for a small number of large investors (usually the minimum investment is $1 million); can use high-risk techniques (not allowed for mutual funds) such as short-selling and heavy leveraging
+45602,hedge_maple field_maple Acer_campestre,shrubby Eurasian maple often used as a hedge
+45603,hedge_mustard Sisymbrium_officinale,stiffly branching Old World annual with pale yellow flowers; widely naturalized in North America; formerly used medicinally
+45604,hedge_nettle Stachys_palustris,perennial herb with an odorless rhizome widespread in moist places in northern hemisphere
+45605,hedge_nettle dead_nettle Stachys_sylvatica,foul-smelling perennial Eurasiatic herb with a green creeping rhizome
+45606,hedge_sparrow sparrow dunnock Prunella_modularis,small brownish European songbird
+45607,hedge_thorn natal_plum Carissa_bispinosa,South African shrub having forked spines and plumlike fruit; frequently used as hedging
+45608,hedge_trimmer,a garden tool for trimming hedges
+45609,hedge_violet wood_violet Viola_sylvatica Viola_reichenbachiana,common European violet that grows in woods and hedgerows
+45610,hedgehog Erinaceus_europaeus Erinaceus_europeaeus,small nocturnal Old World mammal covered with both hair and protective spines
+45611,hedgehog_cactus,cactus of the genus Echinocactus having stout sharp spines
+45612,hedgehog_cereus,cactus of the genus Echinocereus
+45613,hedger,someone who counterbalances one transaction (as a bet) against another in order to protect against loss
+45614,hedger,a gardener who takes care of and trims hedges
+45615,hedger equivocator tergiversator,a respondent who avoids giving a clear direct answer
+45616,hedonism,the pursuit of pleasure as a matter of ethical principle
+45617,hedonism,an ethical system that evaluates the pursuit of pleasure as the highest good
+45618,hedonist pagan pleasure_seeker,someone motivated by desires for sensual pleasures
+45619,hee-haw horselaugh ha-ha haw-haw,a loud laugh that sounds like a horse neighing
+45620,heedlessness mindlessness rashness,the trait of acting rashly and without prudence
+45621,heel,one of the crusty ends of a loaf of bread
+45622,heel,the back part of the human foot
+45623,heel,the lower end of a ship's mast
+45624,heel,(golf) the part of the clubhead where it joins the shaft
+45625,heel,the bottom of a shoe or boot; the back part of a shoe or boot that touches the ground and provides elevation
+45626,heelbone calcaneus os_tarsi_fibulare,the largest tarsal bone; forms the human heel
+45627,heft heftiness massiveness ponderousness ponderosity,the property of being large in mass
+45628,hegari,Sudanese sorghums having white seeds; one variety grown in southwestern United States
+45629,hegemon,a leading or paramount power
+45630,hegemony,the dominance or leadership of one social group or nation over others; "the hegemony of a single member state is not incompatible with a genuine confederation"; "to say they have priority is not to say they have complete hegemony"; "the consolidation of the United States' hegemony over a new international economic system"
+45631,heifer,young cow
+45632,height tallness,the vertical dimension of extension; distance from the base of something to the top
+45633,heir inheritor heritor,a person who is entitled by law or by the terms of a will to inherit the estate of another
+45634,heir-at-law,the person legally entitled to inherit the property of someone who dies intestate
+45635,heir_apparent,an heir whose right to an inheritance cannot be defeated if that person outlives the ancestor
+45636,heir_presumptive,a person who expects to inherit but whose right can be defeated by the birth of a nearer relative
+45637,heiress inheritress inheritrix,a female heir
+45638,heirloom,(law) any property that is considered by law or custom as inseparable from an inheritance is inherited with that inheritance
+45639,heirloom,something that has been in a family for generations
+45640,heist rip-off,the act of stealing
+45641,helianthemum sunrose sun_rose,any plant of the genus Helianthemum; vigorous plants of stony alpine meadows and dry scrub regions
+45642,helicon bombardon,a tuba that coils over the shoulder of the musician
+45643,helicopter chopper whirlybird eggbeater,an aircraft without wings that obtains its lift from the rotation of overhead blades
+45644,heliocentric_parallax annual_parallax,the parallax of a celestial body using two points in the earth's orbit around the sun as the baseline
+45645,heliogram,a message transmitted by means of the sun's rays
+45646,heliograph,an apparatus for sending telegraphic messages by using a mirror to turn the sun's rays off and on
+45647,heliolatry sun-worship,the worship of the sun
+45648,heliometer,an instrument used to measure the angular separation of two stars that are too far apart to be included in the field of view of an ordinary telescope
+45649,heliopause,the boundary marking the edge of the sun's influence; the boundary (roughly 100 AU from the sun) between the interplanetary medium and the interstellar medium; where the solar wind from the sun and the radiation from other stars meet
+45650,heliophila,any of various South African herbs and subshrubs cultivated for long showy racemes of bright blue flowers with white eyes
+45651,heliopsis oxeye,any North American shrubby perennial herb of the genus Heliopsis having large yellow daisylike flowers
+45652,heliosphere,the region inside the heliopause containing the sun and solar system
+45653,heliotherapy insolation,therapeutic exposure to sunlight
+45654,heliothis_moth Heliothis_zia,medium-sized moth whose larvae are corn earworms
+45655,heliotropism,an orienting response to the sun
+45656,heliozoan,protozoa with spherical bodies and stiff radiating pseudopods
+45657,heliport,an airport for helicopters
+45658,helium He atomic_number_2,a very light colorless element that is one of the six inert gasses; the most difficult gas to liquefy; occurs in economically extractable amounts in certain natural gases (as those found in Texas and Kansas)
+45659,helium_group,the series of inert gases
+45660,helix spiral,a curve that lies on the surface of a cylinder or cone and cuts the element at a constant angle
+45661,helix_angle,the constant angle at which a helix cuts the elements of a cylinder or cone
+45662,hell blaze,a cause of difficulty and suffering; "war is hell"; "go to blazes"
+45663,hell blaze,noisy and unrestrained mischief; "raising blazes"
+45664,hell hell_on_earth hellhole snake_pit the_pits inferno,any place of pain and turmoil; "the hell of battle"; "the inferno of the engine room"; "when you're alone Christmas is the pits"
+45665,hell-kite hell-rooster gamecock,someone who is a very fierce fighter
+45666,hell_to_pay,dire consequences; "when the pig ran away there was hell to pay"
+45667,hellbender mud_puppy Cryptobranchus_alleganiensis,large salamander of North American rivers and streams
+45668,hellebore,any plant of the Eurasian genus Helleborus
+45669,hellebore false_hellebore,perennial herbs of the lily family having thick toxic rhizomes
+45670,helleborine,any of various orchids of the genus Epipactis
+45671,helleborine,any of several orchids of the genus Cephalanthera
+45672,hellfire red_region,a place of eternal fire envisaged as punishment for the damned
+45673,hellgrammiate dobson,large brown aquatic larva of the dobsonfly; used as fishing bait
+45674,hellhound,a very evil man
+45675,hellion heller devil,a rowdy or mischievous person (usually a young man); "he chased the young hellions out of his yard"
+45676,hello hullo hi howdy how-do-you-do,an expression of greeting; "every morning they exchanged polite hellos"
+45677,helm,steering mechanism for a vessel; a mechanical device by which a vessel is steered
+45678,helm,(figurative) a position of leadership; "the President is at the helm of the Ship of State"
+45679,helmet,armor plate that protects the head
+45680,helmet,a protective headgear made of hard material to resist blows
+45681,helmet_orchid greenhood,any of numerous orchids of the genus Pterostylis having leaves in a basal rosette and green flowers often striped purple or brown or red with the dorsal sepal incurved to form a hood
+45682,helmetflower helmet_orchid,any of several orchids of the genus Coryanthes having racemes of a few musky-scented waxy flowers with a helmet-shaped lip process
+45683,helminth parasitic_worm,worm that is parasitic on the intestines of vertebrates especially roundworms and tapeworms and flukes
+45684,helminthiasis,infestation of the body with parasitic worms
+45685,helmsman steersman steerer,the person who steers a ship
+45686,help_desk helpdesk,a service that provides information and assistance to the users of a computer network
+45687,helper_T_cell helper_cell CD4_T_cell CD4_cell,T cell with CD4 receptor that recognizes antigens on the surface of a virus-infected cell and secretes lymphokines that stimulate B cells and killer T cells; helper T cells are infected and killed by the AIDS virus
+45688,helpfulness,the property of providing useful assistance
+45689,helping portion serving,an individual quantity of food or drink taken as part of a meal; "the helpings were all small"; "his portion was larger than hers"; "there's enough for two servings each"
+45690,helplessness,the state of needing help from something
+45691,helplessness,a feeling of being unable to manage
+45692,helplessness weakness impuissance,powerlessness revealed by an inability to act; "in spite of their weakness the group remains active"
+45693,helpmate helpmeet,a helpful partner
+45694,helvella,any fungus of the genus Helvella having the ascocarps stalked or pleated or often in folds
+45695,hem,the edge of a piece of cloth; especially the finished edge that has been doubled under and stitched down; "the hem of her dress was stained"; "let down the hem"; "he stitched weights into the curtain's hem"; "it seeped along the hem of his jacket"
+45696,hem ahem,the utterance of a sound similar to clearing the throat; intended to get attention, express hesitancy, fill a pause, hide embarrassment, warn a friend, etc.
+45697,hemagglutination haemagglutination,agglutination of red blood cells
+45698,hemal_arch haemal_arch,a structure arising ventrally from a vertebral centrum and enclosing the caudal blood vessels
+45699,hemangioma haemangioma,benign angioma consisting of a mass of blood vessels; some appear as birthmarks
+45700,hematemesis haematemesis,vomiting blood
+45701,hematinic haematinic,a medicine that increases the hemoglobin content of the blood; used to treat iron-deficiency anemia
+45702,hematite haematite,the principal form of iron ore; consists of ferric oxide in crystalline form; occurs in a red earthy form
+45703,hematocele haematocele hematocoele haematocoele,swelling caused by blood collecting in a body cavity (especially a swelling of the membrane covering the testis)
+45704,hematochezia haematochezia,passage of stools containing blood (as from diverticulosis or colon cancer or peptic ulcer)
+45705,hematochrome,a reddish coloring material found in some algae
+45706,hematocolpometra haematocolpometra,accumulation of blood in the vagina and uterus
+45707,hematocolpos haematocolpos,accumulation of menstrual blood in the vagina (usually due to an imperforate hymen)
+45708,hematocrit haematocrit,a measuring instrument to determine (usually by centrifugation) the relative amounts of corpuscles and plasma in the blood
+45709,hematocrit haematocrit packed_cell_volume,the ratio of the volume occupied by packed red blood cells to the volume of the whole blood as measured by a hematocrit
+45710,hematocytopenia haematocytopenia,an abnormally low number of red blood cells in the blood
+45711,hematocyturia haematocyturia,the presence of red blood cells in the urine
+45712,hematologist haematologist,a doctor who specializes in diseases of the blood and blood-forming organs
+45713,hematology haematology,the branch of medicine that deals with diseases of the blood and blood-forming organs
+45714,hematoma haematoma,a localized swelling filled with blood
+45715,hematopoeitic_stem_cell,blood forming stem cells in the bone marrow; T cells and B cells arise from these stem cells
+45716,hematopoiesis haematopoiesis hemopoiesis haemopoiesis hemogenesis haemogenesis hematogenesis haematogenesis sanguification,the formation of blood cells in the living body (especially in the bone marrow)
+45717,hematuria haematuria,the presence of blood in the urine; often a symptom of urinary tract disease
+45718,heme haem hematin haemitin protoheme,a complex red organic pigment containing iron and other atoms to which oxygen binds
+45719,hemeralopia day_blindness,inability to see clearly in bright light
+45720,hemiacetal,an organic compound usually formed as an intermediate product in the preparation of acetals from aldehydes or ketones
+45721,hemianopia hemianopsia,blindness in one half of the visual field of one or both eyes
+45722,hemianopic_scotoma,a scotoma involving half of the visual field
+45723,hemiepiphyte semiepiphyte,a plant that is an epiphyte for part of its life
+45724,hemimetamorphosis hemimetabolism hemimetaboly,incomplete or partial metamorphosis in insects
+45725,hemimorphite calamine,a white mineral; a common ore of zinc
+45726,hemin protohemin,a reddish-brown chloride of heme; produced from hemoglobin in laboratory tests for the presence of blood
+45727,hemiparasite semiparasite,a parasitic plant that contains some chlorophyll and therefore is capable of photosynthesis
+45728,hemiplegia unilateral_paralysis,paralysis of one side of the body
+45729,hemiplegic,a person who has hemiplegia (is paralyzed on one side of the body)
+45730,hemipterous_insect bug hemipteran hemipteron,insects with sucking mouthparts and forewings thickened and leathery at the base; usually show incomplete metamorphosis
+45731,hemisphere,half of a sphere
+45732,hemisphere,half of the terrestrial globe
+45733,hemisphere cerebral_hemisphere,either half of the cerebrum
+45734,hemizygos_vein hemizygous_vein vena_hemizygos,a continuation of the left ascending lumbar vein; crosses the midline at the 8th vertebra and empties into the azygos vein
+45735,hemline,the line formed by the lower edge of a skirt or coat
+45736,hemlock,poisonous drug derived from an Eurasian plant of the genus Conium; "Socrates refused to flee and died by drinking hemlock"
+45737,hemlock,soft coarse splintery wood of a hemlock tree especially the western hemlock
+45738,hemlock hemlock_tree,an evergreen tree
+45739,hemlock poison_hemlock poison_parsley California_fern Nebraska_fern winter_fern Conium_maculatum,large branching biennial herb native to Eurasia and Africa and adventive in North America having large fernlike leaves and white flowers; usually found in damp habitats; all parts extremely poisonous
+45740,hemming-stitch,a stitch used in sewing hems on skirts and dresses
+45741,hemochromatosis iron-storage_disease iron_overload bronzed_diabetes,pathology in which iron accumulates in the tissues; characterized by bronzed skin and enlarged liver and diabetes mellitus and abnormalities of the pancreas and the joints
+45742,hemodialysis haemodialysis,dialysis of the blood to remove toxic substances or metabolic wastes from the bloodstream; used in the case of kidney failure
+45743,hemodynamics,the branch of physiology that studies the circulation of the blood and the forces involved
+45744,hemoglobin haemoglobin Hb,a hemoprotein composed of globin and heme that gives red blood cells their characteristic color; function primarily to transport oxygen from the lungs to the body tissues; "fish have simpler hemoglobin than mammals"
+45745,hemoglobinemia haemoglobinemia,presence of excessive hemoglobin in the blood plasma
+45746,hemoglobinopathy haemoglobinopathy,a blood disease characterized by the presence of abnormal hemoglobins in the blood
+45747,hemoglobinuria haemoglobinuria,presence of hemoglobin in the urine
+45748,hemolysin haemolysin erythrolysin erythrocytolysin,any substance that can cause lysis (destruction) of erythrocytes (red blood cells) and the release of their hemoglobin
+45749,hemolysis haemolysis hematolysis haematolysis,lysis of erythrocytes with the release of hemoglobin
+45750,hemolytic_anemia haemolytic_anaemia,anemia resulting from destruction of erythrocytes
+45751,hemophilia haemophilia bleeder's_disease,congenital tendency to uncontrolled bleeding; usually affects males and is transmitted from mother to son
+45752,hemophilia_A haemophilia_A classical_hemophilia classical_haemophilia,hemophilia caused by a congenital deficiency of factor VIII; occurs almost exclusively in men
+45753,hemophilia_B haemophilia_B Christmas_disease,a clotting disorder similar to hemophilia A but caused by a congenital deficiency of factor IX
+45754,hemophiliac haemophiliac bleeder hemophile haemophile,someone who has hemophilia and is subject to uncontrollable bleeding
+45755,hemoprotein haemoprotein,a conjugated protein linked to a compound of iron and porphyrin
+45756,hemoptysis haemoptysis,coughing up blood from the respiratory tract; usually indicates a severe infection of the bronchi or lungs
+45757,hemorrhagic_cyst blood_cyst hematocyst,a cyst containing blood
+45758,hemorrhagic_fever haemorrhagic_fever viral_hemorrhagic_fever viral_haemorrhagic_fever VHF,a group of illnesses caused by a viral infection (usually restricted to a specific geographic area); fever and gastrointestinal symptoms are followed by capillary hemorrhage
+45759,hemorrhagic_septicemia pasteurellosis,an acute infectious disease characterized by pneumonia and blood infection
+45760,hemorrhagic_stroke haemorrhagic_stroke,stroke caused by the rupture of a blood vessel in the brain
+45761,hemorrhoid haemorrhoid piles,venous swelling external or internal to the anal sphincter
+45762,hemorrhoidal_vein rectal_vein vena_rectalis,any of several veins draining the walls of the anal canal and rectum
+45763,hemorrhoidectomy haemorrhoidectomy,surgical procedure for tying hemorrhoids and excising them
+45764,hemosiderin haemosiderin,a granular brown substance composed of ferric oxide; left from the breakdown of hemoglobin; can be a sign of disturbed iron metabolism
+45765,hemosiderosis haemosiderosis,abnormal deposit of hemosiderin; often a symptom of thalassemia or hemochromatosis
+45766,hemostasis haemostasis hemostasia haemostasia,surgical procedure of stopping the flow of blood (as with a hemostat)
+45767,hemostat haemostat,a surgical instrument that stops bleeding by clamping the blood vessel
+45768,hemothorax haemothorax,accumulation of blood in the pleural cavity (the space between the lungs and the walls of the chest)
+45769,hemp,a plant fiber
+45770,hemp_agrimony Eupatorium_cannabinum,coarse European herb with palmately divided leaves and clusters of small reddish-purple flower heads
+45771,hemp_nettle dead_nettle Galeopsis_tetrahit,coarse bristly Eurasian plant with white or reddish flowers and foliage resembling that of a nettle; common as a weed in United States
+45772,hemstitch,embroidery similar to drawnwork
+45773,hemstitch hemstitching,a stitch in which parallel threads are drawn and exposed threads are caught together in groups
+45774,hen,flesh of an older chicken suitable for stewing
+45775,hen,adult female bird
+45776,hen,female of certain aquatic animals e.g. octopus or lobster
+45777,hen biddy,adult female chicken
+45778,hen-of-the-woods hen_of_the_woods Polyporus_frondosus Grifola_frondosa,large greyish-brown edible fungus forming a mass of overlapping caps that somewhat resembles a hen at the base of trees
+45779,hen_party,a party for women only
+45780,henbane black_henbane stinking_nightshade Hyoscyamus_niger,poisonous fetid Old World herb having sticky hairy leaves and yellow-brown flowers; yields hyoscyamine and scopolamine
+45781,henbit Lamium_amplexicaule,Eurasian plant having toothed leaves and small two-lipped white or purplish-red flowers
+45782,hendiadys,use of two conjoined nouns instead of a noun and modifier
+45783,henna,a reddish brown dye used especially on hair
+45784,henroost,a roost for hens at night
+45785,henry H,a unit of inductance in which an induced electromotive force of one volt is produced when the current is varied at the rate of one ampere per second
+45786,hepadnavirus,a group of animal DNA viruses including viruses of ducks and woodchucks and squirrels and others as well as the virus causing hepatitis B in humans
+45787,heparin Lipo-Hepin Liquaemin,a polysaccharide produced in basophils (especially in the lung and liver) and that inhibits the activity of thrombin in coagulation of the blood; it (trade names Lipo-Hepin and Liquaemin) is used as an anticoagulant in the treatment of thrombosis and in heart surgery
+45788,hepatic_artery arteria_hepatica,arteries that supply the liver
+45789,hepatic_coma,coma that can occur in severe cases of liver disease
+45790,hepatic_duct,the duct that drains bile from the liver
+45791,hepatic_lobe,any of the five lobes forming the liver
+45792,hepatic_tanager Piranga_flava_hepatica,common tanager of southwestern United States and Mexico
+45793,hepatic_vein vena_hepatica,a vein that drains the liver; empties into the vena cava
+45794,hepatica Marchantia_polymorpha,a common liverwort
+45795,hepatica liverleaf,any of several plants of the genus Hepatica having three-lobed leaves and white or pinkish flowers in early spring; of moist and mossy subalpine woodland areas of north temperate regions
+45796,hepatitis,inflammation of the liver caused by a virus or a toxin
+45797,hepatitis_A infectious_hepatitis,an acute but benign form of viral hepatitis caused by an RNA virus that does not persist in the blood serum and is usually transmitted by ingesting food or drink that is contaminated with fecal matter
+45798,hepatitis_A_virus,the virus causing hepatitis A
+45799,hepatitis_B serum_hepatitis,an acute (sometimes fatal) form of viral hepatitis caused by a DNA virus that tends to persist in the blood serum and is transmitted by sexual contact or by transfusion or by ingestion of contaminated blood or other bodily fluids
+45800,hepatitis_C,a viral hepatitis clinically indistinguishable from hepatitis B but caused by a single-stranded RNA virus; usually transmitted by parenteral means (as injection of an illicit drug or blood transfusion or exposure to blood or blood products)
+45801,hepatitis_delta delta_hepatitis,a severe form of hepatitis
+45802,hepatojugular_reflux,a venous reflux occurring in congestive heart failure
+45803,hepatolenticular_degeneration Wilson's_disease,a rare inherited disorder of copper metabolism; copper accumulates in the liver and then in the red blood cells and brain
+45804,hepatoma malignant_hepatoma hepatocarcinoma hepatocellular_carcinoma,carcinoma of the liver
+45805,hepatomegaly megalohepatia,abnormal enlargement of the liver
+45806,hepatotoxin,any toxin that affects the liver
+45807,heptagon,a seven-sided polygon
+45808,heptane,a colorless volatile highly flammable liquid obtained from petroleum and used as an anesthetic or a solvent or in determining octane ratings
+45809,herald trumpeter,(formal) a person who announces important news; "the chieftain had a herald who announced his arrival with a trumpet"
+45810,heraldry,the study and classification of armorial bearings and the tracing of genealogies
+45811,heraldry,emblem indicating the right of a person to bear arms
+45812,herb,aromatic potherb used in cookery for its savory qualities
+45813,herb herbaceous_plant,a plant lacking a permanent woody stem; many are flowering garden plants or potherbs; some having medicinal properties; some are pests
+45814,herb_Paris Paris_quadrifolia,European herb with yellow-green flowers resembling and closely related to the trilliums; reputed to be poisonous
+45815,herb_bennet cloveroot clover-root wood_avens Geum_urbanum,hairy Eurasian plant with small yellow flowers and an astringent root formerly used medicinally
+45816,herb_garden,a garden for growing herbs
+45817,herb_mercury herbs_mercury boys-and-girls Mercurialis_annua,Eurafrican annual naturalized in America as a weed; formerly dried for use as a purgative, diuretic or antisyphilitic
+45818,herb_robert herbs_robert herb_roberts Geranium_robertianum,a sticky low herb with small reddish-purple flowers; widespread in the northern hemisphere
+45819,herb_tea herbal_tea herbal,tea-like drink made of leaves of various herbs
+45820,herba_impia Filago_germanica,(literally an undutiful herb) a variety of cotton rose
+45821,herbage pasturage,succulent herbaceous vegetation of pasture land
+45822,herbal_medicine,a medicine made from plants and used to prevent or treat disease or promote health
+45823,herbal_medicine,the use of medicinal herbs to prevent or treat disease or promote health
+45824,herbalist herb_doctor,a therapist who heals by the use of herbs
+45825,herbarium,a collection of dried plants that are mounted and systematically classified for study
+45826,herbicide weedkiller weed_killer,a chemical agent that destroys plants or inhibits their growth
+45827,herbivore,any animal that feeds chiefly on grass and other plants; "horses are herbivores"; "the sauropod dinosaurs were apparently herbivores"
+45828,herd,a group of wild mammals of one species that remain together: antelope or elephants or seals or whales or zebra
+45829,herd,a group of cattle or sheep or other domestic mammals all of the same kind that are herded by humans
+45830,herder herdsman drover,someone who drives a herd
+45831,here,the present location; this place; "where do we go from here?"
+45832,here_and_now present_moment moment,at this time; "the disappointments of the here and now"; "she is studying at the moment"
+45833,hereditament,any property (real or personal or mixed) that can be inherited
+45834,hereditarianism,the philosophical doctrine that heredity is more important than environment in determining intellectual growth
+45835,hereditary_cerebellar_ataxia,nervous disorder of late childhood and early adulthood; characterized by ataxic gait and hesitating or explosive speech and nystagmus
+45836,heredity,the biological process whereby genetic factors are transmitted from one generation to the next
+45837,heredity genetic_endowment,the total of inherited attributes
+45838,hereness,the state of being here in this place
+45839,heresy unorthodoxy,a belief that rejects the orthodox tenets of a religion
+45840,heretic,a person who holds unorthodox opinions in any field (not merely religion)
+45841,heretic misbeliever religious_outcast,a person who holds religious beliefs in conflict with the dogma of the Roman Catholic Church
+45842,heritage,practices that are handed down from the past by tradition; "a heritage of freedom"
+45843,herm,a statue consisting of a squared stone pillar with a carved head (usually a bearded Hermes) on top; used in ancient Greece as a boundary marker or signpost
+45844,hermaphrodite intersex gynandromorph androgyne epicene epicene_person,one having both male and female sexual characteristics and organs; at birth an unambiguous assignment of male or female cannot be made
+45845,hermaphroditism hermaphrodism,congenital condition in which external genitalia and internal sex organs have both male and female characteristics
+45846,hermeneutics,the branch of theology that deals with principles of exegesis
+45847,hermit recluse solitary solitudinarian troglodyte,one who lives in solitude
+45848,hermit_crab,small soft-bodied marine crustaceans living in cast-off shells of gastropods
+45849,hermit_thrush Hylocichla_guttata,North American thrush noted for its complex and appealing song
+45850,hermitage,the abode of a hermit
+45851,hernia herniation,rupture in smooth muscle tissue through which a bodily structure protrudes
+45852,herniated_disc ruptured_intervertebral_disc slipped_disc,a painful rupture of the fibrocartilage of the disc between spinal vertebrae; occurs most often in the lumbar region
+45853,hero,a man distinguished by exceptional courage and nobility and strength; "RAF pilots were the heroes of the Battle of Britain"
+45854,hero,(classical mythology) a being of great strength and courage celebrated for bold exploits; often the offspring of a mortal and a god
+45855,hero,the principal character in a play or movie or novel or poem
+45856,hero_worship,admiration for great men (or their memory)
+45857,hero_worshiper hero_worshipper,someone who worships heroes
+45858,heroic_couplet,a couplet consisting of two rhymed lines of iambic pentameter and written in an elevated style
+45859,heroic_poetry epic_poetry,poetry celebrating the deeds of some hero
+45860,heroic_stanza,a quatrain consisting of two heroic couplets written in an elevated style; the rhyme scheme is abab
+45861,heroic_verse heroic_meter heroic,a verse form suited to the treatment of heroic or elevated themes; dactylic hexameter or iambic pentameter
+45862,heroics,ostentatious or vainglorious or extravagant or melodramatic conduct; "heroics are for those epic films they make in Hollywood"
+45863,heroin diacetylmorphine,a narcotic that is considered a hard drug; a highly addictive morphine derivative; intravenous injection provides the fastest and most intense rush
+45864,heroin_addict,someone addicted to heroin
+45865,heroin_addiction,an addiction to heroin
+45866,heroine,a woman possessing heroic qualities or a woman who has performed heroic deeds
+45867,heroine,the main good female character in a work of fiction
+45868,heroism gallantry valor valour valorousness valiance valiancy,the qualities of a hero or heroine; exceptional or heroic courage when facing danger (especially in battle); "he showed great heroism in battle"; "he received a medal for valor"
+45869,heron,grey or white wading bird with long neck and long legs and (usually) long bill
+45870,heronry,a breeding ground for herons; a heron rookery
+45871,herpangia,a viral infection (usually in children) marked by sore throat and fever and papules in the mouth and throat and headache and abdominal pain; usually subsides in a short time
+45872,herpes,viral diseases causing eruptions of the skin or mucous membrane
+45873,herpes herpes_virus,any of the animal viruses that cause painful blisters on the skin
+45874,herpes_simplex,an infection caused by the herpes simplex virus; affects the skin and nervous system; produces small temporary (but sometimes painful) blisters on the skin and mucous membranes
+45875,herpes_simplex herpes_simplex_virus,a herpes virus that affects the skin and nervous system
+45876,herpes_simplex_1 HS1 HSV-1 HSV-I,a herpes virus that causes oral herpes
+45877,herpes_simplex_2 HS2 HSV-2 HSV-II,a herpes virus that can cause genital herpes
+45878,herpes_simplex_encephalitis herpes_encephalitis acute_inclusion_body_encephalitis,common form of acute encephalitis caused by herpes simplex 1; usually affects the temporal and frontal lobes
+45879,herpes_varicella_zoster herpes_varicella_zoster_virus,a herpes virus that causes chickenpox and shingles
+45880,herpes_zoster herpes_zoster_virus,a herpes virus that causes shingles
+45881,herpes_zoster zoster shingles,eruptions along a nerve path often accompanied by severe neuralgia
+45882,herpetologist,a zoologist who studies reptiles and amphibians
+45883,herpetology,the branch of zoology concerned with reptiles and amphibians
+45884,herrerasaur herrerasaurus,a kind of theropod dinosaur found in Argentina
+45885,herring,valuable flesh of fatty fish from shallow waters of northern Atlantic or Pacific; usually salted or pickled
+45886,herring Clupea_harangus,commercially important food fish of northern waters of both Atlantic and Pacific
+45887,herring_gull Larus_argentatus,large gull of the northern hemisphere
+45888,herring_salad,based on pickled herring
+45889,herringbone,a twilled fabric with a herringbone pattern
+45890,herringbone herringbone_pattern,a pattern of columns of short parallel lines with all the lines in one column sloping one way and lines in adjacent columns sloping the other way; it is used in weaving, masonry, parquetry, embroidery
+45891,hertz Hz cycle_per_second cycles/second cps cycle,the unit of frequency; one hertz has a periodic interval of one second (named for Heinrich Rudolph Hertz)
+45892,hesitance hesitancy,a feeling of diffidence and indecision about doing something
+45893,hesitation vacillation wavering,indecision in speech or action
+45894,hesitation waver falter faltering,the act of pausing uncertainly; "there was a hesitation in his speech"
+45895,heterocercal_fin,a tail fin with unequal lobes in which the vertebral column turns upward into the larger lobe as in sharks
+45896,heterocyclic_compound heterocyclic heterocycle,a compound containing a heterocyclic ring
+45897,heterocyclic_ring heterocycle,a ring of atoms of more than one kind; especially a ring of carbon atoms containing at least one atom that is not carbon
+45898,heterodactyl_foot,a bird's foot having the first and second toes of each foot directed backward and the third and fourth forward
+45899,heterodyne_receiver superheterodyne_receiver superhet,a radio receiver that combines a locally generated frequency with the carrier frequency to produce a supersonic signal that is demodulated and amplified
+45900,heterogeneity heterogeneousness,the quality of being diverse and not comparable in kind
+45901,heterograft xenograft,tissue from an animal of one species used as a temporary graft (as in cases of severe burns) on an individual of another species
+45902,heterology,(biology) the lack of correspondence of apparently similar body parts
+45903,heterometabolism heterometaboly,development of insects with incomplete metamorphosis in which no pupal stage precedes maturity
+45904,heteronym,two words are heteronyms if they are spelled the same way but differ in pronunciation; "the word `bow' is an example of a heteronym"
+45905,heterophil_antibody heterophile_antibody Forssman_antibody,an antibody found in the blood of someone suffering from infectious mononucleosis
+45906,heterophil_test,a blood test to detect heterophil antibodies that agglutinate sheep red blood cells; positive result indicates infectious mononucleosis
+45907,heteroploid,(genetics) an organism or cell having a chromosome number that is not an even multiple of the haploid chromosome number for that species
+45908,heteroploidy,the condition of being heteroploid
+45909,heteropterous_insect,true bugs: insects whose forewings are membranous but have leathery tips
+45910,heterosexism,discrimination in favor of heterosexual and against homosexual people
+45911,heterosexual heterosexual_person straight_person straight,a person having a sexual orientation to persons of the opposite sex
+45912,heterosexuality heterosexualism straightness,a sexual attraction to (or sexual relations with) persons of the opposite sex
+45913,heterosis hybrid_vigor,(genetics) the tendency of a crossbred organism to have qualities superior to those of either parent
+45914,heterospory,the development of both microspores and megaspores
+45915,heterostracan,extinct jawless fish with the anterior part of the body covered with bony plates; of the Silurian and Devonian
+45916,heterotroph,an organism that depends on complex organic substances for nutrition
+45917,heterozygosity,the state of being heterozygous; having two different alleles of the same gene
+45918,heterozygote,(genetics) an organism having two different alleles of a particular gene and so giving rise to varying offspring
+45919,heth,the 8th letter of the Hebrew alphabet
+45920,heulandite,a group of minerals of the zeolite family consisting of a hydrous aluminum silicate of sodium and calcium
+45921,heuristic heuristic_rule heuristic_program,a commonsense rule (or set of rules) intended to increase the probability of solving some problem
+45922,hewer,a person who hews
+45923,hex jinx curse whammy,an evil spell; "a witch put a curse on his whole family"; "he put the whammy on me"
+45924,hex_nut,a nut with a hexagonal shape
+45925,hexachlorophene,antibacterial substance that is a water-soluble powder used in antiseptic soaps and toothpaste
+45926,hexadecimal_digit,a digit from 0 to 15 in hexadecimal notation
+45927,hexadecimal_notation sexadecimal_notation,any notation that uses 16 different characters
+45928,hexadecimal_number_system sexadecimal_number_system hexadecimal_system,a positional system of numeration that uses hexadecimal digits and a radix of sixteen
+45929,hexagon,a six-sided polygon
+45930,hexagram,a regular polygon formed by extending each of the sides of a regular hexagon to form two equilateral triangles
+45931,hexahedron,any polyhedron having six plane faces
+45932,hexameter,a verse line having six metrical feet
+45933,hexane,a colorless flammable liquid alkane derived from petroleum and used as a solvent
+45934,hexanedioic_acid adipic_acid,a carboxylic acid used in the manufacture of nylon
+45935,hexapod,an animal having six feet
+45936,hexestrol,estrogen compound used to treat menstrual irregularities and menopausal symptoms and to prevent pregnancy
+45937,hexose,a monosaccharide that contains six carbon atoms per molecule
+45938,hi-fi high_fidelity_sound_system,equipment for the reproduction of sound with high fidelity
+45939,hiatus,a missing piece (as a gap in a manuscript)
+45940,hiatus_hernia hiatal_hernia diaphragmatic_hernia,hernia resulting from the protrusion of part of the stomach through the diaphragm
+45941,hiba_arborvitae Thujopsis_dolobrata,slow-growing medium-large Japanese evergreen used as an ornamental
+45942,hibachi,a portable brazier that burns charcoal and has a grill for cooking
+45943,hibernation,the torpid or resting state in which some animals pass the winter
+45944,hibernation,cessation from or slowing of activity during the winter; especially slowing of metabolism in some animals
+45945,hibernation,the act of retiring into inactivity; "he emerged from his hibernation to make his first appearance in several years"
+45946,hibiscus,any plant of the genus Hibiscus
+45947,hiccup hiccough singultus,(usually plural) the state of having reflex spasms of the diaphragm accompanied by a rapid closure of the glottis producing an audible sound; sometimes a symptom of indigestion; "how do you cure the hiccups?"
+45948,hiccup_nut hiccough_nut Combretum_bracteosum,ornamental African shrub or climber with red flowers
+45949,hickey love_bite,a temporary red mark on a person's skin resulting from kissing or sucking by their lover
+45950,hickory,valuable tough heavy hardwood from various hickory trees
+45951,hickory hickory_tree,American hardwood tree bearing edible nuts
+45952,hickory_nut,small hard-shelled nut of North American hickory trees especially the shagbark hickories
+45953,hidden_reserve,reserves that do not show up on the balance sheet (as by understating values)
+45954,hidden_tax,a tax paid unwittingly by the consumer (such as ad valorem taxes)
+45955,hiddenite,a green transparent form of the mineral spodumene used as a gemstone
+45956,hiddenness covertness,the state of being covert and hidden
+45957,hide fell,the dressed skin of an animal (especially a large animal)
+45958,hide pelt skin,body covering of a living animal
+45959,hide-and-seek hide_and_go_seek,a game in which a child covers his eyes while the other players hide then tries to find them
+45960,hideaway retreat,an area where you can be alone
+45961,hideousness,dreadful ugliness; horrible repulsiveness
+45962,hideout hideaway den,a hiding place; usually a remote place used by outlaws
+45963,hiding,the state of being hidden; "he went into hiding"
+45964,hiding_place,a place suitable for hiding something (such as yourself)
+45965,hierarch,a person who holds a high position in a hierarchy
+45966,hierarchical_classification_system,a classification system where entries are arranged based on some hierarchical structure
+45967,hierarchical_menu cascading_menu submenu,a secondary menu that appears while you are holding the cursor over an item on the primary menu
+45968,hierarchical_structure hierarchical_data_structure,a structure of data having several levels arranged in a treelike structure
+45969,hierarchy,a series of ordered groupings of people or things within a system; "put honesty first in her hierarchy of values"
+45970,hierarchy power_structure pecking_order,the organization of people at different ranks in an administrative body
+45971,hieratic hieratic_script,a cursive form of Egyptian hieroglyphics; used especially by the priests
+45972,hierocracy,a ruling body composed of clergy
+45973,hieroglyph hieroglyphic,writing that resembles hieroglyphics (usually by being illegible)
+45974,hieroglyph hieroglyphic,a writing system using picture symbols; used in ancient Egypt
+45975,high,an air mass of higher than normal pressure; "the east coast benefits from a Bermuda high"
+45976,high,a state of sustained elation; "I'm on a permanent high these days"
+45977,high,a state of altered consciousness induced by alcohol or narcotics; "they took drugs to get a high on"
+45978,high,a lofty level or position or degree; "summer temperatures reached an all-time high"
+45979,high heights,a high place; "they stood on high and observed the countryside"; "he doesn't like heights"
+45980,high-angle_fire,fire from a cannon that is fired at an elevation greater than that for the maximum range
+45981,high-angle_gun,a cannon that can be fired at a high elevation for relatively short ranges
+45982,high-bush_blueberry tall_bilberry swamp_blueberry Vaccinium_corymbosum,high-growing deciduous shrub of eastern North America bearing edible blueish to blackish berries with a distinct bloom; source of most cultivated blueberries
+45983,high-definition_television HDTV,a television system that has more than the usual number of lines per frame so its pictures show more detail
+45984,high-density_lipoprotein HDL alpha-lipoprotein,a lipoprotein that transports cholesterol in the blood; composed of a high proportion of protein and relatively little cholesterol; high levels are thought to be associated with decreased risk of coronary heart disease and atherosclerosis
+45985,high-five,a gesture of greeting or elation; one person's upraised palm slaps the upraised palm of another person
+45986,high-hat_cymbal high_hat,cymbals that are operated by a foot pedal
+45987,high-level_formatting,(computer science) the format for the root directory and the file allocation tables and other basic configurations
+45988,high-level_language,a problem-oriented language requiring little knowledge of the computer on which it will be run
+45989,high-level_radioactive_waste,radioactive waste that left in a nuclear reactor after the nuclear fuel has been consumed
+45990,high-low,poker in which the high and low hands split the pot
+45991,high-mindedness idealism noble-mindedness,elevated ideals or conduct; the quality of believing that ideals should be pursued
+45992,high-muck-a-muck pooh-bah,an arrogant or conceited person of importance
+45993,high-pass_filter,a filter that passes frequencies above a certain value and attenuates frequencies below that value
+45994,high-protein_diet,a diet high in plant and animal proteins; used to treat malnutrition or to increase muscle mass
+45995,high-rise tower_block,tower consisting of a multistoried building of offices or apartments; "`tower block' is the British term for `high-rise'"
+45996,high-speed_steel hot-work_steel,an alloy steel that remains hard at a red heat; used to make metal-cutting tools
+45997,high-spiritedness,exuberant liveliness
+45998,high-vitamin_diet vitamin-deficiency_diet,a diet designed to patients with vitamin deficiencies
+45999,high-warp_loom,a handloom in which the warp is carried vertically; for weaving tapestry
+46000,high-water_mark,a line marking the highest level reached
+46001,high_altar,the main altar in a church
+46002,high_beam,the beam of a car's headlights that provides distant illumination
+46003,high_blood_pressure hypertension,a common disorder in which blood pressure remains abnormally high (a reading of 140/90 mm Hg or greater)
+46004,high_brass,brass with 35% zinc
+46005,high_colonic,an enema that injects large amounts of fluid high into the colon for cleansing purposes
+46006,high_comedy,a sophisticated comedy; often satirizing genteel society
+46007,high_command supreme_headquarters,the highest leaders in an organization (e.g. the commander-in-chief and senior officers of the military)
+46008,high_commissioner,a senior diplomat from one country to another who is assigned ambassadorial rank
+46009,high_country,an area lying above the piedmont but below the timberline
+46010,high_explosive,a powerful chemical explosive that produces gas at a very high rate
+46011,high_fidelity hi-fi,the reproduction of sound with little or no distortion
+46012,high_finance,large and complex financial transactions (often used with the implication that those individuals or institutions who engage in them are unethical)
+46013,high_frequency HF,3 to 30 megahertz
+46014,high_gear high,a forward gear with a gear ratio that gives the greatest vehicle velocity for a given engine speed
+46015,high_ground,a position of superiority over opponents or competitors
+46016,high_horse,an attitude of arrogant superiority; "get off your high horse and admit you are wrong"
+46017,high_jump,a competition that involves jumping as high as possible over a horizontal bar
+46018,high_jump,the act of jumping as high as possible over a horizontal bar
+46019,high_pitch high_frequency,a pitch that is perceived as above other pitches
+46020,high_point,the most enjoyable part of a given experience; "the trumpet solo was the high point of the concert"
+46021,high_priest,a preeminent authority or major proponent of a movement or doctrine; "he's the high priest of contemporary jazz"
+46022,high_profile,a position attracting much attention and publicity
+46023,high_roller,a gambler who wagers large sums
+46024,high_sea international_waters,the open seas of the world outside the territorial waters of any nation
+46025,high_season peak_season,the season when travel is most active and rates are highest; "they traveled to Europe in high season"
+46026,high_sign,a silent signal of warning or recognition; "she started to speak but he gave her the high sign"
+46027,high_status,a position of superior status
+46028,high_table,a dining table in a dining-hall raised on a platform; seats are reserved for distinguished persons
+46029,high_tea,substantial early evening meal including tea
+46030,high_technology high_tech,highly advanced technological development (especially in electronics)
+46031,high_tide high_water highwater,the tide when the water is highest
+46032,high_time,the latest possible moment; "it is high time you went to work"
+46033,high_wind,a very strong wind; "rain and high winds covered the region"
+46034,high_wire,a tightrope very high above the ground
+46035,highball,a mixed drink made of alcoholic liquor mixed with water or a carbonated beverage and served in a tall glass
+46036,highball_glass,a tall glass for serving highballs
+46037,highbinder,a corrupt politician
+46038,highboard,a high diving board
+46039,highboy tallboy,a tall chest of drawers divided into two sections and supported on four legs
+46040,highbrow,a person of intellectual or erudite tastes
+46041,highchair feeding_chair,a chair for feeding a very young child; has four long legs and a footrest and a detachable tray
+46042,higher_cognitive_process,cognitive processes that presuppose the availability of knowledge and put it to use
+46043,higher_criticism,the scientific study of biblical writings to determine their origin and meaning
+46044,higher_education,education provided by a college or university
+46045,higher_law,a principle that takes precedent over the laws of society
+46046,highflier highflyer,a person of great ability and ambition
+46047,highjacker highwayman hijacker road_agent,a holdup man who stops a vehicle and steals from it
+46048,highjacker hijacker,someone who uses force to take over a vehicle (especially an airplane) in order to reach an alternative destination
+46049,highjacking hijacking,robbery of a traveller or vehicle in transit or seizing control of a vehicle by the use of force
+46050,highland upland,elevated (e.g., mountainous) land
+46051,highland_fling,a vigorous Scottish reel
+46052,highlight high_spot,the most interesting or memorable part; "the highlight of the tour was our visit to the Vatican"
+46053,highlight highlighting,an area of lightness in a picture
+46054,highlighter,a cosmetic used to highlight the eyes or cheekbones
+46055,highlighter,a fluorescent marker used to mark important passages in a text
+46056,highness,a high degree (of amount or force etc.); "responsible for the highness of the rates"
+46057,highness loftiness,the quality of being high or lofty
+46058,highroad trunk_road,a highway
+46059,highway main_road,a major road for any form of motor transport
+46060,highway_engineer,a civil engineer who specializes in the design and construction of roads and highways
+46061,highway_robbery,an exorbitant price; "what they are asking for gas these days is highway robbery"
+46062,highway_robbery,robbery of travellers on or near a public road
+46063,highway_system,a transportation system consisting of roads for motor transport
+46064,hijab,a headscarf worn by Muslim women; conceals the hair and neck and usually has a face veil that covers the face
+46065,hijab,the custom in some Islamic societies of women dressing modestly outside the home; "she observes the hijab and does not wear tight clothing"
+46066,hijack highjack,seizure of a vehicle in transit either to rob it or divert it to an alternate destination
+46067,hike hiking tramp,a long walk usually for exercise or pleasure; "she enjoys a hike in her spare time"
+46068,hiker tramp tramper,a foot traveler; someone who goes on an extended walk (for pleasure)
+46069,hilarity mirth mirthfulness glee gleefulness,great merriment
+46070,hill,a local and well-defined elevation of the land; "they loved to roam the hills of West Virginia"
+46071,hill_myna Indian_grackle grackle Gracula_religiosa,glossy black Asiatic starling often taught to mimic speech
+46072,hillbilly bushwhacker,a disparaging term for an unsophisticated person
+46073,hillbilly_music,country music originating in mountainous regions of southern United States
+46074,hilliness,the quality of being hilly; "the hilliness of West Virginia"
+46075,hillside,the side or slope of a hill
+46076,hilltop brow,the peak of a hill; "the sun set behind the brow of distant hills"
+46077,hilt,the handle of a sword or dagger
+46078,hilum,the scar on certain seeds marking its point of attachment to the funicle
+46079,hilus hilum,(anatomy) a depression or fissure where vessels or nerves or ducts enter a bodily organ; "the hilus of the kidney"
+46080,hin,ancient Hebrew unit of liquid measure = 1.5 gallons
+46081,hind,any of several mostly spotted fishes that resemble groupers
+46082,hind,a female deer, especially an adult female red deer
+46083,hind_leg,the back limb of a quadruped
+46084,hind_limb hindlimb,a posterior appendage such as a leg or the homologous structure in other animals
+46085,hindbrain rhombencephalon,the posterior portion of the brain including cerebellum and brainstem
+46086,hindfoot,a rear foot of a quadruped
+46087,hindgut,the caudal part of the alimentary canal in vertebrate embryos
+46088,hindquarter,the back half of a side of meat
+46089,hindquarters croup croupe rump,the part of an animal that corresponds to the human buttocks
+46090,hindrance hinderance deterrent impediment balk baulk check handicap,something immaterial that interferes with or delays action or progress
+46091,hindrance hinderance hitch preventive preventative encumbrance incumbrance interference,any obstruction that impedes or is burdensome
+46092,hindrance hinderance interference,the act of hindering or obstructing or impeding
+46093,hindshank,a cut of meat from the upper part of a rear leg
+46094,hindsight,understanding the nature of an event after it has happened; "hindsight is always better than foresight"
+46095,hinge,a circumstance upon which subsequent events depend; "his absence is the hinge of our plan"
+46096,hinge flexible_joint,a joint that holds two parts together so that one can swing relative to the other
+46097,hinge_joint ginglymus ginglymoid_joint,a freely moving joint in which the bones are so articulated as to allow extensive movement in one plane
+46098,hinging_post swinging_post,the gatepost on which the gate is hung
+46099,hinny,hybrid offspring of a male horse and a female donkey or ass; usually sterile; "a hinny has a gentler disposition than a mule"
+46100,hint clue,a slight indication
+46101,hint intimation breath,an indirect suggestion; "not a breath of scandal ever touched her"
+46102,hip,(architecture) the exterior angle formed by the junction of a sloping side and a sloping end of a roof
+46103,hip,either side of the body below the waist and above the thigh
+46104,hip hip_joint coxa articulatio_coxae,the ball-and-socket joint between the head of the femur and the acetabulum
+46105,hip rose_hip rosehip,the fruit of a rose plant
+46106,hip-hop,an urban youth culture associated with rap music and the fashions of African-American residents of the inner city
+46107,hip_boot thigh_boot,a very high boot; used especially for fishing
+46108,hip_pad,protective garment consisting of a pad worn by football and hockey players
+46109,hip_pocket,a pocket in rear of trousers
+46110,hip_roof hipped_roof,a roof having sloping ends as well as sloping sides
+46111,hip_socket,the socket part of the ball-and-socket joint between the head of the femur and the innominate bone
+46112,hip_tile hipped_tile,a tile shaped so as to cover the hip of a hip roof
+46113,hipbone innominate_bone,large flaring bone forming one half of the pelvis; made up of the ilium and ischium and pubis
+46114,hipflask pocket_flask,a flask that holds spirits
+46115,hipline,the line formed by measuring the hip at its greatest part
+46116,hipline,the line formed by the lower edge of hip-length garment
+46117,hippeastrum Hippeastrum_puniceum,amaryllis of tropical America often cultivated as a houseplant for its showy white to red flowers
+46118,hippie hippy hipster flower_child,someone who rejects the established culture; advocates extreme liberalism in politics and lifestyle
+46119,hippocampus,a complex neural structure (shaped like a sea horse) consisting of grey matter and located on the floor of each lateral ventricle; intimately involved in motivation and emotion as part of the limbic system; has a central role in the formation of memories
+46120,hippodrome,a stadium for horse shows or horse races
+46121,hippopotamus hippo river_horse Hippopotamus_amphibius,massive thick-skinned herbivorous animal living in or around rivers of tropical Africa
+46122,hire,a newly hired employee; "the new hires need special training"
+46123,hire,the act of hiring something or someone; "he signed up for a week's car hire"
+46124,hire-purchase never-never,installment plan; "we bought a car on the never-never"
+46125,hired_hand hand hired_man,a hired laborer on a farm or ranch; "the hired hand fixed the railing"; "a ranch hand"
+46126,hired_help,employee hired for domestic or farm work (often used in the singular to refer to several employees collectively)
+46127,hireling pensionary,a person who works only for money
+46128,hiring_freeze,a freeze on hiring
+46129,hiring_hall,a union-operated placement office where jobs are allotted to applicants according to seniority or rotation
+46130,hirsuteness hirsutism,excessive hairiness
+46131,hispid_pocket_mouse Perognathus_hispidus,large stiff-haired rodent of shortgrass prairies of United States
+46132,hiss hissing hushing fizzle sibilation,a fricative sound (especially as an expression of disapproval); "the performers could not be heard over the hissing of the audience"
+46133,hisser,someone who communicates disapproval by hissing
+46134,histaminase,enzyme that acts as a catalyst in converting histidine to histamine
+46135,histamine,amine formed from histidine that stimulates gastric secretions and dilates blood vessels; released by the human immune system during allergic reactions
+46136,histamine_blocker,a medicine used to treat the gastric effects of histamine in cases of peptic ulcers and gastritis and gastroesophageal reflux; works by blocking the effects of histamine on the receptor site known as H2
+46137,histamine_headache cluster_headache,a painful recurring headache associated with the release of histamine from cells
+46138,histidine,an essential amino acid found in proteins that is important for the growth and repair of tissue
+46139,histiocyte,a macrophage that is found in connective tissue
+46140,histiocytosis,a blood disease characterized by an abnormal multiplication of macrophages
+46141,histocompatibility,condition in which the cells of one tissue can survive in the presence of cells of another tissue; "a successful graft or transplant requires a high degree of histocompatibility"
+46142,histocompatibility_complex,a family of fifty or more genes on the sixth human chromosome that code for proteins on the surfaces of cells and that play a role in the immune response
+46143,histogram,a bar chart representing a frequency distribution; heights of the bars represent observed frequencies
+46144,histoincompatibility,incompatibility in which one person's tissue cannot be transplanted to another person
+46145,histologist,anatomist who specializes in the microscopic study of animal tissues
+46146,histology,the branch of biology that studies the microscopic structure of animal or plant tissues
+46147,histone,a simple protein containing mainly basic amino acids; present in cell nuclei in association with nucleic acids
+46148,historian historiographer,a person who is an authority on history and who studies it and writes about it
+46149,historic_period age,an era of history having some distinctive feature; "we live in a litigious age"
+46150,historical_document historical_paper historical_record,writing having historical value (as opposed to fiction or myth etc.)
+46151,historical_linguistics diachronic_linguistics diachrony,the study of linguistic change; "the synchrony and diachrony of language"
+46152,historical_present,the use of the present tense to describe past actions or states
+46153,historical_school,a school of 19th century German economists and legal philosophers who tried to explain modern economic systems in evolutionary or historical terms
+46154,historicalness,the state of having in fact existed in the past
+46155,historicalness,significance owing to its history
+46156,historicism,a theory that social and cultural events are determined by history
+46157,historiography,a body of historical literature
+46158,historiography,the writing of history
+46159,history,the continuum of events occurring in succession leading from the past to the present and even into the future; "all of human history"
+46160,history,the aggregate of past events; "a critical time in the school's history"
+46161,history,all that is remembered of the past as preserved in writing; a body of knowledge; "the dawn of recorded history"; "from the beginning of history"
+46162,history,the discipline that records and interprets past events involving human beings; "he teaches Medieval history"; "history takes the long view"
+46163,history account chronicle story,a record or narrative description of past events; "a history of France"; "he gave an inaccurate account of the plot to kill the president"; "the story of exposure to lead"
+46164,history_department department_of_history,the academic department responsible for teaching history
+46165,history_lesson,a lesson in the facts of history
+46166,histrionics,a deliberate display of emotion for effect
+46167,hit,a dose of a narcotic drug
+46168,hit,a murder carried out by an underworld syndicate; "it has all the earmarks of a Mafia hit"
+46169,hit,a connection made via the internet to another website; "WordNet gets many hits from users worldwide"
+46170,hit,(baseball) a successful stroke in an athletic contest (especially in baseball); "he came all the way around on Williams' hit"
+46171,hit hitting striking,the act of contacting one thing with another; "repeated hitting raised a large bruise"; "after three misses she finally got a hit"
+46172,hit smash smasher strike bang,a conspicuous success; "that song was his first hit and marked the beginning of his career"; "that new Broadway show is a real smasher"; "the party went with a bang"
+46173,hit_list,a list of victims to be eliminated (as by murder)
+46174,hit_parade,a collection of the best or most popular people or items of a given kind
+46175,hit_parade,a ranked list of the songs that are most popular at a given time
+46176,hit_squad,a team of assassins
+46177,hitch,a connection between a vehicle and the load that it pulls
+46178,hitch,a knot that can be undone by pulling against the strain that holds it; a temporary knot
+46179,hitch hobble limp,the uneven manner of walking that results from an injured leg
+46180,hitchhiker,a person who travels by getting free rides from passing vehicles
+46181,hitching_post,a fixed post with a ring to which a horse can be hitched to prevent it from straying
+46182,hitchrack hitching_bar,a fixed horizontal rail to which a horse can be hitched to prevent it from straying
+46183,hitter striker,someone who hits; "a hard hitter"; "a fine striker of the ball"; "blacksmiths are good hitters"
+46184,hive,a teeming multitude
+46185,hoard cache stash,a secret store of valuables or money
+46186,hoarder,a person who accumulates things and hides them away for future use
+46187,hoariness,great age (especially grey or white with age)
+46188,hoary_alison hoary_alyssum Berteroa_incana,tall European annual with downy grey-green foliage and dense heads of small white flowers followed by hairy pods; naturalized in North America; sometimes a troublesome weed
+46189,hoary_golden_bush Hazardia_cana,western American shrubs having white felted foliage and yellow flowers that become red-purple
+46190,hoary_marmot whistler whistling_marmot Marmota_caligata,large North American mountain marmot
+46191,hoary_pea,a plant of the genus Tephrosia having pinnate leaves and white or purplish flowers and flat hairy pods
+46192,hoary_plantain Plantago_media,widely distributed Old World perennial naturalized in North America having finely hairy leaves and inconspicuous white fragrant flowers
+46193,hoary_plantain Plantago_virginica,North American annual or biennial with long soft hairs on the leaves
+46194,hoary_puccoon Indian_paint Lithospermum_canescens,perennial North American plant with greyish hairy foliage yielding a red or yellow pigment
+46195,hoary_willow sage_willow Salix_candida,North American shrub with whitish canescent leaves
+46196,hoatzin hoactzin stinkbird Opisthocomus_hoazin,crested ill-smelling South American bird whose young have claws on the first and second digits of the wings
+46197,hob,a hard steel edge tool used to cut gears
+46198,hob,a shelf beside an open fire where something can be kept warm
+46199,hobbit,an imaginary being similar to a person but smaller and with hairy feet; invented by J.R.R. Tolkien
+46200,hobble_skirt,a long skirt very narrow below the knees, worn between 1910 and 1914
+46201,hobbledehoy,an awkward bad-mannered adolescent boy
+46202,hobbler limper,someone who has a limp and walks with a hobbling gait
+46203,hobby Falco_subbuteo,small Old World falcon formerly trained and flown at small birds
+46204,hobby hobbyhorse rocking_horse,a child's plaything consisting of an imitation horse mounted on rockers; the child straddles it and pretends to ride
+46205,hobbyhorse,a topic to which one constantly reverts; "don't get him started on his hobbyhorse"
+46206,hobbyism,a devotion to hobbies
+46207,hobbyist,a person who pursues an activity in their spare time for pleasure
+46208,hobnail,a short nail with a thick head; used to protect the soles of boots
+46209,hobo migrant_worker,a worker who moves around and works temporarily in different places
+46210,hobo_camp jungle,a place where hoboes camp
+46211,hock hock-joint,tarsal joint of the hind leg of hoofed mammals; corresponds to the human ankle
+46212,hockey_clinic,a meeting at which hockey players receive special evaluation and instruction
+46213,hockey_coach,a coach of hockey players
+46214,hockey_league,a league of hockey teams
+46215,hockey_player ice-hockey_player,an athlete who plays hockey
+46216,hockey_season,the season when hockey is played
+46217,hockey_skate,an ice skate worn for playing hockey; has a short blade and a strong boot to protect the feet and ankles
+46218,hockey_stick,sports implement consisting of a curved or angled stick used by hockey players to move the puck
+46219,hockey_team,a team that plays ice hockey
+46220,hod,an open box attached to a long pole handle; bricks or mortar are carried on the shoulder
+46221,hod_carrier hodman,a laborer who carries supplies to masons or bricklayers
+46222,hodoscope,(physics) scientific instrument that traces the path of a charged particle
+46223,hoe,a tool with a flat blade attached at right angles to a long handle
+46224,hoe_handle,the handle of a hoe
+46225,hoecake,thin usually unleavened johnnycake made of cornmeal; originally baked on the blade of a hoe over an open fire (southern)
+46226,hog hogget hogg,a sheep up to the age of one year; one yet to be sheared
+46227,hog pig,a person regarded as greedy and pig-like
+46228,hog pig grunter squealer Sus_scrofa,domestic swine
+46229,hog-nosed_skunk hognosed_skunk badger_skunk rooter_skunk Conepatus_leuconotus,large naked-muzzled skunk with white back and tail; of southwestern North America and Mexico
+46230,hog_badger hog-nosed_badger sand_badger Arctonyx_collaris,southeast Asian badger with a snout like a pig
+46231,hog_cholera,highly infectious virus disease of swine
+46232,hog_peanut wild_peanut Amphicarpaea_bracteata Amphicarpa_bracteata,vine widely distributed in eastern North America producing racemes of purple to maroon flowers and abundant (usually subterranean) edible one-seeded pods resembling peanuts
+46233,hog_plum wild_plum,fruit of the wild plum of southern United States
+46234,hog_plum yellow_mombin,yellow oval tropical fruit
+46235,hog_plum yellow_mombin yellow_mombin_tree Spondias_mombin,tropical American tree having edible yellow fruit
+46236,hog_sucker hog_molly Hypentelium_nigricans,widely distributed in warm clear shallow streams
+46237,hogan,a Navajo lodge covered with earth; traditionally built with the entrance facing east
+46238,hogback horseback,a narrow ridge of hills
+46239,hogchoker Trinectes_maculatus,useless as food; in coastal streams from Maine to Texas and Panama
+46240,hogfish hog_snapper Lachnolaimus_maximus,large wrasse of western Atlantic; head of male resembles a pig's snout
+46241,hognose_bat Choeronycteris_mexicana,small-eared Mexican bat with a long slender nose
+46242,hognose_snake puff_adder sand_viper,harmless North American snake with upturned nose; may spread its head and neck or play dead when disturbed
+46243,hogshead,a British unit of capacity for alcoholic beverages
+46244,hogshead,a large cask especially one holding 63 gals
+46245,hoist,lifting device for raising heavy or cumbersome objects
+46246,hoister,an operator of a hoist
+46247,hold,power by which something or someone is affected or dominated; "he has a hold over them"
+46248,hold,a stronghold
+46249,hold keep,a cell in a jail or prison
+46250,hold-down,a limitation or constraint; "taxpayers want a hold-down on government spending"
+46251,holder,a person who holds something; "they held two hostages"; "he holds the trophy"; "she holds a United States passport"
+46252,holder,a holding device; "a towel holder"; "a cigarette holder"; "an umbrella holder"
+46253,holder bearer,the person who is in possession of a check or note or bond or document of title that is endorsed to him or to whoever holds it; "the bond was marked `payable to bearer'"
+46254,holding_cell,a jail in a courthouse where accused persons can be confined during a trial
+46255,holding_company,a company with controlling shares in other companies
+46256,holding_device,a device for holding something
+46257,holding_pattern,a state of inaction with no progress and no change; "you should go into a holding pattern until he gets over his disappointment"
+46258,holding_pattern,the flight path (usually circular) maintained by an aircraft that is awaiting permission to land
+46259,holding_pen holding_paddock holding_yard,a pen where livestock is temporarily confined
+46260,holdout,a negotiator who hopes to gain concessions by refusing to come to terms; "their star pitcher was a holdout for six weeks"
+46261,holdout,a refusal by a negotiator to come to terms in the hope of obtaining a better deal
+46262,holdout,the act of hiding playing cards in a gambling game so they are available for personal use later
+46263,holdover hangover,an official who remains in office after his term
+46264,holdup_man stickup_man,an armed thief
+46265,hole,a fault; "he shot holes in my argument"
+46266,hole,an unoccupied space
+46267,hole,an opening into or through something
+46268,hole,an opening deliberately made in or through something
+46269,hole golf_hole,one playing period (from tee to green) on a golf course; "he played 18 holes"
+46270,hole hollow,a depression hollowed out of solid matter
+46271,hole-in-the-wall,a small unpretentious out-of-the-way place; "his office was a hole-in-the-wall"
+46272,hole_card,any assets that are concealed until they can be used advantageously
+46273,hole_card,(poker) a playing card dealt face down and not revealed until the showdown
+46274,holiday,a day on which work is suspended by law or custom; "no mail is delivered on federal holidays"; "it's a good thing that New Year's was a holiday because everyone had a hangover"
+46275,holiday_season,a time when many people take holidays
+46276,holiness sanctity sanctitude,the quality of being holy
+46277,holism holistic_theory,the theory that the parts of any whole cannot exist and cannot be understood except in their relation to the whole; "holism holds that the whole is greater than the sum of its parts"; "holistic theory has been applied to ecology and language and mental states"
+46278,holistic_medicine,medical care of the whole person considered as subject to personal and social as well as organic factors; "holistic medicine treats the mind as well as the body"
+46279,hollandaise,eggs and butter with lemon juice
+46280,hollow,a cavity or space in something; "hunger had caused the hollows in their cheeks"
+46281,hollow holler,a small valley between mountains; "he built himself a cabin in a hollow high up in the Appalachians"
+46282,hollowness,the state of being hollow: having an empty space within
+46283,hollowness,the property of having a sunken area
+46284,hollowware holloware,silverware serving dishes
+46285,holly,any tree or shrub of the genus Ilex having red berries and shiny evergreen leaves with prickly edges
+46286,holly-leaved_cherry holly-leaf_cherry evergreen_cherry islay Prunus_ilicifolia,California evergreen wild plum with spiny leathery leaves and white flowers
+46287,holly_fern,any of various ferns of the genus Polystichum having fronds with texture and gloss like holly
+46288,holly_fern Cyrtomium_aculeatum Polystichum_aculeatum,tropical Old World fern having glossy fronds suggestive of holly; sometimes placed in genus Polystichum
+46289,hollyhock,any of various tall plants of the genus Alcea; native to the Middle East but widely naturalized and cultivated for its very large variously colored flowers
+46290,holm_oak,hard wood of the holm oak tree
+46291,holm_oak holm_tree holly-leaved_oak evergreen_oak Quercus_ilex,evergreen oak of southern Europe having leaves somewhat resembling those of holly; yields a hard wood
+46292,holmium Ho atomic_number_67,a trivalent metallic element of the rare earth group; occurs together with yttrium; forms highly magnetic compounds
+46293,holocaust,an act of mass destruction and loss of life (especially in war or by fire); "a nuclear holocaust"
+46294,holocephalan holocephalian,fish with high compressed head and a body tapering off into a long tail
+46295,hologram holograph,the intermediate photograph (or photographic record) that contains information for reproducing a three-dimensional image by holography
+46296,holography,the branch of optics that deals with the use of coherent light from a laser in order to make a hologram that can then be used to create a three-dimensional image
+46297,holometabola metabola,insects that undergo complete metamorphosis
+46298,holometabolism holometaboly,complete metamorphosis in insects
+46299,holonym whole_name,a word that names the whole of which a given word is a part; "`hat' is a holonym for `brim' and `crown'"
+46300,holonymy whole_to_part_relation,the semantic relation that holds between a whole and its parts
+46301,holophyte,an organism that produces its own food by photosynthesis
+46302,holster,a belt with loops or slots for carrying small hand tools
+46303,holster,a sheath (usually leather) for carrying a handgun
+46304,holy_day_of_obligation,a day when Catholics must attend Mass and refrain from servile work, and Episcopalians must take Communion
+46305,holy_of_holies,(figurative) something regarded as sacred or inviolable; "every politician fears to touch that holy of holies, the Social Security System"
+46306,holy_of_holies sanctum_sanctorum,(Judaism) sanctuary comprised of the innermost chamber of the Tabernacle in the temple of Solomon where the Ark of the Covenant was kept
+46307,holy_order,the sacrament of ordination
+46308,holy_place sanctum holy,a sacred place of pilgrimage
+46309,holy_water,water that has been blessed by a priest for use in symbolic purification
+46310,holystone,a soft sandstone used for scrubbing the decks of a ship
+46311,home,an environment offering affection and security; "home is where the heart is"; "he grew up in a good Christian home"; "there's no place like home"
+46312,home,place where something began and flourished; "the United States is the home of basketball"
+46313,home,the country or state or city where you live; "Canadian tariffs enabled United States lumber companies to raise prices at home"; "his home is New Jersey"
+46314,home nursing_home rest_home,an institution where people are cared for; "a home for the elderly"
+46315,home place,where you live at a particular time; "deliver the package to my home"; "he doesn't have a home to go to"; "your place or mine?"
+46316,home-farm,a farm that supplies the needs of a large estate of establishment
+46317,home_appliance household_appliance,an appliance that does a particular job in the home
+46318,home_away_from_home home_from_home,a place where you are just as comfortable and content as if you were home
+46319,home_banking,banking in which transactions are conducted by means of electronic communication (via telephone or computer)
+46320,home_brew homebrew,an alcoholic beverage (especially beer) made at home
+46321,home_buyer,someone buying a house
+46322,home_computer,a computer intended for use in the home
+46323,home_court,(basketball) the court where the host team plays its home games
+46324,home_economics home_ec domestic_science household_arts,theory and practice of homemaking
+46325,home_folk,folks from your own home town
+46326,home_fries home-fried_potatoes,sliced pieces of potato fried in a pan until brown and crisp
+46327,home_front,the civilian population (and their activities) of a country at war
+46328,home_game,a game played at home
+46329,home_guard,a volunteer unit formed to defend the homeland while the regular army is fighting elsewhere
+46330,home_help,a person hired to help in another's home (especially one employed by a local authority to help the infirm with domestic work)
+46331,home_invasion,burglary of a dwelling while the residents are at home
+46332,home_loan home_equity_credit home_equity_loan equity_credit_line,a loan secured by equity value in the borrower's home
+46333,home_movie,a film made at home by an amateur photographer
+46334,home_page homepage,the opening page of a web site
+46335,home_plate home_base home plate,(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score; "he ruled that the runner failed to touch home"
+46336,home_port,the port from which a ship originates of where it is registered
+46337,home_range home_territory,the area in which an animal normally ranges
+46338,home_room homeroom,a classroom in which all students in a particular grade (or in a division of a grade) meet at certain times under the supervision of a teacher who takes attendance and does other administrative business
+46339,home_rule,self-government in local matters by a city or county that is part of a national government
+46340,home_stand,a series of successive games played at a team's home field or court
+46341,home_study,a course of study carried out at home rather than in a classroom
+46342,home_theater home_theatre,television and video equipment designed to reproduce in the home the experience of being in a movie theater
+46343,home_truth,an important truth that is unpleasant to acknowledge (as about yourself)
+46344,homebound,people who are confined to their homes
+46345,homeboy,a fellow male member of a youth gang
+46346,homeboy,a male friend from your neighborhood or hometown
+46347,homebuilder home-builder housebuilder house-builder,someone who builds houses as a business
+46348,homecoming,an annual school or university reunion for graduates
+46349,homecourt_advantage,the advantage of playing on your home court in front of fans who are rooting for you
+46350,homefolk,the people of your home locality (especially your own family); "he wrote his homefolk every day"
+46351,homegirl,a fellow female member of a youth gang
+46352,homeless,poor people who unfortunately do not have a home to live in; "the homeless became a problem in the large cities"
+46353,homeless homeless_person,someone unfortunate without housing; "a homeless was found murdered in Central Park"
+46354,homelessness,the state or condition of having no home (especially the state of living in the streets)
+46355,homeliness plainness,an appearance that is not attractive or beautiful; "fine clothes could not conceal the girl's homeliness"
+46356,homemaking,the management of a household
+46357,homeobox homeobox_gene,one of various similar homeotic genes that are involved in bodily segmentation during embryonic development
+46358,homeopath homoeopath,a practitioner of homeopathy
+46359,homeopathy homoeopathy,a method of treating disease with small amounts of remedies that, in large amounts in healthy people, produce symptoms similar to those being treated
+46360,homeostasis,(physiology) metabolic equilibrium actively maintained by several complex biological mechanisms that operate via the autonomic nervous system to offset disrupting changes
+46361,homeotherm homoiotherm homotherm,an animal that has a body temperature that is relatively constant and independent of the environmental temperature
+46362,homeotic_gene,one the genes that are involved in embryologic development
+46363,homeowner householder,someone who owns a home
+46364,homer home_run,a base hit on which the batter scores a run
+46365,homer kor,an ancient Hebrew unit of capacity equal to 10 baths or 10 ephahs
+46366,homesickness,a longing to return home
+46367,homespun,a rough loosely woven fabric originally made with yarn that was spun at home
+46368,homestead,the home and adjacent grounds occupied by a family
+46369,homestead,land acquired from the United States public lands by filing a record and living on and cultivating it under the homestead law
+46370,homestead,dwelling that is usually a farmhouse and adjoining land
+46371,homestead_law,a law conferring privileges on owners of homesteads
+46372,homestretch,the end of an enterprise; "they were on the homestretch when the computer crashed"
+46373,homestretch,the straight stretch of a racetrack leading to the finish line
+46374,hometown,the town (or city) where you grew up or where you have your principal residence; "he never went back to his hometown again"
+46375,homework prep preparation,preparatory school work done outside school (especially at home)
+46376,homework_problem,a problem that students are assigned to do outside of class
+46377,homicide,the killing of a human being by another human being
+46378,homiletics,the branch of theology that deals with sermons and homilies
+46379,homiletics,the art of preaching
+46380,homily preachment,a sermon on a moral or religious topic
+46381,homing_device,the mechanism in a guided missile that guides it toward its objective
+46382,homing_pigeon homer,pigeon trained to return home
+46383,homing_torpedo,a torpedo that is guided to its target (as by the sound of a ship's engines)
+46384,hominid,a primate of the family Hominidae
+46385,hominoid,a primate of the superfamily Hominoidea
+46386,hominy,hulled corn with the bran and germ removed
+46387,homo man human_being human,any living or extinct member of the family Hominidae characterized by superior intelligence, articulate speech, and erect carriage
+46388,homocercal_fin,symmetrical tail fin extending beyond the end of the vertebral column as in most bony fishes
+46389,homogenate,material that has been homogenized (especially tissue that has been ground and mixed); "liver homogenate"
+46390,homogeneity,the quality of being of uniform throughout in composition or structure
+46391,homogeneity homogeneousness,the quality of being similar or comparable in kind or nature; "there is a remarkable homogeneity between the two companies"
+46392,homogeneous_polynomial,a polynomial consisting of terms all of the same degree
+46393,homogenization homogenisation,the act of making something homogeneous or uniform in composition; "the homogenization of cream"; "the network's homogenization of political news"
+46394,homogenized_milk,milk with the fat particles broken up and dispersed uniformly so the cream will not rise
+46395,homogeny,(biology) similarity because of common evolution
+46396,homograft allograft,tissue or organ transplanted from a donor of the same species but different genetic makeup; recipient's immune system must be suppressed to prevent rejection of the graft
+46397,homograph,two words are homographs if they are spelled the same way but differ in meaning (e.g. fair)
+46398,homology,the quality of being similar or corresponding in position or value or structure or function
+46399,homolosine_projection,an equal-area projection map of the globe; oceans are distorted in order to minimize the distortion of the continents
+46400,homomorphism homomorphy,similarity of form
+46401,homonym,two words are homonyms if they are pronounced and spelled the same way but have different meanings
+46402,homonymy,the relation between two words that are spelled the same way but differ in meaning or the relation between two words that are pronounced the same way but differ in meaning
+46403,homophobe,a person who hates or fears homosexual people
+46404,homophobia,prejudice against (fear or dislike of) homosexual people and homosexuality
+46405,homophone,two words are homophones if they are pronounced the same way but differ in meaning or spelling or both (e.g. bare and bear)
+46406,homophony,the same pronunciation for words of different origins
+46407,homophony,part music with one dominant voice (in a homophonic style)
+46408,homopterous_insect homopteran,insects having membranous forewings and hind wings
+46409,homosexual homophile homo gay,someone who is sexually attracted to persons of the same sex
+46410,homosexuality homosexualism homoeroticism queerness gayness,a sexual attraction to (or sexual relations with) persons of the same sex
+46411,homospory,the development of a single kind of asexual spores
+46412,homozygosity,the state of being homozygous; having two identical alleles of the same gene
+46413,homozygote,(genetics) an organism having two identical alleles of a particular gene and so breeding true for the particular characteristic
+46414,homunculus,a tiny fully formed individual that (according to the discredited theory of preformation) is supposed to be present in the sperm cell
+46415,hone,a whetstone made of fine gritstone; used for sharpening razors
+46416,honest_woman,a wife who has married a man with whom she has been living for some time (especially if she is pregnant at the time); "he made an honest woman of her"
+46417,honesty honestness,the quality of being honest
+46418,honesty silver_dollar money_plant satin_flower satinpod Lunaria_annua,southeastern European plant cultivated for its fragrant purplish flowers and round flat papery silver-white seedpods that are used for indoor decoration
+46419,honey,a sweet yellow liquid produced by bees
+46420,honey_bell honeybells Hermannia_verticillata Mahernia_verticillata,African shrub having decumbent stems and slender yellow honey-scented flowers either solitary or in pairs
+46421,honey_bun sticky_bun caramel_bun schnecken,rolled dough spread with sugar and nuts then sliced and baked in muffin tins with honey or sugar and butter in the bottom
+46422,honey_buzzard Pernis_apivorus,Old World hawk that feeds on bee larvae and small rodents and reptiles
+46423,honey_cake,a spicy cake partially sweetened with honey
+46424,honey_crisp,a crisp candy made with honey
+46425,honey_eater honeysucker,Australasian bird with tongue and bill adapted for extracting nectar
+46426,honey_guide,small bird of tropical Africa and Asia; feeds on beeswax and honey and larvae
+46427,honey_locust Gleditsia_triacanthos,tall usually spiny North American tree having small greenish-white flowers in drooping racemes followed by long twisting seed pods; yields very hard durable reddish-brown wood; introduced to temperate Old World
+46428,honey_mesquite Western_honey_mesquite Prosopis_glandulosa,thorny deep-rooted drought-resistant shrub native to southwestern United States and Mexico bearing pods rich in sugar and important as livestock feed; tends to form extensive thickets
+46429,honey_mushroom honey_fungus Armillariella_mellea,a honey-colored edible mushroom commonly associated with the roots of trees in late summer and fall; do not eat raw
+46430,honey_plant,a plant that furnishes nectar suitable for making honey
+46431,honeybee Apis_mellifera,social bee often domesticated for the honey it produces
+46432,honeycomb,a structure of small hexagonal cells constructed from beeswax by bees and used to store honey and larvae
+46433,honeycomb,a framework of hexagonal cells resembling the honeycomb built by bees
+46434,honeycomb_tripe,lining of the reticulum (or second stomach) of a ruminant used as food
+46435,honeycreeper,small bright-colored tropical American songbird with a curved bill for sucking nectar
+46436,honeycreeper Hawaiian_honeycreeper,small to medium-sized finches of the Hawaiian islands
+46437,honeydew honeydew_melon,the fruit of a variety of winter melon vine; a large smooth greenish-white melon with pale green flesh
+46438,honeyflower honey-flower Protea_mellifera,Australian shrub whose flowers yield honey copiously
+46439,honeyflower honey-flower mountain_devil Lambertia_formosa,erect bushy shrub of eastern Australia having terminal clusters of red flowers yielding much nectar
+46440,honeymoon,the early (usually calm and harmonious) period of a relationship; business or political
+46441,honeymoon,a holiday taken by a newly married couple
+46442,honeymoon_resort,a resort that caters to newlyweds; "Niagra Falls is a well-known honeymoon resort"
+46443,honeypot king_protea Protea_cynaroides,South African shrub whose flowers when open are cup-shaped resembling artichokes
+46444,honeysuckle,shrub or vine of the genus Lonicera
+46445,honeysuckle Australian_honeysuckle coast_banksia Banksia_integrifolia,shrubby tree with silky foliage and spikes of cylindrical yellow nectarous flowers
+46446,honk,the cry of a goose (or any sound resembling this)
+46447,honker,a driver who causes his car's horn to make a loud honking sound; "the honker was fined for disturbing the peace"
+46448,honker Canada_goose Canadian_goose Branta_canadensis,common greyish-brown wild goose of North America with a loud, trumpeting call
+46449,honkytonk dive,a cheap disreputable nightclub or dance hall
+46450,honor honour,the quality of being honorable and having a good name; "a man of honor"
+46451,honor honour laurels,the state of being honored
+46452,honor honour purity pureness,a woman's virtue or chastity
+46453,honor_guard guard_of_honor,an escort for a distinguished guest or for the casket at a military funeral
+46454,honor_killing,an ancient tradition still sometimes observed; a male member of the family kills a female relative for tarnishing the family image
+46455,honor_system,a system of conduct in which participants are trusted not to take unfair advantage of others; "the students are on the honor system"
+46456,honorable_discharge,a discharge from the armed forces with a commendable record
+46457,honorableness honourableness,the quality of deserving honor or respect; characterized by honor
+46458,honorarium,a fee paid for a nominally free service
+46459,honorary_degree honoris_causa,a degree conferred to honor the recipient
+46460,honoree,a recipient of honors in recognition of noteworthy accomplishments
+46461,honorific,an expression of respect; "the Japanese use many honorifics"
+46462,honoring observance,conformity with law or custom or practice etc.
+46463,honours honours_degree,a university degree with honors
+46464,hooch hootch,an illicitly distilled (and usually inferior) alcoholic liquor
+46465,hood,(slang) a neighborhood
+46466,hood,(falconry) a leather covering for a hawk's head
+46467,hood,the folding roof of a carriage
+46468,hood,a headdress that protects the head and face
+46469,hood,(zoology) an expandable part or marking that resembles a hood on the head or neck of an animal
+46470,hood bonnet cowl cowling,protective covering consisting of a metal part that covers the engine; "there are powerful engines under the hoods of new cars"; "the mechanic removed the cowling in order to repair the plane's engine"
+46471,hood cap,a protective covering that is part of a plant
+46472,hood exhaust_hood,metal covering leading to a vent that exhausts smoke or fumes
+46473,hood hoodlum goon punk thug tough toughie strong-armer,an aggressive and violent young criminal
+46474,hood lens_hood,a tubular attachment used to keep stray light out of the lens of a camera
+46475,hood_latch,a catch that holds the hood of a car shut
+46476,hood_ornament,an ornament on the front of the hood of a car emblematic of the manufacturer
+46477,hooded_ladies'_tresses Spiranthes_romanzoffiana,orchid having dense clusters of gently spiraling creamy white flowers with 2 upper petals forming a hood; western North America
+46478,hooded_merganser hooded_sheldrake Lophodytes_cucullatus,small North American duck with a high circular crest on the male's head
+46479,hooded_pitcher_plant Sarracenia_minor,yellow-flowered pitcher plant of southeastern United States having trumpet-shaped leaves with the orifice covered with an arched hood
+46480,hooded_seal bladdernose Cystophora_cristata,medium-sized blackish-grey seal with large inflatable sac on the head; of Arctic and northern Atlantic waters
+46481,hooded_skunk Mephitis_macroura,of Mexico and southernmost parts of southwestern United States
+46482,hoodoo,(geology) a column of weathered and unusually shaped rock; "a tall sandstone hoodoo"
+46483,hoodoo,a practitioner of voodoo
+46484,hoodoo,something believed to bring bad luck
+46485,hoof,the horny covering of the end of the foot in ungulate mammals
+46486,hoof,the foot of an ungulate mammal
+46487,hoofer stepper,a professional dancer
+46488,hoofprint hoof_mark hoof-mark,a visible impression on a surface made by the hoof of an animal
+46489,hook,a catch for locking a door
+46490,hook,a curved or bent implement for suspending or pulling something
+46491,hook,a short swinging punch delivered from the side with the elbow bent
+46492,hook claw,a mechanical device that is curved or bent to suspend or hold or pull something
+46493,hook crotchet,a sharp curve or crook; a shape resembling a hook
+46494,hook draw hooking,a golf shot that curves to the left for a right-handed golfer; "he took lessons to cure his hooking"
+46495,hook_and_eye,a kind of fastener used on clothing
+46496,hook_shot hook,a basketball shot made over the head with the hand that is farther from the basket
+46497,hook_wrench hook_spanner,a wrench with a hook that fits over a nut or bolt head
+46498,hookah narghile nargileh sheesha shisha chicha calean kalian water_pipe hubble-bubble hubbly-bubbly,an oriental tobacco pipe with a long flexible tube connected to a container where the smoke is cooled by passing through water; "a bipolar world with the hookah and Turkish coffee versus hamburgers and Coca Cola"
+46499,hooker,a golfer whose shots typically curve left (for right-handed golfers)
+46500,hooker,(rugby) the player in the middle of the front row of the scrum who tries to capture the ball with the foot
+46501,hooks meat_hooks maulers,large strong hand (as of a fighter); "wait till I get my hooks on him"
+46502,hookup,a device providing a connection between a power source and a user; "some campsites have electrical hookups for trailers"
+46503,hookup assemblage,a system of components assembled together for a particular purpose
+46504,hookworm,parasitic bloodsucking roundworms having hooked mouth parts to fasten to the intestinal wall of human and other hosts
+46505,hookworm hookworm_disease,infestation of the intestines by hookworms which enter the body (usually) through the skin
+46506,hoop,a light curved skeleton to spread out a skirt
+46507,hoop ring,a rigid circular band of metal or wood or other material used for holding or fastening or hanging or pulling; "there was still a rusty iron hoop for tying a horse"
+46508,hoop_pine Moreton_Bay_pine Araucaria_cunninghamii,pine of Australia and New Guinea; yields a valuable light even-textured wood
+46509,hoop_snake,any of various harmless North American snakes that were formerly believed to take tail in mouth and roll along like a hoop
+46510,hoopoe hoopoo,any of several crested Old World birds with a slender downward-curved bill
+46511,hoopskirt crinoline,a skirt stiffened with hoops
+46512,hoosegow hoosgow,slang for a jail
+46513,hoot,a loud raucous cry (as of an owl)
+46514,hoot_owl,any owl that hoots as distinct from screeching
+46515,hop,the act of hopping; jumping upward or forward (especially on one foot)
+46516,hop hops,twining perennials having cordate leaves and flowers arranged in conelike spikes; the dried flowers of this plant are used in brewing to add the characteristic bitter taste to beer
+46517,hop record_hop,an informal dance where popular music is played
+46518,hop-picker hopper,a machine used for picking hops
+46519,hop_clover shamrock lesser_yellow_trefoil Trifolium_dubium,clover native to Ireland with yellowish flowers; often considered the true or original shamrock
+46520,hop_garden hop_field,a garden where hops are grown
+46521,hop_hornbeam,any of several trees resembling hornbeams with fruiting clusters resembling hops
+46522,hop_pole,a tall pole to support the wires on which the hop plant is trained
+46523,hope,someone (or something) on which expectations are centered; "he was their best hope for a victory"
+46524,hope,the general feeling that some desire will be fulfilled; "in spite of his troubles he never gave up hope"
+46525,hope,a specific instance of feeling hopeful; "it revived their hope of winning the pennant"
+46526,hope,one of the three Christian virtues
+46527,hope_chest wedding_chest,chest for storage of clothing (trousseau) and household goods in anticipation of marriage
+46528,hopefulness,full of hope
+46529,hopefulness,the feeling you have when you have hope
+46530,hopelessness,the despair you feel when you have abandoned hope of comfort or success
+46531,hoper,a person who hopes; "only an avid hoper could expect the team to win now"
+46532,hopper,someone who hops; "at hopscotch, the best hoppers are the children"
+46533,hopper,funnel-shaped receptacle; contents pass by gravity into a receptacle below
+46534,hopsacking hopsack,a loosely woven coarse fabric of cotton or linen; used in clothing
+46535,hopscotch,a game in which a child tosses a stone into an area drawn on the ground and then hops through it and back to regain the stone
+46536,horde,a nomadic community
+46537,horde host legion,a vast multitude
+46538,horehound,any of various aromatic herbs of the genus Marrubium
+46539,horehound,a candy that is flavored with an extract of the horehound plant
+46540,horizon,a specific layer or stratum of soil or subsoil in a vertical cross section of land
+46541,horizon apparent_horizon visible_horizon sensible_horizon skyline,the line at which the sky and Earth appear to meet
+46542,horizon celestial_horizon,the great circle on the celestial sphere whose plane passes through the sensible horizon and the center of the Earth
+46543,horizon view purview,the range of interest or activity that can be anticipated; "It is beyond the horizon of present knowledge"
+46544,horizontal,something that is oriented horizontally
+46545,horizontal_bar high_bar,gymnastic apparatus consisting of a bar supported in a horizontal position by uprights at both ends
+46546,horizontal_integration horizontal_combination,absorption into a single firm of several firms involved in the same level of production and sharing resources at that level
+46547,horizontal_parallax,the maximum parallax observed when the celestial body is at the horizon
+46548,horizontal_section,a mechanical drawing of an object as if made by a plane cutting through it horizontally
+46549,horizontal_stabilizer horizontal_stabiliser tailplane,the horizontal airfoil of an aircraft's tail assembly that is fixed and to which the elevator is hinged
+46550,horizontal_surface level,a flat surface at right angles to a plumb line; "park the car on the level"
+46551,horizontal_tail,the horizontal stabilizer and elevator in the tail assembly of an aircraft
+46552,horizontality,the quality of being parallel to the horizon; "houses with a pronounced horizontality"
+46553,hormone endocrine internal_secretion,the secretion of an endocrine gland that is transmitted by the blood to the tissue on which it has a specific effect
+46554,hormone_replacement_therapy hormone-replacement_therapy HRT,hormones (estrogen and progestin) are given to postmenopausal women; believed to protect them from heart disease and osteoporosis
+46555,horn,the material (mostly keratin) that covers the horns of ungulates and forms hooves and claws and nails
+46556,horn,a noise made by the driver of an automobile to give warning
+46557,horn,a device having the shape of a horn; "horns at the ends of a new moon"; "the horn of an anvil"; "the cleat had two horns"
+46558,horn,a noisemaker (as at parties or games) that makes a loud noise when you blow through it
+46559,horn,an alarm device that makes a loud warning sound
+46560,horn,any hard protuberance from the head of an organism that is similar to or suggestive of a horn
+46561,horn,one of the bony outgrowths on the heads of certain ungulates
+46562,horn saddle_horn,a high pommel of a Western saddle (usually metal covered with leather)
+46563,horn_button,a button that you press to activate the horn of an automobile
+46564,horn_fly Haematobia_irritans,small black European fly introduced into North America; sucks blood from cattle especially at the base of the horn
+46565,horn_of_plenty cornucopia,a goat's horn filled with grain and flowers and fruit symbolizing prosperity
+46566,horn_poppy horned_poppy yellow_horned_poppy sea_poppy Glaucium_flavum,yellow-flowered Eurasian glaucous herb naturalized in along sandy shores in eastern North America
+46567,hornbeam,any of several trees or shrubs of the genus Carpinus
+46568,hornbill,bird of tropical Africa and Asia having a very large bill surmounted by a bony protuberance; related to kingfishers
+46569,hornblende,a green to black mineral of the amphibole group; consists of silicates of calcium and sodium and magnesium and iron
+46570,hornbook,a primer that provides instruction in the rudiments or basic skills of a branch of knowledge
+46571,horned_chameleon Chamaeleo_oweni,a kind of chameleon
+46572,horned_lizard horned_toad horny_frog,insectivorous lizard with hornlike spines on the head and spiny scales on the body; of western North America
+46573,horned_owl,large owls having prominent ear tufts
+46574,horned_pondweed Zannichellia_palustris,found in still or slow-moving fresh or brackish water; useful to oxygenate cool water ponds and aquaria
+46575,horned_pout hornpout pout Ameiurus_Melas,catfish common in eastern United States
+46576,horned_puffin Fratercula_corniculata,northern Pacific puffin
+46577,horned_screamer Anhima_cornuta,screamer having a hornlike process projecting from the forehead
+46578,horned_violet tufted_pansy Viola_cornuta,European viola with an unusually long corolla spur
+46579,horned_viper cerastes sand_viper horned_asp Cerastes_cornutus,highly venomous viper of northern Africa and southwestern Asia having a horny spine above each eye
+46580,horned_whiff Citharichthys_cornutus,a whiff found in waters from the Bahamas and northern Gulf of Mexico to Brazil
+46581,hornet,large stinging paper wasp
+46582,hornet's_nest hornets'_nest,a highly contentious or hazardous situation; "talk of invading Iraq stirred up a political hornets' nest"
+46583,hornfels hornstone,a fine-grained metamorphic rock formed by the action of heat on clay rocks
+46584,horniness hotness hot_pants,a state of sexual arousal
+46585,hornist,a musician who plays a horn (especially a French horn)
+46586,hornpipe,music for dancing the hornpipe
+46587,hornpipe,a British solo dance performed by sailors
+46588,hornpipe pibgorn stockhorn,an ancient (now obsolete) single-reed woodwind; usually made of bone
+46589,hornwort,any aquatic plant of the genus Ceratophyllum; forms submerged masses in ponds and slow-flowing streams
+46590,hornwort,liverworts with slender hornlike capsules
+46591,horny_structure unguis,any rigid body structure composed primarily of keratin
+46592,horology,the art of designing and making clocks
+46593,horoscope,a prediction of someone's future based on the relative positions of the planets
+46594,horoscope,a diagram of the positions of the planets and signs of the zodiac at a particular time and place
+46595,horoscopy,the drawing up and interpretation of horoscopes
+46596,horror,intense and profound fear
+46597,horror,something that inspires horror; something horrible; "the painting that others found so beautiful was a horror to him"
+46598,hors_d'oeuvre,a dish served as an appetizer before the main meal
+46599,horse Equus_caballus,solid-hoofed herbivorous quadruped domesticated since prehistoric times
+46600,horse gymnastic_horse,a padded gymnastic apparatus on legs
+46601,horse's_foot,the hoof of a horse
+46602,horse-drawn_vehicle,a wheeled vehicle drawn by one or more horses
+46603,horse-trail,a trail for horses
+46604,horse_balm horseweed stoneroot stone-root richweed stone_root Collinsonia_canadensis,erect perennial strong-scented with serrate pointed leaves and a loose panicle of yellowish flowers; the eastern United States
+46605,horse_botfly Gasterophilus_intestinalis,parasitic chiefly on horses
+46606,horse_breeding,breeding horses
+46607,horse_cart horse-cart,heavy cart; drawn by a horse; used for farm work
+46608,horse_cassia Cassia_roxburghii Cassia_marginata,East Indian tree having long pods containing a black cathartic pulp used as a horse medicine
+46609,horse_cavalry,an army unit mounted on horseback
+46610,horse_chestnut buckeye Aesculus_hippocastanum,tree having palmate leaves and large clusters of white to red flowers followed by brown shiny inedible seeds
+46611,horse_doctor,a veterinarian who treats horses
+46612,horse_gram horse_grain poor_man's_pulse Macrotyloma_uniflorum Dolichos_biflorus,twining herb of Old World tropics cultivated in India for food and fodder; sometimes placed in genus Dolichos
+46613,horse_latitude,either of two belts or regions near 30 degrees north or 30 degrees south; characterized by calms and light-baffling winds
+46614,horse_mackerel jack_mackerel Spanish_mackerel saurel Trachurus_symmetricus,a California food fish
+46615,horse_mackerel saurel Trachurus_trachurus,large elongated compressed food fish of the Atlantic waters of Europe
+46616,horse_manure,horse excreta used as fertilizer
+46617,horse_mushroom Agaricus_arvensis,coarse edible mushroom with a hollow stem and a broad white cap
+46618,horse_nettle ball_nettle bull_nettle ball_nightshade Solanum_carolinense,coarse prickly weed having pale yellow flowers and yellow berrylike fruit; common throughout southern and eastern United States
+46619,horse_pistol horse-pistol,a large pistol (usually in a holster) formerly carried by horsemen
+46620,horse_race,a contest of speed between horses; usually held for the purpose of betting
+46621,horse_racing,the sport of racing horses
+46622,horse_tick horsefly Hippobosca_equina,winged fly parasitic on horses
+46623,horse_trade horse_trading,the swapping of horses (accompanied by much bargaining)
+46624,horse_trader,a hard bargainer
+46625,horse_trading,negotiation accompanied by mutual concessions and shrewd bargaining
+46626,horse_wrangler wrangler,a cowboy who takes care of the saddle horses
+46627,horseback,the back of a horse
+46628,horsebox,a conveyance (railroad car or trailer) for transporting racehorses
+46629,horsecar,an early form of streetcar that was drawn by horses
+46630,horsecloth,a cloth for the trapping of a horse
+46631,horsefly cleg clegg horse_fly,large swift fly the female of which sucks blood of various animals
+46632,horsehair,hair taken from the mane or tail of a horse
+46633,horsehair,a fabric made from fibers taken from the mane or tail of horses; used for upholstery
+46634,horsehair_lichen horsetail_lichen,any of several lichens of the genus Alectoria having a thallus consisting of filaments resembling hair
+46635,horsehair_wig,a wig made of horsehair; "the English judiciary wear their traditional horsehair wigs"
+46636,horsehide,leather from the hide of a horse
+46637,horseleech,any of several large freshwater leeches
+46638,horseless_carriage,an early term for an automobile; "when automobiles first replaced horse-drawn carriages they were called horseless carriages"
+46639,horseman equestrian horseback_rider,a man skilled in equitation
+46640,horseman horse_fancier,a person who breeds and cares for horses
+46641,horsemanship,skill in handling and riding horses
+46642,horsemeat horseflesh,the flesh of horses as food
+46643,horsemint Mentha_longifolia,a coarse Old World wild water mint having long leaves and spikelike clusters of flowers; naturalized in the eastern United States
+46644,horsemint Monarda_punctata,tall erect perennial or annual having lanceolate leaves and heads of purple-spotted creamy flowers; many subspecies grown from eastern to southwestern United States and in Mexico
+46645,horseplay,rowdy or boisterous play
+46646,horsepond,a pond for watering horses
+46647,horsepower HP H.P.,a unit of power equal to 746 watts
+46648,horsepower-hour,a unit of work equal to the work done by one horsepower in one hour
+46649,horseradish,grated horseradish root
+46650,horseradish horse_radish red_cole Armoracia_rusticana,coarse Eurasian plant cultivated for its thick white pungent root
+46651,horseradish horseradish_root,the root of the horseradish plant; it is grated or ground and used for seasoning
+46652,horseradish_peroxidase,an enzyme used in immunohistochemistry to label antigens and their antibodies
+46653,horseradish_sauce sauce_Albert,creamy white sauce with horseradish and mustard
+46654,horseshoe,game equipment consisting of an open ring of iron used in playing horseshoes
+46655,horseshoe shoe,U-shaped plate nailed to underside of horse's hoof
+46656,horseshoe_bat,any of numerous bats of the family Hipposideridae of northwest Africa or Philippines or Australia having a horseshoe-shaped leaf on the nose
+46657,horseshoe_bat,a bat of the family Rhinolophidae having a horseshoe-shaped leaf on the nose
+46658,horseshoe_crab king_crab Limulus_polyphemus Xiphosurus_polyphemus,large marine arthropod of the Atlantic coast of North America having a domed carapace that is shaped like a horseshoe and a stiff pointed tail; a living fossil related to the wood louse
+46659,horseshoe_vetch Hippocrepis_comosa,European woody perennial with yellow umbellate flowers followed by flattened pods that separate into horseshoe-shaped joints
+46660,horseshoe_whipsnake Coluber_hippocrepis,slender fast-moving Eurasian snake
+46661,horseshow,a competitive exhibition of horses
+46662,horsetail,perennial rushlike flowerless herbs with jointed hollow stems and narrow toothlike leaves that spread by creeping rhizomes; tend to become weedy; common in northern hemisphere; some in Africa and South America
+46663,horseweed Canadian_fleabane fleabane Conyza_canadensis Erigeron_canadensis,common North American weed with linear leaves and small discoid heads of yellowish flowers; widely naturalized throughout temperate regions; sometimes placed in genus Erigeron
+46664,horsewhip,a whip for controlling horses
+46665,horsewhipping,the act of whipping with a horsewhip; "that villain needs a good horsewhipping"
+46666,horsewoman,a woman horseman
+46667,horst,a ridge of the earth's crust that has been forced upward between two faults and so is higher than the surrounding land
+46668,horsy_set horsey_set,a set of people sharing a devotion to horses and horseback riding and horse racing
+46669,hortensia Hydrangea_macrophylla_hortensis,deciduous shrub bearing roundheaded flower clusters opening green and aging to pink or blue
+46670,horticulturist plantsman,an expert in the science of cultivating plants (fruit or flowers or vegetables or ornamental plants)
+46671,hosanna,a cry of praise or adoration (to God)
+46672,hose,man's close-fitting garment of the 16th and 17th centuries covering the legs and reaching up to the waist; worn with a doublet
+46673,hose hosepipe,a flexible pipe for conveying a liquid or gas
+46674,hosier,a tradesman who sells hosiery and (in England) knitwear
+46675,hosiery hose,socks and stockings and tights collectively (the British include underwear)
+46676,hospice,a lodging for travelers (especially one kept by a monastic order)
+46677,hospice,a program of medical and emotional care for the terminally ill
+46678,hospitableness,having a disposition that welcomes guests and is fond of entertaining
+46679,hospital,a medical institution where sick or injured people are given medical or surgical care
+46680,hospital infirmary,a health facility where patients receive treatment
+46681,hospital_bed,a single bed with a frame in three sections so the head or middle or foot can be raised as required
+46682,hospital_chaplain,a chaplain in a hospital
+46683,hospital_occupancy,occupancy rate for hospitals
+46684,hospital_room,a room in a hospital for the care of patients
+46685,hospital_ship,a ship built to serve as a hospital; used for wounded in wartime
+46686,hospital_train,a military train built to transport wounded troops to a hospital
+46687,hospitalization,a period of time when you are confined to a hospital; "now they try to shorten the patient's hospitalization"
+46688,hospitalization,the condition of being treated as a patient in a hospital; "he hoped to avoid the expense of hospitalization"
+46689,hospitalization hospitalisation hospital_care,placing in medical care in a hospital
+46690,hospitalization_insurance hospitalization,insurance that pays all or part of a patient's hospital expense
+46691,host,(medicine) recipient of transplanted tissue or organ from a donor
+46692,host,a person who invites guests to a social event (such as a party in his or her own home) and who is responsible for them while they are there
+46693,host,any organization that provides resources and facilities for a function or event; "Atlanta was chosen to be host for the Olympic Games"
+46694,host,an animal or plant that nourishes and supports a parasite; it does not benefit and is often harmed by the association
+46695,host innkeeper boniface,the owner or manager of an inn
+46696,host legion,archaic terms for army
+46697,hostage surety,a prisoner who is held by one party to insure that another party will meet specified terms
+46698,hostel hostelry inn lodge auberge,a hotel providing overnight lodging for travelers
+46699,hostel youth_hostel student_lodging,inexpensive supervised lodging (especially for youths on bicycling trips)
+46700,hosteller,a traveler who lodges in hostels; "a youth hosteller"
+46701,hostess,a woman host
+46702,hostess,a woman innkeeper
+46703,hostile,troops belonging to the enemy's military forces; "the platoon ran into a pack of hostiles"
+46704,hostile_fire,fire that injures or kills an enemy
+46705,hostile_takeover,a takeover that is resisted by the management of the target company
+46706,hostilities belligerency,fighting; acts of overt warfare; "the outbreak of hostilities"
+46707,hostility enmity antagonism,a state of deep-seated ill-will
+46708,hostility enmity ill_will,the feeling of a hostile person; "he could no longer contain his hostility"
+46709,hostility ill_will,a hostile (very unfriendly) disposition; "he could not conceal his hostility"
+46710,hot-air_balloon,balloon for travel through the air in a basket suspended below a large bag of heated air
+46711,hot-fudge_sauce fudge_sauce,thick chocolate sauce served hot
+46712,hot-rock_penstemon Penstemon_deustus,stems in clumps with cream-colored flowers; found from Washington to Wyoming and southward to California and Utah
+46713,hot-water_bottle hot-water_bag,a stoppered receptacle (usually made of rubber) that is to be filled with hot water and used for warming a bed or parts of the body
+46714,hot_air,air that has been heated and tends to rise
+46715,hot_cereal,a cereal that is served hot
+46716,hot_flash flush,sudden brief sensation of heat (associated with menopause and some mental disorders)
+46717,hot_jazz,jazz that is emotionally charged and intense and marked by strong rhythms and improvisation
+46718,hot_line,a direct telephone line between two officials
+46719,hot_medium,a medium that usually, but not always, provides complete involvement together without considerable stimulus; includes radio, film, photography
+46720,hot_pants,skin-tight very short pants worn by young women as an outer garment
+46721,hot_pepper,any of various pungent capsicum fruits
+46722,hot_plate hotplate,a portable electric appliance for heating or cooking or keeping food warm
+46723,hot_pot hotpot,a stew of meat and potatoes cooked in a tightly covered pot
+46724,hot_potato,a difficult situation; "he dropped the topic like a hot potato"
+46725,hot_rod hot-rod,a car modified to increase its speed and acceleration
+46726,hot_sauce,a pungent peppery sauce
+46727,hot_seat,a difficult position where you are subjected to stress and criticism
+46728,hot_spell,a spell of hot weather
+46729,hot_spot hotspot,a point of relatively intense heat or radiation
+46730,hot_spot hotspot,a lively entertainment spot
+46731,hot_spot hotspot trouble_spot flashpoint,a place of political unrest and potential violence; "the United States cannot police all of the world's hot spots"
+46732,hot_spring thermal_spring,a natural spring of water at a temperature of 70 F or above
+46733,hot_stock hot_issue,newly issued stock that is in great public demand
+46734,hot_stuff,the quality of being popular; "skiing is hot stuff in New Hampshire"
+46735,hot_stuff voluptuousness,the quality of being attractive and exciting (especially sexually exciting); "he thought she was really hot stuff"
+46736,hot_toddy toddy,a mixed drink made of liquor and water with sugar and spices and served hot
+46737,hot_tub,a very large tub (large enough for more than one bather) filled with hot water
+46738,hot_war,actual fighting between the warring parties
+46739,hot_water,a dangerous or distressing predicament; "his views on race got him into political hot water"
+46740,hot_weather,a period of unusually high temperatures
+46741,hotbed,a situation that is ideal for rapid development (especially of something bad); "it was a hotbed of vice"
+46742,hotbed,a bed of earth covered with glass and heated by rotting manure to promote the growth of plants
+46743,hotbox,a journal bearing (as of a railroad car) that has overheated
+46744,hotchpotch,a stew (or thick soup) made with meat and vegetables
+46745,hotdog hot_dog,someone who performs dangerous stunts to attract attention to himself
+46746,hotdog hot_dog red_hot,a frankfurter served hot on a bun
+46747,hotel,a building where travelers can pay for lodging and meals and other services
+46748,hotel-casino casino-hotel,a business establishment that combines a casino and a hotel
+46749,hotel-casino casino-hotel,a building that houses both a hotel and a casino
+46750,hotel_bill,statement of charges for staying in a hotel
+46751,hotel_detective house_detective house_dick,a private detective employed by a hotel or retail store
+46752,hotel_occupancy,occupancy rate for hotels
+46753,hotel_plan meal_plan,a plan and a room rate for providing a room and meals to guests at a hotel
+46754,hotel_room,a bedroom (usually with bath) in a hotel
+46755,hotelier hotelkeeper hotel_manager hotelman hosteller,an owner or manager of hotels
+46756,hotfoot,a practical joke that involves inserting a match surreptitiously between the sole and upper of the victim's shoe and then lighting it
+46757,hotness heat high_temperature,the presence of heat
+46758,hotness pepperiness,a hot spiciness
+46759,hotspur,a rash or impetuous person
+46760,hound hound_dog,any of several breeds of dog used for hunting typically having large drooping ears
+46761,hound's-tongue Cynoglossum_officinale,biennial shrub of Europe and western Asia having coarse tongue-shaped leaves and dark reddish-purple flowers
+46762,hound's-tongue Cynoglossum_virginaticum,perennial shrub of North America having coarse tongue-shaped leaves and pale-blue to purple flowers
+46763,houndstooth_check hound's-tooth_check dogstooth_check dogs-tooth_check dog's-tooth_check,textile with a pattern of small broken or jagged checks
+46764,hour,a special and memorable period; "it was their finest hour"
+46765,hour hr 60_minutes,a period of time equal to 1/24th of a day; "the job will take more than an hour"
+46766,hour minute,distance measured by the time taken to cover it; "we live an hour from the airport"; "its just 10 minutes away"
+46767,hour time_of_day,clock time; "the hour is getting late"
+46768,hour_angle,the angular distance along the celestial equator from the observer's meridian to the hour circle of a given celestial body
+46769,hour_angle HA,(astronomy) the angular distance of a celestial point measured westward along the celestial equator from the zenith crossing; the right ascension for an observer at a particular location and time of day
+46770,hour_circle,a great circle on the celestial sphere that passes through both celestial poles
+46771,hour_hand little_hand,the shorter hand of a clock that points to the hours
+46772,hourglass,a sandglass that runs for sixty minutes
+46773,houri,(Islam) one of the dark-eyed virgins of perfect beauty believed to live with the blessed in Paradise
+46774,hours,a period of time assigned for work; "they work long hours"
+46775,hours,an indefinite period of time; "they talked for hours"
+46776,house,the management of a gambling house or casino; "the house gets a percentage of every bet"
+46777,house,the members of a religious community living together
+46778,house,the audience gathered together in a theatre or cinema; "the house applauded"; "he counted the house"
+46779,house,an official assembly having legislative powers; "a bicameral legislature has two houses"
+46780,house,aristocratic family line; "the House of York"
+46781,house,a building in which something is sheltered or located; "they had a large carriage house"
+46782,house,a dwelling that serves as living quarters for one or more families; "he has a house on Cape Cod"; "she felt she had to get out of the house"
+46783,house,play in which children take the roles of father or mother or children and pretend to interact like adults; "the children were playing house"
+46784,house-raising,construction by a group of neighbors
+46785,house_arrest,confinement to your own home
+46786,house_centipede Scutigera_coleoptrata,long-legged centipede common in damp places as e.g. cellars
+46787,house_finch linnet Carpodacus_mexicanus,small finch originally of the western United States and Mexico
+46788,house_guest houseguest,a guest entertained in your house
+46789,house_husband househusband,a husband who keeps house while his wife earns the family income
+46790,house_martin Delichon_urbica,common small European martin that builds nests under the eaves of houses
+46791,house_mouse Mus_musculus,brownish-grey Old World mouse now a common household pest worldwide
+46792,house_of_cards bubble,a speculative scheme that depends on unstable factors that the planner cannot control; "his proposal was nothing but a house of cards"; "a real estate bubble"
+46793,house_of_cards cardhouse card-house cardcastle,an unstable construction with playing cards; "he built three levels of his cardcastle before it collapsed"
+46794,house_of_correction,(formerly) a jail or other place of detention for persons convicted of minor offences
+46795,house_organ,a periodical published by a business firm for its employees and customers
+46796,house_paint housepaint,paint used to cover the exterior woodwork of a house
+46797,house_painter,a painter of houses a similar buildings
+46798,house_party,a party lasting over one or more nights at a large house
+46799,house_physician resident resident_physician,a physician (especially an intern) who lives in a hospital and cares for hospitalized patients under the supervision of the medical staff of the hospital; "the resident was receiving special clinical training at the hospital"
+46800,house_sitter,a custodian who lives in and cares for a house while the regular occupant is away (usually without an exchange of money)
+46801,house_wren Troglodytes_aedon,common American wren that nests around houses
+46802,houseboat,a barge that is designed and equipped for use as a dwelling
+46803,housebreaker cat_burglar,a burglar who unlawfully breaks into and enters another person's house
+46804,housebreaking break-in breaking_and_entering,trespassing for an unlawful purpose; illegal entrance into premises with criminal intent
+46805,housecleaning,(figurative) the act of reforming by the removal of unwanted personnel or practices or conditions; "more housecleaning is in store at other accounting firms"; "many employees were discharged in a general housecleaning by the new owners"
+46806,housecleaning,the act of cleaning the rooms and furnishings of a house; "efficient housecleaning should proceed one room at a time"
+46807,housecraft,skill in domestic management
+46808,housedog,a dog trained to guard a house
+46809,housefather,a man in charge of children in an institution
+46810,housefly house_fly Musca_domestica,common fly that frequents human habitations and spreads many diseases
+46811,houseful,as many as a house will accommodate; "they entertained a houseful of guests"
+46812,housekeeper,a servant who is employed to perform domestic task in a household
+46813,houselights,lights that illuminate the audience's part of a theater or other auditorium
+46814,housemaid's_knee,swelling of the bursa in the knee (due to trauma or excessive kneeling)
+46815,housemaster,teacher in charge of a school boardinghouse
+46816,housemate,someone who resides in the same house with you
+46817,housemother,a woman employed as a chaperon in a residence for young people
+46818,houseplant,any of a variety of plants grown indoors for decorative purposes
+46819,houseroom,space for accommodation in a house; "I wouldn't give that table houseroom"
+46820,housetop,the roof of a house; "shout it from the housetops"
+46821,housewarming,a party of people assembled to celebrate moving into a new home
+46822,housewife homemaker lady_of_the_house woman_of_the_house,a wife who manages a household while her husband earns the family income
+46823,housewifery,the work of a housewife
+46824,housework housekeeping,the work of cleaning and running a house
+46825,housewrecker housebreaker,a wrecker of houses; "in England a housewrecker is called a housebreaker"
+46826,housing,a protective cover designed to contain or support a mechanical component
+46827,housing lodging living_accommodations,structures collectively in which people are housed
+46828,housing_commissioner,a commissioner in charge of public housing
+46829,housing_development,a residential area of similar dwellings built by property developers and usually under a single management; "they live in the new housing development"
+46830,housing_estate,a residential area where the houses were all planned and built at the same time
+46831,housing_project public_housing,a housing development that is publicly funded and administered for low-income families
+46832,housing_start,the act of starting to construct a house
+46833,hovea purple_pea,any of several attractive evergreen shrubs of Australia grown for their glossy deep green foliage and flowers in rich blues and intense violets
+46834,hovel hut hutch shack shanty,small crude shelter used as a dwelling
+46835,hovercraft ground-effect_machine,a craft capable of moving over water or land on a cushion of air created by jet engines
+46836,how-do-you-do how-d'ye-do,an awkward situation; "that's a fine how-d'ye-do"
+46837,howdah houdah,a (usually canopied) seat for riding on the back of a camel or elephant
+46838,howl,the long plaintive cry of a hound or a wolf
+46839,howl,a loud sustained noise resembling the cry of a hound; "the howl of the wind made him restless"
+46840,howl howling ululation,a long loud emotional utterance; "he gave a howl of pain"; "howls of laughter"; "their howling had no effect"
+46841,howler,a glaring blunder
+46842,howler_monkey howler,monkey of tropical South American forests having a loud howling cry
+46843,hoya,any plant of the genus Hoya having fleshy leaves and usually nectariferous flowers
+46844,hoydenism tomboyishness,masculinity in women (especially in girls and young women)
+46845,hryvnia,the basic unit of money in Ukraine
+46846,huarache huaraches,a sandal with flat heels and an upper of woven leather straps
+46847,hub,a center of activity or interest or commerce or transportation; a focal point around which events revolve; "the playground is the hub of parental supervision"; "the airport is the economic hub of the area"
+46848,hub,the central part of a car wheel (or fan or propeller etc) through which the shaft or axle passes
+46849,hub-and-spoke hub-and-spoke_system,a system of air transportation in which local airports offer air transportation to a central airport where long-distance flights are available
+46850,hubbard_squash,large football-shaped winter squash with a warty grey-green rind
+46851,hubbard_squash Cucurbita_maxima,any of several winter squash plants producing large greyish-green football-shaped fruit with a rough warty rind
+46852,hubbub uproar brouhaha katzenjammer,loud confused noise from many sources
+46853,hubcap,cap that fits over the hub of a wheel
+46854,hubris,overbearing pride or presumption
+46855,huck huckaback,toweling consisting of coarse absorbent cotton or linen fabric
+46856,huckleberry,any of various dark-fruited as distinguished from blue-fruited blueberries
+46857,huckleberry,any of several shrubs of the genus Gaylussacia bearing small berries resembling blueberries
+46858,huckleberry,blue-black berry similar to blueberries and bilberries of the eastern United States
+46859,huckleberry_oak Quercus_vaccinifolia,a low spreading or prostrate shrub of southwestern United States with small acorns and leaves resembling those of the huckleberry
+46860,huckster,a person who writes radio or tv advertisements
+46861,huckster cheap-jack,a seller of shoddy goods
+46862,huddle,a disorganized and densely packed crowd; "a huddle of frightened women"
+46863,huddle powwow,(informal) a quick private conference
+46864,huddler,a member of a huddle
+46865,huddler,a person who crouches; "low huddlers against the wind"
+46866,hudson_seal,muskrat fur dressed to simulate sealskin
+46867,hudud hudood,Islamic laws stating the limits ordained by Allah and including the deterrent punishments for serious crimes
+46868,hue chromaticity,the quality of a color as determined by its dominant wavelength
+46869,huff miff seeing_red,a state of irritation or annoyance
+46870,huffiness,a passing state of anger and resentment
+46871,hug clinch squeeze,a tight or amorous embrace; "come here and give me a big hug"
+46872,hug-me-tight,a woman's fitted jacket
+46873,hugger,a person who hugs
+46874,hugger-mugger,a state of confusion; "he engaged in the hugger-mugger of international finance"
+46875,huisache cassie mimosa_bush sweet_wattle sweet_acacia scented_wattle flame_tree Acacia_farnesiana,tropical American thorny shrub or small tree; fragrant yellow flowers used in making perfumery
+46876,huitre oyster,edible body of any of numerous oysters
+46877,hula hula-hula Hawaiian_dancing,a Polynesian rain dance performed by a woman
+46878,hula-hoop,plaything consisting of a tubular plastic hoop for swinging around the hips
+46879,hulk,a ship that has been wrecked and abandoned
+46880,hull,dry outer covering of a fruit or seed or nut
+46881,hull,persistent enlarged calyx at base of e.g. a strawberry or raspberry
+46882,hull,the frame or body of ship
+46883,hum humming,a humming noise; "the hum of distant traffic"
+46884,human_T-cell_leukemia_virus-1 HTLV-1,retrovirus causing T-cell leukemia
+46885,human_body physical_body material_body soma build figure physique anatomy shape bod chassis frame form flesh,alternative names for the body of a human being; "Leonardo studied the human body"; "he has a strong physique"; "the spirit is willing but the flesh is weak"
+46886,human_botfly Dermatobia_hominis,large tropical American fly; parasitic on humans and other mammals
+46887,human_chorionic_gonadotropin human_chorionic_gonadotrophin HCG,hormone produced early in pregnancy by the placenta; detection in the urine and serum is the basis for one kind of pregnancy test
+46888,human_head,the head of a human being
+46889,human_immunodeficiency_virus HIV,the virus that causes acquired immune deficiency syndrome (AIDS); it replicates in and kills the helper T cells
+46890,human_nature,the shared psychological attributes of humankind that are assumed to be shared by all human beings; "a great observer of human nature"
+46891,human_papilloma_virus,any of a group of papovaviruses associated with genital or oral carcinomas or a group associated with benign genital tumors
+46892,human_process,a process in which human beings are involved
+46893,human_reproductive_cloning,the reproductive cloning of a sentient human being; generally considered ethically unacceptable
+46894,human_right,(law) any basic right or freedom to which all human beings are entitled and in whose exercise a government may not interfere (including rights to life and liberty as well as freedom of thought and expression and equality before the law)
+46895,human_waste,the body wastes of human beings
+46896,humaneness,the quality of compassion or consideration for others (people or animals)
+46897,humanism,the cultural movement of the Renaissance; based on classical studies
+46898,humanism secular_humanism,the doctrine emphasizing a person's capacity for self-realization through reason; rejects religion and the supernatural
+46899,humanist,a classical scholar or student of the liberal arts
+46900,humanist humanitarian,an advocate of the principles of humanism; someone concerned with the interests and welfare of humans
+46901,humanistic_discipline humanities liberal_arts arts,studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills); "the college of arts and sciences"
+46902,humanitarian do-gooder improver,someone devoted to the promotion of human welfare and to social reforms
+46903,humanitarianism humanism,the doctrine that people's duty is to promote human welfare
+46904,humanity,the quality of being humane
+46905,humanization humanisation,the act of making more human
+46906,humanness humanity manhood,the quality of being human; "he feared the speedy decline of all manhood"
+46907,humate,material that is high in humic acids
+46908,humbleness unimportance obscureness lowliness,the state of being humble and unimportant
+46909,humbug snake_oil,communication (written or spoken) intended to deceive
+46910,humdinger,someone of remarkable excellence; "a humdinger of a secretary"
+46911,humectant,any substance that is added to another substance to keep it moist
+46912,humeral_veil veil,a vestment worn by a priest at High Mass in the Roman Catholic Church; a silk shawl
+46913,humerus,bone extending from the shoulder to the elbow
+46914,humic_acid,a dark brown humic substance that is soluble in water only at pH values greater than 2; "the half-life of humic acid is measured in centuries"
+46915,humic_shale,shale that is rich in humic acids
+46916,humic_substance,an organic residue of decaying organic matter
+46917,humidifier,an appliance designed to add moisture to the air in a building; "The humidifier assures the appropriate moisture level for our paintings"
+46918,humidity humidness,wetness in the atmosphere
+46919,humification,the process of the formation of humus from plant remains
+46920,humiliation,state of disgrace or loss of self-respect
+46921,humiliation abasement,depriving one of self-esteem
+46922,humiliation mortification,an instance in which you are caused to lose your prestige or self-respect; "he had to undergo one humiliation after another"
+46923,humility humbleness,a humble feeling; "he was filled with humility at the sight of the Pope"
+46924,humility humbleness,a disposition to be humble; a lack of false pride; "not everyone regards humility as a virtue"
+46925,humin,a black humic substance that is not soluble in water
+46926,hummer,a singer who produces a tune without opening the lips or forming words
+46927,humming,the act of singing with closed lips
+46928,humming_top,a top that makes a humming noise as it spins
+46929,hummingbird,tiny American bird having brilliant iridescent plumage and long slender bills; wings are specialized for vibrating flight
+46930,hummus humus hommos hoummos humous,a thick spread made from mashed chickpeas, tahini, lemon juice and garlic; used especially as a dip for pita; originated in the Middle East
+46931,humor humour,(Middle Ages) one of the four fluids in the body whose balance was believed to determine your emotional and physical state; "the humors are blood and phlegm and yellow and black bile"
+46932,humor humour,the quality of being funny; "I fail to see the humor in it"
+46933,humor humour sense_of_humor sense_of_humour,the trait of appreciating (and being able to express) the humorous; "she didn't appreciate my humor"; "you can't survive in the army without a sense of humor"
+46934,humoral_immune_response,an immune response (chiefly against bacterial invasion) that is mediated by B cells
+46935,humorist humourist,someone who acts speaks or writes in an amusing way
+46936,humpback humpback_whale Megaptera_novaeangliae,large whalebone whale with long flippers noted for arching or humping its back as it dives
+46937,humpback hunchback crookback,a person whose back is hunched because of abnormal curvature of the upper spine
+46938,humus,partially decomposed organic matter; the organic component of soil
+46939,hunch,the act of bending yourself into a humped position
+46940,hundred 100 C century one_C,ten 10s
+46941,hundred_dollar_bill c-note,a United States bill worth 100 dollars
+46942,hundred_thousand 100000 lakh,the cardinal number that is the fifth power of ten
+46943,hundredth,position 100 in a countable series of things
+46944,hundredweight cwt long_hundredweight,a British unit of weight equivalent to 112 pounds
+46945,hundredweight cwt short_hundredweight centner cental quintal,a United States unit of weight equivalent to 100 pounds
+46946,hundredweight metric_hundredweight doppelzentner centner,a unit of weight equal to 100 kilograms
+46947,hung_jury,a jury that is unable to agree on a verdict (the result is a mistrial)
+46948,hunger hungriness,a physiological need for food; the consequence of food deprivation
+46949,hunger hungriness thirst thirstiness,strong desire for something (not food or drink); "a thirst for knowledge"; "hunger for affection"
+46950,hunger_march,a march of protest or demonstration by the unemployed
+46951,hunger_marcher,an unemployed person who participates in a hunger march
+46952,hunger_strike,a voluntary fast undertaken as a means of protest
+46953,hunk,a well-built sexually attractive man
+46954,hunk lump,a large piece of something without definite shape; "a hunk of bread"; "a lump of coal"
+46955,hunt,an instance of searching for something; "the hunt for submarines"
+46956,hunt hunt_club,an association of huntsmen who hunt for sport
+46957,hunt hunting,the work of finding and killing or capturing animals for food or pelts
+46958,hunt hunting,the pursuit and killing or capture of wild animals regarded as a sport
+46959,hunted_person,a person who is hunted
+46960,hunter,a person who searches for something; "a treasure hunter"
+46961,hunter hunting_watch,a watch with a hinged metal lid to protect the crystal
+46962,hunter huntsman,someone who hunts game
+46963,hunter's_sauce sauce_chausseur,brown sauce and tomato puree with onions and mushrooms and dry white wine
+46964,hunter-gatherer,a member of a hunting and gathering society
+46965,hunting_and_gathering_tribe hunting_and_gathering_society,group that supports itself by hunting and fishing and by gathering wild fruits and vegetables; usually nomadic
+46966,hunting_dog,a dog used in hunting game
+46967,hunting_ground,a place where opportunities abound
+46968,hunting_ground,an area in which game is hunted
+46969,hunting_guide,guide to people hunting in unfamiliar territory
+46970,hunting_knife,a large sharp knife with a handle shaped to fit the grip
+46971,hunting_license hunting_licence hunting_permit game_license,a license authorizing the bearer to kill a certain type of animal during a specified period of time
+46972,hunting_season,the season during which it is legal to kill a particular species
+46973,huntress,a woman hunter
+46974,huntsman's_horn huntsman's_horns yellow_trumpet yellow_pitcher_plant trumpets Sarracenia_flava,pitcher plant of southeastern United States having erect yellow trumpet-shaped pitchers with wide mouths and erect lids
+46975,huon_pine Lagarostrobus_franklinii Dacrydium_franklinii,Tasmanian timber tree with yellow aromatic wavy-grained wood used for carving and ship building; sometimes placed in genus Dacrydium
+46976,hurdle,an obstacle that you are expected to overcome; "the last hurdle before graduation"
+46977,hurdle,a light movable barrier that competitors must leap over in certain races
+46978,hurdler,an athlete who runs the hurdles
+46979,hurdles hurdling hurdle_race,a footrace in which contestants must negotiate a series of hurdles
+46980,hurdy_gurdy hurdy-gurdy wheel_fiddle,a stringed instrument that produces sounds by means of a wheel that rubs against the strings
+46981,hurl cast,a violent throw
+46982,hurling,a traditional Irish game resembling hockey; played by two teams of 15 players each
+46983,hurrah hooray,a victory cheer; "let's give the team a big hurrah"
+46984,hurricane,a severe tropical cyclone usually with heavy rains and winds moving at 63-136 knots (12 on the Beaufort scale)
+46985,hurricane_deck hurricane_roof promenade_deck awning_deck,a deck at the top of a passenger ship
+46986,hurricane_lamp hurricane_lantern tornado_lantern storm_lantern storm_lamp,an oil lamp with a glass chimney and perforated metal lid to protect the flame from high winds; candlestick with a glass chimney
+46987,hurry haste,a condition of urgency making it necessary to hurry; "in a hurry to lock the door"
+46988,husband hubby married_man,a married man; a woman's partner in marriage
+46989,hush stillness still,(poetic) tranquil silence; "the still of the night"
+46990,hush_money,a bribe paid to someone to insure that something is kept secret
+46991,hush_puppy hushpuppy,deep-fried cornbread ball (southern)
+46992,husk,outer membranous covering of some fruits or seeds
+46993,huskiness ruggedness toughness,the property of being big and strong
+46994,husking_bee cornhusking,a social gathering for the purpose of husking corn
+46995,hussar,a member of a European light cavalry unit; renowned for elegant dress
+46996,hustings,the activities involved in political campaigning (especially speech making)
+46997,hustler wheeler_dealer operator,a shrewd or unscrupulous person who knows how to circumvent difficulties
+46998,hut army_hut field_hut,temporary military shelter
+46999,hutch,a cage (usually made of wood and wire mesh) for small animals
+47000,hutment,an encampment of huts (chiefly military)
+47001,hyacinth,any of numerous bulbous perennial herbs
+47002,hyacinth jacinth,a red transparent variety of zircon used as a gemstone
+47003,hyacinth_bean bonavist Indian_bean Egyptian_bean Lablab_purpureus Dolichos_lablab,perennial twining vine of Old World tropics having trifoliate leaves and racemes of fragrant purple pea-like flowers followed by maroon pods of edible seeds; grown as an ornamental and as a vegetable on the Indian subcontinent; sometimes placed in genus Dolichos
+47004,hyaline hyalin,a glassy translucent substance that occurs in hyaline cartilage or in certain skin conditions
+47005,hyaline_cartilage,translucent cartilage that is common in joints and the respiratory passages; forms most of the fetal skeleton
+47006,hyalinization hyalinisation,the state of being hyaline or having become hyaline; "the patient's arterioles showed marked hyalinization"
+47007,hyaloid_membrane hyaloid,the transparent membrane enveloping the vitreous humor of the eye and separating it from the retina
+47008,hyaloplasm ground_substance,the clear nongranular portion of the cytoplasm of a cell
+47009,hyaluronic_acid,a viscous mucopolysaccharide found in the connective tissue space and the synovial fluid of movable joints and the humors of the eye; a cementing and protective substance
+47010,hyaluronidase spreading_factor Hyazyme,an enzyme (trade name Hyazyme) that splits hyaluronic acid and so lowers its viscosity and increases the permeability of connective tissue and the absorption of fluids
+47011,hybrid,a composite of mixed origin; "the vice-presidency is a hybrid of administrative and legislative offices"
+47012,hybrid crossbreed cross,(genetics) an organism that is the offspring of genetically dissimilar parents or stock; especially offspring produced by breeding plants or animals of different varieties or breeds or species; "a mule is a cross between a horse and a donkey"
+47013,hybrid_petunia Petunia_hybrida,hybrids of Petunia axillaris and Petunia integrifolia: a complex group of petunias having single or double flowers in colors from white to purple
+47014,hybrid_tuberous_begonia Begonia_tuberhybrida,any of numerous hybrid begonias having tuberous roots and variously colored flowers
+47015,hybridization hybridisation crossbreeding crossing cross interbreeding hybridizing,(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids
+47016,hybridoma,a hybrid cell resulting from the fusion of a lymphocyte and a tumor cell; used to culture a specific monoclonal antibody
+47017,hydantoin,any of a group of anticonvulsant drugs used in treating epilepsy
+47018,hydathode water_pore water_stoma,a pore that exudes water on the surface or margin of a leaf of higher plants
+47019,hydatid,cyst filled with liquid; forms as a result of infestation by tapeworm larvae (as in echinococcosis)
+47020,hydatid_mole hydatidiform_mole molar_pregnancy,an abnormality during pregnancy; chorionic villi around the fetus degenerate and form clusters of fluid-filled sacs; usually associated with the death of the fetus
+47021,hydnocarpus_oil,oil from seeds of trees of the genus Hydnocarpus especially Hydnocarpus wightiana (Hydnocarpus laurifolia)
+47022,hydra,trouble that cannot be overcome by a single effort because of its many aspects or its persistent and pervasive quality; "we may be facing a hydra that defies any easy solution"
+47023,hydra,small tubular solitary freshwater hydrozoan polyp
+47024,hydralazine Apresoline,an antihypertensive drug (trade name Apresoline) that dilates blood vessels; used (often with a diuretic) to treat hypertension and congestive heart failure
+47025,hydramnios,an abnormality of pregnancy; accumulation of excess amniotic fluid
+47026,hydrangea,any of various deciduous or evergreen shrubs of the genus Hydrangea
+47027,hydrant,a discharge pipe with a valve and spout at which water may be drawn from the mains of waterworks
+47028,hydrarthrosis,inflammation and swelling of a movable joint because of excess synovial fluid
+47029,hydrate,any compound that contains water of crystallization
+47030,hydration,the process of combining with water; usually reversible
+47031,hydraulic_brake hydraulic_brakes,brake system in which a brake pedal moves a piston in the master cylinder; brake fluid then applies great force to the brake pads or shoes
+47032,hydraulic_cement Portland_cement,a cement that hardens under water; made by heating limestone and clay in a kiln and pulverizing the result
+47033,hydraulic_engineering,the branch of civil engineering dealing with the use and control of water in motion
+47034,hydraulic_press,press in which a force applied by a piston to a small area is transmitted through water to another piston having a large area
+47035,hydraulic_pump hydraulic_ram,a water pump that uses the kinetic energy of flowing water to force a small fraction of that water to a reservoir at a higher level
+47036,hydraulic_system,a mechanism operated by the resistance offered or the pressure transmitted when a liquid is forced through a small opening or tube
+47037,hydraulic_transmission hydraulic_transmission_system,a transmission that depends on a hydraulic system
+47038,hydrazine,a colorless fuming corrosive liquid; a powerful reducing agent; used chiefly in rocket fuels
+47039,hydrazo_group hydrazo_radical,the bivalent group -HNNH- derived from hydrazine
+47040,hydrazoic_acid azoimide hydrogen_azide HN,a colorless explosive liquid that is volatile and poisonous and foul-smelling
+47041,hydrazoite,a salt of hydrazoic acid
+47042,hydremia,blood disorder in which there is excess fluid volume compared with the cell volume of the blood
+47043,hydride,any binary compound formed by the union of hydrogen and other elements
+47044,hydrilla Hydrilla_verticillata,submersed plant with whorled lanceolate leaves and solitary axillary flowers; Old World plant naturalized in southern United States and clogging Florida's waterways
+47045,hydriodic_acid,(HI) a colorless or yellow aqueous solution of hydrogen iodide; "hydriodic acid is a strong acid"
+47046,hydrobromic_acid,an aqueous solution of hydrogen bromide that is a strong liquid acid
+47047,hydrocarbon,an organic compound containing only carbon and hydrogen
+47048,hydrocele,disorder in which serous fluid accumulates in a body sac (especially in the scrotum)
+47049,hydrocephalus hydrocephaly,an abnormal condition in which cerebrospinal fluid collects in the ventricles of the brain; in infants it can cause abnormally rapid growth of the head and bulging fontanelles and a small face; in adults the symptoms are primarily neurological
+47050,hydrochloric_acid chlorohydric_acid,an aqueous solution of hydrogen chloride; a strongly corrosive acid
+47051,hydrochloride,a complex consisting of an organic base in association with hydrogen chloride
+47052,hydrochlorofluorocarbon HCFC,a fluorocarbon that is replacing chlorofluorocarbon as a refrigerant and propellant in aerosol cans; considered to be somewhat less destructive to the atmosphere
+47053,hydrochlorothiazide Microzide Esidrix HydroDIURIL,a diuretic drug (trade name Microzide, Esidrix, and HydroDIURIL) used in the treatment of hypertension
+47054,hydrocolloid,a substance that forms a gel with water
+47055,hydrocortisone cortisol Hydrocortone Cortef,an adrenal-cortex hormone (trade names Hydrocortone or Cortef) that is active in carbohydrate and protein metabolism
+47056,hydrocracking,the process whereby hydrocarbon molecules of petroleum are broken down into kerosene and gasolene by the addition of hydrogen under high pressure in the presence of a catalyst
+47057,hydrocyanic_acid prussic_acid,a solution of hydrogen cyanide in water; weak solutions are used in fumigating and in the synthesis of organic compounds
+47058,hydrodynamics hydrokinetics,study of fluids in motion
+47059,hydroelectric_turbine,turbine consisting of a large and efficient version of a water wheel used to drive an electric generator
+47060,hydroelectricity,electricity produced by water power
+47061,hydroflumethiazide,diuretic used to treat hypertension and edema
+47062,hydrofluoric_acid,a weak poisonous liquid acid; formed by solution of hydrogen fluoride in water
+47063,hydrofluorocarbon HFC,a fluorocarbon emitted as a by-product of industrial manufacturing
+47064,hydrofoil foil,a device consisting of a flat or curved piece (as a metal plate) so that its surface reacts to the water it is passing through; "the fins of a fish act as hydrofoils"
+47065,hydrofoil hydroplane,a speedboat that is equipped with winglike structures that lift it so that it skims the water at high speeds; "the museum houses a replica of the jet hydroplane that broke the record"
+47066,hydrogel,a colloidal gel in which water is the dispersion medium
+47067,hydrogen H atomic_number_1,a nonmetallic univalent element that is normally a colorless and odorless highly flammable diatomic gas; the simplest and lightest and most abundant element in the universe
+47068,hydrogen_atom,an atom of hydrogen
+47069,hydrogen_bomb H-bomb fusion_bomb thermonuclear_bomb,a nuclear weapon that releases atomic energy by union of light (hydrogen) nuclei at high temperatures to form helium
+47070,hydrogen_bond,a chemical bond consisting of a hydrogen atom between two electronegative atoms (e.g., oxygen or nitrogen) with one side be a covalent bond and the other being an ionic bond
+47071,hydrogen_bromide,a colorless gas that yields hydrobromic acid in solution with water
+47072,hydrogen_chloride,a colorless corrosive gas (HCl)
+47073,hydrogen_cyanide,a highly poisonous gas or volatile liquid that smells like bitter almonds; becomes a gas at around 90 degree Fahrenheit and is most dangerous when inhaled; the anhydride of hydrocyanic acid; used in manufacturing
+47074,hydrogen_fluoride,a colorless poisonous corrosive liquid made by the action of sulphuric acid on calcium fluoride; solutions in water are hydrofluoric acid
+47075,hydrogen_iodide,a colorless gas that yields hydroiodic acid in aqueous solution
+47076,hydrogen_ion,a positively charged atom of hydrogen; that is to say, a normal hydrogen atomic nucleus
+47077,hydrogen_ion_concentration,the number of moles of hydrogen ions per cubic decimeter
+47078,hydrogen_peroxide peroxide,a viscous liquid with strong oxidizing properties; a powerful bleaching agent; also used (in aqueous solutions) as a mild disinfectant and (in strong concentrations) as an oxidant in rocket fuels
+47079,hydrogen_sulfide,a sulfide having the unpleasant smell of rotten eggs
+47080,hydrogenation,a chemical process that adds hydrogen atoms to an unsaturated oil; "food producers use hydrogenation to keep fat from becoming rancid"
+47081,hydrography,the science of the measurement and description and mapping of the surface waters of the earth with special reference to navigation
+47082,hydroiodic_acid,an acid formed by aqueous solution of hydrogen iodide
+47083,hydrologist,a geologist skilled in hydrology
+47084,hydrology,the branch of geology that studies water on the earth and in the atmosphere: its distribution and uses and conservation
+47085,hydrolysate,a product of hydrolysis
+47086,hydrolysis,a chemical reaction in which water reacts with a compound to produce other compounds; involves the splitting of a bond and the addition of the hydrogen cation and the hydroxide anion from the water
+47087,hydromancer,one who practices hydromancy
+47088,hydromancy,divination by water (as by patterns seen in the ebb and flow of the tides)
+47089,hydromel,honey diluted in water; becomes mead when fermented
+47090,hydrometer gravimeter,a measuring instrument for determining the specific gravity of a liquid or solid
+47091,hydrometry gravimetry,the measurement of specific gravity
+47092,hydromorphone_hydrochloride hydromorphone Dilaudid,a narcotic analgesic (trade name Dilaudid) used to treat moderate to severe pain
+47093,hydronephrosis,accumulation of urine in the kidney because of an obstruction in the ureter
+47094,hydropathy hydrotherapy,the internal and external use of water in the treatment of disease
+47095,hydrophobia,a symptom of rabies in humans consisting of an aversion to swallowing liquids
+47096,hydrophobia,a morbid fear of water
+47097,hydrophobicity,the property of being water-repellent; tending to repel and not absorb water
+47098,hydroplane_racing,racing in high-speed motor boats
+47099,hydroponics aquiculture tank_farming,a technique of growing plants (without soil) in water containing dissolved nutrients
+47100,hydrosphere,the watery layer of the earth's surface; includes water vapor
+47101,hydrostatic_head,the pressure at a given point in a liquid measured in terms of the vertical height of a column of the liquid needed to produce the same pressure
+47102,hydrostatics,study of the mechanical properties of fluids that are not in motion
+47103,hydrothorax,accumulation of fluid in the pleural cavity (the space between the lungs and the walls of the chest) often resulting from disease of the heart or kidneys
+47104,hydroxide,a chemical compound containing the hydroxyl group
+47105,hydroxide hydrated_oxide,a compound of an oxide with water
+47106,hydroxide_ion hydroxyl_ion,the anion OH having one oxygen and one hydrogen atom
+47107,hydroxy_acid,any acid that has hydroxyl groups in addition to the hydroxyl group in the acid itself
+47108,hydroxybenzoic_acid,a crystalline derivative of benzoic acid
+47109,hydroxybutyric_acid oxybutyric_acid,hydroxy derivative of butyric acid
+47110,hydroxychloroquine Plaquenil,anti-inflammatory drug (trade name Plaquenil) used in the treatment of rheumatoid arthritis and malaria and lupus erythematosus
+47111,hydroxyl hydroxyl_group hydroxyl_radical,the monovalent group -OH in such compounds as bases and some acids and alcohols
+47112,hydroxymethyl,a methyl with hydroxide replacing the hydrogen atoms
+47113,hydroxyproline,a crystalline amino acid obtained from gelatin or collagen
+47114,hydroxyzine_hydrochloride hydroxyzine Atarax Vistaril,a drug (trade names Atarax and Vistaril) used as a tranquilizer to treat anxiety and motion sickness
+47115,hydrozoan hydroid,colonial coelenterates having the polyp phase dominant
+47116,hyena hyaena,doglike nocturnal mammal of Africa and southern Asia that feeds chiefly on carrion
+47117,hygiene,a condition promoting sanitary practices; "personal hygiene"
+47118,hygiene hygienics,the science concerned with the prevention of illness and maintenance of health
+47119,hygienist,a medical specialist in hygiene
+47120,hygrodeik,a wet and dry bulb hygrometer
+47121,hygrometer,measuring instrument for measuring the relative humidity of the atmosphere
+47122,hygrophyte,a plant that grows in a moist habitat
+47123,hygroscope,hygrometer that shows variations in the relative humidity of the atmosphere
+47124,hymen maidenhead virginal_membrane,a fold of tissue that partly covers the entrance to the vagina of a virgin
+47125,hymeneal,a wedding hymn
+47126,hymenium,spore-bearing layer of cells in certain fungi containing asci or basidia
+47127,hymenopterous_insect hymenopteran hymenopteron hymenopter,insects having two pairs of membranous wings and an ovipositor specialized for stinging or piercing
+47128,hymn anthem,a song of praise (to God or to a saint or to a nation)
+47129,hymnal hymnbook hymnary,a songbook containing a collection of hymns
+47130,hyoid hyoid_bone os_hyoideum,a U-shaped bone at the base of the tongue that supports the tongue muscles
+47131,hyoscyamine,a poisonous crystalline alkaloid (isometric with atropine but more potent); used to treat excess motility of the gastrointestinal tract
+47132,hypallage,reversal of the syntactic relation of two words (as in `her beauty's face')
+47133,hypanthium floral_cup calyx_tube,the cuplike or ringlike or tubular structure of a flower which bears the sepals and stamens and calyx (as in Rosaceae)
+47134,hyper-eutectoid_steel,a steel that contains more than 0.9% carbon
+47135,hyperacidity,excessive acidity
+47136,hyperactivity,a condition characterized by excessive restlessness and movement
+47137,hyperacusis hyperacusia auditory_hyperesthesia,abnormal acuteness of hearing due to increased irritability of the sensory neural mechanism; characterized by intolerance for ordinary sound levels
+47138,hyperbaric_chamber,a large chamber in which the oxygen pressure is above normal for the atmosphere; used in treating breathing disorders or carbon monoxide poisoning
+47139,hyperbaton,reversal of normal word order (as in `cheese I love')
+47140,hyperbetalipoproteinemia,a genetic disorder characterized by high levels of beta-lipoproteins and cholesterol; can lead to atherosclerosis at an early age
+47141,hyperbilirubinemia,abnormally high amounts of bile pigment (bilirubin) in the blood
+47142,hyperbilirubinemia_of_the_newborn neonatal_hyperbilirubinemia,a common disorder that is usually due to immaturity of the liver; usually subsides spontaneously
+47143,hyperbola,an open curve formed by a plane that cuts the base of a right circular cone
+47144,hyperbole exaggeration,extravagant exaggeration
+47145,hyperbolic_geometry,(mathematics) a non-Euclidean geometry in which the parallel axiom is replaced by the assumption that through any point in a plane there are two or more lines that do not intersect a given line in the plane; "Karl Gauss pioneered hyperbolic geometry"
+47146,hyperboloid,a quadric surface generated by rotating a hyperbola around its main axis
+47147,hypercalcemia hypercalcaemia,the presence of abnormally high levels of calcium in the blood; usually the result of excessive bone resorption in hyperparathyroidism or Paget's disease
+47148,hypercalciuria hypercalcinuria,the presence of abnormally high levels of calcium in the urine; usually the result of excessive bone resorption in hyperparathyroidism or osteoporosis
+47149,hypercapnia hypercarbia,the physical condition of having the presence of an abnormally high level of carbon dioxide in the circulating blood
+47150,hypercatalectic,(prosody) a line of poetry having an extra syllable or syllables at the end of the last metrical foot
+47151,hypercellularity,the state of having abnormally many cells
+47152,hypercholesterolemia hypercholesteremia,the presence of an abnormal amount of cholesterol in the cells and plasma of the blood; associated with the risk of atherosclerosis
+47153,hyperchromic_anemia hyperchromic_anaemia,anemia characterized by an increase in the concentration of corpuscular hemoglobin
+47154,hypercoaster,a roller coaster that goes up 200 feet or higher and can catapult riders from 0 to 70 mph in 4 seconds by motors originally designed to launch rockets
+47155,hyperemesis,severe and excessive vomiting
+47156,hyperemesis_gravidarum,hyperemesis during pregnancy; if severe it can result in damage to the brain and liver and kidney
+47157,hyperemia hyperaemia,increased blood in an organ or other body part
+47158,hyperextension,greater than normal extension
+47159,hyperfocal_distance,the distance in front of a lens that is focused at infinity beyond which all objects are well defined and clear
+47160,hyperglycemia hyperglycaemia,abnormally high blood sugar usually associated with diabetes
+47161,hyperhidrosis hyperidrosis polyhidrosis,excessive and profuse perspiration
+47162,hypericism,a severe dermatitis of herbivorous domestic animals attributable to photosensitivity from eating Saint John's wort
+47163,hyperkalemia,higher than normal levels of potassium in the circulating blood; associated with kidney failure or sometimes with the use of diuretic drugs
+47164,hyperlink,a link from a hypertext file to another location or file; typically activated by clicking on a highlighted word or icon at a particular location on the screen
+47165,hyperlipoproteinemia,any of various disorders of lipoprotein and cholesterol metabolism that result in high levels of lipoprotein and cholesterol in the circulating blood
+47166,hypermarket,a huge supermarket (usually built on the outskirts of a town)
+47167,hypermastigote,flagellate symbiotic in the intestines of e.g. termites
+47168,hypermedia hypermedia_system interactive_multimedia interactive_multimedia_system,a multimedia system in which related items of information are connected and can be presented together
+47169,hypermotility,excessive movement; especially excessive motility of the gastrointestinal tract
+47170,hypernatremia,excessive amounts of sodium in the blood; possibly indicating diabetes insipidus
+47171,hypernym superordinate superordinate_word,a word that is more generic than a given word
+47172,hypernymy superordination,the semantic relation of being superordinate or belonging to a higher rank or class
+47173,hyperon,any baryon that is not a nucleon; unstable particle with mass greater than a neutron
+47174,hyperope,a person with hyperopia; a farsighted person
+47175,hyperopia hypermetropia hypermetropy farsightedness longsightedness,abnormal condition in which vision for distant objects is better than for near objects
+47176,hyperparathyroidism,excessive secretion of parathyroid hormone resulting in abnormally high levels of calcium in the blood; can affect many systems of the body (especially causing bone resorption and osteoporosis)
+47177,hyperpigmentation,unusual darkening of the skin
+47178,hyperpituitarism,excessive activity of the pituitary gland (especially overactivity of the anterior lobe which leads to excess secretion of growth hormone)
+47179,hyperplasia,abnormal increase in number of cells
+47180,hyperpnea,energetic (deep and rapid) respiration that occurs normally after exercise or abnormally with fever or various disorders
+47181,hyperpyrexia,extremely high fever (especially in children)
+47182,hypersecretion,excessive secretion
+47183,hypersensitivity,pathological sensitivity
+47184,hypersensitivity,extreme sensitivity
+47185,hypersensitivity_reaction,an inappropriate and excessive reaction to an allergen (as pollen or dust or animal hair or certain foods); severity ranges from mild allergy to severe systemic reactions leading to anaphylactic shock
+47186,hypersomnia,an inability to stay awake
+47187,hypersplenism,enlarged spleen and a decrease in one or more types of blood cells; associated with many disorders
+47188,hypertensive,a person who has abnormally high blood pressure
+47189,hypertext,machine-readable text that is not sequential but is organized so that related items of information are connected; "Let me introduce the word hypertext to mean a body of written or pictorial material interconnected in such a complex way that it could not conveniently be presented or represented on paper"--Ted Nelson
+47190,hypertext_markup_language hypertext_mark-up_language HTML,a set of tags and rules (conforming to SGML) for using them in developing hypertext documents
+47191,hypertext_system,a database management system that allows strings of text (`objects') to be processed as a complex network of nodes that are linked together in an arbitrary way
+47192,hypertext_transfer_protocol HTTP,a protocol (utilizing TCP) to transfer hypertext requests and information between servers and browsers
+47193,hyperthermia hyperthermy,abnormally high body temperature; sometimes induced (as in treating some forms of cancer)
+47194,hyperthyroidism thyrotoxicosis,an overactive thyroid gland; pathologically excessive production of thyroid hormones or the condition resulting from excessive production of thyroid hormones
+47195,hypertonia hypertonus hypertonicity,(of muscular tissue) the state of being hypertonic
+47196,hypertonicity,(of a solution) the extent to which a solution has a higher osmotic pressure than some other
+47197,hypertrophic_cardiomyopathy,a disorder in which the heart muscle is so strong that it does not relax enough to fill with the heart with blood and so has reduced pumping ability
+47198,hypertrophy,abnormal enlargement of a body part or organ
+47199,hypervelocity,excessive velocity; "the meteorites struck the earth with hypervelocity impacts"
+47200,hyperventilation,an increased depth and rate of breathing greater than demanded by the body needs; can cause dizziness and tingling of the fingers and toes and chest pain if continued
+47201,hypervitaminosis,an abnormal condition resulting from taking vitamins excessively; can be serious for vitamins A or D or K
+47202,hypervolemia hypervolaemia,a blood disorder consisting of an increase in the volume of circulating blood
+47203,hypha,any of the threadlike filaments forming the mycelium of a fungus
+47204,hyphema,bleeding into the interior chamber of the eye
+47205,hyphen dash,a punctuation mark (-) used between parts of a compound word or between the syllables of a word when the word is divided at the end of a line of text
+47206,hyphenation,connecting syllables and words by hyphens
+47207,hypnagogue,an agent that induces drowsiness or sleep
+47208,hypnoanalysis,the use of hypnosis in conjunction with psychoanalysis
+47209,hypnogenesis,the induction of sleep or hypnosis
+47210,hypnophobia,a morbid fear of falling asleep
+47211,hypnosis,a state that resembles sleep but that is induced by suggestion
+47212,hypnotherapy,the use of hypnosis in psychotherapy
+47213,hypnotic_trance,a trance induced by the use of hypnosis; the person accepts the suggestions of the hypnotist
+47214,hypnotism mesmerism suggestion,the act of inducing hypnosis
+47215,hypnotist hypnotizer hypnotiser mesmerist mesmerizer,a person who induces hypnosis
+47216,hypo sodium_thiosulphate sodium_thiosulfate,a compound used as a fixing agent in photographic developing
+47217,hypo-eutectoid_steel,a steel that contains less that 0.9% carbon
+47218,hypobasidium,special cell constituting the base of the basidium in various fungi especially of the order Tremellales
+47219,hypobetalipoproteinemia,a hereditary disorder characterized by low levels of beta-lipoproteins and lipids and cholesterol
+47220,hypocalcemia hypocalcaemia,abnormally low level of calcium in the blood; associated with hypoparathyroidism or kidney malfunction or vitamin D deficiency
+47221,hypocapnia acapnia,a state in which the level of carbon dioxide in the blood is lower than normal; can result from deep or rapid breathing
+47222,hypocellularity,the state of having abnormally few cells
+47223,hypochlorite,any salt or ester of hypochlorous acid
+47224,hypochlorous_acid,a weak unstable acid known only in solution and in its salts; used as a bleaching agent and as an oxidizing agent
+47225,hypochondria hypochondriasis,chronic and abnormal anxiety about imaginary symptoms and ailments
+47226,hypochondriac,a patient with imaginary symptoms and ailments
+47227,hypochondrium,the upper region of the abdomen just below the lowest ribs on either side of the epigastrium
+47228,hypochromic_anemia hypochromic_anaemia,anemia characterized by a decrease in the concentration of corpuscular hemoglobin
+47229,hypocrisy,insincerity by virtue of pretending to have qualities or beliefs that you do not really have
+47230,hypocrisy lip_service,an expression of agreement that is not supported by real conviction
+47231,hypocrite dissembler dissimulator phony phoney pretender,a person who professes beliefs and opinions that he or she does not hold in order to conceal his or her real feelings or motives
+47232,hypocycloid,a line generated by a point on a circle that rolls around inside another circle
+47233,hypodermic_needle,a hollow needle
+47234,hypodermic_syringe hypodermic hypo,a piston syringe that is fitted with a hypodermic needle for giving injections
+47235,hypodermis,layer of cells that secretes the chitinous cuticle in e.g. arthropods
+47236,hypoesthesia hypesthesia,impairment of tactile sensitivity; decrease of sensitivity
+47237,hypogammaglobulinemia,an abnormally low concentration of gamma globulin in the blood and increased risk of infection
+47238,hypogastric_plexus plexus_hypogastricus,a plexus of nerves serving the pelvic viscera
+47239,hypogastric_vein internal_iliac_vein,a vein that unites with the external iliac vein to form the common iliac vein
+47240,hypoglossal hypoglossal_nerve nervus_hypoglosus twelfth_cranial_nerve,supplies intrinsic muscles of the tongue and other tongue muscles
+47241,hypoglycemia hypoglycaemia,abnormally low blood sugar usually resulting from excessive insulin or a poor diet
+47242,hypoglycemic_agent hypoglycaemic_agent,any of various agents that decrease the level of glucose in the blood and are used in the treatment of diabetes mellitus
+47243,hypogonadism,incompetence of the gonads (especially in the male with low testosterone); results in deficient development of secondary sex characteristics and (in prepubertal males) a body with long legs and a short trunk
+47244,hypokalemia,abnormally low level of potassium in the circulating blood leading to weakness and heart abnormalities; associated with adrenal tumors or starvation or taking diuretics
+47245,hypolipoproteinemia,any of various disorders of lipoprotein and cholesterol metabolism that result in low levels of lipoprotein and cholesterol in the circulating blood
+47246,hyponatremia,abnormally low level of sodium in the blood; associated with dehydration
+47247,hyponitrous_acid,an explosive white crystalline weak acid (H2N2O2)
+47248,hyponym subordinate subordinate_word,a word that is more specific than a given word
+47249,hyponymy subordination,the semantic relation of being subordinate or belonging to a lower rank or class
+47250,hypoparathyroidism,inadequate secretion of parathyroid hormone resulting in abnormally low levels of calcium in the blood
+47251,hypophosphoric_acid,a crystalline tetrabasic acid (H4P2O6)
+47252,hypophosphorous_acid phosphorous_acid orthophosphorous_acid,a clear or yellow monobasic acid (H3PO2)
+47253,hypophyseal_stalk,the funnel-shaped stalk connecting the pituitary gland to the hypothalamus
+47254,hypophysectomy,surgical removal of the pituitary gland
+47255,hypopigmentation,unusual lack of skin color
+47256,hypoplasia,underdevelopment of an organ because of a decrease in the number of cells
+47257,hypoplastic_anemia hypoplastic_anaemia,anemia resulting from inadequately functioning bone marrow; can develop into aplastic anemia
+47258,hypopnea,slow or shallow breathing
+47259,hypoproteinemia,abnormally low level of protein in the blood; can indicate inadequate diet or intestinal or renal disorders
+47260,hyposmia,lessened sensitivity to odors
+47261,hypospadias,an abnormal condition in males in which the urethra opens on the under surface of the penis
+47262,hypostasis,the accumulation of blood in an organ
+47263,hypostasis,(metaphysics) essential nature or underlying reality
+47264,hypostasis epistasis,the suppression of a gene by the effect of an unrelated gene
+47265,hypostasis hypostasis_of_Christ,any of the three persons of the Godhead constituting the Trinity especially the person of Christ in which divine and human natures are united
+47266,hypostatization hypostatisation reification,regarding something abstract as a material thing
+47267,hypotension,abnormally low blood pressure
+47268,hypotensive,a person who has abnormally low blood pressure
+47269,hypotenuse,the side of a right triangle opposite the right angle
+47270,hypothalamus,a basal part of the diencephalon governing autonomic nervous system
+47271,hypothermia,subnormal body temperature
+47272,hypothesis,a proposal intended to explain certain facts or observations
+47273,hypothesis possibility theory,a tentative insight into the natural world; a concept that is not yet verified but that if true would explain certain facts or phenomena; "a scientific hypothesis that survives experimental testing becomes a scientific theory"; "he proposed a fresh theory of alkalis that later was accepted in chemical practices"
+47274,hypothetical,a hypothetical possibility, circumstance, statement, proposal, situation, etc.; "consider the following, just as a hypothetical"
+47275,hypothetical_creature,a creature that has not been observed but is hypothesized to exist
+47276,hypothetical_imperative,a principle stating the action required to attain a desired goal
+47277,hypothrombinemia,a low level of prothrombin (factor II) in the circulating blood; results in long clotting time and poor clot formation and sometimes excessive bleeding; can result from vitamin K deficiency
+47278,hypothyroidism,an underactive thyroid gland; a glandular disorder resulting from insufficient production of thyroid hormones
+47279,hypotonia hypotonus hypotonicity,(of muscular tissue) the state of being hypotonic
+47280,hypotonicity,(of a solution) the extent to which a solution has a lower osmotic pressure than some other
+47281,hypovolemia hypovolaemia,a blood disorder consisting of a decrease in the volume of circulating blood
+47282,hypovolemic_shock,shock caused by severe blood or fluid loss
+47283,hypoxia,oxygen deficiency causing a very strong drive to correct the deficiency
+47284,hypoxic_hypoxia,hypoxia resulting from defective oxygenation of the blood in the lungs
+47285,hypozeugma,use of a series of subjects with a single predicate
+47286,hypozeuxis,use of a series of parallel clauses (as in `I came, I saw, I conquered')
+47287,hypsography,the scientific study of the earth's configuration above sea level (emphasizing the measurement of land altitudes relative to sea level)
+47288,hypsometer,an altimeter that uses the boiling point of water to determine land elevation
+47289,hypsometry hypsography,measurement of the elevation of land above sea level
+47290,hyrax coney cony dassie das,any of several small ungulate mammals of Africa and Asia with rodent-like incisors and feet with hooflike toes
+47291,hyson,a Chinese green tea with twisted leaves
+47292,hyssop,bitter leaves used sparingly in salads; dried flowers used in soups and tisanes
+47293,hyssop Hyssopus_officinalis,a European mint with aromatic and pungent leaves used in perfumery and as a seasoning in cookery; often cultivated as a remedy for bruises; yields hyssop oil
+47294,hyssop_oil,used chiefly in liqueurs
+47295,hysterectomy,surgical removal of the uterus
+47296,hysteresis,the lagging of an effect behind its cause; especially the phenomenon in which the magnetic induction of a ferromagnetic material lags behind the changing magnetic field
+47297,hysteria,excessive or uncontrollable fear
+47298,hysteria hysterical_neurosis,neurotic disorder characterized by violent emotional outbreaks and disturbances of sensory and motor functions
+47299,hysteric,a person suffering from hysteria
+47300,hysterics,an attack of hysteria
+47301,hysterocatalepsy,hysteria with cataleptic symptoms
+47302,hysteron_proteron,reversal of normal order of two words or sentences etc. (as in `bred and born')
+47303,hysteron_proteron,the logical fallacy of using as a true premise a proposition that is yet to be proved
+47304,hysterosalpingogram,X ray of the uterus and Fallopian tubes; usually done in diagnosing infertility (to see if there any blockages)
+47305,hysteroscopy,visual examination of the uterus and uterine lining using an endoscope inserted through the vagina
+47306,hysterotomy,surgical incision into the uterus (as in cesarean section)
+47307,iPod,(trademark) a pocket-sized device used to play music files
+47308,iamb iambus,a metrical unit with unstressed-stressed syllables
+47309,iambic,a verse line consisting of iambs
+47310,ibex Capra_ibex,wild goat of mountain areas of Eurasia and northern Africa having large recurved horns
+47311,ibis,wading birds of warm regions having long slender down-curved bills
+47312,ibolium_privet ibota_privet Ligustrum_ibolium,fast-growing and tightly branched hybrid of Ligustrum ovalifolium and Ligustrum obtusifolium
+47313,ibuprofen isobutylphenyl_propionic_acid Advil Motrin Nuprin,a nonsteroidal anti-inflammatory and analgesic medicine (trade names Advil and Motrin and Nuprin) used to relieve the pain of arthritis and as an antipyretic; "daily use of ibuprofen can irritate the stomach"
+47314,ice,the frozen part of a body of water
+47315,ice frappe,a frozen dessert with fruit flavoring (especially one containing no milk)
+47316,ice sparkler,diamonds; "look at the ice on that dame!"
+47317,ice water_ice,water frozen in the solid state; "Americans like ice in their drinks"
+47318,ice-cream_bean Inga_edulis,ornamental evergreen tree with masses of white flowers; tropical and subtropical America
+47319,ice-cream_cake icebox_cake,ice cream molded to look like a cake
+47320,ice-cream_cone,ice cream in a crisp conical wafer
+47321,ice-cream_soda ice-cream_float float,a drink with ice cream floating in it
+47322,ice-cream_sundae sundae,ice cream served with a topping
+47323,ice-skater,someone who engages in ice skating
+47324,ice_age glacial_period glacial_epoch,any period of time during which glaciers covered a large part of the earth's surface; "the most recent ice age was during the Pleistocene"
+47325,ice_ax ice_axe piolet,an ax used by mountain climbers for cutting footholds in ice
+47326,ice_bear polar_bear Ursus_Maritimus Thalarctos_maritimus,white bear of Arctic regions
+47327,ice_cream icecream,frozen dessert containing cream and sugar and flavoring
+47328,ice_crystal snow_mist diamond_dust poudrin ice_needle frost_snow frost_mist,small crystals of ice
+47329,ice_cube,a small cube of artificial ice; used for cooling drinks
+47330,ice_field,a large flat mass of ice (larger than an ice floe) floating at sea
+47331,ice_floe floe,a flat mass of ice (smaller than an ice field) floating at sea
+47332,ice_fog pogonip,a dense winter fog containing ice particles
+47333,ice_hockey hockey hockey_game,a game played on an ice rink by two opposing teams of six skaters each who try to knock a flat round puck into the opponents' goal with angled hockey sticks
+47334,ice_hockey_rink ice-hockey_rink,an ice rink for playing ice hockey
+47335,ice_lolly lolly lollipop popsicle,ice cream or water ice on a small wooden stick; "in England a popsicle is called an ice lolly"
+47336,ice_machine,an electric refrigerator to supply ice cubes
+47337,ice_maker,an appliance included in some electric refrigerators for making ice cubes
+47338,ice_mass,a large mass of ice
+47339,ice_milk,similar to ice cream but made of milk
+47340,ice_pack ice_bag,a waterproof bag filled with ice: applied to the body (especially the head) to cool or reduce swelling
+47341,ice_plant icicle_plant Mesembryanthemum_crystallinum,Old World annual widely naturalized in warm regions having white flowers and fleshy foliage covered with hairs that resemble ice
+47342,ice_rink ice-skating_rink ice,a rink with a floor of ice for ice hockey or ice skating; "the crowd applauded when she skated out onto the ice"
+47343,ice_show,any entertainment performed by ice skaters
+47344,ice_skate,skate consisting of a boot with a steel blade fitted to the sole
+47345,ice_skating,skating on ice
+47346,ice_storm silver_storm,a storm with freezing rain that leaves everything glazed with ice
+47347,ice_tea iced_tea,strong tea served over ice
+47348,ice_tongs,tongs for lifting blocks of ice
+47349,ice_wagon ice-wagon,(formerly) a horse-drawn wagon that delivered ice door to door
+47350,ice_water,water served ice-cold or with ice
+47351,iceberg berg,a large mass of ice floating at sea; usually broken off of a polar glacier
+47352,iceboat ice_yacht scooter,a sailing vessel with runners and a cross-shaped frame; suitable for traveling over ice
+47353,icebreaker,a beginning that relaxes a tense or formal atmosphere; "he told jokes as an icebreaker"
+47354,icebreaker iceboat,a ship with a reinforced bow to break up ice and keep channels open for navigation
+47355,icecap ice_cap,a mass of ice and snow that permanently covers a large area of land (e.g., the polar regions or a mountain peak)
+47356,iced-tea_spoon,a teaspoon with a long handle
+47357,iced_coffee ice_coffee,a strong sweetened coffee served over ice with cream
+47358,icefall,a steep part of a glacier resembling a frozen waterfall
+47359,icehouse,a house for storing ice
+47360,iceman,someone who cuts and delivers ice
+47361,icepick ice_pick,pick consisting of a steel rod with a sharp point; used for breaking up blocks of ice
+47362,icetray,a tray for making cubes of ice in a refrigerator
+47363,ichneumon Herpestes_ichneumon,northern African mongoose; in ancient times thought to devour crocodile eggs
+47364,ichneumon_fly,hymenopterous insect that resembles a wasp and whose larvae are parasitic on caterpillars and other insect larvae
+47365,ichor,(Greek mythology) the rarified fluid said to flow in the veins of the Gods
+47366,ichthyolatry fish-worship,the worship of fish
+47367,ichthyologist,a zoologist who studies fishes
+47368,ichthyology,the branch of zoology that studies fishes
+47369,ichthyosaur,any of several marine reptiles of the Mesozoic having a body like a porpoise with dorsal and tail fins and paddle-shaped limbs
+47370,ichthyosaurus,ichthyosaurs of the Jurassic
+47371,ichthyosis,any of several congenital diseases in which the skin is dry and scaly like a fish
+47372,icicle,ice resembling a pendent spear, formed by the freezing of dripping water
+47373,icing icing_the_puck,(ice hockey) the act of shooting the puck from within your own defensive area the length of the rink beyond the opponent's goal
+47374,icing_sugar,finely powdered sugar used to make icing
+47375,icon,(computer science) a graphic symbol (usually a simple picture) that denotes a program or a command or a data file or a concept in a graphical user interface
+47376,icon ikon,a conventional religious painting in oil on a small wooden panel; venerated in the Eastern Church
+47377,iconoclasm,the orientation of an iconoclast
+47378,iconoclast,someone who attacks cherished ideas or traditional institutions
+47379,iconoclast image_breaker,a destroyer of images used in religious worship
+47380,iconography,the images and symbolic representations that are traditionally associated with a person or a subject; "religious iconography"; "the propagandistic iconography of a despot"
+47381,iconolatry,the worship of sacred images
+47382,iconology,the branch of art history that studies visual images and their symbolic meaning (especially in social or political terms)
+47383,iconoscope,the first practical television-camera for picture pickup; invented in 1923 by Vladimir Kosma Zworykin
+47384,icosahedron,any polyhedron having twenty plane faces
+47385,ictodosaur,intermediate in form between the therapsids and most primitive true mammals
+47386,id,(psychoanalysis) primitive instincts and energies underlying all psychic activity
+47387,idea,a personal view; "he has an idea that we don't like him"
+47388,idea thought,the content of cognition; the main thing you are thinking about; "it was not a good idea"; "the thought never entered my mind"
+47389,ideal,the idea of something that is perfect; something that one hopes to attain
+47390,ideal paragon nonpareil saint apotheosis nonesuch nonsuch,model of excellence or perfection of a kind; one having no equal
+47391,ideal_gas perfect_gas,a hypothetical gas with molecules of negligible size that exert no intermolecular forces
+47392,idealism,(philosophy) the philosophical theory that ideas are the only reality
+47393,idealism,impracticality by virtue of thinking of things in their ideal form rather than as they really are
+47394,idealist dreamer,someone guided more by ideals than by practical considerations
+47395,ideality,the quality of being ideal
+47396,idealization idealisation,(psychiatry) a defense mechanism that splits something you are ambivalent about into two representations--one good and one bad
+47397,idealization idealisation,something that exists only as an idea
+47398,idealization idealisation glorification,a portrayal of something as ideal; "the idealization of rural life was very misleading"
+47399,ideation,the process of forming and relating ideas
+47400,identical_twin monozygotic_twin monozygous_twin,either of two twins developed from the same fertilized ovum (having the same genetic material)
+47401,identification,the condition of having the identity (of a person or object) established; "the thief's identification was followed quickly by his arrest"; "identification of the gun was an important clue"
+47402,identification,evidence of identity; something that identifies a person or thing
+47403,identification,the attribution to yourself (consciously or unconsciously) of the characteristics of another person (or group of persons)
+47404,identification_particle,a tiny particle of material that can be added to a product to indicate the source of manufacture
+47405,identifier,a symbol that establishes the identity of the one bearing it
+47406,identity,the individual characteristics by which a thing or person is recognized or known; "geneticists only recently discovered the identity of the gene that causes it"; "it was too dark to determine his identity"; "she guessed the identity of his lover"
+47407,identity identicalness indistinguishability,exact sameness; "they shared an identity of interests"
+47408,identity identity_element identity_operator,an operator that leaves unchanged the element on which it operates; "the identity under numerical multiplication is 1"
+47409,identity personal_identity individuality,the distinct personality of an individual regarded as a persisting entity; "you can lose your identity when you join the army"
+47410,identity_crisis,distress and disorientation (especially in adolescence) resulting from conflicting pressures and uncertainty about one's self and one's role in society
+47411,identity_matrix unit_matrix,a scalar matrix in which all of the diagonal elements are unity
+47412,identity_theft,the co-option of another person's personal information (e.g., name, Social Security number, credit card number, passport) without that person's knowledge and the fraudulent use of such knowledge
+47413,ideogram ideograph,a graphic character that indicates the meaning of a thing without indicating the sounds used to say it; "Chinese characters are ideograms"
+47414,ideography,the use of ideograms in writing
+47415,ideological_barrier,a barrier to cooperation or interaction resulting from conflicting ideologies
+47416,ideologist ideologue,an advocate of some ideology
+47417,ideology,imaginary or visionary theorization
+47418,ides,in the Roman calendar: the 15th of March or May or July or October or the 13th of any other month
+47419,idesia Idesia_polycarpa,deciduous roundheaded Asiatic tree widely grown in mild climates as an ornamental for its heart-shaped leaves and fragrant yellow-green flowers followed by hanging clusters of fleshy orange-red berries
+47420,idiocy amentia,extreme mental retardation
+47421,idiolatry autolatry self-worship,the worship of yourself
+47422,idiolect,the language or speech of one individual at a particular period in life
+47423,idiom idiomatic_expression phrasal_idiom set_phrase phrase,an expression whose meanings cannot be inferred from the meanings of the words that make it up
+47424,idiopathic_disease idiopathic_disorder idiopathy,any disease arising from internal dysfunctions of unknown cause
+47425,idiosyncrasy foible mannerism,a behavioral attribute that is distinctive and peculiar to an individual
+47426,idiot imbecile cretin moron changeling half-wit retard,a person of subnormal intelligence
+47427,idiot_light,a colored warning light on an instrument panel (as for low oil pressure)
+47428,idiot_savant,person who is mentally retarded in general but who displays remarkable aptitude in some limited field (usually involving memory)
+47429,idle,the state of an engine or other mechanism that is idling; "the car engine was running at idle"
+47430,idle_pulley idler_pulley idle_wheel,a pulley on a shaft that presses against a guide belt to guide or tighten it
+47431,idleness idling loafing,having no employment
+47432,idler loafer do-nothing layabout bum,person who does no work; "a lazy bum"
+47433,idol graven_image god,a material effigy that is worshipped; "thou shalt not make unto thee any graven image"; "money was his god"
+47434,idol matinee_idol,someone who is adored blindly and excessively
+47435,idolater idolizer idoliser idol_worshiper,a person who worships idols
+47436,idolatress,a woman idolater
+47437,idolatry idol_worship,the worship of idols; the worship of physical objects or images as gods
+47438,idolization idolisation,the act of worshiping blindly and to excess
+47439,idolizer idoliser,a lover blind with admiration and devotion
+47440,idyll,an episode of such pastoral or romantic charm as to qualify as the subject of a poetic idyll
+47441,igloo iglu,an Eskimo hut; usually built of blocks (of sod or snow) in the shape of a dome
+47442,igneous_rock,rock formed by the solidification of molten magma
+47443,igniter ignitor lighter,a substance used to ignite or kindle a fire
+47444,ignition,the process of initiating combustion or catching fire
+47445,ignition firing lighting kindling inflammation,the act of setting something on fire
+47446,ignition ignition_system,the mechanism that ignites the fuel in an internal-combustion engine
+47447,ignition_coil,an induction coil that converts current from a battery into the high-voltage current required by spark plugs
+47448,ignition_key,a key that operates the ignition switch of an automotive engine
+47449,ignition_switch,switch that operates a solenoid that closes a circuit to operate the starter
+47450,ignobleness ignobility,the quality of being ignoble
+47451,ignoramus know_nothing uneducated_person,an ignorant person
+47452,ignorance,the lack of knowledge or education
+47453,ignorantness nescience unknowing unknowingness,ignorance (especially of orthodox beliefs)
+47454,ignoratio_elenchi,the logical fallacy of supposing that an argument proving an irrelevant point has proved the point at issue
+47455,iguanid iguanid_lizard,lizards of the New World and Madagascar and some Pacific islands; typically having a long tail and bright throat patch in males
+47456,iguanodon,massive herbivorous bipedal dinosaur with a long heavy tail; common in Europe and northern Africa; early Cretaceous period
+47457,ijtihad,the endeavor of a Moslem scholar to derive a rule of divine law from the Koran and Hadith without relying on the views of other scholars; by the end of the 10th century theologians decided that debate on such matters would be closed and Muslim theology and law were frozen; "some reform-minded Islamic scholars believe that reopening ijtihad is a prerequisite for the survival of Islam"
+47458,ilama,whitish tropical fruit with a pinkish tinge related to custard apples; grown in the southern United States
+47459,ilama ilama_tree Annona_diversifolia,tropical American tree grown in southern United States having a whitish pink-tinged fruit
+47460,ilang-ilang,oil distilled from flowers of the ilang-ilang tree; used in perfumery
+47461,ilang-ilang ylang-ylang Cananga_odorata,evergreen Asian tree with aromatic greenish-yellow flowers yielding a volatile oil; widely grown in the tropics as an ornamental
+47462,ileal_artery intestinal_artery arteria_ileum,branch of the superior mesenteric artery that supplies the ileum
+47463,ileitis,inflammation of the ileum
+47464,ileocecal_valve,valve between the ileum of the small intestine and the cecum of the large intestine; prevents material from flowing back from the large to the small intestine
+47465,ileocolic_artery arteria_ileocolica,an artery that originates from the superior mesenteric artery and supplies the terminal part of the ileum and the cecum and the vermiform appendix and the ascending colon
+47466,ileocolic_vein vena_ileocolica,a vein that drains the end of the ileum and the appendix and the cecum and the lower part of the ascending colon
+47467,ileostomy,surgical procedure that creates an opening from the ileum through the abdominal wall to function as an anus; performed in cases of cancer of the colon or ulcerative colitis
+47468,ileum,the part of the small intestine between the jejunum and the cecum
+47469,iliac_artery arteria_iliaca,one of the large arteries supplying blood to the pelvis and legs
+47470,iliac_vein vena_iliaca,one of three veins draining the pelvic area
+47471,iliolumbar_artery arteria_iliolumbalis,an artery that originates in the internal iliac artery and supplies the pelvic muscles and bones
+47472,iliolumbar_vein vena_iliolumbalis,a branch of the internal iliac vein
+47473,ilium,the upper and widest of the three bones making up the hipbone
+47474,ill-being,lack of prosperity or happiness or health
+47475,ill_health unhealthiness health_problem,a state in which you are unable to function normally and without pain
+47476,ill_humor ill_humour distemper,an angry and disagreeable mood
+47477,ill_nature,a disagreeable, irritable, or malevolent disposition
+47478,illegal_possession,possession of controlled substances
+47479,illegality,unlawfulness by virtue of violating some legal statute
+47480,illegibility,the quality of writing (print or handwriting) that cannot be deciphered
+47481,illegitimacy,unlawfulness by virtue of not being authorized by or in accordance with law
+47482,illiberality,a disposition not to be liberal (generous) with money
+47483,illicitness,the quality of not conforming strictly to law
+47484,illiteracy,ignorance resulting from not reading
+47485,illiteracy analphabetism,an inability to read
+47486,illiterate illiterate_person nonreader,a person unable to read
+47487,illness unwellness malady sickness,impairment of normal physiological function affecting part or all of an organism
+47488,illogicality illogicalness illogic inconsequence,invalid or incorrect reasoning
+47489,illuminance illumination,the luminous flux incident on a unit area
+47490,illuminant,something that can serve as a source of light
+47491,illumination,the degree of visibility of your environment
+47492,illumination_unit,a measure of illumination
+47493,illusion fantasy phantasy fancy,something many people believe that is false; "they have the illusion that I am very wealthy"
+47494,illusion semblance,an erroneous mental representation
+47495,illustration,artwork that helps make something clear or attractive
+47496,illustration,a visual representation (a picture or diagram) that is used make some subject more pleasing or easier to understand
+47497,illustrator,an artist who makes illustrations (for books or magazines or advertisements etc.)
+47498,ilmenite,a weakly magnetic black mineral found in metamorphic and plutonic rocks; an iron titanium oxide in crystalline form; a source of titanium
+47499,image,the general impression that something (a person or organization or product) presents to the public; "although her popular image was contrived it served to inspire music and pageantry"; "the company tried to project an altruistic image"
+47500,image mental_image,an iconic mental representation; "her imagination forced images upon her too awful to contemplate"
+47501,image range range_of_a_function,(mathematics) the set of values of the dependent variable for which a function is defined; "the image of f(x) = x^2 is the set of all non-negative real numbers if the domain of the function is the set of all real numbers"
+47502,image_compression,the compression of graphics for storage or transmission
+47503,imaginary_being imaginary_creature,a creature of the imagination; a person that exists only in legends or myths or fiction
+47504,imaginary_part imaginary_part_of_a_complex_number,the part of a complex number that has the square root of -1 as a factor
+47505,imaginary_place mythical_place fictitious_place,a place that exists only in imagination; a place said to exist in fictional or religious writings
+47506,imagination imaginativeness vision,the formation of a mental image of something that is not perceived as real and is not present to the senses; "popular imagination created a world of demons"; "imagination reveals what the world could be"
+47507,imagination imaging imagery mental_imagery,the ability to form mental images of things or events; "he could still hear her in his imagination"
+47508,imagination_image thought-image,a mental image produced by the imagination
+47509,imaginative_comparison,the kind of mental comparison that is expressed in similes or metaphors or allegories
+47510,imaging tomography,(medicine) obtaining pictures of the interior of the body
+47511,imagism,a movement by American and English poets early in the 20th century in reaction to Victorian sentimentality; used common speech in free verse with clear concrete imagery
+47512,imago,(psychoanalysis) an idealized image of someone (usually a parent) formed in childhood
+47513,imago,an adult insect produced after metamorphosis
+47514,imam imaum,(Islam) the man who leads prayers in a mosque; for Shiites an imam is a recognized authority on Islamic theology and law and a spiritual guide
+47515,imaret,a hostel for pilgrims in Turkey
+47516,imbalance instability unbalance,a lack of balance or state of disequilibrium; "a hormonal imbalance"
+47517,imbecility,retardation more severe than a moron but not as severe as an idiot
+47518,imbibition,(chemistry) the absorption of a liquid by a solid or gel
+47519,imbrication overlapping lapping,covering with a design in which one element covers a part of another (as with tiles or shingles)
+47520,imbroglio,a very embarrassing misunderstanding
+47521,imbroglio embroilment,an intricate and confusing interpersonal or political situation
+47522,imidazole iminazole glyoxaline,an organic base C3H4N2; a histamine inhibitor
+47523,imide,any of a class of organic compounds that contain the divalent radical -CONHCO-
+47524,imipramine impramine_hydrochloride Imavate Tofranil,a tricyclic antidepressant (trade names Imavate and Tofranil) used to treat clinical depression
+47525,imitation,the doctrine that representations of nature or human behavior should be accurate imitations
+47526,imitation,something copied or derived from an original
+47527,imitation,copying (or trying to copy) the actions of someone else
+47528,imitative_electronic_deception electronic_imitative_deception,the introduction of electromagnetic energy into enemy systems that imitates enemy emissions
+47529,immanence immanency,the state of being within or not going beyond a given domain
+47530,immateriality,complete irrelevance requiring no further consideration
+47531,immateriality incorporeality,the quality of not being physical; not consisting of matter
+47532,immaturity immatureness,not having reached maturity
+47533,immediacy immediate_apprehension,immediate intuitive awareness
+47534,immediacy immediateness,lack of an intervening or mediating agency; "the immediacy of television coverage"
+47535,immediacy immediateness instantaneousness instancy,the quickness of action or occurrence; "the immediacy of their response"; "the instancy of modern communication"
+47536,immediate_allergy atopy atopic_allergy type_I_allergic_reaction,an allergic reaction that becomes apparent in a sensitized person only minutes after contact
+47537,immediate_constituent,a constituent of a sentence at the first step in an analysis: e.g., subject and predicate
+47538,immersion,a form of baptism in which part or all of a person's body is submerged
+47539,immersion_heater,a heating element that is immersed in the liquid that is to be heated (as in a hot-water tank)
+47540,immigrant,a person who comes to a country where they were not born in order to settle there
+47541,immigrant_class,recent immigrants who are lumped together as a class by their low socioeconomic status in spite of different cultural backgrounds
+47542,immigration,the body of immigrants arriving during a specified interval; "the increased immigration strengthened the colony"
+47543,immigration in-migration,migration into a place (especially migration to a country of which you are not a native in order to settle there)
+47544,imminence imminency imminentness impendence impendency forthcomingness,the state of being imminent and liable to happen soon
+47545,imminent_abortion threatened_abortion,the appearance of symptoms that signal the impending loss of the products of conception
+47546,immobility,the quality of not moving
+47547,immobilization immobilisation,fixation (as by a plaster cast) of a body part in order to promote proper healing; "immobilization of the injured knee was necessary"
+47548,immobilization immobilisation immobilizing,the act of limiting movement or making incapable of movement; "the storm caused complete immobilization of the rescue team"
+47549,immoderation immoderateness,the quality of being excessive and lacking in moderation
+47550,immodesty,the trait of being vain and conceited
+47551,immolation,killing or offering as a sacrifice
+47552,immorality,the quality of not being in accord with standards of right or good conduct; "the immorality of basing the defense of the West on the threat of mutual assured destruction"
+47553,immortal,a person (such as an author) of enduring fame; "Shakespeare is one of the immortals"
+47554,immortality,perpetual life after death
+47555,immortality,the quality or state of being immortal
+47556,immortelle Xeranthemum_annuum,mostly widely cultivated species of everlasting flowers having usually purple flowers; southern Europe to Iran; naturalized elsewhere
+47557,immotility,lacking an ability to move
+47558,immovability immovableness,not capable of being moved or rearranged
+47559,immovable_bandage,a bandage of cloth impregnated with a substance (e.g., plaster of Paris) that hardens soon after it is applied
+47560,immune,a person who is immune to a particular infection
+47561,immune_response immune_reaction immunologic_response,a bodily defense reaction that recognizes an invading substance (an antigen: such as a virus or fungus or bacteria or transplanted organ) and produces antibodies specific against that antigen
+47562,immune_system,a system (including the thymus and bone marrow and lymphoid tissues) that protects the body from foreign substances and pathogenic organisms by producing the immune response
+47563,immunity,the quality of being unaffected by something; "immunity to criticism"
+47564,immunity resistance,(medicine) the condition in which an organism can resist disease
+47565,immunization immunisation,the act of making immune (especially by inoculation)
+47566,immunoassay immunochemical_assay,identification of a substance (especially a protein) by its action as an antigen; "PSA in the blood can be measured with an immunochemical assay"
+47567,immunochemistry chemoimmunology,the field of chemistry concerned with chemical processes in immunology (such as chemical studies of antigens and antibodies)
+47568,immunocompetence,the ability to develop an immune response following exposure to an antigen
+47569,immunodeficiency,immunological disorder in which some part of the body's immune system is inadequate and resistance to infectious diseases is reduced
+47570,immunoelectrophoresis,electrophoresis to separate antigens and antibodies
+47571,immunofluorescence,(immunology) a technique that uses antibodies linked to a fluorescent dye in order to study antigens in a sample of tissue
+47572,immunogen immunizing_agent,any substance or organism that provokes an immune response (produces immunity) when introduced into the body
+47573,immunogenicity,the property of eliciting an immune response
+47574,immunoglobulin Ig immune_serum_globulin immune_gamma_globulin immune_globulin,a class of proteins produced in lymph tissue in vertebrates and that function as antibodies in the immune response
+47575,immunoglobulin_A IgA,one of the most common of the five major classes of immunoglobulins; the chief antibody in the membranes of the gastrointestinal and respiratory tracts
+47576,immunoglobulin_D IgD,one of the five major classes of immunoglobulins; present in blood serum in small amounts
+47577,immunoglobulin_E IgE,one of the five major classes of immunoglobulins; present primarily in the skin and mucous membranes
+47578,immunoglobulin_G IgG,one of the five major classes of immunoglobulins; the main antibody defense against bacteria
+47579,immunoglobulin_M IgM,one of the five major classes of immunoglobulins; involved in fighting blood infections and in triggering production of immunoglobulin G
+47580,immunohistochemistry,an assay that shows specific antigens in tissues by the use of markers that are either fluorescent dyes or enzymes (such as horseradish peroxidase)
+47581,immunological_disorder,a disorder of the immune system
+47582,immunologist,a medical scientist who specializes in immunology
+47583,immunology,the branch of medical science that studies the body's immune system
+47584,immunopathology,the branch of immunology that deals with pathologies of the immune system
+47585,immunosuppressant immunosuppressor immunosuppressive_drug immunosuppressive immune_suppressant_drug,a drug that lowers the body's normal immune response
+47586,immunosuppression,lowering the body's normal immune response to invasion by foreign substances; can be deliberate (as in lowering the immune response to prevent rejection of a transplanted organ) or incidental (as a side effect of radiotherapy or chemotherapy for cancer)
+47587,immunotherapy,therapy designed to produce immunity to a disease or to enhance resistance by the immune system
+47588,immutability immutableness fixity,the quality of being incapable of mutation; "Darwin challenged the fixity of species"
+47589,imp scamp monkey rascal rapscallion scalawag scallywag,one who is playfully mischievous
+47590,impact,the striking of one body against another
+47591,impact wallop,a forceful consequence; a strong effect; "the book had an important impact on my thinking"; "the book packs a wallop"
+47592,impact_printer,a printer that prints by mechanical impacts
+47593,impacted_fracture,fracture in which one broken end is wedged into the other broken end
+47594,impaction,the condition of being pressed closely together and firmly fixed
+47595,impaction,a disorder in which feces are impacted in the lower colon
+47596,impaction impacted_tooth,a disorder in which a tooth is so crowded in its socket that it cannot erupt normally
+47597,impairer,an agent that impairs; "crops can be great impairers of the soil"
+47598,impairment,damage that results in a reduction of strength or quality
+47599,impala Aepyceros_melampus,African antelope with ridged curved horns; moves with enormous leaps
+47600,impala_lily mock_azalia desert_rose kudu_lily Adenium_obesum Adenium_multiflorum,South African shrub having a swollen succulent stem and bearing showy pink and white flowers after the leaves fall; popular as an ornamental in tropics
+47601,impalement,the act of piercing with a sharpened stake as a form of punishment or torture
+47602,impartiality nonpartisanship,an inclination to weigh both views or opinions equally
+47603,impasto,painting that applies the pigment thickly so that brush or palette knife marks are visible
+47604,impatience,a restless desire for change and excitement
+47605,impatience,a dislike of anything that causes delay
+47606,impeachability indictability,the state of being liable to impeachment
+47607,impeachment,a formal document charging a public official with misconduct in office
+47608,impeccability,the quality of being exempt from sin or incapable of sinning
+47609,impecuniousness pennilessness penuriousness,a state of lacking money
+47610,impedimenta,the baggage and equipment carried by an army
+47611,impeller,the blade of a rotor (as in the compressor of a jet engine)
+47612,impenetrability impenetrableness,incomprehensibility by virtue of being too dense to understand
+47613,impenetrability imperviousness,the quality of being impenetrable (by people or light or missiles etc.)
+47614,impenitence impenitency,the trait of refusing to repent
+47615,imperative,some duty that is essential and urgent
+47616,imperative_mood imperative jussive_mood imperative_form,a mood that expresses an intention to influence the listener's behavior
+47617,imperativeness insistence insistency press pressure,the state of demanding notice or attention; "the insistence of their hunger"; "the press of business matters"
+47618,imperativeness instancy,the quality of being insistent; "he pressed his demand with considerable instancy"
+47619,imperceptibility,the property of being imperceptible by the mind or the senses
+47620,imperfectibility,the capability of becoming imperfect
+47621,imperfection imperfectness,the state or an instance of being imperfect
+47622,imperfective imperfective_aspect,aspect without regard to the beginning or completion of the action of the verb
+47623,imperforate_anus,a congenital defect of the anus; there is partial or complete obstruction of the anal opening
+47624,imperforate_hymen,hymen that is completely closed so that menstrual blood cannot flow out
+47625,imperial,a piece of luggage carried on top of a coach
+47626,imperial imperial_beard,a small tufted beard worn by Emperor Napoleon III
+47627,imperial_Japanese_morning_glory Ipomoea_imperialis,hybrid from Ipomoea nil
+47628,imperial_decree,a decree issued by a sovereign ruler
+47629,imperial_mammoth imperial_elephant Archidiskidon_imperator,largest known mammoth; of America
+47630,imperial_moth Eacles_imperialis,large American moth having yellow wings with purplish or brownish markings; larvae feed on e.g. maple and pine trees
+47631,imperialism,a policy of extending your rule over foreign countries
+47632,imperialism,a political orientation that advocates imperial interests
+47633,imperialism,any instance of aggressive extension of authority
+47634,imperialist,a believer in imperialism
+47635,imperiousness domineeringness overbearingness,the trait of being imperious and overbearing
+47636,imperishability imperishableness imperishingness,the property of being resistant to decay; "he advertised the imperishability of the product"
+47637,imperium,supreme authority; absolute dominion
+47638,impermanence impermanency,the property of not existing for indefinitely long durations
+47639,impermeability impermeableness,the property of something that cannot be pervaded by a liquid
+47640,impermissibility,inadmissibility as a consequence of not being permitted
+47641,impersonation personation,imitating the mannerisms of another person
+47642,impersonator imitator,someone who (fraudulently) assumes the appearance of another
+47643,impertinence perkiness pertness sauciness archness,inappropriate playfulness
+47644,impetigo,a very contagious infection of the skin; common in children; localized redness develops into small blisters that gradually crust and erode
+47645,impetuousness impetuosity,rash impulsiveness
+47646,impiety impiousness,unrighteousness by virtue of lacking respect for a god
+47647,impingement encroachment impact,influencing strongly; "they resented the impingement of American values on European culture"
+47648,impingement impaction,a sharp collision produced by striking or dashing against something
+47649,impishness mischievousness puckishness whimsicality,the trait of behaving like an imp
+47650,implant,a prosthesis placed permanently in tissue
+47651,implantation,the act of planting or setting in the ground
+47652,implantation,a surgical procedure that places something in the human body; "the implantation of radioactive pellets in the prostate gland"
+47653,implantation nidation,(embryology) the organic process whereby a fertilized egg becomes implanted in the lining of the uterus of placental mammals
+47654,implausibility implausibleness,the quality of provoking disbelief
+47655,implement,instrumentation (a piece of equipment or tool) used to effect an end
+47656,implementation effectuation,the act of implementing (providing a practical means for accomplishing something); carrying into effect
+47657,implication,a relation implicated by virtue of involvement or close connection (especially an incriminating involvement); "he was suspected of implication in several robberies"
+47658,implication,an accusation that brings into intimate and usually incriminating connection
+47659,implication logical_implication conditional_relation,a logical relation between propositions p and q of the form `if p then q'; if p is true then q cannot be false
+47660,implicitness,inexplicitness as a consequence of being implied or indirect
+47661,implied_trust,a trust inferred by operation of law
+47662,implosion,a sudden inward collapse; "the implosion of a light bulb"
+47663,implosion,the initial occluded phase of a stop consonant
+47664,implosion_therapy flooding,a technique used in behavior therapy; client is flooded with experiences of a particular kind until becoming either averse to them or numbed to them
+47665,impoliteness,a discourteous manner that ignores accepted social usage
+47666,imponderable,a factor whose effects cannot be accurately assessed; "human behavior depends on many imponderables"
+47667,import importation,commodities (goods or services) bought from a foreign country
+47668,import importee,an imported person brought from a foreign country; "the lead role was played by an import from Sweden"; "they are descendants of indentured importees"
+47669,import_credit,credit opened by an importer at a bank in his own country upon which an exporter may draw
+47670,import_duty,a duty imposed on imports
+47671,importance,the quality of being important and worthy of note; "the importance of a well-balanced diet"
+47672,importance grandness,a prominent status; "a person of importance"
+47673,important_person influential_person personage,a person whose actions and opinions strongly influence the course of events
+47674,importer,someone whose business involves importing goods from outside (especially from a foreign country)
+47675,importing importation,the commercial activity of buying and bringing in goods from a foreign country
+47676,importunity urgency urging,insistent solicitation and entreaty; "his importunity left me no alternative but to agree"
+47677,imposition,an uncalled-for burden; "he listened but resented the imposition"
+47678,imposition infliction,the act of imposing something (as a tax or an embargo)
+47679,impossibility impossible_action,an alternative that is not available
+47680,impossibility impossibleness,incapability of existing or occurring
+47681,impossible,something that cannot be done; "his assignment verged on the impossible"
+47682,imposter impostor pretender fake faker fraud sham shammer pseudo pseud role_player,a person who makes deceitful pretenses
+47683,imposture impersonation,pretending to be another person
+47684,impotence impotency,an inability (usually of the male animal) to copulate
+47685,impoundment impounding internment poundage,placing private property in the custody of an officer of the law
+47686,impracticability impracticableness,the quality of not being usable
+47687,impracticality,concerned with theoretical possibilities rather than actual use
+47688,imprecation,a slanderous accusation
+47689,imprecation malediction,the act of calling down a curse that invokes evil (and usually serves as an insult); "he suffered the imprecations of the mob"
+47690,impreciseness imprecision,the quality of lacking precision
+47691,impregnation,material with which something is impregnated; "the impregnation, whatever it was, had turned the rock blue"
+47692,impregnation saturation,the process of totally saturating something with a substance; "the impregnation of wood with preservative"; "the saturation of cotton with ether"
+47693,impress impressment,the act of coercing someone into government service
+47694,impression,(dentistry) an imprint of the teeth and gums in wax or plaster; "the dentist took an impression for use in preparing an inlay"
+47695,impression,an impressionistic portrayal of a person; "he did a funny impression of a politician"
+47696,impression,the act of pressing one thing on or into the surface of another; "he watched the impression of the seal on the hot wax"
+47697,impression effect,an outward appearance; "he made a good impression"; "I wanted to create an impression of success"; "she retained that bold effect in her reproductions of the original painting"
+47698,impression feeling belief notion opinion,a vague idea in which some confidence is placed; "his impression of her was favorable"; "what are your feelings about the crisis?"; "it strengthened my belief in his sincerity"; "I had a feeling that she was lying"
+47699,impression printing,all the copies of a work printed at one time; "they ran off an initial printing of 2000 copies"
+47700,impressionist,a painter who follows the theories of Impressionism
+47701,impressiveness,the quality of making a strong or vivid impression on the mind
+47702,impressiveness grandness magnificence richness,splendid or imposing in size or appearance; "the grandness of the architecture"; "impressed by the richness of the flora"
+47703,imprint,an identification of a publisher; a publisher's name along with the date and address and edition that is printed at the bottom of the title page; "the book was published under a distinguished imprint"
+47704,imprint,a distinctive influence; "English stills bears the imprint of the Norman invasion"
+47705,imprint,a device produced by pressure on a surface
+47706,imprint embossment,an impression produced by pressure or printing
+47707,imprinting,a learning process in early life whereby species specific patterns of behavior are established
+47708,imprisonment,putting someone in prison or in jail as lawful punishment
+47709,imprisonment internment,the act of confining someone in a prison (or as if in a prison)
+47710,improbability improbableness,the quality of being improbable; "impossibility should never be confused with improbability"; "the improbability of such rare coincidences"
+47711,impromptu,a short musical passage that seems to have been made spontaneously without advance preparation
+47712,impromptu,an extemporaneous speech or remark; "a witty impromptu must not sound premeditated"
+47713,improper_fraction,a fraction whose numerator is larger than the denominator
+47714,impropriety,the condition of being improper
+47715,impropriety improperness,an improper demeanor
+47716,improvement,the act of improving something; "their improvements increased the value of the property"
+47717,improvement betterment advance,a change for the better; progress in development
+47718,improvement melioration,a condition superior to an earlier condition; "the new school represents a great improvement"
+47719,improvidence shortsightedness,a lack of prudence and care by someone in the management of resources
+47720,improvisation,a creation spoken or written or composed extemporaneously (without prior preparation)
+47721,improvisation temporary_expedient,an unplanned expedient
+47722,improvised_explosive_device I.E.D. IED,an explosive device that is improvised
+47723,imprudence,a lack of caution in practical affairs
+47724,impudence cheek impertinence,an impudent statement
+47725,impulse impulsion impetus,the act of applying force suddenly; "the impulse knocked him over"
+47726,impulse_turbine,a turbine that is driven by jets direct against the blades
+47727,impulsiveness,the trait of acting suddenly on impulse without reflection
+47728,impunity,exemption from punishment or loss
+47729,impurity dross,worthless or dangerous material that should be removed; "there were impurities in the water"
+47730,impurity impureness,the condition of being impure
+47731,imputation,a statement attributing something dishonest (especially a criminal offense); "he denied the imputation"
+47732,imputation,the attribution to a source or cause; "the imputation that my success was due to nepotism meant that I was not taken seriously"
+47733,in-basket in-tray,a wood or metal receptacle placed on your desk to hold your incoming material
+47734,in-fighting,conflict between members of the same organization (usually concealed from outsiders)
+47735,in-fighting,boxing at close quarters
+47736,in-joke,a joke that is appreciated only by members of some particular group of people
+47737,in-law relative-in-law,a relative by marriage
+47738,in-line_skate,a shoe with a line of rollers fixed to the sole
+47739,in_time,in the correct rhythm; "the dancers moved in time with the music"
+47740,inability,lack of ability (especially mental ability) to do something
+47741,inability unfitness,lacking the power to perform
+47742,inaccessibility unavailability,the quality of not being available when needed
+47743,inaccuracy,the quality of being inaccurate and having errors
+47744,inaction inactivity inactiveness,the state of being inactive
+47745,inactivation,the process of rendering inactive; "the gene inactivation system"; "thermal inactivation of serum samples"
+47746,inactiveness inactivity inertia,a disposition to remain inactive or inert; "he had to overcome his inertia and get back to work"
+47747,inactivity,being inactive; being less active
+47748,inadequacy inadequateness,unsatisfactoriness by virtue of being inadequate
+47749,inadmissibility,unacceptability as a consequence of not being admissible
+47750,inadvisability,the quality of being ill-advised
+47751,inamorata,a woman with whom you are in love or have an intimate relationship
+47752,inamorato,a man with whom you are in love or have an intimate relationship
+47753,inanimateness lifelessness,not having life
+47754,inanition,exhaustion resulting from lack of food
+47755,inanition lassitude lethargy slackness,weakness characterized by a lack of vitality or energy
+47756,inanity senselessness mindlessness vacuity pointlessness,total lack of meaning or ideas
+47757,inapplicability,irrelevance by virtue of being inapplicable to the matter at hand
+47758,inappropriateness unworthiness,the quality of being not particularly suitable or befitting; "he retracted nothing that he had said about the inappropriateness of either a corporeal God or a God who is a person"; "his praise released from her loud protestations of her unworthiness"
+47759,inappropriateness wrongness,inappropriate conduct
+47760,inaptitude,a lack of aptitude
+47761,inaptness inappositeness,inappropriateness; "greater inaptness of expression would be hard to imagine"
+47762,inattention,lack of attention
+47763,inattentiveness,the trait of not being considerate and thoughtful of others
+47764,inattentiveness heedlessness,a lack of attentiveness (as to children or helpless people)
+47765,inaudibility inaudibleness,the quality of not being perceptible by the ear
+47766,inaugural_address inaugural,an address delivered at an inaugural ceremony (especially by a United States president)
+47767,inauguration inaugural,the ceremonial induction into a position; "the new president obviously enjoyed his inauguration"
+47768,inauguration startup,the act of starting a new operation or practice; "he opposed the inauguration of fluoridation"; "the startup of the new factory was delayed by strikes"
+47769,inauspiciousness unpropitiousness,the quality of suggesting an unsuccessful result
+47770,inborn_error_of_metabolism,any of a number of diseases in which an inherited defect (usually a missing or inadequate enzyme) results in an abnormality of metabolism
+47771,inbreeding,the act of mating closely related individuals
+47772,incandescence,light from heat
+47773,incandescence glow,the phenomenon of light emission by a body as its temperature is raised
+47774,incantation conjuration,a ritual recitation of words or sounds believed to have a magical effect
+47775,incapability incapableness,lack of potential for development
+47776,incapability incapableness,the quality of not being capable -- physically or intellectually or legally
+47777,incapacity,lack of intellectual power
+47778,incapacity,lack of physical or natural qualifications
+47779,incarnation,time passed in a particular bodily form; "he believes that his life will be better in his next incarnation"
+47780,incaution incautiousness,the trait of forgetting or ignoring possible danger
+47781,incendiary_bomb incendiary firebomb,a bomb that is designed to start fires; is most effective against flammable targets (such as fuel)
+47782,incense,a substance that produces a fragrant odor when burned
+47783,incense,the pleasing scent produced when incense is burned; "incense filled the room"
+47784,incense_cedar,any of several attractive trees of southwestern South America and New Zealand and New Caledonia having glossy evergreen leaves and scented wood
+47785,incense_cedar red_cedar Calocedrus_decurrens Libocedrus_decurrens,tall tree of the Pacific coast of North America having foliage like cypress and cinnamon-red bark
+47786,incense_tree,any of various tropical trees of the family Burseraceae yielding fragrant gums or resins that are burned as incense
+47787,incense_wood,fragrant wood of two incense trees of the genus Protium
+47788,incentive inducement motivator,a positive motivational influence
+47789,incentive_option incentive_stock_option,an option granted to corporate executives if the company achieves certain financial goals
+47790,incentive_program incentive_scheme,a formal scheme for inducing someone (as employees) to do something
+47791,incest,sexual intercourse between persons too closely related to marry (as between a parent and a child)
+47792,inch in,a unit of length equal to one twelfth of a foot
+47793,inchoative inchoative_aspect,aspect with regard to the beginning of the action of the verb
+47794,incidence,the striking of a light beam on a surface; "he measured the angle of incidence of the reflected light"
+47795,incidence relative_incidence,the relative frequency of occurrence of something
+47796,incident,a public disturbance; "the police investigated an incident at the bus station"
+47797,incident,a single distinct event
+47798,incidental,an item that is incidental
+47799,incidental_expense incidental minor_expense,(frequently plural) an expense not budgeted or not specified; "he requested reimbursement of $7 for incidental expenses"
+47800,incidental_music,music composed to accompany the action of a drama or to fill intervals between scenes
+47801,incineration,the act of burning something completely; reducing it to ashes
+47802,incinerator,a furnace for incinerating (especially to dispose of refuse)
+47803,incipiency incipience,beginning to exist or to be apparent; "he placed the incipience of democratic faith at around 1850"; "it is designed to arrest monopolies in their incipiency"
+47804,incision scratch prick slit dent,a depression scratched or carved into a surface
+47805,incision section surgical_incision,the cutting of or into body tissues or organs (especially by a surgeon as part of an operation)
+47806,incisiveness trenchancy,keenness and forcefulness of thought or expression or intellect
+47807,incisor,a tooth for cutting or gnawing; located in the front of the mouth in both jaws
+47808,incisure incisura,(anatomy) a notch or small hollow
+47809,incitation incitement,an act of urging on or spurring on or rousing to action or instigating; "the incitement of mutiny"
+47810,incitement incitation provocation,something that incites or provokes; a means of arousing or stirring to action
+47811,incivility,deliberate discourtesy
+47812,inclination,that toward which you are inclined to feel a liking; "her inclination is for classical music"
+47813,inclination angle_of_inclination,(geometry) the angle formed by the x-axis and a given line (measured counterclockwise from the positive half of the x-axis)
+47814,inclination disposition tendency,an attitude of mind especially one that favors one alternative over others; "he had an inclination to give up too easily"; "a tendency to be too strict"
+47815,inclination inclination_of_an_orbit,(astronomy) the angle between the plane of the orbit and the plane of the ecliptic stated in degrees
+47816,inclination inclining,the act of inclining; bending forward; "an inclination of his head indicated his agreement"
+47817,incline_bench_press,a bench press performed on an inclined bench
+47818,inclined_fault,a geological fault in which one side is above the other
+47819,inclined_plane,a simple machine for elevating objects; consists of plane surface that makes an acute angle with the horizontal
+47820,inclinometer,an instrument showing the angle that an aircraft makes with the horizon
+47821,inclinometer dip_circle,a measuring instrument for measuring the angle of magnetic dip (as from an airplane)
+47822,inclusion,the state of being included
+47823,inclusion,the act of including
+47824,inclusion comprehension,the relation of comprising something; "he admired the inclusion of so many ideas in such a short work"
+47825,inclusion_body cellular_inclusion inclusion,any small intracellular body found within another (characteristic of certain diseases); "an inclusion in the cytoplasm of the cell"
+47826,inclusion_body_myositis,myositis characterized by weakness of limb muscles (especially the thighs and wrists and fingers); sometimes involves swallowing muscles; onset after 50 and slowly progressive; seen more often in men than in women
+47827,incognizance,a lack of knowledge or recognition
+47828,incoherence incoherency,lack of cohesion or clarity or organization
+47829,incoherence incoherency unintelligibility,nonsense that is simply incoherent and unintelligible
+47830,income,the financial gain (earned or unearned) accruing over a given period of time
+47831,income_bracket tax_bracket income_tax_bracket,a category of taxpayers based on the amount of their income
+47832,income_statement earnings_report operating_statement profit-and-loss_statement,a financial statement that gives operating results for a specific period
+47833,income_tax,a personal tax levied on annual income
+47834,incommutability,the quality of being not interchangeable
+47835,incompatibility,(immunology) the degree to which the body's immune system will try to reject foreign material (as transfused blood or transplanted tissue)
+47836,incompatibility,the quality of being unable to exist or work in congenial combination
+47837,incompatibility mutual_exclusiveness inconsistency repugnance,the relation between propositions that cannot both be true at the same time
+47838,incompetence,inability of a part or organ to function properly
+47839,incompetence incompetency,lack of physical or intellectual ability or qualifications
+47840,incompetent incompetent_person,someone who is not competent to take effective action
+47841,incompetent_cervix,(obstetrics) uterine cervix that becomes dilated before term and without labor often resulting in miscarriage or premature birth
+47842,incomplete_abortion partial_abortion,termination of pregnancy without expulsion of all of the products of conception
+47843,incomplete_fracture,fracture that does not go across the entire width of the bone
+47844,incompleteness rawness,the state of being crude and incomplete and imperfect; "the study was criticized for incompleteness of data but it stimulated further research"; "the rawness of his diary made it unpublishable"
+47845,incomprehensibility,the quality of being incomprehensible
+47846,incomprehension,an inability to understand; "his incomprehension of the consequences"
+47847,incompressibility,the property of being incompressible
+47848,inconceivability inconceivableness,the state of being impossible to conceive
+47849,inconclusiveness,the quality of being inconclusive
+47850,incongruity incongruousness,the quality of disagreeing; being unsuitable and inappropriate
+47851,inconsequence,having no important effects or influence
+47852,inconsideration inconsiderateness thoughtlessness,the quality of failing to be considerate of others
+47853,inconsistency,the quality of being inconsistent and lacking a harmonious uniformity among things or parts
+47854,inconspicuousness,the quality of being not easily seen
+47855,inconstancy changefulness,the quality of being changeable and variable
+47856,incontinence incontinency,involuntary urination or defecation
+47857,incontrovertibility incontrovertibleness positivity positiveness,the quality of being undeniable and not worth arguing about
+47858,inconvenience,the quality of not being useful or convenient
+47859,inconvenience incommodiousness,an inconvenient discomfort
+47860,inconvertibility,the quality of not being exchangeable; "the inconvertibility of their currency made international trade impossible"
+47861,incoordination,a lack of coordination of movements
+47862,incorporation,consolidating two or more things; union in (or into) one body
+47863,incorporation,including by incorporating
+47864,incorrectness,lack of conformity to social expectations
+47865,incorrectness wrongness,the quality of not conforming to fact or truth
+47866,incorruptibility,the incapability of being corrupted
+47867,incorruptness incorruption,characterized by integrity or probity
+47868,increase,a change resulting in an increase; "the increase is scheduled for next month"
+47869,increase increment,the amount by which something increases; "they proposed an increase of 15 percent in the fare"
+47870,increase increment growth,a process of becoming larger or longer or more numerous or more important; "the increase in unemployment"; "the growth of population"
+47871,increase step-up,the act of increasing something; "he gave me an increase in salary"
+47872,incredibility incredibleness,the quality of being incredible
+47873,incredulity disbelief skepticism mental_rejection,doubt about the truth of something
+47874,incrimination inculpation blame,an accusation that you are responsible for some lapse or misdeed; "his incrimination was based on my testimony"; "the police laid the blame on the driver"
+47875,incrustation encrustation,the formation of a crust
+47876,incrustation encrustation,a decorative coating of contrasting material that is applied to a surface as an inlay or overlay
+47877,incubation,(pathology) the phase in the development of an infection between the time a pathogen enters the body and the time the first symptoms appear
+47878,incubation,maintaining something at the most favorable temperature for its development
+47879,incubation_period,the period between infection and the appearance of symptoms of the disease
+47880,incubator brooder,apparatus consisting of a box designed to maintain a constant temperature by the use of a thermostat; used for chicks or premature infants
+47881,incubus,someone who depresses or worries others
+47882,incubus,a male demon believed to lie on sleeping persons and to have sexual intercourse with sleeping women
+47883,inculcation ingraining instilling,teaching or impressing upon the mind by frequent instruction or repetition
+47884,incumbency,a duty that is incumbent upon you
+47885,incumbency,the office of an incumbent
+47886,incumbent officeholder,the official who holds an office
+47887,incurability,incapability of being altered in disposition or habits; "the incurability of his optimism"
+47888,incurability incurableness,incapability of being cured or healed
+47889,incurable,a person whose disease is incurable
+47890,incurrence,the act of incurring (making yourself subject to something undesirable)
+47891,incurring,acquiring or coming into something (usually undesirable); "incurring debts is easier than paying them"
+47892,incursion,the mistake of incurring liability or blame
+47893,incursion,the act of entering some territory or domain (often in large numbers); "the incursion of television into the American living room"
+47894,incurvation,the action of creating a curved shape
+47895,incus anvil,the ossicle between the malleus and the stapes
+47896,indaba,a council at which indigenous peoples of southern Africa meet to discuss some important question
+47897,indapamide Lozal,diuretic (trade name Lozal) used in the treatment of hypertension
+47898,indebtedness liability financial_obligation,an obligation to pay money to another party
+47899,indecency,the quality of being indecent
+47900,indecency impropriety,an indecent or improper act
+47901,indecent_exposure public_nudity,vulgar and offensive nakedness in a public place
+47902,indecision indecisiveness irresolution,doubt concerning two or more possible alternatives or courses of action; "his indecision was only momentary but the opportunity was lost"
+47903,indecisiveness indecision,the trait of irresolution; a lack of firmness of character or purpose; "the king's incurable indecisiveness caused turmoil in his court"
+47904,indecorum indecorousness,a lack of decorum
+47905,indefatigability indefatigableness tirelessness,tireless determination
+47906,indefinite_article,a determiner (as `a' or `some' in English) that indicates nonspecific reference
+47907,indefinite_integral,the set of functions F(x) + C, where C is any real number, such that F(x) is the integral of f(x)
+47908,indefinite_quantity,an estimated quantity
+47909,indefiniteness indeterminateness indefinity indetermination indeterminacy,the quality of being vague and poorly defined
+47910,indelible_ink,ink that cannot be erased or washed away
+47911,indelicacy,the trait of being indelicate and offensive
+47912,indelicacy,an impolite act or expression
+47913,indemnification,an act of compensation for actual loss or damage or for trouble and annoyance
+47914,indemnity,legal exemption from liability for damages
+47915,indemnity insurance,protection against future loss
+47916,indene,a colorless liquid hydrocarbon extracted from petroleum or coal tar and used in making synthetic resins
+47917,indent,an order for goods to be exported or imported
+47918,indentation,the act of cutting into an edge with toothlike notches or angular incisions
+47919,indentation indention indent indenture,the space left between the margin and the start of an indented line
+47920,indentation indenture,a concave cut into a surface or edge (as in a coastline)
+47921,indenture,formal agreement between the issuer of bonds and the bondholders as to terms of the debt
+47922,indenture,a contract binding one party into the service of another for a specified term
+47923,independence,the successful ending of the American Revolution; "they maintained close relations with England even after independence"
+47924,independence independency,freedom from control or influence of another or others
+47925,independent_agency,an agency of the United States government that is created by an act of Congress and is independent of the executive departments
+47926,independent_variable experimental_variable,(statistics) a variable whose values are independent of changes in the values of other variables
+47927,indestructibility,the strength to resist destruction
+47928,index,a numerical scale used to compare variables with one another or with some reference number
+47929,index,an alphabetical listing of names and topics along with page numbers where they are discussed
+47930,index index_finger forefinger,the finger next to the thumb
+47931,index index_number indicant indicator,a number or ratio (a value on a scale of measurement) derived from a series of observed facts; can reveal relative changes as a function of time
+47932,index_case,the earliest documented case of a disease that is included in an epidemiological study
+47933,index_fossil guide_fossil,a fossil known to have lived in a particular geologic age that can be used to date the rock layer in which it is found
+47934,index_fund,a mutual fund whose assets are stocks on a given list
+47935,index_fund,a mutual fund that invests in the stocks that are the basis of a well-known stock or bond index
+47936,index_register,(computer science) a register used to determine the address of an operand
+47937,indexation,a system of economic regulation: wages and interest are tied to the cost-of-living index in order to reduce the effects of inflation
+47938,indexer,someone who provides an index
+47939,indexing,the act of classifying and providing an index in order to make items easier to retrieve
+47940,india_paper,a thin tough opaque paper used in fine books
+47941,indication,(medicine) a reason to prescribe a drug or perform a procedure; "the presence of bacterial infection was an indication for the use of antibiotics"
+47942,indication,something (as a course of action) that is indicated as expedient or necessary; "there were indications that it was time to leave"
+47943,indication denotation,the act of indicating or pointing out by name
+47944,indication indicant,something that serves to indicate or suggest; "an indication of foul play"; "indications of strain"; "symptoms are the prime indicants of disease"
+47945,indicative_mood indicative declarative_mood declarative common_mood fact_mood,a mood (grammatically unmarked) that represents the act or state as an objective fact
+47946,indicator,(chemistry) a substance that changes color to indicate the presence of some ion or substance; can be used to indicate the completion of a chemical reaction or (in medicine) to test for a particular reaction
+47947,indicator,a signal for attracting attention
+47948,indicator,a device for showing the operating condition of some system
+47949,indiction,a 15-year cycle used as a chronological unit in ancient Rome and adopted in some medieval kingdoms
+47950,indictment,an accusation of wrongdoing; "the book is an indictment of modern philosophy"
+47951,indictment bill_of_indictment,a formal document written for a prosecuting attorney charging a person with some offense
+47952,indie,a pop group not affiliated with a major record company
+47953,indie,an independent film company not associated with an established studio
+47954,indifference,unbiased impartial unconcern
+47955,indigence need penury pauperism pauperization,a state of extreme poverty or destitution; "their indigence appalled him"; "a general state of need exists among the homeless"
+47956,indigenous_language,a language that originated in a specified place and was not brought to that place from elsewhere
+47957,indigenousness autochthony endemism,nativeness by virtue of originating or occurring naturally (as in a particular place)
+47958,indigestibility indigestibleness,the property of being difficult to digest
+47959,indigestion dyspepsia stomach_upset upset_stomach,a disorder of digestive function characterized by discomfort or heartburn or nausea
+47960,indignation outrage,a feeling of righteous anger
+47961,indignity,an affront to one's dignity or self-esteem
+47962,indigo,a blue-violet color
+47963,indigo indigo_plant Indigofera_tinctoria,deciduous subshrub of southeastern Asia having pinnate leaves and clusters of red or purple flowers; a source of indigo dye
+47964,indigo_broom horsefly_weed rattle_weed Baptisia_tinctoria,much-branched erect herb with bright yellow flowers; distributed from Massachusetts to Florida
+47965,indigo_bunting indigo_finch indigo_bird Passerina_cyanea,small deep blue North American bunting
+47966,indigo_snake gopher_snake Drymarchon_corais,large dark-blue nonvenomous snake that invades burrows; found in southern North America and Mexico
+47967,indinavir Crixivan,a protease inhibitor (trade name Crixivan) used for treating HIV
+47968,indirect_antonym,antonyms whose opposition is mediated (e.g., the antonymy of `wet' and `parched' is mediated by the similarity of `parched' to `dry')
+47969,indirect_discourse,a report of a discourse in which deictic terms are modified appropriately (e.g., "he said `I am a fool'" would be modified to "he said he is a fool")
+47970,indirect_fire,fire delivered on a target that is not itself used as the point of aim for the weapons
+47971,indirect_immunofluorescence,a method of using fluorescence microscopy to detect the presence of an antigen indirectly
+47972,indirect_lighting,a concealed lighting fixture
+47973,indirect_object,the object that is the recipient or beneficiary of the action of the verb
+47974,indirect_tax,a tax levied on goods or services rather than on persons or organizations
+47975,indirect_transmission,a transmission mechanism in which the infectious agent is transferred to the person by a fomite of vector
+47976,indirection,indirect procedure or action; "he tried to find out by indirection"
+47977,indirection,deceitful action that is not straightforward; "he could see through the indirections of diplomats"
+47978,indirectness,having the characteristic of lacking a true course toward a goal
+47979,indiscipline undiscipline,the trait of lacking discipline
+47980,indiscretion injudiciousness,the trait of being injudicious
+47981,indiscretion peccadillo,a petty misdeed
+47982,indispensability indispensableness vitalness,the quality possessed by something that you cannot possibly do without
+47983,indisposition,a slight illness
+47984,indisputability indubitability unquestionability unquestionableness,the quality of being beyond question or dispute or doubt
+47985,indistinctness softness blurriness fogginess fuzziness,the quality of being indistinct and without sharp outlines
+47986,indium In atomic_number_49,a rare soft silvery metallic element; occurs in small quantities in sphalerite
+47987,individual,a single organism
+47988,individual_retirement_account IRA,a retirement plan that allows you to contribute a limited yearly sum toward your retirement; taxes on the interest earned in the account are deferred
+47989,individualism,a belief in the importance of the individual and the virtue of self-reliance and personal independence
+47990,individualism laissez_faire,the doctrine that government should not interfere in commercial affairs
+47991,individualist,a person who pursues independent thought or action
+47992,individuality individualism individuation,the quality of being individual; "so absorbed by the movement that she lost all sense of individuality"
+47993,individualization individualisation individuation,discriminating the individual from the generic group or species
+47994,indoctrination,teaching someone to accept doctrines uncritically
+47995,indoleacetic_acid IAA,a plant hormone promoting elongation of stems and roots
+47996,indolebutyric_acid,a synthetic plant hormone promoting elongation of stems and roots
+47997,indolence laziness,inactivity resulting from a dislike of work
+47998,indomethacin Indocin,a nonsteroidal anti-inflammatory drug (trade name Indocin)
+47999,indomitability invincibility,the property being difficult or impossible to defeat
+48000,indri indris Indri_indri Indri_brevicaudatus,large short-tailed lemur of Madagascar having thick silky fur in black and white and fawn
+48001,induced_abortion,a deliberate termination of pregnancy
+48002,inducement inducing,act of bringing about a desired result; "inducement of sleep"
+48003,inducer,an agent capable of activating specific genes
+48004,inductance_unit,a measure of the property of an electric circuit by which an electromotive force is induced in it
+48005,inductee,a person inducted into an organization or social group; "Ty Cobb and Babe Ruth were 1936 inductees in the National Baseball Hall of Fame"
+48006,induction,the act of bringing about something (especially at an early time); "the induction of an anesthetic state"
+48007,induction inductance,an electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current
+48008,induction_coil,a coil for producing a high voltage from a low-voltage source
+48009,induction_heating,the heating of a conducting material caused by an electric current induced in it
+48010,induction_of_labor,(obstetrics) inducing the childbirth process artificially by administering oxytocin or by puncturing the amniotic sac
+48011,inductor inductance,an electrical device (typically a conducting coil) that introduces inductance into a circuit
+48012,indulgence,the remission by the pope of the temporal punishment in purgatory that is still due for sins even after absolution; "in the Middle Ages the unrestricted sale of indulgences by pardoners became a widespread abuse"
+48013,indulgence indulging pampering humoring,the act of indulging or gratifying a desire
+48014,indulgence lenience leniency,a disposition to yield to the wishes of someone; "too much indulgence spoils a child"
+48015,indulgence self-indulgence,an inability to resist the gratification of whims and desires
+48016,indumentum indument,a covering of fine hairs (or sometimes scales) as on a leaf or insect
+48017,indurated_clay,hardened clay
+48018,indusium,a membrane enclosing and protecting the developing spores especially that covering the sori of a fern
+48019,industrial_air_pollution,pollution resulting from an industrial plant discharging pollutants into the atmosphere
+48020,industrial_arts,a course in the methods of using tools and machinery as taught in secondary schools and technical schools
+48021,industrial_bank industrial_loan_company,a finance company that makes small loans to industrial workers
+48022,industrial_engineering industrial_management,the branch of engineering that deals with the creation and management of systems that integrate people and materials and energy in productive ways
+48023,industrial_park,a tract of land at a distance from city center that is designed for a cluster of businesses and factories
+48024,industrial_process,a systematic series of mechanical or chemical operations that produce or manufacture something
+48025,industrial_union vertical_union,a labor union that admits all workers in a given industry irrespective of their craft
+48026,industrial_watercourse,a canal that is operated by one or more industries
+48027,industrialism,an economic system built on large industries rather than on agriculture or craftsmanship
+48028,industrialist,someone who manages or has significant financial interest in an industrial enterprise
+48029,industrialization industrialisation industrial_enterprise,the development of industry on an extensive scale
+48030,industry,the people or companies engaged in a particular kind of commercial enterprise; "each industry has its own trade publications"
+48031,industry manufacture,the organized action of making of goods and services for sale; "American industry is making increased use of computers to control production"
+48032,industry_analyst,an analyst of conditions affecting a particular industry
+48033,indweller,activation by an inner spirit or force or principle; "the Holy Spirit is the indweller of the church and its members"
+48034,ineffectiveness ineffectualness ineffectuality,lacking the power to be effective
+48035,inefficacy inefficaciousness,a lack of efficacy
+48036,inefficiency,unskillfulness resulting from a lack of efficiency
+48037,inelasticity,the lack of elasticity
+48038,inelegance,the quality of lacking refinement and good taste
+48039,ineligibility,the quality or state of being ineligible
+48040,ineluctability unavoidability,the quality of being impossible to avoid or evade
+48041,inequality,lack of equality; "the growing inequality between rich and poor"
+48042,inerrancy,(Christianity) exemption from error; "biblical inerrancy"
+48043,inertia,(physics) the tendency of a body to maintain its state of rest or uniform motion unless acted upon by an external force
+48044,inertial_guidance inertial_navigation,a method of controlling the flight of a missile by devices that respond to inertial forces
+48045,inertial_guidance_system inertial_navigation_system,a system to control a plane or spacecraft; uses inertial forces
+48046,inertial_mass,(physics) the mass of a body as determined by the second law of motion from the acceleration of the body when it is subjected to a force that is not due to gravity
+48047,inertial_reference_frame inertial_frame,a coordinate system in which Newton's first law of motion is valid
+48048,inertness,immobility by virtue of being inert
+48049,inessential nonessential,anything that is not essential; "they discarded all their inessentials"
+48050,inessentiality,not of basic importance
+48051,inevitability inevitableness,the quality of being unavoidable
+48052,inevitable,an unavoidable event; "don't argue with the inevitable"
+48053,inexactness inexactitude,the quality of being inexact
+48054,inexpedience inexpediency,the quality of being unsuited to the end in view
+48055,inexpensiveness,the quality of being affordable
+48056,inexperience rawness,lack of experience and the knowledge and understanding derived from experience; "procedural inexperience created difficulties"; "their poor behavior was due to the rawness of the troops"
+48057,inexplicitness,unclearness by virtue of not being explicit
+48058,infallibility,the quality of never making an error
+48059,infamy,evil fame or public reputation
+48060,infamy opprobrium,a state of extreme dishonor; "a date which will live in infamy"- F.D.Roosevelt; "the name was a by-word of scorn and opprobrium throughout the city"
+48061,infancy babyhood,the earliest state of immaturity
+48062,infancy babyhood early_childhood,the early stage of growth or development
+48063,infant_deathrate infant_mortality infant_mortality_rate,the death rate during the first year of life
+48064,infant_feeding,feeding an infant
+48065,infant_school,British school for children aged 5-7
+48066,infanticide,a person who murders an infant
+48067,infanticide,murdering an infant
+48068,infantile_autism,a rare but serious syndrome of childhood characterized by withdrawal and lack of social responsiveness or interest in others and serious linguistic deficits; "there is considerable dispute among specialists concerning infantile autism"
+48069,infantilism,an abnormal condition in which an older child or adult retains infantile characteristics
+48070,infantilism,infantile behavior in mature persons
+48071,infantry foot,an army unit consisting of soldiers who fight on foot; "there came ten thousand horsemen and as many fully-armed foot"
+48072,infantryman marcher foot_soldier footslogger,fights on foot with small arms
+48073,infarct infarction,localized necrosis resulting from obstruction of the blood supply
+48074,infatuation,a foolish and usually extravagant passion or love or admiration
+48075,infatuation,an object of extravagant short-lived passion
+48076,infeasibility unfeasibility,the quality of not being doable
+48077,infection,the pathological state resulting from the invasion of the body by pathogenic microorganisms
+48078,infection,(phonetics) the alteration of a speech sound under the influence of a neighboring sound
+48079,infection,(medicine) the invasion of the body by pathogenic microorganisms and their multiplication which can lead to tissue damage and disease
+48080,infection,moral corruption or contamination; "ambitious men are led astray by an infection that is almost unavoidable"
+48081,infection,(international law) illegality that taints or contaminates a ship or cargo rendering it liable to seizure
+48082,infection contagion transmission,an incident in which an infectious disease is transmitted
+48083,infectious_agent infective_agent,an agent capable of producing infection
+48084,infectious_disease,a disease transmitted only by a specific kind of contact
+48085,infectious_mononucleosis mononucleosis mono glandular_fever kissing_disease,an acute disease characterized by fever and swollen lymph nodes and an abnormal increase of mononuclear leucocytes or monocytes in the bloodstream; not highly contagious; some believe it can be transmitted by kissing
+48086,infelicity,inappropriate and unpleasing manner or style (especially manner or style of expression)
+48087,inference illation,the reasoning involved in drawing a conclusion or making a logical judgment on the basis of circumstantial evidence and prior conclusions rather than on the basis of direct observation
+48088,inferior,one of lesser rank or station or quality
+48089,inferior_alveolar_artery arteria_alveolaris_inferior,the alveolar artery that goes through the mandibular canal to supply the lower teeth
+48090,inferior_cerebellar_artery,the inferior branch of the cerebellar artery
+48091,inferior_cerebral_vein venae_cerebrum_inferior,veins that drain the undersurface of the cerebral hemispheres and empty into the cavernous and transverse sinuses
+48092,inferior_colliculus,an essential auditory center in the midbrain
+48093,inferior_conjunction,(astronomy) the alignment of the Earth and a planet on the same side of the sun
+48094,inferior_court lower_court,any court whose decisions can be appealed to a higher court
+48095,inferior_epigastric_vein vena_epigastrica_inferior,empties into the external iliac vein
+48096,inferior_labial_artery arteria_labialis_inferior,an artery that is a branch of the facial artery that supplies the lower lip
+48097,inferior_labial_vein vena_labialis_inferior,a tributary of the facial vein that drains the lower lip
+48098,inferior_mesenteric_artery,arises near the lower end of the aorta and supplies the large intestine
+48099,inferior_ophthalmic_vein,a vein that drains a venous network in the floor and medial wall of the eye socket
+48100,inferior_planet,any of the planets whose orbit lies inside the earth's orbit
+48101,inferior_pulmonary_vein vena_pulmanalis_inferior,either of two pulmonary veins (left and right) returning blood from the inferior lobes of the lungs
+48102,inferior_rectus_muscle inferior_rectus rectus_inferior,the ocular muscle whose contraction turns the eyeball down and medially
+48103,inferior_thalamostriate_vein striate_vein,tributaries to the basal vein
+48104,inferior_thyroid_vein,any of several veins on each side that drain the thyroid gland and empty into the innominate vein
+48105,inferior_vena_cava postcava,receives blood from lower limbs and abdominal organs and empties into the posterior part of the right atrium of the heart; formed from the union of the two iliac veins
+48106,inferiority low_quality,an inferior quality
+48107,inferiority lower_status lower_rank,the state of being inferior
+48108,inferiority unfavorable_position,the quality of being a competitive disadvantage
+48109,inferiority_complex,a sense of personal inferiority arising from conflict between the desire to be noticed and the fear of being humiliated
+48110,infernal,an inhabitant of Hell; "his roar made the infernals quake"
+48111,infestation,the state of being invaded or overrun by parasites
+48112,infestation plague,a swarm of insects that attack plants; "a plague of grasshoppers"
+48113,infidelity unfaithfulness,the quality of being unfaithful
+48114,infielder,(baseball) a person who plays a position in the infield
+48115,infiltration,a process in which individuals (or small groups) penetrate an area (especially the military penetration of enemy positions without detection)
+48116,infiltrator,someone who takes up a position surreptitiously for the purpose of espionage
+48117,infiltrator,an intruder (as troops) with hostile intent
+48118,infiniteness infinitude unboundedness boundlessness limitlessness,the quality of being infinite; without bound or limit
+48119,infinitesimal,(mathematics) a variable that has zero as its limit
+48120,infinitive,the uninflected form of the verb
+48121,infinitude,an infinite quantity
+48122,infirmity frailty debility feebleness frailness valetudinarianism,the state of being weak in health or body (especially from old age)
+48123,infix,an affix that is inserted inside the word
+48124,infix_notation,a notation for forming mathematical expressions using parentheses and governed by rules of operator precedence; operators are dispersed among the operands
+48125,inflammation inflaming,arousal to violent emotion
+48126,inflammation redness rubor,a response of body tissues to injury or irritation; characterized by pain and swelling and redness and heat
+48127,inflammatory_disease,a disease characterized by inflammation
+48128,inflater inflator,an air pump operated by hand to inflate something (as a tire)
+48129,inflation,(cosmology) a brief exponential expansion of the universe (faster than the speed of light) postulated to have occurred shortly after the big bang
+48130,inflation,the act of filling something with air
+48131,inflation rising_prices,a general and progressive increase in prices; "in inflation everything gets more valuable except money"
+48132,inflation_rate rate_of_inflation,the rate of change of prices (as indicated by a price index) calculated on a monthly or annual basis
+48133,inflation_therapy,therapy in which water or oxygen or a drug is introduced into the respiratory tract with inhaled air
+48134,inflationary_spiral,an episode of inflation in which prices and wages increase at an increasing rate and currency rapidly loses value
+48135,inflection flection flexion,deviation from a straight or normal course
+48136,inflection inflexion,a change in the form of a word (usually by adding a suffix) to indicate a change in its grammatical function
+48137,inflectional_ending inflectional_suffix,an inflection that is added at the end of a root word
+48138,inflectional_morphology accidence,the part of grammar that deals with the inflections of words
+48139,inflexibility inflexibleness,a lack of physical flexibility
+48140,inflexibility rigidity rigidness,the quality of being rigid and rigorously severe
+48141,infliction,an act causing pain or damage
+48142,infliximab Remicade,a monoclonal antibody (trade name Remicade) used to treat Crohn's disease and rheumatoid arthritis; administered by infusion; use and dosage must be determined by a physician
+48143,infliximab Remicade,an anti-TNF compound (trade name Remicade) consisting of an antibody directed against TNF; it is given intravenously at one-month to three-month intervals; used in treatment of regional enteritis and rheumatoid arthritis
+48144,inflorescence,the flowering part of a plant or arrangement of flowers on a stalk
+48145,inflow influx,the process of flowing in
+48146,influence,the effect of one thing (or person) on another; "the influence of mechanical action"
+48147,influence,one having power to influence another; "she was the most important influence in my life"; "he was a bad influence on the children"
+48148,influence,a cognitive factor that tends to have an effect on what you do; "her wishes had a great influence on his thinking"
+48149,influence,a power to affect persons or events especially power based on prestige etc; "used her parents' influence to get the job"
+48150,influence,causing something without any direct or apparent effort
+48151,influenza flu grippe,an acute febrile highly contagious viral disease
+48152,infomercial informercial,a television commercial presented in the form of a short documentary
+48153,informality,a manner that does not take forms and ceremonies seriously
+48154,informant source,a person who supplies information
+48155,information,formal accusation of a crime
+48156,information,knowledge acquired through study or experience or instruction
+48157,information info,a message received and understood
+48158,information selective_information entropy,(communication theory) a numerical measure of the uncertainty of an outcome; "the signal contained thousands of bits of information"
+48159,information_age,a period beginning in the last quarter of the 20th century when information became easily accessible through publications and through the manipulation of information by computers and computer networks
+48160,information_bulletin,a bulletin containing the latest information
+48161,information_gathering,the act of collecting information
+48162,information_measure,a system of measurement of information based on the probabilities of the events that convey information
+48163,information_return,a return that provides information to the tax collector but does not compute the tax liability
+48164,information_science informatics information_processing IP,the sciences concerned with gathering, manipulating, storing, retrieving, and classifying recorded information
+48165,information_technology IT,the branch of engineering that deals with the use of computers and telecommunications to retrieve and store and transmit information
+48166,information_theory,(computer science) a statistical theory dealing with the limits and efficiency of information processing
+48167,information_warfare IW,the use of information or information technology during a time of crisis or conflict to achieve or promote specific objectives over a specific adversary or adversaries; "not everyone agrees that information warfare is limited to the realm of traditional warfare"
+48168,informed_consent,consent by a patient to undergo a medical or surgical treatment or to participate in an experiment after the patient understands the risks involved
+48169,informer betrayer rat squealer blabber,one who reveals confidential information in return for money
+48170,informer's_privilege,the right of the government to refuse to reveal the identity of an informer
+48171,informing making_known,a speech act that conveys information
+48172,informing ratting,to furnish incriminating evidence to an officer of the law (usually in return for favors)
+48173,infraorbital_artery arteria_infraorbitalis,an artery that originates from the maxillary artery and supplies structures below the orbit (from lower eyelid to upper lip)
+48174,infrared infrared_frequency,the infrared region of the electromagnetic spectrum; electromagnetic wave frequencies below the visible range; "they could sense radiation in the infrared"
+48175,infrared infrared_light infrared_radiation infrared_emission,electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves
+48176,infrared_ray,a ray of infrared radiation; produces a thermal effect (as from an infrared lamp)
+48177,infrared_spectrum,the spectrum of infrared radiation
+48178,infrared_therapy,the use of infrared radiation (as by infrared lamps or heating pads or hot water bottles) to relieve pain and increase circulation to a particular area of the body
+48179,infrastructure base,the stock of basic facilities and capital equipment needed for the functioning of a country or area; "the industrial base of Japan"
+48180,infrastructure substructure,the basic structure or features of a system or organization
+48181,infructescence,the fruiting stage of the inflorescence
+48182,infundibulum,any of various funnel-shaped parts of the body (but especially the hypophyseal stalk)
+48183,infuriation enragement,a feeling of intense anger
+48184,infusion,the process of extracting certain active properties (as a drug from a plant) by steeping or soaking (usually in water)
+48185,infusion,(medicine) the passive introduction of a substance (a fluid or drug or electrolyte) into a vein or between tissues (as by gravitational force)
+48186,infusion,the act of infusing or introducing a certain modifying element or quality; "the team's continued success is attributable to a steady infusion of new talent"
+48187,infusion extract,a solution obtained by steeping or soaking a substance (usually in water)
+48188,infusorian,any member of the subclass Infusoria
+48189,inga,any tree or shrub of the genus Inga having pinnate leaves and showy usually white flowers; cultivated as ornamentals
+48190,ingenue,an actress who specializes in playing the role of an artless innocent young girl
+48191,ingenue,an artless innocent young girl (especially as portrayed on the stage)
+48192,ingenue,the role of an innocent artless young woman in a play
+48193,ingenuity ingeniousness cleverness,the property of being ingenious; "a plot of great ingenuity"; "the cleverness of its design"
+48194,ingenuousness,openly straightforward or frank
+48195,ingesta,solid and liquid nourishment taken into the body through the mouth
+48196,ingot,metal that is cast in the shape of a block for convenient handling
+48197,ingot_iron,iron of high purity
+48198,ingrate thankless_wretch ungrateful_person,a person who shows no gratitude
+48199,ingratiation insinuation,the act of gaining acceptance or affection for yourself by persuasive and subtle blandishments; "she refused to use insinuation in order to gain favor"
+48200,ingratitude ungratefulness,a lack of gratitude
+48201,ingredient,a component of a mixture or compound
+48202,ingredient fixings,food that is a component of a mixture in cooking; "the recipe lists all the fixings for a salad"
+48203,ingress immersion,(astronomy) the disappearance of a celestial body prior to an eclipse
+48204,ingrown_hair,a hair that does not emerge from the follicle but remains embedded in the skin (usually causing inflammation)
+48205,ingrown_toenail onyxis,toenail having its free tip or edges embedded in the surrounding flesh
+48206,ingrowth,something that grows inward
+48207,inguinal_canal canalis_inguinalis,oblique passage through the lower abdominal wall; in males it is the passage through which the testes descend into the scrotum and it contains the spermatic cord; in females it transmits the round ligament of the uterus
+48208,inguinal_hernia,hernia in which a loop of intestine enters the inguinal canal; the most common type of hernia in males
+48209,inhabitancy inhabitation habitation,the act of dwelling in or living permanently in a place (said of both animals and men); "he studied the creation and inhabitation and demise of the colony"
+48210,inhabitant habitant dweller denizen indweller,a person who inhabits a particular place
+48211,inhalant,something that is inhaled
+48212,inhalant inhalation,a medication to be taken by inhaling it
+48213,inhalation inspiration aspiration intake breathing_in,the act of inhaling; the drawing in of air (or other gases) as in breathing
+48214,inhalation_anesthesia,general anesthesia achieved by administration of an inhalation anesthetic
+48215,inhalation_anesthetic inhalation_anaesthetic inhalation_general_anesthetic inhalation_general_anaesthetic,a gas that produces general anesthesia when inhaled
+48216,inhaler inhalator,a dispenser that produces a chemical vapor to be inhaled in order to relieve nasal congestion
+48217,inherence inherency,the state of inhering; the state of being a fixed characteristic; "the inherence of polysemy in human language"
+48218,inheritance hereditary_pattern,(genetics) attributes acquired via biological heredity from the parents
+48219,inheritance heritage,that which is inherited; a title or property or estate that passes by law to the heir on the death of the owner
+48220,inheritance heritage,any attribute or immaterial possession that is inherited from ancestors; "my only inheritance was my mother's blessing"; "the world's heritage of knowledge"
+48221,inheritance heritage,hereditary succession to a title or an office or property
+48222,inheritance_tax estate_tax death_tax death_duty,a tax on the estate of the deceased person
+48223,inherited_wealth,wealth that is inherited rather than earned
+48224,inhibition,(physiology) the process whereby nerves can retard or prevent the functioning of an organ or part; "the inhibition of the heart by the vagus nerve"
+48225,inhibition,the quality of being inhibited
+48226,inhibition suppression,(psychology) the conscious exclusion of unacceptable thoughts or desires
+48227,inhibitor,a substance that retards or stops an activity
+48228,inhomogeneity,the quality of being inhomogeneous
+48229,inhospitableness,the environmental condition in a region that lacks a favorable climate or terrain for life or growth
+48230,inhospitableness,having an unfriendly and inhospitable disposition
+48231,inhospitality,unkind and inconsiderate welcome; "he was taken aback by such inhospitality"
+48232,inhumaneness inhumanity,the quality of lacking compassion or consideration for others
+48233,inion,the craniometric point that is the most prominent point at the back of the head (at the occipital protuberance)
+48234,initial,the first letter of a word (especially a person's name); "he refused to put the initials FRS after his name"
+48235,initial_public_offering IPO initial_offering,a corporation's first offer to sell stock to the public
+48236,initialism,an abbreviation formed from the initial letters of the several words in the name and pronounced separately; "HTML is an initialism for HyperText Markup Language"
+48237,initiate enlightened,people who have been introduced to the mysteries of some field or activity; "it is very familiar to the initiate"
+48238,initiate learned_person pundit savant,someone who has been admitted to membership in a scholarly field
+48239,initiation founding foundation institution origination creation innovation introduction instauration,the act of starting something for the first time; introducing something new; "she looked forward to her initiation as an adult"; "the foundation of a new scientific society"
+48240,initiation induction installation,a formal entry into an organization or position or office; "his initiation into the club"; "he was ordered to report for induction into the army"; "he gave a speech as part of his installation into the hall of fame"
+48241,injection,the forceful insertion of a substance under pressure
+48242,injection injectant,any solution that is injected (as into the skin)
+48243,injection shot,the act of putting a liquid into the body by means of a syringe; "the nurse gave him a flu shot"
+48244,injector,a contrivance for injecting (e.g., water into the boiler of a steam engine or particles into an accelerator etc.)
+48245,injudiciousness indiscreetness,lacking good judgment
+48246,injunction,a formal command or admonition
+48247,injunction enjoining enjoinment cease_and_desist_order,(law) a judicial remedy issued in order to prohibit a party from doing or continuing to do a certain activity; "injunction were formerly obtained by writ but now by a judicial order"
+48248,injury,an act that causes someone or something to receive physical damage
+48249,injury,wrongdoing that violates another's rights and is unjustly inflicted
+48250,injury accidental_injury,an accident that results in physical damage or hurt
+48251,injury hurt harm trauma,any physical damage to the body caused by violence or accident or fracture etc.
+48252,injustice unfairness iniquity shabbiness,an unjust act
+48253,injustice unjustness,the practice of being unjust or unfair
+48254,ink,a liquid used for printing or writing or drawing
+48255,ink,dark protective fluid ejected into the water by cuttlefish and other cephalopods
+48256,ink-jet_printer,a printer that produces characters by projecting electrically charged droplets of ink
+48257,ink_bottle inkpot,a bottle of ink
+48258,ink_cartridge,a cartridge that contains ink and can be replaced
+48259,ink_eraser,an eraser that removes ink marks
+48260,inkberry gallberry gall-berry evergreen_winterberry Ilex_glabra,evergreen holly of eastern North America with oblong leathery leaves and small black berries
+48261,inkblot,a blot made with ink
+48262,inkle,a linen tape used for trimming as a decoration
+48263,inkling intimation glimmering glimmer,a slight suggestion or vague understanding; "he had no inkling what was about to happen"
+48264,inkstand,a tray or stand for writing implements and containers for ink
+48265,inkwell inkstand,a small well holding writing ink into which a pen can be dipped
+48266,inky_cap inky-cap_mushroom Coprinus_atramentarius,having a cap that melts into an inky fluid after spores have matured
+48267,inland_bill,a bill of exchange that is both drawn and made payable in the same country
+48268,inlay,(dentistry) a filling consisting of a solid substance (as gold or porcelain) fitted to a cavity in a tooth and cemented into place
+48269,inlay,a decoration made by fitting pieces of wood into prepared slots in a surface
+48270,inlet recess,an arm off of a larger body of water (often between rocky headlands)
+48271,inlet_manifold,manifold that carries vaporized fuel from the carburetor to the inlet valves of the cylinders
+48272,inmate,one of several resident of a dwelling (especially someone confined to a prison or hospital)
+48273,innateness,the quality of being innate
+48274,inner_city,the older and more populated and (usually) poorer central section of a city
+48275,inner_ear internal_ear labyrinth,a complex system of interconnecting cavities; concerned with hearing and equilibrium
+48276,inner_resource,a resource provided by the mind or one's personal capabilities; "to have an inner resource against loneliness"
+48277,inner_tube,an inflatable rubber tube that fits inside the casing of a pneumatic tire
+48278,innervation,the distribution of nerve fibers to an organ or body region
+48279,inning frame,(baseball) one of nine divisions of play during which each team has a turn at bat
+48280,innings,the batting turn of a cricket player or team
+48281,innocence,a state or condition of being innocent of a specific crime or offense; "the trial established his innocence"
+48282,innocency,an innocent quality or thing or act; "the innocencies of childhood"
+48283,innocent inexperienced_person,a person who lacks knowledge of evil
+48284,innominate_artery,a large artery arising from the arch of the aorta and divides into the right subclavian artery and the right common carotid artery; supplies the right side of the neck and head and the right shoulder and arm
+48285,innovativeness,originality by virtue of introducing new ideas
+48286,innumerableness countlessness,a number beyond counting
+48287,inoculant inoculum,a substance (a virus or toxin or immune serum) that is introduced into the body to produce or increase immunity to a particular disease
+48288,inoculating vaccinating,the act of protecting against disease by introducing a vaccine into the body to induce immunity; "doctors examined the recruits but nurses did the inoculating"
+48289,inoculation vaccination,taking a vaccine as a precaution against contracting a disease
+48290,inoculator vaccinator,a medical practitioner who inoculates people against diseases
+48291,inopportuneness untimeliness,the quality of occurring at an inconvenient time
+48292,inorganic_chemistry,the chemistry of compounds that do not contain hydrocarbon radicals
+48293,inorganic_compound,any compound that does not contain carbon
+48294,inosine,a nucleoside that is formed by the deamination of adenosine; used in kidney transplantation to provide a temporary source of sugar
+48295,inositol,an optically inactive alcohol that is a component of the vitamin B complex
+48296,inpatient inmate,a patient who is residing in the hospital where he is being treated
+48297,inpouring inpour inrush,an inflow; "an inpouring of spiritual comfort"
+48298,input,a component of production; something that goes into the production of output
+48299,input_file input_data,(computer science) a computer file that contains data that serve as input to a device or program
+48300,input_program,a utility program that organizes the input to a computer
+48301,input_routine,a routine that writes from an external source to an internal store
+48302,input_signal input,signal going into an electronic system
+48303,inquest,an inquiry into the cause of an unexpected death
+48304,inquirer enquirer questioner querier asker,someone who asks a question
+48305,inquiry enquiry,a systematic investigation of a matter of public interest
+48306,inquiry enquiry research,a search for knowledge; "their pottery deserves more research than it has received"
+48307,inquiry_agent,a private detective
+48308,inquisition,a severe interrogation (often violating the rights or privacy of individuals)
+48309,inquisitor interrogator,a questioner who is excessively harsh
+48310,inroad,an invasion or hostile attack
+48311,inroad,an encroachment or intrusion; "they made inroads in the United States market"
+48312,insalubrity insalubriousness,the quality of being insalubrious and debilitating
+48313,insanity,relatively permanent disorder of the mind
+48314,insanity_plea plea_of_insanity,(criminal law) a plea in which the defendant claims innocence due to mental incompetence at the time
+48315,inscription,the activity of inscribing (especially carving or engraving) letters or words
+48316,inscription lettering,letters inscribed (especially words engraved or carved) on something
+48317,inscrutability,the quality of being impossible to investigate; "the inscrutability of the future"
+48318,insect,small air-breathing arthropod
+48319,insecticide insect_powder,a chemical used to kill insects
+48320,insectifuge insect_repellent insect_repellant,a chemical substance that repels insects
+48321,insectivore,small insect-eating mainly nocturnal terrestrial or fossorial mammals
+48322,insectivore,any organism that feeds mainly on insects
+48323,insecureness,the state of being exposed to risk or anxiety
+48324,insecurity,the state of being subject to danger or injury
+48325,insecurity,the anxiety you experience when you feel vulnerable and insecure
+48326,insemination,the act of sowing (of seeds in the ground or, figuratively, of germs in the body or ideas in the mind, etc.)
+48327,insemination,the introduction of semen into the genital tract of a female
+48328,insensibility,a lack of sensibility
+48329,insensitivity insensitiveness,the inability to respond to affective changes in your interpersonal environment
+48330,insentience,lacking consciousness or ability to perceive sensations
+48331,insert,a folded section placed between the leaves of another publication
+48332,insert inset,an artifact that is inserted or is to be inserted
+48333,insertion introduction intromission,the act of putting one thing into another
+48334,insertional_mutagenesis,(genetics) a mutation caused by the insertion of exogenous DNA into a genome
+48335,inset,a small picture inserted within the bounds or a larger one
+48336,inside interior,the region that is inside of something
+48337,inside interior,the inner or enclosed surface of something
+48338,inside_caliper,caliper for measuring inside dimensions (the size of a cavity or hole); points on its legs curve outward
+48339,inside_clinch,a clinch with the end of the line inside the loop
+48340,inside_job,some transgression committed with the assistance of someone trusted by the victim; "the police decided that the crime was an inside job"
+48341,inside_loop,a loop consisting of a climb followed by inverted flight followed by a dive that returns to horizontal flight
+48342,inside_track,the inner side of a curved racecourse
+48343,inside_track,a favorable position in a competition; "the boss's son had the inside track for that job"
+48344,insider,an officer of a corporation or others who have access to private information about the corporation's operations
+48345,insider_information,important information about the plans or condition of a corporation that has not been released to the public; use for personal profit is illegal
+48346,insider_trading,buying or selling corporate stock by a corporate officer or other insider on the basis of information that has not been made public and is supposed to remain confidential
+48347,insidiousness,subtle and cumulative harmfulness (especially of a disease)
+48348,insidiousness,the quality of being designed to entrap
+48349,insight brainstorm brainwave,the clear (and often sudden) understanding of a complex situation
+48350,insight perceptiveness perceptivity,a feeling of understanding
+48351,insight sixth_sense,grasping the inner nature of things intuitively
+48352,insightfulness acumen,shrewdness shown by keen insight
+48353,insignia,a badge worn to show official position
+48354,insignia_of_rank,an insignia worn on a military uniform
+48355,insignificance,the quality of having little or no significance
+48356,insincerity falseness hollowness,the quality of not being open or truthful; deceitful or hypocritical
+48357,insinuation innuendo,an indirect (and usually malicious) implication
+48358,insistence insistency,the act of insisting on something; "insistence on grammatical correctness is a conservative position"
+48359,insistence insisting,continual and persistent demands
+48360,insolation,incident solar radiation
+48361,insole innersole,the inner sole of a shoe or boot where the foot rests
+48362,insolence,an offensive disrespectful impudent act
+48363,insolubility,the quality of being insoluble and difficult to dissolve in liquid
+48364,insolvency,the lack of financial resources
+48365,insomnia,an inability to sleep; chronic sleeplessness
+48366,insomniac sleepless_person,someone who cannot sleep
+48367,inspection review,a formal or official examination; "the platoon stood ready for review"; "we had to wait for the inspection before we could use the elevator"
+48368,inspector,a high ranking police officer
+48369,inspector_general,a military officer responsible for investigations
+48370,inspectorate,a body of inspectors
+48371,inspectorship,the office of inspector
+48372,inspiration,arousal of the mind to special unusual activity or creativity
+48373,inspiration,a sudden intuition as part of solving a problem
+48374,inspiration brainchild,a product of your creative thinking and work; "he had little respect for the inspirations of other artists"; "after years of work his brainchild was a tangible reality"
+48375,inspiration stirring,arousing to a particular emotion or action
+48376,inspissation,the process of thickening by dehydration
+48377,instability,an unstable order
+48378,instability,unreliability attributable to being unstable
+48379,instability unstableness,the quality or attribute of being unstable and irresolute
+48380,installation installing installment instalment,the act of installing something (as equipment); "the telephone installation took only a few minutes"
+48381,installation_charge,the charge for installing something
+48382,installment,a payment of part of a debt; usually paid at regular intervals
+48383,installment instalment,a part of a published serial
+48384,installment_credit installment_loan,a loan repaid with interest in equal periodic payments
+48385,installment_debt,debt to be paid by installments
+48386,installment_plan installment_buying time_plan,a system for paying for goods by installments
+48387,instant_coffee,dehydrated coffee that can be made into a drink by adding hot water; "the advantages of instant coffee are speed of preparation and long shelf life"
+48388,instantiation,a representation of an idea in the form of an instance of it; "how many instantiations were found?"
+48389,instar,an insect or other arthropod between molts
+48390,instep,the arch of the foot
+48391,instep,the part of a shoe or stocking that covers the arch of the foot
+48392,instigator initiator,a person who initiates a course of action
+48393,instigator provoker inciter instigant firebrand,someone who deliberately foments trouble; "she was the instigator of their quarrel"
+48394,instillation,a liquid that is instilled drop by drop
+48395,instillation instillment instilment,the introduction of a liquid (by pouring or injection) drop by drop
+48396,instillator,medical apparatus that puts a liquid into a cavity drop by drop
+48397,instinct inherent_aptitude,inborn pattern of behavior often responsive to specific stimuli; "the spawning instinct in salmon"; "altruistic instincts in social animals"
+48398,institute,an association organized to promote art or science or education
+48399,institution,a custom that for a long time has been an important feature of some group or society; "the institution of marriage"; "the institution of slavery"; "he had become an institution in the theater"
+48400,institution,an establishment consisting of a building or complex of buildings where an organization for the promotion of some cause is situated
+48401,institution establishment,an organization founded and united for a specific purpose
+48402,instroke,the stroke of an engine piston moving away from the crankshaft
+48403,instruction command statement program_line,(computer science) a line of code written as part of a computer program
+48404,instruction_book,a book of directions for using or operating some piece of equipment
+48405,instruction_manual instructions book_of_instructions operating_instructions,a manual usually accompanying a technical device and explaining how to install or operate it
+48406,instructorship,the position of instructor
+48407,instructress,a woman instructor
+48408,instrument,a device that requires skill for proper use
+48409,instrument pawn cat's-paw,a person used by another to gain an end
+48410,instrument tool,the means whereby some act is accomplished; "my greed was the instrument of my destruction"; "science has given us new tools to fight disease"
+48411,instrument_flying,navigation of an airplane solely by instruments
+48412,instrument_landing,an aircraft landing made entirely by means of instruments
+48413,instrument_of_execution,an instrument designed and used to take the life of a condemned person
+48414,instrument_of_punishment,an instrument designed and used to punish a condemned person
+48415,instrument_of_torture,an instrument of punishment designed and used to inflict torture on the condemned person
+48416,instrumental_conditioning,operant conditioning that pairs a response with a reinforcement in discrete trials; reinforcement occurs only after the response is given
+48417,instrumental_music,music intended to be performed by a musical instrument or group of instruments
+48418,instrumental_music,music produced by playing a musical instrument
+48419,instrumental_role instrument,the semantic role of the entity (usually inanimate) that the agent uses to perform an action or start a process
+48420,instrumentalism,a system of pragmatic philosophy that considers idea to be instruments that should guide our actions and their value is measured by their success
+48421,instrumentality,a subsidiary organ of government created for a special purpose; "are the judicial instrumentalities of local governments adequate?"; "he studied the French instrumentalities for law enforcement"
+48422,instrumentality,the quality of being instrumental for some purpose
+48423,instrumentality instrumentation,an artifact (or system of artifacts) that is instrumental in accomplishing some end
+48424,instrumentation,the instruments called for in a musical score or arrangement for a band or orchestra
+48425,instrumentation,the act of providing or using the instruments needed for some implementation
+48426,insubordination,defiance of authority
+48427,insubordination rebelliousness,an insubordinate act
+48428,insubstantiality,lack of solid substance and strength
+48429,insubstantiality,lacking substance or reality
+48430,insufficiency,(pathology) inability of a bodily part or organ to function normally
+48431,insufficiency inadequacy,a lack of competence; "pointed out the insufficiencies in my report"; "juvenile offenses often reflect an inadequacy in the parents"
+48432,insufficiency inadequacy deficiency,lack of an adequate quantity or number; "the inadequacy of unemployment benefits"
+48433,insufflation,(medicine) blowing air or medicated powder into the lungs (or into some other body cavity)
+48434,insufflation,an act of blowing or breathing on or into something
+48435,insulant insulation,insulating material that reduces or prevents the transmission of heat or sound or electricity
+48436,insulation,the act of protecting something by surrounding it with material that reduces or prevents the transmission of sound or heat or electricity
+48437,insulation insularity insularism detachment,the state of being isolated or detached; "the insulation of England was preserved by the English Channel"
+48438,insulator dielectric nonconductor,a material such as glass or porcelain with negligible electrical or thermal conductivity
+48439,insulin,hormone secreted by the isles of Langerhans in the pancreas; regulates storage of glycogen in the liver and accelerates oxidation of sugar in cells
+48440,insulin_shock insulin_reaction,hypoglycemia produced by excessive insulin in the system causing coma
+48441,insulin_shock insulin_shock_therapy insulin_shock_treatment,the administration of sufficient insulin to induce convulsions and coma
+48442,insult affront,a deliberately offensive act or something producing the effect of deliberate disrespect; "turning his back on me was a deliberate insult"
+48443,insurability,the quality of being insurable; the conditions under which an insurance company will issue insurance to an applicant (based on standards set by the insurance company)
+48444,insurable_interest,an interest in a person or thing that will support the issuance of an insurance policy; an interest in the survival of the insured or in the preservation of the thing that is insured
+48445,insurance,promise of reimbursement in the case of loss; paid to people or companies so concerned about hazards that they have made prepayments to an insurance company
+48446,insurance_broker insurance_agent general_agent underwriter,an agent who sells insurance
+48447,insurance_claim,demand for payment in accordance with an insurance policy
+48448,insurance_company insurance_firm insurer insurance_underwriter underwriter,a financial institution that sells insurance
+48449,insured insured_person,a person whose interests are protected by an insurance policy; a person who contracts for an insurance policy that indemnifies him against loss of property or life or health etc.
+48450,insurgency insurgence,an organized rebellion aimed at overthrowing a constituted government through the use of subversion and armed conflict
+48451,insurgent insurrectionist freedom_fighter rebel,a person who takes part in an armed rebellion against the constituted authority (especially in the hope of improving conditions)
+48452,insurrectionism,the principle of revolt against constituted authority
+48453,intactness,the state of being unimpaired
+48454,intaglio diaglyph,glyptic art consisting of a sunken or depressed engraving or carving on a stone or gem (as opposed to cameo)
+48455,intaglio_printing intaglio gravure,a printing process that uses an etched or engraved plate; the plate is smeared with ink and wiped clean, then the ink left in the recesses makes the print
+48456,intake inlet,an opening through which fluid is admitted to a tube or container
+48457,intake_manifold,a manifold consisting of a pipe to carry fuel to each cylinder in an internal-combustion engine
+48458,intake_valve,a valve that controls the flow of fluid through an intake
+48459,intangibility intangibleness impalpability,the quality of being intangible and not perceptible by touch
+48460,intangible intangible_asset,assets that are saleable though not material or physical
+48461,integer whole_number,any of the natural numbers (positive or negative) or zero; "an integer is a number that is not a fraction"
+48462,integral,the result of a mathematical integration; F(x) is the integral of f(x) if dF/dx = f(x)
+48463,integral_calculus,the part of calculus that deals with integration and its application in the solution of differential equations and in determining areas or volumes etc.
+48464,integrated_circuit microcircuit,a microelectronic computer circuit incorporated into a chip or semiconductor; a whole system rather than a single component
+48465,integrated_data_processing IDP,automatic data processing in which data acquisition and other stages or processing are integrated into a coherent system
+48466,integrated_logistic_support,the pooling of specific resources by subscribing nations for the support of some joint operation
+48467,integration,an operation used in the calculus whereby the integral of a function is determined
+48468,integration integrating desegregation,the action of incorporating a racial or religious group into a community
+48469,integrator planimeter,a measuring instrument for measuring the area of an irregular plane figure
+48470,integrity,moral soundness; "he expects to find in us the common honesty and integrity of men of business"; "they admired his scrupulous professional integrity"
+48471,integrity unity wholeness,an undivided or unbroken completeness or totality with nothing wanting; "the integrity of the nervous system is required for normal development"; "he took measures to insure the territorial unity of Croatia"
+48472,integument,an outer protective covering such as the skin of an animal or a cuticle or seed coat or rind or shell
+48473,integumentary_system,the skin and its appendages
+48474,intellectual intellect,a person who uses the mind creatively
+48475,intellectual_property,intangible property that is the result of creativity (such as patents or trademarks or copyrights)
+48476,intellectualization intellectualisation,(psychiatry) a defense mechanism that uses reasoning to block out emotional stress and conflict
+48477,intelligence,the ability to comprehend; to understand and profit from experience
+48478,intelligence intelligence_activity intelligence_operation,the operation of gathering information about an enemy
+48479,intelligence intelligence_information,secret information about an enemy (or potential enemy); "we sent out planes to gather intelligence on their radar coverage"
+48480,intelligence intelligence_service intelligence_agency,a unit responsible for gathering and interpreting information about an enemy
+48481,intelligence_analyst,a government analyst of information about an enemy or potential enemy
+48482,intelligence_cell,a terrorist cell whose members are trained to perform reconnaissance and surveillance
+48483,intelligence_quotient IQ I.Q.,a measure of a person's intelligence as indicated by an intelligence test; the ratio of a person's mental age to their chronological age (multiplied by 100)
+48484,intelligence_test IQ_test,a psychometric test of intelligence; "they used to think that intelligence is what an intelligence test tests"
+48485,intelligentsia clerisy,an educated and intellectual elite
+48486,intelligibility,the quality of language that is comprehensible
+48487,intemperance,the quality of being intemperate
+48488,intemperance intemperateness,consumption of alcoholic drinks
+48489,intemperance intemperateness self-indulgence,excess in action and immoderate indulgence of bodily appetites, especially in passion or indulgence; "the intemperance of their language"
+48490,intensification,the act of increasing the contrast of (a photographic film)
+48491,intensification,action that makes something stronger or more extreme
+48492,intensifier intensive,a modifier that has little meaning except to intensify the meaning it modifies; "`up' in `finished up' is an intensifier"; "`honestly' in `I honestly don't know' is an intensifier"
+48493,intension connotation,what you must know in order to determine the reference of an expression
+48494,intensity intensiveness,high level or degree; the property of being intense
+48495,intensity strength intensity_level,the amount of energy transmitted (as by acoustic or electromagnetic radiation); "he adjusted the intensity of the sound"; "they measured the station's signal strength"
+48496,intensive_care,close monitoring and constant medical care of patients with life-threatening conditions
+48497,intensive_care_unit ICU,a hospital unit staffed and equipped to provide intensive care
+48498,intent purport spirit,the intended meaning of a communication
+48499,intention,(usually plural) the goal with respect to a marriage proposal; "his intentions are entirely honorable"
+48500,intention,an act of intending; a volition that you intend to carry out; "my intention changed once I saw her"
+48501,intentionality,expressive of intentions
+48502,intentness engrossment,the quality of being intent and concentrated; "the intentness of his gaze"
+48503,inter-service_support,action by one military service to provide logistic (or administrative) support to another military service
+48504,interaction,a mutual or reciprocal action; interacting
+48505,interaction fundamental_interaction,(physics) the transfer of energy between elementary particles or between an elementary particle and a field or between fields; mediated by gauge bosons
+48506,interbank_loan,a loan from one bank to another
+48507,intercapitular_vein vena_intercapitalis,veins connecting the dorsal and palmar veins of the hand or the dorsal and plantar veins of the foot
+48508,intercept,the point at which a line intersects a coordinate axis
+48509,interception,the act of intercepting; preventing something from proceeding or arriving; "he resorted to the interception of his daughter's letters"; "he claimed that the interception of one missile by another would be impossible"
+48510,interception,(American football) the act of catching a football by a player on the opposing team
+48511,interceptor,a fast maneuverable fighter plane designed to intercept enemy aircraft
+48512,intercession,a prayer to God on behalf of another person
+48513,interchange,a junction of highways on different levels that permits traffic to move from one to another without crossing traffic streams
+48514,interchange reciprocation give-and-take,mutual interaction; the activity of reciprocating or exchanging (especially information)
+48515,intercommunication,mutual communication; communication with each other; "they intercepted intercommunication between enemy ships"
+48516,intercommunication_system intercom,a communication system linking different rooms within a building or ship etc
+48517,intercommunion,participation in Holy Communion by members of more than one church (eg Catholic and Orthodox)
+48518,interconnection,(computer science) the act of interconnecting (wires or computers or theories etc.)
+48519,interconnection interconnectedness,a state of being connected reciprocally; "an interconnection between the two buildings"
+48520,intercontinental_ballistic_missile ICBM,a ballistic missile that is capable of traveling from one continent to another
+48521,intercostal intercostal_muscle musculus_intercostalis,muscles between the ribs; they contract during inspiration
+48522,intercostal_artery arteria_intercostalis,several arteries and supplying the intercostal spaces of the rib cage
+48523,intercostal_vein vena_intercostalis,several veins draining the intercostal spaces of the rib cage
+48524,intercourse social_intercourse,communication between individuals
+48525,interdepartmental_support interagency_support,provision of logistic (or administrative) support by one or more of the military services to one or more departments or agencies of the United States government
+48526,interdict,an ecclesiastical censure by the Roman Catholic Church withdrawing certain sacraments and Christian burial from a person or all persons in a particular district
+48527,interdict interdiction,a court order prohibiting a party from doing a certain activity
+48528,interdiction,authoritative prohibition
+48529,interdiction_fire,fire directed to an area to prevent the enemy from using that area
+48530,interest,a fixed charge for borrowing money; usually a percentage of the amount borrowed; "how much interest do you pay on your mortgage?"
+48531,interest interest_group,(usually plural) a social group whose members control some field of activity and who have common aims; "the iron interests stepped up production"
+48532,interest interestingness,the power of attracting or holding one's attention (because it is unusual or exciting etc.); "they said nothing of great interest"; "primary colors can add interest to a room"
+48533,interest involvement,a sense of concern with and curiosity about someone or something; "an interest in music"
+48534,interest stake,(law) a right or legal share of something; a financial involvement with something; "they have interests all over the world"; "a stake in the company's future"
+48535,interest_expense,interest paid on loans
+48536,interest_rate rate_of_interest,the percentage of a sum of money charged for its use
+48537,interestedness,the state of being interested
+48538,interface,the overlap where two theories or phenomena affect each other or have links with each other; "the interface between chemistry and biology"
+48539,interface,(chemistry) a surface forming a common boundary between two things (two objects or liquids or chemical phases)
+48540,interface port,(computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals)
+48541,interface user_interface,(computer science) a program that controls a display for the user (usually on a computer monitor) and that allows the user to interact with the system
+48542,interfacial_tension interfacial_surface_tension,surface tension at the surface separating two non-miscible liquids
+48543,interference,(American football) blocking a player's path with your body; "he ran interference for the quarterback"
+48544,interferometer,any measuring instrument that uses interference patterns to make accurate measurements of waves
+48545,interferon,an antiviral protein produced by cells that have been invaded by a virus; inhibits replication of the virus
+48546,intergalactic_space,the space between galaxies; "the Milky Way travels through intergalactic space"
+48547,interim meantime meanwhile lag,the time between one event, process, or period and another; "meanwhile the socialists are running the government"
+48548,interim_overhaul,an overhaul between the regular times for overhauling
+48549,interior_angle internal_angle,the angle inside two adjacent sides of a polygon
+48550,interior_decoration decor,decoration consisting of the layout and furnishings of a livable interior
+48551,interior_decoration interior_decorating,the trade or act of decorating the interior of a building or room, especially with regard to color combination, paint, fabrics, carpeting, etc.
+48552,interior_decorator house_decorator room_decorator decorator,a person who specializes in interior decoration
+48553,interior_design,the art of designing the interior decoration for a house, office, or other architectural space
+48554,interior_designer designer,a person who specializes in interior design
+48555,interior_door,a door that closes off rooms within a building
+48556,interior_live_oak Quercus_wislizenii Quercus_wizlizenii,a small shrubby evergreen tree of western North America similar to the coast live oak but occurring chiefly in foothills of mountain ranges removed from the coast; an important part of the chaparral
+48557,interior_monologue,a literary genre that presents a fictional character's sequence of thoughts in the form of a monologue
+48558,interjection interposition interpolation interpellation,the action of interjecting or interposing an action or remark that interrupts
+48559,interlayer,a layer placed between other layers
+48560,interleaf,a blank leaf inserted between the leaves of a book
+48561,interleukin,any of several lymphokines that promote macrophages and killer T cells and B cells and other components of the immune system
+48562,interlock ignition_interlock,a device that prevents an automotive engine from starting; "car theives know how to bypass the ignition interlock"
+48563,interlocutor conversational_partner,a person who takes part in a conversation
+48564,interlocutor middleman,the performer in the middle of a minstrel line who engages the others in talk
+48565,interlude,an intervening period or episode
+48566,interlude intermezzo entr'acte,a brief show (music or dance etc) inserted between the sections of a longer performance
+48567,intermaxillary_suture sutura_intermaxillaris,the suture between the two maxillae of the upper jawbone
+48568,intermediate,a substance formed during a chemical process before the desired product is obtained
+48569,intermediate_host,a host that is used by a parasite in the course of its life cycle
+48570,intermediate_temporal_artery arteria_temporalis_intermedia,temporal artery that goes to the middle part of the cerebral cortex of the temporal lobe
+48571,intermediate_vector_boson,a gauge boson that mediates weak interactions between particles
+48572,intermediate_wheatgrass Agropyron_intermedium Elymus_hispidus,Asiatic grass introduced into United States rangelands for pasture and fodder
+48573,intermezzo,a short movement coming between the major sections of a symphony
+48574,intermezzo,a short piece of instrumental music composed for performance between acts of a drama or opera
+48575,intermission,the act of suspending activity temporarily
+48576,intermittence intermittency,the quality of being intermittent; subject to interruption or periodic stopping
+48577,intermittent_claudication,lameness due to pain in leg muscles because the blood supply is inadequate; pain subsides with rest
+48578,intern interne houseman medical_intern,an advanced student or graduate in medicine gaining supervised practical experience (`houseman' is a British term)
+48579,internal-combustion_engine ICE,a heat engine in which combustion occurs inside the engine rather than in a separate furnace; heat expands a gas that either moves a piston or turns a gas turbine
+48580,internal_auditor,an auditor who is an employee of the company whose records are audited and who provides information to the management and board of directors
+48581,internal_carotid_artery,the branch of the carotid artery that supplies blood to the brain and eyes and internal parts of the head
+48582,internal_cerebral_vein vena_cerebrum_internus,two paired veins passing caudally near the midline and uniting to form the great cerebral vein
+48583,internal_combustion,the combustion of fuel inside a cylinder (as in an internal-combustion engine)
+48584,internal_control,an accounting procedure or system designed to promote efficiency or assure the implementation of a policy or safeguard assets or avoid fraud and error etc.
+48585,internal_drive,a drive mounted inside of a computer
+48586,internal_iliac_artery hypogastric_artery,the inner branch of the common iliac artery on either side of the body; divides into several branches that supply blood to the pelvic and gluteal areas
+48587,internal_jugular_vein,a continuation of the sigmoid sinus of the dura mater; joins the subclavian vein to form the brachiocephalic vein
+48588,internal_maxillary_artery,the maxillary artery that supplies deep structure of the face and some of the meninges
+48589,internal_medicine general_medicine,the branch of medicine that deals with the diagnosis and (nonsurgical) treatment of diseases of the internal organs (especially in adults)
+48590,internal_organ viscus,a main organ that is situated inside the body
+48591,internal_revenue,government revenue from domestic sources (excluding customs)
+48592,internal_rhyme,a rhyme between words in the same line
+48593,internalization internalisation incorporation,learning (of values or attitudes etc.) that is incorporated within yourself
+48594,internasal_suture sutura_internasalis,the suture between the two nasal bones
+48595,international_candle,a former international unit of luminous intensity; now replaced by the candela
+48596,international_flight,a flight that takes off in one country and lands in another
+48597,international_intelligence_agency,an intelligence agency outside the United States
+48598,international_law law_of_nations,the body of laws governing relations between nations
+48599,international_law_enforcement_agency,an international administrative unit responsible for law enforcement
+48600,international_terrorism,terrorism practiced in a foreign country by terrorists who are not native to that country
+48601,internationalism,the doctrine that nations should cooperate because their common interests are more important than their differences
+48602,internationalist,an advocate of internationalism
+48603,internationalist,a member of a socialist or communist international
+48604,internationality internationalism,quality of being international in scope; "he applauded the internationality of scientific terminology"
+48605,internationalization internationalisation,the act of bringing something under international control
+48606,internee,a person who is interned; "the internees were enemy aliens and suspected terrorists"
+48607,internet net cyberspace,a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange
+48608,internist,a specialist in internal medicine
+48609,internment,confinement during wartime
+48610,internode,a segment of a stem between two nodes
+48611,internship,the position of a medical intern
+48612,internuncio,(Roman Catholic Church) a diplomatic representative of the Pope ranking below a nuncio
+48613,interoception,sensitivity to stimuli originating inside of the body
+48614,interoceptor enteroceptor,any receptor that responds to stimuli inside the body
+48615,interoperability,(computer science) the ability to exchange and use information (usually in a large heterogeneous network made up of several local area networks)
+48616,interpellation,(parliament) a parliamentary procedure of demanding that a government official explain some act or policy
+48617,interpenetration,the action of penetrating between or among
+48618,interpenetration permeation,mutual penetration; diffusion of each through the other
+48619,interphalangeal_joint,any of the joints between the phalanges of the fingers or toes
+48620,interphone,a telephonic intercommunication system linking different rooms in a building or ship etc
+48621,interplanetary_dust,microscopic particles in the interplanetary medium
+48622,interplanetary_gas,a rarefied flow of gas and charged particles (plasma) that stream from the sun and form the solar wind
+48623,interplanetary_medium,interplanetary space including forms of energy and gas and dust
+48624,interplanetary_space,the part of outer space within the solar system
+48625,interplay,reciprocal action and reaction
+48626,interpolation,(mathematics) calculation of the value of a function between the values already known
+48627,interpolation insertion,a message (spoken or written) that is introduced or inserted; "with the help of his friend's interpolations his story was eventually told"; "with many insertions in the margins"
+48628,interposition intervention,the act or fact of interposing one thing between or among others
+48629,interpretation,an explanation that results from interpreting something; "the report included his interpretation of the forensic evidence"
+48630,interpretation interpreting rendition rendering,an explanation of something that is not immediately obvious; "the edict was subject to many interpretations"; "he annoyed us with his interpreting of parables"; "often imitations are extended to provide a more accurate rendition of the child's intended meaning"
+48631,interpretation reading version,a mental representation of the meaning or significance of something
+48632,interpreter,someone who uses art to represent something; "his paintings reveal a sensitive interpreter of nature"; "she was famous as an interpreter of Shakespearean roles"
+48633,interpreter interpretive_program,(computer science) a program that translates and executes source language statements one line at a time
+48634,interpreter translator,someone who mediates between speakers of different languages
+48635,interpretive_dance interpretive_dancing interpretative_dance interpretative_dancing,a form of modern dance in which the dancer's movements depict an emotion or tell a story
+48636,interreflection,reciprocal reflection between two reflecting surfaces; "there was interreflection between the two surfaces of the lens"
+48637,interregnum,the time between two reigns, governments, etc.
+48638,interrelation interrelationship interrelatedness,mutual or reciprocal relation or relatedness; "interrelationships of animal structure and function"
+48639,interrogation,a transmission that will trigger an answering transmission from a transponder
+48640,interrogation examination interrogatory,formal systematic questioning
+48641,interrogative_mood interrogative,some linguists consider interrogative sentences to constitute a mood
+48642,interrupt,a signal that temporarily stops the execution of a program so that another procedure can be carried out
+48643,interrupted_fern Osmunda_clatonia,North American fern having tall erect pinnate fronds and a few sporogenous pinnae at or near the center of the fertile fronds
+48644,interrupter,a device for automatically interrupting an electric current
+48645,interruption break,some abrupt occurrence that interrupts an ongoing activity; "the telephone is an annoying interruption"; "there was a break in the action when a player was hurt"
+48646,intersection,a point or set of points common to two or more geometric configurations
+48647,intersection,the act of intersecting (as joining by causing your path to intersect your target's path)
+48648,intersection crossroad crossway crossing carrefour,a junction where one street or road crosses another
+48649,intersection intersection_point point_of_intersection,a point where lines intersect
+48650,intersection product Cartesian_product,the set of elements common to two or more sets; "the set of red hats is the intersection of the set of hats and the set of red things"
+48651,interspersion interspersal,the act of combining one thing at intervals among other things; "the interspersion of illustrations in the text"
+48652,interstate interstate_highway,one of the system of highways linking major cities in the 48 contiguous states of the United States
+48653,interstellar_medium,interstellar space including streams of protons moving from the stars
+48654,interstellar_space,the space between stars
+48655,interstice,a small structural space between tissues or parts of an organ; "the interstices of a network"
+48656,interstice,small opening between things
+48657,interstitial_fluid,liquid found between the cells of the body that provides much of the liquid environment of the body
+48658,interstitial_pneumonia,chronic lung disease affecting the interstitial tissue of the lungs
+48659,interstitial_tissue,tissue between the cells of a structure or part in plant or animal
+48660,intertrigo,chafing between two skin surfaces that are in contact (as in the armpit or under the breasts or between the thighs)
+48661,interval,a set containing all points (or all real numbers) between two given endpoints
+48662,interval musical_interval,the difference in pitch between two notes
+48663,interval separation,the distance between things; "fragile items require separation and cushioning"
+48664,intervenor,(law) a party who interposes in a pending proceeding
+48665,intervention,(law) a proceeding that permits a person to enter into a lawsuit already in progress; admission of person not an original party to the suit so that person can protect some right or interest that is allegedly affected by the proceedings; "the purpose of intervention is to prevent unnecessary duplication of lawsuits"
+48666,intervention intercession,the act of intervening (as to mediate a dispute, etc.); "it occurs without human intervention"
+48667,intervention interference,a policy of intervening in the affairs of other countries
+48668,interventricular_foramen foramen_of_Monro Monro's_foramen,the small opening (on both the right and left sides) that connects the third ventricle in the diencephalon with the lateral ventricle in the cerebral hemisphere
+48669,intervertebral_disc intervertebral_disk,a fibrocartilaginous disc serving as a cushion between all of the vertebrae of the spinal column (except between the first two)
+48670,intervertebral_vein vena_intervertebralis,one of several veins accompanying spinal nerves
+48671,interview,the questioning of a person (or a conversation in which information is elicited); often conducted by journalists; "my interviews with teenagers revealed a weakening of religious bonds"
+48672,interviewee,a person who is interviewed
+48673,interviewer,a person who conducts an interview
+48674,intestacy,the situation of being or dying without a legally valid will
+48675,intestinal_bypass,surgical operation that shortens the small intestine; used in treating obesity
+48676,intestinal_flora,harmless microorganisms (as Escherichia coli) that inhabit the intestinal tract and are essential for its normal functioning
+48677,intestinal_juice,secretions by glands lining the walls of the intestines
+48678,intestinal_obstruction ileus,blockage of the intestine (especially the ileum) that prevents the contents of the intestine from passing to the lower bowel
+48679,intestine bowel gut,the part of the alimentary canal between the stomach and the anus
+48680,inti,the basic unit of money in Peru
+48681,intifada intifadah,an uprising by Palestinian Arabs (in both the Gaza Strip and the West Bank) against Israel in the late 1980s and again in 2000; "the first intifada ended when Israel granted limited autonomy to the Palestine National Authority in 1993"
+48682,intima,the innermost membrane of an organ (especially the inner lining of an artery or vein or lymphatic vessel)
+48683,intimidation,the feeling of discouragement in the face of someone's superior fame or wealth or status etc.
+48684,intimidation,the feeling of being intimidated; being made to feel afraid or timid
+48685,intolerance,unwillingness to recognize and respect differences in opinions or beliefs
+48686,intolerance,impatience with annoyances; "his intolerance of interruptions"
+48687,intonation,singing by a soloist of the opening piece of plainsong
+48688,intonation,the production of musical tones (by voice or instrument); especially the exactitude of the pitch relations
+48689,intonation chanting,the act of singing in a monotonous tone
+48690,intonation modulation pitch_contour,rise and fall of the voice pitch
+48691,intonation_pattern,intonations characteristic of questions and requests and statements
+48692,intoxicant,a drug that can produce a state of intoxication
+48693,intoxication,excitement and elation beyond the bounds of sobriety; "the intoxication of wealth and power"
+48694,intracapsular_surgery,cataract surgery in which the entire lens is removed
+48695,intracellular_fluid,liquid contained inside the cell membranes (usually containing dissolved solutes)
+48696,intracranial_aneurysm,an aneurysm of a cranial artery
+48697,intractability intractableness,the trait of being hard to influence or control
+48698,intradermal_injection,an injection into the skin
+48699,intradermal_test subcutaneous_test,a form of skin test in which the suspected allergen is injected into the skin
+48700,intrados,the interior curve of an arch
+48701,intramuscular_injection,an injection into a muscle
+48702,intranet,a restricted computer network; a private network created using World Wide Web software
+48703,intransigency intransigence,the trait of being intransigent; stubbornly refusing to compromise
+48704,intransitive_verb intransitive_verb_form intransitive,a verb (or verb construction) that does not take an object
+48705,intransitivity intransitiveness,the grammatical relation created by an intransitive verb
+48706,intraocular_lens,an artificial lens that is implanted into the eye of someone to replace a damaged natural lens or someone who has had a cataract removed
+48707,intraocular_pressure IOP,pressure exerted by the fluids inside the eyeball; regulated by resistance to the outward flow of aqueous humor; "glaucoma can result from increased intraocular pressure"
+48708,intrauterine_device IUD,contraceptive device consisting of a piece of bent plastic or metal that is inserted through the vagina into the uterus
+48709,intravasation,entry of foreign matter into a blood vessel
+48710,intravenous_anesthetic,an anesthetic that produces anesthesia when injected into the circulatory system
+48711,intravenous_drip,slow continuous drip introducing solutions intravenously (a drop at a time)
+48712,intravenous_feeding IV,administration of nutrients through a vein
+48713,intravenous_injection,an injection into a vein
+48714,intravenous_pyelogram IVP,X-ray picture of the kidneys and ureters after injection of a radiopaque dye
+48715,intravenous_pyelography IVP,performing pyelography with intravenous injection of a contrast medium
+48716,intrigue,a clandestine love affair
+48717,intrigue machination,a crafty and involved plot to achieve your (usually sinister) ends
+48718,intrinsic_factor,a substance produced by the mucosa of the stomach and intestines that is essential for the absorption of vitamin B12; "lack of intrinsic factor can result in pernicious anemia"
+48719,intrinsic_fraud,fraud (as by use of forged documents or false claims or perjury) that misleads a court or jury and induces a finding for the one perpetrating the fraud
+48720,intro,a brief introductory passage to a piece of popular music
+48721,introduction,a new proposal; "they resisted the introduction of impractical alternatives"
+48722,introduction,a basic or elementary instructional text
+48723,introduction,the first section of a communication
+48724,introduction debut first_appearance launching unveiling entry,the act of beginning something new; "they looked forward to the debut of their new product line"
+48725,introit,a composition of vocal music that is appropriate for opening church services
+48726,introitus,entrance or opening to a hollow organ or tube (especially the vaginal opening); "the introitus of the vagina"
+48727,introject,(psychoanalysis) parental figures (and their values) that you introjected as a child; the voice of conscience is usually a parent's voice internalized
+48728,introjection,(psychoanalysis) the internalization of the parent figures and their values; leads to the formation of the superego
+48729,introjection,(psychology) unconscious internalization of aspects of the world (especially aspects of persons) within the self in such a way that the internalized representation takes over the psychological functions of the external objects
+48730,intron noncoding_DNA,sequence of a eukaryotic gene's DNA that is not translated into a protein
+48731,introspection self-contemplation self-examination,the contemplation of your own thoughts and desires and conduct
+48732,introspectiveness,thoughtfulness about your own situation and feelings
+48733,introversion,(psychology) an introverted disposition; concern with one's own thoughts and feelings
+48734,introvert,(psychology) a person who tends to shrink from social contacts and to become preoccupied with their own thoughts
+48735,intruder interloper trespasser,someone who intrudes on the privacy or property of another without permission
+48736,intrusion,the forcing of molten rock into fissures or between strata of an earlier rock formation
+48737,intrusion,rock produced by an intrusive process
+48738,intrusion,entrance by force or without permission or welcome
+48739,intrusiveness meddlesomeness officiousness,aggressiveness as evidenced by intruding; by advancing yourself or your ideas without invitation
+48740,intuition,instinctive knowing (without the use of rational processes)
+48741,intuition hunch suspicion,an impression that something might be the case; "he had an intuition that something had gone wrong"
+48742,intuitionism,(philosophy) the doctrine that knowledge is acquired primarily by intuition
+48743,intumescence intumescency,swelling up with blood or other fluids (as with congestion)
+48744,intumescence intumescency swelling,the increase in volume of certain substances when they are heated (often accompanied by release of water)
+48745,intussusception,(biology) growth in the surface area of a cell by the deposit of new particles between existing particles in the cell wall
+48746,inula,any plant of the genus Inula
+48747,inulin,used to manufacture fructose and in assessing kidney function
+48748,inutility uselessness unusefulness,the quality of having no practical use
+48749,invader encroacher,someone who enters by force in order to conquer
+48750,invagination introversion,the condition of being folded inward or sheathed
+48751,invagination introversion intussusception infolding,the folding in of an outer layer so as to form a pocket in the surface; "the invagination of the blastula"
+48752,invalid shut-in,someone who is incapacitated by a chronic illness or injury
+48753,invalidator voider nullifier,an official who can invalidate or nullify; "my bank check was voided and I wanted to know who the invalidator was"
+48754,invalidism,chronic ill health
+48755,invalidity invalidness,illogicality as a consequence of having a conclusion that does not follow from the premisses
+48756,invaluableness preciousness pricelessness valuableness,the positive quality of being precious and beyond value
+48757,invariability invariableness invariance,the quality of being resistant to variation
+48758,invariance,the nature of a quantity or property or function that remains unchanged when a given transformation is applied to it; "the invariance of the configuration under translation"
+48759,invariant,a feature (quantity or property or function) that remains unchanged when a particular transformation is applied to it
+48760,invasion,(pathology) the spread of pathogenic microorganisms or malignant cells to new sites in the body; "the tumor's invasion of surrounding structures"
+48761,invasion,the act of invading; the act of an army that invades for conquest or plunder
+48762,invasion encroachment intrusion,any entry into an area not previously occupied; "an invasion of tourists"; "an invasion of locusts"
+48763,invasion_of_privacy,the wrongful intrusion by individuals or the government into private affairs with which the public has no concern
+48764,invention,the act of inventing
+48765,invention innovation,a creation (a new device or process) resulting from study and experimentation
+48766,invention innovation excogitation conception design,the creation of something in the mind
+48767,inventiveness ingeniousness ingenuity cleverness,the power of creative imagination
+48768,inventor discoverer artificer,someone who is the first to think of or make something
+48769,inventory,(accounting) the value of a firm's current assets including raw materials and work in progress and finished goods
+48770,inventory inventorying stocktaking stock-taking,making an itemized list of merchandise or supplies on hand; "an inventory may be necessary to see if anything is missing"; "they held an inventory every month"
+48771,inventory stock_list,a detailed list of all the items in stock
+48772,inventory_accounting,accounting that controls and evaluates inventory
+48773,inventory_control,supervision of the supply and storage and accessibility of items in order to insure an adequate supply without excessive oversupply
+48774,inventory_item,an item listed in an inventory
+48775,inverse opposite,something inverted in sequence or character or effect; "when the direct approach failed he tried the inverse"
+48776,inverse_function,a function obtained by expressing the dependent variable of one function as the independent variable of another; f and g are inverse functions if f(x)=y and g(y)=x
+48777,inversion,abnormal condition in which an organ is turned inward or inside out (as when the upper part of the uterus is pulled into the cervical canal after childbirth)
+48778,inversion,a chemical process in which the direction of optical rotation of a substance is reversed from dextrorotatory to levorotary or vice versa
+48779,inversion,the layer of air near the earth is cooler than an overlying layer
+48780,inversion,(genetics) a kind of mutation in which the order of the genes in a section of a chromosome is reversed
+48781,inversion,(counterpoint) a variation of a melody or part in which ascending intervals are replaced by descending intervals and vice versa
+48782,inversion eversion everting,the act of turning inside out
+48783,inversion sexual_inversion,a term formerly used to mean taking on the gender role of the opposite sex
+48784,inversion upending,turning upside down; setting on end
+48785,invert_sugar,a mixture of equal parts of glucose and fructose resulting from the hydrolysis of sucrose; found naturally in fruits; sweeter than glucose
+48786,invertase saccharase sucrase,an enzyme that catalyzes the hydrolysis of sucrose into glucose and fructose
+48787,invertebrate,any animal lacking a backbone or notochord; the term is not used as a scientific classification
+48788,inverted_hang,a hang performed on the rings with the body upside down
+48789,inverted_pleat,a box pleat reversed so that the fullness is turned inward
+48790,inverter,an electrical converter that converts direct current into alternating current
+48791,investigation investigating,the work of inquiring into something thoroughly and systematically
+48792,investigator,someone who investigates
+48793,investing investment,the act of investing; laying out money or capital in an enterprise with the expectation of profit
+48794,investment,the commitment of something other than money (time, energy, or effort) to a project with the expectation of some worthwhile result; "this job calls for the investment of some hard thinking"; "he made an emotional investment in the work"
+48795,investment,outer layer or covering of an organ or part or organism
+48796,investment,the act of putting on robes or vestments
+48797,investment investiture,the ceremonial act of clothing someone in the insignia of an office; the formal promotion of a person to an office or rank
+48798,investment investment_funds,money that is invested with an expectation of profit
+48799,investment_adviser investment_advisor,someone who advises others how to invest their money
+48800,investment_banker underwriter,a banker who deals chiefly in underwriting new securities
+48801,investment_company investment_trust investment_firm fund,a financial institution that sells shares to individuals and invests in securities issued by other companies
+48802,investment_letter,a letter of intent saying that a letter security is being bought for investment and not for resale; avoids need for SEC registration
+48803,investor,someone who commits capital in order to gain financial returns
+48804,investors_club,a club of small investors who buy and sell securities jointly
+48805,invigilation,keeping watch over examination candidates to prevent cheating
+48806,invigilator,someone who watches examination candidates to prevent cheating
+48807,invisibility invisibleness,the quality of not being perceivable by the eye
+48808,invisible_balance,the difference in value over a period of time of a country's imports and exports of services and payments of property incomes
+48809,invitation,a request (spoken or written) to participate or be present or take part in something; "an invitation to lunch"; "she threw the invitation away"
+48810,invitation,a tempting allurement; "she was an invitation to trouble"
+48811,invite,a colloquial expression for invitation; "he didn't get no invite to the party"
+48812,invocation,an incantation used in conjuring or summoning a devil
+48813,invocation,the act of appealing for help
+48814,invocation supplication,a prayer asking God's help as part of a religious service
+48815,involucre,a highly conspicuous bract or bract pair or ring of bracts at the base of an inflorescence
+48816,involution,reduction in size of an organ or part (as in the return of the uterus to normal size after childbirth)
+48817,involution,a long and intricate and complicated grammatical construction
+48818,involution enfolding,the action of enfolding something
+48819,involutional_depression,a major depressive episode associated with the climacteric
+48820,involvement,a connection of inclusion or containment; "he escaped involvement in the accident"; "there was additional involvement of the liver and spleen"
+48821,invulnerability,the property of being invulnerable; the property of being incapable of being hurt (physically or emotionally)
+48822,invulnerability impregnability,having the strength to withstand attack
+48823,inwardness,preoccupation especially with one's attitudes and ethical or ideological values; "the sensitiveness of James's characters, their seeming inwardness"; "inwardness is what an Englishman quite simply has, painlessly, as a birthright"
+48824,inwardness,the quality or state of being inward or internal; "the inwardness of the body's organs"
+48825,inwardness internality,preoccupation with what concerns human inner nature (especially ethical or ideological values); "Socrates' inwardness, integrity, and inquisitiveness"- H.R.Finch
+48826,io_moth Automeris_io,large yellow American moth having a large eyelike spot on each hind wing; the larvae have stinging spines
+48827,iodic_acid,a soluble crystalline acid; used as a reagent and disinfectant
+48828,iodide,a salt or ester of hydriodic acid
+48829,iodination,the substitution or addition of iodine atoms in organic compounds
+48830,iodine iodin I atomic_number_53,a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks)
+48831,iodine-125,light radioactive isotope of iodine with a half-life of 60 days; used as a tracer in thyroid studies and as a treatment for hyperthyroidism
+48832,iodine-131,heavy radioactive isotope of iodine with a half-life of 8 days; used in a sodium salt to diagnose thyroid disease and to treat goiter
+48833,iodoamino_acid,an amino acid with iodine added
+48834,iodochlorhydroxyquin Clioquinol,drug used to treat certain fungal infection (as athlete's foot)
+48835,iodocompound,a compound containing the covalent iodine radical
+48836,iodoform tri-iodomethane,sweet smelling yellow solid haloform CHI3
+48837,iodoform triiodomethane,a yellowish crystalline solid with a penetrating odor; sometimes used as an antiseptic dressing
+48838,iodoprotein iodinated_protein,a protein that contains iodine
+48839,iodopsin,a violet photopigment in the retinal cones of the eyes of most vertebrates; plays a role in daylight vision
+48840,iodothyronine,thyronine with iodine added
+48841,iodotyrosine,tyrosine with iodine added
+48842,ion,a particle that is electrically charged (positive or negative); an atom or molecule or group that has lost or gained one or more electrons
+48843,ion_beam ionic_beam,a beam of ions moving in the same direction at the same speed
+48844,ion_engine,a type of reaction-propulsion engine to propel rockets in space; a stream of positive ions is accelerated to a high velocity by an electric field
+48845,ion_exchange,a process in which ions are exchanged between a solution and an insoluble (usually resinous) solid; widely used in industrial processing
+48846,ion_pump,a vacuum pump that removes gas by ionizing the atoms or molecules and adsorbing them on a metal surface
+48847,ionic_bond electrovalent_bond electrostatic_bond,a chemical bond in which one atom loses an electron to form a positive ion and the other atom gains an electron to form a negative ion
+48848,ionic_charge,the charge on an ion is equal to a constant charge e multiplied by an integer from 1 to 15
+48849,ionization ionisation,the condition of being dissociated into ions (as by heat or radiation or chemical reaction or electrical discharge); "the ionization of a gas"
+48850,ionization ionisation,the process of ionizing; the formation of ions by separating atoms or molecules or radicals or by adding or subtracting electrons from atoms by strong electric fields in a gas
+48851,ionization_chamber ionization_tube,a measuring instrument that measures the amount of ionizing radiation
+48852,ionizing_radiation,high-energy radiation capable of producing ionization in substances through which it passes
+48853,ionosphere,the outer region of the Earth's atmosphere; contains a high concentration of free electrons
+48854,ionospheric_wave,a sky wave that is reflected by the ionosphere
+48855,iontophoresis ionic_medication iontotherapy electromotive_drug_administration EMDA,therapy that uses a local electric current to introduce the ions of a medicine into the tissues
+48856,iota,the 9th letter of the Greek alphabet
+48857,ipecac,a medicinal drug used to evoke vomiting (especially in cases of drug overdose or poisoning)
+48858,ipratropium_bromide Atrovent,an inhaled bronchodilator (trade name Atrovent)
+48859,iproclozide,an antidepressant drug that acts as a monoamine oxidase inhibitor
+48860,ipse_dixit ipsedixitism,an unsupported dogmatic assertion
+48861,irascibility short_temper spleen quick_temper,a feeling of resentful anger
+48862,iridaceous_plant,any bulbous plant of the family Iridaceae
+48863,iridectomy,an eye operation that treats closed-angle glaucoma by surgical removal of part of the iris of the eye
+48864,iridium Ir atomic_number_77,a heavy brittle metallic element of the platinum group; used in alloys; occurs in natural alloys with platinum or osmium
+48865,iridocyclitis,inflammation of the iris and ciliary body of the eye
+48866,iridokeratitis,inflammation of the iris and cornea of the eye
+48867,iridoncus,swelling of the iris of the eye
+48868,iridotomy,a surgical procedure that makes an incision in the iris of the eye in order to enlarge the pupil or to treat closed-angle glaucoma
+48869,iris,muscular diaphragm that controls the size of the pupil which in turn controls the amount of light that enters the eye; it forms the colored portion of the eye
+48870,iris flag fleur-de-lis sword_lily,plants with sword-shaped leaves and erect stalks bearing bright-colored flowers composed of three petals and three drooping sepals
+48871,iris iris_diaphragm,diaphragm consisting of thin overlapping plates that can be adjusted to change the diameter of a central opening
+48872,iris_scanning,biometric identification by scanning the iris of the eye; "the structure of the iris is very distinctive"
+48873,iritis,inflammation of the iris
+48874,iron,a golf club that has a relatively narrow metal head
+48875,iron Fe atomic_number_26,a heavy ductile magnetic metallic element; is silver-white in pure form but readily rusts; used in construction and tools and armament; plays a role in the transport of oxygen by the blood
+48876,iron branding_iron,implement used to brand live stock
+48877,iron smoothing_iron,home appliance consisting of a flat metal base that is heated and used to smooth cloth
+48878,iron-grey iron-gray,the color of freshly broken cast iron
+48879,iron_age,(classical mythology) the last and worst age of the world
+48880,iron_blue Prussian_blue,any of various blue pigments
+48881,iron_blue steel_grey steel_gray Davy's_grey Davy's_gray,slightly purplish or bluish dark grey
+48882,iron_cage,a cage from which there is no escape
+48883,iron_curtain,an impenetrable barrier to communication or information especially as imposed by rigid censorship and secrecy; used by Winston Churchill in 1946 to describe the demarcation between democratic and communist countries
+48884,iron_deficiency_anemia iron_deficiency_anaemia,a form of anemia due to lack of iron in the diet or to iron loss as a result of chronic bleeding
+48885,iron_disulfide,a compound containing two atoms of sulfur combined with iron
+48886,iron_filing,a fragment of iron rubbed off by the use of a file
+48887,iron_fist,rigorous or ruthless control; "she rules the office with an iron fist"; "it takes an iron fist to contain the dissenting factions"
+48888,iron_foundry,a foundry where cast iron is produced
+48889,iron_horse,(c. 1840) an early term for a locomotive
+48890,iron_lung,respirator that produces alternations in air pressure in a chamber surrounding a patient's chest to force air into and out of the lungs thus providing artificial respiration
+48891,iron_maiden,instrument of torture consisting of a hollow iron frame shaped like the human body and lined with spikes to impale the victim
+48892,iron_man ironman,a strong man of exceptional physical endurance
+48893,iron_mold iron_mould,a spot caused the staining with rust or ink
+48894,iron_ore,an ore from which iron can be extracted
+48895,iron_perchloride,a highly toxic chemical used to engrave metal plates and electronic circuits
+48896,iron_putty,a cement resembling putty; made by mixing ferric oxide and boiled linseed oil; is acid resistant
+48897,iron_trap,a trap from which there is no escape
+48898,iron_tree iron-tree ironwood ironwood_tree,a small slow-growing deciduous tree of northern Iran having a low domed shape
+48899,ironclad,a wooden warship of the 19th century that is plated with iron or steel armor
+48900,ironing,garments (clothes or linens) that are to be (or have been) ironed; "there was a basketful of ironing to do"
+48901,ironing,the work of using heat to smooth washed clothes in order to remove any wrinkles
+48902,ironing_board,narrow padded board on collapsible supports; used for ironing clothes
+48903,ironmonger hardwareman,someone who sells hardware; "in England they call a hardwareman an ironmonger"
+48904,ironmongery,the merchandise that is sold in an ironmonger's shop
+48905,irons chains,metal shackles; for hands or legs
+48906,ironside,a man of great strength or bravery
+48907,ironweed vernonia,any of various plants of the genus Vernonia of tropical and warm regions of especially North America that take their name from their loose heads of purple to rose flowers that quickly take on a rusty hue
+48908,ironwood,exceptionally tough or hard wood of any of a number of ironwood trees
+48909,ironwork,work made of iron (gratings or rails or railings etc); "the houses had much ornamental ironwork"
+48910,ironworker,a person who makes articles of iron
+48911,ironworks,the workplace where iron is smelted or where iron goods are made
+48912,irony,a trope that involves incongruity between what is expected and what occurs
+48913,irony,incongruity between what might be expected and what actually occurs; "the irony of Ireland's copying the nation she most hated"
+48914,irradiation,the condition of being exposed to radiation
+48915,irradiation,(physiology) the spread of sensory neural impulses in the cortex
+48916,irradiation,the apparent enlargement of a bright object when viewed against a dark background
+48917,irradiation,(Pavolvian conditioning) the elicitation of a conditioned response by stimulation similar but not identical to the original stimulus
+48918,irrational_hostility,extreme prejudice
+48919,irrational_impulse,a strong spontaneous and irrational motivation; "his first impulse was to denounce them"; "the urge to find out got him into trouble"
+48920,irrational_motive,a motivation that is inconsistent with reason or logic
+48921,irrational_number irrational,a real number that cannot be expressed as a rational number
+48922,irrationality unreason,the state of being irrational; lacking powers of understanding
+48923,irredenta irridenta,a region that is related ethnically or historically to one country but is controlled politically by another
+48924,irredentism irridentism,the doctrine that irredenta should be controlled by the country to which they are ethnically or historically related
+48925,irredentist irridentist,an advocate of irredentism
+48926,irregular second,merchandise that has imperfections; usually sold at a reduced price without the brand name
+48927,irregularity geometrical_irregularity,an irregular asymmetry in shape; an irregular spatial pattern
+48928,irregularity unregularity,not characterized by a fixed principle or rate; at irregular intervals
+48929,irrelevance irrelevancy,the lack of a relation of something to the matter at hand
+48930,irreligionist,someone who is indifferent or hostile to religion
+48931,irreligiousness irreligion,the quality of not being devout
+48932,irreplaceableness,the quality of being irreplaceable
+48933,irrepressibility buoyancy,irrepressible liveliness and good spirit; "I admired his buoyancy and persistent good humor"
+48934,irreproducibility,the quality of being unreproducible; "he could not explain the irreproducibility of the results of his experiment"
+48935,irresistibility irresistibleness,the quality of being overpowering and impossible to resist
+48936,irresoluteness irresolution,the trait of being irresolute; lacking firmness of purpose
+48937,irresponsibility irresponsibleness,a form of untrustworthiness; the trait of lacking a sense of responsibility and not feeling accountable for your actions
+48938,irreverence,an irreverent mental attitude
+48939,irreverence violation,a disrespectful act
+48940,irreversibility,the quality of being irreversible (once done it cannot be changed)
+48941,irreversible_process,any process that is not reversible
+48942,irrigation,supplying dry land with water by means of ditches etc
+48943,irrigation,(medicine) cleaning a wound or body organ by flushing or washing out with water or a medicated solution
+48944,irrigation_ditch,a ditch to supply dry land with water artificially
+48945,irritability crossness fretfulness fussiness peevishness petulance choler,an irritable petulant feeling
+48946,irritable_bowel_syndrome spastic_colon mucous_colitis,recurrent abdominal pain and diarrhea (often alternating with periods of constipation); often associated with emotional stress
+48947,irritant thorn,something that causes irritation and annoyance; "he's a thorn in my flesh"
+48948,irritation,(pathology) abnormal sensitivity to stimulation; "any food produced irritation of the stomach"
+48949,irritation annoyance vexation botheration,the psychological state of being irritated or annoyed
+48950,irruption,a sudden sharp increase in the relative numbers of a population
+48951,irruption,a sudden violent entrance; a bursting in; "the recent irruption of bad manners"
+48952,ischemia ischaemia,local anemia in a given body part sometimes resulting from vasoconstriction or thrombosis or embolism
+48953,ischemic_anoxia stagnant_anoxia,anoxia resulting from slow peripheral circulation (such as follows congestive cardiac failure)
+48954,ischemic_hypoxia stagnant_hypoxia,hypoxia resulting from slow peripheral circulation (such as follows congestive cardiac failure)
+48955,ischemic_stroke ischaemic_stroke,the most common kind of stroke; caused by an interruption in the flow of blood to the brain (as from a clot blocking a blood vessel)
+48956,ischium ischial_bone os_ischii,one of the three sections of the hipbone; situated below the ilium
+48957,island,a land mass (smaller than a continent) that is surrounded by water
+48958,island,a zone or area resembling an island
+48959,islander island-dweller,an inhabitant of an island
+48960,islands_of_Langerhans isles_of_Langerhans islets_of_Langerhans,cell clusters in the pancreas that form the endocrine part of that organ; secrete insulin and other hormones
+48961,isle islet,a small island
+48962,isoagglutination,agglutination of an agglutinogen of one individual by a serum from another individual of the same species
+48963,isoagglutinin,an antibody produced by one individual that causes agglutination of red blood cells in other individuals of the same species
+48964,isoagglutinogen,an antigen capable of causing the production of (or reacting with) an isoagglutinin
+48965,isoantibody alloantibody,an antibody that occurs naturally against foreign tissues from a person of the same species
+48966,isobar,(meteorology)an isogram connecting points having equal barometric pressure at a given time
+48967,isobutylene,used also in making gasoline components
+48968,isocarboxazid Marplan,a monoamine oxidase inhibitor (trade name Marplan) that is used to treat clinical depression
+48969,isochrone,an isogram connecting points at which something occurs or arrives at the same time
+48970,isoclinic_line isoclinal,an isogram connecting points of equal magnetic inclination
+48971,isocyanate,a salt or ester of isocyanic acid
+48972,isocyanic_acid,an acid known only in the form of its esters
+48973,isoflurane,a widely used inhalation anesthetic
+48974,isogamete,either of a pair of conjugating gametes of the same size and structure
+48975,isogamy,(biology) reproduction by the union or fusion of gametes of the same size and structure
+48976,isogon,an equiangular polygon
+48977,isogonic_line isogonal_line isogone,an imaginary line connecting points on the Earth's surface where the magnetic declination is the same
+48978,isogram isopleth isarithm,a line drawn on a map connecting points having the same numerical value of some variable
+48979,isohel,an isogram connecting points receiving equal amounts of sunshine
+48980,isolation,a state of separation between persons or groups
+48981,isolation,(psychiatry) a defense mechanism in which memory of an unacceptable act or impulse is separated from the emotion originally associated with it
+48982,isolation,a feeling of being disliked and alone
+48983,isolation,a country's withdrawal from international politics; "he opposed a policy of American isolation"
+48984,isolation closing_off,the act of isolating something; setting something apart from others
+48985,isolationism,a policy of nonparticipation in international economic and political relations
+48986,isolationist,an advocate of isolationism in international affairs
+48987,isoleucine,an essential amino acid found in proteins; isomeric with leucine
+48988,isomer,a compound that exists in forms having different arrangements of atoms but the same molecular weight
+48989,isomerase,an enzyme that catalyzes its substrate to an isomeric form
+48990,isomerism,the state of being an isomer; the complex of chemical and physical phenomena characteristic of isomers
+48991,isomerization isomerisation,the conversion of a compound into an isomer of itself
+48992,isometric_line isometric,a line connecting isometric points
+48993,isometrics isometric_exercise,muscle-building exercises (or a system of musclebuilding exercises) involving muscular contractions against resistance without movement (the muscles contracts but the length of the muscle does not change)
+48994,isometropia,equality of refractive power in the two eyes
+48995,isometry,the growth rates in different parts of a growing organism are the same
+48996,isometry,a one-to-one mapping of one metric space into another metric space that preserves the distances between each pair of points; "the isometries of the cube"
+48997,isometry,equality of elevation above sea level
+48998,isometry,equality of measure (e.g., equality of height above sea level or equality of loudness etc.)
+48999,isomorphism isomorphy,(biology) similarity or identity of form or shape or structure
+49000,isoniazid INH Nydrazid,antibacterial drug (trade name Nydrazid) used to treat tuberculosis
+49001,isopod,any of various small terrestrial or aquatic crustaceans with seven pairs of legs adapted for crawling
+49002,isopropyl_alcohol isopropanol,alcohol used as antifreeze or a solvent
+49003,isoproterenol Isuprel,drug (trade name Isuprel) used to treat bronchial asthma and to stimulate the heart
+49004,isosceles_triangle,a triangle with two equal sides
+49005,isosorbide Isordil,drug (trade name Isordil) used to treat angina pectoris and congestive heart failure
+49006,isostasy,(geology) a general equilibrium of the forces tending to elevate or depress the earth's crust
+49007,isotherm,(meteorology) an isogram connecting points having the same temperature at a given time
+49008,isothiocyanate,a family of compounds derived from horseradish and radishes and onions and mustards; source of the hotness of those plants and preparations
+49009,isotonic_exercise,exercise in which opposing muscles contract and there is controlled movement (tension is constant while the lengths of the muscles change); "the classic isotonic exercise is lifting free weights"
+49010,isotonic_solution isosmotic_solution,a solution having the same osmotic pressure as blood
+49011,isotope,one of two or more atoms with the same atomic number but with different numbers of neutrons
+49012,isotropy symmetry,(physics) the property of being isotropic; having the same value when measured in different directions
+49013,issue,an important question that is in dispute and must be settled; "the issue could be settled by requiring public education for everyone"; "politicians never discuss the real issues"
+49014,issue issuing issuance,the act of providing an item for general use or for official purposes (usually in quantity); "a new issue of stamps"; "the last issue of penicillin was over a month ago"
+49015,issue military_issue government_issue,supplies (as food or clothing or ammunition) issued by the government
+49016,issue number,one of a series published periodically; "she found an old issue of the magazine in her dentist's waiting room"
+49017,issue publication,the act of issuing printed materials
+49018,issuer,an institution that issues something (securities or publications or currency etc.)
+49019,isthmus,a relatively narrow strip of land (with water on both sides) connecting two larger land areas
+49020,isthmus band,a cord-like tissue connecting two larger parts of an anatomical structure
+49021,itaconic_acid,a crystalline carboxylic acid; occurs in some fermentations of sugars
+49022,italic,a typeface with letters slanting upward to the right
+49023,italic,a style of handwriting with the letters slanting to the right
+49024,itch itchiness itching,an irritating cutaneous sensation that produces a desire to scratch
+49025,itch_mite sarcoptid,whitish mites that attack the skin of humans and other animals; "itch mites cause scabies"
+49026,item,a whole individual unit; especially when included in a list or collection; "they reduced the price on many items"
+49027,item point,a distinct part that can be specified separately in a group of things that could be enumerated on a list; "he noticed an item in the New York Times"; "she had several items on her shopping list"; "the main point on the agenda was taken up first"
+49028,iteration,doing or saying again; a repeated performance
+49029,iteration loop,(computer science) a single execution of a set of instructions that are to be repeated; "the solution took hundreds of iterations"
+49030,iteration looping,(computer science) executing the same set of instructions a given number of times or until a specified result is obtained; "the solution is obtained by iteration"
+49031,iterative iterative_aspect,the aspect of the verb that expresses the repetition of an action
+49032,itinerant gypsy gipsy,a laborer who moves from place to place as demanded by employment; "itinerant traders"
+49033,itineration,journeying from place to place preaching or lecturing; a preaching tour or lecturing tour
+49034,itraconazole Sporanox,an oral antifungal drug (trade name Sporanox) taken for cases of fungal nail disease
+49035,ivory tusk,a hard smooth ivory colored dentine that makes up most of the tusks of elephants and walruses
+49036,ivory_black,a black pigment made from grinding burnt ivory in oil
+49037,ivory_gull Pagophila_eburnea,white Arctic gull; migrates as far south as England and New Brunswick
+49038,ivory_nut vegetable_ivory apple_nut,nutlike seed of a South American palm; the hard white shell takes a high polish and is used for e.g. buttons
+49039,ivory_palm ivory-nut_palm ivory_plant Phytelephas_macrocarpa,a stemless palm tree of Brazil and Peru bearing ivory nuts
+49040,ivory_tower,a state of mind that is discussed as if it were a place; "he lived in the ivory tower of speculation"; "they viewed universities as ivory towers"
+49041,ivory_tree conessi kurchi kurchee Holarrhena_pubescens Holarrhena_antidysenterica,tropical Asian tree with hard white wood and bark formerly used as a remedy for dysentery and diarrhea
+49042,ivorybill ivory-billed_woodpecker Campephilus_principalis,large black-and-white woodpecker of southern United States and Cuba having an ivory bill; nearly extinct
+49043,ivy common_ivy English_ivy Hedera_helix,Old World vine with lobed evergreen leaves and black berrylike fruits
+49044,ivy_geranium ivy-leaved_geranium hanging_geranium Pelargonium_peltatum,a commonly cultivated trailing South American plant with peltate leaves and rosy flowers
+49045,izar,a voluminous cotton outer garment (usually white) traditionally worn by Muslim women of northern Africa and the Middle East; covers the entire body
+49046,jab,a quick short straight punch
+49047,jab jabbing poke poking thrust thrusting,a sharp hand gesture (resembling a blow); "he warned me with a jab with his finger"; "he made a thrusting motion with his fist"
+49048,jabber jabbering gabble,rapid and indistinct speech
+49049,jabberwocky,nonsensical language (according to Lewis Carroll)
+49050,jabiru Jabiru_mycteria,large white stork of warm regions of the world especially America
+49051,jabot,a ruffle on the front of a woman's blouse or a man's shirt
+49052,jaboticaba,tough-skinned purple grapelike tropical fruit grown in Brazil
+49053,jaboticaba jaboticaba_tree Myrciaria_cauliflora,small evergreen tropical tree native to Brazil and West Indies but introduced into southern United States; grown in Brazil for its edible tough-skinned purple grapelike fruit that grows all along the branches
+49054,jacamar,tropical American insectivorous bird having a long sharp bill and iridescent green or bronze plumage
+49055,jack,a small ball at which players aim in lawn bowling
+49056,jack,an electrical device consisting of a connector socket designed for the insertion of a plug
+49057,jack,small flag indicating a ship's nationality
+49058,jack,tool for exerting pressure or lifting
+49059,jack,any of several fast-swimming predacious fishes of tropical to warm temperate seas
+49060,jack doodly-squat diddly-squat diddlysquat diddly-shit diddlyshit diddly diddley squat shit,a small worthless amount; "you don't know jack"
+49061,jack jackass,male donkey
+49062,jack jackstones,game equipment consisting of one of several small six-pointed metal pieces that are picked up while bouncing a ball in the game of jacks
+49063,jack knave,one of four face cards in a deck bearing a picture of a young prince
+49064,jack-in-the-box,plaything consisting of a toy clown that jumps out of a box when the lid is opened
+49065,jack-in-the-pulpit Indian_turnip wake-robin Arisaema_triphyllum Arisaema_atrorubens,common American spring-flowering woodland herb having sheathing leaves and an upright club-shaped spadix with overarching green and purple spathe producing scarlet berries
+49066,jack-o'-lantern,lantern carved from a pumpkin
+49067,jack-o-lantern_fungus jack-o-lantern jack-a-lantern Omphalotus_illudens,a large poisonous agaric with orange caps and narrow clustered stalks; the gills are luminescent
+49068,jack_bean wonder_bean giant_stock_bean Canavalia_ensiformis,annual semi-erect bushy plant of tropical South America bearing long pods with white seeds grown especially for forage
+49069,jack_oak northern_pin_oak Quercus_ellipsoidalis,small to medium deciduous oak of east central North America; leaves have sharply pointed lobes
+49070,jack_pine Pinus_banksiana,slender medium-sized two-needled pine of eastern North America; with yellow-green needles and scaly grey to red-brown fissured bark
+49071,jack_plane,a carpenter's plane for rough finishing
+49072,jackal Canis_aureus,Old World nocturnal canine mammal closely related to the dog; smaller than a wolf; sometimes hunts in a pack but usually singly or as a member of a pair
+49073,jackass_bat spotted_bat Euderma_maculata,a large bat of the southwestern United States having spots and enormous ears
+49074,jackass_penguin Spheniscus_demersus,small penguin of South America and southern Africa with a braying call
+49075,jackdaw daw Corvus_monedula,common black-and-grey Eurasian bird noted for thievery
+49076,jacket,the outer skin of a potato
+49077,jacket,the tough metal shell casing for certain kinds of ammunition
+49078,jacket,an outer wrapping or casing; "phonograph records were sold in cardboard jackets"
+49079,jacket,a short coat
+49080,jacket_potato,a baked potato served with the jacket on
+49081,jackfruit jackfruit_tree Artocarpus_heterophyllus,East Indian tree cultivated for its immense edible fruit and seeds
+49082,jackfruit jak jack,immense East Indian fruit resembling breadfruit; it contains an edible pulp and nutritious seeds that are commonly roasted
+49083,jacking_off jerking_off hand_job wank,slang for masturbation
+49084,jackknife,a dive in which the diver bends to touch the ankles before straightening out
+49085,jackknife-fish Equetus_lanceolatus,black-and-white drumfish with an erect elongated dorsal fin
+49086,jacklight,a light used as a lure in hunting or fishing at night
+49087,jackpot,any outstanding award
+49088,jackrabbit,large hare of western North America
+49089,jacks jackstones knucklebones,a game in which jackstones are thrown and picked up in various groups between bounces of a small rubber ball
+49090,jackscrew screw_jack,screw-operated jack
+49091,jacksmelt Atherinopsis_californiensis,a relatively large silversides of the Pacific coast of North America (known to reach 18 inches in length)
+49092,jacksnipe half_snipe Limnocryptes_minima,a small short-billed Old World snipe
+49093,jackstraw spillikin,a thin strip of wood used in playing the game of jackstraws
+49094,jackstraws spillikins,a game in which players try to pick each jackstraw (or spillikin) off of a pile without moving any of the others
+49095,jaconet,a lightweight cotton cloth with a smooth and slightly stiff finish; used for clothing and bandages
+49096,jacquard,a highly figured fabric woven on a Jacquard loom
+49097,jactitation,(law) a false boast that can harm others; especially a false claim to be married to someone (formerly actionable at law)
+49098,jactitation jactation,(pathology) extremely restless tossing and twitching usually by a person with a severe illness
+49099,jade jadestone,a semiprecious gemstone that takes a high polish; is usually green but sometimes whitish; consists of jadeite or nephrite
+49100,jade_green jade,a light green color varying from bluish green to yellowish green
+49101,jade_vine emerald_creeper Strongylodon_macrobotrys,vigorous Philippine evergreen twining liana; grown for spectacular festoons of green flowers that resemble lobster claws
+49102,jadeite,a hard green mineral consisting of sodium aluminum silicate in monoclinic crystalline form; a source of jade; found principally in Burma
+49103,jaeger,rapacious seabird that pursues weaker birds to make them drop their prey
+49104,jag,a sharp projection on an edge or surface; "he clutched a jag of the rock"
+49105,jag,a slit in a garment that exposes material of a different color underneath; used in Renaissance clothing
+49106,jag,a bout of drinking or drug taking
+49107,jag dag,a flap along the edge of a garment; used in medieval clothing
+49108,jaggedness,something irregular like a bump or crack in a smooth surface
+49109,jaggery jagghery jaggary,unrefined brown sugar made from palm sap
+49110,jaguar panther Panthera_onca Felis_onca,a large spotted feline of tropical America similar to the leopard; in some classifications considered a member of the genus Felis
+49111,jaguarundi jaguarundi_cat jaguarondi eyra Felis_yagouaroundi,long-bodied long-tailed tropical American wildcat
+49112,jai_alai pelota,a Basque or Spanish game played in a court with a ball and a wickerwork racket
+49113,jail jailhouse gaol clink slammer poky pokey,a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)
+49114,jail_bird jailbird gaolbird,a criminal who has been jailed repeatedly
+49115,jail_delivery,the use of force to liberate prisoners
+49116,jalapeno jalapeno_pepper,hot green or red pepper of southwestern United States and Mexico
+49117,jalousie,a shutter made of angled slats
+49118,jam,preserve of crushed fruit
+49119,jam_session,an impromptu jazz concert
+49120,jamais_vu,the experience of being unfamiliar with a person or situation that is actually very familiar; associated with certain types of epilepsy
+49121,jamb,upright consisting of a vertical side member of a door or window frame
+49122,jambalaya,spicy Creole dish of rice and ham, sausage, chicken, or shellfish with tomatoes, peppers, onions, and celery
+49123,jammer,a transmitter used to broadcast electronic jamming
+49124,jamming electronic_jamming jam,deliberate radiation or reflection of electromagnetic energy for the purpose of disrupting enemy use of electronic devices or systems
+49125,jampan,a kind of sedan chair used in India
+49126,jampot jamjar,a jar for holding jellies or preserves
+49127,janissary,a loyal supporter; "every politician has a following of janissaries"
+49128,janitor,someone employed to clean and maintain a building
+49129,japan,lacquerware decorated and varnished in the Japanese manner with a glossy durable black lacquer
+49130,japan,lacquer with a durable glossy black finish, originally from the orient
+49131,japanese_clover japan_clover jap_clover Lespedeza_striata,an annual of tropical Asia naturalized in United States
+49132,japonica Camellia_japonica,greenhouse shrub with glossy green leaves and showy fragrant rose-like flowers; cultivated in many varieties
+49133,japonica maule's_quince Chaenomeles_japonica,deciduous thorny shrub native to Japan having red blossoms
+49134,jar,a vessel (usually cylindrical) with a wide mouth and without handles
+49135,jar jarful,the quantity contained in a jar; "he drank a jar of beer"
+49136,jargon,specialized technical terminology characteristic of a particular subject
+49137,jargoon jargon,a colorless (or pale yellow or smoky) variety of zircon
+49138,jasmine,any of several shrubs and vines of the genus Jasminum chiefly native to Asia
+49139,jasper,an opaque form of quartz; red or yellow or brown or dark green in color; used for ornamentation or as a gemstone
+49140,jassid,a variety of leafhopper
+49141,jati,(Hinduism) a Hindu caste or distinctive social group of which there are thousands throughout India; a special characteristic is often the exclusive occupation of its male members (such as barber or potter)
+49142,jaundice icterus,yellowing of the skin and the whites of the eyes caused by an accumulation of bile pigment (bilirubin) in the blood; can be a symptom of gallstones or liver infection or anemia
+49143,jaundice_of_the_newborn physiological_jaundice_of_the_newborn icterus_neonatorum,yellowish appearance in newborn infants; usually subsides spontaneously
+49144,jauntiness nattiness dapperness rakishness,stylishness as evidenced by a smart appearance
+49145,jaunting_car jaunty_car,an open two-wheeled one-horse cart formerly widely used in Ireland
+49146,javelin,an athletic competition in which a javelin is thrown as far as possible
+49147,javelin,a spear thrown as a weapon or in competitive field events
+49148,jaw,the bones of the skull that frame the mouth and serve to open it; the bones that hold the teeth
+49149,jaw,the part of the skull of a vertebrate that frames the mouth and holds the teeth
+49150,jaw,holding device consisting of one or both of the opposing parts of a tool that close to hold an object
+49151,jawan,(India) a private soldier or male constable
+49152,jawbreaker,a large round hard candy
+49153,jawbreaker,a word that is hard to pronounce
+49154,jawfish,small large-mouthed tropical marine fishes common along sandy bottoms; males brood egg balls in their mouths; popular aquarium fishes
+49155,jawless_vertebrate jawless_fish agnathan,eel-shaped vertebrate without jaws or paired appendages including the cyclostomes and some extinct forms
+49156,jay,crested largely blue bird
+49157,jaywalker,a reckless pedestrian who crosses a street illegally
+49158,jazz,a genre of popular music that originated in New Orleans around 1900 and developed through increasingly complex styles
+49159,jazz,a style of dance music popular in the 1920s; similar to New Orleans jazz but played by large bands
+49160,jazz_band jazz_group combo,a small band of jazz musicians
+49161,jazz_festival,a festival that features performances by jazz artists
+49162,jazz_musician jazzman,a musician who plays or composes jazz music
+49163,je_ne_sais_quoi,something indescribable
+49164,jealousy,zealous vigilance; "cherish their official political freedom with fierce jealousy"-Paul Blanshard
+49165,jealousy green-eyed_monster,a feeling of jealous envy (especially of a rival)
+49166,jeans blue_jeans denim,(used in the plural) close-fitting trousers of heavy denim for manual work or casual wear
+49167,jeep landrover,a car suitable for traveling over rough terrain
+49168,jeer jeering mockery scoff scoffing,showing your contempt by derision
+49169,jejunal_artery intestinal_artery,an artery that is a branch of the superior mesenteric artery that supplies the jejunum
+49170,jejunitis,inflammation of the jejunum of the small intestine
+49171,jejunity jejuneness,quality of inadequate nutritive value
+49172,jejunity jejuneness tameness vapidity vapidness,the quality of being vapid and unsophisticated
+49173,jejunoileitis,inflammation of the jejunum and the ileum of the small intestine
+49174,jejunostomy,surgical creation of an opening between the jejunum and the anterior abdominal wall; will allow artificial feeding
+49175,jejunum,the part of the small intestine between the duodenum and the ileum
+49176,jellaba,a loose cloak with a hood; worn in the Middle East and northern Africa
+49177,jello Jell-O,fruit-flavored dessert (trade mark Jell-O) made from a commercially prepared gelatin powder
+49178,jelly,any substance having the consistency of jelly or gelatin
+49179,jelly,a preserve made of the jelled juice of fruit
+49180,jelly_bean jelly_egg,sugar-glazed jellied candy
+49181,jelly_fungus,any fungus of the order Tremellales or Auriculariales whose fruiting body is jellylike in consistency when fresh
+49182,jellyfish,any of numerous usually marine and free-swimming coelenterates that constitute the sexually reproductive forms of hydrozoans and scyphozoans
+49183,jellyroll Swiss_roll,thin sheet of sponge cake spread with jelly and then rolled up to make a cylindrical cake
+49184,jennet jenny jenny_ass,female donkey
+49185,jerboa,mouselike jumping rodent
+49186,jerboa_kangaroo kangaroo_jerboa,brush-tailed rat kangaroo
+49187,jerboa_rat,large Australian rat with hind legs adapted for leaping
+49188,jeremiad,a long and mournful complaint; "a jeremiad against any form of government"
+49189,jerk,(mechanics) the rate of change of acceleration
+49190,jerk,raising a weight from shoulder height to above the head by straightening the arms
+49191,jerk dork,a dull stupid fatuous person
+49192,jerk jerking jolt saccade,an abrupt spasmodic movement
+49193,jerkin,a tight sleeveless and collarless jacket (often made of leather) worn by men in former times
+49194,jerky jerked_meat jerk,meat (especially beef) cut in strips and dried in the sun
+49195,jeroboam double-magnum,a large wine bottle (holds 4/5 of a gallon)
+49196,jerry-builder,someone who builds cheap buildings out of poor materials on speculation for a quick profit
+49197,jerry-building,construction of inferior buildings for a quick profit
+49198,jersey,a slightly elastic machine-knit fabric
+49199,jersey T-shirt tee_shirt,a close-fitting pullover shirt
+49200,jest joke jocularity,activity characterized by good humor
+49201,jester fool motley_fool,a professional clown employed to entertain a king or nobleman in the Middle Ages
+49202,jet,a hard black form of lignite that takes a brilliant polish and is used in jewelry or ornamentation
+49203,jet blue_jet reverse_lightning,atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward
+49204,jet jet_plane jet-propelled_plane,an airplane powered by one or more jet engines
+49205,jet squirt spurt spirt,the occurrence of a sudden discharge (as of liquid)
+49206,jet_bridge,an extendible bridge for loading passengers onto large commercial airplanes; provides protected access to the plane from the gate
+49207,jet_engine,a gas turbine produces a stream of hot gas that propels a jet plane by reaction propulsion
+49208,jet_lag,fatigue and sleep disturbance resulting from disruption of the body's normal circadian rhythm as a result of jet travel
+49209,jet_propulsion,propulsion by means of the discharge of a jet of fluid toward the rear
+49210,jet_set,a set of rich and fashionable people who travel widely for pleasure
+49211,jet_stream,a high-speed high-altitude airstream blowing from west to east near the top of the troposphere; has important effects of the formation of weather fronts
+49212,jetliner,a large jet plane that carries passengers
+49213,jetsam,the part of a ship's equipment or cargo that is thrown overboard to lighten the load in a storm
+49214,jeu_d'esprit,a witty comment or writing
+49215,jew's_harp jews'_harp mouth_bow,a small lyre-shaped musical instrument that is placed between the teeth and played by twanging a wire tongue while changing the shape of the mouth cavity
+49216,jewel gem,a person who is as brilliant and precious as a piece of jewelry
+49217,jewel gem precious_stone,a precious or semiprecious stone incorporated into a piece of jewelry
+49218,jewel_orchid,any of several delicate Asiatic orchids grown especially for their velvety leaves with metallic white or gold veining
+49219,jeweler jeweller,someone in the business of selling jewelry
+49220,jeweler's_glass,an optical instrument used by jewelers; has one or more lenses and is used to view features not readily seen
+49221,jewelled_headdress jeweled_headdress,a headdress adorned with jewels
+49222,jewelry jewellery,an adornment (as a bracelet or ring or necklace) made of precious metals and set with gems (or imitation gems)
+49223,jewelry_dealer jewelry_store,a firm that sells and buys jewelry
+49224,jewelry_maker jeweler jeweller,someone who makes jewelry
+49225,jewels-of-opar Talinum_paniculatum,erect plant with tuberous roots and terminal panicles of red to yellow flowers; southwestern North America to Central America; widely introduced elsewhere
+49226,jewelweed lady's_earrings orange_balsam celandine touch-me-not Impatiens_capensis,North American annual plant with usually yellow or orange flowers; grows chiefly on wet rather acid soil
+49227,jewfish Mycteroperca_bonaci,large dark grouper with a thick head and rough scales
+49228,jezebel,a shameless impudent scheming woman
+49229,jiao,10 jiao equal 1 yuan in China
+49230,jib,any triangular fore-and-aft sail (set forward of the foremast)
+49231,jibboom,a spar that extends the bowsprit
+49232,jig,a fisherman's lure with one or more hooks that is jerked up and down in the water
+49233,jig,a device that holds a piece of machine work and guides the tools operating on it
+49234,jig,any of various old rustic dances involving kicking and leaping
+49235,jig gigue,music in three-four time for dancing a jig
+49236,jiggermast jigger,any small mast on a sailing vessel; especially the mizzenmast of a yawl
+49237,jigsaw scroll_saw fretsaw,fine-toothed power saw with a narrow blade; used to cut curved outlines
+49238,jigsaw_puzzle,a puzzle that requires you to reassemble a picture that has been mounted on a stiff base and cut into interlocking pieces
+49239,jihad jehad,a holy struggle or striving by a Muslim for a moral or spiritual or political goal
+49240,jilt,a woman who jilts a lover
+49241,jim_crow,a crowbar fitted with a claw for pulling nails
+49242,jimdandy jimhickey crackerjack,someone excellent of their kind; "he's a jimdandy of a soldier"
+49243,jimdandy jimhickey crackerjack,something excellent of its kind; "the bike was a jimdandy"
+49244,jimmies sprinkles,bits of sweet chocolate used as a topping on e.g. ice cream
+49245,jimmy jemmy,a short crowbar; "in Britain they call a jimmy and jemmy"
+49246,jimsonweed jimson_weed Jamestown_weed common_thorn_apple apple_of_Peru Datura_stramonium,intensely poisonous tall coarse annual tropical weed having rank-smelling foliage, large white or violet trumpet-shaped flowers and prickly fruits
+49247,jingle jangle,a metallic sound; "the jingle of coins"; "the jangle of spurs"
+49248,jinks high_jinks hijinks high_jinx,noisy and mischievous merrymaking
+49249,jinrikisha ricksha rickshaw,a small two-wheeled cart for one passenger; pulled by one person
+49250,jiqui Malpighia_obovata,Cuban timber tree with hard wood very resistant to moisture
+49251,jird,gerbil of northern Africa
+49252,jitter,small rapid variations in a waveform resulting from fluctuations in the voltage supply or mechanical vibrations or other sources
+49253,jitter,a small irregular movement
+49254,jitterbug,a jerky American dance that was popular in the 1940s
+49255,jitteriness jumpiness nervousness restiveness,the anxious feeling you have when you have the jitters
+49256,jitters heebie-jeebies screaming_meemies,extreme nervousness
+49257,job,(computer science) a program application that may consist of several steps but is a single logical unit
+49258,job,an object worked on; a result produced by working; "he held the job in his left hand and worked on it with his right"
+49259,job,a workplace; as in the expression `on the job'
+49260,job,the responsibility to do something; "it is their job to print the truth"
+49261,job,the performance of a piece of work; "she did an outstanding job as Ophelia"; "he gave it up as a bad job"
+49262,job,a damaging piece of work; "dry rot did the job of destroying the barn"; "the barber did a real job on my hair"
+49263,job task chore,a specific piece of work required to be done as a duty or for a specific fee; "estimates of the city's loss on that job ranged as high as a million dollars"; "the job of repairing the engine took several hours"; "the endless task of classifying the samples"; "the farmer's morning chores"
+49264,job-control_language,a problem-oriented language used to describe job requirements to an operating system
+49265,job-oriented_terminal,a terminal designed for a particular application
+49266,job_action,a temporary action by workers to protest management decision or to make demands
+49267,job_application,an application for a job
+49268,job_candidate,an applicant who is being considered for a job
+49269,job_control,a program that is called to prepare each job to be run
+49270,job_description,description of the responsibilities associated with a given job
+49271,job_interview employment_interview,an interview to determine whether an applicant is suitable for a position of employment
+49272,job_lot,a miscellaneous collection of things sold together
+49273,jobber middleman wholesaler,someone who buys large quantities of goods and resells to merchants rather than to the ultimate customers
+49274,jobbery,corruptness among public officials
+49275,jobcentre,a government office in a town where information about available jobs is displayed and where unemployment benefits are administered
+49276,jobholder,an employee who holds a regular job
+49277,jockey,an operator of some vehicle or machine or apparatus; "he's a truck jockey"; "a computer jockey"; "a disc jockey"
+49278,jockey,someone employed to ride horses in horse races
+49279,jockey_club,a club to promote and regulate horse racing
+49280,jocoseness jocosity merriness humorousness,the trait of merry joking
+49281,jocosity jocularity,fun characterized by humor
+49282,jocundity jocularity,a feeling facetious merriment
+49283,jodhpur jodhpur_boot jodhpur_shoe,a short riding boot that fastens with a buckle at the side
+49284,jodhpurs jodhpur_breeches riding_breeches,(used in the plural) flared trousers ending at the calves; worn with riding boots
+49285,jog,a sharp change in direction; "there was a jog in the road"
+49286,jog trot lope,a slow pace of running
+49287,jog_trot,an easy gait of a horse; midway between a walk and a trot
+49288,jogger,someone who runs a steady slow pace (usually for exercise)
+49289,jogging,running at a jog trot as a form of cardiopulmonary exercise
+49290,joggle jiggle,a slight irregular shaking motion
+49291,johnnycake johnny_cake journey_cake,cornbread usually cooked pancake-style on a griddle (chiefly New England)
+49292,joie_de_vivre,a keen enjoyment of living
+49293,joiner,a person who likes to join groups
+49294,joiner,a woodworker whose work involves making things by joining pieces of wood
+49295,joinery,fine woodwork done by a joiner
+49296,joining connection connexion,the act of bringing two things into contact (especially for communication); "the joining of hands around the table"; "there was a connection via the internet"
+49297,joint,a disreputable place of entertainment
+49298,joint,junction by which parts or objects are joined together
+49299,joint articulation articulatio,(anatomy) the point of connection between two bones or elements of a skeleton (especially if it allows motion)
+49300,joint marijuana_cigarette reefer stick spliff,marijuana leaves rolled into a cigarette for smoking
+49301,joint-stock_company,a company (usually unincorporated) which has the capital of its members pooled in a common fund; transferable shares represent ownership interest; shareholders are legally liable for all debts of the company
+49302,joint_probability,the probability of two events occurring together
+49303,joint_resolution,a resolution passed by both houses of Congress which becomes legally binding when signed by the Chief Executive (or passed over the Chief Executive's veto)
+49304,joint_return,a return filed by a husband and wife
+49305,joint_venture,a venture by a partnership or conglomerate designed to share risk or expertise; "a joint venture between the film companies to produce TV shows"
+49306,jointed_charlock wild_radish wild_rape runch Raphanus_raphanistrum,Eurasian weed having yellow or mauve or white flowers and podlike fruits
+49307,jointed_rush Juncus_articulatus,rush of Australia
+49308,jointer jointer_plane jointing_plane long_plane,a long carpenter's plane used to shape the edges of boards so they will fit together
+49309,jointure legal_jointure,(law) an estate secured to a prospective wife as a marriage settlement in lieu of a dower
+49310,joist,beam used to support floors or roofs
+49311,joke,a triviality not to be taken seriously; "I regarded his campaign for mayor as a joke"
+49312,joke gag laugh jest jape,a humorous anecdote or remark intended to provoke laughter; "he told a very funny joke"; "he knows a million gags"; "thanks for the laugh"; "he laughed unpleasantly at his own jest"; "even a schoolboy's jape is supposed to have some ascertainable point"
+49313,joker,an inconspicuous clause in a document or bill that affects its meaning in a way that is not immediately apparent; "when I demanded my money he showed me the joker in the contract"
+49314,joker,a playing card that is usually printed with a picture of a jester
+49315,joker jokester,a person who enjoys telling or playing jokes
+49316,joker turkey,a person who does something thoughtless or annoying; "some joker is blocking the driveway"
+49317,jollity jolliness joviality,feeling jolly and jovial and full of good humor
+49318,jolly,a happy party
+49319,jolly_boat jolly,a yawl used by a ship's sailors for general work
+49320,jolt jar jounce shock,a sudden jarring impact; "the door closed with a jolt"; "all the jars and jolts were smoothed out by the shock absorbers"
+49321,jonah jinx,a person believed to bring bad luck to those around him
+49322,jonquil,often used colloquially for any yellow daffodil
+49323,jonquil Narcissus_jonquilla,widely cultivated ornamental plant native to southern Europe but naturalized elsewhere having fragrant yellow or white clustered flowers
+49324,jordan_almond,variety of large almond from Malaga, Spain; used in confectionery
+49325,jorum,a large drinking bowl
+49326,joss,a Chinese god worshipped in the form of an idol
+49327,joss_house,a Chinese temple or shrine for idol worship
+49328,joss_stick,a slender stick of incense burned before a joss by the Chinese
+49329,jostle jostling,the act of jostling (forcing your way by pushing)
+49330,jotter,a small notebook for rough notes
+49331,jotting jot,a brief (and hurriedly handwritten) note
+49332,joule J watt_second,a unit of electrical energy equal to the work done when a current of one ampere passes through a resistance of one ohm for one second
+49333,journal,a periodical dedicated to a particular subject; "he reads the medical journals"
+49334,journal,a record book as a physical object
+49335,journal,the part of the axle contained by a bearing
+49336,journal_bearing,the bearing of a journal
+49337,journal_box,metal housing for a journal bearing
+49338,journalese,the style in which newspapers are written
+49339,journalism,the profession of reporting or photographing or editing news stories for one of the media
+49340,journalism news_media,newspapers and magazines collectively
+49341,journalist,a writer for newspapers and magazines
+49342,journalist's_privilege,the right of a journalist to refuse to divulge sources of confidential information
+49343,journey journeying,the act of traveling from one place to another
+49344,joust tilt,a combat between two mounted knights tilting against each other with blunted lances
+49345,jowl,a fullness and looseness of the flesh of the lower cheek and jaw (characteristic of aging)
+49346,joy delight pleasure,something or someone that provides a source of happiness; "a joy to behold"; "the pleasure of his company"; "the new car is a delight"
+49347,joy joyousness joyfulness,the emotion of great happiness
+49348,joylessness,a feeling of dismal cheerlessness
+49349,joyride,a ride in a car taken solely for pleasure; "they took their girlfriends for joyrides in stolen cars"
+49350,joystick,a manual control consisting of a vertical handle that can move freely in two directions; used as an input device to computers or to devices controlled by computers
+49351,jubilee,a special anniversary (or the celebration of it)
+49352,judas,a one-way peephole in a door
+49353,judge justice jurist,a public official authorized to decide questions brought before a court of justice
+49354,judge_advocate,an officer assigned to the judge advocate general
+49355,judge_advocate,a staff officer serving as legal adviser to a military commander
+49356,judge_advocate_general,the senior legal advisor to a branch of the military
+49357,judgeship judicature,the position of judge
+49358,judgment judgement assessment,the act of judging or assessing a person or situation or event; "they criticized my judgment of the contestants"
+49359,judgment judgement judging,the cognitive process of reaching a decision or drawing conclusions
+49360,judgment judgement judicial_decision,(law) the determination by a court of competent jurisdiction on matters submitted to it
+49361,judgment judgement mind,an opinion formed by judging something; "he was reluctant to make his judgment known"; "she changed her mind"
+49362,judgment judgement sound_judgment sound_judgement perspicacity,the capacity to assess situations or circumstances shrewdly and to draw sound conclusions
+49363,judgment_in_personam judgement_in_personam personal_judgment personal_judgement,a judgment rendered against an individual (or corporation) for the payment of money damages
+49364,judgment_in_rem judgement_in_rem,a judgment pronounced on the status of some particular subject or property or thing (as opposed to one pronounced on persons)
+49365,judgment_lien,lien on a debtor's property that is granted to a creditor by court judgment; lien may be enforced by having the sheriff seize the property and hold a sheriff's sale
+49366,judgment_of_dismissal judgement_of_dismissal dismissal,a judgment disposing of the matter without a trial
+49367,judgment_on_the_merits judgement_on_the_merits,judgment rendered through analysis and adjudication of the factual issues presented
+49368,judicial_branch,the branch of the United States government responsible for the administration of justice
+49369,judicial_review,review by a court of law of actions of a government official or entity or of some other legally appointed person or body or the review by an appellate court of the decision of a trial court
+49370,judicial_torture,torture that is sanctioned by the state and executed by duly accredited officials; "the English renounced judicial torture in 1640"
+49371,judiciary bench,persons who administer justice
+49372,judiciary judicature judicatory judicial_system,the system of law courts that administer justice and constitute the judicial branch of government
+49373,judiciousness,good judgment
+49374,judiciousness sagacity sagaciousness,the trait of forming opinions by distinguishing and evaluating
+49375,judo,a sport adapted from jujitsu (using principles of not resisting) and similar to wrestling; developed in Japan
+49376,jug,a large bottle with a narrow mouth
+49377,jug jugful,the quantity contained in a jug
+49378,jug_band,a musical group that uses jugs and washboards and kazoos and other improvised instruments
+49379,jug_wine,inexpensive wine sold in large bottles or jugs
+49380,jugale jugal_point,the craniometric point at the union of the frontal and temporal processes of the zygomatic bone
+49381,juggernaut steamroller,a massive inexorable force that seems to crush everything in its way
+49382,juggle juggling,the act of rearranging things to give a misleading impression
+49383,juggle juggling,throwing and catching several objects simultaneously
+49384,juggler,a performer who juggles objects and performs tricks of manual dexterity
+49385,jugglery,artful trickery designed to achieve an end; "the senator's tax program was mere jugglery"
+49386,jugglery,the performance of a juggler
+49387,jugular,a vital part that is vulnerable to attack; "he always goes for the jugular"
+49388,jugular_vein vena_jugularis jugular,veins in the neck that return blood from the head
+49389,juice,energetic vitality; "her creative juices were flowing"
+49390,juice,electric current; "when the wiring was finished they turned on the juice"
+49391,juice,the liquid part that can be extracted from plant or animal tissue by squeezing or cooking
+49392,juice succus,any of several liquids of the body; "digestive juices"
+49393,juju,the power associated with a juju
+49394,juju voodoo hoodoo fetish fetich,a charm superstitiously believed to embody magical powers
+49395,jujube,chewy fruit-flavored jellied candy (sometimes medicated to soothe a sore throat)
+49396,jujube Chinese_date Chinese_jujube,dark red plumlike fruit of Old World buckthorn trees
+49397,jujube jujube_bush Christ's-thorn Jerusalem_thorn Ziziphus_jujuba,spiny tree having dark red edible fruits
+49398,jujutsu jujitsu jiujitsu,a method of self-defense without weapons that was developed in China and Japan; holds and blows are supplemented by clever use of the attacker's own weight and strength
+49399,juke fake,(football) a deceptive move made by a football player
+49400,juke jook juke_joint jook_joint juke_house jook_house,a small roadside establishment in the southeastern United States where you can eat and drink and dance to music provided by a jukebox
+49401,jukebox nickelodeon,a cabinet containing an automatic record player; records are played by inserting a coin
+49402,julep mint_julep,bourbon and sugar and mint over crushed ice
+49403,julienne,a clear soup garnished with julienne vegetables
+49404,julienne julienne_vegetable,a vegetable cut into thin strips (usually used as a garnish)
+49405,jumble jumbal,small flat ring-shaped cake or cookie
+49406,jumbojet jumbo_jet,a very large jet plane
+49407,jumby_bead jumbie_bead Ormosia_coarctata,West Indian tree similar to Ormosia monosperma but larger and having smaller leaflets and smaller seeds
+49408,jump,(film) an abrupt transition from one scene to another
+49409,jump jumping,the act of jumping; propelling yourself off the ground; "he advanced in a series of jumps"; "the jumping was unexpected"
+49410,jump leap,a sudden and decisive increase; "a jump in attendance"
+49411,jump parachuting,descent with a parachute; "he had done a lot of parachuting in the army"
+49412,jump_ball,(basketball) the way play begins or resumes when possession is disputed; an official tosses the ball up between two players who jump in an effort to tap it to a teammate
+49413,jump_cut,an immediate transition from one scene to another
+49414,jump_rope,a child's game or a cardiopulmonary exercise in which the player jumps over a swinging rope
+49415,jump_rope skip_rope skipping_rope,a length of rope (usually with handles on each end) that is swung around while someone jumps over it
+49416,jump_seat,a folding seat in an automobile
+49417,jump_suit,one-piece uniform worn by parachutists
+49418,jump_suit jumpsuit,one-piece garment fashioned after a parachutist's uniform
+49419,jumper,a person who jumps; "as the jumper neared the ground he lost control"; "the jumper's parachute opened"
+49420,jumper,an athlete who competes at jumping; "he is one hell of a jumper"
+49421,jumper,a coverall worn by children
+49422,jumper,a small connector used to make temporary electrical connections
+49423,jumper,a loose jacket or blouse worn by workmen
+49424,jumper jump_shot,(basketball) a player releases the basketball at the high point of a jump
+49425,jumper pinafore pinny,a sleeveless dress resembling an apron; worn over other clothing
+49426,jumper_cable jumper_lead lead booster_cable,a jumper that consists of a short piece of wire; "it was a tangle of jumper cables and clip leads"
+49427,jumping,the act of participating in an athletic competition in which you must jump
+49428,jumping-off_place point_of_departure,a place from which an enterprise or expedition is launched; "one day when I was at a suitable jumping-off place I decided to see if I could find him"; "my point of departure was San Francisco"
+49429,jumping_bean jumping_seed Mexican_jumping_bean,seed of Mexican shrubs of the genus Sebastiana containing the larva of a moth whose movements cause the bean to jerk or tumble
+49430,jumping_bristletail machilid,wingless insect living in dark moist places as under dead tree trunks; they make erratic leaps when disturbed
+49431,jumping_jack,plaything consisting of a toy figure with movable joints that can be made to dance by pulling strings
+49432,jumping_mouse,any of several primitive mouselike rodents with long hind legs and no cheek pouches; of woodlands of Eurasia and North America
+49433,jumping_orchid Catasetum_macrocarpum,orchid having both male and female flowers in the same raceme; when a sensitive projection at the base of the column of the male flower is touched the pollen is suddenly ejected
+49434,jumping_plant_louse psylla psyllid,small active cicada-like insect with hind legs adapted for leaping; feeds on plant juices
+49435,jumping_up_and_down,jumping in one spot (as in excitement); "the wailing and jumping up and down exhausted him"
+49436,jumpstart jump-start,starting an automobile engine that has a weak battery by means of jumper cables to another car; "my battery was dead so I had to get a jumpstart from my neighbor"
+49437,junco snowbird,small North American finch seen chiefly in winter
+49438,junction,the place where two or more things come together
+49439,junction adjunction,an act of joining or adjoining things
+49440,junction conjunction,something that joins or connects
+49441,junction conjunction conjugation colligation,the state of being joined together
+49442,junction_barrier barrier_strip,a junction unit for connecting 2 cables without the need for plugs
+49443,juncture critical_point crossroads,a crisis situation or point in time when a critical decision must be made; "at that juncture he had no idea what to do"; "he must be made to realize that the company stands at a critical point"
+49444,juncture occasion,an event that occurs at a critical time; "at such junctures he always had an impulse to leave"; "it was needed only on special occasions"
+49445,juneberry_holly,a holly shrub
+49446,jungle,a location marked by an intense competition and struggle for survival
+49447,jungle,an impenetrable equatorial forest
+49448,jungle_cat Felis_chaus,small Asiatic wildcat
+49449,jungle_cock,male jungle fowl
+49450,jungle_fever,severe form of malaria occurring in tropical regions
+49451,jungle_fowl gallina,small Asiatic wild bird; believed to be ancestral to domestic fowl
+49452,jungle_gym,a structure of vertical and horizontal rods where children can climb and play
+49453,jungle_hen,female jungle fowl
+49454,jungle_rot,skin disorder induced by a tropical climate
+49455,junior,term of address for a disrespectful and annoying male; "look here, junior, it's none of your business"
+49456,junior,a third-year undergraduate
+49457,junior,the younger of two persons; "she is two years my junior"
+49458,junior_class,penultimate class in high school or college
+49459,junior_college,a college that offers only the first two years terminating in an associate degree
+49460,junior_featherweight,weighs no more than 122 pounds
+49461,junior_high_school junior_high,a secondary school usually including 7th and 8th grades
+49462,junior_lightweight,weighs no more than 130 pounds
+49463,junior_middleweight,weighs no more than 154 pounds
+49464,junior_school,British school for children aged 7-11
+49465,junior_status,in a junior position
+49466,junior_varsity JV,a college or university team that competes at a level below the varsity team
+49467,junior_welterweight,weighs no more than 140 pounds
+49468,juniper,coniferous shrub or small tree with berrylike cones
+49469,juniper_berries,berrylike cone of a common juniper; used in making gin
+49470,juniper_berry,berrylike fruit of a plant of the genus Juniperus especially the berrylike cone of the common juniper
+49471,juniperic_acid,a crystalline acid found in the exudations of some conifers
+49472,junk,any of various Chinese boats with a high poop and lugsails
+49473,junk_DNA,stretches of DNA that do not code for genes; "most of the genome consists of junk DNA"
+49474,junk_bond high-yield_bond,a (speculative) bond with a credit rating of BB or lower; issued for leveraged buyouts and other takeovers by companies with questionable credit
+49475,junk_food,food that tastes good but is high in calories having little nutritional value
+49476,junk_mail,third-class mail consisting of advertising and often addressed to `resident' or `occupant'
+49477,junk_shop,a shop that sells cheap secondhand goods
+49478,junket,dessert made of sweetened milk coagulated with rennet
+49479,junket,a trip taken by an official at public expense
+49480,junketing,taking an excursion for pleasure
+49481,junkyard,a field where junk is collected and stored for resale
+49482,jupati jupaty jupati_palm Raffia_taedigera,a tall Brazilian feather palm with a terminal crown of very large leathery pinnatisect leaves rising from long strong stems used for structural purposes
+49483,jurisdiction,in law; the territory within which power can be exercised
+49484,jurisprudence law legal_philosophy,the branch of philosophy concerned with the law and the principles that lead courts to make the decisions they do
+49485,jurist legal_expert,a legal scholar versed in civil law or the law of nations
+49486,juror juryman jurywoman,someone who serves (or waits to be called to serve) on a jury
+49487,jury,a body of citizens sworn to give a true verdict according to the evidence presented in a court of law
+49488,jury panel,a committee appointed to judge a competition
+49489,jury_box,an enclosure within a courtroom for the jury
+49490,jury_duty,the civic duty to serve on a jury
+49491,jury_mast,a temporary mast to replace one that has broken off
+49492,jury_system,a legal system for determining the facts at issue in a law suit
+49493,jus_sanguinis,the principle that a person's nationality at birth is the same as that of his natural parents
+49494,jus_soli,the principle that a person's nationality at birth is determined by the place of birth
+49495,just-noticeable_difference jnd,(psychophysics) the difference between two stimuli that (under properly controlled experimental conditions) is detected as often as it is undetected
+49496,just_deserts comeuppance comeupance poetic_jstice,an outcome (good or bad) that is well deserved and fitting
+49497,justice,judgment involved in the determination of rights and the assignment of rewards and punishments
+49498,justice justness,the quality of being just or fair
+49499,justice_of_the_peace,a local magistrate with limited powers
+49500,justiciar justiciary,formerly a high judicial officer
+49501,justiciary,the jurisdiction of a justiciar
+49502,justification,a statement in explanation of some action or belief
+49503,justification,something (such as a fact or circumstance) that shows an action to be reasonable or necessary; "he considered misrule a justification for revolution"
+49504,justification,the act of defending or explaining or making excuses for by reasoning; "the justification of barbarous means by holy ends"- H.J.Muller
+49505,justness rightness nicety,conformity with some esthetic standard of correctness or propriety; "it was performed with justness and beauty"
+49506,jute,a plant fiber used in making rope or sacks
+49507,juvenescence,the process of growing into a youth
+49508,juvenile juvenile_person,a young person, not fully developed
+49509,juvenile_body,the body of a young person
+49510,juvenile_court,a court having jurisdiction over dependent and delinquent children
+49511,juvenile_wart,a small benign growth on the faces of hands of children
+49512,juxtaposition,a side-by-side position
+49513,juxtaposition apposition collocation,the act of positioning close together (or side by side); "it is the result of the juxtaposition of contrasting colors"
+49514,kabbalism cabalism,adherence to some extreme traditional theological concept or interpretation
+49515,kabob kebab shish_kebab,cubes of meat marinated and cooked on a skewer usually with vegetables
+49516,kachina,a masked dancer during a Pueblo religious ceremony who is thought to embody some particular spirit
+49517,kachina,a deified spirit of the Pueblo people
+49518,kachina,a carved doll wearing the costume of a particular Pueblo spirit; usually presented to a child as a gift
+49519,kaffir kafir caffer caffre,an offensive and insulting term for any Black African
+49520,kaffir_boom Cape_kafferboom Erythrina_caffra,small semi-evergreen broad-spreading tree of eastern South Africa with orange-scarlet flowers and small coral-red seeds; yields a light soft wood used for fence posts or shingles
+49521,kaffir_boom Transvaal_kafferboom Erythrina_lysistemon,small semi-evergreen tree of South Africa having dense clusters of clear scarlet flowers and red seeds
+49522,kaffir_bread Encephalartos_caffer,South African cycad; the farinaceous pith of the fruit used as food
+49523,kaffir_cat caffer_cat Felis_ocreata,widely distributed wildcat of Africa and Asia Minor
+49524,kaffiyeh,an Arab headdress consisting of a square piece of cloth folded into a triangle and fastened over the crown by an agal
+49525,kahikatea New_Zealand_Dacryberry New_Zealand_white_pine Dacrycarpus_dacrydioides Podocarpus_dacrydioides,New Zealand evergreen valued for its light easily worked wood
+49526,kai_apple,South African fruit smelling and tasting like apricots; used for pickles and preserves
+49527,kainite,a white mineral consisting of magnesium sulphate and potassium chloride; a source of potassium salts; used as a fertilizer
+49528,kaiser_roll,rounded raised poppy-seed roll made of a square piece of dough by folding the corners in to the center
+49529,kaki Himantopus_novae-zelandiae,blackish stilt of New Zealand sometimes considered a color phase of the white-headed stilt
+49530,kakke_disease,the endemic form of beriberi
+49531,kalansuwa,a cap that is wrapped around by a turban and worn by Muslim religious elders
+49532,kale kail cole,coarse curly-leafed cabbage
+49533,kale kail cole borecole colewort Brassica_oleracea_acephala,a hardy cabbage with coarse curly leaves that do not form a head
+49534,kaleidoscope,a complex pattern of constantly changing colors and shapes
+49535,kaleidoscope,an optical toy in a tube; it produces symmetrical patterns as bits of colored glass are reflected by mirrors
+49536,kalemia,the presence of excess potassium in the circulating blood
+49537,kaliuresis kaluresis,the presence of excess potassium in the urine
+49538,kalmia,any plant of the genus Kalmia
+49539,kalumpang Java_olives Sterculia_foetida,large tree of Old World tropics having foul-smelling orange-red blossoms followed by red pods enclosing oil-rich seeds sometimes used as food
+49540,kameez,a long tunic worn by many people from the Indian subcontinent (usually with a salwar or churidars)
+49541,kamikaze,a pilot trained and willing to cause a suicidal crash
+49542,kamikaze,a fighter plane used for suicide missions by Japanese pilots in World War II
+49543,kampong campong,a native village in Malaysia
+49544,kanamycin Kantrex,antibiotic (trade name Kantrex) used to treat severe infections
+49545,kanchil Tragulus_kanchil,small chevrotain of southeastern Asia
+49546,kangaroo,any of several herbivorous leaping marsupials of Australia and New Guinea having large powerful hind legs and a long thick tail
+49547,kangaroo_apple poroporo Solanum_aviculare,Australian annual sometimes cultivated for its racemes of purple flowers and edible yellow egg-shaped fruit
+49548,kangaroo_court,an irregular unauthorized court
+49549,kangaroo_mouse,leaping rodent of Australian desert areas
+49550,kangaroo_mouse dwarf_pocket_rat,small silky-haired pouched rodent; similar to but smaller than kangaroo rats
+49551,kangaroo_paw kangaroo's_paw kangaroo's-foot kangaroo-foot_plant Australian_sword_lily Anigozanthus_manglesii,sedgelike spring-flowering herb having clustered flowers covered with woolly hairs; Australia
+49552,kangaroo_rat desert_rat Dipodomys_phillipsii,any of various leaping rodents of desert regions of North America and Mexico; largest members of the family Heteromyidae
+49553,kanzu,(Swahili) a long garment (usually white) with long sleeves; worn by men in East Africa
+49554,kaoliang,sorghums of China and Manchuria having small white or brown grains (used for food) and dry pithy stalks (used for fodder, fuel and thatching)
+49555,kaolinite,a mineral consisting of aluminum silicate; main source of kaolin
+49556,kaon kappa-meson k-meson K_particle,an unstable meson produced as the result of a high-energy particle collision
+49557,kapeika,100 kapeikas equal 1 rubel in Belarus
+49558,kaph,the 11th letter of the Hebrew alphabet
+49559,kapok ceiba_tree silk-cotton_tree white_silk-cotton_tree Bombay_ceiba God_tree Ceiba_pentandra,massive tropical tree with deep ridges on its massive trunk and bearing large pods of seeds covered with silky floss; source of the silky kapok fiber
+49560,kapok silk_cotton vegetable_silk,a plant fiber from the kapok tree; used for stuffing and insulation
+49561,kappa,the 10th letter of the Greek alphabet
+49562,kapuka Griselinia_littoralis,small New Zealand broadleaf evergreen tree often cultivated in warm regions as an ornamental
+49563,karaoke,singing popular songs accompanied by a recording of an orchestra (usually in bars or nightclubs)
+49564,karat carat kt,the unit of measurement for the proportion of gold in an alloy; 18-karat gold is 75% gold; 24-karat gold is pure gold
+49565,karate,a traditional Japanese system of unarmed combat; sharp blows and kicks are given to pressure-sensitive points on the body of the opponent
+49566,karma,(Hinduism and Buddhism) the effects of a person's actions that determine his destiny in his next incarnation
+49567,karyokinesis,organic process consisting of the division of the nucleus of a cell during mitosis or meiosis
+49568,karyolymph,a clear liquid in the cell nucleus in which the nucleolus and chromatin and other structures are dispersed
+49569,karyolysis,disintegration and dissolution of a cell nucleus when a cell dies
+49570,karyotype,the appearance of the chromosomal makeup of a somatic cell in an individual or species (including the number and arrangement and size and structure of the chromosomes)
+49571,kasbah casbah,an older or native quarter of many cities in northern Africa; the quarter in which the citadel is located
+49572,kasha,boiled or baked buckwheat
+49573,kat khat qat quat cat Arabian_tea African_tea,the leaves of the shrub Catha edulis which are chewed like tobacco or used to make tea; has the effect of a euphoric stimulant; "in Yemen kat is used daily by 85% of adults"
+49574,katabatic_wind catabatic_wind,a wind caused by the downward motion of cold air
+49575,katamorphism,metamorphism that occurs at or near the earth's surface; breaks down complex minerals into simpler ones
+49576,katharobe,an organism that lives in an oxygenated medium lacking organic matter
+49577,katharometer,measures thermal conductivity
+49578,katsura_tree Cercidiphyllum_japonicum,rapidly growing deciduous tree of low mountainsides of China and Japan; grown as an ornamental for its dark blue-green candy-scented foliage that becomes yellow to scarlet in autumn
+49579,katydid,large green long-horned grasshopper of North America; males produce shrill sounds by rubbing together special organs on the forewings
+49580,kauri,white close-grained wood of a tree of the genus Agathis especially Agathis australis
+49581,kauri kauri_copal kauri_resin kauri_gum,resin of the kauri trees of New Zealand; found usually as a fossil; also collected for making varnishes and linoleum
+49582,kauri kaury Agathis_australis,tall timber tree of New Zealand having white straight-grained wood
+49583,kauri_pine dammar_pine,any of various trees of the genus Agathis; yield dammar resin
+49584,kava kavakava,an alcoholic drink made from the aromatic roots of the kava shrub
+49585,kawaka Libocedrus_plumosa,New Zealand timber tree resembling the cypress
+49586,kayak,a small canoe consisting of a light frame made watertight with animal skins; used by Eskimos
+49587,kazoo,a toy wind instrument that has a membrane that makes a sound when you hum into the mouthpiece
+49588,kea Nestor_notabilis,large brownish-green New Zealand parrot
+49589,kedgeree,a dish of rice and hard-boiled eggs and cooked flaked fish
+49590,keel,a projection or ridge that suggests a keel
+49591,keel,the median ridge on the breastbone of birds that fly
+49592,keel,one of the main longitudinal beams (or plates) of the hull of a vessel; can extend vertically into the water to provide lateral stability
+49593,keelboat,river boat with a shallow draught and a keel but no sails; used to carry freight; moved by rowing or punting or towing
+49594,keeled_garlic Allium_carinatum,Eurasian bulbous plant
+49595,keelson,a longitudinal beam connected to the keel of ship to strengthen it
+49596,keen,a funeral lament sung with loud wailing
+49597,keep donjon dungeon,the main tower within the walls of a medieval castle or fortress
+49598,keeper,someone in charge of other people; "am I my brother's keeper?"
+49599,keeping,conformity or harmony; "his behavior was not in keeping with the occasion"
+49600,keepsake souvenir token relic,something of sentimental value
+49601,keeshond,a spitz-like dog having a shaggy greyish coat and tightly curled tail originating in Holland
+49602,keg,small cask or barrel
+49603,keg kegful,the quantity contained in a keg
+49604,kei_apple kei_apple_bush Dovyalis_caffra,vigorous South African spiny shrub grown for its round yellow juicy edible fruits
+49605,keloid cheloid,raised pinkish scar tissue at the site of an injury; results from excessive tissue repair
+49606,kelp,large brown seaweeds having fluted leathery fronds
+49607,kelp_greenling Hexagrammos_decagrammus,common food and sport fish of western coast of North America
+49608,kelpie,an Australian sheepdog with pointed ears
+49609,kelpy kelpie,(Scottish folklore) water spirit in the form of a horse that likes to drown its riders
+49610,kelvin K,the basic unit of thermodynamic temperature adopted under the Systeme International d'Unites
+49611,kenaf deccan_hemp,fiber from an East Indian plant Hibiscus cannabinus
+49612,kenaf kanaf deccan_hemp bimli bimli_hemp Indian_hemp Bombay_hemp Hibiscus_cannabinus,valuable fiber plant of East Indies now widespread in cultivation
+49613,kennel doghouse dog_house,outbuilding that serves as a shelter for a dog
+49614,kenning,conventional metaphoric name for something, used especially in Old English and Old Norse poetry
+49615,kenosis,the concept of emptying one's own will and receive God's will, in Catholicism
+49616,kepi peaked_cap service_cap yachting_cap,a cap with a flat circular top and a visor
+49617,keratalgia,pain in the cornea
+49618,keratectasia,abnormal bulging of the cornea of the eye
+49619,keratin ceratin,a fibrous scleroprotein that occurs in the outer layer of the skin and in horny tissues such as hair, feathers, nails, and hooves
+49620,keratinization keratinisation,organic process by which keratin is deposited in cells and the cells become horny (as in nails and hair)
+49621,keratitis,inflammation of the cornea causing watery painful eyes and blurred vision
+49622,keratoacanthoma,skin tumor that grows rapidly (especially in older people) and resembles a carcinoma but does not spread; it usually disappears spontaneously, often leaving a scar
+49623,keratocele,hernia of the cornea
+49624,keratoconjunctivitis,inflammation of the cornea and conjunctiva
+49625,keratoconus,abnormal cone-shaped protrusion of the cornea of the eye; can be treated by epikeratophakia
+49626,keratoderma keratodermia,any skin disorder consisting of a growth that appears horny
+49627,keratohyalin,hyaline in the large granules of the stratum granulosum
+49628,keratoiritis,inflammation of the cornea and the iris of the eye
+49629,keratomalacia,softening and drying and ulceration of the cornea resulting from vitamin A deficiency; symptom of cystic fibrosis or sprue
+49630,keratomycosis,fungal infection of the cornea
+49631,keratonosis,any abnormal condition of the outer skin (epidermis)
+49632,keratonosus,any disease of the cornea
+49633,keratoplasty corneal_graft corneal_transplant,a surgical procedure in which part or all of a damaged or diseased cornea is replaced by healthy corneal tissue from a donor
+49634,keratoscleritis,inflammation of the cornea and sclera of the eye
+49635,keratoscope,medical instrument to examine the cornea in order to detect irregularities in its anterior surface
+49636,keratoscopy,examination of the cornea with a keratoscope to detect irregularities in its anterior surface
+49637,keratosis,a skin condition marked by an overgrowth of layers of horny skin
+49638,keratosis_blennorrhagica keratoderma_blennorrhagica,skin disease characterized by a scaly rash on the palms and soles; associated with Reiter's syndrome
+49639,keratosis_follicularis Darier's_disease,a rare hereditary condition marked by dark crusted patches (sometimes containing pus)
+49640,keratosis_pilaris,keratosis characterized by hard conical elevations in the openings of sebaceous glands (especially of arms and thighs)
+49641,keratotomy,surgical incision into the cornea
+49642,kerb_crawler,someone who drives slowly along the curb seeking sex from prostitutes or other women
+49643,kerchief,a square scarf that is folded into a triangle and worn over the head or about the neck
+49644,kerion,ringworm infection of the hair follicles of the scalp and beard that usually results in a swelling that is covered with pustules and oozes fluid
+49645,kern,the part of a metal type that projects beyond its body
+49646,kernel,a single whole grain of a cereal; "a kernel of corn"
+49647,kernel meat,the inner and usually edible part of a seed or grain or nut or fruit stone; "black walnut kernels are difficult to get out of the shell"
+49648,kernel substance core center centre essence gist heart heart_and_soul inwardness marrow meat nub pith sum nitty-gritty,the choicest or most essential or most vital part of some idea or experience; "the gist of the prosecutor's argument"; "the heart and soul of the Republican Party"; "the nub of the story"
+49649,kernicterus,an abnormal accumulation of bile pigment in the brain and other nerve tissue; causes yellow staining and tissue damage
+49650,kernite,a light soft mineral consisting of hydrated sodium borate in crystalline form; an important source of boron
+49651,kerosene kerosine lamp_oil coal_oil,a flammable hydrocarbon oil used as fuel in lamps and heaters
+49652,kerygma kerugma,preaching the gospel of Christ in the manner of the early church
+49653,kestrel Falco_tinnunculus,small Old World falcon that hovers in the air against a wind
+49654,ketamine ketamine_hydrochloride Ketalar,a general anesthetic and tranquilizer (not a barbiturate) that is administered intravenously or intramuscularly; used mainly by veterinarians or for minor surgery with geriatric or pediatric patients; taken in large doses it causes hallucinations similar to those associated with the use of PCP
+49655,ketch,a sailing vessel with two masts; the mizzen is forward of the rudderpost
+49656,keteleeria,Asiatic conifers resembling firs
+49657,ketembilla kitembilla kitambilla,maroon-purple gooseberry-like fruit of India having tart-sweet purple pulp used especially for preserves
+49658,ketembilla kitembilla kitambilla ketembilla_tree Ceylon_gooseberry Dovyalis_hebecarpa,a small shrubby spiny tree cultivated for its maroon-purple fruit with sweet purple pulp tasting like gooseberries; Sri Lanka and India
+49659,ketoacidosis diabetic_acidosis,acidosis with an accumulation of ketone bodies; occurs primarily in diabetes mellitus
+49660,ketohexose,a monosaccharide having six carbon atoms and a ketone group
+49661,ketone,any of a class of organic compounds having a carbonyl group linked to a carbon atom in each of two hydrocarbon radicals
+49662,ketone_body acetone_body,a ketone that is an intermediate product of the breakdown of fats in the body; any of three compounds (acetoacetic acid, acetone, and/or beta-hydroxybutyric acid) found in excess in blood and urine of persons with metabolic disorders
+49663,ketone_group,a group having the characteristic properties of ketones
+49664,ketonemia ketosis acetonemia,an abnormal increase of ketone bodies in the blood as in diabetes mellitus
+49665,ketonuria ketoaciduria acetonuria,excessive amounts of ketone bodies in the urine as in diabetes mellitus or starvation
+49666,ketoprofen Orudis Orudis_KT Oruvail,nonsteroidal anti-inflammatory drug (trade names Orudis or Orudis KT or Oruvail)
+49667,ketorolac Torodal,nonsteroidal anti-inflammatory (trade name Torodal) that is given only orally
+49668,ketorolac_tromethamine Acular Toradol,nonsteroidal anti-inflammatory drug (trade names Acular and Toradol) that is administered only intramuscularly
+49669,ketose,any monosaccharide sugar that contains a ketone group or its hemiacetal
+49670,ketosteroid,a steroid containing a ketone group
+49671,kettle boiler,a metal pot for stewing or boiling; usually has a lid
+49672,kettle kettledrum tympanum tympani timpani,a large hemispherical brass or copper percussion instrument with a drumhead that can be tuned by adjusting the tension on it
+49673,kettle kettleful,the quantity a kettle will hold
+49674,kettle_hole kettle,(geology) a hollow (typically filled by a lake) that results from the melting of a mass of ice trapped in glacial deposits
+49675,keurboom Virgilia_capensis Virgilia_oroboides,tree with odd-pinnate leaves and racemes of fragrant pink to purple flowers
+49676,keurboom Virgilia_divaricata,fast-growing roundheaded tree with fragrant white to deep rose flowers; planted as an ornamental
+49677,key,a kilogram of a narcotic drug; "they were carrying two keys of heroin"
+49678,key,a list of answers to a test; "some students had stolen the key to the final exam"
+49679,key,a list of words or phrases that explain symbols or abbreviations
+49680,key,a generic term for any device whose possession entitles the holder to a means of access; "a safe-deposit box usually requires two keys to open it"
+49681,key,something crucial for explaining; "the key to development is economic integration"
+49682,key,pitch of the voice; "he spoke in a low key"
+49683,key,a lever (as in a keyboard) that actuates a mechanism when depressed
+49684,key,metal device shaped in such a way that when it is inserted into the appropriate lock the lock's mechanism can be rotated
+49685,key cay Florida_key,a coral reef off the southern coast of Florida
+49686,key paint,(basketball) a space (including the foul line) in front of the basket at each end of a basketball court; usually painted a different color from the rest of the court; "he hit a jump shot from the top of the key"; "he dominates play in the paint"
+49687,key tonality,any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music
+49688,key_lime,small yellow-green limes of southern Florida
+49689,key_palm silvertop_palmetto silver_thatch Thrinax_microcarpa Thrinax_morrisii Thrinax_keyensis,small stocky fan palm of southern Florida and Cuba
+49690,key_ring,a circular ring of metal for holding keys
+49691,key_signature signature,the sharps or flats that follow the clef and indicate the key
+49692,key_word,a word that is used as a pattern to decode an encrypted message
+49693,key_word,a significant word used in indexing or cataloging
+49694,keyboard,device consisting of a set of keys on a piano or organ or typewriter or typesetting machine or computer or the like
+49695,keyboard,holder consisting of an arrangement of hooks on which keys or locks can be hung
+49696,keyboard_buffer,a buffer that keeps track of key strokes until the computer is ready to respond to them
+49697,keyboard_instrument,a musical instrument that is played by means of a keyboard
+49698,keyboardist,a musician who plays a keyboard instrument
+49699,keycard,a plastic card that has a magnetically coded strip that is scanned in order to operate a mechanism
+49700,keyhole,the hole where a key is inserted
+49701,keyhole_limpet Fissurella_apertura Diodora_apertura,marine limpet having a conical shell with an opening at the apex
+49702,keyhole_saw,a handsaw with a long narrow blade for cutting short radius curves; similar to a compass saw
+49703,keynote,the principal theme in a speech or literary work
+49704,keynote,a fundamental or central idea
+49705,keynote_speech keynote_address,a speech setting forth the keynote
+49706,keystone key headstone,the central building block at the top of an arch or vault
+49707,keystroke key_stroke,the stroke of a key; one depression of a key on a keyboard; "the number of keystrokes was used as a measure of work"
+49708,khadi khaddar,a coarse homespun cotton cloth made in India
+49709,khaki,a sturdy twilled cloth of a yellowish brown color used especially for military uniforms
+49710,khakis,a military uniform made of khaki fabric
+49711,khamsin,an oppressively hot southerly wind from the Sahara that blows across Egypt in the spring
+49712,khan,a title given to rulers or other important people in Asian countries
+49713,khanate,the realm of a khan
+49714,khanate,the position of a khan
+49715,khimar,a headscarf worn by observant Muslim women that hangs down to just above the waist
+49716,khoum,5 khoums equal 1 ouguiya in Mauritania
+49717,khukuri,a curved steel knife with a razor-sharp edge used in combat by the Gurkhas; has cultural and religious significance in Nepal
+49718,kia_quen,a form of foot torture used by the Chinese in which the victim's foot was placed between three pieces of bamboo and systematically squeezed
+49719,kiang Equus_kiang,wild ass of Tibet and Mongolia
+49720,kibble,coarsely ground grain in the form of pellets (as for pet food)
+49721,kibble,an iron bucket used for hoisting in wells or mining
+49722,kibbutz,a collective farm or settlement owned by its members in modern Israel; children are reared collectively
+49723,kibbutznik,a member of a kibbutz
+49724,kibe,ulcerated chilblain on the heel
+49725,kibibit kibit,a unit of information equal to 1024 bits
+49726,kibitzer,(Yiddish) a meddler who offers unwanted advice to others
+49727,kick,the sudden stimulation provided by strong drink (or certain drugs); "a sidecar is a smooth drink but it has a powerful kick"
+49728,kick boot kicking,the act of delivering a blow with the foot; "he gave the ball a powerful kick"; "the team's kicking was excellent"
+49729,kick kicking,a rhythmic thrusting movement of the legs as in swimming or calisthenics; "the kick must be synchronized with the arm movements"; "the swimmer's kicking left a wake behind him"
+49730,kick_in_the_butt,punishment inflicted by kicking the victim in the behind
+49731,kick_pleat,pleat in back of a straight skirt to allow ease in walking
+49732,kick_starter kick_start,a starter (as on a motorcycle) that is activated with the foot and the weight of the body
+49733,kick_turn,a standing turn made in skiing; one ski is raised to the vertical and pivoted backward to become parallel with the other ski but headed in the opposite direction and then the other ski is aligned with the first
+49734,kick_up,raising the feet backward with the hands on the ground; a first movement in doing a handstand
+49735,kickback,a commercial bribe paid by a seller to a purchasing agent in order to induce the agent to enter into the transaction
+49736,kicker,a player who kicks the football
+49737,kickoff,(football) a kick from the center of the field to start a football game or to resume it after a score
+49738,kickoff send-off start-off,a start given to contestants; "I was there with my parents at the kickoff"
+49739,kicksorter pulse_height_analyzer,scientific instrument consisting of an electronic circuit that permits only voltage pulses of predetermined height to pass
+49740,kickstand,a swiveling metal rod attached to a bicycle or motorcycle or other two-wheeled vehicle; the rod lies horizontally when not in use but can be kicked into a vertical position as a support to hold the vehicle upright when it is not being ridden
+49741,kid,young goat
+49742,kid kidskin,soft smooth leather from the hide of a young goat; "kid gloves"
+49743,kid_glove suede_glove,a glove made of fine soft leather (as kidskin)
+49744,kiddy kiddie,informal term for a young child
+49745,kidnapper kidnaper abductor snatcher,someone who unlawfully seizes and detains a victim (usually for ransom)
+49746,kidnapping snatch,(law) the unlawful act of capturing and carrying away a person against their will and holding them in false imprisonment
+49747,kidney,either of two bean-shaped excretory organs that filter wastes (especially urea) from the blood and excrete them and water in urine; "urine passes out of the kidney through ureters to the bladder"
+49748,kidney_bean,large dark red bean; usually dried
+49749,kidney_bean frijol frijole,the common bean plant grown for the beans rather than the pods (especially a variety with large red kidney-shaped beans)
+49750,kidney_disease renal_disorder nephropathy nephrosis,a disease affecting the kidneys
+49751,kidney_fern Trichomanes_reniforme,large fern of New Zealand having kidney-shaped fronds
+49752,kidney_pie,like steak and kidney pie but without steak
+49753,kidney_stone urinary_calculus nephrolith renal_calculus,a calculus formed in the kidney
+49754,kidney_vetch Anthyllis_vulneraria,perennial Eurasian herb having heads of red or yellow flowers and common in meadows and pastures; formerly used medicinally for kidney disorders
+49755,kieserite,a white mineral consisting of hydrous magnesium sulfate often found in salt mines
+49756,kike hymie sheeny yid,(ethnic slur) offensive term for a Jew
+49757,kilderkin,an obsolete British unit of capacity equal to 18 Imperial gallons
+49758,kill,the body of an animal, or bodies of animals, killed by a person or another animal
+49759,kill,the destruction of an enemy plane or ship or tank or missile; "the pilot reported two kills during the mission"
+49760,kill_zone killing_zone,an area where a battle has occurred with many fatalities
+49761,killdeer kildeer killdeer_plover Charadrius_vociferus,American plover of inland waters and fields having a distinctive cry
+49762,killer,a difficulty that is hard to deal with; "that exam was a real killer"
+49763,killer slayer,someone who causes the death of a person or animal
+49764,killer_T_cell killer_cell cytotoxic_T_cell CD8_T_cell CD8_cell,T cell with CD8 receptor that recognizes antigens on the surface of a virus-infected cell and binds to the infected cell and kill it
+49765,killer_bee,an investment banker who devises strategies to make a target company less attractive for takeover
+49766,killer_whale killer orca grampus sea_wolf Orcinus_orca,predatory black-and-white toothed whale with large dorsal fin; common in cold seas
+49767,killifish,small mostly marine warm-water carp-like schooling fishes; used as bait or aquarium fishes or in mosquito control
+49768,killing cleanup,a very large profit
+49769,killing kill putting_to_death,the act of terminating a life
+49770,killing violent_death,an event that causes someone to die
+49771,killing_field,(usually plural) an area where many people have died (usually by massacre or genocide during war or violent civil disturbance)
+49772,kiln,a furnace for firing or burning or drying such things as porcelain or bricks
+49773,kilobit kbit kb,a unit of information equal to 1000 bits
+49774,kilobyte K KB kB,a unit of information equal to 1000 bytes
+49775,kilobyte kibibyte K KB kB KiB,a unit of information equal to 1024 bytes
+49776,kilogram kg kilo,one thousand grams; the basic unit of mass adopted under the Systeme International d'Unites; "a kilogram is approximately 2.2 pounds"
+49777,kilogram-meter,a unit of work equal to the work done by a one kilogram force operating through a distance of one meter
+49778,kilohertz kHz kilocycle_per_second kilocycle kc,one thousand periods per second
+49779,kiloliter kilolitre cubic_meter cubic_metre,a metric unit of volume or capacity equal to 1000 liters
+49780,kilometer kilometre km klick,a metric unit of length equal to 1000 meters (or 0.621371 miles)
+49781,kilometers_per_hour kilometres_per_hour kph km/h,the ratio of the distance traveled (in kilometers) to the time spent traveling (in hours)
+49782,kiloton,one thousand tons
+49783,kiloton,a measure of explosive power (of an atomic weapon) equal to that of 1000 tons of TNT
+49784,kilovolt kV,a unit of potential equal to a thousand volts
+49785,kilovolt-ampere,a unit of electrical power equal to 1000 volt-amperes
+49786,kilowatt kW,a unit of power equal to 1000 watts
+49787,kilowatt_hour kW-hr Board_of_Trade_unit B.T.U.,a unit of energy equal to the work done by a power of 1000 watts operating for one hour
+49788,kilt,a knee-length pleated tartan skirt worn by men as part of the traditional dress in the Highlands of northern Scotland
+49789,kilter kelter,in working order; "out of kilter"; "in good kilter"
+49790,kimberlite,a rare type of peridotite that sometimes contains diamonds; found in South Africa and Siberia
+49791,kimono,a loose robe; imitated from robes originally worn by Japanese
+49792,kin kin_group kinship_group kindred clan tribe,group of people related by blood or marriage
+49793,kin kinsperson family,a person having kinship with another or others; "he's kin"; "he's family"
+49794,kina,the basic unit of money in Papua New Guinea
+49795,kinanesthesia,inability to sense movement
+49796,kinase,an enzyme that catalyzes the conversion of a proenzyme to an active enzyme
+49797,kind sort form variety,a category of things distinguished by some common characteristic or quality; "sculpture is a form of art"; "what kinds of desserts are there?"
+49798,kindergarten,a preschool for children age 4 to 6 to prepare them for primary school
+49799,kindheartedness kind-heartedness,sympathy arising from a kind heart
+49800,kindliness helpfulness,friendliness evidence by a kindly and helpful disposition
+49801,kindling tinder touchwood spunk punk,material for starting a fire
+49802,kindness,the quality of being warmhearted and considerate and humane and sympathetic
+49803,kindness benignity,a kind act
+49804,kinematics,the branch of mechanics concerned with motion without reference to force or mass
+49805,kinescope picture_tube television_tube,a cathode-ray tube in a television receiver; translates the received signal into a picture on a luminescent screen
+49806,kinesiology,the branch of physiology that studies the mechanics and anatomy in relation to human movement
+49807,kinesis,a movement that is a response to a stimulus but is not oriented with respect to the source of stimulation
+49808,kinesthesia kinaesthesia feeling_of_movement,the perception of body position and movement and muscular tensions etc
+49809,kinesthesis kinaesthesis kinesthesia kinaesthesia kinesthetics muscle_sense sense_of_movement,the ability to feel movements of the limbs and body
+49810,kinetic_energy K.E.,the mechanical energy that a body has by virtue of its motion
+49811,kinetic_theory kinetic_theory_of_gases,(physics) a theory that gases consist of small particles in random motion
+49812,kinetic_theory_of_heat,a theory that the temperature of a body increases when kinetic energy increases
+49813,king,preeminence in a particular category or group or field; "the lion is the king of beasts"
+49814,king,a checker that has been moved to the opponent's first row where it is promoted to a piece that is free to move either forward or backward
+49815,king,one of the four playing cards in a deck bearing the picture of a king
+49816,king,(chess) the weakest but the most important piece
+49817,king male_monarch Rex,a male sovereign; ruler of a kingdom
+49818,king queen world-beater,a competitor who holds a preeminent position
+49819,king's_ransom,a very large treasure
+49820,king's_spear yellow_asphodel Asphodeline_lutea,asphodel with leafy stem and fragrant yellow flowers
+49821,king_crab Alaska_crab Alaskan_king_crab Alaska_king_crab Paralithodes_camtschatica,large edible crab of northern Pacific waters especially along the coasts of Alaska and Japan
+49822,king_devil yellow_hawkweed Hieracium_praealtum,European hawkweed introduced into northeastern United States; locally troublesome weeds
+49823,king_mackerel cavalla cero Scomberomorus_cavalla,large mackerel with long pointed snout; important food and game fish of the eastern Atlantic coast southward to Brazil
+49824,king_penguin Aptenodytes_patagonica,large penguin on islands bordering the Antarctic Circle
+49825,king_post,post connecting the crossbeam to the apex of a triangular truss
+49826,king_snake kingsnake,any of numerous nonvenomous North American constrictors; feed on other snakes and small mammals
+49827,king_vulture Sarcorhamphus_papa,large black-and-white vulture of South America and Central America; have colorful wattles and wartlike protuberances on head and neck
+49828,king_whiting Menticirrhus_americanus,whiting of the southeastern coast of North America
+49829,kingbird Tyrannus_tyrannus,large American flycatcher
+49830,kingbolt kingpin swivel_pin,bolt that provides a steering joint in a motor vehicle
+49831,kingdom,a country with a king as head of state
+49832,kingdom,a monarchy with a king or queen as head of state
+49833,kingdom,the highest taxonomic group into which organisms are grouped; one of five biological categories: Monera or Protoctista or Plantae or Fungi or Animalia
+49834,kingdom,a basic group of natural objects
+49835,kingdom land realm,a domain in which something is dominant; "the untroubled kingdom of reason"; "a land of make-believe"; "the rise of the realm of cotton in the south"
+49836,kingdom realm,the domain ruled by a king or queen
+49837,kingdom_come,the next world; "he nearly blew us to kingdom come"
+49838,kingdom_come,the end of time; "you can wet the bed till kingdom come, for all I care"
+49839,kingfish,the lean flesh of any of several fish caught off the Atlantic coast of the United States
+49840,kingfish,any of several food and game fishes of the drum family indigenous to warm Atlantic waters of the North American coast
+49841,kingfish Seriola_grandis,large game fish of Australia and New Zealand
+49842,kingfisher,nonpasserine large-headed bird with a short tail and long sharp bill; usually crested and bright-colored; feed mostly on fish
+49843,kingfisher_daisy Felicia_bergeriana,softly hairy South African herb having flowers with bright blue rays
+49844,kinglet,small birds resembling warblers but having some of the habits of titmice
+49845,kingmaker,an important person who can bring leaders to power through the exercise of political influence; "the Earl of Warwick was the first kingmaker"
+49846,kingpin top_banana bigwig,the most important person in a group or undertaking
+49847,kingship,the dignity or rank or position of a king
+49848,kingwood,handsome violet-streaked wood of the kingwood tree; used especially in cabinetwork
+49849,kingwood kingwood_tree Dalbergia_cearensis,Brazilian tree yielding a handsome cabinet wood
+49850,kinin cytokinin,any of a class of plant hormones that promote cell division and delay the senescence of leaves
+49851,kink,a person with unusual sexual tastes
+49852,kink,an eccentric idea
+49853,kink,a difficulty or flaw in a plan or operation; "there are still a few kinks to iron out"
+49854,kink twist twirl,a sharp bend in a line produced when a line having a loop is pulled tight
+49855,kinkajou honey_bear potto Potos_flavus Potos_caudivolvulus,arboreal fruit-eating mammal of tropical America with a long prehensile tail
+49856,kino Pterocarpus_marsupium,East Indian tree yielding a resin or extract often used medicinally and in e.g. tanning
+49857,kino gum_kino kino_gum,a gum obtained from various tropical plants; used as an astringent and in tanning
+49858,kinship family_relationship relationship,(anthropology) relatedness or connection by blood or marriage or adoption
+49859,kinship_system,(anthropology) the system of social relationships that constitute kinship in a particular culture, including the terminology that is used and the reciprocal obligations that are entailed
+49860,kinsman,a male relative
+49861,kinswoman,a female relative
+49862,kip,sleep; "roused him from his kip"
+49863,kip,the basic unit of money in Laos
+49864,kip upstart,a gymnastic exercise performed starting from a position with the legs over the upper body and moving to an erect position by arching the back and swinging the legs out and down while forcing the chest upright
+49865,kipper kippered_herring,salted and smoked herring
+49866,kippered_salmon,salted and smoked salmon
+49867,kirk,a Scottish church
+49868,kirpan,a ceremonial four-inch curved dagger that Sikh men and women are obliged to wear at all times
+49869,kirsch,from fermented juice of black morello cherries
+49870,kirtle,a garment resembling a tunic that was worn by men in the Middle Ages
+49871,kirtle,a long dress worn by women
+49872,kishke stuffed_derma,(Judaism) roasted fowl intestines with a seasoned filling of matzo meal and suet
+49873,kismet kismat,(Islam) the will of Allah
+49874,kiss,a cookie made of egg whites and sugar
+49875,kiss,a light glancing touch; "there was a brief kiss of their hands in passing"
+49876,kiss buss osculation,the act of caressing with the lips (or an instance thereof)
+49877,kiss candy_kiss,any of several bite-sized candies
+49878,kiss_of_death,something that is ruinous; "if this were known it would be the kiss of death for my political career"
+49879,kisser osculator,someone who kisses
+49880,kissing_cousin kissing_kin,a more or less distant relative; familiar enough to be greeted with a kiss
+49881,kit,a case for containing a set of articles
+49882,kit,young of any of various fur-bearing animals; "a fox kit"
+49883,kit outfit,gear consisting of a set of articles or tools for a specified purpose
+49884,kit_fox Vulpes_macrotis,small grey fox of southwestern United States; may be a subspecies of Vulpes velox
+49885,kit_fox prairie_fox Vulpes_velox,small grey fox of the plains of western North America
+49886,kitbag kit_bag,a knapsack (usually for a soldier)
+49887,kitchen,a room equipped for preparing meals
+49888,kitchen_appliance,a home appliance used in preparing food
+49889,kitchen_cabinet brain_trust,an inner circle of unofficial advisors to the head of a government
+49890,kitchen_garden vegetable_garden vegetable_patch,a small garden where vegetables are grown
+49891,kitchen_help,help hired to work in the kitchen
+49892,kitchen_island,an unattached counter in a kitchen that permits access from all sides
+49893,kitchen_match,a wooden friction match that will light on any granular surface; useful to light wood or gas stoves
+49894,kitchen_police KP,an enlisted person who is assigned to assist the cooks
+49895,kitchen_sink,a sink in a kitchen
+49896,kitchen_table,a table in the kitchen
+49897,kitchen_utensil,a utensil used in preparing food
+49898,kitchenette,small kitchen
+49899,kitchenware,hardware utensils for use in a kitchen
+49900,kite,a bank check that has been fraudulently altered to increase its face value
+49901,kite,a bank check drawn on insufficient funds at another bank in order to take advantage of the float
+49902,kite,plaything consisting of a light frame covered with tissue paper; flown in wind at end of a string
+49903,kite,any of several small graceful hawks of the family Accipitridae having long pointed wings and feeding on insects and small animals
+49904,kite_balloon,a barrage balloon with lobes at one end that keep it headed into the wind
+49905,kite_tail,a bob on a kite to provide balance
+49906,kith,your friends and acquaintances; "all his kith and kin"
+49907,kitsch,excessively garish or sentimental art; usually considered in bad taste
+49908,kittee,a form of torture used by American Indians in which sensitive parts of the body were squeezed between two boards until the victim could bear no more
+49909,kitten kitty,young domestic cat
+49910,kitten-tails,a plant of the genus Besseya having fluffy spikes of flowers
+49911,kittiwake,small pearl-grey gull of northern regions; nests on cliffs and has a rudimentary hind toe
+49912,kitty kitty-cat puss pussy pussycat,informal terms referring to a domestic cat
+49913,kiwi apteryx,nocturnal flightless bird of New Zealand having a long neck and stout legs; only surviving representative of the order Apterygiformes
+49914,kiwi kiwi_fruit Chinese_gooseberry,fuzzy brown egg-shaped fruit with slightly tart green flesh
+49915,klammath_weed Hypericum_perforatum,yellow-flowered perennial common in fields and waste places but a weed in rangelands
+49916,klavern,a local unit of the Ku Klux Klan
+49917,klaxon claxon,a kind of loud horn formerly used on motor vehicles
+49918,klebsiella,a genus of nonmotile rod-shaped Gram-negative enterobacteria; some cause respiratory and other infections
+49919,kleptomania,an irresistible impulse to steal in the absence of any economic motive
+49920,kleptomaniac,someone with an irrational urge to steal in the absence of an economic motive
+49921,klieg_light,carbon arc lamp that emits an intense light used in producing films
+49922,klondike,a form of solitaire that begins with seven piles of cards with the top cards facing up; descending sequences of cards of alternating colors are built on these piles; as aces become available they are placed above the seven piles; the object is to build sequences in suit from ace to king as the remaining cards are dealt out one at a time
+49923,kludge,a badly assembled collection of parts hastily assembled to serve some particular purpose (often used to refer to computing systems or software that has been badly put together)
+49924,klutz,(Yiddish) a clumsy dolt
+49925,klystron,an electron tube used to generate or amplify electromagnetic radiation in the microwave region by velocity modulation
+49926,knacker,someone who buys old buildings or ships and breaks them up to recover the materials in them
+49927,knacker,someone who buys up old horses for slaughter
+49928,knackwurst knockwurst,short thick highly seasoned sausage
+49929,knapweed,any of various plants of the genus Centaurea having purple thistlelike flowers
+49930,knawel knawe Scleranthus_annuus,widely distributed low-growing Eurasian herb having narrow leaves and inconspicuous green flowers
+49931,knee,the part of a trouser leg that provides the cloth covering for the knee
+49932,knee knee_joint human_knee articulatio_genus genu,hinge joint in the human leg connecting the tibia and fibula with the femur and protected in front by the patella
+49933,knee-high knee-hi,a sock or stocking that reaches up to just below the knees
+49934,knee_bend squat squatting,exercising by repeatedly assuming a crouching position with the knees bent; strengthens the leg muscles
+49935,knee_brace,a brace worn to strengthen the knee
+49936,knee_jerk knee-jerk_reflex patellar_reflex,a reflex extension of the leg resulting from a sharp tap on the patellar tendon
+49937,knee_pad,protective garment consisting of a pad worn by football or baseball or hockey players
+49938,knee_piece,armor plate that protects the knee
+49939,kneel kneeling,supporting yourself on your knees
+49940,kneeler,a person in a kneeling position
+49941,kneeler,a board (sometimes cushioned) for someone to kneel on
+49942,knell,the sound of a bell rung slowly to announce a death or a funeral or the end of something
+49943,knickknack novelty,a small inexpensive mass-produced article
+49944,knife,a weapon with a handle and blade with a sharp point
+49945,knife,edge tool used as a cutting instrument; has a pointed blade with a sharp edge and a handle
+49946,knife-edge,a narrow boundary; "he lived on a knife-edge between genius and insanity"
+49947,knife_blade,the blade of a knife
+49948,knife_edge cutting_edge,the sharp cutting side of the blade of a knife
+49949,knife_fight snickersnee cut-and-thrust,fighting with knives
+49950,knife_pleat,a single pleat turned in one direction
+49951,knight,originally a person of noble birth trained to arms and chivalry; today in Great Britain a person honored by the sovereign for personal merit
+49952,knight horse,a chessman shaped to resemble the head of a horse; can move two squares horizontally and one vertically (or vice versa)
+49953,knight's_service,land tenure by service to the lord as a knight
+49954,knight-errant,a wandering knight travelling in search of adventure
+49955,knight_bachelor bachelor-at-arms bachelor,a knight of the lowest order; could display only a pennon
+49956,knight_banneret knight_of_the_square_flag banneret,a knight honored for valor; entitled to display a square banner and to hold higher command
+49957,knight_errantry,(Middle Ages) the code of conduct observed by a knight errant who is wandering in search of deeds of chivalry
+49958,knight_errantry quixotism,quixotic (romantic and impractical) behavior
+49959,knighthood,aristocrats holding the rank of knight
+49960,kniphofia tritoma flame_flower flame-flower flameflower,a plant of the genus Kniphofia having long grasslike leaves and tall scapes of red or yellow drooping flowers
+49961,knish,(Yiddish) a baked or fried turnover filled with potato or meat or cheese; often eaten as a snack
+49962,knit,a fabric made by knitting
+49963,knit knit_stitch plain plain_stitch,a basic knitting stitch made by putting the needle through the front of the stitch from the lefthand side
+49964,knit knitting knitwork,needlework created by interlacing yarn in a series of connected loops using straight eyeless needles or by machine
+49965,knitter,someone who makes garments (or fabrics) by intertwining yarn or thread
+49966,knitting,creating knitted wear
+49967,knitting_machine,a textile machine that makes knitted fabrics
+49968,knitting_needle,needle consisting of a slender rod with pointed ends; usually used in pairs
+49969,knitting_stitch,a stitch taken in knitting
+49970,knitwear,knitted clothing
+49971,knob,a round handle
+49972,knob boss,a circular rounded projection or protuberance
+49973,knob pommel,an ornament in the shape of a ball on the hilt of a sword or dagger
+49974,knobble,a small knob
+49975,knobcone_pine Pinus_attenuata,medium-sized three-needled pine of the Pacific coast of the United States having a prominent knob on each scale of the cone
+49976,knobkerrie knobkerry,a short wooden club with a heavy knob on one end; used by aborigines in southern Africa
+49977,knock,a bad experience; "the school of hard knocks"
+49978,knock bash bang smash belt,a vigorous blow; "the sudden knock floored him"; "he took a bash right in his face"; "he got a bang on the head"
+49979,knock belt rap whack whang,the act of hitting vigorously; "he gave the table a whack"
+49980,knock knocking,the sound of knocking (as on a door or in an engine or bearing); "the knocking grew louder"
+49981,knock roast,negative criticism
+49982,knock-knee genu_valgum tibia_valga,an inward slant of the thigh
+49983,knock-on_effect,a secondary or incidental effect
+49984,knock_on,(rugby) knocking the ball forward while trying to catch it (a foul)
+49985,knockabout,a sloop with a simplified rig and no bowsprit
+49986,knockdown,a blow that knocks the opponent off his feet
+49987,knocker,(Yiddish) a big shot who knows it and acts that way; a boastful immoderate person
+49988,knocker,a person who knocks (as seeking to gain admittance); "open the door and see who the knocker is"
+49989,knocker doorknocker rapper,a device (usually metal and ornamental) attached by a hinge to a door
+49990,knockoff clone,an unauthorized copy or imitation
+49991,knockout KO kayo,a blow that renders the opponent unconscious
+49992,knockout_drops,chloral hydrate in combination with alcohol; usually administered surreptitiously to make the drinker unconscious
+49993,knoll mound hillock hummock hammock,a small natural hill
+49994,knot,(of ships and wind) a unit of speed equal to one nautical mile per hour or about 1.15 statute miles per hour
+49995,knot,a hard cross-grained round piece of wood in a board where a branch emerged; "the saw buckled when it hit a knot"
+49996,knot,a tight cluster of people or things; "a small knot of women listened to his sermon"; "the bird had a knot of feathers forming a crest"
+49997,knot,any of various fastenings formed by looping and tying a rope (or cord) upon itself or to another rope or to another object
+49998,knot gnarl,something twisted and tight and swollen; "their muscles stood out in knots"; "the old man's fists were two great gnarls"; "his stomach was in knots"
+49999,knot greyback grayback Calidris_canutus,a sandpiper that breeds in the Arctic and winters in the southern hemisphere
+50000,knotgrass Paspalum_distichum,low-growing weedy grass with spikelets along the leaf stems
+50001,knothole,a hole in a board where a knot came out
+50002,knotty_pine,pine lumber with many knots; used especially for paneling and furniture
+50003,knout,a whip with a lash of leather thongs twisted with wire; used for flogging prisoners
+50004,know,the fact of being aware of information that is known to few people; "he is always in the know"
+50005,know-how,the (technical) knowledge and skill required to do something
+50006,know-it-all know-all,someone who thinks he knows everything and refuses to accept advice or information from others
+50007,knower apprehender,a person who knows or apprehends
+50008,knowing,a clear and certain mental apprehension
+50009,knowingness,shrewdness demonstrated by knowledge
+50010,knowledge_domain knowledge_base domain,the content of a particular field of knowledge
+50011,knowledgeability knowledgeableness initiation,wisdom as evidenced by the possession of knowledge; "his knowledgeability impressed me"; "his dullness was due to lack of initiation"
+50012,knuckle knuckle_joint metacarpophalangeal_joint,a joint of a finger when the fist is closed
+50013,knuckle_joint hinge_joint,a joint allowing movement in one plane only
+50014,knuckleball knuckler,a baseball pitch thrown with little speed or spin
+50015,koala koala_bear kangaroo_bear native_bear Phascolarctos_cinereus,sluggish tailless Australian arboreal marsupial with grey furry ears and coat; feeds on eucalyptus leaves and bark
+50016,koan,a paradoxical anecdote or a riddle that has no solution; used in Zen Buddhism to show the inadequacy of logical reasoning
+50017,kob Kobus_kob,an orange-brown antelope of southeast Africa
+50018,kobo,100 kobos equal 1 naira in Nigeria
+50019,kohl,a cosmetic preparation used by women in Egypt and Arabia to darken the edges of their eyelids
+50020,kohleria,shrubby herb cultivated for their soft velvety foliage and showy scarlet flowers
+50021,kohlrabi Brassica_oleracea_gongylodes,plant cultivated for its enlarged fleshy turnip-shaped edible stem
+50022,kohlrabi turnip_cabbage,fleshy turnip-shaped edible stem of the kohlrabi plant
+50023,koinonia,Christian fellowship or communion with God or with fellow Christians; said in particular of the early Christian community
+50024,kokoi_venom,a potent neurotoxin found in a particular frog
+50025,kola kola_nut kola_nut_tree goora_nut Cola_acuminata,tree bearing large brown nuts containing e.g. caffeine; source of cola extract
+50026,kola_nut cola_nut,bitter brown seed containing caffein; source of cola extract
+50027,kolkhoz,a collective farm owned by the communist state
+50028,kolkhoznik,a member of a kolkhoz
+50029,komondor,Hungarian breed of large powerful shaggy-coated white dog; used also as guard dog
+50030,konini tree_fuchsia native_fuchsia Fuchsia_excorticata,erect deciduous shrub or tree to 10 feet with maroon flowers; New Zealand
+50031,kook odd_fellow odd_fish queer_bird queer_duck odd_man_out,someone regarded as eccentric or crazy and standing out from a group
+50032,kookaburra laughing_jackass Dacelo_gigas,Australian kingfisher having a loud cackling cry
+50033,kopek kopeck copeck,100 kopecks equal 1 ruble in Russia
+50034,kopiyka,100 kopiykas equal 1 hryvnia in Ukraine
+50035,kopje koppie,a small hill rising up from the African veld
+50036,koruna,the basic unit of money in Slovakia
+50037,koruna,the basic unit of money in Czech Republic
+50038,kos coss,(in India) a unit of length having different values in different localities
+50039,kosher,food that fulfills the requirements of Jewish dietary law
+50040,koto,Japanese stringed instrument that resembles a zither; has a rectangular wooden sounding board and usually 13 silk strings that are plucked with the fingers
+50041,koto_player,a musician who plays the koto
+50042,koumiss kumis,an alcoholic beverage made from fermented mare's milk; made originally by nomads of central Asia
+50043,kowhai Sophora_tetraptera,shrub or small tree of New Zealand and Chile having pendulous racemes of tubular golden-yellow flowers; yields a hard strong wood
+50044,kowtow kotow,a former Chinese custom of touching the ground with the forehead as a sign of respect or submission
+50045,kraal,a village of huts for native Africans in southern Africa; usually surrounded by a stockade
+50046,kraal,a pen for livestock in southern Africa
+50047,kraft kraft_paper,strong wrapping paper made from pulp processed with a sulfur solution
+50048,krait,brightly colored venomous but nonaggressive snake of southeastern Asia and Malay peninsula
+50049,kraurosis,atrophy and shriveling of the skin or mucous membrane
+50050,kraurosis_vulvae,kraurosis of the vulva; often a precancerous lesion
+50051,kremlin,citadel of a Russian town
+50052,krigia,any small branched yellow-flowered North American herb of the genus Krigia
+50053,krill,shrimp-like planktonic crustaceans; major source of food for e.g. baleen whales
+50054,kris creese crease,a Malayan dagger with a wavy blade
+50055,kroon,the basic unit of money in Estonia
+50056,krubi titan_arum Amorphophallus_titanum,malodorous tropical plant having a spathe that resembles the corolla of a morning glory and attains a diameter of several feet
+50057,krummhorn crumhorn cromorne,a Renaissance woodwind with a double reed and a curving tube (crooked horn)
+50058,krypton Kr atomic_number_36,a colorless element that is one of the six inert gasses; occurs in trace amounts in air
+50059,kudu koodoo koudou,either of two spiral-horned antelopes of the African bush
+50060,kudzu kudzu_vine Pueraria_lobata,fast-growing vine from eastern Asia having tuberous starchy roots and hairy trifoliate leaves and racemes of purple flowers followed by long hairy pods containing many seeds; grown for fodder and forage and root starch; widespread in the southern United States
+50061,kummel,liqueur flavored with caraway seed or cumin
+50062,kumquat,small oval citrus fruit with thin sweet rind and very acid pulp
+50063,kumquat cumquat kumquat_tree,any of several trees or shrubs of the genus Fortunella bearing small orange-colored edible fruits with thick sweet-flavored skin and sour pulp
+50064,kung_fu,a Chinese martial art
+50065,kunzite,a pinkish lilac crystal form of the mineral spodumene that is used as a gemstone
+50066,kurrajong currajong Brachychiton_populneus,widely distributed tree of eastern Australia yielding a tough durable fiber and soft light attractively grained wood; foliage is an important emergency food for cattle
+50067,kurta,a loose collarless shirt worn by many people on the Indian subcontinent (usually with a salwar or churidars or pyjama)
+50068,kuru,a progressive disease of the central nervous system marked by increasing lack of coordination and advancing to paralysis and death within a year of the appearance of symptoms; thought to have been transmitted by cannibalistic consumption of diseased brain tissue since the disease virtually disappeared when cannibalism was abandoned
+50069,kurus piaster piastre,100 kurus equal 1 lira in Turkey
+50070,kuvasz,long-established Hungarian breed of tall light-footed but sturdy white dog; used also as a hunting dog
+50071,kvass,fermented beverage resembling beer but made from rye or barley
+50072,kvetch,(Yiddish) a constant complainer
+50073,kvetch,(Yiddish) a nagging complaint
+50074,kwanza,the basic unit of money in Angola
+50075,kwashiorkor,severe malnutrition in children resulting from a diet excessively high in carbohydrates and low in protein
+50076,kwela,a kind of danceable music popular among black South Africans; includes a whistle among its instruments
+50077,kyanite cyanite,a grey or greenish-blue mineral consisting of aluminum silicate in crystalline form; occurs in metaphoric rock, used as a refractory
+50078,kyat,the basic unit of money in Myanmar
+50079,kylie kiley,an Australian boomerang; one side flat and the other convex
+50080,kylix cylix,a shallow drinking cup with two handles; used in ancient Greece
+50081,kymograph cymograph,scientific instrument consisting of a rotating drum holding paper on which a stylus traces a continuous record (as of breathing or blood pressure)
+50082,kyphosis humpback hunchback,an abnormal backward curve to the vertebral column
+50083,la lah,the syllable naming the sixth (submediant) note of a major or minor scale in solmization
+50084,laager lager,a camp defended by a circular formation of wagons
+50085,lab laboratory research_lab research_laboratory science_lab science_laboratory,a workplace for the conduct of scientific research
+50086,lab_bench laboratory_bench,a workbench in a laboratory
+50087,lab_coat laboratory_coat,a light coat worn to protect clothing from substances used while working in a laboratory
+50088,labdanum gum_labdanum,a dark brown to greenish oleoresin that has a fragrant odor and is used as a fixative in perfumes; obtained as a juice from certain rockroses
+50089,labdanum ladanum,a soft blackish-brown resinous exudate from various rockroses used in perfumes especially as a fixative
+50090,label,a radioactive isotope that is used in a compound in order to trace the mechanism of a chemical reaction
+50091,label,an identifying or descriptive marker that is attached to an object
+50092,label,a brief description given for purposes of identification; "the label modern is applied to many different kinds of architecture"
+50093,label recording_label,trade name of a company that produces musical recordings; "the artists and repertoire department of a recording label is responsible for finding new talent"
+50094,labetalol labetalol_hydrochloride Trandate Normodyne,antihypertensive drug (trade names Trandate and Normodyne) that blocks alpha and beta-adrenergic receptors of the sympathetic nervous system (leading to a decrease in blood pressure)
+50095,labia_majora,the two outer folds of the vulva
+50096,labia_minora,the two inner folds of the vulva
+50097,labial_artery arteria_labialis,an artery that is a branch of the facial artery that supplies the lips of the mouth
+50098,labial_consonant labial,a consonant whose articulation involves movement of the lips
+50099,labial_stop,a stop consonant that is produced with the lips
+50100,labial_vein vena_labialis,veins draining the lips of the vulva
+50101,labial_vein vena_labialis,a vein draining the lips of the mouth
+50102,labiodental_consonant labiodental,a consonant whose articulation involves the lips and teeth
+50103,labium,a liplike structure that bounds a bodily orifice (especially any of the four labiate folds of a woman's vulva)
+50104,labor labour toil,productive work (especially physical work done for wages); "his labor did not require a great deal of skill"
+50105,labor labour working_class proletariat,a social class comprising those who do manual labor or work for wages; "there is a shortage of skilled labor in this field"
+50106,labor_camp labour_camp,a penal institution for political prisoners who are used as forced labor
+50107,labor_coach birthing_coach doula monitrice,an assistant (often the father of the soon-to-be-born child) who provides support for a woman in labor by encouraging her to use techniques learned in childbirth-preparation classes
+50108,labor_contract labor_agreement collective_agreement,contract between labor and management governing wages and benefits and working conditions
+50109,labor_force labor_pool,the source of trained people from which workers can be hired
+50110,labor_leader,a leader of a labor movement
+50111,labor_market,the market in which workers compete for jobs and employers compete for workers
+50112,labor_movement trade_union_movement labor,an organized attempt by workers to improve their status by united action (particularly via labor unions) or the leaders of this movement
+50113,labor_of_love labour_of_love,productive work performed voluntarily without material reward or compensation
+50114,labor_pain,pain and discomfort associated with contractions of the uterus during labor
+50115,labor_party labour_party,a left-of-center political party formed to represent the interest of ordinary working people
+50116,labor_resources,resources of available manpower
+50117,laborer manual_laborer labourer jack,someone who works with their hands; someone engaged in manual labor
+50118,laboriousness operoseness toilsomeness,the quality of requiring extended effort
+50119,labyrinthine_artery artery_of_the_labyrinth internal_auditory_artery,an artery that is a branch of the basilar artery that supplies the labyrinth
+50120,labyrinthine_vein internal_auditory_vein,veins that drain the inner ear
+50121,labyrinthitis otitis_interna,inflammation of the inner ear; can cause vertigo and vomiting
+50122,labyrinthodont,an amphibian of the superorder Labyrinthodontia
+50123,lac,resinlike substance secreted by certain lac insects; used in e.g. varnishes and sealing wax
+50124,lac_dye,scarlet dye like cochineal; extracted with alkali from stick lac
+50125,lace,a delicate decorative fabric woven in an open web of symmetrical patterns
+50126,lace lacing,a cord that is drawn through eyelets or around hooks in order to draw together two edges (as of a shoe or garment)
+50127,lace-flower_vine Alsobia_dianthiflora Episcia_dianthiflora,low-growing creeping perennial of Central America having deeply fringed white flowers; sometimes placed in genus Episcia
+50128,lace_bug,small bug having body and wings covered with a lacy network of raised lines
+50129,lace_fern Cheilanthes_gracillima,small tufted fern of northwestern America
+50130,lace_making tatting,the act or art of making handmade lace
+50131,lacebark ribbonwood houhere Hoheria_populnea,small tree or shrub of New Zealand having a profusion of axillary clusters of honey-scented paper-white flowers and whose bark is used for cordage
+50132,lacer,a workman who laces shoes or footballs or books (during binding)
+50133,laceration,a torn ragged wound
+50134,laceration,the act of lacerating
+50135,lacertid_lizard lacertid,Old World terrestrial lizard
+50136,lacewing lacewing_fly,any of two families of insects with gauzy wings (Chrysopidae and Hemerobiidae); larvae feed on insect pests such as aphids
+50137,lacework,work consisting of (or resembling) lace fabric
+50138,lacing,a small amount of liquor added to a food or beverage
+50139,lack deficiency want,the state of needing something that is absent or unavailable; "there is a serious lack of insight into the problem"; "water is the critical deficiency in desert regions"; "for want of a nail the shoe was lost"
+50140,lackey flunky flunkey,a male servant (especially a footman)
+50141,laconism laconicism,terseness of expression
+50142,lacquer,a black resinous substance obtained from certain trees and used as a natural varnish
+50143,lacquer,a hard glossy coating
+50144,lacquerware,a decorative work made of wood and covered with lacquer and often inlaid with ivory or precious metals
+50145,lacrimal_apparatus,the structures that secrete and drain tears from the eye
+50146,lacrimal_artery arteria_lacrimalis,an artery that originates from the ophthalmic artery and supplies the lacrimal gland and rectal eye muscles and the upper eyelid and the forehead
+50147,lacrimal_bone,small fragile bone making up part of the front inner walls of each eye socket and providing room for the passage of the lacrimal ducts
+50148,lacrimal_duct lachrymal_duct tear_duct,any of several small ducts that carry tears from the lacrimal glands
+50149,lacrimal_gland lachrymal_gland tear_gland,any of the glands in the eyes that secrete tears
+50150,lacrimal_sac tear_sac dacryocyst,either of the two dilated ends of the lacrimal ducts at the nasal ends of the eyes that fill with tears secreted by the lacrimal glands
+50151,lacrimal_secretion lachrymal_secretion,saline fluid secreted by lacrimal glands; lubricates the surface of the eyeball
+50152,lacrimal_vein vena_lacrimalis,drains the lacrimal gland; empties into the superior ophthalmic vein
+50153,lacrimation lachrymation tearing watering,shedding tears
+50154,lacrosse,a game invented by American Indians; now played by two teams who use long-handled rackets to catch and carry and throw the ball toward the opponents' goal
+50155,lacrosse_ball,ball used in playing lacrosse
+50156,lacrosse_player,an athlete who plays lacrosse
+50157,lactalbumin,albumin occurring in milk
+50158,lactase Lactaid,any of a group of enzymes (trade name Lactaid) that hydrolyze lactose to glucose and galactose
+50159,lactate,a salt or ester of lactic acid
+50160,lactation,the period following birth during which milk is secreted; "lactation normally continues until weaning"
+50161,lactation,the production and secretion of milk by the mammary glands
+50162,lacteal,any of the lymphatic vessels that convey chyle from the small intestine to the thoracic duct
+50163,lactic_acid,a clear odorless hygroscopic syrupy carboxylic acid found in sour milk and in many fruits
+50164,lactiferous_duct,ducts of the mammary gland that carry milk to the nipple
+50165,lactifuge,any agent that reduces milk secretion (as given to a woman who is not breast feeding)
+50166,lactobacillus,a Gram-positive rod-shaped bacterium that produces lactic acid (especially in milk)
+50167,lactogen,any agent that enhances milk production
+50168,lactose milk_sugar,a sugar comprising one glucose molecule linked to a galactose molecule; occurs only in milk; "cow's milk contains about 4.7% lactose"
+50169,lactose_intolerance lactase_deficiency milk_intolerance,congenital disorder consisting of an inability to digest milk and milk products; absence or deficiency of lactase results in an inability to hydrolyze lactose
+50170,lactosuria,presence of lactose in the urine; can occur during pregnancy or lactation
+50171,lacuna blank,a blank gap or missing part
+50172,ladder,ascending stages by which somebody or something can progress; "he climbed the career ladder"
+50173,ladder,steps consisting of two parallel members connected by rungs; for climbing up or down
+50174,ladder-back,the backrest of a chair that consists of two uprights with connecting slats
+50175,ladder-back ladder-back_chair,a chair with a ladder-back
+50176,ladder_truck aerial_ladder_truck,a fire engine carrying ladders
+50177,ladies'_room powder_room,a woman's restroom in a public (or semipublic) building
+50178,ladies'_tobacco lady's_tobacco Antennaria_plantaginifolia,North American perennial propagated by means of runners
+50179,ladies'_tresses lady's_tresses,an orchid of the genus Spiranthes having slender often twisted spikes of white flowers
+50180,ladle,a spoon-shaped vessel with a long handle; frequently used to transfer liquids from one container to another
+50181,lady,a polite name for any woman; "a nice lady at the library helped me"
+50182,lady's-eardrop ladies'-eardrop lady's-eardrops ladies'-eardrops Fuchsia_coccinea,erect or climbing shrub of Brazil with deep pink to red flowers
+50183,lady's_maid,a maid who is a lady's personal attendant
+50184,lady's_slipper lady's-slipper lady-slipper lady_slipper ladies'_slipper slipper_orchid,any of several chiefly American wildflowers having an inflated pouchlike lip; difficult or impossible to cultivate in the garden
+50185,lady's_smock cuckooflower cuckoo_flower meadow_cress Cardamine_pratensis,a bitter cress of Europe and America
+50186,lady-in-waiting,a lady appointed to attend to a queen or princess
+50187,lady-of-the-night Brunfelsia_americana,West Indian shrub with fragrant showy yellowish-white flowers
+50188,lady_chapel,a small chapel in a church; dedicated to the Virgin Mary
+50189,lady_fern Athyrium_filix-femina,most widely grown fern of the genus Athyrium for its delicate foliage
+50190,lady_palm,any of several small palms of the genus Rhapis; cultivated as houseplants
+50191,lady_tulip candlestick_tulip Tulipa_clusiana,Eurasian tulip with small flowers blotched at the base
+50192,ladybug ladybeetle lady_beetle ladybird ladybird_beetle,small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests
+50193,ladyfinger,small finger-shaped sponge cake
+50194,ladyfish tenpounder Elops_saurus,game fish resembling the tarpon but smaller
+50195,ladylikeness,behavior befitting a lady
+50196,ladylove dulcinea,a woman who is a man's sweetheart
+50197,laelia,any of various spectacular plants of the genus Laelia having showy flowers in many colors
+50198,laetrile,a substance derived from amygdalin; publicized as an antineoplastic drug although there is no supporting evidence
+50199,lag_screw lag_bolt,a heavy woodscrew with a square or hexagonal head that is driven in with a wrench
+50200,lagan lagend ligan,goods (or wreckage) on the sea bed that is attached to a buoy so that it can be recovered
+50201,lager lager_beer,a general term for beer made with bottom fermenting yeast (usually by decoction mashing); originally it was brewed in March or April and matured until September
+50202,lagerphone,an Australian percussion instrument used for playing bush music; a long stick with bottle caps nailed loosely to it; played by hitting it with a stick or banging it on the ground
+50203,lagging,insulation used to wrap around pipes or boilers or laid in attics to prevent loss of heat
+50204,lagniappe,a small gift (especially one given by a merchant to a customer who makes a purchase)
+50205,lagomorph gnawing_mammal,relative large gnawing animals; distinguished from rodents by having two pairs of upper incisors specialized for gnawing
+50206,lagoon laguna lagune,a body of water cut off from a larger body by a reef of sand or coral
+50207,lagophthalmos,abnormal condition in which an eye cannot close completely
+50208,lahar,an avalanche of volcanic water and mud down the slopes of a volcano
+50209,laid_paper,writing paper having a watermark of fine lines running across the grain
+50210,lair den,the habitation of wild animals
+50211,laird,a landowner
+50212,laity temporalty,in Christianity, members of a religious community that do not have the priestly responsibilities of ordained clergy
+50213,lake,a purplish red pigment prepared from lac or cochineal
+50214,lake,any of numerous bright translucent organic pigments
+50215,lake,a body of (usually fresh) water surrounded by land
+50216,lake_bed lake_bottom,the bottom of a lake
+50217,lake_dwelling pile_dwelling,dwelling built on piles in or near a lake; specifically in prehistoric villages
+50218,lake_herring cisco,cold-water fish caught in Lake Superior and northward
+50219,lake_poets,English poets at the beginning of the 19th century who lived in the Lake District and were inspired by it
+50220,lake_trout,flesh of large trout of northern lakes
+50221,lake_trout salmon_trout Salvelinus_namaycush,large fork-tailed trout of lakes of Canada and the northern United States
+50222,lake_whitefish Coregonus_clupeaformis,found in the Great Lakes and north to Alaska
+50223,lakefront,land bordering a lake
+50224,lakeside lakeshore,the shore of a lake
+50225,lallation,defective articulation of the `l' phoneme or the phoneme `r' is pronounced as `l'
+50226,lally lally_column,support column consisting of a steel cylinder filled with concrete
+50227,lama,a Tibetan or Mongolian priest of Lamaism
+50228,lamasery,a monastery for lamas
+50229,lamb,a person easily deceived or cheated (especially in financial matters)
+50230,lamb,the flesh of a young domestic sheep eaten as food
+50231,lamb,young sheep
+50232,lamb dear,a sweet innocent mild-mannered person (especially a child)
+50233,lamb's-quarter pigweed wild_spinach,leaves collected from the wild
+50234,lamb's-quarters pigweed wild_spinach Chenopodium_album,common weedy European plant introduced into North America; often used as a potherb
+50235,lamb_chop lamb-chop lambchop,chop cut from a lamb
+50236,lamb_curry,curry made with lamb
+50237,lamb_roast roast_lamb,a cut of lamb suitable for roasting
+50238,lamb_succory dwarf_nipplewort Arnoseris_minima,small European herb with small yellow flowers
+50239,lambda,the 11th letter of the Greek alphabet
+50240,lambda,the craniometric point at the junction of the sagittal and lamboid sutures of the skull
+50241,lambda_particle lambda_hyperon,an electrically neutral baryon with isotopic spin 1
+50242,lambdacism,speech defect involving excessive use or unusual pronunciation of the phoneme `l'
+50243,lambert L,a cgs unit of illumination equal to the brightness of a perfectly diffusing surface that emits or reflects one lumen per square centimeter
+50244,lambkin,a very young lamb
+50245,lamboid_suture sutura_lamboidea,the suture between the occipital and parietal bones
+50246,lambrequin,a scarf that covers a knight's helmet
+50247,lambrequin,short and decorative hanging for a shelf edge or top of a window casing
+50248,lambskin,the skin of a lamb with the wool still on
+50249,lame,a fabric interwoven with threads of metal; "she wore a gold lame dress"
+50250,lame_duck,an elected official still in office but not slated to continue
+50251,lamedh,the 12th letter of the Hebrew alphabet
+50252,lamella,a thin membrane that is one of the calcified layers that form bones
+50253,lamella,thin plate
+50254,lamellar_mixture,a mixture in which substances occur in distinct layers
+50255,lamellate_placentation,with ovules on thin extensions of the placentae into a compound ovary
+50256,lamellicorn_beetle,beetle having antennae with hard platelike terminal segments
+50257,lameness,an imperfection or defectiveness; "a stylist noted for the lameness of his plots"
+50258,lameness limping gimp gimpiness gameness claudication,disability of walking due to crippling of the legs or feet
+50259,lament lamentation plaint wail,a cry of sorrow and grief; "their pitiful laments could be heard throughout the ward"
+50260,lamentation mourning,the passionate and demonstrative activity of expressing grief
+50261,lamina,a thin plate or layer (especially of bone or mineral)
+50262,lamina_arcus_vertebrae,lamina of the vertebral arch; the flattened posterior part of the vertebral arch from which the spinous process extends
+50263,laminar_flow,nonturbulent streamline flow in parallel layers (laminae)
+50264,laminar_flow_clean_room,a clean room free of all extraneous particles; used in fabricating microprocessors
+50265,laminate,a sheet of material made by bonding two or more sheets or layers
+50266,lamination,a layered structure
+50267,lamination,bonding thin sheets together
+50268,laminator,a person who makes laminates (especially plastic laminates)
+50269,laminectomy,surgical removal of the bony arches on one or more vertebrae
+50270,laminitis founder,inflammation of the laminated tissue that attaches the hoof to the foot of a horse
+50271,lamivudine 3TC,a nucleoside reverse transcriptase inhibitor that is very effective in combination with zidovudine in treating AIDS and HIV
+50272,lamp,a piece of furniture holding one or more electric light bulbs
+50273,lamp,an artificial source of visible illumination
+50274,lamp_chimney chimney,a glass flue surrounding the wick of an oil lamp
+50275,lamp_house lamphouse lamp_housing,housing that holds a lamp (as in a movie projector)
+50276,lamplight,light from a lamp
+50277,lamplighter,(when gas was used for streetlights) a person who lights and extinguishes streetlights
+50278,lampoon_artist,a cartoonist who draws parodies or satirical renditions of cultural or social or political situations
+50279,lamppost,a metal post supporting an outdoor lamp (such as a streetlight)
+50280,lamprey lamprey_eel lamper_eel,primitive eellike freshwater or anadromous cyclostome having round sucking mouth with a rasping tongue
+50281,lampshade lamp_shade shade,a protective ornamental covering for a lamp, used to screen a light bulb from direct view
+50282,lanai,a veranda or roofed patio often furnished and used as a living room
+50283,lance_corporal,an enlisted man in the marine corps ranking above a private first class and below a corporal
+50284,lancelet amphioxus,small translucent lancet-shaped burrowing marine animal; primitive forerunner of the vertebrates
+50285,lanceolate_leaf,a leaf shaped like a lance head; tapering to a point at each end
+50286,lanceolate_spleenwort Asplenium_billotii,a spleenwort of western Europe
+50287,lancer,(formerly) a cavalryman armed with a lance
+50288,lancers,a quadrille for 8 or 16 couples
+50289,lancet lance,a surgical knife with a pointed double-edged blade; used for punctures and small incisions
+50290,lancet_arch lancet,an acutely pointed Gothic arch, like a lance
+50291,lancet_window,a narrow window having a lancet arch and without tracery
+50292,lancetfish lancet_fish wolffish,large elongate scaleless oceanic fishes with sharp teeth and a long dorsal fin that resembles a sail
+50293,lancewood,durable straight-grained wood of the lacewood tree; used for building and cabinetwork and tools
+50294,lancewood lancewood_tree Oxandra_lanceolata,source of most of the lancewood of commerce
+50295,land,the land on which real estate is located; "he built the house on land leased from the city"
+50296,land dry_land earth ground solid_ground terra_firma,the solid part of the earth's surface; "the plane turned away from the sea and moved back over land"; "the earth shook for several minutes"; "he dropped the logs on the ground"
+50297,land ground soil,material in the top layer of the surface of the earth in which plants can grow (especially with reference to its quality or use); "the land had never been plowed"; "good agricultural soil"
+50298,land-office_business,very large and profitable volume of commercial activity
+50299,land_agent,a person who administers a landed estate
+50300,land_development,making an area of land more useful
+50301,land_grant,a grant of public land (as to a railway or college)
+50302,land_line landline,a telephone line that travels over terrestrial circuits; "a land line can be wire or fiber optics or microwave"
+50303,land_mine ground-emplaced_mine booby_trap,an explosive mine hidden underground; explodes when stepped on or driven over
+50304,land_office,a government office where business relating to public lands is transacted
+50305,land_reform,a redistribution of agricultural land (especially by government action)
+50306,land_resources,natural resources in the form of arable land
+50307,landau,a four-wheel covered carriage with a roof divided into two parts (front and back) that can be let down separately
+50308,landed_gentry squirearchy,the gentry who own land (considered as a class)
+50309,lander,a space vehicle that is designed to land on the moon or another planet
+50310,landfall,the seacoast first sighted on a voyage (or flight over water)
+50311,landfall,the first sighting of land from the sea after a voyage (or flight over water)
+50312,landfill,a low area that has been filled in
+50313,landgrave,a count who had jurisdiction over a large territory in medieval Germany
+50314,landholding,ownership of land; the state or fact of owning land
+50315,landholding,a holding in the form of land
+50316,landing,an intermediate platform in a staircase
+50317,landing,the act of coming down to the earth (or other surface); "the plane made a smooth landing"; "his landing on his feet was catlike"
+50318,landing,the act of coming to land after a voyage
+50319,landing landing_place,structure providing a place where boats can land people or goods
+50320,landing_approach,the approach to a landing field by an airplane
+50321,landing_craft,naval craft designed for putting ashore troops and equipment
+50322,landing_flap,a flap on the underside of the wing that is lowered to slow the plane for landing
+50323,landing_gear,an undercarriage that supports the weight of the plane when it is on the ground
+50324,landing_net,a bag-shaped fishnet on a long handle to take a captured fish from the water
+50325,landing_party,a part of a ship's company organized for special duties ashore
+50326,landing_skid,one of two parts of the landing gear of a helicopter
+50327,landing_stage,platform from which passengers and cargo can be (un)loaded
+50328,landlady,a landlord who is a woman
+50329,landler,music in triple time for dancing the landler
+50330,landler,a moderately slow Austrian country dance in triple time; involves spinning and clapping
+50331,landlocked_salmon lake_salmon,Atlantic salmon confined to lakes of New England and southeastern Canada
+50332,landlord,a landowner who leases to others
+50333,landlord's_lien,lien on a tenant's property for the satisfaction of unpaid rent or property damage; the landlord is given the status of a preferred creditor with regard to the tenant's property
+50334,landlubber landsman landman,a person who lives and works on land
+50335,landlubber lubber landsman,an inexperienced sailor; a sailor on the first voyage
+50336,landmark,the position of a prominent or well-known object in a particular landscape; "the church steeple provided a convenient landmark"
+50337,landmark,a mark showing the boundary of a piece of land
+50338,landmark,an anatomical structure used as a point of origin in locating other anatomical structures (as in surgery) or as point from which measurements can be taken
+50339,landmark turning_point watershed,an event marking a unique or important historical change of course or one on which important developments depend; "the agreement was a watershed in the history of both nations"
+50340,landmass land_mass,a large continuous extent of land
+50341,landowner landholder property_owner,a holder or proprietor of land
+50342,landscape,an expanse of scenery that can be seen in a single view
+50343,landscape,an extensive mental viewpoint; "the political landscape looks bleak without a change of administration"; "we changed the landscape for solving the problem of payroll inequity"
+50344,landscape,painting depicting an expanse of natural scenery
+50345,landscape landscape_painting,a genre of art dealing with the depiction of natural scenery
+50346,landscape_architect landscape_gardener landscaper landscapist,someone who arranges features of the landscape or garden attractively
+50347,landscape_architecture,the art, planning, design, management, preservation and rehabilitation of the land and the design of large man-made constructs
+50348,landscaping,a garden laid out for esthetic effect; "they spent a great deal of money on the landscaping"
+50349,landscaping landscape_gardening,working as a landscape gardener
+50350,landscapist,someone who paints landscapes
+50351,landside,component consisting of a side piece opposite the moldboard
+50352,landslide,an overwhelming electoral victory; "Roosevelt defeated Hoover in a landslide"
+50353,landslide landslip,a slide of a large mass of dirt and rock down a mountain or cliff
+50354,lane,a well-defined track or path; for e.g. swimmers or lines of traffic
+50355,lane,a narrow way or road
+50356,langbeinite,a mineral consisting of potassium magnesium double sulphate; used as a fertilizer
+50357,langlaufer,a cross-country skier
+50358,langley,unit of solar radiation
+50359,language linguistic_communication,a systematic means of communicating by the use of sounds or conventional symbols; "he taught foreign languages"; "the language introduced is standard throughout the text"; "the speed with which a program can be executed depends on the language in which it is written"
+50360,language speech,the mental faculty or power of vocal communication; "language sets homo sapiens apart from all other animals"
+50361,language_area language_zone,a large cortical area (in the left hemisphere in most people) containing all the centers associated with language
+50362,language_barrier,barrier to communication resulting from speaking different languages
+50363,language_learning,learning to use a language
+50364,language_lesson,a period of instruction learning a language
+50365,language_requirement,a requirement that a student know certain languages
+50366,language_school,a school for teaching foreign languages
+50367,language_system,a system of linguistic units or elements used in a particular language
+50368,language_teaching,teaching people to speak and understand a foreign language
+50369,language_unit linguistic_unit,one of the natural units into which linguistic messages can be analyzed
+50370,languisher,a person who languishes
+50371,languor,oppressively still air; "the afternoon was hot, quiet, and heavy with languor"; "Summer shows all the languor of a hot, breezeless day as the dancer lazily brushes her hand over her brow"
+50372,languor dreaminess,a relaxed comfortable feeling
+50373,languor lassitude listlessness,a feeling of lack of interest or energy
+50374,languor lethargy sluggishness phlegm flatness,inactivity; showing an unusual lack of energy; "the general appearance of sluggishness alarmed his friends"
+50375,langur,slender long-tailed monkey of Asia
+50376,lankiness,a tall and thin physique
+50377,lanolin,an emollient containing wool fat (a fatty substance obtained from the wool of sheep)
+50378,lanolin wool_fat wool_grease,a yellow viscous animal oil extracted from wool; a mixture of fatty acids and esters; used in some ointments and cosmetics
+50379,lanseh lansa lansat lanset,East Indian tart yellow berrylike fruit
+50380,lanseh_tree langsat langset Lansium_domesticum,East Indian tree bearing an edible yellow berry
+50381,lansoprazole Prevacid,antacid (trade name Prevacid) that suppresses acid secretion in the stomach
+50382,lantana,a flowering shrub
+50383,lantern,light in a transparent protective case
+50384,lantern_fly lantern-fly,large brightly marked tropical insect with a process like a snout that was formerly thought to emit light
+50385,lantern_jaw,a long thin lower jaw
+50386,lantern_pinion lantern_wheel,a small pinion having cylindrical bars instead of teeth, used chiefly in inexpensive clocks
+50387,lanternfish,small fish having rows of luminous organs along each side; some surface at night
+50388,lanthanide_series,the rare-earth elements with atomic numbers 57 through 71; having properties similar to lanthanum
+50389,lanthanum La atomic_number_57,a white soft metallic element that tarnishes readily; occurs in rare earth minerals and is usually classified as a rare earth
+50390,lanugo,the fine downy hair covering a human fetus; normally shed during the ninth month of gestation
+50391,lanyard laniard,a cord with an attached hook that is used to fire certain types of cannon
+50392,lanyard laniard,a cord worn around the neck to hold a knife or whistle
+50393,lanyard laniard,(nautical) a line used for extending or fastening rigging on ships
+50394,lap,an area of control or responsibility; "the job fell right in my lap"
+50395,lap,the upper side of the thighs of a seated person; "he picked up the little girl and plopped her down in his lap"
+50396,lap circle circuit,movement once around a course; "he drove an extra lap just for insurance"
+50397,lap lap_covering,the part of a piece of clothing that covers the thighs; "his lap was covered with food stains"
+50398,lap overlap,a flap that lies over another part; "the lap of the shingles should be at least ten inches"
+50399,lap_joint splice,joint made by overlapping two ends and joining them together
+50400,lap_of_luxury,in conditions of wealth and comfort; "he was raised in the lap of luxury"
+50401,lap_of_the_gods,beyond human control or responsibility; "there is nothing more I can do; it's in the lap of the gods now"
+50402,laparocele,hernia through the abdomen
+50403,laparoscope,a slender endoscope inserted through an incision in the abdominal wall in order to examine the abdominal organs or to perform minor surgery
+50404,laparoscopic_cholecystectomy lap_choly,removal of the gall bladder through small punctures in the abdomen to permit the insertion of a laparoscope and surgical instruments
+50405,laparoscopy,laparotomy performed with a laparoscope that makes a small incision to examine the abdominal cavity (especially the ovaries and Fallopian tubes)
+50406,laparotomy,surgical incision into the abdominal wall; often done to examine abdominal organs
+50407,lapboard,writing board used on the lap as a table or desk
+50408,lapdog,a dog small and tame enough to be held in the lap
+50409,lapel,lap at the front of a coat; continuation of the coat collar
+50410,lapful,the quantity that can be held in the lap
+50411,lapidary lapidarist,an expert on precious stones and the art of cutting and engraving them
+50412,lapidary lapidist,a skilled worker who cuts and engraves precious stones
+50413,lapin,castrated male rabbit
+50414,lapin rabbit,the fur of a rabbit
+50415,lapis_lazuli lazuli,an azure blue semiprecious stone
+50416,lappet,a small lap on a garment or headdress
+50417,lappet lappet_moth,medium-sized hairy moths; larvae are lappet caterpillars
+50418,lappet_caterpillar,larva of a lappet moth
+50419,lapse,a break or intermission in the occurrence of something; "a lapse of three weeks between letters"
+50420,laptop laptop_computer,a portable computer small enough to use in your lap
+50421,lapwing green_plover peewit pewit,large crested Old World plover having wattles and spurs
+50422,larboard port,the left side of a ship or aircraft to someone who is aboard and facing the bow or nose
+50423,larcenist larcener,a person who commits larceny
+50424,larceny theft thievery thieving stealing,the act of taking something from someone unlawfully; "the thieving is awful at Kennedy International"
+50425,larch,wood of a larch tree
+50426,larch larch_tree,any of numerous conifers of the genus Larix all having deciduous needlelike leaves
+50427,lard,soft white semisolid fat obtained by rendering the fatty tissue of the hog
+50428,lard_oil,oil consisting chiefly of olein that is expressed from lard and used especially as a lubricant, cutting oil or illuminant
+50429,larder,a supply of food especially for a household
+50430,large,a garment size for a large person
+50431,large-flowered_calamint Calamintha_grandiflora Clinopodium_grandiflorum Satureja_grandiflora,aromatic herb with large pink flowers; southern and southeastern Europe; Anatolia; northern Iran
+50432,large-flowered_fiddleneck Amsinckia_grandiflora,annual of the western United States having large coiled flower spikes; a threatened species
+50433,large-leaved_aster Aster_macrophyllus,tufted perennial wood aster of North America; naturalized in Europe
+50434,large-leaved_magnolia large-leaved_cucumber_tree great-leaved_macrophylla Magnolia_macrophylla,large deciduous shrub or tree of southeastern United States having huge leaves in dense false whorls and large creamy flowers tinged purple toward the base
+50435,large_cap,a corporation with a large capitalization; "he works for a large cap"
+50436,large_civet Viverra_zibetha,common civet of India and southeast Asia
+50437,large_crabgrass hairy_finger_grass Digitaria_sanguinalis,a European forage grass grown for hay; a naturalized weed in United States
+50438,large_indefinite_quantity large_indefinite_amount,an indefinite quantity that is above the average in size or magnitude
+50439,large_integer,an integer equal to or greater than ten
+50440,large_intestine,beginning with the cecum and ending with the rectum; includes the cecum and the colon and the rectum; extracts moisture from food residues which are later excreted as feces
+50441,large_periwinkle Vinca_major,plant having variegated foliage and used for window boxes
+50442,large_person,a person of greater than average size
+50443,large_poodle,the largest breed of poodle
+50444,large_white Pieris_brassicae,Old World form of cabbage butterfly
+50445,large_white_petunia Petunia_axillaris,annual herb having large nocturnally fragrant white flowers
+50446,large_yellow_lady's_slipper Cypripedium_calceolus_pubescens,plant of eastern and central North America having slightly fragrant purple-marked greenish-yellow flowers
+50447,largeleaf_holly,a holly tree
+50448,largemouth largemouth_bass largemouthed_bass largemouth_black_bass largemouthed_black_bass Micropterus_salmoides,a large black bass; the angle of the jaw falls behind the eye
+50449,largemouth_bass,flesh of largemouth bass
+50450,largeness bigness,the property of having a relatively great size
+50451,largeness extensiveness,large or extensive in breadth or importance or comprehensiveness; "the might have repercussions of unimaginable largeness"; "the very extensiveness of his power was a temptation to abuse it"
+50452,largess largesse,a gift or money given (as for service or out of benevolence); usually given ostentatiously
+50453,larghetto,(music) a composition or passage played in a slow tempo slightly faster than largo but slower than adagio
+50454,largo,(music) a composition or passage that is to be performed in a slow and dignified manner
+50455,lari,the basic unit of money in Georgia
+50456,larid,long-winged web-footed aquatic bird of the gull family
+50457,lark,any of numerous predominantly Old World birds noted for their singing
+50458,larkspur,any of numerous cultivated plants of the genus Delphinium
+50459,larva,the immature free-living form of most invertebrates and amphibians and fish which at hatching from the egg is fundamentally unlike its parent and must metamorphose
+50460,larvacean,any member of the class Larvacea
+50461,larvacide,an insecticide that kills the larvae of insects
+50462,larvicide,a chemical used to kill larval pests
+50463,laryngeal_artery arteria_laryngea,either of two arteries that supply blood to the larynx
+50464,laryngeal_vein vena_laryngea,one of two veins draining the larynx
+50465,laryngectomy,surgical removal of part or all of the larynx (usually to treat cancer of the larynx)
+50466,laryngismus,laryngeal spasm caused by the sudden contraction of laryngeal muscles
+50467,laryngitis,inflammation of the mucous membrane of the larynx; characterized by hoarseness or loss of voice and coughing
+50468,laryngopharyngitis,inflammation of the larynx and pharynx
+50469,laryngopharynx,the lower part of the pharynx
+50470,laryngoscope,a medical instrument for examining the larynx
+50471,laryngospasm,a closure of the larynx that blocks the passage of air to the lungs
+50472,laryngostenosis,abnormal narrowing of the larynx
+50473,laryngotracheobronchitis,inflammation of the larynx and trachea and bronchial passageways
+50474,larynx voice_box,a cartilaginous structure at the top of the trachea; contains elastic vocal cords that are the source of the vocal tone in speech
+50475,lasagna lasagne,baked dish of layers of lasagna pasta with sauce and cheese and meat or vegetables
+50476,lasagna lasagne,very wide flat strips of pasta
+50477,lascar,an East Indian sailor
+50478,laser optical_maser,an acronym for light amplification by stimulated emission of radiation; an optical device that produces an intense monochromatic beam of coherent light
+50479,laser-assisted_in_situ_keratomileusis LASIK,a refractive surgery procedure that reshapes the cornea
+50480,laser-assisted_subepithelial_keratomileusis LASEK E-LASIK,a refractive surgery procedure that reshapes the cornea
+50481,laser-guided_bomb LGB,a smart bomb that seeks the laser light reflected off of the target and uses it to correct its descent; "laser-guided bombs cannot be used in cloudy weather"
+50482,laser_beam,a beam of light generated by a laser
+50483,laser_printer,electrostatic printer that focuses a laser beam to form images that are transferred to paper electrostatically
+50484,laser_trabecular_surgery,eye surgery that makes many tiny laser burns in an area that will increase the drainage of aqueous humor
+50485,lash thong,leather strip that forms the flexible part of a whip
+50486,lash-up contrivance,any improvised arrangement for temporary use
+50487,lasher,a driver who urges the animals on with lashes of a whip
+50488,lashing,rope that is used for fastening something to something else; "the boats were held together by lashings"
+50489,lasiocampid lasiocampid_moth,medium-sized stout-bodied neutral-colored moths with comb-like antennae
+50490,lass lassie young_girl jeune_fille,a girl or young woman who is unmarried
+50491,lasso lariat riata reata,a long noosed rope used to catch animals
+50492,last,the last or lowest in an ordering or series; "he was the last to leave"; "he finished an inglorious last"
+50493,last,a unit of weight equal to 4,000 pounds
+50494,last,a unit of capacity for grain equal to 80 bushels
+50495,last,a person's dying act; the final thing a person can do; "he breathed his last"
+50496,last shoemaker's_last cobbler's_last,holding device shaped like a human foot that is used to fashion or repair shoes
+50497,last_gasp,the point of death or exhaustion or completion; "the last gasp of the cold war"
+50498,last_in_first_out LIFO,inventory accounting in which the most recently acquired items are assumed to be the first sold
+50499,last_laugh,ultimate success achieved after a near failure (inspired by the saying `he laughs best who laughs last'); "we had the last laugh after the votes were counted"
+50500,last_mile,the last walk of a condemned person to the execution place
+50501,last_quarter,the last fourth of the Moon's period of revolution around the Earth
+50502,last_respects,the act of expressing respect for someone who has died; "he paid his last respects by standing quietly at the graveside"
+50503,last_rites,rites performed in connection with a death or burial
+50504,last_straw,the final irritation that stretches your patience beyond the limit
+50505,last_word,the final statement in a verbal argument; "she always gets the last word"
+50506,last_word,an authoritative statement; "my doctor has the last word on the medicines I take"
+50507,lastingness durability enduringness strength,permanence by virtue of the power to resist stress or force; "they advertised the durability of their products"
+50508,latakia,aromatic Turkish tobacco
+50509,latanier latanier_palm,fan palms of the southern United States and the Caribbean region
+50510,latch,catch for fastening a door or gate; a bar that can be lowered or slid into a groove
+50511,latch door_latch,spring-loaded doorlock that can only be opened from the outside with a key
+50512,latchet,a leather strap or thong used to attach a sandal or shoe to the foot
+50513,latchkey,key for raising or drawing back a latch or opening an outside door
+50514,latchkey_child,a school-age child who is home without adult supervision for part of the day (especially after school until a parent returns home from work)
+50515,latchstring,opener consisting of a string that can be passed through a hole in a door for raising the latch from outside
+50516,late-night_hour,the latter part of night
+50517,late_blight,blight in which symptoms appear late in the growing season especially a disease of solanaceous plants caused by the fungus Phytophthora infestans
+50518,late_purple_aster,a variety of aster
+50519,latecomer,someone who arrives late
+50520,lateen lateen_sail,a triangular fore-and-aft sail used especially in the Mediterranean
+50521,lateen-rig,the rig on a lateen-rigged sailing vessel
+50522,latency,the state of being not yet evident or active
+50523,latency_stage latency_phase latency_period,(psychoanalysis) the fourth period (from about age 5 or 6 until puberty) during which sexual interests are supposed to be sublimated into other activities
+50524,lateness,quality of coming late or later in time
+50525,latent_content,(psychoanalysis) hidden meaning of a fantasy or dream
+50526,latent_diabetes chemical_diabetes,a mild form of diabetes mellitus in which there are no overt symptoms but there are abnormal responses to some diagnostic procedures
+50527,latent_heat heat_of_transformation,heat absorbed or radiated during a change of phase at a constant temperature and pressure
+50528,latent_hostility tension,feelings of hostility that are not manifest; "he could sense her latent hostility to him"; "the diplomats' first concern was to reduce international tensions"
+50529,latent_period,the time that elapses before the presence of a disease is manifested by symptoms
+50530,lateral_condyle,a condyle on the outer side of the lower extremity of the femur
+50531,lateral_epicondyle,epicondyle near the lateral condyle of the femur
+50532,lateral_geniculate_body corpus_geniculatum_laterale lateral_geniculate,a neural structure that serves as a processing station on the way from the retina to the occipital lobe of the cerebral cortex
+50533,lateral_line lateral_line_organ,sense organs of fish and amphibians; believed to detect pressure changes in the water
+50534,lateral_pass lateral,a pass to a receiver upfield from the passer
+50535,lateral_thinking,a heuristic for solving problems; you try to look at the problem from many angles instead of tackling it head-on
+50536,lateral_ventricle,either of two horseshoe-shaped ventricles one in each cerebral hemisphere; they communicate with the third ventricle via the foramen of Monro
+50537,laterality dominance,superior development of one side of the body
+50538,lateralization lateralisation laterality,localization of function on either the right or left sides of the brain
+50539,laterite,a red soil produced by rock decay; contains insoluble deposits of ferric and aluminum oxides
+50540,latest,the most recent news or development; "have you heard the latest?"
+50541,latex,a milky exudate from certain plants that coagulates on exposure to air
+50542,latex_paint latex rubber-base_paint,a water-base paint that has a latex binder
+50543,lath,a narrow thin strip of wood used as backing for plaster or to make latticework
+50544,lath_and_plaster,a building material consisting of thin strips of wood that provide a foundation for a coat of plaster
+50545,lathe,machine tool for shaping metal or wood; the workpiece turns about a horizontal axis against a fixed tool
+50546,lather,a workman who puts up laths
+50547,lather,the foam resulting from excessive sweating (as on a horse)
+50548,lathi lathee,club consisting of a heavy stick (often bamboo) bound with iron; used by police in India
+50549,laticifer,a plant duct containing latex
+50550,latissimus_dorsi lat,a broad flat muscle on either side of the back
+50551,latitude,freedom from normal restraints in conduct; "the new freedom in movies and novels"; "allowed his children considerable latitude in how they spent their money"
+50552,latitude,the angular distance between an imaginary line around a heavenly body parallel to its equator and the equator itself
+50553,latitude,scope for freedom of e.g. action or thought; freedom from restriction
+50554,latitude line_of_latitude parallel_of_latitude parallel,an imaginary line around the Earth parallel to the equator
+50555,latitudinarian,a person who is broad-minded and tolerant (especially in standards of religious belief and conduct)
+50556,latrine,a public toilet in a military area
+50557,lats,the basic unit of money in Latvia
+50558,latten,brass (or a yellow alloy resembling brass) that was hammered into thin sheets; formerly used for church utensils
+50559,latter,the second of two or the second mentioned of two; "Tom and Dick were both heroes but only the latter is remembered today"
+50560,lattice,an arrangement of points or particles or objects in a regular periodic pattern in 2 or 3 dimensions
+50561,lattice latticework fretwork,framework consisting of an ornamental design made of strips of wood or metal
+50562,laudanum tincture_of_opium,narcotic consisting of an alcohol solution of opium or any preparation in which opium is the main ingredient
+50563,laudator lauder extoller,someone who communicates high praise
+50564,laugh,a facial expression characteristic of a person laughing; "his face wrinkled in a silent laugh of derision"
+50565,laugh laughter,the sound of laughing
+50566,laugh_track,prerecorded laughter added to the soundtrack of a radio or television show
+50567,laugher,a person who is laughing or who laughs easily
+50568,laughing_gull blackcap pewit pewit_gull Larus_ridibundus,small black-headed European gull
+50569,laughing_owl laughing_jackass Sceloglaux_albifacies,almost extinct owl of New Zealand
+50570,laughter,the activity of laughing; the manifestation of joy or mirth or scorn; "he enjoyed the laughter of the crowd"
+50571,launch,a motorboat with an open deck or a half deck
+50572,launcher rocket_launcher,armament in the form of a device capable of launching a rocket
+50573,launching,the act of moving a newly built vessel into the water for the first time
+50574,launching launch,the act of propelling with force
+50575,launching_pad launchpad launch_pad launch_area pad,a platform from which rockets or space craft are launched
+50576,launching_site,a place for launching pads
+50577,launderette Laundromat,a self-service laundry (service mark Laundromat) where coin-operated washing machines are available to individual customers
+50578,laundering,washing clothes and bed linens
+50579,laundry,workplace where clothes are washed and ironed
+50580,laundry wash washing washables,garments or white goods that can be cleaned by laundering
+50581,laundry_cart,handcart for moving a load of laundry
+50582,laundry_detergent,any of various detergents designed for use in a washing machine for clothing
+50583,laundry_truck,van that picks up and delivers laundry; "a laundry truck stops by every week"
+50584,laureate,someone honored for great achievements; figuratively someone crowned with a laurel wreath
+50585,laurel,any of various aromatic trees of the laurel family
+50586,laurel laurel_wreath bay_wreath,(antiquity) a wreath of laurel foliage worn on the head as an emblem of victory
+50587,laurel-tree red_bay Persea_borbonia,small tree of southern United States having dark red heartwood
+50588,laurel_oak pin_oak Quercus_laurifolia,large nearly semi-evergreen oak of southeastern United States; thrives in damp soil
+50589,laurel_sumac Malosma_laurina Rhus_laurina,small aromatic evergreen shrub of California having paniculate leaves and whitish berries; in some classifications included in genus Rhus
+50590,laurelwood lancewood_tree Calophyllum_candidissimum,tropical American tree; valued for its hard durable wood
+50591,lauric_acid dodecanoic_acid,a crystalline fatty acid occurring as glycerides in natural fats and oils (especially coconut oil and palm-kernel oil)
+50592,lauryl_alcohol 1-dodecanol,a colorless insoluble solid alcohol used to make detergents and pharmaceuticals
+50593,lava,rock that in its molten form (as magma) issues from volcanos; lava is what magma is called when it reaches the surface
+50594,lavage,washing out a hollow organ (especially the stomach) by flushing with water
+50595,lavalava,a skirt consisting of a rectangle of calico or printed cotton; worn by Polynesians (especially Samoans)
+50596,lavaliere lavalier lavalliere,jeweled pendant worn on a chain around the neck
+50597,lavender,any of various Old World aromatic shrubs or subshrubs with usually mauve or blue flowers; widely cultivated
+50598,lavender,a pale purple color
+50599,lavender_cotton Santolina_chamaecyparissus,branching aromatic Mediterranean shrub with woolly stems and leaves and yellow flowers
+50600,laver,(Old Testament) large basin used by a priest in an ancient Jewish temple to perform ritual ablutions
+50601,lavishness luxury sumptuosity sumptuousness,the quality possessed by something that is excessively expensive
+50602,law,legal document setting forth rules governing a particular kind of activity; "there is a law against kidnapping"
+50603,law jurisprudence,the collection of rules imposed by authority; "civilization presupposes respect for the law"; "the great problem for jurisprudence to allow freedom while enforcing order"
+50604,law law_of_nature,a generalization that describes recurring facts or events in nature; "the laws of thermodynamics"
+50605,law natural_law,a rule or body of rules of conduct inherent in human nature and essential to or binding upon human society
+50606,law practice_of_law,the learned profession that is mastered by graduate study in a law school and that is responsible for the judicial system; "he studied law at Yale"
+50607,law_agent,a solicitor in Scotland
+50608,law_degree,degree conferred on someone who successfully completes law school
+50609,law_enforcement,ensuring obedience to the laws
+50610,law_enforcement_agency,an agency responsible for insuring obedience to the laws
+50611,law_firm,a firm of lawyers
+50612,law_of_averages,a law affirming that in the long run probabilities will determine performance
+50613,law_of_constant_proportion law_of_definite_proportions,(chemistry) law stating that every pure substance always contains the same elements combined in the same proportions by weight
+50614,law_of_diminishing_returns,a law affirming that to continue after a certain level of performance has been reached will result in a decline in effectiveness
+50615,law_of_effect,(psychology) the principle that behaviors are selected by their consequences; behavior having good consequences tends to be repeated whereas behavior that leads to bad consequences is not repeated
+50616,law_of_equivalent_proportions law_of_reciprocal_proportions,(chemistry) law stating that the proportions in which two elements separately combine with a third element are also the proportions in which they combine together
+50617,law_of_gravitation Newton's_law_of_gravitation,(physics) the law that states any two bodies attract each other with a force that is directly proportional to the product of their masses and inversely proportional to the square of the distance between them
+50618,law_of_independent_assortment,each member of a pair of homologous chromosomes separates independently of the members of other pairs so the results are random
+50619,law_of_mass_action,(chemistry) the law that states the following principle: the rate of a chemical reaction is directly proportional to the molecular concentrations of the reacting substances
+50620,law_of_multiple_proportions Dalton's_law,(chemistry) law stating that when two elements can combine to form more than one compound the amounts of one of them that combines with a fixed amount of the other will exhibit a simple multiple relation
+50621,law_of_segregation,members of a pair of homologous chromosomes separate during the formation of gametes and are distributed to different gametes so that every gamete receives only one member of the pair
+50622,law_of_the_land,a phrase used in the Magna Carta to refer to the then established law of the kingdom (as distinct from Roman or civil law); today it refers to fundamental principles of justice commensurate with due process; "the United States Constitution declares itself to be `the supreme law of the land'"
+50623,law_of_thermodynamics,(physics) a law governing the relations between states of energy in a closed system
+50624,law_practice,the practice of law
+50625,law_school school_of_law,a graduate school offering study leading to a law degree
+50626,law_student,a student in law school
+50627,lawfulness,the quality of conforming to law
+50628,lawgiver lawmaker,a maker of laws; someone who gives a code of laws
+50629,lawlessness outlawry,illegality as a consequence of unlawful acts; defiance of the law
+50630,lawman law_officer peace_officer,an officer of the law
+50631,lawn,a field of cultivated and mowed grass
+50632,lawn_bowling bowls,a bowling game played on a level lawn with biased wooden balls that are rolled at a jack
+50633,lawn_chair garden_chair,chair left outside for use on a lawn or in a garden
+50634,lawn_furniture,furniture intended for use on a lawn or in a garden
+50635,lawn_mower mower,garden tool for mowing grass on lawns
+50636,lawrencium Lr atomic_number_103,a radioactive transuranic element synthesized from californium
+50637,lawsuit suit case cause causa,a comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy; "the family brought suit against the landlord"
+50638,lawyer attorney,a professional person authorized to practice law; conducts lawsuits or gives legal advice
+50639,lawyer-client_relation attorney-client_relation,the responsibility of a lawyer to act in the best interests of the client
+50640,lawyer_cane Calamus_australis,tall scrambling spiny palm of northeastern Queensland, Australia
+50641,lawyerbush lawyer_bush bush_lawyer Rubus_cissoides Rubus_australis,stout-stemmed trailing shrub of New Zealand that scrambles over other growth
+50642,laxative,a mild cathartic
+50643,laxness laxity,the condition of being physiologically lax; "baths can help the laxness of the bowels"
+50644,laxness laxity remissness slackness,the quality of being lax and neglectful
+50645,lay-up layup,a basketball shot made with one hand from a position under or beside the basket (and usually banked off the backboard)
+50646,lay_figure,dummy in the form of an artist's jointed model of the human body
+50647,lay_reader,a layman who is authorized by the bishop to read parts of the service in an Anglican or Episcopal church
+50648,lay_witness,any witness who does not testify as an expert witness
+50649,layer,a relatively thin sheetlike expanse or region lying over or under another
+50650,layer,a hen that lays eggs
+50651,layer,thin structure composed of a single thickness of cells
+50652,layer bed,single thickness of usually some homogeneous substance; "slices of hard-boiled egg on a bed of spinach"
+50653,layer_cake,cake having layers held together by a sweet filling and usually covered with frosting
+50654,layette,kit consisting of a complete outfit (clothing and accessories) for a new baby
+50655,laying egg_laying,the production of eggs (especially in birds)
+50656,laying_on,the act of contacting something with your hand; "peonies can be blighted by the laying on of a finger"
+50657,laying_on_of_hands,the application of a faith healer's hands to the patient's body
+50658,laying_on_of_hands,laying hands on a person's head to invoke spiritual blessing in Christian ordination
+50659,laying_waste ruin ruining ruination wrecking,destruction achieved by causing something to be wrecked or ruined
+50660,layman layperson secular,someone who is not a clergyman or a professional person
+50661,layoff,the act of laying off an employee or a work force
+50662,layout,a plan or design of something that is laid out
+50663,layout,the act of laying out (as by making plans for something)
+50664,lazaretto lazaret lazarette lazar_house pesthouse,hospital for persons with infectious diseases (especially leprosy)
+50665,laziness,relaxed and easy activity; "the laziness of the day helped her to relax"
+50666,lazy_daisy_stitch,long chain stitches arranged in flower patterns
+50667,lazybones,a lazy person
+50668,le_Carre John_le_Carre David_John_Moore_Cornwell,English writer of novels of espionage (born in 1931)
+50669,le_Chatelier Henry_le_Chatelier,French chemist who formulated Le Chatelier's principle (1850-1936)
+50670,lea,a unit of length of thread or yarn
+50671,leach leaching,the process of leaching
+50672,lead,the angle between the direction a gun is aimed and the position of a moving target (correcting for the flight time of the missile)
+50673,lead,(sports) the score by which a team or individual is winning
+50674,lead,(baseball) the position taken by a base runner preparing to advance to the next base; "he took a long lead off first"
+50675,lead,an advantage held by a competitor in a race; "he took the lead at the last turn"
+50676,lead,a position of being the initiator of something and an example that others will follow (especially in the phrase `take the lead'); "he takes the lead in any group"; "we were just waiting for someone to take the lead"; "they didn't follow our lead"
+50677,lead,the playing of a card to start a trick in bridge; "the lead was in the dummy"
+50678,lead Pb atomic_number_82,a soft heavy toxic malleable metallic element; bluish white when freshly cut but tarnishes readily to dull grey; "the children were playing with lead soldiers"
+50679,lead lead-in lede,the introductory section of a story; "it was an amusing lead-in to a very serious matter"
+50680,lead lead_story,a news story of major importance
+50681,lead leading,thin strip of metal used to separate lines of type in printing
+50682,lead pencil_lead,mixture of graphite with clay in different degrees of hardness; the marking substance in a pencil
+50683,lead track trail,evidence pointing to a possible solution; "the police are following a promising lead"; "the trail led straight to the perpetrator"
+50684,lead-acid_battery lead-acid_accumulator,a battery with lead electrodes with dilute sulphuric acid as the electrolyte; each cell generates about 2 volts
+50685,lead-in,wire connecting an antenna to a receiver or a transmitter to a transmission line
+50686,lead_acetate sugar_of_lead,a poisonous white solid (Pb[CH3CO]2) used in dyeing cotton and in making enamels and varnishes
+50687,lead_arsenate,a poisonous white solid (Pb3[AsO4]2) used as an insecticide
+50688,lead_bank agent_bank,a bank named by a lending syndicate of several banks to protect their interests
+50689,lead_chromate,a poisonous chromate of lead used as a pigment in paint
+50690,lead_colic painter's_colic,symptom of chronic lead poisoning and associated with obstinate constipation
+50691,lead_glass,glass containing lead oxide; has a high refractive index
+50692,lead_line sounding_line,(nautical) plumb line for determining depth
+50693,lead_ore,ore containing lead
+50694,lead_pencil,pencil that has graphite as the marking substance
+50695,lead_poisoning plumbism saturnism,toxic condition produced by the absorption of excessive lead into the system
+50696,lead_sheet,a sheet containing the words and melody for a song (and some indication of harmony) written in simple form
+50697,lead_time,the time interval between the initiation and the completion of a production process; "the lead times for many publications can vary tremendously"; "planning is an area where lead time can be reduced"
+50698,lead_tree white_popinac Leucaena_glauca Leucaena_leucocephala,low scrubby tree of tropical and subtropical North America having white flowers tinged with yellow resembling mimosa and long flattened pods
+50699,leaded_bronze,bronze to which 1-4% lead is added
+50700,leaded_gasoline leaded_petrol,gasoline treated with a lead compound to reduce motor knocks; "combustion of leaded gasoline released lead into the air where it could cause lead poisoning"
+50701,leader,a person who rules or guides or inspires others
+50702,leadership,the status of a leader; "they challenged his leadership of the union"
+50703,leadership,the ability to lead; "he believed that leadership can be taught"
+50704,leadership leaders,the body of people who lead a group; "the national leadership adopted his plan"
+50705,leadership leading,the activity of leading; "his leadership inspired the team"
+50706,leading_astray leading_off,the act of enticing others into sinful ways
+50707,leading_edge,forward edge of an airfoil
+50708,leading_indicator,one of 11 indicators for different sections of the economy; used by the Department of Commerce to predict economic trends in the near future
+50709,leading_lady,actress who plays the leading female role
+50710,leading_man,actor who plays the leading male role
+50711,leading_question,a question phrased in such a way as to suggest the desired answer; a lawyer may ask leading questions on cross-examination
+50712,leading_rein,rein to direct the horse's head left or right
+50713,leadplant lead_plant Amorpha_canescens,shrub of sandy woodlands and stream banks of western United States having hoary pinnate flowers and dull-colored racemose flowers; thought to indicate the presence of lead ore
+50714,leadwort Plumbago_europaea,a plant of the genus Plumbago with blue flowers
+50715,leaf,hinged or detachable flat section (as of a table or door)
+50716,leaf folio,a sheet of any written or printed material (especially in a manuscript or book)
+50717,leaf leafage foliage,the main organ of photosynthesis and transpiration in higher plants
+50718,leaf-cutting_bee leaf-cutter leaf-cutter_bee,bee that cuts rounded pieces from leaves and flowers to line its nest
+50719,leaf-footed_bug leaf-foot_bug,large sap-sucking bug with leaflike expansions on the legs
+50720,leaf-nosed_snake,any of various pale blotched snakes with a blunt snout of southwestern North America
+50721,leaf_beetle chrysomelid,brightly colored beetle that feeds on plant leaves; larvae infest roots and stems
+50722,leaf_blight,any blight causing a browning and falling of the leaves of a plant
+50723,leaf_bud,a bud from which leaves (but not flowers) develop
+50724,leaf_bug plant_bug,small bright-colored insect that feeds on plant juices
+50725,leaf_disease,any plant disease localized in the foliage
+50726,leaf_fat leaf_lard,fat lining the abdomen and kidneys in hogs which is used to make lard
+50727,leaf_lettuce Lactuca_sativa_crispa,distinguished by leaves having curled or incised leaves forming a loose rosette that does not develop into a compact head
+50728,leaf_lettuce loose-leaf_lettuce,lettuce with loosely curled leaves that do not form a compact head
+50729,leaf_miner leaf-miner,any of various small moths or dipterous flies whose larvae burrow into and feed on leaf tissue especially of the family Gracilariidae
+50730,leaf_mold leaf_mould leaf_soil,soil composed mainly of decaying leaves
+50731,leaf_roller leaf-roller,moth whose larvae form nests by rolling and tying leaves with spun silk
+50732,leaf_scorch,plant disease causing a burned or scorched appearance of the foliage
+50733,leaf_shape leaf_form,any of the various shape that leaves of plants can assume
+50734,leaf_spring,long narrow spring consisting of several layers of metal springs bracketed together
+50735,leafhopper,small leaping insect that sucks the juices of plants
+50736,leaflet,part of a compound leaf
+50737,leafnose_bat leaf-nosed_bat,bat having a leaflike flap at the end of the nose; especially of the families Phyllostomatidae and Rhinolophidae and Hipposideridae
+50738,leafy_liverwort scale_moss,moss-like liverwort with tiny scalelike leaves; usually epiphytic
+50739,leafy_spurge wolf's_milk Euphorbia_esula,tall European perennial naturalized and troublesome as a weed in eastern North America
+50740,league,an obsolete unit of distance of variable length (usually 3 miles)
+50741,league,an association of states or organizations or individuals for common action
+50742,league conference,an association of sports teams that organizes matches for its members
+50743,leak,soft watery rot in fruits and vegetables caused by fungi
+50744,leak,an accidental hole that allows something (fluid or light etc.) to enter or escape; "one of the tires developed a leak"
+50745,leak news_leak,unauthorized (especially deliberate) disclosure of confidential information
+50746,leak wetting making_water passing_water,a euphemism for urination; "he had to take a leak"
+50747,leak_fungus ring_rot_fungus Rhizopus_stolonifer,fungus causing soft watery rot in fruits and vegetables and rings of dry rot around roots of sweet potatoes
+50748,leaker,a surreptitious informant; "the president wanted to know who the leakers were"
+50749,leakiness,the condition of permitting leaks or leakage; "the leakiness of the roof"; "the heart valve's leakiness"; "the leakiness of the boat made it dangerous to use"
+50750,lean-to,rough shelter whose roof has only one slope
+50751,lean-to_tent,tent that is attached to the side of a building
+50752,leaner,(horseshoes) the throw of a horseshoe so as to lean against (but not encircle) the stake
+50753,leaning,the act of deviating from a vertical position
+50754,leaning propensity tendency,an inclination to do something; "he felt leanings toward frivolity"
+50755,leanness thinness spareness,the property of having little body fat
+50756,leap,the distance leaped (or to be leaped); "a leap of 10 feet"
+50757,leap jump saltation,an abrupt transition; "a successful leap from college to the major leagues"
+50758,leap leaping spring saltation bound bounce,a light, self-propelled movement upwards or forwards
+50759,leap_day bissextile_day February_29,the name of the day that is added during a leap year
+50760,leap_second,a second (as measured by an atomic clock) added to or subtracted from Greenwich Mean Time in order to compensate for slowing in the Earth's rotation
+50761,leap_year intercalary_year 366_days bissextile_year,a calendar year with an extra day added in February
+50762,leapfrog,advancing as if in the child's game, by leaping over obstacles or competitors; "the company still believes the chip is a leapfrog in integration and will pay huge dividends"
+50763,leapfrog,a game in which one child bends down and another leaps over
+50764,learned_profession,one of the three professions traditionally believed to require advanced learning and high principles
+50765,learned_reaction learned_response,a reaction that has been acquired by learning
+50766,learner scholar assimilator,someone (especially a child) who learns (as from a teacher) or takes up knowledge or beliefs
+50767,learner's_dictionary school_dictionary,a dictionary specially written for those learning a foreign language
+50768,learner's_permit,a document authorizing the bearer to learn to drive an automobile
+50769,learning acquisition,the cognitive process of acquiring skill or knowledge; "the child's acquisition of language"
+50770,learning_curve,a graph showing the rate of learning (especially a graph showing the amount recalled as a function of the number of attempts to recall)
+50771,learning_disorder learning_disability,a disorder found in children of normal intelligence who have difficulties in learning specific skills
+50772,lease,a contract granting use or occupation of property during a specified time for a specified payment
+50773,lease rental letting,property that is leased or rented out or let
+50774,lease term_of_a_contract,the period of time during which a contract conveying property to a person is in effect
+50775,leasehold,land or property held under a lease
+50776,leaseholder lessee,a tenant who holds a lease
+50777,leash tether lead,restraint consisting of a rope (or light chain) used to restrain an animal
+50778,least,something that is of no importance; "it is the least I can do"; "that is the least of my concerns"
+50779,least_bittern Ixobrychus_exilis,small American bittern
+50780,least_effort least_resistance,the least effortful way to do something
+50781,least_sandpiper stint Erolia_minutilla,smallest American sandpiper
+50782,least_shrew Cryptotis_parva,small brown shrew of grassy regions of eastern United States
+50783,least_squares method_of_least_squares,a method of fitting a curve to data points so as to minimize the sum of the squares of the distances of the points from the curve
+50784,leather,an animal skin made smooth and flexible by removing the hair and then tanning
+50785,leather_carp,scaleless domestic carp
+50786,leather_fern leatherleaf_fern ten-day_fern Rumohra_adiantiformis Polystichum_adiantiformis,widely distributed fern of tropical southern hemisphere having leathery pinnatifid fronds
+50787,leather_flower Clematis_versicolor,woody vine of the southern United States having purple or blue flowers with leathery recurved sepals
+50788,leather_flower vase-fine vase_vine Clematis_viorna,scandent subshrub of southeastern United States having large red-purple bell-shaped flowers with leathery recurved sepals
+50789,leather_strip,implement consisting of a strip of leather
+50790,leatherback_turtle leatherback leathery_turtle Dermochelys_coriacea,wide-ranging marine turtle with flexible leathery carapace; largest living turtle
+50791,leatherette imitation_leather,fabric made to look like leather
+50792,leatherjacket,tough-skinned larva of certain crane flies
+50793,leatherjacket leatherfish,any of several brightly colored tropical filefishes
+50794,leatherjacket leatherjack,any of several New World tropical fishes having tiny embedded scales
+50795,leatherleaf Chamaedaphne_calyculata,north temperate bog shrub with evergreen leathery leaves and small white cylindrical flowers
+50796,leatherleaf leathery_polypody coast_polypody Polypodium_scouleri,stiff leathery-leaved fern of western North America having ovate fronds parted to the midrib
+50797,leatherleaf_saxifrage Leptarrhena_pyrolifolia,plant with basal leathery elliptic leaves and erect leafless flower stalks each bearing a dense roundish cluster of tiny white flowers; moist places of northwestern North America to Oregon and Idaho
+50798,leatherwood moosewood moose-wood wicopy ropebark Dirca_palustris,deciduous shrub of eastern North America having tough flexible branches and pliable bark and small yellow flowers
+50799,leatherwork,work made of leather
+50800,leathery_grape_fern Botrychium_multifidum,European fern with leathery and sparsely hairy fronds
+50801,leave,permission to do something; "she was granted leave to speak"
+50802,leave leave_of_absence,the period of time during which you are absent from work or duty; "a ten day's leave to visit his mother"
+50803,leaven leavening,a substance used to produce fermentation in dough or a liquid
+50804,leaven leavening,an influence that works subtly to lighten or modify something; "his sermons benefited from a leavening of humor"
+50805,lecanopteris,any of several bizarre ferns of the genus Lecanopteris having swollen hollow rhizomes that provide homes for symbiotic ants
+50806,lecanora,any lichen of the genus Lecanora; some used in dyeing; some used for food
+50807,lecherousness lust lustfulness,a strong sexual desire
+50808,lechery,unrestrained indulgence in sexual activity
+50809,lechwe Kobus_leche,tawny-colored African antelope inhabiting wet grassy plains; a threatened species
+50810,lecithin,a yellow phospholipid essential for the metabolism of fats; found in egg yolk and in many plant and animal cells; used commercially as an emulsifier
+50811,lectern reading_desk,desk or stand with a slanted top used to hold a text at the proper height for a lecturer
+50812,lectin,any of several plant glycoproteins that act like specific antibodies but are not antibodies in that they are not evoked by an antigenic stimulus
+50813,lector lecturer reader,a public lecturer at certain universities
+50814,lector reader,someone who reads the lessons in a church service; someone ordained in a minor order of the Roman Catholic Church
+50815,lecture lecturing,teaching by giving a discourse on some subject (typically to a class)
+50816,lecture public_lecture talk,a speech that is open to the public; "he attended a lecture on telecommunications"
+50817,lecture speech talking_to,a lengthy rebuke; "a good lecture was my father's idea of discipline"; "the teacher gave him a talking to"
+50818,lecture_demonstration,presentation of an example of what the lecturer is discoursing about
+50819,lecture_room,classroom where lectures are given
+50820,lecturer,someone who lectures professionally
+50821,lectureship,the post of lecturer
+50822,lederhosen,leather shorts often worn with suspenders; worn especially by men and boys in Bavaria
+50823,ledge shelf,a projecting ridge on a mountain or submerged under water
+50824,ledger leger account_book book_of_account book,a record in which commercial accounts are recorded; "they got a subpoena to examine our books"
+50825,ledger_board,top rail of a fence or balustrade
+50826,ledger_line leger_line,a short line; a notation for extending the range above or below the staff
+50827,ledger_paper,a durable writing paper used in record books and business ledgers
+50828,lee lee_side leeward,the side of something that is sheltered from the wind
+50829,leech bloodsucker hirudinean,carnivorous or bloodsucking aquatic or terrestrial worms typically having a sucker at each end
+50830,leech parasite sponge sponger,a follower who hangs around a host (without benefit to the host) in hope of gain or advantage
+50831,leek,related to onions; white cylindrical bulb and flat dark-green leaves
+50832,leek scallion Allium_porrum,plant having a large slender white bulb and flat overlapping dark green leaves; used in cooking; believed derived from the wild Allium ampeloprasum
+50833,leer,a suggestive or sneering look or grin
+50834,lees,the sediment from fermentation of an alcoholic beverage
+50835,leeward,the direction in which the wind is blowing
+50836,leeward_tide lee_tide,a tide that runs in the same direction as the wind is blowing; "a leeward tide is dangerous for small boats"
+50837,leeway,(of a ship or plane) sideways drift
+50838,leflunomide Arava,an anti-TNF compound (trade name Arava) that is given orally; can slow the progression of rheumatoid arthritis by slowing the proliferation of white blood cells which reduces inflammation in the synovium
+50839,left,location near or direction toward the left side; i.e. the side to the north when a person or object faces east; "she stood on the left"
+50840,left,a turn toward the side of the body that is on the north when the person is facing east; "take a left at the corner"
+50841,left left_hand,the hand that is on the left side of the body; "jab with your left"
+50842,left left_wing,those who support varying degrees of social or political or economic change designed to promote the public welfare
+50843,left-handed_pitcher left-hander left_hander lefthander lefty southpaw,a baseball pitcher who throws the ball with the left hand
+50844,left-handedness,the status of being born of a morganatic marriage
+50845,left-handedness sinistrality,preference for using the left hand
+50846,left-hander lefty southpaw,a person who uses the left hand with greater skill than the right; "their pitcher was a southpaw"
+50847,left_atrium left_atrium_of_the_heart atrium_sinistrum,the left upper chamber of the heart that receives blood from the pulmonary veins
+50848,left_coronary_artery,arises from the left aortic sinus; supplies the left side of the heart
+50849,left_field leftfield,the fielding position of the player on a baseball team who is expected to field balls in the left third of the outfield (looking from home plate)
+50850,left_field leftfield left,the piece of ground in the outfield on the catcher's left; "the batter flied out to left"
+50851,left_fielder,the person who plays left field
+50852,left_gastric_artery arteria_gastrica_sinistra,a branch of the celiac artery that supplies the lesser curvature of the stomach and the abdominal part of the esophagus
+50853,left_gastric_vein vena_gastrica_sinistra,arises from a union of veins from the gastric cardia; runs in the lesser omentum; empties into the portal vein
+50854,left_hemisphere left_brain,the cerebral hemisphere to the left of the corpus callosum that controls the right half of the body
+50855,left_ventricle,the chamber on the left side of the heart that receives arterial blood from the left atrium and pumps it into the aorta
+50856,lefteye_flounder lefteyed_flounder,flatfishes with both eyes on the left side of the head
+50857,leftism,the ideology of the political left; belief in or support of the tenets of the political left
+50858,leftover remnant,a small part or portion that remains after the main part no longer exists
+50859,leftovers,food remaining from a previous meal; "he had leftovers for dinner last night"
+50860,leg,the limb of an animal used for food
+50861,leg,a structure in animals that is similar to a human leg and used for locomotion
+50862,leg,a human limb; commonly used to refer to a whole limb but technically only the part of the limb between the knee and ankle
+50863,leg,one of the supports for a piece of furniture
+50864,leg,a cloth covering consisting of the part of a pair of trousers that covers a person's leg
+50865,leg,(nautical) the distance traveled by a sailing vessel on a single tack
+50866,leg-pull leg-pulling,as a joke: trying to make somebody believe something that is not true
+50867,leg_bone,a bone of the leg
+50868,leg_curl leg_curling,an exercise designed to strengthen the flexor muscles of the leg
+50869,leg_exercise,exercise designed to strengthen the leg muscles
+50870,leg_extensor,an exercise designed to strengthen the extensor muscles of the leg
+50871,leg_of_lamb gigot,lamb leg suitable for roasting
+50872,legal_action action action_at_law,a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong
+50873,legal_blindness,vision that is 20/200 or worse in both eyes (20/200 vision is the ability to see at 20 feet what a normal eye can see at 200 feet)
+50874,legal_code,a code of laws adopted by a state or nation; "a code of laws"
+50875,legal_document legal_instrument official_document instrument,(law) a document that states some contractual relationship or grants some right
+50876,legal_duty,acts which the law requires be done or forborne
+50877,legal_fee,a fee paid for legal service
+50878,legal_holiday national_holiday public_holiday,authorized by law and limiting work or official business
+50879,legal_power jurisdiction,(law) the right and power to interpret and apply the law; "courts having jurisdiction in this district"
+50880,legal_principle judicial_principle judicial_doctrine,(law) a principle underlying the formulation of jurisprudence
+50881,legal_profession bar legal_community,the body of individuals qualified to practice law in a particular jurisdiction; "he was admitted to the bar in New Jersey"
+50882,legal_relation,a professional relation that is regulated by law (as between a lawyer and a client)
+50883,legal_representation,personal representation that has legal status; "an person who has been declared incompetent should have legal representation"
+50884,legal_representative,a personal representative with legal standing (as by power of attorney or the executor of a will)
+50885,legal_right,a right based in law
+50886,legal_separation judicial_separation,a judicial decree regulating the rights and responsibilities of a married couple living apart
+50887,legal_separation separation,(law) the cessation of cohabitation of man and wife (either by mutual agreement or under a court order)
+50888,legal_status,a status defined by law
+50889,legal_system,a system for interpreting and enforcing the laws
+50890,legalese,a style that uses the abstruse technical vocabulary of the law
+50891,legalism,strict conformity to the letter of the law rather than its spirit
+50892,legality,lawfulness by virtue of conformity to a legal statute
+50893,legalization legalisation legitimation,the act of making lawful
+50894,legate official_emissary,a member of a legation
+50895,legatee,someone to whom a legacy is bequeathed
+50896,legation foreign_mission,a permanent diplomatic mission headed by a minister
+50897,legation legateship,the post or office of legate
+50898,legend fable,a story about mythical or supernatural beings or events
+50899,legendary_creature,a monster that is unverifiable but popularly accepted as possibly factual
+50900,legging leging leg_covering,a garment covering the leg (usually extending from the knee to the ankle)
+50901,legibility readability,a quality of writing (print or handwriting) that can be easily read
+50902,legion,association of ex-servicemen; "the American Legion"
+50903,legion,a large military unit; "the French Foreign Legion"
+50904,legionnaire legionary,a soldier who is a member of a legion (especially the French Foreign Legion)
+50905,legislation legislating lawmaking,the act of making or enacting laws
+50906,legislation statute_law,law enacted by a legislative body
+50907,legislative_act statute,an act passed by a legislative body
+50908,legislative_branch,the branch of the United States government that has the power of legislating
+50909,legislative_council,a unicameral legislature
+50910,legislator,someone who makes or enacts laws
+50911,legislatorship,the office of legislator
+50912,legislature legislative_assembly legislative_body general_assembly law-makers,persons who make or amend or repeal laws
+50913,legitimacy,lawfulness by virtue of being authorized or in accordance with law
+50914,legitimation,the act of rendering a person legitimate; "he has filial rights because he obtained letters of legitimation from the king"; "his parents' subsequent marriage resulted in his legitimation"
+50915,legless_lizard,degenerate wormlike burrowing lizard of California closely related to alligator lizards
+50916,legs,staying power; "that old Broadway play really has legs"
+50917,legume,the fruit or seed of any of various bean or pea plants consisting of a case that splits along both sides when ripe and having the seeds attach to one side of the case
+50918,legume,the seedpod of a leguminous plant (such as peas or beans or lentils)
+50919,legume leguminous_plant,an erect or climbing bean or pea plant of the family Leguminosae
+50920,leiomyoma,benign tumor of smooth muscle (usually in the uterus or digestive tract)
+50921,leiomyosarcoma,sarcoma of smooth muscle; occurs most often digestive tract or uterus or bladder or prostate
+50922,leishmaniasis leishmaniosis kala_azar,sores resulting from a tropical infection by protozoa of the genus Leishmania which are spread by sandflies
+50923,leister,a spear with three or more prongs; used for spearing fish (especially salmon)
+50924,leisure,freedom to choose a pastime or enjoyable activity; "he lacked the leisure for golf"
+50925,leisure leisure_time,time available for ease and relaxation; "his job left him little leisure"
+50926,leisure_wear,informal clothing designed to be worn when you are relaxing
+50927,leisureliness,slowness by virtue of being leisurely
+50928,leitmotiv leitmotif,a melodic phrase that accompanies the reappearance of a person or situation (as in Wagner's operas)
+50929,lek,the basic unit of money in Albania
+50930,lekvar,a sweet filling made of prunes or apricots
+50931,lemma,a subsidiary proposition that is assumed to be true in order to prove another proposition
+50932,lemma,the heading that indicates the subject of an annotation or a literary composition or a dictionary entry
+50933,lemma flowering_glume,the lower and stouter of the two glumes immediately enclosing the floret in most Gramineae
+50934,lemming,any of various short-tailed furry-footed rodents of circumpolar distribution
+50935,lemniscate,any of several plane algebraic curves in the shape of a figure eight
+50936,lemniscus fillet,a bundle of sensory nerve fibers going to the thalamus
+50937,lemon,yellow oval fruit with juicy acidic flesh
+50938,lemon,a distinctive tart flavor characteristic of lemons
+50939,lemon lemon_tree Citrus_limon,a small evergreen tree that originated in Asia but is widely cultivated for its fruit
+50940,lemon stinker,an artifact (especially an automobile) that is defective or unsatisfactory
+50941,lemon-scented_gum Eucalyptus_citriodora Eucalyptus_maculata_citriodora,similar to but smaller than the spotted gum and having lemon-scented leaves
+50942,lemon_balm,lemony leaves used for a tisane or in soups or fruit punches
+50943,lemon_balm garden_balm sweet_balm bee_balm beebalm Melissa_officinalis,bushy perennial Old World mint having small white or yellowish flowers and fragrant lemon-flavored leaves; a garden escapee in northern Europe and North America
+50944,lemon_curd lemon_cheese,a conserve with a thick consistency; made with lemons and butter and eggs and sugar
+50945,lemon_drop,a hard candy with lemon flavor and a yellow color and (usually) the shape of a lemon
+50946,lemon_extract,a flavoring made from (or imitating) lemons
+50947,lemon_geranium Pelargonium_limoneum,a common garden geranium with lemon-scented foliage
+50948,lemon_grove,a grove of lemon trees
+50949,lemon_juice,usually freshly squeezed juice of lemons
+50950,lemon_lily Hemerocallis_lilio-asphodelus Hemerocallis_flava,a day lily with yellow flowers
+50951,lemon_meringue_pie,pie containing lemon custard and topped with meringue
+50952,lemon_mint horsemint Monarda_citriodora,an annual horsemint of central and western United States and northern Mexico
+50953,lemon_oil,fragrant yellow oil obtained from the lemon peel
+50954,lemon_peel,strips of lemon peel cooked in sugar and coated with sugar
+50955,lemon_peel lemon_rind,the rind of a lemon
+50956,lemon_shark Negaprion_brevirostris,common shallow-water schooling shark of the Atlantic from North Carolina to Brazil and off west Africa; dangerous
+50957,lemon_sole English_sole,highly valued almost pure white flesh
+50958,lemon_sole Microstomus_kitt,European flatfish highly valued as food
+50959,lemon_sole Solea_lascaris,small European sole
+50960,lemon_sole winter_flounder,flesh of American flounder; important in the winter
+50961,lemon_zest,tiny bits of lemon peel
+50962,lemonade,sweetened beverage of diluted lemon juice
+50963,lemonade_mix,a commercial mix for making lemonade
+50964,lemongrass lemon_grass,a tropical grass native to India and Sri Lanka
+50965,lemongrass lemon_grass lemongrass_oil,an aromatic oil that smells like lemon and is widely used in Asian cooking and in perfumes and medicines
+50966,lemonwood,hard tough elastic wood of the lemonwood tree; used for making bows and fishing rods
+50967,lemonwood lemon-wood lemonwood_tree lemon-wood_tree Psychotria_capensis,South African evergreen having hard tough wood
+50968,lempira,the basic unit of money in Honduras; equal to 100 centavos
+50969,lemur,large-eyed arboreal prosimian having foxy faces and long furry tails
+50970,lend-lease lease-lend,the transfer of goods and services to an ally to aid in a common cause; "lend-lease during World War II was extremely generous"
+50971,lender loaner,someone who lends money or gives credit in business matters
+50972,lending loaning,disposing of money or property with the expectation that the same thing (or an equivalent) will be returned
+50973,lending_institution,a financial institution that makes loans
+50974,lending_library circulating_library,library that provides books for use outside the building
+50975,length,the property of being the extent of something from beginning to end; "the editor limited the length of my article to 500 words"
+50976,length,the linear extent in space from one end to the other; the longest dimension of something that is fixed in place; "the length of the table was 5 feet"
+50977,length,a section of something that is long and narrow; "a length of timber"; "a length of tubing"
+50978,lengthiness prolongation continuation protraction,the consequence of being lengthened in duration
+50979,lenience leniency,lightening a penalty or excusing from a chore by judges or parents or teachers
+50980,lenience leniency mildness lenity,mercifulness as a consequence of being lenient or tolerant
+50981,lenitive,remedy that eases pain and discomfort
+50982,lens,(metaphor) a channel through which something can be seen or understood; "the writer is the lens through which history can be seen"
+50983,lens crystalline_lens lens_of_the_eye,biconvex transparent body situated behind the iris in the eye; its role (along with the cornea) is to focus light on the retina
+50984,lens electron_lens,electronic equipment that uses a magnetic or electric field in order to focus a beam of electrons
+50985,lens lense lens_system,a transparent optical device used to converge or diverge transmitted light and to form images
+50986,lens_cap lens_cover,cap used to keep lens free of dust when not in use
+50987,lens_capsule,a tenuous mesoblastic membrane surrounding the lens of the eye
+50988,lens_cortex cortex,the tissue that surrounds the lens nucleus
+50989,lens_implant interocular_lens_implant IOL,a clear plastic lens that is implanted in the eye; usually done when the natural lens has been removed in a cataract operation
+50990,lens_nucleus nucleus,the central structure of the lens that is surrounded by the cortex
+50991,lenten_rose black_hellebore Helleborus_orientalis,slightly hairy perennial having deep green leathery leaves and flowers that are ultimately purplish-green
+50992,lenticel,one of many raised pores on the stems of woody plants that allow the interchange of gas between the atmosphere and the interior tissue
+50993,lenticular_nucleus lentiform_nucleus,a basal ganglion shaped like a lens and including the outer reddish putamen and the inner pale yellow pallidum
+50994,lentil,the fruit or seed of a lentil plant
+50995,lentil,round flat seed of the lentil plant used for food
+50996,lentil lentil_plant Lens_culinaris,widely cultivated Eurasian annual herb grown for its edible flattened seeds that are cooked like peas and also ground into meal and for its leafy stalks that are used as fodder
+50997,lentil_soup,made of stock and lentils with onions carrots and celery
+50998,leone,the basic unit of money in Sierra Leone; equal to 100 cents
+50999,leopard,the pelt of a leopard
+51000,leopard Panthera_pardus,large feline of African and Asian forests usually having a tawny coat with black spots
+51001,leopard's-bane leopardbane,any of several herbs of the genus Doronicum having alternate often clasping stem leaves cultivated for their long stalks of yellow flower heads
+51002,leopard_cat Felis_bengalensis,small spotted wildcat of southern Asia and Malaysia
+51003,leopard_frog spring_frog Rana_pipiens,common North American green or brownish frog having white-edged dark oval spots
+51004,leopard_lily panther_lily Lilium_pardalinum,lily of western United States having orange-red to crimson maroon-spotted flowers
+51005,leopard_lizard,any of several large lizards with many dark spots; of western United States and northern Mexico
+51006,leopard_plant,any of various plants of temperate Eurasia; grown for their yellow flowers and handsome foliage
+51007,leopardess,female leopard
+51008,leotard unitard body_suit cat_suit,a tight-fitting garment of stretchy material that covers the body from the shoulders to the thighs (and may have long sleeves or legs reaching down to the ankles); worn by ballet dancers and acrobats for practice or performance
+51009,leper,a pariah who is avoided by others
+51010,leper lazar,a person afflicted with leprosy
+51011,lepidobotrys,African tree often classified in other families; similar to the Costa Rican caracolito in wood structure as well as in fruit and flowers and leaves and seeds
+51012,lepidocrocite,a red to reddish brown mineral consisting of iron oxide hydroxide; often found in iron ores together with goethite
+51013,lepidolite,a mineral of the mica group; an important source of lithium
+51014,lepidomelane,a mica that is a biotite containing iron
+51015,lepidophobia,a morbid fear of snakes
+51016,lepidopterist lepidopterologist butterfly_collector,an entomologist who specializes in the collection and study of butterflies and moths
+51017,lepidopterology lepidoptery,the branch of entomology dealing with Lepidoptera
+51018,lepidopterous_insect lepidopteron lepidopteran,insect that in the adult state has four wings more or less covered with tiny scales
+51019,lepiota,any fungus of the genus Lepiota
+51020,leporid leporid_mammal,rabbits and hares
+51021,leprechaun,a mischievous elf in Irish folklore
+51022,lepromatous_leprosy,a very serious form of leprosy characterized by lesions that spread over much of the body and affecting many systems of the body
+51023,leprosy Hansen's_disease,chronic granulomatous communicable disease occurring in tropical and subtropical regions; characterized by inflamed nodules beneath the skin and wasting of body parts; caused by the bacillus Mycobacterium leprae
+51024,leprosy_bacillus Mycobacterium_leprae,cause of leprosy
+51025,leptocephalus,slender transparent larva of eels and certain fishes
+51026,leptodactylid_frog leptodactylid,toothed frogs: terrestrial or aquatic or arboreal
+51027,leptomeninges,the two innermost layers of the meninges; cerebrospinal fluid circulates between these innermost layers
+51028,leptomeningitis,inflammation of the leptomeninges
+51029,lepton,100 lepta equal 1 drachma in Greece
+51030,lepton,an elementary particle that participates in weak interactions; has a baryon number of 0
+51031,leptospira,important pathogens causing Weil's disease or canicola fever
+51032,leptosporangium,a sporangium formed from a single epidermal cell; characteristic of the Filicales or of almost all modern ferns
+51033,leptotene,the first stage of the prophase of meiosis
+51034,leresis,rambling talkativeness (especially in the aged)
+51035,lerot,dormouse of southern Europe and northern Africa
+51036,lesbian tribade gay_woman,a female homosexual
+51037,lesbianism sapphism,female homosexuality
+51038,lesion,any localized abnormal structural change in a bodily part
+51039,lesser_ape,gibbons and siamangs
+51040,lesser_bullrush narrow-leaf_cattail narrow-leaved_reedmace soft_flag Typha_angustifolia,reed maces of America, Europe, North Africa, Asia
+51041,lesser_butterfly_orchid Platanthera_bifolia Habenaria_bifolia,south European orchid having fragrant greenish-white flowers; sometimes placed in genus Habenaria
+51042,lesser_calamint field_balm Calamintha_nepeta Calamintha_nepeta_glantulosa Satureja_nepeta Satureja_calamintha_glandulosa,low-growing strongly aromatic perennial herb of southern Europe to Great Britain; naturalized in United States
+51043,lesser_celandine pilewort Ranunculus_ficaria,perennial herb native to Europe but naturalized elsewhere having heart-shaped leaves and yellow flowers resembling buttercups; its tuberous roots have been used as a poultice to relieve piles
+51044,lesser_centaury Centaurium_minus,common European glabrous annual centaury with flowers in dense cymes
+51045,lesser_galangal Alpinia_officinarum Alpinia_officinalis,Chinese perennial with pyramidal racemes of white flowers and pungent aromatic roots used medicinally and as flavoring
+51046,lesser_knapweed black_knapweed hardheads Centaurea_nigra,a weedy perennial with tough wiry stems and purple flowers; native to Europe but widely naturalized
+51047,lesser_kudu Tragelaphus_imberbis,a smaller variety of kudu
+51048,lesser_omentum,a part of the peritoneum attached to the stomach and liver and supporting the hepatic vessels
+51049,lesser_panda red_panda panda bear_cat cat_bear Ailurus_fulgens,reddish-brown Old World raccoon-like carnivore; in some classifications considered unrelated to the giant pandas
+51050,lesser_prairie_chicken Tympanuchus_pallidicinctus,a smaller prairie chicken of western Texas
+51051,lesser_rorqual piked_whale minke_whale Balaenoptera_acutorostrata,small finback of coastal waters of Atlantic and Pacific
+51052,lesser_scaup lesser_scaup_duck lake_duck Aythya_affinis,common scaup of North America; males have purplish heads
+51053,lesser_spearwort Ranunculus_flammula,semiaquatic Eurasian perennial crowfoot with leaves shaped like spears; naturalized in New Zealand
+51054,lesser_twayblade Listera_cordata,orchid having two triangular leaves and a short lax raceme of green to rust-colored flowers with the lip flushed mauve; Europe and Asia and North America and Greenland
+51055,lesser_whitethroat whitethroat Sylvia_curruca,Old World warbler similar to the greater whitethroat but smaller
+51056,lesser_wintergreen Pyrola_minor,the common wintergreen having many-flowered racemes of pink-tinged white flowers; Europe and North America
+51057,lesser_yellowlegs Tringa_flavipes,a variety of yellowlegs
+51058,lesson,a unit of instruction; "he took driving lessons"
+51059,lesson,a task assigned for individual study; "he did the lesson for today"
+51060,lessor lease_giver,someone who grants a lease
+51061,let net_ball,a serve that strikes the net before falling into the receiver's court; the ball must be served again
+51062,lethal_agent,an agent capable of causing death
+51063,lethal_dose,the size dose that will cause death
+51064,lethal_gene,any gene that has an effect that causes the death of the organism at any stage of life
+51065,lethargy lassitude sluggishness,a state of comatose torpor (as found in sleeping sickness)
+51066,letter,owner who lets another person use something (housing usually) for hire
+51067,letter,a strictly literal interpretation (as distinct from the intention); "he followed instructions to the letter"; "he obeyed the letter of the law"
+51068,letter letter_of_the_alphabet alphabetic_character,the conventional characters of the alphabet used to represent speech; "his grandmother taught him his letters"
+51069,letter missive,a written message addressed to a person or organization; "mailed an indignant letter to the editor"
+51070,letter varsity_letter,an award earned by participation in a school sport; "he won letters in three sports"
+51071,letter_bomb parcel_bomb package_bomb,a thin explosive device inside an envelope or package and detonated when opened
+51072,letter_bond,a bond that has not been registered with the Securities and Exchange Commission and cannot be sold to the general public
+51073,letter_case,case for carrying letters
+51074,letter_of_credit,a document issued by a bank that guarantees the payment of a customer's draft; substitutes the bank's credit for the customer's credit
+51075,letter_of_intent,any letter expressing an intention to take (or forgo) some action
+51076,letter_of_marque letters_of_marque letter_of_mark_and_reprisal,a license to a private citizen to seize property of another nation
+51077,letter_opener paper_knife paperknife,dull knife used to cut open the envelopes in which letters are mailed or to slit uncut pages of books
+51078,letter_paper,writing paper for use in writing correspondence
+51079,letter_security,a stock or bond that is not registered with the Securities and Exchange Commission and cannot be sold in the public market
+51080,letter_stock,stock that has not been registered with the Securities and Exchange Commission and cannot be sold to the general public
+51081,letter_telegram,a cheaper form of telegram that is sent abroad for delivery the next day
+51082,lettercard,a postcard that folds so the message is inside
+51083,letterer,a painter of letters
+51084,letterhead,a sheet of stationery with name and address of the organization printed at the top
+51085,letterman,an athlete who has earned a letter in a school sport
+51086,letters,scholarly attainment; "he is a man of letters"
+51087,letters,the literary culture; "this book shows American letters at its best"
+51088,letters_of_administration,legal document naming someone to administer an estate when no executor has been named
+51089,letters_testamentary,a legal document from a probate court or court officer informing you of your appointment as executor of a will and empowering you to discharge those responsibilities
+51090,letterset_printing,image is transferred from a relief type plate to a roller
+51091,lettuce,any of various plants of the genus Lactuca
+51092,lettuce,leaves of any of various plants of Lactuca sativa
+51093,letup lull,a pause during which things are calm or activities are diminished; "there was never a letup in the noise"
+51094,leu,the basic unit of money in Moldova
+51095,leu,the basic unit of money in Romania
+51096,leucine,a white crystalline amino acid occurring in proteins that is essential for nutrition; obtained by the hydrolysis of most dietary proteins
+51097,leucocytozoan leucocytozoon,parasitic in birds
+51098,leucothoe,any plant of the genus Leucothoe; grown for their beautiful white flowers; glossy foliage contains a poisonous substance similar to that found in genus Kalmia
+51099,leukemia leukaemia leucaemia cancer_of_the_blood,malignant neoplasm of blood-forming tissues; characterized by abnormal proliferation of leukocytes; one of the four major types of cancer
+51100,leukocyte leucocyte white_blood_cell white_cell white_blood_corpuscle white_corpuscle WBC,blood cells that engulf and digest bacteria and fungi; an important part of the body's defense system
+51101,leukocytosis leucocytosis,an abnormal increase in the number of white blood cells in the blood as a result of infection (as in leukemia)
+51102,leukoderma,a congenital skin condition characterized by spots or bands of unpigmented skin
+51103,leukoencephalitis,inflammation of the white matter of the brain
+51104,leukoma leucoma,eye disease consisting of an opaque white spot on the cornea
+51105,leukopenia leucopenia,an abnormal lowering of the white blood cell count
+51106,leukorrhea leucorrhea,discharge of white mucous material from the vagina; often an indication of infection
+51107,lev,the basic unit of money in Bulgaria
+51108,levallorphan Lorfan,drug (trade name Lorfan) that is related to morphine but that counteracts the respiratory depression produced by morphine poisoning but without affecting its analgesic effects
+51109,levanter,an easterly wind in the western Mediterranean area
+51110,levator,a muscle that serves to lift some body part (as the eyelid or lip)
+51111,levee,a formal reception of visitors or guests (as at a royal court)
+51112,levee,a pier that provides a landing place on a river
+51113,levee,an embankment that is built in order to prevent a river from overflowing
+51114,level,height above ground; "the water reached ankle level"; "the pictures were at the same level"
+51115,level layer stratum,an abstract place usually conceived as having depth; "a good actor communicates on several levels"; "a simile has at least two layers of meaning"; "the mind functions on many strata simultaneously"
+51116,level spirit_level,indicator that establishes the horizontal when a bubble is centered in a tube of liquid
+51117,level_crossing grade_crossing,intersection of a railway and a road on the same level; barriers close road when trains pass
+51118,leveler leveller,a radical who advocates the abolition of social distinctions
+51119,lever,a simple machine that gives a mechanical advantage when given a fulcrum
+51120,lever,a rigid bar pivoted about a fulcrum
+51121,lever lever_tumbler,a flat metal tumbler in a lever lock
+51122,lever_hang,a hang performed on the rings with the body stationary in a horizontal position
+51123,lever_lock,a lock whose tumblers are levers that must be raised to a given position so that the bolt can move
+51124,leverage,strategic advantage; power to act effectively; "relatively small groups can sometimes exert immense political leverage"
+51125,leverage leveraging,investing with borrowed money as a way to amplify potential gains (at the risk of greater losses)
+51126,leverage purchase,the mechanical advantage gained by being in a position to use a lever
+51127,leveraged_buyout,a buyout using borrowed money; the target company's assets are usually security for the loan; "a leveraged buyout by upper management can be used to combat hostile takeover bids"
+51128,leveret,a young hare especially one in its first year
+51129,leviathan,the largest or most massive thing of its kind; "it was a leviathan among redwoods"; "they were assigned the leviathan of textbooks"
+51130,leviathan,monstrous sea creature symbolizing evil in the Old Testament
+51131,levirate,the biblical institution whereby a man must marry the widow of his childless brother in order to maintain the brother's line
+51132,levitation,the phenomenon of a person or thing rising into the air by apparently supernatural means
+51133,levitation,movement upward in virtue of lightness
+51134,levitation,the act of raising (a body) from the ground by presumably spiritualistic means
+51135,levity,feeling an inappropriate lack of seriousness
+51136,levity,a manner lacking seriousness
+51137,levorotation counterclockwise_rotation,rotation to the left
+51138,levy,a charge imposed and collected
+51139,levy levy_en_masse,the act of drafting into military service
+51140,lexeme,a minimal unit (as a word or stem) in the lexicon of a language; `go' and `went' and `gone' and `going' are all members of the English lexeme `go'
+51141,lexical_database,a database of information about words
+51142,lexical_disambiguation,disambiguation of the sense of a polysemantic word
+51143,lexical_entry dictionary_entry,the entry in a dictionary of information about a word
+51144,lexical_meaning,the meaning of a content word that depends on the nonlinguistic concepts it is used to express
+51145,lexical_semantics,the branch of semantics that studies the meanings and relations of words
+51146,lexicalization lexicalisation,the process of making a word to express a concept
+51147,lexicalized_concept,a concept that is expressed by a word (in some particular language)
+51148,lexicographer lexicologist,a compiler or writer of a dictionary; a student of the lexical component of language
+51149,lexicography,the act of writing dictionaries
+51150,lexicology,the branch of linguistics that studies the lexical component of language
+51151,lexicostatistics,a statistical technique used in glottochronology; used to estimate how long ago different languages evolved from a common source language
+51152,lexis,all of the words in a language; all word forms having meaning or grammatical function
+51153,li,Chinese distance measure; approximately 0.5 kilometers
+51154,liabilities,anything that is owed to someone else
+51155,liability,the state of being legally obliged and responsible
+51156,liability,the quality of being something that holds you back
+51157,liability_insurance,insurance that provides protection from claims arising from injuries or damage to other people or property
+51158,liaison link contact inter-group_communication,a channel for communication between groups; "he provided a liaison with the guerrillas"
+51159,liana,a woody climbing usually tropical plant
+51160,liar prevaricator,a person who has lied or who lies repeatedly
+51161,libation,(facetious) a serving of an alcoholic beverage
+51162,libation,a serving (of wine) poured out in honor of a deity
+51163,libation,the act of pouring a liquid offering (especially wine) as a religious ceremony
+51164,libel,a false and malicious publication printed for the purpose of defaming a living person
+51165,libel,the written statement of a plaintiff explaining the cause of action (the defamation) and any relief he seeks
+51166,liberal,a person who favors an economic theory of laissez-faire and self-regulating markets
+51167,liberal liberalist progressive,a person who favors a political philosophy of progress and reform and the protection of civil liberties
+51168,liberalism,a political orientation that favors social progress by reform and by changing laws rather than by revolution
+51169,liberalism,an economic theory advocating free competition and a self-regulating market
+51170,liberality liberalness,an inclination to favor progress and individual freedom
+51171,liberality liberalness,the trait of being generous in behavior and temperament
+51172,liberalization liberalisation relaxation,the act of making less strict
+51173,liberation,the attempt to achieve equal rights or status; "she worked for women's liberation"
+51174,liberation release freeing,the act of liberating someone or something
+51175,liberation_theology,a form of Christian theology (developed by South American Roman Catholics) that emphasizes social and political liberation as the anticipation of ultimate salvation
+51176,liberator,someone who releases people from captivity or bondage
+51177,libertarian,an advocate of libertarianism
+51178,libertarian,someone who believes the doctrine of free will
+51179,libertarianism,an ideological belief in freedom of thought, speech and action
+51180,libertine debauchee rounder,a dissolute person; usually a man who is morally unrestrained
+51181,liberty,personal freedom from servitude or confinement or oppression
+51182,liberty,freedom of choice; "liberty of opinion"; "liberty of worship"; "liberty--perfect liberty--to think or feel or do just as one pleases"; "at liberty to choose whatever occupation one wishes"
+51183,liberty_cap,close-fitting conical cap worn as a symbol of liberty during the French Revolution and in the U.S. before 1800
+51184,libidinal_energy,(psychoanalysis) psychic energy produced by the libido
+51185,libido,(psychoanalysis) a Freudian term for sexual urge or desire
+51186,librarian bibliothec,a professional person trained in library science and engaged in library services
+51187,librarianship,the position of librarian
+51188,library,a collection of literary documents or records kept for reference or borrowing
+51189,library,a building that houses a collection of books and other materials
+51190,library,a room where books are kept; "they had brandy in the library"
+51191,library depository_library,a depository built to contain books and other materials for reading and study
+51192,library program_library subroutine_library,(computing) a collection of standard programs and subroutines that are stored and available for immediate use
+51193,library_card borrower's_card,a card certifying the bearer's right to use the library
+51194,library_catalog library_catalogue,an enumeration of all the resources of a library
+51195,library_fine,fine imposed by a library on books that overdue when returned
+51196,library_program,a program in a program library
+51197,library_routine,a debugged routine that is maintained in a program library
+51198,library_science,the study of the principles and practices of library administration
+51199,libration,(astronomy) a real or apparent slow oscillation of a moon or satellite; "the libration of the moon"
+51200,librettist,author of words to be set to music in an opera or operetta
+51201,libretto,the words of an opera or musical play
+51202,license licence,excessive freedom; lack of due restraint; "when liberty becomes license dictatorship is near"- Will Durant; "the intolerable license with which the newspapers break...the rules of decorum"- Edmund Burke
+51203,license licence,freedom to deviate deliberately from normally applicable rules or practices (especially in behavior or speech)
+51204,license licence permit,a legal document giving official permission to do something
+51205,license permission permit,the act of giving a formal (usually written) authorization
+51206,license_number registration_number,the number on the license plate that identifies the car that bears it
+51207,license_plate numberplate,a plate mounted on the front and back of car and bearing the car's registration number
+51208,licensed_practical_nurse LPN practical_nurse,a nurse who has enough training to be licensed by a state to provide routine care for the sick
+51209,licensee,someone to whom a license is granted
+51210,licenser,an official who can issue a license or give authoritative permission (especially one who licenses publications)
+51211,licensing_agreement,contract giving someone the legal right to use a patent or trademark
+51212,licensing_fee license_fee license_tax,a fee paid to the government for the privilege of being licensed to do something (as selling liquor or practicing medicine)
+51213,licentiate,holds a license (degree) from a (European) university
+51214,licentiousness wantonness,the quality of being lewd and lascivious
+51215,lichen,any of several eruptive skin diseases characterized by hard thick lesions grouped together and resembling lichens growing on rocks
+51216,lichen,any thallophytic plant of the division Lichenes; occur as crusty patches or bushy growths on tree trunks or rocks or bare ground etc.
+51217,lichen_planus lichen_ruber_planus,an eruption of shiny flat-topped purplish (usually itchy) papules on the wrist and forearms and thighs
+51218,lichtenoid_eczema chronic_eczema eczema_hypertrophicum,eczema characterized by thickening of the skin with accentuated skin lines
+51219,licitness,the quality of strictly conforming to law
+51220,lick lap,touching with the tongue; "the dog's laps were warm and wet"
+51221,licorice liquorice,a black candy flavored with the dried root of the licorice plant
+51222,licorice liquorice Glycyrrhiza_glabra,deep-rooted coarse-textured plant native to the Mediterranean region having blue flowers and pinnately compound leaves; widely cultivated in Europe for its long thick sweet roots
+51223,licorice_fern Polypodium_glycyrrhiza,fern having rootstock of a sweetish flavor
+51224,licorice_root,root of licorice used in flavoring e.g. candy and liqueurs and medicines
+51225,lid,a movable top or cover (hinged or separate) for closing the opening at the top of a box, chest, jar, pan, etc.; "he raised the piano lid"
+51226,lidar,a measuring system that detects and locates objects on the same principle as radar but uses light from a laser; a potential technology for detecting air turbulence that can affect aircraft
+51227,lido,a recreational facility including a swimming pool for water sports
+51228,lido_deck,an open deck including a swimming pool
+51229,lie,position or manner in which something is situated
+51230,lie prevarication,a statement that deviates from or perverts the truth
+51231,lie-abed slugabed,a person who stays in bed until a relatively late hour
+51232,lie-in,a long stay in bed in the morning
+51233,lie_detector,a polygraph that records bodily changes sometimes associated with lying
+51234,liebfraumilch,a sweetened Rhenish wine (especially one from Hesse in western Germany)
+51235,lied,a German art song of the 19th century for voice and piano
+51236,lieder_singer,a singer of lieder
+51237,liege liege_lord,a feudal lord entitled to allegiance and service
+51238,lien,the right to take another's property if an obligation is not discharged
+51239,lienal_artery splenic_artery arteria_lienalis,an artery that originates from the celiac trunk and supplies blood to the spleen
+51240,lieutenancy,the position of a lieutenant
+51241,lieutenant,an officer holding a commissioned rank in the United States Navy or the United States Coast Guard; below lieutenant commander and above lieutenant junior grade
+51242,lieutenant,a commissioned military officer
+51243,lieutenant police_lieutenant,an officer in a police force
+51244,lieutenant_colonel light_colonel,a commissioned officer in the United States Army or Air Force or Marines holding a rank above major and below colonel
+51245,lieutenant_commander,a commissioned officer in the Navy ranking above a lieutenant and below a commander
+51246,lieutenant_general,a general officer ranking above a major general and below a full general
+51247,lieutenant_governor,an elected official serving as deputy to the governor of a state of the United States
+51248,lieutenant_junior_grade lieutenant_JG,an officer holding a commissioned rank in the United States Navy or United States Coast Guard; below lieutenant and above ensign
+51249,life,the period from the present until death; "he appointed himself emperor for life"
+51250,life,the period between birth and the present time; "I have known him all his life"
+51251,life,a characteristic state or mode of living; "social life"; "city life"; "real life"
+51252,life,the course of existence of an individual; the actions and events that occur in living; "he hoped for a new life in Australia"; "he wanted to live his own life without interference from others"; "get a life!" "he is trying to rebuild his life"
+51253,life,the organic phenomenon that distinguishes living organisms from nonliving ones; "there is no life on the moon"
+51254,life,a living person; "his heroism saved a life"
+51255,life,a motive for living; "pottery was his life"
+51256,life,living things collectively; "the oceans are teeming with life"
+51257,life lifetime life-time lifespan,the period during which something is functional (as between birth and death); "the battery had a short life"; "he lived a long and happy life"
+51258,life living,the experience of being alive; the course of human events and activities; "he could no longer cope with the complexities of life"
+51259,life-support_system life_support,equipment that makes life possible in otherwise deadly environmental conditions; "the astronauts relied on their life-support systems"
+51260,life-support_system life_support,medical equipment that assists or replaces important bodily functions and so enables a patient to live who otherwise might not survive; "the patient is on life support"
+51261,life_buoy lifesaver life_belt life_ring,a life preserver in the form of a ring of buoyant material
+51262,life_class,an art class using a live human model
+51263,life_cycle,the course of developmental changes in an organism from fertilized zygote to maturity when another zygote can be produced
+51264,life_cycle,a series of stages through which an organism passes between recurrences of a primary stage
+51265,life_estate estate_for_life,(law) an estate whose duration is limited to the life of the person holding it
+51266,life_expectancy,an expected time to live as calculated on the basis of statistical probabilities
+51267,life_force vital_force vitality elan_vital,(biology) a hypothetical force (not physical or chemical) once thought by Henri Bergson to cause the evolution and development of organisms
+51268,life_form,the characteristic bodily form of a mature organism
+51269,life_imprisonment,a sentence of imprisonment until death
+51270,life_insurance life_assurance,insurance paid to named beneficiaries when the insured person dies; "in England they call life insurance life assurance"
+51271,life_jacket life_vest cork_jacket,life preserver consisting of a sleeveless jacket of buoyant or inflatable design
+51272,life_mask,a cast taken from the face of a living person
+51273,life_office,life assurance office
+51274,life_peer,a British peer whose title lapses at death
+51275,life_preserver preserver flotation_device,rescue equipment consisting of a buoyant belt or jacket to keep a person from drowning
+51276,life_raft Carling_float,a raft to use if a ship must be abandoned in an emergency
+51277,life_science bioscience,any of the branches of natural science dealing with the structure and behavior of living organisms
+51278,life_sentence life,a prison term lasting as long as the prisoner lives; "he got life for killing the guard"
+51279,life_style life-style lifestyle modus_vivendi,a manner of living that reflects the person's values and attitudes
+51280,life_tenant,a tenant whose legal right to retain possession of buildings or lands lasts as long as they (or some other person) live
+51281,lifeblood,the blood considered as the seat of vitality
+51282,lifeblood,an essential or life-giving force; "water is the lifeblood of India"
+51283,lifeboat,a strong sea boat designed to rescue people from a sinking ship
+51284,lifeguard lifesaver,an attendant employed at a beach or pool to protect swimmers from accidents
+51285,lifeline,support that enables people to survive or to continue doing something (often by providing an essential connection); "the airlift provided a lifeline for Berlin"; "she offered me a lifeline in my time of grief"
+51286,lifeline,line that raises or lowers a deep-sea diver
+51287,lifeline,line thrown from a vessel that people can cling to in order to save themselves from drowning
+51288,lifer,a prisoner serving a term of life imprisonment
+51289,lifesaving,saving the lives of drowning persons; "he took a course in lifesaving"
+51290,lifework,the principal work of your career
+51291,lift,a device worn in a shoe or boot to make the wearer look taller or to correct a shortened leg
+51292,lift,one of the layers forming the heel of a shoe or boot
+51293,lift,the act of giving temporary assistance
+51294,lift,a ride in a car; "he gave me a lift home"
+51295,lift raise heave,the act of raising something; "he responded with a lift of his eyebrow"; "fireman learn several different raises for getting ladders up"
+51296,lift rise,a wave that lifts the surface of the water or ground
+51297,lift_pump,pump used to lift rather than force a liquid up
+51298,lifting_device,a device for lifting heavy loads
+51299,liftoff,the initial ascent of a rocket from its launching pad
+51300,ligament,a sheet or band of tough fibrous tissue connecting bones or cartilages or supporting muscles or organs
+51301,ligament,any connection or unifying bond
+51302,ligand,a substance (an atom or molecule or radical or ion) that forms a complex around a central atom
+51303,ligation,(surgery) tying a duct or blood vessel with a ligature (as to prevent bleeding during surgery)
+51304,ligature,(music) a group of notes connected by a slur
+51305,ligature,character consisting of two or more letters combined into one
+51306,ligature,a metal band used to attach a reed to the mouthpiece of a clarinet or saxophone
+51307,ligature,thread used by surgeons to bind a vessel (as to constrict the flow of blood)
+51308,liger,offspring of a male lion and a female tiger
+51309,light,a person regarded very fondly; "the light of my life"
+51310,light,an illuminated area; "he stepped into the light"
+51311,light,a visual warning signal; "they saw the light of the beacon"; "there was a light at every corner"
+51312,light,a particular perspective or aspect of a situation; "although he saw it in a different light, he still did not understand"
+51313,light,mental understanding as an enlightening experience; "he finally saw the light"; "can you shed light on this problem?"
+51314,light,public awareness; "it brought the scandal to light"
+51315,light illumination,a condition of spiritual awareness; divine illumination; "follow God's light"
+51316,light light_source,any device serving as a source of illumination; "he stopped the car and turned off the lights"
+51317,light lighting,having abundant light or illumination; "they played as long as it was light"; "as long as the lighting was good"
+51318,light lightness,the visual effect of illumination on objects or scenes as created in pictures; "he could paint the lightest light and the darkest dark"
+51319,light visible_light visible_radiation,(physics) electromagnetic radiation that can produce a visual sensation; "the light was filtered through a soft glass window"
+51320,light-emitting_diode LED,diode such that light emitted at a p-n junction is proportional to the bias current; color depends on the material used
+51321,light-o'-love light-of-love,a woman inconstant in love
+51322,light_adaptation,the process of adjusting the eyes to relatively high levels of illumination; the pupil constricts and the cones system is operative
+51323,light_air,wind moving 1-3 knots; 1 on the Beaufort scale
+51324,light_arm,a rifle or pistol
+51325,light_beer,lager with reduced alcohol content
+51326,light_breeze,wind moving 4-7 knots; 2 on the Beaufort scale
+51327,light_brown,a brown that is light but unsaturated
+51328,light_bulb lightbulb bulb incandescent_lamp electric_light electric-light_bulb,electric lamp consisting of a transparent or translucent glass housing containing a wire filament (usually tungsten) that emits light when heated by electricity
+51329,light_circuit lighting_circuit,wiring that provides power to electric lights
+51330,light_cream coffee_cream single_cream,cream that has at least 18% butterfat; "in England they call light cream `single cream'"
+51331,light_diet,diet prescribed for bedridden or convalescent people; does not include fried or highly seasoned foods
+51332,light_filter diffusing_screen,a transparent filter that reduces the light (or some wavelengths of the light) passing through it
+51333,light_flyweight,an amateur boxer who weighs no more than 106 pounds
+51334,light_heavyweight,an amateur boxer who weighs no more than 179 pounds
+51335,light_heavyweight,a wrestler who weighs 192-214 pounds
+51336,light_heavyweight cruiserweight,a professional boxer who weighs between 169 and 175 pounds
+51337,light_hour,the distance light travels in a vacuum in one hour; approximately one billion kilometers
+51338,light_machine_gun,a submachine gun not greater than .30 millimeter
+51339,light_meter exposure_meter photometer,photographic equipment that measures the intensity of light
+51340,light_microscope,microscope consisting of an optical instrument that magnifies the image of an object
+51341,light_middleweight,an amateur boxer who weighs no more than 156 pounds
+51342,light_minute,the distance light travels in a vacuum in one minute; approximately 18 million kilometers
+51343,light_pen electronic_stylus,(computer science) a pointer that when pointed at a computer display senses whether or not the spot is illuminated
+51344,light_reaction,the first stage of photosynthesis during which energy from light is used for the production of ATP
+51345,light_reflex pupillary_reflex miosis myosis,reflex contraction of the sphincter muscle of the iris in response to a bright light (or certain drugs) causing the pupil to become smaller
+51346,light_second,the distance light travels in a vacuum in one second; approximately 300,000 kilometers
+51347,light_show,a display of colored lights moving in shifting patterns
+51348,light_time,distance measured in terms of the speed of light (or radio waves); "the light time from Jupiter to the sun is approximately 43 minutes"
+51349,light_unit,a measure of the visible electromagnetic radiation
+51350,light_welterweight,an amateur boxer who weighs no more than 140 pounds
+51351,light_year light-year,the distance that light travels in a vacuum in 1 year; 5.88 trillion miles or 9.46 trillion kilometers
+51352,lightening,descent of the uterus into the pelvic cavity that occurs late in pregnancy; the fetus is said to have dropped
+51353,lighter light igniter ignitor,a device for lighting or igniting fuel or charges or fires; "do you have a light?"
+51354,lighter-than-air_craft,aircraft supported by its own buoyancy
+51355,lighterage,the fee charged for carrying goods in lighters
+51356,lighterage,the transportation of goods on a lighter
+51357,lighterman bargeman bargee,someone who operates a barge
+51358,lightheadedness,a frivolous lack of prudence
+51359,lighthouse_keeper,the keeper of a lighthouse
+51360,lighting,apparatus for supplying artificial light effects for the stage or a film
+51361,lighting,the craft of providing artificial light; "an interior decorator must understand lighting"
+51362,lighting_fixture,a fixture providing artificial light
+51363,lighting_industry,an industry devoted to manufacturing and selling and installing lighting
+51364,lightness,having a light color
+51365,lightness weightlessness,the property of being comparatively small in weight; "the lightness of balsa wood"
+51366,lightning,abrupt electric discharge from cloud to cloud or from cloud to earth accompanied by the emission of light
+51367,lightning,the flash of light that accompanies an electric discharge in the atmosphere (or something resembling such a flash); can scintillate for a second or more
+51368,lightning_rod,someone who is a frequent target of negative reactions and serves to distract attention from another
+51369,lightning_rod lightning_conductor,a metallic conductor that is attached to a high point and leads to the ground; protects the building from destruction by lightning
+51370,lights-out,a prescribed bedtime
+51371,lightship,a ship equipped like a lighthouse and anchored where a permanent lighthouse would be impracticable
+51372,lightsomeness lightness,the trait of being lighthearted and frivolous
+51373,lightweight,an amateur boxer who weighs no more than 132 pounds
+51374,lightweight,a wrestler who weighs 139-154 pounds
+51375,lightweight,a professional boxer who weighs between 131 and 135 pounds
+51376,lightwood Acacia_melanoxylon,tall Australian acacia yielding highly valued black timber
+51377,ligne,a linear unit (1/40 inch) used to measure diameter of buttons
+51378,lignin,a complex polymer; the chief constituent of wood other than carbohydrates; binds to cellulose fibers to harden and strengthen cell walls of plants
+51379,lignite brown_coal wood_coal,intermediate between peat and bituminous coal
+51380,lignosae,a category in some early taxonomies
+51381,lignum,woody tissue
+51382,lignum_vitae Guaiacum_officinale,small evergreen tree of Caribbean and southern Central America to northern South America; a source of lignum vitae wood, hardest of commercial timbers, and a medicinal resin
+51383,lignum_vitae guaiac guaiacum,hard greenish-brown wood of the lignum vitae tree and other trees of the genus Guaiacum
+51384,ligule,(botany) any appendage to a plant that is shaped like a strap
+51385,like ilk,a kind of person; "We'll not see his like again"; "I can't tolerate people of his ilk"
+51386,like the_like the_likes_of,a similar kind; "dogs, foxes, and the like"; "we don't want the likes of you around here"
+51387,likelihood likeliness,the probability of a specified outcome
+51388,likeness alikeness similitude,similarity in appearance or character or nature between persons or things; "man created God in his own likeness"
+51389,likeness semblance,picture consisting of a graphic image of a person or thing
+51390,likening,the act of comparing similarities
+51391,liking,a feeling of pleasure and enjoyment; "I've always had a liking for reading"; "she developed a liking for gin"
+51392,likuta,100 makuta equal 1 zaire in Zaire
+51393,lilac,any of various plants of the genus Syringa having large panicles of usually fragrant flowers
+51394,lilangeni,the basic unit of money in Swaziland; equal to 100 cents
+51395,liliaceous_plant,plant growing from a bulb or corm or rhizome or tuber
+51396,liliid_monocot_family,family of monocotyledonous plants of the subclass Liliidae; mostly herbs usually with petaloid sepals and petals and compound pistils
+51397,liliid_monocot_genus,genus of monocotyledonous plants comprising mostly herbs having usually petaloid sepals and petals and compound pistils
+51398,lilliputian,a very small person (resembling a Lilliputian)
+51399,lilt swing,a jaunty rhythm in music
+51400,lily,any liliaceous plant of the genus Lilium having showy pendulous flowers
+51401,lily_of_the_valley May_lily Convallaria_majalis,low-growing perennial plant having usually two large oblong lanceolate leaves and a raceme of small fragrant nodding bell-shaped flowers followed by scarlet berries
+51402,lily_pad,floating leaves of a water lily
+51403,lilyturf lily_turf Liriope_muscari,Asiatic perennial tufted herb with grasslike evergreen foliage and clusters of dark mauve grapelike flowers; grown as ground cover
+51404,lima_bean,broad flat beans simmered gently; never eaten raw
+51405,lima_bean lima_bean_plant Phaseolus_limensis,bush or tall-growing bean plant having large flat edible seeds
+51406,liman,a long narrow lagoon near the mouth of a river
+51407,limb,(astronomy) the circumferential edge of the apparent disc of the sun or the moon or a planet
+51408,limb,one of the jointed appendages of an animal used for locomotion or grasping: arm; leg; wing; flipper
+51409,limb,either of the two halves of a bow from handle to tip; "the upper limb of the bow"
+51410,limb,the graduated arc that is attached to an instrument for measuring angles; "the limb of the sextant"
+51411,limb tree_branch,any of the main branches arising from the trunk or a bough of a tree
+51412,limb-girdle_muscular_dystrophy,an autosomal recessive form of muscular dystrophy that appears anywhere from late childhood to middle age; characterized by progressive muscular weakness beginning either in the shoulder or pelvic girdle; usually progresses slowly with cardiopulmonary complications in the later stages
+51413,limber,a two-wheeled horse-drawn vehicle used to pull a field gun or caisson
+51414,limber_pine Pinus_flexilis,western North American pine with long needles and very flexible limbs and dark-grey furrowed bark
+51415,limbers,a channel or gutter on either side of a ship's keelson; carries bilge water into the pump well
+51416,limbic_system visceral_brain limbic_brain,a system of functionally related neural structures in the brain that are involved in emotional behavior
+51417,limbo,an imaginary place for lost or neglected things
+51418,limbo,(theology) in Roman Catholicism, the place of unbaptized but innocent or righteous souls (such as infants and virtuous individuals)
+51419,limbus,a border or edge of any of various body parts distinguished by color or structure
+51420,lime,the green acidic fruit of any of various lime trees
+51421,lime lime_tree Citrus_aurantifolia,any of various related trees bearing limes
+51422,lime_juice,usually freshly squeezed juice of limes
+51423,limeade,sweetened beverage of lime juice and water
+51424,limekiln,a kiln used to reduce naturally occurring forms of calcium carbonate to lime
+51425,limelight calcium_light,a lamp consisting of a flame directed at a cylinder of lime with a lens to concentrate the light; formerly used for stage lighting
+51426,limelight spotlight glare public_eye,a focus of public attention; "he enjoyed being in the limelight"; "when Congress investigates it brings the full glare of publicity to the agency"
+51427,limerick,a humorous verse form of 5 anapestic lines with a rhyme scheme aabba
+51428,limestone,a sedimentary rock consisting mainly of calcium that was deposited by the remains of marine animals
+51429,limestone_fern northern_oak_fern Gymnocarpium_robertianum,yellow-green fern of rocky areas of northern hemisphere
+51430,limestone_salamander Hydromantes_brunus,similar to Shasta salamander; lives in cliff crevices and taluses
+51431,limewater,solution of calcium hydroxide in water used as an antacid
+51432,limey John_Bull,a man of English descent
+51433,limit,as far as something can go
+51434,limit bound boundary,the greatest possible degree of something; "what he did was beyond the bounds of acceptable behavior"; "to the limit of his ability"
+51435,limit demarcation demarcation_line,the boundary of a specific area
+51436,limit limit_point point_of_accumulation,the mathematical value toward which a function goes as the independent variable approaches infinity
+51437,limit limitation,the greatest amount of something that is possible or allowed; "there are limits on the amount you can bet"; "it is growing rapidly with no limitation in sight"
+51438,limitation,(law) a time period after which suits cannot be brought; "statute of limitations"
+51439,limitation,the quality of being limited or restricted; "it is a good plan but it has serious limitations"
+51440,limitation restriction,an act of limiting or restricting (as by regulation)
+51441,limited_audit,an audit of limited scope (limited in time span or confined to particular accounts etc.)
+51442,limited_company Ltd. Ld.,a company that is organized to give its owners limited liability
+51443,limited_edition,an edition that is restricted to a specific number of copies
+51444,limited_liability,the liability of a firm's owners for no more than the capital they have invested in the firm
+51445,limited_war,a war whose objective is less than the unconditional defeat of the enemy
+51446,limiter clipper,(electronics) a nonlinear electronic circuit whose output is limited in amplitude; used to limit the instantaneous amplitude of a waveform (to clip off the peaks of a waveform); "a limiter introduces amplitude distortion"
+51447,limnologist,a specialist in the study of freshwater ponds and lakes
+51448,limnology,the scientific study of bodies of fresh water for their biological and physical and geological properties
+51449,limonene,a liquid terpene with a lemon odor; found in lemons and oranges and other essential oils
+51450,limonite,a widely occurring iron oxide ore; a mixture of goethite and hematite and lepidocrocite
+51451,limousine limo,large luxurious car; usually driven by a chauffeur
+51452,limpa,a rye bread made with molasses or brown sugar
+51453,limpet,mollusk with a low conical shell
+51454,limpet,any of various usually marine gastropods with low conical shells; found clinging to rocks in littoral areas
+51455,limpkin Aramus_pictus,wading bird of Florida, Cuba and Jamaica having a drooping bill and a distinctive wailing call
+51456,linage lineage,the number of lines in a piece of printed material
+51457,linage lineage,a rate of payment for written material that is measured according to the number of lines submitted
+51458,linalool,a colorless fragrant liquid found in many essential oils
+51459,linchpin lynchpin,pin inserted through an axletree to hold a wheel on
+51460,lincomycin Lincocin,antibiotic (trade name Lincocin) obtained from a streptomyces bacterium and used in the treatment of certain penicillin-resistant infections
+51461,lindane,a white crystalline powder used as an agricultural insecticide
+51462,linden linden_tree basswood lime lime_tree,any of various deciduous trees of the genus Tilia with heart-shaped leaves and drooping cymose clusters of yellowish often fragrant flowers; several yield valuable timber
+51463,lindy lindy_hop,an energetic American dance that was popular in the 1930s (probably named for the aviator Charles Lindbergh)
+51464,line,a length (straight or curved) without breadth or thickness; the trace of a moving point
+51465,line,a single frequency (or very narrow band) of radiation in a spectrum
+51466,line,a fortified position (especially one marking the most forward position of troops); "they attacked the enemy's line"
+51467,line,in games or sports; a mark indicating positions or bounds of the playing area
+51468,line,a spatial location defined by a real or imaginary unidimensional extent
+51469,line,a formation of people or things one beside another; "the line of soldiers advanced with their bayonets fixed"; "they were arrayed in line of battle"; "the cast stood in line for the curtain call"
+51470,line,a formation of people or things one behind another; "the line stretched clear around the corner"; "you must wait in a long line at the checkout counter"
+51471,line,persuasive but insincere talk that is usually intended to deceive or impress; "`let me show you my etchings' is a rather worn line"; "he has a smooth line but I didn't fall for it"; "that salesman must have practiced his fast line of talk"
+51472,line,text consisting of a row of words written across a page or computer screen; "the letter consisted of three short lines"; "there are six lines in every stanza"
+51473,line,a mark that is long relative to its width; "He drew a line on the chart"
+51474,line,a commercial organization serving as a common carrier
+51475,line,something (as a cord or rope) that is long and thin and flexible; "a washing line"
+51476,line,acting in conformity; "in line with"; "he got out of line"; "toe the line"
+51477,line dividing_line demarcation contrast,a conceptual separation or distinction; "there is a narrow line between sanity and insanity"
+51478,line product_line line_of_products line_of_merchandise business_line line_of_business,a particular kind of product or merchandise; "a nice line of shoes"
+51479,line railway_line rail_line,the road consisting of railroad track and roadbed
+51480,line-drive_double line_double,a double resulting from a line drive
+51481,line-drive_single line_single,a single resulting from a line drive
+51482,line-drive_triple line_triple,a triple resulting from a line drive
+51483,line_coach,an assistant football coach in charge of the linemen
+51484,line_feed,the operation that prepares for the next character to be printed or displayed on the next line
+51485,line_item,an item in an appropriation bill; "Some governors can veto line items in their state budgets"
+51486,line_judge,football official who assists the referee by keeping track of the official time during the game
+51487,line_management,administration of the activities contributing directly to an organization's output
+51488,line_of_battle,a line formed by troops or ships prepared to deliver or receive an attack
+51489,line_of_defense line_of_defence,any organization whose responsibility it is to defend against something; "police are the major line of defense against crime"
+51490,line_of_defense line_of_defence,defensive structure consisting of a barrier that can be employed for defense against attack
+51491,line_of_duty,all that is normally required in some area of responsibility
+51492,line_of_fate line_of_destiny line_of_Saturn,a crease on the palm; palmists say it indicates how successful you will be
+51493,line_of_fire,the path of a missile discharged from a firearm
+51494,line_of_flight,the path along which a freely moving object travels through the air
+51495,line_of_force field_line,an imaginary line in a field of force; direction of the line at any point is the direction of the force at that point
+51496,line_of_heart heart_line love_line mensal_line,a crease on the palm; palmists say it indicates your emotional nature
+51497,line_of_inquiry line_of_questioning,an ordering of questions so as to develop a particular argument
+51498,line_of_least_resistance path_of_least_resistance,the easiest way; "In marrying him she simply took the path of least resistance"
+51499,line_of_life life_line lifeline,a crease on the palm; its length is said by palmists to indicate how long you will live
+51500,line_of_march,the route along which a column advances
+51501,line_of_march,the arrangement of people in a line for marching
+51502,line_of_poetry line_of_verse,a single line of words in a poem
+51503,line_of_sight line_of_vision,an imaginary straight line along which an observer looks
+51504,line_of_succession,the order in which individuals are expected to succeed one another in some official position
+51505,line_of_thought,a particular way of thinking that is characteristic of some individual or group
+51506,line_officer,a commissioned officer with combat units (not a staff officer or a supply officer)
+51507,line_organization line_organisation,the organizational structure of activities contributing directly to the organization's output
+51508,line_personnel,personnel having direct job performance responsibilities
+51509,line_printer line-at-a-time_printer,printer that serves as an output device on a computer; prints a whole line of characters at a time
+51510,line_score,a summary of the scoring in a game (usually in tabular form)
+51511,line_spectrum,a spectrum in which energy is concentrated at particular wavelengths; produced by excited atoms and ions as they fall back to a lower energy level
+51512,line_squall,a squall advancing along a front that forms a definite line
+51513,line_storm equinoctial_storm,a violent rainstorm near the time of an equinox
+51514,line_worker,an employee who works on an assembly line
+51515,lineage line line_of_descent descent bloodline blood_line blood pedigree ancestry origin parentage stemma stock,the descendants of one individual; "his entire lineage has been warriors"
+51516,linear_accelerator linac,ions are accelerated along a linear path by voltage differences on electrodes along the path
+51517,linear_algebra,the part of algebra that deals with the theory of linear equations and linear transformation
+51518,linear_equation,a polynomial equation of the first degree
+51519,linear_leaf elongate_leaf,a long slender leaf
+51520,linear_operator,an operator that obeys the distributive law: A(f+g) = Af + Ag (where f and g are functions)
+51521,linear_programming,a mathematical technique used in economics; finds the maximum or minimum of linear functions in many variables subject to constraints
+51522,linear_regression rectilinear_regression,the relation between variables when the regression equation is linear: e.g., y = ax + b
+51523,linear_unit linear_measure,a unit of measurement of length
+51524,lineation,the act of marking or outlining with lines
+51525,linebacker line_backer,a defensive football player who takes a position close behind the linemen
+51526,linebacker line_backer,(American football) the position of a defensive football player who plays close behind the line of scrimmage
+51527,linecut line_block line_engraving,engraving consisting of a block that has been etched or engraved
+51528,linecut line_engraving,a print obtained from a line drawing
+51529,lined_snake Tropidoclonion_lineatum,secretive snake of city dumps and parks as well as prairies and open woods; feeds on earthworms; of central United States
+51530,lineman,the surveyor who marks positions with a range pole
+51531,lineman,one of the players on the line of scrimmage
+51532,lineman,(American football) the position of a player on a football team who is stationed on the line of scrimmage
+51533,linemen,the football players who line up on the line of scrimmage
+51534,linen,a fabric woven with fibers from the flax plant
+51535,linen,white goods or clothing made with linen cloth
+51536,linen linen_paper,a high-quality paper made of linen fibers or with a linen finish
+51537,linendraper,a retail dealer in yard goods
+51538,liner line_drive,(baseball) a hit that flies straight out from the batter; "the batter hit a liner to the shortstop"
+51539,liner lining,a piece of cloth that is used as the inside surface of a garment
+51540,liner ocean_liner,a large commercial ship (especially one that carries passengers on a regular schedule)
+51541,linesman,official (in tennis, soccer, football, etc.) who assists the referee in some way (especially by watching for out of bounds or offside)
+51542,lineup,the schedule of programs for a particular period; "the network's fall lineup"
+51543,lineup police_lineup identity_parade,a line of persons arranged by police for inspection or identification
+51544,ling,American hakes
+51545,ling Molva_molva,elongated marine food fish of Greenland and northern Europe; often salted and dried
+51546,ling ling_ko Trapa_bicornis,water chestnut whose spiny fruit has two rather than 4 prongs
+51547,lingam,the Hindu phallic symbol of Siva
+51548,lingcod,the lean flesh of a fish caught off the Pacific coast of the United States
+51549,lingcod Ophiodon_elongatus,food fish of the northern Pacific related to greenlings
+51550,lingerie intimate_apparel,women's underwear and nightclothes
+51551,lingonberry mountain_cranberry cowberry lowbush_cranberry,tart red berries similar to American cranberries but smaller
+51552,lingua_franca interlanguage koine,a common language used by speakers of different languages; "Koine is a dialect of ancient Greek that was the lingua franca of the empire of Alexander the Great and was widely spoken throughout the eastern Mediterranean area in Roman times"
+51553,lingual,a consonant that is produced with the tongue and other speech organs
+51554,lingual_artery arteria_lingualis,an artery originating from the external carotid artery and supplying the under side of the tongue
+51555,lingual_vein vena_lingualis,a vein that receives blood from the tongue and the floor of the mouth and empties into the internal jugular or the facial vein
+51556,linguica,a highly seasoned Portuguese pork sausage flavored with garlic and onions
+51557,linguine linguini,pasta in long slender flat strips
+51558,linguist linguistic_scientist,a specialist in linguistics
+51559,linguist polyglot,a person who speaks more than one language
+51560,linguistic_competence,(linguistics) a speaker's implicit, internalized knowledge of the rules of their language (contrasted with linguistic performance)
+51561,linguistic_performance,(linguistics) a speaker's actual use of language in real situations; what the speaker actually says, including grammatical errors and other non-linguistic features such as hesitations and other disfluencies (contrasted with linguistic competence)
+51562,linguistic_process,a process involved in human language
+51563,linguistic_process language,the cognitive processes involved in producing and understanding linguistic communication; "he didn't have the language to express his feelings"
+51564,linguistic_profiling,using speech characteristics or dialect to identify a speaker's race or religion or social class
+51565,linguistic_relation,a relation between linguistic forms or constituents
+51566,linguistics,the scientific study of language
+51567,linguistics philology,the humanistic study of language and literature
+51568,linguistics_department department_of_linguistics,the academic department responsible for teaching and research in linguistics
+51569,liniment embrocation,a medicinal liquid that is rubbed into the skin to relieve muscular stiffness and pain
+51570,linin,an obsolete term for the network of viscous material in the cell nucleus on which the chromatin granules were thought to be suspended
+51571,lining,the act of attaching an inside lining (to a garment or curtain etc.)
+51572,lining facing,providing something with a surface of a different material
+51573,lining liner,a protective covering that protects an inside surface
+51574,link,a unit of length equal to 1/100 of a chain
+51575,link,(computing) an instruction that connects one part of a program or an element on a list to another program or list
+51576,link data_link,an interconnecting circuit between two or more locations for the purpose of transmitting and receiving data
+51577,link linkup tie tie-in,a fastener that serves to join or connect; "the walls are held together with metal links placed in the wet mortar during construction"
+51578,link nexus,the means of connection between things linked in series
+51579,linkage,an associative relation
+51580,linkage,a mechanical system of rods or springs or pivots that transmits power or motion
+51581,linkage,the act of linking things together
+51582,linkage gene_linkage,(genetics) traits that tend to be inherited together as a consequence of an association between their genes; all of the genes of a given chromosome are linked (where one goes they all go)
+51583,linkage_editor,an editor program that creates one module from several by resolving cross-references among the modules
+51584,linkage_group linked_genes,any pair of genes that tend to be transmitted together; "the genes of Drosophila fall into four linkage groups"
+51585,linkboy linkman,(formerly) an attendant hired to carry a torch for pedestrians in dark streets
+51586,links golf_links,a golf course that is built on sandy ground near a shore
+51587,linnet lintwhite Carduelis_cannabina,small Old World finch whose male has a red breast and forehead
+51588,linocut,a print that is made from a design carved in relief into a block of linoleum
+51589,linocut,a design carved in relief into a block of linoleum
+51590,linoleic_acid linolic_acid,a liquid polyunsaturated fatty acid abundant in plant fats and oils; a fatty acid essential for nutrition; used to make soap
+51591,linolenic_acid,a liquid polyunsaturated fatty acid that occurs in some plant oils; an essential fatty acid
+51592,linoleum lino,a floor covering
+51593,linoleum_knife linoleum_cutter,a knife having a short stiff blade with a curved point used for cutting linoleum
+51594,linseed flaxseed,the seed of flax used as a source of oil
+51595,linseed_oil flaxseed_oil,a drying oil extracted from flax seed and used in making such things as oil paints
+51596,linsey-woolsey,a rough fabric of linen warp and wool or cotton woof
+51597,linstock,a stick about a meter long with a point on one end (to stick in the ground) and a forked head on the other end (to hold a lighted match); formerly used to fire cannons
+51598,lint,fine ravellings of cotton or linen fibers
+51599,lint,cotton or linen fabric with the nap raised on one side; used to dress wounds
+51600,linuron,a herbicide that kills weeds without harming vegetables
+51601,lion king_of_beasts Panthera_leo,large gregarious predatory feline of Africa and India having a tawny coat with a shaggy mane in the male
+51602,lion social_lion,a celebrity who is lionized (much sought after)
+51603,lion's-ear Leonotis_nepetaefolia Leonotis_nepetifolia,pantropical herb having whorls of striking lipped flowers; naturalized in United States
+51604,lion's_foot gall_of_the_earth Nabalus_serpentarius Prenanthes_serpentaria,common perennial herb widely distributed in the southern and eastern United States having drooping clusters of pinkish flowers and thick basal leaves suggesting a lion's foot in shape; sometimes placed in genus Prenanthes
+51605,lion-hunter,someone who tries to attract social lions as guests
+51606,lion-hunter,someone who hunts lions
+51607,lion-jaw_forceps,a type of forceps
+51608,lion_cub,a young lion
+51609,lioness,a female lion
+51610,lionet,a small or young lion
+51611,lionfish,brightly striped fish of the tropical Pacific having elongated spiny fins
+51612,lip,(botany) either of the two parts of a bilabiate corolla or calyx
+51613,lip,either of two fleshy folds of tissue that surround the mouth and play a role in speaking
+51614,lip,either the outer margin or the inner margin of the aperture of a gastropod's shell
+51615,lip-gloss,makeup that makes the lips shiny
+51616,lip_balm,a balm applied to the lips
+51617,lip_fern lipfern,any of various terrestrial ferns of the genus Cheilanthes; cosmopolitan in arid and semiarid temperate or tropical regions
+51618,lip_reader,someone who can understand spoken words by watching the movements of a speaker's lips
+51619,lip_synchronization lip_synchronisation lip_synch lip_sync,combining audio and video recording in such a way that the sound is perfectly synchronized with the action that produced it; especially synchronizing the movements of a speaker's lips with the sound of his speech
+51620,liparis,an orchid of the genus Liparis having few leaves and usually fairly small yellow-green or dull purple flowers in terminal racemes
+51621,lipase,an enzyme secreted in the digestive tract that catalyzes the breakdown of fats into individual fatty acids that can be absorbed into the bloodstream
+51622,lipectomy selective_lipectomy,plastic surgery involving the breakdown and removal of fatty tissue
+51623,lipemia lipaemia lipidemia lipidaemia lipoidemia lipoidaemia hyperlipemia hyperlipaemia hyperlipidemia hyperlipidaemia hyperlipoidemia hyperlipoidaemia,presence of excess lipids in the blood
+51624,lipid lipide lipoid,an oily organic compound insoluble in water but soluble in organic solvents; essential structural component of living cells (along with proteins and carbohydrates)
+51625,lipid-lowering_medicine lipid-lowering_medication statin_drug statin,a medicine that lowers blood cholesterol levels by inhibiting HMG-CoA reductase
+51626,lipidosis,a disorder of lipid metabolism; abnormal levels of certain fats accumulate in the body
+51627,lipogram,a text that excludes a particular letter or particular letters of the alphabet
+51628,lipoma adipose_tumor,a tumor consisting of fatty tissue
+51629,lipomatosis,pathology in which fat accumulates in lipomas in the body
+51630,lipoprotein,a conjugated protein having a lipid component; the principal means for transporting lipids in the blood
+51631,liposarcoma,sarcoma of fat cells
+51632,liposomal_delivery_vector,a transducing vector that uses liposomes to carry the gene of interest
+51633,liposome,an artificially made microscopic vesicle into which nucleic acids can be packaged; used in molecular biology as a transducing vector
+51634,liposuction suction_lipectomy,lipectomy (especially for cosmetic purposes) in which excess fatty tissue is removed from under the skin by suction
+51635,lipreading,perceiving what a person is saying by observing the movements of the lips
+51636,lipstick lip_rouge,makeup that is used to color the lips
+51637,lipstick_plant Aeschynanthus_radicans,epiphyte or creeping on rocks; Malaysian plant having somewhat fleshy leaves and bright red flowers
+51638,liquefaction,the conversion of a solid or a gas into a liquid
+51639,liquefied_petroleum_gas bottled_gas,hydrocarbon gases, usually propane or butane, kept under pressure
+51640,liqueur cordial,strong highly flavored sweet liquor usually drunk after a meal
+51641,liqueur_glass,a small glass for serving a small amount of liqueur (typically after dinner)
+51642,liquid,a substance that is liquid at room temperature and pressure
+51643,liquid,fluid matter having no fixed shape but a fixed volume
+51644,liquid,a frictionless continuant that is not a nasal consonant (especially `l' and `r')
+51645,liquid liquidness liquidity liquid_state,the state in which a substance exhibits a characteristic readiness to flow with little or no tendency to disperse and relatively high incompressibility
+51646,liquid_air,air in a liquid state
+51647,liquid_assets current_assets quick_assets,assets in the form of cash (or easily convertible into cash)
+51648,liquid_bleach,a solution containing bleaching agents; used for laundry
+51649,liquid_body_substance bodily_fluid body_fluid humor humour,the liquid parts of the body
+51650,liquid_crystal,a liquid exhibiting properties of a crystal that are not shown by ordinary liquids
+51651,liquid_crystal_display LCD,a digital display that uses liquid crystal cells that change reflectivity in an applied electric field; used for portable computer displays and watches etc.
+51652,liquid_detergent,a detergent in liquid form
+51653,liquid_diet,a diet of foods that can be served in liquid or strained form (plus custards or puddings); prescribed after certain kinds of surgery
+51654,liquid_metal_reactor,a nuclear reactor using liquid metal as a coolant
+51655,liquid_nitrogen,nitrogen in a liquid state
+51656,liquid_oxygen LOX,a bluish translucent magnetic liquid obtained by compressing gaseous oxygen and then cooling it below its boiling point; used as an oxidizer in rocket propellants
+51657,liquid_soap,soap in liquid form
+51658,liquid_unit liquid_measure,a unit of capacity for liquids (for measuring the volumes of liquids or their containers)
+51659,liquidambar,any tree of the genus Liquidambar
+51660,liquidation settlement,termination of a business operation by using its assets to discharge its liabilities
+51661,liquidator receiver,(law) a person (usually appointed by a court of law) who liquidates assets or preserves them for the benefit of affected parties
+51662,liquidity,being in cash or easily convertible to cash; debt paying ability
+51663,liquor,a liquid substance that is a solution (or emulsion or suspension) used or obtained in an industrial process; "waste liquors"
+51664,liquor pot_liquor pot_likker,the liquid in which vegetables or meat have be cooked
+51665,liquor spirits booze hard_drink hard_liquor John_Barleycorn strong_drink,an alcoholic beverage that is distilled rather than fermented
+51666,liquor_license liquor_licence,a license authorizing the holder to sell alcoholic beverages
+51667,lira Italian_lira,formerly the basic unit of money in Italy; equal to 100 centesimi
+51668,lira Maltese_lira,the basic unit of money on Malta; equal to 100 cents
+51669,lira Turkish_lira,the basic unit of money in Turkey
+51670,lis_pendens,a pending lawsuit
+51671,lisinopril Prinival Zestril,an ACE inhibiting drug (trade names Prinival or Zestril) administered as an antihypertensive and after heart attacks
+51672,lisle,a fabric woven with lisle thread
+51673,lisle lisle_thread,a strong tightly twisted cotton thread (usually made of long-staple cotton)
+51674,lisp,a speech defect that involves pronouncing `s' like voiceless `th' and `z' like voiced `th'
+51675,lisper,a speaker who lisps
+51676,lissomeness litheness suppleness,the gracefulness of a person or animal that is flexible and supple
+51677,list listing,a database containing an ordered array of items (names or topics)
+51678,list_price,the selling price of something as stated in a catalogue or price list; often subject to discounts; "I got it at 30% off the list price"
+51679,list_processing,processing data that is given in the form of chained lists
+51680,list_system scrutin_de_liste scrutin_de_liste_system,based on the principle of proportional representation; voters choose between party lists, the number elected from each list being determined by the percentage cast for each list out of the total vote
+51681,listed_security,a security that has been accepted for trading by one of the organized and registered securities exchanges in the US
+51682,listening hearing,the act of hearing attentively; "you can learn a lot by just listening"; "they make good music--you should give them a hearing"
+51683,listening_watch continuous_receiver_watch,a watch established for the reception of traffic of interest to the unit maintaining the watch
+51684,lister,assessor who makes out the tax lists
+51685,lister lister_plow lister_plough middlebreaker middle_buster,moldboard plow with a double moldboard designed to move dirt to either side of a central furrow
+51686,listeria,any species of the genus Listeria
+51687,listeriosis listeria_meningitis,an infectious disease of animals and humans (especially newborn or immunosuppressed persons) caused by the bacterium Listeria monocytogenes; in sheep and cattle the infection frequently involves the central nervous system and causes various neurological symptoms
+51688,listing itemization itemisation,the act of making a list of items
+51689,listlessness torpidity torpidness torpor,inactivity resulting from lethargy and lack of vigor or energy
+51690,litany,any long and tedious address or recital; "the patient recited a litany of complaints"; "a litany of failures"
+51691,litas,the basic unit of money in Lithuania
+51692,litchi lichee litchi_tree Litchi_chinensis Nephelium_litchi,Chinese tree cultivated especially in Philippines and India for its edible fruit; sometimes placed in genus Nephelium
+51693,litchi litchi_nut litchee lichi leechee lichee lychee,Chinese fruit having a thin brittle shell enclosing a sweet jellylike pulp and a single seed; often dried
+51694,liter litre l cubic_decimeter cubic_decimetre,a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)
+51695,literacy,the ability to read and write
+51696,literal_interpretation,an interpretation based on the exact wording
+51697,literalism,a disposition to interpret statements in their literal sense
+51698,literalism,the doctrine of realistic (literal) portrayal in art or literature
+51699,literalness,adhereing to the concrete construal of something
+51700,literary_agent,an agent who represents an author in dealings with publishers
+51701,literary_composition literary_work,imaginative or creative writing
+51702,literary_critic,a critic of literature
+51703,literary_criticism lit_crit,the informed analysis and evaluation of literature
+51704,literary_review,a review devoted to literary criticism
+51705,literary_study,the humanistic study of literature
+51706,literate literate_person,a person who can read and write
+51707,literati,the literary intelligentsia
+51708,literature,published writings in a particular style on a particular subject; "the technical literature"; "one aspect of Waterloo has not yet been treated in the literature"
+51709,literature,creative writing of recognized artistic value
+51710,literature,the profession or art of a writer; "her place in literature is secure"
+51711,literature lit,the humanistic study of a body of literature; "he took a course in Russian lit"
+51712,lithia_water,mineral water containing lithium salts
+51713,lithiasis,the formation of stones (calculi) in an internal organ
+51714,lithium Li atomic_number_3,a soft silver-white univalent element of the alkali metal group; the lightest metal known; occurs in several minerals
+51715,lithium_carbonate Lithane Lithonate Eskalith,a white powder (LiCO3) used in manufacturing glass and ceramics and as a drug; the drug (trade names Lithane or Lithonate or Eskalith) is used to treat some forms of depression and manic episodes of manic-depressive disorder
+51716,lithograph,a print produced by lithography
+51717,lithograph lithograph_machine,duplicator that prints by lithography; a flat surface (of stone or metal) is treated to absorb or repel ink in the desired pattern
+51718,lithographer,a printmaker who uses lithography
+51719,lithography,a method of planographic printing from a metal or stone surface
+51720,lithography,the act of making a lithographic print
+51721,lithomancer,one who practices lithomancy
+51722,lithomancy,divination by means of stones or stone talismans
+51723,lithophyte lithophytic_plant,plant that grows on rocks or stony soil and derives nourishment from the atmosphere
+51724,lithops living_stone stoneface stone-face stone_plant stone_life_face flowering_stone,any plant of the genus Lithops native to Africa having solitary yellow or white flowers and thick leaves that resemble stones
+51725,lithosphere geosphere,the solid part of the earth consisting of the crust and outer mantle
+51726,lithotomy,surgical removal of a stone (calculus)
+51727,lithotomy_position,a position lying on your back with knees bent and thighs apart; assumed for vaginal or rectal examination
+51728,lithuresis,passing small stones with the urine
+51729,litigant litigator,(law) a party to a lawsuit; someone involved in litigation; "plaintiffs and defendants are both litigants"
+51730,litigation judicial_proceeding,a legal proceeding in a court; a judicial contest to determine and enforce legal rights
+51731,litigiousness,a quarrelsome disposition to engage in or carry on lawsuits; "charges of litigiousness and widespread perjury"
+51732,litmus litmus_test,a coloring material (obtained from lichens) that turns red in acid solutions and blue in alkaline solutions; used as a very rough acid-base indicator
+51733,litmus_paper,unsized paper treated with litmus for use as an acid-base indicator
+51734,litmus_test,a test that relies on a single indicator; "her litmus test for good breeding is whether you split infinitives"
+51735,litotes meiosis,understatement for rhetorical effect (especially when expressing an affirmative by negating its contrary); "saying `I was not a little upset' when you mean `I was very upset' is an example of litotes"
+51736,litter,rubbish carelessly dropped or left about (especially in public places)
+51737,litter,the offspring at one birth of a multiparous mammal
+51738,litter,conveyance consisting of a chair or bed carried on two poles by bearers
+51739,litterbin litter_basket litter-basket,bin (usually in or outside a public building) into which the public can put rubbish
+51740,litterer litterbug litter_lout,a person who litters public places with refuse
+51741,little,a small amount or duration; "he accepted the little they gave him"
+51742,little-head_snakeweed Gutierrezia_microcephala,similar to Gutierrezia sarothrae but with flower heads having fewer rays and disk flowers
+51743,little-league_team,a team that plays in a little league
+51744,little_auk dovekie Plautus_alle,small short-billed auk abundant in Arctic regions
+51745,little_barley Hordeum_pusillum,annual barley native to western North America and widespread in southern United States and tropical America
+51746,little_black_ant Monomorium_minimum,tiny glossy black ant; nests outdoors but invades houses for food
+51747,little_blue_heron Egretta_caerulea,small bluish-grey heron of the western hemisphere
+51748,little_brother,a younger brother; "my little brother just had his 50th birthday"
+51749,little_brown_bat little_brown_myotis Myotis_leucifugus,the small common North American bat; widely distributed
+51750,little_chief_hare Ochotona_princeps,North American pika
+51751,little_egret Egretta_garzetta,Old World egret
+51752,little_finger pinkie pinky,the finger farthest from the thumb
+51753,little_golden_zinnia Zinnia_grandiflora,subshrub having short leafy stems and numerous small flower heads with nearly round yellow-orange rays; Arizona south to Mexico and east to Kansas
+51754,little_league,a commercially sponsored baseball league for players between 8 and 12 years of age
+51755,little_leaguer,a player between 8 and 12 years of age who is a member of a little-league team
+51756,little_owl Athene_noctua,small European owl
+51757,little_potato rosette russet_scab stem_canker,rhizoctinia disease of potatoes
+51758,little_sister,a younger sister
+51759,little_skate Raja_erinacea,most plentiful skate in North American inshore waters in summer; to 21 inches
+51760,little_slam small_slam,winning all but one of the tricks in a hand of bridge
+51761,little_theater little_theatre,a small theater for experimental drama or collegiate or community groups
+51762,little_toe,the fifth smallest outermost toe
+51763,littleneck littleneck_clam,a quahog when young and small; usually eaten raw; an important food popular in New York
+51764,littleneck littleneck_clam,a young quahog
+51765,littoral litoral littoral_zone sands,the region of the shore of a lake or sea or ocean
+51766,liturgics liturgiology,the study of liturgies
+51767,liturgist,an authority on liturgies
+51768,liturgy,a rite or body of rites prescribed for public worship
+51769,live_axle driving_axle,the axle of a self-propelled vehicle that provides the driving power
+51770,live_birth,the birth of a living fetus (regardless of the length of gestation)
+51771,live_body,the body of a living animal or person
+51772,live_load superload,a variable load on a structure (e.g. a bridge) such as moving traffic
+51773,live_oak,any of several American evergreen oaks
+51774,live_steam,steam coming from a boiler at full pressure
+51775,liveborn_infant,infant who shows signs of life after birth
+51776,livedo,skin disorder characterized by patchy bluish discolorations on the skin
+51777,liveliness animation,general activity and motion
+51778,liveliness life spirit sprightliness,animation and energy in action or expression; "it was a heavy play and the actors tried in vain to give life to it"
+51779,liver,a person who has a special life style; "a high liver"
+51780,liver,someone who lives in a place; "a liver in cities"
+51781,liver,liver of an animal used as meat
+51782,liver,large and complicated reddish-brown glandular organ located in the upper right portion of the abdominal cavity; secretes bile and functions in metabolism of protein and carbohydrate and fat; synthesizes substances involved in the clotting of the blood; synthesizes vitamin A; detoxifies poisonous substances and breaks down worn-out erythrocytes
+51783,liver-spotted_dalmatian,a brown-spotted dalmatian
+51784,liver_cancer cancer_of_the_liver,malignant neoplastic disease of the liver usually occurring as a metastasis from another cancer; symptoms include loss of appetite and weakness and bloating and jaundice and upper abdominal discomfort
+51785,liver_chestnut,a solid dark brown horse
+51786,liver_disease,a disease affecting the liver
+51787,liver_fluke Fasciola_hepatica,flatworm parasitic in liver and bile ducts of domestic animals and humans
+51788,liver_pudding liver_sausage liverwurst,sausage containing ground liver
+51789,liver_spot,a type of skin disease that causes brown spots on the skin
+51790,liverwort hepatic,any of numerous small green nonvascular plants of the class Hepaticopsida growing in wet places and resembling green seaweeds or leafy mosses
+51791,livery,uniform worn by some menservants and chauffeurs
+51792,livery,the care (feeding and stabling) of horses for pay
+51793,livery_company,one of the chartered companies of London originating with the craft guilds
+51794,livery_stable,stable where horses and vehicles are kept for hire
+51795,liveryman,a worker in a livery stable
+51796,livestock stock farm_animal,any animals kept for use or profit
+51797,lividity,a state of fury so great the face becomes discolored
+51798,lividness lividity luridness paleness pallidness pallor wanness achromasia,unnatural lack of color in the skin (as from bruising or sickness or emotional distress)
+51799,living,people who are still living; "save your pity for the living"
+51800,living_arrangement,an arrangement to allow people (or ideas) to coexist
+51801,living_death,a state of constant misery
+51802,living_granite living_rock stone_mimicry_plant,highly succulent stemless clump-forming plants with grey-green leaves similar in texture to lumps of granite; South Africa
+51803,living_quarters quarters,housing available for people to live in; "he found quarters for his family"; "I visited his bachelor quarters"
+51804,living_rock Ariocarpus_fissuratus,usually unbranched usually spineless cactus covered with warty tubercles and having magenta flowers and white or green fruit; resembles the related mescal; northeastern Mexico and southwestern United States
+51805,living_room living-room sitting_room front_room parlor parlour,a room in a private house or establishment where people can sit and talk and relax
+51806,living_space lebensraum,space sought for occupation by a nation whose population is expanding
+51807,living_thing animate_thing,a living (or once living) entity
+51808,living_trust inter_vivos_trust,a trust created and operating during the grantor's lifetime
+51809,living_wage,a wage sufficient for a worker and family to subsist comfortably
+51810,living_will,a document written by someone still legally capable requesting that he should be allowed to die if subsequently severely disabled or suffering terminal illness; "after he discovered he had AIDS he drew up a living will"
+51811,livingroom_suite livingroom_set living-room_suite living-room_set living_room_suite living_room_set,a suite of furniture for the living room
+51812,livingstone_daisy Dorotheanthus_bellidiformis,low-growing showy succulent annual of South Africa having white or pink or red or orange flowers and spatulate leaves covered in papillae that resemble small crystals
+51813,liza Mugil_liza,similar to the striped mullet and takes its place in the Caribbean region
+51814,lizard,relatively long-bodied reptile with usually two pairs of legs and a tapering tail
+51815,lizard's-tail swamp_lily water_dragon Saururus_cernuus,North American herbaceous perennial of wet places having slender curled racemes of small white flowers
+51816,lizard_orchid Himantoglossum_hircinum,an orchid of the genus Himantoglossum
+51817,lizardfish snakefish snake-fish,tropical fishes with large mouths in lizard-like heads; found worldwide
+51818,llama,wild or domesticated South American cud-chewing animal related to camels but smaller and lacking a hump
+51819,llano,an extensive grassy and nearly treeless plain (especially in Latin America)
+51820,loach,slender freshwater fishes of Eurasia and Africa resembling catfishes
+51821,load,an amount of alcohol sufficient to intoxicate; "he got a load on and started a brawl"
+51822,load,the power output of a generator or power plant
+51823,load,electrical device to which electrical power is delivered
+51824,load loading,a quantity that can be processed or transported at one time; "the system broke down under excessive loads"
+51825,load loading burden,weight to be borne or conveyed
+51826,load-shedding,cutting off the electric current on certain lines when the demand becomes greater than the supply
+51827,load_factor,(aeronautics) the ratio of an external load to the weight of the aircraft (measured in g)
+51828,load_line Plimsoll_line Plimsoll_mark Plimsoll,waterlines to show the level the water should reach when the ship is properly loaded
+51829,loader,an attendant who loads guns for someone shooting game
+51830,loading,the ratio of the gross weight of an airplane to some factor determining its lift
+51831,loading,the labor of putting a load of something on or in a vehicle or ship or container etc.; "the loading took 2 hours"
+51832,loading_zone loading_area,a stop where carriers can be loaded and unloaded
+51833,loaf,a quantity of food (other than bread) formed in a particular shape; "meat loaf"; "sugar loaf"; "a loaf of cheese"
+51834,loaf_of_bread loaf,a shaped mass of baked bread that is usually sliced before eating
+51835,loam,a rich soil consisting of a mixture of sand and clay and decaying organic materials
+51836,loan,the temporary provision of money (usually at interest)
+51837,loan_application,an application to borrow money
+51838,loan_approval,formal authorization to get a loan (usually from a bank)
+51839,loan_collection,a number of pictures loaned by their owners for exhibition
+51840,loan_office,an office where loans are negotiated and repaid
+51841,loanblend loan-blend hybrid,a word that is composed of parts from different languages (e.g., `monolingual' has a Greek prefix and a Latin root)
+51842,loaner,a car that is lent as a replacement for one that is under repair
+51843,loanword loan,a word borrowed from another language; e.g. `blitz' is a German word borrowed into modern English
+51844,loasa,any of various perennial South American plants of the genus Loasa having stinging hairs and showy white or yellow or reddish-orange flowers
+51845,loathsomeness repulsiveness sliminess vileness lousiness wickedness,the quality of being disgusting to the senses or emotions; "the vileness of his language surprised us"
+51846,lob,an easy return of a tennis ball in a high arc
+51847,lob,the act of propelling something (as a ball or shell etc.) in a high arc
+51848,lobar_pneumonia,pneumonia affecting one or more lobes of the lung; commonly due to streptococcal infection
+51849,lobate_foot,a bird's foot having separate toes each with membranous flaps along the sides
+51850,lobby,the people who support some common cause or business or principle or sectional interest
+51851,lobbying_expense,expenses incurred in promoting or evaluating legislation; "many lobbying expenses are deductible by a taxpayer"
+51852,lobbyism,the practice of lobbying; the activities of a lobbyist
+51853,lobbyist,someone who is employed to persuade legislators to vote for legislation that favors the lobbyist's employer
+51854,lobe,(botany) a part into which a leaf is divided
+51855,lobe,the enhanced response of an antenna in a given direction as indicated by a loop in its radiation pattern
+51856,lobe,(anatomy) a somewhat rounded subdivision of a bodily organ or part; "ear lobe"
+51857,lobe,a rounded projection that is part of a larger structure
+51858,lobe_of_the_lung,any of the three lobes of the right lung or the two lobes of the left lung
+51859,lobectomy,surgical removal of a lobe from any organ of the body (as the lung or brain)
+51860,lobed_leaf,a leaf having deeply indented margins
+51861,lobed_spleenwort Asplenium_pinnatifidum,a spleenwort of eastern and southern United States
+51862,lobelia,any plant or flower of the genus Lobelia
+51863,loblolly,thick gruel
+51864,loblolly_pine frankincense_pine Pinus_taeda,tall spreading three-needled pine of southeastern United States having reddish-brown fissured bark and a full bushy upper head
+51865,lobotomy leukotomy leucotomy prefrontal_lobotomy prefrontal_leukotomy prefrontal_leucotomy frontal_lobotomy,surgical interruption of nerve tracts to and from the frontal lobe of the brain; often results in marked cognitive and personality changes
+51866,lobscouse lobscuse scouse,a stew of meat and vegetables and hardtack that is eaten by sailors
+51867,lobster,flesh of a lobster
+51868,lobster,any of several edible marine crustaceans of the families Homaridae and Nephropsidae and Palinuridae
+51869,lobster_Newburg lobster_a_la_Newburg,lobster in Newburg sauce served on buttered toast or rice
+51870,lobster_butter,butter blended with chopped lobster or seasoned with essence from lobster shells
+51871,lobster_pot,trap for catching lobsters
+51872,lobster_stew,diced lobster meat in milk or cream
+51873,lobster_tail,lobster tail meat; usually from spiny rock lobsters
+51874,lobster_tart,a pastry shell filled with cooked lobster
+51875,lobster_thermidor,diced lobster mixed with Mornay sauce placed back in the shell and sprinkled with grated cheese and browned
+51876,lobsterman,a person whose occupation is catching lobsters
+51877,lobularity,the property of having lobules
+51878,lobule,a small lobe or subdivision of a lobe
+51879,local,public transport consisting of a bus or train that stops at all stations or stops; "the local seemed to take forever to get to New York"
+51880,local_anesthesia local_anaesthesia,loss of sensation in a small area of the body (as when a local anesthetic is injected for a tooth extraction)
+51881,local_anesthetic local_anaesthetic local topical_anesthetic topical_anaesthetic,anesthetic that numbs a particular area of the body
+51882,local_area_network LAN,a local computer network for communication between computers; especially a network connecting computers and word processors and other electronic office equipment to create a communication system between offices
+51883,local_authority,an administrative unit of local government
+51884,local_call,a telephone call made within a local calling area
+51885,local_department department_of_local_government,a permanent department created to perform the work of a local government
+51886,local_government,the government of a local area
+51887,local_option,freedom of a local government to determine by popular vote the applicability of a controversial law in their jurisdiction
+51888,local_oscillator heterodyne_oscillator,an oscillator whose output heterodynes with the incoming radio signal to produce sum and difference tones
+51889,local_road local_street,a street that is primarily used to gain access to the property bordering it
+51890,localism,a phrase or pronunciation that is peculiar to a particular locality
+51891,localization localisation location locating fix,a determination of the place where something is; "he got a good fix on the target"
+51892,localization_of_function localisation_of_function localization_principle localisation_principle localization localisation,(physiology) the principle that specific functions have relatively circumscribed locations in some particular part or organ of the body
+51893,location,a workplace away from a studio at which some or all of a movie may be made; "they shot the film on location in Nevada"
+51894,location,a point or extent in space
+51895,locative_role locative,the semantic role of the noun phrase that designates the place of the state or action denoted by the verb
+51896,locator locater,a person who fixes the boundaries of land claims
+51897,loch,a long narrow inlet of the sea in Scotland (especially when it is nearly landlocked)
+51898,loch,Scottish word for a lake
+51899,lochia,substance discharged from the vagina (cellular debris and mucus and blood) that gradually decreases in amount during the weeks following childbirth
+51900,lock,a mechanism that detonates the charge of a gun
+51901,lock,a fastener fitted to a door or drawer to keep it firmly closed
+51902,lock,any wrestling hold in which some part of the opponent's body is twisted or pressured
+51903,lock curl ringlet whorl,a strand or cluster of hair
+51904,lock ignition_lock,a restraint incorporated into the ignition switch to prevent the use of a vehicle by persons who do not have the key
+51905,lock lock_chamber,enclosure consisting of a section of canal that can be closed to control the water level; used to raise or lower vessels that pass through it
+51906,lock-gate,a gate that can be locked
+51907,lock-up_option,an option to buy the crown jewels offered to a white knight in order to forestall a hostile takeover
+51908,lockage,a fee charged for passage through a lock in a canal or waterway
+51909,lockage,a system of locks in a canal or waterway
+51910,lockage,passage through a lock in a canal or waterway
+51911,lockdown,the act of confining prisoners to their cells (usually to regain control during a riot)
+51912,locker,a fastener that locks or closes
+51913,locker_room,a room (as at an athletic facility or workplace) where you can change clothes and which contains lockers for the temporary storage of your clothing and personal possessions
+51914,locket,a small ornamental case; usually contains a picture or a lock of hair and is worn on a necklace
+51915,locking lockup,the act of locking something up to protect it
+51916,locking_pliers,pliers that can be locked in place
+51917,lockmaster lockman lockkeeper,a worker in charge of a lock (on a canal)
+51918,locknut safety_nut,supplementary nut that is screwed down on a primary nut to prevent it from loosening
+51919,lockout,a management action resisting employee's demands; employees are barred from entering the workplace until they agree to terms
+51920,lockring lock_ring lock_washer,washer that prevents a nut from loosening
+51921,locksmith,someone who makes or repairs locks
+51922,lockstep,a standard procedure that is followed mindlessly; "the union's support had been in lockstep for years"
+51923,lockstep,a manner of marching in file in which each person's leg moves with and behind the corresponding leg of the person ahead; "the prisoner's ankles were so chained together that they could only march in lockstep"
+51924,lockstitch,machine stitch in which the top thread interlocks with the bobbin thread
+51925,lockup,jail in a local police station
+51926,loco_disease locoism,a disease of livestock caused by locoweed poisoning; characterized by weakness and lack of coordination and trembling and partial paralysis
+51927,locomotion motive_power motivity,the power or ability to move
+51928,locomotion travel,self-propelled movement
+51929,locomotive engine locomotive_engine railway_locomotive,a wheeled vehicle consisting of a self-propelled engine that is used to draw trains along railway tracks
+51930,locoweed crazyweed crazy_weed,any of several leguminous plants of western North America causing locoism in livestock
+51931,locule loculus,a small cavity or space within an organ or in a plant or animal
+51932,locum_tenens locum,someone (physician or clergyman) who substitutes temporarily for another member of the same profession
+51933,locus,the specific site of a particular gene on its chromosome
+51934,locus,the set of all points or lines that satisfy or are determined by specific conditions; "the locus of points equidistant from a given point is a circle"
+51935,locus_classicus,an authoritative and often-quoted passage
+51936,locus_of_infection,the specific site in the body where an infection originates
+51937,locust,hardwood from any of various locust trees
+51938,locust,migratory grasshoppers of warm regions having short antennae
+51939,locust_tree locust,any of various hardwood trees of the family Leguminosae
+51940,loddon_pondweed Potamogeton_nodosus Potamogeton_americanus,pondweed with floating leaves; of northern United States and Europe
+51941,lode load,a deposit of valuable ore occurring within definite boundaries separating it from surrounding rocks
+51942,lodestar loadstar,guiding star; a star that is used as a reference point in navigation or astronomy
+51943,lodestar loadstar,something that serves as a model or guide
+51944,lodestone loadstone,a permanent magnet consisting of magnetite that possess polarity and has the power to attract as well as to be attracted magnetically
+51945,lodge,small house at the entrance to the grounds of a country mansion; usually occupied by a gatekeeper or gardener
+51946,lodge hunting_lodge,a small (rustic) house used as a temporary shelter
+51947,lodge indian_lodge,any of various Native American dwellings
+51948,lodger boarder roomer,a tenant in someone's house
+51949,lodging,the act of lodging
+51950,lodging_house rooming_house,a house where rooms are rented
+51951,lodgment lodgement,bringing a charge or accusation against someone
+51952,lodgment lodgement lodging,the state or quality of being lodged or fixed even temporarily; "the lodgment of the balloon in the tree"
+51953,loess,a fine-grained unstratified accumulation of clay and silt deposited by the wind
+51954,loft,(golf) the backward slant on the head of some golf clubs that is designed to drive the ball high in the air
+51955,loft,floor consisting of a large unpartitioned space over a factory or warehouse or other commercial space
+51956,loft attic garret,floor consisting of open space at the top of a house just below roof; often used for storage
+51957,loft pigeon_loft,a raised shelter in which pigeons are kept
+51958,loft_bombing toss_bombing,a bombing run in which the bomber approaches the target at a low altitude and pulls up just before releasing the bomb
+51959,log,a segment of the trunk of a tree when stripped of branches
+51960,log,a written record of messages sent or received; "they kept a log of all transmission by the radio station"; "an email log"
+51961,log,a written record of events on a voyage (of a ship or plane)
+51962,log,measuring instrument that consists of a float that trails from a ship by a knotted line in order to measure the ship's speed through the water
+51963,log_cabin,a cabin built with logs
+51964,log_line,a knotted cord that runs out from a reel to a piece of wood that is attached to it
+51965,loganberry,large red variety of the dewberry
+51966,loganberry Rubus_loganobaccus Rubus_ursinus_loganobaccus,red-fruited bramble native from Oregon to Baja California
+51967,logarithm log,the exponent required to produce a given number
+51968,logarithmic_scale,scale on which actual distances from the origin are proportional to the logarithms of the corresponding scale numbers
+51969,logbook,a book in which the log is written
+51970,loge,balcony consisting of the forward section of a theater mezzanine
+51971,loggerhead loggerhead_turtle Caretta_caretta,very large carnivorous sea turtle; wide-ranging in warm open seas
+51972,loggerhead_shrike Lanius_lucovicianus,a common shrike of southeastern United States having black bands around the eyes
+51973,loggia,a roofed arcade or gallery with open sides stretching along the front or side of a building; often at an upper level
+51974,logging,the work of cutting down trees for timber
+51975,logic,the branch of philosophy that analyzes inference
+51976,logic,the system of operations performed by a computer that underlies the machine's representation of logical operations
+51977,logic,the principles that guide reasoning within a given field or situation; "economic logic requires it"; "by the logic of war"
+51978,logic,reasoned and reasonable judgment; "it made a certain kind of logic"
+51979,logic logical_system system_of_logic,a system of reasoning
+51980,logic_bomb slag_code,a set of instructions inserted into a program that are designed to execute (or `explode') if a particular condition is satisfied; when exploded it may delete or corrupt data, or print a spurious message, or have other harmful effects; "a disgruntled employee planted a logic bomb"
+51981,logic_diagram logical_diagram,a graphical representation of a program using formal logic
+51982,logic_element,an electronic device that performs an elementary logic operation
+51983,logic_operation logical_operation,an operation that follows the rules of symbolic logic
+51984,logic_programming logic_programing,creating a program that enables the computer to reason logically
+51985,logical_fallacy,a fallacy in logical argumentation
+51986,logical_positivist,someone who maintains that any statement that cannot be verified empirically is meaningless
+51987,logical_proof,proof of a logical theorem
+51988,logical_relation,a relation between propositions
+51989,logical_topology,the way the network works; "a network that looks like a star can have the logical topology of a bus"
+51990,logicality logicalness,correct and valid reasoning
+51991,logician logistician,a person skilled at symbolic logic
+51992,logicism,(philosophy) the philosophical theory that all of mathematics can be derived from formal logic
+51993,loginess logginess,a dull and listless state resulting from weariness
+51994,logion,a saying of Jesus that is regarded as authentic although it is not recorded in the Gospels
+51995,logistic_assessment,a judgment of the logistic support required for some particular military operation
+51996,logistic_support logistic_assistance,assistance between and within military commands
+51997,logistics,handling an operation that involves providing labor and materials be supplied as needed
+51998,logjam,any stoppage attributable to unusual activity; "the legislation ran into a logjam"
+51999,logjam,an immovable mass of logs blocking a river
+52000,logo logotype,a company emblem or device
+52001,logogram logograph,a single written symbol that represents an entire word or phrase without indicating its pronunciation; "7 is a logogram that is pronounced `seven' in English and `nanatsu' in Japanese"
+52002,logomach logomachist,someone given to disputes over words
+52003,logomachy,argument about words or the meaning of words
+52004,logorrhea logomania,pathologically excessive (and often incoherent) talking
+52005,logrolling,act of exchanging favors for mutual gain; especially trading of influence or votes among legislators to gain passage of certain projects
+52006,logwood,very hard brown to brownish-red heartwood of a logwood tree; used in preparing a purplish red dye
+52007,logwood logwood_tree campeachy bloodwood_tree Haematoxylum_campechianum,spiny shrub or small tree of Central America and West Indies having bipinnate leaves and racemes of small bright yellow flowers and yielding a hard brown or brownish-red heartwood used in preparing a black dye
+52008,loin,a cut of meat taken from the side and back of an animal between the ribs and the rump
+52009,loin lumbus,either side of the backbone between the hipbone and the ribs in humans as well as quadrupeds
+52010,loin_of_lamb,meat from a loin of lamb
+52011,loins,the region of the hips and groin and lower abdomen
+52012,loir Glis_glis,large European dormouse
+52013,loiterer lingerer,someone who lingers aimlessly in or about a place
+52014,loligo,somewhat flattened cylindrical squid
+52015,lollipop sucker all-day_sucker,hard candy on a stick
+52016,lollipop_lady lollipop_woman,a woman hired to help children cross a road safely near a school
+52017,lomatia,any of various ornamental evergreens of the genus Lomatia having attractive fragrant flowers
+52018,loment,seedpods that are constricted between the seeds and that break apart when mature into single-seeded segments
+52019,lomustine,an antineoplastic drug often used to treat brain tumors or Hodgkin's disease
+52020,loneliness solitariness,the state of being alone in solitary isolation
+52021,loner lone_wolf lone_hand,a person who avoids the company or assistance of others
+52022,long-billed_marsh_wren Cistothorus_palustris,American wren that inhabits tall reed beds
+52023,long-clawed_prawn river_prawn Palaemon_australis,large (a foot or more) edible freshwater prawn common in Australian rivers
+52024,long-eared_bat,any of various Old or New World bats having very long ears
+52025,long-eared_owl Asio_otus,slender European owl of coniferous forests with long ear tufts
+52026,long-head_coneflower prairie_coneflower Ratibida_columnifera,plant similar to the Mexican hat coneflower; from British Columbia to New Mexico
+52027,long-horned_beetle longicorn longicorn_beetle,long-bodied beetle having very long antennae
+52028,long-horned_grasshopper tettigoniid,grasshoppers with long threadlike antennae and well-developed stridulating organs on the forewings of the male
+52029,long-spurred_violet Viola_rostrata,violet of eastern North America having lilac-purple flowers with a long slender spur
+52030,long-staple_cotton,cotton with relatively long fibers
+52031,long-sufferance long-suffering,patient endurance of pain or unhappiness
+52032,long-tailed_porcupine Trichys_lipura,porcupine of Borneo and Sumatra having short spines and a long tail
+52033,long-term_memory LTM,your general store of remembered information
+52034,long_beech_fern narrow_beech_fern northern_beech_fern Phegopteris_connectilis Dryopteris_phegopteris Thelypteris_phegopteris,beech fern of North America and Eurasia
+52035,long_bone os_longum,in limbs of vertebrate animals: a long cylindrical bone that contains marrow
+52036,long_chain long-chain_molecule,(chemistry) a relatively long chain of atoms in a molecule
+52037,long_distance long-distance_call trunk_call,a telephone call made outside the local calling area; "I talked to her by long distance"
+52038,long_division,the operation of division in which the sequence of steps are indicated in detail
+52039,long_fly,a gymnastic exercise involving a long leap from a vaulting horse
+52040,long_haul,a journey over a long distance; "it's a long haul from New York to Los Angeles"
+52041,long_hundred great_hundred 120,the cardinal number that is the product of ten and twelve
+52042,long_iron,an iron with a long shaft and a steep face; for hitting long low shots
+52043,long_johns,warm underwear with long legs
+52044,long_jump broad_jump,a competition that involves jumping as far as possible from a running start
+52045,long_measure,a measure of length
+52046,long_pepper Piper_longum,slender tropical climber of the eastern Himalayas
+52047,long_run long_haul,a period of time sufficient for factors to work themselves out; "in the long run we will win"; "in the long run we will all be dead"; "he performed well over the long haul"
+52048,long_saphenous_vein great_saphenous_vein,the longest vein in the body; runs from foot to the groin where it joins the femoral vein
+52049,long_shot,a contestant that is unlikely to win
+52050,long_shot,a venture that involves great risk but promises great rewards
+52051,long_sleeve,a sleeve extending from shoulder to wrist
+52052,long_suit,in a hand, the suit having the most cards
+52053,long_time age years,a prolonged period of time; "we've known each other for ages"; "I haven't been there for years and years"
+52054,long_tom,a long swivel cannon formerly used by the navy
+52055,long_ton ton gross_ton,a British unit of weight equivalent to 2240 pounds
+52056,long_trousers long_pants,trousers reaching to the foot
+52057,long_underwear union_suit,an undergarment with shirt and drawers in one piece
+52058,long_wave,a radio wave with a wavelength longer than a kilometer (a frequency below 300 kilohertz)
+52059,longan lungen longanberry Dimocarpus_longan Euphorbia_litchi Nephelium_longana,tree of southeastern Asia to Australia grown primarily for its sweet edible fruit resembling litchi nuts; sometimes placed in genera Euphorbia or Nephelium
+52060,longanberry dragon's_eye,Asian fruit similar to litchi
+52061,longboat,the largest boat carried by a merchant sailing vessel
+52062,longbow,a powerful wooden bow drawn by hand; usually 5-6 feet long; used in medieval England
+52063,longbowman,a medieval English archer who used a longbow
+52064,longer thirster yearner,a person with a strong desire for something; "a longer for money"; "a thirster after blood"; "a yearner for knowledge"
+52065,longevity length_of_service,duration of service; "her longevity as a star"; "had unusual longevity in the company"
+52066,longevity seniority,the property of being long-lived
+52067,longfin_mako Isurus_paucus,similar to shortfin mako but darker blue
+52068,longhand running_hand cursive cursive_script,rapid handwriting in which letters are set down in full and are cursively connected within words without lifting the writing implement from the paper
+52069,longheaded_thimbleweed Anemone_riparia,thimbleweed of northern North America
+52070,longhorn Texas_longhorn,long-horned beef cattle formerly common in southwestern United States
+52071,longing yearning hungriness,prolonged unfulfilled desire or need
+52072,longitude,the angular distance between a point on any meridian and the prime meridian at Greenwich
+52073,longleaf_pine pitch_pine southern_yellow_pine Georgia_pine Pinus_palustris,large three-needled pine of southeastern United States having very long needles and gnarled twisted limbs; bark is red-brown deeply ridged; an important timber tree
+52074,longness,the property of being of long spatial extent; "one gene causes shortness and the other causes longness"
+52075,longness,duration as an extension
+52076,longshot,a photograph taken from a distance
+52077,longtail_weasel long-tailed_weasel Mustela_frenata,the common American weasel distinguished by large size and black-tipped tail
+52078,longueur,a period of dullness or boredom (especially in a work of literature or performing art)
+52079,longways longways_dance,country dancing performed with couples in two long lines facing each other
+52080,longwool,a domestic long-wool sheep
+52081,loofa loofah luffa loufah_sponge,the dried fibrous part of the fruit of a plant of the genus Luffa; used as a washing sponge or strainer
+52082,loofah vegetable_sponge Luffa_cylindrica,the loofah climber that has cylindrical fruit
+52083,look,physical appearance; "I don't like the looks of this place"
+52084,look looking looking_at,the act of directing the eyes toward something and perceiving it visually; "he went out to have a look"; "his look was fixed on her eyes"; "he gave it a good looking at"; "his camera does his looking for him"
+52085,lookdown lookdown_fish Selene_vomer,similar to moonfish but with eyes high on the truncated forehead
+52086,looking looking_for,the act of searching visually
+52087,looking-glass_plant Heritiera_littoralis,small tree of coastal regions of Old World tropics whose leaves are silvery beneath
+52088,looking_glass glass,a mirror; usually a ladies' dressing mirror
+52089,looking_glass_tree Heritiera_macrophylla,large evergreen tree of India and Burma whose leaves are silvery beneath
+52090,lookout lookout_man sentinel sentry watch spotter scout picket,a person employed to keep watch for some anticipated event
+52091,lookout observation_post,an elevated post affording a wide view
+52092,lookout observation_tower lookout_station observatory,a structure commanding a wide view of its surroundings
+52093,lookout outlook,the act of looking out
+52094,loom,a textile machine for weaving yarn into a textile
+52095,loon,a worthless lazy fellow
+52096,loon diver,large somewhat primitive fish-eating diving bird of the northern hemisphere having webbed feet placed far back; related to the grebes
+52097,loop,anything with a round or oval shape (formed by a curve that is closed and does not intersect itself)
+52098,loop,an inner circle of advisors (especially under President Reagan); "he's no longer in the loop"
+52099,loop,the basic pattern of the human fingerprint
+52100,loop,a computer program that performs a series of instructions repeatedly until some specified condition is satisfied
+52101,loop,an intrauterine device in the shape of a loop
+52102,loop loop-the-loop,a flight maneuver; aircraft flies a complete circle in the vertical plane
+52103,loop-line,a railway branch line that branches from the trunk line and then rejoins it later on
+52104,loop_gain,(telecommunication) the gain of a feedback amplifier or system as a function of how much output is fed back to the input; "if the loop gain is too great the system may go into oscillation"
+52105,loop_knot,any of various knots used to make a fixed loop in a rope
+52106,loop_topology loop,the topology of a network whose components are serially connected in such a way that the last component is connected to the first component
+52107,loophole,an ambiguity (especially one in the text of a law or contract) that makes it possible to evade a difficulty or obligation
+52108,loophole,a small hole in a fortified wall; for observation or discharging weapons
+52109,looping_ill,an acute viral disease of the nervous system in sheep; can be transmitted by Ixodes ricinus
+52110,loose_cannon,a person who is expected to perform a particular task but who is out of control and dangerous
+52111,loose_end unfinished_business,work that is left incomplete
+52112,loose_sentence,a complex sentence in which the main clause comes first and the subordinate clause follows
+52113,loose_smut,disease of grains; the entire head is a dusty mass of spores
+52114,loose_smut,a smut fungus of the genus Ustilago causing a smut disease of grains in which the entire head is transformed into a dusty mass of spores
+52115,looseness,freedom from restraint; "the flexibility and looseness of the materials from which mythology is made"
+52116,looseness,a lack of strict accuracy; laxity of practice; "misunderstandings can often be traced to a looseness of expression"
+52117,looseness,the quality of movability by virtue of being free from attachment or other restraints
+52118,looseness play,movement or space for movement; "there was too much play in the steering wheel"
+52119,loosening laxation,the act of making something less tight
+52120,loosestrife,any of numerous herbs and subshrubs of the genus Lythrum
+52121,loosestrife,any of various herbs and subshrubs of the genus Lysimachia
+52122,loot booty pillage plunder prize swag dirty_money,goods or money obtained illegally
+52123,looting robbery,plundering during riots or in wartime
+52124,lopsidedness skewness,an oblique or slanting asymmetry
+52125,loquat Japanese_plum,yellow olive-sized semitropical fruit with a large free stone and relatively little flesh; used for jellies
+52126,loquat loquat_tree Japanese_medlar Japanese_plum Eriobotrya_japonica,evergreen tree of warm regions having fuzzy yellow olive-sized fruit with a large free stone; native to China and Japan
+52127,lorazepam Ativan,tranquilizer (trade name Ativan) used to treat anxiety and tension and insomnia
+52128,lorchel,a large fungus of the family Helvellaceae
+52129,lordolatry,the worship of a lord because of his rank or title
+52130,lordosis hollow-back,an abnormal inward (forward) curvature of the vertebral column
+52131,lordship,the authority of a lord
+52132,lore traditional_knowledge,knowledge gained through tradition or anecdote; "early peoples passed on plant and animal lore through legend"
+52133,lorgnette,eyeglasses that are held to the eyes with a long handle
+52134,lorica,a hard protective sheath (as secreted by certain protoctists, for example)
+52135,lorikeet,any of various small lories
+52136,lorry,a large low horse-drawn wagon without sides
+52137,lorry camion,a large truck designed to carry heavy loads; usually without sides
+52138,lory,small brightly colored Australasian parrots having a brush-tipped tongue for feeding on nectar and soft fruits
+52139,loser,a gambler who loses a bet
+52140,loser also-ran,a contestant who loses the contest
+52141,losing_streak,a streak of losses
+52142,losings losses,something lost (especially money lost at gambling)
+52143,loss,gradual decline in amount or activity; "weight loss"; "a serious loss of business"
+52144,loss,something that is lost; "the car was a total loss"; "loss of livestock left the rancher bankrupt"
+52145,loss,the experience of losing a loved one; "he sympathized on the loss of their grandfather"
+52146,loss,the act of losing someone or something; "everyone expected him to win so his loss was a shock"
+52147,loss deprivation,the disadvantage that results from losing something; "his loss of credibility led to his resignation"; "losing him is no great deprivation"
+52148,loss red_ink red,the amount by which the cost of a business exceeds its revenue; "the company operated at a loss last year"; "the company operated in the red last year"
+52149,loss_of_consciousness,the occurrence of a loss of the ability to perceive and respond
+52150,loss_ratio,the ratio of the annual claims paid by an insurance company to the premiums received
+52151,lost-and-found,repository in a public building where lost articles can be kept until their owners reclaim them
+52152,lost_cause,a defeated cause or a cause for which defeat is inevitable
+52153,lot,a parcel of land having fixed boundaries; "he bought a lot on the lake"
+52154,lota,a globular water bottle used in Asia
+52155,loti,the basic unit of money in Lesotho
+52156,lotion,any of various cosmetic preparations that are applied to the skin
+52157,lotion application,liquid preparation having a soothing or antiseptic or medicinal action when applied to the skin; "a lotion for dry skin"
+52158,lottery,something that is regarded as a chance event; "the election was just a lottery to them"
+52159,lottery drawing,players buy (or are given) chances and prizes are distributed by casting lots
+52160,lotto bingo beano keno,a game in which numbered balls are drawn at random and players cover the corresponding numbers on their cards
+52161,lotus Indian_lotus sacred_lotus Nelumbo_nucifera,native to eastern Asia; widely cultivated for its large pink or white flowers
+52162,lotus white_lotus Egyptian_water_lily white_lily Nymphaea_lotus,white Egyptian lotus: water lily of Egypt to southeastern Africa; held sacred by the Egyptians
+52163,lotus-eater stargazer,someone indifferent to the busy world; "in the Odyssey Homer tells of lotus-eaters who live in dreamy indolence"
+52164,lotus_position,a sitting position with the legs crossed; used in yoga
+52165,lotus_tree Ziziphus_lotus,shrubby deciduous tree of the Mediterranean region
+52166,lotusland lotus_land,an idyllic realm of contentment and self-indulgence
+52167,loudmouth blusterer,a person who causes trouble by speaking indiscreetly
+52168,loudspeaker speaker speaker_unit loudspeaker_system speaker_system,electro-acoustic transducer that converts electrical signals into sounds loud enough to be heard at a distance
+52169,lough,a long narrow (nearly landlocked) cove in Ireland
+52170,lough,Irish word for a lake
+52171,louis_d'or,a former French gold coin
+52172,lounge waiting_room waiting_area,a room (as in a hotel or airport) with seating where people can wait
+52173,lounge_lizard lizard,a man who idles about in the lounges of hotels and bars in search of women who would support him
+52174,lounger,an article of clothing designed for comfort and leisure wear
+52175,loungewear,clothing suitable for relaxation
+52176,lounging_jacket smoking_jacket,a man's soft jacket usually with a tie belt; worn at home
+52177,lounging_pajama lounging_pyjama,pajamas worn while lounging
+52178,loupe jeweler's_loupe,small magnifying glass (usually set in an eyepiece) used by jewelers and horologists
+52179,louse sucking_louse,wingless usually flattened bloodsucking insect parasitic on warm-blooded animals
+52180,louse_fly hippoboscid,bloodsucking dipterous fly parasitic on birds and mammals
+52181,lout clod stumblebum goon oaf lubber lummox lump gawk,an awkward stupid person
+52182,louvar Luvarus_imperialis,large silvery fish found worldwide in warm seas but nowhere common; resembles a whale and feeds on plankton
+52183,louver louvre fin,one of a set of parallel slats in a door or window to admit air and reject rain
+52184,louvered_window jalousie,a window with glass louvers
+52185,lovage,stalks eaten like celery or candied like angelica; seeds used for flavoring or pickled like capers
+52186,lovage Levisticum_officinale,herb native to southern Europe; cultivated for its edible stalks and foliage and seeds
+52187,lovastatin Mevacor,an oral drug (trade name Mevacor) to reduce blood cholesterol levels; used when dietary changes have proved inadequate
+52188,love,a score of zero in tennis or squash; "it was 40 love"
+52189,love,a strong positive emotion of regard and affection; "his love for his work"; "children need a lot of love"
+52190,love passion,any object of warm affection or devotion; "the theater was her first love"; "he has a passion for cock fighting"
+52191,love sexual_love erotic_love,a deep feeling of sexual desire and attraction; "their love left them indifferent to their surroundings"; "she was his first love"
+52192,love-in-a-mist Nigella_damascena,European garden plant having finely cut leaves and white or pale blue flowers
+52193,love-in-a-mist running_pop wild_water_lemon Passiflora_foetida,tropical American passion flower with finely dissected bracts; stems malodorous when crushed
+52194,love-in-winter western_prince's_pine Chimaphila_umbellata Chimaphila_corymbosa,Eurasian herb with white or pinkish flowers in a terminal corymb
+52195,love-lies-bleeding velvet_flower tassel_flower Amaranthus_caudatus,young leaves widely used as leaf vegetables; seeds used as cereal
+52196,love-token,keepsake given as a token of love
+52197,love_affair romance,a relationship between two lovers
+52198,love_feast,a social gathering intended to create goodwill among the participants
+52199,love_grass bay_grass,any of various grasses of the genus Eragrostis; specially useful for forage and for the prevention of erosion
+52200,love_knot lovers'_knot lover's_knot true_lovers'_knot true_lover's_knot,a stylized or decorative knot used as an emblem of love
+52201,love_letter billet_doux,a personal letter to a loved one expressing affection
+52202,love_lyric,the lyric of a love song
+52203,love_match,a marriage for love's sake; not an arranged marriage
+52204,love_seat loveseat tete-a-tete vis-a-vis,small sofa that seats two people
+52205,love_song love-song,a song about love or expressing love for another person
+52206,love_story romance,a story dealing with love
+52207,love_vine Cuscuta_gronovii,leafless parasitic vine with dense clusters of small white bell-shaped flowers on orange-yellow stems that twine around clover or flax
+52208,lovebird,small African parrot noted for showing affection for their mates
+52209,loved_one,a person who you love, usually a member of your family
+52210,lover,a significant other to whom you are not related by marriage
+52211,lover,a person who loves someone or is loved by someone
+52212,lovesickness,a pining for a loved one
+52213,loving-kindness,tender kindness motivated by a feeling of affection
+52214,loving_cup,a large drinking vessel (usually with two handles) that people drink out of in turn at a banquet
+52215,lovingness caring,a loving feeling
+52216,low,a low level or position or degree; "the stock market fell to a new low"
+52217,low depression,an air mass of lower pressure; often brings precipitation; "a low moved in over night bringing sleet and snow"
+52218,low-birth-weight_baby low-birth-weight_infant,an infant born weighing less than 5.5 pounds (2500 grams) regardless of gestational age; "a low-birth-weight infant is at risk for developing lack of oxygen during labor"
+52219,low-bush_blueberry low_blueberry Vaccinium_angustifolium Vaccinium_pennsylvanicum,low-growing deciduous shrub of northeastern North America having flowers in compact racemes and bearing sweet dark blue berries
+52220,low-calorie_diet,a diet that is low on calories
+52221,low-density_lipoprotein LDL beta-lipoprotein,a lipoprotein that transports cholesterol in the blood; composed of moderate amount of protein and a large amount of cholesterol; high levels are thought to be associated with increased risk of coronary heart disease and atherosclerosis
+52222,low-fat_diet,a diet containing limited amounts of fat and stressing foods high in carbohydrates; used in treatment of some gallbladder conditions
+52223,low-fat_milk,milk from which some of the cream has been removed
+52224,low-level_formatting initialization initialisation,(computer science) the format of sectors on the surface of a hard disk drive so that the operating system can access them and setting a starting position
+52225,low-level_radioactive_waste,(medicine) radioactive waste consisting of objects that have been briefly exposed to radioactivity (as in certain medical tests)
+52226,low-pass_filter,a filter that passes frequencies below a certain value and attenuates frequencies above that value
+52227,low-sodium_diet low-salt_diet salt-free_diet,a diet that limits the intake of salt (sodium chloride); often used in treating hypertension or edema or certain other disorders
+52228,low-warp-loom,a handloom in which the warp is carried horizontally; for weaving tapestry
+52229,low-water_mark,a line marking the lowest level reached
+52230,low_St_Andrew's_cross Hypericum_hypericoides,low shrubby plant having yellow flowers with four petals arranged in a cross; Bermuda and southeastern United States to West Indies and eastern Mexico
+52231,low_beam,the beam of a car's headlights that provides illumination for a short distance
+52232,low_blow,unscrupulous abuse
+52233,low_brass,brass with 30% (or less) zinc
+52234,low_comedy,a comedy characterized by slapstick and burlesque
+52235,low_explosive,an explosive with a low rate of combustion
+52236,low_frequency LF,30 to 300 kilohertz
+52237,low_gallberry_holly,an evergreen shrub
+52238,low_pitch low_frequency,a pitch that is perceived as below other pitches
+52239,low_profile,a state of low visibility in which public notice is avoided; "he was never one to keep a low profile"
+52240,low_spirits,a state of mild depression
+52241,low_status lowness lowliness,a position of inferior status; low in station or rank or fortune or estimation
+52242,low_tide low_water,the lowest (farthest) ebb of the tide
+52243,lowboy,a low chest or table with drawers and supported on four legs
+52244,lower_berth lower,the lower of two berths
+52245,lower_bound,(mathematics) a number equal to or less than any other number in a given set
+52246,lower_class underclass,the social class lowest in the social hierarchy
+52247,lower_criticism,the study of existing manuscripts of the Scriptures in order to determine the original text
+52248,lower_deck third_deck,the deck below the main deck
+52249,lower_jaw mandible mandibula mandibular_bone submaxilla lower_jawbone jawbone jowl,the jaw in vertebrates that is hinged to open the mouth
+52250,lower_limit,the limit on the lower (or southernmost) side of something
+52251,lower_mantle,the deeper part of the mantle
+52252,lower_respiratory_infection,infection of the lower respiratory tract
+52253,lower_respiratory_tract,the bronchi and lungs
+52254,lower_respiratory_tract_smear bronchoscopic_smear sputum_smear,any of several cytologic smears obtained from different parts of the lower respiratory tract; used for cytologic study of cancer and other diseases of the lungs
+52255,lowerclassman underclassman,an undergraduate who is not yet a senior
+52256,lowering,the act of causing to become less
+52257,lowering letting_down,the act of causing something to move to a lower level
+52258,lowest_common_multiple least_common_multiple lcm,the smallest multiple that is exactly divisible by every member of a set of numbers; "the least common multiple of 12 and 18 is 36"
+52259,lowland,low level country
+52260,lowland_burrowing_treefrog northern_casque-headed_frog Pternohyla_fodiens,terrestrial burrowing nocturnal frog of grassy terrain and scrub forests having very hard upper surface of head; of the United States southwest
+52261,lowland_fir lowland_white_fir giant_fir grand_fir Abies_grandis,lofty fir of the Pacific coast of northwestern America having long curving branches and deep green leaves
+52262,lowness,the quality of being low; lacking height; "he was suddenly aware of the lowness of the ceiling"
+52263,lowness,a low or small degree of any quality (amount or force or temperature etc.); "he took advantage of the lowness of interest rates"
+52264,lox,brine-cured salmon that is lightly smoked
+52265,loxapine Loxitane,a tranquilizer (trade name Loxitane) used to treat schizophrenia
+52266,loyalist stalwart,a person who is loyal to their allegiance (especially in times of revolt)
+52267,loyalty,feelings of allegiance
+52268,loyalty trueness,the quality of being loyal
+52269,lozenge,a small aromatic or medicated candy
+52270,luau,an elaborate Hawaiian feast or party (especially one accompanied by traditional foods and entertainment)
+52271,lubber's_hole,hole in a platform on a mast through which a sailor can climb without going out on the shrouds
+52272,lubber's_line lubber_line lubber's_mark lubber's_point,a fixed line on a ship's compass indicating its heading
+52273,lubricant lubricator lubricating_substance lube,a substance capable of reducing friction by making surfaces smooth or slippery
+52274,lubricating_system force-feed_lubricating_system force_feed pressure-feed_lubricating_system pressure_feed,mechanical system of lubricating internal combustion engines in which a pump forces oil into the engine bearings
+52275,lubrication,the condition of having been made smooth or slippery by the application of a lubricant
+52276,lubrication,an application of a lubricant to something
+52277,lucidity,a lucid state of mind; not confused
+52278,luciferin,pigment occurring in luminescent organisms (as fireflies); emits heatless light when undergoing oxidation
+52279,luck fortune,an unknown and unpredictable phenomenon that leads to a favorable outcome; "it was my good luck to be there"; "they say luck is a lady"; "it was as if fortune guided his hand"
+52280,luck fortune chance hazard,an unknown and unpredictable phenomenon that causes an event to result one way rather than another; "bad luck caused his downfall"; "we ran into each other by pure chance"
+52281,lucky_dip,a game in which prizes (e.g., candies or coins) are concealed in a container and for a small sum a player can draw one out at random
+52282,lucky_dip,a selection or decision purely at random; "their system of hiring people seemed to be a sort of lucky dip"
+52283,lucubration,a solemn literary work that is the product of laborious cogitation
+52284,lucubration,laborious cogitation
+52285,ludo,a simple board game in which players move counters according to the throw of dice
+52286,luff,(nautical) the forward edge of a fore-and-aft sail that is next to the mast
+52287,luff,the act of sailing close to the wind
+52288,luffa dishcloth_gourd sponge_gourd rag_gourd strainer_vine,any of several tropical annual climbers having large yellow flowers and edible young fruits; grown commercially for the mature fruit's dried fibrous interior that is used as a sponge
+52289,lug,a projecting piece that is used to lift or support or turn something
+52290,lug_wrench,a wrench with jaws that have projecting lugs to engage the object that is to be rotated
+52291,luge,a racing sled for one or two people
+52292,luger slider,someone who races the luge
+52293,luggage_carrier,carrier (as behind a bicycle seat) for luggage
+52294,luggage_compartment automobile_trunk trunk boot,compartment in an automobile that carries luggage or shopping or tools; "he put his golf bag in the trunk"
+52295,luggage_rack roof_rack,carrier for holding luggage above the seats of a train or on top of a car
+52296,lugger,small fishing boat rigged with one or more lugsails
+52297,luging,riding a light one-man toboggan
+52298,lugsail lug,a sail with four corners that is hoisted from a yard that is oblique to the mast
+52299,lugworm lug lobworm,marine worms having a row of tufted gills along each side of the back; often used for fishing bait
+52300,lukewarmness tepidity tepidness,a warmness resembling the temperature of the skin
+52301,lull quiet,a period of calm weather; "there was a lull in the storm"
+52302,lullaby cradlesong,the act of singing a quiet song to lull a child to sleep
+52303,lullaby cradlesong berceuse,a quiet song intended to lull a child to sleep
+52304,lumbago lumbar_pain,backache affecting the lumbar region or lower back; can be caused by muscle strain or arthritis or vascular insufficiency or a ruptured intervertebral disc
+52305,lumbar_artery arteria_lumbalis,one of four or five pairs of arteries that originate in the abdominal aorta and supply the lumbar vertebrae and the back muscles and abdominal wall
+52306,lumbar_nerve,any of five pairs of spinal nerves emerging from the lumbar section of the spinal cord
+52307,lumbar_plexus plexus_lumbalis,a lymphatic plexus located along the lower portion of the aorta and iliac vessels
+52308,lumbar_plexus plexus_lumbalis,a plexus of nerves formed by the ventral branches of the first four lumbar nerves
+52309,lumbar_puncture spinal_puncture spinal_tap,removal by centesis of fluid from the subarachnoid space of the lumbar region of the spinal cord for diagnostic or therapeutic purposes
+52310,lumbar_vein vena_lumbalis,veins that drain the posterior body wall and the lumbar vertebral venous plexuses
+52311,lumbar_vertebra,one of 5 vertebrae in the human vertebral column; lumbar vertebrae extend from the twelfth thoracic vertebra down to the sacral vertebrae
+52312,lumber timber,the wood of trees cut and prepared for use as building material
+52313,lumber_room,a storeroom in a house where odds and ends can be stored (especially furniture)
+52314,lumbering,the trade of cutting or preparing or selling timber
+52315,lumberjack lumber_jacket,a short warm outer jacket
+52316,lumberman lumberjack logger feller faller,a person who fells trees
+52317,lumbermill sawmill,a mill for dressing logs and lumber
+52318,lumberyard,a workplace where lumber is stocked for sale
+52319,lumbosacral_plexus,a nerve plexus formed by the ventral divisions of the coccygeal and sacral and lumbar nerves; supplies the lower limbs and perineum and coccygeal area
+52320,lumen,a cavity or passage in a tubular organ; "the lumen of the intestine"
+52321,lumen lm,a unit of luminous flux equal to the amount of light given out through a solid angle of 1 steradian by a point source of 1 candela intensity radiating uniformly in all directions
+52322,luminance_unit,a measure of luminance
+52323,luminary leading_light guiding_light notable notability,a celebrity who is an inspiration to others; "he was host to a large gathering of luminaries"
+52324,luminescence,light not due to incandescence; occurs at low temperatures
+52325,luminescence glow,light from nonthermal sources
+52326,luminism,an artistic movement in the United States that was derived from the Hudson River school; active from 1850 to 1870; painted realistic landscapes in a style that pictured atmospheric light and the use of aerial perspective
+52327,luminosity brightness brightness_level luminance luminousness light,the quality of being luminous; emitting or reflecting light; "its luminosity is measured relative to that of our sun"
+52328,luminous_energy,the energy associated with visible light
+52329,luminous_flux,the rate of flow of light energy
+52330,luminous_flux_unit,a measure of luminous flux per unit area
+52331,luminous_intensity_unit candlepower_unit,a measure of luminous intensity
+52332,lumma,100 lumma equal 1 dram in Armenia
+52333,lump_sugar,refined sugar molded into rectangular shapes convenient as single servings
+52334,lump_sum,a complete payment consisting of a single sum of money
+52335,lumpectomy,surgical removal of a tumor without removing much of the surrounding tissue or lymph nodes; performed in some cases of breast cancer
+52336,lumpenproletariat,(Marxism) the unorganized lower levels of the proletariat who are not interested in revolutionary advancement
+52337,lumper,a taxonomist who classifies organisms into large groups on the basis of major characteristics
+52338,lumpfish Cyclopterus_lumpus,clumsy soft thick-bodied northern Atlantic fish with pelvic fins fused into a sucker; edible roe used for caviar
+52339,lumpsucker,any of several very small lumpfishes
+52340,luna_moth Actias_luna,large pale-green American moth with long-tailed hind wings and a yellow crescent-shaped mark on each forewing
+52341,lunacy madness insaneness,obsolete terms for legal insanity
+52342,lunar_calendar,a calendar based on lunar cycles
+52343,lunar_caustic,silver nitrate fused into sticks and formerly used as a caustic
+52344,lunar_crater,a crater on the Earth's Moon
+52345,lunar_day,the period of time taken for the moon to make one full rotation on its axis (about 27.3 sidereal days)
+52346,lunar_eclipse,the earth interrupts light shining on the moon
+52347,lunar_excursion_module lunar_module LEM,a spacecraft that carries astronauts from the command module to the surface of the moon and back
+52348,lunar_latitude,an imaginary line around the moon parallel to its equator
+52349,lunar_month moon lunation synodic_month,the period between successive new moons (29.531 days)
+52350,lunar_year,a period of 12 lunar months
+52351,lunate_bone semilunar_bone os_lunatum,one of the eight small wrist bones
+52352,lunatic madman maniac,an insane person
+52353,lunatic_fringe,a political unit with extreme and fanatical views
+52354,lunch luncheon tiffin dejeuner,a midday meal
+52355,lunch_meat luncheon_meat,any of various sausages or molded loaf meats sliced and served cold
+52356,luncheon_meeting lunch_meeting,a meeting for lunch; usually to conduct business while eating
+52357,luncher,someone who is eating lunch
+52358,lunching,the act of eating lunch
+52359,lunchroom,a restaurant (in a facility) where lunch can be purchased
+52360,lunchtime lunch_period,the customary or habitual hour for eating lunch; "he observed a regular lunchtime"
+52361,lunette,temporary fortification like a detached bastion
+52362,lunette fenestella,oval or circular opening; to allow light into a dome or vault
+52363,lung,either of two saclike respiratory organs in the chest of vertebrates; serves to remove carbon dioxide and provide oxygen to the blood
+52364,lung-power,the ability to speak loudly
+52365,lung_cancer,carcinoma of the lungs; one of the commonest forms of cancer
+52366,lunge straight_thrust passado,(fencing) an attacking thrust made with one foot forward and the back leg straight and with the sword arm outstretched forward
+52367,lunger,someone who moves forward suddenly (as in fencing)
+52368,lungfish,air-breathing fish having an elongated body and fleshy paired fins; certain species construct mucus-lined mud coverings in which to survive drought
+52369,lungi lungyi longyi,a long piece of brightly colored cloth (cotton or silk) used as clothing (a skirt or loincloth or sash etc.) in India and Pakistan and Burma
+52370,lungless_salamander plethodont,mostly terrestrial salamanders that breathe through their thin moist skin; lay eggs in moist places on land; rarely enter water
+52371,lunisolar_calendar,a calendar based on both lunar and solar cycles
+52372,lunitidal_interval,interval between the moon's transit of a particular meridian and the next high tide at that meridian
+52373,lunula,a crescent-shaped metal ornament of the Bronze Age
+52374,lupine lupin,any plant of the genus Lupinus; bearing erect spikes of usually purplish-blue flowers
+52375,lupus,any of several forms of ulcerative skin disease
+52376,lupus_erythematosus LE,a chronic inflammatory collagen disease affecting connective tissue (skin or joints)
+52377,lupus_vulgaris,tuberculosis of the skin; appears first on the face and heals slowly leaving deep scars
+52378,lurch,a decisive defeat in a game (especially in cribbage)
+52379,lurch lunge,the act of moving forward suddenly
+52380,lurch pitch pitching,abrupt up-and-down motion (as caused by a ship or other conveyance); "the pitching and tossing was quite exciting"
+52381,lurch stumble stagger,an unsteady uneven gait
+52382,lure enticement come-on,qualities that attract by seeming to promise some kind of reward
+52383,lurker skulker lurcher,someone waiting in concealment
+52384,lurking_place,a place suitable for lurking
+52385,lust luxuria,self-indulgent sexual desire (personified as one of the deadly sins)
+52386,luster lustre,a surface coating for ceramics or porcelain
+52387,luster lustre brilliancy splendor splendour,a quality that outshines the usual
+52388,lusterware,pottery with a metallic sheen produced by adding metallic oxides to the glaze
+52389,lustrum,a period of five years
+52390,lustrum,a ceremonial purification of the Roman population every five years following the census
+52391,lute,chordophone consisting of a plucked instrument having a pear-shaped body, a usually bent neck, and a fretted fingerboard
+52392,lute luting,a substance for packing a joint or coating a porous surface to make it impervious to gas or liquid
+52393,lutefisk lutfisk,dried cod soaked in a lye solution before boiling to give it a gelatinous consistency
+52394,luteinizing_hormone LH interstitial_cell-stimulating_hormone ICSH,a gonadotropic hormone that is secreted by the anterior pituitary; stimulates ovulation in female mammals and stimulates androgen release in male mammals
+52395,lutetium lutecium Lu atomic_number_71,a trivalent metallic element of the rare earth group; usually occurs in association with yttrium
+52396,luthier,a craftsman who makes stringed instruments (as lutes or guitars or violins)
+52397,lutist lutanist lutenist,a musician who plays the lute
+52398,lux lx,a unit of illumination equal to 1 lumen per square meter; 0.0929 foot candle
+52399,luxation,displacement or misalignment of a joint or organ
+52400,luxuriance lushness voluptuousness,the property of being lush and abundant and a pleasure to the senses
+52401,luxuriation,an activity that affords excessive pleasure and enjoyment
+52402,luxury,something that is an indulgence rather than a necessity
+52403,luxury luxuriousness opulence sumptuousness,wealth as evidenced by sumptuous living
+52404,luxury_liner express_luxury_liner,a liner equipped for sumptuous living
+52405,lwei,100 lwei equal 1 kwanza in Angola
+52406,lycaenid lycaenid_butterfly,any of various butterflies of the family Lycaenidae
+52407,lycanthropy,(folklore) the magical ability of a person to assume the characteristics of a wolf
+52408,lyceum,a public hall for lectures and concerts
+52409,lychgate lichgate,a roofed gate to a churchyard, formerly used as a temporary shelter for the bier during funerals
+52410,lychnis catchfly,mostly perennial herbs with sticky stems that catch insects; widespread in north temperate zone
+52411,lycopene,carotenoid that makes tomatoes red; may lower the risk of prostate cancer
+52412,lye,a strong solution of sodium or potassium hydroxide
+52413,lye_hominy,hominy prepared by bleaching in lye
+52414,lygaeid lygaeid_bug,a true bug: usually bright-colored; pest of cultivated crops and some fruit trees
+52415,lygus_bug,vector of viral plant diseases
+52416,lying prevarication fabrication,the deliberate act of deviating from the truth
+52417,lymantriid tussock_moth,dull-colored moth whose larvae have tufts of hair on the body and feed on the leaves of many deciduous trees
+52418,lyme_grass,a grass of the genus Elymus
+52419,lymph,a thin coagulable fluid (similar to plasma but) containing white blood cells (lymphocytes) and chyle; is conveyed to the blood stream by lymphatic vessels
+52420,lymph_node lymph_gland node,the source of lymph and lymphocytes
+52421,lymph_vessel lymphatic_vessel,a vascular duct that carries lymph which is eventually added to the venous blood circulation
+52422,lymphadenitis,inflammation of lymph nodes
+52423,lymphadenoma,an abnormally enlarged lymph node
+52424,lymphadenopathy,chronic abnormal enlargement of the lymph nodes (usually associated with disease)
+52425,lymphangiectasia lymphangiectasis,dilatation of a lymph vessel
+52426,lymphangiogram,an angiogram of the lymph nodes and lymph vessels made after the injection of a radiopaque substance
+52427,lymphangiography lymphography,roentgenographic examination of lymph nodes and lymph vessels after injection of a radiopaque contrast medium; produces a lymphangiogram
+52428,lymphangioma,benign angioma consisting of a mass of lymphatic vessels
+52429,lymphangitis,inflammation of a lymph vessel
+52430,lymphatic_system systema_lymphaticum,the interconnected system of spaces and vessels between body tissues and organs by which lymph circulates throughout the body
+52431,lymphatic_tissue lymphoid_tissue,tissue making up the lymphatic system
+52432,lymphedema,swelling (usually in the legs) caused by lymph accumulating in the tissues in the affected areas
+52433,lymphoblast,an immature lymphocyte
+52434,lymphoblastic_leukemia,a form of lymphocytic leukemia in which the abnormal cells in the circulating blood are almost totally lymphoblasts
+52435,lymphocyte lymph_cell,an agranulocytic leukocyte that normally makes up a quarter of the white blood cell count but increases in the presence of infection
+52436,lymphocytic_choriomeningitis,a form of viral meningitis caused by a virus carried by the common house mouse
+52437,lymphocytic_choriomeningitis_virus,the RNA virus that causes lymphocytic choriomeningitis; infects mice and monkeys and dogs and guinea pigs and human beings
+52438,lymphocytic_leukemia,leukemia characterized by enlargement of lymphoid tissues and lymphocytic cells in the circulating blood
+52439,lymphocytopenia lymphopenia,an abnormally small number of lymphocytes in the circulating blood
+52440,lymphocytosis,an abnormal increase in the number of lymphocytes in the circulating blood
+52441,lymphogranuloma,swelling of a lymph node
+52442,lymphogranuloma_venereum LGV lymphopathia_venereum,infectious disease caused by a species of chlamydia bacterium; transmitted by sexual contact; characterized by genital lesions and swelling of lymph nodes in the groin
+52443,lymphokine,a cytokine secreted by helper T cells in response to stimulation by antigens and that acts on other cells of the immune system (as by activating macrophages)
+52444,lymphoma,a neoplasm of lymph tissue that is usually malignant; one of the four major types of cancer
+52445,lymphopoiesis,the formation of lymphocytes in the bone marrow and lymph nodes and thymus and spleen
+52446,lymphuria,the presence of lymph in the urine
+52447,lynch_law,the practice of punishing people by hanging without due process of law
+52448,lynch_mob,a mob that kills a person for some presumed offense without legal authority
+52449,lynching,putting a person to death by mob action without due process of law
+52450,lynx,a text browser
+52451,lynx catamount,short-tailed wildcats with usually tufted ears; valued for their fur
+52452,lypressin,an antidiuretic and vasoconstrictor used to treat diabetes insipidus
+52453,lyrate_leaf,a simple leaf having curvature suggestive of a lyre
+52454,lyre,a harp used by ancient Greeks for accompaniment
+52455,lyre_snake,mildly venomous snake with a lyre-shaped mark on the head; found in rocky areas from southwestern United States to Central America
+52456,lyrebird,Australian bird that resembles a pheasant; the courting male displays long tail feathers in a lyre shape
+52457,lyric lyric_poem,a short poem of songlike quality
+52458,lyric words language,the text of a popular song or musical-comedy number; "his compositions always started with the lyrics"; "he wrote both words and music"; "the song uses colloquial language"
+52459,lyricality lyricism songfulness,the property of being suitable for singing
+52460,lyricism,unrestrained and exaggerated enthusiasm
+52461,lyricist lyrist,a person who writes the words for songs
+52462,lysergic_acid,a crystalline acid often used in medical research; obtained from ergotic alkaloids
+52463,lysergic_acid_diethylamide LSD,a powerful hallucinogenic drug manufactured from lysergic acid
+52464,lysin,any substance (such as an antibody) or agent that can cause lysis
+52465,lysine,an essential amino acid found in proteins; occurs especially in gelatin and casein
+52466,lysine_intolerance,a disorder in which a lack of certain enzymes makes it impossible to digest the amino acid lysine
+52467,lysinemia,an inborn error of metabolism in which the lack of certain enzymes leads to an inability to metabolize the amino acid lysine; characterized by muscular weakness and mental retardation
+52468,lysis,recuperation in which the symptoms of an acute disease gradually subside
+52469,lysis,(biochemistry) dissolution or destruction of cells such as blood cells or bacteria
+52470,lysogenization lysogenisation,the process by which a bacterium acquires a phage that becomes integrated into its genome
+52471,lysogeny lysogenicity,the condition of a host bacterium that has incorporated a phage into its own genetic material; "when a phage infects a bacterium it can either destroy its host or be incorporated in the host genome in a state of lysogeny"
+52472,lysosome,an organelle found in the cytoplasm of most cells (especially in leukocytes and liver and kidney cells)
+52473,lysozyme muramidase,an enzyme found in saliva and sweat and tears that destroys the cell walls of certain bacteria
+52474,lyssavirus,a neurotropic non-arbovirus of the family Rhabdoviridae that causes rabies
+52475,ma mama mamma mom momma mommy mammy mum mummy,informal terms for a mother
+52476,maar,a flat-bottomed volcanic crater that was formed by an explosion; often filled with water
+52477,macadam,broken stone used in macadamized roadways
+52478,macadamia macadamia_tree,any tree of the genus Macadamia
+52479,macadamia_nut,nutlike seed with sweet and crisp white meat
+52480,macadamia_nut macadamia_nut_tree Macadamia_ternifolia,small Australian tree with racemes of pink flowers; widely cultivated (especially in Hawaii) for its sweet edible nuts
+52481,macaque,short-tailed monkey of rocky regions of Asia and Africa
+52482,macaroni,a British dandy in the 18th century who affected Continental mannerisms; "Yankee Doodle stuck a feather in his cap and called it macaroni"
+52483,macaroni,pasta in the form of slender tubes
+52484,macaroni_and_cheese,macaroni prepared in a cheese sauce
+52485,macaroni_salad,having macaroni as the base
+52486,macaroon,chewy cookie usually containing almond paste
+52487,macaw,long-tailed brilliantly colored parrot of Central America and South America; among the largest and showiest of parrots
+52488,mace,spice made from the dried fleshy covering of the nutmeg seed
+52489,mace,a ceremonial staff carried as a symbol of office or authority
+52490,macebearer mace macer,an official who carries a mace of office
+52491,macedoine,mixed diced fruits or vegetables; hot or cold
+52492,maceration,softening due to soaking or steeping
+52493,machete matchet panga,a large heavy knife used in Central and South America as a weapon or for cutting vegetation
+52494,machicolation,a projecting parapet supported by corbels on a medieval castle; has openings through which stones or boiling water could be dropped on an enemy
+52495,machine,an efficient person; "the boxer was a magnificent fighting machine"
+52496,machine,an intricate organization that accomplishes its goals efficiently; "the war machine"
+52497,machine,any mechanical or electrical device that transmits or modifies energy to perform or assist in the performance of human tasks
+52498,machine political_machine,a group that controls the activities of a political party; "he was endorsed by the Democratic machine"
+52499,machine simple_machine,a device for overcoming resistance at one point by applying force at some other point
+52500,machine-displayable_text,electronic text that is stored and used in the form of a digital image
+52501,machine-readable_text,electronic text that is stored as strings of characters and that can be displayed in a variety of formats
+52502,machine_bolt,a bolt with a square or hexagonal head on one end and a threaded shaft on the other end; tightened with a wrench; used to connect metal parts
+52503,machine_code machine_language,a set of instructions coded so that the computer can use it directly without further translation
+52504,machine_gun,a rapidly firing automatic gun (often mounted)
+52505,machine_politician ward-heeler political_hack hack,a politician who belongs to a small clique that controls a political party for private rather than public ends
+52506,machine_readable_dictionary MRD electronic_dictionary,a machine-readable version of a standard dictionary; organized alphabetically
+52507,machine_screw,a screw used either with a nut or with a tapped hole; slotted head can be driven by a screwdriver
+52508,machine_shop,workshop where metal is cut and shaped etc., by machine tools
+52509,machine_stitch sewing-machine_stitch,a sewing stitch made by a sewing machine, sometimes using more than one thread
+52510,machine_tool,a powered machine for cutting or shaping or finishing metals or other materials
+52511,machine_translation MT,the use of computers to translate from one language to another
+52512,machinery,a system of means and activities whereby a social institution functions; "the complex machinery of negotiation"; "the machinery of command labored and brought forth an order"
+52513,machinery,machines or machine systems collectively
+52514,machinist mechanic shop_mechanic,a craftsman skilled in operating machine tools
+52515,machinist's_vise metalworking_vise,a vise with two parallel iron jaws and a wide opening below
+52516,machismo,exaggerated masculinity
+52517,machmeter,speedometer for measuring the speed of an aircraft relative to the speed of sound
+52518,macho,a male exhibiting or characterized by machismo
+52519,macintosh mackintosh mac mack,a waterproof raincoat made of rubberized fabric
+52520,mackerel,flesh of very important usually small (to 18 in) fatty Atlantic fish
+52521,mackerel,any of various fishes of the family Scombridae
+52522,mackerel_scad mackerel_shad Decapterus_macarellus,small silvery fish; Nova Scotia to Brazil
+52523,mackerel_shark,fierce pelagic and oceanic sharks
+52524,mackerel_sky,a sky filled with rows of cirrocumulus or small altocumulus clouds
+52525,mackinaw,a heavy woolen cloth heavily napped and felted, often with a plaid design
+52526,mackinaw Mackinaw_blanket,a thick plaid blanket formerly used in the northwestern United States
+52527,mackinaw Mackinaw_boat,a flat-bottomed boat used on upper Great Lakes
+52528,mackinaw Mackinaw_coat,a short plaid coat made of made of thick woolen material
+52529,mackintosh macintosh,a lightweight waterproof (usually rubberized) fabric
+52530,mackle,a printed impression that is blurred or doubled
+52531,macon maconnais,fine Burgundy wine usually white and dry
+52532,macrame,a relatively coarse lace; made by weaving and knotting cords
+52533,macrencephaly,an abnormally large braincase
+52534,macro macro_instruction,a single computer instruction that results in a series of instructions in machine language
+52535,macrobiotic_diet,a diet consisting chiefly of beans and whole grains
+52536,macrobiotics,the theory of promoting health and longevity by means of diet (especially whole beans and grains)
+52537,macrocephaly megacephaly megalocephaly,an abnormally large head; differs from hydrocephalus because there is no increased intracranial pressure and the overgrowth is symmetrical
+52538,macrocytic_anemia macrocytic_anaemia,anemia in which the average size of erythrocytes is larger than normal
+52539,macrocytosis,the presence of macrocytes in the blood
+52540,macroeconomics,the branch of economics that studies the overall working of a national economy
+52541,macroeconomist macroeconomic_expert,an economist who specializes in macroeconomics
+52542,macroevolution,evolution on a large scale extending over geologic era and resulting in the formation of new taxonomic groups
+52543,macroglossia,a congenital disorder characterized by an abnormally large tongue; often seen in cases of Down's syndrome
+52544,macromolecule supermolecule,any very large complex molecule; found only in plants and animals
+52545,macron,a diacritical mark (-) placed above a vowel to indicate a long sound
+52546,macrophage,a large phagocyte; some are fixed and other circulate in the blood stream
+52547,macrotus Macrotus_californicus,large-eared greyish bat of southern California and northwestern Mexico
+52548,macrozamia,any treelike cycad of the genus Macrozamia having erect trunks and pinnate leaves and large cones with sometimes edible nuts; Australia
+52549,macula macula_lutea macular_area yellow_spot,a small yellowish central area of the retina that is rich in cones and that mediates clear detailed vision
+52550,macular_degeneration,eye disease caused by degeneration of the cells of the macula lutea and results in blurred vision; can cause blindness
+52551,macular_edema,an eye disease caused by a swelling of the macula resulting from leakage and accumulation of fluid
+52552,macule macula,a patch of skin that is discolored but not usually elevated; caused by various diseases
+52553,macumba,(Brazil) followers of a religious cult of African origin
+52554,macumba,popular dance music of Brazil; derived from the practices of the macumba religious cult
+52555,macumba,a Brazilian religious cult of African origin; combines voodoo elements with singing and chanting and dancing
+52556,macushla,(an Irish term of address expressing affection) darling
+52557,madam brothel_keeper,a woman who runs a house of prostitution
+52558,madame,title used for a married Frenchwoman
+52559,madder Rubia_tinctorum,Eurasian herb having small yellow flowers and red roots formerly an important source of the dye alizarin
+52560,madderwort rubiaceous_plant,any of numerous trees or shrubs or vines of the family Rubiaceae
+52561,madia_oil,used as a substitute for olive oil
+52562,madness rabidity rabidness,unrestrained excitement or enthusiasm; "poetry is a sort of divine madness"
+52563,madras,a light patterned cotton cloth
+52564,madrasa madrasah,Muslim schools in Bangladesh and Pakistan; "the Pakistan government decided to close down madrasas that provided military training for their students"; "many madrasas in Bangladesh are supported with money from Saudi Arabia"
+52565,madrigal,an unaccompanied partsong for 2 or 3 voices; follows a strict poetic form
+52566,madrigalist,a singer of madrigals
+52567,madrilene,a tomato-flavored consomme; often served chilled
+52568,madrona madrono manzanita Arbutus_menziesii,evergreen tree of the Pacific coast of North America having glossy leathery leaves and orange-red edible berries; wood used for furniture and bark for tanning
+52569,madwoman,a woman lunatic
+52570,maenad,an unnaturally frenzied or distraught woman
+52571,maenad,(Greek mythology) a woman participant in the orgiastic rites of Dionysus
+52572,maestro master,an artist of consummate skill; "a master of the violin"; "one of the old masters"
+52573,mafia maffia,any tightly knit group of trusted associates
+52574,mafioso,a member of the Sicilian Mafia
+52575,mafioso,a member of the Mafia crime syndicate in the United States
+52576,magazine,product consisting of a paperback periodic publication as a physical object; "tripped over a pile of magazines"
+52577,magazine cartridge,a light-tight supply chamber holding the film and supplying it for exposure as required
+52578,magazine mag,a periodic publication containing pictures and stories and articles of interest to those who purchase it or subscribe to it; "it takes several years before a magazine starts to break even or make money"
+52579,magazine magazine_publisher,a business firm that publishes magazines; "he works for a magazine"
+52580,magazine powder_store powder_magazine,a storehouse (as a compartment on a warship) where weapons and ammunition are stored
+52581,magazine_article,an article published in a magazine
+52582,magazine_rack,a rack for displaying magazines
+52583,magdalen,a reformed prostitute
+52584,magenta,a primary subtractive color for light; a dark purple-red color; the dye for magenta was discovered in 1859, the year of the battle of Magenta
+52585,maggot,the larva of the housefly and blowfly commonly found in decaying organic matter
+52586,magic thaumaturgy,any art that invokes supernatural powers
+52587,magic_bullet,a remedy (drug or therapy or preventive) that cures or prevents a disease; "there is no magic bullet against cancer"
+52588,magic_lantern,an early form of slide projector
+52589,magic_number,the atomic number of an extra stable strongly bound atomic nucleus: 2, 8, 20, 28, 50, 82 or 126
+52590,magic_realism,a literary or artistic genre in which realistic narrative or meticulously realistic painting are combined with surreal elements of fantasy or dreams
+52591,magic_square,a square matrix of n rows and columns; the first n^2 integers are arranged in the cells of the matrix in such a way that the sum of any row or column or diagonal is the same
+52592,magic_trick conjuring_trick trick magic legerdemain conjuration thaumaturgy illusion deception,an illusory feat; considered magical by naive observers
+52593,magical_ability magical_power,an ability to perform magic
+52594,magician prestidigitator conjurer conjuror illusionist,someone who performs magic tricks to amuse an audience
+52595,magistracy magistrature,the position of magistrate
+52596,magistrate,a lay judge or civil authority who administers the law (especially one who conducts a court dealing with minor offenses)
+52597,magma,molten rock in the earth's crust
+52598,magnesite,a white mineral consisting of magnesium carbonate; a source of magnesium
+52599,magnesium Mg atomic_number_12,a light silver-white ductile bivalent metallic element; in pure form it burns with brilliant white flame; occurs naturally only in combination (as in magnesite and dolomite and carnallite and spinel and olivine)
+52600,magnesium_bicarbonate,a bicarbonate that is a major cause of hard water
+52601,magnesium_carbonate,a very white crystalline salt that occurs naturally as magnesite or as dolomite
+52602,magnesium_hydroxide,a white crystalline powder used chiefly in medicines
+52603,magnesium_nitride,a nitride containing nitrogen and magnesium
+52604,magnesium_sulfate,a salt of magnesium
+52605,magnet,(physics) a device that attracts iron and produces a magnetic field
+52606,magnetic_bottle,container consisting of any configuration of magnetic fields used to contain a plasma during controlled thermonuclear reactions
+52607,magnetic_bubble_memory,a nonvolatile storage device that holds information in the form of bubbles on a thin film of magnetic silicate; no longer used in most computers
+52608,magnetic_compass,compass based on an indicator (as a magnetic needle) that points to the magnetic north
+52609,magnetic_core_memory core_memory,(computer science) a computer memory consisting of an array of magnetic cores; now superseded by semiconductor memories
+52610,magnetic_declination magnetic_variation variation,the angle (at a particular location) between magnetic north and true north
+52611,magnetic_dipole,a dipole with opposing magnetic poles
+52612,magnetic_dipole_moment,(physics) a current loop gives rise to a magnetic field characteristic of a magnetic dipole; "An orbiting electron in an atom will have a magnetic dipole moment"
+52613,magnetic_disk magnetic_disc disk disc,(computer science) a memory device consisting of a flat disk covered with a magnetic coating on which information is stored
+52614,magnetic_field magnetic_flux flux,the lines of force surrounding a permanent magnet or a moving charged particle
+52615,magnetic_field_strength magnetic_intensity magnetic_induction magnetic_flux_density,the amount of magnetic flux in a unit area perpendicular to the direction of magnetic flow
+52616,magnetic_flux,a measure of the strength of a magnetic field over a given area
+52617,magnetic_head,an electromagnet (as on a tape recorder) that converts electrical variations into magnetic variations that can be stored on a surface and later retrieved
+52618,magnetic_ink,an ink that contains particles of a magnetic substance whose presence can be detected by magnetic sensors
+52619,magnetic_levitation maglev,high-speed rail technology; train is suspended on a magnetic cushion above a magnetized track and so travels free of friction
+52620,magnetic_line_of_force,a line of force in a magnetic field
+52621,magnetic_meridian,an imaginary line passing through both magnetic poles of the Earth
+52622,magnetic_mine,(nautical) a marine mine that is detonated by a mechanism that responds to magnetic material (as the steel hull of a ship)
+52623,magnetic_moment moment_of_a_magnet,the torque exerted on a magnet or dipole when it is placed in a magnetic field
+52624,magnetic_monopole,a hypothetical particle with a single magnetic pole instead of the usual two
+52625,magnetic_needle,a slender magnet suspended in a magnetic compass on a mounting with little friction; used to indicate the direction of the earth's magnetic pole
+52626,magnetic_pole,either of two points where the lines of force of the Earth's magnetic field are vertical
+52627,magnetic_recorder,recorder consisting of equipment for making records on magnetic media
+52628,magnetic_resonance,resonance of electrons or atoms or molecules or nuclei to radiation frequencies as a result of space quantization in a magnetic field
+52629,magnetic_resonance_imaging MRI,the use of nuclear magnetic resonance of protons to produce proton density images
+52630,magnetic_storage_medium magnetic_medium magnetic_storage,any storage medium in which different patterns of magnetization are used to represent stored bits or bytes of information; "the hard disk in you computer is magnetic storage"
+52631,magnetic_storm,a sudden disturbance of the earth's magnetic field; caused by emission of particles from the sun
+52632,magnetic_stripe,a short strip of magnetic tape attached to a credit card or debit card; it contains data that will tell a reading device who you are and what your account number is, etc.
+52633,magnetic_tape mag_tape tape,memory device consisting of a long thin plastic strip coated with iron oxide; used to record audio or video signals or to store computer information; "he took along a dozen tapes to record the interview"
+52634,magnetism magnetic_attraction magnetic_force,attraction for iron; associated with electric currents as well as magnets; characterized by fields of force
+52635,magnetism magnetics,the branch of science that studies magnetism
+52636,magnetite magnetic_iron-ore,an oxide of iron that is strongly attracted by magnets
+52637,magnetization magnetisation,the extent or degree to which something is magnetized
+52638,magnetization magnetisation,the physical property of being magnetic
+52639,magnetization magnetisation magnetic_induction,the process that makes a substance magnetic (temporarily or permanently)
+52640,magneto magnetoelectric_machine,a small dynamo with a secondary winding that produces a high voltage enabling a spark to jump between the poles of a spark plug in a gasoline engine
+52641,magnetograph,a scientific instrument that registers magnetic variations (especially variations of the earth's magnetic field)
+52642,magnetohydrodynamics,the study of the interaction of magnetic fields and electrically conducting fluids (as plasma or molten metal)
+52643,magnetometer gaussmeter,a meter to compare strengths of magnetic fields
+52644,magnetomotive_force,the force that produces magnetic flux
+52645,magnetomotive_force_unit,a unit of measurement of magnetomotive force
+52646,magneton,a unit of magnetic moment of a molecular or atomic or subatomic particle
+52647,magnetosphere,the magnetic field of a planet; the volume around the planet in which charged particles are subject more to the planet's magnetic field than to the solar magnetic field
+52648,magnetron,a diode vacuum tube in which the flow of electrons from a central cathode to a cylindrical anode is controlled by crossed magnetic and electric fields; used mainly in microwave oscillators
+52649,magnification,the ratio of the size of an image to the size of the object
+52650,magnification,the act of expanding something in apparent size
+52651,magnificence brilliance splendor splendour grandeur grandness,the quality of being magnificent or splendid or grand; "for magnificence and personal service there is the Queen's hotel"; "his `Hamlet' lacks the brilliance that one expects"; "it is the university that gives the scene its stately splendor"; "an imaginative mix of old-fashioned grandeur and colorful art"; "advertisers capitalize on the grandness and elegance it brings to their products"
+52652,magnifico,a person of distinguished rank or appearance
+52653,magnifier,a scientific instrument that magnifies an image
+52654,magnitude,relative importance; "a problem of the first magnitude"
+52655,magnitude,the property of relative size or extent (whether large or small); "they tried to predict the magnitude of the explosion"; "about the magnitude of a small pea"
+52656,magnitude_relation quantitative_relation,a relation between magnitudes
+52657,magnolia,dried bark of various magnolias; used in folk medicine
+52658,magnolia,any shrub or tree of the genus Magnolia; valued for their longevity and exquisite fragrant blooms
+52659,magnoliid_dicot_family,family of dicotyledonous flowering plants regarded as among the most primitive of extant angiosperms
+52660,magnoliid_dicot_genus,genus of dicotyledonous flowering plants regarded as among the most primitive of extant angiosperms
+52661,magnum,a large wine bottle for liquor or wine
+52662,magnum_opus,a great work of art or literature
+52663,magnus_hitch,a rolling hitch similar to a clove hitch
+52664,magpie,long-tailed black-and-white crow that utters a raucous chattering call
+52665,magpie scavenger pack_rat,someone who collects things that have been discarded by others
+52666,maguey Agave_atrovirens,Mexican plant used especially for making pulque which is the source of the colorless Mexican liquor, mescal
+52667,maguey cantala Agave_cantala,Philippine plant yielding a hard fibre used in making coarse twine
+52668,magus,a magician or sorcerer of ancient times
+52669,magus,a member of the Zoroastrian priesthood of the ancient Persians
+52670,maharaja maharajah,a great raja; a Hindu prince or king in India ranking above a raja
+52671,maharani maharanee,a great rani; a princess in India or the wife of a maharaja
+52672,mahatma,(Hinduism) term of respect for a brahmin sage
+52673,mahoe majagua mahagua balibago purau Hibiscus_tiliaceus,shrubby tree widely distributed along tropical shores; yields a light tough wood used for canoe outriggers and a fiber used for cordage and caulk; often cultivated for ornament
+52674,mahogany,wood of any of various mahogany trees; much used for cabinetwork and furniture
+52675,mahogany mahogany_tree,any of various tropical timber trees of the family Meliaceae especially the genus Swietinia valued for their hard yellowish- to reddish-brown wood that is readily worked and takes a high polish
+52676,mahout,the driver and keeper of an elephant
+52677,mahuang Ephedra_sinica,Chinese ephedra yielding ephedrine
+52678,maid maiden,an unmarried girl (especially a virgin)
+52679,maid maidservant housemaid amah,a female domestic
+52680,maiden_aunt,an unmarried aunt
+52681,maiden_blue-eyed_Mary Collinsia_parviflora,small widely branching western plant with tiny blue-and-white flowers; British Columbia to Ontario and south to California and Colorado
+52682,maiden_flight,the first flight of its kind; "the Stealth bomber made its maiden flight in 1989"
+52683,maiden_name,a woman's surname before marriage
+52684,maiden_over maiden,(cricket) an over in which no runs are scored
+52685,maiden_pink Dianthus_deltoides,low-growing loosely mat-forming Eurasian pink with a single pale pink flower with a crimson center
+52686,maiden_voyage,the first voyage of its kind; "in 1912 the ocean liner Titanic sank on its maiden voyage"
+52687,maidenhair maidenhair_fern,any of various small to large terrestrial ferns of the genus Adiantum having delicate palmately branched fronds
+52688,maidenhair_spleenwort Asplenium_trichomanes,small rock-inhabiting fern of northern temperate zone and Hawaii with pinnate fronds
+52689,maidenliness,behavior befitting a young maiden
+52690,maigre maiger Sciaena_aquila,large European marine food fish
+52691,mail,the bags of letters and packages that are transported by the postal service
+52692,mail,a conveyance that transports the letters and packages that are conveyed by the postal system
+52693,mail mail_service postal_service post,the system whereby messages are transmitted via the post office; "the mail handles billions of items every day"; "he works for the United States mail service"; "in England they call mail `the post'"
+52694,mail post,any particular collection of letters or packages that is delivered; "your mail is on the table"; "is there any post for me?"; "she was opening her post"
+52695,mail-order_buying catalog_buying,buying goods to be shipped through the mail
+52696,mail_call,a call of names of those receiving mail
+52697,mail_car,a railway car in which mail is transported and sorted
+52698,mail_fraud,use of the mails to defraud someone
+52699,mail_order,a purchase negotiated by mail
+52700,mail_slot,a slot (usually in a door) through which mail can be delivered
+52701,mail_train,a train that carries mail
+52702,mailbag mail_pouch,pouch used in the shipment of mail
+52703,mailbag postbag,letter carrier's shoulder bag; "in Britain they call a mailbag a postbag"
+52704,mailboat mail_boat packet packet_boat,a boat for carrying mail
+52705,mailbox letter_box,a private box for delivery of mail
+52706,maildrop,a drop where mail can be deposited
+52707,mailer,a person who mails something
+52708,mailer,an advertisement that is sent by mail
+52709,mailer,a container for something to be mailed
+52710,mailing,mail sent by a sender at one time; "the candidate sent out three large mailings"
+52711,mailing posting,the transmission of a letter; "the postmark indicates the time of mailing"
+52712,mailing_address,the address where a person or organization can be communicated with
+52713,mailing_list,a list of names and addresses to which advertising material is mailed
+52714,maillot,tights for dancers or gymnasts
+52715,maillot tank_suit,a woman's one-piece bathing suit
+52716,mailman postman mail_carrier letter_carrier carrier,a man who delivers the mail
+52717,mailsorter,a sorter for sorting mail according to the address
+52718,main,a principal pipe in a system that distributes water or gas or electricity or that collects sewage
+52719,main briny,any very large body of (salt) water
+52720,main-topmast,the topmast next above the mainmast
+52721,main-topsail,a topsail set on the mainmast
+52722,main_clause independent_clause,a clause in a complex sentence that can stand alone as a complete sentence
+52723,main_course,a square mainsail
+52724,main_deck second_deck,the uppermost sheltered deck that runs the entire length of a large vessel
+52725,main_diagonal principal_diagonal,the diagonal of a square matrix running from the upper left entry to the lower right entry
+52726,main_drag,the main street of a town or city
+52727,main_line,the principal route of a transportation system
+52728,main_rotor,rotor consisting of large rotating airfoils on a single-rotor helicopter that produce the lift to support the helicopter in the air
+52729,main_street high_street,street that serves as a principal thoroughfare for traffic in a town
+52730,main_yard,yard for a square mainsail
+52731,mainframe mainframe_computer,a large digital computer serving 100-400 users and occupying a special air-conditioned room
+52732,mainland,the main land mass of a country or continent; as distinguished from an island or peninsula
+52733,mainmast,the chief mast of a sailing vessel with two or more masts
+52734,mainsail,the lowermost sail on the mainmast
+52735,mainspring,the most important spring in a mechanical device (especially a clock or watch); as it uncoils it drives the mechanism
+52736,mainstay,the forestay that braces the mainmast
+52737,mainstream,the prevailing current of thought; "his thinking was in the American mainstream"
+52738,maintenance,means of maintenance of a family or group
+52739,maintenance criminal_maintenance,the unauthorized interference in a legal action by a person having no interest in it (as by helping one party with money or otherwise to continue the action) so as to obstruct justice or promote unnecessary litigation or unsettle the peace of the community; "unlike champerty, criminal maintenance does not necessarily involve personal profit"
+52740,maisonette maisonnette,a self-contained apartment (usually on two floors) in a larger house and with its own entrance from the outside
+52741,maisonette maisonnette,a small house
+52742,majolica maiolica,highly decorated earthenware with a glaze of tin oxide
+52743,major,a university student who is studying a particular field as the principal subject; "she is a linguistics major"
+52744,major,a commissioned military officer in the United States Army or Air Force or Marines; below lieutenant colonel and above captain
+52745,major,the principal field of study of a student at a university; "her major is linguistics"
+52746,major-domo seneschal,the chief steward or butler of a great household
+52747,major-general,a general officer ranking above a brigadier general and below a lieutenant general
+52748,major-league_team major-league_club,a team that plays in a major league
+52749,major_axis,the longest axis of an ellipse or ellipsoid; passes through the two foci
+52750,major_depressive_episode,(psychiatry) a state of depression with all the classic symptoms (anhedonia and lethargy and sleep disturbance and despondency and morbid thoughts and feelings of worthlessness and sometimes attempted suicide) but with no known organic dysfunction
+52751,major_fast_day,one of two major fast days on the Jewish calendar
+52752,major_form_class,any of the major parts of speech of traditional grammar
+52753,major_key major_mode,a key whose harmony is based on the major scale
+52754,major_league big_league majors,the most important league in any sport (especially baseball)
+52755,major_leaguer big_leaguer,a member of a major-league baseball team
+52756,major_lobe,the maximum lobe in the radiation pattern which is intended to be along the forward axis and which gives the effect of a beam
+52757,major_premise major_premiss,the premise of a syllogism that contains the major term (which is the predicate of the conclusion)
+52758,major_scale major_diatonic_scale,a diatonic scale with notes separated by whole tones except for the 3rd and 4th and 7th and 8th
+52759,major_suit,(bridge) a suit of superior scoring value, either spades or hearts
+52760,major_surgery,any surgical procedure that involves anesthesia or respiratory assistance
+52761,major_term,the term in a syllogism that is the predicate of the conclusion
+52762,major_tranquilizer major_tranquillizer major_tranquilliser antipsychotic_drug antipsychotic_agent antipsychotic neuroleptic_drug neuroleptic_agent neuroleptic,tranquilizer used to treat psychotic conditions when a calming effect is desired
+52763,majority absolute_majority,(elections) more than half of the votes
+52764,majority bulk,the property resulting from being or relating to the greater in number of two parts; the main part; "the majority of his customers prefer it"; "the bulk of the work is finished"
+52765,majority legal_age,the age at which persons are considered competent to manage their own affairs
+52766,majority_leader,leader of the majority party in a legislature
+52767,majority_operation,a threshold operation in which each operand is 0 or 1; output is 1 if and only if more than half the operands have the value 1
+52768,majority_opinion,the opinion joined by a majority of the court (generally known simply as `the opinion')
+52769,majority_rule democracy,the doctrine that the numerical majority of an organized group can make decisions binding on the whole group
+52770,make-believe pretend,the enactment of a pretense; "it was just pretend"
+52771,makeover,an overall beauty treatment (involving a person's hair style and cosmetics and clothing) intended to change or improve a person's appearance
+52772,makeover,a complete reconstruction and renovation of something; "the blighted neighborhood underwent a total makeover"
+52773,maker shaper,a person who makes things
+52774,makeready,final preparation and adjustments
+52775,makeshift stopgap make-do,something contrived to meet an urgent need or emergency
+52776,makeup make-up,an event that is substituted for a previously cancelled event; "he missed the test and had to take a makeup"; "the two teams played a makeup one week later"
+52777,makeup make-up war_paint,cosmetics applied to the face to improve or change your appearance
+52778,makeweight,a weight added to the scale to reach a required weight
+52779,makeweight filler,anything added to fill out a whole; "some of the items in the collection are mere makeweights"
+52780,making,(usually plural) the components needed for making or doing something; "the recipe listed all the makings for a chocolate cake"
+52781,mako mako_shark,powerful mackerel shark of the Atlantic and Pacific
+52782,makomako New_Zealand_wine_berry wineberry Aristotelia_serrata Aristotelia_racemosa,graceful deciduous shrub or small tree having attractive foliage and small red berries that turn black at maturity and are used for making wine
+52783,malabsorption,abnormal absorption of nutrients from the digestive tract
+52784,malabsorption_syndrome,a pattern of symptoms including loss of appetite and bloating and weight loss and muscle pain and steatorrhea; associated with celiac disease and sprue and cystic fibrosis
+52785,malacca,stem of the rattan palm used for making canes and umbrella handles
+52786,malacca malacca_cane,a cane made from the stem of a rattan palm
+52787,malachite,a green or blue mineral used as an ore of copper and for making ornamental objects
+52788,malacia,a state of abnormal softening of tissue
+52789,malacologist,a zoologist specializing in the study of mollusks
+52790,malacology,the branch of zoology that studies the structure and behavior of mollusks
+52791,malacostracan_crustacean,a major subclass of crustaceans
+52792,maladjustment,the condition of being unable to adapt properly to your environment with resulting emotional instability
+52793,malady,any unwholesome or desperate condition; "what maladies afflict our nation?"
+52794,malahini,a newcomer to Hawaii
+52795,malaise unease uneasiness,physical discomfort (as mild sickness or depression)
+52796,malamute malemute Alaskan_malamute,breed of sled dog developed in Alaska
+52797,malapropism malaprop,the unintentional misuse of a word by confusion with one that sounds similar
+52798,malaria,an infective disease caused by sporozoan parasites that are transmitted through the bite of an infected Anopheles mosquito; marked by paroxysms of chills and fever
+52799,malarial_mosquito malaria_mosquito,transmits the malaria parasite
+52800,malathion_poisoning,a toxic condition caused by inhaling or ingesting the insecticide Malathion
+52801,malcontent,a person who is discontented or disgusted
+52802,male,an animal that produces gametes (spermatozoa) that can fertilize female gametes (ova)
+52803,male male_person,a person who belongs to the sex that cannot have babies
+52804,male-patterned_baldness male_pattern_baldness,loss of hair on the crown of the head
+52805,male_aristocrat,a man who is an aristocrat
+52806,male_body,the body of a male human being
+52807,male_bonding,the formation of a close personal relationship between men; "the rituals known as male bonding do not necessarily involve drinking beer together"
+52808,male_chauvinism chauvinism antifeminism,activity indicative of belief in the superiority of men over women
+52809,male_chauvinist sexist,a man with a chauvinistic belief in the inferiority of women
+52810,male_chest,the chest of a man
+52811,male_child boy,a youthful male person; "the baby was a boy"; "she made the boy brush his teeth every night"; "most soldiers are only boys in uniform"
+52812,male_fern Dryopteris_filix-mas,fern of North America and Europe whose rhizomes and stalks yield an oleoresin used to expel tapeworms
+52813,male_genitalia male_genitals male_genital_organ family_jewels,external male sex organs
+52814,male_horse,the male of species Equus caballus
+52815,male_hypogonadism eunuchoidism,the state of being a eunuch (either because of lacking testicles or because they failed to develop)
+52816,male_internal_reproductive_organ,the reproductive organs of a man
+52817,male_offspring man-child,a child who is male
+52818,male_orchis early_purple_orchid Orchis_mascula,Eurasian orchid with showy pink or purple flowers in a loose spike
+52819,male_orgasm,an orgasm accompanied by the sensation of ejaculation of semen
+52820,male_reproductive_gland,the reproductive organs of a man
+52821,male_reproductive_system,the reproductive system of males
+52822,male_sibling,a sibling who is male
+52823,maleate,a salt or ester of maleic acid; used as a nontricyclic antidepressant drug for psychomotor activation
+52824,maleberry male_berry privet_andromeda he-huckleberry Lyonia_ligustrina,deciduous much-branched shrub with dense downy panicles of small bell-shaped white flowers
+52825,maleficence,doing or causing evil
+52826,maleficence mischief balefulness,the quality or nature of being harmful or evil
+52827,maleic_acid,a colorless crystalline compound found in unripe fruit (such as apples or tomatoes or cherries) and used mainly to make polyester resins
+52828,maleness masculinity,the properties characteristic of the male sex
+52829,maleo Macrocephalon_maleo,Celebes megapode that lays eggs in holes in sandy beaches
+52830,malevolence malevolency malice,the quality of threatening evil
+52831,malevolence malignity,wishing evil to others
+52832,malevolent_program,a computer program designed to have undesirable or harmful effects
+52833,malfeasance,wrongful conduct by a public official
+52834,malfeasant,one guilty of malfeasance
+52835,malformation miscreation,something abnormal or anomalous
+52836,malfunction,a failure to function normally
+52837,malheur_wire_lettuce Stephanomeria_malheurensis,a small plant of Oregon resembling mustard; a threatened species
+52838,malice maliciousness spite spitefulness venom,feeling a need to see others suffer
+52839,malignancy malignance,(medicine) a malignant state; progressive and resistant to treatment and tending to cause death
+52840,malignant_hypertension,severe hypertension that runs a rapid course and damages the inner linings of the blood vessels and the heart and spleen and kidneys and brain; "malignant hypertension is the most lethal form of hypertension"
+52841,malignant_hyperthermia,hereditary condition in which certain anesthetics (e.g., halothane) cause high body temperatures and muscle rigidity
+52842,malignant_tumor malignant_neoplasm metastatic_tumor,a tumor that is malignant and tends to spread to other parts of the body
+52843,malignity malignancy malignance,quality of being disposed to evil; intense ill will
+52844,malik,the leader of a town or community in some parts of Asia Minor and the Indian subcontinent; "maliks rule the hinterland of Afghanistan under the protection of warlords"
+52845,malingerer skulker shammer,someone shirking their duty by feigning illness or incapacity
+52846,malingering skulking,evading duty or work by pretending to be incapacitated; "they developed a test to detect malingering"
+52847,malinois,fawn-colored short-haired sheepdog
+52848,mallard Anas_platyrhynchos,wild dabbling duck from which domestic ducks are descended; widely distributed
+52849,malleability plasticity,the property of being physically malleable; the property of something that can be worked or hammered or shaped without breaking
+52850,mallee,any of several low-growing Australian eucalypts
+52851,mallee_fowl leipoa lowan Leipoa_ocellata,Australian mound bird; incubates eggs naturally in sandy mounds
+52852,mallee_hen,adult female mallee fowl
+52853,mallet,a sports implement with a long handle and a head like a hammer; used in sports (polo or croquet) to hit a ball
+52854,mallet beetle,a tool resembling a hammer but with a large head (usually wooden); used to drive wedges or ram down paving stones or for crushing or beating or flattening or smoothing
+52855,mallet hammer,a light drumstick with a rounded head that is used to strike such percussion instruments as chimes, kettledrums, marimbas, glockenspiels, etc.
+52856,malleus hammer,the ossicle attached to the eardrum
+52857,mallow,any of various plants of the family Malvaceae
+52858,malmsey,sweet Madeira wine
+52859,malnutrition,a state of poor nutrition; can result from insufficient or excessive or unbalanced diet or from inability to absorb foods
+52860,malocclusion,(dentistry) a condition in which the opposing teeth do not mesh normally
+52861,malodor malodour stench stink reek fetor foetor mephitis,a distinctive odor that is offensively unpleasant
+52862,malodorousness stinkiness foulness rankness fetidness,the attribute of having a strong offensive smell
+52863,malope Malope_trifida,western Mediterranean annual having deep purple-red flowers subtended by 3 large cordate bracts
+52864,malpighian_body malpighian_corpuscle renal_corpuscle,the capsule that contains Bowman's capsule and a glomerulus at the expanded end of a nephron
+52865,malposed_tooth,a tooth that has grown in a faulty position
+52866,malposition misplacement,faulty position
+52867,malpractice,professional wrongdoing that results in injury or damage; "the widow sued his surgeon for malpractice"
+52868,malpractice,a wrongful act that the actor had no right to do; improper professional conduct; "he charged them with electoral malpractices"
+52869,malpractice_insurance,insurance purchased by physicians and hospitals to cover the cost of being sued for malpractice; "obstetricians have to pay high rates for malpractice insurance"
+52870,malt,a cereal grain (usually barley) that is kiln-dried after having been germinated by soaking in water; used especially in brewing and distilling
+52871,malt malt_liquor,a lager of high alcohol content; by law it is considered too alcoholic to be sold as lager or beer
+52872,malted malt malted_milk,a milkshake made with malt powder
+52873,malted_milk,powder made of dried milk and malted cereals
+52874,maltha mineral_tar,a thick black tar intermediate between petroleum and asphalt
+52875,maltose malt_sugar,a white crystalline sugar formed during the digestion of starches
+52876,maltreatment ill-treatment ill-usage abuse,cruel or inhumane treatment; "the child showed signs of physical abuse"
+52877,maltster maltman,a maker of malt
+52878,malvasia,grape used to make malmsey wine
+52879,malversation,misconduct in public office
+52880,malware,malicious software, designed to break into a system
+52881,mamba,arboreal snake of central and southern Africa whose bite is often fatal
+52882,mambo,a Latin American dance similar in rhythm to the rumba
+52883,mamey mammee mammee_apple,globular or ovoid tropical fruit with thick russet leathery rind and juicy yellow or reddish flesh
+52884,mamillary_body mammillary_body corpus_mamillare,one of two small round structures on the undersurface of the brain that form the terminals of the anterior arches of the fornix
+52885,mammal mammalian,any warm-blooded vertebrate having the skin more or less covered with hair; young are born alive except for the small subclass of monotremes and nourished with milk
+52886,mammal_family,a family of mammals
+52887,mammal_genus,a genus of mammals
+52888,mammalogist,one skilled in the study of mammals
+52889,mammalogy,the branch of zoology that studies mammals
+52890,mammary_gland mamma,milk-secreting organ of female mammals
+52891,mammee_apple mammee mamey mammee_tree Mammea_americana,tropical American tree having edible fruit with a leathery rind
+52892,mammillaria,any cactus of the genus Mammillaria
+52893,mammogram,X-ray film of the soft tissue of the breast
+52894,mammography,a diagnostic procedure to detect breast tumors by the use of X rays
+52895,mammon,wealth regarded as an evil influence
+52896,mammoth,any of numerous extinct elephants widely distributed in the Pleistocene; extremely large with hairy coats and long upcurved tusks
+52897,mammothermography,the use of thermography to detect breast tumors (which appear as hot spots)
+52898,mammy,an offensive term for a Black nursemaid in the southern U.S.
+52899,mamo,black honeycreepers with yellow feathers around the tail; now extinct
+52900,man,a male subordinate; "the chief stationed two men outside the building"; "he awaited word from his man in Havana"
+52901,man,the generic use of the word to refer to any human being; "it was every man for himself"
+52902,man,an adult male person who has a manly character (virile and courageous competent); "the army will make a man of you"
+52903,man,a male person who plays a significant role (husband or lover or boyfriend) in the life of a particular woman; "she takes good care of her man"
+52904,man adult_male,an adult person who is male (as opposed to a woman); "there were two women and six men on the bus"
+52905,man piece,game equipment consisting of an object used in playing certain board games; "he taught me to set up the men on the chess board"; "he sacrificed a piece to get a strategic advantage"
+52906,man's_clothing,clothing that is designed for men to wear
+52907,man-at-arms,a heavily armed and mounted soldier in medieval times
+52908,man-made_fiber synthetic_fiber,fiber created from natural materials or by chemical processes
+52909,man-of-the-earth Ipomoea_leptophylla,a morning glory with long roots of western United States
+52910,man-of-war ship_of_the_line,a warship intended for combat
+52911,man-on-a-horse Tricholoma_flavovirens,an edible agaric with yellow gills and a viscid yellow cap that has a brownish center
+52912,man_hour person_hour,a time unit used in industry for measuring work
+52913,man_jack,a single individual; "every man jack"
+52914,man_of_action man_of_deeds,someone inclined to act first and think later
+52915,man_of_letters,a man devoted to literary or scholarly activities
+52916,man_of_means rich_man wealthy_man,a man who is wealthy
+52917,manageability manageableness,capable of being managed or controlled
+52918,managed_economy,a non-market economy in which government intervention is important in allocating goods and resources and determining prices
+52919,management,those in charge of running a business
+52920,management direction,the act of managing something; "he was given overall management of the program"; "is the direction of the economy a function of government?"
+52921,management_consultant,adviser to business about efficient management practices
+52922,management_consulting,a service industry that provides advice to those in charge of running a business
+52923,management_control,an internal control performed by one or more managers
+52924,management_personnel,personnel having overall planning and direction responsibilities
+52925,manageress,a woman manager
+52926,managership,the position of manager
+52927,managing_editor,the editor in charge of all editorial activities of a newspaper or magazine
+52928,manakin,any of numerous small bright-colored birds of Central America and South America having short bills and elaborate courtship behavior
+52929,manana,an indefinite time in the future
+52930,manat,the basic unit of money in Turkmenistan
+52931,manat,the basic unit of money in Azerbaijan
+52932,manatee Trichechus_manatus,sirenian mammal of tropical coastal waters of America; the flat tail is rounded
+52933,mandala,any of various geometric designs (usually circular) symbolizing the universe; used chiefly in Hinduism and Buddhism as an aid to meditation
+52934,mandamus writ_of_mandamus,an extraordinary writ commanding an official to perform a ministerial act that the law recognizes as an absolute duty and not a matter for the official's discretion; used only when all other judicial remedies fail
+52935,mandarin,a member of an elite intellectual or cultural group
+52936,mandarin,any high government official or bureaucrat
+52937,mandarin,a high public official of imperial China
+52938,mandarin mandarin_orange,a somewhat flat reddish-orange loose skinned citrus of China
+52939,mandarin mandarin_orange mandarin_orange_tree Citrus_reticulata,shrub or small tree having flattened globose fruit with very sweet aromatic pulp and thin yellow-orange to flame-orange rind that is loose and easily removed; native to southeastern Asia
+52940,mandarin_duck Aix_galericulata,showy crested Asiatic duck; often domesticated
+52941,mandatary mandatory,the recipient of a mandate
+52942,mandate,the commission that is given to a government and its policies through an electoral victory
+52943,mandate authorization authorisation,a document giving an official instruction or command
+52944,mandate mandatory,a territory surrendered by Turkey or Germany after World War I and put under the tutelage of some other European power until they are able to stand by themselves
+52945,mandator,an authority who issues a mandate
+52946,mandatory_injunction,injunction requiring the performance of some specific act
+52947,mandibular_joint temporomandibular_joint articulatio_temporomandibularis,the joint between the head of the lower jawbone and the temporal bone
+52948,mandibular_notch,small indentation in the middle of the lower jawbone
+52949,mandola,an early type of mandolin
+52950,mandolin,a stringed instrument related to the lute, usually played with a plectrum
+52951,mandrake devil's_apples Mandragora_officinarum,a plant of southern Europe and North Africa having purple flowers, yellow fruits and a forked root formerly thought to have magical powers
+52952,mandrake_root mandrake,the root of the mandrake plant; used medicinally or as a narcotic
+52953,mandrill Mandrillus_sphinx,baboon of west Africa with a bright red and blue muzzle and blue hindquarters
+52954,mane,long coarse hair growing from the crest of the animal's neck
+52955,mane head_of_hair,growth of hair covering the scalp of a human being
+52956,maneuver manoeuvre evasive_action,an action aimed at evading an opponent
+52957,maneuver manoeuvre play,a deliberate coordinated movement requiring dexterity and skill; "he made a great maneuver"; "the runner was out on a play by the shortstop"
+52958,maneuver manoeuvre simulated_military_operation,a military training exercise
+52959,maneuver manoeuvre tactical_maneuver tactical_manoeuvre,a move made to gain a tactical end
+52960,maneuverability manoeuvrability,the quality of being maneuverable
+52961,maneuverer manoeuvrer,a person skilled in maneuvering
+52962,manfulness manliness virility,the trait of being manly; having the characteristics of an adult male
+52963,manga,graphic novel that originated in Japan, usually intended for adults and characterized by highly stylized art
+52964,mangabey,large agile arboreal monkey with long limbs and tail and white upper eyelids
+52965,manganate,a salt of manganic acid containing manganese as its anion
+52966,manganese Mn atomic_number_25,a hard brittle grey polyvalent metallic element that resembles iron but is not magnetic; used in making steel; occurs in many minerals
+52967,manganese_bronze high-strength_brass,a brass with from 1-4% manganese to harden it
+52968,manganese_steel austenitic_manganese_steel,a steel with a relatively large component (10-14%) of manganese; highly resistant to wear and shock
+52969,manganese_tetroxide,an oxide of manganese found naturally as hausmannite
+52970,manganic_acid,a dibasic acid (H2MnO4) found only in solution and in manganate salts
+52971,manganite,a black mineral consisting of basic manganese oxide; a source of manganese
+52972,mange,a persistent and contagious disease of the skin causing inflammation and itching and loss of hair; affects domestic animals (and sometimes people)
+52973,mangel-wurzel,cultivated as feed for livestock
+52974,mangel-wurzel mangold-wurzel mangold Beta_vulgaris_vulgaris,beet with a large yellowish root; grown chiefly as cattle feed
+52975,manger trough,a container (usually in a barn or stable) from which cattle or horses feed
+52976,mangle,clothes dryer for drying and ironing laundry by passing it between two heavy heated rollers
+52977,manglietia genus_Manglietia,a genus of flowering tree of the family Magnoliaceae found from Malay to southern China
+52978,mango,large oval tropical fruit having smooth skin, juicy aromatic pulp, and a large hairy seed
+52979,mango mango_tree Mangifera_indica,large evergreen tropical tree cultivated for its large oval fruit
+52980,mangosteen,two- to three-inch tropical fruit with juicy flesh suggestive of both peaches and pineapples
+52981,mangosteen mangosteen_tree Garcinia_mangostana,East Indian tree with thick leathery leaves and edible fruit
+52982,mangrove Rhizophora_mangle,a tropical tree or shrub bearing fruit that germinates while still on the tree and having numerous prop roots that eventually form an impenetrable mass and are important in land building
+52983,manhattan,a cocktail made with whiskey and sweet vermouth with a dash of bitters
+52984,manhole,a hole (usually with a flush cover) through which a person can gain access to an underground structure
+52985,manhole_cover,a flush iron cover for a manhole (as in a street)
+52986,manhood,the state of being a man; manly qualities
+52987,manhood,the status of being a man
+52988,manhunt,an organized search (by police) for a person (charged with a crime)
+52989,mania manic_disorder,a mood disorder; an affective disorder in which the victim tends to respond excessively and sometimes violently
+52990,mania passion cacoethes,an irrational but irresistible motive for a belief or action
+52991,maniac,a person who has an obsession with or excessive enthusiasm for something
+52992,manic-depressive,a person afflicted with manic-depressive illness
+52993,manicotti,large pasta tubes stuffed with chopped meat or mild cheese and baked in tomato sauce
+52994,manicure,professional care for the hands and fingernails
+52995,manicure_set,a set of implements used to manicure
+52996,manicurist,a beautician who cleans and trims and polishes the fingernails
+52997,manifest,a customs document listing the contents put on a ship or plane
+52998,manifest_destiny,a policy of imperialism rationalized as inevitable (as if granted by God)
+52999,manifestation,a clear appearance; "a manifestation of great emotion"
+53000,manifestation,a manifest indication of the existence or presence or nature of some person or thing; "a manifestation of disease"
+53001,manifesto pronunciamento,a public declaration of intentions (as issued by a political party or government)
+53002,manifold,a set of points such as those of a closed surface or an analogue in three or more dimensions
+53003,manifold,a pipe that has several lateral outlets to or from other pipes
+53004,manifold_paper manifold,a lightweight paper used with carbon paper to make multiple copies; "an original and two manifolds"
+53005,manikin mannikin homunculus,a person who is very small but who is not otherwise deformed or abnormal
+53006,manila manila_paper manilla manilla_paper,a strong paper or thin cardboard with a smooth light brown finish made from e.g. Manila hemp
+53007,manila_tamarind camachile huamachil wild_tamarind Pithecellobium_dulce,common thorny tropical American tree having terminal racemes of yellow flowers followed by sickle-shaped or circinate edible pods and yielding good timber and a yellow dye and mucilaginous gum
+53008,manipulability,the quality of being controllable by skilled movements of the hands
+53009,manipulation use,exerting shrewd or devious influence especially for one's own advantage; "his manipulation of his friends was scandalous"
+53010,manipulative_electronic_deception electronic_manipulative_deception,actions to eliminate revealing telltale indicators that could be used by the enemy (or to convey misleading indicators)
+53011,manipulator,a person who handles things manually
+53012,maniraptor,advanced carnivorous theropod
+53013,manna,hardened sugary exudation of various trees
+53014,manna_ash flowering_ash Fraxinus_ornus,southern Mediterranean ash having fragrant white flowers in dense panicles and yielding manna
+53015,manna_grass sweet_grass,any of several moisture-loving grasses of the genus Glyceria having sweet flavor or odor
+53016,manna_gum Eucalyptus_viminalis,tall tree yielding a false manna
+53017,manna_lichen,any of several Old World partially crustaceous or shrubby lecanoras that roll up and are blown about over African and Arabian deserts and used as food by people and animals
+53018,mannequin manikin mannikin manakin fashion_model model,a woman who wears clothes to display fashions; "she was too fat to be a mannequin"
+53019,mannequin manikin mannikin manakin form,a life-size dummy used to display clothes
+53020,manner,a kind; "what manner of man are you?"
+53021,manner mode style way fashion,how something is done or how it happens; "her dignified manner"; "his rapid manner of talking"; "their nomadic mode of existence"; "in the characteristic New York style"; "a lonely way of life"; "in an abrasive fashion"
+53022,manner personal_manner,a way of acting or behaving
+53023,manner_of_speaking speech delivery,your characteristic style or manner of expressing yourself orally; "his manner of speaking was quite abrupt"; "her speech was barren of southernisms"; "I detected a slight accent in his speech"
+53024,manners,social deportment; "he has the manners of a pig"
+53025,mannitol Osmitrol,a diuretic (trade name Osmitrol) used to promote the excretion of urine
+53026,manometer,a pressure gauge for comparing pressures of a gas
+53027,manor,the landed estate of a lord (including the house on it)
+53028,manor manor_house,the mansion of a lord or wealthy person
+53029,manor_hall hall,the large room of a manor or castle
+53030,mansard mansard_roof,a hip roof having two slopes on each side
+53031,manse,the residence of a clergyman (especially a Presbyterian clergyman)
+53032,manservant,a man servant
+53033,mansion mansion_house manse hall residence,a large and imposing house
+53034,manslaughter,homicide without malice aforethought
+53035,manta,a blanket that is used as a cloak or shawl
+53036,manta manta_ray devilfish,extremely large pelagic tropical ray that feeds on plankton and small fishes; usually harmless but its size make it dangerous if harpooned
+53037,mantel mantelpiece mantle mantlepiece chimneypiece,shelf that projects from wall above fireplace
+53038,mantelet mantilla,short cape worn by women
+53039,mantelet mantlet,portable bulletproof shelter
+53040,manticore mantichora manticora mantiger,a mythical monster having the head of man (with horns) and the body of a lion and the tail of a scorpion
+53041,mantilla,a woman's silk or lace scarf
+53042,mantis mantid,predacious long-bodied large-eyed insect of warm regions; rests with forelimbs raised as in prayer
+53043,mantis_shrimp mantis_crab,tropical marine burrowing crustaceans with large grasping appendages
+53044,mantispid,insect that resembles a mantis; larvae are parasites in the nests of spiders and wasps
+53045,mantissa fixed-point_part,the positive fractional part of the representation of a logarithm; in the expression log 643 = 2.808 the mantissa is .808
+53046,mantle,the layer of the earth between the crust and the core
+53047,mantle,the cloak as a symbol of authority; "place the mantle of authority on younger shoulders"
+53048,mantle pallium,(zoology) a protective layer of epidermis in mollusks or brachiopods that secretes a substance forming the shell
+53049,mantled_ground_squirrel Citellus_lateralis,common black-striped reddish-brown ground squirrel of western North America; resembles a large chipmunk
+53050,mantra,a commonly repeated word or phrase; "she repeated `So pleased with how its going' at intervals like a mantra"
+53051,mantra,(Sanskrit) literally a `sacred utterance' in Vedism; one of a collection of orally transmitted poetic hymns
+53052,mantrap,a trap for catching trespassers
+53053,mantua,loose gown of the 17th and 18th centuries
+53054,manual,a small handbook
+53055,manual_alphabet finger_alphabet,an alphabet used by the deaf; letters are represented by finger positions
+53056,manual_labor manual_labour,labor done with the hands
+53057,manual_of_arms manual,(military) a prescribed drill in handling a rifle
+53058,manubrium,the upper part of the breastbone
+53059,manufacturer maker manufacturing_business,a business engaged in manufacturing some product
+53060,manufacturer producer,someone who manufactures something
+53061,manul Pallas's_cat Felis_manul,small wildcat of the mountains of Siberia and Tibet and Mongolia
+53062,manumission,the formal act of freeing from slavery; "he believed in the manumission of the slaves"
+53063,manure,any animal or plant material used to fertilize land especially animal excreta usually with litter material
+53064,manuscript holograph,handwritten book or document
+53065,manuscript ms,the form of a literary work submitted for publication
+53066,manzanita,chiefly evergreen shrubs of warm dry areas of western North America
+53067,map,a diagrammatic representation of the earth's surface (or part of it)
+53068,map-reader,a person who can read maps; "he is a good map-reader"
+53069,map_projection,a projection of the globe onto a flat map using a grid of lines of latitude and longitude
+53070,mapinguari,supposed human-sized sloth-like creature reportedly sighted by Indians in the Amazon rain forest
+53071,maple,wood of any of various maple trees; especially the hard close-grained wood of the sugar maple; used especially for furniture and flooring
+53072,maple,any of numerous trees or shrubs of the genus Acer bearing winged seeds in pairs; north temperate zone
+53073,maple-leaf,the emblem of Canada
+53074,maple_sugar,sugar made from the sap of the sugar maple tree
+53075,maple_syrup,made by concentrating sap from sugar maples
+53076,maple_syrup_urine_disease branched_chain_ketoaciduria,an inherited disorder of metabolism in which the urine has a odor characteristic of maple syrup; if untreated it can lead to mental retardation and death in early childhood
+53077,mapmaking cartography,the making of maps and charts
+53078,mapping chromosome_mapping,(genetics) the process of locating genes on a chromosome
+53079,maquiladora,an assembly plant in Mexico (near the United States border); parts are shipped into Mexico and the finished product is shipped back across the border
+53080,mara Dolichotis_patagonum,hare-like rodent of the pampas of Argentina
+53081,marabou,the downy feathers of marabou storks are used for trimming garments
+53082,marabou marabout marabou_stork Leptoptilus_crumeniferus,large African black-and-white carrion-eating stork; its downy underwing feathers are used to trim garments
+53083,maraca,a percussion instrument consisting of a hollow gourd containing pebbles or beans; often played in pairs
+53084,marang,tropical fruit from the Philippines having a mass of small seeds embedded in sweetish white pulp
+53085,marang marang_tree Artocarpus_odoratissima,Philippine tree similar to the breadfruit tree bearing edible fruit
+53086,maranta,any of numerous herbs of the genus Maranta having tuberous starchy roots and large sheathing leaves
+53087,marasca,small bitter fruit of the marasca cherry tree from whose juice maraschino liqueur is made
+53088,marasca marasca_cherry maraschino_cherry Prunus_cerasus_marasca,Dalmatian bitter wild cherry tree bearing fruit whose juice is made into maraschino liqueur
+53089,maraschino maraschino_cherry,cherry preserved in true or imitation maraschino liqueur
+53090,maraschino maraschino_liqueur,distilled from fermented juice of bitter wild marasca cherries
+53091,marasmus,extreme malnutrition and emaciation (especially in children); can result from inadequate intake of food or from malabsorption or metabolic disorders
+53092,marathon,a footrace of 26 miles 385 yards
+53093,marathon endurance_contest,any long and arduous undertaking
+53094,marathoner marathon_runner road_runner long-distance_runner,someone who participates in long-distance races (especially in marathons)
+53095,marauder predator vulture piranha,someone who attacks in search of booty
+53096,marble,a hard crystalline metamorphic rock that takes a high polish; used for sculpture and as building material
+53097,marble,a sculpture carved from marble
+53098,marble,a small ball of glass that is used in various games
+53099,marble_cake,made of light and dark batter very lightly blended
+53100,marbleization marbleisation marbleizing marbleising,a texture like that of marble
+53101,marbles,a children's game played with little balls made of a hard substance (as glass)
+53102,marblewood marble-wood,hard marbled wood
+53103,marblewood marble-wood Andaman_marble Diospyros_kurzii,large Asiatic tree having hard marbled zebrawood
+53104,marbling,the intermixture of fat and lean in a cut of meat
+53105,marc,made from residue of grapes or apples after pressing
+53106,marcel,a hairdo characterized by deep regular waves that are made by a heated curling iron
+53107,march,a procession of people walking together; "the march went up Fifth Avenue"
+53108,march,a steady advance; "the march of science"; "the march of time"
+53109,march marching,the act of marching; walking with regular steps (especially in a procession of some kind); "it was a long march"; "we heard the sound of marching"
+53110,marchand_de_vin mushroom_wine_sauce,brown sauce with mushrooms and red wine or Madeira
+53111,marcher,an inhabitant of a border district
+53112,marcher parader,walks with regular or stately step
+53113,marching_band,a band that marches (as in a parade) and plays music at the same time
+53114,marching_music march,genre of music written for marching; "Sousa wrote the best marches"
+53115,marching_order,equipage for marching; "the company was dressed in full marching order"
+53116,marching_orders,an order from a superior officer for troops to depart
+53117,marchioness,the wife or widow of a marquis
+53118,marchioness marquise,a noblewoman ranking below a duchess and above a countess
+53119,mare female_horse,female equine animal
+53120,mare maria,a dark region of considerable extent on the surface of the moon
+53121,mare's_tail,a long narrow flowing cirrus cloud
+53122,mare_clausum,(closed sea) a navigable body of water under the jurisdiction of a single nation
+53123,mare_liberum,(free sea) a navigable body of water to which all nations have equal access
+53124,mare_nostrum,(our sea) the Mediterranean to the ancient Romans
+53125,margaric_acid heptadecanoic_acid,a colorless crystalline synthetic fatty acid
+53126,margarin glycerol_trimargarate,a glyceryl ester of margaric acid
+53127,margarine margarin oleo oleomargarine marge,a spread made chiefly from vegetable oils and used as a substitute for butter
+53128,margarita,a cocktail made of tequila and triple sec with lime and lemon juice
+53129,margate Haemulon_album,a grunt with a red mouth that is found from Florida to Brazil
+53130,margay margay_cat Felis_wiedi,small spotted wildcat found from Texas to Brazil
+53131,margin,the blank space that surrounds the text on a page; "he jotted a note in the margin"
+53132,margin,an amount beyond the minimum necessary; "the margin of victory"
+53133,margin border perimeter,the boundary line or the area immediately inside the boundary
+53134,margin security_deposit,the amount of collateral a customer deposits with a broker when borrowing from the broker to buy securities
+53135,margin_account,an account with a securities brokerage in which the broker extends credit
+53136,margin_call call,a demand by a broker that a customer deposit enough to bring his margin up to the minimum requirement
+53137,margin_of_profit profit_margin gross_margin,the ratio gross profits divided by net sales
+53138,margin_of_safety safety_margin margin_of_error,the margin required in order to insure safety; "in engineering the margin of safety is the strength of the material minus the anticipated stress"
+53139,marginal_cost incremental_cost differential_cost,the increase or decrease in costs as a result of one more or one less unit of output
+53140,marginal_placentation ventral_placentation,with ovules borne on the wall along the ventral suture of a simple ovary
+53141,marginal_utility,(economics) the amount that utility increases with an increase of one unit of an economic good or service
+53142,marginal_wood_fern evergreen_wood_fern leatherleaf_wood_fern Dryopteris_marginalis,North American fern with evergreen fronds
+53143,marginalia,notes written in the margin
+53144,marginality,the property of being marginal or on the fringes
+53145,marginalization marginalisation,the social process of becoming or being made marginal (especially as a group within the larger society); "the marginalization of the underclass"; "the marginalization of literature"
+53146,margrave,the military governor of a frontier province in medieval Germany
+53147,margrave,a German nobleman ranking above a count (corresponding in rank to a British marquess)
+53148,marguerite marguerite_daisy Paris_daisy Chrysanthemum_frutescens Argyranthemum_frutescens,perennial subshrub of the Canary Islands having usually pale yellow daisylike flowers; often included in genus Chrysanthemum
+53149,mariachi,a group of street musicians in Mexico
+53150,marigold,any of various tropical American plants of the genus Tagetes widely cultivated for their showy yellow or orange flowers
+53151,marijuana marihuana ganja Cannabis_sativa,a strong-smelling plant whose dried leaves can be smoked for a pleasant effect or pain reduction
+53152,marimba xylophone,a percussion instrument with wooden bars tuned to produce a chromatic scale and with resonators; played with small mallets
+53153,marina,a fancy dock for small yachts and cabin cruisers
+53154,marinade,mixtures of vinegar or wine and oil with various spices and seasonings; used for soaking foods before cooking
+53155,marinara,sauce for pasta; contains tomatoes and garlic and herbs
+53156,marine,a soldier who serves both on shipboard and on land
+53157,marine_animal marine_creature sea_animal sea_creature,any of numerous animals inhabiting the sea including e.g. fishes and molluscs and many mammals
+53158,marine_archeology marine_archaeology underwater_archeology underwater_archaeology,the archeology of underwater sites
+53159,marine_engineer naval_engineer,a naval officer responsible for the operation and maintenance of the ship's engines
+53160,marine_glue,glue that is not water soluble
+53161,marine_iguana Amblyrhynchus_cristatus,shore-dwelling seaweed-eating lizard of the Galapagos Islands
+53162,marine_mussel mytilid,marine bivalve mollusk having a dark elongated shell; live attached to solid objects especially in intertidal zones
+53163,mariner seaman tar Jack-tar Jack old_salt seafarer gob sea_dog,a man who serves as a sailor
+53164,mariposa mariposa_tulip mariposa_lily,any of several plants of the genus Calochortus having tulip-shaped flowers with 3 sepals and 3 petals; southwestern United States and Mexico
+53165,marital_communications_privilege husband-wife_privilege,neither spouse can divulge confidential communications from the other while they were married
+53166,marital_relationship marital_bed,the relationship between wife and husband
+53167,marital_status,the condition of being married or unmarried
+53168,mariticide,the murder of a husband by his wife
+53169,maritime_law marine_law admiralty_law,the branch of international law that deals with territorial and international waters or with shipping or with ocean fishery etc.
+53170,marjoram oregano,pungent leaves used as seasoning with meats and fowl and in stews and soups and omelets
+53171,mark,a written or printed symbol (as for punctuation); "his answer was just a punctuation mark"
+53172,mark,the impression created by doing something unusual or extraordinary that people notice and remember; "it was in London that he made his mark"; "he left an indelible mark on the American theater"
+53173,mark German_mark Deutsche_Mark Deutschmark,formerly the basic unit of money in Germany
+53174,mark grade score,a number or letter indicating quality (especially of a student's performance); "she made good marks in algebra"; "grade A milk"; "what was your score on your homework?"
+53175,mark print,a visible indication made on a surface; "some previous reader had covered the pages with dozens of marks"; "paw prints were everywhere"
+53176,mark stigma brand stain,a symbol of disgrace or infamy; "And the Lord set a mark upon Cain"--Genesis
+53177,mark_of_Cain,the mark that God set upon Cain now refers to a person's sinful nature
+53178,marker,a writing implement for making a mark
+53179,marker,some conspicuous object used to distinguish or mark something; "the buoys were markers for the channel"
+53180,marker marking mark,a distinguishing symbol; "the owner's mark was on all the sheep"
+53181,market,the customers for a particular product or service; "before they publish any book they try to determine the size of the market for it"
+53182,market marketplace market_place,the world of commercial activity where goods and services are bought and sold; "without competition there would be no market"; "they were driven from the marketplace"
+53183,market securities_industry,the securities markets in the aggregate; "the market always frustrates the small investor"
+53184,market_analysis,marketing research that yields information about the marketplace
+53185,market_analyst,an analyst of conditions affecting a market (especially the stock market)
+53186,market_capitalization market_capitalisation,an estimation of the value of a business that is obtained by multiplying the number of shares outstanding by the current price of a share
+53187,market_cross,a cross-shaped monument set up in the marketplace of a town where public business is often conducted
+53188,market_day,a fixed day for holding a public market
+53189,market_economy free_enterprise private_enterprise laissez-faire_economy,an economy that relies chiefly on market forces to allocate goods and resources and to determine prices
+53190,market_forces,the interaction of supply and demand that shapes a market economy
+53191,market_garden,a garden where fruit and vegetables are grown for marketing
+53192,market_gardening,the growing of vegetables or flowers for market
+53193,market_letter,a newsletter written by an analyst of the stock market and sold to subscribers
+53194,market_order,an order to a broker to sell or buy stocks or commodities at the prevailing market price
+53195,market_penetration,the extent to which a product is recognized and bought by customers in a particular market
+53196,market_strategist,someone skilled in planning marketing campaigns
+53197,market_town,a (usually small) town where a public market is held at stated times
+53198,market_value market_price,the price at which buyers and sellers trade the item in an open marketplace
+53199,marketing,the commercial processes involved in promoting and selling and distributing a product or service; "most companies have a manager in charge of marketing"
+53200,marketing,shopping at a market; "does the weekly marketing at the supermarket"
+53201,marketing_cost,the cost of marketing (e.g., the cost of transferring title and moving goods to the customer)
+53202,marketing_research market_research,research that gathers and analyzes information about the moving of good or services from producer to consumer
+53203,marketplace market_place mart market,an area in a town where a public mercantile establishment is set up
+53204,markhor markhoor Capra_falconeri,large Himalayan goat with large spiraled horns
+53205,marking,a pattern of marks
+53206,marking,the act of making a visible mark on a surface
+53207,marking grading scoring,evaluation of performance by assigning a grade or score; "what he disliked about teaching was all the grading he had to do"
+53208,marking_ink,an indelible ink for marking clothes or linens etc.
+53209,markka Finnish_mark,formerly the basic unit of money in Finland
+53210,marksman sharpshooter crack_shot,someone skilled in shooting
+53211,marksmanship,skill in shooting
+53212,markup,the amount added to the cost to determine the asking price
+53213,markup,detailed stylistic instructions for typesetting something that is to be printed; manual markup is usually written on the copy (e.g. underlining words that are to be set in italics)
+53214,markup_language,a set of symbols and rules for their use when doing a markup of a document
+53215,marl,a loose and crumbling earthy deposit consisting mainly of calcite or dolomite; used as a fertilizer for soils deficient in lime
+53216,marlberry Ardisia_escallonoides Ardisia_paniculata,tropical American shrub or small tree with brown wood and dark berries
+53217,marlin,large long-jawed oceanic sport fishes; related to sailfishes and spearfishes; not completely cold-blooded i.e. able to warm their brains and eyes
+53218,marline,a small usually tarred line of 2 strands
+53219,marlinespike marlinspike marlingspike,a pointed iron hand tool that is used to separate strands of a rope or cable (as in splicing)
+53220,marlite marlstone,metamorphic rock with approximately the same composition as marl
+53221,marmalade,a preserve made of the pulp and rind of citrus fruits
+53222,marmalade_bush fire_bush fire-bush Streptosolen_jamesonii,evergreen South American shrub having showy trumpet-shaped orange flowers; grown as an ornamental or houseplant
+53223,marmalade_tree mammee sapote Pouteria_zapota Calocarpum_zapota,tropical American tree having wood like mahogany and sweet edible egg-shaped fruit; in some classifications placed in the genus Calocarpum
+53224,marmite,soup cooked in a large pot
+53225,marmite,a large pot especially one with legs used e.g. for cooking soup
+53226,marmoset,small soft-furred South American and Central American monkey with claws instead of nails
+53227,marmot,stocky coarse-furred burrowing rodent with a short bushy tail found throughout the northern hemisphere; hibernates in winter
+53228,marocain crepe_marocain,a dress crepe; similar to Canton crepe
+53229,maroon,a person who is stranded (as on an island); "when the tide came in I was a maroon out there"
+53230,maroon,a dark purplish-red to dark brownish-red color
+53231,maroon,an exploding firework used as a warning signal
+53232,marquee marquise,permanent canopy over an entrance of a hotel etc.
+53233,marquess,a British peer ranking below a duke and above an earl
+53234,marquetry marqueterie,inlaid veneers are fitted together to form a design or picture that is then used to ornament furniture
+53235,marquis marquess,nobleman (in various countries) ranking above a count
+53236,marriage,a close and intimate union; "the marriage of music and dance"; "a marriage of ideas"
+53237,marriage married_couple man_and_wife,two people who are married to each other; "his second marriage was happier than the first"; "a married couple without love"
+53238,marriage matrimony union spousal_relationship wedlock,the state of being a married couple voluntarily joined for life (or until divorce); "a long and happy marriage"; "God bless this union"
+53239,marriage wedding marriage_ceremony,the act of marrying; the nuptial ceremony; "their marriage was conducted in the chapel"
+53240,marriage_bed,the bed shared by a newly wed couple
+53241,marriage_brokerage marriage_mart,a business that arranges marriage contracts
+53242,marriage_contract marriage_settlement,a prenuptial agreement or contract
+53243,marriage_counseling,counseling on marital problems and disagreements
+53244,marriage_license marriage_licence wedding_license wedding_licence,a license authorizing two people to marry
+53245,marriage_of_convenience,a marriage for expediency rather than love
+53246,marriage_proposal proposal_of_marriage marriage_offer proposal,an offer of marriage
+53247,marriageability,eligibility for marriage
+53248,married,a person who is married; "we invited several young marrieds"
+53249,marrow bone_marrow,very tender and very nutritious tissue from marrowbones
+53250,marrow bone_marrow,the fatty network of connective tissue that fills the cavities of bones
+53251,marrow marrow_squash vegetable_marrow,any of various squash plants grown for their elongated fruit with smooth dark green skin and whitish flesh
+53252,marrow vegetable_marrow,large elongated squash with creamy to deep green skins
+53253,marrowbone,a bone containing edible marrow; used especially in flavoring soup
+53254,marrowfat_pea,a variety of large pea that is commonly processed and sold in cans
+53255,marseille,strong cotton fabric with a raised pattern; used for bedspreads
+53256,marsh marshland fen fenland,low-lying wet land with grassy vegetation; usually is a transition zone between land and water; "thousands of acres of marshland"; "the fens of eastern England"
+53257,marsh_St-John's_wort Hypericum_virginianum,perennial marsh herb with pink to mauve flowers; southeastern United States
+53258,marsh_andromeda common_bog_rosemary Andromeda_polifolia,erect to procumbent evergreen shrub having pendent clusters of white or pink flowers; of sphagnum peat bogs and other wet acidic areas in northern Europe
+53259,marsh_bellflower Campanula_aparinoides,bellflower common in marshes of eastern North America having lanceolate linear leaves and small whitish flowers
+53260,marsh_cress yellow_watercress Rorippa_islandica,annual or biennial cress growing in damp places sometimes used in salads or as a potherb; troublesome weed in some localities
+53261,marsh_elder iva,any of various coarse shrubby plants of the genus Iva with small greenish flowers; common in moist areas (as coastal salt marshes) of eastern and central North America
+53262,marsh_felwort Swertia_perennia,perennial of damp places in mountains of Eurasia and North America having dull-colored blue or violet flowers
+53263,marsh_fern Thelypteris_palustris Dryopteris_thelypteris,fern having pinnatifid fronds and growing in wet places; cosmopolitan in north temperate regions
+53264,marsh_gas,methane gas produced when vegetation decomposes in water
+53265,marsh_gentian calathian_violet Gentiana_pneumonanthe,perennial Eurasian gentian with sky-blue funnel-shaped flowers of damp open heaths
+53266,marsh_hare swamp_rabbit Sylvilagus_palustris,a wood rabbit of marshy coastal areas from North Carolina to Florida
+53267,marsh_harrier Circus_Aeruginosus,Old World harrier frequenting marshy regions
+53268,marsh_hawk northern_harrier hen_harrier Circus_cyaneus,common harrier of North America and Europe; nests in marshes and open land
+53269,marsh_horsetail Equisetum_palustre,scouring-rush horsetail widely distributed in wet or boggy areas of northern hemisphere
+53270,marsh_mallow white_mallow Althea_officinalis,European perennial plant naturalized in United States having triangular ovate leaves and lilac-pink flowers
+53271,marsh_marigold kingcup meadow_bright May_blob cowslip water_dragon Caltha_palustris,swamp plant of Europe and North America having bright yellow flowers resembling buttercups
+53272,marsh_orchid,any of several orchids of the genus Dactylorhiza having fingerlike tuberous roots; Europe and Mediterranean region
+53273,marsh_pea Lathyrus_palustris,scrambling perennial of damp or marshy areas of Eurasia and North America with purplish flowers
+53274,marsh_pink rose_pink bitter_floom American_centaury Sabbatia_stellaris Sabbatia_Angularis,any of several pink-flowered marsh plant of the eastern United States resembling a true centaury
+53275,marsh_plant bog_plant swamp_plant,a semiaquatic plant that grows in soft wet land; most are monocots: sedge, sphagnum, grasses, cattails, etc; possibly heath
+53276,marsh_wren,a wren of the genus Cistothorus that frequents marshes
+53277,marshal marshall,(in some countries) a military officer of highest rank
+53278,marshal marshall,a law officer having duties similar to those of a sheriff in carrying out the judgments of a court of law
+53279,marshalling_yard,a railway yard in which trains are assembled and goods are loaded
+53280,marshalship,the post of marshall
+53281,marshmallow,spongy confection made of gelatin and sugar and corn syrup and dusted with powdered sugar
+53282,marshmallow_fluff,a very sweet white spread resembling marshmallow candy
+53283,marsupial pouched_mammal,mammals of which the females have a pouch (the marsupium) containing the teats where the young are fed and carried
+53284,marsupium,an external abdominal pouch in most marsupials where newborn offspring are suckled
+53285,martello_tower,a circular masonry fort for coastal defence
+53286,marten marten_cat,agile slender-bodied arboreal mustelids somewhat larger than weasels
+53287,martensite,a solid solution of carbon in alpha-iron that is formed when steel is cooled so rapidly that the change from austenite to pearlite is suppressed; responsible for the hardness of quenched steel
+53288,martial_art,any of several Oriental arts of weaponless self-defense; usually practiced as a sport; "he had a black belt in the martial arts"
+53289,martial_law,the body of law imposed by the military over civilian affairs (usually in time of war or civil crisis); overrides civil law
+53290,martin,any of various swallows with squarish or slightly forked tail and long pointed wings; migrate around Martinmas
+53291,martinet disciplinarian moralist,someone who demands exact conformity to rules and forms
+53292,martingale,a harness strap that connects the nose piece to the girth; prevents the horse from throwing back its head
+53293,martini,a cocktail made of gin (or vodka) with dry vermouth
+53294,martynia Martynia_annua,sprawling annual or perennial herb of Central America and West Indies having creamy-white to red-purple bell-shaped flowers followed by unusual horned fruit
+53295,martyr,one who voluntarily suffers death as the penalty for refusing to renounce their religion
+53296,martyr sufferer,one who suffers for the sake of principle
+53297,martyrdom,death that is imposed because of the person's adherence of a religious faith or cause
+53298,marumi marumi_kumquat round_kumquat Fortunella_japonica,shrub bearing round-fruited kumquats
+53299,marupa Simarouba_amara,tree of the Amazon valley yielding a light brittle timber locally regarded as resistant to insect attack
+53300,marzipan marchpane,almond paste and egg whites
+53301,mascara,makeup that is used to darken and thicken the eye lashes
+53302,mascarene_grass Korean_velvet_grass Zoysia_tenuifolia,Asiatic creeping perennial grass; introduced in southern United States as a drought-resistant lawn grass
+53303,mascarpone,soft mild Italian cream cheese
+53304,mascot,a character, animal or object that is adopted by a team or group as a symbolic figure
+53305,masculine,a gender that refers chiefly (but not exclusively) to males or to objects classified as male
+53306,masculinity,the trait of behaving in ways considered typical for men
+53307,masculinization masculinisation virilization virilisation,the abnormal development of male sexual characteristics in a female (usually as the result of hormone therapies or adrenal malfunction)
+53308,masdevallia,any of numerous orchids of the genus Masdevallia; tufted evergreen often diminutive plants whose flowers in a remarkable range of colors usually resemble a tricorn with sepals fused at the base to form a tube
+53309,maser,an acronym for microwave amplification by stimulated emission of radiation; an amplifier that works on the same principle as a laser and emits coherent microwave radiation
+53310,mash,a mixture of mashed malt grains and hot water; used in brewing
+53311,mash,mixture of ground animal feeds
+53312,mashed_potato,potato that has been peeled and boiled and then mashed
+53313,masher,a kitchen utensil used for mashing (e.g. potatoes)
+53314,mashie five_iron,middle-distance iron
+53315,mashie_niblick seven_iron,iron with a lofted face for hitting high shots to the green
+53316,masjid musjid,(Islam) a Muslim place of worship
+53317,mask,a protective covering worn over the face
+53318,mask,a covering to disguise or conceal the face
+53319,mask,activity that tries to conceal something; "no mask could conceal his ignorance"; "they moved in under a mask of friendship"
+53320,masked_ball masquerade_ball fancy-dress_ball,a ball at which guests wear costumes and masks
+53321,masked_shrew Sorex_cinereus,commonest shrew of moist habitats in North America
+53322,masking,the blocking of one sensation resulting from the presence of another sensation; "he studied auditory masking by pure tones"
+53323,masking_piece masking,scenery used to block the audience's view of parts of the stage that should not be seen
+53324,masking_tape masking_paper,adhesive tape used to cover the part of a surface that should not be painted
+53325,masochism,sexual pleasure obtained from receiving punishment (physical or psychological)
+53326,masochist,someone who obtains pleasure from receiving punishment
+53327,mason stonemason,a craftsman who works with stone or brick
+53328,mason's_level,a level longer than a carpenter's level
+53329,mason_bee,any of numerous solitary bees that build nests of hardened mud and sand
+53330,mason_wasp,solitary wasp that constructs nests of hardened mud or clay for the young
+53331,mason_wasp,any of various solitary wasps that construct nests of hardened mud for their young
+53332,masonry,structure built of stone or brick by a mason
+53333,masonry,the craft of a mason
+53334,masquerade charade,making a false outward show; "a beggar's masquerade of wealth"
+53335,masquerade masquerade_party masque mask,a party of guests wearing costumes and masks
+53336,masquerader masker masquer,a participant in a masquerade
+53337,mass,a body of matter without definite shape; "a huge ice mass"
+53338,mass,an ill-structured collection of similar things (objects or people)
+53339,mass,the property of a body that causes it to have weight in a gravitational field
+53340,mass-action_principle mass_action,(neurology) the principle that the cortex of the brain operates as a coordinated system with large masses of neural tissue involved in all complex functioning
+53341,mass-energy_equivalence,(physics) the principle that a measured quantity of mass is equivalent (according to relativity theory) to a measured quantity of energy
+53342,mass_culture,the culture that is widely disseminated via the mass media
+53343,mass_defect mass_deficiency,the amount by which the mass of an atomic nucleus is less than the sum of the masses of its constituent particles
+53344,mass_energy,(physics) the mass of a body regarded relativistically as energy
+53345,mass_hysteria epidemic_hysertia,a condition in which a large group of people exhibit the same state of violent mental agitation
+53346,mass_murderer,a person who is responsible for the deaths of many victims in a single incident
+53347,mass_noun,a noun that does not form plurals
+53348,mass_number nucleon_number,the sum of the number of neutrons and protons in an atomic nucleus
+53349,mass_production,the production of large quantities of a standardized article (often using assembly line techniques)
+53350,mass_spectrograph,a mass spectrometer that produces a graphical representation of the mass spectrum
+53351,mass_spectrometer spectrometer,spectroscope for obtaining a mass spectrum by deflecting ions into a thin slit and measuring the ion current with an electrometer
+53352,mass_spectroscopy,the use of spectroscopy to determine the masses of small electrically charged particles
+53353,mass_spectrum,a distribution of ions as shown by a mass spectrograph or a mass spectrometer
+53354,mass_unit,a unit of measurement for mass
+53355,massage,kneading and rubbing parts of the body to increase circulation and promote relaxation
+53356,massage_parlor,a place where illicit sex is available under the guise of therapeutic massage
+53357,massage_parlor,a business establishment that offers therapeutic massage
+53358,massager,someone who rubs or kneads parts of the body to stimulate circulation and promote relaxation
+53359,massasauga massasauga_rattler Sistrurus_catenatus,pygmy rattlesnake found in moist areas from the Great Lakes to Mexico; feeds on mice and small amphibians
+53360,masse masse_shot,a shot in billiards made by hitting the cue ball with the cue held nearly vertically; the cue ball spins around another ball before hitting the object ball
+53361,masseter,a large muscle that raises the lower jaw and is used in chewing
+53362,masseur,a male massager
+53363,masseuse,a female massager
+53364,massicot massicotite,the mineral form of lead monoxide; in the form of yellow powder it is used as a pigment
+53365,massif,a block of the earth's crust bounded by faults and shifted to form peaks of a mountain range
+53366,mast,nuts of forest trees (as beechnuts and acorns) accumulated on the ground
+53367,mast,nuts of forest trees used as feed for swine
+53368,mast,any sturdy upright pole
+53369,mast,a vertical spar for supporting sails
+53370,mast_cell mastocyte labrocyte,a large connective tissue cell that contains histamine and heparin and serotonin which are released in allergic reactions or in response to injury or inflammation
+53371,mastaba mastabah,an ancient Egyptian mud-brick tomb with a rectangular base and sloping sides and flat roof; "the Egyptian pyramids developed from the mastaba"
+53372,mastalgia,pain in the breast
+53373,mastectomy,surgical removal of a breast to remove a malignant tumor
+53374,master,someone who holds a master's degree from academic institution
+53375,master,directs the work of others
+53376,master captain sea_captain skipper,an officer who is licensed to command a merchant ship
+53377,master master_copy original,an original creation (i.e., an audio recording) from which copies can be made
+53378,master professional,an authority qualified to teach apprentices
+53379,master's_degree,an academic degree higher than a bachelor's degree but lower than a doctor's degree
+53380,master-at-arms,the senior petty officer; responsible for discipline aboard ship
+53381,master_bedroom,the principal bedroom in a house; usually occupied by the head of the household
+53382,master_class,a class (especially in music) given to talented students by an expert
+53383,master_file main_file,(computer science) a computer file that is used as the authority in a given job and that is relatively permanent
+53384,master_of_ceremonies emcee host,a person who acts as host at formal occasions (makes an introductory speech and introduces other speakers)
+53385,master_plan,a long-term outline of a project or government function; "the zoning board adopted a master plan for the new development"
+53386,master_race Herrenvolk,a race that considers itself superior to all others and fitted to rule the others
+53387,master_sergeant,a senior noncommissioned officer in the Army or Marines
+53388,mastering,becoming proficient in the use of something; having mastery of; "his mastering the art of cooking took a long time"
+53389,mastering,the act of making a master recording from which copies can be made; "he received a bill for mastering the concert and making 100 copies"
+53390,masterpiece,an outstanding achievement
+53391,masterpiece chef-d'oeuvre,the most outstanding work of a creative artist or craftsman
+53392,mastership,the skill of a master
+53393,mastership,the position of master
+53394,masterstroke,an achievement demonstrating great skill or mastery
+53395,mastery subordination,the act of mastering or subordinating someone
+53396,masthead,the title of a newspaper or magazine; usually printed on the front page and on the editorial page
+53397,masthead,the head or top of a mast
+53398,masthead flag,a listing printed in all issues of a newspaper or magazine (usually on the editorial page) that gives the name of the publication and the names of the editorial staff, etc.
+53399,mastic,an aromatic exudate from the mastic tree; used chiefly in varnishes
+53400,mastic,a pasty cement used as an adhesive or filler
+53401,mastic mastic_tree lentisk Pistacia_lentiscus,an evergreen shrub of the Mediterranean region that is cultivated for its resin
+53402,mastiff,an old breed of powerful deep-chested smooth-coated dog used chiefly as a watchdog and guard dog
+53403,mastiff_bat,a soft-furred chocolate-brown bat with folded ears and small wings; often runs along the ground
+53404,mastitis,inflammation of a breast (or udder)
+53405,mastodon mastodont,extinct elephant-like mammal that flourished worldwide from Miocene through Pleistocene times; differ from mammoths in the form of the molar teeth
+53406,mastoid mastoid_process mastoid_bone mastoidal,process of the temporal bone behind the ear at the base of the skull
+53407,mastoidale,the craniometric point at the lowest point of the mastoid process
+53408,mastoidectomy,surgical removal of some or all of the mastoid process
+53409,mastoiditis,inflammation of the mastoid
+53410,mastopathy mazopathy,any pathology of the breast
+53411,mastopexy,plastic surgery to lift or reshape the breasts
+53412,masturbation onanism,manual stimulation of the genital organs (of yourself or another) for sexual pleasure
+53413,masturbator onanist,a person who practices masturbation
+53414,mat,a mass that is densely tangled or interwoven; "a mat of weeds and grass"
+53415,mat,a small pad of material that is used to protect surface from an object placed on it
+53416,mat,a thick flat pad used as a floor covering
+53417,mat gym_mat,sports equipment consisting of a piece of thick padding on the floor for gymnastic sports
+53418,mat matting,mounting consisting of a border or background for a picture
+53419,matador,the principal bullfighter who is appointed to make the final passes and kill the bull
+53420,matai black_pine Prumnopitys_taxifolia Podocarpus_spicata,conifer of Australia and New Zealand
+53421,match,the score needed to win a match
+53422,match,a formal contest in which two or more persons or teams compete
+53423,match,something that resembles or harmonizes with; "that tie makes a good match with your jacket"
+53424,match,a burning piece of wood or cardboard; "if you drop a match in there the whole place will explode"
+53425,match lucifer friction_match,lighter consisting of a thin piece of wood or cardboard tipped with combustible chemical; ignites with friction; "he always carries matches to light his pipe"; "as long you've a lucifer to light your fag"
+53426,match mate,an exact duplicate; "when a match is found an entry is made in the notebook"
+53427,match-up matchup,the pairing of people or things as for comparison or competition; "it was a good match-up but the home team won"; "we need a matchup of the best teachers with the neediest schools"
+53428,match_plane tonguing_and_grooving_plane,a plane having cutters designed to make the tongues and grooves on the edges of matchboards
+53429,match_play,golf scoring by holes won
+53430,match_point,(tennis) the final point needed to win a match (especially in tennis)
+53431,matchboard,a board that has a groove cut into one edge and a tongue cut into the other so they fit tightly together (as in a floor)
+53432,matchbook,a small folder of paper safety matches
+53433,matchbox,a box for holding matches
+53434,matching_funds,funds that will be supplied in an amount matching the funds available from other sources
+53435,matchlock,an early style of musket; a slow-burning wick would be lowered into a hole in the breech to ignite the charge
+53436,matchmaker matcher marriage_broker,someone who arranges (or tries to arrange) marriages for others
+53437,matchmaking,mediation in order to bring about a marriage between others
+53438,matchstick,a short thin stick of wood used in making matches
+53439,matchweed matchbush,any of several plants of the genus Gutierrezia having tiny flower heads that resemble the heads of matches
+53440,matchwood,wood suitable for making matchsticks
+53441,matchwood,fragments of wood; "it was smashed into matchwood"
+53442,matchwood splinters,wood in small pieces or splinters; "the vessel was beaten to matchwood on the rocks"
+53443,mate,the partner of an animal (especially a sexual partner); "he loved the mare and all her mates"; "camels hate leaving their mates"
+53444,mate,informal term for a friend of the same sex
+53445,mate,South American tea-like drink made from leaves of a South American holly called mate
+53446,mate Paraguay_tea Ilex_paraguariensis,South American holly; leaves used in making a drink like tea
+53447,mate fellow,one of a pair; "he lost the mate to his shoe"; "one eye was blue but its fellow was brown"
+53448,mate first_mate,the officer below the master on a commercial ship
+53449,matelote,highly seasoned soup or stew made of freshwater fishes (eel, carp, perch) with wine and stock
+53450,mater,an informal use of the Latin word for mother; sometimes used by British schoolboys or used facetiously
+53451,material,a person judged suitable for admission or employment; "he was university material"; "she was vice-presidential material"
+53452,material,information (data or ideas or observations) that can be used or reworked into a finished form; "the archives provided rich material for a definitive biography"
+53453,material,things needed for doing or making something; "writing materials"; "useful teaching materials"
+53454,material stuff,the tangible substance that goes into the makeup of a physical object; "coal is a hard black material"; "wheat is the stuff they use to make bread"
+53455,material_breach,a breach serious enough to destroy the value of the contract and to give a basis for an action for breach of contract
+53456,material_resource,assets in the form of material possessions
+53457,material_witness,a witness whose testimony is both relevant to the matter at issue and required in order to resolve the matter
+53458,materialism philistinism,a desire for wealth and material possessions with little interest in ethical or spiritual matters
+53459,materialism physicalism,(philosophy) the philosophical theory that matter is the only reality
+53460,materialist,someone with great regard for material possessions
+53461,materialist,someone who thinks that nothing exists but physical matter
+53462,materiality,relevance requiring careful consideration
+53463,materiality physicalness corporeality corporality,the quality of being physical; consisting of matter
+53464,materialization materialisation,the process of coming into being; becoming reality; "the materialization of her dream"
+53465,materialization materialisation manifestation,an appearance in bodily form (as of a disembodied spirit)
+53466,materials_handling,act of loading and unloading and moving goods within e.g. a factory especially using mechanical devices
+53467,materiel equipage,equipment and supplies of a military force
+53468,maternal-infant_bonding,the attachment that forms between an infant and its mother beginning at birth; "maternal-infant bonding influences the child's psychological and physical development"
+53469,maternalism,motherly care; behavior characteristic of a mother; the practice of acting as a mother does toward her children
+53470,maternity_hospital,a hospital that provides care for women during pregnancy and childbirth and for newborn infants
+53471,maternity_ward,a hospital ward that provides care for women during pregnancy and childbirth and for newborn infants
+53472,math_teacher mathematics_teacher,someone who teaches mathematics
+53473,mathematical_notation,a notation used by mathematicians
+53474,mathematical_process mathematical_operation operation,(mathematics) calculation by mathematical methods; "the problems at the end of the chapter demonstrated the mathematical processes involved in the derivation"; "they were learning the basic operations of arithmetic"
+53475,mathematical_proof,proof of a mathematical theorem
+53476,mathematical_relation,a relation between mathematical expressions (such as equality or inequality)
+53477,mathematical_space topological_space,(mathematics) any set of points that satisfy a set of postulates of some kind; "assume that the topological space is finite dimensional"
+53478,mathematical_statement,a statement of a mathematical relation
+53479,mathematical_symbol,a character that is used to indicates a mathematical relation or operation
+53480,mathematician,a person skilled in mathematics
+53481,mathematics math maths,a science (or group of related sciences) dealing with the logic of quantity and shape and arrangement
+53482,mathematics_department department_of_mathematics,the academic department responsible for teaching and research in mathematics
+53483,matilija_poppy California_tree_poppy Romneya_coulteri,tall branching subshrub of California and Mexico often cultivated for its silvery-blue foliage and large fragrant white flowers
+53484,matinee,a theatrical performance held during the daytime (especially in the afternoon)
+53485,matins morning_prayer,the first canonical hour; at daybreak
+53486,matriarch,a feisty older woman with a big bosom (as drawn in cartoons)
+53487,matriarch materfamilias,a female head of a family or tribe
+53488,matriarchy matriarchate,a form of social organization in which a female is the family head and title is traced through the female line
+53489,matricide,a person who murders their mother
+53490,matricide,the murder of your mother
+53491,matriculate,someone who has been admitted to a college or university
+53492,matriculation matric,admission to a group (especially a college or university)
+53493,matrilineage enation cognation,line of descent traced through the maternal side of the family
+53494,matrimonial_law,that branch of jurisprudence that studies the laws governing matrimony
+53495,matrimony,the ceremony or sacrament of marriage
+53496,matrimony_vine boxthorn,any of various shrubs or vines of the genus Lycium with showy flowers and bright berries
+53497,matrix,(geology) a mass of fine-grained rock in which fossils, crystals, or gems are embedded
+53498,matrix,an enclosure within which something originates or develops (from the Latin for womb)
+53499,matrix,(mathematics) a rectangular array of quantities or expressions set out by rows and columns; treated as a single element and manipulated according to rules
+53500,matrix,the formative tissue at the base of a nail
+53501,matrix,mold used in the production of phonograph records, type, or other relief surface
+53502,matrix intercellular_substance ground_substance,the body substance in which tissue cells are embedded
+53503,matrix_addition,the addition of matrices
+53504,matrix_algebra,the part of algebra that deals with the theory of matrices
+53505,matrix_inversion,determination of a matrix that when multiplied by the given matrix will yield a unit matrix
+53506,matrix_multiplication,the multiplication of matrices
+53507,matrix_operation,a mathematical operation involving matrices
+53508,matrix_transposition,the interchange of each row of a square matrix with the corresponding column
+53509,matron,a wardress in a prison
+53510,matron,a woman in charge of nursing in a medical institution
+53511,matron,a married woman (usually middle-aged with children) who is staid and dignified
+53512,matron_of_honor,a married woman serving as the attendant to the bride at a wedding
+53513,matronymic metronymic,a name derived from the name of your mother or a maternal ancestor
+53514,matsyendra,(Hinduism) a religious posture
+53515,matte,a mixture of sulfides that forms when sulfide metal ores are smelted
+53516,matter,written works (especially in books or magazines); "he always took some reading matter with him on the plane"
+53517,matter,a problem; "is anything the matter?"
+53518,matter,(used with negation) having consequence; "they were friends and it was no matter who won the games"
+53519,matter,that which has mass and occupies space; "physicists study both the nature of matter and the forces which govern it"
+53520,matter affair thing,a vaguely specified concern; "several matters to attend to"; "it is none of your affair"; "things are going well"
+53521,matter_of_fact,a matter that is an actual fact or is demonstrable as a fact
+53522,matting,a covering of coarse fabric (usually of straw or hemp)
+53523,mattock,a kind of pick that is used for digging; has a flat blade set at right angles to the handle
+53524,mattress,a large thick pad filled with resilient material and often incorporating coiled springs, used as a bed or part of a bed
+53525,mattress_cover,bedclothes that provide a cover for a mattress
+53526,mattress_pad,a protective pad over a mattress to protect it
+53527,maturation ripening maturement,coming to full development; becoming mature
+53528,maturity matureness,state of being mature; full development
+53529,maturity maturity_date due_date,the date on which an obligation must be repaid
+53530,matzo matzoh matzah unleavened_bread,brittle flat bread eaten at Passover
+53531,matzo_ball matzoh_ball matzah_ball,a Jewish dumpling made of matzo meal; usually served in soup
+53532,matzo_meal matzoh_meal matzah_meal,meal made from ground matzos
+53533,maul sledge sledgehammer,a heavy long-handled hammer used to drive stakes or wedges
+53534,mauler,a fighter who batters the opponent; "Jack Dempsey was called a mauler"
+53535,maulstick mahlstick,a long stick that a painter uses to support the hand holding the brush
+53536,maund,a unit of weight used in Asia; has different values in different countries; "the official maund in India is 82.6 pounds avoirdupois"
+53537,mausoleum,a large burial chamber, usually above ground
+53538,mauve,a moderate purple
+53539,maverick,an unbranded range animal (especially a stray calf); belongs to the first person who puts a brand on it
+53540,maverick rebel,someone who exhibits great independence in thought and action
+53541,mawkishness bathos,insincere pathos
+53542,mawkishness sentimentality drippiness mushiness soupiness sloppiness,falsely emotional in a maudlin way
+53543,maxi,a long skirt ending below the calf
+53544,maxillaria,any of numerous orchids of the genus Maxillaria often cultivated for their large brilliantly colored solitary flowers
+53545,maxillary_artery arteria_maxillaris,either of two arteries branching from the external carotid artery and supplying structure of the face
+53546,maxillary_sinus,one of a pair of sinuses forming a cavity in the maxilla
+53547,maxillary_vein vena_maxillaris,posterior continuation of the pterygoid plexus; joins the superficial temporal vein to form the retromandibular vein
+53548,maxim axiom,a saying that is widely accepted on its own merits
+53549,maximization,the mathematical process of finding the maximum value of a function
+53550,maximization maximisation maximation,the act of raising to the highest possible point or condition or position
+53551,maximum,the point on a curve where the tangent changes from positive on the left to negative on the right
+53552,maximum upper_limit,the largest possible quantity
+53553,maximum_and_minimum_thermometer,thermometer that records the highest and lowest temperatures reached during a period of time
+53554,maxwell Mx,a cgs unit of magnetic flux equal to the flux perpendicular to an area of 1 square centimeter in a magnetic field of 1 gauss
+53555,mayapple May_apple wild_mandrake Podophyllum_peltatum,North American herb with poisonous root stock and edible though insipid fruit
+53556,mayeng maple-leaved_bayur Pterospermum_acerifolium,Indian tree having fragrant nocturnal white flowers and yielding a reddish wood used for planking; often grown as an ornamental or shade tree
+53557,mayfly dayfly shadfly,slender insect with delicate membranous wings having an aquatic larval stage and terrestrial adult stage usually lasting less than two days
+53558,mayhaw summer_haw Crataegus_aestivalis,hawthorn of southern United States bearing a juicy, acidic, scarlet fruit that is often used in jellies or preserves
+53559,mayhem,the willful and unlawful crippling or mutilation of another person
+53560,mayonnaise mayo,egg yolks and oil and vinegar
+53561,mayor city_manager,the head of a city government
+53562,mayoralty,the position of mayor
+53563,mayoress,the wife of a mayor
+53564,mayoress,a woman mayor
+53565,maypole,a vertical pole or post decorated with streamers that can be held by dancers celebrating May Day
+53566,maypop Passiflora_incarnata,of southern United States; having an insipid berry the size of a hen egg
+53567,mayweed dog_fennel stinking_mayweed stinking_chamomile Anthemis_cotula,widespread rank-smelling weed having white-rayed flower heads with yellow discs
+53568,maze labyrinth,complex system of paths or tunnels in which it is easy to get lost
+53569,mazer,a large hardwood drinking bowl
+53570,mazurka,music composed for dancing the mazurka
+53571,mazurka,a Polish national dance in triple time
+53572,mea_culpa,an acknowledgment of your error or guilt
+53573,mead,made of fermented honey and water
+53574,meadow_buttercup tall_buttercup tall_crowfoot tall_field_buttercup Ranunculus_acris,perennial European buttercup with yellow spring flowers widely naturalized especially in eastern North America
+53575,meadow_clary Salvia_pratensis,tall perennial Old World salvia with violet-blue flowers; found in open grasslands
+53576,meadow_cranesbill Geranium_pratense,tall perennial cranesbill with paired violet-blue axillary flowers; native to northern parts of Old World and naturalized in North America
+53577,meadow_foxtail Alopecurus_pratensis,stout erect perennial grass of northern parts of Old World having silky flowering spikes; widely cultivated for pasture and hay; naturalized in North America
+53578,meadow_goldenrod Canadian_goldenrod Solidago_canadensis,large North American goldenrod having showy clusters of yellow flowers on arching branches; often a weed
+53579,meadow_jumping_mouse Zapus_hudsonius,widely distributed in northeastern and central United States and Canada
+53580,meadow_mushroom field_mushroom Agaricus_campestris,common edible mushroom found naturally in moist open soil; the cultivated mushroom of commerce
+53581,meadow_pipit Anthus_pratensis,a common pipit that is brown above and white below; widely distributed in northern and central Europe and in Asia
+53582,meadow_rue,any of various herbs of the genus Thalictrum; sometimes rhizomatous or tuberous perennials found in damp shady places and meadows or stream banks; have lacy foliage and clouds of small purple or yellow flowers
+53583,meadow_salsify goatsbeard shepherd's_clock Tragopogon_pratensis,weedy European annual with yellow flowers; naturalized in United States
+53584,meadow_saxifrage fair-maids-of-France Saxifraga_granulata,rosette-forming perennial having compact panicles of white flowers; Europe
+53585,meadow_spikemoss basket_spikemoss Selaginella_apoda,spikemoss forming dense mats; eastern North America
+53586,meadow_spittlebug Philaenus_spumarius,North American insect that severely damages grasses
+53587,meadow_vole meadow_mouse Microtus_pennsylvaticus,widely distributed in grasslands of northern United States and Canada
+53588,meadowgrass meadow_grass,any of various grasses that thrive in the presence of abundant moisture
+53589,meadowlark lark,North American songbirds having a yellow breast
+53590,meagerness meagreness leanness poorness scantiness scantness exiguity,the quality of being meager; "an exiguity of cloth that would only allow of miniature capes"-George Eliot
+53591,meal,any of the occasions for eating food that occur by custom or habit at more or less fixed times
+53592,meal,coarsely ground foodstuff; especially seeds of various cereal grasses or pulse
+53593,meal repast,the food served and eaten at one time
+53594,meal_ticket,a source of income or livelihood
+53595,meal_ticket luncheon_voucher,coupon redeemable at a restaurant and entitling the holder to a meal
+53596,mealie,an ear of corn
+53597,mealtime,the hour at which a meal is habitually or customarily eaten
+53598,mealworm,the larva of beetles of the family Tenebrionidae
+53599,mealybug mealy_bug,scalelike plant-eating insect coated with a powdery waxy secretion; destructive especially of fruit trees
+53600,mean mean_value,an average of n numbers computed by adding some function of the numbers and dividing by some function of n
+53601,mean_deviation mean_deviation_from_the_mean,the arithmetic mean of the absolute values of deviations from the mean of a distribution
+53602,mean_distance,the arithmetic mean of the maximum and minimum distances of a celestial body (satellite or secondary star) from its primary
+53603,mean_sun,a theoretical sun that moves along the celestial equator at a constant speed and completes its annual course in the same amount of time the real sun takes at variable speeds
+53604,mean_time mean_solar_time,(astronomy) time based on the motion of the mean sun (an imaginary sun moving uniformly along the celestial equator)
+53605,meander,a bend or curve, as in a stream or river
+53606,meanie meany unkind_person,a person of mean disposition
+53607,meaning significance signification import,the message that is intended or expressed or signified; "what is the meaning of this sentence"; "the significance of a red traffic light"; "the signification of Chinese characters"; "the import of his announcement was ambiguous"
+53608,meaning substance,the idea that is intended; "What is the meaning of this proverb?"
+53609,meaningfulness,the quality of having great value or significance
+53610,meaninglessness,the quality of having no value or significance; "he resented the meaninglessness of the tasks they assigned him"
+53611,meanness minginess niggardliness niggardness parsimony parsimoniousness tightness tightfistedness closeness,extreme stinginess
+53612,means,an instrumentality for accomplishing some end
+53613,means agency way,thing or person that acts to produce a particular effect or achieve an end; "a means of control"; "an example is the best agency of instruction"; "the true way to success"
+53614,means substance,considerable capital (wealth or income); "he is a man of means"
+53615,means_test,an inquiry into the financial position of someone applying for financial aid
+53616,measles rubeola morbilli,an acute and highly contagious viral disease marked by distinct red spots followed by a rash; occurs primarily in children
+53617,measure,a container of some standard capacity that is used to obtain fixed amounts of a substance
+53618,measure bar,musical notation for a repeating pattern of musical beats; "the orchestra omitted the last twelve bars of the song"
+53619,measure quantity amount,how much there is or how many there are of something that you can quantify
+53620,measure step,any maneuver made as part of progress toward a goal; "the situation called for strong measures"; "the police took steps to reduce crime"
+53621,measurement measuring measure mensuration,the act or process of assigning numbers to phenomena according to a rule; "the measurements were carefully done"; "his mental measurings proved remarkably accurate"
+53622,measurer,a person who makes measurements
+53623,measuring_cup,graduated cup used to measure liquid or granular ingredients
+53624,measuring_instrument measuring_system measuring_device,instrument that shows the extent or amount or quantity or degree of something
+53625,measuring_stick measure measuring_rod,measuring instrument having a sequence of marks at regular intervals; used as a reference in making measurements
+53626,measuring_unit measuring_block,a unit of measurement
+53627,measuring_worm inchworm looper,small hairless caterpillar having legs on only its front and rear segments; mostly larvae of moths of the family Geometridae
+53628,meat,the flesh of animals (including fishes and birds and snails) used as food
+53629,meat_and_potatoes,the fundamental part; "successful negotiation is the meat and potatoes of arbitration"
+53630,meat_counter,counter where meats are displayed for sale
+53631,meat_grinder,a mill for grinding meat
+53632,meat_grinder,any action resulting in injury or destruction; "the meat grinder of politics destroyed his reputation"; "allied forces crumbled before the Wehrmacht meat grinder"
+53633,meat_hook,a strong pointed hook from which the carcasses of animals are hung
+53634,meat_house,a small house (on a farm) where meat is stored
+53635,meat_loaf meatloaf,a baked loaf of ground meat
+53636,meat_packer packer,a wholesaler in the meat-packing business
+53637,meat_pie,pie made with meat or fowl enclosed in pastry or covered with pastry or biscuit dough
+53638,meat_safe,a safe for storing meat
+53639,meat_thermometer,a thermometer that is inserted into the center of a roast (with the top away from the heat source); used to measure how well done the meat is
+53640,meatball,ground meat formed into a ball and fried or simmered in broth
+53641,meatpacking meat_packing meat-packing_business,wholesale packaging of meat for future sale (including slaughtering and processing and distribution to retailers)
+53642,meatus,a natural body passageway
+53643,mebendazole,an anthelmintic used to treat hookworm and pinworm and roundworm infestations
+53644,mebibit Mibit,a unit of information equal to 1024 kibibits or 2^20 (1,048,576) bits
+53645,mecca,a place that attracts many visitors; "New York is a mecca for young artists"
+53646,mechanic's_lien,lien to secure payment for work and materials in erecting or repairing a building or other structure
+53647,mechanical_advantage,the ratio of the force exerted by a machine to the force applied to it
+53648,mechanical_device,mechanism consisting of a device that works on mechanical principles
+53649,mechanical_drawing,scale drawing of a machine or architectural plan etc,
+53650,mechanical_energy,energy in a mechanical form
+53651,mechanical_engineer,a person trained to design and construct machines
+53652,mechanical_engineering,the branch of engineering that deals with the design and construction and operation of machinery
+53653,mechanical_mixture,a mixture whose components can be separated by mechanical means
+53654,mechanical_phenomenon,a physical phenomenon associated with the equilibrium or motion of objects
+53655,mechanical_piano Pianola player_piano,a mechanically operated piano that uses a roll of perforated paper to activate the keys
+53656,mechanical_system,a system of elements that interact on mechanical principles
+53657,mechanics,the branch of physics concerned with the motion of bodies in a frame of reference
+53658,mechanism,a natural object resembling a machine in structure or function; "the mechanism of the ear"; "the mechanism of infection"
+53659,mechanism,(philosophy) the philosophical theory that all phenomena can be explained in terms of physical or biological causes
+53660,mechanism,device consisting of a piece of machinery; has moving parts that perform some function
+53661,mechanism chemical_mechanism,the atomic process that occurs during a chemical reaction; "he determined unique mechanisms for the photochemical reactions"
+53662,mechanism mechanics,the technical aspects of doing something; "a mechanism of social control"; "mechanisms of communication"; "the mechanics of prose style"
+53663,mechanist,a philosopher who subscribes to the doctrine of mechanism
+53664,mechanization mechanisation,the condition of having a highly technical implementation
+53665,mechanized_cavalry,an armored unit of a modern army equipped with motor vehicles
+53666,meclizine meclizine_hydrochloride Antivert,an antihistamine (trade name Antivert) used to treat or prevent motion sickness
+53667,meclofenamate meclofenamate_sodium Meclomen,a nonsteroidal anti-inflammatory (trade name Meclomen) used to treat arthritis
+53668,meconium,thick dark green mucoid material that is the first feces of a newborn child
+53669,mecopteran,any of various carnivorous insects of the order Mecoptera
+53670,medal_play stroke_play,golf scoring by total strokes taken
+53671,medalist medallist,someone who has won a medal
+53672,medalist medallist medal_winner,(golf) the winner at medal play of a tournament
+53673,medallion,any of various large ancient Greek coins
+53674,medallion,a circular helping of food (especially a boneless cut of meat); "medallions of veal"
+53675,medallion,an emblem indicating that a taxicab is registered
+53676,meddler,an officious annoying person who interferes with others
+53677,meddling tampering,the act of altering something secretly or improperly
+53678,media_consultant media_guru,someone who advises about the use of communication media
+53679,mediacy mediateness,the quality of being mediate
+53680,medial_condyle,a condyle on the inner side of the lower extremity of the femur
+53681,medial_geniculate_body corpus_geniculatum_mediale medial_geniculate,a neural structure that serves as the last of a series of processing centers along the auditory pathway from the cochlea to the temporal lobe of the cerebral cortex
+53682,medial_rectus_muscle medial_rectus rectus_medialis,the ocular muscle whose contraction turns the eyeball medially
+53683,median median_value,the number midway between the two middle numbers in a series containing an even or odd number of items
+53684,mediant,(music) the third note of a diatonic scale; midway between the tonic and the dominant
+53685,mediastinum,the part of the thoracic cavity between the lungs that contains the heart and aorta and esophagus and trachea and thymus
+53686,mediation,a negotiation to resolve differences that is conducted by some impartial party
+53687,mediation intermediation,the act of intervening for the purpose of bringing about a settlement
+53688,mediator go-between intermediator intermediary intercessor,a negotiator who acts as a link between parties
+53689,mediatrix,a woman who is a mediator
+53690,medic medick trefoil,any of several Old World herbs of the genus Medicago having small flowers and trifoliate compound leaves
+53691,medical_assistant,a person trained to assist medical professionals
+53692,medical_bill doctor's_bill,statement of charges for medical services
+53693,medical_building health_facility healthcare_facility,building where medicine is practiced
+53694,medical_care medical_aid,professional treatment for illness or injury
+53695,medical_center,the part of a city where medical facilities are centered
+53696,medical_diagnosis,identification of a disease from its symptoms
+53697,medical_evacuation medevac medivac,the evacuation of persons (usually by air transportation) to a place where they can receive medical care
+53698,medical_expense,amount spent for diagnosis or treatment or prevention of medical problems
+53699,medical_history medical_record anamnesis,the case history of a medical patient as recalled by the patient
+53700,medical_institution,an institution created for the practice of medicine
+53701,medical_instrument,instrument used in the practice of medicine
+53702,medical_officer medic,a medical practitioner in the armed forces
+53703,medical_practice,the practice of medicine
+53704,medical_practitioner medical_man,someone who practices medicine
+53705,medical_procedure,a procedure employed by medical or dental practitioners
+53706,medical_profession medical_community,the body of individuals who are qualified to practice medicine
+53707,medical_relation,the professional relation between a health care professional and a patient
+53708,medical_report,a report of the results of a medical examination of a patient
+53709,medical_school school_of_medicine,a graduate school offering study leading to a medical degree
+53710,medical_science,the science of dealing with the maintenance of health and the prevention and treatment of disease
+53711,medical_scientist,a scientist who studies disease processes
+53712,medical_student medico,a student in medical school
+53713,medicare_check medicare_payment,a check reimbursing an aged person for the expenses of health care
+53714,medication,the act of treating with medicines or remedies
+53715,medicinal_leech Hirudo_medicinalis,large European freshwater leech formerly used for bloodletting
+53716,medicine medical_specialty,the branches of medical science that deal with nonsurgical techniques
+53717,medicine medication medicament medicinal_drug,(medicine) something that treats or prevents or alleviates the symptoms of disease
+53718,medicine practice_of_medicine,the learned profession that is mastered by graduate training in a medical school and that is devoted to preventing or alleviating or curing diseases and injuries; "he studied medicine at Harvard"
+53719,medicine_ball,heavy ball used in physical training
+53720,medicine_chest medicine_cabinet,cabinet that holds medicines and toiletries
+53721,medicine_man,a Native American shaman
+53722,medina,the ancient quarter of many cities in northern Africa
+53723,meditation,(religion) contemplation of spiritual matters (usually on religious or philosophical subjects)
+53724,meditation speculation,continuous and profound contemplation or musing on a subject or series of subjects of a deep or abstruse nature; "the habit of meditation is the basis for all real knowledge"
+53725,mediterranean_anchovy Engraulis_encrasicholus,esteemed for its flavor; usually preserved or used for sauces and relishes
+53726,medium,a liquid with which pigment is mixed by a painter
+53727,medium,(biology) a substance in which specimens are preserved or displayed
+53728,medium,an intervening substance through which something is achieved; "the dissolving medium is called a solvent"
+53729,medium,a state that is intermediate between extremes; a middle position; "a happy medium"
+53730,medium,the surrounding environment; "fish require an aqueous medium"
+53731,medium,a means or instrumentality for storing or communicating information
+53732,medium,an intervening substance through which signals can travel as a means for communication
+53733,medium mass_medium,(usually plural) transmissions that are disseminated widely to the public
+53734,medium spiritualist sensitive,someone who serves as an intermediary between the living and the dead; "he consulted several mediums"
+53735,medium_frequency MF,300 to 3000 kilohertz
+53736,medium_of_exchange monetary_system,anything that is generally accepted as a standard of value and a measure of wealth in a particular country or region
+53737,medium_steel,steel with 0.15-0.3% carbon
+53738,medium_wave,a radio wave with a wavelength between 100 and 1000 meters (a frequency between 300 kilohertz and 3000 kilohertz)
+53739,medlar,a South African globular fruit with brown leathery skin and pithy flesh having a sweet-acid taste
+53740,medlar,crabapple-like fruit used for preserves
+53741,medlar medlar_tree Mespilus_germanica,small deciduous Eurasian tree cultivated for its fruit that resemble crab apples
+53742,medley potpourri pastiche,a musical composition consisting of a series of songs or other musical pieces from various sources
+53743,medroxyprogesterone Provera,a progestin compound (trade name Provera) used to treat menstrual disorders
+53744,medulla,the inner part of an organ or structure in plant or animal
+53745,medulla_oblongata medulla bulb,lower or hindmost part of the brain; continuous with spinal cord; (`bulb' is an old term for medulla oblongata); "the medulla oblongata is the most vital part of the brain because it contains centers controlling breathing and heart functioning"
+53746,medullary_sheath myelin_sheath,a layer of myelin encasing (and insulating) the axons of medullated nerve fibers
+53747,medullated_nerve_fiber myelinated_nerve_fiber,a nerve fiber encased in a sheath of myelin
+53748,medusa medusoid medusan,one of two forms that coelenterates take: it is the free-swimming sexual phase in the life cycle of a coelenterate; in this phase it has a gelatinous umbrella-shaped body and tentacles
+53749,medusa's_head Elymus_caput-medusae,weedy rye grass having long bristling awns
+53750,medusa's_head Euphorbia_medusae Euphorbia_caput-medusae,African dwarf succulent perennial shrub with numerous slender drooping branches
+53751,meed,a fitting reward
+53752,meekness subduedness,a disposition to be patient and long suffering
+53753,meekness submission,the feeling of patient, submissive humbleness
+53754,meerkat mierkat,a mongoose-like viverrine of South Africa having a face like a lemur and only four toes
+53755,meerschaum,a pipe having a bowl made of meerschaum
+53756,meerschaum sepiolite,a white clayey mineral
+53757,meet sports_meeting,a meeting at which a number of athletic contests are held
+53758,meeting coming_together congress,the social act of assembling for some common purpose; "his meeting with the salesmen was the high point of his day"; "the lovers met discreetly for the purposes of sexual congress"
+53759,meeting encounter,a casual or unexpected convergence; "he still remembers their meeting in Paris"; "there was a brief encounter in the hallway"
+53760,meeting get_together,a small informal social gathering; "there was an informal meeting in my living room"
+53761,meeting group_meeting,a formally arranged gathering; "next year the meeting will be in Chicago"; "the meeting elected a chairperson"
+53762,meeting_house honeysuckle Aquilegia_canadensis,columbine of eastern North America having long-spurred red flowers
+53763,mefenamic_acid Ponstel,a nonsteroidal anti-inflammatory and analgesic drug (trade name Ponstel) used to treat mild pain (especially menstrual cramps)
+53764,mefloquine mefloquine_hydrochloride Larium Mephaquine,an antimalarial drug (trade name Larium and Mephaquine) that is effective in cases that do not respond to chloroquine; said to produce harmful neuropsychiatric effects on some people
+53765,megabit Mbit Mb,a unit of information equal to 1000 kilobits or 10^6 (1,000,000) bits
+53766,megabyte M MB,a unit of information equal to 1000 kilobytes or 10^6 (1,000,000) bytes
+53767,megabyte mebibyte M MB MiB,a unit of information equal to 1024 kibibytes or 2^20 (1,048,576) bytes
+53768,megacolon,an abnormal enlargement of the colon; can be congenital (as in Hirschsprung's disease) or acquired (as when children refuse to defecate)
+53769,megadeath,the death of a million people; "they calibrate the effects of atom bombs in megadeaths"
+53770,megaflop MFLOP million_floating_point_operations_per_second,(computer science) a unit for measuring the speed of a computer system
+53771,megagametophyte,the female gametophyte produced by the megaspore of a plant that produces both microspore and megaspores
+53772,megahertz MHz megacycle_per_second megacycle Mc,one million periods per second
+53773,megakaryocyte,a large bone marrow cell; regarded as the source of blood platelets
+53774,megalith megalithic_structure,memorial consisting of a very large stone forming part of a prehistoric structure (especially in western Europe)
+53775,megaloblast,abnormally large red blood cell present in pernicious anemia and folic acid deficiency
+53776,megaloblastic_anemia megaloblastic_anaemia,anemia characterized by many large immature and dysfunctional red blood cells (megaloblasts) in the bone marrow; associated with pernicious anemia
+53777,megalocyte macrocyte,abnormally large red blood cell (associated with pernicious anemia)
+53778,megalomania,a psychological state characterized by delusions of grandeur
+53779,megalomaniac,a pathological egotist
+53780,megalopolis,a very large urban complex (usually involving several cities and towns)
+53781,megalosaur megalosaurus,gigantic carnivorous bipedal dinosaur of the Jurassic or early Cretaceous in Europe
+53782,megaphone,a cone-shaped acoustic device held to the mouth to intensify and direct the human voice
+53783,megapode mound_bird mound-bird mound_builder scrub_fowl,large-footed short-winged birds of Australasia; build mounds of decaying vegetation to incubate eggs
+53784,megasporangium macrosporangium,a plant structure that produces megaspores
+53785,megaspore macrospore,larger of the two types of spore produced in heterosporous plants; develops in ovule into a female gametophyte
+53786,megasporophyll,in non-flowering plants, a sporophyll that bears only megasporangia
+53787,megatherian megatheriid megatherian_mammal,a large extinct ground sloth
+53788,megaton,one million tons
+53789,megaton,a measure of explosive power (of an atomic weapon) equal to that of one million tons of TNT
+53790,megaton_bomb,a nuclear weapon with an explosive power equivalent to one million tons of TNT
+53791,megavitamin_therapy,therapy based on a theory that taking very large doses of vitamins will prevent or cure physical or psychological disorders
+53792,megawatt,a unit of power equal to one million watts
+53793,megestrol megestrol_acetate,a synthetic progestational compound used to treat endometrial carcinoma
+53794,megillah,(Yiddish) a long boring tediously detailed account; "he insisted on giving us the whole megillah"
+53795,megilp magilp,a medium for oil-paints; linseed oil mixed with mastic varnish or turpentine
+53796,megohm,a unit of resistance equal to one million ohms
+53797,meiosis miosis reduction_division,(genetics) cell division that produces reproductive cells in sexually reproducing organisms; the nucleus divides into four nuclei each containing half the chromosome number (leading to gametes in animals and spores in plants)
+53798,meitnerium Mt element_109 atomic_number_109,a radioactive transuranic element
+53799,melagra,rheumatic or myalgic pains in the arms or legs
+53800,melamine cyanuramide,a white crystalline organic base; used mainly in making melamine resins
+53801,melamine_resin,a thermosetting resin formed from melamine and an aldehyde; used in molded products, adhesives, and coatings
+53802,melancholia,extreme depression characterized by tearful sadness and irrational fears
+53803,melancholic melancholiac,someone subject to melancholia
+53804,melancholy,a constitutional tendency to be gloomy and depressed
+53805,melancholy,a feeling of thoughtful sadness
+53806,melancholy_thistle Cirsium_heterophylum Cirsium_helenioides,perennial stoloniferous thistle of northern Europe with lanceolate basal leaves and usually solitary heads of reddish-purple flowers
+53807,melanin,insoluble pigments that account for the color of e.g. skin and scales and feathers
+53808,melanoblast,an epidermal cell that is a precursor of a melanocyte
+53809,melanocyte,a cell in the basal layer of the epidermis that produces melanin under the control of the melanocyte-stimulating hormone
+53810,melanocyte-stimulating_hormone MSH,a hormone secreted by the anterior pituitary gland that controls the degree of pigmentation in melanocytes
+53811,melanoderma,abnormally dark skin caused by increased deposits of melatonin
+53812,melanoma malignant_melanoma,any of several malignant neoplasms (usually of the skin) consisting of melanocytes
+53813,melanosis melanism,a condition characterized by abnormal deposits of melanin (especially in the skin)
+53814,melatonin,hormone secreted by the pineal gland
+53815,melee scrimmage battle_royal,a noisy riotous fight
+53816,melena melaena,abnormally dark tarry feces containing blood (usually from gastrointestinal bleeding)
+53817,melilotus melilot sweet_clover,erect annual or biennial plant grown extensively especially for hay and soil improvement
+53818,melioration,the linguistic process in which over a period of time a word grows more positive in connotation or more elevated in meaning
+53819,meliorism,the belief that the world can be made better by human effort
+53820,mellowing,the process of becoming mellow
+53821,mellowness,a feeling of good humor and sympathy through maturity or intoxication or a relaxed state
+53822,mellowness,a taste (especially of fruit) that is ripe and of full flavor
+53823,mellowness,a soft shade of a color; "a mellowness of light and shade not attainable in marble"
+53824,mellowness,geniality, as through the effects of alcohol or marijuana
+53825,melodiousness tunefulness,the property of having a melody
+53826,melodrama,an extravagant comedy in which action is more salient than characterization
+53827,melody tonal_pattern,the perception of pleasant arrangements of musical notes
+53828,melolonthid_beetle,any of various beetles of the family (or subfamily) Melolonthidae
+53829,melon,any of numerous fruits of the gourd family having a hard rind and sweet juicy flesh
+53830,melon melon_vine,any of various fruit of cucurbitaceous vines including: muskmelons; watermelons; cantaloupes; cucumbers
+53831,melon_ball,a bite of melon cut as a sphere
+53832,melosa Chile_tarweed madia_oil_plant Madia_sativa,South American herb with sticky glandular foliage; source of madia oil
+53833,melphalan Alkeran,antineoplastic drug (trade name Alkeran) used to treat multiple myeloma and some other malignancies
+53834,meltdown,a disaster comparable to a nuclear meltdown; "there is little likelihood of a meltdown comparable to the American banking collapse in March 1933"
+53835,meltdown nuclear_meltdown,severe overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping
+53836,melter,a worker who melts substances (metal or wax etc.)
+53837,melting_pot,an environment in which many ideas and races are socially assimilated
+53838,meltwater,melted snow or ice
+53839,mem,the 13th letter of the Hebrew alphabet
+53840,member,anything that belongs to a set or class; "snakes are members of the class Reptilia"; "members of the opposite sex"
+53841,member,an organization that is a member of another organization (especially a state that belongs to a group of nations); "the library was a member of the interlibrary loan association"; "Canada is a member of the United Nations"
+53842,member fellow_member,one of the persons who compose a social group (especially individuals who have joined and participate in a group organization); "only members will be admitted"; "a member of the faculty"; "she was introduced to all the members of his family"
+53843,member_bank,a bank that is a member of the Federal Reserve System
+53844,membership,the state of being a member
+53845,membership rank,the body of members of an organization or group; "they polled their membership"; "they found dissension in their own ranks"; "he joined the ranks of the unemployed"
+53846,membership_card,a card certifying membership in an organization
+53847,membrane,a thin pliable sheet of material
+53848,membrane tissue_layer,a pliable sheet of tissue that covers or lines or connects the organs or cells of animals or plants
+53849,membrane_bone,any bone that develops within membranous tissue without previous cartilage formation; e.g. the clavicle and bones of the skull
+53850,membranous_labyrinth,the sensory structures of the inner ear including the labyrinthine receptors and the cochlea; contained within the bony labyrinth
+53851,meme,a cultural unit (an idea or value or pattern of behavior) that is passed from one person to another by non-genetic means (as by imitation); "memes are the cultural counterpart of genes"
+53852,memento souvenir,a reminder of past events
+53853,memento_mori,a reminder (as a death's head) of your mortality
+53854,memo memorandum memoranda,a written proposal or reminder
+53855,memoir,an account of the author's personal experiences
+53856,memoir,an essay on a scientific or scholarly topic
+53857,memorabilia,a record of things worth remembering
+53858,memorability,the quality of being worth remembering; "continuous change results in lack of memorability"; "true memorability of phrase"
+53859,memorial,a written statement of facts submitted in conjunction with a petition to an authority
+53860,memorial commemoration remembrance,a recognition of meritorious service
+53861,memorial monument,a structure erected to commemorate persons or events
+53862,memorization memorisation committal_to_memory,learning so as to be able to remember verbatim; "the actor's memorization of his lines"
+53863,memorizer memoriser,a person who learns by rote
+53864,memory,the area of cognitive psychology that studies memory processes; "he taught a graduate course on learning and memory"
+53865,memory,something that is remembered; "search as he would, the memory was lost"
+53866,memory computer_memory storage computer_storage store memory_board,an electronic memory device; "a memory and the CPU form the central part of a computer to which peripherals are attached"
+53867,memory remembering,the cognitive processes whereby past experience is remembered; "he can do it from memory"; "he enjoyed remembering his father"
+53868,memory retention retentiveness retentivity,the power of retaining and recalling past experience; "he had a good memory when he was younger"
+53869,memory_chip,a RAM microchip that can be plugged into a computer to provide additional memory
+53870,memory_device storage_device,a device that preserves information for retrieval
+53871,memory_image,a mental image of something previously experienced
+53872,memory_picture,a memory image that is similar to a visual perception
+53873,memsahib,a woman sahib
+53874,men's_room men's,a public toilet for men
+53875,menace,a threat or the act of threatening; "he spoke with desperate menace"
+53876,menace threat,something that is a source of danger; "earthquakes are a constant threat in Japan"
+53877,menage_a_trois,household for three; an arrangement where a married couple and a lover of one of them live together while sharing sexual relations
+53878,menagerie,a collection of live animals for study or display
+53879,menagerie zoo zoological_garden,the facility where wild animals are housed for exhibition
+53880,menarche,the first occurrence of menstruation in a woman
+53881,mend patch darn,sewing that repairs a worn or torn hole (especially in a garment); "her stockings had several mends"
+53882,mendacity,the tendency to be untruthful
+53883,mendelevium Md Mv atomic_number_101,a radioactive transuranic element synthesized by bombarding einsteinium with alpha particles (Md is the current symbol for mendelevium but Mv was formerly the symbol)
+53884,mender repairer fixer,a skilled worker who mends or repairs things
+53885,mending,garments that must be repaired
+53886,menhaden Brevoortia_tyrannis,shad-like North American marine fishes used for fish meal and oil and fertilizer
+53887,menhaden_oil,a fatty oil obtained from the menhaden fish and used in paint and ink and in treating leather
+53888,menhir standing_stone,a tall upright megalith; found primarily in England and northern France
+53889,menial,a domestic servant
+53890,meningeal_artery arteria_meningea,any of three arteries supplying the meninges of the brain and neighboring structures
+53891,meningeal_veins venae_meningeae,veins at accompany the meningeal arteries
+53892,meningioma,a tumor arising in the meninges which surround the brain and spinal cord; usually slow growing and sometimes malignant
+53893,meningism,symptoms that mimic those of meningitis but without inflammation of the meninges
+53894,meningitis,infectious disease characterized by inflammation of the meninges (the tissues that surround the brain or spinal cord) usually caused by a bacterial infection; symptoms include headache and stiff neck and fever and nausea
+53895,meningocele,a congenital anomaly of the central nervous system in which a sac protruding from the brain or the spinal meninges contains cerebrospinal fluid (but no nerve tissue)
+53896,meningoencephalitis cerebromeningitis encephalomeningitis,inflammation of the brain and spinal cord and their meninges
+53897,meninx meninges,a membrane (one of 3) that envelops the brain and spinal cord
+53898,meniscectomy,surgical removal of the meniscus of the knee
+53899,meniscus,(optics) a lens that is concave on one side and convex on the other
+53900,meniscus,(physics) the curved upper surface of a nonturbulent liquid in a vertical tube
+53901,meniscus semilunar_cartilage,(anatomy) a disk of cartilage that serves as a cushion between the ends of bones that meet at a joint
+53902,meno_mosso,played at reduced speed; less rapid
+53903,menopause climacteric change_of_life,the time in a woman's life in which the menstrual cycle ends
+53904,menorah,(Judaism) a candelabrum with nine branches; used during the Hanukkah festival
+53905,menorrhagia hypermenorrhea,abnormally heavy or prolonged menstruation; can be a symptom of uterine tumors and can lead to anemia if prolonged
+53906,menorrhea menstrual_blood menstrual_flow,flow of blood from the uterus; occurs at roughly monthly intervals during a woman's reproductive years
+53907,mens_rea malice_aforethought,(law) criminal intent; the thoughts and intentions behind a wrongful act (including knowledge that the act is illegal); often at issue in murder trials
+53908,mensch mensh,a decent responsible person with admirable characteristics
+53909,menstrual_cycle,a recurring cycle (beginning at menarche and ending at menopause) in which the endometrial lining of the uterus prepares for pregnancy; if pregnancy does not occur the lining is shed at menstruation; "the average menstrual cycle is 28 days"
+53910,menstrual_phase,the phase of the menstrual cycle during which the lining of the uterus is shed (the first day of menstrual flow is considered day 1 of the menstrual cycle)
+53911,menstruation menses menstruum catamenia period flow,the monthly discharge of blood from the uterus of nonpregnant women from puberty to menopause; "the women were sickly and subject to excessive menstruation"; "a woman does not take the gout unless her menses be stopped"--Hippocrates; "the semen begins to appear in males and to be emitted at the same time of life that the catamenia begin to flow in females"--Aristotle
+53912,menstruum,(archaic) a solvent
+53913,mental_abnormality,any abnormality of mental function
+53914,mental_age,the level of intellectual development as measured by an intelligence test
+53915,mental_anguish,sustained dull painful emotion
+53916,mental_disorder mental_disturbance disturbance psychological_disorder folie,(psychiatry) a psychological disorder of thought or emotion; a more neutral term than mental illness
+53917,mental_exhaustion brain-fag,exhaustion that affects mental keenness
+53918,mental_health,the psychological state of someone who is functioning at a satisfactory level of emotional and behavioral adjustment
+53919,mental_hospital psychiatric_hospital mental_institution institution mental_home insane_asylum asylum,a hospital for mentally incompetent or unbalanced person
+53920,mental_illness mental_disease psychopathy,any disease of the mind; the psychological state of someone who has emotional or behavioral problems serious enough to require psychiatric intervention
+53921,mental_measurement,a generic term used to cover any application of measurement techniques to the quantification of mental functions
+53922,mental_note,special attention with intent to remember; "he made a mental note to send her flowers"
+53923,mental_picture picture impression,a clear and telling mental image; "he described his mental picture of his assailant"; "he had no clear picture of himself or his world"; "the events left a permanent impression in his mind"
+53924,mental_quickness quickness quick-wittedness,intelligence as revealed by an ability to give correct responses without delay
+53925,mental_reservation reservation arriere_pensee,an unstated doubt that prevents you from accepting something wholeheartedly
+53926,mental_soundness mental_balance,the healthy psychological state of someone with good judgment
+53927,mentalism,(philosophy) a doctrine that mind is the true reality and that objects exist only as aspects of the mind's awareness
+53928,mentality outlook mindset mind-set,a habitual or characteristic mental attitude that determines how you will interpret and respond to situations
+53929,mentally_retarded retarded developmentally_challenged,people collectively who are mentally retarded; "he started a school for the retarded"
+53930,menthol,a crystalline compound that has the cool and minty taste and odor that occurs naturally in peppermint oil; used as a flavoring and in medicine to relieve itching, pain, and nasal congestion
+53931,menthol,a lotion containing menthol which gives it the smell of mint
+53932,mentholated_salve,a salve containing menthol
+53933,mention honorable_mention,an official recognition of merit; "although he didn't win the prize he did get special mention"
+53934,mention reference,a remark that calls attention to something or someone; "she made frequent mention of her promotion"; "there was no mention of it"; "the speaker made several references to his wife"
+53935,mentioner,a speaker who refers to something briefly or incidentally
+53936,mentor wise_man,a wise and trusted guide and advisor
+53937,mentum,a projection like a chin formed by the sepals and base of the column in some orchids
+53938,mentum,a projection below the mouth of certain mollusks that resembles a chin
+53939,menu,the dishes making up a meal
+53940,menu bill_of_fare card carte_du_jour carte,a list of dishes available at a restaurant; "the menu was in French"
+53941,menu computer_menu,(computer science) a list of options available to a computer user
+53942,menu fare,an agenda of things to do; "they worked rapidly down the menu of reports"
+53943,meow mew miaou miaow miaul,the sound made by a cat (or any sound resembling this)
+53944,meperidine meperidine_hydrochloride Demerol,a synthetic narcotic drug (trade name Demerol) used to treat pain
+53945,mephenytoin Mesantoin,a toxic anticonvulsant drug (trade name Mesantoin) used in the treatment of epilepsy when less toxic anticonvulsants have been ineffective
+53946,mephitis,a poisonous or foul smelling gas emitted from the earth
+53947,mephobarbital Mebaral,a long-acting crystalline barbiturate (trade name Mebaral) used as a sedative and as an anticonvulsant in the treatment of epilepsy
+53948,meprobamate Miltown Equanil Meprin,a sedative and tranquilizer (trade name Miltown and Equanil and Meprin) used to treat muscle tension and anxiety
+53949,meralgia,pain in the thigh
+53950,merbromine Mercurochrome,a mercurial compound applied topically as an antiseptic; Mercurochrome is the trademark
+53951,mercantile_agency commercial_agency,an organization that provides businesses with credit ratings of other firms; "Dun & Bradstreet is the largest mercantile agency in the United States"
+53952,mercantile_establishment retail_store sales_outlet outlet,a place of business for retailing goods
+53953,mercantile_law commercial_law law_merchant,the body of rules applied to commercial transactions; derived from the practices of traders rather than from jurisprudence
+53954,mercantilism mercantile_system,an economic system (Europe in 18th century) to increase a nation's wealth by government regulation of all of the nation's commercial interests
+53955,mercaptopurine Purinethol,a drug (trade name Purinethol) that interferes with the metabolism of purine and is used to treat acute lymphocytic leukemia
+53956,mercenary soldier_of_fortune,a person hired to fight for another country than their own
+53957,mercer,a dealer in textiles (especially silks)
+53958,merchandise ware product,commodities offered for sale; "good business depends on having good merchandise"; "that store offers a variety of products"
+53959,merchant merchandiser,a businessperson engaged in retail trade
+53960,merchant_bank acquirer,a credit card processing bank; merchants receive credit for credit card receipts less a processing fee
+53961,merchant_marine,the crew of a merchant vessel
+53962,merchantability,the state of being fit for market; ready to be bought or sold
+53963,mercifulness mercy,the feeling that motivates compassion
+53964,mercifulness mercy,a disposition to be kind and forgiving; "in those days a wife had to depend on the mercifulness of her husband"
+53965,mercilessness unmercifulness,inhumaneness evidenced by an unwillingness to be kind or forgiving
+53966,mercurial_ointment,an ointment containing mercury
+53967,mercuric_chloride mercury_chloride bichloride_of_mercury corrosive_sublimate,a white poisonous soluble crystalline sublimate of mercury; used as a pesticide or antiseptic or wood preservative
+53968,mercury,temperature measured by a mercury thermometer; "the mercury was falling rapidly"
+53969,mercury quicksilver hydrargyrum Hg atomic_number_80,a heavy silvery toxic univalent and bivalent metallic element; the only metal that is liquid at ordinary temperatures
+53970,mercury-vapor_lamp,ultraviolet lamp that emits a strong bluish light (rich in ultraviolet radiation) as electric current passes through mercury vapor
+53971,mercury_barometer,barometer that shows pressure by the height of a column of mercury
+53972,mercury_cell,a primary cell consisting of a zinc anode and a cathode of mercury oxide and an electrolyte of potassium hydroxide
+53973,mercury_fulminate fulminate_of_mercury fulminating_mercury,a fulminate that when dry explodes violently if struck or heated; used in detonators and blasting caps and percussion caps
+53974,mercury_poisoning,a toxic condition caused by ingesting or inhaling mercury; acute mercury poisoning causes a metallic taste and vomiting and diarrhea and kidney problems that may lead to death
+53975,mercury_thermometer mercury-in-glass_thermometer,thermometer consisting of mercury contained in a bulb at the bottom of a graduated sealed glass capillary tube marked in degrees Celsius or Fahrenheit; mercury expands with a rise in temperature causing a thin thread of mercury to rise in the tube
+53976,mercy,something for which to be thankful; "it was a mercy we got out alive"
+53977,mercy,alleviation of distress; showing great kindness toward the distressed; "distributing food and clothing to the flood victims was an act of mercy"
+53978,mercy_seat,the throne of God
+53979,mercy_seat,the golden covering of the ark of the covenant
+53980,mere,a small pond of standing water
+53981,merestone meerestone mearstone,an old term for a landmark that consisted of a pile of stones surmounted by an upright slab
+53982,merganser fish_duck sawbill sheldrake,large crested fish-eating diving duck having a slender hooked bill with serrated edges
+53983,merger_agreement acquisition_agreement,contract governing the merger of two or more companies
+53984,merging meeting coming_together,the act of joining together as one; "the merging of the two groups occurred quickly"; "there was no meeting of minds"
+53985,mericarp,a carpel with one seed; one of a pair split apart at maturity
+53986,meridian line_of_longitude,an imaginary great circle on the surface of the earth passing through the north and south poles at right angles to the equator; "all points on the same meridian have the same longitude"
+53987,meringue,sweet topping especially for pies made of beaten egg whites and sugar
+53988,meringue_kiss,a kiss made of sugar and egg white and baked slowly
+53989,merino merino_sheep,white sheep originating in Spain and producing a heavy fleece of exceptional quality
+53990,meristem,undifferentiated tissue from which new cells are formed, as at the tip of a stem or root
+53991,merit virtue,any admirable quality or attribute; "work of great merit"
+53992,merit_badge,a badge award to Boy Scouts in recognition of special projects
+53993,merit_pay,extra pay awarded to an employee on the basis of merit (especially to school teachers)
+53994,merit_system,the system of employing and promoting civil servants on the basis of ability
+53995,meritocracy,a form of social system in which power goes to those with superior intellects
+53996,meritocracy,the belief that rulers should be chosen for their superior abilities and not because of their wealth or birth
+53997,merlon,a solid section between two crenels in a crenelated battlement
+53998,mermaid,half woman and half fish; lives in the sea
+53999,merman,half man and half fish; lives in the sea
+54000,meromelia,congenital absence of part of an arm or leg
+54001,meronym part_name,a word that names a part of a larger whole; "`brim' and `crown' are meronyms of `hat'"
+54002,meronymy part_to_whole_relation,the semantic relation that holds between a part and the whole
+54003,merozoite,a cell that arises from the asexual division of a parent sporozoan during its life cycle
+54004,merry-go-round,a never-ending cycle of activities and events (especially when they seem to have little purpose); "if we lose the election the whole legislative merry-go-round will have to start over"
+54005,merrymaking conviviality jollification,a boisterous celebration; a merry festivity
+54006,mesa table,flat tableland with steep edges; "the tribe was relatively safe on the mesa but they had to descend into the valley for water"
+54007,mesalliance,a marriage with a person of inferior social status
+54008,mescal,a colorless Mexican liquor distilled from fermented juices of certain desert plants of the genus Agavaceae (especially the century plant)
+54009,mescal mezcal peyote Lophophora_williamsii,a small spineless globe-shaped cactus; source of mescal buttons
+54010,mescal_bean coral_bean frijolito frijolillo Sophora_secundiflora,shrub or small tree having pinnate leaves poisonous to livestock and dense racemes of intensely fragrant blue flowers and red beans
+54011,mescal_button sacred_mushroom magic_mushroom,the button-shaped top of the mescal cactus; a source of psilocybin
+54012,mescaline peyote,the hallucinatory alkaloid that is the active agent in mescal buttons
+54013,mesenchyme,mesodermal tissue that forms connective tissue and blood and smooth muscles
+54014,mesenteric_artery arteria_mesenterica,one of two branches of the aorta that pass between the two layers of the mesentery to the intestines
+54015,mesenteric_plexus plexus_mesentericus,a plexus of autonomic nerves
+54016,mesenteric_vein vena_mesenterica,a tributary of the portal vein passing from the intestine between the two layers of mesentery
+54017,mesentery,a double layer of peritoneum that attaches to the back wall of the abdominal cavity and supports the small intestines
+54018,mesh,the number of openings per linear inch of a screen; measures size of particles; "a 100 mesh screen"; "100 mesh powdered cellulose"
+54019,mesh meshing interlock interlocking,the act of interlocking or meshing; "an interlocking of arms by the police held the crowd in check"
+54020,mesh_topology mesh,the topology of a network whose components are all connected directly to every other component
+54021,meshugaas mishegaas mishegoss,(Yiddish) craziness; senseless behavior or activity
+54022,meshuggeneh meshuggener,(Yiddish) a crazy fool
+54023,mesne_lord,a feudal lord who was lord to his own tenants on land held from a superior lord
+54024,mesocarp,the middle layer of a pericarp
+54025,mesocolon,mesentery that holds the lower colon to the dorsal abdominal wall
+54026,mesoderm mesoblast,the middle germ layer that develops into muscle and bone and cartilage and blood and connective tissue
+54027,mesohippus,North American three-toed Oligocene animal; probably not directly ancestral to modern horses
+54028,mesomorph,a person with a well-developed muscular body
+54029,meson mesotron,an elementary particle responsible for the forces in the atomic nucleus; a hadron with a baryon number of 0
+54030,mesophyte mesophytic_plant,land plant growing in surroundings having an average supply of water; compare xerophyte and hydrophyte
+54031,mesosphere,the atmospheric layer between the stratosphere and the thermosphere
+54032,mesothelioma,a form of carcinoma of the mesothelium lining lungs or abdomen or heart; usually associated with exposure to asbestos dust
+54033,mesothelium,epithelium originating in the embryonic mesoderm; lines the primordial body cavity
+54034,mesquite mesquit,any of several small spiny trees or shrubs of the genus Prosopis having small flowers in axillary cylindrical spikes followed by large pods rich in sugar
+54035,mesquite_gum,a gum obtained from mesquite pods; resembles gum arabic
+54036,mess,soft semiliquid food; "a mess of porridge"
+54037,mess,a meal eaten in a mess hall by service personnel
+54038,mess mess_hall,a (large) military dining room where service personnel eat or relax
+54039,mess messiness muss mussiness,a state of confusion and disorderliness; "the house was a mess"; "she smoothed the mussiness of the bed"
+54040,mess_jacket monkey_jacket shell_jacket,waist-length jacket tapering to a point at the back; worn by officers in the mess for formal dinners
+54041,mess_kit,kit containing a metal dish and eating utensils; used by soldiers and campers
+54042,mess_of_pottage,anything of trivial value; "Esau sold his birthright to Jacob for a mess of pottage"
+54043,message,a communication (usually brief) that is written or spoken or signaled; "he sent a three-word message"
+54044,message content subject_matter substance,what a communication that is about something is about
+54045,message_pad writing_pad,a pad of paper on which messages can be written
+54046,messaging electronic_messaging,the sending and processing of e-mail by computer
+54047,messenger courier,a person who carries a message
+54048,messenger_RNA mRNA template_RNA informational_RNA,the template for protein synthesis; the form of RNA that carries information from DNA in the nucleus to the ribosome sites of protein synthesis in the cell
+54049,messenger_boy errand_boy,a boy who earns money by running errands
+54050,messiah christ,any expected deliverer
+54051,messiahship,the position of messiah
+54052,messmate,(nautical) an associate with whom you share meals in the same mess (as on a ship)
+54053,messuage,(law) a dwelling house and its adjacent buildings and the adjacent land used by the household
+54054,mestiza,a woman of mixed racial ancestry (especially mixed European and Native American ancestry)
+54055,mestizo,a person of mixed racial ancestry (especially mixed European and Native American ancestry)
+54056,mestranol,a synthetic form of estrogen used in combination with a progestin in oral contraceptives
+54057,metabolic_acidosis,acidosis and bicarbonate concentration in the body fluids resulting either from the accumulation of acids or the abnormal loss of bases from the body (as in diarrhea or renal disease)
+54058,metabolic_alkalosis,alkalosis resulting from hydrogen-ion loss or excessive intake of alkaline substances
+54059,metabolic_disorder,a disorder or defect of metabolism
+54060,metabolic_rate,rate of metabolism; the amount of energy expended in a give period
+54061,metabolism metabolic_process,the organic processes (in a cell or organism) that are necessary for life
+54062,metabolite,any substance involved in metabolism (either as a product of metabolism or as necessary for metabolism)
+54063,metacarpal metacarpal_bone,any bone of the hand between the wrist and fingers
+54064,metacarpal_artery arteria_metacarpea,dorsal and palmar arteries of the hand
+54065,metacarpal_vein vena_metacarpus,dorsal and palmar veins of the hand
+54066,metacarpus,the part of the hand between the carpus and phalanges
+54067,metacenter metacentre,(shipbuilding) the point of intersection between two vertical lines, one line through the center of buoyancy of the hull of a ship in equilibrium and the other line through the center of buoyancy of the hull when the ship is inclined to one side; the distance of this intersection above the center of gravity is an indication of the stability of the ship
+54068,metacentric_chromosome,a chromosome having two equal arms because the centromere is in median position
+54069,metadata,data about data; "a library catalog is metadata because it describes publications"
+54070,metagenesis digenesis,alternation of sexual and asexual generations
+54071,metaknowledge,knowledge about knowledge
+54072,metal_detector,detector that gives a signal when it detects the presence of metal; used to detect the presence of stray bits of metal in food products or to find buried metal
+54073,metal_filing,a fragment of metal rubbed off by the use of a file
+54074,metal_screw,screw made of metal
+54075,metal_wood,golf wood with a metal head instead of the traditional wooden head
+54076,metalanguage,a language that can be used to describe languages
+54077,metalepsis,substituting metonymy of one figurative sense for another
+54078,metalhead,a fan of heavy metal music
+54079,metallic,a fabric made of a yarn that is partly or entirely of metal
+54080,metallic,a yarn made partly or entirely of metal
+54081,metallic_bond,a chemical bond in which electrons are shared over many nuclei and electronic conduction occurs
+54082,metallic_element metal,any of several chemical elements that are usually shiny solids that conduct heat or electricity and can be formed into sheets etc.
+54083,metallized_dye,acid dye in which the negative ion contains a chelated metal atom
+54084,metallurgist metallurgical_engineer,an engineer trained in the extraction and refining and alloying and fabrication of metals
+54085,metallurgy,the science and technology of metals
+54086,metalware,household articles made of metal (especially for use at table)
+54087,metalwork,the metal parts of something; "there were bullet holes in the metalwork"
+54088,metalworking metalwork,the activity of making things out of metal in a skillful manner
+54089,metamathematics,the logical analysis of mathematical reasoning
+54090,metamere somite,one of a series of similar body segments into which some animals are divided longitudinally
+54091,metamorphic_rock,rock altered by pressure and heat
+54092,metamorphism,change in the structure of rock by natural agencies such as pressure or heat or introduction of new chemical substances
+54093,metamorphopsia,a defect of vision in which objects appear to be distorted; usually due to a defect in the retina
+54094,metamorphosis,a complete change of physical form or substance especially as by magic or witchcraft
+54095,metamorphosis metabolism,the marked and rapid transformation of a larva into an adult that occurs in some animals
+54096,metaphase,the second stage of meiosis
+54097,metaphase,the second stage of mitosis
+54098,metaphor,a figure of speech in which an expression is used to refer to something that it does not literally denote in order to suggest a similarity
+54099,metaphosphoric_acid,a glassy solid acid ([HPO3]n) often used as a dehydrating agent
+54100,metaphysics,the philosophical study of being and knowing
+54101,metaphysis,the growing part of a long bone between the diaphysis and the epiphysis
+54102,metaplastic_anemia metaplastic_anaemia,pernicious anemia in which the various formed elements in the blood are changed
+54103,metaproterenol Alupent,a bronchodilator (trade name Alupent) used to treat asthma and emphysema and other lung conditions; available in oral or inhalant forms; side effects include tachycardia and shakiness
+54104,metarule,a rule that describes how other rules should be used (as in AI)
+54105,metasequoia dawn_redwood Metasequoia_glyptostrodoides,large fast-growing Chinese monoecious tree having flat bright-green deciduous leaves and small globular cones; commonly cultivated in United States as an ornamental; known as a fossil before being discovered in China
+54106,metastability,the quality of a physical system that persists in its existing equilibrium when undisturbed (or only slightly disturbed) but able to pass to a more stable equilibrium when sufficiently disturbed
+54107,metastasis,the spreading of a disease (especially cancer) to another part of the body
+54108,metatarsal,any bone of the foot between the ankle and the toes
+54109,metatarsal_arch,the short lateral arch formed by the heads of the metatarsals
+54110,metatarsal_artery arteria_metatarsea,dorsal and plantar arteries to the metatarsal region of the foot
+54111,metatarsal_vein vena_metatarsus,dorsal and plantar branches of veins serving the metatarsal region of the foot
+54112,metatarsus,the skeleton of the human foot between the toes and the tarsus; the corresponding part of the foot in birds or of the hind foot in quadrupeds
+54113,metatherian,primitive pouched mammals found mainly in Australia and the Americas
+54114,metathesis,a linguistic process of transposition of sounds or syllables within a word or words within a sentence
+54115,metazoan,any animal of the subkingdom Metazoa; all animals except protozoans and sponges
+54116,metempsychosis rebirth,after death the soul begins a new cycle of existence in another human body
+54117,metencephalon,the part of the hindbrain that develops into the pons and the cerebellum
+54118,meteor shooting_star,a streak of light in the sky at night that results when a meteoroid hits the earth's atmosphere and air friction causes the meteoroid to melt or vaporize or explode
+54119,meteor_shower meteor_stream,a transient shower of meteors when a meteor swarm enters the earth's atmosphere
+54120,meteor_swarm,a group of meteoroids with similar paths
+54121,meteorite,stony or metallic object that is the remains of a meteoroid that has reached the earth's surface
+54122,meteoroid meteor,(astronomy) any of the small solid extraterrestrial bodies that hits the earth's atmosphere
+54123,meteorological_balloon,a small unmanned balloon set aloft to observe atmospheric conditions
+54124,meteorological_conditions,the prevailing environmental conditions as they influence the prediction of weather
+54125,meteorological_observation_post weather_station,one of a network of observation posts where meteorological data is recorded
+54126,meteorologist,a specialist who studies processes in the earth's atmosphere that cause weather conditions
+54127,meteorology,the earth science dealing with phenomena of the atmosphere (especially weather)
+54128,meteorology weather_forecasting,predicting what the weather will be
+54129,meteortropism,an effect of climate on biological processes (as the effect on joint pains etc.)
+54130,meter,any of various measuring instruments for measuring a quantity
+54131,meter metre m,the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)
+54132,meter metre measure beat cadence,(prosody) the accent in a metrical foot of verse
+54133,meter metre time,rhythm as given by division into parts of equal duration
+54134,meter_maid,policewoman who is assigned to write parking tickets
+54135,meterstick metrestick,a rule one meter long (usually marked off in centimeters and millimeters)
+54136,metformin Glucophage,an antidiabetic drug (trade name Glucophage) prescribed to treat type II diabetes
+54137,methacholine Mecholyl,parasympathomimetic drug (trademark Mecholyl) that stimulates secretions and smooth muscle activity
+54138,methacrylic_acid 2-methylpropenoic_acid,an unsaturated acid (C4H6O2) used to make resins and plastics
+54139,methadone methadone_hydrochloride methadon dolophine_hydrochloride fixer synthetic_heroin,synthetic narcotic drug similar to morphine but less habit-forming; used in narcotic detoxification and maintenance of heroin addiction
+54140,methamphetamine methamphetamine_hydrochloride Methedrine meth deoxyephedrine chalk chicken_feed crank glass ice shabu trash,an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant
+54141,methane,a colorless odorless gas used as a fuel
+54142,methane_series alkane_series alkane paraffin_series paraffin,a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)
+54143,methanogen,archaebacteria found in anaerobic environments such as animal intestinal tracts or sediments or sewage and capable of producing methane; a source of natural gas
+54144,methanol methyl_alcohol wood_alcohol wood_spirit,a light volatile flammable poisonous liquid alcohol; used as an antifreeze and solvent and fuel and as a denaturant for ethyl alcohol
+54145,methapyrilene,antihistamine used to treat allergic responses (as rhinitis or dermatitis or pruritus)
+54146,methaqualone Quaalude,sedative-hypnotic drug (trade name Quaalude) that is a drug of abuse
+54147,metharbital Gemonil,anticonvulsant drug (trade name Gemonil) used in the treatment of epilepsy
+54148,metheglin,spiced or medicated mead
+54149,methenamine Mandelamine Urex,antibacterial agent (trade names Mandelamine and Urex) that is contained in many products that are used to treat urinary infections
+54150,methicillin,antibiotic drug of the penicillin family used in the treatment of certain staphylococcal infections
+54151,methionine,a crystalline amino acid containing sulfur; found in most proteins and essential for nutrition
+54152,methocarbamol Robaxin,muscle relaxant for skeletal muscles (trade name Robaxin) used to treat spasms
+54153,method,a way of doing something, especially a systematic way; implies an orderly logical arrangement (usually in steps)
+54154,method_acting method,an acting technique introduced by Stanislavsky in which the actor recalls emotions or reactions from his or her own life and uses them to identify with the character being portrayed
+54155,method_of_choice,the best method to achieve a desired result
+54156,methodology,the system of methods followed in a particular discipline
+54157,methodology methodological_analysis,the branch of philosophy that analyzes the principles and procedures of inquiry in a particular discipline
+54158,methotrexate methotrexate_sodium amethopterin,toxic antimetabolite that limits cellular reproduction by acting as an antagonist to folic acid; used to treat certain cancers and psoriasis and rheumatoid arthritis
+54159,methyl methyl_group methyl_radical,the univalent radical CH3- derived from methane
+54160,methyl_bromide,a poisonous gas or liquid (CH3Br) used to fumigate rodents, worms, etc.
+54161,methyl_orange,an azo dye used as an acid-base indicator; used for titrations involving weak bases
+54162,methyl_salicylate birch_oil sweet-birch_oil,a liquid ester with a strong odor of wintergreen; applied externally for minor muscle and joint pain
+54163,methylated_spirit,ethyl alcohol denatured with methyl alcohol to prevent its use as an alcoholic beverage
+54164,methyldopa alpha_methyl_dopa Aldomet,antihypertensive drug (trade name Aldomet) used in the treatment of high blood pressure
+54165,methylene_blue methylthionine_chloride,a dark green dye used as a stain, an antiseptic, a chemical indicator, and an antidote in cyanide poisoning
+54166,methylene_chloride dichloromethane,a nonflammable liquid used as a solvent and paint remover and refrigerant
+54167,methylene_group methylene_radical methylene,the bivalent radical CH2 derived from methane
+54168,methylenedioxymethamphetamine MDMA,a stimulant drug that is chemically related to mescaline and amphetamine and is used illicitly for its euphoric and hallucinogenic effects; it was formerly used in psychotherapy but in 1985 it was declared illegal in the United States; "MDMA is often used at parties because it enables partygoers to remain active for long periods of time"
+54169,methylphenidate Ritalin,central nervous system stimulant (trade name Ritalin) used in the treatment of narcolepsy in adults and attention deficit disorder in children
+54170,methyltestosterone,an androgenic compound contained in drugs that are used to treat testosterone deficiency and female breast cancer and to stimulate growth and weight gain
+54171,metic,an alien who paid a fee to reside in an ancient Greek city
+54172,metical,the basic unit of money in Mozambique; equal to 100 centavos
+54173,meticulousness meticulosity punctiliousness scrupulousness,strict attention to minute details
+54174,metier medium,an occupation for which you are especially well suited; "in law he found his true metier"
+54175,metonym,a word that denotes one thing but refers to a related thing; "Washington is a metonym for the United States government"; "plastic is a metonym for credit card"
+54176,metonymy,substituting the name of an attribute or feature for the name of the thing itself (as in `they counted heads')
+54177,metopion,the craniometric point midway between the frontal eminences of the skull
+54178,metoprolol Lopressor,beta blocker (trade name Lopressor) used in treating hypertension and angina and arrhythmia and acute myocardial infarction; has adverse side effects (depression and exacerbation of congestive heart failure etc.)
+54179,metralgia,pain in the uterus
+54180,metrazol_shock metrazol_shock_therapy metrazol_shock_treatment,the administration of sufficient Metrazol to induce convulsions and coma
+54181,metric_capacity_unit,a capacity unit defined in metric terms
+54182,metric_function metric,a function of a topological space that gives, for any two points in the space, a value equal to the distance between them
+54183,metric_linear_unit,a linear unit of distance in metric terms
+54184,metric_space,a set of points such that for every pair of points there is a nonnegative real number called their distance that is symmetric and satisfies the triangle inequality
+54185,metric_system,a decimal system of weights and measures based on the meter and the kilogram and the second
+54186,metric_ton MT tonne t,a unit of weight equivalent to 1000 kilograms
+54187,metric_unit metric,a decimal unit of measurement of the metric system (based on meters and kilograms and seconds); "convert all the measurements to metric units"; "it is easier to work in metric"
+54188,metric_weight_unit weight_unit,a decimal unit of weight based on the gram
+54189,metrical_foot foot metrical_unit,(prosody) a group of 2 or 3 syllables forming the basic unit of poetic rhythm
+54190,metrification,writing a metrical composition (or the metrical structure of a composition)
+54191,metrification metrication,the act of changing from imperial units of measurement to metric units: meters, grams, seconds
+54192,metritis endometritis,inflammation of the lining of the uterus (of the endometrium)
+54193,metro tube underground subway_system subway,an electric railway operating below the surface of the ground (usually in a city); "in Paris the subway system is called the `metro' and in London it is called the `tube' or the `underground'"
+54194,metrology,the scientific study of measurement
+54195,metronidazole Flagyl,antiprotozoal medication (trade name Flagyl) used to treat trichomoniasis and giardiasis
+54196,metronome,clicking pendulum indicates the exact tempo of a piece of music
+54197,metropolitan,in the Eastern Orthodox Church this title is given to a position between bishop and patriarch; equivalent to archbishop in western Christianity
+54198,metropolitan,a person who lives in a metropolis
+54199,metroptosis descensus_uteri,prolapse of the uterus
+54200,metrorrhagia,bleeding from the uterus that is not due to menstruation; usually indicative of disease (as cervical cancer)
+54201,mettlesomeness,courageous high-spiritedness
+54202,mew mew_gull sea_mew Larus_canus,the common gull of Eurasia and northeastern North America
+54203,mews,street lined with buildings that were originally private stables but have been remodeled as dwellings; "she lives in a Chelsea mews"
+54204,mexiletine Mexitil,antiarrhythmic drug (trade name Mexitil) used to treat ventricular arrhythmias
+54205,mezereon February_daphne Daphne_mezereum,small European deciduous shrub with fragrant lilac-colored flowers followed by red berries on highly toxic twigs
+54206,mezereum,the dried bark of the shrub mezereon
+54207,mezuzah mezuza,religious texts from Deuteronomy inscribed on parchment and rolled up in a case that is attached to the doorframe of many Jewish households in accordance with Jewish law
+54208,mezzanine first_balcony,first or lowest balcony
+54209,mezzanine mezzanine_floor entresol,intermediate floor just above the ground floor
+54210,mezzo-relievo mezzo-rilievo half-relief,a sculptural relief between low relief and high relief
+54211,mezzo-soprano mezzo,a soprano with a voice between soprano and contralto
+54212,mezzo-soprano mezzo,the female singing voice between contralto and soprano
+54213,mezzotint,print produced by an engraving that has been scraped to represent light or shade
+54214,mho siemens reciprocal_ohm S,a unit of conductance equal to the reciprocal of an ohm
+54215,mi,the syllable naming the third (mediant) note of any major scale in solmization
+54216,miasma miasm,an unwholesome atmosphere; "the novel spun a miasma of death and decay"
+54217,miasma miasm,unhealthy vapors rising from the ground or other sources; "the miasma of the marshes"; "a miasma of cigar smoke"
+54218,mica isinglass,any of various minerals consisting of hydrous silicates of aluminum or potassium etc. that crystallize in forms that allow perfect cleavage into very thin leaves; used as dielectrics because of their resistance to electricity
+54219,micelle,an electrically charged particle built up from polymeric molecules or ions and occurring in certain colloidal electrolytic solutions like soaps and detergents
+54220,miconazole Monistat,an antifungal agent usually administered in the form of a nitrate (trade name Monistat)
+54221,microbalance,balance for weighing very small objects
+54222,microbe bug germ,a minute life form (especially a disease-causing bacterium); the term is not in technical use
+54223,microbiologist,a specialist in microbiology
+54224,microbiology,the branch of biology that studies microorganisms and their effects on humans
+54225,microbrachia,abnormally small arms
+54226,microbrewery,a small brewery; consumption of the product is mainly elsewhere
+54227,microcephaly microcephalus nanocephaly,an abnormally small head and underdeveloped brain
+54228,microcosm,a miniature model of something
+54229,microcosmic_salt,a white salt present in urine and used to test for metal oxides
+54230,microcyte,an abnormally small red blood cell (less than 5 microns in diameter)
+54231,microcytic_anemia microcytic_anaemia,anemia in which the average size of erythrocytes is smaller than normal
+54232,microcytosis,a blood disorder characterized by the presence of microcytes (abnormally small red blood cells) in the blood; often associated with anemia
+54233,microdot,photograph reduced to the size of a dot (usually for purposes of security)
+54234,microeconomics,the branch of economics that studies the economy of consumers or households or individual firms
+54235,microeconomist microeconomic_expert,an economist who specializes in microeconomics
+54236,microelectronics,the branch of electronics that deals with miniature components
+54237,microevolution,evolution resulting from small specific genetic changes that can lead to a new subspecies
+54238,microfarad,a unit of capacitance equal to one millionth of a farad
+54239,microfiche,small sheet of microfilm on which many pages of material have been photographed; a magnification system is used to read the material
+54240,microfilm,film on which materials are photographed at greatly reduced size; useful for storage; a magnification system is used to read the material
+54241,microflora,microscopic plants; bacteria are often considered to be microflora
+54242,microfossil,a fossil that must be studied microscopically
+54243,microgametophyte,the male gametophyte produced by a microspore
+54244,microgauss,a unit of magnetic flux density equal to one millionth of a gauss
+54245,microglia,neuroglial tissue of mesodermal origin that can become phagocytic
+54246,microgliacyte,a cell of the microglia that may become phagocytic and collect waste products of nerve tissue
+54247,microgram mcg,one millionth (1/1,000,000) gram
+54248,micrometeorite micrometeoroid micrometeor,a meteorite or meteoroid so small that it drifts down to earth without becoming intensely heated in the atmosphere
+54249,micrometer micrometer_gauge micrometer_caliper,caliper for measuring small distances
+54250,micrometry,measuring with a micrometer
+54251,micron micrometer,a metric unit of length equal to one millionth of a meter
+54252,micronutrient,a substance needed only in small amounts for normal body function (e.g., vitamins or minerals)
+54253,microorganism micro-organism,any organism of microscopic size
+54254,micropaleontology,the paleontology of microfossils
+54255,micropenis microphallus,an abnormally small penis
+54256,microphage,a neutrophil that ingests small things (as bacteria)
+54257,microphone mike mic,device for converting sound waves into electrical energy
+54258,microphoning,the transduction of sound waves into electrical waves (by a microphone)
+54259,microphotometer,special kind of densitometer that measures density variations over a very small area
+54260,microprocessor,integrated circuit semiconductor chip that performs the bulk of the processing and controls the parts of a system; "a microprocessor functions as the central processing unit of a microcomputer"; "a disk drive contains a microprocessor to handle the internal functions of the drive"
+54261,micropyle,minute opening in the wall of an ovule through which the pollen tube enters
+54262,microradian,a unit of angular distance equal to one thousandth of a milliradian
+54263,microscope,magnifier of the image of small objects; "the invention of the microscope led to the discovery of the cell"
+54264,microscopic_anatomy,the study of microscopic structures of tissues and organs
+54265,microscopic_field,the areas that is visible through a microscope
+54266,microscopist,a scientist who specializes in research with the use of microscopes
+54267,microscopy,research with the use of microscopes
+54268,microsecond,one millionth (10^-6) of a second; one thousandth of a millisecond
+54269,microsome,a tiny granule in the cytoplasm that is where protein synthesis takes place under the direction of mRNA
+54270,microsporangium,a plant structure that produces microspores
+54271,microspore,smaller of the two types of spore produced in heterosporous plants; develops in the pollen sac into a male gametophyte
+54272,microsporidian,parasite of arthropods and fishes that invade and destroy host cells
+54273,microsporophyll,in non-flowering plants, a sporophyll that bears only microsporangia
+54274,microsurgery,surgery using operating microscopes and miniaturized precision instruments to perform intricate procedures on very small structures
+54275,microtome,scientific instrument that cuts thin slices of something for microscopic examination
+54276,microtubule,a microscopically small tubule
+54277,microvolt,a unit of potential equal to one millionth of a volt
+54278,microwave,a short electromagnetic wave (longer than infrared but shorter than radio waves); used for radar and microwave ovens and for transmitting telephone, facsimile, video and data
+54279,microwave microwave_oven,kitchen appliance that cooks food by passing an electromagnetic wave through it; heat results from the absorption of energy by the water molecules in the food
+54280,microwave_bomb E-bomb,a bomb that explodes in midair and releases a massive burst of electromagnetic energy sufficient to disable computers and telecommunications without killing people or damaging buildings
+54281,microwave_diathermy_machine,diathermy machine that uses microwave radiation as the source of heat
+54282,microwave_linear_accelerator,linear accelerator that uses microwaves
+54283,microwave_spectroscopy,the use of spectroscopy to study atomic or molecular resonances in the microwave spectrum
+54284,microwave_spectrum,the part of the electromagnetic spectrum corresponding to microwaves
+54285,micturition urination,the discharge of urine
+54286,micturition_reflex,relaxation of the urethral sphincter in response to increased pressure in the bladder
+54287,mid-April,the middle part of April
+54288,mid-August,the middle part of August
+54289,mid-December,the middle part of December
+54290,mid-February,the middle part of February
+54291,mid-January,the middle part of January
+54292,mid-July,the middle part of July
+54293,mid-June,the middle part of June
+54294,mid-March,the middle part of March
+54295,mid-May,the middle part of May
+54296,mid-November,the middle part of November
+54297,mid-October,the middle part of October
+54298,mid-September,the middle part of September
+54299,mid-calf,the middle of the calf; half way between the knee and ankle
+54300,mid-off,the fielding position in cricket closest to the bowler on the off side
+54301,mid-on,the fielding position in cricket closest to the bowler on the on side
+54302,mid-water,the water that is well below the surface but also well above the bottom; "many marine fishes inhabit the mid-waters"
+54303,midafternoon,the middle part of the afternoon
+54304,midair,some point in the air; above ground level; "the planes collided in midair"
+54305,midazolam Versed,an injectable form of benzodiazepine (trade name Versed) useful for sedation and for reducing pain during uncomfortable medical procedures
+54306,midbrain mesencephalon,the middle portion of the brain
+54307,middle,time between the beginning and the end of a temporal period; "the middle of the war"; "rain during the middle of April"
+54308,middle,an intermediate part or section; "A whole is that which has beginning, middle, and end"- Aristotle
+54309,middle midriff midsection,the middle area of the human torso (usually in front); "young American women believe that a bare midriff is fashionable"
+54310,middle-aged_man,a man who is roughly between 45 and 65 years old
+54311,middle_C,the note designated by the first ledger line below the treble staff; 261.63 hertz
+54312,middle_age,the time of life between youth and old age (e.g., between 40 and 60 years of age)
+54313,middle_cerebral_artery,one of two branches of the internal carotid artery; divides into three branches
+54314,middle_cerebral_vein vena_cerebri_media,either of two cerebral veins
+54315,middle_class bourgeoisie,the social class between the lower and upper classes
+54316,middle_distance,the part of a scene between the foreground and the background
+54317,middle_ear tympanic_cavity tympanum,the main cavity of the ear; between the eardrum and the inner ear
+54318,middle_finger,the second finger; between the index finger and the ring finger
+54319,middle_meningeal_artery,branch of the maxillary artery; its branches supply meninges
+54320,middle_name,a name between your first name and your surname
+54321,middle_temporal_vein,arises near the eye; joins the superficial temporal veins to form the retromandibular vein
+54322,middle_term,the term in a syllogism that is common to both premises and excluded from the conclusion
+54323,middle_thyroid_vein,a vein on each side that drains the lateral part of the thyroid and empties into the internal jugular vein
+54324,middlebrow,someone who is neither a highbrow nor a lowbrow
+54325,middleweight,an amateur boxer who weighs no more than 165 pounds
+54326,middleweight,a wrestler who weighs 172-192 pounds
+54327,middleweight,a professional boxer who weighs between 155 and 160 pounds
+54328,middling,any commodity of intermediate quality or size (especially when coarse particles of ground wheat are mixed with bran)
+54329,middy middy_blouse,blouse with a sailor collar
+54330,midfield,(sports) the middle part of a playing field (as in football or lacrosse)
+54331,midge,minute two-winged mosquito-like fly lacking biting mouthparts; appear in dancing swarms especially near water
+54332,midgrass,any of various grasses of moderate height which covered the undisturbed prairie in the United States; includes most of the forage grasses of the temperate zone
+54333,midinette,a Parisian salesgirl
+54334,midiron two_iron,long iron with a nearly vertical face
+54335,midland,the interior part of a country
+54336,midnight,12 o'clock at night; the middle of the night; "young children should not be allowed to stay up until midnight"
+54337,midnight_sun,the sun visible at midnight (inside the Arctic or Antarctic Circles)
+54338,midplane midline,the median plane of the body (or some part of the body)
+54339,midrib midvein,the vein in the center of a leaf
+54340,midshipman,a temporary rank held by young naval officers in training
+54341,midst thick,the location of something surrounded by other things; "in the midst of the crowd"
+54342,midstream,the middle of a stream
+54343,midterm,the middle of the gestation period
+54344,midterm,middle of an academic term or a political term in office
+54345,midterm_examination midterm_exam midterm,an examination administered in the middle of an academic term
+54346,midway,the place at a fair or carnival where sideshows and similar amusements are located
+54347,midweek,the middle of a week
+54348,midwife accoucheuse,a woman skilled in aiding the delivery of babies
+54349,midwife_toad Alytes_cisternasi,similar in habit to Alytes obstetricians
+54350,midwifery,assisting women at childbirth
+54351,midwinter,the middle of winter
+54352,might mightiness power,physical strength
+54353,might-have-been,an event that could have occurred but never did
+54354,mignonette sweet_reseda Reseda_odorata,Mediterranean woody annual widely cultivated for its dense terminal spikelike clusters greenish or yellowish white flowers having an intense spicy fragrance
+54355,migraine megrim sick_headache hemicrania,a severe recurring vascular headache; occurs more frequently in women than men
+54356,migrant migrator,traveler who moves from one region or country to another
+54357,migrant_shrike Lanius_ludovicianus_migrans,a shrike of central North America; winters in Texas and the southern Mississippi valley
+54358,migration,a group of people migrating together (especially in some given time period)
+54359,migration,(chemistry) the nonrandom movement of an atom or radical from one place to another within a molecule
+54360,migration,the periodic passage of groups of animals (especially birds or fishes) from one region to another for feeding or breeding
+54361,migration,the movement of persons from one country or locality to another
+54362,migration_route flyway,the geographic route along which birds customarily migrate
+54363,migrator,an animal (especially birds and fish) that travels between different habitats at particular times of the year
+54364,migratory_grasshopper,serious pest of grain-growing and range areas of central and western United States
+54365,migratory_locust Locusta_migratoria,Old World locust that travels in vast swarms stripping large areas of vegetation
+54366,migratory_quail Coturnix_coturnix Coturnix_communis,the typical Old World quail
+54367,mihrab,(Islam) a design in the shape of niche in a Muslim prayer rug; during worship the niche must be pointed toward Mecca
+54368,mihrab,(Islam) a niche in the wall of a mosque that indicates the direction of Mecca
+54369,mikado tenno,the emperor of Japan; when regarded as a religious leader the emperor is called tenno
+54370,mikvah,(Hebrew) a ritual purification and cleansing bath that Orthodox Jews take on certain occasions (as before Sabbath or after menstruation)
+54371,mil,a Cypriot monetary unit equal to one thousandth of a pound
+54372,mil,a unit of length equal to one thousandth of an inch; used to specify thickness (e.g., of sheets or wire)
+54373,mil,an angular unit used in artillery; equal to 1/6400 of a complete revolution
+54374,mild_silver_protein Argyrol,antiseptic consisting of a compound of protein and silver (trade name Argyrol)
+54375,mild_steel low-carbon_steel soft-cast_steel,steel with less than 0.15% carbon
+54376,mildew,a fungus that produces a superficial (usually white) growth on organic matter
+54377,mildew mold mould,the process of becoming mildewed
+54378,mildness clemency,good weather with comfortable temperatures
+54379,mile,a large distance; "he missed by a mile"
+54380,mile,a footrace extending one mile; "he holds the record in the mile"
+54381,mile Roman_mile,an ancient Roman unit of length equivalent to 1620 yards
+54382,mile mil Swedish_mile,a Swedish unit of length equivalent to 10 km
+54383,mile statute_mile stat_mi land_mile international_mile mi,a unit of length equal to 1,760 yards or 5,280 feet; exactly 1609.344 meters
+54384,mileage,a travel allowance at a given rate per mile traveled
+54385,mileage fuel_consumption_rate gasoline_mileage gas_mileage,the ratio of the number of miles traveled to the number of gallons of gasoline burned
+54386,mileage milage,distance measured in miles
+54387,miler,(used only in combinations) the length of something in miles; "the race was a 30-miler"
+54388,miler,a runner in a one-mile race
+54389,miles_gloriosus,a braggart soldier (a stock figure in comedy)
+54390,miles_per_gallon,the distance traveled in a vehicle powered by one gallon of gasoline or diesel fuel
+54391,miles_per_hour mph,a speedometer reading for the momentary rate of travel
+54392,miles_per_hour mph,the ratio of the distance traveled (in miles) to the time spent traveling (in hours)
+54393,milestone,a significant event in your life (or in a project)
+54394,milestone milepost,stone post at side of a road to show distances
+54395,miliary_tuberculosis,acute tuberculosis characterized by the appearance of tiny tubercles on one or more organs of the body (presumably resulting from tubercle bacilli being spread in the bloodstream)
+54396,milieu surroundings,the environmental condition
+54397,militainment,entertainment with military themes in which the Department of Defense is celebrated
+54398,militant activist,a militant reformer
+54399,militarism,a political orientation of a people or a government to maintain a strong military force and to be prepared to use it aggressively to defend or promote national interests
+54400,militarist warmonger,a person who advocates war or warlike policies
+54401,military armed_forces armed_services military_machine war_machine,the military forces of a nation; "their military is the largest in the region"; "the military machine is the same one we faced in 1991 but now it is weaker"
+54402,military-industrial_complex,a country's military establishment and the industries that produce arms and other military equipment; "we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex"--Dwight David Eisenhower
+54403,military_academy,an academy for training military officers
+54404,military_action action,a military engagement; "he saw action in Korea"
+54405,military_adviser military_advisor,a military officer who serves as an adviser to the troops of an allied nation
+54406,military_attache,an attache who is a specialist in military matters
+54407,military_capability military_strength strength military_posture posture,capability in terms of personnel and materiel that affect the capacity to fight a war; "we faced an army of great strength"; "politicians have neglected our military posture"
+54408,military_censorship,all types of censorship conducted by personnel of the armed forces
+54409,military_ceremony,a formal ceremony performed by military personnel
+54410,military_ceremony,a military custom performed in observance of some event or anniversary
+54411,military_chaplain padre Holy_Joe sky_pilot,a chaplain in one of the military services
+54412,military_court,a judicial court of commissioned officers for the discipline and punishment of military personnel
+54413,military_drill,training in marching and the use of weapons
+54414,military_formation,a formation of troops
+54415,military_government stratocracy,government by the military and an army
+54416,military_governor,the head of a government established by the military (as in a defeated country)
+54417,military_hospital,hospital for soldiers and other military personnel
+54418,military_installation,any facility servicing military forces
+54419,military_intelligence,information about the armed forces of another country that is useful in planning and conducting military policy or military operations
+54420,military_intelligence military_intelligence_agency,an agency of the armed forces that obtains and analyzes and uses information of strategic or tactical military value
+54421,military_junta junta,a group of military officers who rule a country after seizing power
+54422,military_law,the body of laws and rules of conduct administered by military courts for the discipline, trial, and punishment of military personnel
+54423,military_leader,a leader of military forces
+54424,military_march military_music martial_music,brisk marching music suitable for troops marching in a military parade
+54425,military_officer officer,any person in the armed services who holds a position of authority or command; "an officer is responsible for the lives of his men"
+54426,military_pace,the length of a single step in marching (taken to be 30 inches for quick time or 36 inches for double time)
+54427,military_personnel soldiery troops,soldiers collectively
+54428,military_police MP,a military corps that enforces discipline and guards prisoners
+54429,military_policeman MP,a member of the military police who polices soldiers and guards prisoners
+54430,military_position position,a point occupied by troops for tactical reasons
+54431,military_post post,military installation at which a body of troops is stationed; "this military post provides an important source of income for the town nearby"; "there is an officer's club on the post"
+54432,military_quarters,living quarters for personnel on a military post
+54433,military_rank military_rating paygrade rating,rank in a military organization
+54434,military_reserve reserve,armed forces that are not on active duty but can be called in an emergency
+54435,military_science,the discipline dealing with the principles of warfare
+54436,military_service,land tenure by service in the lord's army
+54437,military_service armed_service service,a force that is a branch of the armed forces
+54438,military_training,training soldiers in military procedures
+54439,military_uniform,prescribed identifying uniform for soldiers
+54440,military_unit military_force military_group force,a unit that is part of some military service; "he sent Caesar a force of six thousand men"
+54441,military_vehicle,vehicle used by the armed forces
+54442,militia,the entire body of physically fit civilians eligible by law for military service; "their troops were untrained militia"; "Congress shall have power to provide for calling forth the militia"--United States Constitution
+54443,militia reserves,civilians trained as soldiers but not part of the regular army
+54444,militiaman,a member of the militia; serves only during emergencies
+54445,milk,any of several nutritive milklike liquids
+54446,milk,a white nutritious liquid secreted by mammals and used as food by human beings
+54447,milk,produced by mammary glands of female mammals for feeding their young
+54448,milk_bar,snack bar that sells milk drinks and light refreshments (such as ice cream)
+54449,milk_can,large can for transporting milk
+54450,milk_chocolate,chocolate made from chocolate liquor with sugar and cocoa butter and powdered milk solids and vanilla and (usually) lecithin; the most common form of chocolate for eating; used in chocolate candy and baking and coatings
+54451,milk_float,a van (typically powered by electricity) with an open side that is used to deliver milk to houses
+54452,milk_leg white_leg phlegmasia_alba_dolens,painful thrombosis of the femoral vein in the leg following childbirth
+54453,milk_of_magnesia,purgative consisting of a milky white liquid suspension of magnesium hydroxide; used as a laxative and (in smaller doses) as an antacid
+54454,milk_punch,a punch made of spirits and milk and sugar and spices
+54455,milk_sickness,caused by consuming milk from cattle suffering from trembles
+54456,milk_snake house_snake milk_adder checkered_adder Lampropeltis_triangulum,nonvenomous tan and brown king snake with an arrow-shaped occipital spot; southeastern ones have red stripes like coral snakes
+54457,milk_thistle lady's_thistle Our_Lady's_mild_thistle holy_thistle blessed_thistle Silybum_marianum,tall Old World biennial thistle with large clasping white-blotched leaves and purple flower heads; naturalized in California and South America
+54458,milk_vetch milk-vetch,any of various plants of the genus Astragalus
+54459,milk_wagon milkwagon,wagon for delivering milk
+54460,milkcap Lactarius_delicioso,edible mushroom
+54461,milking_machine,machine consisting of a suction apparatus for milking cows mechanically
+54462,milking_shorthorn,breed evolved from shorthorn beef cattle
+54463,milking_stool,low three-legged stool with a half round seat; used to sit on while milking a cow
+54464,milkman,someone who delivers milk
+54465,milkshake milk_shake shake,frothy drink of milk and flavoring and sometimes fruit or ice cream
+54466,milkweed Sonchus_oleraceus,annual Eurasian sow thistle with soft spiny leaves and rayed yellow flower heads
+54467,milkweed silkweed,any of numerous plants of the genus Asclepias having milky juice and pods that split open releasing seeds with downy tufts
+54468,milkwort,any of various plants of the genus Polygala
+54469,mill grinder milling_machinery,machinery that processes materials by grinding or crushing
+54470,mill-girl,a girl who works in a mill
+54471,mill-hand factory_worker,a workman in a mill or factory
+54472,mill_agent,the responsible official at a mill that is under absentee ownership
+54473,millboard,stout pasteboard used to bind books
+54474,milldam,dam to make a millpond to provide power for a water mill
+54475,millenarian millenarist chiliast,a person who believes in the coming of the millennium (a time of great peace and prosperity)
+54476,millenarianism millenarism millenniumism chiliasm,belief in the Christian doctrine of the millennium mentioned in the Book of Revelations
+54477,millenary,a sum or aggregate of one thousand (especially one thousand years)
+54478,millennium,(New Testament) in Revelations it is foretold that those faithful to Jesus will reign with Jesus over the earth for a thousand years; the meaning of these words have been much debated; some denominations (e.g. Jehovah's Witnesses) expect it to be a thousand years of justice and peace and happiness
+54479,millennium millenary,the 1000th anniversary (or the celebration of it)
+54480,millennium millenary,a span of 1000 years
+54481,miller,someone who works in a mill (especially a grain mill)
+54482,miller milling_machine,machine tool in which metal that is secured to a carriage is fed against rotating cutters that shape it
+54483,miller's-thumb,small freshwater sculpin of Europe and North America
+54484,millerite,a yellow mineral consisting of nickel sulfide; a minor source of nickel
+54485,millet,any of various small-grained annual cereal and forage grasses of the genera Panicum, Echinochloa, Setaria, Sorghum, and Eleusine
+54486,millet,small seed of any of various annual cereal grasses especially Setaria italica
+54487,millettia,any of several tropical trees or shrubs yielding showy streaked dark reddish or chocolate-colored wood
+54488,milliammeter,a sensitive ammeter graduated in milliamperes
+54489,milliampere mA,one thousandth of an ampere
+54490,milliard,a billion; "in England they call one thousand million a milliard"
+54491,millibar,a unit of atmospheric pressure equal to one thousandth of a bar; "atmospheric pressure at sea level is 1013 millibars"
+54492,millicurie,a unit of radioactivity equal to one thousandth of a curie
+54493,millidegree,a unit of temperature equal to one-thousandth of a degree
+54494,milliequivalent meq,one-thousandth of an equivalent
+54495,millifarad,a unit of capacitance equal to one thousandth of a farad
+54496,milligram mg,one thousandth (1/1,000) gram
+54497,millihenry,a unit of inductance equal to one thousandth of a henry
+54498,milliliter millilitre mil ml cubic_centimeter cubic_centimetre cc,a metric unit of volume equal to one thousandth of a liter
+54499,millime,1,000 millimes equal 1 dinar in Tunisia
+54500,millimeter millimetre mm,a metric unit of length equal to one thousandth of a meter
+54501,milline,an advertising measure; one agate line appearing in one million copies of a publication
+54502,millinery hat_shop,shop selling women's hats
+54503,millinery woman's_hat,hats for women; the wares sold by a milliner
+54504,milling,corrugated edge of a coin
+54505,million 1000000 one_thousand_thousand meg,the number that is represented as a one followed by 6 zeros
+54506,million billion trillion zillion jillion gazillion bazillion,a very large indefinite number (usually hyperbole); "there were millions of flies"
+54507,millionaire,a person whose material wealth is valued at more than a million dollars
+54508,millionairess,a woman millionaire
+54509,millionth,position 1,000,000 in a countable series of things
+54510,millipede millepede milliped,any of numerous herbivorous nonpoisonous arthropods having a cylindrical body of 20 to 100 or more segments most with two pairs of legs
+54511,milliradian,a unit of angular distance equal to one thousandth of a radian
+54512,millisecond msec,one thousandth (10^-3) of a second
+54513,millivolt mV,a unit of potential equal to one thousandth of a volt
+54514,millivoltmeter,sensitive voltmeter that can measure voltage in millivolts
+54515,milliwatt,a unit of power equal to one thousandth of a watt
+54516,millpond,a pond formed by damming a stream to provide a head of water to turn a mill wheel
+54517,millrace millrun,a channel for the water current that turns a millwheel
+54518,millstone,any load that is difficult to carry
+54519,millstone,one of a pair of heavy flat disk-shaped stones that are rotated against one another to grind the grain
+54520,millwheel mill_wheel,water wheel that is used to drive machinery in a mill
+54521,millwork,woodwork that has been machined at a mill
+54522,millwright,a workman who designs or erects mills and milling machinery
+54523,milo milo_maize,small drought-resistant sorghums having large yellow or whitish grains
+54524,milord,a term of address for an English lord
+54525,milt,seminal fluid produced by male fish
+54526,milt soft_roe,fish sperm or sperm-filled reproductive gland; having a creamy texture
+54527,mime mimer mummer pantomimer pantomimist,an actor who communicates entirely by gesture and facial expression
+54528,mime pantomime dumb_show,a performance using gestures and body movements without words
+54529,mimeograph mimeo mimeograph_machine Roneo Roneograph,a rotary duplicator that uses a stencil through which ink is pressed (trade mark Roneo)
+54530,mimesis,any disease that shows symptoms characteristic of another disease
+54531,mimesis,the representation of another person's words in a speech
+54532,mimesis,the imitative representation of nature and human behavior in art and literature
+54533,mimic mimicker,someone who mimics (especially an actor or actress)
+54534,mimicry,the resemblance of an animal species to another species or to natural objects; provides concealment and protection from predators
+54535,mimosa,any of various tropical shrubs or trees of the genus Mimosa having usually yellow flowers and compound leaves
+54536,mimosa buck's_fizz,a mixed drink containing champagne and orange juice
+54537,minaret,slender tower with balconies
+54538,mince,food chopped into small bits; "a mince of mushrooms"
+54539,mince_pie,pie containing mincemeat
+54540,mincemeat,spiced mixture of chopped raisins and apples and other ingredients with or without meat
+54541,mincer mincing_machine,a kitchen utensil that cuts or chops food (especially meat) into small pieces
+54542,mind,recall or remembrance; "it came to mind"
+54543,mind,attention; "don't pay him any mind"
+54544,mind head brain psyche nous,that which is responsible for one's thoughts, feelings, and conscious brain functions; the seat of the faculty of reason; "his mind wandered"; "I couldn't get his words out of my head"
+54545,mind idea,your intention; what you intend to do; "he had in mind to see his old teacher"; "the idea of the game is to capture all the pieces"
+54546,mind intellect,knowledge and intellectual ability; "he reads to improve his mind"; "he has a keen intellect"
+54547,mind's_eye,the imaging of remembered or invented scenes; "I could see her clearly in my mind's eye"
+54548,mind_game,any game designed to exercise the intellect
+54549,mind_game,deliberate actions of calculated psychological manipulation intended to intimidate or confuse (usually for competitive advantage); "football players try to play mind games with the opposition"; "the jeweler's mind game is to convince lovers that the size of a gemstone reflects the depth of their feelings"
+54550,mind_reader telepathist thought-reader,a magician who seems to discern the thoughts of another person (usually by clever signals from an accomplice)
+54551,minder,someone (usually in totalitarian countries) who is assigned to watch over foreign visitors; "I turned around and there, a few hundred feet away, was our government minder, Li Wong Su, huffing and puffing toward us"
+54552,mindfulness heedfulness,the trait of staying aware of (paying close attention to) your responsibilities
+54553,mine,excavation in the earth from which ores and minerals are extracted
+54554,mine,explosive device that explodes on contact; designed to destroy vehicles or ships or to kill or maim personnel
+54555,mine_detector,detector consisting of an electromagnetic device; used to locate explosive mines
+54556,mine_disposal,the disposal of explosive mines
+54557,mine_field,a tract of land containing explosive mines
+54558,mine_pig,pig iron made entirely from ore
+54559,minefield,a region in which explosives mines have been placed
+54560,minelayer,ship equipped for laying marine mines
+54561,miner mineworker,laborer who works in a mine
+54562,mineral,solid homogeneous inorganic substances occurring in nature having a definite chemical composition
+54563,mineral_deficiency,lack of a mineral micronutrient that is essential for normal nutrition or metabolism
+54564,mineral_extraction mineral_processing mineral_dressing ore_processing ore_dressing beneficiation,crushing and separating ore into valuable substances or waste by any of a variety of techniques
+54565,mineral_kingdom,all inorganic objects; contrasts with animal and plant kingdoms
+54566,mineral_oil,a distillate of petroleum (especially one used medicinally as a laxative or stool softener)
+54567,mineral_resources,natural resources in the form of minerals
+54568,mineral_water,water naturally or artificially impregnated with mineral salts or gasses; often effervescent; often used therapeutically
+54569,mineral_wool rock_wool,a light fibrous material used as an insulator
+54570,mineralocorticoid,hormone that is one of the steroids of the adrenal cortex that influences the metabolism of sodium and potassium
+54571,mineralogist,a scientist trained in mineralogy
+54572,mineralogy,the branch of geology that studies minerals: their structure and properties and the ways of distinguishing them
+54573,mineshaft,excavation consisting of a vertical or sloping passageway for finding or mining ore or for ventilating a mine
+54574,minesweeper,ship equipped to detect and then destroy or neutralize or remove marine mines
+54575,minesweeping,the activity of detecting and disposing of marine mines
+54576,ming_tree,an artificial plant resembling a bonsai
+54577,ming_tree,a dwarfed evergreen conifer or shrub shaped to have flat-topped asymmetrical branches and grown in a container
+54578,minge,vulgar term for a woman's pubic hair or genitals
+54579,mingling,the action of people mingling and coming into contact; "all the random mingling and idle talk made him hate literary parties"
+54580,miniature illumination,painting or drawing included in a book (especially in illuminated medieval manuscripts)
+54581,miniature toy,a copy that reproduces a person or thing in greatly reduced size
+54582,miniature_fan_palm bamboo_palm fern_rhapis Rhapis_excelsa,small graceful palm with reedlike stems and leaf bases clothed with loose coarse fibers
+54583,miniature_golf,a novelty version of golf played with golf balls and putters on a miniature course featuring many obstacles
+54584,miniature_pinscher,small German version of a Doberman pinscher
+54585,miniature_poodle,a breed of small poodles
+54586,miniature_schnauzer,a small schnauzer
+54587,miniaturist,someone who paints tiny pictures in great detail
+54588,miniaturization miniaturisation,act of making on a greatly reduced scale
+54589,minibar cellaret,sideboard with compartments for holding bottles
+54590,minibike motorbike,small motorcycle with a low frame and small wheels and elevated handlebars
+54591,minibus,a light bus (4 to 10 passengers)
+54592,minicab,a minicar used as a taxicab
+54593,minicar,a car that is even smaller than a subcompact car
+54594,minicomputer,a digital computer of medium size
+54595,minim,a British imperial capacity measure (liquid or dry) equal to 1/60th fluid dram or 0.059194 cubic centimeters
+54596,minim,a United States liquid unit equal to 1/60 fluidram
+54597,minimalism minimal_art reductivism,an art movement in sculpture and painting that began in the 1950s and emphasized extreme simplification of form and color
+54598,minimalist,a conservative who advocates only minor reforms in government or politics
+54599,minimalist,a practitioner or advocate of artistic minimalism
+54600,minimally_invasive_coronary_bypass_surgery,heart surgery in which a coronary bypass is performed on the beating heart by the use of small instruments and cameras threaded through small incisions
+54601,minimization minimisation,the act of reducing something to the least possible amount or degree or position
+54602,minimum,the point on a curve where the tangent changes from negative on the left to positive on the right
+54603,minimum lower_limit,the smallest possible quantity
+54604,minimum_wage,the lowest wage that an employer is allowed to pay; determined by contract or by law
+54605,minimus,the fifth digit; the little finger or little toe
+54606,mining excavation,the act of extracting ores or coal etc from the earth
+54607,mining minelaying,laying explosive mines in concealed places to destroy enemy personnel and equipment
+54608,mining_company,a company that owns and manages mines
+54609,mining_engineer,an engineer concerned with the construction and operation of mines
+54610,mining_geology,the branch of economic geology that deals with the applications of geology to mining
+54611,minion,a servile or fawning dependant
+54612,miniskirt mini,a very short skirt
+54613,minister,the job of a head of a government department
+54614,minister diplomatic_minister,a diplomat representing one government to another; ranks below ambassador
+54615,minister government_minister,a person appointed to a high office in the government; "Minister of Finance"
+54616,ministrant,someone who serves as a minister
+54617,ministry,a government department under the direction of a minister of state
+54618,ministry,religious ministers collectively (especially Presbyterian)
+54619,ministry,building where the business of a government ministry is transacted
+54620,ministry,the work of a minister of religion; "he is studying for the ministry"
+54621,minisub minisubmarine,submersible vessel for one or two persons; for naval operations or underwater exploration
+54622,minivan,a small box-shaped passenger van; usually has removable seats; used as a family car
+54623,miniver,trimming on ceremonial robes consisting of white or light grey fur
+54624,mink,the expensive fur of a mink
+54625,mink,slender-bodied semiaquatic mammal having partially webbed feet; valued for its fur
+54626,mink mink_coat,fur coat made from the soft lustrous fur of minks
+54627,minniebush minnie_bush Menziesia_pilosa,low shrub of the eastern United States with downy twigs
+54628,minnow Phoxinus_phoxinus,very small European freshwater fish common in gravelly streams
+54629,minocycline Minocin,tetracycline antibiotic (trade name Minocin) used to treat a variety of bacterial and rickettsial infections
+54630,minor-league_team minor-league_club,a team that plays in a minor league
+54631,minor_axis,the shorter or shortest axis of an ellipse or ellipsoid
+54632,minor_fast_day,one of five minor fast days on the Jewish calendar
+54633,minor_key minor_mode,a key based on the minor scale
+54634,minor_league minors bush_league,a league of teams that do not belong to a major league (especially baseball)
+54635,minor_leaguer bush_leaguer,a player on a minor-league baseball team
+54636,minor_planet planetoid,any of numerous small celestial bodies that move around the sun
+54637,minor_premise minor_premiss subsumption,the premise of a syllogism that contains the minor term (which is the subject of the conclusion)
+54638,minor_scale minor_diatonic_scale,a diatonic scale with notes separated by whole tones except for the 2nd and 3rd and 5th and 6th
+54639,minor_suit,( bridge) a suit of inferior scoring value, either diamonds or clubs
+54640,minor_surgery,any surgical procedure that does not involve anesthesia or respiratory assistance
+54641,minor_term,the term in a syllogism that is the subject of the conclusion
+54642,minor_tranquilizer minor_tranquillizer minor_tranquilliser antianxiety_drug anxiolytic anxiolytic_drug,a tranquilizer used to relieve anxiety and reduce tension and irritability
+54643,minority,a group of people who differ racially or politically from a larger group of which it is a part
+54644,minority,being or relating to the smaller in number of two parts; "when the vote was taken they were in the minority"; "he held a minority position"
+54645,minority nonage,any age prior to the legal age
+54646,minority_leader,leader of the minority party in a legislature
+54647,minoxidil Loniten Rogaine,a vasodilator (trade name Loniten) used to treat severe hypertension; one side effect is hirsutism so it is also sold (trade name Rogaine) as a treatment for male-patterned baldness
+54648,minster,any of certain cathedrals and large churches; originally connected to a monastery
+54649,minstrel,a performer in a minstrel show
+54650,minstrel_show,a troupe of performers in blackface typically giving a comic program of negro songs and jokes
+54651,minstrel_show,a variety show in which the performers are made up in blackface
+54652,minstrelsy,a troupe of minstrels
+54653,minstrelsy,ballads sung by minstrels
+54654,minstrelsy,the art of a minstrel
+54655,mint,any north temperate plant of the genus Mentha with aromatic leaves and small mauve flowers
+54656,mint,any member of the mint family of plants
+54657,mint,the leaves of a mint plant used fresh or candied
+54658,mint,a plant where money is coined by authority of the government
+54659,mint mint_candy,a candy that is flavored with a mint oil
+54660,mint_sauce,sweetened diluted vinegar with chopped mint leaves
+54661,mintage,fee paid to a mint by the government for minting a coin
+54662,mintage,act or process of minting coins
+54663,mintmark,a mark on a coin that identifies the mint where it was produced
+54664,minuend,the number from which the subtrahend is subtracted
+54665,minuet,a stately piece of music composed for dancing the minuet; often incorporated into a sonata or suite
+54666,minuet,a stately court dance in the 17th century
+54667,minus_sign,a sign indicating the operation of subtraction
+54668,minuscule,a small cursive script developed from uncial between the 7th and 9th centuries and used in medieval manuscripts
+54669,minute,a short note; "the secretary keeps the minutes of the meeting"
+54670,minute arcminute minute_of_arc,a unit of angular distance equal to a 60th of a degree
+54671,minute min,a unit of time equal to 60 seconds or 1/60th of an hour; "he ran a 4 minute mile"
+54672,minute_book,a book in which minutes have been written
+54673,minute_gun,(military) gun that is discharged once every minute (usually as part of a military funeral)
+54674,minute_hand big_hand,points to the minutes
+54675,minute_steak,a thin steak that can be cooked quickly
+54676,minuteness,great precision; painstaking attention to details; "he examined the essay with the greatest minuteness"
+54677,minutes proceedings transactions,a written account of what transpired at a meeting
+54678,minutia,a small or minor detail; "he had memorized the many minutiae of the legal code"
+54679,minyan,the quorum required by Jewish law to be present for public worship (at least ten males over thirteen years of age)
+54680,miotic_drug myotic_drug miotic myotic,a drug that causes miosis (constriction of the pupil of the eye)
+54681,miotic_eyedrop,a treatment for glaucoma; the eyedrops increase the outflow of aqueous humor by constricting the pupil
+54682,miracle,any amazing or wonderful occurrence
+54683,miracle,a marvellous event manifesting a supernatural act of a divine agent
+54684,miracle_man miracle_worker,a person who claims or is alleged to perform miracles
+54685,miracle_play,a medieval play representing episodes from the life of a saint or martyr
+54686,miraculous_food manna manna_from_heaven,(Old Testament) food that God gave the Israelites during the Exodus
+54687,mirage,an optical illusion in which atmospheric refraction by a layer of hot air distorts or inverts reflections of distant objects
+54688,mirage,something illusory and unattainable
+54689,mire,a difficulty or embarrassment that is hard to extricate yourself from; "the country is still trying to climb out of the mire left by its previous president"; "caught in the mire of poverty"
+54690,mire quagmire quag morass slack,a soft wet area of low-lying land that sinks underfoot
+54691,mirid_bug mirid capsid,a variety of leaf bug
+54692,miro black_pine Prumnopitys_ferruginea Podocarpus_ferruginea,New Zealand conifer used for lumber; the dark wood is used for interior carpentry
+54693,mirror,a faithful depiction or reflection; "the best mirror is an old friend"
+54694,mirror,polished surface that forms images by reflecting light
+54695,mirror_carp,domestic carp with some large shining scales
+54696,mirror_image reflection reflexion,a likeness in which left and right are reversed
+54697,misalignment,the spatial property of things that are not properly aligned
+54698,misalliance,an unsuitable alliance (especially with regard to marriage)
+54699,misanthrope misanthropist,someone who dislikes people in general
+54700,misanthropy,hatred of mankind
+54701,misanthropy,a disposition to dislike and mistrust other people
+54702,misapplication,wrong use or application
+54703,misappropriation,wrongful borrowing; "his explanation was a misappropriation of sociological theory"
+54704,misbehavior misbehaviour misdeed,improper or wicked or immoral behavior
+54705,miscalculation misreckoning misestimation,a mistake in calculating
+54706,miscarriage abortion,failure of a plan
+54707,miscegenation crossbreeding interbreeding,reproduction by parents of different races (especially by white and non-white persons)
+54708,misch_metal,a pyrophoric alloy made from a mixture of rare-earth metals
+54709,mischief mischief-making mischievousness deviltry devilry devilment rascality roguery roguishness shenanigan,reckless or malicious behavior that causes discomfort or annoyance in others
+54710,misconception,an incorrect conception
+54711,misconduct,bad or dishonest management by persons supposed to act on another's behalf
+54712,misconstrual misconstruction,a kind of misinterpretation resulting from putting a wrong construction on words or actions (often deliberately)
+54713,misconstruction,an ungrammatical constituent
+54714,miscount,an inaccurate count
+54715,miscue,a faulty shot in billiards; the cue tip slips off the cue ball
+54716,misdeal,an incorrect deal
+54717,misdemeanor misdemeanour infraction violation infringement,a crime less serious than a felony
+54718,misdirection,an incorrect charge to a jury given by a judge
+54719,misdirection,incorrect directions or instructions
+54720,mise_en_scene stage_setting setting,arrangement of scenery and properties to represent the place where a play or movie is enacted
+54721,miser,a stingy hoarder of money and possessions (often living miserably)
+54722,miserliness,total lack of generosity with money
+54723,misery,a feeling of intense unhappiness; "she was exhausted by her misery and grief"
+54724,misery wretchedness miserableness,a state of ill-being due to affliction or misfortune; "the misery and wretchedness of those slums is intolerable"
+54725,misfeasance,doing a proper act in a wrongful or injurious manner
+54726,misfire dud,an explosion that fails to occur
+54727,misfit,someone unable to adapt to their circumstances
+54728,misfortune bad_luck,unnecessary and unforeseen trouble resulting from an unfortunate event
+54729,misfortune bad_luck tough_luck ill_luck,an unfortunate state resulting from unfavorable outcomes
+54730,misgiving mistrust distrust suspicion,doubt about someone's honesty
+54731,misgovernment misrule,government that is inefficient or dishonest
+54732,mishap misadventure mischance,an instance of misfortune
+54733,mishpocha mishpachah,(Yiddish) the entire family network of relatives by blood or marriage (and sometimes close friends); "she invited the whole mishpocha"
+54734,misinformation,information that is incorrect
+54735,misinterpretation misunderstanding mistaking,putting the wrong interpretation on; "his misinterpretation of the question caused his error"; "there was no mistaking her meaning"
+54736,misleader,someone who leads astray (often deliberately)
+54737,mismanagement misdirection,management that is careless or inefficient; "he accomplished little due to the mismanagement of his energies"
+54738,mismatch,a bad or unsuitable match
+54739,misnomer,an incorrect or unsuitable name
+54740,miso,a thick paste made from fermented soybeans and barley or rice malt; used in Japanese cooking to make soups or sauces
+54741,misocainea,hatred of new ideas
+54742,misogamist,a person who hates marriage
+54743,misogamy,hatred of marriage
+54744,misogynist woman_hater,a misanthrope who dislikes women in particular
+54745,misogyny misogynism,hatred of women
+54746,misology,hatred of reasoning
+54747,misoneism,hatred of change or innovation
+54748,misopedia,hatred of children
+54749,misprint erratum typographical_error typo literal_error literal,a mistake in printed matter resulting from mechanical failures of some kind
+54750,mispronunciation,incorrect pronunciation
+54751,misquotation misquote,an incorrect quotation
+54752,misreading,misinterpretation caused by inaccurate reading
+54753,misrepresentation deceit deception,a misleading falsehood
+54754,miss misfire,a failure to hit (or meet or find etc)
+54755,missal,(Roman Catholic Church) a book containing all the prayers and responses needed to celebrate Mass throughout the year
+54756,missel_thrush mistle_thrush mistletoe_thrush Turdus_viscivorus,large European thrush that feeds on mistletoe berries
+54757,missile,a rocket carrying a warhead of conventional or nuclear explosives; may be ballistic or directed by remote control
+54758,missile_defense_system missile_defence_system,naval weaponry providing a defense system
+54759,missing_link ape-man,hypothetical organism formerly thought to be intermediate between apes and human beings
+54760,mission charge commission,a special assignment that is given to a person or group; "a confidential mission to London"; "his charge was deliver a message"
+54761,mission military_mission,an operation that is assigned by a higher headquarters; "the planes were on a bombing mission"
+54762,mission missionary_post missionary_station foreign_mission,an organization of missionaries in a foreign land sent to carry on religious work
+54763,mission missionary_work,the organized work of a religious missionary
+54764,mission_bells black_fritillary Fritillaria_biflora,herb of southwestern United States having dark purple bell-shaped flowers mottled with green
+54765,mission_bells rice-grain_fritillary Fritillaria_affinis Fritillaria_lanceolata Fritillaria_mutica,herb of northwestern America having green-and-purple bell-shaped flowers
+54766,mission_impossible,an extremely dangerous or difficult mission
+54767,missionary,someone who attempts to convert others to a particular doctrine or program
+54768,missionary missioner,someone sent on a mission--especially a religious or charitable mission to a foreign country
+54769,missionary_position,a position for sexual intercourse; a man and woman lie facing each other with the man on top; so-called because missionaries thought it the proper position for primitive peoples
+54770,misspelling,a spelling that is incorrect
+54771,misstatement,a statement that contains a mistake
+54772,missus missis,informal term of address for someone's wife
+54773,mist,a thin fog with condensation near the ground
+54774,mistake error fault,a wrong action attributable to bad judgment or ignorance or inattention; "he made a bad mistake"; "she was quick to point out my errors"; "I could understand his English in spite of his grammatical faults"
+54775,mistake misunderstanding misapprehension,an understanding of something that is not correct; "he wasn't going to admit his mistake"; "make no mistake about his intentions"; "there must be some misunderstanding--I don't have a sister"
+54776,mistflower mist-flower ageratum Conoclinium_coelestinum Eupatorium_coelestinum,rhizomatous plant of central and southeastern United States and West Indies having large showy heads of clear blue flowers; sometimes placed in genus Eupatorium
+54777,mistletoe Loranthus_europaeus,shrub of central and southeastern Europe; partially parasitic on beeches, chestnuts and oaks
+54778,mistletoe Viscum_album Old_World_mistletoe,Old World parasitic shrub having branching greenish stems with leathery leaves and waxy white glutinous berries; the traditional mistletoe of Christmas
+54779,mistletoe false_mistletoe,American plants closely resembling Old World mistletoe
+54780,mistletoe_cactus,a plant of the genus Rhipsalis
+54781,mistletoe_fig mistletoe_rubber_plant Ficus_diversifolia Ficus_deltoidea,shrub or small tree often grown as a houseplant having foliage like mistletoe
+54782,mistral,a strong north wind that blows in France during the winter
+54783,mistranslation,an incorrect translation
+54784,mistreatment,the practice of treating (someone or something) badly; "he should be punished for his mistreatment of his mother"
+54785,mistress,a woman master who directs the work of others
+54786,mistress kept_woman fancy_woman,an adulterous woman; a woman who has an ongoing extramarital sexual relationship with a man
+54787,mistrial,a trial that is invalid or inconclusive
+54788,misuse abuse,improper or excessive use; "alcohol abuse"; "the abuse of public funds"
+54789,mite,any of numerous very small to minute arachnids often infesting animals or plants or stored foods
+54790,miter mitre,the surface of a beveled end of a piece where a miter joint is made; "he covered the miter with glue before making the joint"
+54791,miter mitre,a liturgical headdress worn by bishops on formal occasions
+54792,miter_box mitre_box,hand tool for guiding handsaws in making crosscuts or miter joints
+54793,miter_joint mitre_joint miter mitre,joint that forms a corner; usually both sides are bevelled at a 45-degree angle to form a 90-degree corner
+54794,miterwort mitrewort bishop's_cap,any of various rhizomatous perennial herbs of the genus Mitella having a capsule resembling a bishop's miter
+54795,mithramycin Mithracin,an antineoplastic drug (trade name Mithracin) used to treat cancer of the testes
+54796,mitigating_circumstance,(law) a circumstance that does not exonerate a person but which reduces the penalty associated with the offense
+54797,mitochondrion chondriosome,an organelle containing enzymes responsible for producing energy
+54798,mitogen,an agent that triggers mitosis
+54799,mitomycin Mutamycin,a complex of antibiotic substances obtained from a streptomyces bacterium; one form (trade name Mutamycin) shows promise as an anticancer drug
+54800,mitosis,cell division in which the nucleus divides into nuclei containing the same number of chromosomes
+54801,mitral_stenosis mitral_valve_stenosis,obstruction or narrowing of the mitral valve (as by scarring from rheumatic fever)
+54802,mitral_valve bicuspid_valve left_atrioventricular_valve,valve with two cusps; situated between the left atrium and the left ventricle
+54803,mitral_valve_prolapse,cardiopathy resulting from the mitral valve not regulating the flow of blood between the left atrium and left ventricle of the heart
+54804,mittelschmerz,pain in the area of the ovary that is felt at the time of ovulation (usually midway through the menstrual cycle)
+54805,mitten,glove that encases the thumb separately and the other four fingers together
+54806,mitzvah mitsvah,(Judaism) a precept or commandment of the Jewish law
+54807,mitzvah mitsvah,(Judaism) a good deed performed out of religious duty
+54808,mix commixture admixture mixture intermixture mixing,the act of mixing together; "paste made by a mix of flour and water"; "the mixing of sound channels in the recording studio"
+54809,mix mixture,an event that combines things in a mixture; "a gradual mixture of cultures"
+54810,mix premix,a commercially prepared mixture of dry ingredients
+54811,mixed-blood,a person whose ancestors belonged to two or more racial groups
+54812,mixed_bud,a bud yielding both leaves and flowers
+54813,mixed_drink,made of two or more ingredients
+54814,mixed_economy,an economic system that combines private and state enterprises
+54815,mixed_farming,growing crops and feed and livestock all on the same farm
+54816,mixed_marriage,marriage of two people from different races or different religions or different cultures; "the families of both partners in a mixed marriage often disapprove"
+54817,mixed_metaphor,a combination of two or more metaphors that together produce a ridiculous effect
+54818,mixed_nuisance,a nuisance that is both a public nuisance and a private nuisance at the same time
+54819,mixer,club soda or fruit juice used to mix with alcohol
+54820,mixer,electronic equipment that mixes two or more input signals to give a single output signal
+54821,mixer,a kitchen utensil that is used for mixing foods
+54822,mixing_bowl,bowl used with an electric mixer
+54823,mixing_faucet,single faucet for separate hot and cold water pipes
+54824,mixology,skill in preparing mixed drinks
+54825,mixture,(chemistry) a substance consisting of two or more substances mixed together (not in fixed proportions and not with chemical bonding)
+54826,mizzen mizen,fore-and-aft sail set on the mizzenmast
+54827,mizzenmast mizenmast mizzen mizen,third mast from the bow in a vessel having three or more masts; the after and shorter mast of a yawl, ketch, or dandy
+54828,mnemonic,a device (such as a rhyme or acronym) used to aid recall
+54829,mnemonics,a method or system for improving the memory
+54830,mnemonist,an expert in the use of mnemonics; someone able to perform unusual feats of memory
+54831,moa,extinct flightless bird of New Zealand
+54832,moat fosse,ditch dug as a fortification and usually filled with water
+54833,mob rabble rout,a disorderly crowd of people
+54834,mobcap,large high frilly cap with a full crown; formerly worn indoors by women
+54835,mobile,sculpture suspended in midair whose delicately balanced parts can be set in motion by air currents
+54836,mobile_home manufactured_home,a large house trailer that can be connected to utilities and can be parked in one place and used as permanent housing
+54837,mobility,the quality of moving freely
+54838,mobilization mobilisation,act of marshaling and organizing and making ready for use or action; "mobilization of the country's economic resources"
+54839,mobilization mobilisation militarization militarisation,act of assembling and putting into readiness for war or other emergency: "mobilization of the troops"
+54840,mobocracy ochlocracy,a political system in which a mob is the source of control; government by the masses
+54841,moccasin mocassin,soft leather shoe; originally worn by Native Americans
+54842,moccasin_flower nerveroot Cypripedium_acaule,once common rose pink woodland orchid of eastern North America
+54843,mocha,soft suede glove leather from goatskin
+54844,mocha,a flavoring made from coffee mixed with chocolate
+54845,mocha,a dark brown color
+54846,mocha mocha_coffee,a superior dark coffee made from beans from Arabia
+54847,mock,the act of mocking or ridiculing; "they made a mock of him"
+54848,mock-heroic,a satirical imitation of heroic verse
+54849,mock-up,full-scale working model of something built for study or testing or display
+54850,mock_orange syringa Philadelphus_coronarius,large hardy shrub with showy and strongly fragrant creamy-white flowers in short terminal racemes
+54851,mock_privet,evergreen shrub with white flowers and olivelike fruits
+54852,mock_turtle_soup,soup made from a calf's head or other meat in imitation of green turtle soup
+54853,mockernut mockernut_hickory black_hickory white-heart_hickory big-bud_hickory Carya_tomentosa,smooth-barked North American hickory with 7 to 9 leaflets bearing a hard-shelled edible nut
+54854,mockingbird mocker Mimus_polyglotktos,long-tailed grey-and-white songbird of the southern United States able to mimic songs of other birds
+54855,mod,a British teenager or young adult in the 1960s; noted for their clothes consciousness and opposition to the rockers
+54856,mod_con,modern convenience; the appliances and conveniences characteristic of a modern house
+54857,modal_auxiliary_verb modal_auxiliary modal_verb modal,an auxiliary verb (such as `can' or `will') that is used to express modality
+54858,modal_logic,the logical study of necessity and possibility
+54859,modal_logic,a system of logic whose formal properties resemble certain moral and epistemological concepts
+54860,modality,a method of therapy that involves physical or electrical therapeutic treatment
+54861,modality mode,a classification of propositions on the basis of whether they claim necessity or possibility or impossibility
+54862,modality sense_modality sensory_system,a particular sense
+54863,mode,a particular functioning condition or arrangement; "switched from keyboard to voice mode"
+54864,mode modal_value,the most frequent value of a random variable
+54865,mode musical_mode,any of various fixed orders of the various diatonic notes within an octave
+54866,model,a type of product; "his car was an old model"
+54867,model example,a representative form or pattern; "I profited from his example"
+54868,model modelling modeling,the act of representing something (usually on a smaller scale)
+54869,model poser,a person who poses for a photographer or painter or sculptor; "the president didn't have time to be a model so the artist worked from photos"
+54870,model role_model,someone worthy of imitation; "every child needs a role model"
+54871,model simulation,representation of something (sometimes on a smaller scale)
+54872,model theoretical_account framework,a hypothetical description of a complex entity or process; "the computer program was based on a model of the circulatory and respiratory systems"
+54873,modeler modeller,a person who creates models
+54874,modeling modelling molding moulding,a preliminary sculpture in wax or clay from which a finished work can be copied
+54875,modem,(from a combination of MOdulate and DEModulate) electronic equipment consisting of a device used to connect computers by a telephone line
+54876,moderate_breeze,wind moving 13-18 knots; 4 on the Beaufort scale
+54877,moderate_gale near_gale,wind moving 32-38 knots; 7 on the Beaufort scale
+54878,moderation mitigation,the action of lessening in severity or intensity; "the object being control or moderation of economic depressions"
+54879,moderation moderateness,quality of being moderate and avoiding extremes
+54880,moderationism,the policy of being moderate or acting with moderation
+54881,moderationist,a moderate drinker (as opposed to a total abstainer)
+54882,moderator,any substance used to slow down neutrons in nuclear reactors
+54883,moderator,in the Presbyterian church, the officer who presides over a synod or general assembly
+54884,moderator,someone who presides over a forum or debate
+54885,moderator,someone who mediates disputes and attempts to avoid violence
+54886,moderatorship,the position of moderator
+54887,modern,a contemporary person
+54888,modern modern_font Bodoni Bodoni_font,a typeface (based on an 18th century design by Gianbattista Bodoni) distinguished by regular shape and hairline serifs and heavy downstrokes
+54889,modern_ballet,a style of ballet that admits a wider variety of movements
+54890,modern_dance,a style of theatrical dancing that is not as restricted as classical ballet; movements are expressive of feelings
+54891,modern_era,the present or recent times
+54892,modern_jazz new_jazz neo_jazz,any of various styles of jazz that appeared after 1940
+54893,modern_times present_times modern_world contemporary_world,the circumstances and ideas of the present age; "in modern times like these"
+54894,modernism,genre of art and literature that makes a self-conscious break with previous genres
+54895,modernism,practices typical of contemporary life or thought
+54896,modernist,an artist who makes a deliberate break with previous styles
+54897,modernity modernness modernism contemporaneity contemporaneousness,the quality of being current or of the present; "a shopping mall would instill a spirit of modernity into this village"
+54898,modernization,a modernized version (as of a play)
+54899,modernization modernisation,making modern in appearance or behavior; "the modernization of Nigeria will be a long process"
+54900,modesty modestness,freedom from vanity or conceit
+54901,modesty reserve,formality and propriety of manner
+54902,modicum,a small or moderate or token amount; "England still expects a modicum of eccentricity in its artists"- Ian Jack
+54903,modification,slightly modified copy; not an exact copy; "a modification of last year's model"
+54904,modification qualifying limiting,the grammatical relation that exists when a word qualifies the meaning of the phrase
+54905,modified_American_plan,a hotel plan that includes breakfast and dinner (but not lunch)
+54906,modified_radical_mastectomy,removal of a breast and the pectoralis minor and some lymph nodes in the adjacent armpit
+54907,modifier,a moderator who makes less extreme or uncompromising
+54908,modifier modifier_gene,a gene that modifies the effect produced by another gene
+54909,modifier qualifier,a content word that qualifies the meaning of a noun or verb
+54910,modillion,(architecture) one of a set of ornamental brackets under a cornice
+54911,modiolus,the central conical bony pillar of the cochlea
+54912,mods,a youth subculture that began in London in the early 1960s; a working-class movement with highly stylized dress and short hair; listened to rhythm and blues music and travelled on motor scooters
+54913,modulation,(electronics) the transmission of a signal by using it to vary a carrier wave; changing the carrier's amplitude or frequency or phase
+54914,modulation,the act of modifying or adjusting according to due measure and proportion (as with regard to artistic effect)
+54915,modulation inflection,a manner of speaking in which the loudness or pitch or tone of the voice is modified
+54916,module,detachable compartment of a spacecraft
+54917,module,computer circuit consisting of an assembly of electronic components (as of computer hardware)
+54918,module,a self-contained component (unit or item) that is used in combination with other components
+54919,modulus,an integer that can be divided without remainder into the difference between two other integers; "2 is a modulus of 5 and 9"
+54920,modulus,the absolute value of a complex number
+54921,modulus,(physics) a coefficient that expresses how much of a specified property is possessed by a specified substance
+54922,modulus_of_rigidity,the coefficient of elasticity for a shearing force
+54923,modus_vivendi,a temporary accommodation of a disagreement between parties pending a permanent settlement
+54924,mogul,a bump on a ski slope
+54925,mohair,fabric made with yarn made from the silky hair of the Angora goat
+54926,mohawk mohawk_haircut,haircut in which the head is shaved except for a band of hair down the middle of the scalp
+54927,moiety,one of two basic subdivisions of a tribe
+54928,moiety mediety,one of two (approximately) equal parts
+54929,moire watered-silk,silk fabric with a wavy surface pattern
+54930,moistening dampening,the act of making something slightly wet
+54931,moisture wet,wetness caused by water; "drops of wet gleamed on the window"
+54932,mojarra,small silvery schooling fishes with protrusible mouths found in warm coastal waters
+54933,mojo,a magic power or magic spell
+54934,moke,British informal for donkey
+54935,moksa,(Hinduism) release from the cycle of rebirth
+54936,molality molal_concentration,concentration measured by the number of moles of solute per kilogram of solvent
+54937,molar grinder,grinding tooth with a broad crown; located behind the premolars
+54938,molarity molar_concentration M,concentration measured by the number of moles of solute per liter of solution
+54939,molasses,thick dark syrup produced by boiling down juice from sugar cane; especially during sugar refining
+54940,molasses_cookie,very spicy cookies sweetened partially with molasses
+54941,molasses_kiss,a candy kiss that resembles toffee
+54942,molasses_taffy,taffy made of molasses
+54943,mold mould,loose soil rich in organic matter
+54944,mold mould,a fungus that produces a superficial growth on various kinds of damp or decaying organic matter
+54945,mold mould,a dish or dessert that is formed in or on a mold; "a lobster mold"; "a gelatin dessert made in a mold"
+54946,mold mould,a distinctive nature, character, or type; "a leader in the mold of her predecessors"
+54947,mold mould cast,container into which liquid is poured to create a given shape when it hardens
+54948,mold mould molding moulding modeling clay_sculpture,sculpture produced by molding
+54949,moldboard mouldboard,wedge formed by the curved part of a steel plow blade that turns the furrow
+54950,moldboard_plow mouldboard_plough,plow that has a moldboard
+54951,molded_salad,salad of meats or vegetables in gelatin
+54952,molding casting,the act of creating something by casting it in a mold
+54953,molding moulding,a decorative strip used for ornamentation or finishing
+54954,molding moulding border,a decorative recessed or relieved surface on an edge
+54955,mole,spicy sauce often containing chocolate
+54956,mole,a small congenital pigmented spot on the skin
+54957,mole,small velvety-furred burrowing mammal having small eyes and fossorial forefeet
+54958,mole_cricket,digs in moist soil and feeds on plant roots
+54959,mole_rat,African rodent resembling a mole in habits and appearance
+54960,mole_rat,furry short-limbed tailless rodent resembling a true mole in habits and appearance; of eastern Europe and Middle East
+54961,mole_salamander Ambystoma_talpoideum,brownish-black burrowing salamander of southeastern United States
+54962,molecular_biologist,a biologist who studies the structure and activity of macromolecules essential to life
+54963,molecular_biology,the branch of biology that studies the structure and activity of macromolecules essential to life (and especially with their genetic role)
+54964,molecular_formula,a chemical formula based on analysis and molecular weight
+54965,molecular_genetics,the branch of genetics concerned with the structure and activity of genetic material at the molecular level
+54966,molecular_weight relative_molecular_mass,(chemistry) the sum of the relative atomic masses of the constituent atoms of a molecule
+54967,molecule,(physics and chemistry) the simplest structural unit of an element or compound
+54968,molehill,a mound of earth made by moles while burrowing
+54969,moleskin,a durable cotton fabric with a velvety nap
+54970,molestation,the act of subjecting someone to unwanted or improper sexual advances or activity (especially women or children)
+54971,molester,someone who subjects others to unwanted or improper sexual activities
+54972,molindone Moban,antipsychotic drug (trade name Moban) used in the treatment of schizophrenia
+54973,moll gun_moll gangster's_moll,the girlfriend of a gangster
+54974,mollie molly,popular aquarium fish
+54975,mollification,a state of being appeased or ameliorated or tempered
+54976,molluscum,any skin disease characterized by soft pulpy nodules
+54977,molluscum_contagiosum,a virus disease of the skin marked by round white swellings; transmitted from person to person (most often in children or in adults with impaired immune function)
+54978,mollusk mollusc shellfish,invertebrate having a soft unsegmented body usually enclosed in a shell
+54979,mollusk_family,a family of mollusks
+54980,mollusk_genus,a genus of mollusks
+54981,mollycoddle,a pampered darling; an effeminate man
+54982,moloch,any lizard of the genus Moloch
+54983,molt molting moult moulting ecdysis,periodic shedding of the cuticle in arthropods or the outer skin in reptiles
+54984,molter moulter,an animal (especially birds and arthropods and reptiles) that periodically shed their outer layer (feathers or cuticle or skin or hair)
+54985,molucca_balm bells_of_Ireland Molucella_laevis,aromatic annual with a tall stems of small whitish flowers enclosed in a greatly enlarged saucer-shaped or bell-shaped calyx
+54986,molybdenite,a mineral resembling graphite that is valued as the chief source of molybdenum and its compounds
+54987,molybdenum Mo atomic_number_42,a polyvalent metallic element that resembles chromium and tungsten in its properties; used to strengthen and harden steel
+54988,molybdenum_steel,steel containing 10-15% molybdenum; properties are similar to tungsten steel
+54989,mombin,purplish tropical fruit
+54990,mombin mombin_tree jocote Spondias_purpurea,common tropical American shrub or small tree with purplish fruit
+54991,moment,a turning force produced by an object acting at a distance (or a measure of that force)
+54992,moment,the n-th moment of a distribution is the expected value of the n-th power of the deviations from a fixed value
+54993,moment minute second instant,a particular point in time; "the moment he arrived the party began"
+54994,moment mo minute second bit,an indefinitely short time; "wait just a moment"; "in a mo"; "it only takes a minute"; "in just a bit"
+54995,moment_magnitude_scale,a logarithmic scale of 1 to 10 (a successor to the Richter scale) that enables seismologists to compare the energy released by different earthquakes on the basis of the area of the geological fault that ruptured in the quake
+54996,moment_of_a_couple,given two equal and opposite forces, the product of the force and the distance between them
+54997,moment_of_inertia,the tendency of a body to resist angular acceleration
+54998,moment_of_truth,the moment in a bullfight when the matador kills the bull
+54999,moment_of_truth,a crucial moment on which much depends
+55000,momentousness,utmost importance
+55001,momentum,the product of a body's mass and its velocity; "the momentum of the particles was deduced from meteoritic velocities"
+55002,momentum impulse,an impelling force or strength; "the car's momentum carried it off the road"
+55003,momism overprotection overshielding,excessive protection
+55004,monad,(chemistry) an atom having a valence of one
+55005,monad,(biology) a single-celled microorganism (especially a flagellate protozoan)
+55006,monad monas,a singular metaphysical entity from which material properties are said to derive
+55007,monadic_operation unary_operation,an operation with exactly one operand
+55008,monal monaul,brilliantly colored pheasant of southern Asia
+55009,monandry,the state of having only one husband at a time
+55010,monarch monarch_butterfly milkweed_butterfly Danaus_plexippus,large migratory American butterfly having deep orange wings with black and white markings; the larvae feed on milkweed
+55011,monarchism,a belief in and advocacy of monarchy as a political system
+55012,monarchist royalist,an advocate of the principles of monarchy
+55013,monarchy,an autocracy governed by a monarch who usually inherits the authority
+55014,monarda wild_bergamot,any of various aromatic herbs of the genus Monarda
+55015,monastery,the residence of a religious community
+55016,monastic_habit,a long loose habit worn by monks in a monastery
+55017,monasticism,asceticism as a form of religious life; usually conducted in a community under a common rule and characterized by celibacy and poverty and obedience
+55018,monazite,a reddish-brown mineral containing rare earth metals; an important source of thorium and cerium
+55019,moneran moneron,organisms that typically reproduce by asexual budding or fission and whose nutritional mode is absorption or photosynthesis or chemosynthesis
+55020,monetarism,an economic theory holding that variations in unemployment and the rate of inflation are usually caused by changes in the supply of money
+55021,monetarist,an advocate of the theory that economic fluctuations are caused by increases or decreases in the supply of money
+55022,monetary_unit,a unit of money
+55023,monetary_value price cost,the property of having material worth (often indicated by the amount of money something would bring if sold); "the fluctuating monetary value of gold and silver"; "he puts a high price on his services"; "he couldn't calculate the cost of the collection"
+55024,monetization monetisation,establishing something (e.g. gold or silver) as the legal tender of a country
+55025,money,the official currency issued by a government or national bank; "he changed his money into francs"
+55026,money,the most common medium of exchange; functions as legal tender; "we tried to collect the money he owed us"
+55027,money,wealth reckoned in terms of money; "all his money is in real estate"
+55028,money_belt,belt with a concealed section for holding money
+55029,money_cowrie Cypraea_moneta,cowrie whose shell is used for money in parts of the southern Pacific and in parts of Africa
+55030,money_handler money_dealer,a person who receives or invests or pays out money
+55031,money_laundering,concealing the source of illegally gotten money
+55032,money_market,a market for short-term debt instruments
+55033,money_order postal_order,a written order for the payment of a sum to a named individual; obtainable and payable at a post office
+55034,money_supply,the total stock of money in the economy; currency held by the public plus money in accounts in banks
+55035,moneybag,a drawstring bag for holding money
+55036,moneygrubber,someone whose main interest in life is moneymaking
+55037,moneymaker,someone who is successful in accumulating wealth
+55038,moneymaker money-spinner cash_cow,a project that generates a continuous flow of money
+55039,moneymaking,the act of making money (and accumulating wealth)
+55040,moneywort creeping_Jenny creeping_Charlie Lysimachia_nummularia,a loosestrife vine
+55041,mongo,100 mongo equal 1 tugrik in Mongolia
+55042,mongolism mongolianism Down's_syndrome Down_syndrome trisomy_21,a congenital disorder caused by having an extra 21st chromosome; results in a flat face and short stature and mental retardation
+55043,mongoloid,a person suffering from Down syndrome (no longer used technically in this sense, now considered offensive)
+55044,mongoose,agile grizzled Old World viverrine; preys on snakes and rodents
+55045,monic_polynomial,a polynomial in one variable
+55046,monilia,any of the yeastlike imperfect fungi of the genus Monilia
+55047,monism,the doctrine that reality consists of a single basic substance or element
+55048,monition process_of_monition,a summons issued after the filing of a libel or claim directing all parties concerned to show cause why the judgment asked for should not be granted
+55049,monitor,electronic equipment that is used to check the quality or content of electronic transmissions
+55050,monitor,a piece of electronic equipment that keeps track of the operation of a system continuously and warns of trouble
+55051,monitor monitor_lizard varan,any of various large tropical carnivorous lizards of Africa and Asia and Australia; fabled to warn of crocodiles
+55052,monitor monitoring_device,display produced by a device that takes signals and displays them on a television screen or a computer monitor
+55053,monitor_program monitoring_program,a program that observes and regulates and controls or verifies the operations of a data-processing system
+55054,monitoring,the act of observing something (and sometimes keeping a record of it); "the monitoring of enemy communications plays an important role in war times"
+55055,monk monastic,a male religious living in a cloister and devoting himself to contemplation and prayer and work
+55056,monk's_cloth,a heavy cloth in basket weave
+55057,monkey,any of various long-tailed primates (excluding the prosimians)
+55058,monkey-wrench monkey_wrench,adjustable wrench that has one fixed and one adjustable jaw
+55059,monkey_bridge,a high narrow platform above a deck or in an engine room or boiler room
+55060,monkey_business,mischievous or deceitful behavior
+55061,monkey_ladder,a light ladder to the monkey bridge on a ship
+55062,monkey_puzzle chile_pine Araucaria_araucana,large Chilean evergreen conifer having intertwined branches and bearing edible nuts
+55063,monkfish,flesh of a large-headed anglerfish of the Atlantic waters of North America
+55064,monkshood helmetflower helmet_flower Aconitum_napellus,a poisonous herb native to northern Europe having hooded blue-purple flowers; the dried leaves and roots yield aconite
+55065,mono-iodotyrosine,tyrosine with one iodine atom added
+55066,monoamine,a molecule containing one amine group (especially one that is a neurotransmitter)
+55067,monoamine_neurotransmitter,a monoamine that is functionally important in neural transmission
+55068,monoamine_oxidase MAO,an enzyme that catalyzes the oxidation of many body compounds (e.g., epinephrine and norepinephrine and serotonin)
+55069,monoamine_oxidase_inhibitor MAOI,any of a group of antidepressant drugs that inhibit the action of monoamine oxidase in the brain and so allow monoamines to accumulate
+55070,monobasic_acid,an acid containing only one replaceable hydrogen atom per molecule
+55071,monoblast,a large immature monocyte normally found in bone marrow
+55072,monocarp monocarpic_plant monocarpous_plant,a plant that bears fruit once and dies
+55073,monochromacy monochromatism monochromatic_vision monochromia monochromasy,complete color blindness; colors can be differentiated only on the basis of brightness
+55074,monochromat,a person who is completely color-blind
+55075,monochrome,painting done in a range of tones of a single color
+55076,monocle eyeglass,lens for correcting defective vision in one eye; held in place by facial muscles
+55077,monocline,a geological formation in which all strata are inclined in the same direction
+55078,monoclonal_antibody monoclonal,any of a class of antibodies produced in the laboratory by a single clone of cells or a cell line and consisting of identical antibody molecules
+55079,monocot monocotyledon liliopsid endogen,a monocotyledonous flowering plant; the stem grows by deposits on its inside
+55080,monocot_family liliopsid_family,family of flowering plants having a single cotyledon (embryonic leaf) in the seed
+55081,monocot_genus liliopsid_genus,genus of flowering plants having a single cotyledon (embryonic leaf) in the seed
+55082,monocular_vision,vision with only one eye
+55083,monoculture,the cultivation of a single crop (on a farm or area or country)
+55084,monocyte,a type of granular leukocyte that functions in the ingestion of bacteria
+55085,monocytic_leukemia monocytic_leukaemia monoblastic_leukemia monoblastic_leukaemia histiocytic_leukemia histiocytic_leukaemia,leukemia characterized by the proliferation of monocytes and monoblasts in the blood
+55086,monocytosis,increase in the number of monocytes in the blood; symptom of monocytic leukemia
+55087,monofocal_lens_implant monofocal_IOL,a lens with a single focus that is used after cataract surgery to provide clear distance vision
+55088,monogamist monogynist,someone who practices monogamy (one spouse at a time)
+55089,monogamy monogamousness,the practice or state of having only one spouse at a time
+55090,monogenesis sporulation,asexual reproduction by the production and release of spores
+55091,monogenic_disorder monogenic_disease,an inherited disease controlled by a single pair of genes
+55092,monogram,a graphic symbol consisting of 2 or more letters combined (usually your initials); printed on stationery or embroidered on clothing
+55093,monograph,a detailed and documented treatise on a particular subject
+55094,monogyny,having only one wife at a time
+55095,monohybrid,a hybrid produced by crossing parents that are homozygous except for a single gene locus that has two alleles (as in Mendel's experiments with garden peas)
+55096,monohybrid_cross,hybridization using a single trait with two alleles (as in Mendel's experiments with garden peas)
+55097,monohydrate,a hydrate that contains one molecule of water per molecule of the compound
+55098,monolatry,the worship of a single god but without claiming that it is the only god
+55099,monolingual,a person who knows only one language
+55100,monolith,a single great stone (often in the form of a column or obelisk)
+55101,monologist,an entertainer who performs alone
+55102,monologue,a long utterance by one person (especially one that prevents others from participating in the conversation)
+55103,monologue,a (usually long) dramatic speech by a single actor
+55104,monomania possession,a mania restricted to one thing or idea
+55105,monomaniac,a person suffering from monomania
+55106,monomer,a simple compound whose molecules can join together to form polymers
+55107,mononeuropathy,any neuropathy of a single nerve trunk
+55108,mononuclear_phagocyte_system MPS system_of_macrophages,a widely distributed system of free and fixed macrophages derived from bone marrow
+55109,monophony monophonic_music monody,music consisting of a single vocal part (usually with accompaniment)
+55110,monoplane,an airplane with a single wing
+55111,monoplane_flying_fish two-wing_flying_fish,having only pectoral fins enlarged
+55112,monoplegia,paralysis of a single limb
+55113,monopolist monopolizer monopoliser,someone who monopolizes the means of producing or selling something
+55114,monopolization monopolisation,domination (of a market or commodity) to the exclusion of others
+55115,monopoly,(economics) a market in which there are many buyers but only one seller; "a monopoly on silver"; "when you have a monopoly you can ask any price you like"
+55116,monopoly,exclusive control or possession of something; "They have no monopoly on intelligence"
+55117,monopoly_board,a board used for playing monopoly
+55118,monopsony,(economics) a market in which goods or services are offered by several sellers but there is only one buyer
+55119,monorail,a railway having a single track
+55120,monorchism monorchidism,failure of one testes to descend into the scrotum
+55121,monosaccharide monosaccharose simple_sugar,a sugar (like sucrose or fructose) that does not hydrolyse to give other sugars; the simplest group of carbohydrates
+55122,monosemy,having a single meaning (absence of ambiguity) usually of individual words or phrases
+55123,monosodium_glutamate MSG,white crystalline compound used as a food additive to enhance flavor; often used in Chinese cooking; "food manufacturers sometimes list MSG simply as `artificial flavors' in ingredient lists"
+55124,monosomy,chromosomal abnormality consisting of the absence of one chromosome from the normal diploid number
+55125,monostotic_fibrous_dysplasia,fibrous dysplasia of bone confined to a single bone
+55126,monosyllable monosyllabic_word,a word or utterance of one syllable
+55127,monotheism,belief in a single God
+55128,monotheist,a believer in one god
+55129,monotone,a single tone repeated with different words or different rhythms (especially in rendering liturgical texts)
+55130,monotone drone droning,an unchanging intonation
+55131,monotony,constancy of tone or pitch or inflection
+55132,monotony humdrum sameness,the quality of wearisome constancy, routine, and lack of variety; "he had never grown accustomed to the monotony of his work"; "he was sick of the humdrum of his fellow prisoners"; "he hated the sameness of the food the college served"
+55133,monotreme egg-laying_mammal,the most primitive mammals comprising the only extant members of the subclass Prototheria
+55134,monotype,(biology) a taxonomic group with a single member (a single species or genus)
+55135,monotype,the sole print made by pressing paper against a painted or inked glass or metal plate
+55136,monotype,a typesetting machine operated from a keyboard that sets separate characters
+55137,monounsaturated_fatty_acid,an unsaturated fatty acid whose carbon chain has one double or triple valence bond per molecule; found chiefly in olive oil and chicken and almonds
+55138,monoxide,an oxide containing just one atom of oxygen in the molecule
+55139,mons mons_veneris mons_pubis,a mound of fatty tissue covering the pubic area in women
+55140,monsoon,rainy season in southern Asia when the southwestern monsoon blows, bringing heavy rains
+55141,monsoon,any wind that changes direction with the seasons
+55142,monsoon,a seasonal wind in southern Asia; blows from the southwest (bringing rain) in summer and from the northeast in winter
+55143,monster,an imaginary creature usually having various human and animal parts
+55144,monster fiend devil demon ogre,a cruel wicked and inhuman person
+55145,monster teras,(medicine) a grossly malformed and usually nonviable fetus
+55146,monstera,any plant of the genus Monstera; often grown as houseplants
+55147,monstrance ostensorium,(Roman Catholic Church) a vessel (usually of gold or silver) in which the consecrated Host is exposed for adoration
+55148,monstrosity,something hideous or frightful; "they regarded the atom bomb as a monstrosity"
+55149,montan_wax,a hard wax obtained from lignite
+55150,monte four-card_monte three-card_monte,a gambling card game of Spanish origin; 3 or 4 cards are dealt face up and players bet that one of them will be matched before the others as the cards are dealt from the pack one at a time
+55151,month,a time unit of approximately 30 days; "he was given a month to pay the bill"
+55152,month_of_Sundays,a time perceived as long; "I hadn't seen him in a month of Sundays"
+55153,monthly,a periodical that is published every month (or 12 issues per year)
+55154,monument,an important site that is marked and preserved as public property
+55155,moo,the sound made by a cow or bull
+55156,moo_goo_gai_pan,a Cantonese dish of chicken and sauteed vegetables
+55157,moocher mooch cadger scrounger,someone who mooches or cadges (tries to get something free)
+55158,mood mode modality,verb inflections that express how the action or state is conceived by the speaker
+55159,moodiness,a sullen gloomy feeling
+55160,moodiness,having temperamental and changeable moods
+55161,moon,any object resembling a moon; "he made a moon lamp that he used as a night light"; "the clock had a moon that showed various phases"
+55162,moon,any natural satellite of a planet; "Jupiter has sixteen moons"
+55163,moon-worship selenolatry,the worship of the moon
+55164,moon_blindness mooneye,recurrent eye inflammation in horses; sometimes resulting in blindness
+55165,moon_carrot stone_parsley,any plant of the genus Seseli having dense umbels of small white or pink flowers and finely divided foliage
+55166,moon_shell moonshell,marine gastropods having smooth rounded shells that form short spires
+55167,moon_shot,the launching of a spacecraft to the moon
+55168,moon_trefoil Medicago_arborea,evergreen shrub of southern European highlands having downy foliage and a succession of yellow flowers throughout the summer followed by curious snail-shaped pods
+55169,moonbeam moon_ray moon-ray,a ray of moonlight
+55170,moonfish Atlantic_moonfish horsefish horsehead horse-head dollarfish Selene_setapinnis,any of several silvery marine fishes with very flat bodies
+55171,moonflower belle_de_nuit Ipomoea_alba,pantropical climber having white fragrant nocturnal flowers
+55172,moonlight moonshine Moon,the light of the Moon; "moonlight is the smuggler's enemy"; "the Moon was bright enough to read by"
+55173,moonlighter,a person who holds a second job (usually after hours)
+55174,moonseed,plant of the family Menispermaceae having red or black fruit with crescent- or ring-shaped seeds
+55175,moonshine bootleg corn_liquor,whiskey illegally distilled from a corn mash
+55176,moonstone,a transparent or translucent gemstone with a pearly luster; some specimens are orthoclase feldspar and others are plagioclase feldspar
+55177,moonwalk,a kind of dance step in which the dancer seems to be sliding on the spot; "Michael Jackson perfected the moonwalk in the 1980s"
+55178,moonwalk,an exploratory walk by an astronaut on the surface of the moon
+55179,moonwort common_moonwort Botrychium_lunaria,of America and Eurasia and Australia
+55180,moor moorland,open land usually with peaty soil covered with heather and bracken and moss
+55181,moorage,a fee for mooring
+55182,moorcock,male red grouse
+55183,moorhen,female red grouse
+55184,moorhen Gallinula_chloropus,black gallinule that inhabits ponds and lakes
+55185,mooring moorage berth slip,a place where a craft can be made fast
+55186,mooring mooring_line,(nautical) a line that holds an object (especially a boat) in place
+55187,mooring_anchor,an anchor used to hold a mooring buoy or a channel marker in place
+55188,mooring_tower mooring_mast,a tower for mooring airships
+55189,moosewood moose-wood striped_maple striped_dogwood goosefoot_maple Acer_pennsylvanicum,maple of eastern North America with striped bark and large two-lobed leaves clear yellow in autumn
+55190,moot,a hypothetical case that law students argue as an exercise; "he organized the weekly moot"
+55191,moot_court,a mock court where law students argue hypothetical cases
+55192,mop_handle,the handle of a mop
+55193,moped,a motorbike that can be pedaled or driven by a low-powered gasoline engine
+55194,mopper,a worker who uses a mop to clean a surface
+55195,moppet,a little girl (usually one you are fond of)
+55196,moquette,a thick velvety synthetic fabric used for carpets and soft upholstery
+55197,moraine,accumulated earth and stones deposited by a glacier
+55198,moral lesson,the significance of a story or event; "the moral of the story is to love thy neighbor"
+55199,moral_certainty,certainty based on an inner conviction; "she believed in the importance of moral absolutes and moral certainty"; "the prosecutor had a moral certainty that the prisoner was guilty"
+55200,moral_force dynamic,an efficient incentive; "they hoped it would act as a spiritual dynamic on all churches"
+55201,moral_hazard,(economics) the lack of any incentive to guard against a risk when you are protected against it (as by insurance); "insurance companies are exposed to a moral hazard if the insured party is not honest"
+55202,moral_obligation,an obligation arising out of considerations of right and wrong; "he did it out of a feeling of moral obligation"
+55203,moral_principle,the principle that conduct should be moral
+55204,morale,a state of individual psychological well-being based upon a sense of confidence and usefulness and purpose
+55205,morale_builder,something or someone who influences by building or strengthening morale
+55206,morale_building morale_booster,anything that serves to increase morale; "the sight of flowers every morning was my morale builder"
+55207,moralism,a moral maxim
+55208,moralism,judgments about another person's morality; "he could not stand her hectoring moralism"
+55209,moralist,a philosopher who specializes in morals and moral problems
+55210,morality,concern with the distinction between good and evil or right and wrong; right or good conduct
+55211,morality_play,an allegorical play popular in the 15th and 16th centuries; characters personified virtues and vices
+55212,moralization moralisation,the act of making moral (or more moral); "for years she worked toward the moralization of English literature"
+55213,moralizing moralization moralisation,indulgence in moral pronouncements; the exposition (often superficially) of a particular moral code; "his constant moralizing drove me mad"
+55214,moratorium,a legally authorized postponement before some obligation must be discharged
+55215,moratorium,suspension of an ongoing activity
+55216,moray moray_eel,family of brightly colored voracious eels of warm coastal waters; generally nonaggressive to humans but larger species are dangerous if provoked
+55217,morbidity,the relative incidence of a particular disease
+55218,morbidity morbidness,an abnormally gloomy or unhealthy state of mind; "his fear of being alone verges on morbidity"
+55219,morceau,a short literary or musical composition
+55220,mordacity,a disposition to biting
+55221,mordant,a substance used to treat leather or other materials before dyeing; aids in dyeing process
+55222,moreen,a heavy fabric of wool (or wool and cotton) used mostly in upholstery or for curtains
+55223,morel,any of various edible mushrooms of the genus Morchella having a brownish spongelike cap
+55224,morello,cultivated sour cherry with dark-colored skin and juice
+55225,morello Prunus_cerasus_austera,any of several cultivated sour cherry trees bearing fruit with dark skin and juice
+55226,mores,(sociology) the conventions that embody the fundamental values of a group
+55227,morganite,a kind of pink beryl used as a gemstone
+55228,morgen,a South African unit of measure equal to about 2 acres
+55229,morgue mortuary dead_room,a building (or room) where dead bodies are kept before burial or cremation
+55230,morion cabasset,a metal helmet worn by common soldiers in the 16th century
+55231,mormon_cricket Anabrus_simplex,large dark wingless cricket-like katydid of arid parts of western United States
+55232,morning morn morning_time forenoon,the time period between dawn and noon; "I spent the morning running errands"
+55233,morning-after_pill,a large dose of estrogen taken orally within 24 to 72 hours after intercourse; prevents implantation of a fertilized ovum and so acts as a contraceptive; commonly used after rape or incest
+55234,morning_dress,formal attire for men during the daytime
+55235,morning_dress,a woman's informal dress for housework
+55236,morning_glory,any of various twining vines having funnel-shaped flowers that close late in the day
+55237,morning_room,a sitting room used during the daylight hours
+55238,morning_sickness,nausea early in the day; a characteristic symptom in the early months of pregnancy
+55239,morning_star daystar Phosphorus Lucifer,a planet (usually Venus) seen just before sunrise in the eastern sky
+55240,morocco,a soft pebble-grained leather made from goatskin; used for shoes and book bindings etc.
+55241,moronity mental_deficiency,mild mental retardation
+55242,moroseness glumness sullenness,a gloomy ill-tempered feeling
+55243,morosoph,a learned fool
+55244,morphallaxis,regeneration on a reduced scale of a body part; observed especially in invertebrates such as certain lobsters
+55245,morphea,localized scleroderma
+55246,morpheme,minimal meaningful language unit; it cannot be divided into smaller meaningful units
+55247,morphine morphia,an alkaloid narcotic drug extracted from opium; a powerful, habit-forming narcotic used to relieve pain
+55248,morphogenesis,differentiation and growth of the structure of an organism (or a part of an organism)
+55249,morphological_rule rule_of_morphology,a linguistic rule for the formation of words
+55250,morphology,studies of the rules for forming admissible words
+55251,morphology,the branch of biology that deals with the structure of animals and plants
+55252,morphology geomorphology,the branch of geology that studies the characteristics and configuration and evolution of rocks and land forms
+55253,morphology sound_structure syllable_structure word_structure,the admissible arrangement of sounds in words
+55254,morphophoneme,(linguistics) the phonemes (or strings of phonemes) that constitute the various allomorphs of a morpheme
+55255,morphophonemic_system,the morphophonemics of a particular language
+55256,morphophonemics,the study of the phonological realization of the allomorphs of the morphemes of a language
+55257,morris_dance morris_dancing,any of various English folk dances performed by dancers in costume
+55258,morris_dancer,someone who does a morris dance
+55259,morrow,the next day; "whenever he arrives she leaves on the morrow"
+55260,morsel,a small quantity of anything; "a morsel of paper was all he needed"
+55261,morsel bit bite,a small amount of solid food; a mouthful; "all they had left was a bit of bread"
+55262,mortal_enemy,an enemy who wants to kill you
+55263,mortal_sin deadly_sin,an unpardonable sin entailing a total loss of grace; "theologians list seven mortal sins"
+55264,mortality,the quality or state of being mortal
+55265,mortality_table,an actuarial table indicating life expectancy and probability of death as a function or age and sex and occupation etc
+55266,mortar,used as a bond in masonry or for covering a wall
+55267,mortar,a bowl-shaped vessel in which substances can be ground and mixed with a pestle
+55268,mortar howitzer trench_mortar,a muzzle-loading high-angle gun with a short barrel that fires shells at high elevations for a short range
+55269,mortar_fire,artillery fire delivered by a mortar
+55270,mortarboard,an academic cap with a flat square with a tassel on top
+55271,mortarboard hawk,a square board with a handle underneath; used by masons to hold or carry mortar
+55272,mortgage,a conditional conveyance of property as security for the repayment of a loan
+55273,mortgage-backed_security,a security created when a group of mortgages are gathered together and bonds are sold to other institutions or the public; investors receive a portion of the interest payments on the mortgages as well as the principal payments; usually guaranteed by the government
+55274,mortgage_application,an application for a mortgage loan
+55275,mortgage_deed,deed embodying a mortgage
+55276,mortgagee mortgage_holder,the person who accepts a mortgage; "the bank became our mortgagee when it accepted our mortgage on our new home"
+55277,mortgagor mortgager,the person who gives a mortgage in return for money to be repaid; "we became mortgagors when the bank accepted our mortgage and loaned us the money to buy our new home"
+55278,mortician undertaker funeral_undertaker funeral_director,one whose business is the management of funerals
+55279,mortification,(Christianity) the act of mortifying the lusts of the flesh by self-denial and privation (especially by bodily pain or discomfort inflicted on yourself)
+55280,mortise mortice,a square hole made to receive a tenon and so to form a joint
+55281,mortise_joint mortise-and-tenon_joint,a joint made by inserting tenon on one piece into mortise holes in the other
+55282,mortmain dead_hand,real property held inalienably (as by an ecclesiastical corporation)
+55283,morula,a solid mass of blastomeres that forms when the zygote splits; develops into the blastula
+55284,mosaic,viral disease in solanaceous plants (tomatoes, potatoes, tobacco) resulting in mottling and often shriveling of the leaves
+55285,mosaic,a pattern resembling a mosaic
+55286,mosaic,transducer formed by the light-sensitive surface on a television camera tube
+55287,mosaic,art consisting of a design made of small pieces of colored stone or glass
+55288,mosaic arial_mosaic photomosaic,arrangement of aerial photographs forming a composite picture
+55289,mosaic_culture,a highly diverse culture; "the city's mosaic culture results in great diversity in the arts"
+55290,mosaic_gold stannic_sulfide,a yellow pigment sometimes suspended in lacquer
+55291,mosaicism,the condition in which an organism has two or more cell populations that differ in genetic makeup
+55292,moshav,a cooperative Israeli village or settlement comprised of small farms
+55293,mosque,(Islam) a Muslim place of worship that usually has a minaret
+55294,mosquito,two-winged insect whose female has a long proboscis to pierce the skin and suck the blood of humans and animals
+55295,mosquito_bite,a sting inflicted by a mosquito
+55296,mosquito_fern floating_fern Carolina_pond_fern Azolla_caroliniana,small free-floating aquatic fern from the eastern United States to tropical America; naturalized in western and southern Europe
+55297,mosquito_net,a fine net or screen (especially around beds) to protect against mosquitos
+55298,mosquitofish Gambusia_affinis,silvery topminnow with rows of black spots of tropical North America and West Indies; important in mosquito control
+55299,moss,tiny leafy-stemmed flowerless plants
+55300,moss-trooper,a marauder and plunderer (originally operating in the bogs between England and Scotland)
+55301,moss_agate,an agate resembling moss with brown, black, or green markings
+55302,moss_campion Silene_acaulis,tuft- or mat-forming dwarf perennial of Arctic regions of western and central Europe and North America
+55303,moss_family,a family of mosses
+55304,moss_genus,a genus of mosses
+55305,moss_pink mountain_phlox moss_phlox dwarf_phlox Phlox_subulata,low tufted perennial phlox with needlelike evergreen leaves and pink or white flowers; native to United States and widely cultivated as a ground cover
+55306,mossback,an extremely old-fashioned conservative
+55307,mossy_saxifrage Saxifraga_hypnoides,tufted or mat-forming perennial of mountains of Europe; cultivated for its white flowers
+55308,most_valuable_player MVP,the player judged to be the most important to the sport
+55309,mostaccioli,pasta somewhat resembling little moustaches
+55310,mot_juste,the appropriate word or expression
+55311,motel,a motor hotel
+55312,motel_room,a sleeping room in a motel
+55313,motet,an unaccompanied choral composition with sacred lyrics; intended to be sung as part of a church service; originated in the 13th century
+55314,moth,typically crepuscular or nocturnal insect having a stout body and feathery or hairlike antennae
+55315,moth_bean Vigna_aconitifolia Phaseolus_aconitifolius,East Indian legume having hairy foliage and small yellow flowers followed by cylindrical pods; used especially in India for food and forage and as a soil conditioner; sometimes placed in genus Phaseolus
+55316,moth_miller miller,any of various moths that have powdery wings
+55317,moth_mullein Verbascum_blattaria,European mullein with smooth leaves and large yellow or purplish flowers; naturalized as a weed in North America
+55318,moth_orchid moth_plant,any of various orchids of the genus Phalaenopsis having often drooping glossy broad obovate or oval leaves usually dark green flushed purple or mottled grey and silver
+55319,mothball camphor_ball,a small sphere of camphor or naphthalene used to keep moths away from stored clothing
+55320,mother,a stringy slimy substance consisting of yeast cells and bacteria; forms during fermentation and is added to cider or wine to produce vinegar
+55321,mother,a term of address for an elderly woman
+55322,mother,a term of address for a mother superior
+55323,mother,a condition that is the inspiration for an activity or situation; "necessity is the mother of invention"
+55324,mother female_parent,a woman who has given birth to a child (also used as a term of address to your mother); "the mother of three children"
+55325,mother's_boy mamma's_boy mama's_boy,a boy excessively attached to his mother; lacking normal masculine interests
+55326,mother's_daughter,a daughter who is favored by and similar to her mother
+55327,mother's_milk,milk secreted by a woman who has recently given birth
+55328,mother's_son,a male person; "every mother's son who could walk was there"
+55329,mother-in-law,the mother of your spouse
+55330,mother-in-law's_tongue snake_plant Sansevieria_trifasciata,stemless plant having narrow rigid leaves often cultivated as a houseplant
+55331,mother-of-pearl nacre,the iridescent internal layer of a mollusk shell
+55332,mother_cell,cell from which another cell of an organism (usually of a different sort) develops; "a sperm cell develops from a sperm mother cell"
+55333,mother_figure,a woman who evokes the feelings usually reserved for a mother
+55334,mother_hen,a person who cares for the needs of others (especially in an overprotective or interfering way)
+55335,mother_hen,a hen with chicks
+55336,mother_lode champion_lode,the main vein of ore in a deposit
+55337,mother_tongue maternal_language first_language,one's native language; the language learned by children and passed from one generation to the next
+55338,motherhood maternity,the kinship relation between an offspring and the mother
+55339,motherliness maternalism maternal_quality maternity,the quality of having or showing the tenderness and warmth and affection of or befitting a mother; "the girl's motherliness made her invaluable in caring for the children"
+55340,motherwort Leonurus_cardiaca,bitter Old World herb of hedgerows and woodland margins having toothed leaves and white or pale pink flowers
+55341,motif motive,a theme that is repeated or elaborated in a piece of music
+55342,motif motive,a design or figure that consists of recurring shapes or colors, as in architecture or decoration
+55343,motile,one whose prevailing mental imagery takes the form of inner feelings of action
+55344,motilin,a gastrointestinal hormone that apparently participates in controlling smooth muscle contractions in the stomach and small intestine
+55345,motility,ability to move spontaneously and independently
+55346,motion,a state of change; "they were in a state of steady motion"
+55347,motion movement move,the act of changing location from one place to another; "police controlled the motion of the crowd"; "the movement of people from the farms to the cities"; "his move put him directly in my path"
+55348,motion movement move motility,a change of position that does not entail a change of location; "the reflex motion of his eyebrows revealed his surprise"; "movement is a sign of life"; "an impatient move of his hand"; "gastrointestinal motility"
+55349,motion question,a formal proposal for action made to a deliberative assembly for discussion and vote; "he made a motion to adjourn"; "she called for the question"
+55350,motion-picture_camera movie_camera cine-camera,a camera that takes a sequence of photographs that can give the illusion of motion when viewed in rapid succession
+55351,motion-picture_film movie_film cine-film,photographic film several hundred feet long and wound on a spool; to be used in a movie camera
+55352,motion_sickness kinetosis,the state of being dizzy or nauseated because of the motions that occur while traveling in or on a moving vehicle
+55353,motionlessness stillness lifelessness,a state of no motion or movement; "the utter motionlessness of a marble statue"
+55354,motivation,the condition of being motivated; "his motivation was at a high level"
+55355,motivation motivating,the act of motivating; providing incentive
+55356,motivation motive need,the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior; "we did not understand his motivation"; "he acted with the best of motives"
+55357,motley,a garment made of motley (especially a court jester's costume)
+55358,motley,a multicolored woolen fabric woven of mixed threads in 14th to 17th century England
+55359,motmot momot,tropical American bird resembling a blue jay and having greenish and bluish plumage
+55360,motor,a nonspecific agent that imparts motion; "happiness is the aim of all men and the motor of all action"
+55361,motor,machine that converts other forms of energy into mechanical energy and so imparts motion
+55362,motor_aphasia Broca's_aphasia ataxic_aphasia expressive_aphasia nonfluent_aphasia,aphasia in which expression by speech or writing is severely impaired
+55363,motor_area motor_region motor_cortex Rolando's_area excitable_area,the cortical area that influences motor movements
+55364,motor_control,control of muscles
+55365,motor_fiber efferent_fiber,a nerve fiber that carries impulses toward the muscles or glands
+55366,motor_hotel motor_inn motor_lodge tourist_court court,a hotel for motorists; provides direct access from rooms to parking area
+55367,motor_memory muscle_memory,your memory for motor skills
+55368,motor_nerve efferent_nerve efferent,a nerve that conveys impulses toward or to muscles or glands
+55369,motor_neuron efferent_neuron motor_nerve_fiber motoneuron,a neuron conducting impulses outwards from the brain or spinal cord
+55370,motor_oil,oil used to lubricate the moving parts of a motor
+55371,motor_pool,a fleet of military vehicles controlled by a single agency and available for use as needed
+55372,motor_scooter scooter,a wheeled vehicle with small wheels and a low-powered gasoline engine geared to the rear wheel
+55373,motor_vehicle automotive_vehicle,a self-propelled wheeled vehicle that does not run on rails
+55374,motorboat powerboat,a boat propelled by an internal-combustion engine
+55375,motorcade,a procession of people traveling in motor cars
+55376,motorcycle bike,a motor vehicle with two wheels and a strong frame
+55377,motorcycle_cop motorcycle_policeman speed_cop,a policeman who rides a motorcycle (and who checks the speeds of motorists)
+55378,motorcycling,riding a motorcycle; "motorcycling is a dangerous sport"
+55379,motorcyclist,a traveler who rides a motorcycle
+55380,motoring,the act of driving an automobile
+55381,motorist automobilist,someone who drives (or travels in) an automobile
+55382,motorization motorisation,the act of motorizing (equiping with motors or with motor vehicles)
+55383,motorized_wheelchair,a wheelchair propelled by a motor
+55384,motorman,the operator of streetcar
+55385,motormouth,someone who talks incessantly; "I wish that motormouth would shut up"
+55386,mottle,an irregular arrangement of patches of color; "it was not dull grey as distance had suggested, but a mottle of khaki and black and olive-green"
+55387,mottling,the act of coloring with areas of different shades
+55388,motto slogan catchword shibboleth,a favorite saying of a sect or political group
+55389,mouflon moufflon Ovis_musimon,wild mountain sheep of Corsica and Sardinia
+55390,moulin glacier_mill,a chute through which supraglacial water enters a glacier, boring either to the bedrock or to the depth of common crevasse formation; "the icy river plunged, roaring, into the moulin's blue depths"
+55391,mound hill,structure consisting of an artificial heap or bank usually of earth or stones; "they built small mounds to hide behind"
+55392,mound hill pitcher's_mound,(baseball) the slight elevation on which the pitcher stands
+55393,mount setting,a mounting consisting of a piece of metal (as in a ring or other jewelry) that holds a gem in place; "the diamond was in a plain gold mount"
+55394,mountain mount,a land mass that projects well above its surroundings; higher than a hill
+55395,mountain_ash,any of various trees of the genus Sorbus
+55396,mountain_ash Eucalyptus_regnans,tree having wood similar to the alpine ash; tallest tree in Australia and tallest hardwood in the world
+55397,mountain_ash Fraxinus_texensis,low-growing ash of Texas
+55398,mountain_avens Dryas_octopetala,creeping evergreen shrub with large white flowers; widely distributed in northern portions of Eurasia and North America
+55399,mountain_beaver sewellel Aplodontia_rufa,bulky nocturnal burrowing rodent of uplands of the Pacific coast of North America; the most primitive living rodent
+55400,mountain_bike all-terrain_bike off-roader,a bicycle with a sturdy frame and fat tires; originally designed for riding in mountainous country
+55401,mountain_bladder_fern Cystopteris_montana,fern of rocky mountainous areas of hemisphere
+55402,mountain_chinchilla mountain_viscacha,a rodent native to the mountains of Chile and Peru and now bred in captivity
+55403,mountain_climbing mountaineering,the activity of climbing a mountain
+55404,mountain_devil spiny_lizard Moloch_horridus,desert lizard that feeds on ants
+55405,mountain_ebony orchid_tree Bauhinia_variegata,small East Indian tree having orchid-like flowers and hard dark wood
+55406,mountain_everlasting,a variety of cat's foot
+55407,mountain_fern Oreopteris_limbosperma Dryopteris_oreopteris,common European mountain fern having fragrant lemon or balsam scented fronds
+55408,mountain_four_o'clock Mirabilis_oblongifolia,leafy wildflower with lavender-pink flowers that open in the evening and remain through cool part of the next day; found in open woods or brush in mountains of southern Colorado to Arizona and into Mexico
+55409,mountain_goat Rocky_Mountain_goat Oreamnos_americanus,sure-footed mammal of mountainous northwestern North America
+55410,mountain_gorilla Gorilla_gorilla_beringei,gorilla of Kivu highlands
+55411,mountain_heath Phyllodoce_caerulea Bryanthus_taxifolius,small shrub with tiny evergreen leaves and pink or purple flowers; Alpine summits and high ground in Asia and Europe and United States
+55412,mountain_hemlock black_hemlock Tsuga_mertensiana,large evergreen of western United States; wood much harder than Canadian hemlock
+55413,mountain_hollyhock Iliamna_ruvularis Iliamna_acerifolia,perennial of northwestern United States and western Canada resembling a hollyhock and having white or pink flowers
+55414,mountain_lady's_slipper Cypripedium_montanum,leafy plant having a few stems in a clump with 1 white and dull purple flower in each upper leaf axil; Alaska to northern California and Wyoming
+55415,mountain_laurel wood_laurel American_laurel calico_bush Kalmia_latifolia,a North American evergreen shrub having glossy leaves and white or rose-colored flowers
+55416,mountain_lily Lilium_auratum,Japanese lily with golden rays
+55417,mountain_lily Mount_Cook_lily Ranunculus_lyalii,showy white-flowered perennial of New Zealand
+55418,mountain_male_fern Dryopteris_oreades,a fern of the genus Dryopteris
+55419,mountain_maple mountain_alder Acer_spicatum,small shrubby maple of eastern North America; scarlet in autumn
+55420,mountain_mint,any of a number of perennial herbs of the genus Pycnanthemum; eastern North America and California
+55421,mountain_nyala Tragelaphus_buxtoni,shaggy antelope of mountains of Ethiopia
+55422,mountain_paca,rodent of mountains of western South America
+55423,mountain_peak,the summit of a mountain
+55424,mountain_pride Penstemon_newberryi,mat-forming plant with deep pink flowers on short erect leafy stems; rocky places at high elevations from Oregon to California
+55425,mountain_quail mountain_partridge Oreortyx_picta_palmeri,California partridge; slightly larger than the California quail
+55426,mountain_rice silkgrass silk_grass Indian_millet Oryzopsis_hymenoides,valuable forage grass of dry upland areas and plains of western North America to northern Mexico
+55427,mountain_rimu Lepidothamnus_laxifolius Dacridium_laxifolius,low-growing to prostrate shrub with slender trailing branches; New Zealand
+55428,mountain_rose Rosa_pendulina,European alpine rose with crimson flowers
+55429,mountain_sandwort mountain_starwort mountain_daisy Arenaria_groenlandica,boreal or alpine sandwort
+55430,mountain_sheep,any wild sheep inhabiting mountainous regions
+55431,mountain_sickness,nausea and shortness of breath experienced by mountain climbers above ten thousand feet
+55432,mountain_skink Eumeces_callicephalus,frequents oak and pine habitats in rocky mountainous areas of United States southwest and Mexico
+55433,mountain_spleenwort Asplenium_montanum,a spleenwort of eastern North America
+55434,mountain_swamp_gum Eucalyptus_camphora,medium-sized swamp gum of New South Wales and Victoria
+55435,mountain_tent,a lightweight tent with a floor; flaps close with a zipper
+55436,mountain_trail,a trail through mountainous country
+55437,mountain_zebra Equus_zebra_zebra,narrow-striped nearly extinct zebra of southern Africa
+55438,mountaineer mountain_climber,someone who climbs mountains
+55439,mountainside versant,the side or slope of a mountain; "conifer forests cover the eastern versant"
+55440,mountebank charlatan,a flamboyant deceiver; one who attracts customers with tricks or jokes
+55441,mounter,a skilled worker who mounts pictures or jewels etc.
+55442,mounter climber,someone who ascends on foot; "a solitary mounter of the staircase"
+55443,mounting,framework used for support or display
+55444,mourner griever sorrower lamenter,a person who is feeling grief (as grieving over someone who has died)
+55445,mournfulness sorrowfulness ruthfulness,a state of gloomy sorrow
+55446,mourning bereavement,state of sorrow over the death or departure of a loved one
+55447,mourning_cloak mourning_cloak_butterfly Camberwell_beauty Nymphalis_antiopa,of temperate regions; having dark purple wings with yellow borders
+55448,mourning_dove Zenaidura_macroura,wild dove of the United States having a mournful call
+55449,mourning_ring,a ring worn as a memorial to a dead person
+55450,mouse,person who is quiet or timid
+55451,mouse,any of numerous small rodents typically resembling diminutive rats having pointed snouts and small ears on elongated bodies with slender usually hairless tails
+55452,mouse computer_mouse,a hand-operated electronic device that controls the coordinates of a cursor on your computer screen as you move it around on a pad; on the bottom of the device is a ball that rolls on the surface of the pad; "a mouse takes much more room than a trackball"
+55453,mouse-ear_chickweed mouse_eared_chickweed mouse_ear clammy_chickweed chickweed,any of various plants related to the common chickweed
+55454,mouse-ear_hawkweed Pilosella_officinarum Hieracium_pilocella,European hawkweed having soft hairy leaves; sometimes placed in genus Hieracium
+55455,mouse-eared_bat,a carnivorous bat with ears like a mouse
+55456,mouse-tooth_forceps,a type of forceps
+55457,mouse_button,a push button on the mouse
+55458,mouse_nest mouse's_nest,where mice bear and raise their young
+55459,mousepad mouse_mat,a small portable pad that provides traction for the ball of a computer mouse
+55460,mouser,a cat proficient at mousing
+55461,mousetrap,a trap for catching mice
+55462,mousetrap trap_play,(American football) a play in which a defensive player is allowed to cross the line of scrimmage and then blocked off as the runner goes through the place the lineman vacated
+55463,moussaka,casserole of eggplant and ground lamb with onion and tomatoes bound with white sauce and beaten eggs
+55464,mousse,a rich, frothy, creamy dessert made with whipped egg whites and heavy cream
+55465,mousse,a light creamy dish made from fish or meat and set with gelatin
+55466,mousse hair_mousse,toiletry consisting of an aerosol foam used in hair styling
+55467,mousseline_de_sole,a gauze-like fabric of silk or rayon
+55468,mouth,a person conceived as a consumer of food; "he has four mouths to feed"
+55469,mouth,an opening that resembles a mouth (as of a cave or a gorge); "he rode into the mouth of the canyon"; "they built a fire at the mouth of the cave"
+55470,mouth,the point where a stream issues into a larger body of water; "New York is at the mouth of the Hudson"
+55471,mouth,the externally visible part of the oral cavity on the face and the system of organs surrounding the opening; "she wiped lipstick from her mouth"
+55472,mouth,the opening of a jar or bottle; "the jar had a wide mouth"
+55473,mouth oral_cavity oral_fissure rima_oris,the opening through which food is taken in and vocalizations emerge; "he stuffed his mouth with candy"
+55474,mouth_hole,a hole (as in a ski mask) for the mouth
+55475,mouthbreeder,any of various fishes that carry their eggs and their young in their mouths
+55476,mouthful,the quantity that can be held in the mouth
+55477,mouthpart,any part of the mouth of an insect or other arthropod especially one adapted to a specific way of feeding
+55478,mouthpiece,a part that goes over or into the mouth of a person; "the mouthpiece of a respirator"
+55479,mouthpiece,an acoustic device; the part of a telephone into which a person speaks
+55480,mouthpiece,the tube of a pipe or cigarette holder that a smoker holds in the mouth
+55481,mouthpiece embouchure,the aperture of a wind instrument into which the player blows directly
+55482,mouthpiece gumshield,(especially boxing) equipment that protects an athlete's mouth
+55483,mouthpiece mouth,a spokesperson (as a lawyer)
+55484,mouton mutton,meat from a mature domestic sheep
+55485,movability movableness,the quality of being movable; capable of being moved or rearranged
+55486,movable_barrier,a barrier that can be moved to allow passage
+55487,movable_feast moveable_feast,a religious holiday that falls on different dates in different years
+55488,move,(game) a player's turn to take some action permitted by the rules of the game
+55489,move,the act of deciding to do something; "he didn't make a move to help"; "his first move was to hire a lawyer"
+55490,move relocation,the act of changing your residence or place of business; "they say that three moves equal one fire"
+55491,movement,a major self-contained part of a symphony or sonata; "the second movement is slow and melodic"
+55492,movement,the driving and regulating parts of a mechanism (as of a watch or clock); "it was an expensive watch with a diamond movement"
+55493,movement,the act of changing the location of something; "the movement of cargo onto the vessel"
+55494,movement motion,a natural event that involves a change in the position or location of something
+55495,movement social_movement front,a group of people with a common ideology who try together to achieve certain general goals; "he was a charter member of the movement"; "politicians have to respect a mass movement"; "he led the national liberation front"
+55496,mover,workman employed by a moving company; "the movers were very careful with the grand piano"
+55497,mover,someone who moves
+55498,mover public_mover moving_company removal_firm removal_company,a company that moves the possessions of a family or business from one site to another
+55499,movie film picture moving_picture moving-picture_show motion_picture motion-picture_show picture_show pic flick,a form of entertainment that enacts a story by sound and a sequence of images giving the illusion of continuous movement; "they went to a movie every Saturday night"; "the film was shot on location"
+55500,movie_projector cine_projector film_projector,projects successive frames from a reel of film to create moving pictures
+55501,moviegoer motion-picture_fan,someone who goes to see movies
+55502,moviemaking movie_making film_making,the production of movies
+55503,moving-coil_galvanometer,a galvanometer that is operated by the force exerted by an electric current flowing in a movable coil suspended in a magnetic field
+55504,moving_expense,the cost of moving your residence from one location to another
+55505,moving_van,a van used for moving home or office furniture
+55506,mozzarella,mild white Italian cheese
+55507,mrem millirem,a dosage of ionizing radiation equivalent to one thousandth (1/1000) of a rem
+55508,msasa Brachystegia_speciformis,small shrubby African tree having compound leaves and racemes of small fragrant green flowers
+55509,mu,the 12th letter of the Greek alphabet
+55510,much,a great amount or extent; "they did much for humanity"
+55511,muchness,greatness of quantity or measure or extent
+55512,mucic_acid,a solid acid (C6H10O8) found in milk or sugar
+55513,mucilage,a gelatinous substance secreted by plants
+55514,mucin,a nitrogenous substance found in mucous secretions; a lubricant that protects body surfaces
+55515,muckraker mudslinger,one who spreads real or alleged scandal about another (usually for political advantage)
+55516,muckraking,the exposure of scandal (especially about public figures)
+55517,mucocutaneous_leishmaniasis New_World_leishmaniasis American_leishmaniasis leishmaniasis_americana nasopharyngeal_leishmaniasis,a form of leishmaniasis endemic in Mexico and Central American and South America; sores are limited to the skin and mucosa
+55518,mucoid,any of several glycoproteins similar to mucin
+55519,mucopolysaccharide,complex polysaccharides containing an amino group; occur chiefly as components of connective tissue
+55520,mucopolysaccharidosis,any of a group of genetic disorders involving a defect in the metabolism of mucopolysaccharides resulting in greater than normal levels of mucopolysaccharides in tissues
+55521,mucor,any mold of the genus Mucor
+55522,mucous_membrane mucosa,mucus-secreting membrane lining all body cavities or passages that communicate with the exterior
+55523,mucuna,any of several erect or climbing woody plants of the genus Mucuna; widespread in tropics of both hemispheres
+55524,mucus mucous_secretion,protective secretion of the mucous membranes; in the gut it lubricates the passage of food and protects the epithelial cells; in the nose and throat and lungs it can make it difficult for bacteria to penetrate the body through the epithelium
+55525,mud,slanderous remarks or charges
+55526,mud clay,water soaked soil; soft wet earth
+55527,mud_bath,a bath in warm mud (as for treating rheumatism)
+55528,mud_brick,a brick made from baked mud
+55529,mud_dauber,wasp that constructs mud cells on a solid base in which females place eggs laid in paralyzed insect larvae
+55530,mud_flat,a tract of low muddy land near an estuary; covered at high tide and exposed at low tide
+55531,mud_midget bogmat Wolffiella_gladiata,having narrow flat sickle-shaped submerged fronds; North America
+55532,mud_pie,a mass of mud that a child has molded into the shape of pie
+55533,mud_puddle,a puddle of mud; "the children loved a mud puddle"
+55534,mud_puppy Necturus_maculosus,aquatic North American salamander with red feathery external gills
+55535,mud_stain,a stain produced by mud
+55536,mud_turtle,bottom-dwelling freshwater turtle inhabiting muddy rivers of North America and Central America
+55537,mudder,a racehorse that runs well on a muddy racetrack
+55538,mudguard splash_guard splash-guard,a curved piece above the wheel of a bicycle or motorcycle to protect the rider from water or mud thrown up by the wheels
+55539,mudhif,a reed hut in the marshlands of Iraq; rare since the marshes were drained
+55540,mudra,ritual hand movement in Hindu religious dancing
+55541,mudskipper mudspringer,found in tropical coastal regions of Africa and Asia; able to move on land on strong pectoral fins
+55542,mudslide,a landslide of mud
+55543,muesli,mixture of untoasted dry cereals and fruits
+55544,muezzin muazzin muadhdhin,the Muslim official of a mosque who summons the faithful to prayer from a minaret five times a day
+55545,muff,a warm tubular covering for the hands
+55546,muffin gem,a sweet quick bread baked in a cup-shaped pan
+55547,muffin_man,formerly an itinerant peddler of muffins
+55548,muffle,a kiln with an inner chamber for firing things at a low temperature
+55549,muffler,a scarf worn around the neck
+55550,mufti,a jurist who interprets Muslim religious law
+55551,mufti,civilian dress worn by a person who is entitled to wear a military uniform
+55552,mug,with handle and usually cylindrical
+55553,mug mugful,the quantity that can be held in a mug
+55554,mug's_game,a futile or unprofitable endeavor
+55555,mug_file mug_book,a file of mug shots (pictures of criminals that are kept on file by the police)
+55556,mug_shot mugshot,a photograph of someone's face (especially one made for police records)
+55557,muggee,a victim of a mugging; "the law seems to give more protection to the mugger than to the muggee"
+55558,mugger,a robber who takes property by threatening or performing violence on the person who is robbed (usually on the street)
+55559,mugginess,a state of warm humidity
+55560,mugging,assault with intent to rob
+55561,mugwort,any of several weedy composite plants of the genus Artemisia
+55562,mugwump independent fencesitter,a neutral or uncommitted person (especially in politics)
+55563,muishond,southern African weasel
+55564,mujahid,a Muslim engaged in what he considers to be a jihad
+55565,mujahidin mujahedin mujahedeen mujahadeen mujahadin mujahideen mujahadein,a military force of Muslim guerilla warriors engaged in a jihad; "some call the mujahidin international warriors but others just call them terrorists"
+55566,mujtihad,an Islamic scholar who engages in ijtihad, the effort to derive rules of divine law from Muslim sacred texts
+55567,mukataa,an Arabic word for headquarters or administrative center; "Arafat was holed up in the mukataa of his West Bank compound"
+55568,mulatto,an offspring of a black and a white parent
+55569,mulberry,sweet usually dark purple blackberry-like fruit of any of several mulberry trees of the genus Morus
+55570,mulberry mulberry_tree,any of several trees of the genus Morus having edible fruit that resembles the blackberry
+55571,mulch,a protective covering of rotting vegetable matter spread to reduce evaporation and soil erosion
+55572,mule,hybrid offspring of a male donkey and a female horse; usually sterile
+55573,mule scuff,a slipper that has no fitting around the heel
+55574,mule's_ears Wyethia_amplexicaulis,balsamic-resinous herb with clumps of lanceolate leaves and stout leafy stems ending in large deep yellow flowers on long stalks; northwestern United States
+55575,mule_deer burro_deer Odocoileus_hemionus,long-eared deer of western North America with two-pronged antlers
+55576,mule_fat Baccharis_viminea,California shrub with slender leafy shoots that are important browse for mule deer
+55577,muleteer mule_skinner mule_driver skinner,a worker who drives mules
+55578,mull,a term used in Scottish names of promontories; "the Mull of Kintyre"
+55579,mulled_cider,sweet cider heated with spices and citrus fruit
+55580,mulled_wine,wine heated with sugar and spices and often citrus fruit
+55581,mullein flannel_leaf velvet_plant,any of various plants of the genus Verbascum having large usually woolly leaves and terminal spikes of yellow or white or purplish flowers
+55582,mullein_pink rose_campion gardener's_delight dusty_miller Lychnis_coronaria,an old cottage garden plant of southeastern Europe widely cultivated for its attractive white woolly foliage and showy crimson flowers
+55583,muller,a vessel in which wine is mulled
+55584,mullet,bottom dwelling marine warm water fishes with two barbels on the chin
+55585,mullet grey_mullet gray_mullet,highly valued lean flesh of marine or freshwater mullet
+55586,mullet grey_mullet gray_mullet,freshwater or coastal food fishes a spindle-shaped body; found worldwide
+55587,mulligan_stew mulligan Irish_burgoo,Irish version of burgoo
+55588,mulligatawny,a soup of eastern India that is flavored with curry; prepared with a meat or chicken base
+55589,mullion,a nonstructural vertical strip between the casements or panes of a window (or the panels of a screen)
+55590,mulloway jewfish Sciaena_antarctica,large important food fish of Australia; almost indistinguishable from the maigre
+55591,multi-billionaire,a very rich person whose material wealth is valued at many billions of dollars
+55592,multibank_holding_company,a bank holding company owning several banks
+55593,multichannel_recorder,a recorder with two or more channels; makes continuous records of two or more signals simultaneously
+55594,multicollinearity,a case of multiple regression in which the predictor variables are themselves highly correlated
+55595,multiculturalism,the doctrine that several different cultures (rather than one national culture) can coexist peacefully and equitably in a single country
+55596,multidimensional_language,a programming language whose expressions are assembled in more than one dimension
+55597,multiengine_airplane multiengine_plane,a plane with two or more engines
+55598,multiflora multiflora_rose Japanese_rose baby_rose Rosa_multiflora,vigorously growing rose having clusters of numerous small flowers; used for hedges and as grafting stock
+55599,multifocal_lens_implant multifocal_IOL,a type of lens implant that contains several rings with a common center and adjusts for near or far vision; the eye is in focus for near and far vision simultaneously
+55600,multimedia multimedia_system,transmission that combine media of communication (text and graphics and sound etc.)
+55601,multiple,the product of a quantity by an integer; "36 is a multiple of 9"
+55602,multiple_correlation_coefficient,an estimate of the combined influence of two or more variables on the observed (dependent) variable
+55603,multiple_mononeuropathy,pathology of several individual nerve trunks
+55604,multiple_myeloma,myeloma that develops in several places at the same time
+55605,multiple_regression multiple_correlation,a statistical technique that predicts values of one variable on the basis of two or more other variables
+55606,multiple_sclerosis MS disseminated_sclerosis disseminated_multiple_sclerosis,a chronic progressive nervous disorder involving loss of myelin sheath around certain nerve fibers
+55607,multiple_star,a system of three or more stars associated by gravity
+55608,multiple_voting,the act of voting in more than one place by the same person at the same election (illegal in U.S.)
+55609,multiplex,communicates two or more signals over a common channel
+55610,multiplex,a movie theater than has several different auditoriums in the same building
+55611,multiplex_operation,an operation in which two or more activities are interleaved
+55612,multiplexer,a device that can interleave two or more activities
+55613,multiplicand,the number that is multiplied by the multiplier
+55614,multiplication,a multiplicative increase; "repeated copying leads to a multiplication of errors"; "this multiplication of cells is a natural correlate of growth"
+55615,multiplication times,an arithmetic operation that is the inverse of division; the product of two numbers is computed; "the multiplication of four by three gives twelve"; "four times three equals twelve"
+55616,multiplicative_inverse reciprocal,(mathematics) one of a pair of numbers whose product is 1: the reciprocal of 2/3 is 3/2; the multiplicative inverse of 7 is 1/7
+55617,multiplicity,the property of being multiple
+55618,multiplier multiplier_factor,the number by which a multiplicand is multiplied
+55619,multiprocessing parallel_processing,simultaneous processing by two or more processing units
+55620,multiprocessor,a computer that uses two or more processing units under integrated control
+55621,multiprogramming concurrent_execution,the execution of two or more computer programs by a single computer
+55622,multistage,occurring in more than one stage
+55623,multistage_rocket step_rocket,a rocket having two or more rocket engines (each with its own fuel) that are fired in succession and jettisoned when the fuel is exhausted
+55624,multitude masses mass hoi_polloi people the_great_unwashed,the common people generally; "separate the warriors from the mass"; "power to the people"
+55625,multitude throng concourse,a large gathering of people
+55626,multitudinousness,a very large number (especially of people)
+55627,multivariate_analysis,a generic term for any statistical technique used to analyze data from more than one variable
+55628,multiversity,a university system having several separate campuses and colleges and research centers
+55629,multivitamin multivitamin_pill,a pill or tablet containing several vitamins
+55630,mum,secrecy; "mum's the word"
+55631,mumble,a soft indistinct utterance
+55632,mumblety-peg mumble-the-peg,a game in which players throw or flip a jackknife in various ways so that the knife sticks in the ground
+55633,mumbling,indistinct enunciation
+55634,mumbling gumming,ineffectual chewing (as if without teeth)
+55635,mumbo_jumbo,language or ritual causing, or intending to cause, confusion
+55636,mummery flummery,meaningless ceremonies and flattery
+55637,mummichog Fundulus_heteroclitus,silver-and-black killifish of saltwater marshes along the Atlantic coast of the United States
+55638,mummification,a condition resembling that of a mummy; "bureaucratic mummification in red tape"
+55639,mummification,embalmment and drying a dead body and wrapping it as a mummy
+55640,mummy,a body embalmed and dried and wrapped for burial (as in ancient Egypt)
+55641,mumps epidemic_parotitis,an acute contagious viral disease characterized by fever and by swelling of the parotid glands
+55642,mumpsimus,a traditional notion that is obstinately held although it is unreasonable; "he still holds to the old mumpsimus that a woman's place is in the kitchen"
+55643,munch,a large bite; "he tried to talk between munches on the sandwich"
+55644,muncher,a chewer who makes a munching noise
+55645,mung mung_bean green_gram golden_gram moong mash_bean munggo monggo green_soy green_bean,seed of the mung bean plant; used for food
+55646,mung mung_bean mung_bean_plant Vigna_radiata Phaseolus_aureus,erect bushy annual widely cultivated in warm regions of India and Indonesia and United States for forage and especially its edible seeds; chief source of bean sprouts used in Chinese cookery; sometimes placed in genus Phaseolus
+55647,mung_bean mung green_bean green_gram golden_gram moong mash_bean munggo monggo green_soy,seed of the mung bean plant used for food
+55648,municipal_bond,a bond issued by a state or local government
+55649,municipal_government,the government of a municipality
+55650,municipal_note,a municipal debt instrument with a maturity of less than 2 years
+55651,municipality,an urban district having corporate status and powers of self-government
+55652,municipality,people living in a town or city having local self-government
+55653,munificence largess largesse magnanimity openhandedness,liberality in bestowing gifts; extremely liberal and generous of spirit
+55654,muniments,deeds and other documentary evidence of title to land
+55655,munition ordnance ordnance_store,military supplies
+55656,munitions_industry arms_industry,an industry that manufacturers weapons of war
+55657,munj munja Saccharum_bengalense Saccharum_munja,tough Asiatic grass whose culms are used for ropes and baskets
+55658,muntjac barking_deer,small Asian deer with small antlers and a cry like a bark
+55659,muon negative_muon mu-meson,an elementary particle with a negative charge and a half-life of 2 microsecond; decays to electron and neutrino and antineutrino
+55660,mural wall_painting,a painting that is applied to a wall surface
+55661,muralist,a painter of murals
+55662,murder slaying execution,unlawful premeditated killing of a human being by a human being
+55663,murder_charge murder_indictment,an indictment charging someone with murder
+55664,murder_conviction,conviction for murder
+55665,murder_mystery,a narrative about a murder and how the murderer is discovered
+55666,murder_suspect,someone suspected of committing murder
+55667,murderee,a victim who is murdered
+55668,murderer liquidator manslayer,a criminal who commits homicide (who performs the unlawful premeditated killing of another human being)
+55669,murderess,a woman murderer
+55670,murderousness,a bloodthirsty hatred arousing murderous impulses
+55671,murderousness,cruelty evidence by a capability to commit murder
+55672,muriatic_acid,a former name for hydrochloric acid
+55673,murine,a rodent that is a member of the family Muridae
+55674,murine_typhus rat_typhus urban_typhus endemic_typhus,acute infection caused by rickettsia and transmitted by the bite of an infected flea; characterized by fever and chills and muscle aches and a rash
+55675,murmur_vowel murmur,a schwa that is incidental to the pronunciation of a consonant
+55676,murrain,any disease of domestic animals that resembles a plague
+55677,murre,black-and-white diving bird of northern seas
+55678,musca_volitans muscae_volitantes floater spots,spots before the eyes caused by opaque cell fragments in the vitreous humor and lens; "floaters seem to drift through the field of vision"
+55679,muscadine Vitis_rotundifolia,native grape of southeastern United States; origin of many cultivated varieties
+55680,muscadine bullace_grape,dull-purple grape of southern United States
+55681,muscat muscatel muscadel muscadelle,wine from muscat grapes
+55682,muscat muscatel muscat_grape,sweet aromatic grape used for raisins and wine
+55683,muscat muskat,any of several cultivated grapevines that produce sweet white grapes
+55684,muscle,authority or power or force (especially when used in a coercive way); "the senators used their muscle to get the party leader to resign"
+55685,muscle muscular_tissue,animal tissue consisting predominantly of contractile cells
+55686,muscle musculus,one of the contractile organs of the body
+55687,muscle_cell muscle_fiber muscle_fibre,an elongated contractile cell that forms the muscles of the body
+55688,muscle_relaxant,a drug that reduces muscle contractility by blocking the transmission of nerve impulses or by decreasing the excitability of the motor end plate or by other actions
+55689,muscleman muscle,a bully employed as a thug or bodyguard; "the drug lord had his muscleman to protect him"
+55690,muscovite,a colorless or pale brown mica with potassium
+55691,muscovy_duck musk_duck Cairina_moschata,large crested wild duck of Central America and South America; widely domesticated
+55692,muscular_dystrophy dystrophy,any of several hereditary diseases of the muscular system characterized by weakness and wasting of skeletal muscles
+55693,muscular_structure musculature muscle_system,the muscular system of an organism
+55694,muscular_tonus muscle_tone,normal tonicity of the muscles; "exercise improves muscle tone"
+55695,muscularity,the physiological state of having or consisting of muscle
+55696,musculophrenic_artery arteria_musculophrenica,an artery that supplies the abdomen and intercostal muscles
+55697,musculophrenic_vein vena_musculophrenica,veins that drain the upper abdominal wall and the lower intercostal spaces and the abdomen
+55698,musculoskeletal_system,the system of muscles and tendons and ligaments and bones and joints and associated tissues that move the body and maintain its form
+55699,musculus_abductor_digiti_minimi_manus,the abductor muscle of the little finger
+55700,musculus_abductor_digiti_minimi_pedis,the abductor muscles of the little toe
+55701,musculus_abductor_hallucis,the abductor muscle of the great toe
+55702,musculus_abductor_pollicis,the abductor muscle of the thumb
+55703,musculus_adductor_brevis,the short adductor muscle of the thigh
+55704,musculus_adductor_hallucis,the adductor muscle of the great toe
+55705,musculus_adductor_longus,the long adductor muscle of the thigh
+55706,musculus_adductor_magnus great_adductor_muscle,the muscle that adducts and extends the thigh
+55707,musculus_articularis_cubiti,a small branch of the triceps that inserts into the capsule of the elbow joint
+55708,musculus_articularis_genus,the articular muscle of the knee
+55709,musculus_biceps_femoris femoral_biceps,the biceps muscle of the thigh; it flexes the knee and rotates the leg laterally
+55710,musculus_sphincter_ani_externus,an external ring of striated muscle surrounding the anus
+55711,musculus_sphincter_ani_internus,an internal ring of smooth muscle formed by circular fibers of the rectum
+55712,musculus_sphincter_ductus_choledochi,the smooth muscle sphincter of the common bile duct
+55713,musculus_sphincter_ductus_pancreatici,the smooth muscle sphincter of the main pancreatic duct
+55714,muse,the source of an artist's inspiration; "Euterpe was his muse"
+55715,muser muller ponderer ruminator,a reflective thinker characterized by quiet contemplation
+55716,musette shepherd's_pipe,a small bagpipe formerly popular in France
+55717,musette_pipe,a small simple oboe
+55718,museum,a depository for collecting and displaying objects having scientific or historical or artistic value
+55719,mush,a journey by dogsled
+55720,mush cornmeal_mush,cornmeal boiled in water
+55721,musher,a traveler who drives (or travels with) a dog team
+55722,mushiness pulpiness,a mushy pulpy softness
+55723,mushroom,common name for an edible agaric (contrasting with the inedible toadstool)
+55724,mushroom,mushrooms and related fleshy fungi (including toadstools, puffballs, morels, coral fungi, etc.)
+55725,mushroom,any of various fleshy fungi of the subdivision Basidiomycota consisting of a cap at the end of a stem arising from an underground mycelium
+55726,mushroom,fleshy body of any of numerous edible fungi
+55727,mushroom mushroom_cloud mushroom-shaped_cloud,a large cloud of rubble and dust shaped like a mushroom and rising into the sky after an explosion (especially of a nuclear bomb)
+55728,mushroom_anchor,an anchor used for semipermanent moorings; has a bowl-shaped head that will dig in however it falls
+55729,mushroom_coral,flattened disk-shaped stony coral (usually solitary and unattached)
+55730,mushroom_pimple,any of various fungi of the family Hypocreaceae
+55731,mushroom_poisoning,toxic condition caused by eating certain species of mushrooms (especially Amanita species)
+55732,mushroom_sauce,brown sauce and sauteed mushrooms
+55733,mushy_peas,marrowfat peas that have been soaked overnight and then boiled; served with fish and chips
+55734,music,an artistic form of auditory communication incorporating instrumental or vocal tones in a structured and continuous manner
+55735,music,(music) the sounds produced by singers or musical instruments (or reproductions of such sounds)
+55736,music,musical activity (singing or whistling etc.); "his music was his central interest"
+55737,music euphony,any agreeable (pleasing and harmonious) sounds; "he fell asleep to the music of the wind chimes"
+55738,music medicine,punishment for one's actions; "you have to face the music"; "take your medicine"
+55739,music_box musical_box,produces music by means of pins on a revolving cylinder that strike the tuned teeth of a comb-like metal plate
+55740,music_critic,a critic of musical performances
+55741,music_department department_of_music,the academic department responsible for teaching music and music appreciation
+55742,music_genre musical_genre genre musical_style,an expressive style of music
+55743,music_hall vaudeville_theater vaudeville_theatre,a theater in which vaudeville is staged
+55744,music_lesson,a lesson in performing music
+55745,music_of_the_spheres,an inaudible music that Pythagoras thought was produced by the celestial
+55746,music_paper score_paper,paper with lines appropriate for writing music
+55747,music_school,a school specializing in music
+55748,music_school school_of_music,a school for the study of music
+55749,music_stand music_rack,a light stand for holding sheets of printed music
+55750,music_stool piano_stool,a stool for piano players; usually adjustable in height
+55751,music_teacher,someone who teaches music
+55752,musical musical_comedy musical_theater,a play or film whose action and dialogue is interspersed with singing and dancing
+55753,musical_arrangement arrangement,a piece of music that has been adapted for performance by a particular set of voices or instruments
+55754,musical_chairs,a rearrangement that has no practical effect or significance; "the company is looking for stability after years of musical chairs with directors"; "shareholders don't want the company playing musical chairs with their investment"
+55755,musical_chairs going_to_Jerusalem,a child's game in which players march to music around a group of chairs that contains one chair less than the number of players; when the music abruptly stops the players scramble to sit and the player who does not find a chair is eliminated; then a chair is removed and the march resumes until only the winner is seated
+55756,musical_composition opus composition piece piece_of_music,a musical work that has been created; "the composition is written in four movements"
+55757,musical_drama,opera in which the musical and dramatic elements are equally important; the music is appropriate to the action
+55758,musical_instrument instrument,any of various devices or contrivances that can be used to produce musical tones or sounds
+55759,musical_instrument_digital_interface MIDI,a standard protocol for communication between electronic musical instruments and computers
+55760,musical_notation,(music) notation used by musicians
+55761,musical_organization musical_organisation musical_group,an organization of musicians who perform together
+55762,musical_perception,the auditory perception of musical sounds
+55763,musical_performance,the act of performing music
+55764,musical_soiree soiree_musicale,a soiree assembled for the purpose of listening to music
+55765,musical_time,(music) the beat of musical rhythm
+55766,musicality musicalness,the property of sounding like music
+55767,musician,artist who composes or conducts music as a profession
+55768,musician instrumentalist player,someone who plays a musical instrument (as a profession)
+55769,musicianship,artistry in performing music
+55770,musicogenic_epilepsy,reflex epilepsy induced by music
+55771,musicologist,a student of musicology
+55772,musicology,the scholarly and scientific study of music
+55773,musk,an odorous glandular secretion from the male musk deer; used as a perfume fixative
+55774,musk,the scent of a greasy glandular secretion from the male musk deer
+55775,musk_clover muskus_grass white-stemmed_filaree Erodium_moschatum,low annual European herb naturalized in America; similar to alfilaria
+55776,musk_deer Moschus_moschiferus,small heavy-limbed upland deer of central Asia; male secretes valued musk
+55777,musk_kangaroo Hypsiprymnodon_moschatus,small kangaroo of northeastern Australia
+55778,musk_mallow mus_rose Malva_moschata,erect Old World perennial with faintly musk-scented foliage and white or pink flowers; adventive in United States
+55779,musk_ox musk_sheep Ovibos_moschatus,large shaggy-coated bovid mammal of Canada and Greenland; intermediate in size and anatomy between an ox and a sheep
+55780,musk_rose Rosa_moschata,rose native to Mediterranean region having curved or climbing branches and loose clusters of musky-scented flowers
+55781,musk_thistle nodding_thistle Carduus_nutans,Eurasian perennial naturalized in eastern North America having very spiny white cottony foliage and nodding musky crimson flower heads; valuable source of nectar
+55782,musk_turtle stinkpot,small freshwater turtle having a strong musky odor
+55783,muskellunge,flesh of very large North American pike; a game fish
+55784,muskellunge Esox_masquinongy,large (60 to 80 pounds) sport fish of North America
+55785,musket,a muzzle-loading shoulder gun with a long barrel; formerly used by infantrymen
+55786,musket_ball ball,a solid projectile that is shot by a musket; "they had to carry a ramrod as well as powder and ball"
+55787,musketeer,a foot soldier armed with a musket
+55788,musketry,musketeers and their muskets collectively
+55789,musketry,the technique of using small arms (especially in battle)
+55790,muskiness,having the olfactory properties of musk
+55791,muskmelon sweet_melon,the fruit of a muskmelon vine; any of several sweet melons related to cucumbers
+55792,muskrat muskrat_fur,the brown fur of a muskrat
+55793,muskrat musquash Ondatra_zibethica,beaver-like aquatic rodent of North America with dark glossy brown fur
+55794,muskwood Olearia_argophylla,musk-scented shrub or tree of southern and southeastern Australia having creamy-yellow flower heads
+55795,muslin,plain-woven cotton fabric
+55796,musnud,a seat with a cushion that is used as a throne by Indian princes
+55797,musophobia,a morbid fear of mice
+55798,mussel,black marine bivalves usually steamed in wine
+55799,mussel,marine or freshwater bivalve mollusk that lives attached to rocks etc.
+55800,must,a necessary or essential thing; "seat belts are an absolute must"
+55801,must,grape juice before or during fermentation
+55802,mustache moustache,an unshaved growth of hair on the upper lip; "he looked younger after he shaved off his mustache"
+55803,mustache_cup moustache_cup,a drinking cup with a bar inside the rim to keep a man's mustache out of the drink
+55804,mustachio moustachio handle-bars,a large bushy moustache (with hair growing sometimes down the sides of the mouth)
+55805,mustang,small hardy range horse of the western plains descended from horses brought by the Spanish
+55806,mustang_mint Monardella_lanceolata,fragrant California annual herb having lanceolate leaves and clusters of rose-purple flowers
+55807,mustard,any of several cruciferous plants of the genus Brassica
+55808,mustard mustard_greens leaf_mustard Indian_mustard,leaves eaten as cooked greens
+55809,mustard table_mustard,pungent powder or paste prepared from ground mustard seeds
+55810,mustard_gas mustard_agent blistering_agent dichloroethyl_sulfide sulfur_mustard,a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote
+55811,mustard_oil,oil obtained from mustard seeds and used in making soap
+55812,mustard_plaster sinapism,a plaster containing powdered black mustard; applied to the skin as a counterirritant or rubefacient
+55813,mustard_sauce,sauce of prepared mustard thinned with vinegar and vegetable oil with sugar and seasonings
+55814,mustard_seed,black or white seeds ground to make mustard pastes or powders
+55815,musteline_mammal mustelid musteline,fissiped fur-bearing carnivorous mammals
+55816,muster,a gathering of military personnel for duty; "he was thrown in the brig for missing muster"
+55817,muster_call,a call of the names of personnel at a military assembly
+55818,muster_roll,a list of names of officers and men in a military unit or ship's company
+55819,musth,an annual phase of heightened sexual excitement in the males of certain large mammals (especially elephants); is associated with discharge from a gland between the eye and ear; "the frenzied elephant was in musth"
+55820,mustiness must moldiness,the quality of smelling or tasting old or stale or mouldy
+55821,mutability mutableness,the quality of being capable of mutation
+55822,mutagen,any agent (physical or environmental) that can induce a genetic mutation or can increase the rate of mutation
+55823,mutagenesis,an event capable of causing a mutation
+55824,mutant,an animal that has undergone mutation
+55825,mutant mutation variation sport,(biology) an organism that has characteristics resulting from chromosomal alteration
+55826,mutant_gene,a gene that has changed so that the normal transmission and expression of a trait is affected
+55827,mutation,a change or alteration in form or qualities
+55828,mutation genetic_mutation chromosomal_mutation,(genetics) any event that changes genetic structure; any alteration in the inherited nucleic acid sequence of the genotype of an organism
+55829,mutchkin,a Scottish unit of liquid measure equal to 0.9 United States pint
+55830,mute,a device used to soften the tone of a musical instrument
+55831,mute deaf-mute deaf-and-dumb_person,a deaf person who is unable to speak
+55832,mute_swan Cygnus_olor,soundless Eurasian swan; commonly domesticated
+55833,muteness silence,a refusal to speak when expected; "his silence about my contribution was surprising"
+55834,mutilation,an injury that causes disfigurement or that deprives you of a limb or other important body part
+55835,mutilator maimer mangler,a person who mutilates or destroys or disfigures or cripples
+55836,mutineer,someone who is openly rebellious and refuses to obey authorities (especially seamen or soldiers)
+55837,mutiny,open rebellion against constituted authority (especially by seamen or soldiers against their officers)
+55838,mutisia,any of various plants of the genus Mutisia
+55839,mutism muteness,the condition of being unable or unwilling to speak; "her muteness was a consequence of her deafness"
+55840,muton,the smallest unit of DNA where a mutation can occur
+55841,mutter muttering murmur murmuring murmuration mussitation,a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech
+55842,mutterer mumbler murmurer,a person who speaks softly and indistinctly
+55843,mutton_chop,chop cut from a mature sheep
+55844,mutton_snapper muttonfish Lutjanus_analis,similar to and often marketed as `red snapper'
+55845,mutton_tallow,tallow from the body of a mature sheep
+55846,mutual_aid international_logistic_support,arrangements made between nations to assist each other
+55847,mutual_fund,the pooled money that is invested in assets
+55848,mutual_fund mutual_fund_company open-end_fund open-end_investment_company,a regulated investment company with a pool of assets that regularly sells and redeems its shares
+55849,mutual_induction,generation of electromotive forces in each other by two adjacent circuits
+55850,mutual_opposition polarity,a relation between two opposite attributes or tendencies; "he viewed it as a balanced polarity between good and evil"
+55851,mutual_resemblance,symmetrical resemblance
+55852,mutual_savings_bank MSB,a state-chartered savings bank owned by its depositors and managed by a board of trustees
+55853,mutual_understanding mutual_affection,sympathy of each person for the other
+55854,mutuality interdependence interdependency,a reciprocal relation between interdependent entities (objects or individuals or groups)
+55855,mutuality mutualness,a reciprocality of sentiments; "the mutuality of their affection was obvious"
+55856,muzhik moujik mujik muzjik,a Russian peasant (especially prior to 1917)
+55857,muzzle,a leather or wire restraint that fits over an animal's snout (especially a dog's nose and jaws) and prevents it from eating or biting
+55858,muzzle,forward projecting part of the head of certain animals; includes the jaws and nose
+55859,muzzle_loader,an obsolete firearm that was loaded through the muzzle
+55860,muzzle_velocity,the velocity of a projectile as it leaves the muzzle of a gun
+55861,muzzler,someone who muzzles animals
+55862,myalgia myodynia,pain in a muscle or group of muscles
+55863,myasthenia,any muscular weakness
+55864,myasthenia_gravis myasthenia,a chronic progressive disease characterized by chronic fatigue and muscular weakness (especially in the face and neck); caused by a deficiency of acetylcholine at the neuromuscular junctions
+55865,mycelium,the vegetative part of a fungus consisting of a mass of branching threadlike hyphae
+55866,mycobacteria mycobacterium,rod-shaped bacteria some saprophytic or causing diseases
+55867,mycologist,a botanist who specializes in the study of fungi
+55868,mycology,the branch of botany that studies fungi and fungus-caused diseases
+55869,mycomycin,a highly unsaturated antibiotic acid obtained from an actinomycete
+55870,mycophagist mycophage,a person or animal who eats fungi (especially mushrooms)
+55871,mycophagy,the practice of eating fungi (especially mushrooms collected in the wild)
+55872,mycoplasma,any of a group of small parasitic bacteria that lack cell walls and can survive without oxygen; can cause pneumonia and urinary tract infection
+55873,mycotoxin,a toxin produced by a fungus
+55874,mydriasis,reflex pupillary dilation as a muscle pulls the iris outward; occurs in response to a decrease in light or certain drugs
+55875,mydriatic mydriatic_drug,a drug that causes the pupil of the eye to dilate; used to aid eye examinations
+55876,myelatelia,any developmental defect of the spinal cord
+55877,myelencephalon,the posterior part of the hindbrain in developing vertebrates; forms the medulla oblongata in adults
+55878,myelin myeline medulla,a white fatty substance that forms a medullary sheath around the axis cylinder of some nerve fibers
+55879,myelinization myelinisation,the development of a myelin sheath around a nerve fiber
+55880,myelitis,inflammation of the spinal cord
+55881,myeloblast,a precursor of leukocytes that normally occurs only in bone marrow
+55882,myeloblastic_leukemia,a malignant neoplasm of blood-forming tissues; characterized by numerous myeloblasts in the blood stream
+55883,myelocyte,an immature leukocyte normally found in bone marrow
+55884,myelocytic_leukemia granulocytic_leukemia,a malignant neoplasm of blood-forming tissues; marked by proliferation of myelocytes and their presence in the blood
+55885,myelofibrosis,fibrosis of the bone marrow
+55886,myelogram,X-ray film of the spinal cord and spinal nerve roots and subarachnoid space
+55887,myelography,roentgenography of the spinal cord to detect possible lesions (usually after injection of a contrast medium into the subarachnoid space)
+55888,myeloma,a tumor of the bone marrow (usually malignant) composed of cells normally found in bone marrow
+55889,myelomeningocele,a congenital defect of the central nervous system in which a sac containing part of the spinal cord and its meninges protrude through a gap in the vertebral column; frequently accompanied by hydrocephalus and mental retardation
+55890,myenteric_plexus plexus_myentericus,a plexus of unmyelinated fibers and postganglionic autonomic cell bodies in the muscular coat of the esophagus and stomach and intestines
+55891,myiasis,infestation of the body by the larvae of flies (usually through a wound or other opening) or any disease resulting from such infestation
+55892,mylodon,large (bear-sized) extinct edentate mammal of the Pleistocene in South America
+55893,mylodontid,a variety of extinct edentate
+55894,myna mynah mina minah myna_bird mynah_bird,tropical Asian starlings
+55895,myocardial_infarction myocardial_infarct MI,destruction of heart tissue resulting from obstruction of the blood supply to the heart muscle
+55896,myocardial_inflammation myocarditis,inflammation of the myocardium (the muscular tissue of the heart)
+55897,myocardium,the middle muscular layer of the heart wall
+55898,myoclonus,a clonic spasm of a muscle or muscle group
+55899,myoclonus_epilepsy Lafora's_disease,epilepsy characterized by clonus of muscle groups and progressive mental deterioration and genetic origin
+55900,myofibril myofibrilla sarcostyle,one of many contractile filaments that make up a striated muscle fiber
+55901,myoglobin,a hemoprotein that receives oxygen from hemoglobin and stores it in the tissues until needed
+55902,myoglobinuria,the presence of myoglobin in the urine
+55903,myogram,a graphical recording of muscle activity
+55904,myology,the branch of physiology that studies muscles
+55905,myoma,a benign tumor composed of muscle tissue
+55906,myometritis,inflammation of the myometrium
+55907,myometrium,the smooth muscle forming the wall of the uterus
+55908,myonecrosis,localized death of muscle cell fibers
+55909,myopathy,any pathology of the muscles that is not attributable to nerve dysfunction
+55910,myope,a person with myopia; a nearsighted person
+55911,myopia nearsightedness shortsightedness,(ophthalmology) eyesight abnormality resulting from the eye's faulty refractive ability; distant objects appear blurred
+55912,myosarcoma,sarcoma of muscle tissue
+55913,myosin,the commonest protein in muscle; a globulin that combines with actin to form actomyosin
+55914,myositis,inflammation of muscle tissue
+55915,myotomy,surgical incision or division of a muscle
+55916,myotonia,abnormally long muscular contractions; slow relaxation of a muscle after a contraction
+55917,myotonia_congenita Thomsen's_disease,a mild, rare, congenital form of myotonia characterized by muscle stiffness
+55918,myotonic_muscular_dystrophy myotonic_dystrophy myotonia_atrophica Steinert's_disease,a severe form of muscular dystrophy marked by generalized weakness and muscular wasting that affects the face and feet and hands and neck; difficult speech and difficulty with the hands that spreads to the arms and shoulders and legs and hips; the onset can be any time from birth to middle age and the progression is slow; inheritance is autosomal dominant
+55919,myriad,a large indefinite number; "he faced a myriad of details"
+55920,myriagram myg,one ten thousandth of a centner
+55921,myriameter myriametre mym,a metric unit of length equal to 10,000 meters
+55922,myriapod,general term for any terrestrial arthropod having an elongated body composed of many similar segments: e.g. centipedes and millipedes
+55923,myringectomy,surgical removal of the eardrum
+55924,myringoplasty,surgical repair of a perforated eardrum with a tissue graft
+55925,myringotomy,surgical incision into the eardrum (to relieve pressure or release pus from the middle ear)
+55926,myristic_acid tetradecanoic_acid,a saturated fatty acid occurring naturally in animal and vegetable fats
+55927,myrmecophile,an organism such as an insect that habitually shares the nest of a species of ant
+55928,myrmecophyte,plant that affords shelter or food to ants that live in symbiotic relations with it
+55929,myrmidon,a follower who carries out orders without question
+55930,myrrh gum_myrrh sweet_cicely,aromatic resin that is burned as incense and used in perfume
+55931,myrrh_tree Commiphora_myrrha,tree of eastern Africa and Asia yielding myrrh
+55932,myrtaceous_tree,trees and shrubs
+55933,myrtle,any evergreen shrub or tree of the genus Myrtus
+55934,myrtle Vinca_minor,widely cultivated as a groundcover for its dark green shiny leaves and usually blue-violet flowers
+55935,myrtle_beech Nothofagus_cuninghamii,large evergreen tree of Tasmania
+55936,myrtle_oak seaside_scrub_oak Quercus_myrtifolia,small evergreen shrub or tree of southeastern United States; often forms almost impenetrable thickets in sandy coastal areas
+55937,myrtle_warbler myrtle_bird Dendroica_coronata,similar to Audubon's warbler
+55938,mysoandry,hatred for men or boys
+55939,mysophilia,abnormal attraction to filth
+55940,mysophobia,a morbid fear of dirt or contamination
+55941,mystery enigma secret closed_book,something that baffles understanding and cannot be explained; "how it got out is a mystery"; "it remains one of nature's secrets"
+55942,mystery mystery_story whodunit,a story about a crime (usually murder) presented as a novel or play or movie
+55943,mystery_play,a medieval play representing episodes from the life of Christ
+55944,mystic religious_mystic,someone who believes in the existence of realities beyond human comprehension
+55945,mysticism,obscure or irrational thought
+55946,mysticism religious_mysticism,a religion based on mystical communion with an ultimate reality
+55947,mystification,something designed to mystify or bewilder
+55948,mystification obfuscation,the activity of obscuring people's understanding, leaving them baffled or bewildered
+55949,mystique,an aura of heightened value or interest or meaning surrounding a person or thing
+55950,myth,a traditional story accepted as history; serves to explain the world view of a people
+55951,mythical_being,an imaginary being of myth or fable
+55952,mythical_monster mythical_creature,a monster renowned in folklore and myth
+55953,mythologist,an expert on mythology
+55954,mythologization mythologisation,the restatement of a message as a myth
+55955,mythology,myths collectively; the body of stories associated with a culture or institution or person
+55956,mythology,the study of myths
+55957,myxedema myxoedema,hypothyroidism marked by dry skin and swellings around lips and nose as well as mental deterioration
+55958,myxobacteria myxobacterium myxobacter gliding_bacteria slime_bacteria,bacteria that form colonies in self-produced slime; inhabit moist soils or decaying plant matter or animal waste
+55959,myxoma,a benign tumor of connective tissue containing jellylike material
+55960,myxoma_virus,a poxvirus closely related to smallpox virus; causes benign gelatinous tumors in humans
+55961,myxomatosis,a viral disease (usually fatal) of rabbits
+55962,myxosporidian,mostly parasitic in fishes and including various serious pathogens
+55963,myxovirus,any of a group of RNA viruses including those that cause influenza and mumps
+55964,n-type_semiconductor,a semiconductor in which electrical conduction is due chiefly to the movement of electrons
+55965,nabob,a wealthy man (especially one who made his fortune in the Orient)
+55966,naboom cactus_euphorbia Euphorbia_ingens,small tree of dry open parts of southern Africa having erect angled branches suggesting candelabra
+55967,nabothian_cyst nabothian_follicle,a cyst that forms in the nabothian glands of the uterine cervix
+55968,nabothian_gland,one of many small glands of the uterine cervix that secrete mucus
+55969,nabumetone Relafen,a nonsteroidal anti-inflammatory drug (trade name Relafen)
+55970,nacelle,a streamlined enclosure for an aircraft engine
+55971,nacho,a tortilla chip topped with cheese and chili-pepper and broiled
+55972,nacreous_cloud mother-of-pearl_cloud,a luminous iridescent cloud at a high altitude that may be seen when the sun is a few degrees below the horizon
+55973,nadir,the point below the observer that is directly opposite the zenith on the imaginary sphere against which celestial bodies appear to be projected
+55974,nadir low-water_mark,an extreme state of adversity; the lowest point of anything
+55975,nadolol Corgard,a beta-adrenergic blocking agent (trade name Corgard) that is used to treat hypertension and angina
+55976,nafcillin Nafcil,a penicillinase-resistant form of penicillin (trade name Nafcil) used (usually in the form of its sodium salt) to treat infections caused by penicillin-resistant strains of staphylococci
+55977,nagami nagami_kumquat oval_kumquat Fortunella_margarita,shrub bearing oval-fruited kumquats
+55978,nagi Nageia_nagi,medium-sized tree having glossy lanceolate leaves; southern China to Taiwan and southern Japan
+55979,naiad,(Greek mythology) a nymph of lakes and springs and rivers and fountains
+55980,naiad water_nymph,submerged aquatic plant having narrow leaves and small flowers; of fresh or brackish water
+55981,naif,a naive or inexperienced person
+55982,nail,a former unit of length for cloth equal to 1/16 of a yard
+55983,nail,horny plate covering and protecting part of the dorsal surface of the digits
+55984,nail,a thin pointed piece of metal that is hammered into materials as a fastener
+55985,nail-tailed_wallaby nail-tailed_kangaroo,small wallabies with a horny nail on the tip of the tail
+55986,nail_hole,a hole left after a nail is removed
+55987,nail_polish nail_enamel nail_varnish,a cosmetic lacquer that dries quickly and that is applied to the nails to color them or make them shiny
+55988,nail_pulling nail_removal,a form of torture in which the fingernails or toenails are removed
+55989,nailbrush,a brush used to clean a person's fingernails
+55990,nailer,a worker who attaches something by nailing it
+55991,nailfile,a small flat file for shaping the nails
+55992,nailhead,something resembling the head of a nail that is used as an ornamental device
+55993,nailhead,flattened boss on the end of nail opposite to the point
+55994,nainsook,a soft lightweight muslin used especially for babies
+55995,naira,the basic unit of money in Nigeria
+55996,naivete naivety naiveness,lack of sophistication or worldliness
+55997,naked_eye,the eye unaided by any optical instrument that alters the power of vision or alters the apparent size or distance of objects; "it is not safe to look directly at the sun with the naked eye"
+55998,naked_mole_rat,fetal-looking colonial rodent of East Africa; neither mole nor rat; they feed on tubers and have a social structure similar to that of honeybees and termites
+55999,naked_option,a put or call option for which the seller or buyer has no underlying security position
+56000,nakedness nudity nudeness,the state of being without clothing or covering of any kind
+56001,nakedwood,any of several small to medium-sized trees of Florida and West Indies with thin scaly bark and heavy dark heartwood
+56002,nakedwood Eugenia_dicrana,tree of extreme southern Florida and West Indies having thin scaly bark and aromatic fruits and seeds and yielding hard heavy close-grained zebrawood
+56003,nalidixic_acid NegGram,antibacterial agent used especially to treat genitourinary infections
+56004,nalorphine Nalline,a narcotic antagonist (trade name Nalline) that counteracts the effects of narcotics (especially the effects of poisoning by morphine)
+56005,naloxone Narcan,a potent narcotic antagonist (trade name Narcan) especially effective with morphine
+56006,naltrexone,an oral antagonist against the action of opiates
+56007,namby-pamby,an insipid weakling who is foolishly sentimental
+56008,name,a person's reputation; "he wanted to protect his good name"
+56009,name,a language unit by which a person or thing is known; "his name really is George Washington"; "those are two names for the same thing"
+56010,name,by the sanction or authority of; "halt in the name of the law"
+56011,name epithet,a defamatory or abusive word or phrase
+56012,name figure public_figure,a well-known or notable person; "they studied all the great names in the history of France"; "she is an important figure in modern music"
+56013,name gens,family based on male descent; "he had no sons and there was no one to carry on his name"
+56014,name-dropping,the practice of casually mentioning important people in order to impress your listener; "the hard thing about name-dropping is to avoid being too obvious about it"
+56015,name_calling names,verbal abuse; a crude substitute for argument; "sticks and stones may break my bones but names can never hurt me"
+56016,name_day,the feast day of a saint whose name one bears
+56017,name_dropper,someone who pretends that famous people are his/her friends
+56018,name_tag,a tag showing the name of the person who wears it
+56019,nameko viscid_mushroom Pholiota_nameko,one of the most important fungi cultivated in Japan
+56020,nameplate,a plate bearing a name
+56021,namer,a person who gives a name or names; "the owner is usually the namer of a boat"
+56022,namesake,a person with the same name as another
+56023,naming,the verbal act of naming; "the part he failed was the naming of state capitals"
+56024,nan,your grandmother
+56025,nan naan,leavened bread baked in a clay oven in India; usually shaped like a teardrop
+56026,nandrolone Durabolin Kabolin,an androgen (trade names Durabolin or Kabolin) that is used to treat testosterone deficiency or breast cancer or osteoporosis
+56027,nankeen,a durable fabric formerly loomed by hand in China from natural cotton having a yellowish color
+56028,nanny nanny-goat she-goat,female goat
+56029,nanny nursemaid nurse,a woman who is the custodian of children
+56030,nanogram ng,one billionth (1/1,000,000,000) gram
+56031,nanometer nanometre nm millimicron micromillimeter micromillimetre,a metric unit of length equal to one billionth of a meter
+56032,nanomia,small creatures resembling pieces of fuzzy rope; each with a cluster of swimming bells serving as the head and long elastic tentacles for drawing in prey
+56033,nanophthalmos,condition in which both eyes are abnormally small but otherwise normal
+56034,nanosecond,one billionth (10^-9) of a second; one thousandth of a microsecond
+56035,nanotechnology,the branch of engineering that deals with things smaller than 100 nanometers (especially with the manipulation of individual molecules)
+56036,nanovolt,a unit of potential equal to one billionth of a volt
+56037,nap,a soft or fuzzy surface texture
+56038,nap catnap light_sleep short_sleep forty_winks snooze,sleeping for a short period of time (usually not in bed)
+56039,napalm,gasoline jelled with aluminum soaps; highly incendiary liquid used in fire bombs and flamethrowers
+56040,nape scruff nucha,the back side of the neck
+56041,naphazoline Privine Sudafed,vasoconstrictor (trade names Privine and Sudafed) used in nasal sprays to treat symptoms of nasal congestion and in eyedrops to treat eye irritation
+56042,naphtha,any of various volatile flammable liquid hydrocarbon mixtures; used chiefly as solvents
+56043,naphthalene,a white crystalline strong-smelling hydrocarbon made from coal tar or petroleum and used in organic synthesis and as a fumigant in mothballs
+56044,naphthalene_poisoning,toxic condition resulting from inhaling or ingesting naphthalene
+56045,naphthol,either of two phenols derived from naphthalene
+56046,napkin table_napkin serviette,a small piece of table linen that is used to wipe the mouth and to cover the lap in order to protect clothing
+56047,napkin_ring,a circular band used to hold a particular person's napkin
+56048,napoleon,a rectangular piece of pastry with thin flaky layers and filled with custard cream
+56049,naprapath,a therapist who practices naprapathy
+56050,naprapathy,a drugless method of treatment based on the belief that disease symptoms arise from problems with ligaments and connective tissues
+56051,naproxen Naprosyn,a nonsteroidal anti-inflammatory drug (trade name Naprosyn) used in the treatment of arthritis and musculoskeletal inflammation and moderate pain
+56052,naproxen_sodium Aleve Anaprox Aflaxen,a nonsteroidal anti-inflammatory drug (trademarks Aleve and Anaprox and Aflaxen) that fights pain and inflammation
+56053,napu Tragulus_Javanicus,chevrotain somewhat larger than the kanchil; found in India and Malaya
+56054,naranjilla Solanum_quitoense,small perennial shrub cultivated in uplands of South America for its edible bright orange fruits resembling tomatoes or oranges
+56055,narc nark narcotics_agent,a lawman concerned with narcotics violations
+56056,narcissist narcist,someone in love with themselves
+56057,narcissistic_personality,personality marked by self-love and self-absorption; unrealistic views about your own qualities and little regard for others
+56058,narcissus,bulbous plant having erect linear leaves and showy yellow or white flowers either solitary or in clusters
+56059,narco-state,an area that has been taken over and is controlled and corrupted by drug cartels and where law enforcement is effectively nonexistent; "this Mexican town has become a narco-state that ships 100 pounds of cocaine to the United States every day"
+56060,narcolepsy,a sleep disorder characterized by sudden and uncontrollable episodes of deep sleep; "he believes that narcolepsy is attributable to an inability to suppress REM sleep during waking"
+56061,narcoleptic,a person who has narcolepsy
+56062,narcoleptic,a soporific drug that produces an uncontrollable desire to sleep
+56063,narcosis,unconsciousness induced by narcotics or anesthesia
+56064,narcoterrorism,the financing of terrorist activities by participation in the drug trade
+56065,narcotic,a drug that produces numbness or stupor; often taken for pleasure or to reduce pain; extensive use can lead to addiction
+56066,narcotic_antagonist,an antagonist used to counteract the effects of narcotics (especially to counteract the depression of respiration)
+56067,nard spikenard,an aromatic ointment used in antiquity
+56068,nardoo nardo common_nardoo Marsilea_drummondii,Australian clover fern
+56069,naris,any of the openings to the nasal cavities that allow air to flow through the cavities to the pharynx
+56070,nark copper's_nark,an informer or spy working for the police
+56071,narration,(rhetoric) the second section of an oration in which the facts are set forth
+56072,narration recital yarn,the act of giving an account describing incidents or a course of events; "his narration was hesitant"
+56073,narrative narration story tale,a message that tells the particulars of an act or occurrence or course of events; presented in writing or drama or cinema or as a radio or television program; "his narrative was interesting"; "Disney's stories entertain adults as well as children"
+56074,narrator storyteller teller,someone who tells a story
+56075,narrow,a narrow strait connecting two bodies of water
+56076,narrow-leaf_penstemon Penstemon_linarioides,plant having small narrow leaves and blue-violet flowers in long open clusters; Utah and Colorado to New Mexico and Arizona
+56077,narrow-leaved_flame_flower Talinum_augustissimum,similar to Talinum aurantiacum but with narrower leaves and yellow-orange flowers; southwestern United States
+56078,narrow-leaved_water_plantain,a variety of water plantain
+56079,narrow-leaved_white-topped_aster,a variety of white-topped aster
+56080,narrow-mindedness narrowness,an inclination to criticize opposing opinions or shocking behavior
+56081,narrow_gauge,a railroad track (or its width) narrower than the standard 56.5 inches
+56082,narrow_goldenrod Solidago_spathulata,western American goldenrod with long narrow clusters of small yellow flowers
+56083,narrow_margin narrowness slimness,a small margin; "the president was not humbled by his narrow margin of victory"; "the landslide he had in the electoral college obscured the narrowness of a victory based on just 43% of the popular vote"
+56084,narrow_wale,corduroy with narrow ribs
+56085,narrowbody_aircraft narrow-body_aircraft narrow-body,a commercial airliner with a single aisle
+56086,narrowing,a decrease in width
+56087,narrowing,an instance of becoming narrow
+56088,narrowing,the act of making something narrower
+56089,narrowness,a restriction of range or scope; "the problem with achievement tests is the narrowness they impose on students"; "the attraction of the book is precisely its narrowness of focus"; "frustrated by the narrowness of people's horizons"
+56090,narrowness,the property of being narrow; having little width; "the narrowness of the road"
+56091,narthex,portico at the west end of an early Christian basilica or church
+56092,narthex,a vestibule leading to the nave of a church
+56093,narwhal narwal narwhale Monodon_monoceros,small Arctic whale the male having a long spiral ivory tusk
+56094,nasal nasal_bone os_nasale,an elongated rectangular bone that forms the bridge of the nose
+56095,nasal_canthus,the inner corner of the eye
+56096,nasal_cavity,either of the two cavities lying between the floor of the cranium and the roof of the mouth and extending from the face to the pharynx
+56097,nasal_concha,one of several turbinate bones in the nasal cavity
+56098,nasal_consonant nasal,a consonant produced through the nose with the mouth closed
+56099,nasal_decongestant,a decongestant that provides temporary relief of nasal symptoms of the common cold and rhinitis and upper respiratory infections
+56100,nasal_meatus,the passages in the nasal cavity formed by the projections of the nasal conchae
+56101,nasal_septum,a partition of bone and cartilage between the nasal cavities
+56102,nasality,a quality of the voice that is produced by nasal resonators
+56103,nasalization nasalisation,the act of nasalizing; the utterance of sounds modulated by the nasal resonators
+56104,nasion,the craniometric point at the bridge of the nose where the frontal and nasal bones of the skull meet
+56105,nasofrontal_vein vena_nasofrontalis,a vein located in the anterior medial part of the orbit; connects the superior ophthalmic with the angular vein
+56106,nasogastric_feeding,feeding consisting of delivering liquid nutrients through a tube passing through the nose and into the stomach
+56107,nasolacrimal_duct,a duct that carries tears from the lacrimal sac to the nasal cavity
+56108,nasopharynx,cavity forming the upper part of the pharynx
+56109,nasotracheal_tube,a tube inserted into the trachea through the nose and pharynx; used to deliver oxygen
+56110,nastiness,the quality of being highly unpleasant; "I flinched at the nastiness of his wound"
+56111,nasturtium,any tropical American plant of the genus Tropaeolum having pungent juice and long-spurred yellow to red flowers
+56112,nasturtium,flowers and seeds and leaves all used as flavorings
+56113,natal_plum amatungulu Carissa_macrocarpa Carissa_grandiflora,very large closely branched South African shrub having forked bright green spines and shiny leaves
+56114,nation,a federation of tribes (especially Native American tribes); "the Shawnee nation"
+56115,nation land country,the people who live in a nation or country; "a statement that sums up the nation's mood"; "the news was announced to the nation"; "the whole country worshipped him"
+56116,national subject,a person who owes allegiance to that nation; "a monarch has a duty to his subjects"
+56117,national_anthem,a song formally adopted as the anthem for a nation
+56118,national_bank,a commercial bank chartered by the federal government
+56119,national_capital,the capital city of a nation
+56120,national_censorship,censorship under civil authority of communications entering or leaving or crossing the borders of the United States or its territories or possessions
+56121,national_debt,the debt of the national government (as distinguished from the debts of individuals and businesses and political subdivisions)
+56122,national_debt_ceiling,a limit set by Congress beyond which the national debt cannot rise; periodically raised by Congress
+56123,national_flag ensign,an emblem flown as a symbol of nationality
+56124,national_income,the total value of all income in a nation (wages and profits and interest and rents and pension payments) during a given period (usually 1 yr)
+56125,national_insurance,social insurance program in Britain; based on contributions from employers and employees; provides payments to unemployed and sick and retired people as well as medical services
+56126,national_monument,memorial consisting of a structure or natural landmark of historic interest; set aside by national government for preservation and public enjoyment
+56127,national_park,a tract of land declared by the national government to be public property
+56128,national_service,compulsory service in the military during peacetime
+56129,nationalism,the aspiration for national independence felt by people under foreign domination
+56130,nationalism,the doctrine that nations should act independently (rather than collectively) to attain their goals
+56131,nationalism,the doctrine that your national culture and interests are superior to any other
+56132,nationalist,an advocate of national independence of or a strong national government
+56133,nationalist_leader,the leader of a nationalist movement
+56134,nationality,the status of belonging to a particular nation by birth or naturalization
+56135,nationality,people having common origins or traditions and often comprising a nation; "immigrants of the same nationality often seek each other out"; "such images define their sense of nationality"
+56136,nationalization nationalisation,the action of forming or becoming a nation
+56137,nationalization nationalisation,the action of rendering national in character
+56138,nationalization nationalisation communization communisation,changing something from private to state ownership or control
+56139,nationhood,the state of being a nation
+56140,native,a person born in a particular place or country; "he is a native of Brazil"
+56141,native,indigenous plants and animals
+56142,native indigen indigene aborigine aboriginal,an indigenous person who was born in a particular place; "the art of the natives of the northwest coast"; "the Canadian government scrapped plans to tax the grants to aboriginal college students"
+56143,native_beech flindosa flindosy Flindersia_australis,tall Australian timber tree yielding tough hard wood used for staves etc
+56144,native_cat Dasyurus_viverrinus,carnivorous arboreal cat-like marsupials of Australia and Tasmania
+56145,native_cranberry groundberry ground-berry cranberry_heath Astroloma_humifusum Styphelia_humifusum,small prostrate or ascending shrub having scarlet flowers and succulent fruit resembling cranberries; sometimes placed in genus Styphelia
+56146,native_language,the language that a person has spoken from earliest childhood
+56147,native_orange Capparis_mitchellii,small Australian tree bearing edible dark purple fruit
+56148,native_pear woody_pear Xylomelum_pyriforme,tree bearing pear-shaped fruit with a thick woody epicarp
+56149,native_pomegranate Capparis_arborea,small Australian tree bearing edible fruit resembling the pomegranate
+56150,native_speaker,a speaker of a particular language who has spoken that language since earliest childhood; "native speakers of French"
+56151,nativeness,the quality of belonging to or being connected with a certain place or region by virtue of birth or origin
+56152,nativism,the policy of perpetuating native cultures (in opposition to acculturation)
+56153,nativism,(philosophy) the philosophical theory that some ideas are innate
+56154,nativist,a philosopher who subscribes to nativism
+56155,natriuresis,the presence of abnormally large amounts of sodium in the urine
+56156,natrolite,a group of minerals of the zeolite family consisting of a hydrous silicate of sodium and aluminum
+56157,natterjack Bufo_calamita,common brownish-yellow short-legged toad of western Europe; runs rather than hops
+56158,natural,someone regarded as certain to succeed; "he's a natural for the job"
+56159,natural,(craps) a first roll of 7 or 11 that immediately wins the stake
+56160,natural cancel,a notation cancelling a previous sharp or flat
+56161,natural_ability,ability that is inherited
+56162,natural_childbirth,labor and childbirth without medical intervention; no drugs are given to relieve pain or aid the birth process; "natural childbirth is considered the safest for the baby"
+56163,natural_depression depression,a sunken or depressed geological formation
+56164,natural_elevation elevation,a raised or elevated geological formation
+56165,natural_family_planning,any of several methods of family planning that do not involve sterilization or contraceptive devices or drugs; coitus is avoided during the fertile time of a woman's menstrual cycle
+56166,natural_fiber natural_fibre,fiber derived from plants or animals
+56167,natural_gas gas,a fossil fuel in the gaseous state; used for cooking and heating homes
+56168,natural_glass,magma of any composition that cooled very rapidly
+56169,natural_history,the scientific study of plants or animals (more observational than experimental) usually published in popular magazines rather than in academic journals
+56170,natural_immunity innate_immunity,immunity to disease that occurs as part of an individual's natural biologic makeup
+56171,natural_language tongue,a human written or spoken language used by a community; opposed to e.g. a computer language
+56172,natural_language_processing NLP human_language_technology,the branch of information science that deals with natural language information
+56173,natural_language_processor natural_language_processing_application,an application program that deals with natural language text
+56174,natural_logarithm Napierian_logarithm,a logarithm to the base e
+56175,natural_number,the number 1 and any other number obtained by adding 1 to it repeatedly
+56176,natural_object,an object occurring naturally; not made by man
+56177,natural_order,the physical universe considered as an orderly system subject to natural (not human or supernatural) laws
+56178,natural_phenomenon,all phenomena that are not artificial
+56179,natural_process natural_action action activity,a process existing in or produced by nature (rather than by the intent of human beings); "the action of natural forces"; "volcanic activity"
+56180,natural_resin,a plant exudate
+56181,natural_resource natural_resources,resources (actual and potential) supplied by nature
+56182,natural_science,the sciences involved in the study of the physical world and its phenomena
+56183,natural_shape,a shape created by natural forces; not man-made
+56184,natural_theology,a theology that holds that knowledge of God can be acquired by human reason without the aid of divine revelation
+56185,natural_virtue,(scholasticism) one of the four virtues (prudence, justice, fortitude, and temperance) derived from nature
+56186,naturalism,(philosophy) the doctrine that the world can be understood in scientific terms without recourse to spiritual or supernatural explanations
+56187,naturalism realism,an artistic movement in 19th century France; artists and writers strove for detailed realistic and factual description
+56188,naturalist,an advocate of the doctrine that the world can be understood in scientific terms
+56189,naturalist natural_scientist,a biologist knowledgeable about natural history (especially botany and zoology)
+56190,naturalization naturalisation,the quality of being brought into conformity with nature
+56191,naturalization naturalisation,the proceeding whereby a foreigner is granted citizenship
+56192,naturalization naturalisation,the introduction of animals or plants to places where they flourish but are not indigenous
+56193,naturalization naturalisation,changing the pronunciation of a borrowed word to agree with the borrowers' phonology; "the naturalization in English of many Italian words"
+56194,naturalness,the quality of being natural or based on natural principles; "he accepted the naturalness of death"; "the spontaneous naturalness of his manner"
+56195,naturalness,the likeness of a representation to the thing represented; "engineers strove to increase the naturalness of recorded music"
+56196,nature,a causal agent creating and controlling things in the universe; "the laws of nature"; "nature has seen to it that men are stronger than women"
+56197,nature,the natural physical world including plants and animals and landscapes etc.; "they tried to preserve nature as they found it"
+56198,nature,a particular type of thing; "problems of this type are very difficult to solve"; "he's interested in trains and things of that nature"; "matters of a personal nature"
+56199,nature,the essential qualities or characteristics by which something is recognized; "it is the nature of fire to burn"; "the true nature of jealousy"
+56200,nature,the complex of emotional and intellectual attributes that determine a person's characteristic actions and reactions; "it is his nature to help others"
+56201,nature_study,the study of animals and plants in the natural world (usually at an elementary level)
+56202,nature_worship,a system of religion that deifies and worships natural forces and phenomena
+56203,naturopath,a therapist who practices naturopathy
+56204,naturopathy,a method of treating disease using food and exercise and heat to assist the natural healing process
+56205,naught,complete failure; "all my efforts led to naught"
+56206,naughtiness mischievousness badness,an attribute of mischievous children
+56207,naumachy naumachia,a naval spectacle; a mock sea battle put on by the ancient Romans
+56208,nausea,disgust so strong it makes you feel sick
+56209,nausea sickness,the state that precedes vomiting
+56210,nautch nauch nautch_dance,an intricate traditional dance in India performed by professional dancing girls
+56211,nautch_girl,a professional dancing girl in India
+56212,nautical_chain,a nautical unit of length (15 ft)
+56213,nautical_linear_unit,a linear unit of distance used in navigation
+56214,nautical_mile mile mi naut_mi international_nautical_mile air_mile,a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude
+56215,nautical_mile naut_mi mile mi geographical_mile Admiralty_mile,a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile
+56216,nautilus nuclear_submarine nuclear-powered_submarine,a submarine that is propelled by nuclear power
+56217,naval_academy,an academy for training naval officers
+56218,naval_attache,a military attache who is a commissioned or warrant officer in a navy
+56219,naval_battle,a pitched battle between naval fleets
+56220,naval_blockade,the interdiction of a nation's lines of communication at sea by the use of naval power
+56221,naval_brass Admiralty_brass Admiralty_Metal Tobin_bronze,alpha-beta brass containing tin; resistant to sea water; Admiralty Metal is a trademark
+56222,naval_campaign,an operation conducted primarily by naval forces in order to gain or extend or maintain control of the sea
+56223,naval_chart navigational_chart pilot_chart,a chart for a navigator showing the prevailing meteorological and hydrographic and navigational conditions
+56224,naval_commander,naval officer in command of a fleet of warships
+56225,naval_engineering,the branch of engineering that deals with the design and construction and operation of ships
+56226,naval_equipment,equipment for a navy
+56227,naval_gun,naval weaponry consisting of a large gun carried on a warship
+56228,naval_installation shore_station,military installation servicing naval forces
+56229,naval_missile,naval weaponry consisting of a missile carried on a warship
+56230,naval_officer,an officer in the navy
+56231,naval_radar,naval equipment consisting of a shipboard radar
+56232,naval_tactical_data_system,a shipboard system for collecting and displaying tactical data
+56233,naval_unit,a military unit that is part of a navy
+56234,naval_weaponry,weaponry for warships
+56235,nave,the central area of a church
+56236,navel navel_point,the center point or middle of something; "the Incas believed that Cuzco was the navel of the universe"
+56237,navel umbilicus bellybutton belly_button omphalos omphalus,a scar where the umbilical cord was attached; "you were not supposed to show your navel on television"; "they argued whether or not Adam had a navel"; "she had a tattoo just above her bellybutton"
+56238,navel_orange,seedless orange enclosing a small secondary fruit at the apex
+56239,navigability,the quality of being suitable for the passage of a ship or aircraft
+56240,navigation,ship traffic; "the channel will be open to navigation as soon as the ice melts"
+56241,navigation pilotage piloting,the guidance of ships or airplanes from place to place
+56242,navigation_light,light on an airplane that indicates the plane's position and orientation; red light on the left (port) wing tip and green light on the right (starboard) wing tip
+56243,navigational_instrument,an instrument used for navigating
+56244,navigational_system,a system that provides information useful in determining the position and course of a ship or aircraft
+56245,navigator,the member of an aircrew who is responsible for the aircraft's course
+56246,navigator,in earlier times, a person who explored by ship
+56247,navy naval_forces,an organization of military vessels belonging to a country and available for sea warfare
+56248,navy_base,base of operations for a naval fleet
+56249,navy_bean pea_bean white_bean,white-seeded bean; usually dried
+56250,navy_yard naval_shipyard,a military shipyard
+56251,nawab nabob,a governor in India during the Mogul empire
+56252,nay,a negative; "the nays have it"
+56253,naysayer,someone with an aggressively negative attitude
+56254,naysaying,the act of saying no to a request
+56255,nazi,derogatory term for a person who is fanatically dedicated to, or seeks to control, some activity, practice, etc.
+56256,neap_tide neap,a less than average tide occurring at the first and third quarters of the moon
+56257,near-death_experience,the experience of being close to death but surviving
+56258,near_beer,drink that resembles beer but with less than 1/2 percent alcohol
+56259,near_miss,an accidental collision that is narrowly avoided
+56260,near_thing,something that barely avoids failure or disaster
+56261,near_vision,vision for objects 2 feet or closer to the viewer
+56262,nearness closeness,the spatial property resulting from a relatively small distance; "the sudden closeness of the dock sent him into action"
+56263,nearside,the side of a vehicle nearest the kerb
+56264,neat's-foot_oil,a pale yellow oil made from the feet and legs of cattle; used as a dressing for leather
+56265,neatness spruceness,the state of being neat and smart and trim
+56266,nebbish nebbech,(Yiddish) a timid unfortunate simpleton
+56267,nebuchadnezzar,a very large wine bottle holding the equivalent of 20 normal bottles of wine; used especially for display
+56268,nebula,a medicinal liquid preparation intended for use in an atomizer
+56269,nebula,cloudiness of the urine
+56270,nebula,an immense cloud of gas (mainly hydrogen) and dust in interstellar space
+56271,nebula,(pathology) a faint cloudy spot on the cornea
+56272,nebular_hypothesis,(cosmology) the theory that the solar system evolved from a hot gaseous nebula
+56273,nebule,a small cloud
+56274,necessitarian,someone who does not believe the doctrine of free will
+56275,necessity,the condition of being essential or indispensable
+56276,necessity essential requirement requisite necessary,anything indispensable; "food and shelter are necessities of life"; "the essentials of the good life"; "allow farmers to buy their requirements under favorable conditions"; "a place where the requisites of water fuel and fodder can be obtained"
+56277,neck,a narrow elongated projecting strip of land
+56278,neck,a cut of meat from the neck of an animal
+56279,neck,a narrow part of an artifact that resembles a neck in position or form; "the banjo had a long neck"; "the bottle had a wide neck"
+56280,neck cervix,the part of an organism (human or animal) that connects the head to the rest of the body; "he admired her long graceful neck"; "the horse won by a neck"
+56281,neck neck_opening,an opening in a garment for the neck of the wearer; a part of the garment near the wearer's neck
+56282,neck_brace,a brace worn to steady the neck
+56283,neck_exercise,exercise designed to strengthen the neck muscles
+56284,neck_sweetbread throat_sweetbread,edible thymus gland of an animal
+56285,neckband,a band around the collar of a garment
+56286,neckcloth stock,an ornamental white cravat
+56287,necker,a lover who necks
+56288,neckerchief,a kerchief worn around the neck
+56289,necklace,jewelry consisting of a cord or chain (often bearing gems) worn about the neck as an ornament (especially by women)
+56290,necklace_tree,a tree of the genus Ormosia having seeds used as beads
+56291,necklet,decoration worn about the neck (fur piece or tight necklace) as an ornament
+56292,neckline,the line formed by the edge of a garment around the neck
+56293,neckpiece,an article of apparel worn about the neck
+56294,necktie tie,neckwear consisting of a long narrow piece of material worn (mostly by men) under a collar and tied in knot at the front; "he stood in front of the mirror tightening his necktie"; "he wore a vest and tie"
+56295,neckwear,articles of clothing worn about the neck
+56296,necrobiosis cell_death,(physiology) the normal degeneration and death of living cells (as in various epithelial cells)
+56297,necrobiosis_lipoidica necrobiosis_lipoidica_diabeticorum,skin disease marked by thin shiny patches (especially on the legs); often associated with diabetes mellitus
+56298,necrology,a list of people who died recently
+56299,necrolysis,disintegration and dissolution of dead tissue
+56300,necromancer,one who practices divination by conjuring up the dead
+56301,necromancy,conjuring up the dead, especially for prophesying
+56302,necrophagia necrophagy,feeding on corpses or carrion
+56303,necrophilia necrophilism necromania,an irresistible sexual attraction to dead bodies
+56304,necrosis mortification gangrene sphacelus,the localized death of living cells (as from infection or the interruption of blood supply)
+56305,necrotizing_enteritis,enteritis characterized by bloody diarrhea and severe abdominal pain
+56306,necrotizing_enterocolitis NEC,an acute inflammatory disease occurring in the intestines of premature infants; necrosis of intestinal tissue may follow
+56307,nectar,a sweet liquid secretion that is attractive to pollinators
+56308,nectar,fruit juice especially when undiluted
+56309,nectarine,a variety or mutation of the peach that has a smooth skin
+56310,nectarine nectarine_tree Prunus_persica_nectarina,variety or mutation of the peach bearing fruit with smooth skin and (usually) yellow flesh
+56311,nectary honey_gland,a gland (often a protuberance or depression) that secretes nectar
+56312,need demand,a condition requiring relief; "she satisfied his need for affection"; "God has no need of men to accomplish His work"; "there is a demand for jobs"
+56313,need want,anything that is necessary but lacking; "he had sufficient means to meet his simple needs"; "I tried to supply his wants"
+56314,neediness,the quality of needing attention and affection and reassurance to a marked degree; "he recognized her neediness but had no time to respond to it"
+56315,needle,a slender pointer for indicating the reading on the scale of a measuring instrument
+56316,needle,a sharp pointed implement (usually steel)
+56317,needle_biopsy,biopsy of deep tissue that is obtained through a hollow needle
+56318,needle_blight needle_cast leaf_cast,a disease of conifers causing the needles to fall
+56319,needle_spike_rush needle_rush slender_spike_rush hair_grass Eleocharis_acicularis,fine-leaved aquatic spike rush; popular as aerator for aquariums
+56320,needlebush needle-bush needle_bush Hakea_lissosperma,shrub with pungent rigid needle-shaped leaves and white flowers; eastern Australia
+56321,needlefish gar billfish,elongate European surface-dwelling predacious fishes with long toothed jaws; abundant in coastal waters
+56322,needlenose_pliers,small pliers with long thin jaws for fine work
+56323,needlepoint needlepoint_embroidery,embroidery consisting of allover embroidered canvas resembling tapestry
+56324,needlewood needle-wood needle_wood Hakea_leucoptera,large bushy shrub with pungent pointed leaves and creamy white flowers; central and eastern Australia
+56325,needlework needlecraft,a creation created or assembled by needle and thread
+56326,needlework needlecraft,work (such as sewing or embroidery) that is done with a needle
+56327,needleworker,someone who does work (as sewing or embroidery) with a needle
+56328,needy,needy people collectively; "they try to help the needy"
+56329,neem neem_tree nim_tree margosa arishth Azadirachta_indica Melia_Azadirachta,large semi-evergreen tree of the East Indies; trunk exudes a tenacious gum; bitter bark used as a tonic; seeds yield an aromatic oil; sometimes placed in genus Melia
+56330,neem_cake,residue after oil is pressed from neem seeds
+56331,neem_seed,seed of neem trees; source of pesticides and fertilizer and medicinal products
+56332,neencephalon neoencephalon,the part of the brain having the most recent phylogenetic origin; the cerebral cortex and related parts
+56333,nefariousness wickedness vileness ugliness,the quality of being wicked
+56334,nefazodone Serzone,an antidepressant drug (trade name Serzone)
+56335,negation,a negative statement; a statement that is a refusal or denial of some other statement
+56336,negation,the speech act of negating
+56337,negation,(logic) a proposition that is true if and only if another proposition is false
+56338,negative,a reply of denial; "he answered in the negative"
+56339,negative,a piece of photographic film showing an image with light and shade or colors reversed
+56340,negative_charge,having a surplus of electrons; having a lower electric potential
+56341,negative_chemotaxis,movement away from a chemical stimulus
+56342,negative_correlation indirect_correlation,a correlation in which large values of one variable are associated with small values of the other; the correlation coefficient is between 0 and -1
+56343,negative_feedback,feedback in opposite phase with (decreasing) the input
+56344,negative_identification,evidence proving that you are not who you say you are not; evidence establishing that you are not among a group of people already known to the system; recognition by the system leads to rejection; "a system for negative identification can prevent the use of multiple identities by a single person"
+56345,negative_magnetic_pole negative_pole south-seeking_pole,the pole of a magnet that points toward the south when the magnet is suspended freely
+56346,negative_pole,the terminal of a battery that is connected to the negative plate
+56347,negative_reinforcing_stimulus negative_reinforcer,a reinforcing stimulus whose removal serves to decrease the likelihood of the response that produced it
+56348,negative_stimulus,a stimulus with undesirable consequences
+56349,negativist,someone who refuses to do what is asked or does the opposite of what is asked
+56350,negativity negativeness,the character of the negative electric pole
+56351,negativity negativeness,an amount less than zero
+56352,negativity negativeness negativism,characterized by habitual skepticism and a disagreeable tendency to deny or oppose or resist suggestions or commands
+56353,neglect disuse,the state of something that has been unused and neglected; "the house was in a terrible state of neglect"
+56354,neglect_of_duty,(law) breach of a duty
+56355,neglecter,a person who is neglectful and gives little attention or respect to people or responsibilities; "he tried vainly to impress his neglecters"
+56356,negligee neglige peignoir wrapper housecoat,a loose dressing gown for women
+56357,negligence carelessness neglect nonperformance,failure to act with the prudence that a reasonable person would exercise under the same circumstances
+56358,negligence neglect neglectfulness,the trait of neglecting responsibilities and lacking concern
+56359,negotiable_instrument,an unconditional order or promise to pay an amount of money
+56360,negotiation,the activity or business of negotiating an agreement; coming to terms
+56361,negotiation dialogue talks,a discussion intended to produce an agreement; "the buyout negotiation lasted several days"; "they disagreed but kept an open dialogue"; "talks between Israelis and Palestinians"
+56362,negotiator negotiant treater,someone who negotiates (confers with others in order to reach a settlement)
+56363,negotiatress negotiatrix,a woman negotiator
+56364,negro_peach Sarcocephalus_latifolius Sarcocephalus_esculentus,a stout spreading or semi-climbing tropical shrub with round brownish-red warty fruit; Africa
+56365,negro_vine Vincetoxicum_hirsutum Vincetoxicum_negrum,twining vine with hairy foliage and dark purplish-brown flowers
+56366,negus,wine and hot water with sugar and lemon juice and nutmeg
+56367,neigh nicker whicker whinny,the characteristic sounds made by a horse
+56368,neighbor neighbour,a person who lives (or is located) near another
+56369,neighbor neighbour,a nearby object of the same kind; "Fort Worth is a neighbor of Dallas"; "what is the closest neighbor to the Earth?"
+56370,neighborhood,an area within a city or town that has some distinctive features (especially one forming a community); "an ethnic neighborhood"
+56371,neighborhood neighbourhood,people living near one another; "it is a friendly neighborhood"; "my neighborhood voted for Bush"
+56372,neighborliness neighbourliness good-neighborliness good-neighbourliness,a disposition to be friendly and helpful to neighbors
+56373,nekton,the aggregate of actively swimming animals in a body of water ranging from microscopic organisms to whales
+56374,nelfinavir Viracept,a protease inhibitor (trade name Viracept) used in treating HIV usually in combination with other drugs
+56375,nelson,any of several wrestling holds in which an arm is passed under the opponent's arm from behind and the hand exerts pressure on the back of the neck
+56376,nematode nematode_worm roundworm,unsegmented worms with elongated rounded body pointed at both ends; mostly free-living but some are parasitic
+56377,nemophila,any plant of the genus Nemophila
+56378,neo-Darwinism,a modern Darwinian theory that explains new species in terms of genetic mutations
+56379,neoclassicism,revival of a classical style (in art or literature or architecture or music) but from a new perspective or with a new motivation
+56380,neoclassicist,an advocate of neoclassicism
+56381,neocolonialism,control by a powerful country of its former colonies (or other less developed countries) by economic pressures
+56382,neoconservatism,an approach to politics or theology that represents a return to a traditional point of view (in contrast to more liberal or radical schools of thought of the 1960s)
+56383,neoconservative neocon,a conservative who subscribes to neoconservatism
+56384,neodymium Nd atomic_number_60,a yellow trivalent metallic element of the rare earth group; occurs in monazite and bastnasite in association with cerium and lanthanum and praseodymium
+56385,neoexpressionism,an art movement based on expressionism; developed in 1980s in Europe and United States; crudely drawn garish paintings
+56386,neoliberal,a liberal who subscribes to neoliberalism
+56387,neoliberalism,a political orientation originating in the 1960s; blends liberal political views with an emphasis on economic growth
+56388,neolith,a stone tool from the Neolithic Age
+56389,neologism neology coinage,a newly invented word or phrase
+56390,neologism neology coinage,the act of inventing a word or phrase
+56391,neologist,a lexicographer of new words and expressions
+56392,neomycin fradicin Neobiotic,an antibiotic obtained from an actinomycete and used (as a sulphate under the trade name Neobiotic) as an intestinal antiseptic in surgery
+56393,neon Ne atomic_number_10,a colorless odorless gaseous element that give a red glow in a vacuum tube; one of the six inert gasses; occurs in the air in small amounts
+56394,neon_lamp neon_induction_lamp neon_tube,a lamp consisting of a small gas-discharge tube containing neon at low pressure; luminescence is produced by the action of currents at high frequencies that are wrapped a few turns around the tube
+56395,neonatal_death,death of a liveborn infant within the first 28 days of life
+56396,neonatal_intensive_care_unit NICU,an intensive care unit designed with special equipment to care for premature or seriously ill newborn
+56397,neonatal_mortality neonatal_mortality_rate,the death rate during the first 28 days of life
+56398,neonatal_period,the first 28 days of life
+56399,neonate newborn,a baby from birth to four weeks
+56400,neonatology,that branch of pediatric medicine concerned with the newborn; the diagnosis and treatment of neonates
+56401,neopallium neocortex,the cortical part of the neencephalon
+56402,neophobia,a morbid fear of novelty
+56403,neophyte,a plant that is found in an area where it had not been recorded previously
+56404,neoplasia,the pathological process that results in the formation and growth of a tumor
+56405,neoplastic_cell,a cell that is part of tumor
+56406,neoprene,a synthetic rubber that is resistant to oils and aging; used in waterproof products
+56407,neoromanticism,an art movement based on a revival of Romanticism in art and literature
+56408,neostigmine Prostigmin,a cholinergic drug (trade name Prostigmin) used to treat some ophthalmic conditions and to treat myasthenia gravis
+56409,neoteny,an evolutionary trend to be born earlier so that development is cut off at an earlier stage and juvenile characteristics are retained in adults of the species
+56410,neotony,the state resulting when juvenile characteristics are retained by the adults of a species
+56411,nepheline nephelite,a whitish mineral consisting of sodium aluminum silicate or potassium aluminum silicate in crystalline form; used in the manufacture of ceramics and enamels
+56412,nephelinite,an igneous rock consisting of nepheline and pyroxene
+56413,nephew,a son of your brother or sister
+56414,nephology,the branch of meteorology that studies clouds and cloud formation
+56415,nephoscope,a measuring instrument that uses a grid for measuring the altitude, direction, and velocity of movement of clouds
+56416,nephralgia,pain in the kidney (usually felt in the loins)
+56417,nephrectomy,surgical removal of a kidney
+56418,nephrite,an amphibole mineral consisting of calcium magnesium silicate in monoclinic crystalline form; a source of jade that is less valuable than from jadeite; once believed to cure kidney disorders
+56419,nephritis Bright's_disease,an inflammation of the kidney
+56420,nephrocalcinosis,renal lithiasis in which calcium deposits form in the renal parenchyma and result in reduced kidney function and blood in the urine
+56421,nephrogenic_diabetes_insipidus,diabetes insipidus caused by a failure of the kidney to respond to normal levels of vasopressin
+56422,nephrolithiasis renal_lithiasis,the presence of kidney stones (calculi) in the kidney
+56423,nephrology,the branch of medicine concerned with the kidney - its development and anatomy and physiology and disorders
+56424,nephron uriniferous_tubule,any of the small tubules that are the excretory units of the vertebrate kidney
+56425,nephroptosis nephroptosia,prolapse of the kidney
+56426,nephrosclerosis nephroangiosclerosis,kidney disease that is usually associated with hypertension; sclerosis of the renal arterioles reduces blood flow that can lead to kidney failure and heart failure
+56427,nephrotic_syndrome nephrosis,a syndrome characterized by edema and large amounts of protein in the urine and usually increased blood cholesterol; usually associated with glomerulonephritis or with a complication of various systemic diseases
+56428,nephrotomy,incision into a kidney (usually to remove a kidney stone)
+56429,nephrotoxin,any toxin that affects the kidneys
+56430,nephthytis,any plant of the genus Nephthytis
+56431,nepotism,favoritism shown to relatives or close friends by those in power (as by giving them jobs)
+56432,nepotist,a powerful person who shows favoritism to relatives or close friends
+56433,neptunium Np atomic_number_93,a radioactive transuranic metallic element; found in trace amounts in uranium ores; a by-product of the production of plutonium
+56434,nerd,an intelligent but single-minded expert in a particular technical field or profession
+56435,nerita,a neritid gastropod having a short smooth or spirally ridged shell with thick usually toothed outer lip and toothed operculum
+56436,neritic_zone,the ocean waters from the low tide mark to a depth of about 100 fathoms
+56437,neritid neritid_gastropod,operculate seasnail of coastal waters with a short spiral shell
+56438,neritina,ornately marked and brightly colored snails of brackish waters
+56439,neroli_oil,an odoriferous yellow oil found in orange flowers and used in perfumery and as a flavoring
+56440,nerve nervus,any bundle of nerve fibers running to various organs and tissues of the body
+56441,nerve_cell neuron,a cell that is specialized to conduct nerve impulses
+56442,nerve_center nerve_centre,a center that provides information and control; "the nerve center of the diamond industry is in Amsterdam"
+56443,nerve_compression,harmful pressure on a nerve (especially in nerves that pass over rigid prominences); causes nerve damage and muscle weakness
+56444,nerve_ending nerve_end,the terminal structure of an axon that does not end at a synapse
+56445,nerve_entrapment,repeated and long-term nerve compression (usually in nerves near joints that are subject to inflammation or swelling)
+56446,nerve_fiber nerve_fibre,a threadlike extension of a nerve cell
+56447,nerve_gas nerve_agent,a toxic gas that is inhaled or absorbed through the skin and has harmful effects on the nervous and respiratory system
+56448,nerve_growth_factor NGF,a protein that is involved in the growth of peripheral nerve cells
+56449,nerve_impulse nervous_impulse neural_impulse impulse,the electrical discharge that travels along a nerve fiber; "they demonstrated the transmission of impulses from the cortex to the hypothalamus"
+56450,nerve_pathway tract nerve_tract pathway,a bundle of myelinated nerve fibers following a path through the brain
+56451,nerve_plexus,a network of intersecting nerves
+56452,nerves,control of your emotions; "this kind of tension is not good for my nerves"
+56453,nervous_breakdown,a severe or incapacitating emotional disorder
+56454,nervous_disorder neurological_disorder neurological_disease,a disorder of the nervous system
+56455,nervous_exhaustion nervous_prostration,an emotional disorder that leaves you exhausted and unable to work
+56456,nervous_system systema_nervosum,the sensory and control apparatus consisting of a network of nerve cells
+56457,nervous_tissue nerve_tissue,tissue composed of neurons
+56458,nervousness,a sensitive or highly strung temperament
+56459,nervousness nerves,an uneasy psychological state; "he suffered an attack of nerves"
+56460,nest,a structure in which animals lay eggs or give birth to their young
+56461,nest,a cosy or secluded retreat
+56462,nest,a gang of people (criminals or spies or terrorists) assembled in one locality; "a nest of thieves"
+56463,nest,furniture pieces made to fit close together
+56464,nest,a kind of gun emplacement; "a machine-gun nest"; "a nest of snipers"
+56465,nest_egg,device consisting of an artificial egg left in a nest to induce hens to lay their eggs in it
+56466,nester,a bird that has built (or is building) a nest
+56467,nesting_place,a place suitable for nesting
+56468,nestling baby_bird,young bird not yet fledged
+56469,net,a goal lined with netting (as in soccer or hockey)
+56470,net,game equipment consisting of a strip of netting dividing the playing area in tennis or badminton
+56471,net,a trap made of netting to catch fish or birds or insects
+56472,net network mesh meshing meshwork,an open fabric of string or rope or wire woven together at regular intervals
+56473,net_estate,the estate remaining after debts and funeral expenses and administrative expenses have been deducted from the gross estate; the estate then left to be distributed (and subject to federal and state inheritance taxes)
+56474,net_income net net_profit lucre profit profits earnings,the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)
+56475,net_melon netted_melon nutmeg_melon,the fruit of a variety of muskmelon vine; a melon with netlike markings and deep green flesh
+56476,net_melon netted_melon nutmeg_melon Cucumis_melo_reticulatus,a muskmelon vine with fruit that has a thin reticulated rind and sweet green flesh
+56477,net_sales,gross sales reduced by customer discounts, returns, freight out, and allowances
+56478,netball,a team game that resembles basketball; a soccer ball is to be thrown so that it passes through a ring on the top of a post
+56479,netting,creating nets
+56480,nettle,any of numerous plants having stinging hairs that cause skin irritation on contact (especially of the genus Urtica or family Urticaceae)
+56481,nettle-leaved_goosefoot nettleleaf_goosefoot Chenopodium_murale,European annual with coarsely dentate leaves; widespread in United States and southern Canada
+56482,network,a system of intersecting lines or channels; "a railroad network"; "a network of canals"
+56483,network,(broadcasting) a communication system consisting of a group of broadcasting stations that all transmit the same programs; "the networks compete to broadcast important sports events"
+56484,network electronic_network,(electronics) a system of interconnected electronic components or circuits
+56485,network web,an interconnected system of things or people; "he owned a network of shops"; "retirement meant dropping out of a whole network of people who had been part of my life"; "tangled in a web of cloth"
+56486,network_architecture,specification of design principles (including data formats and procedures) for creating a network configuration of data processors
+56487,network_army,a group of like-minded people united by the internet; a new kind of social or political of business group that may exert broad influence on a shared concern; "a network army of software programmers contribute free software to those who want it"
+56488,network_programming,the schedule of programs to be broadcast on a network
+56489,neural_arch vertebral_arch,a structure arising dorsally from a vertebral centrum and enclosing the spinal cord
+56490,neural_network neural_net,computer architecture in which processors are connected in a manner suggestive of connections between neurons; can learn by trial and error
+56491,neural_network neural_net,any network of neurons or nuclei that function together to perform some function in the body
+56492,neural_structure,a structure that is part of the nervous system
+56493,neural_tube,a tube of ectodermal tissue in the embryo from which the brain and spinal cord develop
+56494,neuralgia neuralgy,acute spasmodic pain along the course of one or more nerves
+56495,neurasthenia,nervous breakdown (not in technical use)
+56496,neurasthenic,a person suffering a nervous breakdown
+56497,neurectomy,surgical removal of all or part of a nerve
+56498,neurinoma,tumor (usually benign) of the sheath surrounding a nerve
+56499,neuritis,inflammation of a nerve accompanied by pain and sometimes loss of function
+56500,neuroanatomy,the anatomy of the nervous system
+56501,neurobiologist,a specialist in neurobiology
+56502,neurobiology,the branch of biology that deals with the anatomy and physiology and pathology of the nervous system
+56503,neuroblast,a cell from which a nerve cell develops
+56504,neuroblastoma,malignant tumor containing embryonic nerve cells; usually metastasizes quickly
+56505,neurochemical,any organic substance that occurs in neural activity
+56506,neurodermatitis,dermatitis in which localized areas (especially the forearms or back of the neck or outer part of the ankle) itch persistently; cause is unknown
+56507,neuroepithelioma,malignant tumor of the neuroepithelium
+56508,neuroepithelium,epithelium associated with special sense organs and containing sensory nerve endings
+56509,neuroethics,the study of ethical implications of treatments for neurological diseases
+56510,neurofibroma neurilemoma,tumor of the fibrous covering of a peripheral nerve
+56511,neurofibromatosis von_Recklinghausen's_disease,autosomal dominant disease characterized by numerous neurofibromas and by spots on the skin and often by developmental abnormalities
+56512,neurogenesis,the development of nerve tissues
+56513,neurogenic_bladder,a urinary bladder disorder caused by a lesion in the nervous system
+56514,neuroglia glia,sustentacular tissue that surrounds and supports neurons in the central nervous system; glial and neural cells together compose the tissue of the central nervous system
+56515,neurogliacyte neuroglial_cell glial_cell,a cell of the neuroglia
+56516,neurohormone,a hormone that is released by nerve impulses (e.g., norepinephrine or vasopressin)
+56517,neurolemma neurilemma,thin membranous sheath around a nerve fiber
+56518,neurolinguist,someone trained in neuroscience and linguistics who studies brain processes during language production and reception
+56519,neurolinguistics,the branch of linguistics that studies the relation between language and the structure and function of the nervous system
+56520,neurologist brain_doctor,a medical specialist in the nervous system and the disorders affecting it
+56521,neurology,the branch of medical science that deals with the nervous system
+56522,neurology clinical_neurology,(neurology) the branch of medicine that deals with the nervous system and its disorders
+56523,neuroma,any tumor derived from cells of the nervous system
+56524,neuromarketing neuro-marketing,marketing based on studies of consumers' sensorimotor, cognitive, and affective responses
+56525,neuromuscular_blocking_agent,a substance that interferes with the neural transmission between motor neurons and skeletal muscles
+56526,neuromuscular_junction myoneural_junction,the junction between a nerve fiber and the muscle it supplies
+56527,neuropathy,any pathology of the peripheral nerves
+56528,neurophysiology,the branch of neuroscience that studies the physiology of the nervous system
+56529,neuropil neuropile,the complex network of unmyelinated axones, dendrites, and glial branches that form the bulk of the central nervous system's grey matter and in which nerve cell bodies are embedded
+56530,neuroplasty,plastic surgery of the nerves
+56531,neuropsychiatry,the branch of medicine dealing with mental disorders attributable to diseases of the nervous system
+56532,neuropteron neuropteran neuropterous_insect,insect having biting mouthparts and four large membranous wings with netlike veins
+56533,neurosarcoma malignant_neuroma,a malignant neoplasm of nerve tissue and fibrous tissue and connective tissue
+56534,neuroscience,the scientific study of the nervous system
+56535,neuroscientist,a neurobiologist who specializes in the study of the brain
+56536,neurosis neuroticism psychoneurosis,a mental or personality disturbance not attributable to any known neurological or organic dysfunction
+56537,neurosurgeon brain_surgeon,someone who does surgery on the nervous system (especially the brain)
+56538,neurosurgery,any surgery that involves the nervous system (brain or spinal cord or peripheral nerves)
+56539,neurosyphilis,syphilis of the central nervous system
+56540,neurotic psychoneurotic mental_case,a person suffering from neurosis
+56541,neurotic_depression,a term used for any state of depression that is not psychotic
+56542,neurotoxin neurolysin,any toxin that affects neural tissues
+56543,neurotransmitter,a neurochemical that transmits nerve impulses across a synapse
+56544,neurotropism,an affinity for neural tissues
+56545,neuter,a gender that refers chiefly (but not exclusively) to inanimate objects (neither masculine nor feminine)
+56546,neutering fixing altering,the sterilization of an animal; "they took him to the vet for neutering"
+56547,neutral,one who does not side with any party in a war or dispute
+56548,neutral_spirits ethyl_alcohol,nonflavored alcohol of 95 percent or 190 proof used for blending with straight whiskies and in making gin and liqueurs
+56549,neutralism,a policy of neutrality or nonalignment in international affairs
+56550,neutralist,an advocate of neutrality in international affairs
+56551,neutrality,pH value of 7
+56552,neutrality,nonparticipation in a dispute or war
+56553,neutralization neutralisation,(euphemism) the removal of a threat by killing or destroying it (especially in a covert operation or military operation)
+56554,neutralization neutralisation,action intended to keep a country politically neutral or exclude it from a possible war; "the neutralization of Belgium"
+56555,neutralization neutralisation counteraction,action intended to nullify the effects of some previous action
+56556,neutralization neutralisation neutralization_reaction neutralisation_reaction,a chemical reaction in which an acid and a base interact with the formation of a salt; with strong acids and bases the essential reaction is the combination of hydrogen ions with hydroxyl ions to form water
+56557,neutralization_fire,fire that is delivered in order to render the target ineffective or unusable
+56558,neutrino,an elementary, electrically neutral particle with a very small mass
+56559,neutron,an elementary particle with 0 charge and mass about equal to a proton; enters into the structure of the atomic nucleus
+56560,neutron_bomb,atom bomb that produces lethal neutrons with less blast
+56561,neutron_flux,the rate of flow of neutrons; the number of neutrons passing through a unit area in unit time
+56562,neutron_radiation,radiation of neutrons (as by a neutron bomb)
+56563,neutron_star,a star that has collapsed under its own gravity; it is composed of neutrons
+56564,neutropenia,leukopenia in which the decrease is primarily in number of neutrophils (the chief phagocytic leukocyte)
+56565,neutrophil neutrophile,the chief phagocytic leukocyte; stains with either basic or acid dyes
+56566,neve,the upper part of a glacier (beyond the limit of perpetual snow) where the snow turns to ice
+56567,never-never_land dreamland dreamworld,a pleasing country existing only in dreams or imagination
+56568,nevirapine Viramune,a non-nucleoside reverse transcriptase inhibitor (trade name Viramune) used to treat AIDS and HIV
+56569,nevoid_elephantiasis pachyderma,thickening of the skin (usually unilateral on an extremity) caused by congenital enlargement of lymph vessel and lymph vessel obstruction
+56570,new_caledonian_pine Araucaria_columnaris,very tall evergreen of New Caledonia and the New Hebrides similar to norfolk island pine
+56571,new_criticism,literary criticism based on close analysis of the text
+56572,new_deal,a reapportioning of something
+56573,new_edition,a publication (such as a book) that has been modified or updated and offered again for sale
+56574,new_line,the operation that prepares for the next character to be printed or displayed as the first character on the next line
+56575,new_moon new_phase_of_the_moon,the time at which the Moon appears as a narrow waxing crescent
+56576,new_penny,a coin used in Great Britain since 1971 worth one hundredth of a pound
+56577,new_town,a planned urban community created in a rural or undeveloped area and designed to be self-sufficient with its own housing and education and commerce and recreation
+56578,newcomer,a recent arrival; "he's a newcomer to Boston"
+56579,newcomer fledgling fledgeling starter neophyte freshman newbie entrant,any new participant in some activity
+56580,newel,the central pillar of a circular staircase
+56581,newel_post newel,the post at the top or bottom of a flight of stairs; it supports the handrail
+56582,newlywed honeymooner,someone recently married
+56583,newmarket,a long close-fitting coat worn for riding in the 19th century
+56584,newness,the quality of being new; the opposite of oldness
+56585,news,information reported in a newspaper or news magazine; "the news of my death was greatly exaggerated"
+56586,news,informal information of any kind that is not previously known to someone; "it was news to me"
+56587,news intelligence tidings word,information about recent and important events; "they awaited news of the outcome"
+56588,news_agency press_agency wire_service press_association news_organization news_organisation,an agency to collects news reports for newspapers and distributes it electronically
+56589,news_article news_story newspaper_article,an article reporting news
+56590,news_bulletin newsflash flash newsbreak,a short news announcement concerning some on-going news story
+56591,news_event,a newsworthy event
+56592,news_item,an item in a newspaper
+56593,news_magazine,a magazine devoted to reports of current events; usually published weekly
+56594,news_photography,photography of newsworthy events
+56595,news_program news_show news,a program devoted to current events, often using interviews and commentary; "we watch the 7 o'clock news every night"
+56596,newsagent newsdealer newsvendor newsstand_operator,someone who sells newspapers
+56597,newscast,a broadcast of news or commentary on the news
+56598,newscaster,someone who broadcasts the news
+56599,newsletter newssheet,report or open letter giving informal or confidential news of interest to a special group
+56600,newspaper newsprint,cheap paper made from wood pulp and used for printing newspapers; "they used bales of newspaper every day"
+56601,newspaper paper,a daily or weekly publication on folded sheets; contains news and articles and advertisements; "he read his newspaper at breakfast"
+56602,newspaper paper,the physical object that is the product of a newspaper publisher; "when it began to rain he covered his head with a newspaper"
+56603,newspaper paper newspaper_publisher,a business firm that publishes newspapers; "Murdoch owns many newspapers"
+56604,newspaper_ad newspaper_advertisement,a printed advertisement that is published in a newspaper
+56605,newspaper_columnist,a columnist who writes for newspapers
+56606,newspaper_critic,a critic who writes a column for the newspapers
+56607,newspaper_editor,the editor of a newspaper
+56608,newspapering,journalism practiced for the newspapers
+56609,newspeak,deliberately ambiguous and contradictory language used to mislead and manipulate the public; "the welfare state brought its own newspeak"
+56610,newsreader news_reader,someone who reads out broadcast news bulletin
+56611,newsreel,a short film and commentary about current events
+56612,newsroom,the staff of a newspaper or the news department of a periodical; "every newspaper editor is criticized by the newsroom"
+56613,newsroom,an office in which news is processed by a newspaper or news agency or television or radio station
+56614,newsroom,a reading room (in a library or club) where newspapers and other periodicals can be read
+56615,newsstand,a stall where newspapers and other periodicals are sold
+56616,newswoman,a female newsperson
+56617,newsworthiness news,the quality of being sufficiently interesting to be reported in news bulletins; "the judge conceded the newsworthiness of the trial"; "he is no longer news in the fashion world"
+56618,newt triton,small usually bright-colored semiaquatic salamanders of North America and Europe and northern Asia
+56619,newton N,a unit of force equal to the force that imparts an acceleration of 1 m/sec/sec to a mass of 1 kilogram; equal to 100,000 dynes
+56620,next_friend,(law) a person who acts on behalf of an infant or disabled person
+56621,next_of_kin,the person who is (or persons who are) most closely related to a given person
+56622,nexus,a connected series or group
+56623,ngultrum,the basic unit of money in Bhutan
+56624,ngwee,100 ngwee equal 1 kwacha in Zambia
+56625,niacin nicotinic_acid,a B vitamin essential for the normal function of the nervous system and the gastrointestinal tract
+56626,nib pen_nib,the writing point of a pen
+56627,nibble,gentle biting
+56628,nibbler,a biter who takes dainty repeated bites
+56629,niblick nine_iron,an iron with considerable loft
+56630,nicad nickel-cadmium_accumulator,a rechargeable battery with a nickel cathode and a cadmium anode; often used in emergency systems because of its low discharge rate when not in use
+56631,niceness,the quality of nice
+56632,niche,a position particularly well suited to the person who occupies it; "he found his niche in the academic world"
+56633,niche ecological_niche,(ecology) the status of an organism within its environment and community (affecting its survival as a species)
+56634,nick,(British slang) a prison; "he's in the nick"
+56635,nickel,a United States coin worth one twentieth of a dollar
+56636,nickel Ni atomic_number_28,a hard malleable ductile silvery metallic element that is resistant to corrosion; used in alloys; occurs in pentlandite and smaltite and garnierite and millerite
+56637,nickel nickel_note,five dollars worth of a drug; "a nickel bag of drugs"; "a nickel deck of heroin"
+56638,nickel-base_alloy nickel_alloy,an alloy whose main constituent is nickel
+56639,nickel-iron_battery nickel-iron_accumulator,a storage battery having a nickel oxide cathode and an iron anode with an electrolyte of potassium hydroxide; each cell gives about 1.2 volts
+56640,nickel_bronze,a bronze containing up to 30% nickel
+56641,nickel_silver German_silver,a silver-white alloy containing copper and zinc and nickel
+56642,nickel_steel,an alloy steel containing nickel
+56643,nickname,a descriptive name for a place or thing; "the nickname for the U.S. Constitution is `Old Ironsides'"
+56644,nickname moniker cognomen sobriquet soubriquet byname,a familiar name for a person (often a shortened version of a person's given name); "Joe's mother would not use his nickname and always called him Joseph"; "Henry's nickname was Slim"
+56645,nicotinamide_adenine_dinucleotide NAD,a coenzyme present in most living cells and derived from the B vitamin nicotinic acid; serves as a reductant in various metabolic processes
+56646,nicotinamide_adenine_dinucleotide_phosphate NADP,a coenzyme similar to NAD and present in most living cells but serves as a reductant in different metabolic processes
+56647,nicotine,an alkaloid poison that occurs in tobacco; used in medicine and as an insecticide
+56648,nicotine_addiction,an addiction to nicotine
+56649,nicotine_poisoning,toxic condition caused by the ingestion or inhalation of large amounts of nicotine
+56650,nictitating_membrane third_eyelid,a protective fold of skin in the eyes of reptiles and birds and some mammals
+56651,nidus,a nest in which spiders or insects deposit their eggs
+56652,niece,a daughter of your brother or sister
+56653,nifedipine Procardia,calcium blocker (trade name Procardia); appears to increase the risk of recurrent heart attacks
+56654,niff pong,an unpleasant smell
+56655,nigella,any plant of the genus Nigella
+56656,niggard skinflint scrooge churl,a selfish person who is unwilling to give or spend
+56657,night,a shortening of nightfall; "they worked from morning to night"
+56658,night,a period of ignorance or backwardness or gloom
+56659,night,the period spent sleeping; "I had a restless night"
+56660,night,the time between sunset and midnight; "he watched television every night"
+56661,night,the dark part of the diurnal cycle considered a time unit; "three nights later he collapsed"
+56662,night,darkness; "it vanished into the night"
+56663,night nighttime dark,the time after sunset and before sunrise while it is dark outside
+56664,night-blooming_cereus,any of several night-blooming cacti of the genus Selenicereus
+56665,night-blooming_cereus,any of several cacti of the genus Hylocereus
+56666,night-blooming_cereus,any of several cacti of the genus Cereus
+56667,night-light,light (as a candle or small bulb) that burns in a bedroom at night (as for children or invalids)
+56668,night-line,a fishing line with baited hooks left in the water to catch fish over night
+56669,night-stop,a break in a journey for the night
+56670,night_bell,a doorbell to be used at night
+56671,night_bird,any bird associated with night: owl; nightingale; nighthawk; etc
+56672,night_court,a criminal court (in large cities) that sits at night
+56673,night_game,a game played under artificial illumination at night
+56674,night_heron night_raven,nocturnal or crepuscular herons
+56675,night_jasmine night_jessamine Cestrum_nocturnum,West Indian evergreen shrub having clusters of funnel-shaped yellow-white flowers that are fragrant by night
+56676,night_latch,doorlock operated by a knob on the inside and a key on the outside
+56677,night_letter,a cheaper form of telegram sent for delivery the next day
+56678,night_lizard,small secretive nocturnal lizard of southwestern North America and Cuba; bear live young
+56679,night_owl nighthawk nightbird,a person who likes to be active late at night
+56680,night_porter,a porter on duty during the night
+56681,night_raven,any bird that cries at night
+56682,night_rider nightrider,member of a secret mounted band in United States South after the American Civil War; committed acts of intimidation and revenge
+56683,night_school,a school that holds classes in the evenings for students who cannot attend during the day
+56684,night_shift graveyard_shift,the work shift during the night (as midnight to 8 a.m.)
+56685,night_shift graveyard_shift,workers who work during the night (as midnight to 8 a.m.)
+56686,night_snake Hypsiglena_torquata,nocturnal prowler of western United States and Mexico
+56687,night_soil,human excreta used as fertilizer
+56688,night_terror,an emotional episode (usually in young children) in which the person awakens in terror with feelings of anxiety and fear but is unable to remember any incident that might have provoked those feelings
+56689,night_vision night-sight scotopic_vision twilight_vision,the ability to see in reduced illumination (as in moonlight)
+56690,night_watchman,a watchman who works during the night
+56691,nightcap,an alcoholic drink taken at bedtime; often alcoholic
+56692,nightcap,a cloth cap worn in bed
+56693,nightcap,the final game of a double header
+56694,nightgown gown nightie night-robe nightdress,lingerie consisting of a loose dress designed to be worn in bed by women
+56695,nighthawk bullbat mosquito_hawk,mainly nocturnal North American goatsucker
+56696,nightingale Luscinia_megarhynchos,European songbird noted for its melodious nocturnal song
+56697,nightlife night_life,the entertainment available to people seeking nighttime diversion; "a futile search for intelligent nightlife"
+56698,nightlife night_life,the activity of people seeking nighttime diversion (as at the theater, a nightclub, etc.); "in the summer the nightlife shifts to the dance clubs"
+56699,nightmare,a terrifying or deeply upsetting dream
+56700,nightmare incubus,a situation resembling a terrifying dream
+56701,nightshade,any of numerous shrubs or herbs or vines of the genus Solanum; most are poisonous though many bear edible fruit
+56702,nightshirt,nightclothes worn by men
+56703,nightwear sleepwear nightclothes,garments designed to be worn in bed
+56704,nightwork,work to be done at night
+56705,nihil,(Latin) nil; nothing (as used by a sheriff after an unsuccessful effort to serve a writ); "nihil habet"
+56706,nihil_obstat,the phrase used by the official censor of the Roman Catholic Church to say that a publication has been examined and contains nothing offensive to the church
+56707,nihil_obstat,authoritative approval
+56708,nihilism,complete denial of all established authority and institutions
+56709,nihilism,a revolutionary doctrine that advocates destruction of the social system for its own sake
+56710,nihilist,someone who rejects all theories of morality or religious belief
+56711,nihilistic_delusion nihilism,the delusion that things (or everything, including the self) do not exist; a sense that everything is unreal
+56712,nilgai nylghai nylghau blue_bull Boselaphus_tragocamelus,large Indian antelope; male is blue-grey with white markings; female is brownish with no horns
+56713,nim,game in which matchsticks are arranged in rows and players alternately remove one or more of them; in some versions the object is to take the last remaining matchstick on the table and in other versions the object is to avoid taking the last remaining matchstick on the table
+56714,nimbleness mental_dexterity,intelligence as revealed by quickness and alertness of mind; "nimbleness of wit and imagination"
+56715,nimblewill nimble_Will Muhlenbergia_schreberi,slender branching American grass of some value for grazing in central United States
+56716,nimbus nimbus_cloud rain_cloud,a dark grey cloud bearing rain
+56717,nincompoop poop ninny,a stupid foolish person
+56718,nine 9 IX niner Nina_from_Carolina ennead,the cardinal number that is the sum of eight and one
+56719,nine-spot nine,one of four playing cards in a deck with nine pips on the face
+56720,ninepence,a coin worth nine pennies
+56721,ninepin skittle skittle_pin,a bowling pin of the type used in playing ninepins or (in England) skittles
+56722,ninepin_ball skittle_ball,ball used to knock down ninepins
+56723,ninepins skittles,a bowling game that is played by rolling a bowling ball down a bowling alley at a target of nine wooden pins
+56724,nineteen 19 XIX,the cardinal number that is the sum of eighteen and one
+56725,nineteenth,position 19 in a countable series of things
+56726,nineties 1890s,the decade from 1890 to 1899
+56727,nineties 1990s,the decade from 1990 to 1999
+56728,nineties mid-nineties,the time of life between 90 and 100
+56729,ninetieth,position 90 in a countable series of things
+56730,ninety 90 XC,the cardinal number that is the product of ten and nine
+56731,ninja,a member of the ninja who were trained in martial arts and hired for espionage or sabotage or assassinations; a person skilled in ninjutsu
+56732,ninja,a class of 14th century Japanese who were trained in martial arts and were hired for espionage and assassinations
+56733,ninjutsu ninjitsu,the traditional Japanese method of espionage; involves stealthy movements and the use of camouflage
+56734,ninon,a fine strong sheer silky fabric made of silk or rayon or nylon
+56735,ninth,position nine in a countable series of things; "going into the ninth they were a run ahead"
+56736,niobite columbite,a black mineral that is an ore of niobium and tantalum
+56737,niobium Nb atomic_number_41,a soft grey ductile metallic element used in alloys; occurs in niobite; formerly called columbium
+56738,nip pinch,a small sharp bite or snip
+56739,nip piquance piquancy piquantness tang tanginess zest,a tart spicy quality
+56740,nip shot,a small drink of liquor; "he poured a shot of whiskey"
+56741,nipa,made from sap of the Australasian nipa palm
+56742,nipa_palm Nipa_fruticans,any creeping semiaquatic feather palm of the genus Nipa found in mangrove swamps and tidal estuaries; its sap is used for a liquor; leaves are used for thatch; fruit has edible seeds
+56743,nipple,a flexible cap on a baby's feeding bottle or pacifier
+56744,nipple mammilla mamilla pap teat tit,the small projection of a mammary gland
+56745,nipple_shield,a rubber or plastic shield to protect the nipples of nursing women
+56746,niqaabi,an observant Muslim woman who covers her face and hands when in public or in the presence of any man outside her immediate family
+56747,niqab,a face veil covering the lower part of the face (up to the eyes) worn by observant Muslim women
+56748,nirvana enlightenment,(Hinduism and Buddhism) the beatitude that transcends the cycle of reincarnation; characterized by the extinction of desire and suffering and individual consciousness
+56749,nit,a luminance unit equal to 1 candle per square meter measured perpendicular to the rays from the source
+56750,nit,egg or young of an insect parasitic on mammals especially a sucking louse; often attached to a hair or item of clothing
+56751,nitpicker,someone who makes small and unjustified criticisms
+56752,nitrate,any compound containing the nitrate group (such as a salt or ester of nitric acid)
+56753,nitrate_bacterium nitric_bacterium,any of the nitrobacteria that oxidize nitrites into nitrates
+56754,nitrazepam,a hypnotic and sedative drug of the benzodiazepine type
+56755,nitric_acid aqua_fortis,acid used especially in the production of fertilizers and explosives and rocket fuels
+56756,nitric_bacteria nitrobacteria,soil bacteria that convert nitrites to nitrates
+56757,nitric_oxide,a poisonous red-brown gas (NO)
+56758,nitride,a compound containing nitrogen and a more electropositive element (such as phosphorus or a metal)
+56759,nitrification,the chemical process in which a nitro group is added to an organic compound (or substituted for another group in an organic compound)
+56760,nitrification,the oxidation of ammonium compounds in dead organic material into nitrates and nitrites by soil bacteria (making nitrogen available to plants)
+56761,nitrile nitril cyanide,any of a class of organic compounds containing the cyano radical -CN
+56762,nitrite,the radical -NO2 or any compound containing it (such as a salt or ester of nitrous acid)
+56763,nitrite_bacterium nitrous_bacterium,any of the nitrobacteria that oxidize ammonia into nitrites
+56764,nitro_group,the group -NO3
+56765,nitrobacterium,any of the bacteria in the soil that take part in the nitrogen cycle; they oxidize ammonium compounds into nitrites or oxidize nitrites into nitrates
+56766,nitrobenzene,a poisonous oily water-soluble liquid used as a solvent and in the manufacture of aniline
+56767,nitrocalcite,the mineral form of calcium nitrate
+56768,nitrochloromethane,gaseous form of chloropicrin used as tear gas
+56769,nitrofuran,derivative of furan used to inhibit bacterial growth
+56770,nitrofurantoin Macrodantin,derivative of nitrofuran used as an antibacterial medicine (trade name Macrodantin) effective against a broad range of Gram-positive and Gram-negative bacteria; used to treat infections of the urinary tract
+56771,nitrogen N atomic_number_7,a common nonmetallic element that is normally a colorless odorless tasteless inert diatomic gas; constitutes 78 percent of the atmosphere by volume; a constituent of all living tissues
+56772,nitrogen_balance,the balance between the amount of nitrogen taken in (to the soil or the body) and the amount given off (lost or excreted)
+56773,nitrogen_cycle,the circulation of nitrogen; nitrates from the soil are absorbed by plants which are eaten by animals that die and decay returning the nitrogen back to the soil
+56774,nitrogen_dioxide,a highly poisonous brown gas (NO2)
+56775,nitrogen_fixation,the assimilation of atmospheric nitrogen by soil bacteria and its release for plant use on the death of the bacteria
+56776,nitrogen_mustard,a toxic compound resembling mustard gas in structure; important in cancer treatment
+56777,nitrogen_narcosis,confused or stuporous state caused by high levels of dissolved nitrogen in the blood; "deep-sea divers can suffer nitrogen narcosis from breathing air under high pressure"
+56778,nitrogen_oxide,any of several oxides of nitrogen formed by the action of nitric acid on oxidizable materials; present in car exhausts
+56779,nitrogen_trichloride Agene,a yellow pungent volatile oil (trade name Agene) formerly used for bleaching and aging flour
+56780,nitrogenase,an enzyme of nitrogen-fixing microorganisms that catalyzes the conversion of nitrogen to ammonia
+56781,nitroglycerin nitroglycerine trinitroglycerin glyceryl_trinitrate Nitrospan Nitrostat,a heavy yellow poisonous oily explosive liquid obtained by nitrating glycerol; used in making explosives and medically as a vasodilator (trade names Nitrospan and Nitrostat)
+56782,nitrosobacteria nitrous_bacteria,soil bacteria that oxidize ammonia to nitrites
+56783,nitrous_acid,an unstable inorganic acid known only in solution and as nitrite salts
+56784,nitrous_oxide laughing_gas,inhalation anesthetic used as an anesthetic in dentistry and surgery
+56785,nitta_tree,any of several Old World tropical trees of the genus Parkia having heads of red or yellow flowers followed by pods usually containing edible seeds and pulp
+56786,no,a negative; "his no was loud and clear"
+56787,no-brainer,anything that requires little thought
+56788,no-go_area,an area that is dangerous or impossible to enter or to which entry is forbidden
+56789,no-goal,a nonexistent goal; "he lived without a reason progressing toward no-goal"
+56790,no-hit_game no-hitter,a game in which a pitcher allows the opposing team no hits
+56791,no-par-value_stock no-par_stock,stock with no par value specified in the corporate charter or on the stock certificate
+56792,no-parking_zone,a space where automobiles are not allowed to park
+56793,no-show,a guest who fails to notify a hotel or restaurant when canceling a reservation
+56794,no-show nonattender truant,someone who shirks duty
+56795,no-trump,a version of contract bridge in which no suit is designated as trump for the duration of the hand
+56796,no-win_situation,a situation in which a favorable outcome is impossible; you are bound to lose whatever you do
+56797,no_ball,unlawfully delivered ball in cricket; "the umpire called it a no ball"
+56798,no_fault_insurance no_fault_automobile_insurance,a system of automobile insurance where a party who is injured in an automobile accident recovers damages up to a specific amount against his own insurance company regardless of who was responsible for the accident; "the amount of litigation resulting from minor accidents is reduced by no fault insurance"
+56799,no_man's_land,land that is unowned and uninhabited (and usually undesirable)
+56800,no_man's_land,an unoccupied area between the front lines of opposing armies
+56801,nobelium No atomic_number_102,a radioactive transuranic element synthesized by bombarding curium with carbon ions; 7 isotopes are known
+56802,nobility aristocracy,a privileged class holding hereditary titles
+56803,nobility nobleness magnanimousness grandeur,the quality of elevation of mind and exaltation of character or ideals or conduct
+56804,nobility noblesse,the state of being of noble birth
+56805,noble_cane,sugarcanes representing the highest development of the species; characterized by large juicy stalks with soft rinds and high sugar content
+56806,noble_gas inert_gas argonon,any of the chemically inert gaseous elements of the helium group in the periodic table
+56807,noble_metal,any metal that is resistant to corrosion or oxidation
+56808,noblesse,members of the nobility (especially of the French nobility)
+56809,noblesse_oblige,the obligation of those of high rank to be honorable and generous (often used ironically)
+56810,noctiluca Noctiluca_miliaris,large bioluminescent marine protozoan
+56811,noctuid_moth noctuid owlet_moth,usually dull-colored medium-sized nocturnal moth; the usually smooth-bodied larvae are destructive agricultural pests
+56812,nocturia nycturia,excessive urination at night; especially common in older men
+56813,nocturnal_emission,ejaculation during sleep (usually during a dream)
+56814,nocturne notturno,a pensive lyrical piece of music (especially for the piano)
+56815,nod,a sign of assent or salutation or command
+56816,nod,the act of nodding the head
+56817,nodding_groundsel Senecio_bigelovii,plant with erect leafy stems bearing clusters of rayless yellow flower heads on bent individual stalks; moist regions of southwestern United States
+56818,nodding_onion nodding_wild_onion lady's_leek Allium_cernuum,widely distributed North American wild onion with white to rose flowers
+56819,noddle,an informal British expression for head or mind; "use your noddle"
+56820,node,a connecting point at which several lines come together
+56821,node,(physics) the point of minimum displacement in a periodic system
+56822,node,(astronomy) a point where an orbit crosses a plane
+56823,node,any bulge or swelling of an anatomical structure or part
+56824,node client guest,(computer science) any computer that is hooked up to a computer network
+56825,node knob thickening,any thickened enlargement
+56826,node leaf_node,(botany) the small swelling that is the part of a plant stem from which one or more leaves emerge
+56827,nodule,(mineralogy) a small rounded lump of mineral substance (usually harder than the surrounding rock or sediment)
+56828,nodule,a small node
+56829,nodule tubercle,small rounded wartlike protuberance on a plant
+56830,nog,a wooden block built into a masonry wall so that joinery structure can be nailed to it
+56831,nogging,rough brick masonry used to fill in the gaps in a wooden frame
+56832,noise,sound of any kind (especially unintelligible or dissonant sound); "he enjoyed the street noises"; "they heard indistinct noises of people talking"; "during the firework display that ended the gala the noise reached 98 decibels"
+56833,noise,a loud outcry of protest or complaint; "the announcement of the election recount caused a lot of noise"; "whatever it was he didn't like it and he was going to let them know by making as loud a noise as he could"
+56834,noise,incomprehensibility resulting from irrelevant information or meaningless facts or remarks; "all the noise in his speech concealed the fact that he didn't have anything to say"
+56835,noise dissonance racket,the auditory experience of sound that lacks musical quality; sound that is a disagreeable auditory experience; "modern music is just noise to me"
+56836,noise interference disturbance,electrical or acoustic activity that can disturb communication
+56837,noise_conditions,the condition of being noisy (as in a communication channel)
+56838,noise_level background_level,the amplitude level of the undesired background noise
+56839,noise_pollution sound_pollution,annoying and potentially harmful environmental noise
+56840,noiselessness,the property of making no noise
+56841,noisemaker,a device (such as a clapper or bell or horn) used to make a loud noise at a celebration
+56842,noisiness racketiness,the auditory effect characterized by loud and constant noise
+56843,noli-me-tangere,a cancerous ulcer of soft tissue and bone
+56844,nolle_prosequi nol_pros,an entry in the court record to the effect that the plaintiff or prosecutor will not proceed
+56845,nolo_contendere non_vult,(law) an answer of `no contest' by a defendant who does not admit guilt but that subjects him to conviction
+56846,noma,acute ulceration of the mucous membranes of the mouth or genitals; often seen in undernourished children
+56847,nomad,a member of a people who have no permanent home but move about according to the seasons
+56848,nombril,the center point on a shield
+56849,nomenklatura,the system of patronage in communist countries; controlled by committees in the Communist Party
+56850,nomia genus_Nomia,a genus of bee; some are important pollinators of legumes
+56851,nominal_aphasia anomic_aphasia anomia amnesic_aphasia amnestic_aphasia,inability to name objects or to recognize written or spoken names of objects
+56852,nominal_damages,(law) a trivial sum (usually $1.00) awarded as recognition that a legal injury was sustained (as for technical violations of a contract)
+56853,nominalism,(philosophy) the doctrine that the various objects labeled by the same term have nothing in common but their name
+56854,nominalist,a philosopher who has adopted the doctrine of nominalism
+56855,nominating_speech nominating_address nomination,an address (usually at a political convention) proposing the name of a candidate to run for election; "the nomination was brief and to the point"
+56856,nomination,the condition of having been proposed as a suitable candidate for appointment or election; "there was keen competition for the nomination"; "his nomination was hotly protested"
+56857,nomination,the act of officially naming a candidate; "the Republican nomination for Governor"
+56858,nominative nominative_case subject_case,the category of nouns serving as the grammatical subject of a verb
+56859,nominator,someone who proposes a candidate for appointment or election
+56860,nomogram nomograph,a graphic representation of numerical relations
+56861,non-Catholic,a religious person who is not a Catholic
+56862,non-Euclidean_geometry,(mathematics) geometry based on axioms different from Euclid's; "non-Euclidean geometries discard or replace one or more of the Euclidean axioms"
+56863,non-cash_expense,an expense (such as depreciation) that is not paid for in cash
+56864,non-dedicated_file_server,(computer science) a file server that can be used simultaneously as a workstation
+56865,non-discrimination,fairness in treating people without prejudice
+56866,non-engagement nonparticipation non-involvement,withdrawing from the activities of a group
+56867,non-flowering_plant,a plant that does not bear flowers
+56868,non-market_economy,an economy that is not a market economy
+56869,non-nucleoside_reverse_transcriptase_inhibitor NNRTI,an antiviral drug used against HIV; binds directly to reverse transcriptase and prevents RNA conversion to DNA; often used in combination with other drugs
+56870,non-resistant passive_resister,a reformer who believes in passive resistance
+56871,non-standard_speech,speech that differs from the usual accepted, easily recognizable speech of native adult members of a speech community
+56872,non-volatile_storage nonvolatile_storage,computer storage that is not lost when the power is turned off
+56873,non_prosequitur non_pros,a judgment entered in favor of the defendant when the plaintiff has not continued his action (e.g., has not appeared in court)
+56874,non_sequitur,a reply that has no relevance to what preceded it
+56875,non_sequitur,(logic) a conclusion that does not follow from the premises
+56876,nonabsorbency,the property of not being absorbent
+56877,nonacceptance turndown,the act of refusing an offer; "the turndown was polite but very firm"
+56878,nonaccomplishment nonachievement,an act that does not achieve its intended goal
+56879,nonagenarian,someone whose age is in the nineties
+56880,nonaggression,a policy of not initiating hostilities; "they signed a nonaggression pact"
+56881,nonagon,a nine-sided polygon
+56882,nonalignment nonalinement,people (or countries) who are not aligned with other people (or countries) in a pact or treaty
+56883,nonallele,genes that are not competitors at the same locus
+56884,nonappearance,failure to appear (especially as at court)
+56885,nonattendance,the failure to attend
+56886,nonbeing,the state of not being
+56887,nonbeliever,someone who refuses to believe (as in a divinity)
+56888,nonbiodegradable_pollution,pollution that accumulates in the environment and may appear in the food chain
+56889,noncallable_bond,a bond containing a provision that the holder cannot redeem the security before a specific date (usually at maturity)
+56890,noncandidate,someone who has announced they are not a candidate; especially a politician who has announced that he or she is not a candidate for some political office
+56891,nonce_word hapax_legomenon,a word with a special meaning used for a special occasion
+56892,nonchalance unconcern indifference,the trait of remaining calm and seeming not to care; a casual lack of concern
+56893,noncombatant,a member of the armed forces who does not participate in combat (e.g. a chaplain or surgeon)
+56894,noncommissioned_officer noncom enlisted_officer,a military officer appointed from enlisted personnel
+56895,nonconformism,the practice of nonconformity
+56896,nonconformist recusant,someone who refuses to conform to established standards of conduct
+56897,nonconformity,lack of harmony or correspondence
+56898,nonconformity,unorthodoxy as a consequence of not conforming to expected standards or values
+56899,nonconformity nonconformance,failure to conform to accepted standards of behavior
+56900,nonconformity nonconformism nonconformance,a lack of orthodoxy in thoughts or beliefs
+56901,nondepository_financial_institution,a financial institution that funds their investment activities from the sale of securities or insurance
+56902,nondescript,a person is not easily classified and not very interesting
+56903,nondevelopment,failure of normal development to occur
+56904,nondiscretionary_trust fixed_investment_trust,an investment trust that can buy only those securities listed when the trust was organized
+56905,nondisjunction,meiosis in which there is a failure of paired homologous chromosomes to separate; results in an abnormal number of chromosomes in the daughter cells
+56906,nondriver,a person who is not a driver
+56907,none,a canonical hour that is the ninth hour of the day counting from sunrise
+56908,none,a service in the Roman Catholic Church formerly read or chanted at 3 PM (the ninth hour counting from sunrise) but now somewhat earlier
+56909,nonequivalence,not interchangeable
+56910,nones,the fifth of the seven canonical hours; about 3 p.m.
+56911,nonevent,an anticipated event that turns out to be far less significant than was expected
+56912,nonexistence nonentity,the state of not existing
+56913,nonfat_dry_milk,dehydrated skimmed milk
+56914,nonfeasance,a failure to act when under an obligation to do so; a refusal (without sufficient excuse) to do that which it is your legal duty to do
+56915,nonfiction nonfictional_prose,prose writing that is not fictional
+56916,nongonococcal_urethritis NGU,sexually transmitted urethritis (usually caused by chlamydia)
+56917,nongovernmental_organization NGO,an organization that is not part of the local or state or federal government
+56918,nonintervention noninterference,a foreign policy of staying out of other countries' disputes
+56919,nonlinear_distortion amplitude_distortion,distortion that occurs when the output signal does not have a linear relation to the input signal
+56920,nonlinear_system,a system whose performance cannot be described by equations of the first degree
+56921,nonmember,a person who is not a member
+56922,nonmetal,a chemical element lacking typical metallic properties
+56923,nonobservance,a lack of conformity with law or custom or practice etc.
+56924,nonoccurrence,absence by virtue of not occurring
+56925,nonparametric_statistic distribution_free_statistic,a statistic computed without knowledge of the form or the parameters of the distribution from which observations are drawn
+56926,nonparametric_statistics,the branch of statistics dealing with variables without making assumptions about the form or the parameters of their distribution
+56927,nonpareil,colored beads of sugar used as a topping on e.g. candies and cookies
+56928,nonpareil,a flat disk of chocolate covered with beads of colored sugar
+56929,nonparticipant,a person who does not participate
+56930,nonpartisan nonpartizan,a person who is nonpartisan
+56931,nonpasserine_bird,chiefly arboreal birds especially of the order Coraciiformes
+56932,nonpayment default nonremittal,loss resulting from failure of a debt to be paid
+56933,nonperson unperson,a person regarded as nonexistent and having no rights; a person whose existence is systematically ignored (especially for ideological or political reasons); "the former senator is treated as a nonperson by this administration"; "George Orwell predicted that political dissidents would be treated as unpersons"
+56934,nonprofit_organization nonprofit not-for-profit,an organization chartered for other than profit-making activities
+56935,nonproliferation non-proliferation,the prevention of something increasing or spreading (especially the prevention of an increase in the number of countries possessing nuclear weapons); "they protested that the nonproliferation treaty was just a plot to maintain the hegemony of those who already had nuclear weapons"; "nuclear disarmament and nonproliferation are closely related goals"
+56936,nonreader,a student who is very slow in learning to read
+56937,nonreligious_person,a person who does not manifest devotion to a deity
+56938,nonresident,someone who does not live in a particular place; "described by an admiring nonresident as a green and pleasant land"
+56939,nonresistance,group refusal to resort to violence even in defense against violence
+56940,nonrestrictive_clause descriptive_clause,a subordinate clause that does not limit or restrict the meaning of the noun phrase it modifies
+56941,nonsense bunk nonsensicality meaninglessness hokum,a message that seems to convey no meaning
+56942,nonsingular_matrix,a square matrix whose determinant is not zero
+56943,nonsmoker,a person who does not smoke tobacco
+56944,nonsmoker nonsmoking_car,a passenger car for passengers who want to avoid tobacco smoke
+56945,nonsocial_infection cross_infection,an infection that is acquired at a hospital or other healthcare facility
+56946,nonsolid_color nonsolid_colour dithered_color dithered_colour,a color produced by a pattern of differently colored dots that together simulate the desired color
+56947,nonspecific_urethritis NSU,inflammation of the urethra of unknown cause
+56948,nonstarter,a horse that fails to run in a race for which it has been entered
+56949,nonsteroid nonsteroidal,an organic compound that does no contain a steroid
+56950,nonsteroidal_anti-inflammatory nonsteroidal_anti-inflammatory_drug NSAID,an anti-inflammatory drug that does not contain steroids; "NSAIDs inhibit the activity of both Cox-1 and Cox-2 enzymes"
+56951,nonstop_flight nonstop,a flight made without intermediate stops between source and destination; "how many nonstops are there to Dallas?"
+56952,nonthrombocytopenic_purpura,purpura resulting from a defect in the capillaries caused by bacteria or drugs
+56953,nontricyclic nontricyclic_drug nontricyclic_antidepressant nontricyclic_antidepressant_drug,a class of antidepressant drugs that are not tricyclic drugs and do not act by inhibiting MAO
+56954,nonuniformity,the quality of being diverse and interesting
+56955,nonvascular_organism,organisms without vascular tissue: e.g. algae, lichens, fungi, mosses
+56956,nonverbal_intelligence,intelligence that is manifested in the performance of tasks requiring little or no use of language
+56957,nonworker,a person who does nothing
+56958,noodle,a ribbonlike strip of pasta
+56959,nook,a sheltered and secluded place
+56960,nook_and_cranny nooks_and_crannies,something remote; "he explored every nook and cranny of science"
+56961,noon twelve_noon high_noon midday noonday noontide,the middle of the day
+56962,noose running_noose slip_noose,a loop formed in a cord or rope by means of a slipknot; it binds tighter as the cord or rope is pulled
+56963,nopal,any of several cacti of the genus Nopalea resembling prickly pears
+56964,nopal Opuntia_lindheimeri,cactus having yellow flowers and purple fruits
+56965,noradrenaline norepinephrine,a catecholamine precursor of epinephrine that is secreted by the adrenal medulla and also released at synapses
+56966,norethindrone norethindrone_acetate norethandrolone Norlutin,a synthetic progestational hormone (trade name Norlutin) used in oral contraceptives and to treat endometriosis
+56967,norethynodrel,a progesterone derivative used in oral contraceptives and in the control of menstruation and the treatment of abnormal uterine bleeding
+56968,norfolk_island_pine Araucaria_heterophylla Araucaria_excelsa,evergreen of Australia and Norfolk Island in the South Pacific
+56969,norgestrel,synthetic progestin used in oral contraceptives
+56970,noria,a water wheel with buckets attached to the rim; used to raise water for transfer to an irrigation channel
+56971,norm,a standard or model or pattern regarded as typical; "the current middle-class norm of two children per family"
+56972,normal_curve bell-shaped_curve Gaussian_curve Gaussian_shape,a symmetrical curve representing the normal distribution
+56973,normal_distribution Gaussian_distribution,a theoretical distribution with finite mean and variance
+56974,normal_fault gravity_fault common_fault,an inclined fault in which the hanging wall appears to have slipped downward relative to the footwall
+56975,normal_school teachers_college,a two-year school for training elementary teachers
+56976,normal_tension_glaucoma,glaucoma that results from damage to the optic nerve although the intraocular pressure is normal
+56977,normality,conformity with the norm
+56978,normality N,(of a solution) concentration expressed in gram equivalents of solute per liter
+56979,normality normalcy,being within certain limits that define the range of normal functioning
+56980,normality normalcy,expectedness as a consequence of being usual or regular or common
+56981,normalizer normaliser,a person who normalizes
+56982,normothermia,normal body temperature
+56983,north,the direction corresponding to the northward cardinal compass point
+56984,north,a location in the northern part of a country, region, or city
+56985,north due_north northward N,the cardinal compass point that is at 0 or 360 degrees
+56986,north magnetic_north compass_north,the direction in which a compass needle points
+56987,north-south_direction,in a direction parallel with lines of longitude
+56988,north_by_east NbE,the compass point that is one point east (clockwise) of due north
+56989,north_by_west NbW,the compass point that is one point west of due north
+56990,north_celestial_pole,the celestial pole above the northern hemisphere; near Polaris
+56991,north_island_edelweiss Leucogenes_leontopodium,perennial herb closely resembling European edelweiss; New Zealand
+56992,north_northeast nor'-nor'-east NNE,the compass point that is midway between north and northeast
+56993,north_northwest nor'-nor'-west NNW,the compass point that is midway between north and northwest
+56994,north_side,the side that is on the north
+56995,north_wind northerly norther boreas,a wind that blows from the north
+56996,northeast,the direction corresponding to the northeastward compass point
+56997,northeast,a location in the northeastern part of a country, region, or city
+56998,northeast nor'-east northeastward NE,the compass point midway between north and east; at 45 degrees
+56999,northeast_by_east NEbE,the compass point that is one point east of northeast
+57000,northeast_by_north NEbN,the compass point that is one point north of northeast
+57001,northeaster noreaster,a storm blowing from the northeast
+57002,northern_Europe,the northernmost countries of Europe
+57003,northern_Jacob's_ladder Polemonium_boreale,perennial erect herb with white flowers; circumboreal
+57004,northern_bobwhite Colinus_virginianus,a favorite game bird of eastern and central United States
+57005,northern_bog_lemming Synaptomys_borealis,of wet alpine and subalpine meadows of Canada and Alaska
+57006,northern_cricket_frog Acris_crepitans,a cricket frog of eastern and central United States
+57007,northern_dune_tansy Tanacetum_douglasii,lightly hairy rhizomatous perennial having aromatic feathery leaves and stems bearing open clusters of small buttonlike yellow flowers; sand dunes of Pacific coast of North America
+57008,northern_flying_squirrel Glaucomys_sabrinus,large flying squirrel; chiefly of Canada
+57009,northern_hemisphere,the hemisphere that is to the north of the equator
+57010,northern_holly_fern Polystichum_lonchitis,evergreen European fern widely cultivated
+57011,northern_oriole Icterus_galbula,a kind of New World oriole
+57012,northern_phalarope Lobipes_lobatus,breeds in Arctic regions of Old and New Worlds; large flocks often seen far out at sea
+57013,northern_pike Esox_lucius,voracious piscivorous pike of waters of northern hemisphere
+57014,northern_pocket_gopher Thomomys_talpoides,greyish to brown gopher of western and central United States
+57015,northern_red_oak Quercus_rubra Quercus_borealis,large symmetrical deciduous tree with rounded crown widely distributed in eastern North America; has large leaves with triangular spiny tipped lobes and coarse-grained wood less durable than that of white oaks
+57016,northern_sea_robin Prionotus_carolinus,large searobin; found from Nova Scotia to Florida
+57017,northern_shrike Lanius_borealis,a butcherbird of northern North America
+57018,northern_snakehead,a voracious freshwater fish that is native to northeastern China; can use fin to walk and can survive out of water for three days; a threat to American populations of fish
+57019,northern_whiting Menticirrhus_saxatilis,whiting of the east coast of United States; closely resembles king whiting
+57020,northernness,the property of being to the north
+57021,northland,any region lying in or toward the north
+57022,northwest,the direction corresponding to the northwestward compass point
+57023,northwest,a location in the northwestern part of a country, region, or city
+57024,northwest nor'-west northwestward NW,the compass point midway between north and west; at 315 degrees
+57025,northwest_by_north NWbN,the compass point that is one point north of northwest
+57026,northwest_by_west NWbW,the compass point that is one point west of northwest
+57027,northwest_wind northwester,a wind from the northwest
+57028,nortriptyline Pamelor,a tricyclic antidepressant drug (trade name Pamelor) used along with psychotherapy to treat dysthymic depression; may interact dangerously if taken with other drugs
+57029,nose,a small distance; "my horse lost the race by a nose"
+57030,nose,a symbol of inquisitiveness; "keep your nose out of it"
+57031,nose,the sense of smell (especially in animals); "the hound has a good nose"
+57032,nose,a natural skill; "he has a nose for good deals"
+57033,nose,the front or forward projection of a tool or weapon; "he ducked under the nose of the gun"
+57034,nose,a front that resembles a human nose (especially the front of an aircraft); "the nose of the rocket heated up on reentry"
+57035,nose olfactory_organ,the organ of smell and entrance to the respiratory tract; the prominent part of the face of man or other mammals; "he has a cold in the nose"
+57036,nose_cone ogive,front consisting of the conical head of a missile or rocket that protects the payload from heat during its passage through the atmosphere
+57037,nose_flute,a flute that is played by blowing through the nostrils (used in some Asian countries)
+57038,nose_job rhinoplasty,cosmetic surgery to improve the appearance of your nose
+57039,nose_ring,a ring worn on the nose as an ornament or on the nose of an animal to control it
+57040,nosebag feedbag,a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head
+57041,noseband nosepiece,a strap that is the part of a bridle that goes over the animal's nose
+57042,nosebleed epistaxis,bleeding from the nose
+57043,nosedive,a sudden sharp drop or rapid decline; "the stock took a nosedive"
+57044,nosepiece,armor plate that protects the nose
+57045,nosewheel,a wheel located under the nose of an airplane that is part of the plane's landing gear
+57046,nosh,(Yiddish) a snack or light meal
+57047,nosh-up,a large satisfying meal
+57048,nosher snacker,someone who eats lightly or eats snacks between meals
+57049,nosiness prying snoopiness,offensive inquisitiveness
+57050,nosology diagnostics,the branch of medical science dealing with the classification of disease
+57051,nostalgia,longing for something past
+57052,nostoc,found in moist places as rounded jellylike colonies
+57053,nostril anterior_naris,either one of the two external openings to the nasal cavity in the nose
+57054,nostrum,patent medicine whose efficacy is questionable
+57055,nota_bene NB N.B.,a Latin phrase (or its abbreviation) used to indicate that special attention should be paid to something; "the margins of his book were generously supplied with pencilled NBs"
+57056,notary notary_public,someone legally empowered to witness signatures and certify a document's validity and to take depositions
+57057,notation,the activity of representing something by a special system of marks or characters
+57058,notation notational_system,a technical system of symbols used to represent special things
+57059,notch,a V-shaped indentation; "mandibular notch"
+57060,notch,a V-shaped or U-shaped indentation carved or scratched into a surface; "there were four notches in the handle of his revolver"
+57061,notch nick snick,a small cut
+57062,note,a tone of voice that shows what the speaker is feeling; "there was a note of uncertainty in his voice"
+57063,note,a brief written record; "he made a note of the appointment"
+57064,note,a characteristic emotional quality; "it ended on a sour note"; "there was a note of gaiety in her manner"; "he detected a note of sarcasm"
+57065,note annotation notation,a comment or instruction (usually added); "his notes were appended at the end of the article"; "he added a short notation to the address on the envelope"
+57066,note musical_note tone,a notation representing the pitch and duration of a musical sound; "the singer held the note too long"
+57067,note promissory_note note_of_hand,a promise to pay a specified amount on demand or at a certain time; "I had to co-sign his note at the bank"
+57068,note short_letter line billet,a short personal letter; "drop me a line when you get there"
+57069,note_payable,a note promising to pay a certain amount of money at a certain time
+57070,note_receivable,your right in a promissory note in which the maker promises to pay a certain amount of money at a certain time
+57071,notebook,a book with blank pages for recording notes or memoranda
+57072,notebook notebook_computer,a small compact portable computer
+57073,notebook_entry,an entry in a notebook
+57074,notepad,a pad of paper for keeping notes
+57075,notepaper,writing paper intended for writing short notes or letters
+57076,nothing nil nix nada null aught cipher cypher goose_egg naught zero zilch zip zippo,a quantity of no importance; "it looked like nothing I had ever seen before"; "reduced to nil all the work we had done"; "we racked up a pathetic goose egg"; "it was all for naught"; "I didn't hear zilch about it"
+57077,nothingness void nullity nihility,the state of nonexistence
+57078,nothings,inconsequential conversation; "they traded a few nothings as they parted"
+57079,nothosaur,extinct marine reptile with longer more slender limbs than plesiosaurs and less completely modified for swimming
+57080,notice,advance notification (usually written) of the intention to withdraw from an arrangement of contract; "we received a notice to vacate the premises"; "he gave notice two months before he moved"
+57081,notice,an announcement containing information about an event; "you didn't give me enough notice"; "an obituary notice"; "a notice of sale"
+57082,notice,a short critical review; "the play received good notices"
+57083,notice,polite or favorable attention; "his hard work soon attracted the teacher's notice"
+57084,notice observation observance,the act of noticing or paying attention; "he escaped the notice of the police"
+57085,noticer,someone who takes notice; "a careful noticer of details"
+57086,noticer,someone who gives formal notice
+57087,notification notice,a request for payment; "the notification stated the grace period and the penalties for defaulting"
+57088,notion,a general inclusive concept
+57089,notion,(usually plural) small personal articles or clothing or sewing items; "buttons and needles are notions"
+57090,notion whim whimsy whimsey,an odd or fanciful or capricious idea; "the theatrical notion of disguise is associated with disaster in his stories"; "he had a whimsy about flying to the moon"; "whimsy can be humorous to someone with time to enjoy it"
+57091,notions_counter,counter where notions are sold
+57092,notochord,a flexible rodlike structure that forms the supporting axis of the body in the lowest chordates and lowest vertebrates and in embryos of higher vertebrates
+57093,notoriety ill_fame,the state of being known for some unfavorable act or quality
+57094,notornis takahe Notornis_mantelli,flightless New Zealand birds similar to gallinules
+57095,nougat,nuts or fruit pieces in a sugar paste
+57096,nougat_bar,a bar of nougat candy often dipped in chocolate
+57097,noumenon thing-in-itself,the intellectual conception of a thing as it is in itself, not as it is known through perception
+57098,noun,a content word that can be used to refer to a person, place, thing, quality, or action
+57099,noun,the word class that can serve as the subject or object of a verb, the object of a preposition, or in apposition
+57100,noun_phrase nominal_phrase nominal,a phrase that can function as the subject or object of a verb
+57101,nourishment,the act of nourishing; "her nourishment of the orphans saved many lives"
+57102,nous,common sense; "she has great social nous"
+57103,nouvelle_cuisine,a school of French cooking that uses light sauces and tries to bring out the natural flavors of foods instead of making heavy use of butter and cream
+57104,nova,a star that ejects some of its material in the form of a cloud and becomes more luminous in the process
+57105,novation,(law) the replacement of one obligation by another by mutual agreement of both parties; usually the replacement of one of the original parties to a contract with the consent of the remaining party
+57106,novel,an extended fictional work in prose; usually in the form of a story
+57107,novel,a printed and bound book that is an extended work of fiction; "his bookcases were filled with nothing but novels"; "he burned all the novels"
+57108,novelette novella,a short novel
+57109,novelist,one who writes novels
+57110,novelization novelisation,converting something into the form of a novel
+57111,novelty freshness,originality by virtue of being new and surprising
+57112,novena,a Roman Catholic devotion consisting of prayers on nine consecutive days
+57113,novice beginner tyro tiro initiate,someone new to a field or activity
+57114,novillada,a bullfight in which the bulls are less than four years old
+57115,novillero,a bullfighter who is required to fight bulls less than four years of age
+57116,novitiate novice,someone who has entered a religious order but has not taken final vows
+57117,novitiate noviciate,the period during which you are a novice (especially in a religious order)
+57118,novobiocin,an antibiotic obtained from an actinomycete and used to treat infections by Gram-positive bacteria
+57119,now,the momentary present; "Now is a good time to do it"; "it worked up to right now"
+57120,nowhere,an insignificant place; "he came out of nowhere"
+57121,nozzle nose,a projecting spout from which a fluid is discharged
+57122,nu,the 13th letter of the Greek alphabet
+57123,nuance nicety shade subtlety refinement,a subtle difference in meaning or opinion or attitude; "without understanding the finer nuances you can't enjoy the humor"; "don't argue about shades of meaning"
+57124,nub nubble,a small lump or protuberance
+57125,nub stub,a small piece; "a nub of coal"; "a stub of a pencil"
+57126,nubbin,a small nub (especially an undeveloped fruit or ear of corn)
+57127,nucellus,central part of a plant ovule; contains the embryo sac
+57128,nuclear-powered_ship,ship whose motive power comes from the energy of a nuclear reactor
+57129,nuclear_RNA nRNA,ribonucleic acid found in the nucleolus of the cell
+57130,nuclear_cataract,a cataract that affects the nucleus of the lens
+57131,nuclear_chemist radiochemist,a chemist who specializes in nuclear chemistry
+57132,nuclear_club,the nations possessing nuclear weapons
+57133,nuclear_deterrence,the military doctrine that an enemy will be deterred from using nuclear weapons as long as he can be destroyed as a consequence; "when two nations both resort to nuclear deterrence the consequence could be mutual destruction"
+57134,nuclear_engineering,the branch of engineering concerned with the design and construction and operation of nuclear reactors
+57135,nuclear_explosion atomic_explosion,the explosion of an atomic bomb
+57136,nuclear_family conjugal_family,a family consisting of parents and their children and grandparents of a marital partner
+57137,nuclear_fuel,fuel (such as uranium) that can be used in nuclear reactors as a source of electricity
+57138,nuclear_magnetic_resonance NMR proton_magnetic_resonance,resonance of protons to radiation in a magnetic field
+57139,nuclear_medicine,the branch of medicine that uses radioactive materials either to image a patient's body or to destroy diseased cells
+57140,nuclear_physicist,a physicist who specializes in nuclear physics
+57141,nuclear_physics atomic_physics nucleonics,the branch of physics that studies the internal structure of atomic nuclei
+57142,nuclear_propulsion,the use of a nuclear reactor either to produce electricity to power an engine (as in a nuclear submarine) or to directly heat a propellant (as in nuclear rockets)
+57143,nuclear_reaction,(physics) a process that alters the energy or structure or composition of atomic nuclei
+57144,nuclear_reactor reactor,(physics) any of several kinds of apparatus that maintain and control a nuclear reaction for the production of energy or artificial elements
+57145,nuclear_resonance,the resonance absorption of a gamma ray by a nucleus identical to the nucleus that emitted the gamma ray
+57146,nuclear_rocket,a rocket engine in which a nuclear reactor is used to heat a propellant
+57147,nuclear_terrorism,the use of a nuclear device by a terrorist organization to cause massive devastation or the use (or threat of use) of fissionable radioactive materials; "assaults on nuclear power plants is one form of nuclear terrorism"
+57148,nuclear_weapon atomic_weapon,a weapon of mass destruction whose explosive power derives from a nuclear reaction
+57149,nuclear_winter,a long period of darkness and extreme cold that scientists predict would follow a full-scale nuclear war; a layer of dust and smoke in the atmosphere would cover the earth and block the rays of the sun; most living organisms would perish
+57150,nuclease,general term for enzymes that catalyze the hydrolysis of nucleic acid by cleaving chains of nucleotides into smaller units
+57151,nucleic_acid,(biochemistry) any of various macromolecules composed of nucleotide chains that are vital constituents of all living cells
+57152,nucleolus nucleole,a small round body of protein in a cell nucleus; such organelles contain RNA and are involved in protein synthesis
+57153,nucleolus_organizer nucleolus_organiser nucleolar_organizer nucleolar_organiser,the particular part of a chromosome that is associated with a nucleolus after nuclear division
+57154,nucleon,a constituent (proton or neutron) of an atomic nucleus
+57155,nucleoplasm karyoplasm,the protoplasm that constitutes the nucleus of a cell
+57156,nucleoprotein,any of several substances found in the nuclei of all living cells; consists of a protein bound to a nucleic acid
+57157,nucleoside,a glycoside formed by partial hydrolysis of a nucleic acid
+57158,nucleoside_reverse_transcriptase_inhibitor NRTI,an antiviral drug used against HIV; is incorporated into the DNA of the virus and stops the building process; results in incomplete DNA that cannot create a new virus; often used in combination with other drugs
+57159,nucleosynthesis,(astronomy) the cosmic synthesis of atoms more complex than the hydrogen atom
+57160,nucleotide base,a phosphoric ester of a nucleoside; the basic structural unit of nucleic acids (DNA or RNA)
+57161,nucleus,(astronomy) the center of the head of a comet; consists of small solid particles of ice and frozen gas that vaporizes on approaching the sun to form the coma and tail
+57162,nucleus,the positively charged dense center of an atom
+57163,nucleus,any histologically identifiable mass of neural cell bodies in the brain or spinal cord
+57164,nucleus cell_nucleus karyon,a part of the cell containing DNA and RNA and responsible for growth and reproduction
+57165,nude,without clothing (especially in the phrase `in the nude'); "they swam in the nude"
+57166,nude nude_painting,a painting of a naked human figure
+57167,nude nude_person,a naked person
+57168,nude nude_sculpture nude_statue,a statue of a naked human figure
+57169,nude_dancing,erotic dancing with little or no clothing
+57170,nude_mouse,a mouse with a genetic defect that prevents them from growing hair and also prevents them from immunologically rejecting human cells and tissues; widely used in preclinical trials
+57171,nudge jog,a slight push or shake
+57172,nudger,someone who nudges; someone who gives a gentle push; "he needs a regular nudger to keep him awake"
+57173,nudism naturism,going without clothes as a social practice
+57174,nudist naturist,a person who practices nudity for reasons of health or religion
+57175,nudnik nudnick,(Yiddish) someone who is a boring pest
+57176,nugget,a solid lump of a precious metal (especially gold) as found in the earth
+57177,nuisance,(law) a broad legal concept including anything that disturbs the reasonable use of your property or endangers life and health or is offensive
+57178,null_set,a set that is empty; a set with no members
+57179,null_space,a space that contains no points; and empty space
+57180,nullah,a ravine or gully in southern Asia
+57181,nullification,the states'-rights doctrine that a state can refuse to recognize or to enforce a federal law passed by the United States Congress
+57182,nullification override,the act of nullifying; making null and void; counteracting or overriding the effect or force of something
+57183,nullifier,an advocate of nullification; someone who believes that a state can resist federal laws
+57184,nullipara,(obstetrics) a woman who has never give birth to a child
+57185,nullity,something that is null (especially an enactment that has no legal validity)
+57186,numbat banded_anteater anteater Myrmecobius_fasciatus,small Australian marsupial having long snout and strong claws for feeding on termites; nearly extinct
+57187,number,a concept of quantity involving zero and units; "every number has a unique position in the sequence"
+57188,number,a select company of people; "I hope to become one of their number before I die"
+57189,number,a numbered item in a series; "take the number 2 to the main square, then change to the number 5"
+57190,number,a numeral or string of numerals that is used for identification and may be attached to accounts, memberships, etc.; "she refused to give them her Social Security number"
+57191,number,the grammatical category for the forms of nouns and pronouns and verbs that are used depending on the number of entities involved (singular or dual or plural); "in English the subject and the verb must agree in number"
+57192,number,a clothing measurement; "a number 13 shoe"
+57193,number,an item of clothing; "she preferred the black nylon number"; "this sweater is an all-wool number"
+57194,number figure,the property possessed by a sum or total or indefinite quantity of units or individuals; "the number of parameters is small"; "the figure was about a thousand"
+57195,number_agreement,agreement in number between words in the same grammatical construction (e.g., between adjectives and the nouns they modify)
+57196,number_cruncher,someone able to perform complex and lengthy calculations
+57197,number_cruncher,a computer capable of performing a large number of mathematical operations per second
+57198,number_crunching,performing complex and lengthy numerical calculations
+57199,number_one,a reference to yourself or myself etc.; `take care of number one' means to put your own interests first
+57200,number_theorist,a mathematician specializing in number theory
+57201,numbers_pool numbers_game numbers_racket numbers,an illegal daily lottery
+57202,numbness,partial or total lack of sensation in a part of the body; a symptom of nerve damage or dysfunction
+57203,numdah numdah_rug nammad,an embroidered rug made from a coarse Indian felt
+57204,numen,a spirit believed to inhabit an object or preside over a place (especially in ancient Roman religion)
+57205,numeracy,skill with numbers and mathematics
+57206,numeral number,a symbol used to represent a number; "he learned to write the numerals before he went to school"
+57207,numeration,naming numbers
+57208,numeration_system number_system number_representation_system system_of_numeration,any notation for the representation of numbers
+57209,numerator,the dividend of a fraction
+57210,numerical_analysis,(mathematics) the branch of mathematics that studies algorithms for approximating solutions to problems in the infinitesimal calculus
+57211,numerical_quantity,a quantity expressed as a number
+57212,numerologist,a believer in numerology
+57213,numerology,the study of the supposed occult influence of numbers on human affairs
+57214,numerousness numerosity multiplicity,a large number
+57215,numismatics numismatology coin_collecting coin_collection,the collection and study of money (and coins in particular)
+57216,numismatist numismatologist coin_collector,a collector and student of money (and coins in particular)
+57217,nummulite,large fossil protozoan of the Tertiary period
+57218,nun,a woman religious
+57219,nun,the 14th letter of the Hebrew alphabet
+57220,nun's_habit,a long loose habit worn by nuns in a convent
+57221,nuncio papal_nuncio,(Roman Catholic Church) a diplomatic representative of the Pope having ambassadorial status
+57222,nunnery,the convent of a community of nuns
+57223,nurse,one skilled in caring for young children or the sick (usually under the supervision of a physician)
+57224,nurse-midwife,a registered nurse who has received special training as a midwife
+57225,nurse-patient_relation,the responsibility of a nurse to act in the best interests of the patient
+57226,nurse_log,a large decomposing tree trunk that has fallen, usually in a forest; the decaying wood provides moisture and nutrients for a variety of insects and plants
+57227,nurse_practitioner NP nurse_clinician,a registered nurse who has received special training and can perform many of the duties of a physician
+57228,nurse_shark Ginglymostoma_cirratum,small bottom-dwelling shark of warm shallow waters on both coasts of North America and South America and from southeast Asia to Australia
+57229,nurser,a person who treats something carefully; "a great nurser of pennies"
+57230,nursery baby's_room,a child's room for a baby
+57231,nursery_rhyme,a tale in rhymed verse for children
+57232,nursery_school,a small preschool for small children
+57233,nursing,the profession of a nurse
+57234,nursing,the work of caring for the sick or injured or infirm
+57235,nursing breast_feeding,nourishing at the breast
+57236,nursing_aide nurse's_aide,someone who assists a nurse in tasks that require little formal training
+57237,nursing_care,care by a skilled nurse
+57238,nursing_school school_of_nursing,a school for training nurses
+57239,nursling nurseling suckling,an infant considered in relation to its nurse
+57240,nurturance,physical and emotional care and nourishment
+57241,nut,usually large hard-shelled seed
+57242,nut,a small (usually square or hexagonal) metal block with internal screw thread to be fitted onto a bolt
+57243,nut-leaved_screw_tree Helicteres_isora,East Indian shrub often cultivated for its hairy leaves and orange-red flowers
+57244,nut_and_bolt,a fastener made by screwing a nut onto a threaded bolt
+57245,nut_bar,paste of nuts and sugar on a pastry base cut into bars
+57246,nut_bread,bread containing chopped nuts
+57247,nut_butter,ground nuts blended with a little butter
+57248,nut_pine,any of several pinons bearing edible nutlike seeds
+57249,nut_tree,tree bearing edible nuts
+57250,nutation,uncontrolled nodding
+57251,nutcracker,a compound lever used to crack nuts open
+57252,nutcracker,speckled birds that feed on nuts
+57253,nutgrass nut_grass nutsedge nut_sedge Cyperus_rotundus,a widely distributed perennial sedge having small edible nutlike tubers
+57254,nuthatch nutcracker,any of various small short-tailed songbirds with strong feet and a sharp beak that feed on small nuts and insects
+57255,nutlet,a small nut
+57256,nutmeg,hard aromatic seed of the nutmeg tree used as spice when grated or ground
+57257,nutmeg nutmeg_tree Myristica_fragrans,East Indian tree widely cultivated in the tropics for its aromatic seed; source of two spices: nutmeg and mace
+57258,nutmeg_hickory Carya_myristicaeformis Carya_myristiciformis,hickory of southern United States and Mexico having hard nutmeg-shaped nuts
+57259,nutrient,any substance (such as a chemical element or inorganic compound) that can be taken in by a green plant and used in organic synthesis
+57260,nutrient_artery arteria_nutricia,an artery that supplies the medullary cavity of the long bone
+57261,nutriment nourishment nutrition sustenance aliment alimentation victuals,a source of materials to nourish the body
+57262,nutrition,(physiology) the organic process of nourishing or being nourished; the processes by which an organism assimilates food and uses it for growth and maintenance
+57263,nutrition,the scientific study of food and drink (especially in humans)
+57264,nutritionist,a specialist in the study of nutrition
+57265,nutritiousness nutritiveness,the quality of being nourishing and promoting healthy growth
+57266,nuts_and_bolts,detailed practical information about how something works or how something can be accomplished
+57267,nutshell,the shell around the kernel of a nut
+57268,nutter wacko whacko,a person who is regarded as eccentric or mad
+57269,nux_vomica,a medicine made from the seeds of an Asiatic tree; contains strychnine and brucine; formerly used as a stimulant
+57270,nyala Tragelaphus_angasi,spiral-horned South African antelope with a fringe of white hairs along back and neck
+57271,nybble nibble,a small byte
+57272,nyctalopia night_blindness moon_blindness,inability to see clearly in dim light; due to a deficiency of vitamin A or to a retinal disorder
+57273,nyctophobia,a morbid fear of night or darkness
+57274,nylon,a thermoplastic polyamide; a family of strong resilient synthetic fibers
+57275,nylon,a synthetic fabric
+57276,nylons nylon_stocking rayons rayon_stocking silk_stocking,women's stockings made from a sheer material (nylon or rayon or silk)
+57277,nymph,(classical mythology) a minor nature goddess usually depicted as a beautiful maiden; "the ancient Greeks believed that nymphs inhabited forests and bodies of water"
+57278,nymph,a larva of an insect with incomplete metamorphosis (as the dragonfly or mayfly)
+57279,nymph houri,a voluptuously beautiful young woman
+57280,nymphalid nymphalid_butterfly brush-footed_butterfly four-footed_butterfly,medium to large butterflies found worldwide typically having brightly colored wings and much-reduced nonfunctional forelegs carried folded on the breast
+57281,nymphet,a sexually attractive young woman
+57282,nympholepsy,a frenzy of emotion; as for something unattainable
+57283,nympholept,a person seized by nympholepsy
+57284,nymphomania,abnormally intense sexual desire in women
+57285,nymphomaniac nympho,a woman with abnormal sexual desires
+57286,nystagmus,involuntary movements of the eyeballs; its presence or absence is used to diagnose a variety of neurological and visual disorders
+57287,nystatin Mycostatin Nystan,an antifungal and antibiotic (trade names Mycostatin and Nystan) discovered in New York State; derived from soil fungi actinomycetes
+57288,oak,the hard durable wood of any oak; used especially for furniture and flooring
+57289,oak oak_tree,a deciduous tree of the genus Quercus; has acorns and lobed leaves; "great oaks grow from little acorns"
+57290,oak-leaved_goosefoot oakleaf_goosefoot Chenopodium_glaucum,annual European plant with spikes of greenish flowers and leaves that are white and hairy on the underside; common as a weed in North America
+57291,oak_apple,oak gall caused by larvae of a cynipid wasp
+57292,oak_blight,a black plant louse that lives on oaks and dogwoods
+57293,oak_chestnut,a tree of the genus Castanopsis
+57294,oak_fern Gymnocarpium_dryopteris Thelypteris_dryopteris,bright blue-green fern widely distributed especially in damp acid woodlands of temperate northern hemisphere
+57295,oakum,loose hemp or jute fiber obtained by unravelling old ropes; when impregnated with tar it was used to caulk seams and pack joints in wooden ships
+57296,oar,an implement used to propel or steer a boat
+57297,oarfish king_of_the_herring ribbonfish Regalecus_glesne,thin deep-water tropical fish 20 to 30 feet long having a red dorsal fin
+57298,oarsman rower,someone who rows a boat
+57299,oarsmanship,skill as an oarsman
+57300,oarswoman,a woman oarsman
+57301,oasis,a fertile tract in a desert (where the water table approaches the surface)
+57302,oast,a kiln for drying hops
+57303,oast_house,a building containing an oast (a kiln for drying hops); usually has a conical or pyramidal roof
+57304,oat,annual grass of Europe and North Africa; grains used as food and fodder (referred to primarily in the plural: `oats')
+57305,oat,seed of the annual grass Avena sativa (spoken of primarily in the plural as `oats')
+57306,oat_cell_carcinoma small_cell_carcinoma,highly malignant carcinoma composed of small round or egg-shaped cells with little cytoplasm; lung cancers are frequently oat cell carcinomas
+57307,oatcake,thin flat unleavened cake of baked oatmeal
+57308,oath,a solemn promise, usually invoking a divine witness, regarding your future acts or behavior; "they took an oath of allegiance"
+57309,oath swearing,a commitment to tell the truth (especially in a court of law); to lie under oath is to become subject to prosecution for perjury
+57310,oatmeal burgoo,porridge made of rolled oats
+57311,oatmeal rolled_oats,meal made from rolled or ground oats
+57312,oatmeal_cookie,cookies containing rolled oats
+57313,obbligato obligato,a persistent but subordinate motif
+57314,obbligato obligato,a part of the score that must be performed without change or omission
+57315,obeah obi,(West Indies) followers of a religious system involving witchcraft and sorcery
+57316,obeah obi,a religious belief of African origin involving witchcraft and sorcery; practiced in parts of the West Indies and tropical Americas
+57317,obeche,the wood of an African obeche tree; used especially for veneering
+57318,obeche obechi arere samba Triplochiton_scleroxcylon,large west African tree having large palmately lobed leaves and axillary cymose panicles of small white flowers and one-winged seeds; yields soft white to pale yellow wood
+57319,obedience,the trait of being willing to obey
+57320,obedience obeisance,the act of obeying; dutiful or submissive behavior with respect to another person
+57321,obedience respect,behavior intended to please your parents; "their children were never very strong on obedience"; "he went to law school out of respect for his father's wishes"
+57322,obelion,the craniometric point on the sagittal suture near the lamboid suture
+57323,obelisk,a stone pillar having a rectangular cross section tapering towards a pyramidal top
+57324,obfuscation,darkening or obscuring the sight of something
+57325,obidoxime_chloride,a chloride used as an antidote for nerve gases such as sarin or VX
+57326,obiism,belief in a kind of sorcery that originated in Africa and is practiced in the West Indies
+57327,obiter_dictum dictum,an opinion voiced by a judge on a point of law not directly bearing on the case in question and therefore not binding
+57328,obiter_dictum passing_comment,an incidental remark
+57329,obituary obit necrology,a notice of someone's death; usually includes a short biography
+57330,object,(grammar) a constituent that is acted upon; "the object of the verb"
+57331,object,(computing) a discrete item that provides a description of virtually anything known to a computer; "in object-oriented programming, objects include data and define its status, its methods of operation and how it interacts with other objects"
+57332,object,the focus of cognitions or feelings; "objects of thought"; "the object of my affection"
+57333,object physical_object,a tangible and visible entity; an entity that can cast a shadow; "it was full of rackets, balls and other objects"
+57334,object-oriented_database,a database in which the operations carried out on information items (data objects) are considered part of their definition
+57335,object-oriented_database_management_system,a database management system designed to manage an object-oriented database
+57336,object-oriented_programming object-oriented_programing,creating a program that can use and support objects
+57337,object-oriented_programming_language object-oriented_programing_language,(computer science) a programming language that enables the programmer to associate a set of procedures with each type of data structure; "C++ is an object-oriented programming language that is an extension of C"
+57338,object_ball,the billiard ball that is intended to be the first ball struck by the cue ball
+57339,object_code,the machine-language output of a compiler that is ready for execution on a particular computer
+57340,object_language target_language,a computer language into which something written in another computer language is to be translated
+57341,object_language target_language,the language into which a text written in another language is to be translated
+57342,object_program target_program,a fully compiled or assembled program ready to be loaded into the computer
+57343,object_recognition,the visual perception of familiar objects
+57344,objectification,a concrete representation of an abstract idea or principle
+57345,objectification,the act of representing an abstraction as a physical thing
+57346,objection,the speech act of objecting
+57347,objection,(law) a procedure whereby a party to a suit says that a particular line of questioning or a particular witness or a piece of evidence or other matter is improper and should not be continued and asks the court to rule on its impropriety or illegality
+57348,objective objective_lens object_lens object_glass,the lens or system of lenses in a telescope or microscope that is nearest the object being viewed
+57349,objectivity objectiveness,judgment based on observable phenomena and uninfluenced by emotions or personal prejudices
+57350,objet_d'art art_object piece,a work of art of some artistic value; "this store sells only objets d'art"; "it is not known who created this piece"
+57351,oblanceolate_leaf,a leaf having a rounded apex and tapering base
+57352,oblate,a lay person dedicated to religious work or the religious life
+57353,oblateness ellipticity,the property possessed by a round shape that is flattened at the poles; "the oblateness of the planet"
+57354,oblation offering,the act of contributing to the funds of a church or charity; "oblations for aid to the poor"
+57355,obligate_anaerobe,an organism that cannot grow in the presence of oxygen
+57356,obligation,the state of being obligated to do or pay something; "he is under an obligation to finish the job"
+57357,obligation,a legal agreement specifying a payment or action and the penalty for failure to comply
+57358,obligation indebtedness,a personal relation in which one is indebted for a service or favor
+57359,obliger accommodator,someone who performs a service or does a favor
+57360,oblique oblique_case,any grammatical case other than the nominative
+57361,oblique_angle,an angle that is not a right angle or a multiple of a right angle
+57362,oblique_bandage,a bandage in which successive turns proceed obliquely up or down a limb
+57363,oblique_triangle,a triangle that contains no right angle
+57364,oblique_vein_of_the_left_atrium vena_obliqua_atrii_sinistri,a tributary of the coronary sinus; on the posterior wall of the left atrium
+57365,obliqueness,the property of being neither parallel nor perpendicular, but at a slanting angle
+57366,obliterator,an eliminator that does away with all traces
+57367,oblivion limbo,the state of being disregarded or forgotten
+57368,obliviousness oblivion,total forgetfulness; "he sought the great oblivion of sleep"
+57369,oblong,a plane figure that deviates from a square or circle due to elongation
+57370,oblong_leaf,a simple leaf that is rounded at each end with parallel sides
+57371,obloquy opprobrium,state of disgrace resulting from public abuse
+57372,oboe hautboy hautbois,a slender double-reed instrument; a woodwind with a conical bore and a double-reed mouthpiece
+57373,oboe_d'amore,an oboe pitched a minor third lower than the ordinary oboe; used to perform baroque music
+57374,oboe_da_caccia,an alto oboe; precursor of the English horn
+57375,oboist,a musician who plays the oboe
+57376,obolus,a Greek unit of weight equal to one tenth of a gram
+57377,obovate_leaf,an egg-shaped leaf with the narrower end at the base
+57378,obscenity,an obscene act
+57379,obscenity lewdness bawdiness salaciousness salacity,the trait of behaving in an obscene manner
+57380,obscenity smut vulgarism filth dirty_word,an offensive or indecent word or phrase
+57381,obscurantism,a policy of opposition to enlightenment or the spread of knowledge
+57382,obscurantism,a deliberate act intended to make something obscure
+57383,obscurantist,a person who is deliberately vague
+57384,obscureness obscurity abstruseness reconditeness,the quality of being unclear or abstruse and hard to understand
+57385,obscurity,an obscure and unimportant standing; not well known; "he worked in obscurity for many years"
+57386,obscurity obscureness,the state of being indistinct or indefinite for lack of adequate illumination
+57387,obsequiousness servility subservience,abject or cringing submissiveness
+57388,observation,facts learned by observing; "he reported his observations to the mayor"
+57389,observation,the act of making and recording a measurement
+57390,observation observance watching,the act of observing; taking a patient look
+57391,observation reflection reflexion,a remark expressing careful consideration
+57392,observation_dome,lookout consisting of a dome-shaped observatory
+57393,observation_station,a station set up for making observations of something
+57394,observatory,a building designed and equipped to observe astronomical phenomena
+57395,observed_fire,fire for which the point of impact (the burst) can be seen by an observer; fire can be adjusted on the basis of the observations
+57396,observer commentator,an expert who observes and comments on something
+57397,observer's_meridian,a meridian that passes through the observer's zenith
+57398,obsession fixation,an unhealthy and compulsive preoccupation with something or someone
+57399,obsessive,a person who has obsessions
+57400,obsessive-compulsive,a person with obsessive-compulsive characteristics
+57401,obsessive-compulsive_disorder,an anxiety disorder characterized by recurrent and persistent thoughts and feelings and repetitive, ritualized behaviors
+57402,obsessive-compulsive_personality,personality characterized by a strong need to repeat certain acts or rituals
+57403,obsessiveness obsessivity,extreme compulsiveness
+57404,obsidian,acid or granitic glass formed by the rapid cooling of lava without crystallization; usually dark, but transparent in thin pieces
+57405,obsolescence,the process of becoming obsolete; falling into disuse or becoming out of date; "a policy of planned obsolescence"
+57406,obsoleteness superannuation,the property of being out of date and not current
+57407,obstacle,an obstruction that stands in the way (and must be removed or surmounted or circumvented)
+57408,obstacle obstruction,something immaterial that stands in the way and must be circumvented or surmounted; "lack of imagination is an obstacle to one's advancement"; "the poverty of a district is an obstacle to good education"; "the filibuster was a major obstruction to the success of their plan"
+57409,obstacle_race,a race in which competitors must negotiate obstacles
+57410,obstetrical_toad midwife_toad Alytes_obstetricans,European toad whose male carries the fertilized eggs wrapped around its hind legs until they hatch
+57411,obstetrician accoucheur,a physician specializing in obstetrics
+57412,obstetrics OB tocology midwifery,the branch of medicine dealing with childbirth and care of the mother
+57413,obstipation,severe constipation resulting from an obstruction in the intestines
+57414,obstreperousness,noisy defiance
+57415,obstruction,the act of obstructing; "obstruction of justice"
+57416,obstruction,getting in someone's way
+57417,obstruction blockage,the physical condition of blocking or filling a passage with an obstruction
+57418,obstruction obstructor obstructer impediment impedimenta,any structure that makes progress difficult
+57419,obstruction_of_justice,impeding those who seek justice in a court (as by trying to influence or intimidate any juror or witness or officer of the court); can result in a finding of contempt of court
+57420,obstructionism,deliberate interference
+57421,obstructionist obstructor obstructer resister thwarter,someone who systematically obstructs some action that others want to take
+57422,obstructive_shock,shock caused by obstruction of blood flow
+57423,obstruent,a consonant that is produced with a partial or complete blockage of the airflow from the lungs through the nose or mouth
+57424,obtainment obtention,the act of obtaining
+57425,obtrusiveness,an unwelcome conspicuousness
+57426,obturator,a prosthesis used to close an opening (as to close an opening of the hard palate in cases of cleft palate)
+57427,obturator_vein vena_obturatoria,a vein formed by the union of tributaries that drain the hip joints and thigh muscles; empties into the internal iliac vein
+57428,obtuse_angle,an angle between 90 and 180 degrees
+57429,obtuse_leaf,a simple leaf having a rounded or blunt tip
+57430,obtuse_triangle obtuse-angled_triangle,a triangle that contains an obtuse interior angle
+57431,obtuseness,the quality of lacking a sharp edge or point
+57432,obverse,the more conspicuous of two alternatives or cases or sides; "the obverse of this issue"
+57433,obverse,the side of a coin or medal bearing the principal stamp or design
+57434,obviation forestalling preclusion,the act of preventing something by anticipating and disposing of it effectively
+57435,obviousness noticeability noticeableness patency,the property of being easy to see and understand
+57436,oca oka Oxalis_tuberosa Oxalis_crenata,South American wood sorrel cultivated for its edible tubers
+57437,ocarina sweet_potato,egg-shaped terra cotta wind instrument with a mouthpiece and finger holes
+57438,occasion,the time of a particular event; "on the occasion of his 60th birthday"
+57439,occasion,an opportunity to do something; "there was never an occasion for her to demonstrate her skill"
+57440,occasion,reason; "there was no occasion for complaint"
+57441,occasions,something you have to do; "he minded his own specialized occasions"
+57442,occidentalism,the quality or customs or mannerisms characteristic of Western civilizations
+57443,occipital_bone,a saucer-shaped membrane bone that forms the back of the skull
+57444,occipital_gyrus,any of the convolutions of the outer surface of the occipital lobe of the cerebrum
+57445,occipital_lobe occipital_cortex,that part of the cerebral cortex in either hemisphere of the brain lying in the back of the head
+57446,occipital_protuberance,prominence on the outer surface of the occipital bone
+57447,occipital_vein vena_occipitalis,a vein that drains the occipital region
+57448,occipitomastoid_suture,the suture between the occipital and the temporal bones; a continuation of the lamboid suture
+57449,occiput,back part of the head or skull
+57450,occluded_front occlusion,(meteorology) a composite front when colder air surrounds a mass of warm air and forces it aloft
+57451,occlusion,closure or blockage (as of a blood vessel)
+57452,occlusion,(dentistry) the normal spatial relation of the teeth when the jaws are closed
+57453,occult occult_arts,supernatural practices and techniques; "he is a student of the occult"
+57454,occultism,the study of the supernatural
+57455,occultism,a belief in supernatural powers and the possibility of bringing them under human control
+57456,occultist,a believer in occultism; someone versed in the occult arts
+57457,occupancy tenancy,an act of being a tenant or occupant
+57458,occupancy_rate,the percentage of all rental units (as in hotels) are occupied or rented at a given time
+57459,occupation,the period of time during which a place or position or nation is occupied; "during the German occupation of Paris"
+57460,occupation,any activity that occupies a person's attention; "he missed the bell in his occupation with the computer game"
+57461,occupation business job line_of_work line,the principal activity in your life that you do to earn money; "he's not in my line of business"
+57462,occupation military_control,the control of a country by military forces of a foreign power
+57463,occupation occupancy moving_in,the act of occupying or taking possession of a building; "occupation of a building without a certificate of occupancy is illegal"
+57464,occupation_license occupation_licence,a license to pursue a particular occupation
+57465,occupational_disease industrial_disease,disease or disability resulting from conditions of employment (usually from long exposure to a noxious substance or from continuous repetition of certain acts)
+57466,occupational_group vocation,a body of people doing the same kind of work
+57467,occupational_hazard,any condition of a job that can result in illness or injury
+57468,occupational_safety_and_health_act federal_job_safety_law,a law passed by the United States Congress that created the Occupational Safety and Health Administration to prevent employees from being injured or contracting diseases in the course of their employment
+57469,occupational_therapy,therapy based on engagement in meaningful activities of daily life, especially to enable or encourage participation in such activities in spite of impairments or limitations in physical or mental functions
+57470,occupier,a member of a military force who is residing in a conquered foreign country
+57471,occurrence,an instance of something occurring; "a disease of frequent occurrence"; "the occurrence (or presence) of life on other planets"
+57472,ocean,a large body of water constituting a principal part of the hydrosphere
+57473,ocean sea,anything apparently limitless in quantity or volume
+57474,ocean_current,the steady flow of surface ocean water in a prevailing direction
+57475,ocean_floor sea_floor ocean_bottom seabed sea_bottom Davy_Jones's_locker Davy_Jones,the bottom of a sea or ocean
+57476,ocean_pout Macrozoarces_americanus,common along northeastern coast of North America
+57477,ocean_sunfish sunfish mola headfish,among the largest bony fish; pelagic fish having an oval compressed body with high dorsal and anal fins and caudal fin reduced to a rudder-like lobe; worldwide in warm waters
+57478,ocean_trip voyage,an act of traveling by water
+57479,oceanfront,land bordering an ocean
+57480,oceanographer,a scientist who studies physical and biological aspects of the seas
+57481,oceanography oceanology,the branch of science dealing with physical and biological aspects of the oceans
+57482,ocellated_turkey Agriocharis_ocellata,wild turkey of Central America and northern South America
+57483,ocelot panther_cat Felis_pardalis,nocturnal wildcat of Central America and South America having a dark-spotted buff-brown coat
+57484,ocher ochre,any of various earths containing silica and alumina and ferric oxide; used as a pigment
+57485,ocher ochre,a moderate yellow-orange to orange color
+57486,ochronosis,an accumulation of dark pigment in cartilage and other connective tissue; usually a symptom of alkaptonuria or phenol poisoning
+57487,oconee_bells Shortia_galacifolia,plant of southeastern United States having solitary white funnel-shaped flowers flushed with pink and large glossy green leaves that turn bronze-red in fall
+57488,ocotillo coachwhip Jacob's_staff vine_cactus Fouquieria_splendens,desert shrub of southwestern United States and Mexico having slender naked spiny branches that after the rainy season put forth foliage and clusters of red flowers
+57489,octagon,an eight-sided polygon
+57490,octahedron,any polyhedron having eight plane faces
+57491,octal_digit,a digit from 0 to 7 in octal notation
+57492,octal_notation,any mathematical notation that uses 8 different characters (usually the digits 0 to 7)
+57493,octal_numeration_system octal_number_system,a positional system of numeration that uses octal digits and a radix of eight
+57494,octameter,a verse line having eight metrical feet
+57495,octane,any isomeric saturated hydrocarbon found in petroleum and used as a fuel and solvent
+57496,octane_number octane_rating,a measure of the antiknock properties of gasoline
+57497,octant,a measuring instrument for measuring angles to a celestial body; similar to a sextant but with 45 degree calibration
+57498,octave,a feast day and the seven days following it
+57499,octave,a rhythmic group of eight lines of verse
+57500,octave musical_octave,a musical interval of eight tones
+57501,octavo eightvo 8vo,the size of a book whose pages are made by folding a sheet of paper three times to form eight leaves
+57502,octet octette,eight performers or singers who perform together
+57503,octet octette,a set of eight similar things considered as a unit
+57504,octet octette,a musical composition written for eight performers
+57505,octet octette eightsome,eight people considered as a unit
+57506,octillion,the number that is represented as a one followed by 27 zeros
+57507,octogenarian,someone whose age is in the eighties
+57508,octopod,a cephalopod with eight arms but lacking an internal shell
+57509,octopus,tentacles of octopus prepared as food
+57510,octopus devilfish,bottom-living cephalopod having a soft oval body with eight long tentacles
+57511,octoroon,an offspring of a quadroon and a white parent; a person who is one-eighth black
+57512,octosyllable,a verse line having eight syllables or a poem of octosyllabic lines
+57513,octroi,a tax on various goods brought into a town
+57514,ocular_muscle eye_muscle,one of the small muscles of the eye that serve to rotate the eyeball
+57515,oculism,the craft of an oculist
+57516,oculomotor oculomotor_nerve nervus_oculomotorius third_cranial_nerve,supplies extrinsic muscles of the eye
+57517,oculopharyngeal_muscular_dystrophy,a form of muscular dystrophy that usually begins between early adulthood and middle age and first affects muscles of the eyelid and throat; progresses slowly with swallowing problems common as the disease progresses; inheritance is autosomal dominant
+57518,oculus_dexter OD,the right eye
+57519,oculus_sinister OS,the left eye
+57520,odalisque,a woman slave in a harem
+57521,odd-leg_caliper,caliper having the points on its legs both curve in the same direction
+57522,odd-pinnate_leaf,a pinnate leaf with a single leaflet at the apex
+57523,odd-toed_ungulate perissodactyl perissodactyl_mammal,placental mammals having hooves with an odd number of toes on each foot
+57524,oddity oddness,eccentricity that is not easily explained
+57525,oddity queerness quirk quirkiness crotchet,a strange attitude or habit
+57526,oddness,the parity of odd numbers (not divisible by two)
+57527,odds,the likelihood of a thing occurring rather than not occurring
+57528,odds betting_odds,the ratio by which one better's wager is greater than that of another; "he offered odds of two to one"
+57529,odds-maker handicapper,someone who sets the betting odds based on calculations of the outcome of a contest (especially a horse race)
+57530,odds_and_ends oddments melange farrago ragbag mishmash mingle-mangle hodgepodge hotchpotch gallimaufry omnium-gatherum,a motley assortment of things
+57531,ode,a lyric poem with complex stanza forms
+57532,odist,a poet who writes odes
+57533,odium,state of disgrace resulting from detestable behavior
+57534,odometer hodometer mileometer milometer,a meter that shows mileage traversed
+57535,odonate,large primitive predatory aquatic insect having two pairs of membranous wings
+57536,odontoglossum,any of numerous and diverse orchids of the genus Odontoglossum having racemes of few to many showy usually large flowers in many colors
+57537,odontoid_process,a toothlike process at the back of 2nd vertebra of the neck
+57538,odynophagia,severe pain on swallowing due to a disorder of the esophagus
+57539,odyssey,a long wandering and eventful journey
+57540,oeil_de_boeuf,a circular or oval window; 17th or 18th century French architecture
+57541,oenomel,wine mixed with honey
+57542,oersted,the magnetic field strength 1 cm from a unit magnetic pole
+57543,oeuvre work body_of_work,the total output of a writer or artist (or a substantial part of it); "he studied the entire Wagnerian oeuvre"; "Picasso's work can be divided into periods"
+57544,off-Broadway,low-budget theaters located outside the Broadway area in Manhattan
+57545,off-day,a day when things go poorly; "I guess this is one of my off-days"
+57546,off-line_equipment auxiliary_equipment,electronic equipment not in direct communication (or under the control of) the central processing unit
+57547,off-season,the season when travel is least active and rates are lowest
+57548,off_year,a year in which productivity is low or inferior
+57549,off_year,a year in which no major political elections are held
+57550,offal,viscera and trimmings of a butchered animal often considered inedible by humans
+57551,offense offence,the team that has the ball (or puck) and is trying to score
+57552,offense offence,a transgression that constitutes a violation of what is judged to be right
+57553,offense offence offensive,the action of attacking an enemy
+57554,offensiveness odiousness distastefulness,the quality of being offensive
+57555,offer offering,the verbal act of offering; "a generous offer of assistance"
+57556,offer offering,something offered (as a proposal or bid); "noteworthy new offerings for investors included several index funds"
+57557,offer_price,(stock market) the price at which a broker is willing to sell a certain security
+57558,offerer offeror,someone who presents something to another for acceptance or rejection
+57559,offering,money contributed to a religious organization
+57560,offertory,the offerings of the congregation at a religious service
+57561,office,a religious rite or service prescribed by ecclesiastical authorities; "the offices of the mass"
+57562,office business_office,place of business where professional or clerical duties are performed; "he rented an office in the new building"
+57563,office office_staff,professional or clerical workers in an office; "the whole office was late the morning of the blizzard"
+57564,office power,(of a government or government official) holding an office means being in power; "being in office already gives a candidate a great advantage"; "during his first year in office"; "during his first year in power"; "the power of the president"
+57565,office-bearer,the person who holds an office
+57566,office_boy,a young man who is employed to do odd jobs in a business office
+57567,office_building office_block,a building containing offices where work is done
+57568,office_furniture,furniture intended for use in an office
+57569,officeholder officer,someone who is appointed or elected to an office and who holds a position of trust; "he is an officer of the court"; "the club elected its officers for the coming year"
+57570,officer ship's_officer,a person authorized to serve in a position of authority on a vessel; "he is the officer in charge of the ship's engines"
+57571,officer's_mess,a mess for the exclusive use of officers
+57572,official,someone who administers the rules of a game or sport; "the golfer asked for an official who could give him a ruling"
+57573,official functionary,a worker who holds or is invested with an office
+57574,official_immunity,personal immunity accorded to a public official from liability to anyone injured by actions that are the consequence of exerting official authority
+57575,officialese,the style of writing characteristic of some government officials: formal and obscure
+57576,officiant,a clergyman who officiates at a religious ceremony or service
+57577,officiation,the performance of a religious or ceremonial or public duty
+57578,offing,the near or foreseeable future; "there was a wedding in the offing"
+57579,offing,the part of the sea that can be seen from the shore and is beyond the anchoring area; "there was a ship in the offing"
+57580,offprint reprint separate,a separately printed article that originally appeared in a larger publication
+57581,offset offset_printing,a plate makes an inked impression on a rubber-blanketed cylinder, which in turn transfers it to the paper
+57582,offset_lithography,offset printing by lithography
+57583,offside,(sport) the mistake of occupying an illegal position on the playing field (in football, soccer, ice hockey, field hockey, etc.)
+57584,offspring materialization materialisation,something that comes into existence as a result; "industrialism prepared the way for acceptance of the French Revolution's various socialistic offspring"; "this skyscraper is the solid materialization of his efforts"
+57585,offspring progeny issue,the immediate descendants of a person; "she was the mother of many offspring"; "he died without issue"
+57586,ogee cyma_reversa,a molding that (in section) has the shape of an S with the convex part above and the concave part below
+57587,ogee_arch keel_arch,a pointed arch having an S-shape on both sides
+57588,ogler,a viewer who gives a flirtatious or lewd look at another person
+57589,ogre,(folklore) a giant who likes to eat human beings
+57590,ogress,(folklore) a female ogre
+57591,ohm,a unit of electrical resistance equal to the resistance between two points on a conductor when a potential difference of one volt between them produces a current of one ampere
+57592,ohmage,the ohmic resistance of a conductor
+57593,ohmmeter,a meter for measuring electrical resistance in ohms
+57594,oil,a slippery or viscous liquid or liquefiable substance not miscible with water
+57595,oil oil_color oil_colour,oil paint containing pigment that is used by an artist
+57596,oil-hardened_steel,steel that is quenched in oil
+57597,oil-industry_analyst,an analyst of the oil industry
+57598,oil-water_interface,an interface forming the boundary between the non-miscible liquids oil and water
+57599,oil_beetle,any of various beetles that exude an oily substance from the leg joints that deters enemies
+57600,oil_burner oil_furnace,a furnace that burns oil
+57601,oil_cake,mass of e.g. linseed or cottonseed or soybean from which the oil has been pressed; used as food for livestock
+57602,oil_cartel,a cartel of companies or nations formed to control the production and distribution of oil
+57603,oil_change,replacing dirty oil with clean
+57604,oil_company,a company that sells oil
+57605,oil_conservation,the conservation of petroleum resources
+57606,oil_filter,a filter that removes impurities from the oil used to lubricate an internal-combustion engine
+57607,oil_future petroleum_future,petroleum bought or sold at an agreed price for delivery at a specified future date
+57608,oil_gland,a gland that secretes oil
+57609,oil_heater oilstove kerosene_heater kerosine_heater,heater that burns oil (as kerosine) for heating or cooking
+57610,oil_industry refining_industry oil_business,an industry that produces and delivers oil and oil products
+57611,oil_lamp kerosene_lamp kerosine_lamp,a lamp that burns oil (as kerosine) for light
+57612,oil_meal,ground oil cake
+57613,oil_paint,paint in which a drying oil is the vehicle
+57614,oil_painter,a painter who uses oil paints
+57615,oil_painting,a picture painted with oil paints
+57616,oil_painting,the art or method of painting with oil paints
+57617,oil_palm,pinnate-leaved palms of the genus Elaeis having dense clusters of crowded flowers and bright red fruit and yielding high quality palm oils
+57618,oil_pipeline,a pipeline used to transport oil
+57619,oil_pressure,pressure that keeps oil on the moving parts of an internal-combustion engine
+57620,oil_pump,a pump that keeps a supply of oil on moving parts
+57621,oil_refinery petroleum_refinery,a refinery for petroleum
+57622,oil_shale,shale from which oil can be obtained by heating
+57623,oil_slick,a thin film of oil floating on top of water (especially crude oil spilled from a ship)
+57624,oil_stain,a stain produced by oil
+57625,oil_tanker oiler tanker tank_ship,a cargo ship designed to carry crude oil in bulk
+57626,oil_tycoon,a powerful person in the oil business
+57627,oil_well oiler,a well that yields or has yielded oil
+57628,oilbird guacharo Steatornis_caripensis,nocturnal fruit-eating bird of South America that has fatty young yielding an oil that is used instead of butter
+57629,oilcan,a can with a long nozzle to apply oil to machinery
+57630,oilcloth,cloth treated on one side with a drying oil or synthetic resin
+57631,oiler,a worker who oils engines or machinery
+57632,oilfield,a region rich in petroleum deposits (especially one with producing oil wells)
+57633,oilfish Ruvettus_pretiosus,very large deep-water snake mackerel
+57634,oilman,a person who owns or operates oil wells
+57635,oilman,a worker who produces or sells petroleum
+57636,oilpaper,paper that has been made translucent and waterproof by soaking in oil
+57637,oilseed oil-rich_seed,any of several seeds that yield oil
+57638,oilskin slicker,a macintosh made from cotton fabric treated with oil and pigment to make it waterproof
+57639,oilstone,a whetstone for use with oil
+57640,ointment unction unguent balm salve,semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation
+57641,oka,a Turkish unit of weight equal to about 2.75 pounds
+57642,oka,a Turkish liquid unit equal to 1.3 pints
+57643,okapi Okapia_johnstoni,similar to the giraffe but smaller with much shorter neck and stripe on the legs
+57644,okra,long green edible beaked pods of the okra plant
+57645,okra gumbo okra_plant lady's-finger Abelmoschus_esculentus Hibiscus_esculentus,tall coarse annual of Old World tropics widely cultivated in southern United States and West Indies for its long mucilaginous green pods used as basis for soups and stews; sometimes placed in genus Hibiscus
+57646,ola olla,leaf or strip from a leaf of the talipot palm used in India for writing paper
+57647,old,past times (especially in the phrase `in days of old')
+57648,old-age_insurance,insurance paid to the elderly
+57649,old-age_pension retirement_pension retirement_check retirement_benefit retirement_fund superannuation,a monthly payment made to someone who is retired from work
+57650,old-age_pensioner,an old person who receives an old-age pension
+57651,old-fashionedness,the property of being no longer fashionable
+57652,old-man-of-the-woods Strobilomyces_floccopus,edible mild-tasting mushroom found in coniferous woodlands of eastern North America
+57653,old-timer oldtimer gaffer old_geezer antique,an elderly man
+57654,old_age years age eld geezerhood,a late time of life; "old age is not for sissies"; "he's showing his years"; "age hasn't slowed him down at all"; "a beard white with eld"; "on the brink of geezerhood"
+57655,old_boy,a former male pupil of a school
+57656,old_boy,a vivacious elderly man
+57657,old_boy old_man,a familiar term of address for a man
+57658,old_boy_network,an exclusive informal network linking members of a social class or profession or organization in order to provide connections and information and favors (especially in business or politics); "professional women have developed an old boy network of their own"
+57659,old_country,the country of origin of an immigrant
+57660,old_fashioned,a cocktail made of whiskey and bitters and sugar with fruit slices
+57661,old_gold,a dark yellow
+57662,old_growth virgin_forest,forest or woodland having a mature or overly mature ecosystem more or less uninfluenced by human activity
+57663,old_guard,a faction that is unwilling to accept new ideas
+57664,old_lady,your own wife; "meet my old lady"
+57665,old_maid,the loser in a game of old maid
+57666,old_maid,a card game using a pack of cards from which one queen has been removed; players match cards and the player holding the unmatched queen at the end of the game is the loser (or `old maid')
+57667,old_man,(slang) boss
+57668,old_man,an informal term for your father
+57669,old_man greybeard graybeard Methuselah,a man who is very old
+57670,old_man_of_the_mountain alpine_sunflower Tetraneuris_grandiflora Hymenoxys_grandiflora,whitish hairy plant with featherlike leaves and a few stout stems each bearing an especially handsome solitary large yellow flower head; mountainous regions north central United States
+57671,old_master,a great European painter prior to 19th century
+57672,old_rose,a greyish-pink color
+57673,old_school,a class of people favoring traditional ideas
+57674,old_school_tie,necktie indicating the school the wearer attended
+57675,old_squaw oldwife Clangula_hyemalis,a common long-tailed sea duck of the northern parts of the United States
+57676,old_style old_style_font,a typeface (based on an 18th century design) distinguished by irregularity and slanted ascender serifs and little contrast between light and heavy strokes
+57677,old_wives'_tale,a bit of lore passed on by word of mouth
+57678,old_woman,a woman who is old
+57679,oldie golden_oldie,a song that was formerly popular
+57680,oldness,the opposite of youngness
+57681,oldness,the quality of being old; the opposite of newness
+57682,oldster old_person senior_citizen golden_ager,an elderly person
+57683,oleander rose_bay Nerium_oleander,an ornamental but poisonous flowering shrub having narrow evergreen leaves and clusters of fragrant white to pink or red flowers: native to East Indies but widely cultivated in warm regions
+57684,oleander_fern Oleandra_neriiformis Oleandra_mollis,tropical fern having leathery fronds resembling oleander; found from Asia to Polynesia
+57685,oleaster,any of several shrubs of the genus Elaeagnus having silver-white twigs and yellow flowers followed by olivelike fruits
+57686,olecranon olecranon_process,process of the ulna that forms the outer bump of the elbow and fits into the fossa of the humerus when the arm is extended
+57687,oleic_acid,a colorless oily liquid occurring as a glyceride; it is the major fatty acid in olive oil and canola oil; used in making soap and cosmetics and ointments and lubricating oils
+57688,oleo_oil,obtained from beef fat; used in making margarine and soap and in lubrication
+57689,oleoresin,a naturally occurring mixture of a resin and an essential oil; obtained from certain plants
+57690,oleoresin_capiscum,an oleoresin extracted from the capsicum pepper plant
+57691,olfactory_bulb,one of two enlargements at the terminus of the olfactory nerve at the base of the brain just above the nasal cavities
+57692,olfactory_nerve nervii_olfactorii first_cranial_nerve,a collective term for numerous olfactory filaments in the nasal mucosa
+57693,olfactory_property smell aroma odor odour scent,any property detected by the olfactory system
+57694,oligarch,one of the rulers in an oligarchy
+57695,oligarchy,a political system governed by a few people; "one of his cardinal convictions was that Britain was not run as a democracy but as an oligarchy"; "the big cities were notoriously in the hands of the oligarchy of local businessmen"
+57696,oligochaete oligochaete_worm,hermaphroditic terrestrial and aquatic annelids having bristles borne singly along the length of the body
+57697,oligodactyly,congenital condition in which some fingers or toes are missing
+57698,oligodendrocyte,a cell of the oligodendroglia
+57699,oligodendroglia oligodendria,tissue consisting of glial cells with sheetlike processes that form the myelin sheath of nerve fibers
+57700,oligodontia,congenital condition in which some of the teeth are missing
+57701,oligomenorrhea,abnormally light or infrequent menstruation
+57702,oligonucleotide oligo,(biochemistry) a polynucleotide whose molecules contain relatively few nucleotides
+57703,oligopoly,(economics) a market in which control over the supply of a commodity is in the hands of a small number of producers and each one can influence prices and affect competitors
+57704,oligosaccharide,any of the carbohydrates that yield only a few monosaccharide molecules on complete hydrolysis
+57705,oligospermia,insufficient spermatozoa in the semen
+57706,oliguria,abnormally small production of urine; can be a symptom of kidney disease or obstruction of the urinary tract or edema or an imbalance of fluids and electrolytes in the body
+57707,oliguria,production of an abnormally small amount of urine
+57708,olive,small ovoid fruit of the European olive tree; important food and source of oil
+57709,olive,hard yellow often variegated wood of an olive tree; used in cabinetwork
+57710,olive,one-seeded fruit of the European olive tree usually pickled and used as a relish
+57711,olive,a yellow-green color of low brightness and saturation
+57712,olive European_olive_tree Olea_europaea,evergreen tree cultivated in the Mediterranean region since antiquity and now elsewhere; has edible shiny black fruits
+57713,olive-tree_agaric Pleurotus_phosphoreus,red luminescent mushroom of Europe
+57714,olive_brown,a shade of brown tinged with green
+57715,olive_drab,a cloth of an olive-brown color used for military uniforms
+57716,olive_drab drab,a dull greyish to yellowish or light olive brown
+57717,olive_drab olive-drab_uniform,military uniform of the United States Army; made from cloth of a dull olive color
+57718,olive_green olive-green,a color that is lighter and greener than olive
+57719,olive_oil,oil from olives
+57720,olive_tree,a tree of the genus Olea cultivated for its fruit
+57721,olivenite,rare green to black mineral consisting of hydrated copper arsenate that is found in copper deposits
+57722,olivine,a mineral consisting of magnesium iron silicate; a source of magnesium
+57723,olla_podrida Spanish_burgoo,Spanish version of burgoo
+57724,olm Proteus_anguinus,European aquatic salamander with permanent external gills that lives in caves
+57725,ology,an informal word (abstracted from words with this ending) for some unidentified branch of knowledge
+57726,olympic_salamander Rhyacotriton_olympicus,small large-eyed semiaquatic salamander of the United States Northwest
+57727,ombu bella_sombra Phytolacca_dioica,fast-growing herbaceous evergreen tree of South America having a broad trunk with high water content and dark green oval leaves
+57728,ombudsman,a government appointee who investigates complaints by private persons against the government
+57729,omega,the last (24th) letter of the Greek alphabet
+57730,omega Z,the ending of a series or sequence; "the Alpha and the Omega, the first and the last, the beginning and the end"--Revelation
+57731,omega-3_fatty_acid omega-3,a polyunsaturated fatty acid whose carbon chain has its first double valence bond three carbons from the beginning
+57732,omega-6_fatty_acid omega-6,a polyunsaturated fatty acid whose carbon chain has its first double valence bond six carbons from the beginning
+57733,omelet omelette,beaten eggs or an egg mixture cooked until just set; may be folded around e.g. ham or cheese or jelly
+57734,omelet_pan omelette_pan,pan for cooking omelets
+57735,omen portent presage prognostic prognostication prodigy,a sign of something about to happen; "he looked for an omen before going into battle"
+57736,omentum,a fold of peritoneum supporting the viscera
+57737,omeprazole Prilosec,antacid (trade name Prilosec) that suppresses acid secretion in the stomach
+57738,omerta,a code of silence practiced by the Mafia; a refusal to give evidence to the police about criminal activities
+57739,omicron,the 15th letter of the Greek alphabet
+57740,omission,something that has been omitted; "she searched the table for omissions"
+57741,omission,neglecting to do something; leaving out or passing over something
+57742,omission deletion,any process whereby sounds or words are left out of spoken words or phrases
+57743,omission skip,a mistake resulting from neglect
+57744,ommastrephes,extremely active cylindrical squid with short strong arms and large rhombic terminal fins
+57745,ommatidium,any of the numerous small cone-shaped eyes that make up the compound eyes of some arthropods
+57746,omnibus,an anthology of articles on a related subject or an anthology of the works of a single author
+57747,omnidirectional_antenna nondirectional_antenna,an antenna that sends or receives signals equally in all directions
+57748,omnipotence,the state of being omnipotent; having unlimited power
+57749,omnirange omnidirectional_range omnidirectional_radio_range,a navigational system consisting of a network of radio beacons that provide aircraft with information about exact position and bearing
+57750,omniscience,the state of being omniscient; having infinite knowledge
+57751,omnivore,a person who eats all kinds of foods
+57752,omnivore,an animal that feeds on both animal and vegetable substances
+57753,omophagia,the eating of raw food
+57754,omphaloskepsis navel-gazing,literally, the contemplation of one's navel, which is an idiom usually meaning complacent self-absorption
+57755,on-license,a license to sell liquor for consumption on the premises
+57756,on_the_road on_tour,travelling about; "they took the show on the road"; "they lost all their games on the road"
+57757,onager Equus_hemionus,Asiatic wild ass
+57758,once-over look-over,a swift cursory examination or inspection; "I gave him the once-over"
+57759,onchocerciasis river_blindness,infestation with slender threadlike roundworms (filaria) deposited under the skin by the bite of black fleas; when the eyes are involved it can result in blindness; common in Africa and tropical America
+57760,oncidium dancing_lady_orchid butterfly_plant butterfly_orchid,any orchid of the genus Oncidium: characterized by slender branching sprays of small yellow and brown flowers; often grown as houseplants
+57761,oncogene transforming_gene,a gene that disposes normal cells to change into cancerous tumor cells
+57762,oncologist,a specialist in oncology
+57763,oncology,the branch of medicine concerned with the study and treatment of tumors
+57764,one,a single person or thing; "he is the best one"; "this is the one I ordered"
+57765,one 1 I ace single unity,the smallest whole number or a numeral representing this number; "he has the one but will need a two and three to go with it"; "they had lunch at one"
+57766,one-and-one,a foul shot that must be made in order to earn the right to a second foul shot
+57767,one-billionth billionth,one part in a billion equal parts
+57768,one-dimensional_language,a programming language whose expressions are represented by strings of characters
+57769,one-dimensionality linearity,the property of having one dimension
+57770,one-eighth eighth,one part in eight equal parts
+57771,one-fifth fifth fifth_part twenty_percent,one part in five equal parts
+57772,one-flowered_wintergreen one-flowered_pyrola Moneses_uniflora Pyrola_uniflora,delicate evergreen dwarf herb of north temperate regions having a solitary white terminal flower; sometimes placed in genus Pyrola
+57773,one-fourth fourth one-quarter quarter fourth_part twenty-five_percent quartern,one of four equal parts; "a quarter of a pound"
+57774,one-half half,one of two equal parts of a divisible whole; "half a loaf"; "half an hour"; "a century and one half"
+57775,one-hitter 1-hitter,a game in which a pitcher allows the opposing team only one hit
+57776,one-hundred-millionth,one part in a hundred million equal parts
+57777,one-hundred-thousandth,one part in a hundred thousand equal parts
+57778,one-hundredth hundredth one_percent,one part in a hundred equal parts
+57779,one-liner,a one-line joke
+57780,one-millionth millionth,one part in a million equal parts
+57781,one-night_stand,a brief sexual encounter lasting only for a single night; "he ran through a series of loveless one-night stands"
+57782,one-night_stand,a performance in one place on one night only
+57783,one-ninth ninth,one part in nine equal parts
+57784,one-off,a happening that occurs only once and is not repeated
+57785,one-quadrillionth quadrillionth,one part in a quadrillion equal parts
+57786,one-quintillionth quintillionth,one part in a quintillion equal parts
+57787,one-seventh seventh,one part in seven equal parts
+57788,one-sixteenth sixteenth sixteenth_part,one part in sixteen equal parts
+57789,one-sixth sixth,one part in six equal parts
+57790,one-sixtieth sixtieth,one part in sixty equal parts
+57791,one-sixty-fourth sixty-fourth,one part in sixty-four equal parts
+57792,one-spot,a domino or die whose upward face shows one pip
+57793,one-step,an early ballroom dance; precursor to the fox-trot
+57794,one-ten-thousandth ten-thousandth,one part in ten thousand equal parts
+57795,one-tenth tenth tenth_part ten_percent,a tenth part; one part in ten equal parts
+57796,one-third third tierce,one of three equal parts of a divisible whole; "it contains approximately a third of the minimum daily requirement"
+57797,one-thirty-second thirty-second thirty-second_part,one part in thirty-two equal parts
+57798,one-thousandth thousandth,one part in a thousand equal parts
+57799,one-trillionth trillionth,one part in a trillion equal parts
+57800,one-twelfth twelfth twelfth_part duodecimal,one part in twelve equal parts
+57801,one-upmanship,the practice of keeping one jump ahead of a friend or competitor
+57802,one-way_light_time OWLT,the elapsed time it takes for light (or radio signals) to travel between the Earth and a celestial object
+57803,one-way_street,unilateral interaction; "cooperation cannot be a one-way street"
+57804,one-way_street,a street on which vehicular traffic is allowed to move in only one direction
+57805,one_of_the_boys,a man who has been socially accepted into a group of other men; "he quickly became one of the boys"
+57806,oneiromancer,someone who divines through the interpretation of dreams
+57807,oneiromancy,divination through the interpretation of dreams
+57808,oneness unity,the quality of being united into one
+57809,onion,the bulb of an onion plant
+57810,onion,an aromatic flavorful vegetable
+57811,onion onion_plant Allium_cepa,bulbous plant having hollow leaves cultivated worldwide for its rounded edible bulb
+57812,onion_bagel,bagel flavored with onion
+57813,onion_bread,bread containing finely minced onions
+57814,onion_butter,butter blended with minced onion
+57815,onion_dome,a dome that is shaped like a bulb; characteristic of Russian and Byzantine church architecture
+57816,onion_mildew Peronospora_destructor,fungus causing a downy mildew on onions
+57817,onion_roll,yeast-raised roll flavored with onion
+57818,onion_salt,ground dried onion and salt
+57819,onion_smut Urocystis_cepulae,smut fungus causing blackish blisters on scales and leaves of onions; especially destructive to seedlings
+57820,onion_stem Lepiota_cepaestipes,a white agaric that tends to cluster and has a club-shaped base
+57821,onion_thrips onion_louse Thrips_tobaci,injurious to onion plants and sometimes tobacco
+57822,onion_yellow-dwarf_virus,the virus that produces stunting and yellowing of the leaves of onion plants
+57823,onion_yellow_dwarf,the yellow dwarf disease of onion plants
+57824,onionskin flimsy,a thin strong lightweight translucent paper used especially for making carbon copies
+57825,onlooker looker-on,someone who looks on
+57826,onomancer,one who practices onomancy
+57827,onomancy,divination by the letters of a name
+57828,onomasticon,a list of proper nouns naming persons or places
+57829,onomastics,the branch of lexicology that studies the forms and origins of proper names
+57830,onomatomania,obsession with a particular word which the person uses repeatedly or which intrudes into consciousness
+57831,onomatopoeia,using words that imitate the sound they denote
+57832,onrush,a forceful forward rush or flow; "from the bow she stared at the mesmerising onrush of the sea where it split and foamed"; "the explosion interrupted the wild onrush of her thoughts"
+57833,onset oncoming,the beginning or early stages; "the onset of pneumonia"
+57834,onslaught,a sudden and severe onset of trouble
+57835,ontology,(computer science) a rigorous and exhaustive organization of some knowledge domain that is usually hierarchical and contains all the relevant entities and their relations
+57836,ontology,the metaphysical study of the nature of being and existence
+57837,onycholysis,separation of a nail from its normal attachment to the nail bed
+57838,onychophoran velvet_worm peripatus,any of numerous velvety-skinned wormlike carnivorous animals common in tropical forests having characteristics of both arthropods and annelid worms
+57839,onychosis,any disease or disorder of the nails
+57840,onyx,a chalcedony with alternating black and white bands; used in making cameos
+57841,oocyte,a female gametocyte that develops into an ovum after two meiotic divisions
+57842,oogenesis,development of ova
+57843,oology,the branch of zoology that studies eggs (especially birds' eggs and their size, shape, coloration, and number)
+57844,oolong,Chinese tea leaves that have been partially fermented before being dried
+57845,oophorectomy ovariectomy,surgical removal of one of both ovaries
+57846,oophoritis,inflammation of one or both ovaries
+57847,oophorosalpingectomy,surgical removal of one or both ovaries and the corresponding Fallopian tubes
+57848,oosphere,a gamete; used especially of lower plants
+57849,oospore,a thick-walled sexual spore that develops from a fertilized oosphere in some algae and fungi
+57850,ootid,mature ovum after penetration by sperm but before the formation of a zygote
+57851,ooze_leather,a very soft leather made from the skins of calves and having a suede finish on the flesh side
+57852,op_art,a style of abstractionism popular in the 1960s; produces dramatic visual effects with colors and contrasts that are difficult for the eye to resolve
+57853,opacification,the process of becoming cloudy or opaque
+57854,opacity,the phenomenon of not permitting the passage of electromagnetic radiation
+57855,opacity opaqueness,incomprehensibility resulting from obscurity of meaning
+57856,opacity opaqueness,the quality of being opaque to a degree; the degree to which something reduces the passage of light
+57857,opah moonfish Lampris_regius,large elliptical brightly colored deep-sea fish of Atlantic and Pacific and Mediterranean
+57858,opal,a translucent mineral consisting of hydrated silica of variable color; some varieties are used as gemstones
+57859,opal_glass milk_glass,a milky white translucent or opaque glass
+57860,opalescence iridescence,the visual property of something having a milky brightness and a play of colors from the surface
+57861,opaque_gem,a gemstone that is opaque
+57862,open,a tournament in which both professionals and amateurs may play
+57863,open clear,a clear or unobstructed space or expanse of land or water; "finally broke out of the forest into the open"
+57864,open surface,information that has become public; "all the reports were out in the open"; "the facts had been brought to the surface"
+57865,open-air_market open-air_marketplace market_square,a public marketplace where food and merchandise is sold
+57866,open-door_policy open_door,the policy of granting equal trade opportunities to all countries
+57867,open-end_credit revolving_credit charge_account_credit,a consumer credit line that can be used up to a certain limit or paid down at any time
+57868,open-end_wrench tappet_wrench,a wrench having parallel jaws at fixed separation (often on both ends of the handle)
+57869,open-face_sandwich open_sandwich,sandwich without a covering slice of bread
+57870,open-heart_surgery,heart surgery in which the rib cage is spread open, the heart is stopped and blood is detoured through a heart-lung machine while a heart valve or coronary artery is surgically repaired
+57871,open-hearth_furnace,a furnace for making steel in which the steel is placed on a shallow hearth and flames of burning gas and hot air play over it
+57872,open-hearth_process,a process for making steel using an open-hearth furnace
+57873,open_account,an unpaid credit order
+57874,open_chain,a chain of atoms in a molecule whose ends are not joined to form a ring
+57875,open_circuit,an incomplete electrical circuit in which no current flows
+57876,open_door,freedom of access; "he maintained an open door for all employees"
+57877,open_frame break,any frame in which a bowler fails to make a strike or spare; "the break in the eighth frame cost him the match"
+57878,open_house,an informal party of people with hospitality for all comers
+57879,open_interval unbounded_interval,an interval that does not include its endpoints
+57880,open_letter,a letter of protest; addressed to one person but intended for the general public
+57881,open_marriage,a marriage in which each partner is free to enter into extraneous sexual relationships without guilt or jealousy from the other
+57882,open_order,a military formation leaving enough space between ranks to allow an inspecting officer to pass
+57883,open_primary,a primary in which any registered voter can vote (but must vote for candidates of only one party)
+57884,open_secret,something that is supposed to be secret but is generally known; "their love affair was an open secret"
+57885,open_sesame,a magical command; used by Ali Baba
+57886,open_sesame,any very successful means of achieving a result
+57887,open_shop,a company whose workers are hired without regard to their membership in a labor union
+57888,open_sight,rear gunsight having an open notch instead of a peephole or telescope
+57889,open_society,a society that allows its members considerable freedom (as in a democracy); "America's open society has made it an easy target for terrorists"
+57890,open_weave,a weave in which warp threads never come together, leaving interstices in the fabric
+57891,openbill,stork with a grooved bill whose upper and lower parts touch only at the base and tip
+57892,opener,the first event in a series; "she played Chopin for her opener"; "the season's opener was a game against the Yankees"
+57893,opener,a hand tool used for opening sealed containers (bottles or cans)
+57894,opening,opportunity especially for employment or promotion; "there is an opening in the sales department"
+57895,opening,a ceremony accompanying the start of some enterprise
+57896,opening,the initial part of the introduction; "the opening established the basic theme"
+57897,opening,a vacant or unobstructed space that is man-made; "they left a small opening for the cat at the bottom of the door"
+57898,opening,becoming open or being made open; "the opening of his arms was the sign I was waiting for"
+57899,opening,the act of opening something; "the ray of light revealed his cautious opening of the door"
+57900,opening chess_opening,a recognized sequence of moves at the beginning of a game of chess; "he memorized all the important chess openings"
+57901,opening gap,an open or empty space in or between things; "there was a small opening between the trees"; "the explosion made a gap in the wall"
+57902,opening opening_night curtain_raising,the first performance (as of a theatrical production); "the opening received good critical reviews"
+57903,opening_line,the first line of a piece of writing (as a newspaper story)
+57904,openness,without obstructions to passage or view; "the openness of the prairies"
+57905,openness nakedness,characterized by an attitude of ready accessibility (especially about one's actions or purposes); without concealment; not secretive
+57906,openside_plane rabbet_plane,a woodworking plane designed to cut rabbets
+57907,openwork,ornamental work (such as embroidery or latticework) having a pattern of openings
+57908,opepe Nauclea_diderrichii Sarcocephalus_diderrichii,large African forest tree yielding a strong hard yellow to golden brown lumber; sometimes placed in genus Sarcocephalus
+57909,opera,a drama set to music; consists of singing with orchestral accompaniment and an orchestral overture and interludes
+57910,opera opera_house,a building where musical dramas are performed
+57911,opera_cloak opera_hood,a large cloak worn over evening clothes
+57912,opera_company,a company that produces operas
+57913,opera_star operatic_star,singer of lead role in an opera
+57914,operagoer,a patron of the opera
+57915,operand,a quantity upon which a mathematical operation is performed
+57916,operant_conditioning,conditioning in which an operant response is brought under stimulus control by virtue of presenting reinforcement contingent upon the occurrence of the operant response
+57917,operating_budget,a budget for current expenses as distinct from financial transactions or permanent improvements
+57918,operating_capability performance_capability,the capability of a technological system to perform as intended
+57919,operating_capital,capital available for the operations of a firm (e.g. manufacturing or transportation) as distinct from financial transactions and long-term improvements
+57920,operating_expense operating_cost overhead budget_items,the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes
+57921,operating_microscope,binocular microscope used in surgery to provide a clear view of small and inaccessible parts of the body (as in microsurgery)
+57922,operating_procedure,a procedure for operating something or for dealing with a given situation
+57923,operating_room OR operating_theater operating_theatre surgery,a room in a hospital equipped for the performance of surgical operations; "great care is taken to keep the operating rooms aseptic"
+57924,operating_system OS,(computer science) software that controls the execution of computer programs and may provide various services
+57925,operating_table,table on which the patient lies during a surgical operation
+57926,operation,the state of being in effect or being operative; "that rule is no longer in operation"
+57927,operation,(computer science) data processing in which the result is completely specified by a rule (especially the processing that results from a single instruction); "it can perform millions of operations per second"
+57928,operation,a business especially one run on a large scale; "a large-scale farming operation"; "a multinational operation"; "they paid taxes on every stage of the operation"; "they had to consolidate their operations"
+57929,operation,a planned activity involving many people performing various actions; "they organized a rescue operation"; "the biggest police operation in French history"; "running a restaurant is quite an operation"; "consolidate the companies various operations"
+57930,operation,the activity of operating something (a machine or business etc.); "her smooth operation of the vehicle gave us a surprisingly comfortable ride"
+57931,operation functioning performance,process or manner of functioning or operating; "the power of its engine determines its operation"; "the plane's operation in high winds"; "they compared the cooking performance of each oven"; "the jet's performance conformed to high standards"
+57932,operation military_operation,activity by a military or naval force (as a maneuver or campaign); "it was a joint operation of the navy and air force"
+57933,operation procedure,a process or series of acts especially of a practical or mechanical nature involved in a particular form of work; "the operations in building a house"; "certain machine tool operations"
+57934,operation surgery surgical_operation surgical_procedure surgical_process,a medical procedure involving an incision with instruments; performed to repair damage or arrest disease in a living body; "they will schedule the operation as soon as an operating room is available"; "he died while undergoing surgery"
+57935,operation_code order_code,the portion of a set of operation descriptions that specifies the operation to be performed; the set of operations in a computer
+57936,operational_cell,a terrorist cell that performs clandestine activities
+57937,operational_damage operational_casualty,loss of military equipment in field operations
+57938,operationalism,(philosophy) the doctrine that the meaning of a proposition consists of the operations involved in proving or applying it
+57939,operations trading_operations,financial transactions at a brokerage; having to do with the execution of trades and keeping customer records
+57940,operations_research,research designed to determine most efficient way to do something
+57941,operative_field,the area that is open during surgery
+57942,operator,(mathematics) a symbol or function representing a mathematical operation
+57943,operator,a speculator who trades aggressively on stock or commodity markets
+57944,operator,someone who owns or operates a business; "who is the operator of this franchise?"
+57945,operator manipulator,an agent that operates some apparatus or machine; "the operator of the switchboard"
+57946,operator_gene,a gene that activates the production of messenger RNA by adjacent structural genes
+57947,operculum,a hard flap serving as a cover for (a) the gill slits in fishes or (b) the opening of the shell in certain gastropods when the body is retracted
+57948,operetta light_opera,a short amusing opera
+57949,operon,a segment of DNA containing adjacent genes including structural genes and an operator gene and a regulatory gene
+57950,ophidism,poisoning by snake venom
+57951,ophiolatry serpent-worship,the worship of snakes
+57952,ophryon,the craniometric point in the midline of the forehead immediately above the orbits
+57953,ophthalmectomy,surgical removal of an eye
+57954,ophthalmia ophthalmitis,severe conjunctivitis
+57955,ophthalmia_neonatorum,ophthalmia in newborns; contracted while passing through the birth canal; usually prevented with silver nitrate drops
+57956,ophthalmic_artery arteria_ophthalmica,a branch of the internal carotid artery that supplies the eye and neighboring structures
+57957,ophthalmic_vein vena_ophthalmica,either of two veins that serve the eye; empties into the cavernous sinus
+57958,ophthalmologist eye_doctor oculist,a medical doctor specializing in the diagnosis and treatment of diseases of the eye
+57959,ophthalmology,the branch of medicine concerned with the eye and its diseases
+57960,ophthalmoplegia,paralysis of the motor nerves of the eye
+57961,ophthalmoscope,medical instrument for examining the retina of the eye
+57962,ophthalmoscopy,examination of the interior of an eye using an ophthalmoscope
+57963,opiate,a narcotic drug that contains opium or an opium derivative
+57964,opinion legal_opinion judgment judgement,the legal document stating the reasons for a judicial decision; "opinions are usually written by a single judge"
+57965,opinion ruling,the reason for a court's judgment (as opposed to the decision itself)
+57966,opinion sentiment persuasion view thought,a personal belief or judgment that is not founded on proof or certainty; "my opinion differs from yours"; "I am not of your persuasion"; "what are your thoughts on Haiti?"
+57967,opinion view,a message expressing a belief about something; the expression of a belief that is held with confidence but not substantiated by positive knowledge or proof; "his opinions appeared frequently on the editorial page"
+57968,opisthorchiasis,infestation with flukes obtained from eating raw fish; common in eastern Asia
+57969,opisthotonos,severe spasm in which the back arches and the head bends back and heels flex toward the back
+57970,opium,an addictive narcotic extracted from seed capsules of the opium poppy
+57971,opium_addict opium_taker,someone addicted to opium
+57972,opium_den,a building where opium is sold and used
+57973,opium_poppy Papaver_somniferum,southwestern Asian herb with greyish leaves and white or reddish flowers; source of opium
+57974,opopanax,an odorous gum resin formerly used in medicines
+57975,opossum possum,nocturnal arboreal marsupial having a naked prehensile tail found from southern North America to northern South America
+57976,opossum_rat,terrestrial marsupials of southern South America that resemble shrews
+57977,opossum_shrimp,shrimp-like crustaceans whose females carry eggs and young in a pouch between the legs
+57978,opportuneness patness timeliness,timely convenience
+57979,opportunism self-interest self-seeking expedience,taking advantage of opportunities without regard for the consequences for others
+57980,opportunist self-seeker,a person who places expediency above principle
+57981,opportunistic_infection,any infection caused by a microorganism that does not normally cause disease in humans; occurs in persons with abnormally functioning immune systems (as AIDS patients or transplant patients receiving immunosuppressive drugs)
+57982,opportunity chance,a possibility due to a favorable combination of circumstances; "the holiday gave us the opportunity to visit Washington"; "now is your chance"
+57983,opportunity_cost,cost in terms of foregoing alternatives
+57984,opposition,a direction opposite to another
+57985,opposition,a body of people united in opposing something
+57986,opposition opponent opposite,a contestant that you are matched against
+57987,opposition oppositeness,the relation between opposed entities
+57988,oppression,the state of being kept down by unjust use of force or authority: "after years of oppression they finally revolted"
+57989,oppression oppressiveness,a feeling of being oppressed
+57990,oppression subjugation,the act of subjugating by cruelty; "the tyrant's oppression of the people"
+57991,oppressor,a person of authority who subjects others to undue pressures
+57992,opsin,retinal protein formed by the action of light on rhodopsin
+57993,opsonin,an antibody in blood serum that attaches to invading microorganisms and other antigens to make them more susceptible to the action of phagocytes
+57994,opsonization opsonisation,process whereby opsonins make an invading microorganism more susceptible to phagocytosis
+57995,optative_mood optative,a mood (as in Greek or Sanskrit) that expresses a wish or hope; expressed in English by modal verbs
+57996,optic_axis,in a doubly refracting crystal, the line in the direction of which no double refraction occurs; "a crystal may have either one or two optic axes"
+57997,optic_chiasma optic_chiasm chiasma_opticum,the crossing of the optic nerves from the two eyes at the base of the brain
+57998,optic_cup eyecup,(embryology) a two-walled cuplike depression that develops into the pigmented and sensory layers of the retina
+57999,optic_nerve nervus_opticus second_cranial_nerve optic_tract,the cranial nerve that serves the retina
+58000,optic_radiation radiatio_optica,a nerve pathway from the lateral geniculate body to the visual cortex
+58001,optical_bench,apparatus for observation and measurement of optical phenomena
+58002,optical_crown crown_glass optical_crown_glass,optical glass of low dispersion and low refractive index
+58003,optical_density transmission_density photographic_density absorbance,(physics) a measure of the extent to which a substance transmits light or other electromagnetic radiation
+58004,optical_device,a device for producing or controlling light
+58005,optical_disk optical_disc,a disk coated with plastic that can store digital data as tiny pits etched in the surface; is read with a laser that scans the surface
+58006,optical_fiber glass_fiber optical_fibre glass_fibre,a very thin fiber made of glass that functions as a waveguide for light; used in bundles to transmit images
+58007,optical_flint flint_glass,optical glass of high dispersion and high refractive index
+58008,optical_glass,clear homogeneous glass of known refractive index; used to make lenses
+58009,optical_illusion,an optical phenomenon that results in a false or deceptive visual impression
+58010,optical_instrument,an instrument designed to aid vision
+58011,optical_opacity,opacity to light
+58012,optical_phenomenon,a physical phenomenon related to or involving light
+58013,optical_pyrometer pyroscope,a pyrometer that uses the color of the light emitted by a hot object
+58014,optical_telescope,an astronomical telescope designed to collect and record light from cosmic sources
+58015,optician lens_maker,a worker who makes glasses for remedying defects of vision
+58016,optics,the branch of physics that studies the physical properties of light
+58017,optics,optical properties; "the optics of a telescope"
+58018,optimism,the optimistic feeling that all is going to turn out well
+58019,optimism,a general disposition to expect the best in all things
+58020,optimist,a person disposed to take a favorable view of things
+58021,optimization optimisation,the act of rendering optimal; "the simultaneous optimization of growth and profitability"; "in an optimization problem we seek values of the variables that lead to an optimal value of the function that is to be optimized"; "to promote the optimization and diversification of agricultural products"
+58022,optimum,most favorable conditions or greatest degree or amount possible under given circumstances
+58023,option,the right to buy or sell property at an agreed price; the right is purchased and if it is not exercised by a stated date the money is forfeited
+58024,option alternative choice,one of a number of things from which only one can be chosen; "what option did I have?"; "there is no other alternative"; "my only choice is to refuse"
+58025,optometrist oculist,a person skilled in testing for defects of vision in order to prescribe corrective glasses
+58026,optometry,the practice of an optometrist
+58027,orach orache,any of various herbaceous plants of the genus Atriplex that thrive in deserts and salt marshes
+58028,oracle,a prophecy (usually obscure or allegorical) revealed by a priest or priestess; believed to be infallible
+58029,oracle,a shrine where an oracular god is consulted
+58030,oral oral_exam oral_examination viva_voce viva,an examination conducted by spoken communication
+58031,oral_cancer,malignant neoplasm of the lips of mouth; most common in men over the age of 60
+58032,oral_contraception,contraception achieved by taking oral contraceptive pills
+58033,oral_contract,an agreement that is not in writing and is not signed by the parties but is a real existing contract that lacks only the formal requirement of a memorandum to render it enforceable in litigation
+58034,oral_herpes herpes_labialis cold_sore fever_blister,caused by herpes simplex virus type 1 (HSV-1)
+58035,oral_personality,(psychoanalysis) a personality characterized either by generous optimism or aggressive and ambitious selfishness; formed in early childhood by fixation during the oral stage of development
+58036,oral_sex head,oral stimulation of the genitals; "they say he gives good head"
+58037,oral_smear,alimentary tract smear of material obtained from the mouth
+58038,oral_stage oral_phase,(psychoanalysis) the first sexual and social stage of an infant's development; the mouth is the focus of the libido and satisfaction comes from suckling and chewing and biting
+58039,orange,any pigment producing the orange color
+58040,orange,round yellow to orange fruit of any of several citrus trees
+58041,orange orange_tree,any citrus tree bearing oranges
+58042,orange orangeness,orange color or pigment; any of a range of colors between red and yellow
+58043,orange-blossom_orchid Sarcochilus_falcatus,diminutive Australian orchid with loose racemes of fragrant white flowers with purple and orange markings on the lip
+58044,orange_bat orange_horseshoe_bat Rhinonicteris_aurantius,a common bat of northwestern Australia having orange or yellow fur
+58045,orange_daisy orange_fleabane Erigeron_aurantiacus,mat-forming herb of Turkestan with nearly double orange-yellow flowers
+58046,orange_grass nitweed pineweed pine-weed Hypericum_gentianoides,annual wiry-stemmed North American weed with minute scalelike leaves and small yellow flowers
+58047,orange_grove,grove of orange trees
+58048,orange_hawkweed Pilosella_aurantiaca Hieracium_aurantiacum,European hawkweed having flower heads with bright orange-red rays; a troublesome weed especially as naturalized in northeastern North America; sometimes placed in genus Hieracium
+58049,orange_juice,bottled or freshly squeezed juice of oranges
+58050,orange_liqueur,liqueur flavored with orange
+58051,orange_marmalade,marmalade made from oranges
+58052,orange_milkwort yellow_milkwort candyweed yellow_bachelor's_button Polygala_lutea,bog plant of pine barrens of southeastern United States having spikes of irregular yellow-orange flowers
+58053,orange_mushroom_pimple,a variety of mushroom pimple
+58054,orange_peel,strips of orange peel cooked in sugar and coated with sugar
+58055,orange_peel orange_rind,the rind of an orange
+58056,orange_pekoe pekoe,a superior grade of black tea; grown in India and Sri Lanka and Java
+58057,orange_sneezeweed owlclaws Helenium_hoopesii,stout perennial herb of western United States having flower heads with drooping orange-yellow rays; causes spewing sickness in sheep
+58058,orange_soda,orange-flavored carbonated drink
+58059,orange_toast,buttered toast with sugar and grated orange rind and a little orange juice
+58060,orange_tortrix tortrix Argyrotaenia_citrana,California moth whose larvae live in especially oranges
+58061,orange_yellow saffron,a shade of yellow tinged with orange
+58062,orange_zest,tiny bits of orange peel
+58063,orangeade,sweetened beverage of diluted orange juice
+58064,orangery,a place where oranges are grown; a plantation of orange trees in warm climes or a greenhouse in cooler areas
+58065,orangewood,fine-grained wood of an orange tree; used in fine woodwork
+58066,orangutan orang orangutang Pongo_pygmaeus,large long-armed ape of Borneo and Sumatra having arboreal habits
+58067,oration,an instance of oratory; "he delivered an oration on the decline of family values"
+58068,orator speechmaker rhetorician public_speaker speechifier,a person who delivers a speech or oration
+58069,oratory,addressing an audience formally (usually a long and rhetorical address and often pompous); "he loved the sound of his own oratory"
+58070,orb-weaving_spider,a spider that spins a circular (or near circular) web
+58071,orb_web,a circular spider web
+58072,orbiculate_leaf,circular or nearly circular leaf
+58073,orbit celestial_orbit,the (usually elliptical) path described by one celestial body in its revolution about another; "he plotted the orbit of the moon"
+58074,orbit electron_orbit,the path of an electron around the nucleus of an atom
+58075,orbit_period,the time it takes to complete one full orbit around a celestial body; "the orbit period depends on the altitude of the satellite"
+58076,orbital_plane,(astronomy) the plane on which a body is orbiting
+58077,orbital_rotation orbital_motion,motion of an object in an orbit around a fixed point; "satellites in orbital rotation"
+58078,orbitale orbital_point,the craniometric point at the lowest point on the lower edge of the orbit
+58079,orchard_grass cocksfoot cockspur Dactylis_glomerata,widely grown stout Old World hay and pasture grass
+58080,orchard_oriole Icterus_spurius,the male is chestnut-and-black
+58081,orchestra,a musical organization consisting of a group of instrumentalists including string players
+58082,orchestra,seating on the main floor in a theater
+58083,orchestra_pit pit,lowered area in front of a stage where an orchestra accompanies the performers
+58084,orchestration,an arrangement of a piece of music for performance by an orchestra or band
+58085,orchestration,an arrangement of events that attempts to achieve a maximum effect; "the skillful orchestration of his political campaign"
+58086,orchestration instrumentation,the act of arranging a piece of music for an orchestra and assigning parts to the different musical instruments
+58087,orchestrator,an arranger who writes for orchestras
+58088,orchid orchidaceous_plant,any of numerous plants of the orchid family usually having flowers of unusual shapes and beautiful colors
+58089,orchidalgia,pain in the testes
+58090,orchidectomy orchiectomy,surgical removal of one or both testicles
+58091,orchil archil cudbear,a purplish dye obtained from orchil lichens
+58092,orchiopexy,operation to bring an undescended testicle into the scrotum
+58093,orchis,any of various deciduous terrestrial orchids having fleshy tubers and flowers in erect terminal racemes
+58094,orchitis,inflammation of one or both testes; characterized by pain and swelling
+58095,orchotomy,surgical incision into the testis to obtain material for analysis (as in cases of abnormally low sperm count)
+58096,ordainer,a cleric who ordains; a cleric who admits someone to holy orders
+58097,ordeal,a severe or trying experience
+58098,ordeal trial_by_ordeal,a primitive method of determining a person's guilt or innocence by subjecting the accused person to dangerous or painful tests believed to be under divine control; escape was usually taken as a sign of innocence
+58099,order,established customary state (especially of society); "order ruled in the streets"; "law and order"
+58100,order,(biology) taxonomic group containing one or more families
+58101,order,a request for something to be made, supplied, or served; "I gave the waiter my order"; "the company's products were in such demand that they got more orders than their call center could handle"
+58102,order,(often plural) a command given by a superior (e.g., a military or law enforcement officer) that must be obeyed; "the British ships dropped anchor and waited for orders from London"
+58103,order,(architecture) one of original three styles of Greek architecture distinguished by the type of column and entablature used or a style developed from the original three by the Romans
+58104,order monastic_order,a group of person living under a religious rule; "the order of Saint Benedict"
+58105,order order_of_magnitude,a degree in a continuum of size or quantity; "it was on the order of a mile"; "an explosion of a low order of magnitude"
+58106,order ordering,the act of putting things in a sequential arrangement; "there were mistakes in the ordering of items on the list"
+58107,order purchase_order,a commercial document used to request someone to supply something in return for payment and providing specifications and quantities; "IBM received an order for a hundred computers"
+58108,order rules_of_order parliamentary_law parliamentary_procedure,a body of rules followed by an assembly
+58109,order_Myxobacteria Myxobacterales order_Myxobacterales Myxobacteriales order_Myxobacteriales,an order of higher bacteria
+58110,order_arms,a position in the manual of arms; the rifle is held vertically on the right side with the butt on the ground; often used as a command
+58111,order_book,a book in which customers' orders are entered; usually makes multiple copies of the order
+58112,order_form,a form to use when placing an order
+58113,order_of_magnitude magnitude,a number assigned to the ratio of two quantities; two quantities are of the same order of magnitude if one is less than 10 times as large as the other; the number of magnitudes that the quantities differ is specified to within a power of 10
+58114,order_of_the_day,the order of business for an assembly on a given day
+58115,order_paper order_book,a printed copy of the order of the day
+58116,orderer,someone who places an order to buy
+58117,orderer systematizer systematiser systemizer systemiser systematist,an organizer who puts things in order; "Aristotle was a great orderer of ideas"
+58118,ordering order ordination,logical or comprehensible arrangement of separate elements; "we shall consider these questions in the inverse order of their presentation"
+58119,orderliness methodicalness,the quality of appreciating method and system
+58120,orderliness order,a condition of regular or proper arrangement; "he put his desk in order"; "the machine is now in working order"
+58121,orderly,a soldier who serves as an attendant to a superior officer; "the orderly laid out the general's uniform"
+58122,orderly hospital_attendant,a male hospital attendant who has general duties that do not involve the medical treatment of patients
+58123,orderly_sergeant,the first sergeant of a company; duties formerly included the conveyance of orders
+58124,ordinal_number ordinal no.,the number designating place in an ordered sequence
+58125,ordinance,a statute enacted by a city government
+58126,ordinand,a person being ordained
+58127,ordinariness mundaneness mundanity,the quality of being commonplace and ordinary
+58128,ordinary,the expected or commonplace condition or situation; "not out of the ordinary"
+58129,ordinary,a clergyman appointed to prepare condemned prisoners for death
+58130,ordinary,a judge of a probate court
+58131,ordinary,(heraldry) any of several conventional figures used on shields
+58132,ordinary ordinary_bicycle,an early bicycle with a very large front wheel and small back wheel
+58133,ordinary_annuity,an annuity paid in a series of more or less equal payments at the end of equally spaced periods
+58134,ordinate,the value of a coordinate on the vertical axis
+58135,ordination,the status of being ordained to a sacred office
+58136,ordination ordinance,the act of ordaining; the act of conferring (or receiving) holy orders; "the rabbi's family was present for his ordination"
+58137,ore,a mineral that contains metal that is valuable enough to be mined
+58138,ore,a monetary subunit in Denmark and Norway and Sweden; 100 ore equal 1 krona
+58139,ore_bed,a stratum of ore
+58140,oregano marjoram pot_marjoram wild_marjoram winter_sweet Origanum_vulgare,aromatic Eurasian perennial
+58141,oreo oreo_cookie,chocolate cookie with white cream filling
+58142,organ,a government agency or instrument devoted to the performance of some specific function; "The Census Bureau is an organ of the Commerce Department"
+58143,organ,a periodical that is published by a special interest group; "the organ of the communist party"
+58144,organ,a fully differentiated structural and functional unit in an animal that is specialized for some particular function
+58145,organ pipe_organ,wind instrument whose sound is produced by means of pipes arranged in sets supplied with air from a bellows and controlled from a large complex musical keyboard
+58146,organ-grinder,a street musician who plays a hand organ or hurdy-gurdy
+58147,organ_donor,someone from whom an organ is taken for transplantation
+58148,organ_loft,a gallery occupied by a church organ
+58149,organ_of_Corti,the hearing organ of the inner ear; contains receptors that respond to sound waves
+58150,organ_of_hearing,the part of the ear that is responsible for sensations of sound
+58151,organ_pipe pipe pipework,the flues and stops on a pipe organ
+58152,organ_stop,a graduated set of organ pipes of like tone quality
+58153,organdy organdie,a sheer stiff muslin
+58154,organelle cell_organelle cell_organ,a specialized part of a cell; analogous to an organ; "the first organelle to be identified was the nucleus"
+58155,organic organic_fertilizer organic_fertiliser,a fertilizer that is derived from animal or vegetable matter
+58156,organic_brain_syndrome,mental abnormality resulting from disturbance of the structure or function of the brain
+58157,organic_chemistry,the chemistry of compounds containing carbon (originally defined as the chemistry of substances produced by living organisms but now extended to substances synthesized artificially)
+58158,organic_compound,any compound of carbon and another element or a radical
+58159,organic_disorder,disorder caused by a detectable physiological or structural change in an organ
+58160,organic_light-emitting_diode OLED,a self-luminous diode (it glows when an electrical field is applied to the electrodes) that does not require backlighting or diffusers
+58161,organic_phenomenon,(biology) a natural phenomenon involving living plants and animals
+58162,organic_process biological_process,a process occurring in living organisms
+58163,organicism,theory that the total organization of an organism rather than the functioning of individual organs is the determinant of life processes
+58164,organification,the process of organ formation
+58165,organism,a system considered analogous in structure or function to a living body; "the social organism"
+58166,organism being,a living thing that has (or can develop) the ability to act or function independently
+58167,organist,a person who plays an organ
+58168,organization organisation,a group of people who work together
+58169,organization organisation,the act of organizing a business or an activity related to a business; "he was brought in to supervise the organization of a new department"
+58170,organization organisation,the activity or result of distributing or disposing persons or things properly or methodically; "his organization of the work force was very efficient"
+58171,organization organisation system,an ordered manner; orderliness by virtue of being methodical and well organized; "his compulsive organization was not an endearing quality"; "we can't do it unless we establish some system around here"
+58172,organization_chart,a chart showing the lines of responsibility between departments of a large organization
+58173,organization_expense,the cost (over a period of five years) of organizing a new corporation or partnership
+58174,organization_man,an employee who sacrifices his own individuality for the good of an organization
+58175,organized_crime gangland gangdom,underworld organizations
+58176,organized_labor,employees who are represented by a labor union
+58177,organizer organiser arranger,a person who brings order and organization to an enterprise; "she was the organizer of the meeting"
+58178,organizer organiser labor_organizer,someone who enlists workers to join a union
+58179,organon,a system of principles for philosophic or scientific investigations; an instrument for acquiring knowledge
+58180,organophosphate,an insecticide that interferes with an insect's nervous system
+58181,organophosphate_nerve_agent,any of a series of nerve agents containing organophosphate compounds first synthesized by German chemists in 1936; in World War II the Germans tested them in concentration camps but not on the battlefield; Iraq is alleged to have used them against Iran and against the Kurds
+58182,organza,a fabric made of silk or a silklike fabric that resembles organdy
+58183,orgasm climax sexual_climax coming,the moment of most intense pleasure in sexual intercourse
+58184,orgy,secret rite in the cults of ancient Greek or Roman deities involving singing and dancing and drinking and sexual activity
+58185,orgy binge splurge,any act of immoderate indulgence; "an orgy of shopping"; "an emotional binge"; "a splurge of spending"
+58186,orgy debauch debauchery saturnalia riot bacchanal bacchanalia drunken_revelry,a wild gathering involving excessive drinking and promiscuity
+58187,oriel oriel_window,a projecting bay window corbeled or cantilevered out from a wall
+58188,oriental_cherry Japanese_cherry Japanese_flowering_cherry Prunus_serrulata,ornamental tree with inedible fruits widely cultivated in many varieties for its white blossoms
+58189,oriental_cockroach oriental_roach Asiatic_cockroach blackbeetle Blatta_orientalis,dark brown cockroach originally from orient now nearly cosmopolitan in distribution
+58190,oriental_plane Platanus_orientalis,large tree of southeastern Europe to Asia Minor
+58191,oriental_poppy Papaver_orientale,commonly cultivated Asiatic perennial poppy having stiff heavily haired leaves and bright scarlet or pink to orange flowers
+58192,oriental_spruce Picea_orientalis,evergreen tree of the Caucasus and Asia Minor used as an ornamental having pendulous branchlets
+58193,orientalism,the quality or customs or mannerisms characteristic of Asian civilizations; "orientalisms can be found in Mozart's operas"
+58194,orientalist,a specialist in oriental subjects
+58195,orientation,position or alignment relative to points of the compass or other specific directions
+58196,orientation,an integrated set of attitudes and beliefs
+58197,orientation,a person's awareness of self with regard to position and time and place and personal relationships
+58198,orientation,the act of orienting
+58199,orientation_course orientation,a course introducing a new situation or environment
+58200,orifice opening porta,an aperture or hole that opens into a bodily cavity; "the orifice into the aorta from the lower left chamber of the heart"
+58201,oriflamme,an inspiring symbol or ideal that serves as a rallying point in a struggle
+58202,oriflamme,a red or orange-red flag used as a standard by early French kings
+58203,origami,the Japanese art of folding paper into shapes representing objects (e.g., flowers or birds)
+58204,origanum,any of various fragrant aromatic herbs of the genus Origanum used as seasonings
+58205,origin,the source of something's existence or from which it derives or is derived; "the rumor had its origin in idle gossip"; "vegetable origins"; "mineral origin"; "origin in sensation"
+58206,origin,the point of intersection of coordinate axes; where the values of the coordinates are all zero
+58207,origin descent extraction,properties attributable to your ancestry; "he comes from good origins"
+58208,origin origination inception,an event that is a beginning; a first part or stage of subsequent events
+58209,original archetype pilot,something that serves as a model or a basis for making copies; "this painting is a copy of the original"
+58210,original_sin,a sin said to be inherited by all descendants of Adam; "Adam and Eve committed the original sin when they ate the forbidden fruit in the Garden of Eden"
+58211,originalism,the belief that the United States Constitution should be interpreted in the way the authors originally intended it
+58212,originality,the ability to think and act independently
+58213,originality,the quality of being new and original (not derived from something else)
+58214,origination_fee,a fee charged to a borrower (especially for a mortgage loan) to cover the costs of initiating the loan
+58215,originator conceiver mastermind,someone who creates new things
+58216,orinasal_phone orinasal,a speech sound produced with both the oral and nasal passages open (as French nasal vowels)
+58217,orlop_deck orlop fourth_deck,the fourth or lowest deck
+58218,ormer sea-ear Haliotis_tuberculata,an abalone found near the Channel Islands
+58219,ormolu,brass that looks like gold; used to decorate furniture
+58220,ornamental,any plant grown for its beauty or ornamental value
+58221,ornamentalism,the practice of ornamental display
+58222,ornamentation,the state of being ornamented
+58223,ornamentation embellishment,the act of adding extraneous decorations to something
+58224,ornateness elaborateness,an ornate appearance; being elaborately (even excessively) decorated
+58225,ornithine,an amino acid that does not occur in proteins but is important in the formation of urea
+58226,ornithischian ornithischian_dinosaur,herbivorous dinosaur with a pelvis like that of a bird
+58227,ornithologist bird_watcher,a zoologist who studies birds
+58228,ornithology,the branch of zoology that studies birds
+58229,ornithomimid,lightly built medium-sized dinosaur having extremely long limbs and necks with small heads and big brains and large eyes
+58230,ornithopod ornithopod_dinosaur,bipedal herbivorous dinosaur
+58231,orogeny,the process of mountain formation (especially by the upward displacement of the earth's crust)
+58232,oroide oreide,alloy of copper and tin and zinc; used in imitation gold jewelry
+58233,orology orography,the science of mountains
+58234,oropharynx,cavity formed by the pharynx at the back of the mouth
+58235,orphan,someone or something who lacks support or care or supervision
+58236,orphan,a child who has lost both parents
+58237,orphan,the first line of a paragraph that is set as the last line of a page or column
+58238,orphan,a young animal without a mother
+58239,orphan_site,a toxic waste area where the polluter could not be identified or the polluter refused to take action or pay for the cleanup
+58240,orphanage orphanhood,the condition of being a child without living parents; "his early orphanage shaped his character as an adult"
+58241,orphanage orphans'_asylum,a public institution for the care of orphans
+58242,orphenadrine Norflex,a skeletal muscle relaxant (trade name Norflex) used to treat severe muscle strain and Parkinsonism
+58243,orphrey,a richly embroidered edging on an ecclesiastical vestment
+58244,orpiment,a yellow mineral occurring in conjunction with realgar; an ore of arsenic
+58245,orpine orpin livelong live-forever Sedum_telephium,perennial northern temperate plant with toothed leaves and heads of small purplish-white flowers
+58246,orrery,planetarium consisting of an apparatus that illustrates the relative positions and motions of bodies in the solar system by rotation and revolution of balls moved by wheelwork; sometimes incorporated in a clock
+58247,orrisroot orris,fragrant rootstock of various irises especially Florentine iris; used in perfumes and medicines
+58248,orthicon image_orthicon,a now obsolete picture pickup tube in a television camera; electrons emitted from a photoemissive surface in proportion to the intensity of the incident light are focused onto the target causing secondary emission of electrons
+58249,orthochorea,a form of chorea in which spasms occur mainly when the patient is erect
+58250,orthochromatic_film,a photographic film sensitive to green and blue and violet light
+58251,orthoclase,a white or colored monoclinic feldspar
+58252,orthodontic_treatment,dental treatment that corrects irregularities of the teeth or of the relation of the teeth to surrounding anatomy; treatment is usually by braces or mechanical aids; "orthodontic treatment of facial abnormalities"
+58253,orthodontics orthodontia orthodonture dental_orthopedics dental_orthopaedics,the branch of dentistry dealing with the prevention or correction of irregularities of the teeth
+58254,orthodontist,a dentist specializing in the prevention or correction of irregularities of the teeth
+58255,orthodox_sleep nonrapid_eye_movement_sleep NREM_sleep nonrapid_eye_movement NREM,a recurring sleep state during which rapid eye movements do not occur and dreaming does not occur; accounts for about 75% of normal sleep time
+58256,orthodoxy,a belief or orientation agreeing with conventional standards
+58257,orthodoxy,the quality of being orthodox (especially in religion)
+58258,orthoepist,a practitioner of orthoepy (especially one of the 17th or 18th century scholars who proposed to reform English spelling so it would reflect pronunciation more closely)
+58259,orthoepy,a term formerly used for the part of phonology that dealt with the `correct' pronunciation of words and its relation to `correct' orthography
+58260,orthogonality,the quality of lying or intersecting at right angles
+58261,orthogonality perpendicularity orthogonal_opposition,the relation of opposition between things at right angles
+58262,orthography writing_system,a method of representing the sounds of a language by written or printed symbols
+58263,orthomyxovirus,a group of viruses including those causing influenza
+58264,orthopedics orthopaedics,the branch of medical science concerned with disorders or deformities of the spine and joints
+58265,orthopedist orthopaedist,a specialist in correcting deformities of the skeletal system (especially in children)
+58266,orthopnea,form of dyspnea in which the person can breathe comfortably only when standing or sitting erect; associated with asthma and emphysema and angina pectoris
+58267,orthopter ornithopter,heavier-than-air craft that is propelled by the flapping of wings
+58268,orthopterous_insect orthopteron orthopteran,any of various insects having leathery forewings and membranous hind wings and chewing mouthparts
+58269,orthoptics,treatment of defects of binocular vision (such as strabismus and amblyopia) by nonsurgical measures (especially by exercises to strengthen the eye muscles)
+58270,orthoptist,a specialist in orthoptics
+58271,orthoscope,an ophthalmoscope with a layer of water to neutralize the refraction of the cornea
+58272,orthostatic_hypotension postural_hypotension,low blood pressure occurring in some people when they stand up
+58273,orthotropous_ovule,a completely straight ovule with the micropyle at the apex
+58274,ortolan ortolan_bunting Emberiza_hortulana,brownish Old World bunting often eaten as a delicacy
+58275,ortygan,any of several East Indian birds
+58276,oryx pasang,large African antelope with long straight nearly upright horns
+58277,orzo,pasta shaped like pearls of barley; frequently prepared with lamb in Greek cuisine
+58278,os,a mouth or mouthlike opening
+58279,osage_orange bow_wood mock_orange Maclura_pomifera,small shrubby deciduous yellowwood tree of south central United States having spines, glossy dark green leaves and an inedible fruit that resembles an orange; its hard orange-colored wood used for bows by Native Americans; frequently planted as boundary hedge
+58280,oscheocele oscheocoele,swelling of the scrotum
+58281,oscillation,the process of oscillating between states
+58282,oscillation vibration,(physics) a regular periodic variation in value about a mean
+58283,oscillator,generator that produces sonic oscillations or alternating current
+58284,oscillogram,the recording produced by an oscillograph
+58285,oscillograph,a device for making a record of the wave forms of fluctuating voltages or currents
+58286,oscilloscope scope cathode-ray_oscilloscope CRO,electronic equipment that provides visual images of varying electrical quantities
+58287,oscine oscine_bird,passerine bird having specialized vocal apparatus
+58288,oscitancy oscitance,drowsiness and dullness manifested by yawning
+58289,osculation,(mathematics) a contact of two curves (or two surfaces) at which they have a common tangent
+58290,osier,flexible twig of a willow tree
+58291,osier,any of various willows having pliable twigs used in basketry and furniture
+58292,osmiridium iridosmine,a hard and corrosion resistant mineral that is a natural alloy of osmium and iridium (usually containing small amounts of rhodium and platinum); used in needles and pen nibs etc.
+58293,osmium Os atomic_number_76,a hard brittle blue-grey or blue-black metallic element that is one of the platinum metals; the heaviest metal known
+58294,osmoreceptor,sensory end organ that responds to changes in osmotic pressure
+58295,osmosis,(biology, chemistry) diffusion of molecules through a semipermeable membrane from a place of higher concentration to a place of lower concentration until the concentration on both sides is equal
+58296,osmotic_pressure,(physical chemistry) the pressure exerted by a solution necessary to prevent osmosis into that solution when it is separated from the pure solvent by a semipermeable membrane
+58297,osprey fish_hawk fish_eagle sea_eagle Pandion_haliaetus,large harmless hawk found worldwide that feeds on fish and builds a bulky nest often occupied for years
+58298,ossicle bonelet ossiculum,a small bone; especially one in the middle ear
+58299,ossification,the calcification of soft tissue into a bonelike material
+58300,ossification,the process of becoming rigidly fixed in a conventional pattern of thought or behavior
+58301,ossification,the developmental process of bone formation
+58302,ossification conformity,hardened conventionality
+58303,osso_buco,sliced veal knuckle or shin bone cooked with olive oil and wine and tomatoes and served with rice or vegetables
+58304,ossuary,any receptacle for the burial of human bones
+58305,osteitis,inflammation of a bone as a consequence of infection or trauma or degeneration
+58306,ostensive_definition,a definition that points out or exhibits instances of the term defined
+58307,ostentation,pretentious or showy or vulgar display
+58308,ostentation fanfare flash,a gaudy outward display
+58309,ostentation ostentatiousness pomposity pompousness pretentiousness puffiness splashiness inflation,lack of elegance as a consequence of being pompous and puffed up with vanity
+58310,osteoarthritis degenerative_arthritis degenerative_joint_disease,chronic breakdown of cartilage in the joints; the most common form of arthritis occurring usually after middle age
+58311,osteoblast bone-forming_cell,a cell from which bone develops
+58312,osteoblastoma,benign tumor of bone and fibrous tissue; occurs in the vertebrae or femur or tibia or arm bones (especially in young adults)
+58313,osteochondroma,benign tumor containing both bone and cartilage; usually occurs near the end of a long bone
+58314,osteoclasis,treatment of a skeletal deformity by intentionally fracturing a bone
+58315,osteoclast,cell that functions in the breakdown and resorption of bone tissue
+58316,osteocyte,mature bone cell
+58317,osteodystrophy,defective bone development; usually attributable to renal disease or to disturbances in calcium and phosphorus metabolism
+58318,osteogenesis_imperfecta,autosomal dominant disorder of connective tissue characterized by brittle bones that fracture easily
+58319,osteologist osteologer,an anatomist who is skilled is osteology
+58320,osteology,the branch of anatomy that studies the bones of the vertebrate skeleton
+58321,osteolysis,lysis of bone caused by disease or infection or inadequate blood supply
+58322,osteoma,a slow growing benign tumor of consisting of bone tissue; usually on the skull or mandible
+58323,osteomalacia,abnormal softening of bones caused by deficiencies of phosphorus or calcium or vitamin D
+58324,osteomyelitis,an inflammation of bone and bone marrow (usually caused by bacterial infection)
+58325,osteopath osteopathist,a therapist who manipulates the skeleton and muscles
+58326,osteopathy,therapy based on the assumption that restoring health is best accomplished by manipulating the skeleton and muscles
+58327,osteopetrosis Albers-Schonberg_disease marble_bones_disease,an inherited disorder characterized by an increase in bone density; in severe forms the bone marrow cavity may be obliterated
+58328,osteophyte,small abnormal bony outgrowth
+58329,osteoporosis,abnormal loss of bony tissue resulting in fragile porous bones attributable to a lack of calcium; most common in postmenopausal women
+58330,osteosarcoma osteogenic_sarcoma,malignant bone tumor; most common in children and young adults where it tends to affect the femur
+58331,osteosclerosis,abnormal hardening or eburnation of bone
+58332,osteostracan cephalaspid,extinct jawless fish of the Devonian with armored head
+58333,osteotomy,surgical sectioning of bone
+58334,ostinato,a musical phrase repeated over and over during a composition
+58335,ostiole,a small pore especially one in the reproductive bodies of certain algae and fungi through which spores pass
+58336,ostomy,surgical procedure that creates an artificial opening for the elimination of bodily wastes
+58337,ostracism,the act of excluding someone from society by general consent
+58338,ostracoderm,extinct fish-like jawless vertebrate having a heavily armored body; of the Paleozoic
+58339,ostrich,a person who refuses to face reality or recognize the truth (a reference to the popular notion that the ostrich hides from danger by burying its head in the sand)
+58340,ostrich Struthio_camelus,fast-running African flightless bird with two-toed feet; largest living bird
+58341,ostrich_fern shuttlecock_fern fiddlehead Matteuccia_struthiopteris Pteretis_struthiopteris Onoclea_struthiopteris,tall fern of northern temperate regions having graceful arched fronds and sporophylls resembling ostrich plumes
+58342,otherness distinctness separateness,the quality of being not alike; being distinct or different from that otherwise experienced or known
+58343,otherworld,an abstract spiritual world beyond earthly reality
+58344,othonna,a South African plant of the genus Othonna having smooth often fleshy leaves and heads of yellow flowers
+58345,otic_ganglion otoganglion,an autonomic ganglion whose postganglionic fibers are distributed to the parotid gland
+58346,otitis,inflammation of the ear
+58347,otitis_externa,inflammation of the external ear (including auricle and ear canal)
+58348,otitis_media,inflammation of the middle ear; common in children
+58349,otology,the branch of medicine concerned with the ear
+58350,otoplasty,reconstructive surgery of the auricle of the external ear
+58351,otorrhea,discharge from the external ear
+58352,otosclerosis,hereditary disorder in which ossification of the labyrinth of the inner ear causes tinnitus and eventual deafness
+58353,otoscope auriscope auroscope,medical instrument consisting of a magnifying lens and light; used for examining the external ear (the auditory meatus and especially the tympanic membrane)
+58354,ottava_rima,a stanza of eight lines of heroic verse with the rhyme scheme abababcc
+58355,otter,the fur of an otter
+58356,otter,freshwater carnivorous mammal having webbed and clawed feet and dark brown fur
+58357,otter_shrew potamogale Potamogale_velox,amphibious African insectivorous mammal that resembles an otter
+58358,otterhound otter_hound,hardy British hound having long pendulous ears and a thick coarse shaggy coat with an oily undercoat; bred for hunting otters
+58359,ottoman pouf pouffe puff hassock,thick cushion used as a seat
+58360,oubliette,a dungeon with the only entrance or exit being a trap door in the ceiling
+58361,ouguiya,the basic unit of money in Mauritania
+58362,ounce oz.,a unit of weight equal to one sixteenth of a pound or 16 drams or 28.349 grams
+58363,ounce troy_ounce apothecaries'_ounce,a unit of apothecary weight equal to 480 grains or one twelfth of a troy pound
+58364,ouster,a wrongful dispossession
+58365,ouster ejector,a person who ousts or supplants someone else
+58366,ouster ousting,the act of ejecting someone or forcing them out
+58367,out,(baseball) a failure by a batter or runner to reach a base safely in baseball; "you only get 3 outs per inning"
+58368,out-and-outer,someone who is excellent at something
+58369,out-basket out-tray,a wood or metal receptacle placed on your desk to hold your outgoing material
+58370,out-of-body_experience,the dissociative experience of observing yourself from an external perspective as though your mind or soul had left and was observing your body
+58371,out-of-court_settlement,resolution of a dispute prior to the rendering of a final decision by the trial court
+58372,outage,the amount of something (as whiskey or oil) lost in storage or transportation
+58373,outage,a temporary suspension of operation (as of computers); "there will be a network outage from 8 to 10 a.m."
+58374,outback,the bush country of the interior of Australia
+58375,outboard_motor outboard,internal-combustion engine that mounts at stern of small boat
+58376,outboard_motorboat outboard,a motorboat with an outboard motor
+58377,outbreak eruption irruption,a sudden violent spontaneous occurrence (usually of some undesirable condition); "the outbreak of hostilities"
+58378,outbuilding,a building that is subordinate to and separate from a main building
+58379,outburst burst flare-up,a sudden intense happening; "an outburst of heavy rain"; "a burst of lightning"
+58380,outburst tumultuous_disturbance,a sudden violent disturbance
+58381,outcast castaway pariah Ishmael,a person who is rejected (from society or home)
+58382,outcaste,a person belonging to no caste
+58383,outcrop outcropping rock_outcrop,the part of a rock formation that appears above the surface of the surrounding land
+58384,outdoor_game,an athletic game that is played outdoors
+58385,outdoor_sport field_sport,a sport that is played outdoors
+58386,outdoors out-of-doors open_air open,where the air is unconfined; "he wanted to get outdoors a little"; "the concert was held in the open air"; "camping in the open"
+58387,outdoorsman,a person who spends time outdoors (e.g., hunting or fishing)
+58388,outdoorswoman,a woman who spends time outdoors (e.g., hunting and fishing)
+58389,outer_planet,(astronomy) a major planet whose orbit is outside the asteroid belt (Jupiter, Saturn, Uranus, Neptune, Pluto)
+58390,outer_space space,any location outside the Earth's atmosphere; "the astronauts walked in outer space without a tether"; "the first major milestone in space exploration was in 1957, when the USSR's Sputnik 1 orbited the Earth"
+58391,outercourse,sexual stimulation without vaginal penetration; "since pregnancy cannot happen if sperm are kept out of the vagina, outercourse is one method of birth control"
+58392,outerwear overclothes,clothing for use outdoors
+58393,outfall,the outlet of a river or drain or other source of water
+58394,outfield,the area of a baseball playing field beyond the lines connecting the bases
+58395,outfielder,(baseball) a person who plays in the outfield
+58396,outfielder,a fielder in cricket who is stationed in the outfield
+58397,outfit,any cohesive unit such as a military company
+58398,outfit getup rig turnout,a set of clothing (with accessories); "his getup was exceedingly elegant"
+58399,outfitter,someone who sells men's clothes
+58400,outfitter,a shop that provides equipment for some specific purpose; "an outfitter provided everything needed for the safari"
+58401,outfitting,the act of renovating and fitting out a ship
+58402,outflow effluence efflux,the process of flowing out
+58403,outgo spending expenditure outlay,money paid out; an amount spent
+58404,outgrowth branch offshoot offset,a natural consequence of development
+58405,outhouse privy earth-closet jakes,a small outbuilding with a bench having holes through which a user can defecate
+58406,outlandishness bizarreness weirdness,strikingly out of the ordinary
+58407,outlet_box,(electricity) receptacle consisting of the metal box designed for connections to a wiring system
+58408,outlier,a person who lives away from his place of work
+58409,outlier,an extreme deviation from the mean
+58410,outline lineation,the line that appears to bound an object
+58411,outline schema scheme,a schematic or preliminary plan
+58412,outline synopsis abstract precis,a sketchy summary of the main points of an argument or theory
+58413,outpatient,a patient who does not reside in the hospital where he is being treated
+58414,outport,a subsidiary port built in deeper water than the original port (but usually farther from the center of trade)
+58415,outpost,a military post stationed at a distance from the main body of troops
+58416,output outturn turnout,what is produced in a given time period
+58417,output yield,production of a certain amount
+58418,output yield production,the quantity of something (as a commodity) that is created (usually within a given period of time); "production was up in the second quarter"
+58419,output-to-input_ratio,the output power of a transducer divided by the input power
+58420,output_contract,a contract in which you promise to deliver your entire output to the other party who promises to accept it
+58421,output_device,electronic or electromechanical equipment connected to a computer and used to transfer data out of the computer in the form of text, images, sounds, or other media
+58422,output_file,(computer science) a computer file that contains data that are the output of a device or program
+58423,output_program,a utility program that organizes the output of a computer
+58424,output_routine,a routine that controls an output device
+58425,output_signal output,signal that comes out of an electronic system
+58426,outrage,a wantonly cruel act
+58427,outrageousness enormity,the quality of being outrageous
+58428,outreach,the act of reaching out; "the outreach toward truth of the human spirit"
+58429,outrider,an escort who rides ahead (as a member of the vanguard)
+58430,outrigger,a stabilizer for a canoe; spars attach to a shaped log or float parallel to the hull
+58431,outrigger_canoe,a seagoing canoe (as in South Pacific) with an outrigger to prevent it from upsetting
+58432,outside exterior,the region that is outside of something
+58433,outside exterior,the outer side or surface of something
+58434,outside_caliper,caliper for measuring outside dimensions; points on its legs curve inward
+58435,outside_clinch,a clinch with the end of the line outside the loop
+58436,outside_loop,a loop consisting of a dive followed by inverted flight followed by a climb that returns to horizontal flight
+58437,outside_mirror,car mirror that reflects the view at side and behind car
+58438,outsider,a contestant (human or animal) not considered to have a good chance to win
+58439,outsider_art self-taught_art vernacular_art naive_art primitive_art,a genre of art and outdoor constructions made by untrained artists who do not recognize themselves as artists
+58440,outsize,an unusual garment size (especially one that is very large)
+58441,outskirt fringe,a part of the city far removed from the center; "they built a factory on the outskirts of the city"
+58442,outskirts,outlying areas (as of a city or town); "they lived on the outskirts of Houston"; "they mingled in the outskirts of the crowd"
+58443,outsole,the outer sole of a shoe or boot that is the bottom of the shoe and makes contact with the ground
+58444,outstation outpost,a station in a remote or sparsely populated location
+58445,outstroke,the stroke of an engine piston moving toward the crankshaft
+58446,outtake,a scene that is filmed but is not used in the final editing of the film
+58447,outthrust,an outcropping of rock that extends outward
+58448,outwardness,concern with outward things or material objects as opposed to the mind and spirit; "what is the origin of the outwardness of our sensations of sound, smell, or taste"; "an abstract conception with feelings of reality and spatial outwardness attached to it"
+58449,outwardness,a concern with or responsiveness to outward things (especially material objects as opposed to ideal concepts); "hearty showmanship and all-round outwardness"
+58450,outwardness externality,the quality or state of being outside or directed toward or relating to the outside or exterior; "the outwardness of the world"
+58451,outwork,subsidiary defensive structure lying outside the main fortified area; "the outworks of the castle"
+58452,ouzo,a Greek liquor flavored with anise
+58453,ovarian_artery arteria_ovarica,the artery that branches from the aorta and supplies blood to the ovaries
+58454,ovarian_cyst,a cystic tumor (usually benign) of the ovary
+58455,ovarian_pregnancy,ectopic pregnancy in the ovary
+58456,ovarian_vein vena_ovarica,one of the veins that drain the ovaries; the right opens into the inferior vena cava; the left opens into the left renal vein
+58457,ovaritis,inflammation of the ovaries
+58458,ovary,the organ that bears the ovules of a flower
+58459,ovary,(vertebrates) one of usually two organs that produce ova and secrete estrogen and progesterone
+58460,ovate_leaf,an egg-shaped leaf with the broader end at the base
+58461,ovation standing_ovation,enthusiastic recognition (especially one accompanied by loud applause)
+58462,oven,kitchen appliance used for baking or roasting
+58463,oven_thermometer,a thermometer that registers the temperature inside an oven
+58464,ovenbird,small brownish South American birds that build oven-shaped clay nests
+58465,ovenbird Seiurus_aurocapillus,American warbler; builds a dome-shaped nest on the ground
+58466,ovenware,heat-resistant dishware in which food can be cooked as well as served
+58467,over,(cricket) the division of play during which six balls are bowled at the batsman by one player from the other team from the same end of the pitch
+58468,over-the-counter_drug over-the-counter_medicine,a drug that is sold without a prescription
+58469,over-the-counter_market OTC_market,a stock exchange where securities transactions are made via telephone and computer rather than on the floor of an exchange
+58470,over-the-shoulder_bombing,a special case of loft bombing in which the bomb is released past the vertical so it is tossed back to the target
+58471,over_the_counter_stock OTC_stock unlisted_stock,stock that is not listed and traded on an organized exchange
+58472,overabundance overmuch overmuchness superabundance,a quantity that is more than what is appropriate; "four-year-olds have an overabundance of energy"; "we received an inundation of email"
+58473,overachievement,better than expected performance (better than might have been predicted from intelligence tests)
+58474,overachiever,a student who attains higher standards than the IQ indicated
+58475,overactivity,excessive activity; "overactivity of the sebaceous glands causes the skin to become oily"
+58476,overage,a surplus or excess of money or merchandise that is actually on hand and that exceeds expectations
+58477,overall,(usually plural) work clothing consisting of denim trousers (usually with a bib and shoulder straps)
+58478,overall boilersuit boilers_suit,a loose protective coverall or smock worn over ordinary clothing for dirty work
+58479,overanxiety,excessive anxiety
+58480,overbid,a bid that is higher than preceding bids
+58481,overbid overcall,(bridge) a bid that is higher than your opponent's bid (especially when your partner has not bid at all and your bid exceeds the value of your hand)
+58482,overbite,(dentistry) malocclusion in which the upper teeth extend abnormally far over the lower teeth
+58483,overburden,the surface soil that must be moved away to get at coal seams and mineral deposits
+58484,overcapitalization overcapitalisation,(business) too much capitalization (the sale of more stock than the business warrants)
+58485,overcast,a cast that falls beyond the intended spot
+58486,overcast overcasting,a long whipstitch or overhand stitch overlying an edge to prevent raveling
+58487,overcharge,a price that is too high
+58488,overcoat overcoating,an additional protective coating (as of paint or varnish)
+58489,overcompensation,(psychiatry) an attempt to overcome a real or imagined defect or unwanted trait by overly exaggerating its opposite
+58490,overcompensation,excessive compensation
+58491,overcredulity,too much credulity
+58492,overcup_oak Quercus_lyrata,medium-large deciduous timber tree of central and southern United States; acorns deeply immersed in the cup and mature in first year
+58493,overdraft,a draft in excess of the credit balance
+58494,overdraft_credit check_overdraft_credit,credit provided by a bank in honoring a customer's overdrafts
+58495,overdrive,the state of high or excessive activity or productivity or concentration; "Troops are ready to go into overdrive as soon as the signal is given"; "Melissa's brain was in overdrive"
+58496,overdrive,a high gear used at high speeds to maintain the driving speed with less output power
+58497,overemphasis,too much emphasis
+58498,overestimate overestimation overrating overreckoning,a calculation that results in an estimate that is too high
+58499,overestimate overestimation overvaluation overappraisal,an appraisal that is too high
+58500,overexertion,excessive exertion; so much exertion that discomfort or injury results
+58501,overexploitation overuse overutilization overutilisation,exploitation to the point of diminishing returns
+58502,overexposure,the act of exposing film to too much light or for too long a time
+58503,overexposure,the act of exposing someone excessively to an influencing experience; "an overexposure to violence on television"
+58504,overfeeding,excessive feeding
+58505,overflight,a flight by an aircraft over a particular area (especially over an area in foreign territory)
+58506,overflow runoff overspill,the occurrence of surplus liquid (as water) exceeding the limit or capacity
+58507,overflow_incontinence,urinary incontinence that occurs when the bladder is so full that it continually leaks urine; often attributable to a blocked urethra (e.g., due to prostate enlargement) or weak bladder muscles or nerve damage
+58508,overgarment outer_garment,a garment worn over other garments
+58509,overgrowth,a profusion of growth on or over something else
+58510,overhand_knot,a simple small knot (often used as part of other knots)
+58511,overhand_pitch,a baseball pitch in which the hand moves above the shoulder
+58512,overhand_stitch,a stitch passing over an edge vertically
+58513,overhang,projection that extends beyond or hangs over something else
+58514,overhaul inspection_and_repair service,periodic maintenance on a car or machine; "it was time for an overhaul on the tractor"
+58515,overhead,(nautical) the top surface of an enclosed space on a ship
+58516,overhead smash,a hard return hitting the tennis ball above your head
+58517,overhead_projector,a projector operated by a speaker; projects the image over the speaker's head
+58518,overheating,excessive heating
+58519,overindulgence excess,excessive indulgence; "the child was spoiled by overindulgence"
+58520,overkill,the capability to obliterate a target with more weapons (especially nuclear weapons) than are required
+58521,overkill,any effort that seems to go farther than would be necessary to achieve its goal
+58522,overlap,the property of partial coincidence in time
+58523,overlap convergence intersection,a representation of common ground between theories or phenomena; "there was no overlap between their proposals"
+58524,overlay,a layer of decorative material (such as gold leaf or wood veneer) applied over a surface
+58525,overlip,the upper lip
+58526,overload,an electrical load that exceeds the available electrical power
+58527,overload overburden,an excessive burden
+58528,overlook,a high place affording a good view
+58529,overlord master lord,a person who has general authority over others
+58530,overlordship,the position of overlord
+58531,overmantel,a shelf over a mantelpiece
+58532,overnighter,a guest who stays overnight
+58533,overnighter overnight_bag overnight_case,a small traveling bag to carry clothing and accessories for staying overnight
+58534,overpass flyover,bridge formed by the upper level of a crossing of two highways at different levels
+58535,overpayment,a payment larger than needed or expected
+58536,overpayment,the act of paying too much
+58537,overplus plethora superfluity embarrassment,extreme excess; "an embarrassment of riches"
+58538,overpopulation,too much population
+58539,overpressure,a transient air pressure greater than the surrounding atmospheric pressure; "the overpressure of the blast kills by lethal concussion"
+58540,overprint surprint,something added by overprinting
+58541,overproduction overrun,too much production or more than expected
+58542,overreaction,an excessive reaction; a reaction with inappropriate emotional behavior
+58543,override,a manually operated device to correct the operation of an automatic device
+58544,overseer superintendent,a person who directs and manages an organization
+58545,oversensitiveness,sensitivity leading to easy irritation or upset
+58546,overshoe,footwear that protects your shoes from water or snow or cold
+58547,overshoot wave-off go-around,an approach that fails and gives way to another attempt
+58548,oversight inadvertence,an unintentional omission resulting from failure to notice something
+58549,oversight lapse,a mistake resulting from inattention
+58550,oversimplification simplism,a simplification that goes too far (to the point of misrepresentation)
+58551,oversimplification simplism,an act of excessive simplification; the act of making something seem simpler than it really is
+58552,overskirt,an outer skirt worn over another skirt
+58553,overspill,the relocation of people from overcrowded cities; they are accommodated in new houses or apartments in smaller towns
+58554,overstrain,too much strain
+58555,overt_operation,the collection of intelligence openly without concealment
+58556,overthrow,the termination of a ruler or institution (especially by force)
+58557,overtime,work done in addition to regular working hours
+58558,overtime extra_time,playing time beyond regulation, to break a tie
+58559,overtime_period,a period of overtime play to resolve a tie; e.g. basketball
+58560,overtolerance,too much permissiveness
+58561,overtone,(usually plural) an ulterior implicit meaning or quality; "overtones of despair"
+58562,overtone partial partial_tone,a harmonic with a frequency that is a multiple of the fundamental frequency
+58563,overture,orchestral music played at the beginning of an opera or oratorio
+58564,overture advance approach feeler,a tentative suggestion designed to elicit the reactions of others; "she rejected his advances"
+58565,overturn upset,an improbable and unexpected victory; "the biggest upset since David beat Goliath"
+58566,overvaluation,too high a value or price assigned to something
+58567,overview,a general summary of a subject; "the treasurer gave a brief overview of the financial consequences"
+58568,overwork overworking,the act of working too much or too long; "he became ill from overwork"
+58569,ovipositor,egg-laying tubular structure at the end of the abdomen in many female insects and some fishes
+58570,oviraptorid,advanced carnivorous theropod
+58571,ovoid,an egg-shaped object
+58572,ovolo thumb quarter_round,a convex molding having a cross section in the form of a quarter of a circle or of an ellipse
+58573,ovotestis,hermaphroditic gonad that contains both testicular and ovarian tissue
+58574,ovulation,the expulsion of an ovum from the ovary (usually midway in the menstrual cycle)
+58575,ovulation_method_of_family_planning ovulation_method,natural family planning in which the fertile period is inferred from changes in the character and quantity of cervical mucus; ovulation is marked by an increase in mucus that becomes sticky and then clearer and slippery
+58576,ovule,a small body that contains the female germ cell of a plant; develops into a seed after fertilization
+58577,ovule,a small or immature ovum
+58578,ovum egg_cell,the female reproductive cell; the female gamete
+58579,owl bird_of_Minerva bird_of_night hooter,nocturnal bird of prey with hawk-like beak and claws and large head with front-facing eyes
+58580,owlet,young owl
+58581,own_goal,(soccer) a goal that results when a player inadvertently knocks the ball into the goal he is defending; "the own goal cost them the game"
+58582,owner possessor,a person who owns something; "they are searching for the owner of the car"; "who is the owner of that friendly smile?"
+58583,owner proprietor,(law) someone who owns (is legal possessor of) a business; "he is the owner of a chain of restaurants"
+58584,owner-driver,a motorist who owns the car that he/she drives
+58585,owner-occupier,an occupant who owns the home that he/she lives in
+58586,ownership,the state or fact of being an owner
+58587,ownership,the relation of an owner to the thing possessed; possession with the right to transfer possession to others
+58588,ox,an adult castrated bull of the genus Bos; especially Bos taurus
+58589,ox wild_ox,any of various wild bovines especially of the genera Bos or closely related Bibos
+58590,oxacillin,a form of penicillin resistant to penicillinase and effective against penicillin-resistant staphylococci
+58591,oxalacetate oxaloacetate,a salt or ester of oxalacetic acid
+58592,oxalacetic_acid oxaloacetic_acid,an acid formed by oxidation of maleic acid (as in metabolism of fats and carbohydrates)
+58593,oxalate,a salt or ester of oxalic acid
+58594,oxalic_acid ethanedioic_acid,a toxic colorless crystalline organic acid found in oxalis and other plants; used as a bleach and rust remover and in chemical analysis
+58595,oxalis sorrel wood_sorrel,any plant or flower of the genus Oxalis
+58596,oxaprozin Daypro,a nonsteroidal anti-inflammatory drug (trade name Daypro)
+58597,oxazepam Serax,a tranquilizing drug (trade name Serax) used to treat anxiety and insomnia and alcohol withdrawal
+58598,oxblood_red,a dark brownish-red color
+58599,oxbow,the land inside an oxbow bend in a river
+58600,oxbow,a U-shaped curve in a stream
+58601,oxbow,a wooden framework bent in the shape of a U; its upper ends are attached to the horizontal yoke and the loop goes around the neck of an ox
+58602,oxbow_lake,a crescent-shaped lake (often temporary) that is formed when a meander of a river is cut off from the main channel
+58603,oxcart,a cart that is drawn by an ox
+58604,oxeye,Eurasian perennial herbs having daisylike flowers with yellow rays and dark centers
+58605,oxeye,an oval or round dormer window
+58606,oxeye_daisy Leucanthemum_maximum Chrysanthemum_maximum,similar to oxeye daisy
+58607,oxeye_daisy ox-eyed_daisy marguerite moon_daisy white_daisy Leucanthemum_vulgare Chrysanthemum_leucanthemum,tall leafy-stemmed Eurasian perennial with white flowers; widely naturalized; often placed in genus Chrysanthemum
+58608,oxford,a low shoe laced over the instep
+58609,oxidant oxidizer oxidiser oxidizing_agent,a substance that oxidizes another substance
+58610,oxidase,any of the enzymes that catalyze biological oxidation
+58611,oxidation oxidization oxidisation,the process of oxidizing; the addition of oxygen to a compound with a loss of electrons; always occurs accompanied by reduction
+58612,oxidation-reduction oxidoreduction redox,a reversible chemical reaction in which one reaction is an oxidation and the reverse is a reduction
+58613,oxidation-reduction_indicator,an indicator that shows a reversible color change between oxidized and reduced forms
+58614,oxidation_number oxidation_state,the degree of oxidation of an atom or ion or molecule; for simple atoms or ions the oxidation number is equal to the ionic charge; "the oxidation number of hydrogen is +1 and of oxygen is -2"
+58615,oxidative_phosphorylation,an enzymatic process in cell metabolism that synthesizes ATP from ADP
+58616,oxide,any compound of oxygen with another element or a radical
+58617,oxidized_LDL_cholesterol,LDL cholesterol that has been bombarded by free radicals; it is thought to cause atherosclerosis
+58618,oxidoreductase,an enzyme that catalyzes oxidation-reduction
+58619,oxime,any compound containing the group -C=NOH
+58620,oximeter,a measuring instrument that measures the oxygen in arterial blood
+58621,oxlip paigle Primula_elatior,Eurasian primrose with yellow flowers clustered in a one-sided umbel
+58622,oxtail,the skinned tail of cattle; used especially for soups
+58623,oxtail_soup,a soup made from the skinned tail of an ox
+58624,oxtant,a unit of angular distance equal to half a quadrant
+58625,oxtongue bristly_oxtongue bitterweed bugloss Picris_echioides,widespread European weed with spiny tongue-shaped leaves and yellow flowers; naturalized in United States
+58626,oxyacetylene,a mixture of oxygen and acetylene; used to create high temperatures for cutting or welding metals
+58627,oxyacetylene_torch,a blowtorch that burns oxyacetylene
+58628,oxyacid oxygen_acid,any acid that contains oxygen
+58629,oxycephaly acrocephaly,a congenital abnormality of the skull; the top of the skull assumes a cone shape
+58630,oxygen O atomic_number_8,a nonmetallic bivalent element that is normally a colorless odorless tasteless nonflammable diatomic gas; constitutes 21 percent of the atmosphere by volume; the most abundant element in the earth's crust
+58631,oxygen_debt,a cumulative deficit of oxygen resulting from intense exercise; the deficit must be made up when the body returns to rest
+58632,oxygen_deficit,temporary oxygen shortage in cells resulting from strenuous exercise
+58633,oxygen_mask,a breathing device that is placed over the mouth and nose; supplies oxygen from an attached storage tank
+58634,oxygenase,an oxidoreductase that catalyzes the incorporation of molecular oxygen
+58635,oxygenation,the process of providing or combining or treating with oxygen; "the oxygenation of the blood"
+58636,oxyhemoglobin oxyhaemoglobin,the bright red hemoglobin that is a combination of hemoglobin and oxygen from the lungs; "oxyhemoglobin transports oxygen to the cells of the body"
+58637,oxymoron,conjoining contradictory terms (as in `deafening silence')
+58638,oxyopia,unusually acute vision
+58639,oxyphenbutazone Tandearil,an anti-inflammatory drug (trade name Tandearil) used to treat arthritis and bursitis
+58640,oxyphencyclimine Daricon,an anticholinergic drug (trade name Daricon) used in treating peptic ulcers
+58641,oxytetracycline hydroxytetracycline oxytetracycline_hydrochloride Terramycin,a yellow crystalline antibiotic (trademark Terramycin) obtained from a soil actinomycete; used to treat various bacterial and rickettsial infections
+58642,oxytocic oxytocic_drug,a drug that induces labor by stimulating contractions of the muscles of the uterus
+58643,oxytocin Pitocin,hormone secreted by the posterior pituitary gland (trade name Pitocin); stimulates contractions of the uterus and ejection of milk
+58644,oxytone,word having stress or an acute accent on the last syllable
+58645,oyabun,a Japanese supervisor
+58646,oyster,a small muscle on each side of the back of a fowl
+58647,oyster,marine mollusks having a rough irregular shell; found on the sea bed mostly in coastal waters
+58648,oyster_bar,a bar (as in a restaurant) that specializes in oysters prepared in different ways
+58649,oyster_bed oyster_bank oyster_park,a workplace where oysters are bred and grown
+58650,oyster_crab Pinnotheres_ostreum,tiny soft-bodied crab living within the mantle cavity of oysters
+58651,oyster_cracker,a small dry usually round cracker
+58652,oyster_fish oyster-fish oysterfish,a variety of toadfish
+58653,oyster_mushroom oyster_fungus oyster_agaric Pleurotus_ostreatus,edible agaric with a soft greyish cap growing in shelving masses on dead wood
+58654,oyster_plant vegetable_oyster,long white salsify
+58655,oyster_shell,a shell of an oyster
+58656,oyster_stew,oysters in cream
+58657,oyster_stuffing oyster_dressing,stuffing made with oysters
+58658,oystercatcher oyster_catcher,black-and-white shorebird with stout legs and bill; feed on oysters etc.
+58659,oysters_Rockefeller,oysters spread with butter and spinach and seasonings and baked on the half shell
+58660,ozena ozaena,a chronic disease of the nose characterized by a foul-smelling nasal discharge and atrophy of nasal structures
+58661,ozone,a colorless gas (O3) soluble in alkalis and cold water; a strong oxidizing agent; can be produced by electric discharge in oxygen or by the action of ultraviolet radiation on oxygen in the stratosphere (where it acts as a screen for ultraviolet radiation)
+58662,ozone_hole,an area of the ozone layer (near the poles) that is seasonally depleted of ozone
+58663,ozone_layer ozonosphere,a layer in the stratosphere (at approximately 20 miles) that contains a concentration of ozone sufficient to block most ultraviolet radiation from the sun
+58664,ozone_sickness,illness that can occur to persons exposed to ozone in high-altitude aircraft; characterized by sleepiness and headache and chest pains and itchiness
+58665,ozonide,any of a class of unstable chemical compounds resulting from the addition of ozone to a double bond in an unsaturated compound
+58666,p-n-p_transistor,a junction transistor having an n-type semiconductor between a p-type semiconductor that serves as an emitter and a p-type semiconductor that serves as a collector
+58667,p-n_junction,the junction between a p-type semiconductor and an n-type semiconductor; "a p-n junction has marked rectifying characteristics"
+58668,p-type_semiconductor,a semiconductor in which electrical conduction is due chiefly to the movement of positive holes
+58669,pH pH_scale,(from potential of Hydrogen) the logarithm of the reciprocal of hydrogen-ion concentration in gram atoms per liter; provides a measure on a scale from 0 to 14 of the acidity or alkalinity of a solution (where 7 is neutral and greater than 7 is more basic and less than 7 is more acidic)
+58670,pa'anga,the basic unit of money in Tonga
+58671,pabulum,insipid intellectual nourishment
+58672,pac-man_strategy,the target company defends itself by threatening to take over its acquirer
+58673,paca Cuniculus_paca,large burrowing rodent of South America and Central America; highly esteemed as food
+58674,pace gait,the rate of moving (especially walking or running)
+58675,pace rate,the relative speed of progress or change; "he lived at a fast pace"; "he works at a great rate"; "the pace of events accelerated"
+58676,pace stride tread,a step in walking or running
+58677,pace_car,a high-performance car that leads a parade of competing cars through the pace lap and then pulls off the course
+58678,pace_lap,the first lap of a car race that prepares the cars for a fast start
+58679,pacemaker artificial_pacemaker,an implanted electronic device that takes over the function of the natural cardiac pacemaker
+58680,pacemaker cardiac_pacemaker sinoatrial_node SA_node,a specialized bit of heart tissue that controls the heartbeat
+58681,pacer,a horse trained to a special gait in which both feet on one side leave the ground together
+58682,pacer pacemaker pacesetter,a horse used to set the pace in racing
+58683,pacesetter pacemaker,a leading instance in its field; "the new policy will be a pacesetter in community relations"
+58684,pachinko,a Japanese pinball game played on a vertical board
+58685,pachisi parchesi parchisi,an ancient board game resembling backgammon; played on a cross-shaped board
+58686,pachuco,a Mexican-American teenager who belongs to a neighborhood gang and who dresses in showy clothes
+58687,pachycephalosaur pachycephalosaurus,bipedal herbivore having 10 inches of bone atop its head; largest boneheaded dinosaur ever found
+58688,pachycheilia,an abnormal thickness of the lips
+58689,pachyderm,any of various nonruminant hoofed mammals having very thick skin: elephant; rhinoceros; hippopotamus
+58690,pachysandra,any plant of the genus Pachysandra; low-growing evergreen herbs or subshrubs having dentate leaves and used as ground cover
+58691,pachytene,the third stage of the prophase of meiosis
+58692,pacification counterinsurgency,actions taken by a government to defeat insurgency
+58693,pacification mollification,the act of appeasing someone or causing someone to be more favorably inclined; "a wonderful skill in the pacification of crying infants"; "his unsuccessful mollification of the mob"
+58694,pacifier,anything that serves to pacify
+58695,pacifism pacificism,the belief that all international disputes can be settled by arbitration
+58696,pacifism pacificism passivism,the doctrine that all violence is unjustifiable
+58697,pacifist pacificist disarmer,someone opposed to violence as a means of settling disputes
+58698,pacing,walking with slow regular strides
+58699,pack,a group of hunting animals
+58700,pack,a complete collection of similar things
+58701,pack,a sheet or blanket (either dry or wet) to wrap around the body for its therapeutic effect
+58702,pack,a bundle (especially one carried on the back)
+58703,pack,a convenient package or parcel (as of cigarettes or film)
+58704,pack face_pack,a cream that cleanses and tones the skin
+58705,pack_animal sumpter,an animal (such as a mule or burro or horse) used to carry loads
+58706,pack_ice ice_pack,a large expanse of floating ice
+58707,pack_of_cards deck_of_cards deck,a pack of 52 playing cards
+58708,pack_riding,riding with a pack
+58709,package bundle packet parcel,a collection of things wrapped or boxed together
+58710,package parcel,a wrapped container
+58711,package_store liquor_store off-licence,a store that sells alcoholic beverages for consumption elsewhere
+58712,package_tour package_holiday,a tour arranged by a travel agent; transportation and food and lodging are all provided at an inclusive price
+58713,packaged_goods,groceries that are packaged for sale
+58714,packaging,material used to make packages
+58715,packaging,the business of packing; "his business is packaging for transport"
+58716,packaging_company packaging_concern,a company that packages goods for sale or shipment or storage
+58717,packed_cells,a preparation of blood cells separated from the liquid plasma; "packed cells are given to severely anemic patients in order to avoid overloading the circulatory system with too much fluid"
+58718,packer bagger boxer,a workman employed to pack things into containers
+58719,packet,(computer science) a message or message fragment
+58720,packet,a small package or bundle
+58721,packhorse,a workhorse used as a pack animal
+58722,packing backpacking,carrying something in a pack on the back; "the backpacking of oxygen is essential for astronauts"
+58723,packing boxing,the enclosure of something in a package or box
+58724,packing_box packing_case,a large crate in which goods are packed for shipment or storage
+58725,packing_material packing wadding,any material used especially to protect something
+58726,packing_needle,a large needle used to sew up canvas packages
+58727,packinghouse,a building where foodstuffs are processed and packed; "they came from an apple packinghouse"
+58728,packinghouse packing_plant,a plant where livestock are slaughtered and processed and packed as meat products
+58729,packrat,a collector of miscellaneous useless objects
+58730,packrat pack_rat trade_rat bushytail_woodrat Neotoma_cinerea,any of several bushy-tailed rodents of the genus Neotoma of western North America; hoards food and other objects
+58731,packsaddle,a saddle for pack animals to which loads can be attached
+58732,packthread,a strong three-ply twine used to sew or tie packages
+58733,pad,the large floating leaf of an aquatic plant (as the water lily)
+58734,pad,a flat mass of soft material used for protection, stuffing, or comfort
+58735,pad,the fleshy cushion-like underside of an animal's foot or of a human's finger
+58736,pad inkpad inking_pad stamp_pad,a block of absorbent material saturated with ink; used to transfer ink evenly to a rubber stamp
+58737,pad pad_of_paper tablet,a number of sheets of paper fastened together along one edge
+58738,padauk padouk amboyna Pterocarpus_indicus,tree native to southeastern Asia having reddish wood with a mottled or striped black grain
+58739,padding cushioning,artifact consisting of soft or resilient material used to fill or give shape or protect or add comfort
+58740,paddle,small wooden bat with a flat surface; used for hitting balls in various games
+58741,paddle,a blade of a paddle wheel or water wheel
+58742,paddle,an instrument of punishment consisting of a flat board
+58743,paddle boat_paddle,a short light oar used without an oarlock to propel a canoe or small boat
+58744,paddle_box paddle-box,a wooden covering for the upper part of a paddlewheel
+58745,paddle_steamer paddle-wheeler,a steam vessel propelled by paddle wheels
+58746,paddlefish duckbill Polyodon_spathula,primitive fish of the Mississippi valley having a long paddle-shaped snout
+58747,paddlewheel paddle_wheel,a large wheel fitted with paddles and driven by an engine in order to propel a boat
+58748,paddock,pen where racehorses are saddled and paraded before a race
+58749,paddy,rice in the husk either gathered or still in the field
+58750,paddy paddy_field rice_paddy,an irrigated or flooded field where rice is grown
+58751,pademelon paddymelon,small reddish-brown wallabies of scrubby areas of Australia and New Guinea
+58752,padlock,a detachable lock; has a hinged shackle that can be passed through the staple of a hasp or the links in a chain and then snapped shut
+58753,padrone,an owner or proprietor of an inn in Italy
+58754,padrone,an employer who exploits Italian immigrants in the U.S.
+58755,paean pean,(ancient Greece) a hymn of praise (especially one sung in ancient Greece to invoke or thank a deity)
+58756,paella,saffron-flavored dish made of rice with shellfish and chicken
+58757,pagan,a person who follows a polytheistic or pre-Christian religion (not a Christian or Muslim or Jew)
+58758,paganism pagan_religion heathenism,any of various religions other than Christianity or Judaism or Islamism
+58759,page,a youthful attendant at official functions or ceremonies such as legislative functions and weddings
+58760,page,one side of one leaf (of a book or magazine or newspaper or letter etc.) or the written or pictorial matter it contains
+58761,page pageboy,a boy who is employed to run errands
+58762,page varlet,in medieval times a youth acting as a knight's attendant as the first stage in training for knighthood
+58763,page_printer page-at-a-time_printer,a printer that prints one page at a time
+58764,pageant pageantry,a rich and spectacular ceremony
+58765,pageant pageantry,an elaborate representation of scenes from history etc; usually involves a parade with rich costumes
+58766,pageboy,a smooth hair style with the ends of the hair curled inward
+58767,pagination folio page_number paging,the system of numbering pages
+58768,paging,calling out the name of a person (especially by a loudspeaker system); "the public address system in the hospital was used for paging"
+58769,pagoda,an Asian temple; usually a pyramidal tower with an upward curving roof
+58770,pagoda_tree temple_tree Plumeria_acutifolia,frangipani of India having an erect habit and conical form; grown in temple gardens
+58771,pahautea Libocedrus_bidwillii mountain_pine,evergreen tree of New Zealand resembling the kawaka
+58772,pahoehoe,freely flowing lava
+58773,paid_vacation,a vacation from work by an employee with pay granted
+58774,pail pailful,the quantity contained in a pail
+58775,paillasse palliasse,mattress consisting of a thin pad filled with straw or sawdust
+58776,pain hurting,a symptom of some physical hurt or disorder; "the patient developed severe pain and distension"
+58777,pain pain_in_the_neck nuisance,a bothersome annoying person; "that kid is a terrible pain"
+58778,pain pain_sensation painful_sensation,a somatic sensation of acute discomfort; "as the intensity increased the sensation changed from tickle to pain"
+58779,pain painfulness,emotional distress; a fundamental feeling that people try to avoid; "the pain of loneliness"
+58780,pain_threshold,the lowest intensity of stimulation at which pain is experienced; "some people have much higher pain thresholds than do other people"
+58781,pain_unit,a unit measuring the intensity of pain
+58782,painfulness distressingness,the quality of being painful; "she feared the painfulness of childbirth"
+58783,paint pigment,a substance used as a coating to protect or decorate a surface (especially a mixture of pigment suspended in a liquid); dries to form a hard coating; "artists use `paint' and `pigment' interchangeably"
+58784,paint_roller,a roller that has an absorbent surface used for spreading paint
+58785,paintball,a capsule filled with water-soluble dye used as a projectile in playing the game of paintball
+58786,paintball,a game that simulates military combat; players on one team try to eliminate players on the opposing team by shooting capsules of paint at them
+58787,paintball_gun,an air gun used in the game of paintball; designed to simulate a semiautomatic
+58788,paintbox,a box containing a collection of cubes or tubes of artists' paint
+58789,paintbrush,a brush used as an applicator (to apply paint)
+58790,painted_beauty Vanessa_virginiensis,American butterfly having dark brown wings with white and golden orange spots
+58791,painted_daisy pyrethrum Tanacetum_coccineum Chrysanthemum_coccineum,spring-flowering garden perennial of Asiatic origin having finely divided aromatic leaves and white to pink-purple flowers; source of an insecticide; sometimes placed in genus Chrysanthemum
+58792,painted_greenling convict_fish convictfish Oxylebius_pictus,greenling with whitish body marked with black bands
+58793,painted_nettle Joseph's_coat Coleus_blumei Solenostemon_blumei Solenostemon_scutellarioides,perennial aromatic herb of southeastern Asia having large usually bright-colored or blotched leaves and spikes of blue-violet flowers; sometimes placed in genus Solenostemon
+58794,painted_sandgrouse Pterocles_indicus,sandgrouse of India
+58795,painted_tongue Salpiglossis_sinuata,Chilean herb having velvety funnel-shaped yellowish or violet flowers with long tonguelike styles at the corolla throat
+58796,painted_turtle painted_terrapin painted_tortoise Chrysemys_picta,freshwater turtles having bright yellow and red markings; common in the eastern United States
+58797,painter,a worker who is employed to cover objects with paint
+58798,painter,an artist who paints
+58799,painter,a line that is attached to the bow of a boat and used for tying up (as when docking or towing)
+58800,painting,creating a picture with paints; "he studied painting and sculpture for many years"
+58801,painting,the act of applying paint to a surface; "you can finish the job of painting faster with a roller than with a brush"
+58802,painting house_painting,the occupation of a house painter; "house painting was the only craft he knew"
+58803,painting picture,graphic art consisting of an artistic composition made by applying paints to a surface; "a small painting by Picasso"; "he bought the painting as an investment"; "his pictures hang in the Louvre"
+58804,pair,two people considered as a unit
+58805,pair,a poker hand with 2 cards of the same value
+58806,pair brace,a set of two similar things considered as a unit
+58807,pair_production pair_creation pair_formation,the transformation of a gamma-ray photon into an electron and a positron when the photon passes close to an atomic nucleus
+58808,pairing,the act of grouping things or people in pairs
+58809,paisa,a fractional monetary unit in Bangladesh and India and Nepal and Pakistan
+58810,paisley,a soft wool fabric with a colorful swirled pattern of curved shapes
+58811,pajama pyjama,a pair of loose trousers tied by a drawstring around the waist; worn by men and women in some Asian countries
+58812,pajama pyjama pj's jammies,(usually plural) loose-fitting nightclothes worn for sleeping or lounging; have a jacket top and trousers
+58813,palace,the governing group of a kingdom; "the palace issued an order binding on all subjects"
+58814,palace,a large ornate exhibition hall
+58815,palace,official residence of an exalted person (as a sovereign)
+58816,palace castle,a large and stately mansion
+58817,palanquin palankeen,a closed litter carried on the shoulders of four bearers
+58818,palatability palatableness,the property of being acceptable to the mouth
+58819,palatability palatableness,acceptability to the mind or feelings; "the pursuit of electoral palatability"
+58820,palatal,a semivowel produced with the tongue near the palate (like the initial sound in the English word `yeast')
+58821,palate roof_of_the_mouth,the upper surface of the mouth that separates the oral and nasal cavities
+58822,palatinate,a territory under the jurisdiction of a count palatine
+58823,palatine,any of various important officials in ancient Rome
+58824,palatine palatine_bone os_palatinum,either of two irregularly shaped bones that form the back of the hard palate and helps to form the nasal cavity and the floor of the orbits
+58825,palatine palsgrave,(Middle Ages) the lord of a palatinate who exercised sovereign powers over his lands
+58826,palatine_artery arteria_palatina,one of several arteries supplying the face
+58827,palatine_raphe,the seam at the middle of the hard palate
+58828,palatine_vein vena_palatina,a vein that drains the region of the palate and empties into the facial vein
+58829,palatopharyngoplasty PPP uvulopalatopharyngoplasty UPPP,surgical resection of unnecessary palatal and oropharyngeal tissue to open the airway; intended to cure extreme cases of snoring (with or without sleep apnea)
+58830,palaver hot_air empty_words empty_talk rhetoric,loud and confused and empty talk; "mere rhetoric"
+58831,pale_ale,an amber colored ale brewed with pale malts; similar to bitter but drier and lighter
+58832,pale_chrysanthemum_aphid,important pest of chrysanthemums
+58833,pale_violet striped_violet cream_violet Viola_striata,leafy-stemmed violet of eastern North America having large white or creamy flowers faintly marked with purple
+58834,pale_yellow straw wheat,a variable yellow tint; dull yellow, often diluted with white
+58835,paleencephalon paleoencephalon palaeencephalon,the more primitive parts of the brain phylogenetically; most structures other than the cerebral cortex
+58836,paleness blondness fairness,the property of having a naturally light complexion
+58837,paleness pallidity,being deficient in color
+58838,paleoanthropology palaeoanthropology human_paleontology human_palaeontology,the scientific study of human fossils
+58839,paleobiology palaeobiology,a branch of paleontology that deals with the origin and growth and structure of fossil animals and plants as living organisms
+58840,paleobotany palaeobotany,the study of fossil plants
+58841,paleocerebellum,the anterior lobe of the cerebellum which was one of the earliest parts of the hindbrain to develop in mammals
+58842,paleoclimatology palaeoclimatology,the study of the climate of past ages
+58843,paleodendrology palaeodendrology,the branch of paleobotany that studies fossil trees
+58844,paleoecology palaeoecology,the branch of ecology that studies ancient ecology
+58845,paleoethnography palaeoethnography,the ethnography of paleolithic humans
+58846,paleogeography palaeogeography,the study of the geography of ancient times or ancient epochs
+58847,paleogeology palaeogeology,the study of geologic features once at the surface of the earth but now buried beneath rocks
+58848,paleographer paleographist,an archeologist skilled in paleography
+58849,paleography,the study of ancient forms of writing (and the deciphering of them)
+58850,paleolith,a stone tool from the Paleolithic age
+58851,paleology palaeology,the study of (especially prehistoric) antiquities
+58852,paleomammalogy,the paleobiology of ancient mammals
+58853,paleontologist palaeontologist fossilist,a specialist in paleontology
+58854,paleontology palaeontology fossilology,the earth science that studies fossil organisms and related remains
+58855,paleopathology palaeopathology,the study of disease of former times (as inferred from fossil evidence)
+58856,paleornithology palaeornithology,the paleobiology of birds
+58857,paleozoology palaeozoology,the study of fossil animals
+58858,palestra palaestra,a public place in ancient Greece or Rome devoted to the training of wrestlers and other athletes
+58859,paletiology palaetiology,the explanation of past events in terms of scientific causes (as geological causes)
+58860,palette pallet,the range of colour characteristic of a particular artist or painting or school of art
+58861,palette pallet,board that provides a flat surface on which artists mix paints and the range of colors used
+58862,palette_knife,a spatula used by artists for mixing or applying or scraping off oil paints
+58863,palfrey,especially a light saddle horse for a woman
+58864,palilalia,a pathological condition in which a word is rapidly and involuntarily repeated
+58865,palimony,support paid by one half of an unmarried partnership after the relationship ends
+58866,palimpsest,a manuscript (usually written on papyrus or parchment) on which more than one text has been written with the earlier writing incompletely erased and still visible
+58867,palindrome,a word or phrase that reads the same backward as forward
+58868,palingenesis recapitulation,emergence during embryonic development of various characters or structures that appeared during the evolutionary history of the strain or species
+58869,palisade,fortification consisting of a strong fence made of stakes driven into the ground
+58870,pall shroud cerement winding-sheet winding-clothes,burial garment in which a corpse is wrapped
+58871,pall-mall,a 17th century game; a wooden ball was driven along an alley with a mallet
+58872,palladium Pd atomic_number_46,a silver-white metallic element of the platinum group that resembles platinum; occurs in some copper and nickel ores; does not tarnish at ordinary temperatures and is used (alloyed with gold) in jewelry
+58873,pallas's_sandgrouse Syrrhaptes_paradoxus,Eurasiatic sandgrouse with a black patch on the belly
+58874,pallasite,a meteorite composed principally of olivine and metallic iron
+58875,pallbearer bearer,one of the mourners carrying the coffin at a funeral
+58876,pallet,a portable platform for storing or moving goods that are stacked on it
+58877,pallet,a hand tool with a flat blade used by potters for mixing and shaping clay
+58878,pallet,a mattress filled with straw or a pad made of quilts; used as a bed
+58879,pallette palette,one of the rounded armor plates at the armpits of a suit of armor
+58880,palliation,easing the severity of a pain or a disease without removing the cause
+58881,palliative alleviant alleviator,remedy that alleviates pain without curing
+58882,pallid_bat cave_bat Antrozous_pallidus,drab yellowish big-eared bat that lives in caves
+58883,pallidum globus_pallidus paleostriatum,the inner pale yellow part of the lenticular nucleus
+58884,pallium,(Roman Catholic Church) vestment consisting of a band encircling the shoulders with two lappets hanging in front and back
+58885,pallium,cloak or mantle worn by men in ancient Rome
+58886,pallone,an Italian game similar to tennis
+58887,palm,a linear unit based on the length or width of the human hand
+58888,palm palm_tree,any plant of the family Palmae having an unbranched trunk crowned by large pinnate or palmate leaves
+58889,palm thenar,the inner surface of the hand from the wrist to the base of the fingers
+58890,palm_cat palm_civet,spotted or striped arboreal civet of southeast Asia and East Indies
+58891,palm_nut palm_kernel,seed of any oil palm
+58892,palm_oil,oil from nuts of oil palms especially the African oil palm
+58893,palmate_leaf,a leaf resembling an open hand; having lobes radiating from a common point
+58894,palmature,an abnormality in which the fingers are webbed
+58895,palmetto,any of several low-growing palms with fan-shaped leaves
+58896,palmist palmister chiromancer,fortuneteller who predicts your future by the lines on your palms
+58897,palmistry palm_reading chiromancy chirology,telling fortunes by lines on the palm of the hand
+58898,palmitic_acid hexadecanoic_acid,a saturated fatty acid that is the major fat in meat and dairy products
+58899,palmitin,an ester of glycerol and palmitic acid
+58900,palmyra palmyra_palm toddy_palm wine_palm lontar longar_palm Borassus_flabellifer,tall fan palm of Africa and India and Malaysia yielding a hard wood and sweet sap that is a source of palm wine and sugar; leaves used for thatching and weaving
+58901,palo_santo Bulnesia_sarmienti,South American tree of dry interior regions of Argentina and Paraguay having resinous heartwood used for incense
+58902,palo_verde Parkinsonia_florida Cercidium_floridum,densely branched spiny tree of southwestern United States having showy yellow flowers and blue-green bark; sometimes placed in genus Cercidium
+58903,palometa California_pompano Palometa_simillima,smaller than Florida pompano; common in West Indies
+58904,palomino,a horse of light tan or golden color with cream-colored or white mane and tail
+58905,paloverde,a thorny shrub of the genus Cercidium that grows in dry parts of the southwestern United States and adjacent Mexico; has smooth light green bark and racemes of yellow flowers and small leaves
+58906,palpation tactual_exploration,a method of examination in which the examiner feels the size or shape or firmness or location of something (of body parts when the examiner is a health professional)
+58907,palpebra_conjunctiva conjunctival_layer_of_eyelids tunica_conjunctiva_palpebrarum,the part of the conjunctiva lining the posterior surface of the eyelids; continuous with the bulbar conjunctiva
+58908,palpebration,repeated blinking or winking (especially if uncontrolled and persistent)
+58909,palpitation,a rapid and irregular heart beat
+58910,palsy,a condition marked by uncontrollable tremor
+58911,paltriness sorriness,worthlessness due to insignificance
+58912,pampas,the vast grassy plains of northern Argentina
+58913,pampas_grass Cortaderia_selloana,tall perennial grass of pampas of South America having silvery plumes and growing in large dense clumps
+58914,pamperer spoiler coddler mollycoddler,someone who pampers or spoils by excessive indulgence
+58915,pamphleteer,a writer of pamphlets (usually taking a partisan stand on public issues)
+58916,pan,shallow container made of metal
+58917,pan cooking_pan,cooking utensil consisting of a wide metal vessel
+58918,panacea nostrum catholicon cure-all,hypothetical remedy for all ills or diseases; once sought by the alchemists
+58919,panache,a feathered plume on a helmet
+58920,panatela panetela panetella,a long slender cigar
+58921,pancake battercake flannel_cake flannel-cake flapcake flapjack griddlecake hotcake hot_cake,a flat cake of thin batter fried on both sides on a griddle
+58922,pancake_batter,batter for making pancakes
+58923,pancake_turner,turner for serving or turning pancakes
+58924,pancarditis,inflammation of the entire heart (the epicardium and the myocardium and the endocardium)
+58925,panchayat panchayet punchayet,a village council in India or southern Pakistan
+58926,panchromatic_film,photographic film sensitive to light of all colors (including red)
+58927,pancreas,a large elongated exocrine gland located behind the stomach; secretes pancreatic juice and insulin
+58928,pancreatectomy,surgical removal of part or all of the pancreas
+58929,pancreatic_artery arteria_pancreatica,a branch of the splenic artery that supplies the pancreas
+58930,pancreatic_cancer,cancer of the pancreas
+58931,pancreatic_duct,a duct connecting the pancreas with the intestine
+58932,pancreatic_juice,a fluid secreted into the duodenum by the pancreas; important for breaking down starches and proteins and fats
+58933,pancreatic_vein venae_pancreatica,veins draining the pancreas and emptying into the superior mesenteric and splenic veins
+58934,pancreatin,extract from the pancreas of animals that contains pancreatic enzymes; used to treat pancreatitis and other conditions involving insufficient pancreatic secretions
+58935,pancreatitis,inflammation of the pancreas; usually marked by abdominal pain
+58936,pancytopenia,an abnormal deficiency in all blood cells (red blood cells and white blood cells and platelets); usually associated with bone marrow tumor or with aplastic anemia
+58937,panda_car,a police cruiser
+58938,pandanus,fiber from leaves of the pandanus tree; used for woven articles (such as mats)
+58939,pandanus screw_pine,any of various Old World tropical palmlike trees having huge prop roots and edible conelike fruits and leaves like pineapple leaves
+58940,pandeism,the belief that God created the universe and its phenomena by becoming the universe, thereafter the sole manifestation of God
+58941,pandemic,an epidemic that is geographically widespread; occurring throughout a region or even throughout the world
+58942,panderer,a person who serves or caters to the vulgar passions or plans of others (especially in order to make money)
+58943,pandiculation,yawning and stretching (as when first waking up)
+58944,pandurate_leaf panduriform_leaf,a fiddle-shaped leaf
+58945,pane pane_of_glass window_glass,sheet glass cut in shapes for windows or doors
+58946,panel,a group of people gathered for a special purpose as to plan or discuss an issue or judge a contest etc
+58947,panel,a soft pad placed under a saddle
+58948,panel,sheet that forms a distinct (usually flat and rectangular) section or component of something
+58949,panel venire,(law) a group of people summoned for jury service (from whom a jury will be chosen)
+58950,panel_discussion,discussion of a subject of public interest by a group of persons forming a panel usually before an audience
+58951,panel_heating,heating system consisting of wall or floor or baseboard or ceiling panels containing electric conductors or heating pipes
+58952,panel_light,a light to illuminate an instrument panel
+58953,paneling panelling pane,a panel or section of panels in a wall or door
+58954,panelist panellist,a member of a panel
+58955,panencephalitis,diffuse inflammation of the entire brain
+58956,panenthesism,the belief that God is in part of the universe and its phenomena and also transcends the universe and intervenes in its operations
+58957,panfish,any of numerous small food fishes; especially those caught with hook and line and not available on the market
+58958,pang,a sharp spasm of pain
+58959,pang stab twinge,a sudden sharp feeling; "pangs of regret"; "she felt a stab of excitement"; "twinges of conscience"
+58960,pang sting,a mental pain or distress; "a pang of conscience"
+58961,pangolin scaly_anteater anteater,toothless mammal of southern Africa and Asia having a body covered with horny scales and a long snout for feeding on ants and termites
+58962,panhandle,a relatively narrow strip of land projecting from some larger area; "Wheeling is located in the northern panhandle of West Virginia"
+58963,panhandle,the handle of a pan
+58964,panhandler,a beggar who approaches strangers asking for money
+58965,panic scare,sudden mass fear and anxiety over anticipated events; "panic in the stock market"; "a war scare"; "a bomb scare led them to evacuate the building"
+58966,panic terror affright,an overwhelming feeling of fear and anxiety
+58967,panic_button,a button to push in order to summon help in case of an emergency; "the circuit is operated by a panic button"; "when he saw that I was angry he hit the panic button"
+58968,panic_disorder,an anxiety disorder characterized by unpredictable panic attacks; the attacks are usually severe but brief
+58969,panic_grass,any grass of the genus Panicum; grown for grain and fodder
+58970,panicle,compound raceme or branched cluster of flowers
+58971,panicled_aster,a variety of aster
+58972,pannier,either of a pair of bags or boxes hung over the rear wheel of a vehicle (as a bicycle)
+58973,pannier,a large basket (usually one of a pair) carried by a beast of burden or on by a person
+58974,pannier,set of small hoops used to add fullness over the hips
+58975,pannikin,a small pan or cup (usually of tin)
+58976,panoply,a complete and impressive array
+58977,panopticon,an area where everything is visible
+58978,panopticon,a circular prison with cells distributed around a central surveillance station; proposed by Jeremy Bentham in 1791
+58979,panorama cyclorama diorama,a picture (or series of pictures) representing a continuous scene
+58980,panoramic_sight,gunsight (a telescopic device for an artillery piece) that can be rotated horizontally in a full circle
+58981,panpipe pandean_pipe syrinx,a primitive wind instrument consisting of several parallel pipes bound together
+58982,pansexual,a person who participates in (or is open to) sexual activities of many kinds
+58983,pansinusitis,inflammation of all of the paranasal sinuses
+58984,pansy Viola_tricolor_hortensis,large-flowered garden plant derived chiefly from the wild pansy of Europe and having velvety petals of various colors
+58985,pansy_orchid,any of various orchids of the genus Miltonia having solitary or loosely racemose showy broadly spreading flowers
+58986,pant,the noise made by a short puff of steam (as from an engine)
+58987,pant_leg trouser_leg,the leg of a pair of trousers
+58988,pantaloon,trousers worn in former times
+58989,pantechnicon,a large moving van (especially one used for moving furniture)
+58990,pantheism,(rare) worship that admits or tolerates all gods
+58991,pantheism,the doctrine or belief that God is the universe and its phenomena (taken or conceived of as a whole) or the doctrine that regards the universe as a manifestation of God
+58992,pantheist,someone who believes that God and the universe are the same
+58993,pantheon,all the gods of a religion
+58994,pantheon,a monument commemorating a nation's dead heroes
+58995,pantheon,(antiquity) a temple to all the gods
+58996,panther,a leopard in the black color phase
+58997,pantie panty scanty step-in,short underpants for women or children (usually used in the plural)
+58998,pantile,a roofing tile with a S-shape; laid so that curves overlap
+58999,panting heaving,breathing heavily (as after exertion)
+59000,panting trousering,any fabric used to make trousers
+59001,panto,an abbreviation of pantomime
+59002,pantograph,mechanical device used to copy a figure or plan on a different scale
+59003,pantothenic_acid pantothen,a vitamin of the vitamin B complex that performs an important role in the oxidation of fats and carbohydrates and certain amino acids; occurs in many foods
+59004,pantry larder buttery,a small storeroom for storing foods or wines
+59005,pants_suit pantsuit,a pair of pants and a matching jacket worn by women
+59006,panty_girdle,a woman's undergarment that combines a girdle and panties
+59007,pantyhose,a woman's tights consisting of underpants and stockings
+59008,panzer,an armored vehicle or tank
+59009,pap pablum,worthless or oversimplified ideas
+59010,papacy pontificate,the government of the Roman Catholic Church
+59011,papain,a proteolytic enzyme obtained from the unripe papaya; used as a meat tenderizer
+59012,papal_cross,a cross with three crossbars
+59013,papal_infallibility,belief of the Roman Catholic Church that God protects the pope from error when he speaks about faith or morality
+59014,paparazzo,a freelance photographer who pursues celebrities trying to take candid photographs of them to sell to newspapers or magazines
+59015,papaverine Kavrin,an alkaloid medicine (trade name Kavrin) obtained from opium; used to relax smooth muscles; it is nonaddictive
+59016,papaw pawpaw,fruit with yellow flesh; related to custard apples
+59017,papaya,large oval melon-like tropical fruit with yellowish flesh
+59018,papaya papaia pawpaw papaya_tree melon_tree Carica_papaya,tropical American shrub or small tree having huge deeply palmately cleft leaves and large oblong yellow fruit
+59019,papaya_juice,juice from papayas
+59020,paper,a material made of cellulose pulp derived mainly from wood or rags or certain grasses
+59021,paper,a scholarly article describing the results of observations or stating hypotheses; "he has written many scientific papers"
+59022,paper,a medium for written communication; "the notion of an office running without paper is absurd"
+59023,paper-pusher,a clerk or bureaucrat who does paperwork
+59024,paper_chain,a chain made of loops of colored paper; used to decorate a room
+59025,paper_chase hare_and_hounds,an outdoor game; one group of players (the hares) start off on a long run scattering bits of paper (the scent) and pursuers (the hounds) try to catch them before they reach a designated spot
+59026,paper_chromatography,chromatography that uses selective adsorption on a strip of paper
+59027,paper_clip paperclip gem_clip,a wire or plastic clip for holding sheets of paper together; "the paper clip was invented in 1900"
+59028,paper_cutter,a cutting implement for cutting sheets of paper to the desired size
+59029,paper_doll,a piece of paper cut or folded into the shape of a human being
+59030,paper_electrophoresis carrier_electrophoresis,electrophoresis carried out on filter paper
+59031,paper_fastener,a fastener for holding a sheet of paper in place
+59032,paper_feed,a device for inserting sheets of paper into a printer or typewriter; "the job was delayed because the paper feed was clogged"
+59033,paper_flower Bougainvillea_glabra,Brazilian vine that tends to flower continuously
+59034,paper_loss,an unrealized loss on an investment calculated by subtracting the current market price from the investor's cost
+59035,paper_mill,a mill where paper is manufactured
+59036,paper_money folding_money paper_currency,currency issued by a government or central bank and consisting of printed paper that can circulate as a substitute for specie
+59037,paper_mulberry Broussonetia_papyrifera,shrubby Asiatic tree having bark (tapa) that resembles cloth; grown as a shade tree in Europe and America; male flowers are pendulous catkins and female are urn-shaped followed by small orange-red aggregate berries
+59038,paper_nautilus nautilus Argonaut Argonauta_argo,cephalopod mollusk of warm seas whose females have delicate papery spiral shells
+59039,paper_plate,a disposable plate made of cardboard
+59040,paper_profit,an unrealized gain on an investment calculated by subtracting the investor's cost from the current market price
+59041,paper_route,the job of delivering newspapers regularly
+59042,paper_route paper_round,the route taken when delivering newspapers every day
+59043,paper_tape,a long narrow strip of paper
+59044,paper_tiger,the nature of a person or organization that appears powerful but is actually powerless and ineffectual; "he reminded Mao that the paper tiger had nuclear teeth"
+59045,paper_towel,a disposable towel made of absorbent paper
+59046,paper_toweling,absorbent paper used as toweling
+59047,paper_trail,the written evidence of someone's activities; "this paper trail consisted mainly of electronically stored information"
+59048,paper_wasp,any of several social wasps that construct nests of a substance like paper
+59049,paper_white Narcissus_papyraceus,a daffodil having star-shaped white blossoms; often grown indoors to bloom in the winter
+59050,paperback_book paper-back_book paperback softback_book softback soft-cover_book soft-cover,a book with paper covers
+59051,paperboard poster_board posterboard,a cardboard suitable for making posters
+59052,paperboy,a boy who sells or delivers newspapers
+59053,paperhanger,someone who passes bad checks or counterfeit paper money
+59054,paperhanger paperer,one whose occupation is decorating walls with wallpaper
+59055,papering paperhanging,the application of wallpaper
+59056,papermaking,the craft of making paper
+59057,paperweight,a weight used to hold down a stack of papers
+59058,paperwork,work that involves handling papers: forms or letters or reports etc.
+59059,papier-mache paper-mache,a substance made from paper pulp that can be molded when wet and painted when dry
+59060,papilla,(botany) a tiny outgrowth on the surface of a petal or leaf
+59061,papilla,a small nipple-shaped protuberance concerned with taste, touch, or smell; "the papillae of the tongue"
+59062,papilla,a small projection of tissue at the base of a hair or tooth or feather
+59063,papillary_muscle,any of several muscles associated with the atrioventricular valves; "the papillary muscles contract during systole to prevent regurgitation of blood into the atria"
+59064,papilledema,swelling of the optic disc (where the optic nerve enters the eyeball); usually associated with an increase in intraocular pressure
+59065,papilloma villoma papillary_tumor papillary_tumour,a benign epithelial tumor forming a rounded mass
+59066,papillon,small slender toy spaniel with erect ears and a black-spotted brown to white coat
+59067,papist,an offensive term for Roman Catholics; originally, a Roman Catholic who was a strong advocate of the papacy
+59068,papoose pappoose,an American Indian infant
+59069,papovavirus,any of a group of animal viruses associated with or causing papillomas or polyomas
+59070,pappus,calyx composed of scales or bristles or featherlike hairs in plants of the Compositae such as thistles and dandelions
+59071,paprika,a mild powdered seasoning made from dried pimientos
+59072,papule,a small inflamed elevation of skin that is nonsuppurative (as in chicken pox)
+59073,papulovesicle vesicopapule,a papule that changes into a blister
+59074,papyrus,paper made from the papyrus plant by cutting it in strips and pressing it flat; used by ancient Egyptians and Greeks and Romans
+59075,papyrus,a document written on papyrus
+59076,papyrus Egyptian_paper_reed Egyptian_paper_rush paper_rush paper_plant Cyperus_papyrus,tall sedge of the Nile valley yielding fiber that served many purposes in historic times
+59077,par,(golf) the standard number of strokes set for each hole on a golf course, or for the entire course; "a par-5 hole"; "par for this course is 72"
+59078,par_value face_value nominal_value,the value of a security that is set by the company issuing it; unrelated to market value
+59079,para,100 para equal 1 dinar in Yugoslavia
+59080,para_aminobenzoic_acid PABA,a metabolic acid found in yeast and liver cells; used to make dyes and drugs and sun blockers
+59081,parable,(New Testament) any of the stories told by Jesus to convey his religious message; "the parable of the prodigal son"
+59082,parabola,a plane curve formed by the intersection of a right circular cone and a plane parallel to an element of the curve
+59083,parabolic_mirror,a parabolic reflector for light radiation
+59084,parabolic_reflector paraboloid_reflector,a concave reflector used to produce a parallel beam when the source is placed at its focus or to focus an incoming parallel beam
+59085,paraboloid,a surface having parabolic sections parallel to a single coordinate axis and elliptic sections perpendicular to that axis
+59086,paracentral_scotoma,a scotoma that is adjacent to the fixation point
+59087,paracervical_block,regional anesthesia resulting from the injection of a local anesthetic on each side of the cervix; used during labor and childbirth
+59088,parachute chute,rescue equipment consisting of a device that fills with air and retards your fall
+59089,parachutist parachuter parachute_jumper,a person who jumps from aircraft using a parachute
+59090,paracosm,a prolonged fantasy world invented by children; can have a definite geography and language and history
+59091,parade,an extended (often showy) succession of persons or things; "a parade of strollers on the mall"; "a parade of witnesses"
+59092,parade,a ceremonial procession including people marching
+59093,parade,a visible display; "she made a parade of her sorrows"
+59094,parade_ground,an area for holding parades
+59095,paradiddle roll drum_roll,the sound of a drum (especially a snare drum) beaten rapidly and continuously
+59096,paradigm,systematic arrangement of all the inflected forms of a word
+59097,paradigm,the generally accepted perspective of a particular discipline at a given time; "he framed the problem within the psychoanalytic paradigm"
+59098,paradise_tree bitterwood Simarouba_glauca,medium to large tree of tropical North and South America having odd-pinnate leaves and long panicles of small pale yellow flowers followed by scarlet fruits
+59099,paradox,(logic) a statement that contradicts itself; "`I always lie' is a paradox because if it is true it must be false"
+59100,paradoxical_sleep rapid_eye_movement_sleep REM_sleep rapid_eye_movement REM,a recurring sleep state during which dreaming occurs; a state of rapidly shifting eye movements during sleep
+59101,paraduodenal_smear duodenal_smear,alimentary tract smear of material obtained from the duodenum
+59102,paraffin paraffin_oil,(British usage) kerosine
+59103,paraffin paraffin_wax,from crude petroleum; used for candles and for preservative or waterproof coatings
+59104,parafovea,area of the retina immediately surrounding the fovea
+59105,paragon idol perfection beau_ideal,an ideal instance; a perfect embodiment of a concept
+59106,paragonite,a colorless or pale brown mica with sodium
+59107,paragraph,one of several distinct subdivisions of a text intended to separate ideas; the beginning is usually marked by a new indented line
+59108,paragrapher,a writer of paragraphs (as for publication on the editorial page of a newspaper)
+59109,parainfluenza_virus,a virus that causes upper respiratory infection (including the common cold and bronchiolitis); most often in children
+59110,parakeet parrakeet parroket paraquet paroquet parroquet,any of numerous small slender long-tailed parrots
+59111,paralanguage paralinguistic_communication,the use of manner of speaking to communicate particular meanings
+59112,paraldehyde ethanal_trimer,a colorless liquid (a cyclic trimer of acetaldehyde) that is used as a sedative and a solvent
+59113,paralegal legal_assistant,a person with specialized training who assists lawyers
+59114,paralepsis paraleipsis paralipsis preterition,suggesting by deliberately concise treatment that much of significance is omitted
+59115,parallax,the apparent displacement of an object as seen from two different points that are not on a line with the object
+59116,parallel,(mathematics) one of a set of parallel geometric figures (parallel lines or planes); "parallels never meet"
+59117,parallel-veined_leaf,a leaf whose veins run in parallel from the stem
+59118,parallel_bars bars,gymnastic apparatus consisting of two parallel wooden rods supported on uprights
+59119,parallel_circuit shunt_circuit,a closed circuit in which the current divides into two or more paths before recombining to complete the circuit
+59120,parallel_interface parallel_port,an interface between a computer and a printer where the computer sends multiple bits of information to the printer simultaneously
+59121,parallel_operation simultaneous_operation,the simultaneous execution of two or more operations
+59122,parallelepiped parallelopiped parallelepipedon parallelopipedon,a prism whose bases are parallelograms
+59123,parallelism correspondence,similarity by virtue of corresponding
+59124,parallelogram,a quadrilateral whose opposite sides are both parallel and equal in length
+59125,paralogism,an unintentionally invalid argument
+59126,paralysis palsy,loss of the ability to move a body part
+59127,paralysis_agitans Parkinsonism Parkinson's_disease Parkinson's_syndrome Parkinson's shaking_palsy,a degenerative disorder of the central nervous system characterized by tremor and impaired muscular coordination
+59128,paralytic,a person suffering from paralysis
+59129,paralytic_abasia,abasia related to paralysis of the leg muscles
+59130,paramagnet,magnet made of a substance whose magnetization is proportional to the strength of the magnetic field applied to it
+59131,paramagnetism,materials like aluminum or platinum become magnetized in a magnetic field but it disappears when the field is removed
+59132,paramecium paramecia,any member of the genus Paramecium
+59133,paramedic paramedical,a person trained to assist medical professionals and to give emergency medical treatment
+59134,parameter,any factor that defines a system and determines (or limits) its performance
+59135,parameter,a quantity (such as the mean or variance) that characterizes a statistical population and that can be estimated by calculations from sample data
+59136,parameter parametric_quantity,a constant in the equation of a curve that can be varied to yield a family of similar curves
+59137,parametric_statistic,any statistic computed by procedures that assume the data were drawn from a particular distribution
+59138,parametritis,inflammation of connective tissue adjacent to the uterus
+59139,paramilitary paramilitary_force paramilitary_unit paramilitary_organization paramilitary_organisation,a group of civilians organized in a military fashion (especially to operate in place of or to assist regular army troops)
+59140,paramnesia,(psychiatry) a disorder of memory in which dreams or fantasies are confused with reality
+59141,paramount_issue,an issue whose settlement is more important than anything else; and issue that must be settled before anything else can be settled
+59142,paramountcy,the state of being paramount; the highest rank or authority
+59143,paramyxovirus,a group of viruses including those causing mumps and measles
+59144,paranasal_sinus sinus_paranasales nasal_sinus,any of the paired sinuses in the bones of the face adjacent to the nasal cavity that are lined with mucous membrane that is continuous with the lining of the nasal cavities
+59145,parang,a stout straight knife used in Malaysia and Indonesia
+59146,paranoia,a psychological disorder characterized by delusions of persecution or grandeur
+59147,paranoid paranoiac,a person afflicted with paranoia
+59148,paranoid_schizophrenia paranoic_type_schizophrenia paraphrenic_schizophrenia paraphrenia,a form of schizophrenia characterized by delusions (of persecution or grandeur or jealousy); symptoms may include anger and anxiety and aloofness and doubts about gender identity; unlike other types of schizophrenia the patients are usually presentable and (if delusions are not acted on) may function in an apparently normal manner
+59149,paraparesis,a slight paralysis or weakness of both legs
+59150,parapet,a low wall along the edge of a roof or balcony
+59151,parapet breastwork,fortification consisting of a low wall
+59152,paraph,a flourish added after or under your signature (originally to protect against forgery)
+59153,paraphilia,abnormal sexual activity
+59154,paraphrase paraphrasis,rewording for the purpose of clarification
+59155,paraphysis,a sterile simple or branched filament or hair borne among sporangia; may be pointed or clubbed
+59156,paraplegia,paralysis of the lower half of the body (most often as a result of trauma)
+59157,paraplegic,a person who has paraplegia (is paralyzed from the waist down)
+59158,parapodium,one of a pair of fleshy appendages of a polychete annelid that functions in locomotion and breathing
+59159,paraprofessional,a trained worker who is not a member of a profession but who assists a professional
+59160,parapsychologist,someone who studies the evidence for such psychological phenomena as psychokinesis and telepathy and clairvoyance
+59161,paraquat,a poisonous yellow solid used in solution as a herbicide
+59162,paraquat_poisoning,poisoning caused by ingestion of paraquat; characterized by progressive damage to the esophagus and liver and kidneys
+59163,parasail,parachute that will lift a person up into the air when it is towed by a motorboat or a car
+59164,parasailing paragliding,gliding in a parasail
+59165,parasite,an animal or plant that lives in or on a host (another animal or plant); it obtains nourishment from the host without benefiting or killing the host
+59166,parasite_yew Parasitaxus_ustus,rare and endangered monoecious parasitic conifer of New Caledonia; parasitic on Falcatifolium taxoides
+59167,parasitemia parasitaemia,a condition in which parasites are present in the blood
+59168,parasitic_jaeger arctic_skua Stercorarius_parasiticus,a variety of jaeger
+59169,parasitic_plant,plant living on another plant and obtaining organic nutriment from it
+59170,parasitism,the relation between two different kinds of organisms in which one receives benefits from the other by causing damage to it (usually not fatal damage)
+59171,parasol sunshade,a handheld collapsible source of shade
+59172,parasol_mushroom Lepiota_procera,edible long-stalked mushroom with white flesh and gills and spores; found in open woodlands in autumn
+59173,parasympathetic_nervous_system parasympathetic,originates in the brain stem and lower part of the spinal cord; opposes physiological effects of the sympathetic nervous system: stimulates digestive secretions; slows the heart; constricts the pupils; dilates blood vessels
+59174,parathion,a colorless and odorless toxic oil used as an insecticide
+59175,parathion_poisoning,a toxic condition resulting from inhalation or ingestion of the insecticide parathion; characterized by nausea and abdominal pains and headache and convulsions and sweating
+59176,parathyroid_gland parathyroid,any one of four endocrine glands situated above or within the thyroid gland
+59177,parathyroid_hormone parathormone,hormone synthesized and released into the blood stream by the parathyroid glands; regulates phosphorus and calcium in the body and functions in neuromuscular excitation and blood clotting
+59178,paratrooper para,a soldier in the paratroops
+59179,paratroops,infantry trained and equipped to parachute
+59180,paratyphoid paratyphoid_fever,any of a variety of infectious intestinal diseases resembling typhoid fever
+59181,paraumbilical_vein vena_paraumbilicalis,small veins arising in skin around the navel; terminate as accessory portal veins
+59182,parcel portion share,the allotment of some amount by dividing something; "death gets more than its share of attention from theologians"
+59183,parcel_post,postal service that handles packages
+59184,parcellation,the division into parcels; "the increasing parcellation of land with every generation"
+59185,parchment,a superior paper resembling sheepskin
+59186,parchment sheepskin lambskin,skin of a sheep or goat prepared for writing on
+59187,pardon amnesty,a warrant granting release from punishment for an offense
+59188,pardoner,a medieval cleric who raised money for the church by selling papal indulgences
+59189,pardoner forgiver excuser,a person who pardons or forgives or excuses a fault or offense
+59190,paregmenon,juxtaposing words having a common derivation (as in `sense and sensibility')
+59191,paregoric camphorated_tincture_of_opium,medicine used to treat diarrhea
+59192,parenchyma,the primary tissue of higher plants composed of thin-walled cells that remain capable of cell division even when mature; constitutes the greater part of leaves, roots, the pulp of fruits, and the pith of stems
+59193,parenchyma,animal tissue that constitutes the essential part of an organ as contrasted with e.g. connective tissue and blood vessels
+59194,parent,a father or mother; one who begets or one who gives birth to or nurtures and raises a child; a relative who plays the role of guardian
+59195,parent,an organism (plant or animal) from which younger ones are obtained
+59196,parentage birth,the kinship relation of an offspring to the parents
+59197,parental_quality,a quality appropriate to a parent
+59198,parenthesis,either of two punctuation marks (or) used to enclose textual material
+59199,parenthesis-free_notation,a notation for forming mathematical expressions that does not use parentheses to delimit components
+59200,parenthetical_expression parenthetical,an expression in parentheses; "his writing was full of parentheticals"
+59201,parenthood parentage,the state of being a parent; "to everyone's surprise, parenthood reformed the man"
+59202,parer,a manicurist who trims the fingernails
+59203,parer paring_knife,a small sharp knife used in paring fruits or vegetables
+59204,paresis,a slight or partial paralysis
+59205,paresthesia paraesthesia,abnormal skin sensations (as tingling or tickling or itching or burning) usually associated with peripheral nerve damage
+59206,paretic,a person afflicted with paresis (partial paralysis)
+59207,parfait,layers of ice cream and syrup and whipped cream
+59208,parfait_glass,a tall slender glass with a short stem in which parfait is served
+59209,parget pargeting pargetting,plaster used to coat outer walls and line chimneys
+59210,pargeting pargetting,ornamental plastering
+59211,pargeting pargetting pargetry,ornamental plasterwork
+59212,parhelion mock_sun sundog,a bright spot on the parhelic circle; caused by diffraction by ice crystals; "two or more parhelia are usually seen at once"
+59213,pari-mutuel_machine totalizer totaliser totalizator totalisator,computer that registers bets and divides the total amount bet among those who won
+59214,pariah_dog pye-dog pie-dog,ownerless half-wild mongrel dog common around Asian villages especially India
+59215,parietal_bone,either of two skull bones between the frontal and occipital bones and forming the top and sides of the cranium
+59216,parietal_gyrus,any of the convolutions of the outer surface of the parietal lobe of the cerebrum
+59217,parietal_lobe parietal_cortex,that part of the cerebral cortex in either hemisphere of the brain lying below the crown of the head
+59218,parietal_pericardium,the tough outermost layer of the pericardium that is attached to the diaphragm and the sternum
+59219,parietal_placentation,where ovules develop on the wall or slight outgrowths of the wall forming broken partitions within a compound ovary
+59220,parietal_pleura,pleura that lines the inner chest walls and covers the diaphragm
+59221,parieto-occipital_sulcus parieto-occipital_fissure,a sulcus near the posterior end of each hemisphere that separates the parietal lobes and the occipital lobes in both hemispheres
+59222,parietomastoid_suture,the suture between the parietal and the temporal bones
+59223,parimutuel,betting where winners share the total amount wagered
+59224,paring,(usually plural) a part of a fruit or vegetable that is pared or cut off; especially the skin or peel; "she could peel an apple with a single long paring"
+59225,paring sliver shaving,a thin fragment or slice (especially of wood) that has been shaved from something
+59226,parish,the local subdivision of a diocese committed to one pastor
+59227,parish,a local church community
+59228,parishioner,a member of a parish
+59229,parisology,the use of ambiguous words
+59230,parity,(mathematics) a relation between a pair of integers: if both integers are odd or both are even they have the same parity; if one is odd and the other is even they have different parity; "parity is often used to check the integrity of transmitted data"
+59231,parity,functional equality
+59232,parity conservation_of_parity space-reflection_symmetry mirror_symmetry,(physics) parity is conserved in a universe in which the laws of physics are the same in a right-handed system of coordinates as in a left-handed system
+59233,parity para,(obstetrics) the number of liveborn children a woman has delivered; "the parity of the mother must be considered"; "a bipara is a woman who has given birth to two children"
+59234,parity_bit parity check_bit,(computer science) a bit that is used in an error detection procedure in which a 0 or 1 is added to each group of bits so that it will have either an odd number of 1's or an even number of 1's; e.g., if the parity is odd then any group of bits that arrives with an even number of 1's must contain an error
+59235,parity_check redundancy_check odd-even_check,a system of checking for errors in computer functioning
+59236,park,a gear position that acts as a parking brake; "the put the car in park and got out"
+59237,park commons common green,a piece of open land for recreational use in an urban area; "they went for a walk in the park"
+59238,park parkland,a large area of land preserved in its natural state as public property; "there are laws that protect the wildlife in this park"
+59239,park_bench,a bench in a public park
+59240,park_commissioner,a commissioner in charge of public parks
+59241,parka windbreaker windcheater anorak,a kind of heavy jacket (`windcheater' is a British term)
+59242,parking,space in which vehicles can be parked; "there is plenty of parking behind the store"
+59243,parking,the act of maneuvering a vehicle into a location where it can be left temporarily
+59244,parking_lot car_park park parking_area,a lot where cars are parked
+59245,parking_meter,a coin-operated timer located next to a parking space; depositing money into it entitles you to park your car there for a specified length of time
+59246,parking_space parking_zone,a space where an automobile can be parked
+59247,parking_ticket,a ticket issued for parking in a restricted place
+59248,parlance idiom,a manner of speaking that is natural to native speakers of a language
+59249,parlay,a series of wagers in which the winnings from one wager are used as a stake for the subsequent wagers
+59250,parley,a negotiation between enemies
+59251,parliament,a legislative assembly in certain countries
+59252,parliamentarian,an expert in parliamentary rules and procedures
+59253,parliamentary_agent,a person who is employed to look after the affairs of businesses that are affected by legislation of the British Parliament
+59254,parliamentary_democracy,a democracy having a parliament
+59255,parliamentary_monarchy,a monarchy having a parliament
+59256,parlor parlour,reception room in an inn or club where visitors can be received
+59257,parlor_car parlour_car drawing-room_car palace_car chair_car,a passenger car for day travel; you pay extra fare for individual chairs
+59258,parlor_game parlour_game,a game suitable for playing in a parlor
+59259,parlormaid parlourmaid,a maid in a private home whose duties are to care for the parlor and the table and to answer the door
+59260,parnassia grass-of-Parnassus,any of various usually evergreen bog plants of the genus Parnassia having broad smooth basal leaves and a single pale flower resembling a buttercup
+59261,parochialism,a limitation of views or interests like that defined by a local parish
+59262,parodist lampooner,mimics literary or musical style for comic effect
+59263,parody lampoon spoof sendup send-up mockery takeoff burlesque travesty pasquinade put-on,a composition that imitates or misrepresents somebody's style, usually in a humorous way
+59264,parody mockery takeoff,humorous or satirical mimicry
+59265,parol_evidence_rule,a rule that oral evidence cannot be used to contradict the terms of a written contract
+59266,parole,(law) a conditional release from imprisonment that entitles the person to serve the remainder of the sentence outside the prison as long as the terms of release are complied with
+59267,parole word word_of_honor,a promise; "he gave his word"
+59268,paronychia,infection in the tissues adjacent to a nail on a finger or toe
+59269,paronym,a word that strongly resembles another word in spelling
+59270,parotid_gland,a large salivary gland that produces 50% of daytime saliva; in human beings it is located in front of and below each ear
+59271,parotid_vein,parotid branches of the facial vein; they drain part of the parotid gland and empty into the retromandibular vein
+59272,parotitis,inflammation of one or both parotid glands
+59273,paroxetime Paxil,a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade name Paxil)
+59274,paroxysm fit convulsion,a sudden uncontrollable attack; "a paroxysm of giggling"; "a fit of coughing"; "convulsions of laughter"
+59275,paroxysmal_trepidant_abasia,abasia related to spasticity of the legs
+59276,paroxytone,word having stress or acute accent on the next to last syllable
+59277,parquet,seating on the main floor between the orchestra and the parquet circle
+59278,parquet parquet_floor,a floor made of parquetry
+59279,parquet_circle parterre,seating at the rear of the main floor (beneath the balconies)
+59280,parquetry parqueterie,a patterned wood inlay used to cover a floor
+59281,parr,a young salmon up to 2 years old
+59282,parr,the young of various fishes
+59283,parricide,someone who kills his or her parent
+59284,parricide,the murder of your own father or mother
+59285,parrot,a copycat who does not understand the words or acts being imitated
+59286,parrot,usually brightly colored zygodactyl tropical birds with short hooked beaks and the ability to mimic sounds
+59287,parrot's_beak parrot's_bill Clianthus_puniceus,evergreen shrub with scarlet to white clawlike or beaklike flowers; New Zealand
+59288,parrotfish polly_fish pollyfish,gaudy tropical fishes with parrotlike beaks formed by fusion of teeth
+59289,parry,(fencing) blocking a lunge or deflecting it with a circular motion of the sword
+59290,pars_distilis pars_anterior,the anterior part of the anterior pituitary
+59291,pars_intermedia,a thin piece of tissue that has become part of the posterior pituitary
+59292,parsec secpar,a unit of astronomical length based on the distance from Earth at which stellar parallax is 1 second of arc; equivalent to 3.262 light years
+59293,parser,a computer program that divides code up into functional components; "compilers must parse source code in order to translate it into object code"
+59294,parsimony parsimoniousness thrift penny-pinching,extreme care in spending money; reluctance to spend money unnecessarily
+59295,parsley,aromatic herb with flat or crinkly leaves that are cut finely and used to garnish food
+59296,parsley Petroselinum_crispum,annual or perennial herb with aromatic leaves
+59297,parsley_haw parsley-leaved_thorn Crataegus_apiifolia Crataegus_marshallii,southern United States hawthorn with pinnately lobed leaves
+59298,parsnip,the whitish root of cultivated parsnip
+59299,parsnip,whitish edible root; eaten cooked
+59300,parsnip Pastinaca_sativa,a strong-scented plant cultivated for its edible root
+59301,parson's_nose pope's_nose,the tail of a dressed fowl
+59302,parsonage vicarage rectory,an official residence provided by a church for its parson or vicar or rector
+59303,part,that which concerns a person with regard to a particular role or situation; "it requires vigilance on our part"; "they resisted every effort on his part"
+59304,part parting,a line of scalp that can be seen when sections of hair are combed in opposite directions; "his part was right in the middle"
+59305,part piece,a portion of a natural object; "they analyzed the river into three parts"; "he needed a piece of granite"
+59306,part portion,something less than the whole of a human artifact; "the rear part of the house"; "glue the two parts together"
+59307,part portion component_part component constituent,something determined in relation to something that includes it; "he wanted to feel a part of something bigger than himself"; "I read a portion of the manuscript"; "the smaller component is hard to reach"; "the animal constituent of plankton"
+59308,part section division,one of the portions into which something is regarded as divided and which together constitute a whole; "the written part of the exam"; "the finance section of the company"; "the BBC's engineering division"
+59309,part voice,the melody carried by a particular voice or instrument in polyphonic music; "he tried to sing the tenor part"
+59310,part-of-speech_tagger pos_tagger,a tagging program whose labels indicate a word's part of speech
+59311,part-owner,a person who owns something in common with others
+59312,part-singing,singing with three or more voice parts
+59313,part-timer,someone who works less than the customary or standard time
+59314,part_music,vocal music for several voices in independent parts (usually performed without accompaniment)
+59315,part_of_speech form_class word_class,one of the traditional categories of words intended to reflect their functions in a grammatical context
+59316,partaker sharer,someone who has or gives or receives a part or a share
+59317,parted_leaf,a leaf having margins incised almost to the base so as to create distinct divisions or lobes
+59318,parterre,an ornamental flower garden; beds and paths are arranged to form a pattern
+59319,parthenocarpy,(botany) the development of a fruit without fertilization or seeds
+59320,parthenogenesis parthenogeny,process in which an unfertilized egg develops into a new individual; common among insects and some other arthropods
+59321,parthenogenesis parthenogeny virgin_birth,human conception without fertilization by a man
+59322,parthenote,a cell resulting from parthenogenesis
+59323,partial_breach,a breach that does not destroy the value of the contract but can give rise to a claim for damages
+59324,partial_correlation,a correlation between two variables when the effects of one or more related variables are removed
+59325,partial_denture,a denture replacing one or more teeth in a dental arch
+59326,partial_derivative partial,the derivative of a function of two or more variables with respect to a single variable while the other variables are considered to be constant
+59327,partial_differential_equation,a differential equation involving a functions of more than one variable
+59328,partial_eclipse,an eclipse in which the eclipsed body is only partially obscured
+59329,partial_veil,membrane of the young sporophore of various mushrooms extending from the margin of the cap to the stem and is ruptured by growth; represented in mature mushroom by an annulus around the stem and sometimes a cortina on the margin of the cap
+59330,partial_verdict,(criminal law) a finding that the defendant is guilty of some charges but innocent of others
+59331,partiality partisanship,an inclination to favor one group or view or opinion over alternatives
+59332,partialness,the state of being only a part; not total; incomplete
+59333,participant player,someone who takes part in an activity; "he was a major player in setting up the corporation"
+59334,participation involvement,the condition of sharing in common with others (as fellows or partners etc.)
+59335,participation_loan loan_participation participation_financing,a loan that is shared by a group of banks that join to make a loan too big for any one of them alone
+59336,participle participial,a non-finite form of the verb; in English it is used adjectivally and to form compound tenses
+59337,particle,a function word that can be used in English to form phrasal verbs
+59338,particle subatomic_particle,a body having finite mass and internal structure but negligible dimensions
+59339,particle_beam,a collimated flow of particles (atoms or electrons or molecules)
+59340,particle_detector,a chamber in which particles can be made visible
+59341,particle_physics high-energy_physics high_energy_physics,the branch of physics that studies subatomic particles and their interactions
+59342,particolored_buckeye,a buckeye marked by different colors or tints
+59343,particular particular_proposition,(logic) a proposition that asserts something about some (but not all) members of a class
+59344,particular specific,a fact about some part (as opposed to general); "he always reasons from the particular to the general"
+59345,particularism,a focus on something particular
+59346,particularity specialness,the quality of being particular and pertaining to a specific case or instance; "the particularity of human situations"
+59347,particularization particularisation detailing,an individualized description of a particular instance
+59348,particulate particulate_matter,a small discrete mass of solid or liquid matter that remains individually dispersed in gas or liquid emissions (usually considered to be an atmospheric pollutant)
+59349,partisan partizan,a pike with a long tapering double-edged blade with lateral projections; 16th and 17th centuries
+59350,partisan zealot drumbeater,a fervent and even militant proponent of something
+59351,partita,one of the variations contained in a partita
+59352,partita,(music) an instrumental suite common in the 18th century
+59353,partition,(computer science) the part of a hard disk that is dedicated to a particular operating system or application and accessed as a single unit
+59354,partition,(anatomy) a structure that separates areas in an organism
+59355,partition divider,a vertical structure that divides or separates (as a wall divides one room from another)
+59356,partitionist,an advocate of partitioning a country
+59357,partitive,word (such a `some' or `less') that is used to indicate a part as distinct from a whole
+59358,partner,a person who is a member of a partnership
+59359,partner_relation,the responsibility of partners to act in one another's best interests
+59360,partnership,a cooperative relationship between people or groups who agree to share responsibility for achieving some specific goal; "effective language learning is a partnership between school, teacher and student"; "the action teams worked in partnership with the government"
+59361,partnership,the members of a business venture created by contract
+59362,partnership,a contract between two or more persons who agree to pool talent and money and share profits or losses
+59363,partnership_certificate,a certificate showing the interests of all parties in a business partnership
+59364,partridge,flesh of either quail or grouse
+59365,partridge,small Old World gallinaceous game birds
+59366,partridge_pea sensitive_pea wild_sensitive_plant Chamaecrista_fasciculata Cassia_fasciculata,tropical American plant having leaflets somewhat sensitive to the touch; sometimes placed in genus Cassia
+59367,partridgeberry boxberry twinberry Mitchella_repens,creeping woody plant of eastern North America with shiny evergreen leaves and scarlet berries
+59368,parts,the local environment; "he hasn't been seen around these parts in years"
+59369,parts_bin,a bin for holding spare parts
+59370,parts_catalog parts_catalogue,a list advertising parts for machinery along with prices
+59371,parts_department,the division of a business (e.g. a service garage) that sells replacement parts
+59372,parts_inventory,an inventory of replacement parts
+59373,partsong,a song with two or more voice parts
+59374,parturiency labor labour confinement lying-in travail childbed,concluding state of pregnancy; from the onset of contractions to the birth of a child; "she was in labor for six hours"
+59375,parturition birth giving_birth birthing,the process of giving birth
+59376,party,a person involved in legal proceedings; "the party of the first part"
+59377,party,a group of people gathered together for pleasure; "she joined the party after dinner"
+59378,party,an occasion on which people can assemble for social interaction and entertainment; "he planned a party to celebrate Bastille Day"
+59379,party company,a band of people associated temporarily in some activity; "they organized a party to search for food"; "the company of cooks walked into the kitchen"
+59380,party political_party,an organization to gain political power; "in 1992 Perot tried to organize a third party at the national level"
+59381,party_boss political_boss boss,a leader in a political party who controls votes and dictates appointments; "party bosses have a reputation for corruption"
+59382,party_favor party_favour favor favour,souvenir consisting of a small gift given to a guest at a party
+59383,party_game,a game to amuse guests at a party
+59384,party_girl,an attractive young woman hired to attend parties and entertain men
+59385,party_line,the policy of a political group; "He won in a vote along party lines"
+59386,party_line,a telephone line serving two or more subscribers
+59387,party_man party_liner,a member of a political party who follows strictly the party line
+59388,party_spirit,devotion to a political party
+59389,party_to_the_action party_to_the_transaction,a party of people taking a role in legal proceedings
+59390,party_wall,a wall erected on the line between two properties and shared by both owners
+59391,partygoer,someone who is attending a party; "the hall was crowded with an overflow of partygoers"
+59392,parula_warbler northern_parula Parula_americana,small grey-blue wood warbler with yellow throat and breast; of eastern North America
+59393,parvis,a courtyard or portico in front of a building (especially a cathedral)
+59394,parvovirus parvo,any of a group of viruses containing DNA in an icosahedral protein shell and causing disease in dogs and cattle; not known to be associated with any human disease
+59395,pas,(ballet) a step in dancing (especially in classical ballet)
+59396,pas_de_deux duet,(ballet) a dance for two people (usually a ballerina and a danseur noble)
+59397,pas_de_quatre,(ballet) a dance for four people
+59398,pas_de_trois,(ballet) a dance for three people
+59399,pas_seul variation,(ballet) a solo dance or dance figure
+59400,pascal Pa,a unit of pressure equal to one newton per square meter
+59401,pascal_celery Paschal_celery,any of several types of commercially grown celery having green stalks
+59402,pasha pacha,a civil or military authority in Turkey or Egypt
+59403,paso_doble,music in march time composed for dancing the paso doble; often played at bull fights
+59404,paso_doble,a ballroom dance in fast duple time
+59405,pasqueflower pasque_flower,any plant of the genus Pulsatilla; sometimes included in genus Anemone
+59406,pass,(military) a written leave of absence; "he had a pass for three days"
+59407,pass,one complete cycle of operations (as by a computer); "it was not possible to complete the computation in a single pass"
+59408,pass,a complimentary ticket; "the star got passes for his family"
+59409,pass,a flight or run by an aircraft over a target; "the plane turned to make a second pass"
+59410,pass head straits,a difficult juncture; "a pretty pass"; "matters came to a head yesterday"
+59411,pass laissez_passer,a document indicating permission to do something without restrictions; "the media representatives had special passes"
+59412,pass liberty_chit,a permit to enter or leave a military installation; "he had to show his pass in order to get out"
+59413,pass mountain_pass notch,the location in a range of mountains of a geological formation that is lower than the surrounding peaks; "we got through the pass before it started to snow"
+59414,pass passing_play passing_game passing,(American football) a play that involves one player throwing the ball to a teammate; "the coach sent in a passing play on third and long"
+59415,pass passport,any authorization to pass or go somewhere; "the pass to visit had a strict time limit"
+59416,pass strait straits,a bad or difficult situation or state of affairs
+59417,pass toss flip,(sports) the act of throwing the ball to another member of your team; "the pass was fumbled"
+59418,pass-through,an opening that resembles a window between two rooms (especially a shelved opening between a kitchen and dining room that is used to pass dishes)
+59419,passage,a section of text; particularly a section of medium length
+59420,passage,a way through or along which someone or something may pass
+59421,passage handing_over,the act of passing something to another person
+59422,passage musical_passage,a short section of a musical composition
+59423,passage passageway,a path or channel or duct through or along which something may pass; "the nasal passages"
+59424,passage passing,a bodily reaction of changing from one place or stage to another; "the passage of air from the lungs"; "the passing of flatus"
+59425,passage transit,a journey usually by ship; "the outward passage took 10 days"
+59426,passage transition,the act of passing from one state or place to the next
+59427,passageway,a passage between rooms or between buildings
+59428,passbook_savings_account,a savings account in which deposits and withdrawals are recorded in the depositor's passbook
+59429,passe-partout,a mounting for a picture using gummed tape
+59430,passed_ball,a pitch that the catcher should have caught but did not; allows a base runner to advance a base
+59431,passenger rider,a traveler riding in a vehicle (a boat or bus or car or plane or train etc) who is not operating it
+59432,passenger_car coach carriage,a railcar where passengers ride
+59433,passenger_pigeon Ectopistes_migratorius,gregarious North American migratory pigeon now extinct
+59434,passenger_ship,a ship built to carry passengers
+59435,passenger_train,a train that carries passengers
+59436,passenger_van,a van that carries passengers
+59437,passer,a person who passes as a member of a different ethnic or racial group
+59438,passer,a student who passes an examination
+59439,passer forward_passer,(football) a ball carrier who tries to gain ground by throwing a forward pass
+59440,passerby passer-by passer,a person who passes by casually or by chance
+59441,passerine passeriform_bird,perching birds mostly small and living near the ground with feet having 4 toes arranged to allow for gripping the perch; most are songbirds; hatchlings are helpless
+59442,passing,the end of something; "the passing of winter"
+59443,passing loss departure exit expiration going release,euphemistic expressions for death; "thousands mourned his passing"
+59444,passing overtaking,going by something that is moving in order to get in front of it; "she drove but well but her reckless passing of every car on the road frightened me"
+59445,passing pass qualifying,success in satisfying a test or requirement; "his future depended on his passing that test"; "he got a pass in introductory chemistry"
+59446,passing passage,the motion of one object relative to another; "stellar passings can perturb the orbits of comets"
+59447,passing_note passing_tone,a nonharmonic note inserted for transition between harmonic notes
+59448,passing_shot,a tennis return that passes an opponent who has approached the net
+59449,passion,a feeling of strong sexual desire
+59450,passion passionateness,a strong feeling or emotion
+59451,passion_fruit,egg-shaped tropical fruit of certain passionflower vines; used for sherbets and confectionery and drinks
+59452,passionflower passionflower_vine,any of various chiefly tropical American vines some bearing edible fruit
+59453,passive_air_defense,air defense by the use of deception or dispersion or protective construction
+59454,passive_immunity,an impermanent form of acquired immunity in which antibodies against a disease are acquired naturally (as through the placenta to an unborn child) or artificially (as by injection of antiserum)
+59455,passive_matrix_display,a type of LCD display used for some portable computers; parallel wires run both vertically and horizontally and pixels are turned on when the wires intersecting at that pixel are both energized; "passive matrix displays are generally inferior to active matrix displays"
+59456,passive_resistance nonviolent_resistance nonviolence,peaceful resistance to a government by fasting or refusing to cooperate
+59457,passive_source,an informant who is not assigned to obtain specific intelligence but who routinely passes on whatever information he or she has
+59458,passive_transport,transport of a substance across a cell membrane by diffusion; expenditure of energy is not required
+59459,passive_trust,a trust in which the trustee performs no active duties
+59460,passive_voice passive,the voice used to indicate that the grammatical subject of the verb is the recipient (not the source) of the action denoted by the verb; "`The ball was thrown by the boy' uses the passive voice"; "`The ball was thrown' is an abbreviated passive"
+59461,passivity passiveness,submission to others or to outside influences
+59462,passivity passiveness,the trait of remaining inactive; a lack of initiative
+59463,passkey passe-partout master_key master,key that secures entrance everywhere
+59464,passport,a document issued by a country to a citizen allowing that person to travel abroad and re-enter the home country
+59465,password watchword word parole countersign,a secret word or phrase known only to a restricted group; "he forgot the password"
+59466,past,a earlier period in someone's life (especially one that they have reason to keep secret); "reporters dug into the candidate's past"
+59467,past past_tense,a verb tense that expresses actions or states in the past
+59468,past past_times yesteryear,the time that has elapsed; "forget the past"
+59469,past_master,someone who was formerly a master
+59470,past_master,someone who has long and thorough experience in a given activity
+59471,past_participle perfect_participle,a participle that expresses completed action
+59472,past_perfect past_perfect_tense pluperfect pluperfect_tense,a perfective tense used to express action completed in the past; "`I had finished' is an example of the past perfect"
+59473,past_progressive past_progressive_tense,a progressive tense used to describe on-going action in the past; "`I had been running' is an example of the past progressive"
+59474,pasta,a dish that contains pasta as its main ingredient
+59475,pasta alimentary_paste,shaped and dried dough made from flour and water and sometimes egg
+59476,pasta_salad,a salad having any of various pastas as the base
+59477,paste,a hard, brilliant lead glass that is used in making artificial jewelry
+59478,paste,any mixture of a soft and malleable consistency
+59479,paste library_paste,an adhesive made from water and flour or starch; used on paper and paperboard
+59480,paste-up,a composition of flat objects pasted on a board or other backing; "they showed him a paste-up of the book jacket"
+59481,pasteboard,stiff cardboard made by pasting together layers of paper
+59482,pastel,any of various pale or light colors
+59483,paster,a workman who pastes
+59484,pastern fetter_bone,the part between the fetlock and the hoof
+59485,pasteurization pasteurisation,partial sterilization of foods at a temperature that destroys harmful microorganisms without major changes in the chemistry of the food
+59486,pasteurized_milk,milk that has been exposed briefly to high temperatures to destroy microorganisms and prevent fermentation
+59487,pastiche,a work of art that imitates the style of some previous work
+59488,pastime interest pursuit,a diversion that occupies one's time and thoughts (usually pleasantly); "sailing is her favorite pastime"; "his main pastime is gambling"; "he counts reading among his interests"; "they criticized the boy for his limited pursuits"
+59489,pastis,similar to absinthe but containing no wormwood
+59490,pastness,the quality of being past
+59491,pastoral,a letter from a pastor to the congregation
+59492,pastoral,a literary work idealizing the rural life (especially the life of shepherds)
+59493,pastorale pastoral idyll idyl,a musical composition that evokes rural life
+59494,pastorate,pastors collectively
+59495,pastorship pastorate,the position of pastor
+59496,pastrami,highly seasoned cut of smoked beef
+59497,pastry,any of various baked foods made of dough or batter
+59498,pastry pastry_dough,a dough of flour and water and shortening
+59499,pastry_cart,a serving cart for displaying pastry desserts to restaurant patrons
+59500,pastry_cook,a chef who specializes in pastry
+59501,pasture pastureland grazing_land lea ley,a field covered with grass or herbage and suitable for grazing by livestock
+59502,pasty,small meat pie or turnover
+59503,pasty,(usually used in the plural) one of a pair of adhesive patches worn to cover the nipples of exotic dancers and striptease performers
+59504,pat rap tap,the sound made by a gentle blow
+59505,pataca,the basic unit of money in Macao
+59506,patas hussar_monkey Erythrocebus_patas,reddish long-tailed monkey of west Africa
+59507,patch,a short set of commands to correct a bug in a computer program
+59508,patch,a piece of cloth used as decoration or to mend or cover a hole
+59509,patch_pocket,a flat pocket sewn to the outside of a garment
+59510,patch_test,a test to determine allergic sensitivity by applying small pads soaked with allergen to the unbroken skin
+59511,patchcord,a length of wire that has a plug at each end; used to make connections at a patchboard
+59512,patchiness,unevenness in quality or performance
+59513,patching,the act of mending a hole in a garment by sewing a patch over it
+59514,patchouli patchouly pachouli,a heavy perfume made from the patchouli plant
+59515,patchouli patchouly pachouli Pogostemon_cablin,small East Indian shrubby mint; fragrant oil from its leaves is used in perfumes
+59516,patchwork,sewing consisting of pieces of different materials sewn together in a pattern
+59517,patchwork hodgepodge jumble,a theory or argument made up of miscellaneous or incongruous ideas
+59518,patchwork patchwork_quilt,a quilt made by sewing patches of different materials together
+59519,pate,liver or meat or fowl finely minced or ground and variously seasoned
+59520,pate poll crown,the top of the head
+59521,patella kneecap kneepan,a small flat triangular bone in front of the knee that protects the knee joint
+59522,patency,the openness (lack of obstruction) of a bodily passage or duct
+59523,patent letters_patent,an official document granting a right or privilege
+59524,patent patent_of_invention,a document granting an inventor sole rights to an invention
+59525,patent_application,an application for sole rights to an invention
+59526,patent_ductus_arteriosus,a ductus arteriosus that failed to close at birth; may require surgical correction
+59527,patent_infringement,violation of the rights secured by a patent
+59528,patent_law,that branch of jurisprudence that studies the laws governing patents
+59529,patent_leather,leather with a hard glossy surface
+59530,patent_log screw_log taffrail_log,a cigar-shaped log with rotary fins that measure the ship's speed
+59531,patent_medicine,medicine that is protected by a patent and available without a doctor's prescription
+59532,patent_right,the right granted by a patent; especially the exclusive right to an invention
+59533,patent_system,a legal system for protecting the rights of inventors
+59534,patentee,the inventor to whom a patent is issued
+59535,pater,an informal use of the Latin word for father; sometimes used by British schoolboys or used facetiously
+59536,paternalism,the attitude (of a person or a government) that subordinates should be controlled in a fatherly way for their own good
+59537,paternity,the state of being a father; "tests were conducted to determine paternity"
+59538,paternity_suit bastardy_proceeding,a lawsuit filed to determine the father of a child born out of wedlock (and to provide for the support of the child once paternity is determined)
+59539,paternity_test,a test based on blood groups to determine whether a particular man could be the biological father of a particular child; negative results prove he was not the father but positive results show only that he could be
+59540,paternoster,a type of lift having a chain of open compartments that move continually in an endless loop so that (agile) passengers can step on or off at each floor
+59541,path,a way especially designed for a particular use
+59542,path route itinerary,an established line of travel or access
+59543,path track course,a line or route along which something travels or moves; "the hurricane demolished houses in its path"; "the track of an animal"; "the course of the river"
+59544,pathetic_fallacy,the fallacy of attributing human feelings to inanimate objects; `the friendly sun' is an example of the pathetic fallacy
+59545,pathogen,any disease-producing agent (especially a virus or bacterium or other microorganism)
+59546,pathogenesis,the origination and development of a disease
+59547,pathologic_process pathological_process,an organic process occurring as a consequence of disease
+59548,pathological_state,a physical condition that is caused by disease
+59549,pathology,any deviation from a healthy or normal condition
+59550,pathology,the branch of medical science that studies the causes and nature and effects of diseases
+59551,pathos,a style that has the power to evoke feelings
+59552,pathos poignancy,a quality that arouses emotions (especially pity or sorrow); "the film captured all the pathos of their situation"
+59553,pathway footpath,a trodden path
+59554,patience forbearance longanimity,good-natured tolerance of delay or incompetence
+59555,patient,a person who requires medical care; "the number of emergency patients has grown rapidly"
+59556,patina,an acquired change in the appearance of something (other than metal or wood); "a patina of frost"; "a patina of good breeding"
+59557,patina,a gloss or sheen on wooden furniture produced by age, polishing, or handling
+59558,patina,a fine coating of oxide (produced by oxidation over a long period of time) on the surface of a metal (particularly copper)
+59559,patio terrace,usually paved outdoor area adjoining a residence
+59560,patisserie,a bakery specializing in French pastry
+59561,patka,a scarf worn by Sikh men
+59562,patois,a regional dialect of a language (especially French); usually considered substandard
+59563,patrial,a person who has the right to be considered legally a British citizen (by virtue of the birth of a parent or grandparent)
+59564,patriarch,title for the heads of the Eastern Orthodox Churches (in Istanbul and Alexandria and Moscow and Jerusalem)
+59565,patriarch,any of the early biblical characters regarded as fathers of the human race
+59566,patriarch,a man who is older and higher in rank than yourself
+59567,patriarch paterfamilias,the male head of family or tribe
+59568,patriarchal_cross,a cross with two crossbars
+59569,patriarchate,the jurisdiction of a patriarch
+59570,patriarchy patriarchate,a form of social organization in which a male is the family head and title is traced through the male line
+59571,patrician,a person of refined upbringing and manners
+59572,patricide,a person who murders their father
+59573,patricide,the murder of your father
+59574,patrilineage agnation,line of descent traced through the paternal side of the family
+59575,patrimony,a church endowment
+59576,patriot nationalist,one who loves and defends his or her country
+59577,patriotism nationalism,love of country and willingness to sacrifice for it; "they rode the same wave of popular patriotism"; "British nationalism was in the air and patriotic sentiments ran high"
+59578,patristics patrology,the writings of the early Church Fathers
+59579,patristics patrology,the study of the lives, writings, and doctrines of the Church Fathers
+59580,patrol,a group that goes through a region at regular intervals for the purpose of security
+59581,patrol,a detachment used for security or reconnaissance
+59582,patrol,the activity of going around or through an area at regular intervals for security purposes
+59583,patrol_boat patrol_ship,a vessel assigned to patrol an area
+59584,patroller,someone on patrol duty; an individual or a member of a group that patrols an area
+59585,patron,the proprietor of an inn
+59586,patron frequenter,a regular customer
+59587,patron sponsor supporter,someone who supports or champions something
+59588,patron_saint,a saint who is considered to be a defender of some group or nation
+59589,patronage,(politics) granting favors or giving contracts or making appointments to office in return for political support
+59590,patroness patronne,a woman who is a patron or the wife of a patron
+59591,patronymic patronym,a family name derived from name of your father or a paternal ancestor (especially with an affix (such as -son in English or O'- in Irish) added to the name of your father or a paternal ancestor)
+59592,patter,a quick succession of light rapid sounds; "the patter of mice"; "the patter of tiny feet"
+59593,pattern,a model considered worthy of imitation; "the American constitution has provided a pattern for many republics"
+59594,patternmaker,someone who makes patterns (as for sewing or carpentry or metalworking)
+59595,patty,small pie or pasty
+59596,patty,round flat candy
+59597,patty cake,small flat mass of chopped food
+59598,patty-pan,a pan for cooking patties or pasties
+59599,patty_shell bouchee,shell of puff paste
+59600,pattypan_squash,round greenish-white squash having one face flattened with a scalloped edge
+59601,patzer,a poor chess player
+59602,pauper,a person who is very poor
+59603,pauperization pauperisation impoverishment,the act of making someone poor
+59604,pause,temporary inactivity
+59605,pause intermission break interruption suspension,a time interval during which there is a temporary cessation of something
+59606,pavage,a tax toward paving streets
+59607,pavane pavan,music composed for dancing the pavane
+59608,pavane pavan,a stately court dance of the 16th and 17th centuries
+59609,pave,a setting with precious stones so closely set that no metal shows
+59610,paved_surface,a level horizontal surface covered with paving material
+59611,pavement paving,the paved surface of a thoroughfare
+59612,pavement_artist,someone who draws on the pavement with colored chalks (hoping that passers-by will give them money)
+59613,pavilion marquee,large and often sumptuous tent
+59614,paving pavage,the act of applying paving materials to an area
+59615,paving pavement paving_material,material used to pave an area
+59616,paving_stone,a stone used for paving
+59617,pavior paviour paving_machine,a machine for laying pavement
+59618,pavis pavise,(Middle Ages) a large heavy oblong shield protecting the whole body; originally carried but sometimes set up in permanent position
+59619,pavlova,a dessert consisting of a meringue base or cup filled with fruit and whipped cream
+59620,pavonia,any of various evergreen plants of the genus Pavonia having white or yellow or purple flowers
+59621,paw,a clawed foot of an animal especially a quadruped
+59622,pawer,a person who handles or caresses in a clumsy or overfamiliar manner
+59623,pawl detent click dog,a hinged catch that fits into a notch of a ratchet to move a wheel forward or prevent it from moving backward
+59624,pawn,an article deposited as security
+59625,pawn,(chess) the least powerful piece; moves only forward and captures only to the side; it can be promoted to a more powerful piece if it reaches the 8th rank
+59626,pawn,borrowing and leaving an article as security for repayment of the loan
+59627,pawn_ticket,a pawnbroker's receipt for articles taken as security
+59628,pawnbroker,a person who lends money at interest in exchange for personal property that is deposited as security
+59629,pawnbroker's_shop pawnshop loan_office,a shop where loans are made with personal property as security
+59630,pawpaw papaw papaw_tree Asimina_triloba,small tree native to the eastern United States having oblong leaves and fleshy fruit
+59631,pax kiss_of_peace,(Roman Catholic Church) a greeting signifying Christian love for those assisting at the Eucharist
+59632,pay-phone pay-station,a coin-operated telephone
+59633,pay_cut salary_cut,the act of reducing a salary
+59634,pay_dirt,ore that yields a substantial profit to the miner
+59635,pay_dirt,a profitable success; "the inventor worked for years before hitting pay dirt"
+59636,pay_envelope pay_packet,wages enclosed in an envelope for distribution to the wage earner
+59637,pay_rate rate_of_pay,amount of money received per unit time; "women's pay rate is lower than men's"
+59638,payables,money that you currently expect to pay on notes and accounts
+59639,payback,financial return or reward (especially returns equal to the initial investment)
+59640,paycheck payroll_check,a check issued in payment of wages or salary
+59641,payday,the day on which you receive pay for your work
+59642,payee,a person to whom money is paid
+59643,payer remunerator,a person who pays money for something
+59644,paymaster,a person in charge of paying wages
+59645,payment,a sum of money paid or a claim discharged
+59646,payment defrayal defrayment,the act of paying money
+59647,payment_rate rate_of_payment repayment_rate installment_rate,the amount of money paid out per unit time
+59648,paynim,a heathen; a person who is not a Christian (especially a Muslim)
+59649,payoff final_payment,the final payment of a debt
+59650,payola,a bribe given to a disc jockey to induce him to promote a particular record
+59651,payroll payroll_department,the department that determines the amounts of wage or salary due to each employee
+59652,payroll paysheet,the total amount of money paid in wages; "the company had a large payroll"
+59653,payroll paysheet,a list of employees and their salaries; "the company had a long payroll"
+59654,payslip,a slip of paper included with your pay that records how much money you have earned and how much tax or insurance etc. has been taken out
+59655,pe,the 17th letter of the Hebrew alphabet
+59656,pea,the fruit or seed of a pea plant
+59657,pea,seed of a pea plant used for food
+59658,pea pea_plant,a leguminous plant of the genus Pisum with small white flowers and long green pods containing edible green seeds
+59659,pea_crab,tiny soft-bodied crab living commensally in the mantles of certain bivalve mollusks
+59660,pea_flour,meal made from dried peas
+59661,pea_jacket peacoat,a sailor's heavy woolen double-breasted jacket
+59662,pea_pod peasecod,husk of a pea; edible in some garden peas
+59663,pea_shooter,a straight narrow tube through which pellets (as dried peas) can be blown at a target
+59664,pea_soup,a thick soup made of dried peas (usually made into a puree)
+59665,pea_soup pea-souper,a heavy thick yellow fog
+59666,pea_tree caragana,any plant of the genus Caragana having even-pinnate leaves and mostly yellow flowers followed by seeds in a linear pod
+59667,pea_weevil Bruchus_pisorum,larvae live in and feed on seeds of the pea plant
+59668,peace,the state prevailing during the absence of war
+59669,peace,harmonious relations; freedom from disputes; "the roommates lived in peace together"
+59670,peace peace_treaty pacification,a treaty to cease hostilities; "peace came on November 11th"
+59671,peace peacefulness peace_of_mind repose serenity heartsease ataraxis,the absence of mental stress or anxiety
+59672,peace public_security,the general security of public places; "he was arrested for disturbing the peace"
+59673,peace_advocacy,any policy that advocates maintaining peaceful international relations
+59674,peace_initiative,opening move in negotiating a peace treaty
+59675,peace_march,a protest march against (a particular) war and in favor of peace
+59676,peace_offering olive_branch,something offered to an adversary in the hope of obtaining peace
+59677,peace_process,any social process undertaken by governments who want their citizens to believe they are trying to avoid armed hostilities
+59678,peaceableness peacefulness,a state that is calm and tranquil
+59679,peacekeeper,a member of a military force that is assigned (often with international sanction) to preserve peace in a trouble area
+59680,peacekeeper,someone who keeps peace; "she's the peacekeeper in that family"
+59681,peacekeeper,the pistol of a law officer in the old West
+59682,peacekeeping peacekeeping_mission peacekeeping_operation,the activity of keeping the peace by military forces (especially when international military forces enforce a truce between hostile groups or nations)
+59683,peacetime,a period of time during which there is no war
+59684,peach,downy juicy fruit with sweet yellowish or whitish flesh
+59685,peach peach_tree Prunus_persica,cultivated in temperate regions
+59686,peach_bells peach_bell willow_bell Campanula_persicifolia,perennial European bellflower with racemose white or blue flowers
+59687,peach_blight,a disease of trees bearing drupes
+59688,peach_ice_cream,ice cream flavored with fresh peaches
+59689,peach_melba,ice cream and peaches with a liqueur
+59690,peach_orchard,a grove of peach trees
+59691,peach_pit,the stone seed of a peach
+59692,peach_sauce,for Chinese dishes: peach preserves and chutney
+59693,peachick pea-chick,a young peafowl
+59694,peachleaf_willow peach-leaved_willow almond-leaves_willow Salix_amygdaloides,willow of the western United States with leaves like those of peach or almond trees
+59695,peacock,male peafowl; having a crested head and very large fanlike tail marked with iridescent eyes or spots
+59696,peacock peacock_butterfly Inachis_io,European butterfly having reddish-brown wings each marked with a purple eyespot
+59697,peacock-throne,the golden throne of former kings of Delhi; stolen by the Persians in 1739 and subsequently lost; symbol of the former Shah of Iran
+59698,peafowl bird_of_Juno,very large terrestrial southeast Asian pheasant often raised as an ornamental bird
+59699,peahen,female peafowl
+59700,peak crown crest top tip summit,the top or extreme point of something (usually a mountain or hill); "the view from the peak was magnificent"; "they clambered to the tip of Monadnock"; "the region is a few molecules wide at the summit"
+59701,peal pealing roll rolling,a deep prolonged sound (as of thunder or large bells)
+59702,peanut,underground pod of the peanut vine
+59703,peanut,a young child who is small for his age
+59704,peanut earthnut goober goober_pea groundnut monkey_nut,pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms
+59705,peanut peanut_vine Arachis_hypogaea,widely cultivated American plant cultivated in tropical and warm regions; showy yellow flowers on stalks that bend over to the soil so that seed pods ripen underground
+59706,peanut_bar,bar of peanuts in taffy
+59707,peanut_brittle,brittle containing peanuts
+59708,peanut_butter,a spread made from ground peanuts
+59709,peanut_gallery,(figurative) people whose criticisms are regarded as irrelevant or insignificant (resembling uneducated people who throw peanuts on the stage to express displeasure with a performance); "he ignored complaints from the peanut gallery"
+59710,peanut_oil groundnut_oil,an oil from peanuts; used in cooking and making soap
+59711,peanut_worm sipunculid,small unsegmented marine worm that when disturbed retracts its anterior portion into the body giving the appearance of a peanut
+59712,peanuts,an insignificant sum of money; a trifling amount; "her salary is peanuts compared to his"
+59713,pear,sweet juicy gritty-textured fruit available in many varieties
+59714,pear pear_tree Pyrus_communis,Old World tree having sweet gritty-textured juicy fruit; widely cultivated in many varieties
+59715,pearl,a smooth lustrous round structure inside the shell of a clam or oyster; much valued as a jewel
+59716,pearl_ash,an impure form of potassium carbonate
+59717,pearl_barley,barley ground into small round pellets
+59718,pearl_diver pearler,a diver who searches for molluscs containing pearls
+59719,pearl_fishery,a fishery where they fish for pearl oysters
+59720,pearl_hominy,hominy prepared by milling to pellets of medium size
+59721,pearl_millet bulrush_millet cattail_millet Pennisetum_glaucum Pennisetum_Americanum,tall grass having cattail like spikes; grown in Africa and Asia for its grain and in the United States chiefly for forage; sometimes used in making beer
+59722,pearl_oyster Pinctada_margaritifera,tropical marine bivalve found chiefly off eastern Asia and Pacific coast of North America and Central America; a major source of pearls
+59723,pearl_sago,sago ground into small round grains
+59724,pearlfish pearl-fish,found living within the alimentary canals of e.g. sea cucumbers or between the shells of pearl oysters in or near shallow seagrass beds
+59725,pearlite,a lamellar mixture of cementite and ferrite formed during the cooling of austenite; a constituent of steel and cast iron
+59726,pearlwort pearlweed pearl-weed,any of various low-growing plants of the genus Sagina having small spherical flowers resembling pearls
+59727,pearly-shelled_mussel,the pearly lining of the dark shells is a source of mother-of-pearl
+59728,pearly_everlasting cottonweed Anaphalis_margaritacea,an American everlasting having foliage with soft wooly hairs and corymbose heads with pearly white bracts
+59729,pearly_razorfish Hemipteronatus_novacula,a kind of razor fish
+59730,peasant,one of a (chiefly European) class of agricultural laborers
+59731,peasant barbarian boor churl Goth tyke tike,a crude uncouth ill-bred person lacking culture or refinement
+59732,peasant provincial bucolic,a country person
+59733,peasanthood,the state of being a peasant; "the same homely dress she wore in the days of her peasanthood"
+59734,peasantry,the class of peasants
+59735,pease_pudding,a pudding made with strained split peas mixed with egg
+59736,peat,partially carbonized vegetable matter saturated with water; can be used as a fuel when dried
+59737,peavey peavy cant_dog dog_hook,a stout lever with a sharp spike; used for handling logs
+59738,peba nine-banded_armadillo Texas_armadillo Dasypus_novemcinctus,having nine hinged bands of bony plates; ranges from Texas to Paraguay
+59739,pebble,a small smooth rounded rock
+59740,pebibit Pibit,a unit of information equal to 1024 tebibits or 2^50 bits
+59741,pecan,wood of a pecan tree
+59742,pecan,smooth brown oval nut of south central United States
+59743,pecan pecan_tree Carya_illinoensis Carya_illinoinsis,tree of southern United States and Mexico cultivated for its nuts
+59744,pecan_pie,pie made of pecans and sugar and corn syrup and butter and eggs
+59745,peccary musk_hog,nocturnal gregarious pig-like wild animals of North America and South America
+59746,peck,a British imperial capacity measure (liquid or dry) equal to 2 gallons
+59747,peck,a United States dry measure equal to 8 quarts or 537.605 cubic inches
+59748,pecopteris,Carboniferous fossil fern characterized by a regular arrangement of the leaflets resembling a comb
+59749,pectic_acid,a complex acid that occurs in ripe fruit and some vegetables
+59750,pectin,any of various water-soluble colloidal carbohydrates that occur in ripe fruit and vegetables; used in making fruit jellies and jams
+59751,pectoral pectoral_medallion,an adornment worn on the chest or breast
+59752,pectoral pectoral_muscle pectoralis musculus_pectoralis pecs,either of two large muscles of the chest
+59753,pectoral_fin,either of a pair of fins situated just behind the head in fishes that help control the direction of movement
+59754,pectoral_girdle,a skeletal support to which the forelimbs of vertebrates are attached
+59755,pectoral_sandpiper jacksnipe Calidris_melanotos,American sandpiper that inflates its chest when courting
+59756,pectoral_vein vena_pectoralis,veins that drain the pectoral muscles and empty into the subclavian vein
+59757,pectoralis_major musculus_pectoralis_major greater_pectoral_muscle,a skeletal muscle that adducts and rotates the arm
+59758,pectoralis_minor musculus_pectoralis_minor smaller_pectoral_muscle,a skeletal muscle that draws down the scapula or raises the ribs
+59759,peculiar_velocity,velocity with respect to the local standard of rest
+59760,peculiarity distinctive_feature distinguishing_characteristic,an odd or unusual characteristic
+59761,peculiarity specialness specialty speciality distinctiveness,a distinguishing trait
+59762,pedal treadle foot_pedal foot_lever,a lever that is operated with the foot
+59763,pedal_point pedal,a sustained bass note
+59764,pedal_pushers toreador_pants,(used in the plural) snug trousers ending at the calves; worn by women and girls
+59765,pedaler pedaller,a person who rides a pedal-driven vehicle (as a bicycle)
+59766,pedant bookworm scholastic,a person who pays more attention to formal rules and book learning than they merit
+59767,pedantry,an ostentatious and inappropriate display of learning
+59768,pedate_leaf,a leaf having the radiating lobes each deeply cleft or divided
+59769,peddler pedlar packman hawker pitchman,someone who travels about selling his wares (as on the streets or at carnivals)
+59770,pederast paederast child_molester,a man who has sex (usually sodomy) with a boy as the passive partner
+59771,pederasty paederasty,sexual relations between a man and a boy (usually anal intercourse with the boy as a passive partner)
+59772,pedestal,a position of great esteem (and supposed superiority); "they put him on a pedestal"
+59773,pedestal plinth footstall,an architectural support or base (as for a column or statue)
+59774,pedestal_table,a table supported by a single central column
+59775,pedestrian walker footer,a person who travels by foot
+59776,pedestrian_crossing zebra_crossing,street crossing where pedestrians have right of way; often marked in some way (especially with diagonal stripes)
+59777,pedestrian_traffic foot_traffic,people coming and going on foot
+59778,pediatrics paediatrics pediatric_medicine pedology,the branch of medicine concerned with the treatment of infants and children
+59779,pedicab cycle_rickshaw,a tricycle (usually propelled by pedalling); used in the Orient for transporting passengers for hire; "boys who once pulled rickshaws now pedal pedicabs"
+59780,pedicel pedicle,a small stalk bearing a single flower of an inflorescence; an ultimate division of a common peduncle
+59781,pediculicide,a chemical agent that kills lice
+59782,pediculosis lousiness,infestation with lice (Pediculus humanus) resulting in severe itching
+59783,pediculosis_capitis head_lice,infestation of the scalp with lice
+59784,pediculosis_corporis,infestation of body skin with lice
+59785,pediculosis_pubis crabs,infestation of the pubic hair by crab lice
+59786,pedicure,professional care for the feet and toenails
+59787,pedigree,line of descent of a purebred animal
+59788,pedigree bloodline,ancestry of a purebred animal
+59789,pediment,a triangular gable between a horizontal entablature and a sloping roof
+59790,pedodontist,a dentist who specializes in the care of children's teeth
+59791,pedometer,measuring instrument for recording the number of steps taken in walking
+59792,pedophile paedophile,an adult who is sexually attracted to children
+59793,pedophilia paedophilia,a sexual attraction to children
+59794,peduncle,the thin process of tissue that attaches a polyp to the body
+59795,peduncle,stalk bearing an inflorescence or solitary flower
+59796,peduncle cerebral_peduncle,a bundle of myelinated neurons joining different parts of the brain
+59797,pedunculated_polyp,a polyp with a stalk or peduncle
+59798,peeing pee pissing piss,informal terms for urination; "he took a pee"
+59799,peek peep,a secret look
+59800,peekaboo bopeep,a game played with young children; you hide your face and suddenly reveal it as you say boo!
+59801,peel skin,the rind of a fruit or vegetable
+59802,peeler,a worker who peels the skins from fruits and vegetables
+59803,peeler,a device for peeling vegetables or fruits; "she invented a potato peeler"
+59804,peen,the part of a hammerhead opposite the flat striking surface (may have various shapes)
+59805,peep_sight,rear gunsight having an adjustable eyepiece with a small aperture through which the front sight and the target are aligned
+59806,peeper,an informal term referring to the eye
+59807,peeper,an animal that makes short high-pitched sounds
+59808,peephole spyhole eyehole,a hole (in a door or an oven etc) through which you can peep
+59809,peepshow,a short pornographic film shown in a small coin-operated booth
+59810,peepshow raree-show,an exhibition of pictures or objects viewed through a small hole or magnifying glass
+59811,peer,a nobleman (duke or marquis or earl or viscount or baron) who is a member of the British peerage
+59812,peer equal match compeer,a person who is of equal standing with another in a group
+59813,peer_group,contemporaries of the same status
+59814,peer_of_the_realm,a peer who is entitled to sit in the House of Lords
+59815,peerage baronage,the peers of a kingdom considered as a group
+59816,peeve,an annoyed or irritated mood
+59817,peg,regulator that can be turned to regulate the pitch of the strings of a stringed instrument
+59818,peg nog,a wooden pin pushed or driven into a surface
+59819,peg pin,small markers inserted into a surface to mark scores or define locations etc.
+59820,peg pin thole tholepin rowlock oarlock,a holder attached to the gunwale of a boat that holds the oar in place and acts as a fulcrum for rowing
+59821,peg wooden_leg leg pegleg,a prosthesis that replaces a missing leg
+59822,peg_top,a pear-shaped top made of wood with a metal center pin
+59823,pegboard,a board perforated with regularly spaced holes into which pegs can be fitted
+59824,pegmatite,a form of igneous rock consisting of extremely coarse granite resulting from the crystallization of magma rich in rare elements
+59825,pelagic_bird oceanic_bird,bird of the open seas
+59826,pelecaniform_seabird,large fish-eating seabird with four-toed webbed feet
+59827,pelican,large long-winged warm-water seabird having a large bill with a distensible pouch for fish
+59828,pelican_crossing,an acronym for pedestrian light control; a pedestrian crossing with traffic lights that are controlled by pedestrians
+59829,pelisse,a sleeveless cape that is lined or trimmed with fur
+59830,pellagra Alpine_scurvy mal_de_la_rosa mal_rosso maidism mayidism Saint_Ignatius'_itch,a disease caused by deficiency of niacin or tryptophan (or by a defect in the metabolic conversion of tryptophan to niacin); characterized by gastrointestinal disturbances and erythema and nervous or mental disorders; may be caused by malnutrition or alcoholism or other nutritional impairments
+59831,pellet,a small sphere
+59832,pellicle,thin protective membrane in some protozoa
+59833,pellitory pellitory-of-Spain Anacyclus_pyrethrum,a small Mediterranean plant containing a volatile oil once used to relieve toothache
+59834,pellitory-of-the-wall wall_pellitory pellitory Parietaria_difussa,herb that grows in crevices having long narrow leaves and small pink apetalous flowers
+59835,pellucidness pellucidity limpidity,passing light without diffusion or distortion
+59836,peltate_leaf,a shield-shaped leaf; as a nasturtium leaf
+59837,pelter,a thrower of missiles; "the police were too busy to chase the pelters"
+59838,peludo poyou Euphractus_sexcinctus,Argentine armadillo with six movable bands and hairy underparts
+59839,pelvic_cavity,the space bounded by the bones of the pelvis and containing the pelvic viscera
+59840,pelvic_fin ventral_fin,either of a pair of fins attached to the pelvic girdle in fishes that help control the direction of movement; correspond to hind limbs of a land vertebrate
+59841,pelvic_inflammatory_disease PID,inflammation of the female pelvic organs (especially the Fallopian tubes) caused by infection by any of several microorganisms (chiefly gonococci and chlamydia); symptoms are abdominal pain and fever and foul-smelling vaginal discharge
+59842,pelvimeter,measuring instrument for performing pelvimetry
+59843,pelvimetry,measurement of the dimensions of the bony birth canal (to determine whether vaginal birth is possible)
+59844,pelvis pelvic_girdle pelvic_arch hip,the structure of the vertebrate skeleton supporting the lower limbs in humans and the hind limbs or corresponding parts in other vertebrates
+59845,pelvis renal_pelvis,a structure shaped like a funnel in the outlet of the kidney into which urine is discharged before passing into the ureter
+59846,pelycosaur,large primitive reptile having a tall spinal sail; of the Permian or late Paleozoic in Europe and North America
+59847,pemmican pemican,lean dried meat pounded fine and mixed with melted fat; used especially by North American Indians
+59848,pemphigus,a skin disease characterized by large thin-walled blisters (bullae) arising from normal skin or mucous membrane
+59849,pen,an enclosure for confining livestock
+59850,pen,a writing implement with a point from which ink flows
+59851,pen,female swan
+59852,pen-and-ink,a drawing executed with pen and ink
+59853,pen_name nom_de_plume,an author's pseudonym
+59854,pen_pal pen-friend,a person you come to know by frequent friendly correspondence
+59855,penal_code,the legal code governing crimes and their punishment
+59856,penal_colony,a penal institution where prisoners are exiled (often located on an island from which escape is difficult or impossible)
+59857,penal_institution penal_facility,an institution where persons are confined for punishment and to protect the public
+59858,penalty,a payment required for not fulfilling a contract
+59859,penalty,the disadvantage or painful consequences of an action or condition; "neglected his health and paid the penalty"
+59860,penalty,(games) a handicap or disadvantage that is imposed on a competitor (or a team) for an infraction of the rules of the game
+59861,penalty_box,(ice hockey) an enclosed bench to the side of an ice-hockey rink for players who are serving time penalties
+59862,penance,a Catholic sacrament; repentance and confession and atonement and absolution
+59863,penance self-mortification self-abasement,voluntary self-punishment in order to atone for some wrongdoing
+59864,pencil,graphite (or a similar substance) used in such a way as to be a medium of communication; "the words were scribbled in pencil"; "this artist's favorite medium is pencil"
+59865,pencil,a figure formed by a set of straight lines or light rays meeting at a point
+59866,pencil,a cosmetic in a long thin stick; designed to be applied to a particular part of the face; "an eyebrow pencil"
+59867,pencil,a thin cylindrical pointed writing implement; a rod of marking substance encased in wood
+59868,pencil_box pencil_case,a box for holding pencils
+59869,pencil_cedar,wood of a pencil cedar tree; used for making pencils
+59870,pencil_cedar pencil_cedar_tree,any of several junipers with wood suitable for making pencils
+59871,pencil_sharpener,a rotary implement for sharpening the point on pencils
+59872,pendant pendent,an adornment that hangs from a piece of jewelry (necklace or earring)
+59873,pendant_earring drop_earring eardrop,an earring with a pendant ornament
+59874,pendragon,the supreme war chief of the ancient Britons
+59875,pendulum,an apparatus consisting of an object mounted so that it swings freely under the influence of gravity
+59876,pendulum_clock,a clock regulated by a pendulum
+59877,pendulum_watch,(18th century) a watch with a balance wheel having a fake pendulum attached to it
+59878,peneplain peneplane,a more or less level land surface representing an advanced stage of erosion undisturbed by crustal movements
+59879,penetrability perviousness,the quality of being penetrable (by people or light or missiles etc.)
+59880,penetralium,the innermost parts
+59881,penetrating_trauma penetrating_injury,injury incurred when an object (as a knife or bullet or shrapnel) penetrates into the body
+59882,penetration,the ability to make way into or through something; "the greater penetration of the new projectiles will result in greater injuries"
+59883,penetration,the depth to which something penetrates (especially the depth reached by a projectile that hits a target)
+59884,penetration,the act (by a man) of inserting his penis into the vagina of a woman
+59885,penetration,the act of entering into or through something; "the penetration of upper management by women"
+59886,penetration incursion,an attack that penetrates into enemy territory
+59887,penetration insight,clear or deep perception of a situation
+59888,penetration_bomb,a bomb with about 30% explosive and a casing designed to penetrate hardened targets before the explosive detonates
+59889,penetrator,an intruder who passes into or through (often by overcoming resistance)
+59890,pengo,formerly the basic unit of money in Hungary until it was replaced by the forint in 1946
+59891,penguin,short-legged flightless birds of cold southern especially Antarctic regions having webbed feet and wings modified as flippers
+59892,penicillamine Cuprimine,a drug (trade name Cuprimine) used to treat heavy metal poisoning and Wilson's disease and severe arthritis
+59893,penicillin,any of various antibiotics obtained from Penicillium molds (or produced synthetically) and used in the treatment of various infections and diseases
+59894,penicillin-resistant_bacteria,bacteria that are unaffected by penicillin
+59895,penicillin_F,the first form of penicillin that was isolated in Great Britain
+59896,penicillin_G benzylpenicillin,the penicillin that constitutes the principal component of many commercial antibiotics
+59897,penicillin_O,a penicillin that is similar in antibiotic action to penicillin G but is obtained differently
+59898,penicillin_V phenoxymethyl_penicillin,a crystalline penicillin similar in action to penicillin G but more resistant to the action of gastric acids
+59899,penicillin_V_potassium Ledercillin_VK,a form of penicillin V (trade name Ledercillin VK)
+59900,penicillinase beta-lactamase,enzyme produced by certain bacteria that inactivates penicillin and results in resistance to that antibiotic
+59901,penicillinase-resistant_antibiotic,a form of penicillin that is not rendered inactive by penicillinase
+59902,penile_implant,an implant that creates an artificial erection
+59903,peninsula,a large mass of land projecting into a body of water
+59904,penis phallus member,the male sex organ (`member' is a euphemism)
+59905,penis_envy,(psychoanalysis) a female's presumed envy of the male's penis; said to explain femininity
+59906,penitent,(Roman Catholic Church) a person who repents for wrongdoing (a Roman Catholic may be admitted to penance under the direction of a confessor)
+59907,penitentiary pen,a correctional institution for those convicted of major crimes
+59908,penknife,a small pocketknife; originally used to cut quill pens
+59909,penlight,a small flashlight resembling a fountain pen
+59910,pennant,a flag longer than it is wide (and often tapering)
+59911,pennant crown,the award given to the champion
+59912,pennant pennon streamer waft,a long flag; often tapering
+59913,penne,pasta in short tubes with diagonally cut ends
+59914,penni,100 pennia formerly equaled 1 markka in Finland
+59915,pennon pinion,wing of a bird
+59916,pennoncel penoncel pennoncelle,a small pennant borne on a lance
+59917,penny,a fractional monetary unit of Ireland and the United Kingdom; equal to one hundredth of a pound
+59918,penny cent centime,a coin worth one-hundredth of the value of the basic unit
+59919,penny_ante,a business deal on a trivial scale
+59920,penny_ante penny_ante_poker,poker played for small stakes
+59921,penny_arcade,an arcade with coin-operated devices for entertainment
+59922,penny_pincher,someone who is excessively careful with money (who pinches every penny before letting go of it)
+59923,penny_stock,a stock selling for less that $1/share
+59924,pennycress,any of several plants of the genus Thlaspi
+59925,pennyroyal American_pennyroyal Hedeoma_pulegioides,erect hairy branching American herb having purple-blue flowers; yields an essential oil used as an insect repellent and sometimes in folk medicine
+59926,pennyroyal Mentha_pulegium,Eurasian perennial mint have small lilac-blue flowers and ovate leaves; yields an aromatic oil
+59927,pennyroyal_oil,oil from European pennyroyal having an odor like mint; used chiefly in soaps
+59928,pennyroyal_oil hedeoma_oil,aromatic oil from American pennyroyal
+59929,pennyweight,a unit of apothecary weight equal to 24 grains
+59930,pennywhistle tin_whistle whistle,an inexpensive fipple flute
+59931,pennyworth penn'orth,the amount that can be bought for a penny
+59932,penologist,a person who studies the theory and practice of prison management
+59933,penology poenology,the branch of criminology concerned with prison management and prisoner rehabilitation
+59934,penpusher pencil_pusher,a clerk who does boring paperwork
+59935,pension,a regular payment to a person that is intended to allow them to subsist without working
+59936,pension_fund,a financial institution that collects regular contributions from employers to provide retirement income for employees
+59937,pension_fund superannuation_fund,a fund reserved to pay workers' pensions when they retire from service
+59938,pension_plan pension_account retirement_plan retirement_savings_plan retirement_savings_account retirement_account retirement_program,a plan for setting aside money to be spent after retirement
+59939,pensioner pensionary,the beneficiary of a pension fund
+59940,pensiveness brooding,persistent morbid meditation on a problem
+59941,pensiveness meditativeness contemplativeness,deep serious thoughtfulness
+59942,pentacle pentagram pentangle,a star with 5 points; formed by 5 straight lines between the vertices of a pentagon and enclosing another pentagon
+59943,pentaerythritol Peritrate,a coronary vasodilator (trade name Peritrate) used to treat angina pectoris
+59944,pentagon,a five-sided polygon
+59945,pentahedron,any polyhedron having five plane faces
+59946,pentail pen-tail pen-tailed_tree_shrew,brown tree shrew having a naked tail bilaterally fringed with long stiff hairs on the distal third; of Malaysia
+59947,pentameter,a verse line having five metrical feet
+59948,pentathlete,an athlete who competes in a pentathlon
+59949,pentathlon,an athletic contest consisting of five different events
+59950,pentatonic_scale pentatone,a gapped scale with five notes; usually the fourth and seventh notes of the diatonic scale are omitted
+59951,pentazocine Talwin,analgesic drug (trade name Talwin) that is less addictive than morphine
+59952,pentecostalism,the principles and practices of Pentecostal religious groups; characterized by religious excitement and talking in tongues
+59953,penthouse,an apartment located on the top floors of a building
+59954,pentimento,the reappearance in a painting of an underlying image that had been painted over (usually when the later painting becomes transparent with age)
+59955,pentlandite,a mineral (iron and nickel sulphide) that is the chief ore of nickel
+59956,pentobarbital_sodium pentobarbital Nembutal yellow_jacket,a barbiturate (trade name Nembutal) used as a sedative and hypnotic and antispasmodic
+59957,pentode,a thermionic tube having five electrodes
+59958,pentose,any monosaccharide sugar containing five atoms of carbon per molecule
+59959,pentoxide,an oxide containing five atoms of oxygen in the molecule
+59960,pentoxifylline Trental,a drug (trade name Trental) used to treat claudication; believed to increase the flexibility of red blood cells so they can flow through the blood vessels to the legs and feet
+59961,pentylenetetrazol pentamethylenetetrazol Metrazol,a drug used as a circulatory and respiratory stimulant; larger doses cause convulsions in shock therapy; Metrazol is a trademark
+59962,penuche penoche panoche panocha,fudge made with brown sugar and butter and milk and nuts
+59963,penult penultima penultimate,the next to last syllable in a word
+59964,penumbra,a fringe region of partial shadow around an umbra
+59965,penuriousness,a disposition to be niggardly with money
+59966,peonage,the condition of a peon
+59967,peonage,the practice of making a debtor work for his creditor until the debt is discharged
+59968,peony paeony,any of numerous plants widely cultivated for their showy single or double red or pink or white flowers
+59969,people,members of a family line; "his people have been farmers for generations"; "are your people still alive?"
+59970,people,(plural) any group of human beings (men or women or children) collectively; "old people"; "there were at least 200 people in the audience"
+59971,peoples,the human beings of a particular nation or community or ethnic group; "the indigenous peoples of Australia"
+59972,pep peppiness ginger,liveliness and energy; "this tonic is guaranteed to give you more pep"
+59973,pep_rally,a rally (especially of students) before a game
+59974,pep_talk,a speech of exhortation attempting to instill enthusiasm and determination in a team or staff
+59975,peperomia,any of various plants of the genus Peperomia; grown primarily for their often succulent foliage
+59976,peplos peplus peplum,a garment worn by women in ancient Greece; cloth caught at the shoulders and draped in folds to the waist
+59977,peplum,a flared ruffle attached to the waistline of a dress or jacket or blouse
+59978,pepper,sweet and hot varieties of fruits of plants of the genus Capsicum
+59979,pepper common_pepper black_pepper white_pepper Madagascar_pepper Piper_nigrum,climber having dark red berries (peppercorns) when fully ripe; southern India and Sri Lanka; naturalized in northern Burma and Assam
+59980,pepper peppercorn,pungent seasoning from the berry of the common pepper plant of East India; use whole or ground
+59981,pepper-and-salt,a fabric woven with flecks of light and dark
+59982,pepper_mill pepper_grinder,a mill for grinding pepper
+59983,pepper_pot Philadelphia_pepper_pot,a soup made with vegetables and tripe and seasoned with peppercorns; often contains dumplings
+59984,pepper_sauce Poivrade,for venison: brown sauce with sauteed vegetables and trimmings and marinade and plenty of pepper
+59985,pepper_shaker pepper_box pepper_pot,a shaker with a perforated top for sprinkling ground pepper
+59986,pepper_shrub Pseudowintera_colorata Wintera_colorata,evergreen shrub or small tree whose foliage is conspicuously blotched with red and yellow and having small black fruits
+59987,pepper_spray,a nonlethal aerosol spray made with the pepper derivative oleoresin capiscum; used to cause temporary blindness and incapacitate an attacker; also used as a bear deterrent
+59988,pepper_steak,strips of steak sauteed with green peppers and onions
+59989,pepper_tree Kirkia_wilmsii,small African deciduous tree with spreading crown having leaves clustered toward ends of branches and clusters of creamy flowers resembling lilacs
+59990,pepper_tree molle Peruvian_mastic_tree Schinus_molle,small Peruvian evergreen with broad rounded head and slender pendant branches with attractive clusters of greenish flowers followed by clusters of rose-pink fruits
+59991,peppercorn_rent,very low or nominal rent
+59992,peppermint Mentha_piperita,herb with downy leaves and small purple or white flowers that yields a pungent oil used as a flavoring
+59993,peppermint peppermint_candy,a candy flavored with peppermint oil
+59994,peppermint_oil,oil from the peppermint plant used as flavoring
+59995,peppermint_patty,a patty flavored with peppermint
+59996,pepperoni,a pork and beef sausage (or a thin slice of this sausage)
+59997,pepperoni_pizza,tomato and cheese pizza with pepperoni
+59998,pepsin,an enzyme produced in the stomach that splits proteins into peptones
+59999,pepsinogen,precursor of pepsin; stored in the stomach walls and converted to pepsin by hydrochloric acid in the stomach
+60000,peptic_ulcer peptic_ulceration,an ulcer of the mucous membrane lining of the alimentary tract
+60001,peptide,amide combining the amino group of one amino acid with the carboxyl group of another; usually obtained by partial hydrolysis of protein
+60002,peptide_bond peptide_linkage,the primary linkage of all protein structures; the chemical bond between the carboxyl groups and amino groups that unites a peptide
+60003,peptization peptisation,the process of converting to a sol; bringing to a colloidal solution
+60004,peptone,any of various water-soluble compounds that form by hydrolysis in the digestion of proteins to amino acids
+60005,per_capita_income,the total national income divided by the number of people in the nation
+60006,per_diem,a daily allowance for living expenses (especially while traveling in connection with your job)
+60007,peradventure,doubt or uncertainty as to whether something is the case; "this proves beyond peradventure that he is innocent"
+60008,perambulation,a walk around a territory (a parish or manor or forest etc.) in order to officially assert and record its boundaries
+60009,perboric_acid,a form of boric acid
+60010,percale,a fine closely woven cotton fabric
+60011,perceiver percipient observer beholder,a person who becomes aware (of things or events) through the senses
+60012,percent_sign percentage_sign,a sign (`%') used to indicate that the number preceding it should be understood as a proportion multiplied by 100
+60013,percentage percent per_centum pct,a proportion in relation to a whole (which is usually the amount per hundred)
+60014,percentile centile,(statistics) any of the 99 numbered points that divide an ordered set of scores into 100 parts each of which contains one-hundredth of the total
+60015,percept perception perceptual_experience,the representation of what is perceived; basic component in the formation of a concept
+60016,perceptibility,the property of being perceptible by the mind or the senses
+60017,perception,a way of conceiving something; "Luther had a new perception of the Bible"
+60018,perception,knowledge gained by perceiving; "a man admired for the depth of his perception"
+60019,perception,the process of perceiving
+60020,perceptiveness,the quality of insight and sympathetic understanding
+60021,perch,an elevated place serving as a seat
+60022,perch,any of numerous fishes of America and Europe
+60023,perch,support consisting of a branch or rod that serves as a resting place (especially for a bird)
+60024,perch,spiny-finned freshwater food and game fishes
+60025,perch,any of numerous spiny-finned fishes of various families of the order Perciformes
+60026,perch rod pole,a linear measure of 16.5 feet
+60027,perch rod pole,a square rod of land
+60028,percher,a person situated on a perch
+60029,perchlorate,a salt of perchloric acid
+60030,perchloric_acid,a powerful oxidizing agent; forms perchlorates
+60031,perchloride,a chloride containing an unusually high proportion of chlorine
+60032,percoid_fish percoid percoidean,any of numerous spiny-finned fishes of the order Perciformes
+60033,percolate,the product of percolation
+60034,percolation,the act of making coffee in a percolator
+60035,percolation,the filtration of a liquid for extraction or purification
+60036,percolation infiltration,the slow passage of a liquid through a filtering medium; "the percolation of rainwater through the soil"; "the infiltration of seawater through the lava"
+60037,percolator,a coffeepot in which boiling water ascends through a central tube and filters back down through a basket of ground coffee beans
+60038,percussion,the act of playing a percussion instrument
+60039,percussion,the act of exploding a percussion cap
+60040,percussion pleximetry,tapping a part of the body for diagnostic purposes
+60041,percussion_cap,a detonator that explodes when struck
+60042,percussion_instrument percussive_instrument,a musical instrument in which the sound is produced by one object striking another
+60043,percussion_section percussion rhythm_section,the section of a band or orchestra that plays percussion instruments
+60044,percussionist,a musician who plays percussion instruments
+60045,perdurability,the property of being extremely durable
+60046,pere_david's_deer elaphure Elaphurus_davidianus,large Chinese deer surviving only in domesticated herds
+60047,peregrination,traveling or wandering around
+60048,peregrine peregrine_falcon Falco_peregrinus,a widely distributed falcon formerly used in falconry
+60049,perennation,the process of living through a number of years (as a perennial plant)
+60050,perennial,(botany) a plant lasting for three seasons or more
+60051,perennial_ryegrass English_ryegrass Lolium_perenne,European perennial grass widely cultivated for pasture and hay and as a lawn grass
+60052,perennial_salt_marsh_aster,a variety of aster
+60053,perestroika,an economic policy adopted in the former Soviet Union; intended to increase automation and labor efficiency but it led eventually to the end of central planning in the Russian economy
+60054,perfect_game,a game in which a pitcher does not allow any opposing player to reach base
+60055,perfecter,a skilled worker who perfects something; "although not the inventor he must be recognized as the perfecter of this technique"
+60056,perfectibility,the capability of becoming perfect; "he believes in the ultimate perfectibility of man"
+60057,perfection,the act of making something perfect
+60058,perfection flawlessness ne_plus_ultra,the state of being without a flaw or defect
+60059,perfectionism,a disposition to feel that anything less than perfect is unacceptable; "his perfectionism seemed excessive to his students"
+60060,perfectionist,a person who is displeased by anything that does not meet very high standards
+60061,perfective perfective_aspect,the aspect of a verb that expresses a completed action
+60062,perfective perfective_tense perfect perfect_tense,a tense of verbs used in describing action that has been completed (sometimes regarded as perfective aspect)
+60063,perfidy perfidiousness treachery,betrayal of a trust
+60064,perfluorocarbon PFC,a powerful greenhouse gas emitted during the production of aluminum
+60065,perfoliate_leaf,a leaf with the base united around--and apparently pierced by--the stem
+60066,perforated_eardrum,an eardrum with a hole or tear in it; can interfere with normal hearing and cause other ear problems
+60067,perforating_vein vena_perforantis,veins that accompany the perforating arteries; drain leg muscles; empty into the deep femoral vein
+60068,perforation,a hole made in something; "a perforation of the eardrum"
+60069,perforation,a line of small holes for tearing at a particular place
+60070,perforation,the act of punching a hole (especially a row of holes as for ease of separation)
+60071,performance,the act of presenting a play or a piece of music or other entertainment; "we congratulated him on his performance at the rehearsal"; "an inspired performance of Mozart's C minor concerto"
+60072,performance,any recognized accomplishment; "they admired his performance under stress"; "when Roger Maris powered four home runs in one game his performance merits awe"
+60073,performance execution carrying_out carrying_into_action,the act of performing; of doing something successfully; using knowledge as distinguished from merely possessing it; "they criticised his performance as mayor"; "experience generally improves performance"
+60074,performance public_presentation,a dramatic or musical entertainment; "they listened to ten different performances"; "the play ran for 100 performances"; "the frequent performances of the symphony testify to its popularity"
+60075,performance_bond surety_bond,a bond given to protect the recipient against loss in case the terms of a contract are not filled; a surety company assumes liability for nonperformance
+60076,performer performing_artist,an entertainer who performs a dramatic or musical work for an audience
+60077,performing_arts,arts or skills that require public performance
+60078,perfume essence,a toiletry that emits and diffuses a fragrant odor
+60079,perfumer,a person who makes (and sells) perfumes
+60080,perfumery,perfumes in general
+60081,perfumery,store where perfumes are sold
+60082,perfumery,an establishment where perfumes are made
+60083,perfumery,the art of making perfumes
+60084,perfusion,pumping a liquid into an organ or tissue (especially by way of blood vessels)
+60085,peri,a beautiful and graceful girl
+60086,peri,(Persian folklore) a supernatural being descended from fallen angels and excluded from paradise until penance is done
+60087,perianth chlamys floral_envelope perigone perigonium,collective term for the outer parts of a flower consisting of the calyx and corolla and enclosing the stamens and pistils
+60088,periapsis point_of_periapsis,(astronomy) the point in an orbit closest to the body being orbited
+60089,periarterial_plexus plexus_periarterialis,an autonomic plexus that accompanies an artery
+60090,periarteritis,inflammation of the outer coat of an artery
+60091,periarteritis_nodosa polyarteritis_nodosa,a progressive disease of connective tissue that is characterized by nodules along arteries; nodules may block the artery and result in inadequate circulation to the particular area
+60092,pericardial_cavity pericardial_space,the space between the layers of the pericardium that contains fluid that lubricates the membrane surfaces and allows easy heart movement
+60093,pericardial_sac,the membrane surrounding the heart
+60094,pericardial_vein vena_pericardiaca,several small veins from the pericardium
+60095,pericarditis,inflammation of the pericardium
+60096,pericardium,a serous membrane with two layers that surrounds the heart
+60097,pericarp seed_vessel,the ripened and variously modified walls of a plant ovary
+60098,pericementoclasia,pus pocket formation around a tooth
+60099,periclase magnesia magnesium_oxide,a white solid mineral that occurs naturally as periclase; a source of magnesium
+60100,peridinian,flagellate with a thick test composed of plates
+60101,peridium,outer layer of the spore-bearing organ in many fungi
+60102,peridot,a pale green variety of chrysolite; used as a gemstone
+60103,peridotite,a dark coarse-grained igneous rock consisting principally of olivine
+60104,perigee,periapsis in Earth orbit; the point in its orbit where a satellite is nearest to the Earth
+60105,perigon round_angle,an angle of 360 degrees
+60106,perihelion,periapsis in solar orbit; the point in the orbit of a planet or comet where it is nearest to the sun
+60107,perijove,periapsis in orbit around Jupiter
+60108,perilymph,the bodily fluid that fills the space between the bony labyrinth and the membranous labyrinth of the inner ear
+60109,perimeter,a line enclosing a plane areas
+60110,perimysium,the sheath of connective tissue that covers a bundle of muscle fibers
+60111,perinatologist,an obstetrician specializing in perinatology
+60112,perinatology,the branch of obstetrics concerned with the anatomy and physiology and diagnosis and treatment of disorders of the mother and the fetus or newborn baby during late pregnancy and childbirth and the puerperium
+60113,perineal_artery arteria_perinealis,a branch of the internal pudendal artery that supplies superficial structures of the perineum
+60114,perineotomy,surgical incision into the perineum
+60115,perineum,the general region between the anus and the genital organs
+60116,perineurium,the sheath of connective tissue that covers a bundle of nerve fibers
+60117,period,the interval taken to complete one cycle of a regularly repeating phenomenon
+60118,period,(ice hockey) one of three divisions into which play is divided in hockey games
+60119,period,the end or completion of something; "death put a period to his endeavors"; "a change soon put a period to my tranquility"
+60120,period geological_period,a unit of geological time during which a system of rocks formed; "ganoid fishes swarmed during the earlier geological periods"
+60121,period point full_stop stop full_point,a punctuation mark (.) placed at the end of a declarative sentence to indicate a full stop or after abbreviations; "in England they call a period a stop"
+60122,period_piece,any work of art whose special value lies in its evocation of a historical period
+60123,periodic_acid,any acid of iodine that contains oxygen
+60124,periodic_apnea_of_the_newborn,irregular breathing of newborns; periods of rapid breathing followed by apnea; believed to be associated with sudden infant death syndrome
+60125,periodic_breathing Cheyne-Stokes_respiration,abnormal respiration in which periods of shallow and deep breathing alternate
+60126,periodic_event recurrent_event,an event that recurs at intervals
+60127,periodic_law Mendeleev's_law,(chemistry) the principle that chemical properties of the elements are periodic functions of their atomic numbers
+60128,periodic_motion periodic_movement,motion that recurs over and over and the period of time required for each recurrence remains the same
+60129,periodic_sentence,a complex sentence in which the main clause comes last and is preceded by the subordinate clause
+60130,periodic_table,(chemistry) a tabular arrangement of the chemical elements according to atomic number as based on the periodic law
+60131,periodical,a publication that appears at fixed intervals
+60132,periodontal_disease periodontitis,a disease that attacks the gum and bone and around the teeth
+60133,periodontics periodontia,the branch of dentistry dealing with diseases of the gums and other structures around the teeth
+60134,periodontist,a dentist specializing in diseases of the gums and other structure surrounding the teeth
+60135,periosteum,a dense fibrous membrane covering the surface of bones (except at their extremities) and serving as an attachment for tendons and muscles; contains nerves and blood vessels that nourish the enclosed bone
+60136,peripatetic,a person who walks from place to place
+60137,peripeteia peripetia peripety,a sudden and unexpected change of fortune or reverse of circumstances (especially in a literary work); "a peripeteia swiftly turns a routine sequence of events into a story worth telling"
+60138,peripheral computer_peripheral peripheral_device,electronic equipment external to the circuit board that contains the CPU of a computer; "disk drives and printers are important peripherals"
+60139,peripheral_nervous_system systema_nervosum_periphericum,the section of the nervous system lying outside the brain and spinal cord
+60140,peripheral_vision,vision at the edges of the visual field using only the periphery of the retina
+60141,periphery fringe outer_boundary,the outside boundary or surface of something
+60142,periscope,an optical instrument that provides a view of an otherwise obstructed field
+60143,periselene perilune,periapsis in orbit around the moon
+60144,perishability perishableness,unsatisfactoriness by virtue of being subject to decay or spoilage or destruction
+60145,perishable spoilable,food that will decay rapidly if not refrigerated
+60146,perisher,bounder
+60147,perisperm,the nutritive tissue outside the sac containing the embryo in some seeds
+60148,peristalsis vermiculation,the process of wavelike muscle contractions of the alimentary tract that moves food along
+60149,peristome,(botany) fringe of toothlike appendages surrounding the mouth of a moss capsule
+60150,peristome,region around the mouth in various invertebrates
+60151,peristyle,a colonnade surrounding a building or enclosing a court
+60152,perithecium,flask-shaped ascocarp
+60153,perithelium,tissue layer around small blood vessels
+60154,peritoneal_cavity greater_peritoneal_sac,the interior of the peritoneum; a potential space between layers of the peritoneum
+60155,peritoneum,a transparent membrane that lines the abdominal cavity in mammals and covers most of the viscera
+60156,peritonitis peritoneal_inflammation,inflammation of the peritoneum
+60157,periwig peruke,a wig for men that was fashionable in the 17th and 18th centuries
+60158,periwinkle,chiefly trailing poisonous plants with blue flowers
+60159,periwinkle rose_periwinkle Madagascar_periwinkle old_maid Cape_periwinkle red_periwinkle cayenne_jasmine Catharanthus_roseus Vinca_rosea,commonly cultivated Old World woody herb having large pinkish to red flowers
+60160,periwinkle winkle,small edible marine snail; steamed in wine or baked
+60161,periwinkle winkle,edible marine gastropod
+60162,periwinkle_plant_derivative,an antineoplastic drug used to treat some forms of cancer
+60163,perjurer false_witness,a person who deliberately gives false testimony
+60164,perjury bearing_false_witness lying_under_oath,criminal offense of making false statements under oath
+60165,permafrost,ground that is permanently frozen
+60166,permanence permanency,the property of being able to exist for an indefinite duration
+60167,permanent_injunction final_injunction,injunction issued on completion of a trial
+60168,permanent_magnet static_magnet,a magnet that retains its magnetism after being removed from a magnetic field
+60169,permanent_press durable_press,a fabric that has been chemically processed to resist wrinkles and hold its shape
+60170,permanent_tooth adult_tooth,any of the 32 teeth that replace the deciduous teeth of early childhood and (with luck) can last until old age
+60171,permanent_wave permanent perm,a series of waves in the hair made by applying heat and chemicals
+60172,permanganate,a dark purple salt of permanganic acid; in water solution it is used as a disinfectant and antiseptic
+60173,permanganic_acid,an unstable purple acid (HMnO4) known only in solution or of permanganate salts
+60174,permeability permeableness,the property of something that can be pervaded by a liquid (as by osmosis or diffusion)
+60175,permeation pervasion suffusion,the process of permeating or infusing something with a substance
+60176,permissibility,admissibility as a consequence of being permitted
+60177,permission,approval to do something; "he asked permission to leave"
+60178,permissiveness tolerance,a disposition to allow freedom of choice and behavior
+60179,permit Trachinotus_falcatus,large game fish; found in waters of the West Indies
+60180,permutability permutableness transposability,ability to change sequence
+60181,permutation,the act of changing the arrangement of a given number of elements
+60182,permutation,complete change in character or condition; "the permutations...taking place in the physical world"- Henry Miller
+60183,permutation,act of changing the lineal order of objects in a group
+60184,pernicious_anemia pernicious_anaemia malignant_anemia malignant_anaemia,a chronic progressive anemia of older adults; thought to result from a lack of intrinsic factor (a substance secreted by the stomach that is responsible for the absorption of vitamin B12)
+60185,perniciousness toxicity,grave harmfulness or deadliness
+60186,pernyi_moth Antheraea_pernyi,a Chinese moth that produces a brownish silk
+60187,peroneal_vein fibular_vein vena_peroneus,accompany the peroneal arteries; arising in the heel and running up the back of the leg to join the posterior tibial veins of the popliteal vein
+60188,peroneus,muscle of the lower leg that is involved in moving the foot
+60189,peroration,a flowery and highly rhetorical oration
+60190,peroration,(rhetoric) the concluding section of an oration; "he summarized his main points in his peroration"
+60191,peroxidase,any of a group of enzymes (occurring especially in plant cells) that catalyze the oxidation of a compound by a peroxide
+60192,peroxide,an inorganic compound containing the divalent ion -O-O-
+60193,peroxide_blond peroxide_blonde,a blond whose hair is bleached with peroxide
+60194,perpendicular,a straight line at right angles to another line
+60195,perpendicular,an extremely steep face
+60196,perpendicular perpendicular_style English-Gothic English-Gothic_architecture,a Gothic style in 14th and 15th century England; characterized by vertical lines and a four-centered (Tudor) arch and fan vaulting
+60197,perpendicularity,the quality of being at right angles to a given line or plane (especially the plane of the horizon)
+60198,perpetration commission committal,the act of committing a crime
+60199,perpetrator culprit,someone who perpetrates wrongdoing
+60200,perpetual_calendar,a chart or mechanical device that indicates the days of the week corresponding to any given date over a long period of years
+60201,perpetual_motion,motion that continues indefinitely without any external source of energy; impossible in practice because of friction
+60202,perpetual_motion_machine,a machine that can continue to do work indefinitely without drawing energy from some external source; impossible under the law of conservation of energy
+60203,perpetual_warrant,a warrant with no expiration date
+60204,perpetuity sempiternity,the property of being perpetual (seemingly ceaseless)
+60205,perphenazine Triavil,tranquilizer and antidepressant (trade name Triavil) sometimes used as an antiemetic for adults
+60206,perplexity,trouble or confusion resulting from complexity
+60207,perry,a fermented and often effervescent beverage made from juice of pears; similar in taste to hard cider
+60208,persecution,the act of persecuting (especially on the basis of race or religion)
+60209,perseverance persistence perseveration,the act of persisting or persevering; continuing or repeating behavior; "his perseveration continued to the point where it was no longer appropriate"
+60210,perseveration,the tendency for a memory or idea to persist or recur without any apparent stimulus for it
+60211,persiflage,light teasing
+60212,persimmon,orange fruit resembling a plum; edible when fully ripe
+60213,persimmon persimmon_tree,any of several tropical trees of the genus Diospyros
+60214,person,a grammatical category used in the classification of pronouns, possessive determiners, and verb forms according to whether they indicate the speaker, the addressee, or a third party; "stop talking about yourself in the third person"
+60215,person,a human body (usually including the clothing); "a weapon was hidden on his person"
+60216,person individual someone somebody mortal soul,a human being; "there was too much for one person to do"
+60217,person_agreement,agreement in person between pronouns and verbs
+60218,person_of_color person_of_colour,(formal) any non-European non-white person
+60219,persona image,(Jungian psychology) a personal facade that one presents to the world; "a public image is as fragile as Humpty Dumpty"
+60220,persona_grata,a diplomat who is acceptable to the government to which he is sent
+60221,persona_non_grata,a diplomat who is unacceptable to the government to which he is sent
+60222,personableness,the complex of attributes that make a person socially attractive
+60223,personage,another word for person; a person not meriting identification; "a strange personage appeared at the door"
+60224,personal,a short newspaper article about a particular person or group
+60225,personal_business personal_matters affairs,matters of personal concern; "get his affairs in order"
+60226,personal_care,care for someone who is disabled or is otherwise unable to care for themselves; can including bathing and cooking and managing bodily functions
+60227,personal_check personal_cheque,a check drawn against funds deposited in your personal checking account
+60228,personal_computer PC microcomputer,a small digital computer based on a microprocessor and designed to be used by one person at a time
+60229,personal_digital_assistant PDA personal_organizer personal_organiser organizer organiser,a lightweight consumer electronic device that looks like a hand-held computer but instead performs specific tasks; can serve as a diary or a personal database or a telephone or an alarm clock etc.
+60230,personal_equation,variability attributable to individual differences
+60231,personal_expense,the cost of personal or family living; "some personal expenses are tax deductible"
+60232,personal_foul,a foul that involves unnecessarily rough contact (as in basketball or football)
+60233,personal_identification_number PIN PIN_number,a number you choose and use to gain access to various accounts
+60234,personal_income,the income received by a single individual
+60235,personal_letter,a letter dealing with personal affairs
+60236,personal_loan consumer_loan,a loan that establishes consumer credit that is granted for personal use; usually unsecured and based on the borrower's integrity and ability to pay
+60237,personal_pronoun,a pronoun expressing a distinction of person
+60238,personal_property personal_estate personalty private_property,movable property (as distinguished from real estate)
+60239,personal_relation personal_relationship,a relation between persons
+60240,personal_representative,a person who manages the affairs of another
+60241,personality,a person of considerable prominence; "she is a Hollywood personality"
+60242,personality,the complex of all the attributes--behavioral, temperamental, emotional and mental--that characterize a unique individual; "their different reactions reflected their very different personalities"; "it is his nature to help others"
+60243,personality_disorder,inflexible and maladaptive patterns of behavior
+60244,personality_inventory personality_assessment,a questionnaire that is supposed to yield a description of a person's personality traits; "a personality inventory is a direct test of personality, as contrasted with a projective test"
+60245,personality_test,any test that is intended to assess personality
+60246,personhood,being a person; "finding her own personhood as a campus activist"
+60247,personification,a person who represents an abstract quality; "she is the personification of optimism"
+60248,personification incarnation,the act of attributing human characteristics to abstract ideas etc.
+60249,personification prosopopoeia,representing an abstract quality or idea as a person or creature
+60250,personnel_carrier,a military vehicle (usually armored) for transporting military personnel and their equipment
+60251,personnel_casualty loss,military personnel lost by death or capture
+60252,personnel_department personnel_office personnel staff_office,the department responsible for hiring and training and placing employees and for setting policies for personnel management
+60253,perspective linear_perspective,the appearance of things relative to one another as determined by their distance from the viewer
+60254,perspicuity perspicuousness plainness,clarity as a consequence of being perspicuous
+60255,perspiration sweat sudor,salty fluid secreted by sweat glands; "sweat poured off his brow"
+60256,perspiration sweating diaphoresis sudation hidrosis,the process of the sweat glands of the skin secreting a salty fluid; "perspiration is a homeostatic process"
+60257,perspirer sweater,a person who perspires
+60258,persuader inducer,someone who tries to persuade or induce or lead on
+60259,persuasion suasion,the act of persuading (or attempting to persuade); communication intended to induce belief or action
+60260,persuasiveness strength,the power to induce the taking of a course of action or the embracing of a point of view by means of argument or entreaty; "the strength of his argument settled the matter"
+60261,pertainym,meaning relating to or pertaining to
+60262,pertness,quality of being lively and confident; "there was a pertness about her that attracted him"
+60263,perturbation,(physics) a secondary influence on a system that causes it to deviate slightly
+60264,perturbation disturbance,activity that is a malfunction, intrusion, or interruption; "the term `distress' connotes some degree of perturbation and emotional upset"; "he looked around for the source of the disturbance"; "there was a disturbance of neural function"
+60265,perturbation fluster,a disposition that is confused or nervous and upset
+60266,perusal perusing poring_over studying,reading carefully with intent to remember
+60267,pervaporation,the concentration of a colloidal solution whose colloid will not pass through a semipermeable membrane; solution is placed in a bag of the membrane and the solvent is evaporated off
+60268,pervasiveness,the quality of filling or spreading throughout; "the pervasiveness of the odor of cabbage in tenement hallways"
+60269,perversion,a curve that reverses the direction of something; "the tendrils of the plant exhibited perversion"; "perversion also shows up in kinky telephone cords"
+60270,perversion,the action of perverting something (turning it to a wrong use); "it was a perversion of justice"
+60271,perversion sexual_perversion,an aberrant sexual practice
+60272,perversity perverseness,deliberately deviating from what is good; "there will always be a few people who, through macho perversity, gain satisfaction from bullying and terrorism"
+60273,pervert deviant deviate degenerate,a person whose behavior deviates from what is acceptable especially in sexual behavior
+60274,pesantran pesantren,a Muslim school in Indonesia operated by religious leaders; produces young militants skilled in jihad
+60275,peseta Spanish_peseta,formerly the basic unit of money in Spain; equal to 100 centimos
+60276,pesewa,100 pesewas equal 1 cedi in Ghana
+60277,peshmerga,a member of a Kurdish guerilla organization that fights for a free Kurdish state
+60278,pessimism,the feeling that things will turn out badly
+60279,pessimism,a general disposition to look on the dark side and to expect the worst in all things
+60280,pessimist,a person who expects the worst
+60281,pest,any unwanted and destructive insect or other animal that attacks food or crops or livestock etc.; "he sprayed the garden to get rid of pests"; "many pests have developed resistance to the common pesticides"
+60282,pest blighter cuss pesterer gadfly,a persistently annoying person
+60283,pesthole,a breeding ground for epidemic disease
+60284,pesticide,a chemical used to kill pests (as rodents or insects)
+60285,pesticide_poisoning,toxic condition resulting from ingesting or inhaling a pesticide
+60286,pestilence canker,a pernicious and malign influence that is hard to get rid of; "racism is a pestilence at the heart of the nation"; "according to him, I was the canker in their midst"
+60287,pestle,a club-shaped hand tool for grinding and mixing substances in a mortar
+60288,pestle muller pounder,a heavy tool of stone or iron (usually with a flat base and a handle) that is used to grind and mix material (as grain or drugs or pigments) against a slab of stone
+60289,pesto,a sauce typically served with pasta; contains crushed basil leaves and garlic and pine nuts and Parmesan cheese in olive oil
+60290,pet,a fit of petulance or sulkiness (especially at what is felt to be a slight)
+60291,pet,a domesticated animal kept for companionship or amusement
+60292,pet_name hypocorism,a name of endearment (especially one using a diminutive suffix); "`Billy' is a hypocorism for `William'"
+60293,pet_peeve,an opportunity for complaint that is seldom missed; "grammatical mistakes are his pet peeve"
+60294,pet_shop,a shop where pet animals can be purchased
+60295,pet_sitter critter_sitter,someone left in charge of pets while their owners are away from home
+60296,pet_sitting,the work of a pet sitter; caring for pets in their own home while their owners are away from home
+60297,petabit Pbit Pb,a unit of information equal to 1000 terabits or 10^15 bits
+60298,petabyte PB,a unit of information equal to 1000 terabytes or 10^15 bytes
+60299,petabyte pebibyte PB PiB,a unit of information equal to 1024 tebibytes or 2^50 bytes
+60300,petal flower_petal,part of the perianth that is usually brightly colored
+60301,petard,an explosive device used to break down a gate or wall
+60302,petcock,regulator consisting of a small cock or faucet or valve for letting out air or releasing compression or draining
+60303,petechia,a minute red or purple spot on the surface of the skin as the result of tiny hemorrhages of blood vessels in the skin (as in typhoid fever)
+60304,petfood pet-food pet_food,food prepared for animal pets
+60305,petiole leafstalk,the slender stem that supports the blade of a leaf
+60306,petiolule,the stalk of a leaflet
+60307,petit_bourgeois,a member of the lower middle class
+60308,petit_bourgeois petite_bourgeoisie petty_bourgeoisie,lower middle class (shopkeepers and clerical staff etc.)
+60309,petit_four,small (individual) frosted and ornamented cake
+60310,petit_juror petty_juror,a member of a petit jury
+60311,petit_jury petty_jury,a jury of 12 to determine the facts and decide the issue in civil or criminal proceedings
+60312,petit_larceny petty_larceny petty,larceny of property having a value less than some amount (the amount varies by locale)
+60313,petit_mal epilepsia_minor,a seizure of short duration characterized by momentary unconsciousness and local muscle spasms or twitching; "the girl was frightened by her first petit mal"
+60314,petit_mal_epilepsy petit_mal epilepsia_minor,epilepsy characterized by paroxysmal attacks of brief clouding of consciousness (and possibly other abnormalities); "she has been suffering from petit mal since childhood"
+60315,petit_point,needlepoint done with small stitches
+60316,petit_point tent_stitch,a small diagonal needlepoint stitch
+60317,petite,a garment size for short or slender women
+60318,petite_marmite minestrone vegetable_soup,soup made with a variety of vegetables
+60319,petitio_principii petitio,the logical fallacy of assuming the conclusion in the premises; begging the question
+60320,petitioner suppliant supplicant requester,one praying humbly for something; "a suppliant for her favors"
+60321,petrel,relatively small long-winged tube-nosed bird that flies far from land
+60322,petrifaction,a rock created by petrifaction; an organic object infiltrated with mineral matter and preserved in its original form
+60323,petrifaction petrification,the process of turning some plant material into stone by infiltration with water carrying mineral particles without changing the original shape
+60324,petrissage,massage of the skin which is gently lifted and squeezed
+60325,petrochemical,any compound obtained from petroleum or natural gas
+60326,petroglyph,a carving or line drawing on rock (especially one made by prehistoric people)
+60327,petrolatum petroleum_jelly mineral_jelly,a semisolid mixture of hydrocarbons obtained from petroleum; used in medicinal ointments and for lubrication
+60328,petrolatum_gauze,gauze saturated with petrolatum
+60329,petroleum crude_oil crude rock_oil fossil_oil oil,a dark oil consisting mainly of hydrocarbons
+60330,petroleum_geologist oil_geologist,a specialist in petroleum geology
+60331,petroleum_geology,the branch of economic geology that deals with the occurrence and exploitation of oil and gas fields
+60332,petrology lithology,the branch of geology that studies rocks: their origin and formation and mineral composition and classification
+60333,petter fondler,a lover who gently fondles and caresses the loved one; "they are heavy petters"
+60334,petticoat half-slip underskirt,undergarment worn under a skirt
+60335,pettiness,narrowness of mind or ideas or views
+60336,pettiness littleness smallness,lack of generosity in trifling matters
+60337,pettiness triviality slightness puniness,the quality of being unimportant and petty or frivolous
+60338,petting_zoo,a collection of docile animals for children to pet and feed
+60339,petty_apartheid,racial segregation enforced primarily in public transportation and hotels and restaurants and other public places
+60340,petty_cash,a small fund of cash that a firm keeps for the payment of incidental expenses
+60341,petty_officer PO P.O.,a noncommissioned officer in the Navy or Coast Guard with a rank comparable to sergeant in the Army
+60342,petty_spurge devil's_milk Euphorbia_peplus,an Old World spurge introduced as a weed in the eastern United States
+60343,petunia,any of numerous tropical herbs having fluted funnel-shaped flowers
+60344,pew church_bench,long bench with backs; used in church by the congregation
+60345,pewee peewee peewit pewit wood_pewee Contopus_virens,small olive-colored woodland flycatchers of eastern North America
+60346,pewter,any of various alloys of tin with small amounts of other metals (especially lead)
+60347,pfannkuchen german_pancake,puffy mildly sweet lemon-flavored egg mixture sprinkled with confectioners' sugar and served with jam or a wine or fruit sauce
+60348,pfennig,100 pfennigs formerly equaled 1 Deutsche Mark in Germany
+60349,phacoemulsification,extracapsular surgery for cataracts in which ultrasonic sound breaks the cortex and nucleus of the lens into small fragments that are then vacuumed away through a small tube
+60350,phagocyte scavenger_cell,a cell that engulfs and digests debris and invading microorganisms
+60351,phagocytosis,process in which phagocytes engulf and digest microorganisms and cellular debris; an important defense against infection
+60352,phaius,an orchid of the genus Phaius having large plicate leaves and racemes of showy flowers
+60353,phalanger opossum possum,small furry Australian arboreal marsupials having long usually prehensile tails
+60354,phalangitis,inflammation of a finger or toe
+60355,phalanx,any closely ranked crowd of people
+60356,phalanx,a body of troops in close array
+60357,phalanx,any of the bones of the fingers or toes
+60358,phalarope,small sandpiper-like shorebird having lobate toes and being good swimmers; breed in the Arctic and winter in the tropics
+60359,phallic_stage phallic_phase,(psychoanalysis) the third stage in a child's development when awareness of and manipulation of the genitals is supposed to be a primary source of pleasure
+60360,phalloplasty,reconstructive surgery on the penis to repair congenital abnormality or injury
+60361,phalsa Grewia_asiatica,drought-resistant Asiatic treelike shrub bearing pleasantly acid small red edible fruits commonly used in sherbets
+60362,phaneromania,an irresistible desire to pick at superficial body parts (as in obsessive nail-biting)
+60363,phantasmagoria,a constantly changing medley of real or imagined images (as in a dream)
+60364,phantom_limb,the illusion that a limb still exists after it has been amputated
+60365,phantom_limb_pain,pain felt by an amputee that seems to be located in the missing limb
+60366,phantom_limb_syndrome,syndrome consisting of discomfort or pain in a limb that has been amputated
+60367,phantom_orchid snow_orchid Eburophyton_austinae,waxy white nearly leafless plant with stems in clusters and racemes of white flowers; northwestern United States to northern California and east to Idaho
+60368,pharaoh_ant pharaoh's_ant Monomorium_pharaonis,small red ant of warm regions; a common household pest
+60369,pharisee,a self-righteous or sanctimonious person
+60370,pharmaceutical pharmaceutic,drug or medicine that is prepared or dispensed in pharmacies and used in medical treatment
+60371,pharmacist druggist chemist apothecary pill_pusher pill_roller,a health professional trained in the art of preparing and dispensing drugs
+60372,pharmacogenetics,the branch of genetics that studies the genetically determined variations in responses to drugs in humans or laboratory organisms
+60373,pharmacokinetics,the study of the action of drugs in the body: method and rate of excretion; duration of effect; etc.
+60374,pharmacologist pharmaceutical_chemist,someone trained in the science of drugs (their composition and uses and effects)
+60375,pharmacology pharmacological_medicine materia_medica,the science or study of drugs: their preparation and properties and uses and effects
+60376,pharmacopoeia,a collection or stock of drugs
+60377,pharmacy pharmaceutics,the art and science of preparing and dispensing drugs and medicines,
+60378,pharyngeal_recess,a small recess in the wall of the pharynx
+60379,pharyngeal_reflex gag_reflex,normal reflex consisting of retching; may be produced by touching the soft palate in the back of the mouth
+60380,pharyngeal_tonsil adenoid Luschka's_tonsil third_tonsil tonsilla_pharyngealis tonsilla_adenoidea,a collection of lymphatic tissue in the throat behind the uvula (on the posterior wall and roof of the nasopharynx); "hypertrophy of the pharyngeal tonsils is called adenoids"; "enlarged adenoids may restrict the breathing of children"
+60381,pharyngeal_vein vena_pharyngeus,veins from the pharyngeal plexus that empty into the internal jugular vein
+60382,phase,(astronomy) the particular appearance of a body's state of illumination (especially one of the recurring shapes of the part of Earth's moon that is illuminated by the sun); "the full phase of the moon"
+60383,phase form,(physical chemistry) a distinct state of matter in a system; matter that is identical in chemical composition and physical state and separated from other material by the phase boundary; "the reaction occurs in the liquid phase of the system"
+60384,phase phase_angle,a particular point in the time of a cycle; measured from some arbitrary zero and expressed as an angle
+60385,phase stage,any distinct time period in a sequence of events; "we are in a transitional stage in which many former ideas must be revised or rejected"
+60386,phase-out,the act or instance of a planned discontinuation
+60387,phase_III_clinical_trial phase_III,a large clinical trial of a treatment or drug that in phase I and phase II has been shown to be efficacious with tolerable side effects; after successful conclusion of these clinical trials it will receive formal approval from the FDA
+60388,phase_II_clinical_trial phase_II,a clinical trial on more persons than in phase I; intended to evaluate the efficacy of a treatment for the condition it is intended to treat; possible side effects are monitored
+60389,phase_IV_clinical_trial phase_IV,sometimes the FDA approves a drug for general use but requires the manufacturer to continue to monitor its effects; during this phase the drug may be tried on slightly different patient populations than those studied in earlier trials
+60390,phase_I_clinical_trial phase_I,a clinical trial on a few persons to determine the safety of a new drug or invasive medical device; for drugs, dosage or toxicity limits should be obtained
+60391,phase_change phase_transition state_change physical_change,a change from one state (solid or liquid or gas) to another without a change in chemical composition
+60392,phase_modulation PM,modulation of the phase of the carrier wave
+60393,phase_of_cell_division,a stage in meiosis or mitosis
+60394,phase_of_the_moon,a time when the Moon presents a particular recurring appearance
+60395,phase_space,(physics) an ideal space in which the coordinate dimensions represent the variables that are required to describe a system or substance; "a multidimensional phase space"
+60396,phasianid,a kind of game bird in the family Phasianidae
+60397,phasmid phasmid_insect,large cylindrical or flattened mostly tropical insects with long strong legs that feed on plants; walking sticks and leaf insects
+60398,phatic_speech phatic_communication,conversational speech used to communicate sociability more than information
+60399,pheasant,flesh of a pheasant; usually braised
+60400,pheasant,large long-tailed gallinaceous bird native to the Old World but introduced elsewhere
+60401,pheasant's-eye Adonis_annua,Eurasian herb cultivated for its deep red flowers with dark centers
+60402,pheasant_coucal pheasant_cuckoo Centropus_phasianinus,Australian bird with a tail like a pheasant
+60403,pheasant_under_glass,a dish of roast pheasant served in a manner characteristic of expensive restaurants
+60404,phellem cork,(botany) outer tissue of bark; a protective layer of dead cells
+60405,phenacomys,any of several vole-like terrestrial or arboreal rodents of cold forested regions of Canada and western United States
+60406,phenazopyridine Pyridium,analgesic (trade name Pyridium) used to treat urinary tract infections
+60407,phencyclidine phencyclidine_hydrochloride PCP angel_dust,a drug used as an anesthetic by veterinarians; illicitly taken (originally in the form of powder or `dust') for its effects as a hallucinogen
+60408,phenelzine Nardil,monoamine oxidase inhibitor (trade name Nardil) used to treat clinical depression
+60409,pheniramine,an antihistamine used in preparations to treat allergies and respiratory infections; used to treat rhinitis and skin rashes and pruritus
+60410,pheno-safranine,a purplish red water-soluble dye used in microscopy
+60411,phenol,any of a class of weakly acidic organic compounds; molecule contains one or more hydroxyl groups
+60412,phenolic_plastic phenolic_urea,a plastic consisting of phenolic resins
+60413,phenolic_resin phenolic phenoplast,a thermosetting resin
+60414,phenolphthalein,a laxative used in many preparations under various trade names; also used as an acid-base indicator in titrations involving weak acids and strong bases because it is brilliant red at high alkalinity and colorless below pH 8
+60415,phenomenology,a philosophical doctrine proposed by Edmund Husserl based on the study of human experience in which considerations of objective reality are not taken into account
+60416,phenomenon,a remarkable development
+60417,phenomenon,any state or process known through the senses rather than by intuition or reasoning
+60418,phenothiazine thiodiphenylamine,a compound used primarily in veterinary medicine to rid farm animals of internal parasites
+60419,phenotype,what an organism looks like as a consequence of the interaction of its genotype and the environment
+60420,phensuximide Milontin,anticonvulsant (trade name Milontin) used to treat petit mal
+60421,phentolamine Vasomax,a virility drug (trade name Vasomax) to treat erectile dysfunction in men
+60422,phenylalanine,an essential amino acid found in proteins and needed for growth of children and for protein metabolism in children and adults; abundant in milk and eggs; it is normally converted to tyrosine in the human body
+60423,phenylbutazone Butazolidin,anti-inflammatory drug (trade name Butazolidin)
+60424,phenylephrine,a powerful vasoconstrictor used to dilate the pupils and relieve nasal congestion
+60425,phenylketonuria PKU,a genetic disorder of metabolism; lack of the enzyme needed to turn phenylalanine into tyrosine results in an accumulation of phenylalanine in the body fluids which causes various degrees of mental deficiency
+60426,phenylpropanolamine,an adrenergic drug used in many preparations to relieve allergic reactions or respiratory infections; "drugs containing phenylpropanolamine are being recalled"
+60427,phenyltoloxamine,antihistamine included in some preparations used to treat coughing and nasal congestion
+60428,pheochromocytoma phaeochromocytoma,a vascular tumor of the adrenal gland; hypersecretion of epinephrine results in intermittent or sustained hypertension
+60429,pheromone,a chemical substance secreted externally by some animals (especially insects) that influences the physiology or behavior of other animals of the same species
+60430,phi,the 21st letter of the Greek alphabet
+60431,phi_coefficient phi_correlation fourfold_point_correlation,an index of the relation between any two sets of scores that can both be represented on ordered binary dimensions (e.g., male-female)
+60432,phial vial ampule ampul ampoule,a small bottle that contains a drug (especially a sealed sterile container for injection by needle)
+60433,philadelphus,any of various chiefly deciduous ornamental shrubs of the genus Philadelphus having white sweet-scented flowers, single or in clusters; widely grown in temperate regions
+60434,philanthropic_foundation,a foundation that provides funds for science or art or education or religion or relief from disease etc.
+60435,philanthropist altruist,someone who makes charitable donations intended to increase human well-being
+60436,philanthropy philanthropic_gift,voluntary promotion of human welfare
+60437,philatelist stamp_collector,a collector and student of postage stamps
+60438,philately stamp_collecting stamp_collection,the collection and study of postage stamps
+60439,philhellene philhellenist Graecophile,an admirer of Greece and everything Greek
+60440,philhellenism,admiration for Greece and the Greeks and Greek customs
+60441,philistine anti-intellectual lowbrow,a person who is uninterested in intellectual pursuits
+60442,phillipsite,a group of white or reddish crystalline minerals of the zeolite family consisting of a hydrous silicate of calcium and potassium and aluminum
+60443,philodendron,often grown as a houseplant
+60444,philogyny,admiration for women
+60445,philologist philologue,a humanist specializing in classical scholarship
+60446,philomath,a lover of learning
+60447,philosopher,a wise person who is calm and rational; someone who lives a life of reason with equanimity
+60448,philosopher,a specialist in philosophy
+60449,philosopher's_stone philosophers'_stone elixir,hypothetical substance that the alchemists believed to be capable of changing base metals into gold
+60450,philosophical_doctrine philosophical_theory,a doctrine accepted by adherents to a philosophy
+60451,philosophizer philosophiser,someone who considers situations from a philosophical point of view
+60452,philosophizing,the exposition (often superficially) of a particular philosophy
+60453,philosophy,the rational investigation of questions about existence and knowledge and ethics
+60454,philosophy,any personal belief about how to live or how to deal with a situation; "self-indulgence was his only philosophy"; "my father's philosophy of child-rearing was to let mother do it"
+60455,philosophy_department department_of_philosophy,the academic department responsible for teaching philosophy
+60456,philter philtre love-potion love-philter love-philtre,a drink credited with magical power; can make the one who takes it love the one who gave it
+60457,phimosis,an abnormal tightness of the foreskin preventing retraction over the glans
+60458,phlebectomy,surgical removal or all or part of a vein; sometimes done in cases of severe varicose veins
+60459,phlebitis,inflammation of a vein (usually in the legs)
+60460,phlebothrombosis venous_thrombosis,thrombosis of a vein without prior inflammation of the vein; associated with sluggish blood flow (as in prolonged bedrest or pregnancy or surgery) or with rapid coagulation of the blood
+60461,phlebotomist,someone who practices phlebotomy
+60462,phlegm sputum,expectorated matter; saliva mixed with discharges from the respiratory passages; in ancient and medieval physiology it was believed to cause sluggishness
+60463,phloem bast,(botany) tissue that conducts synthesized food substances (e.g., from leaves) to parts where needed; consists primarily of sieve tubes
+60464,phlogiston,a hypothetical substance once believed to be present in all combustible materials and to be released during burning
+60465,phlogopite,a brown form of mica consisting of hydrous silicate of potassium and magnesium and aluminum
+60466,phlomis,any of various plants of the genus Phlomis; grown primarily for their dense whorls of lipped flowers and attractive foliage
+60467,phlox,any polemoniaceous plant of the genus Phlox; chiefly North American; cultivated for their clusters of flowers
+60468,phobia phobic_disorder phobic_neurosis,an anxiety disorder characterized by extreme and irrational fear of simple things or social situations; "phobic disorder is a general term for all phobias"
+60469,phobophobia,a morbid fear of developing a phobia
+60470,phocomelia seal_limbs,an abnormality of development in which the upper part of an arm or leg is missing so the hands or feet are attached to the body like stumps; rare condition that results from taking thalidomide during pregnancy
+60471,phoebe phoebe_bird Sayornis_phoebe,small dun-colored North American flycatcher
+60472,phoenicophorium genus_Phoenicophorium,latanier palm
+60473,phoenix,a legendary Arabian bird said to periodically burn itself to death and emerge from the ashes as a new phoenix; according to most versions only one phoenix lived at a time and it renewed itself every 500 years
+60474,phoenix genus_Phoenix,a large monocotyledonous genus of pinnate-leaved palms found in Asia and Africa
+60475,phon,a unit of subjective loudness
+60476,phone speech_sound sound,(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language
+60477,phone-in,a program in which the audience participates by telephone
+60478,phone_bill telephone_bill,statement of charges for telephone service
+60479,phone_message telephone_message,a message transmitted by telephone
+60480,phone_number telephone_number number,the number is used in calling a particular telephone; "he has an unlisted number"
+60481,phonebook phone_book telephone_book telephone_directory,a directory containing an alphabetical list of telephone subscribers and their telephone numbers
+60482,phoneme,(linguistics) one of a small set of speech sounds that are distinguished by the speakers of a particular language
+60483,phonemic_system,the system of phonemes recognized in a language
+60484,phonetic_alphabet sound_alphabet,an alphabet of characters intended to represent specific sounds of speech
+60485,phonetic_symbol,a written character used in phonetic transcription of represent a particular speech sound
+60486,phonetic_transcription,a transcription intended to represent each distinct speech sound with a separate symbol
+60487,phonetician,a specialist in phonetics
+60488,phonetics,the branch of acoustics concerned with speech processes including its production and perception and acoustic analysis
+60489,phonics,teaching reading by training beginners to associate letters with their sound values
+60490,phonogram,any written symbol standing for a sound or syllable or morpheme or word
+60491,phonograph_album record_album,an album for holding phonograph records
+60492,phonograph_needle needle,a stylus that formerly made sound by following a groove in a phonograph record
+60493,phonograph_record phonograph_recording record disk disc platter,sound recording consisting of a disk with a continuous groove; used to reproduce music by rotating while a phonograph needle tracks in the groove
+60494,phonological_system phonologic_system,the system of phones used in a particular language
+60495,phonologist,a specialist in phonology
+60496,phonology phonemics,the study of the sound system of a given language and the analysis and classification of its phonemes
+60497,phonophobia acousticophobia,a morbid fear of sounds including your own voice
+60498,phoronid,hermaphrodite wormlike animal living in mud of the sea bottom
+60499,phosgene,a colorless poisonous gas that smells like new-mown hay; used in chemical warfare
+60500,phosphatase,any of a group of enzymes that act as a catalyst in the hydrolysis of organic phosphates
+60501,phosphate,carbonated drink with fruit syrup and a little phosphoric acid
+60502,phosphate orthophosphate inorganic_phosphate,a salt of phosphoric acid
+60503,phosphate_buffer_solution PBS,a solution containing a phosphate buffer
+60504,phosphine,a colorless gas with a strong fishy smell; used as a pesticide
+60505,phosphocreatine creatine_phosphate creatine_phosphoric_acid,an organic compound of creatine and phosphoric acid; found in the muscles of vertebrates where its hydrolysis releases energy for muscular contraction
+60506,phospholipid,any of various compounds composed of fatty acids and phosphoric acid and a nitrogenous base; an important constituent of membranes
+60507,phosphoprotein,containing chemically bound phosphoric acid
+60508,phosphor,a synthetic substance that is fluorescent or phosphorescent; used to coat the screens of cathode ray tubes
+60509,phosphor_bronze,a corrosion-resistant bronze containing phosphorus; used in bearings and gears
+60510,phosphorescence,a fluorescence that persists after the bombarding radiation has ceased
+60511,phosphoric_acid orthophosphoric_acid,an acid used in fertilizers and soaps: H3PO4
+60512,phosphorus P atomic_number_15,a multivalent nonmetallic element of the nitrogen family that occurs commonly in inorganic phosphate rocks and as organic phosphates in all living cells; is highly reactive and occurs in several allotropic forms
+60513,phot,a unit of illumination equal to 1 lumen per square centimeter; 10,000 phots equal 1 lux
+60514,photalgia photophobia,pain in the eye resulting from exposure to bright light (often associated with albinism)
+60515,photo-offset_printing photo-offset,a method of offset printing using photomechanical plates
+60516,photo_credit,a note acknowledging the source of a published photograph
+60517,photo_finish,in general, any very close finish; in particular, a finish of a race in which the contestants are so close together that the winner must be determined from a photograph taken at the instant of finishing
+60518,photo_opportunity photo_op,an occasion that lends itself to (or is deliberately arranged for) taking photographs that provide favorable publicity for those who are photographed
+60519,photocathode,a cathode that emits electrons when illuminated
+60520,photochemical_exchange,an exchange produced by the chemical action of radiant energy (especially light)
+60521,photochemical_reaction,a chemical reaction produced by the action of light
+60522,photochemistry,branch of chemistry that deals with the chemical action of light
+60523,photocoagulation,surgical procedure that uses an intense laser beam to destroy diseased retinal tissue or to make a scar that will hold the retina in cases of detached retina
+60524,photocoagulator,surgical instrument containing a laser for use in photocoagulation
+60525,photoconductivity photoconduction,change in the electrical conductivity of a substance as a result of absorbing electromagnetic radiation
+60526,photocopier,a copier that uses photographic methods of making copies
+60527,photocopy,a photographic copy of written or printed or graphic work
+60528,photoelectric_cell photoconductive_cell photocell electric_eye magic_eye,a transducer used to detect and measure light and other radiations
+60529,photoelectric_emission,the release or absorption of quanta above a certain energy level
+60530,photoelectricity,electricity generated by light or affected by light
+60531,photoelectron,an electron that is emitted from an atom or molecule by an incident photon
+60532,photoemission,an emission of photoelectrons (especially from a metallic surface)
+60533,photogenic_epilepsy,reflex epilepsy induced by a flickering light
+60534,photograph photo exposure picture pic,a representation of a person or scene in the form of a print or transparent slide or in digital format
+60535,photograph_album,an album for photographs
+60536,photographer lensman,someone who takes photographs professionally
+60537,photographer's_model,a model who poses for photographers
+60538,photographic_equipment,equipment used by a photographer
+60539,photographic_paper photographic_material,light-sensitive paper on which photograph can be printed
+60540,photographic_print print,a printed picture produced from a photographic negative
+60541,photography,the process of producing images of objects on photosensitive surfaces
+60542,photography,the occupation of taking and printing photographs or making movies
+60543,photography picture_taking,the act of taking and printing photographs
+60544,photogravure,printing from an intaglio plate prepared by photographic methods
+60545,photogravure rotogravure,using photography to produce a plate for printing
+60546,photojournalism,journalism that presents a story primarily through the use of pictures
+60547,photojournalist,a journalist who presents a story primarily through the use of photographs
+60548,photolithograph,a lithograph produced by photographically produced plates
+60549,photolithography,a planographic printing process using plates made from a photographic image
+60550,photomechanics,the technique of using photomechanical methods to make photographs into plates for printing
+60551,photomechanics photoplate_making,the process whereby printing surfaces (plates or cylinders) are produced by photographic methods; "photomechanics revolutionized the practice of printing"
+60552,photometer,measuring instrument for measuring the luminous intensity of a source by comparing it (visually or photoelectrically) with a standard source
+60553,photometrist photometrician,someone who practices photometry
+60554,photometry,measurement of the properties of light (especially luminous intensity)
+60555,photomicrograph,a photograph taken with the help of a microscope
+60556,photomontage,a montage that uses photographic images
+60557,photon,a quantum of electromagnetic radiation; an elementary particle that is its own antiparticle
+60558,photophobia,a morbid fear of light
+60559,photopigment,a special pigment found in the rods and cones of the retina
+60560,photoretinitis,damage to the retina resulting from exposure of the eye to the sun without adequate protection
+60561,photosensitivity radiosensitivity,sensitivity to the action of radiant energy
+60562,photosphere,the intensely luminous surface of a star (especially the sun)
+60563,photostat,a photocopy made on a Photostat machine
+60564,photosynthesis,synthesis of compounds with the aid of radiant energy (especially in plants)
+60565,phototherapy,the use of strong light to treat acne or hyperbilirubinemia of the newborn
+60566,phototrophic_bacteria phototropic_bacteria,green and purple bacteria; energy for growth is derived from sunlight; carbon is derived from carbon dioxide or organic carbon
+60567,phototropism,an orienting response to light
+60568,phragmocone phragmacone,the thin conical chambered internal shell (either straight or curved) of a belemnite
+60569,phrasal_verb,an English verb followed by one or more particles where the combination behaves as a syntactic and semantic unit; "`turn out' is a phrasal verb in the question `how many turned out to vote?'"
+60570,phrase,an expression consisting of one or more words forming a grammatical constituent of a sentence
+60571,phrase,dance movements that are linked in a single choreographic sequence
+60572,phrase musical_phrase,a short musical passage
+60573,phrase_book,a book containing common expressions in a foreign language along with their translations
+60574,phrasing,the grouping of musical phrases in a melodic line
+60575,phrenic_nerve nervus_phrenicus,one of a pair of nerves that arises from cervical spinal roots and passes down the thorax to innervate the diaphragm and control breathing
+60576,phrenic_vein vena_phrenica,either of two veins that drain the diaphragm
+60577,phrenologist craniologist,someone who claims to be able to read your character from the shape of your skull
+60578,phrenology,a now abandoned study of the shape of skull as indicative of the strengths of different faculties
+60579,phrontistery,an establishment for study and learning (sometimes including modern universities)
+60580,phthalic_acid,a colorless acid used to make dyes and perfumes
+60581,phthalic_anhydride,a white cyclic anhydride
+60582,phycobilin,water-soluble proteinaceous pigments found in red algae and cyanobacteria
+60583,phycocyanin,blue pigment in algae
+60584,phycoerythrin,red pigment in red algae
+60585,phycology algology,the branch of botany that studies algae
+60586,phycomycosis,any fungal infection caused by fungi of the Phycomycetes group
+60587,phylactery tefillin,(Judaism) either of two small leather cases containing texts from the Hebrew Scriptures (known collectively as tefillin); traditionally worn (on the forehead and the left arm) by Jewish men during morning prayer
+60588,phyle,a tribe of ancient Athenians
+60589,phyllo,tissue thin sheets of pastry used especially in Greek dishes
+60590,phyllode,an expanded petiole taking on the function of a leaf blade
+60591,phylum,(linguistics) a large group of languages that are historically related
+60592,phylum,(biology) the major taxonomic group of animals and plants; contains classes
+60593,physa,any member of the genus Physa
+60594,physic_nut Jatropha_curcus,small tropical American tree yielding purple dye and a tanning extract and bearing physic nuts containing a purgative oil that is poisonous in large quantities
+60595,physical_ability,the ability to perform some physical act; contrasting with mental ability
+60596,physical_anthropology,the branch of anthropology dealing with the genesis and variation of human beings
+60597,physical_chemistry,the branch of chemistry dealing with the physical properties of chemical substances
+60598,physical_condition physiological_state physiological_condition,the condition or state of the body or bodily functions
+60599,physical_education,training in the development of and care for the human body; stresses athletics; includes hygiene
+60600,physical_entity,an entity that has physical existence
+60601,physical_geography physiography,the study of physical features of the earth's surface
+60602,physical_pendulum compound_pendulum,pendulum consisting of an actual object allowed to rotate freely around a horizontal axis
+60603,physical_phenomenon,a natural phenomenon involving the physical properties of matter and energy
+60604,physical_property,any property used to characterize matter and energy and their interactions
+60605,physical_rehabilitation physical_restoration therapeutic_rehabilitation,providing help for disabled persons; the removal or reduction of disabilities
+60606,physical_therapist physiotherapist,therapist who treats injury or dysfunction with exercises and other physical treatments of the disorder
+60607,physical_therapy physiotherapy physiatrics,therapy that uses physical agents: exercise and massage and other modalities
+60608,physical_topology,the appearance of the network; "the physical topologies of local area networks include the bus, the ring and the star"
+60609,physician-assisted_suicide,assisted suicide where the assistant is a physician
+60610,physician-patient_privilege,the right of a physician to refuse to divulge confidential information from a patient without the consent of the patient
+60611,physicist,a scientist trained in physics
+60612,physics natural_philosophy,the science of matter and energy and their interactions; "his favorite subject was physics"
+60613,physics physical_science,the physical properties, phenomena, and laws of something; "he studied the physics of radiation"
+60614,physics_department department_of_physics,the academic department responsible for teaching and research in physics
+60615,physics_lab physics_laboratory,a laboratory for research in physics
+60616,physiological_nystagmus,small involuntary tremors of the eyeballs; when it is eliminated by stabilizing the image on the retina, visual perception fades rapidly from fatigue of the retinal receptors
+60617,physiological_property,a property having to do with the functioning of the body
+60618,physiological_psychology neuropsychology psychophysiology,the branch of psychology that is concerned with the physiological bases of psychological processes
+60619,physiological_sphincter,a sphincter that is not recognizable at autopsy because its resting arrangement cannot be distinguished from adjacent tissue
+60620,physiologist,a biologist specializing in physiology
+60621,physiology,the branch of the biological sciences dealing with the functioning of organisms
+60622,physiology,processes and functions of an organism
+60623,physique build body-build habitus,constitution of the human body
+60624,physostegia,any of various plants of the genus Physostegia having sessile linear to oblong leaves and showy white or rose or lavender flowers
+60625,physostigmine,used in treatment of Alzheimer's disease and glaucoma
+60626,phytelephas genus_Phytelephas,small genus of South American feather palms
+60627,phytochemical,a chemical substance obtained from plants that is biologically active but not nutritive
+60628,phytochemist,a chemist who specializes in the chemistry of plants
+60629,phytochemistry,the branch of organic chemistry dealing with the chemistry of plants
+60630,phytohormone plant_hormone growth_regulator,(botany) a plant product that acts like a hormone
+60631,phytoplankton,photosynthetic or plant constituent of plankton; mainly unicellular algae
+60632,phytotherapy herbal_therapy botanical_medicine,the use of plants or plant extracts for medicinal purposes (especially plants that are not part of the normal diet)
+60633,pi,the ratio of the circumference to the diameter of a circle; approximately equal to 3.14159265358979323846...
+60634,pi,the 16th letter of the Greek alphabet
+60635,pia Indian_arrowroot Tacca_leontopetaloides Tacca_pinnatifida,perennial herb of East Indies to Polynesia and Australia; cultivated for its large edible root yielding Otaheite arrowroot starch
+60636,pia_mater,the highly vascular innermost of the 3 meninges
+60637,piaffe,a cadenced trot executed by the horse in one spot
+60638,pianism,performance by or technique of a pianist; "a program of pianism"
+60639,pianist piano_player,a person who plays the piano
+60640,piano pianissimo,(music) low loudness
+60641,piano pianoforte forte-piano,a keyboard instrument that is played by depressing keys that cause hammers to strike tuned strings and produce sounds
+60642,piano_accordion,an accordion with a right-hand keyboard
+60643,piano_action,action consisting of a system of levers that move a felt hammer to strike the strings when a key is depressed
+60644,piano_keyboard fingerboard clavier,a bank of keys on a musical instrument
+60645,piano_lesson,a lesson in playing the piano
+60646,piano_maker,a person who makes pianos
+60647,piano_music,sheet music to be played on a piano
+60648,piano_music,the sound of music produced by a piano; "he thought he heard piano music next door"
+60649,piano_sonata,a sonata for piano
+60650,piano_teacher,someone who teaches students to play the piano
+60651,piano_wire,thin steel wire of high tensile strength
+60652,piassava_palm pissaba_palm Bahia_piassava bahia_coquilla Attalea_funifera,Brazilian palm yielding fibers used in making ropes, mats, and brushes
+60653,piaster piastre,a fractional monetary unit in Egypt and Lebanon and Sudan and Syria
+60654,pibroch,martial music with variations; to be played by bagpipes
+60655,pica,an eating disorder, frequent in children, in which non-nutritional objects are eaten persistently
+60656,picador,the horseman who pricks the bull with a lance early in the bullfight to goad the bull and to make it keep its head low
+60657,piccalilli,relish of chopped pickled cucumbers and green peppers and onion
+60658,piccolo,a small flute; pitched an octave above the standard flute
+60659,pichi Fabiana_imbricata,Peruvian shrub with small pink to lavender tubular flowers; leaves yield a tonic and diuretic
+60660,pichiciago pichiciego fairy_armadillo chlamyphore Chlamyphorus_truncatus,very small Argentine armadillo with pale silky hair and pink plates on head and neck
+60661,piciform_bird,any of numerous nonpasserine insectivorous climbing birds usually having strong bills for boring wood
+60662,pick,a thin sharp implement used for removing unwanted material; "he used a pick to clean the dirt out of the cracks"
+60663,pick,a basketball maneuver; obstructing an opponent with one's body; "he was called for setting an illegal pick"
+60664,pick pickax pickaxe,a heavy iron tool with a wooden handle and a curved head that is pointed on both ends; "they used picks and sledges to break the rocks"
+60665,pick plectrum plectron,a small thin device (of metal or plastic or ivory) used to pluck a stringed instrument
+60666,pick-off,a baseball play in which a base runner is caught off base and tagged out
+60667,pickaback_plant piggyback_plant youth-on-age Tolmiea_menziesii,vigorous perennial herb with flowers in erect racemes and having young plants develop at the junction of a leaf blade and the leafstalk
+60668,pickaninny piccaninny picaninny,(ethnic slur) offensive term for a Black child
+60669,pickelhaube,a spiked helmet worn by German soldiers
+60670,picker,someone who gathers crops or fruits etc.
+60671,picker chooser selector,a person who chooses or selects out
+60672,pickerel,flesh of young or small pike
+60673,pickerel,any of several North American species of small pike
+60674,pickerel_frog Rana_palustris,a meadow frog of eastern North America
+60675,pickerelweed pickerel_weed wampee Pontederia_cordata,American plant having spikes of blue flowers and growing in shallow water of streams and ponds
+60676,picket,a protester posted by a labor organization outside a place of work
+60677,picket,a detachment of troops guarding an army from surprise attack
+60678,picket,a vehicle performing sentinel duty
+60679,picket pale,a wooden strip forming part of a fence
+60680,picket piquet,a form of military punishment used by the British in the late 17th century in which a soldier was forced to stand on one foot on a pointed stake
+60681,picket_boat,a boat serving as a picket
+60682,picket_fence paling,a fence made of upright pickets
+60683,picket_line,a line of people acting as pickets
+60684,picket_ship,a ship serving as a picket
+60685,picking,the act of picking (crops or fruit or hops etc.)
+60686,picking pick,the quantity of a crop that is harvested; "he sent the first picking of berries to the market"; "it was the biggest peach pick in years"
+60687,pickings taking,the act of someone who picks up or takes something; "the pickings were easy"; "clothing could be had for the taking"
+60688,pickle,vegetables (especially cucumbers) preserved in brine or vinegar
+60689,pickle_barrel,a barrel holding vinegar in which cucumbers are pickled
+60690,pickle_relish,relish of chopped (usually sweet) pickles
+60691,pickled_herring,herring preserved in a pickling liquid (usually brine or vinegar)
+60692,pickpocket cutpurse dip,a thief who steals from the pockets or purses of others in public places
+60693,pickup,a casual acquaintance; often made in hope of sexual relationships
+60694,pickup,a warrant to take someone into custody; "put out a pickup on that man"
+60695,pickup,the act or process of picking up or collecting from various places; "garbage pickup is on Mondays and Thursdays"
+60696,pickup,the act of taking aboard passengers or freight
+60697,pickup getaway,the attribute of being capable of rapid acceleration; "his car has a lot of pickup"
+60698,pickup pick-me-up,anything with restorative powers; "she needed the pickup that coffee always gave her"
+60699,pickup pickup_truck,a light truck with an open body and low sides and a tailboard
+60700,picnic,any informal meal eaten outside or on an excursion
+60701,picnic_area picnic_ground,a tract of land set aside for picnicking
+60702,picnic_ham picnic_shoulder,shoulder of a hog usually smoked
+60703,picnicker picknicker,a person who is picnicking
+60704,picofarad,a unit of capacitance equal to one trillionth of a farad
+60705,picometer picometre micromicron,a metric unit of length equal to one trillionth of a meter
+60706,picornavirus,a group of single-strand RNA viruses with a protein coat
+60707,picosecond,one trillionth (10^-12) of a second; one thousandth of a nanosecond
+60708,picot,an edging of small loops, as on lace or ribbon
+60709,picovolt,a unit of potential equal to one trillionth of a volt
+60710,picric_acid,a yellow toxic highly explosive strong acid; used in high explosives and as a dye and in chemical reactions
+60711,pictograph,a graphic character used in picture writing
+60712,pictorial,a periodical (magazine or newspaper) containing many pictures
+60713,pictorial_representation picturing,visual representation as by photography or painting
+60714,picture,a typical example of some state or quality; "the very picture of a modern general"; "she was the picture of despair"
+60715,picture image icon ikon,a visual representation (of an object or scene or person or abstraction) produced on a surface; "they showed us the pictures of their wedding"; "a movie is a series of images projected so rapidly that the eye integrates them"
+60716,picture pictorial_matter,illustrations used to decorate or explain a text; "the dictionary had many pictures"
+60717,picture scene,a situation treated as an observable object; "the political picture is favorable"; "the religious scene in England has changed in the last century"
+60718,picture_book,a book consisting chiefly of pictures
+60719,picture_frame,a framework in which a picture is mounted
+60720,picture_hat,a woman's dressy hat with a wide brim
+60721,picture_plane,the plane that is in the foreground of a drawing or painting; coextensive with but different from the objective surface of the work
+60722,picture_postcard,a postcard with a picture on one side
+60723,picture_rail,rail fixed to a wall for hanging pictures
+60724,picture_window,a large window with a single pane (usually overlooking a view)
+60725,picture_writing,a writing system using pictographs
+60726,picturesqueness,the quality of being strikingly expressive or vivid
+60727,picturesqueness,visually vivid and pleasing
+60728,picturing envisioning,visual imagery
+60729,picul,a unit of weight used in some parts of Asia; approximately equal to 133 pounds (the load a grown man can carry)
+60730,piculet,small woodpeckers of South America and Africa and East Indies having soft rounded tail feathers
+60731,piddock,marine bivalve that bores into rock or clay or wood by means of saw-like shells
+60732,pidgin,an artificial language used for trade between speakers of different languages
+60733,pie,dish baked in pastry-lined pan often with a pastry top
+60734,pie_chart,a circular chart divided into triangular areas proportional to the percentages of the whole
+60735,pie_crust pie_shell,pastry used to hold pie fillings
+60736,pie_plant garden_rhubarb Rheum_cultorum Rheum_rhabarbarum Rheum_rhaponticum,long cultivated hybrid of Rheum palmatum; stems often cooked in pies or as sauce or preserves
+60737,piece,an artistic or literary composition; "he wrote an interesting piece on Iran"; "the children acted out a comic piece to amuse the guests"
+60738,piece,a distance; "it is down the road a piece"
+60739,piece,a separate part of a whole; "an important piece of the evidence"
+60740,piece bit,an instance of some kind; "it was a nice piece of work"; "he had a bit of good luck"
+60741,piece part,an item that is an instance of some type; "he designed a new piece of equipment"; "she bought a lovely piece of china"; "my dog swallowed a Lego part"
+60742,piece slice,a serving that has been cut from a larger portion; "a piece of pie"; "a slice of bread"
+60743,piece_de_resistance,the most important dish of a meal
+60744,piece_of_cloth piece_of_material,a separate part consisting of fabric
+60745,piece_of_eight,an old silver Spanish coin; worth 8 reales
+60746,piece_of_leather,a separate part consisting of leather
+60747,piecework,work paid for according to the quantity produced
+60748,pied-a-terre,lodging for occasional or secondary use; "they bought a pied-a-terre in London"
+60749,pied-billed_grebe Podilymbus_podiceps,American grebe having a black-banded whitish bill
+60750,pied_lemming,North American lemming having a white winter coat and some claws much enlarged
+60751,pied_piper,a leader who entices people to follow (especially to their doom)
+60752,piedmont,a gentle slope leading from the base of a mountain to a region of flat land
+60753,pieplant rhubarb,long pinkish sour leafstalks usually eaten cooked and sweetened
+60754,pier,(architecture) a vertical supporting structure (as a portion of wall between two doors or windows)
+60755,pier,a support for two adjacent bridge spans
+60756,pier wharf wharfage dock,a platform built out from the shore into the water and supported by piles; provides access to ships and boats
+60757,pier_arch,an arch supported on piers
+60758,pier_glass pier_mirror,a large mirror between two windows
+60759,pier_table,a low table set below a pier glass
+60760,pierid pierid_butterfly,any of numerous pale-colored butterflies having three pairs of well-developed legs
+60761,pieta,a representation of the Virgin Mary mourning over the dead body of Jesus
+60762,piety piousness,righteousness by virtue of being pious
+60763,piezoelectric_crystal,a crystal that can be used as a transducer
+60764,piezoelectricity piezoelectric_effect piezo_effect,electricity produced by mechanical pressure on certain crystals (notably quartz or Rochelle salt); alternatively, electrostatic stress produces a change in the linear dimensions of the crystal
+60765,piezometer,a measuring instrument for measuring high pressures
+60766,pig,a crude block of metal (lead or iron) poured from a smelting furnace
+60767,pig's_ears Cantharellus_clavatus,an edible agaric with a brown fruiting body that is often compound
+60768,pig_bed pig,mold consisting of a bed of sand in which pig iron is cast
+60769,pig_iron,crude iron tapped from a blast furnace
+60770,pig_lead,lead that is cast in pigs
+60771,pigeon,wild and domesticated birds having a heavy body and short legs
+60772,pigeon_breast chicken_breast,abnormal protrusion of the breastbone caused by rickets
+60773,pigeon_droppings,droppings of pigeons
+60774,pigeon_guillemot Cepphus_columba,northern Pacific guillemot
+60775,pigeon_hawk merlin Falco_columbarius,small falcon of Europe and America having dark plumage with black-barred tail; used in falconry
+60776,pigeon_pea pigeon-pea_plant cajan_pea catjang_pea red_gram dhal dahl Cajanus_cajan,tropical woody herb with showy yellow flowers and flat pods; much cultivated in the tropics
+60777,pigeon_toes,disability in which the toes are turned inward; often associated with knock-knee
+60778,pigeonhole,a specific (often simplistic) category
+60779,pigfish giant_pigfish Achoerodus_gouldii,found around the Great Barrier Reef
+60780,pigfish hogfish Orthopristis_chrysopterus,found from Long Island southward
+60781,piggery pig_farm,a farm where pigs are raised or kept
+60782,piggy_bank penny_bank,a child's coin bank (often shaped like a pig)
+60783,piggyback,the act of carrying something piggyback
+60784,piglet piggy shoat shote,a young pig
+60785,pigment,any substance whose presence in plant or animal tissues produces a characteristic color
+60786,pigment,dry coloring material (especially a powder to be mixed with a liquid to produce paint, etc.)
+60787,pigmentation,the deposition of pigment in animals or plants or human beings
+60788,pigmentation,coloration of living tissues by pigment
+60789,pigmy_talinum Talinum_brevifolium,low plant with crowded narrow succulent leaves and fairly large deep pink axillary flowers that seem to sit on the ground; southwestern United States
+60790,pignut pignut_hickory brown_hickory black_hickory Carya_glabra,an American hickory tree having bitter nuts
+60791,pigs'_feet pigs'_knuckles,feet or knuckles of hogs used as food; pickled or stewed or jellied
+60792,pigs_in_blankets,small frankfurters wrapped in biscuit dough and baked
+60793,pigskin,leather from the skin of swine
+60794,pigsticking,the sport of hunting wild boar with spears
+60795,pigtail,a plait of braided hair
+60796,pigweed Amaranthus_hypochondriacus,leaves sometimes used as potherbs; seeds used as cereal; southern United States to Central America; India and China
+60797,pika mouse_hare rock_rabbit coney cony,small short-eared burrowing mammal of rocky uplands of Asia and western North America
+60798,pike,highly valued northern freshwater fish with lean flesh
+60799,pike,a sharp point (as on the end of a spear)
+60800,pike,medieval weapon consisting of a spearhead attached to a long pole or pikestaff; superseded by the bayonet
+60801,pike,any of several elongate long-snouted freshwater game and food fishes widely distributed in cooler parts of the northern hemisphere
+60802,pike-perch pike_perch,any of several pike-like fishes of the perch family
+60803,pikeblenny,tropical American fishes; males are aggressively defensive of their territory
+60804,piked_reverse_hang,a reverse hang performed on the rings
+60805,pikestaff,the staff of a pike
+60806,pilaf pilaff pilau pilaw,rice cooked in well-seasoned broth with onions or celery and usually poultry or game or shellfish and sometimes tomatoes
+60807,pilaster,a rectangular column that usually projects about a third of its width from the wall to which it is attached
+60808,pilchard sardine Sardina_pilchardus,small fishes found in great schools along coasts of Europe; smaller and rounder than herring
+60809,pile bundle big_bucks megabucks big_money,a large sum of money (especially as pay or profit); "she made a bundle selling real estate"; "they sank megabucks into their new house"
+60810,pile heap mound agglomerate cumulation cumulus,a collection of objects laid on top of each other
+60811,pile nap,the yarn (as in a rug or velvet or corduroy) that stands up from the weave; "for uniform color and texture tailors cut velvet with the pile running the same direction"
+60812,pile spile piling stilt,a column of wood or steel or concrete that is driven into the ground to provide support for a structure
+60813,pile_driver,a machine that drives piling into the ground
+60814,pileup,multiple collisions of vehicles
+60815,pilferage,the act of stealing small amounts or small articles
+60816,pilgrim,someone who journeys to a sacred place as an act of religious devotion
+60817,pilgrim,someone who journeys in foreign lands
+60818,pilgrimage pilgrim's_journey,a journey to a sacred place
+60819,pill,a unpleasant or tiresome person
+60820,pill,something unpleasant or offensive that must be tolerated or endured; "his competitor's success was a bitter pill to take"
+60821,pill,something that resembles a tablet of medicine in shape or size
+60822,pill birth_control_pill contraceptive_pill oral_contraceptive_pill oral_contraceptive anovulatory_drug anovulant,a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception
+60823,pill lozenge tablet tab,a dose of medicine in the form of a small pellet
+60824,pill_bottle,a small bottle for holding pills
+60825,pill_bug,small terrestrial isopod with a convex segmented body that can roll up into a ball
+60826,pill_head,a consumer of amphetamine pills
+60827,pillar,a fundamental principle or practice; "science eroded the pillars of superstition"
+60828,pillar mainstay,a prominent supporter; "he is a pillar of the community"
+60829,pillar_box,a red pillar-shaped letter box
+60830,pillar_of_Islam,(Islam) one of the five religious obligations accepted by all Muslims
+60831,pillbox,a small case for holding pills
+60832,pillbox,a small enclosed gun emplacement (usually of fortified concrete)
+60833,pillbox toque turban,a small round woman's hat
+60834,pillion,a seat behind the rider of a horse or motorbike etc.
+60835,pillory,a wooden instrument of punishment on a post with holes for the wrists and neck; offenders were locked in and so exposed to public scorn
+60836,pillow,a cushion to support the head of a sleeping person
+60837,pillow_block,a cast-iron or steel block for supporting a journal or bearing
+60838,pillow_fight,a child's game of fighting with pillows
+60839,pillow_lace bobbin_lace,a handmade lace worked on a pillow with threads wound on bobbins; the pattern is marked out on the pillow by pins
+60840,pillow_lava,lava that hardened in rounded shapes suggestive of pillows; believed to result from underwater eruptions
+60841,pillow_sham,bed linen consisting of a decorative cover for a pillow
+60842,pillow_talk,intimate conversation between lovers (typically occurring in bed)
+60843,pillwort Pilularia_globulifera,European water fern found around margins of bodies of water or in wet acid soil having small globose sporocarps
+60844,pilocarpine,cholinergic alkaloid used in eyedrops to treat glaucoma
+60845,pilomotor_reflex gooseflesh goose_bump goosebump goose_pimple goose_skin horripilation,reflex erection of hairs of the skin in response to cold or emotional stress or skin irritation
+60846,pilot,a person qualified to guide ships through difficult waters going into or out of a harbor
+60847,pilot airplane_pilot,someone who is licensed to operate an aircraft in flight
+60848,pilot_balloon,meteorological balloon used to observe air currents
+60849,pilot_bit,a small bit that drills a first hole to guide a larger drill
+60850,pilot_boat,a boat to carry pilots to and from large ships
+60851,pilot_burner pilot_light pilot,small auxiliary gas burner that provides a flame to ignite a larger gas burner
+60852,pilot_cloth,a thick blue cloth used to make overcoats and coats for sailors etc
+60853,pilot_engine,a locomotive that precedes a train to check the track
+60854,pilot_experiment,a preliminary experiment whose outcome can lead to a more extensive experiment
+60855,pilot_light pilot_lamp indicator_lamp,indicator consisting of a light to indicate whether power is on or a motor is in operation
+60856,pilot_program pilot_film pilot,a program exemplifying a contemplated series; intended to attract sponsors
+60857,pilot_project pilot_program,activity planned as a test or trial; "they funded a pilot project in six states"
+60858,pilot_whale black_whale common_blackfish blackfish Globicephala_melaena,small dark-colored whale of the Atlantic coast of the United States; the largest male acts as pilot or leader for the school
+60859,pilotfish Naucrates_ductor,small pelagic fish often accompanying sharks or mantas
+60860,pilothouse wheelhouse,an enclosed compartment from which a vessel can be navigated
+60861,piloting pilotage,the occupation of a pilot
+60862,pilus,hairlike structure especially on the surface of a cell or microorganism
+60863,pimento pimiento,fully ripened sweet red pepper; usually cooked
+60864,pimento_butter,butter blended with mashed pimento
+60865,pimozide,the most commonly used diphenylbutyl piperidine
+60866,pimp procurer panderer pander pandar fancy_man ponce,someone who procures customers for whores (in England they call a pimp a ponce)
+60867,pimpernel,any of several plants of the genus Anagallis
+60868,pimple hickey zit,a small inflamed elevation of the skin; a pustule or papule; common symptom in acne
+60869,pin,a piece of jewelry that is pinned onto the wearer's garment
+60870,pin,a small slender (often pointed) piece of wood or metal used to support or fasten or attach things
+60871,pin flag,flagpole used to mark the position of the hole on a golf green
+60872,pin peg stick,informal terms for the leg; "fever left him weak on his sticks"
+60873,pin pin_tumbler,cylindrical tumblers consisting of two parts that are held in place by springs; when they are aligned with a key the bolt can be thrown
+60874,pin-tailed_sandgrouse pin-tailed_grouse Pterocles_alchata,sandgrouse of Europe and Africa having elongated middle tail feathers
+60875,pin_bone,part of the sirloin between the flat bone and the porterhouse
+60876,pin_cherry Prunus_pensylvanica,small shrubby North American wild cherry with small bright red acid fruit
+60877,pin_curl,a curl of hair made by dampening a strand of hair and curling it and holding the curl with a clip or bobby pin
+60878,pin_oak swamp_oak Quercus_palustris,fast-growing medium to large pyramidal deciduous tree of northeastern United States and southeastern Canada having deeply pinnatifid leaves that turn bright red in autumn; thrives in damp soil
+60879,pin_wrench,a wrench that has a projecting pin that fits into a socket on the object to be turned
+60880,pina_cloth,a fine cloth made from pineapple fibers
+60881,pina_colada,a mixed drink made of pineapple juice and coconut cream and rum
+60882,pinata,plaything consisting of a container filled with toys and candy; suspended from a height for blindfolded children to break with sticks
+60883,pinball pinball_game,a game played on a sloping board; the object is to propel marbles against pins or into pockets
+60884,pinball_machine pin_table,game equipment on which pinball is played; "in Britain they call a pinball machine a pin table"
+60885,pince-nez,spectacles clipped to the nose by a spring
+60886,pincer pair_of_pincers tweezer pair_of_tweezers,a hand tool for holding consisting of a compound lever for grasping
+60887,pinch,a painful or straitened circumstance; "the pinch of the recession"
+60888,pinch,an injury resulting from getting some body part squeezed
+60889,pinch tweak,a squeeze with the fingers
+60890,pinch_bar,a lever with a pointed projection that serves as a fulcrum; used to roll heavy wheels
+60891,pinch_hitter,(baseball) a substitute for the regular batter
+60892,pinchbeck,an alloy of copper and zinc that is used in cheap jewelry to imitate gold
+60893,pinche Leontocebus_oedipus,South American tamarin with a tufted head
+60894,pinchgut,a niggardly person who starves himself (and others)
+60895,pincurl_clip,a variety of clip for holding pin curls
+60896,pincushion,a small stiff cushion into which pins are stuck ready for use
+60897,pindolol Visken,an oral beta blocker (trade name Visken) used in treating hypertension
+60898,pine,straight-grained durable and often resinous white to yellowish timber of any of numerous trees of the genus Pinus
+60899,pine pine_tree true_pine,a coniferous tree
+60900,pine-barren_sandwort longroot Arenaria_caroliniana,deep-rooted perennial of southeastern United States
+60901,pine-tar_rag,baseball equipment consisting of a rag soaked with pine tar; used on the handle of a baseball bat to give a batter a firm grip
+60902,pine_fern Anemia_adiantifolia,fern of Florida and West Indies and Central America with rhizome densely clad in grown hairs
+60903,pine_grosbeak Pinicola_enucleator,large grosbeak of coniferous forests of Old and New Worlds
+60904,pine_hyacinth Clematis_baldwinii Viorna_baldwinii,erect clematis of Florida having pink to purple flowers
+60905,pine_knot,a joint of pine wood used for fuel
+60906,pine_leaf_aphid Pineus_pinifoliae,a variety of adelgid
+60907,pine_marten Martes_martes,dark brown marten of northern Eurasian coniferous forests
+60908,pine_nut pignolia pinon_nut,edible seed of any of several nut pines especially some pinons of southwestern North America
+60909,pine_sawyer,large beetle whose larvae bore holes in pine trees
+60910,pine_siskin pine_finch Spinus_pinus,small finch of North American coniferous forests
+60911,pine_snake,any of several bull snakes of eastern and southeastern United States found chiefly in pine woods; now threatened
+60912,pine_spittlebug,North American insect that attacks pines
+60913,pine_tar,a dark viscous substance obtained from the destructive distillation of pine wood
+60914,pine_vole pine_mouse Pitymys_pinetorum,short-tailed glossy-furred burrowing vole of the eastern United States
+60915,pineal_gland pineal_body epiphysis_cerebri epiphysis,a small endocrine gland in the brain; situated beneath the back part of the corpus callosum; secretes melatonin
+60916,pinealoma,tumor of the pineal gland
+60917,pineapple ananas,large sweet fleshy tropical fruit with a terminal tuft of stiff leaves; widely cultivated
+60918,pineapple pineapple_plant Ananas_comosus,a tropical American plant bearing a large fleshy edible fruit with a terminal tuft of stiff leaves; widely cultivated in the tropics
+60919,pineapple_juice,the juice of pineapples (usually bottled or canned)
+60920,pineapple_weed rayless_chamomile Matricaria_matricarioides,annual aromatic weed of Pacific coastal areas (United States and northeastern Asia) having bristle-pointed leaves and rayless yellow flowers
+60921,pinecone,the seed-producing cone of a pine tree
+60922,pinesap false_beachdrops Monotropa_hypopithys,fleshy tawny or reddish saprophytic herb resembling the Indian pipe and growing in woodland humus of eastern North America; in some classifications placed in a separate genus Hypopitys
+60923,pinetum,an area planted with pine trees or related conifers
+60924,pinfish sailor's-choice squirrelfish Lagodon_rhomboides,similar to sea bream; small spiny-finned fish found in bays along the southeastern coast of the United States
+60925,pinfold,a pen where stray animals are confined
+60926,ping,a sharp high-pitched resonant sound (as of a sonar echo or a bullet striking metal)
+60927,ping-pong_ball,light hollow ball used in playing table tennis
+60928,pinger,a pulse generator used for echo sounding in sonar
+60929,pinguecula,a slightly elevated elastic tissue deposit in the conjunctiva that may extend to the cornea but does not cover it
+60930,pinhead,the head of a pin
+60931,pinhole,a small puncture that might have been made by a pin
+60932,pining,a feeling of deep longing
+60933,pinion,a gear with a small number of teeth designed to mesh with a larger wheel or rack
+60934,pinite,grey or green or brown mineral similar to mica and containing aluminum and potassium sulphates
+60935,pink,a light shade of red
+60936,pink garden_pink,any of various flowers of plants of the genus Dianthus cultivated for their fragrant flowers
+60937,pink-and-white_everlasting pink_paper_daisy Acroclinium_roseum,flower of southwestern Australia having bright pink daisylike papery flowers; grown for drying
+60938,pink_bollworm Gelechia_gossypiella,larvae of a gelechiid moth introduced from Asia; feeds on the seeds of cotton bolls
+60939,pink_calla Zantedeschia_rehmanii,calla having a rose-colored spathe
+60940,pink_cockatoo Kakatoe_leadbeateri,white Australian cockatoo with roseate tinged plumage
+60941,pink_disease,serious bark disease of many tropical crop trees (coffee, citrus, rubber); branches have a covering of pink hyphae
+60942,pink_disease_fungus Corticium_salmonicolor,fungus causing pink disease in citrus and coffee and rubber trees etc
+60943,pink_elephants,any visual hallucination arising from heavy drinking
+60944,pink_fivecorner Styphelia_triflora,heathlike shrub of southwestern Australia grown for its sharply scented foliage and pink flowers followed by pentagonal fruit
+60945,pink_lady,a cocktail made of gin and brandy with lemon juice and grenadine shaken with an egg white and ice
+60946,pink_shower pink_shower_tree horse_cassia Cassia_grandis,tropical American semi-evergreen tree having erect racemes of pink or rose-colored flowers; used as an ornamental
+60947,pinkness,the quality of being pink
+60948,pinko pink,a person with mildly leftist political views
+60949,pinkroot,a fungal disease of onions
+60950,pinna pinnule,division of a usually pinnately divided leaf
+60951,pinnacle,a lofty peak
+60952,pinnacle,(architecture) a slender upright spire at the top of a buttress of tower
+60953,pinnate_leaf,a leaf resembling a feather; having the leaflets on each side of a common axis
+60954,pinner,a woman's cap with two long flaps pinned on
+60955,pinning,a mutual promise of a couple not to date anyone else; on college campuses it was once signaled by the giving of a fraternity pin
+60956,pinniped_mammal pinniped pinnatiped,aquatic carnivorous mammal having a streamlined body specialized for swimming with limbs modified as flippers
+60957,pinochle pinocle penuchle bezique,a card game played with a pack of forty-eight cards (two of each suit for high cards); play resembles whist
+60958,pinocytosis,process by which certain cells can engulf and incorporate droplets of fluid
+60959,pinole,meal made of finely ground corn mixed with sugar and spices
+60960,pinon pinyon,any of several low-growing pines of western North America
+60961,pinon_pine Mexican_nut_pine Pinus_cembroides,a small two-needled or three-needled pinon of Mexico and southern Texas
+60962,pinpoint,a very brief moment; "they were strangers sharing a pinpoint of time together"
+60963,pinpoint,the sharp point of a pin
+60964,pinprick,a minor annoyance
+60965,pinprick,small puncture (as if made by a pin)
+60966,pins_and_needles,a sharp tingling sensation from lack of circulation
+60967,pinscher,any of three breeds of dogs whose ears and tail are usually cropped
+60968,pinstripe,a suit made from a fabric with very thin stripes
+60969,pinstripe,a fabric with very thin stripes
+60970,pinstripe,a very thin stripe (especially a white stripe on a dark fabric)
+60971,pint,a British imperial capacity measure (liquid or dry) equal to 4 gills or 568.26 cubic centimeters
+60972,pint,a United States liquid unit equal to 16 fluid ounces; two pints equal one quart
+60973,pint dry_pint,a United States dry unit equal to 0.5 quart or 33.6 cubic inches
+60974,pintail pin-tailed_duck Anas_acuta,long-necked river duck of the Old and New Worlds having elongated central tail feathers
+60975,pintle,a pin or bolt forming the pivot of a hinge
+60976,pinto,a spotted or calico horse or pony
+60977,pinto_bean,mottled or spotted bean of southwestern United States; usually dried
+60978,pinwheel,a wheel that has numerous pins that are set at right angles to its rim; "he spun the pinwheel and it stopped with the pointer on `Go'"
+60979,pinwheel Aeonium_haworthii,perennial subshrub of Tenerife having leaves in rosettes resembling pinwheels
+60980,pinwheel pinwheel_wind_collector,a toy consisting of vanes of colored paper or plastic that is pinned to a stick and spins when it is pointed into the wind
+60981,pinwheel_roll,pinwheel-shaped rolls spread with cinnamon and sugar and filled with e.g. jam before baking
+60982,pinworm threadworm Enterobius_vermicularis,small threadlike worm infesting human intestines and rectum especially in children
+60983,pion pi-meson,a meson involved in holding the nucleus together; produced as the result of high-energy particle collision
+60984,pioneer,one of the first colonists or settlers in a new territory; "they went west as pioneers with only the possessions they could carry with them"
+60985,pioneer innovator trailblazer groundbreaker,someone who helps to open up a new line of research or technology or art
+60986,pip,a disease of poultry
+60987,pip,a minor nonspecific ailment
+60988,pip,a small hard seed found in some fruits
+60989,pip-squeak squirt small_fry,someone who is small and insignificant
+60990,pipage,a fee charged for the use of pipes
+60991,pipal pipal_tree pipul peepul sacred_fig bo_tree Ficus_religiosa,fig tree of India noted for great size and longevity; lacks the prop roots of the banyan; regarded as sacred by Buddhists
+60992,pipe,a tubular wind instrument
+60993,pipe pipage piping,a long tube made of metal or plastic that is used to carry water or oil or gas etc.
+60994,pipe tobacco_pipe,a tube with a small bowl at one end; used for smoking tobacco
+60995,pipe tube,a hollow cylindrical shape
+60996,pipe_bomb,a small homemade bomb usually contained in a metal pipe
+60997,pipe_cleaner,cleaning implement consisting of a flexible tufted wire that is used to clean a pipe stem
+60998,pipe_cutter,a hand tool for cutting pipe
+60999,pipe_dream dream,a fantastic but vain hope (from fantasies induced by the opium pipe); "I have this pipe dream about being emperor of the universe"
+61000,pipe_major,the chief piper in a band of bagpipes
+61001,pipe_rack,a rack for holding a smoker's pipes
+61002,pipe_smoker,a smoker who uses a pipe
+61003,pipe_vise pipe_clamp,a clamp for holding pipe that is to be cut or threaded
+61004,pipe_wrench tube_wrench,adjustable wrench for gripping and turning a pipe; has two serrated jaws that are adjusted to grip the pipe
+61005,pipeclay terra_alba,fine white clay used in making tobacco pipes and pottery and in whitening leather
+61006,pipefish needlefish,fish with long tubular snout and slim body covered with bony plates
+61007,pipefitting pipe_fitting,fitting consisting of threaded pieces of pipe for joining pipes together
+61008,pipeful,the quantity of tobacco that can be smoked in a pipe at one time
+61009,pipeline line,a pipe used to transport liquids or gases; "a pipeline runs from the wells to the seaport"
+61010,pipeline_company,a company that operates oil pipelines for the oil industry
+61011,piper bagpiper,someone who plays the bagpipe
+61012,piperacillin Pipracil,a synthetic type of penicillin antibiotic (trade name Pipracil) used for moderate to severe infections
+61013,piperazine,vermifuge used to treat infestations by roundworms or pinworms
+61014,piperin piperine,derived from pepper (especially black pepper); source of the hotness of black and white pepper
+61015,piperocaine piperocaine_hydrochloride Metycaine,a compound used in the form of its hydrochloride as a local or spinal anesthetic
+61016,pipestem_clematis Clematis_lasiantha,clematis of California
+61017,pipet pipette,measuring instrument consisting of a graduated glass tube used to measure or transfer precise volumes of a liquid by drawing the liquid up into the tube
+61018,pipewort Eriocaulon_aquaticum,aquatic perennial of North America and Ireland and Hebrides having translucent green leaves in a basal spiral and dense buttonlike racemes of minute white flowers
+61019,piping,a thin strip of covered cord used to edge hems
+61020,piping,playing a pipe or the bagpipes
+61021,piping_crow piping_crow-shrike Gymnorhina_tibicen,crow-sized black-and-white bird; a good mimic often caged
+61022,piping_guan,a kind of guan
+61023,piping_plover Charadrius_melodus,small plover of eastern North America
+61024,pipistrelle pipistrel Pipistrellus_pipistrellus,small European brown bat
+61025,pipit titlark lark,a songbird that lives mainly on the ground in open country; has streaky brown plumage
+61026,pipsissewa prince's_pine,any of several plants of the genus Chimaphila
+61027,piquancy piquance piquantness,the quality of being agreeably stimulating or mentally exciting
+61028,pique,tightly woven fabric with raised cords
+61029,pique temper irritation,a sudden outburst of anger; "his temper sparked like damp firewood"
+61030,piquet,a card game for two players using a reduced pack of 32 cards
+61031,piracy buccaneering,hijacking on the high seas or in similar contexts; taking a ship or plane away from the control of those who are legally entitled to it; "air piracy"
+61032,piranha pirana caribe,small voraciously carnivorous freshwater fishes of South America that attack and destroy living animals
+61033,pirate buccaneer sea_robber sea_rover,someone who robs at sea or plunders the land from the sea without having a commission from any sovereign nation
+61034,pirate pirate_ship,a ship that is manned by pirates
+61035,pirogi piroshki pirozhki,small fruit or meat turnover baked or fried
+61036,piroplasm,minute parasite of red blood cells of mammals transmitted by a tick and causing diseases of domestic animals
+61037,pirouette,(ballet) a rapid spin of the body (especially on the toes as in ballet)
+61038,piroxicam Feldene,a nonsteroidal anti-inflammatory drug (trade name Feldene) used to treat arthritis and other inflammatory conditions
+61039,pis_aller last_resort,an expedient adopted only in desperation; "`pis aller' is French for `worst going'"
+61040,pisang_wax,a wax obtained from the leaves of a plantain
+61041,pisanosaur pisanosaurus,primitive dinosaur found in Argentina
+61042,pisha_paysha,(Yiddish) a card game for two players one of whom is usually a child; the deck is place face down with one card face upward; players draw from the deck alternately hoping to build up or down from the open card; the player with the fewest cards when the deck is exhausted is the winner
+61043,pisiform pisiform_bone os_pisiforme,a small wrist bone that articulates only with the triquetral
+61044,piss-up,vulgar expression for a bout of heavy drinking
+61045,pisser,a very disagreeable difficulty
+61046,pisser urinator,a person who urinates
+61047,pistachio Pistacia_vera pistachio_tree,small tree of southern Europe and Asia Minor bearing small hard-shelled nuts
+61048,pistachio pistachio_nut,nut of Mediterranean trees having an edible green kernel
+61049,piste,a flat rectangular area for fencing bouts
+61050,piste,a ski run densely packed with snow
+61051,pistia water_lettuce water_cabbage Pistia_stratiotes Pistia_stratoites,pantropical floating plant forming a rosette of wedge-shaped leaves; a widespread weed in rivers and lakes
+61052,pistil,the female ovule-bearing part of a flower composed of ovary and style and stigma
+61053,pistillode,a sterile vestigial pistil remaining in a staminate flower
+61054,pistol handgun side_arm shooting_iron,a firearm that is held and fired with one hand
+61055,pistol_grip,a handle (as of a gun or saw) shaped like the butt of a pistol
+61056,pistoleer,someone armed with a pistol (especially a soldier so armed)
+61057,piston plunger,mechanical device that has a plunging or thrusting motion
+61058,piston_ring,seal consisting of a split metal ring that seals the gap between a piston and the cylinder wall
+61059,piston_rod,connecting rod that moves or is moved by a piston
+61060,pit,an enclosure in which animals are made to fight
+61061,pit,(commodity exchange) the part of the floor of a commodity exchange where trading in a particular commodity is carried on
+61062,pit,(auto racing) an area at the side of a racetrack where the race cars are serviced and refueled
+61063,pit cavity,a sizeable hole (usually in the ground); "they dug a pit to bury the body"
+61064,pit fossa,a concavity in a surface (especially an anatomical depression)
+61065,pit pitfall,a trap in the form of a concealed hole
+61066,pit quarry stone_pit,a surface excavation for extracting stone or slate; "a British term for `quarry' is `stone pit'"
+61067,pit_of_the_stomach epigastric_fossa,a slight depression in the midline just below the sternum (where a blow can affect the solar plexus)
+61068,pit_stop,a stop during an automobile trip for rest and refreshment
+61069,pit_stop,a brief stop at a pit during an automobile race to take on fuel or service the car
+61070,pit_viper,New World vipers with hollow fangs and a heat-sensitive pit on each side of the head
+61071,pita pocket_bread,usually small round bread that can open into a pocket for filling
+61072,pitahaya,highly colored edible fruit of pitahaya cactus having bright red juice; often as large as a peach
+61073,pitahaya_cactus pitahaya Acanthocereus_tetragonus Acanthocereus_pentagonus,cactus of the southwestern United States and northern Mexico having edible juicy fruit
+61074,pitch,a vendor's position (especially on the sidewalk); "he was employed to see that his paper's news pitches were not trespassed upon by rival vendors"
+61075,pitch,the property of sound that varies with variation in the frequency of vibration
+61076,pitch,the action or manner of throwing something; "his pitch fell short and his hat landed on the floor"
+61077,pitch auction_pitch,an all-fours game in which the first card led is a trump
+61078,pitch delivery,(baseball) the act of throwing a baseball by a pitcher to a batter
+61079,pitch pitch_shot,a high approach shot in golf
+61080,pitch rake slant,degree of deviation from a horizontal plane; "the roof had a steep pitch"
+61081,pitch soccer_field,a sports field with predetermined dimensions for playing soccer
+61082,pitch tar,any of various dark heavy viscid substances obtained as a residue
+61083,pitch_apple strangler_fig Clusia_rosea Clusia_major,a common tropical American clusia having solitary white or rose flowers
+61084,pitch_pine northern_pitch_pine Pinus_rigida,large three-needled pine of the eastern United States and southeastern Canada; closely related to the pond pine
+61085,pitch_pipe,a small pipe sounding a tone of standard frequency; used to establish the starting pitch for unaccompanied singing
+61086,pitched_battle,a fierce battle fought in close combat between troops in predetermined positions at a chosen time and place
+61087,pitcher,(botany) a leaf that that is modified in such a way as to resemble a pitcher or ewer
+61088,pitcher ewer,an open vessel with a handle and a spout for pouring
+61089,pitcher hurler twirler,(baseball) the person who does the pitching; "our pitcher has a sore arm"
+61090,pitcher mound,the position on a baseball team of the player who throws the ball for a batter to try to hit; "he has played every position except pitcher"; "they have a southpaw on the mound"
+61091,pitcher pitcherful,the quantity contained in a pitcher
+61092,pitcher_plant,any of several insectivorous herbs of the order Sarraceniales
+61093,pitcher_sage Lepechinia_calycina Sphacele_calycina,California plant with woolly stems and leaves and large white flowers
+61094,pitcher_sage Salvia_spathacea,California erect and sparsely branched perennial
+61095,pitchfork,a long-handled hand tool with sharp widely spaced prongs for lifting and pitching hay
+61096,pitching,(baseball) playing the position of pitcher on a baseball team
+61097,pitching_change,replacing a pitcher in baseball
+61098,pitching_coach,an assistant baseball coach in charge of pitchers
+61099,pitching_wedge,a wedge used to loft the golf ball over obstacles
+61100,pitchman,an aggressive salesman who uses a fast line of talk to sell something
+61101,pitchstone,dark acid granitic glass
+61102,pitfall booby_trap,an unforeseen or unexpected or surprising difficulty
+61103,pith,soft spongelike central cylinder of the stems of most flowering plants
+61104,pith_hat pith_helmet sun_helmet topee topi,a lightweight hat worn in tropical countries for protection from the sun
+61105,pithead,the entrance to a coal mine
+61106,pitilessness ruthlessness,mercilessness characterized by a lack of pity
+61107,piton,a metal spike with a hole for a rope; mountaineers drive it into ice or rock to use as a hold
+61108,pitprop sprag,a wooden prop used to support the roof of a mine
+61109,pitsaw,a large two-handed saw formerly used to cut logs into planks; one man stood above the log and the other in a pit below
+61110,pitta,any bird of the genus Pitta; brilliantly colored chiefly terrestrial birds with short wings and tail and stout bills
+61111,pittance,an inadequate payment; "they work all day for a mere pittance"
+61112,pitter-patter,a series of rapid tapping sounds; "she missed the pitter-patter of little feet around the house"
+61113,pitting roughness indentation,the formation of small pits in a surface as a consequence of corrosion
+61114,pituitary pituitary_gland pituitary_body hypophysis,the master gland of the endocrine system; located at the base of the brain
+61115,pituitary_dwarf hypophysial_dwarf Levi-Lorrain_dwarf,a dwarf whose condition is caused by a deficiency of growth hormones, rather than by genetic factors (as in the case of the achondroplastic dwarf)
+61116,pity shame,an unfortunate development; "it's a pity he couldn't do it"
+61117,pityriasis,any of several skin disorders characterized by shedding dry flakes of skin
+61118,pityriasis_alba,common form of pityriasis (usually in children or young adults) characterized by round patches of depigmentation
+61119,pityriasis_rosea,pityriasis in which an itchy rash develops over the trunk and extremities
+61120,pivot,the act of turning on (or as if on) a pivot; "the golfer went to the driving range to practice his pivot"
+61121,pivot pin,axis consisting of a short shaft that supports something that turns
+61122,pivot pivot_man,the person in a rank around whom the others wheel and maneuver
+61123,pivot_joint rotary_joint rotatory_joint articulatio_trochoidea,a freely moving joint in which movement is limited to rotation; "the articulation of the radius and ulna in the arm is a pivot joint"
+61124,pivot_shot,a one-handed basketball shot made while whirling on the pivot foot
+61125,pivoting_window,a window that opens by pivoting either horizontally or vertically
+61126,pixel pel picture_element,(computer science) the smallest discrete component of an image or picture on a CRT screen (usually a colored dot); "the greater the number of pixels per inch the greater the resolution"
+61127,pizza pizza_pie,Italian open pie made of thin bread dough spread with a spiced mixture of e.g. tomato sauce and cheese
+61128,pizzeria pizza_shop pizza_parlor,a shop where pizzas are made and sold
+61129,pizzicato,a note or passage that is played pizzicato
+61130,placation conciliation propitiation,the act of placating and overcoming distrust and animosity
+61131,place,proper or appropriate position or location; "a woman's place is no longer in the kitchen"
+61132,place,a general vicinity; "He comes from a place near Chicago"
+61133,place,the passage that is being read; "he lost his place on the page"
+61134,place,an abstract mental location; "he has a special place in my thoughts"; "a place in my heart"; "a political system with no place for the less prominent groups"
+61135,place position,an item on a list or in a sequence; "in the second place"; "moved from third to fifth position"
+61136,place property,any area set aside for a particular purpose; "who owns this place?"; "the president was concerned about the property across from the White House"
+61137,place shoes,a particular situation; "If you were in my place what would you do?"
+61138,place station,proper or designated social situation; "he overstepped his place"; "the responsibilities of a man in his station"; "married above her station"
+61139,place-kicker placekicker,(football) a kicker who makes a place kick for a goal
+61140,place_bet,a bet that a horse will finish a race no worse than second
+61141,place_kick place-kicking,(sports) a kick in which the ball is placed on the ground before kicking
+61142,place_mat,a mat serving as table linen for an individual place setting
+61143,place_name toponym,the name by which a geographical place is known
+61144,place_of_business business_establishment,an establishment (a factory or an assembly plant or retail store or warehouse etc.) where business is conducted, goods are made or stored or processed or where services are rendered
+61145,place_of_worship house_of_prayer house_of_God house_of_worship,any building where congregations gather for prayer
+61146,place_setting setting,a table service for one person; "a place setting of sterling flatware"
+61147,placebo,an innocuous or inert medication; given as a pacifier or to the control group in experiments on the efficacy of a drug
+61148,placebo,(Roman Catholic Church) vespers of the office for the dead
+61149,placebo_effect,any effect that seems to be a consequence of administering a placebo; the change is usually beneficial and is assumed result from the person's faith in the treatment or preconceptions about what the experimental drug was supposed to do; pharmacologists were the first to talk about placebo effects but now the idea has been generalized to many situations having nothing to do with drugs
+61150,placeholder,a symbol in a logical or mathematical expression that can be replaced by the name of any member of specified set
+61151,placeman placeseeker,a disparaging term for an appointee
+61152,placement,contact established between applicants and prospective employees; "the agency provided placement services"
+61153,placement arrangement,the spatial property of the way in which something is placed; "the arrangement of the furniture"; "the placement of the chairs"
+61154,placement location locating position positioning emplacement,the act of putting something in a certain place
+61155,placement_office placement_center,an office that finds suitable employment for applicants
+61156,placenta,that part of the ovary of a flowering plant where the ovules form
+61157,placenta,the vascular structure in the uterus of most mammals providing oxygen and nutrients for and transferring wastes from the developing fetus
+61158,placenta_previa,pregnancy in which the placenta is implanted in the lower part of the uterus (instead of the upper part); can cause bleeding late in pregnancy; delivery by cesarean section may be necessary
+61159,placental placental_mammal eutherian eutherian_mammal,mammals having a placenta; all mammals except monotremes and marsupials
+61160,placentation,the formation of the placenta in the uterus
+61161,placentation,arrangement of the ovules in the placenta and of the placentas in the ovary
+61162,placer,an alluvial deposit that contains particles of some valuable mineral
+61163,placer_miner,a miner who extracts minerals from a placer by washing or dredging
+61164,placer_mining,mining valuable minerals from a placer by washing or dredging
+61165,placidity placidness,a feeling of calmness; a quiet and undisturbed feeling
+61166,placket,a piece of cloth sewn under an opening
+61167,placoderm,fish-like vertebrate with bony plates on head and upper body; dominant in seas and rivers during the Devonian; considered the earliest vertebrate with jaws
+61168,plagal_cadence amen_cadence,a cadence (frequently ending church music) in which the chord of the subdominant precedes the chord of the tonic
+61169,plage,the beach at a seaside resort
+61170,plagiarism,a piece of writing that has been copied from someone else and is presented as being your own work
+61171,plagiarism plagiarization plagiarisation piracy,the act of plagiarizing; taking someone's words or ideas as if they were your own
+61172,plagiarist plagiarizer plagiariser literary_pirate pirate,someone who uses another person's words or ideas as if they were his own
+61173,plagiocephaly,congenital malformation of the skull in which the main axis of the skull is oblique
+61174,plagioclase oligoclase,any of a series of triclinic feldspars that form rocks
+61175,plague,any large scale calamity (especially when thought to be sent by God)
+61176,plague,an annoyance; "those children are a damn plague"
+61177,plague pestilence pest,any epidemic disease with a high death rate
+61178,plague pestilence pest pestis,a serious (sometimes fatal) infection of rodents caused by Yersinia pestis and accidentally transmitted to humans by the bite of a flea that has bitten an infected animal
+61179,plague_spot,a spot on the skin characteristic of the plague
+61180,plaice,flesh of large European flatfish
+61181,plaice Pleuronectes_platessa,large European food fish
+61182,plain field champaign,extensive tract of level open land; "they emerged from the woods onto a vast open plain"; "he longed for the fields of his youth"
+61183,plain_flour,flour that does not contain a raising agent
+61184,plain_sailing clear_sailing easy_going,easy unobstructed progress; "after we solved that problem the rest was plain sailing"
+61185,plain_turkey Choriotis_australis,popular Australian game bird
+61186,plain_wanderer Pedionomus_torquatus,small Australian bird related to the button quail; classified as wading bird but inhabits plains
+61187,plain_weave taffeta_weave,a basic style of weave in which the weft and warp threads intertwine alternately to produce a checkerboard effect
+61188,plainclothesman,a detective who wears civilian clothes on duty
+61189,plainness,the state of being unmixed with other material; "the plainness of vanilla ice cream"
+61190,plainness,the appearance of being plain and unpretentious
+61191,plains_lemon_monarda Monarda_pectinata,annual of southern United States
+61192,plains_pocket_gopher Geomys_bursarius,gopher of chiefly grasslands of central North America
+61193,plains_pocket_mouse Perognathus_flavescens,small rodent of open areas of United States plains states
+61194,plains_spadefoot Scaphiopus_bombifrons,this spadefoot toad lives in plains and hills and river bottoms in areas of low rainfall east of the Rocky Mountains
+61195,plainsman,an inhabitant of a plains region (especially the Great Plains of North America)
+61196,plainsong plainchant,(Roman Catholic Church) a liturgical chant consisting of a single, unaccompanied melodic line
+61197,plaint,(United Kingdom) a written statement of the grounds of complaint made to court of law asking for the grievance to be redressed
+61198,plaintiff complainant,a person who brings an action in a court of law
+61199,plaintiveness,expressing sorrowfulness
+61200,plaiter,someone who plaits (hair or fabric etc.)
+61201,plan architectural_plan,scale drawing of a structure; "the plans for City Hall were on file"
+61202,plan program programme,a series of steps to be carried out or goals to be accomplished; "they drew up a six-step plan"; "they discussed plans for a new bond issue"
+61203,plan_of_action,a plan for actively doing something
+61204,planarian planaria,free-swimming mostly freshwater flatworms; popular in laboratory studies for the ability to regenerate lost parts
+61205,planation,the process of erosion whereby a level surface is produced
+61206,planchet coin_blank,a flat metal disk ready for stamping as a coin
+61207,planchette,a triangular board supported on casters; when lightly touched with the fingertips it is supposed to spell out supernatural (or unconscious) messages
+61208,plane,a level of existence or development; "he lived on a worldly plane"
+61209,plane carpenter's_plane woodworking_plane,a carpenter's hand tool with an adjustable blade for smoothing or shaping wood; "the cabinetmaker used a plane for the finish work"
+61210,plane planer planing_machine,a power tool for smoothing or shaping wood
+61211,plane sheet,(mathematics) an unbounded two-dimensional shape; "we will refer to the plane of the graph as the X-Y plane"; "any line joining two points on a plane lies wholly on that plane"
+61212,plane_angle,an angle formed by two straight lines (in the same plane)
+61213,plane_figure two-dimensional_figure,a two-dimensional shape
+61214,plane_geometry,the geometry of 2-dimensional figures
+61215,plane_seat,a seat on a commercial airliner
+61216,plane_table,surveying instrument consisting of a drawing board and a ruler that are mounted on a tripod; used to sight and map topographical details
+61217,plane_ticket airplane_ticket,a ticket good for a trip on an airplane
+61218,plane_tree sycamore platan,any of several trees of the genus Platanus having thin pale bark that scales off in small plates and lobed leaves and ball-shaped heads of fruits
+61219,planet,any celestial body (other than comets or satellites) that revolves around a star
+61220,planet major_planet,(astronomy) any of the nine large celestial bodies in the solar system that revolve around the sun and shine by reflected light; Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune, and Pluto in order of their proximity to the sun; viewed from the constellation Hercules, all the planets rotate around the sun in a counterclockwise direction
+61221,planetarium,a building housing an instrument for projecting the positions of the planets onto a domed ceiling
+61222,planetarium,an optical device for projecting images of celestial bodies and other astronomical phenomena onto the inner surface of a hemispherical dome
+61223,planetarium,an apparatus or model for representing the solar systems
+61224,planetary_gear epicyclic_gear planet_wheel planet_gear,an outer gear that revolves about a central sun gear of an epicyclic train
+61225,planetary_nebula,a nebula that was once thought to be a star with its planets but is now thought to be a very hot star surrounded by an expanding envelope of ionized gases that emit a fluorescent glow because of intense radiation from the star
+61226,planetesimal,one of many small solid celestial bodies thought to have existed at an early stage in the development of the solar system
+61227,planetesimal_hypothesis,(cosmology) the theory that the solar system was formed by the gravitational accumulation of planetesimals
+61228,plangency resonance reverberance ringing sonorousness sonority vibrancy,having the character of a loud deep sound; the quality of being resonant
+61229,plank,an endorsed policy in the platform of a political party
+61230,plank-bed,a bed of boards (without a mattress)
+61231,planking,planks collectively; a quantity of planks
+61232,planking,(nautical) a covering or flooring constructed of planks (as on a ship)
+61233,planking,the work of covering an area with planks
+61234,plankton,the aggregate of small plant and animal organisms that float or drift in great numbers in fresh or salt water
+61235,planktonic_algae,unicellular algae
+61236,planned_community,a residential district that is planned for a certain class of residents
+61237,planner,a notebook for recording appointments and things to be done, etc.
+61238,planner contriver deviser,a person who makes plans
+61239,planning,an act of formulating a program for a definite course of action; "the planning was more fun than the trip itself"
+61240,planning,the act or process of drawing up plans or layouts for some project or enterprise
+61241,planning preparation provision,the cognitive process of thinking about what you will do in the event of something happening; "his planning for retirement was hindered by several uncertainties"
+61242,planning_commission,a commission delegated to propose plans for future activities and developments
+61243,planographic_printing planography,the process of printing from a surface on which the printing areas are not raised but are ink-receptive (as opposed to ink repellent)
+61244,plant,an actor situated in the audience whose acting is rehearsed but seems spontaneous to the audience
+61245,plant,something planted secretly for discovery by another; "the police used a plant to trick the thieves"; "he claimed that the evidence against him was a plant"
+61246,plant flora plant_life,(botany) a living organism lacking the power of locomotion
+61247,plant works industrial_plant,buildings for carrying on industrial labor; "they built a large plant to manufacture automobiles"
+61248,plant_cell,a cell that is a structural and functional unit of a plant
+61249,plant_closing,act of shutting down operation of a plant
+61250,plant_department building_department,the division of a business responsible for building and maintaining the physical plant
+61251,plant_disease,a disease that affects plants
+61252,plant_family,a family of plants
+61253,plant_fiber plant_fibre,fiber derived from plants
+61254,plant_genus,a genus of plants
+61255,plant_hopper planthopper,related to the leafhoppers and spittlebugs but rarely damages cultivated plants
+61256,plant_louse louse,any of several small insects especially aphids that feed by sucking the juices from plants
+61257,plant_material plant_substance,material derived from plants
+61258,plant_order,the order of plants
+61259,plant_organ,a functional and structural unit of a plant or fungus
+61260,plant_part plant_structure,any part of a plant or fungus
+61261,plant_process enation,a natural projection or outgrowth from a plant body or organ
+61262,plant_product,a product made from plant material
+61263,plant_tissue,the tissue of a plant
+61264,plant_toxin phytotoxin,any substance produced by plants that is similar in its properties to extracellular bacterial toxin
+61265,plant_virus,a plant pathogen that is a virus consisting of a single strand of RNA
+61266,plantain,any of numerous plants of the genus Plantago; mostly small roadside or dooryard weeds with elliptic leaves and small spikes of very small flowers; seeds of some used medicinally
+61267,plantain,starchy banana-like fruit; eaten (always cooked) as a staple vegetable throughout the tropics
+61268,plantain plantain_tree Musa_paradisiaca,a banana tree bearing hanging clusters of edible angular greenish starchy fruits; tropics and subtropics
+61269,plantain-leaved_pussytoes,a variety of pussytoes
+61270,plantain_lily day_lily,any of numerous perennials having mounds of sumptuous broad ribbed leaves and clusters of white, blue, or lilac flowers; used as ground cover
+61271,plantar_reflex,flexion of the toes when the sole of the foot is stroked firmly on the outer side from the heel to the front in persons over the age of 2 years; under 2 years the results should be extension of the toes (Babinski reflex)
+61272,plantar_wart,a wart occurring on the sole of the foot; "pressure causes plantar warts to develop a painful callus around the soft center"
+61273,plantation,an estate where cash crops are grown on a large scale (especially in tropical areas)
+61274,planter,a worker who puts or sets seeds or seedlings into the ground
+61275,planter,a decorative pot for house plants
+61276,planter plantation_owner,the owner or manager of a plantation
+61277,planter's_punch,a cocktail made of rum and lime or lemon juice with sugar and sometimes bitters
+61278,plantigrade_mammal plantigrade,an animal that walks with the entire sole of the foot touching the ground as e.g. bears and human beings
+61279,planting,a collection of plants (trees or shrubs or flowers) in a particular area; "the landscape architect suggested a small planting in the northwest corner"
+61280,planting,the act of fixing firmly in place; "he ordered the planting of policemen outside every doorway"
+61281,planting,putting seeds or young plants in the ground to grow; "the planting of corn is hard work"
+61282,plantlet,a young plant or a small plant
+61283,plantlike_flagellate,unicellular organisms having many characteristics of typical algae
+61284,planula,the flat ciliated free-swimming larva of hydrozoan coelenterates
+61285,plaque,(pathology) a small abnormal patch on or inside the body
+61286,plasma,a green slightly translucent variety of chalcedony used as a gemstone
+61287,plasma,(physical chemistry) a fourth state of matter distinct from solid or liquid or gas and present in stars and fusion reactors; a gas becomes a plasma when it is heated until the atoms lose all their electrons, leaving a highly electrified collection of nuclei and free electrons; "particles in space exist in the form of a plasma"
+61288,plasma plasm blood_plasma,the colorless watery fluid of the blood and lymph that contains no cells, but in which the blood cells (erythrocytes, leukocytes, and thrombocytes) are suspended
+61289,plasma_cell plasmacyte,a cell that develops from a B lymphocyte in reaction to a specific antigen; found in bone marrow and sometimes in the blood
+61290,plasma_physics,the branch of physics concerned with matter in its plasma phase
+61291,plasma_protein,any of the proteins in blood plasma
+61292,plasma_thromboplastin_antecedent factor_XI,coagulation factor whose deficiency results in a hemorrhagic tendency
+61293,plasmablast,the precursor of a plasma cell
+61294,plasmacytoma,neoplasm of plasma cells (usually in bone marrow)
+61295,plasmapheresis,plasma is separated from whole blood and the rest is returned to the donor
+61296,plasmid plasmid_DNA,a small cellular inclusion consisting of a ring of DNA that is not in a chromosome but is capable of autonomous replication
+61297,plasmin fibrinolysin,an enzyme that dissolves the fibrin of blood clots
+61298,plasminogen,an inactive form of plasmin that occurs in plasma and is converted to plasmin by organic solvents
+61299,plasminogen_activator urokinase,protease produced in the kidney that converts plasminogen to plasmin and so initiates fibrinolysis
+61300,plasmodium,multinucleate sheet of cytoplasm characteristic of some stages of such organisms as slime molds
+61301,plasmodium Plasmodium_vivax malaria_parasite,parasitic protozoan of the genus Plasmodium that causes malaria in humans
+61302,plaster,a mixture of lime or gypsum with sand and water; hardens into a smooth solid; used to cover walls and ceilings
+61303,plaster adhesive_plaster sticking_plaster,adhesive tape used in dressing wounds
+61304,plaster plasterwork,a surface of hardened plaster (as on a wall or ceiling); "there were cracks in the plaster"
+61305,plaster_of_Paris plaster,any of several gypsum cements; a white powder (a form of calcium sulphate) that forms a paste when mixed with water and hardens into a solid; used in making molds and sculptures and casts for broken limbs
+61306,plaster_saint,a person (considered to be) without human failings; "he's no plaster saint"
+61307,plasterboard gypsum_board,wallboard with a gypsum plaster core bonded to layers of paper or fiberboard; used instead of plaster or wallboard to make interior walls
+61308,plasterer,a worker skilled in applying plaster
+61309,plastering daubing,the application of plaster
+61310,plastering_trowel,a trowel used to spread and smooth plaster
+61311,plastic,generic name for certain synthetic or semisynthetic materials that can be molded or extruded into objects or films or filaments or used for making e.g. coatings and adhesives
+61312,plastic_art,the arts of shaping or modeling; carving and sculpture
+61313,plastic_bag,a bag made of thin plastic material
+61314,plastic_bomb,a bomb made of plastic explosive
+61315,plastic_explosive plastique,an explosive material that is easily molded around the object it is intended to destroy
+61316,plastic_laminate,a laminate made by bonding plastic layers
+61317,plastic_surgery reconstructive_surgery anaplasty,surgery concerned with therapeutic or cosmetic reformation of tissue
+61318,plastic_wrap,wrapping consisting of a very thin transparent sheet of plastic
+61319,plasticizer plasticiser,a substance added to plastics or other materials to make them more pliable
+61320,plastics_industry,an industry that manufactures plastic articles
+61321,plastid,any of various small particles in the cytoplasm of the cells of plants and some animals containing pigments or starch or oil or protein
+61322,plastination,a process involving fixation and dehydration and forced impregnation and hardening of biological tissues; water and lipids are replaced by curable polymers (silicone or epoxy or polyester) that are subsequently hardened; "the plastination of specimens is valuable for research and teaching"
+61323,plastron,the ornamental front of a woman's bodice or shirt
+61324,plastron,the front of man's dress shirt
+61325,plastron,a metal breastplate that was worn under a coat of mail
+61326,plastron,a large pad worn by a fencer to protect the chest
+61327,plastron,(zoology) the part of a turtle's shell forming its underside
+61328,plat,a map showing planned or actual features of an area (streets and building lots etc.)
+61329,plate,the thin under portion of the forequarter
+61330,plate,a main course served on a plate; "a vegetable plate"; "the blue plate special"
+61331,plate,any flat platelike body structure or part
+61332,plate,the positively charged electrode in a vacuum tube
+61333,plate,a full-page illustration (usually on slick paper)
+61334,plate,structural member consisting of a horizontal beam that provides bearing and anchorage
+61335,plate,a sheet of metal or wood or glass or plastic
+61336,plate,dish on which food is served or from which food is eaten
+61337,plate collection_plate,a shallow receptacle for collection in church
+61338,plate crustal_plate,a rigid layer of the Earth's crust that is believed to drift slowly
+61339,plate photographic_plate,a flat sheet of metal or glass on which a photographic image can be recorded
+61340,plate plateful,the quantity contained in a plate
+61341,plate scale shell,a metal sheathing of uniform thickness (such as the shield attached to an artillery piece to protect the gunners)
+61342,plate_glass sheet_glass,glass formed into large thin sheets
+61343,plate_iron,a plate of iron
+61344,plate_rack,a rack for holding plates to dry after they have been washed
+61345,plate_rail,rail or narrow shelf fixed to a wall to display plates
+61346,plateau_striped_whiptail Cnemidophorus_velox,having distinct longitudinal stripes: of Colorado Plateau from Arizona to western Colorado
+61347,platelayer tracklayer,a workman who lays and repairs railroad tracks
+61348,platelet blood_platelet thrombocyte,tiny bits of protoplasm found in vertebrate blood; essential for blood clotting
+61349,plateletpheresis,platelets are separated from whole blood and the rest is returned to the donor
+61350,platen,work table of a machine tool
+61351,platen,the flat plate of a printing press that presses the paper against the type
+61352,platen,the roller on a typewriter against which the keys strike
+61353,plater,a skilled worker who coats articles with a film of metal (usually silver or gold)
+61354,platform,the combination of a particular computer and a particular operating system
+61355,platform,a raised horizontal surface; "the speaker mounted the platform"
+61356,platform political_platform political_program program,a document stating the aims and principles of a political party; "their candidate simply ignored the party platform"; "they won the election even though they offered no positive program"
+61357,platform weapons_platform,any military structure or vehicle bearing weapons
+61358,platform_bed,a bed without springs
+61359,platform_rocker,rocking chair on a stationary base
+61360,plating,the application of a thin coat of metal (as by electrolysis)
+61361,plating metal_plating,a thin coating of metal deposited on a surface
+61362,platinum Pt atomic_number_78,a heavy precious metallic element; grey-white and resistant to corroding; occurs in some nickel and copper ores and is also found native in some deposits
+61363,platinum_black,a fine black powder of platinum; used as a catalyst in chemical reactions
+61364,platinum_blond platinum_blonde,a blond whose hair is a pale silvery (often artificially colored) blond
+61365,platitude cliche banality commonplace bromide,a trite or obvious remark
+61366,platitudinarian,a bore who makes excessive use of platitudes
+61367,platoon,a group of persons who are engaged in a common activity; "platoons of tourists poured out of the busses"; "the defensive platoon of the football team"
+61368,platoon,a team of policemen working under the military platoon system
+61369,platoon,a military unit that is a subdivision of a company; usually has a headquarters and two or more squads; usually commanded by a lieutenant
+61370,platter,a large shallow dish used for serving food
+61371,platy Platypoecilus_maculatus,small stocky Mexican fish; popular aquarium fish
+61372,platyctenean,ctenophore have long tentacles and flattened body
+61373,platypus duckbill duckbilled_platypus duck-billed_platypus Ornithorhynchus_anatinus,small densely furred aquatic monotreme of Australia and Tasmania having a broad bill and tail and webbed feet; only species in the family Ornithorhynchidae
+61374,platysma,either of two broad muscles located on either side of the neck and innervated by the facial nerve; extends from lower jaw to clavicle and is involved in moving the mouth and jaw
+61375,plausibility plausibleness,apparent validity
+61376,play,a state in which action is feasible; "the ball was still in play"; "insiders said the company's stock was in play"
+61377,play,a theatrical performance of a drama; "the play lasted two hours"
+61378,play,utilization or exercise; "the play of the imagination"
+61379,play,a preset plan of action in team sports; "the coach drew up the plays for her team"
+61380,play child's_play,activity by children that is guided more by imagination than by fixed rules; "Freud believed in the utility of play to a small child"
+61381,play drama dramatic_play,a dramatic work intended for performance by actors on a stage; "he wrote several plays but only one was produced on Broadway"
+61382,play frolic romp gambol caper,gay or light-hearted recreational activity for diversion or amusement; "it was all done in play"; "their frolic in the surf threatened to become ugly"
+61383,play swordplay,the act using a sword (or other weapon) vigorously and skillfully
+61384,play_reading,performance of a play by a group of readers
+61385,play_therapy,form of psychotherapy for children that uses play situations for diagnosis or treatment
+61386,playback,electronic equipment comprising the part of a tape recorder that reproduces the recorded material
+61387,playback,the act of reproducing recorded sound; "he was allowed to hear the playback of his testimony"
+61388,playbill,a theatrical program; "he couldn't find her name on the playbill"
+61389,playbook,a notebook containing descriptions and diagrams of the plays that a team has practiced (especially an American football team)
+61390,playbook,a book containing the scripts of one or more dramatic plays; "the 1963 playbook leaves out the whole first scene"
+61391,playbook,a scheme or set of strategies for conducting a business campaign or a political campaign; "they borrowed a page from the playbook of the opposition"
+61392,playbox play-box,a box for a child's toys and personal things (especially at a boarding school)
+61393,playboy man-about-town Corinthian,a man devoted to the pursuit of pleasure
+61394,player,a person who pursues a number of different social and sexual partners simultaneously
+61395,player participant,a person who participates in or is skilled at some game
+61396,playfulness fun,a disposition to find (or make) causes for amusement; "her playfulness surprised me"; "he was fun to be with"
+61397,playgoer theatergoer theatregoer,someone who attends the theater
+61398,playground,yard consisting of an outdoor area for children's play
+61399,playhouse wendy_house,plaything consisting of a small model of a house that children can play inside of
+61400,playing,the act of playing a musical instrument
+61401,playing,the action of taking part in a game or sport or other recreation
+61402,playing_card,one of a pack of cards that are used to play card games
+61403,playing_field,the circumstances under which competition occurs; "the government's objective is to insure a genuinely level playing field for American industry and commerce in Europe"
+61404,playing_field athletic_field playing_area field,a piece of land prepared for playing a game; "the home crowd cheered when Princeton took the field"
+61405,playing_period period_of_play play,(in games or plays or other performances) the time during which play proceeds; "rain stopped play in the 4th inning"
+61406,playlet,a short play
+61407,playlist play_list,a list of musical selections for performance or for broadcast by radio
+61408,playmaker,a player in a team sport who leads attacks or maneuvers in such a way that a teammate can score
+61409,playmate playfellow,a companion at play
+61410,playoff,any final competition to determine a championship
+61411,playoff_game,one game in the series of games constituting a playoff
+61412,playpen pen,a portable enclosure in which babies may be left to play
+61413,playschool play_group,a small informal nursery group meeting for half-day sessions
+61414,playsuit,a sports outfit for women or children; usually consists of shorts and a blouse
+61415,plaything toy,an artifact designed to be played with
+61416,playtime playday,time for play or diversion
+61417,plaza mall center shopping_mall shopping_center shopping_centre,mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace; "a good plaza should have a movie house"; "they spent their weekends at the local malls"
+61418,plaza place piazza,a public square with room for pedestrians; "they met at Elm Plaza"; "Grosvenor Place"
+61419,plea,(law) a defendant's answer by a factual matter (as distinguished from a demurrer)
+61420,plea,an answer indicating why a suit should be dismissed
+61421,plea_bargain plea_bargaining,(criminal law) a negotiation in which the defendant agrees to enter a plea of guilty to a lesser charge and the prosecutor agrees to drop a more serious charge; "his admission was part of a plea bargain with the prosecutor"; "plea bargaining helps to stop the courts becoming congested"
+61422,pleading,(law) a statement in legal and logical form stating something on behalf of a party to a legal proceeding
+61423,pleasance,a pleasant and secluded part of a garden; usually attached to a mansion
+61424,pleasantness,the feeling caused by agreeable stimuli; one pole of a continuum of states of feeling
+61425,pleasantness sweetness,the quality of giving pleasure; "he was charmed by the sweetness of her manner"; "the pleasantness of a cool breeze on a hot summer day"
+61426,pleasantry,an agreeable or amusing remark; "they exchange pleasantries"
+61427,pleaser,a pleasing entertainer; "he is quite the crowd pleaser"
+61428,pleasing,the act of one who pleases
+61429,pleasingness,the quality of giving pleasure to the senses; "the liveliness and pleasingness of dark eyes"- T.N. Carver
+61430,pleasure,a formal expression; "he serves at the pleasure of the President"
+61431,pleasure,an activity that affords enjoyment; "he puts duty before pleasure"
+61432,pleasure,sexual gratification; "he took his pleasure of her"
+61433,pleasure pleasance,a fundamental feeling that is hard to define but that people desire to experience; "he was tingling with pleasure"
+61434,pleasure_principle pleasure-pain_principle pleasure-unpleasure_principle,(psychoanalysis) the governing principle of the id; the principle that an infant seeks gratification and fails to distinguish fantasy from reality
+61435,pleat plait,any of various types of fold formed by doubling fabric back upon itself and then pressing or stitching into shape
+61436,plebeian pleb,one of the common people
+61437,plebiscite,a vote by the electorate determining public opinion on a question of national importance
+61438,plectognath plectognath_fish,tropical marine fishes having the teeth fused into a beak and thick skin covered with bony plates or spines
+61439,plectranthus,any of various ornamental plants of the genus Plectranthus
+61440,pledge,a deposit of personal property as security for a debt; "his saxophone was in pledge"
+61441,pledge,someone accepted for membership but not yet fully admitted to the group
+61442,pledge toast,a drink in honor of or to the health of a person or event
+61443,pledge_taker,a volunteer who records (usually by telephone) contributions pledged in a fund drive
+61444,pledgee,someone to whom a pledge is made or someone with whom something is deposited as a pledge
+61445,pledger,someone who makes or gives a pledge
+61446,plenipotentiary,a diplomat who is fully authorized to represent his or her government
+61447,plenty plentifulness plenteousness plenitude plentitude,a full supply; "there was plenty of food for everyone"
+61448,plenum,a meeting of a legislative body at which all members are present; "the plenum will vote on all tax increases"
+61449,plenum,an enclosed space in which the air pressure is higher than outside
+61450,pleochroism,the phenomenon of different colors appearing when certain crystals are viewed from different directions
+61451,pleomorphic_rhabdomyosarcoma pleomorphic_rhabdosarcoma,form of rhabdomyosarcoma that affects limb muscles of older adults
+61452,pleomorphism,(biology) the appearance of two or more distinctly different forms in the life cycle of some organisms
+61453,pleonasm,using more words than necessary; "a tiny little child"
+61454,plesiosaur plesiosaurus,extinct marine reptile with a small head on a long neck a short tail and four paddle-shaped limbs; of the Jurassic and Cretaceous
+61455,plethysmograph,a measuring instrument for measuring changes in volume of a part or organ or whole body (usually resulting from fluctuations in the amount of blood it contains)
+61456,pleura,the thin serous membrane around the lungs and inner walls of the chest
+61457,pleural_cavity,the cavity in the thorax that contains the lungs and heart
+61458,pleural_space,the small potential space between the parietal and visceral layers of the pleura
+61459,pleurisy,inflammation of the pleura of the lungs (especially the parietal layer)
+61460,pleurocarp pleurocarpous_moss,a moss having the archegonium or antheridium on a short side branch rather than the main stalk
+61461,pleurodont,an animal having teeth fused with the inner surface of the alveolar ridge without sockets
+61462,pleurodynia pleuralgia costalgia,pain in the chest caused by inflammation of the muscles between the ribs
+61463,pleuropneumonia,pleurisy and pneumonia
+61464,pleuropneumonialike_organism PPLO,a mycoplasma resistant to antibiotics that causes a kind of pneumonia in humans
+61465,pleurothallis,any of numerous small tufted orchids of the genus Pleurothallis having leathery to fleshy leaves and racemes of 1 to many small flowers
+61466,pleximeter plessimeter,a small thin metal plate held against the body and struck with a plexor in percussive examinations
+61467,plexor plessor percussor,(medicine) a small hammer with a rubber head used in percussive examinations of the chest and in testing reflexes
+61468,plexus rete,a network of intersecting blood vessels or intersecting nerves or intersecting lymph vessels
+61469,plexus_dentalis,a plexus of nerves serving the teeth
+61470,pliability pliancy pliantness suppleness,adaptability of mind or character; "he was valued for his reliability and pliability"; "he increased the leanness and suppleness of the organization"
+61471,pliancy pliantness suppleness,the property of being pliant and flexible
+61472,plication pleating,the act of folding in parallel folds
+61473,plier plyer,someone who plies a trade
+61474,pliers pair_of_pliers plyers,a gripping hand tool with two hinged arms and (usually) serrated jaws
+61475,plight troth,a solemn pledge of fidelity
+61476,plimsoll,a light gym shoe with a rubber sole and a canvas top
+61477,ploce,(rhetoric) repetition to gain special emphasis or extend meaning
+61478,plodder slogger,someone who works slowly and monotonously for long hours
+61479,plodder slowpoke stick-in-the-mud slowcoach,someone who moves slowly; "in England they call a slowpoke a slowcoach"
+61480,plodding plod,the act of walking with a slow heavy gait; "I could recognize his plod anywhere"
+61481,plonk,a cheap wine of inferior quality
+61482,plonk,the noise of something dropping (as into liquid)
+61483,plop,the noise of a rounded object dropping into a liquid without a splash
+61484,plosion explosion,the terminal forced release of pressure built up during the occlusive phase of a stop consonant
+61485,plot,a chart or graph showing the movements or progress of an object
+61486,plot,the story that is told in a novel or play or movie etc.; "the characters were well drawn but the plot was banal"
+61487,plot plot_of_land plot_of_ground patch,a small area of ground covered by specific vegetation; "a bean plot"; "a cabbage patch"; "a briar patch"
+61488,plot secret_plan game,a secret scheme to do something (especially something underhand or illegal); "they concocted a plot to discredit the governor"; "I saw through his little game from the start"
+61489,plot_element,a component or element of the plot of a story
+61490,plotter,an instrument (usually driven by a computer) for drawing graphs or pictures
+61491,plotter mapper,a clerk who marks data on a chart
+61492,ploughman's_lunch,a meal consisting of a sandwich of bread and cheese and a salad
+61493,plover,any of numerous chiefly shorebirds of relatively compact build having straight bills and large pointed wings; closely related to the sandpipers
+61494,plow plough,a farm tool having one or more heavy blades to break the soil and cut a furrow prior to sowing
+61495,plow_horse plough_horse,a horse used to pull a plow
+61496,plowboy ploughboy,a boy who leads the animals that draw a plow
+61497,plowing ploughing,tilling the land with a plow; "he hired someone to do the plowing for him"
+61498,plowman ploughman plower,a man who plows
+61499,plowshare ploughshare share,a sharp steel wedge that cuts loose the top layer of soil
+61500,plowwright ploughwright,a workman who makes and repairs plows
+61501,ploy gambit stratagem,a maneuver in a game or conversation
+61502,pluck,the act of pulling and releasing a taut cord
+61503,plug male_plug,an electrical device with two or three pins that is inserted in a socket to make an electrical connection
+61504,plug stopper stopple,blockage consisting of an object designed to fill a hole tightly
+61505,plug-in add-on,a software module that extends or enhances the capabilities of an existing application
+61506,plug_fuse,a fuse with a thread that screws into a socket
+61507,plughole,a hole into which a plug fits (especially a hole where water drains away)
+61508,plum,any of numerous varieties of small to medium-sized round or oval fruit having a smooth skin and a single pit
+61509,plum,a highly desirable position or assignment; "a political plum"
+61510,plum plum_tree,any of several trees producing edible oval fruit having a smooth skin and a single hard stone
+61511,plum-fruited_yew Prumnopitys_andina Prumnopitys_elegans,South American evergreen tree or shrub
+61512,plum-yew,any of several evergreen trees and shrubs of eastern Asia resembling yew and having large seeds enclosed in a fleshy envelope; sometimes cultivated as ornamentals
+61513,plum_pudding Christmas_pudding,a rich steamed or boiled pudding that resembles cake
+61514,plum_sauce,for Chinese dishes: plum preserves and chutney
+61515,plum_tomato,an Italian variety of cherry tomato that is shaped like a plum
+61516,plum_tomato,a kind of cherry tomato that is frequently used in cooking rather than eaten raw
+61517,plumb_bob plumb plummet,the metal bob of a plumb line
+61518,plumb_level,a carpenter's level with a plumb line at right angles to it
+61519,plumb_line perpendicular,a cord from which a metal weight is suspended pointing directly to the earth's center of gravity; used to determine the vertical from a given point
+61520,plumb_rule,a plumb line attached to a narrow board
+61521,plumbago,any plumbaginaceous plant of the genus Plumbago
+61522,plumber pipe_fitter,a craftsman who installs and repairs pipes and fixtures and appliances
+61523,plumber's_snake snake auger,a long flexible steel coil for dislodging stoppages in curved pipes
+61524,plumbing plumbery,the occupation of a plumber (installing and repairing pipes and fixtures for water or gas or sewage in a building)
+61525,plumbing plumbing_system,utility consisting of the pipes and fixtures for the distribution of water or gas in a building and for the disposal of sewage
+61526,plumbing_fixture,a fixture for the distribution and use of water in a building
+61527,plumcot,hybrid between plum and apricot
+61528,plumcot plumcot_tree,hybrid produced by crossing Prunus domestica and Prunus armeniaca
+61529,plume,anything that resembles a feather in shape or lightness; "a plume of smoke"; "grass with large plumes"
+61530,plume,a feather or cluster of feathers worn as an ornament
+61531,plume_grass,a reedlike grass of the genus Erianthus having large plumes
+61532,plume_poppy bocconia Macleaya_cordata,herb of China and Japan widely cultivated for its plumelike panicles of creamy white flowers
+61533,plume_thistle plumed_thistle,any of numerous biennial to perennial herbs with handsome purple or yellow or occasionally white flower heads
+61534,plumed_scorpionfish Scorpaena_grandicornis,a kind of scorpionfish
+61535,plumed_tussock toe_toe toetoe Cortaderia_richardii Arundo_richardii,tall grass of New Zealand grown for plumelike flower heads
+61536,plump,the sound of a sudden heavy fall
+61537,plumpness embonpoint roundness,the bodily property of being well rounded
+61538,plumule,down feather of young birds; persists in some adult birds
+61539,plunderage,the act of plundering (especially the embezzlement of goods on shipboard)
+61540,plunderer pillager looter spoiler despoiler raider freebooter,someone who takes spoils or plunder (as in war)
+61541,plundering pillage pillaging,the act of stealing valuable things from a place; "the plundering of the Parthenon"; "his plundering of the great authors"
+61542,plunge,a steep and rapid fall
+61543,plunger plumber's_helper,hand tool consisting of a stick with a rubber suction cup at one end; used to clean clogged drains
+61544,plunk,a hollow twanging sound
+61545,plunk plunker,(baseball) hitting a baseball so that it drops suddenly
+61546,plural plural_form,the form of a word that is used to denote more than one
+61547,pluralism,a social organization in which diversity of racial or religious or ethnic or cultural groups is tolerated
+61548,pluralism,the doctrine that reality consists of several basic substances or elements
+61549,pluralism,the practice of one person holding more than one benefice at a time
+61550,pluralist,a cleric who holds more than one benefice at a time
+61551,pluralist,a philosopher who believes that no single explanation can account for all the phenomena of nature
+61552,pluralist,someone who believes that distinct ethnic or cultural or religious groups can exist together in society
+61553,plurality,the state of being plural; "to mark plurality, one language may add an extra syllable to the word whereas another may simply change the vowel in the existing final syllable"
+61554,plurality relative_majority,(in an election with more than 2 options) the number of votes for the candidate or party receiving the greatest number (but less that half of the votes)
+61555,pluralization pluralisation,the act of pluralizing or attributing plurality to
+61556,plus_fours,men's baggy knickers hanging below the knees; formerly worn for sports (especially golf)
+61557,plus_sign,a sign indicating the operation of addition
+61558,plush,a fabric with a nap that is longer and softer than velvet
+61559,plutocracy,a political system governed by the wealthy people
+61560,plutocrat,someone who exercises power by virtue of wealth
+61561,plutonium Pu atomic_number_94,a solid silvery grey radioactive transuranic element whose atoms can be split when bombarded with neutrons; found in minute quantities in uranium ores but is usually synthesized in nuclear reactors; 13 isotopes are known with the most important being plutonium 239
+61562,plutonium_239,a highly fissionable isotope of plutonium that is used in atomic weapons and as a reactor fuel; produced by irradiating uranium 238 with slow electrons
+61563,plutonium_trigger plutonium_pit,a steel or beryllium sphere containing plutonium 239 that triggers nuclear fission when compressed by explosives
+61564,ply,one of the strands twisted together to make yarn or rope or thread; often used in combination; "three-ply cord"; "four-ply yarn"
+61565,ply,(usually in combinations) one of several layers of cloth or paper or wood as in plywood
+61566,plywood plyboard,a laminate made of thin layers of wood
+61567,pneumatic_drill,a power drill powered by compressed air
+61568,pneumatic_tire pneumatic_tyre,a tire made of reinforced rubber and filled with compressed air; used on motor vehicles and bicycles etc
+61569,pneumatics,the branch of mechanics that deals with the mechanical properties of gases
+61570,pneumatophore,an air-filled root (submerged or exposed) that can function as a respiratory organ of a marsh or swamp plant
+61571,pneumococcal_pneumonia,pneumonia caused by bacteria of the genus pneumococcus
+61572,pneumococcal_vaccine Pneumovax,vaccine (trade name Pneumovax) effective against the 23 most common strains of pneumococcus
+61573,pneumococcus Diplococcus_pneumoniae,bacterium causing pneumonia in mice and humans
+61574,pneumoconiosis pneumonoconiosis,chronic respiratory disease caused by inhaling metallic or mineral particles
+61575,pneumocytosis pneumocystis_pneumonia pneumocystis_carinii_pneumonia interstitial_plasma_cell_pneumonia,pneumonia occurring in infants or in persons with impaired immune systems (as AIDS victims)
+61576,pneumonectomy,surgical removal of a lung (usually to treat lung cancer)
+61577,pneumonia,respiratory disease characterized by inflammation of the lung parenchyma (excluding the bronchi) with congestion caused by viruses or bacteria or irritants
+61578,pneumonic_plague pulmonic_plague plague_pneumonia,a rapidly progressive and frequently fatal form of the plague that can spread through the air from person to person; characterized by lung involvement with chill, bloody expectoration and high fever
+61579,pneumonitis,inflammation of the lungs; caused by a virus or an allergic reaction
+61580,pneumothorax,abnormal presence of air in the pleural cavity resulting in the collapse of the lung; may be spontaneous (due to injury to the chest) or induced (as a treatment for tuberculosis)
+61581,poached_egg dropped_egg,egg cooked in gently boiling water
+61582,poacher,someone who hunts or fishes illegally on the property of another
+61583,poacher,a cooking vessel designed to poach food (such as fish or eggs)
+61584,poacher sea_poacher sea_poker,small slender fish (to 8 inches) with body covered by bony plates; chiefly of deeper northern Pacific waters
+61585,poaching,cooking in simmering liquid
+61586,pochard Aythya_ferina,heavy-bodied Old World diving duck having a grey-and-black body and reddish head
+61587,pock,a pustule in an eruptive disease
+61588,pocket,(bowling) the space between the headpin and the pins behind it on the right or left; "the ball hit the pocket and gave him a perfect strike"
+61589,pocket,a supply of money; "they dipped into the taxpayers' pockets"
+61590,pocket,a small isolated group of people; "they were concentrated in pockets inside the city"; "the battle was won except for cleaning up pockets of resistance"
+61591,pocket,an opening at the corner or on the side of a billiard table into which billiard balls are struck
+61592,pocket,a small pouch inside a garment for carrying small articles
+61593,pocket-handkerchief,a handkerchief that is carried in a pocket
+61594,pocket_battleship,a small battleship built to conform with treaty limitations on tonnage and armament (from 1925 to 1930)
+61595,pocket_borough,a sparsely populated borough in which all or most of the land is owned by a single family
+61596,pocket_dictionary little_dictionary,a dictionary that is small enough to carry in your pocket
+61597,pocket_flap,a flap that covers the access to a pocket
+61598,pocket_money pin_money spending_money,cash for day-to-day spending on incidental expenses
+61599,pocket_mouse,any of various small nocturnal burrowing desert rodents with cheek pouches and long hind legs and tail
+61600,pocket_rat,any of various rodents with cheek pouches
+61601,pocket_veto,indirect veto of legislation by refusing to sign it
+61602,pocket_watch,a watch that is carried in a small watch pocket
+61603,pocketbook,your personal financial means; "that car is too expensive for my pocketbook"
+61604,pocketbook pocket_book pocket_edition,pocket-sized paperback book
+61605,pocketbook_issue bread-and-butter_issue,an issue whose settlement will affect financial resources
+61606,pocketcomb pocket_comb,a small comb suitable for carrying in a pocket
+61607,pocketed_bat pocketed_freetail_bat Tadirida_femorosacca,small brown bat of California and northern Mexico
+61608,pocketful,the quantity a pocket will hold
+61609,pocketknife pocket_knife,a knife with a blade that folds into the handle; suitable for carrying in the pocket
+61610,pockmark,a scar or pit on the skin that is left by a pustule of smallpox or acne or other eruptive disease
+61611,pod,a group of aquatic mammals
+61612,pod cod seedcase,the vessel that contains the seeds of a plant (not the seeds themselves)
+61613,pod fuel_pod,a detachable container of fuel on an airplane
+61614,pod seedpod,a several-seeded dehiscent fruit as e.g. of a leguminous plant
+61615,podalgia,foot pain
+61616,podetium,an organ or body resembling a stalk; especially the outgrowth of the thallus of certain lichens on which the ascocarp is borne
+61617,podiatry chiropody,the branch of medicine concerned with the feet
+61618,podicipitiform_seabird,aquatic birds related to the loons
+61619,podocarp,any evergreen in the southern hemisphere of the genus Podocarpus having a pulpy fruit with one hard seed
+61620,podzol podzol_soil podsol podsol_soil podsolic_soil,a soil that develops in temperate to cold moist climates under coniferous or heath vegetation; an organic mat over a grey leached layer
+61621,poem verse_form,a composition written in metrical feet forming rhythmical lines
+61622,poet,a writer of poems (the term is usually reserved for writers of good poetry)
+61623,poet_laureate,a poet who is unofficially regarded as holding an honorary position in a particular group or region; "she is the poet laureate of all lyricists"; "he is the poet laureate of Arkansas"
+61624,poet_laureate,the poet officially appointed to the royal household in Great Britain; "the poet laureate is expected to provide poems for great national occasions"
+61625,poetess,a woman poet
+61626,poetic_license,license used by a writer or artist to heighten the effect of their work
+61627,poetic_rhythm rhythmic_pattern prosody,(prosody) a system of versification
+61628,poetics,study of poetic works
+61629,poetry,any communication resembling poetry in beauty or the evocation of feeling
+61630,poetry poesy verse,literature in metrical form
+61631,pogge armed_bullhead Agonus_cataphractus,northern Atlantic sea poacher
+61632,pogo_stick,plaything consisting of a pole with foot rests and a strong spring; propelled by jumping
+61633,pogonia,any hardy bog orchid of the genus Pogonia: terrestrial orchids having slender rootstocks and erect stems bearing one or a few leaves and a solitary terminal flower
+61634,pogonion,the craniometric point that is the most forward-projecting point on the anterior surface of the chin
+61635,pogrom,organized persecution of an ethnic group (especially Jews)
+61636,poi,Hawaiian dish of taro root pounded to a paste and often allowed to ferment
+61637,poignance poignancy,a state of deeply felt distress or sorrow; "a moment of extraordinary poignancy"
+61638,poikilotherm ectotherm,an animal whose body temperature varies with the temperature of its surroundings; any animal except birds and mammals
+61639,poilu,a French soldier (especially in World War I)
+61640,poinsettia Christmas_star Christmas_flower lobster_plant Mexican_flameleaf painted_leaf Euphorbia_pulcherrima,tropical American plant having poisonous milk and showy tapering usually scarlet petallike leaves surrounding small yellow flowers
+61641,point,a style in speech or writing that arrests attention and has a penetrating or convincing quality or effect
+61642,point,a linear unit used to measure the size of type; approximately 1/72 inch
+61643,point,the unit of counting in scoring a game or contest; "he scored 20 points in the first half"; "a touchdown counts 6 points"
+61644,point,one percent of the total principal of a loan; it is paid at the time the loan is made and is independent of the interest on the loan
+61645,point,a promontory extending out into a large body of water; "they sailed south around the point"
+61646,point,the precise location of something; a spatially limited location; "she walked to a point where she could survey the whole street"
+61647,point,a brief version of the essential meaning of something; "get to the point"; "he missed the point of the joke"; "life has lost its point"
+61648,point,the object of an activity; "what is the point of discussing it?"
+61649,point,a geometric element that has position but no extension; "a point is defined by its coordinates"
+61650,point,a distinguishing or individuating characteristic; "he knows my bad points as well as my good points"
+61651,point,sharp end; "he stuck the point of the knife into a tree"; "he broke the point of his pencil"
+61652,point dot,a very small circular shape; "a row of points"; "draw lines between the dots"
+61653,point gunpoint,the gun muzzle's direction; "he held me up at the point of a gun"
+61654,point head,a V-shaped mark at one end of an arrow pointer; "the point of the arrow was due north"
+61655,point point_in_time,an instant of time; "at that point I had to leave"
+61656,point pointedness,the property of a shape that tapers to a sharp tip
+61657,point power_point,a wall socket
+61658,point spot,an outstanding characteristic; "his acting was one of the high points of the movie"
+61659,point tip peak,a V shape; "the cannibal's teeth were filed to sharp points"
+61660,point-and-shoot_camera,a lightweight photographic camera with an autofocus
+61661,point_after point_after_touchdown extra_point,in American football a point awarded for a successful place kick following a touchdown
+61662,point_duty,the control of traffic by a policeman stationed at an intersection
+61663,point_lace needlepoint,lace worked with a needle in a buttonhole stitch on a paper pattern
+61664,point_man,someone who is the forefront of an important enterprise; "he is the president's point man on economic issues"
+61665,point_man,a soldier who goes ahead of a patrol
+61666,point_mutation gene_mutation,(genetics) a mutation due to an intramolecular reorganization of a gene
+61667,point_of_honor,a concern that seriously reflects on your honor
+61668,point_of_order,a question as to whether the current proceedings are allowed by parliamentary procedure
+61669,point_of_view,the spatial property of the position from which something is observed
+61670,point_of_view viewpoint stand standpoint,a mental position from which things are viewed; "we should consider this problem from the viewpoint of the Russians"; "teaching history gave him a special point of view toward current events"
+61671,point_source,a concentrated source (especially of radiation or pollution) that is spatially constricted
+61672,point_system,a system of graduating sizes of type in multiples of the point
+61673,point_system,a system of writing or printing using patterns of raised dots that can be read by touch
+61674,point_system,a system of evaluation based on awarding points according to rules
+61675,point_woman,a woman who is the forefront of an important enterprise
+61676,pointed-leaf_maple Acer_argutum,small shrubby Japanese plant with leaves having 5 to 7 acuminate lobes; yellow in autumn
+61677,pointed_arch,an arch with a pointed apex; characteristic of Gothic architecture
+61678,pointedness,the quality of being obviously directed at a particular person or thing; "the pointedness of his sarcasm was unmistakable"
+61679,pointer,an indicator as on a dial
+61680,pointer Spanish_pointer,a strong slender smooth-haired dog of Spanish origin having a white coat with brown or black patches; scents out and points to game
+61681,pointillism,a school of painters who used a technique of painting with tiny dots of pure colors that would blend in the viewer's eye; developed by Georges Seurat and his followers late in 19th century France
+61682,pointillism,a genre of painting characterized by the application of paint in dots and small strokes; developed by Georges Seurat and his followers in late 19th century France
+61683,pointillist,a painter who uses the technique of pointillism
+61684,pointing_out,indication by demonstration
+61685,pointing_trowel,a trowel used to fill and finish masonry joints with mortar or cement
+61686,pointsman,a policeman stationed at an intersection to direct traffic
+61687,poise,a state of being balanced in a stable equilibrium
+61688,poise,a cgs unit of dynamic viscosity equal to one dyne-second per square centimeter; the viscosity of a fluid in which a force of one dyne per square centimeter maintains a velocity of 1 centimeter per second
+61689,poison,anything that harms or destroys; "the poison of fascism"
+61690,poison toxicant poisonous_substance,any substance that causes injury or illness or death of a living organism
+61691,poison_ash poison_dogwood poison_sumac Toxicodendron_vernix Rhus_vernix,smooth American swamp shrub with pinnate leaves and greenish flowers followed by greenish white berries; yields an irritating oil
+61692,poison_bush poison_pea gastrolobium,any of various Australian evergreen shrubs of the genus Gastrolobium having whorled compound leaves poisonous to livestock and showy yellow to deep reddish-orange flowers followed by two-seeded pods
+61693,poison_camas Zigadenus_nuttalli,a common perennial death camas; Tennessee to Kansas to Texas
+61694,poison_gas,a gas that is poisonous to breath or contact; used in chemical warfare
+61695,poison_ivy,dermatitis resulting from contact with the poison ivy plant; "my poison ivy is drying up"
+61696,poison_ivy markweed poison_mercury poison_oak Toxicodendron_radicans Rhus_radicans,climbing plant common in eastern and central United States with ternate leaves and greenish flowers followed by white berries; yields an irritating oil that causes a rash on contact
+61697,poison_milkweed horsetail_milkweed Asclepias_subverticillata,milkweed of southwestern United States and Mexico; poisonous to livestock
+61698,poison_oak,dermatitis resulting from contact with a poison oak plant
+61699,poison_pill,the target company defends itself by making its stock less attractive to an acquirer
+61700,poison_sumac,dermatitis resulting from contact with a poison sumac plant
+61701,poisoner,someone who kills with poison
+61702,poisoning,the act of giving poison to a person or animal with the intent to kill
+61703,poisoning toxic_condition intoxication,the physiological state produced by a poison or other toxic substance
+61704,poisonous_parasol Lepiota_morgani,an agaric regarded as poisonous
+61705,poisonous_plant,a plant that when touched or ingested in sufficient quantity can be harmful or fatal to an organism
+61706,poke pigeon_berry garget scoke Phytolacca_americana,tall coarse perennial American herb having small white flowers followed by blackish-red berries on long drooping racemes; young fleshy stems are edible; berries and root are poisonous
+61707,poke_check,knocking the puck away by jabbing at it with the hockey stick
+61708,poke_milkweed Asclepias_exaltata,milkweed of the eastern United States with leaves resembling those of pokeweed
+61709,poker poker_game,any of various card games in which players bet that they hold the highest-ranking hand
+61710,poker stove_poker fire_hook salamander,fire iron consisting of a metal rod with a handle; used to stir a fire
+61711,poker_alumroot poker_heuchera Heuchera_cylindrica,plant with leathery heart-shaped leaf blades clustered at base of long stalks with greenish-white flowers clustered along the upper part; western North America
+61712,poker_face,a face without any interpretable expression (as that of a good poker player)
+61713,poker_hand,the 5 cards held in a game of poker
+61714,poker_plant Kniphofia_uvaria,clump-forming plant of South Africa with spikes of scarlet flowers
+61715,pokeweed,perennial of the genus Phytolacca
+61716,polack,a person of Polish descent
+61717,polar_body,a small cell containing little cytoplasm that is produced along with the oocyte and later discarded
+61718,polar_circle,a line of latitude at the north or south poles
+61719,polar_coordinate,either of two values that locate a point on a plane by its distance from a fixed pole and its angle from a fixed line passing through the pole
+61720,polar_glacier,a glacier near the Arctic or Antarctic poles
+61721,polar_hare Arctic_hare Lepus_arcticus,a large hare of northern North America; it is almost completely white in winter
+61722,polar_opposition,an opposition that can be graded between two extremes or poles
+61723,polarimeter polariscope,an optical device used to measure the rotation of the plane of vibration of polarized light
+61724,polarity sign,having an indicated pole (as the distinction between positive and negative electric charges); "he got the polarity of the battery reversed"; "charges of opposite sign"
+61725,polarization polarisation,the condition of having or giving polarity
+61726,polarization polarisation,the phenomenon in which waves of light or other radiation are restricted in direction of vibration
+61727,polarography,an electrochemical method of chemical analysis
+61728,polder,low-lying land that has been reclaimed and is protected by dikes (especially in the Netherlands)
+61729,pole,one of two antipodal points where the Earth's axis of rotation intersects the Earth's surface
+61730,pole,one of two divergent or mutually exclusive opinions; "they are at opposite poles"; "they are poles apart"
+61731,pole,a long fiberglass sports implement used for pole vaulting
+61732,pole,a long (usually round) rod of wood or metal or plastic
+61733,pole celestial_pole,one of two points of intersection of the Earth's axis and the celestial sphere
+61734,pole magnetic_pole,one of the two ends of a magnet where the magnetism seems to be concentrated
+61735,pole_bean,a climbing bean plant that will climb a wall or tree or trellis
+61736,pole_horse,the horse having a starting position next to the inside rail in a harness race
+61737,pole_horse poler,a draft horse harnessed alongside the shaft or pole of a vehicle
+61738,pole_position,the most favorable position at the start of a race
+61739,pole_vault pole_vaulting pole_jump pole_jumping,a competition that involves jumping over a high crossbar with the aid of a long pole
+61740,poleax poleaxe,an ax used to slaughter cattle; has a hammer opposite the blade
+61741,poleax poleaxe,a battle ax used in the Middle Ages; a long handled ax and a pick
+61742,polecat fitch foulmart foumart Mustela_putorius,dark brown mustelid of woodlands of Eurasia that gives off an unpleasant odor when threatened
+61743,polemic,a controversy (especially over a belief or dogma)
+61744,polemicist polemist polemic,a writer who argues in opposition to others (especially in theology)
+61745,polemics,the branch of Christian theology devoted to the refutation of errors
+61746,polemonium,any plant of the genus Polemonium; most are low-growing often foul-smelling plants of temperate to Arctic regions
+61747,polenta,a thick mush made of cornmeal boiled in stock or water
+61748,police police_force constabulary law,the force of policemen and officers; "the law came looking for him"
+61749,police_academy,an academy for training police officers
+61750,police_action,a local military action without declaration of war; against violators of international peace and order
+61751,police_boat,a boat used by harbor police
+61752,police_commissioner,a civil commissioner appointed to supervise the duties and discipline of the police
+61753,police_court,a court that has power to prosecute for minor offenses and to bind over for trial in a superior court anyone accused of serious offenses
+61754,police_department,the department of local government concerned with enforcing the law and preventing crime
+61755,police_dog,any dog trained to assist police especially in tracking
+61756,police_matron policewoman,a woman policeman
+61757,police_precinct,a precinct in which law enforcement is the responsibility of particular police force
+61758,police_sergeant sergeant,a lawman with the rank of sergeant
+61759,police_squad squad,a small squad of policemen trained to deal with a particular kind of crime
+61760,police_state,a country that maintains repressive control over the people by means of police (especially secret police)
+61761,police_station police_headquarters station_house,a station that serves as headquarters for police in a particular district; serves as a place from which policemen are dispatched and to which arrested persons are brought
+61762,police_van police_wagon paddy_wagon patrol_wagon wagon black_Maria,van used by police to transport prisoners
+61763,police_work police_investigation,the investigation of criminal activities
+61764,policeman police_officer officer,a member of a police force; "it was an accident, officer"
+61765,policeman_bird black-necked_stork jabiru Xenorhyncus_asiaticus,large mostly white Australian stork
+61766,policy,a line of argument rationalizing the course of action of a government; "they debated the policy or impolicy of the proposed legislation"
+61767,policy,a plan of action adopted by an individual or social group; "it was a policy of retribution"; "a politician keeps changing his policies"
+61768,policy insurance_policy insurance,written contract or certificate of insurance; "you should have read the small print on your policy"
+61769,policy_maker,someone who sets the plan pursued by a government or business etc.; "policy makers often make the right decision for the wrong reason"
+61770,policyholder,a person who holds an insurance policy; usually, the client in whose name an insurance policy is written
+61771,poliomyelitis polio infantile_paralysis acute_anterior_poliomyelitis,an acute viral disease marked by inflammation of nerve cells of the brain stem and spinal cord
+61772,poliosis,loss of color from the hair
+61773,poliovirus,the virus causing poliomyelitis
+61774,poliovirus_vaccine,vaccine prepared from poliovirus to provide immunity to poliomyelitis
+61775,polish,a preparation used in polishing
+61776,polish gloss glossiness burnish,the property of being smooth and shiny
+61777,polish refinement culture cultivation finish,a highly developed state of perfection; having a flawless or impeccable quality; "they performed with great polish"; "I admired the exquisite refinement of his prose"; "almost an inspiration which gives to all work that finish which is almost art"--Joseph Conrad
+61778,politburo,the chief executive and political committee of the Communist Party
+61779,politeness civility,the act of showing regard for others
+61780,politeness niceness,a courteous manner that respects accepted social usage
+61781,political_action_committee PAC,committee formed by a special-interest group to raise money for their favorite political candidates
+61782,political_arena political_sphere,a sphere of intense political activity
+61783,political_campaign campaign run,a race between candidates for elective office; "I managed his campaign for governor"; "he is raising money for a Senate run"
+61784,political_contribution political_donation,a contribution made to a politician or a political campaign or a political party
+61785,political_correctness political_correctitude,avoidance of expressions or actions that can be perceived to exclude or marginalize or insult people who are socially disadvantaged or discriminated against
+61786,political_dissident,a dissenter from political orthodoxy
+61787,political_incorrectness,the use of expressions or actions that can be perceived to exclude or marginalize or insult groups who are socially disadvantaged or discriminated against
+61788,political_movement,a group of people working together to achieve a political goal
+61789,political_orientation ideology political_theory,an orientation that characterizes the thinking of a group or nation
+61790,political_prisoner,someone who is imprisoned because of their political views
+61791,political_scientist,a social scientist specializing in the study of government
+61792,political_system form_of_government,the members of a social organization who are in power
+61793,political_unit political_entity,a unit with political responsibilities
+61794,politician,a schemer who tries to gain advantage in an organization in sly or underhanded ways
+61795,politician,a leader engaged in civil administration
+61796,politician politico pol political_leader,a person active in party politics
+61797,politics,the activities and affairs involved in managing a state or a government; "unemployment dominated the politics of the inter-war years"; "government agencies multiplied beyond the control of representative politics"
+61798,politics,the profession devoted to governing and to political affairs
+61799,politics political_relation,social relations involving intrigue to gain authority or power; "office politics is often counterproductive"
+61800,politics political_science government,the study of government of states and other political units
+61801,politics political_sympathies,the opinion you hold with respect to political questions
+61802,polity,a politically organized unit
+61803,polity,shrewd or crafty management of public affairs; "we was innocent of stratagems and polity"
+61804,polka,music performed for dancing the polka
+61805,polka,a Bohemian dance with 3 steps and a hop in fast time
+61806,polka_dot,design consisting of a pattern of regularly spaced circular spots
+61807,poll,the part of the head between the ears
+61808,poll,the counting of votes (as in an election)
+61809,poll opinion_poll public_opinion_poll canvass,an inquiry into public opinion conducted by interviewing a random sample of people
+61810,poll poll_parrot,a tame parrot
+61811,poll_tax,a tax of a fixed amount per person and payable as a requirement for the right to vote
+61812,pollack pollock,lean white flesh of North Atlantic fish; similar to codfish
+61813,pollack pollock Pollachius_pollachius,important food and game fish of northern seas (especially the northern Atlantic); related to cod
+61814,pollard,a tree with limbs cut back to promote a more bushy growth of foliage
+61815,pollard,a usually horned animal that has either shed its horns or had them removed
+61816,pollen,the fine spores that contain male gametes and that are borne by an anther in a flowering plant
+61817,pollen_count,the number of pollen grains (usually ragweed) in a standard volume of air over a twenty-four hour period and a specified time and place
+61818,pollen_tube,(botany) a slender tubular outgrowth from a pollen grain when deposited on the stigma for a flower; it penetrates the style and conveys the male gametes to the ovule
+61819,pollination pollenation,transfer of pollen from the anther to the stigma of a plant
+61820,pollinator,an insect that carries pollen from one flower to another
+61821,polling_booth,a temporary booth in a polling place which people enter to cast their votes
+61822,polling_day election_day,the day appointed for an election; in the United States it is the 1st Tuesday after the 1st Monday in November
+61823,polling_place polling_station,a place where voters go to cast their votes in an election
+61824,pollinium,a coherent mass of pollen grains (as in orchids)
+61825,polls,the place where people vote
+61826,pollster poll_taker headcounter canvasser,someone who conducts surveys of public opinion; "a pollster conducts public opinion polls"; "a headcounter counts heads"
+61827,pollucite,a rare mineral that is an important source of cesium
+61828,pollutant,waste matter that contaminates the water or air or soil
+61829,polluter defiler,a person or organization that causes pollution of the environment
+61830,pollution,undesirable state of the natural environment being contaminated with harmful substances as a consequence of human activities
+61831,polo,a game similar to field hockey but played on horseback using long-handled mallets and a wooden ball
+61832,polo_ball,wooden ball that is struck with mallets in playing polo
+61833,polo_mallet polo_stick,a mallet used to strike the ball in polo
+61834,polo_pony,a small agile horse specially bred and trained for playing polo
+61835,polo_shirt sport_shirt,a shirt with short sleeves designed for comfort and casual wear
+61836,polonaise,a woman's dress with a tight bodice and an overskirt drawn back to reveal a colorful underskirt
+61837,polonium Po atomic_number_84,a radioactive metallic element that is similar to tellurium and bismuth; occurs in uranium ores but can be produced by bombarding bismuth with neutrons in a nuclear reactor
+61838,polony,another name for Bologna sausage
+61839,poltergeist,a ghost that announces its presence with rapping and the creation of disorder
+61840,poltroon craven recreant,an abject coward
+61841,poltroonery,abject pusillanimity
+61842,polyamide polymeric_amide,a polymer containing repeated amide groups
+61843,polyandrist,a woman with two or more husbands
+61844,polyandry,polygamy in which a woman has more than one husband at a time
+61845,polyanthus Primula_polyantha,florists' primroses; considered a complex hybrid derived from oxlip, cowslip, and common primrose
+61846,polyarteritis,inflammation of several arteries
+61847,polybutylene polybutene,a polymer of butylene; used in lubricants and synthetic rubber
+61848,polychaete polychete polychaete_worm polychete_worm,chiefly marine annelids possessing both sexes and having paired appendages (parapodia) bearing bristles
+61849,polychrome,a piece of work composed of or decorated in many colors
+61850,polyconic_projection,a conic projection of a map having distances between meridians equal to those distances on a globe
+61851,polycystic_kidney_disease PKD,kidney disease characterized by enlarged kidneys containing many cysts; often leads to kidney failure
+61852,polycythemia,a disorder characterized by an abnormal increase in the number of red blood cells in the blood
+61853,polydactyly hyperdactyly,birth defect characterized by the presence of more than the normal number of fingers or toes
+61854,polydipsia,excessive thirst (as in cases of diabetes or kidney dysfunction)
+61855,polyelectrolyte,an electrolyte of high molecular weight
+61856,polyester,any of numerous synthetic resins; they are light and strong and weather resistant
+61857,polyester,a complex ester used for making fibers or resins or plastics or as a plasticizer
+61858,polyester,any of a large class of synthetic fabrics
+61859,polyester_fiber,a quick-drying resilient synthetic fiber consisting primarily of polyester
+61860,polyethylene polythene,a lightweight thermoplastic; used especially in packaging and insulation
+61861,polyfoam polyurethane_foam,a foam made by adding water to polyurethane plastics
+61862,polygamist,someone who is married to two or more people at the same time
+61863,polygamy,the condition or practice of having more than one spouse at a time
+61864,polygene,a gene that by itself has little effect on the phenotype but which can act together with others to produce observable variations
+61865,polygenic_disorder polygenic_disease,an inherited disease controlled by several genes at once
+61866,polygon polygonal_shape,a closed plane figure bounded by straight sides
+61867,polygraph,a medical instrument that records several physiological processes simultaneously (e.g., pulse rate and blood pressure and respiration and perspiration)
+61868,polygynist,a man with two or more wives
+61869,polygyny,polygamy in which a man has more than one wife at a time
+61870,polyhedral_angle,the space enclosed by three or more planes that intersect in a vertex
+61871,polyhedron,a solid figure bounded by plane polygons or faces
+61872,polymastigote,flagellates with several flagella
+61873,polymath,a person of great and varied learning
+61874,polymer,a naturally occurring or synthetic compound consisting of large molecules made up of a linked series of repeated simple monomers
+61875,polymerase,an enzyme that catalyzes the formation of new DNA and RNA from an existing strand of DNA or RNA
+61876,polymerization polymerisation,a chemical process that combines several monomers to form a polymer or polymeric compound
+61877,polymethyl_methacrylate,a transparent plastic used as a substitute for glass
+61878,polymorph,an organism that can assume more than one adult form as in the castes of ants or termites
+61879,polymorphism,(genetics) the genetic variation within a population that natural selection can operate on
+61880,polymorphism,(biology) the existence of two or more forms of individuals within the same animal species (independent of sex differences)
+61881,polymorphism pleomorphism,(chemistry) the existence of different kinds of crystal of the same chemical compound
+61882,polymyositis,myositis characterized by weakness of limb and neck muscles and much muscle pain and swelling; progression and severity vary among individuals
+61883,polymyxin,any of several toxic antibiotics obtained from a particular soil bacterium
+61884,polyneuritis multiple_neuritis,inflammation of many or all of the peripheral nerves (as in leprosy)
+61885,polynomial multinomial,a mathematical function that is the sum of a number of terms
+61886,polynucleotide,(biochemistry) a linear polymer whose molecule is composed of many nucleotide units constituting a section of a nucleic acid molecule
+61887,polynya,a stretch of open water surrounded by ice (especially in Arctic seas)
+61888,polyoma polyoma_virus,a virus the can initiate various kinds of tumors in mice
+61889,polyp,one of two forms that coelenterates take (e.g. a hydra or coral): usually sedentary with a hollow cylindrical body usually with a ring of tentacles around the mouth; "in some species of coelenterate, polyps are a phase in the life cycle that alternates with a medusoid phase"
+61890,polyp polypus,a small vascular growth on the surface of a mucous membrane
+61891,polypectomy,surgical removal of a polyp
+61892,polypeptide,a peptide containing 10 to more than 100 amino acids
+61893,polyphemus_moth Antheraea_polyphemus,very large yellowish-brown American silkworm moth with large eyespots on hind wings; larvae feed on fruit and shade trees
+61894,polyphone polyphonic_letter,a letter that has two or more pronunciations; "`c' is a polyphone because it is pronounced like `k' in `car' but like `s' in `cell'"
+61895,polyphonic_prose,a rhythmical prose employing the poetic devices of alliteration and assonance
+61896,polyphony polyphonic_music concerted_music,music arranged in parts for several voices or instruments
+61897,polyphosphate,a salt or ester of polyphosphoric acid
+61898,polyphosphoric_acid,a series of oxyacids of phosphorus
+61899,polyploid,(genetics) an organism or cell having more than twice the haploid number of chromosomes
+61900,polyploidy,the condition of being polyploid
+61901,polypody,any of numerous ferns of the genus Polypodium
+61902,polypore pore_fungus pore_mushroom,woody pore fungi; any fungus of the family Polyporaceae or family Boletaceae having the spore-bearing surface within tubes or pores; the fruiting bodies are usually woody at maturity and persistent
+61903,polypropenonitrile Acrilan,acrylic resin used to make a strong soft crease-resistant fabric (trade name Acrilan)
+61904,polypropylene polypropene,a polymer of propylene used as a thermoplastic molding material
+61905,polyptoton,repetition of a word in a different case or inflection in the same sentence; "My own heart's heart"
+61906,polysaccharide polyose,any of a class of carbohydrates whose molecules contain chains of monosaccharide molecules
+61907,polysemant polysemantic_word polysemous_word,a word having more than one meaning
+61908,polysemy lexical_ambiguity,the ambiguity of an individual word or phrase that can be used (in different contexts) to express two or more different meanings
+61909,polysomy,congenital defect of having one or more extra chromosomes in somatic cells
+61910,polystyrene,a polymer of styrene; a rigid transparent thermoplastic; "expanded polystyrene looks like a rigid white foam and is used as packing or insulation"
+61911,polysyllable polysyllabic_word,a word of more than three syllables
+61912,polysyndeton,using several conjunctions in close succession, especially where some might be omitted (as in `he ran and jumped and laughed for joy')
+61913,polytechnic_institute polytechnic engineering_school,a technical school offering instruction in many industrial arts and applied sciences
+61914,polytheism,belief in multiple Gods
+61915,polytheist,one who believes in a plurality of gods
+61916,polytonality polytonalism,music that uses two or more different keys at the same time
+61917,polyunsaturated_fat,a class of fats having long carbon chains with many double bonds unsaturated with hydrogen atoms; used in some margarines; supposedly associated with low blood cholesterol
+61918,polyunsaturated_fatty_acid,an unsaturated fatty acid whose carbon chain has more than one double or triple valence bond per molecule; found chiefly in fish and corn and soybean oil and safflower oil
+61919,polyurethane polyurethan,any of various polymers containing the urethane radical; a wide variety of synthetic forms are made and used as adhesives or plastics or paints or rubber
+61920,polyuria,renal disorder characterized by the production of large volumes of pale dilute urine; often associated with diabetes
+61921,polyvalence polyvalency,(toxicology) the state of being capable of counteracting more than one toxin or antigen or kind of microorganism
+61922,polyvalence polyvalency multivalence multivalency,(chemistry) the state of having a valence greater than two
+61923,polyvinyl-formaldehyde,a polymer of vinyl formaldehyde
+61924,polyvinyl_acetate PVA,a vinyl polymer used especially in paints or adhesives
+61925,polyvinyl_chloride PVC,a polymer of vinyl chloride used instead of rubber in electric cables
+61926,pomade pomatum,hairdressing consisting of a perfumed oil or ointment
+61927,pome false_fruit,a fleshy fruit (apple or pear or related fruits) having seed chambers and an outer fleshy part
+61928,pomegranate,large globular fruit having many seeds with juicy red pulp in a tough brownish-red rind
+61929,pomegranate pomegranate_tree Punica_granatum,shrub or small tree native to southwestern Asia having large red many-seeded fruit
+61930,pomelo pomelo_tree pummelo shaddock Citrus_maxima Citrus_grandis Citrus_decumana,southeastern Asian tree producing large fruits resembling grapefruits
+61931,pomelo shaddock,large pear-shaped fruit similar to grapefruit but with coarse dry pulp
+61932,pomfret Brama_raii,deep-bodied sooty-black pelagic spiny-finned fish of the northern Atlantic and northern Pacific; valued for food
+61933,pommel,a handgrip that a gymnast uses when performing exercises on a pommel horse
+61934,pommel saddlebow,handgrip formed by the raised front part of a saddle
+61935,pommel_horse side_horse,a gymnastic horse with a cylindrical body covered with leather and two upright handles (pommels) near the center; held upright by two steel supports, one at each end
+61936,pommy pom,a disparaging term for a British person
+61937,pomologist,someone versed in pomology or someone who cultivates fruit trees
+61938,pomology,the branch of botany that studies and cultivates fruits
+61939,pomp eclat,ceremonial elegance and splendor; "entered with much eclat in a coach drawn by eight white horses"
+61940,pompadour,a hair style in which the front hair is swept up from the forehead
+61941,pompano,flesh of pompano; warm-water fatty fish
+61942,pompano,any of several deep-bodied food fishes of western Atlantic and Gulf of Mexico
+61943,pompon black_margate Anisotremus_surinamensis,dusky grey food fish found from Louisiana and Florida southward
+61944,pompon pom-pom,decoration consisting of a ball of tufted wool or silk; usually worn on a hat
+61945,ponce,a man who is effeminate in his manner and fussy in the way he dresses
+61946,poncho,a blanket-like cloak with a hole in the center for the head
+61947,pond pool,a small lake; "the pond was too small for sailing"
+61948,pond-scum_parasite,an aquatic fungus of genus Synchytriaceae that is parasitic on pond scum
+61949,pond_apple,ovoid yellow fruit with very fragrant peach-colored flesh; related to custard apples
+61950,pond_apple pond-apple_tree Annona_glabra,small evergreen tree of tropical America with edible fruit; used chiefly as grafting stock
+61951,pond_cypress bald_cypress Taxodium_ascendens,smaller than and often included in the closely related Taxodium distichum
+61952,pond_pine Pinus_serotina,large three-needled pine of sandy swamps of southeastern United States; needles longer than those of the northern pitch pine
+61953,pond_scum,free-floating freshwater green algae
+61954,ponderosa ponderosa_pine western_yellow_pine bull_pine Pinus_ponderosa,common and widely distributed tall timber pine of western North America having dark green needles in bunches of 2 to 5 and thick bark with dark brown plates when mature
+61955,ponderousness heaviness,an oppressive quality that is laborious and solemn and lacks grace or fluency; "a book so serious that it sometimes subsided into ponderousness"; "his lectures tend to heaviness and repetition"
+61956,pondweed,any of several submerged or floating freshwater perennial aquatic weeds belonging to the family Potamogetonaceae
+61957,pongee,a soft thin cloth woven from raw silk (or an imitation)
+61958,poniard bodkin,a dagger with a slender blade
+61959,pons pons_Varolii,a band of nerve fibers linking the medulla oblongata and the cerebellum with the midbrain
+61960,pons_asinorum,a problem that severely tests the ability of an inexperienced person
+61961,pontifex,a member of the highest council of priests in ancient Rome
+61962,pontifical,the vestments and other insignia of a pontiff (especially a bishop)
+61963,pontoon,(nautical) a floating structure (as a flat-bottomed boat) that serves as a dock or to support a bridge
+61964,pontoon,a float supporting a seaplane
+61965,pontoon_bridge bateau_bridge floating_bridge,a temporary bridge built over a series of pontoons
+61966,pony,an informal term for a racehorse; "he liked to bet on the ponies"
+61967,pony,any of various breeds of small gentle horses usually less than five feet high at the shoulder
+61968,pony,a range horse of the western United States
+61969,pony trot crib,a literal translation used in studying a foreign language (often used illicitly)
+61970,pony-trekking,a sport in which people ride across country on ponies
+61971,pony_cart ponycart donkey_cart tub-cart,a cart with an underslung axle and two seats
+61972,pony_express,express mail carried by relays of riders on horseback; especially between Missouri and California around 1860
+61973,ponytail,a hair style that draws the hair back so that it hangs down in back of the head like a pony's tail
+61974,pooch doggie doggy barker bow-wow,informal terms for dogs
+61975,pood,a Russian unit of weight equal to approximately 36 pounds
+61976,poodle poodle_dog,an intelligent dog with a heavy curly solid-colored coat that is usually clipped; an old breed sometimes trained as sporting dogs or as performing dogs
+61977,pool,any communal combination of funds; "everyone contributed to the pool"
+61978,pool,an organization of people or resources that can be shared; "a car pool"; "a secretarial pool"; "when he was first hired he was assigned to the pool"
+61979,pool,an excavation that is (usually) filled with water
+61980,pool kitty,the combined stakes of the betters
+61981,pool pocket_billiards,any of various games played on a pool table having 6 pockets
+61982,pool puddle,a small body of standing water (rainwater) or other liquid; "there were puddles of muddy water in the road after the rain"; "the body lay in a pool of blood"
+61983,pool puddle,something resembling a pool of liquid; "he stood in a pool of light"; "his chair sat in a puddle of books and magazines"
+61984,pool_ball,ball used in playing pool
+61985,pool_player,someone who shoots pool
+61986,pool_table billiard_table snooker_table,game equipment consisting of a heavy table on which pool is played
+61987,pooler,someone who shares in and contributes to a general fund for use by all
+61988,pooling_of_interest,an accounting method used in the merging of companies; the balance sheets are added together item by item; this method is tax-free
+61989,poolroom,a room with pool tables where pool is played
+61990,poon,wood of any poon tree; used for masts and spars
+61991,poon,any of several East Indian trees of the genus Calophyllum having shiny leathery leaves and lightweight hard wood
+61992,poop_deck,an exposed partial weather deck on the stern superstructure of a ship
+61993,poor_box alms_box mite_box,box for collecting alms, especially one in a church
+61994,poor_devil wretch,someone you feel sorry for
+61995,poor_law,a law providing support for the poor
+61996,poor_people poor,people without possessions or wealth (considered as a group); "the urban poor need assistance"
+61997,poor_person have-not,a person with few or no possessions
+61998,poor_rates,a local tax for the relief of the poor
+61999,poorhouse,an establishment maintained at public expense in order to provide housing for the poor and homeless
+62000,poorness,less than adequate; "the relative poorness of New England farmland"
+62001,poorness,the quality of being poorly made or maintained; "she was unrecognizable because of the poorness of the photography"
+62002,poorwill Phalaenoptilus_nuttallii,goatsucker of western North America
+62003,pop popping,a sharp explosive sound as from a gunshot or drawing a cork
+62004,pop soda soda_pop soda_water tonic,a sweet drink containing carbonated water and flavoring; "in New England they call sodas tonics"
+62005,pop-up_book pop-up,a book (usually for children) that contains one or more pages such that a three-dimensional structure rises up when a page is opened
+62006,pop_bottle soda_bottle,a bottle for holding soft drinks
+62007,pop_fly pop-fly pop-up,a short high fly ball
+62008,pop_group,a group that plays pop music
+62009,pop_music pop,music of general appeal to teenagers; a bland watered-down version of rock'n'roll with more rhythm and harmony and an emphasis on romantic love
+62010,pop_quiz,a quiz given without prior warning
+62011,pop_tent,a small tent that is easy to carry and quick to set up
+62012,popcorn,small kernels of corn exploded by heat
+62013,popcorn Zea_mays_everta,corn having small ears and kernels that burst when exposed to dry heat
+62014,popcorn_ball,popcorn combined with a thick sugar or molasses or caramel syrup and formed into balls
+62015,pope Catholic_Pope Roman_Catholic_Pope pontiff Holy_Father Vicar_of_Christ Bishop_of_Rome,the head of the Roman Catholic Church
+62016,popery papism,offensive terms for the practices and rituals of the Roman Catholic Church
+62017,popgun,plaything consisting of a toy gun that makes a popping sound
+62018,popinjay,a vain and talkative person (chatters like a parrot)
+62019,popinjay,an archaic term for a parrot
+62020,poplar,soft light-colored non-durable wood of the poplar
+62021,poplar poplar_tree,any of numerous trees of north temperate regions having light soft wood and flowers borne in catkins
+62022,poplin,a ribbed fabric used in clothing and upholstery
+62023,popliteal_artery arteria_poplitea,a continuation of the femoral artery that branches to supply the legs and feet
+62024,popliteal_vein vena_poplitea,a vein arising in the knee and ascending to become the femoral vein
+62025,popover,light hollow muffin made of a puff batter (individual Yorkshire pudding) baked in a deep muffin cup
+62026,popper,a container of stimulant drug (amyl nitrate or butyl nitrite)
+62027,popper,a container for cooking popcorn
+62028,poppet poppet_valve,a mushroom-shaped valve that rises perpendicularly from its seat; commonly used in internal-combustion engines
+62029,poppy,annual or biennial or perennial herbs having showy flowers
+62030,poppy_mallow,a plant of the genus Callirhoe having palmately cleft leaves and white to red or purple flowers borne throughout the summer
+62031,poppy_seed,small grey seed of a poppy flower; used whole or ground in baked items
+62032,populace public world,people in general considered as a whole; "he is a hero in the eyes of the public"
+62033,popular_front,a leftist coalition organized against a common opponent
+62034,popular_music popular_music_genre,any genre of music having wide appeal (but usually only for a short time)
+62035,popularism,music adapted to the understanding and taste of the majority
+62036,popularity,the quality of being widely admired or accepted or sought after; "his charm soon won him affection and popularity"; "the universal popularity of American movies"
+62037,popularity_contest,competition (real or figurative) for popular support
+62038,popularization popularisation,an interpretation that easily understandable and acceptable
+62039,popularization popularisation vulgarization vulgarisation,the act of making something attractive to the general public
+62040,popularizer populariser vulgarizer vulgariser,someone who makes something attractive to the general public
+62041,population,the number of inhabitants (either the total number or the number of a particular race or class) in a given place (country or city etc.); "people come and go, but the population of this town has remained approximately constant for the past decade"; "the African-American population of Salt Lake City has been increasing"
+62042,population,the people who inhabit a territory or state; "the population seemed to be well fed and clothed"
+62043,population,a group of organisms of the same species inhabiting a given area; "they hired hunters to keep down the deer population"
+62044,population,the act of populating (causing to live in a place); "he deplored the population of colonies with convicted criminals"
+62045,population universe,(statistics) the entire aggregation of items from which samples can be drawn; "it is an estimate of the mean of the population"
+62046,population_control,control over the growth of population; a government program
+62047,population_growth,increase in the number of people who inhabit a territory or state
+62048,population_profile,a chart showing the number of people as a function of their ages
+62049,population_shift,a change in the relative numbers of the different groups of individuals making up a population
+62050,populism,the political doctrine that supports the rights and powers of the common people in their struggle with the privileged elite
+62051,populist,someone who advocates the rights of the common people over those of the elite
+62052,porbeagle Lamna_nasus,voracious pointed-nose shark of northern Atlantic and Pacific
+62053,porcelain,ceramic ware made of a more or less translucent ceramic
+62054,porch,a structure attached to the exterior of a building often forming a covered entrance
+62055,porcupine hedgehog,relatively large rodents with sharp erectile bristles mingled with the fur
+62056,porcupine_ball porcupines,meat patties rolled in rice and simmered in a tomato sauce
+62057,porcupinefish porcupine_fish Diodon_hystrix,spines become erect when the body is inflated; worldwide in warm waters
+62058,pore,any tiny hole admitting passage of a liquid (fluid or gas)
+62059,pore,any small opening in the skin or outer surface of an animal
+62060,porgy,important deep-bodied food and sport fish of warm and tropical coastal waters; found worldwide
+62061,porgy scup,lean flesh of fish found in warm waters of southern Atlantic coast of the United States
+62062,pork porc,meat from a domestic hog or pig
+62063,pork-and-veal_goulash,made with sauerkraut and caraway seeds and served with sour cream
+62064,pork-barreling,acquisition of government money for benefits to a specific locale; "keeps his hold on his constituents through unashamed pork-barreling"
+62065,pork_and_beans,dried beans cooked with pork and tomato sauce
+62066,pork_barrel pork,a legislative appropriation designed to ingratiate legislators with their constituents
+62067,pork_belly,side of fresh pork
+62068,pork_butcher,a vendor of pork and products made from pork
+62069,pork_loin,meat from a loin of pork
+62070,pork_pie,small pie filled with minced seasoned pork
+62071,pork_roast roast_pork,cut of pork suitable for roasting
+62072,pork_sausage,sausage containing pork
+62073,pork_tenderloin,pork loin muscle
+62074,porkchop,chop cut from a hog
+62075,porker,a pig fattened to provide meat
+62076,porkfish pork-fish Anisotremus_virginicus,black and gold grunt found from Bermuda to Caribbean to Brazil
+62077,porkholt,made of lamb or pork
+62078,porkpie porkpie_hat,man's hat with a low, flat crown and a snap brim
+62079,pornographer porn_merchant,someone who presents shows or sells writing or pictures that are sexually explicit in violation of the community mores
+62080,pornography porno porn erotica smut,creative activity (writing or pictures or films etc.) of no literary or artistic value other than to stimulate sexual desire
+62081,porosity porousness,the property of being porous; being able to absorb fluids
+62082,porphyria,a genetic abnormality of metabolism causing abdominal pains and mental confusion
+62083,porphyrin,any of various pigments distributed widely in living tissues
+62084,porphyry porphyritic_rock,any igneous rock with crystals embedded in a finer groundmass of minerals
+62085,porpoise,any of several small gregarious cetacean mammals having a blunt snout and many teeth
+62086,porpoise_oil,a yellow fatty oil obtained from porpoises and used as a fine lubricant
+62087,porridge,soft food made by boiling oatmeal or other meal or legumes in water or milk until thick
+62088,porringer,a shallow metal bowl (usually with a handle); "the child was eating pottage from a porringer"
+62089,port,a place (seaport or airport) where people and merchandise can enter or leave a country
+62090,port embrasure porthole,an opening (in a wall or ship or armored vehicle) for firing through
+62091,port port_wine,sweet dark-red dessert wine originally from Portugal
+62092,port-access_coronary_bypass_surgery,heart surgery in which a coronary bypass is performed by the use of small instruments and tiny cameras threaded through small incisions while the heart is stopped and blood is pumped through a heart-lung machine
+62093,port-wine_stain nevus_flammeus,a flat birthmark varying from pink to purple
+62094,port_of_call,any port where a ship stops except its home port
+62095,port_of_entry point_of_entry,a port in the United States where customs officials are stationed to oversee the entry and exit of people and merchandise
+62096,porta_hepatis,opening for major blood vessels to enter and leave the liver
+62097,portability,the quality of being light enough to be carried
+62098,portable,a small light typewriter; usually with a case in which it can be carried
+62099,portable_circular_saw portable_saw,a circular saw that is portable and is operated with a hand grip
+62100,portable_computer,a personal computer that can easily be carried by hand
+62101,portacaval_shunt,shunt that is created surgically between the portal vein and the inferior vena cava so that blood from the abdominal organs can bypass the liver
+62102,portage,the cost of carrying or transporting
+62103,portage,overland track between navigable waterways
+62104,portage,carrying boats and supplies overland
+62105,portal,a grand and imposing entrance (often extended metaphorically); "the portals of the cathedral"; "the portals of heaven"; "the portals of success"
+62106,portal_hypertension,increase in blood pressure in the veins of the portal system caused by obstruction in the liver (often associated with alcoholic cirrhosis), causing enlargement of the spleen and collateral veins
+62107,portal_site portal,a site that the owner positions as an entrance to other sites on the internet; "a portal typically has search engines and free email and chat rooms etc."
+62108,portal_system,system of veins that carry blood from the abdominal organs to the liver
+62109,portal_vein hepatic_portal_vein portal vena_portae,a short vein that carries blood into the liver
+62110,portcullis,gate consisting of an iron or wooden grating that hangs in the entry to a castle or fortified town; can be lowered to prevent passage
+62111,porte-cochere,a carriage entrance passing through a building to an enclosed courtyard
+62112,porte-cochere,canopy extending out from a building entrance to shelter those getting in and out of vehicles
+62113,porter,a person employed to carry luggage and supplies
+62114,porter Pullman_porter,a railroad employee who assists passengers (especially on sleeping cars)
+62115,porter porter's_beer,a very dark sweet ale brewed from roasted unmalted barley
+62116,porterage,the charge for carrying burdens by porters
+62117,porterage,the transportation of burdens by porters
+62118,porterhouse porterhouse_steak,large steak from the thick end of the short loin containing a T-shaped bone and large piece of tenderloin
+62119,portfolio,a set of pieces of creative work collected to be shown to potential customers or employers; "the artist had put together a portfolio of his work"; "every actor has a portfolio of photographs"
+62120,portfolio,a list of the financial assets held by an individual or a bank or other financial institution; "they were disappointed by the poor returns on their stock portfolio"
+62121,portfolio,a large, flat, thin case for carrying loose papers or drawings or maps; usually leather; "he remembered her because she was carrying a large portfolio"
+62122,portfolio,the role of the head of a government department; "he holds the portfolio for foreign affairs"
+62123,porthole,a window in a ship or airplane
+62124,portia_tree bendy_tree seaside_mahoe Thespesia_populnea,pantropical tree of usually seacoasts sometimes cultivated as an ornamental for its rounded heart-shaped leaves and showy yellow and purple flowers; yields valuable pink to dark red close-grained wood and oil from its seeds
+62125,portico,a porch or entrance to a building consisting of a covered and often columned area
+62126,portiere,a heavy curtain hung across a doorway
+62127,portmanteau Gladstone Gladstone_bag,a large travelling bag made of stiff leather
+62128,portrait portrayal,any likeness of a person, in any medium; "the photographer made excellent portraits"
+62129,portrait_camera,a camera with a portrait lens
+62130,portrait_lens,a compound camera lens with a relatively high aperture
+62131,portraitist portrait_painter portrayer limner,a painter or drawer of portraits
+62132,portraiture,the activity of making portraits
+62133,portrayal characterization enactment personation,acting the part of a character on stage; dramatically representing the character by speech and action and gesture
+62134,portrayal portraiture portrait,a word picture of a person's appearance and character
+62135,portulaca,a plant of the genus Portulaca having pink or red or purple or white ephemeral flowers
+62136,portwatcher port_watcher,a watchman on a wharf
+62137,pose,a posture assumed by models for photographic or artistic purposes
+62138,poser stumper toughie sticker,a particularly difficult or baffling question or problem
+62139,poseur poser,a person who habitually pretends to be something he is not
+62140,poseuse,a woman poseur
+62141,position,the appropriate or customary location; "the cars were in position"
+62142,position,(in team sports) the role assigned to an individual player; "what position does he play?"
+62143,position,the act of positing; an assumption taken as a postulate or axiom
+62144,position place,the particular portion of space occupied by something; "he put the lamp back in its place"
+62145,position post berth office spot billet place situation,a job in an organization; "he occupied a post in the treasury"
+62146,position posture attitude,the arrangement of the body and its limbs; "he assumed an attitude of surrender"
+62147,position spatial_relation,the spatial property of a place where or way in which something is situated; "the position of the hands on the clock"; "he specified the spatial relations of every piece of furniture on the stage"
+62148,position stance posture,a rationalized mental attitude
+62149,position view perspective,a way of regarding situations or topics etc.; "consider what follows from the positivist view"
+62150,position_effect,(genetics) the effect on the expression of a gene that is produced by changing its location in a chromosome
+62151,position_paper,a report that explains or justifies or recommends some particular policy
+62152,positional_notation positional_representation_system,a numeration system in which a real number is represented by an ordered set of characters where the value of a character depends on its position
+62153,positive,a film showing a photographic image whose tones correspond to those of the original subject
+62154,positive positive_degree,the primary form of an adjective or adverb; denotes a quality without qualification, comparison, or relation to increase or diminution
+62155,positive_charge,having a deficiency of electrons; having a higher electric potential
+62156,positive_chemotaxis,movement toward a chemical stimulus
+62157,positive_correlation direct_correlation,a correlation in which large values of one variable are associated with large values of the other and small with small; the correlation coefficient is between 0 and +1
+62158,positive_feedback regeneration,feedback in phase with (augmenting) the input
+62159,positive_identification,evidence proving that you are who you say you are; evidence establishing that you are among the group of people already known to the system; recognition by the system leads to acceptance; "a system for positive identification can prevent the use of a single identity by several people"
+62160,positive_pole,the terminal of a battery that is connected to the positive plate
+62161,positive_pole positive_magnetic_pole north-seeking_pole,the pole of a magnet that points toward the north when the magnet is suspended freely
+62162,positive_reinforcing_stimulus positive_reinforcer,a reinforcing stimulus that serves to increase the likelihood of the response that produces it
+62163,positive_stimulus,a stimulus with desirable consequences
+62164,positivism logical_positivism,the form of empiricism that bases all knowledge on perceptual experience (not on intuition or revelation)
+62165,positivist rationalist,someone who emphasizes observable facts and excludes metaphysical speculation about origins or ultimate causes
+62166,positivity positiveness,the character of the positive electric pole
+62167,positivity positiveness,an amount greater than zero
+62168,positivity positiveness positivism,a quality or state characterized by certainty or acceptance or affirmation and dogmatic assertiveness
+62169,positron antielectron,an elementary particle with positive charge; interaction of a positron and an electron results in annihilation
+62170,positron_emission_tomography PET,using a computerized radiographic technique to examine the metabolic activity in various tissues (especially in the brain)
+62171,positron_emission_tomography_scanner PET_scanner,a tomograph that produces cross-sectional X-rays of metabolic processes in the body
+62172,posology,the pharmacological determination of appropriate doses of drugs and medicines
+62173,posse posse_comitatus,a temporary police force
+62174,posseman,an able-bodied man serving as a member of a posse
+62175,possession,being controlled by passion or the supernatural
+62176,possession,a territory that is controlled by a ruling state
+62177,possession,(sport) the act of controlling the ball (or puck); "they took possession of the ball on their own goal line"
+62178,possession,anything owned or possessed
+62179,possession ownership,the act of having and controlling property
+62180,possessiveness,excessive desire to possess or dominate
+62181,posset,sweet spiced hot milk curdled with ale or beer
+62182,possibility,a future prospect or potential; "this room has great possibilities"
+62183,possibility possible_action opening,a possible alternative; "bankruptcy is always a possibility"
+62184,possibility possibleness,capability of existing or happening or being true; "there is a possibility that his sense of smell has been impaired"
+62185,possible,an applicant who might be suitable
+62186,possible,something that can be done; "politics is the art of the possible"
+62187,post,an upright consisting of a piece of timber or metal fixed firmly in an upright position; "he set a row of posts in the ground and strung barbwire between them"
+62188,post,the delivery and collection of letters and packages; "it came by the first post"; "if you hurry you'll catch the post"
+62189,post stake,a pole or stake set up to mark something (as the start or end of a race track); "a pair of posts marked the goal"; "the corner of the lot was indicated by a stake"
+62190,post station,the position where someone (as a guard or sentry) stands or is assigned to stand; "a soldier manned the entrance post"; "a sentry station"
+62191,post-maturity post-menopause,the state in which women have stopped ovulating
+62192,post-obit_bond,a bond made by a reversioner to secure a loan; payable out of his reversion
+62193,post-office_box_number PO_box_number PO_Box_No box_number,the number of a letter box at the post office where mail is collected
+62194,post-rotational_nystagmus,nystagmus caused by suddenly stopping the rapid rotation of the body; large slow movements of the eyeballs are in the direction opposite to the direction of rotation
+62195,post_and_lintel,a structure consisting of vertical beams (posts) supporting a horizontal beam (lintel)
+62196,post_chaise,closed horse-drawn carriage with four wheels; formerly used to transport passengers and mail
+62197,post_exchange PX,a commissary on a United States Army post
+62198,post_hoc post_hoc_ergo_propter_hoc,the logical fallacy of believing that temporal succession implies a causal relation
+62199,post_horn,wind instrument used by postilions of the 18th and 19th centuries
+62200,post_horse post-horse poster,a horse kept at an inn or post house for use by mail carriers or for rent to travelers
+62201,post_oak box_white_oak brash_oak iron_oak Quercus_stellata,small deciduous tree of eastern and central United States having dark green lyrate pinnatifid leaves and tough moisture-resistant wood used especially for fence posts
+62202,post_office,a children's game in which kisses are exchanged for pretended letters
+62203,post_office local_post_office,a local branch where postal services are available
+62204,post_road,a road over which mail is carried
+62205,postage,the charge for mailing something
+62206,postage postage_stamp stamp,a small adhesive token stuck on a letter or package to indicate that that postal fees have been paid
+62207,postage_meter,meter for bulk mailings that imprints correct prepaid postage on pieces of mail and records the total charge
+62208,postal_clerk mail_clerk,a clerk in a post office
+62209,postbox mailbox letter_box,public box for deposit of mail
+62210,postcard post_card postal_card mailing-card,a card for sending messages by post without an envelope
+62211,postcentral_gyrus,the convolution of parietal lobe that is bounded in front by the central sulcus
+62212,postdiluvian,anything living after Noah's flood
+62213,postdoc post_doc,a scholar or researcher who is involved in academic study beyond the level of a doctoral degree
+62214,postdoctoral postdoc post_doc,a grant that funds postdoctoral study or research
+62215,poste_restante,a notation written on mail that is to be held at the post office until called for (not in the United States or Canada)
+62216,poster posting placard notice bill card,a sign posted in a public place as an advertisement; "a poster advertised the coming attractions"
+62217,poster_boy,a male poster child
+62218,poster_child,a child afflicted by some disease or deformity whose picture is used on posters to raise money for charitable purposes; "she was the poster child for muscular dystrophy"
+62219,poster_girl,a female poster child
+62220,posterior_cardinal_vein,a major drainage channel from the caudal part of the body
+62221,posterior_cerebral_artery,arises from the basilar artery; divides into three branches
+62222,posterior_meningeal_artery,branch of the ascending pharyngeal artery that supplies the dura mater of the posterior cranial fossa
+62223,posterior_naris,either one of the two posterior openings at the back of the nasal cavity leading to the nasopharynx
+62224,posterior_pituitary posterior_pituitary_gland neurohypophysis pars_nervosa,the posterior lobe of the pituitary body; primarily glandular in nature
+62225,posterior_serratus_muscle serratus_posterior musculus_serratus_posterior,skeletal muscle that draws the rib cage backward and downward
+62226,posterior_subcapsular_cataract,a cataract in the rear of the lens capsule
+62227,posterior_synechia,adhesion between the iris and the lens
+62228,posterior_temporal_artery arteria_temporalis_posterior,temporal artery that supplies the posterior part of the cortex of the temporal lobe
+62229,posterior_vein_of_the_left_ventricle vena_posterior_ventriculi_sinistri,arises near the apex of the heart and empties into the coronary sinus
+62230,posteriority,the quality of being toward the back or toward the rear end
+62231,posteriority subsequentness subsequence,following in time
+62232,posterity,all future generations
+62233,postern,a small gate in the rear of a fort or castle
+62234,postfix_notation suffix_notation reverse_Polish_notation,a parenthesis-free notation for forming mathematical expressions in which each operator follows its operands
+62235,posthitis,inflammation of the foreskin of the penis; usually caused by bacterial infection
+62236,posthole post_hole,a hole dug in the ground to hold a fence post
+62237,posthole_digger post-hole_digger,a shovel used to sink postholes
+62238,posthouse post_house,an inn for exchanging post horses and accommodating riders
+62239,posthumous_birth,birth of a child after the father has died
+62240,posthumous_birth,birth of a child by Caesarean section after the death of the mother
+62241,posthypnotic_amnesia,selective amnesia after being in a hypnotic state of events occurring during hypnosis or of information designated by the hypnotist
+62242,posthypnotic_suggestion,a suggestion that is made to a person who is hypnotized that specifies an action he will perform (usually in response to a cue) after he has awakened
+62243,postilion postillion,someone who rides the near horse of a pair in order to guide the horses pulling a carriage (especially a carriage without a coachman)
+62244,posting,(bookkeeping) a listing on the company's records; "the posting was made in the cash account"
+62245,postlude,a voluntary played at the end of a religious service
+62246,postmark,a cancellation mark stamped on mail by postal officials; indicates the post office and date of mailing
+62247,postmaster,the person in charge of a post office
+62248,postmaster_general,the official in charge of the national postal service
+62249,postmature_infant,infant born after 42 weeks of gestation; usually shows signs of placental insufficiency
+62250,postmistress,a woman postmaster
+62251,postmodernism,genre of art and literature and especially architecture in reaction against principles and practices of established modernism
+62252,postmortem post-mortem,discussion of an event after it has occurred
+62253,postnasal_drip,chronic secretion of mucus from the rear of the nasal cavity into the nasopharynx
+62254,postponement deferment deferral,act of putting off to a future time
+62255,postposition,(linguistics) the placing of one linguistic element after another (as placing a modifier after the word that it modifies in a sentence or placing an affix after the base to which it is attached)
+62256,postscript PS,a note appended to a letter after the signature
+62257,posttraumatic_epilepsy traumatic_epilepsy,a convulsive epileptic state caused by a head injury
+62258,posttraumatic_stress_disorder PTSD,an anxiety disorder associated with serious traumatic events and characterized by such symptoms as survivor guilt, reliving the trauma in dreams, numbness and lack of involvement with reality, or recurrent thoughts and images
+62259,postulant,one submitting a request or application especially one seeking admission into a religious order
+62260,postulate posit,(logic) a proposition that is accepted as true in order to provide a basis for logical reasoning
+62261,postulation predication,(logic) a declaration of something self-evident; something that can be assumed as the basis for argument
+62262,postulator,(Roman Catholic Church) someone who proposes or pleads for a candidate for beatification or canonization
+62263,postulator,someone who assumes or takes something for granted as the basis of an argument
+62264,posturer,someone who behaves in a manner calculated to impress or mislead others
+62265,posturing,adopting a vain conceited posture
+62266,pot,metal or earthenware cooking vessel that is usually round and deep; often has a handle and lid
+62267,pot flowerpot,a container in which plants are cultivated
+62268,pot grass green_goddess dope weed gage sess sens smoke skunk locoweed Mary_Jane,street names for marijuana
+62269,pot jackpot kitty,the cumulative amount involved in a game (such as poker)
+62270,pot potbelly bay_window corporation tummy,slang for a paunch
+62271,pot potful,the quantity contained in a pot
+62272,pot-au-feu,traditional French stew of vegetables and beef
+62273,pot_farm,a plot of ground where marijuana is grown and harvested (often hidden in a national forest)
+62274,pot_metal,cast iron used for making cooking wares
+62275,pot_metal,an alloy of copper and lead used especially for making large pots
+62276,pot_plant,a plant suitable for growing in a flowerpot (especially indoors)
+62277,pot_roast,cut of beef suitable for simmering in liquid in a closed pot
+62278,potage pottage,thick (often creamy) soup
+62279,potash caustic_potash potassium_hydroxide,a potassium compound often used in agriculture and industry
+62280,potassium K atomic_number_19,a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite
+62281,potassium-argon_dating,geological dating that relies on the proportions of radioactive potassium in a rock sample and its decay product, argon
+62282,potassium_bicarbonate potassium_acid_carbonate potassium_hydrogen_carbonate,a crystalline salt (KHCO3) that is used in baking powder and as an antacid
+62283,potassium_bromide,a white crystalline salt (KBr) used as a sedative and in photography
+62284,potassium_carbonate,a white salt (K2CO3) that is basic in solution; used to make glass and cleansing agents
+62285,potassium_chlorate,a white salt (KClO3) used in matches, fireworks, and explosives; also used as a disinfectant and bleaching agent
+62286,potassium_chloride potassium_muriate potash_muriate K-Dur_20 Kaochlor K-lor Klorvess K-lyte,salt of potassium (KCl) (trade names K-Dur 20, Kaochlor and K-lor and Klorvess and K-lyte); taken in tablet form to treat potassium deficiency
+62287,potassium_cyanide,a poisonous salt (KCN) used in electroplating and in photography
+62288,potassium_dichromate,an orange-red salt used in making dyes and in photography
+62289,potassium_ferrocyanide yellow_prussiate_of_potash,a cyanide compound that is prepared by the reaction of potassium cyanide with ferrous salts; commonly used by gardeners
+62290,potassium_iodide,a crystalline salt in organic synthesis and in making photographic emulsions and in iodized table salt
+62291,potassium_nitrate saltpeter saltpetre niter nitre,(KNO3) used especially as a fertilizer and explosive
+62292,potassium_permanganate permanganate_of_potash,a poisonous salt that forms dark purple crystals and is purple-red when dissolved in water; used as an oxidizing and bleaching agent and as a disinfectant and antiseptic
+62293,potation,the act of drinking (especially an alcoholic drink)
+62294,potato white_potato Irish_potato murphy spud tater,an edible tuber native to South America; a staple food of Ireland
+62295,potato white_potato white_potato_vine Solanum_tuberosum,annual native to South America having underground stolons bearing edible starchy tubers; widely cultivated as a garden vegetable; vines are poisonous
+62296,potato_blight potato_mold potato_disease potato_mildew potato_murrain,a blight of potatoes
+62297,potato_fern Marattia_salicina,large Australasian evergreen fern with an edible rhizome sometimes used as a vegetable by indigenous people
+62298,potato_fern Solanopteris_bifrons,small epiphytic fern of South America with tuberous swellings along rhizomes
+62299,potato_fungus Pellicularia_filamentosa Rhizoctinia_solani,fungus causing a disease in potatoes characterized by black scurfy spots on the tubers
+62300,potato_mosaic,a disease of the leaves of potato plants
+62301,potato_moth potato_tuber_moth splitworm Phthorimaea_operculella,greyish-brown moth whose larva is the potato tuberworm
+62302,potato_pancake latke,made of grated potato and egg with a little flour
+62303,potato_race,a novelty race in which competitors move potatoes from one place to another one at a time
+62304,potato_salad,any of various salads having chopped potatoes as the base
+62305,potato_scab_bacteria Streptomyces_scabies,cause of a potato disease characterized by brownish corky tissue
+62306,potato_skin potato_peel potato_peelings,crisp fried potato peeling
+62307,potato_tree Brazilian_potato_tree Solanum_wrightii Solanum_macranthum,South American shrub or small tree widely cultivated in the tropics; not a true potato
+62308,potato_tree Solanum_crispum,hardy climbing shrub of Chile grown as an ornamental for its fragrant flowers; not a true potato
+62309,potato_tuberworm Phthorimaea_operculella,larva of potato moth; mines in leaves and stems of e.g. potatoes and tobacco
+62310,potato_vine Solanum_jasmoides,copiously branched vine of Brazil having deciduous leaves and white flowers tinged with blue
+62311,potato_vine giant_potato_creeper Solanum_wendlandii,vine of Costa Rica sparsely armed with hooklike spines and having large lilac-blue flowers
+62312,potato_wart,fungous disease causing dark warty spongy excrescences in the eyes of potato tubers
+62313,potato_wart_fungus Synchytrium_endobioticum,fungus causing potato wart disease in potato tubers
+62314,potato_yellow-dwarf_virus,the virus that produces stunting and yellowing of the leaves of potato plants
+62315,potbelly potbelly_stove,a bulbous stove in which wood or coal is burned
+62316,potboiler,a literary composition of poor quality that was written quickly to make money (to boil the pot)
+62317,potboy potman,a worker in an inn or public house who serves customers and does various chores
+62318,poteen,unlawfully distilled Irish whiskey
+62319,potency effectiveness strength,capacity to produce strong physiological or chemical effects; "the toxin's potency"; "the strength of the drinks"
+62320,potency potence,the state of being potent; a male's capacity to have sexual intercourse
+62321,potential potentiality potency,the inherent capacity for coming into being
+62322,potential_divider voltage_divider,resistors connected in series across a voltage source; used to obtain a desired fraction of the voltage
+62323,potential_energy P.E.,the mechanical energy that a body has by virtue of its position; stored energy
+62324,potential_unit,a measure of the potential energy of a unit charge at a given point in a circuit relative to a reference point (ground)
+62325,potentiation,(medicine) the synergistic effect of two drugs given simultaneously
+62326,potentiometer,a measuring instrument for measuring direct current electromotive forces
+62327,potentiometer pot,a resistor with three terminals, the third being an adjustable center terminal; used to adjust voltages in radios and TV sets
+62328,pothead,someone who smokes marijuana habitually
+62329,potherb,any of various herbaceous plants whose leaves or stems or flowers are cooked and used for food or seasoning
+62330,potholder,an insulated pad for holding hot pots
+62331,pothole chuckhole,a pit or hole produced by wear or weathering (especially in a road surface)
+62332,potholer spelunker speleologist spelaeologist,a person who explores caves
+62333,pothook,an S-shaped hook to suspend a pot over a fire
+62334,pothos,any of various tropical lianas of the genus Scindapsus
+62335,pothunter,a nonprofessional archeologist
+62336,pothunter,someone who participates in contests in order to collect trophies
+62337,pothunter,someone who hunts for food (not for sport)
+62338,potion,a medicinal or magical or poisonous beverage
+62339,potlatch,a ceremonial feast held by some Indians of the northwestern coast of North America (as in celebrating a marriage or a new accession) in which the host gives gifts to tribesmen and others to display his superior wealth (sometimes, formerly, to his own impoverishment)
+62340,potluck,whatever happens to be available especially when offered to an unexpected guest or when brought by guests and shared by all; "having arrived unannounced we had to take potluck"; "a potluck supper"
+62341,potoroo,Australian rat kangaroos
+62342,potpie,deep-dish meat and vegetable pie or a meat stew with dumplings
+62343,potpourri,a jar of mixed flower petals and spices used as perfume
+62344,potsherd,a shard of pottery
+62345,potshot,criticism aimed at an easy target and made without careful consideration; "reporters took potshots at the mayor"
+62346,potshot,a shot taken at an easy or casual target (as by a pothunter)
+62347,pottage,a stew of vegetables and (sometimes) meat
+62348,potter thrower ceramicist ceramist,a craftsman who shapes pottery on a potter's wheel and bakes them it a kiln
+62349,potter's_clay potter's_earth,clay that does not contain any iron; used in making pottery or for modeling
+62350,potter's_field,a cemetery for unknown or indigent people
+62351,potter's_wheel,a horizontal rotating wheel holding the clay being shaped by a potter; "the potter's wheel was invented in Asia Minor around 6500 BC"
+62352,potter_bee,solitary bee that builds nests of mud or pebbles cemented together and attached to a plant
+62353,potter_wasp,any of various solitary wasps that construct vase-shaped cells of mud for their eggs
+62354,pottery,a workshop where clayware is made
+62355,pottery,the craft of making earthenware
+62356,pottery clayware,ceramic ware made from clay and baked in a kiln
+62357,pottle,a pot that holds 2 quarts
+62358,potto kinkajou Perodicticus_potto,a kind of lemur
+62359,potty_seat potty_chair,toilet consisting of a small seat used by young children
+62360,pouch,a small or medium size container for holding or carrying things
+62361,pouch pocket,(anatomy) saclike structure in any of various animals (as a marsupial or gopher or pelican)
+62362,pouch sac sack pocket,an enclosed space; "the trapped miners found a pocket of air"
+62363,pouched_mole marsupial_mole Notoryctus_typhlops,small burrowing Australian marsupial that resembles a mole
+62364,pouched_mouse marsupial_mouse marsupial_rat,any of numerous small sharp-nosed insectivorous marsupials superficially resembling mice or rats
+62365,poulette,allemande sauce with chopped parsley
+62366,poultice cataplasm plaster,a medical dressing consisting of a soft heated mass of meal or clay that is spread on a cloth and applied to the skin to treat inflamed areas or improve circulation etc.
+62367,poultry,flesh of chickens or turkeys or ducks or geese raised for food
+62368,poultryman poulterer,a dealer in poultry and poultry products
+62369,pounce,the act of pouncing
+62370,pound,a unit of apothecary weight equal to 12 ounces troy
+62371,pound dog_pound,a public enclosure for stray or unlicensed dogs; "unlicensed dogs will be taken to the pound"
+62372,pound lb,16 ounces avoirdupois; "he got a hernia when he tried to lift 100 pounds"
+62373,pound lbf.,a nontechnical unit of force equal to the mass of 1 pound with an acceleration of free fall equal to 32 feet/sec/sec
+62374,pound pound_sign,a symbol for a unit of currency (especially for the pound sterling in Great Britain)
+62375,pound_cake,rich loaf cake made of a pound each of butter and sugar and flour
+62376,pound_net,trap consisting of an arrangement of nets directing fish into an enclosure
+62377,poundage,a charge based on weight measured in pounds
+62378,poundage,a fee charged for the recovery of impounded animals
+62379,poundage,weight expressed in pounds
+62380,poundal pdl,a unit of force equal to the force that imparts an acceleration of 1 foot/sec/sec to a mass of 1 pound; equal to 0.1382 newtons
+62381,pounder,(used only in combination) something weighing a given number of pounds; "the fisherman caught a 10-pounder"; "their linemen are all 300-pounders"
+62382,pounding buffeting,repeated heavy blows
+62383,pounds_per_square_inch psi,a unit of pressure
+62384,pousse-cafe,small drink served after dinner (especially several liqueurs poured carefully so as to remain in separate layers)
+62385,pout moue wry_face,a disdainful grimace
+62386,pouter_pigeon pouter,one of a breed of pigeon that enlarge their crop until their breast is puffed out
+62387,poverty poorness impoverishment,the state of having little or no money and few or no material possessions
+62388,poverty_line poverty_level,a level of personal income defining the state of poverty
+62389,poverty_trap,a situation in which an increase in income results in a loss of benefits so that you are no better off
+62390,powder,any of various cosmetic or medical preparations dispensed in the form of a pulverized powder
+62391,powder pulverization pulverisation,a solid substance in the form of tiny loose particles; a solid that has been pulverized
+62392,powder-post_termite Cryptotermes_brevis,extremely destructive dry-wood termite of warm regions
+62393,powder_and_shot,ammunition consisting of gunpowder and bullets for muskets
+62394,powder_blue,a pale blue color with grey in it
+62395,powder_horn powder_flask,container for carrying gunpowder; made of the hollow horn of an animal
+62396,powder_keg,a potentially explosive state
+62397,powder_keg,keg (usually made of metal) for gunpowder or blasting powder
+62398,powder_metallurgy,the metallurgy of powdered metals; how to produce solid metal objects from powdered metal by compaction and sintering
+62399,powder_monkey,someone who carries explosives (as from the magazine to the guns on board a warship)
+62400,powder_photography powder_method powder_technique,a process for identifying minerals or crystals; a small rod is coated with a powdered form of the substance and subjected to suitably modified X-rays; the pattern of diffracted rings is used for identification
+62401,powdered_milk dry_milk dried_milk milk_powder,dehydrated milk
+62402,powdered_mustard dry_mustard,a substance such that one to three tablespoons dissolved in a glass of warm water is a homemade emetic
+62403,powdered_sugar,sugar granulated into a fine powder
+62404,powderer,someone who applies or scatters powder
+62405,powderpuff puff,a soft spherical object made from fluffy fibers; for applying powder to the skin
+62406,powdery_mildew,any of various fungi of the genus Erysiphe producing powdery conidia on the host surface
+62407,power,(physics) the rate of doing work; measured in watts (= joules/second)
+62408,power force,one possessing or exercising power or influence or authority; "the mysterious presence of an evil power"; "may the force be with you"; "the forces of evil"
+62409,power powerfulness,possession of controlling influence; "the deterrent power of nuclear weapons"; "the power of his love saved her"; "his powerfulness was concealed by a gentle facade"
+62410,power_brake,a brake on an automobile that magnifies a small force applied to the brake pedal into a proportionately larger force applied to slow or stop the vehicle
+62411,power_breakfast,a meeting of influential people to conduct business while eating breakfast
+62412,power_broker powerbroker,a person who is important by virtue of the people or votes they control; "a power broker who does you a favor will expect you to return it"
+62413,power_company power_service electric_company light_company,a public utility that provides electricity
+62414,power_cord,a cord to conduct power to an electrical appliance
+62415,power_couple,a couple both of whom have high-powered careers or are politically influential
+62416,power_dive,a dive of an airplane that is accelerated both by gravity and by the power of the engine
+62417,power_drill,a power tool for drilling holes into hard materials
+62418,power_hunger status_seeking,a drive to acquire power
+62419,power_line power_cable,cable used to distribute electricity
+62420,power_loading,the ratio of the weight of an airplane to its engine power
+62421,power_loom,a loom operated mechanically
+62422,power_module,module that provides power to operate other modules
+62423,power_mower motor_mower,a lawn mower powered by a gasoline motor
+62424,power_of_appointment,authority given (in a will or deed) by a donor to a donee to appoint the beneficiaries of the donor's property
+62425,power_of_attorney,a legal instrument authorizing someone to act as the grantor's agent
+62426,power_outage power_failure,equipment failure resulting when the supply of power fails; "the ice storm caused a power outage"
+62427,power_pack,a device for converting a power supply to a voltage required by particular equipment
+62428,power_play,a play in which there is a concentration of players in one location on the field of play; "they used a power play to return the kickoff"
+62429,power_play,(ice hockey) a play in which one team has a numerical advantage over the other as a result of penalties; "the team was unable to capitalize on the power play"
+62430,power_play squeeze_play squeeze,an aggressive attempt to compel acquiescence by the concentration or manipulation of power; "she laughed at this sexual power play and walked away"
+62431,power_politics gunboat_diplomacy,diplomacy in which the nations threaten to use force in order to obtain their objectives
+62432,power_saw saw sawing_machine,a power tool for cutting wood
+62433,power_series,the sum of terms containing successively higher integral powers of a variable
+62434,power_shovel excavator digger shovel,a machine for excavating
+62435,power_station power_plant powerhouse,an electrical generating station
+62436,power_steering power-assisted_steering,automotive steering where engineer power amplifies the torque applied to the steering wheel
+62437,power_system power_grid grid,a system of high tension cables by which electrical power is distributed throughout a region
+62438,power_takeoff PTO,a device that transfers power from an engine (as in a tractor or other motor vehicle) to another piece of equipment (as to a pump or jackhammer)
+62439,power_tool,a tool driven by a motor
+62440,power_trip,(slang) a self-aggrandizing action undertaken simply for the pleasure of exercising control over other people
+62441,power_unit,a measure of electric power
+62442,power_user,(computing) a computer user who needs the fastest and most powerful computers available
+62443,power_walking,a form of cardiopulmonary exercise consisting of rapid walking accompanied by vigorous swinging of the arms
+62444,power_worker power-station_worker,a worker at a power station
+62445,powerhouse,a team considered to be the best of its class
+62446,powerhouse human_dynamo ball_of_fire fireball,a highly energetic and indefatigable person
+62447,powerlessness impotence impotency,the quality of lacking strength or power; being weak and feeble
+62448,powwow,a council of or with Native Americans
+62449,pox,a contagious disease characterized by purulent skin eruptions that may leave pock marks
+62450,poxvirus,any of a group of viruses that can cause pox diseases in vertebrates
+62451,practicability practicableness,the quality of being usable
+62452,practical_joke,a prank or trick played on a person (especially one intended to make the victim appear foolish)
+62453,practicality,concerned with actual use rather than theoretical possibilities
+62454,practice,knowledge of how something is usually done; "it is not the local practice to wear shorts to dinner"
+62455,practice,the exercise of a profession; "the practice of the law"; "I took over his practice when he retired"
+62456,practice pattern,a customary way of operation or behavior; "it is their practice to give annual raises"; "they changed their dietary pattern"
+62457,practice praxis,translating an idea into action; "a hard theory to put into practice"; "differences between theory and praxis of communism"
+62458,practice_range,a place for practicing golf shots
+62459,practitioner practician,someone who practices a learned profession
+62460,praenomen,the first name of a citizen of ancient Rome
+62461,praetor pretor,an annually elected magistrate of the ancient Roman Republic
+62462,praetorium pretorium,the tent of an ancient Roman general
+62463,praetorship,the office of praetor
+62464,pragmatic_sanction pragmatic,an imperial decree that becomes part of the fundamental law of the land
+62465,pragmatics,the study of language use
+62466,pragmatism,(philosophy) the doctrine that practical consequences are the criteria of knowledge and meaning and value
+62467,pragmatist,an adherent of philosophical pragmatism
+62468,pragmatist,a person who takes a practical approach to problems and is concerned primarily with the success or failure of her actions
+62469,prairia_Sabbatia Texas_star Sabbatia_campestris,prairie herb with solitary lilac-colored flowers
+62470,prairie,a treeless grassy plain
+62471,prairie_aster Aster_turbinellis,violet-flowered perennial aster of central United States having solitary heads
+62472,prairie_bird's-foot_trefoil compass_plant prairie_lotus prairie_trefoil Lotus_americanus,North American annual with red or rose-colored flowers
+62473,prairie_chicken prairie_grouse prairie_fowl,brown mottled North American grouse of western prairies
+62474,prairie_coneflower Ratibida_tagetes,coneflower of central to southwestern United States
+62475,prairie_cordgrass freshwater_cordgrass slough_grass Spartina_pectinmata,North American cordgrass having leaves with dry membranous margins and glumes with long awns
+62476,prairie_dog prairie_marmot,any of several rodents of North American prairies living in large complex burrows having a barking cry
+62477,prairie_gentian tulip_gentian bluebell Eustoma_grandiflorum,one of the most handsome prairie wildflowers having large erect bell-shaped bluish flowers; of moist places in prairies and fields from eastern Colorado and Nebraska south to New Mexico and Texas
+62478,prairie_gourd,small hard green-and-white inedible fruit of the prairie gourd plant
+62479,prairie_gourd prairie_gourd_vine Missouri_gourd wild_pumpkin buffalo_gourd calabazilla Cucurbita_foetidissima,perennial vine of dry parts of central and southwestern United States and Mexico having small hard mottled green inedible fruit
+62480,prairie_mallow red_false_mallow Sphaeralcea_coccinea Malvastrum_coccineum,false mallow of western United States having racemose red flowers; sometimes placed in genus Malvastrum
+62481,prairie_mimosa prickle-weed Desmanthus_ilinoensis,perennial herb of North American prairies having dense heads of small white flowers
+62482,prairie_orchid prairie_white-fringed_orchis Habenaria_leucophaea,orchid of boggy or wet lands of north central United States having racemes of very fragrant creamy or greenish white flowers
+62483,prairie_rattlesnake prairie_rattler Western_rattlesnake Crotalus_viridis,widely distributed between the Mississippi and the Rockies
+62484,prairie_rocket,any of several North American plants of the genus Erysimum having large yellow flowers
+62485,prairie_rocket,any of several western American plants of the genus Cheiranthus having large yellow flowers
+62486,prairie_smoke purple_avens Geum_triflorum,North American perennial with hairy basal pinnate leaves and purple flowers and plume-tipped fruits
+62487,prairie_soil,a type of soil occurring under grasses in temperate climates
+62488,prairie_star Lithophragma_parviflorum,plant with mostly basal leaves and slender open racemes of white or pale pink flowers; prairies and open forest of northwestern United States to British Columbia and Alberta
+62489,prairie_sunflower Helianthus_petiolaris,similar to the common sunflower with slender usually branching stems common in central United States
+62490,prairie_vole Microtus_ochrogaster,typical vole of the extended prairie region of central United States and southern Canada
+62491,prairie_wake-robin prairie_trillium Trillium_recurvatum,trillium of central United States having dark purple sessile flowers
+62492,prairie_white-fringed_orchid Platanthera_leucophea,of central North America; a threatened species
+62493,prairie_willow Salix_humilis,slender shrubby willow of dry areas of North America
+62494,praise,offering words of homage as an act of worship; "they sang a hymn of praise to God"
+62495,praise congratulations kudos extolment,an expression of approval and commendation; "he always appreciated praise for his work"
+62496,praiseworthiness laudability laudableness,the quality of being worthy of praise
+62497,praisworthiness,the property of deserving praise
+62498,praline,cookie-sized candy made of brown sugar and butter and pecans
+62499,prancer,a mettlesome or fiery horse
+62500,prang,a crash involving a car or plane
+62501,prankishness rascality roguishness,the trait of indulging in disreputable pranks
+62502,prankster cut-up trickster tricker hoaxer practical_joker,someone who plays practical jokes on others
+62503,praseodymium Pr atomic_number_59,a soft yellowish-white trivalent metallic element of the rare earth group; can be recovered from bastnasite or monazite by an ion-exchange process
+62504,prate prattle idle_talk blether chin_music,idle or foolish and irrelevant talk
+62505,pratfall,a fall onto your buttocks
+62506,pratincole glareole,Old World shorebird with long pointed wings and short legs; closely related to the coursers
+62507,prattler,someone who speaks in a childish way
+62508,pravastatin Pravachol,an oral drug (trade name Pravachol) administered to reduce blood cholesterol levels; recommended after nonfatal heart attacks
+62509,prawn,shrimp-like decapod crustacean having two pairs of pincers; most are edible
+62510,prawn shrimp,any of various edible decapod crustaceans
+62511,praya,colonial siphonophore of up to 130 ft long
+62512,prayer,a fixed text used in praying
+62513,prayer petition orison,reverent petition to a deity
+62514,prayer supplicant,someone who prays to God
+62515,prayer supplication,the act of communicating with a deity (especially as a petition or in adoration or contrition or thanksgiving); "the priest sank to his knees in prayer"
+62516,prayer_book prayerbook,a book containing prayers
+62517,prayer_meeting prayer_service,a service at which people sing hymns and pray together
+62518,prayer_rug prayer_mat,a small rug used by Muslims during their devotions
+62519,prayer_shawl tallith tallis,(Judaism) a shawl with a ritually knotted fringe at each corner; worn by Jews at morning prayer
+62520,prayer_wheel,a cylinder with prayers written on it; each revolution counts as uttering the prayers; used especially by Buddhists in Tibet
+62521,praying_mantis praying_mantid Mantis_religioso,the common mantis
+62522,prazosin Minipress,antihypertensive drug (trade name Minipress)
+62523,pre-Socratic,any philosopher who lived before Socrates
+62524,pre-emptive_strike,a surprise attack that is launched in order to prevent the enemy from doing it to you
+62525,preacher preacher_man sermonizer sermoniser,someone whose occupation is preaching the gospel
+62526,preachification,moralization delivered tediously in a preachy manner
+62527,preamble,a preliminary introduction to a statute or constitution (usually explaining its purpose)
+62528,prearrangement,something arranged in advance
+62529,prebend,the stipend assigned by a cathedral to a canon
+62530,prebendary,a canon who receives a prebend for serving the church
+62531,precariousness,extreme dangerousness
+62532,precaution,the trait of practicing caution in advance
+62533,precaution safeguard guard,a precautionary measure warding off impending danger or damage or injury etc.; "he put an ice pack on the injury as a precaution"; "an insurance policy is a good safeguard"; "we let our guard down"
+62534,precedence precedency priority,status established in order of importance or urgency; "...its precedence as the world's leading manufacturer of pharmaceuticals"; "national independence takes priority over class struggle"
+62535,precedent,a subject mentioned earlier (preceding in time)
+62536,precedent case_in_point,an example that is used to justify similar occurrences at a later time
+62537,precentorship,the position of precentor
+62538,precentral_gyrus,the convolution of the frontal lobe that is bounded in back by the central sulcus and that contains the motor area
+62539,preceptor don,teacher at a university or college (especially at Cambridge or Oxford)
+62540,preceptorship,the position of preceptor
+62541,precession,the motion of a spinning body (as a top) in which it wobbles so that the axis of rotation sweeps out a cone
+62542,precession precedence precedency,the act of preceding in time or order or rank (as in a ceremony)
+62543,precession_of_the_equinoxes,a slow westward shift of the equinoxes along the plane of the ecliptic caused by precession of the Earth's axis of rotation
+62544,prechlorination,chlorination prior to another chemical process
+62545,precinct,a district of a city or town marked out for administrative purposes
+62546,preciosity preciousness,the quality of being fastidious or excessively refined
+62547,precious_metal,any of the less common and valuable metals often used to make coins or jewelry
+62548,precipice,a very steep cliff
+62549,precipitant,an agent that causes a precipitate to form
+62550,precipitate,a precipitated solid substance in suspension or after settling or filtering
+62551,precipitation,the quantity of water falling to earth at a specific place within a specified period of time; "the storm brought several inches of precipitation"
+62552,precipitation,the process of forming a chemical precipitate
+62553,precipitation,the act of casting down or falling headlong from a height
+62554,precipitation,an unexpected acceleration or hastening; "he is responsible for the precipitation of his own demise"
+62555,precipitation downfall,the falling to earth of any form of water (rain or snow or hail or sleet or mist)
+62556,precipitator electrostatic_precipitator Cottrell_precipitator,removes dust particles from gases by electrostatic precipitation
+62557,precipitin,an antibody that causes precipitation when it unites with its antigen
+62558,preciseness clearcutness,clarity as a consequence of precision
+62559,preciseness precision,the quality of being reproducible in amount or performance; "he handled it with the preciseness of an automaton"; "note the meticulous precision of his measurements"
+62560,precision_cookie,a cookie that is saved permanently on your hard drive
+62561,preclinical_trial preclinical_test preclinical_phase,a laboratory test of a new drug or a new invasive medical device on animal subjects; conducted to gather evidence justifying a clinical trial
+62562,precocious_dentition,teething at an earlier age than expected
+62563,precociousness precocity,intelligence achieved far ahead of normal developmental schedules
+62564,precognition foreknowledge,knowledge of an event before it occurs
+62565,preconception prepossession parti_pris preconceived_opinion preconceived_idea preconceived_notion,an opinion formed beforehand without adequate evidence; "he did not even try to confirm his preconceptions"
+62566,precondition,a condition that is a prerequisite
+62567,precordium,the external surface of the body overlying the heart and stomach
+62568,precursor,a substance from which another substance is formed (especially by a metabolic reaction)
+62569,precursor forerunner,a person who goes before or announces the coming of another
+62570,predation,the act of preying by a predator who kills and eats the prey
+62571,predator predatory_animal,any animal that lives by preying on other animals
+62572,predecessor,one who precedes you in time (as in holding a position or office)
+62573,predestinarianism,the belief or doctrine of predestinarians
+62574,predestination,previous determination as if by destiny or fate
+62575,predestination foreordination preordination predetermination,(theology) being determined in advance; especially the doctrine (usually associated with Calvin) that God has foreordained every event throughout eternity (including the final salvation of mankind)
+62576,predetermination,a mental determination or resolve in advance; an antecedent intention to do something; "he entered the argument with a predetermination to prove me wrong"
+62577,predetermination,the act of determining or ordaining in advance what is to take place
+62578,predicament quandary plight,a situation from which extrication is difficult especially an unpleasant or trying one; "finds himself in a most awkward predicament"; "the woeful plight of homeless people"
+62579,predicate,(logic) what is predicated of the subject of a proposition; the second term in a proposition is predicated of the first term by means of the copula; "`Socrates is a man' predicates manhood of Socrates"
+62580,predicate verb_phrase,one of the two main constituents of a sentence; the predicate contains the verb and its complements
+62581,predicate_calculus functional_calculus,a system of symbolic logic that represents individuals and predicates and quantification over individuals (as well as the relations between propositions)
+62582,predicator,an expression that predicates
+62583,predictability,the quality of being predictable
+62584,prediction anticipation prevision,the act of predicting (as by reasoning about the future)
+62585,prediction foretelling forecasting prognostication,a statement made about the future
+62586,predictor,information that supports a probabilistic estimate of future events; "the weekly bulletin contains several predictors of mutual fund performance"
+62587,predictor,a computer for controlling antiaircraft fire that computes the position of an aircraft at the instant of a shell's arrival
+62588,predictor_variable,a variable that can be used to predict the value of another variable (as in statistical regression)
+62589,predilection preference orientation,a predisposition in favor of something; "a predilection for expensive cars"; "his sexual preferences"; "showed a Marxist orientation"
+62590,predisposition,an inclination beforehand to interpret statements in a particular way
+62591,predisposition,a disposition in advance to react in a particular way
+62592,prednisolone Pediapred Prelone,a glucocorticoid (trade names Pediapred or Prelone) used to treat inflammatory conditions
+62593,prednisone Orasone Deltasone Liquid_Pred Meticorten,a dehydrogenated analogue of cortisol (trade names Orasone or Deltasone or Liquid Pred or Meticorten); used as an anti-inflammatory drug in the treatment of arthritis and as an immunosuppressant
+62594,predominance predomination prepotency,the state of being predominant over others
+62595,predomination predominance,the quality of being more noticeable than anything else; "the predomination of blues gave the painting a quiet tone"
+62596,preeclampsia pre-eclampsia,abnormal state of pregnancy characterized by hypertension and fluid retention and albuminuria; can lead to eclampsia if untreated
+62597,preemployment_training_program,a training program to prepare you for employment
+62598,preemption pre-emption,the judicial principle asserting the supremacy of federal over state legislation on the same subject
+62599,preemption pre-emption,the right of a government to seize or appropriate something (as property)
+62600,preemption pre-emption,the right to purchase something in advance of others
+62601,preemption pre-emption,a prior appropriation of something; "the preemption of bandwidth by commercial interests"
+62602,preemptive_bid pre-empt preempt,a high bid that is intended to prevent the opposing players from bidding
+62603,preemptive_right,the right granting to shareholders the first opportunity to buy a new issue of stock; provides protection against dilution of the shareholder's ownership interest
+62604,preemptor pre-emptor,someone who acquires land by preemption
+62605,preemptor pre-emptor,a bidder in bridge who makes a preemptive bid
+62606,preexistence,existing in a former state or previous to something else
+62607,prefab,a prefabricated structure
+62608,prefabrication,the manufacture of sections of a building at the factory so they can be easily and rapidly assembled at the building site
+62609,prefect,a chief officer or chief magistrate; "the prefect of Paris police"
+62610,prefecture,the district administered by a prefect (as in France or Japan or the Roman Empire)
+62611,prefecture,the office of prefect
+62612,preference,grant of favor or advantage to one over another (especially to a country or countries in matters of international trade, such as levying duties)
+62613,preference druthers,the right or chance to choose; "given my druthers, I'd eat cake"
+62614,preference penchant predilection taste,a strong liking; "my own preference is for good literature"; "the Irish have a penchant for blarney"
+62615,preferment,the act of making accusations; "preferment of charges"
+62616,preferment,the act of preferring; "the preferment went to the younger candidate"
+62617,preferred_stock preferred_shares preference_shares,stock whose holders are guaranteed priority in the payment of dividends but whose holders have no voting rights
+62618,prefiguration,an example that prefigures or foreshadows what is to come
+62619,prefiguration foreshadowing adumbration,the act of providing vague advance indications; representing beforehand
+62620,prefix,an affix that is added in front of the word
+62621,prefix_notation Lukasiewicz_notation Polish_notation,a parenthesis-free notation for forming mathematical expressions in which each operator precedes its operands
+62622,prefixation,formation of a word by means of a prefix
+62623,preformation theory_of_preformation,a theory (popular in the 18th century and now discredited) that an individual develops by simple enlargement of a tiny fully formed organism (a homunculus) that exists in the germ cell
+62624,prefrontal_lobe prefrontal_cortex,the anterior part of the frontal lobe
+62625,pregnancy gestation maternity,the state of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus
+62626,pregnancy_test,a physiological test to determine whether a woman is pregnant
+62627,pregnanediol,a compound found in women's urine during certain phases of the menstrual cycle and in the urine of pregnant women
+62628,prehensor,the anterior pair of legs of a centipede that are modified to seize prey and inject venom from the toxicognaths
+62629,prehistory prehistoric_culture,the time during the development of human culture before the appearance of the written word
+62630,prejudgment prejudgement,a judgment reached before the evidence is available
+62631,prelacy prelature,prelates collectively
+62632,prelacy prelature,the office or station of a prelate
+62633,preliminary overture prelude,something that serves as a preceding event or introduces what follows; "training is a necessary preliminary to employment"; "drinks were the overture to dinner"
+62634,preliminary prelim,a minor match preceding the main event
+62635,preliminary_examination preliminary_exam prelim,an examination taken by graduate students to determine their fitness to continue
+62636,preliminary_prospectus red_herring,a first draft of a prospectus; must be clearly marked to indicate that parts may be changed in the final prospectus; "because some portions of the cover page are printed in red ink a preliminary prospectus is sometimes called a red herring"
+62637,prelude,music that precedes a fugue or introduces an act in an opera
+62638,premature_baby preterm_baby premature_infant preterm_infant preemie premie,an infant that is born prior to 37 weeks of gestation
+62639,premature_ejaculation,ejaculation during the early stages of sexual excitement or soon after the insertion of the penis into the vagina
+62640,premature_labor premature_labour,labor beginning prior to the 37th week of gestation
+62641,premature_ventricular_contraction PVC,irregularity of cardiac rhythm; recurrent occurrences can be a precursor of ventricular fibrillation
+62642,prematureness prematurity,the state of being premature
+62643,premeditation,(law) thought and intention to commit a crime well in advance of the crime; goes to show criminal intent
+62644,premeditation forethought,planning or plotting in advance of acting
+62645,premenstrual_syndrome PMS,a syndrome that occurs in many women from 2 to 14 days before the onset of menstruation
+62646,premiere,the first public performance of a play or movie
+62647,premiership,the office of premier
+62648,premise premiss assumption,a statement that is assumed to be true and from which a conclusion can be drawn; "on the assumption that he has been injured we can infer that he will not play"
+62649,premises,land and the buildings on it; "bread is baked on the premises"; "the were evicted from the premises"
+62650,premium,the amount that something in scarce supply is valued above its nominal value; "they paid a premium for access to water"
+62651,premium,a prize, bonus, or award given as an inducement to purchase products, enter competitions initiated by business interests, etc.; "they encouraged customers with a premium for loyal patronage"
+62652,premium insurance_premium,payment for insurance
+62653,premolar bicuspid,a tooth having two cusps or points; located between the incisors and the molars
+62654,prenatal_diagnosis,any of the diagnostic procedures used to determine whether a fetus has a genetic abnormality
+62655,preoccupancy preoccupation,the act of taking occupancy before someone else does
+62656,preoccupation,an idea that preoccupies the mind and holds the attention
+62657,preoccupation preoccupancy absorption engrossment,the mental state of being preoccupied by something
+62658,preparation,(music) a note that produces a dissonant chord is first heard in a consonant chord; "the resolution of one dissonance is often the preparation for another dissonance"
+62659,preparation readying,the activity of putting or setting in order in advance of some act or purpose; "preparations for the ceremony had begun"
+62660,preparation_fire,fire delivered on a target in preparation for an assault
+62661,preparatory_school prep_school,a private secondary school
+62662,prepayment,payment in advance
+62663,preponderance,superiority in power or influence; "the preponderance of good over evil"; "the preponderance of wealth and power"
+62664,preponderance,exceeding in heaviness; having greater weight; "the least preponderance in either pan will unbalance the scale"
+62665,preponderance prevalence,a superiority in numbers or amount; "a preponderance of evidence against the defendant"
+62666,preposition,(linguistics) the placing of one linguistic element before another (as placing a modifier before the word it modifies in a sentence or placing an affix before the base to which it is attached)
+62667,preposition,a function word that combines with a noun or pronoun or noun phrase to form a prepositional phrase that can have an adverbial or adjectival relation to some other word
+62668,prepositional_object object_of_a_preposition,the object governed by a preposition
+62669,prepositional_phrase,a phrase beginning with a preposition
+62670,prepossession,the condition of being prepossessed; "the king's prepossession in my favor is very valuable"
+62671,prepuberty,a period of two years immediately prior to the onset of puberty when growth and changes leading to sexual maturity occur
+62672,prepuce foreskin,a fold of skin covering the tip of the clitoris
+62673,prepuce foreskin,a fold of skin covering the tip of the penis
+62674,prepyloric_vein vena_pylorica,a tributary of the right gastric vein
+62675,prerequisite requirement,something that is required in advance; "Latin was a prerequisite for admission"
+62676,prerogative privilege perquisite exclusive_right,a right reserved exclusively by a particular person or group (especially a hereditary or official right); "suffrage was the prerogative of white adult males"
+62677,presage,a foreboding about what is about to happen
+62678,presbyope,a person with presbyopia; someone who is farsighted resulting from the progressive loss with aging of the elasticity of the crystalline lens
+62679,presbyopia farsightedness,a reduced ability to focus on near objects caused by loss of elasticity of the crystalline lens after age 45
+62680,presbyter,an elder in the Presbyterian Church
+62681,presbytery,building reserved for the officiating clergy
+62682,preschool,an educational institution for children too young for elementary school
+62683,preschooler kindergartner kindergartener,a child who attends a preschool or kindergarten
+62684,prescience prevision,the power to foresee the future
+62685,prescription,directions prescribed beforehand; the action of prescribing authoritative rules or directions; "I tried to follow her prescription for success"
+62686,prescription,written instructions for an optician on the lenses for a given person
+62687,prescription,written instructions from a physician or dentist to a druggist concerning the form and dosage of a drug to be issued to a given patient
+62688,prescription_drug prescription prescription_medicine ethical_drug,a drug that is available only with written instructions from a doctor or dentist to a pharmacist; "he told the doctor that he had been taking his prescription regularly"
+62689,prescriptive_grammar,a grammar that is produced by prescriptive linguistics
+62690,prescriptive_linguistics,an account of how a language should be used instead of how it is actually used; a prescription for the `correct' phonology and morphology and syntax and semantics
+62691,prescriptivism,(ethics) a doctrine holding that moral statements prescribe appropriate attitudes and behavior
+62692,prescriptivism,(linguistics) a doctrine supporting or promoting prescriptive linguistics
+62693,preseason,a period prior to the beginning of the regular season which is devoted to training and preparation
+62694,presence,the state of being present; current existence; "he tested for the presence of radon"
+62695,presence,an invisible spiritual being felt to be nearby
+62696,presence,the impression that something is present; "he felt the presence of an evil force"
+62697,presence,the act of being present
+62698,presence front,the immediate proximity of someone or something; "she blushed in his presence"; "he sensed the presence of danger"; "he was well behaved in front of company"
+62699,presence_chamber,room in which a monarch or other great person receives guests, assemblies, etc.
+62700,presence_of_mind,self-control in a crisis; ability to say or do the right thing in an emergency
+62701,presenile_dementia,dementia with onset before the age of 65
+62702,present,something presented as a gift; "his tie was a present from his wife"
+62703,present nowadays,the period of time that is happening now; any continuous stretch of time including the moment of speech; "that is enough for the present"; "he lives in the present with no thought of tomorrow"
+62704,present present_tense,a verb tense that expresses actions or states at the time of speaking
+62705,present_participle,a participle expressing present action; in English is formed by adding -ing
+62706,present_perfect present_perfect_tense,a perfective tense used to express action completed in the present; "`I have finished' is an example of the present perfect"
+62707,present_progressive present_progressive_tense,a tense used to express action that is on-going at the time of utterance
+62708,presentation,the act of presenting a proposal
+62709,presentation,the act of making something publicly available; presenting news or other information by broadcasting or printing it; "he prepared his presentation carefully in advance"
+62710,presentation,(obstetrics) position of the fetus in the uterus relative to the birth canal; "Cesarean sections are sometimes the result of abnormal presentations"
+62711,presentation,the activity of formally presenting something (as a prize or reward); "she gave the trophy but he made the presentation"
+62712,presentation introduction intro,formally making a person known to another or to the public
+62713,presentation presentment demonstration,a show or display; the act of presenting something to sight or view; "the presentation of new data"; "he gave the customer a demonstration"
+62714,presenter,someone who presents a message of some sort (as a petition or an address or a check or a memorial etc.)
+62715,presenter sponsor,an advocate who presents a person (as for an award or a degree or an introduction etc.)
+62716,presentism,the doctrine that the Scripture prophecies of the Apocalypse (as in the Book of Revelations) are presently in the course of being fulfilled
+62717,presentist,a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) are being fulfilled at the present time
+62718,presentment,a document that must be accepted and paid by another person
+62719,presentment notification,an accusation of crime made by a grand jury on its own initiative
+62720,presentness nowness,the quality of being the present; "a study of the pastness of the present and...of the presentness of the past"- R.E.Spiller
+62721,preservation,the condition of being (well or ill) preserved
+62722,preservation,a process that saves organic substances from decay
+62723,preservation saving,the activity of protecting something from loss or danger
+62724,preservationist,someone who advocates the preservation of historical sites or endangered species or natural areas
+62725,preservative,a chemical compound that is added to protect against decay or decomposition
+62726,preserve,a domain that seems to be specially reserved for someone; "medicine is no longer a male preserve"
+62727,preserve,a reservation where animals are protected
+62728,preserver,a cook who preserves fruits or meat
+62729,preserver,someone who keeps safe from harm or danger
+62730,presidency presidential_term administration,the tenure of a president; "things were quiet during the Eisenhower administration"
+62731,presidency presidentship,the office and function of president; "Andrew Jackson expanded the power of the presidency beyond what was customary before his time"
+62732,president,an executive officer of a firm or corporation
+62733,president,the chief executive of a republic
+62734,president chairman chairwoman chair chairperson,the officer who presides at the meetings of an organization; "address your remarks to the chairperson"
+62735,president prexy,the head administrative officer of a college or university
+62736,presiding_officer,the leader of a group meeting
+62737,presidio,a fortress established in the southwestern United States by the Spanish in order to protect their missions and other holdings; "Tucson was first settled as a walled presidio"
+62738,presidium praesidium,a permanent executive committee in socialist countries that has all the powers of some larger legislative body and that acts for it when it is not in session
+62739,press,clamp to prevent wooden rackets from warping when not in use
+62740,press mechanical_press,any machine that exerts pressure to form or shape or cut materials or extract liquids or compress solids
+62741,press military_press,a weightlift in which the barbell is lifted to shoulder height and then smoothly lifted overhead
+62742,press pressure pressing,the act of pressing; the exertion of pressure; "he gave the button a press"; "he used pressure to stop the bleeding"; "at the pressing of a button"
+62743,press printing_press,a machine used for printing
+62744,press public_press,the print media responsible for gathering and publishing news in the form of newspapers or magazines
+62745,press_agent publicity_man public_relations_man PR_man,someone employed to arrange publicity (for a firm or a public figure)
+62746,press_box,box reserved for reporters (as at a sports event)
+62747,press_conference news_conference,a conference at which press and tv reporters ask questions of a politician or other celebrity
+62748,press_corps,a group of journalists representing different publications who all cover the same topics; "the White House press corps"
+62749,press_gallery,an area (sometimes in a balcony) set aside for reporters (especially in a legislative hall)
+62750,press_gang,a detachment empowered to force civilians to serve in the army or navy
+62751,press_lord,a powerful newspaper proprietor
+62752,press_of_sail press_of_canvas,the greatest amount of sail that a ship can carry safely
+62753,press_photographer,a photographer who works for a newspaper
+62754,pressing,a metal or plastic part that is made by a mechanical press
+62755,pressure,an oppressive condition of physical or mental or social or economic distress
+62756,pressure,a force that compels; "the public brought pressure to bear on the government"
+62757,pressure pressure_level force_per_unit_area,the force applied to a unit area of surface; measured in pascals (SI unit) or in dynes (cgs unit); "the compressed gas exerts an increased pressure"
+62758,pressure pressure_sensation,the somatic sensation that results from applying force to an area of skin; "the sensitivity of his skin to pressure and temperature was normal"
+62759,pressure_cabin,cabin consisting of the pressurized section of an aircraft or spacecraft
+62760,pressure_cooker,autoclave for cooking at temperatures above the boiling point of water
+62761,pressure_dome,a dome-shaped building that is pressurized
+62762,pressure_gauge pressure_gage,gauge for measuring and indicating fluid pressure
+62763,pressure_point,any of several points on the body where the pulse can be felt and where pressure on an underlying artery will control bleeding from that artery at a more distal point
+62764,pressure_point,where problems or difficulties are likely to occur; "a key pressure point in the controversy was the building permit"
+62765,pressure_point,an area on the skin that is highly sensitive to pressure; "you must know the pressure points in order to administer shiatsu"
+62766,pressure_suit,protective garment consisting of an inflatable suit for space or high altitude flying
+62767,pressure_unit,a unit measuring force per unit area
+62768,pressurized_water_reactor PWR,a nuclear reactor that uses water as a coolant and moderator; the steam produced can drive a steam turbine
+62769,prestidigitation sleight_of_hand,manual dexterity in the execution of tricks
+62770,prestige prestigiousness,a high standing achieved through success or influence or wealth etc.; "he wanted to achieve power and prestige"
+62771,presumption,(law) an inference of the truth of a fact from other facts proved or admitted or judicially noticed
+62772,presumption,a kind of discourtesy in the form of an act of presuming; "his presumption was intolerable"
+62773,presumption presumptuousness effrontery assumption,audacious (even arrogant) behavior that you have no right to; "he despised them for their presumptuousness"
+62774,presupposition,the act of presupposing; a supposition made prior to having knowledge (as for the purpose of argument)
+62775,preteen preteenager,a preadolescent boy or girl (usually between 9 and 12 years of age); "little league is intended for the preteens"
+62776,pretense pretence feigning dissembling,pretending with intention to deceive
+62777,pretense pretence make-believe,imaginative intellectual play
+62778,pretense pretence pretending simulation feigning,the act of giving a false appearance; "his conformity was only pretending"
+62779,pretension,the advancing of a claim; "his pretension to the crown"; "the town still puts forward pretensions as a famous resort"
+62780,pretension pretense pretence,a false or unsupportable quality
+62781,pretentiousness pretension largeness,the quality of being pretentious (behaving or speaking in such a manner as to create a false appearance of great importance or worth)
+62782,preterist,a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) have already been fulfilled
+62783,preterit preterite,a term formerly used to refer to the simple past tense
+62784,pretermission,letting pass without notice
+62785,pretext stalking-horse,something serving to conceal plans; a fictitious reason that is concocted in order to conceal the real reason
+62786,pretrial pretrial_conference,(law) a conference held before the trial begins to bring the parties together to outline discovery proceedings and to define the issues to be tried; more useful in civil than in criminal cases
+62787,prettiness cuteness,the quality of being appealing in a delicate or graceful way (of a girl or young woman)
+62788,pretzel,glazed and salted cracker typically in the shape of a loose knot
+62789,prevailing_party,the party in a lawsuit who obtains a judgment in their own favor
+62790,prevailing_westerly westerly,the winds from the west that occur in the temperate zones of the Earth
+62791,prevailing_wind,the predominant wind direction; "the prevailing wind is from the southwest"
+62792,prevalence,(epidemiology) the ratio (for a given time period) of the number of occurrences of a disease or event to the number of units at risk in the population
+62793,prevalence,the quality of prevailing generally; being widespread; "he was surprised by the prevalence of optimism about the future"
+62794,prevention bar,the act of preventing; "there was no bar against leaving"; "money was allocated to study the cause and prevention of influenza"
+62795,preventive preventative prophylactic,remedy that prevents or slows the course of an illness or disease; "the doctor recommended several preventatives"
+62796,preventive_medicine,the branch of medicine concerned with preventing disease; "the medical establishment doesn't profit from preventive medicine"
+62797,preventive_strike preventive_attack,a strike that is carried out in order to deter expected aggression by hostile forces
+62798,preview,a screening for a select audience in advance of release for the general public
+62799,preview prevue trailer,an advertisement consisting of short scenes from a motion picture that will appear in the near future
+62800,previous_question,a motion calling for an immediate vote on the main question under discussion by a deliberative assembly
+62801,prevision,a prophetic vision (as in a dream)
+62802,prevision foresight farsightedness prospicience,seeing ahead; knowing in advance; foreseeing
+62803,prey quarry,animal hunted or caught for food
+62804,prey quarry target fair_game,a person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence; "he fell prey to muggers"; "everyone was fair game"; "the target of a manhunt"
+62805,priapism,condition in which the penis is continually erect; usually painful and seldom with sexual arousal
+62806,price,cost of bribing someone; "they say that every politician has a price"
+62807,price,a monetary reward for helping to catch a criminal; "the cattle thief has a price on his head"
+62808,price,the high value or worth of something; "her price is far above rubies"
+62809,price cost toll,value measured by what must be given or done or undergone to obtain something; "the cost in human life was enormous"; "the price of success is hard work"; "what price glory?"
+62810,price terms damage,the amount of money needed to purchase something; "the price of gasoline"; "he got his new car on excellent terms"; "how much is the damage?"
+62811,price-fixing,control (by agreement among producers or by government) of the price of a commodity in interstate commerce
+62812,price-to-earnings_ratio P/E_ratio,(stock market) the price of a stock divided by its earnings
+62813,price_bracket,a category of merchandise based on their price
+62814,price_control,restriction on maximum prices that is established and maintained by the government (as during periods of war or inflation)
+62815,price_cutting price_cut,cutting the price of merchandise to one lower than the usual or advertised price
+62816,price_floor,floor below which prices are not allowed to fall; "the government used price supports to maintain the price floor"
+62817,price_freeze,a freeze of prices at a given level
+62818,price_gouging,pricing above the market price when no alternative retailer is available
+62819,price_increase,increase in price
+62820,price_index price_level,an index that traces the relative changes in the price of an individual good (or a market basket of goods) over time
+62821,price_list,a listing of prices for different goods or services
+62822,price_support,a government subsidy used to maintain prices at a certain level
+62823,price_tag,a tag showing the price of the article it is attached to
+62824,price_war price_competition,intense competition in which competitors cut retail prices to gain business
+62825,pricing,the evaluation of something in terms of its price
+62826,pricing_system,a system for setting prices on goods or services
+62827,prick pricking,the act of puncturing with a small point; "he gave the balloon a small prick"
+62828,pricket,a sharp metal spike to hold a candle
+62829,pricket,male deer in his second year
+62830,prickle_cell,a cell in the germinal layer of the skin (the prickle-cell layer); has many spines and radiating processes
+62831,prickleback,small elongate fishes of shallow northern seas; a long dorsal fin consists entirely of spines
+62832,prickliness bristliness spininess thorniness,the quality of being covered with prickly thorns or spines
+62833,prickling tingle tingling,a somatic sensation as from many tiny stings
+62834,prickly-edged_leaf,a leaf having prickly margins
+62835,prickly_ash,any of a number of trees or shrubs of the genus Zanthoxylum having spiny branches
+62836,prickly_ash Orites_excelsa,Australian tree having alternate simple leaves (when young they are pinnate with prickly toothed margins) and slender axillary spikes of white flowers
+62837,prickly_heat heat_rash miliaria,obstruction of the sweat ducts during high heat and humidity
+62838,prickly_lettuce horse_thistle Lactuca_serriola Lactuca_scariola,European annual wild lettuce having prickly stems; a troublesome weed in parts of United States
+62839,prickly_pear,round or pear-shaped spiny fruit of any of various prickly pear cacti
+62840,prickly_pear prickly_pear_cactus,cacti having spiny flat joints and oval fruit that is edible in some species; often used as food for stock
+62841,prickly_poppy Papaver_argemone,annual Old World poppy with orange-red flowers and bristly fruit
+62842,prickly_poppy argemone white_thistle devil's_fig,any plant of the genus Argemone having large white or yellow flowers and prickly leaves and stems and pods; chiefly of tropical America
+62843,pride,a group of lions
+62844,pride,satisfaction with your (or another's) achievements; "he takes pride in his son's success"
+62845,pride,the trait of being spurred on by a dislike of falling below your standards
+62846,pride pridefulness,a feeling of self-respect and personal worth
+62847,pride superbia,unreasonable and inordinate self-esteem (personified as one of the deadly sins)
+62848,pride_of_California Lathyrus_splendens,shrubby California perennial having large pink or violet flowers; cultivated as an ornamental
+62849,pride_of_barbados paradise_flower flamboyant_tree Caesalpinia_pulcherrima Poinciana_pulcherrima,tropical shrub or small tree having showy yellow to orange-red flowers; sometimes placed in genus Poinciana
+62850,pride_of_place,the first or highest or most important or most ostentatious place
+62851,prie-dieu,low bench for kneeling on
+62852,priest,a clergyman in Christian churches who has the authority to perform or administer various religious rites; one of the Holy Orders
+62853,priest non-Christian_priest,a person who performs religious duties and ceremonies in a non-Christian religion
+62854,priest-penitent_privilege,the right of a clergyman to refuse to divulge confidential information received from a person during confession or similar exchanges
+62855,priestcraft,a derogatory reference to priests who use their influence to control secular or political affairs
+62856,priestcraft,the skills involved in the work of a priest
+62857,priestess,a woman priest
+62858,priesthood,the body of ordained religious practitioners
+62859,priggishness primness,exaggerated and arrogant properness
+62860,prima_ballerina,a leading female ballet dancer
+62861,prima_donna,a vain and temperamental person
+62862,prima_donna diva,a distinguished female operatic singer; a female operatic star
+62863,primacy,the state of being first in importance
+62864,primality,the property of being a prime number
+62865,primaquine,synthetic antimalarial drug
+62866,primary,(astronomy) a celestial body (especially a star) relative to other objects in orbit around it
+62867,primary primary_election,a preliminary election where delegates or nominees are chosen
+62868,primary primary_feather primary_quill,one of the main flight feathers projecting along the outer edge of a bird's wing
+62869,primary_amenorrhea,delay of menarche beyond age 18
+62870,primary_care,the medical care received on first contact with the medical system (before being referred elsewhere)
+62871,primary_care_physician,the physician who provides primary care; "the primary care physician acts as a gatekeeper to the medical system"
+62872,primary_censorship,armed forces censorship performed by personnel of a military unit on the personal communications of persons assigned to that unit
+62873,primary_coil primary_winding primary,coil forming the part of an electrical circuit such that changing current in it induces a current in a neighboring circuit; "current through the primary coil induces current in the secondary coil"
+62874,primary_color primary_colour,any of three colors from which all others can be obtained by mixing
+62875,primary_color_for_light primary_colour_for_light,any of three primary colors of light from which all colors can be obtained by additive mixing; "the primary colors for light are red, blue, and green"
+62876,primary_color_for_pigments primary_colour_for_pigments,any of three pigments from which all colors can be obtained by mixing; "the primary colors for pigments are red, blue, and yellow"
+62877,primary_dentition,dentition of deciduous teeth
+62878,primary_dysmenorrhea,painful menstruation that is intrinsic to menstruation and not the result of a disease
+62879,primary_health_care,health care that is provided by a health care professional in the first contact of a patient with the health care system
+62880,primary_sex_characteristic primary_sexual_characteristic primary_sex_character,the genetically determined sex characteristics bound up with reproduction (genitals and organs of reproduction)
+62881,primary_subtractive_color_for_light primary_subtractive_colour_for_light,any of the three colors that give the primary colors for light after subtraction from white light; "the primary subtractive colors for light are magenta, cyan, and yellow"
+62882,primary_syphilis,the first stage; characterized by a chancre at the site of infection
+62883,primary_tooth deciduous_tooth baby_tooth milk_tooth,one of the first temporary teeth of a young mammal (one of 20 in children)
+62884,primate,any placental mammal of the order Primates; has good eyesight and flexible hands and feet
+62885,primateship,the office of primate
+62886,primatology,the branch of zoology that studies primates
+62887,prime,the second canonical hour; about 6 a.m.
+62888,prime prime_of_life,the time of maturity when power and vigor are greatest
+62889,prime prime_quantity,a natural number that has exactly two distinct natural number divisors: 1 and itself
+62890,prime_factor,the prime factors of a quantity are all of the prime quantities that will exactly divide the given quantity
+62891,prime_interest_rate,the interest rate on short-term loans that banks charge their commercial customers with high credit ratings
+62892,prime_meridian,meridian at zero degree longitude from which east and west are reckoned (usually the Greenwich longitude in England)
+62893,prime_number,an integer that has no integral factors but itself and 1
+62894,prime_time,the hours between 7 and 11 p.m. when the largest tv audience is available
+62895,primer,an introductory textbook
+62896,primidone Mysoline,an anticonvulsant (trade name Mysoline) used to treat grand mal seizures and essential tremor
+62897,primigravida gravida_I,(obstetrics) a woman who is pregnant for the first time
+62898,priming,the act of making something ready
+62899,primipara para_I,(obstetrics) woman who has been delivered of a child for the first time
+62900,primitive,a mathematical expression from which another expression is derived
+62901,primitive,a word serving as the basis for inflected or derived forms; "`pick' is the primitive from which `picket' is derived"
+62902,primitive primitive_person,a person who belongs to an early stage of civilization
+62903,primitivism,a genre characteristic of (or imitative of) primitive artists or children
+62904,primness prudishness prudery Grundyism,excessive or affected modesty
+62905,primo,the principal part of a duet (especially a piano duet)
+62906,primogeniture,right of inheritance belongs exclusively to the eldest son
+62907,primordial_dwarf hypoplastic_dwarf true_dwarf normal_dwarf,an achondroplastic dwarf whose small size is the result of a genetic defect; body parts and mental and sexual development are normal
+62908,primordium anlage,an organ in its earliest stage of development; the foundation for subsequent development
+62909,primping,careful or finicky grooming; "the primping alone took more than an hour"
+62910,primrose primula,any of numerous short-stemmed plants of the genus Primula having tufted basal leaves and showy flowers clustered in umbels or heads
+62911,primrose_jasmine Jasminum_mesnyi,evergreen rambling yellow-flowered shrub of western China
+62912,primrose_path,a life of ease and pleasure
+62913,primus,the presiding bishop of the Episcopal Church of Scotland
+62914,prince,a male member of a royal family other than the sovereign (especially the son of a sovereign)
+62915,prince's-feather gentleman's-cane prince's-plume red_amaranth purple_amaranth Amaranthus_cruentus Amaranthus_hybridus_hypochondriacus Amaranthus_hybridus_erythrostachys,tall showy tropical American annual having hairy stems and long spikes of usually red flowers above leaves deeply flushed with purple; seeds often used as cereal
+62916,prince's-feather princess_feather kiss-me-over-the-garden-gate prince's-plume Polygonum_orientale,annual with broadly ovate leaves and slender drooping spikes of crimson flowers; southeastern Asia and Australia; naturalized in North America
+62917,prince_charming,a suitor who fulfills the dreams of his beloved
+62918,prince_consort,a prince who is the husband of a reigning female sovereign
+62919,princedom,the dignity or rank or position of a prince
+62920,princeling,a petty or insignificant prince who rules some unimportant principality
+62921,princeling,a young prince
+62922,princess,a female member of a royal family other than the queen (especially the daughter of a sovereign)
+62923,princess_royal,the eldest daughter of a British sovereign
+62924,princewood Spanish_elm Cordia_gerascanthus,tropical American timber tree
+62925,principal,the original amount of a debt on which interest is calculated
+62926,principal,(criminal law) any person involved in a criminal offense, regardless of whether the person profits from such involvement
+62927,principal corpus principal_sum,capital as contrasted with the income derived from it
+62928,principal dealer,the major party to a financial transaction at a stock exchange; buys and sells for his own account
+62929,principal school_principal head_teacher head,the educator who has executive authority for a school; "she sent unruly pupils to see the principal"
+62930,principal_axis optic_axis,a line that passes through the center of curvature of a lens so that light is neither reflected nor refracted; "in a normal eye the optic axis is the direction in which objects are seen most distinctly"
+62931,principal_investigator PI,the scientist in charge of an experiment or research project
+62932,principality princedom,territory ruled by a prince
+62933,principalship,the post of principal
+62934,principle,a rule or standard especially of good behavior; "a man of principle"; "he will not violate his principles"
+62935,principle,a basic truth or law or assumption; "the principles of democracy"
+62936,principle precept,rule of personal conduct
+62937,principle rule,a basic generalization that is accepted as true and that can be used as a basis for reasoning or conduct; "their principles of composition characterized all their works"
+62938,principle rule,a rule or law concerning a natural phenomenon or the function of a complex system; "the principle of the conservation of mass"; "the principle of jet propulsion"; "the right-hand rule for inductive fields"
+62939,principle_of_equivalence,(physics) the principle that an observer has no way of distinguishing whether his laboratory is in a uniform gravitational field or is in an accelerated frame of reference
+62940,principle_of_liquid_displacement,(hydrostatics) the volume of a body immersed in a fluid is equal to the volume of the displaced fluid
+62941,principle_of_relativity,(physics) a universal law that states that the laws of mechanics are not affected by a uniform rectilinear motion of the system of coordinates to which they are referred
+62942,principle_of_superposition Huygens'_principle_of_superposition,the displacement of any point due to the superposition of wave systems is equal to the sum of the displacements of the individual waves at that point; "the principle of superposition is the basis of the wave theory of light"
+62943,principle_of_superposition superposition_principle superposition,(geology) the principle that in a series of stratified sedimentary rocks the lowest stratum is the oldest
+62944,print,the text appearing in a book, newspaper, or other printed publication; "I want to see it in print"
+62945,print,availability in printed form; "we've got to get that story into print"; "his book is no longer in print"
+62946,print,a copy of a movie on film (especially a particular version of it)
+62947,print,a fabric with a dyed pattern pressed onto it (usually by engraved rollers)
+62948,print,a picture or design printed from an engraving
+62949,print_buffer,a buffer that stores data until the printer is ready
+62950,print_media,a medium that disseminates printed matter
+62951,print_run press_run,the period that presses run to produce an issue of a newspaper
+62952,print_seller,someone who sells etchings and engravings etc.
+62953,print_shop printing_shop,a workplace where printing is done
+62954,printed_circuit,computer circuit consisting of an electronic sub-assembly; copper conductors are laminated on an insulating board or card and circuit components are inserted into holes and dip soldered
+62955,printer,(computer science) an output device that prints the results of data processing
+62956,printer pressman,someone whose occupation is printing
+62957,printer printing_machine,a machine that prints
+62958,printer's_devil,an apprentice in a printing establishment
+62959,printer's_ink printing_ink,a semisolid quick drying ink made especially for use in printing
+62960,printer_cable,a cable between a computer and a printer
+62961,printing,text handwritten in the style of printed matter
+62962,printing,the business of producing printed material for sale or distribution
+62963,printing printing_process,reproduction by applying ink to paper as for publication
+62964,printing_concern printing_business printing_company,a company that does commercial printing
+62965,printing_operation,an operation that controls the printing or display of information
+62966,printing_unit,a unit of measurement for printing
+62967,printmaker graphic_artist,an artist who designs and makes prints
+62968,printmaking,artistic design and manufacture of prints as woodcuts or silkscreens
+62969,printout,the output of a computer in printed form
+62970,prion,(microbiology) an infectious protein particle similar to a virus but lacking nucleic acid; thought to be the agent responsible for scrapie and other degenerative diseases of the nervous system
+62971,prior,the head of a religious order; in an abbey the prior is next below the abbot
+62972,priority antecedence antecedency anteriority precedence precedency,preceding in time
+62973,priority_processing,data processing in which the operations performed are determined by a system of priorities
+62974,priorship,the office of prior
+62975,priory,religious residence in a monastery governed by a prior or a convent governed by a prioress
+62976,prism,a polyhedron with two congruent and parallel faces (the bases) and whose lateral faces are parallelograms
+62977,prism optical_prism,optical device having a triangular shape and made of glass or quartz; used to deviate a beam or invert an image
+62978,prismatoid,a polyhedron whose vertices all lie in one or the other of two parallel planes; the faces that lie in those planes are the bases of the prismatoid
+62979,prismoid,a prismatoid whose bases are polygons having the same number of sides and whose other faces are trapezoids or parallelograms
+62980,prison prison_house,a prisonlike situation; a place of seeming confinement
+62981,prison prison_house,a correctional institution where persons are confined while on trial or for punishment
+62982,prison_camp internment_camp prisoner_of_war_camp POW_camp,a camp for prisoners of war
+62983,prison_chaplain,a chaplain in a prison
+62984,prison_guard jailer jailor gaoler screw turnkey,someone who guards prisoners
+62985,prison_term sentence time,the period of time a prisoner is imprisoned; "he served a prison term of 15 months"; "his sentence was 5 to 10 years"; "he is doing time in the county jail"
+62986,prisoner captive,a person who is confined; especially a prisoner of war
+62987,prisoner's_base,a children's game; two teams capture opposing players by tagging them and taking them to their own base
+62988,prisoner_of_war POW,a person who surrenders to (or is taken by) the enemy in time of war
+62989,prisoner_of_war_censorship,military censorship of communication to and from prisoners of war and civilian internees held by the armed forces
+62990,privacy privateness seclusion,the quality of being secluded from the presence or view of others
+62991,privacy privateness secrecy concealment,the condition of being concealed or hidden
+62992,private buck_private common_soldier,an enlisted man of the lowest rank in the Army or Marines; "our prisoner was just a private and knew nothing of value"
+62993,private_citizen,a citizen who does not hold any official or public position
+62994,private_detective PI private_eye private_investigator operative shamus sherlock,someone who can be employed as a detective to collect information
+62995,private_foundation,a charity that does not receive a major part of its support from the public
+62996,private_line,a telephone line serving a single subscriber
+62997,private_nuisance,a nuisance that interferes with your interest in and private use and enjoyment of your land
+62998,private_practice,the practice of a profession independently and not as an employee; "he teaches at the medical school but his fortune came from private practice"; "lawyers in private practice are in business and must make a profit to survive"
+62999,private_school,a school established and controlled privately and supported by endowment and tuition
+63000,private_treaty,a sale of property at a price agreed on by the seller and buyer without an intervening agency
+63001,privateer,a privately owned warship commissioned to prey on the commercial shipping or warships of an enemy nation
+63002,privateer privateersman,an officer or crew member of a privateer
+63003,privation deprivation,act of depriving someone of food or money or rights; "nutritional privation"; "deprivation of civil rights"
+63004,privation want deprivation neediness,a state of extreme poverty
+63005,privet,any of various Old World shrubs having smooth entire leaves and terminal panicles of small white flowers followed by small black berries; many used for hedges
+63006,privet_hedge,hedge of privet plants
+63007,privilege,(law) the right to refuse to divulge information obtained in a confidential relationship
+63008,privilege,a special advantage or immunity or benefit not enjoyed by all
+63009,privilege_of_the_floor,the right to be admitted onto the floor of a legislative assembly while it is in session
+63010,privy_council,an advisory council to a ruler (especially to the British Crown)
+63011,privy_purse,allowance for a monarch's personal expenses
+63012,prix_fixe,a menu listing fixed meals at fixed prices
+63013,prize award,something given for victory or superiority in a contest or competition or for winning a lottery; "the prize was a free trip to Europe"
+63014,prize_money,any money given as a prize
+63015,prize_winner lottery_winner,the winner of a lottery
+63016,prizefight prize_fight,a boxing match between professional boxers for a cash prize
+63017,prizefighter gladiator,a professional boxer
+63018,pro,an argument in favor of a proposal
+63019,pro-choice_faction,those who argue that the decision to have an induced abortion should be made by the mother
+63020,pro-life_faction,those who argue that induced abortion is killing and should be prohibited
+63021,pro-lifer,an advocate of full legal protection for embryos and fetuses; someone opposed to legalized induced abortion
+63022,proaccelerin prothrombin_accelerator accelerator_factor factor_V,a coagulation factor
+63023,probabilism,a Roman Catholic system of casuistry that when expert opinions differ an actor can follow any solidly probable opinion that he wishes even though some different opinion might be more probable
+63024,probabilism,(philosophy) the doctrine that (since certainty is unattainable) probability is a sufficient basis for belief and action
+63025,probability,the quality of being probable; a probable event or the most probable event; "for a while mutiny seemed a probability"; "going by past experience there was a high probability that the visitors were lost"
+63026,probability chance,a measure of how likely it is that some event will occur; a number expressing the ratio of favorable cases to the whole number of cases possible; "the probability that an unbiased coin will fall with the head up is 0.5"; "if that phone call is for me, chances are it's my wife"
+63027,probability_theorist,a mathematician who specializes in probability theory
+63028,probability_theory theory_of_probability,the branch of applied mathematics that deals with probabilities
+63029,probable,an applicant likely to be chosen
+63030,probable_cause,(law) evidence sufficient to warrant an arrest or search and seizure; "a magistrate determined that there was probable cause to search the house"
+63031,probate,the act of proving that an instrument purporting to be a will was signed and executed in accord with legal requirements
+63032,probate probate_will,a judicial certificate saying that a will is genuine and conferring on the executors the power to administer the estate
+63033,probate_court,a court having jurisdiction over the probate of wills and the administration of estates
+63034,probation,a trial period during which your character and abilities are tested to see whether you are suitable for work or for membership
+63035,probation,a trial period during which an offender has time to redeem himself or herself
+63036,probation,(law) a way of dealing with offenders without imprisoning them; a defendant found guilty of a crime is released by the court without imprisonment subject to conditions imposed by the court; "probation is part of the sentencing process"
+63037,probation_officer,the officer of the court who supervises probationers
+63038,probationer parolee,someone released on probation or on parole
+63039,probationer student_nurse,a nurse in training who is undergoing a trial period
+63040,probe,a flexible slender surgical instrument with a blunt end that is used to explore wounds or body cavities
+63041,probe,an exploratory action or expedition
+63042,probe,an investigation conducted using a flexible surgical instrument to explore an injury or a body cavity
+63043,probe investigation,an inquiry into unfamiliar or questionable activities; "there was a congressional probe into the scandal"
+63044,probenecid,a uricosuric drug that reduces the level of uric acid in the blood; used to treat gout
+63045,probiotic probiotic_bacterium probiotic_microflora probiotic_flora,a beneficial bacterium found in the intestinal tract of healthy mammals; often considered to be a plant
+63046,probity,complete and confirmed integrity; having strong moral principles; "in a world where financial probity may not be widespread"; "he enjoys an exaggerated reputation for probity"
+63047,problem,a question raised for consideration or solution; "our homework consisted of ten problems to solve"
+63048,problem job,a state of difficulty that needs to be resolved; "she and her husband are having problems"; "it is always a job to contact him"; "urban problems such as traffic congestion and smog"
+63049,problem_solver solver convergent_thinker,a thinker who focuses on the problem as stated and tries to synthesize information and knowledge to achieve a solution
+63050,problem_solving,the area of cognitive psychology that studies the processes involved in solving problems
+63051,problem_solving,the thought processes involved in solving a problem
+63052,proboscidean proboscidian,massive herbivorous mammals having tusks and a long trunk
+63053,proboscis,the human nose (especially when it is large)
+63054,proboscis trunk,a long flexible snout as of an elephant
+63055,proboscis_monkey Nasalis_larvatus,Borneo monkey having a long bulbous nose
+63056,procaine Ethocaine,a white crystalline powder (trade name Ethocaine) administered near nerves as a local anesthetic in dentistry and medicine
+63057,procaine_hydrochloride novocaine Novocain,procaine administered as a hydrochloride (trade name Novocain)
+63058,procarbazine,an antineoplastic drug used to treat Hodgkin's disease
+63059,procedure,a mode of conducting legal and parliamentary proceedings
+63060,procedure process,a particular course of action intended to achieve a result; "the procedure of obtaining a driver's license"; "it was a process of trial and error"
+63061,proceeding legal_proceeding proceedings,(law) the institution of a sequence of steps by which legal judgments are invoked
+63062,procellariiform_seabird,large long-winged bird with hooked bill and tubular nostrils that wanders the open seas
+63063,process cognitive_process mental_process operation cognitive_operation,(psychology) the performance of some composite cognitive activity; an operation that affects mental contents; "the process of thinking"; "the cognitive operation of remembering"
+63064,process outgrowth appendage,a natural prolongation or projection from a part of an organism either animal or plant; "a bony process"
+63065,process physical_process,a sustained phenomenon or one marked by gradual changes through a series of states; "events now in process"; "the process of calcification begins later for boys than for girls"
+63066,process unconscious_process,a mental process that you are not directly aware of; "the process of denial"
+63067,process-server,someone who personally delivers a process (a writ compelling attendance in court) or court papers to the defendant
+63068,process_cheese processed_cheese,made by blending several lots of cheese
+63069,process_printing,a method of printing colored reproductions from halftone plates
+63070,processing,preparing or putting through a prescribed procedure; "the processing of newly arrived immigrants"; "the processing of ore to obtain minerals"
+63071,processing_time,the time it takes to complete a prescribed procedure; "they increased output by decreasing processing time"
+63072,procession,the group action of a collection of people or animals or vehicles moving ahead in more or less regular formation; "processions were forbidden"
+63073,processional prosodion,religious music used in a procession
+63074,processional_march recessional_march,a march to be played for processions
+63075,processor,someone who processes things (foods or photographs or applicants etc.)
+63076,processor,a business engaged in processing agricultural products and preparing them for market
+63077,prochlorperazine,antipsychotic and antiemetic drug used to treat schizophrenia and to combat nausea and vomiting
+63078,proclamation promulgation,the formal act of proclaiming; giving public notice; "his promulgation of the policy proved to be premature"
+63079,proclivity propensity leaning,a natural inclination; "he has a proclivity for exaggeration"
+63080,proconsul,an official in a modern colony who has considerable administrative power
+63081,proconsul,a provincial governor of consular rank in the Roman Republic and Roman Empire
+63082,proconsul,an anthropoid ape of the genus Proconsul
+63083,proconsulship proconsulate,the position of proconsul
+63084,proconvertin cothromboplastin stable_factor factor_VII,a coagulation factor formed in the kidney under the influence of vitamin K
+63085,procrastination cunctation shillyshally,the act of procrastinating; putting off or delaying or defering an action to a later time
+63086,procrastinator postponer cunctator,someone who postpones work (especially out of laziness or habitual carelessness)
+63087,procrustean_standard procrustean_rule procrustean_bed,a standard that is enforced uniformly without regard to individuality
+63088,proctalgia,pain in the rectum
+63089,proctitis,inflammation of the rectum; marked by bloody stools and a frequent urge to defecate; frequently associated with Crohn's disease or ulcerative colitis
+63090,proctologist,a doctor specializing in diseases of the rectum and anus
+63091,proctology,the branch of medicine dealing with the diagnosis and treatment of disorders of the colon or rectum or anus
+63092,proctoplasty rectoplasty,reconstructive surgery of the anus or rectum
+63093,proctor monitor,someone who supervises (an examination)
+63094,proctorship,the position of proctor
+63095,proctoscope,an endoscope for examining the rectum
+63096,proctoscopy,visual examination of the rectum and the end of the colon by means of a proctoscope
+63097,procurator,(ancient Rome) someone employed by the Roman Emperor to manage finance and taxes
+63098,procurement procurance procural,the act of getting possession of something; "he was responsible for the procurement of materials and supplies"
+63099,procurer securer,someone who obtains or acquires; "the procurer of opera tickets"
+63100,procuress,a woman pimp
+63101,procursive_epilepsy,epilepsy in which a seizure is induced by whirling or running
+63102,procyclidine Kemadrin,drug (trade name Kemadrin) used to reduce tremors in Parkinsonism
+63103,procyonid,plantigrade carnivorous mammals
+63104,prod goad,a pointed instrument that is used to prod into a state of motion
+63105,prodigal profligate squanderer,a recklessly extravagant consumer
+63106,prodigy,an unusually gifted or intelligent (young) person; someone whose talents excite wonder and admiration; "she is a chess prodigy"
+63107,prodigy,an impressive or wonderful example of a particular quality; "the Marines are expected to perform prodigies of valor"
+63108,prodrome prodroma,an early symptom that a disease is developing or that an attack is about to occur
+63109,produce green_goods green_groceries garden_truck,fresh fruits and vegetable grown for the market
+63110,producer,someone who finds financing for and supervises the making and presentation of a show (play or film or program or similar work)
+63111,producer,something that produces; "Maine is a leading producer of potatoes"; "this microorganism is a producer of disease"
+63112,producer_gas air_gas,a gas made of carbon monoxide and hydrogen and nitrogen; made by passing air over hot coke
+63113,producer_price_index wholesale_price_index,an index of changes in wholesale prices
+63114,product,a chemical substance formed as a result of a chemical reaction; "a product of lime and nitric acid"
+63115,product,a consequence of someone's efforts or of a particular set of circumstances; "skill is the product of hours of practice"; "his reaction was the product of hunger and fatigue"
+63116,product mathematical_product,a quantity obtained by multiplication; "the product of 2 and 3 is 6"
+63117,product production,an artifact that has been created by someone or some process; "they improve their product every year"; "they export most of their agricultural production"
+63118,product-moment_correlation_coefficient Pearson_product-moment_correlation_coefficient,the most commonly used method of computing a correlation coefficient between variables that are linearly related
+63119,product_development,improving an existing product or developing new kinds of products
+63120,product_introduction,the introduction (usually by an advertising campaign) of a new product or product line
+63121,product_research,marketing research that yields information about desired characteristics of the product or service
+63122,production,a display that is exaggerated or unduly complicated; "she tends to make a big production out of nothing"
+63123,production,a presentation for the stage or screen or radio or television; "have you seen the new production of Hamlet?"
+63124,production,(economics) manufacturing or mining or growing something (usually in large quantities) for sale; "he introduced more efficient methods of production"
+63125,production,the creation of value or wealth by producing goods and services
+63126,production,the act or process of producing something; "Shakespeare's production of poetry was enormous"; "the production of white blood cells"
+63127,production,(law) the act of exhibiting in a court of law; "the appellate court demanded the production of all documents"
+63128,production_cost,combined costs of raw material and labor incurred in producing goods
+63129,production_line assembly_line line,mechanical system in a factory whereby an article is conveyed through sites at which successive operations are performed on it
+63130,production_order,an order that initiates the manufacturing process
+63131,productiveness productivity,the quality of being productive or having the power to produce
+63132,productivity,(economics) the ratio of the quantity and quality of units produced to the labor per unit of time
+63133,proenzyme zymogen,any of a group of compounds that are inactive precursors of enzymes and require some change (such as the hydrolysis of a fragment that masks an active enzyme) to become active
+63134,profanation,degradation of something worthy of respect; cheapening
+63135,profanation desecration blasphemy sacrilege,blasphemous behavior; the act of depriving something of its sacred character; "desecration of the Holy Sabbath"
+63136,profaneness,an attitude of irreverence or contempt for a divinity
+63137,profaneness unsanctification,unholiness by virtue of being profane
+63138,profanity,vulgar or irreverent speech or action
+63139,profession,the body of people in a learned occupation; "the news spread rapidly through the medical profession"; "they formed a community of scientists"
+63140,profession,affirmation of acceptance of some religion or faith; "a profession of Christianity"
+63141,profession,an occupation requiring special education (especially in the liberal arts or sciences)
+63142,profession professing,an open avowal (true or false) of some belief or opinion; "a profession of disagreement"
+63143,professional pro,an athlete who plays for pay
+63144,professional professional_person,a person engaged in one of the learned professions
+63145,professional_association,an association of practitioners of a given profession
+63146,professional_baseball,playing baseball for money
+63147,professional_basketball,playing basketball for money
+63148,professional_boxing,boxing for money
+63149,professional_football,football played for pay
+63150,professional_golf,playing golf for money
+63151,professional_organization professional_organisation,an organization of and for professional people
+63152,professional_relation,the relation that exists when one person requests and is granted professional help from a qualified source
+63153,professional_tennis,playing tennis for money
+63154,professional_wrestling,wrestling for money
+63155,professionalism,the expertness characteristic of a professional person
+63156,professionalization professionalisation,the social process whereby people come to engage in an activity for pay or as a means of livelihood; "the professionalization of American sports"; "the professionalization of warfare"
+63157,professor prof,someone who is a member of the faculty at a college or university
+63158,professorship chair,the position of professor; "he was awarded an endowed chair in economics"
+63159,proficiency,the quality of having great facility and competence
+63160,proficiency technique,skillfulness in the command of fundamentals deriving from practice and familiarity; "practice greatly improves proficiency"
+63161,profile,an outline of something (especially a human face as seen from one side)
+63162,profile,a vertical section of the Earth's crust showing the different horizons or layers
+63163,profile,an analysis (often in graphical form) representing the extent to which something exhibits various characteristics; "a biochemical profile of blood"; "a psychological profile of serial killers"
+63164,profile,biographical sketch
+63165,profiling,recording a person's behavior and analyzing psychological characteristics in order to predict or assess their ability in a certain sphere or to identify a particular group of people
+63166,profit gain,the advantageous quality of being beneficial
+63167,profit_and_loss profit_and_loss_account,an account compiled at the end of an accounting period to show gross and net profit or loss
+63168,profit_sharing,a system in which employees receive a share of the net profits of the business
+63169,profit_taker,someone who sells stock shares at a profit
+63170,profitableness profitability gainfulness lucrativeness,the quality of affording gain or benefit or profit
+63171,profiteer,someone who makes excessive profit (especially on goods in short supply)
+63172,profiterole,a small hollow pastry that is typically filled with cream and covered with chocolate
+63173,profligacy dissipation dissolution licentiousness looseness,dissolute indulgence in sensual pleasure
+63174,profoundness,extremeness of degree; "the profoundness of his ignorance"
+63175,profundity profoundness,intellectual depth; penetrating knowledge; keen insight; etc; "the depth of my feeling"; "the profoundness of the silence"
+63176,profusion profuseness richness cornucopia,the property of being extremely abundant; "the profusion of detail"; "the idiomatic richness of English"
+63177,progenitor primogenitor,an ancestor in the direct line
+63178,progeria,a rare abnormality marked by premature aging (grey hair and wrinkled skin and stooped posture) in a child
+63179,progesterone Lipo-Lutin,a steroid hormone (trade name Lipo-Lutin) produced in the ovary; prepares and maintains the uterus for pregnancy
+63180,progestin progestogen,any of a group of steroid hormones that have the effect of progesterone
+63181,prognathism,the condition of being prognathous; the condition of having a projecting jaw
+63182,prognosis forecast,a prediction about how something (as the weather) will develop
+63183,prognosis prospect medical_prognosis,a prediction of the course of a disease
+63184,program programme,an announcement of the events that will occur as part of a theatrical or sporting event; "you can't tell the players without a program"
+63185,program programme,a system of projects or services intended to meet a public need; "he proposed an elaborate program of public works"; "working mothers rely on the day care program"
+63186,program programme,a performance (or series of performances) at a public presentation; "the program lasted more than two hours"
+63187,program programme computer_program computer_programme,(computer science) a sequence of instructions that a computer can interpret and execute; "the program required several hundred lines of code"
+63188,program_music programme_music,musical compositions intended to evoke images or remind the listener of events
+63189,program_trading,a trading technique involving large blocks of stock with trades triggered by computer programs
+63190,programma,an edict that has been publicly posted
+63191,programmer computer_programmer coder software_engineer,a person who designs and writes and tests computer programs
+63192,programming programing computer_programming computer_programing,creating a sequence of instructions to enable the computer to do something
+63193,programming_language programing_language,(computer science) a language designed for programming computers
+63194,progress progression advance,a movement forward; "he listened for the progress of the troops"
+63195,progress progression procession advance advancement forward_motion onward_motion,the act of moving forward (as toward a goal)
+63196,progress_report,a report of work accomplished during a specified time period
+63197,progression patterned_advance,a series with a definite pattern of advance
+63198,progressive progressive_tense imperfect imperfect_tense continuous_tense,a tense of verbs used in describing action that is on-going
+63199,progressive_aspect,the aspect of a verb that expresses its on-going action
+63200,progressive_rock art_rock,a style of rock music that emerged in the 1970s; associated with attempts to combine rock with jazz and other forms; intended for listening and not dancing
+63201,progressive_tax graduated_tax,any tax in which the rate increases as the amount subject to taxation increases
+63202,progressive_vaccinia vaccinia_gangrenosa,a severe or even fatal form of vaccinia that occurs mainly in persons with an immunological deficiency; characterized by progressive enlargement of the initial lesion
+63203,progressiveness progressivity,advancement toward better conditions or policies or methods
+63204,progressivism,the political orientation of those who favor progress toward better conditions in government and society
+63205,progymnosperm,an ancestral fossil type from which modern gymnosperms are thought to have derived
+63206,prohibition,refusal to approve or assent to
+63207,prohibition,a law forbidding the sale of alcoholic beverages; "in 1920 the 18th amendment to the Constitution established prohibition in the US"
+63208,prohibition ban proscription,a decree that prohibits something
+63209,prohibition inhibition forbiddance,the action of prohibiting or inhibiting or forbidding (or an instance thereof); "they were restrained by a prohibition in their charter"; "a medical inhibition of alcoholic beverages"; "he ignored his parents' forbiddance"
+63210,prohibition prohibition_era,the period from 1920 to 1933 when the sale of alcoholic beverages was prohibited in the United States by a constitutional amendment
+63211,project projection,a planned undertaking
+63212,projectile missile,a weapon that is forcibly thrown or projected at a targets but is not self-propelled
+63213,projection,any solid convex shape that juts out from something
+63214,projection,(psychiatry) a defense mechanism by which your own traits and emotions are attributed to someone else
+63215,projection,the projection of an image from a film onto a screen
+63216,projection,a prediction made by extrapolating from past observations
+63217,projection,the representation of a figure or solid on a plane as it would look from a particular direction
+63218,projection,any structure that branches out from a central support
+63219,projection acoustic_projection sound_projection,the acoustic phenomenon that gives sound a penetrating quality; "our ukuleles have been designed to have superior sound and projection"; "a prime ingredient of public speaking is projection of the voice"
+63220,projectionist,the person who operates the projector in a movie house
+63221,projective_geometry descriptive_geometry,the geometry of properties that remain invariant under projection
+63222,projective_test projective_device projective_technique,any personality test designed to yield information about someone's personality on the basis of their unrestricted response to ambiguous objects or situations
+63223,projector,an optical device for projecting a beam of light
+63224,projector,an optical instrument that projects an enlarged image onto a screen
+63225,prokaryote procaryote,a unicellular organism having cells lacking membrane-bound nuclei; bacteria are the prime example but also included are blue-green algae and actinomycetes and mycoplasma
+63226,prolactin lactogenic_hormone luteotropin,gonadotropic hormone secreted by the anterior pituitary; in females it stimulates growth of the mammary glands and lactation after parturition
+63227,prolamine,a simple protein found in plants
+63228,prolapse prolapsus descensus,the slipping or falling out of place of an organ (as the uterus)
+63229,prolate_cycloid,a cycloid generated by a point outside the rolling circle
+63230,prolegomenon,a preliminary discussion inserted at the beginning of a book or treatise
+63231,prolepsis,anticipating and answering objections in advance
+63232,proletarian prole worker,a member of the working class (not necessarily employed); "workers of the world--unite!"
+63233,proliferation,a rapid increase in number (especially a rapid increase in the number of deadly weapons); "the proliferation of nuclear weapons"
+63234,proliferation,growth by the rapid multiplication of parts
+63235,proline,an amino acid that is found in many proteins (especially collagen)
+63236,prolixity prolixness windiness long-windedness wordiness,boring verbosity
+63237,prologue,an introduction to a play
+63238,prolongation protraction perpetuation lengthening,the act of prolonging something; "there was an indefinite prolongation of the peace talks"
+63239,prolonge,a rope fitted with a hook and used for towing a gun carriage
+63240,prolonge_knot sailor's_breastplate,a knot in the rope used to drag a gun carriage
+63241,prolonged_interrogation,a form of psychological torture inflicted by questioning the victim for hours
+63242,promenade,a square dance figure; couples march counterclockwise in a circle
+63243,promenade,a march of all the guests at the opening of a formal dance
+63244,promenade mall,a public area set aside as a pedestrian walk
+63245,promenade prom,a formal ball held for a school class toward the end of the academic year
+63246,promethazine Phenergan,antihistamine (trade name Phenergan) used to treat allergies; also an antiemetic used to treat motion sickness
+63247,promethium Pm atomic_number_61,a soft silvery metallic element of the rare earth group having no stable isotope; was discovered in radioactive form as a fission product of uranium
+63248,prominence,the state of being prominent: widely known or eminent
+63249,prominence,relative importance
+63250,promiscuity promiscuousness sleeping_around,indulging in promiscuous (casual and indiscriminate) sexual relations
+63251,promise,a verbal commitment by one person to another agreeing to do (or not to do) something in the future
+63252,promise hope,grounds for feeling hopeful about the future; "there is little or no promise that he will recover"
+63253,promisee,a person to whom a promise is made
+63254,promiser promisor,a person who makes a promise
+63255,promontory headland head foreland,a natural elevation (especially a rocky one that juts out into the sea)
+63256,promoter booster plugger,someone who is an active supporter and advocate
+63257,promotion,act of raising in rank or position
+63258,promotion furtherance advancement,encouragement of the progress or growth or acceptance of something
+63259,promotion promo publicity promotional_material packaging,a message issued in behalf of some product or cause or idea or person or institution; "the packaging of new ideas"
+63260,promotion_system,a system for advancing participants to higher-status positions
+63261,promotional_expense,the cost of promoting a product
+63262,prompt command_prompt,(computer science) a symbol that appears on the computer screen to indicate that the computer is ready to receive a command
+63263,prompt prompting,a cue given to a performer (usually the beginning of the next line to be spoken); "the audience could hear his prompting"
+63264,prompt_box prompter's_box,a booth projecting above the floor in the front of a stage where the prompter sits; opens toward the performers on stage
+63265,promptbook prompt_copy,the copy of the playscript used by the prompter
+63266,prompter autocue,a device that displays words for people to read
+63267,prompter theater_prompter,someone who assists a performer by providing the next words of a forgotten speech
+63268,promptness promptitude,the characteristic of doing things without delay
+63269,promulgation,the official announcement of a new law or ordinance whereby the law or ordinance is put into effect
+63270,promulgator,(law) one who promulgates laws (announces a law as a way of putting it into execution)
+63271,promycelium,the basidium of various fungi
+63272,pronation,rotation of the hands and forearms so that the palms face downward
+63273,pronator,a muscle that produces or assists in pronation
+63274,proneness,being disposed to do something; "accident proneness"
+63275,prong,a pointed projection
+63276,pronghorn prongbuck pronghorn_antelope American_antelope Antilocapra_americana,fleet antelope-like ruminant of western North American plains with small branched horns
+63277,pronominal_phrase pronominal,a phrase that functions as a pronoun
+63278,pronoun,a function word that is used in place of a noun or noun phrase
+63279,pronouncement dictum say-so,an authoritative declaration
+63280,pronucleus,the nucleus of the ovum or sperm after fertilization but before they fuse to form the nucleus of the zygote
+63281,pronunciation,the manner in which someone utters a word; "they are always correcting my pronunciation"
+63282,pronunciation orthoepy,the way a word or a language is customarily spoken; "the pronunciation of Chinese is difficult for foreigners"; "that is the correct pronunciation"
+63283,proof,a measure of alcoholic strength expressed as an integer twice the percentage of alcohol present (by volume)
+63284,proof,a formal series of statements showing that if one thing is true something else necessarily follows from it
+63285,proof,a trial photographic print from a negative
+63286,proof cogent_evidence,any factual evidence that helps to establish the truth of something; "if you have any proof for what you say, now is the time to produce it"
+63287,proof test_copy trial_impression,(printing) an impression made to check for errors
+63288,proof_spirit,a mixture containing half alcohol by volume at 60 degrees Fahrenheit
+63289,proofreader reader,someone who reads proof in order to find errors and mark corrections
+63290,prop,a support placed beneath or against something to keep it from shaking or falling
+63291,prop_root,a root that grows from and supports the stem above the ground in plants such as mangroves
+63292,propaedeutic propaedeutics,a course that provides an introduction to an art or science (or to more advanced study generally)
+63293,propaganda,information that is spread for the purpose of promoting some cause
+63294,propagandist,a person who disseminates messages calculated to assist some cause or some government
+63295,propagation,the movement of a wave through a medium
+63296,propagation extension,the spreading of something (a belief or practice) into new regions
+63297,propagator,someone who propagates plants (as under glass)
+63298,propagator disseminator,someone who spreads the news
+63299,propanal propionaldehyde,a colorless liquid aldehyde
+63300,propane,colorless gas found in natural gas and petroleum; used as a fuel
+63301,propanol propyl_alcohol,a clear colorless volatile liquid (alcohol) used as a solvent and antiseptic
+63302,propanolol Inderal,the first beta blocker (trade name Inderal) used in treating hypertension and angina pectoris and essential tremor
+63303,proparoxytone,word having stress or acute accent on the antepenult
+63304,propellant propellent,any substance that propels
+63305,propellant_explosive impulse_explosive,an explosive that is used to propel projectiles from guns or to propel rockets and missiles or to launch torpedos and depth charges
+63306,propeller propellor,a mechanical device that rotates to push against air or water
+63307,propeller_plane,an airplane that is driven by a propeller
+63308,propenal acrolein,a pungent colorless unsaturated liquid aldehyde made from propene
+63309,propenoate acrylate,a salt or ester of propenoic acid
+63310,propenoic_acid acrylic_acid,an unsaturated liquid carboxylic acid used in the manufacture of acrylic resins
+63311,propenonitrile acrylonitrile vinyl_cyanide,a colorless liquid unsaturated nitrile made from propene
+63312,proper_fraction,a fraction with a numerator smaller than the denominator
+63313,proper_noun proper_name,a noun that denotes a particular thing; usually capitalized
+63314,property,a basic or essential attribute shared by all members of a class; "a study of the physical properties of atomic particles"
+63315,property attribute dimension,a construct whereby objects or individuals can be distinguished; "self-confidence is not an endearing property"
+63316,property belongings holding,something owned; any tangible or intangible possession that is owned by someone; "that hat is my property"; "he is a man of property"
+63317,property prop,any movable articles or objects used on the set of a play or movie; "before every scene he ran down his checklist of props"
+63318,property_line,the boundary line between two pieces of property
+63319,property_man propman property_master,member of the stage crew in charge of properties
+63320,property_right,the legal right of ownership
+63321,property_settlement,(matrimonial law) the division of property owned or acquired by marriage partners during their marriage
+63322,property_tax land_tax,a capital tax on property imposed by municipalities; based on the estimated value of the property
+63323,prophase,the first stage of meiosis
+63324,prophase,the first stage of mitosis
+63325,prophecy divination,a prediction uttered under divine inspiration
+63326,prophecy prognostication vaticination,knowledge of the future (usually said to be obtained from a divine source)
+63327,prophet,someone who speaks by divine inspiration; someone who is an interpreter of the will of God
+63328,prophet prophesier oracle seer vaticinator,an authoritative person who divines the future
+63329,prophetess,a woman prophet
+63330,prophylaxis,the prevention of disease
+63331,prophyll,a plant structure resembling a leaf
+63332,propionic_acid propanoic_acid,a liquid fatty acid found in milk and sweat and in fuel distillates
+63333,propjet turboprop turbo-propeller_plane,an airplane with an external propeller that is driven by a turbojet engine
+63334,proportion,the quotient obtained when the magnitude of a part is divided by the magnitude of the whole
+63335,proportion dimension,magnitude or extent; "a building of vast proportions"
+63336,proportion proportionality balance,harmonious arrangement or relation of parts or elements within a whole (as in a design); "in all perfectly beautiful objects there is found the opposition of one part to another and a reciprocal balance"- John Ruskin
+63337,proportion ratio,the relation between things (or parts of things) with respect to their comparative quantity, magnitude, or degree; "an inordinate proportion of the book is given over to quotations"; "a dry martini has a large proportion of gin"
+63338,proportional,one of the quantities in a mathematical proportion
+63339,proportional_counter_tube proportional_counter,counter tube whose output pulse is proportional to number of ions produced
+63340,proportional_font,any font whose different characters have different widths
+63341,proportional_representation,representation of all parties in proportion to their popular vote
+63342,proportional_tax,any tax in which the rate is constant as the amount subject to taxation increases
+63343,proportionality,a ratio of two quantities that is constant
+63344,proposal,something proposed (such as a plan or assumption)
+63345,proposal proposition,the act of making a proposal; "they listened to her proposal"
+63346,proposer mover,(parliamentary procedure) someone who makes a formal motion
+63347,proposition,an offer for a private bargain (especially a request for sexual favors)
+63348,proposition,(logic) a statement that affirms or denies something and is either true or false
+63349,proposition,a task to be dealt with; "securing adequate funding is a time-consuming proposition"
+63350,propositional_logic propositional_calculus,a branch of symbolic logic dealing with propositions as units and with their combinations and the connectives that relate them
+63351,propositus,the person immediately affected by or concerned with an action
+63352,propoxyphene propoxyphene_hydrochloride Darvon,a mildly narcotic analgesic drug (trade name Darvon) related to methadone but less addictive
+63353,proprietary_colony,a colony given to a proprietor to govern (in 17th century)
+63354,proprietorship proprietary,an unincorporated business owned by a single person who is responsible for its liabilities and entitled to its profits
+63355,proprietorship_certificate,a certificate showing who is responsible in an individually owned business
+63356,proprietress,a woman proprietor
+63357,propriety properness correctitude,correct or appropriate behavior
+63358,proprioception,the ability to sense the position and location and orientation and movement of the body and its parts
+63359,proprioceptor,special nerve endings in the muscles and tendons and other organs that respond to stimuli regarding the position and movement of the body
+63360,proprionamide propanamide,the amide of propionic acid (C2H5CONH2)
+63361,props,proper respect; "I have to give my props to the governor for the way he handled the problem"
+63362,propulsion,a propelling force
+63363,propulsion actuation,the act of propelling
+63364,propulsion_system,a system that provides a propelling or driving force
+63365,propyl propyl_group propyl_radical,the monovalent organic group C3H7- obtained from propane
+63366,propylene propene,a flammable gas obtained by cracking petroleum; used in organic synthesis
+63367,propylene_glycol propanediol,a sweet colorless, viscous, hygroscopic liquid used as an antifreeze and in brake fluid and also as a humectant in cosmetics and personal care items although it can be absorbed through the skin with harmful effects
+63368,propylthiouracil,a crystalline compound used as an antithyroid drug in the treatment of goiter
+63369,proration,the proportional limitation of production or distribution of something (e.g. crude oil or natural gas) to some fractional part of the total capacity of each producer
+63370,prorogation,discontinuation of the meeting (of a legislative body) without dissolving it
+63371,proscenium apron forestage,the part of a modern theater stage between the curtain and the orchestra (i.e., in front of the curtain)
+63372,proscenium proscenium_wall,the wall that separates the stage from the auditorium in a modern theater
+63373,proscenium_arch,the arch over the opening in the proscenium wall
+63374,prosciutto,Italian salt-cured ham usually sliced paper thin
+63375,prose,matter of fact, commonplace, or dull expression
+63376,prose,ordinary writing as distinguished from verse
+63377,prose_poem,prose that resembles poetry
+63378,prosecution,the lawyers acting for the state to put the case against the defendant
+63379,prosecution criminal_prosecution,the institution and conduct of legal proceedings against a defendant for criminal behavior
+63380,prosecutor public_prosecutor prosecuting_officer prosecuting_attorney,a government official who conducts criminal prosecutions on behalf of the state
+63381,proselyte,a new convert; especially a gentile converted to Judaism
+63382,proselytism,the practice of proselytizing
+63383,proselytism,the state of being a proselyte; spiritual rebirth resulting from the zeal of crusading advocacy of the gospel
+63384,prosimian,primitive primates having large ears and eyes and characterized by nocturnal habits
+63385,prosiness prosaicness,commonplaceness as a consequence of being humdrum and not exciting
+63386,prosody inflection,the patterns of stress and intonation in a language
+63387,prosody metrics,the study of poetic meter and the art of versification
+63388,prospect chance,the possibility of future success; "his prospects as a writer are excellent"
+63389,prospector,someone who explores an area for mineral deposits
+63390,prospectus,a formal written offer to sell securities (filed with the SEC) that sets forth a plan for a (proposed) business enterprise; "a prospectus should contain the facts that an investor needs to make an informed decision"
+63391,prosperity,an economic state of growth with rising profits and full employment
+63392,prosperity successfulness,the condition of prospering; having good fortune
+63393,prostaglandin,a potent substance that acts like a hormone and is found in many bodily tissues (and especially in semen); produced in response to trauma and may affect blood pressure and metabolism and smooth muscle activity
+63394,prostate_cancer prostatic_adenocarcinoma,cancer of the prostate gland
+63395,prostate_gland prostate,a firm partly muscular chestnut sized gland in males at the neck of the urethra; produces a viscid secretion that is the fluid part of semen
+63396,prostate_specific_antigen PSA,a protein manufactured exclusively by the prostate gland; PSA is produced for the ejaculate where it liquifies the semen and allows sperm cells to swim freely; elevated levels of PSA in blood serum are associated with benign prostatic hyperplasia and prostate cancer
+63397,prostatectomy,surgical removal of part or all of the prostate gland
+63398,prostatitis,inflammation of the prostate gland characterized by perineal pain and irregular urination and (if severe) chills and fever
+63399,prosthesis prosthetic_device,corrective consisting of a replacement for a part of the body
+63400,prosthetics,the branch of medicine dealing with the production and use of artificial body parts
+63401,prosthetist,an expert in prosthetics
+63402,prosthion prostheon alveolar_point,craniometric point that is the most anterior point in the midline on the alveolar process of the maxilla
+63403,prosthodontics prosthodontia,the branch of dentistry dealing with the replacement of teeth and related mouth or jaw structures by artificial devices
+63404,prosthodontist,a dentist who is expert in prosthodontics
+63405,prostitute cocotte whore harlot bawd tart cyprian fancy_woman working_girl sporting_lady lady_of_pleasure woman_of_the_street,a woman who engages in sexual intercourse for money
+63406,prostitution harlotry whoredom,offering sexual intercourse for pay
+63407,prostration,abject submission; the emotional equivalent of prostrating your body
+63408,prostration,the act of assuming a prostrate position
+63409,protactinium protoactinium Pa atomic_number_91,a short-lived radioactive metallic element formed from uranium and disintegrating into actinium and then into lead
+63410,protagonist agonist,the principal character in a work of fiction
+63411,protamine,a simple protein found in fish sperm; rich in arginine; simpler in composition than globulin or albumin; counteracts the anticoagulant effect of heparin
+63412,protanopia red-blindness,dichromacy characterized by lowered sensitivity to long wavelengths of light resulting in an inability to distinguish red and purplish blue
+63413,protea,any tropical African shrub of the genus Protea having alternate rigid leaves and dense colorful flower heads resembling cones
+63414,protease peptidase proteinase proteolytic_enzyme,any enzyme that catalyzes the splitting of proteins into smaller peptide fractions and amino acids by a process known as proteolysis
+63415,protease_inhibitor PI,an antiviral drug used against HIV; interrupts HIV replication by binding and blocking HIV protease; often used in combination with other drugs
+63416,protection,the activity of protecting someone or something; "the witnesses demanded police protection"
+63417,protection shelter,the condition of being protected; "they were huddled together for protection"; "he enjoyed a sense of peace and protection in his new home"
+63418,protection trade_protection,the imposition of duties or quotas on imports in order to protect domestic industry against foreign competition; "he made trade protection a plank in the party platform"
+63419,protection tribute,payment extorted by gangsters on threat of violence; "every store in the neighborhood had to pay him protection"
+63420,protectionism,the policy of imposing duties or quotas on imports in order to protect home industries from overseas competition
+63421,protectionist,an advocate of protectionism
+63422,protective_coloration,coloration making an organism less visible or attractive to predators
+63423,protective_covering,the tough natural covering of some organisms
+63424,protective_covering protective_cover protection,a covering that is intend to protect from damage or injury; "they had no protection from the fallout"; "wax provided protection for the floors"
+63425,protective_fold,a flap of tissue that protects what it covers
+63426,protective_garment,clothing that is intended to protect the wearer from injury
+63427,protective_tariff,a tariff imposed to protect domestic firms from import competition
+63428,protectiveness,a feeling of protective affection
+63429,protectiveness,the quality of providing protection; "statistical evidence for the protectiveness of vaccination"
+63430,protectorate associated_state,a state or territory partly controlled by (but not a possession of) a stronger state but autonomous in internal affairs; protectorates are established by treaty
+63431,protectorship,the position of protector
+63432,protege,a person who receives support and protection from an influential patron who furthers the protege's career
+63433,protegee,a woman protege
+63434,protein,any of a large group of nitrogenous organic compounds that are essential constituents of living cells; consist of polymers of amino acids; essential in the diet of animals for growth and for repair of tissues; can be obtained from meat and eggs and milk and legumes; "a diet high in protein"
+63435,protein_folding folding,the process whereby a protein molecule assumes its intricate three-dimensional shape; "understanding protein folding is the next step in deciphering the genetic code"
+63436,protein_molecule,any large molecule containing chains of amino acids linked by peptide bonds
+63437,proteolysis,the hydrolysis of proteins into peptides and amino acids by cleavage of their peptide bonds
+63438,proteome,the full complement of proteins produced by a particular genome
+63439,proteomics,the branch of genetics that studies the full set of proteins encoded by a genome
+63440,proteosome_vaccine proteosome,a form of vaccine that can be administered by an inhaler
+63441,protest,the act of making a strong public expression of disagreement and disapproval; "he shouted his protests at the umpire"; "a shower of protest was heard from the rear of the hall"
+63442,protest objection dissent,the act of protesting; a public (often organized) manifestation of dissent
+63443,protest protestation,a formal and solemn declaration of objection; "they finished the game under protest to the league president"; "the senator rose to register his protest"; "the many protestations did not stay the execution"
+63444,protest_march,occasion when you can express opposition by marching (usually on some government institution) without a license
+63445,protestation,a strong declaration of protest
+63446,prothalamion prothalamium,a song in celebration of a marriage
+63447,prothorax,the anterior part of an insect's thorax; bears the first pair of legs
+63448,prothrombin factor_II,a protein in blood plasma that is the inactive precursor of thrombin
+63449,prothrombinase factor_X,coagulation factor that is converted to an enzyme that converts prothrombin to thrombin in a reaction that depends on calcium ions and other coagulation factors
+63450,protist protistan,free-living or colonial organisms with diverse nutritional and reproductive modes
+63451,proto-oncogene,a normal gene that has the potential to become an oncogene
+63452,protoarcheology protoarchaeology,the study of prehistoric human artifacts and human fossils
+63453,protoavis,most primitive avian type known; extinct bird of the Triassic having bird-like jaw and hollow limbs and breastbone with dinosaur-like tail and hind limbs
+63454,protoceratops,small horned dinosaur
+63455,protocol,forms of ceremony and etiquette observed by diplomats and heads of state
+63456,protocol,code of correct conduct; "safety protocols"; "academic protocol"
+63457,protocol communications_protocol,(computer science) rules determining the format and transmission of data
+63458,protoctist,any of the unicellular protists
+63459,protoctist_family,any of the families of Protoctista
+63460,protoctist_genus,any genus of Protoctista
+63461,protoctist_order,the order of protoctists
+63462,protohippus,Pliocene horse approaching donkeys in size
+63463,protohistory protoanthropology,the study humans prior to the invention of writing
+63464,protology,the study of origins and first things; "To Christians, protology refers to God's fundamental purpose for humanity"
+63465,proton,a stable particle with positive charge equal to the negative charge of an electron
+63466,proton_accelerator,a collider that collides beams of protons and antiprotons
+63467,protoplasm living_substance,the substance of a living cell (including cytoplasm and nucleus)
+63468,protoplasmic_astrocyte,a kind of astrocyte found in the grey matter
+63469,prototherian,primitive oviparous mammals found only in Australia and Tasmania and New Guinea
+63470,prototype paradigm epitome image,a standard or typical example; "he is the prototype of good breeding"; "he provided America with an image of the good father"
+63471,protozoal_infection,any infection caused by a protozoan
+63472,protozoan protozoon,any of diverse minute acellular or unicellular organisms usually nonphotosynthetic
+63473,protozoologist,a zoologist who studies protozoans
+63474,protozoology,the branch of zoology that studies protozoans
+63475,protractor,drafting instrument used to draw or measure angles
+63476,protriptyline,tricyclic antidepressant used to treat clinical depression
+63477,protrusion projection jut jutting,the act of projecting out from something
+63478,protuberance,the condition of being protuberant; the condition of bulging out; "the protuberance of his belly"
+63479,proturan telsontail,any of several minute primitive wingless and eyeless insects having a cone-shaped head; inhabit damp soil or decaying organic matter
+63480,proud_flesh,the swollen tissue around a healing wound or ulcer
+63481,proverb adage saw byword,a condensed but memorable saying embodying some important fact of experience that is taken as true by many people
+63482,providence,a manifestation of God's foresightful care for his creatures
+63483,providence,the prudence and care exercised by someone in the management of resources
+63484,providence,the guardianship and control exercised by a deity; "divine providence"
+63485,provider,someone who provides the means for subsistence
+63486,province responsibility,the proper sphere or extent of your activities; "it was his province to take care of himself"
+63487,provincial,(Roman Catholic Church) an official in charge of an ecclesiastical province acting under the superior general of a religious order; "the general of the Jesuits receives monthly reports from the provincials"
+63488,provincial_capital,the capital city of a province
+63489,provincialism,a lack of sophistication
+63490,proving_ground,a workplace for testing new equipment or ideas
+63491,provirus,cDNA copy of the RNA genome of a retrovirus; the genetic material of a virus as incorporated into and able to replicate with the genome of a host cell
+63492,provision,a store or supply of something (especially of food or clothing or arms)
+63493,provision proviso,a stipulated condition; "he accepted subject to one provision"
+63494,provision supply supplying,the activity of supplying or providing something
+63495,provitamin,vitamin precursor; a substance that is converted into a vitamin in animal tissues
+63496,provitamin_A carotene carotin,an orange isomer of an unsaturated hydrocarbon found in many plants; is converted into vitamin A in the liver
+63497,provocation incitement,needed encouragement; "the result was a provocation of vigorous investigation"
+63498,provost,a high-ranking university administrator
+63499,provost_court,a military court for trying people charged with minor offenses in an occupied area
+63500,provost_guard,a detachment under the command of a provost marshall
+63501,provost_marshal,the supervisor of the military police
+63502,prowl,the act of prowling (walking about in a stealthy manner)
+63503,prowler sneak stalker,someone who prowls or sneaks about; usually with unlawful intentions
+63504,proxemics,the study of spatial distances between individuals in different cultures and situations
+63505,proximity,the region close around a person or thing
+63506,proximity law_of_proximity,a Gestalt principle of organization holding that (other things being equal) objects or events that are near to one another (in space or time) are perceived as belonging together as a unit
+63507,proximity propinquity,the property of being close together
+63508,proxy,a power of attorney document given by shareholders of a corporation authorizing a specific vote on their behalf at a corporate meeting
+63509,proxy placeholder procurator,a person authorized to act for another
+63510,proxy_fight,a measure used by an acquirer to gain control of a takeover target; acquirer tries to persuade other shareholders that the management of the target should be replaced
+63511,proxy_war,a war instigated by a major power that does not itself participate
+63512,prude puritan,a person excessively concerned about propriety and decorum
+63513,prudence,discretion in practical affairs
+63514,prune,dried plum
+63515,prune_cake,moist cake containing prunes that have been made into a puree
+63516,prune_whip,dessert made of prune puree and whipped cream
+63517,pruner pruning_hook lopper,a long-handled pruning saw with a curved blade at the end and sometimes a clipper; used to prune small trees
+63518,pruner trimmer,a worker who thins out and trims trees and shrubs; "untouched by the pruner's axe"
+63519,pruning,something that has been pruned off of a plant
+63520,pruning,the act of trimming a plant
+63521,pruning_knife,a knife with a curved or hooked blade
+63522,pruning_saw,a handsaw used for pruning trees
+63523,pruning_shears,shears with strong blades used for light pruning of woody plants
+63524,pruno,a liquor concocted from a mixture of ingredients (such as prunes and raisins and milk and sugar) that can be fermented to produce alcohol; made by prison inmates
+63525,prurience pruriency lasciviousness carnality lubricity,feeling morbid sexual desire or a propensity to lewdness
+63526,prurigo,chronic inflammatory disease of the skin characterized by blister capped papules and intense itching
+63527,pruritus,an intense itching sensation that can have various causes (as by allergies or infection or lymphoma or jaundice etc.)
+63528,pruritus_ani,chronic itching of the skin around the anus
+63529,pruritus_vulvae,persistent itching of the external female genitalia
+63530,psalm,any sacred song used to praise the deity
+63531,psalmist,a composer of sacred songs; "David is called The Psalmist because he is believed to be the author of the Book of Psalms"
+63532,psalmody hymnody,the act of singing psalms or hymns
+63533,psalterium omasum third_stomach,the third compartment of the stomach of a ruminant
+63534,psaltery,an ancient stringed instrument similar to the lyre or zither but having a trapezoidal sounding board under the strings
+63535,psammoma sand_tumor,a tumor derived from fibrous tissue of the meninges or choroid plexus or certain other structures associated with the brain; characterized by sandlike particles
+63536,psephologist,a sociologist who studies election trends
+63537,psephology,the branch of sociology that studies election trends (as by opinion polls)
+63538,pseudobulb,a solid bulblike enlargement of the stem of some orchids
+63539,pseudoephedrine,poisonous crystalline alkaloid occurring with ephedrine and isomorphic with it
+63540,pseudohallucination,an image vivid enough to be a hallucination but recognized as unreal
+63541,pseudohermaphrodite,someone having external genitalia of one sex and internal sex organs of the other sex; not a true hermaphrodite because there is no ambiguity in the sex of the external genitalia and hence no question about gender at birth
+63542,pseudohermaphroditism,congenital condition in which a person has external genitalia of one sex and internal sex organs of the other sex
+63543,pseudomonad,bacteria usually producing greenish fluorescent water-soluble pigment; some pathogenic for plants and animals
+63544,pseudonym anonym nom_de_guerre,a fictitious name used when the person performs a particular social role
+63545,pseudophloem,false phloem
+63546,pseudopod pseudopodium,temporary outgrowth used by some microorganisms as an organ of feeding or locomotion
+63547,pseudoscience,an activity resembling science but based on fallacious assumptions
+63548,psi,the 23rd letter of the Greek alphabet
+63549,psilocybin psilocin,a hallucinogenic compound obtained from a mushroom
+63550,psilomelane,a mineral consisting of hydrated basic oxide of manganese and barium; a source of manganese
+63551,psilophyte,any plant of the order Psilophytales: a savannah plant
+63552,psilophyton,any plant or fossil of the genus Psilophyton
+63553,psilosis,falling out of hair
+63554,psittacosaur psittacosaurus,primitive dinosaur actually lacking horns and having only the beginning of a frill; long hind limbs and short forelimbs; may have been bipedal
+63555,psittacosis parrot_disease,infectious disease of birds
+63556,psittacosis parrot_fever ornithosis,an atypical pneumonia caused by a rickettsia microorganism and transmitted to humans from infected birds
+63557,psoas,either of two muscles of the abdomen and pelvis that flex the trunk and rotate the thigh
+63558,psocid,small winged insect living on the bark and leaves of trees and feeding on e.g. fungi and decaying plant matter
+63559,psocopterous_insect,small soft-bodied insect with chewing mouthparts and either no wings or two pairs
+63560,psoriasis,a chronic skin disease characterized by dry red patches covered with scales; occurs especially on the scalp and ears and genitalia and the skin over bony prominences
+63561,psoriatic_arthritis,a form of rheumatoid arthritis usually affecting fingers and toes and associated with psoriasis
+63562,psychedelia,the subculture of users of psychedelic drugs
+63563,psychedelic_rock acid_rock,a musical style that emerged in the 1960s; rock music inspired by or related to drug-induced experience
+63564,psychiatrist head-shrinker shrink,a physician who specializes in psychiatry
+63565,psychiatry psychopathology psychological_medicine,the branch of medicine dealing with the diagnosis and treatment of mental disorders
+63566,psychic,a person apparently sensitive to things beyond the natural range of perception
+63567,psychic_communication psychical_communication anomalous_communication,communication by paranormal means
+63568,psychic_energy mental_energy,an actuating force or factor
+63569,psychic_phenomena psychic_phenomenon parapsychology,phenomena that appear to contradict physical laws and suggest the possibility of causation by mental processes
+63570,psychoactive_drug mind-altering_drug consciousness-altering_drug psychoactive_substance,a drug that can produce mood changes and distorted perceptions
+63571,psychoanalysis analysis depth_psychology,a set of techniques for exploring underlying motives and a method of treating various mental disorders; based on the theories of Sigmund Freud; "his physician recommended psychoanalysis"
+63572,psychoanalytic_process,a process that is assumed to occur in psychoanalytic theory
+63573,psychobabble,using language loaded with psychological terminology
+63574,psychodid,a fly of the family Psychodidae
+63575,psychodynamics,the interrelation of conscious and unconscious processes and emotions that determine personality and motivation
+63576,psychodynamics,the branch of social psychology that deals with the processes and emotions that determine psychology and motivation
+63577,psychogenesis,the development in the life of an individual of some disorder that is caused by psychological rather than physiological factors
+63578,psychogenesis,a general term for the origin and development of almost any aspect of the mind
+63579,psycholinguist,a person (usually a psychologist but sometimes a linguist) who studies the psychological basis of human language
+63580,psycholinguistics,the branch of cognitive psychology that studies the psychological basis of linguistic competence and performance
+63581,psychological_feature,a feature of the mental life of a living organism
+63582,psychological_moment,the most appropriate time for achieving a desired effect
+63583,psychological_operation psyop,military actions designed to influence the perceptions and attitudes of individuals, groups, and foreign governments
+63584,psychological_state psychological_condition mental_state mental_condition,(psychology) a mental condition in which the qualities of a state are relatively constant even though the state itself may be dynamic; "a manic state"
+63585,psychological_warfare war_of_nerves,the use of psychological tactics to destroy the opponents' morale
+63586,psychologist,a scientist trained in psychology
+63587,psychology psychological_science,the science of mental life
+63588,psychology_department department_of_psychology,the academic department responsible for teaching and research in psychology
+63589,psychometry psychometrics psychometrika,any branch of psychology concerned with psychological measurements
+63590,psychomotor_development,progressive acquisition of skills involving both mental and motor activities
+63591,psychomotor_epilepsy temporal_lobe_epilepsy,epilepsy characterized clinically by impairment of consciousness and amnesia for the episode; often involves purposeful movements of the arms and legs and sometimes hallucinations
+63592,psychopharmacology,the study of drugs that affect the mind
+63593,psychophysicist,a psychologist trained in psychophysics
+63594,psychophysics,the branch of psychology concerned with quantitative relations between physical stimuli and their psychological effects
+63595,psychopomp,a conductor of souls to the afterworld; "Hermes was their psychopomp"
+63596,psychosexual_development,(psychoanalysis) the process during which personality and sexual behavior mature through a series of stages: first oral stage and then anal stage and then phallic stage and then latency stage and finally genital stage
+63597,psychosexuality,the mental representation of sexual activities
+63598,psychosis,any severe mental disorder in which contact with reality is lost or highly distorted
+63599,psychosomatic_disorder,a mental disorder that causes somatic symptoms
+63600,psychosurgery,brain surgery on human patients intended to relieve severe and otherwise intractable mental or behavioral problems
+63601,psychotherapist clinical_psychologist,a therapist who deals with mental and emotional disorders
+63602,psychotherapy,the treatment of mental or emotional problems by psychological means
+63603,psychotherapy psychotherapeutics mental_hygiene,the branch of psychiatry concerned with psychological methods
+63604,psychotherapy_group,a meeting of people for psychotherapeutic purposes
+63605,psychotic psychotic_person psycho,a person afflicted with psychosis
+63606,psychotic_depression,a state of depression so severe that the person loses contact with reality and suffers a variety of functional impairments
+63607,psychotropic_agent,a chemical substance that can influence human consciousness
+63608,psychrometer,a hygrometer consisting of a dry-bulb thermometer and a wet-bulb thermometer; their difference indicates the dryness of the surrounding air
+63609,ptarmigan,large Arctic and subarctic grouse with feathered feet and usually white winter plumage
+63610,pteridologist,an expert in the study of ferns
+63611,pteridology,the branch of botany that studies ferns
+63612,pteridophyte nonflowering_plant,plants having vascular tissue and reproducing by spores
+63613,pterion,the craniometric point in the region of the sphenoid fontanelle
+63614,pterodactyl,extinct flying reptile
+63615,pteropogon Pteropogon_humboltianum,southern Australian plant having feathery hairs surrounding the fruit
+63616,pterosaur flying_reptile,an extinct reptile of the Jurassic and Cretaceous having a bird-like beak and membranous wings supported by the very long fourth digit of each forelimb
+63617,pterygium,either of two thickened triangular layers of conjunctiva extending from the nasal edge of the eye to the cornea; it arises from irritation of the pinguecula
+63618,pterygoid_muscle,muscle descending from the sphenoid bone to the lower jaw
+63619,pterygoid_plexus,a plexus of veins draining the region of the pterygoid muscles and draining into the internal maxillary and anterior facial veins
+63620,pterygoid_process,two bony processes descending from the body of the sphenoid bone
+63621,ptomaine ptomain,any of various amines (such as putrescine or cadaverine) formed by the action of putrefactive bacteria
+63622,ptomaine ptomaine_poisoning,a term for food poisoning that is no longer in scientific use; food poisoning was once thought to be caused by ingesting ptomaines
+63623,ptosis,drooping of the upper eyelid caused by muscle paralysis and weakness
+63624,ptyalin,an amylase secreted in saliva
+63625,ptyalism,excessive flow of saliva
+63626,ptyalith,calculus in a salivary gland
+63627,pub_crawl,a tour of bars or public houses (usually taking one drink at each stop)
+63628,puberty pubescence,the time of life when sex glands become functional
+63629,pubes pubic_region loins,the lower part of the abdomen just above the external genital organs
+63630,pubic_hair bush crotch_hair,hair growing in the pubic area
+63631,pubis pubic_bone os_pubis,one of the three sections of the hipbone; together these two bones form the front of the pelvis
+63632,public,a body of people sharing some common interest; "the reading public"
+63633,public-relations_campaign,an advertising campaign intended to improve public relations
+63634,public_address_system P.A._system PA_system P.A. PA,an electronic amplification system used as a communication system in public areas
+63635,public_charity,a charity that is deemed to receive the major part of its support from the public (rather than from a small group of individuals)
+63636,public_debt,the total of the nation's debts: debts of local and state and national governments; an indicator of how much public spending is financed by borrowing instead of taxation
+63637,public_defender,a lawyer who represents indigent defendants at public expense
+63638,public_discussion ventilation,free and open discussion of (or debate on) some question of public interest; "such a proposal deserves thorough public discussion"
+63639,public_domain,property rights that are held by the public at large
+63640,public_easement,any easement enjoyed by the public in general (as the public's right to use public streets)
+63641,public_house pub saloon pothouse gin_mill taphouse,tavern consisting of a building with a bar and public rooms; often provides light meals
+63642,public_knowledge general_knowledge,knowledge that is available to anyone
+63643,public_law,a law affecting the public at large
+63644,public_library,a nonprofit library maintained for public use
+63645,public_nuisance common_nuisance,a nuisance that unreasonably interferes with a right that is common to the general public; "a public nuisance offends the public at large"
+63646,public_office,a position concerning the people as a whole
+63647,public_opinion popular_opinion opinion vox_populi,a belief or sentiment shared by most people; the voice of the people; "he asked for a poll of public opinion"
+63648,public_property,property owned by a government
+63649,public_relations PR,a promotion intended to create goodwill for a person or institution
+63650,public_relations_person,a person employed to establish and promote a favorable relationship with the public
+63651,public_school,private independent secondary school in Great Britain supported by endowment and tuition
+63652,public_school,a tuition free school in the United States supported by taxes and controlled by a school board
+63653,public_servant,someone who holds a government position (either by election or appointment)
+63654,public_service,employment within a government system (especially in the civil service)
+63655,public_speaking speechmaking speaking oral_presentation,delivering an address to a public audience; "people came to see the candidates and hear the speechmaking"
+63656,public_square square,an open area at the meeting of two or more streets
+63657,public_toilet comfort_station public_convenience convenience public_lavatory restroom toilet_facility wash_room,a toilet that is available to the public
+63658,public_transit,a public transportation system for moving passengers
+63659,public_transport,conveyance for passengers or mail or freight
+63660,public_treasury trough till,a treasury for government funds
+63661,public_works,structures (such as highways or schools or bridges or docks) constructed at government expense for public use
+63662,publican tavern_keeper,the keeper of a public house
+63663,publication,a copy of a printed work offered for distribution
+63664,publication,the communication of something to the public; making information generally known
+63665,publication publishing,the business of issuing printed matter for sale or distribution
+63666,publicist publicizer publiciser,someone who publicizes
+63667,publicity,the quality of being open to public view; "the publicity of the court room"
+63668,publisher,a person engaged in publishing periodicals or books or music
+63669,publisher newspaper_publisher,the proprietor of a newspaper
+63670,publisher publishing_house publishing_firm publishing_company,a firm in the publishing business
+63671,publishing_conglomerate publishing_empire,a conglomerate of publishing companies
+63672,puccoon Lithospermum_caroliniense,perennial plant of eastern North America having hairy foliage yielding a red or yellow pigment
+63673,puce,a color varying from dark purplish brown to dark red
+63674,puck hockey_puck,a vulcanized rubber disk 3 inches in diameter that is used instead of a ball in ice hockey
+63675,pucker ruck,an irregular fold in an otherwise even surface (as in cloth)
+63676,pudding,any of various soft thick unsweetened baked dishes; "corn pudding"
+63677,pudding,any of various soft sweet desserts thickened usually with flour and baked or boiled or steamed
+63678,pudding pud,(British) the dessert course of a meal (`pud' is used informally)
+63679,pudding_face pudding-face,a large fat human face
+63680,pudding_stone conglomerate,a composite rock made up of particles of varying size
+63681,puddingwife pudding-wife Halicoeres_radiatus,bluish and bronze wrasse; found from Florida keys to Brazil
+63682,puddle,a mixture of wet clay and sand that can be used to line a pond and that is impervious to water when dry
+63683,puddler,a worker who turns pig iron into wrought iron by puddling
+63684,pudendal_artery arteria_pudenda,arteries supplying the external genital organs of humans
+63685,pudendal_block,regional anesthesia resulting from the use of a local anesthetic to deaden the pudendal nerves in the region of the vulva and labia majora; used to ease discomfort during childbirth
+63686,pudendal_cleft urogenital_cleft rima_pudendi rima_vulvae pudendal_cleavage pudendal_slit vulvar_slit,the fissure between the labia majora
+63687,pudendal_vein venae_pudendum,vein of the pudendum
+63688,pudendum,human external genital organs collectively especially of a female
+63689,pudge,a short fat person
+63690,pueblo,a communal village built by Indians in the southwestern United States
+63691,puerpera,a woman in childbirth or shortly thereafter
+63692,puerperal_fever childbed_fever,serious form of septicemia contracted by a woman during childbirth or abortion (usually attributable to unsanitary conditions); formerly widespread but now uncommon
+63693,puerperium,time period following childbirth when the mother's uterus shrinks and the other functional and anatomic changes of pregnancy are resolved; "a perinatologist cared for her during the puerperium"
+63694,puff,a light inflated pastry or puff shell
+63695,puff,exaggerated praise (as for promotional purposes)
+63696,puff drag pull,a slow inhalation (as of tobacco smoke); "he took a puff on his pipe"; "he took a drag on his cigarette and expelled the smoke slowly"
+63697,puff puff_of_air whiff,a short light gust of air
+63698,puff_adder Bitis_arietans,large African viper that inflates its body when alarmed
+63699,puff_batter pouf_paste pate_a_choux,batter for making light hollow cases to hold various fillings
+63700,puff_paste pate_feuillete,dough used for very light flaky rich pastries
+63701,puffball true_puffball,any of various fungi of the family Lycoperdaceae whose round fruiting body discharges a cloud of spores when mature
+63702,puffbird,brownish tropical American bird having a large head with fluffed out feathers
+63703,puffed_rice,puffy rice kernels
+63704,puffed_wheat,puffy wheat berries
+63705,puffer pufferfish blowfish globefish,any of numerous marine fishes whose elongated spiny body can inflate itself with water or air to form a globe; several species contain a potent nerve poison; closely related to spiny puffers
+63706,puffery,a flattering commendation (especially when used for promotional purposes)
+63707,puffin,any of two genera of northern seabirds having short necks and brightly colored compressed bills
+63708,puffing,blowing tobacco smoke out into the air; "they smoked up the room with their ceaseless puffing"
+63709,puffing huffing snorting,an act of forcible exhalation
+63710,pug pug-dog,small compact smooth-coated breed of Asiatic origin having a tightly curled tail and broad flat wrinkled muzzle
+63711,pug_nose,a short nose; flattened and turned up at the end
+63712,puissance,power to influence or coerce; "the puissance of the labor vote"
+63713,puka Griselinia_lucida,South American shrub or small tree having long shining evergreen leaves and panicles of green or yellow flowers
+63714,puka Meryta_sinclairii,small roundheaded New Zealand tree having large resinous leaves and panicles of green-white flowers
+63715,puku Adenota_vardoni,an African antelope closely related to the waterbuck
+63716,pul,100 puls equal 1 afghani in Afghanistan
+63717,pula,the basic unit of money in Botswana
+63718,pulasan pulassan,fruit of an East Indian tree similar to the rambutan but sweeter
+63719,pulasan pulassan pulasan_tree Nephelium_mutabile,East Indian fruit tree bearing fruit similar to but sweeter than that of the rambutan
+63720,pulchritude,physical beauty (especially of a woman)
+63721,pull,the force used in pulling; "the pull of the moon"; "the pull of the current"
+63722,pull,a device used for pulling something; "he grabbed the pull and opened the drawer"
+63723,pull,a sustained effort; "it was a long pull but we made it"
+63724,pull clout,special advantage or influence; "the chairman's nephew has a lot of pull"
+63725,pull pulling,the act of pulling; applying force to move something toward or with you; "the pull up the hill had him breathing harder"; "his strenuous pulling strained his back"
+63726,pull-in pull-up,a roadside cafe especially for lorry drivers
+63727,pull-off rest_area rest_stop layby lay-by,designated paved area beside a main road where cars can stop temporarily
+63728,pull-through,cleaning implement consisting of an oily rag attached by a cord to a weight; is pulled through the barrel of a rifle or handgun to clean it
+63729,pull-up chin-up,an arm exercise performed by pulling yourself up on a horizontal bar until your chin is level with the bar
+63730,pull_chain,a chain (usually with a handle at the end) that is pulled in order to operate some mechanism (e.g. to flush a toilet)
+63731,pullback,(military) the act of pulling back (especially an orderly withdrawal of troops); "the pullback is expected to be over 25,000 troops"
+63732,pullback tieback,a device (as a decorative loop of cord or fabric) for holding or drawing something back; "the draperies were drawn to the sides by pullbacks"
+63733,puller,someone who applies force so as to cause motion toward herself or himself
+63734,puller tugger dragger,someone who pulls or tugs or drags in an effort to move something
+63735,pullet,young hen usually less than a year old
+63736,pulley pulley-block pulley_block block,a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope
+63737,pullorum_disease bacillary_white_diarrhea bacillary_white_diarrhoea,a serious bacterial disease of young chickens
+63738,pullover slipover,a sweater that is put on by pulling it over the head
+63739,pullulation,a rapid and abundant increase
+63740,pullulation gemmation,asexual reproduction in which a local growth on the surface or in the body of the parent becomes a separate individual
+63741,pulmonary_anthrax inhalation_anthrax anthrax_pneumonia ragpicker's_disease ragsorter's_disease woolsorter's_pneumonia woolsorter's_disease,a form of anthrax infection acquired by inhalation of dust containing Bacillus anthracis; initial symptoms (chill and cough and dyspnea and rapid pulse) are followed by extreme cardiovascular collapse
+63742,pulmonary_artery arteria_pulmonalis,one of two arteries (branches of the pulmonary trunk) that carry venous blood from the heart to the lungs
+63743,pulmonary_circulation,circulation of blood between the heart and the lungs
+63744,pulmonary_congestion,congestion in the lungs
+63745,pulmonary_embolism,blockage of the pulmonary artery by foreign matter or by a blood clot
+63746,pulmonary_plexis plexus_pulmonalis,one of two autonomic nerve plexuses in each lung
+63747,pulmonary_reserve,the additional volume of air that the lungs can inhale and exhale when breathing to the limit of capacity in times of stress
+63748,pulmonary_stenosis,abnormal narrowing of the opening into the pulmonary artery from the right ventricle
+63749,pulmonary_trunk truncus_pulmonalis,the artery that carries venous blood from the right ventricle of the heart and divides into the right and left pulmonary arteries
+63750,pulmonary_tuberculosis consumption phthisis wasting_disease white_plague,involving the lungs with progressive wasting of the body
+63751,pulmonary_valve,a semilunar valve between the right ventricle and the pulmonary artery; prevents blood from flowing from the artery back into the heart
+63752,pulmonary_vein vena_pulmonalis,any of four veins that carry arterial blood from the lungs to the left atrium of the heart
+63753,pulp,a mixture of cellulose fibers
+63754,pulp,the soft inner part of a tooth
+63755,pulp flesh,a soft moist part of a fruit
+63756,pulp mush,any soft or soggy mass; "he pounded it to a pulp"
+63757,pulp pulp_magazine,an inexpensive magazine printed on poor quality paper
+63758,pulp_cavity,the central cavity of a tooth containing the pulp (including the root canal)
+63759,pulpwood,softwood used to make paper
+63760,pulque,fermented Mexican drink from juice of various agave plants especially the maguey
+63761,pulsar,a degenerate neutron star; small and extremely dense; rotates very fast and emits regular pulses of polarized radiation
+63762,pulsation,a periodically recurring phenomenon that alternately increases and decreases some quantity
+63763,pulsation pulsing pulse impulse,(electronics) a sharp transient wave in the normal electrical state (or a series of such transients); "the pulsations seemed to be coming from a star"
+63764,pulse,edible seeds of various pod-bearing plants (peas or beans or lentils etc.)
+63765,pulse pulsation heartbeat beat,the rhythmic contraction and expansion of the arteries with each beat of the heart; "he could feel the beat of her heart"
+63766,pulse pulse_rate heart_rate,the rate at which the heart beats; usually measured to obtain a quick evaluation of a person's health
+63767,pulse-time_modulation,modulation of the time between successive pulses
+63768,pulse_counter,an electronic counter that counts the number of electric pulses
+63769,pulse_generator,a generator of single or multiple voltage pulses; usually adjustable for pulse rate
+63770,pulse_modulation,modulation that imposes a signal on a train of pulses
+63771,pulse_timing_circuit,a circuit that times pulses
+63772,pulverization pulverisation,annihilation by pulverizing something
+63773,pumice pumice_stone,a light glass formed on the surface of some lavas; used as an abrasive
+63774,pump,a low-cut shoe without fastenings
+63775,pump,a mechanical device that moves fluid or gas by pressure or suction
+63776,pump-and-dump_scheme,an illegal scheme for making money by manipulating stock prices; the schemer persuades other people to buy the stock and then sells it himself as soon as the price of the stock rises
+63777,pump-type_pliers,a type of pliers
+63778,pump_action slide_action,action mechanism in a modern rifle or shotgun; a back and forward motion of a sliding lever ejects the empty shell case and cocks the firearm and loads a new round
+63779,pump_house pumping_station,a house where pumps (e.g. to irrigate) are installed and operated
+63780,pump_priming,introducing water into a pump to improve the seal and start the water flowing
+63781,pump_room,a pump house at a spa where medicinal waters are pumped and where patrons gather
+63782,pump_well,an enclosure in the middle of a ship's hold that protects the ship's pumps
+63783,pumpkin,usually large pulpy deep-yellow round fruit of the squash family maturing in late summer or early autumn
+63784,pumpkin pumpkin_vine autumn_pumpkin Cucurbita_pepo,a coarse vine widely cultivated for its large pulpy round orange fruit with firm orange skin and numerous seeds; subspecies of Cucurbita pepo include the summer squashes and a few autumn squashes
+63785,pumpkin_ash Fraxinus_tomentosa,timber tree of central and southeastern United States having hairy branchlets and a swollen trunk base
+63786,pumpkin_pie,pie made of mashed pumpkin and milk and eggs and sugar
+63787,pumpkin_seed,the edible seed of a pumpkin
+63788,pumpkinseed Lepomis_gibbosus,small brilliantly colored North American sunfish
+63789,pun punning wordplay paronomasia,a humorous play on words; "I do it for the pun of it"; "his constant punning irritated her"
+63790,punch,an iced mixed drink usually containing alcohol and prepared for multiple servings; normally served in a punch bowl
+63791,punch clout poke lick biff slug,(boxing) a blow with the fist; "I gave him a clout on his nose"
+63792,punch puncher,a tool for making holes or indentations
+63793,punch-up,a fistfight; "the quarrel ended in a punch-up"
+63794,punch_bowl,a large bowl for serving beverages; usually with a ladle
+63795,punch_line laugh_line gag_line tag_line,the point of a joke or humorous story
+63796,punch_pliers,punch consisting of pliers for perforating paper or leather
+63797,punch_press,a power driven press used to shape metal parts
+63798,punchboard,a small board full of holes; each hole contains a slip of paper with symbols printed on it; a gambler pays a small sum for the privilege of pushing out a slip in the hope of obtaining one that entitles him to a prize
+63799,punched_card punch_card Hollerith_card,a card on which data can be recorded in the form of punched holes
+63800,puncher,someone who delivers punches
+63801,punching_bag,a person on whom another person vents their anger; "he resigned because his boss used him as a punching bag"
+63802,punching_bag punch_bag punching_ball punchball,an inflated ball or bag that is suspended and punched for training in boxing
+63803,punctilio,a fine point of etiquette or petty formality
+63804,punctilio,strict observance of formalities
+63805,punctuality promptness,the quality or habit of adhering to an appointed time
+63806,punctuated_equilibrium theory_of_punctuated_equilibrium,a theory of evolution holding that evolutionary change in the fossil record came in fits and starts rather than in a steady process of slow change
+63807,punctuation,something that makes repeated and regular interruptions or divisions
+63808,punctuation,the use of certain marks to clarify meaning of written material by grouping words grammatically into sentences and clauses and phrases
+63809,punctuation punctuation_mark,the marks used to clarify meaning by indicating separation of words into sentences and clauses and phrases
+63810,punctum,(anatomy) a point or small area
+63811,puncture,loss of air pressure in a tire when a hole is made by some sharp object
+63812,puncture,a small hole made by a sharp object
+63813,puncture,the act of puncturing or perforating
+63814,pung,a one-horse sleigh consisting of a box on runners
+63815,pungapung telingo_potato elephant_yam Amorphophallus_paeonifolius Amorphophallus_campanulatus,putrid-smelling aroid of southeastern Asia (especially the Philippines) grown for its edible tuber
+63816,pungency bite,wit having a sharp and caustic quality; "he commented with typical pungency"; "the bite of satire"
+63817,pungency bite sharpness raciness,a strong odor or taste property; "the pungency of mustard"; "the sulfurous bite of garlic"; "the sharpness of strange spices"; "the raciness of the wine"
+63818,puniness runtiness stuntedness,smallness of stature
+63819,punishment penalty penalization penalisation,the act of punishing
+63820,punitive_damages exemplary_damages smart_money,(law) compensation in excess of actual damages (a form of punishment awarded in cases of malicious or willful misconduct)
+63821,punk,substance that smolders when ignited; used to light fuses (especially fireworks)
+63822,punk_rock punk,rock music with deliberately offensive lyrics expressing anger and social alienation; in part a reaction against progressive rock
+63823,punk_rocker punk,a teenager or young adult who is a performer (or enthusiast) of punk rock and a member of the punk youth subculture
+63824,punkah,a large fan consisting of a frame covered with canvas that is suspended from the ceiling; used in India for circulating air in a room
+63825,punkie punky punkey no-see-um biting_midge,minute two-winged insect that sucks the blood of mammals and birds and other insects
+63826,punks,a youth subculture closely associated with punk rock music in the late 1970s; in part a reaction to the hippy subculture; dress was optional but intended to shock (plastic garbage bags or old school uniforms) and hair was dyed in bright colors (in Mohican haircuts or sometimes spiked in bright plumes)
+63827,punnet,a small light basket used as a measure for fruits
+63828,punster,someone overly fond of making puns
+63829,punt,an open flat-bottomed boat used in shallow waters and propelled by a long pole
+63830,punt punting,(football) a kick in which the football is dropped from the hands and kicked before it touches the ground; "the punt traveled 50 yards"; "punting is an important part of the game"
+63831,punter,someone who propels a boat with a pole
+63832,punter,(football) a person who kicks the football by dropping it from the hands and contacting it with the foot before it hits the ground
+63833,pup whelp,young of any of various canines such as a dog or wolf
+63834,pup_tent shelter_tent,a wedge-shaped tent; usually without a floor or windows
+63835,pupa,an insect in the inactive stage of development (when it is not feeding) intermediate between larva and adult
+63836,pupil,the contractile aperture in the center of the iris of the eye; resembles a large black dot
+63837,pupillary_sphincter musculus_sphincter_pupillae,a ring of smooth muscle surrounding the iris
+63838,puppet,a doll with a hollow head of a person or animal and a cloth body; intended to fit over the hand and be manipulated with the fingers
+63839,puppet marionette,a small figure of a person operated from above with strings by a puppeteer
+63840,puppet_government puppet_state pupet_regime,a government that is appointed by and whose affairs are directed by an outside authority that may impose hardships on those governed
+63841,puppet_ruler puppet_leader,a leader or ruler who is chosen by a despot to head a government
+63842,puppet_show puppet_play,a show in which the actors are puppets
+63843,puppeteer,one who operates puppets or marionettes
+63844,puppetry,the art of making puppets and presenting puppet shows
+63845,puppetry,a stilted dramatic performance (as if by puppets)
+63846,puppy,a young dog
+63847,puppy pup,an inexperienced young person
+63848,puppy_fat,fat on the body of a baby or child; disappears at adolescence
+63849,puppy_love calf_love crush infatuation,temporary love of an adolescent
+63850,purchase,something acquired by purchase
+63851,purchase,a means of exerting influence or gaining advantage; "he could get no purchase on the situation"
+63852,purchase,the acquisition of something for payment; "they closed the purchase with a handshake"
+63853,purchase_contract purchase_agreement,a contract stating the terms of a purchase
+63854,purchase_price,the price at which something is actually purchased
+63855,purchasing_agent,an agent who purchases goods or services for another
+63856,purchasing_department,the division of a business that is responsible for purchases
+63857,purdah,a screen used in India to separate women from men or strangers
+63858,purdah sex_segregation,the traditional Hindu or Muslim system of keeping women secluded
+63859,pure_absence simple_absence,an absence seizure without other complications; followed by 3-per-sec brainwave spikes
+63860,pure_imaginary_number,an imaginary number of the form a+bi where a is 0
+63861,pure_mathematics,the branches of mathematics that study and develop the principles of mathematics for their own sake rather than for their immediate usefulness
+63862,puree,food prepared by cooking and straining or processed in a blender
+63863,purgative cathartic physic aperient,a purging medicine; stimulates evacuation of the bowels
+63864,purgatory,a temporary condition of torment or suffering; "a purgatory of drug abuse"
+63865,purgatory,(theology) in Roman Catholic theology the place where those who have died in a state of grace undergo limited torment to expiate their sins
+63866,purge,an abrupt or sudden removal of a person or group from an organization or place; "he died in a purge by Stalin"
+63867,purge purging,an act of removing by cleansing; ridding of sediment or other undesired elements
+63868,purge purging purgation,the act of clearing yourself (or another) from some stigma or charge
+63869,purification,the act of cleaning by getting rid of impurities
+63870,purification,the act of purging of sin or guilt; moral or spiritual cleansing; "purification through repentance"
+63871,purification purgation,a ceremonial cleansing from defilement or uncleanness by the performance of appropriate rites
+63872,purifier,an apparatus for removing impurities
+63873,purine,any of several bases that are derivatives of purine
+63874,purine,a colorless crystalline organic base containing nitrogen; the parent compound of various biologically important substances
+63875,purism,scrupulous or exaggerated insistence on purity or correctness (especially in language); "linguistic purisms"
+63876,purist,someone who insists on great precision and correctness (especially in the use of words)
+63877,puritan,someone who adheres to strict religious principles; someone opposed to sensual pleasures
+63878,purity pureness,being undiluted or unmixed with extraneous material
+63879,purity pureness sinlessness innocence whiteness,the state of being unsullied by sin or moral wrong; lacking a knowledge of evil
+63880,purl,gold or silver wire thread
+63881,purl purl_stitch,a basic knitting stitch made by putting the needle through the front of the stich from the righthand side
+63882,purloo chicken_purloo poilu,thick stew made of rice and chicken and small game; southern U.S.
+63883,purple purpleness,a purple color or pigment
+63884,purple the_purple,(in ancient Rome) position of imperial status; "he was born to the purple"
+63885,purple the_purple,(Roman Catholic Church) official dress of a cardinal; so named after the Tyrial purple color of the robes
+63886,purple-fringed_orchid purple-fringed_orchis Habenaria_fimbriata,North American orchid similar to Habenaria psycodes with larger paler flowers
+63887,purple-fringed_orchid purple-fringed_orchis Habenaria_psycodes,North American orchid with clusters of fragrant purple fringed flowers
+63888,purple-stemmed_aster,a variety of aster
+63889,purple_anise Illicium_floridanum,small shrubby tree with purple flowers; found in wet soils of southeastern United States
+63890,purple_apricot black_apricot Prunus_dasycarpa,small hybrid apricot of Asia and Asia Minor having purplish twigs and white flowers following by inferior purple fruit
+63891,purple_bacteria,free-living Gram-negative pink to purplish-brown bacteria containing bacteriochlorophyll
+63892,purple_chinese_houses innocense Collinsia_bicolor Collinsia_heterophylla,white and lavender to pale-blue flowers grow in perfect rings of widely spaced bands around the stems forming a kind of pagoda; California
+63893,purple_clematis purple_virgin's_bower mountain_clematis Clematis_verticillaris,climber of northeastern North America having waxy purplish-blue flowers
+63894,purple_cress Cardamine_douglasii,small perennial herb of cooler regions of North America with racemose purple flowers
+63895,purple_emperor Apatura_iris,large European butterfly the male of which has wings shaded with purple
+63896,purple_finch Carpodacus_purpureus,North American finch having a raspberry-red head and breast and rump
+63897,purple_fringeless_orchid purple_fringeless_orchis Habenaria_peramoena,orchid of northeastern and alpine eastern North America closely related to the purple fringed orchids but having rosy-purple or violet flowers with denticulate leaf divisions
+63898,purple_gallinule,gallinules with showy purplish plumage
+63899,purple_grackle Quiscalus_quiscula,eastern United States grackle
+63900,purple_heather Brewer's_mountain_heather Phyllodoce_breweri,semi-prostrate evergreen herb of western United States
+63901,purple_locoweed purple_loco Oxytropis_lambertii,tufted locoweed of southwestern United States having purple or pink to white flowers
+63902,purple_loosestrife spiked_loosestrife Lythrum_salicaria,marsh herb with a long spike of purple flowers; originally of Europe but now rampant in eastern United States
+63903,purple_martin Progne_subis,large North American martin of which the male is blue-black
+63904,purple_milk_vetch Astragalus_danicus,perennial of southern and western Europe having dense racemes of purple or violet flowers
+63905,purple_mullein Verbascum_phoeniceum,Eurasian mullein with showy purple or pink flowers
+63906,purple_onion red_onion,flat mild onion having purplish tunics; used as garnish on hamburgers and salads
+63907,purple_passage,a passage full of ornate and flowery language
+63908,purple_poppy_mallow Callirhoe_involucrata,hairy perennial of central United States having round deeply lobed leaves and loose panicles of large crimson-purple or cherry-red flowers
+63909,purple_rock_brake Pellaea_atropurpurea,very short shallowly creeping North American fern usually growing on cliffs or walls and having dark glossy leaf axes
+63910,purple_sage chaparral_sage Salvia_leucophylla,silvery-leaved California herb with purple flowers
+63911,purple_sanicle Sanicula_bipinnatifida,sanicle of northwestern United States and British Columbia having yellow or red or purple flowers
+63912,purple_saxifrage Saxifraga_oppositifolia,plants forming dense cushions with bright reddish-lavender flowers; rocky areas of Europe and Asia and western North America
+63913,purple_silkweed Asclepias_purpurascens,perennial of eastern North America having pink-purple flowers
+63914,purple_trillium red_trillium birthroot Trillium_erectum,trillium of eastern North America having malodorous pink to purple flowers and an astringent root used in folk medicine especially to ease childbirth
+63915,purple_willow red_willow red_osier basket_willow purple_osier Salix_purpurea,Eurasian osier having reddish or purple twigs and bark rich in tannin
+63916,purplish_blue royal_blue,a shade of blue tinged with purple
+63917,purplish_red purplish-red,a red with a tinge of purple
+63918,purpose intent intention aim design,an anticipated outcome that is intended or that guides your planned actions; "his intent was to provide a new translation"; "good intentions are not enough"; "it was created with the conscious aim of answering immediate needs"; "he made no secret of his designs"
+63919,purposefulness sense_of_purpose,the quality of having a definite purpose
+63920,purposelessness aimlessness,the quality of lacking any definite purpose
+63921,purpura peliosis,any of several blood diseases causing subcutaneous bleeding
+63922,purr,a low vibrating sound typical of a contented cat
+63923,purse,a sum of money spoken of as the contents of a money purse; "he made the contribution out of his own purse"; "he and his wife shared a common purse"
+63924,purse,a sum of money offered as a prize; "the purse barely covered the winner's expenses"
+63925,purse,a small bag for carrying money
+63926,purse_seine,a seine designed to be set by two boats around a school of fish and then closed at the bottom by means of a line
+63927,purse_string,a drawstring used to close the mouth of a purse
+63928,purse_strings,financial resources or support; "who controls the purse strings in this family?"
+63929,purser,an officer aboard a ship who keeps accounts and attends to the passengers' welfare
+63930,purslane,a plant of the family Portulacaceae having fleshy succulent obovate leaves often grown as a potherb or salad herb; a weed in some areas
+63931,purslane_speedwell Veronica_peregrina,North American annual with small white flowers widely naturalized as a weed in South America and Europe
+63932,pursuance prosecution,the continuance of something begun with a view to its completion
+63933,pursued chased,a person who is being chased; "the film jumped back and forth from the pursuer to the pursued"
+63934,pursuer,a person who pursues some plan or goal; "a pursuer of truth"
+63935,pursuer chaser,a person who is pursuing and trying to overtake or capture; "always before he had been able to outwit his pursuers"
+63936,pursuit chase pursual following,the act of pursuing in an effort to overtake or capture; "the culprit started to run and the cop took off in pursuit"
+63937,pursuit pursuance quest,a search for an alternative that meets cognitive criteria; "the pursuit of love"; "life is more than the pursuance of fame"; "a quest for wealth"
+63938,purulence purulency,symptom of being purulent (containing or forming pus)
+63939,purulent_pleurisy,a collection of pus in the lung cavity
+63940,purveyance,the act of supplying something
+63941,purveyor,someone who supplies provisions (especially food)
+63942,pus purulence suppuration ichor sanies festering,a fluid product of inflammation
+63943,pus-forming_bacteria,bacteria that produce pus
+63944,push,an effort to advance; "the army made a push toward the sea"
+63945,push pushing,the act of applying force in order to move something away; "he gave the door a hard push"; "the pushing is good exercise"
+63946,push thrust,the force used in pushing; "the push of the water on the walls of the tank"; "the thrust of the jet engines"
+63947,push-bike,a bicycle that must be pedaled
+63948,push-button_radio,a radio receiver that can be tuned by pressing buttons
+63949,push-down_list push-down_stack stack,a list in which the next item to be removed is the item most recently stored (LIFO)
+63950,push-down_queue,a queue in which the last item to go in is the first item to come out (LIFO)
+63951,push-down_storage push-down_store stack,a storage device that handles data so that the next item to be retrieved is the item most recently stored (LIFO)
+63952,push_broom,a wide broom that is pushed ahead of the sweeper
+63953,push_button push button,an electrical switch operated by pressing; "the elevator was operated by push buttons"; "the push beside the bed operated a buzzer at the desk"
+63954,pushball,a game using a leather ball six feet in diameter; the two side try to push it across the opponents' goal
+63955,pusher drug_peddler peddler drug_dealer drug_trafficker,an unlicensed dealer in illegal drugs
+63956,pusher shover,someone who pushes
+63957,pusher thruster,one who intrudes or pushes himself forward
+63958,pusher zori,a sandal attached to the foot by a thong over the toes
+63959,pushover,someone who is easily taken advantage of
+63960,pushup press-up,an arm exercise performed lying face to the floor and pushing the body up and down with the arms
+63961,pusillanimity pusillanimousness,contemptible fearfulness
+63962,pussy-paw pussy-paws pussy's-paw Spraguea_umbellatum Calyptridium_umbellatum,pink clusters of densely packed flowers on prostrate stems resemble upturned pads of cats' feet; grow in coniferous forests of western North America
+63963,pussy_willow Salix_discolor,small willow of eastern North America having greyish leaves and silky catkins that come before the leaves
+63964,pussycat,a person who is regarded as easygoing and agreeable
+63965,pustule,a small inflamed elevation of skin containing pus; a blister filled with pus
+63966,put-down squelch squelcher takedown,a crushing remark
+63967,put-put,a small gasoline engine (as on motor boat)
+63968,put_option,an option to sell
+63969,put_option put,the option to sell a given stock (or stock index or commodity future) at a given price before a given date
+63970,putamen,the outer reddish part of the lenticular nucleus
+63971,putoff,a pretext for delay or inaction
+63972,putout,an out resulting from a fielding play (not a strikeout); "the first baseman made 15 putouts"
+63973,putrefaction rot,a state of decay usually accompanied by an offensive odor
+63974,putrescence putridness rottenness corruption,in a state of progressive putrefaction
+63975,putrescence rottenness,the quality of rotting and becoming putrid
+63976,putrescine,a colorless crystalline ptomaine with a foul odor that is produced in decaying animal matter
+63977,putridity,the state of being putrid
+63978,putt putting,hitting a golf ball that is on the green using a putter; "his putting let him down today; he didn't sink a single putt over three feet"
+63979,puttee,a strip of cloth wound around the leg to form legging; used by soldiers in World War I
+63980,putter,a golfer who is putting
+63981,putter putting_iron,the iron normally used on the putting green
+63982,putterer potterer,a person who putters about
+63983,putty,a dough-like mixture of whiting and boiled linseed oil; used especially to patch woodwork or secure panes of glass
+63984,putty_knife,a spatula used to mix or apply putty
+63985,puttyroot adam-and-eve Aplectrum_hyemale,North American orchid bearing a single leaf and yellowish-brown flowers
+63986,putz,(Yiddish) a fool; an idiot
+63987,puzzle,a game that tests your ingenuity
+63988,puzzle puzzler mystifier teaser,a particularly baffling problem that is said to have a correct solution; "he loved to solve chessmate puzzles"; "that's a real puzzler"
+63989,pya,100 pyas equal 1 kyat in Myanmar
+63990,pycnidium,flask-shaped asexual structure containing conidia
+63991,pycnodysostosis,a form of dwarfism accompanied by fragile bones and bad teeth
+63992,pycnosis pyknosis,a degenerative state of the cell nucleus
+63993,pyelitis,inflammation of the renal pelvis
+63994,pyelogram,an X ray of the kidneys and ureters
+63995,pyelography,roentgenography of the kidney and ureters (usually after injection with a radiopaque dye)
+63996,pyelonephritis,inflammation of the kidney and its pelvis caused by bacterial infection
+63997,pyemia pyaemia,septicemia caused by pus-forming bacteria being released from an abscess
+63998,pygmy pigmy,an unusually small individual
+63999,pygmy_chimpanzee bonobo Pan_paniscus,small chimpanzee of swamp forests in Zaire; a threatened species
+64000,pygmy_cypress Cupressus_pigmaea Cupressus_goveniana_pigmaea,rare small cypress native to northern California; sometimes considered the same species as gowen cypress
+64001,pygmy_marmoset Cebuella_pygmaea,the smallest monkey; of tropical forests of the Amazon
+64002,pygmy_mouse Baiomys_taylori,very small dark greyish brown mouse resembling a house mouse; of Texas and Mexico
+64003,pygmy_sperm_whale Kogia_breviceps,small sperm whale of warm waters of both coasts of North America
+64004,pyinma,relatively hard durable timber from the Queen's crape myrtle; light reddish brown, smooth and lustrous
+64005,pylon,a tower for guiding pilots or marking the turning point in a race
+64006,pylon power_pylon,a large vertical steel tower supporting high-tension power lines; "power pylons are a favorite target for terrorists"
+64007,pyloric_sphincter pyloric_valve musculus_sphincter_pylori,the sphincter muscle of the pylorus that separates the stomach from the duodenum
+64008,pyloric_stenosis,narrowing of the pyloric sphincter that blocks the passage of food from the stomach into the duodenum
+64009,pyloric_vein right_gastric_vein vena_gastrica-dextra,receives veins from the upper surfaces of the stomach and empties into the portal vein
+64010,pylorus,a small circular opening between the stomach and the duodenum
+64011,pyocyanase,a yellow-green mixture of antibiotics obtained from the bacillus of green pus
+64012,pyocyanin,a toxic blue crystalline antibiotic found in green pus
+64013,pyorrhea pyorrhoea,discharge of pus
+64014,pyorrhea pyorrhoea pyorrhea_alveolaris Riggs'_disease,chronic periodontitis; purulent inflammation of the teeth sockets
+64015,pyralid pyralid_moth,usually tropical slender-bodied long-legged moth whose larvae are crop pests
+64016,pyramid,a polyhedron having a polygonal base and triangular sides with a common vertex
+64017,pyramid,(stock market) a series of transactions in which the speculator increases his holdings by using the rising market value of those holdings as margin for further purchases
+64018,pyramid_bugle Ajuga_pyramidalis,European evergreen carpeting perennial
+64019,pyramid_scheme,a fraudulent scheme in which people are recruited to make payments to the person who recruited them while expecting to receive payments from the persons they recruit; when the number of new recruits fails to sustain the hierarchical payment structure the scheme collapses with most of the participants losing the money they put in
+64020,pyramidal_tent,a large tent shaped like a pyramid; can hold half a dozen people
+64021,pyramidal_tract pyramidal_motor_system corticospinal_tract,any of the important motor nerves on each side of the central nervous system that run from the sensorimotor areas of the cortex through the brainstem to motor neurons of the cranial nerve nuclei and the ventral root of the spinal cord
+64022,pyramiding,a fraudulent business practice involving some form of pyramid scheme e.g., the chain of distribution is artificially expanded by an excessive number of distributors selling to other distributors at progressively higher wholesale prices until retail prices are unnecessarily inflated
+64023,pyre funeral_pyre,wood heaped for burning a dead body as a funeral rite
+64024,pyrene,a pale yellow crystalline hydrocarbon C16H10 extracted from coal tar
+64025,pyrene,the small hard nutlet of a drupe or drupelet; the seed and the hard endocarp that surrounds it
+64026,pyrethrum,made of dried flower heads of pyrethrum plants
+64027,pyrethrum Dalmatian_pyrethrum Dalmatia_pyrethrum Tanacetum_cinerariifolium Chrysanthemum_cinerariifolium,white-flowered pyrethrum of Balkan area whose pinnate leaves are white and silky-hairy below; source of an insecticide; sometimes placed in genus Chrysanthemum
+64028,pyridine,a toxic colorless flammable liquid organic base with a disagreeable odor; usually derived from coal
+64029,pyriform_area piriform_area pyriform_lobe piriform_lobe,pear-shaped neural structure on either side of the brain in the rhinencephalon
+64030,pyrilamine,antihistamine used to treat rhinitis and pruritus
+64031,pyrimidine,any of several basic compounds derived from pyrimidine
+64032,pyrimidine,a heterocyclic organic compound with a penetrating odor
+64033,pyrite iron_pyrite fool's_gold,a common mineral (iron disulfide) that has a pale yellow color
+64034,pyrites,any of various metallic-looking sulfides (of which pyrite is the commonest)
+64035,pyrocellulose,nitrocellulose containing less nitrogen than guncotton; used in making smokeless powder
+64036,pyrochemical_process pyrochemistry,processes for chemical reactions at high temperatures
+64037,pyroelectricity,generation of an electric charge on certain crystals (such as tourmaline) as a result of a change in temperature
+64038,pyrogallol pyrogallic_acid,a toxic white lustrous crystalline phenol used to treat certain skin diseases and as a photographic developer
+64039,pyrogen,any substance characterized by its great flammability
+64040,pyrogen pyrectic,any substance that can cause a rise in body temperature
+64041,pyrograph,a design produced by pyrography
+64042,pyrographer,an artist who practices pyrography
+64043,pyrography,the act of producing drawings on wood or leather by using heated tools or a fine flame
+64044,pyrolatry fire-worship,the worship of fire
+64045,pyroligneous_acid wood_vinegar,a red-brown liquid formed in distillation of wood which contains acetic acid, methanol, acetone, wood oils, and tars
+64046,pyrolusite,a mineral consisting of manganese dioxide; an important source of manganese
+64047,pyrolysis,transformation of a substance produced by the action of heat
+64048,pyromancer,one who practices pyromancy
+64049,pyromancy,divination by fire or flames
+64050,pyromania,an uncontrollable desire to set fire to things
+64051,pyromaniac,a person with a mania for setting things on fire
+64052,pyrometer,a thermometer designed to measure high temperatures
+64053,pyrometric_cone,a pyrometer consisting of a series of cones that melt at different temperatures
+64054,pyromorphite green_lead_ore,a mineral consisting of lead chloride and phosphate; a minor source of lead
+64055,pyrope,a deep red garnet used as a gemstone
+64056,pyrophobia,a morbid fear of fire
+64057,pyrophoric_alloy,an alloy that emits sparks when struck or scratched with steel; used in lighter flints
+64058,pyrophosphate,a salt or ester of pyrophosphoric acid
+64059,pyrophosphoric_acid,a solid acid formed by reactions of orthophosphoric acid
+64060,pyrophyllite,a white or greenish aluminum silicate mineral (resembles talc)
+64061,pyrostat,a thermostat that operates at very high temperatures
+64062,pyrotechnics,(music) brilliance of display (as in the performance of music)
+64063,pyrotechnics pyrotechny,the craft of making fireworks
+64064,pyroxene,any of a group of crystalline silicate mineral common in igneous and metamorphic rocks
+64065,pyroxylin pyroxyline,highly flammable nitrocellulose used in making collodion and plastics and lacquers
+64066,pyrrhic,an ancient Greek dance imitating the motions of warfare
+64067,pyrrhic dibrach,a metrical unit with unstressed-unstressed syllables
+64068,pyrrhotite pyrrhotine magnetic_pyrites,a brownish iron sulfide mineral (FeS) having weak magnetic properties
+64069,pyrrhuloxia Pyrrhuloxia_sinuata,crested grey-and-red bird of southwest United States and Mexico
+64070,pyruvic_acid,a colorless acid formed as an important intermediate in metabolism or fermentation
+64071,pythium,any fungus of the genus Pythium
+64072,python,a soothsaying spirit or a person who is possessed by such a spirit
+64073,python,large Old World boas
+64074,pythoness,a witch with powers of divination
+64075,pyuria,presence of white blood cells in the urine; symptom of urinary tract infection
+64076,pyx pix,any receptacle in which wafers for the Eucharist are kept
+64077,pyx pix pyx_chest pix_chest,a chest in which coins from the mint are held to await assay
+64078,pyxidium pyxis,fruit of such plants as the plantain; a capsule whose upper part falls off when the seeds are released
+64079,pyxie pixie pixy Pyxidanthera_barbulata,creeping evergreen shrub having narrow overlapping leaves and early white star-shaped flowers; of the pine barrens of New Jersey and the Carolinas
+64080,pyxis,a small box used by ancient Greeks to hold medicines
+64081,qadi,an Islamic judge
+64082,qepiq,100 qepiq equal 1 manat in Azerbaijan
+64083,qi chi ch'i ki,the circulating life energy that in Chinese philosophy is thought to be inherent in all things; in traditional Chinese medicine the balance of negative and positive forms in the body is believed to be essential for good health
+64084,qibla,the direction of the Kaaba toward which Muslims turn for their daily prayers
+64085,qindarka qintar,100 qindarka equal 1 lek in Albania
+64086,qoph,the 19th letter of the Hebrew alphabet
+64087,quack,an untrained person who pretends to be a physician and who dispenses medical advice
+64088,quack,the harsh sound of a duck
+64089,quack-quack,child's word for a duck
+64090,quackery empiricism,medical practice and advice based on observation and experience in ignorance of scientific findings
+64091,quad quadrangle,a rectangular area surrounded on all sides by buildings
+64092,quad space,(printing) a block of type without a raised letter; used for spacing between words or sentences
+64093,quadrangular_prism,a prism whose bases are quadrangles
+64094,quadrant,any of the four areas into which a plane is divided by two orthogonal coordinate axes
+64095,quadrant,the area enclosed by two perpendicular radii of a circle
+64096,quadrant,a measuring instrument for measuring altitude of heavenly bodies
+64097,quadrant quarter-circle,a quarter of the circumference of a circle
+64098,quadrantanopia,blindness in one fourth of the visual field
+64099,quadraphony quadraphonic_system quadriphonic_system,a stereophonic sound recording or reproducing system using four separate channels
+64100,quadrate,a cubelike object
+64101,quadrate,a square-shaped object
+64102,quadratic quadratic_polynomial,a polynomial of the second degree
+64103,quadratic_equation quadratic,an equation in which the highest power of an unknown quantity is a square
+64104,quadratics,a branch of algebra dealing with quadratic equations
+64105,quadrature,the construction of a square having the same area as some other figure
+64106,quadrennium,a period of four years
+64107,quadric quadric_surface,a curve or surface whose equation (in Cartesian coordinates) is of the second degree
+64108,quadriceps quadriceps_femoris musculus_quadriceps_femoris quad,a muscle of the thigh that extends the leg
+64109,quadrilateral quadrangle tetragon,a four-sided polygon
+64110,quadrille,music for dancing the quadrille
+64111,quadrille,a square dance of 5 or more figures for 4 or more couples
+64112,quadrillion,the number that is represented as a one followed by 24 zeros; "in England they call a septillion a quadrillion"
+64113,quadrillion,the number that is represented as a one followed by 15 zeros
+64114,quadripara,(obstetrics) woman who has given birth to a viable infant in each of four pregnancies
+64115,quadriplegia,paralysis of both arms and both legs
+64116,quadriplegic,a person who is paralyzed in both arms and both legs
+64117,quadrivium,(Middle Ages) a higher division of the curriculum in a medieval university involving arithmetic and music and geometry and astronomy
+64118,quadroon,an offspring of a mulatto and a white parent; a person who is one-quarter black
+64119,quadrumvirate,a group of four men
+64120,quadruped,an animal especially a mammal having four limbs specialized for walking
+64121,quadruple,a quantity that is four times as great as another
+64122,quadruplet quad,one of four children born at the same time from the same pregnancy
+64123,quadruplicate,any four copies; any of four things that correspond to one another exactly; "it was signed in quadruplicate"
+64124,quadrupling,increase by a factor of four
+64125,quaestor,any of several public officials of ancient Rome (usually in charge of finance and administration)
+64126,quaff,a hearty draft
+64127,quaffer,a person who drinks heartily
+64128,quagga Equus_quagga,mammal of South Africa that resembled a zebra; extinct since late 19th century
+64129,quahaug quahog hard-shell_clam round_clam,Atlantic coast round clams with hard shells; large clams usually used for chowders or other clam dishes
+64130,quahog quahaug hard-shell_clam hard_clam round_clam Venus_mercenaria Mercenaria_mercenaria,an edible American clam; the heavy shells were used as money by some American Indians
+64131,quail,flesh of quail; suitable for roasting or broiling if young; otherwise must be braised
+64132,quail,small gallinaceous game birds
+64133,quail_bush quail_brush white_thistle Atriplex_lentiformis,spiny shrub with silvery-scurfy foliage of alkaline plains of southwestern United States and Mexico
+64134,quaintness,the quality of being quaint and old-fashioned; "she liked the old cottage; its quaintness was appealing"
+64135,quaintness,strangeness as a consequence of being old fashioned; "some words in her dialect had a charming quaintness"
+64136,quaker trembler,one who quakes and trembles with (or as with) fear
+64137,quaking_aspen European_quaking_aspen Populus_tremula,Old World aspen with a broad much-branched crown; northwestern Europe and Siberia to North Africa
+64138,qualification,the act of modifying or changing the strength of some idea; "his new position involves a qualification of his party's platform"
+64139,qualification making,an attribute that must be met or complied with and that fits a person for something; "her qualifications for the job are excellent"; "one of the qualifications for admission is an academic degree"; "she has the makings of fine musician"
+64140,qualifier,a contestant who meets certain requirements and so qualifies to take part in the next stage of competition; "the tournament was won by a late qualifier"
+64141,quality,high social status; "a man of quality"
+64142,quality,an essential and distinguishing attribute of something or someone; "the quality of mercy is not strained"--Shakespeare
+64143,quality caliber calibre,a degree or grade of excellence or worth; "the quality of students has risen"; "an executive of low caliber"
+64144,quality character lineament,a characteristic property that defines the apparent individual nature of something; "each town has a quality all its own"; "the radical character of our demands"
+64145,quality_control,maintenance of standards of quality of manufactured goods
+64146,quality_of_life,your personal satisfaction (or dissatisfaction) with the cultural or intellectual conditions under which you live (as distinct from material comfort); "the new art museum is expected to improve the quality of life"
+64147,quandong blue_fig,the fruit of the Brisbane quandong tree
+64148,quandong quandang quandong_tree Eucarya_acuminata Fusanus_acuminatus,Australian tree with edible flesh and edible nutlike seed
+64149,quandong quandang quantong native_peach,red Australian fruit; used for dessert or in jam
+64150,quandong quandong_tree Brisbane_quandong silver_quandong_tree blue_fig Elaeocarpus_grandis,Australian tree having hard white timber and glossy green leaves with white flowers followed by one-seeded glossy blue fruit
+64151,quandong_nut,edible nutlike seed of the quandong fruit
+64152,quango quasi-NGO,a quasi nongovernmental organization; an organization that is financed by the government yet acts independently of the government
+64153,quantic,a homogeneous polynomial having at least two variables
+64154,quantifiability measurability,the quality of being measurable
+64155,quantification,a limitation imposed on the variables of a proposition (as by the quantifiers `some' or `all' or `no')
+64156,quantification,the act of discovering or expressing the quantity of something
+64157,quantifier,(grammar) a word that expresses a quantity (as `fifteen' or `many')
+64158,quantifier logical_quantifier,(logic) a word (such as `some' or `all' or `no') that binds the variables in a logical proposition
+64159,quantitative_analysis quantitative_chemical_analysis,chemical analysis to determine the amounts of each element in the substance
+64160,quantity,the concept that something has a magnitude and can be represented in mathematical expressions by a constant or a variable
+64161,quantity,an adequate or large amount; "he had a quantity of ammunition"
+64162,quantization quantisation,the act of dividing into quanta or expressing in terms of quantum theory
+64163,quantum,a discrete amount of something that is analogous to the quantities in quantum theory
+64164,quantum,(physics) the smallest discrete quantity of some physical property that a system can possess (according to quantum theory)
+64165,quantum_chromodynamics QCD,a theory of strong interactions between elementary particles (including the interaction that binds protons and neutrons in the nucleus); it assumes that strongly interacting particles (hadrons) are made of quarks and that gluons bind the quarks together
+64166,quantum_electrodynamics QED,a relativistic quantum theory of the electromagnetic interactions of photons and electrons and muons
+64167,quantum_field_theory,the branch of quantum physics that is concerned with the theory of fields; it was motivated by the question of how an atom radiates light as its electrons jump from excited states
+64168,quantum_jump,(physics) an abrupt transition of an electron or atom or molecule from one quantum state to another with the emission or absorption of a quantum
+64169,quantum_leap quantum_jump,a sudden large increase or advance; "this may not insure success but it will represent a quantum leap from last summer"
+64170,quantum_mechanics,the branch of quantum physics that accounts for matter at the atomic level; an extension of statistical mechanics based on quantum theory (especially the Pauli exclusion principle)
+64171,quantum_physics,the branch of physics based on quantum theory
+64172,quantum_theory,(physics) a physical theory that certain properties occur only in discrete amounts (quanta)
+64173,quarantine,enforced isolation of patients suffering from a contagious disease in order to prevent the spread of disease
+64174,quarantine,isolation to prevent the spread of infectious disease
+64175,quark,(physics) hypothetical truly fundamental particle in mesons and baryons; there are supposed to be six flavors of quarks (and their antiquarks), which come in pairs; each has an electric charge of +2/3 or -1/3; "quarks have not been observed directly but theoretical predictions based on their existence have been confirmed experimentally"
+64176,quark_cheese quark,fresh unripened cheese of a smooth texture made from pasteurized milk, a starter, and rennet
+64177,quarrel,an arrow that is shot from a crossbow; has a head with four edges
+64178,quarrel wrangle row words run-in dustup,an angry dispute; "they had a quarrel"; "they had words"
+64179,quarreler quarreller,a disputant who quarrels
+64180,quarrelsomeness contentiousness,an inclination to be quarrelsome and contentious
+64181,quarrying,the extraction of building stone or slate from an open surface quarry
+64182,quarryman quarrier,a man who works in a quarry
+64183,quart,a British imperial capacity measure (liquid or dry) equal to 2 pints or 1.136 liters
+64184,quart,a United States liquid unit equal to 32 fluid ounces; four quarts equal one gallon
+64185,quart dry_quart,a United States dry unit equal to 2 pints or 67.2 cubic inches
+64186,quartan,a malarial fever that recurs every fourth day
+64187,quarter,(football, professional basketball) one of four divisions into which some games are divided; "both teams scored in the first quarter"
+64188,quarter,a unit of time equal to 15 minutes or a quarter of an hour; "it's a quarter til 4"; "a quarter after 4 o'clock"
+64189,quarter,one of four periods into which the school year is divided; "the fall quarter ends at Christmas"
+64190,quarter,a fourth part of a year; three months; "unemployment fell during the last quarter"
+64191,quarter,one of the four major division of the compass; "the wind is coming from that quarter"
+64192,quarter,a quarter of a hundredweight (25 pounds)
+64193,quarter,a quarter of a hundredweight (28 pounds)
+64194,quarter,a United States or Canadian coin worth one fourth of a dollar; "he fed four quarters into the slot machine"
+64195,quarter,an unspecified person; "he dropped a word in the right quarter"
+64196,quarter,a district of a city having some distinguishing character; "the Latin Quarter"
+64197,quarter,piece of leather that comprises the part of a shoe or boot covering the heel and joining the vamp
+64198,quarter,clemency or mercy shown to a defeated opponent; "he surrendered but asked for quarter"
+64199,quarter-century,a period of 25 years
+64200,quarter-hour 15_minutes,a quarter of an hour
+64201,quarter_crack,a crack on the inside of a horse's forefoot
+64202,quarter_day,a Christian holy day; one of four specified days when certain payments are due
+64203,quarter_horse,a small powerful horse originally bred for sprinting in quarter-mile races in Virginia
+64204,quarter_mile 440_yards,a unit of length equal to a quarter of 1 mile
+64205,quarter_note crotchet,a musical note having the time value of a quarter of a whole note
+64206,quarter_plate,a photographic plate measuring 3.25 inches by 4.25 inches
+64207,quarter_pound,4 ounces avoirdupois
+64208,quarter_rest,a musical rest having one-fourth the time value of a whole rest
+64209,quarter_section,a land unit equal to a quarter of a section (160 acres) and measuring 1/2 mile on a side
+64210,quarter_sessions,a local court with criminal jurisdiction and sometimes administrative functions
+64211,quarter_stock,stock with a par value of $25/share
+64212,quarter_tone quarter-tone,half of a semitone
+64213,quarterback signal_caller field_general,(football) the person who plays quarterback
+64214,quarterback signal_caller field_general,(American football) the position of the football player in the backfield who directs the offensive play of his team; "quarterback is the most important position on the team"
+64215,quarterdeck,the stern area of a ship's upper deck
+64216,quarterfinal,one of the four competitions in an elimination tournament whose winners go on to play in the semifinals
+64217,quartering,a coat of arms that occupies one quarter of an escutcheon; combining four coats of arms on one shield usually represented intermarriages
+64218,quartering,living accommodations (especially those assigned to military personnel)
+64219,quartering,dividing into four equal parts
+64220,quarterlight,car window consisting of a small pivoted glass vent in the door of a car
+64221,quarterly,a periodical that is published every quarter (or four issues per year)
+64222,quartermaster,an army officer who provides clothing and subsistence for troops
+64223,quartermaster_general,a staff officer in charge of supplies for a whole army
+64224,quarterstaff,a long stout staff used as a weapon
+64225,quartet quartette,four performers or singers who perform together
+64226,quartet quartette,a musical composition for four performers
+64227,quartet quartette foursome,four people considered as a unit; "he joined a barbershop quartet"; "the foursome teed off before 9 a.m."
+64228,quartet quartette quadruplet quadruple,a set of four similar things considered as a unit
+64229,quartile,(statistics) any of three points that divide an ordered distribution into four parts each containing one quarter of the scores
+64230,quarto 4to,the size of a book whose pages are made by folding a sheet of paper twice to form four leaves
+64231,quartz,a hard glossy mineral consisting of silicon dioxide in crystal form; present in most rocks (especially sandstone and granite); yellow sand is quartz with iron oxide impurities
+64232,quartz_battery quartz_mill,a stamp mill for stamping quartz
+64233,quartz_crystal,a thin plate or small rod of quartz cut along certain lines and ground so that it can produce an electric signal at a constant frequency; used in crystal oscillators
+64234,quartz_glass quartz vitreous_silica lechatelierite crystal,colorless glass made of almost pure silica
+64235,quartz_lamp,a mercury-vapor lamp that is enclosed in a quartz container instead of a glass container
+64236,quartzite,hard metamorphic rock consisting essentially of interlocking quartz crystals
+64237,quasar quasi-stellar_radio_source,a starlike object that may send out radio waves and other forms of energy; many have large red shifts
+64238,quasi_contract,a contract created by law for reasons of justice without any expression of assent
+64239,quasiparticle,a quantum of energy (in a crystal lattice or other system) that has position and momentum and can in some respects be regarded as a particle
+64240,quassia,a bitter compound used as an insecticide and tonic and vermifuge; extracted from the wood and bark of trees of the genera Quassia and Picrasma
+64241,quassia bitterwood Quassia_amara,handsome South American shrub or small tree having bright scarlet flowers and yielding a valuable fine-grained yellowish wood; yields the bitter drug quassia from its wood and bark
+64242,quatercentennial quatercentenary,the 400th anniversary (or the celebration of it)
+64243,quaternary_ammonium_compound,a compound derived from ammonium with hydrogen atoms replaced by organic groups; used as surface-active agents, disinfectants, and in drugs
+64244,quatrain,a stanza of four lines
+64245,quattrocento,the 15th century in Italian art and literature
+64246,quaver,a tremulous sound
+64247,quay,wharf usually built parallel to the shoreline
+64248,queasiness squeamishness qualm,a mild state of nausea
+64249,queen,something personified as a woman who is considered the best or most important of her kind; "Paris is the queen of cities"; "the queen of ocean liners"
+64250,queen,the wife or widow of a king
+64251,queen,one of four face cards in a deck bearing a picture of a queen
+64252,queen,(chess) the most powerful piece
+64253,queen,the only fertile female in a colony of social insects such as bees and ants and termites; its function is to lay eggs
+64254,queen queen_mole_rat,an especially large mole rat and the only member of a colony of naked mole rats to bear offspring which are sired by only a few males
+64255,queen queen_regnant female_monarch,a female sovereign ruler
+64256,queen's_cup bride's_bonnet Clintonia_uniflora,plant with 1 or 2 white starlike flowers on short leafless stalks; Alaska to California and east to Oregon and Montana
+64257,queen_bee,fertile egg-laying female bee
+64258,queen_consort,the wife of a reigning king
+64259,queen_dowager,the widow of a king
+64260,queen_mother,a queen dowager who is mother of the reigning sovereign
+64261,queen_of_the_night Selenicereus_grandiflorus,tropical American climbing cactus having triangular branches; often cultivated for its large showy night-blooming flowers followed by yellow red-streaked fruits
+64262,queen_post,vertical tie post in a roof truss
+64263,queen_regent,a queen who serves as ruler when the king cannot
+64264,queen_triggerfish Bessy_cerca oldwench oldwife Balistes_vetula,tropical Atlantic fish
+64265,quellung quellung_reaction,the swelling of the capsule surrounding a microorganism after reaction with an antibody; the basis of certain tests for identifying microorganisms; "pneumococcus quellung"
+64266,quenched_steel,steel that has been hardened by immersing it in water or oil to cool it
+64267,quercitron,a yellow dye made from the bark of the quercitron oak tree
+64268,quern,a primitive stone mill for grinding corn by hand
+64269,querulousness,the quality of being given to complaining
+64270,quesadilla,a tortilla that is filled with cheese and heated
+64271,quest seeking,the act of searching for something; "a quest for diamonds"
+64272,question,an informal reference to a marriage proposal; "he was ready to pop the question"
+64273,question head,the subject matter at issue; "the question of disease merits serious discussion"; "under the head of minor Roman poets"
+64274,question inquiry enquiry query interrogation,an instance of questioning; "there was a question about my training"; "we made inquiries of all those who were present"
+64275,question interrogation interrogative interrogative_sentence,a sentence of inquiry that asks for a reply; "he asked a direct question"; "he had trouble phrasing his interrogations"
+64276,question_mark interrogation_point,a punctuation mark (?) placed at the end of a sentence to indicate a question
+64277,question_master quizmaster,the host or chairman of a radio or tv quiz show or panel game
+64278,question_of_fact matter_of_fact,a disputed factual contention that is generally left for a jury to decide
+64279,question_of_law matter_of_law,a disputed legal contention that is generally left for a judge to decide
+64280,question_time,a period during a parliamentary session when members of British Parliament may ask questions of the ministers
+64281,questioning inquiring,a request for information
+64282,questionnaire,a form containing a set of questions; submitted to people to gain statistical information
+64283,quetzal,the basic unit of money in Guatemala; equal to 100 centavos
+64284,quetzal quetzal_bird,large trogon of Central America and South America having golden-green and scarlet plumage
+64285,queue,(information processing) an ordered list of tasks to be performed or messages to be transmitted
+64286,queue,a braid of hair at the back of the head
+64287,queue waiting_line,a line of people or vehicles waiting for something
+64288,quibble quiddity cavil,an evasion of the point of an argument by raising irrelevant distinctions or objections
+64289,quibbler caviller caviler pettifogger,a disputant who quibbles; someone who raises annoying petty objections
+64290,quiche,a tart filled with rich unsweetened custard; often contains other ingredients (as cheese or ham or seafood or vegetables)
+64291,quiche_Lorraine,quiche made with cheese and bacon
+64292,quick,any area of the body that is highly sensitive to pain (as the flesh underneath the skin or a fingernail or toenail)
+64293,quick_bread,breads made with a leavening agent that permits immediate baking
+64294,quick_march,marching at quick time
+64295,quick_study sponge,someone able to acquire new knowledge and skills rapidly and easily; "she soaks up foreign languages like a sponge"
+64296,quick_time,a normal marching pace of 120 steps per minute
+64297,quickener invigorator enlivener,an agent that gives or restores life or vigor; "the soul is the quickener of the body"
+64298,quickening,the stage of pregnancy at which the mother first feels the movements of the fetus
+64299,quickening,the process of showing signs of life; "the quickening of seed that will become ripe grain"
+64300,quicksand,a treacherous situation that tends to entrap and destroy
+64301,quicksand,a pit filled with loose wet sand into which objects are sucked down
+64302,quickset,cuttings of plants set in the ground to grow as hawthorn for hedges or vines; "a quickset of a vine planted in a vineyard"
+64303,quickstep,military march accompanying quick time
+64304,quickstep,a ballroom dance with both quick and slow steps
+64305,quid_pro_quo quid,something for something; that which a party receives (or is promised) in return for something he does or gives or promises
+64306,quiddity haecceity,the essence that makes something the kind of thing it is and makes it different from any other
+64307,quiescence quiescency dormancy sleeping,quiet and inactive restfulness
+64308,quietism,a form of religious mysticism requiring withdrawal from all human effort and passive contemplation of God
+64309,quietist,a religious mystic who follows quietism
+64310,quietness soundlessness,the property of making no sound
+64311,quiff,a prominent forelock (especially one brushed upward from the forehead)
+64312,quill,a stiff hollow protective spine on a porcupine or hedgehog
+64313,quill calamus shaft,the hollow spine of a feather
+64314,quill quill_pen,pen made from a bird's feather
+64315,quillwort,any of several spore-bearing aquatic or marsh plants having short rhizomes and leaves resembling quills; worldwide except Polynesia
+64316,quilt comforter comfort puff,bedding made of two layers of cloth filled with stuffing and stitched together
+64317,quilted_bedspread,a bedspread constructed like a thin quilt
+64318,quilting,stitching through layers of fabric and a filling so as to create a design
+64319,quilting,a material used for making a quilt, or a quilted fabric
+64320,quilting_bee,a gathering to make quilts
+64321,quinacrine quinacrine_hydrochloride mepacrine Atabrine,a drug (trade name Atabrine) used to treat certain worm infestations and once used to treat malaria
+64322,quince,aromatic acid-tasting pear-shaped fruit used in preserves
+64323,quince quince_bush Cydonia_oblonga,small Asian tree with pinkish flowers and pear-shaped fruit; widely cultivated
+64324,quincentennial quincentenary,the 500th anniversary (or the celebration of it)
+64325,quinidine Quinidex Quinora,cardiac drug (trade names Quinidex and Quinora) used to treat certain heart arrhythmias
+64326,quinine,a bitter alkaloid extracted from chinchona bark; used in malaria therapy
+64327,quinone benzoquinone,any of a class of aromatic yellow compounds including several that are biologically important as coenzymes or acceptors or vitamins; used in making dyes
+64328,quinquefoliate_leaf,a compound leaf having five leaflets
+64329,quinquennium,a period of five years
+64330,quinsy peritonsillar_abscess,a painful pus filled inflammation of the tonsils and surrounding tissues; usually a complication of tonsillitis
+64331,quintal,a unit of weight equal to 100 kilograms
+64332,quintessence,the purest and most concentrated essence of something
+64333,quintessence,the most typical example or representative of a type
+64334,quintessence ether,the fifth and highest element after air and earth and fire and water; was believed to be the substance composing all heavenly bodies
+64335,quintet quintette,five performers or singers who perform together
+64336,quintet quintette,a musical composition for five performers
+64337,quintet quintette fivesome,five people considered as a unit
+64338,quintet quintette quintuplet quintuple,a set of five similar things considered as a unit
+64339,quintillion,the number that is represented as a one followed by 18 zeros
+64340,quintipara,(obstetrics) woman who has given birth to a viable infant in each of five pregnancies
+64341,quintuplet quint quin,one of five children born at the same time from the same pregnancy
+64342,quintupling,increasing by a factor of five
+64343,quipu,calculator consisting of a cord with attached cords; used by ancient Peruvians for calculating and keeping records
+64344,quira,any of several tropical American trees some yielding economically important timber
+64345,quire,a quantity of paper; 24 or 25 sheets
+64346,quirk,a narrow groove beside a beading
+64347,quirk_bead bead_and_quirk,beading formed with a narrow groove separating it from the surface it decorates
+64348,quirk_molding quirk_moulding,a molding having a small groove in it
+64349,quirt,whip with a leather thong at the end
+64350,quitclaim,act of transferring a title or right or claim to another
+64351,quitclaim quitclaim_deed,document transferring title or right or claim to another
+64352,quittance,a document or receipt certifying release from an obligation or debt
+64353,quitter,a person who gives up too easily
+64354,quiver,case for holding arrows
+64355,quiz,an examination consisting of a few short questions
+64356,quiz_program,a game show in which contestants answer questions
+64357,quo_warranto,a hearing to determine by what authority someone has an office or franchise or liberty
+64358,quodlibet,an issue that is presented for formal disputation
+64359,quoin coign coigne,expandable metal or wooden wedge used by printers to lock up a form within a chase
+64360,quoin coign coigne,the keystone of an arch
+64361,quoit,game equipment consisting of a ring of iron or circle of rope used in playing the game of quoits
+64362,quoits horseshoes,a game in which iron rings (or open iron rings) are thrown at a stake in the ground in the hope of encircling it
+64363,quorum,a gathering of the minimal number of members of an organization to conduct business
+64364,quota,a prescribed number; "all the salesmen met their quota for the month"
+64365,quota,a proportional share assigned to each participant
+64366,quota,a limitation on imports; "the quota for Japanese imports was negotiated"
+64367,quotability,the quality of being worthy of being quoted
+64368,quotation,a statement of the current market price of a security or commodity
+64369,quotation,the practice of quoting from books or plays etc.; "since he lacks originality he must rely on quotation"
+64370,quotation quote citation,a passage or expression that is quoted or cited
+64371,quotation_mark quote inverted_comma,a punctuation mark used to attribute the enclosed text to someone else
+64372,quoter,a communicator (speaker or writer) who uses quotations
+64373,quotient,the ratio of two quantities to be divided
+64374,quotient,the number obtained by division
+64375,quotient_verdict,an improper and unacceptable kind of compromise verdict
+64376,qurush,20 qurush equal 1 riyal in Saudi Arabia
+64377,rabato rebato,a wired or starched collar of intricate lace; worn in 17th century
+64378,rabbet rebate,a rectangular groove made to hold two pieces together
+64379,rabbet_joint,a joint formed by fitting together two rabbeted boards
+64380,rabbi,spiritual leader of a Jewish congregation; qualified to expound and apply Jewish law
+64381,rabbinate,rabbis collectively
+64382,rabbinate,the office or function of a rabbi
+64383,rabbit coney cony,any of various burrowing animals of the family Leporidae having long ears and short tails; some domesticated and raised for pets or food
+64384,rabbit hare,flesh of any of various rabbits or hares (wild or domesticated) eaten as food
+64385,rabbit-eared_bandicoot rabbit_bandicoot bilby Macrotis_lagotis,bandicoot with leathery ears like a rabbit
+64386,rabbit_brush rabbit_bush Chrysothamnus_nauseosus,pleasantly aromatic shrub having erect slender flexible hairy branches and dense clusters of small yellow flowers covering vast areas of western alkali plains and affording a retreat for jackrabbits; source of a yellow dye used by the Navajo
+64387,rabbit_burrow rabbit_hole,a hole in the ground as a nest made by wild rabbits
+64388,rabbit_ears,an indoor TV antenna; consists of two extendible rods that form a V
+64389,rabbit_ears,the long ears of a rabbit
+64390,rabbit_hutch,a hutch for rabbits
+64391,rabbit_punch,a short chopping blow to the back of the neck
+64392,rabbiteye_blueberry rabbit-eye_blueberry rabbiteye Vaccinium_ashei,shrub of southeastern United States grown commercially especially for canning industry
+64393,rabbitfish Chimaera_monstrosa,large European chimaera
+64394,rabbitweed rabbit-weed snakeweed broom_snakeweed broom_snakeroot turpentine_weed Gutierrezia_sarothrae,low-growing sticky subshrub of southwestern United States having narrow linear leaves on many slender branches and hundreds of tiny yellow flower heads
+64395,rabbitwood buffalo_nut Pyrularia_pubera,shrub of southeastern United States parasitic on roots of hemlocks having sparse spikes of greenish flowers and pulpy drupes
+64396,rabble riffraff ragtag ragtag_and_bobtail,disparaging terms for the common people
+64397,rabies hydrophobia lyssa madness,an acute viral disease of the nervous system of warm-blooded animals (usually transmitted by the bite of a rabid animal); rabies is fatal if the virus reaches the brain
+64398,raccoon,the fur of the North American racoon
+64399,raccoon racoon,an omnivorous nocturnal mammal native to North America and Central America
+64400,raccoon_dog Nyctereutes_procyonides,small wild dog of eastern Asia having facial markings like those of a raccoon
+64401,race,people who are believed to belong to the same genetic stock; "some biologists doubt that there are important genetic differences between races of human beings"
+64402,race,any competition; "the race for the presidency"
+64403,race,a contest of speed; "the race is to the swift"
+64404,race_meeting,a regular occasion on which a number of horse races are held on the same track; "the Epsom race meeting was an important social event"
+64405,race_problem,a social and political problem caused by conflict between races occupying the same or adjacent regions
+64406,race_riot,a riot caused by hatred for one another of members of different races in the same community
+64407,raceabout,a small sloop having the keep of a knockabout but with finer lines and carrying more sail
+64408,racecard,a program for a race meeting; lists the races and the names of the horses
+64409,racehorse race_horse bangtail,a horse bred for racing
+64410,raceme,usually elongate cluster of flowers along the main stem in which the flowers at the base open first
+64411,racemic_acid,the optically inactive form of tartaric acid that is often found in grape juice
+64412,racer,an animal that races
+64413,racer,slender fast-moving North American snakes
+64414,racer race_car racing_car,a fast car that competes in races
+64415,racer race_driver automobile_driver,someone who drives racing cars at high speeds
+64416,racerunner race_runner six-lined_racerunner Cnemidophorus_sexlineatus,very swift lizard of eastern and central United States
+64417,racetrack racecourse raceway track,a course over which races are run
+64418,racetrack_tout,someone who offers advice about betting on horses (either to influence the odds or in the hope of sharing some of the winnings)
+64419,raceway race,a canal for a current of water
+64420,rachis,axis of a compound leaf or compound inflorescence
+64421,rachitis,inflammation of the vertebral column
+64422,racial_immunity,natural immunity shared by all members of a particular race
+64423,racial_profiling,a form of racism consisting of the (alleged) policy of policemen who stop and search vehicles driven by persons belonging to particular racial groups
+64424,racial_segregation,segregation by race
+64425,racing,the sport of engaging in contests of speed
+64426,racing_boat,a boat propelled by oarsmen and designed for racing
+64427,racing_circuit circuit,a racetrack for automobile races
+64428,racing_gig,a light narrow racing boat for two or more oarsmen
+64429,racing_skiff single_shell,a shell for a single oarsman
+64430,racing_start,the start of a race
+64431,racism,the prejudice that members of one race are intrinsically superior to members of other races
+64432,racism racialism racial_discrimination,discriminatory or abusive behavior towards members of another race
+64433,racist racialist,a person with a prejudiced belief that one racial group is superior to others
+64434,rack,rib section of a forequarter of veal or pork or especially lamb or mutton
+64435,rack,framework for holding objects
+64436,rack,a form of torture in which pain is inflicted by stretching the body
+64437,rack single-foot,a rapid gait of a horse in which each foot strikes the ground separately
+64438,rack stand,a support for displaying various articles; "the newspapers were arranged on a rack"
+64439,rack wheel,an instrument of torture that stretches or disjoints or mutilates victims
+64440,rack_and_pinion,a wheel gear (the pinion) meshes with a toothed rack; converts rotary to reciprocating motion (and vice versa)
+64441,rack_of_lamb crown_roast,a roast of the rib section of lamb
+64442,rack_rent,an extortionate rent
+64443,racker,an attendant who puts pool or billiard balls into a rack
+64444,racket,a loud and disturbing noise
+64445,racket fraudulent_scheme illegitimate_enterprise,an illegal enterprise (such as extortion or fraud or drug peddling or prostitution) carried on for profit
+64446,racket racquet,a sports implement (usually consisting of a handle and an oval frame with a tightly interlaced network of strings) used to strike a ball (or shuttlecock) in various games
+64447,racket_club,club for players of racket sports
+64448,racketeer,someone who commits crimes for profit (especially one who obtains money by fraud or extortion)
+64449,racketeering,engaging in a racket
+64450,racquetball,the ball used in playing the game of racquetball
+64451,racquetball,a game played on a handball court with short-handled rackets
+64452,rad,a unit of absorbed ionizing radiation equal to 100 ergs per gram of irradiated material
+64453,radar microwave_radar radio_detection_and_ranging radiolocation,measuring instrument in which the echo of a pulse of microwave radiation is used to detect and locate distant objects
+64454,radar_beacon racon,a device that, on receiving radar signals, transmits coded signals in response to help navigators determine their position
+64455,radar_echo,an electronic signal that has been reflected back to the radar antenna; contains information about the location and distance of the reflecting object
+64456,radar_fire,gunfire aimed a target that is being tracked by radar
+64457,radial radial_tire radial-ply_tire,pneumatic tire that has radial-ply casing
+64458,radial_artery arteria_radialis,branch of the brachial artery beginning below the elbow and extending down the forearm around the wrist and into the palm
+64459,radial_asymmetry,the absence of symmetry about an axis
+64460,radial_engine rotary_engine,an internal-combustion engine having cylinders arranged radially around a central crankcase
+64461,radial_keratotomy,radial pattern of incisions in the cornea that cause the cornea to bulge; performed to correct myopia
+64462,radial_nerve nervus_radialis musculospiral_nerve,largest branch of the brachial plexus; extends down the humerus to the lateral epicondyle where it divides into one branch that goes to the skin on the back of the hand and another that goes to the underlying extensor muscles
+64463,radial_pulse,pulse of the radial artery (felt in the wrist)
+64464,radial_symmetry,the property of symmetry about an axis; "the starfish illustrates radial symmetry"
+64465,radial_vein vena_radialis,superficial veins ascending the radial side of the forearm; combines with the ulnar veins to form the brachial vein
+64466,radial_velocity,velocity along the line of sight toward or away from the observer
+64467,radian rad,the unit of plane angle adopted under the Systeme International d'Unites; equal to the angle at the center of a circle subtended by an arc equal in length to the radius (approximately 57.295 degrees)
+64468,radiance,an attractive combination of good health and happiness; "the radiance of her countenance"
+64469,radiance glow glowing,the amount of electromagnetic radiation leaving or arriving at a point on a surface
+64470,radiance radiancy shine effulgence refulgence refulgency,the quality of being bright and sending out rays of light
+64471,radiant_energy,energy that is transmitted in the form of (electromagnetic) radiation; energy that exists in the absence of matter
+64472,radiant_flux,the rate of flow of radiant energy (electromagnetic waves)
+64473,radiant_heating,heating a building by radiation from panels containing hot water or electrical heaters
+64474,radiation,energy that is radiated or transmitted in the form of rays or waves or particles
+64475,radiation,the spread of a group of organisms into new habitats
+64476,radiation,a radial arrangement of nerve fibers connecting different parts of the brain
+64477,radiation,the act of spreading outward from a central source
+64478,radiation radioactivity,the spontaneous emission of a stream of particles or electromagnetic rays in nuclear decay
+64479,radiation_field,a field that represents the energy lost from the radiator to space
+64480,radiation_pattern radiation_diagram pattern,graphical representation (in polar or Cartesian coordinates) of the spatial distribution of radiation from an antenna as a function of angle
+64481,radiation_pressure corpuscular-radiation_pressure,the minute pressure exerted on a surface normal to the direction of propagation of a wave
+64482,radiation_pyrometer,a pyrometer for estimating the temperature of distant sources of heat; radiation is focussed on a thermojunction connected in circuit with a galvanometer
+64483,radiation_sickness radiation_syndrome radiation,syndrome resulting from exposure to ionizing radiation (e.g., exposure to radioactive chemicals or to nuclear explosions); low doses cause diarrhea and nausea and vomiting and sometimes loss of hair; greater exposure can cause sterility and cataracts and some forms of cancer and other diseases; severe exposure can cause death within hours; "he was suffering from radiation"
+64484,radiator,any object that radiates energy
+64485,radiator,heater consisting of a series of pipes for circulating steam or hot water to heat rooms or buildings
+64486,radiator,a mechanism consisting of a metal honeycomb through which hot fluids circulate; heat is transferred from the fluid through the honeycomb to the airstream that is created either by the motion of the vehicle or by a fan
+64487,radiator_cap,cap on the opening in the top of a radiator through which a coolant liquid can be added
+64488,radiator_hose,a flexible hose between the radiator and the engine block
+64489,radical,(mathematics) a quantity expressed as the root of another quantity
+64490,radical,a person who has radical ideas or opinions
+64491,radical,a character conveying the lexical meaning of a logogram
+64492,radical_chic,an affectation of radical left-wing views and the fashionable dress and lifestyle that goes with them
+64493,radical_hysterectomy panhysterectomy,surgical removal of the uterus and the ovaries and oviducts and cervix and related lymph nodes
+64494,radical_mastectomy,removal of a breast and the underlying muscles (pectoralis major and pectoralis minor) and lymph nodes in the adjacent armpit
+64495,radical_sign,a sign indicating the extraction of a root
+64496,radicalism,the political orientation of those who favor revolutionary change in government and society
+64497,radicchio,prized variety of chicory having globose heads of red leaves
+64498,radicle,(anatomy) a small structure resembling a rootlet (such as a fibril of a nerve)
+64499,radiculitis,inflammation of the radicle of a nerve
+64500,radio radiocommunication wireless,medium for communication
+64501,radio wireless,a communication system based on broadcasting electromagnetic waves
+64502,radio-phonograph radio-gramophone,electronic equipment consisting of a combination of a radio receiver and a record player
+64503,radio_announcer,an announcer whose voice is broadcast on radio
+64504,radio_antenna radio_aerial,omnidirectional antenna comprising the part of a radio receiver by means of which radio signals are received
+64505,radio_astronomy,the branch of astronomy that detects and studies the radio waves emitted by celestial bodies
+64506,radio_beacon,a characteristic signal emitted by a transmitter used for navigation
+64507,radio_beacon beacon,a radio station that broadcasts a directional signal for navigational purposes
+64508,radio_beam beam,a signal transmitted along a narrow path; guides airplane pilots in darkness or bad weather
+64509,radio_brightness,the strength of a radio wave picked up by a radio telescope
+64510,radio_broadcast,a broadcast via radio
+64511,radio_chassis,a chassis for a radio receiver
+64512,radio_compass,a direction finder that gives a bearing by determining the direction of incoming radio signals
+64513,radio_frequency,an electromagnetic wave frequency between audio and infrared
+64514,radio_interferometer,radio telescope that uses interference patterns from two antennas instead of a parabolic antenna
+64515,radio_link link,a two-way radio communication system (usually microwave); part of a more extensive telecommunication network
+64516,radio_news,a radio broadcast of news
+64517,radio_noise,static at radio wavelengths
+64518,radio_observation,an observation made with a radio telescope
+64519,radio_operator,someone who operates a radio transmitter
+64520,radio_receiver receiving_set radio_set radio tuner wireless,an electronic receiver that detects and demodulates and amplifies transmitted signals
+64521,radio_signal,a radio wave used to transmit and receive messages
+64522,radio_source,an object that radiates radio waves
+64523,radio_spectrum radio-frequency_spectrum,the entire spectrum of electromagnetic frequencies used for communications; includes frequencies used for radio and radar and television
+64524,radio_station,station for the production and transmission of AM or FM radio broadcasts
+64525,radio_telescope radio_reflector,astronomical telescope that picks up electromagnetic radiations in the radio-frequency range from extraterrestrial sources
+64526,radio_transmitter,transmitter that is the part of a radio system that transmits signals
+64527,radio_wave radio_emission radio_radiation,an electromagnetic wave with a wavelength between 0.5 cm to 30,000 m
+64528,radioactive_dating,measurement of the amount of radioactive material (usually carbon 14) that an object contains; can be used to estimate the age of the object
+64529,radioactive_iodine_excretion_test,radioactive iodine test that measures the amount of radioactive iodine excreted in the urine
+64530,radioactive_iodine_test,test of thyroid function in which the patient is given an oral dose of radioactive iodine-131
+64531,radioactive_iodine_uptake_test RAIU,radioactive iodine test that measures the amount of radioactive iodine taken up by the thyroid gland
+64532,radioactive_material,material that is radioactive
+64533,radioactive_waste,useless radioactive materials that are left after some laboratory or commercial process is completed
+64534,radioactivity_unit,a measure of radioactivity
+64535,radiobiologist,a biologist who studies the effects of radiation on living organisms
+64536,radiobiology,the branch of biology that studies the effects of radiation on living organisms
+64537,radiocarbon carbon_14,a radioactive isotope of carbon
+64538,radiocarbon_dating carbon_dating carbon-14_dating,a chemical analysis used to determine the age of organic materials based on their content of the radioisotope carbon 14; believed to be reliable up to 40,000 years
+64539,radiochemistry nuclear_chemistry,the chemistry of radioactive substances
+64540,radiochlorine,a radioactive isotope of chlorine
+64541,radiogram,a message transmitted by wireless telegraphy
+64542,radiogram radiograph shadowgraph skiagraph skiagram,a photographic image produced on a radiosensitive surface by radiation other than visible light (especially by X-rays or gamma rays)
+64543,radiographer,a person who makes radiographs
+64544,radiography,photography that uses other kinds of radiation than visible light
+64545,radiography skiagraphy,the process of making a radiograph; producing an image on a radiosensitive surface by radiation other than visible light
+64546,radioimmunoassay,immunoassay of a substance that has been radioactively labeled
+64547,radioisotope,a radioactive isotope of an element; produced either naturally or artificially
+64548,radiolarian,protozoa with amoeba-like bodies and radiating filamentous pseudopods
+64549,radiologic_technologist,a scientist trained in radiological technology
+64550,radiologist radiotherapist,a medical specialist who uses radioactive substances and X-rays in the treatment of disease
+64551,radiology,the branch of medical science dealing with the medical use of X-rays or other penetrating radiation
+64552,radiolysis,molecular disintegration resulting from radiation
+64553,radiometer,meter to detect and measure radiant energy (electromagnetic or acoustic)
+64554,radiomicrometer,radiometer that is extremely sensitive
+64555,radiopacity radio-opacity,opacity to X-rays or other radiation
+64556,radiopaque_dye,dye that does not allow the passage of X rays or other radiation; used to outline certain organs during X-ray examination
+64557,radiopharmaceutical,pharmaceutical consisting of a radioactive compound used in radiation therapy
+64558,radiophotograph radiophoto,a photograph transmitted by radio waves
+64559,radiophotography,transmission of photographs by radio waves
+64560,radioprotection,protection against harmful effects of radiation
+64561,radioscopy radiology,(radiology) examination of the inner structure of opaque objects using X rays or other penetrating radiation
+64562,radiotelegraph radiotelegraphy wireless_telegraph wireless_telegraphy,the use of radio to send telegraphic messages (usually by Morse code)
+64563,radiotelegraph radiotelegraphy wireless_telegraphy,telegraphy that uses transmission by radio rather than by wire
+64564,radiotelephone radiophone wireless_telephone,a telephone that communicates by radio waves rather than along cables
+64565,radiotelephone radiotelephony wireless_telephone,telephony that uses transmission by radio rather than by wire
+64566,radiotherapy radiation_therapy radiation actinotherapy irradiation,(medicine) the treatment of disease (especially cancer) by exposure to a radioactive substance
+64567,radiotherapy_equipment,equipment used to treat diseases with x-rays or radioactivity
+64568,radish,pungent edible root of any of various cultivated radish plants
+64569,radish,pungent fleshy edible root
+64570,radish Raphanus_sativus,Eurasian plant widely cultivated for its edible pungent root usually eaten raw
+64571,radish daikon Japanese_radish Raphanus_sativus_longipinnatus,radish of Japan with a long hard durable root eaten raw or cooked
+64572,radish_plant radish,a cruciferous plant of the genus Raphanus having a pungent edible root
+64573,radium Ra atomic_number_88,an intensely radioactive metallic element that occurs in minute amounts in uranium ores
+64574,radium_therapy Curietherapy,the use of radium in radiation therapy
+64575,radius,a straight line from the center to the perimeter of a circle (or from the center to the surface of a sphere)
+64576,radius,a circular region whose area is indicated by the length of its radius; "they located it within a radius of 2 miles"
+64577,radius,the outer and slightly shorter of the two bones of the human forearm
+64578,radius r,the length of a line segment between the center and circumference of a circle or sphere
+64579,radius_of_curvature,the radius of the circle of curvature; the absolute value of the reciprocal of the curvature of a curve at a given point
+64580,radius_vector,a line connecting a satellite to the center of the body around which it is rotating
+64581,radius_vector,a line connecting a point in space to the origin of a polar coordinate system
+64582,radome radar_dome,a housing for a radar antenna; transparent to radio waves
+64583,radon Rn atomic_number_86,a radioactive gaseous element formed by the disintegration of radium; the heaviest of the inert gasses; occurs naturally (especially in areas over granite) and is considered a hazard to health
+64584,raffia,fiber of a raffia palm used as light cordage and in making hats and baskets
+64585,raffia raphia,leaf fibers of the raffia palm tree; used to make baskets and mats etc.
+64586,raffia_palm Raffia_farinifera Raffia_ruffia,a large feather palm of Africa and Madagascar having very long pinnatisect fronds yielding a strong commercially important fiber from its leafstalks
+64587,raffinose,a trisaccharide that occurs in sugar beets and cotton seeds and certain cereals
+64588,raffle,a lottery in which the prizes are goods rather than money
+64589,raft,a flat float (usually made of logs or planks) that can be used for transport or as a platform for swimmers
+64590,raft_foundation raft mat,a foundation (usually on soft ground) consisting of an extended layer of reinforced concrete
+64591,rafter balk baulk,one of several parallel sloping beams that support a roof
+64592,raftsman raftman rafter,someone who travels by raft
+64593,rag,a boisterous practical joke (especially by college students)
+64594,rag rag_week,a week at British universities during which side-shows and processions of floats are organized to raise money for charities
+64595,rag shred tag tag_end tatter,a small piece of cloth or paper
+64596,rag_day,a day on which university students hold a rag
+64597,rag_doll,a cloth doll that is stuffed and (usually) painted
+64598,rag_paper,paper made partly or wholly from rags
+64599,ragamuffin tatterdemalion,a dirty shabbily clothed urchin
+64600,ragbag,a bag in which rags are kept
+64601,rage,a state of extreme anger; "she fell into a rage and refused to answer"
+64602,rage,violent state of the elements; "the sea hurled itself in thundering rage against the rocks"
+64603,rage passion,something that is desired intensely; "his rage for fame destroyed him"
+64604,ragged_orchid ragged_orchis ragged-fringed_orchid green_fringed_orchis Habenaria_lacera,fringed orchid of the eastern United States having a greenish flower with the lip deeply lacerated
+64605,ragged_robin cuckoo_flower Lychnis_flos-cuculi Lychins_floscuculi,common perennial native to Europe and western Asia having usually pink flowers with ragged petals
+64606,raggedness,shabbiness by virtue of being in rags
+64607,raglan,a garment (coat or sweater) that has raglan sleeves
+64608,raglan_sleeve,a sleeve that extends in one piece to the neckline of a coat or sweater with seams from the armhole to the neck
+64609,ragout,well-seasoned stew of meat and vegetables
+64610,ragpicker,an unskilled person who picks up rags from trash cans and public dumps as a means of livelihood
+64611,ragsorter,a worker who sorts rags and old clothing for new uses (as in papermaking)
+64612,ragtime rag,music with a syncopated melody (usually for the piano)
+64613,ragweed ambrosia bitterweed,any of numerous chiefly North American weedy plants constituting the genus Ambrosia that produce highly allergenic pollen responsible for much hay fever and asthma
+64614,ragweed_pollen,pollen of the ragweed plant is a common allergen
+64615,ragwort tansy_ragwort ragweed benweed Senecio_jacobaea,widespread European weed having yellow daisylike flowers; sometimes an obnoxious weed and toxic to cattle if consumed in quantity
+64616,raid,an attempt by speculators to defraud investors
+64617,raider,a corporate investor who intends to take over a company by buying a controlling interest in its stock and installing new management
+64618,rail,short for railway; "he traveled by rail"; "he was concerned with rail safety"
+64619,rail,a horizontal bar (usually of wood or metal)
+64620,rail,any of numerous widely distributed small wading birds of the family Rallidae having short wings and very long toes for running on soft mud
+64621,rail-splitter splitter,a laborer who splits logs to build split-rail fences
+64622,rail_fence split-rail_fence,a fence (usually made of split logs laid across each other at an angle)
+64623,rail_technology railroading,the activity of designing and constructing and operating railroads
+64624,railbird,a fan of racing who watches races from the outer rail of the track
+64625,railhead,the end of the completed track on an unfinished railway
+64626,railhead,a railroad depot in a theater of operations where military supplies are unloaded for distribution
+64627,railing,material for making rails or rails collectively
+64628,railing rail,a barrier consisting of a horizontal bar and supports
+64629,railroad_bed,a bed on which railroad track is laid
+64630,railroad_flat,an apartment whose rooms are all in a line with doors between them
+64631,railroad_ticket train_ticket,a ticket good for a ride on a railroad train
+64632,railroad_track railroad railway,a line of track providing a runway for wheels; "he walked along the railroad track"
+64633,railroad_tunnel,a tunnel through which the railroad track runs
+64634,railroad_vine beach_morning_glory Ipomoea_pes-caprae,a prostrate perennial of coastal sand dunes Florida to Texas
+64635,railway railroad railroad_line railway_line railway_system,line that is the commercial organization responsible for operating a system of transportation for trains that pull passengers or freight
+64636,railway_junction,a junction where two or more railway lines meet or cross
+64637,railway_station railroad_station railroad_terminal train_station train_depot,terminal where trains load or unload passengers or goods
+64638,rain pelting,anything happening rapidly or in quick successive; "a rain of bullets"; "a pelting of insults"
+64639,rain rainfall,water falling in drops from vapor condensed in the atmosphere
+64640,rain rainwater,drops of fresh water that fall as precipitation from clouds
+64641,rain-wash,the washing away of soil or other loose material by rain
+64642,rain_barrel,a barrel used as a cistern to hold rainwater
+64643,rain_check,a promise that an unaccepted offer will be renewed in the future
+64644,rain_check,a ticket stub entitling the holder to admission to a future event if the scheduled event was cancelled due to rain
+64645,rain_dance,a ritual dance intended to bring rain
+64646,rain_date,an alternative date set for some outdoor event in case it rains on the appointed date; "the rain date for the picnic will be the following Sunday"
+64647,rain_forest rainforest,a forest with heavy annual rainfall
+64648,rain_gauge rain_gage pluviometer udometer,gauge consisting of an instrument to measure the quantity of precipitation
+64649,rain_shadow,an area that has little precipitation because some barrier causes the winds to lose their moisture before reaching it
+64650,rain_stick,a percussion instrument that is made from a dried cactus branch that is hollowed out and filled with small pebbles and capped at both ends; makes the sound of falling rain when tilted; origin was in Chile where tribesmen used it in ceremonies to bring rain
+64651,rain_tree saman monkeypod monkey_pod zaman zamang Albizia_saman,large ornamental tropical American tree with bipinnate leaves and globose clusters of flowers with crimson stamens and seed pods that are eaten by cattle
+64652,rainbow,an arc of colored light in the sky caused by refraction of the sun's rays by rain
+64653,rainbow,an illusory hope; "chasing rainbows"
+64654,rainbow_cactus,a stout cylindrical cactus of the southwest United States and adjacent Mexico
+64655,rainbow_lorikeet Trichoglossus_moluccanus,a kind of lorikeet
+64656,rainbow_runner Elagatis_bipinnulata,streamlined cigar-shaped jack; good game fish
+64657,rainbow_seaperch rainbow_perch Hipsurus_caryi,Pacific coast fish
+64658,rainbow_shower Cassia_javonica,deciduous ornamental hybrid of southeastern Asia and Hawaii having racemes of flowers ranging in color from cream-colored to orange and red
+64659,rainbow_smelt Osmerus_mordax,important marine and landlocked food fish of eastern North America and Alaska
+64660,rainbow_trout,flesh of Pacific trout that migrate from salt to fresh water
+64661,rainbow_trout Salmo_gairdneri,found in Pacific coastal waters and streams from lower California to Alaska
+64662,raincoat waterproof,a water-resistant coat
+64663,raindrop,a drop of rain
+64664,rainmaker,executive who is very successful in bringing in business to his company or firm
+64665,rainmaker,American Indian medicine man who attempt to make it rain
+64666,rainmaking,activity intended to produce rain
+64667,rainstorm,a storm with rain
+64668,rainy_day,a (future) time of financial need; "I am saving for a rainy day"
+64669,rainy_season,one of the two seasons in tropical climates
+64670,raise,increasing the size of a bet (as in poker); "I'll see your raise and double it"
+64671,raise rise wage_hike hike wage_increase salary_increase,the amount a salary is increased; "he got a 3% raise"; "he got a wage hike"
+64672,raised_doughnut,a doughnut made light with yeast rather than baking powder
+64673,raiser,a bridge partner who increases the partner's bid
+64674,raisin,dried grape
+64675,raisin-nut_cookie,cookie filled with a paste of raisins and nuts
+64676,raisin_bran,bran flakes with raisins
+64677,raisin_bread,bread containing raisins
+64678,raisin_cookie,cookie containing raisins
+64679,raisin_moth Cadra_figulilella,moth whose larvae attack dried fruits and cereal products
+64680,raising rearing nurture,the properties acquired as a consequence of the way you were treated as a child
+64681,raising_hell hell_raising,making trouble just for the fun of it
+64682,raison_d'etre,reason for being
+64683,raison_d'etre,the purpose that justifies a thing's existence
+64684,raita,an Indian side dish of yogurt and chopped cucumbers and spices
+64685,raj,British dominion over India (1757-1947)
+64686,raja rajah,a prince or king in India
+64687,rajanya,the second highest of the four varnas: the noble or warrior category
+64688,rake,a long-handled tool with a row of teeth at its head; used to move leaves or loosen soil
+64689,rake rakehell profligate rip blood roue,a dissolute man in fashionable society
+64690,rake-off vigorish,a percentage (of winnings or loot or profit) taken by an operator or gangster
+64691,rake_handle,the handle of a rake
+64692,rakishness,the quality of a rake
+64693,rally,a marked recovery of strength or spirits during an illness
+64694,rally,an automobile race run over public roads
+64695,rally exchange,(sports) an unbroken sequence of several successive strokes; "after a short rally Connors won the point"
+64696,rally mass_meeting,a large gathering of people intended to arouse enthusiasm
+64697,rally rallying,the feat of mustering strength for a renewed effort; "he singled to start a rally in the 9th inning"; "he feared the rallying of their troops for a counterattack"
+64698,rallying,the act of mobilizing for a common purpose; "the bell was a signal for the rallying of the whole neighborhood"
+64699,rallying_point,a point or principle on which scattered or opposing groups can come together
+64700,ram,a tool for driving or forcing something by impact
+64701,ram tup,uncastrated adult male sheep; "a British term is `tup'"
+64702,ram's-head ram's-head_lady's_slipper Cypripedium_arietinum,orchid of northern North America having a brownish-green flower and red-and-white lip suggestive of a ram's head
+64703,ramble meander,an aimless amble on a winding course
+64704,rambler,a person who takes long walks in the country
+64705,rambler,a person whose speech or writing is not well organized
+64706,rambutan rambotan,pleasantly acid bright red oval Malayan fruit covered with soft spines
+64707,rambutan rambotan rambutan_tree Nephelium_lappaceum,Malayan tree bearing spiny red fruit
+64708,ramekin ramequin,a cheese dish made with egg and bread crumbs that is baked and served in individual fireproof dishes
+64709,ramekin ramequin,a small fireproof dish used for baking and serving individual portions
+64710,ramie ramee Chinese_silk_plant China_grass Boehmeria_nivea,tall perennial herb of tropical Asia with dark green leaves; cultivated for the fiber from its woody stems that resembles flax
+64711,ramification,an arrangement of branching parts
+64712,ramipril Altace,an ACE inhibitor (trade name Altace) used to treat high blood pressure or in some patients who have had a heart attack
+64713,ramjet ramjet_engine atherodyde athodyd flying_drainpipe,a simple type of jet engine; must be launched at high speed
+64714,rammer,a tool for driving something with force
+64715,ramp,a movable staircase that passengers use to board or leave an aircraft
+64716,ramp incline,an inclined surface connecting two levels
+64717,ramp wild_leek Allium_tricoccum,North American perennial having a slender bulb and whitish flowers
+64718,rampage violent_disorder,violently angry and destructive behavior
+64719,rampant_arch,an arch whose support is higher on one side than on the other
+64720,rampart bulwark wall,an embankment built around a space for defensive purposes; "they stormed the ramparts of the city"; "they blew the trumpet and the walls came tumbling down"
+64721,rampion rampion_bellflower Campanula_rapunculus,bellflower of Europe and Asia and North Africa having bluish flowers and an edible tuberous root used with the leaves in salad
+64722,ramrod,a harshly demanding overseer
+64723,ramrod,a rod used to clean the barrel of a firearm
+64724,ramrod,a rod used to ram the charge into a muzzle-loading firearm
+64725,ramus,the posterior part of the mandible that is more or less vertical
+64726,ranch spread cattle_ranch cattle_farm,farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)
+64727,ranch_hand,a hired hand on a ranch
+64728,ranch_house,a one story house with a low pitched roof
+64729,rancher,a person who owns or operates a ranch
+64730,ranching,farming for the raising of livestock (particularly cattle)
+64731,rancidity,the state of being rancid; having a rancid scent or flavor (as of old cooking oil)
+64732,rancidness,the property of being rancid
+64733,rand,the basic unit of money in South Africa; equal to 100 cents
+64734,random-access_memory random_access_memory random_memory RAM read/write_memory,the most common computer memory which can be used by programs to perform necessary tasks while the computer is on; an integrated circuit memory chip allows information to be stored or accessed in any order and all storage locations are equally accessible
+64735,random_number_generator,a routine designed to yield a random number
+64736,random_sample,a sample in which every element in the population has an equal chance of being selected
+64737,random_sample,a sample grabbed at random
+64738,random_sampling,the selection of a random sample; each element of the population has an equal chance of being selected
+64739,random_variable variate variant stochastic_variable chance_variable,a variable quantity that is random
+64740,random_walk,a stochastic process consisting of a sequence of changes each of whose characteristics (as magnitude or direction) is determined by chance
+64741,randomization randomisation,a deliberately haphazard arrangement of observations so as to simulate chance
+64742,randomness entropy S,(thermodynamics) a thermodynamic quantity representing the amount of energy in a system that is no longer available for doing mechanical work; "entropy increases as matter and energy in the universe degrade to an ultimate state of inert uniformity"
+64743,randomness haphazardness stochasticity noise,the quality of lacking any predictable order or plan
+64744,range,a large tract of grassy open land on which livestock can graze; "they used to drive the cattle across the open range every spring"; "he dreamed of a home on the range"
+64745,range,a variety of different things or activities; "he answered a range of questions"; "he was impressed by the range and diversity of the collection"
+64746,range,a place for shooting (firing or driving) projectiles of various kinds; "the army maintains a missile range in the desert"; "any good golf club will have a range where you can practice"
+64747,range mountain_range range_of_mountains chain mountain_chain chain_of_mountains,a series of hills or mountains; "the valley was between two ranges of hills"; "the plains lay just beyond the mountain range"
+64748,range reach,the limits within which something can be effective; "range of motion"; "he was beyond the reach of their fire"
+64749,range_animal,any animal that lives and grazes in the grassy open land of western North America (especially horses, cattle, sheep)
+64750,range_hood,exhaust hood over a kitchen range
+64751,range_pole ranging_pole flagpole,surveying instrument consisting of a straight rod painted in bands of alternate red and white each one foot wide; used for sightings by surveyors
+64752,rangefinder range_finder,a measuring instrument (acoustic or optical or electronic) for finding the distance of an object
+64753,rangeland,land suitable for grazing livestock
+64754,rangpur rangpur_lime lemanderin Citrus_limonia,hybrid between mandarin orange and lemon having very acid fruit with orange peel
+64755,rani ranee,(the feminine of raja) a Hindu princess or the wife of a raja
+64756,ranitidine Zantac,a histamine blocker and antacid (trade name Zantac) used to treat peptic ulcers and gastritis and esophageal reflux
+64757,rank,relative status; "his salary was determined by his rank and seniority"
+64758,rank,a row or line of people (especially soldiers or police) standing abreast of one another; "the entrance was guarded by ranks of policemen"
+64759,rank-order_correlation_coefficient rank-order_correlation rank-difference_correlation_coefficient rank-difference_correlation,the most commonly used method of computing a correlation coefficient between the ranks of scores on two variables
+64760,rank_and_file,people who constitute the main body of any group
+64761,rank_and_file rank,the ordinary members of an organization (such as the enlisted soldiers of an army); "the strike was supported by the union rank and file"; "he rose from the ranks to become a colonel"
+64762,rank_order,an arrangement according to rank
+64763,ranker,a commissioned officer who has been promoted from enlisted status
+64764,ranker,an enlisted soldier who serves in the ranks of the armed forces
+64765,ranking,position on a scale in relation to others in status or rank or achievement
+64766,ransacking rummage,a thorough search for something (often causing disorder or confusion); "he gave the attic a good rummage but couldn't find his skis"
+64767,ransom,payment for the release of someone
+64768,ransom,the act of freeing from captivity or punishment
+64769,ransom ransom_money,money demanded for the return of a captured person
+64770,ranter raver,someone who rants and raves; speaks in a violent or loud manner
+64771,ranula,a cyst on the underside of the tongue
+64772,rap,voluble conversation
+64773,rap rap_music hip-hop,genre of African-American music of the 1980s and 1990s in which rhyming lyrics are chanted to a musical accompaniment; several forms of rap have emerged
+64774,rap strike tap,a gentle blow
+64775,rap_group,a gathering of people holding a rap session
+64776,rap_session,conversation in a situation where feelings can be expressed and criticized or supported
+64777,rape colza Brassica_napus,Eurasian plant cultivated for its seed and as a forage crop
+64778,rape rapine,the act of despoiling a country in warfare
+64779,rape violation assault ravishment,the crime of forcing a person to submit to sexual intercourse against his or her will
+64780,rape_conviction,conviction for rape
+64781,rape_oil rapeseed_oil colza_oil,edible light yellow to brown oil from rapeseed used also as a lubricant or illuminant
+64782,rape_suspect,someone who is suspected of committing rape
+64783,raper rapist,someone who forces another to have sexual intercourse
+64784,rapeseed,seed of rape plants; source of an edible oil
+64785,raphe rhaphe,a ridge that forms a seam between two parts
+64786,rapid,a part of a river where the current is very fast
+64787,rapid_climb rapid_growth zoom,a rapid rise
+64788,rapid_transit mass_rapid_transit,an urban public transit system using underground or elevated trains
+64789,rapier tuck,a straight sword with a narrow blade and two edges
+64790,rappee,strong snuff made from dark coarse tobacco
+64791,rappel abseil,(mountaineering) a descent of a vertical cliff or wall made by using a doubled rope that is fixed to a higher point and wrapped around the body
+64792,rapper,someone who performs rap music
+64793,rapport resonance,a relationship of mutual understanding or trust and agreement between people
+64794,rapporteur,a recorder appointed by a committee to prepare reports of the meetings
+64795,raptus_hemorrhagicus,seizure caused by a sudden profuse hemorrhage
+64796,rare_bird rara_avis,a rare or unique person
+64797,rare_earth rare-earth_element lanthanoid lanthanide lanthanon,any element of the lanthanide series (atomic numbers 57 through 71)
+64798,raree-show,a street show
+64799,rarefaction,a decrease in the density of something; "a sound wave causes periodic rarefactions in its medium"
+64800,rariora,(plural) rare collector's items
+64801,rarity rareness infrequency,noteworthy scarcity
+64802,rarity tenuity low_density,a rarified quality; "the tenuity of the upper atmosphere"
+64803,rascality shiftiness slipperiness trickiness,the quality of being a slippery rascal
+64804,rash blizzard,a series of unexpected and unpleasant occurrences; "a rash of bank robberies"; "a blizzard of lawsuits"
+64805,rash roseola efflorescence skin_rash,any red eruption of the skin
+64806,rasp rasping,uttering in an irritated tone
+64807,rasp wood_file,a coarse file with sharp pointed projections
+64808,raspberry,red or black edible aggregate berries usually smaller than the related blackberries
+64809,raspberry raspberry_bush,woody brambles bearing usually red but sometimes black or yellow fruits that separate from the receptacle when ripe and are rounder and smaller than blackberries
+64810,raster,the rectangular formation of parallel scanning lines that guide the electron beam on a television screen or a computer monitor
+64811,rat,a pad (usually made of hair) worn as part of a woman's coiffure
+64812,rat,any of various long-tailed rodents similar to but larger than a mouse
+64813,rat-a-tat-tat rat-a-tat rat-tat,a series of short sharp taps (as made by strokes on a drum or knocks on a door)
+64814,rat-catcher disinfestation_officer,a workman employed to destroy or drive away vermin
+64815,rat-tail_file,a thin round file shaped like the tail of a rat
+64816,rat_cheese store_cheese,informal names for American cheddar
+64817,rat_kangaroo kangaroo_rat,any of several rabbit-sized ratlike Australian kangaroos
+64818,rat_race,an exhausting routine that leaves no time for relaxation
+64819,rat_snake,any of various nonvenomous rodent-eating snakes of North America and Asia
+64820,rat_terrier ratter,any of several breeds of terrier developed to catch rats
+64821,ratability,the quality of being capable of being rated or estimated
+64822,ratability rateability,the state of being liable to assessment or taxation
+64823,ratables rateables,property that provides tax income for local governments
+64824,ratafia ratafee,sweet liqueur made from wine and brandy flavored with plum or peach or apricot kernels and bitter almonds
+64825,ratafia ratafia_biscuit,macaroon flavored with ratafia liqueur
+64826,ratatouille,a vegetable stew; usually made with tomatoes, eggplant, zucchini, peppers, onion, and seasonings
+64827,ratbite_fever,either of two infectious diseases transmitted to humans by the bite of a rat or mouse; characterized by fever and headache and nausea and skin eruptions
+64828,ratbite_fever_bacterium Spirillum_minus,a bacterium causing ratbite fever
+64829,ratchet rachet ratch,mechanical device consisting of a toothed wheel or rack engaged with a pawl that permits it to move in only one direction
+64830,ratchet_wheel,toothed wheel held in place by a pawl or detent and turned by a lever
+64831,rate,a magnitude or frequency relative to a time unit; "they traveled at a rate of 55 miles per hour"; "the rate of change was faster than expected"
+64832,rate,a quantity or amount or measure considered as a proportion of another quantity or amount or measure; "the literacy rate"; "the retention rate"; "the dropout rate"
+64833,rate charge_per_unit,amount of a charge or payment relative to some basis; "a 10-minute phone call at that rate would cost $5"
+64834,rate_of_depreciation depreciation_rate,the rate at which the value of property is reduced; used to calculate tax deduction
+64835,rate_of_exchange exchange_rate,the charge for exchanging currency of one country for currency of another
+64836,rate_of_return,the amount returned per unit of time expressed as a percentage of the cost
+64837,ratel honey_badger Mellivora_capensis,nocturnal badger-like carnivore of wooded regions of Africa and southern Asia
+64838,ratepayer,a person who pays local rates (especially a householder)
+64839,rates,a local tax on property (usually used in the plural)
+64840,rathole,a hole (as in the wall of a building) made by rats
+64841,rathole,a small dirty uncomfortable room
+64842,rathskeller,a tavern below street level featuring beer; originally a German restaurant in the basement of city hall
+64843,ratification confirmation,making something valid by formally ratifying or confirming it; "the ratification of the treaty"; "confirmation of the appointment"
+64844,rating,standing or position on a scale
+64845,rating_system scoring_system,a system of classifying according to quality or merit or amount
+64846,ratio,the relative magnitudes of two quantities (usually expressed as a quotient)
+64847,ratiocination,logical and methodical reasoning
+64848,ration,a fixed portion that is allotted (especially in times of scarcity)
+64849,ration,the food allowance for one day (especially for service personnel); "the rations should be nutritionally balanced"
+64850,ration_card,a card certifying the bearer's right to purchase rationed goods
+64851,rational_motive,a motive that can be defended by reasoning or logical argument
+64852,rational_number rational,an integer or a fraction
+64853,rationale principle,(law) an explanation of the fundamental reasons (especially an explanation of the working of some device in terms of laws of nature); "the rationale for capital punishment"; "the principles of internal-combustion engines"
+64854,rationalism,the theological doctrine that human reason rather than divine revelation establishes religious truth
+64855,rationalism,(philosophy) the doctrine that knowledge is acquired by reason without resort to experience
+64856,rationalism freethinking,the doctrine that reason is the right basis for regulating conduct
+64857,rationality rationalness,the quality of being consistent with or based on logic
+64858,rationality reason reasonableness,the state of having good sense and sound judgment; "his rationality may have been impaired"; "he had to rely less on reason than on rousing their emotions"
+64859,rationalization rationalisation,(psychiatry) a defense mechanism by which your true motivation is concealed by explaining your actions and feelings in a way that is not threatening
+64860,rationalization rationalisation,the cognitive process of making something seem consistent with or based on reason
+64861,rationalization rationalisation,(mathematics) the simplification of an expression or equation by eliminating radicals without changing the value of the expression or the roots of the equation
+64862,rationalization rationalisation,the organization of a business according to scientific principles of management in order to increase efficiency
+64863,rationing,the act of rationing; "during the war the government imposed rationing of food and gasoline"
+64864,ratite ratite_bird flightless_bird,flightless birds having flat breastbones lacking a keel for attachment of flight muscles: ostriches; cassowaries; emus; moas; rheas; kiwis; elephant birds
+64865,ratline ratlin,(nautical) a small horizontal rope between the shrouds of a sailing ship; they form a ladder for climbing aloft
+64866,rattail_cactus rat's-tail_cactus Aporocactus_flagelliformis,commonly cultivated tropical American cactus having slender creeping stems and very large showy crimson flowers that bloom for several days
+64867,rattan ratan,a switch made from the stems of the rattan palms
+64868,rattan rattan_cane,the stem of various climbing palms of the genus Calamus and related genera used to make wickerwork and furniture and canes
+64869,rattan rattan_palm Calamus_rotang,climbing palm of Sri Lanka and southern India remarkable for the great length of the stems which are used for malacca canes
+64870,rattle,a baby's toy that makes percussive noises when shaken
+64871,rattle,loosely connected horny sections at the end of a rattlesnake's tail
+64872,rattle rattling rale,a rapid series of short loud sounds (as might be heard with a stethoscope in some types of respiratory disorders); "the death rattle"
+64873,rattlesnake rattler,pit viper with horny segments at the end of the tail that rattle when shaken
+64874,rattlesnake_fern Botrychium_virginianum,American fern whose clustered sporangia resemble a snake's rattle
+64875,rattlesnake_master rattlesnake's_master button_snakeroot Eryngium_yuccifolium,coarse prickly perennial eryngo of United States thought to cure rattlesnake bite
+64876,rattlesnake_orchid,any of various orchids of the genus Pholidota having numerous white to brown flowers in spiraling racemes clothed in slightly inflated bracts and resembling a rattlesnake's tail
+64877,rattlesnake_plantain helleborine,any of several small temperate and tropical orchids having mottled or striped leaves and spikes of small yellowish-white flowers in a twisted raceme
+64878,rattlesnake_root,a plant of the genus Nabalus
+64879,rattlesnake_root Prenanthes_purpurea,herb of central and southern Europe having purple florets
+64880,rattlesnake_weed Hieracium_venosum,a hawkweed with a rosette of purple-veined basal leaves; Canada to northern Georgia and Kentucky
+64881,rattrap,a difficult entangling situation
+64882,rattrap,filthy run-down dilapidated housing
+64883,rattrap,a trap for catching rats
+64884,rauli_beech Nothofagus_procera,large Chilean timber tree yielding coarse lumber
+64885,rauwolfia,any of several alkaloids extracted from the shrub Rauwolfia serpentina
+64886,rauwolfia rauvolfia,any shrub or small tree of the genus Rauwolfia having leaves in whorls and cymose flowers; yield substances used medicinally especially as emetics or purgatives or antihypertensives
+64887,ravage depredation,(usually plural) a destructive action; "the ravages of time"; "the depredations of age and disease"
+64888,ravaging devastation,plundering with excessive damage and destruction
+64889,rave,a dance party that lasts all night and electronically synthesized music is played; "raves are very popular in Berlin"
+64890,rave,an extravagantly enthusiastic review; "he gave it a rave"
+64891,rave-up,a raucous gathering
+64892,ravehook,a hooked hand tool used to prepare the seams of a boat for oakum
+64893,raveling ravelling,a bit of fiber that has become separated from woven fabric
+64894,raven Corvus_corax,large black bird with a straight bill and long wedge-shaped tail
+64895,raver,a participant in a rave dancing party
+64896,ravigote ravigotte,veloute sauce seasoned with chopped chervil, chives, tarragon, shallots and capers
+64897,ravine,a deep narrow steep-sided valley (especially one formed by running water)
+64898,raving,declaiming wildly; "the raving of maniacs"
+64899,ravioli cappelletti,small circular or square cases of dough with savory fillings
+64900,raw altogether birthday_suit,informal terms for nakedness; "in the raw"; "in the altogether"; "in his birthday suit"
+64901,raw_beauty,beauty that is stark and powerfully impressive
+64902,raw_data,unanalyzed data; data not yet subjected to analysis
+64903,raw_deal,unfair treatment
+64904,raw_material staple,material suitable for manufacture or use or finishing
+64905,raw_meat,uncooked meat
+64906,raw_milk,unpasteurized milk
+64907,raw_recruit,an inexperienced and untrained recruit
+64908,raw_sienna,a yellowish-brown pigment made from untreated sienna
+64909,raw_talent,powerfully impressive talent
+64910,raw_umber,greenish brown pigment
+64911,raw_vegetable rabbit_food,an uncooked vegetable
+64912,raw_weather,unpleasantly cold and damp weather
+64913,raw_wood,wood that is not finished or painted
+64914,raw_wool,wool in its natural condition; not refined or processed
+64915,raw_wound,a wound that exposes subcutaneous tissue
+64916,rawhide,untanned hide especially of cattle; cut in strips it is used for whips and ropes
+64917,rawness,a chilly dampness; "the rawness of the midnight air"
+64918,ray,(mathematics) a straight line extending from a point
+64919,ray,a branch of an umbel or an umbelliform inflorescence
+64920,ray,any of the stiff bony spines in the fin of a fish
+64921,ray,cartilaginous fishes having horizontally flattened bodies and enlarged winglike pectoral fins with gills on the underside; most swim by moving the pectoral fins
+64922,ray_flower ray_floret,small flower with a flat strap-shaped corolla usually occupying the peripheral rings of a composite flower
+64923,rayon,a synthetic silklike fabric
+64924,razbliuto,the sentimental feeling you have about someone you once loved but no longer do
+64925,razing leveling tearing_down demolishing,complete destruction of a building
+64926,razing wrecking,the event of a structure being completely demolished and leveled
+64927,razor,edge tool used in shaving
+64928,razor_clam jackknife_clam knife-handle,marine clam having a long narrow curved thin shell
+64929,razor_edge,an edge that is as sharp as the cutting side of a razor
+64930,razor_fish razor-fish,any of several small wrasses with compressed sharp-edged heads of the West Indies and Mediterranean
+64931,razorback razorback_hog razorbacked_hog,a mongrel hog with a thin body and long legs and a ridged back; a wild or semi-wild descendant of improved breeds; found chiefly in the southeastern United States
+64932,razorbill razor-billed_auk Alca_torda,black-and-white northern Atlantic auk having a compressed sharp-edged bill
+64933,razorblade,a blade that has very sharp edge
+64934,razzle-dazzle razzle razzmatazz razmataz,any exciting and complex play intended to confuse (dazzle) the opponent
+64935,re ray,the syllable naming the second (supertonic) note of any major scale in solmization
+64936,re-creation,the act of creating again
+64937,re-echo,the echo of an echo
+64938,re-establishment,restoration to a previous state; "regular exercise resulted in the re-establishment of his endurance"
+64939,re-formation regeneration,forming again (especially with improvements or removal of defects); renewing and reconstituting
+64940,re-introduction,a proposal of something previously rejected; "they avoided a re-introduction of the old terminology"
+64941,reach reaching stretch,the act of physically reaching or thrusting out
+64942,reactance,opposition to the flow of electric current resulting from inductance and capacitance (rather than resistance)
+64943,reactant,a chemical substance that is present at the start of a chemical reaction
+64944,reaction,(mechanics) the equal and opposite force that is produced when any force is applied to a body; "every action has an equal and opposite reaction"
+64945,reaction,a response that reveals a person's feelings or attitude; "he was pleased by the audience's reaction to his performance"; "John feared his mother's reaction when she saw the broken lamp"
+64946,reaction,extreme conservatism in political or social matters; "the forces of reaction carried the election"
+64947,reaction,an idea evoked by some experience; "his reaction to the news was to start planning what to do"
+64948,reaction,doing something in opposition to another way of doing it that you don't like; "his style of painting was a reaction against cubism"
+64949,reaction response,a bodily process occurring due to the effect of some antecedent stimulus or agent; "a bad reaction to the medicine"; "his responses have slowed with age"
+64950,reaction-propulsion_engine reaction_engine,a jet or rocket engine based on a form of aerodynamic propulsion in which the vehicle emits a high-speed stream
+64951,reaction_formation,(psychiatry) a defense mechanism in which a person unconsciously develops attitudes and behavior that are the opposite of unacceptable repressed desires and impulses and serve to conceal them; "his strict morality is just a reaction formation to hide his sexual drive"
+64952,reaction_propulsion,propulsion that results from the ejection at high velocity of a mass of gas to which the vehicle reacts with an equal and opposite momentum
+64953,reaction_time response_time latency latent_period,the time that elapses between a stimulus and the response to it
+64954,reaction_turbine,a turbine with blades arranged to develop torque from gradual decrease of steam pressure from inlet to exhaust
+64955,reactionary ultraconservative extreme_right-winger,an extreme conservative; an opponent of progress or liberalism
+64956,reactionism,the political orientation of reactionaries
+64957,reactivity,ready susceptibility to chemical change
+64958,reactor,an electrical device used to introduce reactance into a circuit
+64959,read,something that is read; "the article was a very good read"
+64960,read-only_file,(computer science) a file that you can read but cannot change
+64961,read-only_memory ROM read-only_storage fixed_storage,(computer science) memory whose contents can be accessed and read but cannot be changed
+64962,read-only_memory_chip,a memory chip providing read-only memory
+64963,read/write_head head,(computer science) a tiny electromagnetic coil and metal pole used to write and read magnetic patterns on a disk
+64964,readability,the quality of written language that makes it easy to read and understand
+64965,reader,a person who can read; a literate person
+64966,reader,a person who enjoys reading
+64967,reader,one of a series of texts for students learning to read
+64968,readership,the audience reached by written communications (books or magazines or newspapers etc.)
+64969,readiness eagerness zeal forwardness,prompt willingness; "readiness to continue discussions"; "they showed no eagerness to spread the gospel"; "they disliked his zeal in demonstrating his superiority"; "he tried to explain his forwardness in battle"
+64970,readiness preparedness preparation,the state of having been made ready or prepared for use or action (especially military action); "putting them in readiness"; "their preparation was more than adequate"
+64971,reading,a particular interpretation or performance; "on that reading it was an insult"; "he was famous for his reading of Mozart"
+64972,reading,the cognitive process of understanding a written linguistic message; "his main reading was detective stories"; "suggestions for further reading"
+64973,reading meter_reading,the act of measuring with meters or similar instruments; "he has a job meter reading for the gas company"
+64974,reading meter_reading indication,a datum about some physical state that is presented to a user by a meter or similar instrument; "he could not believe the meter reading"; "the barometer gave clear indications of an approaching storm"
+64975,reading reading_material,written material intended to be read; "the teacher assigned new readings"; "he bought some reading material at the airport"
+64976,reading_assignment,the reading of a passage assigned by the teacher
+64977,reading_clinic,a clinic for people with reading disabilities
+64978,reading_lamp,a lamp that provides light for reading
+64979,reading_program,a program designed to teach literacy skills
+64980,reading_room,a room set aside for reading
+64981,reading_teacher,someone who teaches students to read
+64982,readjustment,the act of adjusting again (to changed circumstances)
+64983,readmission,the act of admitting someone again; "the surgery was performed on his readmission to the clinic"
+64984,readout read-out,the output of a computer in readable form
+64985,readout read-out,the information displayed or recorded on an electronic device
+64986,readout read-out,an electronic device the displays information in a visual form
+64987,ready,poised for action; "their guns were at the ready"
+64988,ready-made,a manufactured artifact (as a garment or piece of furniture) that is made in advance and available for purchase; "their apartment was furnished with ready-mades"
+64989,ready-mix,a commercial preparation containing most of the ingredients for a dish
+64990,ready-to-wear,ready-made clothing; "she couldn't find anything in ready-to-wear that she liked"
+64991,ready_cash cold_cash ready_money,money in the form of cash that is readily available; "his wife was always a good source of ready cash"; "he paid cold cash for the TV set"
+64992,reaffiliation,affiliation anew
+64993,reagent,a chemical agent for use in chemical reactions
+64994,reagin,an immunoglobulin E that is formed as an antibody against allergens (such as pollen); attaches to cell membranes causing the release of histamine and other substances responsible for the local inflammation characteristic of an allergy
+64995,real,the basic unit of money in Brazil; equal to 100 centavos
+64996,real,an old small silver Spanish coin
+64997,real-estate_business,the business of selling real estate
+64998,real-time_processing real-time_operation,data processing fast enough to keep up with an outside process
+64999,real_McCoy real_thing real_stuff,informal usage attributing authenticity
+65000,real_estate_broker real_estate_agent estate_agent land_agent house_agent,a person who is authorized to act as an agent for the sale of land; "in England they call a real estate agent a land agent"
+65001,real_estate_loan mortgage_loan,a loan on real estate that is usually secured by a mortgage
+65002,real_gross_national_product real_GNP,a version of the GNP that has been adjusted for the effects of inflation
+65003,real_matrix,a matrix whose elements are all real numbers
+65004,real_number real,any rational or irrational number
+65005,real_presence,(Christianity) the Christian doctrine that the body of Christ is actually present in the Eucharist
+65006,real_property real_estate realty immovable,property consisting of houses and land
+65007,real_storage,the main memory in a virtual memory system
+65008,real_time,the actual time that it takes a process to occur; "information is updated in real time"
+65009,real_time,(computer science) the time it takes for a process under computer control to occur
+65010,real_world real_life,the practical world as opposed to the academic world; "a good consultant must have a lot of experience in the real world"
+65011,realgar,a rare soft orange mineral consisting of arsenic sulphide; an important ore of arsenic
+65012,realism naive_realism,(philosophy) the philosophical doctrine that physical objects continue to exist when not perceived
+65013,realism pragmatism,the attribute of accepting the facts of life and favoring practicality and literal truth
+65014,realist,a person who accepts the world as it literally is and deals with it accordingly
+65015,realist,a painter who represents the world realistically and not in an idealized or romantic style
+65016,realist,a philosopher who believes that universals are real and exist independently of anyone thinking of them
+65017,reality,the state of the world as it really is rather than as you might want it to be; "businessmen have to face harsh realities"
+65018,reality,the quality possessed by something that is real
+65019,reality realness realism,the state of being actual or real; "the reality of his situation slowly dawned on him"
+65020,reality_check,an occasion on which one is reminded of the nature of things in the real world; "this program is intended as a reality check for CEOs"; "after all those elaborate productions, I felt in need of a reality check"
+65021,reality_principle,(psychoanalysis) the governing principle of the ego; the principle that as a child grows it becomes aware of the real environment and the need to accommodate to it
+65022,realization realisation,a musical composition that has been completed or enriched by someone other than the composer
+65023,realization realisation,a sale in order to obtain money (as a sale of stock or a sale of the estate of a bankrupt person) or the money so obtained
+65024,realization realisation,the completion or enrichment of a piece of music left sparsely notated by a composer
+65025,realization realisation actualization actualisation,making real or giving the appearance of reality
+65026,realization realisation fruition,something that is made real or concrete; "the victory was the realization of a whole year's work"
+65027,realization realisation recognition,coming to understand something clearly and distinctly; "a growing realization of the risk involved"; "a sudden recognition of the problem he faced"; "increasing recognition that diabetes frequently coexists with other chronic diseases"
+65028,reallocation,a share that has been allocated again
+65029,reallotment reapportionment reallocation,a new apportionment (especially a new apportionment of congressional seats in the United States on the basis of census results)
+65030,realpolitik practical_politics,politics based on practical rather than moral or ideological considerations
+65031,ream,a large quantity of written matter; "he wrote reams and reams"
+65032,ream,a quantity of paper; 480 or 500 sheets; one ream equals 20 quires
+65033,reamer,a drill that is used to shape or enlarge holes
+65034,reamer juicer juice_reamer,a squeezer with a conical ridged center that is used for squeezing juice from citrus fruit
+65035,reappearance,the event of something appearing again; "the reappearance of Halley's comet"
+65036,reappearance return,the act of someone appearing again; "his reappearance as Hamlet has been long awaited"
+65037,reappraisal revaluation review reassessment,a new appraisal or evaluation
+65038,rear,the back of a military formation or procession; "infantrymen were in the rear"
+65039,rear back,the side that goes last or is not normally seen; "he wrote the date on the back of the photograph"
+65040,rear backside back_end,the side of an object that is opposite its front; "his room was toward the rear of the hotel"
+65041,rear_admiral,an admiral junior to a vice admiral
+65042,rear_window,car window that allows vision out of the back of the car
+65043,rearguard,a detachment assigned to protect the rear of a (retreating) military body
+65044,rearmament,the act of arming again; "he opposed the rearmament of Japan after World War II"
+65045,rearrangement,changing an arrangement
+65046,rearview_mirror,car mirror that reflects the view out of the rear window
+65047,rearward,direction toward the rear; "his outfit marched to the rearward of the tank divisions"
+65048,reason,an explanation of the cause of some phenomenon; "the reason a steady state was never reached was that the back pressure built up too slowly"
+65049,reason,a fact that logically justifies some premise or conclusion; "there is reason to believe he is lying"
+65050,reason ground,a rational motive for a belief or action; "the reason that war was declared"; "the grounds for their declaration"
+65051,reason understanding intellect,the capacity for rational thought or inference or discrimination; "we are told that man is endowed with reason and capable of distinguishing good from evil"
+65052,reasonableness,goodness of reason and judgment; "the judiciary is built on the reasonableness of judges"
+65053,reasonableness,moderation in expectations; "without greater reasonableness by both parties we will never settle this matter!"
+65054,reasonableness moderateness modestness,the property of being moderate in price or expenditures; "the store is famous for the reasonableness of its prices"; "the modestness of the living standards here becomes obvious immediately"
+65055,reasonableness tenability tenableness,the quality of being plausible or acceptable to a reasonable person; "he questioned the tenability of my claims"
+65056,reasoner ratiocinator,someone who reasons logically
+65057,reasoning logical_thinking abstract_thought,thinking that is coherent and logical
+65058,reassembly refabrication,assembling again
+65059,reassertion reaffirmation,renewed affirmation
+65060,reassignment,assignment to a different duty
+65061,reassurance,the act of reassuring; restoring someone's confidence
+65062,rebate discount,a refund of some fraction of the amount paid
+65063,rebellion,refusal to accept some authority or code or convention; "each generation must have its own rebellion"; "his body was in rebellion against fatigue"
+65064,rebellion insurrection revolt rising uprising,organized opposition to authority; a conflict in which one faction tries to wrest control from another
+65065,rebirth Renaissance Renascence,the revival of learning and culture
+65066,rebound,a reaction to a crisis or setback or frustration; "he is still on the rebound from his wife's death"
+65067,rebound,the act of securing possession of the rebounding basketball after a missed shot
+65068,rebound_tenderness,pain felt when a hand pressing on the abdomen is suddenly released; a symptom of peritoneal inflammation
+65069,reboxetine Edronax,an antidepressant drug that blocks the reuptake of norepinephrine
+65070,rebozo,a long woolen or linen scarf covering the head and shoulders (also used as a sling for holding a baby); traditionally worn by Latin-American women
+65071,rebroadcast,a broadcast that repeated at a later time
+65072,rebuff slight,a deliberate discourteous act (usually as an expression of anger or disapproval)
+65073,rebuff snub repulse,an instance of driving away or warding off
+65074,rebuilding,building again
+65075,rebuke reproof reproval reprehension reprimand,an act or expression of criticism and censure; "he had to take the rebuke with a smile on his face"
+65076,reburying reburial,the act of burying again
+65077,rebus,a puzzle where you decode a message consisting of pictures representing syllables and words
+65078,rebuttal,the speech act of refuting by offering a contrary contention or argument
+65079,rebutter disprover refuter confuter,a debater who refutes or disproves by offering contrary evidence or argument
+65080,rebutter rebuttal,(law) a pleading by the defendant in reply to a plaintiff's surrejoinder
+65081,recalculation,the act of calculating again (usually to eliminate errors or to include additional data); "recalculation yielded a much larger value"
+65082,recall,a call to return; "the recall of our ambassador"
+65083,recall,a bugle call that signals troops to return
+65084,recall,the act of removing an official by petition
+65085,recall callback,a request by the manufacturer of a defective product to return the product (as for replacement or repair)
+65086,recall recollection reminiscence,the process of remembering (especially the process of recovering information by mental effort); "he has total recall of the episode"
+65087,recapitulation,(music) the section of a composition or movement (especially in sonata form) in which musical themes that were introduced earlier are repeated
+65088,recapitulation,(music) the repetition of themes introduced earlier (especially when one is composing the final part of a movement)
+65089,recapitulation recap review,a summary at the end that repeats the substance of a longer discussion
+65090,recapture,a legal seizure by the government of profits beyond a fixed amount
+65091,recapture retaking,the act of taking something back
+65092,recce recco reccy,reconnaissance (by shortening)
+65093,receding fadeout,a slow or gradual disappearance
+65094,receding recession,the act of becoming more distant
+65095,receipt,an acknowledgment (usually tangible) that payment has been made
+65096,receivables,money that you currently expect to receive from notes or accounts
+65097,receiver,the tennis player who receives the serve
+65098,receiver pass_receiver pass_catcher,a football player who catches (or is supposed to catch) a forward pass
+65099,receiver receiving_system,set that receives radio or tv signals
+65100,receiver-creditor_relation,the responsibility of receiver or trustee in bankruptcy to act in the best interests of the creditor
+65101,receivership,the state of property that is in the hands of a receiver; "the business is in receivership"
+65102,receivership,a court action that places property under the control of a receiver during litigation so that it can be preserved for the benefit of all
+65103,receivership,the office of a receiver
+65104,recency recentness,a time immediately before the present
+65105,recency recentness,the property of having happened or appeared not long ago
+65106,receptacle,enlarged tip of a stem that bears the floral parts
+65107,receptacle,an electrical (or electronic) fitting that is connected to a source of power and equipped to receive an insert
+65108,receptacle,a container that is used to put or keep things in
+65109,reception,a formal party of people; as after a wedding
+65110,reception,quality or fidelity of a received broadcast
+65111,reception,(American football) the act of catching a pass in football; "the tight end made a great reception on the 20 yard line"
+65112,reception receipt,the act of receiving
+65113,reception response,the manner in which something is greeted; "she did not expect the cold reception she received from her superiors"
+65114,reception_desk,a counter (as in a hotel) where guests are received
+65115,reception_line,a line of people (hosts and guests of honor) who welcome the guests at a reception party
+65116,reception_room,a room for receiving and entertaining visitors (as in a private house or hotel)
+65117,receptionist,a secretary whose main duty is to answer the telephone and receive visitors
+65118,receptiveness receptivity openness,willingness or readiness to receive (especially impressions or ideas); "he was testing the government's receptiveness to reform"; "this receptiveness is the key feature in oestral behavior, enabling natural mating to occur"; "their receptivity to the proposal"
+65119,receptor,a cellular structure that is postulated to exist in order to mediate between a chemical agent that acts on nervous tissue and the physiological response
+65120,recess niche,an enclosure that is set back or indented
+65121,recess recession niche corner,a small concavity
+65122,recession,the state of the economy declines; a widespread decline in the GDP and employment and trade lasting from six months to a year
+65123,recession ceding_back,the act of ceding back
+65124,recession recessional,the withdrawal of the clergy and choir from the chancel to the vestry at the end of a church service
+65125,recessional,a hymn that is sung at the end of a service as the clergy and choir withdraw
+65126,recessive_allele recessive,an allele that produces its characteristic phenotype only when its paired allele is identical
+65127,recessive_gene,gene that produces its characteristic phenotype only when its allele is identical; "the recessive gene for blue eyes"
+65128,rechauffe,warmed leftovers
+65129,recidivism,habitual relapse into crime
+65130,recidivist backslider reversionist,someone who lapses into previous undesirable patterns of behavior
+65131,recidivist repeater habitual_criminal,someone who is repeatedly arrested for criminal behavior (especially for the same criminal behavior)
+65132,recipe formula,directions for making something
+65133,recipient receiver,a person who receives something
+65134,recipient_role recipient,the semantic role of the animate entity that is passively involved in the happening denoted by the verb in the clause
+65135,reciprocal,something (a term or expression or concept) that has an inverse relation to something else; "risk is the reciprocal of safety"
+65136,reciprocal_cross reciprocal,hybridization involving a pair of crosses that reverse the sexes associated with each genotype
+65137,reciprocal_inhibition reciprocal-inhibition_therapy,a method of behavior therapy based on the inhibition of one response by the occurrence of another response that is mutually incompatible with it; a relaxation response might be conditioned to a stimulus that previously evoked anxiety
+65138,reciprocal_pronoun,a pronoun or pronominal phrase (as `each other') that expresses a mutual action or relationship between the individuals indicated in the plural subject; "The sentence `They cared for each other' contains a reciprocal pronoun"
+65139,reciprocality reciprocity,a relation of mutual dependence or action or influence
+65140,reciprocating_engine,an internal-combustion engine in which the crankshaft is turned by pistons moving up and down in cylinders
+65141,reciprocation,the act of making or doing something in return
+65142,reciprocation,alternating back-and-forth movement
+65143,reciprocity,mutual exchange of commercial or other privileges
+65144,recirculation,circulation again
+65145,recission rescission,(law) the act of rescinding; the cancellation of a contract and the return of the parties to the positions they would have had if the contract had not been made; "recission may be brought about by decree or by mutual consent"
+65146,recital,a detailed statement giving facts and figures; "his wife gave a recital of his infidelities"
+65147,recital,a detailed account or description of something; "he was forced to listen to a recital of his many shortcomings"
+65148,recital,performance of music or dance especially by soloists
+65149,recitalist,a musician who gives recitals
+65150,recitation,written matter that is recited from memory
+65151,recitation recital reading,a public instance of reciting or repeating (from memory) something prepared in advance; "the program included songs and recitations of well-loved poems"
+65152,recitative,a vocal passage of narrative text that a singer delivers with natural rhythms of speech
+65153,reciter,someone who recites from memory
+65154,recklessness foolhardiness rashness,the trait of giving little thought to danger
+65155,reckoner ready_reckoner,a handbook of tables used to facilitate computation
+65156,reckoning tally,a bill for an amount due
+65157,reclamation,the recovery of useful substances from waste products
+65158,reclamation reformation,rescuing from error and returning to a rightful course; "the reclamation of delinquent children"
+65159,reclamation renewal rehabilitation,the conversion of wasteland into land suitable for use of habitation or cultivation
+65160,reclassification,classifying something again (usually in a new category)
+65161,recliner reclining_chair lounger,an armchair whose back can be lowered and foot can be raised to allow the sitter to recline in it
+65162,reclining,the act of assuming or maintaining a reclining position
+65163,reclusiveness,a disposition to prefer seclusion or isolation
+65164,recoding,converting from one code to another
+65165,recognition,(biology) the ability of one molecule to attach to another molecule that has a complementary shape; "molecular recognition drives all of biology, for instance, hormone and receptor or antibody-antigen interactions or the organization of molecules into larger biologically active entities"
+65166,recognition,the explicit and formal acknowledgement of a government or of the national independence of a country; "territorial disputes were resolved in Guatemala's recognition of Belize in 1991"
+65167,recognition,an acceptance (as of a claim) as true and valid; "the recognition of the Rio Grande as a boundary between Mexico and the United States"
+65168,recognition,designation by the chair granting a person the right to speak in a deliberative body; "he was unable to make his motion because he couldn't get recognition by the chairman"
+65169,recognition acknowledgment acknowledgement,the state or quality of being recognized or acknowledged; "the partners were delighted with the recognition of their work"; "she seems to avoid much in the way of recognition or acknowledgement of feminist work prior to her own"
+65170,recognition credit,approval; "give her recognition for trying"; "he was given credit for his work"; "give her credit for trying"
+65171,recognition identification,the process of recognizing something or someone by remembering; "a politician whose recall of names was as remarkable as his recognition of faces"; "experimental psychologists measure the elapsed time from the onset of the stimulus to its recognition by the observer"
+65172,recognizance recognisance,(law) a security entered into before a court with a condition to perform some act required by law; on failure to perform that act a sum is forfeited
+65173,recoil kick,the backward jerk of a gun when it is fired
+65174,recoil repercussion rebound backlash,a movement back from an impact
+65175,recollection,something recalled to the mind
+65176,recombinant,a cell or organism in which genetic recombination has occurred
+65177,recombinant_deoxyribonucleic_acid recombinant_DNA,genetically engineered DNA made by recombining fragments of DNA from different organisms
+65178,recombinant_human_insulin Humulin,a form of insulin (trade name Humulin) made from recombinant DNA that is identical to human insulin; used to treat diabetics who are allergic to preparations made from beef or pork insulin
+65179,recombinant_protein,a protein derived from recombinant DNA
+65180,recombination,(physics) a combining of charges or transfer of electrons in a gas that results in the neutralization of ions; important for ions arising from the passage of high-energy particles
+65181,recombination,(genetics) a combining of genes or characters different from what they were in the parents
+65182,recommendation,something (as a course of action) that is recommended as advisable
+65183,recommendation passport,any quality or characteristic that gains a person a favorable reception or acceptance or admission; "her pleasant personality is already a recommendation"; "his wealth was not a passport into the exclusive circles of society"
+65184,recommendation testimonial good_word,something that recommends (or expresses commendation of) a person or thing as worthy or desirable
+65185,recompense,payment or reward (as for service rendered)
+65186,recompense compensation,the act of compensating for service or loss or injury
+65187,reconciliation balancing,getting two things to correspond; "the reconciliation of his checkbook and the bank statement"
+65188,reconciliation rapprochement,the reestablishing of cordial relations
+65189,reconditeness abstruseness abstrusity profoundness profundity,wisdom that is recondite and abstruse and profound; "the anthropologist was impressed by the reconditeness of the native proverbs"
+65190,reconnaissance reconnaissance_mission,the act of reconnoitring (especially to gain information about an enemy or potential enemy); "an exchange of fire occurred on a reconnaissance mission"
+65191,reconnaissance_by_fire,a method of reconnaissance in which fire is placed on a suspected enemy position in order to cause the enemy to disclose his presence by moving or returning fire
+65192,reconnaissance_in_force,an offensive operation designed to discover or test the enemy's strength (or to obtain other information)
+65193,reconnaissance_plane,a military airplane used to gain information about an enemy
+65194,reconnaissance_vehicle scout_car,fast armored military vehicle with four-wheel drive and open top
+65195,reconsideration,a consideration of a topic (as in a meeting) with a view to changing an earlier decision
+65196,reconsideration second_thought afterthought rethink,thinking again about a choice previously made; "he had second thoughts about his purchase"
+65197,reconstruction,an interpretation formed by piecing together bits of evidence
+65198,reconstruction,the activity of constructing something again
+65199,reconstruction reconstructive_memory,recall that is hypothesized to work by storing abstract features which are then used to construct the memory during recall
+65200,record,the number of wins versus losses and ties a team has had; "at 9-0 they have the best record in their league"
+65201,record,a document that can serve as legal evidence of a transaction; "they could find no record of the purchase"
+65202,record,anything (such as a document or a phonograph record or a photograph) providing permanent evidence of or information about past events; "the film provided a valuable record of stage techniques"
+65203,record,an extreme attainment; the best (or worst) performance ever attested (as in a sport); "he tied the Olympic record"; "coffee production last year broke all previous records"; "Chicago set the homicide record"
+65204,record record_book book,a compilation of the known facts regarding something or someone; "Al Smith used to say, `Let's look at the record'"; "his name is in all the record books"
+65205,record track_record,the sum of recognized accomplishments; "the lawyer has a good record"; "the track record shows that he will be a good president"
+65206,record-breaker record-holder,someone who breaks a record
+65207,record_changer auto-changer changer,an automatic mechanical device on a record player that causes new records to be played without manual intervention
+65208,record_company,a company that makes and sells musical recordings
+65209,record_jacket,the jacket for a phonograph record
+65210,record_player phonograph,machine in which rotating records cause a stylus to vibrate and the vibrations are amplified acoustically or electronically
+65211,record_sleeve record_cover,a sleeve for storing a phonograph record
+65212,recorder,a barrister or solicitor who serves as part-time judge in towns or boroughs
+65213,recorder recording_equipment recording_machine,equipment for making records
+65214,recorder_player,someone who plays the recorder
+65215,recording,a storage device on which information (sounds or images) have been recorded
+65216,recording,a signal that encodes something (e.g., picture or sound) that has been recorded
+65217,recording transcription,the act of making a record (especially an audio record); "she watched the recording from a sound-proof booth"
+65218,recording_studio,studio where tapes and records are recorded
+65219,recording_system,audio system for recoding sound
+65220,recount,an additional (usually a second) count; especially of the votes in a close election
+65221,recourse refuge resort,something or someone turned to for assistance or security; "his only recourse was the police"; "took refuge in lying"
+65222,recourse resort refuge,act of turning to for assistance; "have recourse to the courts"; "an appeal to his uncle was his last resort"
+65223,recovery,return to an original state; "the recovery of the forest after the fire was surprisingly rapid"
+65224,recovery retrieval,the act of regaining or saving something lost (or in danger of becoming lost)
+65225,recovery_room,a hospital room for the care of patients immediately after surgery
+65226,recreation_room rec_room,a room equipped for informal entertaining
+65227,recreational_drug,a narcotic drug that is used only occasionally and is claimed to be nonaddictive
+65228,recreational_facility recreation_facility,a public facility for recreation
+65229,recreational_vehicle RV R.V.,a motorized wheeled vehicle used for camping or other recreational activities
+65230,recrimination,mutual accusations
+65231,recrudescence,a return of something after a period of abatement; "a recrudescence of racism"; "a recrudescence of the symptoms"
+65232,recruit enlistee,any new member or supporter (as in the armed forces)
+65233,recruit military_recruit,a recently enlisted soldier
+65234,recruiter,someone who supplies members or employees
+65235,recruiter,an official who enlists personnel for military service
+65236,recruiting-sergeant,a sergeant deputized to enlist recruits
+65237,recruitment enlisting,the act of getting recruits; enlisting people for the army (or for a job or a cause etc.)
+65238,rectal_artery arteria_rectalis,one of the arteries supplying the rectal area
+65239,rectangle,a parallelogram with four right angles
+65240,rectangularity oblongness,the property of being shaped like a rectangle
+65241,rectification,(chemistry) the process of refinement or purification of a substance by distillation
+65242,rectification,the conversion of alternating current to direct current
+65243,rectification,determination of the length of a curve; finding a straight line equal in length to a given curve
+65244,rectifier,a person who corrects or sets right; "a rectifier of prejudices"
+65245,rectifier,electrical device that transforms alternating into direct current
+65246,recto,right-hand page
+65247,rectocele proctocele,protrusion or herniation of the rectum into the vagina; can occur if pelvic muscles are weakened by childbirth
+65248,rectorship rectorate,the office or station of a rector
+65249,rectum,the terminal section of the alimentary canal; from the sigmoid flexure to the anus
+65250,rectus,any of various straight muscles
+65251,recurrence return,happening again (especially at regular intervals); "the return of spring"
+65252,recursion,(mathematics) an expression such that each term is generated by repeating a particular mathematical operation
+65253,recursive_definition,(mathematics) a definition of a function from which values of the function can be calculated in a finite number of steps
+65254,recursive_routine,a routine that can call itself
+65255,recusancy,refusal to submit to established authority; originally the refusal of Roman Catholics to attend services of the Church of England
+65256,recusation,(law) an objection grounded on the judge's relationship to one of the parties
+65257,recusation recusal,(law) the disqualification of a judge or jury by reason of prejudice or conflict of interest; a judge can be recused by objections of either party or judges can disqualify themselves
+65258,recycling,used or abandoned materials for use in creating new products; "Every Monday, we put our recycling out on the curb for pick-up"
+65259,recycling,the act of processing used or abandoned materials for use in creating new products
+65260,recycling_bin,a bin for depositing things to be recycled
+65261,recycling_plant,a plant for reprocessing used or abandoned materials
+65262,red redness,red color or pigment; the chromatic color resembling the hue of blood
+65263,red-backed_mouse redback_vole,any of several voles of mountainous regions of Eurasia and America
+65264,red-backed_sandpiper dunlin Erolia_alpina,small common sandpiper that breeds in northern or Arctic regions and winters in southern United States or Mediterranean regions
+65265,red-bellied_snake Storeria_occipitamaculata,harmless woodland snake of southeastern United States
+65266,red-bellied_terrapin red-bellied_turtle redbelly Pseudemys_rubriventris,freshwater turtle of Chesapeake Bay tributaries having red markings on the lower shell
+65267,red-breasted_merganser Mergus_serrator,widely distributed merganser of America and Europe
+65268,red-breasted_nuthatch Sitta_canadensis,bluish-grey nuthatch with reddish breast; of northern coniferous forests
+65269,red-breasted_sapsucker Sphyrapicus_varius_ruber,western North American sapsucker
+65270,red-breasted_snipe Limnodromus_scolopaceus,a dowitcher with a red breast
+65271,red-eyed_vireo Vireo_olivaceous,of northern North America having red irises and an olive-grey body with white underparts
+65272,red-flowered_silky_oak Grevillea_banksii,tall shrub with cylindrical racemes of red flowers and pinnatifid leaves silky and grey beneath; eastern Australia
+65273,red-green_dichromacy red-green_color_blindness red-green_colour_blindness,confusion of red and green
+65274,red-hot_poker Kniphofia_praecox,widely cultivated hybrid poker plant
+65275,red-lead_putty,a cement resembling putty; made by mixing white and red lead in boiled linseed oil; used as luting on pipe fittings
+65276,red-legged_partridge Alectoris_ruffa,common western European partridge with red legs
+65277,red-letter_day,a memorably happy or noteworthy day (from the custom of marking holy days in red on church calendars)
+65278,red-light_district,a district with many brothels
+65279,red-necked_grebe Podiceps_grisegena,large stocky grebe of circumpolar regions having a dark neck
+65280,red-shafted_flicker Colaptes_caper_collaris,western United States bird with red undersurface to wings and tail
+65281,red-shouldered_hawk Buteo_lineatus,North American hawk with reddish brown shoulders
+65282,red-skinned_onion Allium_haematochiton,onion with white to deep red tunic; California
+65283,red-spotted_purple Limenitis_astyanax,similar to the banded purple but with red spots on underwing surfaces
+65284,red-winged_blackbird redwing Agelaius_phoeniceus,North American blackbird with scarlet patches on the wings
+65285,red_Clintonia Andrew's_clintonia Clintonia_andrewsiana,plant with nearly leafless stalk topped by a cluster of red or reddish lavender flowers; California to Oregon
+65286,red_admiral Vanessa_atalanta,of temperate Europe and Asia; having black wings with red and white markings
+65287,red_alder Oregon_alder Alnus_rubra,large tree of Pacific coast of North America having hard red wood much used for furniture
+65288,red_alert,the highest level of alert when an attack by the enemy seems imminent (or more generally a state of alert resulting from imminent danger)
+65289,red_algae,marine algae in which the chlorophyll is masked by a red or purplish pigment; source of agar and carrageenan
+65290,red_angel's_trumpet Brugmansia_sanguinea Datura_sanguinea,arborescent South American shrub having very large orange-red flowers
+65291,red_ash downy_ash Fraxinus_pennsylvanica,smallish American tree with velvety branchlets and lower leaf surfaces
+65292,red_baneberry redberry red-berry snakeberry Actaea_rubra,North American perennial herb with alternately compound leaves and racemes of small white flowers followed by bright red oval poisonous berries
+65293,red_bat Lasiurus_borealis,North American bat of a brick or rusty red color with hairs tipped with white
+65294,red_beech brown_oak booyong crow's_foot stave_wood silky_elm Heritiera_trifoliolata Terrietia_trifoliolata,large tree of Australasia
+65295,red_blood_cell RBC erythrocyte,a mature blood cell that contains hemoglobin to carry oxygen to the bodily tissues; a biconcave disc that has no nucleus
+65296,red_brass guinea_gold,brass with enough copper to give it a reddish tint; used for plumbing pipe and other brass hardware and in cheap jewelry
+65297,red_bryony wild_hop Bryonia_dioica,bryony having fleshy roots pale green flowers and very small red berries; Europe; North Africa; western Asia
+65298,red_buckeye,a shrub buckeye of southern United States
+65299,red_cabbage,cabbage plant with a compact head of reddish purple leaves
+65300,red_cabbage,compact head of purplish-red leaves
+65301,red_campion red_bird's_eye Silene_dioica Lychnis_dioica,biennial European catchfly having red or pink flowers; sometimes placed in genus Lychnis
+65302,red_carpet,a strip of red carpeting laid down for dignitaries to walk on
+65303,red_cedar,fragrant reddish wood of any of various red cedar trees
+65304,red_clay,clay whose redness results from iron oxide
+65305,red_clover purple_clover Trifolium_pratense,erect to decumbent short-lived perennial having red-purple to pink flowers; the most commonly grown forage clover
+65306,red_coral,corals of especially the Mediterranean having pink or red color used for ornaments and jewelry
+65307,red_currant,small red berries used primarily in jams and jellies
+65308,red_currant garden_current Ribes_rubrum,cultivated European current bearing small edible red berries
+65309,red_deer elk American_elk wapiti Cervus_elaphus,common deer of temperate Europe and Asia
+65310,red_drum channel_bass redfish Sciaenops_ocellatus,large edible fish found off coast of United States from Massachusetts to Mexico
+65311,red_dwarf red_dwarf_star,a small, old, relatively cool star; approximately 100 times the mass of Jupiter
+65312,red_eft Notophthalmus_viridescens,red terrestrial form of a common North American newt
+65313,red_fire,combustible material (usually salts of lithium or strontium) that burns bright red; used in flares and fireworks
+65314,red_flag,a flag that serves as a warning signal; "we didn't swim at the beach because the red flag was up"
+65315,red_flag,the emblem of socialist revolution
+65316,red_flag,something that irritates or demands immediate action; "doing that is like waving a red flag in front of a bull"
+65317,red_fox Celosia_argentea,weedy annual with spikes of silver-white flowers
+65318,red_fox Vulpes_fulva,New World fox; often considered the same species as the Old World fox
+65319,red_fox Vulpes_vulpes,the common Old World fox; having reddish-brown fur; commonly considered a single circumpolar species
+65320,red_giant red_giant_star,a large, old, luminous star; has a relatively low surface temperature and a diameter large relative to the sun
+65321,red_ginger Alpinia_purpurata,an ornamental ginger native to Pacific islands
+65322,red_goatfish Mullus_auratus,body bright scarlet with 2 yellow to reddish strips on side
+65323,red_goosefoot French_spinach Chenopodium_rubrum,common Eurasian weed; naturalized in United States
+65324,red_grouse moorfowl moorbird moor-bird moorgame Lagopus_scoticus,reddish-brown grouse of upland moors of Great Britain
+65325,red_gum marri Eucalyptus_calophylla,very large red gum tree
+65326,red_gum peppermint peppermint_gum Eucalyptus_amygdalina,red gum tree of Tasmania
+65327,red_haw Crataegus_pedicellata Crataegus_coccinea,American red-fruited hawthorn with dense corymbs of pink-red flowers
+65328,red_haw downy_haw Crataegus_mollis Crataegus_coccinea_mollis,American red-fruited hawthorn with stems and leaves densely covered with short woolly hairs
+65329,red_helleborine Cephalanthera_rubra,orchid of Mediterranean and Asia having a lax spike of bright rose-pink flowers
+65330,red_herring,any diversion intended to distract attention from the main issue
+65331,red_herring smoked_herring,a dried and smoked herring having a reddish color
+65332,red_jungle_fowl Gallus_gallus,a jungle fowl of southeastern Asia that is considered ancestral to the domestic fowl
+65333,red_kauri Agathis_lanceolata,New Zealand tree with glossy leaves and scaly reddish-brown bark
+65334,red_lauan,hard heavy red wood of the red lauan tree; often sold as Philippine mahogany
+65335,red_lauan red_lauan_tree Shorea_teysmanniana,valuable Philippine timber tree
+65336,red_laver laver,edible red seaweeds
+65337,red_lead minium,a reddish oxide of lead (Pb3O4) used as a pigment in paints and in glass and ceramics
+65338,red_light,the signal to stop
+65339,red_light warning_light,a cautionary sign of danger
+65340,red_line,a line that is colored red and that bisects an ice hockey rink
+65341,red_maids redmaids Calandrinia_ciliata,succulent carpet-forming plant having small brilliant reddish-pink flowers; southwestern United States
+65342,red_maple scarlet_maple swamp_maple Acer_rubrum,maple of eastern and central America; five-lobed leaves turn scarlet and yellow in autumn
+65343,red_marrow red_bone_marrow,bone marrow of children and some adult bones that is required for the formation of red blood cells
+65344,red_meat,meat that is dark in color before cooking (as beef, venison, lamb, mutton)
+65345,red_morning-glory star_ipomoea Ipomoea_coccinea,annual herb having scarlet flowers; the eastern United States
+65346,red_mulberry Morus_rubra,North American mulberry having dark purple edible fruit
+65347,red_oak,any of numerous American oaks having 4 stamens in each floret, acorns requiring two years to mature and leaf veins usually extending beyond the leaf margin to form points or bristles
+65348,red_osier red_osier_dogwood red_dogwood American_dogwood redbrush Cornus_stolonifera,common North American shrub with reddish purple twigs and white flowers
+65349,red_phalarope Phalaropus_fulicarius,phalarope of northern oceans and lakes
+65350,red_pine Canadian_red_pine Pinus_resinosa,pine of eastern North America having long needles in bunches of two and reddish bark
+65351,red_poll,hornless short-haired breed of beef and dairy cattle
+65352,red_porgy Pagrus_pagrus,food fish of the Mediterranean and Atlantic coasts of Europe and America
+65353,red_raspberry,any of several raspberries bearing red fruit
+65354,red_rockfish,red flesh of large food fish of Pacific coast
+65355,red_rockfish Sebastodes_ruberrimus,a large fish of the Pacific coast of North America
+65356,red_salmon sockeye sockeye_salmon,fatty red flesh of salmon of Pacific coast and rivers
+65357,red_sandalwood red_sanders red_sanderswood red_saunders Pterocarpus_santalinus,tree of India and East Indies yielding a hard fragrant timber prized for cabinetwork and dark red heartwood used as a dyewood
+65358,red_scare,a period of general fear of communists
+65359,red_shift redshift,(astronomy) a shift in the spectra of very distant galaxies toward longer wavelengths (toward the red end of the spectrum); generally interpreted as evidence that the universe is expanding
+65360,red_shrubby_penstemon redwood_penstemon,low branching dark green shrub with bunches of brick-red flowers at ends of branches; coastal ranges and foothills of northern California
+65361,red_silk-cotton_tree simal Bombax_ceiba Bombax_malabarica,East Indian silk cotton tree yielding fibers inferior to kapok
+65362,red_silk_cotton,a plant fiber from the red silk-cotton tree of eastern India; inferior to kapok
+65363,red_siskin Carduelis_cucullata,South American species of scarlet finch with black head and wings and tail
+65364,red_snapper,highly esteemed reddish lean flesh of snapper from Atlantic coast and Gulf of Mexico
+65365,red_snapper Lutjanus_blackfordi,an esteemed food fish with pinkish red head and body; common in the Atlantic coastal waters of North America and the Gulf of Mexico
+65366,red_spider red_spider_mite Panonychus_ulmi,small web-spinning mite; a serious orchard pest
+65367,red_spruce eastern_spruce yellow_spruce Picea_rubens,medium-sized spruce of eastern North America; chief lumber spruce of the area; source of pulpwood
+65368,red_squirrel cat_squirrel Sciurus_vulgaris,common reddish-brown squirrel of Europe and parts of Asia
+65369,red_tide,seawater that is discolored by large numbers of certain dinoflagellates that produce saxitoxin
+65370,red_trillium toadshade sessile_trillium Trillium_sessile,trillium of northeastern United States with sessile leaves and red or purple flowers having a pungent odor
+65371,red_underwing Catocala_nupta,moth having dull forewings and red-marked hind wings
+65372,red_valerian French_honeysuckle Centranthus_ruber,European herb with small fragrant crimson or white spurred flowers
+65373,red_water,a disease of cattle; characterized by hematuria
+65374,red_wine,wine having a red color derived from skins of dark-colored grapes
+65375,red_wolf maned_wolf Canis_rufus Canis_niger,reddish-grey wolf of southwestern North America
+65376,redact redactor reviser rewriter rewrite_man,someone who puts text into appropriate form for publication
+65377,redaction,the act of putting something in writing
+65378,redberry red-berry Rhamnus_croceus,small spiny evergreen shrub of western United States and Mexico with minute flowers and bright red berries
+65379,redbone,a speedy red or red-and-tan American hound
+65380,redbrick_university,(British informal) a provincial British university of relatively recent founding; distinguished from Oxford University and Cambridge University
+65381,redbud Cercis_canadensis,small shrubby tree of eastern North America similar to the Judas tree having usually pink flowers; found in damp sheltered underwood
+65382,redcap,a member of the military police in Britain
+65383,redcap,a porter who helps passengers with their baggage at a railroad station
+65384,redcoat lobsterback,British soldier; so-called because of his red coat (especially during the American Revolution)
+65385,reddish_brown sepia burnt_sienna Venetian_red mahogany,a shade of brown with a tinge of red
+65386,reddish_orange,an orange color closer to red than to yellow
+65387,reddish_purple royal_purple,a shade of purple tinged with red
+65388,rededication,a new dedication; "the rededication of the Temple of Jerusalem"
+65389,redeemer,someone who redeems or buys back (promissory notes or merchandise or commercial paper etc.)
+65390,redefinition,the act of giving a new definition; "words like `conservative' require periodic redefinition"; "she provided a redefinition of his duties"
+65391,redemption,repayment of the principal amount of a debt or security at or before maturity (as when a corporation repurchases its own stock)
+65392,redemption repurchase buyback,the act of purchasing back something previously sold
+65393,redemption salvation,(theology) the act of delivering from sin or saving from evil
+65394,redeployment redisposition,the withdrawal and redistribution of forces in an attempt to use them more effectively
+65395,redeposition,deposition from one deposit to another
+65396,redetermination,determining again
+65397,redevelopment_authority,a public administrative unit given responsibility for the renovation of blighted urban areas
+65398,redeye redeye_flight,a night flight from which the passengers emerge with eyes red from lack of sleep; "he took the redeye in order to get home the next morning"
+65399,redfin_pickerel barred_pickerel Esox_americanus,small but gamy pickerel of Atlantic coastal states
+65400,redfish,male salmon that has recently spawned
+65401,redfish rosefish ocean_perch,North Atlantic rockfish
+65402,redhead Aythya_americana,North American diving duck with a grey-and-black body and reddish-brown head
+65403,redhead redheader red-header carrottop,someone who has red hair
+65404,redheaded_woodpecker redhead Melanerpes_erythrocephalus,black-and-white North American woodpecker having a red head and neck
+65405,redhorse redhorse_sucker,North American sucker with reddish fins
+65406,redirect_examination reexamination,(law) questioning of a witness by the party that called the witness after that witness has been subject to cross-examination
+65407,rediscovery,the act of discovering again
+65408,redistribution,distributing again; "the revolution resulted in a redistribution of wealth"
+65409,redneck cracker,a poor White person in the southern United States
+65410,redoubt,(military) a temporary or supplementary fortification; typically square or polygonal without flanking defenses
+65411,redoubt,an entrenched stronghold or refuge
+65412,redpoll Carduelis_flammea,small siskin-like finch with a red crown and a rosy breast and rump
+65413,redpoll Carduelis_hornemanni,small siskin-like finch with a red crown
+65414,redraft,a draft for the amount of a dishonored draft plus the costs and charges of drafting again
+65415,redress remedy remediation,act of correcting an error or a fault or an evil
+65416,redshank Tringa_totanus,a common Old World wading bird with long red legs
+65417,redstart redtail,European songbird with a reddish breast and tail; related to Old World robins
+65418,redstem_storksbill alfilaria alfileria filaree filaria clocks pin_grass pin_clover Erodium_cicutarium,European weed naturalized in southwestern United States and Mexico having reddish decumbent stems with small fernlike leaves and small deep reddish-lavender flowers followed by slender fruits that stick straight up; often grown for forage
+65419,redtail red-tailed_hawk Buteo_jamaicensis,dark brown American hawk species having a reddish-brown tail
+65420,reduced_instruction_set_computing reduced_instruction_set_computer RISC,(computer science) a kind of computer architecture that has a relatively small set of computer instructions that it can perform
+65421,reducer,pipefitting that joins two pipes of different diameter
+65422,reducing,loss of excess weight (as by dieting); becoming slimmer; "a doctor supervised her reducing"
+65423,reducing_agent reducer reductant,a substance capable of bringing about the reduction of another substance as it itself is oxidized; used in photography to lessen the density of a negative or print by oxidizing some of the loose silver
+65424,reducing_diet obesity_diet,a diet designed to help you lose weight (especially fat)
+65425,reductase,an enzyme that catalyses the biochemical reduction of some specified substance
+65426,reductio_ad_absurdum reductio,(reduction to the absurd) a disproof by showing that the consequences of the proposition are absurd; or a proof of a proposition by showing that its negation leads to a contradiction
+65427,reduction reducing,any process in which electrons are added to an atom or ion (as by removing oxygen or adding hydrogen); always occurs accompanied by oxidation of the reducing agent
+65428,reduction simplification,the act of reducing complexity
+65429,reduction_gear,gearing that reduces an input speed to a slower output speed
+65430,reductionism,a theory that all complex systems can be completely understood in terms of their components
+65431,reductionism,the analysis of complex things into simpler constituents
+65432,redundancy,repetition of messages to reduce the probability of errors in transmission
+65433,redundancy,(electronics) a system design that duplicates components to provide alternatives in case one component fails
+65434,redundancy,repetition of an act needlessly
+65435,redundancy redundance,the attribute of being superfluous and unneeded; "the use of industrial robots created redundancy among workers"
+65436,reduplication,the syllable added in a reduplicated word form
+65437,reduplication,a word formed by or containing a repeated syllable or speech sound (usually at the beginning of the word)
+65438,reduplication reiteration,the act of repeating over and again (or an instance thereof)
+65439,redwing Turdus_iliacus,small European thrush having reddish flanks
+65440,redwood,the soft reddish wood of either of two species of sequoia trees
+65441,reed,tall woody perennial grasses with hollow slender stems especially of the genera Arundo and Phragmites
+65442,reed vibrating_reed,a vibrator consisting of a thin strip of stiff material that vibrates to produce a tone when air streams over it; "the clarinetist fitted a new reed onto his mouthpiece"
+65443,reed_bunting Emberiza_schoeniclus,European bunting inhabiting marshy areas
+65444,reed_canary_grass gardener's_garters lady's_laces ribbon_grass Phalaris_arundinacea,perennial grass of marshy meadows and ditches having broad leaves; Europe and North America
+65445,reed_grass,any of various tall perennial grasses of the genus Calamagrostis having feathery plumes; natives of marshland fens and wet woodlands of temperate northern hemisphere
+65446,reed_meadow_grass Glyceria_grandis,a pasture grass of moist places throughout North America
+65447,reed_pipe,organ pipe with a vibrating reed
+65448,reed_rhapis slender_lady_palm Rhapis_humilis,Chinese lady palm with more slender stems and finer sheath fibers than Rhapis excelsa
+65449,reed_section,the section of a band or orchestra that plays reed instruments
+65450,reed_stop,an organ stop with the tone of a reed instrument
+65451,reef,a submerged ridge of rock or coral near the surface of the water
+65452,reef,one of several strips across a sail that can be taken in or rolled up to lessen the area of the sail that is exposed to the wind
+65453,reef_knot flat_knot,a square knot used in a reef line
+65454,reef_squirrelfish Holocentrus_coruscus,on reefs from Bermuda and Florida to northern South America
+65455,reel,music composed for dancing a reel
+65456,reel,a roll of photographic film holding a series of frames to be projected by a movie projector
+65457,reel,winder consisting of a revolving spool with a handle; attached to a fishing rod
+65458,reel Scottish_reel,a lively dance of Scottish Highlanders; marked by circular moves and gliding steps
+65459,reelection,election again; "he did not run for reelection"
+65460,reeler,a dancer of reels
+65461,reenactment,performing a role in an event that occurred at an earlier time; "the reenactment of the battle of Princeton"
+65462,reenactor,a person who enacts a role in an event that occurred earlier
+65463,reenlistment,a renewed enlistment
+65464,reentrant_angle reentering_angle,an interior angle of a polygon that is greater than 180 degrees
+65465,reentrant_polygon reentering_polygon,a polygon with one or more reentrant angles
+65466,reentry,the act of entering again
+65467,reevaluation,the evaluation of something a second time (or more)
+65468,reeve,female ruff
+65469,refection,a light meal or repast
+65470,refectory,a communal dining-hall (usually in a monastery)
+65471,refectory_table,a long narrow dining table supported by a stretcher between two trestles
+65472,referee,an attorney appointed by a court to investigate and report on a case
+65473,referee ref,(sports) the chief official (as in boxing or American football) who is expected to ensure fair play
+65474,reference,the relation between a word or phrase and the object or idea it refers to; "he argued that reference is a consequence of conditioned reflexes"
+65475,reference consultation,the act of referring or consulting; "reference to an encyclopedia produced the answer"
+65476,reference denotation extension,the most direct or specific meaning of a word or expression; the class of objects that an expression refers to; "the extension of `satellite of Mars' is the set containing only Demos and Phobos"
+65477,reference source,a publication (or a passage from a publication) that is referred to; "he carried an armful of references back to his desk"; "he spent hours looking for the source of that quotation"
+65478,reference_book reference reference_work book_of_facts,a book to which you can refer for authoritative facts; "he contributed articles to the basic reference work on that topic"
+65479,reference_grid,a pattern of horizontal and vertical lines that provide coordinates for locating points on an image or a map
+65480,reference_manual,a manual containing information organized in a summary manner
+65481,reference_point point_of_reference reference,an indicator that orients you generally; "it is used as a reference for comparing the heating and the electrical energy involved"
+65482,referendum,a legislative act is referred for final approval to a popular vote by the electorate
+65483,referent,something referred to; the object of a reference
+65484,referent,the first term in a proposition; the term to which other terms relate
+65485,referent,something that refers; a term that refers to another term
+65486,referral,a person whose case has been referred to a specialist or professional group; "the patient is a referral from Dr. Bones"
+65487,referral,a recommendation to consult the (professional) person or group to whom one has been referred; "the insurance company says that you need a written referral from your physician before seeing a specialist"
+65488,referral,the act of referring (as forwarding an applicant for employment or referring a matter to an appropriate agency)
+65489,referred_pain,pain that is felt at a place in the body different from the injured or diseased part where the pain would be expected; "angina pectoris can cause referred pain in the left shoulder"; "pain in the right shoulder can be referred pain from gallbladder disease"
+65490,refill,a prescription drug that is provided again; "he got a refill of his prescription"; "the prescription specified only one refill"
+65491,refill,a commercial product that refills a container with its appropriate contents; "he got a refill for his ball-point pen"; "he got a refill for his notebook"
+65492,refilling replenishment replacement renewal,filling again by supplying what has been used up
+65493,refinement civilization civilisation,the quality of excellence in thought and manners and taste; "a man of intellectual refinement"; "he is remembered for his generosity and civilization"
+65494,refinement elaboration,the result of improving something; "he described a refinement of this technique"
+65495,refiner,one whose work is to refine a specific thing; "he was a sugar refiner"
+65496,refinery,an industrial plant for purifying a crude substance
+65497,refining refinement purification,the process of removing impurities (as from oil or metals or sugar etc.)
+65498,refinisher renovator restorer preserver,a skilled worker who is employed to restore or refinish buildings or antique furniture
+65499,refit,outfitting a ship again (by repairing or replacing parts)
+65500,reflation,inflation of currency after a period of deflation; restore the system to a previous state
+65501,reflecting_telescope reflector,optical telescope consisting of a large concave mirror that produces an image that is magnified by the eyepiece; "Isaac Newton invented the reflecting telescope in 1668"
+65502,reflection,(mathematics) a transformation in which the direction of one axis is reversed
+65503,reflection reflexion,the phenomenon of a propagating wave (light or sound) being thrown back from a surface
+65504,reflection reflexion,the image of something as reflected by a mirror (or other reflective material); "he studied his reflection in the mirror"
+65505,reflection reflexion reflectivity,the ability to reflect beams or rays
+65506,reflectiveness reflectivity,the capability of quiet thought or contemplation
+65507,reflectometer,a meter that measures the reflectance of a surface
+65508,reflector,device that reflects radiation
+65509,reflex reflex_response reflex_action instinctive_reflex innate_reflex inborn_reflex unconditioned_reflex physiological_reaction,an automatic instinctive unlearned reaction to a stimulus
+65510,reflex_angle,an angle greater than 180 degrees (but less than 360)
+65511,reflex_arc,the neural path of a reflex
+65512,reflex_camera,camera that allows the photographer to view and focus the exact scene being photographed
+65513,reflex_epilepsy,a form of epilepsy in which attacks are induced by peripheral stimulation
+65514,reflexive_pronoun reflexive,a personal pronoun compounded with -self to show the agent's action affects the agent
+65515,reflexive_verb,a verb whose agent performs an action that is directed at the agent; "the sentence `he washed' has a reflexive verb"; "`perjure' is a reflexive verb because you cannot perjure anyone but yourself"
+65516,reflexivity reflexiveness,the coreferential relation between a reflexive pronoun and its antecedent
+65517,reflexivity reflexiveness,(logic and mathematics) a relation such that it holds between an element and itself
+65518,reflexology,the study of reflex action as it relates to the behavior of organisms
+65519,reflexology,massage to relieve tension by finger pressure; based on the belief that there are reflex points on the feet, hands, and head that are connected to every part of the body
+65520,reflux,an abnormal backward flow of body fluids
+65521,reflux_condenser,condenser such that vapor over a boiling liquid is condensed and flows back into the vessel to prevent its contents from boiling dry
+65522,refocusing,focusing again
+65523,reforestation re-afforestation,the restoration (replanting) of a forest that had been reduced by fire or cutting
+65524,reform,a campaign aimed to correct abuses or malpractices; "the reforms he proposed were too radical for the politicians"
+65525,reform,self-improvement in behavior or morals by abandoning some vice; "the family rejoiced in the drunkard's reform"
+65526,reform,a change for the better as a result of correcting abuses; "justice was for sale before the reform of the law courts"
+65527,reform_movement,a movement intended to bring about social and humanitarian reforms
+65528,reformation,improvement (or an intended improvement) in the existing form or condition of institutions or practices etc.; intended to make a striking change for the better in social or political or religious affairs
+65529,reformatory reform_school training_school,correctional institution for the detention and discipline and training of young or first offenders
+65530,reformer,an apparatus that reforms the molecular structure of hydrocarbons to produce richer fuel; "a catalytic reformer"
+65531,reformer reformist crusader social_reformer meliorist,a disputant who advocates reform
+65532,reformism,a doctrine of reform
+65533,refracting_telescope,optical telescope that has a large convex lens that produces an image that is viewed through the eyepiece
+65534,refraction,the change in direction of a propagating wave (light or sound) when passing from one medium to another
+65535,refractive_index index_of_refraction,the ratio of the velocity of light in a vacuum to that in a medium
+65536,refractivity refractiveness,the physical property of a medium as determined by its index of refraction
+65537,refractometer,measuring instrument for measuring the refractive index of a substance
+65538,refractoriness unmanageableness recalcitrance recalcitrancy,the trait of being unmanageable
+65539,refractory_anemia refractory_anaemia,any of various anemic conditions that are not successfully treated by any means other than blood transfusions (and that are not associated with another primary disease)
+65540,refractory_period,(neurology) the time after a neuron fires or a muscle fiber contracts during which a stimulus will not evoke a response
+65541,refrain chorus,the part of a song where a soloist is joined by a group of singers
+65542,refresher,a fee (in addition to that marked on the brief) paid to counsel in a case that lasts more than one day
+65543,refresher,a drink that refreshes; "he stopped at the bar for a quick refresher"
+65544,refresher_course refresher,a course that reviews and updates a topic for those who have not kept abreast of developments
+65545,refreshment,snacks and drinks served as a light meal
+65546,refreshment recreation,activity that refreshes and recreates; activity that renews your health and spirits by enjoyment and relaxation; "time for rest and refreshment by the pool"; "days of joyous recreation with his friends"
+65547,refried_beans frijoles_refritos,dried beans cooked and mashed and then fried in lard with various seasonings
+65548,refrigerant,any substance used to provide cooling (as in a refrigerator)
+65549,refrigeration,deliberately lowering the body's temperature for therapeutic purposes; "refrigeration by immersing the patient's body in a cold bath"
+65550,refrigeration infrigidation,the process of cooling or freezing (e.g., food) for preservative purposes
+65551,refrigeration_system,a cooling system for chilling or freezing (usually for preservative purposes)
+65552,refrigerator icebox,white goods in which food can be stored at low temperatures
+65553,refrigerator_car,a freight car that is equipped with refrigeration system
+65554,refrigerator_cookie,dough formed into a roll and chilled in the refrigerator then sliced and baked
+65555,refuge sanctuary asylum,a shelter from danger or hardship
+65556,refugee,an exile who flees for safety
+65557,refund,money returned to a payer
+65558,refund repayment,the act of returning money received previously
+65559,refusal,the act of refusing
+65560,refusal,a message refusing to accept something that is offered
+65561,refutation defense defence,the speech act of answering an attack on your assertions; "his refutation of the charges was short and persuasive"; "in defense he said the other man started it"
+65562,regalia,paraphernalia indicative of royalty (or other high office)
+65563,regard respect,a feeling of friendship and esteem; "she mistook his manly regard for love"; "he inspires respect"
+65564,regard wish compliments,(usually plural) a polite expression of desire for someone's welfare; "give him my kind regards"; "my best wishes"
+65565,regatta,a meeting for boat races
+65566,regency,the period of time during which a regent governs
+65567,regency,the office of a regent
+65568,regeneration,(biology) growth anew of lost tissue or destroyed parts or organs
+65569,regeneration,the activity of spiritual or physical renewal
+65570,regent,someone who rules during the absence or incapacity or minority of the country's monarch
+65571,regent trustee,members of a governing board
+65572,reggae,popular music originating in the West Indies; repetitive bass riffs and regular chords played on the off beat by a guitar
+65573,regicide,someone who commits regicide; the killer of a king
+65574,regicide,the act of killing a king
+65575,regimen regime,(medicine) a systematic plan for therapy (often including diet)
+65576,regiment,army unit smaller than a division
+65577,regimentals,the military uniform and insignia of a regiment
+65578,regimentation,the imposition of order or discipline
+65579,region,a large indefinite location on the surface of the Earth; "penguins inhabit the polar regions"
+65580,region neighborhood,the approximate amount of something (usually used prepositionally as in `in the region of'); "it was going to take in the region of two or three months to finish the job"; "the price is in the neighborhood of $100"
+65581,region part,the extended spatial location of something; "the farming regions of France"; "religions in all parts of the world"; "regions of outer space"
+65582,region realm,a knowledge domain that you are interested in or are communicating about; "it was a limited realm of discourse"; "here we enter the region of opinion"; "the realm of the occult"
+65583,regional_anatomy topographic_anatomy topology,the study of anatomy based on regions or divisions of the body and emphasizing the relations between various structures (muscles and nerves and arteries etc.) in that region
+65584,regional_anesthesia regional_anaesthesia,loss of sensation in a region of the body produced by application of an anesthetic agent to all the nerves supplying that region (as when an epidural anesthetic is administered to the pelvic region during childbirth)
+65585,regional_enteritis regional_ileitis Crohn's_disease,a serious chronic and progressive inflammation of the ileum producing frequent bouts of diarrhea with abdominal pain and nausea and fever and weight loss
+65586,regionalism,a feature (as a pronunciation or expression or custom) that is characteristic of a particular region
+65587,regionalism,a foreign policy that defines the international interests of a country in terms of particular geographic areas
+65588,regionalism,loyalty to the interests of a particular region
+65589,register,a book in which names and transactions are listed
+65590,register,(music) the timbre that is characteristic of a certain range and manner of production of the human voice or of different pipe organ stops or of different musical instruments
+65591,register,(computer science) memory device that is the part of computer memory that has a specific address and that is used to hold information of a specific kind
+65592,register,an air passage (usually in the floor or a wall of a room) for admitting or excluding heated air from the room
+65593,register,a regulator (as a sliding plate) for regulating the flow of air into a furnace or other heating device
+65594,register registry,an official written record of names or events or transactions
+65595,register_language,a tone language that uses different voice registers
+65596,registered_bond,a bond whose owner is recorded on the books of the issuer; can be transferred to another owner only when endorsed by the registered owner
+65597,registered_mail registered_post,mail that is registered by the post office when sent in order to assure safe delivery
+65598,registered_nurse RN,a graduate nurse who has passed examinations for registration
+65599,registered_security,a security whose owner's name is recorded on the books of the issuer (or issuer's agent)
+65600,registrant,a person who is formally entered (along with others) in a register (and who obtains certain rights thereby)
+65601,registrar,a person employed to keep a record of the owners of stocks and bonds issued by the company
+65602,registrar,the administrator responsible for student records
+65603,registrar record-keeper recorder,someone responsible for keeping records
+65604,registration,a document certifying an act of registering
+65605,registration,(music) the sound property resulting from a combination of organ stops used to perform a particular piece of music; the technique of selecting and adjusting organ stops
+65606,registration enrollment,the body of people (such as students) who register or enroll at the same time
+65607,registration enrollment enrolment,the act of enrolling
+65608,registration_fire,fire delivered to obtain accurate data for subsequent effective engagement of targets
+65609,regnellidium Regnellidium_diphyllum,small latex-containing aquatic fern of southern Brazil
+65610,regosol,a type of soil consisting of unconsolidated material from freshly deposited alluvium or sand
+65611,regress reasoning_backward,the reasoning involved when you assume the conclusion is true and reason backward to the evidence
+65612,regression,(psychiatry) a defense mechanism in which you flee from reality by assuming a more infantile state
+65613,regression regress reversion retrogression retroversion,returning to a former state
+65614,regression simple_regression regression_toward_the_mean statistical_regression,the relation between selected values of x and observed values of y (from which the most probable value of y can be predicted for any value of x)
+65615,regression_analysis,the use of regression to make quantitative predictions of one variable from the values of another
+65616,regression_coefficient,when the regression line is linear (y = ax + b) the regression coefficient is the constant (a) that represents the rate of change of one variable (y) as a function of changes in the other (x); it is the slope of the regression line
+65617,regression_equation regression_of_y_on_x,the equation representing the relation between selected values of one variable (x) and observed values of the other (y); it permits the prediction of the most probable values of y
+65618,regression_line regression_curve,a smooth curve fitted to the set of paired data in regression analysis; for linear regression the curve is a straight line
+65619,regular,a soldier in the regular army
+65620,regular,a dependable follower (especially in party politics); "he is one of the party regulars"
+65621,regular,a garment size for persons of average height and weight
+65622,regular habitue fixture,a regular patron; "an habitue of the racetrack"; "a bum who is a Central Park fixture"
+65623,regular_dodecahedron,a dodecahedron with twelve regular pentagons as faces
+65624,regular_hexagon,a hexagon with six sides of equal length
+65625,regular_icosahedron,an icosahedron with twenty equilateral triangles as faces
+65626,regular_octahedron,an octahedron with eight equilateral triangles as faces
+65627,regular_payment,a payment made at regular times
+65628,regular_polygon,a polygon with all sides and all angles equal
+65629,regular_polyhedron regular_convex_solid regular_convex_polyhedron Platonic_body Platonic_solid ideal_solid,any one of five solids whose faces are congruent regular polygons and whose polyhedral angles are all congruent
+65630,regular_tetrahedron,a tetrahedron with four equilateral triangular faces
+65631,regularity,the quality of being characterized by a fixed principle or rate; "he was famous for the regularity of his habits"
+65632,regularity geometrical_regularity,a property of polygons: the property of having equal sides and equal angles
+65633,regularization regularisation,the condition of having been made regular (or more regular)
+65634,regulation,the state of being controlled or governed
+65635,regulation,(embryology) the ability of an early embryo to continue normal development after its structure has been somehow damaged or altered
+65636,regulation ordinance,an authoritative rule
+65637,regulation regularization regularisation,the act of bringing to uniformity; making regular
+65638,regulation regulating,the act of controlling or directing according to rule; "fiscal regulations are in the hands of politicians"
+65639,regulation_time,(sports) the normal prescribed duration of a game; "the game was finished in regulation time"
+65640,regulator,an official responsible for control and supervision of a particular activity or area of public interest
+65641,regulator,any of various controls or devices for regulating or controlling fluid flow, pressure, temperature, etc.
+65642,regulatory_agency regulatory_authority,a governmental agency that regulates businesses in the public interest
+65643,regulatory_gene regulator_gene,a gene that produces a repressor substance that inhibits an operator gene
+65644,regur regur_soil,a rich black loam of India
+65645,regurgitation,backflow of blood through a defective heart valve
+65646,regurgitation,recall after rote memorization; "he complained that school was just memorization and regurgitation"
+65647,rehabilitation,vindication of a person's character and the re-establishment of that person's reputation
+65648,rehabilitation,the treatment of physical disabilities by massage and electrotherapy and exercises
+65649,rehabilitation,the restoration of someone to a useful place in society
+65650,rehabilitation_program,a program for restoring someone to good health
+65651,reharmonization reharmonisation,a piece of music whose original harmony has been revised
+65652,rehash,old material that is slightly reworked and used again; "merely a dull rehash of his first novel"
+65653,rehearsal,(psychology) a form of practice; repetition of information (silently or aloud) in order to keep it in short-term memory
+65654,rehearsal dry_run,a practice session in preparation for a public performance (as of a play or speech or concert); "he missed too many rehearsals"; "a rehearsal will be held the day before the wedding"
+65655,reign,a period during which something or somebody is dominant or powerful; "he was helpless under the reign of his egotism"
+65656,reign,the period during which a monarch is sovereign; "during the reign of Henry VIII"
+65657,reign sovereignty,royal authority; the dominion of a monarch
+65658,reign_of_terror,any period of brutal suppression thought to resemble the Reign of Terror in France
+65659,reimbursement,compensation paid (to someone) for damages or losses or money already spent etc.; "he received reimbursement for his travel expenses"
+65660,reimposition,imposition again
+65661,rein,any means of control; "he took up the reins of government"
+65662,rein,one of a pair of long straps (usually connected to the bit or the headpiece) used to control a horse
+65663,rein_orchid rein_orchis,any of several American wildflowers with a kidney-shaped lip
+65664,reincarnation,embodiment in a new form (especially the reappearance or a person in another form); "his reincarnation as a lion"
+65665,reincarnation,the Hindu or Buddhist doctrine that a person may be reborn successively into one of five classes of living beings (god or human or animal or hungry ghost or denizen of Hell) depending on the person's own actions
+65666,reincarnation rebirth renascence,a second or new birth
+65667,reincarnationism,a doctrine that on the death of the body the soul migrates to or is born again in another body
+65668,reindeer_moss reindeer_lichen arctic_moss Cladonia_rangiferina,an erect greyish branching lichen of Arctic and even some north temperate regions constituting the chief food for reindeer and caribou and sometimes being eaten by humans
+65669,reinforced_concrete ferroconcrete,concrete with metal and/or mesh added to provide extra support against stresses
+65670,reinforcement reenforcement,information that makes more forcible or convincing; "his gestures provided eloquent reinforcement for his complaints"
+65671,reinforcing_stimulus reinforcer reinforcement,(psychology) a stimulus that strengthens or weakens the behavior that produced it
+65672,reinstatement,the condition of being reinstated; "her reinstatement to her former office followed quickly"
+65673,reinstatement,the act of restoring someone to a previous position; "we insisted on the reinstatement of the colonel"
+65674,reinsurance,sharing the risk by insurance companies; part or all of the insurer's risk is assumed by other companies in return for part of the premium paid by the insured; "reinsurance enables a client to get coverage that would be too great for any one company to assume"
+65675,reinterpretation,a new or different meaning
+65676,reinterpretation,a new or different interpretation
+65677,reintroduction,an act of renewed introduction
+65678,reissue reprint reprinting,a publication (such as a book) that is reprinted without changes or editing and offered again for sale
+65679,rejection,the state of being rejected
+65680,rejection,(medicine) an immunological response that refuses to accept substances or organisms that are recognized as foreign; "rejection of the transplanted liver"
+65681,rejection,the speech act of rejecting
+65682,rejection,the act of rejecting something; "his proposals were met with rejection"
+65683,rejoicing,a feeling of great happiness
+65684,rejoinder,(law) a pleading made by a defendant in response to the plaintiff's replication
+65685,rejoinder retort return riposte replication comeback counter,a quick reply to a question or remark (especially a witty or critical one); "it brought a sharp rejoinder from the teacher"
+65686,rejuvenation,the act of restoring to a more youthful condition
+65687,rejuvenation greening,the phenomenon of vitality and freshness being restored; "the annual rejuvenation of the landscape"
+65688,relapsing_fever recurrent_fever,marked by recurring high fever and transmitted by the bite of infected lice or ticks; characterized by episodes of high fever and chills and headache and muscle pain and nausea that recur every week or ten days for several months
+65689,relatedness,a particular manner of connectedness; "the relatedness of all living things"
+65690,relation,(usually plural) mutual dealings or connections among persons or groups; "international relations"
+65691,relation,an abstraction belonging to or characteristic of two entities or parts together
+65692,relation telling recounting,an act of narration; "he was the hero according to his own relation"; "his endless recounting of the incident eventually became unbearable"
+65693,relation_back relation,(law) the principle that an act done at a later time is deemed by law to have occurred at an earlier time; "his attorney argued for the relation back of the amended complaint to the time the initial complaint was filed"
+65694,relational_adjective classifying_adjective,an adjective that classifies its noun (e.g., `a nervous disease' or `a musical instrument')
+65695,relational_database,a database in which relations between information items are explicitly specified as accessible attributes; "in a relational database the data are organized as a number of differently sized tables"
+65696,relational_database_management_system,a database management system designed to manage a relational database
+65697,relations dealings,mutual dealings or connections or communications among persons or groups
+65698,relationship,a state involving mutual dealings between people or parties or countries
+65699,relationship,a state of connectedness between people (especially an emotional connection); "he didn't want his wife to know of the relationship"
+65700,relationship human_relationship,a relation between people; (`relationship' is often used where `relation' would serve, as in `the relationship between inflation and unemployment', but the preferred usage of `relationship' is for human relations or states of relatedness); "the relationship between mothers and their children"
+65701,relative congener congenator congeneric,an animal or plant that bears a relationship to another (as related by common descent or by membership in the same genus)
+65702,relative relation,a person related by blood or marriage; "police are searching for relatives of the deceased"; "he has distant relations back in New Jersey"
+65703,relative_clause,a clause introduced by a relative pronoun; "`who visits frequently' is a relative clause in the sentence `John, who visits frequently, is ill'"
+65704,relative_density,the ratio of the density of something to the density of a standard
+65705,relative_humidity,the ratio of the amount of water in the air at a given temperature to the maximum amount it could hold at that temperature; expressed as a percentage
+65706,relative_pronoun,a pronoun (as `that' or `which' or `who') that introduces a relative clause referring to some antecedent
+65707,relative_quantity,a quantity relative to some purpose
+65708,relativism,(philosophy) the philosophical doctrine that all criteria of judgment are relative to the individuals and situations involved
+65709,relativistic_mass,(physics) the mass of a body in motion relative to the observer: it is equal to the rest mass multiplied by a factor that is greater than 1 and that increases as the magnitude of the velocity increases
+65710,relativity,the quality of being relative and having significance only in relation to something else
+65711,relativity theory_of_relativity relativity_theory Einstein's_theory_of_relativity,(physics) the theory that space and time are relative concepts rather than absolute concepts
+65712,relatum,a term in a proposition that is related to the referent of the proposition
+65713,relaxant,a drug that relaxes and relieves tension
+65714,relaxation,(physiology) the gradual lengthening of inactive muscle or muscle fibers
+65715,relaxation loosening slackening,an occurrence of control or strength weakening; "the relaxation of requirements"; "the loosening of his grip"; "the slackening of the wind"
+65716,relaxation relaxation_behavior,(physics) the exponential return of a system to equilibrium after a disturbance
+65717,relaxation relaxation_method,a method of solving simultaneous equations by guessing a solution and then reducing the errors that result by successive approximations until all the errors are less than some specified amount
+65718,relaxation_time,the time constant of an exponential return of a system to equilibrium after a disturbance
+65719,relaxer,any agent that produces relaxation; "music is a good relaxer"
+65720,relaxin,hormone secreted by the corpus luteum during the last days of pregnancy; relaxes the pelvic ligaments and prepares the uterus for labor
+65721,relay,a crew of workers who relieve another crew
+65722,relay,a fresh team to relieve weary draft animals
+65723,relay,the act of passing something along from one person or group to another; "the relay was successful"
+65724,relay electrical_relay,electrical device such that current flowing through it in one circuit can switch on and off a current in a second circuit
+65725,relay relay_race,a race between teams; each member runs or swims part of the distance
+65726,release,a process that liberates or discharges something; "there was a sudden release of oxygen"; "the release of iodine from the thyroid gland"
+65727,release,merchandise issued for sale or public showing (especially a record or film); "a new release from the London Symphony Orchestra"
+65728,release button,a device that when pressed will release part of a mechanism
+65729,release outlet vent,activity that frees or expresses creative energy or emotion; "she had no other outlet for her feelings"; "he gave vent to his anger"
+65730,release tone_ending,(music) the act or manner of terminating a musical phrase or tone
+65731,release waiver discharge,a formal written statement of relinquishment
+65732,releasing_factor releasing_hormone RF,a substance produced by the hypothalamus that is capable of accelerating the secretion of a given hormone by the anterior pituitary gland
+65733,releasing_hormone RH releasing_factor hypothalamic_releasing_hormone hypothalamic_releasing_factor,any of several hormones produced in the hypothalamus and carried by a vein to the anterior pituitary gland where they stimulate the release of anterior pituitary hormones; each of these hormones causes the anterior pituitary to secrete a specific hormone
+65734,relegation,the act of assigning (someone or something) to a particular class or category
+65735,relegation,mild banishment; consignment to an inferior position; "he has been relegated to a post in Siberia"
+65736,relentlessness inexorability inexorableness,mercilessness characterized by an unwillingness to relent or let up; "the relentlessness or their pursuit"
+65737,relevance relevancy,the relation of something to the matter at hand
+65738,reliance,the state of relying on something
+65739,reliance trust,certainty based on past experience; "he wrote the paper with considerable reliance on the work of other scientists"; "he put more trust in his own two legs than in the gun"
+65740,relic,an antiquity that has survived from the distant past
+65741,relict,an organism or species surviving as a remnant of an otherwise extinct flora or fauna in an environment much changed from that in which it originated
+65742,relict,geological feature that is a remnant of a pre-existing formation after other parts have disappeared
+65743,relief,(law) redress awarded by a court; "was the relief supposed to be protection from future harm or compensation for past injury?"
+65744,relief,aid for the aged or indigent or handicapped; "he has been on relief for many years"
+65745,relief,the act of freeing a city or town that has been besieged; "he asked for troops for the relief of Atlanta"
+65746,relief alleviation assuagement,the feeling that comes when something burdensome is removed or reduced; "as he heard the news he was suddenly flooded with relief"
+65747,relief ease,the condition of being comfortable or relieved (especially after being relieved of distress); "he enjoyed his relief from responsibility"; "getting it off his conscience gave him some ease"
+65748,relief relievo rilievo embossment sculptural_relief,sculpture consisting of shapes carved on a surface so as to stand out from the surrounding background
+65749,relief succor succour ministration,assistance in time of difficulty; "the contributions provided some relief for the victims"
+65750,relief_printing letterpress,printing from a plate with raised characters
+65751,reliever allayer comforter,a person who reduces the intensity (e.g., of fears) and calms and pacifies; "a reliever of anxiety"; "an allayer of fears"
+65752,reliever relief_pitcher fireman,a pitcher who does not start the game
+65753,religion faith organized_religion,an institution to express belief in a divine power; "he was raised in the Baptist religion"; "a member of his own faith contradicted him"
+65754,religion faith religious_belief,a strong belief in a supernatural power or powers that control human destiny; "he lost his faith but not his morality"
+65755,religionism,exaggerated religious zealotry
+65756,religionist,a person addicted to religion or a religious zealot
+65757,religiosity religionism religiousism pietism,exaggerated or affected piety and religious zeal
+65758,religious,a member of a religious order who is bound by vows of poverty and chastity and obedience
+65759,religious_ceremony religious_ritual,a ceremony having religious meaning
+65760,religious_doctrine church_doctrine gospel creed,the written body of teachings of a religious group that are generally accepted by that group
+65761,religious_festival church_festival,a festival having religious significance
+65762,religious_holiday holy_day,a day specified for religious observance
+65763,religious_leader,leader of a religious order
+65764,religious_movement,a movement intended to bring about religious reforms
+65765,religious_music church_music,genre of music composed for performance as part of religious ceremonies
+65766,religious_orientation,an attitude toward religion or religious practices
+65767,religious_person,a person who manifests devotion to a deity
+65768,religious_residence cloister,residence that is a place of religious seclusion (such as a monastery)
+65769,religious_right,United States political faction that advocates social and political conservativism, school prayer, and federal aid for religious groups and schools
+65770,religious_school,a school run by a religious body
+65771,religious_song,religious music for singing
+65772,religious_trance ecstatic_state,a trance induced by intense religious devotion; does not show reduced bodily functions that are typical of other trances
+65773,religiousness,the quality of being extremely conscientious; "his care in observing the rules of good health amounted to a kind of religiousness"
+65774,relinquishment relinquishing,a verbal act of renouncing a claim or right or position etc.
+65775,relinquishment relinquishing,the act of giving up and abandoning a struggle or task etc.
+65776,reliquary,a container where religious relics are stored or displayed (especially relics of saints)
+65777,relish,spicy or savory condiment
+65778,relish flavor flavour sapidity savor savour smack nip tang,the taste experience when a savoury condiment is taken into the mouth
+65779,relistening rehearing,the act of hearing again
+65780,reliving re-experiencing,a recurrence of a prior experience; "the reliving of a strong emotion can be therapeutic"
+65781,relocatable_program,a program that can be located in different parts of memory at different times
+65782,reluctance,(physics) opposition to magnetic flux (analogous to electric resistance)
+65783,reluctance hesitancy hesitation disinclination indisposition,a certain degree of unwillingness; "a reluctance to commit himself"; "his hesitancy revealed his basic indisposition"; "after some hesitation he agreed"
+65784,reluctivity,(physics) the resistance of a material to the establishment of a magnetic field in it
+65785,rem,(roentgen equivalent man) the dosage of ionizing radiation that will cause the same amount of injury to human tissue as 1 roentgen of X-rays
+65786,remainder,the part of the dividend that is left over when the dividend is not evenly divisible by the divisor
+65787,remainder balance residual residue residuum rest,something left after other parts have been taken away; "there was no remainder"; "he threw away the rest"; "he took what he wanted and I got the balance"
+65788,remainder difference,the number that remains after subtraction; the number that when added to the subtrahend gives the minuend
+65789,remains,any object that is left unused or still extant; "I threw out the remains of my dinner"
+65790,remake remaking,creation that is created again or anew; "it is a remake of an old film"
+65791,remand,the act of sending an accused person back into custody to await trial (or the continuation of the trial)
+65792,remark,explicit notice; "it passed without remark"
+65793,remark comment input,a statement that expresses a personal opinion or belief or adds information; "from time to time she contributed a personal comment on his account"; "we would appreciate input from our users on how we can improve our software"
+65794,remarriage,the act of marrying again
+65795,remedy curative cure therapeutic,a medicine or therapy that cures disease or relieve pain
+65796,remembrance recollection anamnesis,the ability to recall past occurrences
+65797,remilitarization remilitarisation,the act of militarizing again
+65798,reminder,a message that helps you remember something; "he ignored his wife's reminders"
+65799,reminder,an experience that causes you to remember something
+65800,reminiscence,a mental impression retained and recalled from the past
+65801,remise,an expensive or high-class hackney
+65802,remise,(fencing) a second thrust made on the same lunge (as when your opponent fails to riposte)
+65803,remission remitment remit,(law) the act of remitting (especially the referral of a law case to another court)
+65804,remission remittal subsidence,an abatement in intensity or degree (as in the manifestations of a disease); "his cancer is in remission"
+65805,remit,the topic that a person, committee, or piece of research is expected to deal with or has authority to deal with; "they set up a group with a remit to suggest ways for strengthening family life"
+65806,remittance remittal remission remitment,a payment of money sent to a person in another place
+65807,remittance_man,an exile living on money sent from home
+65808,remora suckerfish sucking_fish,marine fishes with a flattened elongated body and a sucking disk on the head for attaching to large fish or moving objects
+65809,remote-control_bomb,a bomb that can be detonated by remote control
+65810,remote_control remote,a device that can be used to control a machine or apparatus from a distance; "he lost the remote for his TV"
+65811,remote_terminal link-attached_terminal remote_station link-attached_station,a terminal connected to a computer by a data link
+65812,remoulade_sauce,a mayonnaise sauce flavored with herbs and mustard and capers; served with e.g. salad and cold meat
+65813,remount,a fresh horse especially (formerly) to replace one killed or injured in battle
+65814,removable_disk,a hard disk that can be removed from the disk drive; removal prevents unauthorized use
+65815,removal,dismissal from office
+65816,removal remotion,the act of removing; "he had surgery for the removal of a malignancy"
+65817,remove,degree of figurative distance or separation; "just one remove from madness"; "it imitates at many removes a Shakespearean tragedy"
+65818,remover,a solvent that removes a substance (usually from a surface); "paint remover"; "rust remover"; "hair remover"
+65819,remover,someone who works for a company that moves furniture
+65820,remuda,the herd of horses from which those to be used the next day are chosen
+65821,remuneration,the act of paying for goods or services or to recompense for losses; "adequate remuneration for his work"
+65822,renal_artery arteria_renalis,an artery originating from the abdominal aorta and supplying the kidneys and adrenal glands and ureters
+65823,renal_colic,sharp pain in the lower back that radiates into the groin; associated with the passage of a renal calculus through the ureter
+65824,renal_cortex,the cortex of the kidney containing the glomeruli and the convoluted tubules
+65825,renal_failure kidney_failure,inability of the kidneys to excrete wastes and to help maintain the electrolyte balance
+65826,renal_insufficiency,insufficient excretion of wastes by the kidneys
+65827,renal_vein vena_renalis,veins that accompany renal arteries; open into the vena cava at the level of the 2nd lumbar vertebra
+65828,render,a substance similar to stucco but exclusively applied to masonry walls
+65829,rendering,a coat of stucco applied to a masonry wall
+65830,rendering,perspective drawing of an architect's design
+65831,rendering,giving in acknowledgment of obligation
+65832,rendezvous,a place where people meet; "he was waiting for them at the rendezvous"
+65833,rendezvous,a meeting planned at a certain time and place
+65834,rendition,handing over prisoners to the country in which a crime was committed
+65835,rendition rendering,a performance of a musical composition or a dramatic role etc.; "they heard a live rendition of three pieces by Schubert"
+65836,rendition rendering interpretation,the act of interpreting something as expressed in an artistic performance; "her rendition of Milton's verse was extraordinarily moving"
+65837,renegade,someone who rebels and becomes an outlaw
+65838,renewable_resource,any natural resource (as wood or solar energy) that can be replenished naturally with the passage of time
+65839,renewal,the act of renewing
+65840,reniform_leaf,a simple kidney-shaped leaf
+65841,renin,a proteolytic enzyme secreted by the kidneys; catalyzes the formation of angiotensin and thus affects blood pressure
+65842,rennet,a substance that curdles milk in making cheese and junket
+65843,rennin chymosin,an enzyme that occurs in gastric juice; causes milk to coagulate
+65844,renovation redevelopment overhaul,the act of improving by renewing and restoring; "they are pursuing a general program of renovation to the entire property"; "a major overhaul of the healthcare system was proposed"
+65845,renovation restoration refurbishment,the state of being restored to its former good condition; "the inn was a renovation of a Colonial house"
+65846,rensselaerite,a kind of soft talc; sometimes used as wood filler
+65847,rent,a payment or series of payments made by the lessee to an owner for use of some property, facility, equipment, or service
+65848,rent rip split,the act of rending or ripping or splitting something; "he gave the envelope a vigorous rip"
+65849,rent-rebate,a rebate on rent given by a local government authority
+65850,rent-roll,a register of rents; includes the names of tenants and the amount of rent they pay
+65851,rent_collector,a person who goes from house to house collecting rents for the owner
+65852,rent_seeking rent-seeking,(economics) the theory that a person or firm seeks to make money by manipulating the economic environment rather than by making a profit through production or trade
+65853,rental renting,the act of paying for the use of something (as an apartment or house or car)
+65854,rental_collection,a collection of books that can be rented by readers in return for a small daily fee
+65855,rental_income,income received from rental properties
+65856,renter,an owner of property who receives payment for its use by another person
+65857,rentier,someone whose income is from property rents or bond interest and other investments
+65858,renunciation forgoing forswearing,the act of renouncing; sacrificing or giving up or surrendering (a possession or right or title or privilege etc.)
+65859,renunciation renouncement,an act (spoken or written) declaring that something is surrendered or disowned
+65860,reorder,a repeated order for the same merchandise; "he's the one who sends out all the new orders and reorders"
+65861,reordering,a rearrangement in a different order
+65862,reorganization,an extensive alteration of the structure of a corporation or government; "after the takeover there was a thorough reorganization"; "the reorganization was prescribed by federal bankruptcy laws"
+65863,reorganization reorganisation shake-up shakeup,the imposition of a new organization; organizing differently (often involving extensive and drastic changes); "a committee was appointed to oversee the reorganization of the curriculum"; "top officials were forced out in the cabinet shakeup"
+65864,reorientation,a fresh orientation; a changed set of attitudes and beliefs
+65865,reovirus,any of a group of non-arboviruses including the rotavirus causing infant enteritis
+65866,rep,informal abbreviation of `representative'
+65867,rep repp,a fabric with prominent rounded crosswise ribs
+65868,repair,a formal way of referring to the condition of something; "the building was in good repair"
+65869,repair fix fixing fixture mend mending reparation,the act of putting something in working order again
+65870,repair_shop fix-it_shop,a shop specializing in repairs and maintenance
+65871,repairman maintenance_man service_man,a skilled worker whose job is to repair things
+65872,reparation,compensation (given or received) for an insult or injury; "an act for which there is no reparation"
+65873,reparation,(usually plural) compensation exacted from a defeated nation by the victors; "Germany was unable to pay the reparations demanded after World War I"
+65874,reparation amends,something done or paid in expiation of a wrong; "how can I make amends"
+65875,repartee,adroitness and cleverness in reply
+65876,repatriate,a person who has returned to the country of origin or whose citizenship has been restored
+65877,repatriation,the act of returning to the country of origin
+65878,repayment quittance,payment of a debt or obligation
+65879,repeat repetition,an event that repeats; "the events today were a repeat of yesterday's"
+65880,repeater,a person who repeats; "the audience consisted largely of repeaters who had seen the movie many times"
+65881,repeater,(electronics) electronic device that amplifies a signal before transmitting it again; "repeaters can be used in computer networks to extend cabling distances"
+65882,repeating_firearm repeater,a firearm that can fire several rounds without reloading
+65883,repechage,a race (especially in rowing) in which runners-up in the eliminating heats compete for a place in the final race
+65884,repellent repellant,a compound with which fabrics are treated to repel water
+65885,repellent repellant,a chemical substance that repels animals
+65886,repellent repellant,the power to repel; "she knew many repellents to his advances"
+65887,repentance penitence penance,remorse for your past conduct
+65888,repercussion reverberation,a remote or indirect consequence of some action; "his declaration had unforeseen repercussions"; "reverberations of the market crash were felt years later"
+65889,repertoire repertory,a collection of works (plays, songs, operas, ballets) that an artist or company can perform and do perform for short intervals on a regular schedule
+65890,repertory,a storehouse where a stock of things is kept
+65891,repertory repertoire,the entire range of skills or aptitudes or devices used in a particular field or occupation; "the repertory of the supposed feats of mesmerism"; "has a large repertory of dialects and characters"
+65892,repetition,the repeated use of the same word or word pattern as a rhetorical device
+65893,repetition repeating,the act of doing or performing again
+65894,repetitiveness repetitiousness,verboseness resulting from excessive repetitions
+65895,replaceability substitutability commutability,exchangeability by virtue of being replaceable
+65896,replacement replacing,the act of furnishing an equivalent person or thing in the place of another; "replacing the star will not be easy"
+65897,replacement_cost,current cost of replacing a fixed asset with a new one of equal effectiveness
+65898,replay instant_replay action_replay,the immediate rebroadcast of some action (especially sports action) that has been recorded on videotape
+65899,replay rematch,something (especially a game) that is played again
+65900,repletion satiety satiation,the state of being satisfactorily full and unable to take on more
+65901,repletion surfeit,eating until excessively full
+65902,replica replication reproduction,copy that is not the original; something that has been copied
+65903,replication,(genetics) the process whereby DNA makes a copy of itself before cell division
+65904,replication,(law) a pleading made by a plaintiff in reply to the defendant's plea or answer
+65905,replication,the repetition of an experiment in order to test the validity of its conclusion; "scientists will not believe an experimental result until they have seen at least one replication"
+65906,reply response,the speech act of continuing a conversational exchange; "he growled his reply"
+65907,report,a sharp explosive sound (especially the sound of a gun firing); "they heard a violent report followed by silence"
+65908,report account,the act of informing by verbal report; "he heard reports that they were causing trouble"; "by all accounts they were a happy couple"
+65909,report news_report story account write_up,a short account of the news; "the report of his speech"; "the story was on the 11 o'clock news"; "the account of his speech that was given on the evening news made the governor furious"
+65910,report study written_report,a written document describing the findings of some individual or group; "this accords with the recent study by Hill and Dale"
+65911,report_card report,a written evaluation of a student's scholarship and deportment; "his father signed his report card"
+65912,reporter newsman newsperson,a person who investigates and reports or edits news stories
+65913,reporting_weight,a person's body weight (as an athlete's) at the beginning of the season (when first reporting for practice)
+65914,repose quiet placidity serenity tranquillity tranquility,a disposition free from stress or emotion
+65915,repositing reposition storage warehousing,depositing in a warehouse; "they decided to reposition their furniture in a recommended repository in Brooklyn"; "my car is in storage"; "publishers reduced print runs to cut down the cost of warehousing"
+65916,repositioning,the act of placing in a new position
+65917,repository monument,a burial vault (usually for some famous person)
+65918,repository secretary,a person to whom a secret is entrusted
+65919,repossession,the action of regaining possession (especially the seizure of collateral securing a loan that is in default)
+65920,reprehensibility,being reprehensible; worthy of and deserving reprehension or reproof
+65921,representation,a body of legislators that serve in behalf of some constituency; "a Congressional vacancy occurred in the representation from California"
+65922,representation,a factual statement made by one party in order to induce another party to enter into a contract; "the sales contract contains several representations by the vendor"
+65923,representation,a statement of facts and reasons made in appealing or protesting; "certain representations were made concerning police brutality"
+65924,representation,the right of being represented by delegates who have a voice in some legislative body
+65925,representation,a creation that is a visual or tangible rendering of someone or something
+65926,representation,the act of representing; standing in for someone or some group and speaking with authority in their behalf
+65927,representation,an activity that stands as an equivalent of something or results in an equivalent
+65928,representation delegacy agency,the state of serving as an official and authorized delegate or agent
+65929,representation mental_representation internal_representation,a presentation to the mind in the form of an idea or image
+65930,representational_process,any basic cognitive process in which some entity comes to stand for or represent something else
+65931,representative,a person who represents others
+65932,repression,a state of forcible subjugation; "the long repression of Christian sects"
+65933,repression,(psychiatry) the classical defense mechanism that protects you from impulses or ideas that would cause anxiety by preventing them from becoming conscious
+65934,repression,the act of repressing; control by holding down; "his goal was the repression of insolence"
+65935,repressor represser,an agent that represses
+65936,repressor_gene,gene that prevents a nonallele from being transcribed
+65937,reprieve,a warrant granting postponement (usually to postpone the execution of the death sentence)
+65938,reprieve respite,a (temporary) relief from harm or discomfort
+65939,reprieve respite,the act of reprieving; postponing or remitting punishment
+65940,reprisal,a retaliatory action against an enemy in wartime
+65941,reproach,disgrace or shame; "he brought reproach upon his family"
+65942,reproach,a mild rebuke or criticism; "words of reproach"
+65943,reprobate miscreant,a person without moral scruples
+65944,reprobation,rejection by God; the state of being condemned to eternal misery in Hell
+65945,reprobation,severe disapproval
+65946,reproducer,an audio system that can reproduce and amplify signals to produce sound
+65947,reproducibility duplicability,the quality of being reproducible
+65948,reproduction,the process of generating offspring
+65949,reproduction procreation breeding facts_of_life,the sexual activity of conceiving and bearing offspring
+65950,reproduction replication,the act of making copies; "Gutenberg's reproduction of holy texts was far more efficient"
+65951,reproduction reproductive_memory,recall that is hypothesized to work by storing the original stimulus input and reproducing it during recall
+65952,reproduction_cost physical_value,cost of reproducing physical property minus various allowances (especially depreciation)
+65953,reproductive_cell germ_cell sex_cell,a spermatozoon or an ovum; a cell responsible for transmitting DNA to the next generation
+65954,reproductive_cloning,making a full living copy of an organism; requires a surrogate mother
+65955,reproductive_organ sex_organ,any organ involved in sexual reproduction
+65956,reproductive_structure,the parts of a plant involved in its reproduction
+65957,reproductive_system genital_system,organs and tissues involved in the production and maturation of gametes and in their union and subsequent development as offspring
+65958,reptile reptilian,any cold-blooded vertebrate of the class Reptilia including tortoises, turtles, snakes, lizards, alligators, crocodiles, and extinct forms
+65959,reptile_family,a family of reptiles
+65960,reptile_genus,a genus of reptiles
+65961,republic,a form of government whose head of state is not a monarch; "the head of state in a republic is usually a president"
+65962,republican,an advocate of a republic (usually in opposition to a monarchy)
+65963,republicanism,the political orientation of those who hold that a republic is the best form of government
+65964,republication,something that has been published again; a fresh publication (as of a literary work)
+65965,republication republishing,the act of publishing again
+65966,repudiation,refusal to acknowledge or pay a debt or honor a contract (especially by public authorities); "the repudiation of the debt by the city"
+65967,repudiation debunking,the exposure of falseness or pretensions; "the debunking of religion has been too successful"
+65968,repudiation renunciation,rejecting or disowning or disclaiming as invalid; "Congressional repudiation of the treaty that the President had negotiated"
+65969,repugnance repulsion revulsion horror,intense aversion
+65970,repulsion repulsive_force,the force by which bodies repel one another
+65971,repulsion standoff,the act of repulsing or repelling an attack; a successful defensive stand
+65972,reputation,notoriety for some particular characteristic; "his reputation for promiscuity"
+65973,reputation report,the general estimation that the public has for a person; "he acquired a reputation as an actor before he started writing"; "he was a person of bad report"
+65974,repute reputation,the state of being held in high esteem and honor
+65975,request asking,the verbal act of requesting
+65976,request petition postulation,a formal message requesting something that is submitted to an authority
+65977,requiem_shark,any of numerous sharks from small relatively harmless bottom-dwellers to large dangerous oceanic and coastal species
+65978,requiescat,a prayer for the repose of the soul of a dead person
+65979,required_course,a course that all students are required to take
+65980,requirement demand,required activity; "the requirements of his work affected his health"; "there were many demands on his time"
+65981,requirements_contract,a contract in which you agree to purchase all your requirements of a particular sort from one party
+65982,requisiteness,the state of being absolutely required
+65983,requisition,the act of requiring; an authoritative request or demand, especially by a military or public authority that takes something over (usually temporarily) for military or public use
+65984,requisition requisition_form,an official form on which a request in made; "first you have to fill out the requisition"
+65985,requital payment,an act of requiting; returning in kind
+65986,rerebrace upper_cannon,cannon that provides plate armor for the upper arm
+65987,rerun,a program that is broadcast again; "she likes to watch `I love Lucy' reruns"
+65988,res_gestae,rule of evidence that covers words that are so closely associated with an occurrence that the words are considered part of the occurrence and as such their report does not violate the hearsay rule
+65989,res_gestae,things done
+65990,res_ipsa_loquitur,a rule of evidence whereby the negligence of an alleged wrongdoer can be inferred from the fact that the accident happened
+65991,res_judicata res_adjudicata,a matter already settled in court; cannot be raised again
+65992,resale,the selling of something purchased
+65993,rescript,a reply by a Pope to an inquiry concerning a point of law or morality
+65994,rescue deliverance delivery saving,recovery or preservation from loss or danger; "work is the deliverance of mankind"; "a surgeon's job is the saving of lives"
+65995,rescue_equipment,equipment used to rescue passengers in case of emergency
+65996,rescue_operation,an operation organized to free from danger or confinement
+65997,rescue_party,a party of rescuers
+65998,rescuer recoverer saver,someone who saves something from danger or violence
+65999,research,systematic investigation to establish facts
+66000,research_center research_facility,a center where research is done
+66001,research_colloquium,a colloquium at which the results of (scientific) research are reported
+66002,research_director director_of_research,a supervisor in a research center
+66003,research_staff,a group of associated research workers in a university or library or laboratory
+66004,research_worker researcher investigator,a scientist who devotes himself to doing research
+66005,reseau,a net or mesh foundation for lace
+66006,reseau,a network of fine lines used by astronomers as a reference for measurements on star photographs
+66007,resection,surgical removal of part of a structure or organ
+66008,reseda,any plant of the genus Reseda
+66009,resemblance,similarity in appearance or external or superficial details
+66010,resentment bitterness gall rancor rancour,a feeling of deep and bitter anger and ill-will
+66011,reserpine Raudixin Rau-Sed Sandril Serpasil,antihypertensive consisting of an alkaloid extracted from the plant Rauwolfia serpentina (trade names Raudixin or Rau-Sed or Sandril or Serpasil)
+66012,reservation,the written record or promise of an arrangement by which accommodations are secured in advance
+66013,reservation,something reserved in advance (as a hotel accommodation or a seat on a plane etc.)
+66014,reservation,the act of keeping back or setting aside for some future occasion
+66015,reservation qualification,a statement that limits or restricts some claim; "he recommended her without any reservations"
+66016,reservation reserve,a district that is reserved for particular purpose
+66017,reserve,(medicine) potential capacity to respond in order to maintain vital functions
+66018,reserve backlog stockpile,something kept back or saved for future use or a special purpose
+66019,reserve reticence taciturnity,the trait of being uncommunicative; not volunteering anything more than necessary
+66020,reserve_account reserve_fund,funds taken out of earnings to provide for anticipated future payments
+66021,reserve_assets,capital held back from investment in order to meet probable or possible demands
+66022,reserve_clause,a clause that used to be part of the contract with a professional athlete extending the contract for a year beyond its expiration; "the reserve clause was used to bind players to a particular ball club"
+66023,reservist,a member of a military reserve
+66024,reservoir,a large or extra supply of something; "a reservoir of talent"
+66025,reservoir,tank used for collecting and storing a liquid (as water or oil)
+66026,reservoir artificial_lake man-made_lake,lake used to store water for community use
+66027,reservoir source,anything (a person or animal or plant or substance) in which an infectious agent normally lives and multiplies; "an infectious agent depends on a reservoir for its survival"
+66028,reset,device for resetting instruments or controls
+66029,reset_button,a push button that you press to activate the reset mechanism
+66030,resettlement relocation,the transportation of people (as a family or colony) to a new settlement (as after an upheaval of some kind)
+66031,resh,the 20th letter of the Hebrew alphabet
+66032,reshipment,the act of shipping again (especially by transferring to another ship)
+66033,reshuffle,a redistribution of something; "there was a reshuffle of cabinet officers"
+66034,reshuffle reshuffling,shuffling again; "the gambler demanded a reshuffle"
+66035,residence,the official house or establishment of an important person (as a sovereign or president); "he refused to live in the governor's residence"
+66036,residence abode,any address at which you dwell more than temporarily; "a person can have several residences"
+66037,residence_time,the period of time spent in a particular place
+66038,residency,the position of physician who is receiving special training in a hospital (usually after completing an internship)
+66039,residency residence abidance,the act of dwelling in a place
+66040,resident occupant occupier,someone who lives at a particular place for a prolonged period or who was born there
+66041,resident_commissioner,the representative of Puerto Rico in the United States House of Representatives
+66042,residential_district residential_area community,a district where people live; occupied primarily by private residences
+66043,residual,(often plural) a payment that is made to a performer or writer or director of a television show or commercial that is paid for every repeat showing; "he could retire on his residuals"
+66044,residual_oil resid,oil products that remain after petroleum has been distilled
+66045,residual_soil residual_clay,the soil that is remaining after the soluble elements have been dissolved
+66046,residue,matter that remains after something has been removed
+66047,resignation,the act of giving up (a claim or office or possession etc.)
+66048,resignation,a formal document giving notice of your intention to resign; "he submitted his resignation as of next month"
+66049,resignation surrender,acceptance of despair
+66050,resilience resiliency,an occurrence of rebounding or springing back
+66051,resilience resiliency,the physical property of a material that can return to its original shape or position after deformation that does not exceed its elastic limit
+66052,resin rosin,any of a class of solid or semisolid viscous substances obtained either as exudations from certain plants or prepared by polymerization of simple molecules
+66053,resinoid,a plastic containing resins
+66054,resistance,the capacity of an organism to defend itself against harmful environmental agents; "these trees are widely planted because of their resistance to salt and smog"
+66055,resistance,any mechanical force that tends to retard or oppose motion
+66056,resistance,the degree of unresponsiveness of a disease-causing microorganism to antibiotics or other drugs (as in penicillin-resistant bacteria)
+66057,resistance,(psychiatry) an unwillingness to bring repressed feelings into conscious awareness
+66058,resistance,group action in opposition to those in power
+66059,resistance,the military action of resisting the enemy's advance; "the enemy offered little resistance"
+66060,resistance opposition,the action of opposing something that you disapprove or disagree with; "he encountered a general feeling of resistance from many citizens"; "despite opposition from the newspapers he went ahead"
+66061,resistance_pyrometer,pyrometer that measures high temperatures by the resistance in a heated wire
+66062,resistance_thermometer platinum_thermometer,thermometer that measures temperature by changes in the resistance of a spiral of platinum wire
+66063,resistance_unit,the reciprocal of conductance
+66064,resisting_arrest,physical efforts to oppose a lawful arrest; the resistance is classified as assault and battery upon the person of the police officer attempting to make the arrest
+66065,resistor resistance,an electrical device that resists the flow of electrical current
+66066,resoluteness firmness firmness_of_purpose resolve resolution,the trait of being resolute; "his resoluteness carried him through the battle"; "it was his unshakeable resolution to finish the work"
+66067,resolution,(computer science) the number of pixels per square inch on a computer-generated display; the greater the resolution, the better the picture
+66068,resolution,the subsidence of swelling or other signs of inflammation (especially in a lung)
+66069,resolution,(music) a dissonant chord is followed by a consonant chord
+66070,resolution,a decision to do something or to behave in a certain manner; "he always wrote down his New Year's resolutions"
+66071,resolution declaration resolve,a formal expression by a meeting; agreed to by a vote
+66072,resolution resolving,analysis into clear-cut components
+66073,resolution solving,finding a solution to a problem
+66074,resolving_power resolution,the ability of a microscope or telescope to measure the angular separation of images that are close together
+66075,resonance,an excited state of a stable particle causing a sharp maximum in the probability of absorption of electromagnetic radiation
+66076,resonance,a vibration of large amplitude produced by a relatively small vibration near the same frequency of vibration as the natural frequency of the resonating system
+66077,resonance,the quality imparted to voiced speech sounds by the action of the resonating chambers of the throat and mouth and nasal cavities
+66078,resonator,any system that resonates
+66079,resonator cavity_resonator resonating_chamber,a hollow chamber whose dimensions allow the resonant oscillation of electromagnetic or acoustic waves
+66080,resonator resonant_circuit,an electrical circuit that combines capacitance and inductance in such a way that a periodic electric oscillation will reach maximum amplitude
+66081,resorcinol,a crystalline phenol obtained from various resins; used in ointments for acne and in dandruff shampoos
+66082,resorption reabsorption,the organic process in which the substance of some differentiated structure that has been produced by the body undergoes lysis and assimilation
+66083,resort resort_hotel holiday_resort,a hotel located in a resort area
+66084,resort_area playground vacation_spot,an area where many people go for recreation
+66085,resort_hotel spa,a fashionable hotel usually in a resort area
+66086,resource,available source of wealth; a new or reserve supply that can be drawn upon when needed
+66087,resource,a source of aid or support that may be drawn upon when needed; "the local library is a valuable resource"
+66088,resource resourcefulness imagination,the ability to deal resourcefully with unusual problems; "a man of resource"
+66089,resourcefulness,the quality of being able to cope with a difficult situation; "a man of great resourcefulness"
+66090,respect esteem regard,an attitude of admiration or esteem; "she lost all respect for him"
+66091,respect regard,(usually preceded by `in') a detail or point; "it differs in that respect"
+66092,respectability reputability,honorableness by virtue of being respectable and having a good reputation
+66093,respecter,a person who respects someone or something; usually used in the negative; "X is no respecter of Y"
+66094,respects,(often used with `pay') a formal expression of esteem; "he paid his respects to the mayor"
+66095,respiration,a single complete act of breathing in and out; "thirty respirations per minute"
+66096,respiration internal_respiration cellular_respiration,the metabolic processes whereby certain organisms obtain energy from organic molecules; processes that take place in the cells and tissues during which energy is released and carbon dioxide is produced and absorbed by the blood to be transported to the lungs
+66097,respirator inhalator,a breathing device for administering long-term artificial respiration
+66098,respiratory_acidosis carbon_dioxide_acidosis,acidosis resulting from reduced gas exchange in the lungs (as in emphysema or pneumonia); excess carbon dioxide combines with water to form carbonic acid which increases the acidity of the blood
+66099,respiratory_alkalosis,alkalosis resulting from increased gas exchange in the lungs (as in hyperventilation associated with extreme anxiety or aspirin intoxication or metabolic acidosis)
+66100,respiratory_center,the center in the medulla oblongata and pons that integrates sensory information about the level of oxygen and carbon dioxide in the blood and determines the signals to be sent to the respiratory muscles
+66101,respiratory_disease respiratory_illness respiratory_disorder,a disease affecting the respiratory system
+66102,respiratory_distress_syndrome respiratory_distress_syndrome_of_the_newborn hyaline_membrane_disease,an acute lung disease of the newborn (especially the premature newborn); lungs cannot expand because of a wetting agent is lacking; characterized by rapid shallow breathing and cyanosis and the formation of a glassy hyaline membrane over the alveoli
+66103,respiratory_organ,any organ involved in the process of respiration
+66104,respiratory_quotient,the ratio of the volume of carbon dioxide expired to the volume of oxygen consumed by an organism or cell in a given period of time
+66105,respiratory_rate rate_of_respiration,the rate at which a person inhales and exhales; usually measured to obtain a quick evaluation of a person's health
+66106,respiratory_syncytial_virus,a paramyxovirus that forms syncytia in tissue culture and that is responsible for severe respiratory diseases such as bronchiolitis and bronchial pneumonia (especially in children)
+66107,respiratory_system systema_respiratorium,the system for taking in oxygen and giving off carbon dioxide; in terrestrial animals this is accomplished by breathing
+66108,respiratory_tract airway,the passages through which air enters and leaves the body
+66109,respiratory_tract_infection respiratory_infection,any infection of the respiratory tract
+66110,respite recess break time_out,a pause from doing something (as work); "we took a 10-minute break"; "he took time out to recuperate"
+66111,respite rest relief rest_period,a pause for relaxation; "people actually accomplish more when they take time for short rests"
+66112,resplendent_quetzel resplendent_trogon Pharomacrus_mocino,very rare Central American bird; the national bird of Guatemala
+66113,respondent,the codefendant (especially in a divorce proceeding) who is accused of adultery with the corespondent
+66114,respondent responder answerer,someone who responds
+66115,response,a result; "this situation developed in response to events in Africa"
+66116,response,a phrase recited or sung by the congregation following a versicle by the priest or minister
+66117,response,the manner in which an electrical or mechanical device responds to an input signal or a range of input signals
+66118,responsibility responsibleness,a form of trustworthiness; the trait of being answerable to someone for something or being responsible for one's conduct; "he holds a position of great responsibility"
+66119,responsiveness,the quality of being responsive; reacting quickly; as a quality of people, it involves responding with emotion to people and events
+66120,responsiveness reactivity,responsive to stimulation
+66121,rest,a state of inaction; "a body will continue in a state of rest until acted upon"
+66122,rest,a musical notation indicating a silence of a specified duration
+66123,rest,a support on which things can be put; "the gun was steadied on a special rest"
+66124,rest ease repose relaxation,freedom from activity (work or strain or responsibility); "took his repose by the swimming pool"
+66125,rest eternal_rest sleep eternal_sleep quietus,euphemisms for death (based on an analogy between lying in a bed and in a tomb); "she was laid to rest beside her husband"; "they had to put their family pet to sleep"
+66126,rest-cure,rest as a medical treatment for stress or anxiety etc.
+66127,rest_day day_of_rest,a day set aside for rest
+66128,rest_energy,the energy equivalent to the mass of a particle at rest in an inertial frame of reference; equal to the rest mass times the square of the speed of light
+66129,rest_house,a building used for shelter by travelers (especially in areas where there are no hotels)
+66130,rest_mass,(physics) the mass of a body as measured when the body is at rest relative to an observer, an inherent property of the body
+66131,restatement,a revised statement
+66132,restaurant eating_house eating_place eatery,a building where people go to eat
+66133,restaurant_chain,a chain of restaurants
+66134,restaurateur restauranter,the proprietor of a restaurant
+66135,rester,a person who rests
+66136,restfulness,the attribute of being restful; "he longed for the restfulness of home"
+66137,restharrow rest-harrow Ononis_repens,European woody plant having pink flowers and unifoliate leaves and long tough roots; spreads by underground runners
+66138,restharrow rest-harrow Ononis_spinosa,Eurasian plant having loose racemes of pink or purple flowers and spiny stems and tough roots
+66139,resting_potential,the potential difference between the two sides of the membrane of a nerve cell when the cell is not conducting an impulse
+66140,resting_spore,a spore of certain algae or fungi that lies dormant; may germinate after a prolonged period
+66141,restitution,the act of restoring something to its original state
+66142,restitution return restoration regaining,getting something back again; "upon the restitution of the book to its rightful owner the child was given a tongue lashing"
+66143,restless_legs_syndrome restless_legs Ekbom_syndrome,feeling of uneasiness and restlessness in the legs after going to bed (sometimes causing insomnia); may be relieved temporarily by walking or moving the legs
+66144,restlessness,the quality of being ceaselessly moving or active; "the restlessness of the wind"
+66145,restlessness impatience,a lack of patience; irritation with anything that causes delay
+66146,restlessness uneasiness queasiness,inability to rest or relax or be still
+66147,restoration,some artifact that has been restored or reconstructed; "the restoration looked exactly like the original"
+66148,restoration,a model that represents the landscape of a former geological age or that represents and extinct animal etc.
+66149,restoration,the act of restoring something or someone to a satisfactory state
+66150,restrainer,a chemical that is added to a photographic developer in order to retard development and reduce the amount of fog on a film
+66151,restrainer controller,a person who directs and restrains
+66152,restraint,a rule or condition that limits freedom; "legal restraints"; "restraints imposed on imports"
+66153,restraint,the act of controlling by restraining someone or something; "the unlawful restraint of trade"
+66154,restraint constraint,a device that retards something's motion; "the car did not have proper restraints fitted"
+66155,restraint control,discipline in personal and social activities; "he was a model of polite restraint"; "she never lost control of herself"
+66156,restraint_of_trade,any act that tends to prevent free competition in business
+66157,restriction confinement,the act of keeping something within specified bounds (by force if necessary); "the restriction of the infection to a focal area"
+66158,restriction limitation,a principle that limits the extent of something; "I am willing to accept certain restrictions on my movements"
+66159,restriction_endonuclease restriction_nuclease restriction_enzyme,any of the enzymes that cut nucleic acid at specific restriction sites and produce restriction fragments; obtained from bacteria (where they cripple viral invaders); used in recombinant DNA technology
+66160,restriction_fragment,the fragment of DNA that is produced by cleaving DNA with a restriction enzyme
+66161,restriction_site,the specific sites at which a restriction enzyme will cleave DNA
+66162,restrictive_clause,a subordinate clause that limits or restricts the meaning of the noun phrase it modifies
+66163,restrictiveness,a grammatical qualification that makes the meaning more specific (`red hat' has a more specific meaning than `hat')
+66164,result resultant final_result outcome termination,something that results; "he listened for the results on the radio"
+66165,resultant end_point,the final point in a process
+66166,resultant_role result,the semantic role of the noun phrase whose referent exists only by virtue of the activity denoted by the verb in the clause
+66167,resulting_trust,a trust created by a court when it is judged that it was the intention of the parties to create a trust
+66168,resumption recommencement,beginning again
+66169,resurrection,a revival from inactivity and disuse; "it produced a resurrection of hope"
+66170,resurrection_plant rose_of_Jericho Selaginella_lepidophylla,densely tufted fern ally of southwestern United States to Peru; curls up in a tight ball when dry and expands and grows under moist conditions
+66171,resurvey,a new survey or study
+66172,resuscitation,the act of reviving a person and returning them to consciousness; "although he was apparently drowned, resuscitation was accomplished by artificial respiration"
+66173,resuscitator,a breathing apparatus used for resuscitation by forcing oxygen into the lungs of a person who has undergone asphyxia or arrest of respiration
+66174,resuspension,a renewed suspension of insoluble particles after they have been precipitated
+66175,retail,the selling of goods to consumers; usually in small quantities and not for resale
+66176,retail_chain,a chain of retail stores
+66177,retail_price_index,an index of changes in retail prices
+66178,retailer retail_merchant,a merchant who sells goods at retail
+66179,retailing,the activities involved in selling commodities directly to consumers
+66180,retained_object,an object in a passive construction
+66181,retainer,a dental appliance that holds teeth (or a prosthesis) in position after orthodontic treatment
+66182,retainer consideration,a fee charged in advance to retain the services of someone
+66183,retaining_wall,a wall that is built to resist lateral pressure (especially a wall built to prevent the advance of a mass of earth)
+66184,retake,a shot or scene that is photographed again
+66185,retaliation revenge,action taken in return for an injury or offense
+66186,retaliatory_eviction,an eviction in reprisal for the tenant's good-faith complaints against the landlord; illegal in many states
+66187,retardant retardent retardation,any agent that retards or delays or hinders; "flame-retardant"
+66188,retardation,the extent to which something is delayed or held back
+66189,retardation mental_retardation backwardness slowness subnormality,lack of normal development of intellectual capacities
+66190,retarded_depression,a state of clinical depression in which the individual is lethargic and slow to initiate action
+66191,rete_testis,network of tubules carrying sperm from the seminiferous tubules to the vasa efferentia
+66192,retem raetam juniper_bush juniper Retama_raetam Genista_raetam,desert shrub of Syria and Arabia having small white flowers; constitutes the juniper of the Old Testament; sometimes placed in genus Genista
+66193,retention keeping holding,the act of retaining something
+66194,retention_basin,a storage site similar to a detention basin but the water in storage is permanently obstructed from flowing downstream
+66195,retentiveness retentivity,the property of retaining possessions that have been acquired
+66196,retentiveness retentivity retention,the power of retaining liquid; "moisture retentivity of soil"
+66197,reticle reticule graticule,a network of fine lines, dots, cross hairs, or wires in the focal plane of the eyepiece of an optical instrument
+66198,reticular_activating_system RAS,the network in the reticular formation that serves an alerting or arousal function
+66199,reticular_formation RF,a complex neural network in the central core of the brainstem; monitors the state of the body and functions in such processes as arousal and sleep and attention and muscle tone
+66200,reticulated_python Python_reticulatus,of southeast Asia and East Indies; the largest snake in the world
+66201,reticulation,(photography) the formation of a network of cracks or wrinkles in a photographic emulsion
+66202,reticulation,an arrangement resembling a net or network; "the reticulation of a leaf"; "the reticulation of a photographic emulsion"
+66203,reticule,a woman's drawstring handbag; usually made of net or beading or brocade; used in 18th and 19th centuries
+66204,reticulocyte,an immature red blood cell containing a network of filaments or granules
+66205,reticuloendothelial_system RES,a widely distributed system consisting of all the cells able to ingest bacteria or colloidal particles etc, except for certain white blood cells
+66206,reticulum,any fine network (especially one in the body composed of cells or blood vessels)
+66207,reticulum second_stomach,the second compartment of the stomach of a ruminant
+66208,retina,the innermost light-sensitive membrane covering the back wall of the eyeball; it is continuous with the optic nerve
+66209,retinal_detachment detachment_of_the_retina detached_retina,visual impairment resulting from the retina becoming separated from the choroid in the back of the eye; treated by photocoagulation
+66210,retinal_scanning,biometric identification by scanning the retina of the eye; "identification by retinal scanning is complicated by eye movements"
+66211,retinene retinal,either of two yellow to red retinal pigments formed from rhodopsin by the action of light
+66212,retinitis,inflammation of the retina
+66213,retinoblastoma,malignant ocular tumor of retinal cells; usually occurs before the third year of life; composed of primitive small round retinal cells
+66214,retinopathy,a disease of the retina that can result in loss of vision
+66215,retiree retired_person,someone who has retired from active working
+66216,retirement,the state of being retired from one's business or occupation
+66217,retirement,withdrawal from your position or occupation
+66218,retirement retreat,withdrawal for prayer and study and meditation; "the religious retreat is a form of vacation activity"
+66219,retirement_community retirement_complex,a planned community for residents who have retired from an active working life
+66220,retort,a vessel where substances are distilled or decomposed by heat
+66221,retraction,the act of pulling or holding or drawing a part back; "the retraction of the landing gear"; "retraction of the foreskin"
+66222,retraction abjuration recantation,a disavowal or taking back of a previous assertion
+66223,retractor,surgical instrument that holds back the edges of a surgical incision
+66224,retraining,training for a new occupation
+66225,retread recap,a used automobile tire that has been remolded to give it new treads
+66226,retreat,a place of privacy; a place affording peace and quiet
+66227,retreat,(military) a signal to begin a withdrawal from a dangerous position
+66228,retreat,(military) a bugle call signaling the lowering of the flag at sunset
+66229,retreat,(military) withdrawal of troops to a more favorable position to escape the enemy's superior forces or after a defeat; "the disorderly retreat of French troops"
+66230,retreat,the act of withdrawing or going backward (especially to escape something hazardous or unpleasant)
+66231,retreatant,a participant in a religious retreat
+66232,retreated,people who have retreated; "he had only contempt for the retreated"
+66233,retrenchment,entrenchment consisting of an additional interior fortification to prolong the defense
+66234,retrenchment curtailment downsizing,the reduction of expenditures in order to become financially stable
+66235,retrial,a new trial in which issues already litigated and to which the court has already rendered a verdict or decision are reexamined by the same court; occurs when the initial trial is found to have been improper or unfair due to procedural errors
+66236,retribution,the act of correcting for your wrongdoing
+66237,retribution requital,a justly deserved penalty
+66238,retrieval,(computer science) the operation of accessing information from the computer's memory
+66239,retrieval,the cognitive operation of accessing information in memory; "my retrieval of people's names is very poor"
+66240,retriever,a dog with heavy water-resistant coat that can be trained to retrieve game
+66241,retro,a fashion reminiscent of the past
+66242,retrobulbar_neuritis,inflammation of the optic nerve behind the eye; common in multiple sclerosis
+66243,retrofit,a component or accessory added to something after it has been manufactured
+66244,retrofit,the act of adding a component or accessory to something that did not have it when it was manufactured; "the court ordered a retrofit on all automobiles"
+66245,retroflection retroflexion,an articulatory gesture made by turning the tip of the tongue back against the roof of the mouth
+66246,retroflection retroflexion,the act of bending backward
+66247,retrograde_amnesia,loss of memory for events immediately preceding a trauma
+66248,retromandibular_vein vena_retromandibularis posterior_facial_vein,posterior branch of the facial vein; formed by temporal veins in front of the ear
+66249,retronym,a word introduced because an existing term has become inadequate; "Nobody ever heard of analog clocks until digital clocks became common, so `analog clock' is a retronym"
+66250,retrorocket,a small rocket engine on a larger rocket or spacecraft that is fired to slow or alter its course
+66251,retrospect,contemplation of things past; "in retrospect"
+66252,retrospection,reference to things past; "the story begins with no introductory retrospections"
+66253,retrospection,memory for experiences that are past; "some psychologists tried to contrast retrospection and introspection"
+66254,retrospective,an exhibition of a representative selection of an artist's life work
+66255,retroversion,translation back into the original language; "the teacher translated Latin texts into English which he gave to his students for retroversion"
+66256,retroversion retroflection retroflexion,a turning or tilting backward of an organ or body part; "retroversion of the uterus"
+66257,retrovirus,any of a group of viruses that contain two single-strand linear RNA molecules per virion and reverse transcriptase (RNA to DNA); the virus transcribes its RNA into a cDNA provirus that is then incorporated into the host cell
+66258,retrovision,a vision of events in the distant past
+66259,retsina,Greek wine flavored with resin
+66260,return,a tennis stroke that sends the ball back to the other player; "he won the point on a cross-court return"
+66261,return,(American football) the act of running back the ball after a kickoff or punt or interception or fumble
+66262,return,the act of going back to a prior location; "they set out on their return to the base camp"
+66263,return coming_back,the occurrence of a change in direction back in the opposite direction
+66264,return homecoming,a coming to or returning home; "on his return from Australia we gave him a welcoming party"
+66265,return issue take takings proceeds yield payoff,the income or profit arising from such transactions as the sale of land or other property; "the average return was about 5%"
+66266,return paying_back getting_even,a reciprocal group action; "in return we gave them as good as we got"
+66267,return_address,the address of the sender of a letter or parcel indicating where it should be returned if it cannot be delivered
+66268,return_key return,the key on electric typewriters or computer keyboards that causes a carriage return and a line feed
+66269,return_on_invested_capital return_on_investment ROI,(corporate finance) the amount, expressed as a percentage, that is earned on a company's total capital calculated by dividing the total capital into earnings before interest, taxes, or dividends are paid
+66270,returning_officer,the official in each electorate who holds the election and returns the results
+66271,reunion,a party of former associates who have come together again
+66272,reunion reunification,the act of coming together again; "monetary unification precipitated the reunification of the German state in October 1990"
+66273,reuptake re-uptake,a process of using up or consuming again; "psychopharmacologists discovered that amine reuptake is a process that inactivates monoamine neurotransmitters"
+66274,reusable_program,a program that can be loaded once and executed repeatedly
+66275,reusable_routine,a routine that can be loaded once and executed repeatedly
+66276,revealed_religion,a religion founded primarily on the revelations of God to humankind
+66277,reveille,a signal to get up in the morning; in the military it is a bugle call at sunrise
+66278,reveille wake-up_signal,(military) signal to wake up
+66279,revel revelry,unrestrained merrymaking
+66280,revelation,an enlightening or astonishing disclosure
+66281,revelation divine_revelation,communication of knowledge to man by a divine or supernatural agency
+66282,reveler reveller merrymaker,a celebrant who shares in a noisy party; "the clubs attract revelers as young as thirteen"
+66283,revenant,a person who returns after a lengthy absence
+66284,revenant,someone who has returned from the dead
+66285,revenue_bond,a bond issued by an agency that is commissioned to finance public works; revenue from the public property is used to pay off the bond
+66286,revenue_sharing,distribution of part of the federal tax income to states and municipalities
+66287,revenue_stamp stamp,a small piece of adhesive paper that is put on an object to show that a government tax has been paid
+66288,revenue_tariff,a tariff imposed to raise revenue
+66289,revenuer,a government agent responsible for collecting revenue (especially one responsible for stopping bootlegging)
+66290,reverberatory_furnace,a furnace in which the material that is being treated is heated indirectly by flames that are directed at the roof and walls of the furnace
+66291,reverence,a reverent mental attitude
+66292,reverence,an act showing respect (especially a bow or curtsy)
+66293,reverie revery,an abstracted state of absorption
+66294,reverie revery daydream daydreaming oneirism air_castle castle_in_the_air castle_in_Spain,absentminded dreaming while awake
+66295,revers revere,a lapel on a woman's garment; turned back to show the reverse side
+66296,reversal,a judgment by a higher court that the judgment of a lower court was incorrect and should be set aside
+66297,reversal,a change from one state to the opposite state; "there was a reversal of autonomic function"
+66298,reversal change_of_mind flip-flop turnabout turnaround,a decision to reverse an earlier decision
+66299,reversal turn_around,turning in an opposite direction or position; "the reversal of the image in the lens"
+66300,reverse,(American football) a running play in which a back running in one direction hands the ball to a back running in the opposite direction
+66301,reverse contrary opposite,a relation of direct opposition; "we thought Sue was older than Bill but just the reverse was true"
+66302,reverse reversal setback blow black_eye,an unfortunate happening that hinders or impedes; something that is thwarting or frustrating
+66303,reverse reverse_gear,the gears by which the motion of a machine can be reversed
+66304,reverse verso,the side of a coin or medal that does not bear the principal design
+66305,reverse_hang,a hang with the arms extended in back
+66306,reverse_osmosis,(chemistry) a method of producing pure water; a solvent passes through a semipermeable membrane in a direction opposite to that for natural osmosis when it is subjected to a hydrostatic pressure greater than the osmotic pressure
+66307,reverse_split reverse_stock_split split_down,a decrease in the number of outstanding shares of a corporation without changing the shareholders' equity
+66308,reverse_transcriptase,a polymerase that catalyzes the formation of DNA using RNA as a template; found especially in retroviruses
+66309,reverse_transcriptase_inhibitor,an antiviral drug that inhibits the action of reverse transcriptase in retroviruses such as HIV
+66310,reversibility,the quality of being reversible in either direction
+66311,reversible,a garment (especially a coat) that can be worn inside out (with either side of the cloth showing)
+66312,reversible_process,any process in which a system can be made to pass through the same states in the reverse order when the process is reversed
+66313,reversing_thermometer,a thermometer that registers the temperature in deep waters
+66314,reversion,(law) an interest in an estate that reverts to the grantor (or his heirs) at the end of some period (e.g., the death of the grantee)
+66315,reversion,(genetics) a return to a normal phenotype (usually resulting from a second mutation)
+66316,reversion reverse reversal turnabout turnaround,turning in the opposite direction
+66317,reversionary_annuity survivorship_annuity,an annuity payable to one person in the event that someone else is unable to receive it
+66318,reversioner,(law) a party who is entitled to an estate in reversion
+66319,revetment,a barrier against explosives
+66320,revetment revetement stone_facing,a facing (usually masonry) that supports an embankment
+66321,review,a periodical that publishes critical essays on current affairs or literature or art
+66322,review,(law) a judicial reexamination of the proceedings of a court (especially by an appellate court)
+66323,review brushup,practice intended to polish performance or refresh the memory
+66324,review critique critical_review review_article,an essay or article that gives a critical evaluation (as of a book or play)
+66325,review limited_review,(accounting) a service (less exhaustive than an audit) that provides some assurance to interested parties as to the reliability of financial data
+66326,review_copy,a copy of a newly published book that is sent for review to a writer or periodical
+66327,reviewer referee reader,someone who reads manuscripts and judges their suitability for publication
+66328,reviewing_stand,a stand from which a parade or military force can be reviewed
+66329,revision alteration,the act of revising or altering (involving reconsideration and modification); "it would require a drastic revision of his opinion"
+66330,revision revisal revise rescript,the act of rewriting something
+66331,revisionism,any dangerous departure from the teachings of Marx
+66332,revisionism,a moderate evolutionary form of Marxism
+66333,revisionist,a Communist who tries to rewrite Marxism to justify a retreat from the revolutionary position
+66334,revival resurgence revitalization revitalisation revivification,bringing again into activity and prominence; "the revival of trade"; "a revival of a neglected play by Moliere"; "the Gothic revival in architecture"
+66335,revival revival_meeting,an evangelistic meeting intended to reawaken interest in religion
+66336,revivalism,an attempt to reawaken the evangelical faith
+66337,revocation,the act (by someone having the authority) of annulling something previously done; "the revocation of a law"
+66338,revocation annulment,the state of being cancelled or annulled
+66339,revoke renege,the mistake of not following suit when able to do so
+66340,revolution,a drastic and far-reaching change in ways of thinking and behaving; "the industrial revolution was also a cultural revolution"
+66341,revolution,the overthrow of a government by those who are governed
+66342,revolutionary_group,a political unit organized to promote revolution
+66343,revolutionism,a belief in the spread of revolutionary principles
+66344,revolutionist revolutionary subversive subverter,a radical supporter of political or social revolution
+66345,revolutions_per_minute rpm rev,rate of revolution of a motor; "the engine was doing 6000 revs"
+66346,revolver six-gun six-shooter,a pistol with a revolving cylinder (usually having six chambers for bullets)
+66347,revolving_charge_account,a charge account that does not have to be paid to zero balance
+66348,revolving_door,an organization or institution with a high rate of turnover of personnel or membership
+66349,revolving_door revolver,a door consisting of four orthogonal partitions that rotate about a central pivot; a door designed to equalize the air pressure in tall buildings
+66350,revolving_fund,a fund which, if borrowed or used, is intended to be replenished so it may be loaned or spent repeatedly
+66351,revue review,a variety show with topical sketches and songs and dancing and comedians
+66352,rewa-rewa New_Zealand_honeysuckle,slender elegant tree of New Zealand having racemes of red flowers and yielding valuable mottled red timber
+66353,reward,payment made in return for a service rendered
+66354,reward,the offer of money for helping to find a criminal or for returning lost property
+66355,reward reinforcement,an act performed to strengthen approved behavior
+66356,rewording recasting rephrasing,changing a particular word or phrase
+66357,rewrite revision rescript,something that has been written again; "the rewrite was much better"
+66358,rewriting revising,editing that involves writing something again
+66359,rex_begonia king_begonia painted-leaf_begonia beefsteak_geranium Begonia_rex,any of numerous usually rhizomatous hybrid begonias derived from an East Indian plant having rough-textured leaves patterned in silver and bronze and purple and red-brown with inconspicuous flowers
+66360,rhabdomyoma,benign tumor of striated muscle
+66361,rhabdomyosarcoma rhabdosarcoma,a highly malignant neoplasm derived from striated muscle
+66362,rhabdovirus,any of a group of arboviruses including those causing rabies
+66363,rhagades,cracks or fissures in the skin (especially around the mouth or anus)
+66364,rhapsody,an enthusiastic expression of emotion; "rhapsodies of joy"
+66365,rhapsody,(music) a free instrumental composition in one extended movement; typically emotional or exuberant in character
+66366,rhapsody,(in ancient Greece) an epic poem adapted for recitation
+66367,rhea Rhea_americana,larger of two tall fast-running flightless birds similar to ostriches but three-toed; found from Brazil to Patagonia
+66368,rhea nandu Pterocnemia_pennata,smaller of two tall fast-running flightless birds similar to ostriches but three-toed; found from Peru to Strait of Magellan
+66369,rhenium Re atomic_number_75,a rare heavy polyvalent metallic element that resembles manganese chemically and is used in some alloys; is obtained as a by-product in refining molybdenum
+66370,rheology,the branch of physics that studies the deformation and flow of matter
+66371,rheometer,an instrument for measuring the flow of liquids (especially arterial blood)
+66372,rheostat variable_resistor,resistor for regulating current
+66373,rhesus rhesus_monkey Macaca_mulatta,of southern Asia; used in medical research
+66374,rhesus_factor Rh_factor Rh,a blood group antigen possessed by Rh-positive people; if an Rh-negative person receives a blood transfusion from an Rh-positive person it can result in hemolysis and anemia
+66375,rhetoric,using language effectively to please or persuade
+66376,rhetoric,study of the technique and rules for using language effectively (especially in public speaking)
+66377,rhetorical_device,a use of language that creates a literary effect (but often without regard for literal significance)
+66378,rhetorical_question,a statement that is formulated as a question but that is not supposed to be answered; "he liked to make his points with rhetorical questions"
+66379,rheum,a watery discharge from the mucous membranes (especially from the eyes or nose)
+66380,rheumatic,a person suffering with rheumatism
+66381,rheumatic_aortitis,aortitis occurring in rheumatic fever
+66382,rheumatic_fever,a severe disease chiefly of children and characterized by painful inflammation of the joints and frequently damage to the heart valves
+66383,rheumatic_heart_disease,heart disease caused by recurrent episodes of rheumatic fever; characterized by changes in the myocardium or scarring of the heart valves that reduce the power of the heart to pump blood
+66384,rheumatism,any painful disorder of the joints or muscles or connective tissues
+66385,rheumatoid_arthritis atrophic_arthritis rheumatism,a chronic autoimmune disease with inflammation of the joints and marked deformities; something (possibly a virus) triggers an attack on the synovium by the immune system, which releases cytokines that stimulate an inflammatory reaction that can lead to the destruction of all components of the joint
+66386,rheumatoid_factor,autoantibody that is usually present in the serum of people with rheumatoid arthritis
+66387,rheumatologist,a physician specializing in rheumatic diseases
+66388,rheumatology,the branch of medicine dealing with the study and treatment of pathologies of the muscles or tendons or joints
+66389,rhinencephalon olfactory_brain,a center in the cerebral hemispheres that governs the sense of smell in lower animals; in humans it seems to mediate complex emotional behavior
+66390,rhinestone,an imitation diamond made from rock crystal or glass or paste
+66391,rhinion,the anterior tip at the end of the suture of the nasal bones
+66392,rhinitis coryza,an inflammation of the mucous membrane lining the nose (usually associated with nasal discharge)
+66393,rhinoceros rhino,massive powerful herbivorous odd-toed ungulate of southeast Asia and Africa having very thick skin and one or two horns on the snout
+66394,rhinoceros_beetle,any of various large chiefly tropical beetles having horns on the head; pest on coconuts
+66395,rhinolaryngology otorhinolaryngology otolaryngology,the medical specialty that deals with diseases of the ear, nose and throat
+66396,rhinopathy,any disease or malformation of the nose
+66397,rhinophyma hypertrophic_rosacea toper's_nose brandy_nose rum_nose rum-blossom potato_nose hammer_nose copper_nose,enlargement of the nose with dilation of follicles and redness and prominent vascularity of the skin; often associated with excessive consumption of alcohol
+66398,rhinorrhea,persistent watery mucus discharge from the nose (as in the common cold)
+66399,rhinoscope,medical instrument consisting of a mirror mounted at an angle on a rod; used to examine the nasal passages (through the nasopharynx)
+66400,rhinoscopy,examination of the nasal passages (either through the anterior nares or with a rhinoscope through the nasopharynx)
+66401,rhinosporidiosis,fungal infection of the nose; often acquired while swimming
+66402,rhinostenosis,narrowing of the passages in the nasal cavities
+66403,rhinotomy,surgical procedure in which an incision is made in the nose to drain accumulated pus
+66404,rhinotracheitis,a respiratory infection of the nose and throat in cattle
+66405,rhinovirus,any of a group of picornaviruses that are responsible for many upper respiratory infections
+66406,rhizoctinia,any fungus now or formerly belonging to the form genus Rhizoctinia
+66407,rhizoctinia_disease,disease caused by rhizoctinia or fungi of Pellicularia and Corticium
+66408,rhizoid,any of various slender filaments that function as roots in mosses and ferns and fungi etc
+66409,rhizomatous_begonia,any of numerous begonias having prominent shaggy creeping stems or rhizomes
+66410,rhizome rootstock rootstalk,a horizontal plant stem with shoots above and roots below serving as a reproductive structure
+66411,rhizomorph,a dense mass of hyphae forming a root-like structure characteristic of many fungi
+66412,rhizopod rhizopodan,protozoa characterized by a pseudopod
+66413,rhizopus,any of various rot causing fungi of the genus Rhizopus
+66414,rhizotomy,surgical procedure in which spinal nerve roots are cut; done (anterior roots) to relieve intractable pain or (posterior roots) to stop severe muscle spasms
+66415,rho,the 17th letter of the Greek alphabet
+66416,rhodium Rh atomic_number_45,a white hard metallic element that is one of the platinum group and is found in platinum ores; used in alloys with platinum
+66417,rhodochrosite,a mineral consisting of manganese carbonate; a source of manganese
+66418,rhododendron,any shrub of the genus Rhododendron: evergreen shrubs or small shrubby trees having leathery leaves and showy clusters of campanulate (bell-shaped) flowers
+66419,rhodolite,a red or pink variety of garnet used as a gemstone
+66420,rhodonite,a pink or red mineral consisting of crystalline manganese silicate; used as an ornamental stone
+66421,rhombohedron,a parallelepiped bounded by six similar faces (either rhombuses or parallelograms)
+66422,rhomboid,a parallelogram with adjacent sides of unequal lengths; an oblique-angled parallelogram with only the opposite sides equal
+66423,rhomboid rhomboid_muscle,any of several muscles of the upper back that help move the shoulder blade
+66424,rhomboid_minor_muscle lesser_rhomboid_muscle musculus_rhomboideus_minor,rhomboid muscle that draws the scapula toward the vertebral column and slightly upward
+66425,rhomboideus_major_muscle greater_rhomboid_muscle musculus_rhomboideus_major,rhomboid muscle that draws the scapula toward the spinal column
+66426,rhombus rhomb diamond,a parallelogram with four equal sides; an oblique-angled equilateral parallelogram
+66427,rhonchus,a sound like whistling or snoring that is heard with a stethoscope during expiration as air passes through obstructed channels
+66428,rhubarb rhubarb_plant,plants having long green or reddish acidic leafstalks growing in basal clumps; stems (and only the stems) are edible when cooked; leaves are poisonous
+66429,rhubarb_pie,pie containing diced rhubarb and much sugar
+66430,rhumb_line rhumb loxodrome,a line on a sphere that cuts all meridians at the same angle; the path taken by a ship or plane that maintains a constant compass direction
+66431,rhyme rime,correspondence in the sounds of two or more lines (especially final sounds)
+66432,rhyme_royal,a stanza form having seven lines of iambic pentameter; introduced by Chaucer
+66433,rhymer rhymester versifier poetizer poetiser,a writer who composes rhymes; a maker of poor verses (usually used as terms of contempt for minor or inferior poets)
+66434,rhyming_slang,slang that replaces words with rhyming words or expressions and then typically omits the rhyming component; "Cockney rhyming slang"
+66435,rhyolite,very acid volcanic rock
+66436,rhythm beat musical_rhythm,the basic rhythmic unit in a piece of music; "the piece has a fast rhythm"; "the conductor set the beat"
+66437,rhythm regular_recurrence,recurring at regular intervals
+66438,rhythm speech_rhythm,the arrangement of spoken words alternating stressed and unstressed elements; "the rhythm of Frost's poetry"
+66439,rhythm_and_blues R_and_B,a combination of blues and jazz that was developed in the United States by Black musicians; an important precursor of rock 'n' roll
+66440,rhythm_and_blues_musician,a performer (and sometimes composer) of rhythm and blues music
+66441,rhythm_method_of_birth_control rhythm_method rhythm calendar_method_of_birth_control calendar_method,natural family planning in which ovulation is assumed to occur 14 days before the onset of a period (the fertile period would be assumed to extend from day 10 through day 18 of her cycle)
+66442,rhythmicity,the rhythmic property imparted by the accents and relative durations of notes in a piece of music
+66443,rib,cut of meat including one or more ribs
+66444,rib,a teasing remark
+66445,rib,a riblike supporting or strengthening part of an animal or plant
+66446,rib,a projecting molding on the underside of a vault or ceiling; may be ornamental or structural
+66447,rib,support resembling the rib of an animal
+66448,rib costa,any of the 12 pairs of curved arches of bone extending from the spine to or toward the sternum in humans (and similar bones in most vertebrates)
+66449,rib_cage,the bony enclosing wall of the chest
+66450,rib_joint_pliers,a type of pliers
+66451,rib_roast standing_rib_roast,a cut of meat (beef or venison) including more than one rib and the meat located along the outside of the ribs
+66452,ribald,a ribald person; someone who uses vulgar and offensive language
+66453,ribaldry,ribald humor
+66454,riband ribband,a ribbon used as a decoration
+66455,ribavirin Virazole,an inhaled antiviral agent (trade name Virazole) that may be used to treat serious virus infections
+66456,ribbed_vault,vault that resembles a groined vault but has ribbed arches
+66457,ribbing,a framework of ribs
+66458,ribbon,notion consisting of a narrow strip of fine material used for trimming
+66459,ribbon thread,any long object resembling a thin line; "a mere ribbon of land"; "the lighted ribbon of traffic"; "from the air the road was a grey thread"; "a thread of smoke climbed upward"
+66460,ribbon typewriter_ribbon,a long strip of inked material for making characters on paper with a typewriter
+66461,ribbon-leaved_water_plantain,a variety of water plantain
+66462,ribbon_development,building complex in a continuous row along a road
+66463,ribbon_fern Ophioglossum_pendulum,epiphytic fern with straplike usually twisted fronds of tropical Asia and Polynesia and America
+66464,ribbon_fern spider_fern Pteris_serrulata,fern of North Africa and Azores and Canary Islands
+66465,ribbon_snake Thamnophis_sauritus,slender yellow-striped North American garter snake; prefers wet places
+66466,ribbon_tree ribbonwood Plagianthus_regius Plagianthus_betulinus,deciduous New Zealand tree whose inner bark yields a strong fiber that resembles flax and is called New Zealand cotton
+66467,ribbon_worm nemertean nemertine proboscis_worm,soft unsegmented marine worms that have a threadlike proboscis and the ability to stretch and contract
+66468,ribbonfish,marine fish having a long compressed ribbonlike body
+66469,ribier,dark reddish-purple table grape of California
+66470,ribonuclease ribonucleinase RNase,a transferase that catalyzes the hydrolysis of ribonucleic acid
+66471,ribonucleic_acid RNA,(biochemistry) a long linear polymer of nucleotides found in the nucleus but mainly in the cytoplasm of a cell where it is associated with microsomes; it transmits genetic information from DNA to the cytoplasm and controls certain chemical processes in the cell; "ribonucleic acid is the genetic material of some viruses"
+66472,ribose,a pentose sugar important as a component of ribonucleic acid
+66473,ribosome,an organelle in the cytoplasm of a living cell; they attach to mRNA and move down it one codon at a time and then stop until tRNA brings the required amino acid; when it reaches a stop codon it falls apart and releases the completed protein molecule for use by the cell; "the ribosome is the site of protein synthesis"
+66474,rice,annual or perennial rhizomatous marsh grasses; seed used for food; straw used for paper
+66475,rice,grains used as food either unpolished or more often polished
+66476,rice_paper,a thin delicate material resembling paper; made from the rice-paper tree
+66477,rice_rat Oryzomys_palustris,hardy agile rat of grassy marshes of Mexico and the southeastern United States
+66478,rice_weevil black_weevil Sitophylus_oryzae,brown weevil that infests stored grain especially rice
+66479,ricegrass rice_grass,any grass of the genus Oryzopsis
+66480,ricer,a kitchen utensil used for ricing soft foods by extruding them through small holes
+66481,rich_people rich,people who have possessions and wealth (considered as a group); "only the very rich benefit from this legislation"
+66482,rich_person wealthy_person have,a person who possesses great material wealth
+66483,richness,the quality of having high intrinsic value; "the richness of the mines and pastureland"; "the cut of her clothes and the richness of the fabric were distinctive"
+66484,richness,a strong deep vividness of hue; "the fire-light gave a richness of coloring to that side of the room"
+66485,richness rankness prolificacy fertility,the property of producing abundantly and sustaining vigorous and luxuriant growth; "he praised the richness of the soil"; "weeds lovely in their rankness"
+66486,richweed clearweed dead_nettle Pilea_pumilla,a plants of the genus Pilea having drooping green flower clusters and smooth translucent stems and leaves
+66487,ricin ricin_toxin,a toxic protein extracted from castor beans; used as a chemical reagent; can be used as a bioweapon; "one milligram of ricin can kill an adult"
+66488,ricinoleic_acid,an oily fatty acid found in castor oil and used in soap
+66489,rickets rachitis,childhood disease caused by deficiency of vitamin D and sunlight associated with impaired metabolism of calcium and phosphorus
+66490,rickettsia,any of a group of very small rod-shaped bacteria that live in biting arthropods (as ticks and mites) and cause disease in vertebrate hosts; they cause typhus and other febrile diseases in human beings
+66491,rickettsial_disease rickettsiosis,infectious disease caused by ticks or mites or body lice infected with rickettsial bacteria
+66492,rickettsialpox,mild infectious rickettsial disease caused by a bacterium of the genus Rickettsia transmitted to humans by the bite a mite that lives on rodents; characterized by chills and fever and headache and skin lesions that resemble chickenpox
+66493,rickey,a mixed drink made of sweetened lime juice and soda water usually with liquor
+66494,rickrack ricrac,a narrow zigzag ribbon used as trimming
+66495,ricochet carom,a glancing rebound
+66496,ricotta,soft Italian cheese like cottage cheese
+66497,rictus,a gaping grimace
+66498,riddle,a coarse sieve (as for gravel)
+66499,riddle conundrum enigma brain-teaser,a difficult problem
+66500,ride,a mechanical device that you ride for amusement or excitement
+66501,rider,a traveler who actively rides a vehicle (as a bicycle or motorcycle)
+66502,rider,a traveler who actively rides an animal (as a horse or camel)
+66503,rider,a clause that is appended to a legislative bill
+66504,rider_plate,a horizontal beam (or plate) connected to the top of a ship's vertical keel or to the keelson
+66505,ridge,any long raised strip
+66506,ridge,a long narrow natural elevation on the floor of the ocean
+66507,ridge,a long narrow natural elevation or striation
+66508,ridge,any long raised border or margin of a bone or tooth or membrane
+66509,ridge ridgeline,a long narrow range of hills
+66510,ridge ridgepole rooftree,a beam laid along the edge where two sloping sides of a roof meet at the top; provides an attachment for the upper ends of rafters
+66511,ridge_rope,either of a pair of lifelines running alongside the bowsprit of a ship
+66512,ridge_tile,a decorative tile that is bent in cross section; used to cover the ridge of a roof
+66513,ridgeling ridgling ridgel ridgil,a colt with undescended testicles
+66514,ridicule,language or behavior intended to mock or humiliate
+66515,riding horseback_riding,travel by being carried on horseback
+66516,riding horseback_riding equitation,the sport of sitting on the back of a horse while controlling its movements
+66517,riding_bitt,one of the large bitts used to secure the cable of a dropped anchor
+66518,riding_boot,a boot without laces that is worn for riding horses; part of a riding habit
+66519,riding_crop hunting_crop,a short whip with a thong at the end and a handle for opening gates
+66520,riding_master,someone who teaches horsemanship
+66521,riding_mower,a power mower you can ride on
+66522,riding_school,a school where horsemanship is taught and practiced
+66523,ridley,a marine turtle
+66524,riel,the basic unit of money in Cambodia; equal to 100 sen
+66525,rifampin Rifadin Rimactane,an antibacterial drug (trade names Rifadin and Rimactane) used to treat tuberculosis
+66526,riff,a jazz ostinato; usually provides a background for a solo improvisation
+66527,riffle,shuffling by splitting the pack and interweaving the two halves at their corners
+66528,rifle,a shoulder firearm with a long barrel and a rifled bore; "he lifted the rifle to his shoulder and fired"
+66529,rifle_ball,a bullet designed to be fired from a rifle; no longer made spherical in shape
+66530,rifle_butt,the butt end of a rifle
+66531,rifle_grenade,a grenade that is thrown from a launching device attached to the barrel of a rifle
+66532,rifle_range,a range where people can practice shooting rifles; "during the war they turned the bowling alleys into rifle ranges"
+66533,rifle_range rifle_shot,the distance that a rifle bullet will carry; "the target was out of rifle range"
+66534,riflebird Ptloris_paradisea,velvety black Australian bird of paradise with green and purple iridescence on head and tail
+66535,rifleman,someone skilled in the use of a rifle
+66536,rifleman,a soldier whose weapon is a rifle
+66537,rifleman_bird Acanthisitta_chloris,small green-and-bronze bird
+66538,rift,a gap between cloud masses; "the sun shone through a rift in the clouds"
+66539,rift,a narrow fissure in rock
+66540,rift_valley,a valley with steep sides; formed by a rift in the earth's crust
+66541,rig,gear (including necessary machinery) for a particular enterprise
+66542,rig rigging,formation of masts, spars, sails, etc., on a vessel
+66543,rigatoni,tubular pasta in short ribbed pieces
+66544,rigger,someone who rigs ships
+66545,rigger,a sailing vessel with a specified rig; "a square rigger"
+66546,rigger oil_rigger,someone who works on an oil rig
+66547,rigger rigger_brush,a long slender pointed sable brush used by artists
+66548,rigging tackle,gear consisting of ropes etc. supporting a ship's masts and sails
+66549,right,(frequently plural) the interest possessed by law or custom in some intangible thing; "mineral rights"; "film rights"
+66550,right,location near or direction toward the right side; i.e. the side to the south when a person or object faces east; "he stood on the right"
+66551,right,an abstract idea of that which is due to a person or governmental body by law or tradition or nature; "they are endowed by their Creator with certain unalienable Rights"; "Certain rights can never be granted to the government but must be kept in the hands of the people"- Eleanor Roosevelt; "a right is not something that somebody gives you; it is something that nobody can take away"
+66552,right,a turn toward the side of the body that is on the south when the person is facing east; "take a right at the corner"
+66553,right right_hand,the hand that is on the right side of the body; "he writes with his right hand but pitches with his left"; "hit him with quick rights to the body"
+66554,right right_wing,those who support political or social or economic conservatism; those who believe that things are better left unchanged
+66555,right rightfulness,anything in accord with principles of justice; "he feels he is in the right"; "the rightfulness of his claim"
+66556,right-hand_man chief_assistant man_Friday,the most helpful assistant
+66557,right-handed_pitcher right-hander,(baseball) a pitcher who throws with the right hand
+66558,right-handedness dextrality,preference for using the right hand
+66559,right-hander right_hander righthander,a person who uses the right hand more skillfully than the left
+66560,right_angle,the 90 degree angle between two perpendicular lines
+66561,right_ascension RA celestial_longitude,(astronomy) the equatorial coordinate specifying the angle, measured eastward along the celestial equator, from the vernal equinox to the intersection of the hour circle that passes through an object in the sky; usually expressed in hours and minutes and seconds; used with declination to specify positions on the celestial sphere; "one hour of right ascension equals fifteen degrees"
+66562,right_atrium right_atrium_of_the_heart atrium_dextrum,the right upper chamber of the heart that receives blood from the venae cavae and coronary sinus
+66563,right_coronary_artery,arises from the right aortic sinus; supplies the right side of the heart
+66564,right_field rightfield,the fielding position of the player on a baseball team who is expected to field balls in the right third of the outfield (looking from home plate)
+66565,right_field rightfield right,the piece of ground in the outfield on the catcher's right
+66566,right_fielder,the person who plays right field
+66567,right_gastric_artery ateria_gastrica_dextra,a branch of the hepatic artery that supplies the pyloric portion of the stomach on the lesser curvature
+66568,right_hemisphere right_brain,the cerebral hemisphere to the right of the corpus callosum that controls the left half of the body
+66569,right_of_action,the legal right to sue
+66570,right_of_election,in probate law: the legal right of a surviving spouse to elect to take either what the deceased spouse gave under the will or the share of the estate as set forth by statute
+66571,right_of_entry,the legal right to take possession of real estate in a peaceable manner
+66572,right_of_offset,(banking) the legal right of a bank to seize deposited funds to cover a loan that is in default
+66573,right_of_privacy,a legal right (not explicitly provided in the United States Constitution) to be left alone; the right to live life free from unwarranted publicity
+66574,right_of_re-entry,the legal right to resume possession (a right that was reserved when a former possession was parted with)
+66575,right_of_search,the right of a belligerent to stop neutral ships on the high seas in wartime and search them
+66576,right_of_way,the privilege of someone to pass over land belonging to someone else
+66577,right_of_way,the right of one vehicle or vessel to take precedence over another
+66578,right_of_way,the passage consisting of a path or strip of land over which someone has the legal right to pass
+66579,right_to_an_attorney,a civil right guaranteed by the 6th amendment to the US Constitution
+66580,right_to_confront_accusors,a right guaranteed by the 6th amendment to the US Constitution
+66581,right_to_due_process,a right guaranteed by the Fifth Amendment to the US Constitution; reaffirmed by the Fourteenth Amendment
+66582,right_to_liberty,the right to be free
+66583,right_to_life,the right to live
+66584,right_to_privacy,right to be free of unsanctioned intrusion
+66585,right_to_speedy_and_public_trial_by_jury,a civil right guaranteed by the 6th amendment to the US Constitution
+66586,right_to_the_pursuit_of_happiness,the right to try to find happiness
+66587,right_to_vote vote suffrage,a legal right guaranteed by the 15th amendment to the US Constitution; guaranteed to women by the 19th amendment; "American women got the vote in 1920"
+66588,right_triangle right-angled_triangle,a triangle with one right angle
+66589,right_ventricle,the chamber on the right side of the heart that receives venous blood from the right atrium and pumps it into the pulmonary trunk
+66590,right_whale,large Arctic whalebone whale; allegedly the `right' whale to hunt because of its valuable whalebone and oil
+66591,righteousness,adhering to moral principles
+66592,righteye_flounder righteyed_flounder,flounders with both eyes on the right side of the head
+66593,rightism,the ideology of the political right; belief in or support of the tenets of the political right
+66594,rightist right-winger,a member of a right wing political party
+66595,rightness,according with conscience or morality
+66596,rights_offering rights_issue,an offering of common stock to existing shareholders who hold subscription rights or pre-emptive rights that entitle them to buy newly issued shares at a discount from the price at which they will be offered to the public later; "the investment banker who handles a rights offering usually agrees to buy any shares not bought by shareholders"
+66597,rigidity rigidness,the physical property of being stiff and resisting bending
+66598,rigmarole rigamarole,a set of confused and meaningless statements
+66599,rigmarole rigamarole,a long and complicated and confusing procedure; "all that academic rigmarole was a waste of time"
+66600,rigor_mortis,temporary stiffness of joints and muscular rigidity occurring after death
+66601,rigor_mortis,muscular stiffening that begins 2 to 4 hours after death and lasts for about 4 days
+66602,rigout,a person's costume (especially if bizarre); "What a queer rigout!"
+66603,rijsttaffel rijstaffel rijstafel,dish originating in Indonesia; a wide variety of foods and sauces are served with rice
+66604,rill,a small channel (as one formed by soil erosion)
+66605,rim,the shape of a raised edge of a more or less circular object
+66606,rim,(basketball) the hoop from which the net is suspended; "the ball hit the rim and bounced off"
+66607,rim,the outer part of a wheel to which the tire is attached
+66608,rim_blight,a disease of tea plants
+66609,rima,a narrow elongated opening or fissure between two symmetrical parts
+66610,rima_glottidis rima_vocalis true_glottis glottis_vera,the space between the two true vocal folds
+66611,rima_vestibuli rima_respiratoria false_glottis glottis_spuria,the opening between the false vocal folds
+66612,rimu imou_pine red_pine Dacrydium_cupressinum,tall New Zealand timber tree
+66613,rind,the natural outer covering of food (usually removed before eating)
+66614,rinderpest cattle_plague,an acute infectious viral disease of cattle (usually fatal); characterized by fever and diarrhea and inflammation of mucous membranes
+66615,ring,a characteristic sound; "it has the ring of sincerity"
+66616,ring,a platform usually marked off by ropes in which contestants box or wrestle
+66617,ring band,jewelry consisting of a circlet of precious metal (often set with jewels) worn on the finger; "she had rings on every finger"; "he noted that she wore a wedding band"
+66618,ring halo annulus doughnut anchor_ring,a toroidal shape; "a ring of ships in the harbor"; "a halo of smoke"
+66619,ring ringing tintinnabulation,the sound of a bell ringing; "the distinctive ring of the church bell"; "the ringing of the telephone"; "the tintinnabulation that so voluminously swells from the ringing and the dinging of the bells"--E. A. Poe
+66620,ring-around-the-rosy ring-around-a-rosy ring-a-rosy,a children's game in which the players dance around in a circle and at a given signal all squat
+66621,ring-necked_parakeet Psittacula_krameri,African parakeet
+66622,ring-necked_pheasant Phasianus_colchicus,common pheasant having bright plumage and a white neck ring
+66623,ring_containment,a strategy of defense in cases of bioterrorism; vaccination only of people exposed and others who are in contact with them; "ring containment is a proven method of halting a smallpox epidemic"
+66624,ring_finger annualry,the third finger (especially of the left hand)
+66625,ring_girl,a young woman who holds up cards indicating the number of the next round at prize fights
+66626,ring_ouzel ring_blackbird ring_thrush Turdus_torquatus,European thrush common in rocky areas; the male has blackish plumage with a white band around the neck
+66627,ring_rot ring_disease tobacco_wilt,disease of tomatoes and potatoes and tobacco etc caused by the bacterium Pseudomonas solanacearum
+66628,ring_rot_bacteria Pseudomonas_solanacearum,causes brown rot in tomatoes and potatoes and tobacco etc
+66629,ring_vaccination,administering vaccine only to people in close contact with an isolated infected patient; prevents the spread of a highly infectious disease by surrounding the patient with a ring of immunization
+66630,ringdove Streptopelia_risoria,greyish Old World turtledove with a black band around the neck; often caged
+66631,ringer,a contestant entered in a competition under false pretenses
+66632,ringer,(horseshoes) the successful throw of a horseshoe or quoit so as to encircle a stake or peg
+66633,ringer dead_ringer clone,a person who is almost identical to another
+66634,ringgit,the basic unit of money in Malaysia; equal to 100 sen
+66635,ringhals rinkhals spitting_snake Hemachatus_haemachatus,highly venomous snake of southern Africa able to spit venom up to seven feet
+66636,ringing,the giving of a ring as a token of engagement
+66637,ringleader,a person who leads (especially in illicit activities)
+66638,ringlet,a small ring
+66639,ringlet ringlet_butterfly,any of various butterflies belonging to the family Satyridae
+66640,ringmaster,the person in charge of performances in a circus ring
+66641,ringneck_snake ring-necked_snake ring_snake,any of numerous small nonvenomous North American snakes with a yellow or orange ring around the neck
+66642,rings,gymnastic apparatus consisting of a pair of heavy metal circles (usually covered with leather) suspended by ropes; used for gymnastic exercises; "the rings require a strong upper body"
+66643,ringside ringside_seat,first row of seating; has an unobstructed view of a boxing or wrestling ring
+66644,ringtail,an immature golden eagle
+66645,ringworm_bush ringworm_shrub ringworm_cassia Senna_alata Cassia_alata,tropical shrub (especially of Americas) having yellow flowers and large leaves whose juice is used as a cure for ringworm and poisonous bites; sometimes placed in genus Cassia
+66646,rink skating_rink,building that contains a surface for ice skating or roller skating
+66647,rinse,a liquid preparation used on wet hair to give it a tint
+66648,rinse,the act of giving a light tint to the hair
+66649,rinse,washing lightly without soap
+66650,rinse rinsing,the removal of soap with clean water in the final stage of washing
+66651,riot public_violence,a public act of violence by an unruly mob
+66652,riot_act,a vigorous reprimand; "I read him the riot act"
+66653,riot_control riot_control_operation,the measures taken to control a riot
+66654,riot_gun,a firearm designed to disperse rioters rather than to inflict serious injury or death
+66655,rioter,troublemaker who participates in a violent disturbance of the peace; someone who rises up against the constituted authority
+66656,rioting riot,a state of disorder involving group violence
+66657,rip rent snag split tear,an opening made forcibly as by pulling apart; "there was a rip in his pants"; "she had snags in her stockings"
+66658,rip riptide tide_rip crosscurrent countercurrent,a stretch of turbulent water in a river or the sea caused by one current flowing into or across another current
+66659,riparian_forest,woodlands along the banks of stream or river
+66660,ripcord,a cord that is pulled to open the gasbag of a balloon wide enough to release gas and so causes the balloon to descend
+66661,ripcord,a cord that is pulled to open a parachute from its pack during a descent
+66662,ripeness,the state of being ripe
+66663,ripening aging ageing,acquiring desirable qualities by being left undisturbed for some time
+66664,riposte,(fencing) a counterattack made immediately after successfully parrying the opponents lunge
+66665,ripper,a murderer who slashes the victims with a knife; "Jack the Ripper was probably a madman"
+66666,ripping_bar,a steel lever with one end formed into a ripping chisel and the other a gooseneck with a claw for pulling nails
+66667,ripping_chisel,a long chisel with a slightly bent cutting end; used for heavy prying or cleaning mortises
+66668,ripple,(electronics) an oscillation of small amplitude imposed on top of a steady value
+66669,ripple rippling riffle wavelet,a small wave on the surface of a liquid
+66670,ripple_mark,one of a series of small ridges produced in sand by water currents or by wind
+66671,ripsaw splitsaw,a handsaw for cutting with the grain of the wood
+66672,riptide rip_current,a strong surface current flowing outwards from a shore
+66673,rise,a growth in strength or number or importance
+66674,rise ascent ascension ascending,the act of changing location in an upward direction
+66675,rise boost hike cost_increase,an increase in cost; "they asked for a 10% rise in rates"
+66676,rise rising ascent ascension,a movement upward; "they cheered the rise of the hot-air balloon"
+66677,riser,a person who rises (especially from bed); "he's usually a late riser"
+66678,riser,structural member consisting of the vertical part of a stair or step
+66679,riser riser_pipe riser_pipeline riser_main,a vertical pipe in a building
+66680,risibility,a disposition to laugh
+66681,rising_trot,the rider rises from the saddle every second stride
+66682,risk peril danger,a venture undertaken without regard to possible loss or injury; "he saw the rewards but not the risks of crime"; "there was a danger he would do the wrong thing"
+66683,risk risk_of_exposure,the probability of being exposed to an infectious agent
+66684,risk risk_of_infection,the probability of becoming infected given that exposure to an infectious agent has occurred
+66685,risk_arbitrage takeover_arbitrage,arbitrage involving risk; as in the simultaneous purchase of stock in a target company and sale of stock in its potential acquirer; if the takeover fails the arbitrageur may lose a great deal of money
+66686,riskiness peril,a state of danger involving risk
+66687,risklessness,safety as a consequence of entailing no risk
+66688,risotto Italian_rice,rice cooked with broth and sprinkled with grated cheese
+66689,rissole,minced cooked meat or fish coated in egg and breadcrumbs and fried in deep fat
+66690,rite religious_rite,an established ceremony prescribed by a religion; "the rite of baptism"
+66691,rite_of_passage,a ritual performed in some cultures at times when an individual changes status (as from adolescence to adulthood)
+66692,ritonavir Norvir,a protease inhibitor (trade name Norvir) used in treating HIV
+66693,ritual,the prescribed procedure for conducting religious ceremonies
+66694,ritual,stereotyped behavior
+66695,ritual rite,any customary observance or practice
+66696,ritual_dancing ritual_dance ceremonial_dance,a dance that is part of a religious ritual
+66697,ritualism,the study of religious or magical rites and ceremonies
+66698,ritualism,exaggerated emphasis on the importance of rites or ritualistic forms in worship
+66699,ritualist,an advocate of strict observance of ritualistic forms
+66700,ritualist,a social anthropologist who is expert on rites and ceremonies
+66701,ritz,ostentatious display of elegance; "they put on the ritz"
+66702,rival challenger competitor competition contender,the contestant you hope to defeat; "he had respect for his rivals"; "he wanted to know what the competition was doing"
+66703,river,a large natural stream of water (larger than a creek); "the river was navigable for 50 miles"
+66704,river_basin basin watershed drainage_basin catchment_area catchment_basin drainage_area,the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet; "flood control in the Missouri basin"
+66705,river_boat,a boat used on rivers or to ply a river
+66706,river_boulder,a boulder that has been carried by a river to a place remote from its place of origin
+66707,river_dolphin,any of several long-snouted usually freshwater dolphins of South America and southern Asia
+66708,river_limpet freshwater_limpet Ancylus_fluviatilis,minute conical gastropod superficially resembling a limpet but living and feeding on freshwater plants
+66709,river_otter Lutra_canadensis,sociable aquatic animal widely distributed along streams and lake borders in North America
+66710,river_prawn,large Australian prawn
+66711,river_red_gum river_gum Eucalyptus_camaldulensis Eucalyptus_rostrata,somewhat crooked red gum tree growing chiefly along rivers; has durable reddish lumber used in heavy construction
+66712,river_shad Alosa_chrysocloris,shad that spawns in streams of the Mississippi drainage; very similar to Alosa sapidissima
+66713,riverbank riverside,the bank of a river
+66714,riverbed river_bottom,a channel occupied (or formerly occupied) by a river
+66715,rivet,heavy pin having a head at one end and the other end being hammered flat after being passed through holes in the pieces that are fastened together
+66716,rivet_line,a line of rivets at a seam; "the fuselage cracked along the rivet line"
+66717,riveter rivetter,a worker who inserts and hammers rivets
+66718,riveting_machine riveter rivetter,a machine for driving rivets
+66719,rivulet rill run runnel streamlet,a small stream
+66720,rivulus,found in small streams of tropical America; often kept in aquariums; usually hermaphroditic
+66721,riyal-omani Omani_rial rial,the basic unit of money in Oman
+66722,roach,a roll of hair brushed back from the forehead
+66723,roach,the butt of a marijuana cigarette
+66724,roach Rutilus_rutilus,European freshwater food fish having a greenish back
+66725,roach_clip roach_holder,metal tweezers used by marijuana smokers to hold a roach
+66726,road,a way or means to achieve something; "the road to fame"
+66727,road route,an open way (generally public) for travel or transportation
+66728,road_builder,someone whose business is to build roads
+66729,road_construction,the construction of roads
+66730,road_gang,a gang of road workers
+66731,road_hog roadhog,a driver who obstructs others
+66732,road_map,a map showing roads (for automobile travel)
+66733,road_map guideline,a detailed plan or explanation to guide you in setting standards or determining a course of action; "the president said he had a road map for normalizing relations with Vietnam"
+66734,road_metal,broken rock used for repairing or making roads
+66735,road_rage,violence exhibited by drivers in traffic
+66736,road_sense,good judgment in avoiding trouble or accidents on the road
+66737,road_show,a show on tour
+66738,road_surface,the paved surface of a paved roadway
+66739,road_test,a test to insure that a vehicle is roadworthy
+66740,road_to_Damascus,a sudden turning point in a person's life (similar to the sudden conversion of the Apostle Paul on the road from Jerusalem to Damascus of arrest Christians)
+66741,roadbed,a bed supporting a road
+66742,roadblock barricade,a barrier set up by police to stop traffic on a street or road in order to catch a fugitive or inspect traffic etc.
+66743,roadbook,a guidebook describing the roads of a country; contains maps and (sometimes) a gazetteer
+66744,roadhouse,an inn (usually outside city limits on a main road) providing meals and liquor and dancing and (sometimes) gambling
+66745,roadkill,the dead body of an animal that has been killed on a road by a vehicle; "vultures usually feed on carrion or roadkill"
+66746,roadman road_mender,a workman who is employed to repair roads
+66747,roadrunner chaparral_cock Geococcyx_californianus,speedy largely terrestrial bird found from California and Mexico to Texas
+66748,roads roadstead,a partly sheltered anchorage
+66749,roadster runabout two-seater,an open automobile having a front seat and a rumble seat
+66750,roadway,a road (especially that part of a road) over which vehicles travel
+66751,roadworthiness,(of motor vehicles) the quality of being fit to drive on the open road
+66752,roan,a soft sheepskin leather that is colored and finished to resemble morocco; used in bookbinding
+66753,roan,a horse having a brownish coat thickly sprinkled with white or gray
+66754,roar,the sound made by a lion
+66755,roarer bawler bellower screamer screecher shouter yeller,someone who communicates vocally in a very loud voice
+66756,roast joint,a piece of meat roasted or for roasting and of a size for slicing into more than one portion
+66757,roaster,a harsh or humorous critic (sometimes intended as a facetious compliment); "the honoree gave his roasters as good as he got"
+66758,roaster,a cook who roasts food
+66759,roaster,flesh of a large young chicken over 3 1/2 lb suitable for roasting
+66760,roaster,a special cooking pan for roasting
+66761,roasting,cooking (meat) by dry heat in an oven (usually with fat added); "the slow roasting took several hours"
+66762,robalo,a kind of percoid fish
+66763,robber,a thief who steals from someone by threatening violence
+66764,robber_fly bee_killer,swift predatory fly having a strong body like a bee with the proboscis hardened for sucking juices of other insects captured on the wing
+66765,robber_frog,small terrestrial frog of tropical America
+66766,robbery,larceny by threat of violence
+66767,robbery_conviction,conviction for robbery
+66768,robbery_suspect,someone suspected of committing robbery
+66769,robe,any loose flowing garment
+66770,robin American_robin Turdus_migratorius,large American thrush having a rust-red breast and abdomen
+66771,robin redbreast robin_redbreast Old_World_robin Erithacus_rubecola,small Old World songbird with a reddish breast
+66772,robin's_plantain Erigeron_pulchellus,common perennial of eastern North America having flowers with usually violet-purple rays
+66773,roble Platymiscium_trinitatis,large tree of Trinidad and Guyana having odd-pinnate leaves and violet-scented axillary racemes of yellow flowers and long smooth pods; grown as a specimen in parks and large gardens
+66774,roble_beech Nothofagus_obliqua,tall deciduous South American tree
+66775,robotic_telesurgery,microsurgery in which the surgeon performs surgery by manipulating the hands of a robot
+66776,robotics,the area of AI concerned with the practical use of robots
+66777,robotics_equipment,equipment used in robotics
+66778,robusta_coffee Rio_Nunez_coffee Coffea_robusta Coffea_canephora,native to West Africa but grown in Java and elsewhere; resistant to coffee rust
+66779,robustness,the characteristic of being strong enough to withstand intellectual challenge; "the lack of robustness in the findings may be due to the small size of the sample"
+66780,robustness hardiness lustiness,the property of being strong and healthy in constitution
+66781,roc,mythical bird of prey having enormous size and strength
+66782,roccella Roccella_tinctoria,a source of the dye archil and of litmus
+66783,rock,(figurative) someone who is strong and stable and dependable; "he was her rock during the crisis"; "Thou art Peter, and upon this rock I will build my church"--Gospel According to Matthew
+66784,rock careen sway tilt,pitching dangerously to one side
+66785,rock stone,material consisting of the aggregate of minerals like those making up the Earth's crust; "that mountain is solid rock"; "stone is abundant in New England and there are many quarries"
+66786,rock stone,a lump or mass of hard consolidated mineral matter; "he threw a rock at me"
+66787,rock_'n'_roll rock'n'roll rock-and-roll rock_and_roll rock rock_music,a genre of popular music originating in the 1950s; a blend of black rhythm-and-blues with white country-and-western; "rock is a generic term for the range of styles that evolved out of rock'n'roll."
+66788,rock_bass rock_sunfish Ambloplites_rupestris,game and food fish of upper Mississippi and Great Lakes
+66789,rock_beauty Holocanthus_tricolor,gold and black butterflyfish found from West Indies to Brazil
+66790,rock_bit roller_bit,a drill bit that has hardened rotating rollers
+66791,rock_bottom,the absolute bottom
+66792,rock_brake,dwarf deciduous lithophytic ferns
+66793,rock_cake,a small cake with a hard surface said to resemble a rock
+66794,rock_candy,sugar in large hard clear crystals on a string
+66795,rock_candy rock,hard bright-colored stick candy (typically flavored with peppermint)
+66796,rock_climber cragsman,a climber of vertical rock faces
+66797,rock_climbing,the sport or pastime of scaling rock masses on mountain sides (especially with the help of ropes and special equipment)
+66798,rock_concert,a performance of rock music
+66799,rock_crab Cancer_irroratus,crab of eastern coast of North America
+66800,rock_cress rockcress,any of several rock-loving cresses of the genus Arabis
+66801,rock_crystal transparent_quartz,a clear quartz used in making electronic and optical equipment
+66802,rock_dove rock_pigeon Columba_livia,pale grey Eurasian pigeon having black-striped wings from which most domestic species are descended
+66803,rock_elm Ulmus_thomasii,tall widely distributed elm of eastern North America
+66804,rock_garden rockery,a garden featuring rocks; usually alpine plants
+66805,rock_geranium Heuchera_americana,plant with basal leaves mottled with white and flowers in lax panicles on erect stems
+66806,rock_group rock_band,a band of musicians who play rock'n'roll music
+66807,rock_gunnel butterfish Pholis_gunnellus,slippery scaleless food fish of the northern Atlantic coastal waters
+66808,rock_hind Epinephelus_adscensionis,found around rocky coasts or on reefs
+66809,rock_hopper crested_penguin,small penguin of the Falkland Islands and New Zealand
+66810,rock_hyrax rock_rabbit Procavia_capensis,hyrax that lives in rocky areas
+66811,rock_opera,an opera with rock music
+66812,rock_penstemon cliff_penstemon Penstemon_rupicola,one of the West's most beautiful wildflowers; large brilliant pink or rose flowers in many racemes above thick mats of stems and leaves; ledges and cliffs from Washington to California
+66813,rock_pink Talinum_calycinum,pink-flowered perennial of rocky regions of western United States
+66814,rock_plant,plant that grows on or among rocks or is suitable for a rock garden
+66815,rock_polypody rock_brake American_wall_fern Polypodium_virgianum,chiefly lithophytic or epiphytic fern of North America and east Asia
+66816,rock_purslane,a plant of the genus Calandrinia
+66817,rock_python rock_snake Python_sebae,very large python of tropical and southern Africa
+66818,rock_rattlesnake Crotalus_lepidus,mountain rock dweller of Mexico and most southern parts of United States southwest
+66819,rock_salmon,any of several coarse fishes (such as dogfish or wolffish) when used as food
+66820,rock_sandwort Arenaria_stricta,low perennial tufted plant of southeastern North America
+66821,rock_sea_bass rock_bass Centropristis_philadelphica,a kind of sea bass
+66822,rock_spikemoss dwarf_lycopod Selaginella_rupestris,tufted spikemoss forming loose spreading mats; eastern North America
+66823,rock_squirrel Citellus_variegatus,large grey ground squirrel of rocky areas of the southwestern United States
+66824,rock_star,a famous singer of rock music
+66825,rock_wallaby rock_kangaroo,slender long-legged Australian wallabies living in caves and rocky areas
+66826,rock_wren Salpinctes_obsoletus,wren inhabiting badlands and mesa country of western United States and Mexico
+66827,rock_wren Xenicus_gilviventris,short-tailed bird resembling a wren
+66828,rockabilly,a fusion of black music and country music that was popular in the 1950s; sometimes described as blues with a country beat
+66829,rocker,an attendant who rocks a child in a cradle
+66830,rocker,a teenager or young adult in the 1960s who wore leather jackets and rode motorcycles
+66831,rocker,an ice skate with a curved blade
+66832,rocker,a curved support that permits the supported object to rock to and fro
+66833,rocker cradle,a trough that can be rocked back and forth; used by gold miners to shake auriferous earth in water in order to separate the gold
+66834,rocker rock_'n'_roll_musician,a performer or composer or fan of rock music
+66835,rocker_arm valve_rocker,a lever pivoted at the center; used especially to push a valve down in an internal-combustion engine
+66836,rockers bikers,originally a British youth subculture that evolved out of the teddy boys in the 1960s; wore black leather jackets and jeans and boots; had greased hair and rode motorcycles and listened to rock'n'roll; were largely unskilled manual laborers
+66837,rocket projectile,any vehicle self-propelled by a rocket engine
+66838,rocket rocket_engine,a jet engine containing its own propellant and driven by reaction propulsion
+66839,rocket roquette garden_rocket rocket_salad arugula Eruca_sativa Eruca_vesicaria_sativa,erect European annual often grown as a salad crop to be harvested when young and tender
+66840,rocket skyrocket,propels bright light high in the sky, or used to propel a lifesaving line or harpoon
+66841,rocket_base,a military base for rocket missiles
+66842,rocket_engineer rocket_scientist,an engineer who builds and tests rockets
+66843,rocket_firing rocket_launching,the launching of a rocket or missile under its own power
+66844,rocket_fuel rocket_propellant rocket_propellent,an explosive charge that propels a rocket
+66845,rocket_larkspur Consolida_ambigua Delphinium_ajacis,commonly cultivated larkspur of southern Europe having unbranched spikelike racemes of blue or sometimes purplish or pinkish flowers; sometime placed in genus Delphinium
+66846,rocket_propulsion,reaction propulsion using stored oxygen for combustion; used where there is insufficient atmospheric oxygen
+66847,rocket_range,a firing range for rocket missiles
+66848,rocket_scientist,a clever thinker; "you do not have to be a rocket scientist to figure that out"
+66849,rocketry,the branch of engineering science that studies rocket design and operation
+66850,rockfish,the lean flesh of any of various valuable market fish caught among rocks
+66851,rockfish,marine food fish found among rocks along the northern coasts of Europe and America
+66852,rockiness,the quality of abounding in rocks and stones; "due to the rockiness of the land it was quickly dry even after a heavy rain"
+66853,rocking_chair rocker,a chair mounted on rockers
+66854,rockrose rock_rose,any of numerous varieties of helianthemums having small rose-like yellow or white or reddish flowers
+66855,rockrose rock_rose,small shrubs of scrub and dry woodland regions of southern Europe and North Africa; grown for their showy flowers and soft often downy and aromatic evergreen foliage
+66856,rockslide,a landslide of rocks
+66857,rockweed,coarse brown seaweed growing on rocks exposed at low tide
+66858,rococo,fanciful but graceful asymmetric ornamentation in art and architecture that originated in France in the 18th century
+66859,rod,a long thin implement made of metal or wood
+66860,rod,any rod-shaped bacterium
+66861,rod rod_cell retinal_rod,a visual receptor cell that is sensitive to dim light
+66862,rodent gnawer,relatively small placental mammals having a single pair of constantly growing incisor teeth specialized for gnawing
+66863,rodeo,an enclosure for cattle that have been rounded up
+66864,rodeo,an exhibition of cowboy skills
+66865,roe,eggs of female fish
+66866,roe,the egg mass or spawn of certain crustaceans such as the lobster
+66867,roe,the eggs or egg-laden ovary of a fish
+66868,roe hard_roe,fish eggs or egg-filled ovary; having a grainy texture
+66869,roe_deer Capreolus_capreolus,small graceful deer of Eurasian woodlands having small forked antlers
+66870,roebuck,male roe deer
+66871,roentgen R,a unit of radiation exposure; the dose of ionizing radiation that will produce 1 electrostatic unit of electricity in 1 cc of dry air
+66872,roentgenium Rg element_111 atomic_number_111,a radioactive transuranic element
+66873,roentgenogram X_ray X-ray X-ray_picture X-ray_photograph,a radiogram made by exposing photographic film to X rays; used in medical diagnosis
+66874,roentgenography X-ray_photography,radiography that uses X-rays to produce a roentgenogram
+66875,rofecoxib Vioxx,a Cox-2 inhibitor (trade name Vioxx) that relieves pain and inflammation without harming the digestive tract; voluntarily withdrawn from the market in 2004
+66876,rogation,a solemn supplication ceremony prescribed by the church
+66877,rogue knave rascal rapscallion scalawag scallywag varlet,a deceitful and unreliable scoundrel
+66878,rogue's_gallery,a collection of pictures of criminals
+66879,rogue_elephant,a wild and vicious elephant separated from the herd
+66880,rogue_state renegade_state rogue_nation,a state that does not respect other states in its international actions
+66881,roisterer,an especially noisy and unrestrained merrymaker
+66882,role,normal or customary activity of a person in a particular social setting; "what is your role on the team?"
+66883,roleplaying,acting a particular role (as in psychotherapy)
+66884,roll,photographic film rolled up inside a container to protect it from light
+66885,roll,anything rolled up in cylindrical form
+66886,roll,walking with a swaying gait
+66887,roll,a flight maneuver; aircraft rotates about its longitudinal axis without changing direction or losing altitude
+66888,roll bowl,the act of rolling something (as the ball in bowling)
+66889,roll roster,a list of names; "his name was struck off the rolls"
+66890,roll-on,a dispenser of a liquid cosmetic (such as a deodorant) having a revolving ball as an applicator
+66891,roll-on,a woman's foundation garment rolled on to the hips
+66892,roll-on_roll-off,a method of transport (as a ferry or train or plane) that vehicles roll onto at the beginning and roll off of at the destination
+66893,roll_call,calling out an official list of names
+66894,roll_film,photographic film wound on a spool
+66895,roll_of_tobacco smoke,tobacco leaves that have been made into a cylinder
+66896,rollback,reducing prices back to some earlier level
+66897,rollback push_back,the act of forcing the enemy to withdraw
+66898,rolled_biscuit,biscuit made from dough rolled and cut
+66899,roller,a small wheel without spokes (as on a roller skate)
+66900,roller,a cylinder that revolves
+66901,roller,Old World bird that tumbles or rolls in flight; related to kingfishers
+66902,roller,a grounder that rolls along the infield
+66903,roller roll rolling_wave,a long heavy sea wave as it advances towards the shore
+66904,roller tumbler tumbler_pigeon,pigeon that executes backward somersaults in flight or on the ground
+66905,roller-skater,someone who engages in roller skating
+66906,roller_bandage,bandage consisting of a strip of sterile fabric (of variable width) rolled into a cylinder to facilitate application
+66907,roller_blind,a window shade that rolls up out of the way
+66908,roller_coaster,anything characterized by abrupt and extreme changes (especially up and down); "the economy has been on a roller coaster all year"
+66909,roller_coaster big_dipper chute-the-chute,elevated railway in an amusement park (usually with sharp curves and steep inclines)
+66910,roller_skate,a shoe with pairs of rollers fixed to the sole
+66911,roller_skating,skating on wheels
+66912,roller_towel,a towel with the ends sewn together, hung on a roller
+66913,rollerblader,a skater who uses Rollerblades
+66914,rollerblading,skating using Rollerblades
+66915,rolling,the act of robbing a helpless person; "he was charged with rolling drunks in the park"
+66916,rolling_hitch,a hitch for fastening a line to a spar or another rope
+66917,rolling_mill,steel mill where metal is rolled into sheets and bars
+66918,rolling_pin,utensil consisting of a cylinder (usually of wood) with a handle at each end; used to roll out dough
+66919,rolling_stock,collection of wheeled vehicles owned by a railroad or motor carrier
+66920,rollmops,a pickled herring filet that has been rolled or wrapped around a pickle
+66921,rollover,the act of changing the institution that invests your pension plan without incurring a tax penalty
+66922,roly-poly roly-poly_pudding,pudding made of suet pastry spread with jam or fruit and rolled up and baked or steamed
+66923,roman roman_type roman_letters roman_print,a typeface used in ancient Roman inscriptions
+66924,roman_a_clef,a novel in which actual persons and events are disguised as fictional characters
+66925,roman_fleuve,a French novel in the form of a long chronicle of a family or other social group
+66926,romance,a novel dealing with idealized events remote from everyday life
+66927,romantic,a soulful or amorous idealist
+66928,romanticism,impractical romantic ideals and attitudes
+66929,romanticism romance,an exciting and mysterious quality (as of a heroic time or adventure)
+66930,romanticist romantic,an artist of the Romantic Movement or someone influenced by Romanticism
+66931,romper,a person who romps or frolics
+66932,romper romper_suit,a one-piece garment for children to wear at play; the lower part is shaped like bloomers
+66933,rondeau rondel,a French verse form of 10 or 13 lines running on two rhymes; the opening phrase is repeated as the refrain of the second and third stanzas
+66934,rondelet,a shorter form of rondeau
+66935,rondo rondeau,a musical form that is often the last movement of a sonata
+66936,rood_screen,a screen in a church; separates the nave from the choir or chancel
+66937,roof,the inner top surface of a covered area or hollow space; "the roof of the cave was very high"; "I could see the roof of the bear's mouth"
+66938,roof,protective covering on top of a motor vehicle
+66939,roof,a protective covering that covers or forms the top of a building
+66940,roof_garden,a garden on a flat roof of a building
+66941,roof_peak,the highest point of a roof
+66942,roofer,a craftsman who lays or repairs roofs
+66943,roofing,material used to construct a roof
+66944,roofing,the craft of a roofer
+66945,roofing_material,building material used in constructing roofs
+66946,roofing_paper tar_paper,a heavy paper impregnated with tar and used as part of a roof for waterproofing
+66947,rooftop,the top of a (usually flat) roof
+66948,rooibos Aspalathus_linearis Aspalathus_cedcarbergensis,South African shrub having flat acuminate leaves and yellow flowers; leaves are aromatic when dried and used to make an herbal tea
+66949,rook Corvus_frugilegus,common gregarious Old World bird about the size and color of the American crow
+66950,rookery,a breeding ground for gregarious birds (such as rooks)
+66951,room,opportunity for; "room for improvement"
+66952,room,the people who are present in a room; "the whole room was cheering"
+66953,room,an area within a building enclosed by walls and floor and ceiling; "the rooms were very small but they had a nice view"
+66954,room way elbow_room,space for movement; "room to pass"; "make way for"; "hardly enough elbow room to turn around"
+66955,room_clerk,a hotel clerk who is responsible for room assignments to guests
+66956,room_light,light that provides general illumination for a room
+66957,room_rate,the rate charged daily for a hotel room
+66958,room_temperature,the normal temperature of room in which people live
+66959,roomette,a small private compartment for one on a sleeping car
+66960,roomful,the quantity a room will hold
+66961,roommate roomie roomy,an associate who shares a room with you
+66962,roost,a shelter with perches for fowl or other birds
+66963,roost,a perch on which domestic fowl rest or sleep
+66964,root,a number that, when multiplied by itself some number of times, equals a given number
+66965,root,(botany) the usually underground organ that lacks buds or leaves or nodes; absorbs water and mineral salts; usually it anchors the plant to the ground
+66966,root,the embedded part of a bodily structure such as a tooth, nail, or hair
+66967,root root_word base stem theme radical,(linguistics) the form of a word after all affixes are removed; "thematic vowels are part of the stem"
+66968,root_beer,carbonated drink containing extracts of roots and herbs
+66969,root_beer_float,an ice-cream soda made with ice cream floating in root beer
+66970,root_canal,the passage in the root of a tooth through which its nerve and blood vessels enter the pulp cavity
+66971,root_cap,thimble-shaped mass of cells covering and protecting the growing tip of a root
+66972,root_cellar cellar,an excavation where root vegetables are stored
+66973,root_climber,a plant that climbs by its adventitious roots e.g. ivy
+66974,root_crop,crop grown for its enlarged roots: e.g. beets; potatoes; turnips
+66975,root_hair,thin hairlike outgrowth of an epidermal cell just behind the tip; absorbs nutrients from the soil
+66976,root_rot,disease characterized by root decay; caused by various fungi
+66977,root_vegetable,any of various fleshy edible underground roots or tubers
+66978,rootage,fixedness by or as if by roots; "strengthened by rootage in the firm soil of faith"
+66979,rootage root_system,a developed system of roots
+66980,rooting,the process of putting forth roots and beginning to grow
+66981,rooting_reflex,reflex consisting of head-turning and sucking movements elicited in a normal infant by gently stroking the side of the mouth or cheek
+66982,rootlet,small root or division of a root
+66983,roots,the condition of belonging to a particular place or group by virtue of social or ethnic or cultural lineage; "his roots in Texas go back a long way"; "he went back to Sweden to search for his roots"; "his music has African roots"
+66984,rootstock,root or part of a root used for plant propagation; especially that part of a grafted plant that supplies the roots
+66985,rope,a strong line
+66986,rope-a-dope,a boxing tactic: pretending to be trapped against the ropes while your opponent wears himself out throwing punches
+66987,rope_bridge,a bridge consisting of ropes
+66988,rope_burn,abrasion (usually on the hands) caused by friction from a rope
+66989,rope_ladder,a ladder with side pieces of rope
+66990,rope_tow,a ski tow offering only a moving rope to hold onto
+66991,rope_yarn,the strands out of which ropes are made
+66992,ropemaker rope-maker roper,a craftsman who makes ropes
+66993,roper,a decoy who lures customers into a gambling establishment (especially one with a fixed game)
+66994,roper,a cowboy who uses a lasso to rope cattle or horses
+66995,ropewalk rope_yard,workplace consisting of a long narrow path or shed where rope is made
+66996,ropewalker ropedancer,an acrobat who performs on a rope stretched at some height above the ground
+66997,roping,capturing cattle or horses with a lasso
+66998,roridula,either of 2 species of the genus Roridula; South African viscid perennial low-growing woody shrubs
+66999,rorqual razorback,any of several baleen whales of the family Balaenopteridae having longitudinal grooves on the throat and a small pointed dorsal fin
+67000,rosary prayer_beads,a string of beads used in counting prayers (especially by Catholics)
+67001,rose rosebush,any of many shrubs of the genus Rosa that bear roses
+67002,rose rosiness,a dusty pink color
+67003,rose-colored_starling rose-colored_pastor Pastor_sturnus Pastor_roseus,glossy black bird with pink back and abdomen; chiefly Asian
+67004,rose-root midsummer-men Sedum_rosea,Eurasian mountain plant with fleshy pink-tipped leaves and a cluster of yellow flowers
+67005,rose_apple,fragrant oval yellowish tropical fruit used in jellies and confections
+67006,rose_apple rose-apple_tree jambosa Eugenia_jambos,tropical tree of the East Indies cultivated for its edible fruit
+67007,rose_bed bed_of_roses,a flower bed in which roses are growing
+67008,rose_chafer rose_beetle Cetonia_aurata,a common metallic green European beetle: larvae feed on plant roots and adults on leaves and flowers of e.g. roses
+67009,rose_chafer rose_bug Macrodactylus_subspinosus,common North American beetle: larvae feed on roots and adults on leaves and flowers of e.g. rose bushes or apple trees or grape vines
+67010,rose_chestnut ironwood ironwood_tree Mesua_ferrea,handsome East Indian evergreen tree often planted as an ornamental for its fragrant white flowers that yield a perfume; source of very heavy hardwood used for railroad ties
+67011,rose_garden,a garden for growing roses
+67012,rose_geranium sweet-scented_geranium Pelargonium_graveolens,any of several southern African geraniums having fragrant three-lobed to five-lobed leaves and pink flowers
+67013,rose_globe_lily Calochortus_amoenus,globe lily with deep rose-pink or purple egg-shaped flowers on flexuous stems; western slopes of Sierra Nevada in San Joaquin Valley
+67014,rose_gum Eucalypt_grandis,very tall tree of Queensland and New South Wales
+67015,rose_mallow Alcea_rosea Althea_rosea,plant with terminal racemes of showy white to pink or purple flowers; the English cottage garden hollyhock
+67016,rose_mallow swamp_mallow common_rose_mallow swamp_rose_mallow Hibiscus_moscheutos,showy shrub of salt marshes of the eastern United States having large rose-colored flowers
+67017,rose_moss sun_plant Portulaca_grandiflora,widely cultivated in many varieties for its fleshy moss-like foliage and profusion of brightly colored flowers
+67018,rose_of_Jericho resurrection_plant Anastatica_hierochuntica,small grey Asiatic desert plant bearing minute white flowers that rolls up when dry and expands when moist
+67019,rose_of_Sharon Hibiscus_syriacus,Asiatic shrub or small shrubby tree having showy bell-shaped rose or purple or white flowers and usually three-lobed leaves; widely cultivated in temperate North America and Europe
+67020,rose_quartz,a translucent rose-red variety of quartz used for ornaments
+67021,rose_water,perfume consisting of water scented with oil of roses
+67022,rose_window rosette,circular window filled with tracery
+67023,roseate_spoonbill Ajaia_ajaja,tropical rose-colored New World spoonbill
+67024,rosebay Rhododendron_maxima,late-spring-blooming rhododendron of eastern North America having rosy to pink-purple flowers
+67025,rosebud,the bud of a rose
+67026,rosebud,(a literary reference to) a pretty young girl
+67027,rosebud_cherry winter_flowering_cherry Prunus_subhirtella,shrub or tree native to Japan cultivated as an ornamental for its rose-pink flowers
+67028,rosebud_orchid Cleistes_rosea Pogonia_rosea,orchid of central and northern South America having 1- to 3-blossomed racemes of large showy rose-colored flowers; sometimes placed in genus Pogonia
+67029,rosefish ocean_perch Sebastodes_marinus,large fish of northern Atlantic coasts of America and Europe
+67030,roselle rozelle sorrel red_sorrel Jamaica_sorrel Hibiscus_sabdariffa,East Indian sparsely prickly annual herb or perennial subshrub widely cultivated for its fleshy calyxes used in tarts and jelly and for its bast fiber
+67031,rosemaling,a Scandinavian style of carved or painted decoration (as on furniture or walls or dinnerware) consisting of floral motifs
+67032,rosemary,extremely pungent leaves used fresh or dried as seasoning for especially meats
+67033,rosemary Rosmarinus_officinalis,widely cultivated for its fragrant grey-green leaves used in cooking and in perfumery
+67034,rosette,a cluster of leaves growing in crowded circles from a common center or crown (usually at or close to the ground)
+67035,rosette,an ornament or pattern resembling a rose that is worn as a badge of office or as recognition of having won an honor
+67036,rosewood,hard dark reddish wood of a rosewood tree having a strongly marked grain; used in cabinetwork
+67037,rosewood rosewood_tree,any of those hardwood trees of the genus Dalbergia that yield rosewood--valuable cabinet woods of a dark red or purplish color streaked and variegated with black
+67038,rosid_dicot_family,a family of dicotyledonous plants
+67039,rosid_dicot_genus,a genus of dicotyledonous plants
+67040,rosilla Helenium_puberulum,a sneezeweed of southwestern United States especially southern California
+67041,rosin_bag,a bag filled with rosin; used by baseball pitchers to improve their grip on the ball
+67042,rosinweed Silphium_laciniatum,North American perennial having a resinous odor and yellow flowers
+67043,rosita Centaurium_calycosum,erect plant with small clusters of pink trumpet-shaped flowers of southwestern United States
+67044,rosy_boa Lichanura_trivirgata,boa of rocky desert of southwestern United States
+67045,rota,a roster of names showing the order in which people should perform certain duties
+67046,rotary_actuator positioner,(computer science) the actuator that moves a read/write head to the proper data track
+67047,rotary_engine,an internal-combustion engine in which power is transmitted directly to rotating components
+67048,rotary_press,a printing press for printing from a revolving cylinder
+67049,rotating_mechanism,a mechanism that rotates
+67050,rotating_shaft shaft,a revolving rod that transmits power or motion
+67051,rotation,(mathematics) a transformation in which the coordinate axes are rotated by a fixed angle about the origin
+67052,rotation,a planned recurrent sequence (of crops or personnel etc.); "crop rotation makes a balanced demand on the fertility of the soil"; "the manager had only four starting pitchers in his rotation"
+67053,rotation revolution gyration,a single complete turn (axial or orbital); "the plane made three rotations before it crashed"; "the revolution of the earth about the sun takes one year"
+67054,rotation rotary_motion,the act of rotating as if on an axis; "the rotation of the dancer kept time with the music"
+67055,rotational_latency latency,(computer science) the time it takes for a specific block of data on a data track to rotate around to the read/write head
+67056,rotational_nystagmus,nystagmus caused by the body rotating rapidly; large slow movements of the eyeballs are in the direction of rotation
+67057,rotator_cuff,a supporting structure of the shoulder consisting of the muscles and tendons that attach the arm to the shoulder joint and enable the arm to move
+67058,rotavirus,the reovirus causing infant enteritis
+67059,rote rote_learning,memorization by repetition
+67060,rotenone,a white crystalline insecticide that has low toxicity for mammals; is used in home gardens; extracted from the roots of derris and cube
+67061,rotgut,any alcoholic beverage of inferior quality
+67062,rotifer,minute aquatic multicellular organisms having a ciliated wheel-like organ for feeding and locomotion; constituents of freshwater plankton
+67063,rotisserie,an oven or broiler equipped with a rotating spit on which meat cooks as it turns
+67064,rotisserie,a restaurant that specializes in roasted and barbecued meats
+67065,rotl,a unit of weight used in some Moslem countries near the Mediterranean; varies between one and five pounds
+67066,rotogravure,printing by transferring an image from a photogravure plate to a cylinder in a rotary press
+67067,rotogravure,printed material (text and pictures) produced by an intaglio printing process in a rotary press
+67068,rotor,the revolving bar of a distributor
+67069,rotor,rotating mechanism consisting of an assembly of rotating airfoils; "there are horizontal rotors on a helicopter or compressor rotors in a jet engine"
+67070,rotor rotor_coil,the rotating armature of a motor or generator
+67071,rotor_blade rotary_wing,the long airfoil that rotates to provide the lift that supports a helicopter in the air
+67072,rotor_head rotor_shaft,the axis around which the major rotor of a helicopter turns
+67073,rotten_borough,an English parliamentary constituency with few electors
+67074,rottenstone tripoli,a weathered and decomposed siliceous limestone; in powdered form it is used in polishing
+67075,rotter dirty_dog rat skunk stinker stinkpot bum puke crumb lowlife scum_bag so-and-so git,a person who is deemed to be despicable or contemptible; "only a rotter would do that"; "kill the rat"; "throw the bum out"; "you cowardly little pukes!"; "the British call a contemptible person a `git'"
+67076,rotunda,a building having a circular plan and a dome
+67077,rotunda,a large circular room
+67078,rouge paint blusher,makeup consisting of a pink or red powder applied to the cheeks
+67079,rouge_et_noir trente-et-quarante,a card game in which two rows of cards are dealt and players can bet on the color of the cards or on which row will have a count nearer some number
+67080,rough,the part of a golf course bordering the fairway where the grass is not cut short
+67081,rough-leaved_aster,a variety of aster
+67082,rough-legged_hawk roughleg Buteo_lagopus,large hawk of the northern hemisphere that feeds chiefly on small rodents and is beneficial to farmers
+67083,rough-skinned_newt Taricha_granulosa,newt of humid coast from Alaska to southern California
+67084,rough-stemmed_goldenrod,a variety of goldenrod
+67085,rough_bindweed Smilax_aspera,creeping or climbing evergreen having spiny zigzag stems with shiny leaves and racemes of pale-green flowers; Canary Islands to southern Europe and Ethiopia and India
+67086,rough_cut,the first print of a movie after preliminary editing
+67087,rough_fish,any fish useless for food or sport or even as bait
+67088,rough_green_snake Opheodrys_aestivus,of southern and eastern United States
+67089,roughage fiber,coarse, indigestible plant food low in nutrients; its bulk stimulates intestinal peristalsis
+67090,roughcast,a coarse plaster for the surface of external walls
+67091,roughcast,a rough preliminary model
+67092,roughness,harsh or severe speech or behavior; "men associate the roughness of nonstandard working-class speech with masculinity"; "the roughness of her voice was a signal to keep quiet"
+67093,roughness raggedness,a texture of a surface or edge that is not smooth but is irregular and uneven
+67094,roughrider,a horseman skilled at breaking wild horses to the saddle
+67095,roughtail_stingray Dasyatis_centroura,one of the largest stingrays; found from Cape Cod to Cape Hatteras
+67096,roulade,a dish consisting of a slice of meat that is rolled around a filling and cooked
+67097,roulade,(music) an elaborate run of several notes sung to one syllable
+67098,rouleau,a roll of ribbon
+67099,rouleau,a roll of coins wrapped in paper
+67100,roulette,a gambling game in which players bet on which compartment of a revolving wheel a small ball will come to rest in
+67101,roulette line_roulette,a line generated by a point on one figure rolling around a second figure
+67102,roulette toothed_wheel,a wheel with teeth for making a row of perforations
+67103,roulette_ball,the ball used to play roulette
+67104,roulette_wheel wheel,game equipment consisting of a wheel with slots that is used for gambling; the wheel rotates horizontally and players bet on which slot the roulette ball will stop in
+67105,round,the course along which communications spread; "the story is going the rounds in Washington"
+67106,round,a cut of beef between the rump and the lower leg
+67107,round,an outburst of applause; "there was a round of applause"
+67108,round,(often plural) a series of professional calls (usually in a set order); "the doctor goes on his rounds first thing every morning"; "the postman's rounds"; "we enjoyed our round of the local bars"
+67109,round daily_round,the usual activities in your day; "the doctor made his rounds"
+67110,round round_of_drinks,a serving to each of a group (usually alcoholic); "he ordered a second round"
+67111,round troll,a partsong in which voices follow each other; one voice starts and others join in one after another until all are singing different parts of the song at the same time; "they enjoyed singing rounds"
+67112,round unit_of_ammunition one_shot,a charge of ammunition for a single shot
+67113,round-bottom_flask,a spherical flask with a narrow neck
+67114,round-headed_leek Allium_sphaerocephalum,Old World leek with a spherical bulb
+67115,round-leaved_rein_orchid Habenaria_orbiculata,orchid having a raceme of large greenish-white flowers on a single flower stalk growing between two elliptic or round basal leaves lying on the ground; from northern Oregon and Montana across Canada to the eastern United States
+67116,round-tailed_muskrat Florida_water_rat Neofiber_alleni,of Florida wetlands
+67117,round-the-clock_patrol,a continuous nonstop patrol
+67118,round-trip_light_time RTLT,the elapsed time it takes for a signal to travel from Earth to a spacecraft (or other body) and back to the starting point
+67119,round-trip_ticket return_ticket,a ticket to a place and back (usually over the same route)
+67120,round_arch,an arch formed in a continuous curve; characteristic of Roman architecture
+67121,round_bone,bones that are round in shape
+67122,round_dance ring_dance,a folk dance; dancers form a circle
+67123,round_dance round_dancing,a ballroom dance characterized by revolving movement
+67124,round_file,a file with a circular cross section; used to file the inside of holes
+67125,round_hand,a clearly written style of longhand with large round curves
+67126,round_ligament_of_the_uterus ligamentum_teres_uteri,ligament attached to the uterus on either side in front of and below the opening of the Fallopian tube and passing through the inguinal canal to the labia majora
+67127,round_of_golf round,the activity of playing 18 holes of golf; "a round of golf takes about 4 hours"
+67128,round_robin,a tournament in which every contestant plays every other contestant
+67129,round_robin,a letter signed by a number of people
+67130,round_scad cigarfish quiaquia Decapterus_punctatus,small fusiform fish of western Atlantic
+67131,round_shape,a shape that is curved and without sharp angles
+67132,round_steak,a lean cut of beef from between the rump and the shank
+67133,round_table roundtable round-table_conference,a meeting of peers for discussion and exchange of views; "a roundtable on the future of computing"
+67134,round_trip,a trip to some place and back again
+67135,round_whitefish Menominee_whitefish Prosopium_cylindraceum,a whitefish with a bronze back; of northern North America and Siberia
+67136,roundedness bulginess,the property possessed by a rounded convexity
+67137,roundel,English form of rondeau having three triplets with a refrain after the first and third
+67138,roundel,round piece of armor plate that protects the armpit
+67139,roundel,(heraldry) a charge in the shape of a filled circle; "a hollow roundel"
+67140,roundelay,a song in which a line or phrase is repeated as the refrain
+67141,rounder,a tool for rounding corners or edges
+67142,rounders,an English ball game similar to baseball
+67143,roundhead,a brachycephalic person
+67144,roundhouse,workplace consisting of a circular building for repairing locomotives
+67145,roundhouse,a hook delivered with an exaggerated swing
+67146,rounding rounding_error,(mathematics) a miscalculation that results from rounding off numbers to a convenient number of decimals; "the error in the calculation was attributable to rounding"; "taxes are rounded off to the nearest dollar but the rounding error is surprisingly small"
+67147,roundness,the quality of being round numbers; "he gave us the results in round numbers, but their roundness didn't affect the point he was making"
+67148,roundness,the property possessed by a line or surface that is curved and not angular
+67149,roundness rotundity,the fullness of a tone of voice; "there is a musky roundness to his wordiness"
+67150,roundsman,a workman employed to make rounds (to deliver goods or make inspections or so on)
+67151,roundup,a summary list; as in e.g. "a news roundup"
+67152,roundup,the activity of gathering livestock together so that they can be counted or branded or sold
+67153,roundup,the systematic gathering up of suspects by the police; "a mass roundup of suspects"
+67154,rout,an overwhelming defeat
+67155,routemarch,a long training march for troops
+67156,router,a worker who routes shipments for distribution and delivery
+67157,router,(computer science) a device that forwards data packets between computer networks
+67158,router,a power tool with a shaped cutter; used in carpentry for cutting grooves
+67159,router_plane,a woodworking plane with a narrow cutting head that will make grooves with smooth bottoms
+67160,routine modus_operandi,an unvarying or habitual method or procedure
+67161,routine subroutine subprogram procedure function,a set sequence of steps, part of larger computer program
+67162,roux,a mixture of fat and flour heated and used as a basis for sauces
+67163,rove_beetle,active beetle typically having predatory or scavenging habits
+67164,rover scouter,an adult member of the Boy Scouts movement
+67165,row,a long continuous strip (usually running horizontally); "a mackerel sky filled with rows of clouds"; "rows of barbed wire protected the trenches"
+67166,row,a linear array of numbers, letters, or symbols side by side
+67167,row,an arrangement of objects or people side by side in a line; "a row of chairs"
+67168,row,a continuous chronological succession without an interruption; "they won the championship three years in a row"
+67169,row_house town_house,a house that is one of a row of identical houses situated side by side and sharing common walls
+67170,row_of_bricks,a course of bricks place next to each other (usually in a straight line)
+67171,rowan rowan_tree European_mountain_ash Sorbus_aucuparia,Eurasian tree with orange-red berrylike fruits
+67172,rowanberry,decorative red berrylike fruit of a rowan tree
+67173,rowdiness rowdyism roughness disorderliness,rowdy behavior
+67174,rowel,a small spiked wheel at the end of a spur
+67175,rowing row,the act of rowing as a sport
+67176,rowing_boat,a rowboat
+67177,rowing_club,a club for rowers
+67178,rowlock_arch,an arch that is formed with more than one concentric row of voussoirs
+67179,royal,a sail set next above the topgallant on a royal mast
+67180,royal royal_stag,stag with antlers of 12 or more branches
+67181,royal_agaric Caesar's_agaric Amanita_caesarea,widely distributed edible mushroom resembling the fly agaric
+67182,royal_brace,a brace to secure the royal mast
+67183,royal_casino,a form of casino in which face cards have extra point values
+67184,royal_charter,a charter granted by the sovereign (especially in Great Britain)
+67185,royal_fern royal_osmund king_fern ditch_fern French_bracken Osmunda_regalis,large deeply rooted fern of worldwide distribution with upright bipinnate compound tufted fronds
+67186,royal_flush,a poker hand with the ace, king, queen, jack, and 10 all in the same suit
+67187,royal_jelly,a secretion of the pharyngeal glands of bees that is fed to very young larvae and to bees destined to be queens
+67188,royal_mast,topmast immediately above the topgallant mast
+67189,royal_palm Roystonea_regia,tall feather palm of southern Florida and Cuba
+67190,royal_poinciana flamboyant flame_tree peacock_flower Delonix_regia Poinciana_regia,showy tropical tree or shrub native to Madagascar; widely planted in tropical regions for its immense racemes of scarlet and orange flowers; sometimes placed in genus Poinciana
+67191,royal_road,an auspicious way or means to achieve something; "the royal road to success"
+67192,royal_tennis real_tennis court_tennis,an ancient form of tennis played in a four-walled court
+67193,royalism,adherence or attachment to a monarchy or to the principle of monarchal government
+67194,royalty,payment to the holder of a patent or copyright or resource for the right to use their property; "he received royalties on his book"
+67195,royalty royal_family royal_line royal_house,royal persons collectively; "the wedding was attended by royalty"
+67196,rub wipe,the act of rubbing or wiping; "he gave the hood a quick rub"
+67197,rub-a-dub rataplan drumbeat,the sound made by beating a drum
+67198,rub_up,a review that refreshes your memory; "I need a rub up on my Latin"
+67199,rubato,a flexible tempo; not strictly on the beat
+67200,rubber,a contest consisting of a series of successive matches between the same sides; "he won three out of five games to take the rubber"
+67201,rubber natural_rubber India_rubber gum_elastic caoutchouc,an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products
+67202,rubber synthetic_rubber,any of various synthetic elastic materials whose properties resemble natural rubber
+67203,rubber_band elastic_band elastic,a narrow band of elastic rubber used to hold things (such as papers) together
+67204,rubber_boa tow-headed_snake Charina_bottae,boa of grasslands and woodlands of western North America; looks and feels like rubber with tail and head of similar shape
+67205,rubber_boot gum_boot,a high boot made of rubber
+67206,rubber_bullet,a bullet made of hard rubber; designed for use in crowd control
+67207,rubber_cement,an adhesive made by dissolving unvulcanized rubber in a solvent like benzene or naphtha
+67208,rubber_eraser rubber pencil_eraser,an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil
+67209,rubber_stamp,routine authorization of an action without questions
+67210,rubberneck rubbernecker,a person who stares inquisitively
+67211,rubbing,representation consisting of a copy (as of an engraving) made by laying paper over something and rubbing it with charcoal
+67212,rubbing_alcohol,lotion consisting of a poisonous solution of isopropyl alcohol or denatured ethanol alcohol for external use
+67213,rubbish trash scrap,worthless material that is to be disposed of
+67214,rubdown,the act of rubbing down, usually for relaxation or medicinal purposes
+67215,rubefacient,a medicine for external application that produces redness of the skin
+67216,rubel,the basic unit of money in Belarus
+67217,rubella_panencephalitis,a rare loss of mental and physical skills in adolescents; associated with the rubella virus
+67218,rubicelle,a yellow or orange variety of ruby spinel
+67219,rubidium Rb atomic_number_37,a soft silvery metallic element of the alkali metal group; burns in air and reacts violently in water; occurs in carnallite and lepidolite and pollucite
+67220,rubidium-strontium_dating,geological dating based on the proportions of radioactive rubidium into its decay product strontium; radioactive rubidium has a half-life of 47,000,000,000 years
+67221,ruble,the basic unit of money in Tajikistan
+67222,ruble rouble,the basic unit of money in Russia
+67223,rubric,directions for the conduct of Christian church services (often printed in red in a prayer book)
+67224,rubric,an authoritative rule of conduct or procedure
+67225,rubric,a title or heading that is printed in red or in a special type
+67226,rubric,category name; "it is usually discussed under the rubric of `functional obesity'"
+67227,ruby,a transparent deep red variety of corundum; used as a gemstone and in lasers
+67228,ruby,a transparent piece of ruby that has been cut and polished and is valued as a precious gem
+67229,ruby-crowned_kinglet ruby-crowned_wren Regulus_calendula,American kinglet with a notable song and in the male a red crown patch
+67230,ruby_wood red_sandalwood,hard durable wood of red sandalwood trees (Pterocarpus santalinus); prized for cabinetwork
+67231,ruck herd,a crowd especially of ordinary or undistinguished persons or things; "his brilliance raised him above the ruck"; "the children resembled a fairy herd"
+67232,rudaceous_rock,a sedimentary rock formed of coarse-grained material
+67233,rudapithecus Dryopithecus_Rudapithecus_hungaricus,fossil hominoids from northern central Hungary; late Miocene
+67234,rudd Scardinius_erythrophthalmus,European freshwater fish resembling the roach
+67235,rudder,a hinged vertical airfoil mounted at the tail of an aircraft and used to make horizontal course changes
+67236,rudder,(nautical) steering mechanism consisting of a hinged vertical plate mounted at the stern of a vessel
+67237,rudder_blade,the vertical blade on a rudder
+67238,rudderfish banded_rudderfish Seriola_zonata,fish having the habit of following ships; found in North American and South American coastal waters
+67239,rudderpost rudderstock,a vertical post at the forward edge of a rudder that enables the rudder to pivot
+67240,ruddiness rosiness,a healthy reddish complexion
+67241,ruddle reddle raddle,a red iron ore used in dyeing and marking
+67242,ruddy_duck Oxyura_jamaicensis,reddish-brown stiff-tailed duck of North America and northern South America
+67243,ruddy_turnstone Arenaria_interpres,common Arctic turnstone that winters in South America and Australia
+67244,rudiment,the remains of a body part that was functional at an earlier stage of life; "Meckel's diverticulum is the rudiment of the embryonic yolk sac"
+67245,rudiments first_principles alphabet ABC ABC's ABCs,the elementary stages of any subject (usually plural); "he mastered only the rudiments of geometry"
+67246,rue,leaves sometimes used for flavoring fruit or claret cup but should be used with great caution: can cause irritation like poison ivy
+67247,rue,(French) a street or road in France
+67248,rue herb_of_grace Ruta_graveolens,European strong-scented perennial herb with grey-green bitter-tasting leaves; an irritant similar to poison ivy
+67249,rue_anemone Anemonella_thalictroides,woodland flower native to eastern North America having cup-shaped flowers reminiscent of anemone but more delicate
+67250,ruff Philomachus_pugnax,common Eurasian sandpiper; the male has an erectile neck ruff in breeding season
+67251,ruff trumping,(card games) the act of taking a trick with a trump when unable to follow suit
+67252,ruffed_grouse partridge Bonasa_umbellus,valued as a game bird in eastern United States and Canada
+67253,ruffianism,violent lawless behavior
+67254,rug carpet carpeting,floor covering consisting of a piece of thick heavy fabric (usually with nap or pile)
+67255,rug_merchant,a merchant who sells rugs
+67256,ruga,(anatomy) a fold or wrinkle or crease; "rugae of the stomach"
+67257,rugby rugby_football rugger,a form of football played with an oval ball
+67258,rugby_ball,inflated oval ball used in playing rugby
+67259,rugel's_plantain broad-leaved_plantain Plantago_rugelii,North American plantain having reddish leafstalks and broad leaves
+67260,rugged_individualism,individualism in social and economic affairs; belief not only in personal liberty and self-reliance but also in free competition
+67261,ruggedization ruggedisation,the act of making a piece of equipment rugged (strengthening to resist wear or abuse)
+67262,ruggedness,the quality of being topologically uneven; "the ruggedness of the mountains"
+67263,rugulah rugelach ruggelach,pastry made with a cream cheese dough and different fillings (as raisins and walnuts and cinnamon or chocolate and walnut and apricot preserves)
+67264,ruin,a ruined building; "they explored several Roman ruins"
+67265,ruin ruination,an irrecoverable state of devastation and destruction; "you have brought ruin on this entire family"
+67266,ruin ruination,an event that results in destruction
+67267,rule,the duration of a monarch's or government's power; "during the rule of Elizabeth"
+67268,rule,directions that define the way a game or sport is to be conducted; "he knew the rules of chess"
+67269,rule,any one of a systematic body of regulations defining the way of life of members of a religious order; "the rule of St. Dominic"
+67270,rule formula,(mathematics) a standard procedure for solving a class of mathematical problems; "he determined the upper bound with Descartes' rule of signs"; "he gave us a general formula for attacking polynomials"
+67271,rule linguistic_rule,(linguistics) a rule describing (or prescribing) a linguistic practice
+67272,rule prescript,prescribed guide for conduct or action
+67273,rule regulation,a principle or condition that customarily governs behavior; "it was his rule to take a walk before breakfast"; "short haircuts were the regulation"
+67274,rule ruler,measuring stick consisting of a strip of wood or metal or plastic with a straight edge that is used for drawing straight lines and measuring lengths
+67275,rule_of_evidence,(law) a rule of law whereby any alleged matter of fact that is submitted for investigation at a judicial trial is established or disproved
+67276,rule_of_law,a state of order in which events conform to the law
+67277,ruler swayer,a person who rules or commands; "swayer of the universe"
+67278,rulership,the position of ruler
+67279,ruling_class people_in_power,the class of people exerting power or authority
+67280,rum,liquor distilled from fermented molasses
+67281,rum_sling,a sling made with rum
+67282,rumba rhumba,syncopated music in duple time for dancing the rumba
+67283,rumba rhumba,a folk dance in duple time that originated in Cuba with Spanish and African elements; features complex footwork and violent movement
+67284,rumba rhumba,a ballroom dance based on the Cuban folk dance
+67285,rumble,a servant's seat (or luggage compartment) in the rear of a carriage
+67286,rumble gang_fight,a fight between rival gangs of adolescents
+67287,rumble rumbling grumble grumbling,a loud low dull continuous noise; "they heard the rumbling of thunder"
+67288,rumble_seat,a folding outside seat in the back of some early cars
+67289,rumen first_stomach,the first compartment of the stomach of a ruminant; here food is collected and returned to the mouth as cud for chewing
+67290,ruminant,any of various cud-chewing hoofed mammals having a stomach divided into four (occasionally three) compartments
+67291,rumination,(of ruminants) chewing (the cud); "ruminants have remarkable powers of rumination"
+67292,rumination,regurgitation of small amounts of food; seen in some infants after feeding
+67293,rummage,a jumble of things to be given away
+67294,rummage_sale jumble_sale,a sale of donated articles
+67295,rummer,a large drinking glass (ovoid bowl on a stem) for drinking toasts
+67296,rummy rum,a card game based on collecting sets and sequences; the winner is the first to meld all their cards
+67297,rumor rumour hearsay,gossip (usually a mixture of truth and untruth) passed around by word of mouth
+67298,rump,fleshy hindquarters; behind the loin and above the round
+67299,rump_roast,a cut of beef or veal from the fleshy hindquarters of the animal
+67300,rump_steak,a steak cut from the rump
+67301,rumpus_room playroom game_room,a recreation room for noisy activities (parties or children's play etc)
+67302,rumrunner,someone who illegally smuggles liquor across a border
+67303,run,the continuous period of time during which something (a machine or a factory) operates or continues in operation; "the assembly line was on a 12-hour run"
+67304,run,unrestricted freedom to use; "he has the run of the house"
+67305,run,the production achieved during a continuous period of operation (of a machine or factory etc.); "a daily run of 100,000 gallons of paint"
+67306,run,an unbroken chronological sequence; "the play had a long run on Broadway"; "the team enjoyed a brief run of victories"
+67307,run,a short trip; "take a run into town"
+67308,run,a regular trip; "the ship made its run in record time"
+67309,run ladder ravel,a row of unravelled stitches; "she got a run in her stocking"
+67310,run running,the act of running; traveling on foot at a fast pace; "he broke into a run"; "his daily run keeps him fit"
+67311,run running running_play running_game,(American football) a play in which a player attempts to carry the ball through or past the opposing team; "the defensive line braced to stop the run"; "the coach put great emphasis on running"
+67312,run tally,a score in baseball made by a runner touching all four bases safely; "the Yankees scored 3 runs in the bottom of the 9th"; "their first tally came in the 3rd inning"
+67313,run-on_sentence,an ungrammatical sentence in which two or more independent clauses are conjoined without a conjunction
+67314,run-through,an uninterrupted rehearsal
+67315,run-time,the time at which a (software or multimedia) program is run
+67316,run-time,(computer science) the length of time it takes to execute a software program
+67317,run-up,the approach run during which an athlete gathers speed
+67318,run_batted_in rbi,a run that is the result of the batter's performance; "he had more than 100 rbi last season"
+67319,runaway blowout romp laugher shoo-in walkaway,an easy victory
+67320,runcible_spoon,a fork-like spoon with a cutting edge; coined by Edward Lear
+67321,runcinate_leaf,a leaf having incised margins with the lobes or teeth curved toward the base; as a dandelion leaf
+67322,rundle spoke rung,one of the crosspieces that form the steps of a ladder
+67323,rune runic_letter,any character from an ancient Germanic alphabet used in Scandinavia from the 3rd century to the Middle Ages; "each rune had its own magical significance"
+67324,rung round stave,a crosspiece between the legs of a chair
+67325,runner,a trained athlete who competes in foot races
+67326,runner,someone who travels on foot by running
+67327,runner,a person who is employed to deliver messages or documents; "he sent a runner over with the contract"
+67328,runner,a long narrow carpet
+67329,runner,device consisting of the parts on which something can slide along
+67330,runner blue_runner Caranx_crysos,fish of western Atlantic: Cape Cod to Brazil
+67331,runner-up second_best,the competitor who finishes second
+67332,running,the state of being in operation; "a running engine"
+67333,running,the act of administering or being in charge of something; "he has responsibility for the running of two companies at the same time"
+67334,running_away,the act of leaving (without permission) the place you are expected to be
+67335,running_back,(football) a back on the offensive team (a fullback or halfback) who tries to advance the ball by carrying it on plays from the line of scrimmage
+67336,running_board,a narrow footboard serving as a step beneath the doors of some old cars
+67337,running_head running_headline,a heading printed at the top of every page (or every other page) of a book
+67338,running_mate,a nominee for the lesser of two closely related political offices
+67339,running_pine Lycopodium_clavitum,a variety of club moss
+67340,running_shoe,a light comfortable shoe designed for running
+67341,running_stitch,small, even, hand stitches run in and out
+67342,running_suit,a matching jacket and pants worn by joggers and made of fabric that absorbs perspiration
+67343,running_time,the length of time that a movie or tv show runs
+67344,running_title,the title (or a shortened title) of a book used as a running head
+67345,runoff,a final election to resolve an earlier election that did not produce a winner
+67346,runt shrimp peewee half-pint,disparaging terms for small people
+67347,runup run-up,a substantial increase over a relatively short period of time; "a runup in interest rates"; "market runups are followed by corrections"
+67348,runway,a chute down which logs can slide
+67349,runway,a narrow platform extending from the stage into the audience in a theater or nightclub etc.
+67350,runway,a strip of level paved surface where planes can take off and land
+67351,rupestral_plant rupestrine_plant rupicolous_plant saxicolous_plant,plants growing among rocks
+67352,rupiah,the basic unit of money in Indonesia; equal to 100 sen
+67353,rupture,state of being torn or burst open
+67354,rupture,the act of making a sudden noisy break
+67355,rupture breach break severance rift falling_out,a personal or social separation (as between opposing factions); "they hoped to avoid a break in relations"
+67356,rupturewort Hernaria_glabra,common prostrate Old World herb often used as a ground cover; formerly reputed to cure ruptures
+67357,rural_free_delivery RFD,free government delivery of mail in outlying country areas
+67358,ruralism rusticism,a rural idiom or expression
+67359,ruralist,an advocate of rural living
+67360,rurality ruralism,a rural characteristic or trait; "a place with the rurality of a turnip field"
+67361,ruse artifice,a deceptive maneuver (especially to avoid capture)
+67362,rush,grasslike plants growing in wet places and having cylindrical often hollow stems
+67363,rush,a sudden burst of activity; "come back after the rush"
+67364,rush rushing,(American football) an attempt to advance the ball by running into the line; "the linebackers were ready to stop a rush"
+67365,rush spate surge upsurge,a sudden forceful flow
+67366,rush_aster,a variety of aster
+67367,rush_grass rush-grass,grass having wiry stems and sheathed panicles
+67368,rush_hour,the times at the beginning and end of the working day when many people are traveling to or from work
+67369,rush_rose Helianthemum_scoparium,woody yellow-flowered perennial of southeastern United States
+67370,rusher,(football) a ball carrier who tries to gain ground by running with the ball
+67371,rusher,someone who migrates as part of a rush to a new gold field or a new territory
+67372,rusher,a person who rushes; someone in a hurry; someone who acts precipitously
+67373,rushlight rush_candle,a tallow candle with a rush stem as the wick
+67374,russet,a reddish brown homespun fabric
+67375,rust,a red or brown oxide coating on iron or steel caused by the action of oxygen and moisture
+67376,rust,a plant disease that produces a reddish-brown discoloration of leaves and stems; caused by various rust fungi
+67377,rust rust_fungus,any of various fungi causing rust disease in plants
+67378,rust rusting,the formation of reddish-brown ferric oxides on iron by low-temperature oxidation in the presence of water
+67379,rust_inhibitor,antioxidant that inhibits the formation of rust
+67380,rust_mite,any of several varieties of mite that burrow into plants and cause a reddish-brown discoloration on the leaves or fruit
+67381,rustic,an unsophisticated country person
+67382,rustication,the condition naturally attaching to life in the country
+67383,rustication,the construction of masonry or brickwork in a rustic manner
+67384,rustication,the action of retiring to and living in the country
+67385,rustication,temporary dismissal of a student from a university
+67386,rustication,banishment into the country
+67387,rusticity gaucherie,the quality of being rustic or gauche
+67388,rustiness,the condition of being coated or clogged with rust
+67389,rustiness,ineptitude or awkwardness as a consequence of age or lack of practice; "his rustiness showed when he was asked to speed up"
+67390,rustle rustling whisper whispering,a light noise, like the noise of silk clothing or leaves blowing in the wind
+67391,rustler cattle_thief,someone who steals livestock (especially cattle)
+67392,rustling,the stealing of cattle
+67393,rusty_blackbird rusty_grackle Euphagus_carilonus,North American blackbird whose bluish-black plumage is rusty-edged in the fall
+67394,rusty_woodsia fragrant_woodsia oblong_woodsia Woodsia_ilvensis,a common rock-inhabiting fern of northern temperate regions having rusty-brown stipes and lanceolate pinnate fronds
+67395,rut,a groove or furrow (especially one in soft earth caused by wheels)
+67396,rut groove,a settled and monotonous routine that is hard to escape; "they fell into a conversational rut"
+67397,rutabaga swede swedish_turnip yellow_turnip,the large yellow root of a rutabaga plant used as food
+67398,rutabaga turnip_cabbage swede Swedish_turnip rutabaga_plant Brassica_napus_napobrassica,a cruciferous plant with a thick bulbous edible yellow root
+67399,ruthenium Ru atomic_number_44,a rare polyvalent metallic element of the platinum group; it is found associated with platinum
+67400,rutherford,a unit strength of a radioactive source equal to one million disintegrations per second
+67401,rutherfordium Rf unnilquadium Unq element_104 atomic_number_104,a radioactive transuranic element which has been synthesized
+67402,rutile,a mineral consisting of titanium dioxide in crystalline form; occurs in metamorphic and plutonic rocks and is a major source of titanium
+67403,rya rya_rug,a shag rug made in Sweden
+67404,rydberg rydberg_constant rydberg_unit,a wave number characteristic of the wave spectrum of each element
+67405,rye,the seed of the cereal grass
+67406,rye Secale_cereale,hardy annual cereal grass widely cultivated in northern Europe where its grain is the chief ingredient of black bread and in North America for forage and soil improvement
+67407,rye rye_whiskey rye_whisky,whiskey distilled from rye or rye and malt
+67408,rye_bread,any of various breads made entirely or partly with rye flour
+67409,rye_ergot,a sclerotium or hardened mass of mycelium
+67410,rye_grass ryegrass,any of several annual or perennial Eurasian grasses
+67411,sabbat witches'_Sabbath,a midnight meeting of witches to practice witchcraft and sorcery; in the Middle Ages it was supposed to be a demonic orgy
+67412,sabbatia,any of various plants of the genus Sabbatia having usually pink cymose flowers; occur from acid bogs to brackish marshes
+67413,sabbatical sabbatical_leave,a leave usually taken every seventh year
+67414,sabbatical_year,a sabbatical leave lasting one year
+67415,saber sabre,a fencing sword with a v-shaped blade and a slightly curved handle
+67416,saber-toothed_tiger sabertooth,any of many extinct cats of the Old and New Worlds having long swordlike upper canine teeth; from the Oligocene through the Pleistocene
+67417,saber_rattling sabre_rattling,the ostentatious display of military power (with the implied threat that it might be used)
+67418,saber_saw jigsaw reciprocating_saw,a portable power saw with a reciprocating blade; can be used with a variety of blades depending on the application and kind of cut; generally have a plate that rides on the surface that is being cut
+67419,sabicu Lysiloma_sabicu,West Indian tree yielding a hard dark brown wood resembling mahogany in texture and value
+67420,sabicu sabicu_wood,the wood of the sabicu which resembles mahogany
+67421,sabin,a unit of acoustic absorption equivalent to the absorption by a square foot of a surface that absorbs all incident sound
+67422,sable,the expensive dark brown fur of the marten
+67423,sable,a scarf (or trimming) made of sable
+67424,sable Martes_zibellina,marten of northern Asian forests having luxuriant dark brown fur
+67425,sable sable_brush sable's_hair_pencil,an artist's brush made of sable hairs
+67426,sable_antelope Hippotragus_niger,large black East African antelope with sharp backward-curving horns
+67427,sable_coat,a fur coat made of sable furs
+67428,sabot wooden_shoe,a shoe carved from a single block of wood
+67429,sabotage,a deliberate act of destruction or disruption in which equipment is damaged
+67430,saboteur wrecker diversionist,someone who commits sabotage or deliberately causes wrecks
+67431,sabra,a native-born Israeli
+67432,sac,a structure resembling a bag in an animal
+67433,sac_fungus,any of various ascomycetous fungi in which the spores are formed in a sac or ascus
+67434,saccade,a rapid, jerky movement of the eyes between positions of rest
+67435,saccharic_acid,a white dicarboxylic acid formed from oxidation of sugar or starch
+67436,saccharin,a crystalline substance 500 times sweeter than sugar; used as a calorie-free sweetener
+67437,saccharinity,the excessive sweetness of saccharin
+67438,saccule sacculus,a small sac or pouch (especially the smaller chamber of the membranous labyrinth)
+67439,sacerdotalism,a belief that priests can act as mediators between human beings and God
+67440,sachem,a political leader (especially of Tammany Hall)
+67441,sachem sagamore,a chief of a North American tribe or confederation (especially an Algonquian chief)
+67442,sachet,a small soft bag containing perfumed powder; used to perfume items in a drawer or chest
+67443,sack,any of various light dry strong white wine from Spain and Canary Islands (including sherry)
+67444,sack,the plundering of a place by an army or mob; usually involves destruction and slaughter; "the sack of Rome"
+67445,sack poke paper_bag carrier_bag,a bag made of paper or plastic for holding customer's purchases
+67446,sack sackful,the quantity contained in a sack
+67447,sack sacque,a woman's full loose hiplength jacket
+67448,sack_coat,man's hiplength coat with a straight back; the jacket of a suit
+67449,sack_race,a novelty race in which competitors jump ahead with their feet confined in a sack
+67450,sackbut,a medieval musical instrument resembling a trombone
+67451,sackcloth,a garment made of coarse sacking; formerly worn as an indication of remorse
+67452,sackcloth,a coarse cloth resembling sacking
+67453,sackcloth_and_ashes,a display of extreme remorse or repentance or grief
+67454,sacking bagging,coarse fabric used for bags or sacks
+67455,sacral_nerve,any of five pairs of spinal nerves emerging from the sacral region of the spinal cord
+67456,sacral_plexus plexus_sacralis,a nerve plexus formed by the 4th and 5th lumbar and 1st, 2nd, 3rd sacral nerves; supplies the pelvic region and lower limbs
+67457,sacral_vein vena_sacralis,vein of the sacral region
+67458,sacral_vertebra,one of 5 vertebrae in the human spine that fuse in the adult to form the sacrum
+67459,sacrament,a formal religious ceremony conferring a specific grace on those who receive it; the two Protestant ceremonies are baptism and the Lord's Supper; in the Roman Catholic Church and the Eastern Orthodox Church there are seven traditional rites accepted as instituted by Jesus: baptism and confirmation and Holy Eucharist and penance and holy orders and matrimony and extreme unction
+67460,sacred_cow,a person unreasonably held to be immune to criticism
+67461,sacred_ibis Threskiornis_aethiopica,African ibis venerated by ancient Egyptians
+67462,sacred_text sacred_writing religious_writing religious_text,writing that is venerated for the worship of a deity
+67463,sacredness,the quality of being sacred
+67464,sacrifice,a loss entailed by giving up or selling something at less than its value; "he had to sell his car at a considerable sacrifice"
+67465,sacrifice,personnel that are sacrificed (e.g., surrendered or lost in order to gain an objective)
+67466,sacrifice,(baseball) an out that advances the base runners
+67467,sacrifice ritual_killing,the act of killing (an animal or person) in order to propitiate a deity
+67468,sacrifice_fly,a sacrifice made by hitting a long fly ball
+67469,sacrificer,a religious person who offers up a sacrifice
+67470,sacrilegiousness,profaneness by virtue of committing sacrilege
+67471,sacrum,wedge-shaped bone consisting of five fused vertebrae forming the posterior part of the pelvis; its base connects with the lowest lumbar vertebra and its tip with the coccyx
+67472,saddle,cut of meat (especially mutton or lamb) consisting of part of the backbone and both loins
+67473,saddle,a piece of leather across the instep of a shoe
+67474,saddle,a seat for the rider of a horse or other animal
+67475,saddle,posterior part of the back of a domestic fowl
+67476,saddle_blanket saddlecloth horse_blanket,stable gear consisting of a blanket placed under the saddle
+67477,saddle_block_anesthesia saddle_block_anaesthesia,the parts of a patient's body that would touch a saddle if the patient were sitting in one are anesthetized by injecting a local anesthetic into the spinal cord
+67478,saddle_hackle saddle_feather,a long narrow feather on the back (saddle) of a domestic fowl
+67479,saddle_horse riding_horse mount,a lightweight horse kept for riding only
+67480,saddle_of_lamb,backbone and both loins of a lamb
+67481,saddle_oxford saddle_shoe,an oxford with a saddle of contrasting color
+67482,saddle_oyster Anomia_ephippium,thin-shelled bivalve having the right valve deeply notched
+67483,saddle_seat,a chair seat that is slightly concave and sometimes has a thickened ridge in the center; "the saddle seat fitted his buttocks nicely"
+67484,saddle_soap leather_soap,a mild soap for cleansing and conditioning leather
+67485,saddle_sore,sore on a horseback rider chafed by a saddle
+67486,saddle_sore gall,an open sore on the back of a horse caused by ill-fitting or badly adjusted saddle
+67487,saddle_stitch,a decorative overcast or running stitch, especially in a contrasting color
+67488,saddleback saddle,a pass or ridge that slopes gently between two peaks (is shaped like a saddle)
+67489,saddlebag,a large bag (or pair of bags) hung over a saddle
+67490,saddlebill jabiru Ephippiorhynchus_senegalensis,large black-and-white stork of tropical Africa; its red bill has a black band around the middle
+67491,saddler,a maker and repairer and seller of equipment for horses
+67492,saddlery,workshop where a saddler works
+67493,sadhe,the 18th letter of the Hebrew alphabet
+67494,sadhu saddhu,(Hinduism) an ascetic holy man
+67495,sadism,sexual pleasure obtained by inflicting harm (physical or psychological) on others
+67496,sadist,someone who obtains pleasure from inflicting pain on others
+67497,sadness sorrow sorrowfulness,the state of being sad; "she tired of his perpetual sadness"
+67498,sadness unhappiness,emotions experienced when not in a state of well-being
+67499,sadomasochism,sadism and masochism combined in one person
+67500,sadomasochist,someone who enjoys both sadism and masochism
+67501,safari_park,an area of parkland where wild animals are kept and can be viewed by visitors driving through
+67502,safe,a ventilated or refrigerated cupboard for securing provisions from pests
+67503,safe,strongbox where valuables can be safely kept
+67504,safe-conduct safeguard,a document or escort providing safe passage through a region especially in time of war
+67505,safe-deposit safe-deposit_box safety-deposit safety_deposit_box deposit_box lockbox,a fireproof metal strongbox (usually in a bank) for storing valuables
+67506,safe_harbor,the target company defends itself by acquiring a company so onerously regulated that it makes the target less attractive; "the acquisition gave the company a safe harbor"
+67507,safe_house,a house used as a hiding place or refuge by members of certain organizations
+67508,safe_period,that time during a woman's menstrual cycle during which conception is least likely to occur (usually immediately before of after menstruation)
+67509,safe_sex,sexual activity (especially sexual intercourse) with the use of measures (such as latex condoms) to avoid the transmission of disease (especially AIDS)
+67510,safebreaker safecracker cracksman,a thief who breaks open safes to steal valuable contents
+67511,safehold,a refuge from attack
+67512,safeness,the quality of being safe
+67513,safety,the state of being certain that adverse effects will not be caused by some agent under defined conditions; "insure the safety of the children"; "the reciprocal of safety is risk"
+67514,safety,a score in American football; a player is tackled behind his own goal line
+67515,safety refuge,a safe place; "He ran to safety"
+67516,safety_arch,an undecorated arch that is included in order to strengthen or support a construction
+67517,safety_belt life_belt safety_harness,belt attaching you to some object as a restraint in order to prevent you from getting hurt
+67518,safety_bicycle safety_bike,bicycle that has two wheels of equal size; pedals are connected to the rear wheel by a multiplying gear
+67519,safety_blitz linebacker_blitzing blitz,(American football) defensive players try to break through the offensive line
+67520,safety_bolt safety_lock,a bolt that cannot be moved from outside the door or gate
+67521,safety_catch safety_lock,guard consisting of a locking device that prevents a weapon from being fired
+67522,safety_curtain,a fireproof theater curtain to be dropped in case of fire
+67523,safety_factor factor_of_safety,the ratio of the breaking stress of a structure to the estimated maximum stress in ordinary use
+67524,safety_feature,feature of an artifact that is added to insure a user's safety
+67525,safety_fuse,a slow-burning fuse consisting of a tube or cord filled or saturated with combustible matter; used to ignite detonators from a distance
+67526,safety_glass laminated_glass shatterproof_glass,glass made with plates of plastic or resin or other material between two sheets of glass to prevent shattering
+67527,safety_lamp Davy_lamp,an oil lamp that will not ignite flammable gases (methane)
+67528,safety_match book_matches,a paper match that strikes only on a specially prepared surface
+67529,safety_net,a guarantee of professional or financial security
+67530,safety_net,a large strong net to catch circus acrobats who fall or jump from a trapeze
+67531,safety_pin,a pin in the form of a clasp; has a guard so the point of the pin will not stick the user
+67532,safety_rail guardrail,a railing placed alongside a stairway or road for safety
+67533,safety_razor,a razor with a guard to prevent deep cuts in the skin
+67534,safety_squeeze_play safety_squeeze,the runner on third base waits to start home until the batter has bunted successfully
+67535,safety_valve relief_valve escape_valve escape_cock escape,a valve in a container in which pressure can build up (as a steam boiler); it opens automatically when the pressure reaches a dangerous level
+67536,safflower false_saffron Carthamus_tinctorius,thistlelike Eurasian plant widely grown for its red or orange flower heads and seeds that yield a valuable oil
+67537,safflower_oil,oil from safflower seeds used as food as well as in medicines and paints
+67538,safflower_oil,oil from seeds of the safflower plant
+67539,safflower_seed,seed of the safflower
+67540,saffron,dried pungent stigmas of the Old World saffron crocus
+67541,saffron saffron_crocus Crocus_sativus,Old World crocus having purple or white flowers with aromatic pungent orange stigmas used in flavoring food
+67542,safranine safranin saffranine,any of a class of chiefly red organic dyes
+67543,sag droop,a shape that sags; "there was a sag in the chair seat"
+67544,saga,a narrative telling the adventures of a hero or a family; originally (12th to 14th centuries) a story of the families that settled Iceland and their descendants but now any prose narrative that resembles such an account
+67545,sagacity sagaciousness judgment judgement discernment,the mental ability to understand and discriminate between relations
+67546,sage,a mentor in spiritual and philosophical topics who is renowned for profound wisdom
+67547,sage,aromatic fresh or dried grey-green leaves used widely as seasoning for meats and fowl and game etc
+67548,sage salvia,any of various plants of the genus Salvia; a cosmopolitan herb
+67549,sage_green,the color of sage leaves
+67550,sage_grouse sage_hen Centrocercus_urophasianus,large grouse of sagebrush regions of North America
+67551,sagebrush sage_brush,any of several North American composite subshrubs of the genera Artemis or Seriphidium
+67552,sagebrush_buttercup Ranunculus_glaberrimus,small early-flowering buttercup with shiny yellow flowers of western North America
+67553,sagebrush_lizard Sceloporus_graciosus,a ground dweller that prefers open ground and scattered low bushes; of United States west between Rocky and Sierra Nevada Mountains
+67554,sagebrush_mariposa_tulip Calochortus_macrocarpus,mariposa having loose clusters of one to three handsome lilac flowers resembling umbels atop stout erect stems; arid northwestern North America east of Cascade Mountains from southern British Columbia to northern California
+67555,sagitta,any arrowworm of the genus Sagitta
+67556,sagittal_suture interparietal_suture sutura_sagittalis,the suture uniting the two parietal bones
+67557,sagittate-leaf sagittiform_leaf,a leaf shaped like an arrow head
+67558,sago,powdery starch from certain sago palms; used in Asia as a food thickener and textile stiffener
+67559,sago_palm,any of various tropical Asian palm trees the trunks of which yield sago
+67560,sago_palm Cycas_revoluta,dwarf palmlike cycad of Japan that yields sago
+67561,saguaro sahuaro Carnegiea_gigantea,extremely large treelike cactus of desert regions of southwestern United States having a thick columnar sparsely branched trunk bearing white flowers and edible red pulpy fruit
+67562,sahib,formerly a term of respect for important white Europeans in colonial India; used after the name
+67563,saiga Saiga_tatarica,goat-like antelope of central Eurasia having a stubby nose like a proboscis
+67564,sail,any structure that resembles a sail
+67565,sail canvas canvass sheet,a large piece of fabric (usually canvas fabric) by means of which wind is used to propel a sailing vessel
+67566,sailboat sailing_boat,a small sailing vessel; usually with a single mast
+67567,sailcloth,a strong fabric (such as cotton canvas) used for making sails and tents
+67568,sailfish,a saltwater fish with lean flesh
+67569,sailfish,large pelagic game fish having an elongated upper jaw and long dorsal fin that resembles a sail
+67570,sailing,riding in a sailboat
+67571,sailing,the departure of a vessel from a port
+67572,sailing-race yacht_race,a race between crews of people in yachts
+67573,sailing_master navigator,the ship's officer in charge of navigation
+67574,sailing_vessel sailing_ship,a vessel that is powered by the wind; often having several masts
+67575,sailing_warship,a warship that was powered by sails and equipped with many heavy guns; not built after the middle of the 19th century
+67576,sailmaker,a maker of sails
+67577,sailor crewman,any member of a ship's crew
+67578,sailor's-choice sailors_choice Haemulon_parra,a grunt found from Florida to Brazil and Gulf of Mexico
+67579,sailor_cap,a cap worn by sailors
+67580,sailor_suit,a boy's ensemble; copied from a sailor's uniform
+67581,sainfoin sanfoin holy_clover esparcet Onobrychis_viciifolia Onobrychis_viciaefolia,Eurasian perennial herb having pale pink flowers and curved pods; naturalized in Britain and North America grasslands on calcareous soils; important forage crop and source of honey in Britain
+67582,saint,a person who has died and has been declared a saint by canonization
+67583,saint holy_man holy_person angel,person of exceptional holiness
+67584,saint's_day,a day commemorating a saint
+67585,sainthood,saints collectively
+67586,sainthood,the status and dignity of a saint
+67587,saintliness,the quality of resembling a saint
+67588,sake,the purpose of achieving or obtaining; "for the sake of argument"
+67589,sake interest,a reason for wanting something done; "for your sake"; "died for the sake of his country"; "in the interest of safety"; "in the common interest"
+67590,sake saki rice_beer,Japanese alcoholic beverage made from fermented rice; usually served hot
+67591,saki,small arboreal monkey of tropical South America with long hair and bushy nonprehensile tail
+67592,salaam,a deep bow; a Muslim form of salutation
+67593,salability salableness,the quality of being salable or marketable
+67594,salad,food mixtures either arranged on a plate or tossed and served with a moist dressing; usually consisting of or including greens
+67595,salad_bar,a bar where diners can assemble a salad to their own taste
+67596,salad_bowl,a large bowl for mixing and serving a salad
+67597,salad_burnet,leaves sometimes used for salad
+67598,salad_burnet burnet_bloodwort pimpernel Poterium_sanguisorba,European garden herb with purple-tinged flowers and leaves that are sometimes used for salads
+67599,salad_cream,a creamy salad dressing resembling mayonnaise
+67600,salad_fork,a fork intended for eating salads
+67601,salad_green salad_greens,greens suitable for eating uncooked as in salads
+67602,salad_nicoise,typically containing tomatoes and anchovies and garnished with black olives and capers
+67603,salad_oil,any of several edible vegetable oils that can be used in salad dressings
+67604,salad_plate salad_bowl,a plate or bowl for individual servings of salad
+67605,salai Boswellia_serrata,East Indian tree yielding a resin used medicinally and burned as incense
+67606,salal shallon Gaultheria_shallon,small evergreen shrub of Pacific coast of North America having edible dark purple grape-sized berries
+67607,salamander,reptilian creature supposed to live in fire
+67608,salamander,any of various typically terrestrial amphibians that resemble lizards and that return to water only to breed
+67609,salami,highly seasoned fatty sausage of pork and beef usually dried
+67610,salat salaat salah salaah,the second pillar of Islam is prayer; a prescribed liturgy performed five times a day (preferably in a mosque) and oriented toward Mecca
+67611,sale,the state of being purchasable; offered or exhibited for selling; "you'll find vitamin C for sale at most pharmacies"; "the new line of cars will soon be on sale"
+67612,sale,the general activity of selling; "they tried to boost sales"; "laws limit the sale of handguns"
+67613,sale,a particular instance of selling; "he has just made his first sale"; "they had to complete the sale before the banks closed"
+67614,sale cut-rate_sale sales_event,an occasion (usually brief) for buying at specially reduced prices; "they held a sale to reduce their inventory"; "I got some great bargains at their annual sale"
+67615,sale sales_agreement,an agreement (or contract) in which property is transferred from the seller (vendor) to the buyer (vendee) for a fixed price in money (paid or agreed to be paid by the buyer); "the salesman faxed the sales agreement to his home office"
+67616,sale_in_gross contract_of_hazard,a sale of a tract of land as a whole without a warranty as to the acreage
+67617,sales_campaign,an advertising campaign intended to promote sales
+67618,sales_department sales_division sales_force,the division of a business that is responsible for selling products or services
+67619,sales_finance_company,a finance company that buys (at a discount) the installment sales contracts of retail merchants
+67620,sales_incentive,remuneration offered to a salesperson for exceeding some predetermined sales goal
+67621,sales_promotion,promotion that supplements or coordinates advertising
+67622,sales_resistance,resistance by potential customers to aggressive selling practices
+67623,sales_staff,those in a business who are responsible for sales
+67624,sales_talk sales_pitch pitch,promotion by means of an argument and demonstration
+67625,sales_tax nuisance_tax,a tax based on the cost of the item purchased and collected directly from the buyer
+67626,salesclerk shop_clerk clerk shop_assistant,a salesperson in a store
+67627,salesgirl saleswoman saleslady,a woman salesperson
+67628,salesman,a man salesperson
+67629,salesmanship,skill in selling; skill in persuading people to buy; "he read a book on salesmanship but it didn't help"
+67630,salesperson sales_representative sales_rep,a person employed to represent a business and to sell its merchandise (as to customers in a store or to customers who are visited)
+67631,salicylate,a salt of salicylic acid (included in several commonly used drugs)
+67632,salicylate_poisoning,poisoning caused by the excessive ingestion of salicylates (usually aspirin)
+67633,salicylic_acid 2-hydroxybenzoic_acid,a white crystalline substance with a bitter aftertaste; used as a fungicide or in making aspirin or dyes or perfumes
+67634,salience saliency strikingness,the state of being salient
+67635,salient,(military) the part of the line of battle that projects closest to the enemy
+67636,salient_angle,an angle pointing outward; an interior angle of a polygon that is less than 180 degrees
+67637,saline_solution saline,an isotonic solution of sodium chloride and distilled water
+67638,salinometer,a hydrometer that determines the concentration of salt solutions by measuring their density
+67639,saliva spit spittle,a clear liquid secreted into the mouth by the salivary glands and mucous glands of the mouth; moistens the mouth and starts the digestion of starches
+67640,salivary_duct,a duct through which saliva passes from the salivary gland into the mouth
+67641,salivary_gland,any of three pairs of glands in the mouth and digestive system that secrete saliva for digestion
+67642,salivation,the secretion of saliva
+67643,sallet salade,a light medieval helmet with a slit for vision
+67644,sallow,any of several Old World shrubby broad-leaved willows having large catkins; some are important sources for tanbark and charcoal
+67645,sallowness,a sickly yellowish skin color
+67646,sally sallying_forth,a venture off the beaten path; "a sally into the wide world beyond his home"
+67647,salmagundi,cooked meats and eggs and vegetables usually arranged in rows around the plate and dressed with a salad dressing
+67648,salmi,ragout of game in a rich sauce
+67649,salmon,flesh of any of various marine or freshwater fish of the family Salmonidae
+67650,salmon,a pale pinkish orange color
+67651,salmon,any of various large food and game fishes of northern waters; usually migrate from salt to fresh water to spawn
+67652,salmon_loaf,fish loaf made with flaked salmon
+67653,salmon_oil,a fatty oil obtained from the wastes in canning salmon; used in making soap and dressing leather
+67654,salmonberry Rubus_spectabilis,large erect red-flowered raspberry of western North America having large pinkish-orange berries
+67655,salmonberry salmon_berry thimbleberry Rubus_parviflorus,white-flowered raspberry of western North America and northern Mexico with thimble-shaped orange berries
+67656,salmonella,rod-shaped Gram-negative enterobacteria; cause typhoid fever and food poisoning; can be used as a bioweapon
+67657,salmonellosis,a kind of food poisoning caused by eating foods contaminated with Salmonella typhimurium
+67658,salmonid,soft-finned fishes of cold and temperate waters
+67659,salol phenyl_salicylate,a white powder with a pleasant taste and odor; used to absorb light in sun tan lotions or as a preservative or an antiseptic or a coating for pills in which the medicine is intended for enteric release
+67660,salon,gallery where works of art can be displayed
+67661,salon,elegant sitting room where guests are received
+67662,salon beauty_salon beauty_parlor beauty_parlour beauty_shop,a shop where hairdressers and beauticians work
+67663,saloon_keeper,the proprietor of a saloon
+67664,salp salpa,minute floating marine tunicate having a transparent body with an opening at each end
+67665,salpiglossis,any plant of the genus Salpiglossis
+67666,salpingectomy,surgical removal of one or both Fallopian tubes
+67667,salpingitis,inflammation of a Fallopian tube (usually the result of infection spreading from the vagina or uterus) or of a Eustachian tube
+67668,salpinx,a tube in the uterus or the ear
+67669,salsa,spicy sauce of tomatoes and onions and chili peppers to accompany Mexican foods
+67670,salsify,either of two long roots eaten cooked
+67671,salsify oyster_plant,edible root of the salsify plant
+67672,salsify oyster_plant vegetable_oyster Tragopogon_porrifolius,Mediterranean biennial herb with long-stemmed heads of purple ray flowers and milky sap and long edible root; naturalized throughout United States
+67673,salsilla Bomarea_edulis,tropical vine having pink-and-yellow flowers spotted purple and edible roots sometimes boiled as a potato substitute; West Indies to northern South America
+67674,salsilla Bomarea_salsilla,tropical vine having umbels of small purple flowers and edible roots sometimes boiled as a potato substitute; Colombia
+67675,salt,a compound formed by replacing hydrogen in an acid by a metal (or a radical that acts like a metal)
+67676,salt saltiness salinity,the taste experience when common salt is taken into the mouth
+67677,salt table_salt common_salt,white crystalline form of especially sodium chloride used to season and preserve food
+67678,salt-rising_bread,white wheat bread raised by a salt-tolerant bacterium in a mixture of salt and either cornmeal or potato pulp
+67679,salt_cod,codfish preserved in salt; must be desalted and flaked by soaking in water and pounding; used in e.g. codfish cakes
+67680,salt_depletion,loss of salt from the body without replacement (loss by vomiting or profuse perspiration or urination or diarrhea) thus upsetting the electrolyte balance
+67681,salt_flat salt_plain,a flat expanse of salt left by the evaporation of a body of salt water
+67682,salt_lick lick,a salt deposit that animals regularly lick
+67683,salt_marsh,low-lying wet land that is frequently flooded with saltwater
+67684,salt_marsh_mallow Kosteletzya_virginica,subshrub of southeastern United States to New York
+67685,salt_mine,a mine where salt is dug
+67686,salt_pork,fat from the back and sides and belly of a hog carcass cured with salt
+67687,salt_reed_grass Spartina_cynosuroides,tall reedlike grass common in salt meadows
+67688,salt_rush Juncus_leseurii,rush of the Pacific coast of North America
+67689,salt_tree Halimodendron_halodendron Halimodendron_argenteum,spiny shrub of the Caspian salt plains and Siberia having elegant silvery, downy young foliage and mildly fragrant pink-purple blooms
+67690,saltation,(geology) the leaping movement of sand or soil particles as they are transported in a fluid medium over an uneven surface
+67691,saltation,(genetics) a mutation that drastically changes the phenotype of an organism or species
+67692,saltbox,a type of house built in New England; has two stories in front and one behind
+67693,saltbush,any of various shrubby plants of the genus Atriplex that thrive in dry alkaline soil
+67694,saltcellar,a small container for holding salt at the dining table
+67695,salter,someone who uses salt to preserve meat or fish or other foods
+67696,salter salt_merchant,someone who makes or deals in salt
+67697,saltine,a cracker sprinkled with salt before baking
+67698,saltiness,the property of containing salt (as a compound or in solution)
+67699,saltiness coarseness,language or humor that is down-to-earth; "the saltiness of their language was inappropriate"; "self-parody and saltiness riddled their core genre"
+67700,salting,the act of adding salt to food
+67701,saltpan,a shallow basin in a desert region; contains salt and gypsum that was deposited by an evaporated salt lake
+67702,saltshaker salt_shaker,a shaker with a perforated top for sprinkling salt
+67703,saltwater_fish,flesh of fish from the sea used as food
+67704,saltworks,a plant where salt is produced commercially
+67705,saltwort Batis_maritima,low-growing strong-smelling coastal shrub of warm parts of the New World having unisexual flowers in conelike spikes and thick succulent leaves
+67706,saltwort barilla glasswort kali kelpwort Salsola_kali Salsola_soda,bushy plant of Old World salt marshes and sea beaches having prickly leaves; burned to produce a crude soda ash
+67707,salubrity salubriousness,the quality of being salubrious and invigorating
+67708,salutation,word of greeting used to begin a letter
+67709,salutatorian salutatory_speaker,a graduating student with the second highest academic rank; may deliver the opening address at graduation exercises
+67710,salutatory_address salutatory_oration salutatory,an opening or welcoming statement (especially one delivered at graduation exercises)
+67711,salute,an act of greeting with friendly words and gestures like bowing or lifting the hat
+67712,salute military_greeting,a formal military gesture of respect
+67713,salute salutation,an act of honor or courteous recognition; "a musical salute to the composer on his birthday"
+67714,salvage,property or goods saved from damage or destruction
+67715,salvage,the act of saving goods or property that were in danger of damage or destruction
+67716,salvage,the act of rescuing a ship or its crew or its cargo from a shipwreck or a fire
+67717,salvager salvor,someone who salvages
+67718,salvation,the state of being saved or preserved from harm
+67719,salvation,a means of preserving from harm or unpleasantness; "tourism was their economic salvation"; "they turned to individualism as their salvation"
+67720,salvation,saving someone or something from harm or from an unpleasant situation; "the salvation of his party was the president's major concern"
+67721,salve,anything that remedies or heals or soothes; "he needed a salve for his conscience"
+67722,salver,a tray (or large plate) for serving food or drinks; usually made of silver
+67723,salvinorin,a hallucinogen obtained from Salvia divinorum
+67724,salvo,an outburst resembling the discharge of firearms or the release of bombs
+67725,salvo,a sudden outburst of cheers; "there was a salvo of approval"
+67726,salwar shalwar,a pair of light loose trousers with a tight fit around the ankles; worn by women from the Indian subcontinent (usually with a kameez)
+67727,samara key_fruit key,a winged often one-seed indehiscent fruit as of the ash or elm or maple
+67728,samarium Sm atomic_number_62,a grey lustrous metallic element of the rare earth group; is used in special alloys; occurs in monazite and bastnasite
+67729,samarskite,a complex black mineral occurring in pegmatites
+67730,samba,music composed for dancing the samba
+67731,samba,a lively ballroom dance from Brazil
+67732,samba,a form of canasta using three decks of cards and six jokers
+67733,sambar sambur Cervus_unicolor,a deer of southern Asia with antlers that have three tines
+67734,sambuca,an Italian liqueur made with elderberries and flavored with licorice
+67735,same-sex_marriage,two people of the same sex who live together as a family; "the legal status of same-sex marriages has been hotly debated"
+67736,samekh,the 15th letter of the Hebrew alphabet
+67737,sameness,the quality of being alike; "sameness of purpose kept them together"
+67738,samisen shamisen,a Japanese stringed instrument resembling a banjo with a long neck and three strings and a fretted fingerboard and a rectangular soundbox; played with a plectrum
+67739,samite,a heavy silk fabric (often woven with silver or gold threads); used to make clothing in the Middle Ages
+67740,samizdat underground_press,a system of clandestine printing and distribution of dissident or banned literature
+67741,samosa,small turnover of Indian origin filled with vegetables or meat and fried and served hot
+67742,samovar,a metal urn with a spigot at the base; used in Russia to boil water for tea
+67743,sampan,an Asian skiff usually propelled by two oars
+67744,sample,all or part of a natural object that is collected and preserved as an example of its class
+67745,sample,a small part of something intended as representative of the whole
+67746,sample_distribution sample sampling,items selected at random from a population and used to test hypotheses about the population
+67747,sampler,an assortment of various samples; "a candy sampler"; "a sampler of French poets"
+67748,sampler,a piece of embroidery demonstrating skill with various stitches
+67749,sampling,measurement at regular intervals of the amplitude of a varying waveform (in order to convert it to digital form)
+67750,sampling,(statistics) the selection of a suitable sample for study
+67751,sampling_frequency,(telecommunication) the frequency of sampling a continuously varying signal
+67752,sampling_rate,(telecommunication) the frequency of sampling per unit time
+67753,sampling_station sampler,an observation station that is set up to make sample observations of something
+67754,samsara,(Hinduism and Buddhism) the endless cycle of birth and suffering and death and rebirth
+67755,samurai,a Japanese warrior who was a member of the feudal military aristocracy
+67756,samurai,feudal Japanese military aristocracy
+67757,sanatorium sanatarium sanitarium,a hospital for recuperation or for the treatment of chronic diseases
+67758,sanctification,a religious ceremony in which something is made holy
+67759,sanctimoniousness sanctimony,the quality of being hypocritically devout
+67760,sanction,the act of final authorization; "it had the sanction of the church"
+67761,sanction,a mechanism of social control for enforcing a society's standards
+67762,sanction countenance endorsement indorsement warrant imprimatur,formal and explicit approval; "a Democrat usually gets the union's endorsement"
+67763,sanctuary,a consecrated place where sacred objects are kept
+67764,sanctum sanctum_sanctorum,a place of inviolable privacy; "he withdrew to his sanctum sanctorum, where the children could never go"
+67765,sand,a loose material consisting of grains of rock or coral
+67766,sand_blackberry Rubus_cuneifolius,stiff shrubby blackberry of the eastern United States (Connecticut to Florida)
+67767,sand_cat,a desert wildcat
+67768,sand_cherry Prunus_pumila Prunus_pumilla_susquehanae Prunus_susquehanae Prunus_cuneata,small straggling American cherry growing on sandy soil and having minute scarcely edible purplish-black fruit
+67769,sand_crack,a fissure in the wall of a horse's hoof often causing lameness
+67770,sand_cricket Jerusalem_cricket Stenopelmatus_fuscus,large wingless nocturnal grasshopper that burrows in loose soil along the Pacific coast of the United States
+67771,sand_dab,the lean flesh of a small flounder from the Pacific coast of North America
+67772,sand_dab,small food fishes of the Pacific coast of North America
+67773,sand_devil's_claw Proboscidea_arenaria Martynia_arenaria,alternatively placed in genus Martynia
+67774,sand_dollar,flattened disklike sea urchins that live on sandy bottoms
+67775,sand_dropseed Sporobolus_cryptandrus,erect smooth grass of sandy places in eastern North America
+67776,sand_fly sandfly Phlebotomus_papatasii,any of various small dipterous flies; bloodsucking females can transmit sandfly fever and leishmaniasis
+67777,sand_lance sand_launce sand_eel launce,very small silvery eellike schooling fishes that burrow into sandy beaches
+67778,sand_leek giant_garlic Spanish_garlic rocambole Allium_scorodoprasum,European leek cultivated and used like leeks
+67779,sand_lizard Lacerta_agilis,a common and widely distributed lizard of Europe and central Asia
+67780,sand_myrtle Leiophyllum_buxifolium,low-growing evergreen shrub of New Jersey to Florida grown for its many white star-shaped flowers and glossy foliage
+67781,sand_painting,a painting done by Amerindians (especially Navaho); made of fine colored sands on a neutral background
+67782,sand_rat,small nearly naked African mole rat of desert areas
+67783,sand_rat Meriones_longifrons,southern European gerbil
+67784,sand_sage silvery_wormwood Artemisia_filifolia,silver-haired shrub of central and southern United States and Mexico; a troublesome weed on rangelands
+67785,sand_sedge sand_reed Carex_arenaria,European maritime sedge naturalized along Atlantic coast of United States; rootstock has properties of sarsaparilla
+67786,sand_snake,small North American burrowing snake
+67787,sand_sole Psettichthys_melanostichus,a common flatfish of the Pacific coast of North America
+67788,sand_spurry sea_spurry Spergularia_rubra,prostrate weedy herb with tiny pink flowers; widespread throughout Europe and Asia on sand dunes and heath and coastal cliffs; naturalized in eastern North America
+67789,sand_stargazer,small pallid fishes of shoal tropical waters of North America and South America having eyes on stalks atop head; they burrow in sand to await prey
+67790,sand_tiger sand_shark Carcharias_taurus Odontaspis_taurus,shallow-water shark with sharp jagged teeth found on both sides of Atlantic; sometimes dangerous to swimmers
+67791,sand_verbena,any of various plants of the genus Abronia of western North America and Mexico having flowers resembling verbena
+67792,sand_wedge,a wedge used to get out of sand traps
+67793,sandal,a shoe consisting of a sole fastened by straps to the foot
+67794,sandalwood,close-grained fragrant yellowish heartwood of the true sandalwood; has insect repelling properties and is used for carving and cabinetwork
+67795,sandalwood_tree true_sandalwood Santalum_album,parasitic tree of Indonesia and Malaysia having fragrant close-grained yellowish heartwood with insect repelling properties and used, e.g., for making chests
+67796,sandarac citronwood,durable fragrant wood; used in building (as in the roof of the cathedral at Cordova, Spain)
+67797,sandarac sandarac_tree Tetraclinis_articulata Callitris_quadrivalvis,large coniferous evergreen tree of North Africa and Spain having flattened branches and scalelike leaves yielding a hard fragrant wood; bark yields a resin used in varnishes
+67798,sandarac sandarach,a brittle and faintly aromatic translucent resin used in varnishes
+67799,sandbag,a bag filled with sand; used as a weapon or to build walls or as ballast
+67800,sandbagger,someone who deceives you about his true nature or intent in order to take advantage of you
+67801,sandbank,a submerged bank of sand near a shore or in a river; can be exposed at low tide
+67802,sandbar sand_bar,a bar of sand
+67803,sandbar_shark Carcharhinus_plumbeus,most common grey shark along coasts of middle Atlantic states; sluggish and occasionally caught by fishermen
+67804,sandblast,a blast of wind laden with sand
+67805,sandblaster,a tool that throws out a blast of steam laden with sand; used to clean or grind hard surfaces
+67806,sandbox,mold consisting of a box with sand shaped to mold metal
+67807,sandbox sandpile sandpit,a plaything consisting of a pile of sand or a box filled with sand for children to play in
+67808,sandboy,a young peddler of sand; used now only to express great happiness in `happy as a sandboy'
+67809,sandbur sandspur field_sandbur Cenchrus_tribuloides,grass of the eastern United States and tropical America having spikelets enclosed in prickly burs
+67810,sanderling Crocethia_alba,small sandpiper that breeds in the Arctic and migrates southward along sandy coasts in most of world
+67811,sandfish,either of two small silvery scaleless fishes of the northern Pacific that burrow into sand
+67812,sandfly_fever pappataci_fever phlebotomus,a mild viral disease transmitted by the bite of the sand fly Phlebotomus papatasii
+67813,sandglass,timepiece in which the passage of time is indicated by the flow of sand from one transparent container to another through a narrow passage
+67814,sandgrouse sand_grouse,pigeon-like bird of arid regions of the Old World having long pointed wings and tail and precocial downy young
+67815,sandhi,the articulatory process whereby the pronunciation of a word or morpheme changes when it is followed immediately by another (especially in fluent speech)
+67816,sandiness,a texture resembling that of sand
+67817,sandlot,a vacant lot used by city boys to play games
+67818,sandman,an elf in fairy stories who sprinkles sand in children's eyes to make them sleepy
+67819,sandpiper,any of numerous usually small wading birds having a slender bill and piping call; closely related to the plovers
+67820,sandpit,a large pit in sandy ground from which sand is dug
+67821,sandstone,a sedimentary rock consisting of sand consolidated with some cement (clay or quartz etc.)
+67822,sandwich,two (or more) slices of bread with a filling between them
+67823,sandwich_board,signboard consisting of two hinged boards that hang front and back from the shoulders of a walker and are used to display advertisements
+67824,sandwich_plate,a serving consisting of a sandwich or sandwiches with garnishes
+67825,sandwichman,a person with advertising boards hanging from the shoulders
+67826,sandwort,low-growing chiefly perennial plant usually with small white flowers suitable for e.g. rock gardens
+67827,sandwort Moehringia_lateriflora,low-growing herb having clusters of small white four-petaled flowers
+67828,sandwort Moehringia_mucosa,loosely matted plant with moss-like foliage studded with tiny starry four-petaled white blossoms; mountains of central and southern Europe
+67829,sandy_mushroom Tricholoma_populinum,an edible agaric that fruits in great clusters (especially in sandy soil under cottonwood trees)
+67830,sangapenum gum_sangapenum,a variety of gum
+67831,sangaree sangria,sweetened red wine and orange or lemon juice with soda water
+67832,sangoma,a traditional Zulu healer and respected elder
+67833,sanguinary_ant Formica_sanguinea,slave-making ant widely distributed over the northern hemisphere
+67834,sanguine,a blood-red color
+67835,sanguinity sanguineness,feeling sanguine; optimistically cheerful and confident
+67836,sanicle snakeroot,a plant of the genus Sanicula having palmately compound leaves and unisexual flowers in panicled umbels followed by bristly fruit; reputed to have healing powers
+67837,sanitariness,the state of being conducive to health
+67838,sanitary_code health_code,set of standards established and enforced by government for health requirements as in plumbing etc
+67839,sanitary_condition,the state of sanitation (clean or dirty)
+67840,sanitary_landfill,a low area where waste is buried between layers of earth
+67841,sanitary_napkin sanitary_towel Kotex,a disposable absorbent pad (trade name Kotex); worn to absorb menstrual flow
+67842,sanitation,the state of being clean and conducive to health
+67843,sanitation sanitization sanitisation,making something sanitary (free of germs) as by sterilizing
+67844,sanitation_department,the department of local government responsible for collecting and disposing of garbage
+67845,sanity saneness,normal or sound powers of mind
+67846,sannup,a married male American Indian
+67847,sannyasi sannyasin sanyasi,a Hindu religious mendicant
+67848,sans_serif Helvetica,a typeface in which characters have no serifs
+67849,sansevieria bowstring_hemp,grown as a houseplant for its mottled fleshy sword-shaped leaves or as a source of fiber
+67850,santims,100 santimi equal 1 lats in Latvia
+67851,sap,a watery solution of sugars, salts, and minerals that circulates through the vascular system of a plant
+67852,saphenous_nerve nervus_saphenus,a branch of the femoral nerve that supplies cutaneous branches to the inner aspect of the leg and foot
+67853,saphenous_vein vena_saphena,either of two chief superficial veins of the leg that drain blood from the foot
+67854,sapidity sapidness,a pleasant flavor
+67855,sapiential_book wisdom_book wisdom_literature,any of the biblical books (Proverbs, Ecclesiastes, Song of Songs, Wisdom of Solomon, Ecclesiasticus) that are considered to contain wisdom
+67856,sapling,young tree
+67857,sapodilla sapodilla_plum sapota,tropical fruit with a rough brownish skin and very sweet brownish pulp
+67858,sapodilla sapodilla_tree Manilkara_zapota Achras_zapota,large tropical American evergreen yielding chicle gum and edible fruit; sometimes placed in genus Achras
+67859,saponification,a chemical reaction in which an ester is heated with an alkali (especially the alkaline hydrolysis of a fat or oil to make soap)
+67860,saponin,any of various plant glucosides that form soapy lathers when mixed and agitated with water; used in detergents and foaming agents and emulsifiers
+67861,sapote mammee marmalade_plum,brown oval fruit flesh makes excellent sherbet
+67862,sapper,a military engineer who does sapping (digging trenches or undermining fortifications)
+67863,sapphire,a precious transparent stone of rich blue corundum valued as a gemstone
+67864,sapphire,a transparent piece of sapphire that has been cut and polished and is valued as a precious gem
+67865,sapphirine,a rare light blue or green mineral; consists of aluminum and magnesium silicate and occurs as small grains in some metamorphic rocks
+67866,sapremia sapraemia,blood poisoning caused by putrefactive bacteria; results from eating putrefied matter
+67867,saprobe,an organism that lives in and derives its nourishment from organic matter in stagnant or foul water
+67868,saprolite,a deposit of clay and disintegrating rock that is found in its original place
+67869,sapropel,sludge (rich in organic matter) that accumulates at the bottom of lakes or oceans
+67870,saprophyte saprophytic_organism,an organism that feeds on dead organic matter especially a fungus or bacterium
+67871,sapsago,a hard green Swiss cheese made with skim-milk curd and flavored with clover
+67872,sapsucker,small American woodpecker that feeds on sap from e.g. apple and maple trees
+67873,sapwood,newly formed outer wood lying between the cambium and the heartwood of a tree or woody plant; usually light colored; active in water conduction
+67874,saquinavir Invirase,a weak protease inhibitor (trade name Invirase) used in treating HIV
+67875,saraband,music composed for dancing the saraband
+67876,saraband,a stately court dance of the 17th and 18th centuries; in slow time
+67877,saran,any of various thermoplastic resins used to make things
+67878,sarcasm irony satire caustic_remark,witty language used to convey insults or scorn; "he used sarcasm to upset his opponent"; "irony is wasted on the stupid"; "Satire is a sort of glass, wherein beholders do generally discover everybody's face but their own"--Jonathan Swift
+67879,sarcenet sarsenet,a fine soft silk fabric often used for linings
+67880,sarcodinian sarcodine,protozoa that move and capture food by forming pseudopods
+67881,sarcoidosis,a chronic disease of unknown cause marked by the formation of nodules in the lungs and liver and lymph glands and salivary glands
+67882,sarcolemma,an extensible membrane enclosing the contractile substance of a muscle fiber
+67883,sarcoma,a usually malignant tumor arising from connective tissue (bone or muscle etc.); one of the four major types of cancer
+67884,sarcomere,one of the segments into which a myofibril is divided
+67885,sarcophagus,a stone coffin (usually bearing sculpture or inscriptions)
+67886,sarcoplasm,the cytoplasm of a striated muscle fiber
+67887,sarcosine,a sweetish crystalline amino acid
+67888,sarcosome,a large mitochondrion in a striated muscle fiber
+67889,sarcosporidian sarcocystidean sarcocystieian,parasite of the muscles of vertebrates
+67890,sard sardine sardius,a deep orange-red variety of chalcedony
+67891,sardine,any of various small edible herring or related food fishes frequently canned
+67892,sardine pilchard,small fatty fish usually canned
+67893,sardine_oil,oil obtained from sardines and used chiefly as a lubricant and in soap
+67894,sardonyx,an onyx characterized by parallel layers of sard and a different colored mineral
+67895,sargassum_fish,small fantastically formed and colored fishes found among masses of sargassum
+67896,sari saree,a dress worn primarily by Hindu women; consists of several yards of light material that is draped around the body
+67897,sarin GB,a highly toxic chemical nerve agent that inhibits the activity of cholinesterase
+67898,sarong,a loose skirt consisting of brightly colored fabric wrapped around the body; worn by both women and men in the South Pacific
+67899,sarsaparilla,any of various prickly climbing plants of the tropical American genus Smilax having aromatic roots and heart-shaped leaves
+67900,sarsaparilla,carbonated drink flavored with an extract from sarsaparilla root or with birch oil and sassafras
+67901,sarsaparilla_root,dried root of any of various plants of the genus Smilax used as a flavoring agent
+67902,sartorius sartorius_muscle musculus_sartorius,a muscle in the thigh that helps to rotate the leg into the sitting position assumed by a tailor; the longest muscle in the human body
+67903,sash window_sash,a framework that holds the panes of a window in the window frame
+67904,sash_cord sash_line,a strong cord connecting a sash weight to a sliding sash
+67905,sash_fastener sash_lock window_lock,a lock attached to the sashes of a double hung window that can fix both in the shut position
+67906,sash_weight,a counterweight for a sliding sash
+67907,sash_window,a window with (usually two) sashes that slide vertically to let in air
+67908,sashay,a square dance figure; partners circle each other taking sideways steps
+67909,sashimi,very thinly sliced raw fish
+67910,saskatoon serviceberry shadberry juneberry,edible purple or red berries
+67911,sass sassing backtalk back_talk lip mouth,an impudent or insolent rejoinder; "don't give me any of your sass"
+67912,sassaby topi Damaliscus_lunatus,a large South African antelope; considered the swiftest hoofed mammal
+67913,sassafras,dried root bark of the sassafras tree
+67914,sassafras sassafras_tree Sassafras_albidum,yellowwood tree with brittle wood and aromatic leaves and bark; source of sassafras oil; widely distributed in eastern North America
+67915,sassafras_oil,oil from root bark of sassafras trees; used in perfumery and as a disinfectant
+67916,satang,100 satangs equal 1 baht in Thailand
+67917,satanophobia,an abnormal fear of Satan
+67918,satchel,luggage consisting of a small case with a flat bottom and (usually) a shoulder strap
+67919,sateen,a cotton fabric with a satiny finish
+67920,satellite,any celestial body orbiting around a planet or star
+67921,satellite artificial_satellite orbiter,man-made equipment that orbits around the earth or the moon
+67922,satellite planet,a person who follows or serves another
+67923,satellite_receiver,a receiver on a communications satellite
+67924,satellite_television satellite_TV,a television system in which the signal is transmitted to an orbiting satellite that receives the signal and amplifies it and transmits it back to earth
+67925,satellite_transmitter,a transmitter on a communications satellite
+67926,satiation,the act of achieving full gratification
+67927,satin,a smooth fabric of silk or rayon; has a glossy face and a dull back
+67928,satin_bowerbird satin_bird Ptilonorhynchus_violaceus,of southeast Australia; male is glossy violet blue; female is light grey-green
+67929,satin_stitch,flat stitches worked so closely as to resemble satin
+67930,satin_weave,a weave in which the filling and warp threads intersect in such a way as to give a smooth compact surface with no distinguishable twill line
+67931,satinet satinette,a fabric with a finish resembling satin but made partly or wholly from cotton or synthetic fiber
+67932,satinleaf satin_leaf caimitillo damson_plum Chrysophyllum_oliviforme,tropical American timber tree with dark hard heavy wood and small plumlike purple fruit
+67933,satinwood,hard yellowish wood of a satinwood tree having a satiny luster; used for fine cabinetwork and tools
+67934,satinwood West_Indian_satinwood Zanthoxylum_flavum,West Indian tree with smooth lustrous and slightly oily wood
+67935,satinwood satinwood_tree Chloroxylon_swietenia,East Indian tree with valuable hard lustrous yellowish wood
+67936,satirist ironist ridiculer,a humorist who uses ridicule and irony and sarcasm
+67937,satisfaction,(law) the payment of a debt or fulfillment of an obligation; "the full and final satisfaction of the claim"
+67938,satisfaction,the contentment one feels when one has fulfilled a desire, need, or expectation; "the chef tasted the sauce with great satisfaction"
+67939,satisfaction,act of fulfilling a desire or need or appetite; "the satisfaction of their demand for better services"
+67940,satisfactoriness,the quality of giving satisfaction sufficient to meet a demand or requirement
+67941,satisfier,any agent capable of producing satisfaction
+67942,satori,(Zen Buddhism) a state of sudden spiritual enlightenment
+67943,satrap,a governor of a province in ancient Persia
+67944,satsuma,medium-sized largely seedless mandarin orange with thin smooth skin
+67945,satsuma satsuma_tree,a variety of mandarin orange
+67946,saturated_fatty_acid,a fatty acid whose carbon chain cannot absorb any more hydrogen atoms; found chiefly in animal fats
+67947,saturation,a condition in which a quantity no longer responds to some external influence
+67948,saturation,the act of soaking thoroughly with a liquid
+67949,saturation chroma intensity vividness,chromatic purity: freedom from dilution with white and hence vivid in hue
+67950,saturation_point,(chemistry) the stage at which a substance will receive no more of another substance in solution or in a vapor
+67951,saturniid saturniid_moth,large brightly colored and usually tropical moth; larvae spin silken cocoons
+67952,satyr forest_god,one of a class of woodland deities; attendant on Bacchus; identified with Roman fauns
+67953,satyr lecher lech letch,man with strong sexual desires
+67954,satyr_orchid Coeloglossum_bracteatum,orchid with broad ovate leaves and long-bracted green very irregular flowers
+67955,satyr_play,an ancient Greek burlesque with a chorus of satyrs
+67956,satyriasis,abnormally intense sexual desire in men
+67957,sauce,flavorful relish or dressing or topping served as an accompaniment to food
+67958,sauce_Louis,mayonnaise and heavy cream combined with chopped green pepper and green onion seasoned with chili sauce and Worcestershire sauce and lemon juice
+67959,saucepan,a deep pan with a handle; used for stewing or boiling
+67960,saucepot,a cooking pot that has handles on either side and tight fitting lid; used for stewing or boiling
+67961,saucer,a small shallow dish for holding a cup at the table
+67962,saucer_magnolia Chinese_magnolia Magnolia_soulangiana,large deciduous shrub or small tree having large open rosy to purplish flowers; native to Asia; prized as an ornamental in eastern North America
+67963,sauerbraten,pot roast marinated several days in seasoned vinegar before cooking; usually served with potato dumplings
+67964,sauerkraut,shredded cabbage fermented in brine
+67965,sauna sweat_room,a Finnish steam bath; steam is produced by pouring water over heated rocks
+67966,saunter,a careless leisurely gait; "he walked with a kind of saunter as if he hadn't a care in the world"
+67967,saunterer stroller ambler,someone who walks at a leisurely pace
+67968,saurian,any of various reptiles of the suborder Sauria which includes lizards; in former classifications included also the crocodiles and dinosaurs
+67969,saurischian saurischian_dinosaur,herbivorous or carnivorous dinosaur having a three-pronged pelvis like that of a crocodile
+67970,sauropod sauropod_dinosaur,very large herbivorous dinosaur of the Jurassic and Cretaceous having a small head a long neck and tail and five-toed limbs; largest known land animal
+67971,saury billfish Scomberesox_saurus,slender long-beaked fish of temperate Atlantic waters
+67972,sausage,highly seasoned minced meat stuffed in casings
+67973,sausage_curl,a fat sausage-shaped curl
+67974,sausage_dog sausage_hound,informal term
+67975,sausage_meat,any meat that is minced and spiced and cooked as patties or used to fill sausages
+67976,sausage_pizza,tomato and cheese pizza with sausage
+67977,sausage_roll,sausage meat rolled and baked in pastry
+67978,saute,a dish of sauteed food
+67979,savage barbarian,a member of an uncivilized people
+67980,savageness savagery,the property of being untamed and ferocious; "the coastline is littered with testaments to the savageness of the waters"; "a craving for barbaric splendor, for savagery and color and the throb of drums"
+67981,savanna savannah,a flat grassland in tropical or subtropical regions
+67982,savarin,a sponge cake baked in a ring mold
+67983,save,(sports) the act of preventing the opposition from scoring; "the goalie made a brilliant save"; "the relief pitcher got credit for a save"
+67984,save-all,a receptacle for catching waste products for further use
+67985,save-all,a sail set to catch wind spilled from a larger sail
+67986,save-all,a net hung between ship and pier while loading a ship
+67987,saveloy,a ready-cooked and highly seasoned pork sausage
+67988,saver,someone who saves (especially money)
+67989,saving_grace,a redeeming quality or characteristic; "her love of music remains her one saving grace"; "her sense of humor has to be a saving grace"; "the saving grace for both developments is that they are creating jobs"
+67990,savings nest_egg,a fund of money put by as a reserve
+67991,savings_account,a bank account that accumulates interest
+67992,savings_account_trust savings_bank_trust trust_account trustee_account Totten_trust,a savings account deposited by someone who makes themselves the trustee for a beneficiary and who controls it during their lifetime; afterward the balance is payable to the previously named beneficiary
+67993,savings_and_loan savings_and_loan_association,a thrift institution that is required by law to make a certain percentage of its loans as home mortgages
+67994,savings_bank,a thrift institution in the northeastern United States; since deregulation in the 1980s they offer services competitive with many commercial banks
+67995,savings_bank coin_bank money_box bank,a container (usually with a slot in the top) for keeping money at home; "the coin bank was empty"
+67996,savings_bond,non-negotiable government bond; cannot be bought and sold once the original purchase is made
+67997,savior saviour rescuer deliverer,a person who rescues you from harm or danger
+67998,savoir-faire address,social skill
+67999,savory,any of several aromatic herbs or subshrubs of the genus Satureja having spikes of flowers attractive to bees
+68000,savory Micromeria_juliana,dwarf aromatic shrub of Mediterranean regions
+68001,savory savoury,either of two aromatic herbs of the mint family
+68002,savory savoury,an aromatic or spicy dish served at the end of dinner or as an hors d'oeuvre
+68003,savoy_cabbage,cabbage plant with a compact head of crinkled leaves
+68004,savoy_cabbage savoy,head of soft crinkly leaves
+68005,saw,hand tool having a toothed blade for cutting
+68006,saw_log,log large enough to be sawed into boards
+68007,saw_palmetto scrub_palmetto Serenoa_repens,small hardy clump-forming spiny palm of southern United States
+68008,saw_set,a tool used to bend each alternate sawtooth at a slight angle outward
+68009,sawdust,fine particles of wood made by sawing wood
+68010,sawdust_doll,a doll that is stuffed with sawdust
+68011,sawdust_saloon,a saloon whose floor is covered with sawdust
+68012,sawed-off_shotgun,a shotgun with short barrels
+68013,sawfish,primitive ray with sharp teeth on each edge of a long flattened snout
+68014,sawfly,insect whose female has a saw-like ovipositor for inserting eggs into the leaf or stem tissue of a host plant
+68015,sawhorse horse sawbuck buck,a framework for holding wood that is being sawed
+68016,sawm,the third pillar of Islam is fasting (primarily during the month of Ramadan); Muslims abstain from food and drink and gambling and all sensuous pleasures from sunrise to sunset during Ramadan
+68017,sawmill,a large sawing machine
+68018,sawpit,a pit over which lumber is positioned to be sawed by two men with a long two-handed saw
+68019,sawtooth,a serration on a saw blade
+68020,sawwort Serratula_tinctoria,European perennial whose serrate leaves yield a yellow dye
+68021,sawyer,one who is employed to saw wood
+68022,sawyer sawyer_beetle,any of several beetles whose larvae bore holes in dead or dying trees especially conifers
+68023,sax saxophone,a single-reed woodwind with a conical bore
+68024,saxhorn,any of a family of brass wind instruments that resemble a bugle with valves
+68025,saxifrage breakstone rockfoil,any of various plants of the genus Saxifraga
+68026,saxitoxin,a powerful neurotoxin produced by certain dinoflagellates found in red tides; it can accumulate in mollusks that feed on the dinoflagellates and cause food poisoning to humans
+68027,saxophonist saxist,a musician who plays the saxophone
+68028,say,the chance to speak; "let him have his say"
+68029,say-so,one chap's arbitrary assertion
+68030,saying expression locution,a word or phrase that particular people use in particular situations; "pardon the expression"
+68031,scab,the crustlike surface of a healing skin lesion
+68032,scab strikebreaker blackleg rat,someone who works (or provides workers) during a strike
+68033,scabbard,a sheath for a sword or dagger or bayonet
+68034,scabicide,a drug that destroys the itch mite that causes scabies
+68035,scabies itch,a contagious skin infection caused by the itch mite; characterized by persistent itching and skin irritation; "he has a bad case of the itch"
+68036,scabious scabiosa,any of various plants of the genus Scabiosa
+68037,scablands,(geology) flat elevated land with poor soil and little vegetation that is scarred by dry channels of glacial origin (especially in eastern Washington)
+68038,scad,any of a number of fishes of the family Carangidae
+68039,scaffold,a platform from which criminals are executed (hanged or beheaded)
+68040,scaffold,a temporary arrangement erected around a building for convenience of workers
+68041,scaffolding staging,a system of scaffolds
+68042,scalability,the quality of being scalable
+68043,scalage,estimation of the amount of lumber in a log
+68044,scalage,the act of scaling in weight or quantity or dimension
+68045,scalar,a variable quantity that cannot be resolved into components
+68046,scalar_field,a field of scalars
+68047,scalar_matrix,a diagonal matrix in which all of the diagonal elements are equal
+68048,scalar_product inner_product dot_product,a real number (a scalar) that is the product of two vectors
+68049,scalawag scallywag,a white Southerner who supported Reconstruction policies after the American Civil War (usually for self-interest)
+68050,scald,a burn cause by hot liquid or steam
+68051,scald,the act of burning with steam or hot water
+68052,scalded_milk,milk heated almost to boiling
+68053,scale,the ratio between the size of something and a representation of it; "the scale of the map"; "the scale of the model"
+68054,scale,relative magnitude; "they entertained on a grand scale"
+68055,scale,an indicator having a graduated sequence of marks
+68056,scale,a flattened rigid plate forming part of the body covering of many animals
+68057,scale musical_scale,(music) a series of notes differing in pitch according to a specific scheme (usually within an octave)
+68058,scale scale_leaf,a specialized leaf or bract that protects a bud or catkin
+68059,scale scale_of_measurement graduated_table ordered_series,an ordered reference standard; "judging on a scale of 1 to 10"
+68060,scale scurf exfoliation,a thin flake of dead epidermis shed from the surface of the skin
+68061,scale weighing_machine,a measuring instrument for weighing; shows amount of mass
+68062,scale_factor,a number used as a multiplier in scaling
+68063,scale_fern scaly_fern Asplenium_ceterach Ceterach_officinarum,small European fern with chaffy leathery fronds
+68064,scale_insect,small homopterous insect that usually lives and feeds on plants and secretes a protective waxy covering
+68065,scale_value,a value on some scale of measurement
+68066,scale_wax paraffin_scale,partly refined paraffin wax
+68067,scalene_triangle,a triangle with no two sides of equal length
+68068,scalenus scalene_muscle musculus_scalenus,any of four pairs of muscles extending from the cervical vertebrae to the second rib; involved in moving the neck and in breathing
+68069,scalenus_syndrome,discomfort and vascular symptoms and loss of sensation in a shoulder and arm; caused by a scalene muscle compressing the subclavian artery and part of the brachial plexus
+68070,scaler,an electronic pulse counter used to count pulses that occur too rapidly to be recorded individually
+68071,scaliness,the property of being scaly
+68072,scaling,act of measuring or arranging or adjusting according to a scale
+68073,scaling,ascent by or as if by a ladder
+68074,scaling grading,the act of arranging in a graduated series
+68075,scaling_ladder,a ladder used to scale walls (as in an attack)
+68076,scallop crenation crenature crenel crenelle,one of a series of rounded projections (or the notches between them) formed by curves along an edge (as the edge of a leaf or piece of cloth or the margin of a shell or a shriveled red blood cell observed in a hypertonic solution etc.)
+68077,scallop scollop escallop,edible muscle of mollusks having fan-shaped shells; served broiled or poached or in salads or cream sauces
+68078,scallop scollop escallop,edible marine bivalve having a fluted fan-shaped shell that swim by expelling water from the shell in a series of snapping motions
+68079,scallop_shell,a shell of a scallop
+68080,scallopine scallopini,sauteed cutlets (usually veal or poultry) that have been pounded thin and coated with flour
+68081,scalp,the skin that covers the top of the head; "they wanted to take his scalp as a trophy"
+68082,scalp_lock,a long tuft of hair left on top of the shaven head
+68083,scalpel,a thin straight surgical knife used in dissection and surgery
+68084,scalper,someone who buys something and resells it at a price far above the initial cost; "he got theater tickets through a scalper"
+68085,scaly_lentinus Lentinus_lepideus,a fungus with a scaly cap and white flesh and a ring on the stalk (with scales below the ring); odor reminiscent of licorice
+68086,scam cozenage,a fraudulent business scheme
+68087,scammony,resin from the root of Convolvulus scammonia
+68088,scammony Convolvulus_scammonia,twining plant of Asia Minor having cream-colored to purple flowers and long thick roots yielding a cathartic resin
+68089,scammony Ipomoea_orizabensis,tropical American morning glory
+68090,scamper scramble scurry,rushing about hastily in an undignified way
+68091,scampi,large shrimp sauteed in oil or butter and garlic
+68092,scan,the act of scanning; systematic examination of a prescribed region; "he made a thorough scan of the beach with his binoculars"
+68093,scan CAT_scan,an image produced by scanning; "he analyzed the brain scan"; "you could see the tumor in the CAT scan"
+68094,scandal dirt malicious_gossip,disgraceful gossip about the private lives of other people
+68095,scandal outrage,a disgraceful event
+68096,scandalization scandalisation,the condition of being shocked (as by improper behavior)
+68097,scandalization scandalisation outrage,the act of scandalizing
+68098,scandalmonger,a person who spreads malicious gossip
+68099,scandalmongering,spreading malicious gossip
+68100,scandalousness,disgracefulness that offends public morality
+68101,scandium Sc atomic_number_21,a white trivalent metallic element; sometimes classified in the rare earth group; occurs in the Scandinavian mineral thortveitite
+68102,scanner,someone who scans verse to determine the number and prosodic value of the syllables
+68103,scanner,a radar dish that rotates or oscillates in order to scan a broad area
+68104,scanner digital_scanner image_scanner,an electronic device that generates a digital representation of an image for data input to a computer
+68105,scanner electronic_scanner,a radio receiver that moves automatically across some selected range of frequencies looking for some signal or condition; "they used scanners to monitor police radio channels"
+68106,scanning,the process of translating photographs into a digital form that can be recognized by a computer
+68107,scanning,the act of systematically moving a finely focused beam of light or electrons over a surface in order to produce an image of it for analysis or transmission
+68108,scansion,analysis of verse into metrical patterns
+68109,scantling stud,an upright in house framing
+68110,scape flower_stalk,erect leafless flower stalk growing directly from the ground as in a tulip
+68111,scapegoat whipping_boy,someone who is punished for the errors of others
+68112,scapegrace black_sheep,a reckless and unprincipled reprobate
+68113,scaphocephaly,congenital malformation of the skull which is long and narrow; frequently accompanied by mental retardation
+68114,scaphoid_bone os_scaphoideum navicular,the largest wrist bone on the thumb side
+68115,scaphopod,burrowing marine mollusk
+68116,scapula shoulder_blade shoulder_bone,either of two flat triangular bones one on each side of the shoulder in human beings
+68117,scapular,a feather covering the shoulder of a bird
+68118,scapular scapulary,garment consisting of a long wide piece of woolen cloth worn over the shoulders with an opening for the head; part of a monastic habit
+68119,scar cicatrix cicatrice,a mark left (usually on the skin) by the healing of injured tissue
+68120,scar_tissue,the connective tissue that forms a scar; consists of fibroblasts in new scars and collagen fibers in old scars
+68121,scarab scarabaeus Scarabaeus_sacer,scarabaeid beetle considered divine by ancient Egyptians
+68122,scarabaeid_beetle scarabaeid scarabaean,any of numerous species of stout-bodied beetles having heads with horny spikes
+68123,scarcity scarceness,a small and inadequate amount
+68124,scare panic_attack,a sudden attack of fear
+68125,scare_quote,the use of quotation marks to indicate that it is not the authors preferred terminology
+68126,scarecrow straw_man strawman bird-scarer scarer,an effigy in the shape of a man to frighten birds away from seeds
+68127,scaremonger stirrer,a person who spreads frightening rumors and stirs up trouble
+68128,scarf,a garment worn around the head or neck or shoulders for warmth or decoration
+68129,scarf_joint scarf,a joint made by notching the ends of two pieces of timber or metal so that they will lock together end-to-end
+68130,scarlet vermilion orange_red,a variable color that is vivid red but sometimes with an orange tinge
+68131,scarlet_bugler Penstemon_centranthifolius,plant with bright red tubular flowers in long narrow clusters near tips of erect stems; coastal ranges from central California southward
+68132,scarlet_bush scarlet_hamelia coloradillo Hamelia_patens Hamelia_erecta,handsome shrub with showy orange to scarlet or crimson flowers; Florida and West Indies to Mexico and Brazil
+68133,scarlet_clematis Clematis_texensis,woody vine of Texas having showy solitary nodding scarlet flowers
+68134,scarlet_fever scarlatina,an acute communicable disease (usually in children) characterized by fever and a red rash
+68135,scarlet_fritillary Fritillaria_recurva,western United States herb with scarlet and yellow narrow bell-shaped flowers
+68136,scarlet_haw Crataegus_biltmoreana,common shrub or small tree of the eastern United States having few thorns and white flowers in corymbs followed by bright orange-red berries
+68137,scarlet_letter,the letter A in red; Puritans required adulterers to wear it
+68138,scarlet_lychnis maltese_cross Lychins_chalcedonica,Eurasian garden perennial having scarlet flowers in dense terminal heads
+68139,scarlet_musk_flower Nyctaginia_capitata,viscid branched perennial of the southwestern United States and northern Mexico having tuberous roots and deep red flowers
+68140,scarlet_oak Quercus_coccinea,medium-large deciduous tree with a thick trunk found in the eastern United States and southern Canada and having close-grained wood and deeply seven-lobed leaves turning scarlet in autumn
+68141,scarlet_pimpernel red_pimpernel poor_man's_weatherglass Anagallis_arvensis,herb with scarlet or white or purple blossoms that close at approach of rainy weather
+68142,scarlet_plume Euphorbia_fulgens,Mexican shrub often cultivated for its scarlet-bracted flowers
+68143,scarlet_runner running_postman Kennedia_prostrata,hairy trailing or prostrate western Australian vine with bright scarlet-pink flowers
+68144,scarlet_runner scarlet_runner_bean Dutch_case-knife_bean runner_bean Phaseolus_coccineus Phaseolus_multiflorus,tropical American bean with red flowers and mottled black beans similar to Phaseolus vulgaris but perennial; a preferred food bean in Great Britain
+68145,scarlet_runner scarlet_runner_bean runner_bean English_runner_bean,long bean pods usually sliced into half-inch lengths; a favorite in Britain
+68146,scarlet_tanager Piranga_olivacea redbird firebird,the male is bright red with black wings and tail
+68147,scarlet_wisteria_tree vegetable_hummingbird Sesbania_grandiflora,a softwood tree with lax racemes of usually red or pink flowers; tropical Australia and Asia; naturalized in southern Florida and West Indies
+68148,scat scat_singing,singing jazz; the singer substitutes nonsense syllables for the words of the song and tries to sound like a musical instrument
+68149,scatology,a preoccupation with obscenity (especially that dealing with excrement or excretory functions)
+68150,scatology,(medicine) the chemical analysis of excrement (for medical diagnosis or for paleontological purposes)
+68151,scatophagy,the eating of excrement or other filth
+68152,scatter scattering strewing,the act of scattering
+68153,scatter spread,a haphazard distribution in all directions
+68154,scatter_pin,small pin usually worn in groups of two or more
+68155,scatter_rug throw_rug,a small rug; several can be used in a room
+68156,scatterbrain forgetful_person,a flighty and disorganized person
+68157,scattering,the physical process in which particles are deflected haphazardly as a result of collisions
+68158,scattering sprinkle sprinkling,a light shower that falls in some locations and not others nearby
+68159,scattering sprinkling,a small number (of something) dispersed haphazardly; "the first scatterings of green"; "a sprinkling of grey at his temples"
+68160,scaup scaup_duck bluebill broadbill,diving ducks of North America having a bluish-grey bill
+68161,scauper scorper,a graver used to scoop out broad areas when engraving wood or metal
+68162,scavenger,a chemical agent that is added to a chemical mixture to counteract the effects of impurities
+68163,scavenger,any animal that feeds on refuse and other decaying organic matter
+68164,scenario,a setting for a work of art or literature; "the scenario is France during the Reign of Terror"
+68165,scenario,an outline or synopsis of a play (or, by extension, of a literary work)
+68166,scenario,a postulated sequence of possible events; "planners developed several scenarios in case of an attack"
+68167,scenarist,a writer of screenplays
+68168,scene,the place where some action occurs; "the police returned to the scene of the crime"
+68169,scene,an incident (real or imaginary); "their parting was a sad scene"
+68170,scene,a subdivision of an act of a play; "the first act has three scenes"
+68171,scene shot,a consecutive series of pictures that constitutes a unit of action in a film
+68172,scene view,graphic art consisting of the graphic or photographic representation of a visual percept; "he painted scenes from everyday life"; "figure 2 shows photographic and schematic views of the equipment"
+68173,scene-stealer,an actor who draws more attention than other actors in the same scene; "babies are natural scene-stealers"
+68174,scene_painter,a painter of theatrical scenery
+68175,scenery,the appearance of a place
+68176,scenery scene,the painted structures of a stage set that are intended to suggest a particular locale; "they worked all night painting the scenery"
+68177,sceneshifter shifter,a stagehand responsible for moving scenery
+68178,scenic_artist scene_painter,an artist specializing in scenic subjects
+68179,scenic_railway,small railway in an amusement park
+68180,scent,an odor left in passing by which a person or animal can be traced
+68181,scented_fern Mohria_caffrorum,sweetly scented African fern with narrow bipinnate fronds
+68182,scentless_camomile scentless_false_camomile scentless_mayweed scentless_hayweed corn_mayweed Tripleurospermum_inodorum Matricaria_inodorum,ubiquitous European annual weed with white flowers and finely divided leaves naturalized and sometimes cultivated in eastern North America; sometimes included in genus Matricaria
+68183,scepter sceptre,the imperial authority symbolized by a scepter
+68184,scepter sceptre verge wand,a ceremonial or emblematic staff
+68185,schedule,an ordered list of times at which things are planned to occur
+68186,schedule_feeding,feeding a baby or animal according to a fixed schedule (e.g., every 4 hours)
+68187,scheduled_fire,prearranged fire delivered at a predetermined time
+68188,scheduled_maintenance,maintenance at a regularly scheduled time
+68189,scheduler,computer hardware that arranges jobs to be done by the computer in an appropriate order
+68190,scheduling programming programing,setting an order and time for planned events
+68191,scheelite,a mineral used as an ore of tungsten
+68192,schema scheme,an internal representation of the world; an organization of concepts and actions that can be revised by new information about the world
+68193,schematic schematic_drawing,diagram of an electrical or mechanical system
+68194,schematization schematisation,the act of reducing to a scheme or formula
+68195,schematization schematisation diagramming,providing a chart or outline of a system
+68196,scheme strategy,an elaborate and systematic plan of action
+68197,schemer plotter,a planner who draws up a personal scheme of action
+68198,schemozzle shemozzle,(Yiddish) a confused situation or affair; a mess
+68199,scherzo,a fast movement (usually in triple time)
+68200,schilling Austrian_schilling,formerly the basic unit of money in Austria
+68201,schipperke,breed of small stocky black dogs originally used as watchdogs on boats in the Netherlands and Belgium
+68202,schism,the formal separation of a church into two churches or the withdrawal of one group over doctrinal differences
+68203,schism split,division of a group into opposing factions; "another schism like that and they will wind up in bankruptcy"
+68204,schist,any metamorphic rock that can be split into thin layers
+68205,schistosome blood_fluke,flatworms parasitic in the blood vessels of mammals
+68206,schistosome_dermatitis swimmer's_itch,a sensitization reaction to repeated invasion of the skin by cercariae of schistosomes
+68207,schistosomiasis bilharzia bilharziasis,an infestation with or a resulting infection caused by a parasite of the genus Schistosoma; common in the tropics and Far East; symptoms depend on the part of the body infected
+68208,schizocarp,a dry dehiscent fruit that at maturity splits into two or more parts each with a single seed
+68209,schizogony,asexual reproduction by multiple fission; characteristic of many sporozoan protozoans
+68210,schizopetalon Schizopetalon_walkeri,a dainty South American annual having deeply pinnatifid leaves and racemes of fringed almond-scented purple-white flowers
+68211,schizophrenia schizophrenic_disorder schizophrenic_psychosis dementia_praecox,any of several psychotic disorders characterized by distortions of reality and disturbances of thought and language and withdrawal from social contact
+68212,schizophrenic,someone who is afflicted with schizophrenia
+68213,schizothymia,resembling schizophrenia but remaining within the bounds of normality
+68214,schizotypal_personality schizoid,characterized by symptoms similar to but less severe than schizophrenia
+68215,schlemiel shlemiel,(Yiddish) a dolt who is a habitual bungler
+68216,schlep shlep,a tedious or difficult journey
+68217,schlepper shlepper schlep shlep,(Yiddish) an awkward and stupid person
+68218,schlimazel shlimazel,(Yiddish) a very unlucky or inept person who fails at everything
+68219,schlock shlock dreck,merchandise that is shoddy or inferior
+68220,schlockmeister shlockmeister,(slang) a merchant who deals in shoddy or inferior merchandise
+68221,schmaltz shmaltz schmalz,(Yiddish) excessive sentimentality in art or music
+68222,schmeer schmear shmear,(Yiddish) a batch of things that go together; "he bought the whole schmeer"
+68223,schmuck shmuck schmo shmo,(Yiddish) a jerk
+68224,schnapps schnaps,any of various strong liquors especially a Dutch spirit distilled from potatoes
+68225,schnauzer,old German breed of sturdy black or greyish wire-haired terriers having a blunt muzzle ranging in size from fairly small to very large; used as ratters and guard dogs or police dogs
+68226,schnitzel Wiener_schnitzel,deep-fried breaded veal cutlets
+68227,schnook shnook,(Yiddish) a gullible simpleton more to be pitied than despised; "don't be such an apologetic shnook"
+68228,schnorrer shnorrer,(Yiddish) a scrounger who takes advantage of the generosity of others
+68229,scholar,a student who holds a scholarship
+68230,scholar scholarly_person bookman student,a learned person (especially in the humanities); someone who by long study has gained mastery in one or more disciplines
+68231,scholarship,financial aid provided to a student on the basis of academic merit
+68232,scholasticism academicism academism,orthodoxy of a scholastic variety
+68233,scholiast,a scholar who writes explanatory notes on an author (especially an ancient commentator on a classical author)
+68234,scholium scholia,a marginal note written by a scholiast (a commentator on ancient or classical literature)
+68235,school,an educational institution's faculty and students; "the school keeps parents informed"; "the whole school turned out for the game"
+68236,school,an educational institution; "the school was founded in 1900"
+68237,school,a body of creative artists or writers or thinkers linked by a similar style or by similar teachers; "the Venetian school of painting"
+68238,school schoolhouse,a building where young people receive education; "the school was built in 1932"; "he walked to school every morning"
+68239,school schooling,the process of being formally educated at a school; "what will you do when you finish school?"
+68240,school schooltime school_day,the period of instruction in a school; the time period when school is in session; "stay after school"; "he didn't miss a single day of school"; "when the school day was done we would walk home together"
+68241,school shoal,a large group of fish; "a school of small glittering fish swam by"
+68242,school_assignment schoolwork,a school task performed by a student to satisfy the teacher
+68243,school_bell,a bell rung to announce beginning or ending of class
+68244,school_board board_of_education,a board in charge of local public schools
+68245,school_bus,a bus used to transport children to or from school
+68246,school_crossing,a pedestrian crossing where school children cross a street on the way to school
+68247,school_day,any day on which school is in session; "go to bed early because tomorrow is a school day"
+68248,school_district,a district whose public schools are administered together
+68249,school_newspaper school_paper,a newspaper written and published by students in a school
+68250,school_phobia,a child's sudden fear of attending school
+68251,school_ship training_ship,a ship used to train students as sailors
+68252,school_superintendent,the superintendent of a school system
+68253,school_system,establishment including the plant and equipment for providing education from kindergarten through high school
+68254,school_term academic_term academic_session session,the time during which a school holds classes; "they had to shorten the school term"
+68255,school_year academic_year,the period of time each year when the school is open and people are studying
+68256,schoolbag,a bag for carrying school books and supplies; "found just the right dictionary to fit into his schoolbag"
+68257,schoolboy,a boy attending school
+68258,schoolchild school-age_child pupil,a young person attending school (up through senior high school)
+68259,schooldays schooltime,the time of life when you are going to school
+68260,schoolfriend,a friend who attends the same school
+68261,schoolgirl,a girl attending school
+68262,schooling,the training of an animal (especially the training of a horse for dressage)
+68263,schooling,the act of teaching at school
+68264,schoolmarm schoolma'am schoolmistress mistress,a woman schoolteacher (especially one regarded as strict)
+68265,schoolmaster,any person (or institution) who acts as an educator
+68266,schoolmaster Lutjanus_apodus,food fish of warm Caribbean and Atlantic waters
+68267,schoolmate classmate schoolfellow class_fellow,an acquaintance that you go to school with
+68268,schoolteacher school_teacher,a teacher in a school below the college level
+68269,schoolyard,the yard associated with a school
+68270,schooner,a large beer glass
+68271,schooner,sailing vessel used in former times
+68272,schorl,black tourmaline
+68273,schottische,music performed for dancing the schottische
+68274,schottische,a German round dance resembling a slow polka
+68275,schrod scrod,flesh of young Atlantic cod weighing up to 2 pounds; also young haddock and pollock; often broiled
+68276,schwa shwa,a neutral middle vowel; occurs in unstressed syllables
+68277,sciaenid_fish sciaenid,widely distributed family of carnivorous percoid fishes having a large air bladder used to produce sound
+68278,sciatic_nerve nervus_ischiadicus,arises from the sacral plexus and passes about halfway down the thigh where it divides into the common peroneal and tibial nerves
+68279,sciatica,neuralgia along the sciatic nerve
+68280,science scientific_discipline,a particular branch of scientific knowledge; "the science of genetics"
+68281,science_fiction,literary fantasy involving the imagined impact of science on society
+68282,science_museum,a museum that collects and displays objects having scientific interest
+68283,science_teacher,someone who teaches science
+68284,scientific_fact,an observation that has been confirmed repeatedly and is accepted as true (although its truth is never final)
+68285,scientific_instrument,an instrument used by scientists
+68286,scientific_knowledge,knowledge accumulated by systematic study and organized by general principles; "mathematics is the basis for much scientific knowledge"
+68287,scientific_method,a method of investigation involving observation and theory to test scientific hypotheses
+68288,scientific_research research_project,research into questions posed by scientific theories and hypotheses
+68289,scientific_theory,a theory that explains scientific observations; "scientific theories must be falsifiable"
+68290,scientist,a person with advanced knowledge of one or more sciences
+68291,scilla squill,an Old World plant of the genus Scilla having narrow basal leaves and pink or blue or white racemose flowers
+68292,scimitar,a curved oriental saber; the edge is on the convex side of the blade
+68293,scintilla,a sparkling glittering particle
+68294,scintillating_scotoma flittering_scotoma,a localized area of diminished vision edged by shimmering colored lights; in many people it indicates the onset of migraine
+68295,scintillation,(physics) a flash of light that is produced in a phosphor when it absorbs a photon or ionizing particle
+68296,scintillation,a brilliant display of wit
+68297,scintillation,the twinkling of the stars caused when changes in the density of the earth's atmosphere produce uneven refraction of starlight
+68298,scintillation_counter,counter tube in which light flashes when exposed to ionizing radiation
+68299,sciolism,pretentious superficiality of knowledge
+68300,scion,a descendent or heir; "a scion of royal stock"
+68301,scire_facias,a judicial writ based on some record and requiring the party against whom it is brought to show cause why the record should not be enforced or annulled
+68302,scission,the act of dividing by cutting or splitting
+68303,scissors,a gymnastic exercise performed on the pommel horse when the gymnast moves his legs as the blades of scissors move
+68304,scissors pair_of_scissors,an edge tool having two crossed pivoting blades
+68305,scissors scissors_hold scissor_hold scissor_grip scissors_grip,a wrestling hold in which you wrap your legs around the opponents body or head and put your feet together and squeeze
+68306,scissors_kick,a kick used in the sidestroke; legs are brought together in a scissoring motion
+68307,scissortail scissortailed_flycatcher Muscivora-forficata,grey flycatcher of the southwestern United States and Mexico and Central America having a long forked tail and white breast and salmon and scarlet markings
+68308,sclaff,a poor golf stroke in which the club head hits the ground before hitting the ball
+68309,sclera sclerotic_coat,the whitish fibrous membrane (albuginea) that with the cornea forms the outer covering and protection of the eyeball
+68310,scleral_veins venae_sclerales,tributaries of the anterior ciliary veins that drain the sclera of the eye
+68311,scleredema,a skin disease marked by hard edema of the tissue usually beginning in the face
+68312,sclerite,hard plate or element of the exoskeleton of some arthropods
+68313,scleritis,inflammation of the sclera
+68314,scleroderma dermatosclerosis,an autoimmune disease that affects the blood vessels and connective tissue; fibrous connective tissue is deposited in the skin
+68315,sclerometer,a measuring instrument that measures the hardness of materials by penetrating them with a stylus that has a diamond point
+68316,scleroprotein albuminoid,a simple protein found in horny and cartilaginous tissues and in the lens of the eye
+68317,sclerosis induration,any pathological hardening or thickening of tissue
+68318,sclerotinia,any fungus of the genus Sclerotinia; some causing brown rot diseases in plants
+68319,sclerotium,compact usually dark-colored mass of hardened mycelium constituting a vegetative food-storage body in various true fungi; detaches when mature and can give rise to new growth
+68320,sclerotium_disease sclerotium_rot,plant disease cause by fungi of the genus Sclerotium; also one in which sclerotia are formed
+68321,sclerotomy,surgical incision of the sclerotic coat of the eye
+68322,scoffer flouter mocker jeerer,someone who jeers or mocks or treats something with contempt or calls out in derision
+68323,scoffer gorger,someone who eats food rapidly and greedily
+68324,scofflaw,one who habitually ignores the law and does not answer court summonses
+68325,scoinson_arch sconcheon_arch,an arch that supports part of the wall
+68326,scold scolder nag nagger common_scold,someone (especially a woman) who annoys people by constantly finding fault
+68327,scolion banquet_song,a song (sometimes improvised) sung by guests at a banquet
+68328,scoliosis,an abnormal lateral curve to the vertebral column
+68329,scolopendrium,a fern thought to resemble a millipede
+68330,scombroid scombroid_fish,important marine food and game fishes found in all tropical and temperate seas; some are at least partially endothermic and can thrive in colder waters
+68331,sconce,a shelter or screen providing protection from enemy fire or from the weather
+68332,sconce,a small fort or earthwork defending a ford, pass, or castle gate
+68333,sconce,a candle or flaming torch secured in a sconce
+68334,sconce,a decorative wall bracket for holding candles or other sources of light
+68335,scone,small biscuit (rich with cream and eggs) cut into diamonds or sticks and baked in an oven or (especially originally) on a griddle
+68336,scoop,a large ladle; "he used a scoop to serve the ice cream"
+68337,scoop pocket,a hollow concave shape made by removing something
+68338,scoop scoop_shovel,the shovel or bucket of a dredge or backhoe
+68339,scoop scoopful,the quantity a scoop will hold
+68340,scoop_shot,a basketball shot made with an underhand scooping motion
+68341,scooter,child's two-wheeled vehicle operated by foot
+68342,scope range reach orbit compass ambit,an area in which something acts or operates or has power or control: "the range of a supersonic jet"; "a piano has a greater range than the human voice"; "the ambit of municipal legislation"; "within the compass of this article"; "within the scope of an investigation"; "outside the reach of the law"; "in the political orbit of a world power"
+68343,scopolamine hyoscine,an alkaloid with anticholinergic effects that is used as a sedative and to treat nausea and to dilate the pupils in ophthalmic procedures; "transdermal scopolamine is used to treat motion sickness"; "someone sedated with scopolamine has difficulty lying"
+68344,scops_owl,any of several small owls having ear tufts and a whistling call
+68345,scorch,a plant disease that produces a browning or scorched appearance of plant tissues
+68346,scorch,a discoloration caused by heat
+68347,scorch singe,a surface burn
+68348,scorched-earth_policy,the target company defends itself by selling off its crown jewels
+68349,scorcher,an extremely hot day
+68350,scorcher screamer,a very hard hit ball
+68351,score,an amount due (as at a restaurant or bar); "add it to my score and I'll settle later"
+68352,score,a number that expresses the accomplishment of a team or an individual in a game or contest; "the score was 7 to 0"
+68353,score,a set of twenty members; "a score were sent out but only one returned"
+68354,score,the facts about an actual situation; "he didn't know the score"
+68355,score,the act of scoring in a game or sport; "the winning score came with less than a minute left to play"
+68356,score account,grounds; "don't do it on my account"; "the paper was rejected on account of its length"; "he tried to blame the victim but his success on that score was doubtful"
+68357,score musical_score,a written form of a musical composition; parts for different instruments appear on separate staves on large pages; "he studied the score of the sonata"
+68358,score scotch,a slight surface cut (especially a notch that is made to keep a tally)
+68359,scoreboard,a large board for displaying the score of a contest (and some other information)
+68360,scorekeeper scorer,an official who records the score during the progress of a game
+68361,scorer,a player who makes a score in a game or contest
+68362,scorer,a logger who marks trees to be felled
+68363,scorpaenid scorpaenid_fish,any of numerous carnivorous usually bottom-dwelling warm-water marine fishes found worldwide but most abundant in the Pacific
+68364,scorpaenoid scorpaenoid_fish,fishes having the head armored with bony plates
+68365,scorpioid_cyme,a cyme with flowers or branches alternating in opposite ranks
+68366,scorpion,arachnid of warm dry regions having a long segmented tail ending in a venomous stinger
+68367,scorpion_fly,any of various mecopterous insects of the family Panorpidae of the northern hemisphere having a long beak and long antennae; males have a tail like that of a scorpion except it is not venomous
+68368,scorpion_shell,any of numerous tropical marine snails that as adults have the outer lip of the aperture produced into a series of long curved spines
+68369,scorpionfish scorpion_fish sea_scorpion,marine fishes having a tapering body with an armored head and venomous spines
+68370,scorpionweed scorpion_weed phacelia,any plant of the genus Phacelia
+68371,scorzonera black_salsify,long black salsify
+68372,scot_and_lot,obligations of all kinds taken as a whole
+68373,scoter scooter,large black diving duck of northern parts of the northern hemisphere
+68374,scotoma,an isolated area of diminished vision within the visual field
+68375,scour,a place that is scoured (especially by running water)
+68376,scourer,someone who cleanses by scouring
+68377,scourer,someone who travels widely and energetically; "he was a scourer of the seven seas"
+68378,scourge flagellum,a whip used to inflict punishment (often used for pedantic humor)
+68379,scouring,moving over territory to search for something; "scouring the entire area revealed nothing"
+68380,scouring_pad,a small abrasive cleaning pad used for scouring pots and pans
+68381,scouring_rush rough_horsetail Equisetum_hyemale Equisetum_hyemale_robustum Equisetum_robustum,evergreen erect horsetail with rough-edged stems; formerly used for scouring utensils
+68382,scours,diarrhea in livestock
+68383,scout pathfinder guide,someone who can find paths through unexplored territory
+68384,scout talent_scout,someone employed to discover and recruit talented persons (especially in the worlds of entertainment or sports)
+68385,scouting exploratory_survey reconnoitering reconnoitring,exploring in order to gain information; "scouting in enemy territory is very dangerous"
+68386,scouting_trip,an expedition undertaken to gain information
+68387,scoutmaster,the leader of a troop of Scouts
+68388,scow,any of various flat-bottomed boats with sloping ends
+68389,scow,a barge carrying bulk materials in an open hold
+68390,scrag,lean end of the neck
+68391,scrag scrag_end,the lean end of a neck of veal
+68392,scramble scuffle,an unceremonious and disorganized struggle
+68393,scrambled_eggs,eggs beaten and cooked to a soft firm consistency while stirring
+68394,scrambler,a rapid mover; someone who scrambles; "their quarterback was a good scrambler"; "scramblers can often unnerve a better tennis player"
+68395,scrambler,electronic equipment that makes speech unintelligible during transmission and restores it at reception
+68396,scrap,a small piece of something that is left over after the rest has been used; "she jotted it on a scrap of paper"; "there was not a scrap left"
+68397,scrap_iron,iron to be melted again and reworked
+68398,scrap_metal,discarded metal suitable for reprocessing; "he finally sold the car for scrap metal"
+68399,scrapbook,an album into which clippings or notes or pictures can be pasted
+68400,scrape scraping,a deep bow with the foot drawn backwards (indicating excessive humility); "all that bowing and scraping did not impress him"
+68401,scrape scraping scratch scratching,a harsh noise made by scraping; "the scrape of violin bows distracted her"
+68402,scraper,any of various hand tools for scraping
+68403,scrapheap,pile of discarded metal
+68404,scrapie,a fatal disease of sheep characterized by chronic itching and loss of muscular control and progressive degeneration of the central nervous system
+68405,scraping,(usually plural) a fragment scraped off of something and collected; "they collected blood scrapings for analysis"
+68406,scrappiness,the trait of being scrappy and pugnacious
+68407,scrapple,scraps of meat (usually pork) boiled with cornmeal and shaped into loaves for slicing and frying
+68408,scratch,a competitor who has withdrawn from competition
+68409,scratch,(golf) a handicap of zero strokes; "a golfer who plays at scratch should be able to achieve par on a course"
+68410,scratch scrape scar mark,an indication of damage
+68411,scratch_pad scratch_paper scribbling_block,pad for preliminary or hasty writing or notes or sketches etc; "scribbling block" is a British term
+68412,scratch_race,a race in which all contestants start from scratch (on equal terms)
+68413,scratch_test,a test to determine allergic sensitivity to various substances by applying them to scratches in the skin
+68414,scratcher,a workman who uses a tool for scratching
+68415,scratcher,a person who scratches to relieve an itch
+68416,scratcher,a device used for scratching
+68417,scratchpad,(computer science) a high-speed internal memory used for temporary storage of preliminary information
+68418,scrawler scribbler,a writer whose handwriting is careless and hard to read
+68419,scrawniness scrubbiness,the property of being stunted and inferior in size or quality; "the scrawniness of sickly trees"
+68420,scream screaming shriek shrieking screech screeching,sharp piercing cry; "her screaming attracted the neighbors"
+68421,screamer,a sensational newspaper headline
+68422,screamer,gooselike aquatic bird of South America having a harsh trumpeting call
+68423,screech screeching shriek shrieking scream screaming,a high-pitched noise resembling a human cry; "he ducked at the screechings of shells"; "he heard the scream of the brakes"
+68424,screech_owl,any owl that has a screeching cry
+68425,screech_owl Otus_asio,small North American owl having hornlike tufts of feathers whose call sounds like a quavering whistle
+68426,screed,a long monotonous harangue
+68427,screed,a long piece of writing
+68428,screed,an accurately levelled strip of material placed on a wall or floor as guide for the even application of plaster or concrete
+68429,screen,partition consisting of a decorative frame or panel that serves to divide a space
+68430,screen,a protective covering consisting of netting; can be mounted in a frame; "they put screens in the windows for protection against insects"; "a metal screen protected the observers"
+68431,screen CRT_screen,the display that is electronically created on the surface of the large end of a cathode-ray tube
+68432,screen cover covert concealment,a covering that serves to conceal or shelter something; "a screen of trees afforded privacy"; "under cover of darkness"; "the brush provided a covert for game"; "the simplest concealment is to match perfectly the color of the background"
+68433,screen silver_screen projection_screen,a white or silvered surface where pictures can be projected for viewing
+68434,screen_actor movie_actor,an actor who plays a role in a film
+68435,screen_door,a door that consists of a frame holding metallic or plastic netting; used to allow ventilation and to keep insects from entering a building through the open door; "he heard the screen door slam as she left"
+68436,screen_font raster_font,the font that is displayed on a computer screen; "when the screen font resembles a printed font a document may look approximately the same on the screen as it will when printed"
+68437,screen_memory,an imagined memory of a childhood experience; hides another memory of distressing significance
+68438,screen_pass,a short forward pass in which the receiver is protected by a screen of blockers
+68439,screen_saver,(computer science) a moving design that appears on a computer screen when there has been no input for a specified period of time; "screen savers prevent the damage that occurs when the same areas of light and dark are displayed too long"
+68440,screen_test,a filmed audition of an actor or actress
+68441,screener,a guard at an airport who checks passengers or their luggage at a security checkpoint
+68442,screening,fabric of metal or plastic mesh
+68443,screening,testing objects or persons in order to identify those with particular characteristics
+68444,screening showing viewing,the display of a motion picture
+68445,screenplay,a script for a film including dialogue and descriptions of characters and sets
+68446,screenwriter film_writer,someone who writes screenplays
+68447,screw,a simple machine of the inclined-plane type consisting of a spirally threaded cylindrical rod that engages with a similarly threaded hole
+68448,screw,a fastener with a tapered threaded shank and a slotted head
+68449,screw screw_propeller,a propeller with several angled blades that rotates to push against water or air
+68450,screw_augur Spiranthes_cernua,an orchid of the genus Spiranthes having tall erect densely flowered spiraling clusters of creamy white vanilla-scented flowers; widely distributed especially in low damp places of eastern and central North America
+68451,screw_bean,spirally twisted sweet pod of screwbean mesquite that is used for fodder or ground into meal for feed
+68452,screw_bean screwbean tornillo screwbean_mesquite Prosopis_pubescens,shrub or small tree of southwestern United States and northwestern Mexico having spirally twisted pods
+68453,screw_eye,a woodscrew having its shank bent into a ring
+68454,screw_key,a wrench for turning a screw
+68455,screw_thread thread,the raised helical rib going around a screw
+68456,screw_tree,a tree or shrub of the genus Helicteres
+68457,screw_wrench,adjustable wrench that has one jaw that can be adjusted by turning a screw
+68458,screwball,a pitch with reverse spin that curves toward the side of the plate from which it was thrown
+68459,screwballer,(baseball) a pitcher who throws screwballs
+68460,screwdriver,a cocktail made with vodka and orange juice
+68461,screwdriver,a hand tool for driving screws; has a tip that fits into the head of a screw
+68462,screwtop,the top of a container that must be screwed off and on
+68463,screwup,the complete mismanagement or mishandling of a situation; "a typical bureaucratic screwup"
+68464,scribble scrabble doodle,an aimless drawing
+68465,scribble scratch scrawl cacography,poor handwriting
+68466,scribe scribbler penman,informal terms for journalists
+68467,scriber scribe scratch_awl,a sharp-pointed awl for marking wood or metal to be cut
+68468,scrim,a firm open-weave fabric used for a curtain in the theater
+68469,scrimmage,(American football) practice play between a football team's squads
+68470,scrimmage_line line_of_scrimmage,line parallel to the goal lines where football linesmen line up at the start of each play in American football; "the runner was tackled at the line of scrimmage"
+68471,scrimshanker,a shirker
+68472,scrimshaw,a carving (or engraving) on whalebone, whale ivory, walrus tusk, etc., usually by American whalers
+68473,scrip,a certificate whose value is recognized by the payer and payee; scrip is not currency but may be convertible into currency
+68474,script,a particular orthography or writing system
+68475,script book playscript,a written version of a play or other dramatic composition; used in preparing for a performance
+68476,scriptorium,a room in a monastery that is set aside for writing or copying manuscripts
+68477,scripture sacred_scripture,any writing that is regarded as sacred by a religious group
+68478,scriptwriter,someone who writes scripts for plays or movies or broadcast dramas
+68479,scrod schrod,young Atlantic cod or haddock especially one split and boned for cooking
+68480,scrofula struma king's_evil,a form of tuberculosis characterized by swellings of the lymphatic glands
+68481,scroll roll,a document that can be rolled up (as for storage)
+68482,scrotal_vein vena_scrotalis,veins passing from the scrotum to the pudendal veins
+68483,scrotum,the external pouch that contains the testes
+68484,scrub chaparral bush,dense vegetation consisting of stunted trees or bushes
+68485,scrub scrubbing scouring,the act of cleaning a surface by rubbing it with a brush and soap and water
+68486,scrub_beefwood beefwood Stenocarpus_salignus,tree or tall shrub with shiny leaves and umbels of fragrant creamy-white flowers; yields hard heavy reddish wood
+68487,scrub_brush scrubbing_brush scrubber,a brush with short stiff bristles for heavy cleaning
+68488,scrub_nurse,a nurse who helps a surgeon prepare for surgery
+68489,scrub_oak,any of various chiefly American small shrubby oaks often a dominant form on thin dry soils sometimes forming dense thickets
+68490,scrub_pine Virginia_pine Jersey_pine Pinus_virginiana,common small shrubby pine of the eastern United States having straggling often twisted or branches and short needles in bunches of 2
+68491,scrub_plane,a narrow woodworking plane used to cut away excess stock
+68492,scrubber,a worker who uses a scrub brush to clean a surface (usually a floor or deck)
+68493,scrubber,a purifier that removes impurities from a gas
+68494,scrubbird scrub-bird scrub_bird,small fast-running Australian bird resembling a wren and frequenting brush or scrub
+68495,scrubland,an uncultivated region covered with scrub vegetation
+68496,scrum scrummage,(rugby) the method of beginning play in which the forwards of each team crouch side by side with locked arms; play starts when the ball is thrown in between them and the two sides compete for possession
+68497,scrumpy,strong cider (as made in western England)
+68498,scrunch,a crunching noise
+68499,scruple,a unit of apothecary weight equal to 20 grains
+68500,scruple,an ethical or moral principle that inhibits action
+68501,scruple qualm misgiving,uneasiness about the fitness of an action
+68502,scrupulousness,conformity to high standards of ethics or excellence
+68503,scrutineer canvasser,someone who examines votes at an election
+68504,scrutinizer scrutiniser,a careful examiner; someone who inspects with great care
+68505,scrutiny,a prolonged intense look
+68506,scuba_diver,an underwater diver who uses scuba gear
+68507,scuba_diving,skin diving with scuba apparatus
+68508,scud scudding,the act of moving along swiftly (as before a gale)
+68509,scuff,the act of scuffing (scraping or dragging the feet)
+68510,scuffer,a lightweight flexible sandal with a sturdy sole; worn as play shoes by children and as sportswear by adults
+68511,scuffle scuffle_hoe Dutch_hoe,a hoe that is used by pushing rather than pulling
+68512,scull,a long oar that is mounted at the stern of a boat and moved left and right to propel the boat forward
+68513,scull,each of a pair of short oars that are used by a single oarsman
+68514,scull,a racing shell that is propelled by sculls
+68515,sculler,someone who sculls (moves a long oar pivoted on the back of the boat to propel the boat forward)
+68516,scullery,a small room (in large old British houses) next to the kitchen; where kitchen utensils are cleaned and kept and other rough household jobs are done
+68517,sculling,rowing by a single oarsman in a racing shell
+68518,scullion,a kitchen servant employed to do menial tasks (especially washing)
+68519,sculpin,any of numerous spiny large-headed usually scaleless scorpaenoid fishes with broad mouths
+68520,sculptor sculpturer carver statue_maker,an artist who creates sculptures
+68521,sculptress,a woman sculptor
+68522,sculpture,a three-dimensional work of plastic art
+68523,sculpture carving,creating figures or designs in three dimensions
+68524,scum,a film of impurities or vegetation that can form on the surface of a liquid
+68525,scumble,the application of very thin coat of color over the surface of a picture
+68526,scunner,a strong dislike; "they took a scunner against the United States"
+68527,scup,flesh of fish found in colder waters of northern Atlantic coast of the United States
+68528,scup northern_porgy northern_scup Stenotomus_chrysops,found in Atlantic coastal waters of North America from South Carolina to Maine; esteemed as a panfish
+68529,scup southern_porgy southern_scup Stenotomus_aculeatus,porgy of southern Atlantic coastal waters of North America
+68530,scupper,drain that allows water on the deck of a vessel to flow overboard
+68531,scuppernong,amber-green muscadine grape of southeastern United States
+68532,scurf,(botany) a covering that resembles scales or bran that covers some plant parts
+68533,scurrility billingsgate,foul-mouthed or obscene abuse
+68534,scurvy scorbutus,a condition caused by deficiency of ascorbic acid (vitamin C)
+68535,scurvy_grass common_scurvy_grass Cochlearia_officinalis,a widely distributed Arctic cress reputed to have value in treatment or prevention of scurvy; a concentrated source of vitamin C
+68536,scut,a short erect tail
+68537,scut_work shitwork,trivial, unrewarding, tedious, dirty, and disagreeable chores; "the hospital hired him to do scut work"
+68538,scute,large bony or horny plate as on an armadillo or turtle or the underside of a snake
+68539,scuttle coal_scuttle,container for coal; shaped to permit pouring the coal onto the fire
+68540,scyphozoan,any of various usually free-swimming marine coelenterates having a gelatinous medusoid stage as the dominant phase of its life cycle
+68541,scyphus,an ancient Greek drinking cup; two handles and footed base
+68542,scythe,an edge tool for cutting grass; has a long handle that must be held with both hands and a curved blade that moves parallel to the ground
+68543,sea,turbulent water with swells of considerable size; "heavy seas"
+68544,sea,a division of an ocean or a large body of salt water partially enclosed by land
+68545,sea-duty service_abroad shipboard_duty,naval service aboard a ship at sea
+68546,sea-level_pressure,the atmospheric pressure reduced by a formula to the pressure at sea level
+68547,sea-rocket Cakile_maritima,salt-tolerant seashore annual grown for its fragrant rose or violet flowers and fleshy grey-green foliage
+68548,sea_anchor drogue,restraint consisting of a canvas covered frame that floats behind a vessel; prevents drifting or maintains the heading into a wind
+68549,sea_anemone anemone,marine polyps that resemble flowers but have oral rings of tentacles; differ from corals in forming no hard skeleton
+68550,sea_aster sea_starwort Aster_tripolium,a common European aster that grows in salt marshes
+68551,sea_bass,any of various food and sport fishes of the Atlantic coast of the United States having an elongated body and long spiny dorsal fin
+68552,sea_bass bass,the lean flesh of a saltwater fish of the family Serranidae
+68553,sea_bathing,bathing in the sea or ocean
+68554,sea_boat,a boat that is seaworthy; that is adapted to the open seas
+68555,sea_bream bream,any of numerous marine percoid fishes especially (but not exclusively) of the family Sparidae
+68556,sea_breeze,a cooling breeze from the sea (during the daytime)
+68557,sea_catfish,any of numerous marine fishes most of which are mouthbreeders; not used for food
+68558,sea_change,a profound transformation
+68559,sea_chest,a sailor's storage chest for personal property
+68560,sea_chub,schooling fishes mostly of Indian and western Pacific oceans; two species in western Atlantic
+68561,sea_coal,pulverized bituminous coal; used as a foundry facing
+68562,sea_cow sirenian_mammal sirenian,any of two families of large herbivorous aquatic mammals with paddle-shaped tails and flipper-like forelimbs and no hind limbs
+68563,sea_cucumber holothurian,echinoderm having a flexible sausage-shaped body, tentacles surrounding the mouth and tube feet; free-living mud feeders
+68564,sea_dahlia Coreopsis_maritima,stout herb with flowers one to a stalk; ornamental developed from a Mexican wildflower
+68565,sea_duck,any of various large diving ducks found along the seacoast: eider; scoter; merganser
+68566,sea_eagle,any of various large eagles that usually feed on fish
+68567,sea_fan,corals having a treelike or fan-shaped horny skeleton
+68568,sea_feather,corals forming featherlike colonies
+68569,sea_god,a deity that personifies the sea and is usually believed to live in or to control the sea
+68570,sea_gooseberry,ctenophore having a rounded body with longitudinal rows of cilia
+68571,sea_green,the property of a moderate green color resembling the waters of the sea
+68572,sea_hare Aplysia_punctata,naked marine gastropod having a soft body with reduced internal shell and two pairs of ear-like tentacles
+68573,sea_holly sea_holm sea_eryngium Eryngium_maritimum,European evergreen eryngo with twisted spiny leaves naturalized on United States east coast; roots formerly used as an aphrodisiac
+68574,sea_island_cotton tree_cotton Gossypium_barbadense,small bushy tree grown on islands of the Caribbean and off the Atlantic coast of the southern United States; yields cotton with unusually long silky fibers
+68575,sea_kale sea_cole Crambe_maritima,perennial of coastal sands and shingles of northern Europe and Baltic and Black Seas having racemes of small white flowers and large fleshy blue-green leaves often used as potherbs
+68576,sea_king,a Viking pirate chief
+68577,sea_ladder sea_steps,(nautical) ladder to be lowered over a ship's side for coming aboard
+68578,sea_lamprey Petromyzon_marinus,large anadromous lamprey sometimes used as food; destructive of native fish fauna in the Great Lakes
+68579,sea_lavender marsh_rosemary statice,any of various plants of the genus Limonium of temperate salt marshes having spikes of white or mauve flowers
+68580,sea_lawyer,an argumentative and contentious seaman
+68581,sea_lettuce laver,seaweed with edible translucent crinkly green fronds
+68582,sea_level,level of the ocean's surface (especially that halfway between mean high and low tide); used as a standard in reckoning land elevation or sea depth
+68583,sea_lily,crinoid with delicate radiating arms and a stalked body attached to a hard surface
+68584,sea_lion,any of several large eared seals of the northern Pacific related to fur seals but lacking their valuable coat
+68585,sea_louse sea_slater,marine isopod crustacean
+68586,sea_lyme_grass European_dune_grass Elymus_arenarius Leymus_arenaria,a dune grass of the Pacific seacoast used as a sand binder
+68587,sea_mile mile,a former British unit of length once used in navigation; equivalent to 6,000 feet (1828.8 meters)
+68588,sea_milkwort sea_trifoly black_saltwort Glaux_maritima,a small fleshy herb common along North American seashores and in brackish marshes having pink or white flowers
+68589,sea_moss,any of various red algae having graceful rose to purple fronds (e.g. dulse or carrageen)
+68590,sea_mouse,any of several large worms having a broad flattened body with a mat of coarse hairs covering the back
+68591,sea_nymph,(Greek mythology) a water nymph who was the daughter of Oceanus or Nereus
+68592,sea_otter Enhydra_lutris,large marine otter of northern Pacific coasts having very thick dark brown fur
+68593,sea_pen,fleshy featherlike warm-water colonies
+68594,sea_power,a nation that possesses formidable naval strength
+68595,sea_power,naval strength
+68596,sea_raven Hemitripterus_americanus,large sculpin of western Atlantic; inflates itself when caught
+68597,sea_robin searobin,American gurnard; mostly found in bays and estuaries
+68598,sea_room,space for maneuver at sea
+68599,sea_scallop,muscle of large deep-water scallops
+68600,sea_scallop giant_scallop Pecten_magellanicus,a large scallop inhabiting deep waters of the Atlantic coast of North America
+68601,sea_serpent,huge creature of the sea resembling a snake or dragon
+68602,sea_slug nudibranch,any of various marine gastropods of the suborder Nudibranchia having a shell-less and often beautifully colored body
+68603,sea_snake,any of numerous venomous aquatic viviparous snakes having a fin-like tail; of warm littoral seas; feed on fish which they immobilize with quick-acting venom
+68604,sea_spider pycnogonid,any of various small spiderlike marine arthropods having small thin bodies and long slender legs
+68605,sea_spray,spray from ocean waves
+68606,sea_squill sea_onion squill Urginea_maritima,having dense spikes of small white flowers and yielding a bulb with medicinal properties
+68607,sea_squirt,ascidian that can contract its body and eject streams of water
+68608,sea_swallow Sterna_hirundo,common tern of Eurasia and America having white black and grey plumage
+68609,sea_tangle tang,any of various kelps especially of the genus Laminaria
+68610,sea_trout,any of several sciaenid fishes of North American coastal waters
+68611,sea_trout,silvery marine variety of brown trout that migrates to fresh water to spawn
+68612,sea_trout salmon_trout,flesh of marine trout that migrate from salt to fresh water
+68613,sea_turtle marine_turtle,any of various large turtles with limbs modified into flippers; widely distributed in warm seas
+68614,sea_urchin,shallow-water echinoderms having soft bodies enclosed in thin spiny globular shells
+68615,sea_wormwood Seriphidium_maritimum Artemisia_maritima,plants of western and northern European coasts
+68616,sea_wrack wrack,growth of marine vegetation especially of the large forms such as rockweeds and kelp
+68617,seabag,a cylindrical drawstring bag used by sailors to hold their clothing and other gear
+68618,seabeach_sandwort Arenaria_peploides,perennial succulent herb with small solitary axillary or terminal flowers
+68619,seabird sea_bird seafowl,a bird that frequents coastal waters and the open ocean: gulls; pelicans; gannets; cormorants; albatrosses; petrels; etc.
+68620,seaborgium Sg element_106 atomic_number_106,a transuranic element
+68621,seafaring navigation sailing,the work of a sailor
+68622,seafood,edible fish (broadly including freshwater fish) or shellfish or roe etc
+68623,seafood_Newburg,seafood in Newburg sauce served on toast or rice
+68624,seafront,the waterfront of a seaside town
+68625,seagrass,any of various seaweeds that grow underwater in shallow beds; "seagrass provides a protective environment in which young fish can develop"
+68626,seahorse sea_horse,small fish with horse-like heads bent sharply downward and curled tails; swim in upright position
+68627,seal,a stamp affixed to a document (as to attest to its authenticity or to seal it); "the warrant bore the sheriff's seal"
+68628,seal,a finishing coat applied to exclude moisture
+68629,seal,fastener that provides a tight and perfect closure
+68630,seal,any of numerous marine mammals that come on shore to breed; chiefly of cold regions
+68631,seal sealskin,the pelt or fur (especially the underfur) of a seal; "a coat of seal"
+68632,seal stamp,a device incised to make an impression; used to secure a closing or to authenticate documents
+68633,seal_bomb,a small explosive device (resembling a firecracker) that is used underwater in order to frighten mammals away from fishing grounds
+68634,seal_oil,a pale yellow to red-brown fatty oil obtained from seal blubber; used in making soap and dressing leather and as a lubricant
+68635,sealant sealer,a kind of sealing material that is used to form a hard coating on a porous surface (as a coat of paint or varnish used to size a surface)
+68636,sealed_instrument contract_under_seal special_contract,a contract that is signed and has the (wax) seal of the signer attached
+68637,sealer,an official who affixes a seal to a document
+68638,sealing_material,any substance used to seal joints or fill cracks in a porous surface
+68639,sealing_wax seal,fastener consisting of a resinous composition that is plastic when warm; used for sealing documents and parcels and letters
+68640,sealskin,a garment (as a jacket or coat or robe) made of sealskin
+68641,seam,joint consisting of a line formed by joining two pieces
+68642,seam bed,a stratum of ore or coal thick enough to be mined with profit; "he worked in the coal beds"
+68643,seamanship,skill in sailing
+68644,seamount,an underwater mountain rising above the ocean floor
+68645,seance sitting session,a meeting of spiritualists; "the seance was held in the medium's parlor"
+68646,seaplane hydroplane,an airplane that can land on or take off from water; "the designer of marine aircraft demonstrated his newest hydroplane"
+68647,seaport haven harbor harbour,a sheltered port where ships can take on or discharge cargo
+68648,seaquake submarine_earthquake,an earthquake at the sea bed
+68649,search,the examination of alternative hypotheses; "his search for a move that would avoid checkmate was unsuccessful"
+68650,search,boarding and inspecting a ship on the high seas; "right of search"
+68651,search,an investigation seeking answers; "a thorough search of the ledgers revealed nothing"; "the outcome justified the search"
+68652,search hunt hunting,the activity of looking thoroughly in order to find something or someone
+68653,search lookup,an operation that determines whether one or more of a set of items has a specified property; "they wrote a program to do a table lookup"
+68654,search_and_destroy_mission,an operation developed for United States troops in Vietnam; troops would move through a designated area destroying troops as they found them
+68655,search_and_rescue_mission,a rescue mission to search for survivors and to rescue them
+68656,search_engine,a computer program that retrieves documents or files or data from a database or from a computer network (especially from the internet)
+68657,search_mission,a mission to discover something
+68658,search_party,a party of people to search for someone
+68659,search_warrant,a warrant authorizing law enforcement officials to search for objects or people involved in the commission of a crime and to produce them in court; the warrant describes the locations where the officials may search
+68660,searcher,a customs official whose job is to search baggage or goods or vehicles for contraband or dutiable items
+68661,searcher searcher_beetle Calosoma_scrutator,large metallic blue-green beetle that preys on caterpillars; found in North America
+68662,searching_fire,fire distributed in depth by successive changes in the elevation of the gun
+68663,searchlight,a light source with reflectors that projects a beam of light in a particular direction
+68664,searing_iron,a hot iron used to destroy tissue
+68665,seascape,a view of the sea
+68666,seascape waterscape,a painting of the sea (as distinguished from a landscape)
+68667,seashell,the shell of a marine organism
+68668,seashore coast seacoast sea-coast,the shore of a sea or ocean
+68669,seashore_mallow,any of various plants of the genus Kosteletzya predominantly of coastal habitats; grown for their flowers that resemble hibiscus
+68670,seasickness mal_de_mer naupathia,motion sickness experienced while traveling on water
+68671,seaside seaboard,the shore of a sea or ocean regarded as a resort
+68672,seaside_alder Alnus_maritima,shrub or small tree of southeastern United States having soft light brown wood
+68673,seaside_centaury,a variety of centaury found at the seaside
+68674,seaside_daisy beach_aster Erigeron_glaucous,slightly succulent perennial with basal leaves and hairy sticky stems each bearing a solitary flower head with narrow pink or lavender rays; coastal bluffs Oregon to southern California
+68675,seaside_goldenrod beach_goldenrod Solidago_sempervirens,vigorous showy goldenrod common along eastern coast and Gulf Coast of North America
+68676,seasnail,any of several creeping marine gastropods with a spirally coiled shell: whelks; tritons; moon shells; neritids
+68677,season,a period of the year marked by special events or activities in some field; "he celebrated his 10th season with the ballet company"; "she always looked forward to the avocado season"
+68678,season,a recurrent time marked by major holidays; "it was the Christmas season"
+68679,season time_of_year,one of the natural periods into which the year is divided by the equinoxes and solstices or atmospheric conditions; "the regular sequence of the seasons"
+68680,seasonableness timeliness,being at the right time
+68681,seasonal_adjustment,a statistical adjustment made to accommodate predictable fluctuations as a function of the season of the year; "seasonal adjustments for housing starts must be made in mid-winter"
+68682,seasonal_worker seasonal,a worker who finds employment only in certain seasons
+68683,seasoned_salt,combination of salt and vegetable extracts and spices and monosodium glutamate
+68684,seasoner,a cook who uses seasonings; "the cook is a light seasoner"
+68685,seasoning,the act of adding a seasoning to food
+68686,seat,a center of authority (as a city from which authority is exercised)
+68687,seat,the location (metaphorically speaking) where something is based; "the brain is said to be the seat of reason"
+68688,seat,the legal right to sit as a member in a legislative or similar body; "he was elected to a seat in the Senate"
+68689,seat,a part of a machine that supports or guides another part
+68690,seat,the cloth covering for the buttocks; "the seat of his pants was worn through"
+68691,seat,furniture that is designed for sitting on; "there were not enough seats for all the guests"
+68692,seat,any support where you can sit (especially the part of a chair or bench etc. on which you sit); "he dusted off the seat before sitting down"
+68693,seat place,a space reserved for sitting (as in a theater or on a train or airplane); "he booked their seats in advance"; "he sat in someone else's place"
+68694,seat_belt seatbelt,a safety belt used in a car or plane to hold you in your seat in case of an accident
+68695,seat_cushion,a cushion that makes a seat more comfortable
+68696,seating,the service of ushering people to their seats
+68697,seating seats seating_room seating_area,an area that includes places where several people can sit; "there is seating for 40 students in this classroom"
+68698,seating_capacity,the number of people that can be seated in a vehicle or auditorium or stadium etc.
+68699,seaward,the direction toward the sea
+68700,seawater saltwater brine,water containing salts; "the water in the ocean is all saltwater"
+68701,seaway sea_lane ship_route trade_route,a lane at sea that is a regularly used route for vessels
+68702,seaweed,plant growing in the sea, especially marine algae
+68703,seaworthiness,fitness to traverse the seas
+68704,sebaceous_cyst pilar_cyst wen steatocystoma,a common cyst of the skin; filled with fatty matter (sebum) that is secreted by a sebaceous gland that has been blocked
+68705,sebaceous_gland sebaceous_follicle glandulae_sebaceae,a cutaneous gland that secretes sebum (usually into a hair follicle) for lubricating hair and skin
+68706,sebacic_acid decanedioic_acid,a dicarboxylic acid used to make resins
+68707,seborrhea,a condition in which overactivity of the sebaceous glands causes the skin to become oily
+68708,seborrheic_dermatitis seborrheic_eczema,a chronic skin disease associated with seborrhea and greasy scales on the scalp or eyelids or other parts of the skin
+68709,seborrheic_keratosis,a skin condition characterized by circumscribed wartlike lesions that can be itchy and covered with a greasy crust
+68710,sebum,the oily secretion of the sebaceous glands; with perspiration it moistens and protects the skin
+68711,secant,a straight line that intersects a curve at two or more points
+68712,secant sec,ratio of the hypotenuse to the adjacent side of a right-angled triangle
+68713,secateurs,small pruning shears with a spring that holds the handles open and a single blade that closes against a flat surface
+68714,secession sezession,an Austrian school of art and architecture parallel to the French art nouveau in the 1890s
+68715,secession withdrawal,formal separation from an alliance or federation
+68716,secessionism,a doctrine that maintains the right of secession
+68717,secessionist,an advocate of secessionism
+68718,seckel seckel_pear,small yellowish- to reddish-brown pear
+68719,seclusion,the act of secluding yourself from others
+68720,secobarbital_sodium secobarbital Seconal red_devil,barbiturate that is a white odorless slightly bitter powder (trade name Seconal) used as a sodium salt for sedation and to treat convulsions
+68721,second,following the first in an ordering or series; "he came in a close second"
+68722,second,the official attendant of a contestant in a duel or boxing match
+68723,second arcsecond,a 60th part of a minute of arc; "the treasure is 2 minutes and 45 seconds south of here"
+68724,second sec s,1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites
+68725,second secondment endorsement indorsement,a speech seconding a motion; "do I hear a second?"
+68726,second-degree_burn,burn causing blisters on the skin and superficial destruction of the dermis
+68727,second-hand_speech,overheard conversation (especially overheard cellphone conversation)
+68728,second-in-command,someone who relieves a commander
+68729,second-place_finish runner-up_finish,a finish in second place (as in a race)
+68730,second-rater mediocrity,a person of second-rate ability or value; "a team of aging second-raters"; "shone among the mediocrities who surrounded him"
+68731,second_balcony family_circle upper_balcony peanut_gallery,rearmost or uppermost area in the balcony containing the least expensive seats
+68732,second_base,the base that must be touched second by a base runner in baseball
+68733,second_base second,the fielding position of the player on a baseball team who is stationed near the second of the bases in the infield
+68734,second_baseman second_sacker,(baseball) the person who plays second base
+68735,second_class,not the highest rank in a classification
+68736,second_class,not the highest quality in a classification
+68737,second_cousin,a child of a first cousin of one's parent
+68738,second_estate Lords_Temporal,the nobility in France and the peerage in Britain
+68739,second_fiddle,a secondary role or function; "he hated to play second fiddle to anyone"
+68740,second_fiddle second_banana,someone who serves in a subordinate capacity or plays a secondary role
+68741,second_gear second,the gear that has the second lowest forward gear ratio in the gear box of a motor vehicle; "he had to shift down into second to make the hill"
+68742,second_growth,a second growth of trees covering an area where the original stand was destroyed by fire or cutting
+68743,second_half last_half,the second of two halves of play
+68744,second_hand,an intermediate person; used in the phrase `at second hand'; "he could learn at second hand from books"
+68745,second_hand,hand marking seconds on a timepiece
+68746,second_joint thigh,the upper joint of the leg of a fowl
+68747,second_law_of_motion Newton's_second_law_of_motion Newton's_second_law,the rate of change of momentum is proportional to the imposed force and goes in the direction of the force
+68748,second_law_of_thermodynamics,a law stating that mechanical work can be derived from a body only when that body interacts with another at a lower temperature; any spontaneous process results in an increase of entropy
+68749,second_lieutenant 2nd_lieutenant,a commissioned officer in the Army or Air Force or Marine Corps holding the lowest rank
+68750,second_moment,the expected value of the square of the deviations of a random variable from the point of origin
+68751,second_mortgage,a mortgage that is subordinate to a first mortgage
+68752,second_nature,acquired behavior that is practiced so long it seems innate
+68753,second_period,the second division into which the play of a game is divided
+68754,second_person,pronouns and verbs used to refer to the person addressed by the language in which they occur
+68755,second_reading,the second presentation of a bill in a legislature; to approve its general principles (Britain) or to discuss a committee's report and take a vote (US)
+68756,second_string,a squad of players that are available either individually or as a team to relieve or replace the players who started the game
+68757,second_trimester,time period extending from the 13th to the 27th week of gestation
+68758,second_wind,renewed energy or strength to continue an undertaking; "She had dinner and got a second wind to finish painting"; "the employers, initially taken by surprise at the pace of developments, regained their second wind"
+68759,second_wind,the return of relatively easy breathing after initial exhaustion during continuous exertion
+68760,secondary,the defensive football players who line up behind the linemen
+68761,secondary_amenorrhea,cessation of menstruation in a woman who had previously menstruated
+68762,secondary_censorship,armed forces censorship of the personal communications of officers or civilian employees or enlisted personnel not subject to primary censorship
+68763,secondary_coil secondary_winding secondary,coil such that current is induced in it by passing a current through the primary coil
+68764,secondary_dentition,dentition of permanent teeth
+68765,secondary_diagonal,the diagonal of a square matrix running from the lower left entry to the upper right entry
+68766,secondary_dysmenorrhea,painful menstruation that is caused by some specific disorder (as endometriosis)
+68767,secondary_education,education beyond the elementary grades; provided by a high school or college preparatory school
+68768,secondary_emission,the emission of electrons from a surface that is bombarded by higher energy primary electrons
+68769,secondary_hypertension,hypertension that is secondary to another disease
+68770,secondary_modern_school,a former British secondary school emphasizing practical rather than academic education
+68771,secondary_school lyceum lycee Gymnasium middle_school,a school for students intermediate between elementary school and college; usually grades 9 to 12
+68772,secondary_sex_characteristic secondary_sexual_characteristic secondary_sex_character,the genetically determined sex characteristics that are not functionally necessary for reproduction (pitch of the voice and body hair and musculature)
+68773,secondary_syphilis,the second stage; characterized by eruptions of the skin and mucous membrane
+68774,seconder,someone who endorses a motion or petition as a necessary preliminary to a discussion or vote
+68775,secondment,the detachment of a person from their regular organization for temporary assignment elsewhere
+68776,secondo,the second or lower part of a duet (especially a piano duet)
+68777,secrecy secretiveness silence,the trait of keeping things secret
+68778,secret,something that should remain hidden from others (especially information that is not to be passed on); "the combination to the safe was a secret"; "he tried to keep his drinking a secret"
+68779,secret arcanum,information known only to a special group; "the secret of Cajun cooking"
+68780,secret_agent intelligence_officer intelligence_agent operative,a person secretly employed in espionage for a government
+68781,secret_ballot,a vote in which each person's choice is secret but the totaled votes are public
+68782,secret_police,a police force that operates in secrecy (usually against persons suspected of treason or sedition)
+68783,secret_society,a society that conceals its activities from nonmembers
+68784,secretarial_school,a school where secretarial skills (typing and shorthand and filing etc) are taught
+68785,secretariat secretariate,an administrative unit responsible for maintaining records and other secretarial duties; especially for international organizations
+68786,secretary,a person who is head of an administrative department of government
+68787,secretary secretarial_assistant,an assistant who handles correspondence and clerical work for a boss or an organization
+68788,secretary writing_table escritoire secretaire,a desk used for writing
+68789,secretary_bird Sagittarius_serpentarius,large long-legged African bird of prey that feeds on reptiles
+68790,secretaryship,the position of secretary
+68791,secretase,a set of enzymes believed to snip pieces off a longer protein producing fragments of amyloid protein that bunch up and create amyloid protein plaques in brain tissue (the pathological hallmark of Alzheimer's)
+68792,secretin,a gastrointestinal hormone that stimulates the secretion of water and bicarbonate from the pancreas and bile ducts whenever the stomach empties too much acid into the small intestine
+68793,secretion,a functionally specialized substance (especially one that is not a waste) released from a gland or cell
+68794,secretion secernment,the organic process of synthesizing and releasing some substance
+68795,secretory_phase luteal_phase,the second half of the menstrual cycle after ovulation; the corpus luteum secretes progesterone which prepares the endometrium for the implantation of an embryo; if fertilization does not occur then menstrual flow begins
+68796,sect religious_sect religious_order,a subdivision of a larger religious group
+68797,sectarian sectary sectarist,a member of a sect; "most sectarians are intolerant of the views of any other sect"
+68798,sectarianism denominationalism,a narrow-minded adherence to a particular sect or party or denomination; "he condemned religious sectarianism"
+68799,section,a land unit equal to 1 square mile
+68800,section,a very thin slice (of tissue or mineral or other substance) for examination under a microscope; "sections from the left ventricle showed diseased tissue"
+68801,section,a distinct region or subdivision of a territorial or political area or community or group of people; "no section of the nation is more ardent than the South"; "there are three synagogues in the Jewish section"
+68802,section,a division of an orchestra containing all instruments of the same class
+68803,section,a small army unit usually having a special function
+68804,section,a small team of policemen working as part of a police platoon
+68805,section,a segment of a citrus fruit; "he ate a section of the orange"
+68806,section discussion_section,a small class of students who are part of a larger course but are taught separately; "a graduate student taught sections for the professor's lecture course"
+68807,section plane_section,(geometry) the area created by a plane cutting through a solid
+68808,section segment,one of several parts or pieces that fit with others to constitute a whole object; "a section of a fishing rod"; "metal sections were used below ground"; "finished the final segment of the road"
+68809,section subdivision,a self-contained part of a larger composition (written or musical); "he always turns first to the business section"; "the history of this work is discussed in the next section"
+68810,section_gang,a work crew assigned to a section of a railroad
+68811,section_hand,a laborer assigned to a section gang
+68812,section_man,someone who teaches a section of a large college course
+68813,sectional,a piece of furniture made up of sections that can be arranged individually or together
+68814,sectionalism provincialism localism,a partiality for some particular place
+68815,sector,a plane figure bounded by two radii and the included arc of a circle
+68816,sector,the minimum track length that can be assigned to store information; unless otherwise specified a sector of data consists of 512 bytes
+68817,sector,a portion of a military position
+68818,sector,a social group that forms part of the society or the economy; "the public sector"
+68819,sector,measuring instrument consisting of two graduated arms hinged at one end
+68820,sector sphere,a particular aspect of life or activity; "he was helpless in an important sector of his life"
+68821,secularism,a doctrine that rejects religion and religious considerations
+68822,secularist,an advocate of secularism; someone who believes that religion should be excluded from government and education
+68823,secularization secularisation,the activity of changing something (art or education or society or morality etc.) so it is no longer under the control or influence of religion
+68824,secularization secularisation,transfer of property from ecclesiastical to civil possession
+68825,secundigravida gravida_II,a woman who is pregnant for the second time
+68826,secured_bond,a bond that is back by collateral
+68827,secureness,the state of freedom from fear or danger
+68828,securities_law,the body of laws governing the issuance and selling of securities
+68829,security,the state of being free from danger or injury; "we support the armed services in the name of national security"
+68830,security,freedom from anxiety or fear; "the watch dog gave her a feeling of security"
+68831,security certificate,a formal declaration that documents a fact of relevance to finance and investment; the holder has a right to receive interest or dividends; "he held several valuable securities"
+68832,security protection,defense against financial failure; financial independence; "his pension gave him security in his old age"; "insurance provided protection against loss of wages due to illness"
+68833,security security_department,a department responsible for the security of the institution's property and workers; "the head of security was a former policeman"
+68834,security security_measures,measures taken as a precaution against theft or espionage or sabotage etc.; "military security has been stepped up since the recent uprising"
+68835,security surety,property that your creditor can claim in case you default on your obligation; "bankers are reluctant to lend without good security"
+68836,security surety,a guarantee that an obligation will be met
+68837,security_blanket,anything that an adult person uses to reduce anxiety
+68838,security_blanket,a blanket (or toy) that a child carries around in order to reduce anxiety
+68839,security_consultant,an adviser about alarm systems to prevent burglaries
+68840,security_director,head of a private security force working for a business or industry
+68841,security_force private_security_force,a privately employed group hired to protect the security of a business or industry
+68842,security_intelligence,intelligence on the identity and capability and intentions of hostile individuals or organizations that may be engaged in espionage or sabotage or subversion or terrorism
+68843,security_interest,any interest in a property that secures the payment of an obligation
+68844,security_staff,those in an organization responsible for preventing spying or theft
+68845,security_system,(computing) a system that enforces boundaries between computer networks
+68846,security_system security_measure security,an electrical device that sets off an alarm when someone tries to break in
+68847,sedan saloon,a car that is closed and that has front and rear seats and two or four doors
+68848,sedan sedan_chair,a closed litter for one passenger
+68849,sedateness staidness solemnity solemness,a trait of dignified seriousness
+68850,sedation,a state of reduced excitement or anxiety that is induced by the administrative of a sedative agent
+68851,sedation drugging,the administration of a sedative agent or drug
+68852,sedative sedative_drug depressant downer,a drug that reduces excitability and calms a person
+68853,sedative-hypnotic sedative-hypnotic_drug,a sedative that depresses activity of the central nervous system and reduces anxiety and induces sleep
+68854,sedge,grasslike or rushlike plant growing in wet places having solid stems, narrow grasslike leaves and spikelets of inconspicuous flowers
+68855,sedge_warbler sedge_bird sedge_wren reedbird Acrocephalus_schoenobaenus,small European warbler that breeds among reeds and wedges and winters in Africa
+68856,sedge_wren short-billed_marsh_wren Cistothorus_platensis,small American wren inhabiting wet sedgy meadows
+68857,sediment deposit,matter that has been deposited by some natural process
+68858,sedimentary_clay,clay soil formed by sedimentary deposits
+68859,sedimentary_rock,rock formed from consolidated clay sediments
+68860,sedition,an illegal action inciting resistance to lawful authority and tending to cause the disruption or overthrow of the government
+68861,seducer,a bad person who entices others into error or wrongdoing
+68862,seducer ladies'_man lady_killer,a man who takes advantage of women
+68863,seduction,enticing someone astray from right behavior
+68864,seduction conquest,an act of winning the love or sexual favor of someone
+68865,seductress,a woman who seduces
+68866,sedulity sedulousness,the quality of being constantly diligent and attentive
+68867,sedum,any of various plants of the genus Sedum
+68868,see,the seat within a bishop's diocese where his cathedral is located
+68869,seed,a small hard fruit
+68870,seed,a mature fertilized plant ovule consisting of an embryo and its food source and having a protective coat or testa
+68871,seed_beetle seed_weevil,a small beetle that infests the seeds of legumes
+68872,seed_catalog seed_catalogue,a list advertising seeds and their prices
+68873,seed_corn seed_grain,good quality seeds (as kernels of corn) that are reserved for planting
+68874,seed_fern pteridosperm,an extinct seed-producing fernlike plant of the order Cycadofilicales (or group Pteridospermae)
+68875,seed_lac,granular material obtained from stick lac by crushing and washing
+68876,seed_money,capital needed to set up a new business or enterprise
+68877,seed_oyster,a young oyster especially of a size for transplantation
+68878,seed_pearl,a small imperfect pearl
+68879,seed_shrimp mussel_shrimp ostracod,tiny marine and freshwater crustaceans with a shrimp-like body enclosed in a bivalve shell
+68880,seed_stock,a supply of seeds (or tubers) reserved for planting
+68881,seedbed,a bed where seedlings are grown before transplanting
+68882,seedcake seed_cake,a sweet cake flavored with sesame or caraway seeds and lemon
+68883,seeded_player seed,one of the outstanding players in a tournament
+68884,seeded_raisin,seeded grape that has been dried
+68885,seeder,a mechanical device that sows grass seed or grain evenly over the ground
+68886,seeder,a kitchen utensil that removes seeds from fruit
+68887,seeder cloud_seeder,a person who seeds clouds
+68888,seedless_raisin sultana,dried seedless grape
+68889,seedling,young plant or tree grown from a seed
+68890,seedsman seedman,a dealer in seeds
+68891,seedtime,any time of new development
+68892,seedtime,the time during which seeds should be planted
+68893,seek,the movement of a read/write head to a specific data track on a disk
+68894,seek_time,(computer science) the time it takes for a read/write head to move to a specific data track
+68895,seeker,a missile equipped with a device that is attracted toward some kind of emission (heat or light or sound or radio waves)
+68896,seeker searcher quester,someone making a search or inquiry; "they are seekers after truth"
+68897,seeking,an attempt to acquire or gain something
+68898,seemliness grace,a sense of propriety and consideration for others; "a place where the company of others must be accepted with good grace"
+68899,seepage ooze oozing,the process of seeping
+68900,seer,an observer who perceives visually; "an incurable seer of movies"
+68901,seersucker,a light puckered fabric (usually striped)
+68902,seesaw teeter teeter-totter teetertotter teeterboard tilting_board dandle_board,a plaything consisting of a board balanced on a fulcrum; the board is ridden up and down by children at either end
+68903,segment,one of the parts into which something naturally divides; "a segment of an orange"
+68904,segmental_arch,a shallow arch; an arch that is less than a semicircle
+68905,segno,(music) a notation written at the beginning or end of a passage that is to be repeated
+68906,sego_lily Calochortus_nuttallii,perennial plant having clusters of one to four showy white bell-shaped flowers atop erect unbranched stems; edible bulbs useful in times of scarcity; eastern Montana and western North Dakota south to northern Arizona and northwestern New Mexico
+68907,segregate,someone who is or has been segregated
+68908,segregation,(genetics) the separation of paired alleles during meiosis so that members of each pair of alleles appear in different gametes
+68909,segregation separatism,a social system that provides separate facilities for minority groups
+68910,segregation sequestration,the act of segregating or sequestering; "sequestration of the jury"
+68911,segregationism,a political orientation favoring political or racial segregation
+68912,segregator segregationist,someone who believes the racial groups should be kept apart
+68913,segue,the act of changing smoothly from one state or situation to another
+68914,sei_whale Balaenoptera_borealis,similar to but smaller than the finback whale
+68915,seiche,a wave on the surface of a lake or landlocked bay; caused by atmospheric or seismic disturbances
+68916,seidel,a glass for beer
+68917,seif_dune,a long and tall sand dune with a sharp crest; common in the Sahara
+68918,seigneury seigniory signory,the estate of a seigneur
+68919,seigniorage,charged by a government for coining bullion
+68920,seigniory seigneury feudal_lordship,the position and authority of a feudal lord
+68921,seine,a large fishnet that hangs vertically, with floats at the top and weights at the bottom
+68922,seismogram,the graphical record of an earth tremor made by using a seismograph
+68923,seismograph,a measuring instrument for detecting and measuring the intensity and direction and duration of movements of the ground (as an earthquake)
+68924,seismography,the measurement of tremors and shocks and undulatory movements of earthquakes
+68925,seismologist,a geophysicist who studies earthquakes and the mechanical characteristics of the Earth
+68926,seismology,the branch of geology that studies earthquakes
+68927,seizing,small stuff that is used for lashing two or more ropes together
+68928,seizure,the taking possession of something by legal process
+68929,seizure ictus raptus,a sudden occurrence (or recurrence) of a disease; "he suffered an epileptic seizure"
+68930,seizure-alert_dog,a dog that can alert or assist people with seizure disorders
+68931,select_committee,a parliamentary committee appointed for some special purpose
+68932,selection,an assortment of things from which a choice can be made; "the store carried a large selection of shoes"
+68933,selective-serotonin_reuptake_inhibitor SSRI,an antidepressant drug that acts by blocking the reuptake of serotonin so that more serotonin is available to act on receptors in the brain
+68934,selective_amnesia,amnesia about particular events that is very convenient for the person who cannot remember; "why do politicians always develop selective amnesia when questioned about their transgressions?"
+68935,selectivity,the property of being selective
+68936,selectman,an elected member of a board of officials who run New England towns
+68937,selector selector_switch,a switch that is used to select among alternatives
+68938,selectwoman,an elected member of a board of officials who run New England towns
+68939,selenic_acid,a strong acid (H2SeO4) analogous to sulfuric acid
+68940,selenium Se atomic_number_34,a toxic nonmetallic element related to sulfur and tellurium; occurs in several allotropic forms; a stable grey metallike allotrope conducts electricity better in the light than in the dark and is used in photocells; occurs in sulfide ores (as pyrite)
+68941,selenium_cell,a photoelectric cell that uses a strip of selenium
+68942,selenology,the branch of astronomy that deals with the moon
+68943,self,a person considered as a unique individual; "one's own self"
+68944,self ego,your consciousness of your own identity
+68945,self-absorption,preoccupation with yourself to the exclusion of everything else
+68946,self-accusation self-condemnation,an admission that you have failed to do or be something you know you should do or be
+68947,self-adapting_program,a program that can change its performance in response to its environment
+68948,self-aggrandizement self-aggrandisement ego_trip,an act undertaken to increase your own power and influence or to draw attention to your own importance
+68949,self-analysis,the application of psychotherapeutic principles to the analysis of your own personality
+68950,self-assertion,the act of putting forth your own opinions in a boastful or inconsiderate manner that implies you feel superior to others
+68951,self-assertion,the act of asserting yourself in an aggressive manner
+68952,self-awareness,awareness of your own individuality
+68953,self-consciousness,self-awareness plus the additional realization that others are similarly aware of you
+68954,self-consciousness uneasiness uncomfortableness,embarrassment deriving from the feeling that others are critically aware of you
+68955,self-contradiction,contradicting yourself
+68956,self-control self-possession possession willpower will_power self-command self-will,the trait of resolutely controlling your own behavior
+68957,self-criticism,criticism of yourself
+68958,self-deception self-deceit,a misconception that is favorable to the person who holds it
+68959,self-defense self-defence self-protection,the act of defending yourself
+68960,self-denial self-discipline self-control,the act of denying yourself; controlling your impulses
+68961,self-depreciation,a feeling of being of little worth
+68962,self-destruction,the act of destroying yourself; "his insistence was pure self-destruction"
+68963,self-determination,determination of one's own fate or course of action without compulsion
+68964,self-discipline self-denial,the trait of practicing self discipline
+68965,self-discovery,discovering your own individuality
+68966,self-disgust self-hatred,shame resulting from strong dislike of yourself or your actions
+68967,self-education self-cultivation,the process of educating yourself
+68968,self-esteem self-pride,a feeling of pride in yourself
+68969,self-expression,the expression of one's individuality (usually through creative activities)
+68970,self-feeder feeder,a machine that automatically provides a supply of some material; "the feeder discharged feed into a trough for the livestock"
+68971,self-fertilization self-fertilisation,fertilization by the union of male and female gametes from the same individual
+68972,self-flagellation,self-punishment inflicted by whipping
+68973,self-fulfillment self-realization self-realisation,the fulfillment of your capacities
+68974,self-government self-determination self-rule,government of a political unit by its own people
+68975,self-gratification head_trip,the act of satisfying your own desires and giving yourself pleasure
+68976,self-heal heal_all Prunella_vulgaris,decumbent blue-flowered European perennial thought to possess healing properties; naturalized throughout North America
+68977,self-help,the act of helping or improving yourself without relying on anyone else
+68978,self-hypnosis,hypnosis induced by yourself
+68979,self-improvement self-reformation,the act of improving yourself
+68980,self-incrimination,an accusation that incriminates yourself
+68981,self-induction,generation of an electromotive force (EMF) in a circuit by changing the current in that circuit; usually measured in henries
+68982,self-insurance,insuring yourself by setting aside money to cover possible losses rather than by purchasing an insurance policy
+68983,self-knowledge,an understanding of yourself and your goals and abilities
+68984,self-love narcism narcissism,an exceptional interest in and admiration for yourself; "self-love that shut out everyone else"
+68985,self-organization self-organisation,organizing yourself (especially organizing your own labor union)
+68986,self-pity,a feeling of sorrow (often self-indulgent) over your own sufferings
+68987,self-pollination,fertilization by transfer of pollen from the anthers to the stigma of the same flower
+68988,self-portrait,a portrait of yourself created by yourself
+68989,self-preservation,preservation of yourself from harm; a natural or instinctive tendency
+68990,self-propelled_vehicle,a wheeled vehicle that carries in itself a means of propulsion
+68991,self-punishment,punishment inflicted on yourself
+68992,self-registering_thermometer,a thermometer that records the temperature automatically
+68993,self-renewal,the act of renewing yourself (or itself)
+68994,self-report_personality_inventory self-report_inventory,a personality inventory in which a person is asked which of a list of traits and characteristics describe her or him or to indicate which behaviors and hypothetical choices he or she would make
+68995,self-reproach self-reproof,the act of blaming yourself
+68996,self-restraint temperateness,exhibiting restraint imposed on the self; "an effective temperateness in debate"
+68997,self-rising_flour self-raising_flour,a commercially prepared mixture of flour and salt and a leavening agent
+68998,self-service,the practice of serving yourself (as in a grocery or cafeteria)
+68999,self-starter,an energetic person with unusual initiative
+69000,self-starter,an electric starting motor that automatically starts an internal-combustion engine
+69001,self-stimulation self-abuse,manual stimulation of your own genital organ for sexual pleasure
+69002,self-torture self-torment,self-imposed distress
+69003,self_acceptance,an acceptance of yourself as you are, warts and all
+69004,selfish_person,a person who is unusually selfish
+69005,selfishness,stinginess resulting from a concern for your own welfare and a disregard of others
+69006,selflessness self-sacrifice,acting with less concern for yourself than for the success of the joint activity
+69007,selfsameness,the quality of being identical with itself
+69008,sell,the activity of persuading someone to buy; "it was a hard sell"
+69009,sell-by_date,a date stamped on perishable produce indicating the date by which it should be sold
+69010,seller marketer vender vendor trafficker,someone who promotes or exchanges goods or services for money
+69011,seller's_market sellers'_market,a market in which more people want to buy than want to sell
+69012,selling merchandising marketing,the exchange of goods for an agreed sum of money
+69013,selling_agent,someone who sells goods (on commission) for others
+69014,selling_point,a characteristic of something that is up for sale that makes it attractive to potential customers
+69015,selling_race,a horse race in which the winning horse must be put up for auction
+69016,selloff,a sale of a relatively large number of assets (stocks or bonds or commodities) at a low price typically done to dispose of them rather than as normal trade
+69017,sellout,someone who has sold out
+69018,sellout,an event for which all tickets are sold; "get your tickets for the concert early, it is sure to be a sellout"
+69019,sellout,the selling of an entire stock of something; "the latest Xbox game is so popular, shops are warning of a probable sellout before Christmas"
+69020,sellout,a betrayal of one's principles principles, country, cause, etc.
+69021,selsyn synchro,a system consisting of a generator and a motor so connected that the motor will assume the same relative position as the generator; the generator and the motor are synchronized
+69022,seltzer,naturally effervescent mineral water
+69023,selvage selvedge,border consisting of an ornamental fringe at either end of an oriental carpet
+69024,selvage selvedge,the edge of a fabric that is woven so that it will not ravel or fray
+69025,semantic_error run-time_error runtime_error,an error in logic or arithmetic that must be detected at run time
+69026,semantic_memory,your memory for meanings and general (impersonal) facts
+69027,semantic_relation,a relation between meanings
+69028,semantic_role participant_role,(linguistics) the underlying relation that a constituent has with the main verb in a clause
+69029,semanticist semiotician,a specialist in the study of meaning
+69030,semantics,the study of language meaning
+69031,semantics,the meaning of a word, phrase, sentence, or text; "a petty argument about semantics"
+69032,semaphore,an apparatus for visual signaling with lights or mechanically moving arms
+69033,semblance gloss color colour,an outward or token appearance or form that is deliberately misleading; "he hoped his claims would have a semblance of authenticity"; "he tried to give his falsehood the gloss of moral sanction"; "the situation soon took on a different color"
+69034,semen seed seminal_fluid ejaculate cum come,the thick white fluid containing spermatozoa that is ejaculated by the male genital tract
+69035,semester,one of two divisions of an academic year
+69036,semester,half a year; a period of 6 months
+69037,semester_hour credit_hour,a unit of academic credit; one hour a week for an academic semester
+69038,semi-abstraction,a semiabstract painting
+69039,semi-climber,a plant that tends to climb and on occasion can grow like a vine
+69040,semi-detached_house,a dwelling that is attached to something on only one side
+69041,semi-skimmed_milk,milk from which some of the cream has been removed
+69042,semiautomatic_firearm,an autoloader that fires only one shot at each pull of the trigger
+69043,semiautomatic_pistol semiautomatic,a pistol that is a semiautomatic firearm capable of loading and firing continuously
+69044,semicentennial semicentenary,the 50th anniversary (or the celebration of it)
+69045,semicircle hemicycle,a plane figure with the shape of half a circle
+69046,semicircular_canal,one of three tube loops filled with fluid and in planes nearly at right angles with one another; concerned with equilibrium
+69047,semicolon,a punctuation mark (`;') used to connect independent clauses; indicates a closer relation than does a period
+69048,semicoma,a mild comatose state; a coma from which the person can be roused by appropriate stimuli
+69049,semiconductor semiconducting_material,a substance as germanium or silicon whose electrical conductivity is intermediate between that of a metal and an insulator; its conductivity increases with temperature and in the presence of impurities
+69050,semiconductor_device semiconductor_unit semiconductor,a conductor made with semiconducting material
+69051,semidarkness,partial darkness
+69052,semidesert,a region much like a desert but usually located between a desert and the surrounding regions
+69053,semidiameter,the apparent radius of a celestial body when viewed as a disc from the earth
+69054,semifinal semi,one of the two competitions in the next to the last round of an elimination tournament
+69055,semifinalist,one of four competitors remaining in a tournament by elimination
+69056,semifluidity,a property midway between a solid and a liquid
+69057,semigloss,a paint that dries with a finish between glossy and flat
+69058,semilunar_valve,a heart valve with cusps shaped like half-moons; prevents blood from flowing back into the heart
+69059,semimajor_axis,one-half the major axis of an ellipse; the distance from the center of an ellipse to one end
+69060,semiminor_axis,one-half the minor axis of an ellipse
+69061,semimonthly,a periodical that is published twice each month (or 24 issues per year)
+69062,seminal_duct,the efferent duct of the testis in man
+69063,seminal_vesicle,either of a pair of glands located on either side of the male urinary bladder that open into the vas deferens and that secrete many components of semen during ejaculation
+69064,seminar,any meeting for an exchange of ideas
+69065,seminar,a course offered for a small group of advanced students
+69066,seminarian seminarist,a student at a seminary (especially a Roman Catholic seminary)
+69067,seminary,a theological school for training ministers or priests or rabbis
+69068,seminary,a private place of education for the young
+69069,seminiferous_tubule,any of the numerous long convoluted tubules in the testis which are the sites where spermatozoa mature
+69070,seminoma testicular_cancer,malignant tumor of the testis; usually occurring in older men
+69071,semiotics semiology,(philosophy) a philosophical theory of the functions of signs and symbols
+69072,semipermeable_membrane,a membrane (as a cell membrane) that allows some molecules to pass through but not others
+69073,semiprofessional semipro,an athlete who plays for pay on a part-time basis
+69074,semitone half_step,the musical interval between adjacent keys on a keyboard instrument
+69075,semitrailer semi,a trailer having wheels only in the rear; the front is supported by the towing vehicle
+69076,semitrance,a trancelike state in which the person can follow instructions but voluntary action is weak or absent
+69077,semivowel glide,a vowellike sound that serves as a consonant
+69078,semiweekly,a periodical that is published twice each week (or 104 issues per year)
+69079,semolina,milled product of durum wheat (or other hard wheat) used in pasta
+69080,sen,a fractional monetary unit of Japan and Indonesia and Cambodia; equal to one hundredth of a yen or rupiah or riel
+69081,senate,assembly possessing high legislative powers
+69082,senate_campaign senate_race,a race for election to the senate
+69083,senator,a member of a senate
+69084,senatorship,the office of senator
+69085,sendee,the intended recipient of a message
+69086,sender transmitter,someone who transmits a message; "return to sender"
+69087,sending,the act of causing something to go (especially messages)
+69088,sene,100 sene equal 1 tala in Western Samoa
+69089,senega,dried root of two plants of the genus Polygala containing an irritating saponin
+69090,senega Polygala_alba,perennial bushy herb of central and southern United States having white flowers with green centers and often purple crest; similar to Seneca snakeroot
+69091,senile_dementia senile_psychosis,dementia of the aged; results from degeneration of the brain in the absence of cerebrovascular disease
+69092,senility,the state of being senile
+69093,senior,an undergraduate student during the year preceding graduation
+69094,senior_chief_petty_officer SCPO,a senior noncommissioned officer in the Navy or Coast Guard with a rank comparable to master sergeant in the Army
+69095,senior_class,final grade or class in high school or college
+69096,senior_high_school senior_high high highschool high_school,a public secondary school usually including grades 9 through 12; "he goes to the neighborhood highschool"
+69097,senior_master_sergeant SMSgt,a senior noncommissioned officer in the Air Force with a rank comparable to master sergeant in the Army
+69098,senior_moment,a momentary lapse of memory (especially in older people)
+69099,senior_vice_president,the ranking vice president in a firm that has more than one
+69100,seniority senior_status higher_status higher_rank,higher rank than that of others especially by reason of longer service
+69101,seniti,100 seniti equal 1 pa'anga in Tonga
+69102,senna,any of various plants of the genus Senna having pinnately compound leaves and showy usually yellow flowers; many are used medicinally
+69103,sennit,flat braided cordage that is used on ships
+69104,sensation,a state of widespread public excitement and interest; "the news caused a sensation"
+69105,sensation,a general feeling of excitement and heightened interest; "anticipation produced in me a sensation somewhere between hope and fear"
+69106,sensation esthesis aesthesis sense_experience sense_impression sense_datum,an unelaborated elementary awareness of stimulation; "a sensation of touch"
+69107,sensationalism,subject matter that is calculated to excite and please vulgar tastes
+69108,sensationalism luridness,the journalistic use of subject matter that appeals to vulgar tastes; "the tabloids relied on sensationalism to maintain their circulation"
+69109,sensationalist ballyhoo_artist,someone who uses exaggerated or lurid material in order to gain public attention
+69110,sense,a natural appreciation or ability; "a keen musical sense"; "a good sense of timing"
+69111,sense,a general conscious awareness; "a sense of security"; "a sense of happiness"; "a sense of danger"; "a sense of self"
+69112,sense sensation sentience sentiency sensory_faculty,the faculty through which the external world is apprehended; "in the dark he had to depend on touch and on his senses of smell and hearing"
+69113,sense signified,the meaning of a word or expression; the way in which a word or expression or situation can be interpreted; "the dictionary gave several senses for the word"; "in the best sense charity is really a duty"; "the signifier is linked to the signified"
+69114,sense_of_direction,an awareness of your orientation in space
+69115,sense_of_responsibility,an awareness of your obligations
+69116,sense_of_shame sense_of_duty,a motivating awareness of ethical responsibility
+69117,sense_of_the_meeting,general agreement reached by an assembled group; "no vote was taken, but after each discussion the chair summed up the sense of the meeting"
+69118,sense_organ sensory_receptor receptor,an organ having nerve endings (in the skin or viscera or eye or ear or nose or mouth) that respond to stimulation
+69119,sense_tagger,a tagging program whose labels indicate the meanings of words or expressions
+69120,sensibility,refined sensitivity to pleasurable or painful impressions; "cruelty offended his sensibility"
+69121,sensibility esthesia aesthesia,mental responsiveness and awareness
+69122,sensibleness,the quality of showing good sense or practical judgment
+69123,sensing perception,becoming aware of something via the senses
+69124,sensitive_fern bead_fern Onoclea_sensibilis,beautiful spreading fern of eastern North America and eastern Asia naturalized in western Europe; pinnately divided fronds show a slight tendency to fold when touched; pinnules enclose groups of sori in beadlike lobes
+69125,sensitive_plant Mimosa_sensitiva,semi-climbing prickly evergreen shrub of tropical America having compound leaves sensitive to light and touch
+69126,sensitive_plant touch-me-not shame_plant live-and-die humble_plant action_plant Mimosa_pudica,prostrate or semi-erect subshrub of tropical America, and Australia; heavily armed with recurved thorns and having sensitive soft grey-green leaflets that fold and droop at night or when touched or cooled
+69127,sensitivity predisposition,susceptibility to a pathogen
+69128,sensitivity sensitiveness,sensitivity to emotional feelings (of self and others)
+69129,sensitivity sensitiveness,the ability to respond to physical stimuli or to register small physical amounts or differences; "a galvanometer of extreme sensitivity"; "the sensitiveness of Mimosa leaves does not depend on a change of growth"
+69130,sensitivity sensitiveness,the ability to respond to affective changes in your interpersonal environment
+69131,sensitivity sensitiveness sensibility,(physiology) responsiveness to external stimuli; the faculty of sensation; "sensitivity to pain"
+69132,sensitization sensitisation,the state of being sensitive (as to an antigen)
+69133,sensitization sensitisation,(psychology) the process of becoming highly sensitive to specific events or situations (especially emotional events or situations)
+69134,sensitizer sensitiser,(chemistry) a substance other than a catalyst that facilitates the start of a catalytic reaction
+69135,sensitizing sensitising sensitization sensitisation,rendering an organism sensitive to a serum by a series of injections
+69136,sensitometer,a measuring instrument for measuring the light sensitivity of film over a range of exposures
+69137,sensorimotor_area sensorimotor_region,an area of the cortex including the precentral gyrus and the postcentral gyrus and combining sensory and motor functions
+69138,sensorineural_hearing_loss nerve_deafness,hearing loss due to failure of the auditory nerve
+69139,sensorium,the areas of the brain that process and register incoming sensory information and make possible the conscious awareness of the world
+69140,sensory_activity,activity intended to achieve a particular sensory result
+69141,sensory_deprivation,a form of psychological torture inflicted by depriving the victim of all sensory input
+69142,sensory_epilepsy,focal epilepsy initiated by somatosensory phenomena
+69143,sensory_fiber afferent_fiber,a nerve fiber that carries impulses toward the central nervous system
+69144,sensory_nerve afferent_nerve afferent,a nerve that passes impulses from receptors toward or to the central nervous system
+69145,sensory_neuron afferent_neuron,a neuron conducting impulses inwards to the brain or spinal cord
+69146,sensory_system,the body's system of sense organs
+69147,sensualism sensationalism,(philosophy) the ethical doctrine that feeling is the only criterion for what is good
+69148,sensualist,a person who enjoys sensuality
+69149,sensuality sensualness sensualism,desire for sensual pleasures
+69150,sensuousness,a sensuous feeling
+69151,sent,100 senti equal 1 kroon in Estonia
+69152,sente,100 lisente equal 1 loti in Lesotho; one sente is worth one-hundredth of a loti
+69153,sentence,a string of words satisfying the grammatical rules of a language; "he always spoke in grammatical sentences"
+69154,sentence_stress,the distribution of stresses within a sentence
+69155,sentential_function,formal expression containing variables; becomes a sentence when variables are replaced by constants
+69156,sentience,the readiness to perceive sensations; elementary or undifferentiated consciousness; "gave sentience to slugs and newts"- Richard Eberhart
+69157,sentiment,tender, romantic, or nostalgic feeling or emotion
+69158,sentimentalism,the excessive expression of tender feelings, nostalgia, or sadness in any form
+69159,sentimentalism,a predilection for sentimentality
+69160,sentimentalist romanticist,someone who indulges in excessive sentimentality
+69161,sentimentality,extravagant or affected feeling or emotion
+69162,sentimentalization sentimentalisation romanticization romanticisation,the act of indulging in sentiment
+69163,sentry_box,a small shelter with an open front to protect a sentry from the weather
+69164,sepal,one of the green parts that form the calyx of a flower
+69165,separability,the capability of being separated
+69166,separate,a garment that can be purchased separately and worn in combinations with other garments
+69167,separateness,political independence; "seeking complete political separateness for Taiwan"
+69168,separation,the state of lacking unity
+69169,separation,the space where a division or parting occurs; "he hid in the separation between walls"
+69170,separation,the termination of employment (by resignation or dismissal)
+69171,separation,sorting one thing from others; "the separation of wheat from chaff"; "the separation of mail by postal zones"
+69172,separation,the social act of separating or parting company; "the separation of church and state"
+69173,separation,the act of dividing or disconnecting
+69174,separation breakup detachment,coming apart
+69175,separationism separatism,advocacy of a policy of strict separation of church and state
+69176,separatism,a disposition toward schism and secession from a larger group; the principles and practices of separatists; "separatism is a serious problem in Quebec"; "demands for some form of separatism on grounds of religion have been perceived as a threat to mainstream education"
+69177,separatist separationist,an advocate of secession or separation from a larger group (such as an established church or a national union)
+69178,sepia,rich brown pigment prepared from the ink of cuttlefishes
+69179,sepsis,the presence of pus-forming bacteria or their toxins in the blood or tissues
+69180,septal_defect,a congenital abnormality in the septum between the left and right sides of the heart
+69181,septation,the division or partitioning of a cavity into parts by a septum
+69182,septectomy,surgical removal of all or part of a septum (especially the nasal septum or atrial septum)
+69183,septet septette,seven performers or singers who perform together
+69184,septet septette,a set of seven similar things considered as a unit
+69185,septet septette,a musical composition written for seven performers
+69186,septet septette sevensome,seven people considered as a unit
+69187,septic_tank,large tank where solid matter or sewage is disintegrated by bacteria
+69188,septicemic_plague,an especially dangerous and generally fatal form of the plague in which infecting organisms invade the bloodstream; does not spread from person to person
+69189,septillion,the number that is represented as a one followed by 24 zeros
+69190,septuagenarian,someone whose age is in the seventies
+69191,septum,a partition or wall especially in an ovary
+69192,septum,(anatomy) a dividing partition between two tissues or cavities
+69193,sequel continuation,a part added to a book or play that continues and extends it
+69194,sequel subsequence,something that follows something else
+69195,sequela,any abnormality following or resulting from a disease or injury or treatment; "paralysis is one of the sequelae of poliomyelitis"
+69196,sequella,a secondary consequence
+69197,sequence,serial arrangement in which things follow in logical order or a recurrent pattern; "the sequence of names was alphabetical"; "he invented a technique to determine the sequence of base pairs in DNA"
+69198,sequence,several repetitions of a melodic phrase in different keys
+69199,sequence chronological_sequence succession successiveness chronological_succession,a following of one thing after another in time; "the doctor saw a sequence of patients"
+69200,sequence episode,film consisting of a succession of related shots that develop a given subject in a movie
+69201,sequencer,computer hardware that sorts data or programs into a predetermined sequence
+69202,sequencer sequenator,(chemistry) an apparatus that can determine the sequence of monomers in a polymer
+69203,sequestration,the action of forming a chelate or other stable compound with an ion or atom or molecule so that it is no longer available for reactions
+69204,sequestration,a writ that authorizes the seizure of property
+69205,sequestration requisition,seizing property that belongs to someone else and holding it until profits pay the demand for which it was seized
+69206,sequin spangle diamante,adornment consisting of a small piece of shiny material used to decorate clothing
+69207,sequoia redwood,either of two huge coniferous California trees that reach a height of 300 feet; sometimes placed in the Taxodiaceae
+69208,serape sarape,a long brightly colored shawl; worn mainly by Mexican men
+69209,seraph,an angel of the first order; usually portrayed as the winged head of a child
+69210,serenade,a song characteristically played outside the house of a woman
+69211,serendipity,good luck in making unexpected and fortunate discoveries
+69212,sereness,a withered dryness
+69213,serf helot villein,(Middle Ages) a person who is bound to the land and owned by the feudal lord
+69214,serfdom serfhood vassalage,the state of a serf
+69215,serge,a twilled woolen fabric
+69216,sergeant,any of several noncommissioned officer ranks in the Army or Air Force or Marines ranking above a corporal
+69217,sergeant_at_arms serjeant-at-arms,an officer (as of a legislature or court) who maintains order and executes commands
+69218,sergeant_major Abudefduf_saxatilis,large blue-grey black-striped damselfish; nearly worldwide
+69219,sergeant_major command_sergeant_major,a noncommissioned officer serving as chief administrative officer of a headquarters unit of the Army
+69220,serger,a sewing machine that overcasts the raw edges of a fabric with a V-shaped stitch
+69221,serial series,a serialized set of programs; "a comedy series"; "the Masterworks concert series"
+69222,serial_killer serial_murderer,someone who murders more than three victims one at a time in a relatively short interval
+69223,serial_monogamy,a succession of short monogamous relationships (as by someone who undergoes multiple divorces)
+69224,serial_operation sequential_operation consecutive_operation,the sequential execution of operations one after another
+69225,serial_port,an interface (commonly used for modems and mice and some printers) that transmits data a bit at a time
+69226,serial_processing,sequential processing by two or more processing units
+69227,serialism serial_music,20th century music that uses a definite order of notes as a thematic basis for a musical composition
+69228,serialization serialisation,publication in serial form
+69229,sericea_lespedeza Lespedeza_sericea Lespedeza_cuneata,perennial widely planted as for forage and as hay crop especially on poor land
+69230,sericulture,raising silkworms in order to obtain raw silk
+69231,sericulture,the production of raw silk by raising silkworms
+69232,sericulturist,a producer of raw silk
+69233,series,(electronics) connection of components in such a manner that current flows first through one and then through the other; "the voltage divider consisted of a series of fixed resistors"
+69234,series,a group of postage stamps having a common theme or a group of coins or currency selected as a group for study or collection; "the Post Office issued a series commemorating famous American entertainers"; "his coin collection included the complete series of Indian-head pennies"
+69235,series,similar things placed in order or happening one after another; "they were investigating a series of bank robberies"
+69236,series,(sports) several contests played successively by the same teams; "the visiting team swept the series"
+69237,series,(mathematics) the sum of a finite or infinite sequence of expressions
+69238,series serial serial_publication,a periodical that appears at scheduled times
+69239,series_circuit,a circuit having its parts connected serially
+69240,serif seriph,a short line at the end of the main strokes of a character
+69241,serigraphy,the act of making a print by the silkscreen method
+69242,serin,any of various brown and yellow finches of parts of Europe
+69243,serine,a sweetish crystalline amino acid involved in the synthesis by the body of cysteine
+69244,seriocomedy tragicomedy,a comedy with serious elements or overtones
+69245,seriousness distressfulness,the quality of arousing fear or distress; "he learned the seriousness of his illness"
+69246,seriousness earnestness serious-mindedness sincerity,the trait of being serious; "a lack of solemnity is not necessarily a lack of seriousness"- Robert Rice
+69247,serjeant-at-law serjeant sergeant-at-law sergeant,an English barrister of the highest rank
+69248,sermon discourse preaching,an address of a religious nature (usually delivered during a church service)
+69249,sermon preaching,a moralistic rebuke; "your preaching is wasted on him"
+69250,serologist,a medical scientist who specializes in serology
+69251,serology,the branch of medical science that deals with serums; especially with blood serums and disease
+69252,serotine European_brown_bat Eptesicus_serotinus,common brown bat of Europe
+69253,serotonin 5-hydroxytryptamine,a neurotransmitter involved in e.g. sleep and depression and memory
+69254,serous_membrane serosa,a thin membrane lining the closed cavities of the body; has two layers with a space between that is filled with serous fluid
+69255,serow,short-horned dark-coated goat antelope of mountain areas of southern and southeastern Asia
+69256,serpent,a firework that moves in serpentine manner when ignited
+69257,serpent,an obsolete bass cornet; resembles a snake
+69258,serranid_fish serranid,marine food sport fishes mainly of warm coastal waters
+69259,serrate_leaf,a leaf having a margin notched like a saw with teeth pointing toward the apex
+69260,serrated_wrack Fucus_serratus tang,brown algae seaweed with serrated edges
+69261,serration,the condition of being serrated; "the serrations of a city skyline"
+69262,serration,a row of notches; "the pliers had serrations to improve the grip"
+69263,serration,a single notch in a row of notches; "one of the serrations was broken off"
+69264,serratus serratus_muscles,any of several muscles of the trunk
+69265,serratus_posterior_inferior,a thin quadrilateral muscle at the junction of the thoracic and lumbar regions; acts to counteract the pull of the diaphragm on the ribs to which it is attached
+69266,serratus_posterior_superior,a thin quadrilateral muscle of the upper and dorsal part of the thorax; acts to elevate the upper ribs
+69267,sertraline Zoloft,a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade name Zoloft)
+69268,sertularian,feathery colony of long-branched stems bearing stalkless paired polyps
+69269,serum blood_serum,an amber, watery fluid, rich in proteins, that separates out when blood coagulates
+69270,serum_albumin,albumin occurring in blood serum; serves to maintain the somatic pressure of the blood
+69271,serum_globulin,globulins occurring in blood serum and containing most of the antibodies of the blood
+69272,serum_sickness serum_disease,a delayed allergic reaction to the injection of an antiserum caused by an antibody reaction to an antigen in the donor serum
+69273,serval Felis_serval,slender long-legged African wildcat having large untufted ears and tawny black-spotted coat
+69274,servant retainer,a person working in the service of another (especially in the household)
+69275,servant_girl serving_girl,a girl who is a servant
+69276,serve service,(sports) a stroke that puts the ball in play; "his powerful serves won the game"
+69277,server,(court games) the player who serves to start a point
+69278,server,utensil used in serving food or drink
+69279,server host,(computer science) a computer that provides client stations with access to files and printers as shared resources to a computer network
+69280,service,a company or agency that performs a public service; subject to government regulation
+69281,service,an act of help or assistance; "he did them a service"
+69282,service,employment in or work for another; "he retired after 30 years of service"
+69283,service,(law) the acts performed by an English feudal tenant for the benefit of his lord which formed the consideration for the property granted to him
+69284,service,work done by one person or group that benefits another; "budget separately for goods and services"
+69285,service,the performance of duties by a waiter or servant; "that restaurant has excellent service"
+69286,service religious_service divine_service,the act of public worship following prescribed rules; "the Sunday service"
+69287,service serving service_of_process,the act of delivering a writ or summons upon someone; "he accepted service of the subpoena"
+69288,service table_service,tableware consisting of a complete set of articles (silver or dishware) for use at table
+69289,service_agency service_bureau service_firm,a business that makes its facilities available to others for a fee; achieves economy of scale
+69290,service_area,place on a highway providing garage services and eating and toilet facilities
+69291,service_book,a book setting forth the forms of church service
+69292,service_break,a tennis game won on the opponent's service
+69293,service_call,a trip made by a repairman to visit the location of something in need of service
+69294,service_charge service_fee,a percentage of a bill (as at a hotel or restaurant) added in payment for service
+69295,service_club,a club of professional or business people organized for their coordination and active in public services
+69296,service_club,a recreational center for servicemen
+69297,service_contract,a contract for maintenance services
+69298,service_cutback,the act of reducing service
+69299,service_department,the division of a business that provides customer services
+69300,service_door service_entrance servant's_entrance,an entrance intended for the use of servants or for delivery of goods and removal of refuse
+69301,service_industry,an industry that provides services rather than tangible objects
+69302,service_line baseline,the back line bounding each end of a tennis or handball court; when serving the server must not step over this line
+69303,service_staff maintenance_staff,those in a business responsible for maintaining the physical plant
+69304,service_station,a station where gasoline and oil are sold and facilities are available for repairing or maintaining automobiles
+69305,service_stripe hashmark hash_mark,an insignia worn to indicate years of service
+69306,service_tree sorb_apple sorb_apple_tree Sorbus_domestica,medium-sized European tree resembling the rowan but bearing edible fruit
+69307,serviceability serviceableness usableness useableness usability,the quality of being able to provide good service
+69308,serviceman military_man man military_personnel,someone who serves in the armed forces; a member of a military force; "two men stood sentry duty"
+69309,services,performance of duties or provision of space and equipment helpful to others; "the mayor tried to maintain city services"; "the medical services are excellent"
+69310,servicing service,the act of mating by male animals; "the bull was worth good money in servicing fees"
+69311,serving_cart,a handcart for serving food
+69312,serving_dish,a dish used for serving food
+69313,servitor,someone who performs the duties of an attendant for someone else
+69314,servitude,state of subjection to an owner or master or forced labor imposed as punishment; "penal servitude"
+69315,servo servomechanism servosystem,control system that converts a small mechanical motion into one requiring much greater power; may include a negative feedback system
+69316,sesame benne benni benny Sesamum_indicum,East Indian annual erect herb; source of sesame seed or benniseed and sesame oil
+69317,sesame_oil,oil obtained from sesame seeds
+69318,sesame_seed benniseed,small oval seeds of the sesame plant
+69319,sesamoid_bone sesamoid os_sesamoideum,any of several small round bones formed in a tendon where it passes over a joint
+69320,sesbania,any of various plants of the genus Sesbania having pinnate leaves and large showy pea-like flowers
+69321,sesquicentennial,the 150th anniversary (or the celebration of it)
+69322,sesquipedalian sesquipedalia,a very long word (a foot and a half long)
+69323,sesquipedality,using long words
+69324,sessile_polyp,a relatively flat polyp
+69325,session,a meeting for execution of a group's functions; "it was the opening session of the legislature"
+69326,session,a meeting devoted to a particular activity; "a filming session"; "a gossip session"
+69327,session_cookie,a cookie that is stored temporarily and is destroyed when you close the link
+69328,sestet,a rhythmic group of six lines of verse
+69329,set,a unit of play in tennis or squash; "they played two sets of tennis after dinner"
+69330,set,(mathematics) an abstract collection of numbers or symbols; "the set of prime numbers is infinite"
+69331,set,a group of things of the same kind that belong together and are so used; "a set of books"; "a set of golf clubs"; "a set of teeth"
+69332,set,the descent of a heavenly body below the horizon; "before the set of sun"
+69333,set,any electronic equipment that receives or transmits radio or tv signals; "the early sets ran on storage batteries"
+69334,set,the act of putting something in position; "he gave a final set to his hat"
+69335,set circle band lot,an unofficial association of people or groups; "the smart set goes there"; "they were an angry lot"
+69336,set exercise_set,several exercises intended to be done in series; "he did four sets of the incline bench press"
+69337,set readiness,(psychology) being temporarily ready to respond in a particular way; "the subjects' set led them to solve problems the familiar way and to overlook the simpler solution"; "his instructions deliberately gave them the wrong set"
+69338,set-back setoff offset,structure where a wall or building narrows abruptly
+69339,set-to,a brief but vigorous fight
+69340,set_decoration,a decoration used as part of the set of a theatrical or movie production
+69341,set_gun spring_gun,a gun that is set to fire on any intruder that comes in contact with the wire that sets it off
+69342,set_piece,a piece of scenery intended to stand alone as part of the stage setting
+69343,set_point,(tennis) the final point needed to win a set in tennis
+69344,set_shot,a two-handed basketball shot from a stationary position
+69345,set_square,a try square with an adjustable sliding head
+69346,set_theory,the branch of pure mathematics that deals with the nature and relations of sets
+69347,seta,stalk of a moss capsule
+69348,seta,a stiff hair or bristle
+69349,setscrew,a screw that is used to adjust the tension on a spring
+69350,setscrew,a screw (often without a head) that fits into the boss or hub of a wheel or cam etc. and prevents motion of the part relative to the shaft on which it is mounted
+69351,settee,a small sofa
+69352,setter,a long-haired dog formerly trained to crouch on finding game but now to point
+69353,setting,the physical position of something; "he changed the setting on the thermostat"
+69354,setting background scope,the state of the environment in which a situation exists; "you can't do that in a university setting"
+69355,setting scene,the context and environment in which something is set; "the perfect setting for a ghost story"
+69356,settle settee,a long wooden bench with a back
+69357,settlement,an area where a group of families live together
+69358,settlement,a conclusive resolution of a matter and disposition of it
+69359,settlement resolution closure,something settled or resolved; the outcome of decision making; "they finally reached a settlement with the union"; "they never did achieve a final resolution of their differences"; "he needed to grieve before he could achieve a sense of closure"
+69360,settlement_house,a center in an underprivileged area that provides community services
+69361,settler,a negotiator who settles disputes
+69362,settler,a clerk in a betting shop who calculates the winnings
+69363,settler colonist,a person who settles in a new colony or moves into new country
+69364,settling subsiding subsidence,a gradual sinking to a lower level
+69365,settlor trustor,(law) a person who creates a trust by giving real or personal property in trust to a trustee for the benefit of a beneficiary; a person who gives such property is said to settle it on the trustee
+69366,setup,the way something is organized or arranged; "it takes time to learn the setup around here"
+69367,seven 7 VII sevener heptad septet septenary,the cardinal number that is the sum of six and one
+69368,seven-spot seven,one of four playing cards in a deck with seven pips on the face
+69369,seven-up old_sledge,a form of all fours in which a total of seven points is game
+69370,seven_seas,an informal expression for all of the oceans of the world; "the old salt had sailed the seven seas"
+69371,seventeen 17 XVII,the cardinal number that is the sum of sixteen and one
+69372,seventeen-year_locust periodical_cicada Magicicada_septendecim,North American cicada; appears in great numbers at infrequent intervals because the nymphs take 13 to 17 years to mature
+69373,seventeenth,position 17 in a countable series of things
+69374,seventh,position seven in a countable series of things
+69375,seventh,the musical interval between one note and another seven notes away from it
+69376,seventh_chord,a triad with a seventh added
+69377,seventies 1970s,the decade from 1970 to 1979
+69378,seventies mid-seventies,the time of life between 70 and 80
+69379,seventieth,position 70 in a countable series of things
+69380,seventy 70 LXX,the cardinal number that is the product of ten and seven
+69381,seventy-eight 78,a shellac based phonograph record that played at 78 revolutions per minute
+69382,seventy-eight 78 LXXVIII,the cardinal number that is the sum of seventy and eight
+69383,severable_contract,a contract which, in the event of a breach by one of the parties, can be considered as several independent agreements expressed in a single instrument
+69384,severalty,exclusive individual ownership
+69385,severance severing,the act of severing
+69386,severance_agreement,an agreement on the terms on which an employee will leave
+69387,severe_acute_respiratory_syndrome SARS,a respiratory disease of unknown etiology that apparently originated in mainland China in 2003; characterized by fever and coughing or difficulty breathing or hypoxia; can be fatal
+69388,severe_combined_immunodeficiency severe_combined_immunodeficiency_disease SCID,a congenital disease affecting T cells that can result from a mutation in any one of several different genes; children with it are susceptible to infectious disease; if untreated it is lethal within the first year or two of life
+69389,severity severeness harshness rigor rigour rigorousness rigourousness inclemency hardness stiffness,excessive sternness; "severity of character"; "the harshness of his punishment was inhuman"; "the rigors of boot camp"
+69390,sewage sewerage,waste matter carried away in sewers or drains
+69391,sewage_disposal,the disposal of sewage
+69392,sewage_disposal_plant disposal_plant,a plant for disposing of sewage
+69393,sewage_farm,a farm that is irrigated and fertilized with raw sewage
+69394,sewage_system sewer_system sewage_works,facility consisting of a system of sewers for carrying off liquid and solid sewage
+69395,sewer,someone who sews; "a sewer of fine gowns"
+69396,sewer sewerage cloaca,a waste pipe that carries away sewage or surface water
+69397,sewer_gas,foul-smelling gas that forms in sewers
+69398,sewer_main sewer_line,a main in a sewage system
+69399,sewer_rat,brown rat commonly found in sewers
+69400,sewing stitchery,needlework on which you are working with needle and thread; "she put her sewing back in the basket"
+69401,sewing stitching,joining or attaching by stitches
+69402,sewing-machine_operator,someone who sews by operating a sewing machine
+69403,sewing_basket,a workbasket in which sewing materials can be stored
+69404,sewing_kit,a kit of articles used in sewing
+69405,sewing_machine,a textile machine used as a home appliance for sewing
+69406,sewing_needle,a needle used in sewing to pull thread through cloth
+69407,sewing_room,a room set aside for sewing
+69408,sewing_stitch embroidery_stitch,a stitch made with thread and a threaded sewing needle through fabric or leather
+69409,sex,either of the two categories (male or female) into which most organisms are divided; "the war between the sexes"
+69410,sex gender sexuality,the properties that distinguish organisms on the basis of their reproductive roles; "she didn't want to know the sex of the foetus"
+69411,sex sexual_urge,all of the feelings resulting from the urge to gratify sexual impulses; "he wanted a better sex life"; "the film contained no sex or violence"
+69412,sex-change_operation transsexual_surgery,surgical procedures and hormonal treatments designed to alter a person's sexual characteristics so that the resemble those of the opposite sex
+69413,sex-linked_disorder,any disease or abnormality that is determined by the sex hormones; "hemophilia is determined by a gene defect on an X chromosome"
+69414,sex_appeal desirability desirableness oomph,attractiveness to the opposite sex
+69415,sex_change,a change in a person's physical sexual characteristics (as by surgery and hormone treatments)
+69416,sex_characteristic sexual_characteristic sex_character,those characteristics (both anatomical and psychological) that are strongly associated with one sex relative to the other
+69417,sex_chromatin,chromatin found only in female cells; "the presence or absence of sex chromatin in cells obtained by amniocentesis makes it possible to determine the sex of a fetus"
+69418,sex_chromosome,(genetics) a chromosome that determines the sex of an individual; "mammals normally have two sex chromosomes"
+69419,sex_drive,a physiological need for sexual activity; "testosterone is responsible for the male sex drive"
+69420,sex_kitten sexpot sex_bomb,a young woman who is thought to have sex appeal
+69421,sex_linkage,an association between genes in sex chromosomes that makes some characteristics appear more frequently in one sex than in the other
+69422,sex_manual,a manual containing instruction in sexual techniques; intended to enhance the reader's sexual life
+69423,sex_object,any person regarded simply as an object of sexual gratification
+69424,sex_offender,someone who has been convicted of a sex crime
+69425,sex_symbol,a person (especially a celebrity) who is well-known for their sexual attractiveness
+69426,sexagenarian,someone whose age is in the sixties
+69427,sexcapade,a sexual escapade; an illicit affair
+69428,sexism,discriminatory or abusive behavior towards members of the opposite sex
+69429,sexploitation,the commercial exploitation of sex or sexuality or explicit sexual material; "sexploitation by advertisers is notorious"
+69430,sext,the fourth of the seven canonical hours; about noon
+69431,sextant,a unit of angular distance equal to 60 degrees
+69432,sextant,a measuring instrument for measuring the angular distance between celestial objects; resembles an octant
+69433,sextet sextette sestet,six performers or singers who perform together
+69434,sextet sextette sestet,a set of six similar things considered as a unit
+69435,sextet sextette sestet,a musical composition written for six performers
+69436,sextet sextette sixsome,six people considered as a unit
+69437,sextillion,the number that is represented as a one followed by 21 zeros
+69438,sexton sacristan,an officer of the church who is in charge of sacred objects
+69439,sexual_activity sexual_practice sex sex_activity,activities associated with sexual intercourse; "they had sex in the back seat"
+69440,sexual_arousal,the arousal of sexual desires in preparation for sexual behavior
+69441,sexual_assault sexual_abuse sex_crime sex_offense,a statutory offense that provides that it is a crime to knowingly cause another person to engage in an unwanted sexual act by force or threat; "most states have replaced the common law definition of rape with statutes defining sexual assault"
+69442,sexual_attraction,attractiveness on the basis of sexual desire
+69443,sexual_conquest score,a seduction culminating in sexual intercourse; "calling his seduction of the girl a `score' was a typical example of male slang"
+69444,sexual_desire eros concupiscence physical_attraction,a desire for sexual intimacy
+69445,sexual_discrimination,discrimination (usually in employment) that excludes one sex (usually women) to the benefit of the other sex
+69446,sexual_harassment,unwelcome sexual behavior by a supervisor toward an employee
+69447,sexual_immorality,the evil ascribed to sexual acts that violate social conventions; "sexual immorality is the major reason for last year's record number of abortions"
+69448,sexual_intercourse intercourse sex_act copulation coitus coition sexual_congress sexual_relation relation carnal_knowledge,sexual activity between individuals, especially the insertion of a man's penis into a woman's vagina until orgasm and ejaculation occur
+69449,sexual_love lovemaking making_love love love_life,sexual activities (often including sexual intercourse) between two people; "his lovemaking disgusted her"; "he hadn't had any love in months"; "he has a very complicated love life"
+69450,sexual_pleasure,pleasure derived from sexual activities
+69451,sexual_relationship,a relationship involving sexual intimacy
+69452,sexual_reproduction amphimixis,reproduction involving the union or fusion of a male and a female gamete
+69453,sforzando,an accented chord
+69454,sforzando,(music) a notation written above a note and indicating that it is to be played with a strong initial attack
+69455,sgraffito,a ceramic or mural decoration made by scratching off a surface layer to reveal the ground
+69456,shabbiness seediness manginess sleaziness,a lack of elegance as a consequence of wearing threadbare or dirty clothing
+69457,shackle,a U-shaped bar; the open end can be passed through chain links and closed with a bar
+69458,shackle bond hamper trammel,a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)
+69459,shad,bony flesh of herring-like fish usually caught during their migration to fresh water for spawning; especially of Atlantic coast
+69460,shad,herring-like food fishes that migrate from the sea to fresh water to spawn
+69461,shad_roe,roe of shad; may be parboiled or baked or sauteed gently
+69462,shade,a position of relative inferiority; "an achievement that puts everything else in the shade"; "his brother's success left him in the shade"
+69463,shade,a representation of the effect of shadows in a picture or drawing (as by shading or darker pigment)
+69464,shade,protective covering that protects something from direct sunlight; "they used umbrellas as shades"; "as the sun moved he readjusted the shade"
+69465,shade shadiness shadowiness,relative darkness caused by light rays being intercepted by an opaque body; "it is much cooler in the shade"; "there's too much shadiness to take good photographs"
+69466,shade tint tincture tone,a quality of a given color that differs slightly from another color; "after several trials he mixed the shade of pink that she wanted"
+69467,shade_tree,a tree planted or valued chiefly for its shade from sunlight
+69468,shades,(plural) something that reminds you of someone or something; "aren't there shades of 1948 here?"
+69469,shadiness,questionable honesty or legality; "they acted with such obvious shadiness that they were instantly recognizable"; "the shadiness of their transactions"
+69470,shading,graded markings that indicate light or shaded areas in a drawing or painting
+69471,shading blending,a gradation involving small or imperceptible differences between grades
+69472,shadow,shade within clear boundaries
+69473,shadow,a dominating and pervasive presence; "he received little recognition working in the shadow of his father"
+69474,shadow,an inseparable companion; "the poor child was his mother's shadow"
+69475,shadow,a premonition of something adverse; "a shadow over his happiness"
+69476,shadow,refuge from danger or observation; "he felt secure in his father's shadow"
+69477,shadow_box,a shallow rectangular box with a transparent front used to protect and display small items (jewelry, coins, etc.)
+69478,shadow_cabinet,a group of senior members of the political party that is out of power; these members would probably assume corresponding positions as ministers in the British Cabinet if their party was elected
+69479,shadowboxing,sparring with an imaginary opponent (for exercise or training)
+69480,shadowing tailing,the act of following someone secretly
+69481,shaft,a line that forms the length of an arrow pointer
+69482,shaft,a vertical passageway through a building (as for an elevator)
+69483,shaft,a long vertical passage sunk into the earth, as for a mine or tunnel
+69484,shaft,a long rod or pole (especially the handle of an implement or the body of a weapon like a spear or arrow)
+69485,shaft scape,(architecture) upright consisting of the vertical part of a column
+69486,shag,a strong coarse tobacco that has been shredded
+69487,shag,a matted tangle of hair or fiber; "the dog's woolly shag"
+69488,shag,a fabric with long coarse nap; "he bought a shag rug"
+69489,shag,a lively dance step consisting of hopping on each foot in turn
+69490,shag_rug,a rug with long pile
+69491,shagbark shagbark_hickory shellbark shellbark_hickory Carya_ovata,North American hickory having loose grey shaggy bark and edible nuts
+69492,shagginess,unkemptness of hair
+69493,shagginess,roughness of nap produced by long woolly hairs
+69494,shaggy_dog_story,a long rambling joke whose humor derives from its pointlessness
+69495,shaggymane shaggy_cap shaggymane_mushroom Coprinus_comatus,common edible mushroom having an elongated shaggy white cap and black spores
+69496,shahadah,the first pillar of Islam is an affirmation of faith
+69497,shaheed,Arabic term for holy martyrs
+69498,shaitan shaytan,(Islam) a rebellious jinni who leads men astray
+69499,shakedown,initial adjustments to improve the functioning or the efficiency and to bring to a more satisfactory state; "the new industry's economic shakedown"
+69500,shakedown,a very thorough search of a person or a place; "a shakedown by the police uncovered the drugs"
+69501,shakedown,extortion of money (as by blackmail)
+69502,shakeout,an economic condition that results in the elimination of marginally financed participants in an industry; "they glutted the market in order to cause a shakeout of their competitors"
+69503,shaker,a container in which something can be shaken
+69504,shaker mover_and_shaker,a person who wields power and influence; "a shaker of traditional beliefs"; "movers and shakers in the business world"
+69505,shakiness,the quality of being unstable and insecure; "the shakiness of the present regime"
+69506,shaking,the act of causing something to move up and down (or back and forth) with quick movements
+69507,shaking shakiness trembling quiver quivering vibration palpitation,a shaky motion; "the shaking of his fingers as he lit his pipe"
+69508,shale,a sedimentary rock formed by the deposition of successive layers of clay
+69509,shale_oil,oil extracted from oil shale by heating
+69510,shallot,aggregate bulb of the multiplier onion
+69511,shallot,small mild-flavored onion-like or garlic-like clustered bulbs used for seasoning
+69512,shallot eschalot multiplier_onion Allium_cepa_aggregatum Allium_ascalonicum,type of onion plant producing small clustered mild-flavored bulbs used as seasoning
+69513,shallow_fording,fording at a shallow place
+69514,shallowness,the quality of lacking physical depth; "take into account the shallowness at that end of the pool before you dive"
+69515,shallu Sorghum_vulgare_rosburghii,sorghum having slender dry stalks and small hard grains; introduced into United States from India
+69516,shaman priest-doctor,in societies practicing shamanism: one acting as a medium between the visible and spirit worlds; practices sorcery for healing or divination
+69517,shamanism,any animistic religion similar to Asian shamanism (especially as practiced by certain Native American tribes)
+69518,shamanism Asian_shamanism,an animistic religion of northern Asia having the belief that the mediation between the visible and the spirit worlds is effected by shamans
+69519,shamble shambling shuffle shuffling,walking with a slow dragging motion without lifting your feet; "from his shambling I assumed he was very old"
+69520,shambles,a condition of great disorder
+69521,shame,a painful emotion resulting from an awareness of inadequacy or guilt
+69522,shame disgrace ignominy,a state of dishonor; "one mistake brought shame to all his family"; "suffered the ignominy of being sent to prison"
+69523,shamefacedness sheepishness,feeling embarrassed about yourself
+69524,shamefulness disgracefulness ignominiousness,unworthiness meriting public disgrace and dishonor
+69525,shamelessness brazenness,behavior marked by a bold defiance of the proprieties and lack of shame
+69526,shampoo,cleansing agent consisting of soaps or detergents used for washing the hair
+69527,shampoo,the act of washing your hair with shampoo
+69528,shamrock_pea Parochetus_communis,trailing trifoliate Asiatic and African herb having cobalt blue flowers
+69529,shandygaff shandy,a drink made of beer and lemonade
+69530,shanghaier seizer,a kidnapper who drugs men and takes them for compulsory service aboard a ship
+69531,shank,a cut of meat (beef or veal or mutton or lamb) from the upper part of the leg
+69532,shank,the part of the human leg between the knee and the ankle
+69533,shank,cylinder forming the part of a bolt between the thread and the head
+69534,shank,cylinder forming the part of a bit by which it is held in the drill
+69535,shank,a poor golf stroke in which the heel of the club hits the ball
+69536,shank stem,cylinder forming a long narrow part of something
+69537,shank waist,the narrow part of the shoe connecting the heel and the wide part of the sole
+69538,shank's_mare shanks'_mare shank's_pony shanks'_pony,you own legs; "I traveled on shank's mare"
+69539,shanny Blennius_pholis,European scaleless blenny
+69540,shantung,a heavy silk fabric with a rough surface (or a cotton imitation)
+69541,shantytown,a city district inhabited by people living in huts and shanties
+69542,shape embodiment,a concrete representation of an otherwise nebulous concept; "a circle was the embodiment of his concept of life"
+69543,shape form,the spatial arrangement of something as distinct from its substance; "geometry is the mathematical science of shape"
+69544,shape form configuration contour conformation,any spatial attributes (especially as defined by outline); "he could barely make out their shapes"
+69545,shape-up,a way of hiring longshoremen by the day; applicants gather around a union boss who selects those to be hired
+69546,shape_constancy,the tendency to perceive the shape of a rigid object as constant despite differences in the viewing angle (and consequent differences in the shape of the pattern projected on the retina of the eye)
+69547,shapelessness,an amorphous or indefinite shape; "a shapeless mass"
+69548,shapelessness,the quality of lacking an esthetically pleasing shape
+69549,shaper shaping_machine,a machine tool for shaping metal or wood
+69550,shaping defining,any process serving to define the shape of something
+69551,shaping_tool,a tool for shaping metal
+69552,shard sherd fragment,a broken piece of a brittle artifact
+69553,share,any of the equal portions into which the capital stock of a corporation is divided and ownership of which is evidenced by a stock certificate; "he bought 100 shares of IBM at the market price"
+69554,share portion part percentage,assets belonging to or due to or contributed by an individual person or group; "he wanted his share in cash"
+69555,sharecropper cropper sharecrop_farmer,small farmers and tenants
+69556,shareholding,a holding in the form of shares of corporations
+69557,shareware,software that is available free of charge; may be distributed for evaluation with a fee requested for additional features or a manual etc.
+69558,shariah shariah_law sharia sharia_law Islamic_law,the code of law derived from the Koran and from the teachings and example of Mohammed; "sharia is only applicable to Muslims"; "under Islamic law there is no separation of church and state"
+69559,sharing,using or enjoying something jointly with others
+69560,sharing,having in common; "the sharing of electrons creates molecules"
+69561,sharing share-out,a distribution in shares
+69562,shark,a person who is ruthless and greedy and dishonest
+69563,shark,a person who is unusually skilled in certain ways; "a card shark"
+69564,shark,any of numerous elongate mostly marine carnivorous fishes with heterocercal caudal fins and tough skin covered with small toothlike scales
+69565,shark_oil shark-liver_oil,a fatty yellow to brown oil obtained from the livers of sharks; used for dressing leather and as a source of vitamin A
+69566,shark_repellent porcupine_provision,a measure undertaken by a corporation to discourage unwanted takeover attempts
+69567,sharkskin,a smooth crisp fabric
+69568,sharksucker Echeneis_naucrates,remoras found attached to sharks
+69569,sharp,a musical notation indicating one half step higher than the note named
+69570,sharp,a long thin sewing needle with a sharp point
+69571,sharp-tailed_grouse sprigtail sprig_tail Pedioecetes_phasianellus,large grouse of prairies and open forests of western North America
+69572,sharp_tongue,a bitter or critical manner of speaking
+69573,sharpener,any implement that is used to make something (an edge or a point) sharper; "a knife sharpener"
+69574,sharpie,a shallow-draft sailboat with a sharp prow, flat bottom, and triangular sail; formerly used along the northern Atlantic coast of the United States
+69575,sharpness,the quality of being keenly and painfully felt; "the sharpness of her loss"
+69576,sharpness keenness,thinness of edge or fineness of point
+69577,sharpshooter,an athlete noted for accurate aim
+69578,sharpshooter,a fast schooner once used by New England fisherman for illegal fishing in Canadian waters
+69579,sharptail_mola Mola_lanceolata,caudal fin has a central projection
+69580,shasta_daisy Leucanthemum_superbum Chrysanthemum_maximum_maximum,hybrid garden flower derived from Chrysanthemum maximum and Chrysanthemum lacustre having large white flower heads resembling oxeye daisies; often placed in the genus Chrysanthemum
+69581,shave shaving,the act of removing hair with a razor
+69582,shaver,an adult male who shaves
+69583,shaver electric_shaver electric_razor,a razor powered by an electric motor
+69584,shaving-brush_tree Pseudobombax_ellipticum,tree of Mexico to Guatemala having densely hairy flowers with long narrow petals clustered at ends of branches before leaves appear
+69585,shaving_brush,a brush used to apply lather prior to shaving
+69586,shaving_cream shaving_soap,toiletry consisting of a preparation of soap and fatty acids that forms a rich lather for softening the beard before shaving
+69587,shaving_foam,toiletry consisting of a liquid preparation containing many small bubbles that soften the beard before shaving
+69588,shawl,cloak consisting of an oblong piece of cloth used to cover the head and shoulders
+69589,shawm,a medieval oboe
+69590,she-devil,a cruel woman
+69591,she-oak,any of several Australian trees of the genus Casuarina
+69592,shear,(physics) a deformation of an object in which parallel planes remain parallel but are shifted in a direction parallel to themselves; "the shear changed the quadrilateral into a parallelogram"
+69593,shear,a large edge tool that cuts sheet metal by passing a blade through it
+69594,shearer,a workman who uses shears to cut leather or metal or textiles
+69595,shearer,a skilled worker who shears the wool off of sheep or other animals
+69596,shearing,removing by cutting off or clipping
+69597,shears,large scissors with strong blades
+69598,shearwater,long-winged oceanic bird that in flight skims close to the waves
+69599,sheath,a protective covering (as for a knife or sword)
+69600,sheath case,an enveloping structure or covering enclosing an animal or plant organ or part
+69601,sheathing overlay overlayer,protective covering consisting, for example, of a layer of boards applied to the studs and joists of a building to strengthen it and serve as a foundation for a weatherproof exterior
+69602,shebang,an entire system; used in the phrase `the whole shebang'
+69603,shebeen,unlicensed drinking establishment
+69604,shed,an outbuilding with a single story; used for shelter or storage
+69605,shedder spiller,an attacker who sheds or spills blood; "a great hunter and spiller of blood"
+69606,shedding sloughing,the process whereby something is shed
+69607,sheep,a timid defenseless simpleton who is readily preyed upon
+69608,sheep,a docile and vulnerable person who would rather follow than make an independent decision; "his students followed him like sheep"
+69609,sheep,woolly usually horned ruminant mammal related to the goat
+69610,sheep-tick sheep_tick Ixodes_ricinus,parasitic on sheep and cattle as well as humans; can transmit looping ill in sheep (acute viral disease of the nervous system); a vector for Lyme disease spirochete
+69611,sheep_bell,a bell hung round the neck of a sheep so that the sheep can be easily located
+69612,sheep_botfly sheep_gadfly Oestrus_ovis,larvae are parasitic on sheep
+69613,sheep_dip,a liquid mixture containing pesticides in which sheep are dipped to kill parasites
+69614,sheep_fescue sheep's_fescue Festuca_ovina,cultivated for sheep pasturage in upland regions or used as a lawn grass
+69615,sheep_frog,mostly of Central America
+69616,sheep_ked sheep-tick sheep_tick Melophagus_Ovinus,wingless fly that is an external parasite on sheep and cattle
+69617,sheep_laurel pig_laurel lambkill Kalmia_angustifolia,North American dwarf shrub resembling mountain laurel but having narrower leaves and small red flowers; poisonous to young stock
+69618,sheep_plant vegetable_sheep Raoulia_lutescens Raoulia_australis,perennial prostrate mat-forming herb with hoary woolly foliage
+69619,sheep_sorrel sheep's_sorrel Rumex_acetosella,small plant having pleasantly acid-tasting arrow-shaped leaves; common in dry places
+69620,sheepherder shepherd sheepman,a herder of sheep (on an open range); someone who keeps the sheep together in a flock
+69621,sheepman,a man who raises (or tends) sheep
+69622,sheepshank,a knot for shortening a line
+69623,sheepshead Archosargus_probatocephalus,large (up to 20 lbs) food fish of the eastern coast of the United States and Mexico
+69624,sheepshead_porgy Calamus_penna,from Florida and Bahamas to Brazil
+69625,sheepshearing,the time or season when sheep are sheared
+69626,sheepshearing,a festival held at the time sheep are normally sheared
+69627,sheepshearing,act of shearing sheep
+69628,sheepskin fleece,tanned skin of a sheep with the fleece left on; used for clothing
+69629,sheepskin_coat afghan,a coat made of sheepskin
+69630,sheepwalk sheeprun,farm devoted to raising sheep
+69631,sheet,any broad thin expanse or surface; "a sheet of ice"
+69632,sheet bed_sheet,bed linen consisting of a large rectangular piece of cotton or linen cloth; used in pairs
+69633,sheet flat_solid,a flat artifact that is thin relative to its length and width
+69634,sheet piece_of_paper sheet_of_paper,paper used for writing or printing
+69635,sheet tack mainsheet weather_sheet shroud,(nautical) a line (rope or chain) that regulates the angle at which a sail is set in relation to the wind
+69636,sheet-metal_work,the craft of doing sheet metal work (as in ventilation systems)
+69637,sheet_anchor waist_anchor,spare anchor for use in emergency
+69638,sheet_bend becket_bend weaver's_knot weaver's_hitch,a hitch used for temporarily tying a rope to the middle of another rope (or to an eye)
+69639,sheet_iron,plate iron thinner than tank iron
+69640,sheet_lighting,lightning that appears as a broad sheet; due to reflections of more distant lightning and to diffusion by the clouds
+69641,sheet_metal,sheet of metal formed into a thin plate
+69642,sheet_music,a musical composition in printed or written form; "she turned the pages of the music as he played"
+69643,sheet_pile sheath_pile sheet_piling,a pile in a row of piles driven side by side to retain earth or prevent seepage
+69644,sheet_web,an irregular spider web woven in a single plane and looking like flattened hammocks
+69645,sheeting,fabric from which bed sheets are made
+69646,shegetz,an offensive term for non-Jewish young man; "why does she like all those shkotzim?"
+69647,sheik tribal_sheik sheikh tribal_sheikh Arab_chief,the leader of an Arab village or family
+69648,sheika sheikha,the wife of a sheik
+69649,sheikdom sheikhdom,the domain ruled by a sheik
+69650,shekel,the basic unit of money in Israel
+69651,sheldrake,Old World gooselike duck slightly larger than a mallard with variegated mostly black-and-white plumage and a red bill
+69652,shelduck,female sheldrake
+69653,shelf,a support that consists of a horizontal surface for holding objects
+69654,shelf_bracket,a bracket to support a shelf
+69655,shelf_ice ice_shelf,ice that is attached to land but projects out to sea
+69656,shelf_life,the length of time a packaged food or drug will last without deteriorating
+69657,shelfful,the amount that a shelf will hold; "he bought a shelfful of books"
+69658,shell,the material that forms the hard outer covering of many animals
+69659,shell,the hard usually fibrous outer layer of some fruits especially nuts
+69660,shell,a rigid covering that envelops an object; "the satellite is covered with a smooth shell of ice"
+69661,shell,ammunition consisting of a cylindrical metal casing containing an explosive charge and a projectile; fired from a large gun
+69662,shell,the hard largely calcareous covering of a mollusc or a brachiopod
+69663,shell case casing,the housing or outer covering of something; "the clock has a walnut case"
+69664,shell eggshell,the exterior covering of a bird's egg
+69665,shell racing_shell,a very light narrow racing boat
+69666,shell_bean,unripe beans removed from the pod before cooking
+69667,shell_bean shell_bean_plant,a bean plant grown primarily for its edible seed rather than its pod
+69668,shell_corporation shell_entity,a company that is incorporated but has no assets or operations
+69669,shell_game thimblerig,a swindling sleight-of-hand game; victim guesses which of three things a pellet is under
+69670,shell_plating,the plates covering the frame of a steel ship and corresponding to the planking of a wooden ship
+69671,shell_stitch,a crochet stitch
+69672,shellac,lac purified by heating and filtering; usually in thin orange or yellow flakes but sometimes bleached white
+69673,shellac shellac_varnish,a thin varnish made by dissolving lac in ethanol; used to finish wood
+69674,shellac_wax lac_wax,a hard wax separated from shellac by its insolubility in alcohol
+69675,sheller,a worker who removes shells (as of peas or oysters)
+69676,shellfire,shooting artillery shells
+69677,shellfish,meat of edible aquatic invertebrate with a shell (especially a mollusk or crustacean)
+69678,shellflower shall-flower shell_ginger Alpinia_Zerumbet Alpinia_speciosa Languas_speciosa,cultivated for its shining oblong leaves and arching clusters of white flowers with pink shading and crinkled yellow lips with variegated magenta stripes
+69679,shellflower shell-flower turtlehead snakehead snake-head Chelone_glabra,showy perennial of marshlands of eastern and central North America having waxy lanceolate leaves and flower with lower part creamy white and upper parts pale pink to deep purple
+69680,shelter,temporary housing for homeless or displaced persons
+69681,shelter,protective covering that provides protection from the weather
+69682,shelter,a structure that provides privacy and protection from danger
+69683,sheltered_workshop,a workshop that offers jobs to members of the physically or developmentally disabled population
+69684,shelver,a worker who puts things (as books) on shelves
+69685,shepherd,a clergyman who watches over a group of people
+69686,shepherd's_pie,pie of hash covered with mashed potatoes and browned in the oven
+69687,shepherd's_purse shepherd's_pouch Capsella_bursa-pastoris,white-flowered annual European herb bearing triangular notched pods; nearly cosmopolitan as an introduced weed
+69688,shepherd_dog sheepdog sheep_dog,any of various usually long-haired breeds of dog reared to herd and guard sheep
+69689,shepherdess,a woman shepherd
+69690,sherbert sherbet,a frozen dessert made primarily of fruit juice and sugar, but also containing milk or egg-white or gelatin
+69691,sheriff,the principal law-enforcement officer in a county
+69692,sheriff's_sale execution_sale judicial_sale forced_sale,a sale of property by the sheriff under authority of a court's writ of execution in order satisfy an unpaid obligation
+69693,sherry,dry to sweet amber wine from the Jerez region of southern Spain or similar wines produced elsewhere; usually drunk as an aperitif
+69694,shibboleth,a manner of speaking that is distinctive of a particular group of people
+69695,shield,a protective covering or structure
+69696,shield buckler,armor carried on the arm to intercept blows
+69697,shield_fern buckler_fern,any of various ferns of the genera Dryopteris or Polystichum or Lastreopsis having somewhat shield-shaped coverings on the sori
+69698,shielding,shield consisting of an arrangement of metal mesh or plates designed to protect electronic equipment from ambient electromagnetic interference
+69699,shielding,a shield of lead or concrete intended as a barrier to radiation emitted in nuclear decay
+69700,shielding,the act of shielding from harm
+69701,shift,a crew of workers who work for a specific period of time
+69702,shift displacement,an event in which something is displaced without rotation
+69703,shift shifting,the act of moving from one place to another; "his constant shifting disrupted the class"
+69704,shift work_shift duty_period,the time period during which you are at work
+69705,shift_key shift,the key on the typewriter keyboard that shifts from lower-case letters to upper-case letters
+69706,shift_register,(computer science) register in which all bits can be shifted one or more positions to the left or to the right
+69707,shiftiness,the quality of being changeable in direction; "the shiftiness of the wind caused the boat to veer unpredictably"
+69708,shiftlessness,a failure to be active as a consequence of lack of initiative or ambition
+69709,shiga_bacillus Shigella_dysentariae,a bacillus that causes dysentery
+69710,shigella,rod-shaped Gram-negative enterobacteria; some are pathogenic for warm-blooded animals; can be used as a bioweapon
+69711,shigellosis bacillary_dysentery,an acute infection of the intestine by shigella bacteria; characterized by diarrhea and fever and abdominal pains
+69712,shiitake shiitake_mushroom Chinese_black_mushroom golden_oak_mushroom Oriental_black_mushroom Lentinus_edodes,edible east Asian mushroom having a golden or dark brown to blackish cap and an inedible stipe
+69713,shiksa shikse,a derogatory term used by Jews to refer to non-Jewish women
+69714,shill,a decoy who acts as an enthusiastic customer in order to stimulate the participation of others
+69715,shillelagh shillalah,a cudgel made of hardwood (usually oak or blackthorn)
+69716,shilling,an English coin worth one twentieth of a pound
+69717,shim,a thin wedge of material (wood or metal or stone) for driving into crevices
+69718,shimmer play,a weak and tremulous light; "the shimmer of colors on iridescent feathers"; "the play of light on the water"
+69719,shimmy,an abnormal wobble in a motor vehicle (especially in the front wheels); "he could feel the shimmy in the steering wheel"
+69720,shimmy,lively dancing (usually to ragtime music) with much shaking of the shoulders and hips
+69721,shin,the 22nd letter of the Hebrew alphabet
+69722,shin,the front part of the human leg between the knee and the ankle
+69723,shin shin_bone,a cut of meat from the lower part of the leg
+69724,shin_guard shinpad,a stiff protective garment worn by hockey players or a catcher in baseball to protect the shins
+69725,shin_splints,painful inflammation of the muscles around the shins; frequent among runners
+69726,shindig shindy,a large and noisy party of people
+69727,shiner,something that shines (with emitted or reflected light)
+69728,shiner,any of numerous small silvery North American cyprinid fishes especially of the genus Notropis
+69729,shiner black_eye mouse,a swollen bruise caused by a blow to the eye
+69730,shingle,coarse beach gravel of small waterworn stones and pebbles (or a stretch of shore covered with such gravel)
+69731,shingle,a small signboard outside the office of a lawyer or doctor, e.g.
+69732,shingle shake,building material used as siding or roofing
+69733,shingle_oak laurel_oak Quercus_imbricaria,small deciduous tree of eastern and central United States having leaves that shine like laurel; wood is used in western states for shingles
+69734,shingle_tree Acrocarpus_fraxinifolius,East Indian timber tree with hard durable wood used especially for tea boxes
+69735,shingler,a worker who shingles roofs
+69736,shingling,(geology) sediment in which flat pebbles are uniformly tilted in the same direction
+69737,shingling,the laying on of shingles; "shingling is a craft very different from carpentry"
+69738,shininess sheen luster lustre,the visual property of something that shines with reflected light
+69739,shining polishing,the work of making something smooth and shiny by rubbing or waxing it; "the shining of shoes provided a meager living"; "every Sunday he gave his car a good polishing"
+69740,shining_clubmoss Lycopodium_lucidulum,a variety of club moss
+69741,shining_willow Salix_lucida,common North American shrub with shiny lanceolate leaves
+69742,shinny shinney,a simple version of hockey played by children on the streets (or on ice or on a field) using a ball or can as the puck
+69743,shinplaster,paper money of little value issued on insufficient security
+69744,ship,a vessel that carries passengers or freight
+69745,ship's_chandler,a dealer in sails and ropes and other supplies for sailing ships
+69746,ship's_company company,crew of a ship including the officers; the whole force or personnel of a ship
+69747,ship's_papers,official papers which a ship is legally required to have; related to ownership, cargo, etc.
+69748,ship-breaker,a contractor who buys old ships and breaks them up for scrap
+69749,ship-towed_long-range_acoustic_detection_system,a shipboard system consisting of an acoustic detection system that is towed behind the ship
+69750,ship_broker,an agent for the ship owner; obtains cargo and may arrange for its loading or discharge
+69751,ship_canal shipway,a canal large enough for seagoing vessels
+69752,ship_chandler,a dealer in equipment and supplies for ships
+69753,ship_money,an impost levied in England to provide money for ships for national defense
+69754,shipboard_system,a system designed to work as a coherent entity on board a naval ship
+69755,shipbuilder,a business that builds and repairs ships
+69756,shipbuilder ship_builder,a person who builds ships as a business
+69757,shipbuilding ship_building,the construction of ships
+69758,shipbuilding_industry,an industry that builds ships
+69759,shipmate,an associate on the same ship with you
+69760,shipowner,someone who owns a ship or a share in a ship
+69761,shipper,someone who ships goods
+69762,shipper,a company in the business of shipping freight
+69763,shipping cargo_ships merchant_marine merchant_vessels,conveyance provided by the ships belonging to one country or industry
+69764,shipping_agent,the agent of a shipowner
+69765,shipping_clerk,an employee who ships and receives goods
+69766,shipping_company,a company that provides shipping services
+69767,shipping_fever shipping_pneumonia,a deadly form of septicemia in cattle and sheep; involves high fever and pneumonia; contracted under conditions of exposure or exhaustion (as often happens when the animals are shipped to market)
+69768,shipping_office,the office of a shipping agent; an office where seamen are hired
+69769,shipping_room,a room where goods are packaged and shipped
+69770,shipside,the part of a wharf that is next to a ship
+69771,shipworm teredinid,wormlike marine bivalve that bores into wooden piers and ships by means of drill-like shells
+69772,shipwreck,an irretrievable loss; "that was the shipwreck of their romance"
+69773,shipwreck,a wrecked ship (or a part of one)
+69774,shipwreck wreck,an accident that destroys a ship at sea
+69775,shipwright shipbuilder ship_builder,a carpenter who helps build and launch wooden vessels
+69776,shipyard,a workplace where ships are built or repaired
+69777,shire,a former administrative district of England; equivalent to a county
+69778,shire shire_horse,British breed of large heavy draft horse
+69779,shirking slacking soldiering goofing_off goldbricking,the evasion of work or duty
+69780,shirred_egg baked_egg egg_en_cocotte,egg cooked individually in cream or butter in a small ramekin
+69781,shirring,baking shelled eggs
+69782,shirt,a garment worn on the upper half of the body
+69783,shirt_button,a button on a shirt
+69784,shirtdress,a dress that is tailored like a shirt and has buttons all the way down the front
+69785,shirtfront,the front of a shirt (usually the part not covered by a jacket); "he had spilled catsup on his shirtfront"
+69786,shirting,any of various fabrics used to make men's shirts
+69787,shirtmaker,a maker of shirts
+69788,shirtsleeve,the sleeve of a shirt
+69789,shirtsleeves,not wearing a jacket; "in your shirtsleeves" means you are not wearing anything over your shirt; "in hot weather they dined in their shirtsleeves"
+69790,shirttail,a brief addendum at the end of a newspaper article
+69791,shirttail,fabric forming the tail of a shirt
+69792,shirtwaist shirtwaister,a blouse with buttons down the front; "in Britain they call a shirtwaist a shirtwaister"
+69793,shit dump,a coarse term for defecation; "he took a shit"
+69794,shittah shittah_tree,source of a wood mentioned frequently in the Bible; probably a species of genus Acacia
+69795,shittimwood,wood of the shittah tree used to make the ark of the Hebrew Tabernacle
+69796,shiv,a knife used as a weapon
+69797,shiva shivah shibah,(Judaism) a period of seven days of mourning after the death of close relative; "the family is sitting shiva"
+69798,shivaree chivaree charivari callithump callathump belling,a noisy mock serenade (made by banging pans and kettles) to a newly married couple
+69799,shmegegge schmegegge,(Yiddish) baloney; hot air; nonsense
+69800,shmooze,(Yiddish) a warm heart-to-heart talk
+69801,shoal,a sandbank in a stretch of water that is visible at low tide
+69802,shoal shallow,a stretch of shallow water
+69803,shock,(pathology) bodily collapse or near collapse caused by inadequate oxygen delivery to the cells; characterized by reduced cardiac output and rapid heartbeat and circulatory insufficiency and pallor; "loss of blood is an important cause of shock"
+69804,shock,a pile of sheaves of grain set on end in a field to dry; stalks of Indian corn set up in a field; "corn is bound in small sheaves and several sheaves are set up together in shocks"; "whole fields of wheat in shock"
+69805,shock,a bushy thick mass (especially hair); "he had an unruly shock of black hair"
+69806,shock blow,an unpleasant or disappointing surprise; "it came as a shock to learn that he was injured"
+69807,shock impact,the violent interaction of individuals or groups entering into combat; "the armies met in the shock of battle"
+69808,shock seismic_disturbance,an instance of agitation of the earth's crust; "the first shock of the earthquake came shortly after noon while workers were at lunch"
+69809,shock_absorber shock cushion,a mechanical damper; absorbs energy of sudden impulses; "the old car needed a new set of shocks"
+69810,shock_therapy shock_treatment,treatment of certain psychotic states by the administration of shocks that are followed by convulsions
+69811,shock_troops,soldiers who are specially trained and armed to lead an assault
+69812,shock_wave blast_wave,a region of high pressure travelling through a gas at a high velocity; "the explosion created a shock wave"
+69813,shocker,a shockingly bad person
+69814,shocker,a sensational message (in a film or play or novel)
+69815,shoddiness trashiness,the quality of being cheaply imitative of something better
+69816,shoddy,reclaimed wool fiber
+69817,shoe,(card games) a case from which playing cards are dealt one at a time
+69818,shoe,footwear shaped to fit the foot (below the ankle) with a flexible upper of leather or plastic and a sole and heel of heavier material
+69819,shoe_bomb,an explosive device concealed inside the heel and sole of a shoe
+69820,shoe_industry,an industry that manufactures and sells shoes
+69821,shoe_leather,leather used to make shoes
+69822,shoe_polish blacking,a substance used to produce a shiny protective surface on footwear
+69823,shoe_shop shoe-shop shoe_store,a shop where shoes are sold
+69824,shoebill shoebird Balaeniceps_rex,large stork-like bird of the valley of the White Nile with a broad bill suggesting a wooden shoe
+69825,shoebox,a structure resembling a shoebox (as a rectangular building or a cramped room or compartment)
+69826,shoebox,an oblong rectangular (usually cardboard) box designed to hold a pair of shoes
+69827,shoeful,the amount that a shoe will hold; "he emptied out a shoeful of water"
+69828,shoehorn,a device used for easing the foot into a shoe
+69829,shoelace shoe_lace shoestring shoe_string,a lace used for fastening shoes
+69830,shoemaking shoe_repairing cobbling,the shoemaker's trade
+69831,shoeshine,a shiny finish put on shoes with polish and buffing; "his trousers had a sharp crease and you could see your reflection in his shoeshine"
+69832,shoeshine,the act of shining shoes; "he charged a dollar for a shoeshine"
+69833,shoestring shoe_string,a small amount of money; "he managed it on a shoestring"
+69834,shoestring_catch,(baseball) a running catch made near the ground
+69835,shoestring_fungus,any of several fungi of the genus Armillaria that form brown stringy rhizomorphs and cause destructive rot of the roots of some trees such as apples or maples
+69836,shoetree,a wooden or metal device that is inserted into a shoe to preserve its shape when it is not being worn
+69837,shofar shophar,an ancient musical horn made from the horn of a ram; used in ancient times by the Israelites to sound a warning or a summons; used in synagogues today on solemn occasions
+69838,shogi,a form of chess played on a board of 81 squares; each player has 20 pieces
+69839,shogun,a hereditary military dictator of Japan; the shoguns ruled Japan until the revolution of 1867-68
+69840,shoji,a translucent screen made of a wooden frame covered with rice paper
+69841,shoofly,an undercover police officer who investigates other policemen
+69842,shoofly,a child's rocking chair with the seat built between two flat sides that are shaped to resemble an animal (such as a swan or duck)
+69843,shoofly_pie,open pie filled with a mixture of sweet crumbs and molasses
+69844,shook,a disassembled barrel; the parts packed for storage or shipment
+69845,shoot,a new branch
+69846,shoot,the act of shooting at targets; "they hold a shoot every weekend during the summer"
+69847,shoot-'em-up,a movie featuring shooting and violence
+69848,shoot-down,murder by shooting someone down in cold blood
+69849,shooter,(sports) a player who drives or kicks a ball at the goal (or a basketball player who shoots at the basket)
+69850,shooter crap-shooter,a gambler who throws dice in the game of craps
+69851,shooting,killing someone by gunfire; "when the shooting stopped there were three dead bodies"
+69852,shooting shot,the act of firing a projectile; "his shooting was slow but accurate"
+69853,shooting_brake,another name for a station wagon
+69854,shooting_gallery,a building (usually abandoned) where drug addicts buy and use heroin
+69855,shooting_gallery shooting_range,an enclosed firing range with targets for rifle or handgun practice
+69856,shooting_lodge shooting_box,a small country house used by hunters during the shooting season
+69857,shooting_preserve,a preserve on which hunting is permitted during certain months of the year
+69858,shooting_script,the final detailed script for making a movie or TV program
+69859,shooting_stick,device that resembles a spiked walking stick but the top opens into a seat
+69860,shop store,a mercantile establishment for the retail sale of goods or services; "he bought it at a shop on Cape Cod"
+69861,shop_bell,a bell attached to the door of a small shop; warns the proprietor that a customer has entered the shop
+69862,shop_boy,a young male shop assistant
+69863,shop_class shop,a course of instruction in a trade (as carpentry or electricity); "I built a birdhouse in shop"
+69864,shop_floor,workplace consisting of the part of a factory housing the machines; "the productive work is done on the shop floor"
+69865,shop_girl,a young female shop assistant
+69866,shop_steward steward,a union member who is elected to represent fellow workers in negotiating with management
+69867,shop_talk,talk about your business that only others in the same business can understand
+69868,shopaholic,a compulsive shopper; "shopaholics can never resist a bargain"
+69869,shopfront storefront,the front side of a store facing the street; usually contains display windows
+69870,shopkeeper tradesman storekeeper market_keeper,a merchant who owns or manages a shop
+69871,shoplifting shrinkage,the act of stealing goods that are on display in a store; "shrinkage is the retail trade's euphemism for shoplifting"
+69872,shopper,a commercial agent who shops at the competitor's store in order to compare their prices and merchandise with those of the store that employs her
+69873,shopper,someone who visits stores in search of articles to buy
+69874,shopping,the commodities purchased from stores; "she loaded her shopping into the car"; "women carrying home shopping didn't give me a second glance"
+69875,shopping,searching for or buying goods or services; "went shopping for a reliable plumber"; "does her shopping at the mall rather than down town"
+69876,shopping_bag,a bag made of plastic or strong paper (often with handles); used to transport goods after shopping
+69877,shopping_basket,a handbasket used to carry goods while shopping
+69878,shopping_cart,a handcart that holds groceries or other goods while shopping
+69879,shopping_list,a list of items to be purchased
+69880,shore,the land along the edge of a body of water
+69881,shore shoring,a beam or timber that is propped against a structure to provide support
+69882,shore_boulder,a boulder found on a shore remote from its place of origin
+69883,shore_duty,naval service at land bases
+69884,shore_leave liberty,leave granted to a sailor or naval officer
+69885,shore_patrol,the military police of the navy
+69886,shore_pine lodgepole lodgepole_pine spruce_pine Pinus_contorta,shrubby two-needled pine of coastal northwestern United States; red to yellow-brown bark fissured into small squares
+69887,shorebird shore_bird limicoline_bird,any of numerous wading birds that frequent mostly seashores and estuaries
+69888,shoreline,a boundary line between land and water
+69889,shoring shoring_up propping_up,the act of propping up with shores
+69890,short,the location on a baseball field where the shortstop is stationed
+69891,short-horned_grasshopper acridid,grasshopper with short antennae
+69892,short-spurred_fragrant_orchid Gymnadenia_odoratissima,similar to Gymnadenia conopsea but with smaller flowers on shorter stems and having much shorter spurs
+69893,short-staple_cotton,cotton with relatively short fibers
+69894,short-tailed_shrew Blarina_brevicauda,North American shrew with tail less than half its body length
+69895,short-term_memory STM immediate_memory,what you can repeat immediately after perceiving it
+69896,short_account,a brokerage account of someone who sells short (sells securities he does not own)
+69897,short_account,the aggregate of short sales on an open market
+69898,short_bone os_breve,a bone that is of approximately equal dimension in all directions
+69899,short_circuit short,accidental contact between two points in an electric circuit that have a potential difference
+69900,short_covering,the purchase of securities or commodities by a short seller to close out a short sale
+69901,short_division,the operation of division in which the sequence of steps is performed without writing them out
+69902,short_gastric_artery arteria_gastrica_breves vasa_brevis,several small arteries branching off of the splenic artery and going to the greater curvature of the stomach
+69903,short_iron,an iron with a short shaft and pitched face; for hitting short high shots
+69904,short_line,a transportation system that operates over relatively short distances
+69905,short_list shortlist,a list of applicants winnowed from a longer list who have been deemed suitable and from which the successful person will be chosen
+69906,short_loin,the portion of the loin from which porterhouse steaks are cut
+69907,short_order,an order for food that can be prepared quickly
+69908,short_pants shorts trunks,(used in the plural) trousers that end at or above the knee
+69909,short_ribs,cut of beef containing rib ends near the sternum
+69910,short_sale short_selling,sale of securities or commodity futures not owned by the seller (who hopes to buy them back later at a lower price)
+69911,short_saphenous_vein,a vein running from the foot up the back of the leg to the knee
+69912,short_shrift summary_treatment,a brief and unsympathetic rejection; "they made short shrift of my request"
+69913,short_sleeve,a sleeve extending from the shoulder to the elbow
+69914,short_story,a prose narrative shorter than a novel
+69915,short_subject,a brief film; often shown prior to showing the feature
+69916,short_ton ton net_ton,a United States unit of weight equivalent to 2000 pounds
+69917,short_wave,a radio wave with a wavelength less than 100 meters (a frequency greater than 3 megahertz)
+69918,shortbread shortbread_cookie,very rich thick butter cookie
+69919,shortcake,very short biscuit dough baked as individual biscuits or a round loaf; served with sweetened fruit and usually whipped cream
+69920,shortcut cutoff crosscut,a route shorter than the usual one
+69921,shortener,any agent that shortens; "alcohol is a great shortener of life"
+69922,shortening,fat such as butter or lard used in baked goods
+69923,shortening,act of decreasing in length; "the dress needs shortening"
+69924,shortfin_mako Isurus_oxyrhincus,very swift active bluish shark found worldwide in warm waters; important game fish
+69925,shortgrass short-grass,any of various grasses that are short and can tolerate drought conditions; common on the dry upland plains just east of the Rocky Mountains
+69926,shorthand stenography tachygraphy,a method of writing rapidly using an abbreviated symbolic system
+69927,shortia,any plant of the genus Shortia; evergreen perennial herbs with smooth leathery basal leaves and showy white solitary flowers
+69928,shortleaf_pine short-leaf_pine shortleaf_yellow_pine Pinus_echinata,large pine of southern United States having short needles in bunches of 2-3 and red-brown bark when mature
+69929,shortness,the condition of being short of something; "there was no shortness of money"; "can cause shortness of breath"
+69930,shortness,the property of being of short spatial extent; "the shortness of the Channel crossing"
+69931,shortness,the property of being of short temporal extent; "the shortness of air travel time"
+69932,shortness,the property of being shorter than average stature
+69933,shortness truncation,the property of being truncated or short
+69934,shortness_of_breath SOB breathlessness,a dyspneic condition
+69935,shortstop,(baseball) the person who plays the shortstop position
+69936,shortstop short,the fielding position of the player on a baseball team who is stationed between second and third base
+69937,shortwave_diathermy_machine,a diathermy machine that uses short wave radiation as the source of heat
+69938,shot,sports equipment consisting of a heavy metal ball used in the shot put; "he trained at putting the shot"
+69939,shot,an explosive charge used in blasting
+69940,shot,a blow hard enough to cause injury; "he is still recovering from a shot to his leg"; "I caught him with a solid shot to the chin"
+69941,shot,an attempt to score in a game
+69942,shot crack,a chance to do something; "he wanted a shot at the champion"
+69943,shot pellet,a solid missile discharged from a firearm; "the shot buzzed past his ear"
+69944,shot shaft slam dig barb jibe gibe,an aggressive remark directed at a person like a missile and intended to have a telling effect; "his parting shot was `drop dead'"; "she threw shafts of sarcasm"; "she takes a dig at me every chance she gets"
+69945,shot shooter,a person who shoots (usually with respect to their ability to shoot); "he is a crack shot"; "a poor shooter"
+69946,shot stab,informal words for any attempt or effort; "he gave it his best shot"; "he took a stab at forecasting"
+69947,shot_glass jigger pony,a small glass adequate to hold a single swallow of whiskey
+69948,shot_hole,drill hole for a charge of an explosive
+69949,shot_metal,an alloy that is 98% lead and 2% arsenic; used in making small shot
+69950,shot_put,an athletic competition in which a heavy metal ball is hurled as far as possible
+69951,shot_putter,an athlete who competes in the shot put
+69952,shot_tower,tower of a kind once used to make shot; molten lead was poured through a sieve and dropped into water
+69953,shotgun scattergun,firearm that is a double-barreled smoothbore shoulder weapon for firing shot at short ranges
+69954,shotgun_shell,a shell containing lead shot; used in shotguns
+69955,shoulder,a cut of meat including the upper joint of the foreleg
+69956,shoulder,the part of the body between the neck and the upper arm
+69957,shoulder,the part of a garment that covers or fits over the shoulder; "an ornamental gold braid on the shoulder of his uniform"
+69958,shoulder berm,a narrow edge of land (usually unpaved) along the side of a road; "the car pulled off onto the shoulder"
+69959,shoulder shoulder_joint articulatio_humeri,a ball-and-socket joint between the head of the humerus and a cavity of the scapula
+69960,shoulder_bag,a large handbag that can be carried by a strap looped over the shoulder
+69961,shoulder_board shoulder_mark,epaulets that indicate rank
+69962,shoulder_flash,something worn on the shoulder of a military uniform as an emblem of a division etc.
+69963,shoulder_girdle pectoral_arch,the bony arch formed by the collarbones and shoulder blades in humans
+69964,shoulder_holster,a holster worn over your shoulder so a gun can be concealed under your jacket
+69965,shoulder_pad,protective garment consisting of a hard rounded pad worn by football players to protect their shoulders
+69966,shoulder_patch,patch worn on the shoulder of a military uniform to indicate rank
+69967,shouldered_arch,an arch consisting of a horizontal lintel supported at each end by corbels that project into the aperture
+69968,shove,the act of shoving (giving a push to someone or something); "he gave the door a shove"
+69969,shovel,a fire iron consisting of a small shovel used to scoop coals or ashes in a fireplace
+69970,shovel,a hand tool for lifting loose material; consists of a curved container or scoop and a handle
+69971,shovel shovelful spadeful,the quantity a shovel can hold
+69972,shovel_board shove-halfpenny shove-ha'penny,a game in which coins or discs are slid by hand across a board toward a mark
+69973,shovel_hat,a stiff broad-brimmed hat with the brim turned up at the sides and projecting in front; worn by some clergymen in Britain
+69974,shoveler shoveller,a worker who shovels; "a shoveler of coal"
+69975,shoveler shoveller broadbill Anas_clypeata,freshwater duck of the northern hemisphere having a broad flat bill
+69976,shovelhead bonnethead bonnet_shark Sphyrna_tiburo,small harmless hammerhead having a spade-shaped head; abundant in bays and estuaries
+69977,show,a social event involving a public performance or entertainment; "they wanted to see some of the shows on Broadway"
+69978,show,the act of publicly exhibiting or entertaining; "a remarkable show of skill"
+69979,show-stopper showstopper,something that is strikingly attractive or has great popular appeal; "she has a show-stopper of a smile"; "the brilliant orange flowers against the green foliage were a showstopper"
+69980,show-stopper showstopper stopper,an act so striking or impressive that the show must be delayed until the audience quiets down
+69981,show_bill show_card theatrical_poster,a poster advertising a show or play
+69982,show_time,the point in time at which an entertainment (a movie or television show etc.) is scheduled to begin
+69983,show_trial,a trial held for show; the guilt of the accused person has been decided in advance
+69984,showboat,a river steamboat on which theatrical performances could be given (especially on the Mississippi River)
+69985,showcase show_window,a setting in which something can be displayed to best effect; "it was a showcase for democracy in Africa"
+69986,shower,a party of friends assembled to present gifts (usually of a specified kind) to a person; "her friends organized a baby shower for her when she was expecting"
+69987,shower,a plumbing fixture that sprays water over you; "they installed a shower in the bathroom"
+69988,shower cascade,a sudden downpour (as of tears or sparks etc) likened to a rain shower; "a little shower of rose petals"; "a sudden cascade of sparks"
+69989,shower rain_shower,a brief period of precipitation; "the game was interrupted by a brief shower"
+69990,shower shower_bath,washing yourself by standing upright under water sprayed from a nozzle; "he took a shower after the game"
+69991,shower_cap,a tight cap worn to keep hair dry while showering
+69992,shower_curtain,a curtain that keeps water from splashing out of the shower area
+69993,shower_room,a room with several showers
+69994,shower_stall shower_bath,booth for washing yourself, usually in a bathroom
+69995,showerhead,a perforated nozzle that showers water on a bather
+69996,showjumping stadium_jumping,riding horses in competitions over set courses to demonstrate skill in jumping over obstacles
+69997,showman,a person skilled at making effective presentations
+69998,showman promoter impresario,a sponsor who books and stages public entertainments
+69999,showmanship,the ability to present something (especially theatrical shows) in an attractive manner
+70000,showplace,a place that is frequently exhibited and visited for its historical interest or natural beauty
+70001,showroom salesroom saleroom,an area where merchandise (such as cars) can be displayed; "in Britain a showroom is called a salesroom"
+70002,showy_daisy Erigeron_speciosus,plant having branching leafy stems each branch with an especially showy solitary flower head with many narrow pink or lavender or white rays; northwestern United States mountains
+70003,showy_goldenrod,a variety of goldenrod
+70004,showy_milkweed Asclepias_speciosa,milkweed of southern North America having large starry purple and pink flowers
+70005,showy_orchis purple_orchis purple-hooded_orchis Orchis_spectabilis,North American orchid having a spike of violet-purple flowers mixed with white; sepals and petals form a hood
+70006,showy_sunflower Helianthus_laetiflorus,tall rough-leaved perennial with a few large flower heads; central United States
+70007,shrapnel,shell containing lead pellets that explodes in flight
+70008,shred scintilla whit iota tittle smidgen smidgeon smidgin smidge,a tiny or scarcely detectable amount
+70009,shredder,a device that shreds documents (usually in order to prevent the wrong people from reading them)
+70010,shrew shrewmouse,small mouselike mammal with a long snout; related to moles
+70011,shrew termagant,a scolding nagging bad-tempered woman
+70012,shrew_mole,slender mole having a long snout and tail
+70013,shrewdness astuteness perspicacity perspicaciousness,intelligence manifested by being astute (as in business dealings)
+70014,shrewishness,a nature given to nagging or scolding
+70015,shrift,the act of being shriven
+70016,shrike,any of numerous Old World birds having a strong hooked bill that feed on smaller animals
+70017,shrilling,a continuing shrill noise; "the clash of swords and the shrilling of trumpets"--P. J. Searles
+70018,shrillness,the quality of being sharp or harsh to the senses; "the shrillness of her hair color"
+70019,shrillness stridence stridency,having the timbre of a loud high-pitched sound
+70020,shrimp,small slender-bodied chiefly marine decapod crustaceans with a long tail and single pair of pincers; many species are edible
+70021,shrimp_Newburg,shrimp in Newburg sauce usually served in a rice ring
+70022,shrimp_butter,butter blended with chopped shrimp or seasoned with essence from shrimp shells
+70023,shrimp_cocktail,a cocktail of cold cooked shrimp and a sauce
+70024,shrimper,a vessel engaged in shrimping
+70025,shrimpfish shrimp-fish,slender tropical shallow-water East Indian fish covered with transparent plates
+70026,shrine,a place of worship hallowed by association with some sacred thing or person
+70027,shrink-wrap,the clinging transparent plastic film that is used to shrinkwrap something
+70028,shrink-wrapped_software,software on CD-ROMs that are boxed and shrink-wrapped and sold in stores (implying a widely supported standard platform)
+70029,shrinkage,the amount by which something shrinks
+70030,shrinking,the act of becoming less
+70031,shrinking shrinkage,process or result of becoming less or smaller; "the material lost 2 inches per yard in shrinkage"
+70032,shroud,a line that suspends the harness from the canopy of a parachute
+70033,shrub bush,a low woody perennial plant usually having several major stems
+70034,shrubbery,an area where a number of shrubs are planted
+70035,shrubbery,a collection of shrubs growing together
+70036,shrubby_St_John's_wort Hypericum_prolificum Hypericum_spathulatum,stiff shrub having oblong entire leaves and dense cymes of yellow flowers
+70037,shrubby_penstemon lowbush_penstemon Penstemon_fruticosus,low bushy plant with large showy pale lavender or blue-violet flowers in narrow clusters at ends of stems
+70038,shrublet,dwarf shrub
+70039,shrug,a gesture involving the shoulders
+70040,shtik schtik shtick schtick,(Yiddish) a contrived and often used bit of business that a performer uses to steal attention; "play it straight with no shtik"
+70041,shtik schtik shtick schtick,(Yiddish) a prank or piece of clowning; "his shtik made us laugh"
+70042,shtik schtik shtick schtick,(Yiddish) a devious trick; a bit of cheating; "how did you ever fall for a shtik like that?"
+70043,shtik shtick schtik schtick,(Yiddish) a little; a piece; "give him a shtik cake"; "he's a shtik crazy"; "he played a shtik Beethoven"
+70044,shtikl shtickl schtikl schtickl,a really little shtik; "have a shtikl cake"
+70045,shucks,an expression of disappointment or irritation
+70046,shuffle shuffling make,the act of mixing cards haphazardly
+70047,shuffleboard shovelboard,a game in which players use long sticks to shove wooden disks onto the scoring area marked on a smooth surface
+70048,shuffler,the card player who shuffles the cards
+70049,shuffler,someone who walks without raising the feet
+70050,shufti,a quick look around (originally military slang); "take a shufti while you're out there"
+70051,shunt,a passage by which a bodily fluid (especially blood) is diverted from one channel to another; "an arteriovenus shunt"
+70052,shunt,implant consisting of a tube made of plastic or rubber; for draining fluids within the body
+70053,shunt electrical_shunt bypass,a conductor having low resistance in parallel with another device to divert a fraction of the current
+70054,shunter,a small locomotive used to move cars around but not to make trips
+70055,shuteye shut-eye,informal term for sleep
+70056,shutout skunk,a defeat in a game where one side fails to score
+70057,shutter,a mechanical device on a camera that opens and closes to control the time of a photographic exposure
+70058,shutter,a hinged blind for a window
+70059,shutterbug,a photography enthusiast
+70060,shutting closing,the act of closing something
+70061,shutting_post,the gatepost against which the gate closes
+70062,shuttle,public transport that consists of a bus or train or airplane that flies back and forth between two points
+70063,shuttle,bobbin that passes the weft thread between the warp threads
+70064,shuttle_bus,shuttle consisting of a bus that travels between two points
+70065,shuttle_diplomacy,international negotiations conducted by a mediator who frequently flies back and forth between the negotiating parties; "Kissinger's shuttle diplomacy in the Middle East"
+70066,shuttle_helicopter,a helicopter that shuttles back and forth
+70067,shuttlecock bird birdie shuttle,badminton equipment consisting of a ball of cork or rubber with a crown of feathers
+70068,shy,a quick throw; "he gave the ball a shy to the first baseman"
+70069,shy_person shrinking_violet,someone who shrinks from familiarity with others
+70070,shyness,a feeling of fear of embarrassment
+70071,shyster pettifogger,a person (especially a lawyer or politician) who uses unscrupulous or unethical methods
+70072,sial,the granitelike rocks that form the outermost layer of the earth's crust; rich in silicon and aluminum
+70073,sialadenitis,inflammation of the salivary glands
+70074,sialolith salivary_calculus,a stone formed in the salivary gland
+70075,siamang Hylobates_syndactylus Symphalangus_syndactylus,large black gibbon of Sumatra having the 2nd and 3rd toes partially united by a web
+70076,siamese siamese_connection,an inlet with two or more couplings to which a hose can be attached so that fire engines can pump water into the sprinkler system of a building
+70077,sibilant sibilant_consonant,a consonant characterized by a hissing sound (like s or sh)
+70078,sibilation assibilation,pronunciation with a sibilant (hissing or whistling) sound
+70079,sibling sib,a person's brother or sister
+70080,sibyl,a woman who tells fortunes
+70081,sibyl,(ancient Rome) a woman who was regarded as an oracle or prophet
+70082,sick,people who are sick; "they devote their lives to caring for the sick"
+70083,sick_bag sickbag,a bag provided on an airplane for passengers who are suffering from airsickness and need to vomit
+70084,sick_benefit sickness_benefit,money paid (by the government) to someone who is too ill to work
+70085,sick_call sick_parade,the daily military formation at which individuals report to the medical officer as sick
+70086,sick_headache,a headache accompanied by nausea
+70087,sick_joke,a joke in bad taste
+70088,sick_leave,a leave of absence from work because of illness
+70089,sick_list,a list of those who are ill (e.g. on a warship or in a regiment etc)
+70090,sick_pay,wages paid to an employee who is on sick leave
+70091,sick_person diseased_person sufferer,a person suffering from an illness
+70092,sickbay sick_berth,(nautical) a room for the treatment of the sick or injured (as on a ship)
+70093,sickbed,the bed on which a sick person lies
+70094,sickle reaping_hook reap_hook,an edge tool for cutting grass or crops; has a curved blade and a short handle
+70095,sickle-cell_anemia sickle-cell_anaemia sickle-cell_disease crescent-cell_anemia crescent-cell_anaemia drepanocytic_anemia drepanocytic_anaemia,a congenital form of anemia occurring mostly in blacks; characterized by abnormal blood cells having a crescent shape
+70096,sickle_alfalfa sickle_lucerne sickle_medick Medicago_falcata,European medic naturalized in North America having yellow flowers and sickle-shaped pods
+70097,sickle_cell,an abnormal red blood cell that has a crescent shape and an abnormal form of hemoglobin
+70098,sickle_feather,one of the long curved tail feathers of a rooster
+70099,sicklepod Arabis_Canadensis,North American rock cress having very long curved pods
+70100,sicklepod Senna_obtusifolia Cassia_tora,cosmopolitan tropical herb or subshrub with yellow flowers and slender curved pods; a weed; sometimes placed in genus Cassia
+70101,sickleweed_golden_aster,a variety of golden aster
+70102,sickness,defectiveness or unsoundness; "drugs have become a sickness they cannot cure"; "a great sickness of his judgment"
+70103,sickroom,a room to which a sick person is confined
+70104,side,a place within a region identified relative to a center or reference location; "they always sat on the right side of the church"; "he never left my side"
+70105,side,a line segment forming part of the perimeter of a plane figure; "the hypotenuse of a right triangle is always the longest side"
+70106,side,one of two or more contesting groups; "the Confederate side was prepared to attack"
+70107,side,a family line of descent; "he gets his brains from his father's side"
+70108,side,an aspect of something (as contrasted with some other implied aspect); "he was on the heavy side"; "he is on the purchasing side of the business"; "it brought out his better side"
+70109,side,either the left or right half of a body; "he had a pain in his side"
+70110,side,an extended outer surface of an object; "he turned the box over to examine the bottom side"; "they painted all four sides of the house"
+70111,side face,a surface forming part of the outside of an object; "he examined all sides of the crystal"; "dew dripped from the face of the leaf"; "they travelled across the face of the continent"
+70112,side position,an opinion that is held in opposition to another in an argument or dispute; "there are two sides to every question"
+70113,side side_of_meat,a lengthwise dressed half of an animal's carcass used for food
+70114,side-blotched_lizard sand_lizard Uta_stansburiana,one of the most abundant lizards in the arid western United States
+70115,side-glance side-look,a glance sideways; "she shot him an impatient side-glance"
+70116,side-wheeler,a paddle steamer having a paddle wheel on each side
+70117,side_chapel,a small chapel off the side aisle of a church
+70118,side_dish side_order entremets,a dish that is served with, but is subordinate to, a main course
+70119,side_door side_entrance,an exterior door at one side of a building
+70120,side_effect,a secondary and usually adverse effect of a drug or therapy; "severe headaches are one of the side effects of the drug"
+70121,side_effect fallout,any adverse and unwanted secondary effect; "a strategy to contain the fallout from the accounting scandal"
+70122,side_judge,a football official
+70123,side_of_beef,dressed half of a beef carcass
+70124,side_of_pork,dressed half of a hog carcass
+70125,side_pocket,a pocket on the side of a billiard table
+70126,side_road,a minor road branching off of a main road
+70127,side_street,a street intersecting a main street and terminating there
+70128,side_view,a view from the side of something
+70129,side_yard,the grounds at either side of a house
+70130,sidebar,(law) a courtroom conference between the lawyers and the judge that is held out of the jury's hearing
+70131,sidebar,a short news story presenting sidelights on a major story
+70132,sideboard,a removable board fitted on the side of a wagon to increase its capacity
+70133,sideboard,a board that forms part of the side of a bed or crib
+70134,sideburn burnside mutton_chop side-whiskers,facial hair that has grown down the side of a man's face in front of the ears (especially when the rest of the beard is shaved off)
+70135,sidecar,a cocktail made of orange liqueur with lemon juice and brandy
+70136,sidecar,conveyance consisting of a small carrier attached to the side of a motorcycle
+70137,sidelight running_light,light carried by a boat that indicates the boat's direction; vessels at night carry a red light on the port bow and a green light on the starboard bow
+70138,sideline,an auxiliary line of merchandise
+70139,sideline out_of_bounds,a line that marks the side boundary of a playing field
+70140,sidereal_day day,the time for one complete rotation of the earth relative to a particular star, about 4 minutes shorter than a mean solar day
+70141,sidereal_hour,1/24 of a sidereal day
+70142,sidereal_month,period between successive conjunctions with a star, 27.322 days
+70143,sidereal_time,measured by the diurnal motion of stars
+70144,sidereal_year,the time for the earth to make one complete revolution around the sun, relative to the fixed stars
+70145,siderite,a meteorite consisting principally of nickel and iron
+70146,siderite chalybite,iron ore in the form of ferrous carbonate
+70147,sideroblast,an erythroblast having granules of ferritin
+70148,sideroblastic_anemia sideroblastic_anaemia siderochrestic_anemia siderochrestic_anaemia,refractory anemia characterized by sideroblasts in the bone marrow
+70149,siderocyte,an abnormal red blood cell containing granules of iron not bound in hemoglobin
+70150,sideropenia,a deficiency of iron; results from inadequate iron in the diet or from hemorrhage
+70151,siderosis,fibrosis of the lung caused by iron dust; occurs among welders and other metal workers
+70152,sidesaddle,a saddle for a woman; rider sits with both feet on the same side of the horse
+70153,sideshow,a subordinate incident of little importance relative to the main event; "instruction is not an educational sideshow"
+70154,sideshow,a minor show that is part of a larger one (as at the circus)
+70155,sidesman,(Church of England) an assistant to the churchwarden; collects offerings of money in the church
+70156,sidestep,a step to one side (as in boxing or dancing)
+70157,sidestroke,a swimming stroke in which the arms move forward and backward while the legs do a scissors kick
+70158,sideswipe,a glancing blow from or on the side of something (especially motor vehicles)
+70159,sidewalk pavement,walk consisting of a paved area for pedestrians; usually beside a street or roadway
+70160,sidewall,the side of an automobile tire; "the car had white sidewalls"
+70161,sidewall,a wall that forms the side of a structure
+70162,sidewinder,air-to-air missile with infrared homing device
+70163,sidewinder horned_rattlesnake Crotalus_cerastes,small pale-colored desert rattlesnake of southwestern United States; body moves in an s-shaped curve
+70164,siding,material applied to the outside of a building to make it weatherproof
+70165,siding railroad_siding turnout sidetrack,a short stretch of railroad track used to store rolling stock or enable trains on the same line to pass
+70166,siege besieging beleaguering military_blockade,the action of an armed force that surrounds a fortified place and isolates it while continuing to attack
+70167,sienna,an earth color containing ferric oxides; used as a pigment
+70168,sierra,a range of mountains (usually with jagged peaks and irregular outline)
+70169,sierra Scomberomorus_sierra,a Spanish mackerel of western North America
+70170,siesta,a nap in the early afternoon (especially in hot countries)
+70171,sieva_bean butter_bean butter-bean_plant lima_bean Phaseolus_lunatus,bush bean plant cultivated especially in southern United States having small flat edible seeds
+70172,sieva_bean butter_bean butterbean civet_bean,small flat green bean similar to lima beans
+70173,sieve screen,a strainer for separating lumps from powdered material or grading particles
+70174,sieve_tube,tube formed by cells joined end-to-end through which nutrients flow in flowering plants and brown algae
+70175,sifter,a household sieve (as for flour)
+70176,sigeh,a Shiite tradition of temporary marriage permitted in Iran that allows a couple to specify the terms of their relationship; can last from a few minutes to 99 years; "sigeh legally wraps premarital sex in an Islamic cloak"
+70177,sigh,a sound like a person sighing; "she heard the sigh of the wind in the trees"
+70178,sigh suspiration,an utterance made by exhaling audibly
+70179,sight,anything that is seen; "he was a familiar sight on the television"; "they went to Paris to see the sights"
+70180,sight,a range of mental vision; "in his sight she could do no wrong"
+70181,sight,an instance of visual perception; "the sight of his wife brought him back to reality"; "the train was an unexpected sight"
+70182,sight ken,the range of vision; "out of sight of land"
+70183,sight vision visual_sense visual_modality,the ability to see; the visual faculty
+70184,sight_draft sight_bill,a draft payable on presentation
+70185,sight_gag visual_joke,a joke whose effect is achieved by visual means rather than by speech (as in a movie)
+70186,sight_setting,the adjustment of a gunsight for elevation and windage on a particular range under favorable light conditions
+70187,sighting,the act of observing; "several sightings of enemy troops were reported"
+70188,sightreader,a performer who reads without preparation or prior acquaintance (as in music)
+70189,sights,an optical instrument for aiding the eye in aiming, as on a firearm or surveying instrument
+70190,sightseeing rubber-necking,going about to look at places of interest
+70191,sightseer excursionist tripper rubberneck,a tourist who is visiting sights of interest
+70192,sigma,the 18th letter of the Greek alphabet
+70193,sigmoid_colon sigmoid_flexure,the s-shaped curve between the descending colon and the rectum
+70194,sigmoid_sinus sinus_sigmoideus,an S-shaped dural sinus on the temporal and occipital bones
+70195,sigmoid_vein vena_sigmoideus,tributaries of the inferior mesenteric vein; drains the sigmoid colon
+70196,sigmoidectomy,surgical removal of part or all of the sigmoid colon (usually to remove a malignant tumor)
+70197,sigmoidoscope flexible_sigmoidoscope,an endoscope (a flexible fiberoptic probe) for examining the sigmoid colon
+70198,sigmoidoscopy flexible_sigmoidoscopy,visual examination (with a sigmoidoscope) of the lower third of the colon in a search for polyps
+70199,sign,(medicine) any objective evidence of the presence of a disorder or disease; "there were no signs of asphyxiation"
+70200,sign,a fundamental linguistic unit linking a signifier to that which is signified; "The bond between the signifier and the signified is arbitrary"--de Saussure
+70201,sign,a gesture that is part of a sign language
+70202,sign,a character indicating a relation between quantities; "don't forget the minus sign"
+70203,sign,a public display of a message; "he posted signs in all the shop windows"
+70204,sign mark,a perceptible indication of something not immediately apparent (as a visible clue that something has happened); "he showed signs of strain"; "they welcomed the signs of spring"
+70205,sign_industry,an industry that produces signs
+70206,sign_language signing,language expressed by visible hand gestures
+70207,sign_manual,the signature of a sovereign on an official document
+70208,sign_of_the_cross,a gesture with the right hand moving to form a cross; used by Catholics as a profession of faith
+70209,sign_of_the_zodiac star_sign sign mansion house planetary_house,(astrology) one of 12 equal areas into which the zodiac is divided
+70210,sign_painter,someone who paints signs and billboards etc.
+70211,signage,signs collectively (especially commercial signs or posters); "there will be signage displayed at each post"
+70212,signal,an electric quantity (voltage or current or field strength) whose modulation represents coded information about the source from which it comes
+70213,signal,any incitement to action; "he awaited the signal to start"; "the victory was a signal for wild celebration"
+70214,signal signaling sign,any nonverbal action or gesture that encodes a message; "signals from the boat suddenly stopped"
+70215,signal-to-noise_ratio signal-to-noise signal/noise_ratio signal/noise S/N,the ratio of signal intensity to noise intensity
+70216,signal_box signal_tower,a building from which signals are sent to control the movements of railway trains
+70217,signal_detection detection,the detection that a signal is being received
+70218,signal_fire signal_light,a fire set as a signal
+70219,signal_level,the amplitude level of the desired signal
+70220,signaler signaller,someone who communicates by signals
+70221,signaling_device,a device used to send signals
+70222,signalization signalisation,a conspicuous indication
+70223,signalman,a railroad employee in charge of signals and point in a railroad yard
+70224,signals_intelligence SIGINT,intelligence information gathered from communications intelligence or electronics intelligence or telemetry intelligence
+70225,signature,your name written in your own handwriting
+70226,signature,a sheet with several pages printed on it; it folds to page size and is bound with other signatures to form a book
+70227,signature signature_tune theme_song,a melody used to identify a performer or a dance band or radio/tv program
+70228,signature_recognition,biometric identification by automatically scanning a person's signature and matching it electronically against a library of known signatures
+70229,signboard sign,structure displaying a board on which advertisements can be posted; "the highway was lined with signboards"
+70230,signer,someone who can use sign language to communicate
+70231,signer signatory,someone who signs and is bound by a document
+70232,signet,a seal (especially one used to mark documents officially)
+70233,signet_ring seal_ring,a ring bearing a signet
+70234,significance,the quality of being significant; "do not underestimate the significance of nuclear power"
+70235,significance import implication,a meaning that is not expressly stated but can be inferred; "the significance of his remark became clear only later"; "the expectation was spread both by word and by implication"
+70236,significant_digit significant_figure,any digit of a number that is known with certainty; any digit of a number beginning with the leftmost non-zero digit and ending with the rightmost non-zero digit (or a zero considered to be the exact value); "he calculated the answer to four significant figures"
+70237,signor signior,used as an Italian courtesy title; can be prefixed to the name or used separately
+70238,signora,an Italian title of address equivalent to Mrs. when used before a name
+70239,signore,an Italian title of respect for a man; equivalent to the English `sir'; used separately (not prefixed to his name)
+70240,signorina,an Italian courtesy title for an unmarried woman; equivalent to `Miss', it is either used alone or before a name
+70241,signpost guidepost,a post bearing a sign that gives directions or shows the way
+70242,silage ensilage,fodder harvested while green and kept succulent by partial fermentation as in a silo
+70243,sild,any of various young herrings (other than brislings) canned as sardines in Norway
+70244,sildenafil sildenafil_citrate Viagra,virility drug (trade name Viagra) used to treat erectile dysfunction in men
+70245,silence,the state of being silent (as when no one is speaking); "there was a shocked silence"; "he gestured for silence"
+70246,silence quiet,the absence of sound; "he needed silence in order to sleep"; "the street was quiet"
+70247,silencer,short tube attached to the muzzle of a gun that deadens the sound of firing
+70248,silencer muffler,a tubular acoustic device inserted in the exhaust system that is designed to reduce noise
+70249,silene campion catchfly,any plant of the genus Silene
+70250,silent_butler,a small receptacle with a handle and a hinged lid; used for collecting crumbs or ashes
+70251,silent_movie silent_picture silents,a movie without a soundtrack
+70252,silent_partner sleeping_partner,a partner (who usually provides capital) whose association with the enterprise is not public knowledge
+70253,silent_treatment,an aloof refusal to speak to someone you know
+70254,silenus,any of the minor woodland deities who were companions of Dionysus (similar to the satyrs)
+70255,silesia,a sturdy twill-weave cotton fabric; used for pockets and linings
+70256,silex,a pure form of finely ground silica
+70257,silhouette,an outline of a solid object (as cast by its shadow)
+70258,silhouette,a drawing of the outline of an object; filled in with some uniform color
+70259,silica silicon_oxide silicon_dioxide,a white or colorless vitreous insoluble solid (SiO2); various forms occur widely in the earth's crust as quartz or cristobalite or tridymite or lechatelierite
+70260,silica_gel,a porous form of silica that is highly absorbent
+70261,silicate,a salt or ester derived from silicic acid
+70262,silicic_acid,a jellylike substance (hydrated silica)
+70263,silicide,any of various compounds of silicon with a more electropositive element or radical
+70264,silicle,short broad silique occurring in some cruciferous plants
+70265,silicon Si atomic_number_14,a tetravalent nonmetallic element; next to oxygen it is the most abundant element in the earth's crust; occurs in clay and feldspar and granite and quartz and sand; used as a semiconductor in transistors
+70266,silicon_bronze,a bronze with 2-3% silicon that is resistant to corrosion
+70267,silicon_carbide,an extremely hard blue-black crystalline compound (SiC) used as an abrasive and a heat refractory material; crystals of silicon carbide can be used as semiconductors
+70268,silicone silicone_polymer,any of a large class of siloxanes that are unusually stable over a wide range of temperatures; used in lubricants and adhesives and coatings and synthetic rubber and electrical insulation
+70269,silicone_resin,a polymeric silicone compound
+70270,silicone_rubber,made from silicone elastomers; retains flexibility resilience and tensile strength over a wide temperature range
+70271,silicosis,a lung disease caused by inhaling particles of silica or quartz or slate
+70272,silique siliqua,narrow elongated seed capsule peculiar to the family Cruciferae
+70273,silk,animal fibers produced by silkworms and other larvae that spin cocoons and by most spiders
+70274,silk,a fabric made from the fine threads produced by certain insect larvae
+70275,silk_gland serictery sericterium,silk-producing gland of insects (especially of a silkworm) or spiders
+70276,silk_oak,any of several Australian timber trees having usually fernlike foliage and mottled wood used in cabinetry and veneering
+70277,silk_tree Albizia_julibrissin Albizzia_julibrissin,attractive domed or flat-topped Asiatic tree having bipinnate leaves and flowers with long silky stamens
+70278,silk_vine Periploca_graeca,deciduous climber for arches and fences having ill-scented but interesting flowers and poisonous yellow fruits; cultivated for its dark shining foliage; southeastern Europe to Asia Minor
+70279,silkiness sleekness,the smooth feel of silk fabric
+70280,silks,the brightly colored garments of a jockey; emblematic of the stable
+70281,silkscreen silk_screen_print serigraph,a print made using a stencil process in which an image or design is superimposed on a very fine mesh screen and printing ink is squeegeed onto the printing surface through the area of the screen that is not covered by the stencil
+70282,silkworm,the commercially bred hairless white caterpillar of the domestic silkworm moth which spins a cocoon that can be processed to yield silk fiber; the principal source of commercial silk
+70283,silkworm giant_silkworm wild_wilkworm,larva of a saturniid moth; spins a large amount of strong silk in constructing its cocoon
+70284,silkworm_seed,eggs of a silkworm
+70285,silky_anteater two-toed_anteater Cyclopes_didactylus,squirrel-sized South American toothless anteater with long silky golden fur
+70286,silky_cornel silky_dogwood Cornus_amomum,shrub of eastern North America having purplish stems and blue fruit
+70287,silky_dogwood Cornus_obliqua,shrub of eastern North America closely resembling silky cornel
+70288,silky_oak Grevillea_robusta,medium to tall fast-growing tree with orange flowers and feathery bipinnate leaves silky-hairy beneath; eastern Australia
+70289,silky_pocket_mouse Perognathus_flavus,small pale yellowish soft-furred rodent of southwestern United States and Mexico
+70290,silky_tamarin Leontocebus_rosalia,golden South American monkey with long soft hair forming a mane
+70291,silky_terrier Sydney_silky,Australian breed of toy dogs having a silky blue coat
+70292,silky_wisteria Wisteria_venusta,a wisteria of China having white flowers
+70293,sill,(geology) a flat (usually horizontal) mass of igneous rock between two layers of older sedimentary rock
+70294,sill,structural member consisting of a continuous horizontal timber forming the lowest member of a framework or supporting structure
+70295,silly,a word used for misbehaving children; "don't be a silly"
+70296,silly_season,a time usually late summer characterized by exaggerated news stories about frivolous matters for want of real news
+70297,silo,military installation consisting of an underground structure where ballistic missiles can be stored and fired
+70298,silo,a cylindrical tower used for storing silage
+70299,siloxane,any of a large class of compounds that have alternate silicon and oxygen atoms
+70300,silt,mud or clay or small rocks deposited by a river or lake
+70301,siltstone,a fine-grained sandstone of consolidated silt
+70302,silurid silurid_fish,Old World freshwater catfishes having naked skin and a long anal fin more or less merged with the eellike caudal fin
+70303,silva sylva,the forest trees growing in a country or region
+70304,silver,coins made of silver
+70305,silver Ag atomic_number_47,a soft white precious univalent metallic element having the highest electrical and thermal conductivity of any metal; occurs in argentite and in free form; used in coins and jewelry and tableware and photography
+70306,silver-bell_tree silverbell_tree snowdrop_tree opossum_wood Halesia_carolina Halesia_tetraptera,medium-sized tree of West Virginia to Florida and Texas
+70307,silver_age,(classical mythology) the second age of the world, characterized by opulence and irreligion; by extension, a period secondary in achievement to a golden age
+70308,silver_ash,any of various timber trees of the genus Flindersia
+70309,silver_beech Nothofagus_menziesii,New Zealand beech with usually pale silvery bark
+70310,silver_bell,any of various deciduous trees of the genus Halesia having white bell-shaped flowers
+70311,silver_birch common_birch European_white_birch Betula_pendula,European birch with silvery white peeling bark and markedly drooping branches
+70312,silver_bromide,a bromide that darkens when exposed to light; used in making photographic emulsions
+70313,silver_bullet,a simple guaranteed solution for a difficult problem; "no silver bullet can make the world safe from terrorism"
+70314,silver_certificate,formerly a bank note issued by the United States Treasury and redeemable in silver
+70315,silver_chloride,a chloride used chiefly in the manufacture of photographic emulsions
+70316,silver_cord,the emotional bond between a mother and her offspring
+70317,silver_dollar cartwheel,a dollar made of silver
+70318,silver_fern Pityrogramma_argentea,fern of southern tropical Africa having fronds with white undersides
+70319,silver_fern Pityrogramma_calomelanos,tropical American fern having fronds with white undersides
+70320,silver_fir,any of various true firs having leaves white or silvery white beneath
+70321,silver_fox,red fox in the color phase when its pelt is tipped with white
+70322,silver_grass,of Australia and New Zealand
+70323,silver_hake Merluccius_bilinearis whiting,found off Atlantic coast of North America
+70324,silver_iodide,an iodide that is used in photography, in seeding clouds to make rain, and in medicine
+70325,silver_jenny Eucinostomus_gula,silvery mojarra found along sandy shores of the western Atlantic
+70326,silver_jubilee,an anniversary celebrating the passage of 25 years
+70327,silver_lace_vine China_fleece_vine Russian_vine Polygonum_aubertii,twining perennial vine having racemes of fragrant greenish flowers; western China to Russia
+70328,silver_lime silver_linden Tilia_tomentosa,large tree native to eastern Europe and Asia Minor having leaves with white tomentum on the under side; widely cultivated as an ornamental
+70329,silver_lining bright_side,a consoling aspect of a difficult situation; "every cloud has a silver lining"; "look on the bright side of it"
+70330,silver_maple Acer_saccharinum,a common North American maple tree; five-lobed leaves are light green above and silvery white beneath; source of hard close-grained but brittle light-brown wood
+70331,silver_medal silver,a trophy made of silver (or having the appearance of silver) that is usually awarded for winning second place in a competition
+70332,silver_mine,a mine where silver ore is dug
+70333,silver_nitrate,a nitrate used in making photographic emulsions; also used in medicine as a cautery and as a topical antibacterial agent
+70334,silver_oak Grevillela_parallela,small slender tree with usually entire grey-green pendulous leaves and white or cream-colored flowers; northern Australia
+70335,silver_perch mademoiselle Bairdiella_chrysoura,small silvery drumfish often mistaken for white perch; found along coasts of United States from New York to Mexico
+70336,silver_plate,tableware that is plated with silver
+70337,silver_plate,a thin layer of silver deposited on something
+70338,silver_protein,a colloid preparation of protein (albumin or gelatin) and silver oxide; used in aqueous solution as an antibacterial agent
+70339,silver_quandong,pale easily worked timber from the quandong tree
+70340,silver_sage silver_sagebrush grey_sage gray_sage Seriphidium_canum Artemisia_cana,low much-branched perennial of western United States having silvery leaves; an important browse and shelter plant
+70341,silver_salmon coho_salmon coho cohoe,fatty pinkish flesh of small salmon caught in the Pacific and Great Lakes
+70342,silver_screen,the film industry
+70343,silver_solder,a solder that contains silver
+70344,silver_spoon old_money,the inherited wealth of established upper-class families; "he was born with a silver spoon in his mouth"; "she is the daughter of old money from Massachusetts"
+70345,silver_standard,a monetary standard under which the basic unit of currency is defined by a stated quantity of silver
+70346,silver_tree Leucadendron_argenteum,small South African tree with long silvery silky foliage
+70347,silver_tree Tarrietia_argyrodendron,Australian timber tree
+70348,silver_tree_fern sago_fern black_tree_fern Cyathea_medullaris,a showy tree fern of New Zealand and Australia having a crown of pinnated fronds with whitish undersides
+70349,silver_wattle mimosa Acacia_dealbata,evergreen Australasian tree having white or silvery bark and young leaves and yellow flowers
+70350,silver_wedding_anniversary,the 25th wedding anniversary
+70351,silver_whiting Menticirrhus_littoralis,a dull silvery whiting of southern Atlantic and Gulf Coasts of the United States
+70352,silver_willow silky_willow Salix_alba_sericea Salix_sericea,North American willow with greyish silky pubescent leaves that usually blacken in drying
+70353,silverback,an adult male gorilla with grey hairs across the back
+70354,silverberry silver_berry silverbush silver-bush Elaeagnus_commutata,deciduous unarmed North American shrub with silvery leaves and fruits
+70355,silverfish,a silvery variety of Carassius auratus
+70356,silverfish Lepisma_saccharina,silver-grey wingless insect found in houses feeding on book bindings and starched clothing
+70357,silverpoint,a drawing made on specially prepared paper with an instrument having a silver tip (15th and 16th centuries)
+70358,silverrod Solidago_bicolor,plant of eastern North America having creamy white flowers
+70359,silversides silverside,small fishes having a silver stripe along each side; abundant along the Atlantic coast of the United States
+70360,silversmith silverworker silver-worker,someone who makes or repairs articles of silver
+70361,silverspot,butterfly with silver spots on the underside of the hind wings
+70362,silversword Argyroxiphium_sandwicense,low-growing plant found only in volcanic craters on Hawaii having rosettes of narrow pointed silver-green leaves and clusters of profuse red-purple flowers on a tall stem
+70363,silvervine silver_vine Actinidia_polygama,ornamental vine of eastern Asia having yellow edible fruit and leaves with silver-white markings
+70364,silverware,tableware made of silver or silver plate or pewter or stainless steel
+70365,silverweed,any of various twining shrubs of the genus Argyreia having silvery leaves and showy purple flowers
+70366,silverweed goose-tansy goose_grass Potentilla_anserina,low-growing perennial having leaves silvery beneath; northern United States; Europe; Asia
+70367,silverwork,decorative work made of silver
+70368,silvery_spleenwort Deparia_acrostichoides Athyrium_thelypteroides,fern with elongate silvery outgrowths enclosing the developing spores
+70369,silvery_spleenwort glade_fern narrow-leaved_spleenwort Athyrium_pycnocarpon Diplazium_pycnocarpon,North American fern with narrow fronds on yellowish leafstalks
+70370,silvex,a herbicide that is effective in controlling woody plants but is toxic to animals
+70371,silviculture,the branch of forestry dealing with the development and care of forests
+70372,sima,rock that form the continuous lower layer of the earth's crust; rich in silicon and magnesium
+70373,simazine,a herbicide used to control weeds (especially among crops)
+70374,simian,an ape or monkey
+70375,similarity,the quality of being similar
+70376,similarity law_of_similarity,a Gestalt principle of organization holding that (other things being equal) parts of a stimulus field that are similar to each other tend to be perceived as belonging together as a unit
+70377,simile,a figure of speech that expresses a resemblance between things of different kinds (usually formed with `like' or `as')
+70378,simmer,temperature just below the boiling point; "the stew remained at a simmer for hours"
+70379,simnel,a crisp bread of fine white flour
+70380,simnel,a fruitcake (sometimes covered with almond paste) eaten at mid-Lent or Easter or Christmas
+70381,simony barratry,traffic in ecclesiastical offices or preferments
+70382,simoom simoon samiel,a violent hot sand-laden wind on the deserts of Arabia and North Africa
+70383,simper,a silly self-conscious smile
+70384,simperer,a smiler whose smile is silly and self-conscious and sometimes coy
+70385,simple,any herbaceous plant having medicinal properties
+70386,simple_closed_curve Jordan_curve,a closed curve that does not intersect itself
+70387,simple_eye stemma ocellus,an eye having a single lens
+70388,simple_fracture closed_fracture,an uncomplicated fracture in which the broken bones to not pierce the skin
+70389,simple_fruit bacca,an indehiscent fruit derived from a single ovary having one or many seeds within a fleshy wall or pericarp: e.g. grape; tomato; cranberry
+70390,simple_harmonic_motion,periodic motion in which the restoring force is proportional to the displacement
+70391,simple_interest,interest paid on the principal alone
+70392,simple_leaf,a leaf that is not divided into parts
+70393,simple_mastectomy,removal of a breast leaving the underlying muscles and the lymph nodes intact
+70394,simple_pendulum,a hypothetical pendulum suspended by a weightless frictionless thread of constant length
+70395,simple_phobia,any phobia (other than agoraphobia) associated with relatively simple well-defined stimuli
+70396,simple_pistil,consists of one carpel
+70397,simple_protein,a protein that yields only amino acids when hydrolyzed
+70398,simple_sentence,a sentence having no coordinate clauses or subordinate clauses
+70399,simpleton simple,a person lacking intelligence or common sense
+70400,simplicity simmpleness,absence of affectation or pretense
+70401,simplicity simpleness,the quality of being simple or uncompounded; "the simplicity of a crystal"
+70402,simplicity simpleness simple_mindedness,a lack of penetration or subtlety; "they took advantage of her simplicity"
+70403,simplification,an explanation that omits superfluous details and reduces complexity
+70404,simplification,elimination of superfluous details
+70405,simulacrum,an insubstantial or vague semblance
+70406,simulation,the act of imitating the behavior of some situation or some process by means of something suitably analogous (especially for the purpose of study or personnel training)
+70407,simulation computer_simulation,(computer science) the technique of representing the real world by a computer program; "a simulation should imitate the internal processes and not merely the results of the thing being simulated"
+70408,simulative_electronic_deception electronic_simulative_deception,actions to represent friendly notional or actual capabilities to mislead hostile forces
+70409,simulator,a machine that simulates an environment for the purpose of training or research
+70410,simulcast,a broadcast that is carried simultaneously by radio and television (or by FM and AM radio)
+70411,simultaneity simultaneousness,happening or existing or done at the same time
+70412,simultaneous_equations,a set of equations in two or more variables for which there are values that can satisfy all the equations simultaneously
+70413,simvastatin Zocor,an oral lipid-lowering medicine (trade name Zocor) administered to reduce blood cholesterol levels; recommended after heart attacks
+70414,sin,the 21st letter of the Hebrew alphabet
+70415,sin sinfulness wickedness,estrangement from god
+70416,sin sinning,an act that is regarded by theologians as a transgression of God's will
+70417,sincerity,the quality of being open and truthful; not deceitful or hypocritical; "his sincerity inspired belief"; "they demanded some proof of my sincerity"
+70418,sincerity unassumingness,a quality of naturalness and simplicity; "the simple sincerity of folk songs"
+70419,sinciput,the front part of the head or skull (including the forehead)
+70420,sine sin,ratio of the length of the side opposite the given angle to the length of the hypotenuse of a right-angled triangle
+70421,sine_curve sinusoid,the curve of y=sin x
+70422,sine_wave,a wave whose waveform resembles a sine curve
+70423,sinecure,a benefice to which no spiritual or pastoral duties are attached
+70424,sinecure,an office that involves minimal duties
+70425,singalong singsong,informal group singing of popular songs
+70426,singer vocalist vocalizer vocaliser,a person who sings
+70427,singing vocalizing,the act of singing vocal music
+70428,singing_voice,the musical quality of the voice while singing
+70429,single bingle,a base hit on which the batter stops safely at first base
+70430,single-breasted_jacket,a jacket having fronts that overlap only enough for a single row of buttons
+70431,single-breasted_suit,a suit having a single-breasted jacket
+70432,single-leaf single-leaf_pine single-leaf_pinyon Pinus_monophylla,pinon of southwestern United States having solitary needles and often many stems; important as a nut pine
+70433,single-mindedness,characterized by one unified purpose
+70434,single-reed_instrument single-reed_woodwind,a beating-reed instrument with a single reed (as a clarinet or saxophone)
+70435,single-rotor_helicopter,a helicopter having a single rotor
+70436,single-spacing,typing that does not leave lines blank
+70437,single_bed,a bed for one occupant
+70438,single_combat,a fight between two people; "in all armies there were officers who needed to prove their bravery by single combat"
+70439,single_crochet single_stitch,the basic crochet stitch
+70440,single_entry single-entry_bookkeeping,a simple bookkeeping system; transactions are entered in only one account
+70441,single_nucleotide_polymorphism SNP,(genetics) genetic variation in a DNA sequence that occurs when a single nucleotide in a genome is altered; SNPs are usually considered to be point mutations that have been evolutionarily successful enough to recur in a significant proportion of the population of a species
+70442,single_prop single-propeller_plane,a propeller plane with a single propeller
+70443,single_quote,a single quotation mark
+70444,single_supplement,a surcharge added to the cost per person when traveling alone
+70445,single_tax,a system of taxation in which a tax is levied on a single commodity (usually land)
+70446,singleness,the quality of concentrating on one central objective; "his singleness of purpose"
+70447,singleness straightforwardness,without hypocrisy; "the singleness of his motives could not be questioned"
+70448,singles,badminton played with one person on each side
+70449,singles,tennis played with one person on each side
+70450,singlestick fencing_stick backsword,a stick used instead of a sword for fencing
+70451,singlet vest undershirt,a collarless men's undergarment for the upper part of the body
+70452,singletary_pea Caley_pea rough_pea wild_winterpea Lathyrus_hirsutus,a weak-stemmed winter annual native to Mediterranean region for long established in southern United States; cultivated as a cover and pasture crop
+70453,singleton,a single object (as distinguished from a pair)
+70454,singleton,a set containing a single member
+70455,singleton,the playing card that is the only card in a suit held in a bridge hand as initially dealt
+70456,singsong,a regular and monotonous rising and falling intonation
+70457,singular singular_form,the form of a word that is used to denote a singleton
+70458,singular_matrix,a square matrix whose determinant is zero
+70459,singularity,strangeness by virtue of being remarkable or unusual
+70460,singularity uniqueness,the quality of being one of a kind; "that singularity distinguished him from all his companions"
+70461,sink,(technology) a process that acts to absorb or remove energy or a substance from a system; "the ocean is a sink for carbon dioxide"
+70462,sink,plumbing fixture consisting of a water basin fixed to a wall or floor and having a drainpipe
+70463,sinker,a weight that sinks (as to hold nets or fishing lines under water)
+70464,sinker,a pitch that curves downward rapidly as it approaches the plate
+70465,sinkhole sink swallow_hole,a depression in the ground communicating with a subterranean passage (especially in limestone) and formed by solution or by collapse of a cavern roof
+70466,sinking,a descent as through liquid (especially through water); "they still talk about the sinking of the Titanic"
+70467,sinking,a slow fall or decline (as for lack of strength); "after several hours of sinking an unexpected rally rescued the market"; "he could not control the sinking of his legs"
+70468,sinking sinking_feeling,a feeling caused by uneasiness or apprehension; "with a sinking heart"; "a sinking feeling in the pit of my stomach"
+70469,sinking_fund,a fund accumulated regularly in a separate account and used to redeem debt securities
+70470,sinking_spell,a temporary decline in health or value
+70471,sinner evildoer,a person who sins (without repenting)
+70472,sinopis sinopia sinoper,a red ocher formerly used as a pigment
+70473,sinuosity sinuousness,having curves; "he hated the sinuosity of mountain roads"
+70474,sinus,any of various air-filled cavities especially in the bones of the skull
+70475,sinus_headache,a headache resulting from congestion or infection in the paranasal sinuses
+70476,sinusitis,inflammation of one of the paranasal sinuses
+70477,sinusoid,tiny endothelium-lined passages for blood in the tissue of an organ
+70478,sinusoidal_projection Sanson-Flamsteed_projection,an equal-area map projection showing parallels and the equator as straight lines and other meridians as curved; used to map tropical latitudes
+70479,sip,a small drink
+70480,siphon syphon,a tube running from the liquid in a vessel to a lower level outside the vessel so that gravity forces the liquid through the tube
+70481,siphon syphon,a tubular organ in an aquatic animal (especially in mollusks) through which water can be taken in or expelled
+70482,siphonophore,a floating or swimming oceanic colony of polyps often transparent or showily colored
+70483,sipper,a drinker who sips
+70484,sir,term of address for a man
+70485,sirdar,an important person in India
+70486,sire,a title of address formerly used for a man of rank and authority
+70487,sire,male parent of an animal especially a domestic animal such as a horse
+70488,siren,a warning signal that is a loud wailing sound
+70489,siren,an acoustic device producing a loud often wailing sound as a signal or warning
+70490,siren,eellike aquatic North American salamander with small forelimbs and no hind limbs; have permanent external gills
+70491,siren_call siren_song,the enticing appeal of something alluring but potentially dangerous; "he succumbed to the siren call of the wilderness"
+70492,siris siris_tree Albizia_lebbeck Albizzia_lebbeck,large spreading Old World tree having large leaves and globose clusters of greenish-yellow flowers and long seed pods that clatter in the wind
+70493,sirloin,the portion of the loin (especially of beef) just in front of the rump
+70494,sirloin_steak,a cut of beef from the sirloin
+70495,sirloin_tip,a cut of beef from the upper end of the sirloin
+70496,sirrah,formerly a contemptuous term of address to an inferior man or boy; often used in anger
+70497,sisal Agave_sisalana,Mexican or West Indian plant with large fleshy leaves yielding a stiff fiber used in e.g. rope
+70498,sisal sisal_hemp,a plant fiber used for making rope
+70499,siskin Carduelis_spinus,small yellow-and-black Eurasian finch with a sharp beak
+70500,siskiyou_lewisia Lewisia_cotyledon,evergreen perennial having a dense basal rosette of long spatula-shaped leaves and panicles of pink or white-and-red-striped or pink-purple flowers; found on cliffs and in rock crevices in mountains of southwestern Oregon and northern California
+70501,sissoo sissu sisham Dalbergia_sissoo,East Indian tree whose leaves are used for fodder; yields a compact dark brown durable timber used in shipbuilding and making railroad ties
+70502,sissy pantywaist pansy milksop Milquetoast,a timid man or boy considered childish or unassertive
+70503,sister,a female person who is a fellow member of a sorority or labor union or other group; "none of her sisters would betray her"
+70504,sister sis,a female person who has the same parents as another person; "my sister married a musician"
+70505,sister-in-law,the sister of your spouse
+70506,sister_ship,a ship that is one of two or more similar ships built at the same time
+70507,sisterhood,a religious society of women who live together as sisters (especially an order of nuns)
+70508,sisterhood sistership,the kinship relation between a female offspring and the siblings
+70509,sisterhood sistership,an association or society of women who are linked together by a common religion or trade or interest
+70510,sit-down sit-down_strike,a strike in which workers refuse to leave the workplace until a settlement is reached
+70511,sit-in,a form of civil disobedience in which demonstrators occupy seats and refuse to move
+70512,sit-up,a stomach exercise in which a person sits up from a supine position without using the arms for leverage
+70513,sitar,a stringed instrument of India; has a long neck and movable frets; has 6 or 7 metal strings for playing and usually 13 resonating strings
+70514,sitar_player,a musician who plays the sitar
+70515,site land_site,the piece of land on which something is located (or is to be located); "a good site for the school"
+70516,site situation,physical position in relation to the surroundings; "the sites are determined by highly specific sequences of nucleotides"
+70517,site_visit,a visit in an official capacity to examine a site to determine its suitability for some enterprise
+70518,sitter,an organism (person or animal) that sits
+70519,sitting,a session as of a legislature or court
+70520,sitting,the act of assuming or maintaining a seated position; "he read the mystery at one sitting"
+70521,sitting posing,(photography) the act of assuming a certain position (as for a photograph or portrait); "he wanted his portrait painted but couldn't spare time for the sitting"
+70522,sitting_duck easy_mark,a defenseless victim
+70523,sitting_trot,the rider sits still in the saddle
+70524,situation,a complex or critical or unusual difficulty; "the dangerous situation developed suddenly"; "that's quite a situation"; "no human situation is simple"
+70525,situation position,a condition or position in which you find yourself; "the unpleasant situation (or position) of having to choose between two evils"; "found herself in a very fortunate situation"
+70526,situation state_of_affairs,the general state of things; the combination of circumstances at a given time; "the present international situation is dangerous"; "wondered how such a state of affairs had come about"; "eternal truths will be neither true nor eternal unless they have fresh meaning for every new social situation"- Franklin D.Roosevelt
+70527,situation_comedy sitcom,a humorous drama based on situations that might arise in day-to-day life
+70528,situation_comedy sitcom,a humorous television program based on situations that could arise in everyday life
+70529,sitz_bath hip_bath,a bathtub in which your buttocks and hips are immersed as if you were sitting in a chair and you bathe in a sitting position
+70530,six 6 VI sixer sise Captain_Hicks half_a_dozen sextet sestet sextuplet hexad,the cardinal number that is the sum of five and one
+70531,six-footer,a person who is at least six feet tall
+70532,six-pack six_pack sixpack,a carton containing six bottles or cans
+70533,six-spot six,a playing card or domino or die whose upward face shows six pips
+70534,sixpence tanner,a small coin of the United Kingdom worth six pennies; not minted since 1970
+70535,sixpenny_nail,a nail 2 inches long
+70536,sixteen 16 XVI,the cardinal number that is the sum of fifteen and one
+70537,sixteenth,position 16 in a countable series of things
+70538,sixteenth_note semiquaver,a musical note having the time value of a sixteenth of a whole note
+70539,sixth,position six in a countable series of things
+70540,sixth,the musical interval between one note and another six notes away from it
+70541,sixth-former,a student in the sixth form
+70542,sixties 1960s,the decade from 1960 to 1969
+70543,sixties mid-sixties,the time of life between 60 and 70
+70544,sixtieth,position 60 in a countable series of things
+70545,sixty 60 LX,the cardinal number that is the product of ten and six
+70546,sixty-fourth_note hemidemisemiquaver,a musical note having the time value of a sixty-fourth of a whole note
+70547,size,a large magnitude; "he blanched when he saw the size of the bill"; "the only city of any size in that area"
+70548,size,the physical magnitude of something (how big it is); "a wolf is about the size of a large dog"
+70549,size,the property resulting from being one of a series of graduated measurements (as of clothing); "he wears a size 13 shoe"
+70550,size size_of_it,the actual state of affairs; "that's the size of the situation"; "she hates me, that's about the size of it"
+70551,size sizing,any glutinous material used to fill pores in surfaces or to stiffen fabrics; "size gives body to a fabric"
+70552,size_constancy,the tendency to perceive the veridical size of a familiar object despite differences in their distance (and consequent differences in the size of the pattern projected on the retina of the eye)
+70553,size_stick,a mechanical measuring stick used by shoe fitters to measure the length and width of your foot
+70554,sizzle,a sizzling noise
+70555,skank,a rhythmic dance to reggae music performed by bending forward and extending the hands while bending the knees
+70556,skate,sports equipment that is worn on the feet to enable the wearer to glide along and to be propelled by the alternate actions of the legs
+70557,skate,large edible rays having a long snout and thick tail with pectoral fins continuous with the head; swim by undulating the edges of the pectoral fins
+70558,skateboard,a board with wheels that is ridden in a standing or crouching position and propelled by foot
+70559,skateboarder,someone who skates on a skateboard
+70560,skateboarding,the sport of skating on a skateboard
+70561,skater,someone who skates
+70562,skating,the sport of gliding on skates
+70563,skedaddle,a hasty flight
+70564,skeen_arch skene_arch scheme_arch diminished_arch,an arch whose height is less than half its width
+70565,skeet skeet_shooting trapshooting,the sport of shooting at clay pigeons that are hurled upward in such a way as to simulate the flight of a bird
+70566,skeg,a brace that extends from the rear of the keel to support the rudderpost
+70567,skein,coils of worsted yarn
+70568,skeletal_muscle striated_muscle,a muscle that is connected at either or both ends to a bone and so move parts of the skeleton; a muscle that is characterized by transverse stripes
+70569,skeletal_structure,any structure created by the skeleton of an organism
+70570,skeletal_system skeleton frame systema_skeletale,the hard structure (bones and cartilages) that provides a frame for the body of an animal
+70571,skeleton,something reduced to its minimal form; "the battalion was a mere skeleton of its former self"; "the bare skeleton of a novel"
+70572,skeleton skeletal_frame frame underframe,the internal supporting structure that gives an artifact its shape; "the building has a steel skeleton"
+70573,skeleton skeleton_in_the_closet skeleton_in_the_cupboard,a scandal that is kept secret; "there must be a skeleton somewhere in that family's closet"
+70574,skeleton_fork_fern Psilotum_nudum,pantropical epiphytic or terrestrial whisk fern with usually dull yellow branches and minute leaves; America; Japan; Australia
+70575,skeleton_key,a passkey with much of the bit filed away so that it can open different locks
+70576,skeleton_shrimp,small amphipod crustacean having a grotesque form suggestive of the praying mantis; found chiefly on seaweed
+70577,skep,a large round wicker basket (used on farms)
+70578,skep,a domed beehive made of twisted straw
+70579,skepful,the quantity a skep can hold
+70580,skeptic sceptic doubter,someone who habitually doubts accepted beliefs
+70581,sketch study,preliminary drawing for later elaboration; "he made several studies before starting to paint"
+70582,sketch survey resume,short descriptive summary (of events)
+70583,sketch vignette,a brief literary description
+70584,sketch_map,a map drawn from observation (rather than from exact measurements) and representing the main features of an area
+70585,sketchbook sketch_block sketch_pad,a book containing sheets of paper on which sketches can be drawn
+70586,sketcher,someone who draws sketches
+70587,sketcher,an implement for sketching
+70588,sketchiness,incompleteness of details
+70589,skew_arch,an arch whose jambs are not at right angles with the face
+70590,skewer,a long pin for holding meat in position while it is being roasted
+70591,ski,narrow wood or metal or plastic runners used in pairs for gliding over snow
+70592,ski-plane,an airplane equipped with skis so it can land on a snowfield
+70593,ski_binding binding,one of a pair of mechanical devices that are attached to a ski and that will grip a ski boot; the bindings should release in case of a fall
+70594,ski_boot,a stiff boot that is fastened to a ski with a ski binding
+70595,ski_cap stocking_cap toboggan_cap,a close-fitting woolen cap; often has a tapering tail with a tassel
+70596,ski_conditions,the amount and state of snow for skiing
+70597,ski_jump,a steep downward ramp from which skiers jump
+70598,ski_jumper,a skier who leaps through the air (especially on a ski jump)
+70599,ski_jumping,the act of performing a jump on skis from a high ramp overhanging a snow covered slope
+70600,ski_lodge,a hotel at a ski resort
+70601,ski_mask,a woolen face mask to protect the face from cold while skiing on snow
+70602,ski_parka ski_jacket,a parka to be worn while skiing
+70603,ski_pole,a pole with metal points used as an aid in skiing
+70604,ski_race skiing_race,a race between people wearing skis
+70605,ski_rack,a carrier for holding skis on top of a vehicle
+70606,ski_resort,a resort with lodging and facilities for skiing
+70607,ski_run ski_trail,trail or slope prepared for skiing
+70608,ski_slope,a snow-covered slope for skiing
+70609,ski_tow ski_lift lift,a powered conveyance that carries skiers up a hill
+70610,ski_wax,wax used on the bottom of skis
+70611,skibob,a vehicle resembling a bicycle but having skis instead of wheels; the rider wears short skis for balancing
+70612,skid,one of a pair of planks used to make a track for rolling or sliding objects
+70613,skid slip sideslip,an unexpected slide
+70614,skid_lid,a crash helmet
+70615,skid_road,the district of a town frequented by loggers
+70616,skid_road,a road made of logs on which freshly cut timber can be hauled
+70617,skid_row,a city district frequented by vagrants and alcoholics and addicts
+70618,skidder,a worker who uses a skid to move logs
+70619,skidder,a tractor used to haul logs over rough terrain
+70620,skidder slider slipper,a person who slips or slides because of loss of traction
+70621,skidpan,a paved surface on which cars can be made to skid so that drivers can practice controlling them
+70622,skier,someone who skis
+70623,skiff,any of various small boats propelled by oars or by sails or by a motor
+70624,skiffle,a style of popular music in the 1950s; based on American folk music and played on guitars and improvised percussion instruments
+70625,skiffle_group,a band of musicians who play skiffle
+70626,skiing,a sport in which participants must travel on skis
+70627,skill accomplishment acquirement acquisition attainment,an ability that has been acquired by training
+70628,skill science,ability to produce solutions in some problem domain; "the skill of a well-trained boxer"; "the sweet science of pugilism"
+70629,skilled_worker trained_worker skilled_workman,a worker who has acquired special skills
+70630,skillet_bread fry_bread,usually cooked in a skillet over an open fire: especially cornbread with ham bits and sometimes Irish soda bread
+70631,skillet_corn_bread,cornbread usually containing ham or bacon bits and cooked in a skillet
+70632,skillet_fish skilletfish Gobiesox_strumosus,clingfish with typical skillet shape
+70633,skillfulness,the state of being cognitively skillful
+70634,skilly,a thin porridge or soup (usually oatmeal and water flavored with meat)
+70635,skim,a thin layer covering the surface of a liquid; "there was a thin skim of oil on the water"
+70636,skim skimming,reading or glancing through quickly
+70637,skim_milk skimmed_milk,milk from which the cream has been skimmed
+70638,skimmer,a rapid superficial reader
+70639,skimmer,a cooking utensil used to skim fat from the surface of liquids
+70640,skimmer,gull-like seabird that flies along the surface of the water with an elongated lower mandible immersed to skim out food
+70641,skimming,the act of removing floating material from the surface of a liquid
+70642,skimming,failure to declare income in order to avoid paying taxes on it
+70643,skin,a person's skin regarded as their life; "he tried to save his skin"
+70644,skin,a bag serving as a container for liquids; it is made from the hide of an animal
+70645,skin,an outer surface (usually thin); "the skin of an airplane"
+70646,skin tegument cutis,a natural protective body covering and site of the sense of touch; "your skin is the largest organ of your body"
+70647,skin-diver aquanaut,an underwater swimmer equipped with a face mask and foot fins and either a snorkel or an air cylinder
+70648,skin_cancer,a malignant neoplasm of the skin
+70649,skin_care skincare,care for the skin
+70650,skin_cell,any of the cells making up the skin
+70651,skin_disease disease_of_the_skin skin_disorder,a disease affecting the skin
+70652,skin_diving skin-dive,underwater swimming without any more breathing equipment than a snorkel
+70653,skin_effect,the tendency of high-frequency alternating current to distribute near the surface of a conductor
+70654,skin_flick,a pornographic movie
+70655,skin_graft,a piece of skin taken from a donor area and surgically grafted at the site of an injury or burn
+70656,skin_test,any test to determine immunity or sensitivity to a disease by introducing small amounts on or into the skin
+70657,skinful,a quantity of alcoholic drink sufficient to make you drunk; "someone had to drive me home last night because I had a skinful"
+70658,skinhead skin,a member of any of several British or American groups consisting predominantly of young people who shave their heads; some engage in white supremacist and anti-immigrant activities and this leads to the perception that all skinheads are racist and violent
+70659,skinheads bootboys,a youth subculture that appeared first in England in the late 1960s as a working-class reaction to the hippies; hair was cropped close to the scalp; wore work-shirts and short jeans (supported by suspenders) and heavy red boots; involved in attacks against Asians and football hooliganism
+70660,skink scincid scincid_lizard,alert agile lizard with reduced limbs and an elongated body covered with shiny scales; more dependent on moisture than most lizards; found in tropical regions worldwide
+70661,skinner,a person who prepares or deals in animal skins
+70662,skinniness scrawniness,the bodily property of lacking flesh
+70663,skinny,confidential information about a topic or person; "he wanted the inside skinny on the new partner"
+70664,skinny-dip,a naked swim
+70665,skinny-dipper,a naked swimmer
+70666,skip,a gait in which steps and hops alternate
+70667,skip_distance,the shortest distance that permits radio signals (of a given frequency) to travel from the transmitter to the receiver by reflection from the ionosphere
+70668,skipjack Atlantic_bonito Sarda_sarda,medium-sized tuna-like food fish of warm Atlantic and Pacific waters; less valued than tuna
+70669,skipjack skipjack_tuna Euthynnus_pelamis,oceanic schooling tuna of considerable value in Pacific but less in Atlantic; reaches 75 pounds; very similar to if not the same as oceanic bonito
+70670,skipper,a student who fails to attend classes
+70671,skirl,the sound of (the chanter of) a bagpipe
+70672,skirmisher,someone who skirmishes (e.g., as a member of a scouting party)
+70673,skirret Sium_sisarum,an Asiatic herb cultivated in Europe for its sweet edible tuberous root
+70674,skirt,cloth covering that forms the part of a garment below the waist
+70675,skirt,a garment hanging from the waist; worn mainly by girls and women
+70676,skirt_of_tasses,armor plate that protects the body below the waist
+70677,skit,a short theatrical episode
+70678,skittishness restiveness,characterized by nervousness and quickness to take fright
+70679,skivvies,(used in the plural) men's underwear consisting of cotton undershirt and underpants
+70680,skivvy slavey,a female domestic servant who does all kinds of menial work
+70681,skua bonxie,gull-like jaeger of northern seas
+70682,skull,the bony skeleton of the head of vertebrates
+70683,skull_and_crossbones,emblem warning of danger or death
+70684,skull_session,a session (as of executives or advisors) to discuss policy or strategy or to solve problems or exchange ideas
+70685,skull_session skull_practice,teaching strategy to an athletic team
+70686,skullcap,rounded brimless cap fitting the crown of the head
+70687,skullcap helmetflower,a herbaceous plant of the genus Scutellaria which has a calyx that, when inverted, resembles a helmet with its visor raised
+70688,skunk polecat wood_pussy,American musteline mammal typically ejecting an intensely malodorous fluid when startled; in some classifications put in a separate subfamily Mephitinae
+70689,skunk_cabbage Lysichiton_americanum,clump-forming deciduous perennial swamp plant of western North America similar to Symplocarpus foetidus but having a yellow spathe
+70690,skunk_cabbage polecat_weed foetid_pothos Symplocarpus_foetidus,deciduous perennial low-growing fetid swamp plant of eastern North America having minute flowers enclosed in a mottled greenish or purple cowl-shaped spathe
+70691,skunkweed skunk-weed Polemonium_viscosum,tall herb of the Rocky Mountains having sticky leaves and an offensive smell
+70692,sky,the atmosphere and outer space as viewed from the earth
+70693,sky_burial,a traditional Tibetan funeral ritual in which the corpse is exposed to the open air to be eaten by sacred vultures
+70694,sky_glow,illumination of the night sky in urban areas
+70695,sky_wave,a radio wave that is reflected back to earth by the ionosphere or a communications satellite; permits transmission around the curve of the earth's surface
+70696,skybox,an elevated box for viewing events at a sports stadium
+70697,skycap,a porter who helps passengers with their baggage at an airport
+70698,skydiver,a person who jumps from a plane and performs various gymnastic maneuvers before pulling the parachute cord
+70699,skydiving,performing acrobatics in free fall before pulling the ripcord of a parachute
+70700,skyhook,helicopter carrying a reel of steel cable that can be used to lift and transport heavy objects
+70701,skyhook,a hook that is imagined to be suspended from the sky
+70702,skylark Alauda_arvensis,brown-speckled European lark noted for singing while hovering at a great height
+70703,skylight fanlight,a window in a roof to admit daylight
+70704,skyline,the outline of objects seen against the sky
+70705,skyrocket rocket,sends a firework display high into the sky
+70706,skysail,the sail above the royal on a square-rigger
+70707,skyscraper,a very tall building with many stories
+70708,skywalk,an elevated walkway between buildings (usually enclosed)
+70709,skywriting,writing formed in the sky by smoke released from an airplane
+70710,slab,block consisting of a thick piece of something
+70711,slack,dust consisting of a mixture of small coal fragments and coal dust and dirt that sifts out when coal is passed over a sieve
+70712,slack,a cord or rope or cable that is hanging loosely; "he took up the slack"
+70713,slack slack_water,a stretch of water without current or movement; "suddenly they were in a slack and the water was motionless"
+70714,slack slackness,the quality of being loose (not taut); "he hadn't counted on the slackness of the rope"
+70715,slack_suit,casual dress consisting of slacks and matching jacket
+70716,slack_water slack_tide,the occurrence of relatively still water at the turn of the (low) tide
+70717,slacker shirker,a person who shirks his work or duty (especially one who tries to evade military service in wartime)
+70718,slacks,(used in the plural) pants for casual wear
+70719,slag scoria dross,the scum formed by oxidation at the surface of molten metals
+70720,slagheap,pile of waste matter from coal mining etc
+70721,slain,people who have been slain (as in battle)
+70722,slalom,a downhill race over a winding course defined by upright poles
+70723,slam,the noise made by the forceful impact of two objects
+70724,slam,a forceful impact that makes a loud noise
+70725,slam sweep,winning all or all but one of the tricks in bridge
+70726,slam_dancing slam_dance,a form of dancing in which dancers slam into one another; normally performed to punk rock
+70727,slam_dunk,something that is a sure to occur; a foregone conclusion; "predicting his success was a slam dunk"
+70728,slam_dunk,a forceful dunk
+70729,slammer,a person who closes things violently; "she's a dramatic slammer of doors"
+70730,slander,words falsely spoken that damage the reputation of another
+70731,slang cant jargon lingo argot patois vernacular,a characteristic language of a particular group (as among thieves); "they don't speak our lingo"
+70732,slang slang_expression slang_term,informal language consisting of words and expressions that are not considered appropriate for formal occasions; often vituperative or vulgar; "their speech was full of slang expressions"
+70733,slanginess,casualness in use of language
+70734,slanguage,language characterized by excessive use of slang or cant
+70735,slant angle,a biased way of looking at or presenting something
+70736,slap smack,a blow from a flat object (as an open hand)
+70737,slapper spanker,a hitter who slaps (usually another person) with an open hand; "someone slapped me on the back and I turned to see who the slapper was"; "my father was the designated spanker in our family"
+70738,slapshot,a fast shot made with a short powerful swing of the hockey stick
+70739,slapstick,a boisterous comedy with chases and collisions and practical jokes
+70740,slapstick,acoustic device consisting of two paddles hinged together; used by an actor to make a loud noise without inflicting injury when striking someone
+70741,slash,an open tract of land in a forest that is strewn with debris from logging (or fire or wind)
+70742,slash gash,a strong sweeping cut made with a sharp instrument
+70743,slash_pocket,a pocket in a garment (usually below the waist) to which access is provided by a vertical or diagonal slit in the outside of the garment
+70744,slasher,someone who slashes another person
+70745,slasher,a weapon (a sword or dagger) used for slashing
+70746,slat spline,a thin strip (wood or metal)
+70747,slate,a fine-grained metamorphic rock that can be split into thin layers
+70748,slate,(formerly) a writing tablet made of slate
+70749,slate slating,thin layers of rock used for roofing
+70750,slate ticket,a list of candidates nominated by a political party to run for election to public offices
+70751,slate_club,a group of people who save money in a common fund for a specific purpose (usually distributed at Christmas)
+70752,slate_pencil,a pencil of soft slate (or soapstone) used for writing on a slate
+70753,slate_roof,a roof covered with slate
+70754,slating,a severely critical attack; "the reviewers gave his book a sound slating"
+70755,slating,the act of laying slates for a roof
+70756,slattern slut slovenly_woman trollop,a dirty untidy woman
+70757,slatternliness sluttishness,in the manner of a slattern
+70758,slaughter,the killing of animals (as for food)
+70759,slaughter massacre mass_murder carnage butchery,the savage and excessive killing of many people
+70760,slave,someone entirely dominated by some influence or person; "a slave to fashion"; "a slave to cocaine"; "his mother was his abject slave"
+70761,slave,a person who is owned by someone
+70762,slave striver hard_worker,someone who works as hard as a slave
+70763,slave-making_ant slave-maker,an ant that attacks colonies of other ant species and carries off the young to be reared as slave ants
+70764,slave_ant,any of various ants captured as larvae and enslaved by another species
+70765,slave_driver,a supervisor of slaves at work
+70766,slave_driver Simon_Legree,a cruel employer who demands excessive work from the employees
+70767,slave_market,a marketplace where slaves were auctioned off (especially in the southern United States before the American Civil War)
+70768,slave_ship,a ship used to transport slaves from their homes to places of bondage
+70769,slave_state,any of the southern states in which slavery was legal prior to the American Civil War
+70770,slave_trade slave_traffic,traffic in slaves; especially in Black Africans transported to America in the 16th to 19th centuries
+70771,slaveholder slave_owner slaver,someone who holds slaves
+70772,slaver slave_dealer slave_trader,a person engaged in slave trade
+70773,slavery,work done under harsh conditions for little or no pay
+70774,slavery slaveholding,the practice of owning slaves
+70775,sleaziness,morally dishonorable; "an embarrassing sleaziness that I hope will be corrected by the more ethical newspapers"
+70776,sled sledge sleigh,a vehicle mounted on runners and pulled by horses or dogs; for transportation over snow
+70777,sled_dog sledge_dog,a dog trained to draw a sled usually in a team
+70778,sledder,someone who rides a sled
+70779,sledding,the sport of riding on a sled or sleigh
+70780,sleekness,the quality of being well-groomed and neatly tailored; "the sleekness of his appearance reminded me of his financial successes"
+70781,sleep nap,a period of time spent sleeping; "he felt better after a little sleep"; "there wasn't time for a nap"
+70782,sleep slumber,a natural and periodic state of rest during which consciousness of the world is suspended; "he didn't get enough sleep last night"; "calm as a child in dreamless slumber"
+70783,sleep sopor,a torpid state resembling deep sleep
+70784,sleep-learning hypnopedia,teaching during sleep (as by using recordings to teach a foreign language to someone who is asleep)
+70785,sleep_apnea,apnea that occurs during sleep
+70786,sleep_deprivation,a form of psychological torture inflicted by depriving the victim of sleep
+70787,sleep_disorder,a disturbance of the normal sleep pattern
+70788,sleep_talking somniloquy somniloquism,uttering speech while asleep
+70789,sleep_terror_disorder pavor_nocturnus,a disorder of sleep characterized by a dream of terrifying dimensions far worse than a typical nightmare; they occur during NREM sleep
+70790,sleeper,a spy or saboteur or terrorist planted in an enemy country who lives there as a law-abiding citizen until activated by a prearranged signal
+70791,sleeper,an unexpected achiever of success; "the winner was a true sleeper--no one expected him to get it"
+70792,sleeper,pajamas with feet; worn by children
+70793,sleeper,a piece of furniture that can be opened up into a bed
+70794,sleeper,an unexpected hit; "that movie was the sleeper of the summer"
+70795,sleeper sleeper_goby,tropical fish that resembles a goby and rests quietly on the bottom in shallow water
+70796,sleeper slumberer,a rester who is sleeping
+70797,sleeper_cell,a cell of sleepers; "an al-Qaeda sleeper cell may have used Arizona as its base"
+70798,sleeper_nest,a nest of sleepers awaiting a prearranged signal; "sleeper nests of Islamic terrorists were capable of launching major attacks in Europe"
+70799,sleepiness drowsiness somnolence,a very sleepy state; "sleepiness causes many driving accidents"
+70800,sleeping,the state of being asleep
+70801,sleeping,the suspension of consciousness and decrease in metabolic rate
+70802,sleeping_bag,large padded bag designed to be slept in outdoors; usually rolls up like a bedroll
+70803,sleeping_beauty,a person who is sleeping soundly
+70804,sleeping_beauty,a potential takeover target that has not yet been put in play
+70805,sleeping_car sleeper wagon-lit,a passenger car that has berths for sleeping
+70806,sleeping_pill sleeping_tablet sleeping_capsule sleeping_draught,a soporific drug in the form of a pill (or tablet or capsule)
+70807,sleeping_sickness sleepy_sickness epidemic_encephalitis lethargic_encephalitis encephalitis_lethargica,an encephalitis that was epidemic between 1915 and 1926; symptoms include paralysis of the extrinsic eye muscle and extreme muscular weakness
+70808,sleepover,an occasion of spending a night away from home or having a guest spend the night in your home (especially as a party for children)
+70809,sleepwalker somnambulist noctambulist,someone who walks about in their sleep
+70810,sleepwalking somnambulism somnambulation noctambulism noctambulation,walking by a person who is asleep
+70811,sleepyhead,a sleepy person
+70812,sleet,partially melted snow (or a mixture of rain and snow)
+70813,sleeve,small case into which an object fits
+70814,sleeve arm,the part of a garment that is attached at the armhole and that provides a cloth covering for the arm
+70815,sleigh_bed,a bed with solid headboard and footboard that roll outward at the top
+70816,sleigh_bell cascabel,a bell attached to a sleigh, or to the harness of a horse that is pulling a sleigh
+70817,slender-tailed_meerkat Suricata_suricatta,a meerkat with a thin and elongated tail
+70818,slender_centaury,a slender variety of centaury
+70819,slender_knapweed,a variety of knapweed
+70820,slender_loris Loris_gracilis,slim-bodied lemur of southern India and Sri Lanka
+70821,slender_rush Juncus_tenuis,tufted wiry rush of wide distribution
+70822,slender_salamander worm_salamander,any of several small slim salamanders of the Pacific coast of the United States
+70823,slender_wheatgrass Agropyron_trachycaulum Agropyron_pauciflorum Elymus_trachycaulos,North American grass cultivated in western United States as excellent forage crop
+70824,slender_wild_oat Avena_barbata,oat of southern Europe and southwestern Asia
+70825,slenderness,the quality of being slight or inadequate; "he knew the slenderness of my wallet"; "the slenderness of the chances that anything would be done"; "the slenderness of the evidence"
+70826,slenderness slightness slimness,the property of an attractively thin person
+70827,sleuth sleuthhound,a detective who follows a trail
+70828,slice,a thin flat piece cut off of some object
+70829,slice,a spatula for spreading paint or ink
+70830,slice fade slicing,a golf shot that curves to the right for a right-handed golfer; "he took lessons to cure his slicing"
+70831,slice piece,a share of something; "a slice of the company's revenue"
+70832,slice_bar,iron bar used to loosen and rake clinkers out of furnaces
+70833,slicer,a golfer whose shots typically curve right (for right-handed golfers)
+70834,slicer,a machine for cutting; usually with a revolving blade
+70835,slicer,knife especially designed for slicing particular foods, as cheese
+70836,slicing,the act of cutting into slices
+70837,slick,a film of oil or garbage floating on top of water
+70838,slick,a trowel used to make a surface slick
+70839,slick slick_magazine glossy,a magazine printed on good quality paper
+70840,slicker,a person with good manners and stylish clothing
+70841,slickness slick slipperiness slip,a slippery smoothness; "he could feel the slickness of the tiller"
+70842,slide,(geology) the descent of a large mass of earth or rocks or snow etc.
+70843,slide glide coast,the act of moving smoothly along a surface while remaining in contact with it; "his slide didn't stop until the bottom of the hill"; "the children lined up for a coast down the snowy slope"
+70844,slide lantern_slide,a transparency mounted in a frame; viewed with a slide projector
+70845,slide microscope_slide,a small flat rectangular piece of glass on which specimens can be mounted for microscopic study
+70846,slide playground_slide sliding_board,plaything consisting of a sloping chute down which children can slide
+70847,slide_chart,a hand-held device, usually of paper, cardboard, or plastic, for conducting simple calculations or looking up information
+70848,slide_fastener zip zipper zip_fastener,a fastener for locking together two toothed edges by means of a sliding tab
+70849,slide_projector,projector that projects an enlarged image of a slide onto a screen
+70850,slide_rule slipstick,analog computer consisting of a handheld instrument used for rapid calculations; have been replaced by pocket calculators
+70851,slide_valve,valve that opens and closes a passageway by sliding over a port
+70852,slider,a fastball that curves slightly away from the side from which it was thrown
+70853,slider yellow-bellied_terrapin Pseudemys_scripta,freshwater turtle of United States and South America; frequently raised commercially; some young sold as pets
+70854,sliding_door,a door that opens by sliding instead of swinging
+70855,sliding_scale,a wage scale that fluctuates in response to the cost-of-living index
+70856,sliding_seat,rower's seat that slides fore and aft
+70857,sliding_window,a window that opens by sliding horizontally
+70858,slight_care,such care as a careless or inattentive person would exercise
+70859,slime_mold slime_mould,a naked mass of protoplasm having characteristics of both plants and animals; sometimes classified as protoctists
+70860,slime_mushroom,a mushroom of the genus Amanita
+70861,sliminess,a property resembling or being covered with slime
+70862,sling,a highball with liquor and water with sugar and lemon or lime juice
+70863,sling,a simple weapon consisting of a looped strap in which a projectile is whirled and then released
+70864,sling scarf_bandage triangular_bandage,bandage to support an injured forearm; consisting of a wide triangular piece of cloth hanging from around the neck
+70865,slingback sling,a shoe that has a strap that wraps around the heel
+70866,slinger,a person who uses a sling to throw something
+70867,slinger_ring,dispenser consisting of a tubular ring around the propeller hub of an airplane through which antifreeze solution is spread over the blades
+70868,slinging,throwing with a wide motion (as if with a sling)
+70869,slingshot sling catapult,a plaything consisting of a Y-shaped stick with elastic between the arms; used to propel small stones
+70870,slip,potter's clay that is thinned and used for coating or decorating ceramics
+70871,slip,a young and slender person; "he's a mere slip of a lad"
+70872,slip elusion eluding,the act of avoiding capture (especially by cunning)
+70873,slip sideslip,a flight maneuver; aircraft slides sideways in the air
+70874,slip slip-up miscue parapraxis,a minor inadvertent mistake usually observed in speech or writing or in small accidents or memory lapses etc.
+70875,slip slip_of_paper,a small sheet of paper; "a receipt slip"; "a withdrawal slip"
+70876,slip trip,an accidental misstep threatening (or causing) a fall; "he blamed his slip on the ice"; "the jolt caused many slips and a few spills"
+70877,slip-joint_pliers,pliers with a joint adjustable to two positions in order to increase the opening of the jaws
+70878,slip-on,an article of clothing (garment or shoe) that is easily slipped on or off
+70879,slip_clutch slip_friction_clutch,a friction clutch that will slip when the torque is too great
+70880,slip_coach slip_carriage,a railway car at the end of the train; it can be detached without stopping the train
+70881,slip_of_the_tongue,an accidental and usually trivial mistake in speaking
+70882,slip_ring,connection consisting of a metal ring on a rotating part of a machine; provides a continuous electrical connection through brushes on stationary contacts
+70883,slip_stitch,a loose stitch catching only a thread or two of fabric; designed to be invisible from the right side
+70884,slipcover,a removable fitted cloth covering for upholstered furniture
+70885,slipknot,a knot at the end of a cord or rope that can slip along the cord or rope around which it is made
+70886,slippage,decline from a standard level of performance or achievement
+70887,slippage,a decrease of transmitted power in a mechanical system caused by slipping
+70888,slippage,failing to hold or slipping out of place; "the knots allowed no slippage"
+70889,slipper carpet_slipper,low footwear that can be slipped on and off easily; usually worn indoors
+70890,slipper_spurge slipper_plant,any of several tropical American shrubby succulent plants resembling cacti but having foot-shaped bracts
+70891,slippery_dick Halicoeres_bivittatus,small wrasse of tropical Atlantic
+70892,slippery_elm red_elm Ulmus_rubra,North American elm having rough leaves that are red when opening; yields a hard wood
+70893,slipskin_grape,a grape whose skin slips readily from the pulp
+70894,slipstream airstream race backwash wash,the flow of air that is driven backwards by an aircraft propeller
+70895,slit,a narrow fissure
+70896,slit,a long narrow opening
+70897,slit_lamp,(ophthalmology) a lamp that emits a narrow but intense beam of light that enables an ophthalmologist, using a microscope, to view the retina and optic nerve
+70898,slit_trench,narrow trench for shelter in battle
+70899,slivovitz,a colorless plum brandy popular in the Balkans
+70900,slob sloven pig slovenly_person,a coarse obnoxious person
+70901,sloe,small sour dark purple fruit of especially the Allegheny plum bush
+70902,sloe_gin,gin flavored with sloes (fruit of the blackthorn)
+70903,sloganeer,someone who coins and uses slogans to promote a cause
+70904,sloganeering,persuasion by means of empty slogans
+70905,sloop,a sailing vessel with a single mast set about one third of the boat's length aft of the bow
+70906,sloop_of_war,a sailing or steam warship having cannons on only one deck
+70907,slop,(usually plural) waste water from a kitchen or bathroom or chamber pot that has to be emptied by hand; "she carried out the sink slops"
+70908,slop,(usually plural) weak or watery unappetizing food or drink; "he lived on the thin slops that food kitchens provided"
+70909,slop mire,deep soft mud in water or slush; "they waded through the slop"
+70910,slop slops swill pigswill pigwash,wet feed (especially for pigs) consisting of mostly kitchen waste mixed with water or skimmed or sour milk
+70911,slop_basin slop_bowl,a bowl into which the dregs of teacups and coffee cups are emptied at the table
+70912,slop_chest,commissary maintained aboard merchant ships to sell merchandise to the crew
+70913,slop_pail slop_jar,a large pail used to receive waste water from a washbasin or chamber pot
+70914,slope incline side,an elevated geological formation; "he climbed the steep slope"; "the house was built on the side of a mountain"
+70915,sloppiness slovenliness unkemptness,a lack of order and tidiness; not cared for
+70916,slops,cheap clothing (as formerly issued to sailors in Britain)
+70917,slopseller slop-seller,a dealer in cheap ready-made clothing
+70918,slopshop slopseller's_shop,a store that sells cheap ready-made clothing
+70919,slot,a position in a hierarchy or organization; "Bob Dylan occupied the top slot for several weeks"; "she beat some tough competition for the number one slot"
+70920,slot,the trail of an animal (especially a deer); "he followed the deer's slot over the soft turf to the edge of the trees"
+70921,slot,a position in a grammatical linguistic construction in which a variety of alternative units are interchangeable; "he developed a version of slot grammar"
+70922,slot,a small slit (as for inserting a coin or depositing mail); "he put a quarter in the slot"
+70923,slot expansion_slot,(computer) a socket in a microcomputer that will accept a plug-in circuit board; "the PC had three slots for additional memory"
+70924,slot one-armed_bandit,a slot machine that is used for gambling; "they spend hours and hours just playing the slots"
+70925,slot_machine coin_machine,a machine that is operated by the insertion of a coin in a slot
+70926,sloth laziness acedia,apathy and inactivity in the practice of virtue (personified as one of the deadly sins)
+70927,sloth slothfulness,a disinclination to work or exert yourself
+70928,sloth tree_sloth,any of several slow-moving arboreal mammals of South America and Central America; they hang from branches back downward and feed on leaves and fruits
+70929,sloth_bear Melursus_ursinus Ursus_ursinus,common coarse-haired long-snouted bear of south-central Asia
+70930,slouch,an incompetent person; usually used in negative constructions; "he's no slouch when it comes to baseball"
+70931,slouch,a stooping carriage in standing and walking
+70932,sloucher,a person who slouches; someone with a drooping carriage
+70933,slough,a hollow filled with mud
+70934,slough,a stagnant swamp (especially as part of a bayou)
+70935,slough,any outer covering that can be shed or cast off (such as the cast-off skin of a snake)
+70936,slough_of_despond,(formal) extreme depression
+70937,slovenliness,habitual uncleanliness
+70938,slow_lane,the traffic lane for vehicles that are moving slowly
+70939,slow_loris Nycticebus_tardigradua Nycticebus_pygmaeus,stocky lemur of southeastern Asia
+70940,slow_match,match or fuse made to burn slowly and evenly
+70941,slow_motion,a movie that apparently takes place at a slower than normal speed; achieved by taking the film at a faster rate
+70942,slow_virus,a virus that remains dormant in the body for a long time before symptoms appear; "kuru is caused by a slow virus"
+70943,slowdown lag retardation,the act of slowing down or falling behind
+70944,slowness deliberation deliberateness unhurriedness,a rate demonstrating an absence of haste or hurry
+70945,slub knot burl,soft lump or unevenness in a yarn; either an imperfection or created by design
+70946,sludge,the precipitate produced by sewage treatment
+70947,sludge slime goo goop gook guck gunk muck ooze,any thick, viscous matter
+70948,slug,a unit of mass equal to the mass that accelerates at 1 foot/sec/sec when acted upon by a force of 1 pound; approximately 14.5939 kilograms
+70949,slug,a counterfeit coin
+70950,slug,an amount of an alcoholic drink (usually liquor) that is poured or gulped; "he took a slug of hard liquor"
+70951,slug,any of various terrestrial gastropods having an elongated slimy body and no external shell
+70952,sluggard slug,an idle slothful person
+70953,slugger slogger,a boxer noted for an ability to deliver hard punches
+70954,sluggishness,the pace of things that move relatively slowly; "the sluggishness of the economy"; "the sluggishness of the compass in the Arctic cold"
+70955,sluice sluiceway penstock,conduit that carries a rapid flow of water controlled by a sluicegate
+70956,sluicegate sluice_valve floodgate penstock head_gate water_gate,regulator consisting of a valve or gate that controls the rate of water flow through a sluice
+70957,slum slum_area,a district of a city marked by poverty and inferior living conditions
+70958,slumber,a dormant or quiescent state
+70959,slumber_party,an overnight party of girls who dress in nightclothes and pass the night talking
+70960,slumgullion,a thin stew of meat and vegetables
+70961,slump slack drop-off falloff falling_off,a noticeable deterioration in performance or quality; "the team went into a slump"; "a gradual slack in output"; "a drop-off in attendance"; "a falloff in quality"
+70962,slur,(music) a curved line spanning notes that are to be played legato
+70963,slurry,a suspension of insoluble particles (as plaster of Paris or lime or clay etc.) usually in water
+70964,slush,partially melted snow
+70965,slush_fund,a fund for buying votes or bribing public officials
+70966,smack,a sailing ship (usually rigged like a sloop or cutter) used in fishing and sailing along the coast
+70967,smack smacking slap,the act of smacking something; a blow delivered with an open hand
+70968,smack smooch,an enthusiastic kiss
+70969,smacker,a loud kiss
+70970,smacker,a very powerful blow with the fist
+70971,small,the slender part of the back
+70972,small,a garment size for a small person
+70973,small-for-gestational-age_infant SGA_infant,an infant whose size and weight are considerably less than the average for babies of the same age
+70974,small-leaved_linden small-leaved_lime Tilia_cordata,large spreading European linden with small dark green leaves; often cultivated as an ornamental
+70975,small-particle_pollution,air pollution caused by fine particles of soot (as from power plants or diesel engines)
+70976,small_boat,a boat that is small
+70977,small_businessman,a businessman who runs a business employing less than 100 people
+70978,small_cane switch_cane Arundinaria_tecta,small cane of watery or moist areas in southern United States
+70979,small_cap,a corporation with a small capitalization; "this annual conference is a showcase for ambitious small caps"
+70980,small_capital small_cap,a character having the form of an upper-case letter but the same height as lower-case letters
+70981,small_change chickenfeed chump_change,a trifling sum of money
+70982,small_civet Viverricula_indica Viverricula_malaccensis,a common civet of southeast Asia
+70983,small_computer_system_interface SCSI,interface consisting of a standard port between a computer and its peripherals that is used in some computers
+70984,small_farmer,a farmer on a small farm
+70985,small_fortune,a large sum of money; "he made a small fortune in the commodities market"
+70986,small_hours,the hours just after midnight
+70987,small_indefinite_quantity small_indefinite_amount,an indefinite quantity that is below average size or magnitude
+70988,small_intestine,the longest part of the alimentary canal; where digestion is completed
+70989,small_letter lowercase lower-case_letter minuscule,the characters that were once kept in bottom half of a compositor's type case
+70990,small_person,a person of below average size
+70991,small_print fine_print,material printed in small type; "he needed his glasses in order to read the fine print"
+70992,small_ship,a ship that is small
+70993,small_stores,personal items conforming to regulations that are sold aboard ship or at a naval base and charged to the person's pay
+70994,small_stuff,any light rope used on shipboard
+70995,small_white Pieris_rapae,small widely distributed form
+70996,small_white_aster,a variety of aster
+70997,smalleye_hammerhead Sphyrna_tudes,fished for the hide and vitamin-rich liver
+70998,smallholder,a person owning or renting a smallholding
+70999,smallholding,a piece of land under 50 acres that is sold or let to someone for cultivation
+71000,smallmouth smallmouth_bass smallmouthed_bass smallmouth_black_bass smallmouthed_black_bass Micropterus_dolomieu,a variety of black bass; the angle of the jaw falls below the eye
+71001,smallmouth_bass,flesh of smallmouth bass
+71002,smallness,the property of being a relatively small amount; "he was attracted by the smallness of the taxes"
+71003,smallness littleness,the property of having a relatively small size
+71004,smallness littleness,the property of having relatively little strength or vigor; "the smallness of her voice"
+71005,smallpox variola variola_major,a highly contagious viral disease characterized by fever and weakness and skin eruption with pustules that form scabs that slough off leaving scars
+71006,smalltooth_sawfish Pristis_pectinatus,commonly found in tropical bays and estuaries; not aggressive
+71007,smaltite,a grey mineral consisting of cobalt arsenide and nickel; an important source of cobalt and nickel
+71008,smart smarting smartness,a kind of pain such as that caused by a wound or a burn or a sore
+71009,smart_bomb,a bomb that can be guided (by a laser beam or radio) to its target; "smart bombs have revolutionized aerial bombardment"
+71010,smart_card,a plastic card containing a microprocessor that enables the holder to perform operations requiring data that is stored in the microprocessor; typically used to perform financial transactions
+71011,smart_money,money bet or invested by experienced gamblers or investors (especially if they have inside information)
+71012,smart_money,people who are highly experienced or who have inside information; "the smart money said Truman would lose the election"
+71013,smarta,one of a group of brahmans who uphold nonsectarian orthodoxy according to the Vedanta school of Hinduism
+71014,smash smash-up,a serious collision (especially of motor vehicles)
+71015,smasher,a person who smashes something
+71016,smasher stunner knockout beauty ravisher sweetheart peach lulu looker mantrap dish,a very attractive or seductive looking woman
+71017,smashing shattering,the act of breaking something into small pieces
+71018,smattering,a slight or superficial understanding of a subject
+71019,smear cytologic_smear cytosmear,a thin tissue or blood sample spread on a glass slide and stained for cytologic examination and diagnosis under a microscope
+71020,smear vilification malignment,slanderous defamation
+71021,smear_word,an epithet that can be used to smear someone's reputation; "he used the smear word `communist' for everyone who disagreed with him"
+71022,smegma,a white secretion of the sebaceous glands of the foreskin
+71023,smell odor odour olfactory_sensation olfactory_perception,the sensation that results when olfactory receptors in the nose are stimulated by particular chemicals in gaseous form; "she loved the smell of roses"
+71024,smell sense_of_smell olfaction olfactory_modality,the faculty that enables us to distinguish scents
+71025,smell smelling,the act of perceiving the odor of something
+71026,smelling_bottle,a bottle containing smelling salts
+71027,smelling_salts,a pungent preparation of ammonium carbonate and perfume; sniffed as a stimulant to relieve faintness
+71028,smelt,small cold-water silvery fish; migrate between salt and fresh water
+71029,smelt,small trout-like silvery marine or freshwater food fishes of cold northern waters
+71030,smelter smeltery,an industrial plant for smelting
+71031,smew Mergus_albellus,smallest merganser and most expert diver; found in northern Eurasia
+71032,smilax Asparagus_asparagoides,fragile twining plant of South Africa with bright green flattened stems and glossy foliage popular as a floral decoration
+71033,smile smiling grin grinning,a facial expression characterized by turning up the corners of the mouth; usually shows pleasure or amusement
+71034,smiler,a person who smiles
+71035,smiley,an emoticon of a smiling face
+71036,smilo smilo_grass Oryzopsis_miliacea,perennial mountain rice native to Mediterranean region and introduced into North America
+71037,smirk,a smile expressing smugness or scorn instead of pleasure
+71038,smirker,a smiler whose smile is offensively self-satisfied
+71039,smith,someone who works at something specified
+71040,smith metalworker,someone who works metal (especially by hammering it when it is hot and malleable)
+71041,smithereens,a collection of small fragments considered as a whole; "Berlin was bombed to smithereens"; "his hopes were dashed to smithereens"; "I wanted to smash him to smithereens"; "the toilet bowl ws blown to smithereens"
+71042,smocking,embroidery consisting of ornamental needlework on a garment that is made by gathering the cloth tightly in stitches
+71043,smog smogginess,air pollution by a mixture of smoke and fog
+71044,smoke,an indication of some hidden activity; "with all that smoke there must be a fire somewhere"
+71045,smoke,something with no concrete substance; "his dreams all turned to smoke"; "it was just smoke and mirrors"
+71046,smoke fume,a cloud of fine particles suspended in a gas
+71047,smoke smoking,a hot vapor containing fine particles of carbon being produced by combustion; "the fire produced a tower of black smoke that could be seen for miles"
+71048,smoke smoking,the act of smoking tobacco or other substances; "he went outside for a smoke"; "smoking stinks"
+71049,smoke_bomb smoke_grenade,a bomb that gives off thick smoke when it explodes; used to make a smoke screen or to mark a position
+71050,smoke_bush,any of various shrubs of the genus Conospermum with panicles of mostly white woolly flowers
+71051,smoke_hole,a vent (as in a roof) for smoke to escape
+71052,smoke_screen smokescreen,(military) screen consisting of a cloud of smoke that obscures movements
+71053,smoke_screen smokescreen,an action intended to conceal or confuse or obscure; "requesting new powers of surveillance is just a smokescreen to hide their failures"
+71054,smoke_tree Dalea_spinosa,greyish-green shrub of desert regions of southwestern United States and Mexico having sparse foliage and terminal spikes of bluish violet flowers; locally important as source of a light-colored honey of excellent flavor
+71055,smoke_tree smoke_bush,any of several shrubs or shrubby trees of the genus Cotinus
+71056,smoked_eel,eel cured by smoking
+71057,smoked_mackerel,mackerel cured by smoking
+71058,smoked_salmon,salmon cured by smoking
+71059,smokehouse meat_house,a small house where smoke is used to cure meat or fish
+71060,smokeless_powder Ballistite,an explosive (trade name Ballistite) that burns with relatively little smoke; contains pyrocellulose and is used as a propellant
+71061,smoker smoking_car smoking_carriage smoking_compartment,a passenger car for passengers who wish to smoke
+71062,smoker tobacco_user,a person who smokes tobacco
+71063,smokestack stack,a large tall chimney through which combustion gases and smoke can be evacuated
+71064,smoking_gun,indisputable evidence (especially of a crime)
+71065,smoking_mixture,a blend of tobaccos to be smoked in a pipe
+71066,smoking_room,room in a hotel or club set apart for smokers
+71067,smooth,the act of smoothing; "he gave his hair a quick smooth"
+71068,smooth-haired_fox_terrier,a fox terrier with smooth hair
+71069,smooth-leaved_elm European_field_elm Ulmus_carpinifolia,European elm with lustrous smooth leaves used as an ornamental
+71070,smooth_alder hazel_alder Alnus_serrulata,common shrub of the eastern United States with smooth bark
+71071,smooth_aster,a variety of aster
+71072,smooth_crabgrass Digitaria_ischaemum,a weed
+71073,smooth_darling_pea Swainsona_galegifolia,erect or trailing perennial of eastern Australia having axillary racemes of blue to purple or red flowers
+71074,smooth_dogfish,small bottom-dwelling shark found along both Atlantic coasts
+71075,smooth_green_snake Opheodrys_vernalis,of western and central United States
+71076,smooth_hammerhead Sphyrna_zygaena,fished for the hides and vitamin-rich liver
+71077,smooth_lip_fern Alabama_lip_fern Cheilanthes_alabamensis,southeastern United States to northern Mexico and Jamaica
+71078,smooth_muscle,muscle tissue that does not appear striated under the microscope; has the form of thin layers or sheets
+71079,smooth_muscle involuntary_muscle,a muscle that contracts without conscious control and found in walls of internal organs such as stomach and intestine and bladder and blood vessels (excluding the heart)
+71080,smooth_muscle_cell,cells of the smooth muscles
+71081,smooth_plane smoothing_plane,a small plane for finish work
+71082,smooth_softshell Trionyx_muticus,river turtle of Mississippi basin; prefers running water
+71083,smooth_sumac scarlet_sumac vinegar_tree Rhus_glabra,common nonpoisonous shrub of eastern North America with waxy compound leaves and green paniculate flowers followed by red berries
+71084,smooth_winterberry_holly,a holly shrub
+71085,smooth_woodsia Woodsia_glabella,rock-inhabiting fern of Arctic and subarctic Europe to eastern Asia
+71086,smoothbark,any of several Australian eucalypts having the bark smooth except at or near the base of the trunk
+71087,smoothbore,a firearm that has no rifling
+71088,smoothhound smoothhound_shark Mustelus_mustelus,smooth dogfish of European coastal waters
+71089,smoothie,a thick smooth drink consisting of fresh fruit pureed with ice cream or yoghurt or milk
+71090,smoothie smoothy sweet_talker charmer,someone with an assured and ingratiating manner
+71091,smoothness,a texture without roughness; smooth to the touch; "admiring the slim smoothness of her thighs"; "some artists prefer the smoothness of a board"
+71092,smoothness,the quality of having a level and even surface; "the water was a glassy smoothness"; "the weather system of the Pacific is determined by the uninterrupted smoothness of the ocean"
+71093,smoothness,the quality of being free from errors or interruptions; "the five-speed manual gearbox is smoothness personified"
+71094,smorgasbord,an assortment of foods starting with herring or smoked eel or salmon etc with bread and butter; then cheeses and eggs and pickled vegetables and aspics; finally hot foods; served as a buffet meal
+71095,smother,a stifling cloud of smoke
+71096,smoulder smolder,a fire that burns with thick smoke but no flame; "the smoulder suddenly became a blaze"
+71097,smudge,a smoky fire to drive away insects
+71098,smudge spot blot daub smear smirch slur,a blemish made by dirt; "he had a smudge on his cheek"
+71099,smuggler runner contrabandist moon_curser moon-curser,someone who imports or exports without paying duties
+71100,smuggling,secretly importing prohibited goods or goods on which duty is due
+71101,smugness,an excessive feeling of self-satisfaction
+71102,smut,destructive diseases of plants (especially cereal grasses) caused by fungi that produce black powdery masses of spores
+71103,smut smut_fungus,any fungus of the order Ustilaginales
+71104,smut_grass blackseed carpet_grass Sporobolus_poiretii,grass native to West Indies but common in southern United States having tufted wiry stems often infested with a dark fungus
+71105,smuttiness dirtiness,obscenity in speech or writing
+71106,smuttiness sootiness,the state of being dirty with soot
+71107,snack_bar snack_counter buffet,usually inexpensive bar
+71108,snack_food,food for light meals or for eating between meals
+71109,snaffle snaffle_bit,a simple jointed bit for a horse; without a curb
+71110,snafu,an acronym often used by soldiers in World War II: situation normal all fucked up
+71111,snag,a sharp protuberance
+71112,snag,a dead tree that is still standing, usually in an undisturbed forest; "a snag can provide food and a habitat for insects and birds"
+71113,snail,freshwater or marine or terrestrial gastropod mollusk usually having an external enclosing spiral shell
+71114,snail_butter,for preparing snails: butter seasoned with shallots and garlic and parsley
+71115,snail_darter Percina_tanasi,a small snail-eating perch of the Tennessee River
+71116,snail_mail,any mail that is physically delivered by the postal service; "email is much faster than snail mail"
+71117,snailfish seasnail sea_snail Liparis_liparis,small tadpole-shaped cold-water fishes with pelvic fins forming a sucker; related to lumpfish
+71118,snailflower snail-flower snail_flower snail_bean corkscrew_flower Vigna_caracalla Phaseolus_caracalla,perennial tropical American vine cultivated for its racemes of showy yellow and purple flowers having the corolla keel coiled like a snail shell; sometimes placed in genus Phaseolus
+71119,snake,something long, thin, and flexible that resembles a snake
+71120,snake serpent ophidian,limbless scaly elongate reptile; some are venomous
+71121,snake snake_in_the_grass,a deceitful or treacherous person
+71122,snake's_head_fritillary guinea-hen_flower checkered_daffodil leper_lily Fritillaria_meleagris,Eurasian checkered lily with pendant flowers usually veined and checkered with purple or maroon on a pale ground and shaped like the bells carried by lepers in medieval times; widely grown as an ornamental
+71123,snake_charmer,a performer who uses movements and music to control snakes
+71124,snake_dance,a group advancing in a single-file serpentine path
+71125,snake_dance,a ceremonial dance (as by the Hopi) in which snakes are handled or invoked
+71126,snake_mackerel Gempylus_serpens,predatory tropical fishes with jutting jaws and strong teeth
+71127,snake_muishond Poecilogale_albinucha,small slender burrowing muishond with white top of the head
+71128,snake_oil,(medicine) any of various liquids sold as medicine (as by a travelling medicine show) but medically worthless
+71129,snake_polypody Microgramma-piloselloides,epiphytic ferns with long rhizomes; tropical America
+71130,snake_venom,venom secreted by certain snakes
+71131,snakebird anhinga darter,fish-eating bird of warm inland waters having a long flexible neck and slender sharp-pointed bill
+71132,snakebite,a bite inflicted by a (venomous) snake
+71133,snakeblenny Lumpenus_lumpretaeformis,found in Arctic and northern Atlantic waters
+71134,snakefly,predatory insect of western North America having a long necklike prothorax
+71135,snakes_and_ladders,a board game for children who use dice to move counters up ladders and down snakes
+71136,snakewood Rauwolfia_serpentina,East Indian climbing shrub with twisted limbs and roots resembling serpents
+71137,snap,a spell of cold weather; "a cold snap in the middle of May"
+71138,snap,the noise produced by the rapid movement of a finger from the tip to the base of the thumb on the same hand; "servants appeared at the snap of his fingers"
+71139,snap,a sudden breaking
+71140,snap,the act of snapping the fingers; movement of a finger from the tip to the base of the thumb on the same hand; "he gave his fingers a snap"
+71141,snap snap_fastener press_stud,a fastener used on clothing; fastens with a snapping sound; "children can manage snaps better than buttons"
+71142,snap-brim_hat,a hat with a snap brim
+71143,snap_bean snap,tender green beans without strings that easily snap into sections
+71144,snap_brim,a brim that can be turned up and down on opposite sides
+71145,snap_roll,a fast roll
+71146,snapdragon,a garden plant of the genus Antirrhinum having showy white or yellow or crimson flowers resembling the face of a dragon
+71147,snapper,flesh of any of various important food fishes of warm seas
+71148,snapper,any of several large sharp-toothed marine food and sport fishes of the family Lutjanidae of mainly tropical coastal waters
+71149,snapper Chrysophrys_auratus,Australian food fish having a pinkish body with blue spots
+71150,snapping_shrimp pistol_shrimp,small shrimp that makes a snapping noise with one of their enlarged chelae
+71151,snapping_turtle,large aggressive freshwater turtle with powerful jaws
+71152,snapshot snap shot,an informal photograph; usually made with a small hand-held camera; "my snapshots haven't been developed yet"; "he tried to get unposed shots of his friends"
+71153,snapshot_program,a trace program that produces output for selected conditions
+71154,snare,a surgical instrument consisting of wire hoop that can be drawn tight around the base of polyps or small tumors to sever them; used especially in body cavities
+71155,snare,strings stretched across the lower head of a snare drum; they make a rattling sound when the drum is hit
+71156,snare gin noose,a trap for birds or small mammals; often has a slip noose
+71157,snare_drum snare side_drum,a small drum with two heads and a snare stretched across the lower head
+71158,snarer,someone who sets snares for birds or small animals
+71159,snarl,a vicious angry growl
+71160,snarl,an angry vicious expression
+71161,snatch,a weightlift in which the barbell is lifted overhead in one rapid motion
+71162,snatch bit,a small fragment; "overheard snatches of their conversation"
+71163,snatch_block,a pulley-block that can be opened to receive the bight of a rope
+71164,snatcher,a thief who grabs and runs; "a purse snatcher"
+71165,sneak,a person who is regarded as underhanded and furtive and contemptible
+71166,sneak_preview,a preview to test audience reactions
+71167,sneak_thief pilferer snitcher,a thief who steals without using violence
+71168,sneer,a contemptuous or scornful remark
+71169,sneer leer,a facial expression of contempt or scorn; the upper lip curls
+71170,sneerer scorner,a person who expresses contempt by remarks or facial expression
+71171,sneeze sneezing sternutation,a symptom consisting of the involuntary expulsion of air from the nose
+71172,sneezer,a person who sneezes
+71173,sneezeweed,any of various plants of the genus Helenium characteristically causing sneezing
+71174,sneezeweed_yarrow sneezewort Achillea_ptarmica,Eurasian herb having loose heads of button-shaped white flowers and long grey-green leaves that cause sneezing when powdered
+71175,snick,a glancing contact with the ball off the edge of the cricket bat
+71176,snicker snort snigger,a disrespectful laugh
+71177,sniff snuff,sensing an odor by inhaling through the nose
+71178,sniffer,a person who sniffs
+71179,sniffler sniveler,a person who breathes audibly through a congested nose
+71180,snifter brandy_snifter brandy_glass,a globular glass with a small top; used for serving brandy
+71181,snip snippet snipping,a small piece of anything (especially a piece that has been snipped off)
+71182,snipe,Old or New World straight-billed game bird of the sandpiper family; of marshy areas; similar to the woodcocks
+71183,snipe,a gunshot from a concealed location
+71184,snipe_hunt,an elaborate practical joke in which the unsuspecting victim hunts a snipe and is typically left in the dark holding a bag and waiting for the snipe to run into it; "in the South a snipe hunt is practically a rite of passage"
+71185,snipefish bellows_fish,small bottom-dwelling fish of warm seas having a compressed body and a long snout with a toothless mouth
+71186,sniper,a marksman who shoots at people from a concealed place
+71187,sniper_rifle precision_rifle,an extremely powerful rifle developed for the military; capable of destroying light armored vehicles and aircraft more than a mile away
+71188,snips tinsnips,(plural) hand shears for cutting sheet metal
+71189,snit,a state of agitated irritation; "he was in a snit"
+71190,snivel sniveling,whining in a tearful manner
+71191,snob prig snot snoot,a person regarded as arrogant and annoying
+71192,snobbery snobbism snobbishness,the trait of condescending to those of lower social status
+71193,snogging,(British informal) cuddle and kiss
+71194,snood,an ornamental net in the shape of a bag that confines a woman's hair; pins or ties at the back of the head
+71195,snook,large tropical American food and game fishes of coastal and brackish waters; resemble pike
+71196,snooker,a form of pool played with 15 red balls and six balls of other colors and a cue ball
+71197,snoop snooper,a spy who makes uninvited inquiries into the private affairs of others
+71198,snootiness,the quality of being snooty; "he disliked his neighbors' snootiness"
+71199,snore,the rattling noise produced when snoring
+71200,snore snoring stertor,the act of snoring or producing a snoring sound
+71201,snorer,someone who snores while sleeping
+71202,snorkel,breathing device consisting of a bent tube fitting into a swimmer's mouth and extending above the surface; allows swimmer to breathe while face down in the water
+71203,snorkel schnorkel schnorchel snorkel_breather breather,air passage provided by a retractable device containing intake and exhaust pipes; permits a submarine to stay submerged for extended periods of time
+71204,snorkeling snorkel_diving,skin diving with a snorkel
+71205,snorter,someone who expresses contempt or indignation by uttering a snorting sound
+71206,snorter,something outstandingly difficult; "the problem was a real snorter"
+71207,snorter,something that is extraordinary or remarkable or prominent; "a snorter of a sermon"; "the storm wasn't long but it was a snorter"
+71208,snot,nasal mucus
+71209,snout neb,a long projecting or anterior elongation of an animal's head; especially the nose
+71210,snout rostrum,beaklike projection of the anterior part of the head of certain insects such as e.g. weevils
+71211,snout_beetle,small weevil having a prolonged snout; destructive to e.g. grains and nuts
+71212,snow,a layer of snowflakes (white crystals of frozen water) covering the ground
+71213,snow snowfall,precipitation falling from clouds in the form of ice crystals
+71214,snow-in-summer love-in-a-mist Cerastium_tomentosum,chickweed with hairy silver-grey leaves and rather large white flowers
+71215,snow-on-the-mountain snow-in-summer ghost_weed Euphorbia_marginata,annual spurge of western United States having showy white-bracted flower clusters and very poisonous milk
+71216,snow_bunting snowbird snowflake Plectrophenax_nivalis,white Arctic bunting
+71217,snow_goose,blue goose in the white color phase
+71218,snow_gum ghost_gum white_ash Eucalyptus_coriacea Eucalyptus_pauciflora,small to medium-sized tree of Australia and Tasmania having smooth white to light-grey bark shedding in patches or strips
+71219,snow_job,a long and elaborate misrepresentation
+71220,snow_leopard ounce Panthera_uncia,large feline of upland central Asia having long thick whitish fur
+71221,snow_line,the line on a mountain above which there is perpetual snow and ice
+71222,snow_mushroom Tremella_fuciformis,popular in China and Japan and Taiwan; gelatinous mushrooms; most are dried
+71223,snow_pea sugar_pea,variety of pea plant producing peas having thin flat edible pods
+71224,snow_pea sugar_pea,green peas with flat edible pods
+71225,snow_plant Sarcodes_sanguinea,a fleshy bright red saprophytic plant of the mountains of western North America that appears in early spring while snow is on the ground
+71226,snow_thrower snow_blower,a machine that removes snow by scooping it up and throwing it forcefully through a chute
+71227,snow_tire,an automobile pneumatic tire with deep tread to give traction in snow
+71228,snowball,ball of ice cream covered with coconut and usually chocolate sauce
+71229,snowball,ball of crushed ice with fruit syrup
+71230,snowball,snow pressed into a ball for throwing (playfully)
+71231,snowball sweet_sand_verbena Abronia_elliptica,plant having heads of fragrant white trumpet-shaped flowers; grows in sandy arid regions
+71232,snowbank snow_bank,a mound or heap of snow
+71233,snowbell Styrax_obassia,small tree native to Japan
+71234,snowberry common_snowberry waxberry Symphoricarpos_alba,deciduous shrub of western North America having spikes of pink flowers followed by round white berries
+71235,snowblindness snow-blindness,temporary blindness caused by exposure to sunlight reflected from snow or ice
+71236,snowboard,a board that resembles a broad ski or a small surfboard; used in a standing position to slide down snow-covered slopes
+71237,snowboarder,someone who slides down snow-covered slopes while standing on a snowboard
+71238,snowboarding,the act of sliding down a snow-covered slope while standing on a snowboard
+71239,snowcap,a covering of snow (as on a mountain peak)
+71240,snowdrift,a mass of snow heaped up by the wind
+71241,snowdrop_anemone snowdrop_windflower Anemone_sylvestris,Eurasian herb with solitary nodding fragrant white flowers
+71242,snowfield,a permanent wide expanse of snow
+71243,snowflake flake,a crystal of snow
+71244,snowman,a figure of a person made of packed snow
+71245,snowmobile,tracked vehicle for travel on snow having skis in front
+71246,snowplow snowplough,a vehicle used to push snow from roads
+71247,snowshoe,a device to help you walk on deep snow; a lightweight frame shaped like a racquet is strengthened with cross pieces and contains a network of thongs; one is worn on each foot
+71248,snowshoe_hare snowshoe_rabbit varying_hare Lepus_americanus,large large-footed North American hare; white in winter
+71249,snowsuit,a child's overgarment for cold weather
+71250,snowy_egret snowy_heron Egretta_thula,small New World egret
+71251,snowy_orchid Habenaria_nivea,slender fringed orchid of eastern North America having white flowers
+71252,snowy_tree_cricket Oecanthus_fultoni,pale yellowish tree cricket widely distributed in North America
+71253,snub cut cold_shoulder,a refusal to recognize someone you know; "the snub was clearly intentional"
+71254,snuff,the charred portion of a candlewick
+71255,snuff,a pinch of smokeless tobacco inhaled at a single time
+71256,snuff,finely powdered tobacco for sniffing up the nose
+71257,snuff-color snuff-colour,dark yellowish brown
+71258,snuffbox,a small ornamental box for carrying snuff in your pocket
+71259,snuffbox_fern meadow_fern Thelypteris_palustris_pubescens Dryopteris_thelypteris_pubescens,fern of northeastern North America
+71260,snuffer,a person who snuffs out candles
+71261,snuffer,a cone-shaped implement with a handle; for extinguishing candles
+71262,snuffer snuff_user,a person who uses snuff
+71263,snuffers,scissors for cropping and holding the snuff of a candlewick
+71264,snuffle sniffle snivel,the act of breathing heavily through the nose (as when the nose is congested)
+71265,snuffler,a person who breathes noisily (as through a nose blocked by mucus)
+71266,soak soakage soaking,the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid); "a good soak put life back in the wagon"
+71267,soak soaking,washing something by allowing it to soak
+71268,soap,money offered as a bribe
+71269,soap,a cleansing agent made from the salts of vegetable or animal fats
+71270,soap scoop max liquid_ecstasy grievous_bodily_harm goop Georgia_home_boy easy_lay,street names for gamma hydroxybutyrate
+71271,soap_bubble,a bubble formed by a thin soap film
+71272,soap_dish,a bathroom or kitchen fixture for holding a bar of soap
+71273,soap_dispenser,dispenser of liquid soap
+71274,soap_film,a film left on objects after they have been washed in soap
+71275,soap_flakes,soap that has been cut into flakes to make suds faster
+71276,soap_opera,a serialized program usually dealing with sentimentalized family matters that is broadcast on radio or television (frequently sponsored by a company advertising soap products)
+71277,soap_pad,a cleaning pad containing soap
+71278,soap_powder built-soap_powder washing_powder,soap in powdered form mixed with alkaline builders
+71279,soapberry soapberry_tree,a tree of the genus Sapindus whose fruit is rich in saponin
+71280,soapberry_vine,tendril-climbing vine
+71281,soapbox,a crate for packing soap
+71282,soapfish,fishes with slimy mucus-covered skin; found in the warm Atlantic coastal waters of America
+71283,soapiness,the quality of being soap or being covered with soap; "she could smell the soapiness of the doctor's hands"
+71284,soapstone soaprock soap-rock steatite,a soft heavy compact variety of talc having a soapy feel; used to make hearths and tabletops and ornaments
+71285,soapsuds suds lather,the froth produced by soaps or detergents
+71286,soapweed soap-weed soap_tree Yucca_elata,tall arborescent yucca of southwestern United States
+71287,soapwort hedge_pink bouncing_Bet bouncing_Bess Saponaria_officinalis,plant of European origin having pink or white flowers and leaves yielding a detergent when bruised
+71288,soapwort_gentian Gentiana_saponaria,erect perennial of wet woodlands of North America having leaves and flower buds resembling those of soapwort
+71289,soar zoom,the act of rising upward into the air
+71290,sob sobbing,convulsive gasp made while weeping
+71291,sob_sister,a journalist who specializes in sentimental stories
+71292,sob_story sob_stuff,a sentimental story (or drama) of personal distress; designed to arouse sympathy
+71293,soberness sobriety,the state of being sober and not intoxicated by alcohol
+71294,sobersides,a serious and sedate individual
+71295,sobralia,any of various showy orchids of the genus Sobralia having leafy stems and bright-colored solitary or racemose flowers similar to those of genus Cattleya
+71296,sobriety dryness,moderation in or abstinence from alcohol or other drugs
+71297,sobriety temperance,abstaining from excess
+71298,socage,land tenure by agricultural service or payment of rent; not burdened with military service
+71299,soccer association_football,a football game in which two teams of 11 players try to kick or head a ball into the opponents' goal
+71300,soccer_ball,an inflated ball used in playing soccer
+71301,soccer_player,an athlete who plays soccer
+71302,sociability sociableness,the relative tendency or disposition to be sociable or associate with one's fellows
+71303,sociable social mixer,a party of people assembled to promote sociability and communal activity
+71304,social_action,a social policy of reform (especially socioeconomic reform)
+71305,social_activity,activity considered appropriate on social occasions
+71306,social_anthropologist cultural_anthropologist,an anthropologist who studies such cultural phenomena as kinship systems
+71307,social_anthropology cultural_anthropology,the branch of anthropology that deals with human culture and society
+71308,social_climber climber,someone seeking social prominence by obsequious behavior
+71309,social_contract,an implicit agreement among people that results in the organization of society; individual surrenders liberty in return for protection
+71310,social_control,control exerted (actively or passively) by group action
+71311,social_dancing,dancing as part of a social occasion
+71312,social_democracy,the belief in a gradual transition from capitalism to socialism by democratic means
+71313,social_event,an event characteristic of persons forming groups
+71314,social_gathering social_affair,a gathering for the purpose of promoting fellowship
+71315,social_group,people sharing some social relation
+71316,social_insect,an insect that lives in a colony with other insects of the same species
+71317,social_insurance,government provision for unemployed, injured, or aged people; financed by contributions from employers and employees as well as by government revenue
+71318,social_organization social_organisation social_structure social_system structure,the people in a society considered as a system organized by a characteristic pattern of relationships; "the social organization of England and America is very different"; "sociologists have studied the changing structure of the family"
+71319,social_phobia,any phobia (other than agoraphobia) associated with situations in which you are subject to criticism by others (as fear of eating in public or public speaking etc)
+71320,social_policy,a policy of for dealing with social issues
+71321,social_process,a process involved in the formation of groups of persons
+71322,social_psychology,the branch of psychology that studies persons and their relationships with others and with groups and with society as a whole
+71323,social_relation,a relation between living organisms (especially between people)
+71324,social_science,the branch of science that studies society and the relationships of individual within a society
+71325,social_scientist,someone expert in the study of human society and its personal relationships
+71326,social_season,the season for major social events
+71327,social_secretary,a personal secretary who handles your social correspondence and appointments
+71328,social_station social_status social_rank rank,position in a social hierarchy; "the British are more aware of social status than Americans are"
+71329,social_welfare welfare public_assistance,governmental provision of economic assistance to persons in need; "she lives on welfare"
+71330,social_work,any of various services designed to aid the poor and aged and to increase the welfare of children
+71331,social_worker caseworker welfare_worker,someone employed to provide social services (especially to the disadvantaged)
+71332,socialism,a political theory advocating state ownership of industry
+71333,socialism socialist_economy,an economic system based on state ownership of capital
+71334,socialist,a political advocate of socialism
+71335,socialite,a socially prominent person
+71336,sociality,the tendency to associate with others and to form social groups; "mammals as a class are not strong on sociality"
+71337,socialization socialisation,the action of establishing on a socialist basis; "the socialization of medical services"
+71338,socialization socialisation acculturation enculturation,the adoption of the behavior patterns of the surrounding culture; "the socialization of children to the norms of their culture"
+71339,socialization socialisation socializing socialising,the act of meeting for social purposes; "there was too much socialization with the enlisted men"
+71340,socializer socialiser,a person who takes part in social activities
+71341,society,an extended social group having a distinctive cultural and economic organization
+71342,society high_society beau_monde smart_set bon_ton,the fashionable elite
+71343,sociobiologist,a biologist who studies the biological determinants of social behavior
+71344,sociobiology,the branch of biology that conducts comparative studies of the social organization of animals (including human beings) with regard to its evolutionary history
+71345,sociolinguist,a linguist who studies the social and cultural factors that influence linguistic communication
+71346,sociolinguistics,the study of language in relation to its sociocultural context
+71347,sociologist,a social scientist who studies the institutions and development of human society
+71348,sociology,the study and classification of human societies
+71349,sociology_department department_of_sociology,the academic department responsible for teaching and research in sociology
+71350,sociometry,the quantitative study of social relationships
+71351,sociopath psychopath,someone with a sociopathic personality; a person with an antisocial personality disorder (`psychopath' was once widely used but has now been superseded by `sociopath')
+71352,sock,hosiery consisting of a cloth covering for the foot; worn inside the shoe; reaches to between the ankle and the knee
+71353,socket,a bony hollow into which a structure fits
+71354,socket,receptacle where something (a pipe or probe or end of a bone) is inserted
+71355,socket,a receptacle into which an electric device can be inserted
+71356,socket_wrench,a wrench with a handle onto which sockets of different sizes can be fitted
+71357,sockeye sockeye_salmon red_salmon blueback_salmon Oncorhynchus_nerka,small salmon with red flesh; found in rivers and tributaries of the northern Pacific and valued as food; adults die after spawning
+71358,socle,a plain plinth that supports a wall
+71359,sod_house soddy adobe_house,a house built of sod or adobe laid in horizontal courses
+71360,soda_can,a can for holding soft drinks
+71361,soda_cracker,unsweetened cracker leavened slightly with soda and cream of tartar
+71362,soda_fountain,a counter where ice cream and sodas and sundaes are prepared and served
+71363,soda_fountain,an apparatus for dispensing soda water
+71364,soda_jerk soda_jerker,someone who works at a soda fountain
+71365,soda_lime,a mixture of sodium and calcium hydroxides; absorbs liquids and gases
+71366,soda_water carbonated_water club_soda seltzer sparkling_water,effervescent beverage artificially charged with carbon dioxide
+71367,sodalist,a member of a sodality
+71368,sodalite,a vitreous mineral consisting of sodium aluminum silicate and sodium chloride in crystalline form; occurs in igneous rocks
+71369,sodium Na atomic_number_11,a silvery soft waxy metallic element of the alkali metal group; occurs abundantly in natural compounds (especially in salt water); burns with a yellow flame and reacts violently in water; occurs in sea water and in the mineral halite (rock salt)
+71370,sodium-vapor_lamp sodium-vapour_lamp,lamp in which an electric current passed through a tube of sodium vapor makes a yellow light; used is street lighting
+71371,sodium_carbonate washing_soda sal_soda soda_ash soda,a sodium salt of carbonic acid; used in making soap powders and glass and paper
+71372,sodium_carboxymethyl_cellulose,a gummy substance that is a sodium salt of carboxymethyl cellulose; used as a thickening or emulsifying agent
+71373,sodium_chlorate,a colorless salt (NaClO3) used as a weed killer and an antiseptic
+71374,sodium_chloride common_salt,a white crystalline solid consisting mainly of sodium chloride (NaCl)
+71375,sodium_cyanide,a white poisonous salt (NaCN) used in electroplating
+71376,sodium_dichromate sodium_bichromate,a red-orange salt used as a mordant
+71377,sodium_fluoride,a colorless crystalline salt of sodium (NaF) used in fluoridation of water and to prevent tooth decay
+71378,sodium_hydride,a flammable grey crystalline binary compound (NaH)
+71379,sodium_hydroxide caustic_soda,a strongly alkaline caustic used in manufacturing soap and paper and aluminum and various sodium compounds
+71380,sodium_hypochlorite,an unstable salt (NaOCl) used as a bleaching agent and disinfectant
+71381,sodium_iodide,a crystalline salt used like potassium iodide
+71382,sodium_lauryl_sulphate sodium_lauryl_sulfate SLS,a caustic detergent useful for removing grease; although commonly included in personal care items (shampoos and toothpastes etc.) it can irritate skin and should not be swallowed
+71383,sodium_nitrate soda_niter,(NaNO3) used especially as a fertilizer and explosive
+71384,sodium_nitrite,nitrite used to preserve and color food especially in meat and fish products; implicated in the formation of suspected carcinogens
+71385,sodium_phosphate sodium_orthophosphate,phosphate of sodium; used as a laxative to cleanse the bowels
+71386,sodium_pyrophosphate tetrasodium_pyrophosphate,a sodium salt of pyrophosphoric acid used as a builder in soaps and detergents
+71387,sodium_salicylate,a crystalline salt used as an analgesic and antipyretic
+71388,sodium_sulphate sodium_sulfate,a solid white bitter salt used in manufacturing glass and paper and dyes and pharmaceuticals
+71389,sodium_thiopental phenobarbital phenobarbitone Luminal purple_heart,a long-acting barbiturate used as a sedative
+71390,sodium_tripolyphosphate,a sodium salt of triphosphoric acid used as a builder in soaps and detergents
+71391,sodoku spirillum_fever,the form of ratbite fever occurring in the Far East
+71392,sodom,any location known for vice and corruption
+71393,sodomite sodomist sod bugger,someone who engages in anal copulation (especially a male who engages in anal copulation with another male)
+71394,sodomy buggery anal_sex anal_intercourse,intercourse via the anus, committed by a man with a man or woman
+71395,sofa couch lounge,an upholstered seat for more than one person
+71396,soffit,the underside of a part of a building (such as an arch or overhang or beam etc.)
+71397,soft-coated_wheaten_terrier,Irish breed of medium-sized terrier with an abundant coat any shade of wheat and very hairy head and muzzle
+71398,soft-finned_fish malacopterygian,any fish of the superorder Malacopterygii
+71399,soft-shell_clam steamer steamer_clam long-neck_clam,a clam that is usually steamed in the shell
+71400,soft-shell_clam steamer steamer_clam long-neck_clam Mya_arenaria,an edible clam with thin oval-shaped shell found in coastal regions of the United States and Europe
+71401,soft-shell_crab soft-shelled_crab,freshly molted crab with new shell still tender and flexible
+71402,soft-shell_crab soft-shelled_crab,edible crab that has recently molted and not yet formed its new shell
+71403,soft-shelled_turtle pancake_turtle,voracious aquatic turtle with a flat flexible shell covered by a leathery skin; can inflict painful bites
+71404,soft-shoe soft-shoe_shuffle soft-shoe_dancing,tap dancing wearing shoes that have soft soles
+71405,soft_copy,(computer science) matter that is in a form that a computer can store or display it on a computer screen; "he sent them soft copy of the report"
+71406,soft_corn flour_corn squaw_corn Zea_mays_amylacea,corn having kernels almost entirely of soft starch
+71407,soft_diet pap spoon_food,a diet that does not require chewing; advised for those with intestinal disorders
+71408,soft_drink,nonalcoholic beverage (usually carbonated)
+71409,soft_drug,a drug of abuse that is considered relatively mild and not likely to cause addiction
+71410,soft_glass,glass having a relatively low softening point
+71411,soft_money,political contributions made in such a way as to avoid the United States regulations for federal election campaigns (as by contributions to a political action committee)
+71412,soft_news,news that does not deal with serious topics or events
+71413,soft_option,an easier alternative; "the instructor took the soft option and gave the boy a passing grade"
+71414,soft_palate velum,a muscular flap that closes off the nasopharynx during swallowing or speaking
+71415,soft_pedal,a pedal on a piano that moves the action closer to the strings and so soften the sound
+71416,soft_pretzel,a pretzel made of soft bread
+71417,soft_roll,yeast-raised roll with a soft crust
+71418,soft_rot,mushy or slimy decay of plants caused by bacteria or fungi
+71419,soft_scale,an insect active in all stages
+71420,soft_sell,suggestive or persuasive advertising
+71421,soft_shield_fern Polystichum_setiferum,European shield fern cultivated in many varieties
+71422,soft_soap green_soap,a soft (or liquid) soap made from vegetable oils; used in certain skin diseases
+71423,soft_solder,solder that melts at a relatively low temperature
+71424,soft_spot,a sentimental affection; "she had a soft spot for her youngest son"
+71425,soft_tick argasid,tick lacking a dorsal shield and having mouth parts on the under side of the head
+71426,soft_tree_fern Dicksonia_antarctica,of Australia and Tasmania; often cultivated; hardy in cool climates
+71427,soft_water,water that is not hard (does not contain mineral salts that interfere with the formation of lather with soap)
+71428,soft_wheat,wheat with soft starch kernels used in pastry and breakfast cereals
+71429,softball playground_ball,ball used in playing softball
+71430,softball softball_game,a game closely resembling baseball that is played on a smaller diamond and with a ball that is larger and softer
+71431,softener,a substance added to another to make it less hard
+71432,softening,the process of becoming softer; "refrigeration delayed the softening of the fruit"; "he observed the softening of iron by heat"
+71433,softheartedness tenderness,a feeling of concern for the welfare of someone (especially someone defenseless)
+71434,softness,a state of declining economic condition; "orders have recently picked up after a period of extreme softness"; "he attributes the disappointing results to softness in the economy"
+71435,softness,a sound property that is free from loudness or stridency; "and in softness almost beyond hearing"
+71436,softness,a visual property that is subdued and free from brilliance or glare; "the softness of the morning sky"
+71437,softness,the property of giving little resistance to pressure and being easily cut or molded
+71438,softness,a disposition to be lenient in judging others; "softness is not something permitted of good leaders"
+71439,software software_program computer_software software_system software_package package,(computer science) written programs or procedures or rules and associated documentation pertaining to the operation of a computer system and that are stored in read/write memory; "the market for software is expected to expand"
+71440,software_documentation documentation,program listings or technical manuals describing the operation and use of programs
+71441,software_error programming_error,error resulting from bad code in some program involved in producing the erroneous result
+71442,software_package software_product,merchandise consisting of a computer program that is offered for sale
+71443,softwood deal,wood that is easy to saw (from conifers such as pine or fir)
+71444,softy softie,a person who is weak and excessively sentimental
+71445,sogginess,a heavy wetness
+71446,soil dirt,the part of the earth's surface consisting of humus and disintegrated rock
+71447,soil_bank,land retired from crop cultivation and planted with soil-building crops; government subsidies are paid to farmers for their retired land
+71448,soil_conditioner,a chemical substance used to improve the structure of the soil and increase its porosity; "gypsum can be used as a soil conditioner"
+71449,soil_conservation,protection of soil against erosion or deterioration
+71450,soil_erosion,the washing away of soil by the flow of water
+71451,soil_horizon,a layer in a soil profile
+71452,soil_pipe,drain that conveys liquid waste from toilets, etc.
+71453,soil_profile,a vertical section of soil from the ground surface to the parent rock
+71454,soiling soilure dirtying,the act of soiling something
+71455,soiree,a party of people assembled in the evening (usually at a private house)
+71456,soixante-neuf sixty-nine,oral sex practiced simultaneously by two people
+71457,sojourn visit,a temporary stay (e.g., as a guest)
+71458,sojourner,a temporary resident
+71459,sol colloidal_solution colloidal_suspension,a colloid that has a continuous liquid phase in which a solid is suspended in a liquid
+71460,sol soh so,the syllable naming the fifth (dominant) note of any musical scale in solmization
+71461,solace solacement,comfort in disappointment or misery
+71462,solan solan_goose solant_goose Sula_bassana,very large white gannet with black wing tips
+71463,solanaceous_vegetable,any of several fruits of plants of the family Solanaceae; especially of the genera Solanum, Capsicum, and Lycopersicon
+71464,solar_array solar_battery solar_panel,electrical device consisting of a large array of connected solar cells
+71465,solar_calendar,a calendar based on solar cycles
+71466,solar_cell photovoltaic_cell,a cell that converts solar energy into electrical energy
+71467,solar_constant,the rate at which radiant solar energy is received at the outer layer of the earth's atmosphere
+71468,solar_dish solar_collector solar_furnace,a concave mirror that concentrates the rays of the sun; can produce high temperatures
+71469,solar_eclipse,the moon interrupts light from the sun
+71470,solar_energy solar_power,energy from the sun that is converted into thermal or electrical energy; "the amount of energy falling on the earth is given by the solar constant, but very little use has been made of solar energy"
+71471,solar_flare flare,a sudden eruption of intense high-energy radiation from the sun's surface; associated with sunspots and radio interference
+71472,solar_gravity,the gravity of the sun; "solar gravity creates extreme pressures and temperatures"
+71473,solar_halo parhelic_circle parhelic_ring,a luminous halo parallel to the horizon at the altitude of the sun; caused by ice crystals in the atmosphere
+71474,solar_heater,a heater that makes direct use of solar energy
+71475,solar_house,a house designed to use solar radiation for heating; usually has large areas of glass in front of heat-absorbing materials
+71476,solar_magnetic_field,the magnetic field of the sun
+71477,solar_month,one-twelfth of a solar or tropical year
+71478,solar_parallax,the angle subtended by the mean equatorial radius of the Earth at a distance of one astronomical unit
+71479,solar_physics,the branch of astronomy that deals with the sun
+71480,solar_plexus coeliac_plexus plexus_celiacus abdominal_nerve_plexus,a large plexus of sympathetic nerves in the abdomen behind the stomach
+71481,solar_prominence,large eruptions of luminous hydrogen gas that rise thousands of kilometers above the chromosphere
+71482,solar_radiation,radiation from the sun
+71483,solar_system,the sun with the celestial bodies that revolve around it in its gravitational field
+71484,solar_telescope,a telescope designed to make observations of the sun
+71485,solar_thermal_system,a system that converts sunlight into heat
+71486,solar_wind,a stream of protons moving radially from the sun
+71487,solar_year tropical_year astronomical_year equinoctial_year,the time for the earth to make one revolution around the sun, measured between two vernal equinoxes
+71488,solarization solarisation,exposure to the rays of the sun
+71489,solder,an alloy (usually of lead and tin) used when melted to join two metal surfaces
+71490,solderer,a worker who joins or mends with solder
+71491,soldering_flux,flux applied to surfaces that are to be joined by soldering; flux cleans the surfaces and results in a better bond
+71492,soldering_iron,a hand tool with a heatable tip; used to melt and apply solder
+71493,soldier,an enlisted man or woman who serves in an army; "the soldiers stood at attention"
+71494,soldier,a wingless sterile ant or termite having a large head and powerful jaws adapted for defending the colony
+71495,soldier_grainy_club,a variety of grainy club
+71496,soldierfish soldier-fish,the larger squirrelfishes
+71497,soldiering soldiership,skills that are required for the life of soldier
+71498,sole,the underside of the foot
+71499,sole,the underside of footwear or a golf club
+71500,sole,right-eyed flatfish; many are valued as food; most common in warm seas especially European
+71501,sole fillet_of_sole,lean flesh of any of several flatfish
+71502,solenogaster aplacophoran,deep-water wormlike mollusks lacking calcareous plates on the body but having fine slimy spicules on the covering mantle
+71503,solenoid,a coil of wire around an iron core; becomes a magnet when current passes through the coil
+71504,soleus soleus_muscle,a broad flat muscle in the calf of the leg under the gastrocnemius muscle
+71505,solfa_syllable,one of the names for notes of a musical scale in solmization
+71506,solfege solfeggio,a voice exercise; singing scales or runs to the same syllable
+71507,solferino purplish_pink,a pink dye that was discovered in 1859, the year a battle was fought at Solferino
+71508,solicitation,an entreaty addressed to someone of superior status; "a solicitation to the king for relief"
+71509,solicitation allurement,the act of enticing a person to do something wrong (as an offer of sex in return for money)
+71510,solicitation appeal collection ingathering,request for a sum of money; "an appeal to raise money for starving children"
+71511,solicitor,a British lawyer who gives legal advice and prepares legal documents
+71512,solicitor canvasser,a petitioner who solicits contributions or trade or votes
+71513,solicitor_general,a law officer appointed to assist an attorney general
+71514,solicitorship,the position of solicitor
+71515,solicitude solicitousness,a feeling of excessive concern
+71516,solid,matter that is solid at room temperature and pressure
+71517,solid,a three-dimensional shape
+71518,solid solidness solid_state,the state in which a substance has no tendency to flow under moderate stress; resists forces (such as compression) that tend to deform it; and retains a definite size and shape
+71519,solid-state_physics,the branch of physics that studies the properties of materials in the solid state: electrical conduction in crystals of semiconductors and metals; superconductivity; photoconductivity
+71520,solid_angle,an angle formed by three or more planes intersecting at a common point (the vertex)
+71521,solid_body_substance,the solid parts of the body
+71522,solid_figure three-dimensional_figure,a three-dimensional shape
+71523,solid_geometry,the geometry of 3-dimensional space
+71524,solid_solution primary_solid_solution,a homogeneous solid that can exist over a range of component chemicals; a constituent of alloys that is formed when atoms of an element are incorporated into the crystals of a metal
+71525,solidarity,a union of interests or purposes or sympathies among members of a group
+71526,solidity,state of having the interior filled with matter
+71527,solidity solidness,the consistency of a solid
+71528,solidity solidness,the quality of being solid and reliable financially or factually or morally; "the solidity of the evidence worked in his favor"; "the solidness of her faith gave her enduring hope"
+71529,solidus slash virgule diagonal stroke separatrix,a punctuation mark (/) used to separate related items of information
+71530,soliloquy,a (usually long) dramatic speech intended to give the illusion of unspoken reflections
+71531,soliloquy monologue,speech you make to yourself
+71532,solipsism,(philosophy) the philosophical theory that the self is all that you know to exist
+71533,solitaire,a gem (usually a diamond) in a setting by itself
+71534,solitaire,a dull grey North American thrush noted for its beautiful song
+71535,solitaire Pezophaps_solitaria,extinct flightless bird related to the dodo
+71536,solitaire patience,a card game played by one person
+71537,solitary_confinement solitary,confinement of a prisoner in isolation from other prisoners; "he was held in solitary"
+71538,solitary_pussytoes,a variety of pussytoes
+71539,solitary_vireo Vireo_solitarius,of eastern North America having a bluish-grey head and mostly green body
+71540,soliton soliton_wave solitary_wave,(physics) a quantum of energy or quasiparticle that can be propagated as a traveling wave in nonlinear systems and is neither preceded nor followed by another such disturbance; does not obey the superposition principle and does not dissipate; "soliton waves can travel long distances with little loss of energy or structure"
+71541,solitude,the state or situation of being alone
+71542,solitude,a solitary place
+71543,solitude purdah,a state of social isolation
+71544,solleret sabaton,armor plate that protects the foot; consists of mail with a solid toe and heel
+71545,solmization solfege solfeggio,singing using solfa syllables to denote the notes of the scale of C major
+71546,solmization solmisation,a system of naming the notes of a musical scale by syllables instead of letters
+71547,solo,a musical composition for one voice or instrument (with or without accompaniment)
+71548,solo,any activity that is performed alone without assistance
+71549,solo,a flight in which the aircraft pilot is unaccompanied
+71550,solo_homer solo_blast,a home run with no runners on base
+71551,soloist,a musician who performs a solo
+71552,solstice,either of the two times of the year when the sun is at its greatest distance from the celestial equator
+71553,solubility,the quantity of a particular substance that can dissolve in a particular solvent (yielding a saturated solution)
+71554,solubility,the quality of being soluble and easily dissolved in liquid
+71555,soluble_glass water_glass sodium_silicate,a viscous glass consisting of sodium silicate in solution; used as a cement or as a protective coating and to preserve eggs
+71556,solute,the dissolved matter in a solution; the component of a solution that changes its state
+71557,solution,a homogeneous mixture of two or more substances; frequently (but not necessarily) a liquid solution; "he used a solution of peroxide and water"
+71558,solution,a method for solving a problem; "the easy solution is to look it up in the handbook"
+71559,solution,the successful action of solving a problem; "the solution took three hours"
+71560,solution answer result resolution solvent,a statement that solves a problem or explains how to solve the problem; "they were trying to find a peaceful solution"; "the answers were in the back of the book"; "he computed the result to four decimal places"
+71561,solution root,the set of values that give a true statement when substituted into an equation
+71562,solvability solubility,the property (of a problem or difficulty) that makes it possible to solve
+71563,solvate,a compound formed by solvation (the combination of solvent molecules with molecules or ions of the solute)
+71564,solvating_agent,an agent that converts something into a solvate
+71565,solvation,a chemical process in which solvent molecules and molecules or ions of the solute combine to form a compound
+71566,solvency,the ability to meet maturing obligations as they come due
+71567,solvent dissolvent dissolver dissolving_agent resolvent,a liquid substance capable of dissolving other substances; "the solvent does not change its state in forming a solution"
+71568,som,the basic unit of money in Uzbekistan
+71569,som,the basic unit of money in Kyrgyzstan
+71570,soma haoma Sarcostemma_acidum,leafless East Indian vine; its sour milky juice formerly used to make an intoxicating drink
+71571,soman GD,a nerve agent easily absorbed into the body; a lethal cholinesterase inhibitor that is highly toxic when inhaled
+71572,somatic_cell vegetative_cell,any of the cells of a plant or animal except the reproductive cells; a cell that does not participate in the production of gametes; "somatic cells are produced from preexisting cells"
+71573,somatic_cell_nuclear_transplantation somatic_cell_nuclear_transfer SCNT nuclear_transplantation,moving a cell nucleus and its genetic material from one cell to another
+71574,somatic_delusion,a delusion concerning the body image or parts of the body
+71575,somatosense,any of the sensory systems that mediate sensations of pressure and tickle and warmth and cold and vibration and limb position and limb movement and pain
+71576,somatotropin somatotrophin somatotropic_hormone somatotrophic_hormone STH human_growth_hormone growth_hormone,a hormone produced by the anterior pituitary gland; promotes growth in humans
+71577,sombrero,a straw hat with a tall crown and broad brim; worn in American southwest and in Mexico
+71578,somersault somerset summersault summerset somersaulting flip,an acrobatic feat in which the feet roll over the head (either forward or backward) and return
+71579,somesthesia somaesthesia somatesthesia somatic_sensation,the perception of tactual or proprioceptive or gut sensations; "he relied on somesthesia to warn him of pressure changes"
+71580,somesthesia somesthesis somaesthesia somaesthesis somatesthesia somataesthesis somatosensory_system somatic_sensory_system somatic_sense,the faculty of bodily perception; sensory systems associated with the body; includes skin senses and proprioception and the internal organs
+71581,somewhere,an indefinite or unknown location; "they moved to somewhere in Spain"
+71582,sommelier wine_waiter wine_steward,a waiter who manages wine service in a hotel or restaurant
+71583,somniloquist,someone who talks while asleep
+71584,son boy,a male human offspring; "their son became a famous judge"; "his boy is taller than he is"
+71585,son-in-law,the husband of your daughter
+71586,sonant voiced_sound,a speech sound accompanied by sound from the vocal cords
+71587,sonar echo_sounder asdic,a measuring instrument that sends out an acoustic pulse in water and measures distances in terms of the time for the echo of the pulse to return; "sonar is an acronym for sound navigation ranging"; "asdic is an acronym for antisubmarine detection investigation committee"
+71588,sonata,a musical composition of 3 or 4 movements of contrasting forms
+71589,sonata_form,the form of a movement, which consists of exposition and development and recapitulation
+71590,sonatina,a short and simple sonata
+71591,sone,a unit of perceived loudness equal to the loudness of a 1000-hertz tone at 40 dB above threshold
+71592,song,a very small sum; "he bought it for a song"
+71593,song,a distinctive or characteristic sound; "the song of bullets was in the air"; "the song of the wind"; "the wheels sang their song as the train rocketed ahead"
+71594,song strain,the act of singing; "with a shout and a song they marched up to the gates"
+71595,song vocal,a short musical composition with words; "a successful musical must have at least three good songs"
+71596,song_and_dance,theatrical performance combining singing and dancing
+71597,song_sparrow Melospiza_melodia,small songbird common in North America
+71598,song_thrush mavis throstle Turdus_philomelos,common Old World thrush noted for its song
+71599,songbird songster,any bird having a musical call
+71600,songbook,a book containing a collection of songs
+71601,songster,a person who sings
+71602,songstress,a woman songster (especially of popular songs)
+71603,songwriter songster ballad_maker,a composer of words or music for popular songs
+71604,sonic_barrier sound_barrier,the increase in aerodynamic drag as an airplane approaches the speed of sound
+71605,sonic_boom,an explosive sound caused by the shock wave of an airplane traveling faster than the speed of sound; "a sonic boom follows an aircraft as a wake follows a ship"
+71606,sonic_depth_finder fathometer,depth finder for determining depth of water or a submerged object by means of ultrasound waves
+71607,sonnet,a verse form consisting of 14 lines with a fixed rhyme scheme
+71608,sonneteer,a poet who writes sonnets
+71609,sonogram echogram,an image of a structure that is produced by ultrasonography (reflections of high-frequency sound waves); used to observe fetal growth or to study bodily organs
+71610,sonograph,an instrument that uses the differential transmission and reflection of ultrasonic waves in order to provide an image of a bodily organ
+71611,sonography ultrasonography echography ultrasound,using the reflections of high-frequency sound waves to construct an image of a body organ (a sonogram); commonly used to observe fetal growth or study bodily organs
+71612,sooth,truth or reality; "in sooth"
+71613,soothing_syrup,medicine in the form of a syrup that has a calming effect
+71614,sop,a concession given to mollify or placate; "the offer was a sop to my feelings"
+71615,sop sops,piece of solid food for dipping in a liquid
+71616,sophism sophistry sophistication,a deliberately invalid argument displaying ingenuity in reasoning in the hope of deceiving someone
+71617,sophisticate man_of_the_world,a worldly-wise person
+71618,sophistication,being expert or having knowledge of some technical subject; "understanding affine transformations requires considerable mathematical sophistication"
+71619,sophistication,falsification by the use of sophistry; misleading by means of specious fallacies; "he practiced the art of sophistication upon reason"
+71620,sophistication worldliness mundaneness mundanity,the quality or character of being intellectually sophisticated and worldly through cultivation or experience or disillusionment
+71621,sophomore soph,a second-year undergraduate
+71622,sophomore_class,the second class in a four-year college or high school
+71623,soporific hypnotic,a drug that induces sleep
+71624,soprano,a female singer
+71625,soprano,the highest female voice; the voice of a boy before puberty
+71626,soprano treble,the pitch range of the highest female voice
+71627,soprano_clef,a clef that puts middle C on the bottom line of the staff
+71628,sorb sorb_apple,acid gritty-textured fruit
+71629,sorbate,a material that has been or is capable of being taken up by another substance by either absorption or adsorption
+71630,sorbent sorbent_material,a material that sorbs another substance; i.e. that has the capacity or tendency to take it up by either absorption or adsorption
+71631,sorbic_acid,a white crystalline carboxylic acid used as a preservative
+71632,sorcerer magician wizard necromancer thaumaturge thaumaturgist,one who practices magic or sorcery
+71633,sorceress,a woman sorcerer
+71634,sorcery black_magic black_art necromancy,the belief in magical spells that harness occult forces or evil spirits to produce unnatural effects in the world
+71635,sordidness squalor squalidness,sordid dirtiness
+71636,sore,an open skin infection
+71637,sore_throat pharyngitis raw_throat,inflammation of the fauces and pharynx
+71638,sorehead,someone who is peevish or disgruntled
+71639,sorghum,economically important Old World tropical cereal grass
+71640,sorghum sorghum_molasses,made from juice of sweet sorghum
+71641,sorgo sorgho sweet_sorghum sugar_sorghum,any of several sorghums cultivated as a source of syrup
+71642,sorority,a social club for female undergraduates
+71643,sorption,the process in which one substance takes up or holds another (by either absorption or adsorption)
+71644,sorrel,a horse of a brownish orange to light brown color
+71645,sorrel common_sorrel,large sour-tasting arrowhead-shaped leaves used in salads and sauces
+71646,sorrel_tree Hibiscus_heterophyllus,Australian tree with acid foliage
+71647,sorrel_tree sourwood titi Oxydendrum_arboreum,deciduous shrubby tree of eastern North America having deeply fissured bark and sprays of small fragrant white flowers and sour-tasting leaves
+71648,sorrow,an emotion of great sadness associated with loss or bereavement; "he tried to express his sorrow at her loss"
+71649,sorrow regret rue ruefulness,sadness associated with some wrong done or some disappointment; "he drank to drown his sorrows"; "he wrote a note expressing his regret"; "to his rue, the error cost him the game"
+71650,sort,a person of a particular character or nature; "what sort of person is he?"; "he's a good sort"
+71651,sort,an approximate definition or example; "she wore a sort of magenta dress"; "she served a creamy sort of dessert thing"
+71652,sort sorting,an operation that segregates items into groups according to a specified criterion; "the bottleneck in mail delivery is the process of sorting"
+71653,sort_program sorting_program,a utility program that sorts data items
+71654,sorter,a clerk who sorts things (as letters at the post office)
+71655,sorter,a machine for sorting things (such as punched cards or letters) into classes
+71656,sortie,(military) an operational flight by a single aircraft (as in a military operation)
+71657,sortie sally,a military action in which besieged troops burst forth from their position
+71658,sorting,grouping by class or kind or size
+71659,sorting_algorithm,an algorithm for sorting a list
+71660,sorus,a spore-producing structure in certain lichens and fungi
+71661,sorus,cluster of sporangia usually on underside of a fern frond
+71662,soteriology,the branch of Christian theology that deals with salvation as the effect of a divine agency
+71663,sottishness,stupefaction from drink
+71664,sottishness,lack of restraint in use of alcohol
+71665,sou,a former French coin of low denomination; often used of any small amount of money; "he hasn't a sou to his name"
+71666,sou'wester,waterproof hat with wide slanting brim longer in back than in front
+71667,souari souari_nut souari_tree Caryocar_nuciferum,large South American evergreen tree trifoliate leaves and drupes with nutlike seeds used as food and a source of cooking oil
+71668,souari_nut,a large nutlike seed of a South American tree
+71669,soubrette,a pert or flirtatious young girl
+71670,soubrette,a minor female role as a pert flirtatious lady's maid in a comedy
+71671,souchong soochong,a fine quality of black tea native to China
+71672,souffle,light fluffy dish of egg yolks and stiffly beaten egg whites mixed with e.g. cheese or fish or fruit
+71673,souk,an open-air market in an Arabian city
+71674,soul,a secular form of gospel that was a major Black musical genre in the 1960s and 1970s; "soul was politically significant during the Civil Rights movement"
+71675,soul,the human embodiment of something; "the soul of honor"
+71676,soul psyche,the immaterial part of a person; the actuating cause of an individual life
+71677,soul soulfulness,deep feeling or emotion
+71678,soul-searching self-analysis,a penetrating examination of your own beliefs and motives
+71679,soul_brother,a fellow Black man
+71680,soul_food,food traditionally eaten by African-Americans in the South
+71681,soul_kiss deep_kiss French_kiss,an openmouthed kiss in which your tongue is inserted into the other's mouth
+71682,soul_mate,someone for whom you have a deep affinity
+71683,soul_patch Attilio,a small patch of facial hair just below the lower lip and above the chin
+71684,sound,mechanical vibrations transmitted by an elastic medium; "falling trees make a sound in the forest even when no one is there to hear them"
+71685,sound,a large ocean inlet or deep bay; "the main body of the sound ran parallel to the coast"
+71686,sound,the sudden occurrence of an audible event; "the sound awakened them"
+71687,sound,the particular auditory effect produced by a given cause; "the sound of rain on the roof"; "the beautiful sound of music"
+71688,sound auditory_sensation,the subjective sensation of hearing something; "he strained to hear the faint sounds"
+71689,sound_bite,a very short speech; usually on radio or television
+71690,sound_bow,contact (the part of a bell) against which the clapper strikes
+71691,sound_camera,a movie camera that records sounds in synchrony with the visual images
+71692,sound_effect,an effect that imitates a sound called for in the script of a play
+71693,sound_film,motion-picture film with sound effects and dialogue recorded on it
+71694,sound_hole,a hole in a soundboard (as of a violin) designed to resonate with the tones
+71695,sound_law,a law describing sound changes in the history of a language
+71696,sound_pressure instantaneous_sound_pressure,the difference between the instantaneous pressure at a point in a sound field and the average pressure at that point
+71697,sound_property,an attribute of sound
+71698,sound_ranging,locating a source of sound (as an enemy gun) by measurements of the time the sound arrives at microphones in known positions
+71699,sound_recording audio_recording audio,a recording of acoustic signals
+71700,sound_reproduction,the reproduction of sound
+71701,sound_spectrograph,a spectrograph for acoustic spectra
+71702,sound_spectrum acoustic_spectrum,the distribution of energy as a function of frequency for a particular sound source
+71703,sound_truck,a truck equipped with a loudspeaker and used for advertising
+71704,sound_unit,any acoustic unit of measurement
+71705,sound_wave acoustic_wave,(acoustics) a wave that transmits sound
+71706,soundbox body,a resonating chamber in a musical instrument (as the body of a violin)
+71707,sounder,a device for making soundings
+71708,sounding,a measure of the depth of water taken with a sounding line
+71709,sounding,the act of measuring depth of water (usually with a sounding line)
+71710,sounding_board,a person whose reactions to something serve as an indication of its acceptability; "I would use newspapermen as a sounding board for such policies"
+71711,sounding_board soundboard,(music) resonator consisting of a thin board whose vibrations reinforce the sound of the instrument
+71712,sounding_lead,a metal bob at the end of a sounding line
+71713,sounding_rocket,a research rocket used to obtain information about the atmosphere at various altitudes
+71714,soundman,a technician in charge of amplifying sound or producing sound effects (as for a TV or radio broadcast)
+71715,soundness,a state or condition free from damage or decay
+71716,soundtrack,sound recording on a narrow strip of a motion picture film
+71717,soup,any composition having a consistency suggestive of soup
+71718,soup,an unfortunate situation; "we're in the soup now"
+71719,soup,liquid food especially of meat or fish or vegetable stock often containing pieces of solid food
+71720,soup-strainer toothbrush,slang for a mustache
+71721,soup_bowl,a bowl for serving soup
+71722,soup_du_jour,the soup that a restaurant is featuring on a given day
+71723,soup_kitchen,a place where food is dispensed to the needy
+71724,soup_ladle,a ladle for serving soup
+71725,soup_plate,a deep plate with a wide rim
+71726,soupfin_shark soupfin soup-fin Galeorhinus_zyopterus,Pacific shark valued for its fins (used by Chinese in soup) and liver (rich in vitamin A)
+71727,soupspoon soup_spoon,a spoon with a rounded bowl for eating soup
+71728,sour,a cocktail made of a liquor (especially whiskey or gin) mixed with lemon or lime juice and sugar
+71729,sour sourness tartness,the taste experience when vinegar or lemon juice is taken into the mouth
+71730,sour_bread sourdough_bread,made with a starter of a small amount of dough in which fermentation is active
+71731,sour_cherry,acid cherries used for pies and preserves
+71732,sour_cherry Eugenia_corynantha,Australian tree with sour red fruit
+71733,sour_cherry sour_cherry_tree Prunus_cerasus,rather small Eurasian tree producing red to black acid edible fruit
+71734,sour_cream soured_cream,artificially soured light cream
+71735,sour_dock garden_sorrel Rumex_acetosa,European sorrel with large slightly acidic sagittate leaves grown throughout north temperate zone for salad and spring greens
+71736,sour_gourd,acid-tasting Australian gourd-like fruit with a woody rind and large seeds
+71737,sour_gourd monkey_bread,African gourd-like fruit with edible pulp
+71738,sour_grapes,disparagement of something that is unattainable
+71739,sour_gum black_gum pepperidge Nyssa_sylvatica,columnar tree of eastern North America having horizontal limbs and small leaves that emerge late in spring and have brilliant color in early fall
+71740,sour_mash,a mash with optimum acidity for yeast fermentation; a mixture of old and new mash; used in distilling some whiskeys
+71741,sour_mash sour_mash_whiskey,any whiskey distilled from sour mash
+71742,sour_milk,milk that has turned sour
+71743,sour_orange Seville_orange bitter_orange bitter_orange_tree bigarade marmalade_orange Citrus_aurantium,any of various common orange trees yielding sour or bitter fruit; used as grafting stock
+71744,sour_salt,crystals of citric acid used as seasoning
+71745,sourball,round piece of tart hard candy
+71746,source,(technology) a process by which energy or a substance enters a system; "a heat source"; "a source of carbon dioxide"
+71747,source,a document (or organization) from which information is obtained; "the reporter had two sources for the story"
+71748,source,a facility where something is available
+71749,source seed germ,anything that provides inspiration for later work
+71750,source_book,a collection of historically important documents published together as a book
+71751,source_code,program instructions written as an ASCII text file; must be translated by a compiler or interpreter or assembler into the object code for a particular computer before execution
+71752,source_language,a language that is to be translated into another language
+71753,source_materials,publications from which information is obtained
+71754,source_of_illumination,any device serving as a source of visible electromagnetic radiation
+71755,source_program,a program written in a language from which statements are translated into machine language
+71756,sourdine,an organ stop resulting in a soft muted sound
+71757,sourdine sordino,a mute for a violin
+71758,sourdough,a leaven of dough in which fermentation is active; used by pioneers for making bread
+71759,sourdough,a settler or prospector (especially in western United States or northwest Canada and Alaska)
+71760,souring,the process of becoming sour
+71761,sourness sour acidity,the property of being acidic
+71762,sourpuss picklepuss gloomy_Gus pouter,someone with a habitually sullen or gloomy expression
+71763,soursop guanabana,large spiny tropical fruit with tart pulp related to custard apples
+71764,soursop prickly_custard_apple soursop_tree Annona_muricata,small tropical American tree bearing large succulent slightly acid fruit
+71765,souse,pork trimmings chopped and pickled and jelled
+71766,soutache,a narrow braid used as a decorative trimming
+71767,soutane,a long cassock with buttons down the front; worn by Roman Catholic priests
+71768,south,the direction corresponding to the southward cardinal compass point
+71769,south,a location in the southern part of a country, region, or city
+71770,south due_south southward S,the cardinal compass point that is at 180 degrees
+71771,south_by_east SbE,the compass point that is one point east of due south
+71772,south_by_west SbW,the compass point that is one point west of due south
+71773,south_celestial_pole,the celestial pole above the southern hemisphere
+71774,south_side,the side that is on the south
+71775,south_southeast sou'-sou'-east SSE,the compass point midway between south and southeast
+71776,south_southwest sou'-sou'-west SSW,the compass point midway between south and southwest
+71777,south_wind souther southerly,a wind from the south
+71778,southeast,the direction corresponding to the southeastward compass point
+71779,southeast,a location in the southeastern part of a country, region, or city
+71780,southeast sou'-east southeastward SE,the compass point midway between south and east; at 135 degrees
+71781,southeast_by_east SEbE,the compass point that is one point east of southeast
+71782,southeast_by_south SEbS,the compass point that is one point south of southeast
+71783,southeaster sou'easter,a strong wind from the southeast
+71784,southeastern_pocket_gopher Geomys_pinetis,gopher of Alabama and Georgia and Florida
+71785,southern_aster,a variety of aster
+71786,southern_beech evergreen_beech,any of various beeches of the southern hemisphere having small usually evergreen leaves
+71787,southern_blue_flag Iris_virginica,similar to blue flag; the eastern United States
+71788,southern_bog_lemming Synaptomys_cooperi,of low bogs and meadows of northeastern and central United States and southern Canada
+71789,southern_buckthorn shittimwood shittim mock_orange Bumelia_lycioides,shrubby thorny deciduous tree of southeastern United States with white flowers and small black drupaceous fruit
+71790,southern_cabbage_butterfly Pieris_protodice,common North American form of cabbage butterfly
+71791,southern_flounder Paralichthys_lethostigmus,flounder of southern United States
+71792,southern_flying_squirrel Glaucomys_volans,small large-eyed nocturnal flying squirrel of eastern United States
+71793,southern_harebell Campanula_divaricata,bellflower of southeastern United States (Maryland to Georgia) having pale blue flowers
+71794,southern_hemisphere,the hemisphere to the south of the equator
+71795,southern_live_oak Quercus_virginiana,medium-sized evergreen native to eastern North America to the east coast of Mexico; often cultivated as shade tree for it wide-spreading crown; extremely hard tough durable wood once used in shipbuilding
+71796,southern_magnolia evergreen_magnolia large-flowering_magnolia bull_bay Magnolia_grandiflora,evergreen tree of southern United States having large stiff glossy leaves and huge white sweet-smelling flowers
+71797,southern_red_cedar Juniperus_silicicola,juniper of swampy coastal regions of southeastern United States; similar to eastern red cedar
+71798,southern_red_oak swamp_red_oak turkey_oak Quercus_falcata,large round-topped deciduous tree with spreading branches having narrow falcate leaves with deeply sinuate lobes and wood similar to that of northern red oaks; New Jersey to Illinois and southward
+71799,southern_spadefoot Scaphiopus_multiplicatus,this spadefoot toad lives in the southwestern United States
+71800,southern_spatterdock Nuphar_sagittifolium,of flowing waters of the southeastern United States; may form obstructive mats in streams
+71801,southern_white_cedar coast_white_cedar Atlantic_white_cedar white_cypress white_cedar Chamaecyparis_thyoides,slow-growing medium-sized cedar of east coast of the United States; resembles American arborvitae
+71802,southernism,a locution or pronunciation peculiar to the southern United States
+71803,southernism,an attitude characteristic of Southerners (especially in the US)
+71804,southernness,the property of being to the south
+71805,southernwood Artemisia_abrotanum,shrubby European wormwood naturalized in North America; sometimes used in brewing beer
+71806,southland,any region lying in or toward the south
+71807,southwest,the direction corresponding to the southwestward compass point
+71808,southwest,a location in the southwestern part of a country, region, or city
+71809,southwest sou'-west southwestward SW,the compass point midway between south and west; at 225 degrees
+71810,southwest_by_south SWbS,the compass point that is one point south of southwest
+71811,southwest_by_west SWbW,the compass point that is one point west of southwest
+71812,southwester sou'wester,a strong wind from the southwest
+71813,southwestern_lip_fern Cheilanthes_eatonii,lip fern of Texas to Oklahoma and Colorado and Arizona and Mexico having tall erect tufted fronds
+71814,southwestern_toad Bufo_microscaphus,a uniformly warty stocky toad of washes and streams of semiarid southwestern United States
+71815,southwestern_white_pine Pinus_strobiformis,medium-size pine of northwestern Mexico; bark is dark brown and furrowed when mature
+71816,souvlaki souvlakia,made of lamb
+71817,sovereign crowned_head monarch,a nation's ruler or head of state usually by hereditary right
+71818,sovereign_immunity,an exemption that precludes bringing a suit against the sovereign government without the government's consent; "the doctrine of sovereign immunity originated with the maxim that the king can do no wrong"
+71819,sovereignty,government free from external control
+71820,sovereignty,the authority of a state to govern another state
+71821,soviet,an elected governmental council in a communist country (especially one that is a member of the Union of Soviet Socialist Republics)
+71822,sow,an adult female hog
+71823,sow_bug,terrestrial isopod having an oval segmented body (a shape like a sow)
+71824,sow_thistle milk_thistle,any of several Old World coarse prickly-leaved shrubs and subshrubs having milky juice and yellow flowers; widely naturalized; often noxious weeds in cultivated soil
+71825,sowbane red_goosefoot Chenopodium_hybridum,herb considered fatal to swine
+71826,sowbelly,salt pork from the belly of a hog carcass
+71827,sowbread Cyclamen_hederifolium Cyclamen_neopolitanum,common wild European cyclamen with pink flowers
+71828,sower,someone who sows
+71829,soy soya soybean soya_bean soybean_plant soja soja_bean Glycine_max,erect bushy hairy annual herb having trifoliate leaves and purple to pink flowers; extensively cultivated for food and forage and soil improvement but especially for its nutritious oil-rich seeds; native to Asia
+71830,soy soybean soya soya_bean,the most highly proteinaceous vegetable known; the fruit of the soybean plant is used in a variety of foods and as fodder (especially as a replacement for animal protein)
+71831,soy soybean soya_bean,a source of oil; used for forage and soil improvement and as food
+71832,soy_sauce soy,thin sauce made of fermented soy beans
+71833,soya_milk soybean_milk soymilk,a milk substitute containing soybean flour and water; used in some infant formulas and in making tofu
+71834,soybean_future,soybeans bought or sold at an agreed price for delivery at a specified future date
+71835,soybean_meal soybean_flour soy_flour,meal made from soybeans
+71836,soybean_oil soyabean_oil,oil from soya beans
+71837,space,an empty area (usually bounded in some way between things); "the architect left space in front of the building"; "they stopped at an open space in the jungle"; "the space between his teeth"
+71838,space,an area reserved for some particular purpose; "the laboratory's floor space"
+71839,space,one of the areas between or below or above the lines of a musical staff; "the spaces are the notes F-A-C-E"
+71840,space blank,a blank character used to separate successive words in writing or printing; "he said the space is the most important character in the alphabet"
+71841,space blank_space place,a blank area; "write your name in the space provided"
+71842,space infinite,the unlimited expanse in which everything is located; "they tested his ability to locate objects in space"; "the boundless regions of the infinite"
+71843,space-time space-time_continuum,the four-dimensional coordinate system (3 dimensions of space and 1 of time) in which physical events are located
+71844,space_age,the age beginning with the first space travel; from 1957 to the present
+71845,space_bar,the bar-shaped typewriter key that introduces spaces when used
+71846,space_cadet,someone who seems unable to respond appropriately to reality (as if under the influence of some narcotic drug)
+71847,space_capsule capsule,a spacecraft designed to transport people and support human life in outer space
+71848,space_heater,heater consisting of a self-contained (usually portable) unit to warm a room
+71849,space_helmet,a helmet worn by astronauts while in outer space
+71850,space_lattice crystal_lattice Bravais_lattice,a 3-dimensional geometric arrangement of the atoms or molecules or ions composing a crystal
+71851,space_medicine,the branch of medicine concerned with the effects of space flight on human beings
+71852,space_probe,a rocket-propelled guided missile that can escape the earth's atmosphere; makes observations of the solar system that cannot be made by terrestrial observation
+71853,space_program,a technological program intended to explore outer space
+71854,space_rocket,a rocket powerful enough to travel into outer space
+71855,space_shuttle,a reusable spacecraft with wings for a controlled descent through the Earth's atmosphere
+71856,space_station space_platform space_laboratory,a manned artificial satellite in a fixed orbit designed for scientific research
+71857,space_walk,any kind of physical activity outside a spacecraft by one of the crew
+71858,space_writer,a writer paid by the area of the copy
+71859,spacecraft ballistic_capsule space_vehicle,a craft capable of traveling in outer space; technically, a satellite around the sun
+71860,spacecraft_clock_time SCLK,the clock time given by a clock carried on board a spacecraft
+71861,spacecraft_event_time SCET,the coordinated universal time on board the spacecraft; "SCET = TRM + OWLT"
+71862,spaceflight space_travel spacefaring,a voyage outside the Earth's atmosphere
+71863,spacesuit,a pressure suit worn by astronauts while in outer space
+71864,spacewalker,an astronaut who is active outside a spacecraft in outer space
+71865,spacing,the time between occurrences of a repeating event; "some women do not control the spacing of their children"
+71866,spacing spatial_arrangement,the property possessed by an array of things that have space between them
+71867,spackle spackling_compound,powder (containing gypsum plaster and glue) that when mixed with water forms a plastic paste used to fill cracks and holes in plaster
+71868,spade,a playing card in the major suit that has one or more black figures on it; "she led a low spade"; "spades were trumps"
+71869,spade,a sturdy hand shovel that can be pushed into the earth with the foot
+71870,spade_bit,a thin bit with a center point and cutting edges on either side
+71871,spade_casino,a form of casino in which spades have the value of one point
+71872,spadefish angelfish Chaetodipterus_faber,deep-bodied disk-shaped food fish of warmer western Atlantic coastal waters
+71873,spadefoot spadefoot_toad,a burrowing toad of the northern hemisphere with a horny spade-like projection on each hind foot
+71874,spadework,dull or routine preliminary work preparing for an undertaking
+71875,spadix,the fleshy axis of a spike often surrounded by a spathe
+71876,spaghetti,spaghetti served with a tomato sauce
+71877,spaghetti,pasta in the form of long strings
+71878,spaghetti_Western,a low-budget Western movie produced by a European (especially an Italian) film company
+71879,spaghetti_and_meatballs,spaghetti with meatballs in a tomato sauce
+71880,spaghetti_junction,a complicated highway interchange with multiple overpasses
+71881,spaghetti_sauce pasta_sauce,any of numerous sauces for spaghetti or other kinds of pasta
+71882,spaghetti_squash,squash plant bearing oval fruit with smooth yellowish skin and tender stranded flesh resembling spaghetti
+71883,spaghetti_squash,medium-sized oval squash with flesh in the form of strings that resemble spaghetti
+71884,spaghettini,thin spaghetti
+71885,spall spawl,a fragment broken off from the edge or face of stone or ore and having at least one thin edge; "a truck bearing a mound of blue spalls"
+71886,spallation,(physics) a nuclear reaction in which a bombarded nucleus breaks up into many particles; "some astronomers believe that the solar system was formed by spallation when the sun was a very young star"
+71887,spam junk_e-mail,unwanted e-mail (usually of a commercial nature sent out in bulk)
+71888,spammer,someone who sends unwanted email (often in bulk)
+71889,span,the complete duration of something; "the job was finished in the span of an hour"
+71890,span,a unit of length based on the width of the expanded human hand (usually taken as 9 inches)
+71891,span,the distance or interval between two points
+71892,span_loading,the ratio of the weight of an airplane to its wingspan
+71893,spandex,an elastic synthetic fabric
+71894,spandrel spandril,an approximately triangular surface area between two adjacent arches and the horizontal plane above them
+71895,spaniel,any of several breeds of small to medium-sized gun dogs with a long silky coat and long frilled ears
+71896,spank,a slap with the flat of the hand
+71897,spanker,a fore-and-aft sail set on the aftermost lower mast (usually the mizzenmast) of a vessel
+71898,spanking,the act of slapping on the buttocks; "he gave the brat a good spanking"
+71899,spar,any of various nonmetallic minerals (calcite or feldspar) that are light in color and transparent or translucent and cleavable
+71900,spar,a stout rounded pole of wood or metal used to support rigging
+71901,spar sparring,making the motions of attack and defense with the fists and arms; a part of training for a boxer
+71902,spar_buoy,a buoy resembling a vertical log
+71903,spare,a score in tenpins; knocking down all ten after rolling two balls
+71904,spare_part spare,an extra component of a machine or other apparatus
+71905,spare_time free_time,time available for hobbies and other activities that you enjoy
+71906,spare_tire love_handle,excess fat around the waistline
+71907,sparer,someone who refrains from injuring or destroying
+71908,sparerib,a cut of pork ribs with much of the meat trimmed off
+71909,spareribs,cut of pork from the rib section with most of the meat trimmed off
+71910,sparge_pipe,a horizontal pipe having fine holes drilled throughout its length so as to deliver a spray of water
+71911,sparid sparid_fish,spiny-finned food fishes of warm waters having well-developed teeth
+71912,spark,a small but noticeable trace of some quality that might become stronger; "a spark of interest"; "a spark of decency"
+71913,spark,a small fragment of a burning substance thrown out by burning material or by friction
+71914,spark_advance lead,the timing of ignition relative to the position of the piston in an internal-combustion engine
+71915,spark_arrester,electrical device to reduce sparking when electrical contacts are opened or closed
+71916,spark_arrester sparker,a wire net to stop sparks from an open fireplace or smokestack
+71917,spark_chamber spark_counter,an instrument that detects ionizing radiation from elementary particles
+71918,spark_coil,an induction coil used to create sparks
+71919,spark_gap,a component of an ignition system; consists of two shaped electrodes and the space between them
+71920,spark_gap,the gap between two high-potential terminals
+71921,spark_lever,(on early automobiles) a lever mounted on the steering column and used to adjust the timing of the ignition
+71922,spark_plug sparking_plug plug,electrical device that fits into the cylinder head of an internal-combustion engine and ignites the gas by means of an electric spark
+71923,spark_transmitter,an early radio transmitter using a discharge across a spark gap as the source of its power
+71924,sparkle twinkle spark light,merriment expressed by a brightness or gleam or animation of countenance; "he had a sparkle in his eye"; "there's a perpetual twinkle in his eyes"
+71925,sparkle_metal,matte that has 74 percent copper
+71926,sparkler,a firework that burns slowly and throws out a shower of sparks
+71927,sparkling_wine,effervescent wine
+71928,sparkplug_wrench,a wrench for removing or tightening spark plugs into the cylinder head of an internal combustion engine
+71929,sparling European_smelt Osmerus_eperlanus,the common smelt of Europe
+71930,sparring,an argument in which the participants are trying to gain some advantage
+71931,sparring_match,a practice or exhibition boxing match
+71932,sparring_partner sparring_mate,a boxer who spars with another boxer who is training for an important fight
+71933,sparrow true_sparrow,any of several small dull-colored singing birds feeding on seeds or insects
+71934,sparrow_hawk Accipiter_nisus,small hawk of Eurasia and northern Africa
+71935,sparrow_hawk American_kestrel kestrel Falco_sparverius,small North American falcon
+71936,sparseness spareness sparsity thinness,the property of being scanty or scattered; lacking denseness
+71937,spasm,(pathology) sudden constriction of a hollow organ (as a blood vessel)
+71938,spasm cramp muscle_spasm,a painful and involuntary muscular contraction
+71939,spasmolysis,the relaxation or relief of muscle spasms
+71940,spastic,a person suffering from spastic paralysis
+71941,spastic_abasia,abasia due to spastic contractions of the leg muscles
+71942,spastic_bladder,a urinary bladder disorder resulting from spinal cord lesion or multiple sclerosis or trauma; absence of bladder sensation and incontinence and interrupted voiding of urine
+71943,spasticity,the quality of moving or acting in spasms
+71944,spat,a young oyster or other bivalve
+71945,spat gaiter,a cloth covering (a legging) that covers the instep and ankles
+71946,spatchcock,flesh of a chicken (or game bird) split down the back and grilled (usually immediately after being killed)
+71947,spathe,a conspicuous bract surrounding or subtending a spadix or other inflorescence
+71948,spathiphyllum peace_lily spathe_flower,any of various plants of the genus Spathiphyllum having a white or green spathe and a spike of fragrant flowers and often cultivated as an ornamental
+71949,spatial_property spatiality,any property relating to or occupying space
+71950,spatter spattering splash splashing splattering,the act of splashing a (liquid) substance on a surface
+71951,spatter spattering splatter splattering sputter splutter sputtering,the noise of something spattering or sputtering explosively; "he heard a spatter of gunfire"
+71952,spatterdock cow_lily yellow_pond_lily Nuphar_advena,common water lily of eastern and central North America, having broad leaves and globe-shaped yellow flowers; in sluggish fresh or slightly brackish water
+71953,spatula,a turner with a narrow flexible blade
+71954,spatula,a hand tool with a thin flexible blade used to mix or spread soft substances
+71955,spatulate_leaf,spatula-shaped leaf; having a broad rounded apex and narrow base
+71956,spavin,a swelling of the hock joint of a horse; resulting in lameness
+71957,spawn,the mass of eggs deposited by fish or amphibians or molluscs
+71958,spawner,a female fish at spawning time
+71959,spaying,neutering a female by removing the ovaries
+71960,speakeasy,(during prohibition) an illegal barroom
+71961,speaker talker utterer verbalizer verbaliser,someone who expresses in language; someone who talks (especially someone who delivers a public speech or someone especially garrulous); "the speaker at commencement"; "an utterer of useful maxims"
+71962,speaker_identification talker_identification,identification of a person from the sound of their voice
+71963,speakerphone,a telephone with a microphone and loudspeaker; can be used without picking up a handset; several people can participate in a call at the same time
+71964,speakership,the position of Speaker
+71965,speaking speech_production,the utterance of intelligible speech
+71966,speaking_trumpet,a trumpet-shaped acoustic device to intensify and direct the human voice; formerly held to the ear by a hard-of-hearing person
+71967,speaking_tube,a tube for conveying the sound of a voice from one room to another
+71968,spear gig fizgig fishgig lance,an implement with a shaft and barbed point used for catching fish
+71969,spear lance shaft,a long pointed rod used as a tool or weapon
+71970,spearfish,any of several large vigorous pelagic fishes resembling sailfishes but with first dorsal fin much reduced; worldwide but rare
+71971,spearhead,someone who leads or initiates an activity (attack or campaign etc.)
+71972,spearhead,the leading military unit in an attack
+71973,spearhead spearpoint spear-point,the head and sharpened point of a spear
+71974,spearmint Mentha_spicata,common garden herb having clusters of small purplish flowers and yielding an oil used as a flavoring
+71975,spearmint_oil,an aromatic oil obtained from the spearmint plant
+71976,spearnose_bat,New World bat with a pointed nose leaf; found from southern United States to Paraguay
+71977,special,a dish or meal given prominence in e.g. a restaurant
+71978,special,a special offering (usually temporary and at a reduced price) that is featured in advertising; "they are having a special on pork chops"
+71979,special,a television production that features a particular person or work or topic; "the last of a series of BBC specials on Iran is being shown tonight"
+71980,special_act,a legislative act that applies only to a particular person or particular district
+71981,special_agent,someone whose authority is limited to the special undertaking they have been instructed to perform
+71982,special_assessment,an additional tax levied on private property for public improvements that enhance the value of the property
+71983,special_court-martial,a court-martial to try soldiers for offenses less serious that than those committed in action; consists of at least three officers
+71984,special_delivery,mail that is delivered by a special carrier (for an additional charge)
+71985,special_drawing_rights paper_gold,reserve assets in the International Monetary Fund; designed to supplement reserves of gold and convertible currencies used to maintain stability in the foreign exchange market
+71986,special_education,education of physically or mentally handicapped children whose needs cannot be met in an ordinary classroom
+71987,special_effect,an effect used to produce scenes that cannot be achieved by normal techniques (especially on film)
+71988,special_interest special-interest_group special_interest_group advocacy_group lobby_group lobby pressure_group third_house,an interest group that tries to influence legislators or bureaucrats to act in their favor, typically through lobbying
+71989,special_jury blue_ribbon_jury,a jury whose members are selected for special knowledge for a case involving complicated issues
+71990,special_pleading,an argument that ignores all unfavorable evidence
+71991,special_pleading,(law) a pleading that alleges new facts in avoidance of the opposing allegations
+71992,special_relativity special_theory_of_relativity special_relativity_theory Einstein's_special_theory_of_relativity,a physical theory of relativity based on the assumption that the speed of light in a vacuum is a constant and the assumption that the laws of physics are invariant in all inertial systems
+71993,special_session,a session that is held in addition to the regular sessions
+71994,special_verdict,a verdict rendered on certain specific factual issues posed by the court without finding for one party or the other
+71995,specialism,the concentration of your efforts on a particular field of study or occupation
+71996,specialist medical_specialist,practices one branch of medicine
+71997,specialist specializer specialiser,an expert who is devoted to one occupation or branch of learning
+71998,specialization specialisation,the act of specializing; making something suitable for a special purpose
+71999,specialization specialisation differentiation,(biology) the structural adaptation of some body part for a particular function; "cell differentiation in the developing embryo"
+72000,specialization specialisation specialty speciality specialism,the special line of work you have adopted as your career; "his specialization is gastroenterology"
+72001,specialty_store,a store that sells only one kind of merchandise
+72002,speciation,the evolution of a biological species
+72003,species,(biology) taxonomic group whose members can interbreed
+72004,species,a specific kind of something; "a species of molecule"; "a species of villainy"
+72005,specific,a medicine that has a mitigating effect on a specific disease; "quinine is a specific for malaria"
+72006,specific_gravity,the density of a substance relative to the density of water
+72007,specific_heat,the heat required to raise the temperature of one gram of a substance one degree centigrade
+72008,specific_performance,the performance of a legal contract as specified by its terms
+72009,specification,naming explicitly
+72010,specification,(patent law) a document drawn up by the applicant for a patent of invention that provides an explicit and detailed description of the nature and use of an invention
+72011,specification spec,a detailed description of design criteria for a piece of work
+72012,specificity,the quality of being specific to a particular organism; "host specificity of a parasite"
+72013,specificity,the quality of being specific rather than general; "add a desirable note of specificity to the discussion"; "the specificity of the symptoms of the disease"
+72014,specifier,someone who draws up specifications giving details (as for obtaining a patent)
+72015,specimen,an example regarded as typical of its class
+72016,specimen,a bit of tissue or blood or urine that is taken for diagnostic purposes; "they collected a urine specimen for urinalysis"
+72017,specimen_bottle,a bottle for holding urine specimens
+72018,specious_argument,an argument that appears good at first view but is really fallacious
+72019,speciousness meretriciousness,an appearance of truth that is false or deceptive; seeming plausibility; "the speciousness of his argument"
+72020,speck pinpoint,a very small spot; "the plane was just a speck in the sky"
+72021,speckled_alder Alnus_rugosa,common shrub of Canada and northeastern United States having shoots scattered with rust-colored down
+72022,speckled_rattlesnake Crotalus_mitchellii,markings vary but usually harmonize with background; of southwestern Arizona and Baja California
+72023,spectacle,something or someone seen (especially a notable or unusual sight); "the tragic spectacle of cripples trying to escape"
+72024,spectacle,an elaborate and remarkable display on a lavish scale
+72025,spectacle,a blunder that makes you look ridiculous; used in the phrase `make a spectacle of' yourself
+72026,spectacled_caiman Caiman_sclerops,caiman with bony ridges about the eyes; found from southern Mexico to Argentina
+72027,spectacles specs eyeglasses glasses,(plural) optical instrument consisting of a frame that holds a pair of lenses for correcting defective vision
+72028,spectacular,a lavishly produced performance; "they put on a Christmas spectacular"
+72029,spectator witness viewer watcher looker,a close observer; someone who looks at something (such as an exhibition of some kind); "the spectators applauded the performance"; "television viewers"; "sky watchers discovered a new star"
+72030,spectator_pump spectator,a woman's pump with medium heel; usually in contrasting colors for toe and heel
+72031,spectator_sport,a sport that many people find entertaining to watch
+72032,spectinomycin,an antibiotic used to treat gonorrhea
+72033,spectrogram spectrograph,a photographic record of a spectrum
+72034,spectrograph,a spectroscope by which spectra can be photographed
+72035,spectrophotometer,a photometer for comparing two light radiations wavelength by wavelength
+72036,spectroscope prism_spectroscope,an optical instrument for spectrographic analysis
+72037,spectroscopy spectrometry spectroscopic_analysis spectrum_analysis spectrographic_analysis,the use of spectroscopes to analyze spectra
+72038,spectrum,an ordered array of the components of an emission or wave
+72039,spectrum,a broad range of related objects or values or qualities or ideas or activities
+72040,spectrum_line,an isolated component of a spectrum formed by radiation at a uniform frequency
+72041,speculation conjecture,a hypothesis that has been formed by speculating or conjecturing (usually with little hard evidence); "speculations about the outcome of the election"; "he dismissed it as mere conjecture"
+72042,speculation venture,an investment that is very risky but could yield great profits; "he knew the stock was a speculation when he bought it"
+72043,speculativeness,financial risk; "he rejected stocks that didn't pay dividends because of their speculativeness"
+72044,speculativeness,the quality of being a conclusion or opinion based on supposition and conjecture rather than on fact or investigation; "her work is highly contentious because of its speculativeness and lack of supporting evidence"
+72045,speculator,someone who makes conjectures without knowing the facts
+72046,speculator plunger,someone who risks losses for the possibility of considerable gains
+72047,speculum,a mirror (especially one made of polished metal) for use in an optical instrument
+72048,speculum,a medical instrument for dilating a bodily passage or cavity in order to examine the interior
+72049,speech,something spoken; "he could hear them uttering merry speeches"
+72050,speech,the exchange of spoken words; "they were perfectly comfortable together without speech"
+72051,speech speech_communication spoken_communication spoken_language language voice_communication oral_communication,(language) communication by word of mouth; "his speech was garbled"; "he uttered harsh language"; "he recorded the spoken language of the streets"
+72052,speech_act,the use of language to perform some act
+72053,speech_community,people sharing a given language or dialect
+72054,speech_day,an annual day in the schools when speeches are made and prizes are distributed
+72055,speech_disorder speech_defect defect_of_speech,a disorder of oral speech
+72056,speech_intelligibility,the intelligibility of speech (usually measured in the presence of noise or distortion)
+72057,speech_organ vocal_organ organ_of_speech,any of the organs involved in speech production
+72058,speech_perception,the auditory perception (and comprehension) of speech
+72059,speech_spectrum,the average sound spectrum for the human voice
+72060,speech_therapist,a therapist who treats speech defects and disorders
+72061,speech_therapy,any therapy intended to correct a disorder of speech
+72062,speechlessness,the property of being speechless
+72063,speechwriter,a writer who composes speeches for others to deliver
+72064,speed speeding hurrying,changing location rapidly
+72065,speed swiftness fastness,a rate (usually rapid) at which something happens; "the project advanced with gratifying speed"
+72066,speed velocity,distance travelled per unit time
+72067,speed-reading,reading at speeds significantly faster than normal
+72068,speed_bump,a hindrance to speeding created by a crosswise ridge in the surface of a roadway
+72069,speed_freak,addict who habitually uses stimulant drugs (especially amphetamines)
+72070,speed_limit,regulation establishing the top speed permitted on a given road
+72071,speed_of_light light_speed c,the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second
+72072,speed_skate racing_skate,an ice skate with a long blade; worn for racing
+72073,speed_skating,competitive skating on speed skates (usually around an oval course)
+72074,speed_trap,a trap arranged on a roadway for catching speeders
+72075,speedboat,a fast motorboat
+72076,speeder speed_demon,a driver who exceeds the safe speed limit
+72077,speeding_ticket,a ticket issued for driving above the speed limit
+72078,speedometer speed_indicator,a meter fixed to a vehicle that measures and displays its speed
+72079,speedskater speed_skater,an ice-skater who races competitively; usually around an oval course
+72080,speedway,road where high speed driving is allowed
+72081,speedway,a racetrack for racing automobiles or motorcycles
+72082,speleology spelaeology,the scientific study of caves
+72083,speleology spelaeology,the pastime of exploring caves
+72084,spell magic_spell magical_spell charm,a verbal formula believed to have magical force; "he whispered a spell as he moved his hands"; "inscribed around its base is a charm in Balinese"
+72085,spell-checker spelling_checker,an electronic dictionary in a word processor that can be used to catch misspelled words
+72086,spellbinder,an orator who can hold his listeners spellbound
+72087,speller,an introductory textbook to teach spelling
+72088,speller good_speller poor_speller,someone who spells words
+72089,spelling,forming words with letters according to the principles underlying accepted usage
+72090,spelling_bee spelldown spelling_contest,a contest in which you are eliminated if you fail to spell a word correctly
+72091,spelt Triticum_spelta Triticum_aestivum_spelta,hardy wheat grown mostly in Europe for livestock feed
+72092,spelter,impure zinc containing about three percent lead and other impurities (especially in the form of ingots)
+72093,spender disburser expender,someone who spends money to purchase goods or services
+72094,spending disbursement disbursal outlay,the act of spending or disbursing money
+72095,spending_cut,the act of reducing spending
+72096,spending_spree,a brief period of extravagant spending
+72097,spendthrift spend-all spender scattergood,someone who spends money prodigally
+72098,spendthrift_trust,a trust created to maintain a beneficiary but to be secure against the beneficiary's improvidence
+72099,sperm sperm_cell spermatozoon spermatozoan,the male reproductive cell; the male gamete; "a sperm is mostly a nucleus surrounded by little other cellular material"
+72100,sperm_bank,a depository for storing sperm
+72101,sperm_count,the number of sperm in an ejaculate; "the sperm count is used as an indicator of male fertility"
+72102,sperm_count,the act of estimating the number of spermatozoa in an ejaculate
+72103,sperm_oil,an animal oil found in the blubber of the sperm whale
+72104,sperm_whale cachalot black_whale Physeter_catodon,large whale with a large cavity in the head containing spermaceti and oil; also a source of ambergris
+72105,spermaceti,a white waxy substance from oil of the sperm whale
+72106,spermatic_cord,a structure resembling a cord that suspends the testis within the scrotum and contains the vas deferens and other vessels and nerves
+72107,spermatid,an immature gamete produced by a spermatocyte; develops into a spermatozoon
+72108,spermatocele,a swelling on the epididymis or the testis; usually contains spermatozoa
+72109,spermatocyte,a male gametocyte that develops into four spermatids
+72110,spermatogenesis,development of spermatozoa
+72111,spermatophyte phanerogam seed_plant,plant that reproduces by means of seeds not spores
+72112,spermicide spermatocide,a contraceptive agent that kills spermatozoa
+72113,sphagnum sphagnum_moss peat_moss bog_moss,any of various pale or ashy mosses of the genus Sphagnum whose decomposed remains form peat
+72114,sphecoid_wasp sphecoid,any of various solitary wasps
+72115,sphenion,the anterior tip of the parietal bone
+72116,sphenisciform_seabird,flightless cold-water seabirds: penguins
+72117,sphenoid_bone sphenoid os_sphenoidale,butterfly-shaped bone at the base of the skull
+72118,sphenoid_fontanelle sphenoid_fontanel sphenoidal_fontanelle sphenoidal_fontanel,the irregularly shaped area on either side of the cranium where the frontal bone and the anterior tip of the parietal bone and the temporal bone and the greater wing of the sphenoid bone meet; corresponds to the pterion when bones have ossified
+72119,sphere,a solid figure bounded by a spherical surface (including the space it encloses)
+72120,sphere,a three-dimensional closed surface such that every point on the surface is equidistant from the center
+72121,sphere,any spherically shaped artifact
+72122,sphere domain area orbit field arena,a particular environment or walk of life; "his social sphere is limited"; "it was a closed area of employment"; "he's out of my orbit"
+72123,sphere sphere_of_influence,the geographical area in which one nation is very influential
+72124,spherical_aberration,an optical aberration resulting in a distorted image
+72125,spherical_angle,an angle formed at the intersection of the arcs of two great circles
+72126,spherical_geometry,(mathematics) the geometry of figures on the surface of a sphere
+72127,spherical_polygon,a figure on the surface of a sphere bounded by arcs of 3 or more great circles
+72128,spherical_triangle,a spherical polygon formed by the arcs of 3 great circles
+72129,spherical_trigonometry,(mathematics) the trigonometry of spherical triangles
+72130,sphericity sphericalness globosity globularness rotundity rotundness,the roundness of a 3-dimensional object
+72131,spherocyte,an abnormal spherical red blood cell
+72132,spheroid ellipsoid_of_revolution,a shape that is generated by rotating an ellipse around one of its axes; "it looked like a sphere but on closer examination I saw it was really a spheroid"
+72133,spherometer,a measuring instrument for measuring the curvature of a surface
+72134,spherule,a small sphere
+72135,sphincter anatomical_sphincter sphincter_muscle,a ring of muscle that contracts to close an opening
+72136,sphinx,an inscrutable person who keeps his thoughts and intentions secret
+72137,sphinx,one of a number of large stone statues with the body of a lion and the head of a man that were built by the ancient Egyptians
+72138,sphygmomanometer,a pressure gauge for measuring blood pressure
+72139,spic spik spick,(ethnic slur) offensive term for persons of Latin American descent
+72140,spiccato spiccato_bowing,bowing in such a way that the bow bounces lightly off the strings
+72141,spice,aromatic substances of vegetable origin used as a preservative
+72142,spice,any of a variety of pungent aromatic vegetable substances used for flavoring food
+72143,spice_cake,cake flavored with spices
+72144,spice_cookie,cookie flavored with spices
+72145,spice_rack,a rack for displaying containers filled with spices
+72146,spice_tree,tree bearing aromatic bark or berries
+72147,spicebush California_allspice Calycanthus_occidentalis,straggling aromatic shrub of southwestern United States having fragrant brown flowers
+72148,spicebush spice_bush American_spicebush Benjamin_bush Lindera_benzoin Benzoin_odoriferum,deciduous shrub of the eastern United States having highly aromatic leaves and bark and yellow flowers followed by scarlet or yellow berries
+72149,spicemill,a mill for grinding spices
+72150,spiciness spice spicery,the property of being seasoned with spice and so highly flavored
+72151,spicule spiculum,small pointed structure serving as a skeletal element in various marine and freshwater invertebrates e.g. sponges and corals
+72152,spider,a skillet made of cast iron
+72153,spider,predatory arachnid with eight legs, two poison fangs, two feelers, and usually two silk-spinning organs at the back end of the body; they spin silk to make cocoons for eggs or traps for prey
+72154,spider wanderer,a computer program that prowls the internet looking for publicly accessible resources that can be added to a database; the database can then be searched with a search engine
+72155,spider_angioma spider_nevus vascular_spider,a dilation of superficial capillaries with a central red dot from which blood vessels radiate
+72156,spider_brake spider_fern Pteris_multifida,Asiatic fern introduced in America
+72157,spider_crab,any of numerous crabs with very long legs and small triangular bodies
+72158,spider_flower spider_plant Cleome_hassleriana,native to South America but naturalized in warm parts of United States; grown for its long-lasting spider-shaped white to pink-purple flowers
+72159,spider_mite tetranychid,web-spinning mite that attacks garden plants and fruit trees
+72160,spider_monkey Ateles_geoffroyi,arboreal monkey of tropical America with long slender legs and long prehensile tail
+72161,spider_orchid,any of several European orchids of the genus Ophrys
+72162,spider_orchid Brassia_lawrenceana,South American orchid with spiderlike pale-yellow to pale-green flowers
+72163,spider_orchid Brassia_verrucosa,Central American orchid having spiderlike flowers with prominent green warts
+72164,spider_web spider's_web,a web resembling the webs spun by spiders
+72165,spider_web spider's_web,a web spun by spiders to trap insect prey
+72166,spiderflower cleome,any of various often strong-smelling plants of the genus Cleome having showy spider-shaped flowers
+72167,spiderwort dayflower,any plant of the family Commelinaceae
+72168,spiegeleisen spiegel spiegel_iron,pig iron containing manganese; used as a deoxidizing agent and to raise the manganese content in making steel
+72169,spiel patter line_of_gab,plausible glib talk (especially useful to a salesperson)
+72170,spiff,attractiveness in appearance or dress or manner; "he gets by largely on pure spiff"
+72171,spike,(botany) an indeterminate inflorescence bearing sessile flowers on an unbranched axis
+72172,spike,a sharp rise followed by a sharp decline; "the seismograph showed a sharp spike in response to the temblor"
+72173,spike,a transient variation in voltage or current
+72174,spike,each of the sharp points on the soles of athletic shoes to prevent slipping (or the shoes themselves); "the second baseman sharpened his spikes before every game"; "golfers' spikes damage the putting greens"
+72175,spike,a sharp-pointed projection along the top of a fence or wall (or a dinosaur)
+72176,spike,a long, thin sharp-pointed implement (wood or metal); "one of the spikes impaled him"
+72177,spike,a large stout nail; "they used spikes to fasten the rails to a railroad tie"
+72178,spike,sports equipment consisting of a sharp point on the sole of a shoe worn by athletes; "spikes provide greater traction"
+72179,spike spindle,any holding device consisting of a rigid, sharp-pointed object; "the spike pierced the receipts and held them in order"
+72180,spike_heath Bruckenthalia_spiculifolia,small evergreen mat-forming shrub of southern Europe and Asia Minor having stiff stems and terminal clusters of small bell-shaped flowers
+72181,spike_heel spike stiletto_heel,a very high narrow heel on women's shoes
+72182,spike_lavender French_lavender Lavandula_latifolia,Mediterranean plant with pale purple flowers that yields spike lavender oil
+72183,spike_lavender_oil spike_oil,pale yellow essential oil obtained from spike lavender used in scenting soaps and cosmetics
+72184,spike_microphone spike_mike,a contact microphone for listening through walls
+72185,spike_rush,a sedge of the genus Eleocharis
+72186,spikemoss spike_moss little_club_moss,any of numerous fern allies of the genus Selaginella
+72187,spill,liquid that is spilled; "clean up the spills"
+72188,spill spillage release,the act of allowing a fluid to escape
+72189,spill tumble fall,a sudden drop from an upright position; "he had a nasty spill on the ice"
+72190,spillage,the amount that has spilled
+72191,spillover,(economics) any indirect effect of public expenditure
+72192,spillway spill wasteweir,a channel that carries excess water over or around a dam or other obstruction
+72193,spin,a swift whirling motion (usually of a missile)
+72194,spin,a short drive in a car; "he took the new car for a spin"
+72195,spin,a distinctive interpretation (especially as used by politicians to sway public opinion); "the campaign put a favorable spin on the story"
+72196,spin twirl twist twisting whirl,the act of rotating rapidly; "he gave the crank a spin"; "it broke off after much twisting"
+72197,spin_doctor spinmeister,a public relations person who tries to forestall negative publicity by publicizing a favorable interpretation of the words or actions of a company or political party or famous person; "his title is Director of Communications but he is just a spin doctor"
+72198,spin_dryer spin_drier,a clothes dryer that uses centrifugal motion to dry the clothes that are put into it
+72199,spin_the_bottle,a game in which a player spins a bottle and kisses the person that it points to when it stops spinning
+72200,spin_the_plate spin_the_platter,a game in which something round (as a plate) is spun on edge and the name of a player is called; the named player must catch the spinning object before it falls or pay a forfeit
+72201,spina_bifida rachischisis schistorrhachis,a not uncommon congenital defect in which a vertebra is malformed; unless several vertebrae are affected or there is myelomeningocele there are few symptoms; can be diagnosed by amniocentesis
+72202,spinach,dark green leaves; eaten cooked or raw in salads
+72203,spinach spinach_plant prickly-seeded_spinach Spinacia_oleracea,southwestern Asian plant widely cultivated for its succulent edible dark green leaves
+72204,spinach_blight,a disease of spinach plants
+72205,spinal_anesthesia spinal_anaesthesia spinal,anesthesia of the lower half of the body; caused by injury to the spinal cord or by injecting an anesthetic beneath the arachnoid membrane that surrounds the spinal cord
+72206,spinal_anesthetic spinal_anaesthetic,an anesthetic that is injected into the spine
+72207,spinal_canal vertebral_canal canalis_vertebralis,the canal in successive vertebrae through which the spinal cord passes
+72208,spinal_column vertebral_column spine backbone back rachis,the series of vertebrae forming the axis of the skeleton and protecting the spinal cord; "the fall broke his back"
+72209,spinal_cord medulla_spinalis,a major part of the central nervous system which conducts sensory and motor nerve impulses to and from the brain; a long tubelike structure extending from the base of the brain through the vertebral canal to the upper lumbar region
+72210,spinal_curvature,an abnormal curvature of the vertebral column
+72211,spinal_fluid cerebrospinal_fluid,clear liquid produced in the ventricles of the brain; fills and protects cavities in the brain and spinal cord
+72212,spinal_nerve nervus_spinalis,any of the 31 pairs of nerves emerging from each side of the spinal cord (each attached to the cord by two roots: ventral and dorsal)
+72213,spinal_nerve_root,one of two roots of the spinal nerves
+72214,spinal_nerve_roots,either of two roots of the spinal nerves
+72215,spinal_vein vena_spinalis,veins that drain the spinal cord
+72216,spindle,(biology) tiny fibers that are seen in cell division; the fibers radiate from two poles and meet at the equator in the middle; "chromosomes are distributed by spindles in mitosis and meiosis"
+72217,spindle,a piece of wood that has been turned on a lathe; used as a baluster, chair leg, etc.
+72218,spindle,a stick or pin used to twist the yarn in spinning
+72219,spindle mandrel mandril arbor,any of various rotating shafts that serve as axes for larger rotating parts
+72220,spindle_tree spindleberry spindleberry_tree,any shrubby trees or woody vines of the genus Euonymus having showy usually reddish berries
+72221,spindlelegs spindleshanks,a thin person with long thin legs
+72222,spindlelegs spindleshanks,long thin legs
+72223,spindrift spoondrift,spray blown up from the surface of the sea
+72224,spine,a sharp rigid animal process or appendage; as a porcupine quill or a ridge on a bone or a ray of a fish fin
+72225,spine backbone,the part of a book's cover that encloses the inner side of the book's pages and that faces outward when the book is shelved; "the title and author were printed on the spine of the book"
+72226,spine thorn prickle pricker sticker spikelet,a small sharp-pointed tip resembling a spike on a stem or leaf
+72227,spinel,a hard glassy mineral consisting of an oxide of magnesium and aluminum; occurs in various colors that are used as gemstones
+72228,spinel_ruby ruby_spinel,a spinel used as a gemstone (usually dark red)
+72229,spinelessness,the quality of lacking a strong character; an irresolute disposition
+72230,spinet,a small and compactly built upright piano
+72231,spinet,early model harpsichord with only one string per note
+72232,spinnability,the quality of being suitable for spinning or the capability of being spun (used of textile fibers)
+72233,spinnaker,a large and usually triangular headsail; carried by a yacht as a headsail when running before the wind
+72234,spinnbarkeit,the capacity of a viscous liquid (especially the cervical mucus) to be drawn out into a strand or blown up into a bubble
+72235,spinner,board game equipment that consists of a dial and an arrow that is spun to determine the next move in the game
+72236,spinner,fisherman's lure; revolves when drawn through the water
+72237,spinner spinster thread_maker,someone who spins (who twists fibers into threads)
+72238,spinney,a copse that shelters game
+72239,spinning,creating thread
+72240,spinning_frame,spinning machine that draws, twists, and winds yarn
+72241,spinning_jenny,an early spinning machine with multiple spindles
+72242,spinning_machine,a textile machine for spinning yarn and thread
+72243,spinning_rod,a fishing rod designed for casting a spinning lure
+72244,spinning_wheel,a small domestic spinning machine with a single spindle that is driven by hand or foot
+72245,spinocerebellar_disorder,any of several congenital disorders marked by degeneration of the cerebellum and spinal cord resulting in spasticity and ataxia
+72246,spinster old_maid,an elderly unmarried woman
+72247,spinsterhood,the state of being a spinster (usually an elderly unmarried woman)
+72248,spiny-finned_fish acanthopterygian,a teleost fish with fins that are supported by sharp inflexible rays
+72249,spiny_dogfish,small bottom-dwelling dogfishes
+72250,spiny_lizard,any of numerous lizards with overlapping ridged pointed scales; of North America and Central America
+72251,spiny_lobster langouste rock_lobster crawfish crayfish sea_crawfish,large edible marine crustacean having a spiny carapace but lacking the large pincers of true lobsters
+72252,spiny_lobster langouste rock_lobster crayfish,warm-water lobsters without claws; those from Australia and South Africa usually marketed as frozen tails; caught also in Florida and California
+72253,spiny_puffer,puffers having rigid or erectile spines
+72254,spiny_softshell Trionyx_spiniferus,river turtle of western United States with a warty shell; prefers quiet water
+72255,spiny_talinum Talinum_spinescens,low cushion-forming plant with rose to crimson-magenta flowers and leaf midribs that persist as spines when the leaves die; southwestern United States
+72256,spiracle,a breathing orifice
+72257,spiral,a plane curve traced by a point circling about the center but at increasing distances from the center
+72258,spiral,a continuously accelerating change in the economy
+72259,spiral,flying downward in a helical path with a large radius
+72260,spiral volute,ornament consisting of a curve on a plane that winds around a center with an increasing distance from the center
+72261,spiral_bandage,an oblique bandage in which successive turns overlap preceding turns
+72262,spiral_galaxy spiral_nebula,a galaxy having a spiral structure; arms containing younger stars spiral out from old stars at the center
+72263,spiral_ratchet_screwdriver ratchet_screwdriver,a screwdriver with a ratchet (so the blade turns in only one direction) and a spiral in the handle (so the blade rotates) with downward pressure on the handle
+72264,spiral_spring,a spring that is wound like a spiral
+72265,spirea spiraea,any rosaceous plant of the genus Spiraea; has sprays of small white or pink flowers
+72266,spirea spiraea Astilbe_japonica,a Japanese shrub that resembles members of the genus Spiraea; widely cultivated in many varieties for its dense panicles of flowers in many colors; often forced by florists for Easter blooming
+72267,spirillum,spirally twisted elongate rodlike bacteria usually living in stagnant water
+72268,spirillum spirilla,any flagellated aerobic bacteria having a spirally twisted rodlike form
+72269,spirit,the vital principle or animating force within living things
+72270,spirit,a fundamental emotional and activating principle determining one's character
+72271,spirit disembodied_spirit,any incorporeal supernatural being that can become visible (or audible) to human beings
+72272,spirit tone feel feeling flavor flavour look smell,the general atmosphere of a place or situation and the effect that it has on people; "the feel of the city excited him"; "a clergyman improved the tone of the meeting"; "it had the smell of treason"
+72273,spirit_gum,an adhesive solution made of gum and ether and used to attach false hair to skin
+72274,spirit_lamp,a lamp that burns a volatile liquid fuel such as alcohol
+72275,spirit_rapper,someone who claims to receive messages from the dead in the form of raps on a table
+72276,spirit_stove,a stove that burns a volatile liquid fuel such as alcohol
+72277,spirit_world,any imaginary place where spiritual beings (demons or fairies or angels or the like) abide; "science has emptied the spirit world of its former inhabitants"
+72278,spirits_of_ammonia sal_volatile,a solution of ammonium carbonate in ammonia water and alcohol
+72279,spirits_of_wine,rectified ethyl alcohol
+72280,spiritual Negro_spiritual,a kind of religious song originated by Blacks in the southern United States
+72281,spiritual_being supernatural_being,an incorporeal being believed to have powers to affect the course of human events
+72282,spiritual_bouquet,(Roman Catholic Church) a card indicating that the sender will perform certain devotional acts on behalf of another
+72283,spiritual_leader,a leader in religious or sacred affairs
+72284,spiritual_world spiritual_domain unseen,a belief that there is a realm controlled by a divine spirit
+72285,spiritualism,(theology) any doctrine that asserts the separate existence of God
+72286,spiritualism,the belief that the spirits of dead people can communicate with people who are still alive (especially via a medium)
+72287,spirituality spiritualism spiritism otherworldliness,concern with things of the spirit
+72288,spiritualization spiritualisation,the act of making something spiritual; infusing it with spiritual content
+72289,spiritualty spirituality church_property,property or income owned by a church
+72290,spirochete spirochaete,parasitic or free-living bacteria; many pathogenic to humans and other animals
+72291,spirogram,a recording of breathing made with a spirograph
+72292,spirograph,a measuring instrument for recording the depth and rapidity of breathing movements
+72293,spirogyra,freshwater algae consisting of minute filaments containing spiral chlorophyll bands
+72294,spirometer,a measuring instrument for measuring the vital capacity of the lungs
+72295,spirometry,the use of a spirometer to measure vital capacity
+72296,spironolactone Aldactone,a synthetic corticosteroid (trade name Aldactone) used to treat hypertension
+72297,spirula Spirula_peronii,a small tropical cephalopod of the genus Spirula having prominent eyes and short arms and a many-chambered shell coiled in a flat spiral
+72298,spit,a skewer for holding meat over a fire
+72299,spit spitting expectoration,the act of spitting (forcefully expelling saliva)
+72300,spit tongue,a narrow strip of land that juts out into the sea
+72301,spit_and_polish,careful attention to order and appearance (as in the military)
+72302,spit_curl kiss_curl,a spiral curl plastered on the forehead or cheek
+72303,spitball,a projectile made by chewing a piece of paper and shaping it into a sphere
+72304,spitball spitter,an illegal pitch in which a foreign substance (spit or Vaseline) is applied to the ball by the pitcher before he throws it
+72305,spitfire,a highly emotional and quick-tempered person (especially a girl or woman)
+72306,spitter expectorator,a person who spits (ejects saliva or phlegm from the mouth)
+72307,spitting_image,a perfect likeness or counterpart
+72308,spittle_insect spittlebug,small leaping herbivorous insect that lives in a mass of protective froth which it and its larvae secrete
+72309,spittoon cuspidor,a receptacle for spit (usually in a public place)
+72310,spitz,any of various stocky heavy-coated breeds of dogs native to northern regions having pointed muzzles and erect ears with a curled furry tail
+72311,spiv,a person without employment who makes money by various dubious schemes; goes about smartly dressed and having a good time
+72312,splanchnic_nerve,any of several nerves of the sympathetic part of the autonomic nervous system that innervate viscera and blood vessels
+72313,splash,a patch of bright color; "her red hat gave her outfit a splash of color"
+72314,splash plash,the sound like water splashing
+72315,splash splashing,the act of scattering water about haphazardly
+72316,splashboard splasher dashboard,protective covering consisting of a panel to protect people from the splashing water or mud etc.
+72317,splashdown,a landing of a spacecraft in the sea at the end of a space flight
+72318,splasher,a protective covering over or beside a wheel to protect the upper part of a vehicle from splashes of mud
+72319,splat,a single splash; "he heard a splat as it hit the floor"
+72320,splat,a slat of wood in the middle of the back of a straight chair
+72321,splay,an outward bevel around a door or window that makes it seem larger
+72322,spleen lien,a large dark-red oval organ on the left side of the body between the stomach and the diaphragm; produces cells involved in immune responses
+72323,spleenwort,any of various chiefly rock-inhabiting ferns of the genus Asplenium
+72324,splenectomy,surgical removal of the spleen
+72325,splenic_vein vena_lienalis,a vein formed by several small veins on the surface of the spleen; joins the superior mesenteric to form the portal vein
+72326,splenitis,inflammation of the spleen
+72327,splenius splenius_muscle,either of two flat muscles that extend from the upper vertebrae to the base of the skull and serve to rotate or flex or extend the head and neck
+72328,splenomegaly,an abnormal enlargement of the spleen
+72329,splice splicing,a junction where two things (as paper or film or magnetic tape) have been joined together; "the break was due to an imperfect splice"
+72330,splicer,a woodworker who joins pieces of wood with a splice
+72331,splicer,a worker who splices ropes together by interweaving strands
+72332,splicer,a mechanical device for joining two pieces of paper or film or magnetic tape
+72333,spline,a flexible strip (wood or rubber) used in drawing curved lines
+72334,splint,a thin sliver of wood; "he lit the fire with a burning splint"
+72335,splint,an orthopedic mechanical device used to immobilize and protect a part of the body (as a broken leg)
+72336,splint_bone,a rudimentary metacarpal or metatarsal bone on either side of the cannon bone in the leg of a horse or related animal
+72337,splinter sliver,a small thin sharp bit or wood or glass or metal; "he got a splinter in his finger"; "it broke into slivers"
+72338,splinter_group,a faction or sect that has broken away from its parent organization
+72339,split,a bottle containing half the usual amount
+72340,split,a promised or claimed share of loot or money; "he demanded his split before they disbanded"
+72341,split,a lengthwise crack in wood; "he inserted the wedge into a split in the log"
+72342,split,a dessert of sliced fruit and ice cream covered with whipped cream and cherries and nuts
+72343,split,(tenpin bowling) a divided formation of pins left standing after the first bowl; "he was winning until he got a split in the tenth frame"
+72344,split,extending the legs at right angles to the trunk (one in front and the other in back)
+72345,split stock_split split_up,an increase in the number of outstanding shares of a corporation without changing the shareholders' equity; "they announced a two-for-one split of the common stock"
+72346,split-brain_technique,brain surgery on animals in which the corpus callosum (and sometimes the optic chiasm) is severed so that communication between the cerebral hemispheres is interrupted
+72347,split-half_correlation chance-half_correlation,a correlation coefficient calculated between scores on two halves of a test; taken as an indication of the reliability of the test
+72348,split-pea,dried hulled pea; used in soup
+72349,split-pea_soup,made of stock and split peas with onions carrots and celery
+72350,split_decision,a boxing decision in which the judges are not unanimous
+72351,split_end,(football) an offensive end who lines up at a distance from the other linemen
+72352,split_infinitive,an infinitive with an adverb between `to' and the verb (e.g., `to boldly go')
+72353,split_personality multiple_personality,a relatively rare dissociative disorder in which the usual integrity of the personality breaks down and two or more independent personalities emerge
+72354,split_rail fence_rail,a rail that is split from a log
+72355,split_run,a print run of a newspaper during which some articles or advertisements are changed to produce a different edition
+72356,split_shift,a working shift divided into two periods of time with several hours in between
+72357,split_ticket,a ballot cast by a voter who votes for candidates from more than one party
+72358,splitsville,separation or breakup or divorce; "after 15 years together they are headed for splitsville"
+72359,splitter,a worker who splits fish and removes the backbone
+72360,splitter divider,a taxonomist who classifies organisms into many groups on the basis of relatively minor characteristics
+72361,splurge,an ostentatious display (of effort or extravagance etc.)
+72362,spodumene,a pyroxene mineral consisting of lithium aluminum silicate; a source of lithium
+72363,spoil,(usually plural) valuables taken by violence (especially in war); "to the victor belong the spoils of the enemy"
+72364,spoil spoiling spoilage,the act of spoiling something by causing damage to it; "her spoiling my dress was deliberate"
+72365,spoil spoliation spoilation despoilation despoilment despoliation,the act of stripping and taking by force
+72366,spoilage,the amount that has spoiled
+72367,spoilage spoiling,the process of becoming spoiled
+72368,spoiler,a candidate with no chance of winning but who may draw enough votes to prevent one of the leading candidates from winning
+72369,spoiler,an airfoil mounted on the rear of a car to reduce lift at high speeds
+72370,spoiler,a hinged airfoil on the upper surface of an aircraft wing that is raised to reduce lift and increase drag
+72371,spoils_system,the system of employing and promoting civil servants who are friends and supporters of the group in power
+72372,spoilsport killjoy wet_blanket party_pooper,someone who spoils the pleasure of others
+72373,spoke wheel_spoke radius,support consisting of a radial member of a wheel joining the hub to the rim
+72374,spokeshave,a small plane that has a handle on each side of its blade; used for shaping or smoothing cylindrical wooden surfaces (originally wheel spokes)
+72375,spokesman,a male spokesperson
+72376,spokesperson interpreter representative voice,an advocate who represents someone else's policy or purpose; "the meeting was attended by spokespersons for all the major organs of government"
+72377,spokeswoman,a female spokesperson
+72378,spoliation,(law) the intentional destruction of a document or an alteration of it that destroys its value as evidence
+72379,spondee,a metrical unit with stressed-stressed syllables
+72380,spondylarthritis,arthritis that affects one or more of the intervertebral joints in the spine
+72381,spondylitis,inflammation of a spinal joint; characterized by pain and stiffness
+72382,spondylolisthesis,a forward dislocation of one vertebra over the one beneath it producing pressure on spinal nerves
+72383,sponge,a porous mass of interlacing fibers that forms the internal skeleton of various marine animals and usable to absorb water or any porous rubber or cellulose product similarly used
+72384,sponge poriferan parazoan,primitive multicellular marine animal whose porous body is supported by a fibrous skeletal framework; usually occurs in sessile colonies
+72385,sponge_bath,you wash your body with a sponge or washcloth instead of in a bathtub
+72386,sponge_cake,a light porous cake made with eggs and flour and sugar without shortening
+72387,sponge_cloth,any soft porous fabric (especially in a loose honeycomb weave)
+72388,sponge_genus,a genus of Porifera
+72389,sponge_mop,a wet mop with a sponge as the absorbent
+72390,spongefly spongillafly,hairy-bodied insect whose larvae feed on freshwater sponges
+72391,sponger,a workman employed to collect sponges
+72392,sponginess,the porosity of a sponge
+72393,spongioblast,any of various columnar epithelial cells in the central nervous system that develop into neuroglia
+72394,sponsorship,the act of sponsoring (either officially or financially)
+72395,spontaneity spontaneousness,the quality of being spontaneous and coming from natural feelings without constraint; "the spontaneity of his laughter"
+72396,spontaneous_abortion miscarriage stillbirth,a natural loss of the products of conception
+72397,spontaneous_combustion,ignition of a substance (as oily rags) resulting from an internal oxidation process
+72398,spoon,formerly a golfing wood with an elevated face
+72399,spoon,a piece of cutlery with a shallow bowl-shaped container and a handle; used to stir or serve or take up food
+72400,spoon spoonful,as much as a spoon will hold; "he added two spoons of sugar"
+72401,spoon_bread batter_bread,soft bread made of cornmeal and sometimes rice or hominy; must be served with a spoon (chiefly southern)
+72402,spoonbill,wading birds having a long flat bill with a tip like a spoon
+72403,spoonerism,transposition of initial consonants in a pair of words
+72404,spoonfeeding,feeding someone (as a baby) from a spoon
+72405,spoonfeeding,teaching in an overly simplified way that discourages independent thought
+72406,spoor,the trail left by a person or an animal; what the hunter follows in pursuing game; "the hounds followed the fox's spoor"
+72407,sporangiophore,stalk bearing one or more sporangia
+72408,sporangium spore_case spore_sac,organ containing or producing spores
+72409,spore,a small usually single-celled asexual reproductive body produced by many nonflowering plants and fungi and some bacteria and protozoans and that are capable of developing into a new individual without sexual fusion; "a sexual spore is formed after the fusion of gametes"
+72410,spore_mother_cell,cell from which a spore develops
+72411,sporocarp spore_case,specialized leaf branch in certain aquatic ferns that encloses the sori or clusters of sporangia
+72412,sporophore,a spore-bearing branch or organ: the part of the thallus of a sporophyte that develops spores; in ferns and mosses and liverworts is practically equivalent to the sporophyte
+72413,sporophyll sporophyl,leaf in ferns and mosses that bears the sporangia
+72414,sporophyte,the spore-producing individual or phase in the life cycle of a plant having alternation of generations
+72415,sporotrichosis,a chronic fungal infection of the skin and lymph nodes
+72416,sporozoan,parasitic spore-forming protozoan
+72417,sporozoite,one of the minute active bodies into which sporozoans divide in one stage of their life cycle
+72418,sporran,a fur or leather pouch worn at the front of the kilt as part of the traditional dress of Scottish Highlanders
+72419,sport,a person known for the way she (or he) behaves when teased or defeated or subjected to trying circumstances; "a good sport"; "a poor sport"
+72420,sport,the occupation of athletes who compete for pay
+72421,sport athletics,an active diversion requiring physical exertion and competition
+72422,sport sportsman sportswoman,someone who engages in sports
+72423,sport summercater,(Maine colloquial) a temporary summer resident of Maine
+72424,sport_kite stunt_kite,a maneuverable kite controlled by two lines and flown with both hands
+72425,sport_utility sport_utility_vehicle S.U.V. SUV,a high-performance four-wheel drive car built on a truck chassis
+72426,sporting_dog gun_dog,a dog trained to work with sportsmen when they hunt with guns
+72427,sporting_goods,sports equipment sold as a commodity
+72428,sporting_life,active interest in gambling on sports events
+72429,sporting_man,someone who leads a merry existence; especially a gambler on the outcome of sporting events
+72430,sporting_man outdoor_man,someone who enjoys outdoor activities
+72431,sports_announcer sportscaster sports_commentator,an announcer who reads sports news or describes sporting events
+72432,sports_car sport_car,a small low car with a high-powered engine; usually seats two persons
+72433,sports_desk,the editorial department of a newspaper that edits the sports news
+72434,sports_editor,the newspaper editor responsible for sports news
+72435,sports_equipment,equipment needed to participate in a particular sport
+72436,sports_fan fan rooter,an enthusiastic devotee of sports
+72437,sports_implement,an implement used in a sport
+72438,sports_medicine,the branch of medicine concerned with the treatment of injuries or illness resulting from athletic activities
+72439,sports_page,any page in the sports section of a newspaper
+72440,sports_section,the section of a newspaper that reports on sports
+72441,sports_writer sportswriter,a journalist who writes about sports
+72442,sportscast,a broadcast of sports news or commentary
+72443,sportsmanship,fairness in following the rules of the game
+72444,sportswear athletic_wear activewear,attire worn for sport or for casual wear
+72445,spot,a short section or illustration (as between radio or tv programs or in a magazine) that is often used for advertising
+72446,spot,a section of an entertainment that is assigned to a specific performer or performance; "they changed his spot on the program"
+72447,spot,a playing card with a specified number of pips on it to indicate its value; "an eight-spot"
+72448,spot,a business establishment for entertainment; "night spot"
+72449,spot bit,a small piece or quantity of something; "a spot of tea"; "a bit of paper"; "a bit of lint"; "I gave him a bit of my mind"
+72450,spot pip,a mark on a die or on a playing card (shape depending on the suit)
+72451,spot speckle dapple patch fleck maculation,a small contrasting part of something; "a bald spot"; "a leopard's spots"; "a patch of clouds"; "patches of thin ice"; "a fleck of red"
+72452,spot-welder spot_welder,a welder who does spot welding
+72453,spot_check,a check on work performance or product quality made at random times without warning; "spot checks ensure a high level of performance by employees"
+72454,spot_jamming selective_jamming,electronic jamming of a specific channel or frequency
+72455,spot_market,a market in which a commodity is bought or sold for immediate delivery or delivery in the very near future
+72456,spot_pass,a pass to a designated spot on the field; the receiver should arrive at that spot the same time the ball does
+72457,spot_price cash_price,the current delivery price of a commodity traded in the spot market
+72458,spot_weld spot-weld,each of the welds made by welding at a separate point
+72459,spot_welding spot-welding,creating an overlapping joint by welding at small points
+72460,spotlessness immaculateness,the state of being spotlessly clean
+72461,spotlight spot,a lamp that produces a strong beam of light to illuminate a restricted area; used to focus attention of a stage performer
+72462,spotted_antbird Hylophylax_naevioides,a kind of antbird
+72463,spotted_coral_root Corallorhiza_maculata,common coral root having yellowish- or reddish- or purplish-brown leafless stems bearing loose racemes of similarly colored flowers with white purple-spotted lips; Guatemala to Canada
+72464,spotted_cowbane spotted_hemlock spotted_water_hemlock,tall biennial water hemlock of northeastern North America having purple-spotted stems and clusters of extremely poisonous tuberous roots resembling small sweet potatoes
+72465,spotted_crake Porzana_porzana,Eurasian rail of swamps and marshes
+72466,spotted_dick,a suet pudding containing currants
+72467,spotted_eagle_ray spotted_ray Aetobatus_narinari,ray with back covered with white or yellow spots; widely distributed in warm seas
+72468,spotted_fever,any of several severe febrile diseases characterized by skin rashes or spots on the skin
+72469,spotted_flycatcher Muscicapa_striata Muscicapa_grisola,common European woodland flycatcher with greyish-brown plumage
+72470,spotted_gum Eucalyptus_maculata,large gum tree with mottled bark
+72471,spotted_hyena laughing_hyena Crocuta_crocuta,African hyena noted for its distinctive howl
+72472,spotted_lynx Lynx_pardina,of southern Europe
+72473,spotted_owl Strix_occidentalis,a large owl of North America found in forests from British Columbia to central Mexico; has dark brown plumage and a heavily spotted chest
+72474,spotted_salamander Ambystoma_maculatum,glossy black North American salamander with yellow spots
+72475,spotted_salamander fire_salamander Salamandra_maculosa,European salamander having dark skin with usually yellow spots
+72476,spotted_sandpiper Actitis_macularia,common North American sandpiper
+72477,spotted_skunk little_spotted_skunk Spilogale_putorius,small skunk with a marbled black and white coat; of United States and Mexico
+72478,spotted_sunfish stumpknocker Lepomis_punctatus,inhabits streams from South Carolina to Florida; esteemed panfish
+72479,spotted_weakfish spotted_sea_trout spotted_squeateague Cynoscion_nebulosus,weakfish of southern Atlantic and Gulf Coasts of United States
+72480,spotter,a worker employed at a dry-cleaning establishment to remove spots
+72481,spotter,a worker employed to apply spots (as markers or identifiers)
+72482,spouse partner married_person mate better_half,a person's partner in marriage
+72483,spout,an opening that allows the passage of liquids or grain
+72484,spouter,an oil well that is spouting
+72485,spouter,a spouting whale
+72486,sprachgefuhl,an intuitive feeling for the natural idiom of a language; "Dubyuh has no sprachgefuhl"
+72487,sprag,a chock or bar wedged under a wheel or between the spokes to prevent a vehicle from rolling down an incline
+72488,sprain,a painful injury to a joint caused by a sudden wrenching of its ligaments
+72489,sprat brisling,small fatty European fish; usually smoked or canned like sardines
+72490,sprawl sprawling,an ungainly posture with arms and legs spread about
+72491,sprawler,a person who sprawls; "he is such a sprawler he needs a bed to himself"
+72492,spray,water in small drops in the atmosphere; blown from waves or thrown up by a waterfall
+72493,spray,a pesticide in suspension or solution; intended for spraying
+72494,spray,a jet of vapor
+72495,spray,flower arrangement consisting of a single branch or shoot bearing flowers and foliage
+72496,spray spraying,a quantity of small objects flying through the air; "a spray of bullets"
+72497,spray_gun,an applicator resembling a gun for applying liquid substances (as paint) in the form of a spray
+72498,spray_paint,paint applied with a spray gun
+72499,spray_painting,applying paint with a sprayer
+72500,sprayer,a worker who applies spray to a surface
+72501,spraying,the application of a liquid in the form of small particles ejected from a sprayer
+72502,spread,the expansion of a person's girth (especially at middle age); "she exercised to avoid that middle-aged spread"
+72503,spread paste,a tasty mixture to be spread on bread or crackers or used in preparing other dishes
+72504,spread spread_head spreadhead facing_pages,two facing pages of a book or other publication
+72505,spread spreading,process or result of distributing or extending over a wide expanse of space
+72506,spread spreading,act of extending over a wider scope or expanse of space or time
+72507,spread_eagle,an emblem (an eagle with wings and legs spread) on the obverse of the Great Seal of the United States
+72508,spread_eagle,a skating figure executed with the skates heel to heel in a straight line
+72509,spreader,a hand tool for spreading something; "he used his knife as a spreader"
+72510,spreading_fleabane Erigeron_divergens,well-branched plant with hairy leaves and stems each with a solitary flower head with narrow white or pink or lavender rays; western North America
+72511,spreading_pogonia funnel-crest_rosebud_orchid Cleistes_divaricata Pogonia_divaricata,orchid of northeastern United States with magenta-pink flowers having funnel-shaped lip; sometimes placed in genus Pogonia
+72512,spreadsheet,a screen-oriented interactive program enabling a user to lay out financial data on the screen
+72513,sprechgesang sprechstimme,a style of dramatic vocalization between singing and speaking
+72514,spree fling,a brief indulgence of your impulses
+72515,spree_killer,a serial killer whose murders occur within a brief period of time
+72516,sprig,an ornament that resembles a spray of leaves or flowers
+72517,spring,a point at which water issues forth
+72518,spring,a metal elastic device that returns to its shape or position when pushed or pulled or pressed; "the spring was broken"
+72519,spring fountain outflow outpouring natural_spring,a natural flow of ground water
+72520,spring springtime,the season of growth; "the emerging buds were a sure sign of spring"; "he will hold office until the spring of next year"
+72521,spring-cleaning,the activity of cleaning a house thoroughly at the end of winter
+72522,spring_balance spring_scale,a balance that measure weight by the tension on a helical spring
+72523,spring_beauty Clatonia_lanceolata,small slender plant having one pair of succulent leaves at the middle of the stem and a loose raceme of white or pink or rose bowl-shaped flowers and an edible corm
+72524,spring_break,a week or more of recess during the spring term at school
+72525,spring_cankerworm,variably colored looper; larva of Paleacrita vernata
+72526,spring_chicken,a young chicken having tender meat
+72527,spring_cress Cardamine_bulbosa,small white-flowered cress common in wet places in eastern North America
+72528,spring_mattress,a mattress containing springs in a rigid frame
+72529,spring_peeper Hyla_crucifer,a small brown tree toad having a shrill call heard near wetlands of eastern United States and Canada in early spring
+72530,spring_squill Scilla_verna sea_onion,European scilla with small blue or purple flowers
+72531,spring_training,preseason training during the spring
+72532,spring_vetch Vicia_sativa,herbaceous climbing plant valuable as fodder and for soil-building
+72533,spring_vetchling spring_vetch Lathyrus_vernus,bushy European perennial having nodding racemose violet-blue flowers
+72534,spring_water,water from a spring
+72535,springboard,a flexible board for jumping upward
+72536,springboard jumping-off_point point_of_departure,a beginning from which an enterprise is launched; "he uses other people's ideas as a springboard for his own"; "reality provides the jumping-off point for his illusions"; "the point of departure of international comparison cannot be an institution but must be the function it carries out"
+72537,springbok springbuck Antidorcas_marsupialis Antidorcas_euchore,a South African gazelle noted for springing lightly into the air
+72538,springer impost,the lowest stone in an arch -- from which it springs
+72539,springer springing_cow,a cow about to give birth
+72540,springer_spaniel springer,a large spaniel with wavy silky coat usually black or liver and white
+72541,springtide,a swelling rush of anything; "he rose on the springtide of prosperity"
+72542,springtide,a greater than average tide occurring during the new and full moons
+72543,sprinkle sprinkling sparge,the act of sprinkling or splashing water; "baptized with a sprinkling of holy water"; "a sparge of warm water over the malt"
+72544,sprinkler,mechanical device that attaches to a garden hose for watering lawn or garden
+72545,sprinkler_system,a system for extinguishing fires; water from a network of overhead pipes is released through nozzles that open automatically with the rise in temperature
+72546,sprinter,someone who runs a short distance at top speed
+72547,sprit,a light spar that crosses a fore-and-aft sail diagonally
+72548,sprites red_sprites,atmospheric electricity (lasting 10 msec) appearing as globular flashes of red (pink to blood-red) light rising to heights of 60 miles (sometimes seen together with elves)
+72549,spritsail,a fore-and-aft sail extended by a sprit
+72550,spritz,a quick squirt of some liquid (usually carbonated water)
+72551,spritzer,a mixed drink made of wine mixed with a sparkling water
+72552,sprocket,roller that has teeth on the rims to pull film or paper through
+72553,sprocket sprocket_wheel,thin wheel with teeth that engage with a chain
+72554,sprog,a new military recruit
+72555,sprog,a child
+72556,sprout,any new growth of a plant such as a new branch or a bud
+72557,sprout,a newly grown bud (especially from a germinating seed)
+72558,spruce,light soft moderately strong wood of spruce trees; used especially for timbers and millwork
+72559,spruce,any coniferous tree of the genus Picea
+72560,spruce_bark_beetle Dendroctonus_rufipennis,small beetle that likes to bore through the bark of spruce trees and eat the cambium which eventually kills the tree; "the spruce bark beetle is the major tree-killing insect pest of Alaska spruce forests"
+72561,spruce_beer,a brew made by fermenting molasses and other sugars with the sap of spruce trees (sometimes with malt)
+72562,spruce_gall_aphid Adelges_abietis,a variety of adelgid
+72563,spruce_grouse Canachites_canadensis,North American grouse that feeds on evergreen buds and needles
+72564,spruce_pine Pinus_glabra,large two-needled pine of southeastern United States with light soft wood
+72565,sprue tropical_sprue psilosis,a chronic disorder that occurs in tropical and non-tropical forms and in both children and adults; nutrients are not absorbed; symptoms include foul-smelling diarrhea and emaciation
+72566,sprung_rhythm,a poetic rhythm that imitates the rhythm of speech
+72567,spud stump_spud,a sharp hand shovel for digging out roots and weeds
+72568,spume,foam or froth on the sea
+72569,spun_yarn,(nautical) small stuff consisting of a lightweight rope made of several rope yarns loosely wound together
+72570,spur,tubular extension at the base of the corolla in some flowers
+72571,spur gad,a sharp prod fixed to a rider's heel and used to urge a horse onward; "cowboys know not to squat with their spurs on"
+72572,spur spine acantha,any sharply pointed projection
+72573,spur_blight,a disease of raspberries
+72574,spur_gear spur_wheel,gear wheels that mesh in the same plane
+72575,spurge,any of numerous plants of the genus Euphorbia; usually having milky often poisonous juice
+72576,spurge_laurel wood_laurel Daphne_laureola,bushy Eurasian shrub with glossy leathery oblong leaves and yellow-green flowers
+72577,spurge_nettle tread-softly devil_nettle pica-pica Cnidoscolus_urens Jatropha_urens Jatropha_stimulosus,a stinging herb of tropical America
+72578,spurious_correlation,a correlation between two variables (e.g., between the number of electric motors in the home and grades at school) that does not result from any direct relation between them (buying electric motors will not raise grades) but from their relation to other variables
+72579,spuriousness,state of lacking genuineness
+72580,spurner,a person who rejects (someone or something) with contempt; "she was known as a spurner of all suitors"; "he was no spurner of rules"
+72581,spurred_gentian,any of various plants of the genus Halenia having flowers with spurred lobes
+72582,sputnik,a Russian artificial satellite; "Sputnik was the first man-made satellite to orbit the earth"
+72583,sputter splutter,an utterance (of words) with spitting sounds (as in rage)
+72584,spy,a secret watcher; someone who secretly watches other people; "my spies tell me that you had a good time last night"
+72585,spy undercover_agent,(military) a secret agent hired by a state to obtain information about its enemies or by a business to obtain industrial secrets from competitors
+72586,spy_satellite,a satellite with sensors to detect nuclear explosions
+72587,spying,keeping a secret or furtive watch
+72588,spying undercover_work,the act of keeping a secret watch for intelligence purposes
+72589,spymaster,someone who directs clandestine intelligence activities
+72590,spyware,computer software that obtains information from a user's computer without the user's knowledge or consent
+72591,squab,a soft padded sofa
+72592,squab,an unfledged pigeon
+72593,squab dove,flesh of a pigeon suitable for roasting or braising; flesh of a dove (young squab) may be broiled
+72594,squabbler,someone who quarrels about a small matter
+72595,squad,a smallest army unit
+72596,squad_room,a room in a police station where members of the force assemble for roll call and duty assignments
+72597,squad_room,a room in a barracks where soldiers are billeted
+72598,squadron,a naval unit that is detached from the fleet for a particular task
+72599,squadron,a cavalry unit consisting of two or more troops and headquarters and supporting arms
+72600,squadron,an air force unit larger than a flight and smaller than a group
+72601,squall,sudden violent winds; often accompanied by precipitation
+72602,squall_line,a cold front along which squalls or thunderstorms are likely
+72603,squama,a protective structure resembling a scale
+72604,squamous_cell,an epithelial cell that is flat like a plate and form a single layer of epithelial tissue
+72605,squamule,a minute scale
+72606,squandering,spending resources lavishly and wastefully; "more wasteful than the squandering of time"
+72607,squandermania,prodigious squandering (usually by a government)
+72608,square,something approximating the shape of a square
+72609,square,any artifact having a shape similar to a plane geometric figure with four equal sides and four right angles; "a checkerboard has 64 squares"
+72610,square,a hand tool consisting of two straight arms at right angles; used to construct or test right angles; "the carpenter who built this room must have lost his square"
+72611,square foursquare,(geometry) a plane rectangle with four equal sides and four right angles; a four-sided regular polygon; "you can compute the area of a square if you know the length of its sides"
+72612,square lame,someone who doesn't understand what is going on
+72613,square second_power,the product of two equal terms; "nine is the second power of three"; "gravity is inversely proportional to the square of the distance"
+72614,square square_toes,a formal and conservative person with old-fashioned views
+72615,square-bashing,drill on a barracks square
+72616,square-dance_music,music performed for square dancing
+72617,square-rigger,a square-rigged sailing ship
+72618,square_dance square_dancing,American country dancing in which couples form squares
+72619,square_dancer,someone who does square dancing
+72620,square_foot sq_ft,a unit of area equal to one foot by one foot square
+72621,square_inch sq_in,a unit of area equal to one inch by one inch square
+72622,square_knot,a double knot made of two half hitches and used to join the ends of two cords
+72623,square_matrix,a matrix with the same number of rows and columns
+72624,square_meal,a substantial and nourishing meal; "he seldom got three square meals a day"
+72625,square_meter square_metre centare,a centare is 1/100th of an are
+72626,square_mile,an area of 640 acres
+72627,square_nut,nut with a square shape
+72628,square_one,the situation in which you begin an endeavor and to which you return if your efforts fail; "the police are now back at square one after having arrested and released 27 men"; "she has tried to diet but always ends up back at square one"
+72629,square_root,a number that when multiplied by itself equals a given number
+72630,square_sail,a four-sided sail set beneath a horizontal yard suspended at the middle from a mast
+72631,square_shooter straight_shooter straight_arrow,a frank and honest person
+72632,square_yard sq_yd,a unit of area equal to one yard by one yard square
+72633,squareness,the property of being shaped like a square
+72634,squaretail,sluggish square-tailed fish armored with tough bony scales; of deep warm waters
+72635,squash,edible fruit of a squash plant; eaten as a vegetable
+72636,squash squash_racquets squash_rackets,a game played in an enclosed court by two or four players who strike the ball with long-handled rackets
+72637,squash squash_vine,any of numerous annual trailing plants of the genus Cucurbita grown for their fleshy edible fruits
+72638,squash_ball,rubber ball used in playing squash
+72639,squash_bug Anasa_tristis,large black American bug that sucks sap of vines of the gourd family
+72640,squash_court,the indoor court in which squash is played
+72641,squash_pie,similar to pumpkin pie but made with winter squash instead of pumpkin
+72642,squash_racket squash_racquet bat,a small racket with a long handle used for playing squash
+72643,squat squatting,the act of assuming or maintaining a crouching position with the knees bent and the buttocks near the heels
+72644,squatness stubbiness,the property of being short and broad
+72645,squatter,someone who settles on land without right or title
+72646,squatter homesteader nester,someone who settles lawfully on government land with the intent to acquire title to it
+72647,squaw,derogatory terms for an American Indian woman
+72648,squaw_grass bear_grass Xerophyllum_tenax,plant of western North America having woody rhizomes and tufts of stiff grasslike basal leaves and spikes of creamy white flowers
+72649,squaw_man,derogatory term for a white man married to a North American Indian woman
+72650,squawbush squaw-bush skunkbush Rhus_trilobata,deciduous shrub of California with unpleasantly scented usually trifoliate leaves and edible fruit
+72651,squawk,the noise of squawking; "she awoke to the squawk of chickens"; "the squawk of car horns"
+72652,squawk_box squawker intercom_speaker,the loudspeaker on an intercom or public address system
+72653,squeak,a short high-pitched noise; "the squeak of shoes on powdery snow"
+72654,squeaker,any artifact that makes a squeaking sound when used; "those sneakers are squeakers"; "which hinge is the squeaker?"
+72655,squeal,a high-pitched howl
+72656,squeamishness,the trait of being excessively fastidious and easily shocked; "the program was withdrawn because of the squeamishness of some viewers"; "he refused to allow squeamishness to deter him from his duty"
+72657,squeegee,T-shaped cleaning implement with a rubber edge across the top; drawn across a surface to remove water (as in washing windows)
+72658,squeeze,a situation in which increased costs cannot be passed on to the customer; "increased expenses put a squeeze on profits"
+72659,squeeze,(slang) a person's girlfriend or boyfriend; "she was his main squeeze"
+72660,squeeze,the act of forcing yourself (or being forced) into or through a restricted space; "getting through that small opening was a tight squeeze"
+72661,squeeze squeezing,the act of gripping and pressing firmly; "he gave her cheek a playful squeeze"
+72662,squeeze wring,a twisting squeeze; "gave the wet cloth a wring"
+72663,squeeze_play,a baseball play in which a runner on third base tries to score as the batter bunts the pitch
+72664,squeezer,a kitchen utensil for squeezing juice from fruit
+72665,squelch_circuit squelch squelcher,an electric circuit that cuts off a receiver when the signal becomes weaker than the noise
+72666,squib,firework consisting of a tube filled with powder (as a broken firecracker) that burns with a fizzing noise
+72667,squid,widely distributed fast-moving ten-armed cephalopod mollusk having a long tapered body with triangular tail fins
+72668,squid calamari calamary,(Italian cuisine) squid prepared as food
+72669,squiggle,an illegible scrawl; "his signature was just a squiggle but only he could make that squiggle"
+72670,squiggle curlicue,a short twisting line
+72671,squill,bulb of the sea squill, which is sliced, dried, and used as an expectorant
+72672,squilla mantis_prawn,a kind of mantis shrimp
+72673,squinch,a small arch built across the interior angle of two walls (usually to support a spire)
+72674,squint,the act of squinting; looking with the eyes partly closed
+72675,squinter squint-eye,a person with strabismus
+72676,squire,young nobleman attendant on a knight
+72677,squire,an English country landowner
+72678,squire gallant,a man who attends or escorts a woman
+72679,squirrel,the fur of a squirrel
+72680,squirrel,a kind of arboreal rodent having a long bushy tail
+72681,squirrel's-foot_fern ball_fern Davalia_bullata Davalia_bullata_mariesii Davallia_Mariesii,feathery fern of tropical Asia and Malaysia
+72682,squirrel_cage,cage with a cylindrical framework that rotates as a small animal runs inside it
+72683,squirrel_corn Dicentra_canadensis,American plant with cream-colored flowers and tuberous roots resembling kernels of corn
+72684,squirrel_monkey Saimiri_sciureus,small long-tailed monkey of Central American and South America with greenish fur and black muzzle
+72685,squirrelfish,very small, brightly colored (especially red) nocturnal fishes of shallow waters or tropical reefs; they make sounds like a squirrel's bark
+72686,squirreltail_barley foxtail_barley squirreltail_grass Hordeum_jubatum,barley grown for its highly ornamental flower heads with delicate long silky awns; North America and northeastern Asia
+72687,squirting_cucumber exploding_cucumber touch-me-not Ecballium_elaterium,Mediterranean vine having oblong fruit that when ripe expels its seeds and juice violently when touched
+72688,squish,the noise of soft mud being walked on
+72689,stab thrust knife_thrust,a strong blow with a knife or other sharp pointed instrument; "one strong stab to the heart killed him"
+72690,stabber,someone who stabs another person
+72691,stabile,a sculpture having fixed units (usually constructed of sheet metal) and attached to a fixed support
+72692,stability,a stable order (especially of society)
+72693,stability stableness,the quality or attribute of being firm and steadfast
+72694,stabilization stabilisation,the act of making something (as a vessel or aircraft) less likely to overturn
+72695,stabilization stabilisation,the act of stabilizing something or making it more stable; "he worked for price stabilization for farm products"; "wage stabilization is necessary for industrial peace"; "stabilization means that the product can be handled under atmospheric conditions"
+72696,stabilizer,a chemical that is added to a solution or mixture or suspension to maintain it in a stable or unchanging state
+72697,stabilizer,airfoil consisting of a device for stabilizing an aircraft
+72698,stabilizer stabiliser,a device for making something stable
+72699,stabilizer_bar anti-sway_bar,a rigid metal bar between the front suspensions and between the rear suspensions of cars and trucks; serves to stabilize the chassis
+72700,stable stalls horse_barn,a farm building for housing horses or other livestock
+72701,stable_gear saddlery tack,gear for a horse
+72702,stableman stableboy groom hostler ostler,someone employed in a stable to take care of the horses
+72703,stablemate stable_companion,a horse stabled with another or one of several horses owned by the same person
+72704,stabling,accommodation for animals (especially for horses)
+72705,stachyose,a tetrasaccharide found in the tubers of the Chinese artichoke
+72706,stack,an orderly pile
+72707,stacked_heel,a heel made of many layers of leather
+72708,stacker,a laborer who builds up a stack or pile
+72709,stacks,storage space in a library consisting of an extensive arrangement of bookshelves where most of the books are stored
+72710,stacte,(Old Testament) one of several sweet-smelling spices used in incense
+72711,staddle,a base or platform on which hay or corn is stacked
+72712,stadium bowl arena sports_stadium,a large structure for open-air sports or entertainments
+72713,staff,building material consisting of plaster and hair; used to cover external surfaces of temporary structure (as at an exposition) or for decoration
+72714,staff,personnel who assist their superior in carrying out an assigned task; "the hospital has an excellent nursing staff"; "the general relied on his staff to make routine decisions"
+72715,staff,a rod carried as a symbol
+72716,staff,a strong rod or stick with a specialized utilitarian purpose; "he walked with the help of a wooden staff"
+72717,staff faculty,the body of teachers and administrators at a school; "the dean addressed the letter to the entire staff of the university"
+72718,staff stave,(music) the system of five horizontal lines on which the musical notes are written
+72719,staff_line,any of the 5 horizontal marks comprising a staff
+72720,staff_member staffer,an employee who is a member of a staff of workers (especially a member of the staff that works for the President of the United States)
+72721,staff_officer,a commissioned officer assigned to a military commander's staff
+72722,staff_sergeant,a noncommissioned officer ranking above corporal and below sergeant first class in the Army or Marines or above airman 1st class in the Air Force
+72723,staff_tree,any small tree or twining shrub of the genus Celastrus
+72724,stag,adult male deer
+72725,stag_beetle,a kind of lamellicorn beetle; the male has branched mandibles resembling antlers
+72726,stag_party smoker,a party for men only (or one considered suitable for men only)
+72727,stage,any scene regarded as a setting for exhibiting or doing something; "All the world's a stage"--Shakespeare; "it set the stage for peaceful negotiations"
+72728,stage,the theater as a profession (usually `the stage'); "an early movie simply showed a long kiss by two actors of the contemporary stage"
+72729,stage,a large platform on which people can stand and can be seen by an audience; "he clambered up onto the stage and got the actors to help him into the box"
+72730,stage leg,a section or portion of a journey or course; "then we embarked on the second stage of our Caribbean cruise"
+72731,stage microscope_stage,a small platform on a microscope where the specimen is mounted for examination
+72732,stage_crew,crew of workers who move scenery or handle properties in a theatrical production
+72733,stage_dancing choreography,a show involving artistic dancing
+72734,stage_direction,an instruction written as part of the script of a play
+72735,stage_director,someone who supervises the actors and directs the action in the production of a stage show
+72736,stage_door,an entrance to the backstage area of theater; used by performers and other theater personnel
+72737,stage_effect,a special effect created on the stage
+72738,stage_fright,fear that affects a person about to face an audience
+72739,stage_left left_stage,the part of the stage on the actor's left as the actor faces the audience
+72740,stage_manager stager,someone who supervises the physical aspects in the production of a show and who is in charge of the stage when the show is being performed
+72741,stage_name,the pseudonym of an actor
+72742,stage_right right_stage,the part of the stage on the actor's right as the actor faces the audience
+72743,stage_set set,representation consisting of the scenery and other properties used to identify the location of a dramatic production; "the sets were meticulously authentic"
+72744,stage_whisper,a loud whisper that can be overheard; on the stage it is heard by the audience but it supposed to be inaudible to the rest of the cast
+72745,stagecoach stage,a large coach-and-four formerly used to carry passengers and mail on regular routes between towns; "we went out of town together by stage about ten or twelve miles"
+72746,stagecraft,skill in writing or staging plays
+72747,stagehand stage_technician,an employee of a theater who performs work involved in putting on a theatrical production
+72748,stagflation,a period of slow economic growth and high unemployment (stagnation) while prices rise (inflation)
+72749,staggerbush stagger_bush Lyonia_mariana,deciduous shrub of coastal plain of the eastern United States having nodding pinkish-white flowers; poisonous to stock
+72750,staggered_board_of_directors,a board of directors a portion of whose members are elected each year instead of all members being elected annually
+72751,staggerer totterer reeler,someone who walks unsteadily as if about to fall
+72752,staggers blind_staggers,a disease of the central nervous system affecting especially horses and cattle; characterized by an unsteady swaying gait and frequent falling
+72753,staghorn_coral stag's-horn_coral,large branching coral resembling antlers
+72754,staghorn_fern,any of various tropical ferns of the genus Platycerium having large flat lobed fronds often resembling the antlers of a stag
+72755,staghorn_sumac velvet_sumac Virginian_sumac vinegar_tree Rhus_typhina,deciduous shrubby tree or eastern North America with compound leaves that turn brilliant red in fall and dense panicles of greenish yellow flowers followed by crimson acidic berries
+72756,staghound,a large heavy hound formerly used in hunting stags and other large game; similar to but larger than a foxhound
+72757,staginess theatricality,an artificial and mannered quality
+72758,staging,travel by stagecoach
+72759,staging,getting rid of a stage of a multistage rocket
+72760,staging_area,an area where troops and equipment in transit are assembled before a military operation
+72761,stagnation stagnancy,inactivity of liquids; being stagnant; standing still; without current or circulation
+72762,stagnation stagnancy doldrums,a state of inactivity (in business or art etc); "economic growth of less than 1% per year is considered to be economic stagnation"
+72763,stain,(microscopy) a dye or other coloring material that is used in microscopy to make structures visible
+72764,stain discoloration discolouration,a soiled or discolored appearance; "the wine left a dark stain"
+72765,stainability,(cytology) the capacity of cells or cell parts to stain specifically with certain dyes
+72766,stained-glass_window,a window made of stained glass
+72767,stained_glass,glass that has been colored in some way; used for church windows
+72768,stainer,a worker who stains (wood or fabric)
+72769,staining,(histology) the use of a dye to color specimens for microscopic study
+72770,staining spotting maculation,the act of spotting or staining something
+72771,stainless_steel stainless chromium_steel,steel containing chromium that makes it resistant to corrosion
+72772,stair-carpet,a strip of carpet for laying on stairs
+72773,stair-rod,a rod that holds a stair-carpet in the angle between two steps
+72774,stairhead,platform at the top of a staircase
+72775,stairs steps,a flight of stairs or a flight of steps
+72776,stairway staircase,a way of access (upward and downward) consisting of a set of steps
+72777,stairwell,a vertical well around which there is a stairway
+72778,stake,instrument of execution consisting of a vertical post that a victim is tied to for burning
+72779,stake,a strong wooden or metal post with a point at one end so it can be driven into the ground
+72780,stake stakes bet wager,the money risked on a gamble
+72781,stake_race,a horse race in which part of the prize is put up by the owners of the horses in the race
+72782,stakeholder,someone entrusted to hold the stakes for two or more persons betting against one another; must deliver the stakes to the winner
+72783,stakeout,surveillance of some place or some person by the police (as in anticipation of a crime)
+72784,stalactite,a cylinder of calcium carbonate hanging from the roof of a limestone cave
+72785,stalagmite,a cylinder of calcium carbonate projecting upward from the floor of a limestone cave
+72786,stalemate,drawing position in chess: any of a player's possible moves would place his king in check
+72787,staleness,having lost purity and freshness as a consequence of aging
+72788,stalk angry_walk,a stiff or threatening gait
+72789,stalk stalking,the act of following prey stealthily
+72790,stalk stalking still_hunt,a hunt for game carried on by following it stealthily or waiting in ambush
+72791,stalk stem,a slender or elongated structure that supports a plant or fungus or a plant part or plant organ
+72792,stalked_puffball,mushroom of the genus Tulostoma that resembles a puffball
+72793,stalked_puffball,a variety of Podaxaceae
+72794,stalker,someone who walks with long stiff strides
+72795,stalker,someone who stalks game
+72796,stalking-horse,a candidate put forward to divide the Opposition or to mask the true candidate
+72797,stalking-horse,screen consisting of a figure of a horse behind which a hunter hides while stalking game
+72798,stalking-horse,a horse behind which a hunter hides while stalking game
+72799,stall,a malfunction in the flight of an aircraft in which there is a sudden loss of lift that results in a downward plunge; "the plane went into a stall and I couldn't control it"
+72800,stall,seating in the forward part of the main level of a theater
+72801,stall,a compartment in a stable where a single animal is confined and fed
+72802,stall stalling,a tactic used to mislead or delay
+72803,stall stand sales_booth,a booth where articles are displayed for sale
+72804,stall_bar,a gymnastic apparatus used for strengthening exercises; uprights fastened to a wall and connected by horizontal rungs
+72805,stallion entire,uncastrated adult male horse
+72806,stamen,the male reproductive organ of a flower
+72807,stamina staying_power toughness,enduring strength and energy
+72808,stammel,a coarse woolen cloth formerly used for undergarments and usually dyed bright red
+72809,stammer stutter,a speech disorder involving hesitations and involuntary repetitions of certain sounds
+72810,stammerer stutterer,someone who speaks with involuntary pauses and repetitions
+72811,stamp,a type or class; "more men of his stamp are needed"
+72812,stamp,a block or die used to imprint a mark or design
+72813,stamp impression,a symbol that is the result of printing or engraving; "he put his stamp on the envelope"
+72814,stamp pestle,machine consisting of a heavy bar that moves vertically for pounding or crushing ores
+72815,stamp_album,an album for stamps
+72816,stamp_collection,a collection of stamps
+72817,stamp_dealer,a dealer in stamps (whose customers are stamp collectors)
+72818,stamp_mill stamping_mill,a mill in which ore is crushed with stamps
+72819,stamp_tax stamp_duty,a tax collected by requiring a stamp to be purchased and attached (usually on documents or publications)
+72820,stampede,a wild headlong rush of frightened animals (horses or cattle)
+72821,stampede,a headlong rush of people on a common impulse; "when he shouted `fire' there was a stampede to the exits"
+72822,stamper,a workman whose job is to form or cut out by applying a mold or die (either by hand or by operating a stamping machine)
+72823,stamper stomper tramper trampler,someone who walks with a heavy noisy gait or who stamps on the ground
+72824,stamping_machine stamper,a power tool that stamps; "a metal stamper"
+72825,stance,standing posture
+72826,stanchion,any vertical post or rod used as a support
+72827,stand,the position where a thing or person stands
+72828,stand,a growth of similar plants (usually trees) in a particular area; "they cut down a stand of trees"
+72829,stand,a small table for holding articles of various kinds; "a bedside stand"
+72830,stand,tiered seats consisting of a structure (often made of wood) where people can sit to watch an event (game or parade)
+72831,stand,a stop made by a touring musical or theatrical group to give a performance; "a one-night stand"
+72832,stand,a defensive effort; "the army made a final stand at the Rhone"
+72833,stand standstill tie-up,an interruption of normal activity
+72834,stand-in substitute relief reliever backup backup_man fill-in,someone who takes the place of another (as when things get dangerous or difficult); "the star had a stand-in for dangerous scenes"; "we need extra employees for summer fill-ins"
+72835,stand_oil,a thick oil comprised of linseed, tung, or soya oils which have been heated to over 300 C
+72836,standard,a board measure = 1980 board feet
+72837,standard,an upright pole or beam (especially one used as a support); "distance was marked by standards every mile"; "lamps supported on standards provided illumination"
+72838,standard banner,any distinctive flag
+72839,standard criterion measure touchstone,a basis for comparison; a reference point against which other things can be evaluated; "the schools comply with federal standards"; "they set the measure for all subsequent work"
+72840,standard monetary_standard,the value behind the money in a monetary system
+72841,standard-bearer,an outstanding leader of a political movement
+72842,standard_atmosphere atmosphere atm standard_pressure,a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade
+72843,standard_cell,a primary cell used as a standard of electromotive force
+72844,standard_deviation,the square root of the variance
+72845,standard_gauge,railroad track having the standard width of 56.5 inches
+72846,standard_generalized_markup_language SGML,(computer science) a standardized language for the descriptive markup of documents; a set of rules for using whatever markup vocabulary is adopted
+72847,standard_of_living living_standards standard_of_life,a level of material comfort in terms of goods and services available to someone or some group; "they enjoyed the highest standard of living in the country"; "the lower the standard of living the easier it is to introduce an autocratic production system"
+72848,standard_poodle,a breed or medium-sized poodles
+72849,standard_schnauzer,a medium-sized schnauzer
+72850,standard_temperature,exactly zero degrees centigrade
+72851,standard_transmission stick_shift,a transmission that is operated manually with a gear lever and a clutch pedal
+72852,standardization standardisation,the condition in which a standard has been successfully established; "standardization of nuts and bolts had saved industry millions of dollars"
+72853,standardization standardisation normalization normalisation,the imposition of standards or regulations; "a committee was appointed to recommend terminological standardization"
+72854,standardizer standardiser,a person who sets a standard for things to conform to
+72855,standby,something that can be relied on when needed
+72856,standdown stand-down,a suspension and relaxation from an alert state or a state of readiness
+72857,standdown stand-down,(military) a temporary stop of offensive military action
+72858,standee,someone who stands in a place where one might otherwise sit (as a spectator who uses standing room in a theater or a passenger on a crowded bus or train); "the allowed number of standees is posted"
+72859,standee,a lifesize cardboard cutout (usually of a celebrity); "he had his picture taken with a standee of the president"
+72860,stander,an organism (person or animal) that stands; "a crowd of sitters and standers"
+72861,standing,social or financial or professional status or reputation; "of equal standing"; "a member in good standing"
+72862,standing,an ordered listing of scores or results showing the relative positions of competitors (individuals or teams) in a sporting event
+72863,standing,the act of assuming or maintaining an erect upright position
+72864,standing_army,a permanent army of paid soldiers
+72865,standing_committee,a permanent committee
+72866,standing_operating_procedure standard_operating_procedure SOP standard_procedure,a prescribed procedure to be followed routinely; "rote memorization has been the educator's standard operating procedure for centuries"
+72867,standing_order,a rule of order permanently in force
+72868,standing_press,a large printing press that exerts pressure vertically
+72869,standing_room,room for passengers or spectators to stand; "there was standing room for thousands more people"
+72870,standing_wave stationary_wave,a wave (as a sound wave in a chamber or an electromagnetic wave in a transmission line) in which the ratio of its instantaneous amplitude at one point to that at any other point does not vary with time
+72871,standpipe,a vertical pipe
+72872,stanhope,a light open horse-drawn carriage with two or four wheels and one seat
+72873,stanhopea,any of various orchids of the genus Stanhopea having a single large leaf and loose racemes of large fragrant flowers of various colors; Mexico to Brazil
+72874,stannic_chloride,a colorless caustic liquid made by treating tin with chlorine
+72875,stannite tin_pyrites,a dark grey mineral with a metallic luster that is a source of tin
+72876,stannous_fluoride,a white powder that is used to fluoridate toothpaste
+72877,stanza,a fixed number of lines of verse forming a unit of a poem
+72878,stapedectomy,surgical removal of the stapes of the middle ear
+72879,stapelia carrion_flower starfish_flower,any of various plants of the genus Stapelia having succulent leafless toothed stems resembling cacti and large foul-smelling (often star-shaped) flowers
+72880,stapes stirrup,the stirrup-shaped ossicle that transmits sound from the incus to the cochlea
+72881,staphylococcal_enterotoxin,a soluble exotoxin produced by some strains of staphylococcus; a cause of food poisoning
+72882,staphylococcal_enterotoxin_B SEB,a form of staphylococcal enterotoxin that has been used as an incapacitating agent in biological warfare
+72883,staphylococcal_infection,an infection with staphylococcus bacteria; usually marked by abscess formation
+72884,staphylococcus staphylococci staph,spherical Gram-positive parasitic bacteria that tend to form irregular colonies; some cause boils or septicemia or infections
+72885,staple,a short U-shaped wire nail for securing cables
+72886,staple,paper fastener consisting of a short length of U-shaped wire that can fasten papers together
+72887,staple staple_fiber staple_fibre,a natural fiber (raw cotton, wool, hemp, flax) that can be twisted to form yarn; "staple fibers vary widely in length"
+72888,staple_gun staplegun tacker,a hand-held machine for driving staples home
+72889,stapler stapling_machine,a machine that inserts staples into sheets of paper in order to fasten them together
+72890,star,a plane figure with 5 or more points; often used as an emblem
+72891,star,any celestial body visible (as a point of light) from the Earth at night
+72892,star,(astronomy) a celestial body of hot gases that radiates energy derived from thermonuclear reactions in the interior
+72893,star principal lead,an actor who plays a principal role
+72894,star-duckweed Lemna_trisulca,cosmopolitan in temperate regions except North America
+72895,star-of-Bethlehem,any of several perennial plants of the genus Ornithogalum native to the Mediterranean and having star-shaped flowers
+72896,star-thistle caltrop Centauria_calcitrapa,Mediterranean annual or biennial herb having pinkish to purple flowers surrounded by spine-tipped scales; naturalized in America
+72897,star_anise Chinese_anise Illicium_verum,small tree of China and Vietnam bearing anise-scented star-shaped fruit used in food and medicinally as a carminative
+72898,star_anise Illicium_anisatum,small shrubby tree of Japan and Taiwan; flowers are not fragrant
+72899,star_apple caimito Chrysophyllum_cainito,evergreen tree of West Indies and Central America having edible purple fruit star-shaped in cross section and dark green leaves with golden silky undersides
+72900,star_begonia star-leaf_begonia Begonia_heracleifolia,rhizomatous begonia having leaves with pointed lobes suggestive of stars and pink flowers
+72901,star_chart,a chart showing the relative positions of the stars in a particular part of the sky
+72902,star_drill,a steel rock drill with a star-shaped point that is used for making holes in stones or masonry; it is operated by hitting the end with a hammer while rotating it between blows
+72903,star_grass,any plant of the genus Hypoxis having long grasslike leaves and yellow star-shaped flowers: Africa; Australia; southern Asia; North America
+72904,star_jasmine confederate_jasmine Trachelospermum_jasminoides,evergreen Chinese woody climber with shiny dark green leaves and intensely fragrant white flowers
+72905,star_magnolia Magnolia_stellata,deciduous shrubby magnolia from Japan having fragrant white starlike flowers blooming before leaves unfold; grown as an ornamental in United States
+72906,star_sapphire,a sapphire that when cut shows a starlike figure in reflected light because of its crystalline structure
+72907,star_saxifrage starry_saxifrage Saxifraga_stellaris,small often mat-forming alpine plant having small starlike white flowers; Europe
+72908,star_shell,an artillery shell containing an illuminant
+72909,star_topology star,the topology of a network whose components are connected to a hub
+72910,star_tulip elegant_cat's_ears Calochortus_elegans,small plant with slender bent stems bearing branched clusters of a few white star-shaped flowers with petals shaped like cat's ears; southeastern Washington and northeastern Oregon to Montana
+72911,starboard,the right side of a ship or aircraft to someone who is aboard and facing the bow or nose
+72912,starch,a commercial preparation of starch that is used to stiffen textile fabrics in laundering
+72913,starch amylum,a complex carbohydrate found chiefly in seeds, fruits, tubers, roots and stem pith of plants, notably in corn, potatoes, wheat, and rice; an important foodstuff and used otherwise especially in adhesives and as fillers and stiffeners for paper and textiles
+72914,starches,foodstuff rich in natural starch (especially potatoes, rice, bread)
+72915,stardom,the status of being acknowledged as a star; "stardom meant nothing to her"
+72916,stardust,a dreamy romantic or sentimental quality
+72917,stare,a fixed look with eyes open wide
+72918,starer,a viewer who gazes fixedly (often with hostility)
+72919,starets,a religious adviser (not necessarily a priest) in the Eastern Orthodox Church
+72920,starfish sea_star,echinoderms characterized by five arms extending from a central disk
+72921,starflower sleepy_dick summer_snowflake Ornithogalum_umbellatum,common Old World herb having grasslike leaves and clusters of star-shaped white flowers with green stripes; naturalized in the eastern United States
+72922,stargazer,heavy-bodied marine bottom-lurkers with eyes on flattened top of the head
+72923,stargazing,observation of the stars
+72924,starkness absoluteness utterness,the quality of being complete or utter or extreme; "the starkness of his contrast between justice and fairness was open to many objections"
+72925,starlet,a young (film) actress who is publicized as a future star
+72926,starlet,a small star
+72927,starlight,the light of the stars
+72928,starling,gregarious birds native to the Old World
+72929,starnose_mole star-nosed_mole Condylura_cristata,amphibious mole of eastern North America having pink fleshy tentacles around the nose
+72930,starship spaceship,a spacecraft designed to carry a crew into interstellar space (especially in science fiction)
+72931,start,the beginning of anything; "it was off to a good start"
+72932,start head_start,the advantage gained by beginning early (as in a race); "with an hour's start he will be hard to catch"
+72933,start starting,a turn to be a starter (in a game at the beginning); "he got his start because one of the regular pitchers was in the hospital"; "his starting meant that the coach thought he was one of their best linemen"
+72934,start starting_line scratch scratch_line,a line indicating the location of the start of a race or a game
+72935,starter,a contestant in a team sport who is in the game at the beginning
+72936,starter,a culture containing yeast or bacteria that is used to start the process of fermentation or souring in making butter or cheese or dough; "to make sourdough you need a starter"
+72937,starter dispatcher,the official who signals the beginning of a race or competition
+72938,starter starter_motor starting_motor,an electric motor for starting an engine
+72939,starting_block,block providing bracing for a runner's feet at start of a race
+72940,starting_buffer,buffer solution at the start of a reaction
+72941,starting_gate starting_stall,a movable barrier on the starting line of a race course
+72942,starting_pitcher,(baseball) a pitcher who starts in a baseball game
+72943,starting_post,a post marking the starting point of a race (especially a horse race)
+72944,starting_signal start,a signal to begin (as in a race); "the starting signal was a green light"; "the runners awaited the start"
+72945,startle jump start,a sudden involuntary movement; "he awoke with a start"
+72946,startle_reflex Moro_reflex,a normal reflex of young infants; a sudden loud noise causes the child to stretch out the arms and flex the legs
+72947,startle_response startle_reaction,a complicated involuntary reaction to a sudden unexpected stimulus (especially a loud noise); involves flexion of most skeletal muscles and a variety of visceral reactions
+72948,startup,the act of setting in operation; "repeated shutdowns and startups are expensive"
+72949,starvation famishment,a state of extreme hunger resulting from lack of essential nutrients over a prolonged period
+72950,starvation starving,the act of depriving of food or subjecting to famine; "the besiegers used starvation to induce surrender"; "they were charged with the starvation of children in their care"
+72951,starvation_acidosis,acidosis in which the acidity results from lack of food which leads to fat catabolism which in turn releases acidic ketone bodies
+72952,starved_aster calico_aster,a variety of aster
+72953,starveling,someone who is starving (or being starved)
+72954,stash_house,a house where weapons and supplies are hidden; "attacks on stash houses is the most frequently used method of counterterrorism"
+72955,stasis,an abnormal state in which the normal flow of a liquid (such as blood) is slowed or stopped
+72956,stasis,inactivity resulting from a static balance between opposing forces
+72957,state,a state of depression or agitation; "he was in such a state you just couldn't reason with him"
+72958,state,the group of people comprising the government of a sovereign state; "the state has lowered its income tax"
+72959,state,the way something is with respect to its main attributes; "the current state of knowledge"; "his state of health"; "in a weak financial state"
+72960,state nation country land commonwealth res_publica body_politic,a politically organized body of people under a single government; "the state has elected a new president"; "African nations"; "students who had come to the nation's capitol"; "the country's largest manufacturer"; "an industrialized land"
+72961,state province,the territory occupied by one of the constituent administrative districts of a nation; "his state is in the deep south"
+72962,state's_attorney state_attorney,a prosecuting attorney for a state
+72963,state's_evidence,evidence for the prosecution in criminal proceedings
+72964,state-sponsored_terrorism,terrorism practiced by a government against its own people or in support of international terrorism
+72965,state_bank,a bank chartered by a state rather than by the federal government
+72966,state_capital,the capital city of a political subdivision of a country
+72967,state_capitalism,an economic system that is primarily capitalistic but there is some degree of government ownership of the means of production
+72968,state_government,the government of a state in the United States
+72969,state_line state_boundary,the boundary between two states
+72970,state_of_matter state,(chemistry) the three traditional states of matter are solids (fixed shape and volume) and liquids (fixed volume and shaped by the container) and gases (filling the container); "the solid state of water is called ice"
+72971,state_of_mind frame_of_mind,a temporary psychological state
+72972,state_of_the_art,the highest degree of development of an art or technique at a particular time; "the state of the art in space travel"
+72973,state_prison,a prison maintained by a state of the U.S.
+72974,state_senator,a member of a state senate
+72975,state_socialism,an economic system in which the government owns most means of production but some degree of private capitalism is allowed
+72976,state_tax_lien,a lien on the property of a taxpayer that the tax collector can use upon default of payment of taxes
+72977,state_treasurer,the treasurer for a state government
+72978,stateliness,an elaborate manner of doing something; "she served coffee with great stateliness"
+72979,stateliness majesty loftiness,impressiveness in scale or proportion
+72980,stately_home,a mansion that is (or formerly was) occupied by an aristocratic family
+72981,statement,(music) the presentation of a musical theme; "the initial statement of the sonata"
+72982,statement,a nonverbal message; "a Cadillac makes a statement about who you are"; "his tantrums are a statement of his need for attention"
+72983,statement,a message that is stated or declared; a communication (oral or written) setting forth particulars or facts etc; "according to his statement he was in London on that day"
+72984,statement financial_statement,a document showing credits and debits
+72985,stater,any of the various silver or gold coins of ancient Greece
+72986,stater,a resident of a particular state or group of states; "Keystone stater"; "farm staters"
+72987,stateroom,a guest cabin
+72988,states'_rights,a doctrine that federal powers should be curtailed and returned to the individual states
+72989,states'_rights,the rights conceded to the states by the United States constitution
+72990,statesman solon national_leader,a man who is a respected leader in national or international affairs
+72991,statesmanship statecraft diplomacy,wisdom in the management of public affairs
+72992,stateswoman,a woman statesman
+72993,static,angry criticism; "they will probably give you a lot of static about your editorial"
+72994,static atmospherics atmospheric_static,a crackling or hissing noise caused by electrical interference
+72995,static_electricity,electricity produced by friction
+72996,static_line,a cord used instead of a ripcord to open a parachute; the cord is attached at one end to the aircraft and temporarily attached to the pack of a parachute at the other; it opens the parachute after the jumper is clear of the plane
+72997,static_tube,a measuring instrument used to measure static pressure in a stream of fluid
+72998,statics,the branch of mechanics concerned with forces in equilibrium
+72999,station,(nautical) the location to which a ship or fleet is assigned for duty
+73000,station,the frequency assigned to a broadcasting station
+73001,station,a facility equipped with special equipment and personnel for a particular purpose; "he started looking for a gas station"; "the train pulled into the station"
+73002,stationariness immobility fixedness,remaining in place
+73003,stationary_stochastic_process,a stochastic process in which the distribution of the random variables is the same for any value of the variable parameter
+73004,stationer stationery_seller,a merchant who sells writing materials and office supplies
+73005,stationery letter_paper,paper cut to an appropriate size for writing letters; usually with matching envelopes
+73006,stationmaster station_agent,the person in charge of a railway station
+73007,statistic,a datum that can be represented numerically
+73008,statistical_mechanics,the branch of physics that makes theoretical predictions about the behavior of macroscopic systems on the basis of statistical laws governing its component particles
+73009,statistical_method statistical_procedure,a method of analyzing or representing statistical data; a procedure for calculating a statistic
+73010,statistician actuary,someone versed in the collection and interpretation of numerical data (especially someone who uses statistics to calculate insurance premiums)
+73011,statistician mathematical_statistician,a mathematician who specializes in statistics
+73012,statistics,a branch of applied mathematics concerned with the collection and interpretation of quantitative data and the use of probability theory to estimate population parameters
+73013,stator stator_coil,mechanical device consisting of the stationary part of a motor or generator in or around which the rotor revolves
+73014,statuary,statues collectively
+73015,statue,a sculpture representing a human or animal
+73016,stature,high level of respect gained by impressive development or achievement; "a man of great stature"
+73017,stature height,(of a standing person) the distance from head to foot
+73018,status position,the relative position or standing of things or especially persons in a society; "he had the status of a minor"; "the novel attained the status of a classic"; "atheists do not enjoy a favorable position in American life"
+73019,status_asthmaticus,a prolonged and severe asthma attack that does not respond to standard treatment
+73020,status_epilepticus,a condition in which there are continuing attacks of epilepsy without intervals of consciousness; can lead to brain damage and death
+73021,status_quo,the existing state of affairs
+73022,statute_book,a record of the whole body of legislation in a given jurisdiction
+73023,statute_of_limitations,a statute prescribing the time period during which legal action can be taken
+73024,statutory_law,the body of laws created by legislative statutes
+73025,statutory_offense statutory_offence regulatory_offense regulatory_offence,crimes created by statutes and not by common law
+73026,statutory_rape carnal_abuse,sexual intercourse with a person (girl or boy) who has not reached the age of consent (even if both parties participate willingly)
+73027,staurikosaur staurikosaurus,primitive dinosaur found in Brazil
+73028,stave lag,one of several thin slats of wood forming the sides of a barrel or bucket
+73029,stay,a judicial order forbidding some action until an event occurs or the order is lifted; "the Supreme Court has the power to stay an injunction pending an appeal to the whole Court"
+73030,stay,a thin strip of metal or bone that is used to stiffen a garment (e.g. a corset)
+73031,stay,(nautical) brace consisting of a heavy rope or wire cable used as a support for a mast or spar
+73032,stay,continuing or remaining in a place or state; "they had a nice stay in Paris"; "a lengthy hospital stay"; "a four-month stay in bankruptcy court"
+73033,stay-at-home homebody,a person who seldom goes anywhere; one not given to wandering or travel
+73034,stay_of_execution,an order whereby a judgment is precluded from being executed for a specific period of time
+73035,stayer,a person or other animal having powers of endurance or perseverance; "the horse that won the race is a good stayer"
+73036,staysail,a fore-and-aft sail set on a stay (as between two masts)
+73037,stead position place lieu,the post or function properly or customarily occupied or served by another; "can you go in my stead?"; "took his place"; "in lieu of"
+73038,steadfastness,steadfast resolution
+73039,steadfastness staunchness,loyalty in the face of trouble and difficulty
+73040,steadiness,freedom from wavering or indecision; constancy of resolve or conduct; "He trusted her clear steadiness that she would do what she said"
+73041,steadiness,the quality of being steady--regular and unvarying
+73042,steadiness firmness,the quality of being steady or securely and immovably fixed in place
+73043,steady_state_theory continuous_creation_theory,(cosmology) the theory that the universe maintains a constant average density with matter created to fill the void left by galaxies that are receding from each other; "the steady state theory has been abandoned in favor of the big bang theory"
+73044,steak,a slice of meat cut from the fleshy part of an animal or large fish
+73045,steak_and_kidney_pie,steak with sauteed kidneys and onions cooked in wine and stock then covered with pastry and baked
+73046,steak_au_poivre peppered_steak pepper_steak,steak covered with crushed peppercorns pan-broiled and served with brandy-and-butter sauce
+73047,steak_knife,a sharp table knife used in eating steak
+73048,steak_sauce,pungent bottled sauce for steak
+73049,steak_tartare tartar_steak cannibal_mound,ground beef mixed with raw egg and e.g. onions and capers and anchovies; eaten raw
+73050,steakhouse chophouse,a restaurant that specializes in steaks
+73051,steal,a stolen base; an instance in which a base runner advances safely during the delivery of a pitch (without the help of a hit or walk or passed ball or wild pitch)
+73052,stealth stealing,avoiding detection by moving carefully
+73053,stealth_aircraft,an aircraft designed in accordance with technology that makes detection by radar difficult
+73054,stealth_bomber,a bomber that is difficult to detect by radar
+73055,stealth_fighter,a fighter that is difficult to detect by radar; is built for precise targeting and uses laser-guided bombs
+73056,steam,water at boiling temperature diffused in the atmosphere
+73057,steam_bath steam_room vapor_bath vapour_bath,a room that can be filled with steam in which people bathe; `vapour bath' is a British term
+73058,steam_chest,the chamber from which steam is distributed to a cylinder
+73059,steam_coal,coal suitable for use under steam boilers
+73060,steam_engine,external-combustion engine in which heat is used to raise steam which either turns a turbine or forces a piston to move up and down in a cylinder
+73061,steam_fitting,care (installation and maintenance) of equipment for ventilating or heating or refrigerating
+73062,steam_heat steam_heating,a heating system in which steam is generated in boilers and piped to radiators
+73063,steam_iron,a pressing iron that can emit steam
+73064,steam_line steam_pipe,a pipe conducting steam
+73065,steam_locomotive,a locomotive powered by a steam engine
+73066,steam_shovel,a power shovel that is driven by steam
+73067,steam_turbine,turbine in which steam strikes blades and makes them turn
+73068,steam_whistle,a whistle in which the sound is produced by steam; usually attached to a steam boiler
+73069,steamboat,a boat propelled by a steam engine
+73070,steamed_pudding,a pudding cooked by steaming
+73071,steamer,a cooking utensil that can be used to cook food by steaming it
+73072,steamer steamship,a ship powered by one or more steam engines
+73073,steamfitter,a craftsman who installs and maintains equipment for ventilating or heating or refrigerating
+73074,steamroller road_roller,vehicle equipped with heavy wide smooth rollers for compacting roads and pavements
+73075,steamship_company steamship_line,a line responsible for the operation of a fleet of steamships
+73076,stearic_acid octadecanoic_acid,a waxy saturated fatty acid; occurs widely as a glyceride in animal and vegetable fats
+73077,stearin,an ester of glycerol and stearic acid
+73078,steatopygia,an extreme accumulation of fat on the buttocks
+73079,steatorrhea,the presence of greater than normal amounts of fat in the feces which are frothy and foul smelling and floating; a symptom of disorders of fat metabolism and malabsorption syndrome
+73080,steed,(literary) a spirited horse for state of war
+73081,steel,an alloy of iron with small amounts of carbon; widely used in construction; mechanical properties can be varied over a wide range
+73082,steel,knife sharpener consisting of a ridged steel rod
+73083,steel-wool_pad,abrader consisting of a pad of steel wool used for polishing or smoothing
+73084,steel_arch_bridge,a steel bridge constructed in the form of an arch
+73085,steel_band,a band that plays instruments made from the heads of oil drums (Caribbean Islands)
+73086,steel_blue,a greyish blue color
+73087,steel_company,a company that makes and sells steel
+73088,steel_drum,a concave percussion instrument made from the metal top of an oil drum; has an array of flattened areas that produce different tones when struck (of Caribbean origin)
+73089,steel_engraving,an impression taken from an engraved steel plate
+73090,steel_engraving,engraving on a steel plate
+73091,steel_engraving,the act of engraving on a steel plate
+73092,steel_industry,the industry that makes steel and steel products
+73093,steel_mill steelworks steel_plant steel_factory,a factory where steel is made
+73094,steel_plate,a plate of steel
+73095,steel_production,making steel from pig iron
+73096,steel_trap,an acute intelligence (an analogy based on the well-known sharpness of steel traps); "he's as sharp as a steel trap"; "a mind like a steel trap"
+73097,steel_trap,a trap made of steel with a strong spring and sharp toothlike projections to hold the prey
+73098,steel_wool wire_wool,a mass of woven steel fibers used as an abrasive
+73099,steelmaker steelworker steelman,a worker engaged in making steel
+73100,steelyard lever_scale beam_scale,a portable balance consisting of a pivoted bar with arms of unequal length
+73101,steenbok steinbok Raphicerus_campestris,small plains antelope of southeastern Africa
+73102,steep,a steep place (as on a hill)
+73103,steeper,a vessel (usually a pot or vat) used for steeping
+73104,steeple spire,a tall tower that forms the superstructure of a building (usually a church or temple) and that tapers to a point at the top
+73105,steeplechase,a footrace of usually 3000 meters over a closed track with hurdles and a water jump
+73106,steeplechase,a horse race over an obstructed course
+73107,steeplechaser,a horse trained to run in steeplechases
+73108,steeplejack,someone who builds or maintains very tall structures
+73109,steer_roping,capturing a steer with a lasso
+73110,steerage,the cheapest accommodations on a passenger ship
+73111,steerageway,(nautical) the minimum rate of motion needed for a vessel to be maneuvered
+73112,steering guidance direction,the act of setting and holding a course; "a new council was installed under the direction of the king"
+73113,steering steerage,the act of steering a ship
+73114,steering_committee,a committee to arrange the order of business for some larger (legislative) body
+73115,steering_gear,a gear that couples the steering wheel to the steering linkage of a motor vehicle
+73116,steering_linkage,mechanism consisting of a system of rods and levers connected to the front wheels of a motor vehicle; the steering gear pushes it left or right which swivels the front wheels, causing the vehicle to turn
+73117,steering_system steering_mechanism,a mechanism by which something is steered (especially a motor vehicle)
+73118,steering_wheel wheel,a handwheel that is used for steering
+73119,stegosaur stegosaurus Stegosaur_stenops,herbivorous ornithischian dinosaur with a row of bony plates along its back and a spiked tail probably used as a weapon
+73120,stele,the usually cylindrical central vascular portion of the axis of a vascular plant
+73121,stele stela,an ancient upright stone slab bearing markings
+73122,stelis,any of various small tropical American orchids of the genus Stelis having long slender racemes of numerous small to minute flowers
+73123,stellar_parallax,the heliocentric parallax of a star
+73124,stellate_venule,a star-shaped group of venules in the renal cortex
+73125,stem,the tube of a tobacco pipe
+73126,stem-cell_research,research on stem cells and their use in medicine
+73127,stem-winder,a watch that is wound by turning a knob at the stem
+73128,stem_blight,a fungous blight attacking the stems of plants
+73129,stem_cell,an undifferentiated cell whose daughter cells may differentiate into other cell types (such as blood cells)
+73130,stem_turn stem,a turn made in skiing; the back of one ski is forced outward and the other ski is brought parallel to it
+73131,stem_vowel thematic_vowel,a vowel that ends a stem and precedes an inflection
+73132,stemless_carline_thistle Carlina_acaulis,stemless perennial having large flowers with white or purple-brown florets nestled in a rosette of long spiny leaves hairy beneath; of alpine regions of southern and eastern Europe
+73133,stemless_golden_weed Stenotus_acaulis Haplopappus_acaulis,dark green erect herb of northwestern United States and southwestern Canada having stiff leaves in dense tufts and yellow flower heads; sometimes placed in genus Haplopappus
+73134,stemless_hymenoxys Tetraneuris_acaulis Hymenoxys_acaulis,perennial having tufted basal leaves and short leafless stalks each bearing a solitary yellow flower head; dry hillsides and plains of west central North America
+73135,stemma,a tree diagram showing a reconstruction of the transmission of manuscripts of a literary work
+73136,stemmatology stemmatics,the humanistic discipline that attempts to reconstruct the transmission of a text (especially a text in manuscript form) on the basis of relations between the various surviving manuscripts (sometimes using cladistic analysis); "stemmatology also plays an important role in musicology"; "transcription errors are of decisive importance in stemmatics"
+73137,stemmer,a worker who makes or applies stems for artificial flowers
+73138,stemmer,a miner's tamping bar for ramming packing in over a blasting charge
+73139,stemmer,a device for removing stems from fruit (as from grapes or apples)
+73140,stemmer stemming_algorithm,an algorithm for removing inflectional and derivational endings in order to reduce word forms to a common stem
+73141,stencil,a sheet of material (metal, plastic, cardboard, waxed paper, silk, etc.) that has been perforated with a pattern (printing or a design); ink or paint can pass through the perforations to create the printed pattern on the surface below
+73142,stenograph,a shorthand character
+73143,stenograph,a machine for typewriting shorthand characters
+73144,stenographer amanuensis shorthand_typist,someone skilled in the transcription of speech (especially dictation)
+73145,stenography,the act or art of writing in shorthand
+73146,stenopterygius Stenopterygius_quadrisicissus,an ichthyosaur of the genus Stenopterygius
+73147,stenosis stricture,abnormal narrowing of a bodily canal or passageway
+73148,stent,a slender tube inserted inside a tubular body part (as a blood vessel) to provide support during and after surgical anastomosis
+73149,stentor,a speaker with an unusually loud voice
+73150,stentor,any of several trumpet-shaped ciliate protozoans that are members of the genus Stentor
+73151,step,a solid block joined to the beams in which the heel of a ship's mast or capstan is fixed
+73152,step,the act of changing location by raising the foot and setting it down; "he walked with unsteady steps"
+73153,step stair,support consisting of a place to rest the foot while ascending or descending a stairway; "he paused on the bottom step"
+73154,step stone's_throw,a short distance; "it's only a step to the drugstore"
+73155,step-down_transformer,a transformer that reduces voltage
+73156,step-up_transformer,a transformer that increases voltage
+73157,step_dancing hoofing,dancing in which the steps are more important than gestures or postures
+73158,step_ladder stepladder,a folding portable ladder hinged at the top
+73159,step_stool,a stool that has one or two steps that fold under the seat
+73160,stepbrother half-brother half_brother,a brother who has only one parent in common with you
+73161,stepchild,a child of your spouse by a former marriage
+73162,stepdaughter,a daughter of your spouse by a former marriage
+73163,stepfather,the husband of your mother by a subsequent marriage
+73164,stephanion,the craniometric point on the coronal suture above the acoustic meatus
+73165,stephanotis,any of various evergreen climbing shrubs of the genus Stephanotis having fragrant waxy flowers
+73166,stepmother,the wife of your father by a subsequent marriage
+73167,stepparent,the spouse of your parent by a subsequent marriage
+73168,steppe,extensive plain without trees (associated with eastern Russia and Siberia)
+73169,stepper high_stepper,a horse trained to lift its feet high off the ground while walking or trotting
+73170,stepper stepping_motor,a motor (especially an electric motor) that moves or rotates in small discrete steps
+73171,stepping_stone,a stone in a marsh or shallow water that can be stepped on in crossing
+73172,stepping_stone,any means of advancement; "the job was just a stepping stone on his way to fame and riches"
+73173,steprelationship,a family relationship by virtue of remarriage
+73174,steps,the course along which a person has walked or is walking in; "I followed in his steps"; "he retraced his steps"; "his steps turned toward home"
+73175,stepson,the son your spouse by a former marriage
+73176,steradian sr,the unit of solid angle adopted under the Systeme International d'Unites
+73177,sterculia,any tree of the genus Sterculia
+73178,sterculia_gum karaya_gum,exudate of an Asian tree; used for finishing textiles and to thicken foodstuffs and cosmetics
+73179,stereo stereophony stereo_system stereophonic_system,reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound
+73180,stereo stereoscopic_picture stereoscopic_photograph,two photographs taken from slightly different angles that appear three-dimensional when viewed together
+73181,stereoscope,an optical device for viewing stereoscopic photographs
+73182,stereoscopic_vision stereoscopy,three-dimensional vision produced by the fusion of two slightly different views of a scene on each retina
+73183,stereotype,a conventional or formulaic conception or image; "regional stereotypes have been part of America since its founding"
+73184,sterility infertility,the state of being unable to produce offspring; in a woman it is an inability to conceive; in a man it is an inability to impregnate
+73185,sterilization sterilisation,the act of making an organism barren or infertile (unable to reproduce)
+73186,sterilization sterilisation,the procedure of making some object free of live bacteria or other microorganisms (usually by heat or chemical means)
+73187,sterling,British money; especially the pound sterling as the basic monetary unit of the UK
+73188,sterling_area sterling_bloc scheduled_territories,the group of countries whose currencies are tied to the British pound sterling
+73189,sterling_silver,a silver alloy with no more than 7.5% copper
+73190,stern after_part quarter poop tail,the rear part of a ship
+73191,stern_chaser,a naval gun able to fire astern at a ship in chase
+73192,sternness,the quality (as of scenery) being grim and gloomy and forbidding; "the sternness of his surroundings made him uncomfortable"
+73193,sternness strictness,uncompromising resolution
+73194,sternocleidomastoid sternocleidomastoid_muscle sternocleido_mastoideus musculus_sternocleidomastoideus,one of two thick muscles running from the sternum and clavicle to the mastoid and occipital bone; turns head obliquely to the opposite side; when acting together they flex the neck and extend the head
+73195,sternocleidomastoid_vein vena_sternocleidomastoidea,drains the sternocleidomastoid muscle; empties into the internal jugular vein
+73196,sternpost,(nautical) the principal upright timber at the stern of a vessel
+73197,sternum breastbone,the flat bone that articulates with the clavicles and the first seven pairs of ribs
+73198,sternutator sternutatory,a chemical substance that causes sneezing and coughing and crying; "police used a sternutatory to subdue the mob"
+73199,sternwheeler,a paddle steamer having the paddle wheel in the stern
+73200,steroid,any of several fat-soluble organic compounds having as a basis 17 carbon atoms in four rings; many have important physiological effects
+73201,steroid_hormone steroid sex_hormone,any hormone affecting the development and growth of sex organs
+73202,sterol steroid_alcohol,any of a group of natural steroid alcohols derived from plants or animals; they are waxy insoluble substances
+73203,stethoscope,a medical instrument for listening to the sounds generated inside the body
+73204,stevedore loader longshoreman docker dockhand dock_worker dockworker dock-walloper lumper,a laborer who loads and unloads vessels in a port
+73205,stevia,any plant of the genus Stevia or the closely related genus Piqueria having glutinous foliage and white or purplish flowers; Central and South America
+73206,stevia,any plant of the genus Piqueria or the closely related genus Stevia
+73207,stew,food prepared by stewing especially meat or fish with vegetables
+73208,stew_meat,tough meat that needs stewing to be edible
+73209,steward,the ship's officer who is in charge of provisions and dining arrangements
+73210,steward,someone who manages property or other affairs for someone else
+73211,steward flight_attendant,an attendant on an airplane
+73212,stewardess air_hostess hostess,a woman steward on an airplane
+73213,stewardship,the position of steward
+73214,stewing,an extreme state of worry and agitation; "his stewing over the fight kept him awake most of the night"
+73215,stewing_pan stewpan,a saucepan used for stewing
+73216,sthene,a unit of force equal to 1000 newtons
+73217,stibnite,a soft grey mineral; the chief ore of antimony
+73218,stick,a small thin branch of a tree
+73219,stick,a rectangular quarter pound block of butter or margarine
+73220,stick,a long implement (usually made of wood) that is shaped so that hockey or polo players can hit a puck or ball
+73221,stick,a long thin implement resembling a length of wood; "cinnamon sticks"; "a stick of dynamite"
+73222,stick,an implement consisting of a length of wood; "he collected dry sticks for a campfire"; "the kid had a candied apple on a stick"
+73223,stick,threat of a penalty; "the policy so far is all stick and no carrot"
+73224,stick control_stick joystick,a lever used by a pilot to control the ailerons and elevators of an airplane
+73225,stick_cinnamon,dried rolled strips of cinnamon bark
+73226,stick_figure,drawing of a human or animal that represents the head by a circle and the rest of the body by straight lines
+73227,stick_horse,a child's plaything consisting on an imitation horse's head on one end of a stick
+73228,stick_lac,lac in its natural state as scraped off twigs and dried
+73229,stickball stickball_game,a form of baseball played in the streets with a rubber ball and broomstick handle
+73230,stickiness,the property of sticking to a surface
+73231,sticking_point,a point at which an impasse arises in progress toward an agreement or a goal
+73232,stickleback prickleback,small (2-4 inches) pugnacious mostly scaleless spiny-backed fishes of northern fresh and littoral waters having elaborate courtship; subjects of much research
+73233,stickler,someone who insists on something; "a stickler for promptness"
+73234,stickpin,a decorative pin that is worn in a necktie
+73235,sticks_and_stone,a general term for building materials
+73236,sticktight sticktight_flea Echidnophaga_gallinacea,parasitic on especially the heads of chickens
+73237,stickweed,any of several herbaceous plants having seeds that cling to clothing
+73238,sticky_aster Machaeranthera_bigelovii,wild aster having leafy stems and flower heads with narrow bright reddish-lavender or purple rays; western Colorado to Arizona
+73239,sticky_end,an end of DNA in which one strand of the double helix extends a few units beyond the other
+73240,sticky_geranium Geranium_viscosissimum,geranium of western North America having pinkish-purple flowers in open clusters
+73241,stiff,an ordinary man; "a lucky stiff"; "a working stiff"
+73242,stiff_aster Aster_linarifolius,wiry tufted perennial of the eastern United States with stiff erect rough stems, linear leaves and large violet flowers
+73243,stiff_upper_lip,self-restraint in the expression of emotion (especially fear or grief); "the British like to keep a stiff upper lip"
+73244,stiffener,material used for stiffening something
+73245,stiffening,the act of becoming stiff; "stiffening his shoulders, he prepared to advance"
+73246,stiffening rigidifying rigidification,the process of becoming stiff or rigid
+73247,stiffness,the physical property of being inflexible and hard to bend
+73248,stiffness,the property of moving with pain or difficulty; "he awoke with a painful stiffness in his neck"
+73249,stiffness,firm resoluteness in purpose or opinion or action; "a charming host without any touch of stiffness or pomposity"
+73250,stifle knee,joint between the femur and tibia in a quadruped; corresponds to the human knee
+73251,stifler smotherer,a person who stifles or smothers or suppresses; "he is a real conversation stifler"; "I see from all the yawn smotherers that it is time to stop"
+73252,stigma,the apical end of the style where deposited pollen enters the pistil
+73253,stigma,an external tracheal aperture in a terrestrial arthropod
+73254,stigma,a skin lesion that is a diagnostic sign of some disease
+73255,stigmata,marks resembling the wounds on the crucified body of Christ
+73256,stigmatic stigmatist,a person whose body is marked by religious stigmata (such as marks resembling the wounds of the crucified Christ)
+73257,stigmatism,the condition of having or being marked by stigmata
+73258,stigmatism,(optics) condition of an optical system (as a lens) in which light rays from a single point converge in a single focal point
+73259,stigmatism,normal eyesight
+73260,stigmatization stigmatisation branding,the act of stigmatizing
+73261,stile,an upright that is a member in a door or window frame
+73262,stiletto,a small dagger with a tapered blade
+73263,still,a static photograph (especially one taken from a movie and used for advertising purposes); "he wanted some stills for a magazine ad"
+73264,still,an apparatus used for the distillation of liquids; consists of a vessel in which a substance is vaporized by heat and a condenser where the vapor is condensed
+73265,still_life,a painting of inanimate objects such as fruit or flowers
+73266,stillborn_infant,infant who shows no signs of life after birth
+73267,stillness windlessness,calmness without winds
+73268,stillroom still_room,a pantry or storeroom connected with the kitchen (especially in a large house) for preparing tea and beverages and for storing liquors and preserves and tea etc
+73269,stilt,one of two stout poles with foot rests in the middle; used for walking high above the ground; "he was so tall I thought he was on stilts"
+73270,stilt Australian_stilt,long-legged three-toed wading bird of brackish marshes of Australia
+73271,stilt stiltbird longlegs long-legs stilt_plover Himantopus_stilt,long-legged three-toed black-and-white wading bird of inland ponds and marshes or brackish lagoons
+73272,stimulant stimulant_drug excitant,a drug that temporarily quickens some vital process
+73273,stimulation,(physiology) the effect of a stimulus (on nerves or organs etc.)
+73274,stimulation,the act of arousing an organism to action
+73275,stimulation stimulus stimulant input,any stimulating information or event; acts to arouse action
+73276,sting bite insect_bite,a painful wound caused by the thrust of an insect's stinger into skin
+73277,sting sting_operation,operation designed to catch a person committing a criminal act; "the police conducted a sting operation"
+73278,sting stinging,a kind of pain; something as sudden and painful as being stung; "the sting of death"; "he felt the stinging of nettles"
+73279,sting_operation,a complicated confidence game planned and executed with great care (especially an operation implemented by undercover agents to apprehend criminals)
+73280,stinger,a cocktail made of made of creme de menthe and brandy
+73281,stinger,a sharp organ of offense or defense (as of a wasp or stingray or scorpion) often connected with a poison gland
+73282,stinger,a sharp stinging blow
+73283,stinger cut,a remark capable of wounding mentally; "the unkindest cut of all"
+73284,stinginess,a lack of generosity; a general unwillingness to part with money
+73285,stinging_hair,a multicellular hair in plants like the stinging nettle that expels an irritating fluid
+73286,stinging_nettle Urtica_dioica,perennial Eurasian nettle established in North America having broad coarsely toothed leaves with copious stinging hairs
+73287,stingray,large venomous ray with large barbed spines near the base of a thin whiplike tail capable of inflicting severe wounds
+73288,stink_bell Fritillaria_agrestis,a malodorous California herb with bell-shaped flowers; a common weed in grainfields
+73289,stink_bomb stench_bomb,a small bomb designed to give off a foul odor when it explodes
+73290,stinker,anything that gives off an offensive odor (especially a cheap cigar)
+73291,stinkhorn carrion_fungus,any of various ill-smelling brown-capped fungi of the order Phallales; "the foul smell of the stinkhorn attracts insects that carry the spores away on their feet"
+73292,stinking_cedar stinking_yew Torrey_tree Torreya_taxifolia,rare small evergreen of northern Florida; its glossy green leaves have an unpleasant fetid smell when crushed
+73293,stinking_goosefoot Chenopodium_vulvaria,European goosefoot with strong-scented foliage; adventive in eastern North America
+73294,stinking_hellebore bear's_foot setterwort Helleborus_foetidus,digitate-leaved hellebore with an offensive odor and irritant qualities when taken internally
+73295,stinking_iris gladdon gladdon_iris stinking_gladwyn roast_beef_plant Iris_foetidissima,iris with purple flowers and foul-smelling leaves; southern and western Europe and North Africa
+73296,stinky_squid Pseudocolus_fusiformis,a stinkhorn of genus Pseudocolus; the fruiting body first resembles a small puffball that soon splits open to form a stalk with tapering arms that arch and taper to a common point
+73297,stint,an individual's prescribed share of work; "her stint as a lifeguard exhausted her"
+73298,stinter,an economizer who stints someone with something
+73299,stipe,supporting stalk or stem-like structure especially of a pistil or fern frond or supporting a mushroom cap
+73300,stipend,a sum of money allotted on a regular basis; usually for some specific purpose
+73301,stipendiary stipendiary_magistrate,(United Kingdom) a paid magistrate (appointed by the Home Secretary) dealing with police cases
+73302,stippler,a painter who stipples (creates a stippled effect)
+73303,stipulation judicial_admission,(law) an agreement or concession made by parties in a judicial proceeding (or by their attorneys) relating to the business before the court; must be in writing unless they are part of the court record; "a stipulation of fact was made in order to avoid delay"
+73304,stipulation specification,a restriction that is insisted upon as a condition for an agreement
+73305,stipulative_definition,a definition that is stipulated by someone and that is not a standard usage
+73306,stipule,a small leafy outgrowth at the base of a leaf or its stalk; usually occurring in pairs and soon shed
+73307,stir,emotional agitation and excitement
+73308,stir splash,a prominent or sensational but short-lived news event; "he made a great splash and then disappeared"
+73309,stirk,yearling heifer or bullock
+73310,stirrer,an implement used for stirring
+73311,stirring,agitating a liquid with an implement; "constant stirring prevents it from burning on the bottom of the pan"
+73312,stirrup stirrup_iron,support consisting of metal loops into which rider's feet go
+73313,stirrup_cup,a farewell drink (especially one offered to a horseman ready to depart); usually alcoholic
+73314,stirrup_pump,a hand-operated reciprocating pump; used in fighting fires
+73315,stitch,a sharp spasm of pain in the side resulting from running
+73316,stitch,a link or loop or knot made by an implement in knitting, crocheting, embroidery, or sewing
+73317,stitcher,a garmentmaker who performs the finishing steps
+73318,stitchwort greater_stitchwort starwort Stellaria_holostea,low-growing north temperate herb having small white star-shaped flowers; named for its alleged ability to ease sharp pains in the side
+73319,stoat,the ermine in its brown summer coat with black-tipped tail
+73320,stob,a short straight stick of wood
+73321,stochastic_process,a statistical process involving a number of random variables depending on a variable parameter (which is usually time)
+73322,stock,the reputation and popularity a person has; "his stock was so high he could have been elected mayor"
+73323,stock,the capital raised by a corporation through the issue of shares entitling holders to an ownership interest (equity); "he owns a controlling share of the company's stock"
+73324,stock,a plant or stem onto which a graft is made; especially a plant grown specifically to provide the root part of grafted plants
+73325,stock,lumber used in the construction of something; "they will cut round stock to 1-inch diameter"
+73326,stock,the handle end of some implements or tools; "he grabbed the cue by the stock"
+73327,stock caudex,persistent thickened stem of a herbaceous perennial plant
+73328,stock gillyflower,any of several Old World plants cultivated for their brightly colored flowers
+73329,stock gunstock,the handle of a handgun or the butt end of a rifle or shotgun or part of the support of a machine gun or artillery gun; "the rifle had been fitted with a special stock"
+73330,stock inventory,the merchandise that a shop has on hand; "they carried a vast inventory of hardware"; "they stopped selling in exact sizes in order to reduce inventory"
+73331,stock-in-trade,any equipment constantly used as part of a profession or occupation; "friendliness is the salesman's stock in trade"
+73332,stock-index_futures,a futures contract based on a stock index; a bet on the future price of the indexed group of stocks
+73333,stock_buyback,a corporation's purchase of its own outstanding stock; increases earnings/share so stock price rises (which can discourage a takeover attempt)
+73334,stock_car,a car kept in dealers' stock for regular sales
+73335,stock_car,a racing car with the basic chassis of a commercially available car
+73336,stock_certificate stock,a certificate documenting the shareholder's ownership in the corporation; "the value of his stocks doubled during the past year"
+73337,stock_company,a company whose capital is represented by stock
+73338,stock_company repertory_company repertory,a theatrical company that performs plays from a repertoire
+73339,stock_cube,a cube of dehydrated stock
+73340,stock_dividend,a dividend paid in stock rather than in cash
+73341,stock_exchange stock_market securities_market,an exchange where security trading is conducted by professional stockbrokers
+73342,stock_index stock_market_index,index based on a statistical compilation of the share prices of a number of representative stocks
+73343,stock_issue,(corporation law) the authorization and delivery of shares of stock for sale to the public or the shares thus offered at a particular time
+73344,stock_of_record,stock held by stockholders of record on a given date
+73345,stock_option,the right to buy or sell a stock at a specified price within a stated period
+73346,stock_option,a benefit given by a company to an employee in the form of an option to buy stock in the company at a discount or at a fixed price; "stock options are not much use as an incentive if the price at which they can be exercised is out of reach"
+73347,stock_photograph stock_image,an exisitng photograph licensed for a specific use
+73348,stock_power,a power of attorney document to transfer ownership of a registered security from the owner to another party
+73349,stock_purchase_plan,an organized plan for employees of a company to buy shares of its stock
+73350,stock_saddle Western_saddle,an ornamented saddle used by cowboys; has a high horn to hold the lariat
+73351,stock_symbol,the letters used to identify listed companies on the securities exchanges where they are traded
+73352,stock_trader,someone who buys and sells stock shares
+73353,stock_warrant,a written certificate that gives the holder the right to purchase shares of a stock for a specified price within a specified period of time
+73354,stockade,fortification consisting of a fence made of a line of stout posts set firmly for defense
+73355,stockbroker,an agent in the buying and selling of stocks and bonds
+73356,stockbroker_belt,a wealthy residential suburb
+73357,stockcar,boxcar with latticed sides; for transporting livestock
+73358,stocker,a domestic animal (especially a young steer or heifer) kept as stock until fattened or matured and suitable for a breeding establishment
+73359,stockfish,fish cured by being split and air-dried without salt
+73360,stockholder shareholder shareowner,someone who holds shares of stock in a corporation
+73361,stockholder_of_record,the stockholder whose name is registered on the books of the corporation as owning the shares at a particular time
+73362,stockholders_meeting,a meeting at which the management reports to the stockholders of a company
+73363,stockholding,ownership of stocks; the state or fact of holding stock; "prohibition of unrestricted intercorporate stockholding"- W.Z.Ripley
+73364,stockholding stockholdings,a specific number of stocks or shares owned; "sell holdings he has in corporations"
+73365,stockinet stockinette,knit used especially for infants' wear and undergarments
+73366,stockinette_stitch,knitting stitch having alternate rows of knit stitches and purl stitches, producing a fabric as for stockings
+73367,stocking,close-fitting hosiery to cover the foot and leg; come in matched pairs (usually used in the plural)
+73368,stocking,the activity of supplying a stock of something; "he supervised the stocking of the stream with trout"
+73369,stocking_filler stocking_stuffer,a small Christmas present included in the Christmas stocking
+73370,stockist,one (as a retailer or distributor) that stocks goods
+73371,stockjobber,one who deals only with brokers or other jobbers
+73372,stockman stock_raiser stock_farmer,farmer who breed or raises livestock
+73373,stockpile,a storage pile accumulated for future use
+73374,stockpiling,accumulating and storing a reserve supply; "the stockpiling of war materials"
+73375,stockpot,a pot used for preparing soup stock
+73376,stockroom stock_room,storeroom for storing goods and supplies used in a business
+73377,stocks,a frame that supports a boat while it is under construction
+73378,stocks,a frame for constraining an animal while it is receiving veterinary attention or while being shod
+73379,stocks,a former instrument of punishment consisting of a heavy timber frame with holes in which the feet (and sometimes the hands) of an offender could be locked
+73380,stocktake stock-take,an instance of stocktaking; "the auditor did not attend the stocktake or check the valuations"
+73381,stocktaker stock-taker,an employee whose job is to take inventory; "an outside stocktaker had to be hired"
+73382,stocktaking stock-taking,reappraisal of a situation or position or outlook
+73383,stockyard,enclosed yard where cattle, pigs, horses, or sheep are kept temporarily
+73384,stodge,heavy and filling (and usually starchy) food
+73385,stodginess stuffiness,dull and pompous gravity
+73386,stogy stogie,a cheap cigar
+73387,stoic unemotional_person,someone who is seemingly indifferent to emotions
+73388,stoichiometry,(chemistry) the relation between the quantities of substances that take part in a reaction or form a compound (typically a ratio of whole integers)
+73389,stoicism stolidity stolidness,an indifference to pleasure or pain
+73390,stokehold stokehole fireroom,(nautical) chamber or compartment in which the furnaces of a ship are stoked or fired
+73391,stoker,a mechanical device for stoking a furnace
+73392,stoker fireman,a laborer who tends fires (as on a coal-fired train or steamship)
+73393,stokes'_aster cornflower_aster Stokesia_laevis,erect perennial of southeastern United States having large heads of usually blue flowers
+73394,stole,a wide scarf worn about their shoulders by women
+73395,stolen_property,property that has been stolen
+73396,stolon runner offset,a horizontal branch from the base of plant that produces new plants from buds at its tips
+73397,stoma,a mouth or mouthlike opening (especially one created by surgery on the surface of the body to create an opening to an internal organ)
+73398,stoma stomate pore,a minute epidermal pore in a leaf or stem through which gases and water vapor can pass
+73399,stomach,an inclination or liking for things involving conflict or difficulty or unpleasantness; "he had no stomach for a fight"
+73400,stomach,an appetite for food; "exercise gave him a good stomach for dinner"
+73401,stomach tummy tum breadbasket,an enlarged and muscular saclike organ of the alimentary canal; the principal organ of digestion
+73402,stomach_exercise tummy_crunch,an exercise designed to strengthen the abdominal muscles
+73403,stomach_pump,a suction pump used to remove the contents of the stomach
+73404,stomach_sweetbread,edible pancreas of an animal
+73405,stomachache stomach_ache bellyache gastralgia,an ache localized in the stomach or abdominal region
+73406,stomacher,garment consisting of a V-shaped panel of stiff material worn over the chest and stomach in the 16th century
+73407,stomatitis,inflammation of the mucous membrane of the mouth
+73408,stomatopod stomatopod_crustacean,a kind of crustacean
+73409,stomp,a dance involving a rhythmical stamping step
+73410,stone,an avoirdupois unit used to measure the weight of a human body; equal to 14 pounds; "a heavy chap who must have weighed more than twenty stone"
+73411,stone,a lack of feeling or expression or movement; "he must have a heart of stone"; "her face was as hard as stone"
+73412,stone,building material consisting of a piece of rock hewn in a definite shape for a special purpose; "he wanted a special stone to mark the site"
+73413,stone pit endocarp,the hard inner (usually woody) layer of the pericarp of some fruits (as peaches or plums or cherries or olives) that contains the seed; "you should remove the stones from prunes before cooking"
+73414,stone_bass wreckfish Polyprion_americanus,brown fish of the Atlantic and Mediterranean found around rocks and shipwrecks
+73415,stone_bramble Rubus_saxatilis,European trailing bramble with red berrylike fruits
+73416,stone_breaker,someone who breaks up stone
+73417,stone_crab,pale flesh with delicate texture and flavor; found in Florida but now very rare
+73418,stone_crab Menippe_mercenaria,large edible crab of the southern coast of the United States (particularly Florida)
+73419,stone_curlew thick-knee Burhinus_oedicnemus,large-headed large-eyed crepuscular or nocturnal shorebird of the Old World and tropical America having a thickened knee joint
+73420,stone_marten beech_marten Martes_foina,Eurasian marten having a brown coat with pale breast and throat
+73421,stone_parsley Sison_amomum,a slender roadside herb of western Europe and Mediterranean areas that has foliage resembling parsley and has white flowers with aromatic seeds
+73422,stone_pine umbrella_pine European_nut_pine Pinus_pinea,medium-sized two-needled pine of southern Europe having a spreading crown; widely cultivated for its sweet seeds that resemble almonds
+73423,stone_wall,a fence built of rough stones; used to separate fields
+73424,stonechat Saxicola_torquata,common European chat with black plumage and a reddish-brown breast
+73425,stonecress stone_cress,any Old World herb of the genus Aethionema; native of sunny limestone habitats
+73426,stonecrop,any of various northern temperate plants of the genus Sedum having fleshy leaves and red or yellow or white flowers
+73427,stonecutter cutter,someone who cuts or carves stone
+73428,stonefish Synanceja_verrucosa,venomous tropical marine fish resembling a piece of rock
+73429,stonefly stone_fly plecopteran,primitive winged insect with a flattened body; used as bait by fishermen; aquatic gilled larvae are carnivorous and live beneath stones
+73430,stoner lapidator,an attacker who pelts the victim with stones (especially with intent to kill)
+73431,stonewaller,one who stonewalls or refuses to answer or cooperate; someone who delays by lengthy speeches etc.
+73432,stonewalling,stalling or delaying especially by refusing to answer questions or cooperate
+73433,stoneware,ceramic ware that is fired in high heat and vitrified and nonporous
+73434,stonework,masonry done with stone
+73435,stonewort,any of various submerged aquatic algae of the genus Chara having nodes with whorled filamentlike branches; usually encrusted with calcium carbonate deposits
+73436,stoning lapidation,the act of pelting with stones; punishment inflicted by throwing stones at the victim (even unto death)
+73437,stony_coral madrepore madriporian_coral,corals having calcareous skeletons aggregations of which form reefs and islands
+73438,stool,(forestry) the stump of a tree that has been felled or headed for the production of saplings
+73439,stool,a simple seat without a back or arms
+73440,stool_pigeon,a dummy pigeon used to decoy others
+73441,stoop,an inclination of the top half of the body forward and downward
+73442,stoop stoep,small porch or set of steps at the front entrance of a house
+73443,stooper,a person at a racetrack who searches for winning parimutuel tickets that have been carelessly discarded by others
+73444,stooper,a person who carries himself or herself with the head and shoulders habitually bent forward
+73445,stop,a spot where something halts or pauses; "his next stop is Atlanta"
+73446,stop,(music) a knob on an organ that is pulled to change the sound quality from the organ pipes; "the organist pulled out all the stops"
+73447,stop halt,the event of something ending; "it came to a stop at the bottom of the hill"
+73448,stop stopover layover,a brief stay in the course of a journey; "they made a stopover to visit their friends"
+73449,stop stoppage,the act of stopping something; "the third baseman made some remarkable stops"; "his stoppage of the flow resulted in a flood"
+73450,stop_bath short-stop short-stop_bath,an acid bath used to stop the action of a developer
+73451,stop_consonant stop occlusive plosive_consonant plosive_speech_sound plosive,a consonant produced by stopping the flow of air at some point and suddenly releasing it; "his stop consonants are too aspirated"
+73452,stop_order stop-loss_order,an order to a broker to sell (buy) when the price of a security falls (rises) to a designated level
+73453,stop_payment,a depositor's order to a bank to refuse payment on a check
+73454,stop_press,late news that is inserted into the newspaper at the last minute
+73455,stopcock cock turncock,faucet consisting of a rotating device for regulating flow of a liquid
+73456,stoplight brake_light,a red light on the rear of a motor vehicle that signals when the brakes are applied to slow or stop
+73457,stopover way_station,a stopping place on a journey; "there is a stopover to change planes in Chicago"
+73458,stopper,(bridge) a playing card with a value sufficiently high to insure taking a trick in a particular suit; "if my partner has a spade stopper I can bid no trump"
+73459,stopper_knot,a knot that prevents a rope from passing through a hole
+73460,stopping,the kind of playing that involves pressing the fingers on the strings of a stringed instrument to control the pitch; "the violinist's stopping was excellent"
+73461,stopping_point finale finis finish last conclusion close,the temporal end; the concluding time; "the stopping point of each round was signaled by a bell"; "the market was up at the finish"; "they were playing better at the close of the season"
+73462,stopwatch stop_watch,a timepiece that can be started or stopped for exact timing (as of a race)
+73463,storage,(computer science) the process of storing information in a computer memory or on a magnetic tape or disk
+73464,storage,the commercial enterprise of storing goods and materials
+73465,storage,the act of storing something
+73466,storage_battery accumulator,a voltaic battery that stores electric charge
+73467,storage_cell secondary_cell,a cell that can be recharged
+73468,storage_medium data-storage_medium,a medium for storing information
+73469,storage_ring,container consisting of a set of magnets set in a doughnut-shaped ring around which charged particles from an accelerator can be kept circulating until they are used
+73470,storage_space,the area in any structure that provides space for storage
+73471,storax,a vanilla-scented resin from various trees of the genus Styrax
+73472,store stock fund,a supply of something available for future use; "he brought back a large store of Cuban cigars"
+73473,store_detective,a private detective employed by a merchant to stop pilferage
+73474,stored_program,a program that is stored in the memory of the computer that executes it
+73475,storehouse depot entrepot storage store,a depository for goods; "storehouses were built close to the docks"
+73476,storeroom storage_room stowage,a room in which things are stored
+73477,stork,large mostly Old World wading birds typically having white-and-black plumage
+73478,storksbill heron's_bill,any of various plants of the genus Erodium
+73479,storm,a direct and violent assault on a stronghold
+73480,storm tempest,a violent commotion or disturbance; "the storms that had characterized their relationship had died away"; "it was only a tempest in a teapot"
+73481,storm violent_storm,a violent weather condition with winds 64-72 knots (11 on the Beaufort scale) and precipitation and thunder and lightning
+73482,storm_cellar cyclone_cellar tornado_cellar,an underground shelter where you can go until a storm passes
+73483,storm_center storm_centre,a center of trouble or disturbance
+73484,storm_center storm_centre,the central area or place of lowest barometric pressure within a storm
+73485,storm_cloud,a heavy dark cloud presaging rain or a storm
+73486,storm_cone,a canvas cone hoisted to warn of high winds
+73487,storm_door,an extra outer door for protection against severe weather or winter
+73488,storm_petrel,any of various small petrels having dark plumage with paler underparts
+73489,storm_signal,a signal announcing the approach of a storm (particularly a storm of marked violence)
+73490,storm_trooper,a member of the Nazi SA
+73491,storm_window storm_sash,a window outside an ordinary window to protect against severe weather or winter
+73492,storminess,the state of being stormy; "he dreaded the storminess of the North Atlantic in winter"
+73493,storminess,violent passion in speech or action; "frightened by the storminess of their argument"
+73494,stormy_petrel northern_storm_petrel Hydrobates_pelagicus,sooty black petrel with white markings; of the northern Atlantic and Mediterranean
+73495,story,a piece of fiction that narrates a chain of related events; "he writes stories for the magazines"
+73496,storybook,a book containing a collection of stories (usually for children)
+73497,storyline plot_line,the plot of a book or play or film
+73498,storyteller fibber fabricator,someone who tells lies
+73499,stotinka,100 stotinka equal 1 lev in Bulgaria
+73500,stoup,an archaic drinking vessel
+73501,stoup stoop,basin for holy water
+73502,stout,a strong very dark heavy-bodied ale made from pale malt and roasted unmalted barley and (often) caramel malt with hops
+73503,stout,a garment size for a large or heavy person
+73504,stoutheartedness,the trait of having a courageous spirit
+73505,stoutness stalwartness,the property of being strong and resolute
+73506,stove,any heating apparatus
+73507,stove kitchen_stove range kitchen_range cooking_stove,a kitchen appliance used for cooking food; "dinner was already on the stove"
+73508,stove_bolt,a small machine bolt
+73509,stovepipe,chimney consisting of a metal pipe of large diameter that is used to connect a stove to a flue
+73510,stovepipe_iron,plate iron that is thinner than tank iron
+73511,stovepiping,retrieval of information from unconnected databases; the situation that exists when it is necessary to climb out of one database in order to climb down into another; sometimes used for protection against wandering hackers
+73512,stover,the dried stalks and leaves of a field crop (especially corn) used as animal fodder after the grain has been harvested
+73513,stowage,the charge for stowing goods
+73514,stowage stowing,the act of packing or storing away
+73515,stowaway,a person who hides aboard a ship or plane in the hope of getting free passage
+73516,strabismus squint,abnormal alignment of one or both eyes
+73517,strabotomy,the surgical operation of cutting a muscle or tendon of the eye in order to correct strabismus
+73518,straddle,a noncommittal or equivocal position
+73519,straddle,a gymnastic exercise performed with a leg on either side of the parallel bars
+73520,straddle,the option to buy or sell a given stock (or stock index or commodity future) at a given price before a given date; consists of an equal number of put and call options
+73521,straddle span,the act of sitting or standing astride
+73522,strafe,an attack of machine-gun fire or cannon fire from a low flying airplane; "the next morning they carried out a strafe of enemy airfields"
+73523,strafer,a combat pilot who strafes the enemy
+73524,straggle,a wandering or disorderly grouping (of things or persons); "a straggle of outbuildings"; "a straggle of followers"
+73525,straggler strayer,someone who strays or falls behind
+73526,straight,a poker hand with 5 consecutive cards (regardless of suit)
+73527,straight-arm,(American football) the act of warding off a tackler by holding the arm fully extended with the hand against the opponent
+73528,straight-line_method straight-line_method_of_depreciation,(accounting) a method of calculating depreciation by taking an equal amount of the asset's cost as an expense for each year of the asset's useful life
+73529,straight_and_narrow strait_and_narrow,the way of proper and honest behavior; "he taught his children to keep strictly to the straight and narrow"
+73530,straight_angle,an angle of 180 degrees
+73531,straight_chain,an open chain of atoms with no side chains
+73532,straight_chair side_chair,a straight-backed chair without arms
+73533,straight_face,a serious facial expression giving no evidence of interest or amusement
+73534,straight_flush,a poker hand with consecutive cards in the same suit
+73535,straight_flute straight-fluted_drill,a rock drill with flutes that are straight
+73536,straight_hang,a hang performed on the rings or parallel bars with the body erect and the arms at the sides
+73537,straight_line,a line traced by a point traveling in a constant direction; a line of zero curvature; "the shortest distance between two points is a straight line"
+73538,straight_man second_banana,a performer who acts as stooge to a comedian
+73539,straight_pin,pin consisting of a short straight stiff piece of wire with a pointed end; used to fasten pieces of cloth or paper together
+73540,straight_poker,poker in which each player gets 5 cards face down and bets are made without drawing any further cards
+73541,straight_razor,a razor with a straight cutting edge enclosed in a case that forms a handle when the razor is opened for use
+73542,straight_sinus tentorial_sinus sinus_rectus,an unpaired sinus of the dura mater
+73543,straight_ticket,a ballot cast by a voter who votes for all the candidates of one party
+73544,straightaway straight,a straight segment of a roadway or racecourse
+73545,straightedge,hand tool consisting of a flat rigid rectangular bar (metal or wood) that can be used to draw straight lines (or test their straightness)
+73546,straightener,a device for straightening; "a hair straightener"
+73547,straightness,(of hair) lack of a tendency to curl
+73548,straightness,freedom from crooks or curves or bends or angles
+73549,strain,injury to a muscle (often caused by overuse); results in swelling and pain
+73550,strain,(physics) deformation of a physical body under the action of applied forces
+73551,strain mental_strain nervous_strain,(psychology) nervousness resulting from mental stress; "his responsibilities were a constant strain"; "the mental strain of staying alert hour after hour was too much for him"
+73552,strain straining,an intense or violent exertion
+73553,strain_gauge strain_gage,a gauge for measuring strain in a surface
+73554,strainer,a filter to retain larger pieces while smaller pieces and liquids pass through
+73555,strait sound,a narrow channel of the sea joining two larger bodies of water
+73556,straitjacket,anything immaterial that severely hinders or confines; "they defected because Russian dance was in a straitjacket"; "the government is operating in an economic straitjacket"
+73557,straitjacket straightjacket,a garment similar to a jacket that is used to bind the arms tightly against the body as a means of restraining a violent person
+73558,strand,a poetic term for a shore (as the area periodically covered and uncovered by the tides)
+73559,strand,a pattern forming a unity within a larger structural whole; "he tried to pick up the strands of his former life"; "I could hear several melodic strands simultaneously"
+73560,strand,line consisting of a complex of fibers or filaments that are twisted together to form a thread or a rope or a cable
+73561,strange_attractor chaotic_attractor,an attractor for which the approach to its final point in phase space is chaotic
+73562,strange_particle,an elementary particle with non-zero strangeness
+73563,strange_quark squark,a quark with an electric charge of -1/3 and a mass 988 times that of an electron and a strangeness of -1
+73564,strangeness,(physics) one of the six flavors of quark
+73565,stranger,an individual that one is not acquainted with
+73566,stranger alien unknown,anyone who does not belong in the environment in which they are found
+73567,stranglehold,a wrestling hold in which the arms are pressed against the opponent's windpipe
+73568,stranglehold chokehold throttlehold,complete power over a person or situation; "corporations have a stranglehold on the media"; "the president applied a chokehold to labor disputes that inconvenienced the public"
+73569,strangler strangler_tree,an epiphytic vine or tree whose aerial roots extend down the trunk of a supporting tree and coalesce around it eventually strangling the tree
+73570,strangulation,the condition of having respiration stopped by compression of the air passage
+73571,strangulation,(pathology) constriction of a body part so as to cut off the flow of blood or other fluid; "strangulation of the intestine"
+73572,strap,hanger consisting of a loop of leather suspended from the ceiling of a bus or train; passengers hold onto it
+73573,strap,an elongated leather strip (or a strip of similar material) for binding things together or holding something in position
+73574,strap,whip consisting of a strip of leather used in flogging
+73575,strap shoulder_strap,a band that goes over the shoulder and supports a garment or bag
+73576,strap_fern,fern with long narrow strap-shaped leaves
+73577,strap_hinge joint_hinge,a hinge with two long straps; one strap is fastened to the surface of a moving part (e.g., a door or lid) and the other is fastened to the adjacent stationary frame
+73578,straphanger,a commuter who uses public transportation
+73579,straphanger,a standing subway or bus passenger who grips a hanging strap for support
+73580,strapless,a woman's garment that exposes the shoulders and has no shoulder straps
+73581,strappado strapado,a form of torture in which the hands are tied behind a person's back and they are lifted off the ground by a rope tied to their wrists, then allowed to drop until their fall is checked with a jerk by the rope
+73582,strategic_buyout,an acquisition based on analysis of the benefits of consolidation in anticipation of increased earning power
+73583,strategic_intelligence,intelligence that is required for forming policy and military plans at national and international levels
+73584,strategic_warning,(military) a warning prior to the start of a threatening act
+73585,strategics,the science or art of strategy
+73586,strategist strategian,an expert in strategy (especially in warfare)
+73587,strategy,the branch of military science dealing with military command and the planning and conduct of a war
+73588,stratification,forming or depositing in layers
+73589,stratification,a layered configuration
+73590,stratification,the act or process or arranging persons into classes or social strata
+73591,stratification,the placing of seeds in damp sand or sawdust or peat moss in order to preserve them or promote germination
+73592,stratification social_stratification,the condition of being arranged in social strata or classes within a group
+73593,stratified_language,a language that cannot be used as its own metalanguage
+73594,stratified_sample representative_sample proportional_sample,the population is divided into strata and a random sample is taken from each stratum
+73595,stratified_sampling representative_sampling proportional_sampling,the population is divided into subpopulations (strata) and random samples are taken of each stratum
+73596,stratigraphy,the branch of geology that studies the arrangement and succession of strata
+73597,stratosphere,the atmospheric layer between the troposphere and the mesosphere
+73598,stratum,one of several parallel layers of material arranged one on top of another (such as a layer of tissue or cells in an organism or a layer of sedimentary rock)
+73599,stratum,a subpopulation divided into a stratified sampling
+73600,stratum_corneum corneum horny_layer,the outermost layer of the epidermis consisting of dead cells that slough off
+73601,stratum_germinativum stratum_basale malpighian_layer rete_Malpighii,the innermost layer of the epidermis
+73602,stratum_granulosum,the layer of epidermis just under the stratum corneum or (on the palms and soles) just under the stratum lucidum; contains cells (with visible granules) that die and move to the surface
+73603,stratum_lucidum,the layer of epidermis immediately under the stratum corneum in the skin of the palms and soles
+73604,stratus stratus_cloud,a large dark low cloud
+73605,straw,plant fiber used e.g. for making baskets and hats or as fodder
+73606,straw drinking_straw,a thin paper or plastic tube used to suck liquids into the mouth
+73607,straw_boss assistant_foreman,a member of a work gang who supervises the other workers
+73608,straw_man strawman,a weak or sham argument set up to be easily refuted
+73609,straw_mushroom Chinese_mushroom Volvariella_volvacea,small tropical and subtropical edible mushroom having a white cap and long stem; an expensive delicacy in China and other Asian countries where it is grown commercially
+73610,straw_vote straw_poll,an unofficial vote taken to determine opinion on some issue
+73611,straw_wine,sweet wine from grapes partially sun-dried on the vine or on straw mats
+73612,strawberry,any of various low perennial herbs with many runners and bearing white flowers followed by edible fruits having many small achenes scattered on the surface of an enlarged red pulpy berry
+73613,strawberry,sweet fleshy red fruit
+73614,strawberry strawberry_mark hemangioma_simplex,a soft red birthmark
+73615,strawberry_blite strawberry_pigweed Indian_paint Chenopodium_capitatum,European annual with clusters of greenish flowers followed by red pulpy berrylike fruit; naturalized North America
+73616,strawberry_bush wahoo Euonymus_americanus,upright deciduous plant with crimson pods and seeds; the eastern United States from New York to Florida and Texas
+73617,strawberry_daiquiri,daiquiri with crushed strawberries
+73618,strawberry_geranium strawberry_saxifrage mother-of-thousands Saxifraga_stolonifera Saxifraga_sarmentosam,eastern Asiatic saxifrage with racemes of small red-and-white flowers; spreads by numerous creeping stolons
+73619,strawberry_hemangioma strawberry_haemangioma,a congenital bright red superficial vascular tumor resembling a strawberry; tends to decrease in size during childhood
+73620,strawberry_ice_cream,ice cream flavored with fresh strawberries
+73621,strawberry_jam strawberry_preserves,made with strawberries
+73622,strawberry_tomato dwarf_cape_gooseberry Physalis_pruinosa,stout hairy annual of eastern North America with sweet yellow fruits
+73623,strawberry_tree Irish_strawberry Arbutus_unedo,small evergreen European shrubby tree bearing many-seeded scarlet berries that are edible but bland; of Ireland, southern Europe, Asia Minor
+73624,strawboard,a coarse yellow cardboard made of straw pulp
+73625,strawflower,any of various plants of the genus Helipterum
+73626,strawflower cornflower Uvularia_grandiflora,plant of southern and southeastern United States grown for its yellow flowers that can be dried
+73627,strawflower golden_everlasting yellow_paper_daisy Helichrysum_bracteatum,Australian plant naturalized in Spain having flowers of lemon yellow to deep gold; the frequent choice of those who love dried flowers
+73628,strawworm jointworm,larva of chalcid flies injurious to the straw of wheat and other grains
+73629,stray,an animal that has strayed (especially a domestic animal)
+73630,streak,a sudden flash (as of lightning)
+73631,streak,a distinctive characteristic; "he has a stubborn streak"; "a streak of wildness"
+73632,streak run,an unbroken series of events; "had a streak of bad luck"; "Nicklaus had a run of birdies"
+73633,streaker,someone who takes off all their clothes and runs naked through a public place
+73634,stream flow,something that resembles a flowing stream in moving continuously; "a stream of people emptied from the terminal"; "the museum had planned carefully for the flow of visitors"
+73635,stream flow current,dominant course (suggestive of running water) of successive events or ideas; "two streams of development run through American history"; "stream of consciousness"; "the flow of thought"; "the current of history"
+73636,stream watercourse,a natural body of running water flowing on or under the earth
+73637,stream_of_consciousness,a literary genre that reveals a character's thoughts and feeling as they develop by means of a long soliloquy
+73638,stream_of_consciousness,the continuous flow of ideas and feelings that constitute an individual's conscious experience
+73639,stream_orchid chatterbox giant_helleborine Epipactis_gigantea,orchid growing along streams or ponds of western North America having leafy stems and 1 greenish-brown and pinkish flower in the axil of each upper leaf
+73640,streambed creek_bed,a channel occupied (or formerly occupied) by a stream
+73641,streamer,light that streams; "streamers of flames"
+73642,streamer banner,a newspaper headline that runs across the full page
+73643,streamer_fly,an artificial fly that has wings extending back beyond the crook of the fishhook
+73644,streamline_flow,flow of a gas or liquid in which the velocity at any point is relatively steady
+73645,streamliner,a streamlined train
+73646,street,the streets of a city viewed as a depressed environment in which there is poverty and crime and prostitution and dereliction; "she tried to keep her children off the street"
+73647,street,a situation offering opportunities; "he worked both sides of the street"; "cooperation is a two-way street"
+73648,street,people living or working on the same street; "the whole street protested the absence of street lights"
+73649,street,the part of a thoroughfare between the sidewalks; the part of the thoroughfare on which vehicles travel; "be careful crossing the street"
+73650,street,a thoroughfare (usually including sidewalks) that is lined with buildings; "they walked the streets of the small town"; "he lives on Nassau Street"
+73651,street_address,the address where a person or organization can be found
+73652,street_arab gamin throwaway,(sometimes offensive) a homeless boy who has been abandoned and roams the streets
+73653,street_cleaner street_sweeper,a worker employed to clean streets (especially one employed by a municipal sanitation department)
+73654,street_clothes,ordinary clothing suitable for public appearances (as opposed to costumes or sports apparel or work clothes etc.)
+73655,street_credibility street_cred cred,credibility among young fashionable urban individuals
+73656,street_fighter,a contestant who is very aggressive and willing to use underhand methods
+73657,street_fighter tough,someone who learned to fight in the streets rather than being formally trained in the sport of boxing
+73658,street_name,an alternative name that a person chooses or is given (especially in inner city neighborhoods); "her street name is Bonbon"
+73659,street_name,slang for something (especially for an illegal drug); "`smack' is a street name for heroin"
+73660,street_name,the name of a brokerage firm in which stock is held on behalf of a customer; "all my stocks are held in street name"
+73661,street_name,the name of a street
+73662,street_sign,a sign visible from the street
+73663,street_smarts,a shrewd ability to survive in a dangerous urban environment
+73664,street_urchin guttersnipe,a child who spends most of his time in the streets especially in slum areas
+73665,streetcar tram tramcar trolley trolley_car,a wheeled vehicle that runs on rails and is propelled by electricity
+73666,streetlight street_lamp,a lamp supported on a lamppost; for illuminating a street
+73667,streetwalker street_girl hooker hustler floozy floozie slattern,a prostitute who attracts customers by walking the streets
+73668,strength,the condition of financial success; "the strength of the company's stock in recent weeks"
+73669,strength,the property of being physically or mentally strong; "fatigue sapped his strength"
+73670,strengthener reinforcement,a device designed to provide additional strength; "the cardboard backing was just a strengthener"; "he used gummed reinforcements to hold the page in his notebook"
+73671,strengthening,becoming stronger
+73672,strengthening,the act of increasing the strength of something
+73673,streptobacillus,any of various rod-shaped Gram-negative bacteria
+73674,streptocarpus,any of various plants of the genus Streptocarpus having leaves in a basal rosette and flowers like primroses
+73675,streptococcal_sore_throat strep_throat streptococcus_tonsilitis septic_sore_throat throat_infection,an infection of the oral pharynx and tonsils by streptococcus
+73676,streptococcus streptococci strep,spherical Gram-positive bacteria occurring in pairs or chains; cause e.g. scarlet fever and tonsillitis
+73677,streptodornase,an enzyme produced by some hemolytic strains of streptococcus that dissolves fibrinous secretions from infections; used medicinally (often in combination with streptokinase)
+73678,streptokinase,an enzyme produced by some strains of streptococcus that can liquefy blood clots by converting plasminogen to plasmin; used medicinally in some cases of myocardial infarction and pulmonary embolism
+73679,streptolysin,any of several hemolysins derived from strains of streptococcus
+73680,streptomyces,aerobic bacteria (some of which produce the antibiotic streptomycin)
+73681,streptomycin,an antibiotic produced by the actinomycete Streptomyces griseus and used to treat tuberculosis
+73682,streptothricin,a basic antibiotic derived from a soil actinomycete
+73683,stress,(physics) force that produces strain on a physical body; "the intensity of stress is expressed in units of force divided by units of area"
+73684,stress emphasis accent,the relative prominence of a syllable or musical note (especially with regard to stress or pitch); "he put the stress on the wrong syllable"
+73685,stress focus,special emphasis attached to something; "the stress was more on accuracy than on speed"
+73686,stress strain,difficulty that causes worry or emotional tension; "she endured the stresses and strains of life"; "he presided over the economy during the period of the greatest stress and danger"- R.J.Samuelson
+73687,stress_incontinence,urinary incontinence that occurs when involuntary pressure is put on the bladder by coughing or laughing or sneezing or lifting or straining
+73688,stress_mark,a mark indicating the stress on a syllable
+73689,stress_test,a test measuring how a system functions when subjected to controlled amounts of stress
+73690,stressor,any agent that causes stress to an organism
+73691,stretch,a large and unbroken expanse or distance; "a stretch of highway"; "a stretch of clear water"
+73692,stretch,a straightaway section of a racetrack
+73693,stretch,extension to or beyond the ordinary limit; "running at full stretch"; "by no stretch of the imagination"; "beyond any stretch of his understanding"
+73694,stretch stint,an unbroken period of time during which you do something; "there were stretches of boredom"; "he did a stretch in the federal penitentiary"
+73695,stretch stretchiness stretchability,the capacity for being stretched
+73696,stretch stretching,exercise designed to extend the limbs and muscles to their full extent
+73697,stretch_mark,a narrow band resulting from tension on the skin (as on abdominal skin after pregnancy)
+73698,stretch_pants,trousers made of a stretchy fabric
+73699,stretch_receptor,a receptor in a muscle that responds to stretching of the muscle tissue
+73700,stretch_reflex myotactic_reflex,reflex contraction of a muscle when an attached tendon is pulled; important in maintaining erect posture
+73701,stretcher,a wooden framework on which canvas is stretched and fixed for oil painting
+73702,stretcher,a mechanical device used to make something larger (as shoes or gloves) by stretching it
+73703,stretcher,a litter for transporting people who are ill or wounded or dead; usually consists of a sheet of canvas stretched between two poles
+73704,stretcher-bearer litter-bearer,one who helps carry a stretcher
+73705,stretcher_party,a party of people with stretchers to carry an injured person
+73706,stretching,act of expanding by lengthening or widening
+73707,streusel,pastry with a topping of streusel
+73708,streusel,a crumbly topping for a pastry
+73709,stria striation,any of a number of tiny parallel grooves such as: the scratches left by a glacier on rocks or the streaks or ridges in muscle tissue
+73710,striate_cortex striate_area first_visual_area area_17_of_Brodmann Brodmann's_area_17,the part of the occipital cortex that receives the fibers of the optic radiation from the lateral geniculate body and is the primary receptive area for vision
+73711,striated_muscle_cell striated_muscle_fiber,an elongated contractile cell in striated muscle tissue
+73712,striated_muscle_tissue,muscle tissue characterized by transverse stripes
+73713,strickle,an implement for sharpening scythes
+73714,strickle,a tool or rod used to level off grain or other granular material that is heaped in a measure
+73715,strickle,a tool used in a foundry to shape a mold in sand
+73716,strictness stringency,conscientious attention to rules and details
+73717,stricture,severe criticism
+73718,stride,significant progress (especially in the phrase `make strides'); "they made big strides in productivity"
+73719,strider,a person who walks rapidly with long steps; "he was such a strider that she couldn't keep up without running"
+73720,stridor,a whistling sound when breathing (usually heard on inspiration); indicates obstruction of the trachea or larynx
+73721,stridulation,a shrill grating or chirping noise made by some insects by rubbing body parts together
+73722,strife,bitter conflict; heated often violent dissension
+73723,strike,an attack that is intended to seize or inflict damage on or destroy an objective; "the strike was scheduled to begin at dawn"
+73724,strike,(baseball) a pitch that the batter swings at and misses, or that the batter hits into foul territory, or that the batter does not swing at but the umpire judges to be in the area over home plate and between the batter's knees and shoulders; "this pitcher throws more strikes than balls"
+73725,strike ten-strike,a score in tenpins: knocking down all ten with the first ball; "he finished with three strikes in the tenth frame"
+73726,strike work_stoppage,a group's refusal to work in protest against low pay or bad work conditions; "the strike lasted more than a month before it was settled"
+73727,strike-slip_fault,a geological fault in which one of the adjacent surfaces appears to have moved horizontally
+73728,strike_leader,someone who leads a strike
+73729,strike_pay,money paid to strikers from union funds
+73730,strike_zone,(baseball) the area over home plate between a batter's knees and shoulders through which a pitch must pass in order to be called a strike
+73731,strikebreaking,confrontational activities intended to break up a strike by workers
+73732,strikeout,an out resulting from the batter getting three strikes
+73733,striker,a forward on a soccer team
+73734,striker,someone receiving intensive training for a naval technical rating
+73735,striker,an employee on strike against an employer
+73736,striker,the part of a mechanical device that strikes something
+73737,string,a tough piece of fiber in vegetables, meat, or other food (especially the tough fibers connecting the two halves of a bean pod)
+73738,string,a linear sequence (as of characters, words, proteins, etc.)
+73739,string,a collection of objects threaded on a single strand
+73740,string,a tightly stretched cord of wire or gut, as a part of an instrument or a tennis racket
+73741,string cosmic_string,(cosmology) a hypothetical one-dimensional subatomic particle having a concentration of energy and the dynamic properties of a flexible loop
+73742,string train,a sequentially ordered set of things or events or ideas in which each successive member is related to the preceding; "a string of islands"; "train of mourners"; "a train of thought"
+73743,string twine,a lightweight cord
+73744,string_bean,green beans with strings that must be removed
+73745,string_cheese,cheese formed in long strings twisted together
+73746,string_of_words word_string linguistic_string,a linear sequence of words as spoken or written
+73747,string_orchestra,an orchestra playing only stringed instruments
+73748,string_quartet string_quartette,an instrumental quartet with 2 violins and a viola and a cello
+73749,string_section strings,the section of an orchestra that plays stringed instruments
+73750,string_theory,(particle physics) a theory that postulates that subatomic particles are one-dimensional strings
+73751,string_tie,a very narrow necktie usually tied in a bow
+73752,stringed_instrument,a musical instrument in which taut strings provide the source of sound
+73753,stringency tightness,a state occasioned by scarcity of money and a shortage of credit
+73754,stringer,a member of a squad on a team; "a first stringer"; "a second stringer"
+73755,stringer,a worker who strings; "a stringer of beads"
+73756,stringer,brace consisting of a longitudinal member to strengthen a fuselage or hull
+73757,stringer,a long horizontal timber to connect uprights
+73758,stringybark,any of several Australian eucalypts having fibrous inner bark
+73759,stringybark_pine Callitris_parlatorei,Australian cypress pine with fibrous inner bark
+73760,strip,a relatively long narrow piece of something; "he felt a flat strip of muscle"
+73761,strip,thin piece of wood or metal
+73762,strip slip,artifact consisting of a narrow flat piece of material
+73763,strip striptease strip_show,a form of erotic entertainment in which a dancer gradually undresses to music; "she did a strip right in front of everyone"
+73764,strip_alert,a state of readiness for domestic defense aircraft; "the Air Force will keep fighters on strip alert at bases around the country"
+73765,strip_cropping,cultivation of crops in strips following the contours of the land to minimize erosion
+73766,strip_lighting,light consisting of long tubes (instead of bulbs) that provide the illumination
+73767,strip_mall,a mercantile establishment consisting of a row of various stores and business and restaurants along a road or busy street; usually opening on a parking lot
+73768,strip_mine,an open mine (usually for coal) where the seams run close to the surface
+73769,strip_miner,a miner who does strip mining
+73770,strip_mining opencast_mining,the mining of ore or coal from an open mine
+73771,strip_poker,poker in which a player's losses are paid by removing an article of clothing
+73772,strip_search,searching someone for concealed weapons or illegal drugs by having them remove their clothes
+73773,strip_steak New_York_strip,steak from upper part of the short loin
+73774,stripe,a piece of braid, usually on the sleeve, indicating military rank or length of service
+73775,stripe,a kind or category; "businessmen of every stripe joined in opposition to the proposal"
+73776,stripe streak bar,a narrow marking of a different color or texture from the background; "a green toad with small black stripes or bars"; "may the Stars and Stripes forever wave"
+73777,stripe_blight,a disease of oats
+73778,striped_bass striper,caught along the Atlantic coast of the United States
+73779,striped_bass striper Roccus_saxatilis rockfish,marine food and game fish with dark longitudinal stripes; migrates upriver to spawn; sometimes placed in the genus Morone
+73780,striped_button_quail Turnix_sylvatica,a variety of button quail having stripes
+73781,striped_coral_root Corallorhiza_striata,nearly leafless wildflower with erect reddish-purple stems bearing racemes of pale pinkish and brownish-striped flowers; western Canada to Mexico
+73782,striped_drum Equetus_pulcher,a kind of drumfish
+73783,striped_gentian Gentiana_villosa,a perennial marsh gentian of eastern North America
+73784,striped_hyena Hyaena_hyaena,of northern Africa and Arabia and India
+73785,striped_killifish mayfish may_fish Fundulus_majalis,black-barred fish of bays and coastal marshes of the Atlantic and Gulf Coast of the United States
+73786,striped_marlin Makaira_mitsukurii,Pacific food and game fish marked with dark blue vertical stripes
+73787,striped_muishond Ictonyx_striata,ferret-sized muishond often tamed
+73788,striped_mullet Mugil_cephalus,most important commercial mullet in eastern United States
+73789,striped_skunk Mephitis_mephitis,most common and widespread North American skunk
+73790,striper,a serviceman who wears stripes on the uniform to indicate rank or years of service; "he's a four-striper"
+73791,striping,the act of marking with stripes
+73792,stripper,a chemical compound used to remove paint or varnish
+73793,stripper stemmer sprigger,a worker who strips the stems from moistened tobacco leaves and binds the leaves together into books
+73794,stripper striptease_artist striptease stripteaser exotic_dancer ecdysiast peeler,a performer who provides erotic entertainment by undressing to music
+73795,stripper_well stripper,an oil well whose production has declined to less than ten barrels a day
+73796,striving nisus pains strain,an effortful attempt to attain a goal
+73797,stroboscope strobe strobe_light,scientific instrument that provides a flashing light synchronized with the periodic movement of an object; can make moving object appear stationary
+73798,stroke,(golf) the unit of scoring in golf is the act of hitting the ball with a club; "Nicklaus won by three strokes"
+73799,stroke,the oarsman nearest the stern of the shell who sets the pace for the rest of the crew
+73800,stroke,a light touch
+73801,stroke,a mark made on a surface by a pen, pencil, or paintbrush; "she applied the paint in careful strokes"
+73802,stroke,any one of the repeated movements of the limbs and body used for locomotion in swimming or rowing
+73803,stroke,a single complete movement
+73804,stroke apoplexy cerebrovascular_accident CVA,a sudden loss of consciousness resulting when the rupture or occlusion of a blood vessel leads to oxygen lack in the brain
+73805,stroke shot,(sports) the act of swinging or striking at a ball with a club or racket or bat or cue or hand; "it took two strokes to get out of the bunker"; "a good shot requires good balance and tempo"; "he left me an almost impossible shot"
+73806,stroke stroking,a light touch with the hands
+73807,stroma,a mass of fungal tissue that has spore-bearing structures embedded in it or on it
+73808,stroma,the dense colorless framework of a chloroplast
+73809,stroma,the supporting tissue of an organ (as opposed to parenchyma)
+73810,strong_breeze,wind moving 25-31 knots; 6 on the Beaufort scale
+73811,strong_gale,wind moving 47-54 knots; 9 on the Beaufort scale
+73812,strong_interaction strong_force color_force,(physics) the interaction that binds protons and neutrons together in the nuclei of atoms; mediated by gluons
+73813,strong_suit,a long suit including high cards
+73814,strongbox deedbox,a strongly made box for holding money or valuables; can be locked
+73815,stronghold fastness,a strongly fortified defensive structure
+73816,strongman,a man who performs feats of strength at a fair or circus
+73817,strongman,a powerful political figure who rules by the exercise of force or violence; "he is determined to bring down the Iraqi strongman"
+73818,strongroom,a burglarproof and fireproof room in which valuables are kept
+73819,strontianite,a mineral consisting of strontium carbonate
+73820,strontium Sr atomic_number_38,a soft silver-white or yellowish metallic element of the alkali metal group; turns yellow in air; occurs in celestite and strontianite
+73821,strontium_90,a radioactive isotope of strontium (with the mass number 90) that is present in the fallout from nuclear explosions; can be assimilated like calcium into bones
+73822,strop,a leather strap used to sharpen razors
+73823,strophanthin,a bitter and very toxic glycoside derived from plants of the genus Strophanthus; in moderate doses it is a cardiac stimulant but in larger doses it is a powerful poison; used in Africa as an arrow poison
+73824,strophanthus,any of various shrubs or small trees of the genus Strophanthus having whorled leaves and showy flowers of various colors in dense and corymbose clusters; some have poisonous seeds
+73825,strophe,one section of a lyric poem or choral ode in classical Greek drama
+73826,structural_formula,an expanded molecular formula showing the arrangement of atoms within the molecule
+73827,structural_gene,a gene that controls the production of a specific protein or peptide
+73828,structural_genomics,the branch of genomics that determines the three-dimensional structures of proteins
+73829,structural_iron,iron that has been cast or worked in structural shapes
+73830,structural_member,support that is a constituent part of any structure or building
+73831,structural_steel,a strong steel that is rolled into shapes that are used in construction
+73832,structuralism structural_anthropology,an anthropological theory that there are unobservable social structures that generate observable social phenomena
+73833,structuralism structural_linguistics,linguistics defined as the analysis of formal structures in a text or discourse
+73834,structuralism structural_sociology,a sociological theory based on the premise that society comes before individuals
+73835,structure,the complex composition of knowledge as elements and their combinations; "his lectures have no structure"
+73836,structure,the manner of construction of something and the arrangement of its parts; "artists must study the structure of the human body"; "the structure of the benzene molecule"
+73837,structure anatomical_structure complex_body_part bodily_structure body_structure,a particular complex anatomical part of a living thing and its construction and arrangement; "he has good bone structure"
+73838,structure construction,a thing constructed; a complex entity constructed of many parts; "the structure consisted of a series of arches"; "she wore her hair in an amazing construction of whirls and ribbons"
+73839,strudel,thin sheet of filled dough rolled and baked
+73840,struggle,strenuous effort; "the struggle to get through the crowd exhausted her"
+73841,struggle battle,an energetic attempt to achieve something; "getting through the crowd was a real struggle"; "he fought a battle for recognition"
+73842,struggler,a person who struggles with difficulties or with great effort
+73843,strum,sound of strumming; "the strum of a guitar"
+73844,strut,brace consisting of a bar or rod used to resist longitudinal compression
+73845,strut prance swagger,a proud stiff pompous gait
+73846,struthiomimus,small light-boned toothless dinosaur resembling an ostrich in size and proportions
+73847,strychnine,an alkaloid plant toxin extracted chiefly from nux vomica; formerly used as a stimulant
+73848,stub,a short piece remaining on a trunk or stem where a branch is lost
+73849,stub check_stub counterfoil,the part of a check that is retained as a record
+73850,stub ticket_stub,a torn part of a ticket returned to the holder as a receipt
+73851,stub_nail,a short thick nail
+73852,stubble,short stiff hairs growing on a man's face when he has not shaved for a few days
+73853,stubbornness bullheadedness obstinacy obstinance pigheadedness self-will,resolute adherence to your own ideas or desires
+73854,stubbornness obstinacy obstinance mulishness,the trait of being difficult to handle or overcome
+73855,stucco,a plaster now made mostly from Portland cement and sand and lime; applied while soft to cover exterior walls or surfaces
+73856,stud he-man macho-man,a man who is virile and sexually active
+73857,stud rivet,ornament consisting of a circular rounded protuberance (as on a vault or shield or belt)
+73858,stud stud_poker,poker in which each player receives hole cards and the remainder are dealt face up; bets are placed after each card is dealt
+73859,stud studhorse,adult male horse kept for breeding
+73860,stud_farm,a farm where horses are bred
+73861,stud_finder,a small permanent magnet in a metal container; when the magnet clicks against the container it indicates that the magnet is directly over an iron nail that holds the wallboard to a stud
+73862,studbook,official record of the pedigree of purebred animals especially horses
+73863,student pupil educatee,a learner who is enrolled in an educational institution
+73864,student_center,a center for student activities at a college or university
+73865,student_lamp,a reading lamp with a flexible neck; used on a desk
+73866,student_teacher practice_teacher,a college student who is teaching under the supervision of a certified teacher in order to qualify for a degree in education
+73867,student_union,a building on a college campus dedicated to social and organizational activities of the student body
+73868,studentship,the position of student
+73869,studio,workplace consisting of a room or building where movies or television shows or radio programs are produced and recorded
+73870,studio,workplace for the teaching or practice of an art; "she ran a dance studio"; "the music department provided studios for their students"; "you don't need a studio to make a passport photograph"
+73871,studio_apartment studio,an apartment with a living space and a bathroom and a small kitchen
+73872,studio_couch day_bed,convertible consisting of an upholstered couch that can be converted into a double bed
+73873,studiousness,diligent study
+73874,study,someone who memorizes quickly and easily (as the lines for a part in a play); "he is a quick study"
+73875,study,a composition intended to develop one aspect of the performer's technique; "a study in spiccato bowing"
+73876,study,a state of deep mental absorption; "she is in a deep study"
+73877,study,a room used for reading and writing and studying; "he knocked lightly on the closed door of the study"
+73878,study work,applying the mind to learning and understanding a subject (especially by reading); "mastering a second language requires a lot of work"; "no schools offer graduate study in interior design"
+73879,study_hall,a period of time during the school day that is set aside for study
+73880,study_hall,a classroom reserved for study
+73881,stuff,information in some unspecified form; "it was stuff I had heard before"; "there's good stuff in that book"
+73882,stuff,a critically important or characteristic component; "suspense is the very stuff of narrative"
+73883,stuff,unspecified qualities required to do or be something; "the stuff of heros"; "you don't have the stuff to be a United States Marine"
+73884,stuff,miscellaneous unspecified objects; "the trunk was full of stuff"
+73885,stuff clobber,informal terms for personal possessions; "did you take all your clobber?"
+73886,stuff stuff_and_nonsense hooey poppycock,senseless talk; "don't give me that stuff"
+73887,stuffed_cabbage,parboiled head of cabbage scooped out and filled with a hash of chopped e.g. beef or ham and baked; served with tomato or cheese sauce
+73888,stuffed_mushroom,mushrooms stuffed with any of numerous mixtures of e.g. meats or nuts or seafood or spinach
+73889,stuffed_peppers,parboiled green peppers stuffed usually with rice and meat and baked briefly
+73890,stuffed_shirt,a bore who is extremely formal, pompous, and old-fashioned
+73891,stuffed_tomato cold_stuffed_tomato,tomato cases filled with various salad mixtures and served cold
+73892,stuffed_tomato hot_stuffed_tomato,tomato cases filled with various mixtures and baked briefly
+73893,stuffer,an advertising circular that is enclosed with other material and (usually) sent by mail
+73894,stuffiness,state of obstruction or stoppage or air in the nose or throat
+73895,stuffiness closeness,the quality of being close and poorly ventilated
+73896,stuffing,padding put in mattresses and cushions and upholstered furniture
+73897,stuffing dressing,a mixture of seasoned ingredients used to stuff meats and vegetables
+73898,stuffing_box packing_box,a small chamber in which packing is compressed around a reciprocating shaft or piston to form a seal
+73899,stuffing_nut packing_nut,a nut used to tighten a stuffing box
+73900,stultification befooling,derision of someone or something as foolish or absurd or inconsistent
+73901,stultification constipation impairment deadening,the act of making something futile and useless (as by routine)
+73902,stumblebum palooka,a second-rate prize fighter
+73903,stumbler tripper,a walker or runner who trips and almost falls
+73904,stumbling_block,any obstacle or impediment
+73905,stump,the part of a limb or tooth that remains after the rest is removed
+73906,stump,(cricket) any of three upright wooden posts that form the wicket
+73907,stump tree_stump,the base part of a tree that remains standing after the tree has been felled
+73908,stump_speech,political oratory
+73909,stumping,campaigning for something by making political speeches (stump speeches)
+73910,stun_gun stun_baton,a weapon designed to disable a victim temporarily by delivering a nonlethal high-voltage electric shock
+73911,stunner,an unexpected and amazing event; "the stunner was what happened on Saturday"
+73912,stunt,a creature (especially a whale) that has been prevented from attaining full growth
+73913,stunt,a difficult or unusual or dangerous feat; usually done to gain attention
+73914,stupa tope,a dome-shaped shrine erected by Buddhists
+73915,stupefaction,a feeling of stupefied astonishment
+73916,stupefaction,the action of stupefying; making dull or lethargic; "the professor was noted for his stupefaction of the students"
+73917,stupid stupid_person stupe dullard dolt pudding_head pudden-head poor_fish pillock,a person who is not very bright; "The economy, stupid!"
+73918,stupidity,a poor ability to understand or to profit from experience
+73919,stupidity betise folly foolishness imbecility,a stupid mistake
+73920,sturdiness,the state of being vigorous and robust
+73921,sturdiness,the property of something that is strongly built
+73922,sturdiness,resoluteness evidenced by strength of character; "sturdiness of moral principle"
+73923,sturgeon,large primitive fishes valued for their flesh and roe; widely distributed in the North Temperate Zone
+73924,sty pigsty pigpen,a pen for swine
+73925,sty stye hordeolum eye_infection,an infection of the sebaceous gland of the eyelid
+73926,style,(botany) the narrow elongated part of the pistil between the ovary and the stigma
+73927,style,editorial directions to be followed in spelling and punctuation and capitalization and typographical display
+73928,style,a particular kind (as to appearance); "this style of shoe is in demand"
+73929,style,a slender bristlelike or tubular process; "a cartilaginous style"
+73930,style_sheet,a sheet summarizing the editorial conventions to be followed in preparing text for publication
+73931,stylet,small needlelike appendage; especially the feeding organ of a tardigrade
+73932,stylist,an artist who is a master of a particular style
+73933,stylite,an early Christian ascetic who lived on top of high pillars
+73934,stylization stylisation,the act of stylizing; causing to conform to a particular style
+73935,styloid_process,extends from the base of the temporal bone
+73936,stylomastoid_vein vena_stylomastoidea,a vein that drains the tympanic cavity and empties into the retromandibular vein
+73937,stylopodium,an enlargement at the base of the style in some Umbelliferae
+73938,stylus,a sharp pointed device attached to the cartridge of a record player
+73939,stylus style,a pointed tool for writing or drawing or engraving; "he drew the design on the stencil with a steel stylus"
+73940,stymie stymy,a situation in golf where an opponent's ball blocks the line between your ball and the hole
+73941,stymie stymy,a thwarting and distressing situation
+73942,styracosaur styracosaurus,an unusual ceratopsian dinosaur having many large spikes around the edge of its bony frill and a long nose horn; late Cretaceous
+73943,styrax,any shrub or small tree of the genus Styrax having fragrant bell-shaped flowers that hang below the dark green foliage
+73944,styrene cinnamene phenylethylene vinylbenzene,a colorless oily liquid; the monomer for polystyrene
+73945,suavity suaveness blandness smoothness,the quality of being bland and gracious or ingratiating in manner
+73946,sub-assembly,a unit assembled separately but designed to fit with other units in a manufactured product
+73947,sub-interval,an interval that is included in another interval
+73948,sub-test,one of a battery of related tests
+73949,subacute_bacterial_endocarditis,a chronic bacterial infection of the endocardium and heart valves; symptoms develop slowly
+73950,subacute_sclerosing_panencephalitis SSPE inclusion_body_encephalitis subacute_inclusion_body_encephalitis sclerosing_leukoencephalitis subacute_sclerosing_leukoencephalitis Bosin's_disease Dawson's_encephalitis Van_Bogaert_encephalitis,a rare chronic progressive encephalitis caused by the measles virus and occurring primarily in children and young adults; death usually occurs within three years; characterized by primary measles infection before the age of two years
+73951,subalpine_larch Larix_lyallii,medium-sized larch of the Rocky Mountains; closely related to Larix occidentalis
+73952,subaltern,a British commissioned army officer below the rank of captain
+73953,subarachnoid_space,a space in the meninges beneath the arachnoid membrane and above the pia mater that contains the cerebrospinal fluid
+73954,subbase,the lowest molding of an architectural base or of a baseboard
+73955,subbing substituting,working as a substitute for someone who is ill or on leave of absence
+73956,subclass,(biology) a taxonomic category below a class and above an order
+73957,subclavian_artery arteria_subclavia,either of two arteries that supply blood to the neck and arms
+73958,subclavian_vein vena_subclavia,a continuation of the axillary vein; joins the internal jugular to form the brachiocephalic vein
+73959,subclinical_absence,a transient impairment of cortical function demonstrable only by 3-per-second brainwave spikes
+73960,subcommittee,a subset of committee members organized for a specific purpose
+73961,subcompact subcompact_car,a car smaller than a compact car
+73962,subconscious_mind subconscious,psychic activity just below the level of awareness
+73963,subconsciousness,a state of mind not immediately available to consciousness
+73964,subcontinent,a large and distinctive landmass (as India or Greenland) that is a distinct part of some continent
+73965,subcontract,a contract assigning to another party some obligations of a prior contract
+73966,subcontractor,someone who enters into a subcontract with the primary contractor
+73967,subculture,a social group within a national culture that has distinctive patterns of behavior and beliefs
+73968,subcutaneous_injection,an injection under the skin
+73969,subdata_base,a subset of data in a database that are used in a specific application
+73970,subdeacon,a clergyman an order below deacon; one of the Holy Orders in the unreformed western Christian church and the eastern Catholic Churches but now suppressed in the Roman Catholic Church
+73971,subdirectory,(computer science) a directory that is listed in another directory
+73972,subdivider,someone who divides parts into smaller parts (especially a divider of land into building sites)
+73973,subdivision,an area composed of subdivided lots
+73974,subdivision,the act of subdividing; division of something previously divided
+73975,subdominant,(music) the fourth note of the diatonic scale
+73976,subduction,a geological process in which one edge of a crustal plate is forced sideways and downward into the mantle below another plate
+73977,subduer surmounter overcomer,someone who overcomes and establishes ascendancy and control by force or persuasion
+73978,subeditor,an assistant editor
+73979,suberic_acid octanedioic_acid,a dicarboxylic acid found in cork
+73980,subfamily,(biology) a taxonomic category below a family
+73981,subfigure,a figure that is a part of another figure
+73982,subgenus,(biology) taxonomic group between a genus and a species
+73983,subgenus_Azalea Azaleastrum subgenus_Azaleastrum,group of evergreen or deciduous shrubs formerly considered a separate genus; now included in the genus Rhododendron
+73984,subgenus_Calliopsis,used in some classification systems for some plants of genus Coreopsis
+73985,subgroup,a distinct and often subordinate group within a group
+73986,subgroup,(mathematics) a subset (that is not empty) of a mathematical group
+73987,subheading subhead,a heading of a subdivision of a text
+73988,subject,(logic) the first term of a proposition
+73989,subject,(grammar) one of the two main constituents of a sentence; the grammatical constituent about which something is predicated
+73990,subject case guinea_pig,a person who is subjected to experimental or other observational procedures; someone who is an object of investigation; "the subjects for this investigation were selected randomly"; "the cases that we studied were drawn from two different communities"
+73991,subject content depicted_object,something (a person or object or scene) selected by an artist or photographer for graphic representation; "a moving picture of a train is more dramatic than a still picture of the same subject"
+73992,subject topic theme,the subject matter of a conversation or discussion; "he didn't want to discuss that subject"; "it was a very sensitive topic"; "his letters were always on the theme of love"
+73993,subjectivism,(philosophy) the doctrine that knowledge and value are dependent on and limited by your subjective experience
+73994,subjectivism,the quality of being subjective
+73995,subjectivist,a person who subscribes to subjectivism
+73996,subjectivity subjectiveness,judgment based on individual personal impressions and feelings and opinions rather than external facts
+73997,subjugation subjection,forced submission to control by others
+73998,subjugator,a conqueror who defeats and enslaves
+73999,subjunctive_mood subjunctive,a mood that represents an act or state (not as a fact but) as contingent or possible
+74000,subkingdom,(biology) a taxonomic group comprising a major division of a kingdom
+74001,sublease sublet,a lease from one lessee to another
+74002,sublieutenant,an officer ranking next below a lieutenant
+74003,sublimate,the product of vaporization of a solid
+74004,sublimation,(chemistry) a change directly from the solid to the gaseous state without becoming liquid
+74005,sublimation,(psychology) modifying the natural expression of an impulse or instinct (especially a sexual one) to one that is socially acceptable
+74006,sublimity,nobility in thought or feeling or style
+74007,sublingual_gland sublingual_salivary_gland,a small salivary gland that produces mucin (the viscous component of saliva); in human beings it is located on either side of the mouth under the tongue
+74008,sublingual_vein vena_sublingualis,a tributary of the lingual vein
+74009,subluxation,partial displacement of a joint or organ
+74010,submachine_gun,machine gun that is a portable automatic firearm
+74011,submarine pigboat sub U-boat,a submersible warship usually armed with torpedoes
+74012,submarine_ball submarine_pitch,a pitch thrown sidearm instead of overhead
+74013,submarine_torpedo,a torpedo designed to be launched from a submarine
+74014,submariner,a member of the crew of a submarine
+74015,submaxillary_gland submaxillary_salivary_gland submandibular_gland submandibular_salivary_gland mandibular_gland,a salivary gland inside the lower jaw on either side that produces most of the nocturnal saliva; discharges saliva into the mouth under the tongue
+74016,submediant,(music) the sixth note of a major or minor scale (or the third below the tonic)
+74017,submergence submerging submersion immersion,sinking until covered completely with water
+74018,submersible,an apparatus intended for use under water
+74019,submersible submersible_warship,a warship designed to operate under water
+74020,submersion immersion ducking dousing,the act of wetting something by submerging it
+74021,submission,the condition of having submitted to control by someone or something else; "the union was brought into submission"; "his submission to the will of God"
+74022,submission,a legal document summarizing an agreement between parties in a dispute to abide by the decision of an arbiter
+74023,submission,an agreement between parties in a dispute to abide by the decision of an arbiter
+74024,submission,(law) a contention presented by a lawyer to a judge or jury as part of the case he is arguing
+74025,submission compliance,the act of submitting; usually surrendering power to another
+74026,submission entry,something (manuscripts or architectural plans and models or estimates or works of art of all genres etc.) submitted for the judgment of others (as in a competition); "several of his submissions were rejected by publishers"; "what was the date of submission of your proposal?"
+74027,submissiveness,the trait of being willing to yield to the will of another person or a superior force etc.
+74028,submitter,someone who yields to the will of another person or force
+74029,submitter,someone who submits something (as an application for a job or a manuscript for publication etc.) for the judgment of others; "he was a prolific submitter of proposals"
+74030,submucosa,the connective tissue beneath mucous membrane
+74031,subnormal,a person of less than normal intelligence
+74032,subnormality,the state of being less than normal (especially with respect to intelligence)
+74033,suborder,(biology) taxonomic group that is a subdivision of an order
+74034,suborder_Ceratosaura,primitive saurischian dinosaurs
+74035,suborder_Pachycephalosaurus,boneheaded dinosaurs; late Cretaceous
+74036,subordinate subsidiary underling foot_soldier,an assistant subject to the authority or control of another
+74037,subordinate_clause dependent_clause,a clause in a complex sentence that cannot stand alone as a complete sentence and that functions within the sentence as a noun or adjective or adverb
+74038,subordinateness subsidiarity,secondary importance
+74039,subordinating_conjunction,the subordination that occurs when a conjunction makes one linguistic unit a constituent of another
+74040,subordinating_conjunction subordinate_conjunction,a conjunction (like `since' or `that' or `who') that introduces a dependent clause
+74041,subordination,the state of being subordinate to something
+74042,subordination,the grammatical relation of a modifying word or phrase to its head
+74043,subordination,the quality of obedient submissiveness
+74044,subornation,underhandedly or improperly inducing someone to do something improper or unlawful
+74045,subornation,perjured testimony that someone was persuaded to give
+74046,subornation_of_perjury,(law) inducing someone to make a false oath as part of a judicial proceeding; "to prove subordination of perjury you must prove the perjury and also prove that the perjured statement was procured by the accused suborner who knew that it would be false"
+74047,subpart,a part of a part
+74048,subphylum,(biology) a taxonomic group ranking between a phylum and a class
+74049,subpoena subpoena_ad_testificandum,a writ issued by court authority to compel the attendance of a witness at a judicial proceeding; disobedience may be punishable as a contempt of court
+74050,subpoena_duces_tecum,a writ issued by a court at the request of one of the parties to a suit; it requires a witness to bring to court or to a deposition any relevant documents under the witness's control
+74051,subpopulation,a population that is part of a larger population
+74052,subrogation,(law) the act of substituting of one creditor for another
+74053,subscriber contributor,someone who contributes (or promises to contribute) a sum of money
+74054,subscriber endorser indorser ratifier,someone who expresses strong approval
+74055,subscriber reader,someone who contracts to receive and pay for a service or a certain number of issues of a publication
+74056,subscript inferior,a character or symbol set or printed or written beneath or slightly below and to the side of another character
+74057,subscription,a payment for consecutive issues of a newspaper or magazine for a given period of time
+74058,subscription,agreement expressed by (or as if expressed by) signing your name
+74059,subscription,a pledged contribution
+74060,subscription,the act of signing your name; writing your signature (as on a document); "the deed was attested by the subscription of his signature"
+74061,subscription_right,the right of a shareholder in a company to subscribe to shares of a new issue of common stock before it is offered to the public
+74062,subscription_warrant,a warrant that expires on a stipulated date
+74063,subsection subdivision,a section of a section; a part of a part; i.e., a part of something already divided
+74064,subservience,the condition of being something that is useful in reaching an end or carrying out a plan; "all his actions were in subservience to the general plan"
+74065,subservience subservientness,in a subservient state
+74066,subset,a set whose members are members of another set; a set contained within another set
+74067,subshrub suffrutex,low-growing woody shrub or perennial with woody base
+74068,subsidiary_company subsidiary,a company that is completely controlled by another company
+74069,subsidiary_ledger,details of an account supporting the amount stated in the general ledger
+74070,subsidization subsidisation,money (or other benefits) obtained as a subsidy
+74071,subsidizer subsidiser,someone who assists or supports by giving a subsidy
+74072,subsidy,a grant paid by a government to an enterprise that benefits the public; "a subsidy for research in artificial intelligence"
+74073,subsistence,a means of surviving; "farming is a hard means of subsistence"
+74074,subsistence,the state of existing in reality; having substance
+74075,subsistence,minimal (or marginal) resources for subsisting; "social security provided only a bare subsistence"
+74076,subsistence_farming,farming that provides for the basic needs of the farmer without surpluses for marketing
+74077,subsoil undersoil,the layer of soil between the topsoil and bedrock
+74078,subspace,a space that is contained within another space
+74079,subspecies race,(biology) a taxonomic group that is a division of a species; usually arises as a consequence of geographical isolation within a species
+74080,substance,material of a particular kind or constitution; "the immune response recognizes invading substances"
+74081,substance,a particular kind or species of matter with uniform properties; "shigella is one of the most toxic substances known to man"
+74082,substance,the real physical matter of which a person or thing consists; "DNA is the substance of our genes"
+74083,substance_abuse drug_abuse habit,excessive use of drugs
+74084,substantia_nigra nucleus_niger locus_niger,a layer of deeply pigmented grey matter in the midbrain; associated with the striate body; is involved in metabolic disturbances associated with Parkinson's disease and with Huntington's disease
+74085,substantiality substantialness solidness,the quality of being substantial or having substance
+74086,substantive,any word or group of words functioning as a noun
+74087,substation,a subsidiary station where electricity is transformed for distribution by a low-voltage network
+74088,substitute replacement,a person or thing that takes or can take the place of another
+74089,substitute reserve second-stringer,an athlete who plays only when a starter on the team is replaced
+74090,substitution exchange commutation,the act of putting one thing or person in the place of another: "he sent Smith in for Jones but the substitution came too late to help"
+74091,substitution permutation transposition replacement switch,an event in which one thing is substituted for another; "the replacement of lost blood by a transfusion of donor blood"
+74092,substitution_class paradigm,the class of all items that can be substituted into the same position (or slot) in a grammatical sentence (are in paradigmatic relation with one another)
+74093,substrate,the substance that is acted upon by an enzyme or ferment
+74094,substrate substratum,a surface on which an organism grows or is attached; "the gardener talked about the proper substrate for acid-loving plants"
+74095,substrate substratum,any stratum or layer lying underneath another
+74096,substrate substratum,an indigenous language that contributes features to the language of an invading people who impose their language on the indigenous population; "the Celtic languages of Britain are a substrate for English"
+74097,substring,a string that is part of a longer string
+74098,subsumption,incorporating something under a more general category
+74099,subsystem,a system that is part of some larger system
+74100,subterfuge blind,something intended to misrepresent the true nature of an activity; "he wasn't sick--it was just a subterfuge"; "the holding company was just a blind"
+74101,subthalamic_nucleus,an oval mass of grey matter located in the caudal part of the subthalamus; associated with the striate body
+74102,subthalamus,the ventral part of the thalamus
+74103,subtilin,a polypeptide antibiotic (similar to bacitracin) obtained from a soil bacterium
+74104,subtitle,secondary or explanatory title
+74105,subtitle caption,translation of foreign dialogue of a movie or TV program; usually displayed at the bottom of the screen
+74106,subtlety niceness,the quality of being difficult to detect or analyze; "you had to admire the subtlety of the distinctions he drew"
+74107,subtonic leading_tone,(music) the seventh note of the diatonic scale
+74108,subtopia,monotonous urban sprawl of standardized buildings
+74109,subtotal,the sum of part of a group of numbers
+74110,subtracter,a person who subtracts numbers
+74111,subtracter,a machine that subtracts numbers
+74112,subtraction deduction,the act of subtracting (removing a part from the whole); "he complained about the subtraction of money from their paychecks"
+74113,subtraction minus,an arithmetic operation in which the difference between two numbers is calculated; "the subtraction of three from four leaves one"; "four minus three equals one"
+74114,subtrahend,the number to be subtracted from the minuend
+74115,subtreasury,a subordinate treasury or place of deposit
+74116,subtropics semitropics,regions adjacent to the tropics
+74117,suburb suburbia suburban_area,a residential district located on the outskirts of a city
+74118,suburbanite,a resident of a suburb
+74119,suburbia,suburbanites considered as a cultural class or subculture
+74120,subvention,grant of financial aid as from a government to an educational institution
+74121,subvention,the act or process of providing aid or help of any sort
+74122,subversion subversive_activity,the act of subverting; as overthrowing or destroying a legally constituted government
+74123,subvocalizer subvocaliser,someone who articulates speech without uttering sounds
+74124,subway_fare,the fare charged for riding a subway train
+74125,subway_station,a terminal where subways load and unload passengers
+74126,subway_token,a token that is used to pay for entry to the subway system
+74127,subway_train,a train that runs in a subway system
+74128,subwoofer,a loudspeaker that is designed to reproduce very low bass frequencies
+74129,succedaneum,(medicine) something that can be used as a substitute (especially any medicine that may be taken in place of another)
+74130,success,a state of prosperity or fame; "he is enjoying great success"; "he does not consider wealth synonymous with success"
+74131,success,an event that accomplishes its intended purpose; "let's call heads a success and tails a failure"; "the election was a remarkable success for the Whigs"
+74132,success,an attainment that is successful; "his success in the marathon was unexpected"; "his new play was a great success"
+74133,succession,a group of people or things arranged or following in order; "a succession of stalls offering soft drinks"; "a succession of failures"
+74134,succession ecological_succession,(ecology) the gradual and orderly process of change in an ecosystem brought about by the progressive replacement of one community by another until a stable climax is established
+74135,succession sequence,the action of following in order; "he played the trumps in sequence"
+74136,succession taking_over,acquisition of property by descent or by will
+74137,successor,a thing or person that immediately replaces something or someone
+74138,successor heir,a person who inherits some title or office
+74139,successor replacement,a person who follows next in order; "he was President Lincoln's successor"
+74140,succinic_acid,a dicarboxylic acid (C4H6O4) active in metabolic processes
+74141,succinylcholine,a muscle relaxant for striated muscle that is used as an adjunct to anesthesia during certain surgical procedures
+74142,succorer succourer,someone who gives help in times of need or distress or difficulty
+74143,succotash,fresh corn and lima beans with butter or cream
+74144,succubus succuba,a female demon believed to have sexual intercourse with sleeping men
+74145,succulence succulency juiciness,a juicy appetizingness
+74146,succulent,a plant adapted to arid conditions and characterized by fleshy water-storing tissues that act as water reservoirs
+74147,succussion,shaking a person to determine whether a large amount of liquid is present in a body cavity
+74148,sucker,a shoot arising from a plant's roots
+74149,sucker,a drinker who sucks (as at a nipple or through a straw)
+74150,sucker,flesh of any of numerous North American food fishes with toothless jaws
+74151,sucker,an organ specialized for sucking nourishment or for adhering to objects by suction
+74152,sucker,mostly North American freshwater fishes with a thick-lipped mouth for feeding by suction; related to carps
+74153,sucker_punch,an unexpected punch
+74154,sucking suck suction,the act of sucking
+74155,sucking_pig,an unweaned piglet
+74156,suckling,a young mammal that has not been weaned
+74157,suckling lactation,feeding an infant by giving suck at the breast
+74158,suckling_reflex,reflex behavior in newborn mammals; includes finding and grasping the nipple in the mouth and sucking on it and swallowing the milk
+74159,sucralfate Carafate,medicine consisting of a tablet (trade name Carafate) used to treat peptic ulcers; said to bind to the ulcer site and coat it
+74160,sucre,the basic unit of money in Ecuador; equal to 100 centavos
+74161,sucrose saccharose,a complex carbohydrate found in many plants and used as a sweetening agent
+74162,suction,a force over an area produced by a pressure difference
+74163,suction_cup,a cup-shaped device (made of rubber, glass, or plastic) that produces a partial vacuum; used to adhere or draw something to a surface
+74164,suction_curettage vacuum_aspiration,a method of induced abortion; prior to the 14th week of gestation the embryo and placenta are removed by applying suction to the dilated cervix
+74165,suction_pump,a pump for raising fluids by suction
+74166,suction_stop click,a stop consonant made by the suction of air into the mouth (as in Bantu)
+74167,sudatorium sudatory,a bathhouse for hot air baths or steam baths
+74168,sudden_death,(sports) overtime in which play is stopped as soon as one contestant scores; e.g. football and golf
+74169,sudden_infant_death_syndrome SIDS infant_death crib_death cot_death,sudden and unexpected death of an apparently healthy infant during sleep
+74170,sudoku,a number puzzle in which the numbers 1 through 9 must be placed into a grid of cells so that each row or column contains only one of each number
+74171,sudorific sudatory,a medicine that causes or increases sweating
+74172,sudra shudra,the lowest of the four varnas: the servants and workers of low status
+74173,suds,a dysphemism for beer (especially for lager that effervesces)
+74174,suede suede_leather,leather with a napped surface
+74175,suede_cloth suede,a fabric made to resemble suede leather
+74176,suer petitioner,someone who petitions a court for redress of a grievance or recovery of a right
+74177,suet,hard fat around the kidneys and loins in beef and sheep
+74178,suet_pudding,a sweet or savory pudding made with suet and steamed or boiled
+74179,sufferance,patient endurance especially of pain or distress
+74180,suffering hurt,feelings of mental or physical pain
+74181,suffering woe,misery resulting from affliction
+74182,sufficiency,sufficient resources to provide comfort and meet obligations; "her father questioned the young suitor's sufficiency"
+74183,sufficiency adequacy,the quality of being sufficient for the end in view; "he questioned the sufficiency of human intelligence"
+74184,suffix postfix,an affix that is added at the end of the word
+74185,suffixation,formation of a word by means of a suffix
+74186,suffocation asphyxiation,the condition of being deprived of oxygen (as by having breathing stopped); "asphyxiation is sometimes used as a form of torture"
+74187,suffocation asphyxiation,killing by depriving of oxygen
+74188,suffragan suffragan_bishop,an assistant or subordinate bishop of a diocese
+74189,suffragette,a woman advocate of women's right to vote (especially a militant advocate in the United Kingdom at the beginning of the 20th century)
+74190,suffragism,the belief that the right to vote should be extended (as to women)
+74191,suffragist,an advocate of the extension of voting rights (especially to women)
+74192,sugar refined_sugar,a white crystalline carbohydrate used as a sweetener and preservative
+74193,sugar-bush sugar_sumac Rhus_ovata,evergreen shrub of southeastern United States with spikes of reddish yellow flowers and glandular hairy fruits
+74194,sugar_beet,form of the common beet having a sweet white root from which sugar is obtained
+74195,sugar_beet,white-rooted beet grown as a source of sugar
+74196,sugar_bowl,a dish in which sugar is served
+74197,sugar_candy,made by boiling pure sugar until it hardens
+74198,sugar_cookie,cookies sprinkled with granulated sugar
+74199,sugar_daddy,a wealthy older man who gives a young person expensive gifts in return for friendship or intimacy
+74200,sugar_maple rock_maple Acer_saccharum,maple of eastern and central North America having three-lobed to five-lobed leaves and hard close-grained wood much used for cabinet work especially the curly-grained form; sap is chief source of maple syrup and maple sugar; many subspecies
+74201,sugar_palm gomuti gomuti_palm Arenga_pinnata,Malaysian feather palm with base densely clothed with fibers; yields a sweet sap used in wine and trunk pith yields sago
+74202,sugar_refinery,a refinery for sugar
+74203,sugar_snap_pea,green peas with edible pods that are very crisp and not flat
+74204,sugar_snap_pea snap_pea,variety of pea plant producing peas having crisp rounded edible pods
+74205,sugar_spoon sugar_shell,a spoon for serving sugar; often made in the shape of a seashell
+74206,sugar_syrup,sugar and water and sometimes corn syrup boiled together; used as sweetening especially in drinks
+74207,sugar_water,water sweetened with sugar
+74208,sugarberry Celtis_laevigata,deciduous shade tree with small black berries; southern United States; yields soft yellowish wood
+74209,sugarberry hackberry,small edible dark purple to black berry with large pits; southern United States
+74210,sugarcane sugar_cane,juicy canes whose sap is a source of molasses and commercial sugar; fresh canes are sometimes chewed for the juice
+74211,sugarcane sugar_cane Saccharum_officinarum,tall tropical southeast Asian grass having stout fibrous jointed stalks; sap is a chief source of sugar
+74212,sugariness,the sweetness of sugar
+74213,sugarloaf sugar_loaf loaf_sugar,a large conical loaf of concentrated refined sugar
+74214,sugarplum,any of various small sugary candies
+74215,suggester proposer,someone who advances a suggestion or proposal; "the suggester of this absurd strategy was a fool"
+74216,suggestibility,susceptibility or responsiveness to suggestion
+74217,suggestion,an idea that is suggested; "the picnic was her suggestion"
+74218,suggestion,the sequential mental process in which one thought leads to another by association
+74219,suggestion prompting,persuasion formulated as a suggestion
+74220,suggestion proposition proffer,a proposal offered for acceptance or rejection; "it was a suggestion we couldn't refuse"
+74221,suicide felo-de-se,a person who kills himself intentionally
+74222,suicide self-destruction self-annihilation,the act of killing yourself; "it is a crime to commit suicide"
+74223,suicide_bomber,a terrorist who blows himself up in order to kill or injure other people
+74224,suicide_bombing,a terrorist bombing carried out by someone who does not hope to survive it
+74225,suicide_mission martyr_operation sacrifice_operation,killing or injuring others while annihilating yourself; usually accomplished with a bomb
+74226,suicide_pact,an agreement by two or more people to commit suicide together at a given place and time; "the two lovers killed themselves in a suicide pact"
+74227,suicide_pill,a poison pill with potentially catastrophic implications for the company it is intended to protect
+74228,suicide_squeeze_play suicide_squeeze,the runner on third base starts home as the pitcher delivers the ball
+74229,suit,(slang) a businessman dressed in a business suit; "all the suits care about is the bottom line"
+74230,suit,a petition or appeal made to a person of superior status or rank
+74231,suit,playing card in any of four sets of 13 cards in a pack; each set has its own symbol and color; "a flush is five cards in the same suit"; "in bridge you must follow suit"; "what suit is trumps?"
+74232,suit suit_of_clothes,a set of garments (usually including a jacket and trousers or skirt) for outerwear all of the same fabric and color; "they buried him in his best suit"
+74233,suitability suitableness,the quality of having the properties that are right for a specific purpose; "an important requirement is suitability for long trips"
+74234,suite,a matching set of furniture
+74235,suite,a musical composition of several movements only loosely connected
+74236,suite rooms,apartment consisting of a series of connected rooms used as a living unit (as in a hotel)
+74237,suiting,a fabric used for suits
+74238,suitor suer wooer,a man who courts a woman; "a suer for the hand of the princess"
+74239,sukiyaki,thin beef strips (or chicken or pork) cooked briefly at the table with onions and greens and soy sauce
+74240,suksdorfia,any of several American plants of the genus Suksdorfia having orbicular to kidney-shaped somewhat succulent leaves and white or rose or violet flowers in terminal panicles
+74241,sulcus,(anatomy) any of the narrow grooves in an organ or tissue especially those that mark the convolutions on the surface of the brain
+74242,sulfa_drug sulfa sulpha sulfonamide,antibacterial consisting of any of several synthetic organic compounds capable of inhibiting the growth of bacteria that require PABA
+74243,sulfacetamide Sulamyd,a topical sulfonamide (trade name Sulamyd) used to treat eye infections
+74244,sulfadiazine,a sulfa drug used in treating meningitis and pneumonia and other infections
+74245,sulfamethazine sulfamezathine,a sulfa drug used like sulfadiazine and also in veterinary medicine
+74246,sulfamethoxazole Gantanol,a sulfonamide (trade name Gantanol) used to treat infections (especially infections of the urinary tract)
+74247,sulfanilamide,a white odorless crystalline sulfa drug; the parent compound of most of the sulfa drugs
+74248,sulfanilic_acid sulphanilic_acid,a crystalline acid made from aniline and used as a dye
+74249,sulfapyridine,sulfa drug derived from pyridine and sulfanilamide
+74250,sulfate sulphate,a salt or ester of sulphuric acid
+74251,sulfide sulphide,a compound of sulphur and some other element that is more electropositive
+74252,sulfisoxazole Gantrisin,a sulfonamide (trade name Gantrisin) used to treat infections of the urinary tract
+74253,sulfonate,a salt of sulphonic acid
+74254,sulfonic_acid sulphonic_acid,an acid derived from sulphuric acid
+74255,sulfonylurea,antidiabetic consisting of any of several drugs that reduce the level of glucose in the blood; used to treat diabetes mellitus
+74256,sulfur S sulphur atomic_number_16,an abundant tasteless odorless multivalent nonmetallic element; best known in yellow crystals; occurs in many sulphide and sulphate minerals and even in native form (especially in volcanic regions)
+74257,sulfur_dioxide sulphur_dioxide,a colorless toxic gas (SO2) that occurs in the gases from volcanoes; used in many manufacturing processes and present in industrial emissions; causes acid rain
+74258,sulfur_hexafluoride sulphur_hexafluoride,a colorless gas that is soluble in alcohol and ether; a powerful greenhouse gas widely used in the electrical utility industry
+74259,sulfur_oxide sulphur_oxide,any of several oxides of sulphur
+74260,sulfur_paintbrush Castilleja_sulphurea,plant of moist highland meadows having ragged clusters of pale yellow flowers
+74261,sulindac Clinoril,a nonsteroidal anti-inflammatory drug (trade name Clinoril)
+74262,sulk sulkiness,a mood or display of sullen aloofness or withdrawal; "stayed home in a sulk"
+74263,sulkiness huffishness,a feeling of sulky resentment
+74264,sulkiness sullenness moroseness sourness,a sullen moody resentful disposition
+74265,sulky,a light two-wheeled vehicle for one person; drawn by one horse
+74266,sulphur-crested_cockatoo Kakatoe_galerita Cacatua_galerita,white cockatoo with a yellow erectile crest
+74267,sulphur_butterfly sulfur_butterfly,any of numerous yellow or orange butterflies
+74268,sulphur_mine sulfur_mine,a mine where sulphur is dug from the ground
+74269,sultan grand_Turk,the ruler of a Muslim country (especially of the former Ottoman Empire)
+74270,sultana,pale yellow seedless grape used for raisins and wine
+74271,sultanate,country or territory ruled by a sultan
+74272,sultriness,oppressively hot and humid weather
+74273,sultriness,the quality of expressing or arousing sexual desire; "the sultriness of her look was unmistakable"; "the sultriness of lust was in the air"
+74274,sum amount total,a quantity obtained by the addition of a group of numbers
+74275,sum sum_of_money amount amount_of_money,a quantity of money; "he borrowed a large sum"; "the amount he had in cash was insufficient"
+74276,sum summation sum_total,the final aggregate; "the sum of all our troubles did not equal the misery they suffered"
+74277,sum total totality aggregate,the whole amount
+74278,sumac,wood of a sumac
+74279,sumac sumach shumac,a shrub or tree of the genus Rhus (usually limited to the non-poisonous members of the genus)
+74280,summarization summarisation,the act of preparing a summary (or an instance thereof); stating briefly and succinctly
+74281,summary sum-up,a brief statement that presents the main points in a concise form; "he gave a summary of the conclusions"
+74282,summary_judgment summary_judgement judgment_on_the_pleadings judgement_on_the_pleadings,a judgment rendered by the court prior to a verdict because no material issue of fact exists and one party or the other is entitled to a judgment as a matter of law
+74283,summation,(physiology) the process whereby multiple stimuli can produce a response (in a muscle or nerve or other part) that one stimulus alone does not produce
+74284,summation addition plus,the arithmetic operation of summing; calculating the sum of two or more numbers; "the summation of four and three gives seven"; "four plus three equals seven"
+74285,summation summing_up rundown,a concluding summary (as in presenting a case before a law court)
+74286,summer,the period of finest development, happiness, or beauty; "the golden summer of his life"
+74287,summer summertime,the warmest season of the year; in the northern hemisphere it extends from the summer solstice to the autumnal equinox; "they spent a lazy summer at the shore"
+74288,summer_cypress burning_bush fire_bush fire-bush belvedere Bassia_scoparia Kochia_scoparia,densely branched Eurasian plant; foliage turns purple-red in autumn
+74289,summer_flounder Paralichthys_dentatus,flounder of eastern coast of North America
+74290,summer_house,a country house (usually located in the country) that provides a cool place to live in the summer
+74291,summer_hyacinth cape_hyacinth Hyacinthus_candicans Galtonia_candicans,southern African herb with white bell-shaped flowers
+74292,summer_savory Satureja_hortensis Satureia_hortensis,erect annual herb with oval leaves and pink flowers; used to flavor e.g. meats or soups or salads; southeastern Europe and naturalized elsewhere
+74293,summer_savory summer_savoury,herb with delicately flavored leaves with many uses
+74294,summer_school,an academic session during the summer; usually for remedial or supplementary study
+74295,summer_solstice June_21 midsummer,June 21, when the sun is at its northernmost point
+74296,summer_squash,any of various fruits of the gourd family that mature during the summer; eaten while immature and before seeds and rind harden
+74297,summer_squash summer_squash_vine Cucurbita_pepo_melopepo,any of various usually bushy plants producing fruit that is eaten while immature and before the rind or seeds harden
+74298,summer_stock,theatrical productions performed by a stock company during the summer
+74299,summer_tanager summer_redbird Piranga_rubra,of middle and southern United States; male is deep rose-red the female mostly yellow
+74300,summercaters,(Maine colloquial) temporary summer residents of coastal Maine
+74301,summit summit_meeting,a meeting of heads of governments
+74302,summons,an order to appear in person at a given place and time
+74303,summons process,a writ issued by authority of law; usually compels the defendant's attendance in a civil suit; failure to appear results in a default judgment against the defendant
+74304,summum_bonum,the supreme good in which all moral values are included or from which they are derived
+74305,sumo,a Japanese form of wrestling; you lose if you are forced out of a small ring or if any part of your body (other than your feet) touches the ground
+74306,sumo_ring,the circular ring in which Sumo wrestlers compete
+74307,sumo_wrestler,a wrestler who participates in sumo (a Japanese form of wrestling); "sumo wrestlers are large heavy men"
+74308,sump,an oil reservoir in an internal combustion engine
+74309,sump,a well or other hole in which water has collected
+74310,sump_pump,a suction pump for removing liquid from a sump
+74311,sumpsimus,a correct expression that takes the place of a popular but incorrect expression; "he preferred his erroneous but pleasing mumpsimus to the correct sumpsimus"
+74312,sun,a person considered as a source of warmth or energy or glory etc
+74313,sun,any star around which a planetary system revolves
+74314,sun Sun,the star that is the source of light and heat for the planets in the solar system; "the sun contains 99.85% of the mass in the solar system"; "the Earth revolves around the Sun"
+74315,sun_bathing,immersing the body in sunlight
+74316,sun_dance,a ceremonial dance performed by Amerindians at the summer solstice
+74317,sun_deck,an unroofed deck
+74318,sun_gear,the central gear in an epicyclic train
+74319,sun_god,a god that personifies the sun or is otherwise associated with the sun
+74320,sun_parlor sun_parlour sun_porch sunporch sunroom sun_lounge solarium,a room enclosed largely with glass and affording exposure to the sun
+74321,sun_pitcher,any of several herbs of Guiana highlands having racemes of nodding white or pink flowers; trap and digest insects in pitcher-shaped leaves with spoon-shaped caps
+74322,sun_protection_factor SPF,the degree to which a sunscreen protects the skin from the direct rays of the sun
+74323,sun_spurge wartweed wartwort devil's_milk Euphorbia_helioscopia,not unattractive European weed whose flowers turn toward the sun
+74324,sun_tea,tea made by exposing tea leaves steeped in water to the direct rays of the sun; usually served with ice
+74325,sun_visor,a shade (sometimes of green mica) affixed above the windshield of an automobile
+74326,sun_worshiper,someone who worships the sun
+74327,sunbather,someone who basks in the sunshine in order to get a suntan
+74328,sunbeam sunray,a ray of sunlight
+74329,sunbonnet,a large bonnet that shades the face; worn by girls and women
+74330,sunburn erythema_solare,redness of the skin caused by exposure to the rays of the sun
+74331,sunburst,a sudden emergence of the sun from behind clouds
+74332,sunburst,a design consisting of a central disk resembling the sun and rays emanating from it
+74333,sunburst,a jeweled brooch with a pattern resembling the sun
+74334,sunburst_pleat sunray_pleat,knife pleat cut on the bias to produce a flared effect
+74335,sundew sundew_plant daily_dew,any of various bog plants of the genus Drosera having leaves covered with sticky hairs that trap and digest insects; cosmopolitan in distribution
+74336,sundial,timepiece that indicates the daylight hours by the shadow that the gnomon casts on a calibrated dial
+74337,sundowner,a tramp who habitually arrives at sundown
+74338,sundowner,a drink taken at sundown
+74339,sundress,a light loose sleeveless summer dress with a wide neckline and thin shoulder straps that expose the arms and shoulders
+74340,sundries,miscellaneous objects too numerous or too small to be specified
+74341,sundrops Oenothera_fruticosa,a day-flowering biennial or perennial of the genus Oenothera
+74342,sunfish,the lean flesh of any of numerous American perch-like fishes of the family Centrarchidae
+74343,sunfish centrarchid,small carnivorous freshwater percoid fishes of North America usually having a laterally compressed body and metallic luster: crappies; black bass; bluegills; pumpkinseed
+74344,sunflower helianthus,any plant of the genus Helianthus having large flower heads with dark disk florets and showy yellow rays
+74345,sunflower_oil sunflower-seed_oil,oil from sunflower seeds
+74346,sunflower_seed,edible seed of sunflowers; used as food and poultry feed and as a source of oil
+74347,sunglass,a convex lens that focuses the rays of the sun; used to start a fire
+74348,sunglasses dark_glasses shades,(plural) spectacles that are darkened or polarized to protect the eyes from the glare of the sun; "he was wearing a pair of mirrored shades"
+74349,sunhat sun_hat,a hat with a broad brim that protects the face from direct exposure to the sun
+74350,sunk_fence ha-ha haw-haw,a ditch with one side being a retaining wall; used to divide lands without defacing the landscape
+74351,sunken_arch fallen_arch,an instep flattened so the entire sole rests on the ground
+74352,sunken_garden,a garden set below the level of the ground surrounding it
+74353,sunlamp sun_lamp sunray_lamp sun-ray_lamp,a mercury-vapor lamp used in medical or cosmetic treatments
+74354,sunlight sunshine sun,the rays of the sun; "the shingles were weathered by the sun and wind"
+74355,sunniness,lightness created by sunlight
+74356,sunray Enceliopsis_nudicaulis,herb having a basal cluster of grey-green leaves and leafless stalks each with a solitary broad yellow flower head; desert areas Idaho to Arizona
+74357,sunray sun-ray,a ray of artificial ultraviolet light from a sunray lamp
+74358,sunrise,atmospheric phenomena accompanying the daily appearance of the sun
+74359,sunrise,the daily event of the sun rising above the horizon
+74360,sunrise_industry,a new industry that is expanding rapidly (especially telecommunications or electronics)
+74361,sunroof sunshine-roof,an automobile roof having a sliding or raisable panel; "`sunshine-roof' is a British term for `sunroof'"
+74362,sunscreen sunblock sun_blocker,a cream spread on the skin; contains a chemical (as PABA) to filter out ultraviolet light and so protect from sunburn
+74363,sunset,atmospheric phenomena accompanying the daily disappearance of the sun
+74364,sunset,the daily event of the sun sinking below the horizon
+74365,sunset sundown,the time in the evening at which the sun begins to fall below the horizon
+74366,sunspot macula,a cooler darker spot appearing periodically on the sun's photosphere; associated with a strong magnetic field
+74367,sunstone aventurine,a translucent quartz spangled with bits of mica or other minerals
+74368,sunstroke insolation thermic_fever siriasis,sudden prostration due to exposure to the sun or excessive heat
+74369,sunsuit,a child's garment consisting of a brief top and shorts
+74370,suntrap solar_trap,a terrace or garden oriented to take advantage of the sun while protected from cold winds
+74371,super_heavyweight,an amateur boxer who weighs more than 201 pounds
+74372,superannuation,the act of discharging someone because of age (especially to cause someone to retire from service on a pension)
+74373,superbug,a strain of bacteria that is resistant to all antibiotics
+74374,superbug Bemisia_tabaci poinsettia_strain,a strain of pest accidentally imported into Florida from the Middle East then spread to California where it is a very serious pest feeding on almost all vegetable crops and poinsettias
+74375,supercargo,an officer on a merchant ship in charge of the cargo and its sale and purchase
+74376,supercharger,compressor that forces increased oxygen into the cylinders of an internal-combustion engine
+74377,superclass,(biology) a taxonomic class below a phylum and above a class
+74378,superclass_Myriapoda,used in some classifications to encompass the millipedes (Diplopoda) and centipedes (Chilopoda); formerly a large taxon including also the Pauropoda and Symphyla; the term Myriapoda now usually used synonymously with Diplopoda and limited to the millipedes
+74379,supercomputer,a mainframe computer that is one of the most powerful available at a given time
+74380,superconducting_supercollider,a collider that operates at very low temperatures
+74381,superconductivity,the disappearance of electrical resistance at very low temperatures
+74382,superego,(psychoanalysis) that part of the unconscious mind that acts as a conscience
+74383,supererogation,an effort above and beyond the call of duty
+74384,superfamily,(biology) a taxonomic group ranking below an order but above a family
+74385,superfecta,a bet that you can pick the first four finishers in a race in the right order
+74386,superfecundation,fertilization of two or more ova released during the same menstrual cycle by sperm from separate acts of coitus (especially by different males)
+74387,superfetation,fertilization of a second ovum after a pregnancy has begun; results in two fetuses of different ages in the uterus at the same time; "superfetation is normal in some animal species"
+74388,superficial_epigastric_vein vena_epigastrica_superficialis,empties into the great saphenous vein
+74389,superficial_middle_cerebral_vein,a large vein along the line of the Sylvian fissure to the cavernous sinus
+74390,superficial_temporal_vein,join the middle temporal vein to empty into the retromandibular vein
+74391,superficiality,shallowness in terms of affecting only surface layers of something; "he ignored the wound because of its superficiality"
+74392,superficiality shallowness,lack of depth of knowledge or thought or feeling
+74393,superficies,the purely external aspect of a thing; superficial appearance; "the audience was held by the substance of the play rather than by the superficies of the production"-R.W.Speaight
+74394,superficies,outer surface of an area or a body
+74395,supergiant,an extremely bright star of very large diameter and low density
+74396,supergrass grass,a police informer who implicates many people
+74397,superhigh_frequency SHF,3 to 30 gigahertz
+74398,superhighway information_superhighway,an extensive electronic network (such as the internet) used for the rapid transfer of sound and video and graphics in digital form
+74399,superinfection,infection that occurs while you are being treated for another infection
+74400,superintendent super,a caretaker for an apartment house; represents the owner as janitor and rent collector
+74401,superior,the head of a religious community
+74402,superior higher-up superordinate,one of greater rank or station or quality
+74403,superior_alveolar_artery arteria_alveolaris_superior,the alveolar artery that supplies the upper teeth
+74404,superior_cerebellar_artery,the superior branch of the cerebellar artery
+74405,superior_cerebral_vein vena_cerebrum_superior,a cerebral vein that drains the dorsal convexity of the cerebral hemisphere and empties into the cavernous sinus
+74406,superior_colliculus,an essential visual center between the retina and the striate cortex
+74407,superior_conjunction,(astronomy) the alignment of the Earth and a planet on the opposite side of the sun
+74408,superior_court,any court that has jurisdiction above an inferior court
+74409,superior_epigastric_veins venae_epigastricae_superiores,veins that accompany the superior epigastric artery
+74410,superior_labial_artery arteria_labialis_superior,an artery that is a branch of the facial artery that supplies the upper lip
+74411,superior_labial_vein vena_labialis_superior,a tributary of the facial vein that drains the upper lip
+74412,superior_mesenteric_artery,originates from the upper part of the aorta that supplies the small intestines and the cecum and the colon
+74413,superior_ophthalmic_vein,a vein that begins at the inner angle of the eye socket and passes through the superior orbital fissure to empty into the cavernous sinus
+74414,superior_planet,any of the planets whose orbit lies outside the earth's orbit
+74415,superior_pulmonary_vein vena_pulmonalis_superior,either of two pulmonary veins (left and right) returning blood from the superior lobes of the lungs
+74416,superior_rectus_muscle superior_rectus rectus_superior,the ocular muscle whose contraction turns the eyeball upward and medially
+74417,superior_skill,more than ordinary ability
+74418,superior_thalamostriate_vein,a long vein that helps to form the internal cerebral vein
+74419,superior_thyroid_vein,a vein on each side that drains the upper part of the thyroid and empties into the internal jugular vein
+74420,superior_vena_cava precava,receives blood from the head and arms and chest and empties into the right atrium of the heart; formed from the azygos and both brachiocephalic veins
+74421,superiority,displaying a sense of being better than others; "he hated the white man's superiority and condescension"
+74422,superiority favorable_position favourable_position,the quality of being at a competitive advantage
+74423,superiority high_quality,the quality of being superior
+74424,superiority_complex,an exaggerated estimate of your own value and importance
+74425,superlative,an exaggerated expression (usually of praise); "the critics lavished superlatives on it"
+74426,superlative superlative_degree,the superlative form of an adjective or adverb; "`fastest' is the superlative of the adjective `fast'"; "`least famous' is the superlative degree of the adjective `famous'"; "`most surely' is the superlative of the adverb `surely'"
+74427,supermarket,a large self-service grocery store selling groceries and dairy products and household goods
+74428,supermarketer supermarketeer,an operator of a supermarket
+74429,supermodel,a fashion model who has attained the status of a celebrity
+74430,supermom,an informal term for a mother who can combine childcare and full-time employment
+74431,supernatant,the clear liquid that lies above a sediment or precipitate
+74432,supernatural occult,supernatural forces and events and beings collectively; "She doesn't believe in the supernatural"
+74433,supernaturalism,a belief in forces beyond ordinary human understanding
+74434,supernaturalism supernaturalness,the quality of being attributed to power that seems to violate or go beyond natural forces
+74435,supernova,a star that explodes and becomes extremely luminous in the process
+74436,supernumerary,a person serving no apparent function; "reducing staff is difficult because our employees include no supernumeraries"
+74437,supernumerary spear_carrier extra,a minor actor in crowd scenes
+74438,superorder,(biology) a taxonomic group ranking above an order and below a class or subclass
+74439,superoxide,a metallic oxide containing the univalent anion O2-
+74440,superoxide superoxide_anion,the univalent anion O2-; "much of the O2 supporting cellular respiration is reduced to the superoxide anion O2-"
+74441,superoxide_dismutase SOD,an enzyme that catalyzes the conversion of superoxide into hydrogen peroxide and oxygen; "oxygen free radicals are normally removed in our bodies by the superoxide dismutase enzymes"
+74442,superphylum,(biology) a taxonomic group ranking between a phylum and below a class or subclass
+74443,superposition,(geology) the deposition of one geological stratum on another
+74444,superposition,(geometry) the placement of one object ideally in the position of another one in order to show that the two coincide
+74445,superposition,the placement of one thing on top of another
+74446,superscript superior,a character or symbol set or printed or written above and immediately to one side of another character
+74447,superscription,an inscription written above something else
+74448,superscription,the activity of superscribing
+74449,supersedure supersession,act of replacing one person or thing by another especially one held to be superior
+74450,superstition superstitious_notion,an irrational belief arising from ignorance or fear
+74451,superstrate superstratum,any stratum or layer superimposed on another
+74452,superstrate superstratum,the language of a later invading people that is imposed on an indigenous population and contributes features to their language
+74453,superstring,a hypothetical particle that is the elementary particle in a theory of space-time
+74454,superstructure,structure consisting of the part of a ship above the main deck
+74455,supersymmetry,(physics) a theory that tries to link the four fundamental forces; "according to supersymmetry each force emerged separately during the big bang"
+74456,supertanker,the largest class of oil tankers
+74457,supertitle surtitle,translation of the words of a foreign opera (or choral work) projected on a screen above the stage
+74458,supertonic,(music) the second note of a diatonic scale
+74459,supertwister,the most powerful tornado which can create enormously devastating damage; "supertwisters are fortunately rare"
+74460,supervention,a following on in addition
+74461,supervision supervising superintendence oversight,management by overseeing the performance or operation of a person or group
+74462,supervisor,one who supervises or has charge and direction of
+74463,supervisory_program supervisor executive_program,a program that controls the execution of other programs
+74464,supervisory_routine executive_routine,a routine that coordinates the operation of subroutines
+74465,supervisory_software,specialized programs that reside permanently in the computer's main memory and control the processing of user's programs
+74466,supination,rotation of the hands and forearms so that the palms face upward
+74467,supinator,a muscle (especially in the forearm) that produces or assists in supination
+74468,supper,a social gathering where a light evening meal is served; "her suppers often included celebrities"
+74469,supper,a light evening meal; served in early evening if dinner is at midday or served late in the evening at bedtime
+74470,supper_club,usually a small luxurious nightclub
+74471,supping,ingestion of liquid food with a spoon or by drinking
+74472,supplanting displacement,act of taking the place of another especially using underhanded tactics
+74473,supplejack,walking stick made from the wood of an American tropical vine
+74474,supplement supplementation,a quantity added (e.g. to make up for a deficiency)
+74475,supplementary_benefit social_assistance national_assistance,benefits paid to bring incomes up to minimum levels established by law
+74476,supplementation subjunction subjoining,the act of supplementing
+74477,supplication plea,a humble request for help from someone in authority
+74478,supplier provider,someone whose business is to supply a particular service or commodity
+74479,supply,an amount of something available for use
+74480,supply,offering goods and services for sale
+74481,supply-side_economics,the school of economic theory that stresses the costs of production as a means of stimulating the economy; advocates policies that raise capital and labor output by increasing the incentive to produce
+74482,supply_chamber,a mechanical device for holding something and supplying it as needed
+74483,supply_closet,a closet for storing supplies
+74484,supply_line supply_route,a route over which supplies can be delivered
+74485,supply_officer,a commissioned officer responsible for logistics
+74486,support,something providing immaterial assistance to a person or cause or interest; "the policy found little public support"; "his faith was all the support he needed"; "the team enjoyed the support of their fans"
+74487,support,supporting structure that holds up or provides a foundation; "the statue stood on a marble support"
+74488,support,any device that bears the weight of another thing; "there was no place to attach supports for a shelf"
+74489,support,the activity of providing for or maintaining by supplying with money or necessities; "his support kept the family together"; "they gave him emotional support during difficult times"
+74490,support,aiding the cause or policy or interests of; "the president no longer has the support of his own party"; "they developed a scheme of mutual support"
+74491,support financial_support funding backing financial_backing,financial resources provided to make some project possible; "the foundation provided support for the experiment"
+74492,support keep livelihood living bread_and_butter sustenance,the financial means whereby one lives; "each child was expected to pay for their keep"; "he applied to the state for support"; "he could no longer earn his own livelihood"
+74493,support reinforcement reenforcement,a military operation (often involving new supplies of men and materiel) to strengthen a military force or aid in the performance of its mission; "they called for artillery support"
+74494,support supporting,the act of bearing the weight of or strengthening; "he leaned against the wall for support"
+74495,support_column,a column that supports a heavy weight
+74496,support_hose support_stocking,elasticized stocking intended to reduce pressure on the veins of the leg (as in case of varicose veins)
+74497,support_level,(stock market) the price at which a certain security becomes attractive to investors
+74498,support_payment,a payment made by one person for the support of another
+74499,support_system,a network of facilities and people who interact and remain in informal communication for mutual assistance; a network that enables you to live in a certain style
+74500,supporter protagonist champion admirer booster friend,a person who backs a politician or a team etc.; "all their supporters came out for the game"; "they are friends of the library"
+74501,supporting_fire,fire delivered by supporting units to protect or assist a unit in combat
+74502,supporting_structure,a structure that serves to support something
+74503,supporting_tower,a tower that serves to support something
+74504,supposition supposal,the cognitive process of supposing
+74505,suppository,a small plug of medication designed for insertion into the rectum or vagina where it melts
+74506,suppressant appetite_suppressant,a drug that suppresses appetite
+74507,suppression,the failure to develop some part or organ
+74508,suppression crushing quelling stifling,forceful prevention; putting down by power or authority; "the suppression of heresy"; "the quelling of the rebellion"; "the stifling of all dissent"
+74509,suppression curtailment,the act of withholding or withdrawing some book or writing from publication or circulation; "a suppression of the newspaper"
+74510,suppressive_fire,fire on or about a weapon system to degrade its performance below what is needed to fulfill its mission objectives
+74511,suppressor suppresser,someone who suppresses; "dictators are suppressors of free speech"
+74512,suppressor suppresser,an electrical device for suppressing unwanted currents
+74513,suppressor suppresser suppressor_gene suppresser_gene,a gene that suppresses the phenotypic expression of another gene (especially of a mutant gene)
+74514,supra_expressionism,a movement that tried to go beyond expressionism
+74515,suprainfection,secondary infection caused by an opportunistic infection
+74516,supraorbital_ridge supraorbital_torus superciliary_ridge superciliary_arch,a ridge on the frontal bone above the eye socket
+74517,supraorbital_vein vena_supraorbitalis,drains the front of the scalp; unites with the supratrochlear vein to form the angular vein
+74518,supratrochlear_vein vena_supratrochlearis,drains the front of the scalp; unites with the supraorbital vein to form the angular vein
+74519,supremacism,the belief that some particular group or race is superior to all others; "white supremacism"
+74520,supremacist,a person who advocates the supremacy of some particular group or racial group over all others
+74521,suprematism,a geometric abstractionist movement originated by Kazimir Malevich in Russia that influenced constructivism
+74522,suprematist,an artist of the school of suprematism
+74523,supreme_court state_supreme_court high_court,the highest court in most states of the United States
+74524,supremo,the most important person in an organization
+74525,sura,one of the sections (or chapters) in the Koran; "the Quran is divided in 114 suras"
+74526,surbase,the molding or border above the base of a structure (a pedestal or podium or wall)
+74527,surcharge,an additional charge (as for items previously omitted or as a penalty for failure to exercise common caution or common skill)
+74528,surcoat,a loose outer coat usually of rich material
+74529,surcoat,a tunic worn over a knight's armor
+74530,surd voiceless_consonant,a consonant produced without sound from the vocal cords
+74531,sureness,the quality of being steady and unfailing; "sureness of hand"
+74532,surety,something clearly established
+74533,surf breaker breakers,waves breaking on the shore
+74534,surf_casting surf_fishing,casting (artificial) bait far out into the ocean (up to 200 yards) with the waves breaking around you
+74535,surface,the extended two-dimensional outer boundary of a three-dimensional object; "they skimmed over the surface of the water"; "a brush small enough to clean every dental surface"; "the sun has no distinct surface"
+74536,surface,a superficial aspect as opposed to the real nature of something; "it was not what it appeared to be on the surface"
+74537,surface,the outer boundary of an artifact or a material layer constituting or resembling such a boundary; "there is a special cleaner for these surfaces"; "the cloth had a pattern of red dots on a white surface"
+74538,surface Earth's_surface,the outermost level of the land or sea; "earthquakes originate far below the surface"; "three quarters of the Earth's surface is covered by water"
+74539,surface-to-air_missile SAM,a guided missile fired from land or shipboard against an airborne target
+74540,surface-to-air_missile_system,the shipboard system that fires missiles at aircraft
+74541,surface_chemistry,the branch of chemistry that studies processes occurring at interfaces between phases (especially those between liquid and gas)
+74542,surface_fire,a forest fire that burns only the surface litter and undergrowth
+74543,surface_gauge surface_gage scribing_block,gauge consisting of a scriber mounted on an adjustable stand; used to test the accuracy of plane surfaces
+74544,surface_lift,a ski tow that pulls skiers up a slope without lifting them off the ground
+74545,surface_mail,mail that is sent by land or sea
+74546,surface_noise,noise produced by the friction of the stylus of a record player moving over the rotating record
+74547,surface_search_radar,a naval radar to search for surface targets
+74548,surface_ship,a warship that operates on the surface of the water
+74549,surface_tension,a phenomenon at the surface of a liquid caused by intermolecular forces
+74550,surfacing,emerging to the surface and becoming apparent
+74551,surfbird Aphriza_virgata,sandpiper-like shorebird of Pacific coasts of North America and South America
+74552,surfboard,a narrow buoyant board for riding surf
+74553,surfboat,a boat that can be launched or landed in heavy surf
+74554,surfeit excess overabundance,the state of being more than full
+74555,surfer surfboarder,someone who engages in surfboarding
+74556,surfing surfboarding surfriding,the sport of riding a surfboard toward the shore on the crest of a wave
+74557,surfperch surffish surf_fish,small to medium-sized shallow-water fishes of the Pacific coast of North America
+74558,surge upsurge,a sudden or abrupt strong increase; "stimulated a surge of speculation"; "an upsurge of emotion"; "an upsurge in violent crime"
+74559,surge_suppressor surge_protector spike_suppressor spike_arrester lightning_arrester,electrical device inserted in a power line to protect equipment from sudden fluctuations in current
+74560,surgeon operating_surgeon sawbones,a physician who specializes in surgery
+74561,surgeon's_knot,any of several knots used in tying stitches or ligatures
+74562,surgeonfish,brightly colored coral-reef fish with knifelike spines at the tail
+74563,surgery,the branch of medical science that treats disease or injury by operative procedures; "he is professor of surgery at the Harvard Medical School"
+74564,surgery,a room where a doctor or dentist can be consulted; "he read the warning in the doctor's surgery"
+74565,surgical_contraception,contraception by surgical sterilization
+74566,surgical_dressing,a loosely woven cotton dressing for incisions made during surgery
+74567,surgical_instrument,a medical instrument used in surgery
+74568,surgical_knife,a very sharp knife used in surgery
+74569,surgical_spirit,methylated spirit used in the practice of medicine (especially for cleansing the skin before injections or before surgery)
+74570,surgical_strike,an attack (usually without prior warning) intended to deal only with a specific target
+74571,suricate Suricata_tetradactyla,burrowing diurnal meerkat of southern Africa; often kept as a pet
+74572,surname family_name cognomen last_name,the name used to identify the members of a family (as distinguished from each member's given name)
+74573,surplice,a loose-fitting white ecclesiastical vestment with wide sleeves
+74574,surprise,the astonishment you feel when something totally unexpected happens to you
+74575,surprise,a sudden unexpected event
+74576,surprise surprisal,the act of surprising someone
+74577,surprise_attack coup_de_main,an attack without warning
+74578,surpriser,a captor who uses surprise to capture the victim
+74579,surrealism,a 20th century movement of artists and writers (developing out of dadaism) who used fantastic images and incongruous juxtapositions in order to represent unconscious thoughts and dreams
+74580,surrealist,an artist who is a member of the movement called surrealism
+74581,surrebutter surrebuttal,(law) a pleading by the plaintiff in reply to the defendant's rebutter
+74582,surrejoinder,(law) a pleading by the plaintiff in reply to the defendant's rejoinder
+74583,surrender,the delivery of a principal into lawful custody
+74584,surrenderer yielder,a person who yields or surrenders
+74585,surrey,a light four-wheeled horse-drawn carriage; has two or four seats
+74586,surrogate alternate replacement,someone who takes the place of another person
+74587,surrogate_mother,a woman who bears a child for a couple where the wife is unable to do so; "a surrogate mother is artificially inseminated with the father's semen and carries the fetus to term"
+74588,sursum_corda,(Roman Catholic Church) a Latin versicle meaning `lift up your hearts'
+74589,surtax supertax,an additional tax on certain kinds of income that has already been taxed
+74590,surtout,a man's overcoat in the style of a frock coat
+74591,surveillance,close observation of a person or group (usually by the police)
+74592,surveillance_of_disease,the ongoing systematic collection and analysis of data about an infectious disease that can lead to action being taken to control or prevent the disease
+74593,surveillance_system,a closed-circuit television system used to maintain close observation of a person or group
+74594,survey study,a detailed critical inspection
+74595,survey_mile,a U.S. unit of measure equal to 1609.347 meters; derived from the use of 39.37 inches as the conversion for one meter
+74596,surveying,the practice of measuring angles and distances on the ground so that they can be accurately plotted on a map; "he studied surveying at college"
+74597,surveying_instrument surveyor's_instrument,an instrument used by surveyors
+74598,surveyor,someone who conducts a statistical survey
+74599,surveyor,an engineer who determines the boundaries and elevations of land or structures
+74600,surveyor's_level,surveying instrument consisting basically of a small telescope with an attached spirit level rotating around a vertical axis; for measuring relative heights of land
+74601,survival,something that survives
+74602,survival endurance,a state of surviving; remaining alive
+74603,survival survival_of_the_fittest natural_selection selection,a natural process resulting in the evolution of organisms best adapted to the environment
+74604,survivalist,someone who tries to insure their personal survival or the survival of their group or nation
+74605,survivor,one who outlives another; "he left his farm to his survivors"
+74606,survivor,an animal that survives in spite of adversity; "only the fittest animals were survivors of the cold winters"
+74607,survivor subsister,one who lives through affliction; "the survivors of the fire were taken to a hospital"
+74608,survivor_guilt,a deep feeling of guilt often experienced by those who have survived some catastrophe that took the lives of many others; derives in part from a feeling that they did not do enough to save the others who perished and in part from feelings of being unworthy relative to those who died; "survivor guilt was first noted in those who survived the Holocaust"
+74609,survivors_insurance,insurance paid to surviving spouses
+74610,susceptibility susceptibleness,the state of being susceptible; easily affected
+74611,sushi,rice (with raw fish) wrapped in seaweed
+74612,sushi_bar,a bar where sushi is served
+74613,suslik souslik Citellus_citellus,rather large central Eurasian ground squirrel
+74614,suspect,someone who is under suspicion
+74615,suspended_animation,a temporary cessation of vital functions with loss of consciousness resembling death; usually resulting from asphyxia
+74616,suspense,apprehension about what is going to happen
+74617,suspense,excited anticipation of an approaching climax; "the play kept the audience in suspense"
+74618,suspense,an uncertain cognitive state; "the matter remained in suspense for several years"
+74619,suspense_account,an account used temporarily to carry doubtful receipts and disbursements or discrepancies pending their analysis and permanent classification
+74620,suspension,a mixture in which fine particles are suspended in a fluid where they are supported by buoyancy
+74621,suspension dangling hanging,the act of suspending something (hanging it from above so it moves freely); "there was a small ceremony for the hanging of the portrait"
+74622,suspension respite reprieve hiatus abatement,an interruption in the intensity or amount of something
+74623,suspension suspension_system,a mechanical system of springs or shock absorbers connecting the wheels and axles to the chassis of a wheeled vehicle
+74624,suspension temporary_removal,a temporary debarment (from a privilege or position etc)
+74625,suspension_bridge,a bridge that has a roadway supported by cables that are anchored at both ends
+74626,suspension_point,(usually plural) one of a series of points indicating that something has been omitted or that the sentence is incomplete
+74627,suspensory suspensory_bandage,a bandage of elastic fabric applied to uplift a dependant part (as the scrotum or a pendulous breast)
+74628,suspicion,the state of being suspected; "he tried to shield me from suspicion"
+74629,suspicion suspiciousness,being of a suspicious nature; "his suspiciousness destroyed his marriage"
+74630,sustainability,the property of being sustainable
+74631,sustaining_pedal loud_pedal,a pedal on a piano that lifts the dampers from the strings and so allows them to continue vibrating
+74632,sustaining_program,a program without a commercial sponsor
+74633,sustenance sustentation sustainment maintenance upkeep,the act of sustaining life by food or providing a means of subsistence; "they were in want of sustenance"; "fishing was their main sustainment"
+74634,susurration susurrus,the indistinct sound of people whispering; "a soft susurrus of conversation"
+74635,sutler victualer victualler provisioner,a supplier of victuals or supplies to an army
+74636,sutra,a rule or aphorism in Sanskrit literature or a group of aphoristic doctrinal summaries prepared for memorization
+74637,suttee,the act of a Hindu widow willingly cremating herself on the funeral pyre of her dead husband
+74638,suture,thread of catgut or silk or wire used by surgeons to stitch tissues together
+74639,suture surgical_seam,a seam used in surgery
+74640,suture sutura fibrous_joint,an immovable joint (especially between the bones of the skull)
+74641,suturing,surgical joining of two surfaces
+74642,suzerain,a state exercising a degree of dominion over a dependent state especially in its foreign affairs
+74643,suzerainty,the position or authority of a suzerain; "under the suzerainty of..."
+74644,suzerainty,the domain of a suzerain
+74645,svoboda,(Russia) freedom
+74646,swab,implement consisting of a small piece of cotton that is used to apply medication or cleanse a wound or obtain a specimen of a secretion
+74647,swab swob mop,cleaning implement consisting of absorbent material fastened to a handle; for cleaning floors
+74648,swabbing mopping,cleaning with a mop; "he gave it a good mopping"
+74649,swad,a bunch; "a thick swad of plants"
+74650,swaddling_clothes,restrictions placed on the immature
+74651,swaddling_clothes swaddling_bands,a garment (a gown or narrow strips of cloth) for an infant
+74652,swag,valuable goods
+74653,swag,a bundle containing the personal belongings of a swagman
+74654,swage_block,an iron block cut with holes and grooves to assist in cold working metal
+74655,swagger_stick,a short cane or stick covered with leather and carried by army officers
+74656,swaggerer,someone who walks in an arrogant manner
+74657,swagman swagger swaggie,an itinerant Australian laborer who carries his personal belongings in a bundle as he travels around in search of work
+74658,swale,a low area (especially a marshy area between ridges)
+74659,swallow,small long-winged songbird noted for swift graceful flight and the regularity of its migrations
+74660,swallow drink deglutition,the act of swallowing; "one swallow of the liquid was enough"; "he took a drink of his beer and smacked his lips"
+74661,swallow sup,a small amount of liquid food; "a sup of ale"
+74662,swallow-tailed_coat swallowtail morning_coat,a man's full-dress jacket with two long tapering tails at the back
+74663,swallow-tailed_kite swallow-tailed_hawk Elanoides_forficatus,graceful North American black-and-white kite
+74664,swami,a Hindu religious teacher; used as a title of respect
+74665,swamp,a situation fraught with difficulties and imponderables; "he was trapped in a medical swamp"
+74666,swamp swampland,low land that is seasonally flooded; has more woody plants than a marsh and better drainage than a bog
+74667,swamp_ash Fraxinus_caroliniana,small ash of swampy areas of southeastern United States
+74668,swamp_azalea swamp_honeysuckle white_honeysuckle Rhododendron_viscosum,shrub growing in swamps throughout the eastern United States and having small white to pinkish flowers resembling honeysuckle
+74669,swamp_birch water_birch mountain_birch Western_paper_birch Western_birch Betula_fontinalis,birch of western United States resembling the paper birch but having brownish bark
+74670,swamp_buggy marsh_buggy,an amphibious vehicle typically having four-wheel drive and a raised body
+74671,swamp_candles Lysimachia_terrestris,North American plant with spikes of yellow flowers, found in wet places
+74672,swamp_chestnut_oak Quercus_michauxii,medium to large deciduous tree of moist areas of southeastern United States similar to the basket oak
+74673,swamp_cottonwood black_cottonwood downy_poplar swamp_poplar Populus_heterophylla,North American poplar with large rounded scalloped leaves and brownish bark and wood
+74674,swamp_dewberry swamp_blackberry Rubus_hispidus,of eastern North America
+74675,swamp_fever leptospirosis,an infectious disease cause by leptospira and transmitted to humans from domestic animals; characterized by jaundice and fever
+74676,swamp_fly_honeysuckle,a variety of fly honeysuckle
+74677,swamp_gum Eucalypt_ovata,medium-sized tree of southern Australia
+74678,swamp_horsetail water_horsetail Equisetum_fluviatile,Eurasia; northern North America to Virginia
+74679,swamp_laurel bog_laurel bog_kalmia Kalmia_polifolia,laurel of bogs of northwestern United States having small purple flowers and pale leaves that are glaucous beneath
+74680,swamp_milkweed Asclepias_incarnata,densely branching perennial of the eastern United States with white to crimson or purple flowers
+74681,swamp_oak Viminaria_juncea Viminaria_denudata,Australian leafless shrub resembling broom and having small yellow flowers
+74682,swamp_pine,any of several pines that prefer or endure moist situations such as loblolly pine or longleaf pine
+74683,swamp_rabbit canecutter swamp_hare Sylvilagus_aquaticus,a wood rabbit of southeastern United States swamps and lowlands
+74684,swamp_sparrow Melospiza_georgiana,North American finch of marshy area
+74685,swamp_sunflower Helianthus_angustifolius,sunflower of eastern North America having narrow leaves and found in bogs
+74686,swamp_white_oak swamp_oak Quercus_bicolor,large deciduous oak of the eastern United States with a flaky bark and leaves that have fewer lobes than other white oaks; yields heavy strong wood used in construction; thrives in wet soil
+74687,swamp_willow black_willow Salix_nigra,North American shrubby willow having dark bark and linear leaves growing close to streams and lakes
+74688,swampy_beggar-ticks Bidens_connata,bur marigold of eastern and northern United States and Canada common in wet pastures and meadows
+74689,swan,stately heavy-bodied aquatic bird with very long neck and usually white plumage as adult
+74690,swan's_down,soft woolen fabric used especially for baby clothes
+74691,swan's_down,down of the swan
+74692,swan_dive swallow_dive,a dive in which the diver arches the back with arms outstretched before entering the water
+74693,swan_orchid swanflower swan-flower swanneck swan-neck,any of several orchids of the genus Cycnoches having slender arching columns of flowers suggesting the neck of a swan
+74694,swan_song last_hurrah,a final performance or effort (especially before retirement)
+74695,swap_space swap_file,the disk space that is set aside for virtual memory
+74696,swarm cloud,a group of many things in the air or on the ground; "a swarm of insects obscured the light"; "clouds of blossoms"; "it discharged a cloud of spores"
+74697,swash,the movement or sound of water; "the swash of waves on the beach"
+74698,swashbuckling,flamboyantly reckless and boastful behavior
+74699,swastika Hakenkreuz,the official emblem of the Nazi Party and the Third Reich; a cross with the arms bent at right angles in a clockwise direction
+74700,swat,a sharp blow
+74701,swatch,a sample piece of cloth
+74702,swath,the space created by the swing of a scythe or the cut of a mowing machine
+74703,swath belt,a path or strip (as cut by one course of mowing)
+74704,swathe wrapping,an enveloping bandage
+74705,swathing,cloth coverings wrapped around something (as a wound or a baby)
+74706,swatter flyswatter flyswat,an implement with a flat part (of mesh or plastic) and a long handle; used to kill insects
+74707,sway,controlling influence
+74708,swearer,someone who uses profanity
+74709,swearer,someone who takes a solemn oath
+74710,sweat,condensation of moisture on a cold surface; "the cold glasses were streaked with sweat"
+74711,sweat_bag,a porous bag (usually of canvas) that holds water and cools it by evaporation
+74712,sweat_duct,a small duct that conveys sweat from a sudoriferous gland to the surface of the skin
+74713,sweat_equity,interest in a building that a tenant earns by contributing to its renovation or maintenance
+74714,sweat_gland sudoriferous_gland,any of the glands in the skin that secrete perspiration
+74715,sweat_pants sweatpants,loose-fitting trousers with elastic cuffs; worn by athletes
+74716,sweat_suit sweatsuit sweats workout_suit,garment consisting of sweat pants and a sweatshirt
+74717,sweatband,a band of material tied around the forehead or wrist to absorb sweat
+74718,sweatband,a band of fabric or leather sewn inside the crown of a hat
+74719,sweatbox,small or narrow cell
+74720,sweatbox,a device that causes tobacco leaves or fruit or hides to sweat
+74721,sweater jumper,a crocheted or knitted garment covering the upper part of the body
+74722,sweater_girl,a girl with an attractive bust who wears tight sweaters
+74723,sweating_sickness,a disease of cattle (especially calves)
+74724,sweating_sickness miliary_fever,epidemic in the 15th and 16th centuries and characterized by profuse sweating and high mortality
+74725,sweatshirt,cotton knit pullover with long sleeves worn during athletic activity
+74726,sweatshop,factory where workers do piecework for poor pay and are prevented from forming unions; common in the clothing industry
+74727,sweep,a movement in an arc; "a sweep of his arm"
+74728,sweep expanse,a wide scope; "the sweep of the plains"
+74729,sweep sweep_oar,a long oar used in an open boat
+74730,sweep_hand sweep-second,a second hand that is mounted on the same center as the hour and minute hand and is read on the minutes
+74731,sweeper,an employee who sweeps (floors or streets etc.)
+74732,sweeper,little-known nocturnal fish of warm shallow seas with an oblong compressed body
+74733,sweeping,the act of cleaning with a broom
+74734,sweepstakes,a lottery in which the prize consists of the money paid by the participants
+74735,sweet confection,a food rich in sugar
+74736,sweet sweetness sugariness,the taste experience when sugar dissolves in the mouth
+74737,sweet-potato_ring_rot,disease of sweet potatoes in which roots are girdled by rings of dry rot
+74738,sweet-potato_whitefly,a variety of whitefly
+74739,sweet_William Dianthus_barbatus,Eurasian pink widely cultivated for its flat-topped dense clusters of varicolored flowers
+74740,sweet_alyssum sweet_alison Lobularia_maritima,perennial European plant having clusters of small fragrant usually white flowers; widely grown in gardens
+74741,sweet_bay swamp_bay swamp_laurel Magnolia_virginiana,shrub or small tree having rather small fragrant white flowers; abundant in southeastern United States
+74742,sweet_bells Leucothoe_racemosa,bushy deciduous shrub of the eastern United States with long racemes of pinkish flowers
+74743,sweet_birch cherry_birch black_birch Betula_lenta,common birch of the eastern United States having spicy brown bark yielding a volatile oil and hard dark wood used for furniture
+74744,sweet_buckeye,a tall and often cultivated buckeye of the central United States
+74745,sweet_calabash,apple-sized passion fruit of the West Indies
+74746,sweet_calabash Passiflora_maliformis,West Indian passionflower with edible apple-sized fruit
+74747,sweet_cassava Manihot_dulcis,South American plant with roots used as a vegetable and herbage used for stock feed
+74748,sweet_cherry Prunus_avium,large Eurasian tree producing small dark bitter fruit in the wild but edible sweet fruit under cultivation
+74749,sweet_cherry black_cherry,any of several fruits of cultivated cherry trees that have sweet flesh
+74750,sweet_cicely,fresh ferny leaves and green seeds used as garnish in salads and cold vegetables; dried seeds used in confectionery and liqueurs
+74751,sweet_cicely Myrrhis_odorata,European herb with soft ferny leaves and white flowers
+74752,sweet_cider,unfermented cider
+74753,sweet_coltsfoot Petasites_sagitattus,American sweet-scented herb
+74754,sweet_corn green_corn,corn that can be eaten as a vegetable while still young and soft
+74755,sweet_corn sugar_corn green_corn sweet_corn_plant Zea_mays_rugosa Zea_saccharata,a corn plant developed in order to have young ears that are sweet and suitable for eating
+74756,sweet_false_chamomile wild_chamomile German_chamomile Matricaria_recutita Matricaria_chamomilla,annual Eurasian herb similar in fragrance and medicinal uses to chamomile though taste is more bitter and effect is considered inferior
+74757,sweet_fern Comptonia_peregrina Comptonia_asplenifolia,deciduous shrub of eastern North America with sweet scented fernlike leaves and tiny white flowers
+74758,sweet_flag calamus sweet_calamus myrtle_flag flagroot Acorus_calamus,perennial marsh plant having swordlike leaves and aromatic roots
+74759,sweet_four_o'clock maravilla Mirabilis_longiflora,leafy wildflower having fragrant slender white or pale pink trumpet-shaped flowers; southwestern United States and northern Mexico
+74760,sweet_gale Scotch_gale Myrica_gale,bog shrub of north temperate zone having bitter-tasting fragrant leaves
+74761,sweet_gum liquidambar,aromatic exudate from the sweet gum tree
+74762,sweet_gum satin_walnut hazelwood red_gum,reddish-brown wood and lumber from heartwood of the sweet gum tree used to make furniture
+74763,sweet_gum sweet_gum_tree bilsted red_gum American_sweet_gum Liquidambar_styraciflua,a North American tree of the genus Liquidambar having prickly spherical fruit clusters and fragrant sap
+74764,sweet_lemon sweet_lime Citrus_limetta,lemon tree having fruit with a somewhat insipid sweetish pulp
+74765,sweet_marjoram knotted_marjoram Origanum_majorana Majorana_hortensis,aromatic European plant native to Mediterranean and Turkey; not widespread in Europe
+74766,sweet_melon muskmelon sweet_melon_vine Cucumis_melo,any of several varieties of vine whose fruit has a netted rind and edible flesh and a musky smell
+74767,sweet_nothings honeyed_words,inconsequential expressions of affection; "he whispered sweet nothings into her ear"
+74768,sweet_oil,mild vegetable oil when used as food; especially olive or edible rape oil
+74769,sweet_orange,orange with sweet juicy pulp; often has a thin skin
+74770,sweet_orange sweet_orange_tree Citrus_sinensis,probably native to southern China; widely cultivated as source of table and juice oranges
+74771,sweet_pea sweetpea Lathyrus_odoratus,climbing garden plant having fragrant pastel-colored flowers
+74772,sweet_pepper,large mild crisp thick-walled capsicum peppers usually bell-shaped or somewhat oblong; commonly used in salads
+74773,sweet_pepper bell_pepper pimento pimiento paprika sweet_pepper_plant Capsicum_annuum_grossum,plant bearing large mild thick-walled usually bell-shaped fruits; the principal salad peppers
+74774,sweet_pepperbush pepper_bush summer_sweet white_alder Clethra_alnifolia,shrub of eastern and southern coastal United States having beautiful racemes of spice-scented white flowers
+74775,sweet_pickle,pickle cured in brine and preserved in sugar and vinegar
+74776,sweet_potato,the edible tuberous root of the sweet potato vine which is grown widely in warm regions of the United States
+74777,sweet_potato sweet_potato_vine Ipomoea_batatas,pantropical vine widely cultivated in several varieties for its large sweet tuberous root with orange flesh
+74778,sweet_roll coffee_roll,any of numerous yeast-raised sweet rolls with our without raisins or nuts or spices or a glaze
+74779,sweet_sand_verbena Abronia_fragrans,taller than Abronia elliptica and having night-blooming flowers
+74780,sweet_scabious pincushion_flower mournful_widow Scabiosa_atropurpurea,Old World annual having fragrant purple to deep crimson flower heads; naturalized in United States
+74781,sweet_sultan Amberboa_moschata Centaurea_moschata,Asian plant widely grown for its sweetly fragrant pink flowers; sometimes placed in genus Centaurea
+74782,sweet_sultan Centaurea_imperialis,perennial of mountains of Iran and Iraq; cultivated for its fragrant rose-pink flowers
+74783,sweet_tooth,a strong appetite for sweet food
+74784,sweet_unicorn_plant Proboscidea_fragrans Martynia_fragrans,a herbaceous plant of the genus Proboscidea
+74785,sweet_vermouth Italian_vermouth,sweet dark amber variety
+74786,sweet_vetch Hedysarum_boreale,perennial of western United States having racemes of pink to purple flowers followed by flat pods that separate into nearly orbicular joints
+74787,sweet_violet garden_violet English_violet Viola_odorata,European violet typically having purple to white flowers; widely naturalized
+74788,sweet_white_violet white_violet woodland_white_violet Viola_blanda,short-stemmed violet of eastern North America having fragrant purple-veined white flowers
+74789,sweet_woodruff waldmeister,fragrant dark green leaves used to flavor May wine
+74790,sweet_woodruff waldmeister woodruff fragrant_bedstraw Galium_odoratum Asperula_odorata,Old World fragrant stoloniferous perennial having small white flowers and narrow leaves used as flavoring and in sachets; widely cultivated as a ground cover; in some classifications placed in genus Asperula
+74791,sweet_wormwood Artemisia_annua,wormwood of southeastern Europe to Iran
+74792,sweetbread sweetbreads,edible glands of an animal
+74793,sweetbrier sweetbriar brier briar eglantine Rosa_eglanteria,Eurasian rose with prickly stems and fragrant leaves and bright pink flowers followed by scarlet hips
+74794,sweetening,the act of adding a sweetener to food
+74795,sweetening sweetener,something added to foods to make them taste sweeter
+74796,sweetheart,any well-liked individual; "he's a sweetheart"
+74797,sweetheart sweetie steady truelove,a person loved by another person
+74798,sweetleaf Symplocus_tinctoria,small yellowwood tree of southern United States having small fragrant white flowers; leaves and bark yield a yellow dye
+74799,sweetmeat,a sweetened delicacy (as a preserve or pastry)
+74800,sweetness sweet,the property of tasting as if it contains sugar
+74801,sweetness_and_light,a mild reasonableness; "when he learned who I was he became all sweetness and light"
+74802,sweetsop annon sugar_apple,sweet pulpy tropical fruit with thick scaly rind and shiny black seeds
+74803,sweetsop sweetsop_tree Annona_squamosa,tropical American tree bearing sweet pulpy fruit with thick scaly rind and shiny black seeds
+74804,swell,a rounded elevation (especially one on an ocean floor)
+74805,swell,a crescendo followed by a decrescendo
+74806,swell crestless_wave,the undulating movement of the surface of the open sea
+74807,swelling puffiness lump,an abnormal protuberance or localized enlargement
+74808,swerve swerving veering,the act of turning aside suddenly
+74809,swift,a small bird that resembles a swallow and is noted for its rapid flight
+74810,swiftlet Collocalia_inexpectata,swift of eastern Asia; produces the edible bird's nest
+74811,swimmer,a trained athlete who participates in swimming meets; "he was an Olympic swimmer"
+74812,swimmer natator bather,a person who travels through the water by swimming; "he is not a good swimmer"
+74813,swimmeret pleopod,one of the paired abdominal appendages of certain aquatic crustaceans that function primarily for carrying the eggs in females and are usually adapted for swimming
+74814,swimming swim,the act of swimming; "it was the swimming they enjoyed most"; "they took a short swim in the pool"
+74815,swimming_crab,marine crab with some legs flattened and fringed for swimming
+74816,swimming_event,an athletic competition that involves swimming
+74817,swimming_hole,a small body of water (usually in a creek) that is deep enough to use for swimming
+74818,swimming_kick,a movement of the legs in swimming
+74819,swimming_meet swim_meet,a swimming competition between two or more teams
+74820,swimming_pool swimming_bath natatorium,pool that provides a facility for swimming; "`swimming bath' is a British term"
+74821,swimming_stroke,a method of moving the arms and legs to push against the water and propel the swimmer forward
+74822,swimming_trunks bathing_trunks,swimsuit worn by men while swimming
+74823,swimsuit swimwear bathing_suit swimming_costume bathing_costume,tight fitting garment worn for swimming
+74824,swindle cheat rig,the act of swindling by some fraudulent scheme; "that book is a fraud"
+74825,swindler defrauder chiseller chiseler gouger scammer grifter,a person who swindles you by means of deception or fraud
+74826,swine,stout-bodied short-legged omnivorous animals
+74827,swine_influenza swine_flu,an acute and highly contagious respiratory disease of swine caused by the orthomyxovirus thought to be the same virus that caused the 1918 influenza pandemic
+74828,swineherd pigman,a herder or swine
+74829,swing,a state of steady vigorous action that is characteristic of an activity; "the party went with a swing"; "it took time to get into the swing of things"
+74830,swing,mechanical device used as a plaything to support someone swinging back and forth
+74831,swing,a sweeping blow or stroke; "he took a wild swing at my head"
+74832,swing,a square dance figure; a pair of dancers join hands and dance around a point between them
+74833,swing swing_music jive,a style of jazz played by big bands popular in the 1930s; flowing rhythms but less complex than later styles of jazz
+74834,swing swinging vacillation,changing location by moving back and forth
+74835,swing_door swinging_door,a door that swings on a double hinge; opens in either direction
+74836,swing_voter floating_voter,a voter who has no allegiance to any political party and whose unpredictable decisions can swing the outcome of an election one way or the other
+74837,swinger,someone who swings sports implements
+74838,swinger tramp,a person who engages freely in promiscuous sex
+74839,swinging_chad,a chad that is incompletely removed and still attached at two corners
+74840,swipe,a sweeping stroke or blow
+74841,swish,a brushing or rustling sound
+74842,switch,hairpiece consisting of a tress of false hair; used by women to give shape to a coiffure
+74843,switch,railroad track having two movable rails and necessary connections; used to turn a train from one track to another or to store rolling stock
+74844,switch,a flexible implement used as an instrument of punishment
+74845,switch,a basketball maneuver; two defensive players shift assignments so that each guards the player usually guarded by the other
+74846,switch electric_switch electrical_switch,control consisting of a mechanical or electrical or electronic device for making or breaking or changing the connections in a circuit
+74847,switch switching shift,the act of changing one thing or position for another; "his switch on abortion cost him the election"
+74848,switch-hitter,slang term for a bisexual person
+74849,switch-hitter,a baseball player who can bat either right or left handed
+74850,switch_engine donkey_engine,a locomotive for switching rolling stock in a railroad yard
+74851,switch_grass Panicum_virgatum,grass of western America used for hay
+74852,switchblade switchblade_knife flick-knife flick_knife,a pocketknife with a blade that springs open at the press of a button
+74853,switchboard patchboard plugboard,telephone central where circuits are completed with patchcords
+74854,switcher whipper,a person who administers punishment by wielding a switch or whip
+74855,switcheroo,a sudden unexpected switch
+74856,switchman,a man who operates railroad switches
+74857,swivel,a coupling (as in a chain) that has one end that turns on a headed pin
+74858,swivel_chair,a chair that swivels on its base
+74859,swivet,a panic or extreme discomposure; "it threw her into a swivet"
+74860,swiz,British slang for a swindle
+74861,swizzle,any of various tall frothy mixed drinks made usually of rum and lime juice and sugar shaken with ice
+74862,swizzle_stick,a small stick used to stir mixed drinks
+74863,swoop,a very rapid raid
+74864,swoop,a swift descent through the air
+74865,swoop slide,(music) rapid sliding up or down the musical scale; "the violinist was indulgent with his swoops and slides"
+74866,swoosh whoosh,the noise produced by the sudden rush of a fluid (a gas or liquid)
+74867,sword blade brand steel,a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard
+74868,sword-cut,a scar from a cut made by a sword
+74869,sword_bean Canavalia_gladiata,twining tropical Old World plant bearing long pods usually with red or brown beans; long cultivated in Orient for food
+74870,sword_cane sword_stick,a cane concealing a sword or dagger
+74871,sword_dance sword_dancing,any of various dances by men who step nimbly over swords or flourish them in the air
+74872,sword_fern,any of several tropical ferns having more or less sword-shaped fronds including one from which the Boston fern developed
+74873,sword_grass,any of various grasses or sedges having sword-shaped leaves with sharp edges
+74874,sword_knot,an ornamental tassel on the hilt of a sword
+74875,sword_of_Damocles,a constant and imminent peril; "the possibility hangs over their heads like the sword of Damocles"
+74876,swordfish,flesh of swordfish usually served as steaks
+74877,swordfish Xiphias_gladius,large toothless marine food fish with a long swordlike upper jaw; not completely cold-blooded i.e. they are able to warm their brains and eyes: worldwide in warm waters but feed on cold ocean floor coming to surface at night
+74878,swordsmanship,skill in fencing
+74879,swordtail helleri topminnow Xyphophorus_helleri,freshwater fish of Central America having a long swordlike tail; popular aquarium fish
+74880,swot grind nerd wonk dweeb,an insignificant student who is ridiculed as being affected or boringly studious
+74881,swung_dash,a punctuation mark used in text to indicate the omission of a word
+74882,sycamore great_maple scottish_maple Acer_pseudoplatanus,Eurasian maple tree with pale grey bark that peels in flakes like that of a sycamore tree; leaves with five ovate lobes yellow in autumn
+74883,sycamore lacewood,variably colored and sometimes variegated hard tough elastic wood of a sycamore tree
+74884,sycamore sycamore_fig mulberry_fig Ficus_sycomorus,thick-branched wide-spreading tree of Africa and adjacent southwestern Asia often buttressed with branches rising from near the ground; produces cluster of edible but inferior figs on short leafless twigs; the biblical sycamore
+74885,syconium,the fleshy multiple fruit of the fig consisting of an enlarged hollow receptacle containing numerous fruitlets
+74886,sycophancy,fawning obsequiousness
+74887,sycophant toady crawler lackey ass-kisser,a person who tries to please someone in order to gain a personal advantage
+74888,syllabary syllabic_script,a writing system whose characters represent syllables
+74889,syllabication syllabification,forming or dividing words into syllables
+74890,syllabicity,the pattern of syllable formation in a particular language
+74891,syllable,a unit of spoken language larger than a phoneme; "the word `pocket' has two syllables"
+74892,syllabub sillabub,spiced hot milk with rum or wine
+74893,syllabub sillabub,sweetened cream beaten with wine or liquor
+74894,syllepsis,use of a word to govern two or more words though agreeing in number or case etc. with only one
+74895,syllogism,deductive reasoning in which a conclusion is derived from two premises
+74896,syllogist syllogizer syllogiser,logician skilled in syllogistic reasoning
+74897,sylph,a slender graceful young woman
+74898,sylph,an elemental being believed to inhabit the air
+74899,sylvan silvan,a spirit that lives in or frequents the woods
+74900,sylvanite graphic_tellurium,a silver-white mineral consisting of silver gold telluride; a source of gold in Australia and America
+74901,sylvite sylvine,a mineral consisting of native potassium chloride; an important ore of potassium that is found in sedimentary beds
+74902,symbiosis mutualism,the relation between two different species of organisms that are interdependent; each gains benefits from the other
+74903,symbol,an arbitrary sign (written or printed) that has acquired a conventional significance
+74904,symbol symbolization symbolisation symbolic_representation,something visible that by association or convention represents something else that is invisible; "the eagle is a symbol of the United States"
+74905,symbolatry symbololatry symbol-worship,the worship of symbols
+74906,symbolic_logic mathematical_logic formal_logic,any logical system that abstracts the form of statements away from their content in order to establish abstract criteria of consistency and validity
+74907,symbolic_logician,a person skilled at symbolic logic
+74908,symbolism,an artistic movement in the late 19th century that tried to express abstract or mystical ideas through the symbolic use of images
+74909,symbolism,a system of symbols and symbolic representations
+74910,symbolism symbolization symbolisation,the practice of investing things with symbolic meaning
+74911,symbolist,a member of an artistic movement that expressed ideas indirectly via symbols
+74912,symbolist symbolizer symboliser,someone skilled in the interpretation or representation of symbols
+74913,symbolization symbolisation,the use of symbols to convey meaning
+74914,symbolizing symbolising,the act of representing something with a symbol
+74915,symbology,the study or the use of symbols and symbolism
+74916,symmetry proportion,balance among the parts of something
+74917,symmetry symmetricalness correspondence balance,(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane
+74918,sympathectomy,surgical interruption of a nerve pathway in the sympathetic nervous system
+74919,sympathetic_nervous_system,originates in the thoracic regions of the spinal cord; opposes physiological effects of the parasympathetic: reduces digestive secretions; speeds the heart; contracts blood vessels
+74920,sympathetic_vibration,(physics) vibration produced by resonance
+74921,sympathizer sympathiser comforter,a person who commiserates with someone who has had misfortune
+74922,sympathizer sympathiser well-wisher,someone who shares your feelings or opinions and hopes that you will be successful
+74923,sympathy,a relation of affinity or harmony between people; whatever affects one correspondingly affects the other; "the two of them were in close sympathy"
+74924,sympathy fellow_feeling,sharing the feelings of others (especially feelings of sorrow or anguish)
+74925,sympathy understanding,an inclination to support or be loyal to or to agree with an opinion; "his sympathies were always with the underdog"; "I knew I could count on his understanding"
+74926,sympathy_card,a card expressing sympathy
+74927,sympathy_strike sympathetic_strike,a strike in support of other workers who are on strike; a strike not resulting from direct grievances against the workers' employer
+74928,sympatry,the occurrence of organisms in overlapping geographical areas, but without interbreeding
+74929,symphonic_poem tone_poem,an orchestral composition based on literature or folk tales
+74930,symphonist,a composer of symphonies
+74931,symphony symphonic_music,a long and complex sonata for symphony orchestra
+74932,symphony_orchestra symphony philharmonic,a large orchestra; can perform symphonies; "we heard the Vienna symphony"
+74933,symphysion,the most forward point of the alveolar process of the mandible
+74934,symphysis,an abnormal adhesion of two or more structures
+74935,symphysis,a growing together of parts or structures
+74936,symploce,repetition of a word or phrase at the beginning and another at the end of successive clauses, i.e., simultaneous use of anaphora and epistrophe
+74937,symposiast,someone who participates in a symposium
+74938,symposium,a meeting or conference for the public discussion of some topic especially one in which the participants form an audience and make presentations
+74939,symptom,(medicine) any sensation or change in bodily function that is experienced by a patient and is associated with a particular disease
+74940,symptom,anything that accompanies X and is regarded as an indication of X's existence
+74941,synagogue temple tabernacle,(Judaism) the place of worship for a Jewish congregation
+74942,synapse,the junction between two neurons (axon-to-dendrite) or between a neuron and a muscle; "nerve impulses cross a synapse through the action of neurotransmitters"
+74943,synapsid synapsid_reptile,extinct reptile having a single pair of lateral temporal openings in the skull
+74944,synapsis,the side by side pairing of homologous maternal and paternal chromosomes at the start of meiosis
+74945,syncategorem syncategoreme,a syncategorematic expression; a word that cannot be used alone as a term in a logical proposition; "logical quantifiers, adverbs, prepositions, and conjunctions are called syncategoremes"
+74946,synchrocyclotron,cyclotron that achieves relativistic velocities by modulating the frequency of the accelerating electric field
+74947,synchroflash,a device used in photography to synchronize the peak of a flash with the opening of the camera shutter
+74948,synchromesh,an automotive system for shifting gears in which the gears revolve at the same speed and so shift smoothly
+74949,synchronic_linguistics,the study of a language without reference to its historical context
+74950,synchronism synchrony synchronicity synchroneity synchronization synchronisation synchronizing,the relation that exists when things occur at the same time; "the drug produces an increased synchrony of the brain waves"
+74951,synchronization synchronisation synchronizing,coordinating by causing to indicate the same time; "the synchronization of their watches was an important preliminary"
+74952,synchronization synchronisation synchronizing synchronising,an adjustment that causes something to occur or recur in unison
+74953,synchronous_converter rotary rotary_converter,electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa
+74954,synchronous_motor,electric motor in which the speed of rotation is proportional to the frequency of the A.C. power
+74955,synchronous_operation,operations that are initiated predictably by a clock
+74956,synchroscope synchronoscope synchronizer synchroniser,an instrument that indicates whether two periodic motions are synchronous (especially an instrument that enables a pilot to synchronize the propellers of a plane that has two or more engines)
+74957,synchrotron,cyclotron in which the electric field is maintained at a constant frequency
+74958,syncopation,a musical rhythm accenting a normally weak beat
+74959,syncopation,music (especially dance music) that has a syncopated rhythm
+74960,syncopator,a musician who plays syncopated jazz music (usually in a dance band); "they called themselves the Dixie Syncopators"
+74961,syncope syncopation,(phonology) the loss of sounds from within a word (as in `fo'c'sle' for `forecastle')
+74962,syncretism,the union (or attempted fusion) of different systems of thought or belief (especially in religion or philosophy); "a syncretism of material and immaterial theories"
+74963,syncretism,the fusion of originally different inflected forms (resulting in a reduction in the use of inflections)
+74964,syncytium,a mass of cytoplasm containing several nuclei and enclosed in a membrane but no internal cell boundaries (as in muscle fibers)
+74965,syndactyly syndactylism,birth defect in which there is partial or total webbing connecting two or more fingers or toes
+74966,syndic,one appointed to represent a city or university or corporation in business transactions
+74967,syndicalism,a radical political movement that advocates bringing industry and government under the control of labor unions
+74968,syndicate,a news agency that sells features or articles or photographs etc. to newspapers for simultaneous publication
+74969,syndicate crime_syndicate mob family,a loose affiliation of gangsters in charge of organized criminal activities
+74970,syndication,organizing into or administering as a syndicate
+74971,syndication,selling (an article or cartoon) for publication in many magazines or newspapers at the same time; "he received a comfortable income from the syndication of his work"
+74972,syndicator,a businessman who forms a syndicate
+74973,syndrome,a pattern of symptoms indicative of some disease
+74974,syndrome,a complex of concurrent things; "every word has a syndrome of meanings"
+74975,synecdoche,substituting a more inclusive term for a less inclusive one or vice versa
+74976,synechia,adhesions between the iris and the lens or cornea resulting from trauma or eye surgery or as a complication of glaucoma or cataract; can lead to blindness
+74977,syneresis synaeresis,the contraction of two vowels into a diphthong
+74978,syneresis synaeresis,the separation of liquid from a gel that is caused by contraction (as in cheese making)
+74979,synergism,the theological doctrine that salvation results from the interaction of human will and divine grace
+74980,synergist,a drug that augments the activity of another drug
+74981,synergy synergism,the working together of two things (muscles or drugs for example) to produce an effect greater than the sum of their individual effects
+74982,synesthesia synaesthesia,a sensation that normally occurs in one sense modality occurs when another modality is stimulated
+74983,synesthetic_metaphor,a metaphor that exploits a similarity between experiences in different sense modalities
+74984,synizesis synezesis,the contraction of chromatin towards one side of the nucleus during the prophase of meiosis
+74985,synod,a council convened to discuss ecclesiastical business
+74986,synonym equivalent_word,two words that can be interchanged in a context are said to be synonymous relative to that context
+74987,synonymist,a student of synonyms
+74988,synonymy synonymity synonymousness,the semantic relation that holds between two words that can (in a given context) express the same meaning
+74989,synovia synovial_fluid,viscid lubricating fluid secreted by the membrane lining joints and tendon sheaths etc.
+74990,synovial_joint articulatio_synovialis diarthrosis,a joint so articulated as to move freely
+74991,synovial_membrane synovium,a thin membrane in synovial (freely moving) joints that lines the joint capsule and secretes synovial fluid
+74992,synovitis,inflammation of the synovial membrane that lines a synovial joint; results in pain and swelling
+74993,synset,a set of one or more synonyms
+74994,syntagma syntagm,a syntactic string of words that forms a part of some larger syntactic unit
+74995,syntax,a systematic orderly arrangement
+74996,syntax,studies of the rules for forming admissible sentences
+74997,syntax sentence_structure phrase_structure,the grammatical arrangement of words in sentences
+74998,syntax_checker,a program to check natural language syntax
+74999,syntax_error,an error of language resulting from code that does not conform to the syntax of the programming language; "syntax errors can be recognized at compilation time"; "a common syntax error is to omit a parenthesis"
+75000,syntax_language,a language used to describe the syntax of another language
+75001,synthesis,the process of producing a chemical compound (usually by the union of simpler chemical compounds)
+75002,synthesis synthetic_thinking,the combination of ideas into a complex whole
+75003,synthesist synthesizer synthesiser,an intellectual who synthesizes or uses synthetic methods
+75004,synthesizer synthesiser,(music) an electronic instrument (usually played with a keyboard) that generates and modifies sounds electronically and can imitate a variety of other musical instruments
+75005,synthetic synthetic_substance,a compound made artificially by chemical reactions
+75006,synthetic_cubism,the late phase of cubism
+75007,synthetic_resin,a resin having a polymeric structure; especially a resin in the raw state; used chiefly in plastics
+75008,synthetism,a genre of French painting characterized by bright flat shapes and symbolic treatments of abstract ideas
+75009,syphilis syph pox lues_venerea lues,a common venereal disease caused by the treponema pallidum spirochete; symptoms change through progressive stages; can be congenital (transmitted through the placenta)
+75010,syphilitic,a person suffering from syphilis
+75011,syringe,a medical instrument used to inject or withdraw fluids
+75012,syrinx,the vocal organ of a bird
+75013,syrup sirup,a thick sweet sticky liquid
+75014,system,(physical chemistry) a sample of matter in which substances in different phases are in equilibrium; "in a static system oil cannot be replaced by water on a surface"; "a system generating hydrogen peroxide"
+75015,system,a procedure or process for obtaining an objective; "they had to devise a system that did not depend on cooperation"
+75016,system,a group of physiologically or anatomically related organs or parts; "the body has a system of organs for digestion"
+75017,system,the living body considered as made up of interdependent components forming a unified whole; "exercise helped him get the alcohol out of his system"
+75018,system,instrumentality that combines interrelated interacting artifacts designed to work as a coherent entity; "he bought a new stereo system"; "the system consists of a motor and a small computer"
+75019,system scheme,a group of independent but interrelated elements comprising a unified whole; "a vast system of production and distribution and consumption keep the country going"
+75020,system system_of_rules,a complex of methods or rules governing behavior; "they have to operate under a system they oppose"; "that language has a complex system for indicating gender"
+75021,system_administrator,a person in charge of managing and maintaining a computer system of telecommunication system (as for a business or institution)
+75022,system_call supervisor_call_instruction,an instruction that interrupts the program being executed and passes control to the supervisor
+75023,system_clock,a time-of-day clock in a computer system
+75024,system_clock,an electronic device in a computer that issues a steady high-frequency signal that synchronizes all the internal components
+75025,system_command,a computer user's instruction (not part of a program) that calls for action by the computer's executive program
+75026,system_error,an instruction that is either not recognized by an operating system or is in violation of the procedural rules
+75027,system_of_measurement metric,a system of related measures that facilitates the quantification of some particular characteristic
+75028,system_of_weights weight,a system of units used to express the weight of something
+75029,system_of_weights_and_measures,system of measurement for length and weight and duration
+75030,system_program systems_program systems_software,a program (as an operating system or compiler or utility program) that controls some aspect of the operation of a computer
+75031,systematics,the science of systematic classification
+75032,systematism,the habitual practice of systematization and classification
+75033,systematization systematisation rationalization rationalisation,systematic organization; the act of organizing something according to a system or a rationale
+75034,systemic_circulation,circulation that supplies blood to all the body except to the lungs
+75035,systemic_lupus_erythematosus SLE disseminated_lupus_erythematosus,an inflammatory disease of connective tissue with variable features including fever and weakness and fatigability and joint pains and skin lesions on the face or neck or arms
+75036,systems_analysis,analysis of all aspects of a project along with ways to collect information about the operation of its parts
+75037,systems_analyst,a person skilled at systems analysis
+75038,systole,the contraction of the chambers of the heart (especially the ventricles) to drive blood into the aorta and pulmonary artery
+75039,systolic_murmur,a murmur heard during systole
+75040,systolic_pressure,the blood pressure (as measured by a sphygmomanometer) during the contraction of the left ventricle of the heart
+75041,syzygy,the straight line configuration of 3 celestial bodies (as the sun and earth and moon) in a gravitational system
+75042,t'ai_chi tai_chi t'ai_chi_chuan tai_chi_chuan taichi taichichuan,a Chinese system of slow meditative physical exercise designed for relaxation and balance and health
+75043,tab,a short strip of material attached to or projecting from something in order to facilitate opening or identifying or handling it; "pull the tab to open the can"; "files with a red tab will be stored separately"; "the collar has a tab with a button hole"; "the filing cards were organized by cards having indexed tabs"
+75044,tab_key tab,the key on a typewriter or a word processor that causes a tabulation
+75045,tabard,a short sleeveless outer tunic emblazoned with a coat of arms; worn by a knight over his armor or by a herald
+75046,tabasco red_pepper,very hot red peppers; usually long and thin; some very small
+75047,tabasco_pepper hot_pepper tabasco_plant Capsicum_frutescens,plant bearing very hot medium-sized oblong red peppers; grown principally in the Gulf Coast states for production of hot sauce
+75048,tabbouleh tabooli,a finely chopped salad with tomatoes and parsley and mint and scallions and bulgur wheat
+75049,tabby queen,female cat
+75050,tabby tabby_cat,a cat with a grey or tawny coat mottled with black
+75051,tabes,wasting of the body during a chronic disease
+75052,tabes_dorsalis locomotor_ataxia,syphilis of the spinal cord characterized by degeneration of sensory neurons and stabbing pains in the trunk and legs and unsteady gait and incontinence and impotence
+75053,tabi tabis,a sock with a separation for the big toe; worn with thong sandals by the Japanese
+75054,tablature,a musical notation indicating the fingering to be used
+75055,table,a company of people assembled at a table for a meal or game; "he entertained the whole table with his witty remarks"
+75056,table,a piece of furniture with tableware for a meal laid out on it; "I reserved a table at my favorite restaurant"
+75057,table,a piece of furniture having a smooth flat top that is usually supported by one or more vertical legs; "it was a sturdy table"
+75058,table tabular_array,a set of data arranged in rows and columns; "see table 1"
+75059,table-mountain_pine prickly_pine hickory_pine Pinus_pungens,a small two-needled upland pine of the eastern United States (Appalachians) having dark brown flaking bark and thorn-tipped cone scales
+75060,table-tennis_racquet table-tennis_bat pingpong_paddle,paddle used to play table tennis
+75061,table-tennis_table ping-pong_table pingpong_table,a table used for playing table tennis
+75062,table_d'hote,a menu offering a complete meal with limited choices at a fixed price
+75063,table_game,a game that is played on a table
+75064,table_knife,a knife used for eating at dining table
+75065,table_lamp,a lamp that sits on a table
+75066,table_linen napery,linens for the dining table
+75067,table_mat hot_pad,a pad for use under a hot dish to protect a table
+75068,table_rapping table_tapping spirit_rapping,alleged form of communication with spirits of the dead
+75069,table_saw,a circular saw mounted under a table or bench so that the blade of the saw projects up through a slot
+75070,table_talk,conversation during a meal
+75071,table_tennis Ping-Pong,a game (trademark Ping-Pong) resembling tennis but played on a table with paddles and a light hollow ball
+75072,table_tipping table_tilting table_turning table_lifting,manipulation of a table during a seance; attributed to spirits
+75073,table_wine,wine containing not more than 14 percent alcohol usually served with a meal
+75074,tableau,any dramatic scene
+75075,tableau tableau_vivant,a group of people attractively arranged (as if in a painting)
+75076,tablecloth,a covering spread over a dining table
+75077,tablefork,a fork for eating at a dining table
+75078,tableland plateau,a relatively flat highland
+75079,tablemate dining_companion,someone you dine with
+75080,tablespoon,a spoon larger than a dessert spoon; used for serving
+75081,tablespoon tablespoonful,as much as a tablespoon will hold
+75082,tablet,a slab of stone or wood suitable for bearing an inscription
+75083,tablet,a small flat compressed cake of some substance; "a tablet of soap"
+75084,tablet-armed_chair,a chair with an arm that has been widened for writing
+75085,tabletop,the top horizontal work surface of a table
+75086,tableware,articles for use at the table (dishes and silverware and glassware)
+75087,tabloid rag sheet,newspaper with half-size pages
+75088,taboo tabu,a prejudice (especially in Polynesia and other South Pacific islands) that prohibits the use or mention of something because of its sacred nature
+75089,taboo tabu,an inhibition or ban resulting from social custom or emotional aversion
+75090,tabor tabour,a small drum with one head of soft calfskin
+75091,tabor_pipe,a small fipple flute that is played with the left hand while the right hand is free to beat a tabor
+75092,taboret tabouret,a low stool in the shape of a drum
+75093,tabula_rasa,a young mind not yet affected by experience (according to John Locke)
+75094,tabulation,the act of putting into tabular form; "the tabulation of the results"
+75095,tabulation tabular_matter,information set out in tabular form
+75096,tabun GA,the first known nerve agent, synthesized by German chemists in 1936; a highly toxic combustible liquid that is soluble in organic solvents and is used as a nerve gas in chemical warfare
+75097,tachina_fly,bristly fly whose larvae live parasitically in caterpillars and other insects; important in control of noxious insects
+75098,tachistoscope t-scope,scientific instrument used by psychologists; presents visual stimuli for brief exposures
+75099,tachogram,a graphical record of speed and distance produced by a tachograph
+75100,tachograph,a tachometer that produces a graphical record of its readings; used to record the speed and duration of trips in a motor vehicle
+75101,tachometer tach,measuring instrument for indicating speed of rotation
+75102,tachycardia,abnormally rapid heartbeat (over 100 beats per minute)
+75103,tachylite,a basic or basalt glass
+75104,tachymeter tacheometer,a theodolite designed for rapid measurements
+75105,tack,the heading or position of a vessel relative to the trim of its sails
+75106,tack,a short nail with a sharp point and a large head
+75107,tack,sailing a zigzag course
+75108,tack tacking,(nautical) the act of changing tack
+75109,tack_hammer,a light hammer that is used to drive tacks
+75110,tacker,a worker who fastens things by tacking them (as with tacks or by spotwelding)
+75111,tackle,the person who plays that position on a football team; "the right tackle is a straight A student"
+75112,tackle,(American football) a position on the line of scrimmage; "it takes a big man to play tackle"
+75113,tackle,(American football) grasping an opposing player with the intention of stopping by throwing to the ground
+75114,tackler,a football player who tackles the ball carrier
+75115,taco,a tortilla rolled cupped around a filling
+75116,taco_sauce,spicy tomato-based sauce for tacos
+75117,taconite,a variety of chert containing magnetite and hematite; mined as a low-grade iron ore
+75118,tact tactfulness,consideration in dealing with others and avoiding giving offense
+75119,tactic tactics maneuver manoeuvre,a plan for attaining a particular goal
+75120,tactical_intelligence combat_intelligence,intelligence that is required for the planning and conduct of tactical operations
+75121,tactical_warning,(military) a warning after the initiation of a hostile act
+75122,tactician,a person who is skilled at planning tactics
+75123,tactics,the branch of military science dealing with detailed maneuvers to achieve objectives set by strategy
+75124,tactile_property feel,a property perceived by touch
+75125,tactlessness,the quality of lacking tact
+75126,tactual_sensation tactility touch_perception skin_perceptiveness,the faculty of perceiving (via the skin) pressure or heat or pain
+75127,tad shade,a slight amount or degree of difference; "a tad too expensive"; "not a tad of difference"; "the new model is a shade better than the old one"
+75128,tadalafil Cialis,virility drug (trade name Cialis) used to treat erectile dysfunction in men
+75129,tadpole polliwog pollywog,a larval frog or toad
+75130,tadpole_shrimp,a kind of branchiopod crustacean
+75131,tae_kwon_do taekwondo,a Korean martial art similar to karate
+75132,tael,a unit of weight used in east Asia approximately equal to 1.3 ounces
+75133,taenia,tapeworms parasitic in humans which uses the pig as its intermediate host
+75134,taenia tenia fillet,a narrow headband or strip of ribbon worn as a headband
+75135,taffeta,a crisp smooth lustrous fabric
+75136,taffrail,the railing around the stern of a ship
+75137,taffy,chewy candy of sugar or syrup boiled until thick and pulled until glossy
+75138,tag,a label associated with something for the purpose of identification; "semantic tags were attached in order to identify different meanings of the word"
+75139,tag,a game in which one child chases the others; the one who is caught becomes the next chaser
+75140,tag,(sports) the act of touching a player in a game (which changes their status in the game)
+75141,tag ticket,a label written or printed on paper, cardboard, or plastic that is attached to something to indicate its owner, nature, price, etc.
+75142,tagalong hanger-on,someone who persistently (and annoyingly) follows along
+75143,tagasaste Chamaecytisus_palmensis Cytesis_proliferus,shrub of Canary Islands having bristle-tipped oblanceolate leaves; used as cattle fodder
+75144,tagger,someone who assigns labels to the grammatical constituents of textual matter
+75145,tagger,someone who appends or joins one thing to another; "a theory that was simply added on by some anonymous tagger"
+75146,tagger tagging_program,a computer program that attaches labels to the grammatical constituents of textual matter
+75147,tagliatelle,pasta cut in narrow ribbons
+75148,taguan flying_marmot flying_cat Petaurista_petaurista,East Indian flying squirrel
+75149,tahini,a thick Middle Eastern paste made from ground sesame seeds
+75150,tahoka_daisy tansy_leaf_aster Machaeranthera_tanacetifolia,wild aster with fernlike leaves and flower heads with very narrow bright purple rays; Alberta to Texas and Mexico
+75151,tail,(usually plural) the reverse side of a coin that does not bear the representation of a person's head
+75152,tail,the posterior part of the body of a vertebrate especially when elongated and extending beyond the trunk or main part of the body
+75153,tail shadow shadower,a spy employed to follow someone and report their movements
+75154,tail tail_assembly empennage,the rear part of an aircraft
+75155,tail tail_end,any projection that resembles the tail of an animal
+75156,tail_feather,feather growing from the tail (uropygium) of a bird
+75157,tail_fin caudal_fin,the tail of fishes and some other aquatic vertebrates
+75158,tail_fin tailfin fin,one of a pair of decorations projecting above the rear fenders of an automobile
+75159,tail_gate,a gate downstream from a lock or canal that is used to control the flow of water at the lower end
+75160,tail_rotor anti-torque_rotor,rotor consisting of a rotating airfoil on the tail of a single-rotor helicopter; keeps the helicopter from spinning in the direction opposite to the rotation of the main rotor
+75161,tailback,(American football) the person who plays tailback
+75162,tailback,(American football) the position of the offensive back on a football team who lines up farthest from the line of scrimmage
+75163,tailed_frog bell_toad ribbed_toad tailed_toad Ascaphus_trui,western North American frog with a taillike copulatory organ
+75164,tailgate tailboard,a gate at the rear of a vehicle; can be lowered for loading
+75165,tailgater,a driver who follows too closely behind another motor vehicle
+75166,tailless_tenrec Tenrec_ecaudatus,prolific animal that feeds chiefly on earthworms
+75167,taillight tail_lamp rear_light rear_lamp,lamp (usually red) mounted at the rear of a motor vehicle
+75168,tailor seamster sartor,a person whose occupation is making and altering garments
+75169,tailor's_chalk,chalk used by tailors to make temporary marks on cloth
+75170,tailor's_tack,a loose, looped, sewing stitch used to transfer marking for darts, etc., from a pattern to material
+75171,tailor-made,custom-made clothing
+75172,tailorbird Orthotomus_sutorius,tropical Asian warbler that stitches leaves together to form and conceal its nest
+75173,tailoring,the occupation of a tailor
+75174,tailpiece,appendage added to extend the length of something
+75175,tailpipe,a pipe carrying fumes from the muffler to the rear of a car
+75176,tailrace,a watercourse that carries water away from a mill or water wheel or turbine
+75177,tailspin,loss of emotional control often resulting in emotional collapse
+75178,tailspin spin,rapid descent of an aircraft in a steep spiral
+75179,tailstock,support consisting of the movable part of a lathe that slides along the bed in alignment with the headstock and is locked into position to support the free end of the workpiece
+75180,tailwind,wind blowing in the same direction as the path of a ship or aircraft
+75181,taipan Oxyuranus_scutellatus,large highly venomous snake of northeastern Australia
+75182,taka,the basic unit of money in Bangladesh; equal to 100 paisa
+75183,take,the act of photographing a scene or part of a scene without interruption
+75184,take-home_pay,what is left of your pay after deductions for taxes and dues and insurance etc
+75185,take-in,the act of taking in as by fooling or cheating or swindling someone
+75186,take-up,any of various devices for reducing slack (as in a sewing machine) or taking up motion (as in a loom); "a take-up that winds photographic film on a spool"
+75187,take-up,the action of taking up as by tightening or absorption or reeling in
+75188,takeaway,a concession made by a labor union to a company that is trying to lower its expenditures
+75189,takeaway,the act of taking the ball or puck away from the team on the offense (as by the interception of a pass)
+75190,takedown,(amateur wrestling) being brought to the mat from a standing position; "a takedown counts two points"
+75191,takeoff,the initial ascent of an airplane as it becomes airborne
+75192,takeoff,a departure; especially of airplanes
+75193,takeout,(bridge) a bid that asks your partner to bid another suit
+75194,takeout takeout_food takeaway,prepared food that is intended to be eaten off of the premises; "in England they call takeout food `takeaway'"
+75195,takeover,a change by sale or merger in the controlling interest of a corporation
+75196,takeover_attempt,an attempt to take control of a corporation
+75197,takeover_bid,an offer to buy shares in order to take over the company
+75198,taker,one who accepts an offer
+75199,taker,one who takes a bet or wager
+75200,takin gnu_goat Budorcas_taxicolor,large heavily built goat antelope of eastern Himalayan area
+75201,tala,the basic unit of money in Western Samoa
+75202,talapoin Cercopithecus_talapoin,smallest guenon monkey; of swampy central and west African forests
+75203,talaria,a winged sandal (as worn by Hermes in Graeco-Roman art)
+75204,talc talcum,a fine grained mineral having a soft soapy feel and consisting of hydrated magnesium silicate; used in a variety of products including talcum powder
+75205,talcum talcum_powder,a toilet powder made of purified talc and usually scented; absorbs excess moisture
+75206,talent,a person who possesses unusual innate ability in some field or activity
+75207,talent_agent,an agent who represents performers
+75208,talentlessness,a lack of talent
+75209,talipes_calcaneus,talipes in which the toes are pointed upward and the person walks on the heel of the foot
+75210,talipes_equinus,talipes in which the toes are pointed downward
+75211,talipes_valgus,deformity of the foot in which the foot is twisted outward
+75212,talipot talipot_palm Corypha_umbraculifera,tall palm of southern India and Sri Lanka with gigantic leaves used as umbrellas and fans or cut into strips for writing paper
+75213,talk,discussion; (`talk about' is a less formal alternative for `discussion of'); "his poetry contains much talk about love and anger"
+75214,talk,the act of giving a talk to an audience; "I attended an interesting talk on local history"
+75215,talk talk_of_the_town,idle gossip or rumor; "there has been talk about you lately"
+75216,talk talking,an exchange of ideas via conversation; "let's have more work and less talk around here"
+75217,talk_show chat_show,a program during which well-known people discuss a topic or answer questions telephoned in by the audience; "in England they call a talk show a chat show"
+75218,talking_book,sound recording of someone reading a book; frequently used by blind people
+75219,talking_head,a talker on television who talks directly into the cameras and whose upper body is all that is shown on the screen
+75220,talking_picture talkie,a movie with synchronized speech and singing
+75221,talking_point,an especially persuasive point helping to support an argument or discussion
+75222,tall,a garment size for a tall person
+75223,tall_bellflower Campanula_americana,annual or perennial of eastern North America with long spikes of blue or white flowers
+75224,tall_cupflower Nierembergia_frutescens,shrubby Chilean herb having bluish-white tubular flowers used as an ornamental
+75225,tall_gallberry_holly,an evergreen shrub
+75226,tall_goldenrod,a variety of goldenrod
+75227,tall_mallow high_mallow cheese cheeseflower Malva_sylvestris,erect or decumbent Old World perennial with axillary clusters of rosy-purple flowers; introduced in United States
+75228,tall_oat_grass tall_meadow_grass evergreen_grass false_oat French_rye Arrhenatherum_elatius,coarse perennial Eurasian grass resembling oat; found on roadside verges and rough grassland and in hay meadows; introduced in North America for forage
+75229,tall_oil,an oil derived from wood pulp and used in making soaps or lubricants
+75230,tall_order large_order,a formidable task or requirement; "finishing in time was a tall order but we did it"
+75231,tall_tale,an improbable (unusual or incredible or fanciful) story
+75232,tall_yellow-eye Xyris_operculata,of Australia
+75233,tallgrass tall-grass,any of various grasses that are tall and that flourish with abundant moisture
+75234,tallness,the property of being taller than average stature
+75235,tallow,obtained from suet and used in making soap, candles and lubricants
+75236,tallow_oil,an animal oil obtained by pressing tallow; used as a lubricant
+75237,tallyman,one who sells goods on the installment plan
+75238,tallyman tally_clerk,one who keeps a tally of quantity or weight of goods produced or shipped or received
+75239,talon,a sharp hooked claw especially on a bird of prey
+75240,talus scree,a sloping mass of loose rocks at the base of a cliff
+75241,tam tam-o'-shanter tammy,a woolen cap of Scottish origin
+75242,tamal tamale,dough stuffed with a meat mixture and sometimes wrapped in corn husks and steamed
+75243,tamale_pie,a meat mixture covered with cornbread topping that resembles a Mexican dish
+75244,tamandua tamandu lesser_anteater Tamandua_tetradactyla,small toothless anteater with prehensile tail and four-clawed forelimbs; of tropical South America and Central America
+75245,tamarau tamarao Bubalus_mindorensis Anoa_mindorensis,small buffalo of Mindoro in the Philippines
+75246,tamarin lion_monkey lion_marmoset leoncita,small South American marmoset with silky fur and long nonprehensile tail
+75247,tamarind tamarind_tree tamarindo Tamarindus_indica,long-lived tropical evergreen tree with a spreading crown and feathery evergreen foliage and fragrant flowers yielding hard yellowish wood and long pods with edible chocolate-colored acidic pulp
+75248,tamarind tamarindo,large tropical seed pod with very tangy pulp that is eaten fresh or cooked with rice and fish or preserved for curries and chutneys
+75249,tamarisk,any shrub or small tree of the genus Tamarix having small scalelike or needle-shaped leaves and feathery racemes of small white or pinkish flowers; of mostly coastal areas with saline soil
+75250,tamarisk_gerbil Meriones_unguiculatus,a gerbil that is popular as a pet
+75251,tambala,100 tambala equal 1 kwacha in Malawi
+75252,tambour,a drum
+75253,tambour embroidery_frame embroidery_hoop,a frame made of two hoops; used for embroidering
+75254,tambourine,a shallow drum with a single drumhead and with metallic disks in the sides
+75255,tameness domestication,the attribute of having been domesticated
+75256,tamer,an animal trainer who tames wild animals
+75257,tammy,plain-woven (often glazed) fabric of wool or wool and cotton used especially formerly for linings and garments and curtains
+75258,tamp tamper tamping_bar,a tool for tamping (e.g., for tamping tobacco into a pipe bowl or a charge into a drill hole etc.)
+75259,tampion tompion,plug for the muzzle of a gun to keep out dust and moisture
+75260,tampon,plug of cotton or other absorbent material; inserted into wound or body cavity to absorb exuded fluids (especially blood)
+75261,tamponade tamponage,blockage or closure (as of a wound or body cavity) by (or as if by) a tampon (especially to stop bleeding)
+75262,tan suntan sunburn burn,a browning of the skin resulting from exposure to the rays of the sun
+75263,tan topaz,a light brown the color of topaz
+75264,tanager,any of numerous New World woodland birds having brightly colored males
+75265,tanbark,bark rich in tannin; bruised and cut in pieces to use for tanning; spent tanbark used as a ground covering
+75266,tanbark_oak Lithocarpus_densiflorus,evergreen tree of the Pacific coast area having large leathery leaves; yields tanbark
+75267,tandem,an arrangement of two or more objects or persons one behind another
+75268,tandem_trailer,trucking rig with two trailers in tandem
+75269,tandoor,a clay oven used in northern India and Pakistan
+75270,tanekaha Phyllocladus_trichomanoides,medium tall celery pine of New Zealand
+75271,tang sea_tang,any of various coarse seaweeds
+75272,tanga,100 tanga equal 1 Tajikistani ruble
+75273,tangelo tangelo_tree ugli_fruit Citrus_tangelo,hybrid between grapefruit and mandarin orange; cultivated especially in Florida
+75274,tangelo ugli ugli_fruit,large sweet juicy hybrid between tangerine and grapefruit having a thick wrinkled skin
+75275,tangency,the state of being tangent; having contact at a single point or along a line without crossing
+75276,tangent,a straight line or plane that touches a curve or curved surface at a point but does not intersect it at that point
+75277,tangent tan,ratio of the opposite to the adjacent side of a right-angled triangle
+75278,tangent_plane,the plane that contains all the lines tangent to a specific point on a surface
+75279,tangerine,any of various deep orange mandarins grown in the United States and southern Africa
+75280,tangerine,a reddish to vivid orange color
+75281,tangerine tangerine_tree,a variety of mandarin orange
+75282,tangibility tangibleness palpability,the quality of being perceivable by touch
+75283,tangible_possession material_possession,property or belongings that are tangible
+75284,tangle,a twisted and tangled mass that is highly interwoven; "they carved their way through the tangle of vines"
+75285,tangle snarl maze,something jumbled or confused; "a tangle of government regulations"
+75286,tangle_orchid,an orchid of the genus Plectorrhiza having tangled roots and long wiry stems bearing lax racemes of small fragrant green flowers
+75287,tanglebush desert_olive Forestiera_neomexicana,spiny branching deciduous shrub of southwestern United States having clusters of insignificant yellow-white flowers appearing before leaves followed by attractive black berrylike fruits
+75288,tango,music written in duple time for dancing the tango
+75289,tango,a ballroom dance of Latin-American origin
+75290,tangram,a Chinese puzzle consisting of a square divided into seven pieces that must be arranged to match particular designs
+75291,tank army_tank armored_combat_vehicle armoured_combat_vehicle,an enclosed armored military vehicle; has a cannon and moves on caterpillar treads
+75292,tank storage_tank,a large (usually metallic) vessel for holding gases or liquids
+75293,tank tankful,as much as a tank will hold
+75294,tank_car tank,a freight car that transports liquids or gases in bulk
+75295,tank_circuit,an oscillatory circuit
+75296,tank_destroyer,an armored vehicle equipped with an antitank gun and capable of high speeds
+75297,tank_engine tank_locomotive,a locomotive that carries its own fuel and water; no tender is needed
+75298,tank_farm,an area used exclusively for storing petroleum in large tanks
+75299,tank_furnace,furnace into one end of which a batch of measured raw materials is shoveled and from the other end molten glass is obtained
+75300,tank_iron,plate iron that is thinner than boilerplate but thicker than sheet iron or stovepipe iron
+75301,tank_shell,a shell fired by the cannon on a tank
+75302,tank_top,a tight-fitting sleeveless shirt with wide shoulder straps and low neck and no front opening; often worn over a shirt or blouse
+75303,tanka,a form of Japanese poetry; the 1st and 3rd lines have five syllables and the 2nd, 4th, and 5th have seven syllables
+75304,tanka,a Tibetan religious painting on fabric
+75305,tankage,the quantity contained in (or the capacity of) a tank or tanks
+75306,tankage,the charge for storing something in tanks
+75307,tankage,the act of storing in tanks
+75308,tankard,large drinking vessel with one handle
+75309,tanker tank_driver,a soldier who drives a tank
+75310,tanker_plane,an airplane constructed to transport chemicals that can be dropped in order to fight a forest fire
+75311,tanner,a craftsman who tans skins and hides
+75312,tannery,workplace where skins and hides are tanned
+75313,tannin tannic_acid,any of various complex phenolic substances of plant origin; used in tanning and in medicine
+75314,tanning,process in which skin pigmentation darkens as a result of exposure to ultraviolet light
+75315,tanning,making leather from rawhide
+75316,tannoy,a loudspeaker
+75317,tansy golden_buttons scented_fern Tanacetum_vulgare,common perennial aromatic herb native to Eurasia having buttonlike yellow flower heads and bitter-tasting pinnate leaves sometimes used medicinally
+75318,tansy-leaved_rocket Hugueninia_tanacetifolia Sisymbrium_tanacetifolia,perennial stellate and hairy herb with small yellow flowers of mountains of southern Europe; sometimes placed in genus Sisymbrium
+75319,tansy_mustard Descurainia_pinnata,North American herb with bitter-tasting pinnate leaves resembling those of tansy
+75320,tantalite,a mineral consisting of tantalum oxide of iron and manganese that occurs with niobite or in coarse granite; an ore of tantalum
+75321,tantalizer tantaliser,someone who tantalizes; a tormentor who offers something desirable but keeps it just out of reach
+75322,tantalum Ta atomic_number_73,a hard grey lustrous metallic element that is highly resistant to corrosion; occurs in niobite and fergusonite and tantalite
+75323,tantra,any of a fairly recent class of Hindu or Buddhist religious literature concerned with ritual acts of body and speech and mind
+75324,taoiseach,the prime minister of the Irish Republic
+75325,tap,a small metal plate that attaches to the toe or heel of a shoe (as in tap dancing)
+75326,tap,a tool for cutting female (internal) screw threads
+75327,tap pat dab,a light touch or stroke
+75328,tap spigot,a plug for a bunghole in a cask
+75329,tap_dancer tapper,a dancer who sounds out rhythms by using metal taps on the toes and heels of the shoes
+75330,tap_dancing tap_dance,a dance step tapped out audibly with the feet
+75331,tap_water,water directly from the spigot
+75332,tap_wrench,a wrench for turning a tap to create an internal screw thread
+75333,tapa tapa_bark tappa tappa_bark,the thin fibrous bark of the paper mulberry and Pipturus albidus
+75334,tapa tappa,a paperlike cloth made in the South Pacific by pounding tapa bark
+75335,tape,the finishing line for a foot race; "he broke the tape in record time"
+75336,tape,a long thin piece of cloth or paper as used for binding or fastening; "he used a piece of tape for a belt"; "he wrapped a tape around the package"
+75337,tape tape_recording taping,a recording made on magnetic tape; "the several recordings were combined on a master tape"
+75338,tape tapeline tape_measure,measuring instrument consisting of a narrow strip (cloth or metal) marked in inches or centimeters and used for measuring lengths; "the carpenter should have used his tape measure"
+75339,tape_cartridge,a cartridge containing magnetic tape; for use with audio or video recorders or computer systems
+75340,tape_deck,electronic equipment for making or playing magnetic tapes (but without amplifiers or speakers); a component in an audio system
+75341,tape_drive tape_transport transport,a mechanism that transports magnetic tape across the read/write heads of a tape playback/recorder
+75342,tape_grass eelgrass wild_celery Vallisneria_spiralis,submerged aquatic plant with ribbonlike leaves; Old World and Australia
+75343,tape_player,electronic equipment for playing back magnetic tapes
+75344,tape_recorder tape_machine,a magnetic recorder using magnetic tape
+75345,tapenade,a spread consisting of capers and black olives and anchovies made into a puree with olive oil
+75346,taper,a convex shape that narrows toward a point
+75347,taper,the property possessed by a shape that narrows toward a point (as a wedge or cone)
+75348,taper_file,a file with converging edges
+75349,tapering,the act of gradually lowering the size or amount; "the doctor prescribed the tapering of the dose"
+75350,tapestry,something that resembles a tapestry in its intricacy; "the tapestry of European history"
+75351,tapestry arras,a wall hanging of heavy handwoven fabric often with pictorial designs
+75352,tapestry tapis,a heavy textile with a woven design; used for curtains and upholstery
+75353,tapeworm cestode,ribbonlike flatworms that are parasitic in the intestines of humans and other vertebrates
+75354,tapeworm_infection,intestinal infection by a species of parasitic tapeworm; usually the result of eating inadequately cooked meat or fish
+75355,taphephobia,a morbid fear of being buried alive
+75356,tapioca,granular preparation of cassava starch used to thicken especially puddings
+75357,tapioca_pudding,sweet pudding thickened with tapioca
+75358,tapir,large inoffensive chiefly nocturnal ungulate of tropical America and southeast Asia having a heavy body and fleshy snout
+75359,tapotement,massage in which the body is tapped rhythmically with the fingers or with short rapid movements of the sides of the hand; used to loosen mucus on the chest walls of patients with bronchitis
+75360,tapper,a person who strikes a surface lightly and usually repeatedly; "finger tappers irritated her"
+75361,tapper,a worker who uses a tap to cut screw threads
+75362,tapper wiretapper phone_tapper,someone who wiretaps a telephone or telegraph wire
+75363,tappet,a lever that is moved in order to tap something else
+75364,tapping,the sound of light blow or knock; "he heard the tapping of the man's cane"
+75365,taproot,(botany) main root of a plant growing straight downward from the stem
+75366,taproot,something that provides an important central source for growth or development; "the taproot of his resentment"; "genius and insanity spring from the same taproot"
+75367,taps lights-out,(military) signal to turn the lights out
+75368,tapster tapper,a tavern keeper who taps kegs or casks
+75369,tar_pit,a natural accumulation of bitumens at the surface of the earth; often acts as a trap for animals whose bones are thus preserved
+75370,tarahumara_frog Rana_tarahumarae,Mexican frog found within a jump or two of water
+75371,tarantella,music composed in six-eight time for dancing the tarantella
+75372,tarantella tarantelle,a lively whirling Italian dance for two persons
+75373,tarantism,a nervous disorder characterized by an uncontrollable impulse to dance; popularly attributed to bite of the southern European tarantula or wolf spider
+75374,tarantula,large hairy tropical spider with fangs that can inflict painful but not highly venomous bites
+75375,tardigrade,an arthropod of the division Tardigrada
+75376,tardiness,the quality or habit of not adhering to a correct or usual or expected time
+75377,tardive_dyskinesia,involuntary rolling of the tongue and twitching of the face or trunk or limbs; often occurs in patients with Parkinsonism who are treated with phenothiazine
+75378,tare,an adjustment made for the weight of the packaging in order to determine the net weight of the goods
+75379,tare,any of several weedy vetches grown for forage
+75380,tare,the weight of a motor vehicle, railroad car, or aircraft without its fuel or cargo
+75381,tare,(chemical analysis) a counterweight used in chemical analysis; consists of an empty container that counterbalances the weight of the container holding chemicals
+75382,taret_organ,(endocrinology) organ most affected by a particular hormone
+75383,target butt,sports equipment consisting of an object set up for a marksman or archer to aim at
+75384,target mark,a reference point to shoot at; "his arrow hit the mark"
+75385,target target_area,the location of the target that is to be hit
+75386,target_acquisition_system,a shipboard system for the detection and identification and location of a target with enough detail to permit effective weapon employment
+75387,target_cell,any cell that has a specific receptor for an antigen or antibody or hormone or drug, or is the focus of contact by a virus or phagocyte or nerve fiber etc.
+75388,target_cell,an abnormal red blood cell with the appearance of a dark ring surrounding a dark center; associated with anemia
+75389,target_company takeover_target,a company that has been chosen as attractive for takeover by a potential acquirer
+75390,target_organ,(radiology) organ intended to receive the therapeutic dose of a radioactive substance
+75391,target_practice,practice in shooting at targets
+75392,tarmacadam tarmac,a paving material of tar and broken stone; mixed in a factory and shaped during paving
+75393,tarmacadam tarmac macadam,a paved surface having compressed layers of broken rocks held together with tar
+75394,tarn,a mountain lake (especially one formed by glaciers)
+75395,tarnish,discoloration of metal surface caused by oxidation
+75396,tarnished_plant_bug Lygus_lineolaris,widespread plant and fruit pest
+75397,taro cocoyam dasheen eddo,edible starchy tuberous root of taro plants
+75398,taro taro_plant dalo dasheen Colocasia_esculenta,herb of the Pacific islands grown throughout the tropics for its edible root and in temperate areas as an ornamental for its large glossy leaves
+75399,taro taro_root cocoyam dasheen edda,tropical starchy tuberous root
+75400,tarot_card tarot,any of a set of (usually 78) cards that include 22 cards representing virtues and vices and death and fortune etc.; used for playing card games and for divination by fortunetellers
+75401,tarpan Equus_caballus_gomelini,European wild horse extinct since the early 20th century
+75402,tarpaulin tarp,waterproofed canvas
+75403,tarpon Tarpon_atlanticus,large silvery game fish of warm Atlantic coastal waters especially off Florida
+75404,tarragon estragon,fresh leaves (or leaves preserved in vinegar) used as seasoning
+75405,tarragon estragon Artemisia_dracunculus,aromatic perennial of southeastern Russia
+75406,tarriance lingering,the act of tarrying
+75407,tarsal tarsal_bone,any bone of the tarsus
+75408,tarsier,nocturnal arboreal primate of Indonesia and the Philippines having huge eyes and digits ending in pads to facilitate climbing; the only primate that spurns all plant material as food living entirely on insects and small vertebrates
+75409,tarsitis,inflammation of the eyelid
+75410,tarsus,the part of the foot of a vertebrate between the metatarsus and the leg; in human beings the bones of the ankle and heel collectively
+75411,tart,a small open pie with a fruit filling
+75412,tart,a pastry cup with a filling of fruit or custard and no top crust
+75413,tartan plaid,a cloth having a crisscross design
+75414,tartar calculus tophus,an incrustation that forms on the teeth and gums
+75415,tartar_emetic antimony_potassium_tartrate,a poisonous colorless salt used as a mordant and in medicine
+75416,tartare_sauce tartar_sauce,mayonnaise with chopped pickles and sometimes capers and shallots and parsley and hard-cooked egg; sauce for seafood especially fried fish
+75417,tartaric_acid,an acid found in many fruits; used in soft drinks and confectionery and baking powder
+75418,tartlet,a small tart usually used as a canape
+75419,tartrate,a salt or ester of tartaric acid
+75420,tarweed,any of various resinous glandular plants of the genus Madia; of western North and South America
+75421,tarwood tar-wood Dacrydium_colensoi,New Zealand silver pine of conical habit with long slender flexuous branches; adapted to cold wet summers and high altitudes
+75422,tarwood tar-wood New_Zealand_mountain_pine Halocarpus_bidwilli Dacrydium_bidwilli,New Zealand shrub
+75423,task_force,a semipermanent unit created to carry out a continuing task
+75424,task_force,a temporary military unit formed to accomplish a particular objective
+75425,taskmaster,someone who imposes hard or continuous work
+75426,taskmistress,a woman taskmaster
+75427,tassel,adornment consisting of a bunch of cords fastened at one end
+75428,tassel_flower Emilia_coccinea Emilia_javanica Emilia_flammea Cacalia_javanica Cacalia_lutea,tropical African annual having scarlet tassel-shaped flower heads; sometimes placed in genus Cacalia
+75429,tassel_flower Emilia_sagitta,tropical Asiatic annual cultivated for its small tassel-shaped heads of scarlet flowers
+75430,tassel_hyacinth Muscari_comosum,large beautiful Mediterranean species having sterile bluish-violet flowers with fringed corollas forming a tuft above the fertile flowers
+75431,tasset tasse,one of two pieces of armor plate hanging from the fauld to protect the upper thighs
+75432,taste,a brief experience of something; "he got a taste of life on the wild side"; "she enjoyed her brief taste of independence"
+75433,taste appreciation discernment perceptiveness,delicate discrimination (especially of aesthetic values); "arrogance and lack of taste contributed to his rapid success"; "to ask at that particular time was the ultimate in bad taste"
+75434,taste gustation sense_of_taste gustatory_modality,the faculty of distinguishing sweet, sour, bitter, and salty properties in the mouth; "his cold deprived him of his sense of taste"
+75435,taste mouthful,a small amount eaten or drunk; "take a taste--you'll like it"
+75436,taste taste_sensation gustatory_sensation taste_perception gustatory_perception,the sensation that results when taste buds in the tongue and throat convey information about the chemical composition of a soluble stimulus; "the candy left him with a bad taste"; "the melon had a delicious taste"
+75437,taste tasting,a kind of sensing; distinguishing substances by means of the taste buds; "a wine tasting"
+75438,taste_cell gustatory_cell,an epithelial cell in a taste bud that activates sensory fibers of the facial nerve or the glossopharyngeal nerve or the vagus nerve
+75439,taste_property,a property appreciated via the sense of taste
+75440,tastebud taste_bud gustatory_organ,an oval sensory end organ on the surface of the tongue
+75441,tastefulness,elegance indicated by good taste
+75442,tastelessness,inelegance indicated by a lack of good taste
+75443,taster taste_tester taste-tester sampler,someone who samples food or drink for its quality
+75444,tastiness,a pleasing palatability
+75445,tasting,a small amount (especially of food or wine)
+75446,tasting savoring savouring relishing degustation,taking a small amount into the mouth to test its quality; "cooking was fine but it was the savoring that he enjoyed most"
+75447,tatouay cabassous Cabassous_unicinctus,naked-tailed armadillo of tropical South America
+75448,tatting,needlework consisting of handmade lace made by looping and knotting a single thread on a small shuttle
+75449,tattle singing telling,disclosing information or giving evidence about another
+75450,tattler,any of several long-legged shorebirds having a loud whistling cry
+75451,tattletale tattler taleteller talebearer telltale blabbermouth,someone who gossips indiscreetly
+75452,tattletale_grey tattletale_gray,a greyish white
+75453,tattoo,a drumbeat or bugle call that signals the military to return to their quarters
+75454,tattoo,a design on the skin made by tattooing
+75455,tattoo,the practice of making a design on the skin by pricking and staining
+75456,tau,the 19th letter of the Greek alphabet
+75457,tau_coefficient_of_correlation Kendall's_tau Kendall_rank_correlation,a nonparametric measure of the agreement between two rankings
+75458,tau_cross St._Anthony's_cross,cross resembling the Greek letter tau
+75459,tauon tau-minus_particle,a lepton of very great mass
+75460,taupe,a greyish brown
+75461,taurine,a colorless crystalline substance obtained from the bile of mammals
+75462,tautog blackfish Tautoga_onitis,large dark-colored food fish of the Atlantic coast of North America
+75463,tautology,(logic) a statement that is necessarily true; "the statement `he is brave or he is not brave' is a tautology"
+75464,tautology,useless repetition; "to say that something is `adequate enough' is a tautology"
+75465,tavern tap_house,a building with a bar that is licensed to sell alcoholic drinks
+75466,taw,the 23rd letter of the Hebrew alphabet
+75467,taw shooter,a large marble used for shooting in the game of marbles
+75468,tawniness,the quality or state of being the color of tanned leather; "the tawniness of his complexion"
+75469,tawny_eagle Aquila_rapax,brownish eagle of Africa and parts of Asia
+75470,tawny_owl Strix_aluco,reddish-brown European owl having a round head with black eyes
+75471,tawse,a leather strap for punishing children
+75472,tax taxation revenue_enhancement,charge against a citizen's person or property or activity for the support of government
+75473,tax-exempt_security tax-exempt,a security that is not subject to taxation
+75474,tax-increase tax_boost tax_hike,the amount by which taxes are increased; "a tax increase of 15 percent"
+75475,tax_advantage,an advantage bestowed by legislation that reduces a tax on some preferred activity
+75476,tax_assessment,the value set on taxable property
+75477,tax_assessor assessor,an official who evaluates property for the purpose of taxing it
+75478,tax_avoidance,the minimization of tax liability by lawful methods
+75479,tax_base,collective value of taxable assets
+75480,tax_benefit tax_break,a tax deduction that is granted in order to encourage a particular type of commercial activity
+75481,tax_bill,money owed for taxes
+75482,tax_collection,the collection of taxes
+75483,tax_collector taxman exciseman collector_of_internal_revenue internal_revenue_agent,someone who collects taxes for the government
+75484,tax_credit,a direct reduction in tax liability (not dependent on the taxpayer's tax bracket)
+75485,tax_cut,the act of reducing taxation; "the new administration's large tax cut was highly controversial"
+75486,tax_evasion,the deliberate failure to pay taxes (usually by making a false report)
+75487,tax_form,a form to use when paying your taxes
+75488,tax_haven,a country or independent region where taxes are low
+75489,tax_income taxation tax_revenue revenue,government income due to taxation
+75490,tax_law,the body of laws governing taxation
+75491,tax_liability,the amount of tax owed; calculated by applying the tax rate to the tax base
+75492,tax_lien,lien of which a tax collector may avail himself in default of taxes (analogous to a judgment lien)
+75493,tax_program tax_policy,a program for setting taxes
+75494,tax_rate,rate used to calculate tax liability
+75495,tax_return income_tax_return return,document giving the tax collector information about the taxpayer's tax liability; "his gross income was enough that he had to file a tax return"
+75496,tax_shelter shelter,a way of organizing business to reduce the taxes it must pay on current earnings
+75497,tax_system,a legal system for assessing and collecting taxes
+75498,tax_write-off tax_deduction deduction,a reduction in the gross amount on which a tax is calculated; reduces taxes by the percentage fixed for the taxpayer's income bracket
+75499,taxability,liability to taxation
+75500,taxation,the imposition of taxes; the practice of the government in levying taxes on the subjects of a state
+75501,taxer,a bureaucrat who levies taxes
+75502,taxi_dancer,a woman employed to dance with patrons who pay a fee for each dance
+75503,taxidermist animal_stuffer stuffer,a craftsman who stuffs and mounts the skins of animals for display
+75504,taxidermy,the art of mounting the skins of animals so that they have lifelike appearance
+75505,taxidriver taximan cabdriver cabman cabby hack_driver hack-driver livery_driver,someone who drives a taxi for a living
+75506,taximeter,a meter in a taxi that registers the fare (based on the length of the ride)
+75507,taxis,a locomotor response toward or away from an external stimulus by a motile (and usually simple) organism
+75508,taxis,the surgical procedure of manually restoring a displaced body part
+75509,taxiway taxi_strip,a paved surface in the form of a strip; used by planes taxiing to or from the runway at an airport
+75510,taxonomic_group taxonomic_category taxon,animal or plant group having natural relations
+75511,taxonomist taxonomer systematist,a biologist who specializes in the classification of organisms into groups on the basis of their structure and origin and behavior
+75512,taxonomy,a classification of organisms into groups based on similarities of structure or origin etc
+75513,taxonomy,(biology) study of the general principles of scientific classification
+75514,taxonomy,practice of classifying plants and animals according to their presumed natural relationships
+75515,taxpayer,someone who pays taxes
+75516,tayra taira Eira_barbara,long-tailed arboreal mustelid of Central America and South America
+75517,tea,a reception or party at which tea is served; "we met at the Dean's tea for newcomers"
+75518,tea,a beverage made by steeping tea leaves in water; "iced tea is a cooling drink"
+75519,tea Camellia_sinensis,a tropical evergreen shrub or small tree extensively cultivated in e.g. China and Japan and India; source of tea leaves; "tea has fragrant white flowers"
+75520,tea afternoon_tea teatime,a light midafternoon meal of tea and sandwiches or cakes; "an Englishman would interrupt a war to have his afternoon tea"
+75521,tea tea_leaf,dried leaves of the tea shrub; used to make tea; "the store shelves held many different kinds of tea"; "they threw the tea into Boston harbor"
+75522,tea-like_drink,a beverage that resembles tea but is not made from tea leaves
+75523,tea-strainer,a device to keep back tea leaves when pouring a cup of tea
+75524,tea_bag,a measured amount of tea in a bag for an individual serving of tea
+75525,tea_bag,small paper bag holding a measure of tea
+75526,tea_ball,a kitchen utensil consisting of a perforated metal ball for making tea
+75527,tea_bread,sweetened buns to be eaten with tea
+75528,tea_cart teacart tea_trolley tea_wagon,serving cart for serving tea or light refreshments
+75529,tea_ceremony chanoyu,an ancient ritual for preparing and serving and drinking tea
+75530,tea_chest,chest for storing or transporting tea
+75531,tea_cloth,a small tablecloth
+75532,tea_garden,a public garden where tea is served
+75533,tea_gown,a long loose-fitting gown formerly popular for wear at afternoon tea
+75534,tea_maker,a covered spoon with perforations
+75535,tea_napkin,a small napkin used when tea is served
+75536,tea_party,a party at which tea is served
+75537,tea_rose Rosa_odorata,any of several hybrid bush roses derived from a tea-scented Chinese rose with pink or yellow flowers
+75538,tea_service tea_set,a set of china or silverware for serving tea
+75539,tea_table,a small table for serving afternoon tea
+75540,tea_tortrix tortrix Homona_coffearia,small Indian moth infesting e.g. tea and coffee plants
+75541,tea_tray,a tray that accommodates a tea service
+75542,tea_urn,an urn in which tea is brewed and from which it is served
+75543,teaberry wintergreen checkerberry mountain_tea groundberry ground-berry creeping_wintergreen Gaultheria_procumbens,creeping shrub of eastern North America having white bell-shaped flowers followed by spicy red berrylike fruit and shiny aromatic leaves that yield wintergreen oil
+75544,teacake,any of various small cakes or cookies often served with tea
+75545,teacake tea_biscuit,flat semisweet cookie or biscuit usually served with tea
+75546,teach-in,an extended session (as on a college campus) for lectures and discussion on an important and usually controversial issue
+75547,teacher,a personified abstraction that teaches; "books were his teachers"; "experience is a demanding teacher"
+75548,teacher instructor,a person whose occupation is teaching
+75549,teacher's_pet,the teacher's favorite student
+75550,teacher-student_relation,the academic relation between teachers and their students
+75551,teachership,the position of teacher
+75552,teaching instruction pedagogy,the profession of a teacher; "he prepared for teaching while still in college"; "pedagogy is recognized as an important profession"
+75553,teaching precept commandment,a doctrine that is taught; "the teachings of religion"; "he believed all the Christian precepts"
+75554,teaching_aid,materials and equipment used in teaching
+75555,teaching_certificate teacher's_certificate,a certificate saying that the holder is qualified to teach in the public schools
+75556,teaching_fellow,a graduate student with teaching responsibilities
+75557,teaching_method pedagogics pedagogy,the principles and methods of instruction
+75558,teaching_reading,teaching beginners to read
+75559,teacup,a cup from which tea is drunk
+75560,teacup teacupful,as much as a teacup will hold
+75561,teak Tectona_grandis,tall East Indian timber tree now planted in western Africa and tropical America for its hard durable wood
+75562,teak teakwood,hard strong durable yellowish-brown wood of teak trees; resistant to insects and to warping; used for furniture and in shipbuilding
+75563,teakettle,kettle for boiling water to make tea
+75564,teal,any of various small short-necked dabbling river ducks of Europe and America
+75565,team,two or more draft animals that work together to pull something
+75566,team squad,a cooperative unit (especially in sports)
+75567,team_sport,a sport that involves competition between teams of players; "baseball is a team sport by golf is not"
+75568,team_teaching,a method of coordinated classroom teaching involving a team of teachers working together with a single group of students
+75569,teammate mate,a fellow member of a team; "it was his first start against his former teammates"
+75570,teamster,the driver of a team of horses doing hauling
+75571,teamster trucker truck_driver,someone who drives a truck as an occupation
+75572,teamwork,cooperative work done by a team (especially when it is effective); "it will take money, good planning and, above all, teamwork"
+75573,teapot,pot for brewing tea; usually has a spout and handle
+75574,tear,the act of tearing; "he took the manuscript in both hands and gave it a mighty tear"
+75575,tear teardrop,a drop of the clear salty saline solution secreted by the lacrimal glands; "his story brought tears to her eyes"
+75576,tear_gas teargas lacrimator lachrymator,a gas that makes the eyes fill with tears but does not damage them; used in dispersing crowds
+75577,tear_sheet,a sheet that can be easily torn out of a publication
+75578,tearaway,a reckless and impetuous person
+75579,teardrop,anything shaped like a falling drop (as a pendant gem on an earring)
+75580,tearjerker,an excessively sentimental narrative
+75581,tease teaser annoyer vexer,someone given to teasing (as by mocking or stirring curiosity)
+75582,tease teasing ribbing tantalization,the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances; "he ignored their teases"; "his ribbing was gentle but persistent"
+75583,teasel teazel teasle,any of several herbs of the genus Dipsacus native to the Old World having flower heads surrounded by spiny bracts
+75584,teaser,a worker who teases wool
+75585,teaser,an advertisement that offers something free in order to arouse customers' interest
+75586,teaser,an attention-getting opening presented at the start of a television show
+75587,teaser,a device for teasing wool; "a teaser is used to disentangle the fibers"
+75588,teashop teahouse tearoom tea_parlor tea_parlour,a restaurant where tea and light meals are available
+75589,teasing,playful vexation; "the parody was just a form of teasing"
+75590,teaspoon,a small spoon used for stirring tea or coffee; holds about one fluid dram
+75591,teaspoon teaspoonful,as much as a teaspoon will hold
+75592,tebibit Tibit,a unit of information equal to 1024 gibibits or 2^40 (1,099,511,627,776) bits
+75593,techie tekki,a technician who is highly proficient and enthusiastic about some technical field (especially computing)
+75594,technetium Tc atomic_number_43,a crystalline metallic element not found in nature; occurs as one of the fission products of uranium
+75595,technical,a pickup truck with a gun mounted on it
+75596,technical_analysis technical_analysis_of_stock_trends,(stock exchange) analysis of past price changes in the hope of forecasting future price changes
+75597,technical_foul technical,(basketball) a foul that can be assessed on a player or a coach or a team for unsportsmanlike conduct; does not usually involve physical contact during play
+75598,technical_knockout TKO,a knockout declared by the referee who judges one boxer unable to continue
+75599,technical_school tech,a school teaching mechanical and industrial arts and the applied sciences
+75600,technical_sergeant,a noncommissioned officer ranking below a master sergeant in the air force or marines
+75601,technicality,the state of being technical as in the use of technical terms or methods; "the judicial system suffered from too much technicality and formality"; "It is a tribute to the tribunals that the technicality at the heart of the appellate process in these tribunals can and does coexist with the relative informality in atmosphere and with procedural flexibility."
+75602,technicality,a specific detail in a set of rules or terms belonging to a particular field; "the resolution died on a technicality"; "the defendant was acquitted on a legal technicality"
+75603,technician,someone known for high skill in some intellectual or artistic technique
+75604,technician,someone whose occupation involves training in a specific technical process
+75605,technicolor,a trademarked method of making color motion pictures
+75606,technique,a practical method or art applied to some particular task
+75607,techno,a style of fast heavy electronic dance music usually without vocals
+75608,technobabble,technical jargon from computing and other high-tech subjects
+75609,technocracy,a form of government in which scientists and technical experts are in control; "technocracy was described as that society in which those who govern justify themselves by appeal to technical experts who justify themselves by appeal to scientific forms of knowledge"
+75610,technocrat,an expert who is a member of a highly skilled elite group
+75611,technocrat,an advocate of technocracy
+75612,technology,machinery and equipment developed from engineering or other applied sciences
+75613,technology,the application of the knowledge and usage of tools (such as machines or utensils) and techniques to control one's environment; "the mastery of fire was a huge advance in human technology"
+75614,technophile,a person who is enthusiastic about new technology
+75615,technophilia,enthusiasm for new technology
+75616,technophobe,a person who dislikes or avoids new technology
+75617,technophobia,dislike for new technology
+75618,tectonics plate_tectonics plate_tectonic_theory,the branch of geology studying the folding and faulting of the earth's crust
+75619,teddy teddy_bear,plaything consisting of a child's toy bear (usually plush and stuffed with soft materials)
+75620,teddy_boys,a British youth subculture that first appeared in the 1950s; mainly from unskilled backgrounds, they adopted a pseudo-Edwardian dress code and rock'n'roll music; proletarian and xenophobic, they were involved in race riots in the United Kingdom
+75621,tediousness tedium tiresomeness,dullness owing to length or slowness
+75622,tee football_tee,support holding a football on end and above the ground preparatory to the kickoff
+75623,tee golf_tee,a short peg put into the ground to hold a golf ball off the ground
+75624,tee teeing_ground,the starting place for each hole on a golf course; "they were waiting on the first tee"
+75625,tee_hinge T_hinge,a hinge that looks like the letter T when it is opened; similar to a strap hinge except that one strap has been replaced by half of a butt hinge that can be mortised flush into the stationary frame
+75626,teens,the time of life between the ages of 12 and 20
+75627,teens,all the numbers that end in -teen
+75628,teeoff,the act of hitting a golf ball from the teeing ground at the start of each hole
+75629,teething dentition odontiasis,the eruption through the gums of baby teeth
+75630,teetotaler teetotaller teetotalist,a total abstainer
+75631,teetotaling teetotalism,abstaining from alcohol
+75632,teff teff_grass Eragrostis_tef Eragrostic_abyssinica,an African grass economically important as a cereal grass (yielding white flour of good quality) as well as for forage and hay
+75633,teg,two-year-old sheep
+75634,teiid_lizard teiid,tropical New World lizard with a long tail and large rectangular scales on the belly and a long tail
+75635,teju,large (to 3 feet) blackish yellow-banded South American lizard; raid henhouses; used as food
+75636,tektite,thought to derive from meteorites
+75637,telecast,a television broadcast
+75638,telecaster,a television broadcaster
+75639,telecom_hotel telco_building,a building that houses telecommunications equipment; "the telecom hotels are prime targets for bombing"
+75640,telecommunication,(often plural) the branch of electrical engineering concerned with the technology of electronic communication at a distance
+75641,telecommunication telecom,(often plural) systems used in transmitting messages over a distance electronically
+75642,telecommunication_system telecom_system telecommunication_equipment telecom_equipment,a communication system for communicating at a distance
+75643,telecommuting teleworking,employment at home while communicating with the workplace by phone or fax or modem
+75644,teleconference teleconferencing,a conference of people who are in different locations that is made possible by the use of such telecommunications equipment as closed-circuit television
+75645,telefilm,a movie that is made to be shown on television
+75646,telegnosis,apparent knowledge of distant events without using sensory perceptions
+75647,telegram wire,a message transmitted by telegraph
+75648,telegraph telegraphy,apparatus used to communicate at a distance over a wire (usually in Morse code)
+75649,telegraph_form,a form to use when sending a telegram
+75650,telegraph_key,key consisting of a lever that sends a telegraph signal when it is depressed and the circuit is closed
+75651,telegraph_plant semaphore_plant Codariocalyx_motorius Desmodium_motorium Desmodium_gyrans,erect tropical Asian shrub whose small lateral leaflets rotate on their axes and jerk up and down under the influence of sunshine
+75652,telegrapher telegraphist telegraph_operator,someone who transmits messages by telegraph
+75653,telegraphese,language characterized by terseness and ellipsis as in telegrams
+75654,telegraphic_signal radiotelegraphic_signal,a signal transmitted by telegraphy
+75655,telegraphy,communicating at a distance by electric transmission over wire
+75656,telekinesis psychokinesis,the power to move something by thinking about it without the application of physical force
+75657,telemark,a turn made in skiing; the outside ski is placed ahead and turned gradually inwards
+75658,telemarketing teleselling telecommerce,the use of the telephone as an interactive medium for promotion and sales
+75659,telemeter,any scientific instrument for observing events at a distance and transmitting the information back to the observer
+75660,telemetry,automatic transmission and measurement of data from remote sources by wire or radio or other means
+75661,telemetry_intelligence TELINT,intelligence derived from the interception and processing and analysis of foreign telemetry
+75662,telencephalon,the anterior division of the forebrain; the cerebrum and related parts of the hypothalamus
+75663,teleologist,advocate of teleology
+75664,teleology,(philosophy) a doctrine explaining phenomena by their ends or purposes
+75665,teleost_fish teleost teleostan,a bony fish of the subclass Teleostei
+75666,telepathist thought-reader mental_telepathist mind_reader,someone with the power of communicating thoughts directly
+75667,telepathy thought_transference,apparent communication from one mind to another without using sensory perceptions
+75668,telephone phone telephone_set,electronic equipment that converts sound into electrical signals that can be transmitted over distances and then converts received signals back into sounds; "I talked to him on the telephone"
+75669,telephone telephony,transmitting speech at a distance
+75670,telephone_bell,electric bell that rings to signal a call
+75671,telephone_booth phone_booth call_box telephone_box telephone_kiosk,booth for using a telephone
+75672,telephone_company telephone_service phone_company phone_service telco,a public utility that provides telephone service
+75673,telephone_conversation,a conversation over the telephone
+75674,telephone_cord phone_cord,the telephone wire that connects to the handset
+75675,telephone_interview,an interview conducted over the telephone
+75676,telephone_jack phone_jack,a jack for plugging in a telephone
+75677,telephone_line phone_line telephone_circuit subscriber_line line,a telephone connection
+75678,telephone_operator telephonist switchboard_operator,someone who helps callers get the person they are calling
+75679,telephone_order,receiving orders via telephone
+75680,telephone_plug phone_plug,a plug for connecting a telephone
+75681,telephone_pole telegraph_pole telegraph_post,tall pole supporting telephone wires
+75682,telephone_receiver receiver,earphone that converts electrical signals into sounds
+75683,telephone_system phone_system,a communication system that transmits sound between distant points
+75684,telephone_unit,a unit of measurement for telephone use
+75685,telephone_wire telephone_line telegraph_wire telegraph_line,the wire that carries telegraph and telephone signals
+75686,telephoto_lens zoom_lens,a camera lens that magnifies the image
+75687,telephotograph,a photograph transmitted and reproduced over a distance
+75688,telephotograph telephoto,a photograph made with a telephoto lens
+75689,telephotography,transmission and reproduction of photographs and charts and pictures over a distance
+75690,telephotography,photography using a telephoto lens
+75691,teleportation,a hypothetical mode of instantaneous transportation; matter is dematerialized at one place and recreated at another
+75692,telerobotics,the area of robotics that is concerned with the control of robots from a distance
+75693,telescope scope,a magnifier of images of distant objects
+75694,telescopic_sight telescope_sight,gunsight consisting of a telescope on a firearm for use as a sight
+75695,telescopy,the art of making and using telescopes
+75696,telethermometer,a thermometer that registers the temperature at some distant point
+75697,teletypewriter teleprinter teletype_machine telex telex_machine,a character printer connected to a telegraph that operates like a typewriter
+75698,televangelism,evangelism at a distance by the use of television
+75699,televangelist,an evangelist who conducts services on television
+75700,television telecasting TV video,broadcasting visual images of stationary or moving objects; "she is a star of screen and video"; "Television is a medium because it is neither rare nor well done" - Ernie Kovacs
+75701,television television_system,a telecommunication system that transmits images of objects (stationary or moving) between distant points
+75702,television-camera_tube television_pickup_tube,a tube that rapidly scans an optical image and converts it into electronic signals
+75703,television_antenna tv-antenna,an omnidirectional antenna tuned to the broadcast frequencies assigned to television
+75704,television_camera tv_camera camera,television equipment consisting of a lens system that focuses an image on a photosensitive mosaic that is scanned by an electron beam
+75705,television_equipment video_equipment,electronic equipment that broadcasts or receives electromagnetic waves representing images and sound
+75706,television_monitor tv_monitor,monitor used in a studio for monitoring the program being broadcast
+75707,television_news,a television broadcast of news
+75708,television_program TV_program television_show TV_show,a program broadcast by television
+75709,television_receiver television television_set tv tv_set idiot_box boob_tube telly goggle_box,an electronic device that receives television signals and displays them on a screen; "the British call a tv set a telly"
+75710,television_reporter television_newscaster TV_reporter TV_newsman,someone who reports news stories via television
+75711,television_room tv_room,a room set aside for viewing television
+75712,television_star TV_star,a star in a television show
+75713,television_station TV_station,station for the production and transmission of television broadcasts
+75714,television_transmitter,transmitter that is part of a television system
+75715,teliospore,a chlamydospore that develops in the last stage of the life cycle of the rust fungus
+75716,teller cashier bank_clerk,an employee of a bank who receives and pays out money
+75717,teller vote_counter,an official appointed to count the votes (especially in legislative assembly)
+75718,telling apprisal notification,informing by words
+75719,tellurian earthling earthman worldling,an inhabitant of the earth
+75720,telluride,any binary compound of tellurium with other more electropositive elements
+75721,tellurium Te atomic_number_52,a brittle silver-white metalloid element that is related to selenium and sulfur; it is used in alloys and as a semiconductor; occurs mainly as tellurides in ores of copper and nickel and silver and gold
+75722,telocentric_chromosome,a chromosome like a straight rod with the centromere in terminal position
+75723,telomerase,an enzyme in eukaryotic cells that can add telomeres to the ends of chromosomes after they divide
+75724,telomere,either (free) end of a eukaryotic chromosome; "telomeres act as caps to keep the sticky ends of chromosomes from randomly clumping together"
+75725,telophase,the final stage of meiosis when the chromosomes move toward opposite ends of the nuclear spindle
+75726,telophase,the final stage of mitosis
+75727,telpher telfer,one of the conveyances (or cars) in a telpherage
+75728,telpherage telferage,a transportation system in which cars (telphers) are suspended from cables and operated on electricity
+75729,temazepam Restoril,a frequently prescribed benzodiazepine (trade name Restoril); takes effect slowly and lasts long enough to help those people who wake up frequently during the night
+75730,temp temporary temporary_worker,a worker (especially in an office) hired on a temporary basis
+75731,temper biliousness irritability peevishness pettishness snappishness surliness,a disposition to exhibit uncontrolled anger; "his temper was well known to all his employees"
+75732,temper mood humor humour,a characteristic (habitual or relatively temporary) state of feeling; "whether he praised or cursed me depended on his temper at the time"; "he was in a bad humor"
+75733,temper toughness,the elasticity and hardness of a metal object; its ability to absorb considerable energy before cracking
+75734,tempera poster_paint poster_color poster_colour,pigment mixed with water-soluble glutinous materials such as size and egg yolk
+75735,temperament,excessive emotionalism or irritability and excitability (especially when displayed openly)
+75736,temperament,an adjustment of the intervals (as in tuning a keyboard instrument) so that the scale can be used to play in different keys
+75737,temperance,the act of tempering
+75738,temperance moderation,the trait of avoiding excesses
+75739,temperate_rain_forest,a rain forest in a temperate area
+75740,temperature,the somatic sensation of cold or heat
+75741,temperature,the degree of hotness or coldness of a body or environment (corresponding to its molecular activity)
+75742,temperature_change,a process whereby the degree of hotness of a body (or medium) changes
+75743,temperature_gradient,change in temperature as a function of distance (especially altitude)
+75744,temperature_scale,a system of measuring temperature
+75745,temperature_unit,a unit of measurement for temperature
+75746,tempest,(literary) a violent wind; "a tempest swept over the island"
+75747,tempestuousness,a state of wild storminess
+75748,template templet guide,a model or standard for making comparisons
+75749,temple,the flat area on either side of the forehead; "the veins in his temple throbbed"
+75750,temple,an edifice devoted to special or exalted purposes
+75751,temple,place of worship consisting of an edifice for the worship of a deity
+75752,temple_orange,large sweet easily-peeled Florida fruit with deep orange rind
+75753,temple_orange temple_orange_tree tangor king_orange Citrus_nobilis,large citrus tree having large sweet deep orange fruit that is easily peeled; widely cultivated in Florida
+75754,tempo pace,the rate of some repeating event
+75755,tempo pacing,(music) the speed at which a composition is to be played
+75756,temporal_arrangement temporal_order,arrangement of events in time
+75757,temporal_arteritis,inflammation of the temporal arteries; characterized by headaches and difficulty chewing and (sometimes) visual impairment
+75758,temporal_artery,any of the three arteries on either side of the brain supplying the cortex of the temporal lobe
+75759,temporal_bone os_temporale,a thick bone forming the side of the human cranium and encasing the inner ear
+75760,temporal_canthus,the outer corner of the eye
+75761,temporal_gyrus,any of the convolutions of the outer surface of the temporal lobe of the cerebrum
+75762,temporal_lobe temporal_cortex,that part of the cerebral cortex in either hemisphere of the brain lying inside the temples of the head
+75763,temporal_property,a property relating to time
+75764,temporal_relation,a relation involving time
+75765,temporal_role temporal,the semantic role of the noun phrase that designates the time of the state or action denoted by the verb
+75766,temporal_vein vena_temporalis,any of several veins draining the temporal region
+75767,temporalis_muscle temporal_muscle temporalis musculus_temporalis,muscle extending from the temporal fossa to the coronoid process of the mandible; acts to raise the mandible and close the jaws
+75768,temporalty temporality,the worldly possessions of a church
+75769,temporariness,the property of lasting only a short time
+75770,temporary_hookup patch,a connection intended to be used for a limited time
+75771,temporary_injunction interlocutory_injunction,injunction issued during a trial to maintain the status quo or preserve the subject matter of the litigation until the trial is over
+75772,temporary_state,a state that continues for a limited time
+75773,temporizer temporiser,someone who temporizes; someone who tries to gain time or who waits for a favorable time
+75774,temptation,the desire to have or do something that you know you should avoid; "he felt the temptation and his will power weakened"
+75775,temptation enticement,something that seduces or has the quality to seduce
+75776,tempter,a person who tempts others; "Satan is the great tempter of mankind"
+75777,tempura,vegetables and seafood dipped in batter and deep-fried
+75778,ten 10 X tenner decade,the cardinal number that is the sum of nine and one; the base of the decimal system
+75779,ten-spined_stickleback Gasterosteus_pungitius,confined to rivers
+75780,ten-spot ten,one of four playing cards in a deck with ten pips on the face
+75781,ten_thousand 10000 myriad,the cardinal number that is the product of ten and one thousand
+75782,tenant,a holder of buildings or lands by any kind of title (as ownership or lease)
+75783,tenant,any occupant who dwells in a place
+75784,tenant renter,someone who pays rent to use land or a building or a car that is owned by someone else; "the landlord can evict a tenant who doesn't pay the rent"
+75785,tenant_farmer,a farmer who works land owned by someone else
+75786,tenantry,tenants of an estate considered as a group
+75787,tench Tinca_tinca,freshwater dace-like game fish of Europe and western Asia noted for ability to survive outside water
+75788,tendency inclination,a characteristic likelihood of or natural disposition toward a certain condition or character or effect; "the alkaline inclination of the local waters"; "fabric with a tendency to shrink"
+75789,tendency trend,a general direction in which something tends to move; "the shoreward tendency of the current"; "the trend of the stock market"
+75790,tendentiousness,an intentional and controversial bias
+75791,tender,car attached to a locomotive to carry fuel and water
+75792,tender legal_tender stamp,something that can be used as an official medium of payment
+75793,tender ship's_boat pinnace cutter,a boat for communication between ship and shore
+75794,tender supply_ship,ship that usually provides supplies to other ships
+75795,tender_loving_care TLC,considerate and solicitous care; "young children need lots of TLC"
+75796,tender_offer,an offer to buy shares in a corporation (usually above the market price) for cash or securities or both
+75797,tenderfoot,an inexperienced person (especially someone inexperienced in outdoor living)
+75798,tendergreen spinach_mustard Brassica_perviridis Brassica_rapa_perviridis,Asiatic plant cultivated for its swollen root crown and edible foliage
+75799,tenderization tenderisation,the act of making meat tender by pounding or marinating it
+75800,tenderizer tenderiser,a substance (as the plant enzyme papain) applied to meat to make it tender
+75801,tenderloin undercut,the tender meat of the loin muscle on each side of the vertebral column
+75802,tenderness,a tendency to express warm and affectionate feeling
+75803,tenderness soreness rawness,a pain that is felt (as when the area is touched); "the best results are generally obtained by inserting the needle into the point of maximum tenderness"; "after taking a cold, rawness of the larynx and trachea come on"
+75804,tenderness tenderheartedness,warm compassionate feelings
+75805,tendinitis tendonitis tenonitis,inflammation of a tendon
+75806,tendon sinew,a cord or band of inelastic tissue connecting a muscle with its bony attachment
+75807,tendril,slender stem-like structure by which some twining plants attach themselves to an object for support
+75808,tenement tenement_house,a run-down apartment house barely meeting minimal standards
+75809,tenement_district,a residential district occupied primarily with tenement houses
+75810,tenesmus,painful spasm of the anal sphincter along with an urgent desire to defecate without the significant production of feces; associated with irritable bowel syndrome
+75811,tenge,100 tenge equal 1 manat in Turkmenistan
+75812,tenge,the basic unit of money in Kazakhstan
+75813,tenner ten_dollar_bill,a United States bill worth 10 dollars
+75814,tennis lawn_tennis,a game played with rackets by two or four players who hit a ball back and forth over a net that divides the court
+75815,tennis_ball,ball about the size of a fist used in playing tennis
+75816,tennis_camp,a camp where tennis is taught
+75817,tennis_club,a club of people to play tennis
+75818,tennis_coach,a coach of tennis players
+75819,tennis_court,the court on which tennis is played
+75820,tennis_elbow lateral_epicondylitis lateral_humeral_epicondylitis,painful inflammation of the tendon at the outer border of the elbow resulting from overuse of lower arm muscles (as in twisting of the hand)
+75821,tennis_lesson,a lesson in playing tennis
+75822,tennis_match,a match between tennis players
+75823,tennis_player,an athlete who plays tennis
+75824,tennis_pro professional_tennis_player,someone who earns a living playing or teaching tennis
+75825,tennis_racket tennis_racquet,a racket used to play tennis
+75826,tennis_stroke tennis_shot,the act of hitting a tennis ball with a tennis racket
+75827,tenon,a projection at the end of a piece of wood that is shaped to fit into a mortise and form a mortise joint
+75828,tenor,an adult male with a tenor voice
+75829,tenor,a settled or prevailing or habitual course of a person's life; "nothing disturbed the even tenor of her ways"
+75830,tenor,the pitch range of the highest male voice
+75831,tenor strain,the general meaning or substance of an utterance; "although I disagreed with him I could follow the tenor of his argument"
+75832,tenor tenor_voice,the adult male singing voice above baritone
+75833,tenor_clef,a clef that puts middle C on the fourth line of the staff; used for writing music for bassoons or cellos or tenor horns
+75834,tenor_drum tom-tom,any of various drums with small heads
+75835,tenor_saxophonist tenorist,a musician who plays the tenor saxophone
+75836,tenoroon,a tenor bassoon; pitched a fifth higher than the ordinary bassoon
+75837,tenosynovitis tendosynovitis tendonous_synovitis,inflammation of a tendon and its enveloping sheath
+75838,tenpence,a decimal coin worth ten pennies
+75839,tenpenny_nail,a nail 3 inches long
+75840,tenpin,one of the bottle-shaped pins used in bowling
+75841,tenpins tenpin_bowling,bowling down an alley at a target of ten wooden pins
+75842,tenrec tendrac,small often spiny insectivorous mammal of Madagascar; resembles a hedgehog
+75843,tense,a grammatical category of verbs used to express distinctions of time
+75844,tense_system,a system of tenses used in a particular language
+75845,tensile_strength,the strength of material expressed as the greatest longitudinal stress it can bear without tearing apart
+75846,tensimeter,a manometer for measuring vapor pressure
+75847,tensiometer,a measuring instrument for measuring the moisture content of soil
+75848,tensiometer,a measuring instrument for measuring the tension in a wire or fiber or beam
+75849,tensiometer,a measuring instrument for measuring the surface tension of a liquid
+75850,tension,a balance between and interplay of opposing elements or tendencies (especially in art or literature); "there is a tension created between narrative time and movie time"; "there is a tension between these approaches to understanding history"
+75851,tension,(physics) a stress that produces an elongation of an elastic physical body; "the direction of maximum tension moves asymptotically toward the direction of the shear"
+75852,tension,the action of stretching something tight; "tension holds the belt in the pulleys"
+75853,tension tenseness stress,(psychology) a state of mental or emotional strain or suspense; "he suffered from fatigue and emotional tension"; "stress is a vasoconstrictor"
+75854,tension tensity tenseness tautness,the physical condition of being stretched or strained; "it places great tension on the leg muscles"; "he could feel the tenseness of her body"
+75855,tension_headache,a headache located at the back of the head; usually caused by body tension resulting from overwork or psychological stress
+75856,tensor,a generalization of the concept of a vector
+75857,tensor,any of several muscles that cause an attached structure to become tense or firm
+75858,tensor_tympani,a small muscle in the middle ear that tenses to protect the eardrum
+75859,tent,a web that resembles a tent or carpet
+75860,tent collapsible_shelter,a portable shelter (usually of canvas stretched over supporting poles and fastened to the ground with ropes and pegs); "he pitched his tent near the creek"
+75861,tent-caterpillar_moth Malacosoma_americana,moth whose larvae are tent caterpillars
+75862,tent-caterpillar_moth Malacosoma_disstria,moth whose gregarious larvae spin webs resembling carpets
+75863,tent-fly rainfly fly_sheet fly tent_flap,flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent
+75864,tent_caterpillar,the larvae of moths that build and live in communal silken webs in orchard and shade trees
+75865,tent_peg,a peg driven into the ground to hold a rope supporting a tent
+75866,tentacle,something that acts like a tentacle in its ability to grasp and hold; "caught in the tentacles of organized crime"
+75867,tentacle,any of various elongated tactile or prehensile flexible organs that occur on the head or near the mouth in many animals; used for feeling or grasping or locomotion
+75868,tenter,a framework with hooks used for stretching and drying cloth
+75869,tenterhook,one of a series of hooks used to hold cloth on a tenter
+75870,tenth,position ten in a countable series of things
+75871,tentmaker,someone who makes or repairs tents
+75872,tentorium,(anatomy) a fold of dura mater that covers the cerebellum and supports the occipital lobes of the cerebrum
+75873,tenure land_tenure,the right to hold property; part of an ancient hierarchical system of holding lands
+75874,tenure term_of_office incumbency,the term during which some position is held
+75875,tepal,an undifferentiated part of a perianth that cannot be distinguished as a sepal or a petal (as in lilies and tulips)
+75876,tepary_bean Phaseolus_acutifolius_latifolius,twining plant of southwestern United States and Mexico having roundish white or yellow or brown or black beans
+75877,tepee tipi teepee,a Native American tent; usually of conical shape
+75878,tepidness lukewarmness,lack of passion, force or animation
+75879,tequila,Mexican liquor made from fermented juices of an agave plant
+75880,terabit Tbit Tb,a unit of information equal to 1000 gigabits or 10^12 (1,000,000,000,000) bits
+75881,terabyte TB,a unit of information equal to 1000 gigabytes or 10^12 (1,000,000,000,000) bytes
+75882,terabyte tebibyte TB TiB,a unit of information equal to 1024 gibibytes or 2^40 (1,099,511,627,776) bytes
+75883,teraflop trillion_floating_point_operations_per_second,(computer science) a unit for measuring the speed of a computer system
+75884,terahertz THz,one trillion periods per second
+75885,teratogen,any agent that interferes with normal embryonic development: alcohol or thalidomide or X-rays or rubella are examples
+75886,teratogenesis,the development of defects in an embryo
+75887,teratology,the branch of biology concerned with the development of malformations or serious deviations from the normal type of organism
+75888,teratoma,a tumor consisting of a mixture of tissues not normally found at that site
+75889,terazosin Hytrin,antihypertensive drug (trade name Hytrin) used to treat high blood pressure
+75890,terbinafine Lamisil,an oral antifungal drug (trade name Lamisil) used to treat cases of fungal nail disease
+75891,terbium Tb atomic_number_65,a metallic element of the rare earth group; used in lasers; occurs in apatite and monazite and xenotime and ytterbite
+75892,terbium_metal,a separate group of related lanthanides, including terbium, europium, gadolinium, and sometimes dysprosium
+75893,terce tierce,the third canonical hour; about 9 a.m.
+75894,tercentennial tercentenary triennial,the 300th anniversary (or the celebration of it)
+75895,terebinth Pistacia_terebinthus,a Mediterranean tree yielding Chian turpentine
+75896,teredo,typical shipworm
+75897,teres teres_muscle,either of two muscles in the shoulder region that move the shoulders and arms
+75898,teres_major teres_major_muscle musculus_teres_major,teres muscle that moves the arm and rotates it medially
+75899,teres_minor teres_minor_muscle musculus_teres_minor,teres muscle that adducts the arm and rotates it laterally
+75900,teriyaki,beef or chicken or seafood marinated in spicy soy sauce and grilled or broiled
+75901,term,a limited period of time; "a prison term"; "he left school before the end of term"
+75902,term,one of the substantive phrases in a logical proposition; "the major term of a syllogism must occur twice"
+75903,term,a word or expression used for some particular thing; "he learned many medical terms"
+75904,term,any distinct quantity contained in a polynomial; "the general term of an algebraic equation of the n-th degree"
+75905,term full_term,the end of gestation or point at which birth is imminent; "a healthy baby born at full term"
+75906,term_infant,infant born at a gestational age between 37 and 42 completed weeks
+75907,term_insurance,low-cost insurance that is valid only for a stated period of time and has no cash surrender value or loan value; "term insurance is most often associated with life insurance policies"
+75908,term_paper,a composition intended to indicate a student's progress during a school term
+75909,termer,a person who serves a specified term; "there are not many fourth termers in the Senate"
+75910,terminable_interest,an interest in property that terminates under specific conditions
+75911,terminal,electronic equipment consisting of a device providing access to a computer; has a keyboard and display
+75912,terminal pole,a contact on an electrical device (such as a battery) at which electric current enters or leaves
+75913,terminal terminus depot,station where transport vehicles load or unload passengers or goods
+75914,terminal_emulation,(computer science) having a computer act exactly like a terminal
+75915,terminal_leave,final leave before discharge from military service
+75916,terminal_velocity,the constant maximum velocity reached by a body falling through the atmosphere under the attraction of gravity
+75917,termination ending conclusion,the act of ending something; "the termination of the agreement"
+75918,termination expiration expiry,a coming to an end of a contract period; "the expiry of his driver's license"
+75919,terminology nomenclature language,a system of words used to name things in a particular discipline; "legal terminology"; "biological nomenclature"; "the language of sociology"
+75920,terminus,either end of a railroad or bus route
+75921,terminus terminal_figure term,(architecture) a statue or a human bust or an animal carved out of the top of a square pillar; originally used as a boundary marker in ancient Rome
+75922,terminus_a_quo starting_point,earliest limiting point
+75923,terminus_ad_quem terminal_point limit,final or latest limiting point
+75924,termite white_ant,whitish soft-bodied ant-like social insect that feeds on wood
+75925,tern,small slender gull having narrow wings and a forked tail
+75926,terpene,an unsaturated hydrocarbon obtained from plants
+75927,terra_alba,finely pulverized gypsum used especially as a pigment
+75928,terra_cotta,a hard unglazed brownish-red earthenware
+75929,terra_sigillata Samian_ware,earthenware made from the reddish-brown clay found on the Aegean island of Lemnos
+75930,terrace,a row of houses built in a similar style and having common dividing walls (or the street on which they face); "Grosvenor Terrace"
+75931,terrace bench,a level shelf of land interrupting a declivity (with steep slopes above and below)
+75932,terraced_house,a house that is part of a terrace
+75933,terrain,a piece of ground having specific characteristics or military potential; "they decided to attack across the rocky terrain"
+75934,terrain_flight low_level_flight,flight at very low altitudes
+75935,terrain_intelligence,tactical intelligence on the natural and man-made characteristics of an area
+75936,terrapin,any of various edible North American web-footed turtles living in fresh or brackish water
+75937,terrarium,a vivarium in which selected living plants are kept and observed
+75938,terreplein,level space where heavy guns can be mounted behind the parapet at the top of a rampart
+75939,terrestrial_guidance,a method of controlling the flight of a missile by devices that respond to the strength and direction of the earth's gravitational field
+75940,terrestrial_planet,a planet having a compact rocky surface like the Earth's; the four innermost planets in the solar system
+75941,terrestrial_time TT terrestrial_dynamical_time TDT ephemeris_time,(astronomy) a measure of time defined by Earth's orbital motion; terrestrial time is mean solar time corrected for the irregularities of the Earth's motions
+75942,terrier,any of several usually small short-bodied breeds originally trained to hunt animals living underground
+75943,terrine,a pate or fancy meatloaf baked in an earthenware casserole
+75944,territorial,nonprofessional soldier member of a territorial military unit
+75945,territorial territorial_reserve,a territorial military unit
+75946,territorial_waters,the waters surrounding a nation and its territories over which that nation exercises sovereign jurisdiction
+75947,territoriality,the behavior of a male animal that defines and defends its territory
+75948,territorialization territorialisation,the act of organizing as a territory
+75949,territory,an area of knowledge or interest; "his questions covered a lot of territory"
+75950,territory soil,the geographical area under the jurisdiction of a sovereign state; "American troops were stationed on Japanese soil"
+75951,terror,the use of extreme fear in order to coerce people (especially for political reasons); "he used terror to make them confess"
+75952,terror brat little_terror holy_terror,a very troublesome child
+75953,terror scourge threat,a person who inspires fear or dread; "he was the terror of the neighborhood"
+75954,terrorism act_of_terrorism terrorist_act,the calculated use of violence (or the threat of violence) against civilians in order to attain goals that are political or religious or ideological in nature; this is done through intimidation or coercion or instilling fear
+75955,terrorist,a radical who employs terror as a political weapon; usually organizes with other terrorists in small cells; often uses religion as a cover for terrorist activities
+75956,terrorist_attack,a surprise attack involving the deliberate use of violence against civilians in the hope of attaining political or religious aims
+75957,terrorist_cell radical_cell,a cell of terrorists (usually 3 to 5 members); "to insure operational security the members of adjacent terrorist cells usually don't know each other or the identity of their leadership"
+75958,terrorist_organization terrorist_group foreign_terrorist_organization FTO,a political movement that uses terror as a weapon to achieve its goals
+75959,terrorization terrorisation,an act of terrorism
+75960,terrorization terrorisation frightening,the act of inspiring with fear
+75961,terry terry_cloth terrycloth,a pile fabric (usually cotton) with uncut loops on both sides; used to make bath towels and bath robes
+75962,terseness,a neatly short and concise expressive style
+75963,tertiary_syphilis,the third stage; characterized by involvement of internal organs especially the brain and spinal cord as well as the heart and liver
+75964,tertigravida gravida_III,a woman who is pregnant for the third time
+75965,tertium_quid,some third thing similar to two opposites but distinct from both
+75966,terza_rima,a verse form with a rhyme scheme: aba bcb cdc, etc.
+75967,tesla,a unit of magnetic flux density equal to one weber per square meter
+75968,tessella,a small tessera
+75969,tessellation,the careful juxtaposition of shapes in a pattern; "a tessellation of hexagons"
+75970,tessellation,the act of adorning with mosaic
+75971,tessera,a small square tile of stone or glass used in making mosaics
+75972,tesseract,the four-dimensional analogue of a cube
+75973,test,a hard outer covering as of some amoebas and sea urchins
+75974,test mental_test mental_testing psychometric_test,any standardized procedure for measuring sensitivity or memory or intelligence or aptitude or personality etc; "the test was standardized on a large sample of students"
+75975,test trial,the act of undergoing testing; "he survived the great test of battle"; "candidates must compete in a trial of skill"
+75976,test trial run,the act of testing something; "in the experimental trials the amount of carbon was measured separately"; "he called each flip of the coin a new trial"
+75977,test-tube_baby,a baby conceived by fertilization that occurs outside the mother's body; the woman's ova are removed and mixed with sperm in a culture medium - if fertilization occurs the blastocyte is implanted in the woman's uterus
+75978,test_ban,a ban on the testing of nuclear weapons that is mutually agreed to by countries that possess nuclear weapons
+75979,test_bed,a place equipped with instruments for testing (e.g. engines or machinery or computer programs etc.) under working conditions
+75980,test_case test_suit,a representative legal action whose outcome is likely to become a precedent
+75981,test_drive,test of the roadworthiness of a vehicle one is considering buying
+75982,test_driver,a driver who drives a motor vehicle to evaluate its performance
+75983,test_equipment,equipment required to perform a test
+75984,test_match match_game matched_game,an international championship match
+75985,test_paper,paper impregnated with an indicator for use in chemical tests
+75986,test_paper examination_paper exam_paper question_sheet,a written examination
+75987,test_pilot,a pilot hired to fly experimental airplanes through maneuvers designed to test them
+75988,test_range,a range for conducting tests
+75989,test_rocket research_rocket test_instrument_vehicle,a rocket fired for test purposes
+75990,test_room testing_room,a room in which tests are conducted
+75991,test_tube,glass tube closed at one end
+75992,testa episperm seed_coat,protective outer layer of seeds of flowering plants
+75993,testacean,any of various rhizopods of the order Testacea characterized by having a shell
+75994,testament,strong evidence for something; "his easy victory was a testament to his skill"
+75995,testament,a profession of belief; "he stated his political testament"
+75996,testamentary_trust,a trust that is created under a will and that becomes active after the grantor dies
+75997,testator testate,a person who makes a will
+75998,testatrix,a female testator
+75999,testcross test-cross,a cross between an organism whose genotype for a certain trait is unknown and an organism that is homozygous recessive for that trait so the unknown genotype can be determined from that of the offspring
+76000,testee examinee,someone who is tested (as by an intelligence test or an academic examination)
+76001,tester,a flat canopy (especially one over a four-poster bed)
+76002,testicular_artery internal_spermatic_artery arteria_testicularis,a branch of the aorta supplying the testicles
+76003,testicular_vein vena_testicularis,a vein from the testicles
+76004,testifier deponent deposer,a person who testifies or gives a deposition
+76005,testimony,a solemn statement made under oath
+76006,testimony,an assertion offering firsthand authentication of a fact; "according to his own testimony he can't do it"
+76007,testimony testimonial,something that serves as evidence; "his effort was testimony to his devotion"
+76008,testiness touchiness tetchiness,feeling easily irritated
+76009,testing,an examination of the characteristics of something; "there are laboratories for commercial testing"; "it involved testing thousands of children for smallpox"
+76010,testing,the act of subjecting to experimental test in order to determine how well something works; "they agreed to end the testing of atomic weapons"
+76011,testing_ground laboratory,a region resembling a laboratory inasmuch as it offers opportunities for observation and practice and experimentation; "the new nation is a testing ground for socioeconomic theories"; "Pakistan is a laboratory for studying the use of American troops to combat terrorism"
+76012,testis testicle orchis ball ballock bollock nut egg,one of the two male reproductive glands that produce spermatozoa and secrete androgens; "she kicked him in the balls and got away"
+76013,testosterone,a potent androgenic hormone produced chiefly by the testes; responsible for the development of male secondary sex characteristics
+76014,testudo,a movable protective covering that provided protection from above; used by Roman troops when approaching the walls of a besieged fortification
+76015,tetanus,a sustained muscular contraction resulting from a rapid series of nerve impulses
+76016,tetanus lockjaw,an acute and serious infection of the central nervous system caused by bacterial infection of open wounds; spasms of the jaw and laryngeal muscles may occur during the late stages
+76017,tetanus_antitoxin,antitoxin given for short-term immunization against tetanus in cases of possible exposure to the tetanus bacillus
+76018,tetanus_immunoglobulin tetanus_immune_globulin,sterile solution of globulins derived from the blood plasma of a person who has been immunized for tetanus; provides short-term immunization against tetanus in cases of possible exposure to the tetanus bacillus
+76019,tetany tetanilla intermittent_tetanus intermittent_cramp apyretic_tetanus,clinical neurological syndrome characterized by muscular twitching and cramps and (when severe) seizures; associated with calcium deficiency (hypoparathyroidism) or vitamin D deficiency or alkalosis
+76020,tetartanopia yellow-blindness,a form of dichromacy characterized by lowered sensitivity to yellow light; so rare that its existence has been questioned
+76021,tete-a-tete,a private conversation between two people
+76022,teth,the 9th letter of the Hebrew alphabet
+76023,tetherball,a game with two players who use rackets to strike a ball that is tethered to the top of a pole; the object is to wrap the string around the pole
+76024,tetra,brightly colored tropical freshwater fishes
+76025,tetrabasic_acid,an acid containing four replaceable hydrogen atoms per molecule
+76026,tetracaine,a crystalline compound used in the form of a hydrochloride as a local anesthetic
+76027,tetrachlorethylene tetrachloroethylene ethylene_tetrachloride carbon_dichloride,anthelmintic agent used against hookworm and other nematodes
+76028,tetrachloride,any compound that contains four chlorine atoms per molecule
+76029,tetrachoric_correlation_coefficient tetrachoric_correlation,a correlation coefficient computed for two normally distributed variables that are both expressed as a dichotomy
+76030,tetracycline Achromycin,an antibiotic (trade name Achromycin) derived from microorganisms of the genus Streptomyces and used broadly to treat infections
+76031,tetraethyl_lead lead_tetraethyl,a clear oily poisonous liquid added to gasoline to prevent knocking
+76032,tetrafluoroethylene,a flammable gaseous fluorocarbon used in making plastics (polytetrafluoroethylene resins)
+76033,tetragram,a word that is written with four letters in an alphabetic writing system
+76034,tetrahalide,any halide containing four halogen atoms in its molecules
+76035,tetrahedron,any polyhedron having four plane faces
+76036,tetrahydrocannabinol THC,psychoactive substance present in marijuana
+76037,tetrahymena,relative of the paramecium; often used in genetics research
+76038,tetralogy,a series of four related works (plays or operas or novels)
+76039,tetralogy_of_Fallot Fallot's_tetralogy Fallot's_syndrome,a congenital heart defect producing cyanosis; characterized by four symptoms: pulmonary stenosis and ventricular septal defect and malposition of the aorta over both ventricles and hypertrophy of the right ventricle
+76040,tetrameter,a verse line having four metrical feet
+76041,tetrapod,a vertebrate animal having four feet or legs or leglike appendages
+76042,tetrasaccharide,any of a variety of carbohydrates that yield four monosaccharide molecules on complete hydrolysis
+76043,tetraskelion tetraskele,a figure consisting of four stylized human arms or legs (or bent lines) radiating from a center
+76044,tetrasporangium,a sporangium containing four asexual spores
+76045,tetraspore,one of the four asexual spores produced within a sporangium
+76046,tetri,100 tetri equal 1 lari in Georgia
+76047,tetrode,a thermionic tube having four electrodes
+76048,tetrodotoxin,a powerful neurotoxin found in the ovaries of pufferfish
+76049,tetrose,any monosaccharide sugar containing four atoms of carbon per molecule
+76050,tetroxide,an oxide containing four atoms of oxygen in the molecule
+76051,tetryl nitramine,a yellow crystalline explosive solid that is used in detonators
+76052,text,a passage from the Bible that is used as the subject of a sermon; "the preacher chose a text from Psalms to introduce his sermon"
+76053,text,the main body of a written work (as distinct from illustrations or footnotes etc.); "pictures made the text easier to understand"
+76054,text textual_matter,the words of something written; "there were more than a thousand words of text"; "they handed out the printed text of the mayor's speech"; "he wants to reconstruct the original text"
+76055,text-matching,a computer program that looks for text that matches a given text; "Google uses text-matching to find web pages containing a particular text"
+76056,text_editor,(computer science) an application that can be used to create and view and edit text files
+76057,text_file document,(computer science) a computer file that contains text (and possibly formatting instructions) using seven-bit ASCII characters
+76058,textbook text text_edition schoolbook school_text,a book prepared for use in schools or colleges; "his economics textbook is in its tenth edition"; "the professor wrote the text that he assigned students to buy"
+76059,textile_machine,a machine for making textiles
+76060,textile_mill,a factory for making textiles
+76061,textile_screw_pine lauhala Pandanus_tectorius,Polynesian screw pine
+76062,textual_criticism,comparison of a particular text with related materials in order to establish authenticity
+76063,texture,the essential quality of something; "the texture of Neapolitan life"
+76064,texture,the musical pattern created by parts being played or sung together; "then another melodic line is added to the texture"
+76065,texture,the characteristic appearance of a surface having a tactile quality
+76066,texture,the feel of a surface or a fabric; "the wall had a smooth texture"
+76067,texture grain,the physical composition of something (especially with respect to the size and shape of the small constituents of a substance); "breadfruit has the same texture as bread"; "sand of a fine grain"; "fish with a delicate flavor and texture"; "a stone of coarse grain"
+76068,thalamostriate_vein,a vein serving the thalamus and corpus striatum
+76069,thalamus,large egg-shaped structures of grey matter that form the dorsal subdivision of the diencephalon
+76070,thalassemia thalassaemia Mediterranean_anemia Mediterranean_anaemia,an inherited form of anemia caused by faulty synthesis of hemoglobin
+76071,thalidomide,a sedative and hypnotic drug; withdrawn from sale after discovered to cause severe birth defects because it inhibits angiogenesis
+76072,thallium Tl atomic_number_81,a soft grey malleable metallic element that resembles tin but discolors on exposure to air; it is highly toxic and is used in rodent and insect poisons; occurs in zinc blende and some iron ores
+76073,thallophyte,any of a group of cryptogamic organisms consisting principally of a thallus and thus showing no differentiation into stem and root and leaf
+76074,thallus,a plant body without true stems or roots or leaves or vascular system; characteristic of the thallophytes
+76075,thalweg,the middle of the chief navigable channel of a waterway that forms the boundary line between states
+76076,thalweg,a line following the lowest points of a valley
+76077,thanatology,the branch of science that studies death (especially its social and psychological aspects)
+76078,thanatophobia,a morbid fear of death
+76079,thanatopsis,an essay expressing a view on the subject of death
+76080,thane,a feudal lord or baron
+76081,thane,a man ranking above an ordinary freeman and below a noble in Anglo-Saxon England (especially one who gave military service in exchange for land)
+76082,thaneship,the position of thane
+76083,thank_offering,an offering made as an expression of thanks
+76084,thank_you,a conversational expression of gratitude
+76085,thanks,an acknowledgment of appreciation
+76086,thanks,with the help of or owing to; "thanks to hard work it was a great success"
+76087,thatch,plant stalks used as roofing material
+76088,thatch,hair resembling thatched roofing material
+76089,thatch thatched_roof,a house roof made with a plant material (as straw)
+76090,thatch_palm thatch_tree silver_thatch broom_palm Thrinax_parviflora,small palm of southern Florida and West Indies closely resembling the silvertop palmetto
+76091,thatcher,someone skilled in making a roof from plant stalks or foliage
+76092,thaumatolatry miracle-worship,the worship of miracles
+76093,thaw,a relaxation or slackening of tensions or reserve; becoming less hostile; "the thaw between the United States and Russia has led to increased cooperation in world affairs"
+76094,thaw melt thawing melting,the process whereby heat changes something from a solid to a liquid; "the power failure caused a refrigerator melt that was a disaster"; "the thawing of a frozen turkey takes several hours"
+76095,thaw thawing warming,warm weather following a freeze; snow and ice melt; "they welcomed the spring thaw"
+76096,the_City,used to allude to the securities industry of Great Britain
+76097,the_Irish_Famine the_Great_Hunger the_Great_Starvation the_Great_Calamity,a famine in Ireland resulting from a potato blight; between 1846 and 1851 a million people starved to death and 1.6 million emigrated (most to America)
+76098,the_devil,something difficult or awkward to do or deal with; "it will be the devil to solve"
+76099,the_halt,(archaic) lame persons collectively; "the poor, and the maimed, and the halt, and the blind"--Luke 14:21
+76100,the_hots,intense sexual desire
+76101,the_shits the_trots,obscene terms for diarrhea
+76102,the_way_of_the_world the_ways_of_the_world,the manner in which people typically behave or things typically happen; "the ordinary reader is endowed with considerable wisdom and knowledge of the way of the world"; "she was well-versed in the ways of the world before she had taken the veil"; "he was amazingly innocent of the ways of the world"
+76103,theanthropism,(theology) the doctrine that Jesus was a union of the human and the divine
+76104,theater theatre house,a building where theatrical performances or motion-picture shows can be presented; "the house was full"
+76105,theater_company,a company that produces plays
+76106,theater_curtain theatre_curtain,a hanging cloth that conceals the stage from the view of the audience; rises or parts at the beginning and descends or closes between acts and at the end of a performance
+76107,theater_light,any of various lights used in a theater
+76108,theater_of_the_absurd,plays stressing the irrational or illogical aspects of life, usually to show that modern life is pointless; "Samuel Beckett and Eugene Ionesco have written plays for the theater of the absurd"
+76109,theater_of_war theatre_of_war,the entire land, sea, and air area that may become or is directly involved in war operations
+76110,theater_stage theatre_stage,a stage in a theater on which actors can perform
+76111,theater_ticket theatre_ticket,a ticket good for admission to a theater
+76112,theatrical_performance theatrical representation histrionics,a performance of a play
+76113,theatrical_producer,someone who produces theatrical performances
+76114,theatrical_production staging,the production of a drama on the stage
+76115,theatrical_season,the season when new plays are produced
+76116,thebe,100 thebe equal 1 pula in Botswana
+76117,theca,outer sheath of the pupa of certain insects
+76118,theca sac,a case or sheath especially a pollen sac or moss capsule
+76119,thecodont thecodont_reptile,presumably in the common ancestral line to dinosaurs and crocodiles and birds
+76120,theism,the doctrine or belief in the existence of a God or gods
+76121,theist,one who believes in the existence of a god or gods
+76122,thelarche,the start of breast development in a woman at the beginning of puberty
+76123,theme melodic_theme musical_theme idea,(music) melodic subject of a musical composition; "the theme is announced in the first measures"; "the accompanist picked up the idea and elaborated it"
+76124,theme motif,a unifying idea that is a recurrent element in literary or artistic work; "it was the usual `boy gets girl' theme"
+76125,theme_park,an amusement park that is organized around some theme (as the world of tomorrow)
+76126,theme_song,a melody that recurs and comes to represent a musical play or movie
+76127,then,that time; that moment; "we will arrive before then"; "we were friends from then on"
+76128,thenar,the fleshy area of the palm at the base of the thumb
+76129,theocracy,a political unit governed by a deity (or by officials thought to be divinely guided)
+76130,theocracy,the belief in government by divine guidance
+76131,theodicy,the branch of theology that defends God's goodness and justice in the face of the existence of evil
+76132,theodolite transit,a surveying instrument for measuring horizontal and vertical angles, consisting of a small telescope mounted on a tripod
+76133,theogony,the study of the origins and genealogy of the gods
+76134,theologian theologist theologizer theologiser,someone who is learned in theology or who speculates about theology
+76135,theological_doctrine,the doctrine of a religious group
+76136,theological_virtue supernatural_virtue,according to Christian ethics: one of the three virtues (faith, hope, and charity) created by God to round out the natural virtues
+76137,theology,the learned profession acquired by specialized courses in religion (usually taught at a college or seminary); "he studied theology at Oxford"
+76138,theology divinity,the rational and systematic study of religion and its influences and of the nature of religious truth
+76139,theology theological_system,a particular system or school of religious beliefs and teachings; "Jewish theology"; "Roman Catholic theology"
+76140,theophany,a visible (but not necessarily material) manifestation of a deity to a human person
+76141,theophylline Elixophyllin Slo-Bid Theobid,a colorless crystalline alkaloid derived from tea leaves or made synthetically; used in medicine as a bronchial dilator
+76142,theorem,a proposition deducible from basic postulates
+76143,theorem,an idea accepted as a demonstrable truth
+76144,theorist theoretician theorizer theoriser idealogue,someone who theorizes (especially in science or art)
+76145,theorization theorisation,the production or use of theories
+76146,theory,a well-substantiated explanation of some aspect of the natural world; an organized system of accepted knowledge that applies in a variety of circumstances to explain a specific set of phenomena; "theories can incorporate facts and laws and tested hypotheses"; "true in fact and theory"
+76147,theory,a belief that can guide behavior; "the architect has a theory that more is less"; "they killed him on the theory that dead men tell no tales"
+76148,theory_of_dissociation theory_of_electrolytic_dissociation Arrhenius_theory_of_dissociation,(chemistry) theory that describes aqueous solutions in terms of acids (which dissociate to give hydrogen ions) and bases (which dissociate to give hydroxyl ions); the product of an acid and a base is a salt and water
+76149,theory_of_evolution theory_of_organic_evolution evolutionism,(biology) a scientific theory of the origin of species of plants and animals
+76150,theory_of_gravitation theory_of_gravity gravitational_theory Newton's_theory_of_gravitation,(physics) the theory that any two particles of matter attract one another with a force directly proportional to the product of their masses and inversely proportional to the square of the distance between them
+76151,theory_of_indicators Ostwald's_theory_of_indicators,(chemistry) the theory that all indicators are either weak acids or weak bases in which the color of the ionized form is different from the color before dissociation
+76152,theory_of_inheritance,(biology) a theory of how characteristics of one generation are derived from earlier generations
+76153,theosophism,belief in theosophy
+76154,theosophist,a believer in theosophy
+76155,theosophy,a system of belief based on mystical insight into the nature of God and the soul
+76156,theoterrorism,terrorism for a religious purpose
+76157,therapeutic_abortion,a legally induced abortion for medical reasons (as when the mother's life is threatened)
+76158,therapeutic_cloning biomedical_cloning,nuclear transplantation of a patient's own cells to make an oocyte from which immune-compatible cells (especially stem cells) can be derived for transplant
+76159,therapeutics,branch of medicine concerned with the treatment of disease
+76160,therapist healer,a person skilled in a particular type of therapy
+76161,therapsid protomammal,probably warm-blooded; considered direct ancestor of mammals
+76162,therapy,(medicine) the act of caring for someone (as by medication or remedial training etc.); "the quarterback is undergoing treatment for a knee injury"; "he tried every treatment the doctors suggested"; "heat therapy gave the best relief"
+76163,there,a location other than here; that place; "you can take it from there"
+76164,theremin,an electronic musical instrument; melodies can be played by moving the right hand between two rods that serve as antennas to control pitch; the left hand controls phrasing
+76165,thereness,real existence; "things are really there...capture the thereness of them"--Charles Hopkinson
+76166,thereness,the state of being there--not here--in position
+76167,therm,a unit of heat equal to 100,000 British thermal units
+76168,thermal,rising current of warm air
+76169,thermal_barrier heat_barrier,a limit to high speed flight imposed by aerodynamic heating
+76170,thermal_equilibrium,a state in which all parts of a system are at the same temperature
+76171,thermal_pollution,harm to lakes and rivers resulting from the release of excessive waste heat into them
+76172,thermal_printer,a printer that produces characters by applying heat to special paper that is sensitive to heat
+76173,thermal_reactor,a nuclear reactor in which nuclear fissions are caused by neutrons that are slowed down by a moderator
+76174,thermalgesia,pain caused by heat
+76175,thermion,an electrically charged particle (electron or ion) emitted by a substance at a high temperature
+76176,thermionic_current,an electric current produced between two electrodes as a result of electrons emitted by thermionic emission
+76177,thermionic_emission thermal_emission,the emission of electrons from very hot substances
+76178,thermionics,the branch of electronics dealing with thermionic phenomena (especially thermionic vacuum tubes)
+76179,thermistor thermal_resistor,a semiconductor device made of materials whose resistance varies as a function of temperature; can be used to compensate for temperature variation in other components of a circuit
+76180,thermoacidophile,archaebacteria that thrive in strongly acidic environments at high temperatures
+76181,thermobaric_bomb fuel-air_bomb vacuum_bomb volume-detonation_bomb aerosol_bomb,a bomb that uses a fuel-air explosive; "a thermobaric bomb can create overpressures equal to an atomic bomb"
+76182,thermocautery,cautery (destruction of tissue) by heat
+76183,thermochemistry,the branch of chemistry that studies the relation between chemical action and the amount of heat absorbed or generated
+76184,thermocoagulation,congealing tissue by heat (as by electric current)
+76185,thermocouple thermocouple_junction,a kind of thermometer consisting of two wires of different metals that are joined at both ends; one junction is at the temperature to be measured and the other is held at a fixed lower temperature; the current generated in the circuit is proportional to the temperature difference
+76186,thermodynamics,the branch of physics concerned with the conversion of different forms of energy
+76187,thermoelectric_thermometer thermel electric_thermometer,a thermometer that uses thermoelectric current to measure temperature
+76188,thermoelectricity,electricity produced by heat (as in a thermocouple)
+76189,thermogram,a graphical record produced by a thermograph
+76190,thermograph,medical instrument that uses an infrared camera to reveal temperature variations on the surface of the body
+76191,thermograph thermometrograph,a thermometer that records temperature variations on a graph as a function of time
+76192,thermography,diagnostic technique using a thermograph to record the heat produced by different parts of the body; used to study blood flow and to detect tumors
+76193,thermogravimetry,the measurement of changes in weight as a function of changes in temperature used as a technique of chemically analyzing substances
+76194,thermohydrometer thermogravimeter,a hydrometer that includes a thermometer
+76195,thermojunction,a junction between two dissimilar metals across which a voltage appears
+76196,thermometer,measuring instrument for measuring temperature
+76197,thermometry,the measurement of temperature
+76198,thermonuclear_reaction,a nuclear fusion reaction taking place at very high temperatures (as in the sun)
+76199,thermonuclear_reactor fusion_reactor,a nuclear reactor that uses controlled nuclear fusion to generate energy
+76200,thermopile,a kind of thermometer for measuring heat radiation; consists of several thermocouple junctions in series
+76201,thermoplastic thermoplastic_resin,a material that softens when heated and hardens again when cooled
+76202,thermoreceptor,a sensory receptor that responds to heat and cold
+76203,thermos thermos_bottle thermos_flask,vacuum flask that preserves temperature of hot or cold drinks
+76204,thermosetting_compositions thermosetting_resin,a material that hardens when heated and cannot be remolded
+76205,thermosphere,the atmospheric layer between the mesosphere and the exosphere
+76206,thermostat thermoregulator,a regulator for automatically regulating temperature by starting or stopping the supply of heat
+76207,thermostatics thermodynamics_of_equilibrium,the aspect of thermodynamics concerned with thermal equilibrium
+76208,thermotherapy,the use of heat to treat a disease or disorder; heating pads or hot compresses or hot-water bottles are used to promote circulation in peripheral vascular disease or to relax tense muscles
+76209,thermotropism,an orienting response to warmth
+76210,theropod theropod_dinosaur bird-footed_dinosaur,any of numerous carnivorous dinosaurs of the Triassic to Cretaceous with short forelimbs that walked or ran on strong hind legs
+76211,thesaurus synonym_finder,a book containing a classified list of synonyms
+76212,thesis,an unproved statement put forward as a premise in an argument
+76213,theta,the 8th letter of the Greek alphabet
+76214,theta_rhythm theta_wave,the normal brainwave in the encephalogram of a person who is awake but relaxed and drowsy; occurs with low frequency and low amplitude
+76215,theurgy,the effect of supernatural or divine intervention in human affairs
+76216,theurgy,white magic performed with the help of beneficent spirits (as formerly practiced by Neoplatonists)
+76217,thiabendazole,an antifungal agent and anthelmintic
+76218,thiazide,any of a group of drugs commonly used as diuretics in the treatment of hypertension; they block the reabsorption of sodium in the kidneys
+76219,thiazine,a compound made up of a ring of four carbon atoms and one sulfur atom and one nitrogen atom
+76220,thick-billed_murre Uria_lomvia,a variety of murre
+76221,thick_skin,skin that is very thick (as an elephant or rhinoceros)
+76222,thickening inspissation,the act of thickening
+76223,thickening thickener,any material used to thicken; "starch is used in cooking as a thickening"
+76224,thickhead whistler,Australian and southeastern Asian birds with a melodious whistling call
+76225,thickness,indistinct articulation; "judging from the thickness of his speech he had been drinking heavily"
+76226,thickness,the dimension through an object as opposed to its length or width
+76227,thickness,resistance to flow
+76228,thickness heaviness,used of a line or mark
+76229,thief stealer,a criminal who takes property belonging to someone else with the intention of keeping it or selling it
+76230,thievishness larcenous,having a disposition to steal
+76231,thigh,the part of the leg between the hip and the knee
+76232,thigh_pad,protective garment consisting of a pad worn over the thighs by football players
+76233,thill,one of two shafts extending from the body of a cart or carriage on either side of the animal that pulls it
+76234,thimble,a small metal cap to protect the finger while sewing; can be used as a small container
+76235,thimble thimbleful,as much as a thimble will hold
+76236,thimbleweed Anemone_cylindrica,a common North American anemone with cylindrical fruit clusters resembling thimbles
+76237,thimerosal sodium_ethylmercurithiosalicylate Merthiolate,a light-colored crystalline powder (trade name Merthiolate) used as a surgical antiseptic
+76238,thin-shelled_mussel,mussel with thin fragile shells having only rudimentary hinge teeth
+76239,thin_air,nowhere to be found in a giant void; "it vanished into thin air"
+76240,thin_person skin_and_bones scrag,a person who is unusually thin and scrawny
+76241,thing,a special situation; "this thing has got to end"; "it is a remarkable thing"
+76242,thing,a persistent illogical feeling of desire or aversion; "he has a thing about seafood"; "she has a thing about him"
+76243,thing,an event; "a funny thing happened on the way to the..."
+76244,thing,a statement regarded as an object; "to say the same thing in other terms"; "how can you say such a thing?"
+76245,thing,a special objective; "the thing is to stay in bounds"
+76246,thing,a special abstraction; "a thing of the spirit"; "things of the heart"
+76247,thing,any attribute or quality considered as having its own existence; "the thing I like about her is ..."
+76248,thing,an entity that is not named specifically; "I couldn't tell what the thing was"
+76249,thing,an artifact; "how does this thing work?"
+76250,thing,an action; "how could you do such a thing?"
+76251,thing,a separate and self-contained entity
+76252,things,any movable possession (especially articles of clothing); "she packed her things and left"
+76253,think,an instance of deliberate thinking; "I need to give it a good think"
+76254,think_piece,an article in a newspaper or magazine or journal that represents opinions and ideas and discussion rather than bare facts
+76255,think_tank think_factory,a company that does research for hire and issues reports on the implications
+76256,thinker,someone who exercises the mind (usually in an effort to reach a decision)
+76257,thinker creative_thinker mind,an important intellectual; "the great minds of the 17th century"
+76258,thinking thought thought_process cerebration intellection mentation,the process of using your mind to consider something carefully; "thinking always made him frown"; "she paused for thought"
+76259,thinking_cap,a state in which one thinks
+76260,thinness,a consistency of low viscosity; "he disliked the thinness of the soup"
+76261,thinness tenuity slenderness,relatively small dimension through an object as opposed to its length or width; "the tenuity of a hair"; "the thinness of a rope"
+76262,thinning_shears,shears with one serrate blade; used for thinning hair
+76263,thiobacillus,small rod-shaped bacteria living in sewage or soil and oxidizing sulfur
+76264,thiobacteria sulphur_bacteria sulfur_bacteria,any bacterium of the genus Thiobacillus
+76265,thiocyanate,a salt of thiocyanic acid; formed when alkaline cyanides are fused with sulfur
+76266,thiocyanic_acid,an unstable acid that can be obtained by distilling a thiocyanate salt
+76267,thioguanine,an antineoplastic drug used to treat acute leukemias
+76268,thiopental thiopental_sodium thiopentobarbital_sodium Pentothal,barbiturate that is a hygroscopic powder (trade name Pentothal) that is a strong barbiturate that acts rapidly; induces a relaxed state when injected as a general anesthetic
+76269,thioridazine Mellaril,a tranquilizer (trade name Mellaril) used to treat schizophrenia and other psychotic disorders
+76270,thiotepa,an antineoplastic drug used to treat certain malignancies
+76271,thiothixene Navane,a tranquilizer (trade name Navane) used to treat schizophrenia
+76272,thiouracil,depresses the function of the thyroid gland
+76273,third,following the second position in an ordering or series; "a distant third"; "he answered the first question willingly, the second reluctantly, and the third with resentment"
+76274,third,the musical interval between one note and another three notes away from it; "a simple harmony written in major thirds"
+76275,third-class_mail third_class,mail consisting of printed matter qualifying for reduced postal rates
+76276,third-degree_burn,burn characterized by destruction of both epidermis and dermis
+76277,third-place_finish,a finish in third place (as in a race)
+76278,third-rater,one who is third-rate or distinctly inferior
+76279,third_base third,the base that must be touched third by a base runner in baseball; "he was cut down on a close play at third"
+76280,third_base third,the fielding position of the player on a baseball team who is stationed near the third of the bases in the infield (counting counterclockwise from home plate); "he is playing third"
+76281,third_baseman third_sacker,(baseball) the person who plays third base
+76282,third_degree,interrogation often accompanied by torture to extort information or a confession
+76283,third_dimension,the dimension whereby a solid object differs from a two-dimensional drawing of it
+76284,third_estate Commons,the common people
+76285,third_eye pineal_eye,a sensory structure capable of light reception located on the dorsal side of the diencephalon in various reptiles
+76286,third_gear third,the third from the lowest forward ratio gear in the gear box of a motor vehicle; "you shouldn't try to start in third gear"
+76287,third_law_of_motion Newton's_third_law_of_motion Newton's_third_law law_of_action_and_reaction,action and reaction are equal and opposite
+76288,third_law_of_thermodynamics,law stating that the entropy of a substance approaches zero as its temperature approaches absolute zero
+76289,third_party,someone other than the principals who are involved in a transaction
+76290,third_party,a political party organized in opposition to the major parties in a two-party system
+76291,third_person,pronouns and verbs that are used to refer to something other than the speaker or addressee of the language in which they occur
+76292,third_rail,a rail through which electric current is supplied to an electric locomotive
+76293,third_trimester,time period extending from the 28th week of gestation until delivery
+76294,third_ventricle,a narrow ventricle in the midplane below the corpus callosum; communicates with the fourth ventricle via the Sylvian aqueduct
+76295,thirst thirstiness,a physiological need to drink
+76296,thirteen 13 XIII baker's_dozen long_dozen,the cardinal number that is the sum of twelve and one
+76297,thirteenth,position 13 in a countable series of things
+76298,thirties 1930s,the decade from 1930 to 1939
+76299,thirties mid-thirties thirty-something,the time of life between 30 and 40
+76300,thirtieth,position 30 in a countable series of things
+76301,thirty 30 XXX,the cardinal number that is the product of ten and three
+76302,thirty-second_note demisemiquaver,a musical note having the time value of a thirty-second of a whole note
+76303,thistle,any of numerous plants of the family Compositae and especially of the genera Carduus and Cirsium and Onopordum having prickly-edged leaves
+76304,thistledown,pappus of a thistle consisting of silky featherlike hairs attached to the seed-like fruit of a thistle
+76305,thong,underpants resembling a G-string; worn by women especially under very tight pants; "she wore thongs in her quest for the callipygian ideal"
+76306,thong,a thin strip of leather; often used to lash things together
+76307,thoracic_actinomycosis,a serious form of actinomycosis that affects the chest
+76308,thoracic_aorta,a branch of the descending aorta; divides into the iliac arteries
+76309,thoracic_duct,the major duct of the lymphatic system
+76310,thoracic_medicine,the branch of medicine that deals with the diagnosis and treatment of diseases of the chest
+76311,thoracic_nerve,any of twelve pairs of spinal nerves emerging from the thoracic region of the spinal cord
+76312,thoracic_outlet_syndrome,tingling sensations in the fingers; caused by compression on a nerve supplying the arm
+76313,thoracic_vein vena_thoracica,veins that drain the thoracic walls
+76314,thoracic_vertebra dorsal_vertebra,one of 12 vertebrae in the human vertebral column; thoracic vertebrae extend from the seventh cervical vertebra down to the first lumbar vertebra
+76315,thoracocentesis thoracentesis,removal of fluid from the chest by centesis for diagnostic or therapeutic purposes
+76316,thoracoepigastric_vein vena_thoracoepigastrica,a vein arising from the region of the superficial epigastric vein and opening into the axillary vein or thoracic vein
+76317,thoracotomy,surgical incision into the chest walls opening up the pleural cavity
+76318,thorax,the middle region of the body of an arthropod between the head and the abdomen
+76319,thorax,part of an insect's body that bears the wings and legs
+76320,thorax chest pectus,the part of the human torso between the neck and the diaphragm or the corresponding part in other vertebrates
+76321,thorite,a radioactive mineral consisting of thorium silicate; it is a source of thorium that is found in coarse granite
+76322,thorium Th atomic_number_90,a soft silvery-white tetravalent radioactive metallic element; isotope 232 is used as a power source in nuclear reactors; occurs in thorite and in monazite sands
+76323,thorium-228 radiothorium,radioactive isotope of thorium with mass number 228
+76324,thorn,a Germanic character of runic origin
+76325,thorn_apple,any of several plants of the genus Datura
+76326,thornbill,any of various South American hummingbirds with a sharp pointed bill
+76327,thorny_amaranth Amaranthus_spinosus,erect annual of tropical central Asia and Africa having a pair of divergent spines at most leaf nodes
+76328,thorny_skate Raja_radiata,cold-water bottom fish with spines on the back; to 40 inches
+76329,thoroughbred,a well-bred person
+76330,thoroughbred,a racehorse belonging to a breed that originated from a cross between Arabian stallions and English mares
+76331,thoroughbred purebred pureblood,a pedigreed animal of unmixed lineage; used especially of horses
+76332,thoroughbred_race,a race between thoroughbred horses
+76333,thoroughbred_racing,the sport of racing thoroughbred horses
+76334,thoroughfare,a public road from one place to another
+76335,thoroughness,conscientiousness in performing all aspects of a task
+76336,thortveitite,a mineral consisting of scandium yttrium silicate; a source of scandium
+76337,thought,the organized beliefs of a period or group or individual; "19th century thought"; "Darwinian thought"
+76338,thoughtfulness,the trait of thinking carefully before acting
+76339,thousand one_thousand 1000 M K chiliad G grand thou yard,the cardinal number that is the product of 10 and 100
+76340,thousandth,position 1,000 in a countable series of things
+76341,thrall,someone held in bondage
+76342,thrash,a swimming kick used while treading water
+76343,thrasher mocking_thrush,thrush-like American songbird able to mimic other birdsongs
+76344,thrashing walloping debacle drubbing slaughter trouncing whipping,a sound defeat
+76345,thread yarn,a fine cord of twisted fibers (of cotton or silk or wool or nylon etc.) used in sewing and weaving
+76346,thread_blight,a disease of tropical woody plants (cacao or tea or citrus)
+76347,threadfin,mullet-like tropical marine fishes having pectoral fins with long threadlike rays
+76348,threadfish thread-fish Alectis_ciliaris,fish having greatly elongated front rays on dorsal and anal fins
+76349,threadleaf_groundsel Senecio_doublasii,bluish-green bushy leafy plant covered with close white wool and bearing branched clusters of yellow flower heads; southwestern United States; toxic to range livestock
+76350,threat,a warning that something unpleasant is imminent; "they were under threat of arrest"
+76351,threat,declaration of an intention or a determination to inflict harm on another; "his threat to kill me was quite explicit"
+76352,three 3 III trio threesome tierce leash troika triad trine trinity ternary ternion triplet tercet terzetto trey deuce-ace,the cardinal number that is the sum of one and one and one
+76353,three-D 3-D 3D,a movie with images having three dimensional form or appearance
+76354,three-D 3-D 3D,having a three-dimensional form or appearance; "aren't dreams always in 3-D?"
+76355,three-centered_arch basket-handle_arch,a round arch whose inner curve is drawn with circles having three centers
+76356,three-cornered_leek triquetrous_leek Allium_triquetrum,European leek naturalized in Great Britain; leaves are triangular
+76357,three-day_event,an equestrian competition; the first day is dressage; the second is cross-country jumping; the third is stadium jumping
+76358,three-decker,any ship having three decks
+76359,three-decker,a warship carrying guns on three decks
+76360,three-dimensional_radar 3d_radar,radar that will report altitude as well as azimuth and distance of a target
+76361,three-dimensionality third-dimensionality,the property of having three dimensions
+76362,three-fourths three-quarters,three of four equal parts; "three-fourths of a pound"
+76363,three-hitter 3-hitter,a game in which a pitcher allows the opposing team only 3 hits
+76364,three-mile_limit,the limit of a nation's territorial waters
+76365,three-piece_suit,a business suit consisting of a jacket and vest and trousers
+76366,three-point_landing,a landing in which all three wheels of the aircraft touch the ground at the same time
+76367,three-point_turn,the act of turning a vehicle around in a limited space by moving in a series of back and forward arcs
+76368,three-quarter_binding,the spine and much of the sides are a different material from the rest of the cover
+76369,three-ring_circus,a circus with simultaneous performances in three rings
+76370,three-seeded_mercury Acalypha_virginica,weedy herb of eastern North America
+76371,three-spined_stickleback Gasterosteus_aculeatus,of rivers and coastal regions
+76372,three-toed_sloth ai Bradypus_tridactylus,a sloth that has three long claws on each forefoot and each hindfoot
+76373,three-way_calling,a way of adding a third party to your conversation without the assistance of a telephone operator
+76374,three-way_switch three-point_switch,an electric switch that has three terminals; used to control a circuit from two different locations
+76375,three-year-old_horse three_year_old,a racehorse that is three years old
+76376,threepence,former cupronickel coin of the United Kingdom equal to three pennies
+76377,threescore,a set with 3 times 20 members
+76378,threonine,a colorless crystalline amino acid found in protein; occurs in the hydrolysates of certain proteins; an essential component of human nutrition
+76379,thresher thrasher thresher_shark fox_shark Alopius_vulpinus,large pelagic shark of warm seas with a whiplike tail used to round up small fish on which to feed
+76380,thresher thrasher threshing_machine,a farm machine for separating seeds or grain from the husks and straw
+76381,threshing,the separation of grain or seeds from the husks and straw; "they used to do the threshing by hand but now there are machines to do it"
+76382,threshing_floor,a floor or ground area for threshing or treading out grain
+76383,threshold,the starting point for a new state or experience; "on the threshold of manhood"
+76384,threshold limen,the smallest detectable sensation
+76385,threshold_element threshold_gate,a logic element that performs a threshold operation
+76386,threshold_function,a function that takes the value 1 if a specified function of the arguments exceeds a given threshold and 0 otherwise
+76387,threshold_level,the intensity level that is just barely perceptible
+76388,threshold_operation,an operation performed on operands in order to obtain the value of a threshold function
+76389,thrift,any of numerous sun-loving low-growing evergreens of the genus Armeria having round heads of pink or white flowers
+76390,thrift_institution,a depository financial institution intended to encourage personal savings and home buying
+76391,thriftlessness waste wastefulness,the trait of wasting resources; "a life characterized by thriftlessness and waste"; "the wastefulness of missed opportunities"
+76392,thriftshop second-hand_store,a shop that sells secondhand goods at reduced prices
+76393,thrill,something that causes you to experience a sudden intense feeling or sensation; "the thrills of space travel"
+76394,thriller,a suspenseful adventure story or play or movie
+76395,thrips thrip thripid,any of various small to minute sucking insects with narrow feathery wings if any; they feed on plant sap and many are destructive
+76396,throat,an opening in the vamp of a shoe at the instep
+76397,throat,a passage resembling a throat in shape or function; "the throat of the vase"; "the throat of a chimney"
+76398,throat,the part of an animal's body that corresponds to a person's throat
+76399,throat pharynx,the passage to the stomach and lungs; in the front part of the neck below the chin and above the collarbone
+76400,throat_protector,protective garment worn by hockey goalkeeper and catcher in baseball
+76401,throatwort nettle-leaved_bellflower Campanula_trachelium,European bellflower with blue-purple to lilac flowers formerly used to treat sore throat
+76402,throb,a deep pulsating type of pain
+76403,throb throbbing pounding,an instance of rapid strong pulsation (of the heart); "he felt a throbbing in his head"
+76404,throbbing,a sound with a strong rhythmic beat; "the throbbing of the engines"
+76405,throe,hard or painful trouble or struggle; "a country in the throes of economic collapse"
+76406,throe,severe spasm of pain; "the throes of dying"; "the throes of childbirth"
+76407,throes,violent pangs of suffering; "death throes"
+76408,thrombasthenia,a rare autosomal recessive disease in which the platelets do not produce clots in the normal way and hemorrhage results
+76409,thrombectomy,surgical removal of a blood clot (thrombus) from a blood vessel
+76410,thrombin,an enzyme that acts on fibrinogen in blood causing it to clot
+76411,thrombocytopenia thrombopenia,a blood disease characterized by an abnormally small number of platelets in the blood
+76412,thrombocytopenic_purpura idiopathic_thrombocytopenic_purpura purpura_hemorrhagica Werlhof's_disease,purpura associated with a reduction in circulating blood platelets which can result from a variety of factors
+76413,thrombocytosis,increase in the number of platelets in the blood which tends to cause clots to form; associated with many neoplasms and chronic infections and other diseases
+76414,thromboembolism,occlusion of a blood vessel by an embolus that has broken away from a thrombus
+76415,thrombolysis,the process of breaking up and dissolving blood clots
+76416,thrombolytic thrombolytic_agent clot_buster,a kind of pharmaceutical that can break up clots blocking the flow of blood to the heart muscle
+76417,thrombolytic_therapy,therapy consisting of the administration of a pharmacological agent to cause thrombolysis of an abnormal blood clot
+76418,thrombophlebitis,phlebitis in conjunction with the formation of a blood clot (thrombus)
+76419,thromboplastin thrombokinase factor_III,an enzyme liberated from blood platelets that converts prothrombin into thrombin as blood starts to clot
+76420,thrombosis,the formation or presence of a thrombus (a clot of coagulated blood attached at the site of its formation) in a blood vessel
+76421,thrombus,a blood clot formed within a blood vessel and remaining attached to its place of origin
+76422,throne,the chair of state for a monarch, bishop, etc.; "the king sat on his throne"
+76423,throne,the position and power of an exalted person (a sovereign or bishop) who is entitled to sit in a chair of state on ceremonial occasions
+76424,throstle,a spinning machine formerly used to twist and wind fibers of cotton or wool continuously
+76425,throughput,output relative to input; the amount passing through a system from input to output (especially of a computer program over a period of time)
+76426,throw,a single chance or instance; "he couldn't afford $50 a throw"
+76427,throw,bedclothes consisting of a lightweight cloth covering (an afghan or bedspread) that is casually thrown over something
+76428,throw,casting an object in order to determine an outcome randomly; "he risked his fortune on a throw of the dice"
+76429,throw,the act of throwing (propelling something with a rapid movement of the arm and wrist); "the catcher made a good throw to second base"
+76430,throw stroke cam_stroke,the maximum movement available to a pivoted or reciprocating piece by a cam
+76431,throw-in,(rugby) an act or instance of throwing a ball in to put it into play
+76432,throw-weight,the weight of the payload of a missile (not including the weight of the rocket)
+76433,throw_pillow,a small cushion that is used for decorative purposes
+76434,throwaway,words spoken in a casual way with conscious under-emphasis
+76435,thrower,someone who projects something (especially by a rapid motion of the arm)
+76436,throwing_stick throwing_board spear_thrower dart_thrower,a device resembling a sling that is used in various primitive societies to propel a dart or spear
+76437,throwster thrower,a person who twists silk or rayon filaments into a thread or yarn
+76438,thrum,a thrumming sound; "he could hear the thrum of a banjo"
+76439,thrush,candidiasis of the oral cavity; seen mostly in infants or debilitated adults
+76440,thrush,a woman who sings popular songs
+76441,thrush,songbirds characteristically having brownish upper plumage with a spotted breast
+76442,thrush_nightingale Luscinia_luscinia,large nightingale of eastern Europe
+76443,thrust,verbal criticism; "he enlivened his editorials with barbed thrusts at politicians"
+76444,thrust_bearing,a bearing designed to take thrusts parallel to the axis of revolution
+76445,thrust_fault overthrust_fault reverse_fault,a geological fault in which the upper side appears to have been pushed upward by compression
+76446,thrust_stage,a theater stage that extends out into the audience's part of a theater and has seats on three sides
+76447,thruster,a small rocket engine that provides the thrust needed to maneuver a spacecraft
+76448,thuggee,murder and robbery by thugs
+76449,thuggery,violent or brutal acts as of thugs
+76450,thulium Tm atomic_number_69,a soft silvery metallic element of the rare earth group; isotope 170 emits X-rays and is used in small portable X-ray machines; it occurs in monazite and apatite and xenotime
+76451,thumb,the part of a glove that provides a covering for the thumb
+76452,thumb pollex,the thick short innermost digit of the forelimb
+76453,thumb_index,one of a series of rounded notches in the fore edge of a book to indicate sections
+76454,thumbhole,the hole in a woodwind that is closed and opened with the thumb
+76455,thumbhole,a finger hole made to fit the thumb (as in a bowling ball)
+76456,thumbnail,the nail of the thumb
+76457,thumbprint,fingerprint made by the thumb (especially by the pad of the thumb)
+76458,thumbscrew,instrument of torture that crushes the thumb
+76459,thumbscrew,screw designed to be turned with the thumb and fingers
+76460,thumbstall,protective covering for an injured thumb
+76461,thumbtack drawing_pin pushpin,a tack for attaching papers to a bulletin board or drawing board
+76462,thump,a heavy blow with the hand
+76463,thump thumping clump clunk thud,a heavy dull sound (as made by impact of heavy objects)
+76464,thunder,a booming or crashing noise caused by air expanding along the path of a bolt of lightning
+76465,thunder_snake worm_snake Carphophis_amoenus,small reddish wormlike snake of eastern United States
+76466,thunderbird,(mythology) the spirit of thunder and lightning believed by some Native Americans to take the shape of a great bird
+76467,thunderbolt bolt bolt_of_lightning,a discharge of lightning accompanied by thunder
+76468,thunderclap,a single sharp crash of thunder
+76469,thunderer,a noisemaker that makes a sound like thunder
+76470,thunderhead,a rounded projecting mass of a cumulus cloud with shining edges; often appears before a thunderstorm
+76471,thundershower,a short rainstorm accompanied by thunder and lightning
+76472,thunderstorm electrical_storm electric_storm,a storm resulting from strong rising air currents; heavy rain or hail along with thunder and lightning
+76473,thunk,a dull hollow sound; "the basketball made a thunk as it hit the rim"
+76474,thurifer,an acolyte who carries a thurible
+76475,thwack,a hard blow with a flat object
+76476,thwart cross_thwart,a crosspiece spreading the gunnels of a boat; used as a seat in a rowboat
+76477,thylacine Tasmanian_wolf Tasmanian_tiger Thylacinus_cynocephalus,rare doglike carnivorous marsupial of Tasmania having stripes on its back; probably extinct
+76478,thyme,any of various mints of the genus Thymus
+76479,thyme,leaves can be used as seasoning for almost any meat and stews and stuffings and vegetables
+76480,thyme-leaved_sandwort Arenaria_serpyllifolia,Eurasian annual sprawling plant naturalized throughout North America
+76481,thyme-leaved_speedwell Veronica_serpyllifolia,perennial decumbent herb having small opposite leaves and racemes of blue flowers; throughout Eurasia and the New World
+76482,thymine T,a base found in DNA (but not in RNA) and derived from pyrimidine; pairs with adenine
+76483,thymol thyme_camphor thymic_acid,a colorless crystalline solid used in perfume or preserving biological specimens or in embalming or medically as a fungicide or antiseptic
+76484,thymosin,hormone secreted by the thymus; stimulates immunological activity of lymphoid tissue
+76485,thymus_gland thymus,a ductless glandular organ at the base of the neck that produces lymphocytes and aids in producing immunity; atrophies with age
+76486,thyroglobulin,an iodine containing protein that is obtained from the thyroid gland and exhibits the general properties of the globulins
+76487,thyroid_cartilage Adam's_apple,the largest cartilage of the larynx
+76488,thyroid_gland thyroid,located near the base of the neck
+76489,thyroid_hormone,any of several closely related compounds that are produced by the thyroid gland and are active metabolically
+76490,thyroid_vein vena_thyroidea,any of several small veins draining blood from the thyroid area
+76491,thyroidectomy,surgical removal of the thyroid gland
+76492,thyroiditis,inflammation of the thyroid gland
+76493,thyronine,a phenolic amino acid of which thyroxine is a derivative
+76494,thyroprotein,a preparation made from iodinated protein and having an action similar to thyroxine
+76495,thyrotropin thyrotropic_hormone thyrotrophin thyrotrophic_hormone thyroid-stimulating_hormone TSH,anterior pituitary hormone that stimulates the function of the thyroid gland
+76496,thyrotropin-releasing_hormone TRH thyrotropin-releasing_factor TRF protirelin,hormone released by the hypothalamus that controls the release of thyroid-stimulating hormone from the anterior pituitary
+76497,thyroxine thyroxin tetraiodothyronine T,hormone produced by the thyroid glands to regulate metabolism by controlling the rate of oxidation in cells; "thyroxine is 65% iodine"
+76498,thyrse thyrsus,a dense flower cluster (as of the lilac or horse chestnut) in which the main axis is racemose and the branches are cymose
+76499,thyrsopteris Thyrsopteris_elegans,a terrestrial tree fern of South America
+76500,thysanopter thysanopteron thysanopterous_insect,an insect of the order Thysanoptera
+76501,thysanuran_insect thysanuron,primitive wingless insects: bristletail
+76502,ti Cordyline_terminalis,shrub with terminal tufts of elongated leaves used locally for thatching and clothing; thick sweet roots are used as food; tropical southeastern Asia, Australia and Hawaii
+76503,ti te si,the syllable naming the seventh (subtonic) note of any musical scale in solmization
+76504,tiara,a jeweled headdress worn by women on formal occasions
+76505,tibia shinbone shin_bone shin,the inner and thicker of the two bones of the human leg between the knee and ankle
+76506,tibial_vein vena_tibialis,veins of the lower leg; empty into the popliteal vein
+76507,tibialis tibialis_muscle musculus_tibialis,either of two skeletal muscle in each leg arising from the tibia; provides for movement of the foot
+76508,tibialis_anticus tibialis_anterior,a muscle running from the tibia to the first metatarsal and cuneiform bones
+76509,tibialis_posticus tibialis_posterior,a deep muscle of the leg
+76510,tic,a local and habitual twitching especially in the face
+76511,tick,a light mattress
+76512,tick,any of two families of small parasitic arachnids with barbed proboscis; feed on blood of warm-blooded animals
+76513,tick ticking,a metallic tapping sound; "he counted the ticks of the clock"
+76514,tick_trefoil beggar_lice beggar's_lice,any of various tropical and subtropical plants having trifoliate leaves and rough sticky pod sections or loments
+76515,ticker stock_ticker,a character printer that automatically prints stock quotations on ticker tape
+76516,ticker_tape,a continuous thin ribbon of paper on which stock quotes are written
+76517,ticket,a summons issued to an offender (especially to someone who violates a traffic regulation)
+76518,ticket,a commercial document showing that the holder is entitled to something (as to ride on public transportation or to enter a public entertainment)
+76519,ticket just_the_ticket,the appropriate or desirable thing; "this car could be just the ticket for a small family"
+76520,ticket-of-leave,a permit formerly given to convicts allowing them to leave prison under specific restrictions
+76521,ticket_agent booking_clerk,someone who sells tickets (e.g., theater seats or travel accommodations)
+76522,ticket_book,a book of tickets that can be torn out and used
+76523,ticket_collector ticket_taker,someone who is paid to admit only those who have purchased tickets
+76524,ticket_holder,holder of a ticket (for admission or for passage)
+76525,ticket_line,a queue of people waiting to buy tickets
+76526,ticket_window,a window through which tickets are sold (as from a ticket booth)
+76527,ticking,a strong fabric used for mattress and pillow covers
+76528,tickle,a cutaneous sensation often resulting from light stroking
+76529,tickle tickling titillation,the act of tickling
+76530,tickler tickler_file,a file of memoranda or notices that remind of things to be done
+76531,tickler_coil,a small coil in series with the anode of a vacuum tube and coupled to the grid to provide feedback
+76532,tickseed_sunflower Bidens_coronata Bidens_trichosperma,North American bur marigold with large flowers
+76533,ticktack,system of signalling by hand signs used by bookmakers at racetracks
+76534,ticktacktoe ticktacktoo tick-tack-toe tic-tac-toe tit-tat-toe noughts_and_crosses,a game in which two players alternately put crosses and circles in one of the compartments of a square grid of nine spaces; the object is to get a row of three crosses or three circles before the opponent does
+76535,ticktock tocktact tictac,steady recurrent ticking sound as made by a clock
+76536,tidal_basin,a basin that is full of water at high tide
+76537,tidal_bore bore eagre aegir eager,a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)
+76538,tidal_flow tidal_current,the water current caused by the tides
+76539,tidal_river tidewater_river tidal_stream tidewater_stream,a stream in which the effects of the tide extend far upstream
+76540,tidal_wave,an overwhelming manifestation of some emotion or phenomenon; "a tidal wave of nausea"; "the flood of letters hit him with the force of a tidal wave"; "a tidal wave of crime"
+76541,tidal_wave,an unusual (and often destructive) rise of water along the seashore caused by a storm or a combination of wind and high tide
+76542,tidal_wave,a wave resulting from the periodic flow of the tides that is caused by the gravitational attraction of the moon and sun
+76543,tidal_zone,an area subject to tidal action
+76544,tiddlywinks,a game in which players try to flip plastic disks into a cup by pressing them on the side sharply with a larger disk
+76545,tide,something that may increase or decrease (like the tides of the sea); "a rising tide of popular interest"
+76546,tide,the periodic rise and fall of the sea level under the gravitational pull of the moon
+76547,tide lunar_time_period,there are usually two high and two low tides each day
+76548,tideland,land near the sea that is overflowed by the tide
+76549,tidemark,indicator consisting of a line at the highwater or low-water limits of the tides
+76550,tidewater,low-lying coastal land drained by tidal streams
+76551,tideway,a channel in which a tidal current runs
+76552,tidiness,the habit of being tidy
+76553,tidiness neatness,the trait of being neat and orderly
+76554,tidy,receptacle that holds odds and ends (as sewing materials)
+76555,tidytips tidy_tips Layia_platyglossa,California annual having flower heads with yellow rays tipped with white
+76556,tie,equality of score in a contest
+76557,tie,(music) a slur over two notes of the same pitch; indicates that the note is to be sustained for their combined time value
+76558,tie,a cord (or string or ribbon or wire etc.) with which something is tied; "he needed a tie for the packages"
+76559,tie railroad_tie crosstie sleeper,one of the cross braces that support the rails on a railway track; "the British call a railroad tie a sleeper"
+76560,tie tie_beam,a horizontal beam used to prevent two other structural members from spreading apart or separating; "he nailed the rafters together with a tie beam"
+76561,tie_clip,a piece of jewelry that holds a man's tie in place
+76562,tie_rack,a rack for storing ties
+76563,tie_rod,either of two rods that link the steering gear to the front wheels
+76564,tie_tack tiepin scarfpin,a pin used to hold the tie in place
+76565,tiebreaker,overtime play in order to break a tie; e.g. tennis and soccer
+76566,tier,any one of two or more competitors who tie one another
+76567,tier,something that is used for tying; "the sail is fastened to the yard with tiers"
+76568,tier,one of two or more layers one atop another; "tier upon tier of huge casks"; "a three-tier wedding cake"
+76569,tier tier_up,a worker who ties something
+76570,tiercel tercel tercelet,male hawk especially male peregrine or gyrfalcon
+76571,tiered_seat,seating that is arranged in sloping tiers so that spectators in the back can see over the heads of those in front
+76572,tiger,a fierce or audacious person; "he's a tiger on the tennis court"; "it aroused the tiger in me"
+76573,tiger Panthera_tigris,large feline of forests in most of Asia having a tawny coat with black stripes; endangered
+76574,tiger_beetle,active usually bright-colored beetle that preys on other insects
+76575,tiger_cat,a cat having a striped coat
+76576,tiger_cat Felis_tigrina,medium-sized wildcat of Central America and South America having a dark-striped coat
+76577,tiger_cowrie Cypraea_tigris,cowrie whose shell is used for ornament
+76578,tiger_cub,a young tiger
+76579,tiger_lily devil_lily kentan Lilium_lancifolium,east Asian perennial having large reddish-orange black-spotted flowers with reflexed petals
+76580,tiger_lily leopard_lily pine_lily Lilium_catesbaei,lily of southeastern United States having cup-shaped flowers with deep yellow to scarlet recurved petals
+76581,tiger_moth,medium-sized moth with long richly colored and intricately patterned wings; larvae are called woolly bears
+76582,tiger_rattlesnake Crotalus_tigris,having irregularly cross-banded back; of arid foothills and canyons of southern Arizona and Mexico
+76583,tiger_salamander Ambystoma_tigrinum,widely distributed brown or black North American salamander with vertical yellowish blotches
+76584,tiger_shark Galeocerdo_cuvieri,large dangerous warm-water shark with striped or spotted body
+76585,tiger_snake Notechis_scutatus,highly venomous brown-and-yellow snake of Australia and Tasmania
+76586,tight_end,(football) an offensive end who lines up close to the tackle
+76587,tight_money,the economic condition in which credit is difficult to secure and interest rates are high
+76588,tightening,the act of making something tighter; "the tightening of economic controls"
+76589,tightness tautness,lack of movement or room for movement
+76590,tightrope,tightly stretched rope or wire on which acrobats perform high above the ground
+76591,tights leotards,skintight knit hose covering the body from the waist to the feet worn by acrobats and dancers and as stockings by women and girls
+76592,tiglon tigon,offspring of a male tiger and a female lion
+76593,tigress,a female tiger
+76594,tilde,a diacritical mark (~) placed over the letter n in Spanish to indicate a palatal nasal sound or over a vowel in Portuguese to indicate nasalization
+76595,tile,game equipment consisting of a flat thin piece marked with characters and used in board games like Mah-Jong, Scrabble, etc.
+76596,tile,a flat thin rectangular slab (as of fired clay or rubber or linoleum) used to cover surfaces
+76597,tile roofing_tile,a thin flat slab of fired clay used for roofing
+76598,tile_cutter,a cutter (tool for cutting) for floor tiles
+76599,tile_roof,a roof made of fired clay tiles
+76600,tilefish Lopholatilus_chamaeleonticeps,yellow-spotted violet food fish of warm deep waters
+76601,tiler,a worker who lays tile
+76602,tiling,the application of tiles to cover a surface
+76603,till boulder_clay,unstratified soil deposited by a glacier; consists of sand and clay and gravel and boulders mixed together
+76604,tillage,the cultivation of soil for raising crops
+76605,tiller,a shoot that sprouts from the base of a grass
+76606,tiller,someone who tills land (prepares the soil for the planting of crops)
+76607,tiller,lever used to turn the rudder on a boat
+76608,tilling,cultivation of the land in order to raise crops
+76609,tilt,a slight but noticeable partiality; "the court's tilt toward conservative rulings"
+76610,tilt list inclination lean leaning,the property possessed by a line or surface that departs from the vertical; "the tower had a pronounced tilt"; "the ship developed a list to starboard"; "he walked with a heavy inclination to the right"
+76611,tilt-top_table tip-top_table tip_table,a pedestal table whose top is hinged so that it can be tilted to a vertical position
+76612,tilt_angle,the angle a rocket makes with the vertical as it curves along its trajectory
+76613,tilter,someone who engages in a tilt or joust
+76614,tilter,a device for emptying a cask by tilting it without disturbing the dregs
+76615,tilth,the state of aggregation of soil and its condition for supporting plant growth
+76616,tiltyard,(formerly) an enclosed field for tilting contests
+76617,timbale,individual serving of minced e.g. meat or fish in a rich creamy sauce baked in a small pastry mold or timbale shell
+76618,timbale timbale_case,small pastry shell for creamy mixtures of minced foods
+76619,timber,a post made of wood
+76620,timber,a beam made of wood
+76621,timber_hitch,a hitch used to secure a rope to a log or spar; often supplemented by a half hitch
+76622,timber_line timberline tree_line,line marking the upper limit of tree growth in mountains or northern latitudes
+76623,timber_rattlesnake banded_rattlesnake Crotalus_horridus_horridus,widely distributed in rugged ground of eastern United States
+76624,timber_tree,any tree that is valued as a source of lumber or timber
+76625,timber_wolf grey_wolf gray_wolf Canis_lupus,a wolf with a brindled grey coat living in forested northern regions of North America
+76626,timberman,an owner or manager of a company that is engaged in lumbering
+76627,timbre timber quality tone,(music) the distinctive property of a complex sound (a voice or noise or musical sound); "the timbre of her soprano was rich and lovely"; "the muffled tones of the broken bell summoned them to meet"
+76628,timbrel,small hand drum similar to a tambourine; formerly carried by itinerant jugglers
+76629,time,a period of time considered as a resource under your control and sufficient to accomplish something; "take time to smell the roses"; "I didn't have time to finish"; "it took more than half my time"; "he waited for a long time"
+76630,time,a suitable moment; "it is time to go"
+76631,time,an indefinite period (usually marked by specific attributes or activities); "the time of year for planting"; "he was a great actor in his time"
+76632,time,a person's experience on a particular occasion; "he had a time holding back the tears"; "they had a good time together"
+76633,time,the continuum of experience in which events pass from the future through the present to the past; "he waited for along time"; "it took some time before he got an answer"; "time flies like an arrow"
+76634,time clip,an instance or single occasion for some event; "this time he succeeded"; "he called four times"; "he could do ten at a clip"
+76635,time-ball,a ball that slides down a staff to show a fixed time; especially at an observatory
+76636,time-delay_measuring_instrument time-delay_measuring_system,chronoscope for measuring the time difference between two events
+76637,time-fuse,a fuse made to burn for a given time (especially to explode a bomb)
+76638,time-out,a brief suspension of play; "each team has two time-outs left"
+76639,time-scale_factor,the ratio of the simulation time to the time of the real process
+76640,time-switch,a switch set to operate at a desired time
+76641,time_and_a_half,a rate of pay that is 1.5 times the regular rate; for overtime work
+76642,time_and_motion_study time-and-motion_study time-motion_study motion_study time_study work_study,an analysis of a specific job in an effort to find the most efficient method in terms of time and effort
+76643,time_being nonce,the present occasion; "for the nonce"
+76644,time_bomb infernal_machine,a bomb that has a detonating mechanism that can be set to go off at a particular time
+76645,time_bomb ticking_bomb,a problematic situation that will eventually become dangerous if not addressed; "India is a demographic time bomb"; "the refugee camp is a ticking bomb waiting to go off"
+76646,time_capsule,container for preserving historical records to be discovered at some future time
+76647,time_clock,clock used to record the hours that people work
+76648,time_constant,(electronics) the time required for the current or voltage in a circuit to rise or fall exponentially through approximately 63 per cent of its amplitude
+76649,time_constant,the ratio of the inductance of a circuit in henries to its resistance in ohms
+76650,time_deposit,a certificate of deposit from which withdrawals can be made only after advance notice or at a specified future date
+76651,time_deposit_account deposit_account,a savings account in which the deposit is held for a fixed term or in which withdrawals can be made only after giving notice or with loss of interest
+76652,time_draft time_bill,a draft payable at a specified future date
+76653,time_exposure,a photograph produced with a relatively long exposure time
+76654,time_exposure,exposure of a film for a relatively long time (more than half a second)
+76655,time_frame,a time period during which something occurs or is expected to occur; "an agreement can be reached in a reasonably short time frame"
+76656,time_immemorial time_out_of_mind,the distant past beyond memory
+76657,time_interval interval,a definite length of time marked off by two instants
+76658,time_limit,a time period within which something must be done or completed
+76659,time_loan,a loan that is payable on or before a specified date
+76660,time_machine,a science fiction machine that is supposed to transport people or objects into the past or the future
+76661,time_note,a note that specifies the time (or times) of repayment
+76662,time_of_life,a period of time during which a person is normally in a particular life state
+76663,time_off,a time period when you are not required to work; "he requested time off to attend his grandmother's funeral"
+76664,time_period period_of_time period,an amount of time; "a time period of 30 years"; "hastened the period of time of his recovery"; "Picasso's blue period"
+76665,time_scale,an arrangement of events used as a measure of duration; "on the geological time scale mankind has existed but for a brief moment"
+76666,time_series,a series of values of a variable at successive times
+76667,time_sharing,(computer science) the use of a central computer by many users simultaneously
+76668,time_sheet,a record of the hours worked by employees
+76669,time_signal,a signal (especially electronic or by radio) indicating the precisely correct time
+76670,time_signature musical_time_signature,a musical notation indicating the number of beats to a measure and kind of note that takes a beat
+76671,time_slot slot,a time assigned on a schedule or agenda; "the TV program has a new time slot"; "an aircraft landing slot"
+76672,time_unit unit_of_time,a unit for measuring time periods
+76673,time_zone,any of the 24 regions of the globe (loosely divided by longitude) throughout which the same standard time is used
+76674,timecard,a card recording an employee's starting and quitting times each work day
+76675,timecard,a card used with a time clock to record an employee's starting and quitting times each day
+76676,timekeeper,a clerk who keeps track of the hours worked by employees
+76677,timekeeper timer,(sports) an official who keeps track of the time elapsed
+76678,timekeeping,the act or process of determining the time
+76679,timeline,a sequence of related events arranged in chronological order and displayed along a line (usually drawn left to right or top to bottom)
+76680,timepiece timekeeper horologe,a measuring instrument or device for keeping time
+76681,timer,a regulator that activates or deactivates a mechanism at set times
+76682,timer,a timepiece that measures a time interval and signals its end
+76683,times,a more or less definite period of time now or previously present; "it was a sign of the times"
+76684,timeserver,one who conforms to current ways and opinions for personal advantage
+76685,timetable,a schedule listing events and the times at which they will take place
+76686,timetable,a schedule of times of arrivals and departures
+76687,timework,work paid for at a rate per unit of time
+76688,timid cautious,people who are fearful and cautious; "whitewater rafting is not for the timid"
+76689,timidity timidness timorousness,fear of the unknown or unfamiliar or fear of making decisions
+76690,timidity timorousness,fearfulness in venturing into new and unknown places or activities
+76691,timing,the time when something happens
+76692,timing,the regulation of occurrence, pace, or coordination to achieve a desired effect (as in music, theater, athletics, mechanics)
+76693,timolol Blocadren,a beta blocker (trade name Blocadren) administered after heart attacks
+76694,timothy,a grass grown for hay
+76695,timothy herd's_grass Phleum_pratense,grass with long cylindrical spikes grown in northern United States and Europe for hay
+76696,timucu,found in warm waters of western Atlantic
+76697,tin,a vessel (box, can, pan, etc.) made of tinplate and used mainly in baking
+76698,tin Sn atomic_number_50,a silvery malleable metallic element that resists corrosion; used in many alloys and to coat other metals to prevent corrosion; obtained chiefly from cassiterite where it occurs as tin oxide
+76699,tin_can,informal term for a destroyer
+76700,tin_ear,insensitivity to the appropriateness or subtlety of language; "he has a tin ear for dialogue"
+76701,tin_pest tin_disease tin_plague,the transformation of ordinary white tin into powdery grey tin at very cold temperatures
+76702,tin_plate tinplate,a thin sheet of metal (iron or steel) coated with tin to prevent rusting; used especially for cans, pots, and tins
+76703,tinamou partridge,heavy-bodied small-winged South American game bird resembling a gallinaceous bird but related to the ratite birds
+76704,tincture,a substance that colors or dyes
+76705,tincture,(pharmacology) a medicine consisting of an extract in an alcohol solution
+76706,tincture_of_iodine iodine,a tincture consisting of a solution of iodine in ethyl alcohol; applied topically to wounds as an antiseptic
+76707,tinderbox,a dangerous state of affairs; a situation that is a potential source of violence; "the Balkans are the tinderbox of Europe"
+76708,tinderbox,a box for holding tinder
+76709,tine,prong on a fork or pitchfork or antler
+76710,tine_test,a tuberculin test in which a disk with several tines bearing tuberculin antigen is used to puncture the skin; development of a hard red area indicates past or present exposure to tubercle bacilli and the need for further testing
+76711,tinea ringworm roundworm,infections of the skin or nails caused by fungi and appearing as itching circular patches
+76712,tinea_barbae barber's_itch,fungal infection of the face and neck
+76713,tinea_capitis,fungal infection of the scalp characterized by bald patches
+76714,tinea_corporis,fungal infection of nonhairy parts of the skin
+76715,tinea_cruris jock_itch eczema_marginatum,fungal infection of the groin (most common in men)
+76716,tinea_pedis athlete's_foot,fungal infection of the feet
+76717,tinea_unguium,fungal infection of the nails (especially toenails)
+76718,tineid tineid_moth,small yellowish moths whose larvae feed on wool or fur
+76719,tineoid tineoid_moth,small dull-colored moth with chewing mouthparts
+76720,tinfoil tin_foil,foil made of tin or an alloy of tin and lead
+76721,ting tinkle,a light clear metallic sound as of a small bell
+76722,tinker,formerly a person (traditionally a Gypsy) who traveled from place to place mending pots and kettles and other metal utensils as a way to earn a living
+76723,tinker tinkerer,a person who enjoys fixing and experimenting with machines and their parts
+76724,tinkerer fiddler,an unskilled person who tries to fix or mend
+76725,tinning,the application of a thin layer of soft solder to the ends of wires before soldering them; "careful tinning of the ends of wires results in a better joint when you solder them"
+76726,tinning tin-plating,the application of a protective layer of tin
+76727,tinnitus,a ringing or booming sensation in one or both ears; a symptom of an ear infection or Meniere's disease
+76728,tinsel,a showy decoration that is basically valueless; "all the tinsel of self-promotion"
+76729,tinsel,a thread with glittering metal foil attached
+76730,tinsmith tinner,someone who makes or repairs tinware
+76731,tintack,tack or small nail of tinned iron
+76732,tinter,a hairdresser who tints hair
+76733,tinting,the act of adding a tinge of color; "the hairdresser gave her hair a modest tinting"
+76734,tinware,articles of commerce made of tin plate
+76735,tip,the extreme end of something; especially something pointed
+76736,tip lead steer confidential_information wind hint,an indication of potential opportunity; "he got a tip on the stock market"; "a good lead for a job"
+76737,tip-off,inside information that something is going to happen
+76738,tip-off tap-off,the act of starting a basketball game with a jump ball
+76739,tip_in,a basketball shot made by tapping the rebounding ball back into the basket
+76740,tip_sheet,a publication containing the latest information or tips or predictions for a particular business or stock market information or horse racing results, etc.
+76741,tipper,a person who leaves a tip; "a generous tipper"
+76742,tippet,a woman's fur shoulder cape with hanging ends; often consisting of the whole fur of a fox or marten
+76743,tippler social_drinker,someone who drinks liquor repeatedly in small quantities
+76744,tipstaff,staff with a metal tip carried as a sign of office by e.g. a bailiff or constable
+76745,tipster tout,one who sells advice about gambling or speculation (especially at the racetrack)
+76746,tipsy_cake,a trifle soaked in wine and decorated with almonds and candied fruit
+76747,tiptoe,the tip of a toe
+76748,tiptop,the extreme top or summit
+76749,tipu tipu_tree yellow_jacaranda pride_of_Bolivia,semi-evergreen South American tree with odd-pinnate leaves and golden yellow flowers cultivated as an ornamental
+76750,tirade philippic broadside,a speech of violent denunciation
+76751,tiramisu,an Italian dessert consisting of layers of sponge cake soaked with coffee and brandy or liqueur layered with mascarpone cheese and topped with grated chocolate
+76752,tire tyre,hoop that covers a wheel; "automobile tires are usually made of rubber and filled with compressed air"
+76753,tire_chain snow_chain,chain attached to wheels to increase traction on ice or snow
+76754,tire_iron tire_tool,hand tool consisting of a lever that is used to force the casing of a pneumatic tire onto a steel wheel
+76755,tisane,infusion of e.g. dried or fresh flowers or leaves
+76756,tissue,part of an organism consisting of an aggregate of cells having a similar structure and function
+76757,tissue tissue_paper,a soft thin (usually translucent) paper
+76758,tissue_plasminogen_activator Activase,a thrombolytic agent (trade name Activase) that causes fibrinolysis at the site of a blood clot; used in treating acute myocardial infarction
+76759,tissue_typing,a series of diagnostic tests before an organ transplant to determine whether the tissues of a donor and recipient are compatible
+76760,tit_for_tat,an equivalent given in return
+76761,titanic_acid,a white weak acid that is a hydrated form of titanium dioxide
+76762,titanium Ti atomic_number_22,a light strong grey lustrous corrosion-resistant metallic element used in strong lightweight alloys (as for airplane parts); the main sources are rutile and ilmenite
+76763,titanium_dioxide titanium_oxide titanic_oxide titania,a white powder used as a pigment for its high covering power and durability
+76764,titanosaur titanosaurian,amphibious quadrupedal herbivorous dinosaur with a long thin neck and whiplike tail; of the Cretaceous mostly in the southern hemisphere
+76765,titer titre,the concentration of a solution as determined by titration
+76766,titfer,a hat (Cockney rhyming slang: `tit for tat' rhymes with `hat')
+76767,tithe,a levy of one tenth of something
+76768,tithe,an offering of a tenth part of some personal income
+76769,tithe_barn,barn originally built to hold tithes paid in kind and common in England
+76770,tither,someone who pays tithes
+76771,titi buckwheat_tree Cliftonia_monophylla,tree of low-lying coastal areas of southeastern United States having glossy leaves and racemes of fragrant white flowers
+76772,titi titi_monkey,small South American monkeys with long beautiful fur and long nonprehensile tail
+76773,titillation,a tingling feeling of excitement (as from teasing or tickling)
+76774,titillation,an agreeable arousal
+76775,titivation tittivation,sprucing up; making decorative additions to
+76776,title,a general or descriptive heading for a section of a written work; "the novel had chapter titles"
+76777,title,(usually plural) written material introduced into a movie or TV show to give credits or represent dialogue or explain an action; "the titles go by faster than I can read"
+76778,title,the name of a work of art or literary composition etc.; "he looked for books with the word `jazz' in the title"; "he refused to give titles to his paintings"; "I can never remember movie titles"
+76779,title,an appellation signifying nobility; "`your majesty' is the appropriate title to use in addressing a king"
+76780,title claim,an established or recognized right; "a strong legal claim to the property"; "he had no documents confirming his title to his father's estate"; "he staked his claim"
+76781,title statute_title rubric,a heading that names a statute or legislative bill; may give a brief summary of the matters it deals with; "Title 8 provided federal help for schools"
+76782,title title_of_respect form_of_address,an identifying appellation signifying status or function: e.g. `Mr.' or `General'; "the professor didn't like his friends to use his formal title"
+76783,title_bar,(computer science) a horizontal label at the top of a window, bearing the name of the currently active document
+76784,title_deed,a legal document proving a person's right to property
+76785,title_page,a page of a book displaying the title and author and publisher
+76786,title_role name_part,the role of the character after whom the play is named
+76787,titmouse tit,small insectivorous birds
+76788,titration,a measured amount of a solution of unknown concentration is added to a known volume of a second solution until the reaction between them is just complete; the concentration of the unknown solution (the titer) can then be calculated
+76789,titrator,an apparatus for performing a titration
+76790,titter,a nervous restrained laugh
+76791,titterer giggler,a person who laughs nervously
+76792,tiyin,100 tiyin equal 1 som in Uzbekistan
+76793,tiyin,100 tiyin equal 1 tenge in Kazakhstan
+76794,to_leeward leeward_side,the side sheltered from the wind
+76795,toad-in-the-hole,sausage baked in batter
+76796,toad_lily Montia_chamissoi,a floating or creeping Indian lettuce having terminal racemes of pale rose flowers; wet areas at high elevations of western North America
+76797,toad_rush Juncus_bufonius,low-growing annual rush of damp low-lying ground; nearly cosmopolitan
+76798,toadfish Opsanus_tau,bottom-dwelling fish having scaleless slimy skin and a broad thick head with a wide mouth
+76799,toadflax butter-and-eggs wild_snapdragon devil's_flax Linaria_vulgaris,common European perennial having showy yellow and orange flowers; a naturalized weed in North America
+76800,toadstool,common name for an inedible or poisonous agaric (contrasting with the edible mushroom)
+76801,toast,a celebrity who receives much acclaim and attention; "he was the toast of the town"
+76802,toast,slices of bread that have been toasted
+76803,toast_mistress,a woman toastmaster
+76804,toaster,a kitchen appliance (usually electric) for toasting bread
+76805,toaster wassailer,someone who proposes a toast; someone who drinks to the health of success of someone or some venture
+76806,toaster_oven,kitchen appliance consisting of a small electric oven for toasting or warming food
+76807,toasting browning,cooking to a brown crispiness over a fire or on a grill; "proper toasting should brown both sides of a piece of bread"
+76808,toasting_fork,long-handled fork for cooking or toasting frankfurters or bread etc. (especially over an open fire)
+76809,toastmaster symposiarch,the person who proposes toasts and introduces speakers at a banquet
+76810,toastrack,a rack for holding slices of toast
+76811,tobacco baccy,leaves of the tobacco plant dried and prepared for smoking or ingestion
+76812,tobacco tobacco_plant,aromatic annual or perennial herbs and shrubs
+76813,tobacco_hornworm tomato_worm Manduca_sexta,large green white-striped hawkmoth larva that feeds on tobacco and related plants; similar to tomato hornworm
+76814,tobacco_industry,an industry that manufactures and sells products containing tobacco
+76815,tobacco_juice,saliva colored brown by tobacco (snuff or chewing tobacco)
+76816,tobacco_mildew Peronospora_hyoscyami,fungus causing a downy mildew on growing tobacco
+76817,tobacco_mosaic,a plant disease causing discoloration of the leaves of tobacco plants
+76818,tobacco_mosaic_virus TMV,the widely studied plant virus that causes tobacco mosaic; it was the first virus discovered (1892)
+76819,tobacco_moth cacao_moth Ephestia_elutella,small moth whose larvae feed on tobacco and other dried plant products
+76820,tobacco_pouch,a pouch for carrying pipe tobacco
+76821,tobacco_shop tobacconist_shop tobacconist,a shop that sells pipes and pipe tobacco and cigars and cigarettes
+76822,tobacco_thrips Frankliniella_fusca,injurious to growing tobacco and peanuts
+76823,tobacconist,a retail dealer in tobacco and tobacco-related articles
+76824,toboggan,a long narrow sled without runners; boards curve upward in front
+76825,tobogganing,riding on a long light sled with low handrails
+76826,tobogganist,someone who rides a toboggan
+76827,tobramycin Nebcin,an antibiotic (trade name Nebcin) that is especially effective against Gram-negative bacteria
+76828,toby toby_jug toby_fillpot_jug,a drinking mug in the shape of a stout man wearing a three-cornered hat
+76829,tocainide Tonocard,antiarrhythmic drug (trade name Tonocard) used to treat ventricular arrhythmias when less dangerous drugs have failed
+76830,toccata,a baroque musical composition (usually for a keyboard instrument) with full chords and rapid elaborate runs in a rhythmically free style
+76831,tocsin alarm_bell,the sound of an alarm (usually a bell)
+76832,tocsin warning_bell,a bell used to sound an alarm
+76833,tod,a unit of weight for wool equal to about 28 pounds
+76834,today,the present time or age; "the world of today"; "today we have computers"
+76835,today,the day that includes the present moment (as opposed to yesterday or tomorrow); "Today is beautiful"; "did you see today's newspaper?"
+76836,toddler yearling tot bambino,a young child
+76837,tody,tiny insectivorous West Indian bird having red-and-green plumage and a long straight bill
+76838,toe,forepart of a hoof
+76839,toe,one of the digits of the foot
+76840,toe,(golf) the part of a clubhead farthest from the shaft
+76841,toe,the part of footwear that provides a covering for the toes
+76842,toe-in,the alignment of the front wheels of a motor vehicle closer together at the front than at the back
+76843,toe_box,the forward tip of the upper of a shoe or boot that provides space and protection for the toes; "the toe box may be rounded or pointed"
+76844,toe_crack,a crack on the forepart of a horse's hindfoot
+76845,toe_dancing toe_dance,a dance performed on tiptoe
+76846,toea,100 toea equal 1 kina in Papua New Guinea
+76847,toecap,a protective leather or steel cover for the toe of a boot or shoe, reinforcing or decorating it
+76848,toehold,a relatively insignificant position from which future progress might be made; "American diplomacy provided a toehold on which to proceed toward peace talks"; "his father gave him a toehold in the oil business"
+76849,toehold,a small foothold used in climbing
+76850,toehold,a wrestling hold in which the toe is held and the leg is twisted against the joints
+76851,toenail,the nail at the end of a toe
+76852,toetoe toitoi Arundo_conspicua Chionochloa_conspicua,used by Maoris for thatching
+76853,toff nob,informal term for an upper-class or wealthy person
+76854,toga,a one-piece cloak worn by men in ancient Rome
+76855,toga_virilis,(ancient Rome) a toga worn by a youth as a symbol of manhood and citizenship
+76856,togetherness,affectionate closeness; "togetherness is the new wonder ingredient in marriage"
+76857,toggle,any instruction that works first one way and then the other; it turns something on the first time it is used and then turns it off the next time
+76858,toggle,a fastener consisting of a peg or pin or crosspiece that is inserted into an eye at the end of a rope or a chain or a cable in order to fasten it to something (as another rope or chain or cable)
+76859,toggle_bolt,a fastener consisting of a threaded bolt and a hinged spring-loaded toggle; used to fasten objects to hollow walls
+76860,toggle_joint,a joint made by two arms attached by a pivot; used to apply pressure at the two ends by straightening the joint
+76861,toggle_switch toggle on-off_switch on/off_switch,a hinged switch that can assume either of two positions
+76862,togs threads duds,informal terms for clothing
+76863,toiler,one who works strenuously
+76864,toilet can commode crapper pot potty stool throne,a plumbing fixture for defecation and urination
+76865,toilet lavatory lav can john privy bathroom,a room or building equipped with one or more toilets
+76866,toilet toilette,the act of dressing and preparing yourself; "he made his morning toilet and went to breakfast"
+76867,toilet_bag sponge_bag,a waterproof bag for holding bathrooms items (soap and toothpaste etc.) when you are travelling
+76868,toilet_bowl,the bowl of a toilet that can be flushed with water
+76869,toilet_kit travel_kit,a kit for carrying toilet articles while traveling
+76870,toilet_powder bath_powder dusting_powder,a fine powder for spreading on the body (as after bathing)
+76871,toilet_roll,a roll of toilet paper
+76872,toilet_seat,the hinged seat on a toilet
+76873,toilet_soap face_soap bath_soap,soap used as a toiletry
+76874,toilet_tissue toilet_paper bathroom_tissue,a soft thin absorbent paper for use in toilets
+76875,toilet_training,training a young child to use the toilet
+76876,toilet_water eau_de_toilette,a perfumed liquid lighter than cologne
+76877,toiletry toilet_articles,artifacts used in making your toilet (washing and taking care of your body)
+76878,tokamak,a doughnut-shaped chamber used in fusion research; a plasma is heated and confined in a magnetic bottle
+76879,toke,a puff of a marijuana or hashish cigarette; "the boys took a few tokes on a joint"
+76880,token,something serving as a sign of something else
+76881,token,a metal or plastic disk that can be redeemed or used in designated slot machines
+76882,token item,an individual instance of a type of symbol; "the word `error' contains three tokens of `r'"
+76883,token_economy,a form of behavior therapy that has been used in some mental institutions; patients are rewarded with tokens for appropriate behavior and the tokens may be cashed in for valued rewards
+76884,token_money,coins of regular issue whose face value is greater than their intrinsic value
+76885,token_payment,a small payment made in acknowledgement of an obligation
+76886,tolazamide Tolinase,a drug (trade name Tolinase) used in treating stable adult-onset diabetes mellitus
+76887,tolazoline,vasodilator that is used to treat spasms of peripheral blood vessels (as in acrocyanosis)
+76888,tolbutamide Orinase,sulfonylurea; an oral antidiabetic drug (trade name Orinase) used in the treatment of adult-onset diabetes mellitus
+76889,tole,enameled or lacquered metalware (usually gilded and elaborately painted); popular in the 18th century; "the Pennsylvania Dutch tole watering can might be a reproduction but it looks convincing"
+76890,tolerance,willingness to recognize and respect the beliefs or practices of others
+76891,tolerance,the power or capacity of an organism to tolerate unfavorable environmental conditions
+76892,tolerance,the act of tolerating something
+76893,toleration,official recognition of the right of individuals to hold dissenting opinions (especially in religion)
+76894,toleration acceptance sufferance,a disposition to tolerate or accept people or situations; "all people should practice toleration and live together in peace"
+76895,toll,a fee levied for the use of roads or bridges (used for maintenance)
+76896,toll_bridge,a bridge where toll is charged for crossing
+76897,toll_call,a long-distance telephone call at charges above a local rate
+76898,toll_line,a telephone line for long-distance calls
+76899,toll_plaza,an area where tollbooths are located
+76900,tollbooth tolbooth tollhouse,a booth at a tollgate where the toll collector collects tolls
+76901,toller bell_ringer ringer,a person who rings church bells (as for summoning the congregation)
+76902,tollgate tollbar,a gate or bar across a toll bridge or toll road which is lifted when the toll is paid
+76903,tollkeeper tollman tollgatherer toll_collector toll_taker toll_agent toller,someone employed to collect tolls
+76904,tolmetin_sodium Tolectin,a nonsteroidal anti-inflammatory drug (trade name Tolectin)
+76905,tolu balsam_of_tolu tolu_balsam,aromatic yellowish brown balsam from the tolu balsam tree used especially in cough syrups
+76906,tolu_tree tolu_balsam_tree Myroxylon_balsamum Myroxylon_toluiferum,medium-sized tropical American tree yielding tolu balsam and a fragrant hard wood used for high-grade furniture and cabinetwork
+76907,toluene methylbenzene,a colorless flammable liquid obtained from petroleum or coal tar; used as a solvent for gums and lacquers and in high-octane fuels
+76908,toluic_acid,an isomeric acid derived from toluene
+76909,tom tomcat,male cat
+76910,tomahawk hatchet,weapon consisting of a fighting ax; used by North American Indians
+76911,tomalley,edible greenish substance in boiled lobster
+76912,tomatillo husk_tomato Mexican_husk_tomato,small edible yellow to purple tomato-like fruit enclosed in a bladderlike husk
+76913,tomatillo jamberry Mexican_husk_tomato Physalis_ixocarpa,annual of Mexico and southern United States having edible purplish viscid fruit resembling small tomatoes
+76914,tomatillo miltomate purple_ground_cherry jamberry Physalis_philadelphica,Mexican annual naturalized in eastern North America having yellow to purple edible fruit resembling small tomatoes
+76915,tomato,mildly acid red or yellow pulpy fruit eaten as a vegetable
+76916,tomato love_apple tomato_plant Lycopersicon_esculentum,native to South America; widely cultivated in many varieties
+76917,tomato_blight tomato_yellows,a disease of tomato plants
+76918,tomato_concentrate,a concentrated form of tomatoes
+76919,tomato_hornworm potato_worm Manduca_quinquemaculata,large green white-striped hawkmoth larva that feeds on tomato and potato plants; similar to tobacco hornworm
+76920,tomato_juice,the juice of tomatoes (usually bottled or canned)
+76921,tomato_paste,thick concentrated tomato puree
+76922,tomato_sauce,sauce made with a puree of tomatoes (or strained tomatoes) with savory vegetables and other seasonings; can be used on pasta
+76923,tomato_streak,disease of a wide range of plants (tomatoes, potatoes, peas) resulting from a mixed infection of potato and tomato mosaic
+76924,tombac tombak tambac,an alloy of copper and zinc (and sometimes arsenic) used to imitate gold in cheap jewelry and for gilding
+76925,tombola,a lottery in which tickets are drawn from a revolving drum
+76926,tomboy romp hoyden,a girl who behaves in a boyish manner
+76927,tome,a (usually) large and scholarly book
+76928,tomentum tomentum_cerebri,a network of tiny blood vessels between the cerebral surface of the pia mater and the cerebral cortex
+76929,tomograph,X-ray machine in which a computer builds a detailed image of a particular plane through an object from multiple X-ray measurements
+76930,tomorrow,the near future; "tomorrow's world"; "everyone hopes for a better tomorrow"
+76931,tomorrow,the day after today; "what are our tasks for tomorrow?"
+76932,tomtate Haemulon_aurolineatum,found off the West Indies and Florida
+76933,tone,the quality of something (an act or a piece of writing) that reveals the attitudes and presuppositions of the author; "the general tone of articles appearing in the newspapers is that the government should withdraw"; "from the tone of her behavior I gathered that I had outstayed my welcome"
+76934,tone,(linguistics) a pitch or change in pitch of the voice that serves to distinguish words in tonal languages; "the Beijing dialect uses four tones"
+76935,tone pure_tone,a steady sound without overtones; "they tested his hearing with pure tones of different frequencies"
+76936,tone tone_of_voice,the quality of a person's voice; "he began in a conversational tone"; "he spoke in a nervous tone of voice"
+76937,tone whole_tone step whole_step,a musical interval of two semitones
+76938,tone_arm pickup pickup_arm,mechanical device consisting of a light balanced arm that carries the cartridge
+76939,tone_deafness tin_ear,an inability to distinguish differences in pitch
+76940,tone_language tonal_language,a language in which different tones distinguish different meanings
+76941,tone_system tonal_system,the system of tones used in a particular language or dialect of a tone language
+76942,toner,a solution containing chemicals that can change the color of a photographic print
+76943,toner,a black or colored powder used in a printer to develop a xerographic image
+76944,toner,a lotion for cleansing the skin and contracting the pores
+76945,tongs pair_of_tongs,any of various devices for taking hold of objects; usually have two hinged legs with handles above and pointed hooks below
+76946,tongue,the tongue of certain animals used as meat
+76947,tongue,a manner of speaking; "he spoke with a thick tongue"; "she has a glib tongue"
+76948,tongue,the flap of material under the laces of a shoe or boot
+76949,tongue knife,any long thin projection that is transient; "tongues of flame licked at the walls"; "rifles exploded quick knives of fire into the dark"
+76950,tongue lingua glossa clapper,a mobile mass of muscular tissue covered with mucous membrane and located in the oral cavity
+76951,tongue_and_groove_joint,a mortise joint made by fitting a projection on the edge of one board into a matching groove on another board
+76952,tongue_depressor,a thin depressor used to press the tongue down during an examination of the mouth and throat
+76953,tongue_tie ankyloglossia,a congenital anomaly in which the mucous membrane under the tongue is too short limiting the mobility of the tongue
+76954,tongue_twister,an expression that is difficult to articulate clearly; "`rubber baby buggy bumper' is a tongue twister"
+76955,tongue_worm pentastomid,wormlike arthropod having two pairs of hooks at the sides of the mouth; parasitic in nasal sinuses of mammals
+76956,tonguefish tongue-fish,left-eyed marine flatfish whose tail tapers to a point; of little commercial value
+76957,tongueflower tongue-flower,orchid having blue to purple flowers with tongue-shaped or strap-shaped protuberances (calli) at the lip base
+76958,tongueless_frog,almost completely aquatic frog native to Africa and Panama and northern South America
+76959,tonic keynote,(music) the first note of a diatonic scale
+76960,tonic restorative,a medicine that strengthens and invigorates
+76961,tonic tonic_water quinine_water,lime- or lemon-flavored carbonated water containing quinine
+76962,tonic_accent pitch_accent,emphasis that results from pitch rather than loudness
+76963,tonic_epilepsy,epilepsy in which the body is rigid during the seizure
+76964,tonic_key home_key,the basic key in which a piece of music is written
+76965,tonic_solfa solfa,a system of solmization using the solfa syllables: do, re, mi, fa, sol, la, ti
+76966,tonicity tonus tone,the elastic tension of living muscles, arteries, etc. that facilitate response to stimuli; "the doctor tested my tonicity"
+76967,tonight,the present or immediately coming night
+76968,tonka_bean coumara_nut,fragrant black nutlike seeds of the tonka bean tree; used in perfumes and medicines and as a substitute for vanilla
+76969,tonka_bean tonka_bean_tree Coumarouna_odorata Dipteryx_odorata,tall tropical South American tree having pulpy egg-shaped pods of fragrant black almond-shaped seeds used for flavoring
+76970,tonnage tunnage tonnage_duty,a tax imposed on ships that enter the US; based on the tonnage of the ship
+76971,tonometer,measuring instrument for measuring tension or pressure (especially for measuring intraocular pressure in testing for glaucoma)
+76972,tonometry,the measurement of intraocular pressure by determining the amount of force needed to make a slight indentation in the cornea
+76973,tons dozens heaps lots piles scores stacks loads rafts slews wads oodles gobs scads lashings,a large number or amount; "made lots of new friends"; "she amassed stacks of newspapers"
+76974,tonsil palatine_tonsil faucial_tonsil tonsilla,either of two masses of lymphatic tissue one on each side of the oral pharynx
+76975,tonsillectomy,surgical removal of the palatine tonsils; commonly performed along with adenoidectomy
+76976,tonsillitis,inflammation of the tonsils (especially the palatine tonsils)
+76977,tonsure,the shaved crown of a monk's or priest's head
+76978,tonsure,shaving the crown of the head by priests or members of a monastic order
+76979,tontine,an annuity scheme wherein participants share certain benefits and on the death of any participant his benefits are redistributed among the remaining participants; can run for a fixed period of time or until the death of all but one participant
+76980,tontine tontine_insurance,a form of life insurance whereby on the death or default of a participant his share is distributed to the remaining members
+76981,tool,an implement used in the practice of a vocation
+76982,tool-and-die_work,the craft of making special tools and dies
+76983,tool_bag,a bag in which tools are carried
+76984,tool_steel,alloy steel that is suitable for making tools; is hard and tough and can retain a cutting edge
+76985,toolbox tool_chest tool_cabinet tool_case,a box or chest or cabinet for holding hand tools
+76986,toolmaker,someone skilled in making or repairing tools
+76987,toolshed toolhouse,a shed for storing tools
+76988,toot,a blast of a horn
+76989,tooth,hard bonelike structures in the jaws of vertebrates; used for biting and chewing or for attack and defense
+76990,tooth,one of a number of uniform projections on a gear
+76991,tooth,something resembling the tooth of an animal
+76992,tooth,toothlike structure in invertebrates found in the mouth or alimentary canal or on a shell
+76993,tooth,a means of enforcement; "the treaty had no teeth in it"
+76994,tooth_fairy,a fairy that is said to leave money at night under a child's pillow to compensate for a baby tooth falling out
+76995,tooth_fungus,a fungus of the family Hydnaceae
+76996,tooth_powder toothpowder,a dentifrice in the form of a powder
+76997,tooth_shell tusk_shell,any of various seashore mollusks having a tapering tubular shell open at each end and a foot pointed like a spade for burrowing
+76998,tooth_socket alveolus,a bony socket in the alveolar ridge that holds a tooth
+76999,toothache odontalgia,an ache localized in or around a tooth
+77000,toothache_tree sea_ash Zanthoxylum_americanum Zanthoxylum_fraxineum,small deciduous aromatic shrub (or tree) having spiny branches and yellowish flowers; eastern North America
+77001,toothbrush,small brush; has long handle; used to clean teeth
+77002,toothbrush_tree mustard_tree Salvadora_persica,glabrous or pubescent evergreen shrub or tree of the genus Salvadora; twigs are fibrous and in some parts of the world are bound together in clusters and used as a toothbrush; shoots are used as camel fodder; plant ash provides salt
+77003,toothed_spurge Euphorbia_dentata,an annual weed of northeastern North America with dentate leaves
+77004,toothed_whale,any of several whales having simple conical teeth and feeding on fish etc.
+77005,toothpaste,a dentifrice in the form of a paste
+77006,toothpick,pick consisting of a small strip of wood or plastic; used to pick food from between the teeth
+77007,tootle,the sound of casual playing on a musical instrument; "he enjoyed hearing the tootles of their horns as the musicians warmed up"
+77008,top,the upper part of anything; "the mower cuts off the tops of the grass"; "the title should be written at the top of the first page"
+77009,top,the greatest possible intensity; "he screamed at the top of his lungs"
+77010,top,platform surrounding the head of a lower mast
+77011,top,a garment (especially for women) that extends from the shoulders to the waist or hips; "he stared as she buttoned her top"
+77012,top cover,covering for a hole (especially a hole in the top of a container); "he removed the top of the carton"; "he couldn't get the top off of the bottle"; "put the cover back on the kettle"
+77013,top top_of_the_inning,the first half of an inning; while the visiting team is at bat; "a relief pitcher took over in the top of the fifth"
+77014,top top_side upper_side upside,the highest or uppermost side of anything; "put your books on top of the desk"; "only the top side of the box was painted"
+77015,top whirligig teetotum spinning_top,a conical child's plaything tapering to a steel point on which it can be made to spin; "he got a bright red top and string for his birthday"
+77016,top-up,an amount needed to restore something to its former level
+77017,top_banana,the leading comedian in a burlesque show
+77018,top_billing,the advertisement of a star's name at the top of a theatrical poster
+77019,top_brass,the most important persons in a governing body
+77020,top_dressing,a layer of fertilizer or manure not plowed in
+77021,top_fermentation,a violent kind of alcoholic fermentation at a temperature high enough to carry the yeast cells to the top of the fermenting liquid; used in the production of ale; "top fermentation uses a yeast that ferments at higher temperatures than that used for bottom fermentation"
+77022,top_fermenting_yeast,brewer's yeast used in top fermentation of ale
+77023,top_lift,the bottom layer of a heel
+77024,top_of_the_line,the best (most expensive) in a given line of merchandise
+77025,top_quark truth_quark,a hypothetical quark with a charge of +2/3 and a mass more than 100,000 times that of an electron
+77026,top_round,roast cut from the round; usually suitable for roasting
+77027,topaz,a mineral (fluosilicate of aluminum) that occurs in crystals of various colors and is used as a gemstone
+77028,topaz false_topaz common_topaz,a yellow quartz
+77029,topgallant topgallant_mast,a mast fixed to the head of a topmast on a square-rigged vessel
+77030,topgallant topgallant_sail,a sail set on a yard of a topgallant mast
+77031,tophus chalkstone,a deposit of urates around a joint or in the external ear; diagnostic of advanced or chronic gout
+77032,topiary,a garden having shrubs clipped or trimmed into decorative shapes especially of animals
+77033,topiary,making decorative shapes by trimming shrubs or trees
+77034,topic subject issue matter,some situation or event that is thought about; "he kept drifting off the topic"; "he had been thinking about the subject for several years"; "it is a matter for the police"
+77035,topic_sentence,a sentence that states the topic of its paragraph
+77036,topical_anesthesia topical_anaesthesia,loss of sensation confined to the skin or mucous surfaces (as when benzocaine or Lidocaine is applied to the surface)
+77037,topical_prostaglandin_eyedrop,a treatment for glaucoma; the eyedrops increase the outflow of aqueous humor through the uveoscleral pathway
+77038,topicality,the attribute of being of interest at the present time; "the library had to discard books that had lost their topicality"
+77039,topicalization,(linguistics) emphasis placed on the topic or focus of a sentence by preposing it to the beginning of the sentence; placing the topic at the beginning of the sentence is typical for English; "`Those girls, they giggle when they see me' and `Cigarettes, you couldn't pay me to smoke them' are examples of topicalization"
+77040,topknot,headdress consisting of a decorative ribbon or bow worn in the hair
+77041,topknot,showy crest or knot of hair or feathers
+77042,topmast,the mast next above a lower mast and topmost in a fore-and-aft rig
+77043,topminnow poeciliid_fish poeciliid live-bearer,small usually brightly-colored viviparous surface-feeding fishes of fresh or brackish warm waters; often used in mosquito control
+77044,topognosia topognosis,recognition of the location of a stimulus on the skin
+77045,topographic_point place spot,a point located with respect to surface features of some region; "this is a nice place for a picnic"; "a bright spot on a planet"
+77046,topography,precise detailed study of the surface features of a region
+77047,topography,the configuration of a surface and the relations among its man-made and natural features
+77048,topolatry place-worship,the worship of places
+77049,topology,topographic study of a given place (especially the history of the place as indicated by its topography); "Greenland's topology has been shaped by the glaciers of the ice age"
+77050,topology analysis_situs,the branch of pure mathematics that deals only with the properties of a figure X that hold for every figure into which X can be transformed with a one-to-one correspondence that is continuous in both directions
+77051,topology network_topology,the configuration of a communication network
+77052,toponymy toponomy,the nomenclature of regional anatomy
+77053,toponymy toponomy,the branch of lexicology that studies the place names of a region or a language
+77054,topos,a traditional theme or motif or literary convention; "James Joyce uses the topos of the Wandering Jew in his Ulysses"
+77055,topper,a worker who makes or adds the top to something
+77056,topper,a worker who cuts tops off (of trees or vegetables etc.)
+77057,topper,an exceedingly good witticism that surpasses all that have gone before
+77058,topper,a woman's short coat
+77059,topping,a flavorful addition on top of a dish
+77060,topsail,a sail (or either of a pair of sails) immediately above the lowermost sail of a mast and supported by a topmast
+77061,topside,(usually plural) weather deck; the part of a ship's hull that is above the waterline
+77062,topsoil surface_soil,the layer of soil on the surface
+77063,topspin,forward spin (usually of a moving ball) that is imparted by an upward stroke
+77064,toque,a tall white hat with a pouched crown; worn by chefs
+77065,tor,a prominent rock or pile of rocks on a hill
+77066,tor,a high rocky hill
+77067,torch,a light usually carried in the hand; consists of some flammable substance
+77068,torch_race,(ancient Greece) in which a torch is passed from one runner to the next
+77069,torch_singer,a singer (usually a woman) who specializes in singing torch songs
+77070,torch_song,a popular song concerned with disappointment in love
+77071,torchbearer,a leader in a campaign or movement
+77072,torchlight,light from a torch or torches
+77073,torero,a matador or one of the supporting team during a bull fight
+77074,tormenter tormentor teaser,a flat at each side of the stage to prevent the audience from seeing into the wings
+77075,tormentor tormenter persecutor,someone who torments
+77076,tornado twister,a localized and violently destructive windstorm occurring over land characterized by a funnel-shaped cloud extending toward the ground
+77077,toroid,the doughnut-shaped object enclosed by a torus
+77078,torpedo,an explosive device that is set off in an oil well (or a gas well) to start or to increase the flow of oil (or gas)
+77079,torpedo,a small firework that consists of a percussion cap and some gravel wrapped in paper; explodes when thrown forcefully against a hard surface
+77080,torpedo,a small explosive device that is placed on a railroad track and fires when a train runs over it; the sound of the explosion warns the engineer of danger ahead
+77081,torpedo,armament consisting of a long cylindrical self-propelled underwater projectile that detonates on contact with a target
+77082,torpedo-boat_destroyer,small destroyer that was the forerunner of modern destroyers; designed to destroy torpedo boats
+77083,torpedo_boat,small high-speed warship designed for torpedo attacks in coastal waters
+77084,torpedo_tube,a tube near the waterline of a vessel through which a torpedo is fired
+77085,torpor torpidity,a state of motor and mental inactivity with a partial suspension of sensibility; "he fell into a deep torpor"
+77086,torque_converter,converter for transmitting and amplifying torque (especially by hydraulic means)
+77087,torque_wrench,a wrench that has a gauge that indicates the amount of torque being applied
+77088,torr millimeter_of_mercury mm_Hg,a unit of pressure equal to 0.001316 atmosphere; named after Torricelli
+77089,torrent violent_stream,a violently fast stream of water (or other liquid); "the houses were swept away in the torrent"
+77090,torridity,extreme heat
+77091,torsion torque,a twisting force
+77092,torsion_balance,measuring instrument designed to measure small forces by the torsion they exert on a thin wire
+77093,torso trunk body,the body excluding the head and neck and limbs; "they moved their arms and legs and bodies"
+77094,tort civil_wrong,(law) any wrongdoing for which an action for damages may be brought
+77095,tort-feasor tortfeasor,a party who has committed a tort
+77096,torte,rich cake usually covered with cream and fruit or nuts; originated in Austria
+77097,tortellini,small ring-shaped stuffed pasta
+77098,torticollis wryneck,an unnatural condition in which the head leans to one side because the neck muscles on that side are contracted
+77099,tortilla,thin unleavened pancake made from cornmeal or wheat flour
+77100,tortilla_chip,a small piece of tortilla
+77101,tortoise,usually herbivorous land turtles having clawed elephant-like limbs; worldwide in arid area except Australia and Antarctica
+77102,tortoiseshell,the mottled horny substance of the shell of some turtles
+77103,tortoiseshell tortoiseshell-cat calico_cat,a cat having black and cream-colored and yellowish markings
+77104,tortoiseshell tortoiseshell_butterfly,brilliantly colored; larvae feed on nettles
+77105,tortricid tortricid_moth,any of numerous small moths having lightly fringed wings; larvae are leaf rollers or live in fruits and galls
+77106,tortuosity tortuousness torsion contortion crookedness,a tortuous and twisted shape or position; "they built a tree house in the tortuosities of its boughs"; "the acrobat performed incredible contortions"
+77107,torture torment,unbearable physical pain
+77108,torture torturing,the deliberate, systematic, or wanton infliction of physical or mental suffering by one or more persons in an attempt to force another person to yield information or to make a confession or for any other reason; "it required unnatural torturing to extract a confession"
+77109,torture_chamber,a room in which torture is inflicted
+77110,torturer,someone who inflicts severe physical pain (usually for punishment or coercion)
+77111,torus tore,commonly the lowest molding at the base of a column
+77112,torus toroid,a ring-shaped surface generated by rotating a circle around an axis that does not intersect the circle
+77113,toss,an abrupt movement; "a toss of his head"
+77114,tossed_salad,salad tossed with a dressing
+77115,tosser,someone who throws lightly (as with the palm upward)
+77116,tosser jerk-off wanker,terms of abuse for a masturbator
+77117,tossup toss-up even_chance,an unpredictable phenomenon; "it's a toss-up whether he will win or lose"
+77118,tostada,a flat tortilla with various fillings piled on it
+77119,tostada,a crisp flat tortilla
+77120,tot,a small amount (especially of a drink); "a tot of rum"
+77121,total_darkness lightlessness blackness pitch_blackness black,total absence of light; "they fumbled around in total darkness"; "in the black of night"
+77122,total_depravity,the Calvinist doctrine that everyone is born in a state of corruption as a result of original sin
+77123,total_eclipse,an eclipse as seen from a place where the eclipsed body is completely obscured
+77124,total_hysterectomy,surgical removal of the uterus and cervix
+77125,total_parenteral_nutrition TPN hyperalimentation,administration of a nutritionally adequate solution through a catheter into the vena cava; used in cases of long-term coma or severe burns or severe gastrointestinal syndromes
+77126,totalitarian,an adherent of totalitarian principles or totalitarian government
+77127,totalitarian_state totalitation_regime,a government that subordinates the individual to the state and strictly controls all aspects of life by coercive measures
+77128,totality,the quality of being complete and indiscriminate; "the totality of war and its consequences"; "the all-embracing totality of the state"
+77129,totara Podocarpus_totara,valuable timber tree of New Zealand yielding hard reddish wood used for furniture and bridges and wharves
+77130,totem,a clan or tribe identified by their kinship to a common totemic object
+77131,totem,emblem consisting of an object such as an animal or plant; serves as the symbol of a family or clan (especially among American Indians)
+77132,totem_pole,a tribal emblem consisting of a pillar carved and painted with totemic figures; erected by Indian tribes of the northwest Pacific coast
+77133,totemism,belief in the kinship of a group of people with a common totem
+77134,totemist,a person who belongs to a clan or tribe having a totem
+77135,totipotency totipotence,the ability of a cell to give rise to unlike cells and so to develop a new organism or part; "animal cells lose their totipotency at an early stage in embryonic development"
+77136,toucan,brilliantly colored arboreal fruit-eating bird of tropical America having a very large thin-walled beak
+77137,toucanet,small toucan
+77138,touch,the act of soliciting money (as a gift or loan); "he watched the beggar trying to make a touch"
+77139,touch,deftness in handling matters; "he has a master's touch"
+77140,touch,the feel of mechanical action; "this piano has a wonderful touch"
+77141,touch hint tinge mite pinch jot speck soupcon,a slight but appreciable amount; "this dish could use a touch of garlic"
+77142,touch sense_of_touch skin_senses touch_modality cutaneous_senses,the faculty by which external objects or forces are perceived through contact with the body (especially the hands); "only sight and touch enable us to locate objects in the space around us"
+77143,touch signature,a distinguishing style; "this room needs a woman's touch"
+77144,touch spot,a slight attack of illness; "he has a touch of rheumatism"
+77145,touch touch_sensation tactual_sensation tactile_sensation feeling,the sensation produced by pressure receptors in the skin; "she likes the touch of silk on her skin"; "the surface had a greasy feeling"
+77146,touch touching,the event of something coming in contact with the body; "he longed for the touch of her hand"; "the cooling touch of the night air"
+77147,touch touching,the act of putting two things together with no space between them; "at his touch the room filled with lights"
+77148,touch trace ghost,a suggestion of some quality; "there was a touch of sarcasm in his tone"; "he detected a ghost of a smile on her face"
+77149,touch-typist,a skilled typist who can type a document without looking at the keyboard
+77150,touch_football,a version of American football in which the ball carrier is touched rather than tackled
+77151,touch_screen touchscreen,a computer display that enables the user to interact with the computer by touching areas on the screen
+77152,touch_typing touch_system,typewriting in which the fingers are trained to hit particular keys; typist can read and type at the same time
+77153,touchback,(American football) a play in which the opposing team has kicked the football into your end zone
+77154,touchdown,a landing (as the wheels touch the landing field); especially of airplanes
+77155,touchdown,a score in American football; being in possession of the ball across the opponents' goal line
+77156,toucher,a person who causes or allows a part of the body to come in contact with someone or something
+77157,touchline,either of the sidelines in soccer or rugby
+77158,tough_guy plug-ugly,someone who bullies weaker people
+77159,toupee toupe,a small hairpiece to cover partial baldness
+77160,tour circuit,a journey or route all the way around a particular place or area; "they took an extended tour of Europe"; "we took a quick circuit of the park"; "a ten-day coach circuit of the island"
+77161,tour_de_force,a masterly or brilliant feat
+77162,tour_guide,a guide who leads others on a tour
+77163,touraco turaco turacou turakoo,large brightly crested bird of Africa
+77164,touring_car phaeton tourer,large open car seating four with folding top
+77165,tourism touristry,the business of providing services to tourists; "Tourism is a major business in Bermuda"
+77166,tourist tourer holidaymaker,someone who travels for pleasure
+77167,tourist_attraction,a characteristic that attracts tourists
+77168,tourist_class third_class,inexpensive accommodations on a ship or train
+77169,tourmaline,a mineral that is a complex borosilicate and hydroxide of aluminum containing iron and magnesium and calcium and lithium and sodium; it is usually black but occurs in transparent colored forms that are used as gemstones
+77170,tournament,a series of jousts between knights contesting for a prize
+77171,tournament tourney,a sporting competition in which contestants play a series of games to decide the winner
+77172,tournedos,thick steak cut from the beef tenderloin
+77173,tourtiere,a meat pie that is usually eaten at Christmas in Quebec
+77174,tout ticket_tout,someone who buys tickets to an event in order to resell them at a profit
+77175,tout touter,someone who advertises for customers in an especially brazen way
+77176,tout_ensemble,a total impression or effect of something made up of individual parts
+77177,tovarich tovarisch,a comrade (especially in Russian communism)
+77178,tow towage,the act of hauling something (as a vehicle) by means of a hitch or rope; "the truck gave him a tow to the garage"
+77179,tow_truck tow_car wrecker,a truck equipped to hoist and pull wrecked cars (or to remove cars from no-parking zones)
+77180,towel,a rectangular piece of absorbent cloth (or paper) for drying or wiping
+77181,towel_rack towel_horse,a rack consisting of one or more bars on which towels can be hung
+77182,towel_rail towel_bar,a horizontal bar a few inches from a wall for holding towels
+77183,towel_ring,a circular hoop for holding a towel
+77184,toweling towelling,any of various fabrics (linen or cotton) used to make towels
+77185,tower,a structure taller than its diameter; can stand alone or be attached to a larger building
+77186,tower_cress tower_mustard Arabis_turrita,European cress having stiff erect stems; sometimes placed in genus Turritis
+77187,tower_mustard tower_cress Turritis_glabra Arabis_glabra,or genus Arabis: erect cress widely distributed throughout Europe
+77188,tower_of_strength pillar_of_strength,a person who can be relied on to give a great deal of support and comfort
+77189,towhead,a person with light blond hair
+77190,towhee,any of numerous long-tailed American finches
+77191,towline towrope towing_line towing_rope,(nautical) a rope used in towing
+77192,town,an urban area with a fixed boundary that is smaller than a city; "they drive through town on their way to work"
+77193,town townspeople townsfolk,the people living in a municipality smaller than a city; "the whole town cheered the team"
+77194,town_clerk,the official who keeps a town's records
+77195,town_crier crier,(formerly) an official who made public announcements
+77196,town_gas,coal gas manufactured for domestic and industrial use
+77197,town_hall,a government building that houses administrative offices of a town government
+77198,town_meeting,a meeting of the inhabitants of a town
+77199,town_meeting,government of a town by an assembly of the qualified voters
+77200,townee,townsman unacquainted with country life especially a slick and flashy male city dweller
+77201,townie towny,resident of a college town not affiliated with the college
+77202,township town,an administrative division of a county; "the town is responsible for snow removal"
+77203,townsman,a person from the same town as yourself; "a fellow townsman"
+77204,townsman towner,a resident of a town or city
+77205,towpath towing_path,a path along a canal or river used by animals towing boats
+77206,toxemia toxaemia,blood poisoning caused by bacterial toxic substances in the blood
+77207,toxemia_of_pregnancy toxaemia_of_pregnancy toxemia toxaemia,an abnormal condition of pregnancy characterized by hypertension and edema and protein in the urine
+77208,toxic_shock toxic_shock_syndrome TSS,syndrome resulting from a serious acute (sometimes fatal) infection associated with the presence of staphylococcus; characterized by fever and diarrhea and nausea and diffuse erythema and shock; occurs especially in menstruating women using highly absorbent tampons
+77209,toxic_site toxic_waste_area Superfund_site,a site where toxic wastes have been dumped and the Environmental Protection Agency has designated them to be cleaned up
+77210,toxic_waste toxic_industrial_waste,poisonous waste materials; can cause injury (especially by chemical means)
+77211,toxic_waste_dump toxic_waste_site toxic_dumpsite,a location where toxic wastes can be or have been disposed of (often illegally)
+77212,toxicity,the degree to which something is poisonous
+77213,toxicognath,either of a pair of poison fangs in the modified front pair of legs of the centipede
+77214,toxicologist,one who studies the nature and effects of poisons and their treatment
+77215,toxicology,the branch of pharmacology that deals with the nature and effects and treatments of poisons
+77216,toxin,a poisonous substance produced during the metabolism and growth of certain microorganisms and some higher plant and animal species
+77217,toxin_antitoxin,a mixture of toxin and antitoxin used to immunize against a disease
+77218,toxoplasmosis,infection caused by parasites transmitted to humans from infected cats; if contracted by a pregnant woman it can result in serious damage to the fetus
+77219,toy,a nonfunctional replica of something else (frequently used as a modifier); "a toy stove"
+77220,toy,a device regarded as providing amusement; "private airplanes are a rich man's toy"
+77221,toy_Manchester toy_Manchester_terrier,breed of small Manchester terrier
+77222,toy_box toy_chest,chest for storage of toys
+77223,toy_dog toy,any of several breeds of very small dogs kept purely as pets
+77224,toy_industry toy_business,an industry that manufactures and sells toys for children
+77225,toy_poodle,the breed of very small poodles
+77226,toy_soldier,a doll that resembles a soldier
+77227,toy_spaniel,a very small spaniel
+77228,toy_terrier,a small active dog
+77229,toyon tollon Christmasberry Christmas_berry Heteromeles_arbutifolia Photinia_arbutifolia,ornamental evergreen treelike shrub of the Pacific coast of the United States having large white flowers and red berrylike fruits; often placed in genus Photinia
+77230,toyshop,shop where toys are sold
+77231,tra-la tra-la-la,a set of nonsensical syllables used while humming a refrain
+77232,trabecula,rod-shaped structures of fibrous tissue that divide an organ into parts (as in the penis) or stabilize the structure of an organ (as in the spleen)
+77233,trace,a visible mark (as a footprint) left by the passage of person or animal or vehicle
+77234,trace,either of two lines that connect a horse's harness to a wagon or other vehicle or to a whiffletree
+77235,trace hint tint suggestion,a just detectable amount; "he speaks French with a trace of an accent"; "a hint mockery in her manner"; "a tint of glamour"
+77236,trace vestige tincture shadow,an indication that something has been present; "there wasn't a trace of evidence for the claim"; "a tincture of condescension"
+77237,trace_detector,a screening device for traces of explosives; used at airline terminals
+77238,trace_element,an element that occurs at very small quantities in the body but is nonetheless important for many biological processes
+77239,trace_program,a utility program that exhibits the sequence and results of executing the instructions in another program
+77240,tracer,an investigator who is employed to find missing persons or missing goods
+77241,tracer,an instrument used to make tracings
+77242,tracer,(radiology) any radioactive isotope introduced into the body to study metabolism or other biological processes
+77243,tracer tracer_bullet,ammunition whose flight can be observed by a trail of smoke
+77244,tracery,decoration consisting of an open pattern of interlacing ribs
+77245,trachea,one of the tubules forming the respiratory system of most insects and many arachnids
+77246,trachea windpipe,membranous tube with cartilaginous rings that conveys inhaled air from the larynx to the bronchi
+77247,tracheal_vein vena_trachealis,several small veins from the trachea
+77248,tracheid,long tubular cell peculiar to xylem
+77249,tracheitis,inflammation of the trachea
+77250,tracheobronchitis,common respiratory infection characterized by inflammation of the trachea and the bronchi
+77251,tracheostomy tracheotomy,a surgical operation that creates an opening into the trachea with a tube inserted to provide a passage for air; performed when the pharynx is obstructed by edema or cancer or other causes
+77252,trachodon trachodont,large duck-billed dinosaur of the Cretaceous period
+77253,trachoma,a chronic contagious disease caused by a bacterium and marked by inflammation of the conjunctiva and cornea of the eye and the formation of scar tissue
+77254,tracing,the act of drawing a plan or diagram or outline
+77255,tracing,the discovery and description of the course of development of something; "the tracing of genealogies"
+77256,tracing trace,a drawing created by superimposing a semitransparent sheet of paper on the original image and copying on it the lines of the original image
+77257,tracing_paper,a semitransparent paper that is used for tracing drawings
+77258,tracing_routine,a routine that provides a chronological record of the execution of a computer program
+77259,track,a groove on a phonograph recording
+77260,track,a pair of parallel rails providing a runway for wheels
+77261,track cart_track cartroad,any road or path affording passage especially a rough one
+77262,track caterpillar_track caterpillar_tread,an endless metal belt on which tracked vehicles move over the ground
+77263,track data_track,(computer science) one of the circular magnetic paths on a magnetic disk that serve as a guide for writing and reading data
+77264,track rail rails runway,a bar or pair of parallel bars of rolled steel making the railway along which railroad cars or other vehicles can roll
+77265,track running,the act of participating in an athletic competition involving running on a track
+77266,track-to-track_seek_time,(computer science) the time it takes for a read/write head to move to an adjacent data track
+77267,track_and_field,participating in athletic sports performed on a running track or on the field associated with it
+77268,track_event,a footrace performed on a track (indoor or outdoor)
+77269,track_meet,a track and field competition between two or more teams
+77270,track_record,the fastest time ever recorded for a specific distance at a particular racetrack; "the track record for the mile and a half at Belmont is 2 minutes 24 seconds held by Secretariat since 1973"
+77271,track_star,a star runner
+77272,trackball,an electronic device consisting of a rotatable ball in a housing; used to position the cursor and move images on a computer screen; "a trackball is essentially an upside-down mouse"
+77273,tracked_vehicle,a self-propelled vehicle that moves on tracks
+77274,tracker,someone who tracks down game
+77275,tract,a system of body parts that together serve some particular purpose
+77276,tract pamphlet,a brief treatise on a subject of interest; published in the form of a booklet
+77277,tract piece_of_land piece_of_ground parcel_of_land parcel,an extended area of land
+77278,tract_house,one of many houses of similar design constructed together on a tract of land
+77279,tract_housing,housing consisting of similar houses constructed together on a tract of land
+77280,tractability tractableness flexibility,the trait of being easily persuaded
+77281,traction,(orthopedics) the act of pulling on a bone or limb (as in a fracture) to relieve pressure or align parts in a special way during healing; "his leg was in traction for several days"
+77282,traction_engine,steam-powered locomotive for drawing heavy loads along surfaces other than tracks
+77283,tractor,a truck that has a cab but no body; used for pulling large trailers or vans
+77284,tractor,a wheeled vehicle with large wheels; used in farming and other applications
+77285,trad,traditional jazz as revived in the 1950s
+77286,trade,the commercial exchange (buying and selling on domestic or international markets) of goods and services; "Venice was an important center of trade with the East"; "they are accused of conspiring to constrain trade"
+77287,trade craft,the skilled practice of a practical occupation; "he learned his trade as an apprentice"
+77288,trade patronage,the business given to a commercial establishment by its customers; "even before noon there was a considerable patronage"
+77289,trade-in,an item of property that is given in part payment for a new one
+77290,trade-last,a compliment that I heard about you that I offer to trade for a compliment you have heard about me
+77291,trade_acceptance,a bill of exchange for a specific purchase; drawn on the buyer by the seller and bearing the buyer's acceptance
+77292,trade_barrier import_barrier,any regulation or policy that restricts international trade
+77293,trade_bill,a statute that would regulate foreign trade
+77294,trade_book trade_edition,a book intended for general readership
+77295,trade_deficit,an excess of imports over exports
+77296,trade_discount,a discount from the list price of a commodity allowed by a manufacturer or wholesaler to a merchant
+77297,trade_magazine,a magazine published for and read by members of a particular trade group
+77298,trade_name brand_name brand marque,a name given to a product or service
+77299,trade_policy national_trading_policy,a government's policy controlling foreign trade
+77300,trade_route,a route followed by traders (usually in caravans)
+77301,trade_school vocational_school,a secondary school teaching the skilled trades
+77302,trade_secret,a secret (method or device or formula) that gives a manufacturer an advantage over the competition
+77303,trade_unionist unionist union_member,a worker who belongs to a trade union
+77304,trade_wind trade,steady winds blowing from east to west above and below the equator; "they rode the trade winds going west"
+77305,tradecraft,skill acquired through experience in a trade; often used to discuss skill in espionage; "instructional designers are trained in something that might be called tradecraft"; "the CIA chief of station accepted responsibility for his agents' failures of tradecraft"
+77306,trademark,a formally registered symbol identifying the manufacturer or distributor of a product
+77307,tradeoff trade-off,an exchange that occurs as a compromise; "I faced a tradeoff between eating and buying my medicine"
+77308,trader bargainer dealer monger,someone who purchases and maintains an inventory of goods to be sold
+77309,tradescant's_aster,a variety of aster
+77310,tradespeople,people engaged in trade
+77311,trading,buying or selling securities or commodities
+77312,trading_card,a card with a picture on it; collected and traded by children
+77313,trading_stamp,a token resembling a stamp given by a retailer to a buyer; the token is redeemable for articles on a special list
+77314,tradition,an inherited pattern of thought or action
+77315,traditionalism,the doctrine that all knowledge was originally derived by divine revelation and that it is transmitted by traditions
+77316,traditionalism,adherence to tradition (especially in cultural or religious matters)
+77317,traditionalism traditionality,strict adherence to traditional methods or teachings
+77318,traditionalist diehard,one who adheres to traditional views
+77319,traffic,the aggregation of things (pedestrians or vehicles) coming and going in a particular locality during a specified period of time
+77320,traffic,the amount of activity over a communication system during a given period of time; "heavy traffic overloaded the trunk lines"; "traffic on the internet is lightest during the night"
+77321,traffic,buying and selling; especially illicit trade
+77322,traffic_circle circle rotary roundabout,a road junction at which traffic streams circularly around a central island; "the accident blocked all traffic at the rotary"
+77323,traffic_control,control of the flow of traffic in a building or a city
+77324,traffic_cop,a policeman who controls the flow of automobile traffic
+77325,traffic_court,a court that has power to prosecute for traffic offenses
+77326,traffic_island safety_island safety_isle safety_zone,a curbed area in a roadway from which traffic is excluded; provides safe area for pedestrians
+77327,traffic_jam snarl-up,a number of vehicles blocking one another until they can scarcely move
+77328,traffic_lane,a lane of a main road that is defined by painted lines; "that car is in the wrong traffic lane"
+77329,traffic_light traffic_signal stoplight,a visual signal to control the flow of traffic at intersections
+77330,traffic_pattern approach_pattern pattern,the path that is prescribed for an airplane that is preparing to land at an airport; "the traffic patterns around O'Hare are very crowded"; "they stayed in the pattern until the fog lifted"
+77331,tragacanth,a gum used in pharmacy, adhesives, and textile printing
+77332,tragedian,a writer (especially a playwright) who writes tragedies
+77333,tragedian,an actor who specializes in tragic roles
+77334,tragedienne,an actress who specializes in tragic roles
+77335,tragedy,drama in which the protagonist is overcome by some superior force or circumstance; excites terror or pity
+77336,tragic_flaw hamartia,the character flaw or error of a tragic hero that leads to his downfall
+77337,tragicomedy,a dramatic composition involving elements of both tragedy and comedy usually with the tragic predominating
+77338,tragopan,brilliantly colored Asian pheasant having wattles and two fleshy processes on the head
+77339,tragus,a small cartilaginous flap in front of the external opening of the ear
+77340,trail,a track or mark left by something that has passed; "there as a trail of blood"; "a tear left its trail on her cheek"
+77341,trail,a path or track roughly blazed through wild or hilly country
+77342,trail_bike dirt_bike scrambler,a lightweight motorcycle equipped with rugged tires and suspension; an off-road motorcycle designed for riding cross country or over unpaved ground
+77343,trail_boss,the person responsible for driving a herd of cattle
+77344,trail_head trailhead,the beginning of a trail
+77345,trail_riding,riding along a roughly blazed path
+77346,trailblazer,someone who marks a trail by leaving blazes on trees
+77347,trailer,a large transport conveyance designed to be pulled by a truck or tractor
+77348,trailer house_trailer,a wheeled vehicle that can be pulled by a car or truck and is equipped for occupancy
+77349,trailer_camp trailer_park,a camp where space for house trailers can be rented; utilities are generally provided
+77350,trailer_truck tractor_trailer trucking_rig rig articulated_lorry semi,a truck consisting of a tractor and trailer together
+77351,trailing tracking,the pursuit (of a person or animal) by following tracks or marks they left behind
+77352,trailing_arbutus mayflower Epigaea_repens,low-growing evergreen shrub of eastern North America with leathery leaves and clusters of fragrant pink or white flowers
+77353,trailing_edge,the rear edge of an airfoil
+77354,trailing_four_o'clock trailing_windmills Allionia_incarnata,trailing plant having crowded clusters of 3 brilliant deep pink flowers resembling a single flower blooming near the ground; found in dry gravelly or sandy soil; southwestern United States and Mexico
+77355,train,a series of consequences wrought by an event; "it led to a train of disasters"
+77356,train,piece of cloth forming the long back section of a gown that is drawn along the floor; "the bride's train was carried by her two young nephews"
+77357,train railroad_train,public transport provided by a line of railway cars coupled together and drawn by a locomotive; "express trains don't stop at Princeton Junction"
+77358,train_fare,the fare charged for traveling by train
+77359,train_of_thought thread,the connections that link the various parts of an event or argument together; "I couldn't follow his train of thought"; "he lost the thread of his argument"
+77360,train_set,a toy consisting of small models of railroad trains and the track for them to run on
+77361,trainband,a company of militia in England or America from the 16th century to the 18th century
+77362,trainbandsman,a member of a trainband
+77363,trainbearer,one who holds up the train of a gown or robe on a ceremonial occasion
+77364,trainee,someone who is being trained
+77365,traineeship,financial aid that enables you to get trained for a specified job; "the bill provided traineeships in vocational rehabilitation"
+77366,trainer,one who trains other persons or animals
+77367,training preparation grooming,activity leading to skilled behavior
+77368,training_college,a school providing training for a special field or profession
+77369,training_program,a program designed for training in specific skills
+77370,training_school,a school providing practical vocational and technical training
+77371,training_table,planned meals for athletes in training (usually served in a mess hall)
+77372,trainload,quantity that can be carried by a train
+77373,trainman railroader railroad_man railwayman railway_man,an employee of a railroad
+77374,trait,a distinguishing feature of your personal nature
+77375,traitor treasonist,someone who betrays his country by committing treason
+77376,traitress,female traitor
+77377,trajectory flight,the path followed by an object moving through space
+77378,tramcar tram,a four-wheeled wagon that runs on tracks in a mine; "a tramcar carries coal out of a coal mine"
+77379,tramline tramway streetcar_track,the track on which trams or streetcars run
+77380,trammel,an adjustable pothook set in a fireplace
+77381,trammel,a restraint that is used to teach a horse to amble
+77382,trammel_net trammel,a fishing net with three layers; the outer two are coarse mesh and the loose inner layer is fine mesh
+77383,tramontane tramontana,a cold dry wind that blows south out of the mountains into Italy and the western Mediterranean
+77384,tramp,a heavy footfall; "the tramp of military boots"
+77385,tramp hobo bum,a vagrant; "a homeless tramp"; "he tried to help the really down-and-out bums"
+77386,tramp_steamer tramp,a commercial steamer for hire; one having no regular schedule
+77387,trample trampling,the sound of heavy treading or stomping; "he heard the trample of many feet"
+77388,trampler,someone who injures by trampling
+77389,trampoline,gymnastic apparatus consisting of a strong canvas sheet attached with springs to a metal frame; used for tumbling
+77390,tramway tram aerial_tramway cable_tramway ropeway,a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers
+77391,trance,a state of mind in which consciousness is fragile and voluntary action is poor or missing; a state resembling deep sleep
+77392,tranche,a portion of something (especially money)
+77393,trandolapril Mavik,an ACE inhibiting drug (trade name Mavik) used in some patients after a heart attack or to treat hypertension
+77394,tranquilizer tranquillizer tranquilliser antianxiety_agent ataractic_drug ataractic_agent ataractic,a drug used to reduce stress or tension without reducing mental clarity
+77395,tranquillity tranquility quiet,an untroubled state; free from disturbances
+77396,tranquillity tranquility quietness quietude,a state of peace and quiet
+77397,trans_fatty_acid,a fatty acid that has been produced by hydrogenating an unsaturated fatty acid (and so changing its shape); found in processed foods such as margarine and fried foods and puddings and commercially baked goods and partially hydrogenated vegetable oils
+77398,transactinide,any of the artificially produced elements with atomic numbers greater than 103
+77399,transaction dealing dealings,the act of transacting within or between groups (as carrying on commercial activities); "no transactions are possible without him"; "he has always been honest is his dealings with me"
+77400,transaction_file detail_file,(computer science) a computer file containing relatively transient data about a particular data processing task
+77401,transactional_immunity,a broader form of use immunity that also protects the witness from any prosecution brought about relating to transactions to which they gave testimony
+77402,transactor,someone who conducts or carries on business or negotiations
+77403,transalpine,one living on or coming from the other side of the Alps from Italy
+77404,transaminase aminotransferase aminopherase,a class of transferases that catalyze transamination (that transfer an amino group from an amino acid to another compound)
+77405,transamination,the process of transposing an amino group within a chemical compound
+77406,transamination,the process of transfering an amino group from one compound to another
+77407,transcendence transcendency,a state of being or existence above and beyond the limits of material experience
+77408,transcendence transcendency superiority,the state of excelling or surpassing or going beyond usual limits
+77409,transcendental_number,an irrational number that is not algebraic
+77410,transcendentalism transcendental_philosophy,any system of philosophy emphasizing the intuitive and spiritual above the empirical and material
+77411,transcendentalist,advocate of transcendentalism
+77412,transcortical_aphasia,a general term for aphasia that results from lesions outside of Broca's area or Wernicke's area of the cerebral cortex
+77413,transcriber,someone who rewrites in a different script
+77414,transcriber,someone who represents the sounds of speech in phonetic notation
+77415,transcriber,someone who makes a written version of spoken material
+77416,transcript,something that has been transcribed; a written record (usually typewritten) of dictated or recorded speech; "he read a transcript of the interrogation"; "you can obtain a transcript of this radio program by sending a self-addressed envelope to the station"
+77417,transcript copy,a reproduction of a written record (e.g. of a legal or school record)
+77418,transcriptase RNA_polymerase,the enzyme that copies DNA into RNA
+77419,transcription,(genetics) the organic process whereby the DNA sequence in a gene is copied into mRNA; the process whereby a base sequence of messenger RNA is synthesized on a template of complementary DNA
+77420,transcription,a sound or television recording (e.g., from a broadcast to a tape recording)
+77421,transcription written_text,something written, especially copied from one medium to another, as a typewritten version of dictation
+77422,transdermal_patch skin_patch,a medicated adhesive pad placed on the skin for absorption of a time released dose of medication into the bloodstream
+77423,transducer,an electrical device that converts one form of energy into another
+77424,transducing_vector gene_delivery_vector,a vector for delivering genes into cells
+77425,transduction,(genetics) the process of transfering genetic material from one cell to another by a plasmid or bacteriophage
+77426,transduction,the process whereby a transducer accepts energy in one form and gives back related energy in a different form; "the transduction of acoustic waves into voltages by a microphone"
+77427,transept,structure forming the transverse part of a cruciform church; crosses the nave at right angles
+77428,transfer,a ticket that allows a passenger to change conveyances
+77429,transfer transfer_of_training carry-over,application of a skill learned in one situation to a different but similar situation
+77430,transfer transferee,someone who transfers or is transferred from one position to another; "the best student was a transfer from LSU"
+77431,transfer transference,transferring ownership
+77432,transfer transference,the act of transfering something from one form to another; "the transfer of the music from record to tape suppressed much of the background noise"
+77433,transfer_RNA tRNA acceptor_RNA soluble_RNA,RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)
+77434,transfer_agent,an agency (usually a bank) that is appointed by a corporation to keep records of its stock and bond owners and to resolve problems about certificates
+77435,transfer_paper,a paper that is coated with a preparation for transferring a design to another surface
+77436,transfer_payment,a public expenditure (as for unemployment compensation or veteran's benefits) that is not for goods and services
+77437,transfer_tax,any tax levied on the passing of title to property
+77438,transferability,the quality of being transferable or exchangeable; "sterling transferability affords a means of multilateral settlement for....trade between nondollar countries"
+77439,transferase,any of various enzymes that move a chemical group from one compound to another compound
+77440,transferee,(law) someone to whom a title or property is conveyed
+77441,transference,(psychoanalysis) the process whereby emotions are passed on or displaced from one person to another; during psychoanalysis the displacement of feelings toward others (usually the parents) is onto the analyst
+77442,transferer transferrer,someone who transfers something
+77443,transferor,(law) someone who conveys a title or property to another
+77444,transferred_property transferred_possession,a possession whose ownership changes or lapses
+77445,transferrin beta_globulin siderophilin,a globulin in blood plasma that carries iron
+77446,transfiguration,the act of transforming so as to exalt or glorify
+77447,transfiguration metamorphosis,a striking change in appearance or character or circumstances; "the metamorphosis of the old house into something new and exciting"
+77448,transformation,(mathematics) a function that changes the position or direction of the axes of a coordinate system
+77449,transformation,a rule describing the conversion of one syntactic structure into another related syntactic structure
+77450,transformation,(genetics) modification of a cell or bacterium by the uptake and incorporation of exogenous DNA
+77451,transformation translation,the act of changing in form or shape or appearance; "a photograph is a translation of a scene onto a two-dimensional surface"
+77452,transformation transmutation shift,a qualitative change
+77453,transformer,an electrical device by which alternating current of one voltage is changed to another voltage
+77454,transfusion,the action of pouring a liquid from one vessel to another
+77455,transfusion blood_transfusion,the introduction of blood or blood plasma into a vein or artery
+77456,transfusion_reaction,reaction of the body to a transfusion of blood that is not compatible with its own blood; an adverse reaction can range from fever and hives to renal failure and shock and death
+77457,transgene,an exogenous gene introduced into the genome of another organism
+77458,transgression,the spreading of the sea over land as evidenced by the deposition of marine strata over terrestrial strata
+77459,transgression,the action of going beyond or overstepping some boundary or limit
+77460,transgression evildoing,the act of transgressing; the violation of a law or a duty or moral principle; "the boy was punished for the transgressions of his father"
+77461,transgressor,someone who transgresses; someone who violates a law or command; "the way of transgressors is hard"
+77462,transience transiency transitoriness,an impermanence that suggests the inevitability of ending or dying
+77463,transient,one who stays for only a short time; "transient laborers"
+77464,transient,(physics) a short-lived oscillation in a system caused by a sudden change of voltage or current or load
+77465,transient_global_amnesia,memory disorder seen in middle aged and elderly persons; characterized by an episode of amnesia and bewilderment that lasts for several hours; person is otherwise alert and intellectually active
+77466,transient_ischemic_attack TIA,brief episode in which the brain gets insufficient blood supply; symptoms depend on the site of the blockage
+77467,transistor junction_transistor electronic_transistor,a semiconductor device capable of amplification
+77468,transit_instrument,a telescope mounted on an axis running east and west and used to time the transit of a celestial body across the meridian
+77469,transit_line,a line providing public transit
+77470,transit_zone,a six million square mile area that includes the Caribbean and the Gulf of Mexico and the eastern Pacific Ocean; includes the principal routes used by drug smugglers
+77471,transition,a change from one place or state or subject or stage to another
+77472,transition,a passage that connects a topic to one that follows
+77473,transition modulation,a musical passage moving from one key to another
+77474,transitive_verb transitive_verb_form transitive,a verb (or verb construction) that requires an object in order to be grammatical
+77475,transitivity,(logic and mathematics) a relation between three elements such that if it holds between the first and second and it also holds between the second and third it must necessarily hold between the first and third
+77476,transitivity transitiveness,the grammatical relation created by a transitive verb
+77477,translation,(mathematics) a transformation in which the origin of the coordinate system is moved to another position but the direction of each axis remains the same
+77478,translation,(genetics) the process whereby genetic information coded in messenger RNA directs the formation of a specific protein at a ribosome in the cytoplasm
+77479,translation,a uniform movement without rotation
+77480,translation,rewording something in less technical terminology
+77481,translation displacement,the act of uniform movement
+77482,translation interlingual_rendition rendering version,a written communication in a second language having the same meaning as the written communication in a first language
+77483,translator transcriber,a person who translates written messages from one language to another
+77484,translator translating_program,a program that translates one programming language into another
+77485,transliteration,a transcription from one alphabet to another
+77486,translocation,the transport of dissolved material within a plant
+77487,translocation,(genetics) an exchange of chromosome parts; "translocations can result in serious congenital disorders"
+77488,translucence translucency semitransparency,the quality of allowing light to pass diffusely
+77489,transmigrante,a Latin American who buys used goods in the United States and takes them to Latin America to sell
+77490,transmigration,the passing of a soul into another body after death
+77491,transmission,communication by means of transmitted signals
+77492,transmission transmission_system,the gears that transmit power from an automobile engine via the driveshaft to the live axle
+77493,transmission transmittal transmitting,the act of sending a message; causing a message to be transmitted
+77494,transmission_control_protocol TCP,a protocol developed for the internet to get data from one network device to another; "TCP uses a retransmission strategy to insure that data will not be lost in transmission"
+77495,transmission_control_protocol/internet_protocol TCP/IP,a set of protocols (including TCP) developed for the internet in the 1970s to get data from one network device to another
+77496,transmission_mechanism,any mechanism whereby an infectious agent is spread from a reservoir to a human being
+77497,transmission_shaft,rotating shaft that transmits rotary motion from the engine to the differential
+77498,transmission_time TRM,the coordinated universal time when a transmission is sent from Earth to a spacecraft or other celestial body
+77499,transmittance transmission,the fraction of radiant energy that passes through a substance
+77500,transmitter sender,set used to broadcast radio or tv signals
+77501,transmogrification,the act of changing into a different form or appearance (especially a fantastic or grotesque one); "the transmogrification of the prince into a porcupine"
+77502,transmutation,(physics) the change of one chemical element into another (as by nuclear decay or radioactive bombardment); "the transmutation of base metals into gold proved to be impossible"
+77503,transmutation transubstantiation,an act that changes the form or character or substance of something
+77504,transom transom_window fanlight,a window above a door that is usually hinged to a horizontal crosspiece over the door
+77505,transom traverse,a horizontal crosspiece across a window or separating a door from a window over it
+77506,transorbital_lobotomy,a method of performing prefrontal lobotomy in which the surgical knife is inserted above the eyeball and moved to cut brain fibers
+77507,transparency transparence,permitting the free passage of electromagnetic radiation
+77508,transparency transparence transparentness,the quality of being clear and transparent
+77509,transparent_gem,a gemstone having the property of transmitting light without serious diffusion
+77510,transparent_substance translucent_substance,a material having the property of admitting light diffusely; a partly transparent material
+77511,transpiration,the process of giving off or exhaling water vapor through the skin or mucous membranes
+77512,transpiration,the passage of gases through fine tubes because of differences in pressure or temperature
+77513,transpiration,the emission of water vapor from the leaves of plants
+77514,transplant transplantation organ_transplant,an operation moving an organ from one organism (the donor) to another (the recipient); "he had a kidney transplant"; "the long-term results of cardiac transplantation are now excellent"; "a child had a multiple organ transplant two months ago"
+77515,transplant transplantation transplanting,the act of removing something from one location and introducing it in another location; "the transplant did not flower until the second year"; "too frequent transplanting is not good for families"; "she returned to Alabama because she could not bear transplantation"
+77516,transplanter,a gardener who moves plants to new locations
+77517,transponder,electrical device designed to receive a specific signal and automatically transmit a specific reply
+77518,transport,an exchange of molecules (and their kinetic energy and momentum) across the boundary between adjacent layers of a fluid or across cell membranes
+77519,transport_ship,a ship for carrying soldiers or military equipment
+77520,transportation shipping transport,the commercial enterprise of moving goods and materials
+77521,transportation transport transfer transferral conveyance,the act of moving something from one location to another
+77522,transportation_company,a company providing transportation
+77523,transportation_system transportation transit,a facility consisting of the means and equipment necessary for the movement of passengers or goods
+77524,transporter,a crane for moving material with dispatch as in loading and unloading ships
+77525,transporter car_transporter,a long truck for carrying motor vehicles
+77526,transpose,a matrix formed by interchanging the rows and columns of a given matrix
+77527,transposition,(genetics) a kind of mutation in which a chromosomal segment is transfered to a new position on the same or another chromosome
+77528,transposition,(mathematics) the transfer of a quantity from one side of an equation to the other along with a change of sign
+77529,transposition,(electricity) a rearrangement of the relative positions of power lines in order to minimize the effects of mutual capacitance and inductance; "he wrote a textbook on the electrical effects of transposition"
+77530,transposition,(music) playing in a different key from the key intended; moving the pitch of a piece of music upwards or downwards
+77531,transposition heterotaxy,any abnormal position of the organs of the body
+77532,transposition reversal,the act of reversing the order or place of
+77533,transposon jumping_gene,a segment of DNA that can become integrated at many different sites along a chromosome (especially a segment of bacterial DNA that can be translocated as a whole)
+77534,transsexual transexual,a person whose sexual identification is entirely with the opposite sex
+77535,transsexual transexual transgendered,a person who has undergone a sex change operation
+77536,transsexualism,condition in which a person identifies with a gender different from his or her physical gender
+77537,transshipment,the transfer from one conveyance to another for shipment
+77538,transubstantiation,the Roman Catholic doctrine that the whole substance of the bread and the wine changes into the substance of the body and blood of Christ when consecrated in the Eucharist
+77539,transudate transudation,a substance that transudes
+77540,transuranic_element,any element having an atomic number greater than 92 (which is the atomic number of uranium); all are radioactive
+77541,transurethral_resection_of_the_prostate TURP,removal of significant amounts of prostate tissue (as in cases of benign prostatic hyperplasia)
+77542,transverse_colon,the part of the large intestine that extends across the abdominal cavity and joins the ascending to the descending colon
+77543,transverse_process,one of two processes that extend from each vertebra and provide the point of articulation for the ribs
+77544,transverse_sinus sinus_transversus,a paired dural sinus; terminates in the sigmoid sinus
+77545,transversus_abdominis_muscle transverse_muscle_of_abdomen musculus_transversalis_abdominis transversus_abdominis,a flat muscle with transverse fibers that forms the anterior and lateral walls of the abdominal cavity
+77546,transvestism transvestitism cross_dressing,the practice of adopting the clothes or the manner or the sexual role of the opposite sex
+77547,transvestite cross-dresser,someone who adopts the dress or manner or sexual role of the opposite sex
+77548,tranylcypromine,an antidepressant drug that is a monoamine oxidase inhibitor; administered as a sulfate
+77549,trap,drain consisting of a U-shaped section of drainpipe that holds liquid and so prevents a return flow of sewer gas
+77550,trap,a device to hurl clay pigeons into the air for trapshooters
+77551,trap,a light two-wheeled carriage
+77552,trap,a device in which something (usually an animal) can be caught and penned
+77553,trap cakehole hole maw yap gob,informal terms for the mouth
+77554,trap snare,something (often something deceptively attractive) that catches you unawares; "the exam was full of trap questions"; "it was all a snare and delusion"
+77555,trap-and-drain_auger,a plumber's snake for clearing a trap and drain
+77556,trap-door_spider,American spider that constructs a silk-lined nest with a hinged lid
+77557,trap_block,(American football) an illegal block
+77558,trap_door,a hinged or sliding door in a floor or ceiling
+77559,trap_line,a line or series of traps
+77560,trapeze,a swing used by circus acrobats
+77561,trapezium,a quadrilateral with no parallel sides
+77562,trapezium trapezium_bone os_trapezium,the wrist bone on the thumb side of the hand that articulates with the 1st and 2nd metacarpals
+77563,trapezius trapezius_muscle cowl_muscle musculus_trapezius,either of two flat triangular muscles of the shoulder and upper back that are involved in moving the shoulders and arms
+77564,trapezohedron,a polyhedron whose faces are trapeziums
+77565,trapezoid,a quadrilateral with two parallel sides
+77566,trapezoid trapezoid_bone os_trapezoideum,the wrist bone between the trapezium and the capitate bones
+77567,trapper,someone who sets traps for animals (usually to obtain their furs)
+77568,trapper's_tea glandular_Labrador_tea,a Rocky Mountain shrub similar to Ledum groenlandicum
+77569,trapshooter,a person who engages in shooting at clay pigeons that are hurled into the air by a trap
+77570,trash scum,worthless people
+77571,trauma psychic_trauma,an emotional wound or shock often having long-lasting effects
+77572,traumatology accident_surgery,the branch of medicine that deals with the surgical repair of injuries and wounds arising from accidents
+77573,traumatophobia,a morbid fear of battle or physical injury
+77574,trave traverse crossbeam crosspiece,a horizontal beam that extends across something
+77575,travel traveling travelling,the act of going from one place to another; "he enjoyed selling but he hated the travel"
+77576,travel_agency,an agency that arranges personal travel
+77577,travel_agent,someone who sells or arranges trips or tours for customers
+77578,travel_allowance travel_reimbursement,a sum allowed for travel
+77579,travel_bargain,a bargain rate for travellers on commercial routes (usually air routes)
+77580,travel_expense,(frequently plural) expenses incurred by an employee in the performance of the job and usually reimbursed by the employer
+77581,travel_guidebook itinerary,a guidebook for travelers
+77582,travel_iron,a small lightweight iron that can be carried while traveling
+77583,travel_plan itinerary,a proposed route of travel
+77584,travel_time,a period of time spent traveling; "workers were not paid for their travel time between home and factory"
+77585,traveler traveller,a person who changes location
+77586,traveler's_check traveller's_check banker's_check,a letter of credit issued by a bank or express company that is payable on presentation to any correspondent of the issuer
+77587,traveler's_joy traveller's_joy old_man's_beard Clematis_vitalba,vigorous deciduous climber of Europe to Afghanistan and Lebanon having panicles of fragrant green-white flowers in summer and autumn
+77588,traveler's_letter_of_credit traveller's_letter_of_credit,a letter of credit given to a traveler
+77589,traveler's_tree traveller's_tree ravenala Ravenala_madagascariensis,giant treelike plant having edible nuts and leafstalks that yield a refreshing drink of clear watery sap; reputedly an emergency source of water for travelers
+77590,traveling_salesman travelling_salesman commercial_traveler commercial_traveller roadman bagman,a salesman who travels to call on customers
+77591,traveling_wave travelling_wave,a wave in which the medium moves in the direction of propagation of the wave
+77592,travelogue travelog,a film or illustrated lecture on traveling
+77593,traversal traverse,taking a zigzag path on skis
+77594,traversal traverse,travel across
+77595,traverser,someone who moves or passes across; "the traversers slowly ascended the mountain"
+77596,trawl dragnet trawl_net,a conical fishnet dragged through the water at great depths
+77597,trawl trawl_line spiller setline trotline,a long fishing line with many shorter lines and hooks attached to it (usually suspended between buoys)
+77598,trawler,a fisherman who use a trawl net
+77599,trawler dragger,a fishing boat that uses a trawl net or dragnet to catch fish
+77600,tray,an open receptacle for holding or displaying or serving articles or food
+77601,tray_cloth,table linen consisting of a small cloth for a tray
+77602,trazodone trazodone_hydrochloride Desyrel,oral antidepressant (trade name Desyrel) that is a nontricyclic drug used as a sedative
+77603,treachery betrayal treason perfidy,an act of deliberate betrayal
+77604,treacle golden_syrup,a pale cane syrup
+77605,treacle mush slop glop,writing or music that is excessively sweet and sentimental
+77606,tread,the grooved surface of a pneumatic tire
+77607,tread,the part (as of a wheel or shoe) that makes contact with the ground
+77608,tread,structural member consisting of the horizontal part of a stair or step
+77609,treading_water,a stroke that keeps the head above water by thrashing the legs and arms
+77610,treadmill,an exercise device consisting of an endless belt on which a person can walk or jog without changing place
+77611,treadmill salt_mine,a job involving drudgery and confinement
+77612,treadmill treadwheel tread-wheel,a mill that is powered by men or animals walking on a circular belt or climbing steps
+77613,treadmill_test,a stress test in which the patient walks on a moving treadmill while the heart and breathing rates are monitored
+77614,treason high_treason lese_majesty,a crime that undermines the offender's government
+77615,treason subversiveness traitorousness,disloyalty by virtue of subversive behavior
+77616,treasure,any possession that is highly valued by its owner; "the children returned from the seashore with their shells and other treasures"
+77617,treasure,a collection of precious things; "the trunk held all her meager treasures"
+77618,treasure hoarded_wealth,accumulated wealth in the form of money or jewels etc.; "the pirates hid their treasure on a small island in the West Indies"
+77619,treasure_chest,a chest filled with valuables
+77620,treasure_flower Gazania_rigens,decumbent South African perennial with short densely leafy stems and orange flower rays with black eyespots at base
+77621,treasure_house,a storehouse for treasures
+77622,treasure_hunt,a game in which players try to find hidden articles by using a series of clues
+77623,treasure_ship,a 16th-century ship loaded with treasure
+77624,treasure_trove,any collection of valuables that is discovered; "her book was a treasure trove of new ideas"; "mother's attic was a treasure trove when we were looking for antiques"
+77625,treasure_trove trove,treasure of unknown ownership found hidden (usually in the earth)
+77626,treasurer financial_officer,an officer charged with receiving and disbursing funds
+77627,treasurership,the position of treasurer
+77628,treasury,the government department responsible for collecting and managing and spending public revenues
+77629,treasury,a depository (a room or building) where wealth and precious objects can be kept safely
+77630,treasury exchequer,the funds of a government or institution or individual
+77631,treasury_stock treasury_shares reacquired_stock,stock that has been bought back by the issuing corporation and is available for retirement or resale; it is issued but not outstanding; it cannot vote and pays no dividends
+77632,treat,an occurrence that causes special pleasure or delight
+77633,treatise,a formal exposition
+77634,treatment,a manner of dealing with something artistically; "his treatment of space borrows from Italian architecture"
+77635,treatment handling,the management of someone or something; "the handling of prisoners"; "the treatment of water sewage"; "the right to equal treatment in the criminal justice system"
+77636,treatment intervention,care provided to improve a situation (especially medical procedures or applications that are intended to relieve illness or injury)
+77637,treaty pact accord,a written agreement between two states or sovereigns
+77638,treaty_port,a port in China or Korea or Japan that once was open to foreign trade on the basis of a trading treaty
+77639,treble_clef treble_staff G_clef,a clef that puts the G above middle C on the second line of a staff
+77640,treble_damages,three times the amount that a court would normally find the injured party entitled to
+77641,tree,a tall perennial woody plant having a main trunk and branches forming a distinct elevated crown; includes both gymnosperms and angiosperms
+77642,tree tree_diagram,a figure that branches from a single root; "genealogical tree"
+77643,tree_cotton Gossypium_arboreum,East Indian shrub cultivated especially for ornament for its pale yellow to deep purple blossoms
+77644,tree_cricket,pale arboreal American cricket noted for loud stridulation
+77645,tree_farm,a forest (or part of a forest) where trees are grown for commercial use
+77646,tree_fern,any of numerous usually tropical ferns having a thick woody stem or caudex and a crown of large fronds; found especially in Australia and New Zealand; chiefly of the families Cyatheaceae and Marattiaceae but some from Polypodiaceae
+77647,tree_frog tree-frog,any of various Old World arboreal frogs distinguished from true frogs by adhesive suckers on the toes
+77648,tree_heath briar brier Erica_arborea,evergreen treelike Mediterranean shrub having fragrant white flowers in large terminal panicles and hard woody roots used to make tobacco pipes
+77649,tree_heath grass_tree Richea_pandanifolia,gaunt Tasmanian evergreen shrubby tree with slender tapering leaves 3 to 5 feet long
+77650,tree_house,a playhouse built in the branches of a tree
+77651,tree_hugger,derogatory term for environmentalists who support restrictions on the logging industry and the preservation of forests
+77652,tree_lizard Urosaurus_ornatus,a climbing lizard of western United States and northern Mexico
+77653,tree_lupine Lupinus_arboreus,evergreen shrub of the Pacific coast of the United States having showy yellow or blue flowers; naturalized in Australia
+77654,tree_mallow velvetleaf velvet-leaf Lavatera_arborea,arborescent perennial shrub having palmately lobed furry leaves and showy red-purple flowers; southwestern United States
+77655,tree_of_heaven tree_of_the_gods Ailanthus_altissima,deciduous rapidly growing tree of China with foliage like sumac and sweetish fetid flowers; widely planted in United States as a street tree because of its resistance to pollution
+77656,tree_of_knowledge,the biblical tree in the Garden of Eden whose forbidden fruit was tasted by Adam and Eve
+77657,tree_onion Egyptian_onion top_onion Allium_cepa_viviparum,type of perennial onion grown chiefly as a curiosity or for early salad onions; having bulbils that replace the flowers
+77658,tree_shrew,insectivorous arboreal mammal of southeast Asia that resembles a squirrel with large eyes and long sharp snout
+77659,tree_sparrow Passer_montanus,Eurasian sparrow smaller than the house sparrow
+77660,tree_sparrow Spizella_arborea,finch common in winter in the northern U.S.
+77661,tree_squirrel,any typical arboreal squirrel
+77662,tree_surgeon arborist,a specialist in treating damaged trees
+77663,tree_surgery,treatment of damaged or decaying trees
+77664,tree_swallow tree_martin Hirundo_nigricans,of Australia and Polynesia; nests in tree cavities
+77665,tree_swift crested_swift,birds of southeast Asia and East Indies differing from true swifts in having upright crests and nesting in trees
+77666,tree_toad tree_frog tree-frog,arboreal amphibians usually having adhesive disks at the tip of each toe; of southeast Asia and Australia and America
+77667,tree_tobacco mustard_tree Nicotiana_glauca,evergreen South American shrub naturalized in United States; occasionally responsible for poisoning livestock
+77668,tree_tomato tamarillo,South American arborescent shrub having pale pink blossoms followed by egg-shaped reddish-brown edible fruit somewhat resembling a tomato in flavor
+77669,tree_wallaby tree_kangaroo,arboreal wallabies of New Guinea and northern Australia having hind and forelegs of similar length
+77670,treehopper,small leaping insect that sucks juices of branches and twigs
+77671,treelet,a small tree
+77672,treenail trenail trunnel,a wooden peg that is used to fasten timbers in shipbuilding; water causes the peg to swell and hold the timbers fast
+77673,trefoil,an architectural ornament in the form of three arcs arranged in a circle
+77674,trefoil_arch,a pointed arch having cusps in the intrados on either side of the apex
+77675,trek,a journey by ox wagon (especially an organized migration by a group of settlers)
+77676,trek,any long and difficult trip
+77677,trekker,a traveler who makes a long arduous journey (as hiking through mountainous country)
+77678,trellis treillage,latticework used to support climbing plants
+77679,tremble shiver shake,a reflex motion caused by cold or fear or excitement
+77680,trembles milk_sickness,disease of livestock and especially cattle poisoned by eating certain kinds of snakeroot
+77681,tremolite,a white or pale green mineral (calcium magnesium silicate) of the amphibole group used as a form of asbestos
+77682,tremolo,(music) a tremulous effect produced by rapid repetition of a single tone or rapid alternation of two tones
+77683,tremolo,vocal vibrato especially an excessive or poorly controlled one
+77684,tremor,shaking or trembling (usually resulting from weakness or stress or disease)
+77685,tremor earth_tremor microseism,a small earthquake
+77686,tremor shudder,an involuntary vibration (as if from illness or fear)
+77687,trench,any long ditch cut in the ground
+77688,trench,a ditch dug as a fortification having a parapet of the excavated earth
+77689,trench deep oceanic_abyss,a long steep-sided depression in the ocean floor
+77690,trench_coat,a military style raincoat; belted with deep pockets
+77691,trench_fever,marked by pain in muscles and joints and transmitted by lice
+77692,trench_foot immersion_foot,resembling frostbite but without freezing; resulting from exposure to cold and wet
+77693,trench_knife,a knife with a double-edged blade for hand-to-hand fighting
+77694,trench_warfare,a struggle (usually prolonged) between competing entities in which neither side is able to win; "the hope that his superior campaigning skills would make a difference evaporated in the realization that electioneering had become a form of trench warfare"
+77695,trench_warfare,a type of armed combat in which the opposing troops fight from trenches that face each other; "instead of the war ending quickly, it became bogged down in trench warfare"
+77696,trencher,someone who digs trenches
+77697,trencher,a wooden board or platter on which food is served or carved
+77698,trend-setter taste-maker fashion_arbiter,someone who popularizes a new fashion
+77699,trend_analysis,analysis of changes over time
+77700,trend_line,a line on a graph indicating a statistical trend
+77701,trend_setting,the initiating or popularizing of a trend or fashion
+77702,trepan,a drill for cutting circular holes around a center
+77703,trepan trephine,a surgical instrument used to remove sections of bone from the skull
+77704,trepang Holothuria_edulis,of warm coasts from Australia to Asia; used as food especially by Chinese
+77705,trephination,an operation that removes a circular section of bone from the skull
+77706,trepidation,a feeling of alarm or dread
+77707,treponema,spirochete that causes disease in humans (e.g. syphilis and yaws)
+77708,trespass,a wrongful interference with the possession of property (personal property as well as realty), or the action instituted to recover damages
+77709,trespass encroachment violation intrusion usurpation,entry to another's property without right or permission
+77710,trespass_de_bonis_asportatis,an action brought to recover damages from a person who has taken goods or property from its rightful owner
+77711,trespass_on_the_case,an action brought to recover damages from a person whose actions have resulted indirectly in injury or loss; "a person struck by a log as it was thrown onto a road could maintain trespass against the thrower but one who was hurt by stumbling over it could maintain and action on the case"
+77712,trespass_quare_clausum_fregit,the defendant unlawfully enters the land of the plaintiff
+77713,trespass_viet_armis,trespass with force and arms resulting in injury to another's person or property
+77714,trestle,a supporting tower used to support a bridge
+77715,trestle,sawhorses used in pairs to support a horizontal tabletop
+77716,trestle_bridge,a bridge supported by trestlework
+77717,trestle_table,a table supported on trestles
+77718,trestlework,a supporting structure composed of a system of connected trestles; for a bridge or pier or scaffold e.g.
+77719,trews,(used in the plural) tight-fitting trousers; usually of tartan
+77720,trey three,one of four playing cards in a deck having three pips
+77721,tri-chad,a chad that is incompletely removed and still attached at three corners
+77722,tri-iodothyronine,thyronine with three iodine atoms added
+77723,triage,sorting and allocating aid on the basis of need for or likely benefit from medical treatment or food
+77724,trial,(sports) a preliminary competition to determine qualifications; "the trials for the semifinals began yesterday"
+77725,trial,(law) the determination of a person's innocence or guilt by due process of law; "he had a fair trial and the jury found him guilty"; "most of these complaints are settled before they go to trial"
+77726,trial trial_run test tryout,trying something to find out about it; "a sample for ten days free trial"; "a trial of progesterone failed to relieve the pain"
+77727,trial tribulation visitation,an annoying or frustrating or catastrophic event; "his mother-in-law's visits were a great trial for him"; "life is full of tribulations"; "a visitation of the plague"
+77728,trial_and_error,experimenting until a solution is found
+77729,trial_attorney trial_lawyer,a lawyer who specializes in defending clients before a court of law
+77730,trial_balance,a balance of debits and credits in double-entry bookkeeping; drawn up to test their equality
+77731,trial_balloon,a test of public opinion
+77732,trial_balloon,a balloon sent up to test air currents
+77733,trial_court,the first court before which the facts of a case are decided
+77734,trial_judge,a judge in a trial court
+77735,trial_period test_period,a period of time during which someone or something is tested
+77736,triamcinolone Aristocort Aristopak Kenalog,a synthetic corticosteroid (trade names Aristocort or Aristopak or Kenalog) used as an anti-inflammatory agent
+77737,triangle,something approximating the shape of a triangle; "the coastline of Chile and Argentina and Brazil forms two legs of a triangle"
+77738,triangle,any of various triangular drafting instruments used to draw straight lines at specified angles
+77739,triangle,a percussion instrument consisting of a metal bar bent in the shape of an open triangle
+77740,triangle trigon trilateral,a three-sided polygon
+77741,triangular_prism,a prism whose bases are triangles
+77742,triangularity,the property of being shaped like a triangle
+77743,triangulation,a trigonometric method of determining the position of a fixed point from the angles to it from two fixed points a known distance apart; useful in navigation
+77744,triangulation,a method of surveying; the area is divided into triangles and the length of one side and its angles with the other two are measured, then the lengths of the other sides can be calculated
+77745,triazine,any of three isomeric compounds having three carbon and three nitrogen atoms in a six-membered ring
+77746,triazolam Halcion,a form of benzodiazepine (trade name Halcion) frequently prescribed as a sleeping pill; usually given to people who have trouble falling asleep
+77747,tribadism,a form of lesbianism that simulates heterosexual intercourse
+77748,tribal_society,a society with the social organization of a tribe
+77749,tribalism,the state of living together in tribes
+77750,tribalism,the beliefs of a tribal society
+77751,tribalization tribalisation,the act of making tribal; unification on a tribal basis
+77752,tribasic_acid,an acid containing three replaceable hydrogen atoms per molecule
+77753,tribe,(biology) a taxonomic category between a genus and a subfamily
+77754,tribe federation_of_tribes,a federation (as of American Indians)
+77755,tribe folk,a social division of (usually preliterate) people
+77756,tribesman,someone who lives in a tribe
+77757,tribologist,a specialist in tribology
+77758,tribology,the branch of engineering that deals with the interaction of surfaces in relative motion (as in bearings or gears): their design and friction and wear and lubrication
+77759,tribromoethanol tribromoethyl_alcohol,an intravenous anesthetic
+77760,tribune,(ancient Rome) an official elected by the plebeians to protect their interests
+77761,tribune,the apse of a Christian church that contains the bishop's throne
+77762,tribuneship,the position of tribune
+77763,tribute,payment by one nation for protection by another
+77764,tribute testimonial,something given or done as an expression of esteem
+77765,tribute_album benefit_album,concept album compiling a performer's work or work supporting some worthy cause
+77766,tributyrin,a bitter oily triglyceride of butyric acid; a form of butyrin
+77767,triceps,any skeletal muscle having three origins (but especially the triceps brachii)
+77768,triceps_brachii musculus_triceps_brachii,the skeletal muscle having three origins that extends the forearm when it contracts
+77769,triceratops,huge ceratopsian dinosaur having three horns and the neck heavily armored with a very solid frill
+77770,trichina Trichinella_spiralis,parasitic nematode occurring in the intestines of pigs and rats and human beings and producing larvae that form cysts in skeletal muscles
+77771,trichinosis trichiniasis myositis_trichinosa,infestation by trichina larvae that are transmitted by eating inadequately cooked meat (especially pork); larvae migrate from the intestinal tract to the muscles where they become encysted
+77772,trichion crinion,point where the hairline meets the midpoint of the forehead
+77773,trichloride,any compound containing three chlorine atoms in each molecule
+77774,trichlormethiazide Naqua,diuretic drug (trade name Naqua) used to treat hypertension
+77775,trichloroacetic_acid trichloracetic_acid,a strong acid made by chlorinating acetic acid
+77776,trichloroethylene trichloroethane TCE,a heavy colorless highly toxic liquid used as a solvent to clean electronic components and for dry cleaning and as a fumigant; causes cancer and liver and lung damage
+77777,trichodesmium,large colonial bacterium common in tropical open-ocean waters; important in carbon and nitrogen fixation
+77778,trichomonad,cause of trichomoniasis in women and cattle and birds
+77779,trichomoniasis,infection of the vagina
+77780,trichopterous_insect trichopteran trichopteron,caddis fly
+77781,trichotillomania,an irresistible urge to pull out your own hair
+77782,trichotomy,being threefold; a classification into three parts or subclasses
+77783,trichroism,pleochroism of a crystal so that it exhibits three different colors when viewed from three different directions
+77784,trichuriasis,infestation by a roundworm; common in tropical areas with poor sanitation
+77785,trick,a period of work or duty
+77786,trick,(card games) in a single round, the sequence of cards played by all the players; the high card is the winner
+77787,trick,an attempt to get you to do something foolish or imprudent; "that offer was a dirty trick"
+77788,trick fast_one,a cunning or deceitful action or device; "he played a trick on me"; "he pulled a fast one and got away with it"
+77789,trick_or_treat,a request by children on Halloween; they pass from door to door asking for goodies and threatening to play tricks on those who refuse
+77790,trickery chicanery chicane guile wile shenanigan,the use of tricks to deceive someone (usually to extract money from them)
+77791,trickery hocus-pocus slickness hanky_panky jiggery-pokery skulduggery skullduggery,verbal misrepresentation intended to take advantage of you in some way
+77792,trickiness,the quality of requiring skill or caution; "these puzzles are famous for their trickiness"
+77793,trickster,a mischievous supernatural being found in the folklore of many primitive people; sometimes distinguished by prodigious biological drives and exaggerated bodily parts
+77794,triclinium,a dining room (especially a dining room containing a dining table with couches along three sides)
+77795,triclinium,a dining table with couches along three sides in ancient Rome
+77796,tricolor tricolour,a flag having three colored stripes (especially the French flag)
+77797,tricolor_television_tube tricolour_television_tube tricolor_tube tricolour_tube,a color television tube in which three primary colors are combined to give the full range of colors
+77798,tricorn tricorne,cocked hat with the brim turned up to form three points
+77799,tricot,a knitted fabric or one resembling knitting
+77800,tricuspid_valve right_atrioventricular_valve,valve with three cusps; situated between the right atrium and the right ventricle; allows blood to pass from atrium to ventricle and closes to prevent backflow when the ventricle contracts
+77801,tricycle trike velocipede,a vehicle with three wheels that is moved by foot pedals
+77802,tricyclic tricyclic_antidepressant tricyclic_antidepressant_drug,an antidepressant drug that acts by blocking the reuptake of norepinephrine and serotonin and thus making more of those substances available to act on receptors in the brain
+77803,trident,a spear with three prongs
+77804,tridymite,a mineral form of silica
+77805,trier,one (as a judge) who examines and settles a case
+77806,trier attempter essayer,one who tries
+77807,trifle,a cold pudding made of layers of sponge cake spread with fruit or jelly; may be decorated with nuts, cream, or chocolate
+77808,trifle triviality,a detail that is considered insignificant
+77809,trifler,one who behaves lightly or not seriously
+77810,trifoliate_orange trifoliata wild_orange Poncirus_trifoliata,small fast-growing spiny deciduous Chinese orange tree bearing sweetly scented flowers and decorative but inedible fruit: used as a stock in grafting and for hedges
+77811,trifoliolate_leaf,having three leaflets
+77812,trifurcation,the act of splitting into three branches
+77813,trigeminal trigeminal_nerve trigeminus nervus_trigeminus fifth_cranial_nerve,the main sensory nerve of the face and motor nerve for the muscles of mastication
+77814,trigeminal_neuralgia tic_douloureux,intense paroxysmal neuralgia along the trigeminal nerve
+77815,trigger,a device that activates or releases or causes something to happen
+77816,trigger induction initiation,an act that sets in motion some course of events
+77817,triggerfish,any of numerous compressed deep-bodied tropical fishes with sandpapery skin and erectile spines in the first dorsal fin
+77818,triglyceride,glyceride occurring naturally in animal and vegetable tissues; it consists of three individual fatty acids bound together in a single large molecule; an important energy source forming much of the fat stored by the body
+77819,trigon,a triangular lyre of ancient Greece and Rome
+77820,trigonometric_function circular_function,function of an angle expressed as a ratio of the length of the sides of right-angled triangle containing the angle
+77821,trigonometrician,a mathematician specializing in trigonometry
+77822,trigonometry trig,the mathematics of triangles and trigonometric functions
+77823,trigram,a word that is written with three letters in an alphabetic writing system
+77824,triiodothyronine liothyronine T,thyroid hormone similar to thyroxine but with one less iodine atom per molecule and produced in smaller quantity; exerts the same biological effects as thyroxine but is more potent and briefer
+77825,trill,the articulation of a consonant (especially the consonant `r') with a rapid flutter of the tongue against the palate or uvula; "he pronounced his R's with a distinct trill"
+77826,trill shake,a note that alternates rapidly with another note a semitone above it
+77827,trillion one_million_million 1000000000000,the number that is represented as a one followed by 12 zeros; "in England they call a trillion a billion"
+77828,trillion one_million_million_million,the number that is represented as a one followed by 18 zeros; "in England they call a quintillion a trillion"
+77829,trillium wood_lily wake-robin,any liliaceous plant of the genus Trillium having a whorl of three leaves at the top of the stem with a single three-petaled flower
+77830,trilobite,an extinct arthropod that was abundant in Paleozoic times; had an exoskeleton divided into three parts
+77831,trilogy,a set of three literary or dramatic works related in subject or theme
+77832,trim,attitude of an aircraft in flight when allowed to take its own orientation
+77833,trim trimming clipping,cutting down to the desired size or shape
+77834,trim trimness,a state of arrangement or appearance; "in good trim"
+77835,trimaran,a fast sailboat with 3 parallel hulls
+77836,trimer,a polymer (or a molecule of a polymer) consisting of three identical monomers
+77837,trimester,a period of three months; especially one of the three three-month periods into which human pregnancy is divided
+77838,trimester,one of three divisions of an academic year
+77839,trimipramine Surmontil,tricyclic antidepressant drug (trade name Surmontil) used to treat depression and anxiety and (sometimes) insomnia
+77840,trimmer,a machine that trims timber
+77841,trimmer trimmer_joist,joist that receives the end of a header in floor or roof framing in order to leave an opening for a staircase or chimney etc.
+77842,trimmer trimming_capacitor,capacitor having variable capacitance; used for making fine adjustments
+77843,trimmer_arch,an arch built between trimmers in a floor (to support the weight of a hearth)
+77844,trimming,the act of adding decoration; "the children had to be in bed before it was time for the trimming of the tree"
+77845,trimming trim passementerie,a decoration or adornment on a garment; "the trimming on a hat"; "the trim on a shirt"
+77846,trine_immersion,baptism by immersion three times (in the names in turn of the Trinity)
+77847,trinketry,trinkets and other ornaments of dress collectively
+77848,trio,three performers or singers who perform together
+77849,trio,a musical composition for three performers
+77850,trio threesome triad trinity,three people considered as a unit
+77851,trio triad triplet triple,a set of three similar things considered as a unit
+77852,triode,a thermionic vacuum tube having three electrodes; fluctuations of the charge on the grid control the flow from cathode to anode which makes amplification possible
+77853,triolein olein,a naturally occurring glyceride of oleic acid that is found in fats and oils
+77854,triose,any monosaccharide sugar containing three atoms of carbon per molecule
+77855,trioxide,an oxide containing three atoms of oxygen in the molecule
+77856,trip,a hallucinatory experience induced by drugs; "an acid trip"
+77857,trip,a journey for some purpose (usually including the return); "he took a trip to the shopping center"
+77858,trip,a light or nimble tread; "he heard the trip of women's feet overhead"
+77859,trip head_trip,an exciting or stimulating experience
+77860,trip trip-up stumble misstep,an unintentional but embarrassing blunder; "he recited the whole poem without a single trip"; "he arranged his robes to avoid a trip-up later"; "confusion caused his unfortunate misstep"
+77861,trip_line,a light rope used in lumbering to free a dog hook from a log at a distance
+77862,trip_wire,a small military force that serves as a first line of defense; if they become engaged in hostilities it will trigger the intervention of stronger military forces
+77863,trip_wire,a wire stretched close to the ground that activates something (a trap or camera or weapon) when tripped over
+77864,tripalmitin glycerol_tripalmitate,a triglyceride of palmitic acid
+77865,tripe,lining of the stomach of a ruminant (especially a bovine) used as food
+77866,triphammer,a massive power hammer; raised by a cam until released to fall under gravity
+77867,triphosphopyridine,a pyridine ring with three phosphorus groups
+77868,triphosphopyridine_nucleotide,a coenzyme of several enzymes
+77869,triphosphoric_acid,an acid that is a partial anhydride of three molecules of phosphoric acid; known chiefly in the form of its salts and esters
+77870,triple,a quantity that is three times as great as another
+77871,triple three-base_hit three-bagger,a base hit at which the batter stops safely at third base
+77872,triple-crown_season,a season of baseball during which a player wins the triple crown
+77873,triple-spacing,typing that leaves two lines blank between lines of typing
+77874,triple_cream triple_creme,fresh soft French cheese containing at least 72% fat
+77875,triple_crown,(horse racing) a title won by a horse that can win the Kentucky Derby and the Belmont Stakes and the Preakness
+77876,triple_crown,(baseball) an unofficial title won by a batter who leads the league in hitting average, runs batted in, and home runs
+77877,triple_jump hop-step-and-jump,an athletic contest in which a competitor must perform successively a hop and a step and a jump in continuous movement
+77878,triple_play,the act of getting three players out on one play
+77879,triple_sec,type of curacao having higher alcoholic content
+77880,triple_time,musical time with three beats in each bar
+77881,triplet,one of three offspring born at the same time from the same pregnancy
+77882,triplet_code,the normal version of the genetic code in which a sequence of three nucleotides codes for the synthesis of a specific amino acid
+77883,tripletail,large food fish of warm waters worldwide having long anal and dorsal fins that with a caudal fin suggest a three-lobed tail
+77884,triplicate,one of three copies; any of three things that correspond to one another exactly
+77885,triplicity,the property of being triple
+77886,triplicity trigon,(astrology) one of four groups of the zodiac where each group consists of three signs separated from each other by 120 degrees
+77887,tripling,increase by a factor of three
+77888,tripod,a three-legged rack used for support
+77889,tripos,final honors degree examinations at Cambridge University
+77890,tripper,(slang) someone who has taken a psychedelic drug and is undergoing hallucinations
+77891,tripper trip,a catch mechanism that acts as a switch; "the pressure activates the tripper and releases the water"
+77892,triptych,art consisting of a painting or carving (especially an altarpiece) on three panels (usually hinged together)
+77893,triquetral triquetral_bone os_triquetrum cuneiform_bone pyramidal_bone,a wrist bone that articulates with the pisiform and hamate and lunate bones
+77894,trireme,ancient Greek or Roman galley or warship having three tiers of oars on each side
+77895,trisaccharide,any of a variety of carbohydrates that yield three monosaccharide molecules on complete hydrolysis
+77896,triskaidekaphobia,a morbid fear of the number 13
+77897,triskelion triskele,a figure consisting of three stylized human arms or legs (or three bent lines) radiating from a center
+77898,trismus,prolonged spasm of the jaw muscles
+77899,trisodium_phosphate trisodium_orthophosphate tribasic_sodium_phosphate,the tertiary phosphate of sodium used as a builder in soaps and detergents
+77900,trisomy,chrosomal abnormality in which there is one more than the normal number of chromosomes in a cell
+77901,tristearin glycerol_tristearate,a triglyceride of stearic acid
+77902,trisyllable,a word having three syllables
+77903,tritanopia blue-blindness,rare form of dichromacy characterized by a lowered sensitivity to blue light resulting in an inability to distinguish blue and yellow
+77904,triteness staleness,unoriginality as a result of being dull and hackneyed
+77905,tritheism,(Christianity) the heretical belief that the Father and the Son and the Holy Spirit are three separate gods
+77906,tritheist,someone (not an orthodox Christian) who believes that the Father and Son and Holy Ghost are three separate gods
+77907,tritium,a radioactive isotope of hydrogen; atoms of tritium have three times the mass of ordinary hydrogen atoms
+77908,triton,tropical marine gastropods having beautifully colored spiral shells
+77909,triumph,the exultation of victory
+77910,triumphal_arch,a monumental archway; usually they are built to commemorate some notable victory
+77911,triumvir,one of a group of three sharing public administration or civil authority especially in ancient Rome
+77912,triumvirate,a group of three men responsible for public administration or civil authority
+77913,trivet,a three-legged metal stand for supporting a cooking vessel in a hearth
+77914,trivet,a stand with short feet used under a hot dish on a table
+77915,triviality trivia trifle small_beer,something of small importance
+77916,trivium,(Middle Ages) an introductory curriculum at a medieval university involving grammar and logic and rhetoric; considered to be a triple way to eloquence
+77917,trochanter,one of the bony prominences developed near the upper extremity of the femur to which muscles are attached
+77918,trochee,a metrical unit with stressed-unstressed syllables
+77919,trochlear trochlear_nerve trochlearis fourth_cranial_nerve,either of the two cranial nerves on either side that control the superior oblique muscles of the eyes
+77920,trogon,forest bird of warm regions of the New World having brilliant lustrous plumage and long tails
+77921,troika,a modern Russian triumvirate
+77922,troika,a Russian carriage pulled by three horses abreast
+77923,trojan trojan_horse,a program that appears desirable but actually contains something harmful; "the contents of a trojan can be a virus or a worm"; "when he downloaded the free game it turned out to be a trojan horse"
+77924,troll,(Scandanavian folklore) a supernatural creature (either a dwarf or a giant) that is supposed to live in caves or in the mountains
+77925,troll,a fisherman's lure that is used in trolling; "he used a spinner as his troll"
+77926,troll trolling,angling by drawing a baited line through the water
+77927,trolley_line,a transit line using streetcars or trolley buses
+77928,trolleybus trolley_coach trackless_trolley,a passenger bus with an electric motor that draws power from overhead wires
+77929,trombiculiasis,infestation with chiggers
+77930,trombiculid,mite that as nymph and adult feeds on early stages of small arthropods but whose larvae are parasitic on terrestrial vertebrates
+77931,trombidiid,mite that in all stages feeds on other arthropods
+77932,trombone,a brass instrument consisting of a long tube whose length can be varied by a U-shaped slide
+77933,trombonist trombone_player,a musician who plays the trombone
+77934,trompe_l'oeil,a painting rendered in such great detail as to deceive the viewer concerning its reality
+77935,trompillo white_horse_nettle prairie_berry purple_nightshade silverleaf_nightshade silver-leaved_nightshade silver-leaved_nettle Solanum_elaeagnifolium,weedy nightshade with silvery foliage and violet or blue or white flowers; roundish berry widely used to curdle milk; central United States to South America
+77936,troop,a cavalry unit corresponding to an infantry company
+77937,troop,a group of soldiers
+77938,troop flock,an orderly crowd; "a troop of children"
+77939,troop scout_troop scout_group,a unit of Girl or Boy Scouts
+77940,troop_carrier troop_transport,any land or sea or air vehicle designed to carry troops
+77941,troop_movement,movement of military units to a new location
+77942,trooper,a mounted police officer
+77943,trooper state_trooper,a state police officer
+77944,troopship,ship for transporting troops
+77945,trope figure_of_speech figure image,language used in a figurative or nonliteral sense
+77946,trophobiosis,a symbiotic relation in which one organism protects the other in return for some kind of food product
+77947,trophoblast,the membrane that forms the wall of the blastocyst in early development; aids implantation in the uterine wall; "after implantation of the blastocyst in the uterine wall the trophoblast divides into two layers, the chorion and the placenta"
+77948,trophoblastic_cancer,malignant neoplasm of the uterus derived from the epithelium of the chorion
+77949,trophotropism,an orienting response to food
+77950,trophozoite,a sporozoan in the active feeding stage of its life cycle
+77951,trophy,an award for success in war or hunting
+77952,trophy prize,something given as a token of victory
+77953,trophy_case,a case in which to display trophies
+77954,trophy_wife,a wife who is an attractive young woman; seldom the first wife of an affluent older man; "his trophy wife was an asset to his business"
+77955,tropic,either of two parallels of latitude about 23.5 degrees to the north and south of the equator representing the points farthest north and south at which the sun can shine directly overhead and constituting the boundaries of the Torrid Zone or tropics
+77956,tropic_bird tropicbird boatswain_bird,mostly white web-footed tropical seabird often found far from land
+77957,tropical_medicine,the branch of medicine that deals with the diagnosis and treatment of diseases that are found most often in tropical regions
+77958,tropical_pitcher_plant,any of several tropical carnivorous shrubs or woody herbs of the genus Nepenthes
+77959,tropical_prawn,edible tropical and warm-water prawn
+77960,tropical_rain_forest selva,a rain forest in a tropical area
+77961,tropism,an involuntary orienting response; positive or negative reaction to a stimulus source
+77962,troponym manner_name,a word that denotes a manner of doing something; "`march' is a troponym of `walk'"
+77963,troponymy,the semantic relation of being a manner of does something
+77964,troponymy troponomy,the place names of a region or a language considered collectively
+77965,tropopause,the region of discontinuity between the troposphere and the stratosphere
+77966,troposphere,the lowest atmospheric layer; from 4 to 11 miles high (depending on latitude)
+77967,trot,a gait faster than a walk; diagonally opposite legs strike the ground together
+77968,trotter,foot of a pig or sheep especially one used as food
+77969,trotting_horse trotter,a horse trained to trot; especially a horse trained for harness racing
+77970,trou-de-loup,a sloping pit with a stake in the middle used as an obstacle to the enemy
+77971,trouble,an unwanted pregnancy; "he got several girls in trouble"
+77972,trouble,an event causing distress or pain; "what is the trouble?"; "heart trouble"
+77973,trouble difficulty,an effort that is inconvenient; "I went to a lot of trouble"; "he won without any trouble"; "had difficulty walking"; "finished the test only with great difficulty"
+77974,trouble problem,a source of difficulty; "one trouble after another delayed the job"; "what's the problem?"
+77975,trouble_spot,a place where trouble exists or occurs regularly
+77976,troublemaker trouble_maker troubler mischief-maker bad_hat,someone who deliberately stirs up trouble
+77977,troubleshooter trouble_shooter,a worker whose job is to locate and fix sources of trouble (especially in mechanical devices)
+77978,troublesomeness inconvenience worriment,a difficulty that causes anxiety
+77979,trough,a narrow depression (as in the earth or between ocean waves or in the ocean bed)
+77980,trough,a long narrow shallow receptacle
+77981,trouper,a person who is reliable and uncomplaining and hard working
+77982,trouser,a garment (or part of a garment) designed for or relating to trousers; "in his trouser's pocket"; "he ripped his left trouser on the fence"
+77983,trouser_cuff,a cuff on the bottoms of trouser legs
+77984,trouser_press pants_presser,a home appliance in which trousers can be hung and the wrinkles pressed out
+77985,trousers pair_of_trousers pant,(usually in the plural) a garment extending from the waist to the knee or ankle, covering each leg separately; "he had a sharp crease in his trousers"
+77986,trousseau,the personal outfit of a bride; clothes and accessories and linens
+77987,trout,flesh of any of several primarily freshwater game and food fishes
+77988,trout,any of various game and food fishes of cool fresh waters mostly smaller than typical salmons
+77989,trowel,a small hand tool with a handle and flat metal blade; used for scooping or spreading plaster or similar materials
+77990,troy troy_weight,a system of weights used for precious metals and gemstones; based on a 12-ounce pound and an ounce of 480 grains
+77991,troy_pound apothecaries'_pound,an apothecary weight equal to 12 ounces or 373.242 grams
+77992,troy_unit,any of the unit of the troy system of weights
+77993,truancy hooky,failure to attend (especially school)
+77994,truant hooky_player,one who is absent from school without permission
+77995,truck motortruck,an automotive vehicle suitable for hauling
+77996,truck_bed,the floor or bottom of a wagon or truck or trailer
+77997,truck_dealer,a firm that sells and buys trucks
+77998,truck_farm truck_garden,a farm where vegetables are grown for market
+77999,truck_farming,growing vegetables for the market
+78000,truck_stop,a roadside service station (and restaurant) that caters to truck drivers
+78001,truck_traffic,trucks coming and going
+78002,truckage,a fee charged for transporting goods by truckage
+78003,trucking_company,a company that ships goods or possessions by truck
+78004,trucking_industry,an industry that provides transportation for commercial products
+78005,truckling,the act of obeying meanly (especially obeying in a humble manner or for unworthy reasons)
+78006,truculence truculency,obstreperous and defiant aggressiveness
+78007,trudge,a long difficult walk
+78008,trudger plodder slogger,someone who walks in a laborious heavy-footed manner
+78009,true,proper alignment; the property possessed by something that is in correct or proper alignment; "out of true"
+78010,true_anomaly,the angular distance of a point in an orbit past the point of periapsis measured in degrees
+78011,true_bill,an indictment endorsed by a grand jury
+78012,true_blackberry Rubus_fruticosus,the true blackberry of Europe as well as any of numerous varieties having sweet edible black or dark purple berries
+78013,true_bug,any of various insects of the order Hemiptera and especially of the suborder Heteroptera
+78014,true_frog ranid,insectivorous usually semiaquatic web-footed amphibian with smooth moist skin and long hind legs
+78015,true_fungus,any of numerous fungi of the division Eumycota
+78016,true_laurel bay bay_laurel bay_tree Laurus_nobilis,small Mediterranean evergreen tree with small blackish berries and glossy aromatic leaves used for flavoring in cooking; also used by ancient Greeks to crown victors
+78017,true_lobster,large edible marine crustaceans having large pincers on the first pair of legs
+78018,true_mahogany Cuban_mahogany Dominican_mahogany Swietinia_mahogani,mahogany tree of West Indies
+78019,true_marmoset,a marmoset
+78020,true_pepper pepper_vine,any of various shrubby vines of the genus Piper
+78021,true_rib,one of the first seven ribs in a human being which attach to the sternum
+78022,true_sago_palm Metroxylon_sagu,Malaysian palm whose pithy trunk yields sago--a starch used as a food thickener and fabric stiffener; Malaya to Fiji
+78023,true_slime_mold acellular_slime_mold plasmodial_slime_mold myxomycete,a slime mold of the class Myxomycetes
+78024,true_toad,tailless amphibian similar to a frog but more terrestrial and having drier warty skin
+78025,true_vocal_cord true_vocal_fold inferior_vocal_cord inferior_vocal_fold,either of the two lower vocal folds that come together to form the glottis; produce a vocal tone when they are approximated and air from the lungs passes between them
+78026,trueness,exactness of adjustment; "I marveled at the trueness of his aim"
+78027,truffle chocolate_truffle,creamy chocolate candy
+78028,truffle earthnut,edible subterranean fungus of the genus Tuber
+78029,truffle earthnut earth-ball,any of various highly prized edible subterranean fungi of the genus Tuber; grow naturally in southwestern Europe
+78030,truism,an obvious truth
+78031,trump,(card games) the suit that has been declared to rank above all other suits for the duration of the hand; "clubs were declared trumps"; "a trump can take a trick even when a card of a different suit is led"
+78032,trump trump_card,a playing card in the suit that has been declared trumps; "the ace of trumps is a sure winner"
+78033,trumpet_arch,a conical squinch
+78034,trumpet_creeper trumpet_vine Campsis_radicans,a North American woody vine having pinnate leaves and large red trumpet-shaped flowers
+78035,trumpet_honeysuckle coral_honeysuckle trumpet_flower trumpet_vine Lonicera_sempervirens,evergreen North American honeysuckle vine having coral-red or orange flowers
+78036,trumpet_section,the section of a band or orchestra that plays trumpets or cornets
+78037,trumpeter,large gregarious crane-like bird of the forests of South America having glossy black plumage and a loud prolonged cry; easily domesticated
+78038,trumpeter cornetist,a musician who plays the trumpet or cornet
+78039,trumpeter trumpeter_swan Cygnus_buccinator,large pure white wild swan of western North America having a sonorous cry
+78040,trumpetfish Aulostomus_maculatus,tropical Atlantic fish with a long snout; swims snout down
+78041,trumpetwood trumpet-wood trumpet_tree snake_wood imbauba Cecropia_peltata,tropical American tree with large peltate leaves and hollow stems
+78042,truncated_cone,a frustum formed from a cone
+78043,truncated_pyramid,a frustum formed from a pyramid
+78044,truncation,the replacement of an edge or solid angle (as in cutting a gemstone) by a plane (especially by a plane that is equally inclined to the adjacent faces)
+78045,truncation,the act of cutting short; "it is an obvious truncation of the verse"; "they were sentenced to a truncation of their limbs"
+78046,truncation_error,(mathematics) a miscalculation that results from cutting off a numerical calculation before it is finished
+78047,truncheon nightstick baton billy billystick billy_club,a short stout club used primarily by policemen
+78048,trundle,small wheel or roller
+78049,trundle_bed trundle truckle_bed truckle,a low bed to be slid under a higher bed
+78050,trunk,luggage consisting of a large strong case used when traveling or for storage
+78051,trunk tree_trunk bole,the main stem of a tree; usually covered with bark; the bole is usually the part that is commercially useful for lumber
+78052,trunk_hose,puffed breeches of the 16th and 17th centuries usually worn over hose
+78053,trunk_lid,hinged lid for a trunk
+78054,trunk_line,a telephone line connecting two exchanges directly
+78055,trunk_line trunk_route,line that is the main route on a railway
+78056,truss,(medicine) a bandage consisting of a pad and belt; worn to hold a hernia in place by pressure
+78057,truss,a framework of beams (rafters, posts, struts) forming a rigid structure that supports a roof or bridge or other structure
+78058,truss_bridge,a bridge supported by trusses
+78059,trust,something (as property) held by one party (the trustee) for the benefit of another (the beneficiary); "he is the beneficiary of a generous trust set up by his father"
+78060,trust corporate_trust combine cartel,a consortium of independent organizations formed to limit competition by controlling the production and distribution of a product or service; "they set up the trust in the hope of gaining a monopoly"
+78061,trust trustingness trustfulness,the trait of believing in the honesty and reliability of others; "the experience destroyed his trust and personal dignity"
+78062,trust_busting,(law) government activities seeking to dissolve corporate trusts and monopolies (especially under the United States antitrust laws)
+78063,trust_company trust_corporation,an organization (usually with a commercial bank) that is engaged as a trustee or fiduciary or agent in handling trust funds or estates of custodial arrangements or stock transfers or related services
+78064,trust_deed deed_of_trust,a written instrument legally conveying property to a trustee often used to secure an obligation such as a mortgage or promissory note
+78065,trust_fund,a fund held in trust
+78066,trust_territory trusteeship,a dependent country; administered by another country under the supervision of the United Nations
+78067,trustbuster,a federal agent who engages in trust busting
+78068,trustee legal_guardian,a person (or institution) to whom legal title to property is entrusted to use for another's benefit
+78069,trustee-beneficiary_relation,the responsibility of a trustee to act in the best interests of the beneficiary
+78070,trusteeship,the position of trustee
+78071,trustworthiness trustiness,the trait of deserving trust and confidence
+78072,trusty,a convict who is considered trustworthy and granted special privileges
+78073,truth,a fact that has been verified; "at last he knew the truth"; "the truth is that he didn't want to do it"
+78074,truth the_true verity trueness,conformity to reality or actuality; "they debated the truth of the proposition"; "the situation brought home to us the blunt truth of the military threat"; "he was famous for the truth of his portraits"; "he turned to religion in his search for eternal verities"
+78075,truth true_statement,a true statement; "he told the truth"; "he thought of answering with the truth but he knew they wouldn't believe it"
+78076,truth_serum truth_drug,an intravenous anesthetic drug that has a hypnotic effect; induces relaxation and weakens inhibitions; is believed to induce people to talk freely
+78077,truthfulness,the quality of being truthful
+78078,try_square,a square having a metal ruler set at right angles to another straight piece
+78079,trypsin,an enzyme of pancreatic origin; catalyzes the hydrolysis of proteins to smaller polypeptide units
+78080,trypsinogen,inactive precursor of trypsin; a substance secreted by the pancreas and converted to active trypsin by enterokinase in the small intestine
+78081,tryptophan tryptophane,an amino acid that occurs in proteins; is essential for growth and normal metabolism; a precursor of niacin
+78082,tryst rendezvous,a date; usually with a member of the opposite sex
+78083,tsetse_fly tsetse tzetze_fly tzetze glossina,bloodsucking African fly; transmits sleeping sickness etc.
+78084,tsoris,(Yiddish) trouble and suffering
+78085,tsunami,a cataclysm resulting from a destructive sea wave caused by an earthquake or volcanic eruption; "a colossal tsunami destroyed the Minoan civilization in minutes"
+78086,tsuris,(Yiddish) aggravating trouble; "the frustrating tsuris he subjected himself to"
+78087,tsutsugamushi_disease scrub_typhus,transmitted by larval mites and widespread in Asia
+78088,tuatara Sphenodon_punctatum,only extant member of the order Rhynchocephalia of large spiny lizard-like diapsid reptiles of coastal islands off New Zealand
+78089,tub tubful,the amount that a tub will hold; "a tub of water"
+78090,tub vat,a large open vessel for holding or storing liquids
+78091,tub-thumper,a noisy and vigorous or ranting public speaker
+78092,tub_gurnard yellow_gurnard Trigla_lucerna,a kind of gurnard
+78093,tubal_ligation,a sterilization procedure with women; both Fallopian tubes are tied in two places and the tubes removed in between the ligations
+78094,tubal_pregnancy,ectopic pregnancy in a Fallopian tube
+78095,tube tube-shaped_structure,(anatomy) any hollow cylindrical body structure
+78096,tube tubing,conduit consisting of a long hollow object (usually cylindrical) used to hold and conduct objects or liquids or gases
+78097,tube vacuum_tube thermionic_vacuum_tube thermionic_tube electron_tube thermionic_valve,electronic device consisting of a system of electrodes arranged in an evacuated glass or metal envelope
+78098,tube_foot,tentacular tubular process of most echinoderms (starfish and sea urchins and holothurians) having a sucker at the end and used for e.g. locomotion and respiration
+78099,tubeless tubeless_tire,pneumatic tire not needing an inner tube to be airtight
+78100,tuber,a fleshy underground stem or root serving for reproductive and food storage
+78101,tubercle,a swelling that is the characteristic lesion of tuberculosis
+78102,tubercle_bacillus Mycobacterium_tuberculosis,cause of tuberculosis
+78103,tuberculin,a sterile liquid containing a purified protein derivative of the tuberculosis bacterium; used in the diagnosis of tuberculosis
+78104,tuberculin_test tuberculin_skin_test,a skin test to determine past or present infection with the tuberculosis bacterium; based on hypersensitivity of the skin to tuberculin
+78105,tuberculoid_leprosy,leprosy characterized by tumors in the skin and cutaneous nerves
+78106,tuberculosis TB T.B.,infection transmitted by inhalation or ingestion of tubercle bacilli and manifested in fever and small lesions (usually in the lungs but in various other parts of the body in acute stages)
+78107,tuberose Polianthes_tuberosa,a tuberous Mexican herb having grasslike leaves and cultivated for its spikes of highly fragrant lily-like waxy white flowers
+78108,tuberosity tubercle eminence,a protuberance on a bone especially for attachment of a muscle or ligament
+78109,tuberous_begonia,any of numerous begonias having large tuberous roots
+78110,tuberous_plant,plant growing from a tuber
+78111,tubocurarine curare,a toxic alkaloid found in certain tropical South American trees that is a powerful relaxant for striated muscles; "curare acts by blocking cholinergic transmission at the myoneural junction"
+78112,tubular_cavity,a cavity having the shape of a tube
+78113,tubule,a small tube
+78114,tuck,eatables (especially sweets)
+78115,tuck,(sports) a bodily position adopted in some sports (such as diving or skiing) in which the knees are bent and the thighs are drawn close to the chest
+78116,tuck,a narrow flattened pleat or fold that is stitched in place
+78117,tuck_box,a box for storing eatables (especially at boarding school)
+78118,tuck_shop,a candy store in Great Britain
+78119,tucker,a sewer who tucks
+78120,tucker,a detachable yoke of linen or lace worn over the breast of a low-cut dress
+78121,tucker-bag,a bag used for carrying food; "the swagman filled his tuckerbag"
+78122,tudung,a scarf worn around the head by Muslim women in Malaysia; conceals the hair but not the face
+78123,tufa calc-tufa,a soft porous rock consisting of calcium carbonate deposited from springs rich in lime
+78124,tuff tufa,hard volcanic rock composed of compacted volcanic ash
+78125,tuft,a bunch of feathers or hair
+78126,tuft tussock,a bunch of hair or feathers or growing grass
+78127,tufted_centaury Centaurium_scilloides,tufted perennial of western Europe and Azores having bright pink to white flowers
+78128,tufted_gentian Gentianopsis_holopetala Gentiana_holopetala,small blue-flowered fringed gentian of Sierra Nevada mountains
+78129,tufted_puffin Lunda_cirrhata,northern Pacific puffin having a large yellow plume over each eye
+78130,tufted_titmouse Parus_bicolor,crested titmouse of eastern and midwestern United States
+78131,tufted_vetch bird_vetch Calnada_pea Vicia_cracca,common perennial climber of temperate regions of Eurasia and North America having dense elongate clusters of flowers
+78132,tug jerk,a sudden abrupt pull
+78133,tug-of-war,a contest in which teams pull of opposite ends of a rope; the team dragged across a central line loses
+78134,tug-of-war,any hard struggle between equally matched groups
+78135,tugboat tug towboat tower,a powerful small boat designed to pull or push larger ships
+78136,tugrik tughrik,the basic unit of money in Mongolia
+78137,tuille,armor plate that protects the hip and thigh
+78138,tuition tuition_fee,a fee paid for instruction (especially for higher education); "tuition and room and board were more than $25,000"
+78139,tularemia tularaemia rabbit_fever deer_fly_fever yatobyo,a highly infectious disease of rodents (especially rabbits and squirrels) and sometimes transmitted to humans by ticks or flies or by handling infected animals
+78140,tulip,any of numerous perennial bulbous herbs having linear or broadly lanceolate leaves and usually a single showy flower
+78141,tulip_bed,a flowerbed in which tulips are growing
+78142,tulip_orchid Encyclia_citrina Cattleya_citrina,Mexican epiphytic orchid with glaucous grey-green leaves and lemon- to golden-yellow flowers appearing only partially opened; sometimes placed in genus Cattleya
+78143,tulip_tree tulip_poplar yellow_poplar canary_whitewood Liriodendron_tulipifera,tall North American deciduous timber tree having large tulip-shaped greenish yellow flowers and conelike fruit; yields soft white woods used especially for cabinet work
+78144,tulipwood,the variegated or showily striped ornamental wood of various tulipwood trees
+78145,tulipwood true_tulipwood whitewood white_poplar yellow_poplar,light easily worked wood of a tulip tree; used for furniture and veneer
+78146,tulipwood_tree,any of various trees yielding variously colored woods similar to true tulipwood
+78147,tulle,a fine (often starched) net used for veils or tutus or gowns
+78148,tumble,an acrobatic feat of rolling or turning end over end
+78149,tumble-dryer tumble_drier,a clothes dryer that spins wet clothes inside a cylinder with heated air
+78150,tumblebug,any of various dung beetles
+78151,tumbler,a gymnast who performs rolls and somersaults and twists etc.
+78152,tumbler,a movable obstruction in a lock that must be adjusted to a given position (as by a key) before the bolt can be thrown
+78153,tumbler,a glass with a flat bottom but no handle or stem; originally had a round bottom
+78154,tumbleweed,any plant that breaks away from its roots in autumn and is driven by the wind as a light rolling mass
+78155,tumbleweed Amaranthus_albus Amaranthus_graecizans,bushy plant of western United States
+78156,tumbrel tumbril,a farm dumpcart for carrying dung; carts of this type were used to carry prisoners to the guillotine during the French Revolution
+78157,tumefaction,the process of tumefying; the organic process whereby tissue becomes swollen by the accumulation of fluid within it
+78158,tumescence,tumidity resulting from the presence of blood or other fluid in the tissues
+78159,tumidity tumidness,slight swelling of an organ or part
+78160,tumor tumour neoplasm,an abnormal new mass of tissue that serves no purpose
+78161,tumor_necrosis_factor tumour_necrosis_factor TNF,a proinflammatory cytokine that is produced by white blood cells (monocytes and macrophages); has an antineoplastic effect but causes inflammation (as in rheumatoid arthritis)
+78162,tumor_suppressor_gene,a suppressor gene that blocks unscheduled cell division
+78163,tumor_virus,a cell-free filtrate held to be a virus responsible for a specific neoplasm
+78164,tumult tumultuousness uproar garboil,a state of commotion and noise and confusion
+78165,tumult turmoil,violent agitation
+78166,tun,a large cask especially one holding a volume equivalent to 2 butts or 252 gals
+78167,tuna Anguilla_sucklandii,New Zealand eel
+78168,tuna Opuntia_tuna,tropical American prickly pear of Jamaica
+78169,tuna tuna_fish tunny,important warm-water fatty fish of the genus Thunnus of the family Scombridae; usually served as steaks
+78170,tuna tunny,any very large marine food and game fish of the genus Thunnus; related to mackerel; chiefly of warm waters
+78171,tuna_fish_salad tuna_salad,salad composed primarily of chopped canned tuna fish
+78172,tuna_oil,an oil obtained from tuna
+78173,tunaburger,a sandwich that resembles a hamburger but made with tuna instead of beef
+78174,tundra,a vast treeless plain in the Arctic regions where the subsoil is permanently frozen
+78175,tundra_soil,a black mucky soil with a frozen subsoil that is characteristic of Arctic and subarctic regions
+78176,tundra_swan Cygnus_columbianus,swan that nests in tundra regions of the New and Old Worlds
+78177,tune,the property of producing accurately a note of a given pitch; "he cannot sing in tune"; "the clarinet was out of tune"
+78178,tune,the adjustment of a radio receiver or other circuit to a required frequency
+78179,tune melody air strain melodic_line line melodic_phrase,a succession of notes forming a distinctive sequence; "she was humming an air from Beethoven"
+78180,tune-up,adjustments made to an engine to improve its performance
+78181,tuner piano_tuner,someone who tunes pianos
+78182,tung_oil Chinese_wood_oil,a yellow oil obtained from the seeds of the tung tree
+78183,tung_tree tung tung-oil_tree Aleurites_fordii,Chinese tree bearing seeds that yield tung oil
+78184,tungstate,a salt of tungstic acid
+78185,tungsten wolfram W atomic_number_74,a heavy grey-white metallic element; the pure form is used mainly in electrical applications; it is found in several ores including wolframite and scheelite
+78186,tungsten_steel wolfram_steel,a very hard heat-resistant steel containing tungsten
+78187,tungstic_acid,an oxyacid of tungsten (often polymeric in nature) formed by neutralizing alkaline tungstate solutions
+78188,tunic,any of a variety of loose fitting cloaks extending to the hips or knees
+78189,tunic tunica adventitia,an enveloping or covering membrane or layer of body tissue
+78190,tunica_albuginea_testes,whitish cover of the testicle
+78191,tunicate urochordate urochord,primitive marine animal having a saclike unsegmented body and a urochord that is conspicuous in the larva
+78192,tuning,(music) calibrating something (an instrument or electronic circuit) to a standard frequency
+78193,tuning_fork,a metal implement with two prongs that gives a fixed tone when struck; used to tune musical instruments
+78194,tunnel,a passageway through or under something, usually underground (especially one for trains or cars); "the tunnel reduced congestion at that intersection"
+78195,tunnel_vision,visual impairment involving a loss of peripheral vision
+78196,tupelo,pale soft wood of a tupelo tree especially the water gum
+78197,tupelo tupelo_tree,any of several gum trees of swampy areas of North America
+78198,tupik tupek sealskin_tent,tent that is an Eskimo summer dwelling
+78199,turban,a traditional Muslim headdress consisting of a long scarf wrapped around the head
+78200,turban_squash,large squash shaped somewhat like a turban usually with a rounded central portion protruding from the blossom end
+78201,turban_squash Cucurbita_maxima_turbaniformis,squash plants bearing hard-shelled fruit shaped somewhat like a turban with a rounded central portion protruding from the end opposite the stem
+78202,turbidity turbidness,muddiness created by stirring up sediment or having foreign particles suspended
+78203,turbinate_bone turbinate turbinal,any of the scrolled spongy bones of the nasal passages in man and other vertebrates
+78204,turbine,rotary engine in which the kinetic energy of a moving fluid is converted into mechanical energy by causing a bladed rotor to rotate
+78205,turbogenerator,generator consisting of a steam turbine coupled to an electric generator for the production of electric power
+78206,turbot,flesh of a large European flatfish
+78207,turbot Psetta_maxima,a large brownish European flatfish
+78208,turbulence,instability in the atmosphere
+78209,turbulence turbulency,unstable flow of a liquid or gas
+78210,turbulence upheaval Sturm_und_Drang,a state of violent disturbance and disorder (as in politics or social conditions generally); "the industrial revolution was a period of great turbulence"
+78211,turbulent_flow,flow in which the velocity at any point varies erratically
+78212,tureen,large deep serving dish with a cover; for serving soups and stews
+78213,turf,the territory claimed by a juvenile gang as its own
+78214,turf,range of jurisdiction or influence; "a bureaucracy...chiefly concerned with turf...and protecting the retirement system"
+78215,turf sod sward greensward,surface layer of ground containing a mat of grass and grass roots
+78216,turf_war,a bitter struggle for territory or power or control or rights; "a turf war erupted between street gangs"; "the president's resignation was the result of a turf war with the board of directors"
+78217,turfing_daisy Tripleurospermum_oreades_tchihatchewii Matricaria_oreades,mat-forming perennial herb of Asia Minor; sometimes included in genus Matricaria
+78218,turfing_daisy Tripleurospermum_tchihatchewii Matricaria_tchihatchewii,low densely tufted perennial herb of Turkey having small white flowers; used as a ground cover in dry places; sometimes included in genus Matricaria
+78219,turgidity turgidness flatulence,pompously embellished language
+78220,turgor,(biology) the normal rigid state of fullness of a cell or blood vessel or capillary resulting from pressure of the contents against the wall or membrane
+78221,turkey,flesh of large domesticated fowl usually roasted
+78222,turkey Meleagris_gallopavo,large gallinaceous bird with fan-shaped tail; widely domesticated for food
+78223,turkey bomb dud,an event that fails badly or is totally ineffectual; "the first experiment was a real turkey"; "the meeting was a dud as far as new business was concerned"
+78224,turkey_cock gobbler tom tom_turkey,male turkey
+78225,turkey_leg turkey_drumstick,the lower joint of the leg of a turkey
+78226,turkey_stew,a stew made with turkey
+78227,turkey_stuffing,stuffing for turkey
+78228,turkey_trot,an early ragtime one-step
+78229,turkey_wing,the wing of a turkey
+78230,turmeric,ground dried rhizome of the turmeric plant used as seasoning
+78231,turmeric Curcuma_longa Curcuma_domestica,widely cultivated tropical plant of India having yellow flowers and a large aromatic deep yellow rhizome; source of a condiment and a yellow dye
+78232,turn,the act of turning away or in the opposite direction; "he made an abrupt turn away from her"
+78233,turn,taking a short walk out and back; "we took a turn in the park"
+78234,turn bout round,(sports) a division during which one team is on the offensive
+78235,turn good_turn,a favor for someone; "he did me a good turn"
+78236,turn play,(game) the activity of doing something in an agreed succession; "it is my turn"; "it is still my play"
+78237,turn turn_of_events twist,an unforeseen development; "events suddenly took an awkward turn"
+78238,turn turning,the act of changing or reversing the direction of the course; "he took a turn to the right"
+78239,turn-on,something causing excitement or stimulating interest
+78240,turn_of_phrase turn_of_expression,a distinctive spoken or written expression; "John's succinct turn of phrase persuaded her that it would not be a good idea"
+78241,turn_of_the_century,the period from about ten years before to ten years after a new century
+78242,turnaround,an area sufficiently large for a vehicle to turn around
+78243,turnaround turnaround_time,time need to prepare a vessel or ship for a return trip
+78244,turnaround turnround,act or process of unloading and loading and servicing a vessel or aircraft for a return trip
+78245,turnbuckle,an oblong metal coupling with a swivel at one end and an internal thread at the other into which a threaded rod can be screwed in order to form a unit that can be adjusted for length or tension
+78246,turncock,one employed to control water supply by turning water mains on and off
+78247,turner,a tumbler who is a member of a turnverein
+78248,turner,a lathe operator
+78249,turner,one of two persons who swing ropes for jumpers to skip over in the game of jump rope
+78250,turner food_turner,cooking utensil having a flat flexible part and a long handle; used for turning or serving food
+78251,turnery,workshop where objects are made on a lathe
+78252,turnery,products made on a lathe
+78253,turning,a shaving created when something is produced by turning it on a lathe
+78254,turning,the end-product created by shaping something on a lathe
+78255,turning,the activity of shaping something on a lathe
+78256,turning,act of changing in practice or custom; "the law took many turnings over the years"
+78257,turning turn,a movement in a new direction; "the turning of the wind"
+78258,turnip,root of any of several members of the mustard family
+78259,turnip white_turnip Brassica_rapa,widely cultivated plant having a large fleshy edible white or yellow root
+78260,turnip_bed,a bed in which turnips are growing
+78261,turnip_greens,tender leaves of young white turnips
+78262,turnip_plant,any of several widely cultivated plants having edible roots
+78263,turnoff,a side road where you can turn off; "I missed the turnoff and went 15 miles out of my way"
+78264,turnoff negative_stimulation,something causing antagonism or loss of interest
+78265,turnout,the group that gathers together for a particular occasion; "a large turnout for the meeting"
+78266,turnout,attendance for a particular event or purpose (as to vote in an election); "the turnout for the rally"
+78267,turnout,(ballet) the outward rotation of a dancer's leg from the hip
+78268,turnout widening,a part of a road that has been widened to allow cars to pass or park
+78269,turnover,a dish made by folding a piece of pastry over a filling
+78270,turnpike,(from 16th to 19th centuries) gates set across a road to prevent passage until a toll had been paid
+78271,turnpike toll_road,an expressway on which tolls are collected
+78272,turnspit,a roasting spit that can be turned
+78273,turnstile,a gate consisting of a post that acts as a pivot for rotating arms; set in a passageway for controlling the persons entering
+78274,turnstone,migratory shorebirds of the plover family that turn over stones in searching for food
+78275,turntable,a rotatable platform with a track; used to turn locomotives and cars
+78276,turntable,a circular horizontal platform that rotates a phonograph record while it is being played
+78277,turntable lazy_Susan,a revolving tray placed on a dining table
+78278,turnverein,a club of tumblers or gymnasts
+78279,turpentine gum_terpentine,obtained from conifers (especially pines)
+78280,turpentine oil_of_turpentine spirit_of_turpentine turps,volatile liquid distilled from turpentine oleoresin; used as paint thinner and solvent and medicinally
+78281,turpentine_camphor_weed camphorweed vinegarweed Trichostema_lanceolatum,aromatic plant of western United States
+78282,turquoise,a blue to grey green mineral consisting of copper aluminum phosphate; "blue turquoise is valued as a gemstone"
+78283,turreae,any of numerous trees and shrubs grown for their beautiful glossy foliage and sweetly fragrant starry flowers
+78284,turret,a small tower extending above a building
+78285,turret_clock,a clock with more than one dial to show the time in all directions from a tower
+78286,turtle,any of various aquatic and land reptiles having a bony shell and flipper-like limbs for swimming
+78287,turtle_soup green_turtle_soup,soup usually made of the flesh of green turtles
+78288,turtledove,any of several Old World wild doves
+78289,turtleneck turtle polo-neck,a sweater or jersey with a high close-fitting collar
+78290,turtleneck_collar polo-neck_collar,a high close-fitting turnover collar
+78291,turtler,someone whose occupation is hunting turtles
+78292,tushery,writing of poor quality; characterized by affected choice of archaic words
+78293,tusk,a long pointed tooth specialized for fighting or digging; especially in an elephant or walrus or hog
+78294,tusker,any mammal with prominent tusks (especially an elephant or wild boar)
+78295,tussah tusseh tussur tussore tusser Antheraea_mylitta,oriental moth that produces brownish silk
+78296,tussock_bellflower spreading_bellflower Campanula_carpatica,European perennial bellflower that grows in clumps with spreading stems and blue or white flowers
+78297,tussock_caterpillar,larva of a tussock moth
+78298,tutee,learns from a tutor
+78299,tutelage tuition tutorship,teaching pupils individually (usually by a tutor hired privately)
+78300,tutorial,a session of intensive tuition given by a tutor to an individual or to a small number of students
+78301,tutti-frutti,ice cream containing chopped candied fruits
+78302,tv_announcer television_announcer,an announcer on television
+78303,twaddler,someone who twaddles; someone who writes or talks twaddle
+78304,twang,a sharp vibrating sound (as of a plucked string)
+78305,twang nasal_twang,exaggerated nasality in speech (as in some regional dialects)
+78306,twayblade,an orchid of the genus Liparis having a pair of leaves
+78307,twayblade Listera_ovata,orchid having a pair of ovate leaves and a long slender raceme of green flowers sometimes tinged red-brown; Europe to central Asia
+78308,tweed,thick woolen fabric used for clothing; originated in Scotland
+78309,tweediness,an informal, homely, outdoor look characteristic of those who wear tweeds
+78310,tweet,a weak chirping sound as of a small bird
+78311,tweeter,a loudspeaker that reproduces higher audio frequency sounds; "the sound system had both tweeters and woofers"
+78312,twelfth,position 12 in a countable series of things
+78313,twelve 12 XII dozen,the cardinal number that is the sum of eleven and one
+78314,twelve-tone_music 12-tone_music twelve-tone_system 12-tone_system,a type of serial music introduced by Arnold Schoenberg; uses a tone row formed by the twelve semitones of the chromatic scale (and inverted or backward versions of the row)
+78315,twenties 1920s,the decade from 1920 to 1929
+78316,twenties mid-twenties,the time of life between 20 and 30
+78317,twentieth,position 20 in a countable series of things
+78318,twentieth_century,the century from 1901 to 2000
+78319,twenty 20 XX,the cardinal number that is the sum of nineteen and one
+78320,twenty-eight 28 XXVIII,the cardinal number that is the sum of twenty-seven and one
+78321,twenty-five 25 XXV,the cardinal number that is the sum of twenty-four and one
+78322,twenty-four 24 XXIV two_dozen,the cardinal number that is the sum of twenty-three and one
+78323,twenty-nine 29 XXIX,the cardinal number that is the sum of twenty-eight and one
+78324,twenty-one 21 XXI,the cardinal number that is the sum of twenty and one
+78325,twenty-seven 27 XXVII,the cardinal number that is the sum of twenty-six and one
+78326,twenty-six 26 XXVI,the cardinal number that is the sum of twenty-five and one
+78327,twenty-three 23 XXIII,the cardinal number that is the sum of twenty-two and one
+78328,twenty-twenty 20/20,normal visual acuity, as measured by the ability to read charts at a distance of 20 feet
+78329,twenty-two .22,a .22 caliber firearm (pistol or rifle)
+78330,twenty-two 22 XXII,the cardinal number that is the sum of twenty-one and one
+78331,twenty-two_pistol,a .22-caliber pistol
+78332,twenty-two_rifle,a .22-caliber rifle
+78333,twenty_dollar_bill twenty,a United States bill worth 20 dollars
+78334,twerp twirp twit,someone who is regarded as contemptible
+78335,twiddle,a series of small (usually idle) twists or turns
+78336,twiddler fiddler,someone who manipulates in a nervous or unconscious manner
+78337,twig_blight,a disease of the ends of twigs of woody plants
+78338,twilight,a condition of decline following successes; "in the twilight of the empire"
+78339,twilight,the diffused light from the sky when the sun is below the horizon but its rays are refracted by the atmosphere of the earth
+78340,twilight dusk gloaming gloam nightfall evenfall fall crepuscule crepuscle,the time of day immediately following sunset; "he loved the twilight"; "they finished before the fall of night"
+78341,twilight_sleep,a state of general anesthesia in which the person retains a slight degree of consciousness; can be induced by injection of scopolamine or morphine
+78342,twilight_zone,the lowest level of the ocean to which light can reach
+78343,twilight_zone no_man's_land,the ambiguous region between two categories or states or conditions (usually containing some features of both); "but there is still a twilight zone, the tantalizing occurrences that are probably noise but might possibly be a signal"; "in the twilight zone between humor and vulgarity"; "in that no man's land between negotiation and aggression"
+78344,twill,a cloth with parallel diagonal lines or ribs
+78345,twill twill_weave,a weave used to produce the effect of parallel diagonal ribs
+78346,twin,either of two offspring born at the same time from the same pregnancy
+78347,twin_bed,one of a pair of identical beds
+78348,twin_bill doubleheader double_feature,two games instead of one (especially in baseball when the same two teams play two games on the same day)
+78349,twinberry Lonicera_involucrata,shrubby honeysuckle with purple flowers; western North America
+78350,twiner,someone who intertwines (e.g. threads) or forms something by twisting or interlacing
+78351,twinflower Linnaea_borealis,creeping evergreen subshrub of the northern parts of Europe and Asia with delicate fragrant tubular bell-shaped usually pink flowers borne in pairs
+78352,twinge,a sharp stab of pain
+78353,twinjet,a jet plane propelled by two jet engines
+78354,twinkle scintillation sparkling,a rapid change in brightness; a brief spark or flash
+78355,twinkler,an object that emits or reflects light in an intermittent flickering manner
+78356,twins,(mineralogy) two interwoven crystals that are mirror images on each other
+78357,twist,social dancing in which couples vigorously twist their hips and arms in time to the music; was popular in the 1960s; "they liked to dance the twist"
+78358,twist turn,turning or twisting around (in place); "with a quick twist of his head he surveyed the room"
+78359,twist wrench,a jerky pulling movement
+78360,twist_bit twist_drill,a bit or drill having deep helical grooves
+78361,twit taunt taunting,aggravation by deriding or mocking or criticizing
+78362,twitch twitching vellication,a sudden muscle spasm; especially one caused by a nervous condition
+78363,twitterer,a bird that twitters
+78364,two 2 II deuce,the cardinal number that is the sum of one and one or a numeral representing this number
+78365,two-by-four,a timber measuring (slightly under) 2 inches by 4 inches in cross section
+78366,two-dimensionality flatness planeness,the property of having two dimensions
+78367,two-eyed_violet heartsease Viola_ocellata,violet of Pacific coast of North America having white petals tinged with yellow and deep violet
+78368,two-handed_backhand,a backhand shot made holding the racquet in both hands
+78369,two-handed_saw whipsaw two-man_saw lumberman's_saw,a saw with handles at both ends; intended for use by two people
+78370,two-hitter 2-hitter,a game in which a pitcher allows the opposing team only 2 hits
+78371,two-man_tent,a tent designed for occupancy by two persons
+78372,two-note_call,a birdcall having two notes; "the two-note call of the cuckoo"
+78373,two-piece two-piece_suit lounge_suit,a business suit consisting of a matching jacket and skirt or trousers
+78374,two-spotted_ladybug Adalia_bipunctata,red ladybug with a black spot on each wing
+78375,two-step,a ballroom dance in duple meter; marked by sliding steps
+78376,two-thirds,two of three equal parts of a divisible whole
+78377,two-tier_bid,a takeover bid where the acquirer offers to pay more for the shares needed to gain control than for the remaining shares
+78378,two-timer,someone who deceives a lover or spouse by carrying on a sexual relationship with somebody else
+78379,two-toed_sloth unau unai Choloepus_didactylus,relatively small fast-moving sloth with two long claws on each front foot
+78380,two-toed_sloth unau unai Choloepus_hoffmanni,a sloth of Central America that has two long claws on each forefoot and three long claws on each hindfoot
+78381,two-way_street,a street on which vehicular traffic can move in either of two directions; "you have to look both ways crossing a two-way street"
+78382,two-year-old_horse two_year_old,a racehorse that is two years old
+78383,two_dollar_bill,a United States bill worth 2 dollars
+78384,twofer,an offer of two for the price of one
+78385,twofer,a coupon that allows the holder to purchase two items (as two tickets to a play) for the price of one
+78386,twopence tuppence,a former United Kingdom silver coin; United Kingdom bronze decimal coin worth two pennies
+78387,tying ligature,the act of tying or binding things together
+78388,tyiyn,100 tyiyn equal 1 som in Kyrgyzstan
+78389,tympanic_bone,the bone enclosing the middle ear
+78390,tympanic_vein,veins from the tympanic cavity that empty into the retromandibular vein
+78391,tympanist timpanist,a person who plays the kettledrums
+78392,tympanites,distension of the abdomen that is caused by the accumulation of gas in the intestines or the peritoneal cavity
+78393,tympanitis,inflammation of the inner ear
+78394,tympanoplasty,surgical correction or repair of defects or injuries in the eardrum or the bones of the middle ear
+78395,type,(biology) the taxonomic group whose characteristics are used to define the next higher taxon
+78396,type,printed characters; "small type is hard to read"
+78397,type,all of the tokens of the same symbol; "the word `element' contains five different types of character"
+78398,type,a subdivision of a particular kind of thing; "what type of sculpture do you prefer?"
+78399,type,a small metal block bearing a raised character on one end; produces a printed character when inked and pressed on paper; "he dropped a case of type, so they made him pick them up"
+78400,type_II_diabetes non-insulin-dependent_diabetes_mellitus NIDDM non-insulin-dependent_diabetes ketosis-resistant_diabetes_mellitus ketosis-resistant_diabetes ketoacidosis-resistant_diabetes_mellitus ketoacidosis-resistant_diabetes adult-onset_diabetes_mellitus adult-onset_diabetes maturity-onset_diabetes_mellitus maturity-onset_diabetes mature-onset_diabetes,mild form of diabetes mellitus that develops gradually in adults; can be precipitated by obesity or severe stress or menopause or other factors; can usually be controlled by diet and hypoglycemic agents without injections of insulin
+78401,type_I_diabetes insulin-dependent_diabetes_mellitus IDDM juvenile-onset_diabetes juvenile_diabetes growth-onset_diabetes ketosis-prone_diabetes ketoacidosis-prone_diabetes autoimmune_diabetes,severe diabetes mellitus with an early onset; characterized by polyuria and excessive thirst and increased appetite and weight loss and episodic ketoacidosis; diet and insulin injections are required to control the disease
+78402,type_family,a complete set of type suitable for printing text
+78403,type_genus,(biology) genus from which the name of a family or subfamily is formed; it is not necessarily the most representative genus but often the largest or best known or earliest described
+78404,type_metal,an alloy of tin and lead and antimony used to make printing type
+78405,type_slug slug,a strip of type metal used for spacing
+78406,type_species,(biology) the species that best exemplifies the essential characteristics of the genus to which it belongs
+78407,type_specimen holotype,the original specimen from which the description of a new species is made
+78408,typescript,typewritten matter especially a typewritten copy of a manuscript
+78409,typesetting_machine,a printer that sets textual material in type
+78410,typewriter,hand-operated character printer for printing written messages one character at a time
+78411,typewriter_carriage,a carriage for carrying a sheet of paper
+78412,typewriter_font constant-width_font fixed-width_font monospaced_font,a typeface is which each character is given the same width (as by a typewriter)
+78413,typewriter_keyboard,a keyboard for manually entering characters to be printed
+78414,typewriter_paper typing_paper,writing paper suitable for use in a typewriter
+78415,typhoid typhoid_fever enteric_fever,serious infection marked by intestinal inflammation and ulceration; caused by Salmonella typhosa ingested with food or water
+78416,typhoid_bacillus Salmonella_typhosa Salmonella_typhi,a form of salmonella that causes typhoid fever
+78417,typhoid_bacteriophage,a bacteriophage specific for the bacterium Salmonella typhi
+78418,typhoon,a tropical cyclone occurring in the western Pacific or Indian oceans
+78419,typhus typhus_fever,rickettsial disease transmitted by body lice and characterized by skin rash and high fever
+78420,typical_jerboa,small nocturnal jumping rodent with long hind legs; of arid parts of Asia and northern Africa
+78421,typicality,the state of being that is typical
+78422,typification,the act of representing by a type or symbol; the action of typifying
+78423,typification exemplification,a representational or typifying form or model
+78424,typing typewriting,writing done with a typewriter
+78425,typing_pool,a group of typists who can work for different persons
+78426,typist,someone paid to operate a typewriter
+78427,typography,the craft of composing type and printing from it
+78428,typography composition,art and technique of printing with movable type
+78429,typology,classification according to general type
+78430,tyramine,amino acid derived from tyrosine; has a sympathomimetic action; found in chocolate and cola drinks and ripe cheese and beer; "patients taking MAOIs should avoid foods containing tyramine"
+78431,tyrannicide,killing a tyrant
+78432,tyrannid,a passerine bird of the suborder Tyranni
+78433,tyrannosaur tyrannosaurus Tyrannosaurus_rex,large carnivorous bipedal dinosaur having enormous teeth with knifelike serrations; may have been a scavenger rather than an active predator; later Cretaceous period in North America
+78434,tyrant,in ancient Greece, a ruler who had seized power without legal right to it
+78435,tyrant,any person who exercises power in a cruel way; "his father was a tyrant"
+78436,tyrant autocrat despot,a cruel and oppressive dictator
+78437,tyrocidine tyrocidin,a basic polypeptide antibiotic derived from a soil bacterium; a major component of tyrothricin
+78438,tyrolean tirolean,soft green felt hat with a feather or brush cockade
+78439,tyrosine,an amino acid found in most proteins; a precursor of several hormones
+78440,tyrosine_kinase_inhibitor,a drug used in cases of chronic myeloid leukemia
+78441,tyrosinemia,autosomal recessive defect in tyrosine metabolism resulting in liver and kidney disturbances and mental retardation
+78442,tyrothricin,a mixture of antibiotics applied locally to infections caused by Gram-positive bacteria
+78443,u-turn,complete reversal of direction of travel
+78444,uakari,medium-sized tree-dwelling monkey of the Amazon basin; only New World monkey with a short tail
+78445,ubiety,the state of existing and being localized in space
+78446,ubiquinone coenzyme_Q,any of several quinones found in living cells and that function as coenzymes that transfer electrons from one molecule to another in cell respiration
+78447,ubiquity ubiquitousness omnipresence,the state of being everywhere at once (or seeming to be everywhere at once)
+78448,udder bag,mammary gland of bovids (cows and sheep and goats)
+78449,ugliness,qualities of appearance that do not give pleasure to the senses
+78450,ugly_duckling,an ugly or unpromising child who grows into a beautiful or worthy person
+78451,ukase,an edict of the Russian tsar
+78452,uke ukulele,a small guitar having four strings
+78453,ulalgia,pain in the gums
+78454,ulatrophia,recession of the gums
+78455,ulcer ulceration,a circumscribed inflammatory and often suppurating lesion on the skin or an internal mucous surface resulting in necrosis of tissue
+78456,ulceration,the process of ulcer formation; the process of becoming ulcerated
+78457,ulcerative_colitis,a serious chronic inflammatory disease of the large intestine and rectum characterized by recurrent episodes of abdominal pain and fever and chills and profuse diarrhea
+78458,ulema ulama,the body of Mullahs (Muslim scholars trained in Islam and Islamic law) who are the interpreters of Islam's sciences and doctrines and laws and the chief guarantors of continuity in the spiritual and intellectual history of the Islamic community
+78459,ulemorrhagia,bleeding of the gums
+78460,ulitis,inflammation of the gums
+78461,ullage,the amount that a container (as a wine bottle or tank) lacks of being full
+78462,ulna elbow_bone,the inner and longer of the two bones of the human forearm
+78463,ulnar_artery arteria_ulnaris,large artery that branches from the brachial artery to supply the muscles of the forearm and wrist and hand
+78464,ulnar_nerve cubital_nerve nervus_ulnaris,a nerve running along the inner side of the arm and passing near the elbow; supplies intrinsic muscles of the hand and the skin of the medial side of the hand
+78465,ulnar_vein vena_ulnaris,any of several veins of the forearm
+78466,ulster,loose long overcoat of heavy fabric; usually belted
+78467,ulteriority,the quality of being ulterior; "their conversation was limited to ulteriorities"; "a terrible feeling of ulteriority"; "his stories were too susceptible to ulteriority"
+78468,ultima,the last syllable in a word
+78469,ultimacy ultimateness,the state or degree of being ultimate; the final or most extreme in degree or size or time or distance; "the ultimacy of these social values"
+78470,ultimate,the finest or most superior quality of its kind; "the ultimate in luxury"
+78471,ultimate_frisbee,a game between two teams whose players try to toss a Frisbee to one another until they cross the opponents goal; possession changes hands when the Frisbee is intercepted or touches the ground or goes out of bounds
+78472,ultimatum,a final peremptory demand
+78473,ultracentrifugation,centrifugation at very high speeds
+78474,ultracentrifuge,a high speed centrifuge used to determine the relative molecular masses of large molecules in high polymers and proteins
+78475,ultrahigh_frequency UHF,300 to 3000 megahertz
+78476,ultramarine,a vivid blue to purple-blue color
+78477,ultramarine ultramarine_blue,blue pigment made of powdered lapis lazuli
+78478,ultramicroscope dark-field_microscope,light microscope that uses scattered light to show particles too small to see with ordinary microscopes
+78479,ultramontane,a Roman Catholic who advocates ultramontanism (supreme papal authority in matters of faith and discipline)
+78480,ultramontanism,(Roman Catholic Church) the policy that the absolute authority of the church should be vested in the pope
+78481,ultrasound,very high frequency sound; used in ultrasonography
+78482,ultraviolet ultraviolet_radiation ultraviolet_light ultraviolet_illumination UV,radiation lying in the ultraviolet range; wave lengths shorter than light but longer than X rays
+78483,ultraviolet_lamp ultraviolet_source,any source of illumination that emits ultraviolet radiation
+78484,ultraviolet_spectrum,the spectrum of ultraviolet radiation
+78485,umbel,flat-topped or rounded inflorescence characteristic of the family Umbelliferae in which the individual flower stalks arise from about the same point; youngest flowers are at the center
+78486,umbellifer umbelliferous_plant,any of numerous aromatic herbs of the family Umbelliferae
+78487,umber,an earth pigment
+78488,umbilical_cord umbilical,membranous duct connecting the fetus with the placenta
+78489,umbilical_hernia omphalocele,protrusion of the intestine and omentum through a hernia in the abdominal wall near the navel; usually self correcting after birth
+78490,umbilical_vein vena_umbilicalis,a vein in the umbilical cord; returns nutrient blood from the placenta to the fetus
+78491,umbo,a slight rounded elevation where the malleus attaches to the eardrum
+78492,umbra,a region of complete shadow resulting from total obstruction of light
+78493,umbrage offense offence,a feeling of anger caused by being offended; "he took offence at my question"
+78494,umbrella,a lightweight handheld collapsible canopy
+78495,umbrella,a formation of military planes maintained over ground operations or targets; "an air umbrella over England"
+78496,umbrella,having the function of uniting a group of similar things; "the Democratic Party is an umbrella for many liberal groups"; "under the umbrella of capitalism"
+78497,umbrella_bird Cephalopterus_ornatus,black tropical American bird having a large overhanging crest and long feathered wattle
+78498,umbrella_fern fan_fern Sticherus_flabellatus Gleichenia_flabellata,large Australasian fern with fanlike repeatedly forked fronds; sometimes placed in genus Gleichenia
+78499,umbrella_plant Eriogonum_allenii,late blooming perennial plant of shale barrens of Virginia having flowers in flat-topped clusters
+78500,umbrella_plant Indian_rhubarb Darmera_peltata Peltiphyllum_peltatum,rhizomatous perennial herb with large dramatic peltate leaves and white to bright pink flowers in round heads on leafless stems; colonizes stream banks in the Sierra Nevada in California
+78501,umbrella_plant umbrella_sedge Cyperus_alternifolius,African sedge widely cultivated as an ornamental water plant for its terminal umbrellalike cluster of slender grasslike leaves
+78502,umbrella_tent,a small tent with a single supporting pole and radiating metal ribs
+78503,umbrella_tree Schefflera_actinophylla Brassaia_actinophylla,erect evergreen shrub or small tree of Australia and northern New Guinea having palmately compound leaves
+78504,umbrella_tree umbrella_magnolia elkwood elk-wood Magnolia_tripetala,small deciduous tree of eastern North America having creamy white flowers and large leaves in formations like umbrellas at the ends of branches
+78505,umbrellawort,a plant of the genus Mirabilis
+78506,umlaut,a diacritical mark (two dots) placed over a vowel to indicate a change in sound in some languages
+78507,umpirage,mediation by an umpire
+78508,umpirage officiation officiating refereeing,the act of umpiring; "the officiating was excellent"
+78509,umpire ump,an official at a baseball game
+78510,unabridged_dictionary unabridged,a dictionary that has not been shortened by the omitting terms or definitions; a comprehensive dictionary
+78511,unacceptability unacceptableness,unsatisfactoriness by virtue of not conforming to approved standards
+78512,unadaptability,the inability to change or be changed to fit changed circumstances
+78513,unaffectedness,not affected; a personal manner that is not consciously constrained
+78514,unalterability,the quality of not being alterable
+78515,unambiguity unequivocalness,clarity achieved by the avoidance of ambiguity
+78516,unanimity,everyone being of one mind
+78517,unappetizingness unappetisingness,the property of spoiling the appetite
+78518,unapproachability,a disposition to be unapproachable; unfriendly and inaccessible
+78519,unassertiveness,diffidence about self promotion
+78520,unattainableness,the state of being unattainable
+78521,unattractiveness,an ugliness of appearance that is not appealing to viewers
+78522,unbecomingness,the quality of being unbecoming
+78523,unbelief disbelief,a rejection of belief
+78524,unbreakableness,a consistency of something that does not break under pressure
+78525,unceremoniousness,an unceremonial manner
+78526,uncertainty uncertainness precariousness,being unsettled or in doubt or dependent on chance; "the uncertainty of the outcome"; "the precariousness of his income"
+78527,uncertainty_principle indeterminacy_principle,(quantum theory) the theory that it is impossible to measure both energy and time (or position and momentum) completely accurately at the same time
+78528,uncheerfulness,not conducive to cheer or good spirits
+78529,uncial,a style of orthography characterized by somewhat rounded capital letters; found especially in Greek and Latin manuscripts of the 4th to 8th centuries
+78530,uncle,a source of help and advice and encouragement; "he played uncle to lonely students"
+78531,uncle,the brother of your father or mother; the husband of your aunt
+78532,uncleanliness,lack of cleanly habits
+78533,unclearness,incomprehensibility as a result of not being clear
+78534,uncommonness,extraordinariness as a consequence of being marked by an uncommon or superlative quality
+78535,uncommonness,extraordinariness as a consequence of being rare and seldom encountered
+78536,uncommunicativeness,the trait of being uncommunicative
+78537,unconcern,a feeling of lack of concern
+78538,unconfessed,people who have not confessed; "the unconfessed cannot be forgiven"
+78539,uncongeniality,a disposition not to be congenial
+78540,unconnectedness,the lack of a connection between things
+78541,unconscientiousness,the quality of being willing to ignore the dictates of conscience
+78542,unconscientiousness,the trait of not being painstaking or careful
+78543,unconscious_mind unconscious,that part of the mind wherein psychic activity takes place of which the person is unaware
+78544,unconsciousness,a state lacking normal awareness of the self or environment
+78545,unconventionality,originality by virtue of being unconventional
+78546,unconventionality,unorthodoxy by virtue of being unconventional
+78547,uncreativeness,a lack of creativity
+78548,unction inunction,anointing as part of a religious ceremony or healing ritual
+78549,unction smarm fulsomeness,excessive but superficial compliments given with affected charm
+78550,uncus,(biology) any hook-shaped process or part
+78551,undecagon,an eleven-sided polygon
+78552,undecylenic_acid,an acid that is a component of perspiration
+78553,undependability undependableness unreliability unreliableness,the trait of not being dependable or reliable
+78554,underachievement,poorer than expected performance (poorer than might have been predicted from intelligence tests)
+78555,underachiever underperformer nonachiever,a student who does not perform as well as expected or as well as the IQ indicates
+78556,underbelly,lower side; "the underbellies of clouds"
+78557,underbelly,the quality of being weak or unprotected; "the soft underbelly of the Axis"- Winston Churchill
+78558,underbelly underbody,the soft belly or underside of an animal's body
+78559,underboss,an assistant or second-in-command to a chief (especially in a crime syndicate)
+78560,underbrush undergrowth underwood,the brush (small trees and bushes and ferns etc.) growing beneath taller trees in a wood or forest
+78561,undercarriage,framework that serves as a support for the body of a vehicle
+78562,undercharge,a price that is too low
+78563,undercharge,an insufficient charge
+78564,undercoat underfur,thick soft fur lying beneath the longer and coarser guard hair
+78565,undercoat underseal,seal consisting of a coating of a tar or rubberlike material on the underside of a motor vehicle to retard corrosion
+78566,undercover_operation,an operation involving secret work within a community or institution
+78567,undercut,the material removed by a cut made underneath
+78568,undercut,a notch cut in the trunk of tree in order to determine the direction of its fall
+78569,undercut,a cut made underneath to remove material
+78570,underdevelopment,state of inadequate development; "much poverty can be traced to the underdevelopment of industry"
+78571,underdevelopment,(photography) inadequate processing of film resulting in inadequate contrast
+78572,underdog,one at a disadvantage and expected to lose
+78573,underestimate underestimation underrating underreckoning,an estimation that is too low; an estimate that is less than the true or actual value
+78574,underevaluation,an appraisal that underestimates the value of something
+78575,underexposure,the act of exposing film to too little light or for too short a time
+78576,underexposure,inadequate publicity
+78577,underfelt,a carpet pad of thick felt
+78578,undergarment unmentionable,a garment worn under other garments
+78579,undergraduate undergrad,a university student who has not yet received a first degree
+78580,underground resistance,a secret group organized to overthrow a government or occupation force
+78581,underlip,the lower lip
+78582,undernourishment malnourishment,not having enough food to develop or function normally
+78583,underpants,an undergarment that covers the body from the waist no further than to the thighs; usually worn next to the skin
+78584,underpart,a part lying on the lower side or underneath an animal's body; "the warbler has a white throat and underparts"; "a woodland mouse with white underparts"
+78585,underpass subway,an underground tunnel or passage enabling pedestrians to cross a road or railway
+78586,underpayment,a payment smaller than needed or expected
+78587,underpayment,the act of paying less than required
+78588,underperformer,a business that is less successful than expected
+78589,underproduction,inadequate production or less than expected
+78590,underscore underline,a line drawn underneath (especially under written matter)
+78591,undersecretary,a secretary immediately subordinate to the head of a department of government
+78592,underseller,a seller that sells at a lower price than others do; "he went all over town looking for undersellers"
+78593,undershrub,a low shrub
+78594,understanding apprehension discernment savvy,the cognitive condition of someone who understands; "he has virtually no understanding of social cause and effect"
+78595,understatement,a statement that is restrained in ironic contrast to what might have been said
+78596,understudy standby,an actor able to replace a regular performer when required
+78597,undertaking,the trade of a funeral director
+78598,undertaking project task labor,any piece of work that is undertaken or attempted; "he prepared for great undertakings"
+78599,undertide undercurrent,a current below the surface of a fluid
+78600,undertone,a quiet or hushed tone of voice; "spoke in undertones"
+78601,undertone tinge,a pale or subdued color
+78602,undertone undercurrent,a subdued emotional quality underlying an utterance; implicit meaning
+78603,undertow,an inclination contrary to the strongest or prevailing feeling; "his account had a poignant undertow of regret"
+78604,undertow sea_puss sea-puss sea_purse sea-purse sea-poose,the seaward undercurrent created after waves have broken on the shore
+78605,undervaluation,too low a value or price assigned to something
+78606,underwear underclothes underclothing,undergarment worn next to the skin and under the outer garments
+78607,underwing,moth having dull forewings and brightly colored hind wings
+78608,underworld,the criminal class
+78609,undescended_testis undescended_testicle,a testis that fails to move into the scrotum as the male fetus develops; "undescended testicles have an increased risk for cancer"
+78610,undesirability,the quality possessed by something that should be avoided
+78611,undesirable,one whose presence is undesirable; "rounding up vagrants and drunks and other undesirables"
+78612,undies,women's underwear
+78613,undine,any of various female water spirits
+78614,undivided_interest undivided_right,the interest in property owned by tenants whereby each tenant has an equal right to enjoy the entire property
+78615,undoer,a seducer who ruins a woman; "she awoke in the arms of her cruel undoer"
+78616,undoer opener unfastener untier,a person who unfastens or unwraps or opens; "children are talented undoers of their shoelaces"
+78617,undoing,an act that makes a previous act of no effect (as if not done)
+78618,undress,partial or complete nakedness; "a state of undress"
+78619,undulation,wavelike motion; a gentle rising and falling in the manner of waves
+78620,undutifulness,impiety characterized by lack of devotion to duty
+78621,unearned_income unearned_revenue,personal income that you did not earn (e.g., dividends or interest or rent income)
+78622,unearned_income unearned_revenue,(accounting) income received but not yet earned (usually considered a current liability on a company's balance sheet)
+78623,unearned_increment,an unearned rise in the market value of property resulting from general market factors
+78624,unearned_run,a run that was scored as a result of an error by the other team
+78625,unemotionality emotionlessness,absence of emotion
+78626,unemployed_people unemployed,people who are involuntarily out of work (considered as a group); "the long-term unemployed need assistance"
+78627,unemployed_person,someone who is jobless
+78628,unemployment,the state of being unemployed or not having a job; "unemployment is a serious social evil"; "the rate of unemployment is an indicator of the health of an economy"
+78629,unemployment_compensation,payment by a United States agency to unemployed people
+78630,unemployment_line,a queue of people waiting for employment
+78631,unemployment_rate,the percentage of the work force that is unemployed at any given date
+78632,unenlightenment,a lack of understanding
+78633,uneven_parallel_bars uneven_bars,a pair of parallel bars set at different heights; used in women's gymnastics
+78634,unevenness,the quality of being unbalanced
+78635,unevenness variability,the quality of being uneven and lacking uniformity
+78636,unexchangeability,the quality of being incapable of exchange or interchange
+78637,unexpectedness surprisingness,extraordinariness by virtue of being unexpected; "the unexpectedness of the warm welcome"
+78638,unfairness,partiality that is not fair or equitable
+78639,unfairness inequity,injustice by virtue of not conforming with rules or standards
+78640,unfamiliarity strangeness,unusualness as a consequence of not being well known
+78641,unfavorableness unfavourableness,the quality of not being encouraging or indicative of success
+78642,unfeelingness callousness callosity hardness insensibility,devoid of passion or feeling; hardheartedness
+78643,unfitness,the quality of not being suitable; "the judges agreed on his unfitness for the appointment"
+78644,unfitness softness,poor physical condition; being out of shape or out of condition (as from a life of ease and luxury)
+78645,unfolding flowering,a developmental process; "the flowering of antebellum culture"
+78646,unformatted_capacity,(computer science) the total number of bytes on a disk including the space that will be required to format it
+78647,unfortunate unfortunate_person,a person who suffers misfortune
+78648,unfriendliness,dislike experienced as an absence of friendliness
+78649,unfriendliness,an unfriendly disposition
+78650,ungodliness godlessness,impiety by virtue of not being a godly person
+78651,ungraciousness,an offensive lack of good manners
+78652,ungradable_opposition,an opposition that has no intermediate grade; either one or the other
+78653,unguiculate unguiculate_mammal,a mammal having nails or claws
+78654,ungulate hoofed_mammal,any of a number of mammals with hooves that are superficially similar but not necessarily closely related taxonomically
+78655,unhappiness,state characterized by emotions ranging from mild discontentment to deep grief
+78656,unhealthfulness,the quality of promoting poor health
+78657,unhelpfulness,an inability to be helpful
+78658,unholiness,the quality of being unholy
+78659,unicameral_script,a script with a single case
+78660,unicorn,an imaginary creature represented as a white horse with a long horn growing from its forehead
+78661,unicycle monocycle,a vehicle with a single wheel that is driven by pedals
+78662,unicyclist,a person who rides a unicycle
+78663,unidentified_flying_object UFO flying_saucer,an (apparently) flying object whose nature is unknown; especially those considered to have extraterrestrial origins
+78664,uniform,clothing of distinctive design worn by members of a particular group as a means of identification
+78665,uniformity,a condition in which everything is regular and unvarying
+78666,uniformity uniformness,the quality of lacking diversity or variation (even to the point of boredom)
+78667,unilateral_contract,a one-sided agreement whereby you promise to do (or refrain from doing) something in return for a performance (not a promise)
+78668,unilateral_descent,line of descent traced through one side of the family
+78669,unilateralism,the doctrine that nations should conduct their foreign affairs individualistically without the advice or involvement of other nations
+78670,unilateralist,an advocate of unilateralism
+78671,unimportance,the quality of not being important or worthy of note
+78672,uninitiate,people who have not been introduced to the mysteries of some field or activity; "it diverts the attention of the uninitiate"
+78673,uninominal_system uninominal_voting_system single-member_system scrutin_uninomial_system scrutin_uninominal_voting_system,based on the principle of having only one member (as of a legislature) selected from each electoral district
+78674,uninsurability,the quality of being uninsurable; the conditions under which an insurance company will refuse to issue insurance to an applicant (based on standards set by the insurance company)
+78675,unintelligibility,incomprehensibility as a consequence of being unintelligible
+78676,uninterestingness,inability to capture or hold one's interest
+78677,uniocular_dichromat,a person who has normal vision in one eye and dichromacy in the other; very rare but very useful for experiments on color vision
+78678,union,a political unit formed from previously independent people or organizations; "the Soviet Union"
+78679,union,the occurrence of a uniting of separate parts; "lightning produced an unusual union of the metals"
+78680,union,a device on a national flag emblematic of the union of two or more sovereignties (typically in the upper inner corner)
+78681,union conglutination,healing process involving the growing together of the edges of a wound or the growing together of broken bones
+78682,union labor_union trade_union trades_union brotherhood,an organization of employees formed to bargain with the employer; "you have to join the union in order to get a job"
+78683,union sum join,a set containing all and only the members of two or more given sets; "let C be the union of the sets A and B"
+78684,union unification,the state of being joined or united or linked; "there is strength in union"
+78685,union unification uniting conjugation jointure,the act of making or becoming a single unit; "the union of opposing factions"; "he looked forward to the unification of his family for the holidays"
+78686,union_card,a card certifying membership in a labor union
+78687,union_representative,a representative for a labor union
+78688,union_shop,a company allowed to hire nonunion workers on the condition that they will join the union within a specified time
+78689,unionism trade_unionism,the system or principles and theory of labor unions
+78690,unionization unionisation,act of forming labor unions; "the issue underlying the strike was unionization"
+78691,unipolar_depression,a major depressive episode that occurs without the manic phase that occurs in the classic form of bipolar disorder
+78692,unison,corresponding exactly; "marching in unison"
+78693,unison,occurring together or simultaneously; "the two spoke in unison"
+78694,unison,(music) two or more sounds or tones at the same pitch or in octaves; "singing in unison"
+78695,unit,an individual or group or structure or other entity regarded as a structural or functional constituent of a whole; "the reduced the number of units and installations"; "the word is a basic linguistic unit"
+78696,unit,a single undivided whole; "an idea is not a unit that can be moved from one brain to another"
+78697,unit building_block,a single undivided natural thing occurring in the composition of something else; "units of nucleic acids"
+78698,unit social_unit,an organization regarded as part of a larger social group; "the coach said the offensive unit did a good job"; "after the battle the soldier had trouble rejoining his unit"
+78699,unit_cell,the smallest group of atoms or molecules whose repetition at regular intervals in three dimensions produces the lattices of a crystal
+78700,unit_character,(genetics) a character inherited on an all-or-none basis and dependent on the presence of a single gene
+78701,unit_cost,calculated cost for a given unit of a product
+78702,unit_investment_trust unit_trust,a regulated investment company consisting of professional managers who issue redeemable securities representing a portfolio of many different securities; "you can invest in a unit investment trust for as little as $1000"
+78703,unit_of_measurement unit,any division of quantity accepted as a standard of measurement or exchange; "the dollar is the United States unit of currency"; "a unit of wheat is a bushel"; "change per unit volume"
+78704,unit_of_viscosity,a unit of measurement for viscosity
+78705,unitization unitisation,the act of packaging cargo into unit loads
+78706,unitization unitisation,conversion of an investment trust into a unit investment trust
+78707,unitization unitisation,the joint development of a petroleum resource that straddles territory controlled by different companies
+78708,unitization unitisation chunking,(psychology) the configuration of smaller units of information into large coordinated units
+78709,universal,a behavioral convention or pattern characteristic of all members of a particular culture or of all human beings; "some form of religion seems to be a human universal"
+78710,universal linguistic_universal,(linguistics) a grammatical rule (or other linguistic feature) that is found in all languages
+78711,universal universal_proposition,(logic) a proposition that asserts something of all members of a class
+78712,universal_agent general_agent,someone authorized to transact every kind of business for the principal
+78713,universal_donor,a person whose type O Rh-negative blood may be safely transfused into persons with other blood types
+78714,universal_joint universal,coupling that connects two rotating shafts allowing freedom of movement in all directions; "in motor vehicles a universal joint allows the driveshaft to move up and down as the vehicle passes over bumps"
+78715,universal_quantifier,a logical quantifier of a proposition that asserts that the proposition is true for all members of a class of things
+78716,universal_set,(mathematics) the set that contains all the elements or objects involved in the problem under consideration; "all other sets are subsets of the universal set"
+78717,universal_suffrage,suffrage for all adults who are not disqualified by the laws of the country
+78718,universal_veil,membrane initially completely investing the young sporophore of various mushrooms that is ruptured by growth; represented in the mature mushroom by a volva around lower part of stem and scales on upper surface of the cap
+78719,universalism,the theological doctrine that all people will eventually be saved
+78720,universality catholicity,the quality of being universal; existing everywhere
+78721,universe existence creation world cosmos macrocosm,everything that exists anywhere; "they study the evolution of the universe"; "the biggest tree in existence"
+78722,universe universe_of_discourse,everything stated or assumed in a given discussion
+78723,university,a large and diverse institution of higher learning created to educate for life and for a profession and to grant degrees
+78724,university,the body of faculty and students at a university
+78725,university,establishment where a seat of higher learning is housed, including administrative and living quarters as well as facilities for research and teaching
+78726,unkindness,lack of sympathy
+78727,unknowingness unawareness,unconsciousness resulting from lack of knowledge or attention
+78728,unknown unknown_quantity,a variable whose values are solutions of an equation
+78729,unknown unknown_region terra_incognita,an unknown and unexplored region; "they came like angels out the unknown"
+78730,unknown_quantity,a factor in a given situation whose bearing and importance is not apparent; "I don't know what the new man will do; he's still an unknown quantity"
+78731,unlawful_carnal_knowledge criminal_congress,forbidden or tabu sexual intercourse between individuals
+78732,unlawfulness,the quality of failing to conform to law
+78733,unleaded_gasoline unleaded_petrol,gasoline that has not been treated with a lead compound
+78734,unlikelihood unlikeliness,the improbability of a specified outcome
+78735,unlikeness dissimilitude,dissimilarity evidenced by an absence of likeness
+78736,unlisted_security over_the_counter_security OTC_security,a security traded in the over-the-counter market
+78737,unloading,the labor of taking a load of something off of or out of a vehicle or ship or container etc.
+78738,unmalleability,a lack of malleability
+78739,unmarried_woman,a woman who is not married
+78740,unmindfulness heedlessness inadvertence inadvertency,the trait of forgetting or ignoring your responsibilities
+78741,unnaturalness,the quality of being unnatural or not based on natural principles
+78742,unneighborliness,an unneighborly disposition
+78743,unnoticeableness,the quality of being not easily noticed
+78744,unobserved_fire,fire for which the point of impact (the bursts) cannot be observed
+78745,unobtrusiveness,the quality of not sticking out in an unwelcome way
+78746,unoriginality,uncreativeness due to a lack of originality
+78747,unoriginality,the quality of being unoriginal
+78748,unorthodoxy heterodoxy,the quality of being unorthodox
+78749,unorthodoxy heterodoxy heresy,any opinions or doctrines at variance with the official or orthodox position
+78750,unpalatability unpalatableness,the property of being unacceptable to the mouth
+78751,unpalatability unpalatableness,the property of being unacceptable to the mind; "the policy's unpalatability caused an uproar"
+78752,unperceptiveness,the lack of insight and sympathetic understanding
+78753,unpermissiveness restrictiveness,a lack of permissiveness or indulgence and a tendency to confine behavior within certain specified limits
+78754,unpersuasiveness,inability to persuade
+78755,unpleasant_person disagreeable_person,a person who is not pleasant or agreeable
+78756,unpleasant_woman disagreeable_woman,a woman who is an unpleasant person
+78757,unpleasantness,the feeling caused by disagreeable stimuli; one pole of a continuum of states of feeling
+78758,unpleasantness,the quality of giving displeasure; "the recent unpleasantness of the weather"
+78759,unpleasingness,the quality of being unpleasant to to the senses
+78760,unpointedness,the property of having only a dull tip (if any)
+78761,unpopularity,the quality of lacking general approval or acceptance
+78762,unpredictability,lacking predictability
+78763,unpretentiousness,the quality of being natural and without pretensions
+78764,unproductiveness,the quality of lacking the power to produce
+78765,unprofitableness unprofitability,the quality of affording no gain or no benefit or no profit
+78766,unreality,the quality possessed by something that is unreal
+78767,unreality irreality,the state of being insubstantial or imaginary; not existing objectively or in fact
+78768,unrelatedness,the lack of any particular manner of connectedness
+78769,unrespectability disreputability disreputableness,dishonorableness by virtue of lacking respectability or a good reputation
+78770,unresponsiveness deadness,the quality of being unresponsive; not reacting; as a quality of people, it is marked by a failure to respond quickly or with emotion to people or events; "she began to recover from her numb unresponsiveness after the accident"; "in an instant all the deadness and withdrawal were wiped away"
+78771,unrest,a feeling of restless agitation
+78772,unrestraint,the quality of lacking restraint
+78773,unrighteousness,failure to adhere to moral principles; "forgave us our sins and cleansed us of all unrighteousness"
+78774,unruliness fractiousness willfulness wilfulness,the trait of being prone to disobedience and lack of discipline
+78775,unsanitariness,a state that is not conducive to health
+78776,unsatisfactoriness,the quality of being inadequate or unsuitable
+78777,unsaturated_fatty_acid,a fatty acid whose carbon chain can absorb additional hydrogen atoms
+78778,unscrupulousness,the quality of unscrupulous dishonesty
+78779,unseasonableness untimeliness,being at an inappropriate time
+78780,unsecured_bond debenture debenture_bond,the ability of a customer to obtain goods or services before payment, based on the trust that payment will be made in the future
+78781,unseemliness,a lack of consideration for others
+78782,unselfconsciousness,the quality of being not self-conscious; unawareness of yourself or of others' views of yourself; "he had the unselfconsciousness of a child"
+78783,unselfishness,the quality of not putting yourself first but being willing to give your time or money or effort etc. for others; "rural people show more devotion and unselfishness than do their urban cousins"
+78784,unsightliness,ugliness that is unpleasant to look at
+78785,unskilled_person,a person who lacks technical training
+78786,unskillfulness,a lack of cognitive skill
+78787,unsnarling untangling disentanglement extrication,the act of releasing from a snarled or tangled condition
+78788,unsociability unsociableness,an unsociable disposition; avoiding friendship or companionship
+78789,unsolvability insolubility,the property (of a problem or difficulty) that makes it impossible to solve
+78790,unsoundness,a condition of damage or decay
+78791,unsoundness,a misconception that is fallacious and not true or valid; "the unsoundness of his conclusion was obvious"
+78792,unsoundness,not mentally or physically healthy; "no one can be a poet without a certain unsoundness of mind"
+78793,unspoken_accusation veiled_accusation,an accusation that is understood without needing to be spoken
+78794,unsteadiness,the quality of being unsteady--varying and unpredictable
+78795,unsteadiness ricketiness,the quality of not being steady or securely fixed in place
+78796,unstratified_language,a programming language that (like natural language) can be used as its own metalanguage
+78797,unsuitability unsuitableness ineptness,the quality of having the wrong properties for a specific purpose
+78798,unsusceptibility immunity,the state of not being susceptible; "unsusceptibility to rust"
+78799,unthoughtfulness thoughtlessness,the trait of not thinking carefully before acting
+78800,untidiness,the condition of being untidy
+78801,untidiness messiness,the trait of being untidy and messy
+78802,untouchable Harijan,belongs to lowest social and ritual class in India
+78803,untrustworthiness untrustiness,the trait of not deserving trust or confidence
+78804,untruthfulness,the quality of being untruthful
+78805,untying undoing unfastening,loosening the ties that fasten something; "the tying of bow ties is an art; the untying is easy"
+78806,ununbium Uub element_112 atomic_number_112,a radioactive transuranic element
+78807,ununhexium Uuh element_116 atomic_number_116,a radioactive transuranic element
+78808,ununpentium Uup element_115 atomic_number_115,a radioactive transuranic element
+78809,ununquadium Uuq element_114 atomic_number_114,a radioactive transuranic element
+78810,ununtrium Uut element_113 atomic_number_113,a radioactive transuranic element
+78811,unusualness,uncommonness by virtue of being unusual
+78812,unvariedness,characterized by an absence of variation
+78813,unveiling,putting on display for the first time; "he attended the unveiling of the statue"
+78814,unwariness,the trait of not being cautious and watchful
+78815,unwelcome_person persona_non_grata,a person who for some reason is not wanted or welcome
+78816,unwholesomeness morbidness morbidity,the quality of being unhealthful and generally bad for you
+78817,unwieldiness,the quality of being difficult to direct or control by reason of complexity; "avoiding the unwieldiness of formal legal processes"; "the onset of unwieldiness and bureaucracy in large organizations"
+78818,unwillingness involuntariness,the trait of being unwilling; "his unwillingness to cooperate vetoed every proposal I made"; "in spite of our warnings he plowed ahead with the involuntariness of an automaton"
+78819,unworthiness,the quality or state of lacking merit or value
+78820,unwritten_law,law based on customary behavior
+78821,up-bow,an upward stroke from the tip to the heel of the bow
+78822,up-tick,a small increase; "the up-tick in terrorist activity"
+78823,up_quark,a stable quark with an electric charge of +2/3 and a mass 607 times that of an electron
+78824,upbeat offbeat,an unaccented beat (especially the last beat of a measure)
+78825,upbraider reprover reproacher rebuker,someone who finds fault or imputes blame
+78826,upbringing,properties acquired during a person's formative years
+78827,upcast,air passage consisting of a ventilation shaft through which air leaves a mine
+78828,update,information or data that updates; "do you have the latest software update?"; "I just heard the update on the unemployment figures"
+78829,update,the act of bringing someone or something up to date; "the server update ran overnight"; "the local news station broadcast a special weather update"
+78830,updating,the act of changing something to bring it up to date (usually by adding something); "criminal records need regular updating"
+78831,updraft,a strong upward air current
+78832,upgrade,software that provides better performance than an earlier version did
+78833,upgrade,a reservation that is improved; "I got an upgrade to first class when coach class was full"
+78834,upgrade,hardware that provides better performance than an earlier version did
+78835,upgrade,the act of improving something (especially machinery) by raising it to a higher grade (as by adding or replacing components); "the power plant received a new upgrade"
+78836,upgrade rise rising_slope,the property possessed by a slope or surface that rises
+78837,upheaval uplift upthrow upthrust,(geology) a rise of land to a higher elevation (as in the process of mountain building)
+78838,uphill,the upward slope of a hill
+78839,upholder maintainer sustainer,someone who upholds or maintains; "firm upholders of tradition"; "they are sustainers of the idea of democracy"
+78840,upholsterer,a craftsman who upholsters furniture
+78841,upholstery,covering (padding and springs and webbing and fabric) on a piece of furniture
+78842,upholstery,the craft of upholstering
+78843,upholstery_material,the fabric used in upholstering
+78844,upholstery_needle,any of several very heavy and sometimes curved sewing needles used by upholsterers
+78845,upland_cotton Gossypium_hirsutum,native tropical American plant now cultivated in the United States yielding short-staple cotton
+78846,upland_sandpiper upland_plover Bartramian_sandpiper Bartramia_longicauda,large plover-like sandpiper of North American fields and uplands
+78847,upland_white_aster Aster_ptarmicoides,tufted rigid North American perennial with loose clusters of white flowers
+78848,uplift,a brassiere that lifts and supports the breasts
+78849,uplifting,the rise of something; "the uplifting of the clouds revealed the blue of a summer sky"
+78850,uplink,a transmission from Earth to a spacecraft or the path of such a transmission
+78851,upper,piece of leather or synthetic material that forms the part of a shoe or boot above the sole that encases the foot; "Uppers come in many styles"
+78852,upper_berth upper,the higher of two berths
+78853,upper_bound,(mathematics) a number equal to or greater than any other number in a given set
+78854,upper_class upper_crust,the class occupying the highest position in the social hierarchy
+78855,upper_deck,a higher deck
+78856,upper_hand whip_hand,position of advantage and control
+78857,upper_jaw upper_jawbone maxilla maxillary,the jaw in vertebrates that is fused to the cranium
+78858,upper_limit,the limit on the upper (or northernmost) side of something
+78859,upper_mantle,the upper part of the mantle
+78860,upper_respiratory_infection,infection of the upper respiratory tract
+78861,upper_respiratory_tract,the nose and throat and trachea
+78862,upper_surface,the side that is uppermost
+78863,uppercut,a swinging blow directed upward (especially at an opponent's chin)
+78864,uppityness uppishness,assumption of airs beyond one's station
+78865,upright upright_piano,a piano with a vertical sounding board
+78866,upright vertical,a vertical structural member as a post or stake; "the ball sailed between the uprights"
+78867,uprightness rectitude,righteousness as a consequence of being honorable and honest
+78868,upset derangement overthrow,the act of disturbing the mind or body; "his carelessness could have caused an ecological upset"; "she was unprepared for this sudden overthrow of their normal way of living"
+78869,upset overturn turnover,the act of upsetting something; "he was badly bruised by the upset of his sled at a high speed"
+78870,upset swage,a tool used to thicken or spread metal (the end of a bar or a rivet etc.) by forging or hammering or swaging
+78871,upset_price,(auction) the minimum price at which a seller of property will entertain bids
+78872,upsetter,an unexpected winner; someone who defeats the favorite competitor
+78873,upside-down_cake skillet_cake,batter baked atop a layer of sweetened fruit then turned upside down so fruit is on top
+78874,upsilon,the 20th letter of the Greek alphabet
+78875,upstage,the rear part of the stage
+78876,upstager,a selfish actor who upstages the other actors
+78877,upstairs,the part of a building above the ground floor; "no one was allowed to see the upstairs"
+78878,upstart,an arrogant or presumptuous person
+78879,upstart parvenu nouveau-riche arriviste,a person who has suddenly risen to a higher economic status but has not gained social acceptance of others in that class
+78880,upstroke,a stroke normally made in an upward direction
+78881,uptake,a process of taking up or using up or consuming; "they developed paper napkins with a greater uptake of liquids"
+78882,uptick,a transaction in the stock market at a price above the price of the preceding transaction
+78883,uptime,a period of time when something (as a machine or factory) is functioning and available for use
+78884,uptown,a residential part of town away from the central commercial district
+78885,upturn,an upward movement or trend as in business activity
+78886,uracil U,a base containing nitrogen that is found in RNA (but not in DNA) and derived from pyrimidine; pairs with adenine
+78887,uraninite pitchblende,a mineral consisting of uranium oxide and trace amounts of radium and thorium and polonium and lead and helium; uraninite in massive form is called pitchblende which is the chief uranium ore
+78888,uranium U atomic_number_92,a heavy toxic silvery-white radioactive metallic element; occurs in many isotopes; used for nuclear fuels and nuclear weapons
+78889,uranium_235,a uranium isotope with mass number 235; capable of sustaining chain reactions
+78890,uranium_238,the commonest isotope of uranium; it is not fissionable but when irradiated with neutrons it produces fissionable plutonium 239
+78891,uranium_ore,any ore from which uranium can be extracted
+78892,uranoplasty,surgical correction of a defect of the palate
+78893,uranyl uranyl_group uranyl_radical,the bivalent radical UO2 which forms salts with acids
+78894,uranyl_nitrate,a yellow salt obtained by the reaction of uranium salts with nitric acid
+78895,uranyl_oxalate,a salt obtained by the reaction of uranium salts with oxalic acid
+78896,urate,a salt of uric acid
+78897,uratemia,presence of abnormal amounts of uric acid salts in the blood; symptom of gout
+78898,uraturia,presence of abnormally large amounts of uric acid in the urine; symptom of gout
+78899,urban_area populated_area,a geographical area constituting a city or town
+78900,urban_guerrilla,a guerrilla who fights only in cities and towns
+78901,urban_legend,a story that appears mysteriously and spreads spontaneously in various forms and is usually false; contains elements of humor or horror and is popularly believed to be true
+78902,urban_planning,the branch of architecture dealing with the design and organization of urban space and activities
+78903,urban_renewal,the clearing and rebuilding and redevelopment of urban slums
+78904,urbanity,polished courtesy; elegance of manner
+78905,urbanity,the quality or character of life in a city or town; "there is an important difference between rusticity and urbanity"
+78906,urbanization urbanisation,the condition of being urbanized
+78907,urbanization urbanisation,the social process whereby cities grow and societies become more urban
+78908,urceole,a vessel that holds water for washing the hands
+78909,urchin,poor and often mischievous city child
+78910,urea carbamide,the chief solid component of mammalian urine; synthesized from ammonia and carbon dioxide and used as fertilizer and in animal feed and in plastics
+78911,urea-formaldehyde_resin,a clear thermosetting resin made from urea and formaldehyde and used in electrical fittings, adhesives, and finishes
+78912,urease,an enzyme that catalyzes the hydrolysis of urea into carbon dioxide and ammonia; is present in intestinal bacteria
+78913,uremia uraemia azotemia azotaemia,accumulation in the blood of nitrogenous waste products (urea) that are usually excreted in the urine
+78914,ureter,either of a pair of thick-walled tubes that carry urine from the kidney to the urinary bladder
+78915,ureteritis,inflammation of the ureter
+78916,ureterocele,prolapse of the end of the ureter into the bladder; may obstruct urine flow
+78917,ureterorenal_reflux,a backflow of urine from the ureter into the renal pelvis
+78918,ureterostenosis,stenosis of the ureter
+78919,urethane,an ester of carbamic acid
+78920,urethra,duct through which urine is discharged in most mammals and which serves as the male genital duct
+78921,urethral_orifice external_orifice,the orifice through which urine is discharged
+78922,urethral_sphincter musculus_sphincter_urethrae,a striated sphincter muscle that constricts the urethra
+78923,urethritis,inflammation of the urethra; results in painful urination
+78924,urethrocele,prolapse of the urethra into the vagina
+78925,urge impulse,an instinctive motive; "profound religious impulses"
+78926,urge itch,a strong restless desire; "why this urge to travel?"
+78927,urge_incontinence,urinary incontinence that is generally attributable to involuntary contracts of the bladder muscle resulting in an urgent need to urinate accompanied by a sudden loss of urine; most common in people over 60 years of age
+78928,urgency,the state of being urgent; an earnest and insistent necessity
+78929,urgency,an urgent situation calling for prompt action; "I'll be there, barring any urgencies"; "they departed hurriedly because of some great urgency in their affairs"
+78930,urgency,pressing importance requiring speedy action; "the urgency of his need"
+78931,urging,the act of earnestly supporting or encouraging
+78932,urial Ovis_vignei,bearded reddish sheep of southern Asia
+78933,uric_acid,a white tasteless odorless crystalline product of protein metabolism; found in the blood and urine
+78934,uricaciduria,presence of abnormal amounts of uric acid in the urine; symptom of gout
+78935,urinal,a plumbing fixture (usually attached to the wall) used by men to urinate
+78936,urinalysis uranalysis,(medicine) the chemical analysis of urine (for medical diagnosis)
+78937,urinary_bladder,a membranous sac for temporary retention of urine
+78938,urinary_hesitancy,difficulty in beginning the flow of urine; associated with prostate enlargement in men and with narrowing of the urethral opening in women; may be caused by emotional stress in either men or women
+78939,urinary_retention,holding urine in the urinary bladder; "he has a problem with urinary retention"
+78940,urinary_tract,the organs and tubes involved in the production and excretion of urine
+78941,urinary_tract_infection,any infection of any of the organs of the urinary tract
+78942,urine piss pee piddle weewee water,liquid excretory product; "there was blood in his urine"; "the child had to make water"
+78943,urn,a large pot for making coffee or tea
+78944,urn,a large vase that usually has a pedestal or feet
+78945,urobilin,brown bile pigment formed from urobilinogens and found in feces and in small amounts in urine
+78946,urobilinogen stercobilinogen,a chromogen formed in the intestine from the breakdown of bilirubin; yields urobilins on oxidation; some is excreted in the feces and some is resorbed and excreted in bile or urine
+78947,urocele,extravasation of urine into the scrotal sac
+78948,urochesia urochezia,passage of urine from the anus
+78949,urochord,a notochord of a larval tunicate typically confined to the caudal region
+78950,urodele caudate,amphibians that resemble lizards
+78951,urodynia,pain during urination
+78952,urogenital_system urogenital_apparatus urinary_system urinary_apparatus genitourinary_system genitourinary_apparatus systema_urogenitale apparatus_urogenitalis,the system that includes all organs involved in reproduction and in the formation and voidance of urine
+78953,urolith,a urinary stone
+78954,urologist,a specialist in urology
+78955,urology urogenital_medicine,the branch of medicine that deals with the diagnosis and treatment of disorders of the urinary tract or urogenital system
+78956,uropathy,any pathology of the urinary tract
+78957,uropygial_gland preen_gland,oil-secreting gland situated at the base of the tail in most birds
+78958,uropygium,posterior part of a bird's body from which the tail feathers grow
+78959,ursinia,any of various plants of the genus Ursinia grown for their yellow- or orange- or white-rayed flowers
+78960,urtication,a sensation of having been stung by nettles
+78961,urtication urticaria hives nettle_rash,an itchy skin eruption characterized by weals with pale interiors and well-defined red margins; usually the result of an allergic response to insect bites or food or drugs
+78962,usage,the customary manner in which a language (or a form of a language) is spoken or written; "English usage"; "a usage borrowed from French"
+78963,usance,the period of time permitted by commercial usage for the payment of a bill of exchange (especially a foreign bill of exchange)
+78964,use,a particular service; "he put his knowledge to good use"; "patrons have their uses"
+78965,use enjoyment,(law) the exercise of the legal right to enjoy the benefits of owning property; "we were given the use of his boat"
+78966,use usage utilization utilisation employment exercise,the act of using; "he warned against the use of narcotic drugs"; "skilled in the utilization of computers"
+78967,use_immunity testimonial_immunity,an exemption that displaces the privilege against self-incrimination; neither compelled testimony or any fruits of it can be used against the witness who therefore can no longer fear self-incrimination
+78968,used-car secondhand_car,a car that has been previously owned; not a new car
+78969,used-car_lot,a parking lot where a dealer in used-cars displays cars for sale
+78970,user,a person who makes use of a thing; someone who uses or employs something
+78971,usher doorkeeper,an official stationed at the entrance of a courtroom or legislative chamber
+78972,usher guide,someone employed to conduct others
+78973,usherette,a female usher
+78974,ushering_in,the introduction of something new; "it signalled the ushering in of a new era"
+78975,usualness,commonness by virtue of not being unusual
+78976,usufruct,a legal right to use and derive profit from property belonging to someone else provided that the property itself is not injured in any way
+78977,usufructuary,someone who holds property by usufruct
+78978,usurer loan_shark moneylender shylock,someone who lends money at excessive rates of interest
+78979,usurpation,wrongfully seizing and holding (an office or powers) by force (especially the seizure of a throne or supreme authority); "a succession of generals who ruled by usurpation"
+78980,usurper supplanter,one who wrongfully or illegally seizes and holds the place of another
+78981,usury,the act of lending money at an exorbitant rate of interest
+78982,usury vigorish,an exorbitant or unlawful rate of interest
+78983,utahraptor superslasher,large (20-ft) and swift carnivorous dinosaur having an upright slashing claw 15 inches long on each hind foot; early Cretaceous
+78984,utensil,an implement for practical use (especially in a household)
+78985,uterine_artery arteria_uterina,a branch of the internal iliac artery that supplies the uterus and the upper part of the vagina
+78986,uterine_cavity,the space inside the uterus between the cervical canal and the Fallopian tubes
+78987,uterine_contraction,a rhythmic tightening in labor of the upper uterine musculature that contracts the size of the uterus and pushes the fetus toward the birth canal
+78988,uterine_vein,one of two veins on each side that arise from the uterine plexus and empty into the internal iliac vein
+78989,uterus womb,a hollow muscular organ in the pelvic cavity of females; contains the developing fetus
+78990,utilitarian,someone who believes that the value of a thing depends on its utility
+78991,utilitarianism,doctrine that the useful is the good; especially as elaborated by Jeremy Bentham and James Mill; the aim was said to be the greatest happiness for the greatest number
+78992,utility,(economics) a measure that is to be maximized in any situation involving choice
+78993,utility,a facility composed of one or more pieces of equipment connected to or part of a structure and designed to provide a service such as heat or electricity or water or sewage disposal; "the price of the house included all utilities"
+78994,utility,the service (electric power or water or transportation) provided by a public utility; "the cost of utilities never decreases"; "all the utilities were lost after the hurricane"
+78995,utility public_utility public_utility_company public-service_corporation,a company that performs a public service; subject to government regulation
+78996,utility usefulness,the quality of being of practical use
+78997,utility_bond utility_revenue_bond,a bond issued to finance the construction of public utility services
+78998,utility_man,a baseball player valued for the ability to play at several positions
+78999,utility_man,a workman expected to serve in any capacity when called on
+79000,utility_program utility service_program,(computer science) a program designed for general support of the processes of a computer; "a computer system provides utility programs to perform the tasks needed by most users"
+79001,utility_routine service_routine,a routine that can be used as needed
+79002,utilization,the state of having been made use of; "the rate of utilization"
+79003,utilizer utiliser,someone who puts to good use; "not all organisms are utilizers of oxygen"; "the social agencies and their utilizers both objected to the budget cut"
+79004,utmost uttermost maximum level_best,the greatest possible degree; "he tried his utmost"
+79005,utopia,ideally perfect state; especially in its social and political and moral aspects
+79006,utopia,a work of fiction describing a utopia
+79007,utopian_socialism,socialism achieved by voluntary sacrifice
+79008,utricle utriculus,a small pouch into which the semicircular canals open
+79009,utterance vocalization,the use of uttered sounds for auditory communication
+79010,utterer,someone who circulates forged banknotes or counterfeit coins
+79011,utterer vocalizer vocaliser,an organism that can utter vocal sounds; "an utterer of foul oaths"; "is the giraffe a vocalizer?"
+79012,uvea,the part of the eye that contains the iris and ciliary body and choroid
+79013,uveitis,inflammation of the uvea of the eye
+79014,uveoscleral_pathway,a tubule that drains excess aqueous humor
+79015,uvula,a small pendant fleshy lobe at the back of the soft palate
+79016,uvulitis,inflammation of the uvula
+79017,uxor ux.,(legal terminology) the Latin word for wife
+79018,uxoricide,a husband who murders his wife
+79019,uxoricide,the murder of a wife by her husband
+79020,uxoriousness,foolish fondness for or excessive submissiveness to one's wife
+79021,vac vacay,informal term for vacation
+79022,vacancy,being unoccupied
+79023,vacancy_rate,the percentage of all rental units (as in hotels) that are unoccupied or not rented at a given time
+79024,vacant_lot building_site,a lot on which there are no permanent buildings
+79025,vacation,the act of making something legally void
+79026,vacation holiday,leisure time away from work devoted to rest or pleasure; "we get two weeks of vacation every summer"; "we took a short holiday in Puerto Rico"
+79027,vacation_home,a dwelling (a second home) where you live while you are on vacation
+79028,vacationer vacationist,someone on vacation; someone who is devoting time to pleasure or relaxation rather than to work
+79029,vacationing,the act of taking a vacation
+79030,vaccination,the scar left following inoculation with a vaccine
+79031,vaccine vaccinum,immunogen consisting of a suspension of weakened or dead pathogenic cells injected in order to stimulate the production of antibodies
+79032,vaccinee,a patient who has been vaccinated
+79033,vaccinia vaccina variola_vaccine variola_vaccinia variola_vaccina,a local infection induced in humans by inoculation with the virus causing cowpox in order to confer resistance to smallpox; normally lasts three weeks and leaves a pitted scar
+79034,vacuole,a tiny cavity filled with fluid in the cytoplasm of a cell
+79035,vacuolization vacuolisation vacuolation,the state of having become filled with vacuoles
+79036,vacuousness,indicative of or marked by mental vacuity and an absence of ideas; "the vacuousness of her face belied her feelings"
+79037,vacuum vacuity,the absence of matter
+79038,vacuum vacuity,a region that is devoid of matter
+79039,vacuum vacuum_cleaner,an electrical home appliance that cleans by suction
+79040,vacuum_chamber,a chamber from which nearly all matter (especially air) has been removed
+79041,vacuum_flask vacuum_bottle,flask with double walls separated by vacuum; used to maintain substances at high or low temperatures
+79042,vacuum_gauge vacuum_gage,a gauge for indicating negative atmospheric pressure
+79043,vagabond,anything that resembles a vagabond in having no fixed place; "pirate ships were vagabonds of the sea"
+79044,vagary,an unexpected and inexplicable change in something (in a situation or a person's behavior, etc.); "the vagaries of the weather"; "his wealth fluctuates with the vagaries of the stock market"; "he has dealt with human vagaries for many years"
+79045,vagina,the lower part of the female reproductive tract; a moist canal in female mammals extending from the labia minora to the uterus; "the vagina receives the penis during coitus"; "the vagina is elastic enough to allow the passage of a fetus"
+79046,vaginal_artery arteria_vaginalis,a branch of the internal iliac that provides blood for the vagina and the base of the bladder and the rectum
+79047,vaginal_discharge,discharge of secretions from the cervical glands of the vagina; normally clear or white
+79048,vaginal_smear,smear taken from the vaginal mucosa for cytological analysis
+79049,vaginismus,muscular contraction that causes the vagina to close; usually an anxiety reaction before coitus or pelvic examination
+79050,vaginitis,inflammation of the vagina (usually associated with candidiasis)
+79051,vagrancy,the state of wandering from place to place; having no permanent home or means of livelihood
+79052,vagrant drifter floater vagabond clochard,a wanderer who has no established residence or visible means of support
+79053,vagueness,unclearness by virtue of being poorly expressed or not coherent in meaning; "the Conservative manifesto is a model of vagueness"; "these terms were used with a vagueness that suggested little or no thought about what each might convey"
+79054,vagueness,indistinctness of shape or character; "the scene had the swirling vagueness of a painting by Turner"
+79055,vagus vagus_nerve nervus_vagus pneumogastric pneumogastric_nerve tenth_cranial_nerve wandering_nerve,a mixed nerve that supplies the pharynx and larynx and lungs and heart and esophagus and stomach and most of the abdominal viscera
+79056,vaisya,the third of the four varnas: the commoners or yeoman farmers or mercantile and professional category
+79057,valdecoxib Bextra,a Cox-2 inhibitor (trade name Bextra) that relieves pain and inflammation without harming the digestive tract
+79058,valediction,the act of saying farewell
+79059,valediction valedictory_address valedictory_oration valedictory,a farewell oration (especially one delivered during graduation exercises by an outstanding member of a graduating class)
+79060,valedictorian valedictory_speaker,the student with the best grades who usually delivers the valedictory address at commencement
+79061,valence valency,(biology) a relative capacity to unite or react or interact as with antigens or a biological substrate
+79062,valence valency,(chemistry) a property of atoms or radicals; their combining power given in terms of the number of hydrogen atoms (or the equivalent)
+79063,valence_electron,an electron in the outer shell of an atom which can combine with other atoms to form molecules
+79064,valency,the phenomenon of forming chemical bonds
+79065,valentine,a sweetheart chosen to receive a greeting on Saint Valentine's Day; "will you be my valentine?"
+79066,valerian,a plant of the genus Valeriana having lobed or dissected leaves and cymose white or pink flowers
+79067,valeric_acid pentanoic_acid,a clear liquid carboxylic acid used in perfumes and drugs
+79068,valet valet_de_chambre gentleman gentleman's_gentleman man,a manservant who acts as a personal attendant to his employer; "Jeeves was Bertie Wooster's man"
+79069,valet_parking,a service provided (at a club or restaurant or airport etc.) whereby a patron leaves a car at the entrance and an attendant parks and retrieves it
+79070,valetudinarian,weak or sickly person especially one morbidly concerned with his or her health
+79071,valgus,a deformity in which there is an abnormal displacement of part of a limb away from the midline of the body
+79072,validation proof substantiation,the act of validating; finding or testing the truth of something
+79073,validity validness,the quality of having legal force or effectiveness
+79074,valine,an essential amino acid found in proteins; important for growth in children and nitrogen balance in adults
+79075,valise,a small overnight bag for short trips
+79076,valley vale,a long depression in the surface of the land that usually contains a river
+79077,valley_girl,a girl who grew up in the tract housing in the San Fernando Valley
+79078,valley_pocket_gopher Thomomys_bottae,of valleys and mountain meadows of western United States
+79079,valproic_acid Depokene,anticonvulsant (trade name Depokene) used to prevent some kinds of seizures
+79080,valsartan Diovan,an angiotensin II inhibitor that is used to treat high blood pressure
+79081,valuable,something of value; "all our valuables were stolen"
+79082,valuation,assessed price; "the valuation of this property is much too high"
+79083,valuation_reserve valuation_account allowance allowance_account,a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets
+79084,value,an ideal accepted by some individual or group; "he has old-fashioned values"
+79085,value,a numerical quantity measured or assigned or computed; "the value assigned was 16 milliseconds"
+79086,value,the quality (positive or negative) that renders something desirable or valuable; "the Shakespearean Shylock is of dubious value in the modern world"
+79087,value,relative darkness or lightness of a color; "I establish the colors and principal values by organizing the painting into three values--dark, medium...and light"-Joe Hing Lowe
+79088,value economic_value,the amount (of money or goods or services) that is considered to be a fair equivalent for something else; "he tried to estimate the value of the produce at normal prices"
+79089,value time_value note_value,(music) the relative duration of a musical note
+79090,value_judgment value_judgement,an assessment that reveals more about the values of the person making the assessment than about the reality of what is assessed
+79091,value_statement,a statement of the desirability of something
+79092,valuelessness,having none of the properties that endow something with value
+79093,valuer,someone who assesses the monetary worth of possessions
+79094,values,beliefs of a person or social group in which they have an emotional investment (either for or against something); "he has very conservatives values"
+79095,valve,a structure in a hollow organ (like the heart) with a flap to insure one-way flow of fluid through it
+79096,valve,device in a brass wind instrument for varying the length of the air column to alter the pitch of a tone
+79097,valve,control consisting of a mechanical device for controlling the flow of a fluid
+79098,valve,the entire one-piece shell of a snail and certain other molluscs
+79099,valve,one of the paired hinged shells of certain molluscs and of brachiopods
+79100,valve-in-head_engine,internal-combustion engine having both inlet and exhaust valves located in the cylinder head
+79101,valvotomy valvulotomy,incision into a stenosed cardiac valve to relieve the obstruction
+79102,valvular_heart_disease,heart disease caused by stenosis of the cardiac valves and obstructed blood flow or caused by degeneration and blood regurgitation
+79103,valvular_incompetence,inability of a bodily valve to close completely
+79104,valvule valvelet valvula,a small valve
+79105,valvulitis,inflammation of a valve (especially of a cardiac valve as a consequence of rheumatic fever)
+79106,vambrace lower_cannon,cannon of plate armor protecting the forearm
+79107,vamp,an improvised musical accompaniment
+79108,vamp,piece of leather forming the front part of the upper of a shoe
+79109,vampire lamia,(folklore) a corpse that rises at night to drink the blood of the living
+79110,vampire_bat true_vampire_bat,any of various tropical American bats of the family Desmodontidae that bite mammals and birds to feed on their blood
+79111,vampirism,belief in the existence of vampires
+79112,vampirism,the actions or practices of a vampire
+79113,van,(Great Britain) a closed railroad car that carries baggage or freight
+79114,van,a truck with an enclosed cargo space
+79115,van caravan,a camper equipped with living quarters
+79116,van_Gogh Vincent_van_Gogh Gogh,Dutch Post-impressionist painter noted for his use of color (1853-1890)
+79117,van_de_Velde Henri_van_de_Velde Henri_Clemens_van_de_Velde,Belgian architect (1863-1957)
+79118,van_der_Waal's_forces,relatively weak attraction between neutral atoms and molecules arising from polarization induced in each particle by the presence of other particles
+79119,van_der_Waals Johannes_van_der_Waals Johannes_Diderik_van_der_Waals,Dutch physicist (1837-1923)
+79120,vanadate,a salt or ester of vanadic acid; an anion containing pentavalent vanadium
+79121,vanadinite,a mineral consisting of chloride and vanadate of lead; a source of vanadium
+79122,vanadium V atomic_number_23,a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite
+79123,vanadium_pentoxide vanadic_acid,any of various oxyacids of vanadium; known mostly in the form of its salts
+79124,vanadium_steel,steel alloyed with vanadium for greater strength and high-temperature stability
+79125,vancomycin Vancocin,an antibiotic (trade name Vancocin) effective against some bacterial infections
+79126,vanda,any of numerous showy orchids of the genus Vanda having many large flowers in loose racemes
+79127,vandal,someone who willfully destroys or defaces property
+79128,vandalism hooliganism malicious_mischief,willful wanton and malicious destruction of the property of others
+79129,vandyke_beard vandyke,a short pointed beard (named after the artist Anthony Vandyke)
+79130,vane,a fin attached to the tail of an arrow, bomb or missile in order to stabilize or guide it
+79131,vane web,the flattened weblike part of a feather consisting of a series of barbs on either side of the shaft
+79132,vanguard forefront cutting_edge,the position of greatest importance or advancement; the leading position in any movement or field; "the Cotswolds were once at the forefront of woollen manufacturing in England"; "the idea of motion was always to the forefront of his mind and central to his philosophy"
+79133,vanguard van,the leading units moving at the head of an army
+79134,vanilla,any of numerous climbing plants of the genus Vanilla having fleshy leaves and clusters of large waxy highly fragrant white or green or topaz flowers
+79135,vanilla,a distinctive fragrant flavor characteristic of vanilla beans
+79136,vanilla vanilla_extract,a flavoring prepared from vanilla beans macerated in alcohol (or imitating vanilla beans)
+79137,vanilla_bean,long bean-like fruit; seeds are used as flavoring
+79138,vanilla_ice_cream,ice cream flavored with vanilla extract
+79139,vanilla_orchid Vanilla_planifolia,a climbing orchid bearing a podlike fruit yielding vanilla beans; widely cultivated from Florida southward throughout tropical America
+79140,vanilla_pudding,sweet vanilla flavored custard-like pudding usually thickened with flour rather than eggs
+79141,vanillin,a crystalline compound found in vanilla beans and some balsam resins; used in perfumes and flavorings
+79142,vanisher,a person who disappears
+79143,vanishing,a sudden or mysterious disappearance
+79144,vanishing,a sudden disappearance from sight
+79145,vanishing_point,the point beyond which something disappears or ceases to exist
+79146,vanishing_point,the appearance of a point on the horizon at which parallel lines converge
+79147,vanity emptiness,the quality of being valueless or futile; "he rejected the vanities of the world"
+79148,vanity_fair,a vain and frivolous lifestyle especially in large cities
+79149,vantage,place or situation affording some advantage (especially a comprehensive view or commanding perspective)
+79150,vantage_point viewpoint,a place from which something can be viewed; "from that vantage point he could survey the whole valley"
+79151,vapor vapour,a visible suspension in the air of particles of some substance
+79152,vapor_density vapour_density,the density of a gas relative to the density of hydrogen
+79153,vapor_lock vapour_lock,a stoppage in a pipeline caused by gas bubbles (especially a stoppage that develops in hot weather in an internal-combustion engine when fuel in the gas line boils and forms bubbles that block the flow of gasoline to the carburetor)
+79154,vapor_pressure vapour_pressure,the pressure exerted by a vapor; often understood to mean saturated vapor pressure (the vapor pressure of a vapor in contact with its liquid form)
+79155,vaporization vaporisation,annihilation by vaporizing something
+79156,vaporization vaporisation vapor vapour evaporation,the process of becoming a vapor
+79157,vaporizer vaporiser,a device that puts out a substance in the form of a vapor (especially for medicinal inhalation)
+79158,vaquero buckaroo buckeroo,local names for a cowboy (`vaquero' is used especially in southwestern and central Texas and `buckaroo' is used especially in California)
+79159,vaquita Phocoena_sinus,a short porpoise that lives in the Gulf of California; an endangered species
+79160,vara,a Spanish unit of length (about a yard) having different values in different localities
+79161,vardenafil Levitra,virility drug (trade name Levitra) used to treat erectile dysfunction in men
+79162,variability variableness variance,the quality of being subject to variation
+79163,variable,something that is likely to vary; something that is subject to variation; "the weather is one variable to be considered"
+79164,variable,a symbol (like x or y) that is used in mathematical or logical expressions to represent a variable quantity
+79165,variable variable_quantity,a quantity that can assume any of a set of values
+79166,variable-pitch_propeller,propeller for which the angle of the blades is adjustable
+79167,variable_star variable,a star that varies noticeably in brightness
+79168,variance,the second moment around the mean; the expected value of the square of the deviations of a random variable from its mean value
+79169,variance,an official dispensation to act contrary to a rule or regulation (typically a building regulation); "a zoning variance"
+79170,variation,the process of varying or being varied
+79171,variation,(astronomy) any perturbation of the mean motion or orbit of a planet or satellite (especially a perturbation of the earth's moon)
+79172,variation,a repetition of a musical theme in which it is modified or embellished
+79173,variation,an artifact that deviates from a norm or standard; "he patented a variation on the sandal"
+79174,variation,the act of changing or altering something slightly but noticeably from the norm or standard; "who is responsible for these variations in taxation?"
+79175,variation fluctuation,an instance of change; the rate or magnitude of change
+79176,variation variance,an activity that varies from a norm or standard; "any variation in his routine was immediately reported"
+79177,varicella_zoster_virus,the member of the herpes virus family that is responsible for chickenpox
+79178,varicocele,dilatation of the veins associated with the spermatic cord in the testes
+79179,varicose_vein,a vein that is permanently dilated; most common in the legs
+79180,varicosis,pathological condition of being varicose or having varicose veins
+79181,varicosity,varix or varicose condition in which a vein is swollen and tortuous
+79182,varied_Lorikeet Glossopsitta_versicolor,lorikeet with a colorful coat
+79183,variedness,characterized by variation
+79184,variegated_horsetail variegated_scouring_rush Equisetum_variegatum,northern North America; Greenland; northern and central Europe
+79185,variegation,variability in coloration
+79186,varietal varietal_wine,a wine made principally from one grape and carrying the name of that grape
+79187,variety,(biology) a taxonomic category consisting of members of a species that differ from others of the same species in minor but heritable characteristics; "varieties are frequently recognized in botany"
+79188,variety change,a difference that is usually pleasant; "he goes to France for variety"; "it is a refreshing change to meet a woman mechanic"
+79189,variety_meat organs,edible viscera of a butchered animal
+79190,variety_show variety,a show consisting of a series of short unrelated performances
+79191,variola_major variola_major_virus,a type of smallpox virus that has a fatality rate of up to 25 percent
+79192,variola_minor variola_minor_virus,a type of smallpox virus that has a fatality rate of about 1 percent
+79193,variola_virus smallpox_virus,the virus that causes smallpox in humans; can be used as a bioweapon
+79194,variolation variolization,the obsolete process of inoculating a susceptible person with material taken from a vesicle of a person who has smallpox
+79195,variometer,a measuring instrument for measuring variations in a magnetic field
+79196,variorum variorum_edition,an edition containing various versions of a text or notes by various scholars or editors
+79197,variously-leaved_pondweed Potamogeton_gramineous,of Europe (except the Mediterranean area) and the northern United States
+79198,varix,abnormally enlarged or twisted blood vessel or lymphatic vessel
+79199,varmint varment,any usually predatory wild animal considered undesirable; e.g., coyote
+79200,varna,(Hinduism) the name for the original social division of Vedic people into four groups (which are subdivided into thousands of jatis)
+79201,varnish,a coating that provides a hard, lustrous, transparent finish to a surface
+79202,varnish_tree lacquer_tree Chinese_lacquer_tree Japanese_lacquer_tree Japanese_varnish_tree Japanese_sumac Toxicodendron_vernicifluum Rhus_verniciflua,small Asiatic tree yielding a toxic exudate from which lacquer is obtained
+79203,varnisher,someone who applies a finishing coat of varnish
+79204,varsity,a British abbreviation of `university'; usually refers to Oxford University or Cambridge University
+79205,varsity first_team,a team representing a college or university
+79206,varus,a deformity in which part of a limb is turned inward to an abnormal degree
+79207,vas_deferens ductus_deferens,a duct that carries spermatozoa from the epididymis to the ejaculatory duct
+79208,vasa_efferentia,the several highly convoluted tubules that lead from the rete testis to the vas deferens and form the head of the epididymis
+79209,vasa_vasorum,any small blood vessel ramifying on the outside of a major artery or vein
+79210,vascular_bundle vascular_strand fibrovascular_bundle,a unit strand of the vascular system in stems and leaves of higher plants consisting essentially of xylem and phloem
+79211,vascular_plant tracheophyte,green plant having a vascular system: ferns, gymnosperms, angiosperms
+79212,vascular_ray medullary_ray,a sheet of vascular tissue separating the vascular bundles
+79213,vascular_structure,a structure composed of or provided with blood vessels
+79214,vascular_system,the vessels and tissue that carry or circulate fluids such as blood or lymph or sap through the body of an animal or plant
+79215,vascular_tissue,tissue that conducts water and nutrients through the plant body in higher plants
+79216,vascularity,the property being vascular; "a prominent vascularity"
+79217,vascularization vascularisation,the organic process whereby body tissue becomes vascular and develops capillaries
+79218,vasculitis,inflammation of a blood vessel
+79219,vase,an open jar of glass or porcelain used as an ornament or to hold flowers
+79220,vasectomy,surgical procedure that removes all or part of the vas deferens (usually as a means of sterilization); is sometimes reversible
+79221,vasoconstriction,decrease in the diameter of blood vessels
+79222,vasoconstrictor vasoconstrictive pressor,any agent that causes a narrowing of an opening of a blood vessel: cold or stress or nicotine or epinephrine or norepinephrine or angiotensin or vasopressin or certain drugs; maintains or increases blood pressure
+79223,vasodilation,dilation of blood vessels (especially the arteries)
+79224,vasodilator vasodilative,a drug that causes dilation of blood vessels
+79225,vasopressin antidiuretic_hormone ADH Pitressin,hormone secreted by the posterior pituitary gland (trade name Pitressin) and also by nerve endings in the hypothalamus; affects blood pressure by stimulating capillary muscles and reduces urine flow by affecting reabsorption of water by kidney tubules
+79226,vasopressor,any agent that produces vasoconstriction and a rise in blood pressure (usually understood as increased arterial pressure)
+79227,vasotomy vasosection,surgical incision into or division of the vas deferens
+79228,vasovasostomy,a surgical procedure that attempts to restore the function of the vas deferens after a vasectomy
+79229,vasovesiculitis,inflammation of the vas deferens and seminal vesicles; usually occurring with prostatitis
+79230,vassal liege liegeman liege_subject feudatory,a person holding a fief; a person who owes allegiance and service to a feudal lord
+79231,vat_dye vat_color,a water-insoluble dye that is applied by reducing the dye to an alkaline form, applying the dye, then regenerating the insoluble dye by oxidation in the material; used for dyeing cotton
+79232,vaudeville music_hall,a variety show with songs and comic acts etc.
+79233,vaudevillian,a performer who works in vaudeville
+79234,vault,an arched brick or stone ceiling or roof
+79235,vault bank_vault,a strongroom or compartment (often made of steel) for safekeeping of valuables
+79236,vault burial_vault,a burial chamber (usually underground)
+79237,vault hurdle,the act of jumping over an obstacle
+79238,vaulter pole_vaulter pole_jumper,an athlete who jumps over a high crossbar with the aid of a long pole
+79239,vaulting,(architecture) a vaulted structure; "arches and vaulting"
+79240,vaulting_horse long_horse buck,a gymnastic horse without pommels and with one end elongated; used lengthwise for vaulting
+79241,vaunt,extravagant self-praise
+79242,veal veau,meat from a calf
+79243,veal_cordon_bleu,thin slices of veal stuffed with cheese and ham and then sauteed
+79244,veal_parmesan veal_parmigiana,sauteed veal cutlet in a breadcrumb-and-cheese coating served with tomato sauce
+79245,veal_roast roast_veal,cut of veal suitable for roasting
+79246,veal_scallopini,thin sauteed cutlets of veal
+79247,vector,a straight line segment whose length is magnitude and whose orientation in space is direction
+79248,vector,a variable quantity that can be resolved into components
+79249,vector,(genetics) a virus or other agent that is used to deliver DNA to a cell
+79250,vector transmitter,any agent (person or animal or microorganism) that carries and transmits a disease; "mosquitos are vectors of malaria and yellow fever"; "fleas are vectors of the plague"; "aphids are transmitters of plant diseases"; "when medical scientists talk about vectors they are usually talking about insects"
+79251,vector-borne_transmission,indirect transmission of an infectious agent that occurs when a vector bites or touches a person
+79252,vector_algebra,the part of algebra that deals with the theory of vectors and vector spaces
+79253,vector_product cross_product,a vector that is the product of two other vectors
+79254,vector_sum resultant,a vector that is the sum of two or more other vectors
+79255,vedalia Rodolia_cardinalis,native to Australia; introduced elsewhere to control scale insects
+79256,veery Wilson's_thrush Hylocichla_fuscescens,tawny brown North American thrush noted for its song
+79257,vegan,a strict vegetarian; someone who eats no animal or dairy products at all
+79258,vegetable,any of various herbaceous plants cultivated for an edible part such as the fruit or the root of the beet or the leaf of spinach or the seeds of bean plants or the flower buds of broccoli or cauliflower
+79259,vegetable veggie veg,edible seeds or roots or stems or leaves or bulbs or tubers or nonsweet fruits of any of numerous herbaceous plant
+79260,vegetable_matter,matter produced by plants or growing in the manner of a plant
+79261,vegetable_oil oil,any of a group of liquid edible fats that are obtained from plants
+79262,vegetable_sheep sheep_plant Haastia_pulvinaris,cushion-forming New Zealand herb having leaves densely covered with tawny hairs
+79263,vegetable_tallow,a waxy fat obtained from certain plants (e.g. bayberry) and used as tallow
+79264,vegetable_wax,a waxy substance obtained from plants (especially from the trunks of certain palms)
+79265,vegetarian,eater of fruits and grains and nuts; someone who eats no meat or fish or (often) any animal products
+79266,vegetarianism,a diet excluding all meat and fish
+79267,vegetation,the process of growth in plants
+79268,vegetation,an abnormal growth or excrescence (especially a warty excrescence on the valves of the heart)
+79269,vegetation,inactivity that is passive and monotonous, comparable to the inactivity of plant life; "their holiday was spent in sleep and vegetation"
+79270,vegetation flora botany,all the plant life in a particular region or period; "Pleistocene vegetation"; "the flora of southern California"; "the botany of China"
+79271,vehemence emphasis,intensity or forcefulness of expression; "the vehemence of his denial"; "his emphasis on civil rights"
+79272,vehicle,any substance that facilitates the use of a drug or pigment or other material that is mixed with it
+79273,vehicle,a medium for the expression or achievement of something; "his editorials provided a vehicle for his political views"; "a congregation is a vehicle of group identity"; "the play was just a vehicle to display her talents"
+79274,vehicle,a conveyance that transports people or objects
+79275,vehicle-borne_transmission,indirect transmission of an infectious agent that occurs when a vehicle (or fomite) touches a person's body or is ingested
+79276,vehicular_traffic vehicle_traffic,the aggregation of vehicles coming and going in a particular locality
+79277,veil velum,a membranous covering attached to the immature fruiting body of certain mushrooms
+79278,vein,a distinctive style or manner; "he continued in this vein for several minutes"
+79279,vein mineral_vein,a layer of ore between layers of rock
+79280,vein nervure,any of the vascular bundles or ribs that form the branching framework of conducting and supporting tissues in a leaf or other plant organ
+79281,vein nervure,one of the horny ribs that stiffen and support the wing of an insect
+79282,vein vena venous_blood_vessel,a blood vessel that carries blood from the capillaries toward the heart; "all veins except the pulmonary vein carry unaerated blood"
+79283,vein_of_penis,a vein serving the penis
+79284,velar velar_consonant,a consonant produced with the back of the tongue touching or near the soft palate
+79285,veld veldt,elevated open grassland in southern Africa
+79286,velleity,a mere wish, unaccompanied by effort to obtain
+79287,velleity,volition in its weakest form
+79288,vellum,a heavy creamy-colored paper resembling parchment
+79289,vellum,fine parchment prepared from the skin of a young animal e.g. a calf or lamb
+79290,velocipede,any of several early bicycles with pedals on the front wheel
+79291,velociraptor,small active carnivore that probably fed on protoceratops; possibly related more closely to birds than to other dinosaurs
+79292,velodrome,a banked oval track for bicycle or motorcycle racing
+79293,velour velours,heavy fabric that resembles velvet
+79294,veloute,white sauce made with stock instead of milk
+79295,velvet,a silky densely piled fabric with a plain back
+79296,velvet_ant,a solitary wasp of the family Mutillidae; the body has a coat of brightly colored velvety hair and the females are wingless
+79297,velvet_bent velvet_bent_grass brown_bent Rhode_Island_bent dog_bent Agrostis_canina,common grass with slender stems and narrow leaves
+79298,velvet_grass Yorkshire_fog Holcus_lanatus,tall European perennial grass having a velvety stem; naturalized in United States and used for forage
+79299,velvet_plant purple_velvet_plant royal_velvet_plant Gynura_aurantiaca,Javanese foliage plant grown for their handsome velvety leaves with violet-purple hairs
+79300,velveteen,a usually cotton fabric with a short pile imitating velvet
+79301,velvetleaf velvet-leaf velvetweed Indian_mallow butter-print China_jute Abutilon_theophrasti,tall annual herb or subshrub of tropical Asia having velvety leaves and yellow flowers and yielding a strong fiber; naturalized in southeastern Europe and United States
+79302,vena_bulbi_penis,vein of the head of the penis; tributary of the internal pudendal vein that drains the perineum
+79303,vena_bulbi_vestibuli,vein of the vestibular bulb
+79304,vena_canaliculi_cochleae,vein of the cochlear canal
+79305,vena_cava,either of two large veins that return oxygen-depleted blood to the right atrium of the heart
+79306,vena_dorsalis_clitoridis_profunda,deep dorsal vein of the clitoris; tributary of the vesical venous plexus
+79307,vena_profunda_penis,deep vein of the penis; enters the prostatic plexus
+79308,venae_dorsales_clitoridis_superficiales,superficial dorsal veins of the clitoris; tributaries of the external pudendal vein on either side
+79309,venae_dorsales_penis_profunda,deep dorsal vein of the penis; tributary of the prostatic plexus
+79310,venae_dorsales_penis_superficiales,superficial dorsal veins of the penis; paired tributaries of the external pudendal veins on each side
+79311,venae_interlobulares_hepatis,interlobular veins of the liver
+79312,venae_interlobulares_renis,interlobular veins of the kidney; receive blood from the arcuate vein and empty into the renal veins
+79313,venae_labiales_anteriores anterior_labial_veins,veins from the labia majora to the external pudendal vein
+79314,venae_labiales_posteriores posterior_labial_veins,veins that pass posterior from the labia majora to the internal pudendal vein
+79315,venae_palpebrales,veins of the eyelids
+79316,venae_profundae_clitoridis,deep veins of the clitoris; join the vesical plexus
+79317,venae_renis,veins of the kidney; drain the kidney into the renal vein
+79318,venality,prostitution of talents or offices or services for reward
+79319,venation,(botany) the arrangement of veins in a leaf
+79320,venation venous_blood_system,(zoology) the system of venous blood vessels in an animal
+79321,vendetta blood_feud,a feud in which members of the opposing parties murder each other
+79322,vending peddling hawking vendition,the act of selling goods for a living
+79323,vending_machine,a slot machine for selling goods
+79324,veneer veneering,coating consisting of a thin layer of superior wood glued to a base of inferior wood
+79325,veneering,the act of applying veneer
+79326,venerability venerableness,the quality of deserving veneration
+79327,venerator,someone who regards with deep respect or reverence
+79328,venereal_disease VD venereal_infection social_disease Cupid's_itch Cupid's_disease Venus's_curse dose sexually_transmitted_disease STD,a communicable infection transmitted by sexual intercourse or genital contact
+79329,venesection phlebotomy,surgical incision into a vein; used to treat hemochromatosis
+79330,vengeance retribution payback,the act of taking revenge (harming someone in retaliation for something harmful that they have done) especially in the next life; "Vengeance is mine; I will repay, saith the Lord"--Romans 12:19; "For vengeance I would do nothing. This nation is too great to look for mere revenge"--James Garfield; "he swore vengeance on the man who betrayed him"; "the swiftness of divine retribution"
+79331,venial_sin,a pardonable sin regarded as entailing only a partial loss of grace
+79332,venipuncture,(medicine) puncture of a vein through the skin in order to withdraw blood for analysis or to start an intravenous drip or to inject medication or a radiopaque dye
+79333,venire_facias,a judicial writ ordering a sheriff to summon people for jury duty
+79334,venison,meat from a deer used as food
+79335,venogram phlebogram,an X ray of a vein injected with a radiopaque contrast medium
+79336,venography,roentgenographic examination of veins
+79337,venom,toxin secreted by animals; secreted by certain snakes and poisonous insects (e.g., spiders and scorpions)
+79338,venomous_lizard,any of two or three large heavy-bodied lizards; only known venomous lizards
+79339,venous_blood,blood found in the veins; "except in the pulmonary vein venous blood is rich in carbon dioxide and poor in oxygen"
+79340,venous_pressure,the pressure exerted on the walls of the veins by the circulating blood
+79341,venous_sinus sinus,a wide channel containing blood; does not have the coating of an ordinary blood vessel
+79342,vent,a slit in a garment (as in the back seam of a jacket)
+79343,vent,external opening of urinary or genital system of a lower vertebrate
+79344,vent venthole vent-hole blowhole,a hole for the escape of gas or air
+79345,vent volcano,a fissure in the earth's crust (or in the surface of some other planet) through which molten lava and gases erupt
+79346,venter,a speaker who expresses or gives vent to a personal opinion or grievance
+79347,venter,the womb; "`in venter' is legal terminology for `conceived but not yet born'"
+79348,venter,a bulging body part (as the belly of a muscle)
+79349,ventilation airing,the act of supplying fresh air and getting rid of foul air
+79350,ventilation ventilation_system ventilating_system,a mechanical system in a building that provides fresh air; "she was continually adjusting the ventilation"
+79351,ventilation_shaft,a shaft in a building; serves as an air passage for ventilation
+79352,ventilator,a device (such as a fan) that introduces fresh air or expels foul air
+79353,ventral_root ventral_horn anterior_root anterior_horn,one of the two roots of a spinal nerve that passes ventrally from the spinal cord and that consists of motor fibers
+79354,ventricle,one of four connected cavities in the brain; is continuous with the central canal of the spinal cord and contains cerebrospinal fluid
+79355,ventricle heart_ventricle,a chamber of the heart that receives blood from an atrium and pumps it to the arteries
+79356,ventricular_aneurysm,a localized dilation or protrusion on the wall of the left ventricle of the heart (occurring after a myocardial infarction)
+79357,ventricular_fibrillation,fibrillation of heart muscles resulting in interference with rhythmic contractions of the ventricles and possibly leading to cardiac arrest
+79358,ventricular_septal_defect,a common congenital heart defect; an abnormal opening in the septum dividing the ventricles allows blood to pass directly from the left to the right ventricle; large openings may cause congestive heart failure
+79359,ventriloquism ventriloquy,the art of projecting your voice so that it seems to come from another source (as from a ventriloquist's dummy)
+79360,ventriloquist,a performer who projects the voice into a wooden dummy
+79361,ventriloquist's_dummy,a wooden dummy into which a ventriloquist projects the voice
+79362,venture,a commercial undertaking that risks a loss but promises a profit
+79363,venture,any venturesome undertaking especially one with an uncertain outcome
+79364,venture_capital risk_capital,wealth available for investment in new or speculative enterprises
+79365,venture_capitalism,capitalism that invests in innovative enterprises (especially high technology) where the potential profits are large
+79366,venture_capitalist,a speculator who makes money available for innovative projects (especially in high technology)
+79367,venturer merchant-venturer,a merchant who undertakes a trading venture (especially a venture that sends goods overseas)
+79368,venturi,a tube with a constriction; used to control fluid flow (as in the air inlet of a carburetor)
+79369,venue,in law: the jurisdiction where a trial will be held
+79370,venue locale locus,the scene of any event or action (especially the place of a meeting)
+79371,venule venula capillary_vein,a minute vein continuous with a capillary
+79372,veracity,unwillingness to tell lies
+79373,veranda verandah gallery,a porch along the outside of a building (sometimes partly enclosed)
+79374,verapamil Calan Isoptin,a drug (trade names Calan and Isoptin) used as an oral or parenteral calcium blocker in cases of hypertension or congestive heart failure or angina or migraine
+79375,verb,a content word that denotes an action, occurrence, or state of existence
+79376,verb,the word class that serves as the predicate of a sentence
+79377,verbal_creation,creating something by the use of speech and language
+79378,verbal_intelligence,intelligence in the use and comprehension of language
+79379,verbal_noun deverbal_noun,a noun that is derived from a verb
+79380,verbalization verbalisation,the words that are spoken in the activity of verbalization
+79381,verbalization verbalisation,the activity of expressing something in words
+79382,verbena vervain,any of numerous tropical or subtropical American plants of the genus Verbena grown for their showy spikes of variously colored flowers
+79383,verbiage verbalism,overabundance of words
+79384,verbolatry grammatolatry word-worship,the worship of words
+79385,verboseness verbosity,an expressive style that uses excessive or empty words
+79386,verd_antique verde_antique,a dark green impure marble
+79387,verdict finding_of_fact,(law) the findings of a jury on issues of fact submitted to it for decision; can be used in formulating a judgment
+79388,verdigris,a green patina that forms on copper or brass or bronze that has been exposed to the air or water for long periods of time
+79389,verdigris cupric_acetate,a blue or green powder used as a paint pigment
+79390,verdin Auriparus_flaviceps,very small yellow-headed titmouse of western North America
+79391,verge,a grass border along a road
+79392,verge brink,the limit beyond which something happens or changes; "on the verge of tears"; "on the brink of bankruptcy"
+79393,verger,a church officer who takes care of the interior of the building and acts as an attendant (carries the verge) during ceremonies
+79394,verification,(law) an affidavit attached to a statement confirming the truth of that statement
+79395,verisimilitude,the appearance of truth; the quality of seeming to be true
+79396,verity,an enduring or necessary ethical or religious or aesthetic truth
+79397,vermicelli,pasta in strings thinner than spaghetti
+79398,vermicide,an agent that kills worms (especially those in the intestines)
+79399,vermiculation,a decoration consisting of wormlike carvings
+79400,vermiculite,any of a group of yellow or brown hydrous silicate minerals having a micaceous structure
+79401,vermifuge anthelmintic anthelminthic helminthic,a medication capable of causing the evacuation of parasitic intestinal worms
+79402,vermillion_flycatcher firebird Pyrocephalus_rubinus_mexicanus,tropical American flycatcher found as far north as southern Texas and Arizona; adult male has bright scarlet and black plumage
+79403,vermillion_rockfish rasher Sebastodes_miniatus,a commercially important fish of the Pacific coast of North America
+79404,vermin,any of various small animals or insects that are pests; e.g. cockroaches or rats; "cereals must be protected from mice and other vermin"; "he examined the child's head for vermin"; "boys in the village have probably been shooting vermin"
+79405,vermin varmint,an irritating or obnoxious person
+79406,vermis vermis_cerebelli,the narrow central part of the cerebellum between the two hemispheres
+79407,vermouth,any of several white wines flavored with aromatic herbs; used as aperitifs or in mixed drinks
+79408,vernacular,the everyday speech of the people (as distinguished from literary language)
+79409,vernal_equinox,(astronomy) the equinoctial point that lies in the constellation of Pisces
+79410,vernal_equinox March_equinox spring_equinox,March 21
+79411,vernal_witch_hazel Hamamelis_vernalis,fragrant shrub of lower Mississippi valley having very small flowers from midwinter to spring
+79412,vernation,(botany) the arrangement of young leaves in a leaf bud before it opens
+79413,vernier_caliper vernier_micrometer,a caliper with a vernier scale for very fine measurements
+79414,vernier_scale vernier,a small movable scale that slides along a main scale; the small scale is calibrated to indicate fractional divisions of the main scale
+79415,vernix vernix_caseosa,a white cheeselike protective material that covers the skin of a fetus
+79416,veronica speedwell,any plant of the genus Veronica
+79417,versatility,having a wide variety of skills
+79418,verse rhyme,a piece of poetry
+79419,verse verse_line,a line of metrical text
+79420,versicle,a short verse said or sung by a priest or minister in public worship and followed by a response from the congregation
+79421,versification,a metrical adaptation of something (e.g., of a prose text)
+79422,versification,the form or metrical composition of a poem
+79423,versification,the art or practice of writing verse
+79424,version,an interpretation of a matter from a particular viewpoint; "his version of the fight was different from mine"
+79425,version,manual turning of a fetus in the uterus (usually to aid delivery)
+79426,version variant variation edition,something a little different from others of the same type; "an experimental version of the night fighter"; "a variant of the same word"; "an emery wheel is the modern variation of a grindstone"; "the boy is a younger edition of his father"
+79427,verso,left-hand page
+79428,verst,a Russian unit of length (1.067 km)
+79429,vertebra,one of the bony segments of the spinal column
+79430,vertebral_artery arteria_vertebralis,the first branch of the subclavian artery; divided into four parts
+79431,vertebral_vein vena_vertebralis,a vein that goes through the foramina of the cervical vertebrae and forms a plexus around the vertebral artery; empties into the brachiocephalic vein
+79432,vertebrate craniate,animals having a bony or cartilaginous skeleton with a segmented spinal column and a large brain enclosed in a skull or cranium
+79433,vertebrate_foot pedal_extremity,the extremity of the limb in vertebrates
+79434,vertebrate_paleontology,the paleontology of vertebrates
+79435,vertex,the point of intersection of lines or the point opposite the base of a figure
+79436,vertex peak apex acme,the highest point (of something); "at the peak of the pyramid"
+79437,vertical,something that is oriented vertically
+79438,vertical_angle,either of two equal and opposite angles formed by the intersection of two straight lines
+79439,vertical_bank,a bank so steep that the plane's lateral axis approaches the vertical
+79440,vertical_circle,a great circle on the celestial sphere passing through the zenith and perpendicular to the horizon
+79441,vertical_file,a file in which records are stored upright on one edge
+79442,vertical_integration vertical_combination,absorption into a single firm of several firms involved in all aspects of a product's manufacture from raw materials to distribution
+79443,vertical_section,a mechanical drawing showing the interior of an object as if made by a vertical plane passing through it
+79444,vertical_stabilizer vertical_stabiliser vertical_fin tail_fin tailfin,a stabilizer that is part of the vertical tail structure of an airplane
+79445,vertical_surface,a surface that is vertical
+79446,vertical_tail,the vertical airfoil in the tail assembly of an aircraft
+79447,verticality verticalness erectness uprightness,position at right angles to the horizon
+79448,verticil,a whorl of leaves growing around a stem
+79449,verticilliosis,wilt caused by fungi of the genus Verticillium
+79450,verticillium,a fungus of the genus Verticillium
+79451,vervet vervet_monkey Cercopithecus_aethiops_pygerythrus,South African monkey with black face and hands
+79452,very_high_frequency VHF,30 to 300 megahertz
+79453,very_important_person VIP high-up dignitary panjandrum high_muckamuck,an important or influential (and often overbearing) person
+79454,very_low_density_lipoprotein VLDL,large lipoproteins rich in triglycerides; VLDLs circulate through the blood giving up their triglycerides to fat and muscle tissue until the VLDL remnants are modified and converted into LDL
+79455,very_low_frequency VLF,3 to 30 kilohertz
+79456,vesical_vein vena_vesicalis,veins that drain the vesical plexus and join the internal iliac veins
+79457,vesicant vesicatory,a chemical agent that causes blistering (especially mustard gas)
+79458,vesicle cyst,a small anatomically normal sac or bladderlike structure (especially one containing fluid)
+79459,vesicoureteral_reflux,a backflow of urine from the bladder into the ureter
+79460,vesicular_stomatitis,a disease of horses, cattle, swine, and occasionally human beings; caused by the vesiculovirus
+79461,vesiculation vesication blistering,the formation of vesicles in or beneath the skin
+79462,vesiculitis,inflammation of a seminal vesicle (usually in conjunction with prostatitis)
+79463,vesiculovirus,an animal virus that causes vesicular stomatitis
+79464,vesper,a late afternoon or evening worship service
+79465,vesper_sparrow grass_finch Pooecetes_gramineus,common North American finch noted for its evening song
+79466,vespers evensong,the sixth of the seven canonical hours of the divine office; early evening; now often made a public service on Sundays
+79467,vespertilian_bat vespertilionid,a variety of carnivorous bat
+79468,vespid vespid_wasp,mostly social nest-building wasps
+79469,vessel,an object used as a container (especially for liquids)
+79470,vessel vas,a tube in which a body fluid circulates
+79471,vessel watercraft,a craft designed for water transportation
+79472,vest waistcoat,a man's sleeveless garment worn underneath a coat
+79473,vest_pocket,a small pocket in a man's vest
+79474,vestal,a chaste woman
+79475,vestal_virgin,(Roman mythology) one of the virgin priestesses consecrated to the Roman goddess Vesta and to maintaining the sacred fire in her temple
+79476,vested_interest,(law) an interest in which there is a fixed right to present or future enjoyment and that can be conveyed to another
+79477,vested_interest,groups that seek to control a social system or activity from which they derive private benefit
+79478,vestibular_apparatus vestibular_system,organs mediating the labyrinthine sense; concerned with equilibrium
+79479,vestibular_gland,a gland that opens into the vestibule of the vagina; secretions lubricate the vagina during coitus
+79480,vestibular_vein vena_vestibularis,veins that drain the saccule and utricle
+79481,vestibule,any of various bodily cavities leading to another cavity (as of the ear or vagina)
+79482,vestibule_of_the_ear,the central cavity of the bony labyrinth of the ear
+79483,vestibule_of_the_vagina,the space between the labia minora containing the orifice of the urethra
+79484,vestiture,an archaic term for clothing
+79485,vestment,gown (especially ceremonial garments) worn by the clergy
+79486,vestry,in the Protestant Episcopal Church: a committee elected by the congregation to work with the churchwardens in managing the temporal affairs of the church
+79487,vestry sacristy,a room in a church where sacred vessels and vestments are kept or meetings are held
+79488,vestryman,a man who is a member of a church vestry
+79489,vestrywoman,a woman who is a member of a church vestry
+79490,vesture,something that covers or cloaks like a garment; "fields in a vesture of green"
+79491,vesuvianite vesuvian idocrase,a green or yellow or brown mineral consisting of a hydrated silicate; it occurs as crystals in limestone and is used a gemstone
+79492,vetch,any of various climbing plants of the genus Vicia having pinnately compound leaves that terminate in tendrils and small variously colored flowers; includes valuable forage and soil-building plants
+79493,vetchling,any of various small plants of the genus Lathyrus; climb usually by means of tendrils
+79494,veteran old-timer oldtimer old_hand warhorse old_stager stager,an experienced person who has been through many battles; someone who has given long service
+79495,veteran vet ex-serviceman,a person who has served in the armed forces
+79496,veteran veteran_soldier,a serviceman who has seen considerable active service; "the veterans laughed at the new recruits"
+79497,veterinarian veterinary veterinary_surgeon vet,a doctor who practices veterinary medicine
+79498,veterinary_medicine,the branch of medicine that deals with the diagnosis and treatment of diseases and injuries of animals (especially domestic animals)
+79499,veterinary_school,a school teaching veterinary medicine
+79500,veto,the power or right to prohibit or reject a proposed or intended act (especially the power of a chief executive to reject a bill passed by the legislature)
+79501,veto,a vote that blocks a decision
+79502,vexatious_litigation,litigation shown to have been instituted maliciously and without probable cause; "he got an injunction against vexatious litigation by his enemies"
+79503,viability,capable of being done in a practical and useful way
+79504,viability,(of living things) capable of normal growth and development
+79505,viaduct,bridge consisting of a series of arches supported by piers used to carry a road (or railroad) over a valley
+79506,viand,a choice or delicious dish
+79507,viatical_settlement,cash derived from sale of an insurance policy by a terminally ill policy holder
+79508,viatical_settlement viaticus_settlement,sale of an insurance policy by a terminally ill policy holder
+79509,viatication viaticus,purchasing insurance policies for cash from terminally ill policy holders
+79510,vibist vibraphonist,a musician who plays the vibraphone
+79511,vibraphone vibraharp vibes,a percussion instrument similar to a xylophone but having metal bars and rotating disks in the resonators that produce a vibrato sound
+79512,vibration quiver quivering,the act of vibrating
+79513,vibration vibe,a distinctive emotional aura experienced instinctively; "that place gave me bad vibrations"; "it gave me a nostalgic vibe"
+79514,vibrato,(music) a pulsating effect in an instrumental or vocal tone produced by slight and rapid variations in pitch
+79515,vibrator,a mechanical device that vibrates; "a reed is the vibrator that produces the sound"
+79516,vibrator,mechanical device that produces vibratory motion; used for massage
+79517,vibrio vibrion,curved rodlike motile bacterium
+79518,vicar,(Episcopal Church) a clergyman in charge of a chapel
+79519,vicar,(Church of England) a clergyman appointed to act as priest of a parish
+79520,vicar,a Roman Catholic priest who acts for another higher-ranking clergyman
+79521,vicar-general,(Roman Catholic Church) an administrative deputy who assists a bishop
+79522,vicar_apostolic,a titular Roman Catholic bishop in a non-Catholic area
+79523,vicariate vicarship,the religious institution under the authority of a vicar
+79524,vice,a specific form of evildoing; "vice offends the moral standards of the community"
+79525,vice-presidency,the office and function of a vice president
+79526,vice-presidency vice-presidential_term,the tenure of a vice president
+79527,vice-regent,a regent's deputy
+79528,vice_admiral,an admiral ranking below a full admiral and above a rear admiral
+79529,vice_chairman,one ranking below or serving in the place of a chairman
+79530,vice_chancellor,a deputy or assistant to someone bearing the title of chancellor
+79531,vice_crime,a vice that is illegal
+79532,vice_president V.P.,an executive officer ranking immediately below a president; may serve in the president's place under certain circumstances
+79533,vice_squad,a police group to enforce laws against gambling and prostitution
+79534,vicegerent,someone appointed by a ruler as an administrative deputy
+79535,vicereine,wife of a viceroy
+79536,viceroy Limenitis_archippus,showy American butterfly resembling the monarch but smaller
+79537,viceroy vicereine,governor of a country or province who rules as the representative of his or her king or sovereign
+79538,viceroyalty,a district or province governed by a viceroy
+79539,viceroyship,the position of viceroy
+79540,vichyssoise,a creamy potato soup flavored with leeks and onions; usually served cold
+79541,vicinity locality neighborhood neighbourhood neck_of_the_woods,a surrounding or nearby region; "the plane crashed in the vicinity of Asheville"; "it is a rugged locality"; "he always blames someone else in the immediate neighborhood"; "I will drop in on you the next time I am in this neck of the woods"
+79542,vicious_circle,an argument that assumes that which is to be proved
+79543,vicious_circle vicious_cycle,one trouble leads to another that aggravates the first
+79544,vicissitude,a variation in circumstances or fortune at different times in your life or in the development of something; "the project was subject to the usual vicissitudes of exploratory research"
+79545,vicissitude,mutability in life or nature (especially successive alternation from one condition to another)
+79546,victim,an unfortunate person who suffers from some adverse circumstance
+79547,victim dupe,a person who is tricked or swindled
+79548,victimization,adversity resulting from being made a victim; "his victimization infuriated him"
+79549,victimizer victimiser,a person who victimizes others; "I thought we were partners, not victim and victimizer"
+79550,victimless_crime,an act that is legally a crime but that seem to have no victims; "he considers prostitution to be a victimless crime"
+79551,victor master superior,a combatant who is able to defeat rivals
+79552,victory triumph,a successful ending of a struggle or contest; "a narrow victory"; "the general always gets credit for his army's victory"; "clinched a victory"; "convincing victory"; "the agreement was a triumph for common sense"
+79553,victory_celebration,a celebration following a victory in a battle or sports competition
+79554,victory_garden,a kitchen garden planted during wartime to relieve food shortages
+79555,victory_lap lap_of_honour,a lap by the winning person or team run to celebrate the victory
+79556,victualer victualler,an innkeeper (especially British)
+79557,vicuna,the wool of the vicuna
+79558,vicuna,a soft wool fabric made from the fleece of the vicuna
+79559,vicuna Vicugna_vicugna,small wild cud-chewing Andean animal similar to the guanaco but smaller; valued for its fleecy undercoat
+79560,video,(computer science) the appearance of text and graphics on a video display
+79561,video picture,the visible part of a television transmission; "they could still receive the sound but the picture was gone"
+79562,video_digitizing,the process of capturing and converting and storing video images for use by a computer
+79563,video_iPod,(trademark) an iPod that can also play video files
+79564,video_recording video,a recording of both the visual and audible components (especially one containing a recording of a movie or television program)
+79565,videocassette,a cassette for videotape
+79566,videocassette_recorder VCR,a magnetic tape recorder for recording (and playing back) TV programs
+79567,videodisk videodisc DVD,a digital recording (as of a movie) on an optical disk that can be played on a computer or a television set
+79568,videotape,a video recording made on magnetic tape
+79569,videotape,a relatively wide magnetic tape for use in recording visual images and associated sound
+79570,view,purpose; the phrase `with a view to' means `with the intention of' or `for the purpose of'; "he took the computer with a view to pawning it"
+79571,view,outward appearance; "they look the same in outward view"
+79572,view aspect prospect scene vista panorama,the visual percept of a region; "the most desirable feature of the park are the beautiful views"
+79573,view eyeshot,the range of the eye; "they were soon out of view"
+79574,view survey sight,the act of looking or seeing or observing; "he tried to get a better view of it"; "his survey of the battlefield was limited"
+79575,view_angle angle_of_view,the angle included by a photographic lens
+79576,viewer,an optical device for viewing photographic transparencies
+79577,viewgraph overhead,a transparency for use with an overhead projector
+79578,viewing_audience TV_audience viewers,the audience reached by television
+79579,vigil,a period of sleeplessness
+79580,vigil watch,the rite of staying awake for devotional purposes (especially on the eve of a religious festival)
+79581,vigil_light vigil_candle,a candle lighted by a worshiper in a church
+79582,vigilance_committee,a volunteer committee to maintain order where an efficient legal system does not exist
+79583,vigilante vigilance_man,member of a vigilance committee
+79584,vigilantism,the actions of a vigilance committee in trying to enforce the laws
+79585,vignette,a photograph whose edges shade off gradually
+79586,vignette,a small illustrative sketch (as sometimes placed at the beginning of chapters in books)
+79587,vigor vigour dynamism heartiness,active strength of body or mind
+79588,villa,detached or semidetached suburban house
+79589,villa,country house in ancient Rome consisting of residential quarters and farm buildings around a courtyard
+79590,villa,pretentious and luxurious country residence with extensive grounds
+79591,village hamlet,a settlement smaller than a town
+79592,village small_town settlement,a community of people smaller than a town
+79593,village_green,a village park consisting of a plot of grassy land
+79594,villager,one who has lived in a village most of their life
+79595,villain baddie,the principal bad character in a film or work of fiction
+79596,villain scoundrel,a wicked or evil person; someone who does evil deliberately
+79597,villainess,a woman villain
+79598,villainy,a criminal or vicious act
+79599,villainy villainousness,the quality of evil by virtue of villainous behavior
+79600,villeinage,tenure by which a villein held land
+79601,villeinage villainage,the legal status or condition of servitude of a villein or feudal serf
+79602,villus,a minute hairlike projection on mucous membrane
+79603,vin_ordinaire,cheap French table wine of unspecified origin
+79604,vinblastine Velban,periwinkle plant derivative used as an antineoplastic drug (trade name Velban) that disrupts cell division
+79605,vincristine Oncovin,periwinkle plant derivative used as an antineoplastic drug (trade name Oncovin); used to treat cancer of the lymphatic system
+79606,vindication exoneration,the act of vindicating or defending against criticism or censure etc.; "friends provided a vindication of his position"
+79607,vindictiveness vengefulness,a malevolent desire for revenge
+79608,vine,a plant with a weak stem that derives support from climbing, twining, or creeping along a surface
+79609,vine_maple Acer_circinatum,small maple of northwestern North America having prostrate stems that root freely and form dense thickets
+79610,vine_snake,slender arboreal snake found from southern Arizona to Bolivia
+79611,vinegar,dilute acetic acid
+79612,vinegar acetum,sour-tasting liquid produced usually by oxidation of the alcohol in wine or cider and used as a condiment or food preservative
+79613,vinegar_eel vinegar_worm Anguillula_aceti Turbatrix_aceti,minute eelworm that feeds on organisms that cause fermentation in e.g. vinegar
+79614,vinegar_fly,flies whose larvae feed on pickles and imperfectly sealed preserves
+79615,vinegariness vinegarishness,a sourness resembling that of vinegar
+79616,vinegarroon Mastigoproctus_giganteus,large whip-scorpion of Mexico and southern United States that emits a vinegary odor when alarmed
+79617,vineyard vinery,a farm of grapevines where wine grapes are produced
+79618,vinifera vinifera_grape common_grape_vine Vitis_vinifera,common European grape cultivated in many varieties; chief source of Old World wine and table grapes
+79619,vinifera_grape,grape from a cultivated variety of the common grape vine of Europe
+79620,vinification,the process whereby fermentation changes grape juice into wine
+79621,vintage,a season's yield of wine from a vineyard
+79622,vintage time_of_origin,the oldness of wines
+79623,vintager,a person who harvests grapes for making wine
+79624,vintner wine_merchant,someone who sells wine
+79625,vintner winemaker wine_maker,someone who makes wine
+79626,vinyl,shiny and tough and flexible plastic; used especially for floor coverings
+79627,vinyl vinyl_group vinyl_radical,a univalent chemical radical derived from ethylene
+79628,vinyl_polymer vinyl_resin polyvinyl_resin,a thermoplastic derived by polymerization from compounds containing the vinyl group
+79629,viol,any of a family of bowed stringed instruments that preceded the violin family
+79630,viola,any of the numerous plants of the genus Viola
+79631,viola,a bowed stringed instrument slightly larger than a violin, tuned a fifth lower
+79632,viola_d'amore,viol that is the tenor of the viol family
+79633,viola_da_braccio,a member of the viol family with approximately the range of a viola
+79634,viola_da_gamba gamba bass_viol,viol that is the bass member of the viol family with approximately the range of the cello
+79635,violation infringement,an act that disregards an agreement or a right; "he claimed a violation of his rights under the Fifth Amendment"
+79636,violator debaucher ravisher,someone who assaults others sexually
+79637,violator lawbreaker law_offender,someone who violates the law
+79638,violence,a turbulent state resulting in injuries and destruction etc.
+79639,violence force,an act of aggression (as one against a person who resists); "he may accomplish by craft in the long run what he cannot do by force and violence in the short one"
+79640,violet,any of numerous low-growing violas with small flowers
+79641,violet reddish_blue,a variable color that lies beyond blue in the spectrum
+79642,violet-flowered_petunia Petunia_integrifolia,herb or small shrublet having solitary violet to rose-red flowers
+79643,violet_suksdorfia Suksdorfia_violaceae,slender delicate plant with wide roundish deeply lobed leaves and deep pink to violet funnel-shaped flowers; British Columbia to northern Oregon and west to Idaho and Montana
+79644,violet_wood_sorrel Oxalis_violacea,perennial herb of eastern North America with palmately compound leaves and usually rose-purple flowers
+79645,violin fiddle,bowed stringed instrument that is the highest member of the violin family; this instrument has four strings and a hollow body and an unfretted fingerboard and is played with a bow
+79646,violin_family,(music) the family of bowed stringed instruments
+79647,violin_lesson,a lesson in playing the violin
+79648,violin_maker,someone who makes violins
+79649,violin_section,the section of an orchestra that plays violins
+79650,violinist fiddler,a musician who plays the violin
+79651,violist,a musician who plays the viola
+79652,viomycin Viocin,a basic polypeptide antibiotic (trade name Viocin) administered intramuscularly (along with other drugs) in the treatment of tuberculosis
+79653,viper,venomous Old World snakes characterized by hollow venom-conducting fangs in the upper jaw
+79654,viperine_grass_snake Natrix_maura,a small harmless grass snake
+79655,virago,a noisy or scolding or domineering woman
+79656,viral_delivery_vector,a transducing vector that uses a retrovirus
+79657,viral_hepatitis,hepatitis caused by a virus
+79658,viral_infection virus_infection,infection by a virus that is pathogenic to humans
+79659,viral_pneumonia,pneumonia caused by a virus
+79660,viremia viraemia,the presence of a virus in the blood stream; "viremia spread the smallpox virus to the internal organs"
+79661,vireo,any of various small insectivorous American birds chiefly olive-grey in color
+79662,virga,light wispy precipitation that evaporates before it reaches the ground (especially when the lower air is low in humidity)
+79663,virgin,a person who has never had sex
+79664,virgin's_bower old_man's_beard devil's_darning_needle Clematis_virginiana,common climber of eastern North America that sprawls over other plants and bears numerous panicles of small creamy white flowers
+79665,virgin_wool,wool not used before; wool not processed or woven before
+79666,virginal pair_of_virginals,a legless rectangular harpsichord; played (usually by women) in the 16th and 17th centuries
+79667,virginity,the condition or quality of being a virgin
+79668,viricide virucide,an agent (physical or chemical) that inactivates or destroys viruses
+79669,virilism,the development of male secondary sexual characteristics in a female (or prematurely in a young boy)
+79670,virility,the masculine property of being capable of copulation and procreation
+79671,virility_drug anti-impotence_drug,drug to treat impotence attributable to erectile dysfunction
+79672,virino,(microbiology) a hypothetical infectious particle thought to be the cause of scrapie and other degenerative diseases of the central nervous system; consists of nucleic acid in a protective coat of host cell proteins
+79673,virion,(virology) a complete viral particle; nucleic acid and capsid (and a lipid envelope in some viruses)
+79674,viroid virusoid,the smallest of viruses; a plant virus with its RNA arranged in a circular chromosome without a protein coat
+79675,virologist,a specialist in virology
+79676,virology,the branch of medical science that studies viruses and viral diseases
+79677,virtu,objet d'art collectively (especially fine antiques)
+79678,virtu vertu,artistic quality
+79679,virtu vertu connoisseurship,love of or taste for fine objects of art
+79680,virtual_image,a reflected optical image (as seen in a plane mirror)
+79681,virtual_memory virtual_storage,(computer science) memory created by using the hard disk to simulate additional random-access memory; the addressable storage space available to the user of a computer system in which virtual addresses are mapped into real addresses
+79682,virtual_reality,a hypothetical three-dimensional visual world created by a computer; user wears special goggles and fiber optic gloves etc., and can enter and move about in this world and interact with objects as if inside it
+79683,virtue,a particular moral excellence
+79684,virtue chastity sexual_morality,morality with respect to sexual relations
+79685,virtue virtuousness moral_excellence,the quality of doing what is right and avoiding what is wrong
+79686,virtuosity,technical skill or fluency or style exhibited by a virtuoso
+79687,virtuoso,a musician who is a consummate master of technique and artistry
+79688,virulence virulency,extreme harmfulness (as the capacity of a microorganism to cause disease); "the virulence of the plague"
+79689,virulence virulency,extreme hostility; "the virulence of the malicious old man"
+79690,virus,a harmful or corrupting agency; "bigotry is a virus that must not be allowed to spread"; "the virus of jealousy is latent in everyone"
+79691,virus,(virology) ultramicroscopic infectious agent that replicates itself only within cells of living hosts; many are pathogenic; a piece of nucleic acid (DNA or RNA) wrapped in a thin coat of protein
+79692,virus computer_virus,a software program capable of reproducing itself and usually capable of causing great harm to files or other programs on the same computer; "a true virus cannot spread to another computer without human assistance"
+79693,visa,an endorsement made in a passport that allows the bearer to enter the country issuing it
+79694,viscacha chinchillon Lagostomus_maximus,gregarious burrowing rodent larger than the chinchillas
+79695,viscera entrails innards,internal organs collectively (especially those in the abdominal cavity); "`viscera' is the plural form of `viscus'"
+79696,visceral_leishmaniasis kala-azar Assam_fever dumdum_fever,leishmaniasis of the viscera
+79697,visceral_pleura,pleura that covers the lungs
+79698,viscometer viscosimeter,a measuring instrument for measuring viscosity
+79699,viscometry viscosimetry,the measurement of viscosity
+79700,viscose_rayon viscose,a rayon fabric made from viscose (cellulose xanthate) fibers
+79701,viscosity viscousness,resistance of a liquid to shear forces (and hence to flow)
+79702,viscount,(in various countries) a son or younger brother or a count
+79703,viscount,a British peer who ranks below an earl and above a baron
+79704,viscountcy,the title of a viscount
+79705,viscountcy viscounty,the dignity or rank or position of a viscount or viscountess
+79706,viscountess,a wife or widow of a viscount
+79707,viscountess,a noblewoman holding the rank of viscount in her own right
+79708,viscounty,the domain controlled by a viscount or viscountess
+79709,vise bench_vise,a holding device attached to a workbench; has two jaws to hold workpiece firmly in place
+79710,visibility,capability of providing a clear unobstructed view; "a windshield with good visibility"
+79711,visibility profile,degree of exposure to public notice; "that candidate does not have sufficient visibility to win an election"
+79712,visibility visibleness,quality or fact or degree of being visible; perceptible by the eye or obvious to the eye; "low visibility caused by fog"
+79713,visible_spectrum color_spectrum,the distribution of colors produced when light is dispersed by a prism
+79714,visible_speech,a phonetic alphabet invented by Melville Bell in the 19th century
+79715,visible_speech,spectrogram of speech; speech displayed spectrographically
+79716,vision,a religious or mystical experience of a supernatural appearance; "he had a vision of the Virgin Mary"
+79717,vision,a vivid mental image; "he had a vision of his own death"
+79718,vision visual_sensation,the perceptual experience of seeing; "the runners emerged from the trees into his clear vision"; "he had a visual sensation of intense light"
+79719,visionary,a person given to fanciful speculations and enthusiasms with little regard for what is actually possible
+79720,visionary illusionist seer,a person with unusual powers of foresight
+79721,visit,a meeting arranged by the visitor to see someone (such as a doctor or lawyer) for treatment or advice; "he scheduled a visit to the dentist"
+79722,visit,the act of going to see some person or place or thing for a short time; "he dropped by for a visit"
+79723,visit,the act of visiting in an official capacity (as for an inspection)
+79724,visit,the act of going to see some person in a professional capacity; "a visit to the dentist"
+79725,visitation,any disaster or catastrophe; "a visitation of the plague"
+79726,visitation,an official visit for inspection or supervision; "the commissioner made visitations to all the precinct stations"; "the recent visitation of the bishop to his diocese"
+79727,visitation_right,the right granted by a court to a parent (or other relative) who is deprived of custody of a child to visit the child on a regular basis
+79728,visiting,the activity of making visits; "the purpose was to promote homes, clubs, visiting, and other services"
+79729,visiting_fireman,an important or distinguished visitor
+79730,visiting_nurse,a nurse who is paid to visit the sick in their homes
+79731,visiting_professor,a professor visiting another college or university to teach for a limited time
+79732,visitor visitant,someone who visits
+79733,visor vizor,a piece of armor plate (with eye slits) fixed or hinged to a medieval helmet to protect the face
+79734,visual_agnosia,inability to recognize or interpret objects in the visual field
+79735,visual_aphasia alexia word_blindness,inability to perceive written words
+79736,visual_area visual_cortex,the cortical area that receives information from the lateral geniculate body of the thalamus
+79737,visual_cell,one of the cells of the retina that is sensitive to light
+79738,visual_communication,communication that relies on vision
+79739,visual_display_unit VDU,(British) British term for video display
+79740,visual_field field_of_vision field_of_regard,all of the points of the physical environment that can be perceived by a stable eye at a given moment
+79741,visual_hallucination,illusory visual perception
+79742,visual_image visualization visualisation,a mental image that is similar to a visual perception
+79743,visual_impairment visual_defect vision_defect visual_disorder,impairment of the sense of sight
+79744,visual_percept visual_image,a percept that arises from the eyes; an image in the visual system
+79745,visual_perception beholding seeing,perception by means of the eyes
+79746,visual_property,an attribute of vision
+79747,visual_purple rhodopsin retinal_purple,a red photopigment in the retinal rods of vertebrates; dissociates into retinene by light
+79748,visual_range,distance at which a given standard object can be seen with the unaided eye
+79749,visual_signal,a signal that involves visual communication
+79750,visual_space,the visual perception of space
+79751,visual_system,the sensory system for vision
+79752,visualizer visualiser,one whose prevailing mental imagery is visual
+79753,visually_impaired_person,someone who has inferior vision
+79754,vital_capacity,the maximum amount of air that can be exhaled after a maximum inhalation (usually tested with a spirometer); used to determine the condition of lung tissue
+79755,vital_organ vitals,a bodily organ that is essential for life
+79756,vital_principle life_principle,a hypothetical force to which the functions and qualities peculiar to living things are sometimes ascribed
+79757,vital_sign,sign of life; usually an indicator of a person's general physical condition; "he was still alive but his vital signs were weak"
+79758,vital_statistics,data relating to births and deaths and health and diseases and marriages
+79759,vitalism,(philosophy) a doctrine that life is a vital principle distinct from physics and chemistry
+79760,vitalist,one who believes in vitalism
+79761,vitality verve,an energetic style
+79762,vitalization vitalisation,the state of being vitalized and filled with life
+79763,vitalness,the quality of being essential to maintain life
+79764,vitamin,any of a group of organic substances essential in small quantities to normal metabolism
+79765,vitamin_A antiophthalmic_factor axerophthol A,any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes
+79766,vitamin_A1 retinol,an unsaturated alcohol that occurs in marine fish-liver oils and is synthesized biologically from carotene
+79767,vitamin_A2 dehydroretinol,a viscous alcohol that is less active in mammals than is vitamin A1
+79768,vitamin_B1 thiamine thiamin aneurin antiberiberi_factor,a B vitamin that prevents beriberi; maintains appetite and growth
+79769,vitamin_B12 cobalamin cyanocobalamin antipernicious_anemia_factor,a B vitamin that is used to treat pernicious anemia
+79770,vitamin_B2 vitamin_G riboflavin lactoflavin ovoflavin hepatoflavin,a B vitamin that prevents skin lesions and weight loss
+79771,vitamin_B6 pyridoxine pyridoxal pyridoxamine adermin,a B vitamin that is essential for metabolism of amino acids and starch
+79772,vitamin_Bc vitamin_M folate folic_acid folacin pteroylglutamic_acid pteroylmonoglutamic_acid,a B vitamin that is essential for cell growth and reproduction
+79773,vitamin_C C ascorbic_acid,a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy
+79774,vitamin_D calciferol viosterol ergocalciferol cholecalciferol D,a fat-soluble vitamin that prevents rickets
+79775,vitamin_E tocopherol E,a fat-soluble vitamin that is essential for normal reproduction; an important antioxidant that neutralizes free radicals in the body
+79776,vitamin_K naphthoquinone antihemorrhagic_factor,a fat-soluble vitamin that helps in the clotting of blood
+79777,vitamin_K1 phylloquinone phytonadione,a form of vitamin K
+79778,vitamin_K3 menadione,a form of vitamin K
+79779,vitamin_P bioflavinoid citrin,a vitamin that maintains the resistance of cell and capillary walls to permeation
+79780,vitamin_pill,a pill containing one or more vitamins; taken as a dietary supplement
+79781,vitelline_circulation,circulation of blood between the embryo and the yolk sac
+79782,vitiation,nullification by the destruction of the legal force; rendering null; "the vitiation of the contract"
+79783,viticulture viniculture,the cultivation of grapes and grape vines; grape growing
+79784,viticulturist,a cultivator of grape vine
+79785,vitiligo,an acquired skin disease characterized by patches of unpigmented skin (often surrounded by a heavily pigmented border)
+79786,vitrectomy,a surgical procedure that removes the vitreous humor and replace it with saline solution
+79787,vitreous_humor vitreous_humour vitreous_body,the clear colorless transparent jelly that fills the posterior chamber of the eyeball
+79788,vitrification,a vitrified substance; the glassy result of being vitrified
+79789,vitrification,the process of becoming vitreous
+79790,vitriol oil_of_vitriol sulfuric_acid sulphuric_acid,(H2SO4) a highly corrosive acid made from sulfur dioxide; widely used in the chemical industry
+79791,vituperation invective vitriol,abusive or venomous language used to express blame or censure or bitter deep-seated ill will
+79792,vivacity,characterized by high spirits and animation
+79793,vivarium,an indoor enclosure for keeping and raising living animals and plants and observing them under natural conditions
+79794,viverrine viverrine_mammal,small cat-like predatory mammals of warmer parts of the Old World
+79795,vivification invigoration animation,the activity of giving vitality and vigour to something
+79796,viviparous_eelpout Zoarces_viviparus,an eelpout of northern Europe that is viviparous
+79797,vivisection,the act of operating on living animals (especially in scientific research)
+79798,vivisectionist,a biologist who cuts open live animals for research
+79799,vixen,a female fox
+79800,vixen harpy hellcat,a malicious woman with a fierce temper
+79801,vizier,a high official in a Muslim government (especially in the Ottoman Empire)
+79802,viziership,the position of vizier
+79803,vizsla Hungarian_pointer,Hungarian hunting dog resembling the Weimaraner but having a rich deep red coat
+79804,vocable spoken_word,a word that is spoken aloud
+79805,vocabulary,a listing of the words used in some enterprise
+79806,vocabulary,the system of techniques or symbols serving as a means of expression (as in arts or crafts); "he introduced a wide vocabulary of techniques"
+79807,vocabulary lexicon mental_lexicon,a language user's knowledge of words
+79808,vocal_cord vocal_fold vocal_band plica_vocalis,either of two pairs of folds of mucous membrane projecting into the larynx
+79809,vocal_music,music that is vocalized (as contrasted with instrumental music)
+79810,vocal_music vocal,music intended to be performed by one or more singers, usually with instrumental accompaniment
+79811,vocational_program,a program of vocational education
+79812,vocational_rehabilitation,providing training in a specific trade with the aim of gaining employment
+79813,vocational_rehabilitation_program,a program of rehabilitation through job training with an eye to gainful employment
+79814,vocational_training vocational_education,training for a specific vocation in industry or agriculture or trade
+79815,vocative vocative_case,the case (in some inflected languages) used when the referent of the noun is being addressed
+79816,vociferator,a loud and vehement speaker (usually in protest)
+79817,vodka,unaged colorless liquor originating in Russia
+79818,vodka_martini,martini made with vodka rather than gin
+79819,vogue,a current state of general acceptance and use
+79820,vogue trend style,the popular taste at a given time; "leather is the latest vogue"; "he followed current trends"; "the 1920s had a style of their own"
+79821,voice,(linguistics) the grammatical relation (active or passive) of the grammatical subject of a verb to the action that the verb denotes
+79822,voice,(metonymy) a singer; "he wanted to hear trained voices sing it"
+79823,voice,a sound suggestive of a vocal utterance; "the noisy voice of the waterfall"; "the incessant voices of the artillery"
+79824,voice,something suggestive of speech in being a medium of expression; "the wee small voice of conscience"; "the voice of experience"; "he said his voices told him to do it"
+79825,voice,the ability to speak; "he lost his voice"
+79826,voice,the distinctive quality or pitch or condition of a person's speech; "A shrill voice sounded behind us"
+79827,voice,a means or agency by which something is expressed or communicated; "the voice of the law"; "the Times is not the voice of New York"; "conservatism has many voices"
+79828,voice vocalization vocalisation vocalism phonation vox,the sound made by the vibration of vocal folds modified by the resonance of the vocal tract; "a singer takes good care of his voice"; "the giraffe cannot make any vocalizations"
+79829,voice_mail voicemail,a computerized system for answering and routing telephone calls; telephone messages can be recorded and stored and relayed
+79830,voice_over,the voice on an unseen commentator in a film of television program
+79831,voice_part,a part written for a singer
+79832,voicelessness,having no voice in the management or control of affairs; "the voicelessness of those who live in situations of hopelessness"
+79833,voiceprint,biometric identification by electronically recording and graphically representing a person's voice; "voiceprints are uniquely characteristic of individual speakers"
+79834,voicer,someone who regulates the tone of organ pipes
+79835,voicer,a speaker who voices an opinion
+79836,voicing,the act of adjusting an organ pipe (or wind instrument) so that it conforms to the standards of tone and pitch and color
+79837,void vacancy emptiness vacuum,an empty area or space; "the huge desert voids"; "the emptiness of outer space"; "without their support he'll be ruling in a vacuum"
+79838,voider gusset,a piece of chain mail covering a place unprotected by armor plate
+79839,voile,a light semitransparent fabric
+79840,vol-au-vent,puff paste shell filled with a savory meat mixture usually with a sauce
+79841,volatile,a volatile substance; a substance that changes readily from solid or liquid to a vapor; "it was heated to evaporate the volatiles"
+79842,volatile_storage,computer storage that is erased when the power is turned off
+79843,volatility,the property of changing readily from a solid or liquid to a vapor
+79844,volatility unpredictability,the trait of being unpredictably irresolute; "the volatility of the market drove many investors away"
+79845,volcanic_crater crater,a bowl-shaped geological formation at the top of a volcano
+79846,volcanic_eruption eruption,the sudden occurrence of a violent discharge of steam and volcanic material
+79847,volcanic_glass,a kind of natural glass produced when molten lava cools very rapidly
+79848,volcanic_rock,extrusive igneous rock solidified near or on the surface of the Earth
+79849,volcanism,the phenomena associated with volcanic activity
+79850,volcano,a mountain formed by volcanic material
+79851,volcanology vulcanology,the branch of geology that studies volcanoes
+79852,vole field_mouse,any of various small mouselike rodents of the family Cricetidae (especially of genus Microtus) having a stout short-tailed body and inconspicuous ears and inhabiting fields or meadows
+79853,volition will,the capability of conscious choice and decision and intention; "the exercise of their volition we construe as revolt"- George Meredith
+79854,volition willing,the act of making a choice; "followed my father of my own volition"
+79855,volley,a tennis return made by hitting the ball before it bounces
+79856,volleyball,an inflated ball used in playing volleyball
+79857,volleyball volleyball_game,a game in which two teams hit an inflated ball over a high net using their hands
+79858,volleyball_court,the court on which volleyball is played
+79859,volleyball_net,the high net that separates the two teams and over which the volleyball must pass
+79860,volleyball_player,someone who plays the game of volleyball
+79861,volt V,a unit of potential equal to the potential difference between two points on a conductor carrying a current of 1 ampere when the power dissipated between the two points is 1 watt; equivalent to the potential difference across a resistance of 1 ohm when 1 ampere of current flows through it
+79862,volt-ampere var,a unit of electrical power in an AC circuit equal to the power dissipated when 1 volt produces a current of 1 ampere
+79863,voltage electromotive_force emf,the rate at which energy is drawn from a source that produces a flow of electricity in a circuit; expressed in volts
+79864,voltage_drop,a decrease in voltage along a conductor through which current is flowing
+79865,voltage_regulator,a transformer whose voltage ratio of transformation can be adjusted
+79866,voltaic_battery galvanic_battery,battery consisting of a number of voltaic cells arranged in series or parallel
+79867,voltaic_cell galvanic_cell primary_cell,an electric cell that generates an electromotive force by an irreversible conversion of chemical to electrical energy; cannot be recharged
+79868,voltaic_pile pile galvanic_pile,battery consisting of voltaic cells arranged in series; the earliest electric battery devised by Volta
+79869,voltmeter,meter that measures the potential difference between two points
+79870,volume,a relative amount; "mix one volume of the solution with ten volumes of water"
+79871,volume,the amount of 3-dimensional space occupied by an object; "the gas expanded to twice its original volume"
+79872,volume,a publication that is one of a set of several similar publications; "the third volume was missing"; "he asked for the 1989 volume of the Annual Review"
+79873,volume loudness intensity,the magnitude of sound (usually in a specified direction); "the kids played their music at full volume"
+79874,volume_unit capacity_unit capacity_measure cubage_unit cubic_measure cubic_content_unit displacement_unit cubature_unit,a unit of measurement of volume or capacity
+79875,volumeter,a meter to measure the volume of gases, liquids, or solids (either directly or by displacement)
+79876,volumetric_analysis,determination of the volume of gases (or changes in their volume) during combination
+79877,volumetric_analysis,quantitative analysis by the use of definite volumes of standard solutions or reagents
+79878,voluntary,composition (often improvised) for a solo instrument (especially solo organ) and not a regular part of a religious service or musical performance
+79879,voluntary_muscle,striated muscle that can be controlled voluntarily
+79880,volunteer military_volunteer voluntary,(military) a person who freely enlists for service
+79881,volunteer unpaid_worker,a person who performs voluntary work
+79882,voluptuary sybarite,a person addicted to luxury and pleasures of the senses
+79883,volution,a rolling or revolving motion
+79884,volva,cuplike structure around the base of the stalk of certain fungi
+79885,volvelle wheel_chart,a circular slide chart having rotating parts
+79886,volvulus,abnormal twisting of the intestines (usually in the area of the ileum or sigmoid colon) resulting in intestinal obstruction
+79887,vomer,thin trapezoidal bone of the skull forming the posterior and inferior parts of the nasal septum
+79888,vomit vomiting emesis regurgitation disgorgement puking,the reflex act of ejecting the contents of the stomach through the mouth
+79889,vomit vomitus puke barf,the matter ejected in vomiting
+79890,vomiter spewer,a person who vomits
+79891,vomitory,an entrance to an amphitheater or stadium
+79892,von_Neumann Neumann John_von_Neumann,United States mathematician who contributed to the development of atom bombs and of stored-program digital computers (1903-1957)
+79893,von_Neumann_machine,any digital computer incorporating the ideas of stored programs and serial counters that were proposed in 1946 by von Neumann and his colleagues
+79894,von_Sternberg Josef_von_Sternberg,United States film maker (born in Austria) whose films made Marlene Dietrich an international star (1894-1969)
+79895,von_Willebrand's_disease angiohemophilia vascular_hemophilia,a form of hemophilia discovered by Erik von Willebrand; a genetic disorder that is inherited as an autosomal recessive trait; characterized by a deficiency of the coagulation factor and by mucosal bleeding
+79896,voodoo,(Haiti) followers of a religion that involves witchcraft and animistic deities
+79897,voodoo vodoun voodooism hoodooism,a religious cult practiced chiefly in Caribbean countries (especially Haiti); involves witchcraft and animistic deities
+79898,vortex_vein vorticose_vein vena_vorticosum,a vein formed by branches from the back surface of the eye and the ciliary body; empties into the ophthalmic veins
+79899,vorticella,any of various protozoa having a transparent goblet-shaped body with a retractile stalk
+79900,votary,one bound by vows to a religion or life of worship or service; "monasteries of votaries"
+79901,votary,a priest or priestess (or consecrated worshipper) in a non-Christian religion or cult; "a votary of Aphrodite"
+79902,votary,a devoted (almost religiously so) adherent of a cause or person or activity; "the cultured votary of science"
+79903,vote,a body of voters who have the same interests; "he failed to get the Black vote"
+79904,vote,the opinion of a group as determined by voting; "they put the question to a vote"
+79905,vote ballot voting balloting,a choice that is made by counting the number of people in favor of each alternative; "there were only 17 votes in favor of the motion"; "they allowed just one vote per person"
+79906,vote voter_turnout,the total number of voters who participated; "they are expecting a large vote"
+79907,vote_of_confidence,an expression of approval and encouragement; "they gave the chairman a vote of confidence"
+79908,voter elector,a citizen who has a legal right to vote
+79909,voting_age,the age at which a person is old enough to vote in public elections
+79910,voting_booth,a booth in which a person can cast a private vote
+79911,voting_machine,a mechanical device for recording and counting votes mechanically
+79912,voting_precinct election_district,one of several districts into which a city or town is divided for voting; each contains one polling place
+79913,voting_right,the right to vote; especially the right of a common shareholder to vote in person or by proxy on the affairs of a company
+79914,voting_stock,shares in a corporation that entitle the shareholder to voting and proxy rights
+79915,voting_system electoral_system,a legal system for making democratic choices
+79916,voting_trust,an agreement whereby persons owning stock with voting powers retain ownership while transferring the voting rights to the trustees
+79917,vouchee,(law) a person called into court to defend a title
+79918,voucher,a document that serves as evidence of some expenditure
+79919,voucher verifier,someone who vouches for another or for the correctness of a statement
+79920,vouge,a kind of pike used by foot soldiers in the 14th century
+79921,voussoir,wedge-shaped stone building block used in constructing an arch or vault
+79922,vow,a solemn pledge (to oneself or to another or to a deity) to do something or to behave in a certain manner; "they took vows of poverty"
+79923,vowel,a letter of the alphabet standing for a spoken vowel
+79924,vowel vowel_sound,a speech sound made with the vocal tract open
+79925,vowel_point,a mark placed below or near a consonant (as in Hebrew or Arabic) to indicate the spoken vowel
+79926,vowel_system vocalism,the system of vowels used in a particular language
+79927,vower,someone who makes a solemn promise to do something or behave in a certain way; "young vowers of eternal love"; "there are many vowers of chastity but few who observe it"
+79928,vox_angelica voix_celeste,an organ stop producing a gentle tremolo effect
+79929,vox_humana,an organ reed stop producing tones imitative of the human voice
+79930,voyage,a journey to some distant place
+79931,voyager,a traveler to a distant land (especially one who travels by sea)
+79932,voyeur Peeping_Tom peeper,a viewer who enjoys seeing the sex acts or sex organs of others
+79933,voyeurism,a perversion in which a person receives sexual gratification from seeing the genitalia of others or witnessing others' sexual behavior
+79934,vroom,the roaring sound made by a motor that is running at high speed
+79935,vulcanization vulcanisation,process of treating rubber or rubberlike materials with sulphur at great heat to improve elasticity and strength or to harden them
+79936,vulcanizer vulcaniser,someone who vulcanizes rubber to improve its strength and resiliency
+79937,vulgarian,a vulgar person (especially someone who makes a vulgar display of wealth)
+79938,vulgarization vulgarisation,the act of rendering something coarse and unrefined
+79939,vulgarizer vulgariser,someone who makes something vulgar
+79940,vulnerability,susceptibility to injury or attack
+79941,vulnerability exposure,the state of being vulnerable or exposed; "his vulnerability to litigation"; "his exposure to ridicule"
+79942,vulture,any of various large diurnal birds of prey having naked heads and weak claws and feeding chiefly on carrion
+79943,vulva,external parts of the female genitalia
+79944,vulvectomy,surgical removal of part or all of the vulva
+79945,vulvitis,inflammation of the vulva
+79946,vulvovaginitis,inflammation of the vulva and the vagina
+79947,wad,a small mass of soft material; "he used a wad of cotton to wipe the counter"
+79948,waddle,walking with short steps and the weight tilting from one foot to the other; "ducks walk with a waddle"
+79949,waddler,someone who walks with a waddling gait; "fat waddlers who walk like pigeons"
+79950,waders,waterproof hip boots (sometimes extending to the chest) worn by anglers
+79951,wadi,gully or streambed in northern Africa and the Middle East that remains dry except during rainy season
+79952,wading,walking with your feet in shallow water
+79953,wading_bird wader,any of many long-legged birds that wade in water in search of food
+79954,wading_pool,a shallow pool for children
+79955,wafer,a small adhesive disk of paste; used to seal letters
+79956,wafer,a small thin crisp cake or cookie
+79957,wafer,thin disk of unleavened bread used in a religious service (especially in the celebration of the Eucharist)
+79958,waffle,pancake batter baked in a waffle iron
+79959,waffle_iron,a kitchen appliance for baking waffles; the appliance usually consists of two indented metal pans hinged together so that they create a pattern on the waffle
+79960,waffler,someone who speaks or writes in a vague and evasive manner
+79961,wag waggle shake,causing to move repeatedly from side to side
+79962,wag wit card,a witty amusing person who makes jokes
+79963,wage pay earnings remuneration salary,something that remunerates; "wages were paid by check"; "he wasted his pay on drink"; "they saved a quarter of all their earnings"
+79964,wage_claim pay_claim,the wage demanded from management for workers by their union representatives
+79965,wage_concession,an agreement to raise wages
+79966,wage_floor,floor below which wages are not allowed to fall
+79967,wage_freeze,a freeze of wages at a given level
+79968,wage_scale wage_schedule,a schedule of wages paid for different jobs
+79969,wage_setter,any economic condition or variable that serves to set wage rates
+79970,wages reward payoff,a recompense for worthy acts or retribution for wrongdoing; "the wages of sin is death"; "virtue is its own reward"
+79971,waggery waggishness,waggish behavior
+79972,wagon coaster_wagon,a child's four-wheeled toy cart sometimes used for coasting
+79973,wagon waggon,any of various kinds of wheeled vehicles drawn by an animal or a tractor
+79974,wagon_tire,a metal hoop forming the tread of a wheel
+79975,wagon_wheel,a wheel of a wagon
+79976,wagoner waggoner,the driver of a wagon
+79977,wagonwright waggonwright wainwright,a wagon maker
+79978,wagtail,Old World bird having a very long tail that jerks up and down as it walks
+79979,wahoo Acanthocybium_solandri,large fast-moving predacious food and game fish; found worldwide
+79980,wahoo burning_bush Euonymus_atropurpureus,deciduous shrub having purple capsules enclosing scarlet seeds
+79981,waif street_child,a homeless child especially one forsaken or orphaned; "street children beg or steal in order to survive"
+79982,wailer,a mourner who utters long loud high-pitched cries
+79983,wailing bawling,loud cries made while weeping
+79984,wain,large open farm wagon
+79985,wainscot dado,panel forming the lower part of an interior wall when it is finished differently from the rest of the wall
+79986,wainscot wainscoting wainscotting,wooden panels that can be used to line the walls of a room
+79987,wainscoting wainscotting,a wainscoted wall (or wainscoted walls collectively)
+79988,waist waistline,the narrowing of the body between the ribs and hips
+79989,waist_pack belt_bag,a small pouch (usually with a zipper) that attaches to a belt and is worn around the waist
+79990,wait waiting,the act of waiting (remaining inactive in one place while expecting something); "the wait was an ordeal for him"
+79991,waiter,a person who waits or awaits
+79992,waiter server,a person whose occupation is to serve at table (as in a restaurant)
+79993,waiting_game,a strategy of delay
+79994,waiting_list,a roster of those waiting to obtain something
+79995,waitress,a woman waiter
+79996,wake backwash,the wave that spreads behind a boat as it moves forward; "the motorboat's wake capsized the canoe"
+79997,wake viewing,a vigil held over a corpse the night before burial; "there's no weeping at an Irish wake"
+79998,wake-up_call,a warning to take action concerning something that was overlooked or neglected; "the bombing was a wake-up call to strengthen domestic security"
+79999,wake-up_call,a telephone call that you request be made a specific time in order to wake you up at that time (especially in hotels); "she left a wake-up call for 7 a.m."
+80000,wake_board wakeboard,a buoyant board (resembling a surfboard) that is used to ride over water while being pulled behind a motorboat
+80001,wakefulness,a periodic state during which you are conscious and aware of the world; "consciousness during wakefulness in a sane person is pretty well ordered and familiar"
+80002,wakefulness sleeplessness,a temporary state in which you are unable (or unwilling) to sleep; "accept your wakefulness and sleep in its own contrary way is more likely to come"
+80003,waker,a person who awakes; "an early waker"
+80004,waker rouser arouser,someone who rouses others from sleep
+80005,waking,the state of remaining awake; "days of danger and nights of waking"
+80006,wale strake,thick plank forming a ridge along the side of a wooden ship
+80007,wale welt weal wheal,a raised mark on the skin (as produced by the blow of a whip); characteristic of many allergic reactions
+80008,walk,a slow gait of a horse in which two feet are always on the ground
+80009,walk,the act of walking somewhere; "he took a walk after lunch"
+80010,walk manner_of_walking,manner of walking; "he had a funny walk"
+80011,walk walking,the act of traveling by foot; "walking is a healthy form of exercise"
+80012,walk walkway paseo,a path set aside for walking; "after the blizzard he shoveled the front walk"
+80013,walk-in,person who walks in without having an appointment; "the emergency room was overrun with walk-ins"
+80014,walk-in,an operative who initiates his own defection (usually to a hostile country) for political asylum
+80015,walk-in,a small room large enough to admit entrance
+80016,walk-in waltz,an assured victory (especially in an election)
+80017,walk-on,plays a small part in a dramatic production
+80018,walk-through,a thorough explanation (usually accompanied by a demonstration) of each step in a procedure or process; "she gave me a walk-through of my new duties"
+80019,walk-through,a pedestrian passageway through the ground floor of a building
+80020,walk-through,a first perfunctory rehearsal of a theatrical production in which actors read their lines from the script and move as directed
+80021,walk-through,the act of walking in order to view something; "the realtor took her on a walk-through of the apartment"
+80022,walk-up,an apartment building without an elevator
+80023,walk-up_apartment walk-up,an apartment in a building without an elevator
+80024,walk_of_life walk,careers in general; "it happens in all walks of life"
+80025,walkabout,a walking trip or tour
+80026,walkabout,a public stroll by a celebrity to meet people informally
+80027,walkabout,nomadic excursions into the bush made by an Aborigine
+80028,walker,a shoe designed for comfortable walking
+80029,walker Zimmer Zimmer_frame,a light enclosing framework (trade name Zimmer) with rubber castors or wheels and handles; helps invalids or the handicapped or the aged to walk
+80030,walker baby-walker go-cart,an enclosing framework on casters or wheels; helps babies learn to walk
+80031,walkie-talkie walky-talky,small portable radio link (receiver and transmitter)
+80032,walking_delegate,a union representative who visits workers at their jobs to see whether agreements are observed
+80033,walking_fern walking_leaf Asplenium_rhizophyllum Camptosorus_rhizophyllus,ferns having lanceolate fronds that root at the tip
+80034,walking_leaf leaf_insect,tropical insect having a flattened leaflike body; common in southern Asia and the East Indies
+80035,walking_papers marching_orders,(informal) a notice of dismissal or discharge
+80036,walking_shoe,a light comfortable shoe designed for vigorous walking
+80037,walking_stick,a stick carried in the hand for support in walking
+80038,walking_stick walkingstick stick_insect,any of various mostly tropical insects having long twiglike bodies
+80039,walkout,a strike in which the workers walk out
+80040,walkout,the act of walking out (of a meeting or organization) as a sign of protest; "there was a walkout by the Black members as the chairman rose to speak"
+80041,walkover,backbends combined with handstands
+80042,wall,a difficult or awkward situation; "his back was to the wall"; "competition was pushing them to the wall"
+80043,wall,a vertical (or almost vertical) smooth rock face (as of a cave or mountain)
+80044,wall,anything that suggests a wall in structure or function or effect; "a wall of water"; "a wall of smoke"; "a wall of prejudice"; "negotiations ran into a brick wall"
+80045,wall,a layer of material that encloses space; "the walls of the cylinder were perforated"; "the container's walls were blue"
+80046,wall,a masonry fence (as around an estate or garden); "the wall followed the road"; "he ducked behind the garden wall and waited"
+80047,wall,an architectural partition with a height and length greater than its thickness; used to divide or enclose an area or to support another structure; "the south wall had a small window"; "the walls were covered with pictures"
+80048,wall paries,(anatomy) a layer (a lining or membrane) that encloses a structure; "stomach walls"
+80049,wall_clock,a clock mounted on a wall
+80050,wall_creeper tichodrome Tichodroma_muriaria,crimson-and-grey songbird that inhabits town walls and mountain cliffs of southern Eurasia and northern Africa
+80051,wall_germander Teucrium_chamaedrys,European perennial subshrub with red-purple or bright rose flowers with red and white spots
+80052,wall_panel,paneling that forms part of a wall
+80053,wall_pepper Sedum_acre,mossy European creeping sedum with yellow flowers; widely introduced as a ground cover
+80054,wall_plate,plate (a timber along the top of a wall) to support the ends of joists, etc., and distribute the load
+80055,wall_rock,a rock immediately adjacent to a vein or fault
+80056,wall_rocket Diplotaxis_muralis Diplotaxis_tenuifolia,yellow-flowered European plant that grows on old walls and in waste places; an adventive weed in North America
+80057,wall_rue wall_rue_spleenwort Asplenium_ruta-muraria,small delicate spleenwort found on a steep slope (as a wall or cliff) of Eurasia and North America
+80058,wall_socket wall_plug electric_outlet electrical_outlet outlet electric_receptacle,receptacle providing a place in a wiring system where current can be taken to run electrical devices
+80059,wall_tent,a canvas tent with four vertical walls
+80060,wall_unit,a piece of furniture having several units that stands against one wall of a room
+80061,wallaby brush_kangaroo,any of various small or medium-sized kangaroos; often brightly colored
+80062,wallah,usually in combination: person in charge of or employed at a particular thing; "a kitchen wallah"; "the book wallah"
+80063,wallboard drywall dry_wall,a wide flat board used to cover walls or partitions; made from plaster or wood pulp or other materials and used primarily to form the interior walls of houses
+80064,wallet billfold notecase pocketbook,a pocket-size case for holding papers and paper money
+80065,walleye divergent_strabismus exotropia,strabismus in which one or both eyes are directed outward
+80066,walleye walleyed_pike jack_salmon dory Stizostedion_vitreum,pike-like freshwater perches
+80067,wallflower,any of numerous plants of the genus Erysimum having fragrant yellow or orange or brownish flowers
+80068,wallflower,remains on sidelines at social event
+80069,wallflower Cheiranthus_cheiri Erysimum_cheiri,perennial of southern Europe having clusters of fragrant flowers of all colors especially yellow and orange; often naturalized on old walls or cliffs; sometimes placed in genus Erysimum
+80070,wallop,a severe blow
+80071,walloper,a very hard hitter
+80072,walloper,a winner by a wide margin
+80073,wallow,a puddle where animals go to wallow
+80074,wallow,an indolent or clumsy rolling about; "a good wallow in the water"
+80075,wallpaper,a decorative paper for the walls of rooms
+80076,wallpaperer wall-paperer,a worker who papers walls
+80077,wally,a silly and inept person; someone who is regarded as stupid
+80078,walnut,hard dark-brown wood of any of various walnut trees; used especially for furniture and paneling
+80079,walnut,nut of any of various walnut trees having a wrinkled two-lobed seed with a hard shell
+80080,walnut walnut_tree,any of various trees of the genus Juglans
+80081,walnut_blight,a disease of English walnut trees
+80082,walnut_oil,oil from walnuts
+80083,walrus seahorse sea_horse,either of two large northern marine mammals having ivory tusks and tough hide over thick blubber
+80084,walrus_mustache walrus_moustache,a bushy droopy mustache
+80085,waltz,music composed in triple time for waltzing
+80086,waltz valse,a ballroom dance in triple time with a strong accent on the first beat
+80087,waltzer,a dancer who waltzes
+80088,wampum peag wampumpeag,small cylindrical beads made from polished shells and fashioned into strings or belts; used by certain Native American peoples as jewelry or currency
+80089,wand,a thin supple twig or rod; "stems bearing slender wands of flowers"
+80090,wand,a rod used by a magician or water diviner
+80091,wanderer roamer rover bird_of_passage,someone who leads a wandering unsettled life
+80092,wandering roving vagabondage,travelling about without any clear destination; "she followed him in his wanderings and looked after him"
+80093,wandering_albatross Diomedea_exulans,very large albatross; white with wide black wings
+80094,wanderlust itchy_feet,very strong or irresistible impulse to travel
+80095,wandflower Sparaxis_tricolor,a showy often-cultivated plant with tawny yellow often purple-spotted flowers
+80096,wangle wangling,an instance of accomplishing something by scheming or trickery
+80097,waning,a gradual decrease in magnitude or extent; "the waning of his enthusiasm was obvious"; "the waxing and waning of the moon"
+80098,want_ad,a newspaper advertisement stating what is wanted
+80099,wanted_notice wanted_poster,a public announcement by a law enforcement agency that they desire to question or arrest some person
+80100,wanter needer,a person who wants or needs something; "an owner of many things and needer of none"
+80101,wanton,lewd or lascivious woman
+80102,wapiti elk American_elk Cervus_elaphus_canadensis,large North American deer with large much-branched antlers in the male
+80103,war,a concerted campaign to end something that is injurious; "the war on poverty"; "the war against crime"
+80104,war state_of_war,a legal state created by a declaration of war and ended by official declaration during which the international rules of war apply; "war was declared in November but actual fighting did not begin until the following spring"
+80105,war warfare,an active struggle between competing entities; "a price war"; "a war of wits"; "diplomatic warfare"
+80106,war warfare,the waging of armed conflict against an enemy; "thousands of people were killed in the war"
+80107,war_baby,conceived or born during war
+80108,war_bride,bride of a serviceman during wartime
+80109,war_chest,a fund accumulated to finance a war (or a political campaign)
+80110,war_cloud,an ominous sign that war threatens
+80111,war_correspondent,a journalist who sends news reports and commentary from a combat zone or place of battle for publication or broadcast
+80112,war_crime,a crime committed in wartime; violation of rules of war
+80113,war_criminal,an offender who violates international law during times of war
+80114,war_cry rallying_cry battle_cry cry watchword,a slogan used to rally support for a cause; "a cry to arms"; "our watchword will be `democracy'"
+80115,war_cry war_whoop rallying_cry battle_cry,a yell intended to rally a group of soldiers in battle
+80116,war_dance,a ceremonial dance performed before a battle or after a victory
+80117,war_game,a simulation of a military operation intended to train military commanders or to demonstrate a situation or to test a proposed strategy
+80118,war_god god_of_war,a god worshipped as giving victory in war
+80119,war_paint,adornment consisting of paint applied to the face and body of certain Amerindians before a battle
+80120,war_paint,full ceremonial regalia
+80121,war_party,a band of warriors who raid or fight an enemy (used especially of Native Americans)
+80122,war_party,a political party that supports a war
+80123,war_power,an extraordinary power exercised (usually by the executive branch) in the prosecution of a war and involving an extension of the powers that the government normally has in peacetime
+80124,war_room,a room where strategic decisions are made (especially for military or political campaigns)
+80125,war_widow,a woman whose husband has died in war
+80126,war_zone,a combat zone where military operations are coordinated (especially a designated area in international waters where the rights of neutrals are not respected by nations at war)
+80127,waratah Telopea_Oreades,tall shrub of eastern Australia having oblanceolate to obovate leaves and red flowers in compact racemes
+80128,waratah Telopea_speciosissima,straggling shrub with narrow leaves and conspicuous red flowers in dense globular racemes
+80129,warble,a lumpy abscess under the hide of domestic mammals caused by larvae of a botfly or warble fly
+80130,warble_fly,hairy bee-like fly whose larvae produce lumpy abscesses (warbles) under the skin of cattle
+80131,warbler,a singer; usually a singer who adds embellishments to the song
+80132,warbler,a small active songbird
+80133,ward,a person who is under the protection or in the custody of another
+80134,ward,a district into which a city or town is divided for the purpose of administration and elections
+80135,ward hospital_ward,block forming a division of a hospital (or a suite of rooms) shared by patients who need a similar kind of care; "they put her in a 4-bed ward"
+80136,warden,the chief official in charge of a prison
+80137,wardenship,the position of warden
+80138,warder,a person who works in a prison and is in charge of prisoners
+80139,wardership,the position of warder
+80140,wardress,a woman warder
+80141,wardrobe,collection of costumes belonging to a theatrical company
+80142,wardrobe,collection of clothing belonging to one person
+80143,wardrobe closet press,a tall piece of furniture that provides storage space for clothes; has a door and rails or hooks for hanging clothes
+80144,wardroom,military quarters for dining and recreation for officers of a warship (except the captain)
+80145,ware,articles of the same kind or material; usually used in combination: `silverware', `software'
+80146,warehouse storage_warehouse,a storehouse for goods and merchandise
+80147,warehouseman's_lien,right of a warehouseman to retain goods until all storage charges have been paid
+80148,warehouser warehouseman,a workman who manages or works in a warehouse
+80149,warfarin Coumadin,an anticoagulant (trade name Coumadin) use to prevent and treat a thrombus or embolus
+80150,warhead payload load,the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents
+80151,warhorse,a work of art (composition or drama) that is part of the standard repertory but has become hackneyed from much repetition
+80152,warhorse,horse used in war
+80153,wariness chariness,the trait of being cautious and watchful
+80154,warlock,a male witch or demon
+80155,warlord,supreme military leader exercising civil power in a region especially one accountable to nobody when the central government is weak
+80156,warm-up tune-up prolusion,exercising in preparation for strenuous activity
+80157,warm_front,the front of an advancing mass of warmer air
+80158,warm_up,performing mild exercises to prepare for some more strenuous activity; "the singers have to warm up"; "the marathon runner did not warm up and hurt himself"
+80159,warmheartedness warmth,a warmhearted feeling
+80160,warming_pan,a long-handled covered pan holding live coals to warm a bed
+80161,warmongering war_advocacy,a policy of advocating war
+80162,warmth warmness,the quality of having a moderate degree of heat; "an agreeable warmth in the house"
+80163,warner,someone who gives a warning to others
+80164,warning,a message informing of danger; "a warning that still more bombs could explode"
+80165,warning,notification of something, usually in advance; "they gave little warning of their arrival"; "she had only had four days' warning before leaving Berlin"
+80166,warning_of_attack,a warning to national policy makers that an enemy intends to launch an attack in the near future
+80167,warning_of_war,a warning to national policy makers that an enemy intends war or is preparing for war and is on a course that increases the risk of war
+80168,warp,yarn arranged lengthways on a loom and crossed by the woof
+80169,warp buckle,a shape distorted by twisting or folding
+80170,warp warping,a moral or mental distortion
+80171,warpath,hostile or belligerent mood; "the chief is on the warpath today"
+80172,warpath,a course leading to warfare or battle
+80173,warplane military_plane,an aircraft designed and used for combat
+80174,warrant,a writ from a court commanding police to perform specified acts
+80175,warrant stock_warrant stock-purchase_warrant,a type of security issued by a corporation (usually together with a bond or preferred stock) that gives the holder the right to purchase a certain amount of common stock at a stated price; "as a sweetener they offered warrants along with the fixed-income securities"
+80176,warrant_officer,holds rank by virtue of a warrant
+80177,warrantee,a recipient of a warrant issued by a court in the United States
+80178,warrantee,a customer to whom a warrant or guarantee is given
+80179,warren,a colony of rabbits
+80180,warren rabbit_warren,a series of connected underground tunnels occupied by rabbits
+80181,warren rabbit_warren,an overcrowded residential area
+80182,warrener,maintains a rabbit warren
+80183,warrigal warragal,Australian wild horse
+80184,warrior,someone engaged in or experienced in warfare
+80185,warship war_vessel combat_ship,a government ship that is available for waging war
+80186,wart,an imperfection in someone or something that is suggestive of a wart (especially in smallness or unattractiveness)
+80187,wart,any small rounded protuberance (as on certain plants or animals)
+80188,wart verruca,(pathology) a firm abnormal elevated blemish on the skin; caused by a virus
+80189,warthog,African wild swine with warty protuberances on the face and large protruding tusks
+80190,wartime,a period of time during which there is armed conflict
+80191,wasabi,a Japanese plant of the family Cruciferae with a thick green root
+80192,wasabi,the thick green root of the wasabi plant that the Japanese use in cooking and that tastes like strong horseradish; in powder or paste form it is often eaten with raw fish
+80193,wash,a thin coat of water-base paint
+80194,wash,any enterprise in which losses and gains cancel out; "at the end of the year the accounting department showed that it was a wash"
+80195,wash dry_wash,the dry bed of an intermittent stream (as at the bottom of a canyon)
+80196,wash wash_drawing,a watercolor made by applying a series of monochrome washes one over the other
+80197,wash washing lavation,the work of cleansing (usually with soap and water)
+80198,wash-and-wear,a fabric treated to be easily washable and to require no ironing
+80199,wash_leather,piece of chamois used for cleaning and polishing
+80200,washbasin basin washbowl washstand lavatory,a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face; "he ran some water in the basin and splashed it on his face"
+80201,washbasin handbasin washbowl lavabo wash-hand_basin,a basin for washing the hands (`wash-hand basin' is a British expression)
+80202,washboard,device consisting of a corrugated surface to scrub clothes on
+80203,washboard splashboard,protective covering consisting of a broad plank along a gunwale to keep water from splashing over the side
+80204,washcloth washrag flannel face_cloth,bath linen consisting of a piece of cloth used to wash the face and body
+80205,washday washing_day,a day set aside for doing household laundry
+80206,washer,someone who washes things for a living
+80207,washer,seal consisting of a flat disk placed to prevent leakage
+80208,washer automatic_washer washing_machine,a home appliance for washing clothes and linens automatically
+80209,washerman laundryman,operates industrial washing machine
+80210,washhouse,a building or outbuilding where laundry is done
+80211,washing-up,the washing of dishes etc after a meal
+80212,washout,the channel or break produced by erosion of relatively soft soil by water; "it was several days after the storm before they could repair the washout and open the road"
+80213,washout wash,the erosive process of washing away soil or gravel by water (as from a roadway); "from the house they watched the washout of their newly seeded lawn by the water"
+80214,washroom,a lavatory (particularly a lavatory in a public place)
+80215,washstand wash-hand_stand,furniture consisting of a table or stand to hold a basin and pitcher of water for washing: `wash-hand stand' is a British term
+80216,washtub,a tub in which clothes or linens can be washed
+80217,washup bathing,the act of washing yourself (or another person)
+80218,washwoman washerwoman laundrywoman laundress,a working woman who takes in washing
+80219,wasp,social or solitary hymenopterans typically having a slender body with the abdomen attached by a narrow stalk and having a formidable sting
+80220,wasp's_nest wasps'_nest hornet's_nest hornets'_nest,habitation for wasps or hornets
+80221,wasp_waist,a very slender waist
+80222,wassail,a punch made of sweetened ale or wine heated with spices and roasted apples; especially at Christmas
+80223,wassailer carouser,someone who enjoys riotous drinking
+80224,wastage,the process of wasting
+80225,wastage,anything lost by wear or waste
+80226,waste permissive_waste,(law) reduction in the value of an estate caused by act or neglect
+80227,waste waste_material waste_matter waste_product,any materials unused and rejected as worthless or unwanted; "they collect the waste once a week"; "much of the waste material is carried off in the sewers"
+80228,waste wastefulness dissipation,useless or profitless activity; using or expending or consuming thoughtlessly or carelessly; "if the effort brings no compensating gain it is a waste"; "mindless dissipation of natural resources"
+80229,waste_of_effort waste_of_energy,a useless effort
+80230,waste_of_material,a useless consumption of material
+80231,waste_of_money,money spent for inadequate return; "the senator said that the project was a waste of money"
+80232,waste_of_time,the devotion of time to a useless activity; "the waste of time could prove fatal"
+80233,waste_paper,paper discarded after use
+80234,wastepaper_basket waste-paper_basket wastebasket waste_basket circular_file,a container with an open top; for discarded paper and other rubbish
+80235,wastrel waster,someone who dissipates resources self-indulgently
+80236,watch,the period during which someone (especially a guard) is on duty
+80237,watch,a period of time (4 or 2 hours) during which some of a ship's crew are on duty
+80238,watch ticker,a small portable timepiece
+80239,watch vigil,a purposeful surveillance to guard or observe
+80240,watch_cap,a knitted dark blue wool cap worn by seamen in cold or stormy weather
+80241,watch_case,the metal case in which the works of a watch are housed
+80242,watch_fire,a fire lighted at night as a signal
+80243,watch_glass,laboratory glassware; a shallow glass dish used as an evaporating surface or to cover a beaker
+80244,watch_key,winder consisting of a key with a square hole; used for winding some watches
+80245,watch_night,a devotional service (especially on New Year's Eve)
+80246,watchband watchstrap wristband watch_bracelet bracelet,a band of cloth or leather or metal links attached to a wristwatch and wrapped around the wrist
+80247,watchdog,a guardian or defender against theft or illegal practices or waste; "she is the global watchdog for human rights abuses"
+80248,watchdog guard_dog,a dog trained to guard property
+80249,watcher,a person who keeps a devotional vigil by a sick bed or by a dead body
+80250,watchfulness vigilance weather_eye,vigilant attentiveness; "he keeps a weather eye open for trouble"
+80251,watchfulness wakefulness vigilance alertness,the process of paying close and continuous attention; "wakefulness, watchfulness, and bellicosity make a good hunter"; "vigilance is especially susceptible to fatigue"
+80252,watchmaker horologist horologer,someone who makes or repairs watches
+80253,watchman watcher security_guard,a guard who keeps watch
+80254,watchtower,an observation tower for a lookout to watch over prisoners or watch for fires or enemies
+80255,water,once thought to be one of four elements composing the universe (Empedocles)
+80256,water,a liquid necessary for the life of most animals and plants; "he asked for a drink of water"
+80257,water H2O,binary compound that occurs at room temperature as a clear colorless odorless tasteless liquid; freezes into ice below 0 degrees centigrade and boils above 100 degrees centigrade; widely used as a solvent
+80258,water-base_paint,paint in which water is used as the vehicle
+80259,water-cooled_reactor,nuclear reactor using water as a coolant
+80260,water-mint water_mint Mentha_aquatica,a European mint that thrives in wet places; has a perfume like that of the bergamot orange; naturalized in eastern North America
+80261,water-rate,rate per quarter for water from a public supply
+80262,water-shield Brasenia_schreberi water-target,aquatic plant with floating oval leaves and purple flowers; in lakes and slow-moving streams; suitable for aquariums
+80263,water-shield fanwort Cabomba_caroliniana,common aquatic plant of eastern North America having floating and submerged leaves and white yellow-spotted flowers
+80264,water-skiing,skiing on water while being towed by a motorboat
+80265,water-soluble_vitamin,any vitamin that is soluble in water
+80266,water_avens Indian_chocolate purple_avens chocolate_root Geum_rivale,erect perennial of north temperate zone having pinnate leaves and a few nodding flowers with a brown-purple calyx and orange and pink petals
+80267,water_back,water heater consisting of a tank or pipes set at the back of a fireplace or in the firebox of a stove
+80268,water_bed,a bed with a mattress made of strong plastic that is filled with water
+80269,water_beetle,any of numerous aquatic beetles usually having a smooth oval body and flattened hind legs for swimming
+80270,water_biscuit,a thin flour-and-water biscuit usually made without shortening; often served with cheese
+80271,water_blister,blister containing a nonpurulent clear watery content
+80272,water_boatman boat_bug,carnivorous aquatic bug having paddle-like hind legs
+80273,water_bottle,a bottle for holding water
+80274,water_boy waterer,an assistant who supplies drinking water
+80275,water_buffalo water_ox Asiatic_buffalo Bubalus_bubalis,an Asian buffalo that is often domesticated for use as a draft animal
+80276,water_bug,a true bug: large aquatic bug adapted to living in or on the surface of water
+80277,water_butt,a butt set on end to contain water especially to store rainwater
+80278,water_caltrop Jesuits'_nut Trapa_natans,a variety of water chestnut
+80279,water_cannon watercannon,a hose (carried on a truck) that fires water under high pressure to disperse crowds (especially crowds of rioters)
+80280,water_carpet water_mat Chrysosplenium_americanum,aquatic herb with yellowish flowers; central and western United States
+80281,water_cart,cart with a tank for water (especially with fresh water for sale)
+80282,water_chestnut,edible bulbous tuber of a Chinese marsh plant
+80283,water_chestnut Chinese_water_chestnut Eleocharis_dulcis,Chinese sedge yielding edible bulb-shaped tubers
+80284,water_chestnut water_chestnut_plant caltrop,a plant of the genus Trapa bearing spiny four-pronged edible nutlike fruits
+80285,water_chevrotain water_deer Hyemoschus_aquaticus,largest chevrotain; of marshy areas of west Africa
+80286,water_chinquapin,edible nutlike seeds of an American lotus having the flavor of a chinquapin
+80287,water_chinquapin American_lotus yanquapin Nelumbo_lutea,water lily of eastern North America having pale yellow blossoms and edible globular nutlike seeds
+80288,water_chute,chute with flowing water down which toboggans and inner tubes and people slide into a pool
+80289,water_clock clepsydra water_glass,clock that measures time by the escape of water
+80290,water_closet closet W.C. loo,a toilet in Britain
+80291,water_clover Marsilea_quadrifolia,water fern of Europe and Asia and the eastern United States distinguished by four leaflets resembling clover leaves
+80292,water_company waterworks,a public utility that provides water
+80293,water_conservation,the conservation of water resources
+80294,water_cooler,a device for cooling and dispensing drinking water
+80295,water_crowfoot water_buttercup Ranunculus_aquatilis,plant of ponds and slow streams having submerged and floating leaves and white flowers; Europe and North America
+80296,water_development water_project water_program,making an area of water more useful
+80297,water_dog,a dog accustomed to water and usually trained to retrieve waterfowl
+80298,water_dog water_rat,a person who enjoys being in or on the water
+80299,water_dropwort hemlock_water_dropwort Oenanthe_crocata,European poisonous herb having tuberous roots, yellow juice that stains the skin, yellow flowers and foliage resembling celery; all parts extremely poisonous
+80300,water_elm Ulmus_laevis,Eurasian elm closely resembling the American elm; thrives in a moist environment
+80301,water_faucet water_tap tap hydrant,a faucet for drawing water from a pipe or cask
+80302,water_fennel Oenanthe_aquatica,European poisonous herb with fibrous roots
+80303,water_filter,a filter to remove impurities from the water supply
+80304,water_gap,a pass in a mountain ridge through which a stream flows
+80305,water_gas,a mixture of hydrogen and carbon monoxide with small amounts of other gases; made by blowing steam over hot coke or coal
+80306,water_gauge water_gage water_glass,gauge for indicating the level of water in e.g. a tank or boiler or reservoir
+80307,water_gillyflower American_featherfoil Hottonia_inflata,a featherfoil of the eastern United States with submerged spongy inflated flower stalks and white flowers
+80308,water_glass,a glass for drinking water
+80309,water_gum Nyssa_aquatica,columnar swamp tree of southeastern to midwestern North America yielding pale soft easily worked wood
+80310,water_hammer,the banging sound of steam in pipes
+80311,water_hazard,hazard provided by ponds of water that the golfer must avoid
+80312,water_heater hot-water_heater hot-water_tank,a heater and storage tank to supply heated water
+80313,water_hemlock Cicuta_verosa,tall erect highly poisonous Eurasiatic perennial herb locally abundant in marshy areas
+80314,water_hickory bitter_pecan water_bitternut Carya_aquatica,hickory of southern United States having many narrow leaflets and rather bitter nuts
+80315,water_hole,a natural hole or hollow containing water
+80316,water_horehound Lycopus_americanus,aromatic perennial herb of United States
+80317,water_hyacinth water_orchid Eichhornia_crassipes Eichhornia_spesiosa,a tropical floating aquatic plant having spikes of large blue flowers; troublesome in clogging waterways especially in southern United States
+80318,water_ice sorbet,an ice containing no milk but having a mushy consistency; usually made from fruit juice
+80319,water_jacket,a container filled with water that surrounds a machine to cool it; especially that surrounding the cylinder block of an engine
+80320,water_jug,a jug that holds water
+80321,water_jump,a pool or stream in a steeplechase or similar contest
+80322,water_level,the level of the surface of a body of water
+80323,water_level,a water gauge that shows the level by showing the surface of the water in a trough or U-shaped tube
+80324,water_lily,an aquatic plant of the family Nymphaeaceae
+80325,water_line watermark,a line marking the level reached by a body of water
+80326,water_lobelia Lobelia_dortmanna,erect perennial aquatic herb of Europe and North America having submerged spongy leaves and pendulous racemes of blue flowers above the water
+80327,water_locust swamp_locust Gleditsia_aquatica,honey locust of swamps and bottomlands of southern United States having short oval pods; yields dark heavy wood
+80328,water_main,main (a pipe or conduit) for conveying water
+80329,water_meter,meter for measuring the quantity of water passing through a particular outlet
+80330,water_milfoil,an aquatic plant of the genus Myriophyllum having feathery underwater leaves and small inconspicuous flowers
+80331,water_mill,a mill powered by a water wheel
+80332,water_moccasin,any of numerous North American water snakes inhabiting fresh waters
+80333,water_moccasin cottonmouth cottonmouth_moccasin Agkistrodon_piscivorus,venomous semiaquatic snake of swamps in southern United States
+80334,water_mold,parasitic or saprobic organisms living chiefly in fresh water or moist soil
+80335,water_nymph,(Greek mythology) any nymph of the water
+80336,water_nymph fragrant_water_lily pond_lily Nymphaea_odorata,a water lily having large leaves and showy fragrant flowers that float on the water; of temperate and tropical regions
+80337,water_oak possum_oak Quercus_nigra,relatively tall deciduous water oak of southeastern United States often cultivated as a shade tree; thrives in wet soil
+80338,water_of_crystallization water_of_crystallisation water_of_hydration,the water present in hydrated compounds
+80339,water_on_the_knee,hydrarthrosis affecting the knee
+80340,water_ouzel dipper,small stocky diving bird without webbed feet; frequents fast-flowing streams and feeds along the bottom
+80341,water_parsnip Sium_suave,stout white-flowered perennial found wild in shallow fresh water; northern United States and Asia
+80342,water_pimpernel,a white-flowered aquatic plant of the genus Samolus
+80343,water_pistol water_gun squirt_gun squirter,plaything consisting of a toy pistol that squirts water
+80344,water_plantain Alisma_plantago-aquatica,marsh plant having clusters of small white or pinkish flowers and broad pointed or rounded leaves
+80345,water_pollution,pollution of the water in rivers and lakes
+80346,water_polo,a game played in a swimming pool by two teams of swimmers who try to throw an inflated ball into the opponents' goal
+80347,water_pump,the pump in the cooling system of an automobile that cause the water to circulate
+80348,water_rat,any of various amphibious rats
+80349,water_right riparian_right,right of access to water
+80350,water_sapphire,a deep blue cordierite often used as a gemstone
+80351,water_scooter sea_scooter scooter,a motorboat resembling a motor scooter
+80352,water_scorpion,long-legged aquatic insect having the front legs fitted for seizing and holding prey and the abdomen extended by a long breathing tube
+80353,water_shamrock buckbean bogbean bog_myrtle marsh_trefoil Menyanthes_trifoliata,perennial plant of Europe and America having racemes of white or purplish flowers and intensely bitter trifoliate leaves; often rooting at water margin and spreading across the surface
+80354,water_shrew,any of several small semiaquatic shrews usually living near swift-flowing streams
+80355,water_ski,broad ski for skimming over water towed by a speedboat
+80356,water_snake,any of various mostly harmless snakes that live in or near water
+80357,water_softener,a substance (such as sodium chloride) that lessens the hardness of water by replacing calcium and magnesium ions with sodium ions and so gives the water more efficient sudsing power
+80358,water_spaniel,any dog of two large curly-coated breeds used for hunting waterfowl
+80359,water_speedwell Veronica_michauxii Veronica_anagallis-aquatica,plant of wet places in Eurasia and America
+80360,water_sport aquatics,sports that involve bodies of water
+80361,water_sprite water_nymph water_spirit,a fairy that inhabits water
+80362,water_star_grass mud_plantain Heteranthera_dubia,grassy-leaved North American aquatic plant with yellow star-shaped blossoms
+80363,water_starwort,any of several aquatic plants having a star-shaped rosette of floating leaves; America, Europe and Asia
+80364,water_strider pond-skater water_skater,long-legged bug that skims about on the surface of water
+80365,water_system,a river and all of its tributaries
+80366,water_system water_supply water,a facility that provides a source of water; "the town debated the purification of the water supply"; "first you have to cut off the water"
+80367,water_table water_level groundwater_level,underground surface below which the ground is wholly saturated with water; "spring rains had raised the water table"
+80368,water_thrush,brownish North American warbler found near streams
+80369,water_tower,a large reservoir for water
+80370,water_travel seafaring,travel by water
+80371,water_turkey Anhinga_anhinga,blackish New World snakebird of swampy regions
+80372,water_vapor water_vapour,water in a vaporous form diffused in the atmosphere but below boiling temperature
+80373,water_vascular_system,system of fluid-filled tubes used by echinoderms in locomotion and feeding and respiration
+80374,water_violet Hottonia_palustris,featherfoil of Europe and western Asia having submerged and floating leaves and violet flowers
+80375,water_vole Richardson_vole Microtus_richardsoni,of western North America
+80376,water_vole water_rat Arvicola_amphibius,common large Eurasian vole
+80377,water_wagon water_waggon,a wagon that carries water (as for troops or work gangs or to sprinkle down dusty dirt roads in the summertime)
+80378,water_wings,a life preserver consisting of a connected pair of inflatable bags that fit under a person's arms and provide buoyancy; used by children learning to swim
+80379,water_witch dowser rhabdomancer,someone who uses a divining rod to find underground water
+80380,waterbuck,any of several large African antelopes of the genus Kobus having curved ridged horns and frequenting e.g. swamps and rivers
+80381,watercolor water-color watercolour water-colour,water-soluble pigment
+80382,watercolor water-color watercolour water-colour,a water-base paint (with water-soluble pigments); used by artists
+80383,watercolor water-color watercolour water-colour,a painting produced with watercolors
+80384,watercolor water-color watercolour water-colour,the art or technique of painting with watercolors
+80385,watercolorist watercolourist,a painter who paints with watercolors
+80386,watercourse,natural or artificial channel through which water flows
+80387,watercourse waterway,a conduit through which water flows
+80388,watercraft,skill in the management of boats
+80389,watercress,any of several water-loving cresses
+80390,watercress,cresses that grow in clear ponds and streams
+80391,waterdog,any of several large aquatic salamanders
+80392,watered_stock,stock representing ownership of overvalued assets; stock of a corporation whose total worth is less than its invested capital
+80393,waterer,someone who waters plants or crops
+80394,waterfall falls,a steep descent of the water of a river
+80395,waterfowl water_bird waterbird,freshwater aquatic bird
+80396,waterfront,the area of a city (such as a harbor or dockyard) alongside a body of water
+80397,wateriness,meagerness or poorness connoted by a superfluity of water (in a literary style as well as in a food); "the haziness and wateriness of his disquisitions"; "the wateriness of his blood"; "no one enjoys the burning of his soup or the wateriness of his potatoes"
+80398,wateriness,the property of resembling the viscosity of water
+80399,wateriness muddiness sloppiness,the wetness of ground that is covered or soaked with water; "the baseball game was canceled because of the wateriness of the outfield"; "the water's muddiness made it undrinkable"; "the sloppiness of a rainy November day"
+80400,watering,wetting with water; "the lawn needs a great deal of watering"
+80401,watering_can watering_pot,a container with a handle and a spout with a perforated nozzle; used to sprinkle water over plants
+80402,watering_cart,water cart with a tank and sprinkler for sprinkling roads
+80403,watering_place watering_hole spa,a health resort near a spring or at the seaside
+80404,waterleaf,any of several plants of the genus Hydrophyllum
+80405,waterline water_line water_level,a line corresponding to the surface of the water when the vessel is afloat on an even keel; often painted on the hull of a ship
+80406,waterloo,a final crushing defeat; "he met his waterloo"
+80407,watermark,a distinguishing mark impressed on paper during manufacture; visible when paper is held up to the light
+80408,watermeal,any of various aquatic plants of the genus Wolffia; throughout warmer regions of the world
+80409,watermelon,large oblong or roundish melon with a hard green rind and sweet watery red or occasionally yellowish pulp
+80410,watermelon watermelon_vine Citrullus_vulgaris,an African melon
+80411,watermelon_begonia Peperomia_argyreia Peperomia_sandersii,grown as a houseplant for its silvery striped fleshy foliage; South America
+80412,waterpower,the power to do work that is latent in a head of water
+80413,waterproof,any fabric impervious to water
+80414,waterproofing,a coating capable of making a surface waterproof
+80415,waterproofing sealing,the act of treating something to make it repel water
+80416,watershed water_parting divide,a ridge of land that separates two adjacent river systems
+80417,waterside,land bordering a body of water
+80418,waterskin water_skin,a container of skin for holding water
+80419,waterspout,a tornado passing over water and picking up a column of water and mist
+80420,waterspout,a channel through which water is discharged (especially one used for drainage from the gutters of a roof)
+80421,waterway,a navigable body of water
+80422,waterweed,a weedy aquatic plant of genus Elodea
+80423,waterwheel water_wheel,a wheel with buckets attached to its rim; raises water from a stream or pond
+80424,waterwheel water_wheel,a wheel that rotates by direct action of water; a simple turbine
+80425,waterwheel_plant Aldrovanda_vesiculosa,floating aquatic carnivorous perennial of central and southern Europe, Africa, Asia, Australia having whorls of 6 to 9 leaves ending in hinged lobes for capturing e.g. water fleas
+80426,waterworks,workplace where water is stored and purified and distributed for a community
+80427,watt W,a unit of power equal to 1 joule per second; the power dissipated by a current of 1 ampere flowing across a resistance of 1 ohm
+80428,watt-hour,a unit of energy equal to the power of one watt operating for one hour
+80429,wattle,any of various Australasian trees yielding slender poles suitable for wattle
+80430,wattle,framework consisting of stakes interwoven with branches to form a fence
+80431,wattle lappet,a fleshy wrinkled and often brightly colored fold of skin hanging from the neck or throat of certain birds (chickens and turkeys) or lizards
+80432,wattle_and_daub,building material consisting of interwoven rods and twigs covered with clay
+80433,wattmeter,an instrument for measuring in watts the flow of power in an electrical circuit
+80434,wave,a persistent and widespread unusual weather condition (especially of unusual temperatures); "a heat wave"
+80435,wave,something that rises rapidly; "a wave of emotion swept over him"; "there was a sudden wave of buying before the market closed"; "a wave of conservatism in the country led by the hard right"
+80436,wave,a hairdo that creates undulations in the hair
+80437,wave,a movement like that of a sudden occurrence or increase in a specified phenomenon; "a wave of settlers"; "troops advancing in waves"
+80438,wave moving_ridge,one of a series of ridges that moves across the surface of a liquid (especially across a large body of water)
+80439,wave undulation,an undulating curve
+80440,wave undulation,(physics) a movement up and down or back and forth
+80441,wave waving wafture,the act of signaling by a movement of the hand
+80442,wave_angle,the angle of arrival (or departure) of a radio wave with respect to the axis of an antenna array
+80443,wave_equation,a differential equation that describes the passage of harmonic waves through a medium
+80444,wave_form waveform wave_shape,the shape of a wave illustrated graphically by plotting the values of the period quantity against time
+80445,wave_front,all the points just reached by a wave as it propagates
+80446,wave_front wavefront,(physics) an imaginary surface joining all points in space that are reached at the same instant by a wave propagating through a medium
+80447,wave_mechanics,the modern form of quantum theory; an extension of quantum mechanics based on Schrodinger's equation; atomic events are explained as interactions between particle waves
+80448,wave_number,the reciprocal of the wavelength of a wave
+80449,wave_theory undulatory_theory wave_theory_of_light,(physics) the theory that light is transmitted as waves
+80450,wave_train,a succession of waves spaced at regular intervals
+80451,waveguide wave_guide,a hollow metal conductor that provides a path to guide microwaves; used in radar
+80452,wavelength,a shared orientation leading to mutual understanding; "they are on the same wavelength"
+80453,wavelength,the distance (measured in the direction of propagation) between two points in the same phase in consecutive cycles of a wave
+80454,waver,someone who communicates by waving
+80455,waver flutter flicker,the act of moving back and forth
+80456,waverer vacillator hesitator hesitater,one who hesitates (usually out of fear)
+80457,waviness,unevenness produced by waves or wrinkles
+80458,wavy-leaved_aster,a variety of aster
+80459,waw,the 6th letter of the Hebrew alphabet
+80460,wax,any of various substances of either mineral origin or plant or animal origin; they are solid at normal temperatures and insoluble in water
+80461,wax-chandler,one who deals in wax candles
+80462,wax_bean,a common bean plant grown for its edible golden pod
+80463,wax_bean yellow_bean,snap beans with yellow pods
+80464,wax_begonia Begonia_semperflorens,hybrid fibrous-rooted begonia having broad-ovate green to bronze-red leaves and small clusters of white or pink or red flowers; widely used as a bedding plant
+80465,wax_insect,any of various insects that secrete a waxy substance
+80466,wax_myrtle,any shrub or small tree of the genus Myrica with aromatic foliage and small wax-coated berries
+80467,wax_palm Ceroxylon_andicola Ceroxylon_alpinum,palm of the Andes yielding a resinous wax which is mixed with tallow to make candles
+80468,wax_paper,paper that has been waterproofed by treatment with wax or paraffin
+80469,wax_plant Hoya_carnosa,succulent climber of southern Asia with umbels of pink and white star-shaped flowers
+80470,waxflower Clusia_insignis,epiphytic clusia of British Guiana
+80471,waxiness,the quality of being made of wax or covered with wax
+80472,waxing,a gradual increase in magnitude or extent; "the waxing of the moon"
+80473,waxing,the application of wax to a surface
+80474,waxmallow wax_mallow sleeping_hibiscus,any of various plants of the genus Malvaviscus having brilliant bell-shaped drooping flowers like incompletely opened hibiscus flowers
+80475,waxwing,brown velvety-plumaged songbirds of the northern hemisphere having crested heads and red waxy wing tips
+80476,waxwork wax_figure,an effigy (usually of a famous person) made of wax
+80477,waxycap,any fungus of the family Hygrophoraceae having gills that are more or less waxy in appearance
+80478,way,the condition of things generally; "that's the way it is"; "I felt the same way"
+80479,way,a portion of something divided into shares; "they split the loot three ways"
+80480,way,a general category of things; used in the expression `in the way of'; "they didn't have much in the way of clothing"
+80481,way,doing as one pleases or chooses; "if I had my way"
+80482,way,the property of distance in general; "it's a long way to Moscow"; "he went a long ways"
+80483,way,any artifact consisting of a road or path affording passage from one place to another; "he said he was looking for the way out"
+80484,way,a journey or passage; "they are on the way"
+80485,way path way_of_life,a course of conduct; "the path of virtue"; "we went our separate ways"; "our paths in life led us apart"; "genius usually follows a revolutionary path"
+80486,wayfarer,a pedestrian who walks from place to place
+80487,wayfarer journeyer,a traveler going on a trip
+80488,wayfaring,traveling (especially on foot)
+80489,wayfaring_tree twist_wood twistwood Viburnum_lantana,vigorous deciduous European treelike shrub common along waysides; red berries turn black
+80490,ways shipway slipway,structure consisting of a sloping way down to the water from the place where ships are built or repaired
+80491,ways_and_means,resources available to meet expenses (especially legislation for raising revenue for a government)
+80492,wayside roadside,edge of a way or road or path; "flowers along the wayside"
+80493,weak_interaction weak_force,(physics) an interaction between elementary particles involving neutrinos or antineutrinos that is responsible for certain kinds of radioactive decay; mediated by intermediate vector bosons
+80494,weak_part weak_spot soft_spot,a place of especial vulnerability
+80495,weak_point,an attribute that is inadequate or deficient
+80496,weakener,that which weakens or causes a loss of strength; "doubt is a great weakener of resolve"
+80497,weakening,becoming weaker
+80498,weakening,the act of reducing the strength of something
+80499,weakfish,lean flesh of food and game fishes of the Atlantic coast of the United States
+80500,weakfish Cynoscion_regalis,food and game fish of North American coastal waters with a mouth from which hooks easily tear out
+80501,weakling doormat wuss,a person who is physically weak and ineffectual
+80502,weakly_interacting_massive_particle WIMP,a hypothetical subatomic particle of large mass that interacts weakly with ordinary matter through gravitation; postulated as a constituent of the dark matter of the universe
+80503,weakness,the condition of being financially weak; "the weakness of the dollar against the yen"
+80504,weakness,a penchant for something even though it might not be good for you; "he has a weakness for chocolate"
+80505,weakness,the property of lacking physical or mental strength; liability to failure under pressure or stress or strain; "his weakness increased as he became older"; "the weakness of the span was overlooked until it collapsed"
+80506,weald,an area of open or forested country
+80507,wealth,property that has economic utility: a monetary value or an exchange value
+80508,wealth,the quality of profuse abundance; "she has a wealth of talent"
+80509,wealth riches,an abundance of material possessions and resources
+80510,wealth wealthiness,the state of being rich and affluent; having a plentiful supply of material goods and money; "great wealth is not a sign of great intelligence"
+80511,weaning ablactation,the act of substituting other food for the mother's milk in the diet of a child or young mammal
+80512,weapon arm weapon_system,any instrument or instrumentality used in fighting or hunting; "he was licensed to carry a weapon"
+80513,weapon artillery,a means of persuading or arguing; "he used all his conversational weapons"
+80514,weapon_of_mass_destruction WMD W.M.D.,a weapon that kills or injures civilian as well as military personnel (nuclear and chemical and biological weapons)
+80515,weaponry arms implements_of_war weapons_system munition,weapons considered collectively
+80516,weapons_carrier,military vehicle that is a light truck designed to carry mortars or machine guns and their crews
+80517,weapons_plutonium weapons-grade_plutonium,plutonium 239 that is recovered when nuclear weapons are disassembled; it is stored in plutonium pits
+80518,wear,impairment resulting from long use; "the tires showed uneven wear"
+80519,wear wearing,the act of having on your person as a covering or adornment; "she bought it for everyday wear"
+80520,wearer,a person who wears or carries or displays something as a body covering or accessory; "the wearer of the crown"
+80521,weasel,a person who is regarded as treacherous or sneaky
+80522,weasel,small carnivorous mammal with short legs and elongated body and neck
+80523,weasel_word,an equivocal qualification; a word used to avoid making an outright assertion
+80524,weather weather_condition conditions atmospheric_condition,the atmospheric conditions that comprise the state of the atmosphere in terms of temperature and wind and clouds and precipitation; "they were hoping for good weather"; "every day we have weather conditions and yesterday was no exception"; "the conditions were too rainy for playing in the snow"
+80525,weather_bureau,an administrative unit responsible for gathering and interpreting meteorological data for weather study and forecasts
+80526,weather_deck shelter_deck,upper deck having no overhead protection from the weather, but sheltering the deck below
+80527,weather_forecast weather_outlook,a forecast of the weather
+80528,weather_map weather_chart,(meteorology) a map showing the principal meteorological elements at a given time and over an extended region
+80529,weather_radar,radar that is able to detect clouds and precipitation
+80530,weather_satellite meteorological_satellite,a satellite that transmits frequent picture of the earth below
+80531,weather_ship,an oceangoing vessel equipped to make meteorological observations
+80532,weather_strip weatherstrip weather_stripping weatherstripping,a narrow strip of material to cover the joint of a door or window to exclude the cold
+80533,weathercock,weathervane with a vane in the form of a rooster
+80534,weatherglass,a simple barometer for indicating changes in atmospheric pressure
+80535,weatherliness,(of a sailing vessel) the quality of being able to sail close to the wind with little drift to the leeward (even in a stiff wind); "the Spanish ships had superior speed and weatherliness"
+80536,weatherman weather_forecaster,predicts the weather
+80537,weathervane weather_vane vane wind_vane,mechanical device attached to an elevated structure; rotates freely to show the direction of the wind
+80538,weave,pattern of weaving or structure of a fabric
+80539,weaver,a craftsman who weaves cloth
+80540,weaver weaverbird weaver_finch,finch-like African and Asian colonial birds noted for their elaborately woven nests
+80541,weaving,creating fabric
+80542,web,an intricate network suggesting something that was formed by weaving or interweaving; "the trees cast a delicate web of shadows over the lawn"
+80543,web,a fabric (especially a fabric in the process of being woven)
+80544,web,membrane connecting the toes of some aquatic birds and mammals
+80545,web entanglement,an intricate trap that entangles or ensnares its victim
+80546,web-spinning_mite,a mite that spins a web
+80547,web-toed_salamander,any of several salamanders with webbed toes and very long extensile tongues; excellent climbers that move with ease over smooth rock surfaces
+80548,web_log blog,a shared on-line journal where people can post diary entries about their personal experiences and hobbies; "postings on a blog are usually in chronological order"
+80549,web_page webpage,a document connected to the World Wide Web and viewable by anyone connected to the internet who has a web browser
+80550,web_site website internet_site site,a computer connected to the internet that maintains a series of web pages on the World Wide Web; "the Israeli web site was damaged by hostile hackers"
+80551,web_spinner,any of a small order of slender typically tropical insects that nest in colonies in silken tunnels that they spin
+80552,webbed_foot,a bird's foot with folds of skin between the toes
+80553,webbing,something forming a web (as between the toes of birds)
+80554,webbing,a narrow closely woven tape; used in upholstery or for seat belts
+80555,webbing,a strong fabric woven in strips
+80556,webbing_clothes_moth webbing_moth Tineola_bisselliella,moth that forms a web in which it lives
+80557,webcam,a digital camera designed to take digital photographs and transmit them over the internet
+80558,weber Wb,a unit of magnetic flux equal to 100,000,000 maxwells
+80559,webfoot,a foot having the toes connected by folds of skin
+80560,webmaster,a technician who designs or maintains a website
+80561,webworm,several gregarious moth larvae that spin webs over foliage on which they feed
+80562,webworm_moth,a variety of moth that spins a web in which it lives
+80563,wedding wedding_ceremony nuptials hymeneals,the social event at which the ceremony of marriage is performed
+80564,wedding wedding_party,a party of people at a wedding
+80565,wedding_anniversary,the anniversary of the day on which you were married (or the celebration of it)
+80566,wedding_cake bridecake,a rich cake with two or more tiers and covered with frosting and decorations; served at a wedding reception
+80567,wedding_day,the day of a wedding
+80568,wedding_guest,a guest at a wedding
+80569,wedding_march,a march to be played for a wedding procession
+80570,wedding_night,the night after the wedding when bride and groom sleep together
+80571,wedding_picture,photographs of bride and groom and their friends taken at their wedding
+80572,wedding_present wedding_gift,a present given to someone getting married
+80573,wedding_reception,a reception for wedding guests held after the wedding
+80574,wedding_ring wedding_band,a ring (usually plain gold) given to the bride (and sometimes one is also given to the groom) at the wedding
+80575,wedge,(golf) an iron with considerable loft and a broad sole
+80576,wedge,something solid that is usable as an inclined plane (shaped like a V) that can be pushed between two things to separate them
+80577,wedge wedge_shape cuneus,any shape that is triangular in cross section
+80578,wedge_bone,part of the sirloin nearest the rump
+80579,wedge_heel wedge,a heel that is an extension of the sole of the shoe
+80580,wedgie,a shoe with a wedge heel
+80581,wee,a short time; "bide a wee"
+80582,wee_small_voice small_voice voice_of_conscience,an inner voice that judges your behavior
+80583,weed,any plant that crowds out cultivated plants
+80584,weed mourning_band,a black band worn by a man (on the arm or hat) as a sign of mourning
+80585,weeder,a farmhand hired to remove weeds
+80586,weeder weed-whacker,a hand tool for removing weeds
+80587,weeds widow's_weeds,a black garment (dress) worn by a widow as a sign of mourning
+80588,week calendar_week,a period of seven consecutive days starting on Sunday
+80589,week hebdomad,any period of seven consecutive days; "it rained for a week"
+80590,week_from_Monday,a time period of a week or more; "a week from Monday will be too soon!"
+80591,weekday,any day except Sunday (and sometimes except Saturday)
+80592,weekend,a time period usually extending from Friday night through Sunday; more loosely defined as any period of successive days including one and only one Sunday
+80593,weekend_warrior,a homeowner who acts as a contractor and tries to do major improvement projects on weekends (often without understanding the scope of the work to be done)
+80594,weekend_warrior,a reservist who fulfills the military obligation on weekends
+80595,weekender,someone who vacations on a weekend
+80596,weekender,a small suitcase to carry clothing and accessories for a weekend trip
+80597,weekly,a periodical that is published every week (or 52 issues per year)
+80598,weeknight,any night of the week except Saturday or Sunday
+80599,weeper,a hired mourner
+80600,weeper crier,a person who weeps
+80601,weepiness tearfulness,sadness expressed by weeping
+80602,weeping_beech Fagus_pendula Fagus_sylvatica_pendula,variety of European beech with pendulous limbs
+80603,weeping_love_grass African_love_grass Eragrostis_curvula,perennial South African grass having densely clumped flimsy stems; introduced into United States especially for erosion control
+80604,weeping_spruce Brewer's_spruce Picea_breweriana,medium-sized spruce of California and Oregon having pendulous branches
+80605,weeping_tree_broom,small shrubby tree of New Zealand having weeping branches and racemes of white to violet flowers followed by woolly indehiscent two-seeded pods
+80606,weeping_willow Babylonian_weeping_willow Salix_babylonica,willow with long drooping branches and slender leaves native to China; widely cultivated as an ornamental
+80607,weevil,any of several families of mostly small beetles that feed on plants and plant products; especially snout beetles and seed beetles
+80608,weigela Weigela_florida,deciduous shrub widely cultivated for its white or pink or red flowers
+80609,weighbridge,platform scale flush with a roadway for weighing vehicles and cattle etc
+80610,weigher,an official who weighs and records the weight
+80611,weight,an oppressive feeling of heavy force; "bowed down by the weight of responsibility"
+80612,weight,the vertical force exerted by a mass as a result of gravity
+80613,weight,an artifact that is heavy
+80614,weight free_weight exercising_weight,sports equipment used in calisthenic exercises and weightlifting; it is not attached to anything and is raised and lowered by use of the hands and arms
+80615,weight weightiness,the relative importance granted to something; "his opinion carries great weight"; "the progression implied an increasing weightiness of the items listed"
+80616,weight weighting,(statistics) a coefficient assigned to elements of a frequency distribution in order to represent their relative importance
+80617,weight_gaining,bodybuilding that increases muscle mass and body weight
+80618,weight_unit weight,a unit used to measure weight; "he placed two weights in the scale pan"
+80619,weightlift weightlifting,bodybuilding by exercise that involves lifting weights
+80620,weightlifter lifter,an athlete who lifts barbells
+80621,weir,a fence or wattle built across a stream to catch or retain fish
+80622,weir,a low dam built across a stream to raise its level or divert its flow
+80623,weka maori_hen wood_hen,flightless New Zealand rail of thievish disposition having short wings each with a spur used in fighting
+80624,welcher welsher,someone who swindles you by not repaying a debt or wager
+80625,welcome,the state of being welcome; "don't outstay your welcome"
+80626,welcome,a greeting or reception; "the proposal got a warm welcome"
+80627,welcome_wagon,a wheeled vehicle carrying information and gifts from local merchants for new residents in an area
+80628,welcoming_committee,a committee to welcome new residents to a community
+80629,weld,a metal joint formed by softening with heat and fusing or hammering together
+80630,welder,joins pieces of metal by welding them together
+80631,welder's_mask,a mask that you wear for protection when doing welding
+80632,welding,fastening two pieces of metal together by softening with heat and applying pressure
+80633,weldment,an assembly of parts welded together
+80634,welfare_case charity_case,a case for a welfare worker
+80635,welfare_state,a government that undertakes responsibility for the welfare of its citizens through programs in public health and public housing and pensions and unemployment compensation etc.
+80636,welfare_work social_service,an organized activity to improve the condition of disadvantaged people in society
+80637,well,a cavity or vessel used to contain liquid
+80638,well,an open shaft through the floors of a building (as for a stairway)
+80639,well,an enclosed compartment in a ship or plane for holding something as e.g. fish or a plane's landing gear or for protecting something as e.g. a ship's pumps
+80640,well,a deep hole or shaft dug or drilled to obtain water or oil or gas or brine
+80641,well wellspring fountainhead,an abundant source; "she was a well of information"
+80642,well-wishing,an expression of good will from one person to another; "much hand-shaking and well-wishing"
+80643,well_point wellpoint,a perforated tube driven into the ground to collect water from the surrounding area
+80644,wellbeing well-being welfare upbeat eudaemonia eudaimonia,a contented state of being happy and healthy and prosperous; "the town was finally on the upbeat after our recent troubles"
+80645,wellerism,a comparison comprising a well-known quotation followed by a facetious sequel
+80646,wellhead,a structure built over a well
+80647,wellhead wellspring,the source of water for a well
+80648,welt,a raised or strengthened seam
+80649,welted_thistle Carduus_crispus,European biennial introduced in North America having flower heads in crowded clusters at ends of branches
+80650,welterweight,a weight of 28 pounds; sometimes imposed as a handicap in a horse race (such as a steeplechase)
+80651,welterweight,an amateur boxer who weighs no more than 148 pounds
+80652,welterweight,a wrestler who weighs 154-172 pounds
+80653,welterweight,a professional boxer who weighs between 141 and 147 pounds
+80654,welwitschia Welwitschia_mirabilis,curious plant of arid regions of southwestern Africa having a yard-high and yard-wide trunk like a turnip with a deep taproot and two large persistent woody straplike leaves growing from the base; living relic of a flora long disappeared; some may be 700-5000 years old
+80655,wencher,someone who patronizes prostitutes
+80656,werewolf wolfman lycanthrope loup-garou,a monster able to change appearance from human to wolf and back again
+80657,west,the direction corresponding to the westward cardinal compass point
+80658,west,a location in the western part of a country, region, or city
+80659,west due_west westward W,the cardinal compass point that is a 270 degrees
+80660,west_by_north WbN,the compass point that is one point north of due west
+80661,west_by_south WbS,the compass point that is one point south of due west
+80662,west_northwest WNW,the compass point midway between west and northwest
+80663,west_side,the side that is on the west
+80664,west_southwest WSW,the compass point midway between west and southwest
+80665,west_wind wester,wind that blows from west to east
+80666,western western_sandwich,a sandwich made from a western omelet
+80667,western_big-eared_bat Plecotus_townsendi,bat of western North America having extremely large ears
+80668,western_blackberry western_dewberry Rubus_ursinus,American blackberry with oblong black fruit
+80669,western_blind_snake Leptotyphlops_humilis,burrows among roots of shrubs and beneath rocks in desert and rocky hillside areas and beach sand of western United States
+80670,western_buttercup Ranunculus_occidentalis,perennial of western North America
+80671,western_chimpanzee Pan_troglodytes_verus,masked or pale-faced chimpanzees of western Africa; distantly related to the eastern and central chimpanzees; possibly a distinct species
+80672,western_chokecherry Prunus_virginiana_demissa Prunus_demissa,chokecherry of western United States
+80673,western_coral_snake Micruroides_euryxanthus,ranges from Central America to southwestern United States
+80674,western_fence_lizard swift blue-belly Sceloporus_occidentalis,common western lizard; seen on logs or rocks
+80675,western_grey_squirrel western_gray_squirrel Sciurus_griseus,large grey squirrel of far western areas of United States
+80676,western_hemisphere occident New_World,the hemisphere that includes North America and South America
+80677,western_hemlock Pacific_hemlock west_coast_hemlock Tsuga_heterophylla,tall evergreen of western North America; commercially important timber tree
+80678,western_holly_fern Polystichum_scopulinum,North American fern
+80679,western_ladies'_tresses Spiranthes_porrifolia,similar to Spiranthes romanzoffiana; western United States
+80680,western_larch western_tamarack Oregon_larch Larix_occidentalis,tall larch of western North America have pale green sharply pointed leaves and oblong cones; an important timber tree
+80681,western_lowland_gorilla Gorilla_gorilla_gorilla,a kind of gorilla
+80682,western_meadowlark Sturnella_neglecta,a meadowlark of western North America
+80683,western_mugwort white_sage cudweed prairie_sage Artemisia_ludoviciana Artemisia_gnaphalodes,perennial cottony-white herb of southwestern United States
+80684,western_narrow-mouthed_toad Gastrophryne_olivacea,small secretive toad with smooth tough skin of central and western North America
+80685,western_omelet,a firm omelet that has diced ham and peppers and onions
+80686,western_pipistrel SPipistrellus_hesperus,of western North America
+80687,western_poison_oak Toxicodendron_diversilobum Rhus_diversiloba,poisonous shrub of the Pacific coast of North America that causes a rash on contact
+80688,western_poppy Papaver_californicum,showy annual of California with red flowers
+80689,western_ragweed perennial_ragweed Ambrosia_psilostachya,coarse perennial ragweed with creeping roots of dry barren lands of southwestern United States and Mexico
+80690,western_red-backed_salamander Plethodon_vehiculum,salamander of the Pacific coast of North America
+80691,western_red_cedar red_cedar canoe_cedar Thuja_plicata,large valuable arborvitae of northwestern United States
+80692,western_redbud California_redbud Cercis_occidentalis,shrub of western United States having pink or crimson flowers; often forms thickets
+80693,western_saxifrage Saxifraga_occidentalis,saxifrage having loose clusters of white flowers on hairy stems growing from a cluster of basal leaves; moist slopes of western North America
+80694,western_skink Eumeces_skiltonianus,found in western North American grasslands and open woodlands
+80695,western_spadefoot Scaphiopus_hammondii,this spadefoot toad live in California
+80696,western_tanager Piranga_ludoviciana,of western North America; male is black and yellow and orange-red
+80697,western_toad Bufo_boreas,of a great variety of habitats from southern Alaska to Baja California west of the Rockies
+80698,western_wall_flower Erysimum_asperum Cheiranthus_asperus Erysimum_arkansanum,biennial or short-lived perennial prairie rocket having orange-yellow flowers; western North America to Minnesota and Kansas; sometimes placed in genus Cheiranthus
+80699,western_wheatgrass bluestem_wheatgrass Agropyron_smithii,valuable forage grass of western United States
+80700,western_whiptail Cnemidophorus_tigris,active lizard having a network of dusky dark markings; of semiarid areas from Oregon and Idaho to Baja California
+80701,western_white_pine silver_pine mountain_pine Pinus_monticola,tall pine of western North America with stout blue-green needles; bark is grey-brown with rectangular plates when mature
+80702,western_wood_pewee Contopus_sordidulus,small flycatcher of western North America
+80703,westerner,an inhabitant of a western area; especially of the U.S.
+80704,westland_pine silver_pine Lagarostrobus_colensoi,timber tree of New Zealand having shiny white wood
+80705,wet-bulb_thermometer,a thermometer with a bulb that is covered with moist muslin; used in a psychrometer to measure humidity
+80706,wet_bar,a bar for mixing drinks that has a sink with running water
+80707,wet_cell,a primary voltaic cell having a liquid electrolyte
+80708,wet_dream,an erotic dream (usually at night) accompanied by the (nocturnal) emission of semen
+80709,wet_fly,fisherman's fly that floats under the surface of the water
+80710,wet_nurse wet-nurse wetnurse amah,a woman hired to suckle a child of someone else
+80711,wet_suit,a close-fitting garment made of a permeable material; worn in cold water (as by skin divers) to retain body heat
+80712,wether,male sheep especially a castrated one
+80713,wetland,a low area where the land is saturated with water
+80714,wetness,the condition of containing or being covered by a liquid (especially water); "he confirmed the wetness of the swimming trunks"
+80715,wetter,a workman who wets the work in a manufacturing process
+80716,wetting,the act of making something wet
+80717,wetting_agent wetter surfactant surface-active_agent,a chemical agent capable of reducing the surface tension of a liquid in which it is dissolved
+80718,whack,the sound made by a sharp swift blow
+80719,whacker whopper,something especially big or impressive of its kind
+80720,whale,any of the larger cetacean mammals having a streamlined body and breathing through a blowhole on the head
+80721,whale_louse,amphipod crustacean parasitic on cetaceans
+80722,whale_oil train_oil,a white to brown oil obtained from whale blubber; formerly used as an illuminant
+80723,whale_shark Rhincodon_typus,large spotted shark of warm surface waters worldwide; resembles a whale and feeds chiefly on plankton
+80724,whale_sucker whalesucker Remilegia_australis,large blue Pacific remora that attaches to whales and dolphins
+80725,whaleboat,a long narrow boat designed for quick turning and use in rough seas
+80726,whalebone baleen,a horny material from the upper jaws of certain whales; used as the ribs of fans or as stays in corsets
+80727,whaler,a seaman who works on a ship that hunts whales
+80728,whaler whaling_ship,a ship engaged in whale fishing
+80729,whaling_gun,a gun (or device resembling a gun) for discharging a projectile (especially a harpoon) at a whale
+80730,whammy,a serious or devastating setback
+80731,wharf_rat,someone who lives near wharves and lives by pilfering from ships or warehouses
+80732,wharf_rat,brown rat that infests wharves
+80733,wharfage quayage,a fee charged for the use of a wharf or quay
+80734,what_for,a strong reprimand
+80735,wheat,annual or biennial grass having erect flower spikes and light brown grains
+80736,wheat wheat_berry,grains of common wheat; sometimes cooked whole or cracked as cereal; usually ground into flour
+80737,wheat_berry,a grain of wheat
+80738,wheat_flag_smut Urocystis_tritici,fungus affecting leaves and stems of wheat
+80739,wheat_flour,flour prepared from wheat
+80740,wheat_future,wheat bought or sold at an agreed price for delivery at a specified future date
+80741,wheat_germ,embryo of the wheat kernel; removed before milling and eaten as a source of vitamins
+80742,wheat_gluten,gluten prepared from wheat
+80743,wheat_rust Puccinia_graminis,rust fungus that attacks wheat
+80744,wheat_scab,a disease of the heads of wheat plants
+80745,wheatear,small songbird of northern America and Eurasia having a distinctive white rump
+80746,wheatfield wheat_field,a field planted with wheat
+80747,wheatflake,crisp flake made from wheat
+80748,wheatgrass wheat-grass,a grass of the genus Agropyron
+80749,wheatworm wheat_eel wheat_eelworm Tylenchus_tritici,small roundworm parasitic on wheat
+80750,wheedler coaxer,someone who tries to persuade by blandishment and coaxing
+80751,wheel,forces that provide energy and direction; "the wheels of government began to turn"
+80752,wheel,a circular helm to control the rudder of a vessel
+80753,wheel,a simple machine consisting of a circular frame with spokes (or a solid disc) that can rotate on a shaft or axle (as in vehicles or other machines)
+80754,wheel_and_axle,hoist so arranged that a rope unwinding from a wheel is wound onto a cylindrical drum or shaft coaxial with the wheel
+80755,wheel_bug Arilus_cristatus,large predatory North American bug that sucks the blood of other insects
+80756,wheel_horse wheeler,a draft horse harnessed behind others and nearest the wheels of a vehicle
+80757,wheel_lock,an obsolete gunlock using flint and a revolving wheel
+80758,wheel_tree firewheel_tree Stenocarpus_sinuatus,eastern Australian tree widely cultivated as a shade tree and for its glossy leaves and circular clusters of showy red to orange-scarlet flowers
+80759,wheelbase,the distance from the center of a car's front wheel to the rear axle
+80760,wheelchair,a movable chair mounted on large wheels; for invalids or those who cannot walk; frequently propelled by the occupant
+80761,wheeled_vehicle,a vehicle that moves on wheels and usually has a container for transporting things or people; "the oldest known wheeled vehicles were found in Sumer and Syria and date from around 3500 BC"
+80762,wheeler,the man at the outermost end of the rank in wheeling
+80763,wheeling rolling,propelling something on wheels
+80764,wheelwork,mechanical device including an arrangement of wheel in a machine (especially a train of gears)
+80765,wheelwright wheeler,someone who makes and repairs wooden wheels
+80766,wheeze,(Briticism) a clever or amusing scheme or trick; "a clever wheeze probably succeeded in neutralizing the German espionage threat"
+80767,wheeze,breathing with a husky or whistling sound
+80768,wheeziness,presence of abnormal high-pitched sound heard with a stethoscope when an airway is blocked (as in asthma or chronic bronchitis)
+80769,whelk,large marine snail much used as food in Europe
+80770,whelk,large carnivorous marine gastropods of coastal waters and intertidal regions having a strong snail-like shell
+80771,whereabouts,the general location where something is; "I questioned him about his whereabouts on the night of the crime"
+80772,wherewithal,the necessary means (especially financial means)
+80773,wherry,light rowboat for use in racing or for transporting goods and passengers in inland waters and harbors
+80774,wherry Norfolk_wherry,sailing barge used especially in East Anglia
+80775,whetstone,a flat stone for sharpening edged tools or knives
+80776,whey,watery part of milk produced when raw milk sours and coagulates; "Little Miss Muffet sat on a tuffet eating some curds and whey"
+80777,whey milk_whey,the serum or watery part of milk that is separated from the curd in making cheese
+80778,whiff,a lefteye flounder found in coastal waters from New England to Brazil
+80779,whiff,a strikeout resulting from the batter swinging at and missing the ball for the third strike
+80780,whiffer,a batter who strikes out by swinging at and missing the third strike
+80781,whiffletree whippletree swingletree,a crossbar that is attached to the traces of a draft horse and to the vehicle or implement that the horse is pulling
+80782,while piece spell patch,a period of indeterminate length (usually short) marked by some action or condition; "he was here for a little while"; "I need to rest for a piece"; "a spell of good weather"; "a patch of bad weather"
+80783,whimper whine,a complaint uttered in a plaintive whining way
+80784,whinchat Saxicola_rubetra,brown-and-buff European songbird of grassy meadows
+80785,whiner complainer moaner sniveller crybaby bellyacher grumbler squawker,a person given to excessive complaints and crying and whining
+80786,whinstone whin,any of various hard colored rocks (especially rocks consisting of chert or basalt)
+80787,whip,a dessert made of sugar and stiffly beaten egg whites or cream and usually flavored with fruit
+80788,whip,(golf) the flexibility of the shaft of a golf club
+80789,whip,an instrument with a handle and a flexible lash that is used for whipping
+80790,whip lash whiplash,a quick blow delivered with a whip or whiplike object; "the whip raised a red welt"
+80791,whip party_whip,a legislator appointed by the party to enforce discipline
+80792,whip-round,(British) solicitation of money usually for a benevolent purpose
+80793,whip-scorpion whip_scorpion,nonvenomous arachnid that resembles a scorpion and that has a long thin tail without a stinger
+80794,whip-snake whip_snake whipsnake,any of several small fast-moving snakes with long whiplike tails
+80795,whipcord,closely twisted hard cord used for the lashes of whips
+80796,whipcord,a strong worsted or cotton fabric with a diagonal rib
+80797,whiplash whiplash_injury,an injury to the neck (the cervical vertebrae) resulting from rapid acceleration or deceleration (as in an automobile accident)
+80798,whipped_cream,cream that has been beaten until light and fluffy
+80799,whipper-in,huntsman's assistant in managing the hounds
+80800,whippersnapper jackanapes lightweight,someone who is unimportant but cheeky and presumptuous
+80801,whippet,small slender dog of greyhound type developed in England
+80802,whipping tanning flogging lashing flagellation,beating with a whip or strap or rope as a form of punishment
+80803,whipping_cream light_whipping_cream,cream that has enough butterfat (30% to 36%) to be whipped
+80804,whipping_post,post formerly used in public to which offenders are tied to be whipped
+80805,whipping_top whip_top,a top that is spun by whipping
+80806,whippoorwill Caprimulgus_vociferus,American nocturnal goatsucker with grey-and-white plumage
+80807,whipstitch whipping whipstitching,a sewing stitch passing over an edge diagonally
+80808,whiptail whiptail_lizard,any of numerous very agile and alert New World lizards
+80809,whir whirr whirring birr,sound of something in rapid motion; "whir of a bird's wings"; "the whir of the propellers"
+80810,whirl commotion,confused movement; "he was caught up in a whirl of work"; "a commotion of people fought for the exits"
+80811,whirl swirl vortex convolution,the shape of something rotating rapidly
+80812,whirler,a revolving mechanism
+80813,whirligig_beetle,aquatic beetle that circles rapidly on the water surface
+80814,whirling_dervish whirler,a dervish whose actions include ecstatic dancing and whirling
+80815,whirlpool vortex maelstrom,a powerful circular current of water (usually the result of conflicting tides)
+80816,whirlwind,a more or less vertical column of air whirling around itself as it moves over the surface of the Earth
+80817,whisk,a mixer incorporating a coil of wires; used for whipping eggs or cream
+80818,whisk whisk_broom,a small short-handled broom used to brush clothes
+80819,whisk_fern,chiefly tropical clump-forming plants of skeletal appearance resembling whisk brooms; lacking roots
+80820,whisker vibrissa sensory_hair,a long stiff hair growing from the snout or brow of most mammals as e.g. a cat
+80821,whiskey whisky,a liquor made from fermented mash of grain
+80822,whiskey_bottle,a bottle for holding whiskey
+80823,whiskey_jug,a jug that contains whiskey
+80824,whiskey_neat whisky_neat,a drink consisting of whiskey without a mixer; "he ordered a whiskey neat"
+80825,whiskey_on_the_rocks whisky_on_the_rocks,whiskey with ice
+80826,whiskey_sour whisky_sour,a sour made with whiskey
+80827,whisper whispering susurration voicelessness,speaking softly without vibration of the vocal cords
+80828,whisperer,one who speaks in a whisper
+80829,whispering_campaign,the organized dissemination of derogatory rumors designed to discredit a candidate
+80830,whispering_gallery whispering_dome,a space beneath a dome or arch in which sounds produced at certain points are clearly audible at certain distant points
+80831,whist long_whist short_whist,a card game for four players who form two partnerships; a pack of 52 cards is dealt and each side scores one point for each trick it takes in excess of six
+80832,whist_drive,a progressive whist party
+80833,whistle,a small wind instrument that produces a whistling sound by blowing into it
+80834,whistle,acoustic device that forces air or steam against an edge or into a cavity and so produces a loud shrill sound
+80835,whistle whistling,the sound made by something moving rapidly or by steam coming out of a small aperture
+80836,whistle whistling,the act of signalling (e.g., summoning) by whistling or blowing a whistle; "the whistle signalled the end of the game"
+80837,whistle-stop_tour,a tour by a candidate as part of a political campaign in which a series of small towns are visited; "in 1948 Truman crossed the country several times on his whistle-stop tours"
+80838,whistle_blower whistle-blower whistleblower,an informant who exposes wrongdoing within an organization in the hope of stopping it; "the law gives little protection to whistleblowers who feel the public has a right to know what is going on"; "the whistleblower was fired for exposing the conditions in mental hospitals"
+80839,whistle_buoy whistling_buoy,a buoy that makes a whistling noise
+80840,whistle_stop flag_stop way_station,a small railway station between the principal stations or a station where the train stops only on a signal
+80841,whistler,someone who makes a loud high sound
+80842,whistling,the act of whistling a tune; "his cheerful whistling indicated that he enjoyed his work"
+80843,whistling_swan Cygnus_columbianus_columbianus,North American subspecies of tundra swan having a soft whistling note
+80844,white,(board games) the lighter pieces
+80845,white whiteness,the quality or state of the achromatic color of greatest lightness (bearing the least resemblance to black)
+80846,white-bellied_swallow tree_swallow Iridoprocne_bicolor,bluish-green-and-white North American swallow; nests in tree cavities
+80847,white-berry_yew Pseudotaxus_chienii,yew of southeastern China, differing from the Old World yew in having white berries
+80848,white-breasted_nuthatch Sitta_carolinensis,bluish-grey nuthatch with black head and white breast; of eastern North America
+80849,white-chinned_petrel Procellaria_aequinoctialis,large black petrel of southern seas having a white mark on the chin
+80850,white-coat_hypertension,temporary rise in blood pressure in the doctor's office
+80851,white-crowned_sparrow Zonotrichia_leucophrys,finch with black-and-white striped crown
+80852,white-footed_mouse vesper_mouse Peromyscus_leucopus,American woodland mouse with white feet and underparts
+80853,white-headed_stilt Himantopus_himantopus_leucocephalus,stilt of the southwest Pacific including Australia and New Zealand having mostly white plumage but with black wings and nape of neck
+80854,white-leaved_rockrose Cistus_albidus,compact white pubescent shrub of southwestern Europe having pink flowers
+80855,white-lipped_peccary Tayassu_pecari,blackish peccary with whitish cheeks; larger than the collared peccary
+80856,white-rayed_mule's_ears Wyethia_helianthoides,herb with basal leaves and leafy hairy stems bearing solitary flower heads with white or pale cream-colored rays; northwestern United States
+80857,white-rumped_shrike Lanius_ludovicianus_excubitorides,a butcherbird of western North America; grey with white underparts
+80858,white-tailed_jackrabbit whitetail_jackrabbit Lepus_townsendi,largest hare of northern plains and western mountains of United States; brownish-grey in summer and pale grey in winter; tail nearly always all white
+80859,white-tailed_kite Elanus_leucurus,grey-and-white American kite of warm and tropical regions
+80860,white-throated_sparrow whitethroat Zonotrichia_albicollis,common North American finch with a white patch on the throat and black-and-white striped crown
+80861,white-topped_aster,herb having corymbose white-rayed flowers with scaly bracts and silky indehiscent fruits
+80862,white_admiral Limenitis_camilla,Eurasian butterfly with brown wings and white markings
+80863,white_alder mountain_alder Alnus_rhombifolia,tree of western United States
+80864,white_ash Fraxinus_Americana,spreading American ash with leaves pale green or silvery beneath and having hard brownish wood
+80865,white_baneberry white_cohosh white_bead doll's_eyes Actaea_alba,North American herb with white poisonous berries
+80866,white_basswood cottonwood Tilia_heterophylla,American basswood of the Allegheny region
+80867,white_book white_paper,a government report; bound in white
+80868,white_bread light_bread,bread made with finely ground and usually bleached wheat flour
+80869,white_broom white_Spanish_broom Cytisus_albus Cytisus_multiflorus,low European broom having trifoliate leaves and yellowish-white flowers
+80870,white_bryony devil's_turnip Bryonia_alba,white-flowered vine having thick roots and bearing small black berries; Europe to Iran
+80871,white_cake,cake made without egg yolks
+80872,white_camas Zigadenus_glaucus,plant of eastern and central North America having creamy white flowers tinged with brown or purple; poisonous especially to grazing animals
+80873,white_campion evening_lychnis white_cockle bladder_campion Silene_latifolia Lychnis_alba,bluish-green herb having sticky stems and clusters of large evening-opening white flowers with much-inflated calyx; sometimes placed in genus Lychnis
+80874,white_chocolate,a blend of cocoa butter and milk solids and sugar and vanilla; used in candy bars and baking and coatings; not technically chocolate because it contains no chocolate liquor
+80875,white_clover dutch_clover shamrock Trifolium_repens,creeping European clover having white to pink flowers and bright green leaves; naturalized in United States; widely grown for forage
+80876,white_crappie Pomoxis_annularis,a crappie that is white
+80877,white_croaker chenfish kingfish Genyonemus_lineatus,small silvery marine food fish found off California
+80878,white_croaker queenfish Seriphus_politus,silvery and bluish drumfish of shallow California coastal waters
+80879,white_currant Ribes_sativum,garden currant bearing small white berries
+80880,white_cypress_pine Callitris_glaucophylla Callitris_glauca,small tree or shrub of southern Australia
+80881,white_dead_nettle Lamium_album,European dead nettle with white flowers
+80882,white_dipladenia Mandevilla_boliviensis Dipladenia_boliviensis,shrubby climber having glossy leaves and white funnel-shaped flowers with yellow throats
+80883,white_dogtooth_violet white_dog's-tooth_violet blonde_lilian Erythronium_albidum,North American dogtooth having solitary white flowers with yellow centers and blue or pink exteriors
+80884,white_dwarf white_dwarf_star,a faint star of enormous density
+80885,white_elephant,a valuable possession whose upkeep is excessively expensive
+80886,white_elephant,albinic Indian elephant; rare and sometimes venerated in east Asia
+80887,white_false_indigo Baptisia_lactea,erect or spreading herb having racemes of creamy white flowers; the eastern United States
+80888,white_feather,a symbol of cowardice
+80889,white_fir Colorado_fir California_white_fir Abies_concolor Abies_lowiana,medium to tall fir of central to western United States having a narrow erect crown and soft wood
+80890,white_flag flag_of_truce,flag consisting of a piece of white cloth that is hoisted to signal surrender or to ask for a truce
+80891,white_fringed_orchis white_fringed_orchid Habenaria_albiflora,bog orchid of eastern North America with a spike of pure white fringed flowers
+80892,white_fritillary Fritillaria_liliaceae,California herb with white conic or bell-shaped flowers usually tinged with green
+80893,white_fungus Saprolegnia_ferax,a fungus that attacks living fish and tadpoles and spawn causing white fungus disease: a coating of white hyphae on especially peripheral parts (as fins)
+80894,white_globe_lily white_fairy_lantern Calochortus_albus,globe lily having open branched clusters of egg-shaped white flowers; southern California
+80895,white_gold,a pale alloy of gold usually with platinum or nickel or palladium
+80896,white_goods,large electrical home appliances (refrigerators or washing machines etc.) that are typically finished in white enamel
+80897,white_goods household_linen,drygoods for household use that are typically made of white cloth
+80898,white_heat,the hotness of something heated until it turns white
+80899,white_heather Cassiope_mertensiana,heath of mountains of western United States having bell-shaped white flowers
+80900,white_hellebore American_hellebore Indian_poke bugbane Veratrum_viride,North American plant having large leaves and yellowish green flowers growing in racemes; yields a toxic alkaloid used medicinally
+80901,white_honeysuckle Lonicera_albiflora,bushy honeysuckle with twining branches and white or yellow-white flowers; southern United States
+80902,white_hope great_white_hope,someone (or something) expected to achieve great success in a given field; "this company is the great white hope of the nuclear industry's waste management policy"
+80903,white_knight,a company that is a friendly acquirer in a takeover
+80904,white_lead ceruse lead_carbonate,a poisonous white pigment that contains lead
+80905,white_leather whit_leather,a leather that has been treated with alum and/or salt
+80906,white_lettuce cankerweed Nabalus_alba Prenanthes_alba,herb of northeastern North America having drooping clusters of yellowish-white flowers; sometimes placed in genus Prenanthes
+80907,white_lie,an unimportant lie (especially one told to be tactful or polite)
+80908,white_line,a white stripe in the middle of a road to mark traffic lanes
+80909,white_lupine field_lupine wolf_bean Egyptian_lupine Lupinus_albus,white-flowered Eurasian herb widely cultivated for forage and erosion control
+80910,white_magic,magic used only for good purposes
+80911,white_maire Olea_lanceolata,small New Zealand tree having red pulpy one-seeded fruit
+80912,white_mallee congoo_mallee Eucalyptus_dumosa,small shrubby mallee
+80913,white_man,a man who is White
+80914,white_man's_burden,the supposed responsibility of the white race to provide care for their non-white subjects
+80915,white_mangrove Avicennia_officinalis,a small to medium-sized tree growing in brackish water especially along the shores of the southwestern Pacific
+80916,white_mangrove Laguncularia_racemosa,shrub to moderately large tree that grows in brackish water along the seacoasts of western Africa and tropical America; locally important as a source of tannin
+80917,white_marlin Makaira_albida,small marlin (to 180 pounds) of western Atlantic
+80918,white_matter substantia_alba,whitish nervous tissue of the CNS consisting of neurons and their myelin sheaths
+80919,white_metal bearing_metal,an alloy (often of lead or tin base) used for bearings
+80920,white_milkweed Asclepias_albicans,tall herb with leafless white waxy stems and whitish starlike flowers; southwestern United States
+80921,white_mountain_ash Eucalyptus_fraxinoides,large tree with dark compact bark on lower trunk but smooth and white above; yields lumber similar to that of European or American ashes
+80922,white_mulberry Morus_alba,Asiatic mulberry with white to pale red fruit; leaves used to feed silkworms
+80923,white_mullein Verbascum_lychnitis,densely hairy Eurasian herb with racemose white flowers; naturalized in North America
+80924,white_mullet Mugil_curema,silvery mullet of Atlantic and Pacific coasts
+80925,white_mustard Brassica_hirta Sinapis_alba,Eurasian mustard cultivated for its pungent seeds; a source of table mustard and mustard oil
+80926,white_noise,a noise produced by a stimulus containing all of the audible frequencies of vibration; "white noise is a good masking agent"
+80927,white_oak,any of numerous Old World and American oaks having 6 to 8 stamens in each floret, acorns that mature in one year and leaf veins that never extend beyond the margin of the leaf
+80928,white_pages,a telephone directory or section of a directory (usually printed on white paper) where the names of people are listed alphabetically along with their telephone numbers
+80929,white_pelican Pelecanus_erythrorhynchos,large American pelican; white with black wing feathers
+80930,white_pepper,pepper ground from husked peppercorns
+80931,white_perch silver_perch Morone_americana,small silvery food and game fish of eastern United States streams
+80932,white_pine,any of several five-needled pines with white wood and smooth usually light grey bark when young; especially the eastern white pine
+80933,white_pine,soft white wood of white pine trees
+80934,white_poplar white_aspen abele aspen_poplar silver-leaved_poplar Populus_alba,a poplar that is widely cultivated in the United States; has white bark and leaves with whitish undersurfaces
+80935,white_prairie_aster Aster_falcatus,perennial of western North America having white flowers
+80936,white_rhinoceros Ceratotherium_simum Diceros_simus,large light-grey African rhinoceros having two horns; endangered; sometimes placed in genus Diceros
+80937,white_rice polished_rice,having husk or outer brown layers removed
+80938,white_rocket Diplotaxis_erucoides,from Mediterranean region; a naturalized weed throughout southern Europe
+80939,white_rust,fungus causing a disease characterized by a white powdery mass of conidia
+80940,white_sale,a sale of household linens
+80941,white_sauce bechamel_sauce bechamel,milk thickened with a butter and flour roux
+80942,white_separatism,a social system in which white people live separately from members of other races
+80943,white_separatist,someone who advocates a society in which white people live separately from members of other racial groups
+80944,white_slave,a woman sold into prostitution
+80945,white_slaver,a person who forces women to become prostitutes
+80946,white_slime_mushroom,a type of slime mushroom
+80947,white_snakeroot white_sanicle Ageratina_altissima Eupatorium_rugosum,American herb having flat-topped clusters of small white flower heads; reputedly a cause of trembles and milk sickness; sometimes placed in genus Eupatorium
+80948,white_snapdragon Antirrhinum_coulterianum,California plant with slender racemes of white flowers
+80949,white_spruce Picea_glauca,medium-sized spruce of northeastern North America having short blue-green leaves and slender cones
+80950,white_squire,a white knight that buys less than a majority interest
+80951,white_stork Ciconia_ciconia,the common stork of Europe; white with black wing feathers and a red bill
+80952,white_stringybark thin-leaved_stringybark Eucalyptusd_eugenioides,stringybark having white wood
+80953,white_supremacist,a person who believes that the white race is or should be supreme
+80954,white_supremacy,the prejudice that members of the white race are superior to members of other races
+80955,white_sweet_clover white_melilot Melilotus_alba,biennial plant; valuable honey plant
+80956,white_tie,bow tie worn as part of a man's formal evening dress
+80957,white_trash poor_white_trash,(slang) an offensive term for White people who are impoverished
+80958,white_turnip,white root of a turnip plant
+80959,white_water whitewater,frothy water as in rapids or waterfalls
+80960,white_whale beluga Delphinapterus_leucas,small northern whale that is white when adult
+80961,white_willow Huntingdon_willow Salix_alba,large willow tree of Eurasia and North Africa having greyish canescent leaves and grey bark
+80962,white_wine,pale yellowish wine made from white grapes or red grapes with skins removed before fermentation
+80963,white_wolf Arctic_wolf Canis_lupus_tundrarum,wolf of Arctic North America having white fur and a black-tipped tail
+80964,white_woman,a woman who is White
+80965,white_wood_aster Aster_divaricatus,rhizomatous perennial wood aster of eastern North America with white flowers
+80966,white_yam water_yam Dioscorea_alata,grown in Australasia and Polynesia for its large root with fine edible white flesh
+80967,white_zinnia Zinnia_acerosa,subshrub with slender woolly stems and long narrow leaves and flower heads with white rays; southern United States and northern Mexico
+80968,whitebait,minnows or other small fresh- or saltwater fish (especially herring); usually cooked whole
+80969,whitebait,the edible young of especially herrings and sprats and smelts
+80970,whitebark_pine whitebarked_pine Pinus_albicaulis,small pine of western North America; having smooth grey-white bark and soft brittle wood; similar to limber pine
+80971,whitecap white_horse,a wave that is blown by the wind so its crest is broken and appears white
+80972,whitecup Nierembergia_repens Nierembergia_rivularis,prostrate woody South American herb with white tubular flowers often tinged with blue or rose
+80973,whited_sepulcher whited_sepulchre,a person who is inwardly evil but outwardly professes to be virtuous
+80974,whiteface,a clown whose face is covered with white make-up
+80975,whitefish,any market fish--edible saltwater fish or shellfish--except herring
+80976,whitefish,flesh of salmon-like or trout-like cold-water fish of cold lakes of the northern hemisphere
+80977,whitefish,silvery herring-like freshwater food fish of cold lakes of the northern hemisphere
+80978,whitefly,minute insect that feeds on plant juices; related to scale insects
+80979,whitehead milium,a small whitish lump in the skin due to a clogged sebaceous gland
+80980,whitelash white_backlash,backlash by white racists against black civil rights advances
+80981,whiteness,lightness or fairness of complexion; "only the whiteness of her cheeks gave any indication of the stress from which she was suffering"
+80982,whitening lightening,changing to a lighter color
+80983,whiteout,an arctic atmospheric condition with clouds over snow produce a uniform whiteness and objects are difficult to see; occurs when the light reflected off the snow equals the light coming through the clouds
+80984,whitetail_prairie_dog Cynomys_gunnisoni,tail is white tipped
+80985,whitethorn English_hawthorn may Crataegus_laevigata Crataegus_oxycantha,thorny Eurasian shrub of small tree having dense clusters of white to scarlet flowers followed by deep red berries; established as an escape in eastern North America
+80986,whitetip_shark oceanic_whitetip_shark white-tipped_shark Carcharinus_longimanus,large deep-water shark with white-tipped dorsal fin; worldwide distribution; most dangerous shark
+80987,whitetip_shark reef_whitetip_shark Triaenodon_obseus,smooth dogfish of Pacific and Indian Oceans and Red Sea having white-tipped dorsal and caudal fins
+80988,whitewash,a defeat in which the losing person or team fails to score
+80989,whitewash,wash consisting of lime and size in water; used for whitening walls and other surfaces
+80990,whitewash,a specious or deceptive clearing that attempts to gloss over failings and defects
+80991,whitey honky honkey honkie,(slang) offensive names for a White man
+80992,whiting,flesh of a cod-like fish of the Atlantic waters of Europe
+80993,whiting,flesh of any of a number of slender food fishes especially of Atlantic coasts of North America
+80994,whiting,a small fish of the genus Sillago; excellent food fish
+80995,whiting,any of several food fishes of North American coastal waters
+80996,whiting Merlangus_merlangus Gadus_merlangus,a food fish of the Atlantic waters of Europe resembling the cod; sometimes placed in genus Gadus
+80997,whitlow_grass shadflower shad-flower Draba_verna,annual weed of Europe and North America having a rosette of basal leaves and tiny flowers followed by oblong seed capsules
+80998,whitlowwort,any of various low-growing tufted plants of the genus Paronychia having tiny greenish flowers and usually whorled leaves; widespread throughout warm regions of both Old and New Worlds; formerly thought to cure whitlows (suppurative infections around a fingernail)
+80999,whittler,someone who whittles (usually as an idle pastime)
+81000,whiz,a buzzing or hissing sound as of something traveling rapidly through the air; "he heard the whiz of bullets near his head"
+81001,whizbang whizzbang,a firecracker that (like the whizbang shell) makes a whizzing sound followed by a loud explosion
+81002,whizbang whizzbang whizbang_shell,a small high-velocity shell; it makes a whizzing sound followed by a bang when it hits
+81003,whole,all of something including all its component elements or parts; "Europe considered as a whole"; "the whole of American literature"
+81004,whole unit,an assemblage of parts that is regarded as a single entity; "how big is that part compared to the whole?"; "the team is a unit"
+81005,whole-word_method,teaching reading by training beginners to associate printed words with spoken words
+81006,whole_blood,blood that has not been modified except for the addition of an anticoagulant; "whole blood is normally used in blood transfusions"
+81007,whole_gale,wind moving 55-63 knots; 10 on the Beaufort scale
+81008,whole_life_insurance ordinary_life_insurance straight_life_insurance,insurance on the life of the insured for a fixed amount at a definite premium that is paid each year in the same amount during the entire lifetime of the insured
+81009,whole_milk,milk from which no constituent (such as fat) has been removed
+81010,whole_note semibreve,a musical note having the longest time value (equal to four beats in common time)
+81011,whole_rest,a musical rest equal in duration to four beats in common time
+81012,whole_shebang whole_kit_and_caboodle kit_and_caboodle whole_kit_and_boodle kit_and_boodle whole_kit whole_caboodle whole_works works full_treatment,everything available; usually preceded by `the'; "we saw the whole shebang"; "a hotdog with the works"; "we took on the whole caboodle"; "for $10 you get the full treatment"
+81013,whole_snipe Gallinago_gallinago,common snipe of Eurasia and Africa
+81014,whole_wheat_flour graham_flour graham whole_meal_flour,flour made by grinding the entire wheat berry including the bran; (`whole meal flour' is British usage)
+81015,wholeheartedness,undivided commitment or unreserved enthusiasm
+81016,wholeness haleness,a state of robust good health
+81017,wholesale,the selling of goods to merchants; usually in large quantities for resale to consumers
+81018,wholesomeness,the quality of being beneficial and generally good for you
+81019,whoop,a loud hooting cry of exultation or excitement
+81020,whoopee,noisy and boisterous revelry
+81021,whooper whooper_swan Cygnus_cygnus,common Old World swan noted for its whooping call
+81022,whooping_cough pertussis,a disease of the respiratory mucous membrane
+81023,whooping_crane whooper Grus_americana,rare North American crane having black-and-white plumage and a trumpeting call
+81024,whopper walloper,a gross untruth; a blatant lie
+81025,whorehouse brothel bordello bagnio house_of_prostitution house_of_ill_repute bawdyhouse cathouse sporting_house,a building where prostitutes are available
+81026,whoremaster whoremonger,a pimp who procures whores
+81027,whoremaster whoremonger john trick,a prostitute's customer
+81028,whorled_aster Aster_acuminatus,North American perennial with apparently whorled leaves and showy white purple-tinged flowers
+81029,whorled_caraway,a caraway with whorled leaves
+81030,whorled_loosestrife Lysimachia_quadrifolia,common North American yellow-flowered plant
+81031,whorled_milkweed Asclepias_verticillata,milkweed of the eastern United States with narrow leaves in whorls and greenish-white flowers
+81032,why wherefore,the cause or intention underlying an action or situation, especially in the phrase `the whys and wherefores'
+81033,whydah whidah widow_bird,mostly black African weaverbird
+81034,wick,any piece of cord that conveys liquid by capillary action; "the physician put a wick in the wound to drain it"
+81035,wick taper,a loosely woven cord (in a candle or oil lamp) that draws fuel by capillary action up into the flame
+81036,wickedness darkness dark,absence of moral or spiritual values; "the powers of darkness"
+81037,wicker,slender flexible branches or twigs (especially of willow or some canes); used for wickerwork
+81038,wicker wickerwork caning,work made of interlaced slender branches (especially willow branches)
+81039,wicker_basket,a basket made of wickerwork
+81040,wicket,cricket equipment consisting of a set of three stumps topped by crosspieces; used in playing cricket
+81041,wicket hoop,a small arch used as croquet equipment
+81042,wicket lattice grille,small opening (like a window in a door) through which business can be transacted
+81043,wicket wicket_door wicket_gate,small gate or door (especially one that is part of a larger door)
+81044,wicket-keeper,stands behind the wicket to catch balls
+81045,wickiup wikiup,a lodge consisting of a frame covered with matting or brush; used by nomadic American Indians in the southwestern United States
+81046,wide-angle_lens fisheye_lens,a camera lens having a wider than normal angle of view (and usually a short focal length); produces an image that is foreshortened in the center and increasingly distorted in the periphery
+81047,wide_area_network WAN,a computer network that spans a wider area than does a local area network
+81048,wide_screen,a projection screen that is much wider than it is high
+81049,wide_wale,corduroy with wide ribs
+81050,widebody_aircraft wide-body_aircraft wide-body twin-aisle_airplane,a commercial airliner with two aisles
+81051,widegrip_pushup,a pushup with the arms widely separated
+81052,wideness broadness,the property of being wide; having great width
+81053,widening broadening,an increase in width
+81054,widening broadening,the act of making something wider
+81055,widgeon wigeon Anas_penelope,freshwater duck of Eurasia and northern Africa related to mallards and teals
+81056,widow widow_woman,a woman whose husband is dead especially one who has not remarried
+81057,widow's_peak,a V-shaped point in the hairline in the middle of the forehead
+81058,widow's_walk,a lookout atop a coastal house
+81059,widower widowman,a man whose wife is dead especially one who has not remarried
+81060,widowhood,the time of a woman's life when she is a widow
+81061,widowhood,the state of being a widow who has not remarried
+81062,width breadth,the extent of something from side to side
+81063,wiener_roast weenie_roast,a cookout where roasted frankfurters are the main course
+81064,wiesenboden,a dark meadow soil rich in organic material; developed through poor drainage in humid grassy or sedge regions
+81065,wife married_woman,a married woman; a man's partner in marriage
+81066,wig,hairpiece covering the head and made of real or synthetic hair
+81067,wig wigging,British slang for a scolding
+81068,wiggle wriggle squirm,the act of wiggling
+81069,wiggle_room,flexibility of interpretation or of options; "the request left some wiggle room for future restructuring"
+81070,wiggler wriggler,larva of a mosquito
+81071,wiggler wriggler squirmer,one who can't stay still (especially a child); "the toddler was a real wiggler on plane trips"
+81072,wiggliness,a jerky back and forth kind of mobility; "he walked with the wiggliness of a child on high heels"
+81073,wigmaker,someone who makes and sells wigs
+81074,wigwam,a Native American lodge frequently having an oval shape and covered with bark or hides
+81075,wild natural_state state_of_nature,a wild primitive state untouched by civilization; "he lived in the wild"; "they collected mushrooms in the wild"
+81076,wild-goose_chase,the fruitless pursuit of something unattainable
+81077,wild_China_tree Sapindus_drumondii Sapindus_marginatus,deciduous tree of southwestern United States having pulpy fruit containing saponin
+81078,wild_angelica Angelica_sylvestris,European herb with compound leaves and white flowers; adventive on Cape Breton Island
+81079,wild_apple crab_apple crabapple,any of numerous wild apple trees usually with small acidic fruit
+81080,wild_ass,any of several equine mammals of Asia and northeast Africa
+81081,wild_basil cushion_calamint Clinopodium_vulgare Satureja_vulgaris,aromatic herb having heads of small pink or whitish flowers; widely distributed in United States, Europe and Asia
+81082,wild_boar boar Sus_scrofa,Old World wild swine having a narrow body and prominent tusks from which most domestic swine come; introduced in United States
+81083,wild_buckwheat California_buckwheat Erigonum_fasciculatum,low-growing shrub with spreading branches and flowers in loose heads; desert regions of western United States (California to Utah)
+81084,wild_cabbage Brassica_oleracea,wild original of cultivated cabbages; common in western coastal Europe
+81085,wild_calla water_arum Calla_palustris,plant of wetlands and bogs of temperate regions having small greenish flowers partly enclosed in a white spathe and red berries
+81086,wild_card,an unpredictable factor; "the weather was a wild card"
+81087,wild_card,a playing card whose value can be determined by the person who holds it
+81088,wild_carrot Queen_Anne's_lace Daucus_carota,a widely naturalized Eurasian herb with finely cut foliage and white compound umbels of small white or yellowish flowers and thin yellowish roots
+81089,wild_celery Apium_graveolens,herb of Europe and temperate Asia
+81090,wild_cherry,the fruit of the wild cherry tree
+81091,wild_cherry wild_cherry_tree,an uncultivated cherry tree
+81092,wild_cinnamon white_cinnamon_tree Canella_winterana Canella-alba,large evergreen shrub or small tree having white aromatic bark and leathery leaves and small purple to red flowers in terminal cymes
+81093,wild_cotton Arizona_wild_cotton Gossypium_thurberi,shrub of southern Arizona and Mexico
+81094,wild_crab Malus_sylvestris,wild crab apple native to Europe; a chief ancestor of cultivated apples
+81095,wild_dog,any of various undomesticated mammals of the family Canidae that are thought to resemble domestic dogs as distinguished from jackals or wolves
+81096,wild_duck,an undomesticated duck (especially a mallard)
+81097,wild_fig Clusia_flava,a West Indies clusia having fig-shaped fruit
+81098,wild_garlic wood_garlic Ramsons Allium_ursinum,pungent Old World weedy plant
+81099,wild_geranium spotted_cranesbill Geranium_maculatum,common wild geranium of eastern North America with deeply parted leaves and rose-purple flowers
+81100,wild_ginger,low-growing perennial herb with pungent gingery leaves and rhizomes
+81101,wild_goat,undomesticated goat
+81102,wild_hollyhock Iliamna_remota Sphaeralcea_remota,a rare mallow found only in Illinois resembling the common hollyhock and having pale rose-mauve flowers; sometimes placed in genus Sphaeralcea
+81103,wild_horse,undomesticated or feral domestic horse
+81104,wild_hyacinth indigo_squill Camassia_scilloides,eastern camas; eastern and central North America
+81105,wild_hyacinth wood_hyacinth bluebell harebell Hyacinthoides_nonscripta Scilla_nonscripta,sometimes placed in genus Scilla
+81106,wild_hydrangea Hydrangea_arborescens,deciduous shrub with creamy white flower clusters; eastern United States
+81107,wild_indigo false_indigo,any of several plants of the genus Baptisia
+81108,wild_leek Levant_garlic kurrat Allium_ampeloprasum,coarse Old World perennial having a large bulb and tall stalk of greenish purple-tinged flowers; widely naturalized
+81109,wild_licorice Galium_lanceolatum,bedstraw with sweetish roots
+81110,wild_licorice wild_liquorice American_licorice American_liquorice Glycyrrhiza_lepidota,North American plant similar to true licorice and having a root with similar properties
+81111,wild_licorice wild_liquorice Astragalus_glycyphyllos,European perennial
+81112,wild_lily_of_the_valley Pyrola_rotundifolia,evergreen with rounded leaves and very fragrant creamy-white flowers; widely distributed in northern parts of Old and New Worlds
+81113,wild_lily_of_the_valley shinleaf Pyrola_elliptica,North American evergreen with small pinkish bell-shaped flowers and oblong leaves used formerly for shinplasters
+81114,wild_lupine sundial_lupine Indian_beet old-maid's_bonnet Lupinus_perennis,stout perennial of eastern and central North America having palmate leaves and showy racemose blue flowers
+81115,wild_madder white_madder white_bedstraw infant's-breath false_baby's_breath Galium_mollugo,Eurasian herb with ample panicles of small white flowers; naturalized in North America
+81116,wild_man feral_man,a person who is not socialized
+81117,wild_mango dika wild_mango_tree Irvingia_gabonensis,African tree with edible yellow fruit resembling mangos; valued for its oil-rich seed and hardy green wood that resists termites
+81118,wild_medlar wild_medlar_tree medlar Vangueria_infausta,small deciduous tree of southern Africa having edible fruit
+81119,wild_oat wild_oat_grass Avena_fatua,common in meadows and pastures
+81120,wild_olive Elaeagnus_latifolia,erect shrub or climber of India and China with red olivelike fruit
+81121,wild_onion,any of various plants of the genus Allium with edible bulbs found growing wild
+81122,wild_pansy Johnny-jump-up heartsease love-in-idleness pink_of_my_John Viola_tricolor,a common and long cultivated European herb from which most common garden pansies are derived
+81123,wild_parsley,any of various uncultivated umbelliferous plants with foliage resembling that of carrots or parsley
+81124,wild_parsnip madnep,biennial weed in Europe and America having large pinnate leaves and yellow flowers and a bitter and somewhat poisonous root; the ancestor of cultivated parsnip
+81125,wild_pea,any of various plants of the family Leguminosae that usually grow like vines
+81126,wild_peach Kiggelaria_africana,large much-branched shrub grown primarily for its evergreen foliage
+81127,wild_pink Silene_caroliniana,perennial of eastern and central North America having short-stalked pink or white flowers in hairy clusters
+81128,wild_pitch,an errant pitch that the catcher cannot be expected to catch and that allows a base runner to advance a base
+81129,wild_plum wild_plum_tree,an uncultivated plum tree or shrub
+81130,wild_potato Solanum_jamesii,erect or spreading perennial of southwestern United States and Mexico bearing small pale brown to cream-colored tubers resembling potatoes
+81131,wild_potato_vine wild_sweet_potato_vine man-of-the-earth manroot scammonyroot Ipomoea_panurata Ipomoea_fastigiata,tropical American prostrate or climbing herbaceous perennial having an enormous starchy root; sometimes held to be source of the sweet potato
+81132,wild_raspberry European_raspberry framboise Rubus_idaeus,the common European raspberry; fruit red or orange
+81133,wild_red_oat animated_oat Avene_sterilis,Mediterranean oat held to be progenitor of modern cultivated oat
+81134,wild_rice Indian_rice,grains of aquatic grass of North America
+81135,wild_rice Zizania_aquatica,perennial aquatic grass of North America bearing grain used for food
+81136,wild_rosemary marsh_tea Ledum_palustre,bog shrub of northern and central Europe and eastern Siberia to Korea and Japan
+81137,wild_rye,any of several grasses of the genus Elymus
+81138,wild_sage wild_clary vervain_sage Salvia_verbenaca,Eurasian sage with blue flowers and foliage like verbena; naturalized in United States
+81139,wild_sarsaparilla false_sarsaparilla wild_sarsparilla Aralia_nudicaulis,common perennial herb having aromatic roots used as a substitute for sarsaparilla; central and eastern North America
+81140,wild_senna Senna_marilandica Cassia_marilandica,North American perennial herb; leaves are used medicinally; sometimes placed in genus Cassia
+81141,wild_service_tree Sorbus_torminalis,European tree bearing edible small speckled brown fruit
+81142,wild_sheep,undomesticated sheep
+81143,wild_spinach,leafy greens collected from the wild and used as a substitute for spinach
+81144,wild_spurge flowering_spurge tramp's_spurge Euphorbia_corollata,common perennial United States spurge having showy white petallike bracts
+81145,wild_strawberry wood_strawberry Fragaria_vesca,Europe
+81146,wild_tamarind Lysiloma_latisiliqua Lysiloma_bahamensis,a tree of the West Indies and Florida and Mexico; resembles tamarind and has long flat pods
+81147,wild_teasel Dipsacus_sylvestris,European teasel with white to pink flowers; naturalized in United States
+81148,wild_thyme creeping_thyme Thymus_serpyllum,aromatic dwarf shrub common on banks and hillsides in Europe; naturalized in United States
+81149,wild_tobacco Indian_tobacco Nicotiana_rustica,tobacco plant of South America and Mexico
+81150,wild_vanilla Trilisa_odoratissima,perennial of southeastern United States with leaves having the fragrance of vanilla
+81151,wild_wheat wild_emmer Triticum_dicoccum_dicoccoides,found wild in Palestine; held to be prototype of cultivated wheat
+81152,wild_yam Dioscorea_paniculata,having a rhizome formerly dried and used to treat rheumatism or liver disorders
+81153,wildcat,any small or medium-sized cat resembling the domestic cat and living in the wild
+81154,wildcat_strike,a strike undertaken by workers without approval from the officials of their union
+81155,wildcat_well wildcat,an exploratory oil well drilled in land not known to be an oil field
+81156,wildcatter,an oilman who drills exploratory wells in territory not known to be an oil field
+81157,wilderness,(politics) a state of disfavor; "he led the Democratic party back from the wilderness"
+81158,wilderness,a bewildering profusion; "the duties of citizenship are lost sight of in the wilderness of interests of individuals and groups"; "a wilderness of masts in the harbor"
+81159,wilderness wild,a wild and uninhabited area left in its natural condition; "it was a wilderness preserved for the hawks and mountaineers"
+81160,wildfire,a raging and rapidly spreading conflagration
+81161,wildflower wild_flower,wild or uncultivated flowering plant
+81162,wildfowl,flesh of any of a number of wild game birds suitable for food
+81163,wilding,a wild uncultivated plant (especially a wild apple or crabapple tree)
+81164,wilding,an outrageous rampage usually involving sexual attacks by men on women
+81165,wildlife,all living things (except people) that are undomesticated; "chemicals could kill all the wildlife"
+81166,wildness,an unruly disposition to do as one pleases; "Liza had always had a tendency to wildness"; "the element of wildness in his behavior was a protest against repressive convention"
+81167,wildness,an intractably barbarous or uncultivated state of nature
+81168,wildness abandon,a feeling of extreme emotional intensity; "the wildness of his anger"
+81169,will,a fixed and persistent intent or purpose; "where there's a will there's a way"
+81170,will testament,a legal document declaring a person's wishes regarding the disposal of their property when they die
+81171,will-o'-the-wisp ignis_fatuus,an illusion that misleads
+81172,willet Catoptrophorus_semipalmatus,large North American shorebird of eastern and Gulf Coasts
+81173,willies,feelings of uneasiness; "that guy gave me the willies"
+81174,willingness,cheerful compliance; "he expressed his willingness to help"
+81175,willow,a textile machine having a system of revolving spikes for opening and cleaning raw textile fibers
+81176,willow willow_tree,any of numerous deciduous trees and shrubs of the genus Salix
+81177,willow_aster,a variety of aster
+81178,willow_oak Quercus_phellos,medium to large deciduous oak of the eastern United States having long lanceolate leaves and soft strong wood
+81179,willowherb,a plant of the genus Epilobium having pink or yellow flowers and seeds with silky hairs
+81180,willowware willow-pattern,chinaware decorated with a blue Chinese design on a white background depicting a willow tree and often a river
+81181,wilt wilt_disease,any plant disease characterized by drooping and shriveling; usually caused by parasites attacking the roots
+81182,wilt wilting,causing to become limp or drooping
+81183,wimp chicken crybaby,a person who lacks confidence, is irresolute and wishy-washy
+81184,wimple,headdress of cloth; worn over the head and around the neck and ears by medieval women
+81185,win,a victory (as in a race or other competition); "he was happy to get the win"
+81186,wince,the facial expression of sudden pain
+81187,wince flinch,a reflex response to sudden pain
+81188,wincey,a plain or twilled fabric of wool and cotton used especially for warm shirts or skirts and pajamas
+81189,winceyette,cotton flannelette with a nap on both sides
+81190,winch windlass,lifting device consisting of a horizontal cylinder turned by a crank on which a cable or rope winds
+81191,wind,a tendency or force that influences events; "the winds of change"
+81192,wind,breath; "the collision knocked the wind out of him"
+81193,wind air_current current_of_air,air moving (sometimes with considerable force) from an area of high pressure to an area of low pressure; "trees bent under the fierce winds"; "when there is no wind, row"; "the radioactivity was being swept upwards by the air current and out into the atmosphere"
+81194,wind malarkey malarky idle_words jazz nothingness,empty rhetoric or insincere or exaggerated talk; "that's a lot of wind"; "don't give me any of that jazz"
+81195,wind winding twist,the act of winding or twisting; "he put the key in the old clock and gave it a good wind"
+81196,wind_chime wind_bell,a decorative arrangement of pieces of metal or glass or pottery that hang together loosely so the wind can cause them to tinkle
+81197,wind_farm wind_park wind_energy_facility,a power plant that uses wind turbines to generate electricity
+81198,wind_gap,a pass in a mountain ridge with no stream flowing through it
+81199,wind_generation wind_power,power derived from the wind (as by windmills)
+81200,wind_instrument wind,a musical instrument in which the sound is produced by an enclosed column of air that is moved by bellows or the human breath
+81201,wind_poppy flaming_poppy Stylomecon_heterophyllum Papaver_heterophyllum,California wild poppy with bright red flowers
+81202,wind_rose,weather map showing the frequency and strength of winds from different directions
+81203,wind_tee,weather vane shaped like a T and located at an airfield
+81204,wind_tunnel,a structure resembling a tunnel where air is blown at known velocities for testing parts of aircraft
+81205,wind_turbine,a turbine that is driven by the wind
+81206,windage,the retarding force of air friction on a moving object
+81207,windage,the space between the projectile of a smoothbore gun and the surface of the bore of the gun
+81208,windage wind_deflection,the deflection of a projectile resulting from the effects of wind
+81209,windage wind_exposure,exposure to the wind (as the exposed part of a vessel's hull which is responsible for wind resistance)
+81210,windbreak shelterbelt,hedge or fence of trees designed to lessen the force of the wind and reduce erosion
+81211,windburn,redness and irritation of the skin caused by exposure to high-velocity wind
+81212,winder,a worker who winds (e.g., a winch or clock or other mechanism)
+81213,winder,mechanical device around which something can be wound
+81214,winder key,mechanical device used to wind another device that is driven by a spring (as a clock)
+81215,windfall,fruit that has fallen from the tree
+81216,windfall_profit,profit that occurs unexpectedly as a consequence of some event not controlled by those who profit from it
+81217,windjammer,a large sailing ship
+81218,windmill,a mill that is powered by the wind
+81219,windmill aerogenerator wind_generator,generator that extracts usable energy from winds
+81220,windmill_grass creeping_windmill_grass star_grass Chloris_truncata,perennial Australian grass having numerous long spikes arranged like the vanes of a windmill
+81221,window,the time period that is considered best for starting or finishing something; "the expanded window will give us time to catch the thieves"; "they had a window of less than an hour when an attack would have succeeded"
+81222,window,an opening that resembles a window in appearance or function; "he could see them through a window in the trees"
+81223,window,an opening in a wall or screen that admits light and air and through which customers can be served; "he stuck his head in the window"
+81224,window,(computer science) a rectangular part of a computer screen that contains a display different from the rest of the screen
+81225,window,a transparent panel (as of an envelope) inserted in an otherwise opaque material
+81226,window,a transparent opening in a vehicle that allow vision out of the sides or back; usually is capable of being opened
+81227,window,a framework of wood or metal that contains a glass windowpane and is built into a wall or roof to admit light or air
+81228,window-washing,the activity of washing windows
+81229,window_blind,a blind for privacy or to keep out light
+81230,window_box,a long narrow box for growing plants on a windowsill
+81231,window_cleaner,someone who cleans windows for pay
+81232,window_dresser window_trimmer,someone who decorates shop windows
+81233,window_dressing,the decoration of shop windows
+81234,window_envelope,an envelope with a transparent panel that reveals the address on the enclosure
+81235,window_frame,the framework that supports a window
+81236,window_oyster windowpane_oyster capiz Placuna_placenta,marine bivalve common in Philippine coastal waters characterized by a large thin flat translucent shell
+81237,window_screen,screen to keep insects from entering a building through the open window
+81238,window_seat,a bench or similar seat built into a window recess
+81239,window_shade,an opaque window blind that can cover or uncover a window
+81240,window_washer,someone who washes windows
+81241,windowpane Scophthalmus_aquosus,very thin translucent flounder of the Atlantic coast of North America
+81242,windowpane window,a pane of glass in a window; "the ball shattered the window"
+81243,windowsill,the sill of a window; the horizontal member at the bottom of the window frame
+81244,windshield windscreen,transparent screen (as of glass) to protect occupants of a vehicle
+81245,windshield_wiper windscreen_wiper wiper wiper_blade,a mechanical device that cleans the windshield
+81246,windsock wind_sock sock air_sock air-sleeve wind_sleeve wind_cone drogue,a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind
+81247,windstorm,a storm consisting of violent winds
+81248,windward,the direction from which the wind is coming
+81249,windward,the side of something that is toward the wind
+81250,windward_side weatherboard weather_side,the side toward the wind
+81251,wine vino,fermented juice (of grapes especially)
+81252,wine wine-colored wine-coloured,a red as dark as red wine
+81253,wine-maker's_yeast Saccharomyces_ellipsoides,used in making wine
+81254,wine_bar,a bar that serves only wine
+81255,wine_bottle,a bottle for holding wine
+81256,wine_bucket wine_cooler,a bucket of ice used to chill a bottle of wine
+81257,wine_cask wine_barrel,a barrel that holds wine
+81258,wine_lover,a connoisseur of fine wines; a grape nut
+81259,wine_palm jaggery_palm kitul kittul kitul_tree toddy_palm Caryota_urens,fishtail palm of India to Malay Peninsula; sap yields a brown sugar (jaggery) and trunk pith yields sago
+81260,wine_sauce,white or veloute sauce with wine and stock variously seasoned with onions and herbs; for fish or meat
+81261,wine_taster,a taster who evaluates the quality of wines
+81262,wine_tasting,a gathering of people to taste and compare different wines
+81263,wine_vinegar,vinegar made from wine
+81264,wineberry Rubus_phoenicolasius,raspberry of China and Japan having pale pink flowers grown for ornament and for the small red acid fruits
+81265,wineglass,a glass that has a stem and in which wine is served
+81266,wineglass_heel,a heel on a woman's shoe in the shape of a wineglass
+81267,winemaking wine_making,the craft and science of growing grapes and making wine
+81268,winepress,a press that is used to extract the juice from grapes
+81269,winery wine_maker,an establishment where wine is made
+81270,wineskin,an animal skin (usually a goatskin) that forms a bag and is used to hold and dispense wine
+81271,wing,a hockey player stationed in a forward position on either side
+81272,wing,(in flight formation) a position to the side and just to the rear of another aircraft
+81273,wing,a group within a political party or legislature or other organization that holds distinct views or has a particular function; "they are the progressive wing of the Republican Party"
+81274,wing,a unit of military aircraft
+81275,wing,the wing of a fowl; "he preferred the drumsticks to the wings"
+81276,wing,one of the horizontal airfoils on either side of the fuselage of an airplane
+81277,wing,a movable organ for flying (one of a pair)
+81278,wing offstage backstage,a stage area out of sight of the audience
+81279,wing_case elytron,either of the horny front wings in beetles and some other insects which cover and protect the functional hind wings
+81280,wing_chair,easy chair having wings on each side of a high back
+81281,wing_commander,(RAF rank) one who is next below a group captain
+81282,wing_loading,the ratio of the weight of an airplane to its wing area
+81283,wing_nut wing-nut,any tree of the genus Pterocarya; fruit is a small winged nutlet; Caucasus to southeastern Asia
+81284,wing_nut wing-nut wing_screw butterfly_nut thumbnut,a threaded nut with winglike projections for thumb and forefinger leverage in turning
+81285,wing_shooting,shooting game birds that are flying (on the wing)
+81286,wing_tip,a shoe having a wing-tip toecap
+81287,wing_tip,a decorative toecap having a point extending toward the throat of the shoe
+81288,wingback,(football) the person who plays wingback
+81289,wingback,(American football) the position of the offensive back who lines up behind or outside the end
+81290,winged_bean winged_pea goa_bean goa_bean_vine Manila_bean Psophocarpus_tetragonolobus,a tuberous twining annual vine bearing clusters of purplish flowers and pods with four jagged wings; Old World tropics
+81291,winged_elm wing_elm Ulmus_alata,North American elm having twigs and young branches with prominent corky projections
+81292,winged_everlasting Ammobium_alatum,Australian plant widely cultivated for its beautiful silvery-white blooms with bright yellow centers on long winged stems
+81293,winged_pea asparagus_pea Lotus_tetragonolobus,sprawling European annual having a 4-winged edible pod
+81294,winged_pigweed tumbleweed Cycloloma_atriplicifolium,bushy annual weed of central North America having greenish flowers and winged seeds
+81295,winged_spindle_tree Euonymous_alatus,bushy deciduous shrub with branches having thin wide corky longitudinal wings; brilliant red in autumn; northeastern Asia to central China
+81296,winger,(sports) player in wing position
+81297,wingman,the pilot who positions his aircraft outside and behind (on the wing of) the leader of a flying formation
+81298,wings,stylized bird wings worn as an insignia by qualified pilots or air crew members
+81299,wings,a means of flight or ascent; "necessity lends wings to inspiration"
+81300,wingspan wingspread,linear distance between the extremities of an airfoil
+81301,wingspread,distance between the tips of the wings (as of a bird or insect) when fully extended
+81302,wingstem golden_ironweed yellow_ironweed golden_honey_plant Verbesina_alternifolia Actinomeris_alternifolia,perennial herb with showy yellow flowers; the eastern United States
+81303,wink,closing one eye quickly as a signal
+81304,winker,a person who winks
+81305,winker blinker blinder,blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side
+81306,winner,a gambler who wins a bet
+81307,winner victor,the contestant who wins the contest
+81308,winner's_circle,a small area at a racecourse where awards are given to the owners of winning horses
+81309,winning,succeeding with great difficulty; "winning is not everything"
+81310,winning_post,the post at the end of a racecourse
+81311,winning_streak,a streak of wins
+81312,winnings win profits,something won (especially money)
+81313,winnow winnowing sifting,the act of separating grain from chaff; "the winnowing was done by women"
+81314,winsomeness,childlike charm or appeal
+81315,winter wintertime,the coldest season of the year; in the northern hemisphere it extends from the winter solstice to the vernal equinox
+81316,winter's_bark,aromatic bark having tonic and stimulant properties
+81317,winter's_bark winter's_bark_tree Drimys_winteri,South American evergreen tree yielding winter's bark and a light soft wood similar to basswood
+81318,winter_aconite Eranthis_hyemalis,small Old World perennial herb grown for its bright yellow flowers which appear in early spring often before snow is gone
+81319,winter_cress,cress cultivated for winter salads
+81320,winter_cress St._Barbara's_herb scurvy_grass,any plant of the genus Barbarea: yellow-flowered Eurasian cresses; widely cultivated for winter salad
+81321,winter_crookneck winter_crookneck_squash Cucurbita_moschata,any of various plants bearing squash having hard rinds and elongated recurved necks
+81322,winter_crookneck_squash,a squash with a hard rind and an elongated curved neck
+81323,winter_currant Ribes_sanguineum,a flowering shrub
+81324,winter_flounder blackback_flounder lemon_sole Pseudopleuronectes_americanus,important American food fish in the winter
+81325,winter_hazel flowering_hazel,any of several Asiatic deciduous shrubs cultivated for their nodding racemes of yellow flowers that appear before the leaves
+81326,winter_heath spring_heath Erica_carnea,dwarf European shrub with very early blooming bell-shaped red flowers
+81327,winter_heliotrope sweet_coltsfoot Petasites_fragrans,European herb with vanilla-scented white-pink flowers
+81328,winter_jasmine Jasminum_nudiflorum,deciduous rambling shrub widely cultivated for its winter-blooming yellow flowers
+81329,winter_melon,the fruit of the winter melon vine; a green melon with pale green to orange flesh that keeps well
+81330,winter_melon Persian_melon honeydew_melon winter_melon_vine Cucumis_melo_inodorus,any of a variety of muskmelon vines having fruit with a smooth white rind and white or greenish flesh that does not have a musky smell
+81331,winter_mushroom Flammulina_velutipes,an edible agaric that is available in early spring or late fall when few other mushrooms are; has a viscid smooth orange to brown cap and a velvety stalk that turns black in maturity and pallid gills; often occur in clusters
+81332,winter_purslane miner's_lettuce Cuban_spinach Montia_perfoliata,succulent herb sometimes grown as a salad or pot herb; grows on dunes and waste ground of Pacific coast of North America
+81333,winter_savory Satureja_montana Satureia_montana,erect perennial subshrub having pink or white flowers and leathery leaves with a flavor of thyme; southern Europe
+81334,winter_savory winter_savoury,resinous leaves used in stews and stuffings and meat loaf
+81335,winter_solstice,December 22, when the sun is at its southernmost point
+81336,winter_squash,any of various fruits of the gourd family with thick rinds and edible yellow to orange flesh that mature in the fall and can be stored for several months
+81337,winter_squash winter_squash_plant,any of various plants of the species Cucurbita maxima and Cucurbita moschata producing squashes that have hard rinds and mature in the fall
+81338,winter_sweet poison_arrow_plant Acocanthera_oblongifolia Acocanthera_spectabilis,medium-sized shrubby tree of South Africa having thick leathery evergreen leaves and white or pink flowers and globose usually two-seeded purplish black fruits
+81339,winter_urn,a common name for a variety of Sarcosomataceae
+81340,winter_wren Troglodytes_troglodytes,small wren of coniferous forests of northern hemisphere
+81341,wintergreen boxberry checkerberry teaberry spiceberry,spicy red berrylike fruit; source of wintergreen oil
+81342,wintergreen pyrola,any of several evergreen perennials of the genus Pyrola
+81343,wintergreen_oil oil_of_wintergreen,oil or flavoring obtained from the creeping wintergreen or teaberry plant
+81344,wipeout,a spill in some sport (as a fall from a bicycle or while skiing or being capsized on a surfboard)
+81345,wiper,a worker who wipes
+81346,wiper wiper_arm contact_arm,contact consisting of a conducting arm that rotates over a series of fixed contacts and comes to rest on an outlet
+81347,wiper_motor,electric motor that moves the windshield wiper
+81348,wire,the finishing line on a racetrack
+81349,wire,ligament made of metal and used to fasten things or make cages or fences etc
+81350,wire conducting_wire,a metal conductor that carries electricity over a distance
+81351,wire-haired_fox_terrier,a fox terrier with wiry hair
+81352,wire-puller,one who uses secret influence (i.e. pulls wires or strings) for his own ends
+81353,wire_cloth,fabric woven of metallic wire
+81354,wire_cutter,an edge tool used in cutting wire
+81355,wire_gauge wire_gage,gauge for measuring the diameter of wire
+81356,wire_glass,a glass that contains a layer of wire netting in it
+81357,wire_matrix_printer wire_printer stylus_printer,an impact printer in which each character is represented by a pattern of dots made by wires or styli
+81358,wire_recorder,an early type of magnetic recorder using iron wire
+81359,wire_stripper,a hand tool used by electricians to remove insulation from the cut end of an insulated wire
+81360,wirehair wirehaired_terrier wire-haired_terrier,a terrier with wiry hair
+81361,wireless,transmission by radio waves
+81362,wireless_local_area_network WLAN wireless_fidelity WiFi,a local area network that uses high frequency radio signals to transmit and receive data over distances of a few hundred feet; uses ethernet protocol
+81363,wireman wirer,a worker who installs and repairs electric wiring
+81364,wirer,someone who sends a telegram
+81365,wiretap tap,the act of tapping a telephone or telegraph line to get information
+81366,wirework grillwork,mesh netting made of wires
+81367,wireworm,wormlike larva of various elaterid beetles; feeds on roots of many crop plants
+81368,wiriness,the property of being lean and tough and sinewy
+81369,wiring,a circuit of wires for the distribution of electricity
+81370,wiring,the work of installing the wires for an electrical system or device
+81371,wiring_diagram,a schematic drawing of the wiring of an electrical system
+81372,wisdom,accumulated knowledge or erudition or enlightenment
+81373,wisdom sapience,ability to apply knowledge or experience or understanding or common sense and insight
+81374,wisdom wiseness,the trait of utilizing knowledge and experience with common sense and insight
+81375,wisdom wiseness soundness,the quality of being prudent and sensible
+81376,wisdom_tooth,any of the last 4 teeth on each side of the upper and lower jaw; the last of the permanent teeth to erupt (between ages 16 and 21)
+81377,wise,a way of doing or being; "in no wise"; "in this wise"
+81378,wise_guy smart_aleck wiseacre wisenheimer weisenheimer,an upstart who makes conceited, sardonic, insolent comments
+81379,wisecrack crack sally quip,witty remark
+81380,wisent aurochs Bison_bonasus,European bison having a smaller and higher head than the North American bison
+81381,wish,the particular preference that you have; "it was his last wish"; "they should respect the wishes of the people"
+81382,wish indirect_request,an expression of some desire or inclination; "I could tell that it was his wish that the guests leave"; "his crying was an indirect request for attention"
+81383,wish wishing want,a specific feeling of desire; "he got his wish"; "he was above all wishing and desire"
+81384,wish-wash,any thin watery drink
+81385,wish_list,a list of events that you wish would occur
+81386,wishbone wishing_bone,the furcula of a domestic fowl
+81387,wishful_thinking,the illusion that what you wish for is actually true
+81388,wishfulness,an unrealistic yearning
+81389,wishing_cap,a magical cap that secures whatever one wishes for
+81390,wisp,a small person; "a mere wisp of a girl"
+81391,wisp,a small bundle of straw or hay
+81392,wisp,a flock of snipe
+81393,wisp,a small tuft or lock; "wisps of hair"
+81394,wisteria wistaria,any flowering vine of the genus Wisteria
+81395,wistfulness,a sadly pensive longing
+81396,wit humor humour witticism wittiness,a message whose ingenuity or verbal skill or incongruity has the power to evoke laughter
+81397,witch,a being (usually female) imagined to have special powers derived from the devil
+81398,witch-hunt,searching out and harassing dissenters
+81399,witch-hunter,someone who identifies and punishes people for their opinions
+81400,witch_doctor,someone who is believed to heal through magical powers
+81401,witch_elm wych_elm Ulmus_glabra,Eurasian elm often planted as a shade tree
+81402,witch_hazel witch_hazel_plant wych_hazel wych_hazel_plant,any of several shrubs or trees of the genus Hamamelis; bark yields an astringent lotion
+81403,witch_hazel wych_hazel,lotion consisting of an astringent alcoholic solution containing an extract from the witch hazel plant
+81404,witchcraft witchery,the art of sorcery
+81405,witches'_brew witches'_broth witch's_brew,a fearsome mixture; "a witches' brew of gangsters and terrorists"; "mixing dope and alcohol creates a witches' brew"
+81406,witches'_broom witch_broom hexenbesen staghead,an abnormal tufted growth of small branches on a tree or shrub caused by fungi or insects or other physiological disturbance
+81407,witches'_butter Tremella_lutescens,a yellow jelly fungus
+81408,witchgrass witch_grass old_witchgrass old_witch_grass tumble_grass Panicum_capillare,North American grass with slender brushy panicles; often a weed on cultivated land
+81409,witching,the use or practice of witchcraft
+81410,withdrawal,the act of withdrawing blood, tumors, etc.; "the nurse was expert at the withdrawal of blood"
+81411,withdrawal,the act of taking out money or other capital
+81412,withdrawal,the act of ceasing to participate in an activity
+81413,withdrawal,the act of withdrawing; "the withdrawal of French troops from Vietnam"
+81414,withdrawal backdown climb-down,a retraction of a previously held position
+81415,withdrawal detachment,avoiding emotional involvement
+81416,withdrawal drug_withdrawal,the termination of drug taking
+81417,withdrawal_symptom,any physical or psychological disturbance (as sweating or depression) experienced by a drug addict when deprived of the drug
+81418,withdrawer,an authority who withdraws permission
+81419,withdrawer,an individualist who withdraws from social interaction
+81420,withdrawer,a drug addict who is discontinuing the use of narcotics
+81421,withdrawer,a contestant who withdraws from competition
+81422,withdrawer,a student who withdraws from the educational institution in which he or she was enrolled
+81423,withdrawer,a depositor who withdraws funds previously deposited
+81424,withe,band or rope made of twisted twigs or stems
+81425,withe withy,strong flexible twig
+81426,withers,the highest part of the back at the base of the neck of various animals especially draft animals
+81427,withholder,a person who refrains from granting; "a withholder of payments"
+81428,withholder,a person who restrains or checks or holds back
+81429,withholding,the act of holding back or keeping within your possession or control; "I resented his withholding permission"; "there were allegations of the withholding of evidence"
+81430,withholding,the act of deducting from an employee's salary
+81431,withholding_tax withholding,income tax withheld from employees' wages and paid directly to the government by the employer
+81432,withstander,an opponent who resists with force or resolution; "obstinate withstanders of innovation"
+81433,witness,(law) a person who testifies under oath in a court of law
+81434,witness,testimony by word or deed to your religious faith
+81435,witness attestant attestor attestator,(law) a person who attests to the genuineness of a document or signature by adding their own signature
+81436,witness witnesser informant,someone who sees an event and reports what happened
+81437,witness_box witness_stand,a box enclosure for a witness when testifying
+81438,wits marbles,the basic human power of intelligent thought and perception; "he used his wits to get ahead"; "I was scared out of my wits"; "he still had all his marbles and was in full possession of a lively mind"
+81439,wittol,an archaic term for a cuckold who knows about his wife's infidelity but tolerates it
+81440,woad,a blue dyestuff obtained from the woad plant
+81441,woad,any of several herbs of the genus Isatis
+81442,wobble,an unsteady rocking motion
+81443,wobbler,something that wobbles
+81444,woe woefulness,intense mournfulness
+81445,wog,(offensive British slang) term used by the British to refer to people of color from Africa or Asia
+81446,wok,pan with a convex bottom; used for frying in Chinese cooking
+81447,wold,a tract of open rolling country (especially upland)
+81448,wolf,any of various predatory carnivorous canine mammals of North America and Eurasia that usually hunt in packs
+81449,wolf woman_chaser skirt_chaser masher,a man who is aggressive in making amorous advances to women
+81450,wolf_boy,a male person assumed to have been raised by wolves
+81451,wolf_pack,a group of submarines operating together in attacking enemy convoys
+81452,wolf_pack,a group of wolves hunting together
+81453,wolf_pup wolf_cub,a young wolf
+81454,wolf_spider hunting_spider,ground spider that hunts its prey instead of using a web
+81455,wolffish wolf_fish catfish,large ferocious northern deep-sea food fishes with strong teeth and no pelvic fins
+81456,wolfhound,the largest breed of dogs; formerly used to hunt wolves
+81457,wolframite iron_manganese_tungsten,a mineral consisting of iron and manganese tungstate in crystalline form; the principal ore of tungsten; found in quartz veins associated with granitic rocks
+81458,wolfsbane wolfbane wolf's_bane Aconitum_lycoctonum,poisonous Eurasian perennial herb with broad rounded leaves and yellow flowers and fibrous rootstock
+81459,wollastonite,a white or greyish mineral typically found in metamorphic limestone; a silicate of calcium
+81460,wolverine carcajou skunk_bear Gulo_luscus,stocky shaggy-coated North American carnivorous mammal
+81461,woman,a female person who plays a significant role (wife or mistress or girlfriend) in the life of a particular man; "he was faithful to his woman"
+81462,woman adult_female,an adult female person (as opposed to a man); "the woman kept house while the man hunted"
+81463,woman's_clothing,clothing that is designed for women to wear
+81464,womanhood,the status of a woman
+81465,womanhood muliebrity,the state of being an adult woman
+81466,womanhood woman fair_sex,women as a class; "it's an insult to American womanhood"; "woman is the glory of creation"; "the fair sex gathered on the veranda"
+81467,womanizer womaniser philanderer,a man who likes many women and has short sexual relationships with them
+81468,womankind,women as distinguished from men
+81469,womanliness womanlike,the trait of being womanly; having the characteristics of an adult female
+81470,wombat,burrowing herbivorous Australian marsupials about the size of a badger
+81471,won-lost_record,(sports) a record of win versus losses
+81472,won_ton wonton,a Chinese dumpling filled with spiced minced pork; usually served in soup
+81473,won_ton wonton wonton_soup,a soup with won ton dumplings
+81474,wonder marvel,something that causes feelings of wonder; "the wonders of modern science"
+81475,wonder wonderment admiration,the feeling aroused by something strange and surprising
+81476,wonder_boy golden_boy,a man who is unusually successful at an early age
+81477,wonder_woman,a woman who can be a successful wife and have a professional career at the same time
+81478,wonderer,someone who is curious about something
+81479,wonderer marveller,someone filled with admiration and awe; someone who wonders at something
+81480,wonderland,a place or scene of great or strange beauty or wonder
+81481,wonderland,an imaginary realm of marvels or wonders
+81482,wood,the hard fibrous lignified substance under the bark of trees
+81483,wood,a golf club with a long shaft used to hit long shots; originally made with a wooden head; "metal woods are now standard"
+81484,wood-frog wood_frog Rana_sylvatica,wide-ranging light-brown frog of moist North American woodlands especially spruce
+81485,wood_anemone Anemone_nemorosa,European anemone with solitary white flowers common in deciduous woodlands
+81486,wood_anemone snowdrop Anemone_quinquefolia,common anemone of eastern North America with solitary pink-tinged white flowers
+81487,wood_ant Formica_rufa,reddish-brown European ant typically living in anthills in woodlands
+81488,wood_aster,any of several asters of eastern North America usually growing in woods
+81489,wood_chisel,a chisel for working wood; it is either struck with a mallet or pushed by hand
+81490,wood_drake,male wood duck
+81491,wood_duck summer_duck wood_widgeon Aix_sponsa,showy North American duck that nests in hollow trees
+81492,wood_fern wood-fern woodfern,any of various ferns of the genus Dryopteris
+81493,wood_grain woodgrain woodiness,texture produced by the fibers in wood
+81494,wood_hoopoe,tropical African bird having metallic blackish plumage but no crest
+81495,wood_horsetail Equisetum_Sylvaticum,Eurasia except southern Russia; northern North America
+81496,wood_ibis wood_stork Ibis_ibis,any of several Old World birds of the genus Ibis
+81497,wood_ibis wood_stork flinthead Mycteria_americana,an American stork that resembles the true ibises in having a downward-curved bill; inhabits wooded swamps of New World tropics
+81498,wood_lily Lilium_philadelphicum,lily of eastern North America having orange to orange-red purple-spotted flowers
+81499,wood_meadowgrass Poa_nemoralis Agrostis_alba,slender European grass of shady places; grown also in northeastern America and temperate Asia
+81500,wood_mint,American herb of genus Blephilia with more or less hairy leaves and clusters of purplish or bluish flowers
+81501,wood_mouse,any of various New World woodland mice
+81502,wood_nettle Laportea_canadensis,American perennial herb found in rich woods and provided with stinging hairs; provides fibers used for textiles
+81503,wood_pigeon ringdove cushat Columba_palumbus,Eurasian pigeon with white patches on wings and neck
+81504,wood_pulp,wood that has been ground to a pulp; used in making cellulose products (as rayon or paper)
+81505,wood_rabbit cottontail cottontail_rabbit,common small rabbit of North America having greyish or brownish fur and a tail with a white underside; a host for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks)
+81506,wood_rat wood-rat,any of various small short-tailed rodents of the northern hemisphere having soft fur grey above and white below with furred tails and large ears; some are hosts for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks)
+81507,wood_sage Teucrium_scorodonia,European germander with one-sided racemes of yellow flowers; naturalized in North America
+81508,wood_spurge Euphorbia_amygdaloides,European perennial herb with greenish yellow terminal flower clusters
+81509,wood_sugar xylose,a sugar extracted from wood or straw; used in foods for diabetics
+81510,wood_swallow swallow_shrike,Australasian and Asiatic bird related to the shrikes and resembling a swallow
+81511,wood_tar,any tar obtained by the destructive distillation of wood
+81512,wood_thrush Hylocichla_mustelina,large thrush common in eastern American woodlands; noted for its melodious song
+81513,wood_tick American_dog_tick Dermacentor_variabilis,common tick that can transmit Rocky Mountain spotted fever and tularemia
+81514,wood_vise woodworking_vise shoulder_vise,a vise with jaws that are padded in order to hold lumber without denting it
+81515,wood_warbler Phylloscopus_sibilatrix,European woodland warbler with dull yellow plumage
+81516,woodbine Lonicera_periclymenum,European twining honeysuckle with fragrant red and yellow-white flowers
+81517,woodborer borer,any of various insects or larvae or mollusks that bore into wood
+81518,woodcarver carver,makes decorative wooden panels
+81519,woodcarving,a carving created by carving wood
+81520,woodcock,game bird of the sandpiper family that resembles a snipe
+81521,woodcraft,skill and experience in matters relating to the woods (as hunting or fishing or camping)
+81522,woodcraft,skill in carving or fashioning objects from wood
+81523,woodcut wood_block wood_engraving,engraving consisting of a block of wood with a design cut into it; used to make prints
+81524,woodcut wood_engraving,a print made from a woodcut
+81525,woodcutter,cuts down trees and chops wood as a job
+81526,wooden_spoon,a booby prize consisting of a spoon made of wood
+81527,wooden_spoon,a spoon made of wood
+81528,woodenness,the quality of being wooden and awkward; "he criticized the woodenness of the acting"; "there was a certain woodenness in his replies"
+81529,woodenware,ware for domestic use made of wood
+81530,woodhewer woodcreeper wood-creeper tree_creeper,any of numerous South American and Central American birds with a curved bill and stiffened tail feathers that climb and feed like woodpeckers
+81531,woodiness woodsiness,the quality of abounding in trees
+81532,woodland_caribou Rangifer_caribou,any of several large caribou living in coniferous forests of southern Canada; in some classifications included in the species Rangifer tarandus
+81533,woodland_oxeye Buphthalmum_salicifolium,hairy Eurasian perennial having deep yellow daisies on lax willowy stems; found in the wild in open woodland and on rocky slopes
+81534,woodland_star Lithophragma_affine Lithophragma_affinis Tellima_affinis,California perennial herb cultivated for its racemose white flowers with widely spreading petals; sometimes placed in genus Tellima
+81535,woodlouse wood_louse slater,any of various small terrestrial isopods having a flat elliptical segmented body; found in damp habitats
+81536,woodpecker peckerwood pecker,bird with strong claws and a stiff tail adapted for climbing and a hard chisel-like bill for boring into wood for insects
+81537,woodpile,a pile or stack of wood to be used for fuel
+81538,woodruff,any plant of the genus Asperula
+81539,woodscrew,a metal screw that tapers to a point so that it can be driven into wood with a screwdriver
+81540,woodshed,a shed for storing firewood or garden tools
+81541,woodsia,any fern of the genus Woodsia
+81542,woodsman woodman,someone who lives in the woods
+81543,woodwaxen dyer's_greenweed dyer's-broom dyeweed greenweed whin woadwaxen Genista_tinctoria,small Eurasian shrub having clusters of yellow flowers that yield a dye; common as a weed in Britain and the United States; sometimes grown as an ornamental
+81544,woodwind woodwind_instrument wood,any wind instrument other than the brass instruments
+81545,woodwind_family,(music) the family of woodwind instruments
+81546,woodwork,work made of wood; especially moldings or stairways or furniture
+81547,woodworker woodsman woodman,makes things out of wood
+81548,woodworm,a larva of a woodborer
+81549,woody_plant ligneous_plant,a plant having hard lignified tissues or woody parts especially stems
+81550,woof weft filling pick,the yarn woven across the warp yarn in weaving
+81551,woofer,a loudspeaker that reproduces lower audio frequency sounds
+81552,wool,fiber sheared from animals (such as sheep) and twisted into yarn for weaving
+81553,wool fleece,outer coat of especially sheep and yaks
+81554,wool woolen woollen,a fabric made from the hair of sheep
+81555,wool_grass Scirpus_cyperinus,sedge of eastern North America having numerous clustered woolly spikelets
+81556,wool_oil,any oil used to oil wool before spinning
+81557,wool_stapler,a dealer in wool
+81558,wool_stapler woolsorter,a person who sorts wool into different grades
+81559,woolgathering,an idle indulgence in fantasy
+81560,woolly_adelgid,an insect that feeds on hemlocks; its egg sacs are small fuzzy white balls like artificial snow on a Christmas tree
+81561,woolly_alder_aphid Prociphilus_tessellatus,attacks alders
+81562,woolly_aphid woolly_plant_louse,secretes a waxy substance like a mass of fine curly white cotton or woolly threads
+81563,woolly_apple_aphid American_blight Eriosoma_lanigerum,primarily a bark feeder on aerial parts and roots of apple and other trees
+81564,woolly_bear woolly_bear_caterpillar,caterpillar of numerous moths characterized by a dense coat of woolly hairs; feed on plants and some are destructive pests
+81565,woolly_bear_moth,larva of moth of the family Arctiidae
+81566,woolly_daisy dwarf_daisy Antheropeas_wallacei Eriophyllum_wallacei,tiny grey woolly tufted annual with small golden-yellow flower heads; southeastern California to northwestern Arizona and southwestern Utah; sometimes placed in genus Eriophyllum
+81567,woolly_indris Avahi_laniger,nocturnal indris with thick grey-brown fur and a long tail
+81568,woolly_mammoth northern_mammoth Mammuthus_primigenius,very hairy mammoth common in colder portions of the northern hemisphere
+81569,woolly_monkey,large monkeys with dark skin and woolly fur of the Amazon and Orinoco basins
+81570,woolly_rhinoceros Rhinoceros_antiquitatis,extinct thick-haired species of Arctic regions
+81571,woolly_sunflower,any plant of the genus Eriophyllum
+81572,woolly_thistle Cirsium_flodmanii,thistle of western North America having white woolly leaves
+81573,wooly_lip_fern hairy_lip_fern Cheilanthes_lanosa,small North American evergreen fern whose stipes and lower frond surfaces are densely wooly
+81574,wop dago ginzo Guinea greaseball,(ethnic slur) offensive term for a person of Italian descent
+81575,word,a string of bits stored in computer memory; "large computers use words up to 64 bits long"
+81576,word,a verbal command for action; "when I give the word, charge!"
+81577,word,a brief statement; "he didn't say a word about it"
+81578,word,a unit of language that native speakers can identify; "words are the blocks from which sentences are made"; "he hardly said ten words all morning"
+81579,word-painter,a writer of vivid or graphic descriptive power
+81580,word_division hyphenation,division of a word especially at the end of a line on a page
+81581,word_finder wordfinder,a thesaurus organized to help you find the word you want but cannot think of
+81582,word_game,any game involving the formation or alteration or discovery of words
+81583,word_meaning word_sense acceptation,the accepted meaning of a word
+81584,word_order,the order of words in a text
+81585,word_picture word-painting delineation depiction picture characterization characterisation,a graphic or vivid verbal description; "too often the narrative was interrupted by long word pictures"; "the author gives a depressing picture of life in Poland"; "the pamphlet contained brief characterizations of famous Vermonters"
+81586,word_play,playing on words or speech sounds
+81587,word_processing,rapid and efficient processing (storage and printing) of linguistic data for composition and editing
+81588,word_processor word_processing_system,an application that provides the user with tools needed to write and edit and format text and to send it to a printer
+81589,word_salad,jumble of incoherent speech as sometimes heard in schizophrenia
+81590,word_square acrostic,a puzzle where you fill a square grid with words reading the same down as across
+81591,word_stress word_accent,the distribution of stresses within a polysyllabic word
+81592,wordbook,a reference book containing words (usually with their meanings)
+81593,wording diction phrasing phraseology choice_of_words verbiage,the manner in which something is expressed in words; "use concise military verbiage"- G.S.Patton
+81594,wordmonger,a writer who uses language carelessly or pretentiously with little regard for meaning
+81595,wordnet,any of the machine-readable lexical databases modeled after the Princeton WordNet
+81596,words,the words that are spoken; "I listened to his words very closely"
+81597,words,language that is spoken or written; "he has a gift for words"; "she put her thoughts into words"
+81598,words_per_minute wpm,the rate at which words are produced (as in speaking or typing)
+81599,wordsmith,a fluent and prolific writer
+81600,work,(physics) a manifestation of energy; the transfer of energy from one physical system to another expressed as the product of a force and the distance through which it moves a body in the direction of that force; "work equals force times distance"
+81601,work,activity directed toward making or doing something; "she checked several points needing further work"
+81602,work piece_of_work,a product produced or accomplished through the effort or activity or agency of a person or thing; "it is not regarded as one of his more memorable works"; "the symphony was hailed as an ingenious work"; "he was indebted to the pioneering work of John Dewey"; "the work of an active imagination"; "erosion is the work of wind or water over time"
+81603,work-clothing work-clothes work_clothes work_clothing,clothing worn for doing manual labor
+81604,work-in,occasion when workers continue to work as a protest against e.g. proposed dismissal or closure of the factory
+81605,work-shirt,heavy-duty shirts worn for manual or physical work
+81606,work-study_program,an educational plan in which students alternate between paid employment and formal study
+81607,work_animal,an animal trained for and used for heavy labor
+81608,work_camp prison_camp prison_farm,a camp for trustworthy prisoners employed in government projects
+81609,work_flow workflow,progress (or rate of progress) in work being done
+81610,work_force workforce manpower hands men,the force of workers available
+81611,work_in_progress,a piece of work that is not yet finished
+81612,work_of_art,art that is a product of one of the fine arts (especially a painting or sculpture of artistic merit)
+81613,work_song,a usually rhythmical song to accompany repetitious work
+81614,work_surface,a horizontal surface for supporting objects used in working or playing games
+81615,work_time,a time period when you are required to work
+81616,work_to_rule,a job action in which workers cause a slowdown by doing only the minimum amount required by the rules of the workplace
+81617,work_unit heat_unit energy_unit,a unit of measurement for work
+81618,workaholic,person with a compulsive need to work
+81619,workaholism,compulsiveness about working
+81620,workbasket workbox workbag,container for holding implements and materials for work (especially for sewing)
+81621,workbench work_bench bench,a strong worktable for a carpenter or mechanic
+81622,workboard work-board,a horizontal board that provides a supported surface for manual work
+81623,workbook,a student's book or booklet containing problems with spaces for solving them
+81624,workday working_day,the amount of time that a worker must work for an agreed daily wage; "they work an 8-hour day"
+81625,workday working_day work_day,a day on which work is done
+81626,worker,a person who works at a specific occupation; "he is a good worker"
+81627,worker,sterile member of a colony of social insects that forages for food and cares for the larvae
+81628,worker_bee,sterile bee specialized to collect food and maintain the hive
+81629,workhorse,machine that performs dependably under heavy use; "the IBM main frame computers have been the workhorse of the business world"
+81630,workhorse,a horse used for plowing and hauling and other heavy labor
+81631,workhouse,a poorhouse where able-bodied poor are compelled to labor
+81632,workhouse,a county jail that holds prisoners for periods up to 18 months
+81633,working workings,a mine or quarry that is being or has been worked
+81634,working_agreement,an informal agreement to work together
+81635,working_dog,any of several breeds of usually large powerful dogs bred to work as draft animals and guard and guide dogs
+81636,working_girl,a young woman who is employed
+81637,working_group working_party,a group of people working together temporarily until some goal is achieved; "the working group was supposed to report back in two weeks"
+81638,working_memory,memory for intermediate results that must be held during thinking
+81639,working_papers,records kept of activities involved in carrying out a project; "the auditor was required to produce his working papers"
+81640,working_papers work_papers work_permit,a legal document giving information required for employment of certain people in certain countries
+81641,working_principle working_rule,a rule that is adequate to permit work to be done
+81642,workload work_load,work that a person is expected to do in a specified time
+81643,workman workingman working_man working_person,an employee who performs manual or industrial labor
+81644,workmate,a fellow worker
+81645,workmen's_compensation,compensation for death or injury suffered by a worker in the course of his employment
+81646,workpiece,work consisting of a piece of metal being machined
+81647,workplace work,a place where work is done; "he arrived at work early today"
+81648,workroom,room where work is done
+81649,works deeds,performance of moral or religious acts; "salvation by deeds"; "the reward for good works"
+81650,works workings,the internal mechanism of a device
+81651,works_council,(chiefly Brit) a council representing employer and employees of a plant or business to discuss working conditions etc; also: a committee representing the workers elected to negotiate with management about grievances and wages etc
+81652,works_program,a program to provide jobs on public works paid for by government funds
+81653,worksheet,a piece of paper recording work planned or done on a project
+81654,worksheet,a sheet of paper with multiple columns; used by an accountant to assemble figures for financial statements
+81655,workshop,a brief intensive course for a small group; emphasizes problem solving
+81656,workshop shop,small workplace where handcrafts or manufacturing are done
+81657,workspace,space allocated for your work (as in an office)
+81658,workstation,a desktop digital computer that is conventionally considered to be more powerful than a microcomputer
+81659,worktable work_table,a table designed for a particular task
+81660,workwear,heavy-duty clothes for manual or physical work
+81661,workweek week,hours or days of work in a calendar week; "they worked a 40-hour week"
+81662,world,a part of the earth that can be considered separately; "the outdoor world"; "the world of insects"
+81663,world domain,people in general; especially a distinctive group of people with some shared interest; "the Western world"
+81664,world human_race humanity humankind human_beings humans mankind man,all of the living human inhabitants of the earth; "all the world loves a lover"; "she always used `humankind' because `mankind' seemed to slight the women"
+81665,world reality,all of your experiences that determine how things appear to you; "his world was shattered"; "we live in different worlds"; "for them demons were as much a part of reality as trees were"
+81666,world-weariness Weltschmerz,sadness on thinking about the evils of the world
+81667,world_affairs international_affairs,affairs between nations; "you can't really keep up with world affairs by watching television"
+81668,world_council,a council with representatives from different nations
+81669,world_organization world_organisation international_organization international_organisation global_organization,an international alliance involving many different countries
+81670,world_power major_power great_power power superpower,a state powerful enough to influence events throughout the world
+81671,world_premiere,(music) the first public performance (as of a dramatic or musical work) anywhere in the world
+81672,world_record,the best record in the whole world
+81673,world_war,a war in which the major nations of the world are involved
+81674,worldliness,concern with worldly affairs to the neglect of spiritual needs; "he disliked the worldliness of many bishops around him"
+81675,worldling,a person absorbed by the concerns and interests and pleasures of the present world
+81676,worldly_concern earthly_concern world earth,the concerns of this life as distinguished from heaven and the afterlife; "they consider the church to be independent of the world"
+81677,worldly_possession worldly_good,a commodity or good associated with the earthly, rather than the spiritual, existence of human beings
+81678,worldly_possessions worldly_belongings worldly_goods,all the property that someone possesses; "he left all his worldly possessions to his daughter"
+81679,worm,a software program capable of reproducing itself that can spread from one computer to the next over a network; "worms take advantage of automatic file sending and receiving features found on many computers"
+81680,worm,screw thread on a gear with the teeth of a worm wheel or rack
+81681,worm,any of numerous relatively small elongated soft-bodied animals especially of the phyla Annelida and Chaetognatha and Nematoda and Nemertea and Platyhelminthes; also many insect larvae
+81682,worm louse insect dirt_ball,a person who has a nasty or unethical character undeserving of respect
+81683,worm_family,a family of worms
+81684,worm_fence snake_fence snake-rail_fence Virginia_fence,rail fence consisting of a zigzag of interlocking rails
+81685,worm_fish,poorly known family of small tropical shallow-water fishes related to gobies
+81686,worm_gear,gear consisting of a shaft with screw thread (the worm) that meshes with a toothed wheel (the worm wheel); changes the direction of the axis of rotary motion
+81687,worm_genus,a genus of worms
+81688,worm_lizard,a lizard of the genus Amphisbaena; harmless wormlike limbless lizard of warm or tropical regions having concealed eyes and ears and a short blunt tail
+81689,worm_wheel,gear with the thread of a worm
+81690,wormcast,cylindrical mass of earth voided by a burrowing earthworm or lugworm
+81691,wormcast,fossil trail of a worm
+81692,wormhole,hole made by a burrowing worm
+81693,wormseed_mustard Erysimum_cheiranthoides,slender yellow-flowered European mustard often troublesome as a weed; formerly used as an anthelmintic
+81694,wormwood,any of several low composite herbs of the genera Artemisia or Seriphidium
+81695,wormwood_oil absinthe_oil,a dark bitter oil obtained from wormwood leaves; flavors absinthe liqueurs
+81696,wormwood_sage prairie_sagewort Artemisia_frigida,silky-leaved aromatic perennial of dry northern parts of the northern hemisphere; has tawny florets
+81697,worn_spot fret,a spot that has been worn away by abrasion or erosion
+81698,worrier fuss-budget fusspot worrywart,thinks about unfortunate things that might happen
+81699,worry trouble,a strong feeling of anxiety; "his worry over the prospect of being fired"; "it is not work but worry that kills"; "he wanted to die and end his troubles"
+81700,worrying,the act of moving something by repeated tugs or pushes; "vigorous worrying finally loosened the saw"
+81701,worse,something inferior in quality or condition or effect; "for better or for worse"; "accused of cheating and lying and worse"
+81702,worsening,changing something with the result that it becomes worse
+81703,worship,the activity of worshipping
+81704,worship adoration,a feeling of profound love and admiration
+81705,worshiper worshipper,someone who admires too much to recognize faults
+81706,worst,the least favorable outcome; "the worst that could happen"
+81707,worst,the greatest damage or wickedness of which one is capable; "the invaders did their worst"; "so pure of heart that his worst is another man's best"
+81708,worst,the weakest effort or poorest achievement one is capable of; "it was the worst he had ever done on a test"
+81709,worsted,a woolen fabric with a hard textured surface and no nap; woven of worsted yarns "he wore a worsted suit"
+81710,worsted worsted_yarn,a tightly twisted woolen yarn spun from long-staple wool
+81711,wort,usually used in combination: `liverwort'; `milkwort'; `whorlywort'
+81712,wort,unfermented or fermenting malt
+81713,worth,an indefinite quantity of something having a specified value; "10 dollars worth of gasoline"
+81714,worth,the quality that renders something desirable or valuable or useful
+81715,worthiness,the quality or state of having merit or value
+81716,worthlessness,the quality of being without practical use
+81717,worthlessness ineptitude,having no qualities that would render it valuable or useful; "the drill sergeant's intent was to convince all the recruits of their worthlessness"
+81718,worthwhileness,value sufficient to repay time or effort spent
+81719,worthy,an important, honorable person (word is often used humorously); "he told his story to some conservative worthies"; "local worthies rarely challenged the chief constable"
+81720,wound,a figurative injury (to your feelings or pride); "he feared that mentioning it might reopen the wound"; "deep in her breast lives the silent wound"; "The right reader of a good poem can tell the moment it strikes him that he has taken an immortal wound--that he will never get over it"--Robert Frost
+81721,wound injury combat_injury,a casualty to military personnel resulting from combat
+81722,wound lesion,an injury to living tissue (especially an injury involving a cut or break in the skin)
+81723,wound wounding,the act of inflicting a wound
+81724,wound_tumor_virus WTV,a tumor virus transmitted by leafhoppers
+81725,wounded maimed,people who are wounded; "they had to leave the wounded where they fell"
+81726,wove_paper,writing paper having a very faint mesh pattern
+81727,wrack,dried seaweed especially that cast ashore
+81728,wrack rack,the destruction or collapse of something; "wrack and ruin"
+81729,wrangler,someone who argues noisily or angrily
+81730,wrap,a sandwich in which the filling is rolled up in a soft tortilla
+81731,wrap wrapper,cloak that is folded or wrapped around a person
+81732,wraparound,a garment (as a dress or coat) with a full length opening; adjusts to the body by wrapping around
+81733,wrapping wrap wrapper,the covering (usually paper or cellophane) in which something is wrapped
+81734,wrapping_paper,a tough paper used for wrapping
+81735,wrasse,chiefly tropical marine fishes with fleshy lips and powerful teeth; usually brightly colored
+81736,wrath,intense anger (usually on an epic scale)
+81737,wrath anger ire ira,belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)
+81738,wreath garland coronal chaplet lei,flower arrangement consisting of a circular band of foliage or flowers for ornamental purposes
+81739,wreck,something or someone that has suffered ruin or dilapidation; "the house was a wreck when they bought it"; "thanks to that quack I am a human wreck"
+81740,wreck,a ship that has been destroyed at sea
+81741,wreckage,the remaining parts of something that has been wrecked; "they searched the wreckage for signs of survivors"
+81742,wrecker,someone who demolishes or dismantles buildings as a job
+81743,wren jenny_wren,any of several small active brown birds of the northern hemisphere with short upright tails; they feed on insects
+81744,wren-tit Chamaea_fasciata,small brown bird of California resembling a wren
+81745,wren_warbler,small Asiatic and African bird; constructs nests like those of tailorbirds
+81746,wrench spanner,a hand tool that is used to hold or twist a nut or bolt
+81747,wrench twist pull,a sharp strain on muscles or ligaments; "the wrench to his knee occurred as he fell"; "he was sidelined with a hamstring pull"
+81748,wrester,someone who obtains something by pulling it violently with twisting movements
+81749,wrestle wrestling grapple grappling hand-to-hand_struggle,the act of engaging in close hand-to-hand combat; "they had a fierce wrestle"; "we watched his grappling and wrestling with the bully"
+81750,wrestler grappler matman,combatant who tries to throw opponent to the ground
+81751,wrestling rassling grappling,the sport of hand-to-hand struggle between unarmed contestants who try to throw each other down
+81752,wrestling_hold,a hold used in the sport of wrestling
+81753,wrestling_mat,a mat on which wrestling matches are conducted
+81754,wrestling_match,a match between wrestlers
+81755,wrestling_ring,a square ring in which wrestlers compete
+81756,wretch,performs some wicked deed
+81757,wretchedness,the character of being uncomfortable and unpleasant; "the wretchedness for which these prisons became known"; "the grey wretchedness of the rain"
+81758,wretchedness,the quality of being poor and inferior and sorry; "he has compiled a record second to none in its wretchedness"
+81759,wright,someone who makes or repairs something (usually used in combination)
+81760,wringer,a clothes dryer consisting of two rollers between which the wet clothes are squeezed
+81761,wrinkle,a minor difficulty; "they finally have the wrinkles pretty well ironed out"
+81762,wrinkle,a clever method of doing something (especially something new and different)
+81763,wrinkle furrow crease crinkle seam line,a slight depression or fold in the smoothness of a surface; "his face has many lines"; "ironing gets rid of most wrinkles"
+81764,wrist carpus wrist_joint radiocarpal_joint articulatio_radiocarpea,a joint between the distal end of the radius and the proximal row of carpal bones
+81765,wrist_pad,protective garment consisting of a pad worn by football players
+81766,wrist_pin gudgeon_pin,pin joining a piston to a connecting rod
+81767,wristband,band consisting of a part of a sleeve that covers the wrist
+81768,wristlet wrist_band,a band or bracelet worn around the wrist
+81769,wristwatch wrist_watch,a watch that is worn strapped to the wrist
+81770,writ judicial_writ,(law) a legal document issued by a court or judicial officer
+81771,writ_of_detinue,a writ ordering the release of goods that have been unlawfully detained
+81772,writ_of_election,a writ ordering the holding of an election
+81773,writ_of_error,a judicial writ from an appellate court ordering the court of record to produce the records of trial
+81774,writ_of_prohibition,a judicial writ from a higher court ordering a lower court not to exercise jurisdiction in a particular case
+81775,writ_of_right,a writ ordering that land be restored to its rightful owner
+81776,write-in,a vote cast by writing in the name of a candidate who is not listed on the ballot
+81777,write-in_candidate write-in,a candidate for public office whose name does not appear on the ballot and so must be written on the ballot by the voters
+81778,write-off,the act of cancelling from an account a bad debt or a worthless asset
+81779,write-off write-down,(accounting) reduction in the book value of an asset
+81780,writer,a person who is able to write and has written something
+81781,writer author,writes (books or stories or articles or the like) professionally (for pay)
+81782,writer's_block,an inability to write; "he had writer's block; the words wouldn't come"
+81783,writer's_cramp graphospasm,muscular spasms of thumb and forefinger while writing with a pen or pencil
+81784,writer's_name author's_name,the name that appears on the by-line to identify the author of a work
+81785,writing,(usually plural) the collected work of an author; "the idea occurs with increasing frequency in Hemingway's writings"
+81786,writing,letters or symbols that are written or imprinted on a surface to represent the sounds or words of a language; "he turned the paper over so the writing wouldn't show"; "the doctor's writing was illegible"
+81787,writing authorship composition penning,the act of creating written works; "writing was a form of therapy for him"; "it was a matter of disputed authorship"
+81788,writing committal_to_writing,the activity of putting something in written form; "she did the thinking while he did the writing"
+81789,writing written_material piece_of_writing,the work of a writer; anything expressed in letters of the alphabet (especially when considered from the point of view of style and effect); "the writing in her novels is excellent"; "that editorial was a fine piece of writing"
+81790,writing_arm,an arm of a tablet-armed chair; widened to provide a writing surface
+81791,writing_board,work surface consisting of a wide lightweight board that can be placed across the lap and used for writing
+81792,writing_desk,a portable case containing writing materials and having a writing surface
+81793,writing_desk,a desk for writing (usually with a sloping top)
+81794,writing_implement,an implement that is used to write
+81795,writing_ink,any permanent or washable ink used with pens
+81796,writing_paper,paper material made into thin sheets that are sized to take ink; used for writing correspondence and manuscripts
+81797,writing_style literary_genre genre,a style of expressing yourself in writing
+81798,written_agreement,a legal document summarizing the agreement between parties
+81799,written_assignment writing_assignment,an assignment to write something
+81800,written_communication written_language black_and_white,communication by means of written symbols (either printed or handwritten)
+81801,written_record written_account,a written document preserving knowledge of facts or events
+81802,written_symbol printed_symbol,a written or printed symbol
+81803,written_word,the written form of a word; "while the spoken word stands for something, the written word stands for something that stands for something"; "a craftsman of the written word"
+81804,wrong legal_injury damage,any harm or injury resulting from a violation of a legal right
+81805,wrong wrongfulness,that which is contrary to the principles of justice or law; "he feels that you are in the wrong"
+81806,wrong-site_surgery,a surgical operation performed on the wrong part of the body
+81807,wrongdoer offender,a person who transgresses moral or civil law
+81808,wrongdoing wrongful_conduct misconduct actus_reus,activity that transgresses moral or civil law; "he denied any wrongdoing"
+81809,wrongful_death,a death that results from a wrongful act or from negligence; a death that can serve as the basis for a civil action for damages on behalf of the dead person's family or heirs
+81810,wrongness,contrary to conscience or morality
+81811,wrought_iron,iron having a low carbon content that is tough and malleable and so can be forged and welded
+81812,wrymouth ghostfish Cryptacanthodes_maculatus,eellike Atlantic bottom fish with large almost vertical mouth
+81813,wryneck,Old World woodpecker with a peculiar habit of twisting the neck
+81814,wulfenite,a yellow to orange or brown mineral used as a molybdenum ore
+81815,wurtzite,a brownish-black mineral consisting of zinc sulfide
+81816,wyvern wivern,a fire-breathing dragon used in medieval heraldry; had the head of a dragon and the tail of a snake and a body with wings and two legs
+81817,x-axis,the horizontal axis in a plane coordinate system
+81818,xanthate,a salt or ester of xanthic acid
+81819,xanthelasma,xanthoma of the eyelids; occurs chiefly in the elderly
+81820,xanthic_acid,any of a class of unstable organic acids containing sulphur
+81821,xanthine,crystalline oxidation product of the metabolism of nucleoproteins; precursor of uric acid; found in many organs and in urine
+81822,xanthoma,a skin problem marked by the development (on the eyelids and neck and back) of irregular yellow nodules; sometimes attributable to disturbances of cholesterol metabolism
+81823,xanthoma_disseminatum,rare chronic xanthoma of adults in which orange or brownish papules develop on many surfaces of the body
+81824,xanthomatosis xanthoma_multiplex cholesterosis_cutis lipid_granulomatosis lipoid_granulomatosis,widespread xanthomas (especially on elbows and knees); often associated with a disorder of lipid metabolism
+81825,xanthomonad,bacteria producing yellow non-water-soluble pigments; some pathogenic for plants
+81826,xanthophyll xanthophyl lutein,yellow carotenoid pigments in plants and animal fats and egg yolks
+81827,xanthopsia,visual defect in which objects appear to have a yellowish hue; sometimes occurs in cases of jaundice
+81828,xanthosis,an abnormal yellow discoloration of the skin
+81829,xenolith,(geology) a piece of rock of different origin from the igneous rock in which it is embedded
+81830,xenon Xe atomic_number_54,a colorless odorless inert gaseous element occurring in the earth's atmosphere in trace amounts
+81831,xenophobia,a fear of foreigners or strangers
+81832,xenotime,a brown-to-yellow mineral that is a phosphate of yttrium in crystalline form
+81833,xenotransplant xenotransplantation,a surgical procedure in which tissue or whole organs are transfered from one species to another species
+81834,xeranthemum,any plant of the genus Xeranthemum native to southern Europe having chaffy or silvery flower heads with purplish tubular flowers
+81835,xeroderma xerodermia,a mild form of ichthyosis characterized by abnormal dryness and roughness of the skin
+81836,xeroderma_pigmentosum,a rare genetic condition characterized by an eruption of exposed skin occurring in childhood and photosensitivity with severe sunburn; inherited as a recessive autosomal trait in which DNA repair processes are defective so they are more likely to chromosome breaks and cancers when exposed to ultraviolet light
+81837,xerographic_printer,a page printer that uses the xerographic process
+81838,xerography,forming an image by the action of light on a specially coated charged plate; the latent image is developed with powders that adhere only to electrically charged areas; "edge enhancement is intrinsic in xerography"
+81839,xerophthalmia xerophthalmus xeroma conjunctivitis_arida,abnormal dryness of the conjunctiva and cornea of the eyes; may be due to a systemic deficiency of vitamin A
+81840,xeroradiography,radiography using X-rays and xerographic (rather than roentgenographic) techniques
+81841,xerostomia dry_mouth,abnormal dryness of the mouth resulting from decreased secretion of saliva
+81842,xerox xerox_copy,a copy made by a xerographic copier
+81843,xi,the 14th letter of the Greek alphabet
+81844,xiphoid_process,smallest of the three parts of the breastbone; articulates with the corpus sternum and the seventh rib
+81845,xylem,the woody part of plants: the supporting and water-conducting tissue, consisting primarily of tracheids and vessels
+81846,xylene xylol,a colorless flammable volatile liquid hydrocarbon used as a solvent
+81847,xylophonist,someone who plays a xylophone
+81848,xylosma Xylosma_congestum,shrub or small tree grown as an ornamental in mild climates for its neat evergreen foliage and fragrant late flowers; native of China
+81849,y-axis,the vertical axis in a plane coordinate system
+81850,yacca yacca_podocarp Podocarpus_coriaceus,West Indian evergreen with medium to long leaves
+81851,yacht racing_yacht,an expensive vessel propelled by sail or power and used for cruising or racing
+81852,yacht_chair,a light folding armchair for outdoor use
+81853,yacht_club boat_club,club that promotes and supports yachting and boating
+81854,yachtsman yachtswoman,a person who owns or sails a yacht
+81855,yagi Yagi_aerial,a sharply directional antenna
+81856,yak Bos_grunniens,large long-haired wild ox of Tibet often domesticated
+81857,yak yack yakety-yak chatter cackle,noisy talk
+81858,yak's_milk,the milk of a yak
+81859,yak_butter,butter made from yaks' milk
+81860,yakuza,a Japanese gangster
+81861,yakuza,organized crime in Japan; an alliance of criminal organizations and illegal enterprises
+81862,yam,edible tuber of any of several yams
+81863,yam,sweet potato with deep orange flesh that remains moist when baked
+81864,yam,edible tuberous root of various yam plants of the genus Dioscorea grown in the tropics world-wide for food
+81865,yam yam_plant,any of a number of tropical vines of the genus Dioscorea many having edible tuberous roots
+81866,yam_bean Pachyrhizus_erosus,Central American twining plant with edible roots and pods; large tubers are eaten raw or cooked especially when young and young pods must be thoroughly cooked; pods and seeds also yield rotenone and oils
+81867,yam_bean potato_bean Pachyrhizus_tuberosus,twining plant of Amazon basin having large edible roots
+81868,yang,the bright positive masculine principle in Chinese dualistic cosmology; "yin and yang together produce everything that comes into existence"
+81869,yanker jerker,someone who gives a strong sudden pull
+81870,yard,a tract of land where logs are accumulated
+81871,yard,a tract of land enclosed for particular activities (sometimes paved and usually associated with buildings); "they opened a repair yard on the edge of town"
+81872,yard,a long horizontal spar tapered at the end and used to support and spread a square sail or lateen
+81873,yard,an enclosure for animals (as chicken or livestock)
+81874,yard grounds curtilage,the enclosed land around a house or other building; "it was a small house with almost no yard"
+81875,yard pace,a unit of length equal to 3 feet; defined as 91.44 centimeters; originally taken to be the average length of a stride
+81876,yard railway_yard railyard,an area having a network of railway tracks and sidings for storage and maintenance of cars and engines
+81877,yard_bird yardbird,a military recruit who is assigned menial tasks
+81878,yard_goods piece_goods,merchandise in the form of fabrics sold by the yard
+81879,yard_line,in football; line parallel to the goal lines indicating position on the field
+81880,yard_marker,(football) a marker indicating the yard line
+81881,yardage,distance measured in the aggregate number of yards; "what is the yardage of this golf course?"
+81882,yardarm,either end of the yard of a square-rigged ship
+81883,yarder,(used only in combinations) the height or length of something in yards; "the golfer hit a 300-yarder to the green"
+81884,yarder yard_donkey,a winch (or system of winches) powered by an engine and used to haul logs from a stump to a landing or to a skid road
+81885,yardgrass yard_grass wire_grass goose_grass Eleusine_indica,coarse annual grass having fingerlike spikes of flowers; native to Old World tropics; a naturalized weed elsewhere
+81886,yardie,member of an international gang of Jamaican criminals who sell drugs and violence; "A much publicized raid on a yardie stronghold had first been simulated at Riot City"
+81887,yardman,worker in a railway yard
+81888,yardman,a laborer hired to do outdoor work (such as mowing lawns)
+81889,yardmaster trainmaster train_dispatcher,a railroad employer who is in charge of a railway yard
+81890,yardstick,a measure or standard used for comparison; "on what kind of yardstick is he basing his judgment?"
+81891,yardstick yard_measure,a ruler or tape that is three feet long
+81892,yarmulke yarmulka yarmelke,a skullcap worn by religious Jews (especially at prayer)
+81893,yarrow milfoil Achillea_millefolium,ubiquitous strong-scented mat-forming Eurasian herb of wasteland, hedgerow or pasture having narrow serrate leaves and small usually white florets; widely naturalized in North America
+81894,yashmak yashmac,the face veil worn by Muslim women
+81895,yataghan,a long Turkish knife with a curved blade having a single edge
+81896,yaupon_holly,an evergreen shrub
+81897,yautia tannia spoonflower malanga Xanthosoma_sagittifolium Xanthosoma_atrovirens,tropical American aroid having edible tubers that are cooked and eaten like yams or potatoes
+81898,yaw swerve,an erratic deflection from an intended course
+81899,yawl,a ship's small boat (usually rowed by 4 or 6 oars)
+81900,yawl dandy,a sailing vessel with two masts; a small mizzen is aft of the rudderpost
+81901,yawn yawning oscitance oscitancy,an involuntary intake of breath through a wide open mouth; usually triggered by fatigue or boredom; "he could not suppress a yawn"; "the yawning in the audience told him it was time to stop"; "he apologized for his oscitancy"
+81902,yawner,a person who yawns
+81903,yaws frambesia framboesia,an infectious tropical disease resembling syphilis in its early stages; marked by red skin eruptions and ulcerating lesions
+81904,yea,an affirmative; "The yeas have it"
+81905,year,a period of time occupying a regular part of a calendar year that is used for some particular activity; "a school year"
+81906,year,the period of time that it takes for a planet (as, e.g., Earth or Mars) to make a complete revolution around the sun; "a Martian year takes 687 of our days"
+81907,year twelvemonth yr,a period of time containing 365 (or 366) days; "she is 4 years old"; "in the year 1920"
+81908,year-end,the end of a calendar year; "he had to unload the merchandise before the year-end"
+81909,year_dot,as long ago as anyone can remember; "he has been a conductor since the year dot"
+81910,year_of_grace,any year of the Christian era
+81911,yearbook,a book published annually by the graduating class of a high school or college usually containing photographs of faculty and graduating students
+81912,yearling,a racehorse considered one year old until the second Jan. 1 following its birth
+81913,yearling,an animal in its second year
+81914,yeast,any of various single-celled fungi that reproduce asexually by budding or division
+81915,yeast barm,a commercial leavening agent containing yeast cells; used to raise the dough in making bread and for fermenting beer or whiskey
+81916,yeast_cake,small cake of compressed moist yeast
+81917,yelling shouting,uttering a loud inarticulate cry as of pain or excitement
+81918,yellow yellowness,yellow color or pigment; the chromatic color resembling the hue of sunflowers or ripe lemons
+81919,yellow-bellied_sapsucker Sphyrapicus_varius,eastern North American sapsucker having a pale yellow abdomen
+81920,yellow-blue_dichromacy yellow-blue_color_blindness,confusion of yellow and blue
+81921,yellow-breasted_bunting Emberiza_aureola,common in Russia and Siberia
+81922,yellow-breasted_chat Icteria_virens,American warbler noted for imitating songs of other birds
+81923,yellow-crowned_night_heron Nyctanassa_violacea,North American night heron
+81924,yellow-dog_contract,a labor contract (now illegal) whereby the employee agrees not to join a trade union
+81925,yellow-eyed_grass,any of several rushlike plants, especially of the pine barrens of southern United States
+81926,yellow-fever_mosquito Aedes_aegypti,mosquito that transmits yellow fever and dengue
+81927,yellow-green_algae,any alga of the division Chrysophyta with its chlorophyll masked by yellow pigment
+81928,yellow-leaf_sickle_pine Falcatifolium_taxoides,a rain forest tree or shrub of New Caledonia having a conic crown and pale green sickle-shaped leaves; host species for the rare parasite yew
+81929,yellow-shafted_flicker Colaptes_auratus yellowhammer,large flicker of eastern North America with a red neck and yellow undersurface to wings and tail
+81930,yellow-throated_marten Charronia_flavigula,large yellow and black marten of southern China and Burma
+81931,yellow_adder's_tongue trout_lily amberbell Erythronium_americanum,eastern North American dogtooth having solitary yellow flowers marked with brown or purple and spotted interiors
+81932,yellow_avens Geum_alleppicum_strictum Geum_strictum,erect subshrub with deep yellow flowers; Europe and Asia and North America
+81933,yellow_avens Geum_macrophyllum,hairy yellow-flowered plant of eastern Asia and North America
+81934,yellow_bass Morone_interrupta,North American freshwater bass resembling the larger marine striped bass
+81935,yellow_bedstraw yellow_cleavers Our_Lady's_bedstraw Galium_verum,common yellow-flowered perennial bedstraw; North America and Europe and Asia
+81936,yellow_bells California_yellow_bells whispering_bells Emmanthe_penduliflora,viscid herb of arid or desert habitats of southwestern United States having pendulous yellow flowers
+81937,yellow_bile choler,a humor that was once believed to be secreted by the liver and to cause irritability and anger
+81938,yellow_birch Betula_alleghaniensis Betula_leutea,tree of eastern North America with thin lustrous yellow or grey bark
+81939,yellow_bristlegrass yellow_bristle_grass yellow_foxtail glaucous_bristlegrass Setaria_glauca,common weedy and bristly grass found in nearly all temperate areas
+81940,yellow_chamomile golden_marguerite dyers'_chamomile Anthemis_tinctoria,Eurasian perennial herb with hairy divided leaves and yellow flowers; naturalized in North America
+81941,yellow_clintonia heal_all Clintonia_borealis,common woodland herb of temperate North America having yellow nodding flowers and small round blue fruits
+81942,yellow_colicroot Aletris_aurea,colicroot with yellow-bracted racemose flowers; smaller than Aletris farinosa; southeastern United States
+81943,yellow_cypress yellow_cedar Nootka_cypress Alaska_cedar Chamaecyparis_nootkatensis,tall evergreen of the Pacific coast of North America often cultivated for ornament
+81944,yellow_dwarf,any of several virus diseases of plants characterized by stunting and yellowing of the leaves
+81945,yellow_dwarf_of_potato potato_yellow_dwarf,the yellow dwarf disease of potato plants
+81946,yellow_foxglove straw_foxglove Digitalis_lutea,European yellow-flowered foxglove
+81947,yellow_giant_hyssop Agastache_nepetoides,erect perennial with stout stems and yellow-green flowers; southern Canada and southeastern United States
+81948,yellow_globe_lily golden_fairy_lantern Calochortus_amabilis,globe lily having open branched clusters of clear yellow egg-shaped flowers; northern California
+81949,yellow_goatfish Mulloidichthys_martinicus,schooling goatfish; greyish with yellow stripe
+81950,yellow_green yellowish_green chartreuse Paris_green pea_green,a shade of green tinged with yellow
+81951,yellow_henbane Physalis_viscosa,found on sea beaches from Virginia to South America having greenish-yellow flowers and orange or yellow berries
+81952,yellow_honeysuckle Lonicera_dioica,twining deciduous shrub with clusters of purple-tinged yellow-green flowers; northeastern America
+81953,yellow_honeysuckle Lonicera_flava,climbing deciduous shrub with fragrant yellow (later orange) flowers in terminal whorls; southeastern United States
+81954,yellow_iris yellow_flag yellow_water_flag Iris_pseudacorus,common yellow-flowered iris of Europe and North Africa, naturalized in United States and often cultivated
+81955,yellow_jack,yellow flag hoist on a ship in quarantine
+81956,yellow_jack Caranx_bartholomaei,fish of western Atlantic and Gulf of Mexico
+81957,yellow_jack yellow_fever black_vomit,caused by a flavivirus transmitted by a mosquito
+81958,yellow_jacket yellow_hornet Vespula_maculifrons,small yellow-marked social wasp commonly nesting in the ground
+81959,yellow_jasmine yellow_jessamine Carolina_jasmine evening_trumpet_flower Gelsemium_sempervirens,poisonous woody evergreen vine of southeastern United States having fragrant yellow funnel-shaped flowers
+81960,yellow_journalism tabloid tab,sensationalist journalism
+81961,yellow_lady's_slipper yellow_lady-slipper Cypripedium_calceolus Cypripedium_parviflorum,maroon to purple-brown orchid with yellow lip; Europe, North America and Japan
+81962,yellow_light,the signal to proceed with caution
+81963,yellow_loosestrife garden_loosestrife Lysimachia_vulgaris,frequently considered a weed; Europe and Asia
+81964,yellow_lupine Lupinus_luteus,yellow-flowered European lupine cultivated for forage
+81965,yellow_mariposa_tulip Calochortus_luteus,mariposa having clusters of a few large deep yellow bell-shaped flowers atop slender stems; California coastal ranges
+81966,yellow_marrow yellow_bone_marrow,bone marrow that is yellow with fat; found at the ends of long bones in adults
+81967,yellow_mountain_saxifrage Saxifraga_aizoides,tufted evergreen perennial having ciliate leaves and yellow corymbose flowers often spotted orange
+81968,yellow_ocher yellow_ochre,pigment consisting of a limonite mixed with clay and silica
+81969,yellow_oleander Thevetia_peruviana Thevetia_neriifolia,tropical American shrub or small tree having glossy dark green leaves and fragrant saffron yellow to orange or peach- colored flowers; all parts highly poisonous
+81970,yellow_pages,a telephone directory or section of a directory (usually printed on yellow paper) where business products and services are listed alphabetically by field along with classified advertising
+81971,yellow_perch Perca_flavescens,North American perch
+81972,yellow_peril,the threat to Western civilization said to arise from the power of Asiatic peoples
+81973,yellow_pimpernel Lysimachia_nemorum,trailing European evergreen with yellow flowers
+81974,yellow_pine,any of various pines having yellow wood
+81975,yellow_pine,hard yellowish wood of a yellow pine
+81976,yellow_rocket rockcress rocket_cress Barbarea_vulgaris Sisymbrium_barbarea,noxious cress with yellow flowers; sometimes placed in genus Sisymbrium
+81977,yellow_salsify Tragopogon_dubius,European perennial naturalized throughout United States having hollow stems with a few long narrow tapered leaves and each bearing a solitary pale yellow flower
+81978,yellow_sand_verbena Abronia_latifolia,plant having hemispherical heads of yellow trumpet-shaped flowers; found in coastal dunes from California to British Columbia
+81979,yellow_spiny_daisy Haplopappus_spinulosus,slender perennial of western North America having weakly bristly leaves and yellow flower heads
+81980,yellow_spot,any of several fungous or viral diseases characterized by yellow spotting on the leaves
+81981,yellow_spot_fungus Cercospora_kopkei,fungus causing yellow spot (a sugarcane disease in Australia)
+81982,yellow_squash,any of various squash plants grown for their yellow fruits with somewhat elongated necks
+81983,yellow_squash,squash having yellow skin and yellowish flesh and usually elongated neck
+81984,yellow_sweet_clover Melilotus_officinalis,biennial yellow-flowered Eurasian plant having aromatic leaves used as carminative or flavoring agent; widely cultivated especially as green manure or cover crop
+81985,yellow_twining_snapdragon Antirrhinum_filipes,southwestern United States plant with yellow flowers on stems that twist and twine through other vegetation
+81986,yellow_warbler golden_warbler yellowbird Dendroica_petechia,yellow-throated American wood warbler
+81987,yellow_water_lily Nuphar_lutea,a water lily with yellow flowers
+81988,yellowbelly_marmot rockchuck Marmota_flaviventris,heavy-bodied yellowish-brown marmot of rocky areas of western North America
+81989,yellowcake U308,an impure mixture of uranium oxides obtained during the processing of uranium ore
+81990,yellowfin yellowfin_tuna Thunnus_albacares,may reach 400 pounds; worldwide in tropics
+81991,yellowfin_croaker surffish surf_fish Umbrina_roncador,a fish of the Pacific coast of North America
+81992,yellowfin_mojarra Gerres_cinereus,popular panfish from Bermuda and Gulf of Mexico to Brazil
+81993,yellowhammer yellow_bunting Emberiza_citrinella,European bunting the male being bright yellow
+81994,yellowish_brown raw_sienna buff caramel caramel_brown,a medium to dark tan color
+81995,yellowish_pink apricot peach salmon_pink,a shade of pink tinged with yellow
+81996,yellowlegs,either of two North American shorebird with yellow legs
+81997,yellowtail Seriola_dorsalis,game fish of southern California and Mexico having a yellow tail fin
+81998,yellowtail yellowtail_snapper Ocyurus_chrysurus,superior food fish of the tropical Atlantic and Caribbean with broad yellow stripe along the sides and on the tail
+81999,yellowtail_flounder,flesh of American flounder having a yellowish tail
+82000,yellowtail_flounder Limanda_ferruginea,American flounder having a yellowish tail
+82001,yellowthroat,small olive-colored American warblers with yellow breast and throat
+82002,yellowwood,the yellow wood of any of various yellowwood trees
+82003,yellowwood yellowwood_tree,any of various trees having yellowish wood or yielding a yellow extract
+82004,yen,the basic unit of money in Japan; equal to 100 sen
+82005,yenta,(Yiddish) a vulgar shrew; a shallow coarse termagant
+82006,yenta,(Yiddish) a woman who talks too much; a gossip unable to keep a secret; a woman who spreads rumors and scandal
+82007,yeoman,in former times was free and cultivated his own land
+82008,yeoman yeoman_of_the_guard beefeater,officer in the (ceremonial) bodyguard of the British monarch
+82009,yeomanry,class of small freeholders who cultivated their own land
+82010,yeomanry,a British volunteer cavalry force organized in 1761 for home defense later incorporated into the Territorial Army
+82011,yerba_buena Micromeria_chamissonis Micromeria_douglasii Satureja_douglasii,trailing perennial evergreen herb of northwestern United States with small white flowers; used medicinally
+82012,yerba_mansa Anemopsis_californica,stoloniferous herb of southwestern United States and Mexico having a pungent rootstock and small spicate flowers with white bracts suggesting an anemone
+82013,yerba_santa Eriodictyon_californicum,viscid evergreen shrub of western United States with white to deep lilac flowers; the sticky aromatic leaves are used in treating bronchial and pulmonary illnesses
+82014,yes,an affirmative; "I was hoping for a yes"
+82015,yes-no_question,a question that can be answered by yes or no
+82016,yeshiva yeshivah,an academy for the advanced study of Jewish texts (primarily the Talmud)
+82017,yesterday,the recent past; "yesterday's solutions are not good enough"; "we shared many yesterdays"
+82018,yesterday,the day immediately before today; "it was in yesterday's newspapers"
+82019,yew,wood of a yew; especially the durable fine-grained light brown or red wood of the English yew valued for cabinetwork and archery bows
+82020,yew,any of numerous evergreen trees or shrubs having red cup-shaped berries and flattened needlelike leaves
+82021,yield fruit,an amount of a product
+82022,yin,the dark negative feminine principle in Chinese dualistic cosmology; "the interaction of yin and yang maintains the harmony of the universe"
+82023,yip yelp yelping,a sharp high-pitched cry (especially by a dog)
+82024,yips,nervous tension that causes an athlete to fail (especially causes golfers to miss short putts); "to avoid the yips he changed his style of putting"
+82025,ylem,(cosmology) the original matter that (according to the big bang theory) existed before the formation of the chemical elements
+82026,yo-yo,a toy consisting of a spool that is reeled up and down on a string by motions of the hand
+82027,yobibit Yibit,a unit of information equal to 1024 zebibits or 2^80 bits
+82028,yodel,a songlike cry in which the voice fluctuates rapidly between the normal voice and falsetto
+82029,yodeling,singing by changing back and forth between the chest voice and a falsetto
+82030,yodeller,a singer who changes register rapidly (popular is Swiss folk songs)
+82031,yodh,the 10th letter of the Hebrew alphabet
+82032,yoga,discipline aimed at training the consciousness for a state of perfect spiritual insight and tranquility that is achieved through the three paths of actions and knowledge and devotion
+82033,yoga,a system of physical, breathing and meditation exercises practiced to promote control of the body and mind
+82034,yogi,one who practices yoga and has achieved a high level of spiritual insight
+82035,yogurt yoghurt yoghourt,a custard-like food made from curdled milk
+82036,yoke,an oppressive power; "under the yoke of a tyrant"; "they threw off the yoke of domination"
+82037,yoke,a pair of draft animals joined by a yoke; "pulled by a yoke of oxen"
+82038,yoke,support consisting of a wooden frame across the shoulders that enables a person to carry buckets hanging from each end
+82039,yoke,fabric comprising a fitted part at the top of a garment
+82040,yoke,stable gear that joins two draft animals at the neck so they can work together as a team
+82041,yoke coupling,a connection (like a clamp or vise) between two things so they move together
+82042,yokel rube hick yahoo hayseed bumpkin chawbacon,a person who is not very intelligent or interested in culture
+82043,yolk vitellus,nutritive material of an ovum stored for the nutrition of an embryo (especially the yellow mass of a bird or reptile egg)
+82044,yolk_sac,membranous structure enclosing the yolk of eggs in birds, reptiles, marsupials, and some fishes; circulates nutrients to the developing embryo
+82045,yolk_sac vitelline_sac umbilical_vesicle vesicula_umbilicus,membranous structure that functions as the circulatory system in mammalian embryos until the heart becomes functional
+82046,yore,time long past
+82047,yottabit Ybit Yb,a unit of information equal to 1000 zettabits or 10^24 bits
+82048,yottabyte YB,a unit of information equal to 1000 zettabytes or 10^24 bytes
+82049,yottabyte yobibyte YB YiB,a unit of information equal to 1024 zebibytes or 2^80 bytes
+82050,young offspring,any immature animal
+82051,young youth,young people collectively; "rock music appeals to the young"; "youth everywhere rises in revolt"
+82052,young_Turk,a young radical who agitates for reform
+82053,young_bird,a bird that is still young
+82054,young_buck young_man,a teenager or a young adult male
+82055,young_fish,a fish that is young
+82056,young_mammal,any immature mammal
+82057,young_person youth younker spring_chicken,a young person (especially a young man or boy)
+82058,youngness,the opposite of oldness
+82059,youth,the time of life between childhood and maturity
+82060,youth,early maturity; the state of being young or immature or inexperienced
+82061,youth early_days,an early period of development; "during the youth of the project"
+82062,youth youthfulness juvenility,the freshness and vitality characteristic of a young person
+82063,youth_culture,young adults (a generational unit) considered as a cultural class or subculture
+82064,youth_gang,a gang whose members are teenagers
+82065,youth_movement youth_crusade,political or religious or social reform movement or agitation consisting chiefly of young people
+82066,youth_subculture,a minority youth culture whose distinctiveness depended largely on the social class and ethnic background of its members; often characterized by its adoption of a particular music genre
+82067,ytterbium Yb atomic_number_70,a soft silvery metallic element; a rare earth of the lanthanide series; it occurs in gadolinite and monazite and xenotime
+82068,yttrium Y atomic_number_39,a silvery metallic element that is common in rare-earth minerals; used in magnesium and aluminum alloys
+82069,yuan kwai,the basic unit of money in China
+82070,yucca,any of several evergreen plants of the genus Yucca having usually tall stout stems and a terminal cluster of white flowers; warmer regions of North America
+82071,yuppie,a young upwardly mobile professional individual; a well-paid middle-class professional who works in a city and has a luxurious life style
+82072,yurt,a circular domed dwelling that is portable and self-supporting; originally used by nomadic Mongol and Turkic people of central Asia but now used as inexpensive alternative or temporary housing
+82073,z-axis,the third axis in a 3-dimensional coordinate system
+82074,zabaglione sabayon,light foamy custard-like dessert served hot or chilled
+82075,zaire,the basic unit of money in Zaire
+82076,zakat,the fourth pillar of Islam is almsgiving as an act of worship; "the zakat is earmarked for the poor and disabled"
+82077,zamia,any of various cycads of the genus Zamia; among the smallest and most verdant cycads
+82078,zany,a buffoon in one of the old comedies; imitates others for ludicrous effect
+82079,zap,a sudden event that imparts energy or excitement, usually with a dramatic impact; "they gave it another zap of radiation"
+82080,zapper,an electrical device that can injure or kill by means of electric currents; "a bug zapper"
+82081,zarf,an ornamental metal cup-shaped holder for a hot coffee cup
+82082,zayin,the 7th letter of the Hebrew alphabet
+82083,zeal,excessive fervor to do something or accomplish some end; "he had an absolute zeal for litigation"
+82084,zeaxanthin,yellow carotenoid (isomeric with lutein and occurs widely with it) that is the main pigment in yellow Indian corn
+82085,zebibit Zibit,a unit of information equal to 1024 exbibits or 2^70 bits
+82086,zebra,any of several fleet black-and-white striped African equines
+82087,zebra-tailed_lizard gridiron-tailed_lizard Callisaurus_draconoides,swift lizard with long black-banded tail and long legs; of deserts of United States and Mexico
+82088,zebra_finch Poephila_castanotis,small Australian weaverbird with markings like a zebra's
+82089,zebra_mussel Dreissena_polymorpha,inch long mollusk imported accidentally from Europe; clogs utility inlet pipes and feeds on edible freshwater mussels
+82090,zebra_orchid Caladenia_cairnsiana,orchid with reddish linear leaves and panicle of purple-marked pale-yellow flowers with deep red or purple lip; southwestern Australia
+82091,zebrawood,handsomely striped or mottled wood of the zebrawood tree; used especially for cabinetwork
+82092,zebrawood zebrawood_tree,any of various trees or shrubs having mottled or striped wood
+82093,zebu,domesticated ox having a humped back and long horns and a large dewlap; used chiefly as a draft animal in India and east Asia
+82094,zenith,the point above the observer that is directly opposite the nadir on the imaginary sphere against which celestial bodies appear to be projected
+82095,zeolite,any of a family of glassy minerals analogous to feldspar containing hydrated aluminum silicates of calcium or sodium or potassium; formed in cavities in lava flows and in plutonic rocks
+82096,zeppelin Graf_Zeppelin,a large rigid dirigible designed to carry passengers or bombs
+82097,zero,the sight setting that will cause a projectile to hit the center of the target with no wind blowing
+82098,zero 0 nought cipher cypher,a mathematical element that when added to another number yields the same number
+82099,zero zero_point,the point on a scale from which positive or negative numerical quantities can be measured
+82100,zero-coupon_security zero_coupon_security,a security that makes no interest payments but instead is sold at a deep discount from its face value
+82101,zero-sum_game,a game in which the total of all the gains and losses is zero
+82102,zero-tolerance_policy,any policy that allows no exception; "a zero-tolerance policy toward pedophile priests"
+82103,zero_coupon_bond zero-coupon_bond,a bond that is issued at a deep discount from its value at maturity and pays no interest during the life of the bond; the commonest form of zero-coupon security
+82104,zero_hour,the time set for the start of an action or operation
+82105,zero_tolerance,extreme intolerance of antisocial behavior (usually by an uncompromising application of the law); "he urged zero tolerance for priests who abuse children sexually"
+82106,zeroth_law_of_thermodynamics,the law that if two bodies are in thermal equilibrium with a third body then the first two bodies are in thermal equilibrium with each other
+82107,zeta,the 6th letter of the Greek alphabet
+82108,zettabit Zbit Zb,a unit of information equal to 1000 exabits or 10^21 bits
+82109,zettabyte ZB,a unit of information equal to 1000 exabytes or 10^21 bytes
+82110,zettabyte zebibyte ZB ZiB,a unit of information equal to 1024 exbibytes or 2^70 bytes
+82111,zeugma,use of a verb with two or more complements, playing on the verb's polysemy, for humorous effect; "`Mr. Pickwick took his hat and his leave' is an example of zeugma"
+82112,zidovudine Retrovir ZDV AZT,an antiviral drug (trade name Retrovir) used in the treatment of AIDS; adverse side effects include liver damage and suppression of the bone marrow
+82113,ziggurat zikkurat zikurat,a rectangular tiered temple or terraced mound erected by the ancient Assyrians and Babylonians
+82114,zigzag zig zag,an angular shape characterized by sharp turns in alternating directions
+82115,zigzag_goldenrod broad_leaved_goldenrod,a variety of goldenrod
+82116,zill,one of a pair of small metallic cymbals worn on the thumb and middle finger; used in belly dancing in rhythm with the dance
+82117,zinc Zn atomic_number_30,a bluish-white lustrous metallic element; brittle at ordinary temperatures but malleable when heated; used in a wide variety of alloys and in galvanizing iron; it occurs naturally as zinc sulphide in zinc blende
+82118,zinc_blende blende sphalerite,an ore that is the chief source of zinc; consists largely of zinc sulfide in crystalline form
+82119,zinc_cadmium_sulfide,cadmium sulfide containing zinc
+82120,zinc_deficiency,a deficiency caused by inadequate zinc in the diet or by liver disease or cystic fibrosis or other diseases
+82121,zinc_ointment,an ointment containing zinc that is used to treat certain skin diseases
+82122,zinc_oxide flowers_of_zinc philosopher's_wool philosophers'_wool,oxide of zinc; a white powder used as a pigment or in cosmetics or glass or inks and in zinc ointment
+82123,zinc_sulfate zinc_sulphate white_vitriol zinc_vitriol,a colorless water-soluble powder; used as a mordant or to preserve wood or for the electrodeposition of zinc
+82124,zinc_sulfide zinc_sulphide,a yellow to white crystalline fluorescent compound that occurs naturally as sphalerite or wurtzite and is used as a luminous pigment
+82125,zinc_white Chinese_white,a white pigment used in house paints; consists of zinc oxide
+82126,zinfandel,dry fruity red wine from California
+82127,zing,a brief high-pitched buzzing or humming sound; "the zing of the passing bullet"
+82128,zinger,a striking or amusing or caustic remark; "he always greeted me with a new zinger"; "she tried to think of some killer of an argument, a real zinger that would disarm all opposition"
+82129,zinkenite,a steel grey metallic mineral (a sulphide of lead and antimony)
+82130,zinnia old_maid old_maid_flower,any of various plants of the genus Zinnia cultivated for their variously and brightly colored flower heads
+82131,zinnwaldite,a mica containing iron and lithium
+82132,zip_gun,a crude homemade pistol
+82133,zircon zirconium_silicate,a common mineral occurring in small crystals; chief source of zirconium; used as a refractory when opaque and as a gem when transparent
+82134,zirconium Zr atomic_number_40,a lustrous grey strong metallic element resembling titanium; it is used in nuclear reactors as a neutron absorber; it occurs in baddeleyite but is obtained chiefly from zircon
+82135,zirconium_oxide zirconia zirconium_dioxide,a white crystalline oxide; used in refractories and in insulation and abrasives and enamels and glazes
+82136,zither cither zithern,a musical stringed instrument with strings stretched over a flat sounding board; it is laid flat and played with a plectrum and with fingers
+82137,ziti,medium-sized tubular pasta in short pieces
+82138,zizz,a buzzing or whizzing sound; "a nasty zizz in the engine"
+82139,zizz,a nap; "Arthur's taking a short zizz"
+82140,zloty,the basic unit of money in Poland
+82141,zoanthropy,the delusion that you have assumed the form of an animal
+82142,zodiac,a belt-shaped region in the heavens on either side to the ecliptic; divided into 12 constellations or signs for astrological purposes
+82143,zodiac,(astrology) a circular diagram representing the 12 zodiacal constellations and showing their signs
+82144,zodiacal_light,a luminous tract in the sky; a reflection of sunlight from cosmic dust in the plane of the ecliptic; visible just before sunrise and just after sunset
+82145,zombi zombie living_dead,a dead body that has been brought back to life by a supernatural force
+82146,zombi zombie snake_god,a god of voodoo cults of African origin worshipped especially in West Indies
+82147,zombi zombie zombi_spirit zombie_spirit,(voodooism) a spirit or supernatural force that reanimates a dead body
+82148,zombie zombi,several kinds of rum with fruit juice and usually apricot liqueur
+82149,zona_pellucida,thick membrane around the mammalian ovum; can be penetrated by one sperm in the fertilization process; usually remains around the fertilized egg until it is implanted in the wall of the uterus
+82150,zone,a locally circumscribed place characterized by some distinctive features
+82151,zone,an area or region distinguished from adjacent parts by a distinctive feature or characteristic
+82152,zone geographical_zone,any of the regions of the surface of the Earth loosely divided according to latitude or longitude
+82153,zone zona,(anatomy) any encircling or beltlike structure
+82154,zone_fire,artillery or mortar fire delivered in a constant direction at several quadrant elevations
+82155,zone_of_interior,the part of the theater of war not included in the theater of operations
+82156,zoning,dividing an area into zones or sections reserved for different purposes such as residence and business and manufacturing etc
+82157,zoning_board,a board of officials who divide an area into zones that are subject to different restrictions
+82158,zoning_commission,a commission delegated to supervise the zoning of areas for residential or commercial use
+82159,zonule zonula,small beltlike zone
+82160,zoo_keeper,the chief person responsible for a zoological garden
+82161,zooid,one of the distinct individuals forming a colonial animal such as a bryozoan or hydrozoan
+82162,zoolatry animal-worship,the worship of animals
+82163,zoologist animal_scientist,a specialist in the branch of biology dealing with animals
+82164,zoology zoological_science,the branch of biology that studies animals
+82165,zoomastigote zooflagellate,flagellate protozoan lacking photosynthesis and other plant-like characteristics
+82166,zoomorphism,the attribution of animal forms or qualities to a god
+82167,zoonosis zoonotic_disease,an animal disease that can be transmitted to humans
+82168,zoophilia zoophilism,a sexual attraction to animals
+82169,zoophobia,a morbid fear of animals
+82170,zoophyte,any of various invertebrate animals resembling a plant such as a sea anemone or coral or sponge
+82171,zooplankton,animal constituent of plankton; mainly small crustaceans and fish larvae
+82172,zoopsia,visual hallucination of animals; sometimes occurring in delirium tremens
+82173,zoospore,an asexual spore of some algae and fungi that moves by means of flagella
+82174,zoot_suit,a flashy suit of extreme cut
+82175,zoril Ictonyx_frenata,muishond of northern Africa
+82176,zoysia,any of several creeping grasses of the genus Zoysia
+82177,zucchini courgette,marrow squash plant whose fruit are eaten when small
+82178,zucchini courgette,small cucumber-shaped vegetable marrow; typically dark green
+82179,zumbooruk zumbooruck zamburek zamboorak zamburak camel_cavalry, a camel cavalry used in the early modern era by Arab, Afghan, Persian, and Indian armies
+82180,zwieback rusk Brussels_biscuit twice-baked_bread,slice of sweet raised bread baked again until it is brown and hard and crisp
+82181,zydeco,music of southern Louisiana that combines French dance melodies with Caribbean music and blues
+82182,zygodactyl_foot,a bird's foot having the first and fourth toes of each foot directed backward and the second and third forward
+82183,zygoma zygomatic_arch arcus_zygomaticus,the slender arch formed by the temporal process of the cheekbone that bridges to the zygomatic process of the temporal bone
+82184,zygomatic_process,a slender process of the temporal bone that strengthens the zygomatic arch
+82185,zygospore,a plant spore formed by two similar sexual cells
+82186,zygote fertilized_ovum,(genetics) the diploid cell resulting from the union of a haploid spermatozoon and ovum (including the organism that develops from that cell)
+82187,zygotene,the second stage of the prophase of meiosis
+82188,zymase,a complex of enzymes that cause glycolysis; originally found in yeast but also present in higher organisms
+82189,zymology zymurgy,the branch of chemistry concerned with fermentation (as in making wine or brewing or distilling)
+82190,zymosis,(medicine) the development and spread of an infectious disease (especially one caused by a fungus)
+82191,zymosis zymolysis fermentation fermenting ferment,a process in which an agent causes an organic substance to break down into simpler substances; especially the anaerobic breakdown of sugar into alcohol